[
  {
    "path": ".gitignore",
    "content": "/MQ/runs/\nEgoTracks/run.sh"
  },
  {
    "path": ".gitmodules",
    "content": "[submodule \"VQ3D/depth_estimation/DPT\"]\n\tpath = VQ3D/depth_estimation/DPT\n\turl = git@github.com:isl-org/DPT.git\n"
  },
  {
    "path": ".pre-commit-config.yaml",
    "content": "default_language_version:\n    python: python3\n\nrepos:\n-   repo: https://github.com/pre-commit/pre-commit-hooks\n    rev: v2.3.0\n    hooks:\n    -   id: check-yaml\n    -   id: end-of-file-fixer\n    -   id: trailing-whitespace\n-   repo: https://github.com/omnilib/ufmt\n    rev: v1.3.0\n    hooks:\n      -   id: ufmt\n          additional_dependencies:\n          -   black == 20.8b0\n          -   usort == 0.6.3\n"
  },
  {
    "path": "EgoTracks/README.md",
    "content": "# EgoTracks \n\n## Install packages\n```sh\npip install detectron2 -f https://dl.fbaipublicfiles.com/detectron2/wheels/cu101/torch1.8/index.html\n\npip install torch==1.8.1+cu101 torchvision==0.9.1+cu101 torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html\n```\n\nThen install EgoTracks as package:\n```\npython setup.py install\n```\n\n## Download clips\nPlease follow [Start here](https://github.com/EGO4D/docs/blob/main/docs/start-here.md) for instructions on how to access the dataset by accepting the terms of our license agreement.\nAnd then use the following command to download clips and annotations for EgoTracks:\n```\nego4d --output_directory ./ --datasets egotracks clips --benchmark EM --version v2\n```\n\n## Preprocess - extract frames from exported clips\nReplace the following paths for reading and outputing to the correct place in ExtractFramesWorkflowParams in tools/preprocess/extract_ego4d_clip_frames.py: \n* clip_dir: path to the downloaded clip directory\n* annotation_path: path to the annotation file we would like to extract frames. If you want the test set only, only extract frames for the test set. If you also would like training part, then need to extract for training set as well.\n* output_dir: path to the directory where to the save the extracted frame images. \n\nAnd then extract frames from video clips:\n```sh\npython tools/preprocess/extract_ego4d_clip_frames.py \n```\n\n## Finetuning on EgoTracks\nWe used STARK (Res50) as pre-trained models, so download the model weights from https://drive.google.com/drive/folders/1fSgll53ZnVKeUn22W37Nijk-b9LGhMdN\nOr you can use our trained checkpoint at https://drive.google.com/file/d/14vZmWxYSGJXZGxD5U1LthvvTR_eRzWCw/view?usp=share_link\n\nChange the following paths in the tracking/config/stark_defaults.py:\n* cfg.DATA.EGO4DLTT_ANNOTATION_PATH = \"your_path/train_v1.json\"\n* cfg.DATA.EGO4DLTT_DATA_DIR = \"your_path_to_extract_frames\" - This is the same as the output_dir in preprocess\n\nAnd change the model weights path and output directory in train.sh, and then run:\n```sh\nbash train.sh\n```\n\n\n## Infer challenge set and submit challenge result\nWe use \"{clip_uid}\\_{query_set_id}\\_{object_title}\" as unique name for each sequence (object). One could use the EGO4DLTTrackingDataset from tracking/dataset/eval_datasets/ego4d_lt_tracking_dataset.py for loading images and sequence name.\nAn example of how to run test and generate submission file is in tools/eval_datasets/eval_ego4d_lt_tracking.py and tools/train_net.py result2submission.\n\nChange the following paths in the tracking/config/stark_defaults.py:\n* cfg.EVAL.EGO4DLT.ANNOTATION_PATH = \"your_path/challenge_test_v1_unannotated.json\"\n* cfg.EVAL.EGO4DLT.DATA_DIR = \"your_path_to_extract_frames\" \n\nAnd change the model weights path and output directory in test.sh, and then run:\n```sh\nbash test.sh\n```\n\n"
  },
  {
    "path": "EgoTracks/configs/STARK/stark_st_R101.yaml",
    "content": "_BASE_: \"./stark_st_base.yaml\"\nMODEL_TYPE: STARK\nDATA:\n  SAMPLER_MODE: trident_pro\n  MAX_SAMPLE_INTERVAL:\n  - 200\n  MEAN:\n  - 0.485\n  - 0.456\n  - 0.406\n  SEARCH:\n    CENTER_JITTER: 4.5\n    FACTOR: 5.0\n    SCALE_JITTER: 0.5\n    SIZE: 320\n    NUMBER: 1\n  STD:\n  - 0.229\n  - 0.224\n  - 0.225\n  TEMPLATE:\n    CENTER_JITTER: 0\n    FACTOR: 2.0\n    SCALE_JITTER: 0\n    SIZE: 128\n    NUMBER: 2\n  TRAIN:\n    DATASETS_NAME:\n    - LASOT\n    - GOT10K_vottrain\n    - COCO17\n    - TRACKINGNET\n    DATASETS_RATIO:\n    - 1\n    - 1\n    - 1\n    - 1\n    SAMPLE_PER_EPOCH: 600000\n  VAL:\n    DATASETS_NAME:\n    - GOT10K_votval\n    DATASETS_RATIO:\n    - 1\n    SAMPLE_PER_EPOCH: 100000\nMODEL:\n  HEAD_TYPE: CORNER\n  NLAYER_HEAD: 3\n  BACKBONE:\n    DILATION: false\n    OUTPUT_LAYERS:\n    - layer3\n    STRIDE: 16\n    TYPE: resnet101\n  HIDDEN_DIM: 256\n  NUM_OBJECT_QUERIES: 1\n  POSITION_EMBEDDING: sine\n  PREDICT_MASK: false\n  TRANSFORMER:\n    DEC_LAYERS: 6\n    DIM_FEEDFORWARD: 2048\n    DIVIDE_NORM: false\n    DROPOUT: 0.1\n    ENC_LAYERS: 6\n    NHEADS: 8\n    PRE_NORM: false\nTRAIN_STAGE_1:\n  BACKBONE_MULTIPLIER: 0.1\n  BATCH_SIZE: 16\n  DEEP_SUPERVISION: false\n  EPOCH: 50\n  FREEZE_BACKBONE_BN: true\n  FREEZE_LAYERS:\n  - conv1\n  - layer1\n  GRAD_CLIP_NORM: 0.1\n  LR: 0.0001\n  LR_DROP_EPOCH: 40\n  NUM_WORKER: 4\n  OPTIMIZER: ADAMW\n  PRINT_INTERVAL: 50\n  VAL_EPOCH_INTERVAL: 10\n  WEIGHT_DECAY: 0.0001\n  LOSS_FUNCTIONS: [\"giou\", \"l1\"]\n  LOSS_WEIGHTS: [2.0, 5.0]\nTRAIN_STAGE_2:\n  BACKBONE_MULTIPLIER: 0.1\n  BATCH_SIZE: 16\n  DEEP_SUPERVISION: false\n  EPOCH: 5\n  FREEZE_BACKBONE_BN: true\n  FREEZE_LAYERS:\n  - conv1\n  - layer1\n  GRAD_CLIP_NORM: 0.1\n  LR: 0.0001\n  LR_DROP_EPOCH: 40\n  NUM_WORKER: 4\n  OPTIMIZER: ADAMW\n  PRINT_INTERVAL: 50\n  VAL_EPOCH_INTERVAL: 1\n  WEIGHT_DECAY: 0.0001\n  LOSS_FUNCTIONS: [\"cls\"]\n  LOSS_WEIGHTS: [1.0]\n"
  },
  {
    "path": "EgoTracks/configs/STARK/stark_st_base.yaml",
    "content": "MODEL_TYPE: STARK\nDATA:\n  SAMPLER_MODE: trident_pro\n  MAX_SAMPLE_INTERVAL:\n  - 200\n  MEAN:\n  - 0.485\n  - 0.456\n  - 0.406\n  SEARCH:\n    CENTER_JITTER: 4.5\n    FACTOR: 5.0\n    SCALE_JITTER: 0.5\n    SIZE: 320\n    NUMBER: 1\n  STD:\n  - 0.229\n  - 0.224\n  - 0.225\n  TEMPLATE:\n    CENTER_JITTER: 0\n    FACTOR: 2.0\n    SCALE_JITTER: 0\n    SIZE: 128\n    NUMBER: 2\n  TRAIN:\n    DATASETS_NAME:\n    - LASOT\n    - GOT10K_vottrain\n    - COCO17\n    - TRACKINGNET\n    DATASETS_RATIO:\n    - 1\n    - 1\n    - 1\n    - 1\n    SAMPLE_PER_EPOCH: 600000\n  VAL:\n    DATASETS_NAME:\n    - GOT10K_votval\n    DATASETS_RATIO:\n    - 1\n    SAMPLE_PER_EPOCH: 100000\nMODEL:\n  HEAD_TYPE: CORNER\n  NLAYER_HEAD: 3\n  BACKBONE:\n    DILATION: false\n    OUTPUT_LAYERS:\n    - layer3\n    STRIDE: 16\n    TYPE: resnet50\n  HIDDEN_DIM: 256\n  NUM_OBJECT_QUERIES: 1\n  POSITION_EMBEDDING: sine\n  PREDICT_MASK: false\n  TRANSFORMER:\n    DEC_LAYERS: 6\n    DIM_FEEDFORWARD: 2048\n    DIVIDE_NORM: false\n    DROPOUT: 0.1\n    ENC_LAYERS: 6\n    NHEADS: 8\n    PRE_NORM: false\nTRAIN_STAGE_1:\n  BACKBONE_MULTIPLIER: 0.1\n  BATCH_SIZE: 16\n  DEEP_SUPERVISION: false\n  EPOCH: 50\n  FREEZE_BACKBONE_BN: true\n  FREEZE_LAYERS:\n  - conv1\n  - layer1\n  GRAD_CLIP_NORM: 0.1\n  LR: 0.0001\n  LR_DROP_EPOCH: 40\n  NUM_WORKER: 4\n  OPTIMIZER: ADAMW\n  PRINT_INTERVAL: 50\n  VAL_EPOCH_INTERVAL: 10\n  WEIGHT_DECAY: 0.0001\n  LOSS_FUNCTIONS: [\"giou\", \"l1\"]\n  LOSS_WEIGHTS: [2.0, 5.0]\nTRAIN_STAGE_2:\n  BACKBONE_MULTIPLIER: 0.1\n  BATCH_SIZE: 16\n  DEEP_SUPERVISION: false\n  EPOCH: 5\n  FREEZE_BACKBONE_BN: true\n  FREEZE_LAYERS:\n  - conv1\n  - layer1\n  GRAD_CLIP_NORM: 0.1\n  LR: 0.0001\n  LR_DROP_EPOCH: 4\n  NUM_WORKER: 4\n  OPTIMIZER: ADAMW\n  PRINT_INTERVAL: 50\n  VAL_EPOCH_INTERVAL: 1\n  WEIGHT_DECAY: 0.0001\n  LOSS_FUNCTIONS: [\"cls\"]\n  LOSS_WEIGHTS: [1.0]\nTEST:\n  SEARCH_FACTOR: 5.0\n  SEARCH_SIZE: 320\n  TEMPLATE_FACTOR: 2.0\n  TEMPLATE_SIZE: 128\n  TEST_BATCHSIZE: 8\n  IS_SEARCH_LOCAL: True\n  UPDATE_INTERVALS:\n    LASOT: [200]\n    GOT10K_TEST: [200]\n    TRACKINGNET: [25]\n    VOT20: [10]\n    VOT20LT: [200]\n    EGO4DVQTracking: [1]\n"
  },
  {
    "path": "EgoTracks/setup.py",
    "content": "#!/usr/bin/env python3\n\nfrom setuptools import find_packages, setup\n\nPROJECTS = {\n    \"tracking.tools\": \"tools\",\n}\n\nsetup(\n    name=\"egotracks\",\n    version=\"1.0\",\n    # author=\"\",\n    # url=\"unknown\",\n    # description=\"EgoTracks\",\n    # python_requires=\">=3.7\",\n    # install_requires=[\n    #     \"matplotlib\",\n    #     \"detectron2\",\n    #     \"opencv-python\",\n    #     \"pandas\",\n    #     \"torchvision>=0.4.2\",\n    #     \"scikit-learn\",\n    #     \"iopath\",\n    # ],\n    packages=find_packages(exclude=(\"tests\", \"tools\")) + list(PROJECTS.keys()),\n    package_dir=PROJECTS,\n    package_data={\"tracking.tools\": [\"**\"]},\n)\n"
  },
  {
    "path": "EgoTracks/test.sh",
    "content": "python tools/train_net.py \\\n--num-gpus 8 --eval-only \\\nMODEL.WEIGHTS /checkpoint/haotang/experiments/EgoTracks/STARKST_ep0001.pth.tar \\\nOUTPUT_DIR /checkpoint/haotang/experiments/EgoTracks/res/test_challenge_set_small_v1_5FPS_multi_gpu_test"
  },
  {
    "path": "EgoTracks/tools/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tools/eval_datasets/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tools/eval_datasets/build.py",
    "content": "from .eval_ego4d_lt_tracking import (\n    eval_ego4d_lt_tracking,\n)\n\nEVAL_FUNCTIONS = {\n    \"EGO4DLTTracking\": eval_ego4d_lt_tracking,\n}\nCALCULATE_METRICS_FUNCTIONS = {\n    \"EGO4DLTTracking\": None,\n}\n\n\ndef build_eval_function(dataset_name):\n    return EVAL_FUNCTIONS[dataset_name]\n\n\ndef build_calculate_metrics_function(dataset_name):\n    return CALCULATE_METRICS_FUNCTIONS[dataset_name]\n"
  },
  {
    "path": "EgoTracks/tools/eval_datasets/eval_ego4d_lt_tracking.py",
    "content": "import logging\nimport os\nimport pickle as pkl\nimport time\n\nimport detectron2.utils.comm as comm\nimport numpy as np\nimport torch\nimport torch.nn.parallel\nimport torch.optim\nimport torch.utils.data\nimport torch.utils.data.distributed\nfrom tracking.dataset.eval_datasets.ego4d_lt_tracking_dataset import (\n    EGO4DLTTrackingDataset,\n)\nfrom tracking.metrics.lt_tracking_metrics import (\n    compute_f_score,\n    compute_precision_and_recall,\n)\nfrom tracking.metrics.miou import compute_overlaps\nfrom tracking.tools.annotation.annotation_utils import seperate_occurrances\nfrom tracking.utils.bbox_helper import xywh_2_cxywh\nfrom tracking.utils.env import pathmgr\nfrom tracking.utils.meters import AverageMeter, ProgressMeter\nfrom tracking.utils.utils import opencv_loader\n\n\ndef trivial_batch_collator(batch):\n    \"\"\"\n    A batch collator that does nothing.\n    \"\"\"\n    return batch\n\n\ndef eval_ego4d_lt_tracking(model, cfg):\n    global_rank = comm.get_rank()\n    cfg.defrost()\n    result_dir = os.path.join(\n        cfg.OUTPUT_DIR,\n        \"eval\",\n        \"EGO4DLTTracking\",\n        f\"{cfg.EVAL.EGO4DLT.TRACK_MODE}\",\n        f\"{cfg.MODEL_TYPE}\",\n    )\n    cfg.freeze()\n\n    annotation_path = cfg.EVAL.EGO4DLT.ANNOTATION_PATH\n    data_dir = cfg.EVAL.EGO4DLT.DATA_DIR\n    track_mode = cfg.EVAL.EGO4DLT.TRACK_MODE\n    use_visual_clip = cfg.EVAL.EGO4DLT.USE_VISUAL_CLIP\n    eval_ratio = cfg.EVAL.EGO4DLT.EVAL_RATIO\n    print_freq = cfg.EVAL.PRINT_FREQ\n\n    # Initilize data loader\n    logging.info(\"building dataset\")\n    eval_dataset = EGO4DLTTrackingDataset(\n        data_dir, annotation_path, ratio=eval_ratio, split=\"test\"\n    )\n    logging.info(f\"{global_rank}: Length of eval dataset {len(eval_dataset)}\")\n\n    if comm.get_world_size() > 1:\n        eval_sampler = torch.utils.data.distributed.DistributedSampler(\n            eval_dataset, shuffle=False\n        )\n        batch_sampler = torch.utils.data.sampler.BatchSampler(\n            eval_sampler, 1, drop_last=False\n        )\n    else:\n        batch_sampler = None\n    eval_loader = torch.utils.data.DataLoader(\n        eval_dataset,\n        num_workers=cfg.EVAL.NUM_WORKERS,\n        batch_sampler=batch_sampler,\n        collate_fn=trivial_batch_collator,  # don't batch, but yield individual elements\n    )\n    print(f\"GPU {comm.get_local_rank()}: {len(eval_loader)}\")\n    # Setup stats logger\n    result = {}\n    batch_time = AverageMeter(\"Time\", \":6.3f\")\n    data_time = AverageMeter(\"Data\", \":6.3f\")\n    progress = ProgressMeter(\n        len(eval_loader),\n        [batch_time, data_time],\n    )\n\n    save_dir = os.path.join(result_dir, \"intermediate_result\")\n    pathmgr.mkdirs(save_dir)\n    # switch to train mode\n    model.eval()\n\n    end = time.time()\n    # currently batchsize = 1\n    for i, data in enumerate(eval_loader):\n        seq = data[0]\n        seq_name = seq.name\n        clip_uid, target_id = seq_name.split(\"_\")[:2]\n        object_title = \"\".join(seq_name.split(\"_\")[2:])\n\n        if use_visual_clip:\n            raise NotImplementedError\n        else:\n            # visual_crop should only contain one element\n            assert len(seq.visual_crop) == 1\n            target_bbox = seq.visual_crop[list(seq.visual_crop.keys())[0]]\n            target_frame_number = list(seq.visual_crop.keys())[0]\n\n        logging.info(f\"Processing {clip_uid}\")\n\n        if track_mode == \"forward_backward_from_vcrop\":\n            total_frames = len(seq.frames)\n\n            if cfg.EVAL.EGO4DLT.SAMPLE_5FPS == True:\n                # This assumes the exported clips are 30FPS\n                forward_frame_numbers = list(\n                    range(target_frame_number, total_frames, 6)\n                )\n                backward_frame_numbers = list(range(target_frame_number, -1, -6))\n            else:\n                forward_frame_numbers = list(range(target_frame_number, total_frames))\n                backward_frame_numbers = list(range(target_frame_number + 1))[::-1]\n\n            forward_meta_data = {\n                \"target_bbox\": target_bbox,\n                \"target_id\": target_id,\n                \"frame_numbers\": forward_frame_numbers,\n            }\n            backward_meta_data = {\n                \"target_bbox\": target_bbox,\n                \"target_id\": target_id,\n                \"frame_numbers\": backward_frame_numbers,\n            }\n\n            pred_traj = model.inference(seq, forward_meta_data)\n            forward_pred_bboxes = pred_traj[target_id][\"bboxes\"]\n            model.reset_tracker()\n\n            pred_traj = model.inference(seq, backward_meta_data)\n            backward_pred_bboxes = pred_traj[target_id][\"bboxes\"]\n            model.reset_tracker()\n\n            pred_bboxes = backward_pred_bboxes[::-1][:-1] + forward_pred_bboxes\n        else:\n            raise NotImplementedError(f\"Track mode {track_mode} is not implemented.\")\n\n        # measure elapsed time\n        batch_time.update(time.time() - end)\n        end = time.time()\n\n        if i % print_freq == 0:\n            progress.display(i)\n\n        result[seq_name] = {\n            \"target_id\": target_id,\n            \"object_title\": object_title,\n            \"clip_uid\": clip_uid,\n            \"seq_name\": seq_name,\n            \"pred_bboxes\": pred_bboxes,\n        }\n        model.reset_tracker()\n\n        save_path = os.path.join(save_dir, f\"{seq_name}.pkl\")\n        pkl.dump(result, pathmgr.open(save_path, \"wb\"))\n        logging.info(f\"Node {global_rank}. Saved to {save_path}\")\n\n    return result_dir\n\n\ndef gather_ego4d_lt_tracking_result(result):\n    gathered = {}\n    for seq_name, res in result.items():\n        gathered[seq_name] = res\n\n    return gathered\n"
  },
  {
    "path": "EgoTracks/tools/eval_net.py",
    "content": "# (c) Facebook, Inc. and its affiliates. Confidential and proprietary.\n\nimport argparse\nimport logging\n\nimport detectron2.utils.comm as comm\nimport torch\nimport torch.backends.cudnn as cudnn\nimport torch.nn.parallel\nimport torch.optim\nimport torch.utils.data\nimport torch.utils.data.distributed\nfrom tracking.models.stark_tracker.stark_tracker import STARKTracker\nfrom .eval_datasets.build import (\n    build_calculate_metrics_function,\n    build_eval_function,\n)\nfrom tracking.utils.defaults import setup\n\n\nparser = argparse.ArgumentParser(description=\"Tracking\")\nMODELS = {\n    \"STARK\": STARKTracker,\n}\n\n\ndef modify_STARK_cfg_by_dataset(cfg, dataset_name):\n    cfg.defrost()\n    if dataset_name == \"EGO4DVQTracking\":\n        cfg.TEST.IS_SEARCH_LOCAL = cfg.EVAL.EGO4DVQ.IS_SEARCH_LOCAL\n\n    cfg.TEST.UPDATE_INTERVALS.UPDATE_INTERVALS = getattr(\n        cfg.TEST.UPDATE_INTERVALS, dataset_name\n    )\n    cfg.freeze()\n\n    return cfg\n\n\ndef eval_main(args, cfg=None):\n    # The optional cfg is used for training code to overwrite\n    # which model checkpoint to read from\n    if cfg is None:\n        cfg = setup(args)\n    local_rank = comm.get_local_rank()\n    logging.info(\"Use GPU: {} for evaluating\".format(local_rank))\n\n    cudnn.benchmark = False\n    cudnn.deterministic = True\n\n    # create model\n\n    for dataset_name in cfg.EVAL.EVAL_DATASETS:\n        logging.info(f\"Creating model {cfg.MODEL_TYPE} for dataset {dataset_name}\")\n        # In STARK, we need to set the update interval for different datasets\n        if cfg.MODEL_TYPE == \"STARK\":\n            cfg = modify_STARK_cfg_by_dataset(cfg, dataset_name)\n        logging.info(cfg)\n        if cfg.MODEL_TYPE in MODELS:\n            model = MODELS[cfg.MODEL_TYPE](\n                cfg, device=torch.device(f\"cuda:{local_rank}\")\n            )\n        else:\n            raise NotImplementedError(f\"Model type {cfg.MODEL_TYPE} is not supported!\")\n        eval_func = build_eval_function(dataset_name)\n        eval_func(model, cfg)\n\n\ndef calculate_metrics(args):\n    cfg = setup(args)\n    result = {}\n    for dataset_name in cfg.EVAL.EVAL_DATASETS:\n        calculate_metrics_func = build_calculate_metrics_function(dataset_name)\n        result[dataset_name] = calculate_metrics_func(cfg)\n\n    return result\n\n\nif __name__ == \"__main__\":\n    eval_main()\n"
  },
  {
    "path": "EgoTracks/tools/preprocess/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tools/preprocess/extract_ego4d_clip_frames.py",
    "content": "\"\"\"\nExtract frames from clip\n\"\"\"\n\nimport csv\nimport functools\nimport json\nimport multiprocessing\nimport os\nimport time\nfrom collections import defaultdict\nfrom typing import List, NamedTuple\n\nimport av\n\nfrom PIL import Image\nfrom tqdm import tqdm\n\n\nclass ExtractFramesWorkflowParams(NamedTuple):\n    num_process: int = 8\n    clip_dir: str = \"/datasets01/ego4d_track2/v1/clips\"\n    annotation_path: str = (\n        \"/checkpoint/haotang/data/EgoTracks/annotations/challenge_test_v1.json\"\n    )\n    output_dir: str = \"/checkpoint/haotang/data/EgoTracks/clips_frames\"\n\n\ndef run_single_process(clip_uid: str, params: ExtractFramesWorkflowParams):\n    frames_save_dir = os.path.join(params.output_dir, \"frames\", f\"{clip_uid}\")\n    info_save_dir = os.path.join(params.output_dir, \"clip_info\")\n    info_save_path = os.path.join(params.output_dir, \"clip_info\", f\"{clip_uid}.csv\")\n    os.makedirs(frames_save_dir, exist_ok=True)\n    os.makedirs(info_save_dir, exist_ok=True)\n    clip_path = os.path.join(params.clip_dir, f\"{clip_uid}.mp4\")\n    frame_numbers = []\n\n    print(f\"Start processing {clip_uid}!\")\n    s = time.time()\n    with av.open(clip_path) as container:\n        avg_fps = container.streams.video[0].average_rate\n        stream_base = container.streams.video[0].time_base\n        pts_scale = avg_fps * stream_base\n\n        for frame in container.decode(video=0):\n            frame_number = int(frame.pts * pts_scale)\n            image = frame.to_ndarray(format=\"rgb24\")\n            pil_img = Image.fromarray(image)\n            pil_img.save(\n                os.path.join(frames_save_dir, f\"{frame_number}.jpg\"), format=\"JPEG\"\n            )\n            # cv2.imwrite(os.path.join(local_output_dir, f\"{frame_number}.jpg\"), image)\n            frame_numbers.append(f\"{frame_number}.jpg\")\n\n    with open(info_save_path, \"w\") as f:\n        write = csv.writer(f, delimiter=\"\\n\")\n        write.writerow(frame_numbers)\n\n    print(f\"Finished {clip_uid} in {time.time() - s}!\")\n\n\ndef extract_clip_ids(file_path: str):\n    with open(file_path, \"r\") as f:\n        annotations = json.load(f)\n    clip_uids = []\n    for v in annotations[\"videos\"]:\n        for c in v[\"clips\"]:\n            clip_uids.append(c[\"exported_clip_uid\"])\n\n    return clip_uids\n\n\ndef remove_finished_clip_uids(clip_uids: List, params: ExtractFramesWorkflowParams):\n    res = []\n    info_save_dir = os.path.join(params.output_dir, \"clip_info\")\n\n    for clip_uid in clip_uids:\n        if not os.path.exists(os.path.join(info_save_dir, f\"{clip_uid}.csv\")):\n            res.append(clip_uid)\n        else:\n            print(f\"{clip_uid} was already extracted!\")\n\n    return res\n\n\ndef read_csv(path: str):\n    if not os.path.exists(path):\n        raise RuntimeError\n    with open(path) as f:\n        frame_numbers = [line.strip() for line in f.readlines()]\n    return frame_numbers\n\n\ndef combine_clip_info(params):\n    combined_save_path = os.path.join(params.output_dir, \"clip_info.json\")\n    clip_info_dir = os.path.join(params.output_dir, \"clip_info\")\n    clip_info_files = os.listdir(clip_info_dir)\n    clip_info_dict = defaultdict(dict)\n    for clip_info_file in tqdm(clip_info_files, total=len(clip_info_files)):\n        clip_uid = clip_info_file.split(\".csv\")[0]\n\n        info_path = os.path.join(clip_info_dir, f\"{clip_uid}.csv\")\n        frame_numbers = read_csv(info_path)\n        clip_info_dict[clip_uid][\"frames\"] = frame_numbers\n\n    with open(combined_save_path, \"w\") as f:\n        json.dump(clip_info_dict, f)\n\n\ndef main():\n    params = ExtractFramesWorkflowParams()\n    clip_uids = extract_clip_ids(params.annotation_path)\n    clip_uids = remove_finished_clip_uids(clip_uids, params)\n    print(f\"Total {len(clip_uids)} to be processed ...\")\n\n    # run_single_process(clip_uids[0], params=params)\n    pool = multiprocessing.Pool(params.num_process)\n    pool.map(functools.partial(run_single_process, params=params), clip_uids)\n\n    pool.close()\n    pool.join()\n    # Combine info for each clip into one file\n    combine_clip_info(params)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "EgoTracks/tools/train_net.py",
    "content": "\"\"\"\nTrain_net for Tracking\n\nRun this command to test locally:\n>>> buck run @mode/inplace @mode/dev-nosan //vision/fair_accel/pixar_env/pixar_environment/tracking/tools:train_net -- --print-passing-details\n\"\"\"\n\nfrom collections import defaultdict\nimport csv\nimport json\nimport logging\nimport os\nfrom datetime import datetime\n\nimport detectron2.utils.comm as comm\nimport torch\nimport yaml\nfrom torch import distributed as dist, multiprocessing as mp\nfrom torch.backends import cudnn\nfrom tracking.tools.eval_net import eval_main\nfrom tracking.tools.trainers.starkst_trainer import STARKSTrainer, STARKSTTrainer\nfrom tracking.utils.defaults import default_argument_parser, setup\nfrom tracking.utils.env import pathmgr\nfrom tracking.utils.types import Params\nfrom tracking.utils.multiprocessing import launch_job\nimport pickle as pkl\nimport io\n\n\n# # TODO: delete once finish debug\n# def train_main(params, rank=0, gpu=0, group=None):\n#     OUTPUT_DIR = params.result_dir\n#     cudnn.benchmark = True\n#     print(\"Start training fisrt stage - STARKS ...\")\n#     params.STARK.model_type = \"stark_st1\"\n#     params.STARK.TRAIN.TRAIN_CLS = False\n#     params.STARK.DATA.TRAIN.DATASETS_NAME = [\"LASOT\"]\n#     params.STARK.DATA.TRAIN.DATASETS_RATIO = [1]\n#     params.STARK.DATA.DATA_FRACTION = None  # Faster test\n\n#     params.STARK.TRAIN.EPOCH = 2\n#     params.STARK.TRAIN.BATCH_SIZE = 4\n\n#     # decrease iterations to test faster\n#     params.STARK.DATA.TRAIN.SAMPLE_PER_EPOCH = 40\n#     params.STARK.DATA.VAL.SAMPLE_PER_EPOCH = 20\n#     params.STARK.TRAIN.VAL_EPOCH_INTERVAL = 5\n\n#     params.STARK.OUTPUT_DIR = os.path.join(OUTPUT_DIR, \"STARKS\")\n\n#     starks_trainer = STARKSTrainer(params.STARK)\n#     starks_trainer.train()\n\n#     comm.synchronize()\n#     print(\"Start training second stage - STARKST ...\")\n\n#     params.STARK.model_type = \"stark_st2\"\n#     params.STARK.OUTPUT_DIR = os.path.join(OUTPUT_DIR, \"STARKST\")\n#     params.STARK.PREV_CHECKPOINT_DIR = os.path.join(\n#         OUTPUT_DIR, \"STARKS\", \"checkpoints\"\n#     )\n#     params.STARK.TRAIN.TRAIN_CLS = True\n#     starkst_trainer = STARKSTTrainer(params.STARK)\n#     print(f\"{comm.get_rank()} Trainer {STARKSTTrainer} {starkst_trainer}\")\n#     starkst_trainer.train(load_previous_ckpt=True)\n#     # train_main(params, rank=0, local_rank=-1, group=None)\n\n#     comm.synchronize()\n#     # eval_result\n#     checkpoint_dir = os.path.join(\n#         OUTPUT_DIR,\n#         \"STARKST\",\n#         \"checkpoints\",\n#     )\n#     checkpoint_list = pathmgr.ls(checkpoint_dir)\n#     checkpoint_list = sorted(checkpoint_list)\n#     checkpoint_path = os.path.join(checkpoint_dir, checkpoint_list[-1])\n#     params.model_path = checkpoint_path\n#     params.result_dir = os.path.join(\n#         OUTPUT_DIR,\n#         \"eval\",\n#         f\"{params.track_mode}_{'5FPS' if params.is_read_5FPS_clip else '30FPS'}\",\n#     )\n#     local_rank = comm.get_local_rank()\n#     global_rank = comm.get_rank()\n#     return eval_main(params, global_rank, local_rank)\n\n\ndef train_main(args):\n    logging.info(args)\n    cfg = setup(args)\n    output_dir = cfg.OUTPUT_DIR\n    pathmgr.mkdirs(output_dir)\n    if comm.is_main_process():\n        with pathmgr.open(os.path.join(output_dir, \"config.yaml\"), \"w\") as f:\n            yaml.dump(cfg.dump(), f)\n\n    if cfg.MODEL_TYPE == \"STARK\":\n        stage_1_cfg = cfg.clone()\n        stage_1_cfg.defrost()\n        # STARK requires two-stage training:\n        # First stage train localization while\n        # the second stage train classification\n        if comm.is_main_process():\n            logging.error(\"Start training fisrt stage - STARKS ...\")\n        cudnn.benchmark = cfg.CUDNN_BENCHMARK\n        stage_1_cfg.TRAIN = cfg.TRAIN_STAGE_1.clone()\n        stage_1_cfg.OUTPUT_DIR = os.path.join(output_dir, \"STARKS\")\n        logging.info(stage_1_cfg)\n        stage_1_cfg.freeze()\n\n        starks_trainer = STARKSTrainer(stage_1_cfg)\n        if stage_1_cfg.MODEL.WEIGHTS:\n            starks_trainer.load_checkpoint(checkpoint=stage_1_cfg.MODEL.WEIGHTS)\n        if args.resume:\n            starks_trainer.load_checkpoint()\n        starks_trainer.train()\n\n        comm.synchronize()\n        if comm.is_main_process():\n            logging.error(\"Start training second stage - STARKST ...\")\n\n        stage_2_cfg = cfg.clone()\n        stage_2_cfg.defrost()\n        stage_2_cfg.TRAIN = cfg.TRAIN_STAGE_2.clone()\n        stage_2_cfg.OUTPUT_DIR = os.path.join(output_dir, \"STARKST\")\n        stage_2_cfg.freeze()\n        prev_checkpoint_dir = os.path.join(output_dir, \"STARKS\", \"checkpoints\")\n\n        # Load the checkpoint from Stage1 training\n        checkpoint_list = pathmgr.ls(prev_checkpoint_dir)\n        checkpoint_list = sorted(checkpoint_list)\n        checkpoint_path = os.path.join(prev_checkpoint_dir, checkpoint_list[-1])\n\n        starkst_trainer = STARKSTTrainer(stage_2_cfg)\n        starkst_trainer.load_checkpoint(checkpoint=checkpoint_path)\n        starkst_trainer.train()\n\n        comm.synchronize()\n    else:\n        raise NotImplementedError(\n            f\"Training model type {cfg.MODEL_TYPE} is not supported!\"\n        )\n\n    # eval_result\n    eval_cfg = cfg.clone()\n    eval_cfg.defrost()\n    checkpoint_dir = os.path.join(\n        output_dir,\n        \"STARKST\",\n        \"checkpoints\",\n    )\n    checkpoint_list = pathmgr.ls(checkpoint_dir)\n    checkpoint_list = sorted(checkpoint_list)\n    checkpoint_path = os.path.join(checkpoint_dir, checkpoint_list[-1])\n    eval_cfg.MODEL.WEIGHTS = checkpoint_path\n    eval_cfg.freeze()\n\n    return eval_main(args, cfg=eval_cfg)\n\n\ndef run_train(\n    local_rank,\n    main_func,\n    params,\n    num_machines,\n    num_gpus_per_machine,\n    machine_rank,\n    dist_url,\n):\n    world_size = num_machines * num_gpus_per_machine\n    rank = machine_rank * num_gpus_per_machine + local_rank\n    dist.init_process_group(\n        backend=\"NCCL\",\n        init_method=dist_url,\n        world_size=world_size,\n        rank=local_rank,\n    )\n    assert comm._LOCAL_PROCESS_GROUP is None\n    for i in range(num_machines):\n        ranks_on_i = list(\n            range(i * num_gpus_per_machine, (i + 1) * num_gpus_per_machine)\n        )\n        pg = dist.new_group(ranks_on_i)\n        if i == machine_rank:\n            comm._LOCAL_PROCESS_GROUP = pg\n\n    torch.cuda.set_device(local_rank)\n    main_func(params, rank=rank, gpu=local_rank)\n\n\ndef result2submission(args):\n    cfg = setup(args)\n    result_dir = os.path.join(\n        cfg.OUTPUT_DIR,\n        \"eval\",\n        \"EGO4DLTTracking\",\n        f\"{cfg.EVAL.EGO4DLT.TRACK_MODE}\",\n        f\"{cfg.MODEL_TYPE}\",\n    )\n    intermediate_dir = os.path.join(result_dir, \"intermediate_result\")\n\n    result = {}\n\n    files = pathmgr.ls(intermediate_dir)\n    for f in files:\n        path = os.path.join(intermediate_dir, f)\n        logging.info(path)\n        shard_result = pkl.load(pathmgr.open(path, \"rb\"))\n        result.update(shard_result)\n\n    submission = defaultdict(dict)\n    for k, v in result.items():\n        data = []\n        for bbox_dict in v[\"pred_bboxes\"]:\n            submission[k][int(bbox_dict[\"frame_number\"])] = bbox_dict[\"bbox\"] + [\n                bbox_dict[\"score\"]\n            ]\n\n    with open(os.path.join(result_dir, f\"submission.json\"), \"w\") as f:\n        json.dump(submission, f, indent=4)\n\n\ndef main():\n    args = default_argument_parser().parse_args()\n\n    args.config_file = \"configs/STARK/stark_st_base.yaml\"\n    if args.eval_only:\n        launch_job(\n            eval_main,\n            args.num_gpus,\n            num_machines=args.num_machines,\n            init_method=args.dist_url,\n            machine_rank=args.machine_rank,\n            args=(args,),\n        )\n        result2submission(args)\n    else:\n        launch_job(\n            train_main,\n            args.num_gpus,\n            num_machines=args.num_machines,\n            init_method=args.dist_url,\n            machine_rank=args.machine_rank,\n            args=(args,),\n        )\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "EgoTracks/tools/trainers/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tools/trainers/base_trainer.py",
    "content": "import logging\nimport os\nimport traceback\n\nimport detectron2.utils.comm as comm\nimport torch\nfrom torch.nn import BCEWithLogitsLoss\nfrom torch.nn.functional import l1_loss\nfrom torch.nn.parallel import (\n    DataParallel,\n    DistributedDataParallel,\n    DistributedDataParallel as DDP,\n)\nfrom torch.utils.data.distributed import DistributedSampler\nfrom torch.utils.tensorboard import SummaryWriter\nfrom tracking.dataset.build import build_dataloaders\nfrom tracking.models.stark_tracker.stark_st import build_starkst\nfrom tracking.models.stark_tracker.utils.box_ops import giou_loss\nfrom tracking.solver.build import build_optimizer_scheduler\nfrom tracking.utils.env import pathmgr\n\nLOSS_FUNCTIONS = {\"giou\": giou_loss, \"l1\": l1_loss, \"cls\": BCEWithLogitsLoss()}\n\n\ndef build_loss_function(cfg):\n    loss_funcs = {}\n    loss_weights = {}\n    assert len(cfg.TRAIN.LOSS_FUNCTIONS) == len(cfg.TRAIN.LOSS_WEIGHTS)\n    for loss_name, loss_weight in zip(cfg.TRAIN.LOSS_FUNCTIONS, cfg.TRAIN.LOSS_WEIGHTS):\n        loss_funcs[loss_name] = LOSS_FUNCTIONS[loss_name]\n        loss_weights[loss_name] = loss_weight\n\n    return loss_funcs, loss_weights\n\n\nclass BaseTrainer:\n    \"\"\"Base trainer class. Contains functions for training and saving/loading checkpoints.\n    Trainer classes should inherit from this one and overload the train_epoch function.\"\"\"\n\n    def __init__(self, cfg):\n        \"\"\"\n        args:\n            cfg - config for the entire training\n        \"\"\"\n        model = build_starkst(cfg)\n        # if comm.get_world_size() == 1:\n        #     device = torch.device(f\"cuda:{comm.get_local_rank()}\")\n        #     model = model.to(device)\n        # else:\n        device = torch.device(\"cuda\")\n        model.to(device)\n\n        if comm.get_world_size() > 1:\n            model = DDP(\n                model, device_ids=[comm.get_local_rank()], find_unused_parameters=True\n            )\n\n        local_rank = comm.get_local_rank()\n        train_loader, val_loader = build_dataloaders(cfg, local_rank)\n        optimizer, lr_scheduler = build_optimizer_scheduler(cfg, model)\n        objective, loss_weight = build_loss_function(cfg)\n\n        self.optimizer = optimizer\n        self.lr_scheduler = lr_scheduler\n        self.model = model\n        self.loaders = [train_loader, val_loader]\n        self.epoch = 0\n        self.global_step = 0\n        self.stats = {}\n        self.cfg = cfg\n        self.output_dir = cfg.OUTPUT_DIR\n        self.log_path = os.path.join(self.output_dir, \"log.txt\")\n        self.print_interval = cfg.TRAIN.PRINT_INTERVAL\n        self.scheduler_type = cfg.TRAIN.SCHEDULER.TYPE\n        self.prev_checkpoint_dir = getattr(cfg, \"PREV_CHECKPOINT_DIR\", None)\n        self.checkpoint_dir = os.path.join(self.output_dir, \"checkpoints\")\n        pathmgr.mkdirs(self.output_dir)\n        pathmgr.mkdirs(self.checkpoint_dir)\n\n        if comm.is_main_process():\n            self.tensorboard_dir = os.path.join(self.output_dir, \"tensorboard\")\n            pathmgr.mkdirs(self.tensorboard_dir)\n            self.writer = SummaryWriter(self.tensorboard_dir)\n\n        self.device = device\n        self.objective = objective\n        self.loss_weight = loss_weight\n\n    def train(\n        self,\n        load_latest=False,\n        load_previous_ckpt=False,\n    ):\n        \"\"\"Do training for the given number of epochs.\n        args:\n            max_epochs - Max number of training epochs,\n            load_latest - Bool indicating whether to resume from latest epoch.\n        \"\"\"\n        max_epochs = self.cfg.TRAIN.EPOCH\n        epoch = -1\n        num_tries = 1\n        for _i in range(num_tries):\n            try:\n                if load_latest:\n                    self.load_checkpoint()\n                if load_previous_ckpt:\n                    self.load_checkpoint(\n                        checkpoint=self.prev_checkpoint_dir,\n                        fields=[\"state_dict\"],\n                    )\n\n                for epoch in range(self.epoch + 1, max_epochs + 1):\n                    self.epoch = epoch\n\n                    self.train_epoch()\n\n                    if self.lr_scheduler is not None:\n                        if self.scheduler_type != \"cosine\":\n                            self.lr_scheduler.step()\n                        else:\n                            self.lr_scheduler.step(epoch - 1)\n                    # only save the last 10 checkpoints\n                    if comm.is_main_process() and (\n                        epoch > (max_epochs - 10)\n                        or epoch % self.cfg.TRAIN.CHECKPOINT_PERIOD == 0\n                    ):\n                        self.save_checkpoint()\n            except Exception:\n                print(\"Training crashed at epoch {}\".format(epoch))\n                # self.epoch -= 1\n                # load_latest = True\n                print(\"Traceback for the error!\")\n                print(traceback.format_exc())\n                print(\"Restarting training from last epoch ...\")\n                raise Exception\n\n        print(\"Finished training!\")\n\n    def train_epoch(self):\n        raise NotImplementedError\n\n    def save_checkpoint(self):\n        \"\"\"Saves a checkpoint of the network and other variables.\"\"\"\n\n        if isinstance(self.model, (DistributedDataParallel, DataParallel)):\n            model = self.model.module\n        else:\n            model = self.model\n\n        model_type = type(model).__name__\n        state = {\n            \"epoch\": self.epoch,\n            \"model_type\": model_type,\n            \"state_dict\": model.state_dict(),\n            \"model_info\": getattr(model, \"info\", None),\n            \"constructor\": getattr(model, \"constructor\", None),\n            \"optimizer\": self.optimizer.state_dict(),\n            \"stats\": self.stats,\n            \"cfg\": self.cfg,\n        }\n\n        # First save as a tmp file\n        file_path = os.path.join(\n            self.checkpoint_dir, \"{}_ep{:04d}.pth.tar\".format(model_type, self.epoch)\n        )\n        with pathmgr.open(file_path, \"wb\") as f:\n            torch.save(state, f)\n\n    def load_checkpoint(\n        self, checkpoint=None, fields=None, ignore_fields=None, load_constructor=False\n    ):\n        \"\"\"Loads a network checkpoint file.\n\n        Can be called in three different ways:\n            load_checkpoint():\n                Loads the latest epoch from the workspace. Use this to continue training.\n            load_checkpoint(epoch_num):\n                Loads the network at the given epoch number (int).\n            load_checkpoint(path_to_checkpoint):\n                Loads the file from the given absolute path (str).\n        \"\"\"\n\n        if isinstance(self.model, (DistributedDataParallel, DataParallel)):\n            model = self.model.module\n        else:\n            model = self.model\n\n        model_type = type(model).__name__\n\n        if checkpoint is None:\n            # Load most recent checkpoint\n            checkpoint_list = pathmgr.ls(os.path.join(self.checkpoint_dir))\n            checkpoint_list = [\n                ckpt for ckpt in checkpoint_list if ckpt.split(\"_\")[0] == model_type\n            ]\n            checkpoint_list = sorted(checkpoint_list)\n            if checkpoint_list:\n                checkpoint_path = os.path.join(self.checkpoint_dir, checkpoint_list[-1])\n            else:\n                logging.error(\"No matching checkpoint file found\")\n                return\n        elif isinstance(checkpoint, int):\n            # Checkpoint is the epoch number\n            checkpoint_path = os.path.join(\n                self.checkpoint_dir,\n                \"{}_ep{:04d}.pth.tar\".format(model_type, checkpoint),\n            )\n        elif isinstance(checkpoint, str):\n            # Load from a checkpoint path, usually for finetuning purpose\n            if pathmgr.isfile(checkpoint):\n                checkpoint_path = checkpoint\n                fields = [\"state_dict\"]\n            elif pathmgr.isdir(checkpoint):\n                # Load from a checkpoint directory, usually training result from previous stage\n                checkpoint_list = pathmgr.ls(checkpoint)\n                checkpoint_list = [\n                    ckpt for ckpt in checkpoint_list if ckpt.split(\"_\")[0] == model_type\n                ]\n                checkpoint_list = sorted(checkpoint_list)\n                if checkpoint_list:\n                    checkpoint_path = os.path.join(checkpoint, checkpoint_list[-1])\n                else:\n                    logging.error(\"No matching checkpoint file found\")\n                    return\n            else:\n                raise NotImplementedError\n        else:\n            raise TypeError\n\n        # Load network\n        with pathmgr.open(checkpoint_path, \"rb\") as f:\n            checkpoint_dict = torch.load(f, map_location=\"cpu\")\n\n        if \"model_type\" in checkpoint_dict:\n            assert (\n                model_type == checkpoint_dict[\"model_type\"]\n            ), \"Model is not of correct type.\"\n\n        if fields is None:\n            fields = checkpoint_dict.keys()\n        if ignore_fields is None:\n            ignore_fields = [\"cfg\"]\n\n        # Never load the scheduler. It exists in older checkpoints.\n        ignore_fields.extend(\n            [\"lr_scheduler\", \"constructor\", \"model_type\", \"actor_type\", \"model_info\"]\n        )\n\n        # Load all fields\n        for key in fields:\n            if key in ignore_fields:\n                continue\n            if key == \"state_dict\":\n                logging.info(f\"Loading state_dict from {checkpoint_path}\")\n                model.load_state_dict(checkpoint_dict[key])\n            elif key == \"optimizer\":\n                self.optimizer.load_state_dict(checkpoint_dict[key])\n            else:\n                setattr(self, key, checkpoint_dict[key])\n\n            # Set the net info\n            if (\n                key == \"constructor\"\n                and load_constructor\n                and checkpoint_dict[\"constructor\"] is not None\n            ):\n                model.constructor = checkpoint_dict[\"constructor\"]\n            if key == \"model_info\" and checkpoint_dict[\"model_info\"] is not None:\n                model.info = checkpoint_dict[\"model_info\"]\n\n            # Update the epoch in lr scheduler\n            if key == \"epoch\":\n                self.lr_scheduler.last_epoch = self.epoch\n                # 2021.1.10 Update the epoch in data_samplers\n                for loader in self.loaders:\n                    if isinstance(loader.sampler, DistributedSampler):\n                        loader.sampler.set_epoch(self.epoch)\n            return True\n\n\nclass StatValue:\n    def __init__(self):\n        self.clear()\n\n    def reset(self):\n        self.val = 0\n\n    def clear(self):\n        self.reset()\n        self.history = []\n\n    def update(self, val):\n        self.val = val\n        self.history.append(self.val)\n\n\nclass AverageMeter(object):\n    \"\"\"Computes and stores the average and current value\"\"\"\n\n    def __init__(self):\n        self.clear()\n        self.has_new_data = False\n\n    def reset(self):\n        self.avg = 0\n        self.val = 0\n        self.sum = 0\n        self.count = 0\n\n    def clear(self):\n        self.reset()\n        self.history = []\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 new_epoch(self):\n        if self.count > 0:\n            self.history.append(self.avg)\n            self.reset()\n            self.has_new_data = True\n        else:\n            self.has_new_data = False\n"
  },
  {
    "path": "EgoTracks/tools/trainers/starkst_trainer.py",
    "content": "import logging\nimport time\nimport traceback\nfrom collections import OrderedDict\n\nimport torch\nfrom detectron2.utils import comm\nfrom torch.utils.data.distributed import DistributedSampler\nfrom tracking.models.stark_tracker.utils.box_ops import (\n    box_cxcywh_to_xyxy,\n    box_xywh_to_xyxy,\n)\nfrom tracking.models.stark_tracker.utils.merge import merge_template_search\nfrom tracking.models.stark_tracker.utils.misc import NestedTensor\nfrom tracking.tools.trainers.base_trainer import AverageMeter, BaseTrainer, StatValue\nfrom tracking.utils.env import pathmgr\n\n\nclass STARKSTrainer(BaseTrainer):\n    def __init__(self, cfg):\n        \"\"\"\n        args:\n            cfg: config_file\n        \"\"\"\n        super().__init__(cfg)\n\n        self._set_default_settings()\n\n        # Initialize statistics variables\n        self.stats = OrderedDict({loader.name: None for loader in self.loaders})\n\n    def _set_default_settings(self):\n        # Dict of all default values\n        default = {\"print_interval\": 10, \"print_stats\": None, \"description\": \"\"}\n\n        for param, default_value in default.items():\n            if getattr(self, param, None) is None:\n                setattr(self, param, default_value)\n\n    def cycle_dataset(self, loader):\n        \"\"\"Do a cycle of training or validation.\"\"\"\n\n        self.model.train(loader.training)\n        torch.set_grad_enabled(loader.training)\n\n        self._init_timing()\n\n        for i, data in enumerate(loader, 1):\n            # get inputs\n            # if self.move_data_to_gpu:\n            data = data.to(self.device)\n\n            data[\"epoch\"] = self.epoch\n            data[\"cfg\"] = self.cfg\n            # forward pass\n            loss, stats = self.forward_and_compute_loss(data)\n\n            # backward pass and update weights\n            if loader.training:\n                self.optimizer.zero_grad()\n                loss.backward()\n                if self.cfg.TRAIN.GRAD_CLIP_NORM > 0:\n                    torch.nn.utils.clip_grad_norm_(\n                        self.model.parameters(), self.cfg.TRAIN.GRAD_CLIP_NORM\n                    )\n                self.optimizer.step()\n\n            # update statistics\n            batch_size = data[\"template_images\"].shape[loader.stack_dim]\n            self._update_stats(stats, batch_size, loader)\n\n            # print statistics\n            if comm.is_main_process():\n                self._print_stats(i, loader, batch_size)\n\n    def forward_and_compute_loss(self, data):\n        out_dict = self.forward_pass(data, run_box_head=True, run_cls_head=False)\n\n        # process the groundtruth\n        gt_bboxes = data[\"search_anno\"]  # (Ns, batch, 4) (x1,y1,w,h)\n\n        # compute losses\n        loss, stats = self.compute_losses(out_dict, gt_bboxes[0])\n\n        # Increment global step for TensorBoard logging\n        self.global_step += 1\n\n        return loss, stats\n\n    def forward_pass(self, data, run_box_head, run_cls_head):\n        feat_dict_list = []\n        # process the templates\n        for i in range(self.cfg.DATA.TEMPLATE.NUMBER):\n            template_img_i = data[\"template_images\"][i].view(\n                -1, *data[\"template_images\"].shape[2:]\n            )  # (batch, 3, 128, 128)\n            template_att_i = data[\"template_att\"][i].view(\n                -1, *data[\"template_att\"].shape[2:]\n            )  # (batch, 128, 128)\n            feat_dict_list.append(\n                self.model(\n                    img=NestedTensor(template_img_i, template_att_i), mode=\"backbone\"\n                )\n            )\n\n        # process the search regions (t-th frame)\n        search_img = data[\"search_images\"].view(\n            -1, *data[\"search_images\"].shape[2:]\n        )  # (batch, 3, 320, 320)\n        search_att = data[\"search_att\"].view(\n            -1, *data[\"search_att\"].shape[2:]\n        )  # (batch, 320, 320)\n        feat_dict_list.append(\n            self.model(img=NestedTensor(search_img, search_att), mode=\"backbone\")\n        )\n\n        # run the transformer and compute losses\n        seq_dict = merge_template_search(feat_dict_list)\n        out_dict, _, _ = self.model(\n            seq_dict=seq_dict,\n            mode=\"transformer\",\n            run_box_head=run_box_head,\n            run_cls_head=run_cls_head,\n        )\n        # out_dict: (B, N, C), outputs_coord: (1, B, N, C), target_query: (1, B, N, C)\n        return out_dict\n\n    def compute_losses(self, pred_dict, gt_bbox, return_status=True):\n        # Get boxes\n        pred_boxes = pred_dict[\"pred_boxes\"]\n        if torch.isnan(pred_boxes).any():\n            raise ValueError(\"Network outputs is NAN! Stop Training\")\n        num_queries = pred_boxes.size(1)\n        pred_boxes_vec = box_cxcywh_to_xyxy(pred_boxes).view(\n            -1, 4\n        )  # (B,N,4) --> (BN,4) (x1,y1,x2,y2)\n        gt_boxes_vec = (\n            box_xywh_to_xyxy(gt_bbox)[:, None, :]\n            .repeat((1, num_queries, 1))\n            .view(-1, 4)\n            .clamp(min=0.0, max=1.0)\n        )  # (B,4) --> (B,1,4) --> (B,N,4)\n        # compute giou and iou\n        try:\n            giou_loss, iou = self.objective[\"giou\"](\n                pred_boxes_vec, gt_boxes_vec\n            )  # (BN,4) (BN,4)\n        except Exception:\n            logging.error(traceback.format_exc())\n            giou_loss, iou = torch.tensor(0.0).cuda(), torch.tensor(0.0).cuda()\n\n        # Mean IoU\n        mean_iou = iou.detach().mean()\n        # compute l1 loss\n        l1_loss = self.objective[\"l1\"](pred_boxes_vec, gt_boxes_vec)  # (BN,4) (BN,4)\n        # weighted sum\n        loss = self.loss_weight[\"giou\"] * giou_loss + self.loss_weight[\"l1\"] * l1_loss\n\n        # Write losses and mIoU to Tensorboard\n        if comm.is_main_process():\n            self.writer.add_scalar(\"Loss/l1\", l1_loss, global_step=self.global_step)\n            self.writer.add_scalar(\"Loss/giou\", giou_loss, global_step=self.global_step)\n            self.writer.add_scalar(\"Loss/total\", loss, global_step=self.global_step)\n            self.writer.add_scalar(\"mean_iou\", mean_iou, global_step=self.global_step)\n\n        if return_status:\n            # status for log\n            status = {\n                \"Loss/total\": loss.item(),\n                \"Loss/giou\": giou_loss.item(),\n                \"Loss/l1\": l1_loss.item(),\n                \"IoU\": mean_iou.item(),\n            }\n            return loss, status\n        else:\n            return loss\n\n    def train_epoch(self):\n        \"\"\"Do one epoch for each loader.\"\"\"\n        for loader in self.loaders:\n            if self.epoch % loader.epoch_interval == 0:\n                # 2021.1.10 Set epoch\n                if isinstance(loader.sampler, DistributedSampler):\n                    loader.sampler.set_epoch(self.epoch)\n                self.cycle_dataset(loader)\n                if loader.name == \"val\":\n                    comm.synchronize()\n\n        self._stats_new_epoch()\n\n    def _init_timing(self):\n        self.num_frames = 0\n        self.start_time = time.time()\n        self.prev_time = self.start_time\n\n    def _update_stats(self, new_stats: OrderedDict, batch_size, loader):\n        # Initialize stats if not initialized yet\n        if loader.name not in self.stats.keys() or self.stats[loader.name] is None:\n            self.stats[loader.name] = OrderedDict(\n                {name: AverageMeter() for name in new_stats.keys()}\n            )\n\n        for name, val in new_stats.items():\n            if name not in self.stats[loader.name].keys():\n                self.stats[loader.name][name] = AverageMeter()\n            self.stats[loader.name][name].update(val, batch_size)\n\n    def _print_stats(self, i, loader, batch_size):\n        self.num_frames += batch_size\n        current_time = time.time()\n        batch_fps = batch_size / (current_time - self.prev_time)\n        average_fps = self.num_frames / (current_time - self.start_time)\n        self.prev_time = current_time\n        if i % self.print_interval == 0 or i == loader.__len__():\n            print_str = \"[%s: %d, %d / %d] \" % (\n                loader.name,\n                self.epoch,\n                i,\n                loader.__len__(),\n            )\n            print_str += \"FPS: %.1f (%.1f)  ,  \" % (average_fps, batch_fps)\n            for name, val in self.stats[loader.name].items():\n                if self.print_stats is None or name in self.print_stats:\n                    if hasattr(val, \"avg\"):\n                        print_str += \"%s: %.5f  ,  \" % (name, val.avg)\n                    # else:\n                    #     print_str += '%s: %r  ,  ' % (name, val)\n\n            logging.error(print_str[:-5])\n            with pathmgr.open(self.log_path, \"a\") as f:\n                f.writelines(print_str[:-5] + \"\\n\")\n\n    def _stats_new_epoch(self):\n        # Record learning rate\n        for loader in self.loaders:\n            if loader.training:\n                try:\n                    lr_list = self.lr_scheduler.get_lr()\n                except Exception:\n                    lr_list = self.lr_scheduler._get_lr(self.epoch)\n                for i, lr in enumerate(lr_list):\n                    var_name = \"LearningRate/group{}\".format(i)\n                    if var_name not in self.stats[loader.name].keys():\n                        self.stats[loader.name][var_name] = StatValue()\n                    self.stats[loader.name][var_name].update(lr)\n\n        for loader_stats in self.stats.values():\n            if loader_stats is None:\n                continue\n            for stat_value in loader_stats.values():\n                if hasattr(stat_value, \"new_epoch\"):\n                    stat_value.new_epoch()\n\n\nclass STARKSTTrainer(STARKSTrainer):\n    def __init__(self, cfg):\n        \"\"\"\n        args:\n            cfg: config_file\n        \"\"\"\n        super().__init__(cfg)\n\n    def compute_losses(self, pred_dict, labels, return_status=True):\n        loss = self.loss_weight[\"cls\"] * self.objective[\"cls\"](\n            pred_dict[\"pred_logits\"].view(-1), labels\n        )\n\n        # Write losses to Tensorboard\n        if comm.is_main_process():\n            self.writer.add_scalar(\"Loss/cls\", loss, global_step=self.global_step)\n\n        if return_status:\n            # status for log\n            status = {\"cls_loss\": loss.item()}\n            return loss, status\n        else:\n            return loss\n\n    def forward_and_compute_loss(self, data):\n        # forward pass\n        out_dict = self.forward_pass(data, run_box_head=False, run_cls_head=True)\n\n        # process the groundtruth label\n        labels = data[\"label\"].view(-1)  # (batch, ) 0 or 1\n\n        loss, status = self.compute_losses(out_dict, labels)\n\n        # Increment global step for TensorBoard logging\n        self.global_step += 1\n\n        return loss, status\n"
  },
  {
    "path": "EgoTracks/tracking/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/config/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/config/config.py",
    "content": "from .stark_defaults import cfg as default_stark_config\n\n\nCONFIGS = {\"STARK\": default_stark_config}\n\n\ndef get_cfg(model_type):\n    return CONFIGS[model_type].clone()\n"
  },
  {
    "path": "EgoTracks/tracking/config/stark_defaults.py",
    "content": "from fvcore.common.config import CfgNode\n\n\n\"\"\"\nAdd default config for STARK-ST Stage2.\n\"\"\"\ncfg = CfgNode()\ncfg.OUTPUT_DIR = None\ncfg.SEED = -1\ncfg.CUDNN_BENCHMARK = False\ncfg.MODEL_TYPE = \"STARK\"\n\n# MODEL\ncfg.MODEL = CfgNode()\ncfg.MODEL.HEAD_TYPE = \"CORNER\"\ncfg.MODEL.NLAYER_HEAD = 3\ncfg.MODEL.HIDDEN_DIM = 256\ncfg.MODEL.NUM_OBJECT_QUERIES = 1\ncfg.MODEL.POSITION_EMBEDDING = \"sine\"  # sine or learned\ncfg.MODEL.PREDICT_MASK = False\ncfg.MODEL.WEIGHTS = None\n# MODEL.BACKBONE\ncfg.MODEL.BACKBONE = CfgNode()\ncfg.MODEL.BACKBONE.TYPE = \"resnet50\"  # resnet50, resnext101_32x8d\ncfg.MODEL.BACKBONE.OUTPUT_LAYERS = [\"layer3\"]\ncfg.MODEL.BACKBONE.STRIDE = 16\ncfg.MODEL.BACKBONE.DILATION = False\n# MODEL.TRANSFORMER\ncfg.MODEL.TRANSFORMER = CfgNode()\ncfg.MODEL.TRANSFORMER.NHEADS = 8\ncfg.MODEL.TRANSFORMER.DROPOUT = 0.1\ncfg.MODEL.TRANSFORMER.DIM_FEEDFORWARD = 2048\ncfg.MODEL.TRANSFORMER.ENC_LAYERS = 6\ncfg.MODEL.TRANSFORMER.DEC_LAYERS = 6\ncfg.MODEL.TRANSFORMER.PRE_NORM = False\ncfg.MODEL.TRANSFORMER.DIVIDE_NORM = False\n\n# TRAIN\n# General TRAIN config\nTRAIN = CfgNode()\nTRAIN.TRAIN_CLS = False\nTRAIN.LR = 0.0001\nTRAIN.WEIGHT_DECAY = 0.0001\nTRAIN.EPOCH = 50\nTRAIN.LR_DROP_EPOCH = 40\nTRAIN.BATCH_SIZE = 16\nTRAIN.NUM_WORKER = 8\nTRAIN.OPTIMIZER = \"ADAMW\"\nTRAIN.BACKBONE_MULTIPLIER = 0.1\nTRAIN.DEEP_SUPERVISION = False\nTRAIN.FREEZE_BACKBONE_BN = True\nTRAIN.FREEZE_LAYERS = [\"conv1\", \"layer1\"]\nTRAIN.PRINT_INTERVAL = 50\nTRAIN.VAL_EPOCH_INTERVAL = 20\nTRAIN.GRAD_CLIP_NORM = 0.1\nTRAIN.CHECKPOINT_PERIOD = 10\n# TRAIN.SCHEDULER\nTRAIN.SCHEDULER = CfgNode()\nTRAIN.SCHEDULER.TYPE = \"step\"\nTRAIN.SCHEDULER.DECAY_RATE = 0.1\nTRAIN.LOSS_FUNCTIONS = [\"giou\", \"l1\"]\nTRAIN.LOSS_WEIGHTS = [2.0, 5.0]\n\ncfg.TRAIN = TRAIN.clone()\n\ncfg.TRAIN_STAGE_1 = TRAIN.clone()\ncfg.TRAIN_STAGE_2 = TRAIN.clone()\n\ncfg.TRAIN_STAGE_2.EPOCH = 10\ncfg.TRAIN_STAGE_2.CHECKPOINT_PERIOD = 1\ncfg.TRAIN_STAGE_2.TRAIN_CLS = True\ncfg.TRAIN_STAGE_2.LOSS_FUNCTIONS = [\"cls\"]\ncfg.TRAIN_STAGE_2.LOSS_WEIGHTS = [1.0]\n\n# DATA\ncfg.DATA = CfgNode()\ncfg.DATA.SAMPLER_MODE = \"trident_pro\"  # sampling methods\ncfg.DATA.MEAN = [0.485, 0.456, 0.406]\ncfg.DATA.STD = [0.229, 0.224, 0.225]\ncfg.DATA.MAX_SAMPLE_INTERVAL = [200]\n# We fetch data from different manifold folders\ncfg.DATA.COCO_DATA_DIR = \"\"\ncfg.DATA.TRACKINGNET_DATA_DIR = \"\"\ncfg.DATA.CACHED_TRACKINGNET_SEQUENCE_LIST_DIR: str = \"\"\ncfg.DATA.LASOT_DATA_DIR: str = \"\"\ncfg.DATA.GOT10K_DATA_DIR: str = \"\"\ncfg.DATA.CACHED_GOT10K_META_INFO_DIR: str = \"\"\ncfg.DATA.EGO4DLTT_ANNOTATION_PATH = (\n    \"/checkpoint/haotang/data/EgoTracks/annotations/train_v1.json\"\n)\ncfg.DATA.EGO4DLTT_DATA_DIR = \"/checkpoint/haotang/data/EgoTracks/clips_frames\"\ncfg.DATA.DATA_FRACTION = None\n# DATA.TRAIN\ncfg.DATA.TRAIN = CfgNode()\ncfg.DATA.TRAIN.DATASETS_NAME = [\"LASOT\", \"GOT10K_vottrain\", \"COCO17\", \"TRACKINGNET\"]\ncfg.DATA.TRAIN.DATASETS_RATIO = [1, 1, 1, 1]\ncfg.DATA.TRAIN.SAMPLE_PER_EPOCH = 60000\n# DATA.VAL\ncfg.DATA.VAL = CfgNode()\ncfg.DATA.VAL.DATASETS_NAME = [\"GOT10K_votval\"]\ncfg.DATA.VAL.DATASETS_RATIO = [1]\ncfg.DATA.VAL.SAMPLE_PER_EPOCH = 10000\n# DATA.SEARCH\ncfg.DATA.SEARCH = CfgNode()\ncfg.DATA.SEARCH.NUMBER = 1  # number of search frames for multiple frames training\ncfg.DATA.SEARCH.SIZE = 320\ncfg.DATA.SEARCH.FACTOR = 5.0\ncfg.DATA.SEARCH.CENTER_JITTER = 4.5\ncfg.DATA.SEARCH.SCALE_JITTER = 0.5\n# DATA.TEMPLATE\ncfg.DATA.TEMPLATE = CfgNode()\ncfg.DATA.TEMPLATE.NUMBER = 2\ncfg.DATA.TEMPLATE.SIZE = 128\ncfg.DATA.TEMPLATE.FACTOR = 2.0\ncfg.DATA.TEMPLATE.CENTER_JITTER = 0\ncfg.DATA.TEMPLATE.SCALE_JITTER = 0\n\n# TEST\ncfg.TEST = CfgNode()\ncfg.TEST.TEMPLATE_FACTOR = 2.0\ncfg.TEST.TEMPLATE_SIZE = 128\ncfg.TEST.SEARCH_SIZE = 320\ncfg.TEST.SEARCH_FACTOR = 5.0\ncfg.TEST.TEST_BATCHSIZE = 8\ncfg.TEST.IS_SEARCH_LOCAL = True\ncfg.TEST.UPDATE_INTERVALS = CfgNode()\n# This attribute will be overwritten during evaluation,\n# to correctly set the update_intervals for different datasets\ncfg.TEST.UPDATE_INTERVALS.UPDATE_INTERVALS = [100]\ncfg.TEST.UPDATE_INTERVALS.LASOT = [200]\ncfg.TEST.UPDATE_INTERVALS.GOT10K = [200]\ncfg.TEST.UPDATE_INTERVALS.GOT10K_TEST = [200]\ncfg.TEST.UPDATE_INTERVALS.TRACKINGNET = [25]\ncfg.TEST.UPDATE_INTERVALS.VOT20 = [10]\ncfg.TEST.UPDATE_INTERVALS.VOT20LT = [200]\ncfg.TEST.UPDATE_INTERVALS.EGO4DVQTracking = [1]\ncfg.TEST.UPDATE_INTERVALS.EGO4DLTTracking = [30]\n\n# Eval\ncfg.EVAL = CfgNode()\ncfg.EVAL.EVAL_DATASETS = [\"EGO4DLTTracking\"]\ncfg.EVAL.OUTPUT_DIR = None\ncfg.EVAL.NUM_WORKERS = 8\ncfg.EVAL.PRINT_FREQ = 10\ncfg.EVAL.GOT10K = CfgNode()\ncfg.EVAL.GOT10K.VISUALIZE = False\n\n# Ego4D Lt track dataset config\ncfg.EVAL.EGO4DLT = CfgNode()\ncfg.EVAL.EGO4DLT.ANNOTATION_PATH = (\n    \"/checkpoint/haotang/data/EgoTracks/annotations/challenge_test_v1_unannotated.json\"\n)\ncfg.EVAL.EGO4DLT.DATA_DIR = \"/checkpoint/haotang/data/EgoTracks/clips_frames\"\ncfg.EVAL.EGO4DLT.SAMPLE_5FPS = True\ncfg.EVAL.EGO4DLT.TRACK_MODE = \"forward_backward_from_vcrop\"\ncfg.EVAL.EGO4DLT.USE_VISUAL_CLIP = False\ncfg.EVAL.EGO4DLT.EVAL_RATIO = 1.0\ncfg.EVAL.EGO4DLT.PRE_DOWNLOAD = False\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/dataset/base_image_dataset.py",
    "content": "import torch.utils.data\nfrom tracking.utils.utils import opencv_loader\n\n\nclass BaseImageDataset(torch.utils.data.Dataset):\n    \"\"\"Base class for image datasets\"\"\"\n\n    def __init__(self, name, root, image_loader=opencv_loader):\n        \"\"\"\n        args:\n            root - The root path to the dataset\n            image_loader (jpeg4py_loader) -  The function to read the images. jpeg4py (https://github.com/ajkxyz/jpeg4py)\n                                            is used by default.\n        \"\"\"\n        self.name = name\n        self.root = root\n        self.image_loader = image_loader\n\n        self.image_list = []  # Contains the list of sequences.\n        self.class_list = []\n\n    def __len__(self):\n        \"\"\"Returns size of the dataset\n        returns:\n            int - number of samples in the dataset\n        \"\"\"\n        return self.get_num_images()\n\n    def __getitem__(self, index):\n        \"\"\"Not to be used! Check get_frames() instead.\"\"\"\n        return None\n\n    def get_name(self):\n        \"\"\"Name of the dataset\n\n        returns:\n            string - Name of the dataset\n        \"\"\"\n        raise NotImplementedError\n\n    def get_num_images(self):\n        \"\"\"Number of sequences in a dataset\n\n        returns:\n            int - number of sequences in the dataset.\"\"\"\n        return len(self.image_list)\n\n    def has_class_info(self):\n        return False\n\n    def get_class_name(self, image_id):\n        return None\n\n    def get_num_classes(self):\n        return len(self.class_list)\n\n    def get_class_list(self):\n        return self.class_list\n\n    def get_images_in_class(self, class_name):\n        raise NotImplementedError\n\n    def has_segmentation_info(self):\n        return False\n\n    def get_image_info(self, seq_id):\n        \"\"\"Returns information about a particular image,\n\n        args:\n            seq_id - index of the image\n\n        returns:\n            Dict\n        \"\"\"\n        raise NotImplementedError\n\n    def get_image(self, image_id, anno=None):\n        \"\"\"Get a image\n\n        args:\n            image_id      - index of image\n            anno(None)  - The annotation for the sequence (see get_sequence_info). If None, they will be loaded.\n\n        returns:\n            image -\n            anno -\n            dict - A dict containing meta information about the sequence, e.g. class of the target object.\n\n        \"\"\"\n        raise NotImplementedError\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/base_video_dataset.py",
    "content": "import torch.utils.data\nfrom tracking.utils.utils import opencv_loader\n\n\nclass BaseVideoDataset(torch.utils.data.Dataset):\n    \"\"\"Base class for video datasets\"\"\"\n\n    def __init__(self, name, root, image_loader=opencv_loader):\n        \"\"\"\n        args:\n            root - The root path to the dataset\n            image_loader (jpeg4py_loader) -  The function to read the images. jpeg4py (https://github.com/ajkxyz/jpeg4py)\n                                            is used by default.\n        \"\"\"\n        self.name = name\n        self.root = root\n        self.image_loader = image_loader\n\n        self.sequence_list = []  # Contains the list of sequences.\n        self.class_list = []\n\n    def __len__(self):\n        \"\"\"Returns size of the dataset\n        returns:\n            int - number of samples in the dataset\n        \"\"\"\n        return self.get_num_sequences()\n\n    def __getitem__(self, index):\n        \"\"\"Not to be used! Check get_frames() instead.\"\"\"\n        return None\n\n    def is_video_sequence(self):\n        \"\"\"Returns whether the dataset is a video dataset or an image dataset\n\n        returns:\n            bool - True if a video dataset\n        \"\"\"\n        return True\n\n    def is_synthetic_video_dataset(self):\n        \"\"\"Returns whether the dataset contains real videos or synthetic\n\n        returns:\n            bool - True if a video dataset\n        \"\"\"\n        return False\n\n    def get_name(self):\n        \"\"\"Name of the dataset\n\n        returns:\n            string - Name of the dataset\n        \"\"\"\n        raise NotImplementedError\n\n    def get_num_sequences(self):\n        \"\"\"Number of sequences in a dataset\n\n        returns:\n            int - number of sequences in the dataset.\"\"\"\n        return len(self.sequence_list)\n\n    def has_class_info(self):\n        return False\n\n    def has_occlusion_info(self):\n        return False\n\n    def get_num_classes(self):\n        return len(self.class_list)\n\n    def get_class_list(self):\n        return self.class_list\n\n    def get_sequences_in_class(self, class_name):\n        raise NotImplementedError\n\n    def has_segmentation_info(self):\n        return False\n\n    def get_sequence_info(self, seq_id):\n        \"\"\"Returns information about a particular sequences,\n\n        args:\n            seq_id - index of the sequence\n\n        returns:\n            Dict\n        \"\"\"\n        raise NotImplementedError\n\n    def get_frames(self, seq_id, frame_ids, anno=None):\n        \"\"\"Get a set of frames from a particular sequence\n\n        args:\n            seq_id      - index of sequence\n            frame_ids   - a list of frame numbers\n            anno(None)  - The annotation for the sequence (see get_sequence_info). If None, they will be loaded.\n\n        returns:\n            list - List of frames corresponding to frame_ids\n            list - List of dicts for each frame\n            dict - A dict containing meta information about the sequence, e.g. class of the target object.\n\n        \"\"\"\n        raise NotImplementedError\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/build.py",
    "content": "import os\nfrom typing import List\n\nimport tracking.dataset.transforms as tfm\nfrom torch.utils.data.distributed import DistributedSampler\n\n# datasets related\nfrom tracking.dataset.dataloader import LTRLoader\nfrom tracking.dataset.processing.stark_processing import STARKProcessing\nfrom tracking.dataset.trackingdataset import TrackingDataset\nfrom tracking.dataset.train_datasets.coco_seq import MSCOCOSeq\nfrom tracking.dataset.train_datasets.ego4d_vq import Ego4DVQ\nfrom tracking.dataset.train_datasets.got10k import Got10k\nfrom tracking.dataset.train_datasets.ego4d_lt_tracking import EGO4DLTT\nfrom tracking.dataset.train_datasets.lasot import Lasot\nfrom tracking.dataset.train_datasets.tracking_net import TrackingNet\nfrom tracking.utils.utils import opencv_loader\n\n\n# TODO: Add other dataset class\ndef names2datasets(name_list: List, cfg, image_loader=opencv_loader):\n    assert isinstance(name_list, list)\n    datasets = []\n    for name in name_list:\n        assert name in [\n            \"LASOT\",\n            \"GOT10K_vottrain\",\n            \"GOT10K_votval\",\n            \"GOT10K_train_full\",\n            \"COCO17\",\n            \"VID\",\n            \"TRACKINGNET\",\n            \"EGO4DVQ\",\n            \"EGO4DLTT\",\n        ], f\"Dataset {name} not found!\"\n        if name == \"LASOT\":\n            datasets.append(\n                Lasot(\n                    cfg.DATA.LASOT_DATA_DIR,\n                    split=\"train\",\n                    image_loader=image_loader,\n                    data_fraction=cfg.DATA.DATA_FRACTION,\n                )\n            )\n        if name == \"GOT10K_vottrain\":\n            datasets.append(\n                Got10k(\n                    os.path.join(cfg.DATA.GOT10K_DATA_DIR, \"train\"),\n                    split=\"vottrain\",\n                    image_loader=image_loader,\n                    data_fraction=cfg.DATA.DATA_FRACTION,\n                    cached_sequence_meta_info_dir=cfg.DATA.CACHED_GOT10K_META_INFO_DIR,\n                )\n            )\n        if name == \"GOT10K_train_full\":\n            datasets.append(\n                Got10k(\n                    os.path.join(cfg.DATA.GOT10K_DATA_DIR, \"train\"),\n                    split=\"train_full\",\n                    image_loader=image_loader,\n                    data_fraction=cfg.DATA.DATA_FRACTION,\n                    cached_sequence_meta_info_dir=cfg.DATA.CACHED_GOT10K_META_INFO_DIR,\n                )\n            )\n        if name == \"GOT10K_votval\":\n            datasets.append(\n                Got10k(\n                    os.path.join(cfg.DATA.GOT10K_DATA_DIR, \"train\"),\n                    split=\"votval\",\n                    image_loader=image_loader,\n                    data_fraction=cfg.DATA.DATA_FRACTION,\n                    cached_sequence_meta_info_dir=cfg.DATA.CACHED_GOT10K_META_INFO_DIR,\n                )\n            )\n        if name == \"COCO17\":\n            datasets.append(\n                MSCOCOSeq(\n                    cfg.DATA.COCO_DATA_DIR,\n                    version=\"2017\",\n                    image_loader=image_loader,\n                    data_fraction=cfg.DATA.DATA_FRACTION,\n                )\n            )\n        if name == \"EGO4DVQ\":\n            datasets.append(\n                Ego4DVQ(\n                    cfg.DATA.EGO4DVQ_DATA_DIR,\n                    cfg.DATA.EGO4DVQ_ANNOTATION_PATH,\n                    image_loader=image_loader,\n                    data_fraction=cfg.DATA.DATA_FRACTION,\n                )\n            )\n        # if name == \"VID\":\n        #     datasets.append(\n        #         ImagenetVID(\n        #             cfg.DATA.VID_DATA_DIR,\n        #             image_loader=image_loader,\n        #             data_fraction=cfg.DATA.DATA_FRACTION,\n        #         )\n        #     )\n        if name == \"TRACKINGNET\":\n            datasets.append(\n                TrackingNet(\n                    cfg.DATA.TRACKINGNET_DATA_DIR,\n                    image_loader=image_loader,\n                    data_fraction=cfg.DATA.DATA_FRACTION,\n                    cached_sequence_list_dir=cfg.DATA.CACHED_TRACKINGNET_SEQUENCE_LIST_DIR,\n                )\n            )\n\n        if name == \"EGO4DLTT\":\n            datasets.append(\n                EGO4DLTT(\n                    cfg.DATA.EGO4DLTT_DATA_DIR,\n                    cfg.DATA.EGO4DLTT_ANNOTATION_PATH,\n                    image_loader=image_loader,\n                    data_fraction=cfg.DATA.DATA_FRACTION,\n                )\n            )\n\n    return datasets\n\n\ndef build_dataloaders(cfg, local_rank=-1):\n    # Data transform\n    transform_joint = tfm.Transform(\n        tfm.ToGrayscale(probability=0.05), tfm.RandomHorizontalFlip(probability=0.5)\n    )\n\n    transform_train = tfm.Transform(\n        tfm.ToTensorAndJitter(0.2),\n        tfm.RandomHorizontalFlip_Norm(probability=0.5),\n        tfm.Normalize(mean=cfg.DATA.MEAN, std=cfg.DATA.STD),\n    )\n\n    transform_val = tfm.Transform(\n        tfm.ToTensor(), tfm.Normalize(mean=cfg.DATA.MEAN, std=cfg.DATA.STD)\n    )\n\n    # The tracking pairs processing module\n    output_sz = {\"template\": cfg.DATA.TEMPLATE.SIZE, \"search\": cfg.DATA.SEARCH.SIZE}\n    search_area_factor = {\n        \"template\": cfg.DATA.TEMPLATE.FACTOR,\n        \"search\": cfg.DATA.SEARCH.FACTOR,\n    }\n    center_jitter_factor = {\n        \"template\": cfg.DATA.TEMPLATE.CENTER_JITTER,\n        \"search\": cfg.DATA.SEARCH.CENTER_JITTER,\n    }\n    scale_jitter_factor = {\n        \"template\": cfg.DATA.TEMPLATE.SCALE_JITTER,\n        \"search\": cfg.DATA.SEARCH.SCALE_JITTER,\n    }\n\n    data_processing_train = STARKProcessing(\n        search_area_factor=search_area_factor,\n        output_sz=output_sz,\n        center_jitter_factor=center_jitter_factor,\n        scale_jitter_factor=scale_jitter_factor,\n        mode=\"sequence\",\n        transform=transform_train,\n        joint_transform=transform_joint,\n    )\n\n    data_processing_val = STARKProcessing(\n        search_area_factor=search_area_factor,\n        output_sz=output_sz,\n        center_jitter_factor=center_jitter_factor,\n        scale_jitter_factor=scale_jitter_factor,\n        mode=\"sequence\",\n        transform=transform_val,\n        joint_transform=transform_joint,\n    )\n\n    # Train sampler and loader\n    num_template = getattr(cfg.DATA.TEMPLATE, \"NUMBER\", 1)\n    num_search = getattr(cfg.DATA.SEARCH, \"NUMBER\", 1)\n    sampler_mode = getattr(cfg.DATA, \"SAMPLER_MODE\", \"causal\")\n    train_cls = getattr(cfg.TRAIN, \"TRAIN_CLS\", False)\n    print(\"sampler_mode\", sampler_mode)\n    dataset_train = TrackingDataset(\n        datasets=names2datasets(cfg.DATA.TRAIN.DATASETS_NAME, cfg, opencv_loader),\n        p_datasets=cfg.DATA.TRAIN.DATASETS_RATIO,\n        samples_per_epoch=cfg.DATA.TRAIN.SAMPLE_PER_EPOCH,\n        max_gap=cfg.DATA.MAX_SAMPLE_INTERVAL,\n        num_search_frames=num_search,\n        num_template_frames=num_template,\n        processing=data_processing_train,\n        frame_sample_mode=sampler_mode,\n        train_cls=train_cls,\n    )\n\n    train_sampler = DistributedSampler(dataset_train) if local_rank != -1 else None\n    shuffle = False if local_rank != -1 else True\n\n    loader_train = LTRLoader(\n        \"train\",\n        dataset_train,\n        training=True,\n        batch_size=cfg.TRAIN.BATCH_SIZE,\n        shuffle=shuffle,\n        num_workers=cfg.TRAIN.NUM_WORKER,\n        drop_last=True,\n        stack_dim=1,\n        sampler=train_sampler,\n    )\n\n    # Validation samplers and loaders\n    dataset_val = TrackingDataset(\n        datasets=names2datasets(cfg.DATA.VAL.DATASETS_NAME, cfg, opencv_loader),\n        p_datasets=cfg.DATA.VAL.DATASETS_RATIO,\n        samples_per_epoch=cfg.DATA.VAL.SAMPLE_PER_EPOCH,\n        max_gap=cfg.DATA.MAX_SAMPLE_INTERVAL,\n        num_search_frames=num_search,\n        num_template_frames=num_template,\n        processing=data_processing_val,\n        frame_sample_mode=sampler_mode,\n        train_cls=train_cls,\n    )\n    val_sampler = DistributedSampler(dataset_val) if local_rank != -1 else None\n    loader_val = LTRLoader(\n        \"val\",\n        dataset_val,\n        training=False,\n        batch_size=cfg.TRAIN.BATCH_SIZE,\n        num_workers=cfg.TRAIN.NUM_WORKER,\n        drop_last=True,\n        stack_dim=1,\n        sampler=val_sampler,\n        epoch_interval=cfg.TRAIN.VAL_EPOCH_INTERVAL,\n    )\n\n    return loader_train, loader_val\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/README.md",
    "content": "# README\n\n## Description for different text files\nGOT10K\n- got10k_train_full_split.txt: the complete GOT-10K training set. (9335 videos)\n- got10k_train_split.txt: part of videos from the GOT-10K training set\n- got10k_val_split.txt: another part of videos from the GOT-10K training set\n- got10k_vot_exclude.txt: 1k videos that are forbidden from \"using to train models then testing on VOT\" (as required by [VOT Challenge](https://www.votchallenge.net/vot2020/participation.html))\n- got10k_vot_train_split.txt: part of videos from the \"VOT-permitted\" GOT-10K training set\n- got10k_vot_val_split.txt: another part of videos from the \"VOT-permitted\" GOT-10K training set\n\nLaSOT\n- lasot_train_split.txt: the complete LaSOT training set\n\nTrackingNnet\n- trackingnet_classmap.txt: The map from the sequence name to the target class for the TrackingNet\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/got10k_train_full_split.txt",
    "content": "3784\n8998\n3906\n1631\n8277\n8358\n2338\n7938\n2988\n8302\n2662\n2663\n2825\n7447\n4781\n2218\n6348\n5860\n4517\n2819\n8075\n5391\n116\n3606\n7976\n7941\n1024\n4519\n1970\n557\n8579\n6908\n993\n7204\n1991\n3674\n8781\n6840\n5\n3225\n3763\n8688\n6778\n5777\n4794\n2744\n8126\n3864\n1733\n2923\n6829\n701\n683\n2081\n1831\n2404\n1459\n2741\n5972\n3618\n7462\n2654\n103\n2174\n6224\n2989\n2506\n2766\n5912\n2699\n3295\n3986\n609\n4895\n6673\n801\n1098\n1602\n2490\n3129\n8476\n3186\n7355\n4784\n4270\n1812\n4226\n2267\n8873\n6544\n6112\n2381\n4752\n753\n3776\n6511\n6016\n731\n2559\n7369\n5866\n563\n7731\n1105\n5603\n50\n4238\n2208\n8725\n4994\n4719\n1444\n8807\n7298\n8139\n8760\n8173\n2332\n4131\n5207\n1065\n8562\n3992\n4024\n2188\n9095\n6765\n1707\n6105\n6922\n5362\n1486\n7898\n4135\n6574\n1551\n998\n6565\n8127\n8927\n2544\n4365\n510\n768\n3535\n3875\n6808\n2931\n487\n1088\n4451\n368\n2470\n8111\n3493\n7338\n8281\n6390\n1271\n4373\n3667\n3494\n3757\n2966\n3756\n7840\n6315\n7827\n3300\n6261\n4163\n2217\n6549\n94\n7236\n9136\n1857\n6691\n3470\n6271\n807\n516\n9311\n6098\n3144\n8420\n5425\n5694\n2643\n6696\n6072\n7285\n3781\n903\n8522\n6092\n5979\n2622\n2529\n855\n3420\n3261\n8953\n7866\n2492\n3157\n359\n1520\n2642\n7452\n759\n36\n8931\n1744\n4350\n1089\n9199\n4295\n1889\n1908\n4868\n4498\n1968\n9103\n3273\n8723\n7413\n4114\n5584\n4874\n1427\n5211\n7618\n1542\n1353\n8158\n4168\n3200\n6345\n8560\n5619\n5953\n3158\n8849\n5831\n1411\n7294\n8103\n6539\n7397\n1006\n5450\n3119\n4274\n5352\n4571\n2319\n4217\n4976\n902\n1814\n2651\n3299\n3398\n982\n2428\n5793\n1346\n7057\n3737\n7329\n4449\n2110\n7405\n1773\n958\n3901\n4127\n8234\n2994\n7066\n1289\n2995\n5871\n3556\n9085\n846\n2366\n585\n7032\n5516\n5230\n3481\n2732\n6658\n7423\n1855\n6384\n3554\n5823\n4948\n7058\n4667\n5377\n2503\n7694\n9191\n9144\n655\n3409\n62\n8019\n8970\n5523\n7403\n3379\n2323\n4833\n5750\n3178\n6548\n8891\n7501\n3280\n7404\n343\n2171\n8397\n1367\n8611\n6118\n6603\n3729\n7182\n9048\n7733\n5642\n7141\n3335\n4845\n5449\n3467\n6250\n163\n5168\n2040\n5339\n3609\n8352\n3426\n8567\n769\n187\n6151\n6437\n7028\n8507\n3970\n9146\n2068\n5028\n7492\n1661\n2815\n2469\n2563\n3814\n8430\n4305\n3479\n5678\n9115\n4132\n1211\n5459\n4814\n545\n4556\n238\n4296\n2724\n1260\n2581\n6087\n4632\n4313\n380\n1209\n5447\n3032\n7942\n8943\n806\n2432\n6130\n4314\n2131\n9045\n6531\n5706\n6747\n7724\n2017\n3292\n5469\n2743\n424\n4233\n7643\n8619\n5192\n4516\n9324\n3537\n9152\n8058\n7526\n8711\n1949\n5982\n1732\n6702\n7027\n6388\n7012\n328\n2130\n452\n306\n7669\n3134\n5761\n3703\n44\n4189\n695\n7672\n5224\n9215\n5644\n3143\n3704\n5443\n2348\n7177\n2328\n4725\n354\n1418\n7810\n7746\n9002\n5759\n7226\n4535\n9160\n4385\n5397\n7249\n2936\n3204\n6287\n385\n2371\n2738\n3636\n9033\n2246\n2680\n6940\n4310\n2054\n9250\n9080\n4568\n5586\n4469\n2038\n3410\n7900\n4332\n6108\n678\n3319\n9079\n1054\n4048\n4751\n1320\n6890\n7931\n1398\n4349\n5299\n5025\n7932\n5738\n7787\n4590\n4020\n1274\n2488\n8497\n3372\n8965\n3219\n799\n3664\n6500\n7093\n4362\n6205\n4244\n4652\n1964\n5945\n6434\n2031\n2684\n6632\n4588\n8271\n3232\n5782\n2904\n6789\n5636\n7200\n3632\n5435\n8203\n3480\n4786\n7579\n3351\n1921\n798\n3646\n3094\n4359\n1654\n5975\n376\n5965\n780\n7821\n9224\n6738\n3185\n2133\n6248\n5996\n2834\n531\n5688\n2448\n7925\n7974\n5924\n6401\n5778\n6594\n5442\n8336\n4522\n3770\n6340\n6328\n4946\n4161\n2954\n2588\n8465\n2885\n1606\n5787\n3407\n3121\n7310\n1413\n1932\n4787\n2579\n3325\n508\n5610\n6480\n4290\n479\n3792\n6628\n2545\n6717\n6972\n2665\n6730\n3547\n6845\n5929\n3540\n4356\n8993\n1052\n2235\n8356\n3403\n8818\n8260\n572\n4159\n1180\n5348\n941\n7948\n2676\n3539\n4866\n6422\n8365\n3217\n1310\n2059\n9177\n1419\n2283\n8892\n8162\n1212\n6277\n3725\n7806\n6149\n7874\n718\n6888\n7118\n277\n656\n8763\n8289\n4759\n5854\n8659\n7710\n3145\n5981\n1881\n5799\n6947\n1609\n6396\n2631\n2887\n318\n2550\n6132\n1736\n2907\n7816\n48\n4304\n8133\n6698\n2760\n7779\n7732\n7642\n1154\n7242\n711\n9262\n539\n8033\n7440\n1913\n5480\n5570\n8594\n8772\n4654\n8974\n6128\n6183\n1071\n8449\n2142\n2298\n524\n1695\n820\n4053\n8241\n1856\n8641\n3981\n217\n1063\n9286\n3152\n221\n5461\n1270\n2006\n7164\n1199\n6951\n5604\n5400\n5309\n3498\n6407\n6661\n7097\n8165\n5169\n3852\n7070\n5702\n4344\n6648\n6904\n3272\n7119\n5795\n2365\n2659\n353\n5444\n6968\n2755\n1924\n2098\n2972\n6006\n5865\n8740\n2418\n3401\n7856\n5841\n598\n836\n1147\n931\n8897\n0\n6049\n1837\n865\n1871\n6116\n6831\n5773\n3587\n303\n1883\n2163\n3070\n1308\n7953\n6300\n6909\n853\n7301\n3279\n123\n7186\n3194\n5553\n5133\n1931\n4622\n6075\n4891\n5722\n5693\n8\n2339\n6596\n71\n379\n4506\n4370\n1238\n2707\n3344\n4254\n8767\n1726\n325\n4148\n5438\n5357\n548\n1332\n6824\n2290\n2335\n3146\n2594\n2315\n3389\n3885\n2621\n4116\n5389\n7412\n7222\n4894\n8595\n2000\n4978\n4721\n6444\n3796\n9321\n2236\n6409\n1523\n1468\n9249\n8270\n2341\n2874\n174\n4757\n4502\n4703\n9034\n9108\n5451\n2619\n5022\n9158\n490\n6540\n1466\n2962\n8771\n3036\n2712\n4539\n1581\n5638\n9246\n4308\n4363\n4647\n4470\n1636\n2511\n1311\n6560\n7519\n8027\n9217\n6464\n6364\n3779\n4822\n3563\n3982\n5896\n5510\n6655\n1524\n2846\n3137\n621\n141\n1887\n6567\n8921\n4671\n6052\n8445\n8699\n7349\n3553\n2117\n7651\n5034\n5383\n649\n3818\n9022\n8414\n1012\n8159\n5081\n8571\n4765\n9135\n4361\n4073\n9142\n727\n2835\n8229\n3989\n4490\n4923\n5477\n1638\n3643\n712\n9044\n2230\n499\n7166\n96\n3172\n8431\n8401\n1470\n6356\n8817\n927\n4212\n2152\n1795\n3812\n4949\n1219\n1538\n3029\n6481\n9042\n7775\n7742\n423\n2085\n7715\n4541\n9061\n5916\n3950\n7420\n4878\n7406\n7046\n7808\n4911\n8804\n6927\n8820\n3264\n300\n8670\n2979\n252\n4407\n3383\n4688\n8504\n6723\n26\n3837\n2489\n4137\n8209\n229\n6490\n2364\n9016\n1763\n1728\n338\n8335\n9063\n5280\n2791\n641\n5454\n4581\n5420\n4548\n2840\n8508\n3463\n7231\n7619\n2560\n1755\n6201\n165\n1471\n6279\n5806\n6867\n5890\n2396\n3416\n1981\n6073\n5872\n3045\n4182\n7607\n3318\n4414\n2998\n6553\n7139\n5624\n2123\n3666\n723\n5110\n6932\n8200\n2222\n8399\n1041\n4138\n1594\n3569\n9253\n393\n7940\n8004\n1475\n6759\n5393\n1107\n2597\n878\n9309\n7576\n5250\n1759\n3142\n2015\n571\n3921\n1255\n7080\n893\n2160\n1355\n82\n1562\n9153\n8583\n4085\n4644\n7196\n9165\n3558\n4550\n6374\n7826\n8602\n4146\n9257\n6083\n874\n8383\n3731\n3374\n3653\n8222\n7344\n470\n1813\n4478\n6871\n7245\n6866\n3998\n7433\n276\n1915\n1988\n8168\n2518\n2686\n831\n6143\n5205\n8718\n1703\n7729\n2077\n7983\n8450\n1195\n9232\n507\n7989\n6974\n4054\n5828\n8655\n6679\n5245\n7783\n5886\n9098\n6491\n8782\n3525\n6542\n131\n8110\n9186\n9074\n4933\n9035\n2607\n4\n2057\n6273\n2711\n5829\n3382\n2696\n3043\n2048\n619\n2499\n5295\n1162\n7807\n3694\n2194\n3149\n1940\n7934\n840\n3592\n8237\n4731\n1324\n8486\n8726\n8573\n2928\n9078\n2272\n2564\n1370\n5911\n7434\n8026\n407\n7546\n2004\n5849\n3034\n7887\n3425\n1118\n926\n3430\n1544\n5902\n2282\n1124\n2334\n129\n1372\n4842\n6473\n4382\n1028\n415\n8269\n8073\n6910\n2796\n3038\n5735\n5080\n2852\n6306\n8842\n9188\n3637\n1066\n532\n928\n5485\n2838\n6753\n9008\n7984\n2816\n8819\n7103\n5977\n5044\n2064\n2599\n4973\n382\n3249\n6446\n6638\n852\n1724\n3368\n892\n3250\n8258\n7962\n4300\n1616\n167\n8855\n2090\n4424\n879\n5136\n5350\n2635\n7828\n8506\n63\n3004\n3847\n3676\n1184\n1705\n6745\n1263\n5020\n746\n1888\n7036\n1033\n3914\n5433\n3905\n4641\n8909\n228\n4801\n3766\n8085\n643\n6914\n9280\n3013\n5657\n3696\n1590\n2920\n8282\n2403\n416\n911\n3849\n4215\n1120\n5490\n296\n2306\n3140\n3742\n4819\n6153\n6414\n760\n3000\n7498\n7108\n6429\n3031\n5314\n751\n3357\n5808\n7505\n98\n7652\n4027\n6257\n3943\n1799\n8577\n5577\n4969\n9163\n2025\n6061\n4026\n5732\n588\n7017\n1415\n4961\n4940\n7152\n538\n706\n2802\n8983\n3375\n1246\n6593\n5837\n1789\n7939\n4997\n5939\n2411\n6133\n199\n7593\n1702\n5406\n6082\n2359\n2912\n6109\n100\n8149\n5470\n2807\n3384\n6413\n3362\n5621\n6019\n9241\n9268\n7703\n4111\n7967\n5458\n7181\n5492\n1112\n6729\n4577\n106\n8853\n3774\n979\n7082\n4610\n1853\n9003\n9292\n2867\n6262\n2245\n3460\n1557\n767\n4796\n8147\n2658\n5769\n6985\n7065\n421\n7990\n3289\n1540\n9316\n2251\n6896\n5947\n4965\n2652\n4480\n963\n9047\n7168\n7824\n3976\n6210\n7018\n7179\n5016\n7789\n6102\n6828\n7659\n9109\n9071\n8115\n7628\n7110\n16\n7513\n835\n939\n4078\n2351\n2322\n3881\n4945\n560\n6837\n6094\n6475\n7901\n3\n771\n8029\n3135\n8044\n7127\n3741\n5156\n7030\n4906\n113\n3747\n7042\n5232\n5225\n3002\n4747\n6879\n5379\n4886\n7192\n4184\n1896\n1834\n8689\n3665\n2957\n6913\n8009\n4851\n6420\n7987\n828\n3003\n8884\n8815\n3198\n8008\n194\n6251\n3303\n3934\n395\n1285\n4169\n1648\n1347\n3600\n4631\n509\n211\n6230\n7241\n8250\n2219\n2582\n8353\n7790\n7583\n4462\n3904\n9004\n6942\n1704\n5686\n8051\n2981\n5511\n6182\n7088\n1699\n1222\n3455\n6189\n1528\n5197\n6221\n7893\n3283\n2837\n7773\n8766\n2942\n8021\n614\n4102\n7362\n1786\n400\n133\n556\n3127\n5237\n3727\n1440\n3873\n6322\n8448\n6285\n8696\n8800\n4009\n3386\n454\n4847\n5685\n9093\n246\n1314\n5895\n6863\n4302\n4260\n8405\n8417\n7116\n255\n3223\n4737\n7852\n6337\n814\n710\n1094\n6103\n5809\n5882\n6336\n4974\n1499\n2806\n3744\n2664\n2436\n4482\n8665\n8918\n1076\n8676\n5725\n9248\n4755\n1447\n9328\n5500\n78\n2653\n792\n6854\n6093\n6172\n3378\n4492\n5529\n5476\n3846\n1391\n383\n4289\n3883\n2648\n3265\n2525\n5402\n4599\n6870\n6877\n4413\n2464\n8519\n2521\n1839\n5822\n5664\n7257\n5375\n6852\n6764\n5182\n8914\n3015\n8509\n3080\n4562\n8979\n6215\n6643\n8601\n6096\n4812\n5246\n7862\n527\n7849\n6737\n12\n2468\n7961\n275\n27\n5932\n3840\n7341\n4996\n8564\n2154\n3788\n6138\n7831\n4442\n757\n4464\n1170\n2568\n19\n323\n6584\n7675\n3441\n2067\n9027\n2486\n4379\n4744\n1737\n7563\n301\n3907\n4742\n6857\n1221\n9284\n8458\n8236\n2897\n4004\n1526\n5345\n4423\n6246\n8578\n1057\n3711\n4986\n4785\n3997\n7311\n4788\n107\n8387\n2041\n2608\n8628\n5830\n6031\n783\n6817\n3293\n541\n773\n8473\n2501\n7247\n5667\n804\n483\n1639\n696\n6060\n5429\n5762\n1527\n7342\n1329\n6225\n7895\n381\n8030\n8520\n8362\n4734\n3526\n9273\n2039\n4142\n5084\n875\n6905\n8968\n5275\n3052\n650\n7509\n232\n2595\n3631\n1810\n4355\n8315\n8908\n1777\n4834\n3164\n2336\n1543\n6212\n8346\n3024\n3719\n1242\n6265\n8101\n3133\n6150\n6358\n3316\n4089\n1647\n4629\n7117\n2596\n5366\n1225\n6371\n624\n2209\n1428\n1158\n7648\n466\n8765\n802\n153\n4639\n3657\n6482\n9320\n2693\n6591\n3294\n2617\n5052\n6305\n3227\n8784\n7170\n93\n5868\n6716\n1671\n178\n2703\n954\n3254\n2262\n5046\n5743\n8647\n6393\n7706\n6604\n3728\n6978\n7489\n7474\n8754\n2740\n2233\n6038\n1491\n8814\n2080\n2358\n5944\n5653\n1164\n9259\n4518\n7343\n5748\n3897\n923\n5967\n2677\n3503\n1202\n4966\n1836\n1863\n6634\n1962\n9096\n9064\n977\n4049\n1464\n658\n536\n3402\n8064\n1309\n259\n7999\n8122\n910\n224\n6152\n7142\n6070\n7523\n8411\n2408\n6766\n9214\n9312\n8325\n6192\n626\n6025\n6240\n8708\n4630\n6777\n1075\n8906\n408\n9269\n6236\n9067\n2514\n8568\n2324\n156\n3136\n3530\n7878\n7308\n4335\n2065\n3845\n4453\n3356\n1450\n371\n7219\n5171\n201\n8642\n2099\n477\n1603\n8339\n7430\n3061\n235\n8291\n1133\n8474\n7035\n8653\n989\n4569\n9092\n8347\n3102\n1743\n9086\n5140\n7438\n1530\n4342\n2460\n7646\n5047\n5071\n5430\n6944\n610\n2803\n1448\n4696\n6156\n4386\n4248\n4256\n994\n2112\n805\n8011\n8276\n8999\n4956\n1712\n2795\n7553\n6436\n2158\n9083\n3184\n5784\n4428\n612\n5288\n6222\n1365\n5074\n6848\n575\n5213\n2175\n4240\n351\n2086\n2656\n5150\n9255\n8189\n7735\n1261\n1344\n4097\n8674\n2984\n4235\n5998\n6488\n537\n1267\n7486\n7124\n6245\n7955\n7337\n5436\n1194\n8226\n209\n1710\n7906\n4357\n4139\n5679\n2584\n2854\n1004\n8246\n8586\n5087\n1878\n4926\n6637\n3197\n7757\n8249\n4055\n6502\n1248\n990\n3928\n2770\n2751\n1020\n6426\n4190\n6839\n2671\n884\n3871\n9212\n4179\n3394\n10\n5861\n5316\n6869\n2985\n8905\n8559\n4457\n2480\n2313\n4100\n4395\n6835\n7799\n7890\n2785\n5468\n7302\n5862\n1803\n6376\n3171\n8591\n717\n7053\n1655\n4489\n2522\n2921\n8555\n1984\n895\n8949\n1305\n738\n7606\n112\n3042\n1325\n437\n3167\n3340\n511\n3689\n5813\n8982\n69\n4421\n7150\n550\n8829\n8685\n3147\n8956\n3166\n7023\n8633\n3308\n2014\n3573\n3880\n4045\n2069\n6051\n4950\n702\n6664\n8418\n2454\n6181\n4853\n4166\n7022\n7418\n3605\n9181\n7172\n5031\n4589\n7858\n6586\n6351\n8334\n7504\n634\n3759\n1890\n890\n6959\n5085\n4919\n2161\n1191\n256\n3610\n7079\n3427\n4071\n7323\n2982\n7263\n7444\n4251\n5846\n4864\n3649\n4311\n7461\n8120\n4582\n6373\n2805\n4872\n4869\n5493\n5867\n2670\n7099\n30\n8933\n930\n7919\n501\n7261\n5289\n7449\n7772\n3613\n7848\n3196\n474\n205\n841\n2611\n6185\n3088\n409\n7239\n5938\n7871\n1343\n6705\n1027\n5596\n2199\n9113\n5471\n6134\n838\n2345\n8359\n4061\n1474\n3229\n270\n4245\n1979\n5995\n1517\n8652\n4006\n4880\n6137\n4693\n2528\n6996\n2926\n5798\n2477\n2549\n1128\n3341\n6014\n4479\n2861\n4208\n5175\n5174\n5118\n3736\n5463\n1588\n2327\n8380\n7982\n1514\n1058\n4586\n6608\n7985\n3044\n1822\n3628\n6851\n549\n1811\n2184\n2601\n4608\n8922\n2540\n6659\n3859\n307\n3650\n3767\n8167\n505\n4366\n4824\n5520\n461\n1933\n2401\n8106\n2055\n7844\n8544\n8838\n4797\n7419\n6686\n7670\n6039\n5672\n5141\n6543\n206\n5252\n4718\n888\n1601\n3218\n5114\n713\n4022\n4419\n6708\n397\n425\n6612\n5057\n1729\n6573\n4729\n4080\n1034\n2961\n534\n8194\n5598\n9218\n2424\n329\n4154\n1597\n922\n109\n8823\n3578\n9038\n8437\n3307\n128\n8032\n1412\n7333\n8762\n8851\n8865\n3056\n468\n3808\n3064\n8798\n7052\n7767\n9231\n1086\n2162\n6566\n2109\n3439\n6122\n3642\n7696\n8610\n5279\n1808\n8687\n8377\n817\n8714\n6066\n4008\n3640\n6015\n1021\n7601\n4855\n6017\n87\n7071\n2730\n7268\n3614\n6084\n6117\n6924\n9102\n2829\n375\n8724\n2095\n22\n1541\n2970\n633\n139\n451\n4521\n179\n1396\n3876\n5824\n8020\n426\n4982\n4172\n1157\n190\n4859\n1455\n3110\n3323\n9104\n858\n6719\n6428\n4495\n8551\n2141\n3984\n3066\n67\n4299\n5821\n8444\n6581\n6097\n7090\n7781\n8944\n3085\n8606\n2114\n5355\n8901\n1461\n3301\n422\n7000\n4820\n5790\n1379\n7536\n4199\n8736\n8991\n5241\n1698\n1294\n1753\n196\n2987\n8680\n4658\n4144\n8639\n6441\n8255\n8156\n3677\n6385\n6520\n7700\n3760\n6001\n1144\n5478\n7394\n8057\n5018\n4232\n5235\n6844\n3111\n8802\n867\n949\n7843\n573\n2278\n6801\n7629\n2714\n5105\n6946\n2697\n5315\n1571\n8677\n2537\n4374\n3833\n7820\n3750\n2033\n6526\n3884\n8706\n7195\n417\n3603\n3001\n6284\n5873\n5718\n8576\n8457\n3589\n5839\n459\n3626\n6342\n8729\n6933\n607\n6053\n8228\n3773\n1805\n6365\n5142\n6069\n1389\n9026\n570\n4614\n5712\n5533\n9222\n2821\n1897\n819\n766\n4060\n4902\n5905\n6842\n5446\n1277\n4303\n2836\n934\n1014\n7822\n7494\n3466\n665\n1047\n5881\n3328\n4664\n315\n1315\n1462\n8616\n7725\n2756\n5749\n1730\n8184\n4567\n5065\n7499\n8867\n1304\n3669\n9192\n410\n8177\n6710\n1210\n2329\n8443\n3911\n1899\n7686\n3315\n7190\n6180\n3116\n5341\n4394\n8337\n9182\n6969\n5715\n2172\n1742\n2782\n3715\n9195\n7960\n2517\n4890\n8294\n2337\n8014\n3353\n7475\n2193\n4843\n8831\n4200\n4653\n6196\n6957\n3063\n2996\n8959\n8973\n6529\n3457\n5274\n8002\n6823\n6154\n5561\n1780\n9318\n7657\n1758\n6503\n7678\n3274\n1625\n4327\n3236\n8575\n3155\n4707\n4331\n1494\n8756\n3174\n1074\n8116\n8295\n8311\n3048\n3752\n6050\n6483\n8003\n9175\n4674\n1642\n2556\n6166\n7165\n8441\n5413\n3990\n1640\n1778\n7500\n8304\n1395\n4315\n5949\n3364\n242\n5763\n1036\n249\n2430\n7426\n8131\n411\n6267\n2045\n6606\n899\n8065\n9052\n7507\n5779\n5616\n2107\n5408\n2980\n6310\n5776\n4328\n821\n3251\n2354\n7076\n1700\n5313\n6736\n79\n8212\n3959\n5677\n7545\n160\n6790\n6859\n3659\n6770\n1106\n8846\n956\n7472\n2050\n8099\n4795\n8053\n9293\n7037\n1646\n9307\n1069\n5322\n5332\n2708\n8977\n917\n2419\n184\n2105\n1578\n3923\n5780\n1903\n2512\n429\n5582\n493\n4972\n445\n8286\n555\n320\n8300\n322\n617\n3413\n4459\n525\n5631\n6314\n5157\n5300\n8545\n182\n1031\n4429\n2495\n7586\n1534\n3099\n3916\n3738\n1919\n535\n2119\n1299\n177\n1838\n2159\n4099\n8285\n5172\n8540\n6020\n7683\n3073\n3115\n1673\n3087\n3488\n2416\n1894\n5942\n3597\n5834\n2007\n43\n1779\n4174\n2023\n2546\n2429\n9006\n436\n4214\n4536\n3693\n5426\n6767\n5903\n4368\n2170\n5051\n7490\n7882\n2859\n5035\n7835\n5372\n7122\n925\n3253\n6338\n8393\n4093\n5848\n7588\n2683\n8049\n5403\n5894\n8745\n8550\n2941\n3484\n9029\n4461\n8022\n725\n2355\n1619\n3030\n1975\n5623\n2415\n1957\n6141\n9278\n3226\n3062\n5670\n7326\n8759\n8496\n6619\n8187\n8262\n6199\n951\n7183\n668\n2388\n4698\n5681\n8240\n2851\n871\n4988\n9084\n9089\n3162\n1167\n8244\n5227\n6461\n2831\n776\n5010\n5770\n5282\n3574\n5102\n1278\n2281\n5455\n305\n4628\n4663\n9119\n7487\n8746\n4889\n6569\n1175\n102\n2386\n8940\n2479\n5566\n53\n8833\n1918\n8001\n321\n6786\n6861\n4358\n2771\n7467\n975\n4777\n605\n3543\n2600\n7584\n9299\n4530\n6477\n7364\n7328\n183\n4761\n7543\n304\n1196\n4623\n7839\n2139\n5519\n1953\n533\n5989\n7590\n7428\n6346\n6162\n1091\n1946\n6260\n4405\n5676\n8924\n7171\n8409\n1866\n6379\n3411\n2387\n3051\n7398\n154\n1185\n6442\n6004\n1611\n2165\n9018\n8323\n616\n3995\n8952\n1533\n7853\n4194\n213\n789\n4991\n3675\n7456\n5752\n175\n7556\n4195\n907\n2248\n9057\n8467\n4594\n1017\n7968\n880\n7446\n3304\n1666\n4942\n3867\n4802\n9156\n6357\n4621\n887\n6213\n5261\n1336\n521\n8928\n1818\n7864\n4792\n6742\n157\n1593\n823\n7235\n5303\n5633\n1100\n1692\n8047\n5993\n1460\n6714\n1630\n6440\n6307\n3608\n292\n212\n401\n5974\n7107\n8301\n8342\n2720\n4583\n2757\n7315\n833\n4466\n4236\n1282\n5273\n2149\n287\n8484\n2380\n8119\n7167\n737\n5076\n6598\n3596\n5382\n2650\n8980\n3421\n1356\n1954\n7823\n1172\n2226\n1941\n6136\n7274\n2256\n4928\n324\n1407\n4410\n4579\n1061\n7113\n486\n862\n3435\n6956\n2873\n1465\n6113\n8225\n8512\n6806\n272\n6008\n1241\n88\n5662\n3555\n689\n8733\n2812\n7453\n6282\n420\n2471\n4477\n7495\n1445\n594\n6939\n1564\n8704\n8590\n7992\n7374\n5796\n9298\n4213\n5713\n5864\n326\n5513\n402\n464\n608\n1951\n8640\n8180\n3347\n3459\n4162\n2690\n7478\n5856\n5240\n2389\n3022\n602\n5547\n1798\n1345\n9276\n599\n3673\n3277\n1635\n8625\n1567\n5928\n636\n5671\n2896\n3477\n412\n7575\n4201\n685\n4760\n1229\n4275\n8960\n3123\n4471\n5941\n3355\n3999\n7157\n6354\n7741\n6850\n8783\n1943\n6769\n7330\n8721\n8477\n1381\n848\n778\n6408\n2644\n5817\n1441\n1723\n2144\n2776\n2368\n120\n367\n8839\n8749\n5353\n4158\n3148\n9114\n1233\n9228\n8857\n2895\n1286\n200\n6755\n5125\n5857\n1657\n7658\n5097\n5000\n942\n7020\n586\n784\n7078\n6194\n8658\n8957\n9325\n1851\n8911\n4862\n7004\n1186\n8824\n1651\n2999\n561\n7639\n4316\n5086\n3187\n7912\n2624\n9183\n8487\n5089\n8475\n7554\n4031\n6297\n6059\n5329\n115\n2058\n7650\n7634\n7121\n2485\n7805\n2241\n7713\n4352\n2409\n1026\n2745\n4549\n6474\n5124\n5201\n6556\n6617\n9091\n3945\n8402\n5648\n5257\n2192\n4901\n7750\n6131\n6027\n6352\n4625\n1254\n5498\n3720\n8261\n3939\n5576\n3685\n6713\n8472\n991\n8354\n8068\n5655\n5997\n1029\n7506\n6740\n2575\n2990\n4898\n583\n7402\n3290\n5388\n6715\n8235\n5361\n4970\n1363\n3338\n5731\n9014\n5358\n2216\n2856\n635\n1193\n3705\n6334\n7666\n5270\n1384\n6368\n8604\n3564\n1937\n2481\n1341\n721\n2100\n3958\n6551\n3813\n2592\n7980\n5385\n319\n2357\n8761\n8910\n8693\n1204\n489\n4827\n8024\n7832\n6427\n3895\n89\n9068\n8067\n1708\n1111\n8963\n1902\n9251\n5719\n9143\n5537\n9169\n77\n5365\n1840\n485\n4456\n2841\n1169\n3271\n7144\n6886\n9140\n7173\n6003\n1659\n1807\n8371\n2439\n274\n4660\n3448\n6623\n347\n2103\n3400\n2106\n9073\n8169\n3687\n3305\n4416\n8454\n6635\n332\n2433\n2909\n3839\n4063\n1944\n6509\n1296\n7770\n1880\n6610\n4075\n9331\n4484\n302\n418\n4219\n1333\n2350\n6498\n8424\n4694\n4883\n5269\n6580\n5007\n6722\n1669\n8470\n2571\n513\n3810\n7049\n6332\n7363\n3532\n8456\n2097\n297\n8841\n7180\n714\n1587\n5234\n4268\n2320\n7372\n660\n8503\n1668\n8847\n1101\n7275\n3336\n6460\n722\n7782\n3947\n502\n4258\n2132\n1835\n181\n3841\n427\n3446\n2551\n8324\n6963\n4284\n7297\n7577\n3399\n9148\n8213\n5656\n8440\n851\n657\n2446\n4292\n6992\n976\n1108\n2681\n3237\n8582\n377\n5969\n5287\n9209\n8523\n7178\n7833\n6175\n2126\n3023\n5090\n7491\n6640\n6077\n2221\n2780\n1694\n4094\n144\n6161\n3203\n7123\n749\n3625\n3848\n980\n2270\n7819\n3672\n7689\n7203\n2718\n1714\n2884\n3474\n3802\n3851\n4224\n7237\n5415\n7998\n7207\n4106\n9036\n1046\n8731\n5070\n6818\n4592\n6056\n693\n1328\n3309\n5791\n2629\n2736\n202\n388\n7886\n4417\n8786\n8822\n4035\n7718\n8492\n5505\n1192\n4388\n8941\n5019\n7538\n6732\n7296\n6389\n5923\n1405\n3278\n3917\n1688\n8374\n443\n4037\n9099\n5190\n6402\n4177\n9310\n7747\n4348\n7197\n4844\n4998\n5609\n4345\n29\n3332\n8648\n4107\n346\n2577\n3941\n1215\n3782\n8252\n4706\n2675\n3790\n7459\n6164\n7316\n1149\n6687\n582\n3139\n5040\n7645\n3882\n7322\n4034\n1861\n4701\n8757\n3208\n8801\n6349\n8907\n1823\n4528\n4789\n143\n4746\n9234\n3866\n9245\n1911\n1366\n4393\n2061\n859\n1959\n6967\n3138\n7382\n9031\n6237\n845\n80\n6911\n7163\n5229\n4736\n8738\n33\n8543\n357\n3193\n7262\n4448\n6796\n6793\n3321\n7569\n6411\n7692\n7340\n1417\n5847\n3836\n2678\n1188\n8727\n223\n8615\n7417\n5771\n3170\n8061\n2935\n8263\n8257\n6883\n1276\n1239\n812\n6258\n3922\n7525\n8117\n3039\n603\n8554\n7573\n2787\n3445\n5115\n3478\n962\n3961\n6570\n7722\n216\n2797\n5154\n2530\n4904\n2405\n7542\n4021\n3252\n5370\n9302\n236\n4532\n1361\n3373\n1716\n2183\n1583\n3783\n868\n1687\n8925\n1433\n6198\n8208\n6367\n7603\n882\n3469\n1645\n7654\n1176\n4231\n150\n7997\n5456\n7031\n4375\n8840\n5634\n6945\n705\n3442\n4774\n3822\n7148\n1922\n8459\n6249\n8713\n6197\n8599\n6071\n6756\n1634\n950\n5640\n7749\n5920\n6622\n4783\n7837\n7479\n7229\n3919\n1797\n5272\n8945\n4908\n5439\n6903\n5833\n6930\n8197\n9261\n1711\n5483\n6046\n4285\n8852\n7409\n8971\n8278\n7534\n7792\n2444\n7496\n8063\n1665\n248\n3894\n4585\n1982\n66\n6651\n4850\n1240\n7511\n7524\n9258\n2075\n3979\n4714\n7592\n965\n2919\n8239\n1842\n8013\n4750\n2344\n6155\n3468\n31\n2087\n1599\n1573\n5883\n7613\n195\n3749\n644\n2189\n8779\n8743\n9005\n8081\n1040\n7785\n5820\n8830\n5495\n4867\n2710\n3843\n491\n7153\n6217\n1148\n4741\n1761\n5484\n3423\n5474\n6916\n5876\n7252\n1739\n8930\n6647\n5198\n4903\n8488\n7366\n2774\n2726\n2385\n7625\n3179\n2211\n8845\n6600\n399\n6810\n3447\n6684\n4915\n8368\n1867\n2325\n2101\n1335\n7734\n3722\n7437\n3716\n7025\n4000\n6897\n1408\n7154\n5013\n2204\n9233\n4225\n3817\n1877\n9161\n2197\n6991\n3390\n280\n1892\n1612\n7753\n2801\n7246\n7909\n6229\n9314\n8407\n1436\n3879\n6432\n6849\n5326\n5327\n8535\n7910\n7745\n5545\n7916\n207\n1783\n6158\n8517\n7361\n8070\n6430\n119\n6146\n4183\n1083\n7385\n4497\n9133\n1686\n3765\n5099\n595\n8046\n4418\n4043\n2361\n7915\n9149\n1717\n1141\n6375\n1018\n5602\n1262\n7485\n9178\n6629\n3339\n8934\n4648\n7988\n6252\n3440\n864\n5418\n3874\n7280\n6191\n8388\n4323\n6792\n4324\n2232\n7228\n8684\n7813\n6187\n6678\n3177\n3534\n4953\n4402\n7739\n6319\n2414\n8700\n5946\n8238\n4533\n6917\n4167\n4618\n2115\n2268\n3081\n1247\n4001\n8580\n7636\n3101\n2195\n1559\n3714\n2484\n7188\n6028\n7530\n2828\n1977\n3238\n6496\n2340\n110\n3247\n7532\n7541\n924\n1632\n484\n4487\n4439\n6447\n1319\n4944\n6347\n1791\n2285\n8087\n5452\n91\n1166\n162\n5185\n7933\n4743\n1627\n7259\n8620\n8525\n8207\n5845\n9011\n5525\n4269\n4700\n1824\n8186\n8872\n8299\n3957\n8242\n4558\n6439\n2666\n5943\n6958\n8112\n5121\n8806\n6170\n7688\n3486\n2082\n7436\n2778\n1096\n786\n2206\n5170\n1443\n6030\n3312\n9151\n8485\n6404\n8498\n2883\n8961\n2280\n8341\n9137\n4337\n2809\n2445\n809\n8298\n8643\n8316\n4951\n6853\n1572\n3215\n3938\n2249\n6515\n1337\n8328\n7712\n1429\n4117\n5441\n3230\n4152\n7225\n3513\n6953\n1507\n348\n3639\n5739\n2673\n1550\n6301\n1652\n8453\n204\n6833\n8056\n2200\n5217\n1854\n4711\n7368\n4572\n4032\n7531\n1013\n3634\n2875\n6058\n8307\n7609\n1766\n904\n667\n5410\n6578\n3601\n1664\n3233\n7390\n8178\n4486\n4952\n4427\n4876\n9166\n3107\n2772\n6295\n5001\n5296\n3371\n6518\n6327\n854\n1615\n8288\n1912\n5927\n6202\n5814\n9032\n1059\n3214\n6547\n7038\n5781\n6926\n4390\n6114\n1622\n4318\n5803\n5984\n736\n3561\n6554\n5045\n4277\n7386\n9081\n8462\n2034\n4955\n2701\n932\n1298\n7758\n7176\n9205\n2276\n3077\n3803\n3562\n8054\n7946\n295\n1843\n7728\n1629\n7768\n3663\n6363\n2971\n431\n9285\n2513\n1116\n3656\n4529\n6366\n5758\n6339\n8398\n816\n4153\n648\n2536\n1826\n7870\n8113\n7730\n7101\n6555\n9256\n6774\n1072\n4578\n2598\n3604\n5880\n861\n8273\n3350\n3117\n4685\n9219\n4334\n5165\n2035\n7224\n4066\n4253\n4447\n3815\n5038\n253\n3658\n2252\n330\n3967\n6443\n2143\n7336\n6135\n593\n2734\n8390\n4655\n7800\n1399\n1173\n5618\n2822\n7905\n7503\n4431\n2443\n1568\n3909\n1974\n2496\n4772\n5164\n4105\n2138\n2864\n3799\n3924\n4882\n8245\n1585\n5528\n5692\n5730\n5832\n137\n3175\n2894\n2062\n3899\n2752\n4028\n2113\n5411\n293\n2647\n730\n3758\n1667\n8879\n9303\n6653\n3698\n3968\n3053\n503\n2150\n4645\n2257\n4627\n8303\n7966\n8742\n4692\n5901\n8547\n2277\n5546\n986\n370\n4697\n8712\n4804\n4881\n1182\n6650\n7290\n3487\n2814\n5668\n7567\n5333\n3724\n4164\n3084\n8896\n3888\n6537\n17\n6882\n3531\n704\n1037\n8866\n5263\n6758\n3762\n1393\n3824\n5575\n5112\n214\n1439\n5700\n8932\n1306\n5011\n6928\n5173\n4098\n1132\n7352\n4778\n7723\n1368\n2390\n670\n2685\n5855\n1772\n6380\n3853\n940\n5424\n6091\n1748\n6193\n5297\n6572\n8877\n6874\n430\n5041\n5267\n1145\n7448\n620\n9112\n4294\n1432\n72\n130\n2393\n7920\n4597\n6614\n8889\n3697\n1895\n3462\n2616\n3978\n4791\n7846\n7780\n8372\n428\n6559\n8326\n9211\n2363\n1525\n5980\n7888\n3331\n8118\n7899\n615\n7377\n791\n5930\n6627\n8322\n1138\n770\n8460\n5100\n8274\n8350\n6316\n2893\n7594\n9236\n5082\n8150\n1986\n1909\n8902\n2145\n3617\n3501\n7\n2426\n5056\n8016\n2702\n5360\n8135\n8385\n8378\n8018\n8574\n720\n8893\n3021\n1978\n4782\n1816\n2083\n4051\n1446\n5870\n971\n9097\n8006\n4222\n8287\n686\n1377\n611\n8153\n4920\n4808\n1536\n679\n4096\n3891\n4884\n432\n4615\n8988\n5560\n3451\n5589\n3514\n6169\n1414\n3244\n1490\n7100\n3588\n690\n7317\n4171\n2266\n6800\n108\n2793\n5151\n6977\n2587\n8188\n8752\n6318\n5815\n5116\n263\n3311\n5191\n5689\n289\n3392\n5755\n1022\n5548\n9319\n8937\n6011\n7632\n5328\n4993\n4141\n5407\n1865\n520\n7305\n7208\n526\n3645\n1859\n2520\n3523\n8629\n7304\n8881\n3076\n4005\n8329\n2205\n2214\n6925\n8691\n4136\n8883\n974\n7873\n7952\n3965\n5887\n7964\n7189\n2406\n2783\n8086\n405\n6568\n5147\n2021\n4727\n4826\n7674\n1600\n5078\n2949\n6624\n6541\n8986\n5740\n4679\n8500\n3591\n4434\n398\n983\n7544\n1478\n4570\n6012\n465\n9330\n7206\n808\n8737\n2356\n4959\n8812\n6955\n3599\n2168\n1420\n1721\n1794\n5897\n8422\n2\n4023\n2739\n3619\n8797\n5496\n8951\n8181\n6893\n9254\n1809\n5682\n4309\n6929\n2742\n5988\n3363\n4493\n8434\n4210\n1503\n1876\n5094\n4600\n4936\n4798\n3933\n5216\n646\n7660\n3098\n8773\n4076\n1576\n5335\n3746\n3327\n47\n4602\n8636\n4129\n363\n6417\n7416\n9025\n4377\n4766\n2779\n4151\n9046\n7860\n3154\n3476\n7620\n966\n2052\n8344\n1752\n7199\n4412\n8895\n8882\n2463\n339\n56\n5390\n4821\n7555\n6558\n1905\n5258\n8880\n4205\n3580\n6735\n1023\n4511\n3850\n161\n7395\n2532\n3349\n7055\n7387\n758\n1907\n872\n3006\n659\n815\n1961\n6902\n7668\n4708\n1904\n4433\n5159\n6816\n8664\n6918\n1016\n6513\n7314\n5364\n7480\n9313\n716\n3395\n6843\n2292\n918\n4329\n1035\n6344\n8593\n3404\n5212\n837\n480\n8524\n1342\n3690\n6797\n7414\n288\n8863\n3352\n1628\n24\n135\n3314\n2181\n8650\n5915\n8078\n6812\n1375\n6040\n906\n5635\n7126\n1387\n7458\n6119\n5591\n3795\n1531\n95\n1960\n7522\n3033\n898\n4607\n4921\n3913\n2623\n4430\n6268\n7063\n1326\n9075\n2505\n7400\n1284\n2951\n747\n6466\n1357\n6493\n7320\n5892\n576\n5107\n5559\n97\n2583\n6361\n8843\n3509\n7892\n6086\n1476\n4612\n7427\n4267\n9094\n7050\n6048\n8455\n8382\n2227\n284\n2898\n3221\n2353\n2157\n5990\n5810\n3581\n7279\n6188\n7859\n3549\n5539\n7918\n2022\n9066\n630\n2500\n5111\n6561\n5127\n8095\n5569\n6123\n1338\n8605\n3491\n4187\n8220\n7334\n9213\n3067\n6997\n2853\n4735\n4372\n1489\n5954\n6662\n2207\n973\n3361\n960\n6350\n4170\n7431\n8076\n1129\n750\n7559\n7194\n2261\n2300\n6590\n5893\n6889\n3125\n8788\n334\n7286\n3472\n8164\n7693\n1469\n1181\n669\n7515\n5563\n4773\n3210\n6324\n3113\n9070\n3638\n7551\n2541\n3506\n5138\n4069\n7198\n7560\n3306\n6100\n2932\n4473\n1741\n14\n4672\n7564\n8748\n8874\n3804\n3678\n2240\n2610\n2862\n1358\n5716\n42\n5176\n9326\n8464\n1038\n2993\n3017\n9072\n32\n4809\n4364\n2808\n4125\n448\n152\n7299\n5431\n6178\n793\n3444\n9120\n8410\n4963\n772\n5457\n6954\n3014\n6881\n286\n553\n1948\n6398\n6255\n3057\n8646\n6176\n2700\n7106\n5663\n6683\n1281\n6013\n8799\n7635\n9289\n1885\n442\n2225\n6294\n5054\n2674\n7884\n8730\n8216\n4203\n1488\n7111\n4013\n3623\n7950\n1971\n1966\n3248\n2900\n1553\n472\n3865\n7796\n6937\n4591\n8098\n5208\n294\n5627\n5691\n5687\n7149\n4879\n3624\n7005\n2773\n3112\n9185\n1633\n7830\n5101\n8707\n8469\n4678\n4860\n700\n5527\n9194\n2794\n5068\n2639\n1177\n4282\n6492\n8128\n5859\n5029\n5123\n2877\n522\n5048\n7230\n2104\n6642\n6731\n2717\n5149\n2043\n9059\n5277\n844\n1394\n3262\n5515\n6706\n3651\n9105\n7671\n2880\n3607\n6410\n2508\n8463\n2394\n1916\n1125\n5343\n3322\n5307\n4547\n1589\n8478\n8899\n2955\n8028\n7293\n4619\n4058\n2781\n8715\n1272\n5734\n4474\n4863\n4367\n49\n8844\n5605\n8671\n6743\n4281\n7077\n1874\n2626\n2516\n258\n5249\n6186\n7958\n5432\n3801\n6288\n4732\n9121\n7558\n2527\n4661\n6819\n3835\n7508\n584\n215\n5036\n4261\n8978\n5228\n647\n4657\n2591\n5931\n5088\n9204\n929\n4381\n5421\n2965\n5050\n6495\n5033\n4799\n959\n6115\n3520\n1232\n5811\n317\n8976\n7705\n3842\n2178\n7187\n1373\n7112\n2694\n8627\n8493\n3991\n7441\n6308\n2589\n6462\n3406\n7673\n8660\n2902\n752\n1025\n849\n7682\n6982\n6652\n3612\n298\n5148\n4873\n3414\n1693\n1458\n327\n2016\n5002\n6768\n7016\n5583\n3270\n857\n8232\n7158\n7981\n4676\n4675\n2164\n8360\n6709\n8143\n365\n4062\n4527\n7928\n9009\n6228\n5818\n2533\n9305\n8887\n55\n2507\n8870\n6649\n5158\n76\n5595\n6693\n5306\n8666\n3020\n7527\n3082\n6304\n1591\n6145\n6868\n7205\n9107\n1165\n6773\n172\n1993\n4176\n8400\n4611\n7589\n8702\n5386\n6095\n6335\n1561\n8805\n5963\n7393\n3681\n2037\n4968\n7451\n3360\n7466\n8361\n4455\n4064\n5422\n1689\n3977\n7269\n362\n4178\n4145\n6127\n5162\n2399\n9225\n7068\n1650\n794\n3007\n1348\n7736\n444\n6081\n5298\n2026\n2543\n9087\n3593\n7425\n3730\n8468\n2641\n7529\n1720\n6377\n8732\n5851\n7956\n3150\n3785\n6485\n3611\n2869\n8510\n4775\n4463\n1251\n9124\n6873\n3391\n6505\n4118\n1617\n8837\n7051\n3213\n3668\n5347\n8452\n6289\n5840\n478\n3522\n453\n3376\n6190\n3342\n2237\n2870\n5178\n5567\n5952\n6919\n3005\n134\n3397\n7443\n8539\n6822\n5264\n3288\n5962\n8421\n6744\n8608\n4656\n1802\n2073\n4271\n1043\n2922\n8211\n2196\n5260\n3789\n7211\n7571\n7834\n5680\n2047\n5502\n3369\n3437\n3286\n5517\n3912\n8386\n1442\n6961\n2191\n2417\n9088\n5155\n6813\n4520\n7375\n1224\n811\n1891\n3748\n4123\n2789\n5305\n8419\n7248\n9237\n992\n4038\n4499\n2060\n5538\n850\n2669\n7612\n104\n9290\n2526\n1287\n4160\n4633\n7125\n742\n744\n4534\n2407\n7714\n4555\n8764\n7661\n4722\n7721\n3205\n6657\n1214\n3754\n6080\n4593\n3018\n8792\n2294\n4450\n7701\n9301\n127\n7069\n4513\n6243\n8025\n4010\n8632\n4715\n5284\n4574\n726\n4252\n4561\n7354\n299\n6088\n1090\n5012\n5684\n3489\n5639\n4888\n1584\n1969\n4846\n2915\n6804\n2775\n7306\n6506\n9306\n5231\n7740\n4283\n953\n6725\n458\n8290\n1504\n1539\n8885\n138\n3764\n1256\n257\n335\n1011\n7060\n5986\n9323\n4740\n8994\n4140\n6807\n8254\n3963\n9297\n2102\n2964\n9207\n4910\n8709\n4411\n1672\n457\n5852\n8037\n4932\n3679\n8794\n2362\n8592\n495\n8432\n1608\n2155\n7411\n2881\n9244\n37\n6535\n8219\n4505\n8635\n1928\n8384\n2570\n8996\n7610\n2128\n8728\n6656\n8935\n6681\n2070\n176\n9062\n972\n514\n1796\n4039\n6838\n2462\n230\n569\n5521\n4637\n4939\n4420\n2863\n672\n4995\n3807\n447\n1656\n2005\n5113\n3297\n8858\n2118\n6309\n1926\n481\n1156\n1509\n1228\n1787\n5978\n8678\n3951\n2929\n4980\n5039\n4713\n7002\n151\n5536\n8148\n3823\n4709\n2299\n142\n7067\n2372\n3761\n9\n2265\n5747\n2764\n724\n2913\n3151\n4525\n6370\n4247\n9329\n5494\n3721\n629\n3621\n7371\n59\n1999\n6704\n3734\n2698\n4691\n6938\n9117\n8415\n6353\n6750\n9077\n2679\n7623\n2478\n7321\n6611\n4007\n2076\n5772\n6416\n2264\n8348\n2672\n6546\n754\n6934\n7908\n8546\n4404\n592\n4748\n6625\n2129\n7944\n2377\n6\n8929\n8275\n3515\n4524\n3660\n8710\n419\n6878\n170\n8313\n7460\n8753\n2917\n6891\n6663\n4918\n7129\n396\n7256\n3500\n631\n5585\n8343\n2695\n6168\n6292\n3176\n5092\n5160\n3701\n9021\n7221\n7825\n1216\n1438\n3471\n2318\n8923\n6223\n2182\n7621\n8514\n9010\n8987\n1252\n1972\n1872\n1715\n8205\n6463\n8138\n8989\n5661\n2890\n565\n2427\n8946\n1303\n3718\n6000\n3620\n1560\n5276\n8089\n9260\n1467\n6173\n7641\n7520\n5061\n4677\n5757\n4400\n2620\n2719\n8995\n2079\n6644\n1683\n8141\n7754\n5744\n2952\n7568\n654\n7457\n5368\n3310\n1510\n4440\n1513\n3072\n8034\n1456\n9164\n3163\n3035\n6111\n5042\n7161\n1401\n1084\n8000\n6672\n8531\n5404\n6550\n8379\n9141\n8681\n7752\n6394\n7011\n3739\n8253\n978\n4771\n6024\n4828\n7959\n1649\n1727\n7073\n8349\n6952\n661\n7283\n3159\n2590\n3496\n8741\n3969\n2956\n4565\n920\n1830\n8558\n1930\n6677\n6825\n8256\n7454\n7521\n4710\n1768\n3753\n6459\n5606\n5292\n1397\n240\n2733\n946\n6711\n3242\n2627\n4929\n5006\n3202\n132\n2295\n2746\n1293\n2124\n5405\n4065\n818\n7464\n1820\n4398\n1312\n6994\n6920\n261\n987\n6120\n3109\n331\n2986\n4338\n7774\n5122\n8396\n1364\n8969\n6712\n8161\n7083\n7595\n5940\n1566\n6419\n8634\n4432\n6047\n4749\n6076\n1161\n8217\n674\n8494\n3688\n2447\n4704\n969\n7477\n1160\n3243\n3173\n4979\n9288\n6860\n1662\n6171\n225\n5143\n313\n8327\n3275\n3385\n7626\n3103\n4401\n6794\n5600\n5043\n7664\n933\n6830\n4452\n3980\n1604\n5875\n6633\n4635\n5756\n3329\n1751\n8108\n4817\n1989\n1237\n1893\n2848\n9334\n51\n8875\n4981\n5417\n4134\n877\n6688\n3545\n4943\n5615\n2476\n1684\n3652\n7396\n1769\n1171\n6563\n3415\n3644\n340\n6630\n8284\n3256\n7240\n5371\n3405\n2108\n6360\n1734\n5612\n8638\n2343\n1103\n7803\n6809\n3055\n188\n8031\n3124\n3683\n4537\n988\n2297\n4893\n6499\n3396\n839\n4467\n5195\n4041\n6457\n4441\n6378\n6472\n6195\n4912\n6884\n5922\n7014\n1660\n38\n1595\n6752\n4554\n1292\n2709\n3800\n6057\n1980\n8775\n6587\n6392\n6263\n7214\n5219\n282\n309\n6685\n2253\n6311\n4092\n18\n7570\n5543\n4081\n2515\n6278\n8690\n5294\n6184\n5215\n9130\n6720\n250\n7250\n4983\n639\n3567\n7841\n2636\n4067\n8446\n5703\n8609\n2586\n7695\n1253\n6701\n7930\n6317\n5921\n7719\n8501\n7312\n4110\n6219\n4552\n5059\n4088\n7975\n9132\n6054\n692\n3412\n4079\n6754\n6950\n5281\n3028\n8321\n3877\n7614\n8939\n4188\n2223\n239\n4745\n6875\n7096\n5571\n4403\n2640\n5556\n1845\n6690\n1825\n4157\n314\n4682\n8825\n1003\n6206\n8093\n7215\n6465\n99\n8077\n6631\n4206\n2523\n366\n1208\n6043\n4640\n1457\n5475\n4985\n1351\n3090\n5625\n7307\n8466\n2003\n8854\n218\n1500\n4476\n2293\n1847\n5032\n2147\n866\n3710\n2552\n1749\n6692\n3926\n4112\n6458\n735\n9171\n60\n9304\n6726\n2630\n2882\n1178\n1151\n4922\n4662\n173\n7233\n1776\n6533\n4113\n2423\n2425\n4343\n5800\n970\n6372\n1009\n6607\n3068\n8435\n6423\n3126\n4813\n1709\n1201\n7104\n5620\n3932\n5701\n5724\n3366\n8050\n4984\n5023\n9203\n5079\n627\n290\n779\n5572\n5233\n1392\n4975\n8534\n8210\n2269\n1143\n2475\n2562\n905\n4546\n267\n3536\n8538\n449\n101\n7367\n2722\n4605\n7356\n6781\n8537\n8697\n6820\n8340\n8926\n3821\n2349\n2259\n6545\n8100\n8395\n2258\n2911\n5108\n3946\n1406\n8683\n8296\n5579\n2177\n8264\n1425\n3940\n957\n3647\n515\n5342\n8363\n2449\n3108\n1001\n2937\n3452\n5574\n4319\n9184\n8381\n945\n6876\n600\n5714\n4871\n8532\n1852\n8856\n392\n2018\n8878\n369\n5711\n9230\n5304\n7266\n1681\n7829\n2309\n4683\n8938\n2255\n6159\n3207\n4651\n2029\n4341\n5106\n5794\n9024\n4712\n2434\n7151\n7359\n6431\n1290\n5918\n8705\n3438\n5554\n8876\n7415\n6290\n5373\n3805\n2950\n2331\n6772\n8997\n6576\n2307\n8515\n4033\n3428\n6487\n6595\n45\n5792\n333\n762\n2383\n3388\n666\n2166\n460\n943\n364\n6980\n8223\n8221\n637\n6218\n4108\n5381\n4649\n5096\n1614\n8768\n5095\n3809\n5030\n984\n3538\n5120\n2498\n5222\n5613\n5486\n5119\n241\n5707\n9227\n544\n4109\n7771\n728\n3671\n9327\n1230\n9270\n1070\n8565\n4769\n7056\n5654\n7965\n1793\n5956\n7883\n1362\n5479\n8769\n8821\n8320\n1901\n1994\n2461\n5552\n389\n2839\n6467\n2762\n4763\n3499\n1487\n7599\n4488\n3241\n8272\n1131\n4496\n7006\n7265\n4897\n2747\n6618\n5291\n4563\n5146\n1939\n6369\n8548\n6163\n5526\n4068\n9030\n5349\n8433\n748\n1477\n4265\n9200\n3878\n462\n6846\n9040\n4806\n3519\n6798\n5464\n5179\n546\n6044\n8114\n7216\n6276\n1495\n494\n8146\n5434\n856\n8403\n8071\n3972\n5544\n3337\n6855\n1546\n2824\n1718\n6009\n2042\n251\n9076\n3330\n5004\n192\n4717\n3797\n1146\n394\n7814\n7699\n4659\n4689\n4156\n7903\n9054\n7332\n7811\n1119\n5531\n6782\n5210\n8412\n2633\n7924\n4624\n8314\n5666\n3240\n2310\n4262\n8160\n4553\n8196\n2661\n7213\n7455\n7399\n870\n6126\n1227\n1226\n781\n937\n6343\n2578\n2892\n4124\n2792\n5696\n6865\n6455\n8312\n5193\n6026\n5251\n3787\n4460\n4687\n7923\n1140\n9106\n796\n2482\n9170\n8695\n2749\n6734\n4825\n114\n8319\n827\n4175\n390\n7611\n7484\n1249\n7727\n955\n579\n3629\n8915\n2958\n885\n7227\n1424\n4810\n4604\n1535\n774\n7518\n5428\n1955\n8233\n2645\n2167\n6484\n3855\n1502\n4861\n2333\n2973\n4829\n1906\n3966\n476\n9023\n6960\n3483\n2748\n5891\n8174\n7702\n8948\n5324\n4396\n1605\n2823\n7348\n7347\n5933\n310\n9082\n916\n4255\n203\n4239\n5976\n6200\n6435\n4425\n787\n1121\n6034\n13\n39\n3104\n5961\n5507\n5785\n1463\n7339\n1575\n7801\n5445\n8283\n5951\n6995\n999\n5163\n6023\n3786\n6536\n5850\n3524\n3528\n4508\n6674\n2939\n8227\n4598\n7550\n8495\n8622\n1152\n4538\n4003\n1318\n739\n3296\n8202\n1552\n6204\n5236\n3576\n4699\n9238\n1879\n488\n2274\n433\n5587\n1678\n9282\n7914\n8552\n6445\n7971\n8331\n6880\n7476\n7282\n1570\n7271\n3827\n6489\n8091\n9287\n7351\n1765\n5286\n6921\n542\n1762\n8553\n4987\n894\n3622\n7855\n92\n3131\n4811\n3590\n6517\n4510\n733\n4954\n1360\n5669\n2842\n8107\n5646\n5968\n1618\n1827\n7709\n8521\n5807\n5321\n9239\n5501\n3745\n4437\n1586\n7273\n5265\n6605\n7917\n1607\n6074\n4668\n7061\n1580\n8694\n8461\n4573\n618\n9173\n5243\n435\n8770\n2421\n7450\n3870\n8308\n2605\n2934\n9240\n6887\n4512\n1198\n7585\n7691\n7738\n2843\n8423\n7929\n6971\n7854\n86\n9128\n4298\n622\n790\n9155\n6579\n2203\n7716\n1265\n8645\n3834\n1174\n7380\n623\n8936\n4306\n8082\n4312\n8661\n5753\n7243\n2768\n8155\n85\n4143\n3047\n8479\n7809\n2833\n5555\n7578\n1637\n1936\n8130\n5549\n8062\n7143\n5522\n8966\n5614\n8105\n8719\n7655\n7502\n8268\n5760\n6695\n5565\n7615\n9226\n4870\n4507\n3160\n4835\n1598\n2465\n4422\n5248\n7867\n1078\n5015\n6660\n1676\n5354\n6391\n5351\n7184\n6280\n5936\n6124\n1327\n2906\n269\n8292\n2466\n8809\n5167\n8142\n8204\n2713\n1910\n2930\n2494\n5592\n7384\n7726\n5727\n625\n1735\n5710\n5518\n2491\n1410\n4989\n5183\n8777\n6562\n4947\n3692\n6129\n384\n1097\n2084\n5209\n3723\n7272\n6895\n2459\n543\n8621\n5394\n6211\n2074\n1511\n2524\n7776\n5055\n7191\n6207\n7922\n281\n8436\n2918\n3141\n4800\n6323\n7631\n8903\n2716\n3735\n3012\n5301\n3975\n2800\n7963\n105\n1920\n7391\n4909\n1754\n4816\n5488\n5145\n5098\n5139\n5268\n9317\n8631\n4346\n7318\n136\n3993\n1220\n2151\n308\n7483\n7582\n3071\n1339\n3777\n8191\n5378\n7087\n1056\n7465\n5608\n6564\n512\n2754\n2687\n1596\n5376\n1512\n566\n6382\n7360\n1757\n8035\n2296\n4264\n3551\n1053\n4716\n1537\n8518\n254\n6253\n7132\n8557\n3490\n9267\n5473\n2412\n7539\n7136\n6670\n3974\n891\n1323\n5958\n1217\n2879\n9118\n1259\n2317\n7033\n2467\n6665\n6244\n2180\n2140\n7098\n5126\n6395\n4150\n547\n4120\n4307\n1725\n2737\n8549\n8195\n1245\n6286\n935\n1756\n1701\n1626\n7379\n3492\n3717\n5802\n2817\n1234\n1005\n4101\n21\n2576\n4650\n3381\n1030\n2844\n1641\n936\n2729\n6469\n8913\n8369\n5994\n341\n81\n4083\n1685\n5152\n3380\n8739\n6615\n3829\n164\n7927\n4779\n829\n4216\n8528\n3641\n4606\n2769\n6970\n1545\n8850\n4971\n5489\n2008\n4564\n8682\n7784\n5768\n9252\n901\n438\n3577\n2765\n5904\n664\n3348\n6298\n3602\n2502\n8617\n7684\n4293\n5166\n5805\n4126\n2451\n6906\n7234\n9243\n3778\n2940\n1087\n9053\n5026\n2504\n5283\n2820\n4242\n797\n3925\n1383\n8750\n7861\n1403\n6973\n7617\n968\n3065\n5395\n4347\n8144\n2688\n6527\n8597\n8673\n7327\n6331\n1422\n7115\n244\n7013\n2092\n54\n7970\n5742\n3464\n4823\n8588\n2938\n3060\n6406\n4149\n2375\n6616\n8803\n1555\n4369\n1380\n3011\n6144\n3367\n4990\n7370\n7131\n1995\n2602\n985\n8785\n8480\n9125\n1927\n3269\n3771\n1032\n7378\n6900\n5726\n2731\n2020\n4503\n3313\n6727\n8793\n2304\n523\n6036\n58\n7993\n5512\n5049\n2721\n8482\n673\n7937\n1168\n4472\n8247\n7287\n9017\n6421\n9190\n3584\n1819\n1792\n2810\n6033\n638\n6749\n7677\n981\n7160\n4726\n1886\n7845\n7911\n6975\n568\n7422\n4613\n4501\n2569\n4263\n3206\n4133\n2420\n3706\n8894\n2263\n5774\n4925\n9180\n8888\n2945\n2091\n1873\n6303\n729\n6728\n2156\n3267\n1860\n6597\n1374\n4930\n5253\n938\n580\n5825\n4839\n166\n8198\n6892\n8701\n74\n7094\n7284\n8954\n3156\n6140\n4279\n5594\n2229\n7535\n5466\n8413\n7105\n8192\n2632\n7638\n9308\n8530\n832\n4643\n2201\n3268\n4322\n6510\n2967\n262\n403\n7973\n1258\n8828\n4036\n5838\n9263\n8529\n2788\n4202\n237\n3838\n1291\n2305\n4056\n5628\n7281\n1430\n6476\n7935\n2850\n6041\n2013\n4016\n4576\n5312\n6827\n6321\n8669\n8439\n830\n1942\n1519\n2750\n6106\n6993\n6235\n5899\n7313\n5331\n4371\n7086\n4399\n8600\n2660\n5409\n3465\n5499\n6231\n5745\n1801\n5337\n4468\n1451\n4192\n1275\n8230\n2302\n1114\n4960\n8860\n3900\n6468\n5058\n1505\n8868\n5588\n3858\n1947\n2565\n1472\n8499\n243\n8442\n6583\n7085\n5374\n2250\n4291\n4426\n492\n2311\n8305\n3662\n5338\n8780\n7488\n3890\n5005\n2442\n4680\n7358\n9116\n4397\n5999\n587\n7902\n83\n3566\n2134\n8942\n4767\n6601\n2456\n1745\n5736\n5254\n8017\n4015\n7690\n3798\n8947\n1067\n2116\n7945\n590\n2547\n2535\n64\n2053\n5359\n2493\n6669\n4351\n6412\n7473\n6147\n7175\n6983\n5196\n745\n2657\n3497\n697\n3161\n7528\n2239\n5991\n3201\n7681\n2440\n5189\n2959\n2044\n8917\n2046\n6313\n6333\n5318\n2763\n4301\n2555\n2213\n2933\n4121\n1340\n3903\n4392\n7889\n5323\n1055\n707\n3857\n518\n6078\n5134\n6645\n9138\n1592\n680\n4446\n7943\n3461\n3887\n5601\n2321\n6621\n558\n4914\n913\n5637\n6453\n8511\n4531\n1218\n5508\n2603\n6802\n8426\n8297\n2947\n5971\n6552\n5262\n5935\n782\n7435\n8357\n6139\n1136\n1473\n5008\n3585\n3627\n2914\n5356\n2997\n2347\n881\n5652\n4849\n8808\n8351\n4017\n2010\n6836\n7616\n4391\n3630\n3712\n6099\n2969\n5238\n4333\n2301\n4406\n1236\n1050\n1864\n1104\n8408\n8251\n8795\n5879\n3365\n7481\n8206\n2452\n1767\n8859\n124\n3948\n4444\n8962\n4438\n5003\n1740\n8428\n3105\n5117\n1095\n1480\n8755\n7881\n3097\n4877\n155\n1917\n2455\n6042\n337\n6724\n6045\n8483\n7135\n2242\n4566\n1679\n834\n1746\n795\n3548\n2314\n2036\n4046\n9129\n6979\n7084\n5091\n2413\n8170\n5775\n1817\n529\n7220\n813\n2916\n5130\n8972\n126\n1243\n2370\n4831\n9122\n3010\n5104\n2613\n6761\n7482\n909\n2146\n4595\n5340\n3512\n6283\n2346\n653\n6121\n2615\n7421\n1869\n1002\n8834\n2991\n8992\n632\n1093\n4543\n645\n2352\n4115\n373\n1483\n6966\n8598\n3896\n3434\n5987\n8318\n1815\n1223\n1548\n6885\n5073\n6330\n2573\n1369\n4095\n1431\n2185\n5766\n1301\n7258\n8048\n7598\n2847\n1996\n2378\n8561\n743\n6381\n271\n1956\n7439\n7596\n7134\n6636\n5804\n1858\n6214\n4730\n8536\n1203\n3118\n9202\n1875\n5885\n8975\n168\n5898\n4014\n4186\n3346\n3041\n5558\n9296\n8157\n4339\n3234\n1738\n2604\n6803\n5387\n5590\n125\n2173\n8012\n8005\n4858\n3069\n651\n372\n378\n8366\n6299\n1449\n7793\n8541\n3235\n8043\n3086\n3983\n6949\n4690\n2176\n6494\n7637\n8406\n3856\n7408\n350\n7021\n8224\n7044\n7662\n6697\n7679\n169\n528\n7029\n2790\n7138\n7432\n7602\n8333\n1582\n1378\n519\n482\n9279\n8015\n6592\n4514\n3542\n2612\n628\n5053\n6699\n6227\n2094\n1621\n847\n3598\n2728\n8490\n7276\n6620\n8345\n9216\n4278\n4059\n9058\n5063\n5816\n4173\n8134\n1997\n3182\n3224\n8129\n5109\n4494\n189\n7640\n8243\n180\n2963\n1123\n5593\n3263\n4185\n7140\n8990\n6320\n9275\n4601\n4854\n5907\n1135\n8083\n5964\n7788\n1992\n8069\n9174\n6160\n35\n8572\n2865\n46\n3952\n6418\n2510\n5783\n20\n3816\n2715\n3930\n2548\n5204\n4122\n4103\n708\n7756\n3825\n777\n3550\n8502\n3929\n5440\n6751\n7764\n4070\n7331\n3743\n9131\n9206\n3828\n23\n41\n4197\n234\n5723\n7622\n8832\n4626\n2169\n5599\n2976\n5266\n1967\n1150\n5334\n90\n822\n2538\n3169\n6771\n7442\n498\n4967\n5580\n7581\n7680\n4728\n1115\n4040\n1064\n3106\n6266\n4415\n9294\n5597\n7059\n197\n7218\n6948\n5690\n4234\n1653\n4485\n4019\n3370\n919\n1330\n6085\n2078\n3768\n5427\n4545\n2435\n8862\n3633\n8145\n5221\n1388\n5913\n8140\n7471\n7156\n6989\n1190\n6832\n2830\n4387\n3454\n7469\n2910\n4526\n5187\n2410\n9223\n6247\n6912\n4681\n1300\n7407\n8612\n6523\n3616\n6894\n7253\n4515\n5874\n5448\n7137\n7957\n1130\n3092\n7054\n3516\n5797\n1000\n2727\n4336\n9090\n6403\n7255\n8919\n6522\n6760\n8898\n4803\n1938\n374\n8686\n9150\n3985\n7045\n3475\n6065\n7991\n1409\n7851\n6671\n6090\n5826\n7857\n1155\n8964\n1117\n7072\n6064\n2497\n4899\n2397\n3189\n2369\n15\n5027\n5754\n8950\n5617\n8391\n914\n6264\n279\n6174\n5184\n3733\n7392\n5278\n2924\n567\n7994\n352\n8084\n2148\n2723\n3359\n70\n1870\n7708\n220\n3994\n9013\n3191\n9220\n4155\n5717\n1110\n2198\n9179\n785\n5325\n4770\n4250\n52\n4634\n5072\n9037\n601\n8036\n7996\n2483\n7232\n8675\n8836\n1279\n5346\n7676\n6104\n1515\n4603\n5607\n7894\n5144\n2628\n68\n440\n3586\n3083\n4830\n4378\n7762\n1134\n4542\n7850\n6296\n2866\n4011\n8751\n4776\n7954\n7102\n5697\n2032\n5729\n5017\n6962\n2051\n1092\n764\n9019\n2759\n8581\n1484\n8618\n912\n2382\n4892\n8447\n8176\n5491\n5695\n5504\n1060\n7064\n709\n578\n4320\n2379\n7649\n8416\n1613\n5344\n7512\n7865\n3037\n6689\n6557\n1569\n5955\n3707\n9168\n8566\n1775\n5950\n6943\n7804\n434\n6179\n9300\n1142\n7947\n6456\n6291\n5789\n6538\n9134\n3049\n5075\n5399\n5161\n1623\n948\n6302\n6063\n7516\n117\n506\n3302\n7146\n355\n3854\n1081\n2827\n1496\n2574\n6167\n3183\n4287\n5482\n1722\n7319\n7277\n3860\n3443\n3298\n8364\n3826\n7254\n2360\n5093\n7039\n6325\n4230\n2567\n6241\n4443\n559\n2625\n4228\n8967\n6405\n1674\n3936\n4475\n8556\n8585\n896\n3713\n6259\n4297\n6718\n2392\n2279\n4927\n1283\n2374\n2860\n7665\n663\n596\n6293\n6805\n2811\n7383\n8306\n8330\n3153\n2153\n2618\n2441\n3615\n8092\n552\n5285\n5255\n8124\n9247\n5530\n8175\n6242\n5660\n3433\n1610\n1832\n3892\n3862\n640\n2127\n2474\n4196\n3495\n7217\n5206\n4836\n7759\n4376\n800\n4227\n3699\n9055\n5665\n6826\n7463\n9065\n4720\n5069\n3245\n3453\n3358\n6532\n5970\n7921\n4087\n1547\n3424\n8040\n7995\n6787\n9069\n8716\n2561\n8199\n1479\n2767\n7818\n7145\n604\n7597\n4896\n9281\n4666\n185\n8171\n7978\n3059\n9196\n9221\n2135\n1800\n2974\n1529\n5948\n446\n4436\n8672\n3508\n6208\n5673\n6998\n5203\n278\n7041\n9110\n5853\n8121\n1764\n3046\n2400\n6575\n4738\n2228\n7761\n9322\n7019\n6931\n6383\n6762\n283\n3935\n2534\n7717\n6785\n471\n8214\n231\n4241\n5310\n3844\n5746\n2011\n7209\n336\n6433\n756\n9167\n6741\n3345\n7685\n4018\n6682\n9147\n4790\n5836\n5906\n8747\n676\n3964\n6362\n3510\n7510\n2308\n1806\n5917\n1189\n4012\n3387\n1331\n5319\n5423\n8900\n147\n3780\n1696\n9111\n6783\n6497\n4104\n1898\n3987\n260\n4616\n2121\n9283\n1400\n2437\n4670\n2735\n1163\n2096\n6521\n1423\n4523\n2243\n6667\n6990\n3944\n6915\n6763\n5611\n404\n2691\n1015\n7092\n7562\n8624\n2291\n4193\n5934\n5503\n2326\n4408\n2960\n842\n1963\n3354\n5568\n9050\n3806\n439\n9154\n6055\n6451\n2190\n7633\n688\n4354\n8890\n2813\n2872\n8102\n8317\n6609\n1497\n8389\n6449\n1682\n3594\n5103\n5812\n863\n268\n3054\n8079\n2260\n2027\n3091\n7687\n6703\n3557\n2019\n8427\n2799\n8182\n6641\n3168\n2284\n1934\n4865\n1077\n6507\n1658\n3811\n1774\n7897\n2238\n2943\n191\n3869\n3246\n4057\n3188\n414\n8072\n7838\n1382\n4962\n6010\n5363\n4042\n1983\n4077\n7429\n1833\n3583\n4044\n1109\n1295\n386\n5481\n3927\n311\n1349\n5651\n5878\n562\n2202\n8904\n765\n1501\n8654\n2975\n2689\n3680\n5180\n1900\n7707\n4723\n8912\n4029\n3579\n869\n2888\n8657\n6599\n741\n4288\n2244\n7357\n5704\n8791\n208\n8587\n7969\n4805\n8526\n4887\n8871\n7468\n3343\n886\n7794\n5764\n2646\n6454\n6101\n7885\n7744\n1297\n4119\n4856\n122\n2286\n2925\n5131\n3570\n5843\n3027\n5320\n5626\n540\n1862\n5401\n7335\n699\n7760\n9198\n3259\n7345\n8698\n1280\n6479\n3100\n3988\n1322\n5737\n1268\n3257\n6791\n3326\n4815\n7644\n1082\n2826\n6821\n8984\n2553\n5290\n5909\n4762\n9242\n8096\n8066\n4325\n6666\n7193\n7114\n8060\n2376\n7872\n6788\n3544\n5460\n3507\n2509\n6626\n3429\n5542\n4220\n2968\n5271\n4249\n3863\n1868\n5581\n2012\n6270\n8038\n4050\n121\n2845\n1565\n1998\n2275\n5524\n6068\n7624\n4913\n9277\n1506\n803\n8848\n5925\n2450\n2072\n8190\n4753\n9162\n1923\n825\n7303\n9028\n2088\n8516\n1556\n5937\n7847\n2367\n7549\n1049\n1521\n4739\n3931\n8958\n4130\n7877\n7876\n897\n5985\n7346\n7537\n111\n3700\n1126\n7896\n1288\n3419\n4673\n1051\n5720\n1068\n3458\n146\n291\n6256\n5514\n2857\n4580\n6239\n6525\n8717\n391\n4841\n6676\n4360\n1453\n4211\n73\n1675\n1987\n4025\n1321\n662\n8265\n6424\n2758\n7765\n7656\n3209\n7497\n7600\n9039\n7697\n5177\n2983\n5622\n9295\n1200\n3284\n964\n2024\n1269\n4551\n8088\n5659\n2212\n5199\n5551\n8607\n5573\n2247\n5200\n6341\n7951\n8429\n7720\n5919\n1273\n3529\n6707\n9176\n7552\n3255\n5649\n6110\n9235\n1137\n9272\n775\n788\n5786\n5186\n6746\n2667\n9145\n7630\n3953\n1828\n8827\n6471\n4702\n7815\n467\n6387\n3195\n6238\n6508\n2373\n5983\n4931\n2948\n921\n2438\n517\n3949\n2137\n3216\n5683\n3695\n1719\n4837\n9159\n6981\n860\n7410\n5497\n1770\n5557\n8810\n5194\n4857\n9100\n6329\n2609\n1925\n3686\n9041\n4924\n349\n9187\n3393\n3661\n7120\n6858\n4587\n3831\n3130\n5396\n5060\n6486\n3937\n8023\n824\n5398\n1354\n8861\n5534\n7292\n4389\n6029\n6226\n3505\n4326\n7445\n581\n6089\n3450\n7324\n6516\n6775\n1207\n4575\n5135\n9265\n3918\n9020\n3473\n3898\n7812\n6571\n6757\n6639\n2557\n1206\n6148\n7325\n8790\n4938\n7026\n4383\n8041\n1250\n7267\n1952\n7561\n8811\n4941\n8373\n4848\n6602\n8355\n8104\n5214\n6654\n4330\n995\n3181\n3422\n456\n1782\n3408\n6530\n719\n7587\n5910\n3058\n740\n2009\n4207\n5336\n2798\n9229\n8668\n2473\n4221\n1493\n3281\n171\n9157\n9139\n7766\n6220\n9127\n3324\n5308\n3708\n2431\n8080\n2093\n2585\n406\n7040\n5064\n5247\n4758\n6512\n2953\n4257\n4935\n2705\n2572\n3436\n8513\n5884\n1385\n4852\n2637\n7091\n2761\n6007\n8332\n6694\n2422\n4917\n2186\n6898\n1390\n6965\n3132\n7698\n475\n2002\n2692\n5024\n7365\n7373\n4091\n1731\n947\n3962\n8692\n1788\n8734\n8656\n6862\n6856\n1950\n1914\n5658\n3635\n1620\n4780\n2580\n1454\n2786\n687\n7238\n3648\n6452\n1197\n3190\n5900\n9043\n4958\n1935\n1821\n1187\n1153\n7737\n7223\n3820\n7169\n7350\n5674\n6254\n3025\n6680\n1690\n2899\n3893\n1577\n5728\n9189\n5077\n34\n3560\n2179\n5462\n1402\n3654\n1376\n7936\n4246\n5506\n1179\n5647\n4686\n8644\n1352\n2855\n6079\n2254\n2668\n2287\n2457\n3418\n7264\n677\n3074\n2655\n1042\n2210\n4504\n7089\n8309\n4209\n4280\n3258\n2977\n84\n4705\n1244\n3511\n6355\n8813\n3228\n9266\n1122\n613\n732\n5202\n8425\n2638\n6470\n2886\n3541\n8132\n2063\n8201\n5129\n2818\n7949\n6936\n8090\n4465\n7295\n5239\n7009\n9271\n8563\n2832\n952\n8136\n6776\n3565\n5188\n7288\n6999\n285\n5487\n7763\n7608\n8584\n2071\n7868\n2804\n3655\n7048\n6847\n3276\n4082\n4272\n3910\n3709\n1574\n4559\n7580\n7081\n5014\n7769\n8183\n6386\n7574\n356\n4937\n2487\n9315\n7572\n3040\n671\n2682\n8626\n3868\n8623\n387\n8679\n4074\n1481\n3527\n3595\n4754\n2453\n1579\n4638\n9123\n1829\n316\n3009\n3691\n763\n4875\n3572\n4642\n3128\n4273\n2777\n6032\n4793\n233\n7147\n996\n3199\n8835\n3517\n7210\n6125\n6037\n3684\n8589\n3915\n3095\n8310\n3180\n7043\n4458\n2889\n57\n4483\n7667\n8375\n1434\n7493\n6986\n4733\n8471\n5827\n2111\n1313\n7986\n3075\n2614\n7547\n4977\n8527\n3212\n7300\n5842\n5244\n3291\n597\n1007\n2030\n227\n3830\n5540\n247\n5643\n9333\n1958\n3096\n1371\n5220\n7926\n2927\n1516\n7130\n193\n1522\n6165\n6923\n3794\n4223\n5535\n2472\n8630\n3971\n9101\n2946\n222\n4609\n7291\n8542\n6501\n7548\n4557\n6274\n1010\n5226\n7309\n1317\n9056\n6275\n1624\n1099\n4191\n4030\n7270\n5392\n2316\n3819\n1670\n8154\n8045\n4807\n8864\n2391\n5908\n8338\n8218\n6400\n9193\n3165\n843\n6613\n6941\n4380\n9332\n5629\n7557\n4321\n3702\n681\n734\n1159\n4665\n5959\n1697\n5509\n8774\n7389\n3832\n3751\n8637\n3079\n1680\n6841\n703\n684\n8293\n3682\n5733\n4818\n3231\n3078\n5562\n9001\n3889\n7024\n2519\n1713\n3287\n219\n6021\n8776\n2289\n7212\n4832\n4684\n4617\n4237\n2649\n8185\n6326\n3568\n551\n1426\n4181\n8869\n312\n2905\n4165\n8248\n2558\n900\n1044\n8613\n7743\n5437\n7604\n3122\n5708\n8649\n2878\n4695\n4491\n1929\n7533\n5223\n7711\n915\n1844\n5751\n3008\n8055\n961\n6142\n4636\n61\n198\n2271\n5698\n4596\n4500\n5709\n5819\n7972\n2992\n1643\n1048\n6281\n8886\n360\n4198\n1841\n6814\n3960\n2606\n7001\n5888\n450\n7133\n7015\n7034\n5153\n8920\n5066\n469\n1302\n8816\n463\n8651\n5869\n8193\n6582\n5578\n1231\n9274\n7260\n7751\n8052\n6799\n2089\n2342\n8451\n3260\n5550\n7795\n2288\n1205\n40\n496\n8367\n7836\n5973\n3908\n5242\n5062\n2706\n997\n6514\n5419\n9201\n1965\n6062\n3050\n5302\n8735\n358\n2398\n7470\n1644\n8179\n7047\n1549\n5414\n2539\n7381\n589\n8166\n8505\n6035\n3956\n4540\n6721\n8074\n1062\n2384\n2531\n7159\n3502\n3902\n4584\n2554\n264\n8720\n2849\n4916\n5218\n7202\n883\n4560\n1677\n4317\n7863\n4509\n6577\n2903\n1452\n1416\n5369\n473\n6233\n6359\n5992\n4934\n8059\n6834\n4907\n3320\n8267\n8280\n2066\n2402\n1485\n3772\n3732\n4764\n9126\n3575\n5564\n4768\n5641\n1884\n2330\n1804\n344\n698\n3089\n1532\n4454\n761\n7289\n8094\n3432\n1747\n6811\n8722\n8826\n4646\n3222\n8614\n2901\n7003\n652\n8663\n4266\n413\n810\n75\n3334\n4905\n6438\n4756\n5137\n6528\n6534\n6988\n6177\n8533\n889\n5384\n7201\n5132\n7802\n6864\n3973\n873\n4840\n1482\n8376\n3769\n5858\n6675\n4286\n2593\n5863\n4353\n7817\n7540\n4999\n4838\n2303\n6002\n7913\n1508\n5317\n7755\n2784\n4964\n3431\n6209\n3755\n6022\n6399\n6232\n3954\n455\n5416\n6448\n1558\n7591\n245\n140\n9210\n6585\n4084\n967\n7798\n6795\n7095\n6733\n3861\n9264\n361\n1045\n755\n8042\n7074\n7778\n6415\n4724\n6450\n2049\n1563\n1307\n3485\n1790\n7869\n3282\n6907\n3920\n2868\n5801\n5632\n1079\n5009\n3955\n7517\n5128\n3417\n3019\n2725\n1784\n2312\n2753\n6976\n342\n8266\n1849\n2273\n5037\n7880\n3793\n7401\n5412\n8279\n1257\n3670\n9049\n3266\n8955\n6519\n8916\n2858\n694\n5650\n1019\n4669\n1785\n3533\n5877\n2704\n8603\n3726\n6668\n497\n1085\n6815\n6157\n6646\n6964\n186\n8097\n5645\n8481\n8215\n3775\n2542\n7514\n5699\n4072\n3518\n5767\n3239\n3740\n1404\n8981\n4086\n6397\n6984\n4204\n6899\n682\n6589\n3317\n2944\n3456\n4340\n7424\n9208\n6504\n4409\n1\n145\n1882\n4620\n2634\n4992\n5453\n4481\n3377\n266\n7875\n530\n1235\n7605\n504\n1771\n8489\n345\n7353\n7797\n7174\n5914\n2871\n5721\n6067\n3582\n7653\n5467\n6234\n691\n8758\n2122\n1213\n2908\n1492\n1437\n2187\n1266\n2395\n7278\n8491\n5256\n1554\n8163\n5966\n7128\n7904\n1691\n6272\n1264\n3996\n1706\n1334\n1316\n6478\n6935\n1518\n6700\n8703\n8744\n8152\n8778\n5367\n4218\n9007\n6312\n606\n7565\n5293\n2891\n675\n2125\n2120\n826\n7008\n5705\n7748\n8010\n1498\n5330\n5472\n2215\n7627\n3016\n6588\n1850\n4128\n8569\n6987\n7566\n148\n8151\n8789\n7907\n8596\n715\n6018\n9060\n3872\n1750\n5889\n4047\n5960\n3120\n3449\n1421\n1102\n3333\n9197\n8796\n8123\n8007\n2028\n8404\n1945\n1985\n8109\n5380\n8438\n3504\n6739\n4180\n5835\n4243\n25\n4002\n1976\n3482\n8392\n158\n5181\n4885\n8985\n11\n6872\n6425\n5926\n7062\n5083\n8394\n4259\n5844\n1990\n3942\n5532\n2220\n28\n5957\n149\n6748\n1663\n3559\n7647\n2566\n1359\n8787\n5259\n7010\n554\n8231\n4229\n6005\n8172\n8125\n1350\n3571\n9051\n1973\n1386\n1781\n5788\n159\n7007\n3220\n1846\n3093\n4445\n2056\n8370\n3211\n1113\n4384\n2231\n273\n4276\n642\n7663\n5311\n265\n226\n9012\n7879\n118\n7109\n7251\n1760\n8667\n2876\n7162\n3552\n6901\n6779\n5021\n6524\n4957\n3114\n4544\n441\n1848\n2136\n2458\n8662\n1127\n5541\n3026\n1080\n6780\n2224\n8259\n1073\n9000\n7244\n7977\n500\n4435\n7376\n7979\n1435\n9291\n7704\n3791\n3521\n210\n7388\n1039\n6269\n4052\n8570\n3285\n564\n8039\n3546\n6203\n1183\n6107\n4147\n6216\n2234\n7185\n3192\n7155\n2001\n7777\n876\n944\n908\n7791\n5465\n6784\n65\n9172\n5675\n7075\n3886\n7891\n2978\n1008\n5630\n591\n5067\n1139\n577\n9015\n574\n8137\n7786\n5765\n4900\n4090\n7842\n5741\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/got10k_train_split.txt",
    "content": "3784\n8998\n3906\n1631\n8277\n8358\n2338\n7938\n2988\n8302\n2662\n2663\n2825\n7447\n4781\n2218\n6348\n5860\n4517\n2819\n8075\n5391\n116\n3606\n7976\n7941\n1024\n4519\n1970\n557\n8579\n6908\n993\n7204\n1991\n3674\n8781\n6840\n5\n3225\n3763\n8688\n6778\n5777\n4794\n2744\n8126\n3864\n1733\n2923\n6829\n701\n683\n2081\n1831\n2404\n1459\n2741\n5972\n3618\n7462\n2654\n103\n2174\n6224\n2989\n2506\n2766\n5912\n2699\n3295\n3986\n609\n4895\n6673\n801\n1098\n1602\n2490\n3129\n8476\n3186\n7355\n4784\n4270\n1812\n4226\n2267\n8873\n6544\n6112\n2381\n4752\n753\n3776\n6511\n6016\n731\n2559\n7369\n5866\n563\n7731\n1105\n5603\n50\n4238\n2208\n8725\n4994\n4719\n1444\n8807\n7298\n8139\n8760\n8173\n2332\n4131\n5207\n1065\n8562\n3992\n4024\n2188\n9095\n6765\n1707\n6105\n6922\n5362\n1486\n7898\n4135\n6574\n1551\n998\n6565\n8127\n8927\n2544\n4365\n510\n768\n3535\n3875\n6808\n2931\n487\n1088\n4451\n368\n2470\n8111\n3493\n7338\n8281\n6390\n1271\n4373\n3667\n3494\n3757\n2966\n3756\n7840\n6315\n7827\n3300\n6261\n4163\n2217\n6549\n94\n7236\n9136\n1857\n6691\n3470\n6271\n807\n516\n9311\n6098\n3144\n8420\n5425\n5694\n2643\n6696\n6072\n7285\n3781\n903\n8522\n6092\n5979\n2622\n2529\n855\n3420\n3261\n8953\n7866\n2492\n3157\n359\n1520\n2642\n7452\n759\n36\n8931\n1744\n4350\n1089\n9199\n4295\n1889\n1908\n4868\n4498\n1968\n9103\n3273\n8723\n7413\n4114\n5584\n4874\n1427\n5211\n7618\n1542\n1353\n8158\n4168\n3200\n6345\n8560\n5619\n5953\n3158\n8849\n5831\n1411\n7294\n8103\n6539\n7397\n1006\n5450\n3119\n4274\n5352\n4571\n2319\n4217\n4976\n902\n1814\n2651\n3299\n3398\n982\n2428\n5793\n1346\n7057\n3737\n7329\n4449\n2110\n7405\n1773\n958\n3901\n4127\n8234\n2994\n7066\n1289\n2995\n5871\n3556\n9085\n846\n2366\n585\n7032\n5516\n5230\n3481\n2732\n6658\n7423\n1855\n6384\n3554\n5823\n4948\n7058\n4667\n5377\n2503\n7694\n9191\n9144\n655\n3409\n62\n8019\n8970\n5523\n7403\n3379\n2323\n4833\n5750\n3178\n6548\n8891\n7501\n3280\n7404\n343\n2171\n8397\n1367\n8611\n6118\n6603\n3729\n7182\n9048\n7733\n5642\n7141\n3335\n4845\n5449\n3467\n6250\n163\n5168\n2040\n5339\n3609\n8352\n3426\n8567\n769\n187\n6151\n6437\n7028\n8507\n3970\n9146\n2068\n5028\n7492\n1661\n2815\n2469\n2563\n3814\n8430\n4305\n3479\n5678\n9115\n4132\n1211\n5459\n4814\n545\n4556\n238\n4296\n2724\n1260\n2581\n6087\n4632\n4313\n380\n1209\n5447\n3032\n7942\n8943\n806\n2432\n6130\n4314\n2131\n9045\n6531\n5706\n6747\n7724\n2017\n3292\n5469\n2743\n424\n4233\n7643\n8619\n5192\n4516\n9324\n3537\n9152\n8058\n7526\n8711\n1949\n5982\n1732\n6702\n7027\n6388\n7012\n328\n2130\n452\n306\n7669\n3134\n5761\n3703\n44\n4189\n695\n7672\n5224\n9215\n5644\n3143\n3704\n5443\n2348\n7177\n2328\n4725\n354\n1418\n7810\n7746\n9002\n5759\n7226\n4535\n9160\n4385\n5397\n7249\n2936\n3204\n6287\n385\n2371\n2738\n3636\n9033\n2246\n2680\n6940\n4310\n2054\n9250\n9080\n4568\n5586\n4469\n2038\n3410\n7900\n4332\n6108\n678\n3319\n9079\n1054\n4048\n4751\n1320\n6890\n7931\n1398\n4349\n5299\n5025\n7932\n5738\n7787\n4590\n4020\n1274\n2488\n8497\n3372\n8965\n3219\n799\n3664\n6500\n7093\n4362\n6205\n4244\n4652\n1964\n5945\n6434\n2031\n2684\n6632\n4588\n8271\n3232\n5782\n2904\n6789\n5636\n7200\n3632\n5435\n8203\n3480\n4786\n7579\n3351\n1921\n798\n3646\n3094\n4359\n1654\n5975\n376\n5965\n780\n7821\n9224\n6738\n3185\n2133\n6248\n5996\n2834\n531\n5688\n2448\n7925\n7974\n5924\n6401\n5778\n6594\n5442\n8336\n4522\n3770\n6340\n6328\n4946\n4161\n2954\n2588\n8465\n2885\n1606\n5787\n3407\n3121\n7310\n1413\n1932\n4787\n2579\n3325\n508\n5610\n6480\n4290\n479\n3792\n6628\n2545\n6717\n6972\n2665\n6730\n3547\n6845\n5929\n3540\n4356\n8993\n1052\n2235\n8356\n3403\n8818\n8260\n572\n4159\n1180\n5348\n941\n7948\n2676\n3539\n4866\n6422\n8365\n3217\n1310\n2059\n9177\n1419\n2283\n8892\n8162\n1212\n6277\n3725\n7806\n6149\n7874\n718\n6888\n7118\n277\n656\n8763\n8289\n4759\n5854\n8659\n7710\n3145\n5981\n1881\n5799\n6947\n1609\n6396\n2631\n2887\n318\n2550\n6132\n1736\n2907\n7816\n48\n4304\n8133\n6698\n2760\n7779\n7732\n7642\n1154\n7242\n711\n9262\n539\n8033\n7440\n1913\n5480\n5570\n8594\n8772\n4654\n8974\n6128\n6183\n1071\n8449\n2142\n2298\n524\n1695\n820\n4053\n8241\n1856\n8641\n3981\n217\n1063\n9286\n3152\n221\n5461\n1270\n2006\n7164\n1199\n6951\n5604\n5400\n5309\n3498\n6407\n6661\n7097\n8165\n5169\n3852\n7070\n5702\n4344\n6648\n6904\n3272\n7119\n5795\n2365\n2659\n353\n5444\n6968\n2755\n1924\n2098\n2972\n6006\n5865\n8740\n2418\n3401\n7856\n5841\n598\n836\n1147\n931\n8897\n0\n6049\n1837\n865\n1871\n6116\n6831\n5773\n3587\n303\n1883\n2163\n3070\n1308\n7953\n6300\n6909\n853\n7301\n3279\n123\n7186\n3194\n5553\n5133\n1931\n4622\n6075\n4891\n5722\n5693\n8\n2339\n6596\n71\n379\n4506\n4370\n1238\n2707\n3344\n4254\n8767\n1726\n325\n4148\n5438\n5357\n548\n1332\n6824\n2290\n2335\n3146\n2594\n2315\n3389\n3885\n2621\n4116\n5389\n7412\n7222\n4894\n8595\n2000\n4978\n4721\n6444\n3796\n9321\n2236\n6409\n1523\n1468\n9249\n8270\n2341\n2874\n174\n4757\n4502\n4703\n9034\n9108\n5451\n2619\n5022\n9158\n490\n6540\n1466\n2962\n8771\n3036\n2712\n4539\n1581\n5638\n9246\n4308\n4363\n4647\n4470\n1636\n2511\n1311\n6560\n7519\n8027\n9217\n6464\n6364\n3779\n4822\n3563\n3982\n5896\n5510\n6655\n1524\n2846\n3137\n621\n141\n1887\n6567\n8921\n4671\n6052\n8445\n8699\n7349\n3553\n2117\n7651\n5034\n5383\n649\n3818\n9022\n8414\n1012\n8159\n5081\n8571\n4765\n9135\n4361\n4073\n9142\n727\n2835\n8229\n3989\n4490\n4923\n5477\n1638\n3643\n712\n9044\n2230\n499\n7166\n96\n3172\n8431\n8401\n1470\n6356\n8817\n927\n4212\n2152\n1795\n3812\n4949\n1219\n1538\n3029\n6481\n9042\n7775\n7742\n423\n2085\n7715\n4541\n9061\n5916\n3950\n7420\n4878\n7406\n7046\n7808\n4911\n8804\n6927\n8820\n3264\n300\n8670\n2979\n252\n4407\n3383\n4688\n8504\n6723\n26\n3837\n2489\n4137\n8209\n229\n6490\n2364\n9016\n1763\n1728\n338\n8335\n9063\n5280\n2791\n641\n5454\n4581\n5420\n4548\n2840\n8508\n3463\n7231\n7619\n2560\n1755\n6201\n165\n1471\n6279\n5806\n6867\n5890\n2396\n3416\n1981\n6073\n5872\n3045\n4182\n7607\n3318\n4414\n2998\n6553\n7139\n5624\n2123\n3666\n723\n5110\n6932\n8200\n2222\n8399\n1041\n4138\n1594\n3569\n9253\n393\n7940\n8004\n1475\n6759\n5393\n1107\n2597\n878\n9309\n7576\n5250\n1759\n3142\n2015\n571\n3921\n1255\n7080\n893\n2160\n1355\n82\n1562\n9153\n8583\n4085\n4644\n7196\n9165\n3558\n4550\n6374\n7826\n8602\n4146\n9257\n6083\n874\n8383\n3731\n3374\n3653\n8222\n7344\n470\n1813\n4478\n6871\n7245\n6866\n3998\n7433\n276\n1915\n1988\n8168\n2518\n2686\n831\n6143\n5205\n8718\n1703\n7729\n2077\n7983\n8450\n1195\n9232\n507\n7989\n6974\n4054\n5828\n8655\n6679\n5245\n7783\n5886\n9098\n6491\n8782\n3525\n6542\n131\n8110\n9186\n9074\n4933\n9035\n2607\n4\n2057\n6273\n2711\n5829\n3382\n2696\n3043\n2048\n619\n2499\n5295\n1162\n7807\n3694\n2194\n3149\n1940\n7934\n840\n3592\n8237\n4731\n1324\n8486\n8726\n8573\n2928\n9078\n2272\n2564\n1370\n5911\n7434\n8026\n407\n7546\n2004\n5849\n3034\n7887\n3425\n1118\n926\n3430\n1544\n5902\n2282\n1124\n2334\n129\n1372\n4842\n6473\n4382\n1028\n415\n8269\n8073\n6910\n2796\n3038\n5735\n5080\n2852\n6306\n8842\n9188\n3637\n1066\n532\n928\n5485\n2838\n6753\n9008\n7984\n2816\n8819\n7103\n5977\n5044\n2064\n2599\n4973\n382\n3249\n6446\n6638\n852\n1724\n3368\n892\n3250\n8258\n7962\n4300\n1616\n167\n8855\n2090\n4424\n879\n5136\n5350\n2635\n7828\n8506\n63\n3004\n3847\n3676\n1184\n1705\n6745\n1263\n5020\n746\n1888\n7036\n1033\n3914\n5433\n3905\n4641\n8909\n228\n4801\n3766\n8085\n643\n6914\n9280\n3013\n5657\n3696\n1590\n2920\n8282\n2403\n416\n911\n3849\n4215\n1120\n5490\n296\n2306\n3140\n3742\n4819\n6153\n6414\n760\n3000\n7498\n7108\n6429\n3031\n5314\n751\n3357\n5808\n7505\n98\n7652\n4027\n6257\n3943\n1799\n8577\n5577\n4969\n9163\n2025\n6061\n4026\n5732\n588\n7017\n1415\n4961\n4940\n7152\n538\n706\n2802\n8983\n3375\n1246\n6593\n5837\n1789\n7939\n4997\n5939\n2411\n6133\n199\n7593\n1702\n5406\n6082\n2359\n2912\n6109\n100\n8149\n5470\n2807\n3384\n6413\n3362\n5621\n6019\n9241\n9268\n7703\n4111\n7967\n5458\n7181\n5492\n1112\n6729\n4577\n106\n8853\n3774\n979\n7082\n4610\n1853\n9003\n9292\n2867\n6262\n2245\n3460\n1557\n767\n4796\n8147\n2658\n5769\n6985\n7065\n421\n7990\n3289\n1540\n9316\n2251\n6896\n5947\n4965\n2652\n4480\n963\n9047\n7168\n7824\n3976\n6210\n7018\n7179\n5016\n7789\n6102\n6828\n7659\n9109\n9071\n8115\n7628\n7110\n16\n7513\n835\n939\n4078\n2351\n2322\n3881\n4945\n560\n6837\n6094\n6475\n7901\n3\n771\n8029\n3135\n8044\n7127\n3741\n5156\n7030\n4906\n113\n3747\n7042\n5232\n5225\n3002\n4747\n6879\n5379\n4886\n7192\n4184\n1896\n1834\n8689\n3665\n2957\n6913\n8009\n4851\n6420\n7987\n828\n3003\n8884\n8815\n3198\n8008\n194\n6251\n3303\n3934\n395\n1285\n4169\n1648\n1347\n3600\n4631\n509\n211\n6230\n7241\n8250\n2219\n2582\n8353\n7790\n7583\n4462\n3904\n9004\n6942\n1704\n5686\n8051\n2981\n5511\n6182\n7088\n1699\n1222\n3455\n6189\n1528\n5197\n6221\n7893\n3283\n2837\n7773\n8766\n2942\n8021\n614\n4102\n7362\n1786\n400\n133\n556\n3127\n5237\n3727\n1440\n3873\n6322\n8448\n6285\n8696\n8800\n4009\n3386\n454\n4847\n5685\n9093\n246\n1314\n5895\n6863\n4302\n4260\n8405\n8417\n7116\n255\n3223\n4737\n7852\n6337\n814\n710\n1094\n6103\n5809\n5882\n6336\n4974\n1499\n2806\n3744\n2664\n2436\n4482\n8665\n8918\n1076\n8676\n5725\n9248\n4755\n1447\n9328\n5500\n78\n2653\n792\n6854\n6093\n6172\n3378\n4492\n5529\n5476\n3846\n1391\n383\n4289\n3883\n2648\n3265\n2525\n5402\n4599\n6870\n6877\n4413\n2464\n8519\n2521\n1839\n5822\n5664\n7257\n5375\n6852\n6764\n5182\n8914\n3015\n8509\n3080\n4562\n8979\n6215\n6643\n8601\n6096\n4812\n5246\n7862\n527\n7849\n6737\n12\n2468\n7961\n275\n27\n5932\n3840\n7341\n4996\n8564\n2154\n3788\n6138\n7831\n4442\n757\n4464\n1170\n2568\n19\n323\n6584\n7675\n3441\n2067\n9027\n2486\n4379\n4744\n1737\n7563\n301\n3907\n4742\n6857\n1221\n9284\n8458\n8236\n2897\n4004\n1526\n5345\n4423\n6246\n8578\n1057\n3711\n4986\n4785\n3997\n7311\n4788\n107\n8387\n2041\n2608\n8628\n5830\n6031\n783\n6817\n3293\n541\n773\n8473\n2501\n7247\n5667\n804\n483\n1639\n696\n6060\n5429\n5762\n1527\n7342\n1329\n6225\n7895\n381\n8030\n8520\n8362\n4734\n3526\n9273\n2039\n4142\n5084\n875\n6905\n8968\n5275\n3052\n650\n7509\n232\n2595\n3631\n1810\n4355\n8315\n8908\n1777\n4834\n3164\n2336\n1543\n6212\n8346\n3024\n3719\n1242\n6265\n8101\n3133\n6150\n6358\n3316\n4089\n1647\n4629\n7117\n2596\n5366\n1225\n6371\n624\n2209\n1428\n1158\n7648\n466\n8765\n802\n153\n4639\n3657\n6482\n9320\n2693\n6591\n3294\n2617\n5052\n6305\n3227\n8784\n7170\n93\n5868\n6716\n1671\n178\n2703\n954\n3254\n2262\n5046\n5743\n8647\n6393\n7706\n6604\n3728\n6978\n7489\n7474\n8754\n2740\n2233\n6038\n1491\n8814\n2080\n2358\n5944\n5653\n1164\n9259\n4518\n7343\n5748\n3897\n923\n5967\n2677\n3503\n1202\n4966\n1836\n1863\n6634\n1962\n9096\n9064\n977\n4049\n1464\n658\n536\n3402\n8064\n1309\n259\n7999\n8122\n910\n224\n6152\n7142\n6070\n7523\n8411\n2408\n6766\n9214\n9312\n8325\n6192\n626\n6025\n6240\n8708\n4630\n6777\n1075\n8906\n408\n9269\n6236\n9067\n2514\n8568\n2324\n156\n3136\n3530\n7878\n7308\n4335\n2065\n3845\n4453\n3356\n1450\n371\n7219\n5171\n201\n8642\n2099\n477\n1603\n8339\n7430\n3061\n235\n8291\n1133\n8474\n7035\n8653\n989\n4569\n9092\n8347\n3102\n1743\n9086\n5140\n7438\n1530\n4342\n2460\n7646\n5047\n5071\n5430\n6944\n610\n2803\n1448\n4696\n6156\n4386\n4248\n4256\n994\n2112\n805\n8011\n8276\n8999\n4956\n1712\n2795\n7553\n6436\n2158\n9083\n3184\n5784\n4428\n612\n5288\n6222\n1365\n5074\n6848\n575\n5213\n2175\n4240\n351\n2086\n2656\n5150\n9255\n8189\n7735\n1261\n1344\n4097\n8674\n2984\n4235\n5998\n6488\n537\n1267\n7486\n7124\n6245\n7955\n7337\n5436\n1194\n8226\n209\n1710\n7906\n4357\n4139\n5679\n2584\n2854\n1004\n8246\n8586\n5087\n1878\n4926\n6637\n3197\n7757\n8249\n4055\n6502\n1248\n990\n3928\n2770\n2751\n1020\n6426\n4190\n6839\n2671\n884\n3871\n9212\n4179\n3394\n10\n5861\n5316\n6869\n2985\n8905\n8559\n4457\n2480\n2313\n4100\n4395\n6835\n7799\n7890\n2785\n5468\n7302\n5862\n1803\n6376\n3171\n8591\n717\n7053\n1655\n4489\n2522\n2921\n8555\n1984\n895\n8949\n1305\n738\n7606\n112\n3042\n1325\n437\n3167\n3340\n511\n3689\n5813\n8982\n69\n4421\n7150\n550\n8829\n8685\n3147\n8956\n3166\n7023\n8633\n3308\n2014\n3573\n3880\n4045\n2069\n6051\n4950\n702\n6664\n8418\n2454\n6181\n4853\n4166\n7022\n7418\n3605\n9181\n7172\n5031\n4589\n7858\n6586\n6351\n8334\n7504\n634\n3759\n1890\n890\n6959\n5085\n4919\n2161\n1191\n256\n3610\n7079\n3427\n4071\n7323\n2982\n7263\n7444\n4251\n5846\n4864\n3649\n4311\n7461\n8120\n4582\n6373\n2805\n4872\n4869\n5493\n5867\n2670\n7099\n30\n8933\n930\n7919\n501\n7261\n5289\n7449\n7772\n3613\n7848\n3196\n474\n205\n841\n2611\n6185\n3088\n409\n7239\n5938\n7871\n1343\n6705\n1027\n5596\n2199\n9113\n5471\n6134\n838\n2345\n8359\n4061\n1474\n3229\n270\n4245\n1979\n5995\n1517\n8652\n4006\n4880\n6137\n4693\n2528\n6996\n2926\n5798\n2477\n2549\n1128\n3341\n6014\n4479\n2861\n4208\n5175\n5174\n5118\n3736\n5463\n1588\n2327\n8380\n7982\n1514\n1058\n4586\n6608\n7985\n3044\n1822\n3628\n6851\n549\n1811\n2184\n2601\n4608\n8922\n2540\n6659\n3859\n307\n3650\n3767\n8167\n505\n4366\n4824\n5520\n461\n1933\n2401\n8106\n2055\n7844\n8544\n8838\n4797\n7419\n6686\n7670\n6039\n5672\n5141\n6543\n206\n5252\n4718\n888\n1601\n3218\n5114\n713\n4022\n4419\n6708\n397\n425\n6612\n5057\n1729\n6573\n4729\n4080\n1034\n2961\n534\n8194\n5598\n9218\n2424\n329\n4154\n1597\n922\n109\n8823\n3578\n9038\n8437\n3307\n128\n8032\n1412\n7333\n8762\n8851\n8865\n3056\n468\n3808\n3064\n8798\n7052\n7767\n9231\n1086\n2162\n6566\n2109\n3439\n6122\n3642\n7696\n8610\n5279\n1808\n8687\n8377\n817\n8714\n6066\n4008\n3640\n6015\n1021\n7601\n4855\n6017\n87\n7071\n2730\n7268\n3614\n6084\n6117\n6924\n9102\n2829\n375\n8724\n2095\n22\n1541\n2970\n633\n139\n451\n4521\n179\n1396\n3876\n5824\n8020\n426\n4982\n4172\n1157\n190\n4859\n1455\n3110\n3323\n9104\n858\n6719\n6428\n4495\n8551\n2141\n3984\n3066\n67\n4299\n5821\n8444\n6581\n6097\n7090\n7781\n8944\n3085\n8606\n2114\n5355\n8901\n1461\n3301\n422\n7000\n4820\n5790\n1379\n7536\n4199\n8736\n8991\n5241\n1698\n1294\n1753\n196\n2987\n8680\n4658\n4144\n8639\n6441\n8255\n8156\n3677\n6385\n6520\n7700\n3760\n6001\n1144\n5478\n7394\n8057\n5018\n4232\n5235\n6844\n3111\n8802\n867\n949\n7843\n573\n2278\n6801\n7629\n2714\n5105\n6946\n2697\n5315\n1571\n8677\n2537\n4374\n3833\n7820\n3750\n2033\n6526\n3884\n8706\n7195\n417\n3603\n3001\n6284\n5873\n5718\n8576\n8457\n3589\n5839\n459\n3626\n6342\n8729\n6933\n607\n6053\n8228\n3773\n1805\n6365\n5142\n6069\n1389\n9026\n570\n4614\n5712\n5533\n9222\n2821\n1897\n819\n766\n4060\n4902\n5905\n6842\n5446\n1277\n4303\n2836\n934\n1014\n7822\n7494\n3466\n665\n1047\n5881\n3328\n4664\n315\n1315\n1462\n8616\n7725\n2756\n5749\n1730\n8184\n4567\n5065\n7499\n8867\n1304\n3669\n9192\n410\n8177\n6710\n1210\n2329\n8443\n3911\n1899\n7686\n3315\n7190\n6180\n3116\n5341\n4394\n8337\n9182\n6969\n5715\n2172\n1742\n2782\n3715\n9195\n7960\n2517\n4890\n8294\n2337\n8014\n3353\n7475\n2193\n4843\n8831\n4200\n4653\n6196\n6957\n3063\n2996\n8959\n8973\n6529\n3457\n5274\n8002\n6823\n6154\n5561\n1780\n9318\n7657\n1758\n6503\n7678\n3274\n1625\n4327\n3236\n8575\n3155\n4707\n4331\n1494\n8756\n3174\n1074\n8116\n8295\n8311\n3048\n3752\n6050\n6483\n8003\n9175\n4674\n1642\n2556\n6166\n7165\n8441\n5413\n3990\n1640\n1778\n7500\n8304\n1395\n4315\n5949\n3364\n242\n5763\n1036\n249\n2430\n7426\n8131\n411\n6267\n2045\n6606\n899\n8065\n9052\n7507\n5779\n5616\n2107\n5408\n2980\n6310\n5776\n4328\n821\n3251\n2354\n7076\n1700\n5313\n6736\n79\n8212\n3959\n5677\n7545\n160\n6790\n6859\n3659\n6770\n1106\n8846\n956\n7472\n2050\n8099\n4795\n8053\n9293\n7037\n1646\n9307\n1069\n5322\n5332\n2708\n8977\n917\n2419\n184\n2105\n1578\n3923\n5780\n1903\n2512\n429\n5582\n493\n4972\n445\n8286\n555\n320\n8300\n322\n617\n3413\n4459\n525\n5631\n6314\n5157\n5300\n8545\n182\n1031\n4429\n2495\n7586\n1534\n3099\n3916\n3738\n1919\n535\n2119\n1299\n177\n1838\n2159\n4099\n8285\n5172\n8540\n6020\n7683\n3073\n3115\n1673\n3087\n3488\n2416\n1894\n5942\n3597\n5834\n2007\n43\n1779\n4174\n2023\n2546\n2429\n9006\n436\n4214\n4536\n3693\n5426\n6767\n5903\n4368\n2170\n5051\n7490\n7882\n2859\n5035\n7835\n5372\n7122\n925\n3253\n6338\n8393\n4093\n5848\n7588\n2683\n8049\n5403\n5894\n8745\n8550\n2941\n3484\n9029\n4461\n8022\n725\n2355\n1619\n3030\n1975\n5623\n2415\n1957\n6141\n9278\n3226\n3062\n5670\n7326\n8759\n8496\n6619\n8187\n8262\n6199\n951\n7183\n668\n2388\n4698\n5681\n8240\n2851\n871\n4988\n9084\n9089\n3162\n1167\n8244\n5227\n6461\n2831\n776\n5010\n5770\n5282\n3574\n5102\n1278\n2281\n5455\n305\n4628\n4663\n9119\n7487\n8746\n4889\n6569\n1175\n102\n2386\n8940\n2479\n5566\n53\n8833\n1918\n8001\n321\n6786\n6861\n4358\n2771\n7467\n975\n4777\n605\n3543\n2600\n7584\n9299\n4530\n6477\n7364\n7328\n183\n4761\n7543\n304\n1196\n4623\n7839\n2139\n5519\n1953\n533\n5989\n7590\n7428\n6346\n6162\n1091\n1946\n6260\n4405\n5676\n8924\n7171\n8409\n1866\n6379\n3411\n2387\n3051\n7398\n154\n1185\n6442\n6004\n1611\n2165\n9018\n8323\n616\n3995\n8952\n1533\n7853\n4194\n213\n789\n4991\n3675\n7456\n5752\n175\n7556\n4195\n907\n2248\n9057\n8467\n4594\n1017\n7968\n880\n7446\n3304\n1666\n4942\n3867\n4802\n9156\n6357\n4621\n887\n6213\n5261\n1336\n521\n8928\n1818\n7864\n4792\n6742\n157\n1593\n823\n7235\n5303\n5633\n1100\n1692\n8047\n5993\n1460\n6714\n1630\n6440\n6307\n3608\n292\n212\n401\n5974\n7107\n8301\n8342\n2720\n4583\n2757\n7315\n833\n4466\n4236\n1282\n5273\n2149\n287\n8484\n2380\n8119\n7167\n737\n5076\n6598\n3596\n5382\n2650\n8980\n3421\n1356\n1954\n7823\n1172\n2226\n1941\n6136\n7274\n2256\n4928\n324\n1407\n4410\n4579\n1061\n7113\n486\n862\n3435\n6956\n2873\n1465\n6113\n8225\n8512\n6806\n272\n6008\n1241\n88\n5662\n3555\n689\n8733\n2812\n7453\n6282\n420\n2471\n4477\n7495\n1445\n594\n6939\n1564\n8704\n8590\n7992\n7374\n5796\n9298\n4213\n5713\n5864\n326\n5513\n402\n464\n608\n1951\n8640\n8180\n3347\n3459\n4162\n2690\n7478\n5856\n5240\n2389\n3022\n602\n5547\n1798\n1345\n9276\n599\n3673\n3277\n1635\n8625\n1567\n5928\n636\n5671\n2896\n3477\n412\n7575\n4201\n685\n4760\n1229\n4275\n8960\n3123\n4471\n5941\n3355\n3999\n7157\n6354\n7741\n6850\n8783\n1943\n6769\n7330\n8721\n8477\n1381\n848\n778\n6408\n2644\n5817\n1441\n1723\n2144\n2776\n2368\n120\n367\n8839\n8749\n5353\n4158\n3148\n9114\n1233\n9228\n8857\n2895\n1286\n200\n6755\n5125\n5857\n1657\n7658\n5097\n5000\n942\n7020\n586\n784\n7078\n6194\n8658\n8957\n9325\n1851\n8911\n4862\n7004\n1186\n8824\n1651\n2999\n561\n7639\n4316\n5086\n3187\n7912\n2624\n9183\n8487\n5089\n8475\n7554\n4031\n6297\n6059\n5329\n115\n2058\n7650\n7634\n7121\n2485\n7805\n2241\n7713\n4352\n2409\n1026\n2745\n4549\n6474\n5124\n5201\n6556\n6617\n9091\n3945\n8402\n5648\n5257\n2192\n4901\n7750\n6131\n6027\n6352\n4625\n1254\n5498\n3720\n8261\n3939\n5576\n3685\n6713\n8472\n991\n8354\n8068\n5655\n5997\n1029\n7506\n6740\n2575\n2990\n4898\n583\n7402\n3290\n5388\n6715\n8235\n5361\n4970\n1363\n3338\n5731\n9014\n5358\n2216\n2856\n635\n1193\n3705\n6334\n7666\n5270\n1384\n6368\n8604\n3564\n1937\n2481\n1341\n721\n2100\n3958\n6551\n3813\n2592\n7980\n5385\n319\n2357\n8761\n8910\n8693\n1204\n489\n4827\n8024\n7832\n6427\n3895\n89\n9068\n8067\n1708\n1111\n8963\n1902\n9251\n5719\n9143\n5537\n9169\n77\n5365\n1840\n485\n4456\n2841\n1169\n3271\n7144\n6886\n9140\n7173\n6003\n1659\n1807\n8371\n2439\n274\n4660\n3448\n6623\n347\n2103\n3400\n2106\n9073\n8169\n3687\n3305\n4416\n8454\n6635\n332\n2433\n2909\n3839\n4063\n1944\n6509\n1296\n7770\n1880\n6610\n4075\n9331\n4484\n302\n418\n4219\n1333\n2350\n6498\n8424\n4694\n4883\n5269\n6580\n5007\n6722\n1669\n8470\n2571\n513\n3810\n7049\n6332\n7363\n3532\n8456\n2097\n297\n8841\n7180\n714\n1587\n5234\n4268\n2320\n7372\n660\n8503\n1668\n8847\n1101\n7275\n3336\n6460\n722\n7782\n3947\n502\n4258\n2132\n1835\n181\n3841\n427\n3446\n2551\n8324\n6963\n4284\n7297\n7577\n3399\n9148\n8213\n5656\n8440\n851\n657\n2446\n4292\n6992\n976\n1108\n2681\n3237\n8582\n377\n5969\n5287\n9209\n8523\n7178\n7833\n6175\n2126\n3023\n5090\n7491\n6640\n6077\n2221\n2780\n1694\n4094\n144\n6161\n3203\n7123\n749\n3625\n3848\n980\n2270\n7819\n3672\n7689\n7203\n2718\n1714\n2884\n3474\n3802\n3851\n4224\n7237\n5415\n7998\n7207\n4106\n9036\n1046\n8731\n5070\n6818\n4592\n6056\n693\n1328\n3309\n5791\n2629\n2736\n202\n388\n7886\n4417\n8786\n8822\n4035\n7718\n8492\n5505\n1192\n4388\n8941\n5019\n7538\n6732\n7296\n6389\n5923\n1405\n3278\n3917\n1688\n8374\n443\n4037\n9099\n5190\n6402\n4177\n9310\n7747\n4348\n7197\n4844\n4998\n5609\n4345\n29\n3332\n8648\n4107\n346\n2577\n3941\n1215\n3782\n8252\n4706\n2675\n3790\n7459\n6164\n7316\n1149\n6687\n582\n3139\n5040\n7645\n3882\n7322\n4034\n1861\n4701\n8757\n3208\n8801\n6349\n8907\n1823\n4528\n4789\n143\n4746\n9234\n3866\n9245\n1911\n1366\n4393\n2061\n859\n1959\n6967\n3138\n7382\n9031\n6237\n845\n80\n6911\n7163\n5229\n4736\n8738\n33\n8543\n357\n3193\n7262\n4448\n6796\n6793\n3321\n7569\n6411\n7692\n7340\n1417\n5847\n3836\n2678\n1188\n8727\n223\n8615\n7417\n5771\n3170\n8061\n2935\n8263\n8257\n6883\n1276\n1239\n812\n6258\n3922\n7525\n8117\n3039\n603\n8554\n7573\n2787\n3445\n5115\n3478\n962\n3961\n6570\n7722\n216\n2797\n5154\n2530\n4904\n2405\n7542\n4021\n3252\n5370\n9302\n236\n4532\n1361\n3373\n1716\n2183\n1583\n3783\n868\n1687\n8925\n1433\n6198\n8208\n6367\n7603\n882\n3469\n1645\n7654\n1176\n4231\n150\n7997\n5456\n7031\n4375\n8840\n5634\n6945\n705\n3442\n4774\n3822\n7148\n1922\n8459\n6249\n8713\n6197\n8599\n6071\n6756\n1634\n950\n5640\n7749\n5920\n6622\n4783\n7837\n7479\n7229\n3919\n1797\n5272\n8945\n4908\n5439\n6903\n5833\n6930\n8197\n9261\n1711\n5483\n6046\n4285\n8852\n7409\n8971\n8278\n7534\n7792\n2444\n7496\n8063\n1665\n248\n3894\n4585\n1982\n66\n6651\n4850\n1240\n7511\n7524\n9258\n2075\n3979\n4714\n7592\n965\n2919\n8239\n1842\n8013\n4750\n2344\n6155\n3468\n31\n2087\n1599\n1573\n5883\n7613\n195\n3749\n644\n2189\n8779\n8743\n9005\n8081\n1040\n7785\n5820\n8830\n5495\n4867\n2710\n3843\n491\n7153\n6217\n1148\n4741\n1761\n5484\n3423\n5474\n6916\n5876\n7252\n1739\n8930\n6647\n5198\n4903\n8488\n7366\n2774\n2726\n2385\n7625\n3179\n2211\n8845\n6600\n399\n6810\n3447\n6684\n4915\n8368\n1867\n2325\n2101\n1335\n7734\n3722\n7437\n3716\n7025\n4000\n6897\n1408\n7154\n5013\n2204\n9233\n4225\n3817\n1877\n9161\n2197\n6991\n3390\n280\n1892\n1612\n7753\n2801\n7246\n7909\n6229\n9314\n8407\n1436\n3879\n6432\n6849\n5326\n5327\n8535\n7910\n7745\n5545\n7916\n207\n1783\n6158\n8517\n7361\n8070\n6430\n119\n6146\n4183\n1083\n7385\n4497\n9133\n1686\n3765\n5099\n595\n8046\n4418\n4043\n2361\n7915\n9149\n1717\n1141\n6375\n1018\n5602\n1262\n7485\n9178\n6629\n3339\n8934\n4648\n7988\n6252\n3440\n864\n5418\n3874\n7280\n6191\n8388\n4323\n6792\n4324\n2232\n7228\n8684\n7813\n6187\n6678\n3177\n3534\n4953\n4402\n7739\n6319\n2414\n8700\n5946\n8238\n4533\n6917\n4167\n4618\n2115\n2268\n3081\n1247\n4001\n8580\n7636\n3101\n2195\n1559\n3714\n2484\n7188\n6028\n7530\n2828\n1977\n3238\n6496\n2340\n110\n3247\n7532\n7541\n924\n1632\n484\n4487\n4439\n6447\n1319\n4944\n6347\n1791\n2285\n8087\n5452\n91\n1166\n162\n5185\n7933\n4743\n1627\n7259\n8620\n8525\n8207\n5845\n9011\n5525\n4269\n4700\n1824\n8186\n8872\n8299\n3957\n8242\n4558\n6439\n2666\n5943\n6958\n8112\n5121\n8806\n6170\n7688\n3486\n2082\n7436\n2778\n1096\n786\n2206\n5170\n1443\n6030\n3312\n9151\n8485\n6404\n8498\n2883\n8961\n2280\n8341\n9137\n4337\n2809\n2445\n809\n8298\n8643\n8316\n4951\n6853\n1572\n3215\n3938\n2249\n6515\n1337\n8328\n7712\n1429\n4117\n5441\n3230\n4152\n7225\n3513\n6953\n1507\n348\n3639\n5739\n2673\n1550\n6301\n1652\n8453\n204\n6833\n8056\n2200\n5217\n1854\n4711\n7368\n4572\n4032\n7531\n1013\n3634\n2875\n6058\n8307\n7609\n1766\n904\n667\n5410\n6578\n3601\n1664\n3233\n7390\n8178\n4486\n4952\n4427\n4876\n9166\n3107\n2772\n6295\n5001\n5296\n3371\n6518\n6327\n854\n1615\n8288\n1912\n5927\n6202\n5814\n9032\n1059\n3214\n6547\n7038\n5781\n6926\n4390\n6114\n1622\n4318\n5803\n5984\n736\n3561\n6554\n5045\n4277\n7386\n9081\n8462\n2034\n4955\n2701\n932\n1298\n7758\n7176\n9205\n2276\n3077\n3803\n3562\n8054\n7946\n295\n1843\n7728\n1629\n7768\n3663\n6363\n2971\n431\n9285\n2513\n1116\n3656\n4529\n6366\n5758\n6339\n8398\n816\n4153\n648\n2536\n1826\n7870\n8113\n7730\n7101\n6555\n9256\n6774\n1072\n4578\n2598\n3604\n5880\n861\n8273\n3350\n3117\n4685\n9219\n4334\n5165\n2035\n7224\n4066\n4253\n4447\n3815\n5038\n253\n3658\n2252\n330\n3967\n6443\n2143\n7336\n6135\n593\n2734\n8390\n4655\n7800\n1399\n1173\n5618\n2822\n7905\n7503\n4431\n2443\n1568\n3909\n1974\n2496\n4772\n5164\n4105\n2138\n2864\n3799\n3924\n4882\n8245\n1585\n5528\n5692\n5730\n5832\n137\n3175\n2894\n2062\n3899\n2752\n4028\n2113\n5411\n293\n2647\n730\n3758\n1667\n8879\n9303\n6653\n3698\n3968\n3053\n503\n2150\n4645\n2257\n4627\n8303\n7966\n8742\n4692\n5901\n8547\n2277\n5546\n986\n370\n4697\n8712\n4804\n4881\n1182\n6650\n7290\n3487\n2814\n5668\n7567\n5333\n3724\n4164\n3084\n8896\n3888\n6537\n17\n6882\n3531\n704\n1037\n8866\n5263\n6758\n3762\n1393\n3824\n5575\n5112\n214\n1439\n5700\n8932\n1306\n5011\n6928\n5173\n4098\n1132\n7352\n4778\n7723\n1368\n2390\n670\n2685\n5855\n1772\n6380\n3853\n940\n5424\n6091\n1748\n6193\n5297\n6572\n8877\n6874\n430\n5041\n5267\n1145\n7448\n620\n9112\n4294\n1432\n72\n130\n2393\n7920\n4597\n6614\n8889\n3697\n1895\n3462\n2616\n3978\n4791\n7846\n7780\n8372\n428\n6559\n8326\n9211\n2363\n1525\n5980\n7888\n3331\n8118\n7899\n615\n7377\n791\n5930\n6627\n8322\n1138\n770\n8460\n5100\n8274\n8350\n6316\n2893\n7594\n9236\n5082\n8150\n1986\n1909\n8902\n2145\n3617\n3501\n7\n2426\n5056\n8016\n2702\n5360\n8135\n8385\n8378\n8018\n8574\n720\n8893\n3021\n1978\n4782\n1816\n2083\n4051\n1446\n5870\n971\n9097\n8006\n4222\n8287\n686\n1377\n611\n8153\n4920\n4808\n1536\n679\n4096\n3891\n4884\n432\n4615\n8988\n5560\n3451\n5589\n3514\n6169\n1414\n3244\n1490\n7100\n3588\n690\n7317\n4171\n2266\n6800\n108\n2793\n5151\n6977\n2587\n8188\n8752\n6318\n5815\n5116\n263\n3311\n5191\n5689\n289\n3392\n5755\n1022\n5548\n9319\n8937\n6011\n7632\n5328\n4993\n4141\n5407\n1865\n520\n7305\n7208\n526\n3645\n1859\n2520\n3523\n8629\n7304\n8881\n3076\n4005\n8329\n2205\n2214\n6925\n8691\n4136\n8883\n974\n7873\n7952\n3965\n5887\n7964\n7189\n2406\n2783\n8086\n405\n6568\n5147\n2021\n4727\n4826\n7674\n1600\n5078\n2949\n6624\n6541\n8986\n5740\n4679\n8500\n3591\n4434\n398\n983\n7544\n1478\n4570\n6012\n465\n9330\n7206\n808\n8737\n2356\n4959\n8812\n6955\n3599\n2168\n1420\n1721\n1794\n5897\n8422\n2\n4023\n2739\n3619\n8797\n5496\n8951\n8181\n6893\n9254\n1809\n5682\n4309\n6929\n2742\n5988\n3363\n4493\n8434\n4210\n1503\n1876\n5094\n4600\n4936\n4798\n3933\n5216\n646\n7660\n3098\n8773\n4076\n1576\n5335\n3746\n3327\n47\n4602\n8636\n4129\n363\n6417\n7416\n9025\n4377\n4766\n2779\n4151\n9046\n7860\n3154\n3476\n7620\n966\n2052\n8344\n1752\n7199\n4412\n8895\n8882\n2463\n339\n56\n5390\n4821\n7555\n6558\n1905\n5258\n8880\n4205\n3580\n6735\n1023\n4511\n3850\n161\n7395\n2532\n3349\n7055\n7387\n758\n1907\n872\n3006\n659\n815\n1961\n6902\n7668\n4708\n1904\n4433\n5159\n6816\n8664\n6918\n1016\n6513\n7314\n5364\n7480\n9313\n716\n3395\n6843\n2292\n918\n4329\n1035\n6344\n8593\n3404\n5212\n837\n480\n8524\n1342\n3690\n6797\n7414\n288\n8863\n3352\n1628\n24\n135\n3314\n2181\n8650\n5915\n8078\n6812\n1375\n6040\n906\n5635\n7126\n1387\n7458\n6119\n5591\n3795\n1531\n95\n1960\n7522\n3033\n898\n4607\n4921\n3913\n2623\n4430\n6268\n7063\n1326\n9075\n2505\n7400\n1284\n2951\n747\n6466\n1357\n6493\n7320\n5892\n576\n5107\n5559\n97\n2583\n6361\n8843\n3509\n7892\n6086\n1476\n4612\n7427\n4267\n9094\n7050\n6048\n8455\n8382\n2227\n284\n2898\n3221\n2353\n2157\n5990\n5810\n3581\n7279\n6188\n7859\n3549\n5539\n7918\n2022\n9066\n630\n2500\n5111\n6561\n5127\n8095\n5569\n6123\n1338\n8605\n3491\n4187\n8220\n7334\n9213\n3067\n6997\n2853\n4735\n4372\n1489\n5954\n6662\n2207\n973\n3361\n960\n6350\n4170\n7431\n8076\n1129\n750\n7559\n7194\n2261\n2300\n6590\n5893\n6889\n3125\n8788\n334\n7286\n3472\n8164\n7693\n1469\n1181\n669\n7515\n5563\n4773\n3210\n6324\n3113\n9070\n3638\n7551\n2541\n3506\n5138\n4069\n7198\n7560\n3306\n6100\n2932\n4473\n1741\n14\n4672\n7564\n8748\n8874\n3804\n3678\n2240\n2610\n2862\n1358\n5716\n42\n5176\n9326\n8464\n1038\n2993\n3017\n9072\n32\n4809\n4364\n2808\n4125\n448\n152\n7299\n5431\n6178\n793\n3444\n9120\n8410\n4963\n772\n5457\n6954\n3014\n6881\n286\n553\n1948\n6398\n6255\n3057\n8646\n6176\n2700\n7106\n5663\n6683\n1281\n6013\n8799\n7635\n9289\n1885\n442\n2225\n6294\n5054\n2674\n7884\n8730\n8216\n4203\n1488\n7111\n4013\n3623\n7950\n1971\n1966\n3248\n2900\n1553\n472\n3865\n7796\n6937\n4591\n8098\n5208\n294\n5627\n5691\n5687\n7149\n4879\n3624\n7005\n2773\n3112\n9185\n1633\n7830\n5101\n8707\n8469\n4678\n4860\n700\n5527\n9194\n2794\n5068\n2639\n1177\n4282\n6492\n8128\n5859\n5029\n5123\n2877\n522\n5048\n7230\n2104\n6642\n6731\n2717\n5149\n2043\n9059\n5277\n844\n1394\n3262\n5515\n6706\n3651\n9105\n7671\n2880\n3607\n6410\n2508\n8463\n2394\n1916\n1125\n5343\n3322\n5307\n4547\n1589\n8478\n8899\n2955\n8028\n7293\n4619\n4058\n2781\n8715\n1272\n5734\n4474\n4863\n4367\n49\n8844\n5605\n8671\n6743\n4281\n7077\n1874\n2626\n2516\n258\n5249\n6186\n7958\n5432\n3801\n6288\n4732\n9121\n7558\n2527\n4661\n6819\n3835\n7508\n584\n215\n5036\n4261\n8978\n5228\n647\n4657\n2591\n5931\n5088\n9204\n929\n4381\n5421\n2965\n5050\n6495\n5033\n4799\n959\n6115\n3520\n1232\n5811\n317\n8976\n7705\n3842\n2178\n7187\n1373\n7112\n2694\n8627\n8493\n3991\n7441\n6308\n2589\n6462\n3406\n7673\n8660\n2902\n752\n1025\n849\n7682\n6982\n6652\n3612\n298\n5148\n4873\n3414\n1693\n1458\n327\n2016\n5002\n6768\n7016\n5583\n3270\n857\n8232\n7158\n7981\n4676\n4675\n2164\n8360\n6709\n8143\n365\n4062\n4527\n7928\n9009\n6228\n5818\n2533\n9305\n8887\n55\n2507\n8870\n6649\n5158\n76\n5595\n6693\n5306\n8666\n3020\n7527\n3082\n6304\n1591\n6145\n6868\n7205\n9107\n1165\n6773\n172\n1993\n4176\n8400\n4611\n7589\n8702\n5386\n6095\n6335\n1561\n8805\n5963\n7393\n3681\n2037\n4968\n7451\n3360\n7466\n8361\n4455\n4064\n5422\n1689\n3977\n7269\n362\n4178\n4145\n6127\n5162\n2399\n9225\n7068\n1650\n794\n3007\n1348\n7736\n444\n6081\n5298\n2026\n2543\n9087\n3593\n7425\n3730\n8468\n2641\n7529\n1720\n6377\n8732\n5851\n7956\n3150\n3785\n6485\n3611\n2869\n8510\n4775\n4463\n1251\n9124\n6873\n3391\n6505\n4118\n1617\n8837\n7051\n3213\n3668\n5347\n8452\n6289\n5840\n478\n3522\n453\n3376\n6190\n3342\n2237\n2870\n5178\n5567\n5952\n6919\n3005\n134\n3397\n7443\n8539\n6822\n5264\n3288\n5962\n8421\n6744\n8608\n4656\n1802\n2073\n4271\n1043\n2922\n8211\n2196\n5260\n3789\n7211\n7571\n7834\n5680\n2047\n5502\n3369\n3437\n3286\n5517\n3912\n8386\n1442\n6961\n2191\n2417\n9088\n5155\n6813\n4520\n7375\n1224\n811\n1891\n3748\n4123\n2789\n5305\n8419\n7248\n9237\n992\n4038\n4499\n2060\n5538\n850\n2669\n7612\n104\n9290\n2526\n1287\n4160\n4633\n7125\n742\n744\n4534\n2407\n7714\n4555\n8764\n7661\n4722\n7721\n3205\n6657\n1214\n3754\n6080\n4593\n3018\n8792\n2294\n4450\n7701\n9301\n127\n7069\n4513\n6243\n8025\n4010\n8632\n4715\n5284\n4574\n726\n4252\n4561\n7354\n299\n6088\n1090\n5012\n5684\n3489\n5639\n4888\n1584\n1969\n4846\n2915\n6804\n2775\n7306\n6506\n9306\n5231\n7740\n4283\n953\n6725\n458\n8290\n1504\n1539\n8885\n138\n3764\n1256\n257\n335\n1011\n7060\n5986\n9323\n4740\n8994\n4140\n6807\n8254\n3963\n9297\n2102\n2964\n9207\n4910\n8709\n4411\n1672\n457\n5852\n8037\n4932\n3679\n8794\n2362\n8592\n495\n8432\n1608\n2155\n7411\n2881\n9244\n37\n6535\n8219\n4505\n8635\n1928\n8384\n2570\n8996\n7610\n2128\n8728\n6656\n8935\n6681\n2070\n176\n9062\n972\n514\n1796\n4039\n6838\n2462\n230\n569\n5521\n4637\n4939\n4420\n2863\n672\n4995\n3807\n447\n1656\n2005\n5113\n3297\n8858\n2118\n6309\n1926\n481\n1156\n1509\n1228\n1787\n5978\n8678\n3951\n2929\n4980\n5039\n4713\n7002\n151\n5536\n8148\n3823\n4709\n2299\n142\n7067\n2372\n3761\n9\n2265\n5747\n2764\n724\n2913\n3151\n4525\n6370\n4247\n9329\n5494\n3721\n629\n3621\n7371\n59\n1999\n6704\n3734\n2698\n4691\n6938\n9117\n8415\n6353\n6750\n9077\n2679\n7623\n2478\n7321\n6611\n4007\n2076\n5772\n6416\n2264\n8348\n2672\n6546\n754\n6934\n7908\n8546\n4404\n592\n4748\n6625\n2129\n7944\n2377\n6\n8929\n8275\n3515\n4524\n3660\n8710\n419\n6878\n170\n8313\n7460\n8753\n2917\n6891\n6663\n4918\n7129\n396\n7256\n3500\n631\n5585\n8343\n2695\n6168\n6292\n3176\n5092\n5160\n3701\n9021\n7221\n7825\n1216\n1438\n3471\n2318\n8923\n6223\n2182\n7621\n8514\n9010\n8987\n1252\n1972\n1872\n1715\n8205\n6463\n8138\n8989\n5661\n2890\n565\n2427\n8946\n1303\n3718\n6000\n3620\n1560\n5276\n8089\n9260\n1467\n6173\n7641\n7520\n5061\n4677\n5757\n4400\n2620\n2719\n8995\n2079\n6644\n1683\n8141\n7754\n5744\n2952\n7568\n654\n7457\n5368\n3310\n1510\n4440\n1513\n3072\n8034\n1456\n9164\n3163\n3035\n6111\n5042\n7161\n1401\n1084\n8000\n6672\n8531\n5404\n6550\n8379\n9141\n8681\n7752\n6394\n7011\n3739\n8253\n978\n4771\n6024\n4828\n7959\n1649\n1727\n7073\n8349\n6952\n661\n7283\n3159\n2590\n3496\n8741\n3969\n2956\n4565\n920\n1830\n8558\n1930\n6677\n6825\n8256\n7454\n7521\n4710\n1768\n3753\n6459\n5606\n5292\n1397\n240\n2733\n946\n6711\n3242\n2627\n4929\n5006\n3202\n132\n2295\n2746\n1293\n2124\n5405\n4065\n818\n7464\n1820\n4398\n1312\n6994\n6920\n261\n987\n6120\n3109\n331\n2986\n4338\n7774\n5122\n8396\n1364\n8969\n6712\n8161\n7083\n7595\n5940\n1566\n6419\n8634\n4432\n6047\n4749\n6076\n1161\n8217\n674\n8494\n3688\n2447\n4704\n969\n7477\n1160\n3243\n3173\n4979\n9288\n6860\n1662\n6171\n225\n5143\n313\n8327\n3275\n3385\n7626\n3103\n4401\n6794\n5600\n5043\n7664\n933\n6830\n4452\n3980\n1604\n5875\n6633\n4635\n5756\n3329\n1751\n8108\n4817\n1989\n1237\n1893\n2848\n9334\n51\n8875\n4981\n5417\n4134\n877\n6688\n3545\n4943\n5615\n2476\n1684\n3652\n7396\n1769\n1171\n6563\n3415\n3644\n340\n6630\n8284\n3256\n7240\n5371\n3405\n2108\n6360\n1734\n5612\n8638\n2343\n1103\n7803\n6809\n3055\n188\n8031\n3124\n3683\n4537\n988\n2297\n4893\n6499\n3396\n839\n4467\n5195\n4041\n6457\n4441\n6378\n6472\n6195\n4912\n6884\n5922\n7014\n1660\n38\n1595\n6752\n4554\n1292\n2709\n3800\n6057\n1980\n8775\n6587\n6392\n6263\n7214\n5219\n282\n309\n6685\n2253\n6311\n4092\n18\n7570\n5543\n4081\n2515\n6278\n8690\n5294\n6184\n5215\n9130\n6720\n250\n7250\n4983\n639\n3567\n7841\n2636\n4067\n8446\n5703\n8609\n2586\n7695\n1253\n6701\n7930\n6317\n5921\n7719\n8501\n7312\n4110\n6219\n4552\n5059\n4088\n7975\n9132\n6054\n692\n3412\n4079\n6754\n6950\n5281\n3028\n8321\n3877\n7614\n8939\n4188\n2223\n239\n4745\n6875\n7096\n5571\n4403\n2640\n5556\n1845\n6690\n1825\n4157\n314\n4682\n8825\n1003\n6206\n8093\n7215\n6465\n99\n8077\n6631\n4206\n2523\n366\n1208\n6043\n4640\n1457\n5475\n4985\n1351\n3090\n5625\n7307\n8466\n2003\n8854\n218\n1500\n4476\n2293\n1847\n5032\n2147\n866\n3710\n2552\n1749\n6692\n3926\n4112\n6458\n735\n9171\n60\n9304\n6726\n2630\n2882\n1178\n1151\n4922\n4662\n173\n7233\n1776\n6533\n4113\n2423\n2425\n4343\n5800\n970\n6372\n1009\n6607\n3068\n8435\n6423\n3126\n4813\n1709\n1201\n7104\n5620\n3932\n5701\n5724\n3366\n8050\n4984\n5023\n9203\n5079\n627\n290\n779\n5572\n5233\n1392\n4975\n8534\n8210\n2269\n1143\n2475\n2562\n905\n4546\n267\n3536\n8538\n449\n101\n7367\n2722\n4605\n7356\n6781\n8537\n8697\n6820\n8340\n8926\n3821\n2349\n2259\n6545\n8100\n8395\n2258\n2911\n5108\n3946\n1406\n8683\n8296\n5579\n2177\n8264\n1425\n3940\n957\n3647\n515\n5342\n8363\n2449\n3108\n1001\n2937\n3452\n5574\n4319\n9184\n8381\n945\n6876\n600\n5714\n4871\n8532\n1852\n8856\n392\n2018\n8878\n369\n5711\n9230\n5304\n7266\n1681\n7829\n2309\n4683\n8938\n2255\n6159\n3207\n4651\n2029\n4341\n5106\n5794\n9024\n4712\n2434\n7151\n7359\n6431\n1290\n5918\n8705\n3438\n5554\n8876\n7415\n6290\n5373\n3805\n2950\n2331\n6772\n8997\n6576\n2307\n8515\n4033\n3428\n6487\n6595\n45\n5792\n333\n762\n2383\n3388\n666\n2166\n460\n943\n364\n6980\n8223\n8221\n637\n6218\n4108\n5381\n4649\n5096\n1614\n8768\n5095\n3809\n5030\n984\n3538\n5120\n2498\n5222\n5613\n5486\n5119\n241\n5707\n9227\n544\n4109\n7771\n728\n3671\n9327\n1230\n9270\n1070\n8565\n4769\n7056\n5654\n7965\n1793\n5956\n7883\n1362\n5479\n8769\n8821\n8320\n1901\n1994\n2461\n5552\n389\n2839\n6467\n2762\n4763\n3499\n1487\n7599\n4488\n3241\n8272\n1131\n4496\n7006\n7265\n4897\n2747\n6618\n5291\n4563\n5146\n1939\n6369\n8548\n6163\n5526\n4068\n9030\n5349\n8433\n748\n1477\n4265\n9200\n3878\n462\n6846\n9040\n4806\n3519\n6798\n5464\n5179\n546\n6044\n8114\n7216\n6276\n1495\n494\n8146\n5434\n856\n8403\n8071\n3972\n5544\n3337\n6855\n1546\n2824\n1718\n6009\n2042\n251\n9076\n3330\n5004\n192\n4717\n3797\n1146\n394\n7814\n7699\n4659\n4689\n4156\n7903\n9054\n7332\n7811\n1119\n5531\n6782\n5210\n8412\n2633\n7924\n4624\n8314\n5666\n3240\n2310\n4262\n8160\n4553\n8196\n2661\n7213\n7455\n7399\n870\n6126\n1227\n1226\n781\n937\n6343\n2578\n2892\n4124\n2792\n5696\n6865\n6455\n8312\n5193\n6026\n5251\n3787\n4460\n4687\n7923\n1140\n9106\n796\n2482\n9170\n8695\n2749\n6734\n4825\n114\n8319\n827\n4175\n390\n7611\n7484\n1249\n7727\n955\n579\n3629\n8915\n2958\n885\n7227\n1424\n4810\n4604\n1535\n774\n7518\n5428\n1955\n8233\n2645\n2167\n6484\n3855\n1502\n4861\n2333\n2973\n4829\n1906\n3966\n476\n9023\n6960\n3483\n2748\n5891\n8174\n7702\n8948\n5324\n4396\n1605\n2823\n7348\n7347\n5933\n310\n9082\n916\n4255\n203\n4239\n5976\n6200\n6435\n4425\n787\n1121\n6034\n13\n39\n3104\n5961\n5507\n5785\n1463\n7339\n1575\n7801\n5445\n8283\n5951\n6995\n999\n5163\n6023\n3786\n6536\n5850\n3524\n3528\n4508\n6674\n2939\n8227\n4598\n7550\n8495\n8622\n1152\n4538\n4003\n1318\n739\n3296\n8202\n1552\n6204\n5236\n3576\n4699\n9238\n1879\n488\n2274\n433\n5587\n1678\n9282\n7914\n8552\n6445\n7971\n8331\n6880\n7476\n7282\n1570\n7271\n3827\n6489\n8091\n9287\n7351\n1765\n5286\n6921\n542\n1762\n8553\n4987\n894\n3622\n7855\n92\n3131\n4811\n3590\n6517\n4510\n733\n4954\n1360\n5669\n2842\n8107\n5646\n5968\n1618\n1827\n7709\n8521\n5807\n5321\n9239\n5501\n3745\n4437\n1586\n7273\n5265\n6605\n7917\n1607\n6074\n4668\n7061\n1580\n8694\n8461\n4573\n618\n9173\n5243\n435\n8770\n2421\n7450\n3870\n8308\n2605\n2934\n9240\n6887\n4512\n1198\n7585\n7691\n7738\n2843\n8423\n7929\n6971\n7854\n86\n9128\n4298\n622\n790\n9155\n6579\n2203\n7716\n1265\n8645\n3834\n1174\n7380\n623\n8936\n4306\n8082\n4312\n8661\n5753\n7243\n2768\n8155\n85\n4143\n3047\n8479\n7809\n2833\n5555\n7578\n1637\n1936\n8130\n5549\n8062\n7143\n5522\n8966\n5614\n8105\n8719\n7655\n7502\n8268\n5760\n6695\n5565\n7615\n9226\n4870\n4507\n3160\n4835\n1598\n2465\n4422\n5248\n7867\n1078\n5015\n6660\n1676\n5354\n6391\n5351\n7184\n6280\n5936\n6124\n1327\n2906\n269\n8292\n2466\n8809\n5167\n8142\n8204\n2713\n1910\n2930\n2494\n5592\n7384\n7726\n5727\n625\n1735\n5710\n5518\n2491\n1410\n4989\n5183\n8777\n6562\n4947\n3692\n6129\n384\n1097\n2084\n5209\n3723\n7272\n6895\n2459\n543\n8621\n5394\n6211\n2074\n1511\n2524\n7776\n5055\n7191\n6207\n7922\n281\n8436\n2918\n3141\n4800\n6323\n7631\n8903\n2716\n3735\n3012\n5301\n3975\n2800\n7963\n105\n1920\n7391\n4909\n1754\n4816\n5488\n5145\n5098\n5139\n5268\n9317\n8631\n4346\n7318\n136\n3993\n1220\n2151\n308\n7483\n7582\n3071\n1339\n3777\n8191\n5378\n7087\n1056\n7465\n5608\n6564\n512\n2754\n2687\n1596\n5376\n1512\n566\n6382\n7360\n1757\n8035\n2296\n4264\n3551\n1053\n4716\n1537\n8518\n254\n6253\n7132\n8557\n3490\n9267\n5473\n2412\n7539\n7136\n6670\n3974\n891\n1323\n5958\n1217\n2879\n9118\n1259\n2317\n7033\n2467\n6665\n6244\n2180\n2140\n7098\n5126\n6395\n4150\n547\n4120\n4307\n1725\n2737\n8549\n8195\n1245\n6286\n935\n1756\n1701\n1626\n7379\n3492\n3717\n5802\n2817\n1234\n1005\n4101\n21\n2576\n4650\n3381\n1030\n2844\n1641\n936\n2729\n6469\n8913\n8369\n5994\n341\n81\n4083\n1685\n5152\n3380\n8739\n6615\n3829\n164\n7927\n4779\n829\n4216\n8528\n3641\n4606\n2769\n6970\n1545\n8850\n4971\n5489\n2008\n4564\n8682\n7784\n5768\n9252\n901\n438\n3577\n2765\n5904\n664\n3348\n6298\n3602\n2502\n8617\n7684\n4293\n5166\n5805\n4126\n2451\n6906\n7234\n9243\n3778\n2940\n1087\n9053\n5026\n2504\n5283\n2820\n4242\n797\n3925\n1383\n8750\n7861\n1403\n6973\n7617\n968\n3065\n5395\n4347\n8144\n2688\n6527\n8597\n8673\n7327\n6331\n1422\n7115\n244\n7013\n2092\n54\n7970\n5742\n3464\n4823\n8588\n2938\n3060\n6406\n4149\n2375\n6616\n8803\n1555\n4369\n1380\n3011\n6144\n3367\n4990\n7370\n7131\n1995\n2602\n985\n8785\n8480\n9125\n1927\n3269\n3771\n1032\n7378\n6900\n5726\n2731\n2020\n4503\n3313\n6727\n8793\n2304\n523\n6036\n58\n7993\n5512\n5049\n2721\n8482\n673\n7937\n1168\n4472\n8247\n7287\n9017\n6421\n9190\n3584\n1819\n1792\n2810\n6033\n638\n6749\n7677\n981\n7160\n4726\n1886\n7845\n7911\n6975\n568\n7422\n4613\n4501\n2569\n4263\n3206\n4133\n2420\n3706\n8894\n2263\n5774\n4925\n9180\n8888\n2945\n2091\n1873\n6303\n729\n6728\n2156\n3267\n1860\n6597\n1374\n4930\n5253\n938\n580\n5825\n4839\n166\n8198\n6892\n8701\n74\n7094\n7284\n8954\n3156\n6140\n4279\n5594\n2229\n7535\n5466\n8413\n7105\n8192\n2632\n7638\n9308\n8530\n832\n4643\n2201\n3268\n4322\n6510\n2967\n262\n403\n7973\n1258\n8828\n4036\n5838\n9263\n8529\n2788\n4202\n237\n3838\n1291\n2305\n4056\n5628\n7281\n1430\n6476\n7935\n2850\n6041\n2013\n4016\n4576\n5312\n6827\n6321\n8669\n8439\n830\n1942\n1519\n2750\n6106\n6993\n6235\n5899\n7313\n5331\n4371\n7086\n4399\n8600\n2660\n5409\n3465\n5499\n6231\n5745\n1801\n5337\n4468\n1451\n4192\n1275\n8230\n2302\n1114\n4960\n8860\n3900\n6468\n5058\n1505\n8868\n5588\n3858\n1947\n2565\n1472\n8499\n243\n8442\n6583\n7085\n5374\n2250\n4291\n4426\n492\n2311\n8305\n3662\n5338\n8780\n7488\n3890\n5005\n2442\n4680\n7358\n9116\n4397\n5999\n587\n7902\n83\n3566\n2134\n8942\n4767\n6601\n2456\n1745\n5736\n5254\n8017\n4015\n7690\n3798\n8947\n1067\n2116\n7945\n590\n2547\n2535\n64\n2053\n5359\n2493\n6669\n4351\n6412\n7473\n6147\n7175\n6983\n5196\n745\n2657\n3497\n697\n3161\n7528\n2239\n5991\n3201\n7681\n2440\n5189\n2959\n2044\n8917\n2046\n6313\n6333\n5318\n2763\n4301\n2555\n2213\n2933\n4121\n1340\n3903\n4392\n7889\n5323\n1055\n707\n3857\n518\n6078\n5134\n6645\n9138\n1592\n680\n4446\n7943\n3461\n3887\n5601\n2321\n6621\n558\n4914\n913\n5637\n6453\n8511\n4531\n1218\n5508\n2603\n6802\n8426\n8297\n2947\n5971\n6552\n5262\n5935\n782\n7435\n8357\n6139\n1136\n1473\n5008\n3585\n3627\n2914\n5356\n2997\n2347\n881\n5652\n4849\n8808\n8351\n4017\n2010\n6836\n7616\n4391\n3630\n3712\n6099\n2969\n5238\n4333\n2301\n4406\n1236\n1050\n1864\n1104\n8408\n8251\n8795\n5879\n3365\n7481\n8206\n2452\n1767\n8859\n124\n3948\n4444\n8962\n4438\n5003\n1740\n8428\n3105\n5117\n1095\n1480\n8755\n7881\n3097\n4877\n155\n1917\n2455\n6042\n337\n6724\n6045\n8483\n7135\n2242\n4566\n1679\n834\n1746\n795\n3548\n2314\n2036\n4046\n9129\n6979\n7084\n5091\n2413\n8170\n5775\n1817\n529\n7220\n813\n2916\n5130\n8972\n126\n1243\n2370\n4831\n9122\n3010\n5104\n2613\n6761\n7482\n909\n2146\n4595\n5340\n3512\n6283\n2346\n653\n6121\n2615\n7421\n1869\n1002\n8834\n2991\n8992\n632\n1093\n4543\n645\n2352\n4115\n373\n1483\n6966\n8598\n3896\n3434\n5987\n8318\n1815\n1223\n1548\n6885\n5073\n6330\n2573\n1369\n4095\n1431\n2185\n5766\n1301\n7258\n8048\n7598\n2847\n1996\n2378\n8561\n743\n6381\n271\n1956\n7439\n7596\n7134\n6636\n5804\n1858\n6214\n4730\n8536\n1203\n3118\n9202\n1875\n5885\n8975\n168\n5898\n4014\n4186\n3346\n3041\n5558\n9296\n8157\n4339\n3234\n1738\n2604\n6803\n5387\n5590\n125\n2173\n8012\n8005\n4858\n3069\n651\n372\n378\n8366\n6299\n1449\n7793\n8541\n3235\n8043\n3086\n3983\n6949\n4690\n2176\n6494\n7637\n8406\n3856\n7408\n350\n7021\n8224\n7044\n7662\n6697\n7679\n169\n528\n7029\n2790\n7138\n7432\n7602\n8333\n1582\n1378\n519\n482\n9279\n8015\n6592\n4514\n3542\n2612\n628\n5053\n6699\n6227\n2094\n1621\n847\n3598\n2728\n8490\n7276\n6620\n8345\n9216\n4278\n4059\n9058\n5063\n5816\n4173\n8134\n1997\n3182\n3224\n8129\n5109\n4494\n189\n7640\n8243\n180\n2963\n1123\n5593\n3263\n4185\n7140\n8990\n6320\n9275\n4601\n4854\n5907\n1135\n8083\n5964\n7788\n1992\n8069\n9174\n6160\n35\n8572\n2865\n46\n3952\n6418\n2510\n5783\n20\n3816\n2715\n3930\n2548\n5204\n4122\n4103\n708\n7756\n3825\n777\n3550\n8502\n3929\n5440\n6751\n7764\n4070\n7331\n3743\n9131\n9206\n3828\n23\n41\n4197\n234\n5723\n7622\n8832\n4626\n2169\n5599\n2976\n5266\n1967\n1150\n5334\n90\n822\n2538\n3169\n6771\n7442\n498\n4967\n5580\n7581\n7680\n4728\n1115\n4040\n1064\n3106\n6266\n4415\n9294\n5597\n7059\n197\n7218\n6948\n5690\n4234\n1653\n4485\n4019\n3370\n919\n1330\n6085\n2078\n3768\n5427\n4545\n2435\n8862\n3633\n8145\n5221\n1388\n5913\n8140\n7471\n7156\n6989\n1190\n6832\n2830\n4387\n3454\n7469\n2910\n4526\n5187\n2410\n9223\n6247\n6912\n4681\n1300\n7407\n8612\n6523\n3616\n6894\n7253\n4515\n5874\n5448\n7137\n7957\n1130\n3092\n7054\n3516\n5797\n1000\n2727\n4336\n9090\n6403\n7255\n8919\n6522\n6760\n8898\n4803\n1938\n374\n8686\n9150\n3985\n7045\n3475\n6065\n7991\n1409\n7851\n6671\n6090\n5826\n7857\n1155\n8964\n1117\n7072\n6064\n2497\n4899\n2397\n3189\n2369\n15\n5027\n5754\n8950\n5617\n8391\n914\n6264\n279\n6174\n5184\n3733\n7392\n5278\n2924\n567\n7994\n352\n8084\n2148\n2723\n3359\n70\n1870\n7708\n220\n3994\n9013\n3191\n9220\n4155\n5717\n1110\n2198\n9179\n785\n5325\n4770\n4250\n52\n4634\n5072\n9037\n601\n8036\n7996\n2483\n7232\n8675\n8836\n1279\n5346\n7676\n6104\n1515\n4603\n5607\n7894\n5144\n2628\n68\n440\n3586\n3083\n4830\n4378\n7762\n1134\n4542\n7850\n6296\n2866\n4011\n8751\n4776\n7954\n7102\n5697\n2032\n5729\n5017\n6962\n2051\n1092\n764\n9019\n2759\n8581\n1484\n8618\n912\n2382\n4892\n8447\n8176\n5491\n5695\n5504\n1060\n7064\n709\n578\n4320\n2379\n7649\n8416\n1613\n5344\n7512\n7865\n3037\n6689\n6557\n1569\n5955\n3707\n9168\n8566\n1775\n5950\n6943\n7804\n434\n6179\n9300\n1142\n7947\n6456\n6291\n5789\n6538\n9134\n3049\n5075\n5399\n5161\n1623\n948\n6302\n6063\n7516\n117\n506\n3302\n7146\n355\n3854\n1081\n2827\n1496\n2574\n6167\n3183\n4287\n5482\n1722\n7319\n7277\n3860\n3443\n3298\n8364\n3826\n7254\n2360\n5093\n7039\n6325\n4230\n2567\n6241\n4443\n559\n2625\n4228\n8967\n6405\n1674\n3936\n4475\n8556\n8585\n896\n3713\n6259\n4297\n6718\n2392\n2279\n4927\n1283\n2374\n2860\n7665\n663\n596\n6293\n6805\n2811\n7383\n8306\n8330\n3153\n2153\n2618\n2441\n3615\n8092\n552\n5285\n5255\n8124\n9247\n5530\n8175\n6242\n5660\n3433\n1610\n1832\n3892\n3862\n640\n2127\n2474\n4196\n3495\n7217\n5206\n4836\n7759\n4376\n800\n4227\n3699\n9055\n5665\n6826\n7463\n9065\n4720\n5069\n3245\n3453\n3358\n6532\n5970\n7921\n4087\n1547\n3424\n8040\n7995\n6787\n9069\n8716\n2561\n8199\n1479\n2767\n7818\n7145\n604\n7597\n4896\n9281\n4666\n185\n8171\n7978\n3059\n9196\n9221\n2135\n1800\n2974\n1529\n5948\n446\n4436\n8672\n3508\n6208\n5673\n6998\n5203\n278\n7041\n9110\n5853\n8121\n1764\n3046\n2400\n6575\n4738\n2228\n7761\n9322\n7019\n6931\n6383\n6762\n283\n3935\n2534\n7717\n6785\n471\n8214\n231\n4241\n5310\n3844\n5746\n2011\n7209\n336\n6433\n756\n9167\n6741\n3345\n7685\n4018\n6682\n9147\n4790\n5836\n5906\n8747\n676\n3964\n6362\n3510\n7510\n2308\n1806\n5917\n1189\n4012\n3387\n1331\n5319\n5423\n8900\n147\n3780\n1696\n9111\n6783\n6497\n4104\n1898\n3987\n260\n4616\n2121\n9283\n1400\n2437\n4670\n2735\n1163\n2096\n6521\n1423\n4523\n2243\n6667\n6990\n3944\n6915\n6763\n5611\n404\n2691\n1015\n7092\n7562\n8624\n2291\n4193\n5934\n5503\n2326\n4408\n2960\n842\n1963\n3354\n5568\n9050\n3806\n439\n9154\n6055\n6451\n2190\n7633\n688\n4354\n8890\n2813\n2872\n8102\n8317\n6609\n1497\n8389\n6449\n1682\n3594\n5103\n5812\n863\n268\n3054\n8079\n2260\n2027\n3091\n7687\n6703\n3557\n2019\n8427\n2799\n8182\n6641\n3168\n2284\n1934\n4865\n1077\n6507\n1658\n3811\n1774\n7897\n2238\n2943\n191\n3869\n3246\n4057\n3188\n414\n8072\n7838\n1382\n4962\n6010\n5363\n4042\n1983\n4077\n7429\n1833\n3583\n4044\n1109\n1295\n386\n5481\n3927\n311\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/got10k_val_split.txt",
    "content": "1349\n5651\n5878\n562\n2202\n8904\n765\n1501\n8654\n2975\n2689\n3680\n5180\n1900\n7707\n4723\n8912\n4029\n3579\n869\n2888\n8657\n6599\n741\n4288\n2244\n7357\n5704\n8791\n208\n8587\n7969\n4805\n8526\n4887\n8871\n7468\n3343\n886\n7794\n5764\n2646\n6454\n6101\n7885\n7744\n1297\n4119\n4856\n122\n2286\n2925\n5131\n3570\n5843\n3027\n5320\n5626\n540\n1862\n5401\n7335\n699\n7760\n9198\n3259\n7345\n8698\n1280\n6479\n3100\n3988\n1322\n5737\n1268\n3257\n6791\n3326\n4815\n7644\n1082\n2826\n6821\n8984\n2553\n5290\n5909\n4762\n9242\n8096\n8066\n4325\n6666\n7193\n7114\n8060\n2376\n7872\n6788\n3544\n5460\n3507\n2509\n6626\n3429\n5542\n4220\n2968\n5271\n4249\n3863\n1868\n5581\n2012\n6270\n8038\n4050\n121\n2845\n1565\n1998\n2275\n5524\n6068\n7624\n4913\n9277\n1506\n803\n8848\n5925\n2450\n2072\n8190\n4753\n9162\n1923\n825\n7303\n9028\n2088\n8516\n1556\n5937\n7847\n2367\n7549\n1049\n1521\n4739\n3931\n8958\n4130\n7877\n7876\n897\n5985\n7346\n7537\n111\n3700\n1126\n7896\n1288\n3419\n4673\n1051\n5720\n1068\n3458\n146\n291\n6256\n5514\n2857\n4580\n6239\n6525\n8717\n391\n4841\n6676\n4360\n1453\n4211\n73\n1675\n1987\n4025\n1321\n662\n8265\n6424\n2758\n7765\n7656\n3209\n7497\n7600\n9039\n7697\n5177\n2983\n5622\n9295\n1200\n3284\n964\n2024\n1269\n4551\n8088\n5659\n2212\n5199\n5551\n8607\n5573\n2247\n5200\n6341\n7951\n8429\n7720\n5919\n1273\n3529\n6707\n9176\n7552\n3255\n5649\n6110\n9235\n1137\n9272\n775\n788\n5786\n5186\n6746\n2667\n9145\n7630\n3953\n1828\n8827\n6471\n4702\n7815\n467\n6387\n3195\n6238\n6508\n2373\n5983\n4931\n2948\n921\n2438\n517\n3949\n2137\n3216\n5683\n3695\n1719\n4837\n9159\n6981\n860\n7410\n5497\n1770\n5557\n8810\n5194\n4857\n9100\n6329\n2609\n1925\n3686\n9041\n4924\n349\n9187\n3393\n3661\n7120\n6858\n4587\n3831\n3130\n5396\n5060\n6486\n3937\n8023\n824\n5398\n1354\n8861\n5534\n7292\n4389\n6029\n6226\n3505\n4326\n7445\n581\n6089\n3450\n7324\n6516\n6775\n1207\n4575\n5135\n9265\n3918\n9020\n3473\n3898\n7812\n6571\n6757\n6639\n2557\n1206\n6148\n7325\n8790\n4938\n7026\n4383\n8041\n1250\n7267\n1952\n7561\n8811\n4941\n8373\n4848\n6602\n8355\n8104\n5214\n6654\n4330\n995\n3181\n3422\n456\n1782\n3408\n6530\n719\n7587\n5910\n3058\n740\n2009\n4207\n5336\n2798\n9229\n8668\n2473\n4221\n1493\n3281\n171\n9157\n9139\n7766\n6220\n9127\n3324\n5308\n3708\n2431\n8080\n2093\n2585\n406\n7040\n5064\n5247\n4758\n6512\n2953\n4257\n4935\n2705\n2572\n3436\n8513\n5884\n1385\n4852\n2637\n7091\n2761\n6007\n8332\n6694\n2422\n4917\n2186\n6898\n1390\n6965\n3132\n7698\n475\n2002\n2692\n5024\n7365\n7373\n4091\n1731\n947\n3962\n8692\n1788\n8734\n8656\n6862\n6856\n1950\n1914\n5658\n3635\n1620\n4780\n2580\n1454\n2786\n687\n7238\n3648\n6452\n1197\n3190\n5900\n9043\n4958\n1935\n1821\n1187\n1153\n7737\n7223\n3820\n7169\n7350\n5674\n6254\n3025\n6680\n1690\n2899\n3893\n1577\n5728\n9189\n5077\n34\n3560\n2179\n5462\n1402\n3654\n1376\n7936\n4246\n5506\n1179\n5647\n4686\n8644\n1352\n2855\n6079\n2254\n2668\n2287\n2457\n3418\n7264\n677\n3074\n2655\n1042\n2210\n4504\n7089\n8309\n4209\n4280\n3258\n2977\n84\n4705\n1244\n3511\n6355\n8813\n3228\n9266\n1122\n613\n732\n5202\n8425\n2638\n6470\n2886\n3541\n8132\n2063\n8201\n5129\n2818\n7949\n6936\n8090\n4465\n7295\n5239\n7009\n9271\n8563\n2832\n952\n8136\n6776\n3565\n5188\n7288\n6999\n285\n5487\n7763\n7608\n8584\n2071\n7868\n2804\n3655\n7048\n6847\n3276\n4082\n4272\n3910\n3709\n1574\n4559\n7580\n7081\n5014\n7769\n8183\n6386\n7574\n356\n4937\n2487\n9315\n7572\n3040\n671\n2682\n8626\n3868\n8623\n387\n8679\n4074\n1481\n3527\n3595\n4754\n2453\n1579\n4638\n9123\n1829\n316\n3009\n3691\n763\n4875\n3572\n4642\n3128\n4273\n2777\n6032\n4793\n233\n7147\n996\n3199\n8835\n3517\n7210\n6125\n6037\n3684\n8589\n3915\n3095\n8310\n3180\n7043\n4458\n2889\n57\n4483\n7667\n8375\n1434\n7493\n6986\n4733\n8471\n5827\n2111\n1313\n7986\n3075\n2614\n7547\n4977\n8527\n3212\n7300\n5842\n5244\n3291\n597\n1007\n2030\n227\n3830\n5540\n247\n5643\n9333\n1958\n3096\n1371\n5220\n7926\n2927\n1516\n7130\n193\n1522\n6165\n6923\n3794\n4223\n5535\n2472\n8630\n3971\n9101\n2946\n222\n4609\n7291\n8542\n6501\n7548\n4557\n6274\n1010\n5226\n7309\n1317\n9056\n6275\n1624\n1099\n4191\n4030\n7270\n5392\n2316\n3819\n1670\n8154\n8045\n4807\n8864\n2391\n5908\n8338\n8218\n6400\n9193\n3165\n843\n6613\n6941\n4380\n9332\n5629\n7557\n4321\n3702\n681\n734\n1159\n4665\n5959\n1697\n5509\n8774\n7389\n3832\n3751\n8637\n3079\n1680\n6841\n703\n684\n8293\n3682\n5733\n4818\n3231\n3078\n5562\n9001\n3889\n7024\n2519\n1713\n3287\n219\n6021\n8776\n2289\n7212\n4832\n4684\n4617\n4237\n2649\n8185\n6326\n3568\n551\n1426\n4181\n8869\n312\n2905\n4165\n8248\n2558\n900\n1044\n8613\n7743\n5437\n7604\n3122\n5708\n8649\n2878\n4695\n4491\n1929\n7533\n5223\n7711\n915\n1844\n5751\n3008\n8055\n961\n6142\n4636\n61\n198\n2271\n5698\n4596\n4500\n5709\n5819\n7972\n2992\n1643\n1048\n6281\n8886\n360\n4198\n1841\n6814\n3960\n2606\n7001\n5888\n450\n7133\n7015\n7034\n5153\n8920\n5066\n469\n1302\n8816\n463\n8651\n5869\n8193\n6582\n5578\n1231\n9274\n7260\n7751\n8052\n6799\n2089\n2342\n8451\n3260\n5550\n7795\n2288\n1205\n40\n496\n8367\n7836\n5973\n3908\n5242\n5062\n2706\n997\n6514\n5419\n9201\n1965\n6062\n3050\n5302\n8735\n358\n2398\n7470\n1644\n8179\n7047\n1549\n5414\n2539\n7381\n589\n8166\n8505\n6035\n3956\n4540\n6721\n8074\n1062\n2384\n2531\n7159\n3502\n3902\n4584\n2554\n264\n8720\n2849\n4916\n5218\n7202\n883\n4560\n1677\n4317\n7863\n4509\n6577\n2903\n1452\n1416\n5369\n473\n6233\n6359\n5992\n4934\n8059\n6834\n4907\n3320\n8267\n8280\n2066\n2402\n1485\n3772\n3732\n4764\n9126\n3575\n5564\n4768\n5641\n1884\n2330\n1804\n344\n698\n3089\n1532\n4454\n761\n7289\n8094\n3432\n1747\n6811\n8722\n8826\n4646\n3222\n8614\n2901\n7003\n652\n8663\n4266\n413\n810\n75\n3334\n4905\n6438\n4756\n5137\n6528\n6534\n6988\n6177\n8533\n889\n5384\n7201\n5132\n7802\n6864\n3973\n873\n4840\n1482\n8376\n3769\n5858\n6675\n4286\n2593\n5863\n4353\n7817\n7540\n4999\n4838\n2303\n6002\n7913\n1508\n5317\n7755\n2784\n4964\n3431\n6209\n3755\n6022\n6399\n6232\n3954\n455\n5416\n6448\n1558\n7591\n245\n140\n9210\n6585\n4084\n967\n7798\n6795\n7095\n6733\n3861\n9264\n361\n1045\n755\n8042\n7074\n7778\n6415\n4724\n6450\n2049\n1563\n1307\n3485\n1790\n7869\n3282\n6907\n3920\n2868\n5801\n5632\n1079\n5009\n3955\n7517\n5128\n3417\n3019\n2725\n1784\n2312\n2753\n6976\n342\n8266\n1849\n2273\n5037\n7880\n3793\n7401\n5412\n8279\n1257\n3670\n9049\n3266\n8955\n6519\n8916\n2858\n694\n5650\n1019\n4669\n1785\n3533\n5877\n2704\n8603\n3726\n6668\n497\n1085\n6815\n6157\n6646\n6964\n186\n8097\n5645\n8481\n8215\n3775\n2542\n7514\n5699\n4072\n3518\n5767\n3239\n3740\n1404\n8981\n4086\n6397\n6984\n4204\n6899\n682\n6589\n3317\n2944\n3456\n4340\n7424\n9208\n6504\n4409\n1\n145\n1882\n4620\n2634\n4992\n5453\n4481\n3377\n266\n7875\n530\n1235\n7605\n504\n1771\n8489\n345\n7353\n7797\n7174\n5914\n2871\n5721\n6067\n3582\n7653\n5467\n6234\n691\n8758\n2122\n1213\n2908\n1492\n1437\n2187\n1266\n2395\n7278\n8491\n5256\n1554\n8163\n5966\n7128\n7904\n1691\n6272\n1264\n3996\n1706\n1334\n1316\n6478\n6935\n1518\n6700\n8703\n8744\n8152\n8778\n5367\n4218\n9007\n6312\n606\n7565\n5293\n2891\n675\n2125\n2120\n826\n7008\n5705\n7748\n8010\n1498\n5330\n5472\n2215\n7627\n3016\n6588\n1850\n4128\n8569\n6987\n7566\n148\n8151\n8789\n7907\n8596\n715\n6018\n9060\n3872\n1750\n5889\n4047\n5960\n3120\n3449\n1421\n1102\n3333\n9197\n8796\n8123\n8007\n2028\n8404\n1945\n1985\n8109\n5380\n8438\n3504\n6739\n4180\n5835\n4243\n25\n4002\n1976\n3482\n8392\n158\n5181\n4885\n8985\n11\n6872\n6425\n5926\n7062\n5083\n8394\n4259\n5844\n1990\n3942\n5532\n2220\n28\n5957\n149\n6748\n1663\n3559\n7647\n2566\n1359\n8787\n5259\n7010\n554\n8231\n4229\n6005\n8172\n8125\n1350\n3571\n9051\n1973\n1386\n1781\n5788\n159\n7007\n3220\n1846\n3093\n4445\n2056\n8370\n3211\n1113\n4384\n2231\n273\n4276\n642\n7663\n5311\n265\n226\n9012\n7879\n118\n7109\n7251\n1760\n8667\n2876\n7162\n3552\n6901\n6779\n5021\n6524\n4957\n3114\n4544\n441\n1848\n2136\n2458\n8662\n1127\n5541\n3026\n1080\n6780\n2224\n8259\n1073\n9000\n7244\n7977\n500\n4435\n7376\n7979\n1435\n9291\n7704\n3791\n3521\n210\n7388\n1039\n6269\n4052\n8570\n3285\n564\n8039\n3546\n6203\n1183\n6107\n4147\n6216\n2234\n7185\n3192\n7155\n2001\n7777\n876\n944\n908\n7791\n5465\n6784\n65\n9172\n5675\n7075\n3886\n7891\n2978\n1008\n5630\n591\n5067\n1139\n577\n9015\n574\n8137\n7786\n5765\n4900\n4090\n7842\n5741\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/got10k_vot_exclude.txt",
    "content": "GOT-10k_Train_000004\nGOT-10k_Train_000013\nGOT-10k_Train_000015\nGOT-10k_Train_000020\nGOT-10k_Train_000024\nGOT-10k_Train_000034\nGOT-10k_Train_000038\nGOT-10k_Train_000048\nGOT-10k_Train_000051\nGOT-10k_Train_000059\nGOT-10k_Train_000077\nGOT-10k_Train_000081\nGOT-10k_Train_000089\nGOT-10k_Train_000093\nGOT-10k_Train_000094\nGOT-10k_Train_000096\nGOT-10k_Train_000104\nGOT-10k_Train_000107\nGOT-10k_Train_000108\nGOT-10k_Train_000120\nGOT-10k_Train_000132\nGOT-10k_Train_000170\nGOT-10k_Train_000186\nGOT-10k_Train_000212\nGOT-10k_Train_000213\nGOT-10k_Train_000222\nGOT-10k_Train_000223\nGOT-10k_Train_000240\nGOT-10k_Train_000246\nGOT-10k_Train_000249\nGOT-10k_Train_000266\nGOT-10k_Train_000268\nGOT-10k_Train_000287\nGOT-10k_Train_000293\nGOT-10k_Train_000305\nGOT-10k_Train_000316\nGOT-10k_Train_000319\nGOT-10k_Train_000322\nGOT-10k_Train_000331\nGOT-10k_Train_000334\nGOT-10k_Train_000354\nGOT-10k_Train_000361\nGOT-10k_Train_000368\nGOT-10k_Train_000382\nGOT-10k_Train_000401\nGOT-10k_Train_000417\nGOT-10k_Train_000448\nGOT-10k_Train_000454\nGOT-10k_Train_000458\nGOT-10k_Train_000466\nGOT-10k_Train_000475\nGOT-10k_Train_000484\nGOT-10k_Train_000488\nGOT-10k_Train_000501\nGOT-10k_Train_000510\nGOT-10k_Train_000512\nGOT-10k_Train_000519\nGOT-10k_Train_000539\nGOT-10k_Train_000544\nGOT-10k_Train_000555\nGOT-10k_Train_000564\nGOT-10k_Train_000568\nGOT-10k_Train_000583\nGOT-10k_Train_000587\nGOT-10k_Train_000593\nGOT-10k_Train_000621\nGOT-10k_Train_000624\nGOT-10k_Train_000625\nGOT-10k_Train_000638\nGOT-10k_Train_000648\nGOT-10k_Train_000654\nGOT-10k_Train_000669\nGOT-10k_Train_000701\nGOT-10k_Train_000709\nGOT-10k_Train_000712\nGOT-10k_Train_000731\nGOT-10k_Train_000734\nGOT-10k_Train_000737\nGOT-10k_Train_000744\nGOT-10k_Train_000746\nGOT-10k_Train_000748\nGOT-10k_Train_000762\nGOT-10k_Train_000764\nGOT-10k_Train_000765\nGOT-10k_Train_000766\nGOT-10k_Train_000767\nGOT-10k_Train_000775\nGOT-10k_Train_000783\nGOT-10k_Train_000790\nGOT-10k_Train_000829\nGOT-10k_Train_000857\nGOT-10k_Train_000859\nGOT-10k_Train_000867\nGOT-10k_Train_000872\nGOT-10k_Train_000880\nGOT-10k_Train_000884\nGOT-10k_Train_000909\nGOT-10k_Train_000915\nGOT-10k_Train_000922\nGOT-10k_Train_000928\nGOT-10k_Train_000933\nGOT-10k_Train_000941\nGOT-10k_Train_000961\nGOT-10k_Train_000966\nGOT-10k_Train_000968\nGOT-10k_Train_000971\nGOT-10k_Train_000972\nGOT-10k_Train_000995\nGOT-10k_Train_001003\nGOT-10k_Train_001010\nGOT-10k_Train_001011\nGOT-10k_Train_001019\nGOT-10k_Train_001021\nGOT-10k_Train_001035\nGOT-10k_Train_001039\nGOT-10k_Train_001047\nGOT-10k_Train_001057\nGOT-10k_Train_001069\nGOT-10k_Train_001077\nGOT-10k_Train_001079\nGOT-10k_Train_001085\nGOT-10k_Train_001088\nGOT-10k_Train_001091\nGOT-10k_Train_001104\nGOT-10k_Train_001112\nGOT-10k_Train_001113\nGOT-10k_Train_001124\nGOT-10k_Train_001128\nGOT-10k_Train_001143\nGOT-10k_Train_001145\nGOT-10k_Train_001146\nGOT-10k_Train_001148\nGOT-10k_Train_001150\nGOT-10k_Train_001154\nGOT-10k_Train_001156\nGOT-10k_Train_001157\nGOT-10k_Train_001163\nGOT-10k_Train_001181\nGOT-10k_Train_001184\nGOT-10k_Train_001189\nGOT-10k_Train_001200\nGOT-10k_Train_001225\nGOT-10k_Train_001264\nGOT-10k_Train_001288\nGOT-10k_Train_001296\nGOT-10k_Train_001298\nGOT-10k_Train_001299\nGOT-10k_Train_001314\nGOT-10k_Train_001319\nGOT-10k_Train_001329\nGOT-10k_Train_001331\nGOT-10k_Train_001340\nGOT-10k_Train_001374\nGOT-10k_Train_001384\nGOT-10k_Train_001394\nGOT-10k_Train_001407\nGOT-10k_Train_001415\nGOT-10k_Train_001430\nGOT-10k_Train_001433\nGOT-10k_Train_001453\nGOT-10k_Train_001457\nGOT-10k_Train_001471\nGOT-10k_Train_001473\nGOT-10k_Train_001480\nGOT-10k_Train_001484\nGOT-10k_Train_001489\nGOT-10k_Train_001514\nGOT-10k_Train_001537\nGOT-10k_Train_001544\nGOT-10k_Train_001545\nGOT-10k_Train_001551\nGOT-10k_Train_001558\nGOT-10k_Train_001560\nGOT-10k_Train_001562\nGOT-10k_Train_001563\nGOT-10k_Train_001570\nGOT-10k_Train_001576\nGOT-10k_Train_001604\nGOT-10k_Train_001615\nGOT-10k_Train_001617\nGOT-10k_Train_001618\nGOT-10k_Train_001619\nGOT-10k_Train_001624\nGOT-10k_Train_001650\nGOT-10k_Train_001651\nGOT-10k_Train_001663\nGOT-10k_Train_001673\nGOT-10k_Train_001685\nGOT-10k_Train_001692\nGOT-10k_Train_001700\nGOT-10k_Train_001722\nGOT-10k_Train_001731\nGOT-10k_Train_001732\nGOT-10k_Train_001738\nGOT-10k_Train_001740\nGOT-10k_Train_001742\nGOT-10k_Train_001747\nGOT-10k_Train_001759\nGOT-10k_Train_001769\nGOT-10k_Train_001781\nGOT-10k_Train_001791\nGOT-10k_Train_001794\nGOT-10k_Train_001795\nGOT-10k_Train_001818\nGOT-10k_Train_001833\nGOT-10k_Train_001836\nGOT-10k_Train_001841\nGOT-10k_Train_001852\nGOT-10k_Train_001863\nGOT-10k_Train_001865\nGOT-10k_Train_001878\nGOT-10k_Train_001898\nGOT-10k_Train_001919\nGOT-10k_Train_001923\nGOT-10k_Train_001929\nGOT-10k_Train_001935\nGOT-10k_Train_001938\nGOT-10k_Train_001942\nGOT-10k_Train_001955\nGOT-10k_Train_001964\nGOT-10k_Train_001966\nGOT-10k_Train_001982\nGOT-10k_Train_002005\nGOT-10k_Train_002009\nGOT-10k_Train_002035\nGOT-10k_Train_002068\nGOT-10k_Train_002073\nGOT-10k_Train_002076\nGOT-10k_Train_002084\nGOT-10k_Train_002112\nGOT-10k_Train_002115\nGOT-10k_Train_002116\nGOT-10k_Train_002123\nGOT-10k_Train_002125\nGOT-10k_Train_002129\nGOT-10k_Train_002139\nGOT-10k_Train_002146\nGOT-10k_Train_002166\nGOT-10k_Train_002168\nGOT-10k_Train_002176\nGOT-10k_Train_002184\nGOT-10k_Train_002190\nGOT-10k_Train_002192\nGOT-10k_Train_002211\nGOT-10k_Train_002216\nGOT-10k_Train_002233\nGOT-10k_Train_002240\nGOT-10k_Train_002247\nGOT-10k_Train_002250\nGOT-10k_Train_002252\nGOT-10k_Train_002253\nGOT-10k_Train_002261\nGOT-10k_Train_002274\nGOT-10k_Train_002276\nGOT-10k_Train_002292\nGOT-10k_Train_002302\nGOT-10k_Train_002304\nGOT-10k_Train_002305\nGOT-10k_Train_002320\nGOT-10k_Train_002345\nGOT-10k_Train_002355\nGOT-10k_Train_002359\nGOT-10k_Train_002363\nGOT-10k_Train_002374\nGOT-10k_Train_002376\nGOT-10k_Train_002389\nGOT-10k_Train_002393\nGOT-10k_Train_002400\nGOT-10k_Train_002408\nGOT-10k_Train_002418\nGOT-10k_Train_002437\nGOT-10k_Train_002440\nGOT-10k_Train_002442\nGOT-10k_Train_002454\nGOT-10k_Train_002456\nGOT-10k_Train_002465\nGOT-10k_Train_002466\nGOT-10k_Train_002474\nGOT-10k_Train_002479\nGOT-10k_Train_002484\nGOT-10k_Train_002511\nGOT-10k_Train_002514\nGOT-10k_Train_002517\nGOT-10k_Train_002523\nGOT-10k_Train_002527\nGOT-10k_Train_002534\nGOT-10k_Train_002555\nGOT-10k_Train_002587\nGOT-10k_Train_002589\nGOT-10k_Train_002612\nGOT-10k_Train_002627\nGOT-10k_Train_002639\nGOT-10k_Train_002652\nGOT-10k_Train_002693\nGOT-10k_Train_002699\nGOT-10k_Train_002716\nGOT-10k_Train_002725\nGOT-10k_Train_002727\nGOT-10k_Train_002730\nGOT-10k_Train_002755\nGOT-10k_Train_002756\nGOT-10k_Train_002760\nGOT-10k_Train_002763\nGOT-10k_Train_002837\nGOT-10k_Train_002841\nGOT-10k_Train_002856\nGOT-10k_Train_002862\nGOT-10k_Train_002863\nGOT-10k_Train_002866\nGOT-10k_Train_002877\nGOT-10k_Train_002884\nGOT-10k_Train_002886\nGOT-10k_Train_002887\nGOT-10k_Train_002907\nGOT-10k_Train_002908\nGOT-10k_Train_002909\nGOT-10k_Train_002914\nGOT-10k_Train_002920\nGOT-10k_Train_002922\nGOT-10k_Train_002936\nGOT-10k_Train_002940\nGOT-10k_Train_002944\nGOT-10k_Train_002953\nGOT-10k_Train_002961\nGOT-10k_Train_002964\nGOT-10k_Train_002996\nGOT-10k_Train_003003\nGOT-10k_Train_003004\nGOT-10k_Train_003007\nGOT-10k_Train_003012\nGOT-10k_Train_003027\nGOT-10k_Train_003028\nGOT-10k_Train_003033\nGOT-10k_Train_003034\nGOT-10k_Train_003036\nGOT-10k_Train_003044\nGOT-10k_Train_003056\nGOT-10k_Train_003069\nGOT-10k_Train_003078\nGOT-10k_Train_003079\nGOT-10k_Train_003095\nGOT-10k_Train_003096\nGOT-10k_Train_003107\nGOT-10k_Train_003108\nGOT-10k_Train_003127\nGOT-10k_Train_003128\nGOT-10k_Train_003129\nGOT-10k_Train_003132\nGOT-10k_Train_003146\nGOT-10k_Train_003155\nGOT-10k_Train_003173\nGOT-10k_Train_003208\nGOT-10k_Train_003239\nGOT-10k_Train_003245\nGOT-10k_Train_003246\nGOT-10k_Train_003262\nGOT-10k_Train_003275\nGOT-10k_Train_003283\nGOT-10k_Train_003296\nGOT-10k_Train_003308\nGOT-10k_Train_003310\nGOT-10k_Train_003313\nGOT-10k_Train_003317\nGOT-10k_Train_003318\nGOT-10k_Train_003354\nGOT-10k_Train_003379\nGOT-10k_Train_003384\nGOT-10k_Train_003396\nGOT-10k_Train_003401\nGOT-10k_Train_003423\nGOT-10k_Train_003435\nGOT-10k_Train_003438\nGOT-10k_Train_003442\nGOT-10k_Train_003444\nGOT-10k_Train_003455\nGOT-10k_Train_003456\nGOT-10k_Train_003464\nGOT-10k_Train_003466\nGOT-10k_Train_003474\nGOT-10k_Train_003482\nGOT-10k_Train_003488\nGOT-10k_Train_003502\nGOT-10k_Train_003515\nGOT-10k_Train_003520\nGOT-10k_Train_003530\nGOT-10k_Train_003551\nGOT-10k_Train_003570\nGOT-10k_Train_003571\nGOT-10k_Train_003578\nGOT-10k_Train_003583\nGOT-10k_Train_003590\nGOT-10k_Train_003593\nGOT-10k_Train_003618\nGOT-10k_Train_003626\nGOT-10k_Train_003650\nGOT-10k_Train_003652\nGOT-10k_Train_003663\nGOT-10k_Train_003690\nGOT-10k_Train_003704\nGOT-10k_Train_003709\nGOT-10k_Train_003716\nGOT-10k_Train_003721\nGOT-10k_Train_003722\nGOT-10k_Train_003724\nGOT-10k_Train_003729\nGOT-10k_Train_003756\nGOT-10k_Train_003768\nGOT-10k_Train_003782\nGOT-10k_Train_003786\nGOT-10k_Train_003788\nGOT-10k_Train_003791\nGOT-10k_Train_003820\nGOT-10k_Train_003821\nGOT-10k_Train_003827\nGOT-10k_Train_003834\nGOT-10k_Train_003835\nGOT-10k_Train_003839\nGOT-10k_Train_003843\nGOT-10k_Train_003854\nGOT-10k_Train_003856\nGOT-10k_Train_003881\nGOT-10k_Train_003899\nGOT-10k_Train_003904\nGOT-10k_Train_003906\nGOT-10k_Train_003913\nGOT-10k_Train_003937\nGOT-10k_Train_003940\nGOT-10k_Train_003943\nGOT-10k_Train_003950\nGOT-10k_Train_003972\nGOT-10k_Train_003974\nGOT-10k_Train_003978\nGOT-10k_Train_003981\nGOT-10k_Train_003982\nGOT-10k_Train_004003\nGOT-10k_Train_004004\nGOT-10k_Train_004008\nGOT-10k_Train_004012\nGOT-10k_Train_004013\nGOT-10k_Train_004030\nGOT-10k_Train_004036\nGOT-10k_Train_004040\nGOT-10k_Train_004052\nGOT-10k_Train_004054\nGOT-10k_Train_004055\nGOT-10k_Train_004057\nGOT-10k_Train_004063\nGOT-10k_Train_004068\nGOT-10k_Train_004072\nGOT-10k_Train_004075\nGOT-10k_Train_004078\nGOT-10k_Train_004082\nGOT-10k_Train_004102\nGOT-10k_Train_004103\nGOT-10k_Train_004105\nGOT-10k_Train_004111\nGOT-10k_Train_004120\nGOT-10k_Train_004122\nGOT-10k_Train_004124\nGOT-10k_Train_004142\nGOT-10k_Train_004158\nGOT-10k_Train_004170\nGOT-10k_Train_004175\nGOT-10k_Train_004181\nGOT-10k_Train_004190\nGOT-10k_Train_004193\nGOT-10k_Train_004194\nGOT-10k_Train_004199\nGOT-10k_Train_004202\nGOT-10k_Train_004217\nGOT-10k_Train_004225\nGOT-10k_Train_004229\nGOT-10k_Train_004230\nGOT-10k_Train_004234\nGOT-10k_Train_004241\nGOT-10k_Train_004246\nGOT-10k_Train_004249\nGOT-10k_Train_004255\nGOT-10k_Train_004268\nGOT-10k_Train_004276\nGOT-10k_Train_004292\nGOT-10k_Train_004293\nGOT-10k_Train_004295\nGOT-10k_Train_004296\nGOT-10k_Train_004302\nGOT-10k_Train_004324\nGOT-10k_Train_004337\nGOT-10k_Train_004342\nGOT-10k_Train_004351\nGOT-10k_Train_004356\nGOT-10k_Train_004376\nGOT-10k_Train_004380\nGOT-10k_Train_004395\nGOT-10k_Train_004398\nGOT-10k_Train_004399\nGOT-10k_Train_004408\nGOT-10k_Train_004430\nGOT-10k_Train_004439\nGOT-10k_Train_004440\nGOT-10k_Train_004462\nGOT-10k_Train_004473\nGOT-10k_Train_004476\nGOT-10k_Train_004478\nGOT-10k_Train_004481\nGOT-10k_Train_004483\nGOT-10k_Train_004484\nGOT-10k_Train_004503\nGOT-10k_Train_004513\nGOT-10k_Train_004517\nGOT-10k_Train_004533\nGOT-10k_Train_004536\nGOT-10k_Train_004594\nGOT-10k_Train_004595\nGOT-10k_Train_004607\nGOT-10k_Train_004619\nGOT-10k_Train_004626\nGOT-10k_Train_004642\nGOT-10k_Train_004646\nGOT-10k_Train_004652\nGOT-10k_Train_004658\nGOT-10k_Train_004660\nGOT-10k_Train_004661\nGOT-10k_Train_004668\nGOT-10k_Train_004673\nGOT-10k_Train_004679\nGOT-10k_Train_004694\nGOT-10k_Train_004702\nGOT-10k_Train_004709\nGOT-10k_Train_004717\nGOT-10k_Train_004757\nGOT-10k_Train_004768\nGOT-10k_Train_004824\nGOT-10k_Train_004826\nGOT-10k_Train_004833\nGOT-10k_Train_004839\nGOT-10k_Train_004843\nGOT-10k_Train_004852\nGOT-10k_Train_004862\nGOT-10k_Train_004865\nGOT-10k_Train_004878\nGOT-10k_Train_004880\nGOT-10k_Train_004881\nGOT-10k_Train_004902\nGOT-10k_Train_004906\nGOT-10k_Train_004920\nGOT-10k_Train_004950\nGOT-10k_Train_004951\nGOT-10k_Train_004952\nGOT-10k_Train_004973\nGOT-10k_Train_004983\nGOT-10k_Train_004984\nGOT-10k_Train_004990\nGOT-10k_Train_004993\nGOT-10k_Train_004995\nGOT-10k_Train_005004\nGOT-10k_Train_005007\nGOT-10k_Train_005022\nGOT-10k_Train_005024\nGOT-10k_Train_005040\nGOT-10k_Train_005046\nGOT-10k_Train_005047\nGOT-10k_Train_005058\nGOT-10k_Train_005063\nGOT-10k_Train_005072\nGOT-10k_Train_005097\nGOT-10k_Train_005098\nGOT-10k_Train_005099\nGOT-10k_Train_005108\nGOT-10k_Train_005113\nGOT-10k_Train_005119\nGOT-10k_Train_005126\nGOT-10k_Train_005146\nGOT-10k_Train_005166\nGOT-10k_Train_005191\nGOT-10k_Train_005207\nGOT-10k_Train_005255\nGOT-10k_Train_005269\nGOT-10k_Train_005280\nGOT-10k_Train_005310\nGOT-10k_Train_005317\nGOT-10k_Train_005319\nGOT-10k_Train_005334\nGOT-10k_Train_005338\nGOT-10k_Train_005339\nGOT-10k_Train_005354\nGOT-10k_Train_005364\nGOT-10k_Train_005382\nGOT-10k_Train_005385\nGOT-10k_Train_005389\nGOT-10k_Train_005390\nGOT-10k_Train_005396\nGOT-10k_Train_005398\nGOT-10k_Train_005399\nGOT-10k_Train_005401\nGOT-10k_Train_005413\nGOT-10k_Train_005415\nGOT-10k_Train_005420\nGOT-10k_Train_005457\nGOT-10k_Train_005465\nGOT-10k_Train_005488\nGOT-10k_Train_005493\nGOT-10k_Train_005510\nGOT-10k_Train_005523\nGOT-10k_Train_005538\nGOT-10k_Train_005553\nGOT-10k_Train_005556\nGOT-10k_Train_005575\nGOT-10k_Train_005577\nGOT-10k_Train_005582\nGOT-10k_Train_005594\nGOT-10k_Train_005606\nGOT-10k_Train_005611\nGOT-10k_Train_005636\nGOT-10k_Train_005639\nGOT-10k_Train_005642\nGOT-10k_Train_005651\nGOT-10k_Train_005652\nGOT-10k_Train_005653\nGOT-10k_Train_005681\nGOT-10k_Train_005686\nGOT-10k_Train_005689\nGOT-10k_Train_005701\nGOT-10k_Train_005712\nGOT-10k_Train_005716\nGOT-10k_Train_005724\nGOT-10k_Train_005731\nGOT-10k_Train_005732\nGOT-10k_Train_005734\nGOT-10k_Train_005741\nGOT-10k_Train_005764\nGOT-10k_Train_005767\nGOT-10k_Train_005788\nGOT-10k_Train_005791\nGOT-10k_Train_005800\nGOT-10k_Train_005813\nGOT-10k_Train_005816\nGOT-10k_Train_005830\nGOT-10k_Train_005852\nGOT-10k_Train_005876\nGOT-10k_Train_005877\nGOT-10k_Train_005884\nGOT-10k_Train_005910\nGOT-10k_Train_005929\nGOT-10k_Train_005943\nGOT-10k_Train_005958\nGOT-10k_Train_005995\nGOT-10k_Train_006002\nGOT-10k_Train_006010\nGOT-10k_Train_006018\nGOT-10k_Train_006021\nGOT-10k_Train_006022\nGOT-10k_Train_006040\nGOT-10k_Train_006046\nGOT-10k_Train_006057\nGOT-10k_Train_006075\nGOT-10k_Train_006087\nGOT-10k_Train_006099\nGOT-10k_Train_006115\nGOT-10k_Train_006126\nGOT-10k_Train_006129\nGOT-10k_Train_006142\nGOT-10k_Train_006161\nGOT-10k_Train_006163\nGOT-10k_Train_006193\nGOT-10k_Train_006195\nGOT-10k_Train_006204\nGOT-10k_Train_006206\nGOT-10k_Train_006215\nGOT-10k_Train_006216\nGOT-10k_Train_006220\nGOT-10k_Train_006224\nGOT-10k_Train_006232\nGOT-10k_Train_006241\nGOT-10k_Train_006247\nGOT-10k_Train_006287\nGOT-10k_Train_006300\nGOT-10k_Train_006315\nGOT-10k_Train_006318\nGOT-10k_Train_006322\nGOT-10k_Train_006337\nGOT-10k_Train_006341\nGOT-10k_Train_006344\nGOT-10k_Train_006348\nGOT-10k_Train_006349\nGOT-10k_Train_006363\nGOT-10k_Train_006366\nGOT-10k_Train_006376\nGOT-10k_Train_006378\nGOT-10k_Train_006395\nGOT-10k_Train_006402\nGOT-10k_Train_006406\nGOT-10k_Train_006412\nGOT-10k_Train_006413\nGOT-10k_Train_006427\nGOT-10k_Train_006448\nGOT-10k_Train_006459\nGOT-10k_Train_006464\nGOT-10k_Train_006474\nGOT-10k_Train_006477\nGOT-10k_Train_006482\nGOT-10k_Train_006483\nGOT-10k_Train_006496\nGOT-10k_Train_006498\nGOT-10k_Train_006499\nGOT-10k_Train_006505\nGOT-10k_Train_006506\nGOT-10k_Train_006514\nGOT-10k_Train_006533\nGOT-10k_Train_006563\nGOT-10k_Train_006569\nGOT-10k_Train_006573\nGOT-10k_Train_006584\nGOT-10k_Train_006585\nGOT-10k_Train_006587\nGOT-10k_Train_006591\nGOT-10k_Train_006592\nGOT-10k_Train_006598\nGOT-10k_Train_006605\nGOT-10k_Train_006631\nGOT-10k_Train_006633\nGOT-10k_Train_006644\nGOT-10k_Train_006651\nGOT-10k_Train_006654\nGOT-10k_Train_006672\nGOT-10k_Train_006717\nGOT-10k_Train_006728\nGOT-10k_Train_006736\nGOT-10k_Train_006740\nGOT-10k_Train_006746\nGOT-10k_Train_006754\nGOT-10k_Train_006759\nGOT-10k_Train_006766\nGOT-10k_Train_006789\nGOT-10k_Train_006796\nGOT-10k_Train_006797\nGOT-10k_Train_006817\nGOT-10k_Train_006818\nGOT-10k_Train_006849\nGOT-10k_Train_006851\nGOT-10k_Train_006855\nGOT-10k_Train_006872\nGOT-10k_Train_006879\nGOT-10k_Train_006900\nGOT-10k_Train_006912\nGOT-10k_Train_006926\nGOT-10k_Train_006936\nGOT-10k_Train_006955\nGOT-10k_Train_006968\nGOT-10k_Train_006969\nGOT-10k_Train_006979\nGOT-10k_Train_006980\nGOT-10k_Train_006984\nGOT-10k_Train_006986\nGOT-10k_Train_006991\nGOT-10k_Train_007017\nGOT-10k_Train_007032\nGOT-10k_Train_007035\nGOT-10k_Train_007048\nGOT-10k_Train_007064\nGOT-10k_Train_007065\nGOT-10k_Train_007075\nGOT-10k_Train_007077\nGOT-10k_Train_007081\nGOT-10k_Train_007083\nGOT-10k_Train_007089\nGOT-10k_Train_007106\nGOT-10k_Train_007107\nGOT-10k_Train_007131\nGOT-10k_Train_007138\nGOT-10k_Train_007144\nGOT-10k_Train_007150\nGOT-10k_Train_007168\nGOT-10k_Train_007170\nGOT-10k_Train_007177\nGOT-10k_Train_007181\nGOT-10k_Train_007183\nGOT-10k_Train_007190\nGOT-10k_Train_007208\nGOT-10k_Train_007220\nGOT-10k_Train_007223\nGOT-10k_Train_007247\nGOT-10k_Train_007273\nGOT-10k_Train_007284\nGOT-10k_Train_007289\nGOT-10k_Train_007293\nGOT-10k_Train_007294\nGOT-10k_Train_007296\nGOT-10k_Train_007316\nGOT-10k_Train_007322\nGOT-10k_Train_007355\nGOT-10k_Train_007360\nGOT-10k_Train_007362\nGOT-10k_Train_007364\nGOT-10k_Train_007388\nGOT-10k_Train_007392\nGOT-10k_Train_007403\nGOT-10k_Train_007404\nGOT-10k_Train_007426\nGOT-10k_Train_007427\nGOT-10k_Train_007443\nGOT-10k_Train_007446\nGOT-10k_Train_007461\nGOT-10k_Train_007482\nGOT-10k_Train_007489\nGOT-10k_Train_007499\nGOT-10k_Train_007503\nGOT-10k_Train_007507\nGOT-10k_Train_007515\nGOT-10k_Train_007521\nGOT-10k_Train_007523\nGOT-10k_Train_007525\nGOT-10k_Train_007535\nGOT-10k_Train_007559\nGOT-10k_Train_007566\nGOT-10k_Train_007582\nGOT-10k_Train_007586\nGOT-10k_Train_007596\nGOT-10k_Train_007616\nGOT-10k_Train_007623\nGOT-10k_Train_007634\nGOT-10k_Train_007637\nGOT-10k_Train_007643\nGOT-10k_Train_007645\nGOT-10k_Train_007653\nGOT-10k_Train_007660\nGOT-10k_Train_007661\nGOT-10k_Train_007663\nGOT-10k_Train_007672\nGOT-10k_Train_007700\nGOT-10k_Train_007710\nGOT-10k_Train_007714\nGOT-10k_Train_007717\nGOT-10k_Train_007718\nGOT-10k_Train_007737\nGOT-10k_Train_007741\nGOT-10k_Train_007746\nGOT-10k_Train_007763\nGOT-10k_Train_007769\nGOT-10k_Train_007780\nGOT-10k_Train_007803\nGOT-10k_Train_007821\nGOT-10k_Train_007825\nGOT-10k_Train_007839\nGOT-10k_Train_007848\nGOT-10k_Train_007873\nGOT-10k_Train_007877\nGOT-10k_Train_007882\nGOT-10k_Train_007894\nGOT-10k_Train_007905\nGOT-10k_Train_007908\nGOT-10k_Train_007911\nGOT-10k_Train_007914\nGOT-10k_Train_007918\nGOT-10k_Train_007929\nGOT-10k_Train_007936\nGOT-10k_Train_007938\nGOT-10k_Train_007965\nGOT-10k_Train_007969\nGOT-10k_Train_007973\nGOT-10k_Train_007987\nGOT-10k_Train_007999\nGOT-10k_Train_008001\nGOT-10k_Train_008034\nGOT-10k_Train_008050\nGOT-10k_Train_008056\nGOT-10k_Train_008068\nGOT-10k_Train_008073\nGOT-10k_Train_008089\nGOT-10k_Train_008095\nGOT-10k_Train_008101\nGOT-10k_Train_008128\nGOT-10k_Train_008139\nGOT-10k_Train_008147\nGOT-10k_Train_008154\nGOT-10k_Train_008171\nGOT-10k_Train_008180\nGOT-10k_Train_008193\nGOT-10k_Train_008194\nGOT-10k_Train_008201\nGOT-10k_Train_008212\nGOT-10k_Train_008226\nGOT-10k_Train_008230\nGOT-10k_Train_008231\nGOT-10k_Train_008236\nGOT-10k_Train_008239\nGOT-10k_Train_008241\nGOT-10k_Train_008243\nGOT-10k_Train_008249\nGOT-10k_Train_008250\nGOT-10k_Train_008273\nGOT-10k_Train_008278\nGOT-10k_Train_008291\nGOT-10k_Train_008310\nGOT-10k_Train_008311\nGOT-10k_Train_008317\nGOT-10k_Train_008319\nGOT-10k_Train_008331\nGOT-10k_Train_008332\nGOT-10k_Train_008344\nGOT-10k_Train_008369\nGOT-10k_Train_008377\nGOT-10k_Train_008386\nGOT-10k_Train_008392\nGOT-10k_Train_008396\nGOT-10k_Train_008432\nGOT-10k_Train_008438\nGOT-10k_Train_008439\nGOT-10k_Train_008440\nGOT-10k_Train_008442\nGOT-10k_Train_008443\nGOT-10k_Train_008455\nGOT-10k_Train_008471\nGOT-10k_Train_008484\nGOT-10k_Train_008490\nGOT-10k_Train_008492\nGOT-10k_Train_008499\nGOT-10k_Train_008502\nGOT-10k_Train_008507\nGOT-10k_Train_008520\nGOT-10k_Train_008525\nGOT-10k_Train_008568\nGOT-10k_Train_008587\nGOT-10k_Train_008589\nGOT-10k_Train_008591\nGOT-10k_Train_008606\nGOT-10k_Train_008612\nGOT-10k_Train_008623\nGOT-10k_Train_008628\nGOT-10k_Train_008633\nGOT-10k_Train_008634\nGOT-10k_Train_008645\nGOT-10k_Train_008656\nGOT-10k_Train_008668\nGOT-10k_Train_008670\nGOT-10k_Train_008702\nGOT-10k_Train_008714\nGOT-10k_Train_008723\nGOT-10k_Train_008731\nGOT-10k_Train_008732\nGOT-10k_Train_008734\nGOT-10k_Train_008747\nGOT-10k_Train_008787\nGOT-10k_Train_008794\nGOT-10k_Train_008805\nGOT-10k_Train_008829\nGOT-10k_Train_008837\nGOT-10k_Train_008838\nGOT-10k_Train_008853\nGOT-10k_Train_008878\nGOT-10k_Train_008879\nGOT-10k_Train_008880\nGOT-10k_Train_008891\nGOT-10k_Train_008895\nGOT-10k_Train_008907\nGOT-10k_Train_008909\nGOT-10k_Train_008922\nGOT-10k_Train_008935\nGOT-10k_Train_008939\nGOT-10k_Train_008972\nGOT-10k_Train_008975\nGOT-10k_Train_008976\nGOT-10k_Train_009002\nGOT-10k_Train_009031\nGOT-10k_Train_009040\nGOT-10k_Train_009052\nGOT-10k_Train_009056\nGOT-10k_Train_009057\nGOT-10k_Train_009066\nGOT-10k_Train_009076\nGOT-10k_Train_009103\nGOT-10k_Train_009115\nGOT-10k_Train_009117\nGOT-10k_Train_009127\nGOT-10k_Train_009137\nGOT-10k_Train_009145\nGOT-10k_Train_009150\nGOT-10k_Train_009155\nGOT-10k_Train_009156\nGOT-10k_Train_009160\nGOT-10k_Train_009179\nGOT-10k_Train_009181\nGOT-10k_Train_009196\nGOT-10k_Train_009203\nGOT-10k_Train_009216\nGOT-10k_Train_009219\nGOT-10k_Train_009222\nGOT-10k_Train_009224\nGOT-10k_Train_009229\nGOT-10k_Train_009231\nGOT-10k_Train_009235\nGOT-10k_Train_009242\nGOT-10k_Train_009263\nGOT-10k_Train_009265\nGOT-10k_Train_009280\nGOT-10k_Train_009282\nGOT-10k_Train_009300\nGOT-10k_Train_009301\nGOT-10k_Train_009329\nGOT-10k_Train_009332\nGOT-10k_Train_009334\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/got10k_vot_train_split.txt",
    "content": "3784\n8998\n1631\n8277\n8358\n2338\n2988\n8302\n2662\n2663\n2825\n7447\n4781\n2218\n5860\n2819\n8075\n5391\n116\n3606\n7976\n7941\n1024\n4519\n1970\n557\n8579\n6908\n993\n7204\n1991\n3674\n8781\n6840\n5\n3225\n3763\n8688\n6778\n5777\n4794\n2744\n8126\n3864\n1733\n2923\n6829\n683\n2081\n1831\n2404\n1459\n2741\n5972\n7462\n2654\n103\n2174\n2989\n2506\n2766\n5912\n3295\n3986\n609\n4895\n6673\n801\n1098\n1602\n2490\n8476\n3186\n4784\n4270\n1812\n4226\n2267\n8873\n6544\n6112\n2381\n4752\n753\n3776\n6511\n6016\n2559\n7369\n5866\n563\n7731\n1105\n5603\n50\n4238\n2208\n8725\n4994\n4719\n1444\n8807\n7298\n8760\n8173\n2332\n4131\n1065\n8562\n3992\n4024\n2188\n9095\n6765\n1707\n6105\n6922\n5362\n1486\n7898\n4135\n6574\n998\n6565\n8127\n8927\n2544\n4365\n768\n3535\n3875\n6808\n2931\n487\n4451\n2470\n8111\n3493\n7338\n8281\n6390\n1271\n4373\n3667\n3494\n3757\n2966\n7840\n7827\n3300\n6261\n4163\n2217\n6549\n7236\n9136\n1857\n6691\n3470\n6271\n807\n516\n9311\n6098\n3144\n8420\n5425\n5694\n2643\n6696\n6072\n7285\n3781\n903\n8522\n6092\n5979\n2622\n2529\n855\n3420\n3261\n8953\n7866\n2492\n3157\n359\n1520\n2642\n7452\n759\n36\n8931\n1744\n4350\n1089\n9199\n1889\n1908\n4868\n4498\n1968\n3273\n7413\n4114\n5584\n4874\n1427\n5211\n7618\n1542\n1353\n8158\n4168\n3200\n6345\n8560\n5619\n5953\n3158\n8849\n5831\n1411\n8103\n6539\n7397\n1006\n5450\n3119\n4274\n5352\n4571\n2319\n4976\n902\n1814\n2651\n3299\n3398\n982\n2428\n5793\n1346\n7057\n3737\n7329\n4449\n2110\n7405\n1773\n958\n3901\n4127\n8234\n2994\n7066\n1289\n2995\n5871\n3556\n9085\n846\n2366\n585\n5516\n5230\n3481\n2732\n6658\n7423\n1855\n6384\n3554\n5823\n4948\n7058\n4667\n5377\n2503\n7694\n9191\n9144\n655\n3409\n62\n8019\n8970\n2323\n5750\n3178\n6548\n7501\n3280\n343\n2171\n8397\n1367\n8611\n6118\n6603\n7182\n9048\n7733\n7141\n3335\n4845\n5449\n3467\n6250\n163\n5168\n2040\n3609\n8352\n3426\n8567\n769\n187\n6151\n6437\n7028\n3970\n9146\n5028\n7492\n1661\n2815\n2469\n2563\n3814\n8430\n4305\n3479\n5678\n4132\n1211\n5459\n4814\n545\n4556\n238\n2724\n1260\n2581\n4632\n4313\n380\n1209\n5447\n3032\n7942\n8943\n806\n2432\n6130\n4314\n2131\n9045\n6531\n5706\n6747\n7724\n2017\n3292\n5469\n2743\n424\n4233\n8619\n5192\n4516\n9324\n3537\n9152\n8058\n7526\n8711\n1949\n5982\n6702\n7027\n6388\n7012\n328\n2130\n452\n306\n7669\n3134\n5761\n3703\n44\n4189\n695\n5224\n9215\n5644\n3143\n5443\n2348\n2328\n4725\n1418\n7810\n5759\n7226\n4535\n4385\n5397\n7249\n3204\n385\n2371\n2738\n3636\n9033\n2246\n2680\n6940\n4310\n2054\n9250\n9080\n4568\n5586\n4469\n2038\n3410\n7900\n4332\n6108\n678\n3319\n9079\n1054\n4048\n4751\n1320\n6890\n7931\n1398\n4349\n5299\n5025\n7932\n5738\n7787\n4590\n4020\n1274\n2488\n8497\n3372\n8965\n3219\n799\n3664\n6500\n7093\n4362\n6205\n4244\n5945\n6434\n2031\n2684\n6632\n4588\n8271\n3232\n5782\n2904\n7200\n3632\n5435\n8203\n3480\n4786\n7579\n3351\n1921\n798\n3646\n3094\n4359\n1654\n5975\n376\n5965\n780\n6738\n3185\n2133\n6248\n5996\n2834\n531\n5688\n2448\n7925\n7974\n5924\n6401\n5778\n6594\n5442\n8336\n4522\n3770\n6340\n6328\n4946\n4161\n2954\n2588\n8465\n2885\n1606\n5787\n3407\n3121\n7310\n1413\n1932\n4787\n2579\n3325\n508\n5610\n6480\n4290\n479\n3792\n6628\n2545\n6972\n2665\n6730\n3547\n6845\n3540\n8993\n1052\n2235\n8356\n3403\n8818\n8260\n572\n4159\n1180\n5348\n7948\n2676\n3539\n4866\n6422\n8365\n3217\n1310\n2059\n9177\n1419\n2283\n8892\n8162\n1212\n6277\n3725\n7806\n6149\n7874\n718\n6888\n7118\n277\n656\n8763\n8289\n4759\n5854\n8659\n3145\n5981\n1881\n5799\n6947\n1609\n6396\n2631\n318\n2550\n6132\n1736\n7816\n4304\n8133\n6698\n7779\n7732\n7642\n7242\n711\n9262\n8033\n7440\n1913\n5480\n5570\n8594\n8772\n4654\n8974\n6128\n6183\n1071\n8449\n2142\n2298\n524\n1695\n820\n4053\n1856\n8641\n217\n1063\n9286\n3152\n221\n5461\n1270\n2006\n7164\n1199\n6951\n5604\n5400\n5309\n3498\n6407\n6661\n7097\n8165\n5169\n3852\n7070\n5702\n4344\n6648\n6904\n3272\n7119\n5795\n2365\n2659\n353\n5444\n1924\n2098\n2972\n6006\n5865\n8740\n7856\n5841\n598\n836\n1147\n931\n8897\n0\n6049\n1837\n865\n1871\n6116\n6831\n5773\n3587\n303\n1883\n2163\n3070\n1308\n7953\n6909\n853\n7301\n3279\n123\n7186\n3194\n5133\n1931\n4622\n4891\n5722\n5693\n8\n2339\n6596\n71\n379\n4506\n4370\n1238\n2707\n3344\n4254\n8767\n1726\n325\n4148\n5438\n5357\n548\n1332\n6824\n2290\n2335\n2594\n2315\n3389\n3885\n2621\n4116\n7412\n7222\n4894\n8595\n2000\n4978\n4721\n6444\n3796\n9321\n2236\n6409\n1523\n1468\n9249\n8270\n2341\n2874\n174\n4502\n4703\n9034\n9108\n5451\n2619\n9158\n490\n6540\n1466\n2962\n8771\n2712\n4539\n1581\n5638\n9246\n4308\n4363\n4647\n4470\n1636\n1311\n6560\n7519\n8027\n9217\n6364\n3779\n4822\n3563\n5896\n6655\n1524\n2846\n3137\n141\n1887\n6567\n8921\n4671\n6052\n8445\n8699\n7349\n3553\n2117\n7651\n5034\n5383\n649\n3818\n9022\n8414\n1012\n8159\n5081\n8571\n4765\n9135\n4361\n4073\n9142\n727\n2835\n8229\n3989\n4490\n4923\n5477\n1638\n3643\n9044\n2230\n499\n7166\n3172\n8431\n8401\n1470\n6356\n8817\n927\n4212\n2152\n3812\n4949\n1219\n1538\n3029\n6481\n9042\n7775\n7742\n423\n2085\n7715\n4541\n9061\n5916\n7420\n7406\n7046\n7808\n4911\n8804\n6927\n8820\n3264\n300\n2979\n252\n4407\n3383\n4688\n8504\n6723\n26\n3837\n2489\n4137\n8209\n229\n6490\n2364\n9016\n1763\n1728\n338\n8335\n9063\n2791\n641\n5454\n4581\n4548\n2840\n8508\n3463\n7231\n7619\n2560\n1755\n6201\n165\n6279\n5806\n6867\n5890\n2396\n3416\n1981\n6073\n5872\n3045\n4182\n7607\n4414\n2998\n6553\n7139\n5624\n3666\n723\n5110\n6932\n8200\n2222\n8399\n1041\n4138\n1594\n3569\n9253\n393\n7940\n8004\n1475\n5393\n1107\n2597\n878\n9309\n7576\n5250\n3142\n2015\n571\n3921\n1255\n7080\n893\n2160\n1355\n82\n9153\n8583\n4085\n4644\n7196\n9165\n3558\n4550\n6374\n7826\n8602\n4146\n9257\n6083\n874\n8383\n3731\n3374\n3653\n8222\n7344\n470\n1813\n6871\n7245\n6866\n3998\n7433\n276\n1915\n1988\n8168\n2518\n2686\n831\n6143\n5205\n8718\n1703\n7729\n2077\n7983\n8450\n1195\n9232\n507\n7989\n6974\n5828\n8655\n6679\n5245\n7783\n5886\n9098\n6491\n8782\n3525\n6542\n131\n8110\n9186\n9074\n4933\n9035\n2607\n2057\n6273\n2711\n5829\n3382\n2696\n3043\n2048\n619\n2499\n5295\n1162\n7807\n3694\n2194\n3149\n1940\n7934\n840\n3592\n8237\n4731\n1324\n8486\n8726\n8573\n2928\n9078\n2272\n2564\n1370\n5911\n7434\n8026\n407\n7546\n2004\n5849\n7887\n3425\n1118\n926\n3430\n5902\n2282\n2334\n129\n1372\n4842\n6473\n4382\n1028\n415\n8269\n6910\n2796\n3038\n5735\n5080\n2852\n6306\n8842\n9188\n3637\n1066\n532\n5485\n2838\n6753\n9008\n7984\n2816\n8819\n7103\n5977\n5044\n2064\n2599\n3249\n6446\n6638\n852\n1724\n3368\n892\n3250\n8258\n7962\n4300\n1616\n167\n8855\n2090\n4424\n879\n5136\n5350\n2635\n7828\n8506\n63\n3847\n3676\n1705\n6745\n1263\n5020\n1888\n7036\n1033\n3914\n5433\n3905\n4641\n228\n4801\n3766\n8085\n643\n6914\n3013\n5657\n3696\n1590\n8282\n2403\n416\n911\n3849\n4215\n1120\n5490\n296\n2306\n3140\n3742\n4819\n6153\n6414\n760\n3000\n7498\n7108\n6429\n3031\n5314\n751\n3357\n5808\n7505\n98\n7652\n4027\n6257\n1799\n8577\n4969\n9163\n2025\n6061\n4026\n588\n4961\n4940\n7152\n538\n706\n2802\n8983\n3375\n1246\n6593\n5837\n1789\n7939\n4997\n5939\n2411\n6133\n199\n7593\n1702\n5406\n6082\n2912\n6109\n100\n8149\n5470\n2807\n3362\n5621\n6019\n9241\n9268\n7703\n7967\n5458\n5492\n6729\n4577\n106\n3774\n979\n7082\n4610\n1853\n9003\n9292\n2867\n6262\n2245\n3460\n1557\n4796\n2658\n5769\n6985\n421\n7990\n3289\n1540\n9316\n2251\n6896\n5947\n4965\n4480\n963\n9047\n7824\n3976\n6210\n7018\n7179\n5016\n7789\n6102\n6828\n7659\n9109\n9071\n8115\n7628\n7110\n16\n7513\n835\n939\n2351\n2322\n4945\n560\n6837\n6094\n6475\n7901\n3\n771\n8029\n3135\n8044\n7127\n3741\n5156\n7030\n113\n3747\n7042\n5232\n5225\n3002\n4747\n5379\n4886\n7192\n4184\n1896\n1834\n8689\n3665\n2957\n6913\n8009\n4851\n6420\n828\n8884\n8815\n3198\n8008\n194\n6251\n3303\n3934\n395\n1285\n4169\n1648\n1347\n3600\n4631\n509\n211\n6230\n7241\n2219\n2582\n8353\n7790\n7583\n9004\n6942\n1704\n8051\n2981\n5511\n6182\n7088\n1699\n1222\n6189\n1528\n5197\n6221\n7893\n7773\n8766\n2942\n8021\n614\n1786\n400\n133\n556\n5237\n3727\n1440\n3873\n8448\n6285\n8696\n8800\n4009\n3386\n4847\n5685\n9093\n5895\n6863\n4260\n8405\n8417\n7116\n255\n3223\n4737\n7852\n814\n710\n1094\n6103\n5809\n5882\n6336\n4974\n1499\n2806\n3744\n2664\n2436\n4482\n8665\n8918\n1076\n8676\n5725\n9248\n4755\n1447\n9328\n5500\n78\n2653\n792\n6854\n6093\n6172\n3378\n4492\n5529\n5476\n3846\n1391\n383\n4289\n3883\n2648\n3265\n2525\n5402\n4599\n6870\n6877\n4413\n2464\n8519\n2521\n1839\n5822\n5664\n7257\n5375\n6852\n6764\n5182\n8914\n3015\n8509\n3080\n4562\n8979\n6643\n8601\n6096\n4812\n5246\n7862\n527\n7849\n6737\n12\n2468\n7961\n275\n27\n5932\n3840\n7341\n4996\n8564\n2154\n6138\n7831\n4442\n757\n4464\n1170\n2568\n19\n323\n7675\n3441\n2067\n9027\n2486\n4379\n4744\n1737\n7563\n301\n3907\n4742\n6857\n1221\n9284\n8458\n2897\n1526\n5345\n4423\n6246\n8578\n3711\n4986\n4785\n3997\n7311\n4788\n8387\n2041\n2608\n6031\n3293\n541\n773\n8473\n2501\n5667\n804\n483\n1639\n696\n6060\n5429\n5762\n1527\n7342\n6225\n7895\n381\n8030\n8362\n4734\n3526\n9273\n2039\n5084\n875\n6905\n8968\n5275\n3052\n650\n7509\n232\n2595\n3631\n1810\n4355\n8315\n8908\n1777\n4834\n3164\n2336\n1543\n6212\n8346\n3024\n3719\n1242\n6265\n3133\n6150\n6358\n3316\n4089\n1647\n4629\n7117\n2596\n5366\n6371\n2209\n1428\n1158\n7648\n8765\n802\n153\n4639\n3657\n9320\n3294\n2617\n5052\n6305\n3227\n8784\n5868\n6716\n1671\n178\n2703\n954\n3254\n2262\n5743\n8647\n6393\n7706\n6604\n3728\n6978\n7474\n8754\n2740\n6038\n1491\n8814\n2080\n2358\n5944\n1164\n9259\n4518\n7343\n5748\n3897\n923\n5967\n2677\n3503\n1202\n4966\n6634\n1962\n9096\n9064\n977\n4049\n1464\n658\n536\n3402\n8064\n1309\n259\n8122\n910\n224\n6152\n7142\n6070\n8411\n9214\n9312\n8325\n6192\n626\n6025\n6240\n8708\n4630\n6777\n1075\n8906\n408\n9269\n6236\n9067\n2324\n156\n3136\n7878\n7308\n4335\n2065\n3845\n4453\n3356\n1450\n371\n7219\n5171\n201\n8642\n2099\n477\n1603\n8339\n7430\n3061\n235\n1133\n8474\n8653\n989\n4569\n9092\n8347\n3102\n1743\n9086\n5140\n7438\n1530\n2460\n7646\n5071\n5430\n6944\n610\n2803\n1448\n4696\n6156\n4386\n4248\n4256\n994\n805\n8011\n8276\n8999\n4956\n1712\n2795\n7553\n6436\n2158\n9083\n3184\n5784\n4428\n612\n5288\n6222\n1365\n5074\n6848\n575\n5213\n2175\n4240\n351\n2086\n2656\n5150\n9255\n8189\n7735\n1261\n1344\n4097\n8674\n2984\n4235\n5998\n6488\n537\n1267\n7486\n7124\n6245\n7955\n7337\n5436\n1194\n209\n1710\n7906\n4357\n4139\n5679\n2584\n2854\n1004\n8246\n8586\n5087\n4926\n6637\n3197\n7757\n6502\n1248\n990\n3928\n2770\n2751\n1020\n6426\n6839\n2671\n3871\n9212\n4179\n3394\n10\n5861\n5316\n6869\n2985\n8905\n8559\n4457\n2480\n2313\n4100\n6835\n7799\n7890\n2785\n5468\n7302\n5862\n1803\n3171\n717\n7053\n1655\n4489\n2522\n2921\n8555\n1984\n895\n8949\n1305\n738\n7606\n112\n3042\n1325\n437\n3167\n3340\n511\n3689\n8982\n69\n4421\n550\n8685\n3147\n8956\n3166\n7023\n2014\n3573\n3880\n4045\n2069\n6051\n702\n6664\n8418\n6181\n4853\n4166\n7022\n7418\n3605\n7172\n5031\n4589\n7858\n6586\n6351\n8334\n7504\n634\n3759\n1890\n890\n6959\n5085\n4919\n2161\n1191\n256\n3610\n7079\n3427\n4071\n7323\n2982\n7263\n7444\n4251\n5846\n4864\n3649\n4311\n8120\n4582\n6373\n2805\n4872\n4869\n5867\n2670\n7099\n30\n8933\n930\n7919\n7261\n5289\n7449\n7772\n3613\n3196\n474\n205\n841\n2611\n6185\n3088\n409\n7239\n5938\n7871\n1343\n6705\n1027\n5596\n2199\n9113\n5471\n6134\n838\n8359\n4061\n1474\n3229\n270\n4245\n1979\n1517\n8652\n4006\n6137\n4693\n2528\n6996\n2926\n5798\n2477\n2549\n3341\n6014\n4479\n2861\n4208\n5175\n5174\n5118\n3736\n5463\n1588\n2327\n8380\n7982\n1058\n4586\n6608\n7985\n1822\n3628\n549\n1811\n2601\n4608\n2540\n6659\n3859\n307\n3767\n8167\n505\n4366\n5520\n461\n1933\n2401\n8106\n2055\n7844\n8544\n4797\n7419\n6686\n7670\n6039\n5672\n5141\n6543\n206\n5252\n4718\n888\n1601\n3218\n5114\n713\n4022\n4419\n6708\n397\n425\n6612\n5057\n1729\n4729\n4080\n1034\n534\n5598\n9218\n2424\n329\n4154\n1597\n109\n8823\n9038\n8437\n3307\n128\n8032\n1412\n7333\n8762\n8851\n8865\n468\n3808\n3064\n8798\n7052\n7767\n1086\n2162\n6566\n2109\n3439\n6122\n3642\n7696\n8610\n5279\n1808\n8687\n817\n6066\n3640\n6015\n7601\n4855\n6017\n87\n7071\n7268\n3614\n6084\n6117\n6924\n9102\n2829\n375\n8724\n2095\n22\n1541\n2970\n633\n139\n451\n4521\n179\n1396\n3876\n5824\n8020\n426\n4982\n4172\n190\n4859\n1455\n3110\n3323\n9104\n858\n6719\n6428\n4495\n8551\n2141\n3984\n3066\n67\n4299\n5821\n8444\n6581\n6097\n7090\n7781\n8944\n3085\n2114\n5355\n8901\n1461\n3301\n422\n7000\n4820\n5790\n1379\n7536\n8736\n8991\n5241\n1698\n1294\n1753\n196\n2987\n8680\n4144\n8639\n6441\n8255\n8156\n3677\n6385\n6520\n3760\n6001\n1144\n5478\n7394\n8057\n5018\n4232\n5235\n6844\n3111\n8802\n949\n7843\n573\n2278\n6801\n7629\n2714\n5105\n6946\n2697\n5315\n1571\n8677\n2537\n4374\n3833\n7820\n3750\n2033\n6526\n3884\n8706\n7195\n3603\n3001\n6284\n5873\n5718\n8576\n8457\n3589\n5839\n459\n6342\n8729\n6933\n607\n6053\n8228\n3773\n1805\n6365\n5142\n6069\n1389\n9026\n570\n4614\n5533\n2821\n1897\n819\n4060\n5905\n6842\n5446\n1277\n4303\n2836\n934\n1014\n7822\n7494\n665\n5881\n3328\n4664\n315\n1315\n1462\n8616\n7725\n5749\n1730\n8184\n4567\n5065\n8867\n1304\n3669\n9192\n410\n8177\n6710\n1210\n2329\n3911\n1899\n7686\n3315\n6180\n3116\n5341\n4394\n8337\n9182\n5715\n2172\n2782\n3715\n9195\n7960\n4890\n8294\n2337\n8014\n3353\n7475\n2193\n8831\n4200\n4653\n6196\n6957\n3063\n8959\n8973\n6529\n3457\n5274\n8002\n6823\n6154\n5561\n1780\n9318\n7657\n1758\n6503\n7678\n3274\n1625\n4327\n3236\n8575\n4707\n4331\n1494\n8756\n3174\n1074\n8116\n8295\n3048\n3752\n6050\n8003\n9175\n4674\n1642\n2556\n6166\n7165\n8441\n3990\n1640\n1778\n7500\n8304\n1395\n4315\n5949\n3364\n242\n5763\n1036\n2430\n8131\n411\n6267\n2045\n6606\n899\n8065\n5779\n5616\n2107\n5408\n2980\n6310\n5776\n4328\n821\n3251\n2354\n7076\n5313\n79\n3959\n5677\n7545\n160\n6790\n6859\n3659\n6770\n1106\n8846\n956\n7472\n2050\n8099\n4795\n8053\n9293\n7037\n1646\n9307\n5322\n5332\n2708\n8977\n917\n2419\n184\n2105\n1578\n3923\n5780\n1903\n2512\n429\n493\n4972\n445\n8286\n320\n8300\n617\n3413\n4459\n525\n5631\n6314\n5157\n5300\n8545\n182\n1031\n4429\n2495\n1534\n3099\n3916\n3738\n535\n2119\n177\n1838\n2159\n4099\n8285\n5172\n8540\n6020\n7683\n3073\n3115\n3087\n2416\n1894\n5942\n3597\n5834\n2007\n43\n1779\n4174\n2023\n2546\n2429\n9006\n436\n4214\n3693\n5426\n6767\n5903\n4368\n2170\n5051\n7490\n2859\n5035\n7835\n5372\n7122\n925\n3253\n6338\n8393\n4093\n5848\n7588\n2683\n8049\n5403\n5894\n8745\n8550\n2941\n3484\n9029\n4461\n8022\n725\n3030\n1975\n5623\n2415\n1957\n6141\n9278\n3226\n3062\n5670\n7326\n8759\n8496\n6619\n8187\n8262\n6199\n951\n668\n2388\n4698\n8240\n2851\n871\n4988\n9084\n9089\n3162\n1167\n8244\n5227\n6461\n2831\n776\n5010\n5770\n5282\n3574\n5102\n1278\n2281\n5455\n4628\n4663\n9119\n7487\n8746\n4889\n1175\n102\n2386\n8940\n5566\n53\n8833\n1918\n321\n6786\n6861\n4358\n2771\n7467\n975\n4777\n605\n3543\n2600\n7584\n9299\n4530\n7328\n183\n4761\n7543\n304\n1196\n4623\n5519\n1953\n533\n5989\n7590\n7428\n6346\n6162\n1946\n6260\n4405\n5676\n8924\n7171\n8409\n1866\n6379\n3411\n2387\n3051\n7398\n154\n1185\n6442\n6004\n1611\n2165\n9018\n8323\n616\n3995\n8952\n1533\n7853\n789\n4991\n3675\n7456\n5752\n175\n7556\n4195\n907\n2248\n8467\n1017\n7968\n3304\n1666\n4942\n3867\n4802\n6357\n4621\n887\n6213\n5261\n1336\n521\n8928\n7864\n4792\n6742\n157\n1593\n823\n7235\n5303\n5633\n1100\n8047\n5993\n1460\n6714\n1630\n6440\n6307\n3608\n292\n5974\n8301\n8342\n2720\n4583\n2757\n7315\n833\n4466\n4236\n1282\n5273\n2149\n2380\n8119\n7167\n5076\n3596\n2650\n8980\n3421\n1356\n1954\n7823\n1172\n2226\n1941\n6136\n7274\n2256\n4928\n324\n4410\n4579\n1061\n7113\n486\n862\n6956\n2873\n1465\n6113\n8225\n8512\n6806\n272\n6008\n1241\n88\n5662\n3555\n689\n8733\n2812\n7453\n6282\n420\n2471\n4477\n7495\n1445\n594\n6939\n1564\n8704\n8590\n7992\n7374\n5796\n9298\n4213\n5713\n5864\n326\n5513\n402\n464\n608\n1951\n8640\n3347\n3459\n4162\n2690\n7478\n5856\n5240\n3022\n602\n5547\n1798\n1345\n9276\n599\n3673\n3277\n1635\n8625\n1567\n5928\n636\n5671\n2896\n3477\n412\n7575\n4201\n685\n4760\n1229\n4275\n8960\n3123\n4471\n5941\n3355\n3999\n7157\n6354\n6850\n8783\n1943\n6769\n7330\n8721\n8477\n1381\n848\n778\n6408\n2644\n5817\n1441\n1723\n2144\n2776\n2368\n367\n8839\n8749\n5353\n3148\n9114\n1233\n9228\n8857\n2895\n1286\n200\n6755\n5125\n5857\n1657\n7658\n5000\n942\n7020\n586\n784\n7078\n6194\n8658\n8957\n9325\n1851\n8911\n7004\n1186\n8824\n2999\n561\n7639\n4316\n5086\n3187\n7912\n2624\n9183\n8487\n5089\n8475\n7554\n4031\n6297\n6059\n5329\n115\n2058\n7650\n7121\n2485\n7805\n2241\n7713\n4352\n2409\n1026\n2745\n4549\n5124\n5201\n6556\n6617\n9091\n3945\n8402\n5648\n5257\n4901\n7750\n6131\n6027\n6352\n4625\n1254\n5498\n3720\n8261\n3939\n5576\n3685\n6713\n8472\n991\n8354\n5655\n5997\n1029\n7506\n2575\n2990\n4898\n7402\n3290\n5388\n6715\n8235\n5361\n4970\n1363\n3338\n9014\n5358\n635\n1193\n3705\n6334\n7666\n5270\n6368\n8604\n3564\n1937\n2481\n1341\n721\n2100\n3958\n6551\n3813\n2592\n7980\n2357\n8761\n8910\n8693\n1204\n489\n4827\n8024\n7832\n3895\n9068\n8067\n1708\n1111\n8963\n1902\n9251\n5719\n9143\n5537\n9169\n5365\n1840\n485\n4456\n1169\n3271\n6886\n9140\n7173\n6003\n1659\n1807\n8371\n2439\n274\n3448\n6623\n347\n2103\n3400\n2106\n9073\n8169\n3687\n3305\n4416\n8454\n6635\n332\n2433\n1944\n6509\n7770\n1880\n6610\n9331\n302\n418\n4219\n1333\n2350\n8424\n4883\n6580\n6722\n1669\n8470\n2571\n513\n3810\n7049\n6332\n7363\n3532\n8456\n2097\n297\n8841\n7180\n714\n1587\n5234\n7372\n660\n8503\n1668\n8847\n1101\n7275\n3336\n6460\n722\n7782\n3947\n502\n4258\n2132\n1835\n181\n3841\n427\n3446\n2551\n8324\n6963\n4284\n7297\n7577\n3399\n9148\n8213\n5656\n851\n657\n2446\n6992\n976\n1108\n2681\n3237\n8582\n377\n5969\n5287\n9209\n8523\n7178\n7833\n6175\n2126\n3023\n5090\n7491\n6640\n6077\n2221\n2780\n1694\n4094\n144\n3203\n7123\n749\n3625\n3848\n980\n2270\n7819\n3672\n7689\n7203\n2718\n1714\n3802\n3851\n4224\n7237\n7998\n7207\n4106\n9036\n1046\n5070\n4592\n6056\n693\n1328\n3309\n2629\n2736\n202\n388\n7886\n4417\n8786\n8822\n4035\n5505\n1192\n4388\n8941\n5019\n7538\n6732\n6389\n5923\n1405\n3278\n3917\n1688\n8374\n443\n4037\n9099\n5190\n4177\n9310\n7747\n4348\n7197\n4844\n4998\n5609\n4345\n29\n3332\n8648\n4107\n346\n2577\n3941\n1215\n8252\n4706\n2675\n3790\n7459\n6164\n1149\n6687\n582\n3139\n3882\n4034\n1861\n4701\n8757\n8801\n1823\n4528\n4789\n143\n4746\n9234\n3866\n9245\n1911\n1366\n4393\n2061\n1959\n6967\n3138\n7382\n6237\n845\n80\n6911\n7163\n5229\n4736\n8738\n33\n8543\n357\n3193\n7262\n4448\n6793\n3321\n7569\n6411\n7692\n7340\n1417\n5847\n3836\n2678\n1188\n8727\n8615\n7417\n5771\n3170\n8061\n2935\n8263\n8257\n6883\n1276\n1239\n812\n6258\n3922\n8117\n3039\n603\n8554\n7573\n2787\n3445\n5115\n3478\n962\n3961\n6570\n7722\n216\n2797\n5154\n2530\n4904\n2405\n7542\n4021\n3252\n5370\n9302\n236\n4532\n1361\n3373\n1716\n2183\n1583\n3783\n868\n1687\n8925\n6198\n8208\n6367\n7603\n882\n3469\n1645\n7654\n1176\n4231\n150\n7997\n5456\n7031\n4375\n8840\n5634\n6945\n705\n4774\n3822\n7148\n1922\n8459\n6249\n8713\n6197\n8599\n6071\n6756\n1634\n950\n5640\n7749\n5920\n6622\n4783\n7837\n7479\n7229\n3919\n1797\n5272\n8945\n4908\n5439\n6903\n5833\n6930\n8197\n9261\n1711\n5483\n4285\n8852\n7409\n8971\n7534\n7792\n2444\n7496\n8063\n1665\n248\n3894\n4585\n66\n4850\n1240\n7511\n7524\n9258\n2075\n3979\n4714\n7592\n965\n2919\n1842\n8013\n4750\n2344\n6155\n3468\n31\n2087\n1599\n1573\n5883\n7613\n195\n3749\n644\n2189\n8779\n8743\n9005\n8081\n1040\n7785\n5820\n8830\n5495\n4867\n2710\n491\n7153\n6217\n4741\n1761\n5484\n5474\n6916\n7252\n1739\n8930\n6647\n5198\n4903\n8488\n7366\n2774\n2726\n2385\n7625\n3179\n8845\n6600\n399\n6810\n3447\n6684\n4915\n8368\n1867\n2325\n2101\n1335\n7734\n7437\n7025\n4000\n6897\n1408\n7154\n5013\n2204\n9233\n3817\n1877\n9161\n2197\n3390\n280\n1892\n1612\n7753\n2801\n7246\n7909\n6229\n9314\n8407\n1436\n3879\n6432\n5326\n5327\n8535\n7910\n7745\n5545\n7916\n207\n1783\n6158\n8517\n7361\n8070\n6430\n119\n6146\n4183\n1083\n7385\n4497\n9133\n1686\n3765\n595\n8046\n4418\n4043\n2361\n7915\n9149\n1717\n1141\n6375\n1018\n5602\n1262\n7485\n9178\n6629\n3339\n8934\n4648\n7988\n6252\n3440\n864\n5418\n3874\n7280\n6191\n8388\n4323\n6792\n2232\n7228\n8684\n7813\n6187\n6678\n3177\n3534\n4953\n4402\n7739\n6319\n2414\n8700\n5946\n8238\n6917\n4167\n4618\n2268\n3081\n1247\n4001\n8580\n7636\n3101\n2195\n1559\n3714\n7188\n6028\n7530\n2828\n1977\n3238\n2340\n110\n3247\n7532\n7541\n924\n1632\n4487\n6447\n4944\n6347\n2285\n8087\n5452\n91\n1166\n162\n5185\n7933\n4743\n1627\n7259\n8620\n8207\n5845\n9011\n5525\n4269\n4700\n1824\n8186\n8872\n8299\n3957\n8242\n4558\n6439\n2666\n6958\n8112\n5121\n8806\n6170\n7688\n3486\n2082\n7436\n2778\n1096\n786\n2206\n5170\n1443\n6030\n3312\n9151\n8485\n6404\n8498\n2883\n8961\n2280\n8341\n2809\n2445\n809\n8298\n8643\n8316\n6853\n1572\n3215\n3938\n2249\n6515\n1337\n8328\n7712\n1429\n4117\n5441\n3230\n4152\n7225\n3513\n6953\n1507\n348\n3639\n5739\n2673\n1550\n6301\n1652\n8453\n204\n6833\n2200\n5217\n1854\n4711\n7368\n4572\n4032\n7531\n1013\n3634\n2875\n6058\n8307\n7609\n1766\n904\n667\n5410\n6578\n3601\n1664\n3233\n7390\n8178\n4486\n4427\n4876\n9166\n2772\n6295\n5001\n5296\n3371\n6518\n6327\n854\n8288\n1912\n5927\n6202\n5814\n9032\n1059\n3214\n6547\n7038\n5781\n4390\n6114\n1622\n4318\n5803\n5984\n736\n3561\n6554\n5045\n4277\n7386\n9081\n8462\n2034\n4955\n2701\n932\n7758\n7176\n9205\n3077\n3803\n3562\n8054\n7946\n295\n1843\n7728\n1629\n7768\n2971\n431\n9285\n2513\n1116\n3656\n4529\n5758\n6339\n8398\n816\n4153\n2536\n1826\n7870\n8113\n7730\n7101\n6555\n9256\n6774\n1072\n4578\n2598\n3604\n5880\n861\n3350\n3117\n4685\n4334\n5165\n7224\n4066\n4253\n4447\n3815\n5038\n253\n3658\n330\n3967\n6443\n2143\n7336\n6135\n2734\n8390\n4655\n7800\n1399\n1173\n5618\n2822\n4431\n2443\n1568\n3909\n1974\n2496\n4772\n5164\n2138\n2864\n3799\n3924\n4882\n8245\n1585\n5528\n5692\n5730\n5832\n137\n3175\n2894\n2062\n2752\n4028\n2113\n5411\n2647\n730\n3758\n1667\n9303\n6653\n3698\n3968\n3053\n503\n2150\n4645\n2257\n4627\n8303\n7966\n8742\n4692\n5901\n8547\n2277\n5546\n986\n370\n4697\n8712\n4804\n1182\n6650\n7290\n3487\n2814\n5668\n7567\n5333\n4164\n3084\n8896\n3888\n6537\n17\n6882\n3531\n704\n1037\n8866\n5263\n6758\n3762\n1393\n3824\n5112\n214\n1439\n5700\n8932\n1306\n5011\n6928\n5173\n4098\n1132\n7352\n4778\n7723\n1368\n2390\n670\n2685\n5855\n1772\n6380\n3853\n940\n5424\n6091\n1748\n5297\n6572\n8877\n6874\n430\n5041\n5267\n7448\n620\n9112\n4294\n1432\n72\n130\n7920\n4597\n6614\n8889\n3697\n1895\n3462\n2616\n4791\n7846\n8372\n428\n6559\n8326\n9211\n1525\n5980\n7888\n3331\n8118\n7899\n615\n7377\n791\n5930\n6627\n8322\n1138\n770\n8460\n5100\n8274\n8350\n6316\n2893\n7594\n9236\n5082\n8150\n1986\n1909\n8902\n2145\n3617\n3501\n7\n2426\n5056\n8016\n2702\n5360\n8135\n8385\n8378\n8018\n8574\n720\n8893\n3021\n1978\n4782\n1816\n2083\n4051\n1446\n5870\n9097\n8006\n4222\n8287\n686\n1377\n611\n8153\n4808\n1536\n679\n4096\n3891\n4884\n432\n4615\n8988\n5560\n3451\n5589\n3514\n6169\n1414\n3244\n1490\n7100\n3588\n690\n7317\n4171\n2266\n6800\n2793\n5151\n6977\n8188\n8752\n5815\n5116\n263\n3311\n289\n3392\n5755\n1022\n5548\n9319\n8937\n6011\n7632\n5328\n4141\n5407\n520\n7305\n526\n3645\n1859\n2520\n3523\n8629\n7304\n8881\n3076\n4005\n8329\n2205\n2214\n6925\n8691\n4136\n8883\n974\n7952\n3965\n5887\n7964\n7189\n2406\n2783\n8086\n405\n6568\n5147\n2021\n4727\n7674\n1600\n5078\n2949\n6624\n6541\n8986\n5740\n8500\n3591\n4434\n398\n983\n7544\n1478\n4570\n6012\n465\n9330\n7206\n808\n8737\n2356\n4959\n8812\n3599\n1420\n1721\n5897\n8422\n2\n4023\n2739\n3619\n8797\n5496\n8951\n8181\n6893\n9254\n1809\n5682\n4309\n6929\n2742\n5988\n3363\n4493\n8434\n4210\n1503\n1876\n5094\n4600\n4936\n4798\n3933\n5216\n646\n3098\n8773\n4076\n5335\n3746\n3327\n47\n4602\n8636\n4129\n363\n6417\n7416\n9025\n4377\n4766\n2779\n4151\n9046\n7860\n3154\n3476\n7620\n2052\n1752\n7199\n4412\n8882\n2463\n339\n56\n4821\n7555\n6558\n1905\n5258\n4205\n3580\n6735\n1023\n4511\n3850\n161\n7395\n2532\n3349\n7055\n7387\n758\n1907\n3006\n659\n815\n1961\n6902\n7668\n4708\n1904\n4433\n5159\n6816\n8664\n6918\n1016\n6513\n7314\n7480\n9313\n716\n3395\n6843\n918\n4329\n8593\n3404\n5212\n837\n480\n8524\n1342\n7414\n288\n8863\n3352\n1628\n135\n3314\n2181\n8650\n5915\n8078\n6812\n1375\n906\n5635\n7126\n1387\n7458\n6119\n5591\n3795\n1531\n95\n1960\n7522\n898\n4921\n2623\n6268\n7063\n1326\n9075\n2505\n7400\n1284\n2951\n747\n6466\n1357\n6493\n7320\n5892\n576\n5107\n5559\n97\n2583\n6361\n8843\n3509\n7892\n6086\n1476\n4612\n4267\n9094\n7050\n6048\n8382\n2227\n284\n2898\n3221\n2353\n2157\n5990\n5810\n3581\n7279\n6188\n7859\n3549\n5539\n2022\n630\n2500\n5111\n6561\n5127\n5569\n6123\n1338\n8605\n3491\n4187\n8220\n7334\n9213\n3067\n6997\n2853\n4735\n4372\n5954\n6662\n2207\n973\n3361\n960\n6350\n7431\n8076\n1129\n750\n7194\n2300\n6590\n5893\n6889\n3125\n8788\n7286\n3472\n8164\n7693\n1469\n5563\n4773\n3210\n6324\n3113\n9070\n3638\n7551\n2541\n3506\n5138\n4069\n7198\n7560\n3306\n6100\n2932\n1741\n14\n4672\n7564\n8748\n8874\n3804\n3678\n2610\n1358\n42\n5176\n9326\n8464\n1038\n2993\n3017\n9072\n32\n4809\n4364\n2808\n4125\n152\n7299\n5431\n6178\n793\n9120\n8410\n4963\n772\n6954\n3014\n6881\n286\n553\n1948\n6398\n6255\n3057\n8646\n6176\n2700\n5663\n6683\n1281\n6013\n8799\n7635\n9289\n1885\n442\n2225\n6294\n5054\n2674\n7884\n8730\n8216\n4203\n1488\n7111\n3623\n7950\n1971\n3248\n2900\n1553\n472\n3865\n7796\n6937\n4591\n8098\n5208\n294\n5627\n5691\n5687\n7149\n4879\n3624\n7005\n2773\n3112\n9185\n1633\n7830\n5101\n8707\n8469\n4678\n4860\n700\n5527\n9194\n2794\n5068\n1177\n4282\n6492\n5859\n5029\n5123\n522\n5048\n7230\n2104\n6642\n6731\n2717\n5149\n2043\n9059\n5277\n844\n5515\n6706\n3651\n9105\n7671\n2880\n3607\n6410\n2508\n8463\n2394\n1916\n1125\n5343\n3322\n5307\n4547\n1589\n8478\n8899\n2955\n8028\n4058\n2781\n8715\n1272\n4474\n4863\n4367\n49\n8844\n5605\n8671\n6743\n4281\n1874\n2626\n2516\n258\n5249\n6186\n7958\n5432\n3801\n6288\n4732\n9121\n7558\n6819\n7508\n584\n215\n5036\n4261\n8978\n5228\n647\n4657\n2591\n5931\n5088\n9204\n929\n4381\n5421\n2965\n5050\n6495\n5033\n4799\n959\n1232\n5811\n317\n7705\n3842\n2178\n7187\n1373\n7112\n2694\n8627\n8493\n3991\n7441\n6308\n6462\n3406\n7673\n8660\n2902\n752\n1025\n849\n7682\n6982\n6652\n3612\n298\n5148\n4873\n3414\n1693\n1458\n327\n2016\n5002\n6768\n7016\n5583\n3270\n8232\n7158\n7981\n4676\n4675\n2164\n8360\n6709\n8143\n365\n4062\n4527\n7928\n9009\n6228\n5818\n2533\n9305\n8887\n55\n2507\n8870\n6649\n5158\n76\n5595\n6693\n5306\n8666\n3020\n7527\n3082\n6304\n1591\n6145\n6868\n7205\n9107\n1165\n6773\n172\n1993\n4176\n8400\n4611\n7589\n5386\n6095\n6335\n1561\n5963\n7393\n3681\n2037\n4968\n7451\n3360\n7466\n8361\n4455\n4064\n5422\n1689\n3977\n7269\n362\n4178\n4145\n6127\n5162\n2399\n9225\n7068\n794\n1348\n7736\n444\n6081\n5298\n2026\n2543\n9087\n7425\n3730\n8468\n2641\n7529\n1720\n6377\n5851\n7956\n3150\n3785\n6485\n3611\n2869\n8510\n4775\n4463\n1251\n9124\n6873\n3391\n4118\n7051\n3213\n3668\n5347\n8452\n6289\n5840\n478\n3522\n453\n3376\n6190\n3342\n2237\n2870\n5178\n5567\n5952\n6919\n3005\n134\n3397\n8539\n6822\n5264\n3288\n5962\n8421\n6744\n8608\n4656\n1802\n4271\n1043\n8211\n2196\n5260\n3789\n7211\n7571\n7834\n5680\n2047\n5502\n3369\n3437\n3286\n5517\n3912\n1442\n6961\n2191\n2417\n9088\n5155\n6813\n4520\n7375\n1224\n811\n1891\n3748\n4123\n2789\n5305\n8419\n7248\n9237\n992\n4038\n4499\n2060\n850\n2669\n7612\n9290\n2526\n1287\n4160\n4633\n7125\n742\n4534\n2407\n4555\n8764\n4722\n7721\n3205\n6657\n1214\n3754\n6080\n4593\n3018\n8792\n2294\n4450\n7701\n127\n7069\n6243\n8025\n4010\n8632\n4715\n5284\n4574\n726\n4252\n4561\n7354\n299\n6088\n1090\n5012\n5684\n3489\n4888\n1584\n1969\n4846\n2915\n6804\n2775\n7306\n9306\n5231\n7740\n4283\n953\n6725\n8290\n1504\n1539\n8885\n138\n3764\n1256\n257\n335\n7060\n5986\n9323\n4740\n8994\n4140\n6807\n8254\n3963\n9297\n2102\n9207\n4910\n8709\n4411\n1672\n457\n8037\n4932\n3679\n2362\n8592\n495\n1608\n2155\n7411\n2881\n9244\n37\n6535\n8219\n4505\n8635\n1928\n8384\n2570\n8996\n7610\n2128\n8728\n6656\n6681\n2070\n176\n9062\n514\n1796\n4039\n6838\n2462\n230\n569\n5521\n4637\n4939\n4420\n672\n3807\n447\n1656\n3297\n8858\n2118\n6309\n1926\n481\n1509\n1228\n1787\n5978\n8678\n3951\n2929\n4980\n5039\n4713\n7002\n151\n5536\n8148\n3823\n2299\n142\n7067\n2372\n3761\n9\n2265\n5747\n2764\n724\n2913\n3151\n4525\n6370\n4247\n5494\n629\n3621\n7371\n1999\n6704\n3734\n2698\n4691\n6938\n8415\n6353\n6750\n9077\n2679\n2478\n7321\n6611\n4007\n5772\n6416\n2264\n8348\n2672\n6546\n754\n6934\n8546\n4404\n592\n4748\n6625\n7944\n2377\n6\n8929\n8275\n4524\n3660\n8710\n419\n6878\n8313\n7460\n8753\n2917\n6891\n6663\n4918\n7129\n396\n7256\n3500\n631\n5585\n8343\n2695\n6168\n6292\n3176\n5092\n5160\n3701\n9021\n7221\n1216\n1438\n3471\n2318\n8923\n6223\n2182\n7621\n8514\n9010\n8987\n1252\n1972\n1872\n1715\n8205\n6463\n8138\n8989\n5661\n2890\n565\n2427\n8946\n1303\n3718\n6000\n3620\n5276\n9260\n1467\n6173\n7641\n7520\n5061\n4677\n5757\n4400\n2620\n2719\n8995\n2079\n1683\n8141\n7754\n5744\n2952\n7568\n7457\n5368\n1510\n1513\n3072\n1456\n9164\n3163\n3035\n6111\n5042\n7161\n1401\n1084\n8000\n8531\n5404\n6550\n8379\n9141\n8681\n7752\n6394\n7011\n3739\n8253\n978\n4771\n6024\n4828\n7959\n1649\n1727\n7073\n8349\n6952\n661\n7283\n3159\n2590\n3496\n8741\n3969\n2956\n4565\n920\n1830\n8558\n1930\n6677\n6825\n8256\n7454\n4710\n1768\n3753\n5292\n1397\n2733\n946\n6711\n3242\n4929\n5006\n3202\n2295\n2746\n1293\n2124\n5405\n4065\n818\n7464\n1820\n1312\n6994\n6920\n261\n987\n6120\n3109\n2986\n4338\n7774\n5122\n1364\n8969\n6712\n8161\n7595\n5940\n1566\n6419\n4432\n6047\n4749\n6076\n1161\n8217\n674\n8494\n3688\n2447\n4704\n969\n7477\n1160\n3243\n4979\n9288\n6860\n1662\n6171\n225\n5143\n313\n8327\n3385\n7626\n3103\n4401\n6794\n5600\n5043\n7664\n6830\n4452\n3980\n5875\n4635\n5756\n3329\n1751\n8108\n4817\n1989\n1237\n1893\n2848\n8875\n4981\n5417\n4134\n877\n6688\n3545\n4943\n5615\n2476\n1684\n7396\n1171\n3415\n3644\n340\n6630\n8284\n3256\n7240\n5371\n3405\n2108\n6360\n1734\n5612\n8638\n2343\n1103\n6809\n3055\n188\n8031\n3124\n3683\n4537\n988\n2297\n4893\n839\n4467\n5195\n4041\n6457\n4441\n6472\n4912\n6884\n5922\n7014\n1660\n1595\n6752\n4554\n1292\n2709\n3800\n1980\n8775\n6392\n6263\n7214\n5219\n282\n309\n6685\n6311\n4092\n18\n7570\n5543\n4081\n2515\n6278\n8690\n5294\n6184\n5215\n9130\n6720\n250\n7250\n639\n3567\n7841\n2636\n4067\n8446\n5703\n8609\n2586\n7695\n1253\n6701\n7930\n6317\n5921\n7719\n8501\n7312\n4110\n6219\n4552\n5059\n4088\n7975\n9132\n6054\n692\n3412\n4079\n6950\n5281\n8321\n3877\n7614\n4188\n2223\n239\n4745\n6875\n7096\n5571\n4403\n2640\n1845\n6690\n1825\n4157\n314\n4682\n8825\n8093\n7215\n6465\n99\n8077\n4206\n366\n1208\n6043\n4640\n5475\n4985\n1351\n3090\n5625\n7307\n8466\n2003\n8854\n218\n1500\n2293\n1847\n5032\n2147\n866\n3710\n2552\n1749\n6692\n3926\n4112\n6458\n735\n9171\n60\n9304\n6726\n2630\n2882\n1178\n1151\n4922\n4662\n173\n7233\n1776\n4113\n2423\n2425\n4343\n970\n6372\n1009\n6607\n3068\n8435\n6423\n3126\n4813\n1709\n1201\n7104\n5620\n3932\n3366\n5023\n5079\n627\n290\n779\n5572\n5233\n1392\n4975\n8534\n8210\n2269\n2475\n2562\n905\n4546\n267\n3536\n8538\n449\n101\n7367\n2722\n4605\n7356\n6781\n8537\n8697\n6820\n8340\n8926\n2349\n2259\n6545\n8100\n8395\n2258\n2911\n3946\n1406\n8683\n8296\n5579\n2177\n8264\n1425\n957\n3647\n515\n5342\n8363\n2449\n1001\n2937\n3452\n5574\n4319\n9184\n8381\n945\n6876\n600\n5714\n4871\n8532\n8856\n392\n2018\n369\n5711\n9230\n5304\n7266\n1681\n7829\n2309\n4683\n8938\n2255\n6159\n3207\n4651\n2029\n4341\n5106\n5794\n9024\n4712\n2434\n7151\n7359\n6431\n1290\n5918\n8705\n5554\n8876\n7415\n6290\n5373\n3805\n2950\n2331\n6772\n8997\n6576\n2307\n8515\n4033\n3428\n6487\n6595\n45\n5792\n333\n2383\n3388\n666\n460\n943\n364\n8223\n8221\n637\n6218\n4108\n5381\n4649\n5096\n1614\n8768\n5095\n3809\n5030\n984\n3538\n5120\n2498\n5222\n5613\n5486\n241\n5707\n9227\n4109\n7771\n728\n3671\n9327\n1230\n9270\n1070\n8565\n4769\n7056\n5654\n1793\n5956\n7883\n1362\n5479\n8769\n8821\n8320\n1901\n1994\n2461\n5552\n389\n2839\n6467\n2762\n4763\n3499\n1487\n7599\n4488\n3241\n8272\n1131\n4496\n7006\n7265\n4897\n2747\n6618\n5291\n4563\n1939\n6369\n8548\n5526\n9030\n5349\n8433\n1477\n4265\n9200\n3878\n462\n6846\n4806\n3519\n6798\n5464\n5179\n546\n6044\n8114\n7216\n6276\n1495\n494\n8146\n5434\n856\n8403\n8071\n5544\n3337\n1546\n2824\n1718\n6009\n2042\n251\n3330\n192\n3797\n394\n7814\n7699\n4659\n4689\n4156\n7903\n9054\n7332\n7811\n1119\n5531\n6782\n5210\n8412\n2633\n7924\n4624\n8314\n5666\n3240\n2310\n4262\n8160\n4553\n8196\n2661\n7213\n7455\n7399\n870\n1227\n1226\n781\n937\n6343\n2578\n2892\n2792\n5696\n6865\n6455\n8312\n5193\n6026\n5251\n3787\n4460\n4687\n7923\n1140\n9106\n796\n2482\n9170\n8695\n2749\n6734\n4825\n114\n827\n390\n7611\n7484\n1249\n7727\n955\n579\n3629\n8915\n2958\n885\n7227\n1424\n4810\n4604\n1535\n774\n7518\n5428\n8233\n2645\n2167\n6484\n3855\n1502\n4861\n2333\n2973\n4829\n1906\n3966\n476\n9023\n6960\n3483\n2748\n5891\n8174\n7702\n8948\n5324\n4396\n1605\n2823\n7348\n7347\n5933\n310\n9082\n916\n203\n4239\n5976\n6200\n6435\n4425\n787\n1121\n6034\n39\n3104\n5961\n5507\n5785\n1463\n7339\n1575\n7801\n5445\n8283\n5951\n6995\n999\n5163\n6023\n6536\n5850\n3524\n3528\n4508\n6674\n2939\n8227\n4598\n7550\n8495\n8622\n1152\n4538\n1318\n739\n8202\n1552\n5236\n3576\n4699\n9238\n1879\n433\n5587\n1678\n8552\n6445\n7971\n6880\n7476\n7282\n7271\n6489\n8091\n9287\n7351\n1765\n5286\n6921\n542\n1762\n8553\n4987\n894\n3622\n7855\n92\n3131\n4811\n6517\n4510\n733\n4954\n1360\n5669\n2842\n8107\n5646\n5968\n1827\n7709\n8521\n5807\n5321\n9239\n5501\n3745\n4437\n1586\n5265\n7917\n1607\n6074\n7061\n1580\n8694\n8461\n4573\n618\n9173\n5243\n435\n8770\n2421\n7450\n3870\n8308\n2605\n2934\n9240\n6887\n4512\n1198\n7585\n7691\n7738\n2843\n8423\n6971\n7854\n86\n9128\n4298\n622\n6579\n2203\n7716\n1265\n1174\n7380\n623\n8936\n4306\n8082\n4312\n8661\n5753\n7243\n2768\n8155\n85\n4143\n3047\n8479\n7809\n2833\n5555\n7578\n1637\n1936\n8130\n5549\n8062\n7143\n5522\n8966\n5614\n8105\n8719\n7655\n7502\n8268\n5760\n6695\n5565\n7615\n9226\n4870\n4507\n3160\n4835\n1598\n4422\n5248\n7867\n1078\n5015\n6660\n1676\n6391\n5351\n7184\n6280\n5936\n6124\n1327\n2906\n269\n8292\n8809\n5167\n8142\n8204\n2713\n1910\n2930\n2494\n5592\n7384\n7726\n5727\n1735\n5710\n5518\n2491\n1410\n4989\n5183\n8777\n6562\n4947\n3692\n384\n1097\n5209\n3723\n7272\n6895\n2459\n543\n8621\n5394\n6211\n2074\n1511\n2524\n7776\n5055\n7191\n6207\n7922\n281\n8436\n2918\n3141\n4800\n6323\n7631\n8903\n3735\n5301\n3975\n2800\n7963\n105\n1920\n7391\n4909\n1754\n4816\n5145\n5139\n5268\n9317\n8631\n4346\n7318\n136\n3993\n1220\n2151\n308\n7483\n3071\n1339\n3777\n8191\n5378\n7087\n1056\n7465\n5608\n6564\n2754\n2687\n1596\n5376\n1512\n566\n6382\n1757\n8035\n2296\n4264\n1053\n4716\n8518\n254\n6253\n7132\n8557\n3490\n9267\n5473\n2412\n7539\n7136\n6670\n891\n1323\n1217\n2879\n9118\n1259\n2317\n7033\n2467\n6665\n6244\n2180\n2140\n7098\n4150\n547\n4307\n1725\n2737\n8549\n8195\n1245\n6286\n935\n1756\n1701\n1626\n7379\n3492\n3717\n5802\n2817\n1234\n1005\n4101\n21\n2576\n4650\n3381\n1030\n2844\n1641\n936\n2729\n6469\n8913\n5994\n341\n4083\n5152\n3380\n8739\n6615\n3829\n164\n7927\n4779\n4216\n8528\n3641\n4606\n2769\n6970\n8850\n4971\n5489\n2008\n4564\n8682\n7784\n5768\n9252\n901\n438\n3577\n2765\n5904\n664\n3348\n6298\n3602\n2502\n8617\n7684\n5805\n4126\n2451\n6906\n7234\n9243\n3778\n1087\n9053\n5026\n2504\n5283\n2820\n4242\n797\n3925\n1383\n8750\n7861\n1403\n6973\n7617\n3065\n5395\n4347\n8144\n2688\n6527\n8597\n8673\n7327\n6331\n1422\n7115\n244\n7013\n2092\n54\n7970\n5742\n4823\n8588\n2938\n3060\n4149\n2375\n6616\n8803\n1555\n4369\n1380\n3011\n6144\n3367\n7370\n1995\n2602\n985\n8785\n8480\n9125\n1927\n3269\n3771\n1032\n7378\n5726\n2731\n2020\n6727\n8793\n523\n6036\n58\n7993\n5512\n5049\n2721\n8482\n673\n7937\n1168\n4472\n8247\n7287\n9017\n6421\n9190\n3584\n1819\n1792\n2810\n6033\n6749\n7677\n981\n7160\n4726\n1886\n7845\n6975\n7422\n4613\n4501\n2569\n4263\n3206\n4133\n2420\n3706\n8894\n2263\n5774\n4925\n9180\n8888\n2945\n2091\n1873\n6303\n729\n2156\n3267\n1860\n6597\n4930\n5253\n938\n580\n5825\n166\n8198\n6892\n8701\n74\n7094\n8954\n3156\n6140\n4279\n2229\n5466\n8413\n7105\n8192\n2632\n7638\n9308\n8530\n832\n4643\n2201\n3268\n4322\n6510\n2967\n262\n403\n1258\n8828\n5838\n8529\n2788\n237\n3838\n1291\n4056\n5628\n7281\n6476\n7935\n2850\n6041\n2013\n4016\n4576\n5312\n6827\n6321\n8669\n830\n1519\n2750\n6106\n6993\n6235\n5899\n7313\n5331\n4371\n7086\n8600\n2660\n5409\n3465\n5499\n6231\n5745\n1801\n5337\n4468\n1451\n4192\n1275\n1114\n4960\n8860\n3900\n6468\n1505\n8868\n5588\n3858\n1947\n2565\n1472\n243\n6583\n7085\n5374\n4291\n4426\n492\n2311\n8305\n3662\n8780\n7488\n3890\n5005\n4680\n7358\n9116\n4397\n5999\n7902\n83\n3566\n2134\n8942\n4767\n6601\n1745\n5736\n5254\n8017\n4015\n7690\n3798\n8947\n1067\n7945\n590\n2547\n2535\n64\n2053\n5359\n2493\n6669\n7473\n6147\n7175\n6983\n5196\n745\n2657\n3497\n697\n3161\n7528\n2239\n5991\n3201\n7681\n5189\n2959\n2044\n8917\n2046\n6313\n6333\n5318\n4301\n2213\n2933\n4121\n3903\n4392\n7889\n5323\n1055\n707\n3857\n518\n6078\n5134\n6645\n9138\n1592\n680\n4446\n7943\n3461\n3887\n5601\n2321\n6621\n558\n4914\n913\n5637\n6453\n8511\n4531\n1218\n5508\n2603\n6802\n8426\n8297\n2947\n5971\n6552\n5262\n5935\n782\n7435\n8357\n6139\n1136\n5008\n3585\n3627\n5356\n2997\n2347\n881\n4849\n8808\n8351\n4017\n2010\n6836\n4391\n3630\n3712\n2969\n5238\n4333\n2301\n4406\n1236\n1050\n1864\n8408\n8251\n8795\n5879\n3365\n7481\n8206\n2452\n1767\n8859\n124\n3948\n4444\n8962\n4438\n5003\n8428\n3105\n5117\n1095\n8755\n7881\n3097\n4877\n155\n1917\n2455\n6042\n337\n6724\n6045\n8483\n7135\n2242\n4566\n1679\n834\n1746\n795\n3548\n2314\n2036\n4046\n9129\n7084\n5091\n2413\n8170\n5775\n1817\n529\n813\n2916\n5130\n126\n1243\n2370\n4831\n9122\n3010\n5104\n2613\n6761\n5340\n3512\n6283\n2346\n653\n6121\n2615\n7421\n1869\n1002\n8834\n2991\n8992\n632\n1093\n4543\n645\n2352\n4115\n373\n1483\n6966\n8598\n3896\n3434\n5987\n8318\n1815\n1223\n1548\n6885\n5073\n6330\n2573\n1369\n4095\n1431\n2185\n5766\n1301\n7258\n8048\n7598\n2847\n1996\n2378\n8561\n743\n6381\n271\n1956\n7439\n7134\n6636\n5804\n1858\n6214\n4730\n8536\n1203\n3118\n9202\n1875\n5885\n168\n5898\n4014\n4186\n3346\n3041\n5558\n9296\n8157\n4339\n3234\n2604\n6803\n5387\n5590\n125\n2173\n8012\n8005\n4858\n651\n372\n378\n8366\n6299\n1449\n7793\n8541\n3235\n8043\n3086\n3983\n6949\n4690\n6494\n8406\n7408\n350\n7021\n8224\n7044\n7662\n6697\n7679\n169\n528\n7029\n2790\n7432\n7602\n8333\n1582\n1378\n482\n9279\n8015\n4514\n3542\n628\n5053\n6699\n6227\n2094\n1621\n847\n3598\n2728\n7276\n6620\n8345\n4278\n4059\n9058\n4173\n8134\n1997\n3182\n3224\n8129\n5109\n4494\n189\n7640\n180\n2963\n1123\n5593\n3263\n4185\n7140\n8990\n6320\n9275\n4601\n4854\n5907\n1135\n8083\n5964\n7788\n1992\n8069\n9174\n6160\n35\n8572\n2865\n46\n3952\n6418\n2510\n5783\n3816\n2715\n3930\n2548\n5204\n708\n7756\n3825\n777\n3550\n3929\n5440\n6751\n7764\n4070\n7331\n3743\n9131\n9206\n3828\n23\n41\n4197\n234\n5723\n7622\n8832\n2169\n5599\n2976\n5266\n1967\n90\n822\n2538\n3169\n6771\n7442\n498\n4967\n5580\n7581\n7680\n4728\n1115\n1064\n3106\n6266\n4415\n9294\n5597\n7059\n197\n7218\n6948\n5690\n1653\n4485\n4019\n3370\n919\n1330\n6085\n2078\n5427\n4545\n2435\n8862\n3633\n8145\n5221\n1388\n5913\n8140\n7471\n7156\n6989\n1190\n6832\n2830\n4387\n3454\n7469\n2910\n4526\n5187\n2410\n9223\n4681\n1300\n7407\n6523\n3616\n6894\n7253\n4515\n5874\n5448\n7137\n7957\n1130\n3092\n7054\n3516\n5797\n1000\n4336\n9090\n6403\n7255\n8919\n6522\n6760\n8898\n4803\n374\n8686\n3985\n7045\n3475\n6065\n7991\n1409\n7851\n6671\n6090\n5826\n7857\n1155\n8964\n1117\n7072\n6064\n2497\n4899\n2397\n3189\n2369\n5027\n5754\n8950\n5617\n8391\n914\n6264\n279\n6174\n5184\n3733\n5278\n2924\n567\n7994\n352\n8084\n2148\n2723\n3359\n70\n1870\n7708\n220\n3994\n9013\n3191\n9220\n4155\n5717\n1110\n2198\n785\n5325\n4770\n4250\n52\n4634\n9037\n601\n8036\n7996\n2483\n7232\n8675\n8836\n1279\n5346\n7676\n6104\n1515\n4603\n5607\n5144\n2628\n68\n440\n3586\n3083\n4830\n4378\n7762\n1134\n4542\n7850\n6296\n4011\n8751\n4776\n7954\n7102\n5697\n2032\n5729\n5017\n6962\n2051\n1092\n9019\n2759\n8581\n8618\n912\n2382\n4892\n8447\n8176\n5491\n5695\n5504\n1060\n578\n4320\n2379\n7649\n8416\n1613\n5344\n7512\n7865\n3037\n6689\n6557\n1569\n5955\n3707\n9168\n8566\n1775\n5950\n6943\n7804\n434\n6179\n1142\n7947\n6456\n6291\n5789\n6538\n9134\n3049\n5075\n5161\n1623\n948\n6302\n6063\n7516\n117\n506\n3302\n7146\n355\n1081\n2827\n1496\n2574\n6167\n3183\n4287\n5482\n7319\n7277\n3860\n3443\n3298\n8364\n3826\n7254\n2360\n5093\n7039\n6325\n2567\n4443\n559\n2625\n4228\n8967\n6405\n1674\n3936\n4475\n8556\n8585\n896\n3713\n6259\n4297\n6718\n2392\n2279\n4927\n1283\n2860\n7665\n663\n596\n6293\n6805\n2811\n7383\n8306\n8330\n3153\n2153\n2618\n2441\n3615\n8092\n552\n5285\n8124\n9247\n5530\n8175\n6242\n5660\n3433\n1610\n1832\n3892\n3862\n640\n2127\n4196\n3495\n7217\n5206\n4836\n7759\n800\n4227\n3699\n9055\n5665\n6826\n7463\n9065\n4720\n5069\n3453\n3358\n6532\n5970\n7921\n4087\n1547\n3424\n8040\n7995\n6787\n9069\n8716\n2561\n8199\n1479\n2767\n7818\n7145\n604\n7597\n4896\n9281\n4666\n185\n7978\n3059\n9221\n2135\n1800\n2974\n1529\n5948\n446\n4436\n8672\n3508\n6208\n5673\n6998\n5203\n278\n7041\n9110\n5853\n8121\n1764\n3046\n6575\n4738\n2228\n7761\n9322\n7019\n6931\n6383\n6762\n283\n3935\n6785\n471\n8214\n231\n3844\n5746\n2011\n7209\n336\n6433\n756\n9167\n6741\n3345\n7685\n4018\n6682\n9147\n4790\n5836\n5906\n676\n3964\n6362\n3510\n7510\n2308\n1806\n5917\n3387\n5423\n8900\n147\n3780\n1696\n9111\n6783\n6497\n4104\n3987\n260\n4616\n2121\n9283\n1400\n4670\n2735\n2096\n6521\n1423\n4523\n2243\n6667\n6990\n3944\n6915\n6763\n404\n2691\n1015\n7092\n7562\n8624\n2291\n5934\n5503\n2326\n2960\n842\n1963\n5568\n9050\n3806\n439\n9154\n6055\n6451\n7633\n688\n4354\n8890\n2813\n2872\n8102\n6609\n1497\n8389\n6449\n1682\n3594\n5103\n5812\n863\n3054\n8079\n2260\n2027\n3091\n7687\n6703\n3557\n2019\n8427\n2799\n8182\n6641\n3168\n2284\n1934\n6507\n1658\n3811\n1774\n7897\n2238\n2943\n191\n3869\n3188\n414\n8072\n7838\n1382\n4962\n5363\n4042\n1983\n4077\n7429\n4044\n1109\n1295\n386\n5481\n3927\n311\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/got10k_vot_val_split.txt",
    "content": "1349\n5878\n562\n2202\n8904\n1501\n8654\n2975\n2689\n3680\n5180\n1900\n7707\n4723\n8912\n4029\n3579\n869\n2888\n8657\n6599\n741\n4288\n2244\n7357\n5704\n8791\n208\n4805\n8526\n4887\n8871\n7468\n3343\n886\n7794\n2646\n6454\n6101\n7885\n7744\n1297\n4119\n4856\n122\n2286\n2925\n5131\n5843\n5320\n5626\n540\n1862\n7335\n699\n7760\n9198\n3259\n7345\n8698\n1280\n6479\n3100\n3988\n1322\n5737\n1268\n3257\n6791\n3326\n4815\n7644\n1082\n2826\n6821\n8984\n2553\n5290\n5909\n4762\n8096\n8066\n4325\n6666\n7193\n7114\n8060\n7872\n6788\n3544\n5460\n3507\n2509\n6626\n3429\n5542\n4220\n2968\n5271\n3863\n1868\n5581\n2012\n6270\n8038\n4050\n121\n2845\n1565\n1998\n2275\n5524\n6068\n7624\n4913\n9277\n1506\n803\n8848\n5925\n2450\n2072\n8190\n4753\n9162\n825\n7303\n9028\n2088\n8516\n1556\n5937\n7847\n2367\n7549\n1049\n1521\n4739\n3931\n8958\n4130\n7876\n897\n5985\n7346\n7537\n111\n3700\n1126\n7896\n3419\n1051\n5720\n1068\n3458\n146\n291\n6256\n5514\n2857\n4580\n6239\n6525\n8717\n391\n4841\n6676\n4360\n4211\n73\n1675\n1987\n4025\n1321\n662\n8265\n6424\n2758\n7765\n7656\n3209\n7497\n7600\n9039\n7697\n5177\n2983\n5622\n9295\n3284\n964\n2024\n1269\n4551\n8088\n5659\n2212\n5199\n5551\n8607\n5573\n5200\n7951\n8429\n7720\n5919\n1273\n3529\n6707\n9176\n7552\n3255\n5649\n6110\n1137\n9272\n788\n5786\n5186\n2667\n7630\n3953\n1828\n8827\n6471\n7815\n467\n6387\n3195\n6238\n6508\n2373\n5983\n4931\n2948\n921\n2438\n517\n3949\n2137\n3216\n5683\n3695\n1719\n4837\n9159\n6981\n860\n7410\n5497\n1770\n5557\n8810\n5194\n4857\n9100\n6329\n2609\n1925\n3686\n9041\n4924\n349\n9187\n3393\n3661\n7120\n6858\n4587\n3831\n3130\n5060\n6486\n8023\n824\n1354\n8861\n5534\n7292\n4389\n6029\n6226\n3505\n4326\n7445\n581\n6089\n3450\n7324\n6516\n6775\n1207\n4575\n5135\n3918\n9020\n3473\n3898\n7812\n6571\n6757\n6639\n2557\n1206\n6148\n7325\n8790\n4938\n7026\n4383\n8041\n1250\n7267\n1952\n7561\n8811\n4941\n8373\n4848\n6602\n8355\n8104\n5214\n4330\n3181\n3422\n456\n1782\n3408\n6530\n719\n7587\n3058\n740\n4207\n5336\n2798\n2473\n4221\n1493\n3281\n171\n9157\n9139\n7766\n3324\n5308\n3708\n2431\n8080\n2093\n2585\n406\n7040\n5064\n5247\n4758\n6512\n4257\n4935\n2705\n2572\n3436\n8513\n1385\n2637\n7091\n2761\n6007\n6694\n2422\n4917\n2186\n6898\n1390\n6965\n7698\n2002\n2692\n7365\n7373\n4091\n947\n3962\n8692\n1788\n6862\n6856\n1950\n1914\n5658\n3635\n1620\n4780\n2580\n1454\n2786\n687\n7238\n3648\n6452\n1197\n3190\n5900\n9043\n4958\n1821\n1187\n1153\n7169\n7350\n5674\n6254\n3025\n6680\n1690\n2899\n3893\n1577\n5728\n9189\n5077\n3560\n2179\n5462\n1402\n3654\n1376\n5506\n1179\n5647\n4686\n8644\n1352\n2855\n6079\n2254\n2668\n2287\n2457\n3418\n7264\n677\n3074\n2655\n1042\n2210\n4504\n8309\n4209\n4280\n3258\n2977\n84\n4705\n1244\n3511\n6355\n8813\n3228\n9266\n1122\n613\n732\n5202\n8425\n2638\n6470\n3541\n8132\n2063\n5129\n2818\n7949\n8090\n4465\n7295\n5239\n7009\n9271\n8563\n2832\n952\n8136\n6776\n3565\n5188\n7288\n6999\n285\n5487\n7608\n8584\n2071\n7868\n2804\n3655\n6847\n3276\n4272\n3910\n1574\n4559\n7580\n5014\n8183\n6386\n7574\n356\n4937\n2487\n9315\n7572\n3040\n671\n2682\n8626\n3868\n387\n8679\n4074\n1481\n3527\n3595\n4754\n2453\n1579\n4638\n9123\n1829\n3009\n3691\n763\n4875\n3572\n4273\n2777\n6032\n4793\n233\n7147\n996\n3199\n8835\n3517\n7210\n6125\n6037\n3684\n3915\n3180\n7043\n4458\n2889\n57\n7667\n8375\n1434\n7493\n4733\n5827\n2111\n1313\n7986\n3075\n2614\n7547\n4977\n8527\n3212\n7300\n5842\n5244\n3291\n597\n1007\n2030\n227\n3830\n5540\n247\n5643\n9333\n1958\n1371\n5220\n7926\n2927\n1516\n7130\n193\n1522\n6165\n6923\n3794\n4223\n5535\n2472\n8630\n3971\n9101\n2946\n4609\n7291\n8542\n6501\n7548\n4557\n6274\n5226\n7309\n1317\n6275\n1099\n4191\n7270\n5392\n2316\n3819\n1670\n8045\n4807\n8864\n2391\n5908\n8338\n8218\n6400\n9193\n3165\n843\n6613\n6941\n5629\n7557\n4321\n3702\n681\n1159\n4665\n5959\n1697\n5509\n8774\n7389\n3832\n3751\n8637\n1680\n6841\n703\n684\n8293\n3682\n5733\n4818\n3231\n5562\n9001\n3889\n7024\n2519\n1713\n3287\n219\n8776\n2289\n7212\n4832\n4684\n4617\n4237\n2649\n8185\n6326\n3568\n551\n1426\n8869\n312\n2905\n4165\n8248\n2558\n900\n1044\n8613\n7743\n5437\n7604\n3122\n5708\n8649\n2878\n4695\n4491\n7533\n5223\n7711\n1844\n5751\n3008\n8055\n4636\n61\n198\n2271\n5698\n4596\n4500\n5709\n5819\n7972\n2992\n1643\n1048\n6281\n8886\n360\n4198\n6814\n3960\n2606\n7001\n5888\n450\n7133\n7015\n7034\n5153\n8920\n5066\n469\n1302\n8816\n463\n8651\n5869\n6582\n5578\n1231\n9274\n7260\n7751\n8052\n6799\n2089\n2342\n8451\n3260\n5550\n7795\n2288\n1205\n40\n496\n8367\n7836\n5973\n3908\n5242\n5062\n2706\n997\n5419\n9201\n1965\n6062\n3050\n5302\n8735\n358\n2398\n7470\n1644\n8179\n7047\n1549\n5414\n2539\n7381\n589\n8166\n8505\n6035\n3956\n4540\n6721\n8074\n1062\n2384\n2531\n7159\n3902\n4584\n2554\n264\n8720\n2849\n4916\n5218\n7202\n883\n4560\n1677\n4317\n7863\n4509\n6577\n2903\n1452\n1416\n5369\n473\n6233\n6359\n5992\n4934\n8059\n6834\n4907\n3320\n8267\n8280\n2066\n2402\n1485\n3772\n3732\n4764\n9126\n3575\n5564\n5641\n1884\n2330\n1804\n344\n698\n3089\n1532\n4454\n761\n8094\n3432\n6811\n8722\n8826\n3222\n8614\n2901\n7003\n652\n8663\n4266\n413\n810\n75\n3334\n4905\n6438\n4756\n5137\n6528\n6534\n6988\n6177\n8533\n889\n5384\n7201\n5132\n7802\n6864\n3973\n873\n4840\n1482\n8376\n3769\n5858\n6675\n4286\n2593\n5863\n4353\n7817\n7540\n4999\n4838\n2303\n7913\n1508\n7755\n2784\n4964\n3431\n6209\n3755\n6399\n3954\n455\n5416\n7591\n245\n140\n9210\n4084\n967\n7798\n6795\n7095\n6733\n3861\n9264\n1045\n755\n8042\n7074\n7778\n6415\n4724\n6450\n2049\n1307\n3485\n1790\n7869\n3282\n6907\n3920\n2868\n5801\n5632\n5009\n3955\n7517\n5128\n3417\n3019\n1784\n2312\n2753\n6976\n342\n8266\n1849\n2273\n5037\n7880\n3793\n7401\n5412\n8279\n1257\n3670\n9049\n3266\n8955\n6519\n8916\n2858\n694\n5650\n4669\n1785\n3533\n2704\n8603\n3726\n6668\n497\n6815\n6157\n6646\n6964\n8097\n5645\n8481\n8215\n3775\n2542\n7514\n5699\n3518\n3740\n1404\n8981\n4086\n6397\n4204\n6899\n682\n6589\n4340\n7424\n9208\n6504\n4409\n1\n145\n1882\n4620\n2634\n4992\n5453\n3377\n7875\n530\n1235\n7605\n504\n1771\n8489\n345\n7353\n7797\n7174\n5914\n2871\n5721\n6067\n3582\n5467\n6234\n691\n8758\n2122\n1213\n1492\n1437\n2187\n1266\n2395\n7278\n8491\n5256\n1554\n8163\n5966\n7128\n7904\n1691\n6272\n3996\n1706\n1334\n1316\n6478\n6935\n1518\n6700\n8703\n8744\n8152\n8778\n5367\n4218\n9007\n6312\n606\n7565\n5293\n2891\n675\n2120\n826\n7008\n5705\n7748\n8010\n1498\n5330\n5472\n2215\n7627\n3016\n6588\n1850\n4128\n8569\n6987\n148\n8151\n8789\n7907\n8596\n715\n9060\n3872\n1750\n5889\n4047\n5960\n3120\n3449\n1421\n1102\n3333\n9197\n8796\n8123\n8007\n2028\n8404\n1945\n1985\n8109\n5380\n3504\n6739\n4180\n5835\n4243\n25\n4002\n1976\n158\n5181\n4885\n8985\n11\n6425\n5926\n7062\n5083\n8394\n4259\n5844\n1990\n3942\n5532\n2220\n28\n5957\n149\n6748\n3559\n7647\n2566\n1359\n5259\n7010\n554\n6005\n8172\n8125\n1350\n9051\n1973\n1386\n159\n7007\n3220\n1846\n3093\n4445\n2056\n8370\n3211\n4384\n2231\n273\n642\n5311\n265\n226\n9012\n7879\n118\n7109\n7251\n1760\n8667\n2876\n7162\n3552\n6901\n6779\n5021\n6524\n4957\n3114\n4544\n441\n1848\n2136\n2458\n8662\n1127\n5541\n3026\n1080\n6780\n2224\n8259\n1073\n9000\n7244\n7977\n500\n4435\n7376\n7979\n1435\n9291\n7704\n3521\n210\n6269\n8570\n3285\n8039\n3546\n6203\n1183\n6107\n4147\n2234\n7185\n3192\n7155\n2001\n7777\n876\n944\n908\n7791\n6784\n65\n9172\n5675\n3886\n7891\n2978\n1008\n5630\n591\n5067\n1139\n577\n9015\n574\n8137\n7786\n5765\n4900\n4090\n7842\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/lasot_train_split.txt",
    "content": "airplane-10\nairplane-11\nairplane-12\nairplane-14\nairplane-16\nairplane-17\nairplane-18\nairplane-19\nairplane-2\nairplane-20\nairplane-3\nairplane-4\nairplane-5\nairplane-6\nairplane-7\nairplane-8\nbasketball-10\nbasketball-12\nbasketball-13\nbasketball-14\nbasketball-15\nbasketball-16\nbasketball-17\nbasketball-18\nbasketball-19\nbasketball-2\nbasketball-20\nbasketball-3\nbasketball-4\nbasketball-5\nbasketball-8\nbasketball-9\nbear-1\nbear-10\nbear-11\nbear-12\nbear-13\nbear-14\nbear-15\nbear-16\nbear-18\nbear-19\nbear-20\nbear-3\nbear-5\nbear-7\nbear-8\nbear-9\nbicycle-1\nbicycle-10\nbicycle-11\nbicycle-12\nbicycle-13\nbicycle-14\nbicycle-15\nbicycle-16\nbicycle-17\nbicycle-19\nbicycle-20\nbicycle-3\nbicycle-4\nbicycle-5\nbicycle-6\nbicycle-8\nbird-1\nbird-10\nbird-11\nbird-12\nbird-13\nbird-14\nbird-16\nbird-18\nbird-19\nbird-20\nbird-4\nbird-5\nbird-6\nbird-7\nbird-8\nbird-9\nboat-1\nboat-10\nboat-11\nboat-13\nboat-14\nboat-15\nboat-16\nboat-18\nboat-19\nboat-2\nboat-20\nboat-5\nboat-6\nboat-7\nboat-8\nboat-9\nbook-1\nbook-12\nbook-13\nbook-14\nbook-15\nbook-16\nbook-17\nbook-18\nbook-2\nbook-20\nbook-4\nbook-5\nbook-6\nbook-7\nbook-8\nbook-9\nbottle-10\nbottle-11\nbottle-13\nbottle-15\nbottle-16\nbottle-17\nbottle-19\nbottle-2\nbottle-20\nbottle-3\nbottle-4\nbottle-5\nbottle-6\nbottle-7\nbottle-8\nbottle-9\nbus-1\nbus-10\nbus-11\nbus-12\nbus-13\nbus-14\nbus-15\nbus-16\nbus-18\nbus-20\nbus-3\nbus-4\nbus-6\nbus-7\nbus-8\nbus-9\ncar-1\ncar-10\ncar-11\ncar-12\ncar-13\ncar-14\ncar-15\ncar-16\ncar-18\ncar-19\ncar-20\ncar-3\ncar-4\ncar-5\ncar-7\ncar-8\ncat-10\ncat-11\ncat-12\ncat-13\ncat-14\ncat-15\ncat-16\ncat-17\ncat-19\ncat-2\ncat-4\ncat-5\ncat-6\ncat-7\ncat-8\ncat-9\ncattle-1\ncattle-10\ncattle-11\ncattle-14\ncattle-15\ncattle-16\ncattle-17\ncattle-18\ncattle-19\ncattle-20\ncattle-3\ncattle-4\ncattle-5\ncattle-6\ncattle-8\ncattle-9\nchameleon-1\nchameleon-10\nchameleon-12\nchameleon-13\nchameleon-14\nchameleon-15\nchameleon-16\nchameleon-17\nchameleon-18\nchameleon-19\nchameleon-2\nchameleon-4\nchameleon-5\nchameleon-7\nchameleon-8\nchameleon-9\ncoin-1\ncoin-10\ncoin-11\ncoin-12\ncoin-13\ncoin-14\ncoin-15\ncoin-16\ncoin-17\ncoin-19\ncoin-2\ncoin-20\ncoin-4\ncoin-5\ncoin-8\ncoin-9\ncrab-1\ncrab-10\ncrab-11\ncrab-13\ncrab-14\ncrab-15\ncrab-16\ncrab-17\ncrab-19\ncrab-2\ncrab-20\ncrab-4\ncrab-5\ncrab-7\ncrab-8\ncrab-9\ncrocodile-1\ncrocodile-11\ncrocodile-12\ncrocodile-13\ncrocodile-15\ncrocodile-16\ncrocodile-17\ncrocodile-18\ncrocodile-19\ncrocodile-2\ncrocodile-20\ncrocodile-5\ncrocodile-6\ncrocodile-7\ncrocodile-8\ncrocodile-9\ncup-10\ncup-11\ncup-12\ncup-13\ncup-14\ncup-15\ncup-16\ncup-18\ncup-19\ncup-2\ncup-20\ncup-3\ncup-5\ncup-6\ncup-8\ncup-9\ndeer-1\ndeer-11\ndeer-12\ndeer-13\ndeer-15\ndeer-16\ndeer-17\ndeer-18\ndeer-19\ndeer-2\ndeer-20\ndeer-3\ndeer-5\ndeer-6\ndeer-7\ndeer-9\ndog-10\ndog-11\ndog-12\ndog-13\ndog-14\ndog-16\ndog-17\ndog-18\ndog-2\ndog-20\ndog-3\ndog-4\ndog-5\ndog-6\ndog-8\ndog-9\ndrone-1\ndrone-10\ndrone-11\ndrone-12\ndrone-14\ndrone-16\ndrone-17\ndrone-18\ndrone-19\ndrone-20\ndrone-3\ndrone-4\ndrone-5\ndrone-6\ndrone-8\ndrone-9\nelectricfan-11\nelectricfan-12\nelectricfan-13\nelectricfan-14\nelectricfan-15\nelectricfan-16\nelectricfan-17\nelectricfan-19\nelectricfan-2\nelectricfan-3\nelectricfan-4\nelectricfan-5\nelectricfan-6\nelectricfan-7\nelectricfan-8\nelectricfan-9\nelephant-10\nelephant-11\nelephant-13\nelephant-14\nelephant-15\nelephant-17\nelephant-19\nelephant-2\nelephant-20\nelephant-3\nelephant-4\nelephant-5\nelephant-6\nelephant-7\nelephant-8\nelephant-9\nflag-1\nflag-10\nflag-11\nflag-12\nflag-13\nflag-14\nflag-15\nflag-16\nflag-17\nflag-18\nflag-19\nflag-20\nflag-4\nflag-6\nflag-7\nflag-8\nfox-1\nfox-10\nfox-11\nfox-12\nfox-13\nfox-14\nfox-15\nfox-16\nfox-17\nfox-18\nfox-19\nfox-4\nfox-6\nfox-7\nfox-8\nfox-9\nfrog-1\nfrog-10\nfrog-11\nfrog-12\nfrog-13\nfrog-14\nfrog-15\nfrog-16\nfrog-17\nfrog-18\nfrog-19\nfrog-2\nfrog-5\nfrog-6\nfrog-7\nfrog-8\ngametarget-10\ngametarget-11\ngametarget-12\ngametarget-14\ngametarget-15\ngametarget-16\ngametarget-17\ngametarget-18\ngametarget-19\ngametarget-20\ngametarget-3\ngametarget-4\ngametarget-5\ngametarget-6\ngametarget-8\ngametarget-9\ngecko-10\ngecko-11\ngecko-12\ngecko-13\ngecko-14\ngecko-15\ngecko-17\ngecko-18\ngecko-2\ngecko-20\ngecko-3\ngecko-4\ngecko-6\ngecko-7\ngecko-8\ngecko-9\ngiraffe-1\ngiraffe-11\ngiraffe-12\ngiraffe-14\ngiraffe-16\ngiraffe-17\ngiraffe-18\ngiraffe-19\ngiraffe-20\ngiraffe-3\ngiraffe-4\ngiraffe-5\ngiraffe-6\ngiraffe-7\ngiraffe-8\ngiraffe-9\ngoldfish-1\ngoldfish-11\ngoldfish-12\ngoldfish-13\ngoldfish-14\ngoldfish-15\ngoldfish-16\ngoldfish-17\ngoldfish-18\ngoldfish-19\ngoldfish-2\ngoldfish-20\ngoldfish-4\ngoldfish-5\ngoldfish-6\ngoldfish-9\ngorilla-1\ngorilla-10\ngorilla-11\ngorilla-12\ngorilla-14\ngorilla-15\ngorilla-16\ngorilla-17\ngorilla-18\ngorilla-19\ngorilla-2\ngorilla-20\ngorilla-3\ngorilla-5\ngorilla-7\ngorilla-8\nguitar-1\nguitar-11\nguitar-12\nguitar-13\nguitar-14\nguitar-15\nguitar-17\nguitar-18\nguitar-19\nguitar-2\nguitar-20\nguitar-4\nguitar-5\nguitar-6\nguitar-7\nguitar-9\nhand-1\nhand-10\nhand-11\nhand-12\nhand-13\nhand-14\nhand-15\nhand-17\nhand-18\nhand-19\nhand-20\nhand-4\nhand-5\nhand-6\nhand-7\nhand-8\nhat-10\nhat-11\nhat-12\nhat-13\nhat-14\nhat-15\nhat-16\nhat-17\nhat-19\nhat-20\nhat-3\nhat-4\nhat-6\nhat-7\nhat-8\nhat-9\nhelmet-1\nhelmet-10\nhelmet-12\nhelmet-14\nhelmet-15\nhelmet-16\nhelmet-17\nhelmet-18\nhelmet-2\nhelmet-20\nhelmet-3\nhelmet-4\nhelmet-6\nhelmet-7\nhelmet-8\nhelmet-9\nhippo-10\nhippo-11\nhippo-12\nhippo-13\nhippo-14\nhippo-15\nhippo-16\nhippo-17\nhippo-18\nhippo-19\nhippo-2\nhippo-3\nhippo-4\nhippo-5\nhippo-6\nhippo-8\nhorse-10\nhorse-11\nhorse-13\nhorse-14\nhorse-16\nhorse-17\nhorse-18\nhorse-19\nhorse-2\nhorse-20\nhorse-3\nhorse-5\nhorse-6\nhorse-7\nhorse-8\nhorse-9\nkangaroo-1\nkangaroo-10\nkangaroo-12\nkangaroo-13\nkangaroo-15\nkangaroo-16\nkangaroo-17\nkangaroo-18\nkangaroo-19\nkangaroo-20\nkangaroo-3\nkangaroo-4\nkangaroo-6\nkangaroo-7\nkangaroo-8\nkangaroo-9\nkite-1\nkite-11\nkite-12\nkite-13\nkite-14\nkite-16\nkite-17\nkite-18\nkite-19\nkite-2\nkite-20\nkite-3\nkite-5\nkite-7\nkite-8\nkite-9\nleopard-10\nleopard-11\nleopard-12\nleopard-13\nleopard-14\nleopard-15\nleopard-17\nleopard-18\nleopard-19\nleopard-2\nleopard-3\nleopard-4\nleopard-5\nleopard-6\nleopard-8\nleopard-9\nlicenseplate-1\nlicenseplate-10\nlicenseplate-11\nlicenseplate-14\nlicenseplate-16\nlicenseplate-17\nlicenseplate-18\nlicenseplate-19\nlicenseplate-2\nlicenseplate-20\nlicenseplate-3\nlicenseplate-4\nlicenseplate-5\nlicenseplate-7\nlicenseplate-8\nlicenseplate-9\nlion-10\nlion-11\nlion-13\nlion-14\nlion-15\nlion-16\nlion-17\nlion-18\nlion-19\nlion-2\nlion-3\nlion-4\nlion-6\nlion-7\nlion-8\nlion-9\nlizard-10\nlizard-11\nlizard-12\nlizard-14\nlizard-15\nlizard-16\nlizard-17\nlizard-18\nlizard-19\nlizard-2\nlizard-20\nlizard-4\nlizard-5\nlizard-7\nlizard-8\nlizard-9\nmicrophone-1\nmicrophone-10\nmicrophone-11\nmicrophone-12\nmicrophone-13\nmicrophone-15\nmicrophone-17\nmicrophone-18\nmicrophone-19\nmicrophone-20\nmicrophone-3\nmicrophone-4\nmicrophone-5\nmicrophone-7\nmicrophone-8\nmicrophone-9\nmonkey-1\nmonkey-10\nmonkey-11\nmonkey-12\nmonkey-13\nmonkey-14\nmonkey-15\nmonkey-16\nmonkey-18\nmonkey-19\nmonkey-2\nmonkey-20\nmonkey-5\nmonkey-6\nmonkey-7\nmonkey-8\nmotorcycle-10\nmotorcycle-11\nmotorcycle-12\nmotorcycle-13\nmotorcycle-14\nmotorcycle-15\nmotorcycle-16\nmotorcycle-17\nmotorcycle-19\nmotorcycle-2\nmotorcycle-20\nmotorcycle-4\nmotorcycle-5\nmotorcycle-6\nmotorcycle-7\nmotorcycle-8\nmouse-10\nmouse-11\nmouse-12\nmouse-13\nmouse-14\nmouse-15\nmouse-16\nmouse-18\nmouse-19\nmouse-2\nmouse-20\nmouse-3\nmouse-4\nmouse-5\nmouse-6\nmouse-7\nperson-11\nperson-13\nperson-14\nperson-15\nperson-16\nperson-17\nperson-18\nperson-19\nperson-2\nperson-20\nperson-3\nperson-4\nperson-6\nperson-7\nperson-8\nperson-9\npig-1\npig-11\npig-12\npig-14\npig-15\npig-16\npig-17\npig-19\npig-20\npig-3\npig-4\npig-5\npig-6\npig-7\npig-8\npig-9\npool-1\npool-10\npool-11\npool-13\npool-14\npool-16\npool-17\npool-18\npool-19\npool-2\npool-20\npool-4\npool-5\npool-6\npool-8\npool-9\nrabbit-1\nrabbit-11\nrabbit-12\nrabbit-14\nrabbit-15\nrabbit-16\nrabbit-18\nrabbit-2\nrabbit-20\nrabbit-3\nrabbit-4\nrabbit-5\nrabbit-6\nrabbit-7\nrabbit-8\nrabbit-9\nracing-1\nracing-11\nracing-12\nracing-13\nracing-14\nracing-17\nracing-18\nracing-19\nracing-2\nracing-3\nracing-4\nracing-5\nracing-6\nracing-7\nracing-8\nracing-9\nrobot-10\nrobot-11\nrobot-12\nrobot-13\nrobot-14\nrobot-15\nrobot-16\nrobot-17\nrobot-18\nrobot-2\nrobot-20\nrobot-3\nrobot-4\nrobot-6\nrobot-7\nrobot-9\nrubicCube-10\nrubicCube-11\nrubicCube-12\nrubicCube-13\nrubicCube-15\nrubicCube-16\nrubicCube-17\nrubicCube-18\nrubicCube-2\nrubicCube-20\nrubicCube-3\nrubicCube-4\nrubicCube-5\nrubicCube-7\nrubicCube-8\nrubicCube-9\nsepia-1\nsepia-10\nsepia-11\nsepia-12\nsepia-14\nsepia-15\nsepia-17\nsepia-18\nsepia-19\nsepia-2\nsepia-20\nsepia-3\nsepia-4\nsepia-5\nsepia-7\nsepia-9\nshark-1\nshark-10\nshark-11\nshark-12\nshark-13\nshark-14\nshark-15\nshark-16\nshark-17\nshark-18\nshark-19\nshark-20\nshark-4\nshark-7\nshark-8\nshark-9\nsheep-1\nsheep-10\nsheep-11\nsheep-12\nsheep-13\nsheep-14\nsheep-15\nsheep-16\nsheep-17\nsheep-18\nsheep-19\nsheep-2\nsheep-20\nsheep-4\nsheep-6\nsheep-8\nskateboard-1\nskateboard-10\nskateboard-11\nskateboard-12\nskateboard-13\nskateboard-14\nskateboard-15\nskateboard-17\nskateboard-18\nskateboard-2\nskateboard-20\nskateboard-4\nskateboard-5\nskateboard-6\nskateboard-7\nskateboard-9\nspider-1\nspider-10\nspider-11\nspider-12\nspider-13\nspider-15\nspider-17\nspider-19\nspider-2\nspider-3\nspider-4\nspider-5\nspider-6\nspider-7\nspider-8\nspider-9\nsquirrel-1\nsquirrel-10\nsquirrel-12\nsquirrel-14\nsquirrel-15\nsquirrel-16\nsquirrel-17\nsquirrel-18\nsquirrel-2\nsquirrel-20\nsquirrel-3\nsquirrel-4\nsquirrel-5\nsquirrel-6\nsquirrel-7\nsquirrel-9\nsurfboard-1\nsurfboard-10\nsurfboard-11\nsurfboard-13\nsurfboard-14\nsurfboard-15\nsurfboard-16\nsurfboard-17\nsurfboard-18\nsurfboard-19\nsurfboard-2\nsurfboard-20\nsurfboard-3\nsurfboard-6\nsurfboard-7\nsurfboard-9\nswing-1\nswing-11\nswing-12\nswing-13\nswing-15\nswing-16\nswing-18\nswing-19\nswing-2\nswing-3\nswing-4\nswing-5\nswing-6\nswing-7\nswing-8\nswing-9\ntank-1\ntank-10\ntank-11\ntank-12\ntank-13\ntank-15\ntank-17\ntank-18\ntank-19\ntank-2\ntank-20\ntank-3\ntank-4\ntank-5\ntank-7\ntank-8\ntiger-1\ntiger-10\ntiger-11\ntiger-13\ntiger-14\ntiger-15\ntiger-16\ntiger-17\ntiger-19\ntiger-2\ntiger-20\ntiger-3\ntiger-5\ntiger-7\ntiger-8\ntiger-9\ntrain-10\ntrain-12\ntrain-13\ntrain-14\ntrain-15\ntrain-16\ntrain-17\ntrain-18\ntrain-19\ntrain-2\ntrain-3\ntrain-4\ntrain-5\ntrain-6\ntrain-8\ntrain-9\ntruck-1\ntruck-10\ntruck-11\ntruck-12\ntruck-13\ntruck-14\ntruck-15\ntruck-17\ntruck-18\ntruck-19\ntruck-2\ntruck-20\ntruck-4\ntruck-5\ntruck-8\ntruck-9\nturtle-1\nturtle-10\nturtle-11\nturtle-12\nturtle-13\nturtle-14\nturtle-15\nturtle-17\nturtle-18\nturtle-19\nturtle-2\nturtle-20\nturtle-3\nturtle-4\nturtle-6\nturtle-7\numbrella-1\numbrella-10\numbrella-11\numbrella-12\numbrella-13\numbrella-14\numbrella-15\numbrella-16\numbrella-18\numbrella-20\numbrella-3\numbrella-4\numbrella-5\numbrella-6\numbrella-7\numbrella-8\nvolleyball-10\nvolleyball-11\nvolleyball-12\nvolleyball-14\nvolleyball-15\nvolleyball-16\nvolleyball-17\nvolleyball-2\nvolleyball-20\nvolleyball-3\nvolleyball-4\nvolleyball-5\nvolleyball-6\nvolleyball-7\nvolleyball-8\nvolleyball-9\nyoyo-1\nyoyo-10\nyoyo-11\nyoyo-12\nyoyo-13\nyoyo-14\nyoyo-16\nyoyo-18\nyoyo-2\nyoyo-20\nyoyo-3\nyoyo-4\nyoyo-5\nyoyo-6\nyoyo-8\nyoyo-9\nzebra-1\nzebra-11\nzebra-12\nzebra-13\nzebra-15\nzebra-18\nzebra-19\nzebra-2\nzebra-20\nzebra-3\nzebra-4\nzebra-5\nzebra-6\nzebra-7\nzebra-8\nzebra-9\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/data_specs/trackingnet_classmap.txt",
    "content": "Nf1aqv5Fg5o_0\tairplane\nAAB6lO-XiKE_0\tperson\nAACM71csS-Q_0\tperson\nAACM71csS-Q_1\tperson\nAARNQeeGCeM_1\tperson\nAARldOxX9Qc_0\tbird\nAATSbTthMRo_1\tperson\nAAVQ--F7Bk8_7\tbird\nAAVQ--F7Bk8_2\tbird\nAAVQ--F7Bk8_8\tbird\nAAWK6esRYaE_0\tperson\nAAWK6esRYaE_1\tperson\nAAjY2Ci68z8_0\tperson\nAA19zjGEPvg_1\tbear\nAA28Bcp5cJ4_0\ttrain\nABBGULxaufw_0\tperson\nABF8Qzi1y6k_1\tbear\nABIlEiPfEC4_0\tbird\nABJ_agLToOw_0\tbird\nABZMoeeFyek_0\tbicycle\nABny-jw1_S0_0\telephant\nABrhnT3LRWs_2\tcat\nABxlnMGfo5c_0\tumbrella\nAByCCGnybVU_1\tperson\nAB2MjrpRiEQ_0\thorse\nAB-q-hxh9XQ_4\tbus\nAB-q-hxh9XQ_1\tbus\nAB-q-hxh9XQ_3\tbus\nACDuy9fWQCs_1\tumbrella\nACFxVnoXE2k_1\thorse\nACMvGMt8Neo_0\tperson\nACM6PJWHfcM_0\tperson\nACOGOPL4ZH0_1\tperson\nACOGOPL4ZH0_0\tperson\nACS5TtaAdG8_0\ttruck\nACarEC5tuT8_0\ttruck\nACiNZsAvVTE_0\tperson\nACkYaVC9f9M_1\tumbrella\nACnQKLobnGE_4\tairplane\nACnQKLobnGE_5\tairplane\nAC0Z4yw1hf0_0\tperson\nAC0Z4yw1hf0_1\tperson\nAC-10OYYnLM_1\tperson\nAC-10OYYnLM_0\tperson\nADHNPU5iB_4_0\tcat\nADWpC6kDWFU_0\tperson\nADiIG2D8pds_2\tmotorcycle\nADiIG2D8pds_0\tmotorcycle\nADi674XOuRY_0\tdog\nADn8ZdVYOcc_0\ttrain\nADn8ZdVYOcc_2\ttrain\nAD1cVG81mpA_0\tperson\nAD4EACfWAIM_0\thorse\nAD4EACfWAIM_1\thorse\nAD531xkux4k_0\tperson\nAD7A6_o0Las_0\thorse\nAEQT6XxEeT0_0\tperson\nAEQT6XxEeT0_1\tperson\nAESfphazWKA_0\tperson\nAESfphazWKA_1\tperson\nAEokTVMPd4A_0\tperson\nAEtwwIR9UkI_0\tdog\nAE2TrzJHr2s_1\tmotorcycle\nAE3t_VNk3eo_0\tperson\nAE6G6W2CL9M_1\tperson\nAE7tEK8S9pk_0\tbird\nAE7tEK8S9pk_3\tbird\nAE-k9jcdaJk_1\tgiraffe\nAFLrK88FzTI_0\tmotorcycle\nAFOjy-9Kf-8_0\tperson\nAFSTw_O6inE_0\tperson\nAFSTw_O6inE_1\tperson\nAFT64SYoPTo_1\tperson\nAFeRUltwvNE_0\tknife\nAFeRUltwvNE_2\tknife\nAFf9I30fB6U_0\tperson\nAFkSCsJ_jeg_0\tperson\nAFkSCsJ_jeg_1\tperson\nAFnPp9mvoJs_0\thorse\nAFpVfranYCA_1\tknife\nAFrLubifeb4_0\tairplane\nAFrLubifeb4_2\tairplane\nAFsmSsZBS6I_1\tperson\nAFsmSsZBS6I_0\tperson\nAF0FDnfdpro_0\ttrain\nAF0-2lDeBME_1\tbird\nAF2bYjH_Q8c_0\tperson\nAF4nO1MeUis_1\ttrain\nAGV9gZ6ePKk_0\tairplane\nAGXVFK896Os_0\tcow\nAGYehDNUqx0_1\tairplane\nAGYehDNUqx0_0\tairplane\nAGdqwMVGRoU_0\thorse\nAGfcGfMXHPM_3\telephant\nAGsg2IV8FME_1\tskateboard\nZBPURFcpqDM_0\tmotorcycle\nZBXAMWkamQk_2\tknife\nZBXAMWkamQk_1\tknife\nZBcCcSynS3Y_1\tcar\nZBcTSnaCcqE_1\tperson\nZBcTSnaCcqE_0\tperson\nZBcjhADZaUk_0\tbear\nZBdz7fg01uE_0\tumbrella\nZBp5ICCzoK8_0\tperson\nZBriZpPQR6Q_0\tcat\nZBvEIHeKcKg_2\tzebra\nZBvEIHeKcKg_9\tzebra\nZBvEIHeKcKg_0\tzebra\nZBvEIHeKcKg_1\tzebra\nZBvEIHeKcKg_3\tzebra\nZBvEIHeKcKg_4\tzebra\nZBvEIHeKcKg_5\tzebra\nZBvEIHeKcKg_6\tzebra\nZBvEIHeKcKg_7\tzebra\nZBvEIHeKcKg_8\tzebra\nZB0EfmbWfng_0\thorse\nZB0kV8Ni0e8_0\tperson\nZB_pe6v1lVI_0\tperson\nZB_pe6v1lVI_2\tperson\nZCAOpABRfTI_10\telephant\nZCAOpABRfTI_0\telephant\nZCAOpABRfTI_3\telephant\nZCAOpABRfTI_4\telephant\nZCAOpABRfTI_6\telephant\nZCAOpABRfTI_7\telephant\nZCAOpABRfTI_8\telephant\nZCFCltdIjeg_1\tperson\nZCFCltdIjeg_0\tperson\nZCGB4r_lWmY_0\thorse\nZCS_eyAufDo_0\tperson\nZCTwXcewINc_0\tcow\nZCfqT4CDOYA_1\tbird\nZCgDbEHLsIg_0\tperson\nZClABNZVqqw_1\tperson\nZCmoG6WgVO4_1\tperson\nZCmoG6WgVO4_0\tperson\nZCnJ6weWtz8_1\tperson\nZCnJ6weWtz8_0\tperson\nZCnJ6weWtz8_2\tperson\nZCzrSOZhkx8_1\tperson\nZCzrSOZhkx8_2\tperson\nZC3Y42jSG_0_0\tperson\nZC5Jtr93Fc0_0\tcat\nZDDtjYsFrzY_0\tmotorcycle\nZDMLHna_uZU_1\tskateboard\nZDMSLfnIpw0_0\tperson\nZDS-TQTDheA_0\tperson\nZDWUEeCoa0c_0\tperson\nZDfRsMjEWrU_0\tperson\nZDucdx9SldA_0\tbicycle\nZDwG7VWIZ2E_0\tmotorcycle\nZDw-tgE8yQw_0\tperson\nZEA5lDwY3hY_0\tperson\nZERPmLuCNr0_1\tskateboard\nZEYyXBrvcIU_0\tperson\nZEbxfeAOLec_1\tmotorcycle\nZEdGptkowmk_2\tcow\nZEdsROg2ZAk_2\thorse\nZEgcTqeZxOk_1\tperson\nZEiW5hvCQyM_0\tbird\nZE16Mis16oE_0\tbus\nZE3Vro7d4pA_0\tcat\nZE415SbIjYI_7\tbird\nZE5h8vmL_Vw_0\tboat\nZE6oeN8ZzDA_1\tperson\nZE6oeN8ZzDA_0\tperson\nZFKQ9r76HHU_1\telephant\nZFKYTz9Jkhw_0\tumbrella\nZFSspVdQ_1M_0\tperson\nZFSspVdQ_1M_1\tperson\nZFe5vGzmYgY_0\tbear\nZFe5vGzmYgY_4\tbear\nZFfH8M8dMH8_5\tbird\nZFk9b7tQz1g_0\tperson\nZFn422HSENU_2\tairplane\nZFw7fJO3h3U_0\tmotorcycle\nZF2yE0Tm8D0_0\tcow\nZF5yV-qvHfg_0\tbicycle\nZF8rySXBivY_0\tperson\nZF_u1UFqAvg_0\tperson\nZGHtP6pLosk_0\tperson\nZGT9Ky1jJ0E_0\thorse\nZGWqLNy2PDM_2\tbird\nZGeWYNFOH7U_0\tperson\nZGhdqsb3kNA_0\tcar\nZGhdqsb3kNA_3\tcar\nZGhdqsb3kNA_1\tcar\nZGkmBkelEBU_0\tperson\nZGpMZT1HUiw_0\thorse\nZGsHiz0oPuw_0\tbus\nZGvfU-Fgk40_1\tperson\nZGyWFwMmdbs_0\tperson\nZG9dVnPGocw_0\tperson\nZHDkDNgRSz0_0\ttrain\nZHFPykjdFAY_1\tperson\nZHPeB20mRyI_0\tcow\nZHPeB20mRyI_1\tcow\nZHX1xXuU_Jw_0\tperson\nZHlb-NoDPiE_1\telephant\nZHlb-NoDPiE_2\telephant\nZHlb-NoDPiE_4\telephant\nZHl7b8RItn0_0\thorse\nZHnW6ge8wBc_0\tcat\nZHodaPFcFYU_0\tperson\nZHovXJVH8xk_0\ttruck\nZHpZ3CGHl44_0\tperson\nZHrrW673jzQ_1\tperson\nZHrrW673jzQ_0\tperson\nZHrsTuxP7aI_1\thorse\nZHu6CNOlw3g_0\tcow\nZHu6CNOlw3g_1\tcow\nZHxx4jT0QY8_0\tperson\nZH1tP4KBq4c_0\tgiraffe\nZH5HXdNA_Vg_0\tperson\nZH-X6nu5grI_33\thorse\nZH-X6nu5grI_2\thorse\nZH-X6nu5grI_3\thorse\nZH-X6nu5grI_6\thorse\nZH-X6nu5grI_7\thorse\nZH-X6nu5grI_8\thorse\nZH_6GNzE7AE_0\tperson\nZIAnd6kIMac_0\tbird\nZIAnd6kIMac_1\tbird\nZICz-o8kLz0_0\tskateboard\nAGx9YQ6C-6o_7\tcar\nAG1KXUn4YG0_0\tperson\nAG_bCNeWGbQ_0\telephant\nAHARpIfT490_0\tdog\nAHIF--VOeQs_0\tperson\nAHJcPNPqKmI_0\thorse\nAHKFqtjfRZA_2\tbear\nAHLL47_EdEA_1\tperson\nAHLL47_EdEA_0\tperson\nAHNC2jifaeA_1\tairplane\nAHQLEaBATbw_0\tperson\nAHQW1ru8IzY_0\tairplane\nAHQrFFp5yq4_0\tairplane\nAHiwgwMi8HU_0\tdog\nAHjEWaIP4Us_0\tcow\nAHkvSb7kMDQ_0\tperson\nAHn7KxEbpSw_0\tperson\nAHvhccaU6e0_0\tbus\nAHx-m9m2WSM_0\tperson\nAIAtwCnT8D0_1\tperson\nAIBVp_3pm4U_1\tperson\nAIBVp_3pm4U_0\tperson\nAIFwUvUUIAU_1\tperson\nAIPKb-NMVjk_0\tairplane\nAIPKb-NMVjk_3\tairplane\nAIVpT8BRXaQ_1\thorse\nAIYDjtWzamM_0\tbear\nAIYDjtWzamM_1\tbear\nAIZGolX95Do_0\tperson\nAIbvvs9Mppk_0\tperson\nAIduTWoo-tY_0\tskateboard\nAIeFzUH7L38_1\ttrain\nAIkHZuaZGZc_1\telephant\nAIkHZuaZGZc_2\telephant\nAIpwAHaTBsI_0\ttrain\nAI00Hva5A8g_0\tperson\nAI38cuNcfsE_0\tknife\nAI73dwp8OlI_1\ttrain\nAJAy74dPvNA_0\tperson\nAJCXZxF7mEU_1\tskateboard\nAJDMiWpRbdY_0\tperson\nAJILdTCo1mA_0\tdog\nAJKXpUsj3I0_0\tbird\nAJRdbCnFyVo_0\telephant\nAJTfeXepoNQ_0\tbus\nAJZ65x_ashE_0\tairplane\nAJaOK6nLWLU_0\tperson\nAJaOK6nLWLU_1\tperson\nAJaOK6nLWLU_2\tperson\nAJh6EhObuEU_0\tperson\nAJiQZJH_ZsU_0\tbird\nAJiYw7-oCvA_1\tknife\nAJiYw7-oCvA_2\tknife\nAJiYw7-oCvA_0\tknife\nAJkWw2b2Qjg_0\thorse\nAJor90pfjM8_0\tcow\nAJtuQLfNvSs_0\tcat\nAKBoEjrtQwE_1\ttrain\nAKDi2KVrR1Q_0\tskateboard\nAKIcyYzL9C0_0\tcat\nAKMl62ZFICw_3\tbus\nAKMl62ZFICw_1\tbus\nAKN6nvHB7P0_2\tairplane\nAKN6nvHB7P0_3\tairplane\nAKPDvaUNx94_1\thorse\nAKPDvaUNx94_2\thorse\nAKVUSpeg9Jk_0\tknife\nAKxpzCrmsi8_0\tbus\nAK4AJfDZfEo_0\tcat\nAK64udGI1BA_0\tumbrella\nAK8imx-InYk_1\thorse\nAK8imx-InYk_2\thorse\nAK_J57sNeeo_1\telephant\nAK_0-KHw9wc_1\thorse\nALCj6V-0pU8_0\tperson\nALKBlOms7sk_0\ttruck\nALLYkPepYRc_0\ttrain\nALRR_HHP500_0\tperson\nALRzJ2FzEoY_0\tperson\nALYKJChPG6k_0\tknife\nALjxXEqJFTg_0\ttrain\nALpnjTPWIN4_0\tbird\nAL73oE_aovA_2\tbicycle\nAL73oE_aovA_3\tbicycle\nAMDjY36EpsU_0\ttruck\nAMEZhZVe7hk_0\tperson\nAMEZhZVe7hk_1\tperson\nAMI4Xu1mmNw_0\telephant\nAMZeyszxY78_0\tknife\nAMn7aithVV8_0\tcar\nAMz8PhUkmpM_0\thorse\nAMz8PhUkmpM_3\thorse\nAMz8PhUkmpM_7\thorse\nAMz8PhUkmpM_2\thorse\nAMz8PhUkmpM_5\thorse\nAM5_HQ705r4_1\tgiraffe\nAM6sweCILPU_0\tairplane\nANHdxFi36CM_1\tbird\nANNbcEcj8Do_0\tperson\nANQZ1MB6gI4_0\tskateboard\nANVkluf6XZA_0\tcat\nANWtZTJoYYc_0\tdog\nANZDRJnX_Os_0\tperson\nANlhuKqnObE_1\tperson\nANlhuKqnObE_0\tperson\nANmJ_3l01rw_2\thorse\nANmJ_3l01rw_3\thorse\nANmkxc2V7qQ_0\tperson\nANufFQ7Fqao_0\tcar\nANufFQ7Fqao_1\tcar\nANvWNG7bZj0_0\tperson\nANwXehjlmOU_0\tgiraffe\nANwXehjlmOU_2\tgiraffe\nANwXehjlmOU_6\tgiraffe\nANwXehjlmOU_7\tgiraffe\nAOFbvqQZz1M_0\tperson\nAOJiO3o1Pgw_0\tperson\nAONi1Rhl0VI_2\tperson\nAONi1Rhl0VI_1\tperson\nAOmvm3OOZZQ_0\tperson\nAOn9I3GEHoU_0\tperson\nAOo1qXfZWsc_0\tbus\nAOq0zSQhX1E_0\tperson\nAOq0zSQhX1E_1\tperson\nAO9zthhr-og_0\tperson\nAO9zthhr-og_1\tperson\nAPAgxsDsZqs_0\tperson\nAPCppiM1SL4_0\tperson\nAPEd6F66jXU_1\tairplane\nAPHhGoshqFo_0\tumbrella\nAPIrIPchQwg_1\tperson\nAPIrIPchQwg_0\tperson\nAPJ4_CEV8HQ_0\tbus\nAPLJsXaOe1c_0\tperson\nAPQ99QCF6pA_0\tperson\nAPRuUBgcBZc_1\tperson\nAPYAGnOjUQQ_0\tperson\nAPa_Xoa9qgg_1\tmotorcycle\nAPcliMIvBe4_2\tperson\nAPcliMIvBe4_0\tperson\nAPcliMIvBe4_1\tperson\nAPp-0CsKxpY_1\tperson\nAPp-0CsKxpY_0\tperson\nAPqdtMhtWlU_0\tmotorcycle\nAPtqUIS_Hyo_0\tperson\nAPwqoNNZyaA_0\tperson\nAPyVeEcEt1U_0\tairplane\nAPyxRCm1XlY_0\tperson\nAP5QrGcnGoU_0\tcow\nAP_vNEBzhqM_0\tperson\nAQALHMjkeh0_1\tgiraffe\nAQKHDJ9HKck_0\tdog\nAQNEkyvgbeA_1\tcow\nAQRKvHpsUk8_0\tperson\nAQTk87BXkxk_0\tperson\nAQVhyDD8GEk_0\tperson\nAQVthZjIETQ_0\ttruck\nAQcg3TVkW1s_0\tperson\nAQcg3TVkW1s_1\tperson\nAQi0YSJ74cw_0\tperson\nAQj3enGQQeE_0\tboat\nAQminPRA2W8_0\tperson\nAQtIgG8RHRY_0\tperson\nAQvltP0EarU_0\tperson\nAQy7gL42wfo_0\tairplane\nAQzJp7Qi_yA_2\telephant\nAQzJp7Qi_yA_13\telephant\nAQ2bfY90nuU_0\tperson\nAQ7YDkmwB4M_0\tdog\nARAX6-JmsNQ_0\tzebra\nARAX6-JmsNQ_2\tzebra\nARFd2qxDhpQ_0\tairplane\nARNkmINZamQ_0\tcow\nARNkmINZamQ_1\tcow\nAROrQJq2sWY_0\tperson\nARRADkl3-30_0\tperson\nARW5DipSrBo_0\tdog\nARmfFWE2ruc_0\tperson\nARmsnBnMyPc_0\tperson\nARnGZQm8zOM_0\ttruck\nARqQUEVhu24_0\tperson\nARrbFDLoy0Q_1\tperson\nARtGNhHj2NU_0\tcat\nARyGQdkbuyM_0\tperson\nARyGQdkbuyM_1\tperson\nASBgE1svBKQ_0\tperson\nASD516fNs3g_0\tperson\nASExrIzixaM_0\ttruck\nASc0m6oxXVI_0\tperson\nASc0m6oxXVI_1\tperson\nASm_mkHCybA_0\tcat\nAS1xCm7MYs8_0\tperson\nAS1xCm7MYs8_1\tperson\nAS2tsNB9LBI_1\tknife\nAS5hg_3pOXM_0\tperson\nAS9kBpj7qvE_0\tperson\nATKytgCulZM_0\tumbrella\nATakdxmz3qU_0\tcar\nATkJNKtd8yo_0\tperson\nATk9e0fbxBk_0\thorse\nATk9e0fbxBk_1\thorse\nATk9e0fbxBk_2\thorse\nAT1zSxV6stw_0\tcat\nAT5urL0Fr0c_0\tbird\nAUGQ4XFEkGY_3\tknife\nAUI-RsDtk4s_0\tperson\nAUMHV6JiwU0_0\tbird\nAUZevw68t_s_0\tbear\nAUcOQ1L4Nj0_0\ttrain\nAUfaVvy5QxU_0\ttrain\nAUguk_8JO_U_0\tskateboard\nAUgw-t2MrtU_0\tperson\nAUzge-cBHfM_0\tbear\nAU0RtWdAXcU_0\tperson\nAU114x-Qif4_0\tperson\nAU3mKa0Npq4_0\tperson\nAU8GXMxyP9U_0\tperson\nAVHVVt5Srow_0\tbear\nZIGThAlQuUU_1\ttruck\nZIGkCx4o3G0_0\tperson\nZIMLdoIIFbg_0\tperson\nZIWkcVTlaRU_1\tperson\nZIamYwe-hJ8_0\tcar\nZIawXDt6JH4_0\tcat\nZIlyoSrDQQ8_0\tperson\nZImLYekhFBQ_3\tbus\nZI6J2WSiZy0_0\tgiraffe\nZI7DX2OSzzQ_0\tairplane\nZJCSQFa1W3M_0\tperson\nZJDAzZZQ38k_1\tknife\nZJDAzZZQ38k_0\tknife\nZJEQHkA9NLw_1\ttruck\nZJHeFXEtwNE_0\tknife\nZJJoit687Tc_0\tperson\nZJJpIPciUts_2\tskateboard\nZJL9WONxDB8_0\tperson\nZJMJBrWq8-o_0\tperson\nZJOVhmSGVMM_0\tperson\nZJXuyIEaSc4_0\thorse\nZJYXcUOxNRc_1\tperson\nZJdKrkzHR94_0\tperson\nZJdKrkzHR94_1\tmotorcycle\nZJe2QoJwNa0_0\thorse\nZJimYyH6VUI_0\tcar\nZJoQRLyRs8o_0\tperson\nZJpozi2Piqc_0\tmotorcycle\nZJwWllfPFjo_0\tperson\nZJyDrvmQwY8_0\telephant\nZJyDrvmQwY8_1\telephant\nZJ5n1Y-yXqM_0\tperson\nZKF4kfqyu6U_0\tperson\nZKIuqz6GDSA_0\thorse\nZKJuI7-4560_0\tcat\nZKKalWR8MBM_0\tboat\nZKSF-y6kC1I_0\telephant\nZKSF-y6kC1I_1\telephant\nZKTseP8JqIw_0\tperson\nZKk703iOFmY_0\thorse\nZKrJdHuvvR8_0\tperson\nZKy67yESvjM_0\tperson\nZK1zKp1iJY4_5\telephant\nZK1zKp1iJY4_2\telephant\nZK3-Em8w4HE_0\thorse\nZK6pkPtSd_4_0\tcow\nZK_BL_TGwo0_1\ttrain\nZLFXKnOp0LM_1\tknife\nZLH6HbQ5Miw_0\tperson\nZLSqYLLWQLc_1\tcow\nZLSqYLLWQLc_2\tcow\nZLcGyr4ZfJU_1\tairplane\nZLdb8-YkoiY_0\tperson\nZLm8Hen6OFM_1\tbicycle\nZLm8Hen6OFM_2\tbicycle\nZLnf4vSxfgo_1\tumbrella\nZLqSGXI7FdM_3\tknife\nZLuY9hS-wd4_0\tbus\nZLuY9hS-wd4_1\tbus\nZLuY9hS-wd4_2\tbus\nZLupIiWNPOY_0\tperson\nZL18xmfIKH4_1\tmotorcycle\nZL18xmfIKH4_3\tmotorcycle\nZL18xmfIKH4_2\tmotorcycle\nZL3DgidLXjw_0\tperson\nZL5SCZpZWtA_1\thorse\nZL-60We4drw_0\tdog\nZMDe7QMaLa8_0\tperson\nZMD2tP69gaU_1\tperson\nZMKFhrS_QnY_0\tcow\nZML6VoRZ_Tk_0\tperson\nZMMDA6nYXZs_0\tbird\nZMPdl-1FCMQ_0\tperson\nZMZU_V7d3-I_1\tumbrella\nZMa0bYeg_NE_0\tdog\nZMdAlm9Zx_A_1\tcar\nZMeQ1Vc3HZk_0\tperson\nZMuwZKOfK1s_0\tmotorcycle\nZMvdpTH-1Ug_9\tairplane\nZMxu4wRDuqU_1\tperson\nZMyEEXdgJeA_0\tperson\nZM1xadWQqKQ_0\tbus\nZM2SMTrxUr0_0\ttrain\nZM3QVkm1izg_0\tperson\nZM5-iyB8rFk_1\tdog\nZM_TO-0UDp4_0\tperson\nZNJ8aytwo1E_0\tperson\nZNP23sy27W0_0\tperson\nZNTqZ3wERJE_0\tperson\nZNUBh1ppeyo_0\tskateboard\nZNXCWGzmxK8_0\tperson\nZNZx7hTxCQE_0\tairplane\nZNaTV3nGl6M_0\tperson\nZNcUW5m7eRw_0\tgiraffe\nZNg9OZgsMqc_0\tbear\nZNoQrAOf3Ns_0\ttruck\nZNqpyPcacjY_0\tmotorcycle\nZNv_LrEIljc_0\tumbrella\nZNxw9kVCouU_0\tbus\nZNzeI_r7GT4_0\ttruck\nZN2bt7wkvH0_1\tbear\nZN5ukEMKLY4_0\tcow\nZN_gFe4IzxE_0\ttruck\nZODUj9lsCzk_0\thorse\nZOEa1JGwnwE_0\tperson\nZOEa1JGwnwE_1\tperson\nZOGP8-XsFYc_0\tperson\nZOIuTsiGyRY_0\tbird\nZOJSvR5KOsE_0\tdog\nZOMPRnYycak_2\tcow\nZOMnEZ4dWMk_0\telephant\nZOStUYUIEdA_0\tskateboard\nZOTSBcRwdRA_0\tperson\nZOX1xH7rOus_0\ttrain\nZOthVGHUcjo_3\tcow\nZOwhFlp5EiA_0\tperson\nZOxDsYnvl0M_0\tperson\nZOymkqw58fw_0\tperson\nZOzQfVh1LN8_1\tmotorcycle\nZO_5hZ2ex6Y_0\tperson\nZPKaBLqoKvQ_0\tperson\nZPNr3zZg6jk_1\tperson\nZPNr3zZg6jk_0\tperson\nZPNr3zZg6jk_2\tperson\nZPQ0lqiH9uw_0\ttrain\nZPQ0lqiH9uw_1\ttrain\nZPQ3tbJp33I_0\ttrain\nZPVOrRypdRM_0\thorse\nZPZjgecd6OQ_1\tboat\nZPaWYb_4S8Y_0\tperson\nZPeRU9CLLew_0\tperson\nZPgUlFmZyP4_0\tperson\nZPjN0Rp_1ZA_0\thorse\nZPkO4x8HPaI_1\tperson\nZPqs3xJ8sMY_0\tperson\nZPqs3xJ8sMY_1\tperson\nZPq9qgTZ4XI_0\ttruck\nZPyxQD17Fq4_2\tperson\nZPyxQD17Fq4_4\tperson\nZP7SN9kW5kg_0\tperson\nZP7sET2Y9dU_0\tperson\nZP8YaHDM_qE_0\thorse\nZQCFPzE41bg_0\tcow\nZQDoAEWZCQk_0\tperson\nZQG5CpZ3fLM_0\tperson\nZQRzkpfy378_0\tbus\nZQZRNVrE9hk_0\tperson\nZQarE1lLDl4_0\tperson\nZQdhjMVGJrk_0\tperson\nZQdhjMVGJrk_1\tperson\nZQmTc5C-h8w_0\tperson\nZQrMMWQidx0_0\tperson\nZQuVUoqiT_I_0\tgiraffe\nZQuVUoqiT_I_1\tgiraffe\nZQ3LAYCIDf8_3\tbear\nZQ8X2cqYANs_0\ttrain\nZQ9G0UkTR1c_1\tperson\nZQ_vGl5xbKY_0\tcat\nZRFMzM7kxuI_3\tcow\nZRFMzM7kxuI_0\tcow\nZRFMzM7kxuI_1\tcow\nZRFMzM7kxuI_2\tcow\nZRLkkoSR8o8_0\tknife\nZRMOgw0VYRI_0\tperson\nZRNQrzQlVwA_0\tperson\nZRNgdckx504_0\tperson\nZRQug2qT1tc_0\tperson\nZRSRBBpyBG8_0\tperson\nZRXjiNMKvis_0\tairplane\nZRc8GDK_9hc_1\tumbrella\nZRkHgC0EAz8_0\tperson\nZRmkeBogj-U_0\tperson\nZRoz_bGkPaE_0\tperson\nZRuQ3ipcK3o_0\tbus\nZRzOWgIAwe8_0\tbird\nZRzOWgIAwe8_3\tbird\nZR0Qj5P8snw_1\tbear\nZR4yO1ASDwo_2\tperson\nZR_VWPjxLTU_0\tdog\nZSDCxbSs-Hs_0\tperson\nZSFzv92w5z4_0\tmotorcycle\nZSGJwERlcvM_0\tperson\nZSXoUfKY7t8_0\tperson\nZSdzUC2BB8Q_0\ttrain\nZSdzUC2BB8Q_1\ttrain\nZSkkNWgXm6E_0\tskateboard\nZSkkNWgXm6E_1\tskateboard\nZSn4gRAJToo_0\tcat\nZSoJT194AtI_1\tskateboard\nZSoJT194AtI_0\tskateboard\nZSruK26cGuI_0\tdog\nZSs6Knma-Q0_0\tcow\nZSs6Knma-Q0_1\tcow\nZSu3GocMJzI_0\tcar\nZS29l3t9vK8_0\tperson\nZS6NQXztroI_0\tperson\nZS_wuZnVzbw_0\tperson\nZTLDJDjvSuQ_0\ttruck\nZTPTnzEs_Lc_0\tperson\nZTcRmNM1n8M_0\tperson\nZTjOZ-dZDEg_1\tcar\nZTmHHCmX7aw_0\tskateboard\nZTnEKCqMNHs_0\tperson\nZTo33r_63Wg_0\tknife\nZTw6Dkp-LPU_7\telephant\nZTw6Dkp-LPU_0\telephant\nZTw6Dkp-LPU_4\telephant\nZTw6Dkp-LPU_5\telephant\nZTw6Dkp-LPU_6\telephant\nZT5iwG3vEhM_0\tumbrella\nZUCf2cVBY08_0\tperson\nZUWSpLaJj4M_0\tbird\nZUYtIKrcaKo_0\tperson\nZUaHjAaQqF0_0\tbus\nZUdCQl7WU_U_1\tperson\nZUdCQl7WU_U_0\tperson\nZUd0IAbilBA_0\telephant\nZUoFqGf_ijs_0\telephant\nZUoJFmQ6ro4_0\tperson\nZUwniKcHERQ_0\thorse\nZU0WSpOWSak_1\tbear\nZU0_sT3EbVY_0\tzebra\nZU9LGiLzKJg_0\tmotorcycle\nZU-ZhVyhBpA_1\tbicycle\nZVAHreexSa0_0\tperson\nZVBjo5HM0Do_0\tknife\nZVD-ea5SjMg_0\tperson\nZVJpmiue5IA_0\ttruck\nZVKyUsgomW4_0\tperson\nZVOMkt8TORM_0\ttrain\nZVQo_9tFZGY_0\tbus\nZVY_873YYQY_0\tskateboard\nZVZJRbJ2h1A_0\tcat\nZViLnbCdjZM_1\tperson\nZVlOetMc3m4_0\tperson\nZVl8So4V1Ss_0\tcat\nZVnaHf8vAhA_0\tzebra\nZVtPRAs8Za0_0\tperson\nZV8NIO3XuLQ_0\tperson\nZV9eJe2grq4_1\tbear\nZWIPlBvd1DI_0\tperson\nZWIPlBvd1DI_1\tperson\nZWJv_-wAdws_1\tskateboard\nZWKHlq-W7_8_9\ttrain\nZWKHlq-W7_8_14\ttrain\nZWKHlq-W7_8_0\ttrain\nZWKHlq-W7_8_1\ttrain\nZWKHlq-W7_8_4\ttrain\nZWKHlq-W7_8_7\ttrain\nZWKHlq-W7_8_10\ttrain\nZWKHlq-W7_8_11\ttrain\nZWKHlq-W7_8_12\ttrain\nZWKHlq-W7_8_13\ttrain\nZWNe-zcl-IY_0\tboat\nZWNjUm5Uzh0_1\tbicycle\nZWNjUm5Uzh0_5\tbicycle\nZWXE7IAaWrg_0\tperson\nZWXSnELtawA_1\tknife\nZWXSnELtawA_3\tknife\nZWX1cGhJG98_0\tbicycle\nZWlTD6EbOTo_0\tperson\nZWqzdCz6UvY_0\tbird\nZWr6RECjqV0_1\thorse\nZWr6ZU_-ir4_1\tperson\nZWthtO1iGtQ_0\tperson\nZWwlzozPAk8_0\tperson\nZWxn8yT0bXo_0\tcow\nZW0HC4IRa64_0\tperson\nZW3CWoXzrn4_0\tbicycle\nZW3CWoXzrn4_1\tbicycle\nZW5VkDNSfWA_0\tcat\nZXMqiFE6KOE_0\tairplane\nZXRcWIcok2I_0\tperson\nZXgYAh2AWyk_0\thorse\nZXp6jOe8DUE_0\tperson\nZXyJafbGcBM_0\thorse\nZXzno8CjUyM_0\telephant\nZYB9yzoJ6jc_0\tperson\nZYG83auB9Lk_0\ttrain\nZYIgTdUmOWk_0\telephant\nZYKlgXftesk_0\tcow\nZYM0_4YzeeQ_0\tperson\nZYRgw5rNhE4_0\tperson\nZYS7WVlJbuU_0\tperson\nZYX53PWsBdk_0\tperson\nZYY8vkvB1zU_0\tperson\nZYkIkq9kfLc_0\tdog\nZYlANECCXnI_0\tperson\nZYocOIOyuqs_0\tperson\nZYsifQxv94s_1\tmotorcycle\nZYs7rbZt8Zw_0\tairplane\nZYs7rbZt8Zw_1\tairplane\nZYs7rbZt8Zw_2\tairplane\nZYtk2iVNC90_2\tairplane\nZYtk2iVNC90_0\tairplane\nZYxn9wmzRI4_0\tbicycle\nZYxn9wmzRI4_1\tbicycle\nZYzeKMdP2SE_0\tperson\nZYz6B5dwXcE_0\tperson\nZY_urkqeQLM_0\tbicycle\nZZANjG2Z5Jk_0\tperson\nZZFzCaL48sE_0\tcow\nZZNRG-ux4fw_0\tperson\nZZQDFjbEcHQ_1\tbird\nZZQDFjbEcHQ_2\tbird\nZZQSDwoLZ00_4\tknife\nZZSFKq4WH78_0\tcat\nZZVPKuh-2v8_0\tperson\nZZVx_IT4voA_0\tperson\nZZlf3LtDpH8_1\tbear\nZZpLkBcXUgs_1\tperson\nZZpLkBcXUgs_2\tperson\nZZxMtMlV-MM_0\tcow\nZZyW-2jZcIo_0\thorse\nZZyW-2jZcIo_1\thorse\nZZ20JXRExdg_0\tperson\nZZ8OuI39UTM_1\tperson\nZZ85EAvnAGU_0\tperson\nZZ85EAvnAGU_1\tperson\nZaDVUoq6h5o_1\tperson\nZaD5V9_Vw2w_0\tperson\nZaJb3JTan7Q_0\tperson\nZaLqPrH_aVo_0\ttrain\nZaLqPrH_aVo_1\ttrain\nZaNZV-lM-3o_0\tperson\nZaNZV-lM-3o_1\tperson\nZaPC288yVBg_1\tbicycle\nZaPC288yVBg_5\tbicycle\nZaPC288yVBg_7\tbicycle\nZaPltFe0S_o_1\ttruck\nZabt7ElK3jM_0\tperson\nZacHdhX9F9M_2\tdog\nZadGgAG3PzE_0\tperson\nZaew_bHz-PQ_11\tumbrella\nZaflj5gSZEw_0\tperson\nZanT0hXyJhk_0\tbird\nZavCWamLatc_2\tperson\nZavCWamLatc_1\tperson\nZa4BYhhaFFQ_1\tzebra\nZa6oX4aQR34_0\tairplane\nZbB-tdDvITQ_0\tmotorcycle\nZbDu8V7ppZE_0\tmotorcycle\nZbHt1sn7oTI_0\tperson\nZbJvtTVTTV8_0\tknife\nZbQXzueqj4Y_0\thorse\nZbgfg8usx-k_0\tperson\nZbgfg8usx-k_1\tperson\nZbm5_qB8fEs_0\tperson\nZbrJHC_mHlo_1\tperson\nZbrJHC_mHlo_2\tperson\nZbrJHC_mHlo_0\tperson\nZbrqZYGiMvE_1\tcow\nZb2Vz655gh4_2\thorse\nZb755JeGMpU_2\tperson\nZb-JKfQ5emU_1\tperson\nZb-JKfQ5emU_2\tperson\nZb-JKfQ5emU_0\tperson\nZcJPap_gVyo_0\tperson\nZcXA6CyQBi8_0\tcat\nZchU4DxP5A8_0\tperson\nZcw7wSfd2JM_0\tperson\nZcw7wSfd2JM_1\tperson\nZdElKzM-US0_0\tumbrella\nZdKO1sC4o60_0\tperson\nZdMbx0IXDzs_0\tperson\nZdMm6j__cQM_8\tbicycle\nZdTZrRX0dv4_0\ttruck\nZdXrQlOU7iw_1\tbicycle\nZdaFXJzLLUs_0\tperson\nZdaFXJzLLUs_1\tperson\nZdeTj7nyN-s_0\tboat\nZdevf1MbY8U_0\ttrain\nZdevf1MbY8U_1\ttrain\nZdevf1MbY8U_2\ttrain\nZdirtQF_sjE_0\tperson\nZdlnVpHrDcg_0\tgiraffe\nZdlnVpHrDcg_2\tgiraffe\nZdq2csZeJr8_2\tperson\nZdrk4yHmMXA_0\tperson\nZdtUPHscS-s_0\tperson\nZdxD4gqVioQ_0\tcat\nZdxHWwaivLc_0\tcow\nZdyBZtlMq-M_2\tbear\nZd3j0bQV6NI_0\tperson\nZeHLf0q4Z1Q_0\tperson\nZeZAZbMg1zY_0\tperson\nZeaoaXZDhPw_0\tperson\nZemOY1F1bVo_0\ttruck\nZemOY1F1bVo_3\ttruck\nZemOY1F1bVo_1\ttruck\nZerHfx3SLxU_0\tperson\nZerYXYTyhoc_0\tperson\nZetcbIDyydg_1\tcar\nZetcbIDyydg_0\tcar\nZeuqVhpsVu0_0\thorse\nZe6GIOUVxZU_0\tperson\nZe8W47hBrrE_2\tskateboard\nZfAFALQjUwI_2\tperson\nZfAFALQjUwI_1\tperson\nZfAM39o5Cbc_0\tbird\nZfDkxwMowSk_4\telephant\nZfF5Z0hrOQw_0\tperson\nZfHSyDaLaw0_0\tairplane\nZfHSyDaLaw0_2\tairplane\nZfHSyDaLaw0_1\tairplane\nZfJvZeaN7Ro_1\tperson\nZfTTW39iHJQ_0\tperson\nZflcz9EKz4g_4\telephant\nZflcz9EKz4g_1\telephant\nZflcz9EKz4g_2\telephant\nZfmwrq2aghI_0\tperson\nZf86HoPHmBs_1\tbird\nZf86HoPHmBs_0\tbird\nZf-rSx5ZNB8_0\tperson\nZgK0Y4PgWSM_0\tperson\nZgOr7facaIw_0\tskateboard\nZgP7q-rIhs0_1\tperson\nZgTDthFY-aI_0\tbird\nZgZ18HIfCGc_1\tmotorcycle\nZggirLBvHSw_0\tdog\nZgjspuwgTAc_0\tperson\nZgtG8Zy63UQ_0\tperson\nZg18GZ5OFWw_1\tperson\nZg2YrzGNuZs_0\tperson\nZg4f2iY8_zo_1\tcat\nZg4f2iY8_zo_0\tcat\nZg5MdsCXRWM_1\tcow\nZg5MdsCXRWM_0\tcow\nZhLB-laOg_g_9\tbicycle\nZhLB-laOg_g_3\tbicycle\nZhLB-laOg_g_5\tbicycle\nZhLB-laOg_g_6\tbicycle\nZhLB-laOg_g_10\tbicycle\nZhLB-laOg_g_12\tbicycle\nZhPafr5WTEs_0\tperson\nZhtgT8q5Gm4_0\tperson\nZhtr_XhO6_4_0\ttrain\nZhtr_XhO6_4_1\ttrain\nZh6QWGGQ9dU_0\tperson\nZiJFOBVGah4_0\thorse\nZiPO1UcM3IY_0\tdog\nZiP2ydBHuPs_2\tperson\nZiSl_Dy1ZB4_0\tperson\nZibk3bXvHCY_0\tcat\nZig1VrVbQc0_0\thorse\nZimvCFcji0A_0\tperson\nZisoM7y_CS4_0\tperson\nZitUYI22J54_1\tknife\nZitUYI22J54_0\tknife\nZi1etYbSUmQ_1\tperson\nZjCbmE2jLo4_0\tperson\nZjFb1VLHvyg_1\thorse\nZjPmZ4grIFA_0\tperson\nZjPmZ4grIFA_1\tperson\nZjQqfJ1Docg_0\tperson\nZjQ9lIlCehk_0\tskateboard\nZjSloqSrfWU_1\tairplane\nZjSloqSrfWU_3\tairplane\nZjWBw4tZUO4_0\ttrain\nZjWBw4tZUO4_1\ttrain\nZjWBw4tZUO4_2\ttrain\nZjWBw4tZUO4_3\ttrain\nZjWBw4tZUO4_4\ttrain\nZjWBw4tZUO4_5\ttrain\nZjWBw4tZUO4_6\ttrain\nZjbhM1ZiKW8_0\tperson\nZjbhM1ZiKW8_2\tperson\nZjcEfOHRyLQ_0\ttruck\nZjcevqmMJvY_0\tperson\nZjgTSjb7Vh4_1\tcar\nZjnaerD1MHM_0\telephant\nZjn6uD43ewg_4\tairplane\nZjn6uD43ewg_5\tairplane\nZjn6uD43ewg_1\tairplane\nZjn6uD43ewg_2\tairplane\nZjpmS5k09Ug_1\tperson\nZjpzw1n9Lvc_0\tskateboard\nZjsEX7nNYdQ_0\tperson\nZjxiHzcXOAs_0\tperson\nZjxiHzcXOAs_1\tperson\nZj2HBun9kBY_0\tperson\nAVW26zY72Ns_0\tperson\nAVXWb0s5LZw_0\tperson\nAVqCe7X9Pp4_0\tcow\nAVragVmWr8M_0\tmotorcycle\nAVvnZ-Ky-ew_0\tperson\nAV9y4LnUV84_0\tdog\nAWAQTemnBJc_0\tperson\nAWCUoghX20A_0\tcow\nAWD_KAfvb0U_0\tskateboard\nAWOhJ9RZReg_0\tperson\nAWOhJ9RZReg_1\tperson\nAWPNd7zPJzg_0\tperson\nAWPNd7zPJzg_1\tperson\nAWZt9EdU3BU_3\tzebra\nAWdKXFitdJI_0\tboat\nAWh2S4rI6kc_0\tperson\nAW1SjuoheU8_0\tcat\nAW2cvkaExG4_0\tcow\nAW8munaOGqw_0\tperson\nAW--f4fsLFY_0\ttrain\nAXB4hYQKqUw_0\tperson\nAXB4hYQKqUw_2\tperson\nAXQlwoC_K0g_1\ttruck\nAXX66Oq_RkU_0\tperson\nAXhx8hncZvA_0\tboat\nAXm0KvcIchQ_0\ttrain\nAXtXzxTXTqI_0\telephant\nAX2rS0bpAmM_0\thorse\nAX4Hsfdm-Fo_0\telephant\nAX8WoOXfJDA_0\tperson\nAX-xVtjP42Q_0\tperson\nAYLoR7L3CMs_3\tbird\nAYLoR7L3CMs_1\tbird\nAYUGoWokN_0_0\tperson\nAYYdBxTI_54_1\ttrain\nAYakvLR8aVM_0\tperson\nAYe6Wf0URgo_0\ttruck\nAYgbgSVClN4_0\tperson\nAYg1V2ol96s_0\tdog\nAYj70IRvvwI_2\tairplane\nAYj70IRvvwI_3\tairplane\nAYn-qtOy_nc_0\tperson\nAY7foLy1uok_0\telephant\nAY7foLy1uok_1\telephant\nAY-AbrJPyY0_0\ttrain\nAZHYXkv5rMk_0\tbird\nAZJsII37MPY_0\tbird\nAZMW1TyN6Z4_0\tperson\nAZQjsUm-CXk_1\tperson\nAZhH2ej_x_g_0\tperson\nAZjZ1ZSyCeE_0\tperson\nAZk4MAu-j90_0\tperson\nAZleWF5zAxc_1\tbear\nAZl3Emy9K3A_0\thorse\nAZouBTtQrtM_0\tperson\nAZpAuvQryZo_0\tperson\nAZpAuvQryZo_1\tperson\nAZ9SW8bxD3E_0\tbicycle\nAaGwVQ6UjOE_0\tperson\nAaRVwgGBmWU_0\tperson\nAaTW4oc5bBU_0\tperson\nAaZsdPwg9qg_3\tbus\nAac18k-eLZI_0\tperson\nAac18k-eLZI_1\tperson\nAac18k-eLZI_2\tperson\nAakpjcyvFSo_0\tperson\nAalaqaXsEbs_3\tumbrella\nAalaqaXsEbs_0\tumbrella\nAalaqaXsEbs_1\tumbrella\nAalaqaXsEbs_2\tumbrella\nAaoK6DPQKII_0\tbus\nAaotWWHg4eU_0\ttruck\nAaotWWHg4eU_1\ttruck\nAaotWWHg4eU_2\ttruck\nAasksRmCk1g_0\tperson\nAatNkWo2ryE_0\tperson\nAa0FU2EIMZ4_0\tbird\nAa-wzDtjCGc_0\tperson\nAa_biYfYp08_0\tperson\nAbEsU9EX9XQ_0\telephant\nAbEsU9EX9XQ_2\telephant\nAbO_VrlyQ8I_0\tumbrella\nAbTxhwSueZw_0\tperson\nAbd7Vn-Nyt8_1\ttruck\nAbeOAFhMXBY_1\tbird\nAbeOAFhMXBY_2\tbird\nAblKd4XIjqk_0\tperson\nAbmnNkzkXFg_0\telephant\nAbmnNkzkXFg_1\telephant\nAbuMVYzS0mw_0\tskateboard\nAbvoOuTpLtA_0\tdog\nAbwI4m0H9Hk_2\ttrain\nAbx126RTs10_1\telephant\nAb9zgKJnr9Y_1\tperson\nAb-vGS2mqFQ_0\tcow\nAb-vGS2mqFQ_1\tcow\nAcCU5YAWXlw_0\tdog\nAcReGpoHOZI_0\tperson\nAcSmnBYhEsg_0\tperson\nAcTgPRNars0_1\ttruck\nAcUEWZRPoGA_0\tumbrella\nAcZNiBe0Fgo_0\tperson\nAcZukbBG7tI_0\tboat\nAcc1yTFpH2c_0\tdog\nAcpBKywfL4o_1\tcat\nAcpOxyI_YPI_0\tperson\nAcprJcYvkbY_0\tperson\nAdDiiRHwZ2E_0\tcat\nAdEH-oHs1Qo_3\ttrain\nAdEiQT7Nm0o_1\tmotorcycle\nAdE2jnpk6AM_0\tboat\nAdbsyVjq_Xs_0\tcow\nAddL-M622TI_0\tknife\nAdgTVbi_kus_0\tperson\nAdsPsjswSGQ_0\tmotorcycle\nAd044xbRhE8_0\tperson\nAd2TSmaLvX8_0\tperson\nAeDfdgrccVw_0\tperson\nAeHbZ3U8S8U_2\ttrain\nAeWBkNuJmEA_0\ttruck\nAeWBkNuJmEA_3\ttruck\nAeWBkNuJmEA_4\ttruck\nAeWBkNuJmEA_5\ttruck\nAeakbNNwcW0_0\ttrain\nAec4uweTSes_2\tskateboard\nAeflYi3Sxss_0\tperson\nAegDGWXkWNw_0\tperson\nAenVUPH1ils_0\tbird\nAendE1XHSps_0\tbicycle\nAerUXP3Mmks_0\tperson\nAe5qWkNt6RU_2\tcar\nAe7ucKj40mw_0\tdog\nAe9Zd3lP7bg_0\tperson\nAfHkdkvxhNs_0\telephant\nAfNCSPijpao_0\tperson\nAfNGR5iEpvU_0\tcat\nAfNtKiB_rD8_1\tmotorcycle\nAfWHElsVCyM_0\tcow\nAfWfexnwsHg_0\tperson\nAfWfexnwsHg_1\tperson\nAfkKO6j4jWc_0\tperson\nAfmMpft13ZU_0\tperson\nAfnQoNimSjc_0\tperson\nAfynslRqwxI_0\tcar\nAfz2VDV4UHg_1\tperson\nAfz2VDV4UHg_0\tperson\nAf2MGhdZAn8_0\tperson\nAf2VyQEZtfk_0\tperson\nAf6Ve26JUOg_0\tperson\nAgBaUhTbzxA_0\tairplane\nAgBaUhTbzxA_4\tairplane\nAgBaUhTbzxA_5\tairplane\nAgBaUhTbzxA_3\tairplane\nAgBaZRmz8IY_0\tskateboard\nAgJCf77qxsY_0\tperson\nAgP2HoU83S4_4\tknife\nAgYhFemsFag_0\tperson\nAgZ2iflIKWc_1\tperson\nAgaetfTOzc8_0\tperson\nAgdrEW8jmw4_0\ttruck\nAgqmhFD0R94_2\telephant\nAgqmhFD0R94_3\telephant\nAgqmhFD0R94_1\telephant\nAgrKeQXSU2M_0\telephant\nAgrKeQXSU2M_1\telephant\nAgrKeQXSU2M_2\telephant\nAgtCW50wfig_0\tperson\nAgvxdVNj5Oc_0\tskateboard\nAgw5t7YSQbE_0\tskateboard\nAhAW4UKPzz0_0\tgiraffe\nAhE2vDF6Gbc_0\thorse\nAhE2vDF6Gbc_1\thorse\nAhjsDq9fEzQ_0\tperson\nAhv2jhPqRPg_0\tperson\nAhwGPZWtf3E_0\tperson\nAhxq6Rtu3lc_0\tperson\nAhx3IZujXDw_0\tbus\nAh0AGjta1qg_5\tbird\nAh04VeRs2hg_0\ttruck\nAh4x4EfR3BY_0\tmotorcycle\nAh4x4EfR3BY_1\tmotorcycle\nAiIc8FW3q98_0\tcar\nAiL_iCJ8HZI_1\tperson\nAiNLvzwt3_w_1\tbird\nAiNLvzwt3_w_2\tbird\nAiP7EOvTpK4_0\tmotorcycle\nAiP7EOvTpK4_2\tmotorcycle\nAiU_T3DZI2w_1\tbus\nAiU_T3DZI2w_2\tbus\nAieRY99VkmE_0\tperson\nAieVzbENJv0_3\tbicycle\nAiieCerOKpc_0\tperson\nAik2hirrxEo_3\tairplane\nAik2hirrxEo_0\tairplane\nAik2hirrxEo_1\tairplane\nAim6_lZQi4g_0\tperson\nAiqqXxqnPPM_1\tcow\nAiqqXxqnPPM_0\tcow\nAittR1dd2SI_0\ttrain\nAittR1dd2SI_1\ttrain\nAiv3XHMuVq8_0\ttrain\nAiyfw0Zh38k_0\tperson\nAi29fDmklxM_1\tperson\nAi29fDmklxM_0\tperson\nAi3S7n1Aofs_0\telephant\nAi-487iZv0E_0\tperson\nAjFhyF1XZw4_0\tperson\nAjJHvamHoMU_0\thorse\nAjPBAy1xgrY_0\tperson\nAjVe8d0vc1E_0\tperson\nAjamPk2Geuw_1\tbus\nAjg7q9zxJUo_0\tperson\nAjroIzI2OW8_1\ttruck\nAjroIzI2OW8_2\ttruck\nAjsu2bGngDw_1\tperson\nAjs4qdBK7Jk_0\telephant\nZkD_WAxZB3o_0\tcow\nZkHPsjy-YUQ_1\tknife\nZkbav-Qoxds_0\thorse\nZkbav-Qoxds_2\thorse\nZkbav-Qoxds_1\thorse\nZkidaaVx2VU_1\tbus\nZknqgRL504A_4\tbear\nZkqA2kLudwE_4\ttrain\nZkqA2kLudwE_0\ttrain\nZkqA2kLudwE_3\ttrain\nZku9JAotBZ0_0\tboat\nZkzM2jvV2AY_0\tperson\nZlBfF2yK2vg_1\tperson\nZlBfF2yK2vg_2\tperson\nZlBfF2yK2vg_0\tperson\nZlDsSDEHEzY_1\tcow\nZlDsSDEHEzY_0\tcow\nZlDsSDEHEzY_2\tcow\nZlFElBglnHA_0\tcat\nZlP8tmFYeyY_5\tbird\nZlfyrRfHDoc_0\tcow\nZljx0icnRa8_0\tperson\nZljx0icnRa8_1\tperson\nZlmsqen0qZo_0\tperson\nZln667JkWo8_0\tperson\nZmHKBIsSjQA_0\thorse\nZmHKBIsSjQA_1\thorse\nZmVLw9-fLDo_0\tcar\nZmbXlevaX2U_1\tboat\nZmgJjFt3JU4_0\tskateboard\nZmhKe4_d5Ag_0\tperson\nZmiCqFxUJSw_1\tairplane\nZmkKOYN1dRw_0\tperson\nZmrCaB8p3IM_0\tbear\nZmuzvhzN6EI_0\tcow\nZm3AU4TEpEw_0\tperson\nZm5VvBaQUwU_0\tbird\nZnRgQ1VBIGE_1\tperson\nZnWAM5ju8NM_0\tperson\nZne4XpVG2YQ_1\tperson\nZne4XpVG2YQ_0\tperson\nZnr-Uiobo-k_0\tperson\nZntDSf8cCPI_0\tperson\nZnvLWU_PCZ0_0\tmotorcycle\nZn-r14oEJwM_0\tairplane\nZoC1knYO0Tg_0\tcow\nZoJIup20AGU_0\tperson\nZoKfc3OL0JY_0\tperson\nZoK4wKRoZjY_0\tperson\nZoN4k6UNw6I_1\thorse\nZoOvu218D6M_0\tperson\nZoR1yoQzsbM_0\tperson\nZouHgocvjDI_0\tbird\nZo-8G7N2DXU_0\tperson\nZpAlbL-YE0E_0\tbus\nZpCrRb_a9QI_0\tperson\nZpCuVDLXQSw_1\thorse\nZpCuVDLXQSw_0\thorse\nZpSzmFLEm0c_1\tcar\nZpURI0wRgws_0\tperson\nZpXJ-0dv6Us_1\tcat\nZppFK22HdIk_0\tperson\nZpqXtZfe-3w_0\tcat\nZp1nQXN7dyg_0\thorse\nZp2CuvTAZLw_1\tperson\nZp740cgCPPE_0\tperson\nZp8GHxi_5l0_0\tknife\nZp8GHxi_5l0_1\tknife\nZqM9VL5DJ28_1\tperson\nZqOcOhiAI6k_0\tcow\nZqS1PqS3iT0_0\ttruck\nZqW027iDkCI_0\tperson\nZqXFvdeNrYI_1\tperson\nZqa0-AUnl9s_0\tperson\nZqm8A3wpeJQ_0\tperson\nZqtVs5joekw_0\tcow\nZq018zZzx1c_0\tperson\nZq1u84GLCHI_0\tmotorcycle\nZq5nK49UZ_o_2\telephant\nZq5nK49UZ_o_3\telephant\nZq5r3BwLg_c_0\tskateboard\nZq-RNCVoZFs_0\tperson\nZrA0NE09ipc_0\tdog\nZrDoGqu-A5A_0\ttrain\nZrI4ruv6B3o_0\tbird\nZrKpKmp29_o_1\tbird\nZrKpKmp29_o_3\tbird\nZrKpKmp29_o_6\tbird\nZrK5JKg83qU_0\tperson\nZrUx83OGIOk_0\tperson\nZrW7Si0hJKI_0\tperson\nZrbVa__ne-0_0\tperson\nZrfPtqkS_MY_0\tairplane\nZrfPtqkS_MY_1\tairplane\nZrfPtqkS_MY_5\tairplane\nZrfPtqkS_MY_6\tairplane\nZrfPtqkS_MY_7\tairplane\nZrgMnk8f_TA_0\tperson\nZrgMnk8f_TA_1\tperson\nZruJ2hhn9z0_1\tperson\nZrvWeRZ_dyU_1\tcow\nZrvWeRZ_dyU_0\tcow\nZrwXUWAxjIM_0\tgiraffe\nZrzdqF_ePkM_0\thorse\nZrzdqF_ePkM_2\thorse\nZr5eAtkuxQ0_0\tbear\nZr_AAxouNfg_0\tcow\nZsCaDsfPNec_0\tcow\nZsDDOO-bpFA_0\tperson\nZsDDOO-bpFA_1\tperson\nZsESx0nIYqI_0\telephant\nZsESx0nIYqI_6\telephant\nZsESx0nIYqI_7\telephant\nZsJCwiPEvkI_0\tperson\nZsLDBiZ0o14_0\tskateboard\nZsPVRik6m_c_1\tbear\nZsSkZhL-HOM_2\tbicycle\nZsb2ucv_mAg_0\tperson\nZsdv_3EWODM_0\tperson\nZsyMk67bjIM_0\tdog\nZs0j_1tuTDo_0\tperson\nZs1ltKMvRec_0\tperson\nZs1ltKMvRec_1\tperson\nZs79wUXMpx8_0\tbear\nZtA8n6dsH-w_4\tcar\nZtA8n6dsH-w_1\tcar\nZtA8n6dsH-w_2\tcar\nZtA8n6dsH-w_3\tcar\nZtDUifuLGrM_2\tbird\nZtEDTuHcM9U_0\tperson\nZtM6JRtVtpU_0\tmotorcycle\nZtToUMIMdYE_0\tperson\nZtlDJ70ap8Q_1\tbear\nZtlJcLPPjsg_0\tperson\nZtsGzhfZg9g_0\tperson\nZttTri7sEK4_0\ttrain\nZtyep9o6CLE_4\tbus\nZtyep9o6CLE_6\tbus\nZtyep9o6CLE_7\tbus\nZt9qKAA_xyA_0\tperson\nZuC0Jr3Y3s8_0\tcar\nZuGpcHtPLLA_0\tperson\nZuWlzE4F84c_0\ttruck\nZuhmoYvtP40_1\tperson\nZuicm6_fX9I_1\tbicycle\nZunjyc7DIP4_2\ttrain\nZuoBIQ-Kq74_0\tperson\nZuqXxaMAufU_1\tperson\nZuuL_Yi4FZQ_1\tdog\nZuuL_Yi4FZQ_0\tdog\nZuy59kV2M-0_1\tperson\nZu-vh46IwiU_0\tcow\nZu_dXJvDHdo_0\tperson\nZu_f8xuOweg_3\telephant\nZu_f8xuOweg_1\telephant\nZu_f8xuOweg_2\telephant\nZvDo2WbWL4g_1\tperson\nZvDo2WbWL4g_0\tperson\nZvJItzBdO04_1\tperson\nZvJrqHsPVL0_0\tbus\nZvSN_Y6vK3c_0\tperson\nZvV5mqJgbcQ_0\tcow\nZvfCrJvE1Tg_0\thorse\nZvfIYK-AWCw_0\tperson\nZvlx8vSlAPs_0\tbicycle\nZvtGPgtfhE8_0\tperson\nZvtuffxB5EY_0\tperson\nZvyOzgxu-4Y_0\ttruck\nZvzVi9irgvw_0\tbear\nZv6DWiKAux4_1\tperson\nZv9e9Vm6Vis_0\tmotorcycle\nZwDqCxCFpF4_0\tbicycle\nZwDqCxCFpF4_3\tbicycle\nZwH5xnh6Thw_0\tperson\nZwW6ybIP8ys_0\tbus\nZwdSYMz9ioo_0\tperson\nZwmRodW5wgg_0\thorse\nZwrtmR7ewc4_0\tperson\nZw7a69yU7f0_0\tmotorcycle\nZxAlVbDwlCc_2\tbird\nZxAuwcxhXxc_0\tperson\nZxE5MjV6i4w_0\tskateboard\nZxOVw-Lc-NI_0\tperson\nZxStkYy-wgo_0\tmotorcycle\nZxUKijmOWJc_0\tperson\nZxitXAY6Xsc_1\tknife\nZxqbwwO81Xc_0\ttrain\nZxv2BRQIWm0_4\tairplane\nZxv2BRQIWm0_5\tairplane\nZxv2BRQIWm0_7\tairplane\nZxv2BRQIWm0_8\tairplane\nAj7HWiU0iQg_0\tskateboard\nAj_E-ObfzoE_1\tperson\nAkGYKkcRyPM_0\tdog\nAkHT5Oo22rQ_0\tperson\nAkMpnm9JrLU_0\tperson\nAkWcVIeIx34_0\tboat\nAkaR-XgClv0_0\tperson\nAkaR-XgClv0_1\tperson\nAkeAdeJpbpg_0\ttrain\nAkeAdeJpbpg_3\ttrain\nAkeAdeJpbpg_1\ttrain\nAkh0VNTS6G4_0\tperson\nAkh0VNTS6G4_1\tperson\nAkh0VNTS6G4_2\tperson\nAkh0VNTS6G4_3\tperson\nAkkNBGH82Ic_0\thorse\nAknHhsIpRqc_0\tairplane\nAkxKeaxEnvQ_0\tdog\nAk3XQg9z8XQ_0\tperson\nAk8ygMb5ykk_0\tperson\nAk8y7dALcJI_0\tperson\nAlAUJSBL-e4_0\tdog\nAlNCPdpo1gg_2\tbicycle\nAlNCPdpo1gg_5\tbicycle\nAlNCPdpo1gg_6\tbicycle\nAlNCPdpo1gg_0\tbicycle\nAlNCPdpo1gg_3\tbicycle\nAlNCPdpo1gg_4\tbicycle\nAlPZeADzCKc_0\tperson\nAlPZeADzCKc_1\tperson\nAlXlVnkucyU_3\ttrain\nAlXlVnkucyU_1\ttrain\nAldX05MqOs0_0\tperson\nAleuxLN7VcU_1\tbird\nAlfbdsgKBAc_1\tperson\nAlhjN5qz_WI_0\ttrain\nAlikgfDMckk_0\tperson\nAlnIWAFamHE_0\tbear\nAltA5vQ7Icw_0\tbus\nAlzB8mXDcYc_0\thorse\nAl2hm71ia6E_0\tperson\nAl9l6-4QDz0_0\thorse\nAl9wCTPpSWM_0\tskateboard\nAmPe5gTOCTo_2\tperson\nAmPe5gTOCTo_0\tperson\nAmPe5gTOCTo_1\tperson\nAmQ_UrwLf3g_0\tperson\nAmRyW4hmSjw_0\tperson\nAmcAzvpvDRg_0\tbear\nAmeaTbvmKvo_0\tcar\nAmt8BGudD0w_0\tskateboard\nAmt8BGudD0w_2\tskateboard\nAmuX-Lv7OeM_2\tcow\nAmwvLxALyCw_0\tperson\nAm2wElVETcw_0\tcat\nAnD6ijSktyM_0\tperson\nAnEC6v3fXrE_0\tcow\nAnOwuTW7DKk_0\tcow\nAnOwuTW7DKk_1\tcow\nAnQ2ZY1JxAY_2\tperson\nAnWClR8yyu8_0\tperson\nAnZKri0xn-c_1\tcow\nAnZKri0xn-c_2\tcow\nAnb2IyxcJbk_0\thorse\nAnevw4PbqTo_0\tperson\nAnkgvW70F5E_0\tperson\nAnkgvW70F5E_1\tperson\nAn342tYqi5g_0\tperson\nAoI1hSI0PSI_2\tcar\nAoKs5jwMuHc_0\tperson\nAoP-So0vjIc_0\tcat\nAoSwFyY0f_A_0\tperson\nAoXHZgatpco_1\thorse\nAoXHZgatpco_2\thorse\nAoXHZgatpco_3\thorse\nAoXHZgatpco_4\thorse\nAof87CGS8NQ_1\tskateboard\nAoiCmKM8xz0_1\ttruck\nAojgueRMVCY_0\tperson\nAolLjcEFv5o_0\tperson\nAopGnIjKuEk_0\tmotorcycle\nAo0EDmBMIQk_0\tperson\nAo0EDmBMIQk_1\tperson\nAo7Iys-_lZs_0\tskateboard\nAo_b43xexzA_0\tperson\nApJMiJjCxCY_1\tcar\nApJMiJjCxCY_4\tcar\nApJMiJjCxCY_5\tcar\nApP4eoyM72g_1\tskateboard\nApWIa9pt-vk_0\tperson\nApilCZCROGI_0\tmotorcycle\nApjCOCv29N8_0\tperson\nAppgdYQTII8_0\ttruck\nAp1gZJZynL4_0\tperson\nAp-iaHj5SLk_4\telephant\nAp-iaHj5SLk_5\telephant\nAp-3HonA5go_0\tperson\nAqBYSr4wmpQ_0\tperson\nAqKP0V3Xj7E_0\tcow\nAqOxDunFl08_0\tairplane\nAqOxDunFl08_1\tairplane\nAqSP11-eje8_0\tboat\nAqUxRBRS-n0_0\tskateboard\nAqZhKjLLG70_2\tboat\nAqdAnSsQLI8_1\tperson\nAqdAnSsQLI8_0\tperson\nAqlHHwyJypE_0\tbird\nAqmXAZYmPJc_0\tperson\nAqmXAZYmPJc_1\tperson\nAqo5yZkzz8I_4\ttruck\nAqpinwPH8gM_1\tperson\nAqpinwPH8gM_0\tperson\nAqqs8XxA8gM_1\thorse\nAqqs8XxA8gM_0\thorse\nAqqs8XxA8gM_2\thorse\nAqqvZzLy3IE_0\tmotorcycle\nAqsuBaW1L0Q_0\tperson\nAqxTv7XRAH0_0\tperson\nAq_n86sub5o_2\tbicycle\nAq_n86sub5o_3\tbicycle\nArJNEsuLzDc_0\tperson\nArJaHKwfOEo_0\tperson\nArM6GXi6YnI_1\tdog\nArbpF1NIm-s_0\tcar\nArbpF1NIm-s_1\tcar\nArfeHbvYvKY_0\tmotorcycle\nAriIdq0ZPfE_1\telephant\nAroxRXjr3po_3\tbear\nArrB-hbOgf8_1\telephant\nArvYqb1hJSk_0\tperson\nAryOE3od43M_0\tperson\nAr7WaiToztg_0\tperson\nAr8Wk3m0uZ0_1\tperson\nAr8Wk3m0uZ0_0\tperson\nAr-vOeN30bM_0\tcat\nAsJt3MHLGiM_0\tperson\nAsKUm364aHg_0\tperson\nAsNy8gmdVec_0\tperson\nAsWWfQtZSHA_0\tperson\nAsY1dt4QojM_0\tperson\nAsZa3il8cZQ_0\tperson\nAsfAcK_laZA_2\thorse\nAsix5lGmXlg_0\tairplane\nAskNHLhn1t0_0\tcow\nAs_a3CyN-kQ_0\tbicycle\nAs_a3CyN-kQ_2\tbicycle\nAs_a3CyN-kQ_7\tbicycle\nAs_a3CyN-kQ_8\tbicycle\nAs_a3CyN-kQ_10\tbicycle\nAtFOIFqxLKs_0\tperson\nAtG98YoPQyg_0\tbird\nAtKUkiMSzfs_2\telephant\nAtKieG766oI_0\tperson\nAtawrCflbrM_0\tperson\nAtfXsIpaSgQ_0\tperson\nAtmVV-8Pjsg_0\tperson\nAtmVV-8Pjsg_1\tperson\nAt0-VpJyfBY_0\tskateboard\nAt81P33v_z8_0\tperson\nAuA4_FjCMvo_0\tperson\nAuJLIGyAoj4_1\thorse\nAuJalbdpJP8_0\ttrain\nAuLw9iNhPvw_0\tbird\nAuQYS5w13co_0\tbus\nAucK5ZDM060_1\tairplane\nAuchGbKLdmk_0\tperson\nAucxkj3w3nc_0\tperson\nAugnPC3tdso_0\tmotorcycle\nAunfkfLwN1w_0\tbear\nAunfkfLwN1w_3\tbear\nAunfkfLwN1w_2\tbear\nAutsbWiMLoY_0\tperson\nAuuZLhOpxcI_1\telephant\nAuuZLhOpxcI_6\telephant\nAvGLANxpJ-Y_1\tperson\nAvJexx39uCE_0\tperson\nAvOpMSLKXTM_1\tperson\nAvOpMSLKXTM_0\tperson\nAvP_DY8SuU4_0\tperson\nAvQgdEmyoFA_0\tairplane\nAvVBLLWgeWo_0\thorse\nAvdUsPyX5lE_0\tperson\nAvdgweWTeeg_0\tcat\nAvgusAC7DUU_0\tbird\nAvlg_B60Z0E_0\tbear\nAvlg_B60Z0E_4\tbear\nAvp80BzoG9Y_1\tperson\nAvp80BzoG9Y_0\tperson\nAvr6FKguO2o_4\tskateboard\nAvr6FKguO2o_1\tskateboard\nAvvWfbj5x88_0\tperson\nAv78r-lWmCs_0\thorse\nAv8Hkyi1fdc_1\tknife\nAv8k98IyQhs_0\tperson\nAwAX85eLJH4_0\tcow\nAwDIxdZSWKQ_0\tperson\nAwECiro8_h4_1\telephant\nAwEtKHnfKJ8_1\tcow\nAwEtKHnfKJ8_2\tcow\nAwFA2LuUWN8_0\tperson\nAwM3QWX5Jsc_0\tperson\nAwOJkAFe8Xs_0\tbicycle\nAwZ6nHwMMuA_0\tdog\nAwqZ_9G0pWg_0\tperson\nAwsAA0Xk1J8_0\tperson\nAw-D6USSthk_0\tbear\nAxAIZDsViZw_0\tperson\nAxAIZDsViZw_1\tperson\nAxAkf4tRXbI_0\tperson\nAxLiwCy5umU_0\tperson\nAxUFYNgnIq4_0\tperson\nAxg0nab1SDc_0\tperson\nAxvrCidcYqM_1\tperson\nAx2iIXU4Gyc_0\tperson\nAx5dd2_2sFA_1\tcar\nAx5dd2_2sFA_0\tcar\nAyAAL3Rd_Rg_3\tbicycle\nAyAAL3Rd_Rg_5\tbicycle\nAyAA5q5B-84_0\tperson\nAyAA5q5B-84_1\tperson\nAyH0zvW0ndQ_1\tbird\nAyKf0Ufaa_o_0\tperson\nAyfmwf4oW_k_0\tperson\nAyhXfIgl4Kk_0\tknife\nAyo9w6aKSY0_0\tperson\nAyqiYJuONPs_0\tairplane\nAyqvDNKC1CQ_0\tperson\nAy2VXLYZW50_1\tperson\nAzFaa7gRy0k_0\tperson\nAzMHek-Oow0_0\tcat\nAzNf4dneWFU_1\tperson\nAzVMbaXM_QM_1\tboat\nAzVoOWc-ueY_0\tperson\nAzaUz9OpHMI_0\ttruck\nAzeA4K-S0CI_1\tperson\nAzew3w3WZfI_5\tskateboard\nAzew3w3WZfI_1\tskateboard\nAzew3w3WZfI_3\tskateboard\nAze0ijK2t2M_0\tperson\nAze_lfqL6mw_0\tcow\nAzhTPVtwJVk_0\tperson\nAzh82KkzMVs_0\tbird\nAzh82KkzMVs_1\tbird\nAz0Hr5pa_Pw_0\tperson\nAz5vE5ssYxk_0\tperson\nAz5vE5ssYxk_1\tperson\nAz7glF28oOw_0\tperson\nAz_5XR0RSv0_1\tperson\nAz_5XR0RSv0_2\tperson\nA0JB0OdZ2NE_1\tknife\nA0L6M_8fDyM_0\tperson\nA0Nx4JbdXO0_0\tperson\nA0PQ6Si3nOU_0\tairplane\nA0XGvY-NO00_5\tairplane\nA0jhzA4HvrY_0\tumbrella\nA0n7dLEgCjo_0\tcow\nA02wb1V5W0A_1\tperson\nA02wb1V5W0A_0\tperson\nA08TTc4NLik_0\tperson\nA1Hvxm2NCpk_1\tairplane\nA1H8wrYSPlQ_0\tbicycle\nA1NBheOGWNE_0\tbird\nA1fdw6WBO_w_0\tcat\nA1oQZf9EXPg_0\tperson\nA1oQZf9EXPg_1\tperson\nA1oQZf9EXPg_2\tperson\nA1r3FpgoeP0_0\telephant\nA1unjHSiYuk_0\tskateboard\nA1w5Z9ryeJI_0\telephant\nA1w5Z9ryeJI_2\telephant\nA1w5Z9ryeJI_1\telephant\nA11L_7hymDI_0\ttrain\nA2ODL8T477o_0\tumbrella\nA2UiM17u3Ao_0\tbear\nA2Vhzr_2AAY_0\tperson\nA2WfZtUfAy4_1\tperson\nA2gisYdnTi0_0\tbird\nA2iD7VC-A9g_1\tcow\nA2p7Z_Ia9Ak_0\tperson\nA2p7Z_Ia9Ak_1\tperson\nA2rOJWkWoRo_0\tperson\nA23nZy9maYk_1\tperson\nA23nZy9maYk_0\tperson\nA29DgqMHeEQ_0\tperson\nA3EcM1p8r14_0\tperson\nA3FTEFw2Bo0_3\thorse\nA3JmvJSIxeU_0\tperson\nA3Lmb8E3Ovw_0\tperson\nA3L2pdrSYdE_0\tperson\nA3MpR785VH8_0\tperson\nA3MpR785VH8_1\tperson\nA3UoQh4P1_o_0\tperson\nA3ZIKfh-QPo_0\tperson\nA3b1bCXjWWE_1\tknife\nA3eocVVFaX8_0\tperson\nA3vXSLx3blY_0\tperson\nA4BVLpu2EQI_1\tcow\nA4CYcvyDGec_0\tperson\nA4P_7hjid7Q_0\tperson\nA4gw9TbmL54_0\ttrain\nA4ijVvmthCQ_0\tperson\nA4oNmb9PiYQ_0\tperson\nA4t4imYj0tA_1\tdog\nA4u61iOuzr0_0\tperson\nA4u61iOuzr0_1\tperson\nA4u61iOuzr0_2\tperson\nA4wLmZZODQU_1\tperson\nA4zzoIg6-W4_0\tskateboard\nA42uEePHr8c_0\tperson\nA438LRj4MN0_0\thorse\nA5Ho_qla_bQ_0\tskateboard\nA5Kii0lU4h4_0\tperson\nA5ZAKa7xw_I_0\tperson\nA5ciZloGW2o_2\thorse\nA5nuZ-mKcBE_4\tairplane\nA5nuZ-mKcBE_7\tairplane\nA5-RNkQ5yzU_0\tperson\nA5-yfb7-1NM_1\tperson\nA6DfgaqbLDM_0\tperson\nA6GND629_dg_0\tperson\nA6IIHamstQo_0\tperson\nA6KXKalaC7M_0\ttrain\nA6KXKalaC7M_1\ttrain\nA6LmIR6_mtk_1\ttruck\nA6L7XcS8oF4_0\tperson\nA6MkQdxLBSI_1\tbicycle\nA6MkQdxLBSI_6\tbicycle\nA6SipDli3dE_0\tperson\nA6Tx9smTdyo_0\tboat\nA6Zbpn5hd6Q_0\tperson\nA6jEv9bIawA_1\tbus\nA6rxrML8vyk_0\thorse\nA66pUkVBt_M_0\tperson\nA7GxuMCyr50_0\tcat\nA7KLi_xOQFc_0\tperson\nA7SDQoaalEY_0\tperson\nA7SIvy9srFU_0\tperson\nA7Zz2ESO-PM_2\tbear\nA7aEqy5QRJ4_0\tcat\nA7cjjAkLjfQ_1\tperson\nA7cjjAkLjfQ_0\tperson\nA7coVhNQrSs_0\tcow\nA7c_1Wcr5hM_0\tcow\nA7ltojA7WTk_0\tperson\nA729VkZvy_s_0\tperson\nA7_WDIFj23s_0\tcow\nA7_hPlvWyGc_0\tcow\nA8F5UnJOU5A_0\tboat\nA8MGPGEOAWk_0\ttrain\nA8PGaHrBO-g_0\tbus\nA8PlfHNTHVQ_0\tperson\nA8RztgyPvCE_1\thorse\nA8U5HWirVCk_0\tperson\nA8gL-e9dRa8_2\tbear\nA8oMFSrcteU_0\tbicycle\nA80V1BVUvf4_0\tairplane\nA89eQvkZ4go_1\tcar\nA89eQvkZ4go_0\tcar\nA89tFE_-szI_0\tperson\nA9ACfqLHRIM_0\tperson\nA9ACfqLHRIM_1\tperson\nA9LEZHrMOh8_0\tperson\nA9Mw5uHZ7WM_0\tdog\nA9UlOqoTO3A_0\tcar\nA9WAS-oLC8Q_1\ttrain\nA9WAS-oLC8Q_2\ttrain\nA9etwHCHkQM_0\tperson\nA9fblLjEn7E_1\tperson\nA9fblLjEn7E_0\tperson\nA9f0bktW-uM_0\ttrain\nA9sznaQipiM_1\tperson\nA9sznaQipiM_3\tperson\nA9tOXINxUeA_2\tperson\nA-BcgCHWiLE_1\tknife\nA-JRl34Jmok_0\telephant\nA-JRl34Jmok_1\telephant\nA-JRl34Jmok_2\telephant\nA-JRl34Jmok_3\telephant\nA-MMqq_FLXo_0\tperson\nA-R5A0HMT3w_0\tboat\nA-SdlQGGdZg_1\tperson\nA-Vo3GQZrd8_0\tskateboard\nA-gQnulNzVo_0\tperson\nA-gZpG3OWNM_0\tperson\nA-jGPkEGCdo_0\tperson\nA-qT3DcitzM_0\tskateboard\nA-0o6fFroLk_3\tbird\nA-1_sR8c39g_0\tskateboard\nA-1_sR8c39g_3\tskateboard\nA-37XpNHfQw_0\tcow\nA_AbA6K8Ouc_0\tperson\nA_AbA6K8Ouc_1\tperson\nA_B83i3dvWQ_0\tperson\nA_CDsn7za4c_1\tperson\nA_CDsn7za4c_0\tperson\nA_DqzmxTyPQ_0\tdog\nA_Eaoo5O71M_0\tskateboard\nA_Eaoo5O71M_3\tskateboard\nA_Nb1jSK7vY_0\tperson\nA_RHSgWC24U_0\telephant\nA_R7iK_MLgM_0\telephant\nA_Z7Cj10nKA_0\ttruck\nA_aN9LUuMY8_0\tperson\nA_g6G7vBr8I_1\tperson\nA_qnLTG_VBg_0\tperson\nA_uC3UuAVQE_0\tcow\nA_uxGLJDf9I_0\tperson\nA_xtvYH_7vg_0\tperson\nA__fHCZfwtM_0\tperson\nBACWpC6GdxY_5\tairplane\nBACWpC6GdxY_3\tairplane\nBANdhsMHpw0_0\tperson\nBANdhsMHpw0_1\tperson\nBANdhsMHpw0_2\tperson\nBAOR6YBIb8U_1\tskateboard\nBAO0Uce3vXA_0\tcat\nBARELTt_9Ko_0\telephant\nBAWN6Xpw7sg_0\tperson\nZx3x1-cBu7I_0\tperson\nZx3x1-cBu7I_1\tperson\nZx8LkdyJzG8_0\tperson\nZyDqefuyQfU_1\tcat\nZyDqefuyQfU_2\tcat\nZyNwfXl7s2w_0\tmotorcycle\nZyQL8Ugiq4Y_0\tperson\nZyQxolWsw2o_0\tcat\nZyQ_gFztNXU_0\ttrain\nZyQ_gFztNXU_2\ttrain\nZyqvHk5Ugjk_0\tbird\nZyrTKvb3Uq4_0\tperson\nZyuoNtTPexE_0\tperson\nZywGdneFaWs_0\tdog\nZyw6pIArS1g_0\ttrain\nZy04v73t_oU_0\tperson\nZy4s6kQgRAs_0\tperson\nZy7a1FYT_2I_0\tperson\nZy9BXzUqORk_0\thorse\nZzAgbPU4qoA_0\tperson\nZzBP5IPOX7Q_0\tperson\nZzBP5IPOX7Q_1\tperson\nZzFvfG2mfRU_0\tcow\nZzIeftZXBMw_0\tperson\nZzPUlKXnUgE_0\tperson\nZzRMRSyCzzU_0\tperson\nZzS_a0D4AhE_1\tskateboard\nZzWMnTc1LBY_0\tperson\nZzdl60FMu48_0\tperson\nZzeCPtqruzg_0\tperson\nZzgU7APbNfs_0\tperson\nZzgoobk2eIA_0\tperson\nZzgoobk2eIA_1\tmotorcycle\nZzhCWdZJAQY_0\tperson\nZzic21J3Ea8_0\tperson\nZznEoJsdkVI_0\tperson\nZzpccfyFyL0_0\tperson\nZzpccfyFyL0_1\tperson\nZzq_S3HujTo_0\tperson\nZztD-tmxwyc_0\tperson\nZzwlUbCfscM_1\tdog\nZzxRC2pLBVA_0\tperson\nZz2oIdSVB6Q_0\tperson\nZz5GwCMuMj0_0\tperson\nZ0D6uKz7v5Q_0\tperson\nZ0m37r4St5Q_3\ttruck\nZ0pLWU6Wg-o_0\tdog\nZ0stjlmfTpU_0\tcat\nZ0xYA5PwrjI_0\tperson\nZ02r-T2hINk_0\telephant\nZ04k6LBSuRk_1\tperson\nZ1G9pYdQwCY_0\tperson\nZ1HK6zDIJhg_0\tperson\nZ1MvNM4bmxs_0\tperson\nZ1SML4zVPik_0\tperson\nZ1U7Wnf_WiA_0\tcat\nZ1XafO8l8gs_0\tperson\nZ1aU1CigISE_0\tperson\nZ1a8Tqg-yjE_0\tperson\nZ1e-5FLWf6I_0\tcat\nZ1gxFkBk4EY_0\thorse\nZ1j81keSb9Q_0\tmotorcycle\nZ1j81keSb9Q_1\tmotorcycle\nZ1nr46t7EVk_0\tairplane\nZ1pv5a0as9c_0\ttrain\nZ1rB_fu2lKY_0\tdog\nZ1x8sEeQIuI_1\tmotorcycle\nZ13O2uGP1nE_0\tcar\nZ14p6heAJRc_2\tperson\nZ14p6heAJRc_0\tperson\nZ14p6heAJRc_1\tperson\nZ15QqHX1Z6M_1\ttrain\nZ2HF5_tyxR4_0\tbus\nZ2K03YbfcGg_0\telephant\nZ2QWOKCHkM8_0\tcow\nZ2QWOKCHkM8_2\tcow\nZ2QWOKCHkM8_1\tcow\nZ2SljfwK58g_0\tskateboard\nZ2SljfwK58g_1\tskateboard\nZ2VI7eM7BB0_0\tbear\nZ2acpS-e_cg_0\tperson\nZ2cvYI55Dps_0\tskateboard\nZ2dab1zmqv8_0\thorse\nZ2gvlPrX5HA_5\telephant\nZ2gvlPrX5HA_6\telephant\nZ2kcVxTMZtM_0\tperson\nZ2n2a39MxJQ_7\tbicycle\nZ2n2a39MxJQ_1\tbicycle\nZ2n2a39MxJQ_2\tbicycle\nZ2n2a39MxJQ_3\tbicycle\nZ2n2a39MxJQ_4\tbicycle\nZ2n2a39MxJQ_6\tbicycle\nZ21DONVXY1Q_2\tzebra\nZ23Gg06mNj8_0\tperson\nZ236ql8Tpvg_0\tperson\nZ23_3K28VSI_1\tgiraffe\nZ3AHrAB9qhw_0\tcat\nZ3AplkSO6kA_1\tcar\nZ3KMX_N6WSg_0\tperson\nZ3KMX_N6WSg_1\tperson\nZ3KMX_N6WSg_2\tperson\nZ3PzgfwbjLk_0\ttruck\nZ3i5sys0boU_0\tperson\nZ3i5sys0boU_1\tperson\nZ3sRLCOCxMY_0\tcat\nZ37dIpwPIqI_3\tbicycle\nZ4DQoYcs5mM_2\tperson\nZ4DQoYcs5mM_0\tperson\nZ4DQoYcs5mM_1\tperson\nZ4XLmQjbg7Y_0\tperson\nZ4XLmQjbg7Y_1\tperson\nZ4ZKg0KbSm4_0\tbicycle\nZ4ZPyzSGdRU_0\tdog\nZ4bO8cpjQZI_0\tperson\nZ4bO8cpjQZI_1\tperson\nZ4bW8HHeYP8_0\tcar\nZ4mYWGPFVkw_0\tperson\nZ4n5ieSA6cM_0\tcow\nZ4tOSluXWnE_1\tumbrella\nZ4u3PPkCYOs_0\tperson\nZ4u4zasFeAw_1\tbird\nZ4u4zasFeAw_0\tbird\nZ4vRtZE1WjQ_0\tdog\nZ4voZ3h_Dyk_1\tperson\nZ4xVMaYAqJ4_1\tbicycle\nZ446P08C8vE_0\tperson\nZ5KGx49qaAE_3\tbird\nZ5KGx49qaAE_5\tbird\nZ5KGx49qaAE_6\tbird\nZ5Qo8xdb8os_0\telephant\nZ5RKMhlNHEE_0\tperson\nZ5ZBRI0sc4Q_0\tbicycle\nZ5iJRTvm-Kw_1\tperson\nZ5iV683VDk0_0\tperson\nZ5ls93B1bBk_0\tperson\nZ5mQ_0ttu74_1\telephant\nZ5mQ_0ttu74_2\telephant\nZ5yNMm-TIjI_0\tbus\nZ5zGHZ82r9A_0\tperson\nZ53B8-gR640_0\tperson\nZ6BVtmEMfkI_0\tperson\nZ6FikDWrKkA_0\tperson\nZ6MfvYa9hCs_2\tcar\nZ6MfvYa9hCs_3\tcar\nZ6PyYboRq5c_0\tdog\nZ6Q3LdMwgi4_0\tcat\nZ6WrlM4ZZKA_0\tperson\nZ6j-7La25S4_0\tperson\nZ6j-7La25S4_1\tperson\nZ6j-7La25S4_2\tperson\nZ6k1unwmsfA_1\tperson\nZ6sd800eFC4_0\tperson\nZ6tGpP8q53A_9\telephant\nZ6tGpP8q53A_2\telephant\nZ6tGpP8q53A_4\telephant\nZ6vCDHs6NrM_0\tperson\nZ6yNyxXPPOw_0\telephant\nZ60iXtKpGMQ_0\tbus\nZ61B0fShfbs_1\tcow\nZ7AqkWEBwV8_0\tperson\nZ7DGMMQP79U_0\tcat\nZ7I8r1AqMhU_0\tperson\nZ7JHCdt48hA_0\tairplane\nZ7KEzuE_7hQ_0\tperson\nZ7LfnFm4OHs_0\tperson\nZ7WaJYiX_1o_0\tperson\nZ7WaJYiX_1o_1\tperson\nZ7bMdjLGiAo_0\tperson\nZ7eGCBjkKrU_0\tdog\nZ7gxE6ZSQXI_0\tairplane\nZ7iq45DtCTM_4\thorse\nZ7iq45DtCTM_5\thorse\nZ7zeXJ5lJRY_1\tperson\nZ7zeXJ5lJRY_0\tperson\nZ72sIqrQAF4_0\tskateboard\nZ74EGXvFjFM_0\tperson\nZ76Y_PNOgK4_1\tperson\nZ76Y_PNOgK4_0\tperson\nZ78P87kjtu4_0\tperson\nZ8CXvEObu4c_0\tdog\nZ8NfZN7WDKw_0\tperson\nZ8Oi5HJEyS4_0\tskateboard\nZ8k0TTq5BC8_0\thorse\nZ8s-Kg1PuSg_0\thorse\nZ86E7eIS9t8_1\tairplane\nZ89mG68LE2k_0\tperson\nZ8942_IPiTo_0\tbicycle\nZ8942_IPiTo_2\tbicycle\nZ9SwanypLJM_0\tbear\nZ9SwanypLJM_1\tbear\nZ9XS4cvVVy4_2\tperson\nZ9awHnw5J4o_0\ttruck\nZ9bt3xT5dCc_0\tcat\nZ9f--QLEQqI_1\tmotorcycle\nZ9jDpr533Cg_0\tcat\nZ9o5BEm1UeI_0\tperson\nZ9pHCguAO5c_0\tperson\nZ9wO9tftNG0_0\tbus\nZ9x_cPvKErA_0\tperson\nZ98EscJ1IG8_0\tperson\nZ98GFnZo-LA_0\tperson\nZ-I0S45eRT0_0\tperson\nZ-J0UQfvb5M_0\tperson\nZ-MvTXpMdm4_0\ttruck\nZ-PMnTjqAS8_0\tperson\nZ-QO3lrbh7c_1\tskateboard\nZ-VVWO3Ovgs_0\tperson\nZ-djkrj-5Cs_0\thorse\nZ-glDeBd2xA_0\tboat\nZ-lrIzXr9ck_0\ttrain\nZ-mTl_ipVa4_0\tumbrella\nZ-mXYrvubn8_0\tdog\nZ-zy-BzjLT0_0\tmotorcycle\nZ-zy-BzjLT0_1\tmotorcycle\nZ-7W_lh96xg_1\tairplane\nZ_JXyC6v_-s_0\tperson\nZ_KItWz0mTI_0\telephant\nZ_PViIzihe8_0\tperson\nZ_QVuM8wEmQ_0\tperson\nZ_QVuM8wEmQ_1\tperson\nZ_kPrUEqYXE_0\tbird\nZ_p4gYNjwG0_0\tperson\nZ_85vV3FHUg_0\tperson\nZ_85vV3FHUg_1\tperson\naACqXYewohQ_0\tperson\naAI7SN5_3CY_4\tbus\nBAhHrnCKvcM_2\tboat\nBAhHrnCKvcM_3\tboat\nBAhHrnCKvcM_5\tboat\nBAmy5TQke7w_0\tperson\nBAnfbsB8rIY_0\tbear\nBAnn4L-iNLE_0\tperson\nBAq_fnyQ6z4_0\tperson\nBA4ZGv8flRA_0\tperson\nBBCBbdz3Qvs_0\tdog\nBBCBbdz3Qvs_1\tdog\nBBLAyHVLHh8_0\tperson\nBBOd-YBAUgw_0\tbicycle\nBBPlqTbAphY_1\tperson\nBBQ2xu9OehQ_1\tdog\nBBS5owVJaTU_1\tskateboard\nBBS5owVJaTU_0\tperson\nBBVPb5z0x7k_0\tcat\nBBXs1J4j2mA_0\tskateboard\nBBdA1qc9H-g_0\tskateboard\nBBk7ZnOEjMA_0\tperson\nBBopEl_n3Fc_0\tperson\nBBpFu8j2fBc_0\tbus\nBBpFu8j2fBc_1\tbus\nBBqTHwpYeEc_0\ttrain\nBBrfgTTduuI_0\tperson\nBB9l_znmPls_0\tumbrella\nBCBCK2k2Bdw_0\tperson\nBCBgjRWuOcA_0\tperson\nBCGB6zaBDpg_1\tperson\nBCGB6zaBDpg_0\tperson\nBCI91i3aEek_0\tmotorcycle\nBCJbf6um28s_1\tairplane\nBCKVauIBDFM_2\tbear\nBCin0MjzM8Y_0\tcow\nBCoTKGNhMVw_0\tdog\nBCoTKGNhMVw_1\tdog\nBCo8e6n2dYQ_1\tdog\nBCqYnyGIols_1\tbicycle\nBCsmPvRqaNk_0\tperson\nBCuzA73UTl4_0\tperson\nBCwAdqAouFU_0\tboat\nBCwyoTwckSE_0\ttruck\nBDFBV8JbIF8_0\tperson\nBDFVkc87amI_0\tperson\nBDHUAJn9nnc_0\tperson\nBDHsXkbkS-w_0\tskateboard\nBDOemJGz04I_1\tperson\nBDcTOMebCHs_0\tperson\nBDcTOMebCHs_2\tperson\nBDcTOMebCHs_1\tperson\nBDdIKtFwnjA_1\ttrain\nBDdbk3ZQrP0_0\tcat\nBDdhenNSY9o_0\tperson\nBDk-BklqSdI_0\tperson\nBDroGke9Ogg_0\thorse\nBDroGke9Ogg_2\thorse\nBDtGFVFexaU_0\tperson\nBDzXi4ukhN0_1\tperson\nBDzXi4ukhN0_0\telephant\nBD30MTvTuYU_0\tperson\nBD7TQWBytfQ_0\tknife\nBEArUGKSB-Y_0\ttrain\nBEArUGKSB-Y_1\ttrain\nBEKMcritl6M_1\tperson\nBEMcwkY2beQ_0\tperson\nBERvmKL4Glc_0\tperson\nBESdHwoIDsA_0\tdog\nBEUB64a3AIY_0\telephant\nBEUB64a3AIY_1\telephant\nBEYy-ZRSWSk_0\tskateboard\nBEa_8wp0528_0\tcow\nBEqG56tHTEI_2\tbus\nBEqPniAgjaY_0\tcat\nBErty5GnulU_0\tperson\nBEuXjB1zLeE_1\tcar\nBExSp8l17GY_0\tperson\nBExlFv0scM0_0\tperson\nBE10HJUHUHw_1\tperson\nBE8KS4PZH54_0\telephant\nBE-crlUXSSE_0\tdog\nBFC3DWxOces_2\tairplane\nBFC3DWxOces_1\tairplane\nBFC3DWxOces_3\tairplane\nBFC3DWxOces_4\tairplane\nBFC3DWxOces_5\tairplane\nBFJ4v-XlKAg_0\tskateboard\nBFPQCoJqTRk_0\tperson\nBFeIwErwdS8_0\tperson\nBFeIwErwdS8_1\tperson\nBFggPKKt6wk_0\tperson\nBFggPKKt6wk_1\tperson\nBFhh8z0Fmk0_0\tperson\nBFponHgVsdA_0\tperson\nBFs239KuGa8_1\tperson\nBFxUyTrqZhU_2\thorse\nBFxUyTrqZhU_4\thorse\nBF4YTMGtDs8_1\tskateboard\nBGAQlsAiJ_0_0\tairplane\nBGAQlsAiJ_0_1\tairplane\nBGAQlsAiJ_0_2\tairplane\nBGAQlsAiJ_0_3\tairplane\nBGAQlsAiJ_0_4\tairplane\nBGAQlsAiJ_0_5\tairplane\nBGAQlsAiJ_0_6\tairplane\nBGLM4yl_Ka4_2\thorse\nBGO3DBbNozc_0\tskateboard\nBGR1gMrCTpA_0\tperson\nBGT-p0CgoFg_1\tperson\nBGW9SDHTWKY_1\tperson\nBGW9SDHTWKY_0\tperson\nBGee3Ar-Fbg_0\tairplane\nBGpx9Xow9Ew_0\tcat\nBGqNnzNtWkc_0\tperson\nBGq6TeZHkLU_0\telephant\nBGshZfVDb5w_0\tperson\nBG4QyYPKYvg_0\tperson\nBG4QyYPKYvg_1\tperson\nBG_x-4YUtFE_0\tdog\nBHA5UUg4lCw_2\ttrain\nBHH2sTfHwks_0\tperson\nBHH2sTfHwks_1\tperson\nBHPSyq8L5S8_1\tperson\nBHQkdwmXrtI_1\tskateboard\nBHQkdwmXrtI_2\tskateboard\nBHYrJ1yaM-w_0\tcar\nBHdbqcxv3Vw_0\ttruck\nBHfXgxJCcrw_0\tboat\nBH5fxWFpHvE_0\tairplane\nBH5npOcPlY0_0\tcar\nBH6nqU68dWo_0\tperson\nBH74QV_0vtc_0\tbird\nBH9Ob6Uiw1w_1\tperson\nBH_SlBCiQ_8_0\tperson\nBIETPRRGGgY_4\telephant\nBIETPRRGGgY_5\telephant\nBIIU36E15Vo_0\tperson\nBIMggdk7AHQ_0\tcat\nBIQeL2o_Ogg_0\tperson\nBIUQ935UkDo_0\tcow\nBIVLmUTNYbk_0\tperson\nBIV-1bNQ7pI_0\tskateboard\nBIfqcruNiic_0\tperson\nBIkDAHYmcFw_0\tperson\nBIkDAHYmcFw_1\tperson\nBInC--gFqHM_0\tperson\nBIvTK9qvP1w_0\tskateboard\nBIxCP9ck4-8_0\tcat\nBI5i3aDb_FQ_1\tperson\nBI-kr0tFSDg_0\tperson\nBJIZYdOZHzg_0\tumbrella\nBJK_SXpLtnI_0\tbird\nBJMP05du3Eg_0\tperson\nBJQstPOa8Wk_0\tperson\nBJS2YLbErJg_1\tperson\nBJfRrRcfmF4_0\tskateboard\nBJf9nFjqLvg_1\tbird\nBJlcWhfsg_g_0\tperson\nBJriJT6zJl8_1\tskateboard\nBJwoZcHbBK0_0\tumbrella\nBJ05o1_UKzw_0\tdog\nBJ44CIPaDf8_0\tperson\nBKAo6GZ_kNs_0\ttrain\nBKTCaKgjiag_2\tperson\nBKUKi0vTt0A_0\tperson\nBKdSO_PNJ4U_1\tperson\nBKdSO_PNJ4U_2\tperson\nBKdSO_PNJ4U_0\tperson\nBKl0wLRzoD8_0\tperson\nBKw9UQxZ3a8_1\thorse\nBK-rIrwen6U_1\tmotorcycle\nBLB0F-XD8IA_1\tperson\nBLB0F-XD8IA_0\tperson\nBLEdcnrUmEo_0\tcat\nBLE9cZ8L3a0_1\tskateboard\nBLFYe-dU9ZU_0\tairplane\nBLO7KJUu8t4_0\telephant\nBLSwwE9mtTQ_1\tknife\nBLcOGv-0-dc_1\tdog\nBLfmgLou27o_0\tcat\nBLvowRU6z7s_0\tbird\nBLxsg2_sjDM_1\tperson\nBLy6RcifNl0_0\tbus\nBLy6RcifNl0_1\tbus\nBLy6RcifNl0_3\tbus\nBL6tcorHrT4_0\tbicycle\nBMH2ReDeKuc_0\tperson\nBMUnKa8FUGQ_0\tperson\nBMUnKa8FUGQ_1\tperson\nBMavrQABR1Y_0\tperson\nBMa4xJ1U3Zk_0\tperson\nBMbZc-jxEfo_0\tperson\nBMbZc-jxEfo_1\tperson\nBMfsf9tDz8o_0\tcow\nBMfsf9tDz8o_1\tcow\nBMhy1f7EuXM_0\telephant\nBMptIGI1Il8_0\tcar\nBMuO2fjJoOw_0\tcar\nBMweJTmvCBg_0\tperson\nBMweJTmvCBg_1\tperson\nBMypDovEOEE_0\tperson\nBMypDovEOEE_1\tperson\nBM0QiiStqd8_1\tskateboard\nBM6XrBQQ7NE_0\tperson\nBM6609PpfO0_1\tperson\nBM6609PpfO0_0\tperson\nBNGDM8sFM8Y_0\tperson\nBNIVhG5pZh8_1\tdog\nBNJwAx3eUKc_0\tperson\nBNK68rC7RdI_0\tumbrella\nBNTS3OPHAP4_0\thorse\nBNXKRPSr66c_0\tperson\nBNXKRPSr66c_3\tperson\nBNXKRPSr66c_1\tperson\nBNXKRPSr66c_2\tperson\nBNbPQGMLs2w_0\tperson\nBNbPQGMLs2w_1\tperson\nBNbSUPI8feg_0\tperson\nBNcj3161E9o_0\tperson\nBNeWUyqXAC0_1\tairplane\nBNmMB68b1PA_0\tperson\nBNnVfaIfBx0_0\tairplane\nBNnVfaIfBx0_1\tairplane\nBNyK_4tt2fg_0\tcar\nBNybc47kPjg_0\tperson\nBN1HT0FOOhI_0\tdog\nBN7YfmbYuVs_0\telephant\nBOE82LEqzWw_0\tcow\nBOF3tFvEu0o_0\tperson\nBOHE8JNUcQc_0\tboat\nBOMeyjZNH5k_0\tbicycle\nBOQiuL9QlIo_1\tperson\nBOUcPea33eY_2\tskateboard\nBOfgzvAgVQw_0\tbus\naAMhdGuR5DE_0\tcat\naARa5-CLhG8_0\tperson\naAVaqjgY1m8_1\tperson\naAZ2fVjhcIE_0\tperson\naAj0EN1Rnc0_0\tbird\naAj0EN1Rnc0_1\tbird\naAlTiBaLr8M_0\tperson\naAmVIu8X7p4_1\tperson\naAma36YlaAo_0\tzebra\naAsr-Rf6rEE_0\tperson\naAsr-Rf6rEE_1\tperson\naAuz7EfR_fU_0\tcow\naAyTLM_PmzA_0\tskateboard\naAzpA1iK_bE_0\tperson\naA0FrWtkjXk_0\tperson\naA3okCsYx6Y_0\tbird\naA5DYzky6o4_0\tcow\naA8Tz4nZ99g_0\tperson\naBBtHXQoEtM_2\tperson\naBBtHXQoEtM_1\tperson\naBQm5kN1TfY_0\tcat\naBexNnNkORk_0\tairplane\naBq4NF1upak_0\tperson\naBvvXrP1BJs_0\tperson\naB-tGXFmyFU_0\tperson\naCQAel27T4o_2\tperson\naCSzhpU1heQ_0\tcow\naCXfvvg8CF8_0\tairplane\naCiDDC9KFS8_0\tmotorcycle\naClye1Ctc9E_3\ttruck\naCl98J6O9Hk_1\tperson\naCuXZ3LmfSo_0\tperson\naDGpg2xtDk8_1\tperson\naDRE08tF2Wc_1\tbus\naDTQRnSeu_E_0\tskateboard\naDTTYd0Z5Vk_1\tperson\naDjhOS5Xa9Q_0\tboat\naDmLwCb_o30_0\tdog\naDtJSv7XR90_0\tcar\naDte-e70l7U_0\tcow\naDte-e70l7U_2\tcow\naDte-e70l7U_3\tcow\naDt4Puik-kU_0\thorse\naDwTy9yiOms_0\tumbrella\naDxRlCI40wo_0\tperson\naD2q00X0-eg_0\tperson\naD2q00X0-eg_1\tperson\naEJy28mvKPk_0\tperson\naEJy28mvKPk_1\tperson\naEMPa2NvIl4_0\thorse\naERed6pg_h8_0\tperson\naER-VrHLWwY_0\tperson\naER-VrHLWwY_1\tperson\naEZ9vBpXNKU_0\tperson\naEw_vtKlegE_0\telephant\naExRtJpfZEs_0\tknife\naE1veVneq04_0\tperson\naFC2Zy2-0dY_0\tperson\naFFKeUdtPcQ_4\tknife\naFL2V522q9A_0\tperson\naFZ03eEOZFE_0\tbird\naFbVlCimys8_0\tbird\naFdPuo5xB-c_0\tperson\naFhKp8gVZSE_0\tperson\naF86vrld8V4_0\tperson\naF-CmWo8ooM_0\tperson\naF-CmWo8ooM_1\tperson\naGAB6WQFklc_0\tperson\naGE8AphnkNU_0\tknife\naGGiVuwB1p8_0\tbear\naGY3LCiYRnQ_0\tmotorcycle\naGgnovv6T3U_0\tdog\naGgxdwCpAN0_1\thorse\naGhNzJSHCOU_1\tknife\naGmxZatPe60_0\tperson\naGmxZatPe60_1\tperson\naGuWVv6XS8Q_0\tperson\naGuWVv6XS8Q_1\tperson\naGwPRbsru-4_0\tcat\naGxOl5SXjtM_0\tperson\naG1c8x5Dl-w_3\tbicycle\naG1c8x5Dl-w_2\tbicycle\naG1c8x5Dl-w_4\tbicycle\naG20iwkTd_o_0\tperson\naG6D_te6V3s_0\tperson\naHEFx7Zz6E4_0\tperson\naHb4yEpCinw_0\ttruck\naHiGSUMMfBQ_0\tperson\naHnMWEvjLzI_0\tcar\naHrTcxckS-A_0\tperson\naHrTcxckS-A_1\tperson\naHsgQAyd8ss_0\tperson\naH2ZxImdwaU_1\tmotorcycle\naH2ZxImdwaU_2\tmotorcycle\naH5Cd20kdJw_0\telephant\naILjXrLJpHw_0\tumbrella\naIQf8LQ5QPU_0\tperson\naISEbZGZH68_1\tcar\naITryMUZ2b8_0\tperson\naIUYT8pblHs_0\ttruck\naIU5E5tHvdc_1\tperson\naIVWVNBI-n0_0\telephant\naIcFi8LMv0w_0\tairplane\naIjLf6T_K3o_1\tbear\naIoZO3mu_tQ_0\tperson\naI311E3BWwI_0\telephant\naI7axTZFW4A_0\ttruck\naI80ysvYFG4_0\tperson\naJChqX9Ki8A_6\tairplane\naJChqX9Ki8A_1\tairplane\naJChqX9Ki8A_2\tairplane\naJChqX9Ki8A_5\tairplane\naJN9lRsvUv8_0\tperson\naJQ9scZQmz8_0\tperson\naJTABCCQtK4_0\thorse\naJYmkpuijrk_0\tmotorcycle\naJYurtxV0Og_0\ttrain\naJYurtxV0Og_1\ttrain\naJcPyWppCcI_0\tmotorcycle\naJgpAyFnpeI_0\tcat\naJ0dUcEIE_U_0\tperson\naJ1SzcgNcxI_0\tcat\naJ8w4L7E368_0\tperson\naKLf2yC2diM_0\tcar\naKMqeCkIJSg_0\tperson\naKOMIxz2RsM_0\tperson\naKOMIxz2RsM_1\tperson\naKiwOUy71Lo_1\tperson\naKiwOUy71Lo_0\tperson\naKqrwq-Sigg_0\tskateboard\naKtBD-3wFMA_2\tbear\naKtBD-3wFMA_1\tbear\naKu-1-TFl1g_0\tknife\naK-rgio7orw_2\tbus\naLDq7roX-SU_0\tcat\naLFDqtBMblI_0\tcat\naLFxGnCM1zs_0\tperson\naLIa7x90hQc_0\tperson\naLUSnANtUlE_0\tairplane\naLX9cIe12C8_0\tskateboard\naLZAMgiWcXk_0\tbird\naLZ0lbLzg8Y_0\tperson\naLZ0wCY2j2s_1\tperson\naLeeoZ1uVcc_0\tboat\naLjomcNk9fc_0\tperson\naLj4N9Tp6C0_0\tskateboard\naLj4N9Tp6C0_1\tskateboard\naLo-gekX9j0_0\tperson\naLo-gekX9j0_1\tperson\naLuNNRUC09A_1\tbus\naLuNNRUC09A_6\tbus\naLvCIWJQJbY_0\tcar\naLvg1CWrY0Q_0\ttruck\naLxJ8T4CFuM_0\tperson\naLzL_Gldhzk_1\tperson\naLzhO0EqNcc_3\thorse\naL6H2Jatw0k_0\tcat\naL70_drPJtA_0\ttrain\naL8hELYDnTc_0\tperson\naMAKznXul5M_2\tknife\naMAYLrcEnZY_0\tbus\naMAeSegIdJg_0\tperson\naMAeSegIdJg_1\tperson\naMHtvIvWTBU_0\tbear\naMNbQ1Cl5GY_0\tmotorcycle\naMRtQFBcLNM_0\tperson\naMX0jhSq6UY_0\tperson\naMb78Ixlbfw_0\tskateboard\naMqHsdXJ7UU_0\tperson\naMzZxN9uvMc_2\thorse\naNB5rIhRL7g_0\tairplane\naNEpBEnAUhw_0\tmotorcycle\naNF18KgxGHA_0\tskateboard\naNJuTWrnIfo_0\tperson\naNJuTWrnIfo_1\tperson\naNKleFpxS4M_0\tperson\naNKleFpxS4M_1\tperson\naNNWNDoOM_4_0\tperson\naNNWNDoOM_4_1\tperson\naNOXvvKZ3qU_0\tperson\naNZMe4tov6w_0\tcow\naNdJrRu4imo_0\tperson\naNjs-khPjiU_0\tperson\naNj1xwowXYU_0\tperson\naNqkQnGfWEc_2\tskateboard\naNqkQnGfWEc_0\tskateboard\naNwIHwPqFPc_0\tcar\naN4Na3OaY4I_0\tbicycle\naN4NmH-GafU_0\tperson\naN770kOQCD8_0\tperson\naN82X1hXgEE_0\tperson\naN82X1hXgEE_1\tperson\naN9XAd7-rzE_0\tperson\naN9XAd7-rzE_1\tperson\naN_3Pwk-7oY_0\tperson\naOHPVt_93RE_0\tbicycle\naON6RKmi-YQ_2\ttrain\naOPbvY62dMQ_0\tairplane\naOQ-8RoQYEU_0\tperson\naOQ-8RoQYEU_1\tperson\naOQ-8RoQYEU_2\tperson\naOW81s5KlyA_0\tperson\naOcGv3kcyhg_0\tbear\naOcGv3kcyhg_3\tbear\naOjjUIWuG6Q_1\telephant\naOp2NlwNeoY_0\tcat\naOz0l6mLHmA_1\tdog\nBOlBcGufEU8_0\tperson\nBOlBcGufEU8_1\tperson\nBOmgqlRxGlM_1\tperson\nBOmgqlRxGlM_0\tperson\nBOnvGIZd58M_0\tperson\nBOowRuwiNhU_0\tperson\nBOowRuwiNhU_1\tperson\nBOr7CffDWEU_0\tperson\nBOsNz8L3PXI_0\tperson\nBOtfIOm5kag_0\tdog\nBO1T_-iFGdM_5\tbird\nBO1T_-iFGdM_2\tbird\nBO1T_-iFGdM_3\tbird\nBO3UKxe7nyo_0\tperson\nBO5EdP_PO9M_0\tperson\nBO7sWBaaL7g_0\tperson\nBO7sWBaaL7g_1\tperson\nBO-3uvHhUdI_0\tperson\nBO-3uvHhUdI_1\tperson\nBPBBMIdFoiE_0\tperson\nBPEwUVhfaOk_1\tknife\nBPVpq7UrI-k_0\tperson\nBPX5EquoyCU_0\tmotorcycle\nBPX5EquoyCU_3\tmotorcycle\nBPX5EquoyCU_1\tmotorcycle\nBPX5EquoyCU_2\tmotorcycle\nBPiWTYUA7eI_0\tperson\nBPjkQ-lEqcw_0\tperson\nBPrrZpiDdo4_0\tcow\nBPsTDg4C4o0_1\tperson\nBPsTDg4C4o0_0\tperson\nBPxPfFzwlQA_0\ttruck\nBP-GGAbCOhE_1\tbus\nBQDxNNWRtas_0\tcar\nBQDxNNWRtas_1\tcar\nBQEzj9pP1SU_0\tperson\nBQIO94PF6RE_0\tperson\nBQIO94PF6RE_1\tperson\nBQVcvMWyWpU_1\tperson\nBQZGptzIdjE_0\tcow\nBQgPk0vRreM_0\tbird\nBQgPk0vRreM_1\tbird\nBQgPk0vRreM_3\tbird\nBQgPk0vRreM_6\tbird\nBQgPk0vRreM_9\tbird\nBQh5Ib9nynM_0\ttruck\nBQtDUi4BxRg_0\tperson\nBQwLGv7fgQg_0\tperson\nBQxCcefrjSk_0\tcat\nBQyowuIZqFQ_0\tperson\nBQzzKQ9ejzw_1\tknife\nBRCb183ELe0_0\tperson\nBRHPsi_0nTg_0\tmotorcycle\nBRQiSnowTss_0\thorse\nBRVNuDR5WzI_0\tcow\nBRcQS0dQqEU_0\tcar\nBRfegSv5VEk_0\tperson\nBRfegSv5VEk_1\tperson\nBRi_AMaK3kc_0\tdog\nBRjvUtQdukg_0\thorse\nBRlWBt4WHdU_1\thorse\nBRnsmPzoEsM_0\tskateboard\nBRtCCpXG_N8_1\telephant\nBRt1o8xqxFs_0\tperson\nBRt5hLASRMU_0\tbird\nBRxrw0-skYM_0\telephant\nBR0SGq2ioqU_2\ttrain\nBR0SGq2ioqU_7\ttrain\nBR1gOlJPEdk_2\telephant\nBR8cOV8KYX4_0\tperson\nBR-XwELzLV0_1\tdog\nBSDy_dzOSS4_0\tcow\nBSHg9I0V6Yc_2\tbus\nBSJgV2iO0jc_0\tperson\nBSOCno_3bfI_0\tperson\nBSSyaPq1EoM_0\ttrain\nBSWNCcyXeR4_1\thorse\nBSWpwtIPQ9U_0\telephant\nBSWpwtIPQ9U_1\telephant\nBSWpwtIPQ9U_2\telephant\nBSWpwtIPQ9U_3\telephant\nBSqz3i60KPw_4\tbicycle\nBSqz3i60KPw_1\tbicycle\nBSqz3i60KPw_2\tbicycle\nBSutEBx3H4A_0\ttruck\nBSvCnoryvn4_0\telephant\nBSyxB7X9SH0_5\ttruck\nBSyxB7X9SH0_7\ttruck\nBS1lexD0ugY_1\tperson\nBS1lexD0ugY_0\tperson\nBS5mJ0Y7Rys_0\tperson\nBS-S0nYSwkQ_0\tperson\nBS-S0nYSwkQ_1\tperson\nBTBmlFGHK-8_2\tperson\nBTBmlFGHK-8_0\tperson\nBTBmlFGHK-8_1\tperson\nBTKLizyvgcA_0\tperson\nBTR83oP1vpo_0\tperson\nBTlwglCdzOk_0\telephant\nBTpBteZfK7Q_0\tcat\nBTxSuijXVPY_0\tperson\nBTywlpNCABw_0\tcow\nBTzWqg8vHQI_0\tcar\nBT9sKGDb0Qw_0\ttrain\nBT9sKGDb0Qw_1\ttrain\nBUF45g7KGB8_0\tmotorcycle\nBUX8raEGFZk_0\tdog\nBUX8raEGFZk_2\tdog\nBUX8raEGFZk_3\tdog\nBUY-_l8_v9s_0\tperson\nBUZ7x7JaQ1k_0\tperson\nBUrMlyUBryI_0\thorse\nBU4SnrK9UiY_0\thorse\nBU4SnrK9UiY_2\thorse\nBU4yiA6qKAQ_0\tbicycle\nBU5PaU-UTss_0\tperson\nBVAi_zqhIeg_1\tperson\nBVCe2emxuTQ_0\thorse\nBVFYmsvoNTA_0\tcow\nBVS5Q8eBmRs_0\tperson\nBVWEvs3lq0Y_0\tperson\nBVWEvs3lq0Y_1\tperson\nBVXMpcHTg80_2\tmotorcycle\nBVm9KRW0iu8_0\tmotorcycle\nBVo3XdFnAJM_0\thorse\nBVxr6TGFsMQ_1\tperson\nBV5tXmVwddI_1\tperson\nBV-UtDJNS2w_1\tmotorcycle\nBWA5eWlt6Lg_0\tcar\nBWFYpOE-8yo_0\tperson\nBWcaU8lR4rM_0\tperson\nBWdhK5cwgt0_0\tbus\nBWjRZ-aKRX4_1\tperson\nBWlnPrI8FLk_0\tperson\nBWnFU-Li_8E_0\tperson\nBWn3QGOyZJc_0\telephant\nBWn7EPWkJ2I_1\tbear\nBWp2oVJMG1A_0\tperson\nBWqYVuIKaNA_0\tperson\nBW5r0Kv6h2U_0\tboat\nBW56O_QhBmc_0\tperson\nBW7uP0jcst8_0\thorse\nBXA3uMFAA9M_0\tcow\nBXCd65rDsk4_0\tdog\nBXCrD4eGGWw_0\tperson\nBXHktSPnW24_0\tperson\nBXTGSkuESqU_0\tperson\nBXUL3aLVZM4_0\tperson\nBXWXLNGacmc_1\tmotorcycle\nBXWXLNGacmc_0\tmotorcycle\nBXdMv9s3Rtw_0\tperson\nBXiQhR0Zj70_0\tperson\nBXrwbMjK_ZU_0\ttrain\nBX8AJD8uL3U_2\tperson\nBX-SAZsC6yc_2\tknife\nBX-SAZsC6yc_4\tknife\nBYQfvvAP9rY_0\tperson\nBYRNeh3RRZs_0\tperson\nBYS-DmtMpWE_0\tcat\nBYVhHLCSZ_M_1\tdog\nBYYakMVK6Ko_0\tperson\nBYi8dYVDYak_0\tperson\nBYkytpBqzHQ_0\tairplane\nBYq45niURL8_1\ttruck\nBYq45niURL8_0\ttruck\nBYud6fy8t8A_1\tknife\nBYud6fy8t8A_0\tknife\nBYud6fy8t8A_2\tknife\nBYud6fy8t8A_3\tknife\nBYxg5sQjvQ4_0\tperson\nBYyATiWsxZs_2\tcar\nBYyATiWsxZs_0\tcar\nBYyATiWsxZs_1\tcar\nBYyrXwDFF5U_0\tperson\nBY0XhpATtuI_0\tumbrella\nBY2Fs4KDDbU_0\tmotorcycle\nBY7KYQ_Qf3Y_0\tcow\nBY8mmPl_K_A_0\tperson\nBY-5sA1BbFE_0\tdog\nBY-5sA1BbFE_2\tdog\nBZDa7e9EFvI_0\tknife\nBZERyxrpvg4_1\tperson\nBZIzw3XdAgI_1\tperson\nBZI3ovXxotQ_0\tknife\nBZeIe9Nkb1E_0\tcat\nBZgZ1H4t3hQ_0\tperson\nBZgxjWSM7Vc_0\tbicycle\nBZhfYzqKuu8_0\tperson\nBZkYWI_qxz4_1\tbird\nBZldivEoOo8_0\tperson\nBZli_iMMV8k_0\tbear\nBZli_iMMV8k_7\tbear\nBZ94WX4wHn0_0\tskateboard\nBaDQg_CCQpU_0\tperson\nBaDQg_CCQpU_2\tperson\nBaHS1WcgbbE_0\tbird\nBaHS1WcgbbE_1\tbird\nBaJTQLa-vuU_0\tperson\nBaOQYsYuC6A_1\telephant\nBaRsW_taGVY_0\tcat\nBaWQb_lSjYs_0\ttrain\nBaYLeM_yk_Q_1\tskateboard\nBafH7BetIyk_0\tperson\nBakCr5HeDNE_2\tboat\nBakCr5HeDNE_0\tboat\nBauKE-faLzM_1\tperson\nBavQVUFfmBU_1\tperson\nBavQVUFfmBU_0\tperson\nBavoG7kb0wo_0\tcar\nBaxc5TW06FU_1\tknife\nBa1sC-X1OF8_0\tperson\nBa1sC-X1OF8_1\tperson\nBa2T3joy6BQ_0\tperson\nBa3CWVKFpBE_0\tboat\nBa5BO-nvDnE_1\thorse\nBa-SiAqH09k_2\ttruck\nBbAdBjyFFEA_0\tbird\nBbAdBjyFFEA_1\tbird\nBbAdBjyFFEA_2\tbird\nBbEfZ9mUKOY_0\tcat\nBbOabnT5V-E_0\tperson\nBbQyfmZx-2Y_2\tbear\nBbRarKH6D_Q_0\thorse\nBbYZ7Ee3Ixs_0\tperson\nBbYqjT1OzLY_0\tperson\nBbYqjT1OzLY_1\tperson\nBbfOXQD21Ac_1\tmotorcycle\nBbnSU5sRdBs_0\tperson\nBbnxzNL5tMk_0\tperson\nBbq8h83cFE8_0\tperson\nBbu_YM_GBG4_3\tbird\nBbu_YM_GBG4_0\tbird\nBbv9Y9Goufk_5\telephant\nBbv9Y9Goufk_0\telephant\nBbv9Y9Goufk_1\telephant\nBbv9Y9Goufk_2\telephant\nBb4uwSjmtKk_2\tbird\nBcHl4OuJLT4_0\tperson\nBcHl4OuJLT4_1\tperson\nBcSXX5O_YDw_0\tbicycle\nBcVn38vI_Zk_0\tperson\nBcV5QdDIrMg_0\tperson\nBcg-TsdpO-Q_0\tperson\nBcjVHV-6WWM_0\tperson\nBcjZaclf1m0_3\tbird\naO4uLNN4Gt0_0\tbear\naPCEyodWBU4_0\tperson\naPPUf7JUJRo_0\tperson\naPf5SoOgmhQ_0\tmotorcycle\naPheJtUTSps_1\tboat\naPm89i_7aKs_0\ttrain\naPm89i_7aKs_1\ttrain\naPswSvCaFDQ_0\telephant\naPvqWgeR03U_0\tperson\naQAieL0LKIo_0\thorse\naQB2gAnqQi0_1\tperson\naQGQKDLwRqM_0\tperson\naQVn7fJi_l4_0\tcat\naQaKnTZ4hDg_0\tperson\naQfQqr5W5uI_1\ttruck\naQfQqr5W5uI_2\ttruck\naQfQqr5W5uI_4\ttruck\naQlLjT95Hgs_3\thorse\naQub6VGWKzQ_0\tcar\naQzKS5Sn9u0_0\tperson\naQ1c75hfANo_0\tperson\naQ6larydXgI_4\telephant\naQ6larydXgI_0\telephant\naRBWB79BIIg_1\tumbrella\naRHGn50eToQ_0\tbear\naRQQ75s9Ni4_0\tboat\naRRUAfurxVU_0\tperson\naRcw_PTSf4o_0\tperson\naRdAN9jVvqQ_1\tdog\naRnJ4lIPIL4_0\tbus\naRueDRgWEOs_0\ttruck\naRzwrPXsTRI_0\ttruck\naR6P3PtMIZc_0\tperson\naSDuIU0pzYY_0\tperson\naSH88cb0kww_0\tperson\naSMzQpOjAc8_0\ttrain\naSUtY_pSN0k_0\tbird\naSWGbO-Nfcg_0\ttrain\naSWGbO-Nfcg_1\ttrain\naSb-LY3vBsg_0\tgiraffe\naSkBoJ55w2Y_0\tperson\naSqwAZJaQIk_0\tbus\naSqwAZJaQIk_2\tbus\naSsjyvISV94_0\ttrain\naSw1yhbXHuA_0\telephant\naS2Zw7-j7p4_0\tcar\naTBr31jkThQ_3\tbus\naTOn74Inw24_0\tbird\naTR3FylgTkA_1\tperson\naTR3FylgTkA_2\tperson\naTS8hur_yyo_0\tperson\naTcDiEXEhhk_1\thorse\naTdIOtWasSE_0\tperson\naTeFjqoG9fM_0\tperson\naTeFjqoG9fM_1\tperson\naTj38bNIsQo_0\tcow\naTvgsqSb5aA_0\tperson\naTvoRXrEvG4_0\tbicycle\naTvoRXrEvG4_2\tbicycle\naT3idINTybY_0\tumbrella\naUFHlj5AVrU_0\tperson\naUNlQPWMFHo_0\tcar\naUQh47P34C0_0\tperson\naUQh47P34C0_1\tperson\naUX-HZraWQs_3\tzebra\naUh41vv5vdE_3\ttrain\naUh41vv5vdE_0\ttrain\naUh41vv5vdE_2\ttrain\naUv4LjbJxLs_0\tbus\naU5AZMYHZ2o_0\tdog\naU5tePXE5qE_1\telephant\naVFbcdQrobU_0\tperson\naVGtibXVt40_0\ttrain\naVMpwmT7ojA_0\ttruck\naVPIHMyNEw8_0\ttruck\naVZJ8qaxG3s_0\tperson\naVif6Qc9Prw_0\tcow\naVknWcQimJA_0\tbus\naVm9jp_ttsk_0\telephant\naVm9jp_ttsk_1\telephant\naVm9jp_ttsk_4\telephant\naVm9jp_ttsk_5\telephant\naVm9jp_ttsk_6\telephant\naVm9jp_ttsk_7\telephant\naVm9jp_ttsk_8\telephant\naVo-jvGoUGs_1\tboat\naVo-jvGoUGs_0\tboat\naVq4ezzbcTc_0\tbird\naVvuGEexwy0_1\tperson\naVy9mhLlo5U_0\tumbrella\naV2_0JBmw8o_1\tperson\naV7mSkydynI_4\tbicycle\naV7mSkydynI_1\tbicycle\naV7mSkydynI_2\tbicycle\naWCNGGW4Qew_0\tperson\naWDtrDYqivs_0\tperson\naWQxqFyyzng_0\tcow\naWQxqFyyzng_1\tcow\naWWMT0webCY_0\tperson\naWWtWhgt_V0_0\tcow\naWYoUCAev64_2\tbicycle\naWYoUCAev64_0\tbicycle\naWcaF85RIM8_3\telephant\naWgSKxQO5Ps_0\tcat\naWi51gAEIkY_0\tperson\naWma4eTtHv0_0\tperson\naWqBSBc-XpU_2\tknife\naWt13fGkYuA_0\tcow\naW9D5rT3GCo_0\tbear\naXFFLOGR_yI_0\tperson\naXFgCWZLFj8_0\thorse\naXFgCWZLFj8_5\thorse\naXFgCWZLFj8_1\thorse\naXKbkyjRqkU_8\tbear\naXKbkyjRqkU_0\tbear\naXKbkyjRqkU_7\tbear\naXOPdDTpvxc_0\tperson\naXWkAKNw0Dg_0\tbird\naXXfrIsIqi0_0\tperson\naXhd5BhT4hs_0\tcow\naXhd5BhT4hs_1\tcow\naXml5kCJyDY_0\tskateboard\naXml5kCJyDY_2\tskateboard\naXn1cwN8vng_0\tairplane\naXn1cwN8vng_1\tairplane\naXxKLf5m61g_1\tperson\naXxKLf5m61g_0\tperson\naXxPxBeZjQI_0\tperson\naX0JOJY-BDc_0\tperson\naX0JOJY-BDc_2\tperson\naYCA7dz0nbI_0\tperson\naYJzxhE8-Rs_5\tknife\naYPCTMucy6A_0\tperson\naYgA8AxT0V4_0\tgiraffe\naY1i2TADX0c_0\tperson\naY1i2TADX0c_1\tperson\naY1i2TADX0c_2\tperson\naY4dOYabpbs_0\tcow\naY6lI7qO6kI_0\tperson\naZF83PK7HKU_0\tperson\naZF83PK7HKU_1\tperson\naZGZbrCAFl4_0\tperson\naZGZbrCAFl4_1\tperson\naZHznZSD2uE_0\tperson\naZJ_vArnOC0_0\tcow\naZL_n-gon0U_0\tboat\naZT_v5WnLio_0\tperson\naZVtxAF_Imw_0\tdog\naZZcXyRJwyI_0\tperson\naZ4tzgju18s_1\ttrain\naZ-3jypmJiY_0\tperson\naaAAXDB7ml4_0\telephant\naaAAXDB7ml4_1\telephant\naaA_qcyN3eM_1\tcow\naaBf3fxpR7E_1\tperson\naaQjh2_8aVw_1\tmotorcycle\naaQjh2_8aVw_0\tmotorcycle\naaUXN-xWi1c_0\tperson\naaWV0TEIbhM_0\tskateboard\naaWV0TEIbhM_2\tskateboard\naacFWGARp08_0\tperson\naacLCDo8Zus_0\tumbrella\naacZc8VUtxg_0\tbird\naaoYsiVAFDY_0\tairplane\naas39xgvbfg_0\tcat\naatdoixvb4w_0\tdog\naazC6OJV2GY_0\tperson\naa0jo00Yxz0_2\tboat\naa-J6xg9RH4_0\tperson\nabCu1bwDisA_0\tumbrella\nabHvXnWduQQ_0\tperson\nabQ7YCx3QQM_0\ttrain\nabbympAEM_k_0\tcow\nablCJGTLCow_1\telephant\nablCJGTLCow_3\telephant\nablCJGTLCow_4\telephant\nablCJGTLCow_0\telephant\nable--ZWvkg_1\tperson\nabnCzyC9R28_0\tperson\nabpyt2p-uMg_1\tbird\nabrKRGgLV0o_0\tdog\nabrKRGgLV0o_1\tdog\nabxcR1X4UIo_1\tbird\nabxuxX4aHFI_1\thorse\nabxuxX4aHFI_2\thorse\nab1RpuefUA0_3\tbicycle\nab2b2WA-fQs_1\tperson\nab2b2WA-fQs_0\tperson\nab2b2WA-fQs_2\tperson\nacDY2Ono9WA_0\tdog\nacL58vxHnnc_0\tperson\nacOdf26jldk_0\tperson\nacYxvpS0b7s_2\tairplane\nacZFDZif1ww_0\ttrain\naciCzrBQsM0_0\tperson\nacnOEnTXwJY_0\tcow\nacnOEnTXwJY_1\tcow\nac4feYMso4k_0\ttrain\nac6NdTBtc6U_1\tperson\nadAkRe99CDA_0\ttruck\nadE0Nk3CKyI_0\tcar\nadKIteGSOIM_1\tskateboard\nadY8EtfOO_w_0\ttrain\nadcv2A70AoA_0\tperson\nadiBUyRiBfo_1\tperson\nadiBUyRiBfo_0\tperson\nadskAqVAdFQ_1\telephant\nad2C17MGAEo_0\tbus\nad94BZD75ck_1\tcow\naeAjL4rCjIM_1\ttruck\naeAjL4rCjIM_0\ttruck\naeIzIOSHZek_0\tperson\naeJKW7m42xo_2\tairplane\naeJKW7m42xo_0\tairplane\naeKckIdL0io_0\tbird\naeUVIIEtwdw_1\tmotorcycle\naeUVIIEtwdw_2\tmotorcycle\naeUVIIEtwdw_3\tmotorcycle\naeUVIIEtwdw_4\tmotorcycle\naeboOU_vdjo_0\tperson\naeboOU_vdjo_1\tperson\nBc2pPI9s8bM_2\thorse\nBc26F0eEyBg_0\tperson\nBc5QvTVd-04_0\tperson\nBc64C5jdZDg_0\tperson\nBc7NXuSycR4_0\tskateboard\nBc-b4WhkWxw_0\tperson\nBdBZuvI8oak_0\ttruck\nBdBZuvI8oak_8\ttruck\nBdBZuvI8oak_1\ttruck\nBdBZuvI8oak_2\ttruck\nBdBZuvI8oak_3\ttruck\nBdBZuvI8oak_4\ttruck\nBdBZuvI8oak_7\ttruck\nBdB6NgtqioE_1\tbear\nBdCnusBWLuw_0\tbicycle\nBdC5wdGWMCw_0\tperson\nBdLMnBBX7rc_0\tperson\nBdQ8AC4jpkk_0\tperson\nBdR02myBXHY_0\tperson\nBdTRTQRbNqI_1\tskateboard\nBdT2u0kYx90_0\tbicycle\nBdT2u0kYx90_1\tbicycle\nBdT2u0kYx90_2\tbicycle\nBdT2u0kYx90_4\tbicycle\nBdZOawocL-c_0\tperson\nBddRmrmaI6M_0\tperson\nBd0JDJL6yXk_0\tairplane\nBd21KrWCyCg_0\tcat\nBd-WW1Hs9kk_1\ttrain\nBeAD9m4Yu_U_0\tperson\nBeCQkxXRRww_1\tperson\nBeCQkxXRRww_0\tperson\nBeCmkGB-RCw_0\thorse\nBeQWoctTF5I_0\tbear\nBeQWoctTF5I_2\tbear\nBeQupBkL2y8_0\ttrain\nBeTu3Ag6XIw_4\tbicycle\nBeTu3Ag6XIw_1\tbicycle\nBeVqWRYzPkY_0\tknife\nBebzr4dP1Ug_2\tperson\nBebzr4dP1Ug_0\tperson\nBedgXkpLAOs_0\tperson\nBefMC4f6Z3s_0\tperson\nBefMC4f6Z3s_1\tperson\nBefq3kL0E7o_0\tperson\nBegwn2Da_j8_0\tperson\nBepRWdKn0QA_0\tcat\nBetAKo6E3rw_0\tperson\nBezlbA5t77I_1\tperson\nBe4NCK9GwQU_0\tperson\nBe4V9lpSpJw_0\tknife\nBfIBlw1RkXc_1\ttruck\nBfJUkGEnxvE_0\tperson\nBfOXYUOsSf8_0\tairplane\nBfSxTA9yZak_0\tperson\nBfT3bVAeXLU_2\tboat\nBfWpLwfDFbc_0\tperson\nBffFognyZOA_1\tskateboard\nBffFognyZOA_0\tskateboard\nBfkXvdTkYF4_0\tperson\nBfkXvdTkYF4_1\tperson\nBfwHmAlZdKA_0\tperson\nBf1cF3BfY18_0\tperson\nBgBDqhuoTr0_0\tdog\nBgHvkS4H7w0_0\tperson\nBgamGCKlzTI_0\tperson\nBgbxYgCIde8_0\tcow\nBggPqcJz12g_1\telephant\nBgjdCfaJfsE_0\telephant\nBglxBESIjlE_0\tperson\nBgsTkbznAjI_0\tperson\nBgwZN0Ui-Q8_0\tperson\nBg0_DcQLOys_1\tknife\nBg3Zox43xGI_0\tskateboard\nBg4NtG5QkwM_0\tperson\nBg_cKljiGGE_2\tperson\nBg_cKljiGGE_0\tperson\nBhA7KMeJYAE_0\tskateboard\nBhL184lkUcw_0\tperson\nBhPyQcTHRmg_0\tboat\nBhXpOqm8Q5o_0\tbird\nBhZl6ZTtKDo_0\tperson\nBha-PhOr-bU_0\tbird\nBhdcIu_nQYs_0\tbus\nBhqZrCcQpD4_0\telephant\nBh4QFujTqIo_0\ttrain\nBh5wIL7IE9A_0\tperson\nBh5wIL7IE9A_1\tperson\nBiGYFhnDhMI_0\tairplane\nBiQ4cYnaGPo_0\tperson\nBiYzQbOwhWY_1\ttrain\nBiYzQbOwhWY_2\ttrain\nBipPdxUV2PY_3\tboat\nBirMOPf7k0I_0\tknife\nBizSBnzOzy0_0\tperson\nBizSBnzOzy0_1\tperson\nBi1KsDpJT8w_0\tperson\nBi1KsDpJT8w_1\tperson\nBjGhd-Eq5ig_1\tcar\nBjGhd-Eq5ig_7\tcar\nBjJSECIrsd0_0\tdog\nBjLJqIPSyUM_0\tbicycle\nBjQO2ipch-w_1\tdog\nBjRyA1cPxA4_0\tcow\nBjZ9JRI_WkM_0\tperson\nBjbCdEHhCjI_0\tperson\nBjfwCDsBoeg_2\tbicycle\nBjhITTFavAk_0\tperson\nBjiJ7HAaOj8_0\tperson\nBjj4KdIbDBY_0\tperson\nBjk2IA4thIE_0\tbear\nBjogwheL3BI_0\thorse\nBjpX2nla914_1\tcar\nBjqdFABBqxA_0\tperson\nBjqdFABBqxA_1\tperson\nBjraW0bXW-0_0\tperson\nBj8lO8Jag3Y_0\tperson\nBj9wPwHXNQo_1\thorse\nBj9wPwHXNQo_2\thorse\nBj9wPwHXNQo_3\thorse\nBj_fS2abD9o_1\tbird\nBkFws1J8IM0_0\tbird\nBkMb48QM-zQ_0\tperson\nBkco3wJWvp0_0\tperson\nBkdBnU65i7Y_0\tperson\nBkdWJT3sWro_3\tairplane\nBkdWJT3sWro_4\tairplane\nBkfKa-zgphc_1\tairplane\nBklBU6Epydc_4\thorse\nBklBU6Epydc_1\thorse\nBkoQ8_W4drM_0\tumbrella\nBkteTGu81tQ_0\tbus\nBkwpJBHM_DM_0\tdog\nBk3VbRagAwg_0\tdog\nBlXhR1rRct8_0\tbicycle\nBlfVNiQZtko_1\tcow\nBlfVNiQZtko_0\tcow\nBlhT8WFfI54_0\tperson\nBlj4FY__L6Y_0\tperson\nBllnWV-BIDo_0\tbird\nBlqsGIq2hNg_0\tperson\nBlqsGIq2hNg_1\tperson\nBlzUBgB6BEc_0\tperson\nBl-1081HLyM_0\tmotorcycle\nBl--N1EQpuA_5\tairplane\nBmCAiO-WNmE_0\tskateboard\nBmG7dEBuS6s_0\tcow\nBmHShiZ1Xus_3\tairplane\nBmNwfiFBeRo_0\tperson\nBmNzw5vNQNI_0\tskateboard\nBmRZWeMzQLg_3\tbicycle\nBmRZWeMzQLg_0\tbicycle\nBmSBpZrrEt8_0\tcat\nBmXdIzhVZ0Q_2\tbear\nBmZN0ljGa84_2\tmotorcycle\nBmfHrAPEMrk_2\tperson\nBmfHrAPEMrk_0\tperson\nBmfHrAPEMrk_1\tperson\nBmjBM58PfZE_0\tcow\nBmjEEjKDJVI_0\tperson\nBmjLZgp38NI_0\tcat\nBm3l_RLjYpo_0\tmotorcycle\nBm3wZ63Ymvo_2\tmotorcycle\nBm7e-qOAcKQ_0\tperson\nBm8qAGd91Gg_0\ttrain\nBnADRMlWOsM_0\tairplane\nBnNJUP6xfG8_0\tbear\nBniJFr7IJRo_1\tperson\nBniJFr7IJRo_0\tperson\nBniJr-iCh9M_1\ttruck\nBnkIFwVPh8w_0\thorse\nBnkIFwVPh8w_2\thorse\nBnkIFwVPh8w_4\thorse\nBnkU89Dq2IQ_0\tperson\nBoA6CUl4t70_0\tcow\nBoGAxXRzHWs_0\tcow\nBoLSvTrm3d8_3\tcow\nBoNtUpvusGM_3\tmotorcycle\nBoNtUpvusGM_4\tmotorcycle\nBoNtUpvusGM_0\tmotorcycle\nBoNtUpvusGM_1\tmotorcycle\nBoNtUpvusGM_2\tmotorcycle\nBoOANS5_U9I_0\tmotorcycle\nBoPj2W_G2Qg_0\tairplane\nBoYvNfndu60_0\tskateboard\nBoZ3ZvdEZ4o_0\tcar\nBoZ3ZvdEZ4o_1\tcar\nBoiPpDeQ2mQ_0\tairplane\nBomNEWAGolQ_0\tperson\nBomVU8_LL_Y_2\tdog\nBowyw_fhWZ8_0\tperson\nBoy5toMvMwo_0\tgiraffe\nBo2qsQNYATk_3\tskateboard\nBo5bT8QP_Og_0\tperson\nBpDLFqS9EAE_0\tperson\nBpVyiSvjk4o_1\tdog\nBpdZmCkSHco_0\tgiraffe\nBpjdKB7AJ8U_0\tskateboard\nBpkMUQLoJUM_0\tperson\nBpoWgamMMro_0\tcow\nBp1zluIhHzc_0\tperson\nBp4vXfVIVxA_0\tskateboard\nBqBkvlijWKg_1\tperson\nBqDnDPIE18k_3\thorse\nBqPcqKW3uAM_0\tdog\nBqoRxXUz7q4_2\ttruck\nBqpA7iBOQ_s_0\tperson\nBqqPm3F1F_w_0\tperson\nBq4id5zA48c_2\tbear\nBq_emgXftMI_0\tperson\nBrDdbgxB7qI_1\tbird\nBrHDj1biLlA_0\tairplane\nBrHDj1biLlA_1\tairplane\nBrJiBbRF25U_0\tperson\nBrKgWUQnUWI_0\tcow\nBrQNhzCKfxs_0\tperson\naelph1Y8yPk_0\tskateboard\nae161Zq0QBg_0\tskateboard\nafCYMTTgbMw_1\tdog\nafD_y2ZEHn4_0\tskateboard\nafLO-CD48TI_0\tmotorcycle\nafLO-CD48TI_1\tmotorcycle\nafWl3lTglsw_0\tperson\nafbS6cTlE5Q_0\tperson\nafu5-raaJEc_1\telephant\naf9Z_LR-L7M_0\tperson\naf-MtTvmPic_0\tperson\nagFlIZmS0zU_0\tperson\nagF_eyIgF3g_0\tperson\nagGuxSx4UdI_0\tmotorcycle\nagIme93Q6WA_0\tperson\nagMdtESL5kE_2\tcow\nagSpfpV4EsQ_0\tperson\nagVHBb-qLAw_1\tbus\nagWS48KnYWk_0\tmotorcycle\nagXPzkjMl4c_0\tbird\nagYR35aJ1no_0\tperson\nag1ohTMq9Iw_0\tcar\nag5Gy7ZNbfw_2\tknife\nag5Gy7ZNbfw_3\tknife\nag6NY6nrTvw_0\tbear\nahE37MgcoUs_0\tperson\nahMgOG4Bpcw_0\tcar\nahQD9PpYoqE_1\ttrain\nahYD0J4XzC0_0\tcat\naheVwPx1egw_0\ttruck\nahiO1CwoaY4_0\tperson\nahnbyNWfvpM_1\tcow\nahsHWgQGPNI_0\tperson\nahv6_xBxvmg_0\tperson\nah03BOnPUqs_0\tcow\nah-2yN1cKOg_0\tbus\naiINQVIMx5o_0\tperson\naiNcNIUbY3E_1\tdog\naiX8ymgR1g0_0\tboat\naiX8ymgR1g0_3\tboat\naierZPItkn8_0\tbicycle\naierZPItkn8_1\tbicycle\naiiN3X-f5Ss_0\tperson\naiklFoEJX1Q_0\tperson\nainWSZibSIM_1\tbicycle\naio5SboRXGU_0\tperson\naio5SboRXGU_1\tperson\naizJI68M2SY_2\ttruck\naizJI68M2SY_1\ttruck\nai1CTuarr50_0\tbus\nai3xYb_xvFA_0\tperson\nai7WTyMnl1g_2\thorse\nai7WTyMnl1g_3\tperson\nai7WTyMnl1g_0\thorse\nai7WTyMnl1g_1\thorse\nai9-_EMwk4U_0\tskateboard\nai_jmsLJTR0_0\tperson\najAuKSOFBKQ_2\tbus\najAuKSOFBKQ_3\tbus\najB-QUVDyXI_0\tcat\najO4xx5beuE_1\tbicycle\najPP5EY_nAo_0\tperson\najPP5EY_nAo_1\tperson\najPY1htweXM_0\tperson\najPY1htweXM_1\tperson\najtvjEY9TPA_0\tairplane\najxcj5ovYdw_0\tskateboard\naj0Ll84jtZs_0\tperson\naj0Ll84jtZs_1\tperson\naj3UwQNtZPo_0\ttrain\naj6sqeG0k54_0\tumbrella\nakH9ouIrOds_0\tskateboard\nakIlFKpZAtk_0\tperson\nakOLIpAsxqc_1\tperson\nakQU-s0RCWE_1\tbus\nakoVZ50spRM_0\tperson\nak6iAVUNU7c_0\tdog\nak6iAVUNU7c_2\tdog\nak6iAVUNU7c_1\tdog\nak89dpHVmHc_1\tperson\nalAFNWeSJts_0\tskateboard\nalDkqPNUFLU_0\tperson\nalDkqPNUFLU_1\tperson\nalKgZTVxcV4_0\tmotorcycle\nalX9MOY80Aw_0\tperson\naluZTs_Ys8I_0\tcar\nalvKKzlOBKM_0\tperson\nalzWhOivD0E_0\tperson\nal2Vh0In4HU_0\tbear\nal2Vh0In4HU_2\tbear\nal2Vh0In4HU_3\tbear\nal8Of2FWy80_0\tcat\nal8vzWgNDbs_2\tbicycle\nal8vzWgNDbs_7\tbicycle\nal8vzWgNDbs_8\tbicycle\namIvXQ6aZkE_0\tcow\namL9Dar_hp0_0\tperson\namTcWqrgBBg_3\tairplane\namjpcHzuYb4_0\tperson\nams9MCDF15I_1\tperson\nams9MCDF15I_0\tperson\namvLPTONS1U_0\tcow\nam-3XKJkCqg_0\ttrain\nanAXVexurxo_2\tdog\nanJbsuTwShw_0\tperson\nanLTttUpag0_0\tskateboard\nanR9cuXRv6Q_0\tperson\nanWxwjzPRBA_0\tperson\nanYy3XNTTGw_0\tperson\nanZ9lxr24eY_0\tperson\nangay7OmUwA_0\ttruck\naniCxSPm8Uc_0\tcar\nanlydfnmv7g_0\tperson\nannQpJsk6NI_0\tbus\nanpsTMr_HIo_0\tcat\nanrBShdHOz4_0\tperson\nanvk-OdKLBE_0\tperson\nanvngue8Qh8_0\tcat\nanzrRzyYAAc_0\tdog\nan-QcnhNhL4_0\tperson\nan-mFuTYuCk_0\tperson\nan_FRcZ669c_0\tperson\naoBqV2Guvso_0\tperson\naoDJu0KrrQs_0\tmotorcycle\naoOJR-0sPM0_0\tperson\naoSWWKtf8mU_0\tperson\naohLKKJxjIM_0\tperson\naoizdynEVYU_0\tdog\naoqMoScEfqE_1\thorse\naotBl0tvpFs_0\ttrain\naotBl0tvpFs_1\ttrain\nao9uUinn2WY_1\ttruck\napKAwFA4oP0_0\tbird\napQKmVEucLQ_0\tperson\napZAEWvk8XY_0\tperson\napcgot45Ql0_0\tperson\napdP6_tCdls_0\tperson\napfZjUpoTy0_0\tskateboard\napfZjUpoTy0_1\tskateboard\napprUmnQTcI_2\tcow\naqGKBg0azPA_0\tcow\naqGp6tCGLOU_0\tmotorcycle\naqKiwfY3Oqc_6\tbus\naqKiwfY3Oqc_5\tbus\naqKiwfY3Oqc_7\tbus\naqNz8TCica4_0\tzebra\naqUHuS5ALXE_0\tcow\naqWN-Q0wDHI_0\tperson\naqWN-Q0wDHI_1\tperson\naqZfqhHJPLo_0\tperson\naqdSuLpYlwQ_0\tperson\naqe_mdIg6k0_0\tperson\naqmie50AFwE_0\tdog\naq2UMxzwliQ_0\tperson\naq50xKvuSFg_0\tskateboard\naq59B_-6ilw_0\tperson\naq9Sfxn9vMg_5\tknife\naq-QzG14KJ4_0\tperson\narFKRc7lAo0_0\tperson\narFKRc7lAo0_1\tperson\narPGoY7uh4E_0\tperson\narS7aqpkAU0_0\tmotorcycle\narT4jZLX8pg_1\tknife\narW0ZUPkah8_0\tperson\narZ_mIhaJMo_0\tcat\nare5LvOB2nQ_1\tskateboard\nare9NykT9FM_0\ttruck\narn0j0l_IWI_0\tperson\nartWKQTC7CQ_0\tperson\nartcASpzYrU_0\tperson\narwZ6ZPJuN4_0\tcat\nar7TRjurXMY_0\tperson\nar-fzXT8Juc_0\ttruck\nasT-GJNeJok_0\tperson\naseOdDcbIRE_2\tperson\naseOdDcbIRE_0\tperson\naseOdDcbIRE_1\tperson\nashHnkqFz7g_0\tbicycle\nashHnkqFz7g_3\tbicycle\nasl-XTE0jsE_0\tperson\nasrDocOfGQE_0\tcar\nasrDocOfGQE_1\tcar\nasrDocOfGQE_3\tcar\nasrDocOfGQE_4\tcar\nasrDocOfGQE_5\tcar\nasrDocOfGQE_6\tcar\nastLiScyoaQ_0\tperson\nasx2CkH0O6I_0\telephant\nas1twjKe3Cw_0\tskateboard\nas6Y3-EaaCg_0\tperson\nas6Y3-EaaCg_1\tperson\nBrgRnN_LBGk_1\tperson\nBrgRnN_LBGk_0\tperson\nBrhMkJ6n-hQ_1\ttrain\nBrnBTne3NBw_0\tbear\nBrnBTne3NBw_1\tbear\nBroiAN_qtCI_0\tperson\nBrpRmX410DU_0\tperson\nBrrAlsmwDnk_1\tperson\nBrrAlsmwDnk_0\tperson\nBrrlyds8g1A_0\tperson\nBrwABvccCWs_0\tperson\nBrzEfM8nWCw_0\tcow\nBr3M-xsvXFQ_0\tperson\nBr9CVteHFEc_0\tperson\nBsCH_ABy0WE_0\tperson\nBsRC5xbG6uY_0\tperson\nBsXphFpnOxE_0\tbird\nBsXwLsR6dm8_0\tperson\nBsv8dNYzPkY_0\tbear\nBs1rRAtP7bw_1\tbear\nBs3BPJZMD9E_0\tperson\nBs94h8vMmwg_0\tperson\nBs_9E_Rq524_0\tperson\nBs_9E_Rq524_1\tperson\nBtFwcgeJjsY_0\tperson\nBtKVAhU1LdI_0\tknife\nBtKl-iqkgoY_0\tcat\nBtN0FlaISuY_0\tperson\nBt19SM8BenY_0\tperson\nBt41QF0ze6E_1\tperson\nBt7B7nkGO_4_0\ttruck\nBt7B7nkGO_4_1\ttruck\nBuFYI1vYj1k_1\tperson\nBuH65mVX5yM_0\tperson\nBuPWtDPEJ-0_0\tperson\nBuXvxclES0s_0\tbird\nBuco16wWyFA_1\tmotorcycle\nBuco16wWyFA_2\tmotorcycle\nBuco16wWyFA_3\tmotorcycle\nBuco16wWyFA_0\tmotorcycle\nBufY7NdKUlM_2\tmotorcycle\nBufY7NdKUlM_4\tmotorcycle\nBunvBFXoGPg_0\tbus\nBuqljdjPWWc_0\tknife\nBuqljdjPWWc_1\tknife\nBuumm7rgDPY_0\tperson\nBu0gJwoDkRw_0\tcat\nBu5Bgr9asUU_0\tperson\nBu_HdLSyLSI_0\tperson\nBu_3ep-qAi0_0\tperson\nBvEAIc3hmkk_0\tmotorcycle\nBvHzGHjR6rk_0\tperson\nBvLCgNWIHfA_0\tperson\nBvLJZAhIR3A_1\ttruck\nBvTLdUcIH5I_1\tperson\nBvTbuvBeunI_0\tairplane\nBvTjf9mG5MU_0\tperson\nBvZ8DqslB-U_1\tairplane\nBvZ8DqslB-U_2\tairplane\nBviGbtAujq0_0\ttruck\nBvrORC4d2yg_0\ttrain\nBvrORC4d2yg_1\ttrain\nBv4rjfW9RsM_0\tdog\nBv9IXbrDYLk_0\tbird\nBwDccOS7_vw_0\tperson\nBwIoxW7Ee8M_4\ttrain\nBwUYR-ZnpX8_0\thorse\nBwW4Fs1eTRg_0\tairplane\nBwW4Fs1eTRg_1\tairplane\nBwergWBqOOs_2\ttrain\nBwgJmjOzlRk_0\tperson\nBwoTsoC3hvQ_3\thorse\nBwo1MaJvxRs_0\tperson\nBwrh4q5KLVg_1\tdog\nBwsHsSpS0dQ_0\tbird\nBw2RhmesY5g_0\tperson\nBw5iwcbP4eM_0\tgiraffe\nBw6f2OXYtSo_0\tcow\nBxHIRvoGZMM_0\tperson\nBxMoEE7XwL8_0\tperson\nBxNE34BGZ-4_0\tperson\nBxQp3-SCUGs_0\tperson\nBxQp3-SCUGs_1\tperson\nBxWs9aINEEI_0\tperson\nBxWs9aINEEI_2\tperson\nBxWs9aINEEI_1\tperson\nBxYdU6vB2YQ_1\tmotorcycle\nBxaEaD7zeX4_0\tperson\nBxhktnvjtLA_0\ttruck\nBxmeqCev3Kw_2\tboat\nBxmeqCev3Kw_3\tboat\nBxm3EvRZAI0_0\tskateboard\nBxvlWueS9vA_0\tmotorcycle\nBxwmNnxcI7o_1\tperson\nBxzVlf9-SLc_14\tbicycle\nBxzVlf9-SLc_4\tbicycle\nBxzVlf9-SLc_6\tbicycle\nBxzVlf9-SLc_8\tbicycle\nBx2YQSFETcw_1\tperson\nBx4ELKBw9PU_0\tcow\nBx4ngxnRjvM_0\tmotorcycle\nBx-is-dL1ko_0\tperson\nBx_z_4bt8O4_0\tperson\nBx_z_4bt8O4_1\tskateboard\nByBWtiJJNqk_0\tperson\nByBWtiJJNqk_1\tperson\nByFCiUvKd4E_0\tcow\nByFCiUvKd4E_1\tcow\nByFCiUvKd4E_2\tcow\nByJNGLp-Q1Q_0\tboat\nByRne1VtDow_1\tperson\nByfeHjkm0NA_0\tbus\nByhpLi9sRUs_4\ttrain\nByhpLi9sRUs_5\ttrain\nByhpLi9sRUs_0\ttrain\nByn2Qo7ghaQ_1\tperson\nByvWskJDMGg_0\tairplane\nByvW2VADH6w_0\tmotorcycle\nBy1cSo8DcUw_0\tbicycle\nBy8jq7bVrkw_0\tperson\nBzKADkfj5sM_0\tcow\nBzNlO4ccRRY_0\tperson\nBzOo01dGJkw_0\tperson\nBzT8xDTB14c_2\ttruck\nBzWiQPw-vQc_0\tperson\nBzX2DmrGvp0_0\ttrain\nBzeW7KdQ818_0\tskateboard\nBzeW7KdQ818_1\tskateboard\nBzehenf5vSI_0\tairplane\nBzgqI8VBlSE_0\tperson\nBzpY-JMNW4c_0\tperson\nBzrM5QG9q2o_0\ttrain\nBzr3gVS8SzI_1\tboat\nBz5rpBZ1dzs_0\tperson\nBz7A9QxD1nY_0\tknife\nBz9MqNlU7KM_0\tperson\nB0AazXeFQIU_0\tperson\nB0BXcxFMgrk_0\tknife\nB0EZ9LIObGc_1\tmotorcycle\nB0FupWyYbG8_1\tperson\nB0NJSrhuWwA_1\tperson\nB0NJSrhuWwA_0\tperson\nB0QFrtXczzE_0\tperson\nB0SYog80Y78_0\tperson\nB0WaLst2GGg_1\tperson\nB0YrdZ7s3UY_1\tperson\nB0YrdZ7s3UY_2\tperson\nB0aFuZP3nYE_0\tperson\nB0aFuZP3nYE_1\tperson\nB01lwUoyl90_0\tperson\nB03gLj0lJrk_0\thorse\nB0-L6VbxLcU_0\tcat\nB0-lAJ4tBN4_0\ttrain\nB0-lAJ4tBN4_1\ttrain\nB1IQyTNE7eg_0\tskateboard\nB1Ojfucympw_0\tperson\nB1Ojfucympw_1\tperson\nB1YzUGPZQWo_0\ttrain\nB1hkAet1OQI_0\tperson\nB1isEeljBFI_0\tperson\nB1pC6hfF_Do_0\tperson\nB1qSE-7JgXE_0\tperson\nB1yiSrv4Ocw_1\thorse\nB1zPD20nhTg_0\tperson\nB12C84by_eA_0\tperson\nB12C84by_eA_3\telephant\nB12C84by_eA_1\tperson\nB12C84by_eA_2\tperson\nB12C84by_eA_4\tperson\nB12C84by_eA_5\tperson\nB12C84by_eA_7\tperson\nB12C84by_eA_10\tperson\nB12C84by_eA_11\tperson\nB2EMVGU5pNA_4\ttrain\nB2VryVb5p54_0\thorse\nB2VryVb5p54_2\tcow\nB2V7kk7fqSc_0\tperson\nB2X9JzMNZb0_0\tperson\nB2ZpqEJpVX0_0\tperson\nB2fTIk9eCNc_1\telephant\nB2gJVve4I58_0\tperson\nB2hKNbDmBtM_0\tcat\nB2lAxi3jIR0_0\tperson\nB2lAxi3jIR0_1\tperson\nB2lAxi3jIR0_2\tperson\nB2xcdU4Qoz8_0\tbicycle\nB2xcdU4Qoz8_12\tbicycle\nB23TpirETNE_0\thorse\nB26AQtx7Xic_0\tperson\nB3HZSrALQYc_0\tskateboard\nB3IjPORG3_w_1\tbird\nB3J2umsYK7E_0\tperson\nB3QykPv8TnI_0\tperson\nB3X5wDENAUw_0\tcat\nB3kTu0B4OjM_0\tperson\nB32uNSxqzgs_0\tcow\nB33seWCiea4_1\tperson\nB33seWCiea4_0\tperson\nB4Q6pRC_mZ8_0\tbicycle\nB4Q6pRC_mZ8_1\tbicycle\nB4Srj2O1AWQ_0\tcow\nB4dFepwxEOU_0\tperson\nB4iP6lAoNYo_0\tperson\nB4jbThMFW00_0\tperson\nB4mWkc8-_6A_0\tbird\nB4oO-miJ6VU_0\tumbrella\nB4vM2iKb8cs_0\tperson\nB4_mRuPC7o0_0\tperson\nB5BNEoIaQL4_0\tperson\nB5GwJoM3aX8_0\tperson\nB5NgN9mocgI_0\tperson\nB5PHI2HVtuc_0\tperson\nB5fv91yB4Gw_0\tbicycle\nB5qSvRpXLS8_0\tcat\nas7rVUFzyzg_0\tskateboard\nas_Rz9F3slw_0\tcat\natA-Cgv2XHY_0\tperson\natE1O6J4Wls_0\tperson\natLGWZUbEuM_1\ttrain\natMjLEIbsBI_0\tcow\natxnLL4Vjuo_0\tperson\nat2dmAEDdmg_1\tperson\nat4pXKjEDic_0\tperson\nat4pXKjEDic_1\tperson\nat5edW3lMVA_0\tperson\nauA-q9fWwn4_0\telephant\nauDJ1xtxFlw_0\tperson\nauDJ1xtxFlw_1\tperson\nauFLAZb-gD8_4\ttruck\nauGyhsy8iLA_0\tcow\nauNciV4eLVo_0\tbus\nauOl1mbGUlk_0\tbicycle\nauOo1Lg_wvU_0\tdog\naubLDLbxxsk_0\tperson\naueT5WO4e_c_0\tgiraffe\naueT5WO4e_c_1\tgiraffe\naugKp60fa5Q_1\tcar\nauiPa0HNOEQ_0\tperson\nauu_tYb3G1Y_0\tperson\nauzy4oPzM5Q_0\tmotorcycle\navCqOSeS7WU_0\tperson\navC67gaD1NM_0\tcat\navHbY1Q3vyw_1\telephant\navLxYBedm_c_1\telephant\navT7Q6Wibdg_0\tperson\navl9d-bL57Q_0\tairplane\navl9d-bL57Q_1\tairplane\navob12vGzmU_0\thorse\navonCFmxPyg_0\tperson\navonCFmxPyg_1\tperson\navpWY3czerE_1\tcar\navpf9VVT6CU_0\tmotorcycle\navvQ5wNPiew_1\tperson\nav475qBV4QY_0\tskateboard\nawC9zxAeP54_0\tperson\nawQ1n9aQEco_0\tperson\nawVBieSP5Zw_0\tperson\nawVa7pqR9DU_0\thorse\nawfg9NsCVQ0_0\tperson\nawjHSQ5uPi4_0\tbus\nawkpYVN-fJw_1\thorse\nawmHGFkxxlw_0\tperson\nawwWMuOKe3c_0\tperson\naw059qHbVm0_0\tbus\naw2lOvXUAPg_0\ttruck\naw5C9nQgLcA_0\tperson\naxB1Gk85UtQ_0\tperson\naxEK7nZ8W3I_0\tperson\naxJZ92uWnkA_0\tperson\naxXs2oUd4ow_0\tbear\naxcDoOd0G0s_0\ttruck\naxjSgDsN6t8_0\thorse\naxltu5Qf6ok_0\tskateboard\naxn6QuPBPqA_0\tperson\naxulii3UXSQ_1\tperson\naxulii3UXSQ_0\tperson\nax4YUE-PcF8_0\tairplane\nax4YUE-PcF8_2\tairplane\nayD3RJIjplM_0\tdog\nayRmnUb2LAI_0\tairplane\nayax5k3PJMs_0\tperson\naybdlOdul0U_1\tperson\naybdlOdul0U_0\tperson\naydxF0r6n9s_0\tperson\naydxF0r6n9s_1\tperson\nayg0x1glF2s_2\thorse\nayg0x1glF2s_0\thorse\nayg0x1glF2s_1\thorse\naylBB_8cv60_0\tumbrella\naysqPEtZvsg_0\tperson\nayuF_8chcKM_0\tperson\naywW_Wvo49w_0\tperson\nayzzG8M0fzo_1\tperson\nay1d8NBbrl0_2\tbird\nay1d8NBbrl0_3\tbird\nay5RnrQple4_0\ttrain\nay5tx1Rovwk_0\tcat\nay7LLDO9Ecc_0\tdog\nazC7-_wC8N8_0\tbus\nazDn4DU7cGA_0\tperson\nazKKcIb4Ufw_1\tboat\nazOInI_CMHM_0\tbus\nazbls7-iaEU_0\tperson\nazbls7-iaEU_1\tperson\nazbls7-iaEU_2\tperson\nazfLb8VvI-4_0\tperson\nazfLb8VvI-4_1\tperson\nazfLb8VvI-4_2\tperson\nazlRI_Jydpw_4\tcow\nazmZDijLihI_0\tperson\nazmZDijLihI_1\tperson\na0FDxoXtFyM_1\tairplane\na0NOwUio_n8_1\tperson\na0NOwUio_n8_2\tperson\na0NdjlW5H_U_0\tcow\na0N_vetshbg_0\tperson\na0N_vetshbg_1\tperson\na0OjB7xzRx4_0\tperson\na0RusP9ATfw_0\tperson\na0dHPtoBS3U_0\tperson\na0hRgBpppWs_0\tperson\na0jpiOFS7eM_0\tbear\na0oeBV6-20U_0\tperson\na0uoJdAwobA_0\tperson\na085oeXd0RE_0\tperson\na0-Pmmyi8js_1\tperson\na1ADw1megCI_1\tairplane\na1Fzn7iUHO8_1\tmotorcycle\na1RVXQl4rlY_1\tcat\na1RinDI9Hgw_2\tknife\na1SaKvoO2Og_0\tcow\na1U6U_pntMo_0\tperson\na1XDxiP1hNA_0\tperson\na1ctjjNUZ-4_0\tdog\na1kLNA-KACs_1\tbicycle\na1lQwuhicQI_0\tperson\na1lQwuhicQI_1\tperson\na14VlgxHS3M_0\tperson\na2AT0Xo7uLY_0\tperson\na2Osa5aleJ0_1\tbus\na2Qp2Grx3_8_0\tperson\na2XMK6mjiZg_0\tdog\na2XvXs2guuE_1\tperson\na2XvXs2guuE_0\tperson\na2fEq8oS3M8_0\tbus\na2gYRtJhP1E_0\thorse\na2gYRtJhP1E_1\thorse\na2hv4szlq-Q_0\ttrain\na2kH2_9zoWU_0\tairplane\na2o_-GSpXXk_0\tcat\na2qmS6AhUYk_0\tmotorcycle\na2vx_F1NOas_0\tperson\na26mRIQUPoU_0\tdog\na26mRIQUPoU_1\tdog\na26mRIQUPoU_2\tdog\na27UC8vu1hI_1\ttruck\na29AS00WJrY_0\tcow\na3AIwQnG0Ek_0\tcow\na3FLLhQu768_0\tperson\na3THrQYDkqw_1\tbird\na3UCtF8nZIY_1\tskateboard\na3dbdHben-o_0\telephant\na3dbdHben-o_3\telephant\na3dbdHben-o_9\telephant\na3dbdHben-o_1\telephant\na3dbdHben-o_2\telephant\na3dbdHben-o_4\telephant\na3dbdHben-o_6\telephant\na3rGEI8MdMs_0\tcow\na3uvEIsI1no_2\tperson\na32oJ0GsAYw_0\tperson\na35UuVw16Ks_0\tperson\na37D3FoqIJA_1\tknife\na3-oi7T-Lw0_1\tzebra\na3-tURw95Xo_2\tperson\na4IU4va7hp0_1\ttruck\na4LYVAPbEwI_0\tmotorcycle\na4LaeeZXIc0_2\tskateboard\na4Nt5QxFqmY_1\tboat\na4PwZfJZVPA_2\tbear\na4arqJgXHDA_0\tperson\na4pR_YBd4yY_1\tbicycle\na4uNoGpllg4_3\tbear\na4v1ptMpyi0_0\tcow\na4v1ptMpyi0_3\tcow\na41TZwhyyP0_0\tcow\na46BqT5Mo5I_0\tcow\na5HZnFcvdyA_1\thorse\na5P8pVrcSRk_0\tmotorcycle\na5brvs-fct0_0\tperson\na5tSaF5GCKE_1\tcat\na5ye5BUJFlY_1\tperson\na5znd3aNwLk_3\tbicycle\na58tMy0mhIk_0\tperson\na6G_DBEFdFA_0\thorse\na6ZXi7Qqls0_0\tperson\na6fBYYEgBvs_0\tdog\na6jDeIJbF7Q_0\tperson\na6uyjrBkkXs_0\tboat\na61piN6ffE4_0\tperson\na67zz0CSEpk_0\tperson\na67zz0CSEpk_1\tperson\na7B81Zeqgfw_2\ttruck\na7HKuyv2qLQ_0\telephant\na7HKuyv2qLQ_1\telephant\na7Q6eb6feT8_0\tperson\na7S9rFNKVMI_7\tmotorcycle\na7Zr0-1LIPc_1\tdog\na7hwm4TORvY_0\tperson\na7pC7IjO2ik_0\ttruck\na7peWR4xJwQ_1\tcow\na7ygZsaDMis_0\tperson\nB5_Hyk-p7kE_0\tcat\nB6E15pe4UR8_0\thorse\nB6LGwD1E9SQ_1\tperson\nB6P8B8BO-6U_0\tgiraffe\nB6SaDYczlDQ_1\tperson\nB6U92N9hh6k_2\thorse\nB6V4xqX67OA_0\ttruck\nB6bDVhRNw00_0\tairplane\nB6cEdaWTjeU_0\tperson\nB6dBkoOhfBU_0\tcar\nB6lU93wtaDA_1\tboat\nB6mP9KsnQPc_1\tbear\nB6mngUQtFJ4_0\tcow\nB6nlTJYtmws_0\tcow\nB6pXMjH4geU_3\tboat\nB6qshzfLYzs_0\tperson\nB6x2dNbgPjM_0\tcow\nB6y439-imys_0\tperson\nB6z7eCsgfM0_0\tbear\nB61Wf8NFvcU_0\tairplane\nB645r0hkdmg_0\tperson\nB645r0hkdmg_1\tperson\nB67FwwZfIEA_0\tperson\nB6_IcyhOHpE_0\tperson\nB7BjhnnQ2K4_0\tperson\nB7GRNv2opSY_0\tbird\nB7MHQOUO4f8_0\tumbrella\nB7Z9UV6aQuM_0\tbird\nB7a8WkaWmH4_0\tperson\nB7a8WkaWmH4_1\tperson\nB7cXCz7jJKQ_0\tcow\nB7gX18_mDyQ_0\tperson\nB7hmqrwe88o_1\telephant\nB7hmqrwe88o_2\telephant\nB7iAvi5riV8_0\tmotorcycle\nB7nwfSMbEL8_0\tcow\nB7pEEUJ-J1g_1\tmotorcycle\nB7rCxgg3F_s_0\ttrain\nB8Bp9yKWV9c_0\tperson\nB8D4fPARFvo_0\tperson\nB8HQglK444U_2\tairplane\nB8HQglK444U_0\tairplane\nB8HQglK444U_4\tairplane\nB8LGL1Tt_wg_0\tperson\nB8MxJKDkvkE_0\tperson\nB8eeoykmq1E_1\tperson\nB8eeoykmq1E_2\tperson\nB8f7NnYq5sg_0\tperson\nB8f7NnYq5sg_1\tperson\nB8sWL2syyA8_0\tperson\nB8uIyRkm9YA_0\tairplane\nB8zGkBkQw4c_0\tperson\nB87W__RIE-E_0\tperson\nB8_Z7m50I_E_0\tmotorcycle\nB9AXF91pIUs_0\tairplane\nB9Ed_vAN9mc_0\tdog\nB9Y_LrDVbg4_0\tperson\nB9aqDsvGy5Q_0\tperson\nB9aqDsvGy5Q_1\tperson\nB9j233QxEuQ_0\tperson\nB9oJSA_NJ2s_0\tbicycle\nB9z17FOPd5A_0\tperson\nB99mIPKaChY_3\tcow\nB-CR7vl67W8_0\tperson\nB-QiQvJcSVk_0\tperson\nB-T1YNe09SU_4\tbear\nB-T1YNe09SU_3\tbear\nB-bDxAN93a4_0\tairplane\nB-dlnlRKA5s_2\tairplane\nB-dlnlRKA5s_7\tairplane\nB-tukWZbXp8_0\tperson\nB-wJpt4zl0c_0\tperson\nB-x2pu-ux3w_0\thorse\nB-z1uE4iuz4_0\ttruck\nB-0WNs2QYPk_1\telephant\nB-48lEXzIS8_0\tumbrella\nB-7cqxw95Ro_0\tperson\nB_BqrY2eeCY_0\tmotorcycle\nB_Gjc7J18qg_1\tperson\nB_Gjc7J18qg_0\tperson\nB_M6X41emhY_0\tperson\nB_O8idmfoCQ_0\tperson\nB_Tj79jaRXs_1\tperson\nB_Tmq51dx1g_0\tperson\nB_jGC2tlhRo_0\tperson\nB_k6vEEPHK0_0\tperson\nB_lEJv31TlI_1\tperson\nB_lEJv31TlI_2\tperson\nB_nZdcreecE_0\tperson\nB_wWPH9kbxM_0\tperson\nB_ylVg-TN2Q_0\tskateboard\nB_4Kfa8_9ms_0\tperson\nB_4eJYakoRY_0\tmotorcycle\nCAEqRvJLY-M_1\tmotorcycle\nCAe1SZKZ9T0_1\tcar\nCAq4CxCpeQE_0\tcat\nCA4UqnJCs58_0\tmotorcycle\nCA9SLI7TOKQ_0\tperson\nCBASqWyp4yk_0\tperson\nCBJQ5dL6Df8_2\thorse\nCBNqNe7G-QQ_0\tperson\nCBnYDFRfYgo_1\tbus\nCBqyVKttAwU_0\tcow\nCBtgGOzZtLQ_0\tperson\nCBz3ZOrTAjI_0\telephant\nCBz3ZOrTAjI_2\telephant\nCCAsEc2oRAM_0\telephant\nCCGg17i4vMU_0\tperson\nCCHay2RSnJI_0\tskateboard\nCCHay2RSnJI_1\tskateboard\nCCLRdGNDgdc_0\tcat\nCCoGim--jEg_0\ttrain\nCCp6NLBil8k_0\tbicycle\nCCwovjgEx1k_0\tperson\nCCwovjgEx1k_1\tperson\nCC0aX78fQFo_0\tcat\nCC-qoxEyocI_0\tperson\nCDCLLCkr87I_0\tcow\nCDY4TXCreQ0_0\tperson\nCDbWYF89944_0\tperson\nCDb6uyrYrZA_0\tcar\nCDfjcWI7iBQ_0\tboat\nCDgBHxiVkFw_0\ttruck\nCDnrG74PXbI_0\tperson\nCDpQZEjohRc_1\tcow\nCDpQZEjohRc_0\tcow\nCDrU-q6QdEs_0\tperson\nCD0cWR7d9yI_0\tperson\nCD4SGfIdfSg_3\telephant\nCEDTshbJOaI_0\tperson\nCEJoHSbb4gg_0\tperson\nCEJoHSbb4gg_1\tperson\nCEMCCDAYzQs_0\tperson\nCENd4xI4dnY_0\tperson\nCETUG_G0I4k_0\tcow\nCETUG_G0I4k_1\tcow\nCETUG_G0I4k_2\tcow\nCEUjuyvgrB0_0\tperson\nCEUqqi8y4sg_0\tcat\nCEVHrP5OzJ0_1\tknife\nCEafe_JTk8g_0\tknife\nCEqA0cqMfzg_1\tcow\nCEsjzJHOUBw_0\tdog\nCEzWiyTQOMA_0\ttruck\nCE1gHqc8aqU_0\tperson\nCE3KdY0X0QE_1\tperson\nCFD0NOl12CA_1\ttrain\nCFD6d4OweGQ_3\tmotorcycle\nCFD6d4OweGQ_1\tmotorcycle\nCFD6d4OweGQ_2\tmotorcycle\nCFD-UQW1aQU_1\tcar\nCFD-UQW1aQU_2\tcar\nCFRsGLeMJKc_0\tperson\nCFXkKgig7Io_0\tperson\nCFee6F2rbjc_1\tbird\nCFxObg2ebKQ_0\tairplane\nCFxObg2ebKQ_1\tairplane\nCF0JmXACTww_0\tperson\nCF01UBuV76Q_0\tperson\nCF7DZCaSqIg_0\tbird\nCF7DZCaSqIg_1\tbird\nCF7KYbTChlg_0\tperson\nCF71f3YLQ9U_1\tperson\nCF-cX0etaAw_1\tcat\nCF_NSKkrwjg_0\tperson\nCGCNTZsml7Y_0\tcow\nCGQoaYTzfaU_0\ttrain\nCGQoaYTzfaU_5\ttrain\nCGQoaYTzfaU_7\ttrain\nCGgxp3ycSWs_0\telephant\nCGoqd4n_qJg_0\tperson\nCGsUTzKzV4U_1\ttrain\nCGwrXZ2fUqg_0\tperson\nCGy0nn1MCqY_0\tperson\nCGy0nn1MCqY_1\tperson\nCG1sXlDy2Yg_4\thorse\nCG1sXlDy2Yg_5\thorse\nCHH1SlvOzfI_0\tperson\nCHIVYSnFst8_1\tbear\nCHJFpAcH8NM_8\tbicycle\nCHMzSMq0ui4_0\tskateboard\nCHZU6sP-loU_0\tperson\nCHZU6sP-loU_1\tperson\nCHbhzxurZNM_1\tperson\nCHbhzxurZNM_0\tperson\nCHnWGkGAnos_0\tperson\nCHo3jSv3HIA_0\ttrain\nCHwNoZ55z6c_0\tcat\nCH6ptLNxppU_0\tperson\nCH8zCsamj44_0\tperson\nCH-_pvq3am4_0\tperson\nCIJ-q_X_y7E_0\tperson\nCIKrCLz06-4_0\tcat\nCIQLvytEu6E_0\tperson\nCIQz5we_nHI_0\tperson\nCITgpk4GyMA_0\tbear\nCITgpk4GyMA_9\tbear\nCIV_VaLTf5c_0\tmotorcycle\nCIc1KbOeijU_0\tperson\nCIgzZOf3uA0_0\tperson\nCIgzZOf3uA0_1\tperson\nCIlb5C929mc_0\tknife\nCImmRnndBuo_0\tperson\nCItr4F49wO4_0\tperson\nCIxs-77bPrM_1\tperson\nCI2GrLRwQR4_0\tperson\nCI3rFXxUPtI_0\tbird\nCI6fYr7IJJM_0\tperson\nCI_9TEXzQE8_0\tperson\nCJD7b_dMrVE_0\tperson\nCJG8ou9QuY0_0\tperson\nCJIpdb7wZEc_0\tperson\nCJNAMf-R_J4_0\ttruck\nCJNj2wqp8QU_0\tbear\nCJOJBhvHmCE_0\tperson\na79_ETe4ego_0\tperson\na7_ixAbhsRI_0\telephant\na8MHgXPiRZU_0\tperson\na8as0DkifS0_0\tperson\na8eQTqlG-6o_0\tperson\na8insUA82jQ_1\tdog\na8insUA82jQ_2\tdog\na8insUA82jQ_3\tdog\na8r9Xss8Es0_0\tperson\na8wT4T21reQ_0\tperson\na8z4RhTT02c_0\thorse\na82uXl_fE7A_2\tcow\na82uXl_fE7A_3\tcow\na892r_pD5PM_0\tperson\na9FI5hfZsG0_0\tboat\na9GBRb_g82o_1\tbicycle\na9GBRb_g82o_2\tbicycle\na9YciDJw4wo_0\tdog\na9Y2Jm4-FDM_0\tperson\na9ZvcKL6lEg_0\tperson\na9fG2p2YO7k_0\tbus\na9fG2p2YO7k_2\tbus\na9g4dt8Lszw_0\tperson\na9g4dt8Lszw_1\tperson\na9riNB4_uhk_0\thorse\na90AssqciQk_1\telephant\na90AssqciQk_2\telephant\na-EIC5v0X4o_0\tdog\na-EIC5v0X4o_1\tdog\na-MNXAJ2mZo_0\tperson\na-NocjWzZtY_2\tperson\na-QTXZfMMT4_0\tperson\na-ZWAMyDG3o_0\tperson\na-iJ2J3oI-A_0\tperson\na-lm-MyKchM_0\tcow\na-s461-Ddxc_0\tskateboard\na-u5tm8bZnc_0\thorse\na-yRjCC5TTM_0\thorse\na-1bMCU5aj8_0\tmotorcycle\na-8RK3OMAOo_0\tskateboard\na-8RK3OMAOo_1\tskateboard\na_KVzTF1RIA_0\tperson\na_KZ5mevNfs_0\tbear\na_OkB8q7LMc_1\tperson\na_SryCna8Rk_0\tperson\na_UjbYab9UM_0\ttrain\na_YIQ1VvpcU_0\tperson\na_YIQ1VvpcU_1\tperson\na_gLFD5d04A_0\tperson\na_wdiSqtOK4_0\tairplane\na_xkGO87GsU_0\tskateboard\na_1zKb6B-bs_0\tperson\na_6uxh_4kb8_0\tperson\na_-WUUfn_l4_0\tperson\na__R_Y49D54_0\tperson\nbALr5X95BQ8_1\tperson\nbAMbXytHB7Y_0\tperson\nbAMbXytHB7Y_1\tperson\nbAdtKFYWQcE_0\tperson\nbAfpD53Vjic_0\thorse\nbAinSo2I3HI_0\tperson\nbAinSo2I3HI_1\tperson\nbAp653-8UZI_0\tperson\nbAtWugkhW88_0\tbus\nbAutb-z3rvw_0\tcow\nbAwVg4MVWds_1\telephant\nbAwVg4MVWds_0\telephant\nbAwVg4MVWds_5\telephant\nbAwVg4MVWds_9\telephant\nbAwVg4MVWds_10\telephant\nbAwVg4MVWds_11\telephant\nbA2bnjEnbus_0\tperson\nbA4v5gLC700_0\tperson\nbA5elX54rTQ_0\tcat\nbA6JRlAu2yE_0\tperson\nbA8lz4kTY-0_0\tbicycle\nbA8lz4kTY-0_3\tbicycle\nbA8lz4kTY-0_5\tbicycle\nbA8lz4kTY-0_6\tbicycle\nbA_NwRpP6Tw_0\tperson\nbA_6OElyKFo_0\ttrain\nbBPPJNf59kQ_0\tumbrella\nbBT4o_qtgWU_0\tperson\nbBgRYIPlqAQ_0\tperson\nbBm9VYnMO9g_0\tbird\nbBt5A6pwnxY_0\tperson\nbB1rIuXXQFA_1\tbus\nbB4Xm1LS9CI_0\tdog\nbB6PWM19eMo_0\tperson\nbCB5mMgiGnk_0\tperson\nbCRN4AZbr6o_0\ttrain\nbCbqiJ6Ales_0\tperson\nbCuWk5NSB0k_0\tperson\nbCuWk5NSB0k_1\tperson\nbCuuL9wxM7E_0\tperson\nbCuuL9wxM7E_1\tperson\nbCvbst3iM94_0\tmotorcycle\nbCwUgQIL5cE_0\tknife\nbCx54wbopXs_1\thorse\nbDBjT69DcT4_0\tcow\nbDEPo_ZJ8BY_0\ttruck\nbDJyFQqK69A_0\tperson\nbDOeksOYoHc_0\ttruck\nbDOeksOYoHc_1\ttruck\nbDOeksOYoHc_2\ttruck\nbDOeksOYoHc_3\ttruck\nbDO5jSIN9C4_0\tperson\nbDZrANNzYZY_0\tskateboard\nbDaTeoyWI4g_0\ttrain\nbDcapf9qqwU_0\tperson\nbDjiXPhFyUA_0\tperson\nbDu9DwJEoHs_0\tcow\nbDu9DwJEoHs_1\tcow\nbDu9DwJEoHs_2\tcow\nbDxvHkJLr2M_0\tbus\nbD9LGwYECDw_0\tcat\nbD-NwifgK0w_1\tskateboard\nbEDI6tCMZXU_0\tperson\nbEIh6sX-Tl4_0\tperson\nbEKdkY9RBEY_0\tperson\nbEM1_c0lvzs_0\tbear\nbEOBKFTwR2Q_0\tgiraffe\nbETxZfOvyHY_3\tbear\nbEUZ0kW5UxE_1\tperson\nbEawSJKPt-Q_0\tperson\nbEhFibV8au4_0\tperson\nbEqXwB3xaWk_0\tperson\nbErIbiSkE10_0\tskateboard\nbEwALd1GaT4_0\tbicycle\nbEzk1Y4QUKs_0\tbus\nbE2p5KejqaA_0\tperson\nbE54N9ho-us_0\telephant\nbE9RuKWeuuo_0\tperson\nbE--xARlZGI_1\tbird\nbFA9McooYzo_0\tcar\nbFCSt5rQdmU_0\tperson\nbFEO4MHzBto_0\tperson\nbFIAwyZ6uuE_2\tperson\nbFIAwyZ6uuE_0\tperson\nbFIAwyZ6uuE_1\tperson\nbFNUtoXNMlQ_0\tbus\nbFORQXIUbxA_0\tperson\nbFXutLP--Cw_0\tcow\nbFXutLP--Cw_1\tcow\nbFXutLP--Cw_2\tcow\nbFXutLP--Cw_3\tcow\nbFYfbtcZvsM_1\thorse\nbFe5fer15nk_1\tbus\nbFm95kiEE_Q_0\tbicycle\nbFnZbMhDMQ8_0\tperson\nbFrVmI5XvFw_0\tperson\nbF2D0pMJqLQ_1\tknife\nbF65L0Tc9w8_0\tperson\nbF8lUYDQNgc_0\tperson\nbGCRyP03o54_1\tskateboard\nbGFqTDkSuTA_1\tbird\nbGMKF81Sy6c_0\tperson\nbGcugFPOZ98_0\tperson\nbGeFOznVAdA_0\telephant\nbGmggiJ7Hrk_2\tboat\nbGpuuVQyMOY_0\tperson\nbGsY4wldptk_1\thorse\nbGsY4wldptk_0\thorse\nbGyLNR-ZWRY_1\tcat\nbG7btkvllWc_0\tskateboard\nbG9Q1zv6YZ4_1\tperson\nbG-X3irBEO0_0\tperson\nbHALJVsPIWo_0\tperson\nbHBuapxTSS0_0\tperson\nbHB5zkcU4DY_0\tperson\nbHO746jxL2Y_0\tskateboard\nbHP9bh7-qNQ_0\ttruck\nbHWmtSkc1qY_0\tperson\nbHWmtSkc1qY_1\tperson\nbHbgFvCFkb0_0\thorse\nbHcNLuPTrTk_0\tperson\nbHcbcNIxs_o_0\tknife\nbHdxB4LnmGY_2\tmotorcycle\nbHdxB4LnmGY_0\tmotorcycle\nbHdypdEXRYY_0\tskateboard\nbHim6VG9R7E_1\tboat\nbHoVPJGd7EU_1\ttruck\nbHoVPJGd7EU_2\ttruck\nbHoVPJGd7EU_3\ttruck\nbHvVd9-u80E_0\tperson\nbH5d5crxmiw_0\tcat\nbIFUXEvQb_4_0\ttruck\nbIFUXEvQb_4_1\ttruck\nbIV7YZEPqTo_0\tperson\nbIiV4e5w280_0\tperson\nbInwFKVbP2c_0\tperson\nbIqcbjzOQ0Y_0\tcar\nbIslKUiw6YQ_4\tairplane\nbIslKUiw6YQ_0\tairplane\nbIyfjvesRuY_0\tboat\nbIzzvd9q2po_0\tcow\nbI19pnS1D7Q_0\tmotorcycle\nbI8htXUqQkI_0\tcat\nbJADjJacbIY_1\tperson\nbJAxqtGR-MY_0\tperson\nbJBnGIqBiuw_0\thorse\nbJDJ5yePi6M_0\tperson\nbJITjrxz5Ns_0\tperson\nbJI1844s-tU_0\thorse\nbJKrgOW0nMk_0\tperson\nbJMS4sT7XRo_5\thorse\nbJMS4sT7XRo_6\thorse\nbJMS4sT7XRo_8\thorse\nbJMS4sT7XRo_9\thorse\nbJMS4sT7XRo_0\thorse\nbJMS4sT7XRo_1\thorse\nbJWTtXkyZHg_0\tperson\nbJcrA1AOfI4_2\ttrain\nbJcrA1AOfI4_3\ttrain\nbJfHVvueTbo_0\tperson\nbJh3iPv6jYc_0\tcow\nbJqhWaDN0hQ_1\tdog\nbJ0SdP6bjnQ_0\tperson\nbJ24-WqB1xs_0\tperson\nbJ6hIJWstDo_0\ttruck\nbJ6-RBgHmRU_0\tperson\nbJ8k9v22vJA_0\tperson\nbKBLXhOMUi8_0\tdog\nbKCfbZIUSZI_0\tperson\nbKCjZrT7jIY_0\ttruck\nCJfXDO8EqQ4_0\tperson\nCJfXDO8EqQ4_1\tperson\nCJm40KxFN5E_1\tperson\nCJm40KxFN5E_0\tperson\nCJqFjtBvN9Y_0\tskateboard\nCJqHpmU9iSk_2\tperson\nCJqHpmU9iSk_0\tperson\nCJrxPkQa2GE_1\ttrain\nCJ0sXsga9bM_0\tbus\nCJ35smVDZW0_0\tperson\nCJ4qgeMiaOQ_0\tairplane\nCJ6n8mmO1b4_0\tcat\nCKB_--5AbfU_0\ttrain\nCKC6BopJKyk_0\tperson\nCKGpdOkI6P4_0\tperson\nCKNmSha1fz0_0\tperson\nCKQHLTDcKyk_1\tbird\nCKSN1SlM9ug_0\tcat\nCKZ1xRX4dh8_4\tknife\nCKcBs841bV0_0\tperson\nCKhADB_ssaI_0\telephant\nCKjQxzl__Fw_0\tbicycle\nCKkp1wLGtks_0\tperson\nCKmTbQn6J9U_1\tperson\nCKsvfQdlYfo_0\tperson\nCKuBMM3fZ84_0\tairplane\nCKxmvXSrPIg_0\tbicycle\nCKzh_WuJFng_0\tperson\nCK29cIxMNP0_0\tperson\nCK39c3vr6gc_0\tskateboard\nCLAjvvAM-K4_0\tperson\nCLB6UiAOkP0_1\tbus\nCLMUcOgZdNQ_2\tcow\nCLQOTITDBeo_0\tperson\nCLXlbsB7sLY_0\tperson\nCLdyznsISW8_2\tcar\nCLosaFzMFeI_1\tperson\nCLzV3TNXkFo_0\tperson\nCL1Bt58elWc_1\tperson\nCL1Bt58elWc_0\tperson\nCL1z2IBwWkA_0\tperson\nCL1z2IBwWkA_1\tperson\nCL4fc23TpVo_0\tperson\nCL5zmQikk-A_0\tperson\nCMBw6j8-QzY_0\tperson\nCMBw6j8-QzY_1\tperson\nCMIMzbsGXk8_0\tbus\nCMLOYaDEQ9g_0\tperson\nCMMGX4SFyIs_2\tperson\nCMOEwqoxxwo_0\tperson\nCMP-dHylUas_1\tperson\nCMlE5HjD19w_0\ttruck\nCMlNU8W7Lsk_0\tcow\nCMrJ3Hog9z4_0\telephant\nCMrJ3Hog9z4_1\telephant\nCMrJ3Hog9z4_2\telephant\nCMsMnTwn9o8_1\ttruck\nCMwy_JpVNwc_3\tbird\nCMwy_JpVNwc_1\tbird\nCMwy_JpVNwc_2\tbird\nCNDd5De0h98_0\tperson\nCNEdjudh1lE_0\tperson\nCNID7GMZCtU_1\thorse\nCNiuz-9TxDo_0\tperson\nCNqKVUmynPk_0\tairplane\nCNt_itMBqgs_0\tperson\nCNua3gOk0oM_0\tbus\nCNwRXN4wSAk_0\tknife\nCN6-VQgDfe4_0\tperson\nCN8AktLgwN8_0\tgiraffe\nCN8AktLgwN8_6\telephant\nCOAed-b3LTY_0\tperson\nCOFcQrVSFcc_0\tperson\nCOTylrR16zU_1\tboat\nCOc8fmI9wQ4_0\thorse\nCOh7aoqTWjY_0\telephant\nCOj_p56dMLI_0\tmotorcycle\nCOksm121JZ0_0\ttrain\nCOxq73j4_rY_0\tperson\nCOyU6vUfxXQ_1\tperson\nCOyU6vUfxXQ_0\tperson\nCO2cK7r8MNQ_0\tperson\nCO33VpWw45s_0\tskateboard\nCO_0l5Z12kw_0\tcat\nCPManZ0i9vw_0\ttruck\nCPN9sc_XrbM_0\telephant\nCPOp_zZsQJk_0\tcow\nCPQXOFjv2LM_0\tperson\nCPXyJXYL8yY_0\tmotorcycle\nCPXyJXYL8yY_4\tmotorcycle\nCPYxpWVVj_M_0\tcow\nCPZSesZALiI_1\tcat\nCPuy90LHgrc_0\tbus\nCP3cZfEx36E_2\tbear\nCP3u7XjYteQ_1\tperson\nCP3u7XjYteQ_0\tperson\nCQEjDKzTc3Y_2\tperson\nCQE_vEzLzMQ_0\tperson\nCQPAMu_3qwY_0\tbear\nCQUUCXr0Idg_0\tperson\nCQU9LkJ1PlA_0\tperson\nCQU9LkJ1PlA_1\tperson\nCQbUivUBlJ8_1\tbear\nCQbUivUBlJ8_3\tbear\nCQihoSP1KLM_0\tperson\nCQite5jXihw_2\tperson\nCQlL5sCIaM4_2\ttrain\nCQlL5sCIaM4_0\ttrain\nCQlL5sCIaM4_1\ttrain\nCQmCFDEszdc_0\tcat\nCQyxRGB9-_o_1\telephant\nCQzQkumb_iw_0\tperson\nCQ0hdku_Mu0_3\telephant\nCQ0hdku_Mu0_4\telephant\nCQ0hdku_Mu0_6\telephant\nCQ0hdku_Mu0_8\telephant\nCQ0hdku_Mu0_11\telephant\nCQ2pa82Muc4_0\tperson\nCRGhEOLOPLw_0\tbus\nCRHfpplogUY_2\tcar\nCRHfpplogUY_1\tcar\nCRPfcUOT10Q_0\ttrain\nCRQ8kzUgpGE_0\tcat\nCRS3P9ePDug_8\ttrain\nCRS3P9ePDug_0\ttrain\nCRS3P9ePDug_4\ttrain\nCRS3P9ePDug_7\ttrain\nCRS3P9ePDug_9\ttrain\nCRS3P9ePDug_1\ttrain\nCRYLa0UnCJY_0\tdog\nCRZQQc-7Cr4_0\tperson\nCRZQQc-7Cr4_1\tperson\nCRcL9sc8Z_Q_0\tperson\nCRihNgUldQg_0\tperson\nCRpG5Auclh4_0\ttrain\nCRscoQhOT24_0\telephant\nCRteSMMhdfo_1\tperson\nCR2Qbth78ug_0\tperson\nCR7gNMR7aFk_0\tperson\nCSBnYbN-fwQ_0\tperson\nCSBnYbN-fwQ_1\tperson\nCSCN35ZL4gk_0\tperson\nCSCmLaLpgec_1\ttrain\nCSGkGWkJnIo_0\tperson\nCSKOzx-8MRM_0\tperson\nCSKhQtYbLiY_0\tperson\nCSTEfDaVq_w_3\thorse\nCSgIyZrF2Xw_6\tbear\nCShE1WLp4V4_0\tperson\nCSlYtyS3ekI_0\tcat\nCStjlkpuH8I_0\tknife\nCSwiprmAnWk_0\tperson\nCS4LhFaTdRc_1\tperson\nCS4TVHuh-OI_1\tperson\nCS4TVHuh-OI_0\tperson\nCTBCSXpoCNw_0\tknife\nCTGjM7vaWkc_0\tcar\nCTNN0vCWthk_0\tcow\nCTOTTFDvM9g_0\telephant\nCTOTTFDvM9g_1\telephant\nCTpK5Ywqj4E_0\tperson\nCTtActqncZs_1\tperson\nCTtActqncZs_0\tperson\nCTty0Fesx4k_1\telephant\nCTty0Fesx4k_2\telephant\nCT6O84zfmoY_0\tperson\nCT8VKdB074U_0\tdog\nCUB_Y4U0gNU_0\tperson\nCUE1Oj2b7oo_0\tperson\nCUIv9zU0_7M_2\tdog\nCUQZtS7SlyM_0\ttruck\nCUVQtlpfthI_0\tperson\nCUVqn-7LP_k_0\tcat\nCUjEVN0BT58_0\tperson\nCUjbAz30mdA_0\tperson\nCUvi-gOiEak_0\tairplane\nCUvi-gOiEak_1\tairplane\nCUzrNlKejnA_0\tperson\nCU-5HeXnZag_0\tperson\nCU_cxu2KrzY_1\tcow\nCU_4MsJSWGw_0\thorse\nCVCPdF3TevY_0\tcar\nCVJEcVS63rM_0\tperson\nCVJu9kpxa0o_0\tskateboard\nCVQq3Lnsmb8_0\tskateboard\nCVRQkAzvHOI_0\tcat\nCVXbWRarjGI_3\tbicycle\nCVa-tmxG3G8_0\tbus\nCVfXcK9LvU4_0\tcat\nCVnQzQjIfdo_0\tperson\nCVnQzQjIfdo_1\tperson\nCVtUo7t1tg4_0\tknife\nCVtdQUWrMFo_0\tperson\nCV1gdpxyUvQ_0\tumbrella\nCV7yBA-RY-s_0\tperson\nCV9Mv-Z5ywo_1\tknife\nCV9_qaQ3bOc_0\tdog\nCWNPg3hbbCc_0\tperson\nCWRUw47fnHQ_0\tdog\nCWcpGIObSb4_0\tperson\nCWcpGIObSb4_1\tperson\nCWhtecFS3Ps_0\tperson\nCWh66yU69HI_1\tperson\nCWq2nbpnjkw_0\tperson\nCWsgkyp-Wv8_1\tperson\nCWsgkyp-Wv8_0\tperson\nCWu6nT2qW2Q_0\tperson\nCWydCxGJyck_0\tcat\nCW0GVWegie4_0\tperson\nCXEi_k33z08_0\tperson\nCXF-MNV21Uw_1\tperson\nCXF-MNV21Uw_2\tperson\nCXF-MNV21Uw_0\tperson\nbKIEzYSD9LU_0\tbird\nbKM4LmiXX5k_3\tknife\nbKM4LmiXX5k_0\tknife\nbKQQdBiIraA_0\tdog\nbKT6s25xsS4_0\tperson\nbKh8FyKvOq8_0\tumbrella\nbKic74m-XKg_0\thorse\nbKnsY1ytgqc_0\tperson\nbK0HzQHKqhg_0\tmotorcycle\nbK0HzQHKqhg_1\tmotorcycle\nbK0IN2qoSjQ_1\tperson\nbK7Wo0UxDyQ_0\tperson\nbLBmIVS2T-0_0\tperson\nbLLFtAMqoF0_0\tperson\nbLOW53I2oWw_0\tknife\nbLU0G55kWgs_0\tcar\nbLU0G55kWgs_1\tcar\nbLYGpYiiF7Q_0\tperson\nbLg0SdwRkKc_0\tperson\nbLneVyHWwdk_0\tperson\nbLoyRVgQcTk_0\tcat\nbLoyRVgQcTk_1\tcat\nbLoyRVgQcTk_2\tcat\nbLs4dUFZzcQ_0\tperson\nbLs4dUFZzcQ_1\tperson\nbMEbcFBdRsA_0\tairplane\nbMM1OZMZ_WY_0\tperson\nbMNzE6F4WK4_0\ttruck\nbMPPnTHvu8c_1\tcow\nbMQlfzj9vCE_0\tperson\nbMZPcnVc1K0_0\tperson\nbMakr2vwfqQ_0\tperson\nbMdfLBSo6jw_0\tbicycle\nbMfQw6tBALo_0\tcow\nbMgWjlwilqA_0\tbicycle\nbMk8JyTyvUo_0\tskateboard\nbMojajeogfY_0\tperson\nbMphaUsZuqU_2\telephant\nbMrDB2JI0QM_0\telephant\nbMuSXdxvaWY_0\tbicycle\nbMumJTM0f28_0\tperson\nbM3OcevX9F4_0\tperson\nbM6fRimkPZg_0\tcow\nbM6peJ4lQyU_0\telephant\nbNGoGllCEj0_0\tcar\nbNGoGllCEj0_1\tcar\nbNJ5ygVB-GI_0\tperson\nbNPtMp-AuhY_5\ttrain\nbNPtMp-AuhY_4\ttrain\nbNR89JLsh7Q_0\tmotorcycle\nbNZe9vwuE8E_0\tcar\nbNcTCIgwqNY_0\tboat\nbNinDD5s0LQ_0\tperson\nbNo2RseLYYs_0\tperson\nbNqXgNLQX3s_0\tperson\nbNtivYIWtQE_0\tperson\nbNtivYIWtQE_1\tperson\nbNtivYIWtQE_2\tperson\nbNyyHqBZnmQ_0\tairplane\nbN4vggzwxWI_0\tperson\nbN-epcJfRJ8_0\tperson\nbOPvxhSlnZI_0\ttruck\nbORQv_d22gA_0\tbear\nbOTYFfq_264_0\tperson\nbOXM6ibmbG0_0\ttruck\nbOarvmUMdLs_0\tperson\nbOarvmUMdLs_1\tperson\nbOb4k6pTF-k_0\tmotorcycle\nbOeUzXPOIWw_0\tmotorcycle\nbOfrPHjROWI_0\tdog\nbOm9Qgnl2KI_1\tumbrella\nbOor15z5M5Y_1\ttruck\nbOuuxRt7ugE_0\tbear\nbOwOVcqeajs_1\tboat\nbPAO0nyCO8Y_2\tcow\nbPLKx5uJaZY_0\tbear\nbPTTPAsH7v8_0\tairplane\nbPZdC3oRr1c_0\tdog\nbPanGwtU82U_0\tairplane\nbPavgNJxZnI_0\thorse\nbPavgNJxZnI_4\thorse\nbPcXQrlHs60_0\tzebra\nbPddyJH2fm4_0\tcow\nbPeFwxV66_s_1\tcow\nbPfaS8RIHVw_1\ttrain\nbPjZsDes9ck_0\tbird\nbPvvA8Wm5Ts_0\tperson\nbPw91vtx0rY_0\tdog\nbP17881jyH4_0\telephant\nbP17881jyH4_2\telephant\nbP17881jyH4_1\telephant\nbP6QvQUfZSI_0\tperson\nbP7ZU4wl_xs_1\tperson\nbP7lN2WyBTg_2\tbird\nbP7lN2WyBTg_0\tbird\nbP7pux4nQa4_0\tperson\nbQJQKEfdctc_1\tperson\nbQKuVB3YmRI_1\tknife\nbQNLK-43XKM_0\tperson\nbQNXrSVq4r4_0\tperson\nbQQS-amRhxU_0\tperson\nbQQr8FzMTHE_0\tperson\nbQR6KxB4qjg_1\ttrain\nbQWO4r5DLWY_7\tbicycle\nbQWO4r5DLWY_8\tbicycle\nbQZ8WQ2mS9o_0\thorse\nbQd1k1RNZZA_0\tperson\nbQwDt3XOok0_1\tskateboard\nbQy9W_tIPJg_0\tcat\nbQ7FEMZ309U_0\tbicycle\nbRElYolSzbI_2\thorse\nbRKfUmz_7hE_0\tbicycle\nbRKfUmz_7hE_5\tbicycle\nbRP4TElBetA_0\tskateboard\nbRUtCCY00Yw_0\tperson\nbRd_NGjRFpU_0\tcow\nbRgNc063rsk_0\tperson\nbRgNc063rsk_1\tperson\nbRiVaIWzo4k_0\tperson\nbRiVaIWzo4k_1\tperson\nbRpbblTb1VU_1\tperson\nbRq06zdCv4k_0\tdog\nbRsjD1GTjeE_0\ttruck\nbRuSrTOibGY_0\tskateboard\nbRw2PFlL8l8_0\tcat\nbRxyuZTXkWo_0\tperson\nbR61bP65wdI_0\tperson\nbR_EeaX8Kns_0\tcat\nbSC7MwTZ0Og_0\tperson\nbSJbBDA3-rI_0\tperson\nbSJbBDA3-rI_1\tperson\nbSSSYoS7HhY_2\tperson\nbSSX8qJnGak_0\tperson\nbSVCTx_L7lU_0\tperson\nbSbZuDkimC8_1\tcow\nbScFgdC-DH8_0\tmotorcycle\nbSkEsUu7aBI_0\tcat\nbSqX5D_GrEc_0\tperson\nbS4mTtP-Ud4_0\tperson\nbS4mTtP-Ud4_1\tperson\nbTAxiISsPNE_0\tcow\nbTHRXr-yw54_0\tperson\nbTOZp15gd24_0\tairplane\nbTOZp15gd24_1\tairplane\nbTOZp15gd24_2\tairplane\nbTO9Pid9808_1\tcow\nbThFysASYJg_0\tperson\nbThX-5t7OWM_3\tbus\nbTl-dt761p8_2\tbird\nbTp1hk4dhPE_0\tperson\nbTuho6CpJpg_0\thorse\nbT7mzx9P1Yo_6\tbird\nbT7mzx9P1Yo_8\tbird\nbUDYPhSFyyw_0\tairplane\nbUFCsL247kY_1\tperson\nbUFCsL247kY_0\tperson\nbUIov_O62GU_0\ttrain\nbUVi7VVygmM_0\tperson\nbUa61WY6E38_1\tperson\nbUu6iW_nRvM_0\tperson\nbU8cBepgoMY_4\telephant\nbU8cBepgoMY_1\telephant\nbU8cBepgoMY_3\telephant\nbU8r7rNDaHQ_0\tmotorcycle\nbU8r7rNDaHQ_1\tmotorcycle\nbVCLNxl4PQY_0\tperson\nbVPgCZmg1CY_0\tperson\nbVTzUiTPtww_0\tperson\nbVZixqlT1AI_0\tperson\nbVbT4F3I0s4_0\tperson\nbVbdO8rj6TQ_0\tperson\nbVbdO8rj6TQ_1\tperson\nbVdjQbIzOGc_0\thorse\nbVgKe0-_228_0\tbear\nbVkYqw1YJ6c_0\tperson\nbVnmeQsd3xk_1\tcar\nbVph6GZ3jLE_0\tskateboard\nbVrck_XYsR8_0\tbicycle\nbVtMukuPx9A_0\tmotorcycle\nbVtWuhD1L1s_0\tcar\nbVvVMOxHOT4_0\tcat\nbVwWkzYdrvk_0\tperson\nbVw9txmBeX0_0\tperson\nbVz-pHuWNfc_0\tperson\nbV3UXbGCshc_3\telephant\nbV3UXbGCshc_4\telephant\nbV3UXbGCshc_0\telephant\nbV3UXbGCshc_2\telephant\nbV8k_w0cphI_0\tperson\nbV9tUYWi-9o_0\ttruck\nbV9tUYWi-9o_1\ttruck\nbWCW4QZTIXE_0\tperson\nbWCxObc3uVo_0\tperson\nbWEnwFThRlA_0\tperson\nbWEtMBeQQCA_0\tbus\nbWEw8rNQ-kI_0\tperson\nbWJg9jatoBY_0\tperson\nbWLcKJauKIs_0\tperson\nbWO4NBx37Vk_4\tairplane\nbWdWgIB371Y_0\tperson\nbWdWgIB371Y_1\tperson\nbWkKy-_YzW8_0\tumbrella\nbWotjBNgmiA_1\tmotorcycle\nbWotjBNgmiA_2\tmotorcycle\nbWo4CzHWaZ8_0\tdog\nbWqayCqhqVQ_0\tperson\nbWtXkAzA6zE_0\tperson\nbWtXkAzA6zE_1\tperson\nbW1JoZnZpXs_0\tbicycle\nbW1JoZnZpXs_2\tbicycle\nbW2I1hUiWgg_1\tbear\nbW2I1hUiWgg_3\tbear\nbW2I1hUiWgg_2\tbear\nbW6PJACBEFo_0\tboat\nbW6PJACBEFo_1\tboat\nbW7x14tLsxU_0\tcow\nbW7x14tLsxU_1\tcow\nbXGa-FIGViQ_0\ttruck\nCXOKkaurfXo_0\tperson\nCXVmfrDfalE_0\tperson\nCXVyHpmc_fU_1\tcat\nCXXWvUVLBBE_1\ttrain\nCXXWvUVLBBE_3\ttrain\nCXaF0E3wEzI_4\tboat\nCXaF0E3wEzI_1\tboat\nCXaF0E3wEzI_2\tboat\nCXdGDPRtlo4_1\tcat\nCXdjIo4q-w4_0\tdog\nCXoeLQPShqU_3\thorse\nCXoeLQPShqU_0\thorse\nCXrwHki5ShI_0\tperson\nCXw5HMRQwEk_7\tbear\nCXxPPuZcT2k_0\tknife\nCXyujV2S5aE_0\tperson\nCX1US3Y-2jI_0\tperson\nCX5Y01eJ_g0_0\tknife\nCX838M4iPkw_1\tbear\nCX_YxpWurRk_0\tperson\nCYEtgx1uVTM_0\ttrain\nCYEtgx1uVTM_1\ttrain\nCYFtiy8FtgM_0\tperson\nCYGBUw8HZ8Q_0\tperson\nCYKbj5BgaiI_0\tperson\nCYPFpTJXCp8_1\tperson\nCYXd3muNlJ8_0\tperson\nCYcxxdqG02k_0\tperson\nCYcxxdqG02k_1\tperson\nCYghFhQySik_1\tperson\nCYghFhQySik_2\tperson\nCYghFhQySik_0\tperson\nCYg8fy66poA_0\ttrain\nCYjEASXRoys_0\tperson\nCYkow-sm2pA_0\tperson\nCYmpj4UFFtA_0\tcow\nCYsgb4GhJ_0_1\tcat\nCYtehjvIIIE_0\tcat\nCYw9ONxIi0M_4\tbear\nCY3-VTI7lQU_1\tcow\nCY48729zIgM_0\tbus\nCZAt34OJpoI_0\telephant\nCZGoAqWEDQM_1\thorse\nCZJz6zZt3cE_0\tperson\nCZXHqexGqfI_0\tcow\nCZduQndn_Eg_0\ttrain\nCZfMxEFk9hc_0\tmotorcycle\nCZfe1GuZxPI_1\tperson\nCZws8sfLA8M_0\tperson\nCZ8bjG4wdZU_0\tperson\nCZ9MT7tZZ2E_0\tknife\nCZ-Kodbg_2A_0\tbus\nCaA-PFuqaXw_0\ttruck\nCaFlo5YQHXw_0\ttrain\nCag3vCKRh6c_0\tbicycle\nCajF9IxbOvI_0\tperson\nCajF9IxbOvI_1\tperson\nCam_wHie6XQ_1\tperson\nCa4_dI-Ii8o_0\tperson\nCa5GzZ-rifE_2\thorse\nCa5GzZ-rifE_0\thorse\nCa5GzZ-rifE_3\thorse\nCa5mOzqFz70_2\tbear\nCa6g367yxss_3\tdog\nCa9JsTGifmQ_1\tknife\nCa-l5zpgIL0_0\thorse\nCa-wDaXxSn8_0\ttrain\nCa_LwXljv5I_2\tdog\nCbBrv9GkBDM_0\tperson\nCbKVR2EGoWU_0\tcat\nCbO4r5w5NEM_0\tcat\nCbTbpHHYfGo_1\tcow\nCbYQk8GFQwY_0\tperson\nCbYXzAv9G40_0\tperson\nCbZA75LYWsk_0\tboat\nCbZA75LYWsk_4\tboat\nCbZA75LYWsk_7\tboat\nCbZA75LYWsk_8\tboat\nCbZA75LYWsk_6\tboat\nCbbsxxHKQBs_1\tbicycle\nCbbsxxHKQBs_3\tbicycle\nCbfML92fBFc_0\tperson\nCbrOGI6D5oo_0\tdog\nCbz0hgvZtyM_0\tperson\nCb0EbSTABAw_0\tperson\nCb31aGVbcGE_0\tperson\nCcJ-51mUw00_0\tperson\nCcNfpk8tVxA_2\tperson\nCcNfpk8tVxA_0\tperson\nCcNfpk8tVxA_1\tperson\nCcadL-XHA8w_0\tperson\nCccC-FK79hM_0\tskateboard\nCceETksmvEc_0\tbus\nCcfAKl1kCRM_0\tperson\nCcl3EZzzNhc_2\tbird\nCcl3EZzzNhc_3\tbird\nCcmiWGPbuT4_0\tcar\nCcyRYeSG3sQ_0\ttruck\nCcyqd4ZzDtQ_0\tperson\nCc5DUip1-eE_0\tperson\nCc9-Kd--ejs_0\tcar\nCdA-Gg7O6d4_0\tperson\nCdD0W0pS7gk_0\tskateboard\nCdG8sd9UZFM_1\telephant\nCdG8sd9UZFM_3\telephant\nCdOwMZqCiMs_0\tbird\nCdRgo9V_e_U_0\tperson\nCdTDo40rdz4_3\tumbrella\nCdVnK1TcGcQ_0\tknife\nCdW2qTShGbY_2\tperson\nCdW2qTShGbY_1\tperson\nCdYkEASWMqQ_0\tperson\nCddXUsFqg4Q_10\tbicycle\nCddXUsFqg4Q_12\tbicycle\nCdeUORbvfgs_0\tperson\nCdkbBdQwTX0_0\tperson\nCdmrCOVxj8c_0\tperson\nCdosWRXaOgY_0\tperson\nCdtY-oTmACc_0\telephant\nCd3qxnZC6s4_0\tairplane\nCd8dfcT-D9U_0\thorse\nCd8zY0wsrLc_0\tumbrella\nCd_ZgXZ7qKw_0\tperson\nCd_ZgXZ7qKw_1\tperson\nCeCnRUGvs9Q_1\thorse\nCeEMUoHNeVA_0\tperson\nCeICmGeQXOk_0\tmotorcycle\nCeICmGeQXOk_1\tmotorcycle\nCeVjsWpfoCY_0\tperson\nCekBpSMLr08_0\thorse\nCetmVa_LV2A_0\tbird\nCetw-N1I1bA_0\tdog\nCew6y9K7ynI_0\tcat\nCezGmkW4sRY_0\tperson\nCe1tW6uV_lw_0\tperson\nCe1tW6uV_lw_1\tperson\nCe_dgPawIkU_0\tperson\nCfC--i0DQ-o_0\tcar\nCfThv8Vk-oM_0\tumbrella\nCfbzDUZ6PyQ_0\ttruck\nCfqtCB_f_Z8_3\tskateboard\nCfwk3niR9Uc_0\tmotorcycle\nCfyvbbrxquI_0\tcat\nCf_GVLLQaTA_0\tperson\nCgB0fwUOZd4_2\tbus\nCgDcN1Lk7ag_0\tcar\nCgDcN1Lk7ag_1\tcar\nCgDcN1Lk7ag_2\tcar\nCgDyrbc-LLo_0\tperson\nCgHCCqADKys_0\tperson\nCgQl21vwrqk_0\tperson\nCgQv6o97KqY_0\tperson\nCglmlO92nKA_0\tperson\nCglmlO92nKA_1\tperson\nCgod2p17L48_0\tperson\nCgwHXWDGAak_1\tperson\nCgzt1Kv6Sqg_0\tcow\nCg9H20lr5Uk_0\tperson\nCg9H20lr5Uk_1\tperson\nCg9H20lr5Uk_2\tperson\nChBKKPEO8N0_0\tperson\nChOKPIVr5XE_2\tbicycle\nChPBGkSbJ0g_0\telephant\nChRNCk9Bq-k_0\tcat\nChZB3vAX8sk_0\tperson\nChc7poZ9r-k_3\tskateboard\nChmcE3Lz1Vc_0\tperson\nCh2_CQg4r1o_0\tperson\nCh-PosNzqZ8_4\telephant\nCh-PosNzqZ8_0\telephant\nCiCqdFq_a7U_1\tperson\nCiCqdFq_a7U_0\tperson\nCiLbnwjSJ9w_0\tperson\nCiQOmR8VCzs_0\tperson\nCiQOmR8VCzs_1\tperson\nCiQS0RMaLZQ_0\ttruck\nCiT09gfBJPA_1\tperson\nCiVwjoLvdAs_1\thorse\nCiWhBWV1zGM_0\tcow\nCiWhBWV1zGM_1\tcow\nCiYOn9VW1eY_0\thorse\nCihCAad2Duo_0\tperson\nCilRWTfS8e4_0\tperson\nCiwaaMNfvCo_0\tairplane\nCi0S27Qp1w4_0\tcat\nCi2vW1OGHe0_0\tcat\nCi6mTJ6BqYI_0\tperson\nCjJ3l2smqAc_0\tperson\nCjMaorKuwf0_1\thorse\nCjRX9J2BM4Y_0\tskateboard\nCjUf3D9IsCQ_0\tperson\nCje7Ip85T1I_0\tperson\nCjm9Wky44TM_0\telephant\nCjm9Wky44TM_1\telephant\nCjn-mt97y-w_0\tperson\nCjq3dda3PlA_1\tperson\nCjq3dda3PlA_0\tperson\nCjw2f0M_eB8_0\tbird\nCj1CpXDG_Qw_0\tperson\nCj3PTZcRbd4_0\tperson\nCj3ZEx4SDe4_0\tcow\nCj-a9t9yiiA_0\tperson\nCj-a9t9yiiA_1\tperson\nCkBGaJnF9vo_0\tperson\nCkC43WVctnk_0\tcat\nCkKQhDP2FGY_1\tperson\nCkKQhDP2FGY_0\tperson\nCkKQhDP2FGY_2\tperson\nCkLE-s6CsgY_0\tcow\nCkLwgOIBF_I_0\tperson\nCkLwgOIBF_I_1\tperson\nCkP_70u-2zU_1\tboat\nCkX8laawskQ_2\thorse\nCkZeki9RVDI_0\tperson\nCkZhHtevDk8_0\tperson\nCknHFY05prw_0\tperson\nCkoK8C4Rzj0_0\tperson\nCkvEr5T38Wc_0\tperson\nCkvEr5T38Wc_1\tperson\nCkvEr5T38Wc_2\tperson\nCkyU5jU74Js_1\tdog\nCkyU5jU74Js_0\tdog\nCk8GRgUrpoE_0\tperson\nClBCXl7l2pw_0\tskateboard\nClH2-R5LeVo_0\tcat\nClLZcmIHrTw_0\tperson\nClM3Ftm0S7o_0\tcow\nClRLFlpMUhU_1\thorse\nClSzHW4AuJ0_0\tperson\nClV1oHNuF9o_0\tperson\nClV6A8WNCvw_0\tcow\nbXcKQNGRBvw_3\tairplane\nbXcKQNGRBvw_0\tairplane\nbXcKQNGRBvw_1\tairplane\nbXcKQNGRBvw_2\tairplane\nbXjVvJ8eOJc_0\tskateboard\nbXkjwotai0Y_0\tbicycle\nbXnvGCFA9Dg_0\tperson\nbX9TcejzzTM_0\tperson\nbYCvd_BTMsk_0\tdog\nbYE-vUOh10s_0\tboat\nbYN8lkupLt4_0\tbird\nbYQiCAwebzs_1\tbicycle\nbYSbuWYiixQ_0\tperson\nbYVgzwF1hNw_0\tbicycle\nbYWGnwi8nDQ_0\tmotorcycle\nbYm9aUK2zzk_0\tperson\nbYpG750b7pE_0\tmotorcycle\nbYvzSXZ0w_I_1\tperson\nbYwwOO6vMAw_0\tperson\nbYwwOO6vMAw_1\tperson\nbYyFEbIGMfo_1\tdog\nbY3sDu5BZDI_0\telephant\nbY3sDu5BZDI_1\telephant\nbY3sDu5BZDI_2\telephant\nbY6vPIaJDGA_0\tperson\nbY8BdyCsCAw_0\tperson\nbZL41d9eFyc_0\tcow\nbZRpdnJtcT4_0\ttrain\nbZRpdnJtcT4_2\ttrain\nbZVMygQQgNg_0\tperson\nbZVZbn0oTjo_1\tgiraffe\nbZdq8Rk75M8_0\tknife\nbZgZihlL0IU_0\tperson\nbZsoMlw4CnI_2\tbus\nbZuOWV67gnY_0\tcat\nbZwJl6ye9Cc_0\tmotorcycle\nbZwJl6ye9Cc_1\tmotorcycle\nbZzzlD0C8Jg_0\ttrain\nbZ2u1x38Qbg_1\tairplane\nbZ6gk6FLGss_0\tperson\nbaDesUZ9Pyc_0\tbear\nbaRyXrRn_ls_1\tmotorcycle\nbaWLnj87FOc_0\tcat\nbabQ3FBdeqQ_0\tcow\nbagbzsb-tg4_0\tperson\nba1hwKdPRx8_0\tcow\nba3cGHmc_OA_0\tperson\nba5407XQYAQ_0\tcow\nbbHdRyrdpDA_0\tboat\nbbH4CQx07Go_2\tknife\nbbLW6902ITg_0\tperson\nbbLW6902ITg_1\tperson\nbbLW6902ITg_3\tperson\nbbLW6902ITg_4\tperson\nbbM0SbH_pgk_2\tbear\nbbZAdo3awRs_0\tcar\nbbZeVbzmLVw_0\telephant\nbbaUzB0Na2o_0\tperson\nbbfDHSIT9ys_0\tperson\nbbhyEgEjfvQ_0\tcow\nbbjuucY5QQc_0\tperson\nbbkjnF0iGrs_0\thorse\nbbkjnF0iGrs_2\thorse\nbbkjnF0iGrs_3\thorse\nbbkjnF0iGrs_6\thorse\nbbnb-beW0p0_0\thorse\nbb0DRm0ueKk_0\thorse\nbb4sgALviyc_0\tbear\nbb5OO1wMKr8_0\tperson\nbcJ1MAj_A_w_1\tperson\nbcLW7YqnUGs_0\tskateboard\nbcdQmV1-Z5k_0\tmotorcycle\nbcgTPCycRIw_0\tskateboard\nbcksTLjC1fs_0\tmotorcycle\nbcrQdxrU_vI_0\tperson\nbc1C8HrNVqE_0\thorse\nbc28CjoKODI_0\tperson\nbc28CjoKODI_1\tperson\nbc3rySF6iao_0\tperson\nbc6jeLN-DUo_0\ttrain\nbdU9JALjnmw_0\tperson\nbdYKw4SpkQQ_0\tzebra\nbdZpXHSW4Ps_0\tcat\nbdbVAdua3uI_0\tairplane\nbdbVAdua3uI_1\tairplane\nbdcoNmelRw4_1\tdog\nbdcoNmelRw4_2\tdog\nbdcwT2ufUBg_0\tbird\nbddes6RyfCI_0\tskateboard\nbddes6RyfCI_1\tskateboard\nbdeoe5gmCd4_0\telephant\nbdeoe5gmCd4_2\telephant\nbdgSMIY2A8Q_0\thorse\nbdoNsiMM1RY_0\tbird\nbdwlZMpXPJo_8\tbird\nbdwlZMpXPJo_7\tbird\nbd--DVCeT-s_0\tcow\nbeE5VOzxibM_0\tgiraffe\nbeLTv9YiY78_0\tdog\nbeLTv9YiY78_1\tdog\nbeLTv9YiY78_2\tdog\nbeQOHdCA8KM_16\telephant\nbeQOHdCA8KM_3\telephant\nbeQOHdCA8KM_6\telephant\nbeQOHdCA8KM_7\telephant\nbeQOHdCA8KM_10\telephant\nbeQOHdCA8KM_12\telephant\nbeSTl1azmTY_1\tskateboard\nbeVVM2pBQdA_0\tcow\nbeVVM2pBQdA_1\tcow\nbecTICXjrg4_0\tperson\nbeliMXc3JE8_0\ttrain\nbesXR1P9Oew_0\tcar\nbeu-edT1daM_0\tperson\nbe9BCy6kHvY_2\tperson\nbe9CXLatX9I_0\thorse\nbe-ggiVD4V0_0\tknife\nbe-5ARU_aHA_0\tperson\nbe_IhYef3hE_0\tperson\nbfBZLLwpNWA_0\tgiraffe\nbfJaD1qZ2gE_0\tbus\nbfJaD1qZ2gE_3\tbus\nbfJtapJ86Gw_0\tperson\nbfRgL9oanEc_1\tperson\nbfRgL9oanEc_0\tperson\nbfS8FB_HOlY_0\tperson\nbfZfMA1mLrQ_0\tdog\nbfZfMA1mLrQ_1\tdog\nbfaMdaYiK90_0\tcat\nbffC89pE6fo_0\tperson\nbffC89pE6fo_1\tperson\nbfkNVFr6Cwg_0\tcow\nbfkNVFr6Cwg_1\tcow\nbflVgDgAHSo_0\tumbrella\nbfrY2wEePwY_0\tperson\nbfrY2wEePwY_2\tperson\nbfwWF0XO7bE_0\tboat\nbf9YySHJcdQ_0\tperson\nbgAOYaooc18_0\tperson\nbgAo5vgwe2M_0\tzebra\nbgBK4sMnLig_0\tcow\nbgBK4sMnLig_1\tcow\nbgC-r6p-XHU_2\telephant\nbgE_uy3Ml6g_1\tumbrella\nbgHMLwWY4Qo_0\tperson\nbgV-FqQ8Tv8_0\tumbrella\nbgXZ3BpIOh8_0\ttrain\nbgaD7K2iEPI_0\tperson\nbgbS11O9lSw_0\tbus\nbgelX1blhpQ_0\ttruck\nbglPgA_0LAk_0\tmotorcycle\nbgpB-A04RLI_0\tperson\nbgyEHsMav4U_0\tperson\nbhBMa8wQ5KA_0\tbird\nbhGJ9gZmP90_0\tperson\nbhGJ9gZmP90_1\tperson\nbhH_pqCQ3Co_0\tcow\nbhJGFbgXlts_1\tperson\nbhNfsUPLKDg_1\ttrain\nbhWmpmnXSlc_0\tperson\nbhZZubkX8_o_1\tbird\nbhdtzsUvieg_1\tperson\nbhqr680CLr0_0\tperson\nbhrOzwB-7qA_0\tperson\nbhsCCw1J_JU_0\tperson\nbhuOX61sk8M_0\tperson\nbhz6HG2KpnI_0\tskateboard\nbh0ZZ4Z76cc_0\tperson\nbh3QacG9JYk_0\tairplane\nbh3QacG9JYk_1\tairplane\nbh3QacG9JYk_2\tairplane\nbh8aMNVny8s_1\ttruck\nbiAdsjypETI_0\tknife\nbiFm-y7gSrc_0\thorse\nbiGJ8vHOsZM_0\tumbrella\nbiLY6NMsqJU_0\tcat\nbiUFB3c0Ucc_0\tbus\nbiZU5SOHQvc_0\tumbrella\nbibJ3Bv5YmQ_0\tmotorcycle\nbik9GuCughc_1\tbird\nbiuEbYnn68k_0\tbus\nbiwbqbVsZeE_1\telephant\nbiyu3sxIOYc_0\tperson\nbi1kYvu5Irg_0\ttrain\nbi1kYvu5Irg_1\ttrain\nbi3GSUnfzd8_0\tperson\nbi5Bkz2MVP4_0\tbird\nbi5Bkz2MVP4_3\tbird\nbi6BNwvsR_0_0\tperson\nbi-GKlUZMR8_0\tmotorcycle\nbjBwCQ5z4IQ_0\tcat\nbjH2OQR68Vc_0\tperson\nbjRQ69TaeKs_2\tperson\nbjgooTfy3JM_0\ttrain\nbjgooTfy3JM_1\ttrain\nbjgooTfy3JM_2\ttrain\nbjhEqucWULo_0\tcow\nbjq8de0pw5M_0\tperson\nbjq8de0pw5M_1\tperson\nbjrq_Kj-wSU_0\tairplane\nbjrq_Kj-wSU_1\tairplane\nbjrq_Kj-wSU_2\tairplane\nbjrq_Kj-wSU_3\tairplane\nbjwdTl5zyaI_0\tskateboard\nbjx96uw-Q24_0\tperson\nbj-Grf4s790_0\telephant\nbkElaSUqJjM_0\ttrain\nbkIBcqXKARI_0\tperson\nbkMU7xViDvA_0\tperson\nbkXBjOrn2yI_0\tperson\nbkggwniG4vc_0\tperson\nbkiQTbQF_TA_0\telephant\nbkigtjV1zA0_1\tmotorcycle\nbklheVvsfac_0\ttruck\nbkoOiNz6Zmo_0\tperson\nbkok3wr4188_0\tperson\nbk2l-O9wSEc_0\tperson\nbk8UlOzFy7U_1\tperson\nblAiGXbJxmI_0\ttrain\nblIpNvBakFI_0\tperson\nblW8z3TPVvo_0\tmotorcycle\nblhCjXE5cRo_0\tperson\nbli5Z83QY_U_0\tperson\nblnFzQdaVRc_0\tperson\nbluU1CAbJfo_0\tperson\nblubKbt8mLE_0\tcar\nbluqyqDv2eE_0\tcar\nblv0QslQ524_5\tbus\nblv0QslQ524_6\tbus\nblzDAgvxJMw_0\tperson\nbl1XJCtyP2E_0\ttruck\nbl2xZSpcZqs_0\tcat\nbl6wIjxfuJo_1\tbicycle\nbl6wIjxfuJo_2\tbicycle\nCloG2hcM5nU_9\tbicycle\nCloLHr7NJqg_0\tperson\nCloOQkTkYfY_0\tbus\nClpDLu1qCx4_2\tperson\nClpDLu1qCx4_3\tperson\nClpDLu1qCx4_1\tperson\nClvAi34e1zM_1\telephant\nCl1mEpQ3wy4_0\tboat\nCl1mEpQ3wy4_1\tboat\nCmEoz728tlo_2\tbear\nCmGSMnkcvrg_1\ttrain\nCmIXZuJDwt0_0\tperson\nCmNv_yKt5oM_0\tperson\nCmOIqZyQpPI_3\tbird\nCmOIqZyQpPI_1\tbird\nCmVoggJ6fxY_1\thorse\nCmYL2EyELbA_0\telephant\nCmezWT8A2i8_0\tbus\nCmjUCOwcOT8_4\tbicycle\nCmjUCOwcOT8_11\tbicycle\nCmjjEuS9_Ww_0\tbicycle\nCmjw8kbfDCw_1\tknife\nCmoknpL1cMA_0\tperson\nCmqXoT7CXJs_0\tdog\nCmq1qVX-Ugo_1\tcat\nCmsqpFOcosw_0\tperson\nCmtmoydPH08_0\tcow\nCmxhIEztsyg_1\tskateboard\nCm1y7USHcrg_0\tperson\nCm3tYZlSc0o_0\tskateboard\nCnBJ9TMTRAA_0\tperson\nCnBJ9TMTRAA_1\tperson\nCnCTVtsK5Kw_2\tbear\nCnEXHgq3AE4_2\telephant\nCnGp9Wq2rTs_0\tbear\nCniS9Q6Y200_0\tperson\nCn0UKsWocEI_0\telephant\nCn0UKsWocEI_1\telephant\nCn1dXZ_p3dw_1\tperson\nCn9Bj5B29UI_0\tmotorcycle\nCoBuNWx_OwM_0\tperson\nCoDB7ZeilsQ_0\tperson\nCoKMowfrd5Q_2\ttruck\nCoKMowfrd5Q_3\ttruck\nCoKVaYX3c1k_0\tperson\nCoKVaYX3c1k_1\tperson\nCoKVaYX3c1k_2\tperson\nCoOwm7ccDrs_0\ttruck\nCoSIyrW5lvA_1\tskateboard\nCoSSvI2-U_w_1\tbicycle\nCoZY8o0c-h8_0\telephant\nCoZY8o0c-h8_1\telephant\nCocSNWws-Qo_0\tperson\nCodelARKQ10_0\tskateboard\nCosYvoW04Uk_0\tperson\nCot7Xj8C308_0\tboat\nCoz9g_0N91c_0\tperson\nCo_XBpd6lxE_0\tperson\nCpDHwc5JmK8_3\telephant\nCpFiT_6KvM4_0\tperson\nCpF-80dM2aY_0\tperson\nCpF-80dM2aY_1\tperson\nCpxxxHYsJy8_0\tperson\nCp0lT2opaL0_1\tperson\nCqANE5ByBvY_0\tperson\nCqDjHjvw8T0_0\telephant\nCqDjHjvw8T0_1\telephant\nCqVeLNnA0vk_0\thorse\nCqZz9FnLLjk_0\tknife\nCqkhrld_7LU_0\tperson\nCqzahbOVzO4_0\tperson\nCq02-pFNn6w_0\tmotorcycle\nCq02-pFNn6w_1\tmotorcycle\nCq4KAVAWq7g_0\tperson\nCrAxPJajbcs_0\tairplane\nCrCNqDd18fw_0\tumbrella\nCrUmEDCjFtU_0\tperson\nCrUmEDCjFtU_1\tperson\nCraDHWuN4Q0_0\tperson\nCrgMhrCYmOo_2\tmotorcycle\nCriTKYemGmo_0\tperson\nCrmzwYKpLAY_0\tumbrella\nCrn24ZKAP1k_0\tperson\nCrsjxpJoY5Q_0\tperson\nCru8KBJqhng_0\tperson\nCrz3l2CEDzA_0\tperson\nCr0SWcS1qX0_0\tcow\nCr_B3I0QPEQ_6\tairplane\nCsM_GTD0TZE_0\tperson\nCsPLGd2dgl0_1\tairplane\nCsTntmE8EWs_0\tperson\nCsa542XNEXo_0\tperson\nCsfkuwD6-nA_0\tperson\nCsh_4yR8bFk_1\ttruck\nCsh_4yR8bFk_2\ttruck\nCsii4vkefsM_0\tboat\nCsii4vkefsM_2\tboat\nCsw3kLrhjoM_0\tperson\nCs38JY7Gqjo_3\tskateboard\nCs-Vx_ym23o_1\tbicycle\nCtC2yC9NGTk_0\tbird\nCtD4wnIU0Pw_0\tbicycle\nCtF9IxfLhaQ_1\tperson\nCtF9IxfLhaQ_2\tperson\nCtF9IxfLhaQ_0\tperson\nCtHIoS1lGKA_0\tperson\nCtLVK2j48gA_0\tperson\nCtO5dmTdzYQ_0\tperson\nCtPEAoFPnE4_0\tperson\nCtQPPKpIEIc_0\tperson\nCtTcyoZvRvU_2\tskateboard\nCtUPPSKU8cE_0\tbus\nCtVUqIFqqr8_2\tbus\nCtYDJRkhtpg_1\tumbrella\nCtYDJRkhtpg_5\tumbrella\nCtfPPnpBKHs_2\tbird\nCtipU0GHAEo_1\telephant\nCtjTAe-FFe4_3\telephant\nCtkjh9fntpQ_0\tbird\nCtkjh9fntpQ_4\tbird\nCtkjh9fntpQ_5\tbird\nCtkjh9fntpQ_2\tbird\nCtkjh9fntpQ_3\tbird\nCtnjw80kgcw_0\tperson\nCtxK3wGlqx0_2\tmotorcycle\nCt1QrXUgBGg_0\tperson\nCt1QrXUgBGg_1\tperson\nCt8S9nC7sfk_1\tperson\nCt870xrnBGU_0\tperson\nCuDfCpgoIjg_6\tboat\nCuGfRQMwYd8_0\tcat\nCuHF9Hd0uwI_0\tperson\nCuIkNejeZrY_0\tcat\nCuUJUrjEcc4_0\tperson\nCuWdZPYMLww_0\tperson\nCvDW2A8hD78_0\tperson\nCvRJwKt7FfY_1\tskateboard\nCvVVS4SUiuw_1\ttrain\nCvZaA28QUK4_1\tknife\nCvajmAL3sjQ_0\tperson\nCvda-hutmbg_0\tdog\nCvqylkq9fwI_0\ttruck\nCvxsoaCV1_8_0\tperson\nCvzsX_s6tek_0\tperson\nCv2T8U0uQcQ_2\tperson\nCwAdBrBzIcA_0\ttruck\nCwBiMh4zHWQ_0\tperson\nCwFcmrnz1yw_0\telephant\nCwFcmrnz1yw_1\telephant\nCwFcmrnz1yw_2\telephant\nCwR2tJptu0Y_2\tmotorcycle\nCwVLRawns04_0\tperson\nCwVTSONqnVw_6\tknife\nCwnHi50fuuQ_0\tperson\nCwnHi50fuuQ_1\tperson\nCw22-zpE1UY_0\tperson\nCw3iLs4yV4g_0\tperson\nCxFRYsUCyWc_0\tcat\nCxH8vGqLVM0_0\tbicycle\nCxH8vGqLVM0_1\tbicycle\nCxH8vGqLVM0_3\tbicycle\nCxH8vGqLVM0_6\tbicycle\nCxJ7Uww1mSk_0\telephant\nCxN5CG94Q5Q_1\tairplane\nCxN-YEErXFg_0\ttrain\nCxPyIeBtRec_2\ttruck\nCxWaiU0rF9g_1\tcow\nCxWaiU0rF9g_0\tcow\nCxXdw0Cqr4Y_2\tairplane\nCxa8q3QXoRs_0\tperson\nCxgqklOxSfo_0\tairplane\nCxgqklOxSfo_2\tairplane\nCxnCTBBNWCY_0\tperson\nCxnCTBBNWCY_1\tperson\nCxoZT0--IBo_0\tperson\nCxooWldim98_0\tperson\nCxs-xZDDZWw_0\tperson\nCxug83tjWyc_0\thorse\nCxzJV_HYpAc_0\tairplane\nCxzJV_HYpAc_1\tairplane\nCx0XeFKQ06o_1\ttrain\nCx7ZY8oqOmE_10\tbicycle\nCx7ZY8oqOmE_6\tbicycle\nCx7ZY8oqOmE_8\tbicycle\nCx9efnltcUY_0\tperson\nCyE1kuECzfg_0\tperson\nCyH0woBc0zU_0\tboat\nCyI7nyp65bI_0\tperson\nCyI7nyp65bI_1\tperson\nCyLLTzV_lAg_0\tcat\nCyOXSqLm7ao_1\tperson\nCyb4-vF1WMM_0\tairplane\nCyedl__okwE_0\tperson\nCyedl__okwE_1\tperson\nCynfaDsQ1AI_0\tzebra\nCysFfEkdDT4_0\tbear\nCytiPd_Wbkg_0\tairplane\nCytiPd_Wbkg_1\tairplane\nCyvInNqvQyE_0\ttruck\nCy002CigJRQ_0\tperson\nCy_hvqOd0RY_0\tknife\nCzFRG22Jmvs_0\tcow\nCzHeIzQZUEg_0\tperson\nCzNFSb4N6p8_0\tperson\nCzQ03Z7Dv5U_2\tskateboard\nCzQ03Z7Dv5U_3\tskateboard\nCzQ03Z7Dv5U_6\tskateboard\nCza2-_wwpd4_0\tperson\nCza2-_wwpd4_1\tperson\nCzcwXF0Z1TQ_0\tcow\nCzt8McI8UTE_0\tperson\nCzze2Jy6Ook_0\tcat\nC0Tk6QryTA0_0\tbus\nC0Tk6QryTA0_1\tbus\nC0a9pkujXQg_1\tperson\nC0lvs-UEqKs_0\tperson\nC0pOQ36uosU_0\tperson\nC0pOQ36uosU_1\tperson\nC0qbh7OJTHI_2\tskateboard\nC0tGKqnFyZA_0\tperson\nC0xTDmlUYSA_0\tperson\nC0xZYHsXNws_0\tperson\nC0xZYHsXNws_1\tperson\nC0xjvq51pVA_0\thorse\nC0xl46ieUxg_0\tskateboard\nC0zUOQoeQrA_0\tperson\nC0zrmcMf8D4_0\tbird\nC05P4mCw-xA_0\tbear\nC1DCcNlUQDk_0\tboat\nC1DX9TjKTrE_0\tbus\nC1MfcNYih9c_1\tperson\nC1RCXQFjvvc_1\tperson\nC1RCXQFjvvc_0\tperson\nC1bdSMUVy2Q_1\ttruck\nC1bdSMUVy2Q_0\ttruck\nC16ZlJRDfUc_0\tbird\nC16_rFYBwUA_0\tperson\nC17jwrOnSCI_0\thorse\nC19rR4b8CSQ_0\tdog\nC1_gk-bIL6Y_0\tairplane\nC1_tauCAYjs_0\tperson\nC2GvHXU8mIc_0\tperson\nC2HZBTrCAf8_0\thorse\nC2Hcs2itPTc_1\telephant\nC2H_P7MX3zw_0\tbus\nC2H_P7MX3zw_1\tbus\nC2IJYHPWHJM_1\tcow\nC2K7zu49SKw_0\tperson\nC2K7zu49SKw_1\tperson\nC2LdkQMjxJk_0\tcow\nC2ROFMcXam4_0\tcat\nC2S4CV9mnC0_0\ttruck\nC2VjZHe3ID8_0\tperson\nC2r9VGslxTE_0\tperson\nC2v7hcs3Ax0_0\tzebra\nC2zRn25TBOo_1\tairplane\nC2zRn25TBOo_2\tairplane\nC2zRn25TBOo_4\tairplane\nC2zRn25TBOo_6\tairplane\nC23ZGYnWhgo_0\tperson\nC26HiGgIjYg_0\tperson\nC2-glFtt9Vw_0\tumbrella\nC3LbuiUjzvo_0\tcat\nC3LbuiUjzvo_1\tcat\nC3LbuiUjzvo_2\tcat\nC3Qu-KUydyg_1\tcow\nC3UX9hrlLeE_0\tperson\nC3YcvZKgCgY_0\tperson\nC3terpXzPm4_0\tperson\nC3z1zbkmwdU_0\tbird\nC30B6KXg9vs_0\tperson\nC3399zrSQ6A_0\thorse\nC34_EkCWJaU_0\tmotorcycle\nC4HzsadhLW0_0\tboat\nC4QHknuNLYI_0\tperson\nC4RAj-omUMo_0\tperson\nC4W_g9eheB8_0\tskateboard\nC4XGGPoj4q8_0\tperson\nC4dV8SPq6Mk_0\tperson\nC4e-5QS1FmU_0\tumbrella\nC4e-5QS1FmU_1\tumbrella\nC4irKghQYTE_0\thorse\nC4jghf6KKYI_0\tskateboard\nC4vFHmzTY-s_0\tcat\nC4xJ3_Wrrn4_0\ttrain\nC4yVuAqcr0U_0\ttrain\nC409K0fAxiM_0\tperson\nC42397qio9c_1\tskateboard\nC4317zxtzKA_0\tperson\nC4-k1XW5O3U_0\tdog\nC5DAyL_gEQU_0\tcow\nC5GJx1VFRm8_2\tcow\nC5HT9La1jDY_0\tperson\nC5JobuZa590_0\tskateboard\nC5MJ8fSfmLw_2\tbear\nC5dPwnswp8Q_0\tcat\nC5jo-fCBqmA_0\tperson\nC5jo-fCBqmA_1\tperson\nC5jo-fCBqmA_2\tperson\nC5pop0SvnOM_0\tperson\nC5r41vkLsKE_0\tperson\nC5sXGZRLfmU_4\ttruck\nC5sXGZRLfmU_6\ttruck\nC5umaWklWFQ_0\tboat\nC5ybfGh51LM_0\tcat\nC55z9Fe6H7A_0\tdog\nC56Bp4toMG8_0\tperson\nC6NYuB7zIzs_0\tperson\nC6NYuB7zIzs_1\tperson\nC6XCgppHkHA_0\tbus\nC6Yy8uEd0bQ_0\tperson\nC6aB6M0DHrU_0\tperson\nC6cOmWIisxU_0\tperson\nC6eN6sMtuXY_1\tboat\nC6gNbZUU7xg_0\tperson\nC6ia-W4TV1U_0\thorse\nC6nHtSy67OY_0\tcow\nC6n6ECY5h84_0\tcow\nC6qWzx58kxo_0\telephant\nC6qWzx58kxo_2\telephant\nC6rqmPvlIlI_0\tperson\nC6upTeuDG4E_1\tskateboard\nC6xv6Wmy97M_0\thorse\nC62nD-_VXpM_0\thorse\nC62nD-_VXpM_1\thorse\nC66OM90TFXI_0\ttrain\nC66OM90TFXI_1\ttrain\nC66z-I_UHqQ_0\tairplane\nC6_p7BXwCTA_0\telephant\nC7CB2A_bxa0_0\tperson\nC7COsB9pcOQ_0\tperson\nC7CXGBdoJWo_0\tcat\nC7KZnM_0j8s_0\tperson\nC7QYoT22ZYo_0\ttrain\nC7W0oxkg-nU_0\tbicycle\nC7kKR6pqYzw_0\thorse\nC7to6tRsC9U_0\tperson\nC72k6hv1NPM_1\tcow\nC72k6hv1NPM_0\tcow\nC7-sqpILAXM_0\tperson\nC7-sqpILAXM_1\tperson\nC7_HhvBNDSw_0\tperson\nC8ETc2K6ef0_0\ttrain\nC8G_kcqjspU_0\tknife\nC8IE7aLZvIA_0\tperson\nC8IUB4Opf44_0\tperson\nC8IUB4Opf44_1\tperson\nC8PqOHn0izQ_6\tbird\nC8Zex-ptYyk_0\tperson\nC8daRmtyPo0_0\tperson\nC8fcFW4HKGs_0\tairplane\nC8mEWe-TWYs_0\tknife\nC8n1dTEDWvk_0\tskateboard\nC8ukXeoRjbI_0\tcow\nC9Zq_rDHwgg_1\tcow\nC9dD6oS_Zs0_0\tperson\nC9je005HOlA_0\tbus\nC9jqFBMRyPs_1\tperson\nC9vG5qPPhzE_1\ttrain\nC9wgqGACPso_2\telephant\nC95TX0IOPa8_0\tskateboard\nC97oHqKqdBk_0\tperson\nC97t3TGT2oc_0\tperson\nC-AoVBwcBUw_0\tperson\nC-FX5hgFDd0_2\tperson\nC-Q9RDsPyOw_0\tperson\nC-Q9RDsPyOw_1\tperson\nC-S34-Drg7M_0\tcow\nC-TWHpbtVNY_1\tperson\nC-WsGZQoLx0_0\tboat\nC-cL2hzThKI_3\tairplane\nC-cL2hzThKI_6\tairplane\nC-omy9mzD7E_0\tperson\nC-q9nO8X1rs_0\tperson\nC-seg-BCK0U_0\tbird\nC-v3Ttrvuo8_0\tairplane\nC-38hraIyOs_0\tperson\nC-47EdafspI_1\tairplane\nC-54wttM4AA_0\tperson\nC-9LBJqCMm0_0\ttrain\nC-_ebeJtjyE_0\tperson\nC_BX3dg-lc4_0\tperson\nC_DOGAVETwk_1\tbird\nC_EMJm-Z2I8_1\tbird\nC_EMJm-Z2I8_2\tbird\nC_EwPB6zgIA_0\tperson\nC_EwPB6zgIA_1\tperson\nC_GnC_IEwJM_0\tperson\nC_GnC_IEwJM_1\tperson\nC_HBU7EUsoE_1\tperson\nC_HBU7EUsoE_0\tperson\nC_IjqR1NOxw_0\tperson\nC_POS7ndKw0_0\ttruck\nC_PXq5TsPRQ_1\ttrain\nC_TfufSsuEU_1\tperson\nC_VePcGhr10_0\tknife\nC_aP0fKyudQ_0\thorse\nC_aYcFttRC8_1\tperson\nC_aYcFttRC8_0\tperson\nC_cUky_0p2Q_0\tcow\nC_uGdKk79X0_1\tperson\nC_ykabkQ2U0_2\tperson\nC_2EFIuyDSA_0\tperson\nC_2p_N8Kvpk_0\tperson\nDAJkfl5W8Vc_0\thorse\nDANymtBuoIs_0\tdog\nDAOBGjTf7xI_0\tperson\nDAQ9-YTrpp0_0\tcat\nDAU6UNdxbRI_0\tperson\nDAn4fH-1Ucs_0\tperson\nDApkEgrJX0Q_0\tperson\nDAqHnZA6tBQ_0\ttruck\nDAtSTeTmg8I_1\thorse\nDAwdyKiZyzM_0\tperson\nDA1bsx2RsGA_0\tperson\nDA1bsx2RsGA_1\tperson\nDA4LF3u2VTI_0\tcar\nDA5X-ADHM1w_0\tperson\nDBFMXaS9LRg_1\tumbrella\nDBLaZSSthxo_0\tperson\nDBR0l2rW6Ew_0\thorse\nDBVbRonJkb8_0\tperson\nDBaAVcI4Ftw_0\tperson\nDBaAVcI4Ftw_1\tperson\nDBmVOTuCJ8Q_0\tperson\nDBvOm1qnWrA_0\tcow\nDBySPDEqsO8_0\tperson\nDB1Cvyyike0_0\tairplane\nDB3lsf7fD84_0\tdog\nDB6TJh9r1Dw_0\tperson\nDCE8Dg_ycjo_0\ttruck\nDCHv6sxfCAs_0\tperson\nDCPk1uyVNlU_0\tperson\nbmHyfvCZWsg_0\telephant\nbmHyfvCZWsg_2\telephant\nbmHyfvCZWsg_3\telephant\nbmLLdC88ohM_0\ttrain\nbmMB6Mr1uKI_1\tperson\nbmPhh5NpV7U_0\tperson\nbmQbHpw-4fY_1\tbird\nbmUFMo3pjyo_1\tairplane\nbmhSkbKIg0U_0\tcow\nbmhSkbKIg0U_2\tcow\nbmhSkbKIg0U_1\tcow\nbmhfPSKCY8I_1\tdog\nbmqPIwMWGj4_0\tperson\nbmuIwo4T6rk_0\tcow\nbmvh7yxyWcY_1\thorse\nbm2eU4uLgQE_0\tskateboard\nbm8MRDfmerA_2\tperson\nbm8MRDfmerA_0\tperson\nbnOUoCjxIvA_0\tbird\nbnWQnn3a2xE_0\tcat\nbnZwZd6xdHY_0\tperson\nbnc1LyPUCLg_0\ttrain\nbnfN43NoRbA_0\tperson\nbnqbJR2oSPk_1\tperson\nbnqbJR2oSPk_0\tperson\nbnsuTEBQy44_0\tperson\nbnw6G0Prvc0_0\tbus\nbnyALwWqo4Y_3\tcow\nbn8epY7auRE_1\tperson\nbn8epY7auRE_0\tperson\nbn9y-iIDoUU_0\tperson\nbn9y-iIDoUU_1\tperson\nboHeJDDjRf4_1\tperson\nboIKCyPzxr8_0\tbicycle\nboNYwNYmh1E_0\tcat\nboVVWwoXNDw_0\ttruck\nboZ6xZrNpzc_0\tperson\nboadjC5Lci8_0\tperson\nbocql7vYA4o_0\tbus\nboja3N4XQVo_0\tperson\nborBr_AiOmM_0\tperson\nbornws-twE0_4\tairplane\nbosTHwpZ8Ao_1\tdog\nbo7P3hYkeog_0\tperson\nbo9sUjViaHQ_0\tperson\nbo-qyHCKssw_0\tbird\nbo-qyHCKssw_4\tbird\nbpI4nUgSqbE_2\tperson\nbpI4nUgSqbE_0\tperson\nbpI4nUgSqbE_1\tperson\nbpJNbivFLKE_0\tskateboard\nbpdgYRz5hPs_0\tperson\nbpiM4FHf540_0\tperson\nbpjVhXyB4M0_0\tairplane\nbpjVhXyB4M0_2\tairplane\nbpsMni7yj3M_0\ttruck\nbps3HXPsekI_0\tbear\nbpu9NYWxcEE_0\tskateboard\nbpyH8PRkBQM_0\tperson\nbp1zW8j_ajo_3\tbus\nbp26IdTs4XE_0\tperson\nbp3rDJju8n4_0\tperson\nbp3xwI_FfOI_0\telephant\nbp6K7EUtORo_0\tcow\nbqBtysMz94c_0\tperson\nbqEmBkEnR1c_0\tperson\nbqGkchWbZYE_0\tcar\nbqJcZwUB1Go_0\tperson\nbqPKigpT9AY_0\tperson\nbqQk37pcpVA_0\tperson\nbqaeUBH6J3Y_0\tperson\nbqhQG8t_2XA_0\tperson\nbqjcNzWyaC4_1\tairplane\nbqoG__OO_5g_0\tperson\nbquLxAXnaww_0\ttruck\nbqwFWjwCZas_0\ttruck\nbq6n9q-Qpv8_0\tperson\nbq6870eY1a8_7\tbicycle\nbrDq8RFzVTo_1\ttruck\nbrIIDuCmk-E_0\tperson\nbrLbzZeRz1o_0\tperson\nbrLeJHMfMXQ_0\thorse\nbrNR68fKeMk_0\tbus\nbrWg7FAeBEA_0\tperson\nbrZj8bv9oxY_1\tperson\nbrhA4NqjrgQ_0\thorse\nbrh4hrmrs0Y_1\tskateboard\nbrpbaoTNe4s_4\tbicycle\nbrpbaoTNe4s_0\tbicycle\nbr3e--6oH8Y_0\tairplane\nbsGmFJGua4w_0\telephant\nbsR9KXIHlCM_0\tumbrella\nbsVBX8u9pW8_0\tbus\nbsXpGvnXpmk_0\tcow\nbsa-G_HEllM_0\tperson\nbsbzpk_ejJk_0\tperson\nbsbzpk_ejJk_1\tperson\nbsgdfqE8ySk_0\tperson\nbspbqjb3wAg_0\tperson\nbsv_swJ9_KY_0\tknife\nbs2FVeXKiYQ_0\tperson\nbs3u00S0eu0_0\tperson\nbtI7FYFXsfI_0\tperson\nbtL1Ptjq7pM_0\tmotorcycle\nbtMmnZdL_uQ_0\tperson\nbtO34shZMZo_0\thorse\nbtSyjckocDA_0\tperson\nbtVQJbFp8Dw_0\tcow\nbtdt4lysW6U_0\tdog\nbtihrVidTTg_0\tcat\nbtk27mnJY_A_1\tperson\nbtrdQ6N7QJc_0\ttruck\nbtrdQ6N7QJc_1\ttruck\nbtsT4XRF0nI_2\tcat\nbtul_U3BMKI_0\tbus\nbtvg47tz3Ps_1\tperson\nbtvg47tz3Ps_0\tperson\nbtz7EwI5rYY_0\tperson\nbt75khQG0w8_1\tbird\nbuFiFNHj41w_0\tperson\nbuOqwfPnqkI_0\tcow\nbuRfiT3Mq6Q_0\tbear\nbuSgd-PrRmA_0\telephant\nbuSgd-PrRmA_2\telephant\nbuSgd-PrRmA_6\telephant\nbuSgd-PrRmA_8\telephant\nbuWf8ffXWTs_0\tperson\nbue8SUcqigE_0\tcat\nbugTv6zkE0Q_0\tperson\nbuh8d20UxNw_1\tairplane\nbulc7gZ_YQY_0\tboat\nbuqR3s7EZeQ_0\tperson\nbuq0_IIvQqc_0\tperson\nbusJdrzEeJU_0\ttruck\nbuyJwHRaSYc_0\tperson\nbuyJwHRaSYc_1\tperson\nbuzd3FYmwQQ_0\tbus\nbu6QE_qf8fw_0\tskateboard\nbvLQLfRAI9s_0\tperson\nbvW_ZJYSOLg_0\tperson\nbva98_iD8pI_0\tperson\nbvc6dUfKFpM_0\tskateboard\nbvg-QHsENSc_0\tumbrella\nbvnuyMz5Pk4_1\tperson\nbvnuyMz5Pk4_0\tperson\nbvqPJIDHXHI_0\tperson\nbvqPJIDHXHI_1\tperson\nbvwJ75OkrTk_0\tperson\nbvwJ75OkrTk_1\tperson\nbvwwPOK7lN8_0\tskateboard\nbvw4raRDAys_0\tperson\nbvxAWBUG1zk_0\tdog\nbv6ASjMljew_2\tperson\nbv6ASjMljew_0\tperson\nbv6ASjMljew_1\tperson\nbv7NOTxSDhg_0\tperson\nbv7lroHoMyE_0\tperson\nbv8CHN4kwyM_0\tperson\nbv9J7oplKjY_1\tbird\nbv-ps8hofSY_0\tperson\nbv_rrakMnsY_0\telephant\nbwB-cfh8UFY_0\tcat\nbwIBXBulTRg_0\tperson\nbwM3RKdZAd0_1\tairplane\nbwM3RKdZAd0_2\tairplane\nbwSSE1XeKkg_0\tperson\nbwSSE1XeKkg_1\tperson\nbwTJKRhesM4_0\tperson\nbwZEDD10b44_0\tperson\nbwd7bbxG4Kw_1\tperson\nbwjUOg-CI1E_0\thorse\nbwotbTZHoPA_0\thorse\nbwotbTZHoPA_1\thorse\nbwv4Q2VqV5A_0\tbus\nbwv4Q2VqV5A_3\tbus\nbwwud6bxEeY_3\telephant\nbw1HepCVmL8_0\tperson\nbw3c96BQrRU_0\tcar\nbw3c96BQrRU_1\tcar\nbw96DHOgI1I_0\tairplane\nbw_opOTzI6k_0\tdog\nbxRX_05rH9Y_0\tbus\nbxXWi1nvXjI_1\tbird\nbxYeOYlqDPc_0\tcow\nbxaC_opt7IU_0\ttruck\nbxjIDI2ZkO4_0\tcat\nbxnu-AITJt4_0\tperson\nbxoclb4AFb8_0\tperson\nbxsI00qOi6c_0\tperson\nbx0h8tvY6kw_0\tperson\nbx6BVBAcBtM_0\tperson\nbx6BVBAcBtM_1\tperson\nbx7PtvZe6O8_1\tairplane\nbx7-RzWnIe4_1\ttruck\nbyDPGQJdn1s_0\tperson\nbyQIRt1JF9I_2\tdog\nbyQIRt1JF9I_0\tdog\nbyQIRt1JF9I_1\tdog\nbycJD4U6rIs_0\tbird\nbyehVoG0_eg_0\tperson\nbye0FepI8wg_0\tbird\nbyi-4Qx3vx4_0\tperson\nbykN9ap_QTw_0\tbird\nbyvddKaL_kw_0\tperson\nDCRIRGz2xhc_0\tperson\nDCRIRGz2xhc_1\tperson\nDCUcxHDfYiE_1\tcow\nDCUvhnZnRGQ_0\thorse\nDCXrBMEdS4E_1\tperson\nDCrv8CyK9zM_0\tbus\nDCx698xXxjs_0\tperson\nDC0PPRyXlD4_0\tperson\nDC4ZTdVoj2o_0\tboat\nDC5fRZmUZV8_1\tairplane\nDC8lKdla6rE_0\tperson\nDC8lKdla6rE_1\tperson\nDC_Kd2iaw9U_0\tperson\nDDZILIDFFXc_0\telephant\nDDd8CfnxkYM_0\tperson\nDDgtm9B7Yj0_0\ttrain\nDDhlugZ-vro_0\tperson\nDDhlugZ-vro_1\tperson\nDDjUzAM4mLE_0\tbus\nDDjUzAM4mLE_1\tbus\nDDjUzAM4mLE_2\tbus\nDDjUzAM4mLE_4\tbus\nDDoBBLQQ1Mg_0\ttrain\nDDtWIKexWpM_0\tskateboard\nDDw2iF2W4HI_0\tbird\nDD4YGjlBsHc_0\tboat\nDD844YVVMXE_6\tbicycle\nDD844YVVMXE_0\tbicycle\nDD844YVVMXE_1\tbicycle\nDD844YVVMXE_3\tbicycle\nDD844YVVMXE_4\tbicycle\nDD844YVVMXE_5\tbicycle\nDEHHjz2xiz4_0\tperson\nDEI-qJD08Pc_0\tperson\nDELUfY3m37k_0\tperson\nDEVUyfQt_G0_0\tcow\nDEVUyfQt_G0_3\tcow\nDEVUyfQt_G0_1\tcow\nDEXhh5rt_24_0\tmotorcycle\nDEXhh5rt_24_1\tmotorcycle\nDEZHoMWiFBQ_1\tperson\nDEau5L3A9S0_0\tperson\nDEjPKQLASJg_0\tumbrella\nDEtj0Fb-Jbo_0\tskateboard\nDEuYWYNXbw4_0\ttruck\nDE3kl7rbakE_0\tskateboard\nDE6z5oB-0vo_0\telephant\nDFBlkKPYtl0_1\tcow\nDFBlkKPYtl0_0\tcow\nDFI7_dtUb0U_1\tgiraffe\nDFI7_dtUb0U_3\tgiraffe\nDFRmdyjR_Dc_0\tgiraffe\nDFb4KWUX31Y_0\tperson\nDFpZ6f1iWT4_0\tperson\nDFwPVEPK4-Y_0\tcat\nDFzgqOHlnAk_0\tperson\nDGC_pivLAEE_0\tperson\nDGMfSMlhL4w_4\telephant\nDGMfSMlhL4w_6\telephant\nDGMfSMlhL4w_13\telephant\nDGMfSMlhL4w_17\telephant\nDGM9CDF3ks8_2\tmotorcycle\nDGM9CDF3ks8_0\tmotorcycle\nDGM9CDF3ks8_1\tmotorcycle\nDGbZYKPp7XI_0\tperson\nDGc9VSWQUyQ_2\tperson\nDGc9VSWQUyQ_1\tperson\nDGp5vBVf28g_0\tperson\nDGsQAjKXPBw_0\tcat\nDGs0ZHnAtkg_1\tperson\nDGs0ZHnAtkg_0\tperson\nDGvsndSWlBw_0\telephant\nDGx5aC4h8wg_0\thorse\nDGygUuHcJhs_0\tperson\nDGygUuHcJhs_1\tperson\nDG8TJBoerZ0_1\tperson\nDG8TJBoerZ0_0\tperson\nDG93jIsco3E_0\tperson\nDG93jIsco3E_1\tperson\nDHB_RgHOHdo_0\tumbrella\nDHB_RgHOHdo_1\tumbrella\nDHLK8xDGwL0_2\tknife\nDHLg5KzzoOM_2\tcow\nDHLg5KzzoOM_0\tcow\nDHPWnuYI2qA_0\tperson\nDHSGQLguGZ4_0\ttruck\nDHdFVfp7SvM_1\thorse\nDHl_QoiyZ2I_1\tperson\nDHl_QoiyZ2I_2\tperson\nDHl_QoiyZ2I_0\tperson\nDHqrGwHgnAA_0\tperson\nDHr77uGYi-g_0\tdog\nDHsorh6ngMI_0\tumbrella\nDHs1KtWx2n4_0\tperson\nDH0OVsYB2vs_0\tperson\nDH5nSZZ6uJE_0\tumbrella\nDH_wEdP1Glk_2\ttrain\nDIFEQ3rorSw_0\tperson\nDILtO1oyoCY_0\tperson\nDIOuJC_mv_k_0\tperson\nDIO8l6DAJX0_0\tperson\nDIO8l6DAJX0_1\tperson\nDIP8d1YC6vM_0\tperson\nDISU2i6bJqs_0\tcow\nDIaTXSXAfJM_1\tperson\nDIaTXSXAfJM_0\tperson\nDIpJyhb8gzw_3\tmotorcycle\nDI7rj5AAYEE_0\telephant\nDI801ysby74_0\tknife\nDJD4Xlf0eNg_0\tperson\nDJKFzJe6KAk_1\tskateboard\nDJKokwprK90_2\tskateboard\nDJLSHLPE0po_0\tperson\nDJQ8goQ4xyo_0\tperson\nDJV-ft_10HY_1\tperson\nDJjjrdYts2s_0\telephant\nDJ4oQ03HqyE_0\tbicycle\nDKBIz_MLIpw_2\tknife\nDKC58UBq-0w_1\tairplane\nDKEmSml-t4c_1\tperson\nDKEmSml-t4c_0\tperson\nDKHCjzNZE3U_0\telephant\nDKHCjzNZE3U_4\telephant\nDKICHseWnGQ_0\tperson\nDKJ3As_9Mlw_0\tperson\nDKKsGGUWero_0\tperson\nDKLxBVm3HHk_0\tairplane\nDKMUARFnh2Q_0\tperson\nDKShwn6Xk8w_0\tcat\nDKZ21QA0lBM_1\tperson\nDKcpPg_tEUU_0\tskateboard\nDKj3fFeAaL8_0\tperson\nDKq7d2C6gOI_0\tmotorcycle\nDKxIadOj4D0_0\thorse\nDKyckH3XY8Y_0\tbicycle\nDKydJWySeUw_0\tcar\nDLKE31mt2Qc_0\tbird\nDLLrkv1aF-k_0\ttrain\nDLMDzB4XBPg_0\tperson\nDLPmEX5pwY0_0\tcow\nDLT57E3vm98_2\ttruck\nDLct7_2tyWI_0\tperson\nDLd6kxxgSUM_0\tperson\nDLkx4w5oteM_0\tperson\nDLmCj6q5vD0_0\tperson\nDL3V2mhMX7M_0\tskateboard\nDL3eQSTbZ9Y_0\tskateboard\nDMB6Mr7lTSI_0\tperson\nDMEXGsc-PaU_0\tperson\nDMFEU87_IrU_2\tboat\nDMR4kX1M_zk_2\telephant\nDMR4kX1M_zk_1\telephant\nDMTP7OyjdJ4_4\tbus\nDMT_n1VJG80_2\tbird\nDMbwyGKLF4c_0\tperson\nDMb-AjUXKe8_0\tgiraffe\nDMiFC67o2P0_1\thorse\nDMiFC67o2P0_2\thorse\nDMiFC67o2P0_3\thorse\nDMn1JpU6MBE_0\tperson\nDMn-kaSNd5Q_0\tperson\nDMuLn7wJTcc_0\tperson\nDM7c57qvjgs_0\tperson\nDNAMMWkSfLY_11\tumbrella\nDNAjFU24eK8_0\tboat\nDNB4bgEP-8Y_0\tperson\nDNGlLqzJF6Q_0\tperson\nDNGlLqzJF6Q_1\tperson\nDNOZeC0gZzs_0\ttruck\nDNXuVh_X_qY_1\tperson\nDNXuVh_X_qY_0\tperson\nDNhOrRaOe2M_0\tperson\nDNul7ILzxkQ_0\tperson\nDNul7ILzxkQ_1\tperson\nDN0xWDfCAM0_0\tmotorcycle\nDN1ujoUaAKU_0\tperson\nDN1ujoUaAKU_1\tperson\nDN4TuB3csDg_0\tperson\nDN4e8ljPm1g_0\tbicycle\nDN5mGCGzOOY_0\tperson\nDN7FitWe9k8_0\tperson\nDN8yb60bxNc_0\tperson\nDOAU-JodN0U_1\tairplane\nDOAmtFxCuKA_1\tperson\nDODU9JghuAA_0\tcow\nDORauVZJhAU_1\tperson\nDORauVZJhAU_0\tperson\nDOhLqHOLbQY_0\tperson\nDOiUy3AGiKw_0\tperson\nDOiUy3AGiKw_2\tperson\nDOoTpSSHVho_0\ttruck\nDOoTpSSHVho_1\ttruck\nDOsVwDV787M_0\tbus\nDOuULWa1RKM_0\tperson\nDOvC_-Yrn5k_0\tcat\nDPAEt1AqwbQ_1\tcar\nDPCyQOQdLHE_0\tcat\nDPFO_O_f3hc_0\tcow\nDPIm8x0i2yo_0\tmotorcycle\nDPJ7ZSWY2Qs_0\tskateboard\nDPXJpAVtRfM_0\ttrain\nDPXJpAVtRfM_1\ttrain\nDPZi4DZaTmk_0\tperson\nDPZi4DZaTmk_1\tperson\nDPelBJ73uaU_0\tbicycle\nDPo9M61p8gI_0\tumbrella\nDPvxwOvedrQ_1\tknife\nDPz3CG4lD2Q_5\ttruck\nDPz3CG4lD2Q_6\ttruck\nDP2q1TrqjAE_0\tperson\nDP2q1TrqjAE_1\tperson\nDP6ZB5PxNfc_0\tperson\nDP-JZPR9HFc_2\telephant\nDQDV1Wr7qo8_0\tbear\nDQOglBZHFCs_0\tbear\nDQZiSQmMBnc_0\tbird\nDQcCfbTKP1s_1\tperson\nDQcCfbTKP1s_2\tperson\nDQcCfbTKP1s_0\tperson\nbywgcqNg6RU_2\tcar\nby7PLb7MqM0_0\tmotorcycle\nby_OJvQqlKE_0\tperson\nbzKVRbSQpZE_0\tknife\nbzLdvZQAWgA_0\tperson\nbzO5MBTTrdQ_0\tperson\nbzRELZo9WMU_2\tdog\nbzRELZo9WMU_0\tdog\nbzZgsynjAGk_0\tcow\nbzfE3U02_44_1\tperson\nbzfE3U02_44_0\tperson\nbzimWzymgu0_0\tperson\nbzquVP0NUms_2\ttruck\nbz5Ht4jyT0k_0\tbus\nbz66OedbeoI_0\tperson\nb0C_2T7-IfU_0\tcat\nb0GlXXGkfRQ_0\tperson\nb0GlXXGkfRQ_1\tperson\nb0HXAfyZ7Sk_1\tperson\nb0Q3EfK70fg_2\tairplane\nb0Q3EfK70fg_4\tairplane\nb0Q3EfK70fg_5\tairplane\nb0Q3EfK70fg_6\tairplane\nb0a7ewqE8S4_0\tdog\nb0nOQfZSaUo_0\tperson\nb0nt17hBmDw_0\tboat\nb0qXUUs3-WE_1\tperson\nb0t8uuynzIM_0\ttrain\nb0xQRq8njAI_0\tcat\nb0z1nalEX08_0\ttruck\nb0-UOt-DT1A_0\tperson\nb1ETK4nP9ag_0\tdog\nb1EnXvOZQbQ_0\ttruck\nb1Gd5IWJBRI_0\tperson\nb1R3uk0VLc4_0\tperson\nb1SyeZsSk80_5\telephant\nb1SyeZsSk80_3\telephant\nb1UAPTD4s74_0\tperson\nb1UpjRRBrTw_0\tcat\nb1cpAYk99_U_0\tperson\nb1cpAYk99_U_2\tperson\nb1cpAYk99_U_3\tperson\nb17OiOMReIs_0\tperson\nb1-WFxZ7Lcs_0\ttruck\nb2DqNP9s4t0_0\tperson\nb2Tm_7DUimQ_0\tperson\nb2Y6KLIX5vE_1\tmotorcycle\nb2Y6KLIX5vE_0\tmotorcycle\nb2azzMxEH84_0\tmotorcycle\nb2fq5Ba1L8M_0\tperson\nb2fsE3wZfWM_1\tperson\nb2m2gaVpjNE_0\tperson\nb2qNS9qjYbE_1\tperson\nb2tlrwd_LIg_0\tperson\nb28pEbOSeUs_0\tdog\nb2_dSc2NxNI_0\tperson\nb3KP0d-WX38_0\tbicycle\nb3KP0d-WX38_1\tbicycle\nb3KP0d-WX38_2\tbicycle\nb3R6fHlRZu4_1\tbicycle\nb3R6fHlRZu4_3\tbicycle\nb3R6fHlRZu4_4\tbicycle\nb3SsKosfjOA_0\ttrain\nb3SsKosfjOA_1\ttrain\nb3SsKosfjOA_2\ttrain\nb3UOZHA5jRI_0\tcat\nb3Z1Ay2o1zQ_0\tknife\nb3bkNCYQbwc_0\tcow\nb3p-fFVYM4E_2\ttrain\nb3p-fFVYM4E_4\ttrain\nb3p-fFVYM4E_6\ttrain\nb3tgGsan2vc_0\ttruck\nb3x6f5xFPTQ_0\thorse\nb3x6f5xFPTQ_1\thorse\nb3x8Gwk4V8o_1\tperson\nb3x8Gwk4V8o_0\tperson\nb323CLKf_vM_0\tperson\nb34Cdm6l5_k_1\tairplane\nb34JUq19S0E_2\tmotorcycle\nb34JUq19S0E_0\tmotorcycle\nb34JUq19S0E_1\tmotorcycle\nb344je6lVYA_0\tairplane\nb35ihWGyz_4_0\tcat\nb37tPdAEkEw_0\tperson\nb39uBVwcm48_0\tmotorcycle\nb4E8uT19QkY_0\tbus\nb4E8uT19QkY_1\tbus\nb4FBbr4Pud8_0\tperson\nb4GXrkSKAdA_0\tcat\nb4HAPQ_xX5E_0\tperson\nb4HAPQ_xX5E_1\tperson\nb4KwBIif5OY_0\tcow\nb4KwBIif5OY_2\tcow\nb4KwBIif5OY_3\tcow\nb4KwBIif5OY_4\tcow\nb4UXSjdnqZ0_0\tperson\nb4Xn8--nfvI_0\tperson\nb4aEJNvYqtU_0\tbear\nb4j8lkkY_lE_0\tzebra\nb4tTUDVt6Gk_0\tperson\nb42WUwHAKPs_0\tboat\nb455pPKgTj4_0\tperson\nb5D9lQq3uf8_0\tbear\nb5IshxZjL7o_0\tmotorcycle\nb5NxbNaAo_8_0\tperson\nb5R1HVvc040_1\ttrain\nb5S8Db1Gu7I_1\tbicycle\nb5S8Db1Gu7I_3\tbicycle\nb5T_VSM7nbg_0\tmotorcycle\nb5nwFyniymA_0\tdog\nb5ud9dsnS1c_1\tperson\nb5ud9dsnS1c_0\tperson\nb51dSWD8MF4_0\telephant\nb59pPUKW_78_0\tcar\nb5-eXPHW4Mg_0\tperson\nb6AoStVIzkw_2\tperson\nb6IE2imnfp4_0\tperson\nb6MtzhRufn4_2\tskateboard\nb6MtzhRufn4_0\tskateboard\nb6RIavVJ660_1\tperson\nb6dVZMAHwro_1\tairplane\nb6gsIu7Pxbc_0\tdog\nb6ndIInoIzU_0\tboat\nb6xUAyNCbdY_0\tperson\nb61MghNCCTI_0\tperson\nb61MghNCCTI_1\tperson\nb65S2P2Pfms_0\tperson\nb66BE9WdQP0_2\tbicycle\nb7HqfhRNtAQ_0\tcow\nb7H_n_w2eFQ_0\tperson\nb7Igw_OO-P4_0\tperson\nb7LHlx86tk0_0\ttrain\nb7RYkf4oXv0_0\tskateboard\nb7WQe48-0NI_1\tgiraffe\nb7WQe48-0NI_0\telephant\nb7WiE1a8IAM_0\tperson\nb7go-l8jA5s_1\tboat\nb7hJ62ORLHc_0\tperson\nb7iLQoOKVrM_1\thorse\nb7ivqvv6s6A_0\tmotorcycle\nb7mawJlPASQ_0\tperson\nb7u0NZEc8OI_1\tperson\nb7ycKg8GLHA_0\tperson\nb71SThzfrDg_0\tbird\nb78PYqyYWZA_0\tperson\nb8LqaxvNRHw_0\tperson\nb8LqaxvNRHw_1\tperson\nb8VoRclgULc_0\tcat\nb8aWJIa4RFI_0\tgiraffe\nb8es8BWiC5c_1\tperson\nb8g4M9Yov8M_11\tbear\nb8g4M9Yov8M_3\tbear\nb8xtOCMwjJM_1\tbird\nb8x1qHT8nvE_2\tboat\nb8yA8bHlrtQ_0\tbus\nb8yqEFXS8Ck_0\thorse\nb82N91HYnUo_0\tknife\nb9O_mJTNj2A_0\ttrain\nb9SLHObDJzQ_0\thorse\nb9Y5tpPv-LQ_0\tcar\nb9iCmG9fIHc_1\tmotorcycle\nb9melHkIeV4_0\tbird\nb9oiO21MJh0_0\thorse\nb9oiO21MJh0_1\thorse\nb9u4WV9ft4s_0\tmotorcycle\nb9wwfAu5DCs_0\tskateboard\nb96WdT0DXKk_2\tbicycle\nb96WdT0DXKk_0\tbicycle\nb96WdT0DXKk_1\tbicycle\nb98Gs0d8AKo_0\tmotorcycle\nb9-xiVm1Xck_0\tskateboard\nb9-2bW13faI_0\tperson\nb-Cp0i6fBOU_0\tperson\nb-Cp0i6fBOU_1\tperson\nb-S7G5A0MNI_0\tperson\nb-T0AS7CuxI_1\tknife\nb-VYy9eEU6w_0\tperson\nb-W1PY33nQg_0\tperson\nb-hT8zKObfM_0\tperson\nb-hqwYjKCH8_0\ttruck\nb-i49sLOjBo_0\tperson\nb-i49sLOjBo_1\tperson\nb-mQajOHUAA_0\tperson\nb-mQajOHUAA_1\tperson\nb-mQajOHUAA_2\tperson\nb-ncxt38EFw_0\tperson\nb-wiIOBccF0_1\tperson\nb-x--HjbnpM_0\tknife\nb-5K7RwiHdw_3\tboat\nb-8ARNgk-Tw_0\tperson\nb-_FeNpM_wI_0\tperson\nb_B3oYiBWi4_1\tskateboard\nb_KBD-NL4Vo_0\ttrain\nb_ZVDwMrcEU_0\tairplane\nb_exMPY7gnM_0\tperson\nb_fR7aS10Z0_0\tbear\nb_h4xugql44_0\tumbrella\nb_kksCK6cbw_0\tcat\nb_n776bwyJo_0\tboat\nb_n776bwyJo_1\tboat\nb_vDLf3193s_0\tbus\nb_1TwBIgwKE_0\tcar\nb_7EvlxDWFc_0\ttruck\ncAARR6q3Qq8_1\tskateboard\ncAARR6q3Qq8_0\tskateboard\ncAFqK_6ltXw_0\tcat\ncAJsxlkMG_s_0\tdog\ncAJsxlkMG_s_2\tdog\ncAJsxlkMG_s_1\tdog\ncAKfCLDFg34_1\tperson\ncASL6wZ33vA_0\tboat\ncAYIECe6Bvs_0\ttruck\ncAnDryag2FA_0\ttruck\ncAqs3d9KNzk_0\tperson\ncArYvJEUdOg_0\thorse\ncA0HCmGOK84_8\thorse\ncBAG9pjaV70_0\tcow\ncBBDfwkH23A_5\thorse\ncBBDfwkH23A_2\thorse\nDQk3Xvbv57I_0\tcat\nDQqBXfTgqTE_0\ttrain\nDQ04rtHIqHQ_0\telephant\nDQ7GZOJxra8_0\tperson\nDQ-vQygnOx0_0\ttrain\nDQ-vQygnOx0_1\ttrain\nDQ-vQygnOx0_2\ttrain\nDQ-vQygnOx0_5\ttrain\nDQ-vQygnOx0_7\ttrain\nDQ_yyvagS0g_0\ttruck\nDRMoOpmUgn8_0\tperson\nDRO4MalcQFk_0\tperson\nDRSSiSNzV7Y_0\tperson\nDRXxJArWrQA_0\tperson\nDRaIGIiQXd0_1\ttrain\nDRaX3P2ysBk_0\tperson\nDRhRKwI26n8_0\tbear\nDRhRKwI26n8_1\tbear\nDRseWxukwaI_0\tperson\nDRsoi5DxAJk_0\tcar\nDRuDqkZ0zfE_0\tperson\nDRuDqkZ0zfE_2\tperson\nDRuDqkZ0zfE_1\tperson\nDRxLQ6we5YU_0\thorse\nDRybt0Cgr_U_1\tbird\nDR0QGL0n_wM_0\tperson\nDR4mzyMklY8_0\tskateboard\nDR82KhNzs1w_0\tperson\nDR-AMnnLCCQ_0\tcat\nDR_jo4aSqn0_0\tperson\nDR_jo4aSqn0_1\tperson\nDSAbzYpUW5w_0\tcow\nDSB9X3bgG2A_0\tperson\nDSCt67aveiw_0\ttruck\nDSCt67aveiw_2\ttruck\nDSEt02E1kJE_0\tperson\nDSM_BlK-ggg_1\tperson\nDSM_BlK-ggg_2\tperson\nDSRGbK9rPbo_0\ttrain\nDSWlLGL3xj8_0\thorse\nDSZkEwhJEI4_0\tskateboard\nDSaSooZZeAg_2\tbus\nDSn5-dKW_P0_0\tperson\nDSoRmFNRxiE_0\tperson\nDSoRmFNRxiE_1\tperson\nDSqy2MlVOxE_0\tperson\nDSq0q8dCuCw_0\ttruck\nDS5z-K8Cpzs_0\tperson\nDS-V_NKOawo_0\tknife\nDTBhYAFcQ94_0\tskateboard\nDTFg8SeWhbE_3\tskateboard\nDTYiSIRTXW8_0\tknife\nDTZkCYvGZ9E_0\tperson\nDTm5L6IAHC4_0\tperson\nDTnIC_Q8YoY_1\tboat\nDTs2uXh47Xw_0\tperson\nDTtejx1VYBs_0\tperson\nDTvjWj60ixI_0\tperson\nDTvzQwX0KRQ_1\thorse\nDT4KxrhD89E_0\tperson\nDT7TSCbFXek_0\tperson\nDUAhVOWkluQ_0\tperson\nDUAhVOWkluQ_1\tperson\nDUBzIIKht_w_0\tperson\nDUBzIIKht_w_1\tperson\nDUB3OOi7dQc_0\tperson\nDUHEv94Tyno_0\tperson\nDUHEv94Tyno_1\tperson\nDUHEv94Tyno_2\tperson\nDUPQ3fPhomY_0\tperson\nDUQa7q5NTQI_1\thorse\nDUZhPq4FiJM_1\tperson\nDUb6-VQcokc_0\tcat\nDUlYPwiuBrw_0\ttruck\nDUlYPwiuBrw_1\ttruck\nDUmKu-rc7jI_0\tperson\nDUwVOy7IYvA_0\tperson\nDUxGnuYB_GI_0\tcow\nDU1ww3ryP7s_0\tperson\nDU4acd1_vuI_0\tperson\nDU8jvzO9tEA_0\tzebra\nDVFfZw4HW3E_0\ttrain\nDVFfZw4HW3E_1\ttrain\nDVK9BrG_Y_8_0\tperson\nDVOFKTeh9BY_0\tperson\nDVgCgSDZVw0_0\tperson\nDVjOMylPUfU_0\tperson\nDVlEnd5Ra2Y_0\tperson\nDVm_-u6oWwA_0\tcar\nDVqsCPYrMrg_0\tperson\nDVqsCPYrMrg_1\tperson\nDV4GPAloBks_1\tperson\nDV4GPAloBks_0\tperson\nDV79-MpnE1Y_0\tperson\nDWQ0kmCIT0E_0\tperson\nDWZNfCg0W8o_0\tperson\nDWjj9U_lr30_0\tperson\nDWoRZEAFpUI_0\tperson\nDWqyeu4eovM_0\thorse\nDWuaB5j6-CQ_0\tperson\nDWwGWBcxL0k_0\tperson\nDW1iqzQEWkE_0\tperson\nDW4OTTF7Jc4_0\tperson\nDW8G3A0trOk_9\tbear\nDXEqDJWN72E_0\tperson\nDXEqDJWN72E_1\tperson\nDXI2AmrILgw_1\tcat\nDXa15hEKLAc_0\ttruck\nDXgs-pfW-0M_0\ttrain\nDXpyVrXMs1w_0\tperson\nDX5AP4s6u0k_0\tbird\nDX867I2CNRk_0\tairplane\nDX-PbjeeB6o_1\tgiraffe\nDYJJBRoUlnU_0\tknife\nDYUiMLisOzs_0\tperson\nDYbb8_mMeLs_0\thorse\nDYhTdNMuv5g_0\tknife\nDYkV2TPfOBk_0\ttruck\nDYlrCUMDv_g_0\tcat\nDYpBOmbclGY_0\tperson\nDYqIQv97tuE_0\tperson\nDYvHdc4rnxk_2\tperson\nDYvHdc4rnxk_1\tperson\nDY0ggbU0cIk_0\tperson\nDY3h0Y3ijmo_0\telephant\nDY3h0Y3ijmo_2\telephant\nDY6eQdk8jaE_0\tperson\nDZESlirYB3I_1\ttrain\nDZGEjl9U78c_0\tperson\nDZIFKtO6y2Q_0\tperson\nDZIFKtO6y2Q_1\tperson\nDZMd9NPNnLE_0\tperson\nDZRZg1gGn1g_0\tbus\nDZWsGelqCPg_0\tperson\nDZXldsAgY7o_4\tskateboard\nDZYjfZMMVAE_1\tperson\nDZgbeXD-bZg_0\tbear\nDZqs7ie6HPU_0\tperson\nDZ3JlgmRHQ8_0\tperson\nDZ4G9EBImOM_1\tperson\nDaMdWu7CyRE_0\tperson\nDaRYBq6zsmY_2\telephant\nDagKzwyphZY_0\tperson\nDapmUIRDw3o_0\tairplane\nDaqVTidNtg0_1\tperson\nDatNYbTqxlw_0\tperson\nDaz5kZBXn5c_1\telephant\nDa10JheIcaw_0\tperson\nDa25bjhf1WQ_0\tperson\nDbAZPBnTh3U_1\tperson\nDbGX12xMbWM_0\tperson\nDbNOHXsDP5I_1\tboat\nDbSGsjNmQ8A_0\tcat\nDbXz_8anwSM_0\tperson\nDbZGV4ixs2E_0\tbird\nDbdZugU9GWk_0\tbus\nDbeCxvMCD-Q_0\tperson\nDbfJ2s7qQJ8_0\ttruck\nDbivV-It_rM_0\tperson\nDbmwr1_ObHM_0\tperson\nDbnhReILFSs_0\tperson\nDboUAm-F7Rg_0\tperson\nDbpte835xwc_0\tperson\nDbqj1XCvcGw_1\tcow\nDbrGY3BalZ0_0\tskateboard\nDbrGY3BalZ0_3\tskateboard\nDbrGY3BalZ0_2\tskateboard\nDbvkTKJjRj8_0\tperson\nDbwEevYFGrg_0\tperson\nDbzakdG34mg_0\tcar\nDbzakdG34mg_1\tcar\nDb3OG025sz0_0\tperson\nDb74WjMmf-0_0\tbear\nDb74WjMmf-0_1\tbear\nDcAxPsNVe28_0\ttrain\nDcFWetycnqY_0\tperson\nDcKjrocJ8iM_0\tperson\nDcKjrocJ8iM_1\tperson\nDcOl0Ec1kuI_0\tperson\nDca5CTtFQZ8_0\tmotorcycle\nDcexSE28IOA_2\tperson\nDcexSE28IOA_0\tperson\nDcexSE28IOA_1\tperson\nDcfs-bFQcxk_0\tperson\nDcj-1vKe6iI_0\telephant\nDckRd1CpSm0_0\tskateboard\nDckTHE_Pn5Q_0\tperson\nDcknQtmjIDA_0\telephant\nDclr-tDJMO8_0\tperson\nDcpuJSx5z78_0\tperson\nDcpuJSx5z78_1\tperson\nDc3yhv5mfN8_0\tperson\nDc4EXPP0fqU_0\tcat\nDc9dWfPxIEM_0\tbicycle\nDdGvFcujfxo_0\tperson\nDdHWfz7kw4I_0\tperson\nDdJuIi7LexI_0\tbus\nDdKvI-6rMII_1\tperson\nDdNpi-Pmvgc_0\tperson\nDdNpi-Pmvgc_1\tperson\nDdNpi-Pmvgc_2\tperson\nDdOk9lG9b1k_0\tknife\nDdUa-CozM14_0\tperson\nDdUa-CozM14_1\tperson\nDdYyeGgXLKw_0\tperson\nDddB5joJQC4_0\tairplane\nDddRHyvYqFI_0\tperson\nDddRHyvYqFI_1\tperson\nDdf4T9I0sdI_0\tperson\nDdz7VVJXgHs_0\tperson\nDd2qrXASEzk_1\tperson\nDd2qrXASEzk_0\tperson\nDeCtt_QZqjk_0\tperson\nDeCtt_QZqjk_2\tperson\nDeFuoRV0yCw_0\tperson\nDeFuoRV0yCw_1\tperson\nDeHiMvczAD4_0\tperson\nDeIpwOsUzjw_0\tperson\nDeVZ83g93sE_1\tbird\nDeViLrLvD1Y_0\thorse\nDefHSc2VTOo_0\tperson\nDfGzSVv2ELQ_4\thorse\nDfGzSVv2ELQ_1\thorse\nDfGzSVv2ELQ_3\thorse\nDfS7lvAcDQc_0\tumbrella\nDfS7lvAcDQc_12\tumbrella\nDfT_7BUGNQA_0\tperson\ncBI2gZhpA-8_0\tperson\ncBMnKBVcoOE_0\tperson\ncBMnKBVcoOE_1\tperson\ncBQJU95uwwM_0\tperson\ncBQJU95uwwM_1\tperson\ncBSbDKv-Z_o_0\tcar\ncBb6VPKgF1M_0\tknife\ncBeH0xcCCWE_1\tperson\ncBhDn0TkAdc_0\telephant\ncBhDn0TkAdc_2\telephant\ncBhDn0TkAdc_3\telephant\ncBhDn0TkAdc_1\telephant\ncBlqBEElvDI_0\tperson\ncBpFzTn_uOo_0\tperson\ncBvZAwlCN4M_1\thorse\ncBvZAwlCN4M_2\thorse\ncB1RhnpteUg_3\tairplane\ncB9XRu3bb_0_0\tperson\ncB_RQN9IXg8_2\tskateboard\ncCA7llOU4HQ_0\tperson\ncCEUd1IZ6OQ_0\tperson\ncCEUd1IZ6OQ_2\tperson\ncCMe4KdqzeI_0\tperson\ncCaz75u-bCM_0\tmotorcycle\ncCfInBOvqkk_0\tperson\ncCfVriTflG8_0\tperson\ncCnjh5F8dvM_2\tboat\ncCvpQCZ33xQ_0\ttrain\ncCwB7O-yg4Q_1\tairplane\ncCxZRIxh_yk_0\tcow\ncC2UgNbG7Rs_0\tcat\ncC3-bziiNKk_0\tcow\ncC3-bziiNKk_4\tcow\ncC4nZNGoC-g_1\thorse\ncC4nZNGoC-g_2\thorse\ncDGz5cnIzK0_0\ttrain\ncDIc8cs3igI_1\tperson\ncDL0YZ_vXOk_1\tperson\ncDaR5WdXvIo_0\tdog\ncDfSk2g6wRM_0\tdog\ncDg-vYWO3AI_0\tumbrella\ncDvCYN97QYU_0\tdog\ncDvWWER9oeI_0\tperson\ncD_EAISZcwM_0\tperson\ncD_zwwrcvkI_1\tperson\ncEAwCEnfITY_2\thorse\ncEFLP7rdZSU_0\tperson\ncEIAg54WPCs_0\tskateboard\ncEOHFcu3Uic_0\tperson\ncEOqnkbgfMQ_0\tperson\ncEXYVwmcpSg_0\tperson\ncEdeOfPvcQ0_0\tperson\ncEomNeUqQUI_0\tumbrella\ncErRs5qv8mc_0\telephant\ncEyCX-t8Jlo_0\tbird\ncEyCX-t8Jlo_1\tbird\ncEzC3hwdO_o_0\tperson\ncE7AS1hrlYA_1\tperson\ncE7AS1hrlYA_0\tperson\ncFBoLads7vA_0\tperson\ncFHTt7uFxH4_4\tumbrella\ncFOk-AMS2Aw_0\tmotorcycle\ncFOk-AMS2Aw_1\tmotorcycle\ncFkmNa2nYEk_0\tperson\ncFoUf9UmoZ0_0\tperson\ncFq4fzO00qE_0\tcat\ncFtfKwaxphA_0\tperson\ncFuoJPf6prU_0\tskateboard\ncFzjl_SiNhg_2\tdog\ncFzjl_SiNhg_0\tdog\ncF0SM2Lf82s_0\tperson\ncF7uQwB8sEg_0\tperson\ncF9YklqKEp0_0\tcow\ncGBOBTCgzP8_3\thorse\ncGBOBTCgzP8_4\thorse\ncGCbcyeQqG8_0\tperson\ncGCbcyeQqG8_1\tperson\ncGC4pGWPOUk_0\tperson\ncGC732t-itM_0\tperson\ncGEvxRn1UtQ_0\tperson\ncGNmKg25XMs_0\tboat\ncGUXUioIa4o_0\tperson\ncGVaIIV18ug_0\tperson\ncGcyxMp1ZQc_0\tperson\ncGcyxMp1ZQc_1\tperson\ncGdeftwBWL4_0\tperson\ncGiVzhQI2a0_0\tperson\ncGpNQ9Vk-5E_0\tperson\ncGtaJVgvTJg_0\tperson\ncG1_sZqy7lU_0\tperson\ncG2fL1nRZmE_0\tperson\ncG5TxH-1Sf4_0\tperson\ncG65cBtyj20_0\tcow\ncG7BBtumZnQ_0\tdog\ncHCYX0EqsfE_0\tperson\ncHQLun1YTiM_1\tperson\ncHQLun1YTiM_0\tperson\ncHSjCxvPumA_0\tmotorcycle\ncHWE72lnzZo_0\tperson\ncHYcXW7HAkA_0\tperson\ncHaBQgTFdr4_2\tknife\ncHjKy80ojXM_2\tbear\ncHkm25QAG8A_0\ttruck\ncHnV0yZTha4_0\tcar\ncHpaD5PtHnM_0\tcow\ncHv3ulnF1fo_0\tperson\ncHyjhzLIeO0_0\tperson\ncH2A35uULdc_0\tperson\ncH2g9vV4SyM_0\tbird\ncH27awicc50_0\tperson\ncH8zYhvzdb8_0\tperson\ncICrfFzHoZs_0\tperson\ncIFXOWG5Dd0_1\tperson\ncIF9coXttVs_0\tperson\ncIIlWssV9Sk_0\tperson\ncIJSKwcTQ10_2\tbicycle\ncIJSKwcTQ10_3\tbicycle\ncIPlCULXXHQ_3\telephant\ncIPlCULXXHQ_2\telephant\ncISwax-t_78_0\tperson\ncIVGJQrNkT8_0\tperson\ncIV9T5ZQmdI_0\tperson\ncIh9baL5Hzw_1\tperson\ncIjMwiaApEc_0\tperson\ncIvqOdvwX6w_0\tperson\ncIwDGqmKrfY_0\tperson\ncJH4RK9aVR0_0\telephant\ncJJDfdbopiQ_0\tperson\ncJSjHpF7ILg_0\tairplane\ncJUj9q6wgis_0\tperson\ncJfW0Gfkzrg_0\tknife\ncJjaVdNaUko_0\tbus\ncJnihDxg0wg_1\tdog\ncJtGcHMJlMA_0\tperson\ncJ0hAba-pck_2\tgiraffe\ncJ0_u3Ta6kU_2\tskateboard\ncJ0_u3Ta6kU_0\tskateboard\ncJ2f7qDBm7M_0\thorse\ncJ41GQMsJIA_0\tdog\ncJ6BfbrgwDM_0\tperson\ncJ7Akre7-Sc_1\tcow\ncJ7ZHI-8gU0_0\tperson\ncKO8G1ZXQgo_0\tperson\ncKdank8BDik_0\tperson\ncKgqIdOoBmE_0\tperson\ncK4yj3jgWek_0\tperson\ncK5MabT7iIA_2\ttrain\ncK5MabT7iIA_0\ttrain\ncK5MabT7iIA_1\ttrain\ncK9R8KdVuIE_0\tperson\ncLKgng5yuC4_0\tperson\ncLKgng5yuC4_2\tperson\ncLKgng5yuC4_1\tperson\ncLPSEK3_jEE_2\thorse\ncLPSEK3_jEE_3\thorse\ncLPSTXefj2Y_0\tperson\ncLY_N1jEC8E_0\tperson\ncLg1pn5Oh1k_0\tperson\ncLlL2uHDyBw_0\tbird\ncLnQAhX42Eo_1\thorse\ncLnQAhX42Eo_0\thorse\ncLn0Kz_p2U0_0\ttrain\ncLrXQvFZ-y0_0\tknife\ncLvgs19Vm18_1\tperson\ncL2jFa-Zd_M_0\tperson\ncL4k6bdNmbs_0\tboat\ncL6G_y5LoDo_0\tmotorcycle\ncMGnmOyYWcM_1\tperson\ncMIyGPpW9Xw_0\tperson\ncMJhk7y1Nng_2\tbird\ncMJhk7y1Nng_0\tbird\ncMJhk7y1Nng_1\tbird\ncMOULCqujvs_0\tcat\ncMRhR707ZfA_11\tbear\ncMRhR707ZfA_13\tbear\ncMeXNjQUwe0_0\thorse\ncMg1O__kPFA_0\thorse\ncMwsAfZMG1c_0\tperson\ncMwt7xBZ9i4_1\tperson\ncM6-id-uhMg_0\tperson\ncM6-id-uhMg_1\tperson\ncNLuZxPpWho_9\telephant\ncNLuZxPpWho_14\telephant\ncNLuZxPpWho_1\telephant\ncNLuZxPpWho_4\telephant\ncNLuZxPpWho_8\telephant\ncNLuZxPpWho_11\telephant\ncNLuZxPpWho_13\telephant\ncNalYSGXOkM_0\tperson\ncNnMvF7oiUo_0\thorse\ncNr9rjOJ0ps_0\tperson\ncNxEreBWMRc_0\tperson\ncNxEreBWMRc_1\tperson\ncOD8xhwGfME_0\tperson\ncOD8xhwGfME_1\tperson\ncOYK17trE9k_0\tperson\ncOYK17trE9k_1\tperson\ncOZOzY6XDLU_0\tperson\ncOalncX8fwg_0\tairplane\ncOalncX8fwg_1\tairplane\ncOalncX8fwg_2\tairplane\ncOalncX8fwg_3\tairplane\ncOalncX8fwg_4\tairplane\ncOkVxYbnFRs_0\tperson\ncOkiG4LRtQU_1\ttruck\ncOp33oi4C8E_0\tskateboard\ncOzNmIBhiMY_0\tperson\ncO1F_0l1vSU_0\tperson\ncO1MbnbgUbU_0\tdog\ncO3WA2g_UeM_4\tbear\ncO3WA2g_UeM_2\tbear\ncO5xsG3ud_0_0\ttrain\ncO7nCAZ-uLk_0\tperson\ncPBvSHKPNvk_0\tperson\ncPdRddyxsVA_0\tcow\ncPdjr1zTQQ4_0\tperson\ncPeGSXSLepg_0\tperson\ncPkbg5bdpcE_1\tperson\ncPkbg5bdpcE_0\tperson\ncPn5c5t2g6w_3\tskateboard\ncPqAK1E1Ajo_1\tdog\ncPqAK1E1Ajo_0\tdog\ncPsXS3_4zOk_0\tbus\ncPu-riLrt1c_0\tperson\ncPu-riLrt1c_1\tperson\ncP-gl2IN_AI_1\tperson\ncP-gl2IN_AI_0\tperson\ncP_nenKIU4g_2\tbear\nDf70QgKA_Hc_0\tperson\nDf70QgKA_Hc_1\tperson\nDgSwJVCLkYM_0\tperson\nDgcSsQKaX7Q_0\tperson\nDgoFmJFWpUw_0\tbear\nDgtiaphLkMc_0\tperson\nDguiMPx8nn0_2\tperson\nDgvI1azs_0E_0\tairplane\nDgwM5b-eKvc_0\tperson\nDg2sU0bmBho_0\tperson\nDg8r8QlJw80_0\tperson\nDhAkswxLuAs_0\tperson\nDhJZwbql4dc_1\tperson\nDhLD44-KIUU_0\tperson\nDhYbvvwSsEA_1\tperson\nDhYbvvwSsEA_0\tperson\nDhd-0-xOF6I_0\tcow\nDhl-jIQaam0_3\tperson\nDhl-jIQaam0_0\tperson\nDhl-jIQaam0_1\tperson\nDh6APdqkNZ0_0\tperson\nDh_6tF8ndZs_0\tperson\nDiAj24Xsadk_0\tperson\nDiDELcBJWh4_0\tperson\nDiPjO5frbNc_0\tperson\nDiQ-VgXIDMo_0\tperson\nDiVX_-kQv0k_0\tperson\nDiVX_-kQv0k_1\tperson\nDiWi-oWT9EI_0\tboat\nDiXsD6VHEr4_0\tperson\nDiZ4OCT30AM_0\tperson\nDia6QIxORbM_4\tairplane\nDihnxPkojnQ_0\tgiraffe\nDihnxPkojnQ_1\tgiraffe\nDi41WoS7T1M_1\tbear\nDjAQs68BiwA_1\tgiraffe\nDjB4dpC4TVs_0\thorse\nDjD15NlLBYI_1\ttruck\nDjD15NlLBYI_0\ttruck\nDjK1R_LBqgM_0\tperson\nDjMnoAbMiIU_0\tperson\nDjMnoAbMiIU_1\tperson\nDjQF34GUthk_0\tperson\nDjS-0VOep0Y_2\tperson\nDjXtIIwfITI_0\tperson\nDjb2blFeoNM_0\tperson\nDjdAxUWgSdk_0\tknife\nDju4Bl2fx88_0\tbicycle\nDjyldIzPJbA_0\thorse\nDjy5UE0Ofa8_0\tperson\nDjy5UE0Ofa8_1\tperson\nDj7DVsCVqqY_0\tcow\nDj9npayKJqk_0\telephant\nDkAG7dFDk94_0\tperson\nDkC_iJTIrYc_1\tperson\nDkC_iJTIrYc_0\tperson\nDkF-LqA7wSk_0\tbus\nDkNY4yun6ek_0\tboat\nDkPYbKRQBE4_1\tmotorcycle\nDkTfU9q9U_I_0\tcat\nDkTqTY04y30_0\tperson\nDkTqTY04y30_1\tperson\nDkbRBY4ZlFY_0\tbicycle\nDkbRBY4ZlFY_5\tbicycle\nDkbRBY4ZlFY_6\tbicycle\nDkbikYoLycQ_0\tbus\nDkmab-wxSy4_0\tperson\nDkmab-wxSy4_1\tperson\nDknRMqifZFE_0\tskateboard\nDkpZP7RtrJM_1\tbus\nDkqy-okNDVM_0\tperson\nDkrkY6blx3U_1\tperson\nDkrkY6blx3U_0\tperson\nDk0wXCp-USs_0\tboat\nDk1QPiNji5I_0\tskateboard\nDk4V0c6Yzbs_1\tboat\nDk47lOWl3NM_2\tcat\nDlCMYyDhSVY_1\tperson\nDlCMYyDhSVY_0\tperson\nDlDFQ88ui2A_0\tperson\nDlDJpNWKuPM_0\tknife\nDlFJTfO-mc0_0\tcat\nDlG-VsdsPCk_0\tmotorcycle\nDlTE01-45gQ_0\tairplane\nDlX2Yvp20gY_0\tperson\nDldXGda7zfE_0\tperson\nDldXGda7zfE_1\tperson\nDlg5BFm20wI_0\tperson\nDlg5BFm20wI_1\tperson\nDl3fDWG23zU_0\tperson\nDmG9v9xVPbg_0\tperson\nDmIeMGzqZEc_0\tcow\nDmJ9x-DFdqA_0\tperson\nDmJ9x-DFdqA_1\tperson\nDmLGGv6YNEo_1\tbus\nDmL_6_a_54g_0\tbird\nDmNmgatXwU8_1\tknife\nDmSRZp63qTo_1\ttruck\nDme3Rfsqbz8_0\tperson\nDmiucPhqXMg_1\tbus\nDmiucPhqXMg_4\tbus\nDmlMgF-BuRo_0\tperson\nDmt8pgQG3M4_1\tskateboard\nDnLVGRyXAR4_0\tperson\nDnN9tjwPn-0_0\tperson\nDnR4VFNo44s_1\tairplane\nDndaJVRuOoo_0\tperson\nDniy3zze90s_0\tperson\nDniy3zze90s_1\tperson\nDnj_fhGXHC8_1\tbird\nDnkUzsPqjE8_1\tperson\nDnkUzsPqjE8_2\tperson\nDntJ297deXI_1\tperson\nDntJ297deXI_2\tperson\nDntJ297deXI_0\tperson\nDnx6TlTvRfI_0\tperson\nDn80jV69sbs_0\tperson\nDoEWhY2BkZo_0\tperson\nDoOq_FhWze0_0\tperson\nDoPKGr2HJwM_3\tbird\nDoRoLk97UqY_0\ttruck\nDobAdZVysXc_0\tcow\nDohloSZ6YdA_0\tperson\nDomgj6ptFOs_0\tbus\nDpH2eSmcTk4_0\tbus\nDpJA_qYLobk_11\tbicycle\nDpJA_qYLobk_0\tbicycle\nDpJA_qYLobk_2\tbicycle\nDpJA_qYLobk_5\tbicycle\nDpJA_qYLobk_6\tbicycle\nDpJWhFnF2Fo_0\tdog\nDpR63uhHTjo_1\thorse\nDpWw1SaCdTQ_0\tperson\nDpbGsvglx7Q_0\telephant\nDpbGsvglx7Q_1\telephant\nDpimIW1T2Sw_0\tperson\nDpp32dLn0hQ_0\tperson\nDpvuhymOiUM_0\tperson\nDpwjQ_KcYAc_0\tperson\nDpxoJ_GWJA4_0\tgiraffe\nDpxoJ_GWJA4_3\tgiraffe\nDpxoJ_GWJA4_4\tgiraffe\nDpxoJ_GWJA4_1\tgiraffe\nDpz-s6E9VWg_0\tperson\nDp2pGcutqDQ_0\tperson\nDp2pGcutqDQ_1\tperson\nDp4XaG6247k_0\tperson\nDp5KRKUJBGE_0\tcow\nDp6qJvgV4fQ_0\tperson\nDp71z8eyq7o_0\tbus\nDqBNoutsr4M_0\tperson\nDqBNoutsr4M_1\tperson\nDqDElT9H4Tg_0\tboat\nDqESUtRuhPw_0\tdog\nDqVUeH6XI2Q_0\tperson\nDqegnRXQd5Q_0\tairplane\nDqi5KTmt04s_0\tbus\nDqy6NbRkVPE_2\tskateboard\nDrAnw0S9Pmc_0\tperson\nDrCKp4YB7rI_0\tperson\nDrE7aW7O0eQ_0\tperson\nDrFxlXYC6-o_0\tperson\nDrGCtlmxxVc_0\tperson\nDrPpkd-UxFY_0\tcat\nDrc0Grdb_LU_0\tcat\nDrgjySu3e-c_0\tmotorcycle\nDr9XXUA4UKc_0\tperson\nDr9XXUA4UKc_1\tperson\nDr--We7lD3I_0\tperson\nDsA5QOOIZJw_0\tperson\nDsP87b0IuoU_0\tperson\nDsZ6Cf42EdQ_0\tperson\nDsiAcCUi8iE_2\tbear\nDsm48Msjw6k_0\tbird\nDsxyH6AKBd0_0\ttruck\nDs0GIUe1AFo_2\tperson\nDs0GIUe1AFo_0\tperson\nDs0GIUe1AFo_1\tperson\nDs3E7n1kRQk_0\ttrain\nDs44yYfSEr8_0\tbird\nDs8xwquSVkw_0\tskateboard\nDtKSEQhjq2I_1\tcat\nDtQGDwZ1PIU_0\ttruck\nDtQGDwZ1PIU_2\ttruck\nDtSpyLMbD9o_1\tmotorcycle\nDtU93_s53sI_0\ttrain\nDtc3hZBmn9Q_0\tperson\nDteEg93cINc_0\tperson\nDtf2WRyd4OA_0\tairplane\nDtgUpKmdw_g_0\tperson\nDtuRiD_E6HU_0\tperson\nDtyatJX8J1A_0\tbicycle\nDt1MDqN3TCs_1\telephant\nDt1PLFoRvoM_7\tairplane\nDt1PLFoRvoM_0\tairplane\ncQAr7IVeBrU_0\tperson\ncQC7jBc1pC0_0\tperson\ncQIviFGN-_M_0\ttrain\ncQOFvBNN9to_0\tairplane\ncQOFvBNN9to_1\tairplane\ncQPP6SqX-uk_0\ttruck\ncQbqByuUnW8_1\tcar\ncQgUGmyvkJ8_0\ttrain\ncQttS-GIM5c_0\tperson\ncQttS-GIM5c_1\tperson\ncQw1wXvFnLM_0\tperson\ncQ29m5z8Cnk_1\tcow\ncQ4aR8OLr74_0\tmotorcycle\ncRGrqg7y9tE_0\tboat\ncRVqyVvxjHI_0\ttrain\ncRczdkzrJ-w_0\tcat\ncRnDFinbH-s_0\tbird\ncRrjU515FKg_0\tperson\ncRvAv1Nn-WQ_0\tcat\ncR6qM7wjtDw_0\tknife\ncSDafQMsYwc_0\tcat\ncSJ2ISog6Pw_0\tbird\ncSJ2ISog6Pw_1\tbird\ncSLerMX3IBg_0\tperson\ncSNwXF8OcR8_0\tcow\ncSO-70KCypM_0\tskateboard\ncSVIvCYuDtU_0\tcow\ncSdBaGsGWKk_4\tbird\ncSdBaGsGWKk_9\tbird\ncSdBaGsGWKk_1\tbird\ncSdBaGsGWKk_3\tbird\ncSdBaGsGWKk_6\tbird\ncSdBaGsGWKk_7\tbird\ncSdUwiTGXPc_2\tmotorcycle\ncSor-u6VHHw_1\tdog\ncSqMDH0-sDs_2\tperson\ncS398dAyQ9k_0\tcow\ncS-QgqiUgLQ_0\tperson\ncS-QgqiUgLQ_1\tperson\ncTGOQnmi7bo_0\tperson\ncTLa1dxk76g_0\tperson\ncTUTNgp9rZ4_0\tperson\ncTUTNgp9rZ4_1\tperson\ncTayBCWq6xo_0\tperson\ncTiETDBrGv4_0\tskateboard\ncTiETDBrGv4_1\tskateboard\ncTk8pacLUcc_0\tbus\ncTmv-vp89sY_0\telephant\ncTmv-vp89sY_1\telephant\ncTsipIh7xF8_0\tcow\ncTvxGA-EvvY_1\tperson\ncTzz_ZCUpxc_0\tperson\ncT4Y0HSeBgg_0\telephant\ncT5UlPnc5MQ_0\tperson\ncT5UlPnc5MQ_1\tperson\ncT7LjXG7ByI_0\tairplane\ncT7LjXG7ByI_1\tairplane\ncT7LjXG7ByI_2\tairplane\ncT7kZP5B_2s_0\tbus\ncT_US5II64I_0\tperson\ncUEWtKzcAsM_2\tairplane\ncUEWtKzcAsM_1\tairplane\ncUM5ajI3KJg_3\thorse\ncUNExkBml18_0\tperson\ncUSRVmcbXxI_0\tperson\ncUS9QgCXcPo_0\tperson\ncUWmN_HuZiA_0\tperson\ncUYlfMGqB_8_0\tdog\ncU7JEUo5qdM_1\tperson\ncU7sT9UHs7s_0\tperson\ncVCqOzgt2vI_2\ttrain\ncVCqOzgt2vI_0\ttrain\ncVM2h5qbyUw_0\telephant\ncVXIaONp5o8_2\tperson\ncVYqiMXSh9g_1\tperson\ncVbcrOx7768_0\tperson\ncVfH0tFh5Kc_0\tperson\ncVfWBtl-qK4_0\ttruck\ncVq5VnfZtNw_0\tperson\ncVr16pInr5k_0\tperson\ncVsZMfMaxSM_0\tperson\ncVtyGQKWFcI_0\tmotorcycle\ncV0a2ScBxpE_0\tperson\ncV0a2ScBxpE_1\tperson\ncV1mBGRlLe8_0\tbird\ncV1szYodba0_0\tmotorcycle\ncV8BGLBROa8_0\tperson\ncWBCCAo3pUM_0\tbird\ncWBTkrImlLQ_0\ttrain\ncWBTkrImlLQ_1\ttrain\ncWGCbw5I6cI_0\tskateboard\ncWIDcoPB3Rg_0\tperson\ncWKf_KANUSM_0\tperson\ncWRO27zzxF4_0\tperson\ncWaVXNQ5cvg_0\tperson\ncWb-i8hj8uc_0\tperson\ncWcJrAQuNA4_0\tbird\ncWtIT6V98zc_1\tperson\ncWxELKsh43s_0\tperson\ncW2hQE3lS9k_1\tperson\ncW4fmuV2JuU_0\tskateboard\ncW7OrsSn-m8_0\tperson\ncXP1Lit5Pmk_0\tperson\ncXS9VytLIjM_0\tcat\ncXT5_AFSI8Q_0\tperson\ncXUdqfIp-Hs_1\tperson\ncXUdqfIp-Hs_2\tperson\ncXWgDE6boPQ_0\tperson\ncXZt2UZe6QQ_0\tmotorcycle\ncXaAcHkHUzU_0\tperson\ncXsRP67GHA0_0\tperson\ncXsRP67GHA0_1\tperson\ncX0yQ5KIAKw_0\tperson\ncX3mnglolLE_2\telephant\ncX3mnglolLE_3\telephant\ncX6lyv1DI80_1\tairplane\ncX-s4BNxb0c_0\tperson\ncYHq8xoYMO4_1\tbus\ncYVLbgGxJMM_1\tperson\ncYnyDXx580I_0\tperson\ncYpas0B5zEo_0\tcow\ncYvyTVEqiEU_0\tgiraffe\ncYwkpA75A8Y_0\tperson\ncY1cmlwRnaE_2\tbicycle\ncY1cmlwRnaE_1\tbicycle\ncY6HDOEiINs_0\tskateboard\ncY_INarfLQ4_0\tperson\ncZA_Yoq3vy8_0\tperson\ncZB5MQY5kVA_0\tskateboard\ncZDoXwn5lv8_1\tperson\ncZPvtKaqRxc_0\tperson\ncZU2LAWtwUM_0\tknife\ncZZT6OJ6xGk_0\thorse\ncZZT6OJ6xGk_1\thorse\ncZe888DWA8M_0\tperson\ncZgt8s4mARc_1\tperson\ncZugy4cYVng_0\tcat\ncZz6eOuSV9Y_0\tperson\ncZ155yARalk_0\tperson\ncZ155yARalk_1\tperson\ncZ7siEIFHlI_0\tcow\ncaAnHYU-Gwk_0\thorse\ncaGQ2b4L930_0\tperson\ncaGzwv3HLKU_0\tskateboard\ncaLKu0yKW0Y_0\tdog\ncacCjMLNpIg_2\tbird\ncarYHHE3y3A_3\tknife\ncavT34ZvciI_0\telephant\nca4_gKs6MN0_0\tbear\nca8aNafTzeY_0\tperson\nca_weHSJH80_1\ttrain\ncbRztq6KZn0_0\thorse\ncbVll1hxlDA_1\tperson\ncbVll1hxlDA_0\tperson\ncbvbRxOMJ-A_0\ttruck\ncb6YFX4CVqc_2\tairplane\nccIWh5JBil8_2\tbear\nccIWh5JBil8_0\tbear\nccQ7JnYrTL8_0\tbird\nccQ7JnYrTL8_1\tbird\nccRdzj5Zi-U_0\tperson\nccR-h9z3bRI_1\tknife\nccR-h9z3bRI_2\tknife\nccVJXErLdOo_0\tdog\nccWTUq_mvsU_0\telephant\nccWTUq_mvsU_1\telephant\nccaCWXJ0jKY_0\tperson\nccaYdn2p4Uk_6\tknife\nccaYdn2p4Uk_10\tknife\nccfTQmE0zsA_0\tperson\nccfTQmE0zsA_1\tperson\nccwFXG9D98w_0\tperson\ncc0S9924O-s_0\tskateboard\ncc76qcSHNMM_1\tdog\ncc76qcSHNMM_0\tdog\ncdBO6xYUmzE_0\tperson\ncdBO6xYUmzE_1\tperson\ncdKEh34fsYk_0\tperson\ncdNWg2zU6bY_0\tperson\ncdOQ7lTQJBw_1\tcow\ncdOQ7lTQJBw_2\tcow\ncdSG1fcxNAA_0\tperson\ncdS-7_Egk88_0\tperson\ncdW8PgwFm6o_0\tmotorcycle\ncdZqtqh5PwE_1\tperson\ncdZqtqh5PwE_0\tperson\ncdZ1ODMJYKM_0\tbird\ncdbmvoa89QU_3\ttrain\ncdbmvoa89QU_4\ttrain\ncdbmvoa89QU_5\ttrain\ncdf-C-P2bW0_0\telephant\ncdkSgKIMQEM_0\ttruck\ncdkSgKIMQEM_1\ttruck\ncdoGDD6m8Og_3\tperson\ncdpYTik8eL4_0\tperson\ncdruQqCvfrI_0\ttruck\ncdxkCeoDX6Y_1\tperson\ncd80Ii4FB1Q_0\tbird\nceH46gqMWak_0\tperson\nceIoRNo5FBk_0\tperson\nceIoRNo5FBk_1\tperson\nceLI06w8-Yo_0\tperson\nceVkcz1wysc_2\tdog\nDt5UnNOUlZA_0\tmotorcycle\nDuMGrFowOWE_0\tairplane\nDuUmKpZym5U_4\tboat\nDuV6ahfZ_yw_5\tknife\nDupWsV-iiys_0\tknife\nDur1W4FemFs_0\tperson\nDu7sKt25RiA_1\tknife\nDu8hVxuK10c_1\tairplane\nDu8hVxuK10c_2\tairplane\nDu8hVxuK10c_3\tairplane\nDu8hVxuK10c_4\tairplane\nDu9r_1zpPkA_0\tperson\nDvEWbWxGJvQ_0\tbus\nDvEykMsNibg_2\tbicycle\nDvIS9FV5pag_0\tperson\nDvIS9FV5pag_1\tperson\nDvKLYYQzmas_0\tperson\nDvNTMqUwwWo_0\tperson\nDvR9Ctfk8lg_0\tperson\nDvWCGbG9LT4_0\tcar\nDvWDBQ9eMNQ_0\telephant\nDvWDBQ9eMNQ_2\telephant\nDvuQOS7UVI0_2\telephant\nDv1e0Y8A8yg_0\tcow\nDv4azGPr4YI_0\ttruck\nDv7eGdF004Y_1\tperson\nDv7eGdF004Y_0\tperson\nDwJntGNV4Gw_0\tperson\nDwWzbtiIs7k_0\tskateboard\nDwhCZK1eUPw_0\tperson\nDwi-kq9Gcsw_0\tzebra\nDwi-kq9Gcsw_1\tzebra\nDwlOBOv0IC8_1\tbicycle\nDwlOBOv0IC8_0\tbicycle\nDwvclcpHQNY_0\thorse\nDwzuhLu_Jew_0\tbicycle\nDw2QHLXWmos_0\ttruck\nDw7BXQFtH60_0\tperson\nDw8lXatl4wE_2\tperson\nDw8lXatl4wE_0\tperson\nDw8lXatl4wE_1\tperson\nDxAMNpw-4qg_0\tperson\nDxB962sZJ_c_0\tairplane\nDxB962sZJ_c_1\tairplane\nDxB962sZJ_c_2\tairplane\nDxFjGsjegtk_0\tperson\nDxHhkA1fVdA_0\tperson\nDxPOOsSCJpc_0\tcat\nDxU9ZTI7KzY_0\tbird\nDxXEapsjhOg_0\tcow\nDxYW3ZMCXUw_0\tperson\nDxegJbsalCo_0\tperson\nDxegJbsalCo_1\tperson\nDxl8-fknJjM_0\tbird\nDxl8-fknJjM_1\tbird\nDxmdjAoDhkE_4\tknife\nDxpMePWSgjs_0\tperson\nDxsdKCCUvCY_0\tperson\nDxw3Y-UB0jk_0\tairplane\nDx0fgXYBRV0_0\tknife\nDx4a9ZiekrQ_0\telephant\nDx4a9ZiekrQ_1\telephant\nDx5VMmCltKo_0\tperson\nDx8eIjF--eo_0\tperson\nDx8eIjF--eo_2\tperson\nDx8eIjF--eo_1\tperson\nDyFNZgEaw24_1\tbird\nDyZHVNsbZeE_0\tperson\nDyceiTbkpMw_0\tbicycle\nDyd1Aj3RO3I_0\tcat\nDyfyfDI4jqk_0\tperson\nDytAOZD9DLU_1\tperson\nDy1-ch56AMc_0\tboat\nDy5kD11Wnbk_0\tperson\nDy5kD11Wnbk_1\tperson\nDzAi_cumPY4_0\tperson\nDzCPCgkI8XA_0\tmotorcycle\nDzCPCgkI8XA_1\tmotorcycle\nDzFhvnd07Ck_0\ttrain\nDzKdERTAA8U_0\tcat\nDzMXxF7XRaI_0\tperson\nDzW2oC31Gcs_1\tperson\nDzXDPH8p-6Y_0\tmotorcycle\nDziXgWdCrvY_3\thorse\nDzkCtRPiI-Q_0\tcat\nDzlPtZXxtpU_6\telephant\nDzlPtZXxtpU_4\telephant\nDzlfBATujA8_1\thorse\nDzp0BrJSMBU_0\tperson\nDz0d79BMerc_0\tmotorcycle\nDz34hVhjpzA_0\tperson\nDz7kWPDxgbg_1\tbicycle\nDz73CrM7pH8_0\tperson\nDz8_y0iOjLM_0\tskateboard\nD0DtV2eD7cs_0\tknife\nD0HGjOZ5XWU_1\telephant\nD0O-T4E2DVo_0\tcat\nD0R59ANL6o4_0\tperson\nD0TQLmGtPm4_0\tairplane\nD0TTR7qCVXQ_0\tperson\nD0WAC7ByU0M_0\tperson\nD0Yx5cLcrqk_0\tskateboard\nD0mf15dFGhk_0\tperson\nD0pcdPd6hwY_0\tdog\nD0qo2f2Cshk_0\tperson\nD0xc1K3BQnQ_1\tbicycle\nD0zhUpZhZi4_1\tairplane\nD04tMZ7n3YM_0\tskateboard\nD09x5ezi5hU_0\telephant\nD0-sW80X3kI_1\telephant\nD1Ct81qiyT4_0\ttruck\nD1Ct81qiyT4_1\ttruck\nD1DYQay-d_E_0\tcat\nD1IQfkEa2-8_0\ttruck\nD1KUzeiWmUE_1\tcow\nD1XPuPzMvv4_1\tbus\nD1cTj9Fy4yE_0\tdog\nD1dWoFMnKhc_0\tperson\nD1f92BE9HmI_0\tperson\nD1ktXwG0_jM_0\tperson\nD1plKiNFzvI_0\tcat\nD1tZzoBOWfA_0\tperson\nD1yVIEgFGrY_1\tairplane\nD10WSuM8eqU_0\tperson\nD19A7AUqZJ0_0\tperson\nD2CXHzxp1TU_0\tcow\nD2Iqqb3RP6c_0\tperson\nD2Iqqb3RP6c_4\tperson\nD2Iqqb3RP6c_2\tperson\nD2Iqqb3RP6c_3\tperson\nD2KcVzav3YU_2\tairplane\nD2KoBI6R7W8_0\ttrain\nD2Qw63hsi1E_3\tbear\nD2RT-qUSw_U_0\tdog\nD2RZP8Y6VT8_0\tdog\nD2Ri5Wy9XPQ_0\tperson\nD2RkdlTKlsE_0\tperson\nD2VABHjSM6E_0\tbus\nD2VABHjSM6E_2\tbus\nD2co1ZGkwCs_0\tskateboard\nD2rbERtPxNM_0\tperson\nD2t36StaDcc_0\telephant\nD2t36StaDcc_1\telephant\nD2wSgbAelUc_0\tcat\nD2yQaYJDNvs_2\tbicycle\nD2yQaYJDNvs_0\tbicycle\nD24GJS9nKC0_0\tperson\nD3EIh6pBTdQ_0\ttrain\nD3F3xWCoWD8_0\tperson\nD3IDGSQSrFY_3\tgiraffe\nD3IDGSQSrFY_4\telephant\nD3IDGSQSrFY_5\telephant\nD3IDGSQSrFY_7\telephant\nD3IDGSQSrFY_8\telephant\nD3OvvA5jYlM_2\tbird\nD3OxudXglSM_1\tcow\nD3XqhAXefSA_0\tperson\nD3Zg90Ib5GI_0\tcat\nD3b-w5J-wR0_0\tperson\nD3tuGaFbdbE_0\tperson\nD36Pwfuad5E_0\thorse\nD4CWBceBJEk_0\tperson\nD4OMvYw25w0_0\tbus\nD4aL-0UevEY_0\tperson\nD4do8kCWydY_0\tperson\nD4do8kCWydY_1\tperson\nD4goZXgzVC8_0\tperson\nD4oLradsvXE_0\tperson\nD4qq5Olmh24_0\tperson\nD410FuTGoPI_0\tbicycle\nD4_2g_M4CXM_1\tperson\nD5GNIcodIw0_0\tbird\nD5KLVLNs7-0_0\ttrain\nD5KWKhPhqWE_0\tdog\nD5OtHFsiXiI_0\tperson\nD5UGpkiG-CQ_0\tperson\nD5hYrAC2iIg_0\tperson\nD5jUPc4nQO0_0\tperson\nD5kSwHOWPBU_1\tbird\nD5kSwHOWPBU_0\tbird\nD5n4B-O8y8g_0\tperson\nD5tLtHWe0Jk_0\tperson\nD5uTmoMYXDE_0\tcow\nD5x402SaAk8_0\ttruck\nD537kaRoYEk_0\tperson\nD552mK5tfLU_0\tdog\nD59Eb3u0iPs_2\tperson\nD59Eb3u0iPs_0\tperson\nD6EDJA1bO3s_0\tzebra\nD6G1X8WFAA8_0\tperson\nD6LDq6Q1Aic_0\tperson\nD6NzaXWZGEA_1\tperson\nD6UsriFwkjQ_0\tperson\nD6XIhwBoaik_0\tperson\nD6XUUDKA1CA_0\tperson\nD6d20KAVyzk_0\tperson\nD6f2wdAt_Ug_0\tperson\nD6kIRV5rEPk_0\tperson\nD6qXaD6WnVQ_0\tbicycle\nD6zUwxeZ1zU_0\tperson\nD7c2tRlXz5k_0\tskateboard\nD7dAkMkQf4I_5\telephant\nD7kHPyS4Gw0_0\tperson\nD7r_HLTwhWY_0\tperson\nD71B5jrYOig_2\telephant\nD77yNiFrtmw_0\tperson\nD78FDAi2log_0\tskateboard\nD7_S2hp6aKI_1\tairplane\nD7_S2hp6aKI_0\tairplane\nD7_tUVFGy2o_0\tperson\nD7_zjfakeYM_0\tdog\nD7_zjfakeYM_3\tdog\nD7_zjfakeYM_4\tdog\nD8GQWYiVK1U_0\tdog\nceczRgI6HDM_0\tboat\ncev1umQFsVA_2\tperson\ncev1umQFsVA_1\tperson\nce8j1r_CDH8_0\tdog\ncfD9yGF5XmY_0\tcar\ncfFAjaziwn4_0\tperson\ncfWqngaDvvg_0\tperson\ncfWqngaDvvg_1\tperson\ncfex3QJFkTY_0\tdog\ncfex3QJFkTY_1\tdog\ncfpiw6KGB70_0\tdog\ncfyY4mfwN7A_0\tairplane\ncf0a6xp7r9s_0\tbus\ncf3VOLwZdKY_0\tdog\ncf6daxmvx6M_1\tperson\ncf6kCO9JdOM_1\tperson\ncf6kCO9JdOM_0\tperson\ncgAiH_9c5DU_1\tbird\ncgD7Gr2Y-c8_0\tperson\ncgQ_34JYUkU_0\tcar\ncgT26vQK-4A_0\tperson\ncgZo7nUeCNE_0\tbus\ncgjjdvXBsFI_0\tperson\ncgj_bzL4vsQ_0\tskateboard\ncgmkRlhxVQ8_0\tperson\ncgmkRlhxVQ8_2\tperson\ncgmkRlhxVQ8_1\tperson\ncgxIrs3ySiA_0\tskateboard\ncgyRQ1a79c0_0\ttrain\ncgyRQ1a79c0_1\ttrain\ncgzHPxfb-R4_2\tperson\ncg4GIYiUNiI_0\tperson\ncg9Y2DTUiDQ_0\tcow\nchc30sNO6KA_0\tperson\nchl-Wa4_hic_0\tperson\nchrXgx4NWck_0\tperson\nchrXgx4NWck_1\tperson\nchwYzLEqKp4_0\tperson\nchyVy1kdL5M_0\tperson\nch_yUR9RHIM_0\tdog\nciEhviIYSFY_0\tbicycle\nciFKNPdVskg_0\tairplane\nciUZ2LoiaCs_0\tperson\nciZNBF9RdaA_1\tknife\nciZNBF9RdaA_0\tknife\nciZNBF9RdaA_2\tknife\nciZNBF9RdaA_4\tknife\ncifpYBLq6dM_0\tperson\ncit4hdvCIp0_0\tmotorcycle\nci83tdO3GuM_0\thorse\ncjAhjjWOj24_1\tcat\ncjL-hMHdmN8_0\tperson\ncjdImYwFXEI_0\tperson\ncjlPNeNKoSo_0\tcar\ncjmps6UKu_Y_0\tperson\ncjtjQu1YoTc_0\tperson\ncjuRQJf1_qs_0\thorse\ncjvMLM_Uzbw_0\tperson\ncjye6t7P2XY_0\tperson\nckIaNsLDst8_0\tperson\nckJHbJCefVc_0\tbear\nckY7Izfnggc_0\tperson\nckfgZsmJEbs_1\telephant\nckyL1lkCzU8_0\tperson\nckzaUAcrtY4_0\tperson\nck6hJJVJfvQ_1\tperson\nck6hJJVJfvQ_2\tperson\nck6hJJVJfvQ_0\tperson\nclCQhmV8nf8_0\tperson\nclL4lyl6J7I_0\tperson\nclO2SRgOzAk_0\tperson\nclQ98CON1pE_0\tperson\nclUGOwaYaPg_0\tcat\nclaqhrkmhPg_0\tperson\nclmsmTFOSLo_1\tdog\ncl410aCQA8k_0\ttrain\ncl6C5KiOEHQ_0\ttrain\ncmAN1SqRkDM_0\tperson\ncmGz-63gi5Q_0\ttrain\ncmHjbUBM4q8_0\telephant\ncmKnHqPGlTw_0\tperson\ncmV1BLuEvpU_0\tcow\ncmeGuaSUg34_1\tcar\ncmqxX05lPiI_0\tperson\ncmtruoCpSec_0\tperson\ncmwRk4-z_BQ_0\tperson\ncmwzhxa6Kd8_0\tboat\ncm7Xd_WXZAs_0\tperson\ncnAC9g_fYUY_0\ttrain\ncnAC9g_fYUY_6\ttrain\ncnAC9g_fYUY_1\ttrain\ncnAC9g_fYUY_3\ttrain\ncnAC9g_fYUY_7\ttrain\ncnAC9g_fYUY_8\ttrain\ncnAC9g_fYUY_9\ttrain\ncnJKH5dTKyI_0\tskateboard\ncne8MAKWcjo_2\tperson\ncne8MAKWcjo_1\tperson\ncnoIwn3cQ7Q_0\tbird\ncnplEeb8Iuk_0\tmotorcycle\ncnp30cLXzq8_0\tskateboard\ncnrSdMSCW6w_0\ttruck\ncnrSdMSCW6w_1\ttruck\ncnrSdMSCW6w_3\ttruck\ncnryAbqs0sM_0\thorse\ncnryAbqs0sM_2\thorse\ncnt7MyeNlHA_0\tperson\ncnvzLGyGalU_0\tcow\ncoBLne1vSV0_0\tperson\ncoDrWV3qbQE_1\tcar\ncoIhjdND3yY_0\tperson\ncoVT-MPjIsc_1\tcat\ncobC6BjJahk_0\tperson\ncodE_-LtIRY_0\tboat\ncofwfK4F5ac_0\tperson\ncohdkT2S_oA_0\tskateboard\ncoh6clK_Q6A_0\tperson\ncomEv_WJ4Uc_0\tperson\ncousEghehEo_1\tperson\ncousEghehEo_0\tperson\nco17Vvf3bag_0\tknife\nco17rRdOvwc_1\tmotorcycle\nco5rBTsE2i0_0\tknife\nco7SR4bgOM4_0\tknife\nco9DJtEU4eg_0\tperson\ncpEYJnyJ9XM_0\ttrain\ncpLmgivniko_3\tknife\ncpLmgivniko_2\tknife\ncpO5pHTOelo_0\tcow\ncpQ9HawKR-Q_0\tairplane\ncpQ9HawKR-Q_1\tairplane\ncpUTjBksgdA_0\tperson\ncpmMEngbDHE_3\tperson\ncpmMEngbDHE_0\tperson\ncpmMEngbDHE_1\tperson\ncpnZFfnjGYs_0\tcar\ncpre_wIt0hs_0\ttrain\ncpre_wIt0hs_1\ttrain\ncptcOzotQ0E_0\tperson\ncpuYK9y7zu8_1\tboat\ncpxkLEREnwo_0\tcow\ncp4ttild7EA_0\ttrain\ncqEdqz5F7tg_0\tcat\ncqOLpxxqIBw_1\tperson\ncqOLpxxqIBw_2\tperson\ncqOclzkqkVg_0\tperson\ncqO2VRSBGGg_0\tbus\ncqRNPM3jgNs_0\tcow\ncqS_ZvZF4Kk_0\tperson\ncqS_ZvZF4Kk_1\tperson\ncqez5FuSf44_0\tperson\ncqf4Vh7Vy9M_0\tperson\ncqkZZqtr3z8_0\tperson\ncqkZZqtr3z8_1\tperson\ncq3TwUTSBFA_0\thorse\ncq84vJoKj0A_0\tperson\ncrXlnYSuCuw_0\tperson\ncrgSyPjbLBw_0\tperson\ncrh-ncEjMd8_0\tumbrella\ncriMO4N0K5E_0\tperson\ncrmw_2KCRlY_1\thorse\ncrmw_2KCRlY_0\thorse\ncruWABLWvD0_0\tperson\ncrzo7x07GTs_1\telephant\ncr02TlSWnkI_6\telephant\ncr5ddm3njdQ_1\tbird\ncsGJS_sNJx4_0\tperson\ncsKSGFZyk04_0\thorse\ncsTChnltOdg_0\tcow\ncsiWQna-zcg_0\tskateboard\ncsl1NFlhS0I_0\tperson\ncswk8vZ6th8_0\tperson\ncs16RhEpmu4_1\tperson\ncs16RhEpmu4_2\tperson\ncs3PfcpDro8_0\tcow\ncs_yLDexfXk_0\tperson\nctAtCH6V1Dw_1\tperson\nctAtCH6V1Dw_0\tperson\nctCQsTBheHg_1\tperson\nctJATSvGLTo_0\telephant\nctJATSvGLTo_4\telephant\nctJATSvGLTo_1\telephant\nctJATSvGLTo_2\telephant\nctK8CQu6Nvg_2\tboat\nctLUri8cnqU_0\tbear\nctNE8tj4Z18_0\ttruck\nctOTsI_RZps_1\tperson\nctOTsI_RZps_0\tperson\nctPfu5shFA0_0\tperson\nctPfu5shFA0_1\tperson\nctRpeLVhC50_0\tbicycle\nctWUEkluOFo_0\ttruck\nctWrHmTAoxw_4\tdog\nct24BXc-tWg_0\tperson\nct8_KhvMuHo_0\tmotorcycle\nct_TbfWVBQc_0\tperson\nct_TbfWVBQc_1\tperson\nct_TbfWVBQc_2\tperson\nct_TbfWVBQc_3\tperson\nct_vznHYblc_0\tairplane\ncuHFcWEuUNo_0\tskateboard\ncuQ5swAtzfk_0\tperson\ncuRuiFR7bNY_0\tperson\ncuU3htRHPgM_0\tperson\ncuWjLEIrs8k_5\tbus\nD8btdwmdRNU_0\tknife\nD8sBFUu104g_1\tknife\nD8urBZQXl6o_0\tperson\nD8wVRKGVcLw_0\tdog\nD804JptI7_4_0\tmotorcycle\nD8-J5NgmOQg_0\tperson\nD9J-SuKzTU4_0\tbicycle\nD9RlyV_QhoQ_0\tbear\nD9WsxKDzM80_1\thorse\nD9WsxKDzM80_3\thorse\nD9WsxKDzM80_5\thorse\nD9XDsr6tkug_0\tdog\nD9XDsr6tkug_1\tdog\nD9XwHuLUv_E_0\tcar\nD9ixoNe1mQ8_0\tperson\nD94_XdBnfjQ_0\thorse\nD97nupvam-4_0\tperson\nD97wkVsbfJk_0\tperson\nD97wkVsbfJk_1\tperson\nD98TSSeEEXc_0\tperson\nD9-PVz9eRtA_0\tperson\nD9-PVz9eRtA_1\tperson\nD-DNyYPMTvE_0\tcar\nD-EA0oKq0qI_0\tcat\nD-UToJ9lT9w_0\tperson\nD-YgpB48Efg_0\tperson\nD-YtknfK7cQ_0\tperson\nD-a0sdpLGlI_0\tumbrella\nD-gTVzHdFAE_0\tbus\nD-gxEOUdm98_0\tperson\nD-jl7sUktcE_1\tperson\nD-pfJT6Nyfo_0\tperson\nD-pfJT6Nyfo_1\tperson\nD-u2wEUntuI_0\tperson\nD--GMbo7meg_0\tperson\nD_FozyNGP_g_0\tperson\nD_OvU_wvmsg_0\tskateboard\nD_QDxlwnenM_0\tbird\nD_TbGwH_U4I_0\tperson\nD_XHitiDPXI_0\tperson\nD_XwOiOHuZU_1\tperson\nD_XwOiOHuZU_0\tperson\nD_g7kf5F2CE_0\tmotorcycle\nD_kMPno6xDw_1\tperson\nD_r43ev6HHs_0\tairplane\nD_uO4kxnCwM_0\ttrain\nD_vXQa4wYoY_0\tperson\nD_vxl0ffX4U_6\tbicycle\nD__WGD95lSY_0\tcat\nEABbbYMrVPo_0\tperson\nEABxiYRLhro_1\tknife\nEANBKNPscIU_1\tdog\nEANBKNPscIU_0\tdog\nEATgn3uQFCc_0\ttruck\nEAecqVilQ60_0\tairplane\nEAh-eJriiEM_0\tcat\nEAlTNLBenas_0\telephant\nEAmeB0UClfE_0\tperson\nEAoS9E3JQM0_0\tknife\nEApLpwcDY04_0\tcow\nEApLpwcDY04_1\tcow\nEAvGskBbSsI_0\tperson\nEAvUn45orps_0\tperson\nEAvhz7EUrHs_1\tperson\nEAvhz7EUrHs_0\tperson\nEA2Zq7j78Zw_2\thorse\nEA33eNV3TsM_0\tbus\nEA4Pppxm9q8_2\tairplane\nEA9IwJGPZFo_0\tperson\nEBBWzGDSfhQ_0\ttrain\nEBCEcy1RAZU_0\tbear\nEBDSyGzaeVM_0\tperson\nEBDSyGzaeVM_1\tperson\nEBGwUwk8_KI_0\tmotorcycle\nEBL5WSEhHwQ_0\tcow\nEBTH0ShVz5s_1\thorse\nEBYJEkaJizQ_0\ttruck\nEBmABlnU3Ns_0\tperson\nEBpvJEz7GAs_0\tcow\nEBqxBh52uek_1\tperson\nEBrNePUYA80_0\tcat\nEB0XdJ6nl5Q_1\tbear\nEB5sThk9G-k_0\tperson\nEB7yZ9myXmo_2\thorse\nEB7yZ9myXmo_1\thorse\nEB-GUW188Kc_0\tperson\nECDxDS-R1ZU_0\ttrain\nECEv0inW5Cs_1\tdog\nECKwTK9kBHk_0\tcat\nECLYb63wsdY_0\tperson\nECT7_2qKJJw_0\tperson\nECUpMJzxafs_0\tperson\nECXdLGCGSRU_1\tperson\nECdvMn526ho_0\tskateboard\nEChWuqD2kxc_0\tperson\nECofUr-jIIU_0\tperson\nECpmJNOAfZU_0\tperson\nECuo32_WqfU_0\tperson\nEC0Q7uMrJh0_0\tcow\nEC1pupdSC2Y_0\tperson\nEC-RADUn0SA_0\tskateboard\nEC-RADUn0SA_1\tskateboard\nEDBYWaa97hs_0\tperson\nEDUY2xl1Jkw_0\tcat\nEDYGYkJTUAw_0\tperson\nEDZ9Cu6WUAU_1\thorse\nEDcpyGbwAVs_1\ttrain\nEDcpyGbwAVs_2\ttrain\nEDqFOrLwfpE_0\telephant\nEDqFOrLwfpE_1\telephant\nEDrX2_SzLF8_0\telephant\nEDtN3eOjUXg_1\tmotorcycle\nEDvdnYUw9b0_0\tperson\nEDxj4RwQr7k_0\ttruck\nEDxj4RwQr7k_1\ttruck\nEDxj4RwQr7k_2\ttruck\nEDxj4RwQr7k_3\ttruck\nEDxj4RwQr7k_5\ttruck\nED-QWlNA_QI_1\tperson\nED-QWlNA_QI_0\tperson\nEEFgTj2V6IY_0\tperson\nEEMkBuPFopc_0\tperson\nEENkey7gvFA_0\tcat\nEENyo-VOtiA_0\tperson\nEEQVWkmTS6A_0\tperson\nEEQVWkmTS6A_1\tperson\nEEfWTq58rX0_0\tmotorcycle\nEEfWTq58rX0_1\tmotorcycle\nEEiUwF9ID5k_1\telephant\nEEiUwF9ID5k_0\telephant\nEEiUwF9ID5k_2\telephant\nEEiUwF9ID5k_5\telephant\nEEnpnVNwpgk_0\tperson\nEEnpnVNwpgk_1\tperson\nEEn1JwzcH7Y_0\tperson\nEEtv5FqPqG0_0\tmotorcycle\nEEx5nPfhJdI_0\tbear\nEE5owiH92Io_0\tbird\nEFHnwo5U2Bc_0\tbird\nEFHnwo5U2Bc_1\tbird\nEFTcDwwNw_M_0\tperson\nEFd6XVMNdEk_0\tumbrella\nEFpWVH06Tf4_3\tmotorcycle\nEFpWVH06Tf4_1\tmotorcycle\nEFpWVH06Tf4_2\tmotorcycle\nEFryCLs5aWc_0\tperson\nEFwar_GkK6Q_0\tcow\nEF0hPkNXnoA_0\tskateboard\nEF1htFUPo80_1\tbus\nEF23dhLqzKk_1\tperson\nEF23dhLqzKk_0\tperson\nEF4KGrH7s08_1\ttrain\nEF4KGrH7s08_2\ttrain\nEF4KGrH7s08_0\ttrain\nEF8PHVKHaq8_0\tperson\nEF9VafNyS20_0\tperson\nEGCQIKdLkIU_1\ttrain\nEGHYSrxI1Ek_1\tperson\nEGIhtnFv2f4_0\tperson\nEGI5Yk7IU8s_0\tboat\nEGOtOZyUpk4_0\ttrain\nEGOtOZyUpk4_1\ttrain\nEGOtOZyUpk4_2\ttrain\nEGZ7-ChFJQI_2\tknife\nEGd19Lwe3vM_0\tperson\nEGgvoXoby8c_0\tperson\nEGgvoXoby8c_1\tperson\nEGiEfcahLzY_0\tperson\nEGsRldGZ4Bc_4\ttruck\nEGsRldGZ4Bc_5\ttruck\nEGsRldGZ4Bc_0\ttruck\nEGsRldGZ4Bc_1\ttruck\nEGsRldGZ4Bc_2\ttruck\nEGvzZJ10zwQ_0\ttrain\nEG7cF7KMqs8_0\tmotorcycle\nEG-A5-_1i-o_0\tcar\nEHD613XdEQc_0\tperson\nEHMEQV26qfk_0\tboat\nEHUgk_5vbps_0\thorse\nEHafuO8IcpI_3\tbird\nEHcP0uDfEyE_0\tumbrella\nEHft6kH6siE_0\tperson\nEHft6kH6siE_1\tskateboard\nEHtU4jYmFWw_0\telephant\nEHvP9Bwmq7M_2\tperson\nEHvP9Bwmq7M_0\tperson\nEHvP9Bwmq7M_1\tperson\nEHv9RwkIPXM_0\tskateboard\nEIIC6lIbxO4_0\tcat\nEIRbrmP8N9U_1\telephant\nEISmAs76j_g_0\ttrain\nEIUHtk1IdtA_0\tcow\nEIcGpS1nsXk_6\telephant\nEIcGpS1nsXk_4\telephant\nEIdaSifBFgk_0\tperson\nEIdaSifBFgk_1\tperson\nEIe7fhZxKpQ_0\tperson\nEIe7fhZxKpQ_1\tperson\nEInkqD_T5Os_0\ttrain\nEIwa8hvMQ9g_2\tbicycle\nEIwa8hvMQ9g_0\tbicycle\nEI8OMIBxEOo_0\tperson\nEI-G2_K6zus_0\tperson\nEJE1AAlhjcQ_0\tperson\nEJE2EqHSaLA_0\tairplane\nEJJefx2O7lo_0\tperson\nEJJ0aK1Mefo_1\tbird\nEJMke8tdD9c_0\tperson\nEJMp6Gszq8M_0\tperson\nEJM15lQ1nds_0\tbus\nEJM15lQ1nds_1\tbus\nEJNv-W_Wh3s_0\tairplane\nEJNv-W_Wh3s_1\tairplane\nEJOO-gnqZOQ_0\tperson\nEJQZBc87T7Q_0\tperson\nEJTbpxYS19w_0\tperson\nEJdJUArfCgA_0\tperson\nEJdJUArfCgA_1\tbicycle\nEJ2XL046J4A_0\tperson\nEJ3IJ7_jx0s_0\tknife\nEJ3IJ7_jx0s_1\tknife\nEKDm7Y7dQ-g_1\tbird\nEKETFVqhfZI_0\tperson\nEKOgJfGpWw8_0\thorse\nEKPKBwGLkg0_0\tperson\nEKR2BQWkMTI_1\tperson\nEKf-TzUsoG8_0\tperson\nEKsbh9eVG0w_1\tairplane\nEKv1nvgLQLc_0\tmotorcycle\nEK2VY_FFN04_0\tperson\nEK56Obpu5ME_0\telephant\nEK56Obpu5ME_4\telephant\nEK5-ZuOavbM_0\ttrain\nEK5-ZuOavbM_1\ttrain\nEK5-ZuOavbM_2\ttrain\nEK7wRGel2vk_0\tperson\ncuXky9bc80o_1\telephant\ncuXky9bc80o_3\telephant\ncuXky9bc80o_0\telephant\ncuYker921kg_0\tperson\ncuZPt_f2GfE_0\tperson\ncusvncJOcwQ_0\thorse\ncu0Z8d-ioZA_0\tairplane\ncu_YsyYcbL0_0\tcat\ncvBKWYZidIs_0\tperson\ncvFAAQuXQR8_0\tperson\ncvJuXsDfcUY_0\ttrain\ncvUktXqTBBA_0\tcar\ncvUktXqTBBA_1\tcar\ncveuhB6Z_D8_1\tbicycle\ncveuhB6Z_D8_6\tbicycle\ncvfI6ccn-J4_0\tperson\ncvgZ-1Uaigk_0\tperson\ncviAzkIEA00_0\tskateboard\ncvlOlYpovm8_0\tperson\ncvyLalOdUEY_0\tperson\ncvyTQ9oFD8s_0\telephant\ncv9PMwKXLoA_0\tperson\ncwBgT8f3504_0\tperson\ncwB99KCLazI_3\tperson\ncwEuIwecOZA_0\tcar\ncwHQZi15U3s_1\tbear\ncwHQZi15U3s_2\tbear\ncwKndGwjXho_0\tperson\ncwKndGwjXho_1\tperson\ncwPtR7LsWag_1\tperson\ncwPtR7LsWag_0\tperson\ncwTq-wB6R3U_0\tskateboard\ncwe2t4eoAs0_0\tperson\ncwf1OksNfQ0_1\thorse\ncwjK5oxoq5Y_1\tperson\ncwjK5oxoq5Y_2\tperson\ncwmY9UYaukc_0\tperson\ncwnltT3Eelo_2\tbicycle\ncwp0G17bk0I_0\ttruck\ncwp8Oe0F6y0_0\ttruck\ncwsLz_ppMx8_0\ttruck\ncwsx0Rs732s_0\tperson\ncwyDOlWxH00_0\tbus\ncwzHLMKmpWM_0\thorse\ncw054hU6MdM_0\tperson\ncw4vlk-0siU_1\tboat\ncw45Y0beNG4_0\tbus\ncw55i8mKHnE_0\tperson\ncw55i8mKHnE_2\tperson\ncw57dOs_v5A_0\tbear\ncxAcLoLkk2g_0\tperson\ncxJp5-r_mjQ_0\tperson\ncxLrrWl89wo_0\tperson\ncxMcoeT1INo_0\tperson\ncxQENdEkIVQ_0\tskateboard\ncxSj2n8O4Vk_0\tperson\ncxUXpTWO4iY_0\ttrain\ncxbTIQtmtLs_0\tperson\ncxiI7jApblc_0\tboat\ncxkH0GxPEqU_0\tmotorcycle\ncxm8wGi_pl4_0\tperson\ncxsitsK8l9w_0\thorse\ncxsitsK8l9w_1\thorse\ncx0cCIp1KeU_0\tperson\ncx0cCIp1KeU_1\tperson\ncx0tj_0g0-k_0\tperson\ncx2bUajKTrw_0\tperson\ncx4EC6uXkkY_3\tboat\ncyBgPXda4lw_0\tperson\ncydwQgvjXlk_1\tperson\ncyd0m3k4Iv8_0\tcat\ncynwjNSXfDs_0\telephant\ncyz45rMhH9E_0\tperson\ncy4xwLUwDN4_0\tperson\ncy4xwLUwDN4_1\thorse\ncy4xwLUwDN4_3\thorse\ncy5IjIQ0UNQ_0\tmotorcycle\ncy58Sr7mA_Q_0\tknife\ncy6woAEQ0aU_0\tknife\ncy8BRHRLKa4_0\ttrain\ncy9CeQwHsws_0\tbird\ncy9kq-lD2Q8_0\tskateboard\nczD_BiifXv4_0\tknife\nczLen_XZrRo_0\thorse\nczUjYoRVVYw_1\thorse\nczec9DaQ1sQ_0\tperson\ncze3sm-N48s_0\tperson\nczjU6Q4s1jc_1\tperson\ncznO_APZ6xQ_0\tbear\nczpxbOFiY_Q_1\tperson\nczpxbOFiY_Q_0\tperson\ncztHS4laeBQ_1\tbicycle\nczto2OaEIww_0\tperson\ncz0dXFpjC6o_6\tbear\ncz0dXFpjC6o_4\tbear\ncz0dXFpjC6o_5\tbear\ncz5kAZB6n0k_3\tbear\ncz6eGvs1xNE_1\tmotorcycle\ncz8sE1Vn4Gw_0\tperson\ncz83QPHVLnk_0\tumbrella\nc0GrJULqad0_0\tperson\nc0GstZDjoNM_0\tperson\nc0IYOMYovRo_1\tperson\nc0J3zJ8n3SI_0\thorse\nc0LibLcues0_0\tbear\nc0MEfCeuV5U_0\tbird\nc0MdSWVdmqY_0\tbus\nc0PyfX2HFqE_0\tperson\nc0TJZWOz78g_1\tdog\nc0XKBQNwSlg_0\ttruck\nc0aHKGTYgeo_0\tperson\nc0bZsiE4obs_0\thorse\nc0jq_aReY5M_0\tmotorcycle\nc0kH2qIyG7E_6\thorse\nc0kH2qIyG7E_4\thorse\nc0lBfqi79wQ_0\tcow\nc0lDR6ABjTE_2\tperson\nc0nRMc9KiiQ_0\tdog\nc0nXpd7yJsk_0\tperson\nc0o_nv0BL6Y_1\tbear\nc0pzN4lVApI_1\tperson\nc0qkbu5wLF8_0\telephant\nc0qkbu5wLF8_2\telephant\nc0wve_629pA_0\tperson\nc0yrclVs1YA_0\tcat\nc02KdAN0Hwg_0\tbird\nc04Vd9VQao8_0\tperson\nc04ixznYflE_1\tgiraffe\nc07Yqknz4KI_0\ttrain\nc07k0EtqcVs_1\tcar\nc08cFHAOc7I_0\ttrain\nc0_M6VhGXOo_0\tperson\nc0_M6VhGXOo_1\tperson\nc1JGF-ltiJ8_1\tbicycle\nc1JGF-ltiJ8_2\tbicycle\nc1PUETYl8Lk_0\tairplane\nc1QAgByBiYE_0\tperson\nc1WZ6dEz6kw_0\tairplane\nc1XMeGkSwJQ_0\tperson\nc1XfiRiOTb0_0\thorse\nc1a_E7CZsVk_0\tperson\nc1djg96PnM0_1\tperson\nc1djg96PnM0_0\tperson\nc1hBqL_LWE0_3\tbird\nc1j8TlZsEmQ_0\tboat\nc1laLoj4fM8_0\tperson\nc10eOkpL080_0\tperson\nc10eOkpL080_1\tperson\nc2B7cQwr4Pk_0\tperson\nc2EIdJJnku0_0\tmotorcycle\nc2E5_n_bZKc_0\ttrain\nc2Kh-3yj9Ak_0\tperson\nc2MTwEvPGGk_0\tperson\nc2MUYY-qPhA_1\tbus\nc2MqPrUNXQ4_0\ttrain\nc2UDI136z20_0\telephant\nc2UDI136z20_4\telephant\nc2UDI136z20_5\telephant\nc2UDI136z20_7\telephant\nc2YlmT-aFE4_0\tcat\nc2a9uwUCFK8_0\tcow\nc2dk3AjUcYs_0\tperson\nc2gJYqYcsZg_0\tperson\nc2luSxdPZ6A_0\tperson\nc2m_PmRSEmw_0\telephant\nc2qJhOvlIUU_0\tairplane\nc2xTBZttrzA_0\tperson\nc22HGSTHjBA_2\tknife\nc22HGSTHjBA_1\tknife\nc22yvcXZcM0_0\tbird\nc2_qHguvZbI_2\tbear\nc2_qHguvZbI_0\tbear\nc3E9z6F-Txk_0\ttrain\nc3J2U0kR6Hg_0\tperson\nc3TisGCbmoU_1\tperson\nc3Ur6j05SgQ_1\tbicycle\nc3YFgnDBuXw_0\tperson\nc3bCGnwqGxc_0\tcar\nc3eo0_ftrn4_0\tcow\nc3pP__Uybq8_0\tperson\nc3wt1MUbgD4_0\tperson\nc3wt1MUbgD4_1\tperson\nc37EOoRHd7E_2\ttruck\nc4A01X82TfI_0\ttrain\nc4FmSUmvYbo_0\tperson\nc4FmSUmvYbo_1\tperson\nc4Hh2XdTBGY_0\tcow\nc4ICOFVvcTs_0\tperson\nc4e-qA4esVY_1\tperson\nc4iCXPdqm6c_0\telephant\nc4jbOCZyGsQ_0\tperson\nc4k8Yk1x3H8_1\tperson\nc4k8Yk1x3H8_0\tperson\nc4xRJS9_5Fk_0\ttrain\nc4xRJS9_5Fk_1\ttrain\nc40Mwg88VJI_0\tperson\nc43ihGsR1eA_1\tperson\nc5AKIs1XUhc_1\tbicycle\nc5AKIs1XUhc_2\tbicycle\nc5AKIs1XUhc_3\tbicycle\nc5BYdZTaBgc_0\tperson\nc5CmxgLHcxA_0\tbus\nc5Fw-Fi4daE_0\tcow\nc5GANV8PlSM_0\tperson\nc5GIQcIJ9Tc_0\ttruck\nc5GOwfkZXFk_0\tperson\nc5GOwfkZXFk_1\tperson\nc5Q2ZeMDx3o_0\ttrain\nc5TlkWtFymE_3\tdog\nc5WT0W8SfGg_0\tcow\nc5WT0W8SfGg_5\tcow\nc5WT0W8SfGg_1\tcow\nc5WT0W8SfGg_2\tcow\nc5WT0W8SfGg_3\tcow\nc5WT0W8SfGg_4\tcow\nc5cooFy7-SM_1\telephant\nc5hEygqOXOU_0\tperson\nc5oiA5xy15M_0\tperson\nc56nid2YSes_6\tbird\nc56nid2YSes_0\tbird\nc56nid2YSes_1\tbird\nc56nid2YSes_2\tbird\nc56nid2YSes_5\tbird\nc56nid2YSes_8\tbird\nc56nid2YSes_9\tbird\nc5_dNG2vWXg_0\tcar\nc6EIognIYWs_0\tbird\nc6ZQRNXfcZA_1\tperson\nc6a4xySAJ0o_0\ttruck\nc6niMRNXDeo_0\tperson\nc6qKbpvd-iw_0\tperson\nc6rbqnU4LXs_2\tmotorcycle\nc6rbqnU4LXs_0\tmotorcycle\nc6s839WnVhE_0\ttruck\nc6yBOD3Wo5A_0\tperson\nc7B-3x-3V34_0\tperson\nc7ILC5wYs8A_0\tperson\nc7KoGv5Ha7k_0\tperson\nc7PMPnuPjp8_0\tperson\nc7RFexe2Ba4_1\tbicycle\nc7RFexe2Ba4_3\tbicycle\nc7RFexe2Ba4_0\tbicycle\nc7RFexe2Ba4_2\tbicycle\nc7SMRurbkY4_0\tbus\nc7bKlPVR5pI_0\tboat\nc7hVbIhp0Wc_0\tperson\nc7jWXqWoMz0_4\tbicycle\nc7s8weR8lEY_0\tperson\nc7v4ZFCK-A4_0\tperson\nc70kaPblMLU_0\tcow\nc74hYNtpwdA_0\tdog\nc75cllxWxZE_0\tperson\nc7_op6G05l0_0\tairplane\nc8B4ZVLv364_0\tperson\nc8Cl-5olqWk_0\tmotorcycle\nc8Gaja-xUeQ_1\tperson\nc8I3JAxoLTs_0\tbicycle\nc8I3JAxoLTs_1\tbicycle\nc8I3JAxoLTs_3\tbicycle\nc8LHqWmKrJU_1\tairplane\nc8LHqWmKrJU_2\tairplane\nc8Mo16hH7qs_0\tperson\nc8UrmdREAO8_0\tperson\nc8Y7MJRWFqE_0\tcat\nc8Y8y9BsPHw_0\tcow\nc8b9qqF9Xvw_0\tperson\nc8b9qqF9Xvw_1\tperson\nc8ezNTNUXqc_0\tcat\nc8wbvQnndJc_1\tbicycle\nc8wdGQw1jB4_1\tbus\nc8wdGQw1jB4_2\tbus\nc8y3bmW0X9s_1\tcow\nc8zphqgYcJM_0\tperson\nc80SYyKXCCw_0\tperson\nc8_fHVnrzZ8_2\telephant\nc9EDbgCRGP0_0\tperson\nc9GKsfyRkmE_0\tperson\nc9IdrMV-Y_Y_0\tperson\nc9Q9LPaqyug_0\tumbrella\nc9SbfXgAoO8_1\tairplane\nc9Somjq2gLs_0\tumbrella\nc9WDXLFtYLU_0\tbus\nc9XaEHVxu4M_0\tperson\nc9Y9a6KVWRE_0\tbird\nc9Y9a6KVWRE_1\tbird\nc9ZWCwVv6Q0_0\tperson\nc9dPiEkCwR4_0\tmotorcycle\nc9gCDztKasg_0\telephant\nc9pYz2lTh3I_1\tperson\nc90ldeMSfL0_0\tcat\nc94gzpjmj24_0\tperson\nc9_87BKOW1I_0\tcow\nc-CCw_cyicE_0\tcow\nc-G0LV4kyY0_0\tcar\nc-T9ITcEW9c_0\tperson\nc-T9ITcEW9c_1\tperson\nc-ZnwBvVFGE_0\tperson\nc-gH6T1q-sk_0\tperson\nc-pKAy_3arM_0\tperson\nc-uOjPSq-10_0\tcow\nc-vwn6zqogs_0\tperson\nc-vwn6zqogs_1\tperson\nc-4uPwFKBdY_0\tperson\nc-_iMD-ihnE_0\tmotorcycle\nc-_94CuEo_M_1\tperson\nc_SQI7NirwY_0\tperson\nc_THUYYi_-k_0\tairplane\nc_YojhaB5pI_0\tmotorcycle\nc_jNM33kJuA_0\tperson\nc_rUQgBtHY4_0\tperson\nc_rUQgBtHY4_2\tperson\nc_rUQgBtHY4_1\tperson\nc_wkIYzEEDk_0\tdog\nc_6OcDyZ93k_0\tbus\nc_9GO2BbPz4_0\thorse\ndAQu2GQSyrY_0\tcat\ndAS6SqC7TCw_1\telephant\ndAVIZQJ5Af4_0\tperson\ndAqurx13i7I_0\tknife\ndAynVVxxb_o_0\tperson\ndA7mx3mrJeA_0\ttrain\ndA_ZtitJeMA_0\tperson\ndBDSqZ8rirA_0\tperson\ndBGKqrEvsIE_0\tboat\ndBGKqrEvsIE_4\tboat\ndBKexOUQSQA_0\tcow\ndBKexOUQSQA_1\tcow\ndBKexOUQSQA_2\tcow\ndBKexOUQSQA_4\tcow\ndBKexOUQSQA_5\tcow\ndBKexOUQSQA_6\tcow\ndBOrrvJDv54_1\tskateboard\ndBPu5iVlw1Y_2\thorse\ndBSryinfjiI_0\tperson\ndBS9maEElcw_0\tperson\ndBUpfcdFDUQ_0\tbicycle\ndBWeUQd06l4_0\tperson\ndBWeUQd06l4_1\tperson\ndBiGneGqmh0_0\tcow\ndBk2FwZgrtk_0\tcow\ndBq77lvujCk_0\tbird\ndBuvGegR_vA_0\tperson\ndByVvpTlwL4_1\tknife\ndB29dsCcN9s_0\ttrain\ndB43vSgLY2M_0\tperson\ndCG24UL_NeM_0\tperson\ndCSF80Y6lso_0\tperson\ndCSF80Y6lso_1\tperson\ndCZ9suBocXk_0\tperson\ndCgz-7OgwMQ_1\tperson\ndCl8hSleXYQ_0\tcow\ndCoi3rXWgbM_0\tperson\ndCqdvmS1jts_0\tperson\ndCqdvmS1jts_1\tperson\ndC9rTC3kzsI_0\tcow\ndDADJZV4i74_0\thorse\ndDA5p5TJ03g_0\tperson\ndDB84W_zVOI_0\tskateboard\ndDB84W_zVOI_1\tskateboard\ndDE3p8Gs878_0\telephant\ndDGiQLFJtPs_0\tbicycle\ndDIbBZtEJ2w_0\tknife\ndDLgQQ2XRc8_5\thorse\ndDLgQQ2XRc8_3\thorse\ndDLgQQ2XRc8_6\thorse\ndDO-RlSt3Gw_0\tperson\ndDQ58wciink_0\tcow\ndDZYTPEd9KE_1\tairplane\ndDacKPH4sOw_0\tcar\ndDacKPH4sOw_1\tcar\ndDcBtNpmCeU_0\tperson\ndDgcHWpKMeo_0\tperson\ndDkaPLEvAwM_0\thorse\ndDkaPLEvAwM_1\thorse\ndDkaPLEvAwM_2\thorse\ndDqe9sBGR24_0\tbird\ndDx0MqaKT2w_0\tperson\ndDx0MqaKT2w_2\tmotorcycle\ndD-AlVwxf-g_1\tcow\ndD_Ew85jXzk_1\ttrain\ndD_PbxvCBcA_1\tperson\ndECTTSpEUKg_0\tperson\ndEW9ZwvMsDE_0\tcat\ndEc5fHlEXCo_0\ttruck\ndEuzpQL0tNo_7\telephant\ndEuzpQL0tNo_1\telephant\ndEuzpQL0tNo_2\telephant\ndE7OwbOHsu8_0\tperson\ndE7WsfeVkI8_0\tperson\ndE7X93gdVPQ_0\tcat\ndFCUyBTrvNM_0\thorse\ndFCu7E6aYM4_0\tperson\ndFCu7E6aYM4_1\tperson\ndFEo5YKHAcA_2\tskateboard\ndFEo5YKHAcA_0\tskateboard\ndFMPz16FOzE_0\tmotorcycle\ndFZSSPvMBqE_0\tzebra\ndFZSSPvMBqE_1\tzebra\ndFa7TcQRCUU_1\tbird\ndFbZxetmjCQ_0\tskateboard\ndFkNDweVNFU_0\tcat\ndFpJq9s5fec_1\tbicycle\ndFpJq9s5fec_2\tbicycle\ndFsDjjWW00Q_0\tknife\ndFth5-8MEhM_0\tperson\ndF7OkxFt3I8_0\tperson\ndF_aGgW1jcM_0\tperson\ndGE7t6KgXHc_0\tperson\ndGFrWX61Zk0_0\tperson\ndGS01inQU1U_2\tperson\ndGS01inQU1U_0\tperson\ndGS01inQU1U_1\tperson\ndGZBUkIXMpo_0\tperson\ndGZ_pzDrl70_0\tperson\ndGdh_BHleU4_0\tboat\ndGh51ZQ9QAg_0\tbird\ndGk8D_De-2E_0\tperson\ndGk8D_De-2E_1\tperson\ndGpbPaorWys_1\tbear\ndGq1bpRxbiA_0\tperson\ndGyR5TWO-p4_1\tperson\ndG0CtnphYzg_0\tperson\ndG5mjfvTY7c_0\tboat\ndG7DSOtetMY_0\tknife\ndG9J5UpxeyY_0\tperson\ndG9J5UpxeyY_1\tperson\ndHCgtjlT_Lg_4\thorse\ndHCpH8dTwfw_0\thorse\ndHF9NIqrx6Q_0\tcar\ndHGIXivupi4_0\tperson\ndHGIXivupi4_1\tperson\ndHGIXivupi4_2\tperson\ndHJkOetpjQw_0\tbus\ndHO6vTrB66w_0\tperson\ndHO6vTrB66w_1\tperson\ndHVDjpivOKw_1\tperson\ndHVDjpivOKw_0\tperson\ndHVgQCO07SU_1\tperson\ndHVgQCO07SU_2\tperson\ndHfs5GT-YpY_0\tcow\ndHg1Xorklm0_0\tperson\ndHimuOjriUc_0\tcow\ndHnk6ulSNSo_0\tperson\ndHnsZs2Riqk_0\tperson\ndHnsZs2Riqk_1\tperson\ndHsD3F8dTpc_0\tbird\ndHvlIrb2Q-k_0\tperson\ndHwR5d4xGEk_0\tknife\ndHwR5d4xGEk_1\tknife\ndHwR5d4xGEk_2\tknife\ndHwR5d4xGEk_3\tknife\ndHwR5d4xGEk_4\tknife\ndHxmY1bGbNc_4\tbird\ndH89qyunr6s_0\tperson\ndH94i4xFlZU_1\telephant\ndH94i4xFlZU_6\telephant\ndH94i4xFlZU_0\telephant\ndH94i4xFlZU_5\telephant\ndH94i4xFlZU_7\telephant\ndICl73jYZ3M_0\tperson\ndICrafh45_I_3\tairplane\ndIDxqrhmBE4_0\ttruck\ndIDxqrhmBE4_2\ttruck\ndIEZ2kfTzzY_0\tboat\ndIJk0w4SnH8_0\tbird\ndIVtaleUNWI_0\tperson\ndIVtaleUNWI_1\tperson\ndIX81Ov0fUY_0\tperson\ndIZM-9d8bSQ_0\tperson\ndIZM-9d8bSQ_1\tperson\ndIm0Sv_iE2E_0\tmotorcycle\ndIqYGVVgYsU_0\tperson\ndIzMmAGaF6U_1\tskateboard\ndI93uXfSaRM_0\tbird\ndJB-DXpgq2U_1\tbird\ndJKAhixNM9Y_1\ttruck\ndJYNs94fv_0_0\tperson\ndJgqX3uy6z4_0\tperson\ndJg4R9cpbjI_0\tperson\ndJisrPH71tE_0\tperson\ndJi_dOrUZnw_0\tperson\ndJjrFTy9H3c_0\tperson\ndJkzzYh6BkY_1\tcat\ndJnRg-1zO1g_3\tknife\ndJqGj0FeC9I_0\tcat\ndJvoaqZjIDw_0\tperson\ndJ2B9A0mYl0_1\tdog\ndJ2kWscI-tc_1\tdog\ndJ4PR9zme-s_0\tperson\ndJ6S9bSEYDc_0\tcow\ndJ8J7WOLZtk_0\tskateboard\nELDxjZXMtCg_0\tperson\nELLTxQ47f90_1\tperson\nELLTxQ47f90_0\tperson\nELNgTt9Jswc_0\ttrain\nELOZutiZKMM_0\tperson\nELOZutiZKMM_1\tperson\nELPpy9ABb3s_1\telephant\nELTeW4X2mGY_1\tcow\nELbg8i93W8I_0\tperson\nELbjX2Ya0_o_0\tdog\nELmktutrkDk_0\tperson\nELqA6fb0un8_0\tperson\nEL8H94Lycf8_0\tperson\nEMAVfcO6JFE_0\tperson\nEMKcTJp7ehY_0\tperson\nEMOpCv3vVfE_1\tskateboard\nEMP7p3FNxZU_0\tperson\nEMU8vGL7ZFQ_0\tperson\nEMb28oLn66k_0\tairplane\nEMgh3pwtnXg_0\tperson\nEMiRla730lM_1\tperson\nEMiRla730lM_0\tperson\nEMmg9OKgyBE_1\tboat\nEMmmZ6ADzfI_0\tskateboard\nEMngQ4YMTv0_0\tmotorcycle\nEMorunu9Ik8_0\ttruck\nEMqd3lVNUxg_7\tbus\nEMuGAIADn3s_0\tperson\nEMwcDTRPPMw_0\tairplane\nEMyQWQ_Yobc_0\tdog\nEM0yGxKJWqY_0\telephant\nEM1R3HXt7DY_0\tperson\nEM1z9o601v4_0\tknife\nEM3tBaIyR0o_0\tmotorcycle\nEM5e1snhsCs_0\tperson\nEM-k8ZAva6k_0\tperson\nEM-zjCQyGAc_0\tdog\nENAr6j6fcWU_0\tbird\nENCHiWUV4dk_0\tperson\nENI-JuSPNQA_0\tmotorcycle\nENSEWig-4ZM_0\tknife\nENXXFcrrxGM_0\tcar\nENc0uxXKsaI_0\tperson\nENkqstdLKl4_0\tperson\nENk4JRIbEaE_1\tperson\nENnPjtPjU6c_0\tperson\nENtoAci6OwQ_0\tcow\nENvdCzm4whM_0\ttruck\nENvdCzm4whM_1\ttruck\nENvdCzm4whM_2\ttruck\nEN0Klsi-AKY_0\tbicycle\nEN4IIJjhBeI_0\tzebra\nEN-QCSvtEd0_3\telephant\nEN-4SsZnn-k_0\tperson\nEOEXVXG1TDk_0\tperson\nEOVNlasJhIo_1\tperson\nEOdHjLYopi0_1\tbird\nEOedzXaVI4U_2\tbird\nEOe3CfOT53g_0\tperson\nEOmVKXeoKBc_1\tairplane\nEOq-3ZRn0SQ_0\tskateboard\nEOt6j5ecODw_0\ttrain\nEO7NccQDQyM_0\tcat\nEO8Dpvy4oXs_0\tzebra\nEO8mQrkIZuY_0\tperson\nEO_DwtyWh0s_3\tperson\nEO_DwtyWh0s_0\tperson\nEO_DwtyWh0s_1\tperson\nEO_DwtyWh0s_2\tperson\nEPOXqdKNjKg_2\tgiraffe\nEPU630RSI5c_2\tperson\nEPU630RSI5c_0\tperson\nEPWmdYKJaXk_0\tbird\nEPycDWf2vY4_0\tskateboard\nEP_ezteElzk_0\tperson\nEQBFPIdI8gY_0\tperson\nEQC8eEghvs8_0\tperson\nEQNSjjkyRBg_0\tperson\nEQNSjjkyRBg_1\tperson\nEQTee9qqTZs_0\tperson\nEQVCizuJQFY_0\tumbrella\nEQdEm5HuPG4_5\ttrain\nEQx1XHc0mRM_1\tmotorcycle\nEQzXCoQRbas_1\ttrain\nEQ5rBLoiT78_0\tbus\nEQ9-lbsee1s_0\tperson\nERCvzMzkDhg_0\tskateboard\nERGwo6vIXdQ_0\tperson\nERJR-zQYyH4_0\tperson\nERR-qjVJ3lY_0\tperson\nERVp_cX1juc_0\tperson\nERev6rrd5XA_3\tmotorcycle\nERyyYMb2fFk_0\tcow\nERzh41uuxUE_3\tbicycle\nER0IdSeymeI_0\tperson\nER0IdSeymeI_1\tperson\nER03PLUBt4c_0\ttrain\nER03PLUBt4c_1\ttrain\nER03PLUBt4c_2\ttrain\nER03PLUBt4c_3\ttrain\nER53sUYwz1I_0\tzebra\nER6vMbAyQ6E_1\tskateboard\nER6vMbAyQ6E_0\tskateboard\nESDQMC_70Pk_0\tbear\nESInVf3ioiA_1\tdog\nESMdbpGXk4I_0\tperson\nEST4CUX19Eg_0\tperson\nESokfN84OYk_0\telephant\nESokfN84OYk_3\telephant\nESokfN84OYk_4\telephant\nESpwZsbwQGA_1\telephant\nESpylyha7g0_0\thorse\nESt5TEXuGIM_0\tperson\nESt5TEXuGIM_1\tperson\nESwsyjITYGM_0\tskateboard\nETBia7K3ZHw_0\tmotorcycle\nETBia7K3ZHw_2\tmotorcycle\nETQTZgnfRK4_1\tperson\nETQi93bP3YQ_8\telephant\nETQi93bP3YQ_2\telephant\nETTgj1pxvME_2\tperson\nETWI4nXFANg_0\tperson\nETcmjY7Jigo_1\tmotorcycle\nETgN7EcVVQI_1\tperson\nETmYIq5CF2k_0\tmotorcycle\nET4xC8Wl_CA_0\tperson\nET4yAsJTvlk_0\tcow\nEUH3oSBX950_0\tperson\nEUH3oSBX950_1\tperson\nEULIYiiV-O0_0\tperson\nEULIYiiV-O0_1\tperson\nEULchAlLDfM_0\ttrain\nEURUU5P5flo_0\tperson\nEUcHraiUCjA_0\tbicycle\nEUcWvzarnb0_0\tumbrella\nEUdNEi4myuA_0\tperson\nEUtfoblvHn0_0\tperson\nEUuCDfb8lf4_2\tperson\nEUuCDfb8lf4_1\tperson\nEU93Mw9WGkc_0\tskateboard\nEVBHY1qGVos_0\tperson\nEVBHY1qGVos_3\thorse\nEVElggpPSCM_0\telephant\nEVE2SBJ-2S8_0\tperson\nEVH8Ql7_pYE_0\tperson\nEVTW6Ka7-NU_0\tperson\nEViJ_JQcv5c_0\ttrain\nEVmGPGaP6bY_0\tperson\nEVnnSfmb4go_0\tgiraffe\nEVn52FBjG9E_0\tperson\nEVn52FBjG9E_1\tperson\nEVxEEc26TWg_1\tgiraffe\nEWLiwu56oQc_1\tperson\nEWNd02yWiYw_0\tperson\nEWP0Hhxsf58_0\tperson\nEWQo_1YXfYM_1\tperson\nEWQo_1YXfYM_0\tperson\nEWTvjjpAUm0_0\tairplane\nEWXyQ1tS3jI_0\telephant\nEWdNgXvr54s_0\tdog\nEWfPRTjQO9k_0\tdog\nEWgsivaLhl0_6\telephant\nEWgsivaLhl0_1\telephant\nEWgsivaLhl0_2\telephant\nEWi25l2D0cw_0\tcat\nEWkndzLXvLc_0\tbicycle\nEWuOSRFWTzg_1\telephant\nEW0Mgele6Gc_0\tperson\nEW0Mgele6Gc_1\tperson\nEW6FHYagN0Y_0\tperson\nEW98OEvTxM8_0\tperson\nEW-Zuo7ArI4_0\tdog\nEXDDO7gLoL4_1\tperson\nEXDDO7gLoL4_2\tperson\nEXDDO7gLoL4_3\tperson\nEXDDO7gLoL4_4\tperson\nEXGwKMtyR1M_0\tperson\nEXHZgqkcXG8_1\tcow\nEXJITC62tU4_0\tumbrella\nEXSMz4HnWfg_0\tdog\nEXaiYiUQrMI_1\tdog\nEXfiGeKWKTk_7\tairplane\nEXfiGeKWKTk_1\tairplane\nEXiGyq1TD80_0\tperson\nEXiGyq1TD80_1\tperson\nEXkbZbo1n5U_2\telephant\nEXkbZbo1n5U_0\telephant\nEX817S50E5U_0\tperson\nEX-dqihLUwY_0\tmotorcycle\nEX-dqihLUwY_2\tmotorcycle\nEYCaJR9md8k_0\tairplane\nEYEWPdaJuL0_4\tbird\nEYEWPdaJuL0_5\tbird\nEYEwLM8YTwc_0\tperson\nEYFMOBeF9UE_0\tknife\nEYHtNGztiRQ_1\tcar\nEYKrEDelAdU_1\tbear\nEYM1oXAmBq0_1\tbus\nEYRf00qGMVU_0\ttrain\nEYV6D6G6t2c_1\tperson\nEYZsYCSedGw_0\tperson\nEYd9lSK7Bbk_0\tperson\nEYhtY59whvs_0\tperson\nEYmWVBDEutA_0\thorse\nEYnEMtlMaPY_0\tperson\nEYoj8D64YLA_0\tskateboard\nEYuLodJTgYs_0\ttrain\nEY2pZ9A48ng_0\ttruck\nEY2pZ9A48ng_1\ttruck\nEY2pZ9A48ng_3\ttruck\nEY25PJWD2j4_0\tperson\nEY36YeIgOYI_0\tperson\nEY36YeIgOYI_1\tperson\nEZWcsRlXIA8_0\tperson\nEZbOH9yEe-A_0\tdog\nEZh1lf4yfCg_0\tperson\nEZ5Wa2duCoM_0\tperson\nEZ5Wa2duCoM_1\tperson\nEZ7d9ab31ys_0\tgiraffe\nEZ9-_7o9Vds_0\tbird\nEZ9-_7o9Vds_1\tbird\nEZ_xC5EBwvk_0\tbus\nEaBdeSUjDYs_0\tdog\nEaFSd7_S8kc_0\thorse\nEaQ1P4QyRsY_0\tperson\ndKEVBoMMD2w_0\tboat\ndKJz_EakSc4_0\tperson\ndKMb2S2SSfI_0\tskateboard\ndKTgMjbnNPQ_0\tskateboard\ndKiwficH2d4_0\tperson\ndKi4xI4vB-k_0\tumbrella\ndKlCFQxk5Dc_3\tperson\ndKlCFQxk5Dc_5\tperson\ndKlCFQxk5Dc_0\tperson\ndKlCFQxk5Dc_1\tperson\ndKlCFQxk5Dc_2\tperson\ndKq4S1IVjlA_0\tperson\ndLFWcgSewxs_0\ttruck\ndLH8fBNk89Y_0\tcat\ndLIld9ux7p4_0\tairplane\ndLT61O_htwI_0\tcat\ndLUCKkji5wo_0\tperson\ndLUCKkji5wo_1\tperson\ndLV2VJkpyMI_0\tairplane\ndLbhzrFtNC0_0\tperson\ndLhVV7DMXkw_0\tperson\ndLoxdmLuphk_0\tdog\ndLq5OW1xY54_0\telephant\ndLq5OW1xY54_3\telephant\ndLq5OW1xY54_2\telephant\ndLtQB9P_7BU_2\tbear\ndLty27VgJcc_0\ttrain\ndLvr7BjgsHg_0\tperson\ndLwXzYr8beg_0\tcar\ndL3dSZMnBko_0\tperson\ndL3vGWsRVCg_0\tknife\ndMDGwTdSHIo_0\tmotorcycle\ndMJQi7oYiqQ_1\tperson\ndMS5hB4uWdk_0\tbird\ndMWgiVqknaE_2\tperson\ndMWgiVqknaE_0\tperson\ndMZONdbNFbk_4\tbicycle\ndMZONdbNFbk_2\tbicycle\ndMdUZi9lxrU_0\tcat\ndMiwR-DS6UE_0\tcar\ndMsIDwHkWNE_0\tperson\ndMulBz-N8oA_0\thorse\ndM7lOj89YZE_0\tperson\ndM7-xh2kSmc_0\tperson\ndM7-xh2kSmc_1\tperson\ndM9u0c0qSV0_0\tcow\ndNCm5MtFcp0_0\tperson\ndNEAY77it7o_0\tperson\ndNShS9OdIoA_1\tperson\ndNShS9OdIoA_0\tperson\ndNSlL572gMU_0\ttruck\ndNSlL572gMU_1\ttruck\ndNVvIPWEH1Q_0\tperson\ndNVvIPWEH1Q_1\tperson\ndNdTs9Qa1A0_0\ttruck\ndNeF_3qppZQ_0\tskateboard\ndNj_77jiPcs_1\tcow\ndNknNwahiv4_0\tgiraffe\ndNoz32bgN0U_0\tcar\ndNpQfDg_dIg_0\tperson\ndNqdMh44imM_0\ttrain\ndNs2JO9SgGo_1\tairplane\ndNs2JO9SgGo_2\tairplane\ndNyMDstraS0_0\tperson\ndN1cn1CPEa8_0\tperson\ndODPVlzMR1A_0\tperson\ndOHuuTREVQk_0\tperson\ndOHuuTREVQk_1\tperson\ndOHuuTREVQk_2\tperson\ndOHuuTREVQk_3\tperson\ndOMW6BLHI2s_0\telephant\ndOMW6BLHI2s_1\telephant\ndOOQ32tmk14_0\telephant\ndORLSKDLr1w_0\tcat\ndOUVBpTWHzc_0\tperson\ndOVzO5pkY2o_0\thorse\ndOWhuaTBmr8_0\ttruck\ndOdX5nkOBoQ_1\tperson\ndOdYYCqd6i0_0\tperson\ndOdYYCqd6i0_1\tperson\ndOd-8kfbjz4_0\ttrain\ndOd-8kfbjz4_1\ttrain\ndOfNevz8wlc_0\tbus\ndO2CbXVpSl0_0\telephant\ndPA7g60qlnk_1\tboat\ndPJk57_DSuI_0\ttruck\ndPJ7_mdmjJo_4\ttruck\ndPJ7_mdmjJo_1\ttruck\ndPTnDrK0jl0_0\tknife\ndPZPjPwJCnA_0\tperson\ndPiOaLH0K4Y_0\tbear\ndPiOaLH0K4Y_2\tbear\ndPma_hb-MR8_0\tskateboard\ndPnxUa8yPbw_0\ttrain\ndPpwBkl-F9k_3\tbicycle\ndPpwBkl-F9k_0\tbicycle\ndPp0no_eYOQ_0\tdog\ndPqheqisvs8_0\tperson\ndPvgWsIPDr0_0\thorse\ndP0jXsi0KUw_0\tskateboard\ndP_-3SJLP1Y_0\tperson\ndQB4GI0Bgus_0\ttruck\ndQCFCRTz2rc_1\tgiraffe\ndQCFCRTz2rc_4\tgiraffe\ndQCFCRTz2rc_5\tgiraffe\ndQCFCRTz2rc_0\tgiraffe\ndQIQv4YkBaM_0\ttruck\ndQI-ReUS1hk_0\tperson\ndQM_-V4jSpM_0\tcat\ndQNG1syFdKQ_0\tperson\ndQPdAoRj8vw_0\tdog\ndQWw3losmfA_1\tbicycle\ndQY2wbSJyOQ_0\tperson\ndQh9dmaqW3s_0\tperson\ndQh9dmaqW3s_1\tperson\ndQlybGW3tbw_1\tcat\ndQnNTlCD_AQ_0\telephant\ndQnNTlCD_AQ_1\telephant\ndQoX3OkaI4M_0\tperson\ndQzWZhDVLYk_1\tperson\ndQ4hJadqL_w_0\tperson\ndQ62PlC9Frc_0\tzebra\ndRBb5v_Fv3g_0\telephant\ndRDdBvl4olg_0\tperson\ndRHTO6H764g_0\tperson\ndRHYGXImEBk_2\tperson\ndRHYGXImEBk_0\tperson\ndRInM_HaQZs_0\tbus\ndRVEs1099F8_0\thorse\ndRcLZtR6KFs_0\tperson\ndRcrvTR9xIY_0\tperson\ndRiBVua-2Ck_0\tperson\ndRjzvcGshbA_1\tperson\ndRjzvcGshbA_0\tperson\ndRs8FcKuu6w_0\tboat\ndRt8H1uQ5Og_0\tumbrella\ndRt8H1uQ5Og_1\tumbrella\ndR7jBT3cxr8_0\tperson\ndR8kCc9XNJs_0\tboat\ndR-8FlykNZ0_0\tperson\ndSAODa472ys_0\tbird\ndSAYK4yUlDs_4\tperson\ndSAYK4yUlDs_0\tperson\ndSAYK4yUlDs_1\tperson\ndSAYK4yUlDs_2\tperson\ndSAYK4yUlDs_3\tperson\ndSEv_R8nQik_0\tzebra\ndSFMrnh2szI_0\tcat\ndSLakvIEH9o_0\tbear\ndSLmBYdUku8_0\tperson\ndSQTVC-RyAU_0\tperson\ndSWhe4RgQ_w_0\tcat\ndSZBg-Vcr7E_0\tmotorcycle\ndSojBtCOkqQ_0\tperson\ndSx4IloBWZs_0\tperson\ndSzAX5l_fs0_0\tperson\ndSzAX5l_fs0_1\tperson\ndS0mBDDgP_A_0\tperson\ndS0mBDDgP_A_1\tperson\ndS8x0l5I7f0_0\tboat\ndTDxzi0o_Qg_1\tairplane\ndTMe2Vse97w_0\tcat\ndTVBSXs5Me8_0\tperson\ndTVKs9m3eZU_0\tcat\ndTm_DRCtjCo_0\telephant\ndTm_DRCtjCo_1\telephant\ndTrt1C_90H0_0\tknife\ndTurjz-gJek_0\tperson\ndT6A3DwqZb0_0\tboat\ndT8wudfW9gg_1\thorse\ndT-INB6puFM_0\tskateboard\ndT-INB6puFM_1\tskateboard\ndUAtLBDfmBo_0\tairplane\ndUAtLBDfmBo_2\tairplane\ndUC_SF_mN_E_3\thorse\ndUC_SF_mN_E_1\thorse\ndUInMUIPtTs_0\tperson\ndUJH8d3CMU8_0\tbear\ndUMLWt99A7o_0\tperson\ndUP4OTLrOA0_0\tperson\ndUW_G_--wI8_0\ttrain\ndUXFUWivXPA_0\thorse\ndUXFUWivXPA_1\thorse\ndUbP54CBYd0_0\tairplane\ndUm9A-1AoMU_0\tperson\ndUqrowFcbD0_0\tperson\ndUx_UfS9cQI_1\tdog\ndUx_UfS9cQI_0\tdog\ndU-bQRDInro_2\tbird\ndU-bQRDInro_4\tbird\ndVAMoKYgrwE_0\tperson\ndVKQhCF8o8w_0\tperson\ndVTHVxh6Tro_1\tknife\ndVWAD4gOu-8_1\tperson\ndVd7OzbhOq0_0\tperson\ndViVbA7N_AE_0\tairplane\ndVqPo7-p71Y_0\tperson\ndVtqTTZTFDQ_0\tperson\ndWCqnck4Um0_0\tperson\ndWFVX1psRZI_0\tbird\ndWGkW13rQBY_3\thorse\ndWGkW13rQBY_5\thorse\ndWGkW13rQBY_8\thorse\ndWVJFIzIKEc_2\tbicycle\ndWVJFIzIKEc_0\tbicycle\ndWVJFIzIKEc_1\tbicycle\ndWXSWEaCId8_1\tperson\ndWdOl13DwwY_0\tairplane\ndWdl9RdXrHo_0\tperson\ndWdl9RdXrHo_2\tperson\ndWd0sszZOXc_0\tperson\ndWesodD0ff4_0\tairplane\ndWgfwKBrSiE_0\tperson\ndWgpYitSv0c_0\tperson\ndWkrnxWB1CU_0\tperson\ndWlDN9Hozgg_0\tdog\ndWtqRwEurDU_0\tperson\ndW1oE_LHALo_0\telephant\ndW4DX7lQoGg_0\telephant\ndW5aU0U7K28_0\tperson\ndW53l1sR_zM_0\tperson\ndXEH9QiCyHk_0\ttrain\ndXEH9QiCyHk_1\ttrain\ndXKi3ZHjgWM_1\tumbrella\ndXLyWGJxHnI_0\tperson\ndXOsaszlVY0_0\thorse\ndXSuppGXFeI_0\telephant\ndXSuppGXFeI_1\telephant\ndXdFEix8vu4_0\ttrain\ndXjUZeuzgaw_0\ttrain\ndXkmG8AR82Q_2\tairplane\ndXkmG8AR82Q_5\tairplane\ndX6W4-sxsX0_0\tcat\ndX9J6yDM5Q8_0\tperson\ndX-4XwYWv48_0\tperson\ndYGOSaGjHQU_0\tperson\ndYQMrQe1pSk_0\tperson\ndYRIEDyD9Qs_0\tairplane\ndYRKwU2TJYI_0\telephant\ndYVcalOS1SE_0\tdog\nEacR2o35-kc_0\tbicycle\nEaeD7utPpTQ_0\tperson\nEakGzU5UgWI_0\tperson\nEakGzU5UgWI_1\tperson\nEakGzU5UgWI_3\tperson\nEamZ8De_WFE_6\telephant\nEamZ8De_WFE_0\telephant\nEamZ8De_WFE_2\telephant\nEamZ8De_WFE_3\telephant\nEamZ8De_WFE_4\telephant\nEavqjWy5gag_0\tperson\nEaxszmfn7WA_1\tperson\nEaxszmfn7WA_0\tperson\nEay0MFBCdqY_1\thorse\nEazzsVK1-pM_2\tumbrella\nEbJV0e75xtk_1\tperson\nEbJV0e75xtk_0\tperson\nEbWt1hAb3LQ_0\tperson\nEbXzlcsBsfA_0\tperson\nEbYJAv5c_G8_0\tperson\nEblX3oKGsBA_0\tskateboard\nEb1n2o0YpOM_0\tcow\nEb3sGSIWtCw_0\tperson\nEb7juFDG3Dw_0\tcar\nEcMh5TIKmzY_0\tperson\nEcNpsheyrIU_0\tperson\nEcNpsheyrIU_1\tperson\nEcWrNFz5J-o_1\tdog\nEcpsBV2FEBE_3\thorse\nEcsiLHpIvL4_0\tperson\nEcu8VEIC2y8_2\telephant\nEcu8VEIC2y8_1\telephant\nEcvYBldDm_U_0\tperson\nEdE8zCwJ56g_0\tperson\nEdE8zCwJ56g_1\tperson\nEdIfx7lQxEw_1\tdog\nEdIfx7lQxEw_0\tdog\nEdOvSD40Tb0_0\tcow\nEdTkeITBkvY_0\tperson\nEdTkeITBkvY_1\tperson\nEdaY0DFamDc_1\tskateboard\nEdfKMOIOHtI_0\tperson\nEds-fi9s-O4_0\tperson\nEd486SKW0kM_0\ttrain\nEd-ENhlS7Dg_1\tboat\nEeCjxMzh5_A_0\tperson\nEeDhzR9I-Tc_0\tmotorcycle\nEeLllq2Zim4_0\tdog\nEeMUemitsFU_0\tperson\nEeRqVkQ1Z7Q_0\tcar\nEeRqVkQ1Z7Q_1\tcar\nEeTRT4j5GcQ_0\tperson\nEeYRHJuK3wo_0\tboat\nEeYqy9QZZTU_0\tairplane\nEeb2vPJsaN0_0\tperson\nEee6rmiMYKY_1\tcar\nEesk8VSxpIU_0\tcat\nEetKMgVh0Pk_0\tperson\nEexaBL5jDL4_0\tknife\nEexaBL5jDL4_3\tknife\nEeyjjk9-BvY_0\thorse\nEe7CW7lZfXA_1\tperson\nEe7CW7lZfXA_0\tperson\nEfE6r-Iq5CM_0\tperson\nEfG_eBrAjdI_0\tmotorcycle\nEfHCZUHt0d8_0\tperson\nEfMCesQKyoE_3\tairplane\nEfNSTkpl6dQ_0\tperson\nEfSMsLkasg8_1\tperson\nEfjC0VVD2Do_0\tperson\nEfvRGCuPoF4_0\tperson\nEf1Tm3dKzbY_0\tmotorcycle\nEf2GKdopP_A_0\tperson\nEf7-yzJqZto_0\tperson\nEf9YiYODEbg_0\tcat\nEf9q8mAPYZA_0\tperson\nEf_N7JmICUU_10\tbicycle\nEf_5u21WLbs_0\tcat\nEgDOCraAd64_2\ttrain\nEgHVReOnDpM_0\tperson\nEgPKMlxhH0A_0\tperson\nEgPxUnCFS10_3\tknife\nEgYCBIlDm98_0\thorse\nEgf4iNTfanU_0\tairplane\nEgf4iNTfanU_2\tairplane\nEghxGvj6pTs_0\tperson\nEgl_1FgGUyE_2\tbird\nEgpSSMkQOEE_0\tbicycle\nEgxlP5S15uQ_1\tmotorcycle\nEg6YUwqAQqM_0\tperson\nEg7bJ46L4Cg_0\tairplane\nEg7bJ46L4Cg_1\tairplane\nEg7bJ46L4Cg_2\tairplane\nEg82FN1vC3A_0\tknife\nEg9-5uBMrpc_0\tcat\nEg-cp7jgFA0_0\tperson\nEhF73HJvEWo_1\ttrain\nEhKAs4Z1JE0_0\tperson\nEhSaOGOPUns_0\tskateboard\nEhbaW6F3U6I_1\tperson\nEhbuzBK5bes_3\tgiraffe\nEhbuzBK5bes_2\tgiraffe\nEhcmJOG2Jws_0\tperson\nEhfmC9Wa8xs_0\tperson\nEho09eptX7c_0\tperson\nEhpwK0_8UJA_0\tboat\nEhpz_gcdCcY_0\tknife\nEhpz_gcdCcY_1\tknife\nEhpz_gcdCcY_2\tknife\nEh6FARrS1VY_0\tskateboard\nEh7f9wgtUns_0\tbus\nEh88_JdkWWs_0\tperson\nEh-x-OzZxGo_0\tperson\nEiE9eIJ-Rv4_0\tcar\nEiLWN5T6wko_1\tperson\nEiNTdTOmvDU_0\tperson\nEiUbGE2f6fU_0\ttrain\nEiUbGE2f6fU_1\ttrain\nEiZG3M9_EMc_0\tbird\nEiaYgqLcbqM_2\telephant\nEibdBvTND-I_0\tperson\nEibdBvTND-I_1\tperson\nEine_0RExlI_0\tperson\nEi1XBJFaUeI_0\tperson\nEi1XBJFaUeI_1\tperson\nEi6ZitRjwdA_0\tperson\nEi7n3944Ovs_0\tumbrella\nEi9d8OX0ui0_1\tairplane\nEi9d8OX0ui0_0\tairplane\nEi9724H_wUs_1\tperson\nEi9724H_wUs_0\tperson\nEjcMZ8Y0Oeg_0\tboat\nEjgxtJaNIH8_0\tskateboard\nEj2wn6JRBzA_0\tskateboard\nEj7xV32Trwc_0\tperson\nEj8UwQiT5jk_1\tknife\nEj8UwQiT5jk_3\tknife\nEj_zFc5qxRw_0\tcat\nEkMGStKSilE_0\tperson\nEkMdmPclE3k_1\tdog\nEkTrskvsL5c_1\thorse\nEkWd3wPBEyg_0\tairplane\nEkawSvsvh3g_0\tperson\nEkdP_pWa9s0_1\tairplane\nEke0rATHhX4_0\tperson\nEkh_cm7q1y8_0\tcow\nEklOuZWH-8Q_0\tmotorcycle\nEkyydrsMSkY_0\tperson\nEk1DlGGsUdY_0\tumbrella\nEk4323MkRYo_0\tbicycle\nElJtz3uv-AQ_0\tperson\nElLiin7Cda4_1\tperson\nElLiin7Cda4_0\tperson\nElNzy4USrLA_0\ttruck\nElR4MuOUYKM_0\tbird\nElgmQr70py4_5\ttrain\nElrxptn-Zqo_0\tperson\nEluRnlB_s6c_0\ttrain\nEluRnlB_s6c_3\ttrain\nElwZ1M6McHo_0\tskateboard\nEl2nzuCxrGk_1\thorse\nEl5fRl-4vko_0\tknife\nEl9Efl32L8w_0\tperson\nEmDjVcaznIA_0\tzebra\nEmDjVcaznIA_1\tzebra\nEmDjVcaznIA_2\tzebra\nEmJeLKaG_hE_2\tbird\nEmJk7hDSzaM_0\tperson\nEmJk7hDSzaM_1\tperson\nEmJk7hDSzaM_3\tcow\nEmWzmxDjjOs_0\tperson\nEmkwHglcEKA_1\tmotorcycle\nEmlvoH2AxWs_0\tperson\nEmqEntvqLw0_0\tairplane\nEmsMjm0VXJc_0\tskateboard\nEm44RLa7Qp4_0\tperson\nEm_UT-f7q0E_1\ttrain\nEnJkvPAMuaM_0\ttrain\nEnJkvPAMuaM_3\ttrain\nEnJkvPAMuaM_1\ttrain\nEnL2FiVIuJg_0\telephant\nEnL2FiVIuJg_1\telephant\nEnS1Yte0Xzw_5\tknife\nEnS1Yte0Xzw_2\tknife\nEnUW7YSmli0_0\thorse\nEnVtYzkXwjM_0\tperson\nEnbXP2xywwk_0\tperson\nEnmwKpZJTQc_0\tperson\nEnoNrjMNAC0_0\tperson\nEnrcDrbyUxY_0\tperson\nEnrcDrbyUxY_1\tperson\nEoaeqRc88HU_0\tperson\nEoallCLchmo_0\tcow\nEodtHMtH9zw_0\tperson\nEojPQY8nQ2Y_0\ttrain\nEouV6Ut4NP8_1\tperson\nEouV6Ut4NP8_0\tperson\nEouZIHzCFq8_0\tairplane\ndYVtJPfJmf4_0\tperson\ndYgPc190feM_0\tperson\ndYgxCdKNrIo_1\tairplane\ndYjCbeBAgYs_0\tperson\ndYmREF5dDkw_0\tdog\ndYosdOz5mZo_0\tperson\ndYr1OKT1lCA_0\tperson\ndYyHudM-fQc_0\tperson\ndYyHudM-fQc_1\tperson\ndYzh49Wr9bQ_0\tairplane\ndY9dlzr4w0Y_0\tperson\ndZFiRqMkFPc_0\tperson\ndZHJc_1os9Q_1\tperson\ndZHJc_1os9Q_0\tperson\ndZHJc_1os9Q_2\tperson\ndZMQgxFHQPA_0\ttrain\ndZQ2o-4a5tU_0\tperson\ndZSQXDQcafc_0\tknife\ndZUOCWwr2xs_0\tknife\ndZaFo3C_1ts_0\tperson\ndZdvK41DxLI_3\tcar\ndZio0uN6DHY_0\thorse\ndZio0uN6DHY_1\thorse\ndZjnkqYO2lE_0\ttruck\ndZmG64W2CtM_2\tumbrella\ndZmG64W2CtM_0\tumbrella\ndZsXB4o-wdE_0\tairplane\ndZzfVDrmMj0_0\tbird\ndZzfVDrmMj0_1\tbird\ndZ1vVETiQAQ_0\tperson\ndZ6ub2CEvbg_1\tbicycle\ndZ6ub2CEvbg_2\tbicycle\ndZ6ub2CEvbg_3\tbicycle\ndaBl0Q92zLE_4\tbear\ndaBl0Q92zLE_0\tbear\ndaIJjuHo2EQ_0\tcow\ndaMcE2oorrE_1\tperson\ndaWo89I2Tuo_0\tskateboard\ndaWo89I2Tuo_1\tskateboard\ndaWywQD6R4g_8\telephant\ndaWywQD6R4g_0\telephant\ndaWywQD6R4g_2\telephant\ndaWywQD6R4g_4\telephant\ndaWywQD6R4g_5\telephant\ndaWywQD6R4g_6\telephant\ndaXEykL8UQ0_0\thorse\ndaZHZXfmY7k_0\tcat\ndaaHTdFcx5o_0\tboat\ndaaX2TXbYmo_2\tairplane\ndadAGYt0vS0_1\thorse\ndalHUNR5yAA_1\tperson\ndan-4YoB-Vw_0\tperson\ndaoysu5sfUQ_0\tperson\ndapxBMe8Wz8_1\tperson\ndaqWFFdK8Ck_0\tperson\ndawGJDtHlcs_0\tperson\nda4jNzO5wL0_0\tperson\nda61HPBGEwo_0\tbicycle\ndbU6Fn_5bHI_0\tbus\ndbXr-9m66-U_0\tperson\ndbdhdeVMuL0_0\tbird\ndbhGB6XW3fM_0\thorse\ndbxb42TzQ_g_0\tskateboard\ndbysY1V2TwI_0\tperson\ndby-fBGIPRU_1\tboat\ndby-fBGIPRU_4\tboat\ndb9i2fI8dv4_0\thorse\ndcADt99ndxg_0\tperson\ndcADt99ndxg_1\tperson\ndcBMrHLTvPo_0\tperson\ndcEW4y5AI1E_1\telephant\ndcHcm85hd5s_2\tbear\ndcH304rxwLY_0\tperson\ndcJN3WJZLOE_0\ttrain\ndcLR55c41rg_1\thorse\ndcLoVk60Gkg_0\tcow\ndcLoVk60Gkg_1\tcow\ndcLp5mtSkPA_0\tcow\ndcO5id4LTVE_0\tperson\ndcO5id4LTVE_1\tperson\ndcO5id4LTVE_2\tperson\ndcO5id4LTVE_3\tperson\ndcO5id4LTVE_4\tperson\ndcUA_Wf8vrc_2\tskateboard\ndcXdmOY1YCw_0\tcar\ndcXdmOY1YCw_1\tcar\ndcblbU5lyQU_0\tperson\ndcdXiEQkghM_0\tperson\ndcdXiEQkghM_1\tperson\ndcf4zn9wOjM_1\tperson\ndcj9u89LAu8_0\tumbrella\ndcoFS0-09xc_0\tperson\ndcoFS0-09xc_1\tperson\ndcwbXzJsVDw_1\tcar\ndcxhSnf9sg0_1\thorse\ndc1_WHDpL3w_0\tperson\ndc-BpV5fuQM_2\tcow\nddK4WXTyoWw_0\tcow\nddPN4QZuLBE_0\ttrain\nddPxOsA2Cro_0\tperson\nddPxOsA2Cro_1\tperson\nddW0MYEUWlc_0\tperson\nddaqR7COVYo_0\tperson\ndddKAnk7-hQ_0\tumbrella\nddlPux88liU_0\tperson\nddruq0KhCxM_1\tskateboard\nddsTE3NwHyM_0\tperson\nddtNIDCxqCk_0\tperson\nddw0wDJgJwM_0\tperson\nddxQR-NB6E4_0\tperson\nddzrzJEogWQ_4\tmotorcycle\nddzrzJEogWQ_6\tmotorcycle\nddzrzJEogWQ_0\tmotorcycle\nddzrzJEogWQ_1\tmotorcycle\nddzrzJEogWQ_2\tmotorcycle\nddzrzJEogWQ_3\tmotorcycle\nddzrzJEogWQ_5\tmotorcycle\ndd0CsqY6Fbo_0\tairplane\ndd8a6btF_B4_0\tperson\ndeDEnw72hQk_0\tperson\ndeNoMwyFOO4_0\tperson\nded6WOfO9O8_1\tperson\ndeep6EOo6ds_0\tperson\ndeihMrgBXEc_0\tperson\ndelKGPVRJsY_0\tperson\ndemxgFkqGxA_0\tbus\ndeqo50gGTBo_1\tairplane\ndew_lb_L9hE_0\tperson\ndezAUC4KbJI_0\tperson\nde1f8qTDYUI_0\tperson\nde2HZ6DBOuM_0\tperson\nde4mcJTPj48_0\tperson\nde4mcJTPj48_1\tperson\nde7-gbLffxs_0\tcow\nde8KeV2waGY_1\tperson\nde8V1ovs5eM_0\tperson\nde_fGa7Zxus_0\tperson\ndfAvID4lRsE_0\tperson\ndfAvID4lRsE_1\tperson\ndfDTR9mCUZI_2\tdog\ndfEF6SMFbGM_0\tskateboard\ndfKBB3-VicU_0\tbus\ndfK1HsVc2B0_0\tperson\ndfh2lETTLZI_0\tskateboard\ndfp4iVaXCpg_0\tskateboard\ndfqLJxxdinA_0\ttrain\ndfsTKKT5-UU_0\tperson\ndfseA2X5Cow_0\tperson\ndf_PzyC0gTw_0\tcat\ndf_SYY4pb3I_2\tcow\ndgGYa05XpYo_0\tskateboard\ndgIsZXSKACE_0\tperson\ndgOQKwvhLpE_1\tdog\ndgTYRveHMjM_0\tcat\ndgYN1OH5oc0_0\tzebra\ndgl2b2bRpq0_0\tperson\ndgtaJOOOtKg_0\tperson\ndgweyIjmmDY_0\tcat\ndgyGZqXgvag_0\tperson\ndg6u7R87Gh4_0\tperson\ndhFII58PWhI_0\tperson\ndhIL9wRZMm0_1\thorse\ndhIt9lg6Sbw_1\tboat\ndhUG1gnTlso_0\tdog\ndhZ-JmFNyak_0\tperson\ndhcVp1GmJyI_0\telephant\ndhcVp1GmJyI_1\telephant\ndhgs2glg_N8_1\tperson\ndhgs2glg_N8_0\tperson\ndhiYTV7DJLY_0\tcow\ndhjeKi58cuU_0\tcow\ndhkFVTvJ6ZU_0\tcat\ndhy85XNJT3c_0\thorse\ndh03d5vq1B0_2\tdog\ndh1XFXciUf4_3\tbus\ndh1XFXciUf4_2\tbus\ndh6zZFXD0_c_0\telephant\ndiDDNe-MVfs_1\telephant\ndiMmgSNBO8k_2\tperson\ndiRn1fE6zMg_0\tperson\ndiSTaGHORrc_0\tperson\ndiSZzd4jM0E_0\tperson\ndiUCxWmV084_0\tperson\ndiZ-mRLPpqI_0\tperson\ndidB6Es7Des_0\tperson\ndidTjworKXg_2\tumbrella\ndif0t09rdZg_1\tcow\ndioELry6bbk_0\tairplane\ndix7GRytfcw_0\tperson\ndix7GRytfcw_1\tperson\ndi1KJ0Mb5M8_0\tdog\ndi2TPYyIeWc_0\tdog\ndjIw9AQoU3o_2\tperson\ndjLPrNtPSY8_0\tperson\ndjLUJy1sWMg_0\tcat\ndjNzrBpqnnY_0\tcar\ndjSxYfG99k8_0\tcar\ndjaGBINLXTQ_0\telephant\ndjh9QeYLg7M_0\tairplane\ndjiTvgkjTW4_0\ttrain\ndjiTvgkjTW4_3\ttrain\ndjiTvgkjTW4_4\ttrain\ndjiTvgkjTW4_5\ttrain\ndjiTvgkjTW4_7\ttrain\ndjlet5--ZW0_0\tperson\ndjlet5--ZW0_1\tperson\ndjpCG2oprrA_1\tperson\ndjvQyzGNp7o_0\tperson\ndj2Qk--KIkk_0\tperson\ndj6yGGCBFWc_0\tperson\ndj8d91U-F_0_0\tperson\ndkQWD9hv4fo_1\ttrain\ndkQbDCav3eM_1\tperson\ndkSetHNXnNY_0\tcow\ndkb-6x7zo5E_0\tperson\ndkdCTCL5imo_2\ttruck\ndkdCTCL5imo_3\ttruck\ndkdCTCL5imo_4\ttruck\ndkiOcFZwrA0_0\tbear\ndknj-Sv4HUs_1\tperson\ndkpsViIYlsI_0\tcow\ndkw4aWG9l6E_0\tbear\ndkw4aWG9l6E_4\tbear\ndkw4aWG9l6E_5\tbear\ndkxLcr2kvIM_1\thorse\ndk3Nf8K3RzI_0\tboat\ndk4gT0vHgeU_0\tperson\ndk6h_GL9OZo_0\tperson\ndk7QISqnWZc_0\tbird\ndk7juEuA2is_0\tbear\ndk7juEuA2is_2\tbear\ndlAMvsjssrY_0\tperson\ndlDsSVM3JJ8_0\tperson\ndlG7MtSpAK4_0\tperson\ndlIG99k9Hoo_0\telephant\ndlIkYaty1Uw_0\tcar\ndlNMnGKJJjU_0\tcow\ndlQ1Gr54T74_11\tbicycle\ndlQ1Gr54T74_14\tbicycle\ndlQ1Gr54T74_5\tbicycle\ndlVOuZK_1bY_1\tperson\ndlVTSnDsl38_1\tknife\ndlW_HPbVriI_1\ttruck\ndlW_HPbVriI_3\ttruck\ndlW_HPbVriI_0\ttruck\ndlW_HPbVriI_2\ttruck\nEpH59JsxI3w_0\tcar\nEpIb8r7uBqM_0\tperson\nEpJ_M6rB_PA_1\tbird\nEpOaQjhIh_M_0\tairplane\nEpP_TLXxb7Y_0\tcow\nEpSURaF1BfY_0\ttruck\nEpT8zxDFPf8_0\tcow\nEpVdzlk5GYU_0\ttruck\nEpd3r6iiqVk_0\tbicycle\nEpeIZCFbjw0_0\tskateboard\nEpnttpyYTAo_0\tperson\nEpoqtu0Pqe4_0\tcow\nEp8bd1STWKw_0\tmotorcycle\nEp81Lk66O50_0\tperson\nEp84L7WDoyE_0\tperson\nEqBJeYu5f_E_0\telephant\nEqBJeYu5f_E_3\telephant\nEqHBjvHkvf0_0\tperson\nEqJR5UZAlSg_1\tcar\nEqLYPeo9ZC0_0\tperson\nEqMqvcHp8Ko_0\tcar\nEqMqvcHp8Ko_1\tcar\nEqSYKCxmeDA_0\tdog\nEqSYKCxmeDA_1\tdog\nEqh7XqsYl5M_2\tperson\nEqmnFPweBmk_1\tboat\nEquATbp9uL0_0\tperson\nEquATbp9uL0_1\tperson\nEqvMMBAZP2o_0\tperson\nErUllSQJNgI_4\telephant\nErUllSQJNgI_5\telephant\nErWUOje4g8Q_0\tmotorcycle\nErX04vJ-JcU_0\tcat\nErf0FkqYsTE_0\tperson\nEro36xFQKS4_0\ttruck\nEro36xFQKS4_1\ttruck\nEr4yJXTWNNo_3\tbicycle\nEr4yJXTWNNo_4\tbicycle\nEr4yJXTWNNo_5\tbicycle\nEr5D0fXZsjk_0\tperson\nEr9tboOA5k8_0\tperson\nEsEreMKZP7Q_1\tperson\nEsQ05q5ZZVM_3\tskateboard\nEsQ05q5ZZVM_5\tskateboard\nEsQ05q5ZZVM_2\tskateboard\nEsYZbF7hCTE_0\tperson\nEsZV26-jxX8_0\tmotorcycle\nEsbWwOYbT8Q_0\ttrain\nEskqA8x8mX4_2\tairplane\nEsrUSkNrqWs_1\tperson\nEs0O5wtTZ2Q_0\tperson\nEs9GOUryI0U_0\tperson\nEs9Yq8uZ4fA_0\tperson\nEs-W0AxQ5Us_1\tcow\nEtebDuK3fUY_0\tperson\nEtlKR9-Q2dk_0\tperson\nEtx8YkcrSF8_0\tperson\nEt0RRuaW-Rg_1\tdog\nEt1PKq61KAk_0\tperson\nEuETmswYRrs_0\tcow\nEuHJB5UXmZg_0\tumbrella\nEuHvelij5ao_0\tcat\nEuIGG3PoslE_0\tperson\nEuInxfWuqqA_0\tperson\nEuZnOeXR020_0\tperson\nEua2VIbXEMs_0\tboat\nEufXUqphYVw_0\tperson\nEumfsHXsVGk_0\tperson\nEunz2V1RXXo_0\ttrain\nEurWaA7qCDw_0\tbear\nEuwjSGtSYlY_0\tperson\nEuwjSGtSYlY_1\tperson\nEuzDIk8ag30_0\tperson\nEuzVaAXsy4o_0\tmotorcycle\nEu0nzh2HQNk_0\tperson\nEvDZK2cFYVE_0\tmotorcycle\nEvGoGf-YCA8_0\tbicycle\nEvKPt0vynKY_0\ttruck\nEvN8x67_EQ0_0\tperson\nEvZF9DagIoQ_4\thorse\nEvZF9DagIoQ_0\thorse\nEvZF9DagIoQ_1\thorse\nEvmcyDEPnoA_1\tskateboard\nEvvbUe6FBSM_0\tbird\nEvvij-hmE4A_0\tperson\nEwBKceBTBbo_0\tdog\nEwBwIUrHR3o_0\tperson\nEwBwIUrHR3o_1\tperson\nEwDyryqt94g_4\tairplane\nEwDyryqt94g_5\tairplane\nEwKIz0qAvKQ_0\tperson\nEwSJeylFWsY_0\tperson\nEwUGFtWeyMA_0\tperson\nEwUeAvO5mrE_0\tcow\nEwU8puKxN8Y_0\tperson\nEwU8puKxN8Y_1\tperson\nEwWCc9whfDI_0\tcow\nEwYNowdS57c_0\tperson\nEwet2EA1xX8_1\telephant\nEwet2EA1xX8_2\telephant\nEwet2EA1xX8_0\telephant\nEwozH_35SDg_0\tperson\nEwq-V9jATzg_0\tperson\nEw8lEc8Ufi8_1\tbus\nExCPGilpuMM_0\tperson\nExCPGilpuMM_1\tperson\nExCjkt_zXuw_0\tperson\nExCjkt_zXuw_1\tperson\nExJjWM_rAnI_3\tairplane\nExJjWM_rAnI_1\tairplane\nExPBVcERfwY_1\tperson\nExPBVcERfwY_3\tperson\nExPBVcERfwY_4\tperson\nExT3xg9phtQ_0\tperson\nExVHmko3jfY_0\thorse\nExW1ju88BW8_0\tcat\nExb1TjMi76I_0\tboat\nExc3W9o5-04_1\thorse\nExe2EizU9VQ_0\tcow\nExe2EizU9VQ_1\tcow\nExfZl3DY8JM_0\tperson\nExfZl3DY8JM_1\tperson\nExl9alp64lE_1\tperson\nExqpcHBGBlw_1\tperson\nExvcP05yrS0_0\tperson\nExvcP05yrS0_1\tperson\nExxZODpPkQQ_1\ttrain\nExz2WL2-kR0_0\tgiraffe\nEx4__JMKkqI_0\tperson\nEyMzZV5iTEA_0\thorse\nEyP_0uEuXVs_1\tbear\nEybT7tq6XGk_0\tperson\nEymmgPoUyuM_0\tperson\nEymmgPoUyuM_1\tperson\nEymmgPoUyuM_2\tperson\nEyn7IfnWm4o_0\tairplane\nEyn7IfnWm4o_3\tairplane\nEyn7IfnWm4o_1\tairplane\nEyn7IfnWm4o_2\tairplane\nEyp8nornJW0_0\tbear\nEyp8nornJW0_1\tbear\nEyrfi9lGdoo_1\tairplane\nEyuKu6qMB6g_0\tperson\nEywYZ3Gjwuc_0\tperson\nEywnxH68jDU_0\tcow\nEyzwbz1ZxmU_0\tcat\nEy2TgrQ30Z0_1\tbicycle\nEy2TgrQ30Z0_2\tbicycle\nEy36TlCS4rQ_0\tperson\nEy4BLGQL2Bg_0\tbear\nEy7eosaz0zU_0\tperson\nEy7us0SSVAs_0\tairplane\nEy7us0SSVAs_2\tairplane\nEy7wIzCkFU4_0\tperson\nEy7wIzCkFU4_1\tperson\nEzC0tuKaVGA_0\tperson\nEzEX4OUEHHQ_1\tskateboard\nEzGa4SSPsbI_0\tbicycle\nEzYjRjhff20_0\tperson\nEzZEWp1cluc_0\tperson\nEzeDITt3y5I_0\tperson\nEzeDITt3y5I_1\tperson\nEzlyx_EudUQ_0\tperson\nEzlyx_EudUQ_1\tperson\nEzuizVcVbSA_0\tperson\nEz6I4TpzC5I_0\tperson\nE0K5Ll7wHUw_0\tbird\nE0YZDyUoHTM_0\tknife\nE00cOMpNw3o_0\tmotorcycle\nE01EgIBFxRk_0\tperson\nE038teDC3EM_0\tperson\nE0-Z0KM1UB4_1\tperson\nE1AwHXQ00ns_0\tperson\nE1MTmF3FAN0_0\tbicycle\nE1NfSTmGCRE_0\tknife\nE1ZhuBRYvKY_0\tcow\nE1bNSKg9iv8_0\thorse\nE1oEO09-bAw_0\tdog\nE1pmsS_ufrs_0\tperson\nE1xPwEvYymk_1\tperson\nE1xPwEvYymk_2\tperson\nE1xPwEvYymk_0\tperson\nE1zxNG3Fglo_0\tbird\nE17S76lXHfI_0\tperson\nE1_ETAQHwcM_0\tperson\nE2O5Y6VAhIc_0\tperson\nE2O5Y6VAhIc_1\tperson\nE2Pobz5qoAE_0\tperson\nE2Pobz5qoAE_1\tperson\nE2Vqlq1BQYs_0\tairplane\nE2WWQOKGeb4_0\tskateboard\nE2aiCls-clY_0\tperson\nE2lj1iRVceA_0\tskateboard\nE22IW-PgLfU_0\tperson\nE28Cad7vBrw_0\tperson\nE28Cad7vBrw_1\tperson\nE29-bZY3lEo_0\tairplane\nE3NmlH6taDs_0\ttruck\nE3SKOBDl6u0_0\tperson\nE3enDSeq6P0_0\tperson\nE3tmvYSpQSQ_0\tperson\nE35M5UWMXeE_0\thorse\nE35M5UWMXeE_2\thorse\nE4Bl9c7JbYs_0\tperson\nE4DFW1SxJfY_0\tdog\nE4DFW1SxJfY_2\tdog\nE4TfSUdVt8U_1\ttruck\nE4pulnGY9X8_1\tperson\nE43SZ65LnfY_0\tcow\nE45LqepDuqg_1\tperson\nE5BtXla2lCQ_0\tbicycle\nE5CQkNJct6Q_0\tmotorcycle\nE5HB-EDNtE8_0\tperson\ndlZZzrMO6yY_0\tperson\ndlbAWAuByWk_0\tperson\ndlcovhFKigE_0\tperson\ndlh5RGS5Bzw_0\tbird\ndlkVXsIhcZg_1\tperson\ndlo83yH621I_1\tcow\ndl2g71ftw9A_3\ttrain\ndl2g71ftw9A_4\ttrain\ndl2g71ftw9A_5\ttrain\ndl6ogvuxF78_0\tperson\ndl_fuQYhAP8_0\tperson\ndmDdRd6wULk_2\tdog\ndmJ1DuWiAdM_0\tperson\ndmMz5FhGOCc_1\tperson\ndmVAi4WMi3M_0\tperson\ndmVAi4WMi3M_1\tmotorcycle\ndmVAi4WMi3M_3\tmotorcycle\ndmW77KHtuCQ_0\thorse\ndmYSNG-7VCg_0\telephant\ndmfX7DsSS1k_0\tbicycle\ndmuWxnAfMn4_0\telephant\ndm4rFNN7FZQ_0\ttruck\ndm-lOmiP2d8_0\tcow\ndnAQ7q60f_g_0\telephant\ndnB0we4_DrY_0\tcow\ndnB6auv8PBk_0\tperson\ndnFZkG7_E1w_0\tperson\ndnNh07bnI_s_0\tcat\ndnUXo5nstys_0\tperson\ndnVV1s-LcAY_0\tperson\ndnY-4hOzYts_1\tperson\ndncQtuB_6qA_0\tmotorcycle\ndncxd1B2sLk_0\tgiraffe\ndnwqVE3lPyY_1\ttrain\ndnwqVE3lPyY_2\ttrain\ndn_r7u_5apk_0\tskateboard\ndoHOuG6wqXY_0\tmotorcycle\ndoSDuIGLFXY_0\tcat\ndoTj5H8Uf1I_0\tcow\ndoUwj_z1x5o_0\telephant\ndoX3oiADm_s_1\tperson\ndomu9ia2Vo8_0\tperson\ndorx67yK7WU_0\tbird\ndovn1QHCR7o_0\tperson\ndowbL0CZ5do_0\tbicycle\ndo1QIWrYeW8_0\tperson\ndo5o5Dw0vPc_1\telephant\ndo5o5Dw0vPc_4\telephant\ndo7abiC5aZk_1\tcar\ndo82ENX9cOc_0\tperson\ndo-LmSJTPj4_0\tskateboard\ndpDG64ULlUg_0\tboat\ndpGCSoTITrw_2\telephant\ndpJWbIaQYoI_0\tperson\ndpJWbIaQYoI_1\tperson\ndpQP5r61_GQ_0\tperson\ndpUorqkSYZE_0\tdog\ndpYYMgh5TS0_0\ttruck\ndpcwUs5srlc_0\thorse\ndpi0u6pfCTM_0\tperson\ndpjLyHb9AyI_0\tperson\ndpkF3SwOunc_0\tdog\ndpn6vUVXBuM_2\tumbrella\ndptZbHZQYPM_1\tdog\ndptZbHZQYPM_2\tdog\ndpxGzRQqAaU_0\tmotorcycle\ndpxGzRQqAaU_1\tmotorcycle\ndpxGzRQqAaU_2\tmotorcycle\ndpxVPiv62SY_0\tperson\ndp2cUWhnP0A_0\tknife\ndp3Q_aTYeJ4_0\tperson\ndp_JQh45a50_0\tperson\ndp_1VrEUWbU_0\tperson\ndqCFYWRf9g8_1\telephant\ndqDLl7BlAAA_0\tskateboard\ndqFRS9o1CSU_1\tperson\ndqOoL5LiXc8_0\tboat\ndqQPbKE4UhQ_0\tperson\ndqTlCZzLk6A_1\tcow\ndqWEwvhVNiI_0\tperson\ndqavRiIA-38_0\ttruck\ndqj-msAUvnc_0\tcat\ndqzc4W6f-x4_1\tperson\ndrAhAL_F38Y_0\tperson\ndrAh2lmjDs4_0\tskateboard\ndrJGoPHMunk_0\tperson\ndreDU-1isrI_0\tperson\ndre_PgfS8yw_0\telephant\ndrf5ijiEkUo_0\tperson\ndrm2oJ3X1HM_0\tperson\ndrqFwF60pgE_0\tairplane\ndrqFwF60pgE_1\tairplane\ndrqFwF60pgE_2\tairplane\ndrqe2hP0PKI_0\tperson\ndr3TumG_tlI_1\tcow\ndr4dU5UDF-Q_0\tperson\ndr8s5VC9Fxg_1\tperson\ndsLbM2wZHrc_0\tdog\ndsPwJ3J1ZKA_0\tperson\ndsTR1vv9XLE_0\tperson\ndsTR1vv9XLE_1\tperson\ndsUuAVsJSi4_1\tmotorcycle\ndstcI7MYsZ0_0\tperson\ndsyBSejpe-k_0\tperson\nds1BJMsasQI_0\tperson\nds6FmQYwgYw_0\tskateboard\ndtDGbuCwBuY_0\tbicycle\ndtHgnX0NtxE_0\tperson\ndtMbzXL9wO4_2\tbear\ndtOFqz41TJ0_0\tbird\ndtR2UeJbIvg_0\tperson\ndtWfbusf4Es_0\thorse\ndtYdUj-d8fA_0\ttrain\ndtZrB9iDzgQ_0\thorse\ndtlUL4D7_NM_0\tbird\ndtvZaXxNgKQ_0\tperson\ndtwUG12h74g_0\tperson\ndt8Tngmse50_0\tbicycle\nduOX3z4IJSY_0\tperson\nduTvmDpj0sI_3\tboat\nduTvmDpj0sI_2\tboat\nduV82Wn9rXk_0\tcar\nduZYUVeDXEM_0\tcat\nduaO7S-EH1A_1\tperson\nducdg4KXQsg_0\tperson\nduoFWPZbeNc_0\tperson\ndupnmzaPsWA_6\telephant\ndutp3txJPTY_0\tperson\nduvuNqufLjs_0\tcow\ndu5hbB5w3UU_0\thorse\ndu96VR7vtOk_0\tbird\ndvKKmu56UkE_0\tperson\ndvS2DSYGOGg_0\tperson\ndvbVbBosw38_1\tperson\ndvgf3R9k0uY_0\tbird\ndvur4MZD_yc_0\tperson\ndvur4MZD_yc_1\tperson\ndv0ptUC-DIE_0\tperson\ndv6ymk8duso_0\tbird\ndv_KURooPDU_0\tperson\ndwbRsYPV7Ag_0\tperson\ndwpopXTeeGc_0\tperson\ndwrYJ92znpw_0\tcat\ndwy7k_gtEco_1\tboat\ndw8kejnR7L4_0\tperson\ndw-2_KqGeYY_1\tbird\ndxFrLHoW9jI_0\tmotorcycle\ndxGlDl4IukI_0\thorse\ndxGlDl4IukI_1\thorse\ndxViI6VXh6Y_0\tdog\ndxn8VDPNvJM_0\tperson\ndxq9r-qrJ2A_0\tperson\ndxsQn1MuZRA_0\tbus\ndx0z7DYxGSw_0\tperson\ndx4rtOOz7tA_1\tumbrella\ndx6ucdpKZP0_0\tperson\ndx8nEHWD1xc_0\tperson\ndyAC2ey1DQU_4\tbird\ndyJ83t1zgkU_0\tskateboard\ndyPMbIsTtFs_0\tperson\ndyPt3VKGZPo_1\tperson\ndyR4vnjF5do_0\ttruck\ndyZixtbxEE4_1\tperson\ndym-lDsiSTM_0\tboat\ndyt8LtUqIMU_0\tboat\ndyy3oxsiErU_19\ttruck\ndyy3oxsiErU_14\ttruck\ndy2J0aeX5eQ_0\ttruck\ndy3nkqKOjbk_0\tperson\ndy6zETD5NFo_0\tcow\ndzEKq7fsVnQ_0\ttrain\ndzNRDfnNbeE_1\tperson\ndzS2ClyakEg_0\ttruck\ndzXv_YFLPqg_0\tperson\ndzahMuEcbCM_0\tcow\ndzeNnQOePGs_0\tperson\ndzhSVb26d7Q_0\tumbrella\ndzoQb8C3vxE_0\tperson\ndzsHYOJpBbY_0\tbear\ndzv-u3s_YtI_0\tperson\ndzyVndvBofo_1\thorse\ndz3SP1rd9zE_0\tcar\ndz_ATSJBx6k_0\tairplane\ndz_ATSJBx6k_1\tairplane\nd0J7uodSxF8_2\tmotorcycle\nd0NY8eqs19s_0\tmotorcycle\nd0NtMMBjQp0_1\ttruck\nd0NtMMBjQp0_2\ttruck\nd0NtMMBjQp0_0\ttruck\nd0RIwZfoGNg_0\tperson\nd0ZEYzyD9Vg_0\tperson\nd0b8-K_6D68_0\tumbrella\nd0hJditcWj4_0\tperson\nd0hQQC2i1Y0_0\tperson\nd0hQQC2i1Y0_1\tperson\nd0hdtlKidzs_0\tperson\nd0h9QWelhII_0\tboat\nd0lVKBOzOQ0_0\tskateboard\nd0qGN1A7XJA_0\tperson\nd0vHpkvShqg_0\tgiraffe\nd0vUARlHvjc_1\tcow\nd0v47QFRyvg_0\tperson\nd0v47QFRyvg_1\tperson\nd00UKAQHK2A_0\tperson\nd02xOzIVP-s_0\tperson\nd04Dr38addQ_0\tairplane\nd09H7U6x-Fc_0\tcat\nE5OHeMbBp9s_1\tgiraffe\nE5RbbN1bPN8_0\tperson\nE5YibOn90Co_0\tskateboard\nE5b9Yug5vbk_0\tbicycle\nE5b9Yug5vbk_4\tbicycle\nE5b9Yug5vbk_1\tbicycle\nE5b9Yug5vbk_2\tbicycle\nE5b9Yug5vbk_3\tbicycle\nE5dBaFyBYX0_0\tairplane\nE5me_giHEOE_1\tperson\nE5trQkGM3Wk_0\tcat\nE5wZ4pk5X0I_1\ttrain\nE59OnpOGBLU_0\tskateboard\nE6Am4hIuXvk_0\tperson\nE6Avey2AVRM_1\tperson\nE6A8vfHTdOQ_0\tperson\nE6EtoMfo384_0\ttrain\nE6EtoMfo384_1\ttrain\nE6GvpwdOQrw_2\ttrain\nE6GvpwdOQrw_3\ttrain\nE6GvpwdOQrw_8\ttrain\nE6JLxU918TE_0\tbicycle\nE6XGO0hx4N8_0\tperson\nE6Y2QsetU0M_1\tperson\nE6s0XT5G7Eo_0\tbird\nE6s0XT5G7Eo_1\tbird\nE6uGh-cPDjI_0\tbicycle\nE62w4NFSm5E_1\tdog\nE64d0EH39M4_0\ttrain\nE67ceZopcqQ_0\tperson\nE67ceZopcqQ_1\tperson\nE68IhhK04s0_1\tgiraffe\nE68IhhK04s0_2\tgiraffe\nE7BIM8cnCrc_2\ttrain\nE7BIM8cnCrc_0\ttrain\nE7F0Gt3Rea4_1\tperson\nE7F0Gt3Rea4_0\tperson\nE7LY2yKO0Jg_0\tknife\nE7MvCesCxNk_0\tknife\nE7dG4qPI_QY_1\tknife\nE7eYGQjaVYs_0\tbird\nE7hXPqOOiqo_1\tboat\nE7hXPqOOiqo_0\tboat\nE7qoCZ2e-vQ_0\tdog\nE7rhwzBxMqY_0\tperson\nE7zwjNToyao_0\tperson\nE70FO7I2AQ0_1\tperson\nE70FO7I2AQ0_0\tperson\nE76moy2SQhA_0\tperson\nE8JYTxKfqmQ_0\tboat\nE8OzYJ2gVAs_1\tbicycle\nE8OzYJ2gVAs_2\tbicycle\nE8OzYJ2gVAs_3\tbicycle\nE8RSSepY8tk_0\tperson\nE8R5lzlo5qw_0\tmotorcycle\nE8Xxr8SUaEY_0\thorse\nE8h4YnZbJg4_1\tperson\nE8n_eTUwyhc_0\tperson\nE8pbsHhMGOw_0\tperson\nE842T5CgJfk_0\tperson\nE854nPMWssI_0\thorse\nE8-Z9saoTjk_0\tperson\nE8_NjWtQtgI_1\tcar\nE9J2Brm4LSg_0\ttruck\nE9J2Brm4LSg_1\ttruck\nE9N59GTZ8uE_0\tperson\nE9R_qLxcZdY_0\tbird\nE9S5Tk5r2wU_0\tperson\nE9ZjM9SY__o_1\tperson\nE9ZjM9SY__o_0\tperson\nE9sCn_XaSHw_1\tbicycle\nE9sHGoiMmXc_0\tperson\nE9zmtafFrCo_0\tdog\nE9-1FSPKZ7k_0\tperson\nE-DE7HZ04WY_1\tperson\nE-OdBMMpwlo_0\tumbrella\nE-VRMpgKXIE_0\telephant\nE-VRMpgKXIE_7\telephant\nE-VRMpgKXIE_1\telephant\nE-VRMpgKXIE_2\telephant\nE-VRMpgKXIE_4\telephant\nE-YDPyDXtR8_0\tcow\nE-h1XNBlqsE_0\tperson\nE-pnZZeRFyQ_0\tperson\nE-q9j7xipsA_0\tcat\nE-seUZ3B-Ts_0\tmotorcycle\nE-zFmY_9LWk_0\thorse\nE-0FMMDuLw8_0\tperson\nE-3jsRP7KHc_0\telephant\nE_En6n1IyBw_0\telephant\nE_GC0IeKtu4_0\tperson\nE_K6zdkr0mo_1\tperson\nE_Xi5uEIiec_2\tbicycle\nE_e6E8T7on0_0\tdog\nE_02tA9RLyw_0\tumbrella\nE_7qbAkVDYE_0\telephant\nFAKE4Rfwdik_0\tperson\nFATjlgllzBU_0\tperson\nFATjlgllzBU_1\tperson\nFAdlwBJZk78_0\telephant\nFAeK9y98GL8_0\tzebra\nFAiIhoJh5uQ_0\tcat\nFAm6HgSzPTA_0\tcow\nFAn11rZ-gsU_0\tperson\nFAqiar6B2U8_2\tbird\nFAu0yvyjW-Q_4\tboat\nFAu0yvyjW-Q_9\tboat\nFAu0yvyjW-Q_1\tboat\nFAu0yvyjW-Q_5\tboat\nFAx0CsAigS4_0\tmotorcycle\nFA_K15dKk6k_0\tbear\nFBAcUphtxR4_0\tperson\nFBIVWWIbq-8_1\tcow\nFBIawPqElJ8_0\tbus\nFBKIUCHqUQk_0\tskateboard\nFBKIUCHqUQk_1\tskateboard\nFBNFSYoMCNM_0\tbird\nFBOWbksU5pI_0\tperson\nFBOWbksU5pI_1\tperson\nFBjp-C_Sbug_2\tbicycle\nFBjp-C_Sbug_11\tbicycle\nFBnFn5mY2R0_0\tperson\nFBwWw9c4KdY_0\tperson\nFBz0aAYDBFI_1\tperson\nFB8F1ku1XkU_0\tperson\nFCBsCwjCPWU_0\tperson\nFCQB6p_GcDY_0\tperson\nFCRAvY0glAI_0\tairplane\nFCd1d_7Hfpg_0\tumbrella\nFCkT11nk468_0\tairplane\nFClLRpdDi9A_0\tperson\nFCnE02wQQk4_0\tbird\nFCp7AKKYViY_0\tperson\nFC-ONjCL7tM_0\tperson\nFC_gwQU4yrs_0\thorse\nFDJyHtHix-0_0\ttrain\nFDYS2AyPJhc_0\tperson\nFDZBIlbFrk0_0\tperson\nFDej1TTCjP0_0\tumbrella\nFDfaLuM3y5A_0\tperson\nFDkiv1x0OGQ_0\tcar\nFDq3yKNo4Qs_1\tperson\nFDvTPzckQKc_0\tmotorcycle\nFD3pT-lj2tc_0\tcat\nFEM7OGFO_BI_0\telephant\nFEN0F0V1nhg_0\tdog\nFEOAvRWKb-k_0\tairplane\nFEU4yHFzkZs_1\tperson\nFEU4yHFzkZs_0\tperson\nFEWZolQuMv0_1\tperson\nFEfYdrS3kFc_0\tbird\nFEjcdYO4xPo_0\tperson\nFEoFDmI0pxI_0\tairplane\nFEzBza78J4w_0\tperson\nFEzBza78J4w_1\tperson\nFE0DpZ9GXoM_2\tperson\nFE0DpZ9GXoM_0\tperson\nFE0DpZ9GXoM_1\tperson\nFE0Q5phKq3c_0\tperson\nFE0Q5phKq3c_1\tperson\nFE4gj8EYF9k_0\tperson\nFE51Dml-nZY_0\tperson\nFE7iv_llNT4_2\tbicycle\nFE-JTPLk3fI_0\ttruck\nFFCtm1GZH_s_1\tbird\nFFHJUeZ_KKE_1\ttruck\nFFHJUeZ_KKE_2\ttruck\nFFLxkwDj1b0_2\tbus\nFFME8B_6LNA_1\tmotorcycle\nFFQl2DLyjdk_0\tcat\nFFQl2DLyjdk_1\tcat\nFFantnd2gLY_0\tperson\nFFantnd2gLY_1\tperson\nFFd_4DPNyRI_0\tcar\nFFijp_s0YwA_0\tdog\nFFi3nSvA0WY_0\tperson\nFFjqbw4R9l0_0\tcow\nFFm26XU-R7c_2\tperson\nFFm26XU-R7c_0\tperson\nFFm26XU-R7c_1\tperson\nFFndlV1rKas_0\tairplane\nFFpyQ_5PU7M_0\tbus\nFF9eHa3K8fM_1\tbird\nFGO6y3WssIg_0\tperson\nFGQCxd5EAx0_2\tairplane\nFGQCxd5EAx0_3\tairplane\nFGQCxd5EAx0_1\tairplane\nFGcS28ri5uY_0\tperson\nFGdEufjjhtg_0\tperson\nFGicL13npRI_0\tperson\nFGkNC4hzcfM_0\tperson\nFGkx6qk4oDk_0\tperson\nFGmjmDC1RoU_1\tskateboard\nFGmjmDC1RoU_0\tskateboard\nFGoutavzP5Y_0\tperson\nFGqrkJ3h0DA_0\tskateboard\nFG0PrdHReB0_2\tperson\nFG5l2wX8ccA_0\thorse\nFHAj71IwE7E_0\tskateboard\nFHA6nVCnv28_0\tperson\nFHB5eraeYEw_1\tknife\nFHJupOaUmtQ_1\ttrain\nFHOLOunv9Ec_0\thorse\nFHTc_V_05W0_1\tbird\nFHT1DAZpJVY_0\tcow\nFHZ-3pbJQrY_0\tbird\nFHgO4zu5RGA_0\tperson\nFHu50D73Fzo_0\tperson\nFIA67WzAuNs_0\tbear\nFIA67WzAuNs_1\tbear\nFIB12MYkANg_1\tbear\nFIDI0sZMPVU_0\tperson\nFIGhnuJWX5M_0\tperson\nFIGhnuJWX5M_2\tperson\nFIHYnB8Jrh4_0\tperson\nFIMbYQASgkk_0\thorse\nFIQ1iL3jVkM_0\tgiraffe\nFIV4OFmfS_s_0\tperson\nFIV4OFmfS_s_1\tperson\nFInOWVIV_go_0\tmotorcycle\nd1N4NJqa_8E_0\tperson\nd1PqtOyYTY0_0\ttrain\nd1PqtOyYTY0_1\ttrain\nd1PqtOyYTY0_2\ttrain\nd1Quy8k5O88_0\tcow\nd1UWs3bPTsc_0\tperson\nd1UWs3bPTsc_1\tperson\nd1YYgiXq3tw_0\tperson\nd1YYgiXq3tw_1\tperson\nd1bzn92PO0c_0\tperson\nd1eo2OWc45Q_0\tcow\nd1tf08A41eo_0\tperson\nd1ukwE8h4f8_0\thorse\nd1wbMXvcgNc_0\tperson\nd1wlubAM1-k_0\tperson\nd10K79pdybE_3\ttrain\nd14rOFFvTg4_0\tperson\nd14rOFFvTg4_2\tperson\nd14rOFFvTg4_1\tperson\nd165nDy63o8_0\tbicycle\nd165nDy63o8_1\tbicycle\nd17kaiZ5Ztc_0\tperson\nd2DRRd9l3TI_0\tperson\nd2RD5tyZt6c_0\tperson\nd2TxcbWHoBM_0\tcat\nd2WfBDEMf40_0\ttruck\nd2ZGi2fOtPY_0\tperson\nd2cDVorBK8s_0\tairplane\nd2cDVorBK8s_1\tairplane\nd2e49A9MnF4_0\tperson\nd2lSueNvuG4_0\thorse\nd2ns5iCGj78_0\telephant\nd2sn_b1z1Vw_0\tperson\nd2wHwCwQymw_0\tperson\nd2zgNRFDpSw_1\tbird\nd203fSHLzv8_0\ttrain\nd21TfucuHss_0\tumbrella\nd217pENbZVs_0\tperson\nd28DHw2okF8_0\tperson\nd3F_Gm514J0_2\telephant\nd3G8COtsJco_0\tperson\nd3MN8Sm5tiY_0\tperson\nd3MVAijPTjY_0\tmotorcycle\nd3P2bH2t8IQ_0\tperson\nd3Wdg9MPgLA_1\tskateboard\nd3Wdg9MPgLA_0\tskateboard\nd3duKA35FEI_0\tperson\nd3jP_YP-6EQ_0\tperson\nd3ro5gubiaQ_0\tperson\nd3ro5gubiaQ_1\tperson\nd3rzFaWiWwA_5\ttruck\nd3sHFgbvhIU_0\tcar\nd33yoN6QyYg_0\tbus\nd36tDEgs-IA_0\tperson\nd4A2uUrnVWI_0\tperson\nd4Cumy6qZPY_0\ttruck\nd4DbIWORtjY_0\tperson\nd4DbIWORtjY_1\tperson\nd4GvMFc_Vqg_0\tknife\nd4Le0GuzhaY_0\tskateboard\nd4QkJdQwkCo_0\tmotorcycle\nd4VJot5IZek_0\tperson\nd4VJot5IZek_1\tperson\nd4WRTfC57h0_0\thorse\nd4b9-LX5V1s_1\tcow\nd4hB6abJCs8_0\tperson\nd4mhHPSo7C8_0\tskateboard\nd4q-0AcOs78_0\tperson\nd4vhL4dar5s_0\tgiraffe\nd4vhL4dar5s_1\tgiraffe\nd45YTUkd_9M_0\tperson\nd47DPSbvftI_0\tperson\nd484zxSSkJM_1\tperson\nd4_lDGwny4k_0\tskateboard\nd5Ao3JBz7WM_0\tperson\nd5B0EMjLeZE_0\tperson\nd5PBtpn_6JQ_0\tperson\nd5gDBPwofbs_0\tperson\nd5gDqlNLGmw_0\tperson\nd5hj8eaC5fQ_0\tperson\nd5jIlHa1Y6o_0\tcow\nd5m8giMORSk_0\tperson\nd53_McJDtt4_0\tperson\nd55FAEl6kfM_0\tcat\nd55rz05ynyg_0\tairplane\nd6AkvjKCaE0_0\tperson\nd6AkvjKCaE0_1\tperson\nd6TWHVESLa8_6\tcow\nd6TWHVESLa8_5\tcow\nd6VCXnnHXGQ_0\tperson\nd6VCXnnHXGQ_1\tperson\nd6YTAD3T2i8_0\tperson\nd6a2EN1cB-4_0\tperson\nd6cgbxc35Ms_0\tperson\nd6mM21E4x-4_0\tumbrella\nd6m3DUG5E7Y_0\tperson\nd6uLbEhrIvw_0\tairplane\nd65wDJoMyA8_0\tperson\nd67YXl13SSo_0\tperson\nd6-bn34gHFc_0\tperson\nd7H5qLPNFz0_1\telephant\nd7cwZ3G7xSU_0\tbird\nd7kWNGqyvRk_0\tperson\nd7mQdSSoZ2E_0\tperson\nd7m0BF65qro_1\tperson\nd7m0BF65qro_2\tperson\nd7n5m9UuhP4_0\tperson\nd7n5m9UuhP4_1\tperson\nd7yxmt8AvOM_0\tperson\nd7yxmt8AvOM_1\tperson\nd71rdGKeKkE_0\tperson\nd74EhPMCxb0_0\tperson\nd7-3m4Nz8fk_0\thorse\nd8CJ5urtRlk_0\ttrain\nd8HIJN0pULI_0\tperson\nd8XcNMVXCD8_0\tbicycle\nd8b-SN3JEvk_0\tperson\nd8dPRbquLuM_1\tperson\nd8dPRbquLuM_0\tperson\nd8t8y3kLzgc_0\tperson\nd84iekZaJHc_4\tknife\nd9JyT5Kko5c_0\tperson\nd9LvxSh5P-Q_0\tperson\nd9OaiymMq0w_0\tperson\nd9PCSJzZTy8_0\tperson\nd9Pj3WrvXXc_1\tperson\nd9S0dKjWhNU_0\tperson\nd9S0dKjWhNU_1\tperson\nd9S0dKjWhNU_2\tperson\nd9YlucRFs0U_0\tperson\nd9cSZXEb_5E_1\tperson\nd9dysX9rdmA_0\tskateboard\nd9hh6urZ5FU_0\ttrain\nd9kzobAaimY_0\tmotorcycle\nd9lIw5maa3M_0\tperson\nd9qijNyVVmU_0\tperson\nd95k-74VSVE_0\tcow\nd-JD-mAXyIA_0\tdog\nd-Mnc38YAmw_8\ttruck\nd-OQw6tKhuM_0\tknife\nd-S3AmiMI1s_0\tcar\nd-e8mKtYWjk_0\tperson\nd-e8mKtYWjk_2\tperson\nd-e8mKtYWjk_1\tperson\nd-fv8fmGSlY_0\tperson\nd-hMPjLP2WE_0\tbicycle\nd-hMPjLP2WE_1\tbicycle\nd-hgDDQ3kwg_0\tperson\nd-h6ncywZ58_1\tperson\nd-h6ncywZ58_0\tperson\nd-oFe9Z0Obs_0\tdog\nd-oFe9Z0Obs_1\tdog\nd-rpsQgR8sw_0\tperson\nd-22m5Sq5OU_0\telephant\nd-5xdAZSjX8_2\tskateboard\nd--9RMf5LCA_1\tboat\nd_AudyfCYzg_0\tcar\nd_EP2nM4YMw_0\tbus\nd_ElAbuvxGQ_0\tdog\nd_ElAbuvxGQ_8\tdog\nd_SB-LVXyi0_1\thorse\nd_SmnRMWLD8_0\tdog\nd_S0JCKcFCg_0\tcow\nd_hsQ2L-klo_0\tperson\nd_nTA-SKHNM_2\tknife\nd_nTA-SKHNM_6\tknife\nd_ocJQiPpn0_1\tskateboard\nd_vnePeLmwI_0\tperson\nd_2HhXHP8fg_1\tcow\nd__UUbvo2t4_0\tperson\neADPEBi8wWs_0\tcar\neADPEBi8wWs_1\tcar\neADqJI9JKq8_0\tperson\neAFdLVF01GU_0\tbicycle\neANH6WnEpPs_1\tperson\neAPcJi7CaBw_2\thorse\neAPcJi7CaBw_1\thorse\neARl2H_FaEU_0\tcat\neAXN0KAt66I_0\tperson\neAXN0KAt66I_1\tperson\neAYoRncVO74_1\tperson\neAZbke5Perk_0\tcar\neAfmOFI5jUM_0\thorse\neAsHKktPNSo_1\thorse\neAvDt4p-AvA_1\tknife\neA3lmhfjTuM_0\tcow\neA5hiUXY2_Q_4\tairplane\neA5hiUXY2_Q_6\tairplane\neA7FV9uQbYw_0\tbus\neA8fIAfGi5k_0\tperson\neBB5vRA9JPE_0\tknife\neBHEKUkaBcI_0\tbird\neBLisw9b8i8_0\tcow\neBLisw9b8i8_1\tcow\neBLisw9b8i8_2\tcow\neBMqhmQr7vI_0\tbicycle\neBRcZ5KDeEA_0\tknife\neBgLKDW3lH4_0\tperson\neBmdALv9WEE_0\tperson\neBwWJ_geg4Q_0\tknife\neBy554vRg9M_0\tperson\neB83_xIotrw_0\tbicycle\neB83_xIotrw_3\tbicycle\neB_ZHbAvx-c_1\tperson\neCInOWr32gc_0\tdog\neCNG8qj36vs_0\tcow\neCSzfVb87kI_0\tperson\neCUuH2vPeDI_0\tperson\neCWhtTVetLA_0\tumbrella\neCeVtq40bcM_4\tbus\neCf8h359-j0_0\tbus\neClBvJnyYa4_0\ttruck\neCmgHa6ThE4_1\tperson\neC3Fwv7Uows_0\tperson\neC-5SEhAGvo_0\tcow\neC_fRVwxsiI_0\tperson\neDJamx945Ao_0\telephant\neDJamx945Ao_1\telephant\neDSAGlcfwKA_0\tperson\neDSmePW-Vrg_0\tperson\neDXqzj7vKFI_0\tmotorcycle\neDX2HUt9ttU_0\tperson\neDX2HUt9ttU_1\tperson\neDuzDDESzU0_0\tperson\neDwjZL3IGqM_0\tperson\nFIrviDrZriY_0\tbus\nFI2T176uKi4_0\tperson\nFI4oF175yHo_0\tcow\nFJCE3uzu0i4_0\tdog\nFJL5lb3wBKI_0\tairplane\nFJPRJ0A8BII_0\tboat\nFJVcRzA_pdI_0\tairplane\nFJdcStnbgU0_0\tperson\nFJl_FwYbg8s_1\tknife\nFJmyu27Omwk_0\tperson\nFJsMdQrRgFs_0\ttrain\nFJvHbRGgbXM_0\tgiraffe\nFJvSXVq8PPk_0\tbicycle\nFJxbfz8q8Qw_0\tperson\nFJzU4eC5GiI_0\tperson\nFJ5jeLsVXys_0\telephant\nFJ5jeLsVXys_1\telephant\nFJ7oeGn4dBM_0\tcat\nFKGFVLnchKE_0\tskateboard\nFKGFVLnchKE_2\tskateboard\nFKGFVLnchKE_4\tskateboard\nFKGFVLnchKE_5\tskateboard\nFKKoXDLhFjo_0\tperson\nFKMCYA2_RMs_0\thorse\nFKMCYA2_RMs_2\thorse\nFKMsbMSiqrQ_0\tperson\nFKTETXdoJjk_0\tperson\nFKVxjU1kTMM_0\tperson\nFKWzB37H8-E_0\tcow\nFKdcZ0D4-K8_4\thorse\nFKdcZ0D4-K8_1\thorse\nFKhBf2FcrKE_1\tperson\nFKhBf2FcrKE_0\tperson\nFKnj73Wv84c_0\tumbrella\nFKsZiccYt_g_0\tperson\nFKwKsWjLhiI_0\tperson\nFKzvgRVfOjM_1\thorse\nFKzvgRVfOjM_5\thorse\nFK0ezSvbg7o_0\tdog\nFK37T3KvNUU_0\tcow\nFK8OxK802HI_0\tperson\nFLF92L3WRrs_0\tperson\nFLF92L3WRrs_1\tperson\nFLQzeGFBo2I_1\tbird\nFLQzeGFBo2I_2\tbird\nFLTewjXG6Wc_1\tperson\nFLTewjXG6Wc_2\tperson\nFLTewjXG6Wc_0\tperson\nFLWAw0tGOo8_2\tbicycle\nFLWAw0tGOo8_3\tbicycle\nFLZeutEdtzU_1\thorse\nFLqZVv798FE_1\tperson\nFLqZVv798FE_0\tperson\nFLq3zU7UtgQ_0\tskateboard\nFLr23Hv4LfE_0\ttrain\nFLr23Hv4LfE_2\ttrain\nFLskMa3WD7M_0\tperson\nFLyV4pkEHUg_0\tperson\nFL1q74zVLvo_1\ttruck\nFL8ulwhcOho_1\tcar\nFL-QttmKDc0_0\tairplane\nFL-73OGqifE_0\tcat\nFL_DeYOGkaU_2\thorse\nFL_DeYOGkaU_0\thorse\nFMHc-oH_rOE_0\tperson\nFMTZga_deFY_0\tdog\nFMig7WOUQyU_1\tbear\nFMig7WOUQyU_2\tbear\nFMv3NfETfq4_0\tbicycle\nFMv3NfETfq4_1\tbicycle\nFNCMx4Aum_M_1\tmotorcycle\nFNJmejn3KNQ_0\ttruck\nFNJmejn3KNQ_3\ttruck\nFNJmejn3KNQ_5\ttruck\nFNKJAi0Xbz0_0\tperson\nFNNdAL0qtWM_0\thorse\nFNSpSfZSQfE_0\tperson\nFNbjJJgHt6c_1\tperson\nFNgfcu9JUHA_0\tcow\nFNjDy-du_gs_0\ttruck\nFNv5k4sCs5k_0\tperson\nFNxfPhr1AZk_0\tperson\nFN1B1veyxCQ_0\tcow\nFOAmP97Gboo_0\telephant\nFOAmP97Gboo_2\telephant\nFOL80Pq_HSs_0\tcat\nFOXwGm4ddCk_1\tperson\nFOacAsl9vUM_1\tbird\nFOnRpTgHAdI_0\tperson\nFOyA2uyFS0s_0\tcar\nFO-yhRhInHQ_0\tmotorcycle\nFO_sYJabdgQ_1\tbird\nFPBkLbjkE0I_1\tperson\nFPC9a1ebnRk_0\tperson\nFPFEZjz68RM_0\tperson\nFPHxPqZ9of4_0\telephant\nFPIVRAQI9Ao_1\tairplane\nFPS-rWu8sfw_0\ttruck\nFPdj2aDA2Is_0\tperson\nFPd8NgysFbw_0\tperson\nFPhiHYzZrc8_2\tbird\nFPmbKUp9Apc_0\tperson\nFPoBK2S6-kE_0\telephant\nFPpdaMeuTPM_0\tperson\nFP-joReSPjM_1\ttrain\nFP-joReSPjM_4\ttrain\nFQBe4ewvq3k_0\tbus\nFQDYCsUTzLU_0\tperson\nFQIKRtrwRJU_0\tperson\nFQKMItJWON8_4\tbicycle\nFQNa7v1nuHs_0\tbird\nFQNa7v1nuHs_1\tdog\nFQPeEa0PIhY_0\tperson\nFQQ5mFLQS_8_0\tairplane\nFQTA_Rs2r4k_0\tairplane\nFQa2-poPUOQ_0\tperson\nFQiI3CA-HsU_2\tperson\nFQiI3CA-HsU_0\tperson\nFQiI3CA-HsU_1\tperson\nFQnnRHyzLcE_0\tboat\nFQyvUPmvsSo_0\tbus\nFQ0G5VjpRO8_0\tcat\nFQ09pTeRKXM_0\tperson\nFQ8nNpJodyM_0\tperson\nFQ_PnAPHimg_0\ttrain\nFQ_YvOmwGng_1\tskateboard\nFQ_YvOmwGng_2\tskateboard\nFQ_YvOmwGng_0\tskateboard\nFRBmAObAjLg_0\tumbrella\nFRCsksZQW0g_0\tmotorcycle\nFRFZtNbUMfU_0\tperson\nFRFZtNbUMfU_1\tperson\nFRKbwt_HIJY_0\tcat\nFRUF5D_Bg4I_0\tboat\nFRZeTLb7R70_0\tperson\nFRcpw1KTh4w_0\tskateboard\nFRh68K9peM8_0\tknife\nFRs6gVga80M_2\tairplane\nFR0IeE_jWVE_1\tperson\nFSCpm1kxTIE_0\tumbrella\nFSJSVNwlHck_0\tperson\nFSSrkLtKRBk_0\tperson\nFSchPfgxMmk_0\tperson\nFSmTDuGYKRo_0\tperson\nFSrvVBrHdIY_0\tperson\nFSrvVBrHdIY_1\tperson\nFSs-_cK-4DE_1\tbird\nFS8ZnDA42Xg_0\tzebra\nFTHxfldxSrg_0\tperson\nFTlLAXuBE2M_1\tperson\nFTlLAXuBE2M_2\tperson\nFTlLAXuBE2M_0\tperson\nFTr8b641J_g_2\tzebra\nFTr_sg-tAYA_0\tperson\nFTr_sg-tAYA_1\tperson\nFT7LfULOrmU_0\tperson\nFUNI1-oxWb0_0\tperson\nFUPer2xPyRM_0\tperson\nFUQokq7Dm_0_0\tbird\nFUWPXNKt90g_0\tskateboard\nFUcLObUwigo_1\tperson\nFUcQGevNVQs_0\tperson\nFUp8cy7p6kc_0\tperson\nFUt-f-8QJmk_0\tboat\nFUzb9oSwhq4_2\thorse\nFU63gEB5T14_0\tperson\nFU63gEB5T14_1\tperson\nFU-Gyo-nX8w_0\tperson\nFU-Gyo-nX8w_1\tperson\nFVGYeJ_eKRY_0\tperson\nFVGYeJ_eKRY_1\tperson\nFVSihamjW0c_0\tperson\nFVcaEg-4Saw_0\tairplane\nFVm133076uE_0\tperson\nFVxqyMXxbTg_0\tperson\nFVxqyMXxbTg_1\tperson\nFVyZRq7FJUM_2\tperson\nFVyZRq7FJUM_0\tperson\nFVyZRq7FJUM_1\tperson\nFWAdovzWBpk_0\tperson\nFWCxpF5CAAo_0\tperson\nFWH6qzGM4Ko_0\tcat\nFWTx-_C46YA_0\tdog\nFWVW97tTSiI_2\tskateboard\nFWZANVS2JwI_0\tbird\nFWbVfjbC570_0\ttrain\nFWd_KJNB1hY_0\tperson\nFWeJwZsAuq4_3\tknife\nFWiwkCVxsvU_0\tairplane\nFWpcgznz11Q_0\tknife\nFWqFrwl7d-g_0\tairplane\nFWqFrwl7d-g_2\tairplane\nFWuSKVVP9Gw_0\tairplane\nFXPnVqm98h8_2\tcar\nFXbqlcQOm4U_1\tcar\nFXcjcGBH8uA_0\tairplane\nFXdP8V2Fyag_0\tbus\nFXdevKY06to_0\tbus\nFXjUPTGnrIk_1\tperson\nFXjUPTGnrIk_0\tperson\nFXrzFKXFtUE_0\tskateboard\nFXvqDQa0_pw_0\tbus\nFXz3PiouB_s_0\ttruck\nFX7DATABx3o_0\tperson\nFYPRZ3A5Wug_1\thorse\nFYQxEw6enVw_0\tknife\nFYR_8E37mhY_1\tboat\nFZJlwJ_5CIY_0\tperson\nFZJ0L36775Q_0\tbear\nFZOwW_igs2Q_0\tperson\nFZUo3m0w40U_1\tboat\nFZXz9ivLbZE_1\tperson\nFZfD0ASOr-0_0\tperson\neD5a0lOEA4c_0\tperson\neD5_C8Rnll0_1\tcow\neD9mxZpbjpo_3\tknife\neEBoNITml_U_2\tairplane\neEBoNITml_U_5\tairplane\neEKY2ZIJ7cw_0\tperson\neEKY2ZIJ7cw_1\tperson\neEUzIzmFpmg_0\tdog\neEZirBqUuUc_0\tcow\neErb9l8tm9Q_1\tperson\neEwALO20qQs_0\tmotorcycle\neEzaprIjPOA_1\thorse\neE7zgmIkklg_0\tperson\neE_bJ6JguBg_0\tperson\neE_bJ6JguBg_1\tperson\neFDTDuBtPdg_1\telephant\neFIUN94eOFY_0\tskateboard\neFKWB3vWXzM_0\tperson\neFNnJotKCuE_0\tdog\neFQAqsrxJIk_1\tcow\neFQAqsrxJIk_0\tcow\neFYXRQfFBFk_0\tperson\neFYi8GYHOwc_0\tbus\neFYi8GYHOwc_2\tbus\neFYi8GYHOwc_1\tbus\neFbHzEjDjsQ_0\tperson\neFbHzEjDjsQ_1\tperson\neFbOmylKLps_0\tbicycle\neFbOmylKLps_1\tbicycle\neFbOmylKLps_2\tbicycle\neFbOmylKLps_3\tbicycle\neFbOmylKLps_5\tbicycle\neFbmkhM4yvA_1\tskateboard\neFeLxXgEWb4_9\tairplane\neFeLxXgEWb4_10\tairplane\neFeLxXgEWb4_19\tairplane\neFkMiDqxNNg_0\tperson\neFn7qz_Ik-g_1\tbicycle\neFsEtWFKOCE_0\tperson\neFsEtWFKOCE_1\tperson\neFsJVO58dOk_0\tmotorcycle\neFsJVO58dOk_1\tperson\neFtXO4KQyP0_0\tperson\neF6vo2K3X7Y_1\thorse\neGANqnJQvcA_0\tperson\neGEeIkSKn9I_0\tperson\neGFxLRdHt9o_0\tperson\neGIMcDTDuZI_2\tgiraffe\neGKe_SHbpew_0\tdog\neGLaqISw-ZU_0\tcow\neGXX9n0KkAw_0\ttrain\neGavpqx_a-Y_1\tperson\neGeSgNqD64Q_0\tcat\neGp90l6AeQM_3\thorse\neGp90l6AeQM_4\thorse\neGp90l6AeQM_6\thorse\neGp90l6AeQM_7\thorse\neGp90l6AeQM_1\thorse\neGp90l6AeQM_2\thorse\neGsO1ybeNmw_0\tperson\neGulNc3Hz6E_1\tperson\neGw-BT7HLw0_0\tperson\neGx11vRzfMI_0\tperson\neG420j0UncU_0\tcat\neG9ay7ouawQ_0\tboat\neG_gCk-NdFc_0\tbicycle\neHFxA8eOkKo_1\tdog\neHJOSAF8Ksc_0\tboat\neHMokGJS_8k_0\tbird\neHPZiFRZgH8_0\tperson\neHS3e7Drwlw_0\thorse\neHYl5vL9urI_0\tperson\neHYl5vL9urI_1\tperson\neHZGFVBiNbM_0\tperson\neHhu8cP6sYY_1\ttruck\neHlKAc_jO3w_0\thorse\neHlKAc_jO3w_1\thorse\neHmn6jMH470_0\tbicycle\neHo7GgOz-4M_0\tbicycle\neHo7GgOz-4M_1\tbicycle\neHpMDoo4x9o_0\tperson\neHpMDoo4x9o_1\tperson\neHrYu8_xQuI_3\tairplane\neHuFhF5mn60_2\tdog\neHuHorwvDFE_0\tperson\neH-lfDuzZRU_0\tperson\neIbRJYX77lM_1\tperson\neIceWO1K4hg_1\tknife\neIlLo4L0TBY_0\tperson\neIm2mZqCQIU_0\tperson\neItSvz_9tc8_1\thorse\neI5A6Q8wsk8_0\tperson\neJGswWs5a_U_0\tperson\neJJBtIMsces_0\tcat\neJNeGPvJZBs_0\tperson\neJN7jtqxGc0_1\tperson\neJO3ahTuQlg_2\tknife\neJTzEdYt2KA_0\tperson\neJTzEdYt2KA_1\tmotorcycle\neJZyuG0FB0M_1\tperson\neJg7Dq1HzW8_1\tperson\neJi66YisQnM_0\tcat\neJnTGfqwSKw_0\tperson\neJntPRQdD6A_0\tcow\neJntPRQdD6A_3\tcow\neJxFV3LV_-o_1\telephant\neJzkkZWgmiM_0\tperson\neJ2omVOUJv4_0\tperson\neJ4AprAxRh4_0\tairplane\neJ4AprAxRh4_7\tairplane\neJ4AprAxRh4_5\tairplane\neJ9q5sR4oiE_1\ttrain\neJ9q5sR4oiE_3\ttrain\neKBgCy3izjg_0\tperson\neKCONra70xU_1\tperson\neKGFKx5vbJw_1\tbird\neKGFKx5vbJw_2\tbird\neKJMggclbAI_0\ttruck\neKYCRb3cMSc_0\tcat\neKcN648xBxg_0\tcow\neKdNbqJsxIY_1\tcar\neKirxEVv1N4_1\tgiraffe\neKpHpiZZSOY_0\tmotorcycle\neKsu0SXh0Cg_0\tgiraffe\neK5wkhSqhQg_0\tperson\neLAIclbgwtw_1\tmotorcycle\neLAIclbgwtw_2\tmotorcycle\neLCZ9U490do_0\tperson\neLK_O-E6TXY_0\tcow\neLLFV2_GBOs_1\tcow\neLLFV2_GBOs_4\tcow\neLLFV2_GBOs_5\tcow\neLLFV2_GBOs_0\tcow\neLLFV2_GBOs_3\tcow\neLRLhwJpaKE_0\tperson\neLXWvZhL6g4_0\tcat\neLfUxNIWQn8_0\tcat\neLsJ-MoKt-c_0\tmotorcycle\neLzEA8IlB5E_0\tcat\neL2OKu4DhkM_1\tbear\neL-v_R-bG30_0\tskateboard\neMJ8eEFu7lo_1\tcar\neMJ8eEFu7lo_3\tcar\neMN980Fn4Kc_1\thorse\neMQEyMimXFU_0\tcat\neMWM---NOF0_0\tperson\neMcgmNHMY_g_0\tperson\neMdVb5oIUWc_0\tperson\neMgUOtsKC0w_0\ttrain\neMsSwXfIf7o_0\tperson\neMv2h_s0LpQ_1\tskateboard\neMwSfQmonxM_0\tbird\neM5e2PBO5hY_0\tgiraffe\neM-1RwyzQpI_1\ttruck\neM-1RwyzQpI_4\ttruck\neM-1RwyzQpI_5\ttruck\neNDHGq_Vm3A_0\tperson\neNEaC09BQF8_0\tperson\neNG3je3HCHI_0\tperson\neNG3je3HCHI_1\tperson\neNIXfUjWW10_0\tbus\neNSkFxbG_L0_0\tskateboard\neNTeTVBDq8U_0\tperson\neNVGmOIKNII_0\tskateboard\neNVGmOIKNII_2\tskateboard\neNYeXwUr7rY_0\tskateboard\neNbwp7DEy6A_0\tdog\neNbwp7DEy6A_1\tdog\neNlXrdcWYPA_0\tperson\neNllsU_utBs_0\tgiraffe\neN0ufEmLTDM_0\tperson\neN3a3uFzNxw_0\tperson\neOJorgJNcl4_1\tcar\neOMSAOLQMc0_0\tperson\neOMro57lp5o_0\tbicycle\neON5oS1ddkA_2\tknife\neOXMKiuur7c_0\tperson\neOZ2mMo0l60_0\tperson\neOe9DskHw1g_4\tairplane\neOe9DskHw1g_3\tairplane\neOhLZkf2gyQ_0\tperson\neOj2KctQDKQ_1\tbear\neO0M1RCeWaA_0\tdog\neO9s3APOXdI_0\tbear\nePDBmIR0Mnk_1\tbear\nePEoVXrSERQ_0\tperson\nePPnXOa8FII_0\tmotorcycle\nePWPPUSuctk_0\thorse\nePWPPUSuctk_2\thorse\nePWPPUSuctk_3\thorse\nePaqZZz_gtY_1\thorse\nePgL4a_1DcI_0\tperson\nePgqzaxKKo8_0\tperson\nePhchRaBs-k_1\tairplane\nePhchRaBs-k_2\tairplane\nePjAF53eBSA_0\tperson\nePkzyffCJhs_0\tperson\nePli_zXbgF4_5\tbear\nePli_zXbgF4_1\tbear\nePli_zXbgF4_2\tbear\nePli_zXbgF4_3\tbear\nePli_zXbgF4_4\tbear\nePoC0Pj8xLA_2\tperson\nePo6J3guHBw_0\tperson\neQA0KwcbJlQ_0\tperson\neQI72zFfl34_0\tcow\neQI72zFfl34_2\tcow\neQMmOyBJUaA_0\tperson\neQOqA8LeUOU_1\ttruck\neQOqA8LeUOU_2\ttruck\neQOqA8LeUOU_8\ttruck\neQS3V0HV61g_0\tperson\neQTlUSSbOyY_0\tperson\neQWRQaVSPT8_0\tskateboard\neQXSsw2MJGk_0\thorse\neQZEFoxVGuY_2\tperson\neQZOAGlSYBc_0\tperson\neQcocP3auyk_0\tcar\neQfbBM_c96I_0\tknife\neQfbBM_c96I_1\tknife\neQi8AZ4DQO4_0\tairplane\neQjFi5iBL-c_0\tskateboard\neQl0Q82jNOY_0\tcat\neQmSzg2ZEpw_0\tperson\neQmSzg2ZEpw_1\tperson\neQoRdZR8_q8_0\tperson\neQpbjnMSNLE_1\tbus\neQ1R5EruVgo_0\tbird\neQ1R5EruVgo_1\tbird\neQ2eWzgVggo_0\tperson\neRAZ8LnDRN4_0\tperson\neRBc8OmROx4_0\tcat\neRCMzS-dM8o_0\tperson\neREzhoz4UA8_0\tbicycle\nFZieBxFsZO4_4\tbird\nFZieBxFsZO4_7\tbird\nFZieBxFsZO4_8\tbird\nFZieBxFsZO4_11\tbird\nFZsDQUdCBiE_0\tperson\nFaINra3PYko_0\tbus\nFaINra3PYko_2\tbus\nFaINra3PYko_1\tbus\nFanmFyCIvSc_1\tskateboard\nFaxr0F1n4lk_0\tperson\nFa8JS9CCs60_0\tperson\nFbC6M7cRN1k_0\tperson\nFbLE0CqDZ_I_0\tperson\nFbN-_RdBAoA_0\tperson\nFbRfH2tJCZg_0\ttrain\nFbUasHXeVXg_1\tperson\nFbVrmfwHLD8_1\tcar\nFba1mHso_c8_0\tperson\nFbcl3O89qPI_0\tperson\nFbryy4ItyRo_0\tmotorcycle\nFbsxP5HIH-w_0\tperson\nFbtbQbo3w6A_0\tperson\nFbtbQbo3w6A_1\tperson\nFbtbQbo3w6A_2\tperson\nFbzdX2M1spw_0\tperson\nFb9GVgZUQkk_1\tbird\nFb-bT-5HFvo_1\tperson\nFb-bT-5HFvo_0\tperson\nFcAKq2q6WuI_0\tperson\nFcGoc7P1MnA_0\tairplane\nFcHZFDzsW6U_0\tperson\nFcI2xE1s0tE_0\tperson\nFcJofbjqKR0_0\tperson\nFcNTnULQ914_0\ttrain\nFcPxUMks1f8_0\tairplane\nFcQ9ypCnsnM_3\telephant\nFcdE5l-9Cl4_0\tperson\nFcfkxe_EegE_3\tskateboard\nFckxSGw75TA_8\telephant\nFckxSGw75TA_1\telephant\nFckxSGw75TA_3\telephant\nFckxSGw75TA_4\telephant\nFckxSGw75TA_6\telephant\nFcmq6FVlPrs_2\thorse\nFcyT7NFOtOU_1\ttruck\nFczLlZB8PPQ_0\thorse\nFdBcdDQa2Yc_0\tperson\nFdG3QrZtdYo_0\tperson\nFdM1BVOZnpc_0\tperson\nFdM1BVOZnpc_1\tperson\nFdYZH48B1gQ_0\tgiraffe\nFdYpikKc6Rk_0\tperson\nFdcxQx4sFow_0\tperson\nFdgWx-kasEQ_0\tcar\nFdgw87Au0kg_0\tperson\nFdp1t1Kk42s_0\tperson\nFdvgBe0Ix0A_0\tperson\nFdvgBe0Ix0A_1\tperson\nFdviMb1gxkI_0\telephant\nFdyA9CQ40Xo_0\tcat\nFd1Rn6HvibQ_0\tbus\nFd1ZmuLPSNA_2\ttruck\nFd1ZmuLPSNA_0\ttruck\nFd1ZmuLPSNA_1\ttruck\nFd1ySlMqOEk_0\thorse\nFd6kpMD00LI_0\tperson\nFeAmji-BcLE_0\tskateboard\nFeHGwC6UYlQ_1\tperson\nFeHGwC6UYlQ_0\tperson\nFefqZU-M3NQ_0\tdog\nFeioRbELmKY_0\tcat\nFel-MqoIa98_0\tperson\nFenJI9gPekk_0\tperson\nFevOpclGxX8_0\tperson\nFe0XVxKTD10_0\tperson\nFe1ne3adKqs_0\tperson\nFe1o0fdRyjk_0\tperson\nFe1o0fdRyjk_1\tperson\nFe1o0fdRyjk_2\tperson\nFe_r1BcuOm8_0\tairplane\nFfCfKve9svg_0\telephant\nFfGzM6IRg6I_0\tperson\nFfTyXxo_JLY_0\thorse\nFfWtRI5MlvQ_1\tperson\nFfWtRI5MlvQ_0\tperson\nFfddIx2fdDE_0\tperson\nFfkcxMLN90Q_1\tperson\nFfkcxMLN90Q_0\tperson\nFfpScNxcfaE_0\tperson\nFfpuED53W2w_0\tperson\nFf3kCsp4dss_0\thorse\nFf37VadXulw_0\tperson\nFf37VadXulw_1\tperson\nFf-s3k4nzl0_0\tcow\nFgAW1wm55t4_0\tumbrella\nFgBAfHhZDtY_0\tcow\nFgCkJ9L956k_2\thorse\nFgHkoen3Fbs_0\tperson\nFgHkoen3Fbs_1\tperson\nFgHkoen3Fbs_2\tperson\nFgK205YdiNI_0\tzebra\nFgaH6B8Im-s_1\tperson\nFgh-oweWR10_1\ttruck\nFgh-oweWR10_2\ttruck\nFgh-oweWR10_5\ttruck\nFgkgjnYWuvc_0\tmotorcycle\nFglWoBFeCGs_0\tboat\nFgqe5FVDM7w_1\tbus\nFgqe5FVDM7w_3\tbus\nFgtxhgrL-1s_0\tbicycle\nFhAkQ-D6j7M_1\tperson\nFhNe0p3NvAk_0\tperson\nFhS2OrbfOqA_0\thorse\nFhTIUIB4MQk_0\tperson\nFhdb7UXlKgw_0\tperson\nFhhQQi3XBRs_0\tperson\nFhim9zq_3dc_0\tdog\nFhtl-JSkWvY_1\tskateboard\nFh1QSbERb_I_0\tperson\nFh1jlYGKYy8_0\tcow\nFh2wm1SuBlM_0\tperson\nFh5hapK4iY0_0\thorse\nFh-e1BaovqE_0\tperson\nFiAj5FRP_QI_0\tbear\nFiAj5FRP_QI_1\tbear\nFiAj5FRP_QI_2\tbear\nFiGZEZ8BFeg_0\tperson\nFiLeL7fMtKI_0\tperson\nFiMl9o33Uaw_0\tperson\nFiQbZpev_LA_0\tperson\nFim4ZNdANXI_0\thorse\nFipIgAA0lFk_0\tbicycle\nFirrKl6H41c_0\tperson\nFirrKl6H41c_1\tperson\nFivrGIBKDvo_1\telephant\nFiz1rnLi2OM_0\tperson\nFi4kJfnwDFc_1\tbicycle\nFi4kJfnwDFc_0\tbicycle\nFi7LPQxqu14_0\tperson\nFi9uLLmtWaQ_0\tperson\nFi_IAiAUqaU_1\thorse\nFi_IAiAUqaU_0\thorse\nFjBRf4S85bg_0\telephant\nFjBRf4S85bg_1\telephant\nFjCz86a5wp4_0\tperson\nFjF5nRRKjKc_0\tperson\nFjMslXNPmHo_0\tairplane\nFjRDB5KtmZk_0\tcow\nFjUvDc65QJo_0\tperson\nFjZltjNG2NU_0\tskateboard\nFjfP5wdsmM0_0\tcat\nFjo3Q6r1Unc_0\tcow\nFjsVcnD_MIg_0\tmotorcycle\nFjvoIjZBqfU_1\tperson\nFjvoIjZBqfU_0\tperson\nFj98ZrblH1g_0\tumbrella\nFkAQLLdAAbk_0\telephant\nFkAQLLdAAbk_1\telephant\nFkFAVoUYxPc_1\tskateboard\nFkOkAlvY34U_0\tcow\nFkSrQgrkwxM_0\tperson\nFkSrQgrkwxM_1\tperson\nFkZy3LGoN9I_0\tdog\nFkkUslZGIbg_0\tbear\nFkvcJknwKuY_0\tperson\nFkzewHxki8o_0\tskateboard\nFk4XzK5XI6A_0\tbus\nFk4XzK5XI6A_1\tbus\nFlD1RAiVpek_0\tperson\nFlD1RAiVpek_2\tperson\nFlD1RAiVpek_1\tperson\nFlEhS-F3ygQ_0\tumbrella\nFlGO6UYJUzE_0\thorse\nFlNEteNmUhc_0\tperson\nFlR1fAhH2Xo_0\tdog\nFlYY0RaMPNY_0\tperson\nFlgN1oA45yM_0\tbear\nFl2yqFTps4E_0\tperson\nFl6OhW0-1w0_0\tperson\nFl9EhNo7Keg_0\tperson\nFmDFcSMFeno_0\tperson\nFmDFcSMFeno_1\tperson\nFmDOHRJspxI_0\tperson\nFmMYoani5Vg_0\tperson\nFmOLwdbHDxQ_0\tperson\nFmOfXWRFoXQ_2\tbird\nFmUhkvEy_7s_0\tperson\nFmUhkvEy_7s_1\tperson\nFmVDxGIS5zk_5\ttrain\nFmVDxGIS5zk_7\ttrain\nFmVDxGIS5zk_8\ttrain\nFmVDxGIS5zk_9\ttrain\nFmVDxGIS5zk_10\ttrain\nFmVDxGIS5zk_1\ttrain\nFmVDxGIS5zk_2\ttrain\nFmc6udEpldU_0\tcat\nFme4Abd5nUA_2\tbird\nFme4Abd5nUA_1\tbird\nFmoAxj0I_HE_0\tperson\nFmqOvCWa7zg_0\tperson\nFmrozJZpKR8_0\ttrain\nFmsAY671mqQ_7\tknife\nFmuPNtoqS2E_0\telephant\nFm1Depfmi_k_1\tperson\nFm5EMiek6AE_0\tperson\nFm6Hq8f2Qxk_1\tairplane\nFm6Hq8f2Qxk_2\tairplane\nFnEnQ8PP_eE_0\tskateboard\nFnEnQ8PP_eE_1\tskateboard\nFnGScEGhwDA_0\tperson\nFnKvuj-emb4_0\tperson\nFnKvuj-emb4_1\tperson\nFnMl1BAE_jc_0\tbear\nFnMl1BAE_jc_4\tbear\nFnNceIdqZ3w_0\tperson\nFnNceIdqZ3w_1\tperson\nFnTofG0IZf0_0\tperson\nFnb6xihA7ck_0\tperson\nFncXKaqIxJo_0\tperson\nFncXKaqIxJo_3\tperson\nFniMTwzxRZQ_0\tperson\nFnv6GlZeZ98_2\tairplane\nFnwZm6-uVkU_0\tperson\nFn6j8CspFw4_5\thorse\nFn6j8CspFw4_2\thorse\nFn6j8CspFw4_3\thorse\nFn6j8CspFw4_4\thorse\nFn7CPx1Df1I_0\tdog\neRGlFEYZ74g_0\tperson\neRQQ8fY6DVA_0\tperson\neRToPN2xDdI_1\thorse\neRToPN2xDdI_2\thorse\neRVbBhT_bcs_0\tperson\neRXcoQINrwY_0\tcow\neRa3aIGemkw_0\tperson\neRiOVczmKs0_0\tperson\neRk0k7ru0C0_0\tperson\neRlVo64o3EE_0\thorse\neRn_VZZAhDc_0\tbird\neRpQzm5PYXw_0\tperson\neRvRu0q-GoE_0\tdog\neR2L8Yeikhc_0\tperson\neR2s4XgNo7o_2\tdog\neR6IwGLaa1M_0\tbicycle\neR7y-Ei3DLg_0\tperson\neSGBtfzFobI_0\ttrain\neSId-3VXvKk_3\tdog\neSIwAUMyFgU_0\tperson\neSKH9cYOKk8_0\thorse\neSPrJOSU8AM_0\ttrain\neSa1vsOaz1c_0\tknife\neSiLV8rS59E_0\tperson\neSiLV8rS59E_1\tperson\neSljhVPS-Ik_2\tperson\neSljhVPS-Ik_0\tperson\neSpAsKZSmiA_0\tairplane\neTDKrXMMrQ0_0\tcow\neTKPoRwNChU_0\tperson\neTKPoRwNChU_1\tperson\neTKSWSWvAyw_1\tperson\neTNf-Cqbbro_1\tperson\neTQF3UDg8qc_0\ttruck\neTTKvmF97nI_0\telephant\neTUWLCcJU2k_2\tbus\neTU8LeMW9qA_0\tperson\neTc1z6mbb50_0\ttruck\neTdIp3O6Gdc_0\tbear\neTkYJ5e2d6g_0\tperson\neTkbZ2QtHvw_0\ttrain\neTkbZ2QtHvw_1\ttrain\neTpyN9lx8_4_0\thorse\neTsE0jLxU3w_0\ttruck\neTsE0jLxU3w_2\ttruck\neT3B8Dicg34_1\tperson\neT5K9fPU-0g_0\tperson\neUGoobFpS4s_0\tperson\neUKe6XaWIfA_0\tmotorcycle\neUQjLdCSTbY_0\tperson\neUQ4P2JG1yg_0\tbus\neURPg0TbtFI_0\tperson\neUU0KJ-w2bc_0\tperson\neUVgOxQT_-8_0\tcow\neUbEHnOzRA8_0\tperson\neUbEHnOzRA8_1\tperson\neUbEHnOzRA8_2\tperson\neUe_Rayk8X8_0\tperson\neUyzGl0--ms_1\tperson\neU6G8jITD_Y_0\tairplane\neVJOOrHqc34_1\tskateboard\neVL1UQ_nteE_0\tcar\neVNGBAn5Oxc_0\tcat\neVPABDrI9js_0\tbird\neVYydWvg5Go_1\tperson\neVcLRosJZew_0\tperson\neVhB8QJJogM_1\tknife\neVn8akHyS64_0\tairplane\neVn8akHyS64_2\tairplane\neVn8akHyS64_3\tairplane\neVn8akHyS64_6\tairplane\neVuy4uctm28_0\tperson\neVu1gME4-Qs_0\telephant\neVu1gME4-Qs_1\telephant\neVywFyCLwko_0\tperson\neVzfhyg8qFU_0\tperson\neV2KIbTSnH4_1\ttrain\neV4pA62ABv8_1\ttrain\neV6nRsgY8PQ_0\tperson\neV64Qw4Zebk_0\tperson\neV-VIypuuNY_1\tbird\neWHnCpVoKhw_0\ttruck\neWbvhqFVvXk_0\tboat\neWlQOgHQT7g_0\tairplane\neWpIepmfRus_0\tperson\neWpIepmfRus_1\tperson\neWsle8FxRvY_0\tperson\neWyDiulNMGo_0\tmotorcycle\neW6l7xJBq-Q_1\tboat\neW6o2X8qAtQ_0\tcar\neXDegroOl34_0\tperson\neXECAC_iXPc_0\tperson\neXLLe0Z-fJk_0\tperson\neXUIt5B2NQc_0\tperson\neXYniqUW4z8_0\tbicycle\neXYniqUW4z8_2\tbicycle\neXaCA1qL7uY_0\tperson\neXeifN6Jv8c_0\telephant\neXeifN6Jv8c_1\telephant\neXeifN6Jv8c_3\telephant\neXeifN6Jv8c_4\telephant\neXeifN6Jv8c_7\telephant\neXfkthdw2L4_0\tperson\neXixQXmPyYw_0\telephant\neXoF6xS_5u4_3\tknife\neXuelMqu_1M_0\tknife\neXveKyc2TQg_0\thorse\neXxAlPRFiqs_0\tperson\neXxAlPRFiqs_1\tperson\neXxAlPRFiqs_2\tperson\neX3bd4kHxuc_9\tairplane\neYDpQFJpz7k_0\tperson\neYJe2k1E0XQ_0\tbus\neYY-Mz3L_Ac_1\telephant\neYeHu-IftM0_0\tperson\neYnlQEvgHVc_0\tcat\neYqlHj6MSc0_7\tbicycle\neYyGqoW9Q3c_0\tbus\neYyri5GAJDE_0\tperson\neZEN_5rnTLM_0\tperson\neZL3Ew4O7YI_0\tperson\neZXS_3nTpdo_1\tmotorcycle\neZXS_3nTpdo_2\tmotorcycle\neZZb5rnc1iA_0\tbus\neZf-Rsr1aNs_1\ttrain\neZgo_XfmmO0_0\tperson\neZgo_XfmmO0_1\tperson\neZl_FRsZx3o_0\tperson\neZym_LkJnpY_1\tknife\neZ2Y_Qtg0VU_0\thorse\neZ2Y_Qtg0VU_1\thorse\neZ4N2Y737ss_0\tperson\neZ_peGgPSDE_0\tperson\neaHXGY8ImzY_0\tperson\neaOqHSeEVG0_0\telephant\neaR-dFaZRGc_2\tgiraffe\neaTX3J2X23g_1\tperson\neaTX3J2X23g_0\tperson\neaalMrdHsQ0_0\thorse\nearUgdES0lk_0\tperson\neaxPmkwGK5U_0\tbird\nea1EeKBBjxk_0\tumbrella\nea1YcZPjbxU_2\ttruck\nea4saeRZ0_M_0\tperson\nea8mbQn2kv0_2\tdog\nea8mbQn2kv0_1\tdog\nebFgEyNciRc_0\tcow\nebMZJ-lUhbw_2\tbicycle\nebMZJ-lUhbw_3\tbicycle\nebMZJ-lUhbw_1\tbicycle\nebOubiwIUC0_0\tperson\nebV9mcxICDs_0\tdog\nebY5nNOPdN0_0\tperson\nebY52fJyTPs_1\tperson\nebY52fJyTPs_0\tperson\nebagV2pOV20_0\tboat\nebhnTUXh7Pc_0\tcat\nebh7xOXlO7Y_1\tperson\neboXP28MlOE_0\tairplane\nebt0_AWnuyM_3\tbear\nebyMEAOqPhQ_0\tskateboard\nebz4umtEYag_1\tmotorcycle\neb0UO8Y5r5A_0\tcar\neb1-qD5D7Us_0\tperson\neb5d4XIDSqs_0\tcar\necDEmZdWz8Q_0\tperson\necGOS5ZO0Tw_0\tskateboard\necGOS5ZO0Tw_1\tskateboard\necJIf9dcDHk_0\tperson\necKMZLATsNg_0\tperson\necKst7suEZo_1\tmotorcycle\necPynengjhg_0\tperson\necUmR_974l4_0\tbear\neccbjuLjCr0_0\tbicycle\necex13DrS00_1\tbus\necgqb4spDo0_0\tcow\neclnV3fwFVg_0\tcar\necndV9N-b9M_0\tboat\necrgwn6gB7c_2\tperson\necrgwn6gB7c_0\tperson\necrgwn6gB7c_1\tperson\nec0L5W9HzYQ_0\tperson\nec0zPF4t8jM_0\tperson\nec10-YUa1PE_0\tperson\nec4Mjwm2hyQ_0\tperson\nec4ya7ogbFU_0\tperson\nec59VG2krTI_0\tknife\nec7hzm4ZgOM_0\tbus\nec8daVdUMW8_0\telephant\nedErePLiFl4_0\ttruck\nedFb7FxjVPc_1\tperson\nedOvHaEGfM0_0\ttrain\nedO7Q7znUJA_0\tcat\nedPmPMqUt4c_1\tperson\nedPmPMqUt4c_2\tperson\nedS79MnRXwE_1\tperson\nedYcGdD4UGI_0\tperson\nedd8R4oDMdg_0\tperson\nedlAlkitTfg_0\tbird\nedlAlkitTfg_1\tbird\nedq1Zw1FWGY_0\tperson\nedrtSs6UdCI_0\tboat\nedtqJ_N0258_0\tperson\ned0O35MjM6Q_0\tcow\ned5jfyH6JyI_0\tperson\neeEjRmROBZs_0\ttrain\neeEjRmROBZs_1\ttrain\neeJDVUC0bio_0\tbird\neeV0a3p0uz8_1\tdog\neeYr-ujfh4Y_1\tperson\neeYtwUSuQzY_1\tairplane\neeYtwUSuQzY_2\tairplane\neeYtwUSuQzY_0\tairplane\neeZyIsjtgj0_0\ttrain\neeahFaPbx5M_0\tskateboard\neea6uRdJLL4_1\tbird\neee-1I8uLeU_0\tcow\neefTfPIGkq4_1\tperson\neef-qkyU0jY_0\tboat\neepn_UxMI5o_0\tskateboard\nFoFA-VOPhV8_0\tzebra\nFoIc9MjzbBk_0\tperson\nFoSynLz7aJ8_0\thorse\nFoSynLz7aJ8_1\thorse\nFoUqmWxXlNU_0\tperson\nFoUqmWxXlNU_1\tperson\nFobAHnW_q6s_0\tperson\nFog-McdMlO0_0\tperson\nFomH9b8uRKs_2\tknife\nFot4m5WU4Aw_1\tperson\nFot4m5WU4Aw_0\tperson\nFouVJvkYyPs_0\tperson\nFpCdNHknwMQ_3\tcar\nFpCdNHknwMQ_5\tcar\nFpEzn8x46OE_0\tbird\nFpGO4RTCIuk_6\tbicycle\nFpGO4RTCIuk_0\tbicycle\nFpGO4RTCIuk_2\tbicycle\nFpGyjKY-NIk_0\tmotorcycle\nFpGzMvzCvKo_0\tperson\nFpI0Do5LaU8_0\tperson\nFpTdRnuOS8M_0\tperson\nFpTdRnuOS8M_1\tperson\nFpaob2f1sqE_1\tperson\nFpaob2f1sqE_0\tperson\nFpev0w7vGO4_0\tperson\nFprxIVYXUL4_0\thorse\nFpzpuYeDf6M_0\tbus\nFp1vbL5guA0_0\tperson\nFp2HgWZlr2k_0\tperson\nFp7RJqXwz6c_0\tperson\nFp-TG2XDrC4_4\tcar\nFp-TG2XDrC4_0\tcar\nFp-TG2XDrC4_1\tcar\nFp-TG2XDrC4_2\tcar\nFp-TG2XDrC4_3\tcar\nFp_5yBxyvR4_0\tumbrella\nFqFhpogmR2s_0\tcat\nFqHStgmNnKA_0\tbicycle\nFqHStgmNnKA_1\tbicycle\nFqTHQ5KBbaY_0\telephant\nFqjhuAhttZw_2\ttrain\nFqjhuAhttZw_1\ttrain\nFquAMi_ikSA_0\ttruck\nFqxWiT-6dLM_0\tperson\nFqxZmvVkHIA_0\tgiraffe\nFqxZmvVkHIA_2\tgiraffe\nFqx-wOpqzZo_0\tairplane\nFqzYUW3X9pc_0\tperson\nFqzYUW3X9pc_1\tperson\nFq_esHSu_sk_0\tperson\nFrC2HuRBsYA_0\tperson\nFrC-Gp1GmVw_0\tcow\nFrC-Gp1GmVw_1\tcow\nFrIO6gNGeao_0\tperson\nFrUCytgm6sM_2\thorse\nFrViqM6fVR0_0\tdog\nFrVxG6x7tj0_0\tknife\nFrVxG6x7tj0_2\tknife\nFrgvokGeeds_0\tperson\nFrk0tcM1o_w_0\tperson\nFrm5N8YRz_E_0\tperson\nFrpsbU7nO00_0\tperson\nFrxIGKawDiA_0\tperson\nFrzgyfVukw4_0\tperson\nFrz8huGrR4M_2\tmotorcycle\nFr0K__Q_Kv4_1\tbird\nFr2qdnHURF4_0\tboat\nFsHjWJUILr4_0\tperson\nFsScYp1HNk0_0\tperson\nFsXYM3nf7O4_0\thorse\nFsZyoaRLGfw_1\tperson\nFskWl7cTGUU_4\tmotorcycle\nFslFjbzL4rY_0\ttrain\nFsuA_2-7e1w_0\telephant\nFsuA_2-7e1w_1\telephant\nFsvwyL1hLDU_0\tbus\nFswGt3qhUXE_1\thorse\nFs6Lk0xDsWk_0\tdog\nFs6Vua80iU4_1\tbus\nFs-DmOC6Ksw_0\tperson\nFtAgz58w2vs_0\tperson\nFtC0Y3Dca60_0\tdog\nFtD8uBgTi3E_0\tcat\nFtJ8y0gIpKg_0\tdog\nFtJ8y0gIpKg_3\tdog\nFtJ8y0gIpKg_5\tdog\nFtJ8y0gIpKg_1\tdog\nFtJ8y0gIpKg_4\tdog\nFtMshKheG8Q_0\telephant\nFtet3EW_gR0_0\tskateboard\nFtet3EW_gR0_1\tskateboard\nFtj_1qTEwE8_0\tcow\nFtqLCjhRQgQ_1\tperson\nFtqLCjhRQgQ_0\tperson\nFtwMaVMlLbM_0\tperson\nFtwZasadNWo_1\tperson\nFtwZasadNWo_0\tperson\nFt3Xr78g1jg_0\tdog\nFt4RUB75d64_0\thorse\nFt5ZV3L5LV4_0\tperson\nFt8VPp_VNJs_0\tknife\nFuCuNV5vL-8_0\tperson\nFuIIvsD7qyY_1\tperson\nFuMf00RPDmg_0\tbear\nFuNvDTe7cAM_0\tbird\nFuR3p7f2R30_0\tperson\nFuTf8iiIHWI_0\tmotorcycle\nFuVQuZfX71w_1\telephant\nFuc49AUfyaA_1\ttrain\nFufG8eRehvk_0\tperson\nFuoKMOMcl0I_0\tbus\nFu3A7S4V26Q_0\tperson\nFu4p4U9AqY4_0\ttrain\nFu5TDXXdHyc_3\ttrain\nFu5TDXXdHyc_0\ttrain\nFu5TDXXdHyc_1\ttrain\nFu5TDXXdHyc_2\ttrain\nFvB0FA24g0c_0\tmotorcycle\nFvD-5pXN6B4_0\tperson\nFvF8CGSAVBw_0\thorse\nFvIqBpjD4A4_0\tperson\nFvKJQTsxS6o_0\tbus\nFvNiWF5wWJA_0\ttruck\nFvN6HD0c3I8_1\tbicycle\nFvQ8wYSFAhA_0\tbird\nFvZ_lMA5MYE_0\tperson\nFvZ_lMA5MYE_2\tperson\nFvZ_lMA5MYE_1\tperson\nFvcxD9PJ1-g_0\tbear\nFvcxD9PJ1-g_1\tbear\nFviKCn2JGbY_0\tperson\nFvksDxENves_0\tbird\nFvksDxENves_1\tbird\nFvmW4A9wN1c_0\tperson\nFvslrkU6Ii8_1\tskateboard\nFvslrkU6Ii8_5\tskateboard\nFvslrkU6Ii8_4\tskateboard\nFvuJoToFsZ0_0\tskateboard\nFv2LjW2C5SU_0\tknife\nFv2LjW2C5SU_2\tknife\nFv2SAN8CNlg_0\thorse\nFv6OQz_y5V0_0\tperson\nFv80QjBLyXw_3\ttrain\nFv80QjBLyXw_4\ttrain\nFwBCZ90I_aw_0\tcat\nFwIN5LlmnSA_0\tperson\nFwMy9UR3xJA_0\tperson\nFwMy9UR3xJA_1\tperson\nFwNHDlUxkVE_0\tperson\nFwSQA6A_bWE_0\tperson\nFwZzzptQg0s_0\tperson\nFwZzzptQg0s_1\tperson\nFwf5SGfOguQ_0\tbird\nFwf_1L-RQB4_0\tcow\nFwhmGtqpt5s_1\tskateboard\nFwrkNuHACuE_0\tperson\nFwtyj6Ut62E_2\tdog\nFw8NHywJSJw_7\tairplane\nFw8NHywJSJw_8\tairplane\nFxHZCFGlLk8_0\ttruck\nFxI0-u_zPQQ_1\tskateboard\nFxI0-u_zPQQ_0\tskateboard\nFxJg66y6Vj4_0\tperson\nFxJ0douRc4s_0\tperson\nFxMnA-aNvVI_0\tknife\nFxXVgnAjOCs_0\tperson\nFxXVgnAjOCs_1\tperson\nFxitbyLzBbw_0\tperson\nFxmfshFrhyg_0\tperson\nFxmfshFrhyg_1\tperson\nFxp_EDLEylo_1\tbear\nFxxuVRsJiCQ_7\tbird\nFxxuVRsJiCQ_9\tbird\nFxxuVRsJiCQ_11\tbird\nFx74SXbZiUI_0\tboat\nFx-8EgSEaDg_0\tperson\nFyFea2NifCo_0\telephant\nFyKB3iEKNlg_0\tperson\nFyO1UliwWNQ_0\tskateboard\nFyQulDaVp8I_0\tperson\nFyTFrxalrzY_2\tbicycle\nFyb5_PxuzrI_1\tairplane\nFyjgIZnRT0A_0\tperson\nFylDI9Ssx18_0\tdog\nFyqooE73pSs_0\ttrain\nFyuLo6pvAxk_0\tperson\nFyuLo6pvAxk_1\tperson\nFy6UODQTxBw_0\tdog\nFy8cULzM424_0\tperson\nFzJOOqEWb48_0\tperson\nFzP8vDH_ynM_0\tbicycle\nFzV_56qru4c_1\tperson\nFzV_56qru4c_0\tperson\nFzaaAJ_dGjI_1\tdog\nFzc4L1eWvQ0_0\tknife\nFzeiG746wec_0\tperson\nFzoJlCfL5bc_0\tperson\nFzpV3zrU7w0_0\tcat\nFzufL9SIDZ4_2\tperson\nFzvLoCiUbCU_0\tperson\nFz4RMW4ONrQ_0\tskateboard\nF0Ekv-HAlnk_0\tairplane\nF0G64yaBMBM_0\tperson\nF0G64yaBMBM_1\tperson\nF0I59IAm-vo_0\tperson\nF0Qk5fG3X-M_0\tperson\nF0Q9zBIa4vg_0\tknife\nF0Q9zBIa4vg_1\tknife\nF0Q_-7qxWws_3\telephant\nF0UBtRxGNhA_5\tbird\nF0XjqeFLlgU_1\tbird\nF0ZAshDVPxg_0\tperson\nF0c4qnJQtDU_0\tbear\nF0gFV3Zl1ew_0\ttrain\nF0gFV3Zl1ew_2\ttrain\nF0hx5kgZ3go_0\telephant\nF0mBUyvb90Y_0\tperson\nF0qXU9y4p-Q_0\tperson\nF0z1cmfnPsQ_1\tbicycle\nF1B_Y1twDK0_0\tcow\nF1CZ2DPXJ9M_4\tbicycle\nF1CZ2DPXJ9M_1\tbicycle\nF1KHVI6XeVo_0\tperson\nF1eNAhwM5Pc_0\thorse\nF1jGg9828BI_0\tperson\nF1j27LEBSpI_1\tcar\nF1qXLHQywDc_1\telephant\nF1sQlUVWZLM_0\tperson\nF15XLgp6ED4_0\tskateboard\nF2Bb2pFQRyU_1\tperson\nF2EV6W4vdT8_0\tbus\nF2GhztG-3ZM_0\tcat\nF2HupbPd4Rc_0\tperson\nF2JDbaIJXuM_0\tperson\nF2JeBrL43Kg_0\tperson\nF2JnnpLll3c_1\thorse\nF2Kd_wTgfHc_0\tbird\nF2N-fmDDyCs_0\ttrain\nF2an_w-D4WM_0\tdog\nF2bbT3y10lk_0\tperson\nF2dx02YK1MY_0\tcat\nF2kBHcrY7Ck_0\tperson\nF2nvlBMOvGc_0\tboat\nF2nvlBMOvGc_2\tboat\nF2nvlBMOvGc_3\tboat\nF2nvlBMOvGc_4\tboat\nF2yvXHbr1Us_6\tbird\nF2yvXHbr1Us_7\tbird\nF20W1m4x2Ys_0\tperson\nF20_Ihwr_1Y_0\telephant\nF21R2kQ-je4_0\tperson\nF2244CO9Fuo_0\tairplane\nF250PqK5Gb4_1\tairplane\nF3AMItpIJlI_0\tdog\nF3AMItpIJlI_4\tdog\nF3FUBdTgY7c_0\tcar\nF3FUBdTgY7c_1\tcar\nF3Lz3rnQ-7A_0\tperson\nF3Lz3rnQ-7A_1\tperson\nF3NneLgyZiU_0\tperson\nF3RkQzIQjeU_2\tbicycle\nF3XFJeSjPDU_0\tbird\nF3XFJeSjPDU_3\tbird\nF3gY7oCc-j8_0\tcat\nF3j318NP2P0_0\tperson\nF3j318NP2P0_1\tperson\nF3oP1Se_HdQ_0\tmotorcycle\nF35JtGCIiCo_0\tdog\nF377W3trtdg_2\tdog\nF4DJmxH-fuw_0\tskateboard\nF4FXVb3DdJE_0\tperson\nF4FXVb3DdJE_1\tperson\nF4HgVMHEiVQ_1\tbird\nF4Ja9TDp5eg_0\tperson\nF4R1rt0I4Ik_1\tperson\nF4R1rt0I4Ik_0\tperson\nF4WWEXEO6Cw_0\tairplane\nF4hUo05eI2s_0\tperson\nF4hVb1AsJ9M_0\tumbrella\nF4hVb1AsJ9M_1\tumbrella\nF4hp-2UBFcI_0\tperson\nF4l8U4NGPMU_1\telephant\nF4rQJlBkGa8_0\tperson\nF4tzOjT91r0_2\telephant\nF41NWCYabpM_0\tperson\nF44j0JHVdfU_2\tbicycle\nF44z7XXoIZk_0\tcow\nF4-R6x6hSno_0\tairplane\nF4-R6x6hSno_3\tairplane\nF5IEcbmSBiU_0\tperson\nF5UiBt9FiQ4_1\ttruck\nF5brWxznDYA_0\tbicycle\nF5drV0qDFvU_0\tperson\nF5pSgana5Ds_0\tperson\nF5pwABHMaZM_1\tskateboard\nF5y_lQCCiYk_0\tperson\nF51aHL_AuQ8_2\tperson\nF51aHL_AuQ8_0\tperson\nF51aHL_AuQ8_1\tperson\nF54NzXjey4Q_1\tperson\nF6AkwJu9acQ_0\tperson\nF6BUhbvKAY0_3\tbear\nF6I3hGIdHBM_0\tairplane\nF6L1DckOdFs_0\tperson\nF6L1DckOdFs_1\tperson\nF6L1DckOdFs_2\tperson\nF6UTU1zVfY0_0\tperson\nF6X-PDReV8U_0\tskateboard\nF6uVxnnSkQg_0\tcat\nF63FWqs6n6A_1\tperson\nF63OB46zw20_0\tperson\nF66U-dCKTVs_5\telephant\nF67kQb83GEo_0\tperson\nF7Aw74QT7I8_0\tmotorcycle\nF7D1ccHfWQM_0\ttrain\nF7GYFMuRxr8_0\tperson\nF7MruF3gqRk_0\tperson\nF7MruF3gqRk_1\tperson\nF7M2n9Irv10_0\tperson\nF7adrDrejOI_0\tbicycle\nF7adrDrejOI_3\tbicycle\nF7adrDrejOI_7\tbicycle\nF7iFGXShjIg_1\tknife\nF7lmwAhsTVE_1\tcat\nF7lmwAhsTVE_0\tcat\nF7wyUoc1ELM_1\tperson\nF7wyUoc1ELM_0\tperson\nF72e40LPG8g_2\tairplane\nF72e40LPG8g_3\tairplane\nF72yH9hRoS0_0\tperson\nF77I6mkMOmM_0\tperson\nF77I6mkMOmM_1\tperson\nF77WzfDD-Ac_0\tperson\nF77WzfDD-Ac_1\tperson\nF8VZcw3-DMg_0\tperson\nF8XbiaxQYFA_0\tcar\nF8kTGPYH29o_0\tairplane\nF8sVrU5FfZw_0\tperson\nF8vyo42LQM0_0\tairplane\nF9KIXBo3lNI_0\tbird\nF9KIXBo3lNI_1\tbird\nF9WnfUhb8A4_0\tboat\nF9hhOJk3fdY_0\tperson\nF9jiY40SX4g_0\tperson\nF9kDOaogdPA_0\ttrain\nF9kDOaogdPA_1\ttrain\nF9nirQJj4wc_0\tmotorcycle\nF9qYvrO4nMM_1\tperson\nF9qYvrO4nMM_0\tperson\nF942FTRne2Q_0\tperson\nF95fIsG0A7U_0\thorse\nF98XVAomn1s_0\tperson\nF-AROt5V1zQ_0\tairplane\nF-L2byRMMEI_0\ttruck\nF-QpXlvCAdw_0\tgiraffe\nF-RVugkjZ1k_0\tperson\nF-RVugkjZ1k_1\tperson\nF-dxzMmjOT0_0\tperson\nF-dxzMmjOT0_3\tperson\nF-dxzMmjOT0_1\tperson\nF-poowwxrxU_0\tperson\nF-3G1FhnsdY_2\tcow\nF-3G1FhnsdY_3\tcow\nF-7EAK7rTI8_0\tbird\nF_AoZsBu8j8_0\tperson\nF_AoZsBu8j8_1\tperson\nF_BBB0J-9tQ_0\tmotorcycle\nF_CsG_jIxC8_1\ttruck\nF_I4rwh1mtE_0\tperson\nF_JJmqKJBnY_0\tperson\nF_Kw8qyfgjU_0\tperson\nF_WtOi2ZeSE_0\tumbrella\nF_oxJfyCUrw_0\tperson\nF_wVAS7hR9E_0\tcat\nF_5NdFCcCrQ_0\tairplane\nF_59LD9YnAU_2\tperson\nF_8qVC7MHM0_0\tperson\nGABXImD8qwM_3\tdog\nGADBGhd7Hbc_0\thorse\nGAF3BbJqKos_0\tperson\nGAF3BbJqKos_1\tperson\nGAGFuwQyn2A_1\tperson\nGAVdXzEftIU_1\tperson\nGAaPJd_iVeU_0\ttrain\nGAb6ZqG64o4_0\tperson\nGAb9NG_JnoU_0\tcow\nGAe7SnwoPQQ_1\tairplane\nGAg-aVsz7AI_1\tperson\nGAinaDnPPO0_0\telephant\nGAnYrNhN90c_1\tperson\nGAoDRtFNSeQ_0\tbird\nGAoaBt8kfHQ_0\ttrain\nGApyoyRTlPk_0\tperson\nGArUrBTpgzk_4\tairplane\nGArUrBTpgzk_1\tairplane\nGArUrBTpgzk_3\tairplane\nGAzsUwyCRAI_0\tcow\nGBF7wVda328_0\tdog\nGBLwQswYGpQ_0\tdog\nGBUiAfFHr8o_0\tperson\nGBYAc4swbr8_0\tperson\nGBYFzcFWKtI_0\tskateboard\nGBYeOSgHxaw_1\tperson\nGBhV-vm_cDs_0\tmotorcycle\nGBhV-vm_cDs_1\tmotorcycle\nGBhV-vm_cDs_2\tmotorcycle\nGBhV-vm_cDs_3\tmotorcycle\nGBjWoHEvi24_0\ttruck\nGBnf-AAsQts_0\tperson\nGBvWcmiB_zQ_0\tperson\nGBv60Rpf6hA_0\tperson\nGBwqR6gIUJk_0\tperson\nGBwqR6gIUJk_1\tperson\nGB0RUQ72TDU_1\tmotorcycle\nGB0RUQ72TDU_2\tmotorcycle\nGB0RUQ72TDU_4\tmotorcycle\nGB1A1gXLxF8_1\tumbrella\nGB1A1gXLxF8_0\tumbrella\nGB2Z9Zd9kCM_0\tcow\nGB3M7jlJvZo_0\tumbrella\nGB3dD_Sz5yA_0\tcow\nGCECUCM275I_0\ttruck\nGCECUCM275I_3\ttruck\nGCECUCM275I_4\ttruck\nGCECUCM275I_1\ttruck\nGCECUCM275I_2\ttruck\nGCHyhn505e4_0\tperson\nGCL5aSCyDAQ_1\thorse\nGCR8piyI8to_0\tperson\nGCdYlCKelqg_2\tbird\nGCf79ImcoV4_0\ttruck\nGCiR2DBKEUo_3\tumbrella\nGCiR2DBKEUo_0\tumbrella\nGCyZCLCX4jI_1\tbus\nGC5X3-Zi5fo_0\tbear\nGC_4PRhWwy0_1\tperson\nGDBvvswiioY_0\thorse\nGDErDO6sQxg_0\tperson\nGDHukw9i8AE_0\tbear\nGDPBufHJ6pE_0\tperson\nGDVxjq335kg_0\tperson\nGDVxjq335kg_1\tperson\nGDW_ebhUmXg_0\tperson\nGDeoeNk-jj8_1\ttrain\nGDgRHR5rt5g_0\tdog\nGDhVskUd-i0_0\ttruck\nGDkTfXax1EI_1\tperson\nGDr1CfMsWCo_0\tknife\nGDyR3j6e9uU_0\tbear\nGD0qZhFYMtE_1\tbear\nGD5H2vUIQUM_0\tbird\nGD7nVz18opA_0\tcow\nGEC16HE9LPs_0\tskateboard\nGEK0W7Soe5I_0\tperson\nGEOILdSs_m4_0\tperson\nGEXtPkuLXV4_0\tperson\nGElPgxFGsYM_0\tperson\nGEmM96O2bm0_0\tperson\nGEoAqEILC5I_0\tbicycle\nee4MHg5K9xo_0\tperson\nee4MHg5K9xo_1\tperson\nefANTTg0s7E_0\tperson\nefD7irKhsjg_1\tzebra\nefFDVTrJnI0_0\tperson\nefQ-zUFNN-U_2\tairplane\nefQ-zUFNN-U_3\tairplane\nefQ-zUFNN-U_0\tairplane\nefQ-zUFNN-U_1\tairplane\nefUVmXxR3pI_0\tperson\nefXikRhGmrs_0\tperson\nefdHHLZ3g1Q_0\tmotorcycle\neffHbT0DhsY_1\thorse\neffHbT0DhsY_2\thorse\neffHbT0DhsY_3\thorse\nefj0ZypW97U_0\tperson\nefl9qpSfN9o_0\tskateboard\nefo_cgnnucQ_4\tknife\nefqCl5PWA5Y_2\tbear\nef6fQWU1KdY_0\tperson\nef9zPCUJ5uQ_0\tboat\negByT16s_54_0\tperson\negByT16s_54_1\tperson\negHnmalt3d8_0\thorse\negQiifLgKHE_0\tperson\negVsaW3pIR8_0\tbus\negotrU2sxIs_1\tcow\negotrU2sxIs_0\tcow\negymuz3YUjw_0\tperson\neg0xHA2KO2M_0\tcar\neg0xHA2KO2M_1\tcar\nehAg6V-5Puk_0\tairplane\nehB-VoBE8As_0\tperson\nehFoBFIrRho_0\tperson\nehFvz7g6tcc_1\tperson\nehFvz7g6tcc_0\tperson\nehF--LpGjPU_0\tperson\nehI3hX4P2gg_0\tbus\nehSU0TuduDM_9\tboat\nehSU0TuduDM_0\tboat\nehSU0TuduDM_3\tboat\nehSU0TuduDM_7\tboat\nehSU0TuduDM_8\tboat\nehTOHuz8De4_0\thorse\nehhoOXi21uc_0\tperson\nehhzn87_kyY_0\tknife\nehpsJCYWhMo_0\tdog\neh0-hoyeQv4_0\tperson\neh383O3j2o8_0\ttrain\neh8ClQx55Pk_0\telephant\neh8ClQx55Pk_3\telephant\neh8ClQx55Pk_1\telephant\neh-Hpgj7SPM_0\tbird\neiIxHOvvvog_0\tperson\neiKfZPTeN-M_0\tperson\neiMVAVfFk50_1\tgiraffe\neiNlPbSqaQM_2\tbear\neiOC7H2_I7E_0\tmotorcycle\neiYV7UFe9_4_0\tperson\neiZm5CglnLc_0\tperson\neiirsESzuHs_0\tbicycle\neim8NPBqZXg_1\tperson\neis2vlxPtf4_1\tperson\neivFKGFBySc_0\tperson\neivMnaQyUKU_0\tperson\nei0PFx0qNIQ_1\tperson\nei0PFx0qNIQ_0\tperson\nei4Yn0KXnAM_0\tperson\nejDpzIUHAMk_0\tperson\nejD4KjqrkFo_0\tcat\nejIMw0_a1Zo_0\tperson\nejIMw0_a1Zo_1\tperson\nejVKT8cDDTY_2\tmotorcycle\nejoDQZqi4DU_0\tperson\nejsflVtvinE_0\tdog\nejzqfqBU2XY_2\thorse\nejzqfqBU2XY_0\thorse\nejzqfqBU2XY_1\thorse\nej5D22-gpzY_0\tperson\nekBhYo1n09M_0\tperson\nekGn7Al_5S0_0\tperson\nekOQkNLi9gA_0\tperson\nekPQmhXqsJs_0\tcow\nekQPPxQDQrA_0\tbird\nekYErFjRBcY_0\tperson\nekaQzIhIz6U_0\tperson\nekhId7QWajE_0\tperson\nekw22HGT0TY_0\tperson\nek6F1Yy6r4g_1\tperson\nek6F1Yy6r4g_0\tperson\nek9m3wFRD78_0\tmotorcycle\nelAJmgZ3uV8_1\tperson\nelIopJ6sLS8_0\tmotorcycle\nelS7CV83kDQ_0\tcat\nelbH9USSXbU_1\tperson\nele_x5If5RM_0\tcat\nelfDIDNaxO8_0\tbicycle\nelfDIDNaxO8_1\tbicycle\nelk9Eg_zAzA_0\thorse\nelwOqTHVPb4_0\tcar\nel_1tnvsCAY_0\telephant\nemAlGe0D2Ro_0\tcar\nemBk5WfF9MA_0\tperson\nemFvwwYH0Dk_0\tperson\nemLp02HobE4_0\tperson\nemO2DsNKmTw_0\ttrain\nemVjapACNME_0\tperson\nemWHcaPL5H0_0\tperson\nemXkTzHEyT4_0\tboat\nemhCPyXIbNk_0\tperson\nemqrQO4JZsU_1\tskateboard\nemxIavKneZw_0\tperson\nemzfRpng4hM_0\tbicycle\nem3XyVBpKCc_0\ttrain\nenA3HVeW4MM_1\tperson\nenCpXewY40c_0\ttruck\nenCpXewY40c_1\ttruck\nenR0OQhVBwE_0\tperson\nenWAeU6n9LQ_0\tperson\nenXS9AGUoow_0\tmotorcycle\nenY96p1ZALE_0\tknife\nenfPrTim6AU_0\tcow\nengcDIwacLg_1\tperson\nengcDIwacLg_0\tperson\nen06DIx0cz0_1\tperson\nen06DIx0cz0_0\tperson\nen6AOaqCY1s_0\ttruck\nen9gUgAJoek_0\tperson\neoFFf1yMhOg_0\tperson\neoauVNDdle8_0\tperson\neodvToXk2OQ_1\tcow\neodvToXk2OQ_0\tcow\neohpHQHPoXo_0\tdog\neovUEztTVZ4_0\tperson\neoyj6UfwM1c_0\tairplane\nepIcFi7yUZg_3\tcow\nepK_YUgNzQI_0\tcat\nepUTWEmTW1o_0\tbus\nepXYWAgJeJM_0\tperson\nepZSAxAzWRs_0\tperson\nepeLK68bI3k_0\tperson\nepeLK68bI3k_1\tperson\neph8ACa_bv4_0\tperson\neph8ACa_bv4_2\tperson\nepis0oQPudE_1\tperson\nepu8oDLyhBw_0\tcow\nepxbwMupoU0_0\ttruck\nepxxfkiUpVQ_0\tperson\nep15pnX1AxU_0\ttruck\nep4od2aZYv8_0\tdog\neqAMk_GzwUg_0\ttruck\neqMRouLMQI0_0\tperson\neqPXFnE2SxE_0\tperson\neqTdm4-YomY_0\ttrain\neqWb0eTMl98_0\tcow\neqiPG6XAei8_1\tperson\neqiVR6aa8XA_0\tperson\neqnF1_Lwa94_0\tmotorcycle\neqswu7XtVeE_0\tboat\neqswu7XtVeE_1\tboat\neqvu61eQ-D0_0\tperson\neqwZeHPEjT0_0\tbus\neq2VUeTEEGM_0\telephant\neq2VUeTEEGM_1\telephant\neq2-yJIiWyA_0\tskateboard\neq7fzAhOZEo_0\tperson\neq8-99wqpC4_0\tmotorcycle\neq-XVpUOFlQ_0\tcow\nerDb15O0GYM_0\tperson\nerIMuEor6gc_0\tperson\nerJzcEpQ-sA_0\tperson\nerKEWcCPgjU_0\tperson\nerKRZXMcCzQ_0\tbus\nerLW6pBgIrE_0\tperson\nerLW6pBgIrE_1\tperson\nerWerfoGejo_1\tdog\nerZ0-WmkPj8_0\tperson\nerfJrdfPp8M_0\ttruck\neri-jOmjJ5U_0\tperson\nerprzr0GCa0_0\tperson\nerrX-c_luf8_0\thorse\nerwHbfRwbDc_0\ttrain\neryYeuoNAdw_0\tperson\nesEKixC0bi0_0\tmotorcycle\nesFUx8MS7FU_0\tperson\nesFUx8MS7FU_1\tperson\nesHEHZv3XAw_0\tperson\nesdMTvdz7G8_0\tperson\nesd9prHEDmY_0\tcat\nesnr6cTpfQI_0\tskateboard\nesnr6cTpfQI_1\tskateboard\nesrkVh27SSg_0\tgiraffe\nesr3dKZtZ9I_1\tperson\nestRADheTso_0\tperson\nesxEV1BYf8g_0\tdog\nes0lurDiGrM_0\ttruck\netCrz_vcvJI_0\tzebra\netFtHhL2hac_6\tbicycle\netHjccaFHjw_0\tperson\netZXvy6wqZM_0\tcat\netZjkcz1NXE_1\tperson\netfOefeQ0NA_2\tknife\netgjVXNON5k_0\tperson\nethiyhktDW0_0\ttrain\netrQY3yeg8M_1\tperson\netrQY3yeg8M_0\tperson\netu6chaT_o0_0\tmotorcycle\netu6chaT_o0_1\tmotorcycle\netu6chaT_o0_2\tmotorcycle\neuNO4mGjpL4_0\tperson\neuS2rEsG-jA_0\tperson\neuaiFpmh6SU_1\tperson\nGEuy-JvOFBM_0\thorse\nGEwLV10zHSM_0\tperson\nGEwYE_QVNHE_0\tboat\nGE061if8j60_0\thorse\nGE8D0jEjasg_1\tbird\nGFCN_4akSi4_0\tperson\nGFMwf7Ly_Sc_2\tperson\nGFMwf7Ly_Sc_0\tperson\nGFN08ryY-U0_2\tknife\nGFTwQgse_Lk_4\tknife\nGFXh14V5BN0_0\tcow\nGFkCQFowcfs_0\tperson\nGFkCQFowcfs_1\tperson\nGFlTNatYs1E_2\thorse\nGFlTNatYs1E_0\thorse\nGFmBVLxS0W4_0\tperson\nGFsVA4Rxqv0_0\tcow\nGFtZEmPze30_0\tperson\nGFytNaOS7eE_0\tboat\nGF28RuK9Mio_0\tperson\nGF28RuK9Mio_1\tperson\nGF29WU5hVFU_1\tumbrella\nGF29WU5hVFU_2\tumbrella\nGF4b86WLzWE_0\tperson\nGF-zdmzb4zY_0\tbus\nGGBhXIkXN-U_0\tdog\nGGCSOyr8iNg_0\tcat\nGGNkUcwxgU0_1\tairplane\nGGX2r0RT9h4_0\tbird\nGGY5BDDn5LE_0\tperson\nGGtf7t-SVb0_0\tperson\nGGytoCC23B4_0\tdog\nGG2kiaUm9pg_0\tperson\nGG_CxOFs69U_0\tbicycle\nGHAR-041e4w_0\tperson\nGHF_00q4fw0_0\tperson\nGHN9eBe1Bp8_0\tknife\nGHWPuquucrM_0\tcow\nGHZjWHKMwyw_1\ttruck\nGHqedSEAQ9k_1\tperson\nGHqmzbJnjVg_0\tperson\nGHu-Q-Jbh6E_0\tumbrella\nGH_-l0dCs1A_0\ttruck\nGINmKyxk55E_0\tperson\nGIOByl4-GaE_0\tperson\nGIQcZHeI0rA_1\tknife\nGIRWosek2kk_0\tperson\nGIesL1NmKrU_0\tairplane\nGIiKoRSDN-Q_0\tskateboard\nGIiKoRSDN-Q_1\tskateboard\nGItE5rGj_-g_0\tperson\nGI0iwCtSgJY_0\tperson\nGI7YeWGyVRM_0\thorse\nGJAe8ctAWb0_0\tperson\nGJHbNDEY178_1\tperson\nGJHbNDEY178_0\tperson\nGJIPOsnsWAg_0\tperson\nGJIPOsnsWAg_1\tperson\nGJL8p4_PeKo_0\tperson\nGJMk0Meedm0_0\tperson\nGJbtzWK_dYk_0\tperson\nGJpkQJ1A6Gw_1\tcow\nGJy5Zhvk6lE_0\tperson\nGJ1O_aGTN94_0\tmotorcycle\nGJ4kWS7SklQ_0\tperson\nGJ7mp6eUiPg_0\tcar\nGJ9641JuJGs_1\tperson\nGJ9641JuJGs_0\tperson\nGKCr5DPt-O4_0\tcar\nGKC9zObtOMM_0\tperson\nGKEhy910De4_0\ttrain\nGKWJ0lgaDCg_0\tumbrella\nGKWJ0lgaDCg_2\tumbrella\nGKewJtAM0mQ_1\tperson\nGKewJtAM0mQ_0\tperson\nGKhEkZ-cdNQ_0\ttrain\nGKlP0uncbyg_0\tperson\nGKlP0uncbyg_1\tperson\nGKlP0uncbyg_2\tperson\nGKlP0uncbyg_4\tperson\nGKmEvD6kEV0_0\tbicycle\nGKn-IcumftE_0\tperson\nGKpcLh6EzTI_0\ttruck\nGKs6SswOMow_0\tskateboard\nGKyR_cV3NzE_0\tbird\nGK1HKUicpqc_0\tperson\nGK7khWET2AA_0\tperson\nGLBHzmRhRXw_0\tperson\nGLCLinUtVWM_0\tperson\nGLJJdMPYSaY_0\tperson\nGLLgtpj5VIc_2\telephant\nGLLkz3ew2Cw_0\tperson\nGLN48vyNNE8_0\tperson\nGLOfyCC7cpg_1\tperson\nGLOfyCC7cpg_0\tperson\nGLTbuhg3c9c_0\tcow\nGLTcmtEP3PQ_6\tperson\nGLTcmtEP3PQ_0\tperson\nGLTcmtEP3PQ_1\tperson\nGLTcmtEP3PQ_2\tperson\nGLTcmtEP3PQ_4\tperson\nGLT0qdbJFmE_0\tperson\nGLYc7lsUKvQ_0\tcow\nGLemLQ7Taz4_0\tdog\nGLiiNf5XBGw_1\tperson\nGLnBX7vZMds_0\tcar\nGLncyVpSovs_0\tperson\nGLonpYW6Yi8_0\tperson\nGLsxpYW-07A_0\tperson\nGLy3RuBdLZ4_0\tgiraffe\nGL2K160VZnM_0\tairplane\nGL5i6mrfwJQ_0\tperson\nGL6eTReYh8E_0\tgiraffe\nGL7g579uon4_0\tbus\nGL_EwiiBm1A_1\tperson\nGL_EwiiBm1A_0\tperson\nGMCQFxoF1UE_0\tbear\nGMJi6djWGYg_0\telephant\nGMLP7F_Da2w_0\tperson\nGMVqWicQ2d4_0\tmotorcycle\nGMeN9Z1A9X4_0\tcar\nGMj9b1A2R98_0\tbus\nGM3BiiUS2Xw_0\tcat\nGM31sVP8NMA_0\telephant\nGNJ088XwXpI_2\tskateboard\nGNLzZ4OPnHc_0\tboat\nGNLzZ4OPnHc_1\tboat\nGNN-BevC79g_0\tknife\nGNRZ4AjoiSE_0\tairplane\nGNawMpiTEFs_0\tperson\nGNnrNuC9zGU_2\tperson\nGNnrNuC9zGU_1\tperson\nGNqCvE7d9mE_0\tperson\nGNr1nF-F-40_2\tboat\nGNvEs3KBgRw_0\tperson\nGN97F0ERx8k_1\tperson\nGN97F0ERx8k_0\tperson\nGOE3QOj97xk_0\tperson\nGOLZ7CWDXjk_1\tperson\nGON778LYTqk_0\tperson\nGOQICMUoGL8_2\tperson\nGOWRiwkZo2U_0\tperson\nGOW84-_w-LQ_0\tbicycle\nGOZwEuPDmzc_0\tperson\nGOb0e4ojb3c_0\tairplane\nGOkeNGfFi8Q_0\tperson\nGOkeNGfFi8Q_1\tperson\nGOpAs6aca30_1\tperson\nGOpAs6aca30_2\tperson\nGOrO-A4yd5c_0\tperson\nGO0RyAWdVQA_0\tperson\nGO1tmJmOjZU_0\tcow\nGO9YRVC_2SA_3\telephant\nGO9YRVC_2SA_4\telephant\nGO98cqZbP2o_0\tcar\nGO98cqZbP2o_1\tcar\nGPABD8HFpQU_0\tskateboard\nGPCArlk4udc_0\tbird\nGPHwY1J1u04_1\tcat\nGPLKI0foxxc_0\tperson\nGPUUqd1IyNA_0\tdog\nGPUdCDtaGOQ_2\tboat\nGPViSMkz1ds_1\thorse\nGPViSMkz1ds_0\thorse\nGPZznxc87vA_0\tcow\nGPlHiCxNeIU_0\tperson\nGPnO7jt_-JI_0\tperson\nGPn2JSguaBI_4\tumbrella\nGPn2JSguaBI_0\tumbrella\nGPn2JSguaBI_1\tumbrella\nGPtN0Kb9qZs_0\ttrain\nGPzwYc908OM_0\tbicycle\nGP2YaQXsf0s_0\tumbrella\nGQJu2FlmC0A_0\tknife\nGQRDl6gw-n8_2\tbear\nGQRDl6gw-n8_3\tbear\nGQV1QfplpXU_0\tperson\nGQ6mrqpELDs_0\tperson\nGQ99sfZjwTo_0\tperson\nGRMv9irLuQw_0\tmotorcycle\nGRQUwn0jA8Q_0\tperson\nGRRXv9O7hNk_0\tmotorcycle\nGRRullNXQUY_3\tskateboard\nGRTcBPmHWPU_0\tmotorcycle\nGRjf8G-WDvc_0\tperson\nGRk94EZiwO8_0\tskateboard\nGRo9Bmi4ghA_0\tcat\nGRwCcOF0NyI_0\ttrain\nGRwCcOF0NyI_3\ttrain\nGRwCcOF0NyI_1\ttrain\nGRwCcOF0NyI_2\ttrain\nGRwvd8Xl-l0_0\tbird\nGR5qTAjCnB4_0\tcow\nGSD3hdUWKNg_0\tperson\nGSD_Asi3tsA_0\telephant\nGSD_Asi3tsA_6\telephant\nGSIFRlloCGA_0\tcow\nGSMYNBUuI74_1\tmotorcycle\nGSb8ilGRCd8_0\tumbrella\nGSkpDZZFQd4_0\tboat\nGSmR-G7zCN0_0\tairplane\nGSqatXKKzUU_1\tboat\nGS1El_XLryU_3\tbird\nGTaW87cQCZk_0\tbird\nGTegSO4BiDY_0\tperson\nGTgztSxvdzw_0\thorse\nGTg35QGB0bQ_1\tperson\nGTg35QGB0bQ_0\tperson\nGTjqtTiUFFA_0\tperson\nGTkZ7eZIV5I_0\tskateboard\nGTpF9CW8Kyo_2\tcow\nGTpF9CW8Kyo_3\tcow\nGTpF9CW8Kyo_0\tcow\nGTpF9CW8Kyo_1\tcow\nGTt9sqczKqg_0\tperson\nGTuP3gwjf70_0\tperson\nGT4askC-EmE_0\tskateboard\nGT4askC-EmE_2\tskateboard\nGT6Ta63CfGc_0\tbus\nGT7pB1SoSWQ_0\thorse\nGUA64cJx_1s_0\tperson\nGUG7toTLyt4_0\tbear\nGURTVjQ25hM_0\tairplane\neufhHTT-6cc_0\tperson\neujtr13Kbtg_0\tcow\neutsycO_2Zw_0\tumbrella\neu0WWqOzPNI_1\tboat\neu07YiPAVxk_0\ttruck\neu6zY6HpY1M_0\tperson\nevA7SzcjAkU_2\tknife\nevA7SzcjAkU_3\tknife\nevA7SzcjAkU_0\tknife\nevDr0RJRRV8_0\thorse\nevMMyqn2S94_0\tperson\nevRaMSC7xlI_0\ttrain\nevVOgDU7DsE_6\ttruck\nevcE8ru07G8_0\tumbrella\nevcWn6cN50A_0\tumbrella\nevhP2M5P0rM_1\tperson\nevksM4sehcQ_0\tcat\nevtk4IiqjkM_1\tperson\nevw-tqTTtQ8_0\thorse\nev1ATOeJPxY_0\tperson\nev1ATOeJPxY_1\tperson\nev53NALjp3I_0\tperson\nev7a6Z-ZOv4_0\tperson\nev-fVsUuvfA_0\tperson\newB46nb-ZFI_0\tbird\newFZmQCCZm0_0\ttruck\newFZmQCCZm0_2\ttruck\newOgoCimrdA_0\telephant\newUWpmdjLHA_0\tbicycle\newUWpmdjLHA_2\tbicycle\newgdEY7GtsQ_1\tairplane\newkBRzmoZzo_1\ttrain\newkBRzmoZzo_2\ttrain\newkeB8zzSVE_2\tdog\newkeB8zzSVE_3\tdog\newkeB8zzSVE_1\tdog\newoUjWEEJS4_0\tdog\new9rbdv73TA_0\tumbrella\nexR3lT_G3Yk_0\tknife\nexZF88kJoP8_0\tperson\nexjWaQ0ssbM_3\tairplane\nexjWaQ0ssbM_0\tairplane\nexjWaQ0ssbM_1\tairplane\nexn-_MfEP6Q_0\tperson\nexoNfV0vU_Q_1\tperson\nexoNfV0vU_Q_0\tperson\nexw_qJh1qp8_0\tcat\nex6Il_1Ielw_0\tmotorcycle\nex7mPB9cYwc_0\tperson\nex7mPB9cYwc_1\tperson\nex-yo1W_s34_0\tskateboard\neyAxkbxVdHA_0\tperson\neyAxkbxVdHA_1\tperson\neyNJXyldIhM_0\tperson\neySeJsY8tZU_0\thorse\neyZeTi4-udw_0\tboat\neycvZhhuzOI_0\tperson\neyd3cO1cRyw_0\tperson\neyg_dFAAJ_c_0\tumbrella\neyi_kSPelbM_0\tperson\neyo2iTfyALs_0\tcat\ney49lNbkqdQ_0\tperson\ney7evH7qmFA_1\tperson\ney9CIllx21w_2\ttruck\ney9CIllx21w_5\ttruck\ney9CIllx21w_8\ttruck\nezOxb6H18Dk_0\tperson\nezX_8NsARn4_1\tperson\nezYCeDV1Aew_0\tbicycle\nezam_iANUkY_0\tmotorcycle\nezdehi1wmW4_0\tcow\nezktd-PtOQo_2\thorse\nezktd-PtOQo_3\thorse\nezrNhnjWp-s_0\tperson\nezrNhnjWp-s_1\tperson\nezu6OcJjjLk_1\tperson\nezvAmpvi364_1\tperson\nezyLlrEVZRU_1\ttrain\nez4u6-2yh8U_1\tperson\nez7mJtg4aoU_0\tcow\ne0Al-yQwL8w_1\tbear\ne0C174hEUpI_0\tperson\ne0HCj6FnKMo_0\tperson\ne0HrgDMAL5c_0\tboat\ne0K-Wc2SGSk_0\tperson\ne0V--elE2Dc_3\tboat\ne0V--elE2Dc_0\tboat\ne0XejLvBbTw_0\tmotorcycle\ne0dXS2okSxo_0\ttrain\ne0jUh6hQykw_0\tperson\ne0jUh6hQykw_2\tperson\ne0kJTvItoXc_1\tperson\ne0kJTvItoXc_0\tperson\ne0qJxStHuGA_1\tskateboard\ne0rXPv5Q8ac_0\tperson\ne1KQ3rXcBVg_0\tairplane\ne1KQ3rXcBVg_2\tairplane\ne1KQ3rXcBVg_1\tairplane\ne1S7tY6zlBs_0\tbus\ne1ZNGYPt280_0\tcow\ne1a0tLtZdm8_0\tperson\ne1dAdTW0-s8_0\tperson\ne1guDr5Lq88_0\tperson\ne1iYijyYnIc_0\tperson\ne1iYijyYnIc_1\tperson\ne1v5-Vy3ikU_0\tmotorcycle\ne11u2SRsMQk_0\tumbrella\ne110Ssoc3rc_0\thorse\ne2Biqc_Y8fI_0\tboat\ne2Biqc_Y8fI_1\tboat\ne2C6vpxx1BQ_1\tperson\ne2C6vpxx1BQ_0\tperson\ne2DeceLJ4QU_1\telephant\ne2DeceLJ4QU_0\telephant\ne2DmJ2nN-bM_0\tperson\ne2DmJ2nN-bM_1\tperson\ne2IXk3LUK0k_1\ttruck\ne2Jc499uBac_0\tbus\ne2MbvKCUxBQ_0\tskateboard\ne2oWEimFUeM_0\tboat\ne2oWEimFUeM_6\tboat\ne26M0NUTUcs_0\tperson\ne29Si0sk8Vs_0\tperson\ne3Ep8F-TVbQ_1\tbicycle\ne3Ep8F-TVbQ_0\tbicycle\ne3MrKt1yh3E_0\tairplane\ne3ezeG4Gm80_1\tknife\ne3fz03vzrmQ_0\tperson\ne3pGW6uqeQA_0\tcat\ne3tP581aZ0Q_0\tperson\ne34jQApS9Bw_0\tperson\ne3_zIH1Jrf0_0\tperson\ne4R8Aj-X5iA_1\thorse\ne4ZrrwoRRXc_0\tbear\ne4c8OdRhAyA_0\tknife\ne4c8OdRhAyA_3\tknife\ne4iZ27N3agg_0\tperson\ne4rO9AJXQzY_1\tperson\ne4yT58KhTcs_1\tairplane\ne4yT58KhTcs_2\tairplane\ne4zdJYlc4z8_0\tperson\ne47QRGUx_Hs_0\ttruck\ne47QRGUx_Hs_1\ttruck\ne48A0CBQct8_0\tperson\ne5CFfGS4B1s_0\tperson\ne5DZWu7GqG4_3\tbicycle\ne5MbNYLt7wU_0\tperson\ne5MbNYLt7wU_1\tperson\ne5RlRpaBXnE_0\tdog\ne5UjJAZHaBc_0\tperson\ne5VUEXqXFTM_0\tumbrella\ne5kfPy-MIGw_0\telephant\ne5lFDgi4EIs_0\tcow\ne5-Pz_Q8VUA_0\tperson\ne6F88LQJoLc_0\tperson\ne6G0gHixPGE_0\tboat\ne6IQ-jfygns_0\tperson\ne6IQ-jfygns_1\tperson\ne6T5hbKQwAs_0\tperson\ne6aWxOF189s_0\tperson\ne6hz-jEGxsg_0\tperson\ne6muu75RFmg_0\tbus\ne6s13mZyuYY_0\tskateboard\ne6s13mZyuYY_2\tskateboard\ne6s13mZyuYY_3\tskateboard\ne6xT3S6wuwE_0\tperson\ne64lVlYKNYs_0\thorse\ne7IeNjbA7ms_0\tmotorcycle\ne7JZ2C-e9_w_1\tskateboard\ne7Q3z9gbUw8_0\tskateboard\ne7TKWwysO8Q_0\telephant\ne7W79Xp4qxI_0\tperson\ne7aF0fG2O2U_0\tbear\ne7aF0fG2O2U_1\tbear\ne7eZQb8WjmQ_0\tperson\ne7xAzZCvd_Y_0\ttruck\ne70XtlB-Au8_0\ttruck\ne70XtlB-Au8_1\ttruck\ne70XtlB-Au8_2\ttruck\ne70XtlB-Au8_3\ttruck\ne70XtlB-Au8_7\ttruck\ne70jqVThihE_3\tknife\ne70jqVThihE_1\tknife\ne72VJJ7jkoI_2\tairplane\ne76gr0pJMLg_0\tboat\ne8BQbcBgcjc_0\tperson\ne8VeeESy9Xc_0\thorse\ne8XzpXJnucs_0\tmotorcycle\ne8XzpXJnucs_1\tmotorcycle\ne8XzpXJnucs_2\tmotorcycle\ne8Y4hXyFPDY_0\tperson\ne8ZFu6n4mg8_0\tperson\ne8b7eo56B5Y_1\tperson\ne8b7eo56B5Y_0\tperson\ne8mSJe1G9U4_0\thorse\ne8mSJe1G9U4_1\thorse\ne8mSJe1G9U4_3\thorse\ne8mSJe1G9U4_4\thorse\ne804z6ehgWE_0\ttrain\ne836XbTclWA_0\tperson\ne86xkdgTdTA_0\tperson\ne873uWjeaPU_0\tperson\ne88X3OKvqTI_0\tcow\ne9Ceg407V2o_1\tbird\ne9GSzFiQj8I_0\tperson\ne9GoxfmycMQ_0\tperson\ne9MugXot7JI_0\telephant\ne9MugXot7JI_2\telephant\ne9MugXot7JI_1\telephant\ne9Y8BHEdYpg_1\tperson\ne9Y8BHEdYpg_0\tperson\ne9Z237Wup_E_0\tboat\ne9aADbJBMmQ_1\tboat\nGUY72Rg_9g4_3\tairplane\nGUY72Rg_9g4_0\tairplane\nGUY72Rg_9g4_1\tairplane\nGUY72Rg_9g4_2\tairplane\nGUcZWh6tol4_0\tcow\nGUq5xrqphew_0\tcow\nGVCJZzVnGUQ_2\tperson\nGVCJZzVnGUQ_0\tperson\nGVCJZzVnGUQ_1\tperson\nGVG_dHMt7eA_0\ttruck\nGVRLfBtpGgA_0\tperson\nGVeNt6hXwK4_0\tperson\nGWCwYIRE8YU_0\tperson\nGWIAU4GsgZM_0\tperson\nGWQD6FxWwpk_0\tboat\nGWckuI3sTHA_0\tbear\nGWmOpSmpGmg_0\tcar\nGWmOpSmpGmg_1\tcar\nGWmOpSmpGmg_2\tcar\nGWsXKIAM9yY_1\tcat\nGWsXKIAM9yY_0\tcat\nGWygvbszdUs_1\ttrain\nGXS6axKBr7A_0\tperson\nGXX1pJeR1HE_0\telephant\nGXX1pJeR1HE_1\telephant\nGXZ3IXi7YXk_0\tperson\nGXcbgDsx_Zc_0\tperson\nGXfsYdVEMeA_10\telephant\nGXfsYdVEMeA_0\telephant\nGXfsYdVEMeA_5\telephant\nGXfsYdVEMeA_6\telephant\nGXfsYdVEMeA_8\telephant\nGXgoAnrkdVg_0\tperson\nGXiDQ52vcoY_0\tperson\nGXoA1zfvnOA_0\tcar\nGXrzW-OHh_Q_0\tcow\nGXtA9dxzvII_0\tperson\nGXyeuhOYX2k_0\ttruck\nGXyeuhOYX2k_1\ttruck\nGX1v3ymtHtc_0\tperson\nGX-3aTTy4lM_0\tperson\nGX-3aTTy4lM_1\tperson\nGX-3aTTy4lM_2\tperson\nGYA-3PblNaU_0\tperson\nGYHWtVM2x6c_0\tperson\nGYTD79P3b8w_1\tperson\nGYT5Cq1tl2Q_0\tcat\nGYWNYnWPaeE_0\tperson\nGYY-ElZl7ZM_0\tdog\nGYldHkVSD_A_3\tairplane\nGYmeM7epDjY_0\tperson\nGYmeM7epDjY_1\tperson\nGYoXwAkvJns_0\tperson\nGYsx_49_O1U_0\ttruck\nGYuIsHEGV6o_0\tperson\nGYuMuXQgLPI_0\tperson\nGY0HVEiAPvo_0\tperson\nGY3D9bb9kLY_0\tairplane\nGY65ShkktrM_1\tperson\nGY9iCFFBA20_0\tperson\nGY-carc6vxw_2\thorse\nGY-carc6vxw_3\thorse\nGY-carc6vxw_4\thorse\nGY-dmOLQNH4_0\ttruck\nGZIpKCyb0bU_0\tairplane\nGZLsv-Y_aRw_0\tperson\nGZM5nvvMeNo_1\tairplane\nGZOUGcF_xaM_2\ttrain\nGZThnpa-8Ak_0\ttrain\nGZUk3BlrK7k_0\tperson\nGZWH1bUqm9U_0\tperson\nGZYSkuRZwGE_2\tskateboard\nGZb9G8sVRz4_0\tperson\nGZb9G8sVRz4_1\tperson\nGZgL3ZQI9nM_0\tcow\nGZhuCclpFuk_0\telephant\nGZq8tIKR9b4_5\tbus\nGZsP_n7aFMo_0\tperson\nGZxvpxqvHFs_1\tairplane\nGZ0bYvVD_us_1\tbird\nGZ1aL_iE5a8_1\tperson\nGZ6PRvVVeZk_0\tperson\nGaAL3IYDUgM_0\tskateboard\nGaD4QsNCcik_0\tperson\nGaF_t9Af1hg_3\tumbrella\nGaJvFxg_lFY_0\tperson\nGaJ7Bu5UrgQ_1\tbus\nGaJ7Bu5UrgQ_2\tbus\nGaVmURUD-i8_0\tperson\nGaYAyNs2FDI_1\tperson\nGad1St-JBls_0\tdog\nGaeWhfSP3EA_2\tknife\nGagCDetg0dg_0\tbicycle\nGai7qgVSFc8_1\tcat\nGangZBQawtQ_0\tperson\nGax9nZtMs7M_0\tperson\nGayl2EVJTkw_0\tdog\nGa3YHyqOqYY_1\tperson\nGa3YHyqOqYY_0\tperson\nGa_Oju23T9s_0\tperson\nGbBl5CcJgeE_14\telephant\nGbBl5CcJgeE_6\telephant\nGbBl5CcJgeE_8\telephant\nGbBl5CcJgeE_9\telephant\nGbBl5CcJgeE_10\telephant\nGbC0DAAn-XU_3\tbear\nGbC0DAAn-XU_12\tbear\nGbC0DAAn-XU_14\tbear\nGbE-oXaNVBA_0\telephant\nGbE-oXaNVBA_3\telephant\nGbE-oXaNVBA_5\telephant\nGbE-oXaNVBA_6\telephant\nGbE-oXaNVBA_7\telephant\nGbE-oXaNVBA_8\telephant\nGbE-oXaNVBA_9\telephant\nGbE-oXaNVBA_12\telephant\nGbGEC5pQ9f8_1\tcow\nGbHLET097K8_0\tboat\nGbN_zMz1D6o_0\tperson\nGbOK07Tq7mA_0\tboat\nGbVDftpuPMo_1\tperson\nGbW-55xLUnQ_0\tairplane\nGbY3uHcC3ys_0\ttruck\nGbbhlv2Obsc_0\tperson\nGbbhlv2Obsc_1\tperson\nGbd1-rm9Oyw_0\ttruck\nGbmEMxbMtCI_0\tbicycle\nGbs4s3pX3H0_5\tknife\nGbs4s3pX3H0_0\tknife\nGbs4s3pX3H0_1\tknife\nGbs4s3pX3H0_2\tknife\nGbs4s3pX3H0_3\tknife\nGbulfCx1hwo_0\tperson\nGb_YkJHLgns_0\ttrain\nGb_YkJHLgns_1\ttrain\nGcCQF52Ok14_5\tperson\nGcCQF52Ok14_1\tperson\nGcCQF52Ok14_3\tperson\nGcCQF52Ok14_4\tperson\nGcEgsdqMiBg_1\tperson\nGcEsDxUkr00_5\telephant\nGcEsDxUkr00_1\telephant\nGcRRhnk4ynk_0\tperson\nGcnVDv6bIAk_0\tperson\nGctFFbsebBs_0\tperson\nGcwS7IyeG5Y_0\tmotorcycle\nGc0lgXRlxGE_1\tperson\nGc0lgXRlxGE_0\tperson\nGc3iNFz3s-o_0\tcow\nGc5OyOM0VxI_1\tperson\nGc5OyOM0VxI_0\tperson\nGdI2CnryrFQ_2\tcar\nGdNJ-VDNc3k_1\tperson\nGdQuxx_RXvs_2\tbear\nGdbphRsxpKU_5\thorse\nGdbphRsxpKU_3\thorse\nGdfyxcmHHOQ_0\tperson\nGdiGBeJ9m_k_0\tperson\nGdiGBeJ9m_k_1\tperson\nGdsJ0QHb83w_1\tperson\nGdsJ0QHb83w_2\tperson\nGduwjeptozQ_0\tperson\nGd5qUjEeqZ4_0\tmotorcycle\nGeHV-tf-ZGA_0\tbus\nGeUECF6hDkg_0\tairplane\nGeb74PkjTYY_1\tperson\nGehgPYVYwDs_0\tperson\nGek3IJfBaU0_0\ttrain\nGeuYAXldbbg_4\tairplane\nGeuYAXldbbg_1\tairplane\nGeuYAXldbbg_2\tairplane\nGeuYAXldbbg_3\tairplane\nGewTJtB97l8_2\tknife\nGe2suMLyOTY_0\tcow\nGe4SjOnEYWs_1\tperson\nGe4SjOnEYWs_0\tperson\nGe8RWLzmrE0_0\tperson\nGe8RWLzmrE0_2\thorse\nGe9uJatNWuw_0\tperson\nGe9uJatNWuw_1\tperson\nGe-VfDpriPY_1\tperson\nGe-VfDpriPY_0\tperson\nGfCjURNr9T4_0\tperson\nGfLxzlZxHic_0\tperson\nGfbcHsH3DKI_0\tperson\nGfeXUZVyvL4_0\tperson\nGfefENTSQOI_0\tperson\nGfkX7I9bclY_0\tcow\nGfqA0SZPeXU_2\thorse\nGfqA0SZPeXU_3\thorse\nGfxwasnA0Ao_0\tbird\nGfxwasnA0Ao_3\tbird\nGfyBiJNU7bY_0\tcar\nGf50aWojLhk_1\tairplane\nGgV4eSmNyaA_1\telephant\nGgV4eSmNyaA_0\telephant\nGgcoCmlTlbc_0\tperson\nGgfESlKFIkU_0\tdog\nGgkncqtrgPI_0\tperson\nGgsFohIKlpw_0\tdog\nGgyOGY2q9xE_0\tskateboard\nGg9uDi7KjJ0_0\tperson\nGhBPvHC15BE_0\tperson\nGhHPtGuUtRY_0\tperson\nGhI4uqxOQpc_0\thorse\nGhLdswZDYMs_0\tbicycle\nGhLdswZDYMs_1\tbicycle\nGhMC34aeHnU_2\tperson\nGhMC34aeHnU_0\tperson\nGhMC34aeHnU_1\tperson\nGhQRZOseJfY_0\ttruck\nGhbtO__NASs_0\tperson\nGhbtO__NASs_1\tperson\nGhbt5lVT3dk_0\ttruck\nGhiVm-6oFyg_0\ttrain\nGhwtPgHjLvg_0\tdog\nGhxWr3HvvXA_1\tperson\nGiRzA3Fe1-s_0\tperson\nGijruln92tk_0\ttruck\nGik59IGJFLo_0\tbird\nGioAI9XlGGg_0\tbird\nGioEMsI07Jw_0\tperson\ne9ihaIQuVMU_0\tknife\ne9ihaIQuVMU_2\tknife\ne9iolRKSwBw_0\tperson\ne9mOqKDBOVg_0\tperson\ne9nH--aGWDM_0\tperson\ne90GV6rl3NE_0\tperson\ne9-w67QSEBs_0\tperson\ne9-w67QSEBs_1\tperson\ne9_LqDqVkGs_0\tperson\ne9_LqDqVkGs_1\tperson\ne9_LqDqVkGs_2\tperson\ne-PcZyfAPZ4_0\tperson\ne-R-FxrDQao_0\tperson\ne-dVHSE1qXI_0\tperson\ne-gU8I2kZyY_1\tbicycle\ne-n0pRU6uSk_0\tbus\ne-n0pRU6uSk_1\tbus\ne-qbVMLqnEw_0\tperson\ne-siUblegSA_0\tdog\ne-siUblegSA_1\tdog\ne-v2yWUGKiU_1\tboat\ne-zbkYroVUk_0\tperson\ne-43rdp3psc_0\tperson\ne--Qr92yhBo_2\thorse\ne--vN-5QX-E_0\tperson\ne-_nLPye6sc_0\tperson\ne_APlM8VSiw_1\tperson\ne_APlM8VSiw_0\tperson\ne_FyX6iUBZk_1\tperson\ne_GD2rN9Jcg_0\tperson\ne_SYVD0TY14_0\tairplane\ne_UwPkRMD74_0\tperson\ne_aHtRh2PpI_0\tcat\ne_b_4zlKmdo_0\tgiraffe\ne_qdDAeerKQ_1\tbird\ne_-SOM0hufo_0\ttruck\nfAHFZWyNZQ4_0\tbird\nfAHFZWyNZQ4_2\tbird\nfAJAQb5tzFA_0\tdog\nfAJ939SI_YI_0\tperson\nfAKXvHREf8E_0\tbird\nfAMkbedQ0GI_1\tperson\nfAQoNDLgds4_0\tbear\nfAUG8-TdflE_0\tperson\nfAjj5137yKM_0\tbicycle\nfAm_6grpTOI_0\tperson\nfAyBUKM7898_0\tperson\nfAz2ecihxEU_0\tperson\nfA5ArJS7ScI_0\tcar\nfA6XfSl7pqY_0\tperson\nfA_OWAI_8kc_0\tperson\nfBH6rLEukMU_0\tperson\nfBIh-CAYfy0_0\tperson\nfBLrr2zYnRw_1\tperson\nfBLvIU3Q7Rw_0\thorse\nfBPjBSdwz1o_0\telephant\nfBPjBSdwz1o_1\telephant\nfBP3dZYp3sM_0\tperson\nfBT1cNog4Lw_0\tperson\nfBkDTXhVYCs_0\tgiraffe\nfBmp8URVoB4_0\tcar\nfBsQegHOF8Y_0\tperson\nfBtfkn4uDKE_0\tcow\nfBvAf66603Q_0\tperson\nfBwrgO05rqo_0\ttruck\nfByljFegqK4_0\tperson\nfCADagfWgSU_1\telephant\nfCK_OirKTO4_0\tperson\nfCMJnkyFS5c_0\tperson\nfCMJnkyFS5c_1\tperson\nfCPVsi1S2jM_0\tcat\nfCTNp-hiUkQ_0\tperson\nfCTNp-hiUkQ_1\tperson\nfCT0UeuTcQk_0\tperson\nfCUZclkgF-c_3\tcar\nfCUZclkgF-c_4\tcar\nfCUZclkgF-c_5\tcar\nfCVoLETgca4_0\tbicycle\nfCW56GByDs0_1\tperson\nfCW56GByDs0_0\tperson\nfCX_8Q_OAos_1\tdog\nfCZXrHFimHM_0\tperson\nfCbvdNQUcRE_0\tcat\nfCdlrWXZ7kY_0\tperson\nfCiWi1Dk-yE_1\tperson\nfCkgtao7rJk_0\tmotorcycle\nfCmwPCLYVXE_0\tskateboard\nfCmwPCLYVXE_1\tskateboard\nfCm-8YmQfoY_1\tgiraffe\nfCoXLMBzqTc_0\tcat\nfCohGx6PWyM_0\tperson\nfCr-fmsVVWE_0\tperson\nfCsSoErwvfw_2\tskateboard\nfCsSoErwvfw_0\tskateboard\nfCsSoErwvfw_1\tskateboard\nfCtyUxRaSdQ_0\tskateboard\nfCwicNYDKmo_0\tperson\nfCzWVcZvGuk_1\tmotorcycle\nfC6O_2ljm_c_1\tperson\nfC6O_2ljm_c_2\tperson\nfC6O_2ljm_c_0\tperson\nfC8FUnipL3M_0\tbird\nfDBgRd9yK8Q_5\tairplane\nfDBgRd9yK8Q_1\tairplane\nfDBgRd9yK8Q_4\tairplane\nfDCK-s1gX18_0\tskateboard\nfDCadv28EEo_1\tperson\nfDCadv28EEo_0\tperson\nfDFpsal4hHo_0\tperson\nfDIVkvMCQ9I_1\tcow\nfDJjIhw4XBI_2\tperson\nfDJjIhw4XBI_1\tperson\nfDLBxom0wgI_1\tcat\nfDVesIz_ON0_1\tperson\nfDe30IPiQ0Y_1\thorse\nfDuiW9_sHcQ_1\tperson\nfDyXAhF761Q_0\tperson\nfD89z8ycv7U_0\tperson\nfD89z8ycv7U_1\tperson\nfD89z8ycv7U_2\tperson\nfEDj20Gce80_0\tboat\nfEK6hdzjG5E_0\tcow\nfESV3o1vc1A_1\tbird\nfES_1kR2d8o_0\tperson\nfEVLKYBuE7k_0\ttruck\nfEXq69B6L0s_0\tgiraffe\nfEZ5cqJWg0A_0\tbicycle\nfEdlpwoza6o_0\tperson\nfEdlpwoza6o_1\tperson\nfEdlpwoza6o_2\tperson\nfEgqRE0XOMM_0\tperson\nfEh5hyz4LCU_0\tskateboard\nfEiWI60P4XI_0\tbicycle\nfElOryAiN0s_0\tperson\nfEmh4mfGsCA_0\tperson\nfEupHSTMXLk_0\tknife\nfE0raHY_nY8_0\tcat\nfE_sSvVFvZU_0\tdog\nfFBkKrJlobs_0\tcow\nfFEDu-fiUUM_0\tperson\nfFGmvl4E9QI_0\tbird\nfFImZECw1c0_0\tskateboard\nfFImZECw1c0_1\tskateboard\nfFOTZMvg0n0_0\thorse\nfFRp0dBucFA_0\tbus\nfFTJuANVr2I_0\tperson\nfFWU4PNTKDo_0\tperson\nfFWU4PNTKDo_1\tperson\nfFaJ5epORzQ_0\tperson\nfFd91uPKDVA_0\tperson\nfFksYDaR-NI_1\telephant\nfFmCHQgzMRc_1\tperson\nfFmCHQgzMRc_2\tperson\nfFmhW2ygNKw_0\tperson\nfFncU3kR5qw_0\tcar\nfFogpyIr-Ic_0\tperson\nfFq0hnzgGSw_2\tbicycle\nfF0RlMrKBFo_0\tbicycle\nfF1S-952IOU_0\thorse\nfF3WOuwnvrA_3\telephant\nfF3WOuwnvrA_5\telephant\nfF3pBoS7xFg_1\tperson\nfF3pBoS7xFg_0\tperson\nfF34g3sNiHo_0\tperson\nfF7snD5S5Q4_0\tcar\nfF_BanWRtKo_1\tskateboard\nfF_BanWRtKo_0\tskateboard\nfGGJnSDPzUI_0\tperson\nfGI6_U9U_zc_1\tperson\nfGPsR0YiVaE_0\ttrain\nfGgJ0VACAo4_0\tumbrella\nfGlnCmVPzIs_0\tperson\nfGrC6VCXVL4_0\tperson\nfG1NOqIRoLA_0\tperson\nfG6uSVeocMo_0\tperson\nfG-4n3Gy1fk_0\tperson\nfHO3g6Q_bNE_0\tperson\nfHUjlWalvJQ_0\tperson\nfHVJzD_AvV8_0\tperson\nfHepRAiQQ04_0\tcow\nfHlfVMMfXNg_0\tperson\nfHm5WgSYk2Y_0\tbus\nfHoBjwC8H50_0\tdog\nfHoBjwC8H50_3\tdog\nfHsaxiTw0dI_0\tmotorcycle\nfHzSK8AEv5U_0\tperson\nfHzzixV1xyg_1\tcow\nfH5U2jXbkEg_1\tknife\nfH8PS8Fjvbg_1\tcow\nfH8PS8Fjvbg_2\tcow\nfIABVBcluZ0_0\tskateboard\nfIABVBcluZ0_1\tskateboard\nfIFMCt78hmI_0\ttruck\nfILyoB3Pgrg_1\tdog\nfIM7jmsq_FE_0\tperson\nfIN8z4lkdyA_0\tcar\nfIN8z4lkdyA_2\tcar\nfIN8z4lkdyA_3\tcar\nfIPXE6MOZp0_0\tairplane\nfIT1bTlW3UQ_0\tperson\nfIVT3rTMptI_1\ttruck\nfIXFrPFEL0w_0\tgiraffe\nfIlXSJxnKD8_0\tperson\nfInEVgREyyY_0\tdog\nfInYB8sD7tM_0\tperson\nfIrb5Y93wjw_0\ttrain\nfIvUwaa2ziY_0\tperson\nfIyrHecb8SQ_0\telephant\nfI0VoDDN2lE_2\tperson\nfI0VoDDN2lE_0\tperson\nfI0VoDDN2lE_1\tperson\nfI5fnVs_kWg_0\tmotorcycle\nfI8DySScPWU_0\tskateboard\nfJGPTgv8EUs_0\tperson\nfJJBGybbnH4_1\tknife\nfJJX9D4siG4_0\tcat\nfJTeqi3aqRc_0\tcar\nfJYGkMT9c6U_0\ttruck\nfJY5zGaYs8s_0\tperson\nfJdWgbIMXZ0_5\ttrain\nfJdWgbIMXZ0_0\ttrain\nfJdWgbIMXZ0_2\ttrain\nfJpRqXhL3wE_0\tskateboard\nfJp4DAu46Yg_1\tperson\nfJxbRDMY46o_0\tperson\nfJyBgU7rZvE_0\tperson\nfJ71o3Q-oVE_1\tcat\nfKDRpRcSnrw_0\tcat\nfKHs2FNZk6M_0\tperson\nfKLJqhEdsTY_0\tcow\nfKLJqhEdsTY_1\tcow\nfKLS0DAexvw_1\tboat\nfKLS0DAexvw_2\tboat\nfKLS0DAexvw_3\tboat\nfKRZ4PPWgg8_1\tperson\nfKcOtlmf6r0_3\tboat\nfKcOtlmf6r0_2\tboat\nfKgpRiyDlvc_0\tperson\nfKhENDvpnmA_0\tboat\nfKhe37bCgeA_1\thorse\nfKp-Lvw2bUM_2\telephant\nfKp-Lvw2bUM_3\telephant\nfKp-Lvw2bUM_4\telephant\nfKrxRvMxZqM_0\tperson\nfKxBpYS29uM_0\tdog\nfKyPRwF5y6s_0\tperson\nfKzFEc6hR-c_2\tperson\nfK89Z2AwlCg_3\tbus\nGiuUBGsdiqI_0\tperson\nGizeLrnWRmk_1\tperson\nGizeLrnWRmk_0\tperson\nGi--TM8Xz3I_0\tperson\nGjCs_s2EnpE_0\tperson\nGjFr4qO_LX4_0\tdog\nGjJFQButa0w_0\tbear\nGjJk6U2crcw_0\tskateboard\nGjJp-yqt7xk_0\tairplane\nGjZDPTKpIdE_0\tperson\nGjZP-buSAG8_0\tperson\nGjdyi0kf79Y_0\ttruck\nGjfhgZMeHAA_0\tperson\nGjgu3OFbWKI_0\tbear\nGjkrI0adkJk_0\tperson\nGjmNPrYyCwg_0\tperson\nGj87GZKvhdo_0\thorse\nGkCXvg93pAA_0\tcow\nGkGG1F5by14_0\tperson\nGkddmkbGSAc_0\tcat\nGkfp-yV9e94_0\tperson\nGklwzbjOzYQ_0\tperson\nGkmRFBuktnQ_0\tperson\nGkxkfi_wHeA_1\tmotorcycle\nGkxkfi_wHeA_0\tmotorcycle\nGk6IzYQADXg_1\tskateboard\nGk6IzYQADXg_0\tskateboard\nGk9v8ABOPNw_1\telephant\nGlLzIn-6ouU_1\tbicycle\nGlLzIn-6ouU_2\tbicycle\nGlPdixjfu44_0\tcat\nGletqIQ8irw_0\tmotorcycle\nGlsMcq1cM2c_1\tbird\nGlxEVs7z_7Y_0\tperson\nGl7S2JNezLg_0\tboat\nGl7S2JNezLg_3\tboat\nGl9cy66E4FQ_2\tknife\nGl_UMssuTWU_0\tperson\nGmI47tbiNQ0_0\tperson\nGmKT2rhDILU_1\tknife\nGmQX3sIhhqo_0\tcow\nGmS0yrU3Hcw_0\tperson\nGmUFocQWPTo_1\tboat\nGmdxq1glmKY_1\tdog\nGmeGRg8XZ5M_0\tperson\nGmvKmbIHKHM_1\tperson\nGmvKmbIHKHM_0\tperson\nGmww9V50JtU_0\tdog\nGm9BnQSZlxk_1\tperson\nGm9kb3zHsLA_0\tcat\nGnFoElm_rrw_0\tdog\nGnGd8Q_cSHU_0\tperson\nGnGd8Q_cSHU_1\tperson\nGnO2sxJNWjk_0\telephant\nGnRp7QHoAr4_0\ttrain\nGnkSrEpnmRo_1\tperson\nGnmgLr5p-r8_0\tbus\nGno0JyFsjGk_5\tknife\nGn0av9LV5FU_0\telephant\nGn3AqY6vUyU_0\telephant\nGn7B_MiLuhA_0\tskateboard\nGoEBr-GbeCk_0\telephant\nGoEcYxqxcZ8_1\tbus\nGoEy1J3s8Xs_0\tcow\nGoRGaOgttBU_0\thorse\nGoUjZ5wJ2do_0\tcar\nGoWyqQorqOY_0\tcat\nGoXlqK766lk_0\tperson\nGolDzhH16vg_0\ttrain\nGorfZ7y-Jw8_0\tskateboard\nGosFitiV7as_0\tperson\nGotzQ9ecvkM_0\tperson\nGoubTEJzKUI_0\tperson\nGo16BKYvDSs_0\thorse\nGo5M-oyC28A_0\telephant\nGo8BM-B0ML4_0\tskateboard\nGpCjTjkSw3k_0\ttrain\nGpCjTjkSw3k_5\ttrain\nGpCjTjkSw3k_3\ttrain\nGpCjTjkSw3k_4\ttrain\nGpCjTjkSw3k_2\ttrain\nGpDilZGSveI_0\tperson\nGpJmJforKzo_0\tperson\nGpPbMduP_3Y_0\tcow\nGpProJiVxa4_0\tbear\nGpTPDl3MzZw_0\tcat\nGpVy_gD1slw_0\tdog\nGpY4Nw8LLy4_0\tbird\nGpkftB3rq5g_0\tdog\nGpn_kF1lXuc_0\tbicycle\nGpn_kF1lXuc_8\tbicycle\nGpn_kF1lXuc_13\tbicycle\nGpn_kF1lXuc_14\tbicycle\nGpzE4RQTM1Y_0\tairplane\nGp3g6UYBBzw_0\tperson\nGp3g6UYBBzw_1\tperson\nGp70TnjZRfU_1\ttrain\nGp70TnjZRfU_2\ttrain\nGp70TnjZRfU_0\ttrain\nGqZeX-EEEL8_0\tperson\nGqc_LkQvKak_2\thorse\nGqjVd_dRiB8_0\tperson\nGqjVd_dRiB8_1\tperson\nGqjoBpwsgUc_0\tperson\nGqjoBpwsgUc_1\tperson\nGqntj1GoicU_0\tbus\nGqzN0dyl5p4_4\ttruck\nGq-mMFeLCyo_0\tperson\nGrG-ipHg_4w_0\tperson\nGrK4qEJjeKE_0\tairplane\nGrNDwiO4kdI_0\tairplane\nGrQ0zJbkeXE_0\tperson\nGrXOOtPiIGw_0\tzebra\nGrYsw9-Skqg_0\tperson\nGrZvWtxffXE_0\tperson\nGrpvM1_CRqI_0\ttrain\nGruxXrzWzjk_0\tairplane\nGruxXrzWzjk_2\tairplane\nGruxXrzWzjk_3\tairplane\nGruxXrzWzjk_5\tairplane\nGrzyUDtV-Ug_0\tperson\nGr6be_D6d9Q_2\tskateboard\nGsFDHyoPppk_0\tperson\nGsGHB19iuE4_0\tperson\nGsKJMkVSeV4_2\tairplane\nGsL7VYYWhu0_0\tperson\nGsOgw9XtlWc_0\tairplane\nGsOgw9XtlWc_1\tairplane\nGsTlT_7Zb1Y_0\ttrain\nGsVvc55IHn0_0\tskateboard\nGshXL9V-lrM_1\tperson\nGsj4aXqBPHM_0\ttruck\nGsn06D15nmk_0\tmotorcycle\nGsrSyK5ymQo_0\tboat\nGsrenPacLW0_1\tperson\nGs67R7prarI_1\tmotorcycle\nGs7J9Yo-uF0_0\tcow\nGs7J9Yo-uF0_1\tcow\nGs79ZsyWm74_0\tperson\nGtAKWYvc9kY_0\telephant\nGtCbEqqQgqY_0\tperson\nGtCbEqqQgqY_1\tperson\nGtD2m1EXxjc_1\tbicycle\nGtKaIcQJZcc_1\tperson\nGtLYNeredOY_0\tboat\nGtVrmoeEcMM_0\tknife\nGtZPw5ftw88_0\tperson\nGtZSRodviU8_0\tperson\nGta1hcIAAE0_0\telephant\nGtiiYqVQ2Kw_0\tperson\nGtmp8y8APfQ_1\tskateboard\nGtnqm4SnEXo_0\thorse\nGtnqm4SnEXo_1\thorse\nGtnqm4SnEXo_2\thorse\nGtnqm4SnEXo_3\thorse\nGtnqm4SnEXo_4\thorse\nGtqcx01NTTw_0\tknife\nGtsvc9lA7hs_0\tairplane\nGt33VfmFDWw_0\tperson\nGt6q9b3QUvE_0\tbicycle\nGt6q9b3QUvE_2\tbicycle\nGt7thmVY6aQ_0\tperson\nGuQvGMFuhu4_1\tcar\nGuQvGMFuhu4_3\tcar\nGuXelRN3wMo_4\tbear\nGuaD24NfCe0_0\tperson\nGuawwNMbfBI_0\tperson\nGue43DvNTGc_1\ttrain\nGuf15LHosg8_0\tperson\nGugU0nZdPJU_0\tbus\nGuhfGduN9v0_0\tperson\nGulmsZq-VsU_6\tboat\nGulmsZq-VsU_0\tboat\nGulmsZq-VsU_3\tboat\nGulmsZq-VsU_4\tboat\nGulmsZq-VsU_5\tboat\nGusEs8RA4_o_0\tmotorcycle\nGuwTG6RtcFI_0\tperson\nGu4MWCc2Wws_0\tbicycle\nGu-vFv_w9Vo_0\tperson\nGvFmkdxnKyI_0\thorse\nGvIj2sMkJwM_0\tperson\nGvNhgCGtUOQ_0\ttruck\nGvQvyfTNykM_0\ttruck\nGvRM_UnjJoE_2\thorse\nGvdMRPX4KR4_0\ttrain\nGvdMRPX4KR4_1\ttrain\nGvdMRPX4KR4_5\ttrain\nGvoIcT-hFek_0\tperson\nGv9mTaerVLc_0\tperson\nGwFrSa-YwfI_0\tbear\nGwFrSa-YwfI_1\tbear\nGwIn1NaaEwE_0\tbus\nGwbpMG2B14Y_0\ttruck\nGwgaNLd1f7s_0\ttruck\nGwlNXPuUvXM_0\tperson\nGwnBP9a07RE_0\tperson\nGwnBP9a07RE_3\tperson\nGwnBP9a07RE_4\tperson\nGwnBP9a07RE_1\tperson\nGwnBP9a07RE_2\tperson\nGwx1ad4lW1Q_2\tperson\nGwyl7djxZkg_0\tcow\nGwy4ODXAAU8_0\tperson\nGw5YyHT1Nt8_0\tperson\nGw9Vi_Io9DM_0\tperson\nGw_Tiv72jms_1\thorse\nGxANCkxq7Ng_0\tmotorcycle\nfLCd0DDhfBk_0\tperson\nfLEUT0rTkv0_0\tbird\nfLJniCJFPTg_3\telephant\nfLPHwVvk6K4_0\tperson\nfLPHwVvk6K4_1\tperson\nfLWW1YWO26Y_0\tbird\nfLdMmSIfseM_2\tperson\nfLdMmSIfseM_0\tperson\nfLe279fKywo_0\tdog\nfLsDTJxlsW8_0\tperson\nfLwrxElzLZs_0\tperson\nfLyNbq9v6kg_0\tperson\nfL1w15qwbqE_0\tperson\nfMOnb4P7tww_1\tperson\nfMOnb4P7tww_0\tperson\nfMO1J7ojQqk_0\tdog\nfMTosfHKy2I_0\tdog\nfMi6lVyCOHw_0\tboat\nfMwCpOTv9RY_0\tbus\nfM-puV4uyzs_0\tperson\nfNAZ9IDLZy0_0\tperson\nfND_OguW0MM_1\telephant\nfNIdPhAsjiM_0\tcat\nfNJSPU5r3sc_0\tperson\nfNO_o1D0kvY_0\tperson\nfNdRm3HWQmo_1\tmotorcycle\nfNgr2EBEDCQ_0\tcar\nfNgr2EBEDCQ_1\tcar\nfNg3y0FHjgg_0\tperson\nfNhDT1fwzKM_0\tperson\nfNhDT1fwzKM_1\tperson\nfNh54BNEJBQ_0\tcat\nfNw9dDcM4ms_0\tbear\nfN-FYknWOSk_1\tperson\nfN-FYknWOSk_2\tperson\nfN-43XPvLwg_0\tmotorcycle\nfOLR2dvBtqo_0\tcow\nfOO1pHvrPWQ_0\tperson\nfOatLQK_AyQ_3\tbicycle\nfOcPVX4sAxg_0\thorse\nfOjKgQf86dk_0\thorse\nfOkrLuGKDvk_0\tperson\nfOkrLuGKDvk_1\tperson\nfOkrLuGKDvk_2\tperson\nfOsd2aWzfBo_0\tcow\nfOtnatCU7_Q_0\tperson\nfOuV2101nEo_0\tbear\nfOv8ocd2xhA_2\tknife\nfO30fgQYdT4_0\tbus\nfO8Do_0RQXU_0\tperson\nfO9GgD7GqE0_2\tbus\nfPBIIZV6fuU_0\tperson\nfPMNtuJztSA_0\tperson\nfPVn9Wxf_HQ_0\tperson\nfPVn9Wxf_HQ_1\tperson\nfPrhiYslRjA_0\tperson\nfPzDDdztZNk_0\thorse\nfPzQyo7caqU_0\tperson\nfPzqpL90owQ_6\tbear\nfP5AyxuGIS8_0\tperson\nfP8x_x2_k5g_0\tperson\nfP-DMm3u5n4_0\tcat\nfQEGEb4W3IE_0\tperson\nfQNyLEXwnn0_0\tperson\nfQOjoYB5hPQ_0\tperson\nfQOjoYB5hPQ_1\tperson\nfQOymYsdTtU_0\tperson\nfQdA_-549Dk_0\tdog\nfQh5RtZzYzo_0\tbicycle\nfQlChBB42M0_0\tperson\nfQoJWcmQmsU_1\tperson\nfQo0G2i1QjY_0\tperson\nfQt3g_9u1RQ_0\tairplane\nfQyE_yIAu_0_1\tskateboard\nfQ26oO2Y5NM_0\tbicycle\nfQ4H6UmTepU_5\tgiraffe\nfREDiuJlBf8_0\tperson\nfREDiuJlBf8_1\tperson\nfRFF0xtrWhI_0\telephant\nfROdeQpu88o_1\tknife\nfRS5rhYP7LM_0\tperson\nfRXDSh8gr0c_1\tperson\nfRZ7Wze7ATs_3\tknife\nfRcegyxH0Is_0\tcar\nfRhNtVu6anA_0\tdog\nfRjCbO3MyU8_0\tperson\nfRmnBvuwZlU_0\tdog\nfRmnBvuwZlU_1\tdog\nfRrLguORoeU_1\tumbrella\nfRrLguORoeU_2\tumbrella\nfRrd-Z2R-Gs_0\tperson\nfRtzYh_gGgI_1\tcow\nfRwzMPH6Kvw_0\tperson\nfR1zDIeBHFg_0\tperson\nfR6FrFNXUxY_0\tperson\nfR-JNy5hccc_0\tumbrella\nfSA7T5svJ-o_0\tbus\nfSBe_a8ZkZU_0\tcat\nfSey4VJgLM0_0\tperson\nfSfKYTVt7V8_2\tbird\nfSfX4Z6SR2U_0\thorse\nfSj-h8lAhWw_0\tcat\nfSoqM6oq2AA_0\ttrain\nfSoqM6oq2AA_2\ttrain\nfS0098HnnhM_0\tperson\nfS3KL3nj7FY_0\tperson\nfS73PiHaNi8_0\tperson\nfS8_byjM-1M_3\tzebra\nfS8_byjM-1M_0\tzebra\nfS_6fgFOiPU_3\ttrain\nfTFLfGUcgMs_0\telephant\nfTFLfGUcgMs_3\telephant\nfTFVwPKxUHE_2\telephant\nfTP9YgSJZg8_2\tknife\nfTVb5uxWnsI_0\tperson\nfTVb5uxWnsI_1\tperson\nfTgirzB_QLU_0\tperson\nfThV1JtaTJg_0\tperson\nfTkIm1nb6qg_1\tbird\nfTkIm1nb6qg_2\tbird\nfTnnG_WcLYY_3\tknife\nfTnnG_WcLYY_4\tknife\nfTwiavhNzxs_0\tperson\nfUB-cH8rjW4_1\tperson\nfUB-cH8rjW4_0\tperson\nfUF__EdDFVs_0\tskateboard\nfUISEtXSRYM_0\tperson\nfUU4R6RP4ek_0\tmotorcycle\nfUXpqgf4jUA_0\tbus\nfUd8LjmonBM_0\tperson\nfUetaCH3tZk_0\tperson\nfUg6JULdTnU_0\tperson\nfUonzpmV18o_3\tbird\nfUqVKgWVVNY_1\tperson\nfUqVKgWVVNY_2\tperson\nfUwzXH9i0yQ_0\tperson\nfUx60fl9UkU_0\tperson\nfUzsVWD48bA_0\tperson\nfU3o6Frqdww_0\ttruck\nfU4DzirdCVE_1\tairplane\nfVAmI93Yb6E_0\tcat\nfVAsOuag4vY_1\tgiraffe\nfVHZEHosow0_2\tperson\nfVH3n0aghP4_1\tperson\nfVH3n0aghP4_0\tperson\nfVH7PpDqlPE_0\tboat\nfVIVas1R1tk_0\tcow\nfVOy449KQlY_0\tperson\nfVX7qR-o-9I_0\tcat\nfVZfWzDBb-c_0\tperson\nfVZ_9hWIGpA_2\ttruck\nfVdrMKHN9WY_1\tcow\nfVq7Of0Tr-s_0\tperson\nfVr3XVUzJaA_0\ttrain\nfVv5EqFYsAY_0\tperson\nfV80H_L3AN8_1\tmotorcycle\nfWLqbV7Z7Go_1\tperson\nfWLqbV7Z7Go_0\tperson\nfWb_-8hhubg_0\tperson\nfWmJ9tUUCwg_0\tperson\nfWpdcmgr5r4_0\thorse\nfWxgjNDC4OQ_0\tcar\nfWxgjNDC4OQ_1\tcar\nfWxsOgW3P6U_0\tperson\nfW1Z_Mx1RaA_0\tperson\nfW4fh_WBiMY_0\ttrain\nfW7yPljMFRc_0\tperson\nfW7yPljMFRc_1\tperson\nfW_HPaNBsDE_0\tcat\nfXCFktk2xdc_0\tperson\nfXLB02IH0G4_0\tperson\nfXLB02IH0G4_1\tperson\nfXOdZ0uKuBc_1\tdog\nfXWqvRfBWto_0\tperson\nfXX7K6CQfBw_0\tairplane\nfXYn01Cgmqs_0\tdog\nfXY7h0cc6tw_0\tcow\nfXbnEKMaIoM_1\tboat\nfXbnEKMaIoM_0\tboat\nfXka5y708fI_1\tperson\nfXowuJDXhhU_0\tperson\nfXyBm7_EDVc_0\tskateboard\nfXzIQASqygY_0\tbird\nfX-kSrf_K8w_0\thorse\nfYDgPdRtmjU_0\ttrain\nfYLtnvuW_VI_0\tmotorcycle\nfYMA0fLN8sI_0\thorse\nfYN5ZIicl_k_0\tcar\nfYmfHE2mONE_1\tperson\nfYnsIFGQfT8_0\tperson\nfYql4FiApLQ_0\thorse\nfYtm_pGBWkU_0\tperson\nfYu5ChRgapY_0\tmotorcycle\nfYw5KVCsg_4_0\tperson\nfYyI8x0tNAA_1\tbear\nfY4-6vsjmD8_0\tperson\nfY82KLfOpbk_0\tperson\nfY82KLfOpbk_1\tperson\nfZCdkf9VQzU_2\tcow\nfZEFEAYBlGE_0\tcat\nfZFYdgZbSBg_0\tperson\nfZFYdgZbSBg_1\tperson\nfZJOS8BlA-w_0\tperson\nfZOtury_J_w_0\tperson\nfZTIKbSjOhk_0\tairplane\nfZTJH_9Pqvg_0\tperson\nfZTJH_9Pqvg_1\tperson\nfZWP75nltcM_0\tbird\nfZXzEYFmZ_8_0\tperson\nfZXzEYFmZ_8_1\tperson\nfZiiYH3WfD8_0\tskateboard\nfZnbOFaSEQc_0\tperson\nfZnbOFaSEQc_1\tperson\nfZp_UgW_xZU_1\tmotorcycle\nfZp_UgW_xZU_0\tperson\nfZu7wEVEuX8_0\tperson\nGxHmm60dKvc_0\tskateboard\nGxLI4BFLrps_0\tperson\nGxPYf4SAQvE_0\tperson\nGxPYf4SAQvE_1\tperson\nGxWuAfBV300_0\tperson\nGxg0Pt_9bIE_0\tperson\nGxwwTXW-DdQ_2\ttrain\nGx1zPI3b2oc_0\tperson\nGx3xtKPwlz0_1\thorse\nGx4ryd6AGl4_1\ttrain\nGx4ryd6AGl4_2\ttrain\nGx4ryd6AGl4_3\ttrain\nGx4ryd6AGl4_0\ttrain\nGyGdlCtDdJc_0\tperson\nGyIKdb5KDHk_1\ttrain\nGyPRnKI78iA_0\tperson\nGyU8x9urAxE_0\tmotorcycle\nGyVDsnuS5jU_0\tperson\nGyXlgRxQ1jo_0\ttrain\nGyXlgRxQ1jo_1\ttrain\nGyZHiIEOBos_0\tcat\nGya_TrOGXpo_0\tperson\nGyhjyC5aJ8U_0\tbus\nGyjb_P1W7TA_2\tbus\nGyn_wSuRB3w_1\ttruck\nGyzaf_gaIYY_0\tmotorcycle\nGy9JueTT4XU_0\tperson\nGy_XuBCvbUc_1\tdog\nGy_XuBCvbUc_2\tdog\nGzB9OTV44PA_0\tperson\nGzHy2xjKB_8_0\tperson\nGzLmftr6tl8_0\tperson\nGzRkvFxVlx0_0\tperson\nGzTDLPCsgSM_0\tperson\nGzVj8bI0bSk_0\tskateboard\nGzVj8bI0bSk_1\tskateboard\nGzcgYGEqOlY_1\thorse\nGzesZ0laH2w_0\tmotorcycle\nGzizYdL25ZY_0\tperson\nGzjkTrnmEnU_0\tairplane\nGzjkTrnmEnU_1\tairplane\nGznFDBDT2c0_0\ttruck\nGznFDBDT2c0_2\ttruck\nGzrgq_nWH_Q_0\thorse\nGzujCDTak_4_0\thorse\nGzujCDTak_4_2\thorse\nGzy_PnFtEpM_0\tperson\nGz3Np50b9q4_0\ttruck\nG0DQ6VdMp-U_7\tcar\nG0DQ6VdMp-U_0\tcar\nG0DQ6VdMp-U_1\tcar\nG0DQ6VdMp-U_2\tcar\nG0DQ6VdMp-U_4\tcar\nG0DQ6VdMp-U_5\tcar\nG0DQ6VdMp-U_6\tcar\nG0FSe53KN-w_0\tperson\nG0WsFATo9RQ_0\tperson\nG0dXxEbeJnM_1\tperson\nG0d44YoKXX4_0\tperson\nG0kDhLojiI4_0\tgiraffe\nG0leBoTgEx4_0\tperson\nG0rwWyFSsYE_0\ttrain\nG0r2tR6EcF8_1\tperson\nG0urH-9ytbc_0\thorse\nG01Xi8VMxgQ_0\tperson\nG03JTuHY_RM_0\tknife\nG1AIHF-KITc_0\tperson\nG1AtN7CvCXw_0\tperson\nG1EnmuHlxig_0\tperson\nG1P_XnEL4dc_1\tperson\nG1P_XnEL4dc_0\tperson\nG1TS-PvdREA_0\tperson\nG1TS-PvdREA_1\tperson\nG1ThERK4a8E_4\tairplane\nG1ThERK4a8E_0\tairplane\nG1UoN56m5DM_0\tperson\nG1YNrrT9-z8_0\tbird\nG1YNrrT9-z8_1\tbird\nG1cY71JK5_E_0\tmotorcycle\nG1c0-CTyZ3I_0\tperson\nG1dKhZZARDk_0\tairplane\nG1z6RMtKkbM_0\tbird\nG1z6RMtKkbM_1\tbird\nG11cHAnx17E_0\thorse\nG13ARgckI9w_0\tperson\nG17Kpx1bgXM_0\thorse\nG1_R_EJpLZU_0\tcow\nG2FXcVDezv4_0\ttruck\nG2HOmWxj5gg_0\tperson\nG2LNQIwbLHE_0\tperson\nG2S4rwP6qJY_0\tbicycle\nG2V6wliL2AA_0\tknife\nG2g4Z-Syzi8_1\tdog\nG2lFYYEolz4_0\ttrain\nG2lFYYEolz4_2\ttrain\nG2x5gACWSwA_0\tcow\nG2z7yjdCUuI_0\tairplane\nG23Q_C35Uqs_0\tbear\nG24yJOgl9t0_1\tperson\nG25iisvOYhA_0\tcat\nG2-v9IBlnTs_0\tperson\nG3AuCS7s68w_0\tbird\nG3IID08lWos_0\tperson\nG3P-Vvra2GU_0\thorse\nG3SowFCFa0g_0\tperson\nG3VeVH6pbdE_1\tperson\nG3a0EYtnqHA_0\tperson\nG3cazaory7w_0\tperson\nG3f8bIoGGZ0_0\tdog\nG3kNB0zhHQc_0\tperson\nG3pT4MJrpDI_5\tumbrella\nG3pT4MJrpDI_6\tumbrella\nG3pT4MJrpDI_4\tumbrella\nG3vP7_U6yXU_1\tcow\nG37Dm4oy794_0\tbicycle\nG38EbyEOITE_0\thorse\nG38SrxcVYWs_1\tperson\nG39ryVtNnhQ_3\telephant\nG39ryVtNnhQ_8\telephant\nG39ryVtNnhQ_9\telephant\nG39ryVtNnhQ_11\telephant\nG4PD_RAK48Y_0\tperson\nG4VPBDOgq54_1\tskateboard\nG4VpcUuXgRs_0\tperson\nG4VpcUuXgRs_1\tperson\nG4ckSGXUGts_0\tperson\nG4fbkcKiZVg_0\tperson\nG4nRZ4PHvC4_0\tdog\nG4rJejZ9FIM_0\tcar\nG4r0UJvtDXs_0\tcow\nG4xFWKKoN0M_0\tmotorcycle\nG47wnMA6RVE_0\tbus\nG4_xR7lZIPo_3\tbear\nG5D1cAo2D6s_1\tperson\nG5JwolS0D1M_5\telephant\nG5QgL60_yfc_0\tknife\nG5SlrQeATlc_0\tbus\nG5SlrQeATlc_2\tbus\nG5hG8j0KxBI_0\tperson\nG5ixkqq66VA_0\tperson\nG5rBbx_kODY_0\tperson\nG5ztukDN_Qg_0\tzebra\nG51fdi_hG_0_0\ttrain\nG52uuPWcC3M_0\tumbrella\nG553b8ZAd3Q_0\tperson\nG58FuwBYL-0_0\tskateboard\nG5_UJ1wEKh4_0\tperson\nG6OttGznP9E_0\tperson\nG6OttGznP9E_1\tperson\nG6QMME1QbK8_2\tcar\nG6Qmm4T-cd0_0\tbus\nG6WiR4W4WWk_0\tperson\nG6b9lySVCCY_0\tperson\nG6eAvUHoDkc_0\tperson\nG6fvYSH13nI_2\ttrain\nG6iVTjyPM04_1\thorse\nG6sFOs8MgGU_0\tbird\nG6sFOs8MgGU_3\tbird\nG6sFOs8MgGU_6\tbird\nG66e5ltBFoI_0\tperson\nG7DhRPK7pwc_1\tbicycle\nG7F-ufxEXPY_0\tknife\nG7H7fQ_Q1Ec_0\tperson\nG7H7fQ_Q1Ec_1\tperson\nG7ID9RdMSkE_0\tperson\nG7MvPG8Qv84_0\tgiraffe\nG7TezoE9Cmo_0\tperson\nG7WblvVQPF0_0\tperson\nG7Z01jmMzlI_0\tbird\nG7krBQa_KLc_0\tperson\nG7p90FBQk_0_0\ttruck\nG7slUshqPvY_0\telephant\nG74HXSqYO-A_0\tmotorcycle\nG75uQAEuUkE_0\tperson\nG766vinfuBw_5\tbicycle\nG766vinfuBw_9\tbicycle\nG77KKnCpwWY_3\tskateboard\nG8EC6svgwKU_0\tperson\nG8NIqmq7YdE_2\tbear\nG8V2UsTc1Ik_0\tcat\nG8V33bTVNII_14\tbicycle\nG8V33bTVNII_1\tbicycle\nG8V33bTVNII_2\tbicycle\nG8V33bTVNII_6\tbicycle\nG8V33bTVNII_9\tbicycle\nG8XX8bkx6Ek_0\tperson\nG8hStuDYwH0_2\tairplane\nG8kDZAPbUe8_0\tperson\nG8kDZAPbUe8_1\tperson\nG8k84FwnW2k_0\tmotorcycle\nG8lDrK3u3r0_2\telephant\nG8lfwRN3Iew_12\tboat\nG8lfwRN3Iew_0\tboat\nG8lfwRN3Iew_8\tboat\nG8lfwRN3Iew_9\tboat\nG8lfwRN3Iew_11\tboat\nG8sDCWad2Bg_0\tcat\nG8s2n3jAKW8_0\tcow\nG8tbj2R0iso_0\tperson\nG80DOuBBH_Y_3\tairplane\nG8--2JpJa6g_0\tperson\nG9DdsOO1mZo_0\thorse\nG9FQJdIxjsk_0\tbird\nG9YPEOrV5UU_0\tperson\nG9YPEOrV5UU_1\tperson\nG9YPEOrV5UU_2\tperson\nG9ZKH_DS9DU_0\tperson\nG9gsnqhd_Sw_0\tcat\nG9hPaEx7Ci0_1\tknife\nG9i66tUOspc_0\tdog\nG9juxPad3zY_0\tperson\nG9nlPUwJQB0_0\tperson\nG9nvXjuig6s_0\tperson\nG9qCl1NZelo_0\tcow\nG9rxIfeUWVo_0\tairplane\nG9vDsElCKAY_0\tdog\nG9zd0G8dIt0_0\tperson\nG93PAKTtVpM_0\thorse\nG97UC0qtVDw_0\tperson\nG97YtHMd2hw_0\tperson\nG99rEXOdlC8_0\thorse\nG9_TgGWQQi8_0\tperson\nG-Sr-qmWZNo_0\tcow\nG-YYtvCU7qY_0\tdog\nG-d6o3nTBFA_0\tzebra\nG-nFiFb0Xos_1\tknife\nG-nbiqZuFdc_2\thorse\nG-qCe2DK3Tk_0\tmotorcycle\nG-u_ThqhoJE_0\ttrain\nG-yCRlVSs6w_0\tperson\nG-3kOsn1fPY_1\tperson\nG_ADLUKVq8Y_0\tboat\nG_LtPKO6be4_0\thorse\nfZ1GVGZmTRA_0\tperson\nfaJuqm4umTQ_0\tperson\nfaSv8ijeKeE_0\tperson\nfaVBgge6xkE_0\tperson\nfaW2tWwuCMg_1\tperson\nfaW2tWwuCMg_0\tperson\nfahs60oGhLU_0\ttrain\nfatTPMeG5Pc_1\tbear\nfa-rHhFEloA_1\ttruck\nfa--elcQpd4_0\telephant\nfbDYKST2P-I_0\tmotorcycle\nfbFVM0UM5V0_0\tperson\nfbM5MhIve5s_0\tdog\nfbM5MhIve5s_1\tdog\nfbiXTCkCkqY_0\tskateboard\nfbmZZXaRkak_5\thorse\nfbmZZXaRkak_6\thorse\nfbmnWcE_64U_0\tskateboard\nfbsyvHQPZZk_1\tdog\nfb3Iq9yQ1VY_0\tperson\nfb3WxEfe8l8_0\tmotorcycle\nfcCb2W4HMLk_0\tperson\nfcD6n99azfw_0\tperson\nfcGNPf6n7Ws_0\tbear\nfcWegrm8wCE_0\tperson\nfcbcnvGoWLs_0\tcar\nfchtQi7-OD4_0\thorse\nfclxNO1L-rY_0\tcow\nfcpGNeDgpDI_0\tperson\nfc1qNL5u2wg_0\tperson\nfdCTLMd6wEY_0\tcat\nfdQaoSZKA_s_0\tperson\nfdRULl8YSnU_0\tcow\nfdYvCuft5zQ_4\telephant\nfdYvCuft5zQ_5\telephant\nfdYvCuft5zQ_1\telephant\nfdYvCuft5zQ_2\telephant\nfdZBeWyKON0_0\tperson\nfdbvWvUoFW8_1\tbird\nfdbvWvUoFW8_2\tbird\nfdbvWvUoFW8_3\tbird\nfdkrZ9uL854_0\tperson\nfdlDkbbDniw_1\telephant\nfdmV18YEDKM_0\tcat\nfdnBDcIwPBA_0\tperson\nfd3ea86gmJI_0\tmotorcycle\nfd3ea86gmJI_1\tmotorcycle\nfd8Ba2cZgxI_2\tbear\nfeAexE1IYq8_0\tperson\nfePU3BlF4Zc_0\tperson\nfePU3BlF4Zc_1\tperson\nfeQX_1dqh9g_9\tbicycle\nfeQX_1dqh9g_1\tbicycle\nfeQX_1dqh9g_3\tbicycle\nfeZfxIunWHo_0\tperson\nfeZoXB7I6wE_0\tperson\nfedmeW-WImw_0\ttrain\nfegJtwcNo5c_0\tbicycle\nfeh4XVzjQdI_0\tcat\nfelt48AIbIs_1\tperson\nfenYF-k-y4c_0\tskateboard\nfeqLG8n4nDE_1\tperson\nfe05wKXl2cI_0\tperson\nfe05wKXl2cI_1\tskateboard\nfe5_49oxMwc_0\tperson\nffIQZZ_P3ck_0\tcat\nffOeGlw8_C8_1\tcow\nffZoY75S_-k_1\tbird\nffZoY75S_-k_0\tbird\nffbSaNikNF4_1\telephant\nffeYBfcgF3s_0\tperson\nfftSD6UfvEA_1\tperson\nffttXyArNGc_1\tknife\nffvXiSjPp6c_0\thorse\nffwk_8ycQiA_0\tperson\nff1PHzfARZk_0\tperson\nff5MH6QQuJk_6\tknife\nff5MH6QQuJk_2\tknife\nff5SaJnQg5M_0\tperson\nfgEpQHGYIjc_0\tperson\nfgFy8l-b1iI_0\tmotorcycle\nfgJJxPEHVZQ_0\tperson\nfgPShysxuQM_0\tcat\nfgQE-9shdmQ_0\telephant\nfgUjCKe_e_Y_0\tperson\nfgWtwTKCtMQ_0\tperson\nfgfizI4AnVs_0\tperson\nfggT4HM2Uy4_0\tperson\nfgsaC375d38_1\tbird\nfgvUj1mCqio_0\ttrain\nfg1ISXcyb10_1\tdog\nfg5mCaScLE4_10\tumbrella\nfg5mCaScLE4_0\tumbrella\nfg5mCaScLE4_3\tumbrella\nfg5mCaScLE4_4\tumbrella\nfg5mCaScLE4_6\tumbrella\nfg5mCaScLE4_7\tumbrella\nfhHLCLuQAdE_0\tbird\nfhHLCLuQAdE_3\tbird\nfhHLCLuQAdE_4\tbird\nfhHLCLuQAdE_1\tbird\nfhHLCLuQAdE_2\tbird\nfhQN_vhNmgo_0\tcow\nfhan95LbdqQ_1\tknife\nfhmsHcZfBC4_0\tperson\nfhutr5rLQN0_0\tperson\nfh5lB6U-7Wk_0\tperson\nfiGa0nIEYbw_0\tperson\nfiKecNhAgFU_0\tmotorcycle\nfiS0pY80kkU_0\tdog\nfiWtkuDUFvM_0\telephant\nfiZAhg2twZs_0\tperson\nfigjWJDEn1c_0\tperson\nfijO0rB1rfY_0\tairplane\nfinRU64JVRU_1\tbus\nfi2s2k_aamk_0\tperson\nfi46OpYa89I_3\tbicycle\nfi46OpYa89I_10\tbicycle\nfi46OpYa89I_2\tbicycle\nfi6gdEVUAUc_0\tcat\nfi8YGUm_6x0_0\tperson\nfi9GleMDHIc_0\tperson\nfjF31Mh-tNQ_0\tperson\nfjKXALm76kI_0\tbus\nfjXufPzimEQ_0\tperson\nfjZ4J-BZX2U_0\tperson\nfjaHYcaE7-w_0\tperson\nfjaHYcaE7-w_1\tperson\nfjnR81fSTeI_0\tumbrella\nfjnxqBnMZzs_0\tperson\nfjtn0lRVX_4_0\ttruck\nfjwgdNBSCFc_0\tperson\nfjwgdNBSCFc_1\tperson\nfj29rB34ea8_0\tperson\nfkERi_ma2UE_0\tperson\nfkERi_ma2UE_1\tperson\nfkHiDyuUaWA_0\tperson\nfkIfLHGu_CQ_0\tperson\nfkQEEtG6Tbg_0\tperson\nfkSf5a3q6oY_0\tboat\nfkSf5a3q6oY_3\tboat\nfkUDB0V3UXc_0\thorse\nfkUDB0V3UXc_1\thorse\nfkVSILZPyXg_0\tbear\nfkaKyYrWPpQ_0\tperson\nfkfnbZ2MSXk_4\tbicycle\nfkfnbZ2MSXk_0\tbicycle\nfkfnbZ2MSXk_6\tbicycle\nfkx0e2gvPYA_0\ttruck\nfkyM4LNUCck_0\tperson\nfk0v7vZDpgU_0\tperson\nfk10mtIF_Hs_0\thorse\nfk8yMMO1gRA_0\tperson\nfk8yMMO1gRA_1\tperson\nflADy--Uwx8_0\ttruck\nflERyzHjhzQ_0\tskateboard\nflMijcdhRAU_0\tperson\nflgTyT4DB7E_0\tbear\nflgaLcoSjb4_0\tbear\nfluEronPyZk_0\tcow\nfl6-NRwVy10_0\tperson\nfl7Q9yxFoOs_2\tperson\nfl95IAyDN-s_0\tskateboard\nfmERtylbqN4_0\tperson\nfmGJj0qYc6g_1\tperson\nfmGJj0qYc6g_2\tperson\nfmLKgz4DQhQ_0\tairplane\nfmL66yeOiI8_0\tperson\nfmRfUvIIvT8_0\tperson\nfmYELQL9Cs0_0\tbus\nfmbEAdugI3Q_0\tperson\nfmbb6SQ6qiI_0\tperson\nfmbb6SQ6qiI_1\tperson\nfmbu89zGN4Y_0\tperson\nfmdem4Z9BHI_0\tbird\nfmfg5yyhjkA_1\tperson\nfmiq_EhaURY_1\tperson\nfmiq_EhaURY_0\tperson\nfmtIa6nxUd4_0\ttrain\nfmuzrZHZYis_0\tskateboard\nfmwC1khd3BU_2\tperson\nfm3zFVlJw4k_1\tperson\nfm-ScTLdSL8_1\tbus\nfm_bcsJYhu4_0\tdog\nfnAGderLxPg_0\telephant\nfnAGderLxPg_3\telephant\nfnDP4B5jpSY_0\tperson\nfnFMQ2VFlEc_0\tperson\nfnOL3ZL61u0_0\tperson\nfnOkwsmzdaI_0\thorse\nfnRq5X91IV0_0\tperson\nfnZR6FD_eZ8_0\tboat\nfnZR6FD_eZ8_1\tboat\nfnbSgwO8v0c_1\tboat\nfnbsAmTQJOs_0\tbicycle\nfnbsAmTQJOs_1\tbicycle\nfniJ36z0_Pc_0\tcow\nfnj1YtAaztU_0\tperson\nfnkHdQf9H3w_0\tknife\nfnmuFbydHek_0\tperson\nfnpjkwiPkSY_0\tskateboard\nfntRlkYDiD0_1\tperson\nfntZVzkwhz4_1\tperson\nfnvst-Sk4MU_0\tumbrella\nfnvst-Sk4MU_1\tumbrella\nfnz6gTPuInQ_0\tdog\nfnz6gTPuInQ_1\tdog\nfoAoOCF4rE4_0\tcar\nfoI1jEbg9uA_0\ttrain\nfoJs0wXX1O8_0\ttruck\nfoaFgrzsPOY_0\tperson\nfobJTCY7ifQ_0\tbus\nfodsoLtLzqI_1\tcat\nfojRgMUsu3c_0\tperson\nG_RgJ0t0Cbo_0\tperson\nG_aU-_2ZiSw_0\tdog\nG_lOQAV6xWs_0\tcat\nG_poofS7HD0_1\tperson\nG_poofS7HD0_0\tperson\nG__VTazZtp0_0\telephant\nHARRnedV05U_0\tcar\nHAVUursfTOI_1\tzebra\nHAtu6frOH1k_0\tperson\nHA1TDbNot8E_0\tperson\nHA-iE7bcfT0_0\tcar\nHA-iE7bcfT0_1\tcar\nHBI13CpuAmI_0\tknife\nHBLJbCs1mSg_0\ttruck\nHBMah_r3E1g_0\tperson\nHBOqQBe7rhE_0\tperson\nHBO6G57uhXA_0\tperson\nHBY4_6b_sRY_0\tcat\nHBiSuZWtb4E_0\tboat\nHBmaJJ0nTAo_0\tperson\nHBwjWdXrpPA_0\tdog\nHBzYVphfmRQ_0\tperson\nHCA4jkg9HTY_1\tperson\nHCA4jkg9HTY_0\tperson\nHCEjNJewxbw_0\tperson\nHCJ1EYfF8qg_0\telephant\nHCKZ7kihdaM_2\tairplane\nHCMBgpQ2z18_0\tcow\nHCSbzHGXxmA_0\tcat\nHCczjWUmlW0_1\ttruck\nHCczjWUmlW0_0\ttruck\nHCg0k7LnfkY_1\tcow\nHCg0k7LnfkY_0\tcow\nHCiRQdh20qg_0\tdog\nHCm-B3JjzhY_0\tcow\nHCpxRBja8lE_0\tperson\nHCp6gYC9NFE_0\tcow\nHC72_Yrigik_0\tperson\nHDN4DqO_KLg_0\tdog\nHDQEWwETuU4_0\tperson\nHDRKiYaoEnA_0\tperson\nHDSw0KM8cSs_0\tperson\nHDkI156rPRA_0\tperson\nHDmK6y86kYM_0\tperson\nHDmK6y86kYM_1\tperson\nHDnYEdh7xG8_0\tperson\nHDqUvaFm_R0_0\tskateboard\nHDr5if6Mb_4_0\tperson\nHDziFGwpXmg_1\tcar\nHDziFGwpXmg_2\tcar\nHDziFGwpXmg_3\tcar\nHDziFGwpXmg_7\tcar\nHD1tKnKT1Dc_0\tmotorcycle\nHD7QKzuFNas_1\tperson\nHD7QKzuFNas_0\tperson\nHD_alEnCVhM_0\ttruck\nHD_alEnCVhM_1\ttruck\nHD_wYO2_O8k_0\tperson\nHD_4ZJr68p8_1\thorse\nHEIjtOJze90_0\tperson\nHEfIJ3wMKRI_1\tperson\nHEmv-biWoEA_0\tairplane\nHErkHysJd-M_0\tperson\nHEr_leMW1zE_0\tbear\nHEr_leMW1zE_3\tbear\nHEr_leMW1zE_1\tbear\nHEyY4zEX-no_0\tperson\nHE-4YEdBwuw_0\tdog\nHE-4YEdBwuw_1\tdog\nHFDK_y7kibQ_0\tknife\nHFE9ujNILoA_0\tcat\nHFQFlm1jWiE_0\tperson\nHFQFlm1jWiE_1\tperson\nHFRCZSouOn4_0\tbird\nHFWQl2JJfic_2\tperson\nHFa18pRSsXU_0\ttrain\nHFlanXHBGHg_0\tperson\nHFuw8C2bQ6g_0\tperson\nHF07qDRPgrw_0\thorse\nHF1xhyTtWLk_0\tmotorcycle\nHF3Nn3KqXOk_0\tperson\nHF3Nn3KqXOk_1\tperson\nHF4PefI86r0_0\tperson\nHGFcsJmjWHs_0\telephant\nHGFcsJmjWHs_9\telephant\nHGFcsJmjWHs_4\telephant\nHGFcsJmjWHs_5\telephant\nHGFcsJmjWHs_7\telephant\nHGLC_YFRxPY_0\tskateboard\nHGLLnmQiCU0_0\tperson\nHGLLnmQiCU0_2\tperson\nHGLLnmQiCU0_1\tperson\nHGLdrgf2e2c_0\tperson\nHGVNoha70iA_0\ttruck\nHGZDROOjAY4_1\tperson\nHGZDROOjAY4_0\tperson\nHGeCBN48g9o_0\tperson\nHGm4OftDlT8_2\thorse\nHGnIxotAPOU_0\tperson\nHGnegc2CRTM_0\tperson\nHGvXva6SUvE_0\tperson\nHGw4URr4QUs_0\tperson\nHG1zQzSX2rU_0\tperson\nHG8oY2Ac4-M_0\tperson\nHG_JAnXBzJQ_0\tskateboard\nHHGq5gd6w1g_0\tskateboard\nHHPW65GVeoA_0\tperson\nHHRUnCEVnAo_0\tcat\nHHc5mD1TxGQ_1\tknife\nHHe9m9BOi3A_0\tperson\nHHgC0pkNiIA_0\tperson\nHHgC0pkNiIA_1\tperson\nHHi26rWtC38_0\tperson\nHHx5E8VfnkY_0\tperson\nHH0OILx6PKY_0\tperson\nHH1JApHMx2I_0\tdog\nHH148v63a5o_0\tperson\nHH9wMNMJ2sE_0\telephant\nHIBd79qG-XQ_0\tperson\nHICJGOFvwoc_2\tbird\nHIHX1rpDx_I_0\tcat\nHIIQ917jPqg_0\ttrain\nHIJGcmgyEcg_0\tknife\nHIJGcmgyEcg_1\tknife\nHIKyhRtWQ4c_2\thorse\nHIK-Z8wXFug_0\tperson\nHISWMgqg80E_0\tskateboard\nHITf8extnnk_0\tperson\nHIXuU8Z0N9o_1\tmotorcycle\nHIgiF2bkOys_0\tperson\nHIgiF2bkOys_1\tperson\nHIiu2EVu5H8_0\tperson\nHIqhXDkhHsc_0\tperson\nHIqr0-BB8Xo_1\tknife\nHIrcAjP1fDs_2\tbird\nHIz27dqnl20_0\tbus\nHI3L38NCy0A_1\tboat\nHI3L38NCy0A_0\tboat\nHI_h7HfFDVw_0\tboat\nHJGPBeom3y4_1\tumbrella\nHJSiTzkFpHk_0\tperson\nHJVpMFJT2LU_0\tperson\nHJVpMFJT2LU_1\tperson\nHJg7wtoy2vk_0\tperson\nHJhZhn0zf1s_0\tperson\nHJi1L5HxuLo_0\tskateboard\nHJi1L5HxuLo_1\tskateboard\nHJi1L5HxuLo_2\tskateboard\nHJq4kVvdeRg_1\tskateboard\nHJrd3kpvjh0_0\tperson\nHJr5BOgO9XY_0\tperson\nHJ6BZjeSHTY_0\tboat\nHKFJzdCsRfA_0\tperson\nHKGK0FLN9vA_2\tzebra\nHKGK0FLN9vA_3\tzebra\nHKIwynmyQp4_0\tperson\nHKWELXwIVvI_0\tperson\nHKqHmDjxF6Y_1\tperson\nHKsVn1IWaas_0\tperson\nHK28Vb__IfY_0\tperson\nHLAEqFEcR90_4\thorse\nHLAEqFEcR90_0\thorse\nHLAEqFEcR90_2\thorse\nHLAEqFEcR90_3\thorse\nHLBgSJD-3lg_0\tbicycle\nHLL_j-CQKqQ_0\tumbrella\nHLaiRkL4gFA_0\tmotorcycle\nHLhbGKVR4mE_3\tdog\nHLy3UUDhaJY_4\tgiraffe\nHL06bx_HNg0_0\tcat\nHL6dNcrAEoM_0\tperson\nHL8fh6O6iUA_1\ttrain\nHL9F68y-0kY_0\thorse\nHL9F68y-0kY_1\tperson\nHL9o2Vs9d8s_1\tperson\nHMF0KrAf0iI_0\tperson\nHMIGIwIcNq8_0\tperson\nHMJerOjZn4I_0\tperson\nHMQQrRvzwiM_0\tboat\nHMUBbUP6Ko8_2\tboat\nHMV7H81wz84_0\ttrain\nHMb-pPTMZ5I_0\tumbrella\nHMxMledcSVE_0\tperson\nHMyUpcpZGdM_1\tbird\nHM4hJE0Db2Q_0\tperson\nHM4zY3uzwOQ_0\tperson\nHM7sD8YClkI_0\tperson\nHM_3ck6yooo_0\tperson\nHNGh3Rvn6Sw_2\tknife\nHNGh3Rvn6Sw_3\tknife\nHNRwM8zXMTM_0\tperson\nHNXQ_dkhX-Y_0\ttruck\nHNdRITK9TGE_0\tperson\nHNeVOXPyunw_2\tperson\nfo9SmkQa35Y_0\tmotorcycle\nfo9SmkQa35Y_1\tmotorcycle\nfpM1eiK3iok_0\ttruck\nfpNLFTgOciY_1\tumbrella\nfpRq9BsaPzs_1\thorse\nfpRq9BsaPzs_2\thorse\nfpVZYKlsFsU_0\tboat\nfpdUwZ8Gnd8_1\tcow\nfpeYfCUzvDY_0\tcat\nfpkxYBJDTtI_0\tperson\nfpkxYBJDTtI_1\tperson\nfpmtNez1u0o_0\tbus\nfpnTZF4bvk8_0\tperson\nfpomSxrdTyE_0\tperson\nfpo2kf1idyo_0\tperson\nfpp_41AxRNI_5\tgiraffe\nfpp_41AxRNI_1\tgiraffe\nfpp_41AxRNI_4\tgiraffe\nfqQL3QPq-lo_0\ttrain\nfqXvzEGxSak_0\tbus\nfqcie5yyOxA_0\tcat\nfqfHWT5hjkY_0\tcat\nfqkVB4qZbgw_0\tperson\nfqlWb2OJg3Y_0\tbus\nfqnioIm10xY_1\ttrain\nfqpMhE5qOKk_1\tperson\nfqxGN6r9oIY_0\tzebra\nfq5Zh2Lo9GQ_0\telephant\nfq959dAMasM_0\ttruck\nfrFSlwby-0k_0\ttrain\nfrFrggXiJZY_1\tperson\nfrItg4I9oEQ_0\tperson\nfrItg4I9oEQ_1\tperson\nfrJtciauQQw_0\tperson\nfrRHj0FPzVQ_1\tperson\nfrW5BpQ3-Fw_0\tperson\nfrXxZevI11c_0\tperson\nfrXxZevI11c_1\tperson\nfrY6tIPR-Co_0\tbicycle\nfreW9Vk3GhU_1\tperson\nfrfLZ70XIXI_1\tdog\nfrgCmAtYao4_1\tboat\nfrh4LMyWaQw_0\tperson\nfrn-rfqmGVs_0\tperson\nfrx5Uv7-1zw_0\tperson\nfr3S3gEtDS0_1\tperson\nfr616yExbeg_0\tknife\nfsD7pYdfrpg_0\tperson\nfsE0DlVODpY_1\tperson\nfsFtKjirvM4_1\tperson\nfsFtKjirvM4_0\tperson\nfsOoFz6I_js_1\tperson\nfsOoFz6I_js_0\tperson\nfsVlTdh13Lk_0\tperson\nfsXVGaRpUNg_0\tperson\nfsd-DhcH5gE_0\tperson\nfsd-DhcH5gE_1\tperson\nfsh-wcyuPM0_0\tperson\nfs3oXXx75XA_0\tperson\nfs6L5bmf4pQ_1\tperson\nfs6Rgfl4CtI_0\tboat\nfs6p-qaLswQ_0\tcow\nfs7RdtNY3Ck_0\telephant\nfs9uDpde9ig_1\telephant\nftG2YflDq_E_0\tknife\nftH3_awR5ZA_0\tperson\nftIp5PyaGNc_1\tknife\nftNSK_rSs98_1\tairplane\nftSUBEOhdck_0\tcat\nftX9ErOmiAE_0\tcar\nftX9ErOmiAE_1\tcar\nftcnCvd4yeU_0\tperson\nftlmGO0CnHk_0\ttruck\nfuHAM8D3ros_3\tbicycle\nfuO2QMXiDMU_0\tmotorcycle\nfuPtCtdvowQ_0\tperson\nfuSxdcdxe70_1\tperson\nfuSxdcdxe70_0\tperson\nfuh4-mC5fvg_0\tcar\nfuklviv_MRE_0\ttruck\nfunKReksXEQ_4\thorse\nfur41mRCURs_0\tcow\nfutBuKCP9zw_0\tumbrella\nfu5d7x7pORY_0\thorse\nfu_f4n_bYPU_0\tperson\nfvAislzoQVU_0\tperson\nfvDUF-aukF4_0\tperson\nfvH1bolPY2U_0\tperson\nfvKg6ReEigA_14\tbicycle\nfvKg6ReEigA_2\tbicycle\nfvKg6ReEigA_3\tbicycle\nfvKg6ReEigA_4\tbicycle\nfvKg6ReEigA_5\tbicycle\nfvKg6ReEigA_8\tbicycle\nfvKg6ReEigA_11\tbicycle\nfvKg6ReEigA_15\tbicycle\nfvKg6ReEigA_16\tbicycle\nfvKg6ReEigA_17\tbicycle\nfvKg6ReEigA_19\tbicycle\nfvLauezWx5g_1\tskateboard\nfvLkNgA4N0k_1\tperson\nfvZYmQ6SJrQ_0\tperson\nfvcIpyJFuQA_0\tperson\nfvdoipKMj4g_0\tperson\nfvfb_kQCs-I_0\thorse\nfvhVuqonUHg_0\tperson\nfvhVuqonUHg_1\tperson\nfvlGWjjirUQ_0\tperson\nfvqWMyJJqog_0\tperson\nfvqWMyJJqog_1\tperson\nfvtTggVCkFk_0\tperson\nfvzbC9c98ik_0\tdog\nfv42-nzlEsY_0\ttrain\nfv8F7gjL7Js_0\tairplane\nfwCUjUa0cHQ_0\tperson\nfwG8C9CEISw_0\tperson\nfwLL8mlHf0I_0\tbicycle\nfwL9zu2j3rk_0\tperson\nfwQMFtFdERs_0\thorse\nfwQMFtFdERs_1\thorse\nfwTB5tDP4cU_0\tperson\nfwT-VIjQCa8_0\tperson\nfwop4msktdA_0\tcow\nfwv2gGVEi6g_0\tperson\nfwwOICMutXc_0\tdog\nfxFzCD192K4_1\tbird\nfxHZn2FXRGk_0\thorse\nfxHZn2FXRGk_1\thorse\nfxQYhMoNR9I_0\tperson\nfxQY5tnybxQ_0\tskateboard\nfxWwYiT8yXk_0\tperson\nfxWyDyUmxuY_0\thorse\nfxbNI1vTtq0_0\ttrain\nfxbjh88g3Vw_0\tperson\nfxcDLsblNhs_1\tbird\nfxdVSYuYJOE_0\tperson\nfxhuSOpUuGs_0\tperson\nfxr4HpTRNS0_0\tdog\nfxxjK3mjCF0_1\tperson\nfxyg5GQk8H8_0\tairplane\nfxyg5GQk8H8_2\tairplane\nfxyg5GQk8H8_3\tairplane\nfxyg5GQk8H8_4\tairplane\nfx07mGL1WQY_1\ttrain\nfx2_nahpAfE_0\tperson\nfx4HT1nuEg4_1\tperson\nfx4HT1nuEg4_0\tperson\nfx9TwmuIYCY_0\tskateboard\nfx9fckiExps_0\tperson\nfx_zN3FWeJ0_1\tbus\nfx_zN3FWeJ0_3\tbus\nfx_zN3FWeJ0_0\tbus\nfyE4_usnxHc_0\tperson\nfyE4_usnxHc_2\tperson\nfyOZZ_u9Jm0_0\tperson\nfyOxr6iISdI_0\telephant\nfyRO8_b4wJU_0\tperson\nfyTzI2wuC0M_0\tperson\nfybHaZZmAzE_1\ttrain\nfydZoAN9JpI_0\tperson\nfydZoAN9JpI_1\tperson\nfydZoAN9JpI_3\tperson\nfyhSoeveW3I_0\ttrain\nfyyLjISjzvM_0\tperson\nfyztN8okJkU_0\tperson\nfyztN8okJkU_1\tperson\nfy5GdRFHsLs_0\tcat\nfzFR54WdDEU_0\tperson\nfzV_Z79golE_1\ttruck\nfzaNjkWQtW0_1\tskateboard\nfze3woUbt0w_0\tdog\nfzh-lO5lQhQ_1\tbird\nfzoZsW3AMTU_0\tbird\nfzp3cT3c5Wg_0\tperson\nfzp3cT3c5Wg_1\tperson\nfzp3cT3c5Wg_2\tperson\nfzqX7N7ICQw_1\tperson\nfzqX7N7ICQw_0\tperson\nfzrGdIi_J9k_0\tperson\nfzr9mWLJM6E_1\tperson\nfzr9mWLJM6E_0\tperson\nfzvrWQX908c_0\tperson\nfz1PTzziIcg_0\tperson\nfz1kPSLo_p8_1\ttrain\nfz8emqnbleQ_1\tboat\nf0BJ56Dn3D0_0\tcat\nf0E5mPnVSSU_1\tperson\nf0JOvKbLwTQ_0\tperson\nf0LbneUbWUk_0\tcow\nf0TYLMAZLpA_0\tperson\nf0XZTHcpmZY_4\telephant\nf0XZTHcpmZY_2\telephant\nf0XpDJO5Tw0_0\tperson\nf0XpDJO5Tw0_1\tperson\nf0Z8cmobjWs_0\ttruck\nf0Z8cmobjWs_4\ttruck\nf0Z8cmobjWs_7\ttruck\nf0Z8cmobjWs_8\ttruck\nf0mYYISWwxo_1\tperson\nf0mYYISWwxo_0\tperson\nf0o0SmB2JAE_1\tcow\nf0o0SmB2JAE_0\tcow\nf03_N__tWuI_2\telephant\nf1ASjw4-yL8_0\tperson\nf1Da4qa1SIw_1\tperson\nf1EKnOQEf5g_0\tboat\nf1GkfW2mOlE_0\tperson\nf1G2DlbJqyI_0\tperson\nf1HKyLr8nL0_0\tperson\nf1JCS5F-LuU_0\tperson\nf1KEvGLqqwI_1\tumbrella\nf1O6FYMq5zk_0\tperson\nf1XB0uA4Dvo_0\tbus\nf1Z1HedJzos_0\tskateboard\nf1fEuZwBkDQ_0\tperson\nf1nxCdtYwdQ_0\thorse\nf1sTzp9ahWM_1\tperson\nf1sTzp9ahWM_0\tperson\nf1uaPSveXCI_0\tperson\nf2ADBeQ0Vys_0\tperson\nf2ADBeQ0Vys_1\tperson\nf2EbBSZ8osI_0\tzebra\nf2EbBSZ8osI_1\tzebra\nf2HKs4L6fwE_0\tperson\nf2HKs4L6fwE_2\tperson\nf2HKs4L6fwE_1\tperson\nf2MDAAk-Euo_1\tperson\nf2ULSb7lIAo_0\tcow\nf2ULSb7lIAo_1\tcow\nf2ULSb7lIAo_3\tcow\nf2hfKAL0ZoA_0\tumbrella\nf2hfKAL0ZoA_4\tumbrella\nf2hhMTSObNY_0\tskateboard\nf2p2YcmHn8c_1\tbicycle\nf2s4nNZ_qew_0\tboat\nf2ypHkP1WUg_0\tperson\nf3EOdxK13SU_0\tgiraffe\nf3HU85Jx7m0_0\tcow\nf3JkzQkcdVM_0\thorse\nf3Kxw7yBcW0_2\tperson\nf3Kxw7yBcW0_1\tperson\nf3Np8rGlxOE_1\tperson\nf3VJKfFdBW0_1\ttruck\nf3aufQBTMME_0\tboat\nf3bk60UZpqE_0\ttruck\nf3bk60UZpqE_5\ttruck\nf3bk60UZpqE_9\ttruck\nf3kQ_6EG8cM_0\tperson\nf3spBT1AGyw_0\tperson\nf31ePv3WlNc_0\tperson\nf33OpHIFMWA_1\telephant\nf33OpHIFMWA_3\telephant\nf33OpHIFMWA_0\telephant\nf33OpHIFMWA_2\telephant\nf35syqOsqSo_0\tboat\nf38P7AlhP5g_0\tperson\nf39rc-7_QQc_0\tperson\nHNr7Ed0_pQY_1\tbus\nHNtUUtLCSDY_0\tgiraffe\nHNtojLNWnKQ_0\tperson\nHN6XGq0aRx4_0\tperson\nHN84N_vu_hw_1\tperson\nHOAbQ4r1tzM_1\tknife\nHOA47mRJ9B8_0\tperson\nHOOwNsMTi9g_0\tperson\nHOSMm-4fUVM_0\tdog\nHOZcbA0OPF0_0\tperson\nHOkS1ljUX4s_0\tbear\nHOmzECHFah4_0\tdog\nHOxzSXuj0O0_0\telephant\nHOxzSXuj0O0_3\telephant\nHO6yeFgs7Hs_1\tbicycle\nHO7Uf5Enr1U_1\tperson\nHPAa3KI1Z30_1\tdog\nHPDws9wJu40_0\ttrain\nHPIdRNu7STU_0\tdog\nHPIxVE3OLG4_0\tperson\nHPPTr0Mpe0A_0\tbicycle\nHPRp9F-4ts4_0\tdog\nHPSJZXcOiEc_0\tperson\nHPjcp8hS6vs_0\tperson\nHPjcp8hS6vs_1\tperson\nHP0RUfuvfx4_0\tperson\nHP4O8FbEpEg_0\tbus\nHP6ROW7ahtU_0\tperson\nHP6YRIGqiI4_0\thorse\nHP62suxiDNw_0\tbicycle\nHP62suxiDNw_2\tbicycle\nHP62suxiDNw_3\tbicycle\nHP62suxiDNw_1\tbicycle\nHP9u4FmRvbw_1\tbear\nHQBhagraDwo_0\tcat\nHQIxUlu7xSY_0\tperson\nHQKVBNWD_ls_0\tperson\nHQM9aDN7Tf0_0\tperson\nHQZVUknJ0lw_1\tperson\nHQZVUknJ0lw_0\tperson\nHQePQ1mfzKw_0\tperson\nHQePQ1mfzKw_1\tperson\nHQhnj0h9OyA_0\tperson\nHQhnj0h9OyA_1\tperson\nHQjXFK_0sFo_0\tperson\nHQxihmm6sSs_0\tperson\nHQz_At1F0Yk_2\tbicycle\nHQ4ZWia0f1E_2\tcow\nHQ9gmrJ6Bm4_3\tairplane\nHQ9gmrJ6Bm4_4\tairplane\nHQ9gmrJ6Bm4_5\tairplane\nHQ9gmrJ6Bm4_1\tairplane\nHRCOvhALHv0_0\ttrain\nHRUX75Ve2aQ_0\tperson\nHRVMd5SmF8Y_0\tumbrella\nHRl1VhUfhok_0\tperson\nHR1wffFOaEw_0\telephant\nHR4ExP8Ompc_0\thorse\nHSKpu2UmvBo_0\tperson\nHSKpu2UmvBo_1\tperson\nHSN6tO3rh-c_0\tperson\nHSVWpwFagLg_1\tperson\nHSdyrMzM64w_0\tcow\nHS3WVWEFHm8_1\tperson\nHS3WVWEFHm8_0\tperson\nHTAnAeW5Bhs_0\tbird\nHTS20hgMcFQ_0\tbicycle\nHTTz78R4i0c_0\tperson\nHTehrgCQAPo_0\tperson\nHTgldgqci04_0\tperson\nHUFGafskCjw_0\tperson\nHULASsoz03U_0\tperson\nHULASsoz03U_1\tperson\nHUPxNiCgjn0_0\tknife\nHUfwe7j7IBE_0\tperson\nHUgX2V1AkVw_0\tperson\nHUiMyxUEC_A_0\tperson\nHUv2tT_n5Bo_0\tperson\nHUy4cHFX-04_0\tperson\nHUz7znJTRNg_1\tumbrella\nHU_HuNQ4TDw_0\tcow\nHU_HuNQ4TDw_1\tcow\nHU_HuNQ4TDw_2\tcow\nHVEmUm86PBo_0\tmotorcycle\nHVI1w93kCfo_0\tperson\nHVOWKezX_bo_0\thorse\nHVOWKezX_bo_2\thorse\nHVYf36PFglw_0\tdog\nHVY9hWgMujc_1\ttruck\nHVeqzrLyVtk_0\tperson\nHVkFV2q27S0_1\tperson\nHVkQkPaQbrw_0\tperson\nHWAW-J3ZpIs_0\tcow\nHWA45moBwMo_0\thorse\nHWEI24n2tHY_0\tperson\nHWItJuo6DSM_0\tbus\nHWXgDvYdlHE_1\tperson\nHWZSmtWVH54_0\tperson\nHWZenKFJqkY_0\tperson\nHWZenKFJqkY_1\tperson\nHWZenKFJqkY_2\tperson\nHWfpkRSnZp8_0\ttrain\nHWfpkRSnZp8_2\ttrain\nHWjaeLf99dU_0\tbear\nHWr9Kqi0B2A_0\tperson\nHWsTMfZok5E_0\tperson\nHWtKIjJacjk_0\tperson\nHWtyII4CMWg_0\tcar\nHWtyII4CMWg_3\tcar\nHW7FTNqTKhs_0\ttrain\nHW7yQK_j65g_0\thorse\nHXARJhNURSs_0\tperson\nHXH_F5SX6FU_0\ttruck\nHXH_F5SX6FU_3\ttruck\nHXH_F5SX6FU_1\ttruck\nHXKnqbEGfVw_0\tbird\nHXKnqbEGfVw_6\tbird\nHXKnqbEGfVw_1\tbird\nHXKnqbEGfVw_2\tbird\nHXKnqbEGfVw_3\tbird\nHXLA3nbxgh4_0\tperson\nHXWoqdza4oA_0\tdog\nHXaAJtjX1mE_0\tbicycle\nHXaAJtjX1mE_2\tbicycle\nHXaAJtjX1mE_1\tbicycle\nHXa-0NlFTP4_0\tperson\nHXcSrTLsF9c_0\ttrain\nHXhYYfE4uN8_0\tperson\nHXvgiezvrYI_0\ttruck\nHXx4tRTfGRM_1\tdog\nHX0kjr3XYHI_1\tbear\nHX7P1ipPByA_0\tdog\nHX-gTvdUaOE_2\tmotorcycle\nHYLAdzbqvC0_0\tperson\nHYWEWmMMrsU_0\tcat\nHYW3dAv02gE_0\tcow\nHYW6VucwAEg_0\tperson\nHYXFGMzivds_10\ttruck\nHYbuNzqXmyY_0\tperson\nHYiN6skKjfY_0\tknife\nHYoonHvZXCc_0\tmotorcycle\nHY1aAYxxlQo_0\tperson\nHZC5bba_V4Y_0\tknife\nHZJ-JQkt590_1\tbicycle\nHZKExvpKLQ8_1\tperson\nHZLdGfto2mI_0\tcar\nHZSPPN3TMx8_0\tbird\nHZZadt4SIl0_0\tdog\nHZceU_BV2GM_0\tperson\nHZceU_BV2GM_1\tperson\nHZceU_BV2GM_2\tperson\nHZd4rCCsNMs_0\tskateboard\nHZd4rCCsNMs_1\tskateboard\nHZd4rCCsNMs_2\tskateboard\nHZkmrVeoUV4_0\tperson\nHZscUISrdww_0\tperson\nHZ-tGW__JOI_0\tcat\nHaE1N8Q1b7s_1\ttrain\nHaMpIMApSi8_0\tperson\nHaO3z-4gcBs_2\ttrain\nHaRliuOtm7s_1\tperson\nHaiLotzzEXk_1\telephant\nHaiLotzzEXk_2\telephant\nHaiLotzzEXk_0\telephant\nHarW34izH-M_1\tperson\nHauA239AM7I_0\tdog\nHavxbX8tng0_0\tperson\nHayoEz1x5Ks_0\tperson\nHayoEz1x5Ks_1\tperson\nHay4Nx9S5-k_4\tbicycle\nHay4Nx9S5-k_1\tbicycle\nHa8XGRvxQxs_0\tperson\nHa_OuYxLXIs_0\tperson\nHa_w-xJsHAY_0\tzebra\nHbBCtCXKIEE_0\tperson\nHbH7DpR0WUw_0\tperson\nHbJufGCjdSE_1\tperson\nHbKh31cncOI_0\tbird\nHbLoxqqdYsQ_0\tcow\nHbQu1mfGg4c_2\telephant\nHbQu1mfGg4c_3\telephant\nHbQu1mfGg4c_0\telephant\nHbQu1mfGg4c_1\telephant\nHbcyjRGbMBY_0\tdog\nHbcyjRGbMBY_1\tdog\nHbhmBauZqxE_0\thorse\nHbq35QImz2w_0\tperson\nHbq35QImz2w_1\tperson\nHbuCy2fsJk8_2\tknife\nHbyKQdGpxhA_0\tboat\nHb3INTcuOVk_0\tperson\nHb5zCzD4J_E_1\ttrain\nHb5zCzD4J_E_2\ttrain\nHb5zCzD4J_E_3\ttrain\nHb5zCzD4J_E_6\ttrain\nHb5zCzD4J_E_7\ttrain\nHb5zCzD4J_E_8\ttrain\nHb5zCzD4J_E_11\ttrain\nHcBQXS22BDs_0\tperson\nHcJTaK6Q9P8_0\tperson\nHcXN4Pwnaeg_0\thorse\nHcfxwdbwk8c_0\tperson\nHchet3FQwII_0\tperson\nHcxL3_INS_0_0\tperson\nHc5ZM6UWTbY_0\tperson\nf4OI46BYh08_0\tskateboard\nf4Oj9uMeFdI_0\telephant\nf4PgAt4YpfE_0\tcat\nf4P-R7h_gTU_0\tperson\nf4QyVWC6yrw_0\tperson\nf4XkIcezAd8_0\tperson\nf4XkIcezAd8_1\tperson\nf4Y2tjwOV2k_0\tcow\nf4Y2tjwOV2k_1\tcow\nf4bys9o_Z2M_2\tbird\nf4s0cImpNBM_1\tcow\nf4xLPprxm30_4\tknife\nf49BXPlU-iI_0\tknife\nf4_Mfc9Ccg8_0\ttruck\nf5BIXG_nLok_0\tbus\nf5HsrI3Codk_0\tbird\nf5J7yrE24eY_0\tperson\nf5LuupUslCU_0\tperson\nf5Q2iD7VUx8_0\tskateboard\nf5W37dv91tU_0\tperson\nf5apNjAecEc_0\tperson\nf5bVoAXze0Q_0\tmotorcycle\nf5d1IXK1Tz0_0\tbird\nf5rzpIRd4wA_0\ttrain\nf5wHsLucnf8_0\tperson\nf5zEWaDr1jg_0\tcat\nf50eMXA_-bM_1\tperson\nf50eMXA_-bM_0\tperson\nf53Jmsa7Jkc_0\tperson\nf6AcbdJ77A4_1\ttrain\nf6E2ODGGF28_1\tperson\nf6Px5vjTeRI_1\telephant\nf6Px5vjTeRI_0\telephant\nf6Px5vjTeRI_3\telephant\nf6Px5vjTeRI_5\telephant\nf6UBVcEIt3I_1\tperson\nf6cXiuO-MvQ_1\ttruck\nf6dVANLzPTY_0\tperson\nf6dVANLzPTY_1\tperson\nf6o6ukW_Qog_2\tbear\nf65c6sEDtkE_0\tperson\nf7A6AOC8fOg_0\tperson\nf7A6AOC8fOg_1\tperson\nf7ExsvPto-E_1\tmotorcycle\nf7Fs7-jGglk_1\tbear\nf7GJgMh9xt4_0\tperson\nf7WvltLziTI_0\tboat\nf7cI-B4pJso_0\tcow\nf7kLnCuNTQo_0\tcow\nf7lmZQGcfBA_3\telephant\nf7lmZQGcfBA_4\telephant\nf7lmZQGcfBA_0\telephant\nf7lmZQGcfBA_1\telephant\nf7oBEoL94vw_0\tperson\nf7pnt1rB9kI_0\tperson\nf7x074oihas_0\tperson\nf73BEqi2_DM_0\tperson\nf7-S_iQAyKU_0\tcar\nf7-htlH5qd4_0\tbird\nf7-htlH5qd4_2\tbird\nf8A1o9Nbs64_0\tskateboard\nf8BXIJnggCI_1\tboat\nf8BXIJnggCI_3\tboat\nf8BXIJnggCI_4\tboat\nf8Dp8Yvyr_0_0\tperson\nf8PVrlhAIV4_0\tperson\nf8T4DHNu6MY_1\ttruck\nf8ZxXHSqC_8_0\tboat\nf8cW6kw6240_0\tperson\nf8mzzGhPBaw_1\tcar\nf8q3fKwf5PY_0\tknife\nf8yFyIwDCQ4_4\tgiraffe\nf8zLCa1oGOE_0\thorse\nf8z83D9vGPo_2\tknife\nf80hjE6vabs_0\tperson\nf80hjE6vabs_1\tperson\nf84ypk41ULc_0\telephant\nf9H0LrBLc9Y_0\tperson\nf9H0LrBLc9Y_1\tperson\nf9H0LrBLc9Y_3\tperson\nf9H1bUagACA_0\thorse\nf9H6UaPUITk_0\tcat\nf9LOlCLfsJs_0\tperson\nf9N4Jxt-kUs_1\tknife\nf9N4Jxt-kUs_2\tknife\nf9TCFTluRIc_1\tbus\nf9e12AC1jXM_0\tbear\nf9oWC3kSP1M_0\tmotorcycle\nf9ovukmKaq4_1\tperson\nf9sPt8HIN0w_1\tskateboard\nf9sj-0ZFV6E_0\tperson\nf9sj-0ZFV6E_1\tperson\nf9v2ONFCiwQ_0\tperson\nf91XzUXz11U_0\tperson\nf96d9EwxAB4_0\tperson\nf9-IyW9tVLY_0\tperson\nf-FxqFk0TdM_0\tperson\nf-JXaNm7TBw_0\tperson\nf-J7SQBHRN4_0\ttruck\nf-Yei4idfG8_0\tairplane\nf-dhfS-geuI_1\telephant\nf-dhfS-geuI_2\telephant\nf-h9L-PN1ZM_1\tbird\nf-iLJUDdrD8_0\tperson\nf-niuVrgiIc_1\tperson\nf-rp_CghH-E_0\tskateboard\nf-s-4lM4qPA_0\ttruck\nf-w51BH60RQ_0\tperson\nf-1WVe76te0_0\tcow\nf-4EyKUawVo_0\tbear\nf-7ZEGsCz9U_0\tperson\nf_GKi-DGmzM_0\tperson\nf_Gf2hpt7y4_0\tgiraffe\nf_GudF8uST0_0\tperson\nf_NsA6enCZE_0\tperson\nf_OOyDOAAOU_7\telephant\nf_QhMhkyUSY_3\ttruck\nf_QhMhkyUSY_1\ttruck\nf_QhMhkyUSY_4\ttruck\nf_Us8TvJMUQ_0\tperson\nf_VwDCt9HTc_0\tdog\nf_WQIaZ5PjY_0\tboat\nf_bXOtZjzfo_0\tperson\nf_b0IaRqtbs_0\tperson\nf_jLGz53IpQ_0\tperson\nf_jLGz53IpQ_1\tperson\nf_mo54sXCc8_1\tperson\nf_mo54sXCc8_0\tperson\nf_rC1JIAMBU_0\tperson\nf_wk-NOqceY_0\thorse\nf_yMF9tkk70_1\tcar\nf_yvJuTzFHc_0\tmotorcycle\nf_yvJuTzFHc_2\tmotorcycle\nf_2I0S-EYu8_0\tdog\nf_3x9qJXCjA_0\tperson\nf_49EFLQ02I_0\tperson\nf_8S2hHC2rc_0\tbicycle\nf__fXHkVh5E_1\tcow\ngAKFUl9e_kg_0\tperson\ngAQ92hISW6g_0\tperson\ngARNWQDyaYM_0\tboat\ngAYbqApcfGs_0\tperson\ngAdIZN7_0SM_1\tairplane\ngAeHmfC6t5s_0\tcat\ngAetQXcftXM_2\tdog\ngAnOylz1kDY_0\tperson\ngAnmF0EFcB4_2\telephant\ngAorjWC_59o_0\tcat\ngAo9Rsd6xwg_0\tcow\ngA2FDYNulg8_1\tperson\ngA22uEcTAuY_1\tdog\ngA84cp5Keqk_0\thorse\ngA_a2Ajm7B8_1\thorse\ngBFsvbfVaLg_0\tperson\ngBJgWZcXu9o_0\tperson\ngBK7NwUcSoY_1\tperson\ngBOpan7nm6M_0\thorse\ngBOpan7nm6M_1\thorse\ngBPipHCII3M_0\tbus\ngBRc8zqsL78_0\tdog\ngBUOzZPs_o4_2\tperson\ngBUOzZPs_o4_0\tperson\ngBYqrtFnN_Y_0\tperson\ngBYqrtFnN_Y_2\tperson\ngBeaBC0u9cQ_0\tperson\ngBhKhiEJUCM_0\thorse\ngBiq_BH15FM_0\tdog\ngBoebgAjbVw_0\tperson\ngBoebgAjbVw_1\tperson\ngBs3hPLJTGs_1\thorse\ngBwCej92lKg_1\tperson\ngB0wConR2VI_1\tskateboard\ngB2QHXkiiHs_2\telephant\ngCDBnQV_G3c_0\tcat\ngCDBnQV_G3c_1\tcat\ngCGtBmntCiI_1\tmotorcycle\ngCHegjuq0os_0\tperson\ngCHegjuq0os_1\tperson\ngCI1E3Hezdo_2\tcow\ngCI1E3Hezdo_1\tcow\ngCTp3CdMHCo_0\tperson\ngCT0VAdPm98_0\tcat\ngCuOoA6aZ5U_0\tcat\ngC7K3OeQFHo_3\tbird\ngC7XtkA9y_Y_0\tdog\ngC-xUbdM-tU_0\tperson\ngC-xUbdM-tU_1\tperson\ngDAPPFBC9Gw_0\ttrain\ngDEpD9ek-O8_0\tskateboard\ngDGLrPPl_PU_0\tcat\ngDMsKJ61KPo_1\tskateboard\ngDOGAHsBM_o_0\tperson\ngDTs0BOj8Fw_0\tcat\ngDU0hHsqtbU_3\tknife\ngDU0hHsqtbU_5\tknife\ngDU0hHsqtbU_0\tknife\ngDVGs8wTXCQ_0\tcat\ngDkDXOm8z5Q_1\tcow\ngDkDXOm8z5Q_0\tcow\ngDk-zDBsv7g_0\tdog\ngDnSIxaiPzk_0\tperson\ngDn3-DCSgNg_0\ttrain\ngDsBFuJE6D8_2\tdog\ngDvOoWXI3yg_0\tperson\ngD2GATPADlA_0\tperson\ngD5_x_Bz1z4_0\tperson\ngD5_x_Bz1z4_1\tperson\ngED4_ImWufA_0\ttruck\ngEE_GCrAqF0_0\tperson\ngEJi9Jawk2A_0\tperson\ngEOxDCDD97k_1\thorse\ngESEn7ZZELM_0\tperson\ngESEn7ZZELM_1\tperson\ngEai3uMvvFg_0\tairplane\ngEai3uMvvFg_3\tairplane\ngEai3uMvvFg_4\tairplane\ngEhLmQnM720_0\tcar\ngEu4mV0DWRQ_0\tperson\ngE0ZQD1rCy8_0\tperson\ngE0mBxOEwRI_1\tskateboard\ngE0mBxOEwRI_3\tskateboard\ngE8ErAnVuzY_0\tbird\ngE8ErAnVuzY_2\tbird\ngE-GVN9ErhI_0\tperson\ngFEnoylVci0_0\tperson\ngFac0jUOjCE_0\thorse\ngFcIMdm4qtI_0\ttrain\ngFdHQTLSmnc_0\tairplane\ngFfVZSPVYmY_0\tperson\ngFiSl9m-w0k_0\tperson\nHdBc9ySq76E_1\tbird\nHdCyMGZFJhM_0\tperson\nHdFYXjdN5_8_0\tperson\nHdO2lmXvENQ_0\thorse\nHdR6VoZEwAU_0\tcat\nHdSXU0fhHbM_0\tperson\nHdT_9pXdxuc_1\tperson\nHdbZzqJGLo8_1\tcow\nHdcXcqUlgI4_0\tskateboard\nHdhKF0UWx4g_0\tperson\nHdh3nOzwVW8_0\tperson\nHdjbDB8UvCY_0\tperson\nHdo3_NQiVKw_0\tknife\nHd85XlwoOMc_0\tperson\nHd-wT5OTZDE_0\tperson\nHd-wT5OTZDE_1\tperson\nHeIrGQnIMOE_0\tdog\nHeLNz5XJe08_0\tperson\nHeTGT7JfvB0_0\tperson\nHeUD1Hrzswg_0\tbird\nHeYNsU-PKJs_0\tcow\nHeYNsU-PKJs_1\tcow\nHedUVNznPK0_0\tcar\nHedUVNznPK0_1\tcar\nHeoyKd78htI_0\tperson\nHeoyKd78htI_1\tperson\nHewdFRJAXH4_0\tperson\nHe08dewEgbY_3\tmotorcycle\nHe08dewEgbY_0\tmotorcycle\nHe1OQxCPk_w_0\tperson\nHe5cucK-e48_0\tperson\nHe6bAMDkCss_0\telephant\nHfDHvE46LYU_1\tbird\nHfDzCPRQ2nw_1\telephant\nHfEXlJ0dOhU_0\tperson\nHfEZYvYqq_Y_0\tcow\nHfHNi93ZHoo_3\tcow\nHfHNi93ZHoo_1\tcow\nHfOcLeLWchM_0\tperson\nHfZ871F0xSo_0\tcat\nHfnnbr4CeTg_3\tbus\nHfqI5BIpp0s_0\tperson\nHfq3_YJ7BpY_0\tmotorcycle\nHfq9JFmquE4_0\tperson\nHfvJc2dxUR4_0\tboat\nHf1Iyyz2DMY_0\tperson\nHf1Iyyz2DMY_1\tperson\nHf8JWsbSYYk_0\tperson\nHf8-8h45g-g_1\telephant\nHf8-8h45g-g_0\telephant\nHf8-8h45g-g_2\telephant\nHgDimNCaxF0_1\tbear\nHgFCKM4ndEc_0\tcar\nHgMYuCtsOwc_0\tperson\nHgMYuCtsOwc_1\tperson\nHgO57Npp9Yg_0\ttrain\nHgexaoNeZJk_0\tperson\nHgiYmNrxUzg_1\tperson\nHgkeptGXNt4_0\tmotorcycle\nHglF9x-ORXU_0\tperson\nHgr5__oevds_0\tperson\nHg2vqnLAc8I_0\tdog\nHg4DJ-x85Dw_1\telephant\nHg-R_RMIEN8_0\tairplane\nHhASNiFpJlw_0\ttruck\nHhF6cAtp7Xs_0\tknife\nHhGGJNmwWHk_0\tperson\nHhVSLU0A-wk_0\tcar\nHhcMy4KZ9mY_0\tskateboard\nHhfSUB2LOTU_0\tperson\nHhiUVwHWmwM_1\tperson\nHhiUVwHWmwM_2\tperson\nHhiUVwHWmwM_0\tperson\nHhjGAeK-XWg_0\tperson\nHhoRf1Ovlf8_0\tperson\nHhvq-cwBJgo_0\tperson\nHhwzl9x_m34_3\tcow\nHhxV27YhiqI_0\tskateboard\nHh1xD0M0N8Q_0\tperson\nHh6x850teNQ_5\tairplane\nHh6x850teNQ_7\tairplane\nHh6x850teNQ_8\tairplane\nHh6x850teNQ_9\tairplane\nHh6x850teNQ_10\tairplane\nHiBUWbOyqcQ_0\tperson\nHiGZ2EdJh2o_0\tperson\nHiMItbtVHcY_0\tcat\nHiMItbtVHcY_1\tcat\nHiNt0G1AIO4_0\tmotorcycle\nHiTE5nqzjBw_0\tzebra\nHiUz61ffgHA_0\tperson\nHiZDjdREbmc_0\tumbrella\nHim7gJ7sArU_0\tperson\nHim7gJ7sArU_1\tperson\nHinGUsliCKc_0\ttruck\nHirBTVnhNls_0\tcow\nHi4ITByGP0Q_0\tperson\nHi4mzrYdRBQ_0\thorse\nHi4mzrYdRBQ_2\thorse\nHi4mzrYdRBQ_3\thorse\nHi8Ey0o5mCQ_1\tperson\nHi-7ZtG_JWI_1\tperson\nHi_YHp3Jz48_0\tcow\nHjAtN_MbguE_0\tperson\nHjLLTWwaCB8_0\thorse\nHjNfykX021M_0\tperson\nHjNfykX021M_1\tperson\nHjgdNiVfO9M_0\tskateboard\nHjlX9nu9Vf4_0\tperson\nHjo13y8dFy4_0\tmotorcycle\nHjt_y0CW-dY_0\tperson\nHjt_y0CW-dY_1\tperson\nHjxd2cno65M_0\tskateboard\nHj0J8FVxBjg_2\tperson\nHj0J8FVxBjg_0\tperson\nHj0J8FVxBjg_1\tperson\nHkApyQz8MTY_1\thorse\nHkQ4tzUFCUU_0\ttruck\nHkW_wLkAKpg_0\tperson\nHke6h3Sv5bA_1\tbicycle\nHkzYNIDq0q4_0\ttrain\nHk45sdCRh9g_1\tbear\nHlEkgK08UfY_1\tperson\nHlTQbPXnzu8_0\tdog\nHlWsih27OmA_0\tbird\nHlaPVZM-53c_0\tperson\nHlfpirtC6oQ_0\tperson\nHlmuHGoCGAI_0\tcow\nHltyUzvtugM_1\tbicycle\nHlurUBv4bh0_1\tgiraffe\nHlurUBv4bh0_3\tgiraffe\nHlurUBv4bh0_4\tgiraffe\nHlwSaYwFLRE_0\thorse\nHl3qik9GRX4_0\tperson\nHl5MXwWiXWM_0\tperson\nHmDDLtJcD5g_0\tperson\nHmORePbYJkk_0\tskateboard\nHmPvsdwo_fY_0\tdog\nHmRm2phIiGo_1\tbird\nHmY8zwmIiac_0\tcow\nHmaGylwEFxw_0\tperson\nHmbTCfB3Vkg_0\tperson\nHmk4dZnPtRY_0\tbus\nHmn3xf-zqWI_0\tperson\nHmqV_7hAxdw_0\tperson\nHmr0jbygomI_0\tgiraffe\nHmwxDK0zo6U_0\tperson\nHmyj1zKgToA_0\tperson\nHm0kxS31F_U_0\tperson\nHm0kxS31F_U_1\tperson\nHnNJeASG0-M_3\tperson\nHnNJeASG0-M_4\tperson\nHnNJeASG0-M_2\tperson\nHnNzkYDhWks_1\tperson\nHnNzkYDhWks_2\tperson\nHnNzkYDhWks_0\tperson\nHnP7iXcgg8g_0\ttruck\nHnSHJ_iCdi4_3\ttruck\nHnSHJ_iCdi4_1\ttruck\nHnUrGKpAsOk_0\tcat\nHnbNOJpzYPE_0\tperson\nHnjhdtM8qSI_0\tskateboard\nHnptRKjBUF0_2\tboat\nHnwYRWj3fk4_2\tknife\nHnxaJbaAiUI_0\tperson\nHoH5exlgIxk_1\tskateboard\nHoLifxKZUpI_0\tperson\nHoLifxKZUpI_2\tperson\nHoLifxKZUpI_1\tperson\nHoNs_4V1pNs_1\tbear\nHoNs_4V1pNs_4\tbear\nHoP_nMgAxAk_0\tboat\nHoeeRkyNozc_0\tcow\nHon64st5_6g_0\ttrain\nHo2ixBE8dzE_0\tgiraffe\nHo5TcUOlb3Q_0\tmotorcycle\nHo5o7aBqNAc_0\tperson\nHo6N0OgD-1M_0\tperson\nHpBBda_pbf8_0\tmotorcycle\nHpGr16tW9dk_1\tperson\nHpQ90KkREGo_0\tperson\nHpUPD5_WMYI_0\ttrain\nHpZ3IzUfsGg_3\tbus\nHpbQsLdUHN4_0\tboat\nHpjyvLHus3Y_1\tskateboard\nHpkTeQdQ03Q_0\tskateboard\nHprw9lNWGGs_0\tperson\nHptcjVcfzgY_0\tcow\nHpwk73qvroU_1\telephant\nHpzTTAS6Qt8_0\tperson\nHp0SQy5w9Q4_0\tperson\nHp-eaTbVfLY_1\tbear\nHp-2Gb7Fwns_0\tcow\nHqxhhM71S2g_0\thorse\nHq1KLztJBrE_0\tperson\nHq6tGHLzg4Q_0\tperson\nHq814Tfrblw_1\tairplane\nHrHPBJOnFgg_1\ttrain\nHrHPBJOnFgg_0\ttrain\nHrHPBJOnFgg_4\ttrain\nHrHPBJOnFgg_6\ttrain\nHrdVu5J3rZQ_0\tperson\nHr-keYNRBhA_0\ttrain\nHsLZwGFHYUg_1\thorse\nHsNcZZ6iwHQ_0\tperson\nHsOiHc1moVk_0\tperson\nHsOkCwZLv_w_0\tbus\nHsOkCwZLv_w_3\tbus\nHsOkCwZLv_w_1\tbus\nHsOkCwZLv_w_2\tbus\nHsR2xk4I1as_0\tperson\nHsVKw_8AQtM_0\tperson\nHsZgeesgCZQ_0\tperson\nHsjVUPs3XB4_0\tboat\nHslbDMoiABY_0\tcar\nHslld67XdsY_0\tperson\nHswufOfUGyk_0\ttruck\nHsyscFWIPZs_0\tbus\nHs0HRqYcYqA_0\tcar\nHs6bVSOu98U_0\tdog\nHs_vQr20HdQ_0\tskateboard\nHs_vQr20HdQ_3\tskateboard\nHtErHV_tZqs_0\telephant\nHtIbfC8DDos_0\ttruck\nHtNaGNO6nnc_0\tperson\nHtRiNzzfakk_0\tperson\nHtUPhgHKN9c_1\tboat\nHth8t7jhKPs_4\thorse\nHth8t7jhKPs_7\thorse\nHth-I5KYVsI_0\tcat\nHt054jKgWfE_0\tperson\nHt9C8ABsxrg_0\tperson\nHt_bczKGV-0_0\tperson\nHuNIgJEUelo_0\tperson\nHuNIgJEUelo_1\tperson\nHuOzcY9ybpo_2\tdog\nHuVl7peYYF8_0\tperson\nHuVoecmBgpM_2\tbird\nHuVoecmBgpM_1\tbird\nHuZPTuSe7Zw_0\tperson\nHue6Q5JKEKw_0\tcow\nHun4T6fv3cs_0\tperson\nHuqC6CX9uRA_1\tperson\nHuyd-7WlWWU_0\tperson\nHu3xpcZqwRg_0\tperson\nHu9DGxLcg2c_0\tperson\nHu-VYy60p64_0\tperson\nHvHJi-EkL8c_0\tskateboard\nHvIubGltpPY_0\tdog\nHvLq5xDKM6E_2\tbicycle\nHvP4rcOll6k_0\tperson\nHvQGnFuiwtg_0\tcat\nHvTvaPx2hXw_1\ttrain\nHvhkLhJ4YFQ_0\tperson\nHvuLPfhVT3s_0\tperson\nHvyIg5RMLbU_1\tperson\nHvyIg5RMLbU_0\tperson\nHvyzpBvy40o_0\tperson\nHv5sH0eTE_M_0\tdog\nHwSP55CmiCk_0\tperson\nHwS3weg4aQc_0\tdog\nHwS3weg4aQc_2\tdog\nHwY6kiQlICc_0\tperson\nHwdEYJ2bZkg_0\tairplane\nHwdyzravQpY_0\tcat\nHwfLycybCD0_0\tmotorcycle\nHwgmR0Qlm_I_0\tperson\nHwipRH29Hr0_0\tbus\nHwnqezsko-Q_0\tperson\nHwnqezsko-Q_1\tperson\nHwxnH--ot8o_0\tcar\nHw0JhQaRYcA_0\tcow\nHw2Bhz2SkUI_0\tperson\nHw2Bhz2SkUI_1\tperson\nHxMniz8r1x4_0\tperson\nHxP056QWsGY_0\tperson\nHxP056QWsGY_1\tperson\nHxaFZyog34E_0\tperson\nHxaFZyog34E_1\tperson\nHxgU1Dh8wMs_1\tperson\nHxiBpvG82Ys_0\tmotorcycle\nHxq1wNRv5Yg_0\tperson\nHxv6y6I4mvE_0\thorse\nHx19D3w4xGI_0\tgiraffe\nHx_Z9TOIV8U_0\tmotorcycle\nHyJgfYNotwk_0\ttruck\nHyUY7bqdm9Q_7\tdog\nHyUY7bqdm9Q_0\tdog\nHyVLne6RE-A_0\tperson\nHyXjUWAQ970_0\tskateboard\nHygs9OBUgg4_1\tperson\nHyuQCu-z558_0\tmotorcycle\nHywSTw3dtgs_0\tperson\nHywSTw3dtgs_1\tperson\nHy4E2NZEc34_1\ttrain\nHzAOQnmw_bo_1\telephant\nHzAOQnmw_bo_2\telephant\nHzCClfShiwM_0\tperson\nHzCClfShiwM_1\tperson\nHzDzb9xxc6o_0\tperson\nHzESeh3ZV4g_0\tperson\nHzHWWeZEU6E_1\tskateboard\nHzJgpBBIk1o_0\tcat\nHzLm3QfIx9w_0\tperson\nHzLm3QfIx9w_1\tperson\nHzXBY-SJECY_0\thorse\nHzYY4-iAvrk_0\tcow\nHzdSxrJ2oBw_0\tskateboard\nHzkmlCJwvqo_0\thorse\nHzlcc_lAGVo_2\tskateboard\nHzqIVSJNXAU_1\tperson\nHztbwJhPXyk_0\tperson\nHz6I6jLi4NA_0\tdog\nHz8qayZDGpU_0\tperson\nH0Adt_c6kJo_2\telephant\nH0EEB1bPOjE_0\tperson\nH0VjOJvg49Q_0\tbicycle\nH0Ym6NE2ny8_0\tcat\nH0gWl9KRbHo_0\tperson\nH0k2WZec6aA_1\ttrain\nH0k2WZec6aA_3\ttrain\nH0k2WZec6aA_4\ttrain\nH0k2WZec6aA_0\ttrain\nH0u061QsnHw_0\tcat\nH0yhw97jkkY_0\tperson\nH0z8VqDW-vg_1\tairplane\nH01F2fhFpr0_0\telephant\nH097WsXpask_0\tperson\nH097WsXpask_1\tperson\nH1C2ZZeeVs0_0\tcow\nH1Hd5Japfbc_3\ttrain\nH1Hd5Japfbc_0\ttrain\nH1Hd5Japfbc_1\ttrain\nH1Hd5Japfbc_2\ttrain\nH1JIvu1dbbk_0\tperson\nH1JIvu1dbbk_1\tperson\nH1MTfTrQrE0_1\tperson\nH1d68B_jDjI_0\tperson\nH1hg-0_AS9A_0\tcow\nH1xBJoYM7rE_4\ttruck\nH1xBJoYM7rE_5\ttruck\nH117IshzypA_0\tknife\nH144B0rpQh0_0\tperson\nH144B0rpQh0_1\tperson\nH1-_3CvKDzc_0\tbird\nH2Q-46IlKEc_5\ttruck\nH2Q-46IlKEc_6\ttruck\nH2RoEMwxEAk_1\tperson\nH2TqEPsubdM_0\tbear\nH2iTxNLOK1Q_2\tmotorcycle\nH2iTxNLOK1Q_0\tmotorcycle\nH2iTxNLOK1Q_3\tmotorcycle\nH2vkpfO2yqU_0\tperson\nH22P5Z4GfkE_0\tperson\nH29Xe5gG_-s_0\tperson\nH3A2DSw_xNU_1\telephant\nH3GcVWKTVd4_2\ttruck\nH3NrFrjQlfc_0\tperson\nH3exbzmmPQY_0\tperson\nH3jC0oToDjU_2\tperson\nH3jC0oToDjU_3\tperson\nH3jC0oToDjU_0\tperson\nH3o1VsopVFM_1\tbicycle\nH3o1VsopVFM_2\tbicycle\nH3pifBCagTI_0\tperson\nH30IPtBzf_s_5\tskateboard\nH30ifg3HO_I_3\tdog\nH33IRr1Z3-w_1\ttrain\nH36UOsilz4M_0\tperson\nH4Hp-UJYZ_g_0\tbicycle\nH4JiUp8EH3s_0\tzebra\nH4VZD26aqe8_0\tskateboard\nH4VZD26aqe8_1\tskateboard\nH4bN1hcXw9Q_1\tperson\nH4dTHFeYa30_0\tmotorcycle\nH4eE_LAeWXQ_0\tperson\nH4eE_LAeWXQ_1\tperson\nH4gxLA7vTo4_0\tperson\nH4lBmXOi3Uc_0\tdog\nH40G2dsVha4_1\ttrain\nH41XJMKpfFM_0\tbus\nH42hQSjU97o_0\tknife\nH5NqMNaMEiM_0\tbird\nH5YO56LD_dY_0\telephant\nH5YO56LD_dY_1\telephant\nH5iHzuWmtDw_1\tdog\nH5sijKl_Xi4_0\tcow\nH50EXfjT2O0_2\tairplane\nH50EXfjT2O0_0\tairplane\nH50EXfjT2O0_1\tairplane\nH50-_mqAU14_1\tcow\nH55Ru4hgats_2\telephant\nH55Ru4hgats_3\telephant\nH6OhYxXS1So_0\tcat\nH6UwkC3sYic_0\tcat\nH6ZHYEOcjCI_0\tbicycle\nH6ZHYEOcjCI_1\tbicycle\nH6Z8sZ34ZGw_0\tmotorcycle\nH6dXJIZnH-k_2\ttrain\nH63oHdGMBAs_0\tbird\ngFunUi36tVM_0\thorse\ngFunUi36tVM_1\thorse\ngFvhLM1k-IY_2\ttruck\ngFwCuQBtZiU_1\tumbrella\ngF7IM-CiOdU_7\tbicycle\ngF7IM-CiOdU_0\tbicycle\ngGBEKYXUhbE_0\ttruck\ngGMxVO2zmP4_9\tbird\ngGMxVO2zmP4_1\tbird\ngGMxVO2zmP4_2\tbird\ngGMxVO2zmP4_5\tbird\ngGMxVO2zmP4_8\tbird\ngGSCGkm00jM_1\tbicycle\ngGYN2hnw1SQ_1\telephant\ngGdKtY4p1E0_0\tairplane\ngGt9CVOzJOI_3\tknife\ngGzaN_8PxZw_0\tskateboard\ngG8tfb-eSuo_0\ttrain\ngHC3HqRbW6g_0\telephant\ngHF9PM2MVuw_1\ttrain\ngHvzU7dfBU8_0\tgiraffe\ngHyK46CyQtA_0\tcow\ngH0LLPcn-H8_0\telephant\ngIBZr7Mh05k_0\tbird\ngIMq_fnjtSM_0\tcat\ngISy0wedyW4_0\tboat\ngInHAdlbB60_1\tskateboard\ngIsXFCo7Nt4_1\tdog\ngIxuS1GwPPo_0\ttrain\ngJV63DGM7Ew_1\tcar\ngJa0yNDBFio_3\tperson\ngJa0yNDBFio_0\tperson\ngJa0yNDBFio_2\tcow\ngJfD9eHnos4_1\telephant\ngJn5fXk7dCs_0\tairplane\ngJuZGVWuQQ8_2\tbicycle\ngJ-k_oHkqYc_0\tcat\ngKHR68FmKE8_3\tairplane\ngKHR68FmKE8_0\tairplane\ngKHR68FmKE8_4\tairplane\ngKmF78OWCUc_0\tmotorcycle\ngKqUwiPYSh8_0\tmotorcycle\ngK7dud30V7k_0\tgiraffe\ngK_K33gm3SA_1\tmotorcycle\ngLQWgnWqQ1Y_0\tbicycle\ngLRU7lXCgNw_1\tdog\ngLRexWYaW_Q_0\tskateboard\ngLbADp0AlZU_0\tbird\ngLtnBhTBpkA_1\tboat\ngL3uBv5NWJU_1\tbus\ngL7JySv9H4I_0\tbicycle\ngMAW4Am5_pc_0\tcow\ngMBTewi9VZg_0\tcow\ngMCCgBzug_U_0\tknife\ngMFgEtqbTXs_0\tboat\ngMJuszEOURk_0\tcat\ngMMJH4UYboM_3\tbus\ngMXt8X-xC_g_0\tdog\ngMlNev_l4Yg_0\tbus\ngMlhd1gczF4_0\tairplane\ngMsGe7w79Hg_1\tcar\ngM9tFNvc1xw_0\tcow\ngNDSQ2l9FYg_1\telephant\ngNMkDmfkZ1E_0\tmotorcycle\ngNcGXjn7g9o_0\tskateboard\ngNwKVPIi010_1\tskateboard\ngN2aKPpTpzQ_1\tdog\ngN7-cLfUlt8_4\tgiraffe\ngN7-cLfUlt8_6\tgiraffe\ngOOB0RZmnUA_0\tcow\ngORdlzUa3nQ_1\tbird\ngO48FZrUm88_0\tskateboard\ngO-8RNI2Puc_1\tdog\ngPhcXlQLLRU_0\thorse\ngPrWvEE7yjw_0\tcat\ngPteWZyyJeo_0\tcow\ngP3SQErTTOg_1\tmotorcycle\ngQBW4py4GhY_0\tskateboard\ngQEGmIhhEQ4_0\ttrain\ngQEGmIhhEQ4_1\ttrain\ngQEGmIhhEQ4_2\ttrain\ngQFqppfDRRk_0\tumbrella\ngQLZ5H-n0Uk_4\tknife\ngQVlREJXkik_0\tknife\ngQWTTEHj5Hs_0\tcat\ngQeqE3dgZoM_3\tairplane\ngQe5gykuyi4_1\ttrain\ngQpWY94Fx5E_0\tmotorcycle\ngQpuEhphXHk_0\tcar\ngQpxfwrF7Sc_0\tbus\ngQ6AUvEXuaQ_0\tbicycle\ngQ9HhxeKI4A_0\tmotorcycle\ngQ_SF2MtsUc_0\telephant\ngRFcteFGpLM_0\tskateboard\ngRJGd_HzC-8_0\tknife\ngRJpf6JwJeU_1\tgiraffe\ngRNKgw2D_mE_0\tknife\ngRVrvJioWZ8_1\ttrain\ngRoGrhv1ebI_0\telephant\ngRsOR1tKh8U_0\ttruck\ngR3ihf3rch0_0\tcar\ngSXDTJjj1jk_0\ttrain\ngSi2fNTUsy8_0\thorse\ngSlT3ALqvTM_0\tskateboard\ngS0DTbVQ2x8_1\tknife\ngS25yLrNO98_0\tbear\ngS2-SAccVh0_0\tskateboard\ngS7U-6Z8M2g_1\tknife\ngS_9D3OWXAk_0\tairplane\ngTqgARR0BBQ_1\tboat\ngT27MQBhatA_0\tskateboard\ngUDoTzwZlso_0\tdog\ngUL0-NbHvuA_0\tmotorcycle\ngUMLascwbtU_0\ttrain\ngUNCDmbzxq8_0\ttrain\ngUbc_OUTnOs_0\tairplane\nH7ONEeAkBFo_3\tmotorcycle\nH7ONEeAkBFo_2\tmotorcycle\nH7YUH_GBWdQ_0\ttrain\nH8B-3STVp6E_0\tcat\nH8LitQV6pNM_0\tcat\nH8SccYIiPs8_0\tzebra\nH8coORJpR80_1\tskateboard\nH8k1E1i7AvQ_0\tknife\nH9AQUC0N1zI_0\thorse\nH9JfwPhdCjg_0\tboat\nH9KjlXZYxJU_0\ttrain\nH9KjlXZYxJU_8\ttrain\nH9TUml4LflE_0\tcow\nH9UTvMwaoRg_0\tcow\nH9bbSssKl2o_14\tumbrella\nH9eutGBn3zw_0\tmotorcycle\nH-C6EBylvh4_1\tcat\nH-IoiGsEU5Y_0\ttrain\nH-QKbNwtoH8_1\tcar\nH-gh485Om10_0\tbus\nH-gh485Om10_1\tbus\nH-kkRVEs3Bg_0\tmotorcycle\nH-uiufHSb3s_0\tknife\nH-uvqjsUCLc_0\tdog\nH-uvqjsUCLc_1\tdog\nH-5Ynjv0dQI_1\ttrain\nH-62b99sK_s_0\ttrain\nH-62b99sK_s_1\ttrain\nH_Ei1gRODpw_0\tdog\nH_KMZLSAxMw_0\ttrain\nH_iI201Iqws_1\ttruck\nH_iYHl4pFuQ_0\thorse\nH_mRfG30Gzo_0\tskateboard\nH_1O-OBZ3BA_0\thorse\nH_6vxd3ckIY_0\tcat\nIADSsAb2KSo_1\tumbrella\nIADSsAb2KSo_2\tumbrella\nIAFApeJ5FvM_1\tmotorcycle\nIAOiNYVeqzE_0\tbird\nIAaINtcnO7A_0\tbicycle\nIAcbsZcN_pM_1\tmotorcycle\nIAkSntQ2Aso_0\thorse\nIAlz_evs7fU_3\tcar\nIApV0rfD9oQ_0\tdog\nIAsXYmK1baI_0\tmotorcycle\nIAwKojHnvtU_0\ttrain\nIBD9tJNb9_o_0\ttrain\nIBFp5y96q78_0\tmotorcycle\nIBFp5y96q78_2\tmotorcycle\nIBKLgBXZFzw_0\tmotorcycle\nIBYJQU6-nGg_2\tcow\nIBYg-hMbb04_0\tknife\nIBm1C4qJtTg_5\tumbrella\nIBm1C4qJtTg_8\tumbrella\nICQbVnaJL_0_0\tbus\nICZ4tinBQZg_1\tknife\nICZ4tinBQZg_2\tknife\nICZ4tinBQZg_3\tknife\nICg3W1-Prhk_0\telephant\nICnAWjPDzRw_0\tcow\nICtLhp-qveM_0\tboat\nIDCBO7W7xpo_0\tcow\nIDNvFEra8mc_5\thorse\nIDNvFEra8mc_1\thorse\nIDNvFEra8mc_2\thorse\nIDNvFEra8mc_3\thorse\nIDNvFEra8mc_4\thorse\nIDO6jw3u3_w_1\tairplane\nIDcxChwEqDs_2\thorse\nIDeGA2EV3WY_0\tairplane\nIDeimFOIbVc_0\ttrain\nIDmwsXLZKUs_0\tcow\nID1faW2L3rM_0\tcat\nIEOg-ZulFR0_1\tbird\nIEPYJyHfP2E_1\telephant\nIEYC-aYAQ40_0\tboat\nIE5qZDd7tWw_0\telephant\nIFGohfPURX4_0\tperson\nIFfS7hatV0s_0\ttruck\nIFkUMGE7bbc_1\telephant\nIFkUMGE7bbc_0\telephant\nIFrHlldbUdQ_0\tcow\nIFvO1O-6vqk_0\ttruck\nIHQvg9gYLjw_0\tdog\nIHSCfRs-J38_2\tskateboard\nIHY0eeHfBcY_4\ttruck\nIHjI35oW0T4_0\tcar\nIHxX0fKU9iM_1\tskateboard\nIH3E7RS6Hn8_0\tcat\nIH9BmEg26Cw_0\tperson\nIIBN7FGNNEs_1\ttrain\nIIBN7FGNNEs_2\ttrain\nIIBN7FGNNEs_3\ttrain\nIIBN7FGNNEs_4\ttrain\nIINTapIzzes_2\tskateboard\nIIw0KKAeBeQ_0\tskateboard\nII0JbbQq-Sg_1\tbird\nII61z65eDCY_2\tcow\nII61z65eDCY_0\tcow\nII94vSsb4Uc_0\tcar\nII_okDlDaO0_0\tcat\ngUt0vA8_1Ow_0\tairplane\ngUvZ3RC9tEU_0\tknife\ngU3SNUS1_ng_0\tbicycle\ngU4mBoB-b7k_1\ttrain\ngVAp7rt84ic_2\tbicycle\ngVCrRXledlU_1\tboat\ngVCrRXledlU_0\tboat\ngVV-5JdLuXk_3\tcar\ngVXzT_h1SFI_3\thorse\ngVXzT_h1SFI_4\thorse\ngVXzT_h1SFI_2\thorse\ngVaB7hwBhTA_0\tcat\ngVjL5txcFMI_0\tknife\ngVrTFXdPWJ8_0\telephant\ngVxqk8tLXL8_0\ttruck\ngV27xS9pqNQ_0\ttrain\ngV3Xmwy3RKo_6\ttrain\ngV3Xmwy3RKo_13\ttrain\ngV9A5NfFexQ_0\tcar\ngWcacGgcxYU_4\tbear\ngWlmYVY4kW4_1\tbicycle\ngWnhQi-zfEE_0\tskateboard\ngWpNWuo7vio_2\telephant\ngWpNWuo7vio_3\telephant\ngWsOR7UiwDs_0\tairplane\ngWz5ZMzC58s_0\tcar\ngXBIzdmmHbA_1\tbird\ngXEHUZgPCGg_4\tbear\ngXFmghAzaVg_1\tmotorcycle\ngXGvO4k4xQY_0\ttruck\ngXHsyuynhso_2\tknife\ngXW33K91X7c_0\tbicycle\ngXn0Y5X5MJE_1\tzebra\ngXn0Y5X5MJE_0\tzebra\ngXt0u16Y6ZY_0\tboat\ngY_Ey8Ps_ZE_0\tcow\ngZhsGXSn5bU_0\tmotorcycle\ngZqGyIMgMbs_0\tbicycle\ngZxcxQBlx0s_0\tcat\ngZzmloffFW4_0\tbus\ngZ8kZt451Ww_3\thorse\ngZ92ZDty9wI_0\tskateboard\ngaCEAVQd1-M_1\tbird\ngaS7x3F3gpk_0\tbicycle\ngaS7x3F3gpk_1\tbicycle\ngaS7x3F3gpk_2\tbicycle\ngaS7x3F3gpk_3\tbicycle\ngalykATgRC0_0\tcow\ngaqS-4IaQ5c_2\tbus\ngbA3ItatxL8_0\tskateboard\ngbE0vzWpHj0_1\tknife\ngbE0vzWpHj0_4\tknife\ngbGl_-TnPjk_0\tbird\ngbI95ZXEUz0_0\tknife\ngbTTJah5oMw_0\telephant\ngbTTJah5oMw_2\telephant\ngbgbqiiEKVs_0\tgiraffe\ngcBaPcA_1_0_0\ttrain\ngcExbr9FO94_0\tgiraffe\ngcJ7XqXHPwM_0\telephant\ngcT_dy3neEk_8\tbicycle\ngcXhYL06Acs_5\tbicycle\ngcYBNx0fUg8_0\ttruck\ngchz9HDvVDk_0\ttrain\ngc80cGOHyKM_0\tknife\ngdCpPYwBVlY_0\tknife\ngdEBkAYaDPw_1\telephant\ngdELg0NrkdA_0\tdog\ngdvUXfsBMIk_0\ttrain\ngdzzJI7xjBg_0\ttrain\ngdzzJI7xjBg_1\ttrain\ngd2O-Z5dOIk_0\tairplane\ngd4r5aA8jeg_0\tbird\ngd4r5aA8jeg_1\tbird\ngeBwGOC-lX4_0\ttrain\ngeBwGOC-lX4_1\ttrain\ngeBwGOC-lX4_2\ttrain\ngeBwGOC-lX4_3\ttrain\ngeQCe6Cq5MU_1\telephant\ngeQCe6Cq5MU_2\telephant\ngeWChvEotKU_0\ttrain\ngefGPLN-abw_0\tperson\ngfGsOzQ7gto_0\tbear\ngfS7FJH6Vkk_0\tbear\ngfUC20NWtjU_0\tmotorcycle\ngfVlQhN0BBU_0\tbicycle\ngfuVNdXffSs_0\tairplane\ngf1mvdt9kbI_0\thorse\nggIyqAThI1g_0\tbird\nggPHtWoCcKs_3\tumbrella\nggTFLaNIJck_0\ttrain\nggVLptkmsys_0\ttruck\nggpz03j1REI_0\tbus\ngg3sG7O2P-g_0\tbus\nghEfyxUaVGs_1\tcat\nghIGC_DOfuk_0\thorse\nghqqgJWnVEU_0\tknife\nghyp-SKVuC8_0\tmotorcycle\ngiVGzMF1Yo4_0\tskateboard\ngiVGzMF1Yo4_1\tskateboard\ngipHWMPB-W4_3\tbear\ngipHWMPB-W4_1\tbear\ngitOEvGnoYk_0\tairplane\ngi9bnW7uLkE_0\tcat\ngjGlUXCT9A4_1\tknife\ngjK5A6cIEnw_0\tdog\ngjRhqzTAkWw_0\tcow\nIJFaomtLVDE_0\tcat\nIJNUwvacbKY_0\tcow\nIJVUMGoBSQs_4\tcow\nIJXVtb2GeJ4_0\ttrain\nIJdYiBYP31A_0\tmotorcycle\nIJlBmhH72m4_1\tcow\nIJ6g4ZRBksE_0\tcat\nIKLj0LJIMKs_4\tairplane\nIKLj0LJIMKs_5\tairplane\nIKLj0LJIMKs_2\tairplane\nIKftyV_zwkE_0\tskateboard\nIKqmWAu3GF0_0\tdog\nIK7Mnvty4VY_0\tperson\nIK8IJWsxg3M_5\tairplane\nIK8IJWsxg3M_6\tairplane\nILAGhYr9yts_1\tmotorcycle\nILLYlwlFTzA_0\telephant\nILmTjHZqkCo_1\ttruck\nILqxie6aqXg_0\tbicycle\nILqxie6aqXg_1\tbicycle\nILqxie6aqXg_2\tbicycle\nIL1HokSKOyY_0\tcat\nIL9r35lU8So_0\tskateboard\nIMD3U_DzO3E_0\tmotorcycle\nIMD3U_DzO3E_1\tmotorcycle\nIMde-053G78_0\thorse\nIMulJdQXZvM_0\ttrain\nIM7vwh5qua4_0\tcow\nIM8dlwNTjXU_0\tcow\nIM8v82x7ovA_2\ttrain\nIM8v82x7ovA_1\ttrain\nINFs2lfikXE_1\tknife\nINULdzdrdys_0\thorse\nINXkuJ9WvIU_0\ttrain\nINZhGblywrk_0\tbus\nINkhg9y4asY_0\tbear\nINtj4nfjRA0_1\tbear\nIN2TGHJrQEg_2\tskateboard\nIN2TGHJrQEg_0\tskateboard\nIN2TGHJrQEg_1\tskateboard\nIOPYEZzmeqg_0\tcar\nIOPYEZzmeqg_1\tcar\nIOQuWawPM3k_0\tbird\nIOfUvlEkN7g_0\tbus\nIOiqrNof90k_1\tknife\nIO3Z-ebx_f8_5\tbus\nIPI2_GXx1tI_0\tbird\nIPWixEFBDOY_0\thorse\nIPfYf-nFKic_0\tairplane\nIPfYf-nFKic_1\tairplane\nIP1CH8MMir0_0\tknife\nIQOfCy4FW8w_0\tskateboard\nIQXAYnslAnc_0\tcar\nIQoVuUTZILY_0\tairplane\nIQsV_hTCyMA_1\tbicycle\nIQwk7Ge6Apk_0\ttruck\nIRK6-ixyaVI_0\telephant\nIRSbjN-mnJI_0\tskateboard\nIRZBnQJoKiU_0\tskateboard\nIRztQZ4bigY_0\tcar\nIR9A3u83crI_4\telephant\nIR-PGdIPgcE_0\tskateboard\nISAnMprDgCk_0\tskateboard\nISJW4GuahWg_2\tdog\nISSTEs8xDWk_0\tumbrella\nISYwpUKxHJU_1\telephant\nISYwpUKxHJU_2\telephant\nISYwpUKxHJU_0\telephant\nISud5E9hZxU_0\ttrain\nISud5E9hZxU_1\ttrain\nIS9s3kJzTcA_0\tairplane\nITCcMWC_RW8_0\tumbrella\nITbwhPVxFv0_0\tumbrella\nITrisbHlaJw_1\ttruck\nITzBy7T7_fI_1\tumbrella\nIT6TArZww6A_0\tcat\nIT8VqGbdH_A_0\thorse\nIT_zQ44PPOo_0\tdog\nIUH4PYmObvU_0\tdog\nIUO1sDZgGHs_0\tbird\nIUdyfRMOyX8_0\telephant\nIUdyfRMOyX8_8\telephant\nIUdyfRMOyX8_1\telephant\nIUdyfRMOyX8_2\telephant\nIUdyfRMOyX8_3\telephant\nIUdyfRMOyX8_4\telephant\nIUdyfRMOyX8_5\telephant\nIUdyfRMOyX8_6\telephant\nIUdyfRMOyX8_7\telephant\nIUf7a2WuoBw_0\ttrain\nIUgkMOA3siY_1\tbus\nIUlDlS2KD-k_0\tbicycle\nIUlDlS2KD-k_1\tbicycle\nIUzpvnXep7M_0\tbear\nIU7x7I53cng_0\telephant\nIVFq204Rr9c_0\tairplane\nIVHx3I13xdQ_0\tboat\nIVSJSu0PlsI_0\ttrain\nIVVFeaTw6IE_0\tbicycle\nIVjCZS2Fo7k_0\tbird\nIVpmCnL5cE8_1\tgiraffe\nIVrBPzhFMi8_1\tmotorcycle\nIVrBPzhFMi8_2\tmotorcycle\nIVzxeeJEtiY_1\tbear\nIV6EMw4XYco_0\tskateboard\nIV6EMw4XYco_1\tskateboard\nIWCZ1PDW99k_0\tmotorcycle\nIWVIIKxipc8_0\tmotorcycle\nIWVIIKxipc8_1\tmotorcycle\nIWn16DCfLbc_1\tknife\nIWumeAEXWVo_1\tboat\nIWu47p4l06Y_5\tumbrella\nIWu47p4l06Y_6\tumbrella\nIWu47p4l06Y_3\tumbrella\nIWu47p4l06Y_4\tumbrella\nIW1cFMDjPUk_0\tbear\nIW2mFJ8iw6Y_0\tbird\nIW4ZnmQeNtA_1\telephant\nIW4g0kfA3GE_0\ttruck\nIW5Vgh3SE-I_4\telephant\nIW7TwQ-hY7I_0\tmotorcycle\nIW7TwQ-hY7I_1\tmotorcycle\nIXTgztKfRQU_0\tskateboard\nIXVCCLG3_cw_0\tbird\nIXyV2vpIEA8_0\tdog\nIXyV2vpIEA8_2\tdog\ngja4H3sGrqQ_0\tcar\ngjdlZhmnGbk_0\tairplane\ngjfdI7hO92E_0\tbird\ngjquLAxFRWw_2\tumbrella\ngjx4xu1TyWU_1\tcow\ngj7W2zjQApw_3\tknife\ngkEoTLpAw7g_0\tairplane\ngkLRnt1OCH4_7\thorse\ngkRqNmGQbPI_0\tskateboard\ngkXKCuc0Moc_0\tskateboard\ngkXKCuc0Moc_1\tskateboard\ngkb4Ya5QW9M_0\tbird\ngkb4Ya5QW9M_1\tbird\ngkf0Bcsuhlc_1\tcar\ngkf0Bcsuhlc_3\tcar\ngkf0Bcsuhlc_4\tcar\ngkiUpdrObXo_1\telephant\ngkz49y5qcvc_0\thorse\ngkz-LCZcGtc_5\tbird\ngk1x_qYyDl4_0\tcat\nglNWqIolkq8_0\tskateboard\nglOskJOtnTU_0\tknife\nglOskJOtnTU_2\tknife\nglSdaND81E8_0\tperson\ngltHxIp_ma8_0\tbird\ngmCT9tUPTB4_1\tgiraffe\ngmdxOMQMgnw_0\tairplane\ngmnvPoB2cNY_0\tmotorcycle\ngm53_sbr85Q_1\tbird\ngm53_sbr85Q_2\tbird\ngm9M-m4mCZ4_0\tcar\ngm9M-m4mCZ4_2\tcar\ngnA9QVNkmTU_1\tknife\ngnD6mU9A2oo_0\telephant\ngnEttGTQqQ4_1\ttrain\ngnEttGTQqQ4_0\ttrain\ngnF9YJM1jaE_1\tcow\ngnGvXHS4UDs_0\tairplane\ngnM9SRiFh7M_0\ttruck\ngnM9SRiFh7M_1\ttruck\ngnPrHGB85WY_0\tbus\ngnTj3krZROI_4\tboat\ngnVo44q-XDI_0\tknife\ngnb1N_MLdcY_2\telephant\ngnwCzU63_YY_0\tperson\ngn2XuCFK-hE_0\ttruck\ngn2bME2rmGw_0\ttruck\ngoIfg0C9kmM_0\tdog\ngoOIZE0j6DM_0\tbicycle\ngoSyNORcJ00_0\tairplane\ngok9kHQ77dY_0\tskateboard\ngollBTymf8I_1\tbus\ngomnpeJd5zw_0\tboat\ngonzAOezSOQ_1\ttrain\ngonzAOezSOQ_2\ttrain\ngosq350N9dI_2\tskateboard\ngoyIWrU1Lbo_0\tcat\ngpBoXY6MM5E_0\tdog\ngpEiPRMcPwo_4\tbear\ngpY-o8xPA3w_0\tbicycle\ngpa4WfWCLa0_1\telephant\ngpa4WfWCLa0_0\telephant\ngpa9p4XNeKc_3\tbear\ngpbdiDEPd-s_0\tskateboard\ngpjqG97-SyQ_0\thorse\ngpmdLMUX53k_0\tbear\ngp2SDJHMADo_3\thorse\ngp2SDJHMADo_0\thorse\ngp2SDJHMADo_2\thorse\ngp9q0jvTKo0_0\tbird\ngqNgT7LxZSQ_1\tbus\ngqOfm9XTr6M_3\tairplane\ngqOfm9XTr6M_0\tairplane\ngqOfm9XTr6M_1\tairplane\ngqOfm9XTr6M_2\tairplane\ngqbDkeOx0mA_0\tmotorcycle\ngqgQpw4DWZA_0\tgiraffe\ngqhweewmNn8_0\tskateboard\ngqkLzCkKKtE_0\tskateboard\ngqucExXpPys_0\tcar\ngqxvRzuWcrI_0\tbird\ngrBVFo1wSjs_1\tbird\ngrFPTYaKb7Q_0\tbus\ngrI0uf6IwBw_0\tbear\ngrNkPqf-ySE_0\tdog\ngrWw42izM6M_1\ttrain\ngrWw42izM6M_2\ttrain\ngrWw42izM6M_0\ttrain\ngrbP7mKMX_A_5\tairplane\ngrbP7mKMX_A_1\tairplane\ngrbP7mKMX_A_4\tairplane\ngrdEE264TwM_0\tmotorcycle\ngrdIYaNewv0_0\tmotorcycle\ngrhIgcHgpOw_0\tbus\ngsCvhqZCWX0_0\tdog\ngsUrGSN-k00_0\thorse\ngsbJ13WiSvE_1\thorse\ngsfIYIQ1siA_0\tskateboard\ngsvn88OsH_8_3\tknife\ngsv7RJk7dtY_0\tdog\ngs_C12A8Wq4_1\tbicycle\ngtFIMtVrAGk_0\tbicycle\ngtNJSexRjxE_0\tcar\ngtNdVTTd0tg_0\tbicycle\ngtNdVTTd0tg_2\tbicycle\ngtOa6rSatLA_0\tcow\ngtQ_uFTKEck_1\thorse\ngtii5vwjSTY_1\tdog\ngtuj1cOmYSs_1\ttrain\ngtuj1cOmYSs_3\ttrain\ngtz5ClHTSVo_0\tcat\ngtz5ClHTSVo_1\tcat\ngt_WHCkauOA_1\tknife\nguVl_gp0sJE_0\tbus\ngugP5f2JRJ0_1\tbear\ngugP5f2JRJ0_0\tbear\nguh1OUkdIGE_0\thorse\nguktzkv1els_0\tboat\nguv5reh2NH4_0\tboat\nguxRXiegac0_4\tbird\ngvNxDnFriAI_0\tskateboard\ngvcioONBIcE_0\ttrain\ngviQTbs7dIk_1\tbird\ngvjcggbLXRo_0\telephant\ngvjcggbLXRo_1\telephant\ngvjcggbLXRo_2\telephant\ngvk0hzlYu9E_0\tumbrella\ngvraCN0RYko_0\tdog\ngvtY3fwbgdc_0\tcow\ngvuBfR3HXac_0\telephant\ngv4sQFTuJ-k_0\telephant\ngv7qY66lOhs_0\tgiraffe\ngv8pF9t1zYM_0\telephant\ngwKq56_M6Kc_0\thorse\ngwN_p_IRuoo_0\thorse\ngwP-6gOPn2c_0\tmotorcycle\ngwTc-69C_P4_0\tknife\ngwTyjJwBgRk_0\thorse\ngwy7eePYryM_1\tboat\ngw9MjutMhLs_1\tairplane\ngw9MjutMhLs_3\tairplane\ngw9MjutMhLs_0\tairplane\ngw9MjutMhLs_2\tairplane\ngxKnyBP8_cs_0\telephant\ngxejG9D0guY_1\tperson\ngxgZg6BU3ds_0\tdog\ngxgZg6BU3ds_1\tdog\nIX4HjI_9vLY_2\tdog\nIX4IwgbTdCk_0\tdog\nIYBF45M9nTc_0\tskateboard\nIYBzvotFEYo_0\tmotorcycle\nIYZZ-K_Ygpo_0\tbicycle\nIYdXz1cOCWc_0\tgiraffe\nIYukRQKxhFI_0\tperson\nIYukRQKxhFI_1\tmotorcycle\nIZESZPVT0zk_3\tbear\nIZGady38Nh8_0\tbird\nIZIPpBl_h0Q_5\ttruck\nIZIPpBl_h0Q_0\ttruck\nIZIPpBl_h0Q_6\ttruck\nIZJ1PO3Fkuw_0\tumbrella\nIZLMXYU4A-0_0\tairplane\nIZLMXYU4A-0_2\tairplane\nIZTfd31H0AI_0\tbicycle\nIZUO1x0QT1I_1\telephant\nIZ2nFUgP-Pw_1\telephant\nIZ2nFUgP-Pw_5\telephant\nIZ2nFUgP-Pw_6\telephant\nIZ2nFUgP-Pw_3\telephant\nIZ2nFUgP-Pw_4\telephant\nIaAPZOFgclo_1\telephant\nIaG7siKVlak_0\tgiraffe\nIaxZJVx5ptw_0\ttruck\nIaxZJVx5ptw_1\ttruck\nIaxZJVx5ptw_2\ttruck\nIaxZJVx5ptw_3\ttruck\nIa0DjYXcBWc_8\telephant\nIa0DjYXcBWc_4\telephant\nIa0DjYXcBWc_5\telephant\nIa0DjYXcBWc_6\telephant\nIa0DjYXcBWc_9\telephant\nIa0DjYXcBWc_10\telephant\nIa0DjYXcBWc_11\telephant\nIa0DjYXcBWc_12\telephant\nIa0DjYXcBWc_13\telephant\nIa0DjYXcBWc_14\telephant\nIa0DjYXcBWc_16\telephant\nIa0DjYXcBWc_18\telephant\nIa0DjYXcBWc_19\telephant\nIbEpwiOUFEI_0\tdog\nIb15GlTvqTQ_2\tskateboard\nIb2u6u-j2vk_0\tskateboard\nIcEs4vbIcDM_0\tumbrella\nIcSumCpVOy0_0\tskateboard\nIcZ2D-MawSg_0\ttruck\nIciJuq7ZY6o_0\telephant\nIckUkdfRndY_1\tknife\nIc1cufihs-0_0\telephant\nIc1cufihs-0_1\telephant\nIdSlvHXTrmE_1\tskateboard\nIdXPNOQD97w_0\tmotorcycle\nIdabN3kTjSk_0\tskateboard\nIdrTVVio1U4_0\tdog\nIdvQme2elLk_1\ttruck\nIdvQme2elLk_2\ttruck\nIdvQme2elLk_3\ttruck\nId6HsaEvZ0k_0\tperson\nIeB4Nf3h7T4_0\tbus\nIeENvG3Qtk0_5\telephant\nIeFUkGY1b4Y_4\telephant\nIeXb8CHr4ms_0\ttrain\nIefPtlA5ebA_0\tmotorcycle\nIehTemq8EYc_27\tbicycle\nIehTemq8EYc_28\tbicycle\nIehTemq8EYc_0\tbicycle\nIehTemq8EYc_6\tbicycle\nIehTemq8EYc_11\tbicycle\nIehTemq8EYc_15\tbicycle\nIehTemq8EYc_17\tbicycle\nIehTemq8EYc_19\tbicycle\nIejh8w6egIA_0\tumbrella\nIek9nAfsymA_0\tbus\nIewJcdqOzCY_0\ttrain\nIewJcdqOzCY_1\ttrain\nIe4Ct_HRDNw_1\tdog\nIe5lfGQndBs_0\tairplane\nIe8dc7EO7VI_0\tbicycle\nIe8dc7EO7VI_1\tbicycle\nIe8dc7EO7VI_2\tbicycle\nIfBft2ltqqE_0\tskateboard\nIfBft2ltqqE_1\tskateboard\nIfFnkz6EUno_1\thorse\nIfGZXa16ZnQ_0\tknife\nIfTrYE-Ox50_0\tcat\nIfZDLHBP_qk_0\tbus\nIfpbe7xlKp4_0\ttruck\nIf4WPZY4LIY_0\telephant\nIf8EotoXQVQ_1\ttruck\nIgO9_kN8D5I_0\tcat\nIgRs6nmhv2w_0\tcat\nIge9Idj8fDw_3\tcow\nIge9Idj8fDw_2\tcow\nIg0Luv6UlkE_1\tbicycle\nIg1JdzucmLI_0\tboat\nIg9jZPM0n2A_0\tcar\nIhR6ePM1wRw_0\tbird\nIhXAXy3VAqA_0\tcat\nIhdGvFfk3Ks_0\tbird\nIhlRPxknT9E_1\tmotorcycle\nIhp3YZGcRjM_0\thorse\nIhp3YZGcRjM_1\thorse\nIhsr3gT-u00_0\tcow\nIiBzrow5m9w_0\tcat\nIiH0f7VOXTY_4\tairplane\nIiH0f7VOXTY_2\tairplane\nIiH0f7VOXTY_3\tairplane\nIie6uM_sdLE_2\ttruck\nIie6uM_sdLE_5\ttruck\nIiscR53FEz0_1\tairplane\nIiy_W2tIOWI_0\tboat\nIi9URMIXJjc_0\tdog\nIjHqTBt-tzY_0\thorse\nIjMLYR0bH6g_0\tcow\nIjf2ZMTxDUs_0\tcow\nIj57BoIbMws_0\ttrain\nIkOG3ZnCvY4_0\tcow\nIkVifrtYlcI_0\tskateboard\nIklc7ijgOtA_0\thorse\nIkl-nlqwUJA_2\ttrain\nIkqFTjEXf4g_0\tmotorcycle\nIkrKcORoFLI_0\tcat\nIk4UxtlIrw0_5\tairplane\nIk4UxtlIrw0_13\tairplane\nIlJT6oek8KQ_0\tdog\nIlNV-gFlp3Q_0\tumbrella\nIlshSY2CGU0_0\tcow\nIl1TKTSRPO4_0\ttrain\nIl7GtfxmBlQ_0\tskateboard\nImCV4d0kYxY_0\tskateboard\nImEKl15Aipo_2\tbear\nImOLHl6gwLE_0\tgiraffe\nImO7oG_YuSU_0\ttrain\ngyBWGyhFuWg_0\telephant\ngyBWGyhFuWg_1\telephant\ngyBWGyhFuWg_2\telephant\ngyBWGyhFuWg_4\telephant\ngyBWGyhFuWg_7\telephant\ngybSfaDRdVA_2\tairplane\ngy3zF39Y7B8_0\tairplane\ngzQrsNwx8MQ_1\ttruck\ngzTHA0tMocM_0\tbird\ngzUj7KfvRPY_0\ttrain\ngzVdw-5l3sY_5\tbear\ngzWwT4ufwFY_0\tbicycle\ngzwzd6nOPoI_3\tbear\ngz13nfjIblU_0\tskateboard\ng0Jq0uIY3i0_2\tknife\ng0LufqNJtss_1\telephant\ng0LufqNJtss_2\telephant\ng0SdZmm5Mm0_0\thorse\ng0W6U-p-T2c_0\thorse\ng0om0nrfC4w_5\tairplane\ng0om0nrfC4w_1\tairplane\ng0tXovGqqSE_0\tcow\ng0zcJWO1MbU_1\tairplane\ng02OQmAgfo4_0\ttrain\ng02OQmAgfo4_1\ttrain\ng04xUjb4z0w_0\tbicycle\ng05TJKB5TL0_0\telephant\ng05TJKB5TL0_1\telephant\ng05TJKB5TL0_2\telephant\ng1HtoWJ3NjA_0\tairplane\ng1UUBEfyzJ4_0\thorse\ng1UUBEfyzJ4_1\thorse\ng1ZtaoEqtjI_0\tbus\ng1j_9A4-PL4_0\tcow\ng1n74kWqKFM_0\ttruck\ng1vq3JO3eH0_0\tskateboard\ng12DCVqfKjM_0\tairplane\ng13JzTyNCPY_0\ttruck\ng17hrSF1YN8_1\tbear\ng2Hh_97o7jY_0\tperson\ng2KeNy_WECo_0\tbus\ng2MUK80Ht8k_0\thorse\ng2MUK80Ht8k_1\thorse\ng2MUK80Ht8k_2\thorse\ng2MUK80Ht8k_3\thorse\ng2MUK80Ht8k_4\thorse\ng2cCr0rRIeo_0\tmotorcycle\ng2vRpfpQuNE_1\tmotorcycle\ng2-SNBvYdNc_3\tcar\ng2-SNBvYdNc_2\tcar\ng3DAFznLlXw_0\telephant\ng3e6vDSvpN4_0\tskateboard\ng3g7M2Xv3JY_0\tzebra\ng3ytRwjgoMI_2\thorse\ng3ytRwjgoMI_3\thorse\ng30xOR9j3_A_0\tskateboard\ng30xOR9j3_A_1\tskateboard\ng38MDXW9ndc_0\telephant\ng4BX8_C-NeQ_1\tdog\ng4KzjuhixSo_0\tmotorcycle\ng4KzjuhixSo_1\tmotorcycle\ng4R5jZXlnl4_0\ttruck\ng5OKbEXlegI_0\tcow\ng5SIvfoi7tE_2\tbird\ng5S-76eh6vs_0\tcar\ng5ztjA03q5k_0\thorse\ng55_MKVNAE8_0\tmotorcycle\ng57hZ17etp8_0\tskateboard\ng5-55T7AzUE_1\tskateboard\ng7Qk-cV3IFs_1\tcar\ng7YvJasRFj0_0\tskateboard\ng7fZhFRdYJs_3\tzebra\ng7oMLF6ZfT8_0\thorse\ng7oMLF6ZfT8_1\thorse\ng8aScpqmhVU_0\tumbrella\ng8iDSRkz_go_1\tboat\ng80ZYUNhRME_1\tdog\ng9Am-b3OqbI_0\ttruck\ng9RM9VSJPIY_0\tknife\ng9WrMIn5AkI_0\tskateboard\ng9sD-4RBa3Y_0\tmotorcycle\ng9uOEJm7wdw_0\telephant\ng9yESRreg5k_0\tboat\ng9zLmd4IZ78_0\tbus\ng91mK1sMiSI_1\telephant\ng9-6tclIBcc_0\tmotorcycle\ng-Dfzs3HQ8w_0\tboat\ng-EVS_QxLxA_0\thorse\ng-F4Eig_Rxc_0\tmotorcycle\ng-F4Eig_Rxc_2\tmotorcycle\ng-F4Eig_Rxc_1\tmotorcycle\ng-JTM0dCFFA_0\tcow\ng-SJXmYYHqI_0\ttruck\ng-SlOveVnAs_0\tcow\ng-Z7CA3qr1A_0\tskateboard\ng_B2r70EsjY_2\thorse\ng_XW0YLzND0_0\tmotorcycle\ng_XW0YLzND0_1\tmotorcycle\ng_XW0YLzND0_2\tmotorcycle\ng_dN59QhubM_0\tperson\ng_jq8Uy4P2s_0\ttruck\nhAHsYyTOJoI_0\tcow\nhAIBcR5MAVE_0\tboat\nhAUD4Cy2GiM_0\tcow\nhAUD4Cy2GiM_6\tcow\nhAUD4Cy2GiM_1\tcow\nhAUD4Cy2GiM_3\tcow\nhAUD4Cy2GiM_4\tcow\nhAUD4Cy2GiM_5\tcow\nhAVbFSsRfOY_0\tairplane\nhAcx9u12Rd0_1\tcat\nImZcOQCdJng_0\tskateboard\nImiKNikVSsM_0\thorse\nImqKWexMOEA_0\tbird\nImuhe4E1pxo_0\tcar\nImy4SpqoC4k_0\tcat\nIm3ooIguQHk_4\ttrain\nIm3ooIguQHk_5\ttrain\nIm3ooIguQHk_6\ttrain\nIm3ooIguQHk_0\ttrain\nInEZSi4Zz08_4\ttrain\nInEZSi4Zz08_1\ttrain\nInEZSi4Zz08_2\ttrain\nInTq6s23Ygc_0\tcat\nInn1lo0hbX0_0\ttrain\nInvv-JPzV-0_0\telephant\nIn_dBFPRoso_1\tairplane\nIobdPoAtEB0_0\tbear\nIoqRCAQzibw_1\tskateboard\nIoqRrAswOwY_5\tbear\nIoqRrAswOwY_4\tbear\nIo5wOOkpkdE_0\tskateboard\nIpOFHasyloc_0\tcat\nIpQQ9QabgiU_0\tbear\nIpVCKTRou10_1\ttruck\nIpVCKTRou10_3\ttruck\nIpVCKTRou10_4\ttruck\nIpYZmcVrqdQ_0\tcow\nIpnTUQCHioc_0\tgiraffe\nIp0c_3xCHRA_2\thorse\nIp-N_PYIqhA_0\tmotorcycle\nIqv9963BN8w_0\tcat\nIrAxUS0aBTQ_0\tbird\nIrDY9nE1V2I_1\tmotorcycle\nIr4CkmTmSXQ_0\tcow\nIsSCjgdAQiE_0\tdog\nIslqPZDUBHI_0\tmotorcycle\nIssSzh7Z-vo_0\tumbrella\nIsxRqs7KcbQ_0\tcat\nIs2E8gFNBWo_4\tbear\nIs2E8gFNBWo_1\tbear\nItL-C-szpU8_0\ttruck\nItiAXqRQm3A_1\tknife\nItkxwET4PNc_0\tdog\nItzhXkBVmEY_0\tcar\nItzlBA8cl3c_2\tairplane\nIt_dJluX63g_0\tcat\nIuN_risviek_0\tgiraffe\nIuZ6JD-k2nM_0\tdog\nIuk4W5KJbQ8_0\tbus\nIuwJz5d-8J4_0\tumbrella\nIuw0f-Y8t6I_0\tairplane\nIuw0f-Y8t6I_1\tairplane\nIu26NyEUoGY_2\tboat\nIu5GqI9oVnk_0\tmotorcycle\nIvJLhgaveaw_0\tskateboard\nIvMiQ2e-5hQ_0\tbus\nIvMiQ2e-5hQ_1\tbus\nIvX1MeQN-e0_0\tcat\nIvZSk33MtAc_0\tmotorcycle\nIvZqPTK9DEQ_0\tmotorcycle\nIvZqPTK9DEQ_4\tmotorcycle\nIvZqPTK9DEQ_3\tmotorcycle\nIvfWyYn_ifg_0\telephant\nIvjNeTpV6hs_0\thorse\nIvyftS2bPuo_10\tairplane\nIvyftS2bPuo_0\tairplane\nIvyftS2bPuo_2\tairplane\nIvyftS2bPuo_6\tairplane\nIvyftS2bPuo_7\tairplane\nIvyftS2bPuo_9\tairplane\nIwcC1J_ImAs_0\tcar\nIwd7i4kvS5c_0\tcar\nIwfpNUPSvpw_0\tmotorcycle\nIwgX5DfmIQo_0\tbicycle\nIwhf27USDD4_0\tmotorcycle\nIwmwVP_e5Ag_0\tbus\nIwxmbUX4fcg_0\tcow\nIw6-0LYvEmQ_0\tbird\nIw6-0LYvEmQ_1\tbird\nIw7zBsW9W5Y_0\ttrain\nIxLbLqfxrhg_1\tboat\nIxNA0hdkWGg_0\tcow\nIxObyCZ6OfY_4\tgiraffe\nIx8eS24W75g_4\tairplane\nIx8eS24W75g_5\tairplane\nIx8eS24W75g_0\tairplane\nIx8eS24W75g_1\tairplane\nIx8eS24W75g_2\tairplane\nIx8eS24W75g_3\tairplane\nIyNmzxdv8-Q_0\tbird\nIyQlh0wdd9I_8\tboat\nIyQlh0wdd9I_7\tboat\nIyU3NizvZuM_0\thorse\nIyU3NizvZuM_5\thorse\nIyj9D6cwI5o_0\tbicycle\nIyk9-k1RP-M_0\tcar\nIyk9-k1RP-M_1\tcar\nIyk9-k1RP-M_2\tcar\nIys_rL0bPcc_4\tboat\nIy4SrujSLuQ_1\telephant\nIy4SrujSLuQ_5\telephant\nIy4SrujSLuQ_6\telephant\nIy4SrujSLuQ_3\telephant\nIzC8vjFriRE_0\thorse\nIzPS29ghTxo_0\tknife\nIzQjjBqimYw_5\telephant\nIzQjjBqimYw_10\telephant\nIzQjjBqimYw_11\telephant\nIzQjjBqimYw_0\telephant\nIzQjjBqimYw_1\telephant\nIzQjjBqimYw_2\telephant\nIzQjjBqimYw_3\telephant\nIzQjjBqimYw_4\telephant\nIzQjjBqimYw_6\telephant\nIzQjjBqimYw_7\telephant\nIzQjjBqimYw_9\telephant\nIz4_9EtiVXc_0\tmotorcycle\nIz8cco4VLow_0\tcow\nIz8gKIZcfqo_0\tbear\nIz8uzZuBiXs_0\tbird\nI0eY-kKi2FM_0\tumbrella\nI0iEaW1Qg_o_1\tbear\nI0oVkr613Rw_0\tskateboard\nI0voLEPKkG8_0\thorse\nI0voLEPKkG8_1\thorse\nI0voLEPKkG8_2\thorse\nI0voLEPKkG8_3\thorse\nI0voLEPKkG8_4\thorse\nhAplCSSZqAs_0\tairplane\nhAplCSSZqAs_1\tairplane\nhAteY2rkmVg_8\tbus\nhAteY2rkmVg_1\tbus\nhAuFEp75jVo_0\ttrain\nhAzefhyFMN4_0\ttruck\nhAzsdnh5Iq8_0\telephant\nhA_YzyjSVZM_0\tbicycle\nhBDc0K6CvHg_0\tbus\nhBDvdp2RCCw_1\tairplane\nhBDvdp2RCCw_2\tairplane\nhBDvdp2RCCw_3\tairplane\nhBDvdp2RCCw_5\tairplane\nhBDvdp2RCCw_7\tairplane\nhBKuHV_S8lM_0\tskateboard\nhBOhA_sljfE_0\tumbrella\nhBcYx5Uc-vw_0\tcar\nhBcZZeXsCaw_0\tbicycle\nhBgxILtRUIc_0\tcat\nhB23PCerELA_0\tskateboard\nhB-M9w3C_Tw_0\tboat\nhCB731pKdcg_1\ttrain\nhChqLLLAmF4_1\tbird\nhChqLLLAmF4_0\tbird\nhCkn4pJxSkk_0\tbear\nhCrrYhe3x9Q_0\ttrain\nhCsCAXkiQ4Y_2\ttrain\nhCynNRrrTKI_0\tcow\nhC5Wac-AzgM_1\telephant\nhC5Wac-AzgM_2\telephant\nhC5Wac-AzgM_3\telephant\nhC5augWtBcQ_1\tbicycle\nhDAv3aPvZjc_1\ttruck\nhDLAKS4hCfc_0\tcar\nhDM4sCvlRoA_1\tairplane\nhDVx_yYysaA_0\tcow\nhDXpSU7bq44_0\tbicycle\nhDYV-Vz3xwA_1\tdog\nhEAQZIsaIew_1\ttrain\nhERCXzHI2nA_1\telephant\nhERyFpl4aDk_0\tdog\nhEWJZ4dCcIY_2\tcow\nhEZt4InN7Eo_0\telephant\nhEZt4InN7Eo_1\telephant\nhEZt4InN7Eo_2\telephant\nhEdpC8HEa-A_0\tmotorcycle\nhE04tUrJzXo_0\ttruck\nhE7N0N5vik0_0\tbird\nhE7N0N5vik0_1\tbird\nhE-VIrAVcBA_2\tbus\nhFFrC0_rJYA_0\tairplane\nhFTTcrUxPeg_0\tcow\nhFTTcrUxPeg_3\tcow\nhFdi9yxVkys_0\tmotorcycle\nhFdi9yxVkys_1\tmotorcycle\nhFixbos35O4_0\ttruck\nhFnKIVp-Dcc_0\tcow\nhFnKIVp-Dcc_1\tcow\nhFzR4bgxihU_0\tbicycle\nhGH72iljdzU_0\tbear\nhGRdOlSIQRU_1\ttrain\nhGRdOlSIQRU_2\ttrain\nhGRdOlSIQRU_0\ttrain\nhGiCVP3Z8l0_0\tumbrella\nhG6vW_xUZgA_0\ttrain\nhG6vW_xUZgA_1\ttrain\nhG959XPTh_8_0\tbear\nhG-quo0MZM8_0\telephant\nhG-quo0MZM8_1\telephant\nhHEIEEdrXYE_0\tcow\nhHIyy4Vda6M_0\tcat\nhHjzciM78AA_0\tcow\nhHtOM5_wiWM_0\ttruck\nhHtqPiAg32Q_0\tumbrella\nhH_akvS98jo_0\tskateboard\nhIH6LuoXbpE_0\tcat\nhIXTbG6ho4E_0\tperson\nhIXTbG6ho4E_1\tperson\nhIXTbG6ho4E_2\tperson\nhIz3ONvP-Bo_0\tzebra\nhI3P4BxIr-o_0\tbear\nhI3eGFKYRuc_1\thorse\nhJP8qg-kSZA_0\tcow\nhJTl4NJ0qIs_0\tperson\nhJhBQsD0_hw_0\tbus\nhJkgoq_T4Pk_0\ttrain\nhJmxsYAKHdc_0\tumbrella\nhJtloiw4D-M_0\tcar\nhJ_uvoDrzkI_0\tgiraffe\nhKJQH8VbGk4_0\tairplane\nhKJQH8VbGk4_1\tairplane\nhKYJZqP-44M_0\tairplane\nhKYJZqP-44M_1\tairplane\nhKgtNPTirdc_2\telephant\nhKgtNPTirdc_3\telephant\nhKlKPyuUYps_0\tbus\nhKtHZYDaoXA_1\ttrain\nhKtHZYDaoXA_2\ttrain\nhKtHZYDaoXA_3\ttrain\nhKtHZYDaoXA_0\ttrain\nhK6w0B1cu-I_0\tcow\nhK7VoN3cI74_0\tcat\nhLGnjjoilbo_0\tskateboard\nhLHaPstpghQ_0\tmotorcycle\nhLKzDOp8XLc_1\tzebra\nhLNcuJAwfDo_0\tcow\nhLVZsqfElxI_0\tdog\nhLX1LeVKgi8_0\tcat\nhLjDO37EQ60_2\tdog\nhLjDO37EQ60_1\tdog\nhLscdjfkeho_0\tcow\nhLte0Y4VWR0_0\tknife\nhL_QAgWBkJ4_0\tcow\nhL_noZA6D8E_0\ttruck\nhMGVdq71lME_1\thorse\nhMLkMrqUtA0_0\thorse\nhMRIDt-1dY4_0\ttrain\nhMgp2oyTB80_0\tcow\nhMjke9g_Ysw_0\thorse\nhMuO0MHPIOQ_0\telephant\nhMuO0MHPIOQ_1\telephant\nhMusKbJqZDY_0\tskateboard\nhNHGh8N1XGg_0\tknife\nhN_-56Oxma0_0\tdog\nhOJJ65CVNuM_0\tbird\nhOOwQSSrFVc_1\tcow\nhOid-qo2Ozw_0\tcow\nhOky3qIMxRY_0\tskateboard\nhOpJoO7UciM_1\tbicycle\nhOrAXl-jATo_0\tairplane\nhOxMkI1d3oc_1\tairplane\nhOxMkI1d3oc_3\tairplane\nhOxMkI1d3oc_4\tairplane\nhOxMkI1d3oc_6\tairplane\nhOxMkI1d3oc_7\tairplane\nhOxMkI1d3oc_9\tairplane\nhPEsz5u87CI_0\tbus\nhPIDFIwLI8c_0\tcar\nhPWhKQfDoXg_0\tairplane\nhPWhKQfDoXg_1\tairplane\nhPW2NpCU668_2\telephant\nhPW2NpCU668_0\telephant\nhPW2NpCU668_3\telephant\nhPW2NpCU668_5\telephant\nhPW2NpCU668_6\telephant\nhPW2NpCU668_7\telephant\nhPW2NpCU668_8\telephant\nhPa5hUze91s_0\telephant\nhPa5hUze91s_1\telephant\nhPb_Rq2yKRA_0\tcow\nhPo5Wd-otbY_0\tdog\nI0yz1LGLl08_0\telephant\nI1Ejpa2UWSk_1\tbird\nI1Pdo-p11tI_0\tmotorcycle\nI1Quuhyu2UI_1\tmotorcycle\nI1YfOiyQW_8_0\ttruck\nI1wfW86V8So_0\tdog\nI1wfW86V8So_2\tdog\nI14JWDgkllE_0\ttruck\nI14JWDgkllE_1\ttruck\nI19kQsgjFRA_0\tbicycle\nI2IfiPw2aKE_0\telephant\nI2OQlELjXvU_1\ttruck\nI2OQlELjXvU_2\ttruck\nI2OQlELjXvU_3\ttruck\nI2hmFe1pYes_0\thorse\nI2o_4OyrJlI_0\thorse\nI3DSZk-7nG8_0\ttrain\nI3JCCqGY3c8_0\ttruck\nI3KJj6GQ5QE_0\tcat\nI3OWw4AK0MI_0\tdog\nI330kG5lk5A_0\tknife\nI3-xBh-IrIo_0\tairplane\nI3_lU2I_AaU_0\tbicycle\nI4BMptNse7c_1\ttrain\nI4BMptNse7c_0\ttrain\nI4CMNv-VRDo_0\tbird\nI4Gi7kq5XAs_0\thorse\nI4HuQ8DDxoM_0\tskateboard\nI4WNAfBvm5E_1\tskateboard\nI4z-3IGHMW4_0\tdog\nI5KNdt1NT8g_0\tskateboard\nI5QNP3-QHLw_0\tcow\nI5SA8N1JKwM_0\tcat\nI5WNgPfoaZQ_2\tmotorcycle\nI5pU9zWz4Fg_0\tmotorcycle\nI6fJWB7DpAM_0\tbus\nI6oT6dLeq7A_0\tmotorcycle\nI6wEvIOC-Pk_0\ttrain\nI7GbkWE2A0M_0\tbus\nI7aUrrDieE4_0\tcow\nI7bKlZxD6Fs_0\tbicycle\nI7xOURJQUps_0\ttrain\nI7xOURJQUps_1\ttrain\nI7x_od8h4iw_0\tcow\nI7-iLB-NVGg_0\tdog\nI8FoWQrnHGY_0\tbird\nI8Ms0rXjfXU_0\tskateboard\nI8Ms0rXjfXU_1\tskateboard\nI8Ms0rXjfXU_2\tskateboard\nI8Qx-qd0eLg_0\tboat\nI8Qx-qd0eLg_1\tboat\nI8UlumMtAG8_0\thorse\nI8Vr0DzHV9U_0\tcow\nI8rww3UUjYI_0\tperson\nI9AGRokco_M_0\ttrain\nI9FPkgdc-5E_1\tcow\nI9XcFcBW-HM_0\tmotorcycle\nI9oAq_x5pqg_0\tbus\nI9yrFs_JpWc_1\tskateboard\nI94qZUJmKP8_1\tbicycle\nI94qZUJmKP8_2\tbicycle\nI-SRTsDkhLM_0\tcow\nI-TshjRdh74_1\tknife\nI-blRAakQjM_0\tboat\nI-h3cTJlsRc_0\tdog\nI-nb60BTO_g_0\ttrain\nI-raj-aLy8s_8\thorse\nI-ywD5MDZZ4_3\tcow\nI-ywD5MDZZ4_4\tcow\nI_LhSNsRHMs_0\telephant\nI_kI39ZHymk_0\thorse\nJAEzOCIew2Q_0\tairplane\nJAEzOCIew2Q_1\tairplane\nJAb3p7VYLzI_0\tbear\nJAb3p7VYLzI_1\tbear\nJAcHxxzG1vA_0\tmotorcycle\nJAf3nC1hYS4_0\tdog\nJAp2_UJfFao_0\tperson\nJAqAH7n-3lA_0\tbus\nJAzD-VzDxfc_2\tbicycle\nJAzD-VzDxfc_4\tbicycle\nJAzD-VzDxfc_5\tbicycle\nJAzD-VzDxfc_8\tbicycle\nJAzD-VzDxfc_11\tbicycle\nJAzD-VzDxfc_13\tbicycle\nJAzD-VzDxfc_17\tbicycle\nJAzD-VzDxfc_18\tbicycle\nJAzD-VzDxfc_19\tbicycle\nJA2PLZmRABc_1\tumbrella\nJBGewEMeWIs_1\tdog\nJBGewEMeWIs_5\tdog\nJBKG_tl08RU_0\tcow\nJBMhOrDLcho_0\tcat\nJBYr3VbJLoM_0\tperson\nJBkymGnh5mA_1\tbicycle\nJBkymGnh5mA_2\tbicycle\nJBkymGnh5mA_3\tbicycle\nJBkymGnh5mA_4\tbicycle\nJBlCFCV4sdw_0\thorse\nJBlCFCV4sdw_1\thorse\nJBxFgwl0To8_0\tcow\nJB0SELYSRXA_1\tbear\nJB-hzl-gILo_2\ttruck\nJCIJbwBevro_2\tbird\nJCSRBZQpYCw_1\tbear\nJCSRBZQpYCw_5\tbear\nJCTYAwT6ppk_0\tmotorcycle\nJCTYAwT6ppk_1\tmotorcycle\nJCTYAwT6ppk_2\tmotorcycle\nJCciDn0O6X0_0\tairplane\nJChsfz-p2KI_0\tcat\nJCuE5X37xIE_3\tboat\nJCuE5X37xIE_4\tboat\nJDJWapHD_kM_0\tboat\nhP8Jfo1RaSk_0\telephant\nhP8Jfo1RaSk_1\telephant\nhP8Jfo1RaSk_2\telephant\nhQWcyTkfPeU_1\tdog\nhQZDg__nxQA_4\tbear\nhQZ5lNlAXBI_0\ttruck\nhQe3_1EvqIY_0\tcow\nhQfYabI9_ec_0\tbird\nhQkbXGwGwyg_0\tskateboard\nhQve0ugvy6s_0\tmotorcycle\nhRAbtgVJiWI_0\tbear\nhRJ0Qk_qdAY_0\tairplane\nhRS45wmOq9c_0\telephant\nhSR-ZVA-vMU_0\tdog\nhSWyYOzvh0g_0\tdog\nhSf3uEm8r9M_0\tbus\nhShwtMLieCc_0\tboat\nhSiozs1nz7o_1\tmotorcycle\nhSzgOCvRfq4_0\tbear\nhS-h8AUEibc_0\tcow\nhS-h8AUEibc_1\tcow\nhS-h8AUEibc_2\tcow\nhTHBMsKC5ZI_0\tcat\nhTZr7OF0VuY_5\tdog\nhUJMSp4rMrc_0\ttrain\nhU0EbblT2vQ_2\tairplane\nhU388mZGPGg_0\tcat\nhU9B31AVZNg_0\tbus\nhVJjOdU5-yQ_0\tcar\nhVNKN_qFEUA_0\tbicycle\nhVOImOLBY1g_0\tskateboard\nhVdb-Q3aJ9E_0\tdog\nhVhNOzZA40E_0\tcat\nhVnD8rlLRgM_0\tbird\nhVq6NOrBwlM_1\tmotorcycle\nhVsAAQqAHyI_1\tskateboard\nhWHUct-PLfY_1\tmotorcycle\nhWHUct-PLfY_0\tmotorcycle\nhWNyVxx4a94_0\tcat\nhWn0ddeHF0I_2\tzebra\nhXAQH1xVKB8_0\tcow\nhXWQ710-JZQ_0\tmotorcycle\nhXagj4A6N-s_1\telephant\nhXbMo03RQWk_0\ttrain\nhXflTk4WVAA_1\tbear\nhXf7dimd2bo_2\tcat\nhXhtGcCMf5Q_0\tairplane\nhXsCNMb3eTc_0\tbicycle\nhYD7HKMKa3k_0\telephant\nhYFW5XhMxyg_1\tknife\nhYIPy3eyC9k_0\tcat\nhYQBaiC8d6Y_0\thorse\nhYTIV5X87S4_0\thorse\nhYgzs0gDiiU_0\telephant\nhYkPL7spYMo_1\telephant\nhYlmhAuVVh8_0\tbird\nhYtFyx0799o_0\tboat\nhY0vkwEtjLM_1\tbear\nhZAOhuPJTho_0\thorse\nhZAXlQqCmCI_2\ttrain\nhZCGOP3PHOM_2\tknife\nhZHjTTvcQ88_2\tbicycle\nhZOhuOcxTP8_0\tskateboard\nhZPYHGzIYh0_0\tcow\nhZeekc0i_b8_0\tmotorcycle\nhZiXqP-WaQk_3\tbird\nhZiXqP-WaQk_0\tbird\nhZiXqP-WaQk_1\tbird\nhZiXqP-WaQk_2\tbird\nhZygBhv-nDg_0\tmotorcycle\nhaC0TZbvBEU_0\tcat\nhaMtzn-TnOQ_0\tboat\nhaTl-PeSssc_0\tdog\nhakWXvIYvzo_1\tdog\nhanKUxPHFbA_1\tcar\nhanKUxPHFbA_0\tcar\nhaxabA27SnU_0\thorse\nha3C2hPzaiw_0\tdog\nha8hX-68TqI_0\tbear\nha8hX-68TqI_2\tbear\nhbKjt5OBryI_0\ttruck\nhbKjt5OBryI_2\ttruck\nhbKjt5OBryI_1\ttruck\nhbfiyMHycSs_3\tknife\nhbvJ3t9lpUo_0\ttruck\nhcXtsyICD30_1\tskateboard\nhcpMT5qGQ0U_0\tbus\nhdZkNo0t6wg_0\tboat\nhdbKePdCemQ_0\tcow\nhdqiOcfXejc_1\tzebra\nhdwZF4C-vYs_0\tcow\nhd_yXL53Z9E_0\telephant\nheQRV9di86s_0\ttrain\nheTgOW6o1ho_0\tzebra\nhedgcDGNngs_0\tbicycle\nheucaATRtbI_0\tcat\nhe_j-GZdCNs_0\tperson\nhfCbKe627p0_0\tairplane\nhfEl_mnX9X4_0\tskateboard\nhfGEkaEADUw_0\tmotorcycle\nhfGEkaEADUw_1\tmotorcycle\nhfGEkaEADUw_2\tmotorcycle\nhfcKFLBuJ_g_1\tdog\nJDcAM9ieTp8_0\tbicycle\nJDe9ulv2Nmo_0\telephant\nJD_njBej6V0_0\ttruck\nJD_njBej6V0_2\ttruck\nJEU2rZzAxRU_0\tskateboard\nJEbIHUJTFsM_0\tairplane\nJEdl8GROiQM_0\ttruck\nJExlAUEYZwc_0\tcat\nJE8SV6FOlC0_0\ttruck\nJFH3n9kI6aA_0\tboat\nJFO_Qz1y8-s_4\telephant\nJFQ_GztsLs0_0\tcow\nJFQ_GztsLs0_3\tcow\nJFZG_ebR2mk_0\telephant\nJFZpmduYfv4_0\tmotorcycle\nJFfYNQ2FmHU_0\tcow\nJFk4Qyn58CY_0\ttrain\nJFvQ7wc6c0o_0\tairplane\nJGDf9kSc-v4_13\tdog\nJGDf9kSc-v4_15\tdog\nJGDf9kSc-v4_17\tdog\nJGDf9kSc-v4_19\tdog\nJGDf9kSc-v4_1\tdog\nJGDf9kSc-v4_2\tdog\nJGDf9kSc-v4_6\tdog\nJGGj1z6Kujc_0\tdog\nJGGj1z6Kujc_1\tdog\nJGMfEFj5PVM_1\ttruck\nJGWBjvjqVhw_4\tskateboard\nJGanm9yGTJk_0\ttruck\nJGanm9yGTJk_1\ttruck\nJGanm9yGTJk_2\ttruck\nJGmHpQtJzic_0\thorse\nJGn6Ifa5bWI_0\tbird\nJG0B4rV4KEI_0\tdog\nJG6H3R9rErg_8\tairplane\nJG6H3R9rErg_0\tairplane\nJG6H3R9rErg_1\tairplane\nJG6H3R9rErg_2\tairplane\nJG6H3R9rErg_3\tairplane\nJG6H3R9rErg_4\tairplane\nJG6H3R9rErg_5\tairplane\nJG6H3R9rErg_7\tairplane\nJG6sceNvlnI_3\tboat\nJG6sceNvlnI_2\tboat\nJG872iaucFc_0\tumbrella\nJHBhDpq4HNs_0\tcat\nJHBtawKoltc_0\tcar\nJHTt9PSzrhU_0\telephant\nJHb8IVsjgMs_1\tbus\nJHdc9jvf4qA_0\tmotorcycle\nJHmG34eTWow_0\ttrain\nJHr57YE7IRs_1\tairplane\nJHy85i0So5U_1\tdog\nJH0Jzb0wOXw_3\telephant\nJH0Jzb0wOXw_4\telephant\nJH0Jzb0wOXw_2\telephant\nJISA50Bfj4U_0\tboat\nJIamGji7w9U_3\tbird\nJIiA0pG-MKk_0\tskateboard\nJI6MyG7aTvM_0\tbird\nJJSp2fu3lk8_4\tdog\nJJSp2fu3lk8_3\tdog\nJJq7YAYUado_0\tumbrella\nJJx7GdAuDQY_0\tskateboard\nJJyJR7TlQ7o_0\tmotorcycle\nJJ0Ja1ju2ec_1\thorse\nJJ0NBly53IU_0\tcat\nJJ8Vv2hiCCA_0\tcow\nJJ8Vv2hiCCA_1\tcow\nJKBJuICyV50_1\ttrain\nJKBJuICyV50_0\ttrain\nJKCFS8k_Qis_3\tbus\nJKGV5hbm5g8_0\tskateboard\nJKJQPHspLBs_0\tbird\nJKJQPHspLBs_1\tbird\nJKNRKGSvtsQ_0\telephant\nJKYPluJPL7c_0\tdog\nJKa7rPKrAwY_0\ttrain\nJKgPYc0K_hI_4\tcar\nJKgPYc0K_hI_1\tcar\nJKuhG9WLM2k_0\tairplane\nJK42K36SYLs_0\tbird\nJLE_jNuNoA0_0\tcow\nJLHP-3UxtMU_0\tboat\nJLb2dnuNhqs_0\tbus\nJLoS7DZH_ik_2\tairplane\nJLoS7DZH_ik_1\tairplane\nJLsEcZUU7FM_2\ttruck\nJL64rU6Jvmw_1\tgiraffe\nJL71b_9Cy9I_1\tumbrella\nJMDFSes_w0E_0\tcow\nJMMmrEdfRbk_0\tboat\nJMPKtdq9b0Y_0\ttrain\nJMR4IvE2sDo_0\tbus\nJMaahZTxRLk_6\tboat\nJMgbgNPBIJI_0\tbird\nJMnp6FLLbtw_0\thorse\nJMnp6FLLbtw_4\thorse\nJM1jSU4FEPw_2\tairplane\nJM4yr2pj-zg_0\tairplane\nJNDZBgXZBU8_0\tknife\nJNDZBgXZBU8_3\tknife\nJNDdt_ZPl1s_3\telephant\nJNNbk6jVfB4_0\tcat\nJNZDx8Ro_mM_0\ttruck\nJNe7ZednqQc_2\thorse\nJNkz_3Qtdfc_0\thorse\nJNnnm9ixKrM_3\tcar\nJNnnm9ixKrM_4\tcar\nJNnnm9ixKrM_5\tcar\nJNpuJeqVFxk_0\tmotorcycle\nJONF8-3gEoY_0\tgiraffe\nJONF8-3gEoY_1\tgiraffe\nJONF8-3gEoY_2\tgiraffe\nJObYghNlZas_6\ttrain\nJObYghNlZas_7\ttrain\nJOmeD6G33Dc_1\thorse\nJOoNVY1C6qI_0\ttrain\nJOoNVY1C6qI_2\ttrain\nJOqHfu-WVu8_2\thorse\nJOuB1UkVvKI_0\tairplane\nJOue8LphKc4_0\ttruck\nJOztmtwKz-k_0\tcow\nJPAjGBsi-rE_0\tbird\nJPMFXg-BXDE_2\tcar\nJPTFJk9f2nM_0\tdog\nJPevMGnX92M_0\tairplane\nJPiSmPAIpOI_0\tknife\nJPlZOEew4wg_0\telephant\nJPuDmwlAXzI_0\tskateboard\nJPwUpTvlZDA_0\tperson\nJPwUpTvlZDA_3\thorse\nJPw4R6t-0j4_1\tbird\nJQDX7gVR0qM_2\tknife\nJQDX7gVR0qM_0\tknife\nJQKDDMvCtt8_1\thorse\nJQNsIqNLn40_0\ttruck\nJQRxu6RVGMg_0\tcar\nhfwhbInEJAk_3\ttrain\nhfwhbInEJAk_2\ttrain\nhgFfz_RTcx4_0\ttruck\nhgFfz_RTcx4_1\ttruck\nhgxvhMjH_68_0\tmotorcycle\nhg6Z6JIwRMU_0\telephant\nhg6Z6JIwRMU_1\telephant\nhhM2TSF2GhA_1\thorse\nhhNlkY3SS6w_1\tbus\nhhYOJb0v5Yw_0\tcat\nhhlt4dfZmFE_0\thorse\nhhyzKC353Jo_1\tcar\nhiJ-OdPj_8c_0\tbird\nhiPDdAi1Qs8_0\tmotorcycle\nhiUH1zOfsfo_0\tcat\nhiZLv2E5zI8_0\telephant\nhjBLAHakI9c_0\tboat\nhjRlztwK-vg_2\tbicycle\nhjhbMbrRUWI_0\ttruck\nhj2P25O-nIk_0\tskateboard\nhkR10EU8YPI_0\ttrain\nhk0cDE4A_b0_0\tboat\nhk7M3PGcOhw_0\ttrain\nhk-IVoljyKE_0\telephant\nhk-IVoljyKE_1\telephant\nhlFPCpe8Akk_0\tairplane\nhlLrYrrOcY4_0\tdog\nhlNOQO4BIHg_0\ttrain\nhlnNVsSGjxA_3\tcar\nhlnNVsSGjxA_1\tcar\nhl4yLAJiWjQ_0\telephant\nhl7z1gnPPW0_0\tknife\nhl_YHwW5mrM_1\tbird\nhl_YHwW5mrM_0\tbird\nhmThCl2HK8E_0\tskateboard\nhmThCl2HK8E_1\tskateboard\nhmdH0Olcbx4_0\tbicycle\nhm98pilx9dE_5\thorse\nhm98pilx9dE_1\thorse\nhm98pilx9dE_2\thorse\nhm98pilx9dE_3\thorse\nhm98pilx9dE_4\thorse\nhnJ2wDmXD6w_1\tbicycle\nhnbZY12P-7g_1\telephant\nhne72NMSPuc_0\tbird\nhnffUBbBFoQ_1\thorse\nhnrSBT9miTE_1\tbird\nhnvbE27mWwI_2\ttrain\nhnvbE27mWwI_0\ttrain\nhn19XaR_wIs_0\tknife\nhn7ollCkAy4_5\tbicycle\nhn-1W1O8kZs_0\tboat\nhoLnPrkJ6sE_0\thorse\nhoLnPrkJ6sE_3\thorse\nhoNPAcq_5Ac_1\tbird\nhoNPAcq_5Ac_0\tbird\nhoYDTU50MTk_0\tcow\nhoe88GhFhq0_0\ttruck\nhomQXuwbe04_0\tcow\nhomx5sSuNr4_2\tbear\nhoozxxjd57c_1\tbus\nhotrXXenVAk_0\tcat\nho5YZstr1XE_1\tcow\nho7yo7nJk3o_1\telephant\nhpG2eG_hduA_0\tmotorcycle\nhpRxBuFhZ4M_0\ttrain\nhpRxBuFhZ4M_1\ttrain\nhpRxBuFhZ4M_2\ttrain\nhpRxBuFhZ4M_4\ttrain\nhpkXlhfYZfw_2\tmotorcycle\nhpkXlhfYZfw_1\tmotorcycle\nhpmC3OjLnZM_2\tboat\nhpmC3OjLnZM_0\tboat\nhpo-lwBTbFw_1\tdog\nhp3aTxzS9ms_0\tskateboard\nhqGhmP1u07Y_0\telephant\nhqoQm68UbGo_3\tairplane\nhqoQm68UbGo_2\tairplane\nhqsoIR9v8IY_0\tmotorcycle\nhq7f1_o4eFg_0\tairplane\nhrLkVz3_xGw_2\tbus\nhrW-pkK9osE_2\tbicycle\nhrW-pkK9osE_3\tbicycle\nhrgh69NXZqw_0\tcow\nhrj6I8n8nAc_0\tbicycle\nhrj6I8n8nAc_1\tbicycle\nhrrpTPwLZHA_0\tbird\nhrtiCeqnqLg_0\tcow\nhrziTee4b2c_0\tairplane\nhr5Q08OMeAU_0\ttrain\nhr7wUBMikww_0\tzebra\nhr7wUBMikww_1\tzebra\nhsMptx7tOLo_0\telephant\nhsMptx7tOLo_1\telephant\nhsMptx7tOLo_2\telephant\nhsM1eKbrqLs_0\tcat\nhsPK4wlNtI8_0\tcow\nhsYL355Fzio_0\ttruck\nhsfS5oT1y5M_2\tboat\nhskEM8GUmDE_2\ttrain\nhsmxUKxzapo_2\tskateboard\nhsmxUKxzapo_0\tskateboard\nhsyCfsJx7DI_2\tskateboard\nhsyCfsJx7DI_1\tskateboard\nhs2foQ_Xo8A_0\tskateboard\nhs-OEgnsLZs_0\ttrain\nhtDilkoPA-M_0\tairplane\nhtSBZwTBX98_0\thorse\nhteze9Fz1dc_0\tknife\nhtkybhLm0uk_0\tumbrella\nhtwBHgatd9c_2\thorse\nhtwBHgatd9c_3\thorse\nhtwBHgatd9c_0\thorse\nhuCxpuVT4GI_0\tdog\nhuDCqh-KRy4_8\tbicycle\nhuDCqh-KRy4_2\tbicycle\nhuDCqh-KRy4_3\tbicycle\nhuDCqh-KRy4_4\tbicycle\nJQnf7j7HpKY_0\tcow\nJQpJv-SOMS0_0\tdog\nJQ9LtiJVsd8_0\tcat\nJQ_dyIlBnGM_0\tcow\nJQ_6xcOuEfU_4\tcow\nJQ_6xcOuEfU_1\tcow\nJRA3LCwRGu0_0\tknife\nJRBLFsevgg0_0\ttrain\nJRJjI6mFa6s_1\tskateboard\nJRJnSf2qOXA_0\tairplane\nJRT0FH2KEsc_0\tcow\nJRcTFvzRC10_0\tbird\nJRcTFvzRC10_1\tbird\nJRsNcoTJJjE_0\tcat\nJRsn1likB7c_0\tboat\nJRyc_lxMJzs_0\tskateboard\nJR6JAx7xdGg_0\tcat\nJSA0JWvQbJg_2\ttrain\nJSdEdTcUHHI_0\tknife\nJSfXE4ExZ1U_0\tbird\nJSfXE4ExZ1U_2\tbird\nJSs6Sa8zR6c_0\thorse\nJS2cbpFwahY_0\tskateboard\nJTE0ABGzb30_1\tskateboard\nJTE0ABGzb30_2\tskateboard\nJTJgZcBM93k_1\tknife\nJTa9HkbXfSw_0\tcow\nJThBohLxRSc_0\tcow\nJTi4Oy6v9mM_1\thorse\nJTi4Oy6v9mM_2\thorse\nJTtjfwrK4Ls_0\tdog\nJT5zUQio3B0_0\tbus\nJUHMTmjUswE_0\tknife\nJUVHXeFTe3Q_0\thorse\nJUVHXeFTe3Q_3\thorse\nJUbPqBVbGQQ_1\ttruck\nJUpxTW6_BAI_0\tcow\nJUtd4FLjXio_0\thorse\nJU1N1nqXjII_0\ttrain\nJVKkxo7adX8_1\tknife\nJVQ6Gx2hGxs_0\tairplane\nJVTIzApj2UA_0\tgiraffe\nJVVtcOIACz0_0\tgiraffe\nJVg62b0T408_2\ttrain\nJVg62b0T408_0\ttrain\nJV2A3zWMRj8_0\tumbrella\nJV3Tbp30yp4_2\tmotorcycle\nJV3Tbp30yp4_1\tmotorcycle\nJV3Tbp30yp4_3\tmotorcycle\nJV-OfjEsQDs_0\tumbrella\nJWKZlCk_cts_0\ttrain\nJWXSXvHgoo4_0\tcar\nJXEyPb4Nzro_0\tskateboard\nJXP_CNg8grg_0\tcat\nJXi5KrVPz0M_1\tbird\nJXj_lj5QUp8_0\tperson\nJXmBBTT0YXQ_0\tcat\nJXobiO1_7Ts_0\ttrain\nJXwfPpl53Fs_0\tdog\nJYYAwimr2XQ_0\ttruck\nJYi7bWDL5os_0\tperson\nJYsWtLH_mjM_0\tbus\nJYsWtLH_mjM_1\tbus\nJYsWtLH_mjM_2\tbus\nJYvBo5FwjSg_0\telephant\nJYvBo5FwjSg_2\telephant\nJY2d1dohCDs_0\telephant\nJY3rSX-blgA_0\tcow\nJZBJ35lKlXw_0\ttruck\nJZOZuTiifHM_2\tboat\nJZXr-dGLkpU_0\tboat\nJZcy1T--d4M_0\tskateboard\nJZ_ri3awsso_0\tcat\nJaI9UR2n7ZE_0\thorse\nJaLswoS3xO8_0\tknife\nJaumrq8clZY_0\ttruck\nJa9rAQpB2_M_0\tcat\nJa_ofQ1ynAc_1\tairplane\nJa_ofQ1ynAc_2\tairplane\nJa_ofQ1ynAc_4\tairplane\nJbA11YWHpW0_1\tskateboard\nJbBxvvoOvpg_0\tbear\nJbK17NE3dvk_1\ttrain\nJbK17NE3dvk_0\ttrain\nJbK17NE3dvk_2\ttrain\nJbK17NE3dvk_3\ttrain\nJbPP4AwiNEc_0\tcat\nJbSkoHG6Vq4_0\tairplane\nJbfzd9wIyi4_0\tcat\nJbw0KUJqWpE_0\ttrain\nJb03yqEB5WI_1\tbus\nJb03yqEB5WI_4\tbus\nJb5lFDvKqXA_0\tbus\nJb6FIuynIuw_0\tbicycle\nJb-q7z_Mygg_0\ttruck\nJcJKjdDKuc4_0\ttrain\nJcRvhoBwgNg_0\tcow\nJcU-cdQmKV8_3\tbus\nJcU-cdQmKV8_1\tbus\nJcixSQRUnY4_1\telephant\nJcmTLrQZ7sE_1\tcow\nJcmTLrQZ7sE_0\tcow\nJcwl0kCsUTw_0\tumbrella\nJc5PS0Ejejw_1\telephant\nJc8eE1ayaX8_0\tcow\nJc9PdqC1rpg_0\ttrain\nJdUehtxAfys_1\tbicycle\nJdUehtxAfys_7\tbicycle\nJdwSAFvKg74_0\tcar\nJeAykU3MiKg_2\tairplane\nJeET8zb_gPQ_4\tknife\nJeNu9WVQOHY_4\tbicycle\nJeNu9WVQOHY_1\tbicycle\nJeNu9WVQOHY_7\tbicycle\nJeYCd0VP5EY_0\thorse\nJeb4SSyyZD8_0\tdog\nJe_fuH6-34I_0\tskateboard\nhujF3CEgAXI_0\tskateboard\nhulFEZUNu10_0\ttrain\nhutTW7ORN8g_0\tbicycle\nhutTW7ORN8g_1\tbicycle\nhuy9NXPynro_0\tcat\nhu6nRmzUcAw_0\ttrain\nhvWHb1kiV5g_0\tdog\nhvWs1FhyQlw_0\tumbrella\nhvhWoRQZMUU_0\tcat\nhvjNVTle8bQ_6\tairplane\nhvjNVTle8bQ_0\tairplane\nhvjNVTle8bQ_1\tairplane\nhvjNVTle8bQ_2\tairplane\nhvjNVTle8bQ_3\tairplane\nhvjNVTle8bQ_4\tairplane\nhvjNVTle8bQ_5\tairplane\nhvkIo-dZUUY_1\tbird\nhvlXyPikLUY_0\tbus\nhv49V2RzgHw_0\thorse\nhv7b1I-cRvI_0\ttruck\nhwOL2G-Lo54_0\tumbrella\nhwPkgOB1mEU_0\tcow\nhwTVAkfjjCY_0\tcat\nhwikEC2Jc0c_1\thorse\nhxC7dFDqfXo_0\tcar\nhxUn2A7Ko2g_0\tcow\nhyMlfx_ZEeI_0\ttrain\nhyMlfx_ZEeI_1\ttrain\nhyX6rKHZcLs_0\tperson\nhyb_qBoKG9Y_0\ttrain\nhyjjdUcyanE_1\tdog\nhyj8BJ_PMgQ_2\telephant\nhyrBL1wMHts_1\ttruck\nhy9Ml-3zAtM_2\tknife\nhy9jrpamopE_0\tumbrella\nhzBqPVIC7IQ_0\ttrain\nhzUTA7mGyKE_0\tbicycle\nhzeHyMcUmO4_0\tmotorcycle\nhzeHyMcUmO4_1\tmotorcycle\nhzz9JBRYjFs_0\tbicycle\nhzz9JBRYjFs_1\tbicycle\nhz5anqtArdI_0\ttrain\nhz5anqtArdI_1\ttrain\nhz7PXI6R6DI_0\ttrain\nh0IiMbTwz1Q_0\ttruck\nh0IiMbTwz1Q_1\ttruck\nh0hIpf9O0Vg_0\tbus\nh1MxYGy1SBc_0\tdog\nh1XtVmXF7CQ_1\telephant\nh19z0Ap_5Pc_0\tbus\nh2R46pcCEVg_0\tcow\nh2SNrfK0yQQ_2\tbus\nh2X0to3hDA4_0\tbicycle\nh2b9t_pnnNA_0\tcow\nh22FyeO_lyE_0\tumbrella\nh23R8X1WKjU_1\thorse\nh24uuiI34yI_0\tskateboard\nh27DK_oMwYY_0\tdog\nh3FnAKBB9Xc_1\telephant\nh3Lz61ficjc_2\tmotorcycle\nh3aEao1bRIY_0\tcat\nh3aZGHTjBwc_0\telephant\nh3o5ZykGOxI_4\telephant\nh3o5ZykGOxI_2\telephant\nh3o5ZykGOxI_3\telephant\nh3qOwaRYAi8_1\tbear\nh3uPELFKoCc_3\tknife\nh3uR99WtOh4_4\tbear\nh3_cWsxi4Qw_1\tskateboard\nh4CySJb83XI_2\telephant\nh4KXG16xA_Y_0\tdog\nh4LE2YVwHL0_0\tmotorcycle\nh4jU8ZrDZd8_0\tskateboard\nh4kmvN6NmyA_3\ttrain\nh4kmvN6NmyA_2\ttrain\nh4wsDcj7kcE_0\tcow\nh45-zE2gKFA_2\tperson\nh45-zE2gKFA_3\telephant\nh47dExP6oXQ_0\telephant\nh5C2RKknWfg_3\tbicycle\nh5C2RKknWfg_5\tbicycle\nh5C2RKknWfg_6\tbicycle\nh5KSLdybLIE_5\tbicycle\nh5KSLdybLIE_1\tbicycle\nh5KSLdybLIE_3\tbicycle\nh5dsU3N4joc_0\tcow\nh5hkvWWp7Qg_0\tknife\nh55Exp2rpSM_0\tknife\nh6FtP-5VnYM_2\tcow\nh6FtP-5VnYM_1\tcow\nh6McnZDPX3I_12\telephant\nh6McnZDPX3I_1\telephant\nh6McnZDPX3I_2\telephant\nh6McnZDPX3I_6\telephant\nh6McnZDPX3I_7\telephant\nh6McnZDPX3I_9\telephant\nh6McnZDPX3I_10\telephant\nh6Mvzt5e_eE_0\thorse\nh6jGPQLkE48_0\tperson\nh6ztcoDHYaY_0\tcat\nh62bO9Mfl9Y_0\tcat\nh64dmoPNWw0_0\tcar\nh7OZUnDKWbA_0\ttruck\nh7cXxMNxlcY_0\thorse\nh7uwd7opKjI_0\tmotorcycle\nh7uwd7opKjI_1\tmotorcycle\nh8BDqFH8e_w_0\ttrain\nh8BDqFH8e_w_1\ttrain\nh8BDqFH8e_w_2\ttrain\nh8EHrA_OM7c_0\tperson\nh8LiHNo4904_4\tairplane\nh8LiHNo4904_5\tairplane\nh8LiHNo4904_6\tairplane\nJfb3XGdt6VE_0\tcat\nJfdoYsRxF5k_2\tknife\nJfnHVMyUT0E_4\tbicycle\nJfqHeWyD5DQ_0\tskateboard\nJgLXpgcnjAA_0\tcow\nJgQbvDmM2Nk_0\tbird\nJggJWWHhlc4_0\tumbrella\nJg8FXSKMvTQ_1\telephant\nJhDNC6XRVG8_0\tcow\nJhDNC6XRVG8_1\tcow\nJhFvJHfP_NY_0\tcar\nJhPLC0PS9I0_0\tknife\nJh87zKRgN68_2\tboat\nJiMyZFGmGgM_0\tdog\nJifa2spqYV8_0\tairplane\nJijtEhm-Dk8_0\tbus\nJikSLpJ2xKw_0\tcow\nJinIHVE4_MI_1\tbear\nJioS9DumyIM_1\tcar\nJixd9HKGzWA_0\ttrain\nJi6bpPIPScI_0\tumbrella\nJjIvWQ-198c_0\tknife\nJja500M50Yw_0\tcow\nJja500M50Yw_1\tcow\nJj4KvC3TXro_0\tcar\nJj4KvC3TXro_1\tcar\nJkC1Udoysk8_1\tcat\nJkC4nV8LcTE_1\tbicycle\nJkH8ZtuvzDQ_0\tdog\nJkpQkpiRpVI_0\tbird\nJkzNUiOu1GI_0\tbus\nJk28bpr063o_4\tairplane\nJk28bpr063o_0\tairplane\nJlJQlaoy3ec_0\tcat\nJlrPaJIAP9k_1\thorse\nJluvPpeI2DY_0\ttrain\nJluvPpeI2DY_1\ttrain\nJlzsUphxgIY_0\ttruck\nJl1bEdoRG9I_0\tcow\nJl6gTtZcQH0_3\thorse\nJl6gTtZcQH0_0\thorse\nJl6gTtZcQH0_2\thorse\nJmblo1iMURo_0\tmotorcycle\nJmdMhGsyZvk_0\tboat\nJmvNubLPYGo_0\tbird\nJmxixgKAKzc_0\ttruck\nJm0S-kE2yVc_0\ttruck\nJm3dtu8GTos_0\tdog\nJnAaSoaN3FI_4\tboat\nJnHUNCeHEDc_0\tbird\nJnMkFSGB6Vw_0\ttruck\nJnXmNI53DWE_0\tperson\nJnrrNu9udj0_0\tbear\nJnvIx5y-ijs_1\tumbrella\nJnysuevt_4A_0\ttrain\nJn1gvGhxU5U_0\tbear\nJocAgPv-ZJo_0\tskateboard\nJohmecnKktI_0\tboat\nJopGEGMo-DQ_0\tdog\nJo50LBwjHIk_0\tbicycle\nJo50LBwjHIk_2\tbicycle\nJpDOBaNBwkc_0\ttruck\nJpFiApmpoHA_0\tcow\nJpL4Mv-uFi4_1\tdog\nJpRMc6MtCH8_0\ttruck\nJpWh1yQThRo_0\ttrain\nJpZwF6hOCDg_1\ttruck\nJpjAxQ_vsZw_7\tbicycle\nJpjAxQ_vsZw_1\tbicycle\nJpsOsewgXAg_1\tbird\nJpuCWzsE35k_1\tbird\nJp0GKZ9vA0c_0\tairplane\nJp1tvS1y4eI_0\tboat\nJqCaTxH5Ovk_0\tmotorcycle\nJqC81ViWFeE_0\tbear\nJqPkaGRIz6c_2\telephant\nJqT_Bx4fd1Q_0\tcow\nJqauh1bsJy4_0\tbear\nJq2ml2xQkHg_0\tcat\nJq8D628IlV8_1\tskateboard\nJq8D628IlV8_2\tskateboard\nJq8OMvgG6wc_0\tcow\nJrAvVMnkKEo_3\tbear\nJrKxxhHGR7E_0\tgiraffe\nJrZTstVj2wg_0\thorse\nJrbrXXDuxnc_0\thorse\nJrmyPAW-ItI_0\tdog\nJsNQXxg1PvE_0\tperson\nJsPtP21j3f8_3\tbear\nJsPtP21j3f8_1\tbear\nJscnB4QfAhY_0\ttrain\nJsiSPt3nv1Y_0\tcow\nJsiSPt3nv1Y_2\tcow\nJs2ZDfWZWtc_0\tcat\nJs69iFgcic0_2\tbus\nJtMMD0aJnPI_0\ttrain\nJtMMD0aJnPI_1\ttrain\nJtQzeWNt8IA_0\tumbrella\nJtQzeWNt8IA_2\tumbrella\nJtfp49L4LHg_0\ttrain\nJt1zVsUQGhI_2\telephant\nJt1zVsUQGhI_3\telephant\nJt8ikZGW768_0\tbicycle\nJuGusvu6Z7o_0\tskateboard\nJuKJKHykMKM_0\thorse\nJuKgukJ63eM_4\tskateboard\nJuME8_jaVdE_2\tcar\nJuME8_jaVdE_3\tcar\nJuMNRsOc0nU_1\tcat\nJuMNRsOc0nU_0\tcat\nJuNubQtCvrU_0\tbird\nJuNubQtCvrU_1\tbird\nJuO7qvp2GBs_0\tknife\nJuXqLoCgK4o_0\tbear\nh8OcTR0Z4yo_1\tairplane\nh8OcTR0Z4yo_2\tairplane\nh8OiIYhIPTs_2\ttrain\nh8PJps4Sj1E_0\tairplane\nh8PmDAKiKVc_0\tdog\nh8oTFl4XWTc_0\tbus\nh8ysn_L9udY_0\ttrain\nh8ysn_L9udY_1\ttrain\nh9FtsOFR3p8_0\tcat\nh9veoEpzRH8_0\tcow\nh9w20ChZ_7Y_0\tbicycle\nh9w20ChZ_7Y_1\tbicycle\nh96rR-VkJZA_1\tbear\nh96rR-VkJZA_2\tbear\nh966cxQyjvc_1\tairplane\nh-PS5v6ZTBY_0\ttruck\nh-VSmS49g5M_0\tskateboard\nh-npKkPbHSA_0\tboat\nh-qRpUteJV4_0\tbird\nh-vGllteZnI_0\ttrain\nh-1NdCqoxdU_1\tbird\nh-2DBPzbKUM_0\tcow\nh-27oWBBirE_0\tdog\nh-9WCj8sB6o_7\tairplane\nh-9WCj8sB6o_8\tairplane\nh-9WCj8sB6o_10\tairplane\nh-9WCj8sB6o_11\tairplane\nh-9WCj8sB6o_12\tairplane\nh-9WCj8sB6o_0\tairplane\nh-9WCj8sB6o_1\tairplane\nh-9WCj8sB6o_3\tairplane\nh-9WCj8sB6o_5\tairplane\nh_DH9wUjJZA_0\tcow\nh_Ey7gQJCSc_0\tcow\nh_KKvY3cK4o_0\tcow\nh_KKvY3cK4o_1\tcow\nh_XHdrNdD98_0\tbus\nh_tQ-ZVYe1M_0\tbird\nh_6GMOpsIOk_0\tcat\niACKPRGNEOU_0\tbus\niADpOEGdwQI_3\tbird\niALubFRPBXQ_1\tknife\niAL5KD5BwGQ_0\thorse\niAuV09oxF_c_0\tbus\niAzvkn-2C9s_4\thorse\niA_tYzSGuVg_0\tdog\niBDVD9if3VA_1\tbear\niBDVD9if3VA_3\tbear\niBDVD9if3VA_4\tbear\niBF1Cfv7RpE_2\ttrain\niBF1Cfv7RpE_3\ttrain\niBO6oNBr4hM_2\ttrain\niBmHl4vB2p8_0\tboat\niBmHl4vB2p8_1\tboat\niB2e_0wI6Cs_1\tbird\niCA5LKIvUak_0\thorse\niCUmfkHj2MM_0\telephant\niCWBysiT4fE_0\tairplane\niCoklLBZGi0_0\ttruck\niC-r2odD6Ss_0\tdog\niDBWSSj3Yag_0\tbus\niDMMfw0zrvQ_0\tcow\niDy5BzJGt50_0\tskateboard\niD0ptJ7ucww_0\thorse\niD0ptJ7ucww_2\thorse\niECVUNZOPOM_0\tcow\niEIRSDANY7g_0\tbird\niEcsL-BdEp8_0\tskateboard\niEeZD9_-mw4_1\ttrain\niEe9Qed4A6w_0\telephant\niEfRHR6In04_1\tdog\niEnwhpHkWPA_0\tdog\niErN5WNQuZ8_1\tbear\niFLG6c3XcMw_1\tknife\niFgR4_OYpgU_0\tboat\niFk_jNFfItI_0\tcar\niFsAXsW8t-8_1\tbus\niFsAXsW8t-8_2\tbus\niGB1OkMGELk_1\telephant\niGE04YY7P68_0\tmotorcycle\niGE8oPBzavo_0\tairplane\niGKh6_bzEe8_9\tairplane\niGKh6_bzEe8_5\tairplane\niGWCy-zysHU_7\thorse\niGWCy-zysHU_0\thorse\niGWCy-zysHU_2\thorse\niGWCy-zysHU_5\thorse\niGf0rCvWhZE_1\tbird\niGivgJkDWVo_0\telephant\niGivgJkDWVo_4\telephant\niGivgJkDWVo_5\telephant\niGivgJkDWVo_1\telephant\niGivgJkDWVo_2\telephant\niGmHR-MYdts_2\tskateboard\niGtwAlGgpuQ_0\tmotorcycle\niG3IZAIpSos_0\tcat\niG4w2A16Qy0_3\tboat\niG4w2A16Qy0_0\tboat\niG7OG-yAmkg_1\tboat\niHNSjj9GO9k_0\thorse\niHZNqzCjd7k_0\ttrain\niHbirUiASog_0\tskateboard\niH0SvXt_QEE_0\tcow\niH9qrmQO5wg_3\thorse\niH9qrmQO5wg_1\thorse\niH_5naROy0I_0\tmotorcycle\niIYyUq4tPbc_0\tcow\niIZw5oU3kz4_0\tdog\niIa2i3Fyyp8_0\tcat\niIgi9EuB83A_0\ttrain\niIlu4DSMMwM_0\tskateboard\niIoEhVh0sac_0\tbird\niIoEhVh0sac_3\tbird\niIoEhVh0sac_1\tbird\niIwKnWnoXd0_0\tskateboard\niI66ySv1M1E_0\tbear\niJcYkYS6CgE_4\tairplane\niJcYkYS6CgE_0\tairplane\niJcYkYS6CgE_3\tairplane\niJqRpAI5q0M_0\tcow\niJ0Pe8-N6i4_0\tbus\niJ5fEZLxnPw_0\tknife\niJ5fEZLxnPw_2\tknife\niKLuvvisn6Y_0\tairplane\nJvHU5ncnmtc_1\tcow\nJvkp32eVZyc_0\tcat\nJvm2k8MgJ5k_0\tcat\nJv1ayezpka4_0\tbird\nJv6b9zItltw_3\tbird\nJv6b9zItltw_0\tbird\nJwNWcW7nUBE_0\telephant\nJwNWcW7nUBE_2\telephant\nJwaPyA7kWhc_0\tcow\nJwnMWPlx6KU_0\tcow\nJw_nc2U4pKs_0\tskateboard\nJxKJB-QdFUA_1\tumbrella\nJxRKwF7KNOA_0\tbird\nJxSYbvgXcT8_0\tcar\nJxVoSlh710g_2\tbird\nJxc3ArJpyuY_0\tmotorcycle\nJxc3ArJpyuY_3\tmotorcycle\nJxdIZhohCtg_0\tcow\nJxlB8wLncYc_0\telephant\nJxzCLy2VyJA_0\tskateboard\nJx03EEph0bw_1\ttruck\nJx2PgBxlrLY_3\tairplane\nJx6xyX5sPMk_0\tcat\nJyKJFochwIQ_0\ttruck\nJyLFLF4shyY_0\tairplane\nJyLqTlaGOww_0\tknife\nJyM0FDmoMyQ_0\tairplane\nJyePA4nzTx8_0\ttruck\nJyhAOfW608o_0\tcow\nJyliijVyyUc_0\telephant\nJyliijVyyUc_1\telephant\nJy1hmMPCNks_0\tdog\nJy1hmMPCNks_1\tdog\nJy37u1dt8Qc_0\tdog\nJy_3PqINBss_1\tbird\nJzGkRevP9mU_1\ttruck\nJzNvJYTN1Pw_1\tbus\nJzNvJYTN1Pw_0\tbus\nJzNvJYTN1Pw_2\tbus\nJzNvJYTN1Pw_4\tbus\nJzNvJYTN1Pw_7\tbus\nJzm0H_o-LyA_1\tbicycle\nJzwF2_O5qho_0\tcow\nJzwF2_O5qho_1\tcow\nJzwF2_O5qho_2\tcow\nJ0Gb34OfhGs_0\tairplane\nJ0m2haAO_Pg_0\ttruck\nJ0uOEHqVD0g_1\telephant\nJ01a05fNHz8_0\tairplane\nJ05eYTq5pFE_0\tcow\nJ1BVFlR3Pzc_2\tbicycle\nJ1VVax1uIGc_0\telephant\nJ1YSacTJR64_0\tbear\nJ1YqrkAsUIs_1\ttruck\nJ1YqrkAsUIs_2\ttruck\nJ1YqrkAsUIs_3\ttruck\nJ1rYOpOlNqs_0\tcat\nJ1reV7ZinzE_2\ttruck\nJ1sQZHaGRVY_0\tcow\nJ1uF4oCMmtU_0\tcar\nJ10PTSVhLnQ_0\tcar\nJ10PTSVhLnQ_1\tcar\nJ10PTSVhLnQ_2\tcar\nJ142X1ly-gY_0\tcow\nJ17uKo2HgxY_0\tbird\nJ2R5C_XNnek_0\ttrain\nJ2Sh2XKvWOA_2\thorse\nJ3EToJg72Es_0\thorse\nJ3d48McH1L0_0\telephant\nJ3gk0p9Hm0o_0\tknife\nJ3hgEqlUzpg_0\tbus\nJ3hva1l0CWM_1\thorse\nJ3jOAuADP44_0\tboat\nJ3sMC-99CWs_1\tcow\nJ3zIT2YwDdY_0\tbicycle\nJ315ju7gD8Q_2\ttrain\nJ4eK5nQv9E0_0\tmotorcycle\nJ4hu4X1Hr7k_0\tbear\nJ4ithFdbyKY_0\ttrain\nJ4mDzsuGR1M_2\tbear\nJ43AWiRkRAI_0\tskateboard\nJ46c4FEAjQ8_0\thorse\nJ46c4FEAjQ8_2\thorse\nJ5CA6t8d7uA_0\ttruck\nJ5JNgpMvPks_0\thorse\nJ5Ss-cEKg9o_0\tskateboard\nJ5TS-1YKlWE_0\telephant\nJ5TS-1YKlWE_1\telephant\nJ51qDcGqOV8_0\tairplane\nJ5-O6tDEZO0_0\thorse\nJ5_8xLaPuIU_0\tcat\nJ6AHeX1RqWk_0\tbus\nJ6nRLSf9kms_1\tdog\nJ61MSyhI5Xg_0\tbird\nJ68NptJ9oRE_0\tskateboard\nJ7h1DaonvHY_1\thorse\nJ7jTtirQ85g_0\tmotorcycle\nJ7vNGyyYQ30_0\tdog\nJ73WpGWHEuE_0\tgiraffe\nJ73WpGWHEuE_15\tgiraffe\nJ73WpGWHEuE_1\tgiraffe\nJ73WpGWHEuE_2\tgiraffe\nJ73WpGWHEuE_14\tgiraffe\nJ79qVoBV6TM_0\tcar\nJ8Akt0d4r_k_0\ttrain\nJ8Akt0d4r_k_1\ttrain\nJ8dIP05jqRw_2\ttruck\nJ8dIP05jqRw_5\ttruck\nJ9SzI8MQm6Y_0\tairplane\nJ9ZGJucbLiw_0\tairplane\nJ9mX4rrWQto_0\tknife\nJ9n9_-FSk4Y_0\tdog\nJ916-YD5Qms_0\telephant\nJ-sHEYA-20k_1\tgiraffe\niKjaiW6gHPQ_1\telephant\niKjaiW6gHPQ_0\telephant\niKlCbkZsFzE_1\tcow\niLeUN6d8Aew_0\tgiraffe\niLeUN6d8Aew_1\tgiraffe\niLk3v-m1Z0U_0\thorse\niLvLOw8Jigg_0\tmotorcycle\niL0GMZ7iO3c_0\tdog\niL5OOut4Jek_3\tbus\niL9TAERxS4A_1\tbicycle\niL9hLZ_cXaI_0\tperson\niMfVd5_HBcE_0\tbus\niMqYyOcO4Fw_0\tumbrella\niMtt9-ROv_o_0\tdog\niMukpec9Vmo_0\tairplane\niMukpec9Vmo_2\tairplane\niMxzNRMiKMA_0\ttruck\niM3tOs60qxk_1\tairplane\niM8Lua_zTug_2\ttrain\niNQNSmu2BD8_0\tskateboard\niNWrFmCCfXw_1\tbear\niNa2jg_1Vyc_0\tcat\niNghTa86iWY_0\tcat\niN-bJwlR2i8_1\tbicycle\niOEuAB0dIs8_0\tdog\niOH00pYaMhY_0\tcow\niOJiYp298qc_3\tairplane\niOJiYp298qc_1\tairplane\niOd4NCiEBLw_4\tairplane\niOd4NCiEBLw_2\tairplane\niOgScMDTX_I_0\tskateboard\niOvWAp7U61k_0\tcow\niOzYv5IpFng_0\thorse\niO7wHeFO6Js_1\tcow\niO7wHeFO6Js_2\tcow\niPWL6FSzmS8_0\tumbrella\niPbg6G7tUVo_1\thorse\niP98M3c1PJw_0\telephant\niQB9bgZJCwA_0\tmotorcycle\niQPn_3iB6aU_0\tumbrella\niQYiakvHwnk_0\tbicycle\niQZ1QN-A3JQ_0\telephant\niQfs0MyXA-s_0\tairplane\niQxGihgbiM8_0\tcow\niQ_2xA5J-Zg_4\tbird\niQ_2xA5J-Zg_5\tbird\niQ_2xA5J-Zg_1\tbird\niQ_2xA5J-Zg_2\tbird\niRI3AkfYykI_0\tknife\niRLMFxqd6Vk_0\tbear\niRTTlG8M9FE_0\tcar\niRTTlG8M9FE_2\tcar\niRTTlG8M9FE_1\tcar\niRWWnw104cE_0\tbicycle\niRklgBUz8ME_0\tbus\niRk0aHyYWdM_0\tbird\niRlBKC_jfE0_1\thorse\niRlBKC_jfE0_2\thorse\niRlBKC_jfE0_4\thorse\niRmfa0b6jJk_0\tcar\niRpibBNFoiY_0\tknife\niRv5dyfU3ZQ_1\tcar\niRv5dyfU3ZQ_2\tcar\niRw-TCiikqw_0\thorse\niRw-TCiikqw_1\thorse\niR3sRTxVGtg_0\tairplane\niR4rImxKjK0_0\tcar\niR4rImxKjK0_1\tcar\niR5Zew8NcYU_0\ttruck\niR5Zew8NcYU_1\ttruck\niR5Zew8NcYU_2\ttruck\niR5Zew8NcYU_3\ttruck\niR5Zew8NcYU_4\ttruck\niR5Zew8NcYU_5\ttruck\niR5Zew8NcYU_6\ttruck\niR5Zew8NcYU_7\ttruck\niR5Zew8NcYU_8\ttruck\niR5Zew8NcYU_9\ttruck\niSCFoiWm7Xk_0\tbear\niSLNkNnHOXQ_0\tbicycle\niSYNvKIuAXc_0\tmotorcycle\niSbXpgu-7qA_0\tbicycle\niSeR1wQ4sl0_0\ttrain\niTF1bWOtrew_1\tbus\niTF1bWOtrew_2\tbus\niTWyYCJO0FI_2\ttruck\niTbEmIOM3Bg_2\tcar\niTbEmIOM3Bg_0\tcar\niTbEmIOM3Bg_1\tcar\niT3LIkn9wh4_0\tcar\niT5clmXCTEc_0\telephant\niUDGzAPkGLI_1\tairplane\niUEEnhAvRoY_0\tcow\niUSZKTFqatw_0\tairplane\niUX8ST-BSFg_1\tbus\niUZnCaGp148_0\tdog\niVH9ehKyau0_0\tgiraffe\niVRs9h04NcM_0\tcat\niVzRc0RW_Y4_0\tbird\niV4UGeMqQeY_0\tdog\niV8NpvUXve4_0\telephant\niV8NpvUXve4_1\telephant\niV9CFIQTmfs_2\tbicycle\niWP_wo9OSe4_0\tbird\niWo66ztRt0o_3\tboat\niWtj7if5cK8_1\tboat\niWv1rxdhH1E_0\tbear\niW1aIV39PQo_0\tmotorcycle\niW2g2j2VhbM_1\tskateboard\niW2g2j2VhbM_2\tskateboard\niXKQX0UfOqA_0\tcow\niXKQX0UfOqA_1\tcow\niXKQX0UfOqA_3\tcow\niXh4-KWp9S4_0\thorse\niXl114K8Y1E_0\tcar\niXxi1CQpbBk_2\tcow\niXzEoHyipJM_0\ttruck\niX7b9tWhoKg_0\tgiraffe\niYGSi3t8Do0_2\tcow\niYO5SD120r4_0\telephant\niYYdiX4oGjM_0\tskateboard\niYjiqdn7fVk_0\tbird\niYsgKLWI96c_2\tknife\niYtDe_tT_wo_1\ttrain\nJ-6KxfbaI6M_2\tcow\nJ_HdQVHBeco_0\tmotorcycle\nJ_l7W4IMhJo_0\tdog\nJ_n_3-KXet0_0\tdog\nKAGadYR0_LM_4\tbird\nKAGadYR0_LM_6\tbird\nKAGadYR0_LM_8\tbird\nKAKn8JmKESU_0\ttrain\nKAjM8ENV-F4_4\tskateboard\nKAxsc-ratJ4_0\thorse\nKA1A0hH1nVQ_0\ttrain\nKBIGw8UrUG8_0\tcow\nKBKaaEaIPRc_0\tcow\nKBNqKcj0xoc_0\ttrain\nKBP3moB3vz4_0\tbird\nKBRkCaaDjxU_3\tbus\nKBRkCaaDjxU_0\tbus\nKBe3_8RL_MI_0\tperson\nKBoY6Pa8f_M_0\tcow\nKCbzyGKBwC8_0\ttrain\nKCdR8nTa3p4_0\tskateboard\nKCipBL5_e5M_0\thorse\nKCy-RKy_KN0_0\tbicycle\nKC1md4Q_DlQ_0\tskateboard\nKDSxlGW6eRc_0\tumbrella\nKDZsS4MjllY_0\tmotorcycle\nKDaVTe3RbUY_0\thorse\nKDyYkCLIImM_0\tknife\nKD0Qm4z53a0_0\ttruck\nKD0Qm4z53a0_5\ttruck\nKD5LwDdfw0o_0\thorse\nKD9qqVSiPu0_0\ttrain\nKEGLFAbfrxs_0\tmotorcycle\nKERo3bKldwM_0\telephant\nKEW0fAHE_74_0\tbus\nKEW0fAHE_74_2\tbus\nKEagowlFwzI_0\tcow\nKEll3gbyIsk_0\ttruck\nKEll3gbyIsk_1\ttruck\nKEll3gbyIsk_2\ttruck\nKExfLNe3IbY_0\tairplane\nKE2StZtSBfk_0\tairplane\nKE3O7h2RC-s_1\ttrain\nKE_UJpQulNU_0\thorse\nKFEorB8NRcE_0\tboat\nKFFTHBaYcbw_0\tbear\nKFJtVwXfusI_0\tboat\nKFRZOFB41Jk_0\ttrain\nKFk_7p6X-zI_6\tcar\nKFk_7p6X-zI_1\tcar\nKFk_7p6X-zI_2\tcar\nKFk_7p6X-zI_4\tcar\nKFk_7p6X-zI_5\tcar\nKFnvvsS8eIE_1\tknife\nKGYrelsyNbk_0\tairplane\nKGbYHbiOfd8_0\tgiraffe\nKGwEL4VozSA_0\tboat\nKG8zBA9Gudg_0\tknife\nKHBsJZVKzks_0\ttruck\nKHG1hZsfjwQ_0\ttrain\nKHHyhgm1jZ0_3\tskateboard\nKHSjivlhX30_1\tbear\nKHcEC33udEg_0\tcow\nKHgLQP4XH9Q_0\tskateboard\nKHsYYKcSCSI_1\tcow\nKH0F1sJXKss_3\telephant\nKH0k5jfUZGg_0\tbicycle\nKH8QlsYIT1M_1\tbear\nKIPptA8AzYg_0\thorse\nKIjf6QGqdsw_0\ttruck\nKIjf6QGqdsw_1\ttruck\nKIqePeskBSk_0\ttruck\nKIy2LK1jsQ8_0\tperson\nKI8Arf5-ekw_1\ttruck\nKI8Arf5-ekw_4\ttruck\nKJIBdy7_10k_1\tbus\nKJIBdy7_10k_2\tbus\nKJJBVXnnqIw_0\tzebra\nKJcXjJ5S9yA_1\tdog\nKJrPyuVxWRg_0\tairplane\nKJrPyuVxWRg_1\tairplane\nKJvAK-5ExwY_2\ttruck\nKJ30mU3h4f4_0\tbear\nKJ7PQiJAKRM_0\telephant\nKKKiTv_k23A_0\tgiraffe\nKKO1QGoVQYU_0\telephant\nKKpwJEMQYv8_0\tdog\nKKsKKMjHYGM_0\thorse\nKK06xbUhklk_1\tbus\nKLC8OgkQnNQ_0\tboat\nKLEKnTRMmo0_1\tcow\nKLGAT1GQYGA_2\tbird\nKLMz6_P5QmA_0\thorse\nKLNmQqyAs54_0\tcow\nKLUTy4pqLZ0_0\tbicycle\nKLVZqPfRuTg_2\tbear\nKLVZqPfRuTg_7\tbear\nKLlN4H-eGYI_1\tskateboard\nKL6-Iu09-C8_0\tcat\nKMNaWZZK2Os_0\tskateboard\nKMOOcO5yE9E_1\thorse\nKMXuGjMAt7k_5\tbicycle\nKMXuGjMAt7k_6\tbicycle\nKMXuGjMAt7k_3\tbicycle\nKMajGvVnol0_1\tairplane\nKMajGvVnol0_4\tairplane\nKMajGvVnol0_5\tairplane\nKMajGvVnol0_6\tairplane\nKMajGvVnol0_7\tairplane\nKMiZgk_f50g_0\tdog\nKMlZbzTdutw_1\tcar\nKMlZbzTdutw_2\tcar\nKMsL64iYfOA_0\tcar\nKMtu1xThH2k_2\telephant\nKMyoO6YYfZk_0\telephant\nKNaoNUMT7m0_1\tcar\nKNg4K_bbY5Q_0\ttrain\nKN5hxi96gW0_0\tcat\nKN-_uhPPfoE_0\tcow\nKOKdrC_foXo_0\tairplane\nKOOd5IO8seo_0\tboat\nKOSUWuFIQjQ_1\tairplane\nKOVZk2ixqc0_0\ttruck\nKOgmgqcT21Y_1\tbird\nKOl1EDiK2e8_0\tmotorcycle\nKO6T6QdloiM_0\tbus\nKO7Ncyx1-9c_0\ttrain\nKPJDHcE-qeQ_0\tbicycle\nKPYtlDJa43o_0\tskateboard\nKPfbBNvFcmA_0\tskateboard\nKPj_wrsubOE_2\tbear\nKPkzyHL7IPg_0\tcow\nKPmvpNEHsPk_0\tskateboard\nKPzWIuvRlr0_1\tskateboard\nKP4ApNQiIEI_0\tcat\nKQB-ZyriFmI_0\tboat\nKQg6eO2jr_Y_0\tumbrella\nKQ5mchVgTXo_0\ttruck\nKRCLiP-JUsc_0\ttruck\nKRCLiP-JUsc_2\ttruck\nKRCLiP-JUsc_1\ttruck\nKRW0HyqDLg8_0\tdog\nKRjN1nx8mcE_0\tairplane\nKSDxU99SF6g_0\tmotorcycle\nKSHVle4SAM4_0\telephant\nKSZ7nkMWOsU_0\tskateboard\nKSZ7nkMWOsU_1\tskateboard\nKSj7hZ7oO18_0\tcow\nKS1ge4vlv64_0\tbicycle\nKS4vsIYGaCM_4\ttruck\nKS4vsIYGaCM_0\ttruck\nKS8UAlyHoCg_0\tdog\nKS_fak2guWU_1\tdog\nKTAMaZKxpF8_2\ttrain\nKTDhNtr8XF4_0\tairplane\nKTDzrCvIVQs_0\tdog\nKTQQtbUbWbA_0\tairplane\nKTZ2Jsj6_ig_0\ttruck\nKTdzxOjJNgI_0\tcar\nKTsTGNqrFuE_0\tumbrella\nKT7YiBWXqNk_0\tairplane\nKUZxnRyU2e8_0\tcat\nKUbSnz1yWxc_0\tknife\nKUc8Kw30V1Q_2\ttruck\nKUc8Kw30V1Q_3\ttruck\nKUc8Kw30V1Q_4\ttruck\nKUgY_2bsBC0_1\tskateboard\nKUhzqYZoYCI_0\tcow\nKUkcrqulhqg_0\tcow\nKUlpA-cpCpM_0\thorse\nKUumLype4AE_0\telephant\nKVFlTVdKQVw_0\thorse\nKVJCkQzQbMs_0\tperson\nKVmS-yiYu2c_0\tbicycle\nKVzW5MPT25A_0\tairplane\nKV0o55FO4XA_0\tskateboard\nKV3jtdzXA9U_0\tdog\nKV__RQ75-vw_1\tcow\nKWJiCsomGTA_0\tcow\nKWLl4vVumIs_0\ttruck\nKWSDQebY3dA_0\tcat\nKWwbFKgHqW0_0\tcar\nKWxd8IQ9_a0_0\tcat\nKW10UlO19uo_0\tbus\nKW4ovUCg7uU_0\tbicycle\nKW4ovUCg7uU_1\tbicycle\nKW5S4gsTVaQ_0\tknife\nKW7gAr7kgow_0\tdog\nKW_6RyjLGPI_3\thorse\nKXCQuD9phb4_1\tbird\nKXENib5sk78_0\tcat\nKXLWiz5ZUh0_1\ttrain\nKXLWiz5ZUh0_2\ttrain\nKXdF5__0yVQ_0\tcow\nKXf6k7PrX7E_1\telephant\nKXf6k7PrX7E_2\telephant\nKXrQkw1WPnk_0\tbird\nKXzu3MDaZn8_0\tcar\nKYK_Wg8JlTg_0\tskateboard\nKYK_Wg8JlTg_1\tskateboard\nKYTRCD2p-8Y_0\tmotorcycle\nKYZzKKYD7Yc_1\thorse\nKYaB_EEk344_0\tcat\nKYc__uUZkwc_3\tbicycle\nKYd6wCR0jVc_1\thorse\nKYd6wCR0jVc_0\thorse\nKYs4hm9X1Rg_1\tbicycle\nKYvXJXEbUMg_0\tbird\nKY0x7p41Q_A_0\tcat\nKY04L4VTsXc_1\tairplane\nKY04L4VTsXc_2\tairplane\nKY7D2Y5MQSo_0\thorse\nKZAf2uPS-us_1\thorse\nKZAf2uPS-us_0\thorse\nKZFniGi-fes_0\tdog\nKZJcgoY3r3U_0\tairplane\nKZSLQpdbGps_0\tmotorcycle\nKZYe6pqrLaQ_1\tdog\nKZhX7tDfYIA_0\tbus\nKZl_XArvSXk_0\thorse\nKZ4OuA1t3ZY_0\telephant\nKaUGkf-3N-4_0\thorse\nKaiX3d83DWA_0\tzebra\nKaj5B4nrWJU_0\tskateboard\nKapwOqVyzUk_0\tcat\nKaqToIfNxMY_1\tbicycle\nKauPg8P2kC4_1\tairplane\nKazepPKQz1M_1\tcow\nKazepPKQz1M_3\tcow\nKazepPKQz1M_4\tcow\nKa978At0k0Y_0\tairplane\nKa-4ZfE0GMQ_0\tmotorcycle\nKbA6UDJg1LE_0\ttrain\nKbA6UDJg1LE_1\ttrain\nKbGl5jqOQ7o_0\tcat\nKbRIbBeLBsM_3\tmotorcycle\nKbosOWR7ZSg_1\tboat\nKb3lxArGO8Y_0\tbicycle\nKb3lxArGO8Y_1\tbicycle\nKcDpzG8kKho_0\tcat\nKcL-zz1sb6I_0\tdog\nKceqMsKO-zc_0\tcat\nKcpGWNCD-uk_0\tcat\nKct9k6Q2YM8_0\tcar\nKcuEc9WwYSQ_0\tcow\nKcuEc9WwYSQ_1\tcow\nKcyLR4RxylE_0\tcow\nKcyMYgt62Go_0\thorse\niY5Sh73Lem0_0\tbird\niY6eEC8uY4E_2\ttrain\niY6eEC8uY4E_1\ttrain\niY9QlFmEBFY_0\tmotorcycle\niZsSK_iIOoA_0\thorse\niaGO2mTgoPo_1\tbicycle\niaGO2mTgoPo_3\tbicycle\niaWSU1ISWXQ_2\tairplane\niaWSU1ISWXQ_0\tairplane\niaflfMXT7QQ_0\tboat\niamGAsKNRhY_0\ttrain\niana0Lz1gs0_1\tmotorcycle\niasZRb9p3lg_0\tmotorcycle\nia1XmqAwn7M_0\tbus\nia6R3fqdlnE_0\tbear\nibcBDIGpMfo_1\tbus\nibd-Wxcr_x4_0\thorse\nibpj369yzbw_0\tumbrella\nibxmk7cGhTQ_3\thorse\nib5fWzJWV5A_0\tcow\nicDyRH3P-nM_0\tairplane\nicGjENlINL4_3\tskateboard\nich9rXZWjGY_0\tcar\nicic9NkCnf0_0\tcow\nicnuBKQZNBg_2\tbus\nicnuBKQZNBg_0\tbus\nicnuBKQZNBg_1\tbus\nicxOfJQ-l9I_0\tcar\nicxOfJQ-l9I_1\tcar\nicy3pC1Q0eA_0\tcat\nic7k8fkUDXs_0\tcow\nidnOwkwaCm4_0\thorse\nidnSzg_rV_k_3\tbicycle\nidoGYHCXGJs_0\telephant\nidq0Jqw8Oa0_2\telephant\nid1yzZ3HkTs_1\tknife\nieCL4lz7IJw_1\tboat\nieOpqoYhMOQ_0\ttruck\nieOpqoYhMOQ_1\ttruck\nieOpqoYhMOQ_2\ttruck\nieULzTIs9ls_0\tcow\niedgnWefCA0_0\tairplane\niedgnWefCA0_2\tairplane\niedgnWefCA0_3\tairplane\niewlg5CteEs_1\tairplane\nie8gkh6nQcA_0\ttrain\nifKKR-gCLSk_0\tcat\nifRQKBKIRSI_0\tdog\niff3KW8leKw_0\tairplane\niff3KW8leKw_1\tairplane\nifghH4Jo8D8_0\ttruck\nif31ci9xz_8_4\tbicycle\nif31ci9xz_8_1\tbicycle\nif31ci9xz_8_2\tbicycle\nigGtS-jZCQM_2\tcar\nigGtS-jZCQM_0\tcar\nigLVqNKw-yE_0\tbird\nigMWvnK1jEE_0\tgiraffe\nigMWvnK1jEE_3\tgiraffe\nigMWvnK1jEE_1\tgiraffe\nigQUACDrluw_0\thorse\nigU61tmxeE4_2\tskateboard\nigWsPt0nelg_1\tbus\nigcpSvypduQ_0\ttruck\nigcpSvypduQ_1\ttruck\nigdqmLfZ_cw_0\tairplane\nigjBIRwjlko_1\tdog\nigm6X4CZLmk_1\tbus\nignREcFRyaQ_7\tairplane\nignREcFRyaQ_8\tairplane\nigwghbZYjgg_0\tairplane\nihMDaxeTpZs_1\thorse\nihTjIMWOjuQ_1\tmotorcycle\nihUpF22zo4M_0\ttrain\nihUpF22zo4M_1\ttrain\nihWWle00xEE_0\tmotorcycle\nihh0J0AaWBs_0\ttrain\nihh0J0AaWBs_2\ttrain\niiA0hIRwwJA_0\ttrain\niiSWvRk3YfU_0\tbird\niiextKoe48U_0\tcat\niigPPpoo0W8_0\tknife\niiiOUcmwJPw_0\tcow\nii0PDMs-a0o_2\tcar\nii2ghwDAI3w_1\tairplane\nii_sG2SkeXM_0\tcat\nijB2Yh71VIg_2\tbear\nijJAWtORd2w_0\ttruck\nijJAWtORd2w_1\ttruck\nijVpcnt8HN8_0\tbus\nijXmwWOLvpM_2\thorse\nijXmwWOLvpM_1\thorse\nijdipMmraWc_0\ttruck\nijwhkKzyWE8_0\tairplane\nij0zLKtr0sA_0\tbird\nikGzd6ivk64_0\tmotorcycle\nikKFRS8Hivk_0\tbear\nikVu6XfZ3_A_1\tbicycle\nikafEc8p6rI_0\tbicycle\nikafEc8p6rI_5\tbicycle\nikafEc8p6rI_1\tbicycle\nikafEc8p6rI_3\tbicycle\nikafEc8p6rI_4\tbicycle\nikfmjumoUlM_2\ttrain\nik868nOtrZo_4\tbus\nik-jgdZW4Ek_0\thorse\nik__zZ1HZNg_1\tgiraffe\nilKErQ8ojz0_0\tumbrella\nilKErQ8ojz0_2\tumbrella\nilKErQ8ojz0_3\tumbrella\nilKW98Qvobg_0\tskateboard\nilvsheh1Cqs_0\tdog\nilxXSgvtFgw_0\tcow\nimEWC_Q-BSg_1\tcar\nimcRxs0K7H8_0\tbus\nimmhpBi8eWw_6\tskateboard\nim_FneG303c_0\tdog\ninEZ7ZLAS7s_5\tskateboard\ninJLKInP5kw_0\tdog\ninZmM8c-9NI_3\thorse\ninedUh-74-A_4\ttruck\ninodVLfFogA_0\ttrain\ninynAJrGhVU_0\tmotorcycle\nin061qZJjWI_0\tdog\nKc8WMzLKvvk_0\tcow\nKc-f3X7O-pw_0\tcat\nKc-x73DCumI_0\ttruck\nKdGgVhM0Ihg_0\tbird\nKdKlI0ZN6qo_0\tairplane\nKdQQqsAuU7o_1\tbicycle\nKdUSJz6UWLQ_0\tgiraffe\nKdXRnPKKeTU_0\tbird\nKddQJwFfv9s_2\tskateboard\nKdjMgSuON5w_5\tbear\nKdpUjVhfjG0_0\tperson\nKdyadP7Y1nU_0\tcar\nKd9Em2ABfN8_0\tcat\nKd-jTE5-2uE_1\tmotorcycle\nKeMITKdjHtk_0\tcat\nKenV2bIQf1o_0\tbicycle\nKevYmLAAigc_1\ttrain\nKe3R9FrGLcY_0\tdog\nKfJU66erPWo_2\tknife\nKfMO45jz-68_0\tboat\nKfS_UKkbQAA_0\tbird\nKfTV1TFY2b8_0\tbird\nKfaTw0euPQA_0\tmotorcycle\nKfjmKiZzSlY_0\tcow\nKfjmKiZzSlY_5\tcow\nKfkKe7q45KA_1\tmotorcycle\nKfkKe7q45KA_2\tmotorcycle\nKfkKe7q45KA_3\tmotorcycle\nKfpCncLoqOw_0\tcow\nKfwbVpPI0nU_1\tmotorcycle\nKgAFD_JvgrQ_0\tcow\nKgD3H0APDy0_0\tbear\nKgNS5HwFF_c_1\telephant\nKgVEQYicksA_0\tcow\nKgY5OrVnzv4_0\tcow\nKgo7SWtDdz4_1\tdog\nKg3xuyjNU7w_0\tumbrella\nKg7Qk4Gx9n0_0\tmotorcycle\nKhKZwdKiqms_0\tcow\nKhKcHaH_ALo_0\thorse\nKhPKq8O30VM_0\tbicycle\nKhPKq8O30VM_2\tbicycle\nKhPKq8O30VM_4\tbicycle\nKhuC9snWfpI_0\tcow\nKh7rAO7jCGc_0\tairplane\nKh_KwBHfGQ8_0\tcow\nKiHy8IMQ6zA_0\tairplane\nKiaUDlPLxzk_1\tbear\nKixl-Wmj3kg_0\tmotorcycle\nKjaag6B-MIQ_1\tskateboard\nKjca1u6P3NE_0\tcow\nKjiI2E3l3Mk_1\ttruck\nKjiI2E3l3Mk_2\ttruck\nKjqaJ25GUBI_0\tbus\nKj3dRtd4xQI_1\tcow\nKj3dRtd4xQI_0\tcow\nKkD23XYUG9c_0\tumbrella\nKkMNGzvNkg4_9\tbird\nKkNYBz9ZaVA_0\tbird\nKkNYBz9ZaVA_1\tbird\nKkPf9AB1HZo_1\telephant\nKkRq1ogJq-4_0\tskateboard\nKkXTT9C4xfc_0\tcow\nKkdSKHS7P50_1\tskateboard\nKks6eJqnZLQ_0\tdog\nKks6eJqnZLQ_2\tdog\nKks6eJqnZLQ_3\tdog\nKks6eJqnZLQ_4\tdog\nKks6eJqnZLQ_5\tdog\nKk6BgYl9OjA_7\tbicycle\nKlEK-vv3DVo_0\tbear\nKlENnLskuCU_0\tcat\nKlG0czACle4_1\tcow\nKlG0czACle4_0\tcow\nKlG0czACle4_2\tcow\nKlG0czACle4_3\tcow\nKlqbHICh4G4_0\ttrain\nKmJhshcviXA_0\tknife\nKmbMzgXFdKs_1\tairplane\nKmbMzgXFdKs_2\tairplane\nKmbMzgXFdKs_0\tairplane\nKmfmqwmQneM_0\tbird\nKmr5uVYVSDo_0\tcar\nKmuV8XfAjvw_0\thorse\nKm3GmgNJlL8_0\ttrain\nKm3GmgNJlL8_1\ttrain\nKm3GmgNJlL8_4\ttrain\nKm7w520V5vs_0\tairplane\nKnIxVxIho9w_1\tbird\nKnN2yDre-aM_0\tboat\nKnTu6keaGs0_2\telephant\nKnTu6keaGs0_0\telephant\nKnXPxa1RzmU_0\tcow\nKncYvkV6rwc_0\tboat\nKnql8E5Khc8_0\telephant\nKnuD87lrS8w_0\tskateboard\nKnvGRqLQ5iM_1\ttrain\nKoA6bPmALeA_0\tcat\nKoXgGmdVCBM_1\tbicycle\nKoXgGmdVCBM_10\tbicycle\nKoXgGmdVCBM_2\tbicycle\nKoXgGmdVCBM_3\tbicycle\nKoXgGmdVCBM_4\tbicycle\nKoXgGmdVCBM_5\tbicycle\nKoXgGmdVCBM_6\tbicycle\nKoXgGmdVCBM_7\tbicycle\nKoXgGmdVCBM_8\tbicycle\nKosi26dm76A_0\thorse\nKo5wlBGl200_0\thorse\nKo_Nx24OGxM_2\tairplane\nKpDzoM2xtwc_2\ttruck\nKpDzoM2xtwc_3\ttruck\nKpDzoM2xtwc_5\ttruck\nKpHFaYsgWrg_2\telephant\nKpHFaYsgWrg_1\telephant\nKpVflkpC7d4_3\tbus\nKpVflkpC7d4_5\tbus\nKpVflkpC7d4_0\tbus\nKpVflkpC7d4_2\tbus\nKpXxo2n6AYw_1\tmotorcycle\nKphl0WRacss_0\tknife\nKqAvXx4bN5k_0\tcat\nKqQgFUEAS-M_0\ttrain\nKqavxpR698k_6\tdog\nKqavxpR698k_0\tdog\nKqavxpR698k_1\tdog\nKqfo6_qcthc_0\tcar\nKqjhaIJMY5U_0\tcat\nKqnqyAczaqs_4\tbus\nKqqyldSpJh4_0\thorse\nKqqyldSpJh4_1\thorse\nKqzkADa-Lqw_1\ttrain\nKq1x16QvM1g_0\tdog\nKrGJjt0yq-s_1\tbus\nKriNb3dhqVQ_1\tskateboard\nin9LFcixPXo_0\tskateboard\nioEMtB2bP6o_0\tbird\nioESr4H79KY_0\tboat\nioGc_R8NJow_0\tcow\nioKahF3aFWw_0\thorse\nioKahF3aFWw_1\thorse\nioOHxrHumIk_1\tairplane\niobYquCNk5k_0\tcow\niojaZ646ie8_0\tskateboard\nipLnwxta1Jc_0\tboat\nipOJVFLMLIk_2\tbird\nipOJVFLMLIk_0\tbird\nipgB9KXnzK8_0\thorse\nipg_y1T2OsM_0\tcow\nipg_y1T2OsM_1\tcow\nipqQlNsINy8_2\tairplane\nipt6gWgCgis_0\ttruck\nip5xVRJOpP8_0\tumbrella\nip8BFE94TKo_0\tairplane\nip8BFE94TKo_2\tairplane\niqDJJqLVBBk_1\telephant\niqExYW2fPfc_0\tbear\niqicuLBaF_g_0\ttruck\niqlKzflOl00_1\tbus\niq1FaWFylpI_0\tmotorcycle\niq6izTYp-DU_0\tmotorcycle\nirBsER6ITHw_2\tskateboard\nirDs_vWExnM_1\tbicycle\nirDs_vWExnM_2\tbicycle\nirU_BJXoU9I_1\tcow\nirWY8s-JuBs_3\tairplane\nirWY8s-JuBs_0\tairplane\nirWY8s-JuBs_1\tairplane\nirWY8s-JuBs_2\tairplane\niramP9ihj_w_1\tbird\nirgacv6LobE_0\tmotorcycle\niri1MtEgOjQ_0\tbear\nirs2O6YOB5I_3\telephant\nirs2O6YOB5I_5\telephant\nirs2O6YOB5I_1\telephant\niruY-BU0rpg_4\telephant\nirzcPf--6uQ_0\ttrain\nirzcPf--6uQ_4\ttrain\nirzcPf--6uQ_5\ttrain\nir4EYn7Fz5A_0\tdog\nir5E9O2Tonk_0\tboat\nir7Dq5dPxOQ_0\thorse\nisPplb7aotI_0\tboat\nisPplb7aotI_3\tboat\nisU4229ndXM_0\tcat\nisfwmnXNmeM_2\tcow\nislz_HxqOnI_0\tbird\nisvvRHvNuIw_4\tumbrella\nisynk11V9s8_3\tairplane\nisynk11V9s8_1\tairplane\nisypXPZMgns_2\tboat\nisypXPZMgns_3\tboat\nitKyPMv5z0Y_0\tumbrella\nitKyPMv5z0Y_2\tumbrella\nitc-A2zwSGM_0\tdog\nitrvgHryhIY_0\ttrain\nits4C4ty2oA_0\tskateboard\nittQcsrECUE_1\tbear\nittQcsrECUE_2\tbear\nit1EatlrBkg_0\tcat\nit3KS-r39EQ_1\tknife\nit3hCzfmyfs_0\tcow\nit6DtEGdhas_0\tcat\nit8Fid-mqRQ_0\ttruck\niuEbY8B4Qo4_0\tcow\niuEbY8B4Qo4_1\tcow\niuFmdispR2U_0\tbicycle\niuRmu4BN6bw_0\ttrain\niumTd9IGDho_0\ttrain\niusgUMlrYFA_0\tairplane\niutdZMWA8f0_0\tperson\niuumrgHW8zM_0\tumbrella\niu3sd1qnr8g_0\tcar\niu9Av4HCmiw_0\tknife\nivDeIaJYIlE_0\ttruck\nivT103z2bwc_0\tgiraffe\nivdfO5VqKo4_0\tcat\nivgTXhIqccY_0\tcat\nivi1frbFnGw_1\tgiraffe\niwFO7lcVjKc_2\tcow\niwFO7lcVjKc_0\tcow\niwFO7lcVjKc_1\tcow\niwX4cgfQn5s_0\tbird\niwczN64AC9Y_0\tbus\niwp5aVOXWaM_0\tairplane\nix8S6CRuUFg_3\tbear\niyAvqfMVOeA_0\tcat\niyLZZlL-B80_0\tcow\niyMbIICjtcg_0\tcow\niybJfH6iVdU_0\tbus\niygW3-Ovcic_0\tcow\niyn1OZFmvXE_2\tbird\niyz9Lq13Mcg_0\tcow\nizbTUTqkG7c_0\tcow\nizx70OqPYBc_0\tdog\niz9-Vl4e9po_0\ttrain\niz9-Vl4e9po_2\ttrain\niz9-Vl4e9po_3\ttrain\niz-BT0NAs6k_1\tknife\ni0Eg02B3JoM_0\telephant\ni0Ez1KT7sTo_0\thorse\ni0ZE0kXl5oU_1\tskateboard\ni0eMgZ0riHI_2\tbird\ni0gg-mJNKlU_0\tcow\ni05OPAsrmJI_3\telephant\ni05OPAsrmJI_1\telephant\ni05OPAsrmJI_2\telephant\ni09cuoC14q4_0\tbear\ni1DfyWe0Jh4_0\tcow\ni1DfyWe0Jh4_1\tcow\ni1NfFxZmBSA_0\tbus\nKrvsSuIgrJQ_4\thorse\nKrvsSuIgrJQ_1\thorse\nKsT2_VxPkb4_0\tknife\nKsXzFCpHMPU_0\tgiraffe\nKsyud0_i1zI_0\tbus\nKtINrfbQSXk_0\tknife\nKtV59qZg7BU_0\ttruck\nKtX4x9k3J2A_0\ttrain\nKthi3i2WM3s_1\tskateboard\nKtkN77asAj4_0\thorse\nKtplZx6_ecU_1\tknife\nKtqvSap6uig_0\tskateboard\nKtxb4OmaAjA_0\tcar\nKt3uQcxNltk_0\tzebra\nKt9neWWjkHM_2\tbear\nKuBa9tep8xk_0\tbear\nKuQgP71vfZ0_0\ttrain\nKuYBJ90zNYw_0\tumbrella\nKuYjBUvU-ws_0\tumbrella\nKuYrzelSfIw_0\tcar\nKulks153IS8_0\ttruck\nKulks153IS8_1\ttruck\nKu0XhH2YeG4_0\tbear\nKvH6JyHG3H8_0\tmotorcycle\nKvH6JyHG3H8_1\tmotorcycle\nKvLXxaGooPk_0\tcow\nKvPLPO4A5R8_0\tknife\nKvRsu4xefwo_0\tperson\nKvcxzJxNkkU_1\tbird\nKveRZ7dBNGU_0\tboat\nKvgupPBw5rc_0\tcat\nKvjDDIthDDM_0\tcow\nKvkOTtqxJlo_1\tcat\nKvsaKWirK7Y_0\tskateboard\nKv0ui3mEWGE_0\thorse\nKv0ui3mEWGE_4\thorse\nKv0ui3mEWGE_1\thorse\nKv0ui3mEWGE_2\thorse\nKwkcPYl8Lv4_0\tcow\nKw7t6l8h2Ns_0\tbear\nKw7t6l8h2Ns_1\tbear\nKw8037OwDjc_0\ttruck\nKxWI3M2FGOw_0\thorse\nKxZXot9AIY4_0\ttruck\nKxflrYttp20_0\tbird\nKxlTxdqDDzo_0\tcat\nKxuqb_htGwY_0\tgiraffe\nKxuqb_htGwY_2\tgiraffe\nKx40to29YnE_0\tskateboard\nKyDXCruNNj4_0\thorse\nKyUM64yfNCA_0\thorse\nKyWUn_bj5rM_0\tmotorcycle\nKyZWWIsQUbg_0\tskateboard\nKyZWWIsQUbg_1\tskateboard\nKyaKfhOfKhE_1\tbird\nKyt325n06oI_0\tcat\nKywHhzvsm3Y_0\tbird\nKyyS9PYJ9Zo_0\ttruck\nKzK3iwncxbY_0\tbicycle\nKzK3iwncxbY_1\tbicycle\nKzc17TzutkM_0\tskateboard\nKzc17TzutkM_1\tskateboard\nKzyD-e7N2D4_0\ttrain\nKzyD-e7N2D4_1\ttrain\nKz3zulHzEE4_1\ttrain\nK0CwoXVMp0M_0\tbicycle\nK0L3_2UquEY_0\tboat\nK0Zt-EcXkj8_1\tairplane\nK0cgwgX_8fo_2\tboat\nK0xs4bH65_Q_1\tmotorcycle\nK02fUURwCiY_2\tcar\nK02fUURwCiY_0\tcar\nK02fUURwCiY_1\tcar\nK1Qbgm__2iE_0\tcat\nK1ccfBgR_kg_0\ttruck\nK1-s4sk63R4_0\thorse\nK1_J3d_yH64_0\tmotorcycle\nK2F6TCgVfR0_0\tboat\nK2hV4KVruLc_0\tairplane\nK2my8qWjyn4_0\tcat\nK2yjgwFV15k_1\tmotorcycle\nK2yjgwFV15k_0\tmotorcycle\nK26jSjClwaQ_0\tskateboard\nK3Cgw_EFdbw_1\tmotorcycle\nK3DniaFnn9E_0\tcat\nK3KhxEuf8mY_0\thorse\nK3KhxEuf8mY_5\thorse\nK3Ov5rPJ2LE_1\thorse\nK3XsEMr7Qt4_0\tperson\nK3qgW4Y3yrk_0\tmotorcycle\nK30LSGFu6hs_0\tmotorcycle\nK4RE7AZWGv0_0\tcar\nK4U_AmqQFDY_0\tbear\nK4VnWy2-8xQ_3\tcar\nK4ec2MqDkPw_0\ttrain\nK4fCUNjbdf8_0\tmotorcycle\nK4wp52Zn5d4_0\thorse\nK5NooGgwD1E_0\thorse\nK5NooGgwD1E_1\thorse\nK5pBkPv_1sg_5\tcar\ni12y-zJl-nA_0\tcat\ni17EaDmRPCg_0\tumbrella\ni2Yjl6kF8iY_2\tairplane\ni2Yjl6kF8iY_0\tairplane\ni2cujNbMSKc_1\tskateboard\ni2diIHrCsbk_1\tbird\ni3AK_cujBxY_1\tmotorcycle\ni3BpSeFJdgo_0\tcat\ni3HeGqUyibM_4\tbicycle\ni3HeGqUyibM_9\tbicycle\ni3HeGqUyibM_12\tbicycle\ni3LFAemLFW0_0\thorse\ni3Z5pFF2dH0_0\tbird\ni3a4U770GtE_0\tperson\ni31nG3E36WE_0\tknife\ni32p4KoRD2o_0\ttrain\ni33S_D8TBc4_0\tdog\ni35wpbpl8qY_2\tboat\ni38dpYWvJN8_0\tumbrella\ni38dpYWvJN8_1\tumbrella\ni4CFI7MtlRs_0\tcat\ni4ExemfAEO8_0\tbicycle\ni4IpgDIqTrs_0\tboat\ni4RZtd1cCw8_0\tumbrella\ni4bRNqQ32MI_0\tcat\ni4clJpNvw4M_2\tbus\ni4hqN47R0oU_1\ttrain\ni45JoRzDdI0_0\tcow\ni46jok5cjyY_0\thorse\ni5GJ6mIp8zc_0\tboat\ni5G6RkcL4m0_0\tcat\ni5OdBE4QG6c_0\ttrain\ni5g87UeVkBU_0\thorse\ni5g87UeVkBU_1\thorse\ni5sT2ifoPyM_0\tknife\ni6MF-PGtJiE_1\ttrain\ni6WTNPwIjW8_0\tcat\ni6aJqhBh5wg_0\tskateboard\ni6j6P7ITxYg_0\tcow\ni6vwTWezXmU_1\tboat\ni66Gsq6zzqI_0\tmotorcycle\ni6-YQ6rSnDI_0\tcat\ni6_oBTD2-YA_5\tbird\ni7P2tq4TS_4_2\tbus\ni7UQGL5uxvw_1\tskateboard\ni7WeV3CfJV8_0\tknife\ni7a8sQcVRgE_0\ttruck\ni7umCLnxVXw_0\tcat\ni791If0qoBU_5\tknife\ni8KQCu2cMAc_2\tbicycle\ni8KQCu2cMAc_4\tbicycle\ni8bVI1667K4_1\ttruck\ni8hjK42sseE_0\tmotorcycle\ni8lG7Ux3wlc_0\tdog\ni8nbuADJjmE_0\tcar\ni8nbuADJjmE_1\tcar\ni8nbuADJjmE_2\tcar\ni9PUn4sF30g_0\tmotorcycle\ni9T-NwSBqPE_1\tknife\ni9VWkuQHBls_0\thorse\ni9nmvkDiFGc_0\tcow\ni9sP7mWuQ_8_2\tmotorcycle\ni9sP7mWuQ_8_1\tmotorcycle\ni9u4vsQUBTQ_0\thorse\ni90TDb7evCY_0\ttruck\ni9_FG4-2VIM_0\tskateboard\ni-CQVFq1JI8_1\tbicycle\ni-CQVFq1JI8_3\tbicycle\ni-T9Q2g8xbk_0\tairplane\ni-kodOT_ufM_0\tcow\ni-nP7aFTZb8_0\tbird\ni-xdWDN7Eys_2\tknife\ni-3aAuwOmxc_0\ttruck\ni-8W-K4y3nY_0\ttrain\ni_HHc85mP4Q_0\ttrain\ni_h0vOCrd_U_0\tairplane\ni_h0vOCrd_U_1\tairplane\ni_iXTMX4Vls_0\tcat\ni_nZ8ImBf18_1\tbicycle\ni_nwFUP7QJM_0\tknife\ni_4c71HPXOI_0\tgiraffe\ni_-PIEIGkQE_0\thorse\ni_-PIEIGkQE_1\thorse\njAH-80rHWKY_3\tbear\njAW8iLGAgdQ_1\tbear\njAW8iLGAgdQ_0\tbear\njAh4oBD0Bsw_0\ttrain\njAnV_6fFGnI_0\tcow\njAy3VhkJauE_2\tknife\njAy3VhkJauE_5\tknife\njA6aZl1f4Wg_0\tbicycle\njBMmFLPc7nA_6\tbus\njBMmFLPc7nA_0\tbus\njBMmFLPc7nA_3\tbus\njBMmFLPc7nA_5\tbus\njBTJgbVspOA_0\tairplane\njBl50J7bOEw_1\tairplane\njB1IT1aBj-Y_0\tdog\njCDFU72N7Mc_1\tskateboard\njCJGjjNBSk8_1\tairplane\njCJGjjNBSk8_0\tairplane\njCMWNtCzuqU_0\tknife\njCUnLxCoYMA_0\tmotorcycle\njCY67ybfyqU_1\tcow\njCZx5dn_4KA_0\tbear\njCcW1MW6PTE_0\ttruck\njCcW1MW6PTE_1\ttruck\njCiwgfC1uN0_0\tdog\njCtFgJ1qhJE_0\tbird\njC5Px208OVY_4\thorse\njC5Px208OVY_5\thorse\njC5YGckTiIU_2\ttrain\njDFqxB4rC7M_0\tcat\njDJNC5fzvfA_1\tmotorcycle\njDYks7hSKbg_0\ttruck\njDbHjQZ5R70_0\tairplane\njDbHjQZ5R70_1\tairplane\njDdFavN2eWY_0\tdog\njDgpggXdBIc_1\tmotorcycle\njDgpggXdBIc_2\tmotorcycle\njD2RjyxG6ow_0\tmotorcycle\njD4621IQz3w_0\tdog\njD4621IQz3w_1\tdog\njEASZOuNSS0_3\tskateboard\njEASZOuNSS0_0\tskateboard\njEASZOuNSS0_2\tskateboard\njEEOkCjU9y0_0\tbear\njEJZ76_xhog_2\tbear\njEQDhb_Zewo_0\tcat\njEYG-qIv34o_1\tcat\njEYG-qIv34o_0\tcat\njEfwj-JzFXo_0\tperson\njE1Rq_Ot02M_0\tdog\njFAm4tikj6E_0\thorse\njFSIX_KuRK8_0\thorse\nK5p31PQkx3I_1\thorse\nK5q4FoXnLwI_0\ttrain\nK5sQWplX-D8_1\tskateboard\nK5sQWplX-D8_2\tskateboard\nK6JHTga6VU8_0\tairplane\nK6SFafS3Zv8_0\tcar\nK6SFafS3Zv8_2\tcar\nK6jf51to7dU_0\thorse\nK6jf51to7dU_1\thorse\nK6sKjN_MOsE_1\tbear\nK6srgkSvZdw_1\tskateboard\nK6srgkSvZdw_2\tskateboard\nK6vEY0vOlSg_1\ttrain\nK66dqG9OJuo_1\tdog\nK66dqG9OJuo_0\tdog\nK6_WEh-eizw_1\tairplane\nK6_WEh-eizw_2\tairplane\nK6_WEh-eizw_4\tairplane\nK7uSHqISah0_0\ttrain\nK702Tx5vkp4_0\thorse\nK78iEUHTTZc_1\tcat\nK8aa-7brUTs_0\tbear\nK8vGdEhh_jU_0\tbicycle\nK81vEhukX4U_0\tmotorcycle\nK9LhqtvfZ10_0\tdog\nK9LhqtvfZ10_3\tdog\nK9LhqtvfZ10_4\tdog\nK9LhqtvfZ10_5\tdog\nK9TPOifKCmU_0\tmotorcycle\nK9hTkmr_71A_2\tcar\nK9jCx7G3_Mw_0\tknife\nK9kNamc2c5Y_1\tdog\nK9kNamc2c5Y_0\tdog\nK9wE7VzJD00_0\ttrain\nK-Dz6gr96Lo_0\tdog\nK-s8RPMLRw4_0\tbird\nK-s8RPMLRw4_2\tbird\nK-x3x3kGGqg_0\tdog\nK_PGa9Eo6mo_1\tdog\nK_VS3tyB-Cc_0\tperson\nK_Z28TO4stg_0\tbird\nK_h1L3P_j1M_0\tbird\nK_pO-MBS7lI_0\tdog\nK_qFWKniImU_0\tskateboard\nLAKF499FHX0_0\ttrain\nLAKF499FHX0_4\ttrain\nLAKF499FHX0_1\ttrain\nLAKF499FHX0_2\ttrain\nLAKF499FHX0_3\ttrain\nLARRHwtW8fE_1\tdog\nLAZoyKF7lbQ_0\ttruck\nLAZoyKF7lbQ_2\ttruck\nLAZoyKF7lbQ_3\ttruck\nLBJEbJfzvW4_1\tskateboard\nLBOXDMZvtBY_1\ttrain\nLBnsLkuQ8kE_0\tperson\nLBwm49n5rKo_0\tmotorcycle\nLB6fi4oTKvQ_2\tdog\nLB8Wc8hU4Hc_0\tairplane\nLCGZmNGyPhM_0\tboat\nLCghaNtVeM0_1\tknife\nLCjQb5zLTCs_0\ttrain\nLCoIwiCBlW4_0\tdog\nLCxiwbrpEFI_2\tbus\nLC5Qly11BZs_0\ttrain\nLC5q2G2pxT0_0\tbus\nLDEju5sQWOU_1\tbear\nLDH_eiO0aFE_0\tboat\nLDJ9xB-n5Sg_0\tdog\nLDJ9xB-n5Sg_1\tdog\nLDQiOOCMhs4_0\ttruck\nLDQqhsLKyjs_0\ttrain\nLDYFndJjRGA_0\tskateboard\nLDgpZlJ_QYM_0\tboat\nLDh-8GoBSLw_0\tbear\nLDlR_gDbVFk_0\tairplane\nLDvN2rB8p44_0\ttrain\nLD-8yzPoOIQ_0\tcar\nLD-8yzPoOIQ_1\tcar\nLD-8yzPoOIQ_2\tcar\nLEH61oMv2So_1\ttrain\nLEIkLV_S5yA_0\tcat\nLEP6ZOl5iw0_0\thorse\nLEUCQjNIm9E_0\tknife\nLEYBNQUwruU_0\tdog\nLEiolk6i9RI_0\thorse\nLEmU61Tdqxs_1\tmotorcycle\nLEverFsHygc_1\tairplane\nLE2ks85I17U_0\tbird\nLFDqskJozig_1\tskateboard\nLFMUePhHPAk_1\tcar\nLFZYYpjP3FA_0\tknife\nLF4xVBfV5SI_1\tbird\nLGRkVRP-RTs_0\tcar\nLGgzD_ng3aA_1\tbear\nLGrMlBi0l6Y_1\tboat\nLGuSLUeKcTo_0\tbird\nLG0w1oTdXgY_0\tbird\nLHEuYW96FG0_0\tbear\nLHEuYW96FG0_4\tbear\nLHbVe_bjGp0_2\tdog\nLHbVe_bjGp0_0\tdog\nLHbVe_bjGp0_1\tdog\nLHmvAqv6kYE_0\tzebra\njFneoJr36o8_0\tcar\njGCw13fkf0Q_2\tmotorcycle\njGPtq4pO8Ug_0\tcar\njGTNsTUkNUw_0\tcat\njGTr1LSaGGw_1\tbicycle\njGTr1LSaGGw_2\tbicycle\njGTr1LSaGGw_0\tbicycle\njGlNsqDOz8Y_0\thorse\njGqRX9IwGI0_8\tbear\njHK3JYa_Ypg_0\tumbrella\njHM867g1K8k_1\thorse\njHM867g1K8k_0\tperson\njHy5deaCjQE_0\tdog\njH_YxkU_JwE_0\tmotorcycle\njINuUqU6sJI_0\tdog\njIP9FdmB0_E_0\ttrain\njIbmC5sed8I_1\tairplane\njIjEX8I5SHo_1\tbird\njIjEX8I5SHo_2\tbird\njInMbuzvtiQ_0\tumbrella\njInMbuzvtiQ_1\tumbrella\njI0xgoZ8QDA_0\tboat\njI1Swlwj_wc_0\thorse\njJMefDe4r9w_1\tskateboard\njJR-emvmi9s_0\tbear\njJR-emvmi9s_1\tbear\njJf_N_p-Gjo_1\tskateboard\njJnz3tS1uME_0\tmotorcycle\njKBU4c1AdSQ_0\tcat\njKv6Q1RRxVM_1\tboat\njLBSOa5iDgE_0\thorse\njLR7LmbNekc_0\tmotorcycle\njLXuZdAveV0_2\tboat\njLXuZdAveV0_0\tboat\njMNaKigE1eI_0\ttruck\njMNaKigE1eI_1\ttruck\njMVeJ3RbcH4_0\tcar\njMaYIgpjxlk_0\tdog\njMmjaxXWaUk_1\tbus\njMo01X2mBq0_0\tbus\njM79QETqts8_1\thorse\njNCq29f3J8Y_0\tairplane\njNE_FcqbQN8_0\tmotorcycle\njNJJgAg79KA_1\tairplane\njNJJgAg79KA_0\tairplane\njNKO9msLe34_1\tairplane\njNKO9msLe34_0\tairplane\njNSTcIQwl_g_3\ttrain\njNSTcIQwl_g_1\ttrain\njNSTcIQwl_g_2\ttrain\njNllRQ66Re4_3\tdog\njNn7v2MFg_U_0\ttruck\njNsEePln1_U_0\tbird\njNsEePln1_U_1\tbird\njNt8Vn-WKRI_1\thorse\njN-BXoM15Qs_0\tcat\njOQ0W0Z_-Uo_0\tdog\njOl4m5QdOZQ_0\tbus\njPaVdR2IRu8_0\tairplane\njPiVFMGvHbM_0\ttrain\njPiVFMGvHbM_1\ttrain\njPrY_Xz0CDM_0\tknife\njP5RhcwO4E4_1\tdog\njP7mwBStU3w_0\tdog\njQBc1CqjGOk_0\tskateboard\njQCrA8Bjbp8_0\tbird\njQXYSlXk7_c_3\tbear\njQXYSlXk7_c_1\tbear\njRIy_wUojcs_0\tcar\njRR6sU59uTo_0\tairplane\njRTkny0bdY0_2\tmotorcycle\njRTkny0bdY0_1\tmotorcycle\njRh5WphQGDI_0\thorse\njRqdnQ8HlwQ_0\tairplane\njR7eq8CAmbs_0\tairplane\njR-Cbp3qBJI_2\thorse\njR-Cbp3qBJI_0\thorse\njSS6b2iz2hk_0\tknife\njSk-3X-hjyg_1\tknife\njStwl7WfsVE_0\tskateboard\njTAz5HO8mQw_0\tcat\njTHDoLyfTLc_0\tdog\njTQ5A95TKw8_0\tcat\njTYsK4JKns8_0\tgiraffe\njT1mDaHStHU_0\ttrain\njUDnkkvVKNo_0\tairplane\nLIw68irBLtE_3\tairplane\nLIzgqx7Ykxw_0\tairplane\nLI286rLHd0I_0\tbird\nLJGQA810BtE_0\tbus\nLJJuw5mLJ4Q_0\tskateboard\nLJhCGLht3Rw_0\ttrain\nLJhCGLht3Rw_1\ttrain\nLKe9a7L3vkk_0\tbird\nLKhjmARDv7k_4\tbear\nLKhjmARDv7k_6\tbear\nLKoaXogFTbc_0\tdog\nLKyQ2fBNVmw_3\tskateboard\nLK2-EMocZQs_6\tdog\nLK2-EMocZQs_1\tdog\nLK2-EMocZQs_3\tdog\nLK9zoUrrEHc_0\tskateboard\nLLJiqe0d06I_0\ttrain\nLLOwSRx9hxo_0\tbird\nLLVr7tG42kw_0\tmotorcycle\nLLW1jx3S-Hw_0\ttrain\nLLjDNseEw0c_0\tskateboard\nLL_DiAJ71rc_0\tbird\nLMGo4BXG4Yw_8\tknife\nLMRH29tlDrM_0\tcat\nLMrDuKEYJ3k_0\ttruck\nLM1djNtENzA_0\tcat\nLNQHybwdHRk_0\tairplane\nLNX244qUx7M_0\tdog\nLNntRLW2bHA_3\tskateboard\nLNntRLW2bHA_0\tskateboard\nLNntRLW2bHA_2\tskateboard\nLN6DT1DOaTg_5\tskateboard\nLOBD9yc5YPM_1\tskateboard\nLOMTlGqGyHc_0\tmotorcycle\nLOjc-npcSjs_0\tairplane\nLOjc-npcSjs_2\tairplane\nLOjc-npcSjs_4\tairplane\nLOjc-npcSjs_9\tairplane\nLOlUKQgr7Qg_0\tboat\nLOosqz3z8Xw_0\ttrain\nLOzh9vxSHPg_0\tdog\nLPQv6LdOZHo_2\tmotorcycle\nLPQv6LdOZHo_1\tmotorcycle\nLPZjxIqs8Uw_2\tairplane\nLPd_Y8gk5uI_1\ttrain\nLPgmaebC-L0_2\tboat\nLPtcpZXDhHw_0\tknife\nLPvsAAlZI_8_1\tbus\nLP3a2L1ZCyg_2\tdog\nLP8dyCxmCrI_2\ttrain\nLQAF34GzpMY_0\tairplane\nLQO68Aj4ons_0\tcar\nLQRuelaTZd4_0\tbear\nLQRuelaTZd4_1\tbear\nLQT4GnnPhA8_1\tdog\nLQbQVeZrwEk_0\tmotorcycle\nLQdP4gNX9Aw_0\tbird\nLQjzonTrY2o_0\tbear\nLQr5vK-X1fQ_0\tcat\nLQ2EDJSNIN0_1\tdog\nLQ2EDJSNIN0_3\tdog\nLQ4z96EA6co_2\tbird\nLRSii99-QIo_1\tzebra\nLRgsl5_TJVg_2\tskateboard\nLRgsl5_TJVg_0\tskateboard\nLRgsl5_TJVg_1\tskateboard\nLRtLr32oPAw_0\tskateboard\nLR7IHIbXtrE_0\tbird\nLSE0KHhFxps_0\ttrain\nLSMKaXjXnhE_1\tboat\nLSi1i5lSUjA_0\tdog\nLSqIpguEI04_0\tmotorcycle\nLSqIpguEI04_1\tmotorcycle\nLSvVMD-SF48_1\tbus\nLS8qQoB3Uw8_0\tdog\nLS8qQoB3Uw8_1\tdog\nLTEyQSswTVI_0\tbus\nLTQPc_WVFOw_0\tairplane\nLTQPc_WVFOw_1\tairplane\nLTQPc_WVFOw_2\tairplane\nLTQPc_WVFOw_3\tairplane\nLTaExiLK2S0_2\tbear\nLTaExiLK2S0_3\tbear\nLTaExiLK2S0_4\tbear\nLTaExiLK2S0_6\tbear\nLTaExiLK2S0_7\tbear\nLTjSA_-Q5DU_1\tknife\nLTkuM5IoNV4_0\tmotorcycle\nLUCDeZOOhlg_0\tcat\nLUUYKUhaYZs_0\tbus\nLUjqWGI9KSo_2\ttruck\nLUphe242a5g_0\ttrain\nLU4-QjhixQU_0\tmotorcycle\nLU4-QjhixQU_1\tmotorcycle\nLU__7PPUMTo_0\tskateboard\nLVCMA3LXlkc_0\tairplane\nLVfXvn7elFI_0\tperson\nLVfrWLnu7T8_0\ttrain\nLWHshdXjBCY_0\ttruck\nLWQhidgjZno_0\tmotorcycle\nLWRXboX1o5Y_0\tmotorcycle\nLWTYrbFCPl0_0\tdog\nLWY9Y2YVtHA_1\ttruck\njUQUg-qsfgI_0\tmotorcycle\njUWm1Mc1Tno_0\tairplane\njVEM2JpS4sE_0\ttruck\njVZhyibQ31g_0\tcat\njV9-Lr_rsf0_0\tbicycle\njWCpff7m0LE_1\tairplane\njWCpff7m0LE_8\tairplane\njWCpff7m0LE_0\tairplane\njWCpff7m0LE_2\tairplane\njWCpff7m0LE_10\tairplane\njWGulD3X0qw_0\tcar\njWIFscsXRmo_0\tskateboard\njWLv1BQ4PsA_0\tbear\njWawsbm6dCc_0\tbear\njWfItNlOURk_0\tmotorcycle\njWfItNlOURk_1\tmotorcycle\njWruD-mHxrQ_0\tcat\njW4VRs_uVZw_2\tairplane\njW4VRs_uVZw_5\tairplane\njW4VRs_uVZw_0\tairplane\njW4VRs_uVZw_4\tairplane\njXBBnV6cop0_0\tcar\njXDxesHRKAc_0\tumbrella\njXLUgu4rET0_1\tcat\njXkzrsfYgbs_0\tdog\njX84bwkb-r0_3\tbus\njYBgSw-woGw_2\tbear\njYIWAGlIq9c_0\tskateboard\njYZmjlzKhL8_1\tskateboard\njYhAd9FFxqI_0\tumbrella\njY37CiJCKJk_0\tcat\njY9ihstGQwU_0\tcat\njZWITYFghgA_0\tcat\njZZBR49_vR0_0\tmotorcycle\njZiuOZwq7gQ_0\tmotorcycle\njaS19NIXdrk_0\tmotorcycle\njaVgyhuxK_4_3\tskateboard\njaVgyhuxK_4_0\tskateboard\njalIqFA40pI_1\tmotorcycle\njalIqFA40pI_2\tmotorcycle\njaoXgM9c7u4_1\tcar\njaovVHNORuA_0\tcat\njauLT1ElBPc_1\ttrain\njauLT1ElBPc_2\ttrain\njbN4y-wz5-s_13\tgiraffe\njbN4y-wz5-s_1\tgiraffe\njbN4y-wz5-s_4\tgiraffe\njbN4y-wz5-s_5\tgiraffe\njbN4y-wz5-s_11\tgiraffe\njbhxM5eNgO0_0\ttrain\njboQE0Z0280_0\ttruck\njbrhKjPDzhE_1\ttrain\njbwSKNFH66s_0\tdog\njb23jXcxaHE_1\ttrain\njb23jXcxaHE_2\ttrain\njb23jXcxaHE_8\ttrain\njb23jXcxaHE_9\ttrain\njb3uct7NumU_0\ttrain\njb4crk58m88_0\tskateboard\njb4672rSRIs_0\tdog\njcLbvoEUbj0_0\tairplane\njc2fijpD8vI_0\tbicycle\njc-IKl7He7U_0\tknife\njduOxfYHRGQ_0\tperson\njeBcjSSkUhw_0\tcat\njeFFdyPLUts_1\tboat\njeWf_4ARan0_1\tbicycle\nje8cw_bajbc_1\tcat\njfENtrpYNKE_2\tbear\njfENtrpYNKE_1\tbear\njfixAXjax5I_1\tmotorcycle\njfixAXjax5I_2\tmotorcycle\njfixAXjax5I_0\tperson\njgAt3qPg7A8_2\ttruck\njgD77Vh-X28_0\tmotorcycle\njgGLyRuFOdk_0\tbus\njglg4qcOpWw_0\tskateboard\njg7I2TXyQ2Y_2\tbus\njhQ4iIJ42Yw_0\tcat\njhSH0EjNy0k_0\tcar\njhjKdc7FtE0_5\tairplane\njiAVTB1keAQ_0\tbicycle\njiCp6fAMISg_0\tcat\njiJWjndM8hI_0\tknife\njjDZnXMMhEA_0\ttrain\njjKsYbTw1qk_0\ttruck\njjNxX05CDNc_0\tbird\nLWv0LbGIDi8_0\tcar\nLWxkJ4fux_I_0\tknife\nLWy-Lhb3YEk_0\tbear\nLWy-Lhb3YEk_1\tbear\nLW3bZPt1qrw_5\tboat\nLW7XQWZjBIw_0\tdog\nLXLI-Bzcsf4_2\tknife\nLXLmpEVYE5E_0\ttrain\nLXgItdZ5DXo_0\tairplane\nLYLuXQRCIJ4_0\tcar\nLYXMPTRr40M_0\tdog\nLYXMPTRr40M_2\tdog\nLYmsSNBP634_0\tknife\nLY-hwswMG4g_0\tcat\nLZJjKCpcAWA_1\tknife\nLZ_qufxYP3I_0\tcat\nLaA51BrvHGw_1\ttruck\nLaA51BrvHGw_2\ttruck\nLam8oTdJids_0\tcar\nLanX2twvMmw_1\tairplane\nLanX2twvMmw_0\tairplane\nLan3os3aUl8_0\tboat\nLbC7nqh0Uyg_2\ttrain\nLbEPmGgzUIE_0\ttruck\nLbvEMq_DQTU_1\ttrain\nLbv8FZelQCM_0\ttruck\nLcD_I0Lkw3k_0\ttrain\nLcD_I0Lkw3k_2\ttrain\nLceJwFxs3q8_0\tdog\nLdEeXsYfzE0_0\tcar\nLdLtHx09mII_0\tskateboard\nLdL-cFGaJqU_0\tbird\nLdRX8-r4Cpc_0\tcar\nLdggIc_gAew_0\tmotorcycle\nLeAl87F6eS0_2\tumbrella\nLeOCD9rZsSI_0\tbird\nLeX-zqgzN3k_1\tbird\nLeljDmw2CGU_0\tskateboard\nLfAbAKrmMq0_6\tgiraffe\nLfAbAKrmMq0_7\tgiraffe\nLfAbAKrmMq0_1\tgiraffe\nLfatUu2cH3Y_0\tcar\nLfbQRAjsucU_0\tcat\nLf5ebV_NH78_0\ttrain\nLgVi03EiPlQ_2\ttrain\nLgVi03EiPlQ_0\ttrain\nLgZrI3dxws4_0\tmotorcycle\nLgrPr2OxWcw_0\tgiraffe\nLgyj-vOk72M_0\tumbrella\nLhdXtQ8SbGE_1\tbird\nLhgyObbNmLI_0\tbus\nLhhzzaKmVO4_2\tmotorcycle\nLhm6JF_1lQg_1\ttrain\nLhnNboAgtNg_0\tcat\nLhtrfEijGHU_0\tairplane\nLiMriWExmQM_0\tboat\nLiZxvVZfUdU_2\tumbrella\nLiwliE18fA4_0\tmotorcycle\nLiwliE18fA4_1\tmotorcycle\nLiwliE18fA4_2\tmotorcycle\nLizh5Kae5Nk_2\tknife\nLizh5Kae5Nk_4\tknife\nLiznFL6_r2A_0\tmotorcycle\nLjLWamF9HyA_0\tgiraffe\nLjjGe9bnQ3Q_0\ttrain\nLj0zBxRWoIU_0\tskateboard\nLkFbAjpWRAw_1\tgiraffe\nLkFlT3d8MuQ_0\tairplane\nLkmioXgRyo4_0\tcat\nLk7Z-AUDCuQ_0\tcat\nLlA5ioDqRns_2\tbus\nLlA5ioDqRns_1\tbus\nLlNCPsiSjOU_0\tairplane\nLlS3_VvB4Nw_0\ttruck\nLlfRY71K2AU_0\ttruck\nLliRBHO1A_E_0\ttrain\nLlplZ9JJtQw_0\tdog\nLlplZ9JJtQw_2\tdog\nLmFx-lJ6-_M_1\ttruck\nLmR0Ur4owgw_0\tbicycle\nLmT8BFH5c7k_0\tumbrella\nLmYKmKucl28_0\ttruck\nLm4mghtFu-I_0\ttrain\nLm5GStt7KBw_0\ttruck\nLm5GStt7KBw_1\ttruck\nLnGeYd1AsoA_1\tbicycle\nLnKLql5jAXo_0\ttrain\nLnLlD-mNTtE_0\tbear\nLnPyjqgA37I_0\tgiraffe\nLndUw9o_3ME_0\tskateboard\nLnhmeU6oRBE_0\tbus\nLntuuj_mi9c_3\tknife\nLnyfbZ7-fP4_1\tumbrella\nLnyfbZ7-fP4_0\tumbrella\nLnyfbZ7-fP4_2\tumbrella\nLnyfbZ7-fP4_3\tumbrella\nLn_tNsQVuwc_0\tdog\nLomkA_DJyEM_1\tbird\nLo2GqBe8-Qc_0\tbus\nLo8Q0MdVi9A_1\tbear\nLo8ZEKusM1o_0\tdog\nLpXfY3oQDIc_0\tskateboard\nLpXfY3oQDIc_1\tskateboard\nLpnkxmohHZ8_1\tairplane\nLpt6bE36Uuw_0\ttrain\nLpt8i9V2MK0_1\ttrain\nLp88aaB29zE_0\tzebra\nLqOv_DqIWEk_0\tboat\nLqf8Q1pPNFg_1\tknife\nLrIVNsObdso_0\tbird\nLrKKU5rjq38_2\tzebra\nLr-9DI7T7JE_0\tbird\nLr-9DI7T7JE_6\tbird\nLsdHOclMPh4_0\tdog\nLshP_zqoBc0_0\tknife\nLsuQhEjteSE_0\tdog\nLtGXT385l_I_1\tdog\nLtabCE1oaCw_0\tbird\nLtt24ke9SIA_0\tbicycle\nLtyHCo5uPrQ_0\tumbrella\nLuA9aRIic7s_1\tbird\nLuM1ie5yy70_1\tumbrella\nLuM1ie5yy70_3\tumbrella\nLuQiLJ7-B-8_0\tcat\nLuQxQm7FqD0_0\tcat\nLua1id9drCA_1\tgiraffe\nLuv05fYUS1Y_0\tskateboard\nLu6WLASNWIM_0\ttruck\nLu6rn2EQSEM_0\tmotorcycle\nLu6rn2EQSEM_2\tmotorcycle\nLvPDEznT9Yo_1\tbird\nLvgprOdn070_2\ttruck\nLvhxnDPWfXw_0\tknife\nLvv3Ei45X_4_1\tknife\nLvz3fP96sew_0\tdog\nLv7JaIYWXV4_1\tdog\nLv8u2aPVHmc_2\tbird\nLwChAirlUno_0\tskateboard\nLwMepJ25LgQ_0\tbear\nLwPB4qPCelk_2\tcar\nLwPB4qPCelk_0\tcar\nLwgyjrFlc5M_0\tbicycle\nLwiTfwL3bCs_0\tcar\nLxAhZAbzn7k_2\tbird\nLxjlAGLccRw_0\tmotorcycle\nLxlu3NusDCM_0\tbicycle\nLx0IybSITTc_0\tboat\nLx25sZ_GeqA_0\tmotorcycle\nLyOo_B0KLAs_0\tcar\nLyReFCR-oq8_1\tbicycle\nLyReFCR-oq8_0\tbicycle\nLyiT3ute8W0_0\tbird\nLyiT3ute8W0_1\tbird\nLyiT3ute8W0_3\tbird\nLyiT3ute8W0_4\tbird\nLyiT3ute8W0_5\tbird\nLy-uIzZCdn0_1\tbus\nLzMxggGTH1I_0\tmotorcycle\nLzP0t153jKw_0\tskateboard\nLzY_TxIbKpw_0\ttrain\nLzk6uj8FMsE_0\tcat\nLzp-Yej0-7E_1\tbird\nLztNNlg_fXs_0\tknife\nLz0Gxxs0FUE_2\tbus\nL0IXFlnu6Qg_0\tmotorcycle\nL0US3Aiu1q0_0\ttruck\nL0kRKO8zzsI_0\tbird\nL0kRKO8zzsI_3\tbird\nL0kRKO8zzsI_1\tbird\nL1EZ_RVwD8E_0\tcat\nL1LQOPj7NBs_0\ttruck\nL1U2YrjRao0_0\tbear\nL1VgJBGpBz8_0\tbird\nL1iiOGDSByA_0\tmotorcycle\nL19ZzBwAHrU_0\tknife\nL1_86Xd176w_3\tknife\nL2Efv5kJpc0_0\tskateboard\nL2FE5Lr0wnY_3\tbicycle\nL2FE5Lr0wnY_4\tbicycle\njjZl3tMuO6w_0\tdog\njjcoVigCzgg_0\tskateboard\njjk9P9gQq3E_0\tbus\njj-p0K2XoQY_0\tboat\njj_pv9SFrnU_1\tumbrella\njj_pv9SFrnU_0\tumbrella\njkGvuOC8azU_0\tmotorcycle\njkGvuOC8azU_1\tmotorcycle\njkKU7T0wpj4_0\tbus\njkdEq1MRNws_0\tcat\njkkk9vsCYVA_0\tcar\njkqKyvow-ww_1\tskateboard\njkqKyvow-ww_0\tskateboard\njk2gGx6dIWA_0\ttrain\njlA3_oF9j-Q_0\tmotorcycle\njluiJgeyCa4_0\ttruck\njluiJgeyCa4_1\ttruck\njlu4Ry8dDus_0\tcat\njmXmA9egY4s_0\tbird\njmXmA9egY4s_1\tbird\njmeVwD4p83w_0\tumbrella\njm8AZ0aSF0U_0\tmotorcycle\njnD_9KMnzpk_2\tskateboard\njnD_9KMnzpk_1\tskateboard\njnQYikiCbAM_0\tbicycle\njnQgVTaiaXk_0\ttrain\njnSm3vCtu1k_0\tdog\njnu28BEM2j0_0\tbird\njnwQHd-sNW0_0\tcat\njous_VGiSK0_0\tbicycle\njoxEhiwL-qg_1\tskateboard\njpBcdceCHgY_0\tskateboard\njpCdMdRzmuY_0\tcat\njpuFdyVJJwQ_0\tmotorcycle\njpuFdyVJJwQ_1\tmotorcycle\njpyidnScqNQ_0\tumbrella\njpzKefnhMA4_0\ttrain\njqHtlrHk5Cw_0\tdog\njqO4FvS_v54_0\tboat\njqRXcc7rPaY_0\tcat\njqWXHWqSVX8_0\ttrain\njqu6Gjc1hCE_0\tperson\njq9ZPuTO7Rc_0\tumbrella\njrAyEPgy1LM_1\ttruck\njrLRiCFtlvY_0\tskateboard\njrNGiQLJ0ug_1\ttrain\njrg8oKSN6bk_1\tbird\njrg8oKSN6bk_0\tbird\njsJprPZCPvA_0\tboat\njskm6kDOao0_0\tcat\njslKL8yQ7v4_0\tbird\njslKL8yQ7v4_1\tbird\njsp_sWu7g7Q_1\tbear\njsx0cE948y8_2\ttrain\njtQGgQPHofk_0\tboat\njtWerSK0atA_0\tumbrella\njtqUFmuGnVs_0\tperson\njtx5yVxuLzA_0\tbicycle\njtx5yVxuLzA_2\tbicycle\njuC5lVOX-R8_0\tbear\njuC5lVOX-R8_1\tbear\njuMoEfLbbI4_11\tbicycle\njuUIMSiDGm0_0\tumbrella\njuownJlkGfA_0\ttrain\nju08Y0j4rAI_1\tcar\njvKKm9UbcbE_0\tcat\njvKqk7Yfq5Q_0\ttruck\njvdYM-W5Kmo_2\tbear\njvxjOOQa_JQ_3\ttruck\njwxSjxJVyOc_0\tdog\njxIyftPYPsc_0\tcat\njxIyftPYPsc_1\tcat\njxlDJ0D2Tec_0\tbicycle\njxn5iX8buaE_0\ttruck\nL2XOsdnKegA_0\tdog\nL2bV5Mh6tLM_0\tdog\nL2e6nVyZ33k_0\tcar\nL2gSKheIL48_0\tdog\nL2zsyBTtcqE_0\tbird\nL21bM4j4bEc_0\tmotorcycle\nL21bM4j4bEc_4\tmotorcycle\nL21sWlIIkHA_1\tskateboard\nL28I6_ASmq0_0\tmotorcycle\nL3F2ir5MPj4_3\tskateboard\nL3Q42kZ8Ap8_0\tbus\nL3oyk4iYySM_0\tboat\nL3urWJiuom8_0\tbear\nL32hlxmCYZU_3\tbicycle\nL32hlxmCYZU_6\tbicycle\nL32hlxmCYZU_7\tbicycle\nL32hlxmCYZU_14\tbicycle\nL4NZ3vAx87A_0\tboat\nL4kK9gTKA3Q_2\tbear\nL4w-P2UsvBE_0\tbird\nL5VC4bXm6Kc_0\tdog\nL508o9A8028_0\tbicycle\nL52ZiKJ5NLM_0\ttruck\nL5499EWzDaQ_0\tmotorcycle\nL6QaXTuDftA_0\tbird\nL6vLixMpRZg_1\tdog\nL6vLixMpRZg_0\tperson\nL63p00d7BPY_0\tcar\nL7TR8yCVhN0_0\tcat\nL7ZTQMPeHYo_1\tknife\nL7iHAg6bHw4_0\tbicycle\nL7rQQ4IVPrU_1\tskateboard\nL70Zv9DFAhc_0\tskateboard\nL71JgB-L1mA_0\tmotorcycle\nL779-Nw9GV4_0\tcat\nL780lAoEC2M_0\tgiraffe\nL780lAoEC2M_1\tgiraffe\nL8H_7qqaEOM_1\tmotorcycle\nL8SF7xF6Ucs_8\tbird\nL8h9dw2kYRA_2\tknife\nL9EAUBlNvLU_1\ttruck\nL9LWOPIuvcE_0\ttrain\nL9L-OlYNdL0_6\tknife\nL9Tx4-RNDqo_2\tmotorcycle\nL9Tx4-RNDqo_3\tmotorcycle\nL9Tx4-RNDqo_1\tmotorcycle\nL9Vt1klujtA_0\tdog\nL90g72YGdVA_0\tcat\nL97eqv7bBCE_0\tdog\nL985IUAQ8u8_1\tskateboard\nL-S4CNhlvlM_0\tcat\nL-w35NTF7vA_0\tcar\nL-0JgkugTvw_0\tgiraffe\nL_AcMGC96O8_0\tmotorcycle\nL_ZdaWupJcU_1\tboat\nL_xPWB4viT8_1\tdog\nL_xPWB4viT8_0\tdog\nMAJonEdmXNA_0\ttruck\nMAVqUxAjlbg_0\tskateboard\nMBAPF4RVq7E_0\tcar\nMBLHIupmPNk_2\ttruck\nMBLHIupmPNk_5\ttruck\nMBl4bkFRZUY_2\ttruck\nMBl4bkFRZUY_0\ttruck\nMBuwlS32gjE_0\tdog\nMC8Lal5Lp5Y_0\tcat\nMC-KkFD07Ts_0\tdog\nMDxAuy6D1ks_0\tskateboard\nMD5P0EFFnUQ_1\tskateboard\nMD8RTKTEaM0_1\tmotorcycle\nMEi_ikuUJoQ_0\tskateboard\nME0CETCuaK0_0\tboat\njyY5W5HiWUQ_1\tcat\njyeqCulSuVM_0\ttruck\njy_Dr_R-svo_1\tumbrella\njy_Dr_R-svo_3\tumbrella\njzRWRRcWffo_0\tskateboard\nj0BXwDs11NY_0\ttrain\nj0OALCZbAJQ_0\tbus\nj0ii12pbeag_0\tknife\nj0yk2O6HAHA_0\tbird\nj0_9iwi_dm8_0\tdog\nj1CQLHBLwew_0\tcar\nj1NePJe1agU_0\tbird\nj1XwtnPy1Ik_1\tbear\nj1rU13Z_fxc_0\tbicycle\nj1utZs4pDTc_0\tbicycle\nj10ev-4-0Fg_0\tmotorcycle\nj11_jPnp4Pc_0\tcat\nj2-VEpDwbyo_0\tdog\nj3X6elDpZ-Q_0\tbicycle\nj4K9kM9p16o_1\tbear\nj4Qv6RH4lPk_1\tbird\nj4U8EcQ8K34_0\tumbrella\nj4daTphUuBw_0\tcat\nj4mpJ3QE8VU_1\tcat\nj4ofs57G2Uk_0\tskateboard\nj4rMKhohDps_0\tbicycle\nj4zZbJTAcC4_0\ttrain\nj4zZbJTAcC4_1\ttrain\nj5EP2UNErRE_0\tdog\nj5Evt1HJ2ck_0\tskateboard\nj5ayq3AbImg_2\tbird\nj5uxE5IUOhk_0\tdog\nj6GdrMPrcNU_0\ttrain\nj6P1j6Ed1Hg_0\tboat\nj6Ybo1yk-lE_0\tmotorcycle\nj7v1htyJtdo_1\tboat\nj7v1htyJtdo_2\tboat\nj7xvqf1mrUo_2\tbird\nj707fRdtbEE_0\ttrain\nj8jip_gthjs_0\ttrain\nj8s5sMFYoiM_3\ttrain\nj8s5sMFYoiM_1\ttrain\nj82ZCaABxl8_0\ttruck\nj8-maioFCxo_2\tboat\nj924hdZilyY_0\tcat\nj-MwElKg8Tw_0\tcat\nj-VN0PFvkDg_0\ttrain\nj-a26pZGsKA_5\tbicycle\nj-r3lQdwYeI_0\tboat\nj-r3lQdwYeI_3\tboat\nj-x8lbwsObQ_0\tmotorcycle\nj-0kVn7sEvQ_0\tmotorcycle\nj-0-IDS-OD4_1\ttruck\nj_DE_vsqSZg_0\tmotorcycle\nj_D7oxUpZqs_0\tbicycle\nj_D7oxUpZqs_1\tbicycle\nj_FCzH1rLDw_0\ttrain\nkABwo7h7ILg_18\tbicycle\nkABwo7h7ILg_13\tbicycle\nkANh1n3sh5M_0\tgiraffe\nkANh1n3sh5M_3\tgiraffe\nkAekmn2pgpc_0\tskateboard\nkAekmn2pgpc_1\tskateboard\nkAhVhIYl-GE_0\tmotorcycle\nkAhVhIYl-GE_1\tmotorcycle\nMFw-_3fTBzA_0\tbicycle\nMF06s9T8iJA_0\tskateboard\nMF06s9T8iJA_1\tskateboard\nMGFx6Irt70E_0\tknife\nMGMJ6ocyKXQ_2\tboat\nMGQw41RhBfc_0\tmotorcycle\nMG9MouhNLjY_1\tknife\nMG96iokcNoY_0\tcar\nMG96iokcNoY_1\tcar\nMHIEOK-O3Q4_1\tbird\nMHT9BbNzNJo_0\tknife\nMHqZCkvaub8_1\tcar\nMHsxwUMk-_s_8\tumbrella\nMIHg2KAYh5c_0\ttrain\nMIHg2KAYh5c_3\ttrain\nMIHg2KAYh5c_1\ttrain\nMIKCpSFDh4M_0\tbear\nMIKCpSFDh4M_1\tbear\nMIKCpSFDh4M_2\tbear\nMIKCpSFDh4M_3\tbear\nMInom2mFpwg_0\tskateboard\nMI2d7Rd8_Zs_9\tbicycle\nMI2d7Rd8_Zs_10\tbicycle\nMI2d7Rd8_Zs_2\tbicycle\nMI2d7Rd8_Zs_4\tbicycle\nMI2d7Rd8_Zs_5\tbicycle\nMJOztUhgARo_1\tbear\nMJvPtT5tzRI_0\tmotorcycle\nMJ3I-JfOG48_0\ttrain\nMJ6b6iOY7CI_0\tcar\nMK2aqzY-UTQ_0\tcat\nMLXY5iff2rU_0\ttruck\nMLZ5bpXr5fk_0\tbicycle\nMLrWgAcIumk_3\tknife\nMLrWgAcIumk_1\tknife\nMLtRUMzqhDk_1\tdog\nMLwCW5HBfWQ_0\tbicycle\nMLwCW5HBfWQ_1\tbicycle\nMLyrsP65yc8_0\tcat\nMMGw177uo60_8\tbicycle\nMMGw177uo60_11\tbicycle\nMMGw177uo60_0\tbicycle\nMMGw177uo60_1\tbicycle\nMMGw177uo60_2\tbicycle\nMMGw177uo60_4\tbicycle\nMMGw177uo60_6\tbicycle\nMMX4my6X-xg_0\tcar\nMMfLN7_khoc_0\tskateboard\nMMwk9bxedYo_1\tbird\nMMxfwNbWaxc_0\tbus\nMMxfwNbWaxc_1\tbus\nMMzNcR3qtX0_0\tknife\nMM9D2A52FM4_0\tcat\nMNBfv2S-yco_0\tdog\nMNDWyaUDfAM_0\ttruck\nMNKwR4IK04k_0\tbus\nMNnYExmY67E_0\tbus\nMNnYExmY67E_3\tbus\nMNuhuq3FP5Q_0\tmotorcycle\nMNuhuq3FP5Q_1\tmotorcycle\nMNuhuq3FP5Q_2\tmotorcycle\nMORtJq8MelU_2\tdog\nMORtJq8MelU_3\tdog\nMORtJq8MelU_0\tdog\nMORtJq8MelU_1\tdog\nMOR6ErlJIp8_0\tgiraffe\nMOcTGHSkER0_0\tcar\nMOgN13g3SzU_1\tmotorcycle\nMOxIwc0MqZ0_1\tcar\nMO5aNU1mc1s_2\tboat\nMPQqmw9gvF0_0\tdog\nMP8ETGMyhnU_0\tdog\nMQAJWDp31ag_0\tcat\nMQimJolkMRI_0\tcat\nMQ5mTW70Ebs_1\ttrain\nMRzphcX41T8_0\tumbrella\nMSWR-YqRwqk_0\tcat\nMSjYJFNM2HU_0\tboat\nMSjYJFNM2HU_3\tboat\nMSonF1662RI_3\tskateboard\nMSp3-aHmNP4_1\ttruck\nMSp3-aHmNP4_2\ttruck\nMSvmSEk-UJ0_0\tbicycle\nMSxdHgV7e6o_0\tcar\nMS7Emoy0Foc_1\tboat\nMTDl42dubw8_0\tbear\nMTr54KYSQBw_0\tperson\nMTvLNcYmHhQ_0\tcar\nMT-VkX2ZUYs_1\tbear\nMT-VkX2ZUYs_2\tbear\nMT_GWiXfC2k_0\tknife\nMUAuC-rgc9Q_0\tdog\nMUPAcFVQjlE_0\tzebra\nkAkZoxVhM3I_4\ttrain\nkAkZoxVhM3I_1\ttrain\nkAkZoxVhM3I_2\ttrain\nkAkZoxVhM3I_3\ttrain\nkAmtMpdj5F8_0\tdog\nkAsA28fm6YM_0\tdog\nkBZZqBNk68M_0\tcat\nkBg_1xTx4Dw_0\tcar\nkBsc-5sxeTw_1\tknife\nkBsc-5sxeTw_3\tknife\nkCWupS0PNHk_0\tcar\nkC0y-y4Y9zQ_0\tknife\nkC4_7iM24Uw_0\ttruck\nkC7fdR62Lto_0\tperson\nkDU_m-Zhi-I_2\tbicycle\nkDsGVRUxg9s_3\tbicycle\nkDsGVRUxg9s_4\tbicycle\nkDvYbh9_fvY_0\tdog\nkDwVR3eWyA4_0\ttrain\nkD0shq5M7Xw_1\tskateboard\nkD_zeOiIsTM_0\ttrain\nkEw-F2KrxLQ_0\ttrain\nkE3cb1gtxpM_0\tperson\nkFihVzuPlGI_0\ttruck\nkF9uWuyPP8g_0\tskateboard\nkGB7yQn8jpQ_0\tbicycle\nkGkvBOa6Ao0_0\tmotorcycle\nkHCbADkGOsE_0\tskateboard\nkHEfe-TDtS0_0\tmotorcycle\nkHkZCi873e4_1\tmotorcycle\nkH2Vmad_zzc_0\ttrain\nkH9YVTvwmpM_0\tbicycle\nkIGuIdHDwIw_0\ttruck\nkIasEX-cJb8_0\tcat\nkIqavvGxvh0_0\tbird\nkIyZZm3zk5M_0\ttrain\nkIyZZm3zk5M_1\ttrain\nkIyZZm3zk5M_2\ttrain\nkI14RuB6ab4_1\tboat\nkI9E5m5l4Uo_2\tbird\nkJFQOFR0l0w_0\tmotorcycle\nkJJuX1cGFYg_0\ttruck\nkJJuX1cGFYg_3\ttruck\nkJR59i4f5HA_0\ttrain\nkJR59i4f5HA_2\ttrain\nkJR59i4f5HA_4\ttrain\nkJR59i4f5HA_1\ttrain\nkJUDpKKsNQ8_3\tboat\nkJYZ-XE8ZEQ_0\tcat\nkJuBcbws_zM_2\tcar\nkJuuymSuBLA_3\tboat\nkJ2eEJ07dR8_0\tcat\nkJ4rlYx4HDQ_0\tmotorcycle\nkKJAqMzsMHo_0\ttrain\nkKOKJLrWCro_0\tmotorcycle\nkKSyjiL5foc_0\tskateboard\nkKTvKA8cd-c_0\tbird\nkKTvKA8cd-c_2\tbird\nkKeaUBfwuG4_0\tdog\nkKfiOXnjX0E_1\tbird\nkKtawdL8xDU_0\tumbrella\nkLL_YMFYoQw_1\tcar\nkLL_YMFYoQw_3\tcar\nkLgtAl-xGI0_0\tbus\nkL3r_JUstGU_0\tbus\nkL7sfsNuNVw_0\tgiraffe\nkL7sfsNuNVw_1\tgiraffe\nkL777xHctO4_0\ttruck\nkMMe5H6THlA_1\tboat\nkMuQLvHlZM8_1\tskateboard\nkMuQLvHlZM8_2\tskateboard\nkM3Ml3gsG1g_0\tboat\nkM3yM5qONQc_0\tperson\nkNNLDq_wPc4_0\tdog\nkNQYLVUS5ag_1\ttrain\nkNQYLVUS5ag_0\ttrain\nkNTqRDpy6Jg_0\tbicycle\nkNVh6uD0bMs_0\tcar\nkNlVF3ROFLs_0\tdog\nkOOlwQ0DrQU_1\tcat\nkOjjXFA4JLo_0\tbicycle\nkOksVTxs6S0_0\ttruck\nkPEf41FB6w4_2\tbear\nkPH88UubFMg_0\tbird\nkPLn0enV644_0\tmotorcycle\nkPPya6oadAk_0\ttruck\nkPSuwjI94G8_1\tbus\nkP4KkSrY81s_0\tmotorcycle\nkP4KkSrY81s_1\tmotorcycle\nkP7xV2Efw9c_0\tcar\nkQBqt_vvAUc_0\ttruck\nkQHn-cRLiDk_1\tcat\nMVG65Om9g1k_0\tcat\nMVG65Om9g1k_1\tcat\nMVPQRjLFz6E_0\tboat\nMVRf770zXL0_0\tbus\nMVZinfPagDI_0\tbicycle\nMVhsNNsDFWo_0\tknife\nMVxJBHYueGI_0\tboat\nMVxJBHYueGI_1\tboat\nMV5174rsbEY_0\tbus\nMV-CnX4Gf7A_0\ttruck\nMWGRoXhqRgQ_0\tboat\nMW78cTfzq0c_0\tcat\nMXGO41E37k0_1\ttrain\nMXVOVBJlezc_1\ttrain\nMXW5J8Fq8aw_0\tbicycle\nMYW0loI0g8M_0\tdog\nMZJtj9J3P2w_0\tknife\nMZU8lpmJhxg_0\tbus\nMZaYMDyaATI_5\tskateboard\nMZaYMDyaATI_0\tskateboard\nMZfxKiKSuFU_0\ttrain\nMZfxKiKSuFU_1\ttrain\nMZfxKiKSuFU_2\ttrain\nMZr4cAj7j28_0\tmotorcycle\nMZtheeh470g_0\tcar\nMZxz9C8nBdA_0\tbus\nMZ4A6ItKCn0_2\tknife\nMaApAnpbJwE_0\tmotorcycle\nMaNGPVuxXqo_0\tbicycle\nMaUrOzoC1qE_0\tmotorcycle\nMaV9LY8Yf7c_1\tskateboard\nMaeWb_sv_KU_9\tbus\nMaeWb_sv_KU_10\tbus\nMaeWb_sv_KU_1\tbus\nMaeWb_sv_KU_7\tbus\nMaeWb_sv_KU_8\tbus\nMalEpweFuSM_0\tmotorcycle\nMarA93dcZrA_0\ttrain\nMbCJqlLjY_o_2\tknife\nMbK94OERQUw_1\tbicycle\nMbK-28LCQ1g_0\tboat\nMcV3_FGrKNw_1\tboat\nMccB4r2uPG8_2\tbus\nMctKaOAWQ2g_0\tskateboard\nMc_qufFsRZQ_0\ttrain\nMdP8tqMgy-c_0\tboat\nMdcfoMlgxyI_0\tboat\nMdcfoMlgxyI_7\tboat\nMdcfoMlgxyI_6\tboat\nMeGIovLiBUs_0\tcat\nMeNT1BqRoSk_0\tskateboard\nMeR6T05EfeY_4\ttrain\nMeR6T05EfeY_5\ttrain\nMedPaDPXclw_0\ttrain\nMe6y3gzfhGA_1\tcat\nMe7wQZBbtkw_1\ttruck\nMe9X6zA_WSI_2\tcar\nMe9X6zA_WSI_3\tcar\nMe9X6zA_WSI_0\tcar\nMe9X6zA_WSI_1\tcar\nMfEA9RwWf8s_1\tcar\nMfKpwmhyptQ_6\tknife\nMfQe_WreL6U_0\tcat\nMfVLnZLXmvw_0\tboat\nMfYYHsKxgn0_0\tcat\nMfYYHsKxgn0_1\tcat\nMfaYiIkR0D8_10\tdog\nMfe3mmOd7co_0\tskateboard\nMflUSzEyPQA_0\tdog\nMf1njOx66R4_0\tknife\nMf1njOx66R4_1\tknife\nMgR0ON5CM-E_1\tdog\nMgR0ON5CM-E_0\tdog\nMg7Ve43Durw_0\tzebra\nMg9oRrgGKv0_0\tskateboard\nMhFgGvNvIPU_1\tmotorcycle\nMhOdsv74XK4_0\tbicycle\nMhPIl5JGvTQ_2\tdog\nMhdkxaMWwb4_0\tdog\nMhfYe7VajGQ_1\ttrain\nMijD0ZqMorA_3\tbear\nMijD0ZqMorA_4\tbear\nMixmJ2mkl18_5\tmotorcycle\nkQhvp8FqRRI_0\tmotorcycle\nkQ0WAbN3uvE_2\tbicycle\nkQ0qYUhkgXE_0\tzebra\nkQ0qYUhkgXE_2\tzebra\nkQ27FYyayCg_0\tumbrella\nkQ9C8T343Bg_0\tumbrella\nkQ97WPM3Qw4_0\tskateboard\nkROqNf1kadg_0\tbicycle\nkRWaghM9Bng_4\tknife\nkRYejzNzz-k_0\tbird\nkRYejzNzz-k_2\tbird\nkRYejzNzz-k_5\tbird\nkRtAJBnrb0o_0\tcat\nkSnUCbQ4k4c_1\tgiraffe\nkSxPGqWydhQ_0\tcar\nkSxPGqWydhQ_1\tcar\nkTBAPJCn4AI_1\tcar\nkTNOY900Hbk_0\tcat\nkTVuc-2UjPI_0\tumbrella\nkTbS3XR-Xhc_7\tbear\nkTdT3aGZVmo_0\ttrain\nkTm1R3GaJzg_1\tumbrella\nkTyJyGREDR8_0\tboat\nkUX28ytNCwc_0\tcar\nkUcErGH2rjs_0\tdog\nkU8IsLpAlXg_0\tmotorcycle\nkU8IsLpAlXg_1\tmotorcycle\nkVCic6S6ITo_0\tknife\nkVmUxntjOEk_1\tskateboard\nkVxw5-K9zZk_0\tmotorcycle\nkVyJVrTWLwo_0\tcat\nkVzNGKIHA44_5\tgiraffe\nkVzNGKIHA44_2\tgiraffe\nkVzNGKIHA44_3\tgiraffe\nkVzNGKIHA44_4\tgiraffe\nkWHw0OdDAes_0\tboat\nkWHw0OdDAes_1\tboat\nkWo2PlJB2Nc_0\tmotorcycle\nkWxJX4oVzMo_3\ttrain\nkXKTNNclCns_0\tdog\nkXOYPLKJDdI_0\tknife\nkXOYPLKJDdI_2\tknife\nkXVHu_jzgek_0\tknife\nkXj4YpwnHVs_0\tcar\nkXliGVQWoAE_0\tmotorcycle\nkXwzICrP2CA_1\tdog\nkX-rqtb_n5w_0\tboat\nkYAGyQOUOAw_5\ttrain\nkYAGyQOUOAw_6\ttrain\nkYAGyQOUOAw_9\ttrain\nkYRvBDpWk_0_0\tskateboard\nkYd1dxkZ7Q8_0\tdog\nkYh89aM71_c_0\tbicycle\nkYie2clM8Jg_0\tmotorcycle\nkYjiRbFWFuE_0\tumbrella\nkYwzLhWdjYc_0\tbird\nkY1mYWiL24M_2\ttrain\nkY1mYWiL24M_11\ttrain\nkY1mYWiL24M_0\ttrain\nkY1mYWiL24M_1\ttrain\nkY1mYWiL24M_3\ttrain\nkY1mYWiL24M_4\ttrain\nkY1mYWiL24M_5\ttrain\nkY9lrTOcuxY_1\tknife\nkZNZbhh6P3g_0\tcat\nkZrG7mMww7I_0\ttruck\nkZrgKUm3pUs_0\tboat\nkZ1L8FBg_P4_0\tcat\nkZ3A6bY6RHo_0\tmotorcycle\nkaKhLfdT3z4_0\ttruck\nkaNpALWiNSQ_0\tcar\nkadq7fGv_zg_1\tmotorcycle\nkao854-T3zw_0\tbear\nkaxFMN_9CfM_0\tbear\nkaxFMN_9CfM_1\tbear\nkazbC0JbsUY_1\tboat\nkazbC0JbsUY_0\tboat\nka1HMN9Mxho_1\tcar\nka8YGdEujsQ_0\tmotorcycle\nkbEenS2dRTc_0\tcat\nkbF3h-YQ7m8_0\tskateboard\nkbuWFd9Vthc_1\tumbrella\nkb2LQHXd2zk_0\tcar\nkb-A8wbnvQg_0\tbicycle\nkcBIvi6fhUo_1\tbus\nkcTwHA-N1cg_0\tbird\nkcip1032v3E_1\tskateboard\nkco1LYK4z_w_0\tperson\nkdIBzH30zKA_0\tdog\nkdIBzH30zKA_1\tdog\nkdP5V_afg7E_0\tskateboard\nkdRLqCUbWts_0\tbird\nkdUrK5I-cNo_0\tcar\nkdU-XJEwZsQ_1\tbird\nkd3DLyL1JMw_0\tbicycle\nkeGrBBWcGE4_1\tbus\nkeGrBBWcGE4_0\tbus\nkePvCa53REA_0\tgiraffe\nkePvCa53REA_1\tgiraffe\nkea2UOTXlhs_0\tcat\nkea4eM8Blz8_0\tdog\nketFGT3U5D0_0\tbicycle\nkexKkPOprms_0\tcat\nke3yWKL94kE_0\tskateboard\nMi4HJYsPBPk_0\tskateboard\nMjGAi_5coGY_0\tbicycle\nMjGAi_5coGY_7\tbicycle\nMjGAi_5coGY_5\tbicycle\nMjGAi_5coGY_6\tbicycle\nMjxkMQcgRss_1\tcar\nMkF-jfvzRJU_0\tbus\nMkGLvilh-P4_2\tdog\nMkIK8kdqU2I_0\tmotorcycle\nMkQzgwai9zk_0\tzebra\nMkYtT0L4_3A_0\ttruck\nMktDGOflp1w_0\ttruck\nMktDGOflp1w_1\ttruck\nMk82qF_xfzI_1\tmotorcycle\nMk9tGnGNkkE_0\tbird\nMlLHwysBUiY_0\tknife\nMlVr20XSJMY_1\tdog\nMmQIeOEPu9g_2\tskateboard\nMmQIeOEPu9g_0\tskateboard\nMmQIeOEPu9g_1\tskateboard\nMnE1EjTWbTA_2\tskateboard\nMnGGl7pusvI_0\tmotorcycle\nMnGGl7pusvI_1\tmotorcycle\nMnd7aZxjoEg_0\tbird\nMnvqegl_fME_1\tcar\nMnvqegl_fME_3\tcar\nMnvqegl_fME_8\tcar\nMnyV8-43fRY_0\tbicycle\nMn2Nul_w66I_1\tmotorcycle\nMn2Nul_w66I_3\tmotorcycle\nMn2_fRbVluE_0\tknife\nMoHDZuwBO4E_0\tcat\nMog-qUf6B1c_1\tcat\nMo6Q7lGmAw0_0\tskateboard\nMp42DoVxbWY_0\tmotorcycle\nMp91b_edytM_1\tdog\nMp91b_edytM_0\tdog\nMqAlMygAZto_0\tcat\nMqPKFAIxZpE_0\tdog\nMqlxERdGjdg_0\tmotorcycle\nMqvfJOEW4oE_0\tcat\nMrsXy6DL4DA_0\ttruck\nMrssB6CtGrM_1\tgiraffe\nMrvbaDZm6gY_7\tknife\nMrvbaDZm6gY_8\tknife\nMrwi7WoPJSs_0\tcat\nMrxYHk0ghfM_0\tboat\nMr1A4et0ESg_0\tbird\nMsFvL8N-3ds_0\tumbrella\nMsQJkEOyREY_0\tbicycle\nMsY_zz2OeKU_0\tmotorcycle\nMs8x8pjN7Fw_1\tbicycle\nMs8x8pjN7Fw_0\tbicycle\nMtIjkcXspsU_2\tmotorcycle\nMtfpgvzOlW8_0\tperson\nMtiQjguNpH0_2\tboat\nMtiQjguNpH0_0\tboat\nMt_4bFjyYuU_0\tcat\nMuLk_dOouJY_0\tknife\nMuOG8PoK21o_0\tbus\nMuVtFYK_nH0_0\tbird\nMuYixry0epc_2\tmotorcycle\nMuYixry0epc_0\tmotorcycle\nMuYixry0epc_1\tmotorcycle\nMu51W-lkSEc_0\tcar\nMvIYOnRinSo_0\tbicycle\nMvxRpbl0BBk_0\tbus\nMv6v4w7VDFk_1\tcar\nMv_9l8fWiP4_0\ttruck\nMwAM4o2GCuM_0\tcar\nMwHQb6ZryRA_0\tskateboard\nMwIKOqSMRwk_0\tcat\nMwLnGflxcqc_2\tzebra\nMwNsM6f6fNY_3\tbicycle\nMwNsM6f6fNY_5\tbicycle\nMwN7iYEim6k_0\tbird\nMwW14_GuwLg_1\tbus\nMwdX3PbgC34_0\tgiraffe\nMwjq136uMe0_0\tcar\nkfInF5cUU98_0\tmotorcycle\nkfInF5cUU98_1\tmotorcycle\nkfLnoXlGBvU_0\tdog\nkfhspLhCU5Y_0\tcat\nkgDOVDDZ9eQ_0\tcat\nkgONObiF8Hg_0\tcat\nkgT-NsRkv1c_0\tcar\nkgco3sZv7BY_0\tcat\nkgi1KajW_ZU_0\ttruck\nkglv-2P5ow4_4\tbus\nkgrFzgXO9Q8_0\tskateboard\nkgsyAMgjuL4_0\tbus\nkgxQ03-tSek_0\tbear\nkg6RFppR4MM_0\tknife\nkhUURgtFYBY_1\tbicycle\nkhUURgtFYBY_0\tbicycle\nkhVST8w3Zzw_0\tskateboard\nkhlqzkfBCfc_0\tcat\nkhpJlBWPPr4_1\tcat\nkimZApwsJEY_5\tbicycle\nkimZApwsJEY_6\tbicycle\nkimZApwsJEY_0\tbicycle\nkimZApwsJEY_2\tbicycle\nkimZApwsJEY_3\tbicycle\nkimZApwsJEY_4\tbicycle\nkizrM5CZzPk_0\ttruck\nkjBdTAkRijw_2\tbus\nkjM0hJl-L44_0\tskateboard\nkjtOW8OAIeY_0\tmotorcycle\nkkC5lqQb0t0_0\tumbrella\nkkR7pnou7hc_0\tknife\nkkeBMT1ixs4_0\tboat\nkkkc9xwKGp8_1\tskateboard\nkkvU3dvMkSI_0\ttruck\nkk4KuU5X6Lk_0\tcar\nklGHWdeD-qw_2\tbear\nkldR5yJFeOo_1\tbicycle\nkldR5yJFeOo_3\tbicycle\nklgANznh5x0_1\tbicycle\nkl2buVrYbX8_0\tskateboard\nkl3_w8_h6ts_0\tskateboard\nkl4RYG6OCIY_2\tknife\nkmZFQEGncaI_2\tbicycle\nkmZFQEGncaI_0\tbicycle\nkmllekf2nKc_0\tcat\nkmoaGUqL6bI_0\tskateboard\nkmvCtYXRUhM_0\ttruck\nkm7aR2fTJlA_2\tknife\nkm-3wnNLVYY_0\tboat\nknDRZU9u-Lw_1\tboat\nknVcB-GeINU_0\tcar\nknqi3OAHNO8_0\tboat\nkoOxoaMnXZc_0\tskateboard\nkoOxoaMnXZc_1\tskateboard\nkphV7yVMBOQ_0\tbicycle\nkphV7yVMBOQ_2\tbicycle\nkqDbbFz-XQQ_0\tbird\nkqDxyoQKFfE_0\tcat\nkqVaHPJzEro_0\tdog\nkq4tOnX3m2Y_3\tbus\nkq4tOnX3m2Y_0\ttruck\nkrSKV36ocSs_0\tbear\nkrvyahlS1z4_0\tbus\nkryv5em-VHk_2\tbear\nksB15ebtJeM_0\tumbrella\nksCempldLAA_0\tskateboard\nksCempldLAA_1\tskateboard\nksCjOk8r4rU_0\tperson\nksSVtTRXRyI_1\tbicycle\nksk5uCVKU7Y_0\tskateboard\nksxTUcFqlZw_0\tknife\nksx219-g47A_0\tcat\nktHzii2XMh4_0\tboat\nktPLKpH7-mk_5\tdog\nktcodoKjIvE_3\tbicycle\nktcodoKjIvE_4\tbicycle\nktcodoKjIvE_5\tbicycle\nMwtWyQiagOk_0\tbicycle\nMwvYg837DFU_0\tmotorcycle\nMxEjkI5fRh0_0\tdog\nMxHBWltYQX0_0\tboat\nMxKuZbSiZ4s_0\tskateboard\nMxK1dXmYQU8_0\tknife\nMxr-1toRi3s_0\tskateboard\nMyS7UVUc55M_0\tcar\nMybir4gfQaU_3\tbird\nMzB160hQlFE_9\tgiraffe\nMzB160hQlFE_2\tgiraffe\nMzB160hQlFE_4\tgiraffe\nMzB160hQlFE_5\tgiraffe\nMzB160hQlFE_6\tgiraffe\nMzB160hQlFE_7\tgiraffe\nMz9ZTHPYJxk_0\tdog\nM0Ga521uzoA_0\tdog\nM0qQQArQdTU_0\tbird\nM088XJeXBS0_0\tcat\nM1UsEMPrCc4_0\tknife\nM1cuEQppjNk_0\tbus\nM1p1DBTuqmk_3\tbird\nM1p1DBTuqmk_1\tbird\nM1xxFVktlzw_1\tbird\nM1zDeqozcU4_1\tbus\nM2R_9l38IUQ_0\tbus\nM2uSqd8ohUk_0\tbus\nM3CUpLmpRBo_0\tcat\nM3OhLKUgQho_0\tcat\nM3P38sLk0pc_0\tdog\nM3tK5YBjyKI_0\ttruck\nM3tK5YBjyKI_1\ttruck\nM3tK5YBjyKI_2\ttruck\nM4CENhQ5vWo_0\tcat\nM4Hqq89bZiE_1\tdog\nM40QOQPocV4_1\tcar\nM45MyaeogPU_0\tcar\nM5BEqJFfJYw_0\tskateboard\nM5NRM7UQv5c_0\tcat\nM5bLnqKDa1U_0\tbear\nM5kj9SEKNAo_0\tbus\nM6POMFHs-ec_0\tbus\nM6bin6X9FSI_0\tknife\nM6eRY9q89aQ_2\ttruck\nM6tXmkLy-2Y_1\tbird\nM7465rUWBzY_1\tbicycle\nM8Lhm-CgqH4_0\tcat\nM8cFdveIy4g_0\tcat\nM8drJLCDOL8_0\tcat\nM8ea7gWeDQ0_0\tbird\nM8f0VhN1ZnY_0\tumbrella\nM8i-DGTEw9M_3\tskateboard\nM8i-DGTEw9M_1\tskateboard\nM8sMZ15CLIU_0\tskateboard\nM9McwXGtZnI_0\tcat\nM9QtHKxypyI_1\tknife\nM9UrZSSK1MA_2\tmotorcycle\nM9eiVambl5s_1\tdog\nkuRfhOqyXeY_0\tumbrella\nkuzyHmE3SI0_1\tknife\nku68PhgE8bk_0\tbird\nku7gA5ZLk1Q_0\tcat\nkvFSzJHIsVg_1\tknife\nkwDNLBoEQq8_0\tskateboard\nkwDX0_2B3A0_0\tumbrella\nkwGGXvXtsjI_0\ttruck\nkwY370WQYUg_0\tcar\nkwbt-wHLPkY_1\tcar\nkwlcEg9G1bE_0\tknife\nkwsp30ykR4U_0\tboat\nkxeSYfuQl-I_0\tbird\nkx1bCqhLcbY_0\tbus\nkx5tIvM-9dE_0\tknife\nkyAEyX8zMWQ_0\ttruck\nkyPXCwNh7Rg_0\tcat\nkyW_f8sv5iw_1\tgiraffe\nkye1Q_k-_Gc_0\tbicycle\nky1FAcaT3UE_0\tdog\nky6uivneqIg_0\tbird\nkzblQQcpTdk_0\tskateboard\nkzblQQcpTdk_1\tskateboard\nkzfxn1c7_xc_10\tbicycle\nkzg7y0rERTY_0\tbicycle\nkzi3zDJR9Bc_0\tdog\nkzpJkBQxgE0_1\tbicycle\nkzp3UEwOkJA_0\tknife\nkzw5a8z9cXs_0\tbird\nkz6HYpF3pLo_0\tdog\nk0cUZwgJzB4_0\tumbrella\nk0uDHQea9sg_1\tdog\nk00mpKYHsuU_0\tskateboard\nk1F_TFA3Bbk_0\tbicycle\nk1LrJEfFKag_0\tmotorcycle\nk1NVg8uaPE4_1\tskateboard\nk1Q5wms4euk_0\tbird\nk1TOwPACsvY_2\tgiraffe\nk1TOwPACsvY_3\tgiraffe\nk1vz1ZSBSoo_0\tbicycle\nk2O0XiVn5kw_0\tskateboard\nk2QiX8c3t50_0\tbird\nk2SEBRgras8_3\tcar\nk2Z0W54JwB4_0\tskateboard\nk2bQG12smw0_0\tcat\nk2imYphEfo0_0\tcar\nk2ocqQxARpQ_0\tskateboard\nk2yx7C__3wY_1\tcat\nk3HKP8CV3CY_0\tbus\nk3LnBcn5zlU_0\tboat\nk3QuANDFgVQ_2\tboat\nk3QuANDFgVQ_3\tboat\nk3QuANDFgVQ_5\tboat\nk3fZgTTMj1g_0\tgiraffe\nk3fZgTTMj1g_1\tgiraffe\nk3im7HEvSCI_1\tbear\nk4D-Ql4Fg7c_1\tbird\nk4PWQfz5NGo_0\tmotorcycle\nk4U1AP6KV4E_1\tskateboard\nk4c6D3ZsdL4_0\ttruck\nk5Pp6BYXono_3\tbear\nk5R3cUyyyWo_0\tcar\nk5nvWBLlS2c_1\tboat\nk5nvWBLlS2c_2\tboat\nk5vlZTySXDk_0\tknife\nk5yJqWnvZzg_1\tbus\nk5yyV32-nOM_0\tmotorcycle\nk5yyV32-nOM_2\tmotorcycle\nk55nlQZwGz0_1\tboat\nk57rVPEq54k_1\tbear\nk57rVPEq54k_2\tbear\nk6Bwd6af64Y_2\tbear\nk6gc4du1FqU_0\ttruck\nk6l0hwjaeMA_0\tmotorcycle\nk6l0hwjaeMA_1\tmotorcycle\nk6l0hwjaeMA_2\tmotorcycle\nk60P5osD0rU_0\tbus\nk64DU45ej5M_6\tcar\nk64DU45ej5M_0\tcar\nk64DU45ej5M_1\tcar\nk64DU45ej5M_2\tcar\nk64DU45ej5M_3\tcar\nk64DU45ej5M_5\tcar\nk640Wtpq-mU_3\tumbrella\nk640Wtpq-mU_0\tumbrella\nk640Wtpq-mU_1\tumbrella\nk7TCyTff1aM_0\ttruck\nk7uTiiG-Ez0_0\tbus\nM-8Zbj9mU9U_0\tboat\nM_miIFgy1Ro_0\tbear\nNAGKrEjU7Sk_3\tbird\nNAGKrEjU7Sk_2\tbird\nNAkFaQBgOvo_0\ttruck\nNA9hxGtSLCM_0\tbird\nNA_DgxP18c4_2\tmotorcycle\nNBE97NAHACk_0\tgiraffe\nNBdhmPgSS2o_1\tmotorcycle\nNCNgKQCU8BM_1\tbird\nNCP6Cna8jtY_0\tskateboard\nNCQ5340WhY8_0\tcar\nNCSygygs2Dw_0\tskateboard\nNCWp95If4uM_0\tmotorcycle\nNCazYWutlOc_0\tboat\nNCoJmkRt2nE_0\tbicycle\nNDUhlmH9Rz4_0\tcat\nNDYT9jTE54Q_0\tbus\nNDYT9jTE54Q_1\tbus\nND_GyhH6zgI_0\tmotorcycle\nNEQIR06VuP4_1\tgiraffe\nNEQOLn6QBuE_8\tbird\nNESQ70PhJU0_1\tboat\nNElB9jKqhLc_0\tdog\nNFjb4XxSoHI_0\tskateboard\nNFye-cUktCg_0\tbicycle\nNFz_zzAU_Hc_2\tskateboard\nNFz_zzAU_Hc_0\tskateboard\nNFz_zzAU_Hc_1\tskateboard\nNF_o01qBrtI_0\tskateboard\nNF_o01qBrtI_1\tskateboard\nNGCjiEfG4C8_0\tskateboard\nNGM0enFRa7E_0\tcar\nNGO_7sJEeyk_0\tbus\nNGRBYn2OatE_0\tmotorcycle\nNGU-5KGKEJ0_0\tbear\nNGmJtkXyJpc_0\tcat\nNGmKyRRNL_E_0\tbird\nNGw5-auup1k_0\tcar\nNG7FgzWn8Gw_1\tgiraffe\nNG9SIDqXvic_0\tknife\nNHlayOfSZJc_0\tdog\nNHlsNDcNZqU_0\tcat\nNHmxckr22ws_0\tskateboard\nNIPnaoHgzdU_0\tbird\nNIPnaoHgzdU_1\tbird\nNIPnaoHgzdU_2\tbird\nNIvYcbJIYdA_0\tcat\nNI_YQKOQEvM_1\tbird\nNJeNAw2RnNc_0\tbus\nNJeNAw2RnNc_1\tbus\nNJeNAw2RnNc_3\tbus\nNJeNAw2RnNc_4\tbus\nNJ0O48Pkn2k_0\tbird\nNJ9DpLHaGl8_0\tskateboard\nNKLemqoJ_hA_0\tcat\nNK4942wyYgk_0\tbus\nNLKK4VUbuuI_5\tbear\nNLp8voZylqM_1\tknife\nNLsGPrwnRug_1\tbus\nNLsGPrwnRug_2\tbus\nNL3CG8KGwis_3\tgiraffe\nNL5j52SH-yQ_0\tbus\nNL9o4JgV25A_0\tdog\nNMJB2K_UOLc_0\tdog\nNMJLv-oYyNc_1\ttruck\nNMJLv-oYyNc_0\ttruck\nNMecCV-gtK8_1\tdog\nNM7OVTITkaA_0\tcat\nNNCjf9Qu2RI_0\tbear\nNNHOtBx0FOY_0\tmotorcycle\nNNkLZRrMEv4_6\tboat\nNNl4nD5_b_o_0\tskateboard\nk8NHRbiB2Dc_0\tdog\nk8OEoDpqSLk_0\ttruck\nk857sWPtmcs_0\tcat\nk9BuU6A21DQ_0\tskateboard\nk9HxprAZods_0\tumbrella\nk9KmR4MNI7o_0\tcat\nk9KtLV0IMgI_0\tdog\nk9PCp-8PFZ0_0\tdog\nk9PX9l8Fnlw_8\tbus\nk9PX9l8Fnlw_0\tbus\nk9PX9l8Fnlw_2\tbus\nk9PX9l8Fnlw_4\tbus\nk9PX9l8Fnlw_5\tbus\nk9VDPqCbqj0_0\tbear\nk9VVUD9wVxk_1\tboat\nk9zLR7VKKpE_0\tskateboard\nk9-PLHxxGHc_0\tcar\nk-DOe-pD_MY_0\tdog\nk-Nl-39bZnw_1\tskateboard\nk-SqR4BEw3s_4\tmotorcycle\nk-SqR4BEw3s_1\tmotorcycle\nk-izgq4Wj4E_0\tdog\nk-izgq4Wj4E_1\tdog\nk_X3oj841SQ_1\tmotorcycle\nk_e_YVhclfg_4\ttruck\nk_e_YVhclfg_3\ttruck\nk_iI2BJQpqo_0\tcat\nk_jXopyxdo0_1\tboat\nk_sLp7QKSu8_0\tboat\nk_tkXRmI_O0_1\tskateboard\nk_tkXRmI_O0_0\tskateboard\nk_vnzrtDfAw_1\tcat\nk_5e1d-vpBU_3\tumbrella\nk_5e1d-vpBU_4\tumbrella\nlAA5eXeYwpo_0\tcat\nlAFonTk_uSA_1\tbear\nlAI9mfwKMM8_1\tdog\nlAQxdRz4PlQ_0\tbear\nlA3btp7QIxg_0\tbus\nlBH0KOGRswc_0\tcar\nlBXWSN3ciPY_0\tmotorcycle\nlBsOiAR5dAk_2\tbird\nlBsOiAR5dAk_3\tbird\nlBsOiAR5dAk_4\tbird\nlBsOiAR5dAk_7\tbird\nlBsOiAR5dAk_8\tbird\nlByHH7yvxpA_0\tboat\nlB7j8Z4gGtQ_0\tcar\nlB_bnqdnexA_5\tbird\nlB_bnqdnexA_1\tbird\nlB_bnqdnexA_4\tbird\nlCYwepuY9qY_0\ttruck\nlCZry6FRpsk_0\tbicycle\nlCf6uL_GkYw_2\tbear\nlC0yidNH6B8_2\tbear\nlC4BoFWvHs4_3\tbear\nlDLYtKqlr5M_0\tbus\nlDf9b9Kr-24_1\ttruck\nlDgzFjqokik_0\tboat\nlDqk6pRbY3M_0\tbus\nlDybC3N70so_0\tcar\nlD63JOjqTDg_5\tbear\nlD63JOjqTDg_9\tbear\nlD63JOjqTDg_10\tbear\nlD63JOjqTDg_0\tbear\nlEG4DGADyEU_0\tbird\nlEIbERGmlJw_0\tumbrella\nlEWOScSt-Ks_0\tdog\nlEaMfPfi9wI_0\ttruck\nlEwJRP_FRW0_0\tdog\nlFYONMOuW_o_0\ttruck\nlFqrTC4j9AU_0\tcat\nlF3vWAJRnek_0\tmotorcycle\nlGPyv8wlqaw_1\tknife\nlGaQV9YhOac_0\tmotorcycle\nlGrVM91Cav8_0\tperson\nlG5xlt4odEs_0\ttruck\nlHKKhuJtJ9A_0\tknife\nlHXHAD73KC4_0\tmotorcycle\nlHX5VdjDPMg_0\tknife\nlHuiaqmISAM_0\tmotorcycle\nlHyHQQF-8K0_0\tcar\nlIE0SbW_gCY_0\tdog\nlIH_in2H5ds_0\tknife\nlIrvgqkirS4_0\tcar\nlIrvgqkirS4_1\tcar\nlI6hnnAL_54_1\tskateboard\nlI7VzYQQ8DY_1\tbus\nlJBeZTzXuSk_0\tumbrella\nlJJU-pzIbgs_0\tboat\nlJKxeHgRugQ_0\tbicycle\nlJa2bLMFljk_0\tknife\nlJa2bLMFljk_1\tknife\nlJa2bLMFljk_2\tknife\nlKC5LtWPL6s_0\tboat\nlKEgqjR4HeU_0\tbicycle\nlKEgqjR4HeU_1\tbicycle\nlKJZ4AYoO9g_0\tcar\nlKJZ4AYoO9g_1\tcar\nlKJZ4AYoO9g_3\tcar\nlKJZ4AYoO9g_4\tcar\nlKJZ4AYoO9g_5\tcar\nlKJZ4AYoO9g_6\tcar\nlKJZ4AYoO9g_7\tcar\nNOEix5l-1TE_1\tbear\nNOVqPOoUWiM_2\tbear\nNOmc38WuhVA_1\tzebra\nNOmc38WuhVA_2\tzebra\nNPX9qxaZXGQ_1\tboat\nNPc_EhpqV9I_0\tcat\nNPlhHkKnD-o_3\tbird\nNPlhHkKnD-o_1\tbird\nNPnIcXU4TO4_0\ttruck\nNPnJoNuZw64_0\tbicycle\nNP2YBNp1eMo_0\tbus\nNP8MrtR7UMQ_0\tskateboard\nNQRWmK2DAwo_1\tskateboard\nNQ7XVf2jPCk_1\tbear\nNRBtrgg-ACI_0\tumbrella\nNRGqiXyM4H0_0\tbus\nNRRxMVw0Fv0_0\tumbrella\nNRV62o4HAaI_0\tdog\nNRkeO8cWvlY_0\tskateboard\nNSEdAs2W7io_1\tbus\nNSrCO0JVjrQ_0\tbus\nNS6Z7neTE58_2\tbear\nNS7vapDr5vE_0\tdog\nNTJsuoSzIX0_8\tboat\nNTi-7LowE5E_4\tbicycle\nNTi-7LowE5E_0\tbicycle\nNTurL251ndw_0\tbird\nNTyAmrmpD-w_0\tcat\nNUOXJlGoyJk_0\tmotorcycle\nNURGtF3McGo_0\tknife\nNUU3df9bDmc_0\tmotorcycle\nNUhIeMVykto_0\ttruck\nNUkuVMR_rDA_0\ttruck\nNUkuVMR_rDA_1\ttruck\nNUo3_VxkQWs_0\ttruck\nNUo3_VxkQWs_1\ttruck\nNU5WfPjxGO4_1\tcat\nNU60EZnPyy8_0\tbird\nNVAF-TWNge8_0\tboat\nNVeRtjaMVVM_0\tcar\nNVz1RXwlQQM_0\tskateboard\nNWOVEKbfu_M_2\tcat\nNWwoSS6oanE_0\tbus\nNW6ZEfS5YY0_0\tdog\nNXHWi70uXME_0\tmotorcycle\nNXU1Yxq08KQ_0\tskateboard\nNXe33k8YYzQ_4\ttruck\nNXe6DkOAbbo_0\tcat\nNX2FQE2RlgI_0\tdog\nNX2FQE2RlgI_1\tdog\nNYBxFsoPtLU_7\tknife\nNYBxFsoPtLU_2\tknife\nNYVtLPBMGDA_1\tdog\nNYVtLPBMGDA_2\tdog\nNYpkdx_Wzos_0\tbicycle\nNYrd2o8DQhw_0\tbird\nNYsYKDH1T0Y_0\tbear\nNYs9voRwmTk_2\tmotorcycle\nNZGyAc3mNmM_1\tskateboard\nNZOBtVvtpfo_0\tbird\nNZoU9njpjBc_2\tbird\nNZoU9njpjBc_1\tbird\nNaOwM5jaBb0_0\tbear\nNaTP9E6Ee6k_0\tmotorcycle\nNahvbbnqXN0_0\tknife\nNaszpQMnSmM_0\tskateboard\nNbXn5vr55Ik_0\tmotorcycle\nNbnAyKWQOgU_2\ttruck\nNbnAyKWQOgU_3\ttruck\nNbz45at2suY_0\tbird\nNb1nL_IG2Tc_0\tumbrella\nNb4FhqzK_80_0\tbird\nNb9Ee0cdc90_4\tknife\nNb9Ee0cdc90_0\tknife\nNcD7EzR9VKc_0\tcat\nNcODwqAl8wA_0\tbird\nNcODwqAl8wA_1\tbird\nNcnPt-ksZkA_0\tmotorcycle\nNcnr9xhL4RE_1\tbird\nNcnr9xhL4RE_5\tbird\nNco2IqVnrXc_0\tcat\nlKiN4UeEuCQ_0\tcar\nlKrgSHU_lF4_0\tmotorcycle\nlKrgSHU_lF4_1\tmotorcycle\nlL9OwfLG-LQ_0\tskateboard\nlMPus-gGijc_0\ttrain\nlMw3GHYr5nI_3\tbear\nlM2lr9vONXE_1\tbird\nlNDNEdNtW4w_0\tumbrella\nlNLvw0Ga8IY_1\tskateboard\nlNLvw0Ga8IY_2\tskateboard\nlNLvw0Ga8IY_0\tskateboard\nlNShteFjBFI_0\tbird\nlNh4Dhf0JC8_0\ttruck\nlNj5zp4Gbsw_1\tbird\nlOGti3Hfk6A_2\tbird\nlOglyCevyZo_0\tmotorcycle\nlOzlZJwo_U8_0\tmotorcycle\nlO0DJaFrguw_0\tmotorcycle\nlO0Nas9ogL0_0\tbird\nlPG5xsRX0U0_0\tbird\nlP3Jv00bEG8_0\tbear\nlQf2-zTERI8_0\tmotorcycle\nlQ8AFjrjX64_0\tumbrella\nlRSTcmXYwzM_2\tknife\nlRyY7rtPGJ0_1\tdog\nlRyY7rtPGJ0_0\tdog\nlR-HPtCgbFY_0\tcar\nlSefRz_ad2I_0\tperson\nlS7IFw-rHNE_0\tcar\nlTNivynkdBQ_0\tbear\nlTNivynkdBQ_2\tbear\nlTW53YPXtYw_0\tumbrella\nlTgxSRoCADM_1\tboat\nlTgxSRoCADM_2\tboat\nlTgxSRoCADM_3\tboat\nlTgxSRoCADM_0\tboat\nlTyeSMENfFI_0\tdog\nlT1oYaEt3l0_0\tskateboard\nlT1oYaEt3l0_2\tskateboard\nlT1oYaEt3l0_1\tskateboard\nlUEz6tmtuxs_0\tdog\nlUQr1JtEFAM_0\tcat\nlUSPy6WOhvw_1\tboat\nlUk_G-9RjSE_0\tbird\nlUq042i-r3E_1\tdog\nlUq042i-r3E_2\tdog\nlVCS7_AhLDg_0\tcat\nlVKT0DahELk_0\tbus\nlVKT0DahELk_2\tbus\nlVOqUh5DjZE_0\tbicycle\nlVWFKjMWyF8_0\ttruck\nlVWFKjMWyF8_1\ttruck\nlVWFKjMWyF8_2\ttruck\nlVoO_SiGxpw_0\tcat\nlVohP88BOwU_1\tgiraffe\nlWDh4SPr76A_1\ttrain\nlWGBmSVTvwo_2\tskateboard\nlWLYqz3RhXs_0\ttruck\nlWkC8ABD6YI_0\tknife\nlWnVG1WyzTQ_0\tdog\nlW8axrSg7EY_0\tdog\nlXJGVOcVinA_1\ttruck\nlXkkzYM416M_12\tknife\nlXkkzYM416M_8\tknife\nlXkkzYM416M_11\tknife\nlXshoTSoReY_0\tmotorcycle\nlXshoTSoReY_1\tmotorcycle\nlXshoTSoReY_2\tmotorcycle\nlYC47pEoyKc_2\tskateboard\nlYEiGk0pa9w_1\tdog\nlYP4KB7dANc_0\ttruck\nlYcCLy33mJA_0\ttruck\nlYcCLy33mJA_1\ttruck\nlYrLCKi7wHw_0\tknife\nlYrvoVOM7i8_1\ttruck\nlYrvoVOM7i8_2\ttruck\nlYzirpo9X4Q_2\tknife\nlY38gkpHWQA_0\tdog\nlZWg3rt2bp4_0\ttruck\nlZWg3rt2bp4_1\ttruck\nlZWg3rt2bp4_2\ttruck\nlZgIg28WsqA_1\tdog\nNcs0SIaAZjk_0\tskateboard\nNdDPhB7JjOc_1\tcar\nNdFMcVN8fkc_0\tskateboard\nNdFMcVN8fkc_1\tskateboard\nNd2smOOuPs4_0\ttruck\nNd5Cyi1P2AQ_0\tperson\nNd5Cyi1P2AQ_1\tmotorcycle\nNesRw9JE-bc_4\tdog\nNesRw9JE-bc_0\tdog\nNesRw9JE-bc_1\tdog\nNe_T9PyoaOA_0\ttruck\nNe_T9PyoaOA_2\ttruck\nNfQ_F7iyFT4_0\tbus\nNfoq-vLwXMs_0\tcat\nNfuM3ceM9Lg_0\tbird\nNf4iPszryRI_1\ttruck\nNgA6Mi5Qj6Y_1\tcar\nNgHJhpedfLw_0\tcat\nNgfJ42fUH10_0\tskateboard\nNglZtOBkn1M_0\tboat\nNgp2Yvug4N4_0\tskateboard\nNg7YPssESZs_1\tumbrella\nNhDdHfwovA0_1\ttruck\nNhHYQ1QBPq4_0\tcat\nNhJWY87UJGA_0\tmotorcycle\nNhKgTGZXrk4_0\tmotorcycle\nNiN42Yupn8k_0\tmotorcycle\nNiQLFJ_8gI0_1\tbird\nNifFA8VfbMY_0\ttruck\nNjPnw9Ofph8_1\tbicycle\nNjr2CQDoQ0w_2\tboat\nNj1tu2uzjf8_0\tumbrella\nNj4IqLuQBd0_0\tcar\nNkHiSqSViG4_3\ttruck\nNkSVC1QmlzA_2\tboat\nNkXF30FQWUs_0\tbicycle\nNkajkrLx-Pg_1\tgiraffe\nNkdGD4jRmVk_2\tskateboard\nNkdGD4jRmVk_3\tskateboard\nNkdGD4jRmVk_4\tskateboard\nNkvfxcYCIfg_0\tperson\nNkxm_Grldgg_0\tboat\nNlKX0Q_a4qM_0\tbicycle\nNl2e8ERoEYk_1\tskateboard\nNl27zjpvGZk_0\tcat\nNmCxdejUxjE_2\tumbrella\nNmGnWjSHIGc_1\tdog\nNmGnWjSHIGc_3\tdog\nNmGnWjSHIGc_0\tdog\nNmHo6hH22gY_0\tcat\nNmRjRjuwWGU_0\tumbrella\nNmm4H7xWWeE_0\tgiraffe\nNmnOIU5yzmo_0\ttruck\nNm3Wkz8ClY8_4\tbicycle\nNm3Wkz8ClY8_0\tbicycle\nNm3Wkz8ClY8_3\tbicycle\nNnQubFQHcUU_0\tcat\nNnSwVsUnfj8_0\tdog\nNnV7SskfNiQ_1\tbicycle\nNnYCP4YouSI_0\tskateboard\nNnYCP4YouSI_1\tskateboard\nNncDYgsTFic_0\tmotorcycle\nNn1fsXlRDQg_7\tbird\nNoKz0p_h8xA_0\tcar\nNoRnxJ4D8OY_0\tmotorcycle\nNoglbvaRxAM_1\tcar\nNoglbvaRxAM_2\tcar\nNopFymjXZBE_0\tcar\nNosN0T3He9Y_2\tknife\nNowQILLv6pM_1\tmotorcycle\nNoxncYznLDw_0\tmotorcycle\nNoxncYznLDw_2\tmotorcycle\nNoxncYznLDw_3\tmotorcycle\nNoxncYznLDw_5\tmotorcycle\nNpbXizTCNgs_0\tmotorcycle\nNpciaYlS9Bs_2\tskateboard\nNpptiWtuy7U_1\tbird\nNp0p_ITfRiE_0\tboat\nNp0p_ITfRiE_2\tboat\nNqA0sKGQZbc_0\tbird\nNqD8w0_R9y8_1\tmotorcycle\nNqLEhuNiS-A_0\tknife\nNqzZbJJl3E4_0\ttruck\nNqzZbJJl3E4_2\ttruck\nNq-mC-BLk1c_0\tbird\nNrGByfXIMJc_0\tdog\nNrGHtOFFLxU_0\tmotorcycle\nNrJIz8M3oNM_0\tboat\nlaSVNAwUDQc_0\tgiraffe\nlaiFgjfWMS8_1\tbird\nlajujsJ1J4k_0\tbird\nlajujsJ1J4k_1\tbird\nlauIpA9lVMo_0\tskateboard\nla0ygpbR6t4_0\tdog\nla0ygpbR6t4_1\tdog\nlbCW72FyaQ8_0\tumbrella\nlbC8rsjkZ8Y_1\ttruck\nlbDdPmkMwnw_0\tmotorcycle\nlbSldeZXn6I_0\tskateboard\nlbZo-rTovyc_0\tskateboard\nlbod3X-5Z40_4\tbus\nlbod3X-5Z40_5\tbus\nlbzHPZpNNjg_0\tdog\nlcSqXrVIbwo_0\tmotorcycle\nlcWTw6rAYfI_0\tcat\nlcv8jXnPWQU_0\tcat\nlc6jM9I3ffc_0\tmotorcycle\nlc8hZxMLAr4_0\ttruck\nldjVc4u8LUc_1\tmotorcycle\nldqpSPYa-3U_1\tbicycle\nld5g39_bixY_1\tskateboard\nld5g39_bixY_2\tskateboard\nlew1kgMUujc_0\tcar\nlfPmXUBRa-k_1\tbird\nlfVb7VtGUAI_0\tperson\nlfYoLXfvmyo_0\tbus\nlf29DRtjGcY_1\ttruck\nlf29DRtjGcY_2\ttruck\nlf4Xwro4NOQ_5\tbus\nlgLHq8p_CnA_0\ttruck\nlgVXhalKM3w_0\tboat\nlgne-5wGRTg_4\tbird\nlgwnVArDAa0_2\tbear\nlg3udJdBBoI_0\tdog\nlg_4H9FLVog_0\tdog\nlhBsZjQzf8Q_0\tmotorcycle\nlhEN_T9FduQ_0\tknife\nlhoMpa49rvU_0\tumbrella\nlh1Brsyb0aE_0\tbicycle\nlh21_LSx_G8_1\tdog\nliDzsyAmMJQ_0\tmotorcycle\nliThgzeBkVY_0\tcat\nlite73A-c3o_0\tbicycle\nli8IvNy_DW4_1\tbird\nljrwXgV0j9o_0\tmotorcycle\nlj3DWkRI_HM_2\tbear\nlj3mqLiqSRw_0\tknife\nlj5bI1M_0ZA_0\tskateboard\nlj-BTMsCDdY_0\tdog\nlj-BTMsCDdY_1\tdog\nlkOFpGLmX9s_0\tcat\nlkYuyUsRfWE_1\tdog\nlkg_nXf_W88_0\tbicycle\nllBtQEKaglQ_2\tbird\nllFPEcbP7m8_0\tcar\nllWG8M6Fsrg_1\tskateboard\nllu7uI6yzns_0\tmotorcycle\nllu7uI6yzns_1\tmotorcycle\nllu7uI6yzns_2\tmotorcycle\nlmCsOrgM7zE_0\tcat\nlmVNyKFiuQw_3\tknife\nlmVNyKFiuQw_2\tknife\nlm-deiNDAW4_0\tmotorcycle\nlnFmVwj7oMg_1\tcat\nlnk0OtCMbBc_0\tcat\nln5IAoaoPHc_0\tdog\nNrX1AnOpS98_0\tbus\nNroEppStyZI_0\tbicycle\nNrvQhlD_Fuw_0\tdog\nNrvQhlD_Fuw_1\tdog\nNsCdsMqUNFc_0\tbicycle\nNsaAbiSbaCc_0\tcat\nNsdCvelNA0g_0\tmotorcycle\nNsgZVfgUWco_0\tskateboard\nNsgZVfgUWco_1\tskateboard\nNs78CA77Hmk_0\tbird\nNtHFEE2Ii0o_0\tknife\nNtQSi_L3_e4_0\tbear\nNttRY9GKNOE_1\tcar\nNt38ikEgqJg_1\tdog\nNt-UKy4Uq0o_0\tcar\nNuOq_HSf26I_0\tboat\nNucr0ksCppE_0\tdog\nNumUCmB1MLA_0\tbus\nNu6g6OfLbKU_0\tzebra\nNu6g6OfLbKU_1\tzebra\nNu-gGh3BQo0_0\tskateboard\nNvDafPMMZtg_1\tcat\nNvDafPMMZtg_0\tcat\nNvFUKJ9Y500_0\tbicycle\nNvTRLNn1Tk4_0\tcat\nNwC3jHQ65I0_0\tbear\nNwG3zY4-qHs_0\tskateboard\nNwHv08KS8WU_0\ttruck\nNwHv08KS8WU_2\ttruck\nNwgEA2yRlYk_0\tbird\nNwgEA2yRlYk_5\tbird\nNwlCLmmFUzM_0\ttruck\nNwoCpDkRUOc_0\tskateboard\nNwzkWW45Qx0_6\tbird\nNw1pLrkHm1E_1\tcat\nNw8ZySxnzIA_0\tcat\nNxPgLux4spk_0\tmotorcycle\nNxgst3FR84g_0\tcar\nNyOC1kV5fqc_2\tknife\nNyOVnxlZw44_0\ttruck\nNyQlYlDdA1Y_2\tskateboard\nNyg0BliJTCI_2\tumbrella\nNy14oMm9C9k_6\tskateboard\nNzIOn70DDCU_0\tbicycle\nNzfwqHNApI8_0\tbear\nNzqr9pq3W0g_0\tbus\nNzwcia0dVls_0\tbear\nNz5AnTEPNKY_3\tbird\nNz_Dn60wY8c_0\tdog\nN0p_wrAammI_1\tbird\nN0wFxDTDhrA_0\ttruck\nN0yYt90fBGo_0\tboat\nN049Vl1eC9E_0\ttruck\nN1C5Wk1HQEk_0\tcat\nN1jUvtD_RyY_0\tumbrella\nN1xm5YdzSfQ_0\tbird\nN13r5ZKqAZI_1\tboat\nN2GiHfyj2sY_0\tknife\nN2Y3LmbOWhM_1\tcat\nN2Y3LmbOWhM_2\tcat\nN2e24fXBD58_0\tboat\nN2u1zVHzrfc_0\tcat\nN3D5PnaCpHs_1\tknife\nN3D5PnaCpHs_2\tknife\nN3Iy7f2RrrQ_0\tmotorcycle\nN3OIM_qi7dY_0\tcat\nN3VKNNdiRhs_0\tumbrella\nN3ZGT5VDX7A_0\tdog\nN3vCQPsPb7k_0\tcat\nN3x4Fw8PZ04_1\tbird\nN4BazwxnEJU_1\tumbrella\nN4T6B8WAeyw_1\tbear\nN4bUNLwIt-I_0\tbicycle\nN4gBOlxfYUI_0\tgiraffe\nN5T8bgYdTg8_0\tbird\nN5cC5-506Yg_0\tmotorcycle\nN5uwMT9YWA8_2\tumbrella\nN6FCEWFj0vc_0\ttruck\nN6XH-20xsPk_0\tbus\nN6Xl8e3GRcY_0\tbird\nN6gcbwR93B4_1\tmotorcycle\nN6rvYTX52x4_0\tcar\nloFhsa4OXsA_0\tzebra\nloFhsa4OXsA_1\tzebra\nloFhsa4OXsA_2\tzebra\nloS5Iy7HDhY_2\tcar\nloyp0oi9idU_0\tcat\nlpPnun9oDq4_1\tboat\nlqEgRMyazN4_0\tdog\nlqi9uYhr1lU_3\tboat\nlqybkPUTuGk_4\tbird\nlqybkPUTuGk_0\tbird\nlqybkPUTuGk_1\tbird\nlqybkPUTuGk_3\tbird\nlrbJ-8myxJA_1\tskateboard\nlrd8TXYq2Co_0\tzebra\nlrgLAWtIFbQ_0\tbird\nlrk-LSpxnaQ_0\tbus\nlrsspehYW2Q_0\tcat\nlrusc_A2xpY_1\tskateboard\nlsQ4p_XwS3U_1\tskateboard\nlsW8rve_6F0_0\tbird\nlsslg2HK3as_1\tbird\nls7K9Ga_TDo_0\tcat\nls8cJ6QPPdI_0\ttruck\nltfbVFmlGNs_0\tmotorcycle\nltfbVFmlGNs_1\tmotorcycle\nlti3EMrk6hA_0\tbird\nltyDB0DzJ4o_0\tbear\nluZpSqhxjzc_0\tskateboard\nlujnNrfylcM_0\ttruck\nlu4gOMv2LmA_0\tdog\nlvW9JvQnv_U_0\tcat\nlvXow0J0_Z8_5\tboat\nlvpmaJx7Ydo_0\tmotorcycle\nlvxwGSPs5eo_0\ttruck\nlvxwGSPs5eo_1\ttruck\nlv79L0E9KbU_0\tcat\nlv8ApAxhQxg_9\tdog\nlwIzp1ny_cc_0\tbicycle\nlwqQ1SyQ6oc_0\tbird\nlwu1229kxGE_0\tumbrella\nlw-_X5H5dsA_1\tskateboard\nlxfLak4qc0w_3\ttruck\nlxxazO-lUhg_0\tskateboard\nlxz5eN6gYvE_0\tskateboard\nlx4WDd9A1jM_0\tcat\nlyBbm0su2N8_0\tdog\nlyDsv_jEl3M_0\tmotorcycle\nlylbDiRYA18_0\tskateboard\nlym5pBjKK44_1\tboat\nlyx_DnTpBx4_0\tbird\nlzAGCQoeAug_1\tboat\nlzISnRATBZY_0\tmotorcycle\nlzrv6Lmaqhc_0\tbicycle\nlz9wsaAdD3g_0\tdog\nl0HBjPE-vp4_0\tbicycle\nl0LztA4KLq8_1\tumbrella\nl0TccajPnLs_0\tcat\nl0YyZLT2r0Q_0\tdog\nl0dbu61iEXU_0\tcat\nl0kogcjKlvI_0\tbird\nl01YbT30Uzw_0\tcar\nl1PoAFZPnAI_0\tcat\nl1cfghmMFfA_0\tmotorcycle\nl1dkS9dCOZs_0\ttruck\nl1eSoNjG7g4_3\tcar\nl1smSqKCK4k_0\tperson\nl1wXtZDVtTw_0\tbear\nl120CJB_tWI_0\tcar\nl2Cytaq3_MU_0\tbird\nl2d3stMmMjs_0\tcat\nl2pGQEcySt4_0\tgiraffe\nl23teWgsK_Q_1\tskateboard\nl23teWgsK_Q_0\tskateboard\nN7HX62OM1Jo_1\tcar\nN7WtVRWgYEs_0\tbird\nN8RE_7TdVGo_0\tskateboard\nN8wDSOXX8q4_0\tcat\nN9TwNh9IZug_0\ttruck\nN9TwNh9IZug_2\ttruck\nN-bSoL4tlX0_0\tcat\nN-ehGzRtoj8_0\tbird\nN-4XvHMsGCk_0\tperson\nN-9RtI_ifsk_0\tmotorcycle\nN_MWs_Dxjio_0\tknife\nOAJTjsjrFlQ_0\tcat\nOATLx4-34zQ_0\tdog\nOAtOdcwMjgs_0\tskateboard\nOBDA-yKAC_k_0\tumbrella\nOBDA-yKAC_k_2\tumbrella\nOBLc4YWkCqU_0\tmotorcycle\nOBYJdeMHD3g_0\tmotorcycle\nOBlj7XKW4lc_1\tboat\nOBlj7XKW4lc_0\tboat\nOBti9g_xdjg_0\tbus\nOBuDg5pF8EM_0\tmotorcycle\nOBvMQQZSs6Q_0\ttruck\nOCEGSfdedcM_1\tdog\nOCYvV1-sQQQ_1\ttruck\nOCYvV1-sQQQ_0\ttruck\nOCijTz38zrU_0\ttruck\nOCpuPcuJN68_1\tcar\nOCp5hNHBPpU_6\tknife\nOC3VHGBHbMY_1\tdog\nOC3VHGBHbMY_2\tdog\nODXPmCSXZDc_1\ttruck\nODXPmCSXZDc_2\ttruck\nODbUQUd4jSU_0\tskateboard\nODdK6tzKWWs_2\tbicycle\nODdK6tzKWWs_3\tbicycle\nODlDtYOtoQs_0\ttruck\nODo-zlQ_GB0_0\ttruck\nODp6c6uSvaU_0\tgiraffe\nODuka2U9fkA_0\tbird\nOD4XXIos2Zo_0\tdog\nOEJox-XKatw_0\tknife\nOEJox-XKatw_1\tknife\nOEMh8A9j_pg_3\tbear\nOEQV-Uetx8M_0\ttruck\nOE0tYMQn8GU_1\tbird\nOFA22Poj7lQ_0\tbicycle\nOFA22Poj7lQ_1\tbicycle\nOFbK3M6Z_QU_2\tdog\nOFbK3M6Z_QU_1\tdog\nOFdr0zUfrlE_0\tbus\nOF2H-LBDSPk_2\tbird\nOF2H-LBDSPk_1\tbird\nOF6Up9vV9Qc_3\ttruck\nOGMTfwEYzHA_0\tknife\nOGNQnbR2jAw_1\tbear\nOGVemy4LnsA_0\ttruck\nOGbVuwjdEDU_0\tmotorcycle\nOGnQhL7HZyI_0\tbus\nOGsEC0i33BY_0\tknife\nOG7Gqq0yNXc_0\tskateboard\nOHWx9W6ECl8_0\tgiraffe\nOJ0c10BvtRY_0\tdog\nl3U_T7n5YD8_0\tbicycle\nl3YBS5nRxUY_0\ttruck\nl3lkSnsgzx4_0\tumbrella\nl3qhbFnoRvI_0\tcar\nl31h7cMiU1I_0\tbear\nl4LQx_ua4m0_0\tbus\nl4MLa-2lkQI_0\tbus\nl4dzsbhTXr4_2\tbird\nl4lv0qkvs10_6\tbear\nl43lNQ5Vq_s_0\tbird\nl4-nRuAZNyY_2\tcar\nl5FUU1e4Y60_2\tbicycle\nl5ecq1OhBsk_1\tskateboard\nl5ecq1OhBsk_0\tskateboard\nl508a0nbyQI_6\tbicycle\nl508a0nbyQI_13\tbicycle\nl508a0nbyQI_14\tbicycle\nl508a0nbyQI_18\tbicycle\nl6NgJ2NHnt4_1\tbear\nl6S8h_QnD7U_0\tcat\nl63MzTHehFQ_0\tcat\nl7p6AfqPX2Y_1\tmotorcycle\nl7p6AfqPX2Y_0\tmotorcycle\nl8-hpsjvPaw_1\ttruck\nl8-hpsjvPaw_2\ttruck\nl9PH4iTXdYs_0\tskateboard\nl9ZtaPU3mB8_0\tknife\nl9j2X0rGhIY_0\tbird\nl9qm2_xBYHQ_0\tcat\nl9urEyEnxnU_1\tknife\nl96fQdjYlLs_0\tknife\nl-MCmCPjH7k_0\tbicycle\nl-QCC522u8A_0\tcar\nl-eNrq-WUQo_0\tboat\nl-98mL8hxMY_0\tbicycle\nl-98mL8hxMY_8\tbicycle\nl_DmnPQxj7k_0\tzebra\nl_scPJDEOuI_0\tbird\nmAE8hqG3eSk_0\tbus\nmAPlm5rMa-w_0\tmotorcycle\nmA5ZTSfwetI_0\ttruck\nmBEMpccxmBw_1\tmotorcycle\nmBEMpccxmBw_0\tmotorcycle\nmBTsr9NKqos_0\tdog\nmBTsr9NKqos_1\tdog\nmBTsr9NKqos_2\tdog\nmBivNgtX2dc_1\tskateboard\nmB2K7Cqy5sA_0\tknife\nmB2K7Cqy5sA_1\tknife\nmB2K7Cqy5sA_2\tknife\nmCA3YMqp59Y_0\ttruck\nmCVUS1SHxdc_1\tbicycle\nmCaHiS25d_c_0\tbird\nmCipOiHzL24_0\tcar\nmCnfYEJ7_nM_1\tboat\nmCplUoipq_M_0\tumbrella\nmCshfLJNDZc_0\ttruck\nmC9gh-poTgc_1\tbus\nmC_yfZI-Kfw_0\tcar\nmC_8_BVmM48_0\tbus\nmDOnks0KH3c_0\tbus\nmDO2Jg5oyPM_1\tumbrella\nmDTcvH2cBAk_0\ttruck\nmDTxktaf2Z0_0\tcat\nmDio2Blh76Y_3\tknife\nmDio2Blh76Y_0\tknife\nmDio2Blh76Y_2\tknife\nmDoksuME2bk_0\tknife\nmECu0xa8vxM_0\tbird\nmEFIkGBIFT4_0\tumbrella\nOKHhm13mZYw_0\tbicycle\nOKJlHLunIJ4_5\ttruck\nOKL9IGXZDqg_0\tcat\nOKOBYUJfsW0_3\tbus\nOKVeF8WX7nM_1\tdog\nOKXlOHWMVYI_0\tbicycle\nOKXlOHWMVYI_2\tbicycle\nOKniUxVle4E_0\tdog\nOK1lt5Hbk8U_0\tbird\nOK1lt5Hbk8U_1\tbird\nOK72g05p_nY_0\tbird\nOLWhwdr2s3U_0\tmotorcycle\nOLqz23zKUZ0_0\tskateboard\nOMJA4N9BRjk_0\tbus\nOMJA4N9BRjk_1\tbus\nOMROj6nJzNU_0\tumbrella\nOMscf19CmfE_0\tcat\nOMszUYfxt-k_0\tdog\nOM7YDn8Aj8U_0\tcat\nONQt1uMKjzM_0\tcat\nONQ7_XR_YoE_0\tcar\nONvq-WMS04Q_0\tbus\nON25DCtbtZI_0\tbird\nON25DCtbtZI_1\tbird\nOOOsedHMhFE_0\tdog\nOPFx79LTPYQ_0\tknife\nOPFx79LTPYQ_1\tknife\nOPNrGuEJKfQ_0\tcat\nOPRxB1VUSzc_0\tbus\nOPZI6LUwe80_0\ttruck\nOPny4vHo5EQ_1\tmotorcycle\nOQWmlKTZbJA_1\tboat\nOQh45xm5OzM_0\tcar\nOQlHcCttP0Y_0\tmotorcycle\nOQ5Q0IvSVJw_0\tskateboard\nOROW-2FDArE_0\tknife\nORjDIPVlrpY_3\tboat\nORyOEpNkmQU_0\tbicycle\nORyOEpNkmQU_1\tbicycle\nOR1UJ2WJswk_0\tumbrella\nOR8th1OG-XE_0\tumbrella\nOSia7sePfOs_0\tdog\nOS2Ga4W91oU_0\tboat\nOTGZvd8HEBs_6\tumbrella\nOTGZvd8HEBs_1\tumbrella\nOTGZvd8HEBs_5\tumbrella\nOTK2nAcxHMw_0\ttruck\nOTSLZbr15Rk_0\ttruck\nOTXkN6YTPBY_2\tbear\nOTvtQllL8ho_0\tgiraffe\nOT1tUDnxHUY_1\tbird\nOT1tUDnxHUY_0\tbird\nOUDo6Wi3Mx0_0\tbicycle\nOUaP4Qe7K_k_0\tskateboard\nOU9OQRs4Ff4_3\ttruck\nOU9OQRs4Ff4_0\ttruck\nOVBUoFuLqko_3\tboat\nOVBUoFuLqko_4\tboat\nOVBUoFuLqko_5\tboat\nOVBUoFuLqko_0\tboat\nOVBUoFuLqko_1\tboat\nOV8AfAYiWos_3\ttruck\nOWe4Ah3rUkU_3\ttruck\nOWe4Ah3rUkU_4\ttruck\nOWwYp5TMtyo_0\tdog\nOW09PhbCZ2c_0\tcat\nOW9poTV3Pw0_0\tmotorcycle\nOXDBegRD_hY_4\tbear\nOXleFWP00RU_0\tskateboard\nOXn_z6r4tTM_0\tbicycle\nOX46gFmob50_0\tboat\nOYAOM3GxoFs_0\tumbrella\nmEhLlaG7ivE_0\tcar\nmEyJVUti9TA_0\tbird\nmFCrAjplP-s_1\ttruck\nmFQSD32phtQ_0\tmotorcycle\nmFoVk3mdfVs_0\tboat\nmFpufihJP34_0\ttruck\nmF3uYMbMsrA_1\ttruck\nmGAgv6gfUIA_1\tgiraffe\nmGP0JfjwxXU_0\tcar\nmGP0JfjwxXU_1\tcar\nmGwC1aGK8EQ_1\tmotorcycle\nmGwC1aGK8EQ_0\tmotorcycle\nmG6Uz7wciew_0\ttruck\nmHNOyEXbwsg_4\tbear\nmHORHQS-7WE_0\tmotorcycle\nmHPMxlukQ30_0\tmotorcycle\nmHfy3z8lzZY_0\tbus\nmHicqYMm5B8_0\tbird\nmHicqYMm5B8_1\tbird\nmHtWCmdt2ck_0\tcat\nmHwCC0jnHbI_0\tbear\nmHwgF2IQCd8_0\tmotorcycle\nmIn-Tkvx0xg_0\ttruck\nmIx7ZeZ2Vv8_1\ttruck\nmJ0xD-4leB8_0\tcat\nmKRUuWYJC2k_0\tmotorcycle\nmKRUuWYJC2k_1\tmotorcycle\nmKRUuWYJC2k_2\tmotorcycle\nmKRUuWYJC2k_3\tmotorcycle\nmKWmMLNNRAQ_0\tzebra\nmKgld1efJss_0\tbus\nmKu97ivRVSM_0\tknife\nmKu97ivRVSM_1\tknife\nmLDjtK6d-W0_0\tknife\nmLGU-BL1agI_1\tcat\nmLG8EyllDhA_0\tcar\nmLIp-YLvQaA_0\tzebra\nmLgNPTUe_XI_0\tcat\nmLmtVR-AGCk_0\tbear\nmLpoizHo-v4_0\tdog\nmMG1DT2mUAo_0\tskateboard\nmMUflfP_ZMY_0\tcat\nmMXGos8VYQI_1\tdog\nmMt-gdadsY4_1\tdog\nmNFkEphgV18_1\tbicycle\nmNdM6zfb6FA_0\tcat\nmNeHO27e_i4_0\tbus\nmNeHO27e_i4_1\tbus\nmOMvL5XuAZs_0\ttruck\nmOVza6TV55E_0\tbicycle\nmOcxsTLCyfM_0\tumbrella\nmOjLK3sW2lA_0\tskateboard\nmO3CzDojFYs_0\tdog\nmO8cYs6iJlE_0\tcat\nmPCBb4ndGx0_3\tcar\nmPCBb4ndGx0_2\tcar\nmPPaPa0iD_c_0\tdog\nmPV3eyH3uiY_0\tbicycle\nmPW-nXWaC4U_0\tcat\nmP223OT32Rc_0\tknife\nmP223OT32Rc_1\tknife\nmP553XrHpVs_0\tmotorcycle\nmQD1eeRC1Q4_0\tknife\nmQf2FppJTEM_0\tbird\nmRFdLfB4a1s_3\tbear\nmRI6bXmeH0U_0\tknife\nmRMc_QxifPU_0\ttruck\nmRMc_QxifPU_1\ttruck\nmROsO1LIGpo_0\ttruck\nmRYB4i5ld-k_0\tdog\nmRkf0ciWPgI_9\tbird\nmRl54j1LWx8_0\tperson\nmRyO8jtjseY_1\tcar\nmRyO8jtjseY_2\tcar\nmR0m08J8B08_4\tboat\nmR0m08J8B08_0\tboat\nmR0m08J8B08_1\tboat\nmR0m08J8B08_2\tboat\nmSTIz-CdXqU_0\ttruck\nmSf7pQlzXuw_0\tgiraffe\nmSgbTXZAzDk_1\tumbrella\nmSvLPzkZzps_0\tknife\nmSxrYqw4oqg_1\tumbrella\nmSztwZ01Pck_0\tbus\nOYIPropF-hA_2\tknife\nOYTwB7sOFYE_0\tbird\nOYa8DOvcJkU_0\tcat\nOYf6rSUrwxc_0\tdog\nOYnjEcx19SM_0\tcat\nOZBLMb8bGX8_0\tzebra\nOZcS8vrufig_0\tdog\nOZeialzVvBQ_0\tbird\nOZqsh8FFeFo_0\ttruck\nOZqsh8FFeFo_3\ttruck\nOZqsh8FFeFo_4\ttruck\nOZstdGSfBBw_0\tbird\nOZ2Xf6zzI5Q_1\tskateboard\nOZ2Xf6zzI5Q_0\tskateboard\nOaR_KKoBRYA_0\tboat\nOai5vIFRADY_0\ttruck\nOaxb1TjNF5A_0\tboat\nObG3TG10dF0_0\tdog\nObLBCGg01UY_5\tskateboard\nObLBCGg01UY_1\tskateboard\nObLBCGg01UY_2\tskateboard\nObLBCGg01UY_3\tskateboard\nObLBCGg01UY_4\tskateboard\nObMci_3wRII_0\tboat\nObmxs3FqVc0_0\ttruck\nObol9FzC6qw_0\tboat\nOburzWcRnbc_0\tskateboard\nOb5o_Ufzxvo_0\tumbrella\nOb6-UrKFrTY_5\tboat\nOcFGISpeAn0_0\tskateboard\nOcQBa7E9-AI_1\tcar\nOcZG24cCgsU_2\tboat\nOchOHb4q-iE_0\tbicycle\nOcmRyP_n53E_0\ttruck\nOcuYOC6GylA_0\tcar\nOc1tfJzLD3o_1\tbus\nOc1tfJzLD3o_2\tbus\nOc1tfJzLD3o_0\tbus\nOdGHHAUYow4_0\tboat\nOdl4k8y8GfI_1\tskateboard\nOdo1ZvyEbqs_3\tbear\nOdo1ZvyEbqs_6\tbear\nOdo1ZvyEbqs_7\tbear\nOeJet0TZ0Ns_0\tcat\nOecO1BnSygU_0\tumbrella\nOecO1BnSygU_1\tumbrella\nOepCeq6zNOc_0\tumbrella\nOevlneuqSNg_0\tskateboard\nOe3qCUtDCoI_0\tbear\nOfD7c6vcSKc_0\tmotorcycle\nOfFZrl_Ltoo_0\tdog\nOfQ3Y3DEgNI_0\tskateboard\nOfZ9wyeuMaU_0\tskateboard\nOfcr6xsiMGY_1\tknife\nOfmW_n1WB-0_0\tbird\nOfpLj-uw2VM_0\tskateboard\nOfv2SMoyg_8_0\tboat\nOgG3xES-A9s_0\tbicycle\nOgG3xES-A9s_1\tbicycle\nOgtTZgAAtrk_0\tbear\nOg77fxfsfzI_0\tskateboard\nOg83XjWPr30_0\tbird\nOg_sRGRP2fw_0\tmotorcycle\nOhQqfPIVR_o_0\ttruck\nOhh5X9j8-P4_0\tskateboard\nOhvnlA9rzUA_0\tumbrella\nOh4vuNdjqGg_1\tboat\nOh4vuNdjqGg_3\tboat\nOh79QNRx0m0_0\tbus\nOiHa7vhbW0g_0\tumbrella\nOiT0hP6IU_0_1\tcar\nOidiasYmhhk_0\tdog\nOiuo__vi77s_0\tmotorcycle\nOi3BJVuj3f8_0\tbus\nOjst9j_7TPs_0\tmotorcycle\nOjxLYDs9O2w_1\tskateboard\nOkd1qAIUuZo_0\tskateboard\nOkd1qAIUuZo_2\tskateboard\nOlO9xdVfniA_0\tbus\nOlPObAsvFRE_0\tbear\nOlQykWy5_d0_0\tskateboard\nOlVZS0O7Xcc_0\tbus\nOlVZS0O7Xcc_1\tbus\nOlVofey46c8_2\tgiraffe\nOlVofey46c8_0\tgiraffe\nOldv3-_fn3E_0\tmotorcycle\nOlufwgkC9nA_0\tcat\nOl3C5MWakic_0\tbus\nOl63TPS0wjE_0\tskateboard\nOmTHe4jPR30_0\tumbrella\nmTnSFF649v4_0\tmotorcycle\nmTtOhVJYmco_0\tbicycle\nmTuXb1mo6ms_1\tmotorcycle\nmTwbZIC2mjs_0\tumbrella\nmUllN4tCjhg_0\tcar\nmVWf8BrbbQc_0\tskateboard\nmVZVZPz-0uk_0\tknife\nmVztYl0hyR0_1\tbird\nmWOuUa5VTIU_4\tbird\nmWSWZi7ef2Q_0\tbus\nmWULzZ-r0BE_10\tbear\nmWULzZ-r0BE_0\tbear\nmWULzZ-r0BE_1\tbear\nmWULzZ-r0BE_3\tbear\nmWULzZ-r0BE_6\tbear\nmWULzZ-r0BE_7\tbear\nmWULzZ-r0BE_9\tbear\nmW85x5O3sQM_1\tbus\nmXYQlH9le8Y_0\tdog\nmXt-xLcVJTM_0\tknife\nmXuPzw4I-wQ_0\tdog\nmXu238CeGfQ_0\tmotorcycle\nmXu238CeGfQ_1\tmotorcycle\nmX3SlrHHN8A_2\tknife\nmX3SlrHHN8A_3\tknife\nmYFsdZ6ZiHg_0\tskateboard\nmYYLIkI65fA_0\tcat\nmYgcUWeYKeE_0\tcat\nmYhujznmuic_0\tmotorcycle\nmYtEL2P4G64_2\ttruck\nmYtEL2P4G64_0\ttruck\nmY6M_QMVm6A_0\tdog\nmY6M_QMVm6A_1\tdog\nmY6M_QMVm6A_2\tdog\nmY6M_QMVm6A_3\tdog\nmZEPBKLKQLU_0\tskateboard\nmZStBRJGz0o_0\tbird\nmZWugKrC8fs_0\ttruck\nmZ0LxtaLk9s_0\tbicycle\nmZ0LxtaLk9s_1\tbicycle\nmZ1ae3QtMqY_1\tskateboard\nmZ6SXifL_5I_0\tcat\nmaANeKOpibc_0\tbus\nmaATqEbCdmA_0\tboat\nmaOsv3Gen0Q_0\tmotorcycle\nmagDXuphf6E_0\ttruck\nmavzqjj21eQ_0\tmotorcycle\nmbFrW58khSM_0\tmotorcycle\nmbtyAyprPhQ_0\tmotorcycle\nmbuozxoOynA_0\tbus\nmb9G4GF56RA_1\tumbrella\nmb9G4GF56RA_2\tumbrella\nmb-nes45JeE_1\tbird\nmb-nes45JeE_0\tbird\nmcCOvhuC86Q_0\tcat\nmcxoHsKM444_0\tcat\nmc0A1NsuIBI_0\tbird\nmdDoBuc7jag_0\tboat\nmdZbK8mOA5Y_0\tmotorcycle\nmdxbRZzm2Fo_4\ttruck\nmdzJDnEx5AI_2\tboat\nmd8Xi01GJ0Q_3\tbird\nmeRJPfPZTpw_3\tbird\nmebu5O8auic_1\tbird\nmehKWfZTJQE_0\tbird\nmfPFvq57cxM_0\tskateboard\nmf4LyMZ6wyY_0\tskateboard\nmgEZVZrBkrg_0\tbicycle\nmgEkK74q1Lo_0\tmotorcycle\nmgTCPe8eM00_1\tumbrella\nmgVB0o0U17w_1\tskateboard\nmgVB0o0U17w_0\tskateboard\nmhSSgOcQwd8_0\tcat\nmhqhGszzAR8_0\tcat\nmiC3NPxHofU_1\tbird\nmiQyhDocW3I_1\tdog\nOm1q-9YbJu0_0\tbus\nOm-NvWZY9XM_0\tbear\nOnKqSIvDmuM_0\tskateboard\nOnemsYazBrQ_0\ttruck\nOnemsYazBrQ_5\ttruck\nOnemsYazBrQ_1\ttruck\nOnemsYazBrQ_2\ttruck\nOnemsYazBrQ_3\ttruck\nOn3Yd3AHFp0_0\tdog\nOn3b0cn9QYE_0\tbear\nOn-GcAXLGZ0_0\tmotorcycle\nOn_5UKUJi7U_0\tcar\nOohVLB8HrmU_0\tbear\nOo2Ux9rWYGo_0\tskateboard\nOo8VLA_C0ho_5\tbicycle\nOpAPsb8a7ck_1\tbicycle\nOpD07kt9gdg_0\tmotorcycle\nOplcFe9OOMA_0\tboat\nOplcFe9OOMA_1\tboat\nOpqmXBQU87o_0\ttruck\nOp3764NveuQ_1\tbicycle\nOqKwAAWtANM_0\tcat\nOqPOCcEAHqk_0\tskateboard\nOqbhEJlCp48_0\tskateboard\nOqc407hvhn8_0\tskateboard\nOqjbl3c9LYU_0\tbear\nOqo2P7az_Jw_2\tmotorcycle\nOrhDfcZqq1E_0\tcat\nOrhipZ8lZHo_2\tbird\nOrhipZ8lZHo_3\tbird\nOrhipZ8lZHo_1\tbird\nOrmkaB0vrG8_0\tdog\nOr-E2m2p4X8_0\tmotorcycle\nOr--toMjK3I_3\tboat\nOsvYa6TnsFI_2\tcar\nOtIV8clF1-o_0\tbird\nOtIV8clF1-o_2\tbird\nOtKIh5W3Uro_0\tbird\nOtw43WNrlsM_1\tbicycle\nOtw43WNrlsM_2\tbicycle\nOtyYn5vEHbM_2\tskateboard\nOuBzZzA9Q7o_0\tbicycle\nOuJMq2UqA-s_0\tdog\nOuVznEsiyyA_1\tmotorcycle\nOui9ZgfJiJE_0\tskateboard\nOu1yCmmAuSY_0\tcat\nOvEJdKYqvF4_2\tdog\nOvEJdKYqvF4_5\tdog\nOvZguhO8UVQ_1\tbird\nOvlqAWflXBs_1\tbus\nOwQktS0dM3k_1\ttruck\nOwUWoVRKf7E_2\tzebra\nOxADHlAb7dM_0\tboat\nOxInmNOeLHY_0\tbicycle\nOxInmNOeLHY_1\tbicycle\nOxInmNOeLHY_2\tbicycle\nOxInmNOeLHY_3\tbicycle\nOxInmNOeLHY_5\tbicycle\nOxInmNOeLHY_6\tbicycle\nOxInmNOeLHY_7\tbicycle\nOxZdEZCJtcw_1\tmotorcycle\nOxkx4bWzOMo_0\tskateboard\nOxp9w62kg0Y_2\tknife\nOxp9w62kg0Y_3\tknife\nOx1idrJvs2E_0\tcat\nOx_8K3szIs0_0\tcat\nOyGSbm149i8_0\tboat\nOzBFCX0vpiU_0\tmotorcycle\nOzCvvptC7o8_1\tbicycle\nOzHYG5kpMbw_0\tcar\nOzItTAjpb9U_1\tknife\nOzwlwZq46z8_3\tbus\nOz89_rVdBV0_0\tknife\nOz89_rVdBV0_1\tknife\nO0JwQIk5pZY_5\tknife\nO0Xl3AF_T0s_0\tdog\nO0dforbCqKM_0\tcat\nO0lfImzhCM4_0\tdog\nO0p5eAP2AyA_0\tboat\nO0rSIIipDT0_0\ttruck\nO02oVGyCZDI_0\tmotorcycle\nO0_GC-1pCYk_0\tbear\nmj155rqWO3k_0\tmotorcycle\nmj5oMHI4Ch0_1\tskateboard\nmkPWdHTd5X8_0\tbear\nmkVYY1EvetE_1\tbicycle\nmkZA72VL1oI_0\tzebra\nmlAzMb61fYU_0\tcat\nmlJYoZVHztc_0\tbear\nmlT2XD9k5Ro_2\tbird\nmlophh4mK4A_2\tbicycle\nmluR2OjQTmU_0\tcar\nmlwpiHjyzIA_1\tmotorcycle\nml4BVi7cCV4_0\tbird\nmmnFugXdqlQ_1\ttruck\nmmnFugXdqlQ_0\ttruck\nmmojCWiaNYI_0\tcat\nmm_Udf1FG0s_0\tcat\nmnB2hBuySsI_1\tbear\nmnB2hBuySsI_2\tbear\nmn_cuBRZu8M_0\tcat\nmoZR-AtZJnI_0\tcat\nmobg7uEQTmo_0\tumbrella\nmogyHm8Jiok_0\tbird\nmoh4TWSe9Fc_0\tumbrella\nmotFo9G-GLs_0\tskateboard\nmoyxRLHHeiI_0\tbus\nmo5ZpMFELUQ_0\tmotorcycle\nmpO9dBwTeW4_0\tbicycle\nmpYAM0x6L5M_0\tmotorcycle\nmphFmT6TzLM_1\tknife\nmphFmT6TzLM_2\tknife\nmphFmT6TzLM_3\tknife\nmp25XfIJhQY_0\tcat\nmp8USuQKinc_0\tbird\nmqUyhzbCpig_0\tmotorcycle\nmqjilBZByTI_0\tskateboard\nmq5DqmYGVM4_0\tperson\nmrJAakc7Fj8_0\tbus\nmrOsDCuEdRQ_1\tdog\nmrY8gIFiUhE_0\tcar\nmrhfyNpFMq4_1\ttruck\nmryDGEujJno_0\tmotorcycle\nmsNXnb1a02o_0\tknife\nmsbOXFTsSVU_0\tgiraffe\nmszokIKsdUk_0\tbus\nms0_k1aLULU_0\ttruck\nmtITgRv95Sw_0\tdog\nmtU7bHAsI8Y_0\tcat\nmtZHgLGJiu4_0\tskateboard\nmtmzPf2AZuI_0\tskateboard\nmtnURpE0wyE_0\tbicycle\nmtnURpE0wyE_1\tbicycle\nmtnURpE0wyE_2\tbicycle\nmtpTPJtG8F4_0\tmotorcycle\nmt_LZ5UsG_w_5\tknife\nmt_LZ5UsG_w_1\tknife\nmuKQy-1p4fg_0\ttruck\nmuWIt0X4pKQ_0\tdog\nmuZ7xPF8odU_2\tbicycle\nmueRS6nKTdA_0\tbicycle\nmujGcuAzOdo_1\tbear\nmujGcuAzOdo_4\tbear\nmulQIomc988_1\tbicycle\nmulQIomc988_3\tbicycle\nmuoqLEyrhhI_0\tdog\nmursOuNatdc_0\tboat\nmu65YolQZds_0\tknife\nmvEcWlHP6u4_0\tbicycle\nmvYBfdZkCe8_0\tdog\nmvb5jVJeuGE_0\tperson\nmvhEFfQeFCY_0\tbear\nmv2FHxOHSR0_1\ttruck\nmwAPVTEbZGM_0\tskateboard\nmwAPVTEbZGM_1\tskateboard\nmwBKrjOpxkY_0\tskateboard\nmwIroQ9RbXA_0\tbird\nmwrxbdZraRk_0\tcar\nmw5fQZ8EB5I_0\tknife\nO1KrpGSvXAY_0\tknife\nO19Mlhhzqgc_2\tbear\nO2ZR7HPYZCo_0\tcat\nO2u5126JYpY_2\tmotorcycle\nO3DA7qzf2s8_1\tbus\nO3DA7qzf2s8_0\tbus\nO3y2taxKvCA_2\tboat\nO4CfuT5BDcc_0\tskateboard\nO4VQQaJ07zY_0\tcat\nO5b3XcEGZ4M_0\tcar\nO54XRvo6VU0_2\tmotorcycle\nO54XRvo6VU0_0\tmotorcycle\nO59A3lMogSo_0\tgiraffe\nO59A3lMogSo_1\tgiraffe\nO6BXRuq_YcE_0\tdog\nO6BXRuq_YcE_2\tdog\nO6EtCByhFZI_0\ttruck\nO6Jf2yxCTuI_0\tcat\nO6Uln7GkqDA_0\tskateboard\nO6b3a--pX3E_0\tbird\nO6kqsEuKhis_0\tbird\nO69gCmR0LvA_2\tmotorcycle\nO69gCmR0LvA_3\tmotorcycle\nO7ReHsig5IQ_1\tknife\nO7Wrpfzb8_g_0\tbear\nO7lvzdzmX5k_2\tbicycle\nO8BNclEPo5w_2\tdog\nO8BNclEPo5w_1\tdog\nO8f0Dhn1as0_0\tumbrella\nO8sB46kfM28_7\tumbrella\nO8sB46kfM28_6\tumbrella\nO8sB46kfM28_13\tumbrella\nO9Duu2Un8AE_0\tskateboard\nO9Duu2Un8AE_1\tskateboard\nO9Duu2Un8AE_2\tskateboard\nO9EqKcj_CPs_0\tumbrella\nO9iWg3ZqLcU_2\tbear\nO-NZJ4-eoQ8_0\tbus\nO-ZUr1bQzp4_6\tumbrella\nO-kJ078YJq4_7\ttruck\nO-2S79hisI8_0\tzebra\nO-4CV4-x7Tk_0\tdog\nO_D7M00pmjQ_0\tmotorcycle\nO_PCiV3NICw_0\tdog\nO_bAX_ruSNQ_0\tskateboard\nO_fZm7Mblgg_0\tknife\nO_mRo8YLc50_0\tumbrella\nO_3VssPsSVQ_5\tbicycle\nPABLxf3U8qc_2\tbicycle\nPABLxf3U8qc_4\tbicycle\nPABLxf3U8qc_1\tbicycle\nPASMcbnOtUM_1\tbird\nPAZBEMKPQEw_4\tboat\nPAbB9I6MC_o_2\tboat\nPBD1IW-vA6Y_0\tdog\nPBD1IW-vA6Y_1\tdog\nPBQjiKBWtao_1\tbicycle\nPBQjiKBWtao_3\tbicycle\nPBqIT1T_Tl4_2\tumbrella\nPByJb40LNJ4_28\tbicycle\nPByJb40LNJ4_30\tbicycle\nPByJb40LNJ4_3\tbicycle\nPByJb40LNJ4_13\tbicycle\nPByJb40LNJ4_18\tbicycle\nPByJb40LNJ4_22\tbicycle\nPB8sWVNFkDw_1\tmotorcycle\nmxA8JbJ0Do8_0\tcar\nmxFga0703Mc_0\tbird\nmxMCBmJ5owQ_2\ttruck\nmxXH5aZCSJ8_0\ttruck\nmxYl5Y1KAiY_0\tdog\nmxZgNkjbyxk_1\tknife\nmxeuMHAWMxo_6\tknife\nmxeuMHAWMxo_7\tknife\nmxeuMHAWMxo_9\tknife\nmxsTfEQlVgM_0\tmotorcycle\nmxvG6gSVYuo_0\tbicycle\nmxwmtm7rKF8_0\tcar\nmxxiqhZzhEE_0\tmotorcycle\nmxyHDUSMhLs_0\tcat\nmx2i3CYeEEE_0\tbear\nmyRelcztkqo_1\tknife\nmyWzn06fmDI_0\tdog\nmyY1Ijlbknw_1\tbicycle\nmyY1Ijlbknw_4\tbicycle\nmyY1Ijlbknw_5\tbicycle\nmyY1Ijlbknw_2\tbicycle\nmymtiyldysk_0\ttruck\nmzGmbowEFfA_1\tknife\nmzMgXA_v8q4_0\tmotorcycle\nmzYPSSUS--w_2\tboat\nmzYPSSUS--w_0\tboat\nmzdD_0CKekQ_0\tmotorcycle\nmzfrEqAhHeY_0\tbus\nmzm_D3J8zqQ_0\tumbrella\nmzyu28WsuFs_0\tmotorcycle\nm0MVwwL_0MM_0\tbicycle\nm0gukhoxW0Q_0\tskateboard\nm0gukhoxW0Q_1\tskateboard\nm0gukhoxW0Q_2\tskateboard\nm08CnM1FBR0_0\tcat\nm0_tPmnque0_0\tbicycle\nm0_tPmnque0_1\tbicycle\nm1Qhj9jYohk_0\tbus\nm1pFyDGuVzk_1\tskateboard\nm1pFyDGuVzk_2\tskateboard\nm2StZDAc1yw_0\tbird\nm2uQowbhYDc_1\tbear\nm3AM4AQLDo0_0\tzebra\nm3AM4AQLDo0_1\tzebra\nm3RCOnTUyMY_0\tboat\nm3RCOnTUyMY_1\tboat\nm3SOT8NCOEY_0\tbicycle\nm3cgfDs0_G8_2\tdog\nm3fctWcU4as_0\tmotorcycle\nm3sztS1QC3s_0\tcat\nm3uDjNrfbD8_1\tbear\nm35CwgXROHw_0\tcar\nm4qZSrgBZkc_0\tbird\nm4qZSrgBZkc_1\tbird\nm6NemUzZQFc_1\tmotorcycle\nm6NemUzZQFc_0\tmotorcycle\nm6S6MEQgo2E_2\tmotorcycle\nm6S6MEQgo2E_4\tmotorcycle\nm6hQABEUkQQ_4\tboat\nm6z3sbKYwcc_3\tbus\nm6z3sbKYwcc_4\tbus\nm669S-54lMc_0\tmotorcycle\nm669S-54lMc_1\tmotorcycle\nm7djLwb_a5k_0\tcar\nm7k5fJXTZPI_5\tbird\nm7xUarlXKEw_0\tumbrella\nm7xUarlXKEw_4\tumbrella\nm7xUarlXKEw_1\tumbrella\nm7xUarlXKEw_2\tumbrella\nm8B-pb1I7nc_0\tcat\nm8YA8dXocmg_2\tboat\nm8t6gPBCxr8_0\ttruck\nm9HGLakPqSo_1\tbear\nm-NEL2Jq0nQ_2\tcar\nm-dKTMwfPqo_0\ttruck\nm_JHW_eCKY0_0\tumbrella\nm_dOsn1chuA_1\tbus\nm_dOsn1chuA_2\tbus\nPCC9sJ4Gdxw_0\tcar\nPCeoeGBYrJU_0\tdog\nPCqa_yHJ32g_2\tbicycle\nPC2plr6JdQg_0\tumbrella\nPC_wbEzLNLQ_0\tbicycle\nPC_wbEzLNLQ_1\tbicycle\nPDU92To89cE_1\tbird\nPDlKUKo06lI_0\tknife\nPDvSiH5Pf_0_0\tbus\nPEC7E1t79A8_0\tcar\nPEJFRzyvIBc_0\tbird\nPEJvGdLGOjU_0\tzebra\nPEY59JrOz5I_1\tbird\nPEY59JrOz5I_0\tbird\nPEfpmwboH3w_0\tbus\nPEtsR4S5Zzg_0\tbicycle\nPE_zE5T1ayo_0\tcat\nPFJiRWGaPaw_0\tcar\nPFJiRWGaPaw_1\tcar\nPFa_RCiQVjA_0\tskateboard\nPFjuIzuDmJs_1\tknife\nPF8HAptOIC8_1\tcar\nPGEM0ys1sGE_0\tknife\nPGMimFwsl54_0\tcat\nPGP0PEOv3zw_2\tbear\nPGP0PEOv3zw_0\tbear\nPGipyYSRHso_0\tbicycle\nPGn623RKWNA_1\tcar\nPG8bMx6DuSo_0\tknife\nPHeQ1xoUBgg_1\tboat\nPHmnvFIAtHo_0\tbus\nPHxuey2u6UE_0\tskateboard\nPIDvuyKFIJ8_0\tcat\nPIT2XsuODRE_0\tbird\nPIa767e6xuQ_0\tcat\nPIkhnCxrF9g_0\tcat\nPInIdEVTPn0_7\ttruck\nPI5ROW9ewOg_0\tcat\nPJoSJpMWo0Y_3\tskateboard\nPKTJIVIuSFw_0\ttruck\nPKZXF6Hj0kw_0\tbird\nPKZXF6Hj0kw_2\tbird\nPKZXF6Hj0kw_1\tbird\nPKtfgOMwx4A_0\tdog\nPK-4bXZDtlA_1\tskateboard\nPLO2xY76oh4_0\tmotorcycle\nPLVEvFhXHAE_0\ttruck\nPLVEvFhXHAE_1\ttruck\nPLd8HlO4HYo_1\tcat\nPLd8HlO4HYo_0\tcat\nPLwQ0AHwZgg_1\tskateboard\nPLwQ0AHwZgg_2\tskateboard\nPL2FcMREy_0_0\tbicycle\nPMRnsvlMF4A_0\tskateboard\nPMUqAknVm2Q_0\tmotorcycle\nPMXmKup8jy4_0\tboat\nPMkiPjm9XdY_1\tmotorcycle\nPM028PEyjv0_4\tbear\nPNpDnymoq8w_0\ttruck\nPN6PB668zV4_0\ttruck\nPN86cQumWDU_0\tmotorcycle\nPN_b6R9HxwQ_2\tcat\nPOQalChDjmU_0\tskateboard\nPOW6F8MZMTQ_1\tbird\nPO-OnjGHjDk_0\tbus\nPPI6aG2QFaM_0\tbird\nPPdV273cZC8_0\tskateboard\nPPhYyYHNaQ4_2\tboat\nPPhYyYHNaQ4_3\tboat\nPP5_L_EZsmE_0\tbird\nPQI2zG7I8jI_1\tbus\nPQjM0fGHXds_0\tbird\nnARlDpJ1mzQ_1\tdog\nnAmX6FEKmTg_0\ttruck\nnAsHFcuT16U_0\tskateboard\nnAsHFcuT16U_1\tskateboard\nnBLWjCuzp2g_0\tdog\nnBPhMvA4QIs_0\tdog\nnBXKLM2hLN0_1\tcar\nnBtF1BDR8wE_0\tmotorcycle\nnCKBmlhUPYg_0\tcat\nnCPhfqQsjIQ_0\tmotorcycle\nnCPhfqQsjIQ_1\tmotorcycle\nnCe_XQHu77g_0\ttruck\nnCgjbB7wxoE_0\tbus\nnDsb271W8XU_1\tcar\nnEFtdboPB2w_1\tbear\nnEIawnnD8V8_0\ttruck\nnELgP3wAnm8_0\tdog\nnEM7mY_k1_4_0\tboat\nnEVFHD_9xCw_1\tbird\nnEtqWL5nz_U_0\tbus\nnEtqWL5nz_U_1\tbus\nnEyJKW3bMCc_0\tdog\nnE6lY5G16lE_1\tbicycle\nnE6lY5G16lE_2\tbicycle\nnE6lY5G16lE_0\tbicycle\nnFQvQPqMjpk_0\tcar\nnFZrdv6K4pg_0\tmotorcycle\nnFa5TGw-b5Y_0\tbicycle\nnF28ACSGHM8_0\tboat\nnF444n6UUJE_0\tbear\nnF444n6UUJE_4\tbear\nnGQ3Hq6P5tM_0\tcar\nnGnDoylbNm8_1\tbear\nnHAF0LI8CPk_0\ttruck\nnHAF0LI8CPk_1\ttruck\nnHAF0LI8CPk_2\ttruck\nnHApjxTb0fI_0\tumbrella\nnHAt_MmKZtA_0\tdog\nnHRioXgb-Fo_0\tbird\nnHbHOfTnrtg_0\tdog\nnHbHOfTnrtg_2\tdog\nnHe8j-osZck_0\tdog\nnH9AXssn9vw_0\tumbrella\nnIIQLgiJpz4_0\tmotorcycle\nnIqnT8pJFz0_0\tknife\nnJF2wWsJCd8_0\tcat\nnJuhir_bIpw_0\tcat\nnJ6iwd_XQso_0\tumbrella\nnJ6uR6SE01w_0\tbicycle\nnKM_iCO6bKs_0\tbus\nnKS1tzA_Hrk_0\tskateboard\nnKUBzJ38GgY_1\tboat\nnK-2zxkNCuA_0\tcat\nnLED5Us6rMo_0\tmotorcycle\nnLL3PMe48dQ_0\tboat\nnLXX8_SfZs0_0\tcat\nnLn2LN33uxg_0\tcat\nnLx78Uv2dmc_3\tskateboard\nnMbLyO3605c_0\tknife\nnMo_-oHL7bU_0\tknife\nnMtxrG4hH5M_0\tskateboard\nnMyhi847s6A_0\tknife\nnNNF1j89RS0_0\tbear\nnNScwJL6ym0_0\tmotorcycle\nnNeaR2o9KMY_0\tboat\nnNwEBFJZT8U_0\tbird\nnOe7o_AaOUs_3\tskateboard\nnOfyHwhf35s_0\tbus\nnPBFLS60OYk_5\ttruck\nnPhpYRGfHlw_0\tbear\nnP5wigEk-3A_3\tknife\nPQsHE_w_Q5I_1\tknife\nPQuYVLwcT7k_0\tskateboard\nPQ4gPP2l3RY_0\tbus\nPQ9ZEkeKIzs_0\tskateboard\nPRIJbfolHpE_0\tumbrella\nPRIw6kIS_oM_0\tmotorcycle\nPRg6CE_exgE_2\tdog\nPRoAGpjxUIQ_1\tdog\nPSdh0lzfg3M_0\tbus\nPSrvUaBxbgU_0\tmotorcycle\nPS_CABKe3Yk_0\tmotorcycle\nPTKnZd28Sac_2\tdog\nPTORa3OCyoU_1\ttruck\nPTxm2ZRQbNg_0\tskateboard\nPTxm2ZRQbNg_5\tskateboard\nPTxm2ZRQbNg_1\tskateboard\nPTxm2ZRQbNg_2\tskateboard\nPT2XxI2FufM_0\tbus\nPT3felQmrwU_1\tbear\nPT6KXLLxhes_0\tbird\nPUFo51ngpe8_0\tbus\nPUeS5CCMoa4_1\tzebra\nPUgpXWoI6nw_2\tbird\nPUiSf8EuinE_2\tbear\nPU3x1IpbndQ_0\tknife\nPU5v_AtaKKw_9\tbird\nPU5v_AtaKKw_2\tbird\nPU5v_AtaKKw_3\tbird\nPU5v_AtaKKw_4\tbird\nPU5v_AtaKKw_5\tbird\nPU5v_AtaKKw_7\tbird\nPU-lRdkaqdg_0\tcat\nPVV-saboi8Q_0\ttruck\nPVXtjPyNMms_0\tdog\nPV6mXKbH058_0\tskateboard\nPWIWGwJZENs_0\tdog\nPWQGxn3c5iQ_2\tknife\nPWQGxn3c5iQ_0\tknife\nPWs7zuWiKZo_0\tbus\nPW7XGdRhgKI_0\tcat\nPW97rAj3_84_0\ttruck\nPXb9PHJghpA_0\tcat\nPYH5FxLfm3M_0\tbus\nPYOwGQUBJXY_1\tboat\nPYWfE8WhDKk_1\tknife\nPYohJALR7DA_1\tmotorcycle\nPYohJALR7DA_2\tmotorcycle\nPYsiftgJNrs_0\tmotorcycle\nPZEun35Hcoo_1\tdog\nPZNXXWorkrY_0\tmotorcycle\nPZSGccVPUm8_1\tbird\nPZjQiLyqHkw_0\ttruck\nPZoM9dv8P3A_1\tbear\nPZuGSUZ1N2w_0\tskateboard\nPZz86aIvTWU_0\tskateboard\nPZ3PfRXk2rQ_0\tcat\nPZ9YkHds_00_0\tdog\nPaVPMVUQwtM_7\tboat\nPaVPMVUQwtM_2\tboat\nPatPjxyHqvY_0\tboat\nPbPu-cnEMqo_0\tcat\nPbUb1IktyM0_0\tmotorcycle\nPbdnWP3AnKQ_1\tperson\nPbhIhdwp7nI_5\tknife\nPceERP83N7g_1\tdog\nPceERP83N7g_2\tdog\nPdER58jIvPg_0\tcat\nPdRRvS5p7TM_4\tbicycle\nPdRRvS5p7TM_0\tbicycle\nPdRRvS5p7TM_1\tbicycle\nPdgOy1B6ByE_0\tperson\nPdgOy1B6ByE_1\tmotorcycle\nPdkRSALRJOE_1\ttruck\nPdne4jISJMk_0\tbird\nPeXODrjPJpU_0\tmotorcycle\nPecvaJstdYE_0\tknife\nPejvg4LHBXw_1\tskateboard\nPeur7tMeMNc_11\tbicycle\nPeur7tMeMNc_12\tbicycle\nPeur7tMeMNc_20\tbicycle\nPeur7tMeMNc_21\tbicycle\nPeur7tMeMNc_5\tbicycle\nPew5sug67ao_0\tdog\nPfKS2L_bxBc_0\tcat\nPfOYq_uyVF8_1\tbird\nnQPFPYvmWtU_0\tskateboard\nnQd33JTaurM_0\tbird\nnQd33JTaurM_2\tbird\nnQmH_VIOI4o_0\tcat\nnRG70FCdevw_0\tbus\nnRP28gcIe5Y_0\tbird\nnRP8SwdbUGw_1\tbear\nnRr5gMvJ77k_0\tskateboard\nnSgcLfwMJu4_0\tdog\nnSvaQz0i9i8_1\tskateboard\nnSvaQz0i9i8_0\tskateboard\nnSz_BdDSYsk_1\tbear\nnS_SY6iDJ2U_3\tbear\nnTjbCPXR408_1\ttruck\nnTjbCPXR408_2\ttruck\nnTjbCPXR408_3\ttruck\nnTjbCPXR408_4\ttruck\nnTz3LA23B4U_0\tskateboard\nnUBgjOAcKBw_0\ttruck\nnUDvay-MfVs_0\ttruck\nnUVSuT7wfDs_0\tmotorcycle\nnUdbTm-FW0I_0\tbus\nnVAOU6r15Ww_3\tknife\nnVTMM3F16j0_1\tboat\nnVi9QbrUrjE_0\tmotorcycle\nnWvR8fiLxGw_0\ttruck\nnXD-zvpjC50_0\tcar\nnXG_fwbJQ-E_0\tcar\nnXjIIWFPSd4_0\tcat\nnXlSVy8CmMk_0\ttruck\nnXpq0p9VBXc_0\tboat\nnXqE-XROi78_0\tbear\nnXqQPuJmTZo_0\tcat\nnYYFquwhxeI_0\tcat\nnYqRuOF_Uao_2\tcar\nnYqRuOF_Uao_0\tcar\nnYqRuOF_Uao_1\tcar\nnYut3zBSbuM_0\tbear\nnY0xtzTME34_1\tcat\nnY2XarSrm7Y_0\tboat\nnY2XarSrm7Y_1\tboat\nnY3BS_3Mq6o_0\tmotorcycle\nnY3fRfvoh9w_4\tbear\nnY3fRfvoh9w_0\tbear\nnY_icz32gn8_0\tcat\nnZHGbmVkhrE_0\tcat\nnZn4xAbcGSk_0\tcat\nnaE1svJuCTw_0\ttruck\nnaE1svJuCTw_1\ttruck\nnaR-9rNf5fE_0\tskateboard\nnalqTKM6890_0\tumbrella\nnalqTKM6890_1\tumbrella\nnalqTKM6890_3\tumbrella\nnbCix4zvF_E_0\tumbrella\nnbcH6NfapD0_0\tboat\nncuqh0iglYU_2\tskateboard\nncu8gbqMkMc_0\tcat\nnc9aHs1_xzs_2\tmotorcycle\nndBPYFAVIiM_0\tbird\nndJ2_mPZktw_2\tbear\nndJ2_mPZktw_1\tbear\nndMfXyYPfAM_0\tbird\nndNs3q8tY9U_0\tbus\nndO2b-r-Krs_0\tmotorcycle\nndO2b-r-Krs_1\tmotorcycle\nndj7VTH_PhE_0\tbird\nPfi9ZEQtgjY_0\tknife\nPfnFeL4ArA8_0\tskateboard\nPfpTZKfKeKY_2\ttruck\nPfpTZKfKeKY_0\ttruck\nPfpTZKfKeKY_1\ttruck\nPgBMaMqbYqA_0\tmotorcycle\nPgE6BAQmVQQ_0\tumbrella\nPhFFfxYo2_o_1\tdog\nPhJOcszed6A_1\tcar\nPhJ5rQ5VmeY_0\tskateboard\nPhjPRYTcJwQ_1\tcar\nPhyQoxFlTMU_0\ttruck\nPh8Vag9VxRU_0\tzebra\nPh8Vag9VxRU_4\tzebra\nPh8Vag9VxRU_1\tzebra\nPh8Vag9VxRU_2\tzebra\nPh8Vag9VxRU_3\tzebra\nPiO6F4X8k_M_1\ttruck\nPiO6F4X8k_M_2\ttruck\nPiRy-T8d0gQ_1\tskateboard\nPiRy-T8d0gQ_0\tskateboard\nPi_aEuQD5gA_5\tumbrella\nPi_aEuQD5gA_8\tumbrella\nPjAWqdid4rw_1\tumbrella\nPjBOLvrlicY_0\tcar\nPjBOLvrlicY_1\tcar\nPjBOLvrlicY_2\tcar\nPjTtsfl7KZ4_0\tcat\nPjjO6IaSiuo_0\tskateboard\nPjjV-pCjgqc_1\tbird\nPjk0d9eP2gI_0\tdog\nPjm-ptGWuWU_0\tdog\nPjpGwiZ8mK8_0\tbus\nPjuUsIXzSzQ_0\ttruck\nPjwfhUvbBNI_0\tskateboard\nPj9588RHCHM_1\tcar\nPkktNSL9IjE_0\tbird\nPlKRGU_XIzs_3\tboat\nPlfCXfMXcs0_0\tskateboard\nPlfCXfMXcs0_1\tskateboard\nPltDcKetGYw_0\tknife\nPl6ja9eNHzE_3\tskateboard\nPl6ja9eNHzE_4\tskateboard\nPl6ja9eNHzE_1\tskateboard\nPl6ja9eNHzE_2\tskateboard\nPml224S87BE_0\tbird\nPm_2At7P8Yo_0\tbus\nPnt2XmUpT8Q_1\tbear\nPnt2g-tHwK4_0\ttruck\nPn1VFdKk5vQ_0\ttruck\nPoL9E8Yc2vo_0\tcar\nPoL9E8Yc2vo_1\tcar\nPoUPC9WCdiE_5\tdog\nPoV7Wn66UTo_0\tbird\nPolaH6r1Qds_4\ttruck\nPolaH6r1Qds_2\ttruck\nPpI7DZdWcfc_0\tperson\nPpZHxI0N3Wo_1\tmotorcycle\nPptqwylntWQ_1\tboat\nPp6vch1kMqE_0\tcat\nPqJOWTjp0ww_0\tcat\nPqKlF5nnOFs_0\tmotorcycle\nPqNDvGH2-iM_0\ttruck\nPq7tfwAqhIM_0\tmotorcycle\nPrV4kyVAwWE_0\tbear\nPrynn7mNQdQ_0\tknife\nPsVhOsDIopI_0\tumbrella\nPsfddppUmSk_0\tskateboard\nPsgPXqr-N7A_0\tskateboard\nPsvVwYAeKEc_1\tboat\nPsytJKFxV8c_0\tboat\nPszGWhekz-Y_0\tumbrella\nPs9ReRjYLVk_0\tbird\nPs9f-iFqX4M_0\tskateboard\nPtL5k4ew4q0_0\tcar\nPtR7vRI9mn0_0\tmotorcycle\nPtVUPVUYld8_1\tskateboard\nPtnFOxat4hE_0\tbear\nPtq7-B4P9Bw_0\tskateboard\nPt04IRhfVFk_0\tboat\nPt1vVuKH3fk_1\tskateboard\nPuV7SV-FwOU_1\tskateboard\nneA0T50G8TU_0\tcar\nneA0T50G8TU_1\tcar\nneA0T50G8TU_3\tcar\nnewqX6GTbrA_0\tcar\nne8K6jHnOT8_0\tboat\nnfnKsQItZjE_0\tskateboard\nnfxMe31pjec_4\ttruck\nngAKsr62ACQ_0\tknife\nngOtFD7Fxd4_2\tboat\nngZtMG--t4I_2\tbear\nnga4aEZQhJw_0\tknife\nngslQPG3kEI_1\tbird\nnhI3C5y85gw_0\ttruck\nnhdMHfvazLY_0\tumbrella\nnhoO0Evj7OQ_0\tumbrella\nnhoO0Evj7OQ_2\tumbrella\nnh56dQ3T3Mc_2\tboat\nnh56dQ3T3Mc_3\tboat\nniBK6HGH16U_0\tcat\nni3trEPOXck_0\tbird\nnjBEUyoUzlQ_0\tbird\nnjK1OLFCvv4_0\tcat\nnjMC5HAlnMU_1\tumbrella\nnjnGmGuXNdE_1\tknife\nnjn4TkIDn0k_0\ttruck\nnkJxMYiG9Ho_0\tbus\nnkSvwnLvBmw_4\tmotorcycle\nnkSvwnLvBmw_0\tmotorcycle\nnkSvwnLvBmw_2\tmotorcycle\nnkVPvJ3Smrg_0\tcat\nnkZ6NDOt4r4_0\tcat\nnkv5eof4q_M_0\tknife\nnlAePf94uwk_0\tcat\nnlupdJzbyKs_1\tbird\nnl83jp96h9s_2\tknife\nnmmeE-Dfds8_0\tbus\nnmwFYDopqBc_0\tdog\nnmwFYDopqBc_1\tdog\nnnIGNFEnlw8_0\tcar\nnnNkJ09YO9M_0\tmotorcycle\nnnUkcXbXbFM_0\tumbrella\nnnhUxSjBHP8_0\tumbrella\nnoCrLkdGSXw_0\tbus\nnoGmFOxKIr0_0\tperson\nnoIHydna8tw_3\ttruck\nnonoyrFpKVA_1\tzebra\nnonoyrFpKVA_4\tzebra\nnonoyrFpKVA_5\tzebra\nnonoyrFpKVA_0\tzebra\nnosbeVXMgAk_0\tknife\nnqN2uJfit8o_1\tcar\nnqPkd_Quci0_0\ttruck\nnqWs5hqd8Ps_0\tbus\nnqbsnsBZULc_0\ttruck\nnqnjh-NO9go_0\tbus\nnq8oHNlU_BQ_0\ttruck\nnrJURcGigjE_0\tmotorcycle\nnrlcROgdPlI_1\tcat\nPumbYcoJ5zE_0\ttruck\nPu8rYMOC0Iw_0\tdog\nPu_KMtdCGZY_1\ttruck\nPvSzSsQ4YCY_0\tcat\nPvuGk2XhJW8_0\tbird\nPv77ig8kBgE_0\tcat\nPwBNm2_oKbQ_1\tzebra\nPwE-w-S8nQc_0\tcat\nPwRb6q11-rw_7\tbear\nPwRb6q11-rw_0\tbear\nPwRb6q11-rw_3\tbear\nPwRb6q11-rw_4\tbear\nPwRb6q11-rw_5\tbear\nPwgxDMnN1SA_0\ttruck\nPwmBtcc64nM_0\tzebra\nPwmBtcc64nM_1\tzebra\nPxN14d54as8_0\ttruck\nPxOYpOxjFFc_0\tcat\nPx02MS-Ywo0_0\tknife\nPyevrWYsc8k_0\tmotorcycle\nPyr-sHCH2wc_4\ttruck\nPyvyP3J13FI_0\tknife\nPyvyP3J13FI_2\tknife\nPy6rKt-beyk_0\tknife\nPy-bAIGcQ1Y_1\tboat\nPzZ-Jr7jMk8_0\tbus\nP0S7eBa6_S4_0\tdog\nP0e6zPkZO5s_1\tknife\nP1_bfvyTku0_0\ttruck\nP2NRNopueuo_0\tumbrella\nP2SgXG0mMWU_0\ttruck\nP2Wv0vXNCqQ_0\tzebra\nP2kLj1DZq3I_1\tbird\nP2kLj1DZq3I_0\tbird\nP2ldC-_7nrs_1\tboat\nP256TqMIJZk_0\tdog\nP3MLJSbWlpg_1\tmotorcycle\nP3jB1tXpVMw_0\tbird\nP3q6jIrZyo4_1\tdog\nP4jpdzY2as8_0\tdog\nP43doVXj3y0_0\tcat\nP5DcP_VLnP4_0\tbear\nP5Gd_8k2O5s_0\ttruck\nP5VAaJj-1Rc_0\tdog\nP5kFeiFmPxw_0\tperson\nP5xsJqm2v6c_1\tmotorcycle\nP5xsJqm2v6c_2\tmotorcycle\nP5xsJqm2v6c_0\tmotorcycle\nP5yrLRVD86M_0\tdog\nP6Qm9u9GIE4_0\tmotorcycle\nP72vKWjKtik_0\ttruck\nP741OzHLvig_0\tdog\nP8BX8WSWRm8_0\tbus\nP8K2yXmSMwY_0\tbird\nP8MCMBcqM00_0\tmotorcycle\nP8MCMBcqM00_1\tmotorcycle\nP8h9iD7kPRQ_0\tbear\nP80sglFzhRI_0\tbear\nnsS9iSqNMew_1\tbus\nntO6br-N89w_0\tcat\nntVDuucoRIk_0\tcat\nnuVxM9m1nb8_0\tmotorcycle\nnuVxM9m1nb8_2\tmotorcycle\nnvIi1SvX-sU_0\tdog\nnvXKI_MhTTE_4\tknife\nnvYTcYLFUvc_2\tdog\nnvdIoQ5mj64_0\tknife\nnvxwnGRXwZY_1\tdog\nnxJkhdCqhc0_0\tdog\nnxUe9yoeHvs_0\tbear\nnxYGMvfgi8g_0\tperson\nnxj_aavOM50_0\tboat\nnxmr9gg0ses_1\tbear\nnx9Uisdggps_3\tknife\nnx9Uisdggps_0\tknife\nnyOaHbw3DLo_0\tcat\nny2pC-BfLT0_2\tdog\nny2pC-BfLT0_0\tdog\nny2pC-BfLT0_1\tdog\nny3nZLL4cQ0_3\tmotorcycle\nnzGPh9yFDTI_5\ttruck\nnzQqdKnkQ9I_0\tzebra\nnzppX26-51c_0\tboat\nnzytVTFaYvs_0\tknife\nnzytVTFaYvs_1\tknife\nnzytVTFaYvs_3\tknife\nnz9DMQ9cPrw_0\tcat\nnz_YTLNErSY_1\ttruck\nn0P8wVonqY4_0\tmotorcycle\nn0T51DP8868_0\tbird\nn1VbuQk_3JY_0\tbird\nn1ZrqU8VSBA_2\tbus\nn2Xd8e_vz0w_0\tcat\nn2Xrvmq2r2I_0\tcat\nn2jvWkboChM_11\tbus\nn2jvWkboChM_10\tbus\nn2jvWkboChM_14\tbus\nn3EKpxnV5U8_0\tcar\nn3bFZVLqNvI_0\tumbrella\nn3iNRmzhO1U_0\tmotorcycle\nn3pRNFU0ovc_0\tbear\nn3pRNFU0ovc_1\tbear\nn38NmPI7Sss_0\tboat\nn4cdQF8d8UI_0\tknife\nn4mWuEmbbEM_0\tbird\nn5J7UxAi_70_5\tcar\nn5J7UxAi_70_1\tcar\nn5J7UxAi_70_3\tcar\nn5J7UxAi_70_4\tcar\nn5i5aZXPgok_1\tbus\nn5ojrsEczYM_1\ttruck\nn5wZ3Zin9uQ_0\tbus\nn5wZ3Zin9uQ_1\tbus\nn6cpTMT-Ci0_1\tcar\nn6sMWDd_j1c_0\tcat\nn6wMhru1Mx0_2\tcar\nn7HaOXaXWJw_2\ttruck\nn7NWTiq_W-c_0\tboat\nP9sfOBt9FI8_1\tbird\nP95Pyq4kglE_0\tknife\nP95Pyq4kglE_1\tknife\nP-EecPZ9zV4_0\tmotorcycle\nP-JbMZ89Hac_0\tcar\nP-SIr3rYBzg_0\tumbrella\nP-lf6syyjAs_0\tcat\nP-tXkGlSa_8_0\tmotorcycle\nP_A56tkbbmk_8\tumbrella\nP_A56tkbbmk_1\tumbrella\nP_A56tkbbmk_7\tumbrella\nP_un1_qBDWo_0\tumbrella\nQATQMMA9vo4_2\tmotorcycle\nQATjEG1LPL0_0\tbear\nQA4LOoc1Crg_0\ttruck\nQA__knfzZZM_0\tbird\nQBZUbx6SUyU_2\tbear\nQBbAz7q7E9c_0\tbus\nQCDUv9KNiWQ_2\tdog\nQCKzW_uA3vY_0\tmotorcycle\nQCl4OGNJdos_1\tbus\nQCqvd4xHZLs_0\tcat\nQCzgTA2cABU_0\tboat\nQDQgSF9ciHk_4\tknife\nQD4ioxu8LAk_0\tcat\nQEMoyw7o_f8_0\tdog\nQEQfoQOU_F8_1\tbird\nQFB5gDukoqg_0\tbus\nQGDhzG35q8c_0\tdog\nQGDhzG35q8c_1\tdog\nQGDhzG35q8c_2\tdog\nQGDhzG35q8c_3\tdog\nQGFSTul5MDQ_0\tknife\nQGcd6O1NAkY_1\tbus\nQGcd6O1NAkY_2\tbus\nQGv8jcDgmBY_0\tmotorcycle\nQG25-t2CqY0_0\tbus\nQG5tLrHw5Hk_0\tcat\nQHVkPy7f680_0\tcar\nQHVkPy7f680_2\tcar\nQHhXgNBSjV0_0\tumbrella\nQH2Vo_5h-x8_0\tcar\nQIe7ky6mJO8_0\tbear\nQIqf221MKYo_0\tbird\nQItwshU9sAQ_0\tcar\nQI65w7sMLtA_0\tcat\nQJIgRLU_fU8_0\tmotorcycle\nQJfS9bR2S4I_0\tcat\nQJsyPZ31U-0_0\tcat\nQKG7PXh0UoU_1\tbus\nQKG7PXh0UoU_5\tbus\nQKG7PXh0UoU_6\tbus\nQK9WWQe1WQU_0\tbus\nQLTztdEJ8Ts_0\tmotorcycle\nn7dIhGKEzWM_2\tboat\nn7hFNcaW9rw_0\tknife\nn77hlwjlW_Y_0\tdog\nn8IsRKE9S6k_0\tmotorcycle\nn8kFOAqnMao_0\tmotorcycle\nn9RozRHi7iI_1\tknife\nn9RozRHi7iI_3\tknife\nn9xiuvCd5Lw_1\tbear\nn-fT4fcLulk_0\tbear\nn-fT4fcLulk_4\tbear\nn-gEIxTHjBk_3\tbear\nn_EpRXVan0M_0\tcat\nn_J23TUQdl0_1\tbear\nn_PRUX4zrLw_0\tcar\nn_bIC-prc2E_0\tmotorcycle\noARh23g1-LA_0\tcat\noAhYK7brhk0_0\tdog\noAhYK7brhk0_2\tdog\noBDdj5mkGyc_1\tknife\noBraEPvaSi0_0\tbird\noBuzx2dwA_Q_2\tknife\noBzhDbxL57k_0\tbird\noCUkN7ySpf8_0\tmotorcycle\noCZ3WCK5BZU_1\tmotorcycle\noCf-LgXx6Dw_0\tbird\noDHO9J7vFwI_0\tboat\noDUJYHwNuS8_0\tbus\noDsRL8dvgLA_1\tbus\noDsRL8dvgLA_2\tbus\noF81nMQlA-4_2\tumbrella\noGMlnXjD9R0_0\tbird\noGuIyQiDsy0_2\tboat\noGuIyQiDsy0_0\tboat\noH-XJADp0FM_1\tbear\noH-XJADp0FM_2\tbear\noH-XJADp0FM_4\tbear\noH-XJADp0FM_5\tbear\noI5l1By4H7U_0\tcar\noI_peuU5xk8_5\tmotorcycle\noI_peuU5xk8_0\tmotorcycle\noI_peuU5xk8_3\tmotorcycle\noJD17uQnW_o_0\tdog\noJK_TUb7HoQ_3\tknife\noJLVcOe7CEU_0\tmotorcycle\noJervxxOCvY_0\tdog\noKTgwWf3FKA_0\tdog\nQLxMt8F3oYA_0\tcat\nQL4uK4sZxIU_0\tcat\nQL-hkYCV0BQ_0\tmotorcycle\nQMEIKO8LcEU_0\tmotorcycle\nQMGNMAZLRFY_1\tknife\nQMGNMAZLRFY_0\tknife\nQMHCb6-qyQE_4\tbird\nQMHCb6-qyQE_0\tbird\nQMHCb6-qyQE_3\tbird\nQMJHMIdkS0w_0\tboat\nQMVKAdAOrNY_0\tdog\nQNUGl2q9luk_6\tdog\nQNVeq1dY-gY_0\tbus\nQNV_xE7TePM_0\tumbrella\nQNV_xE7TePM_1\tumbrella\nQNaFT-Ch0Oc_1\tbird\nQNgnQe-MASw_0\tbus\nQNgnQe-MASw_2\tbus\nQNibPLG3_Q0_0\tdog\nQNibPLG3_Q0_1\tdog\nQNibPLG3_Q0_2\tdog\nQNrg73bCl7M_0\tbus\nQN5joVuigKw_0\tdog\nQOCUHjNieAs_0\tcat\nQOGKQmMhYE0_2\tknife\nQOQU7N2vIdQ_0\tdog\nQOcPhbRnGh4_0\tbird\nQOm8zog21wI_0\tbear\nQOp31EvHfRU_0\tcat\nQOs2s2r3hpY_2\tbird\nQOs2s2r3hpY_3\tbird\nQO1T0Gc_cJk_0\tbird\nQPwnbNFbZyY_0\tmotorcycle\nQQAQLPTkDwg_2\tbird\nQQAQLPTkDwg_0\tbird\nQQh4Cpr7tpM_0\tbear\nQQ7EaN8ArmM_0\tmotorcycle\nQQ-MUe-ni48_2\tmotorcycle\nQRXtuZBCXtA_0\tumbrella\nQRZ_xQK1gx8_0\tbus\nQRZ_xQK1gx8_1\tbus\nQR3BO_SYrpQ_0\tbird\nQR5EuXvYbms_0\tcar\nQSK1oOt_5R4_0\tknife\nQSld_dZQvpY_0\tbear\nQTPAOir-oYM_1\tknife\nQThuW0gGa20_0\tdog\nQTlzTtcPjwk_3\tcar\nQT0-oUhQtbk_0\tdog\nQT17xRXmBGA_0\tumbrella\nQVCd5pTgbds_0\tboat\nQVRM0OueKFY_0\tdog\nQVXv0Z1FCdg_0\tmotorcycle\nQVXzwEenImE_0\tbus\nQWBwnViynQA_0\tmotorcycle\nQWFR4XdQv2Y_0\tumbrella\nQWPkooq95So_1\tknife\nQWPkooq95So_2\tknife\nQWSsyFwwdO8_0\tdog\nQWl839SnUOs_0\tdog\nQW1BlOtH1bo_0\tcat\nQXAw2xD7Sgc_0\tmotorcycle\nQXB7sLTVqfM_0\tbear\nQXIGeVZ6Uqk_0\tbear\nQXVQ8S7aUB4_0\tknife\nQXjfaOwHSFo_1\tmotorcycle\nQXwh-lAa3Pk_0\tknife\nQXwh-lAa3Pk_4\tknife\nQXwh-lAa3Pk_5\tknife\nQY2pVib4cZE_0\tmotorcycle\nQZOPux7sysI_1\tdog\nQZOPux7sysI_0\tdog\nQZhaeUKdGYk_0\tmotorcycle\nQZpfX1aipco_1\tcar\nQZui5buTy7k_0\tbus\nQZ3FD2qszF8_0\tmotorcycle\nQZ3MWq6qwJI_0\tbus\nQaGjoVfIWLQ_0\tmotorcycle\nQaM6ny5gEFQ_0\tcat\noKY-KsLfJe4_0\tbird\noKY-KsLfJe4_1\tbird\noKbCNTwLJoI_0\tdog\noKe3Rcvn_TU_2\tcat\noK9TjDSQdSs_0\tcat\noK9erjaiRq4_0\tbus\noLRDfgRIJ-A_1\tbus\noLSjl-qN4M8_0\tdog\noLrou9S3K-0_1\tmotorcycle\noM_FQGUvPIk_1\tmotorcycle\noNFmLa8pU3A_0\tknife\noNLkf1j-v6Q_0\tcat\noNZOg6XoSrY_1\tdog\noNbWPkOIdxg_5\tcar\noNbWPkOIdxg_4\tcar\noNyfqJGJhrY_0\tmotorcycle\noPhE3ECqxf0_0\tbear\noPlhh62giKI_0\tcar\noPrG5_acHVU_2\tbird\noP0yHq-dlRY_0\tmotorcycle\noQV827pXDXA_0\tmotorcycle\noQXdls5ffZc_2\tbear\noQXdls5ffZc_0\tbear\noQXdls5ffZc_1\tbear\noQ7ARK51eHE_1\tdog\noQ7ARK51eHE_0\tdog\noR-7d677bYw_0\tmotorcycle\noSPVZs6_Bd4_0\tmotorcycle\noSVes8uNT5E_0\tmotorcycle\noSao8txZd7A_0\tmotorcycle\noSb17xrITtY_0\tmotorcycle\noSqq5UHBveo_0\tbear\noSxoAvNHNB0_0\tmotorcycle\noS60CV9BFs8_4\tbear\noTYr-qD5JOE_0\tbird\noTj1e8RI67A_0\tboat\noTlwKNdm3rE_0\tdog\noTuVBf1jiPM_3\tbear\noTuVBf1jiPM_0\tbear\noUHa0FV0wwM_1\tdog\noUVJrf3WBrs_1\tbus\noUVJrf3WBrs_3\tbus\noUuQYVAvtgs_0\tbird\noVUE-0XhhsQ_0\tcar\noVUE-0XhhsQ_2\tcar\noVUE-0XhhsQ_3\tcar\noV1vhE0ypUE_0\tcat\noV6wthYHnKA_3\tknife\noWFO_yss01s_0\tcat\noWI2O83zUJk_1\tcar\noWI2O83zUJk_0\tcar\noWYSJgX0THI_1\tdog\noXMW3YjDAqQ_2\tboat\noXaieymppqU_0\tcat\noX4YRc-No7Q_0\tdog\noYY_svQfTs0_1\tboat\nQahJqWjC1v0_0\tmotorcycle\nQakBz4K6hqw_0\tumbrella\nQbHAXTRKk8w_0\tknife\nQbHAXTRKk8w_1\tknife\nQbNU92uEUSc_0\tcat\nQbk_YIfY5q4_7\tknife\nQcLZ-b-0PxY_0\tboat\nQcU2S6m_GJk_0\tdog\nQcuHNJWb-AY_0\tcar\nQc0kbcpophI_0\tcar\nQc5ZW-ni9ZQ_0\tboat\nQeRfpcI_TTQ_0\tbear\nQebJi8pjWkk_0\tcar\nQeeG_4eNyg0_0\tdog\nQe1-M3oVaFs_1\tknife\nQfOdxYnCAKc_0\tbear\nQfOdxYnCAKc_2\tbear\nQfaVCQOGlMM_0\tmotorcycle\nQfgJh_s9H0I_1\tbird\nQfgJh_s9H0I_2\tbird\nQfr5Fc1k7Ic_0\tknife\nQfwCa3YapRg_0\tcat\nQgRbpAz8TuI_0\tbear\nQgRbpAz8TuI_5\tbear\nQgRbpAz8TuI_2\tbear\nQgXjMUMIe4Q_0\tcat\nQhbwOw5dHPg_0\tcat\nQhc3Bb_6Uq4_1\tmotorcycle\nQhc3Bb_6Uq4_0\tmotorcycle\nQhnEXqWFBuw_0\tbird\nQhxv39Tkzbs_1\tdog\nQiHJ2uYByjM_0\tmotorcycle\nQjV-g1D6Be0_0\tmotorcycle\nQjV-g1D6Be0_3\tmotorcycle\nQjV-g1D6Be0_1\tmotorcycle\nQjV-g1D6Be0_2\tmotorcycle\nQjdGUh1FtN4_1\tbus\nQjqhhoIx6nQ_0\tboat\nQj4Mfd45GOE_3\tbus\nQj4Mfd45GOE_0\tbus\nQkPH2LBso5c_0\tumbrella\nQkPLEWaH1bo_0\tcat\nQkkuZ_G7t48_0\tboat\nQkwI5-_QspU_0\tcat\nQk6G7eAHlCs_0\tdog\nQlcaO8pkzd4_0\tbear\nQliTvc637Yk_2\tboat\nQlieDL9xPyU_1\tmotorcycle\nQlxQKy1yzyI_3\tmotorcycle\nQmP4xj9S0mQ_0\tmotorcycle\nQmR3bvWDA1s_0\tboat\nQngGa73C1G8_0\tcat\nQnnV6lKKIgI_1\tknife\nQnuD7a8BM30_0\tdog\nQn9CU5O4FHU_0\tbus\nQn9Z0LVIxbo_0\tcar\nQoTopiP9k2o_2\tbus\noZLdU13R4uU_0\tmotorcycle\noZoTyJNjCJI_0\tbus\noZ6Py8Tx-sA_0\tdog\noZ9qkN9Q1X4_1\tbird\noaXGm1MdDoA_0\tcat\noajaYAOs_oI_1\tknife\noa_73oVbH38_0\tbird\noa_73oVbH38_1\tbird\nobbzKGrHOP0_0\tbird\nob70dcN35yg_0\tbird\nocNVbpQhB5g_0\tcat\nocPgZeXuFqs_0\tcar\nocj3mV2T-ls_1\tbird\noc4RRoFoUo0_0\tboat\nodsCgfz0yM8_0\tmotorcycle\noeIBPeBAEv8_0\tdog\noeVUkEvC3To_0\tboat\nofDmsqy24k0_0\tcar\nofJOKOICGco_0\tmotorcycle\nofvHImJKiAg_1\tbear\nofy3Sid451s_1\tbear\nogIewcLFxLo_0\tdog\nogLOXI-Kvcg_0\tknife\nogzWVQ5TC80_0\tcat\noh7uEf_YE40_1\tdog\noiItk_51540_5\tmotorcycle\noiKC4SxYNJE_0\tbus\noiRnmB7WQjQ_0\tbird\noiu_53B5AAc_0\tmotorcycle\nojFBoKltgfQ_0\tbus\nojFBoKltgfQ_1\tbus\nojFBoKltgfQ_2\tbus\nojQfL_XgMM0_2\tboat\nojz2xLrH-Ts_7\tcar\nokKrvzNb9IU_0\tcar\nokiIzmV8YLw_0\tcat\nokiIzmV8YLw_1\tcat\nokzrd8v1G-w_3\tboat\nomGx_muz0SY_1\tboat\nomngVtTFM1I_0\tumbrella\noms2XkgghV8_0\tboat\nQoqeX-W0RFw_0\tboat\nQoqeX-W0RFw_2\tboat\nQo0mxFOMVGc_0\tdog\nQpAWeYA1pc8_0\tcar\nQpDm5g1dELc_0\tbus\nQpD7CVh2Z_c_3\tknife\nQqdW9IMDHgs_0\tboat\nQqdW9IMDHgs_2\tboat\nQqdW9IMDHgs_3\tboat\nQqhZnuITXs8_2\tbird\nQqhZnuITXs8_3\tbird\nQqkblYN1YOg_0\tbus\nQrEjYyinITM_0\tcar\nQsQFhUd04jI_0\tmotorcycle\nQsQFhUd04jI_1\tmotorcycle\nQsV9BTogrKc_0\tknife\nQt78_24lkeM_0\tboat\nQu8xNQ6Vd04_0\tcat\nQvgmjwKuAeM_0\tumbrella\nQvqNodq3NxA_3\tbear\nQvsjDkJ_oho_0\tcat\nQwALBOsUby0_1\tknife\nQwYxgsacjx0_0\tknife\nQw9UvjSO9_Q_0\tbird\nQxx3WjrGmtE_2\tbear\nQyc0xSSPT1E_0\tdog\nQzCvBtKWPjg_0\tperson\nQzPFEeJYDcE_0\tumbrella\nQz1R2sk37qg_3\tbear\nQz1R2sk37qg_5\tbear\nQz1R2sk37qg_6\tbear\nQz1R2sk37qg_7\tbear\nQ0HX6Jfnnb8_0\tbird\nQ0J1QbF_Vis_0\tbird\nQ0KhMTnvbxM_0\tbus\nQ01P6P7bm7E_0\tmotorcycle\nQ0-7SsSXMV0_0\tknife\nQ0-7SsSXMV0_2\tknife\nQ1RqyDERgxM_1\tbird\nQ1VXWNHzPqI_1\tcat\nQ1VXWNHzPqI_2\tcat\nQ197NAaQodY_0\tdog\nQ2Sop28spdM_0\tknife\nQ2bha73kLKM_0\tmotorcycle\nQ2vBCDtNAGI_0\tmotorcycle\nQ2zRXVl7bLI_0\tmotorcycle\nQ3ZxsgPKTGY_2\tbird\nQ3ZxsgPKTGY_3\tbird\nonoO4tamBlA_0\tknife\nonpRejbK_VE_0\tumbrella\nooJg7-nxmUw_0\tmotorcycle\nopOHceUyoXk_0\tcat\nopb_qoqO05s_0\tbird\noqUbqkDsSzI_1\tknife\noqvnxRx-0J4_1\tbird\noq4KPP5PYAo_1\tmotorcycle\norQkUDPfTg8_0\tboat\norTFjuPHzxU_3\tdog\norcE_uPKO_c_0\tbird\normZXNXni-U_0\tdog\nosYgSn6yOG0_0\tcat\nos3H6KzvGEg_1\tknife\notHFt4YAKeI_2\tdog\notvQKWvIXAE_0\tbus\nouFwG2YU59c_0\tmotorcycle\nouNsmVT6GRU_0\tcar\nouqFEe0ud_U_0\tmotorcycle\novHCJGK35r0_0\tknife\novHCJGK35r0_1\tknife\novQY7VA36gU_0\tbird\novRBelXjQ-A_0\tbird\novaFSf6jda4_1\tboat\novnkb_MuAlg_0\tbus\nov9yaGUtSEw_0\tbear\nov9yaGUtSEw_1\tbear\nowKiuZVov4U_2\tdog\nowaIraEDvqI_0\tumbrella\nowaIraEDvqI_1\tumbrella\nowb-43QL8Dc_0\tcat\noxKhcqfQV7k_0\tumbrella\noxZ42ECABUo_0\tmotorcycle\noxdCJK5GPS8_0\tdog\noxyS9oNIBaQ_2\tboat\noy52khlb79k_0\tcat\noy885M8rmDM_0\tbus\noy_Efqu_Zhk_0\tknife\no0CsAQaDp1k_0\tboat\no0VArHW9gpE_2\tdog\no0yyk1GchoE_2\tknife\no06poedEjtM_2\tknife\no1RqDbHx0IA_0\tumbrella\no12Lc5yZNco_1\tbear\no2E2ypLvzOo_1\tcar\nQ34_kBWh3QU_0\tmotorcycle\nQ4IH3ZOVKFQ_5\tbus\nQ4TELEHdcjA_0\tmotorcycle\nQ4YD_lW8JFE_1\tknife\nQ4afI-fku0A_0\tknife\nQ4d0z-q-UXQ_0\tbird\nQ4jZeoLzZXs_2\tbird\nQ5DrYh7pcTg_0\tcat\nQ5RabF9bK3o_0\tcar\nQ5cY3mt9NHI_1\tcar\nQ5cY3mt9NHI_3\tcar\nQ6Lg4c8W2XQ_0\tbus\nQ7SXsNoT9cc_1\tboat\nQ7TDTHQoPGc_0\tbird\nQ7TZ3TlDNzI_0\tbird\nQ7V8JjnLW_A_0\tperson\nQ7a4tWAU7-o_0\tdog\nQ8gHTSzR6h0_0\tcat\nQ807ZgwscUk_0\tcat\nQ9LvGsq1Mas_2\tbird\nQ9fbeFbARPY_0\tbird\nQ9qA-2ofuFc_0\tdog\nQ9qA-2ofuFc_1\tdog\nQ-JQokKqXZM_0\tmotorcycle\nQ-STF8c8RSE_0\tmotorcycle\nQ-S6ypfxn4w_1\tbus\nQ-VqbNMPAjE_0\tdog\nQ_a7bRv2dM0_1\tcat\nRAQAfTprH5s_0\tcat\nRAc8MyscjAA_4\tbear\nRAc8MyscjAA_0\tbear\nRAc8MyscjAA_3\tbear\nRAqMmf5FS_Y_0\tdog\nRBNNklw-NjE_0\tcar\nRBNNklw-NjE_1\tcar\nRBdpxD5mMy8_0\tcat\nRBssHo0ygdI_2\tcar\nRBssHo0ygdI_1\tcar\nRBvocl1t9qM_0\tcar\nRBvocl1t9qM_1\tcar\nRCzBVv_Vddo_0\tdog\nRC444E40nLY_0\tcat\nRC_ckl7o7sc_0\tdog\nRDq9wvYEiSI_0\tumbrella\nRD8OUO8u7oQ_0\tperson\nREBpFtJosSc_3\tbear\nREBpFtJosSc_4\tbear\nREBpFtJosSc_0\tbear\nREbm5i5vhcQ_0\tumbrella\nREbm5i5vhcQ_1\tumbrella\nREiwqNPkmew_4\tbear\nREiwqNPkmew_3\tbear\nREjT99mHV_g_0\tcat\nRFIE-agz3SA_0\tdog\nRFUZkHtGWvg_2\tbird\nRFUZkHtGWvg_1\tbird\nRFZG72_XG3U_0\tmotorcycle\nRFcz2p3w1oc_0\tbus\nRFhEq5WF9Io_0\tmotorcycle\nRFqSKdzXQFQ_0\tbus\no2z2zu4L1Ho_0\tcat\no3OdAgJnYlw_0\tumbrella\no3TpeQ7mhIQ_0\tbear\no4It_gqHKoM_0\tbus\no4It_gqHKoM_4\tbus\no4It_gqHKoM_5\tbus\no4bpCoFINtY_0\tbird\no4yKF7ZQge8_0\tcat\no4yxnKhoWrQ_0\tcat\no49yvv0vmJQ_0\tknife\no5TWf69h978_0\tmotorcycle\no5bJmNSZmGE_0\tcat\no6vw6_1pc_g_1\tperson\no6x94jhuMEw_0\tcat\no7UXYGmFww0_0\tknife\no8BqJTsAjnI_0\tboat\no8BqJTsAjnI_2\tboat\no8Gr9wZzcA0_0\tknife\no83uI_tdkrE_2\tcar\no9UpoUWgJWw_1\tmotorcycle\no9YqiVSTBVs_0\tmotorcycle\no9qB9kYt9Bc_0\tmotorcycle\no9vRwcqz30w_2\tbear\no98cAmKOAtk_2\ttruck\no_BpJHlv8bY_0\tcat\no_NYHfqWzBw_0\tcat\npAP3j2UmTAA_0\tcar\npAuz372kMrs_0\tboat\npAvBjM_cSCk_0\tumbrella\npA_f-DZ2FdI_1\tbus\npBj4KFDTwGg_0\tcat\npCPwOGObTcs_0\tumbrella\npCXmnj6vY7o_1\tknife\npCa3Tf27TcY_3\tbear\npCdwcy8npiE_2\tbear\npCfA0E-TIXo_0\tmotorcycle\npC9mu-CQ9fg_0\tcat\npDjjH1_G6Z0_1\tmotorcycle\npDjjH1_G6Z0_0\tperson\nRGT-FumEK7I_0\tcar\nRGXgv5gqM8k_0\tumbrella\nRGiE9-CME30_0\tmotorcycle\nRG6y27UUUMI_0\tknife\nRHHOcUqVF80_0\tknife\nRHSfZLRz95o_0\tboat\nRHrnX__15lI_0\tcar\nRIBigSX5_90_1\tbear\nRImslgwYbYk_2\tboat\nRIwUvnURoqs_0\tcat\nRI14PaJgb7E_0\tumbrella\nRJ95URcz63g_1\tmotorcycle\nRJ95URcz63g_0\tmotorcycle\nRKZ4YVnDywQ_0\tknife\nRKa1tJXFTAw_1\tcat\nRK8ZJaF2QHQ_5\tbear\nRK8ZJaF2QHQ_6\tbear\nRLP9M0bfpWo_0\tumbrella\nRMapunE2wEc_0\tboat\nRNPKsQSr2o8_0\tknife\nROfxuPZWET8_2\tbear\nROkJ79Y9T7s_0\tmotorcycle\nRPJ0SJeC5ck_1\tcar\nRPJ0SJeC5ck_2\tcar\nRPWms_VL6wY_0\tbus\nRPhdhEKBBAM_0\tmotorcycle\nRP81F6rIP4w_0\tmotorcycle\nRQ5liX_fOJw_0\tumbrella\nRREV1E0Mbhs_1\tknife\nRSXIvkOJQq0_1\tknife\nRSq71vJH9yc_0\tbus\nRStmsJCm7mo_1\tcar\nRSztnKS1IYI_0\tcar\nRTTysK1hBpg_0\tboat\nRTvVXaA35DI_0\tmotorcycle\nRT0tTVP14XE_1\tumbrella\nRT0tTVP14XE_4\tumbrella\nRT0tTVP14XE_6\tumbrella\npFCVfOX_UJ0_0\tumbrella\npGJMt9Jmk_Y_0\tcar\npGnZDXcCjSc_0\tbus\npHC850dBc-E_1\tcar\npHf0EP0QU9Y_0\tcat\npHueI1IUqzg_0\tcar\npIhqwiD8cks_0\tbus\npJXxn2DRWyI_0\tbus\npJYetmKuiE0_4\tbear\npJj28cMLcZc_0\tknife\npJl14EZ6-Mc_0\tumbrella\npKPRv5lL_DQ_1\tmotorcycle\npKz_g-J2O-A_1\tbus\npK1umZxS4nE_0\tknife\npLEV-uFmv6I_0\tcat\npLI_HgRsRow_4\tbus\npLQDtquQaSE_0\tbear\npLp7vmowqNs_0\tmotorcycle\npMHRlQ2NxeA_1\tboat\npMaT7qWMaV4_1\tbear\npMg2xwjkfVc_4\tumbrella\npNHKmiurxTg_0\tknife\npOCvwILBOCY_0\tboat\npOjuNMevoaM_0\tcar\npOq6RrgrXWY_0\tmotorcycle\npPyL4U8gYpM_0\tcat\npP22coNl6r4_0\tbus\npP5q-Bszfh0_0\tmotorcycle\npQMkOOTP0Lk_0\tcat\npSJypg6az1w_0\tbus\npSjKd_x9ycU_1\tboat\npSz961UYSrY_0\tmotorcycle\nRVvfyYc8jws_0\tumbrella\nRXAW31Vm7pU_0\tmotorcycle\nRXQ-E6_Y__c_1\tcar\nRZAlTTj0Z4o_0\tmotorcycle\nRZAlTTj0Z4o_1\tmotorcycle\nRZL2H_-y3vE_0\tumbrella\nRZrAehHE8aA_2\tknife\nRZrAehHE8aA_0\tknife\nRZ0yQkyeSd8_0\tboat\nRaZy_JiiJ3E_0\tmotorcycle\nRa48MJPLmUw_2\tmotorcycle\nRa48MJPLmUw_0\tmotorcycle\nRa48MJPLmUw_1\tmotorcycle\nRbQTcoldE8M_0\tbus\nRbRqkcC6l_A_0\tknife\nRb5tGSqtlFU_1\tmotorcycle\nRcSm0O0Ylc0_0\tcat\nRdNjlTlNbEA_0\tbus\nRdP6hW5p6ys_4\tcar\nRdUjywh70lM_1\tcat\nRdlWUo9fYmA_0\tmotorcycle\nRd4TvDZNwHs_0\tumbrella\nRfNyu5aooJs_0\tcar\nRfrtTbza00c_0\tboat\nRgBWTOo9hqo_0\tcat\nRgC0rdZCy2c_0\tmotorcycle\nRgFR8z8IzAQ_0\tcat\nRgUwlXzmX4Q_0\tboat\nRhYw3jSi0xY_0\tbus\nRhqz5maRjNs_0\tcat\nRh0zI8vpRWk_2\tknife\nRh7Y69j41EY_0\tbus\nRiCptCjnrqk_0\tcat\nRiOw5wO0xTg_3\tknife\nRid6twPtgIo_0\tcat\npTGbMPGsbCU_0\tcar\npTSbrP23T0s_0\tmotorcycle\npVCT-jEaSPE_1\tbear\npV8hPodV-zY_0\tmotorcycle\npXBltXzZZe0_0\tcar\npXcoix_wq4E_0\tcat\npZC4kceO-0g_0\tbus\npZJDlV5VS3Y_0\tmotorcycle\npZ7RohF8JgE_1\tknife\npaF1hQf-YFk_0\tboat\npalM4nIm6GU_0\tmotorcycle\npba0HVNnmbc_1\tmotorcycle\npcOsY0MSbh0_0\tbus\npcb_jPcg_U8_0\tbus\npcpHHo_gp-Q_0\tcat\npc2aHxzJDtQ_0\tcat\npdDVE4LsX54_4\tcar\npdDVE4LsX54_0\tcar\npdDVE4LsX54_1\tcar\npdDVE4LsX54_2\tcar\npdDVE4LsX54_3\tcar\npdDVE4LsX54_5\tcar\npd0IEWCwpUY_0\tbear\npd1BZjvbFNI_0\tknife\npgKdcFb2680_1\tmotorcycle\npg4m5Fi0Mhc_1\tcar\nRiq87Q_unPU_0\tcat\nRjDo0UDX9Ws_1\tknife\nRjItZnZQBKk_0\tcar\nRjqDxu3wf5o_0\tcat\nRkSzsg-k14I_0\tboat\nRktoQu-Wk0M_0\tcat\nRmFxIMl1tSU_0\tbear\nRmpv0oMhUCc_0\tbus\nRnEWcQNxWGY_0\tmotorcycle\nRnPY8wgKxj4_1\tcat\nRnQ-v8AJQbc_0\tmotorcycle\nRnjU70B_0cU_0\tbear\nRpTRF_oB1-I_2\tbear\nRpn1EcI_ESo_0\tknife\nRp8euBdhkR0_0\tmotorcycle\nRp8euBdhkR0_1\tmotorcycle\nRqs856i0jbs_0\tumbrella\nRrj0e5VSIgY_0\tcar\nRsw947loMaA_0\tcat\nRtSEfWF3PdI_1\tknife\nRtng6SCToEM_0\tcar\nRufUHX-TjyM_0\tbear\nRvHvTQC9Kr4_0\tbear\nRwC5kkt5VDU_1\tperson\nRwC5kkt5VDU_5\tmotorcycle\nRwVgY7zgnYM_0\tknife\nRwVgY7zgnYM_1\tknife\nRwYiNSlAYcE_0\tcar\nRwpY0u7t3vE_0\tumbrella\nRwp_dTfFI28_4\tboat\nRwz5T35lNgY_0\tcat\nRw5dzv79c-M_1\tmotorcycle\nRxLwy_iZqKg_1\tbear\nRxWhDOyHYNo_0\tcat\nphJS1iN6HFo_0\tumbrella\nphTyZcbKeQw_5\tbus\npihR4mhfwxM_0\tmotorcycle\npim0lzR8i1g_0\tcat\npix5Cxt_fUM_3\tknife\npjgi60dJalw_0\tcar\npjgi60dJalw_1\tcar\npjhNnA0142Y_0\tmotorcycle\npmszdloBDwA_0\tbear\npmszdloBDwA_2\tbear\npmszdloBDwA_5\tbear\npnMd28rPX7M_0\tmotorcycle\npncTBxEM4WM_0\tbus\npnjPhdpuKGc_0\tmotorcycle\npn0ZChK2ASs_0\tbear\nppAj6dnl62Y_0\tknife\nppAj6dnl62Y_1\tknife\nppJXGy7snUw_1\tknife\nppwjIgwParM_0\tboat\npq1swOh85gc_0\tboat\npq1swOh85gc_2\tboat\npq1swOh85gc_1\tboat\npriwWNrQnkI_1\tbear\nprwglbuvyZ8_1\tknife\nprw0IWDYBUM_0\tcat\npr3LOwTWNnk_1\tbus\npsOuOLCJNk8_0\tcat\npsTqTt0np_I_11\tbear\npsTqTt0np_I_3\tbear\npsTqTt0np_I_6\tbear\npsUASBNRwIE_0\tcar\npsUASBNRwIE_2\tcar\npsUASBNRwIE_4\tcar\nptCx-L_n2Yg_2\tbear\nptNC5ou_rOQ_1\tmotorcycle\npuZUIBS4Ceg_0\tcat\npuw9BfAKOHU_0\tbus\nRxiBbfFH3is_0\tknife\nRxiE2beIvjQ_0\tbear\nRyWLXS1Vrco_0\tknife\nRy4q0UokRjo_0\tmotorcycle\nRzWczJnyzmg_0\tcat\nRzWdM4_lg2c_4\tbear\nRzj5xv434WA_0\tbear\nRzrQOptkjFM_0\tmotorcycle\nRzrQOptkjFM_1\tmotorcycle\nR0hj1kAnMgs_0\tcar\nR0w6j1wmwo0_2\tknife\nR0w6j1wmwo0_3\tknife\nR1Fkwaa8CxU_0\tmotorcycle\nR2FlyNrjZBQ_2\tboat\nR2FlyNrjZBQ_1\tboat\nR2Fps165H9g_2\tknife\nR2XiIC1qbAM_0\tbear\nR2YmjDNC8oo_0\tbear\nR2duXYQhnFA_0\tcar\nR2sy6qbPc4c_0\tcar\nR23ZSmBA2Rg_0\tknife\nR3zhr1iboG0_0\tbus\nR4ktPNCb564_1\tbus\nR4vLajpLSMk_0\tcat\nR5CBlOfUL4w_0\tperson\nR5cIoEcqZ9E_1\tknife\nR5r3AIx_BoU_1\tknife\nR5r3AIx_BoU_2\tknife\nR6PuHPDiwPs_1\tcar\nR6f_t-MqO_s_0\tbus\nR6tsNuvoTus_0\tcar\nR6uZ5JpxQ88_0\tcat\nR6wk6JHQSeI_0\tknife\nR6wsV6cYN_w_1\tbus\nR7w-mdDyhG8_2\tknife\nR8TV702EIqs_0\tknife\nR8j0mjQR4lI_4\tboat\nR84Bj4PKOvE_0\tbear\nR84Bj4PKOvE_1\tbear\nR9LK4x3pO0Y_0\tcat\nR9L1I9EEE0g_0\tmotorcycle\nR9zDzUslz9g_0\tcar\nR9607CioN3U_0\tcar\nR99fGQRB6rM_1\tcar\nR-UGxl6KGoo_1\tbus\nR_LEKDTlVvs_5\tboat\nR_NxqXdz3RA_0\tcar\nR_UPR78XIvA_0\tknife\nSAFptHT-UpM_1\tboat\nSAFptHT-UpM_2\tboat\npvrO7c2imos_4\tcar\npwgqJO3yKHI_0\tcat\npwwdlKxLCqQ_1\tknife\npxBtDlmwesI_0\tcar\npxIlEGkEw5U_0\tcat\npxwl3iVkx08_0\tboat\npyAuY2v2U0I_0\tcat\npyTXP2GZRuM_0\tknife\npyTXP2GZRuM_1\tknife\npyTXP2GZRuM_2\tknife\npy0K3KEYfjA_2\tumbrella\npy0K3KEYfjA_4\tumbrella\npzZvI_g1S8M_0\tmotorcycle\np03u2BJIvyE_0\tbear\np03u2BJIvyE_1\tbear\np1p9QUFIi_8_0\tbus\np1_thBtA2-g_1\tbear\np2pRN03gXFk_0\tcat\np26eBX5AGCo_0\tboat\np3MF-uxvtWk_0\tbear\np32jOqTS5ec_0\tcat\np4MmW7gFlLI_0\tmotorcycle\np4MmW7gFlLI_1\tmotorcycle\np5NxEAfgmro_0\tmotorcycle\np5bLvlU8ua0_0\tmotorcycle\np5lUPYsz-HE_0\tcat\np5vt7l9pW-0_1\tmotorcycle\np5vt7l9pW-0_0\tperson\np5_O08ZNK_c_0\tmotorcycle\np6GkhJZsCi8_0\tcat\np6Rtu645O08_1\tmotorcycle\np6Rtu645O08_0\tmotorcycle\np6dBx3tBRr4_5\tbear\np6dCoZRaQOA_0\tboat\np6dCoZRaQOA_1\tboat\np6dCoZRaQOA_2\tboat\np7OlEbiu5to_0\tcat\np7WwUD62qfY_0\tmotorcycle\np7gjVQyX07A_0\tcat\np7pnYAaDqPI_0\tumbrella\np7sHze5SC0g_4\tbear\np8MEDllYMKg_0\tcat\np8RUtiaGu5U_0\tcat\np8ZUCNMnKpE_0\tcar\np89fuT8e_zk_0\tcat\np8-8JqAgtv0_0\tmotorcycle\np9XjLjpQX-8_0\tcat\np9by0qLqHOQ_0\tknife\nSAkHT1Ozg1c_0\tmotorcycle\nSAkHT1Ozg1c_2\tmotorcycle\nSA1Tb1XbngU_0\tcat\nSB1UBp1PVf4_2\tbus\nSDKsL-L7GbI_0\tknife\nSDbe9JVnITk_0\tknife\nSDk3Y3jzalg_0\tknife\nSEp92WMharw_0\tbus\nSExW2mVb1Mc_2\tcar\nSExW2mVb1Mc_0\tcar\nSExW2mVb1Mc_1\tcar\nSE5Rg8Qpb8c_1\tknife\nSFB2FGuZb6w_0\tmotorcycle\nSFMc-UCkcT8_0\tcat\nSF8c7EeFPPk_0\tmotorcycle\nSHcJfBJBQe4_0\tbear\nSHxyKRdKRc8_0\tcat\nSHxyKRdKRc8_1\tcat\nSH1noq6GrKw_0\tknife\nSISqo1FBefA_0\tbus\nSIbLAYX2J_A_0\tbear\nSJAZnOnRtag_1\tbear\nSJsxWsiEuTg_0\tmotorcycle\nSKNl4frouUY_1\tknife\nSLEOr8bmm2w_0\tmotorcycle\nSLEOr8bmm2w_1\tmotorcycle\nSLzqvins4p8_0\tbear\nSMYpv_Ea3w8_0\tperson\nSM6BtnyDz5w_0\tcat\nSNZ0xGGmZvU_0\tknife\nSNhnfqJHoI4_0\tmotorcycle\nSNl4Gq_2aVQ_0\tbear\nSNrosAtwG2k_4\tbus\nSOYkQc-toMU_0\tbear\nSOYkQc-toMU_2\tbear\np-J0yyoF0lU_0\tmotorcycle\np_C9Zwt3N5c_0\tumbrella\nqAJSLnflSrQ_0\tcat\nqA5rC8MxCoA_2\tbear\nqCzILENpEWk_0\tboat\nqCz4ft26CAw_2\tknife\nqDobzjbo_aM_0\tcat\nqEcNn2_TQC8_0\tcat\nqEei5YCRiHA_0\tcar\nqEj3r8dtvKg_0\tboat\nqE5fKHWTLMw_1\tbear\nqFR-yuWiHVk_3\tknife\nqFR-yuWiHVk_4\tknife\nqFwugOO0pC0_0\tknife\nqGjYX-iNrPE_0\tboat\nqGohF2oMPS0_0\tmotorcycle\nqGxfRwBmBEc_0\tmotorcycle\nqGxfRwBmBEc_1\tmotorcycle\nqHKwI-35nNU_0\tmotorcycle\nqIIu-MIIYIE_0\tboat\nqINDYDOlPLA_0\tmotorcycle\nqIPydTwqwmI_3\tcar\nqIPydTwqwmI_0\tcar\nqIPydTwqwmI_1\tcar\nqIPydTwqwmI_2\tcar\nqIkNPwKd6ag_0\tknife\nqIkNPwKd6ag_1\tknife\nqInP3tWVtWE_0\tcat\nqJMxoAbx9YU_0\tboat\nqKxQVpaLChg_0\tbear\nqLfa8e4ffQY_0\tbus\nqL6LVXg4Vt4_0\tcat\nqMEMl1FFVIM_2\tumbrella\nSPRByN4TiFg_1\tboat\nSPsOjXxZymk_1\tboat\nSQ_ChhUwWng_0\tbus\nSRUB2kzDBTk_0\tperson\nSSFOqr1ARgI_1\tumbrella\nSSaN8vntuYs_0\tbear\nSTTRwCtQ8_8_0\tboat\nST6aA292Pos_0\tmotorcycle\nSUMc-5fiNzQ_0\tmotorcycle\nSUnPNgAE_ho_2\tboat\nSUyRs3xvc9c_0\tcat\nSVBc-W37yW0_0\tumbrella\nSVSMGxy8Z6I_0\tcat\nSVXaBPnNWO0_0\tknife\nSVXaBPnNWO0_2\tknife\nSVt7vQ8LYZU_0\tbear\nSV70cwNA6o8_0\tknife\nSWJyq_mITbE_0\tboat\nSXmy9BLHr84_0\tbus\nSXvXN3waFWs_6\tbear\nSYCg5NuWc60_0\tmotorcycle\nSaHw7yyoeJg_0\tcat\nSaSgclGWGwE_1\tmotorcycle\nSaSgclGWGwE_3\tmotorcycle\nSa1iRLR4d_c_0\tbus\nSa4L2rdyD10_0\tknife\nSbWCXCuXBqY_1\tbear\nSe3XbBA4N4o_3\tknife\nSe3wtx4DzwE_5\tbus\nSe3wtx4DzwE_1\tbus\nSe3wtx4DzwE_2\tbus\nqMlYXZy1Tow_0\tbus\nqNfS9Y5zs-Y_0\tcar\nqOaABf_zb9U_1\tboat\nqO7qHolBYj4_0\tbus\nqO8D0E7MjOI_0\tcat\nqPGkJRPae6A_0\tbus\nqPMDgkgSTnA_2\tmotorcycle\nqPaox7otsVI_0\tknife\nqPwAWEtJBqA_2\tmotorcycle\nqPwAWEtJBqA_0\tmotorcycle\nqPwAWEtJBqA_1\tmotorcycle\nqPyR7CpZ6l0_0\tknife\nqP88t7GfZc8_0\tknife\nqQaIW7IjCZo_3\tmotorcycle\nqQaIW7IjCZo_0\tmotorcycle\nqQaIW7IjCZo_1\tmotorcycle\nqQdtuBd-SgI_0\tknife\nqQlsMjenbfE_2\tknife\nqQ5tf8s7KrE_0\tbus\nqRO6U_tg6SE_0\tcat\nqR4kw8rf-FU_0\tmotorcycle\nqSQGG-K89mg_1\tknife\nqSgOYqBt_8k_0\tbus\nqSnoKy6T22k_0\tmotorcycle\nqTKtODdEZIg_0\tcat\nqTut_O_LppA_0\tbear\nqT00uOC9JpQ_0\tcar\nqUuTEKdKNNg_0\tcar\nqU7DT4ipQHw_0\tcat\nqVSnhT0Luh8_0\tcat\nqVyAlx4rMTo_2\tbear\nqV7U9CRjZGI_0\tcat\nqWN8i7sJyVg_4\tumbrella\nqWcXQWy7yw8_1\tbus\nqW-zRq8VTV0_0\tboat\nqX8RcjE0tjs_0\tmotorcycle\nqX-YEHlu0Kg_2\tknife\nqZWxhCk8AX0_0\tknife\nqZf1fw737A8_1\tcar\nqZyxILyLOv0_0\tknife\nSfZLu5uG7mc_0\tcar\nSgDdyLB3fFo_1\tmotorcycle\nSgHH9KN_nkY_2\tmotorcycle\nSgOvlqqKbEI_0\tbear\nSgSsk-eeClA_0\tcat\nShHLzcBozxo_1\tboat\nShPl28Zw1kU_8\tcar\nShPl28Zw1kU_3\tcar\nShPl28Zw1kU_7\tcar\nShPl28Zw1kU_9\tcar\nShaLoFJZv-M_1\tknife\nShhC84AwZ04_0\tbus\nSh6uHJRUnP4_0\tcat\nSiSP3Kko4VM_0\tbus\nSi3psXQA46c_0\tbus\nSjLNVLIdpbc_0\tcat\nSj0pcvct_3k_0\tmotorcycle\nSkLwUmczAMo_2\tknife\nSkLwUmczAMo_1\tknife\nSkVIH0IZI1I_0\tmotorcycle\nSlBZM22tlSU_0\tknife\nSlIzgQZ63h4_1\tknife\nSlWmnHWeqIE_0\tboat\nSlYqzpZkWho_0\tbear\nSmCvuBfyU5o_0\tmotorcycle\nSmCvuBfyU5o_1\tmotorcycle\nSn8nb_cv5K4_0\tmotorcycle\nSn8nb_cv5K4_1\tmotorcycle\nSo5dCmgNRtU_0\tbear\nSo-dFj7N07Y_0\tcar\nSpGfQe7sWIQ_0\tmotorcycle\nSpuAy2Z1ejE_0\tboat\nSpx8fHkY0Ac_0\tbear\nSqUzKvBRVmQ_0\tcat\nSqkoepvLN3c_0\tmotorcycle\nSqkoepvLN3c_1\tmotorcycle\nSq-LvVdVwhc_4\tbear\nSrBwCHcEe4g_0\tcat\nSrPgW-L7Gps_0\tbear\nSrTxMAryank_0\tknife\nSsQb12lMU_w_1\tcar\nSsQb12lMU_w_2\tcar\nqZ0egYy10zs_0\tcat\nqaKYHGIZ8tU_0\tcat\nqantWNz3Z-k_0\tbus\nqc1U41zjMfI_0\tknife\nqeSfa-Xin3s_0\tbear\nqfZHHSjai5Q_3\tmotorcycle\nqfZHHSjai5Q_5\tmotorcycle\nqfZHHSjai5Q_0\tmotorcycle\nqfZHHSjai5Q_4\tmotorcycle\nqfZHHSjai5Q_6\tmotorcycle\nqf4dZ323eu4_0\tcat\nqf5FQP-vjpY_3\tbus\nqgYBD0GBerg_0\tknife\nqglTXvFe5vw_0\tmotorcycle\nqgr1pdkQkKM_1\tknife\nqhTOaoL2B54_0\tbus\nqhgQ0_y6Jr8_0\tmotorcycle\nqhyihSkbubs_1\tbus\nqiW4cUVZCJA_0\tmotorcycle\nqjfkIHC3sNA_0\tbus\nqj1y76m_WFg_1\tcar\nqklXdTo1CKQ_0\ttruck\nqlGmmBY7ITI_0\tcat\nqlGmmBY7ITI_1\tcat\nqlfCKWLj_xU_0\tboat\nqlvwUVksAC4_0\tcat\nqnaQOGGmyhI_1\tmotorcycle\nqo2tG-wOpLI_3\tcar\nqpBRU2SONe0_4\tbear\nqpNPlLO7Wdo_6\tbus\nSsWwZCQR8pA_1\tbus\nSs6lM7iutJ0_2\tboat\nSs-ENa079_Y_0\tcar\nStg0xs4yv5A_3\tbus\nStg0xs4yv5A_1\tbus\nStg0xs4yv5A_2\tbus\nStoHoHg6XHo_0\tmotorcycle\nSuoVrAXkHsM_1\tboat\nSv-Xsjm8Seo_0\tboat\nSwfda4hcQzo_18\tumbrella\nSwfda4hcQzo_0\tumbrella\nSwfda4hcQzo_3\tumbrella\nSwrxLGIVuNg_1\tbus\nSw01FqLPH0o_0\tmotorcycle\nSxxBAhDGWzU_1\tcar\nSybtH9db7tI_1\tboat\nSybtH9db7tI_6\tboat\nSybtH9db7tI_0\tboat\nSybtH9db7tI_4\tboat\nSybtH9db7tI_5\tboat\nSyk5Jc9_tQA_1\tboat\nSywBQoMh8Q8_1\tcar\nSzD0AW8MKxY_1\tcar\nSz3ay4xexe0_0\tmotorcycle\nSz3oWSS6V3s_0\tbus\nS0AoM2Xz64Y_0\tmotorcycle\nS09dKnW798o_0\tcat\nS12WKCebYHg_0\tboat\nS2YoTKzOHW8_0\tumbrella\nS3O_xjPQToU_0\tknife\nS4lNN0zJE4A_0\tcat\nS49Hdfpc-SI_1\tboat\nS5VjgUVKjV0_0\tcat\nS5Z4g_SORHc_3\tknife\nS5Z4g_SORHc_4\tknife\nS6crKzUWKYI_0\tumbrella\nS6ksiMdECu8_0\tumbrella\nqp11ZgRmeck_1\tmotorcycle\nqqd7FMwn5Ks_0\tcat\nqqmk0BKAubw_0\tboat\nqqo83uqRldw_0\tmotorcycle\nqqumKQ_igJQ_0\tmotorcycle\nqqumKQ_igJQ_1\tmotorcycle\nqrHPEAVq_yE_1\tboat\nqrJljeVBE-k_0\tboat\nqrJljeVBE-k_2\tboat\nqrTOqXRwHqM_1\tbear\nqrTm-7zA5FM_1\tmotorcycle\nqrU7MAMf42A_0\tmotorcycle\nqrfZoDvW7wI_2\tbus\nqsFkwL9ikBE_6\tumbrella\nqsFkwL9ikBE_0\tumbrella\nqsbpGZepU_4_0\tmotorcycle\nqs4ACjrDQvo_0\tcat\nqtEJPGYfmb0_0\tmotorcycle\nqtQNJD43Z30_0\tknife\nqthVtX1KeJY_0\tcat\nqtmXJD337Sg_0\tcat\nquMSh4JZfSE_0\tbear\nquSzbk4CkBE_0\tcar\nquZjkqmOTys_0\tcat\nqvAPzGCqVG0_0\tbus\nqvAPzGCqVG0_1\tbus\nqvCVL7reF8g_2\tbear\nqwBsDRYIhwg_0\tcat\nqwI3fCK486I_0\tcat\nqwZ_bpVY018_1\tbear\nqwcgkEVHQS4_1\tmotorcycle\nqxwgvTIA0Oc_0\tumbrella\nqykj452YYlU_0\tboat\nqzjG5RMNfB0_0\tcat\nq0tjDTtHr00_3\tknife\nq1LbqldHuM0_0\tknife\nq1QElQCedrc_0\tumbrella\nq15Lr3-V3qI_2\tmotorcycle\nq2K3ctdaVGU_0\tknife\nq2MasRNKQxI_0\tbus\nq2NfowB59fs_0\tmotorcycle\nq3J7hUfBGGQ_0\tcat\nq4EXWy685Wo_0\tperson\nq4EXWy685Wo_3\tmotorcycle\nq4EXWy685Wo_6\tmotorcycle\nq4EXWy685Wo_7\tmotorcycle\nS7SEfKdokC0_1\tbus\nS7-k1XdAR7Q_0\tcat\nS8BbQRnxfqY_0\tcat\nS8WFgIrdEyI_0\tcar\nS9LooqaA-VA_0\tcat\nS9wDiwQMla8_0\tperson\nS9wDiwQMla8_1\tmotorcycle\nS9wDiwQMla8_2\tmotorcycle\nS9xCWTCFhNc_0\tmotorcycle\nS-T-e07Bgys_0\tmotorcycle\nS_K_nwYUS2o_0\tcat\nS_09gd9e0zE_0\tboat\nS_5w6lmw0DI_0\tknife\nTAzjOrAfzFM_0\tcat\nTA1NbMN7gNo_0\tmotorcycle\nTBvuwl0phUE_0\tmotorcycle\nTBy---hD-FA_0\tbear\nTB9qJG8A-H4_0\tcar\nTCS6svwO2AE_0\tboat\nTCVj-PtxnsQ_0\tbear\nTDSmQkKnGFU_1\tcar\nTENive2WCAw_0\tcat\nTFUV5Dy2MvE_0\tmotorcycle\nTFu5bNUW02Q_0\tbus\nTIZr3Y-PLQM_1\tknife\nTIpoS2Jymv8_2\tknife\nTJJgVPay9LE_0\tbus\nq4zFevdC3-w_1\tknife\nq5D67534lFM_0\tmotorcycle\nq5ESvcujAps_0\tperson\nq5wOimcVyaI_0\tcat\nq6YyhMSTSjg_2\tbus\nq6YyhMSTSjg_3\tbus\nq65QzEDi_jo_1\tmotorcycle\nq8nG4OvfGhY_0\tcat\nq8oKL5zvWZw_0\tcat\nq9QycGD31Co_0\tcat\nq9ZSVLXRUx8_1\tcat\nq9p4QZdwQ0I_0\tboat\nq-Sw3Dx1Xb0_0\tknife\nq-lbxXK_UY8_0\tbear\nq-nt9k61jqQ_2\tboat\nq_NnyABqOFg_3\tboat\nrAcvNOp95pA_0\tcar\nrApBsMx8ZjU_1\tumbrella\nrAtKVQ_h94Q_1\tcar\nrBLqbf-KdaY_0\tcar\nrBjCxCwLz84_0\tcar\nrBl7T312SPQ_0\tcat\nrBnSmzTRsqE_0\tcar\nrCAA1xoobto_0\tcar\nrCOxllaoO64_0\tbear\nrCrQRhaJeAA_0\tbus\nrDEW_AdTSH4_1\tcat\nrDEdeXsgOdU_0\tumbrella\nrEL7A7rKARs_3\tknife\nrFF0purpqAU_2\tknife\nrGgvqpRsaew_0\tbus\nrGlpoWppAfU_0\tcar\nrG4cDTukyNw_0\tcar\nrG4ld81Rxt8_0\tcar\nrHHUlsaTde8_2\tbus\nTKCXvzTT2ws_0\tumbrella\nTMyv9XNlPGQ_0\tbus\nTQWq_YDrKc0_2\tknife\nTQm0C-2ersM_8\tboat\nTQm0C-2ersM_10\tboat\nTQm0C-2ersM_1\tboat\nTQm0C-2ersM_5\tboat\nTQm0C-2ersM_6\tboat\nTREARdQ16GQ_0\tcar\nTREARdQ16GQ_1\tcar\nTSQwlIeADdw_0\tbear\nTSQwlIeADdw_1\tbear\nTSQwlIeADdw_2\tbear\nTSpUcayboiM_0\tcar\nTS7UuEszy9E_0\tcar\nTTQQky-HcCs_0\tknife\nTTdbV_lHq_s_0\tcat\nTUrnPZr3eXs_0\tbus\nTVjvTR7CrNE_0\tknife\nTVvo40ERO9Y_0\tcat\nTW6cU7OYa60_1\tcat\nTXrnNVUe53o_0\tboat\nTXsQGHJjWhI_2\tknife\nTX2BAlXe5IA_0\tboat\nTX2BAlXe5IA_2\tboat\nrIUepAhKVnM_0\tcat\nrIc3ZEnqjQA_0\tumbrella\nrIezbmq7N9U_3\tbear\nrI79TJwwnW4_3\tknife\nrJGGo2bI150_0\tbear\nrJGGo2bI150_1\tbear\nrJGGo2bI150_2\tbear\nrKiQjOPzf0s_0\tcat\nrKs2bGgU29k_0\tcat\nrLm1866Q28U_3\tumbrella\nrLm1866Q28U_0\tumbrella\nrLm1866Q28U_1\tumbrella\nrNlm7i1BcaQ_0\tcat\nrNw1jiERG4I_1\tcar\nrOtd7pdh-zY_0\tcat\nrO0qo7r4TTc_0\tcat\nrPCOxxRwiTM_0\tbus\nrP6vb-cxVcI_0\tbus\nrQBwAWkz3Ao_2\tboat\nrQBwAWkz3Ao_0\tboat\nrQBwAWkz3Ao_1\tboat\nrRL4f466oNQ_0\tumbrella\nrR9vwlyXtYs_0\tbus\nrSNfdcbzEhE_1\tboat\nrSNfdcbzEhE_2\tboat\nrSNfdcbzEhE_3\tboat\nrSNfdcbzEhE_6\tboat\nrSNzuWEgSeg_0\tcat\nrSWYvSf29vQ_1\tcat\nrTM-3OYHQZA_0\tbear\nrTM-3OYHQZA_9\tbear\nrTreVVS3XVg_0\tumbrella\nrUcsGq10bCk_0\tumbrella\nrWLG9njOx1k_0\tcar\nTYuoW3gezZ4_1\tcar\nTZFETDh9bQo_1\tbear\nTZFETDh9bQo_3\tbear\nTain2YW14ok_0\tumbrella\nTb943q0WnTY_0\tcar\nTcfdUbzZcIc_0\tknife\nTcnKT-jCrxQ_1\tbus\nTcnKT-jCrxQ_0\tbus\nTcnKT-jCrxQ_4\tbus\nTdmeXkKeGmE_0\tknife\nTdxsosl1CIk_0\tumbrella\nTeF2gxyzjF8_4\tknife\nTeM8oPJR8nM_2\tbus\nTeM8oPJR8nM_4\tbus\nTeM8oPJR8nM_7\tbus\nTeSMF-Tw8b8_0\tbus\nTf8ZmK4GZYU_0\tbus\nTf9piH7b4Js_1\tbus\nTihSkV4th6I_0\tumbrella\nTimXSaV1u4M_2\tbus\nTjs55_3zB_o_0\tknife\nTjvHNNlcym8_0\tknife\nTjvHNNlcym8_4\tknife\nTj-U_ZtaHe0_0\tboat\nTkmEiKe_Uto_0\tboat\nTkuUMAPSGiU_1\tcar\nTnN1RBRfLnE_0\tumbrella\nTnN1RBRfLnE_1\tumbrella\nTnXDBpRvE_U_0\tbear\nrWw_OZqgPk8_3\tbus\nrYlL6avPERw_0\tcar\nrZDchhWp8lc_1\tbus\nrZ7XejB4nyk_0\tboat\nrawi3Ka9Oew_1\tcar\nrawi3Ka9Oew_0\tcar\nrbONk59p13Q_0\tbear\nrbWOxoprQ2M_0\tbear\nrbXmAC9QV2A_0\tcar\nrbjK97ECn_A_0\tboat\nrcrE_BJU-n4_0\tknife\nrcrE_BJU-n4_2\tknife\nrfksy8z9X40_0\tcar\nrgWglS6-TTw_1\tknife\nrhIa7DWBXUM_1\tcar\nrjVLfZDg-1g_0\tboat\nrk9SO8fR7-0_1\tbus\nrk9SO8fR7-0_4\tbus\nrlBfiB0epGw_1\tknife\nrlLJTjn9vkk_0\tumbrella\nToclpwxGMe8_0\tbus\nTpKpXHgy7yw_2\tknife\nTpKpXHgy7yw_5\tknife\nTqPnQuSGm2Y_0\tbus\nTqZZfXdm7D0_0\tcar\nTqnj4qeawHg_0\tboat\nTqsQOw3CqXo_0\tbus\nTrXkieSIkII_0\tboat\nTsfcgwFff0k_0\tbear\nTsrQwMo3niY_1\tbear\nTs8Wofx6QYY_0\tcar\nTusmYht5g7o_0\tbus\nTvbiwdoAnv8_0\tboat\nTvvBAOBoHFU_1\tumbrella\nTwEihF94LGQ_0\tumbrella\nTwSkZlbuaEU_0\tbus\nTxUm-m-jFQM_0\tknife\nTyV9inNHHAE_0\tbus\nTy_FDwb_nLY_2\tcar\nT0Mp-gJmMlU_2\tbear\nT0Mp-gJmMlU_3\tbear\nT0tT7l2X1_g_0\tbus\nT1Zywya-PcI_2\tcar\nT1Zywya-PcI_3\tcar\nT1Zywya-PcI_1\tcar\nroNPRQwafcU_2\tbus\nroNPRQwafcU_5\tbus\nroW8_xIYVAk_0\tknife\nroXQ3vv08_A_0\tbear\nrqA8P346qIQ_1\tboat\nrqDqbsbIcc8_0\tbus\nrq5jwk8hqYA_0\tbus\nrq5jwk8hqYA_1\tbus\nrriv5ZJYcJI_1\tknife\nrsMmhzkVg_0_0\tboat\nrta_HO-3L_A_3\tbus\nrwH7x0MR_38_0\tboat\nrwS5mEyV7Go_1\tknife\nrwS5mEyV7Go_2\tknife\nrwcVAIM0TvE_0\tbus\nrwcVAIM0TvE_1\tbus\nrwu0xKkvzvA_0\tknife\nrxRxMZ6DIjw_2\tumbrella\nrxSJHCdoi0c_0\tbear\nrxm15TcjWqQ_0\tknife\nryBGF3WFvsY_0\tbus\nryBGF3WFvsY_1\tbus\nry0Pnb8VkxU_0\tbus\nry0Pnb8VkxU_1\tbus\nry0Pnb8VkxU_3\tbus\nrzDa9eW_dpg_3\tcar\nrzDa9eW_dpg_5\tcar\nrzOhM6n6Amc_0\tboat\nT21Uim3jGuo_1\tbear\nT3wZwUQ_7q4_0\tumbrella\nT5ZgfFcAd94_0\tbus\nT6QiKZd4bH0_0\tknife\nT7h2fJLtABk_0\tknife\nT8C-sLfGg3A_0\tboat\nT-5AESRu0pM_0\tcar\nUAptbKXXoJI_1\tbear\nUBk45sVKl_o_0\tumbrella\nUCnTA86V3o0_0\tknife\nUDmjHWk8iRk_1\tbear\nUE1kUiVy7LA_1\tcar\nUFPrfB6_TJY_0\tbear\nUFQmHju3MrM_0\tbear\nr1JK0UIvyoM_0\tbus\nr1YNttJqXjI_1\tbear\nr2GN4IDacgM_0\tboat\nr2GN4IDacgM_1\tboat\nr2GN4IDacgM_2\tboat\nr2GN4IDacgM_3\tboat\nr2sw-3mWNEQ_1\tboat\nr4U8cMe6_Uo_0\tumbrella\nr4cneWcmGJc_0\tbear\nr4cneWcmGJc_1\tbear\nr43KKtRQNxw_0\tknife\nr5c09tdbF3U_0\tknife\nr6HzXMpwuOg_0\tboat\nr7V8M9vMX8I_0\tboat\nr8oV5neCRZc_1\tbear\nr-Wqqn-oS_0_0\tbear\nr_squ5DWzV0_0\tbus\nsAa0aLc0rvM_0\tbus\nsAo-z30biYY_0\tcar\nsAqB_9DrpiU_0\tboat\nsCGJB9oAeHo_0\tcar\nsCX1zbdQvbE_0\tboat\nUHvwjd6eSDY_0\tcar\nUH6GKx07mu0_2\tbear\nUIlo6WvfABM_0\tboat\nUJ7xasCu9yw_0\tknife\nUKdl8BrKy4g_0\tknife\nULTTzu_-eQI_2\tbus\nULgPda0ny1Q_0\tboat\nULxGPhbhuwI_0\tumbrella\nUMQ6fAZTiLo_0\tumbrella\nUNfKxOwP1V8_0\tbear\nUNyq1SNbNPk_1\tbear\nUP2WXifDFc0_0\tbus\nUQdjo1v_Hv0_0\tcar\nUQrP0Wa7bfA_0\tbus\nUQ90qkTMSes_0\tumbrella\nURiNDCZBU7E_1\tcar\nURmMAndDPfQ_0\tboat\nUSYudaDNkeU_2\tknife\nUSYudaDNkeU_3\tknife\nUTx1Fw7nQcQ_0\tbus\nUVGq9IRroYo_0\tboat\nsDSmkWE8qw4_0\tknife\nsEnhkLttWlw_0\tbus\nsFgXir9g_Os_0\tcar\nsF2EQhRNlQc_0\tumbrella\nsGpQTqemybM_0\tbear\nsGzXdAI4YSQ_0\tbear\nsG_AruJlxiw_0\tumbrella\nsJA7-N7htNo_0\tbear\nsJL716urwpY_1\tcar\nsJL716urwpY_0\tcar\nsJTLB7bgb0k_1\tknife\nsJsEpKneYMs_1\tbus\nsMm8f8vBx7c_0\tumbrella\nsOQWtx6GiR4_1\tumbrella\nsOQWtx6GiR4_0\tumbrella\nsOvnHbg6d_8_0\tumbrella\nsPDY-ey2kNA_0\tumbrella\nsPDY-ey2kNA_1\tumbrella\nsQEBpH647Mw_0\tumbrella\nsQJr7LooP_s_1\tboat\nsQftML4HXiU_1\tknife\nsQvi3OxMoKU_0\tbear\nsQvi3OxMoKU_1\tbear\nsQvi3OxMoKU_2\tbear\nUWJIq_1uAnA_0\tboat\nUXDmIQTthAE_0\tknife\nUYRhIhbuh34_0\tboat\nUanzlUcmoJY_1\tbus\nUbj2t-7KcJk_2\tcar\nUb5O76sDojg_0\tcar\nUcBLQsI3Dzs_0\tcar\nUcKyiCjpXoA_3\tbear\nUdFEBlYt9tM_0\tumbrella\nUdaAkO2f_pU_0\tbus\nUeQLdrnbe8E_1\tbear\nUeQLdrnbe8E_3\tbear\nUgHNBgeg9cY_3\tknife\nUgh33I0Qxi4_0\tumbrella\nUgkXJsrPys0_0\tumbrella\nUhgJaZWsdCQ_0\tknife\nUhupGJ7k3Q0_0\tknife\nUhvhrEMHY0E_0\tboat\nUhwOdFtF8os_0\tbus\nUiZ3tYMpOic_1\tumbrella\nUjTdR_85bTo_0\tumbrella\nsSPe9VqmSuU_2\tbear\nsS-GtompdcQ_1\tboat\nsUhpJsSmrzA_4\tboat\nsU-mmzCCGmg_0\tbus\nsVbrxAG6jtA_0\tcar\nsVkPUjUh0UQ_0\tknife\nsV9ymK-zZ8A_4\tbus\nsV9ymK-zZ8A_6\tbus\nsWfQh6SsvG0_1\tboat\nsW7n8r3vvl8_1\tknife\nsXwrjhXbAwA_0\tumbrella\nsYE45Xnof5I_3\tbear\nsY1i3-cQv70_2\tboat\nsY3G5eOlysI_0\tbus\nsY_jGNxKdYw_0\tknife\nsY_jGNxKdYw_2\tknife\nsaBAx3Xw2PE_0\tbus\nsbR26E99_A8_0\tbus\nsbmsWqsHD9M_0\tbus\nsb1unJ1sby8_0\tknife\nsb1unJ1sby8_4\tknife\nscFiRRTU5jg_1\tbear\nscJFbu3WboQ_1\tcar\nsc-BJ-WirDo_0\tbus\nsdHNJK0mfWQ_3\tbus\nsdd5ViCUDwY_1\tbus\nsfVwMcMm77E_1\tumbrella\nsfVwMcMm77E_2\tumbrella\nUjxwNRWfxBo_2\tbear\nUkBlnrNOssQ_1\tbus\nUlLwBfXpz4A_1\tbus\nUmAOVqCB6UM_0\tbear\nUmBxMf5cHV4_0\tknife\nUmewKWpE2qE_0\tcar\nUrRiUQPaxic_0\tumbrella\nUrxeEW4FBq4_1\tumbrella\nUtvo55GUNyg_1\tbear\nUutgI7H2EPc_0\tbus\nUutgI7H2EPc_2\tbus\nUutgI7H2EPc_4\tbus\nUutgI7H2EPc_5\tbus\nUutgI7H2EPc_6\tbus\nUvsMOU9XGYk_0\tcar\nUvsup5BdpLM_0\tcar\nUwlk3sF-l38_0\tknife\nUxD-6ScNF1U_0\tbus\nUx3oyD0wLig_0\tboat\nUx_-m16Ntqs_0\tbear\nsgDzqYTo0GI_0\tcar\nsgDzqYTo0GI_2\tcar\nsghMPNg9wB0_0\tbus\nshgKQ2FcjfM_1\tknife\nsiNixoeB9Ew_0\tcar\nsi8Uk6frpqI_3\tknife\nsjBWnj8kKVs_1\tbear\nsjESht-PXb0_2\tbus\nsje-nlCBYAk_0\tbear\nsk5gj6VnXds_0\tboat\nslGCyLNlI3w_0\tumbrella\nslgsRri0IUU_0\tbus\nsli0aHrS-l4_0\tknife\nsoPkYPTLD-Q_1\tboat\nsoe3qmwZTEE_3\tknife\nsoe3qmwZTEE_4\tknife\nsplTIYA-rtY_3\tknife\nsrUGXKwzLf0_0\tbear\nU0G9nt_JMp4_3\tknife\nU1jXflUgiSo_2\tknife\nU1p1HQ3ZsUo_2\tcar\nU1tGGfRyOzY_1\tcar\nU3BQYG5-Koc_0\tbus\nU3pwXnANDgk_0\tknife\nU3pwXnANDgk_6\tknife\nU4nccTmpY0A_1\tbus\nU7N--AsibJc_1\tknife\nU7fW1r0kRYw_1\tcar\nU7-_NQlr8l0_1\tbus\nU8EGQyjwfEQ_0\tcar\nU85wCYoCIZ4_0\tknife\nU-B7Xkx_rF0_1\tknife\nsuQJeplwaco_1\tbus\nsvZPjH3EGcI_3\tcar\nswj8kdhr03w_0\tbus\nswkyfcVE17I_1\tumbrella\nsyJ4LBRPwjs_1\tknife\nsyY8MaSUvJI_0\tcar\nsyfJEZrVzqA_0\tbus\nsy9XCn-ebrE_0\tcar\nszClXDUETvQ_0\tumbrella\nszW2Gonojss_0\tknife\nszXVjlTlt3w_0\tbear\nsziUCgMKvrM_0\tbus\nsznHM_K2obc_1\tbus\nsz6Zoh7MfnA_0\tbus\ns0ABooHpZjo_0\tknife\ns09Dr7gZ5G8_0\tboat\ns1t73kIOSQU_2\tbus\ns2BVmX4vImY_0\tknife\ns2gkrcGsOxU_1\tbear\ns2nioy3J4RY_3\tboat\ns2nioy3J4RY_1\tboat\ns2nioy3J4RY_2\tboat\ns2qgkHBVQxo_0\tbear\ns2qgkHBVQxo_1\tbear\ns3lwoM0rD2U_2\tboat\ns3-sF0tSY8w_0\tumbrella\ns6BicsP9eBk_0\tknife\nVA3OWlsrD28_0\tumbrella\nVBPWsv5FfbU_0\tbus\nVBPWsv5FfbU_1\tbus\nVBr3P_OGawE_0\tknife\nVB6eUS7LSfM_1\tboat\nVCCevTa32Ng_0\tcar\nVDz1RZU6x5c_0\tbear\nVESEWamKy10_0\tcar\nVFv1UuT7klg_2\tknife\nVGAYYimByOM_0\tcar\nVGwSM3IXcJ0_0\tboat\nVG_OHq6R1AE_0\tbear\nVHiMLGyNYgQ_0\tcar\nVIASAf569_k_0\tcar\nVIxj6BV3kgM_0\tumbrella\nVJZpavOgVEo_0\tumbrella\nVLaCK3u84vI_0\tumbrella\nVMLuyFD54AQ_2\tboat\nVMXrHUjXjyQ_0\tboat\nVMXrHUjXjyQ_1\tboat\nVMi5mAdZyZI_1\tknife\nVMs0jemUzI0_0\tknife\nVNuYRPiFrus_0\tbear\nVN-BCqBlrhs_0\tcar\ns8vzssNUlOA_0\tknife\ntAOx6NFDD9I_0\tknife\ntAxbjy_edDI_0\tumbrella\ntBOSPNFbuv8_0\tumbrella\ntBQRfKeIYZc_2\tbear\ntBgtSnOMOwM_0\tbear\ntBh6HxQHmrs_0\tknife\ntCZLl-MZJp8_0\tcar\ntDYPtg0At_Y_0\tbear\ntE42n_1PW6w_0\tbus\ntFfqpeBbvr0_0\tumbrella\ntFjlTZqwoWI_0\tbear\ntGycfa97LVU_1\tbear\ntIX4eIYzfD8_0\tknife\ntIX4eIYzfD8_1\tknife\ntIs05U9pd04_3\tknife\ntIs05U9pd04_1\tknife\ntIs05U9pd04_4\tknife\ntIs05U9pd04_5\tknife\ntJXbZyaUOD4_0\tcar\ntJhfshKvRmE_1\tbus\ntJhfshKvRmE_4\tbus\ntJ01Y3R3Qmg_0\tumbrella\nVOcplsa6Gq4_2\tknife\nVOcplsa6Gq4_5\tknife\nVPI_Nm3GHHc_5\tbear\nVPI_Nm3GHHc_2\tbear\nVP0u_E6FOsY_1\tcar\nVR_V9WaFYn0_0\tumbrella\nVSj9dXwt7zI_0\tbus\nVSxoLvaJN2Q_1\tbus\nVUcCABjVSO0_0\tcar\nVU2lUX4NdkM_0\tknife\nVU2lUX4NdkM_1\tknife\nVVg7sbsw9vY_0\tbus\nVWpm6_Uhis0_2\tboat\nVX9TPrjMcOg_0\tknife\nVX9TPrjMcOg_4\tknife\nVZ5r0BHRf84_0\tboat\nVaW7Go5pX-c_0\tumbrella\nVa50KanUO94_0\tumbrella\nVbA0B1JcpNY_2\tknife\nVbeIRLOQ5pI_0\tbear\ntKCjJuulqx4_2\tbear\ntKCjJuulqx4_3\tbear\ntKCjJuulqx4_4\tbear\ntKN3Qo0oUoc_3\tknife\ntNvGTzks1yw_0\tcar\ntNvGTzks1yw_1\tcar\ntO0igm1AwqU_0\tbus\ntPae9uGqDog_2\tbear\ntPzWEC_9_H4_3\tknife\ntQpyrprwwc0_0\tumbrella\ntR2sDFGND7g_0\tbear\ntSEneDiCrqg_0\tbear\ntTFTWquOTi8_0\tbus\ntTjbx39rZMk_0\tbus\ntT2pUZ0W33A_0\tbear\ntUHf6Ynx_vI_0\tknife\ntVJE-0uNX1s_0\tboat\ntVTkAh80t5I_0\tumbrella\ntVuL82POt-I_1\tcar\ntXMBGjGduCM_2\tknife\ntXsMGHCKw7U_1\tboat\ntXwfqREzEtI_0\tboat\ntYGp2PFiAUE_0\tknife\ntYas1z25M_4_2\tknife\ntYcNeSisfpI_0\tbear\ntYdhIaTDwiE_1\tknife\nVdLohVQNC5Q_0\tknife\nVdLohVQNC5Q_1\tknife\nVdLohVQNC5Q_5\tknife\nVdLohVQNC5Q_6\tknife\nVeUIJlyGjkY_0\tcar\nVekx17G8mkk_0\tbear\nVfBqMWT6aRM_0\tknife\nVfKgW5eSGsk_0\tumbrella\nVhmj1OGGQuc_1\tbear\nVhn-8bCU70s_0\tbus\nVh21adwevRU_0\tbear\nViXmx_D5BAY_0\tknife\nViXmx_D5BAY_3\tknife\nVizxeIzWEFw_0\tcar\nVjF-G6FQooU_0\tboat\nVjS5w2pc0tA_1\tboat\nVjvpOU349zY_0\tbear\nVkDn2-1H23o_0\tumbrella\nVkDn2-1H23o_3\tumbrella\nVk43AD4O_hc_0\tboat\nVnrw6Fjmj8I_0\tbus\nVnwwgTO4w_k_0\tumbrella\nVn4aKSlYXX4_3\tbus\nVppPgMZqfEQ_0\tboat\nVp0kah4_m6w_0\tboat\nVp0kah4_m6w_2\tboat\nVqHSuVVKfjs_0\tbus\nVqo2RiAzLnU_1\tcar\nVrnm_kf7OCs_0\tboat\nVsDgOcOWqXw_0\tbear\ntYofvh4_3K4_0\tbear\ntadYkEU5suY_1\tknife\ntbIUesoKv9Q_1\tbus\ntb_hKPkH2co_0\tknife\ntcFQ5kE3PKM_0\tcar\ntcFQ5kE3PKM_1\tcar\ntcSHrlGTFJc_0\tknife\ntc912gGdckQ_0\tboat\ntdjDSO8NFx4_0\tknife\ntdpAPPsHlDQ_1\tbear\nteJyM5tywno_1\tbus\nteQkZqDa1lw_0\tknife\nteb83RDwop4_0\tbear\ntgSfan8G7wo_0\tcar\ntgVXG7H_acI_0\tumbrella\nti3J-8aWPcw_0\tbear\ntjldcvPuif8_0\tbear\ntj4mnSXX2DM_0\tcar\ntm2bmSBR4uE_0\tknife\ntoiMoCxSyKY_2\tboat\ntos1ELGZH0M_2\tumbrella\nVs3Mi3Ch_EQ_0\tbear\nVtHzTaDh4WM_0\tbear\nVtHzTaDh4WM_1\tbear\nVt8DAmG3nHs_0\tcar\nVu4xkIEs6U8_0\tboat\nVvXxRawsOCs_1\tknife\nVvXxRawsOCs_4\tknife\nVwYEgB5HOD0_1\tbus\nVxdUG7Sinyw_0\tcar\nVyDNhpvCuc8_0\tbus\nVyfIuIcelhc_0\tumbrella\nVz3wJsLA_gI_0\tbus\nV0NnR8HLSbo_0\tumbrella\nV0o8kxcOZRc_2\tbear\nV1a9QcSegdw_2\tumbrella\nV1dqjmHNyIY_0\tboat\nV23vmoZYoVw_0\tbear\nV4o7I9cLp-g_0\tbus\nV6nKvvfzWpg_0\tboat\nV64pvhB8sKU_0\tcar\ntrAReSHvUdQ_0\tcar\ntrAReSHvUdQ_5\tcar\ntrAReSHvUdQ_6\tcar\ntrAReSHvUdQ_1\tcar\ntrAReSHvUdQ_2\tcar\ntrAReSHvUdQ_3\tcar\ntrAReSHvUdQ_4\tcar\ntsNhgDUKwHw_3\tknife\nttdTnGOIBmA_0\tumbrella\nttdTnGOIBmA_3\tumbrella\ntvVLkJ0HTQQ_3\tcar\ntvew-P2UPL4_0\tumbrella\ntwiEfNprSoE_0\tknife\ntwiEfNprSoE_1\tknife\ntw7jf9U2-kM_2\tbus\ntxpIIsM1T8U_0\tbear\ntx2dZF1Ckxk_0\tknife\ntx5tKODiGuo_0\tknife\ntx5tKODiGuo_1\tknife\ntyO37NBAS1Y_0\tbus\nt1UtwxOBGvE_1\tknife\nt1vrE0cEB80_0\tbus\nt10FRgv9o5M_0\tbear\nt10FRgv9o5M_4\tbear\nt14PUW9SINk_0\tknife\nt31z17N5skw_0\tknife\nt31z17N5skw_1\tknife\nt31z17N5skw_3\tknife\nt31z17N5skw_4\tknife\nt33TQH8-7tg_2\tboat\nV9UCv2qhsxc_0\tcar\nV9ulnUIQGJU_0\tbus\nV9ulnUIQGJU_6\tbus\nV-KNIu_PsaQ_0\tbus\nV-NvBHig1i0_0\tbear\nV-tMggTxBu4_0\tknife\nV_Bb7A55f-c_0\tcar\nV_dJ2KuqfOA_0\tboat\nV_dJ2KuqfOA_1\tboat\nV_t8pbEf8bA_1\tboat\nWB7fT2tI7Pg_5\tcar\nWCSEuwFm7KU_1\tcar\nWCfc8YGLu1o_1\tbear\nWCfc8YGLu1o_3\tbear\nWDgLmrXq4vg_0\tumbrella\nWHLIJlNh3TQ_1\tknife\nWHQXE5tuTXk_0\tcar\nWHUaoqVF57g_0\tcar\nWIdj4ovuDWQ_0\tbear\nWIdj4ovuDWQ_1\tbear\nt4oaGCoTBZc_0\tcar\nt42tnyTtYWE_0\tboat\nt7OKXKxjHls_6\tbear\nt8X-x_7pv94_0\tcar\nt_-dK1Xhg90_0\tknife\nuAjqm8B-aio_0\tknife\nuB_Hurzj4s0_0\tcar\nuGEDuDcqqvU_0\tboat\nWJ2A2XRRTw4_1\tbus\nWJ_vIH7FJsQ_0\tcar\nWKDhXr_5mbI_0\tknife\nWKKFM7oRSd0_0\tbear\nWKS6aq75gk0_3\tknife\nWKV4j8-G1Nc_0\tknife\nWKfQfA_YQTY_3\tknife\nWKubVTrND7s_1\tknife\nWKzUT3zOIU8_0\tknife\nWLxzHH6iJlk_4\tboat\nWMSu-XOQe5w_4\tbus\nWMSu-XOQe5w_0\tbus\nWMgP1z0x0Io_0\tbus\nWOVTnN-HcZ0_1\tbus\nWOxTA78OlZU_0\tknife\nWPqEyeVtih8_0\tbus\nWPuItCUuEkY_1\tknife\nWQAr1enuPKw_1\tbear\nWQX6ptTAKHg_0\tknife\nWSc0kYKLGTg_0\tbus\nWStgEyiPBBE_0\tcar\nWSvHn5XJq0Q_0\tknife\nWS0DayzAv80_1\tboat\nWS0DayzAv80_2\tboat\nWTXytzbF5lU_0\tumbrella\nWT69VoU2Hps_0\tcar\nWVx9vOoutGo_0\tbus\nWWKuCF2FuYk_0\tcar\nWWm9iMkKk-g_0\tknife\nWW7ib8XAVz0_0\tboat\nuHqj6xQGOYg_3\tbus\nuHqj6xQGOYg_4\tbus\nuHqj6xQGOYg_6\tbus\nuHqj6xQGOYg_7\tbus\nuIKZlXUoHOc_0\tbear\nuJMFDY-BKiQ_1\tbear\nuJMFDY-BKiQ_4\tbear\nuKdOuLYJjrg_0\tknife\nuK-zcpEE8nE_5\tboat\nuLdXkXRsHok_0\tumbrella\nuMK6b2TG8rc_0\tbear\nuMV37U-DNUQ_0\tcar\nuMciOwjd0GU_0\tcar\nuMciOwjd0GU_1\tcar\nuMd1DmjxAZQ_1\tcar\nuMj3V0s7mUo_0\tbus\nuM_jxm7bFp8_0\tboat\nuNDkbmlEYeQ_0\tbear\nuO7OtV3J1AY_0\tbear\nuPE1o5dCYDc_0\tbus\nuQhMkVrdghM_0\tbear\nuRLAyu-3l0A_0\tknife\nuStpLanz0fU_0\tcar\nuTAqzBGMDOc_0\tbus\nWYwRW_t4jb8_0\tcar\nWZK5IqBtpGE_3\tknife\nWZgxjIvc2nk_0\tboat\nWaEyVBSggwQ_1\tbear\nWaaW6bElWCM_0\tcar\nWb20JaIrr8M_0\tknife\nWb20JaIrr8M_2\tknife\nWcNlbTBZM64_0\tumbrella\nWdIATjW74Pc_0\tboat\nWdYFXDv4TEo_1\tcar\nWdgTHJurLx0_0\tumbrella\nWd0xTEH2d9k_0\tboat\nWejCws8AoxE_1\tknife\nWejCws8AoxE_2\tknife\nWejCws8AoxE_3\tknife\nWe4_tuFKyGE_0\tknife\nWf6hHpxRW_Y_4\tknife\nWgx6hhiRLoA_0\tpotted plant\nWjiMUA6_CkY_0\tboat\nWlm2mLKCMlM_1\tbus\nWlsN6HURFTc_0\tbear\nWmFqo8n67Ok_0\tbus\nuWi9-84kTFQ_1\tbear\nuXHJHV0bwUk_2\tbear\nuXe9WOlTFcs_0\tbus\nuXe9WOlTFcs_1\tbus\nuZgcOYmazsw_0\tbus\nuaJ1g0xJ4QY_0\tbus\nual32V7-KJo_0\tboat\nua_5GosOa-c_1\tbear\nubFoUAh6d4g_1\tknife\nubOiomYqbNs_2\tknife\nudSE-6UkgwM_5\tumbrella\nue1CIlwhPEs_0\tumbrella\nufFT2BWh3BQ_0\tbear\nugWs4v6DbUw_0\tbear\nugsJ5cOmFTg_1\tboat\nuhXcL98XNCY_5\tumbrella\nuhXcL98XNCY_1\tumbrella\nWoxbRmDfLeI_0\tumbrella\nWoxbRmDfLeI_1\tumbrella\nWpCyx-QCMec_0\tbus\nWplsTumdQf8_0\tboat\nWqFFUvf-YJk_0\tknife\nWqxU9aIFmNY_0\tumbrella\nWr5BjrtC4Ts_1\tknife\nWsEiHZFGeFs_3\tumbrella\nWsaP8FyRUCc_0\tcar\nWses8y3NyJ4_1\tbus\nWs9V_B7mqJI_0\tknife\nWuTHL7GtG-8_3\tknife\nWvGzCV5ICZM_1\tboat\nWvuZRZqhxk4_3\tknife\nWvuZRZqhxk4_5\tknife\nWvv8cOXaAZI_0\tbus\nWv-Weuc4E1A_0\tumbrella\nWwLtxfDC7ok_0\tboat\nWxWXB9hf7n0_0\tcar\nW0kDpFkg6xU_0\tboat\nW1z3EAv-eJw_0\tbus\nujnUCtI7gzI_0\tbus\nuj4TRH5r_ww_6\tbus\nuklsFjegS-w_0\tbus\nulzto7-Hl64_3\tbus\nul__w-oqHrw_0\tbus\numjU9X1kuYg_2\tcar\numjU9X1kuYg_4\tcar\numjU9X1kuYg_1\tcar\nuoGBYfJo5Xg_0\tcar\nuo1J9BUgQmk_0\tboat\nurRNkZvzuHI_2\tknife\nurmSoxyi9Vo_0\tboat\nurmSoxyi9Vo_2\tboat\nutmsGeHFdvI_0\tboat\nuuBKDGoTmGY_1\tcar\nuu-UptVYr_A_3\tcar\nuvV7cblR4qc_5\tumbrella\nuvZOzZjBKXY_0\tbus\nuwL5LYln0EM_3\tbus\nuwL5LYln0EM_4\tbus\nuwL5LYln0EM_5\tbus\nuwL5LYln0EM_6\tbus\nuwx7UKo4jcg_1\tboat\nuwx7UKo4jcg_0\tboat\nuwzHiGF1YMM_0\tboat\nW2z3SxorVnI_0\tknife\nW2z3SxorVnI_1\tknife\nW38vB3cw2fA_2\tboat\nW4Is7CI2Sfo_1\tumbrella\nW47ZA0onzb4_0\tknife\nW5dSTfMCj-U_0\tboat\nW5zIkmZyS18_0\tbus\nW51Spbo8SQQ_0\tknife\nW6YCv9ZVVOc_3\tboat\nW6uCEMEi7_E_0\tbus\nW7JkNuRYNr0_2\tknife\nW7JkNuRYNr0_3\tknife\nW7JkNuRYNr0_4\tknife\nW7JkNuRYNr0_5\tknife\nW7yqHDA_RMU_0\tknife\nW8EKt6cG0E8_3\tbus\nW8EKt6cG0E8_7\tbus\nW8EKt6cG0E8_1\tbus\nW8xqW-QD_B4_0\tknife\nW87M2lQeWNk_0\tbear\nW87M2lQeWNk_1\tbear\nW-ZpC_K7Df8_0\tcar\nW-x__78AyrI_0\tboat\nW_Wc7lFraRg_0\tbus\nW_v5wpcibRM_0\tboat\nW_2LqiQ_ico_1\tknife\nXAa2L1v8iJM_1\tumbrella\nXBAOFn8KXFo_0\tbear\nXBn6P-IKuis_0\tperson\nXBssw3bqXL0_2\tbear\nXCZv_AjZo08_0\tknife\nXCu0Ea4zHuQ_2\tbear\nXDtfr902CVM_0\tbus\nXD1OYmmeKic_0\tumbrella\nXD1OYmmeKic_2\tumbrella\nuxFX6p61oPY_0\tknife\nuxlDad59mFc_0\tboat\nuyWVUOcgZHg_0\tbear\nu1OhTXTmuWM_5\tbear\nu1TvbkpmEbs_0\tcar\nu1vMDzyFxzI_0\tbus\nu2BVfAFQ1zU_3\tknife\nu2BVfAFQ1zU_2\tknife\nu2EDuPJijZ8_4\tboat\nu4K3jRl7Gag_0\tcar\nu4S9mlFpt0s_0\tbear\nu4uwaq4uf54_3\tcar\nu4uwaq4uf54_0\tcar\nu6XGBXhCJ18_1\tknife\nu7STs8FCy_g_0\tbus\nu-1HZJXwFHo_0\tumbrella\nXF8B5xjRCF0_0\tcar\nXF8B5xjRCF0_2\tcar\nXF_oHXRGd1o_0\tboat\nXGRZLrZC9zY_0\tboat\nXIlybSpq0mg_0\tbus\nXJmn9i57K3g_0\tbus\nXLvSaN_M6lE_0\tcar\nXL0B2niNRCw_2\tbus\nXMlEA_yRojM_0\tknife\nXMyio1ZckJc_0\tbus\nXQBtgwUzEL0_0\tcar\nXQX5y5BQykU_0\tbus\nXQ6u2yTbu_0_0\tcar\nXQ7UbbPjnDo_1\tknife\nXRenv5AHI_8_0\tboat\nXRpgkCuziGY_0\tumbrella\nXSI7M8s2Tc0_0\tbus\nXS4ow1Wcaro_0\tcar\nXTm-jN1RVHA_0\tumbrella\nu_YKLGqrMKQ_1\tknife\nu_gN-dXNRHI_0\tknife\nvARZcTna8NU_0\tboat\nvBEaeqdPsho_4\tcar\nvBEaeqdPsho_3\tcar\nvDT-DShjnjU_0\tumbrella\nvEMHY2cT6kA_0\tbear\nvEi5gkcTDGY_0\tbus\nvE9zapt1WdI_3\tcar\nvFSRrtT5AL8_0\tbus\nvGbt_XsSaVk_0\tknife\nvGi-DjriLLs_0\tumbrella\nvHAlsHYE3mo_3\tcar\nvHAlsHYE3mo_0\tcar\nvHXM9IJdVcM_0\tumbrella\nvIQAK-4lMOc_0\tumbrella\nvIgmRBC2ayQ_0\tumbrella\nvJl9QkAbpc8_0\tcar\nvKxCl7DzJjI_0\tknife\nvK8dgvZ5B6A_0\tumbrella\nvLA-mHM7MAQ_0\tknife\nvL-6uNdrCV4_2\tknife\nvN54ADSnJmE_0\tbus\nvOKH_DIjvAU_3\tknife\nXUkTknKOdrs_4\tknife\nXVa23hmwe-E_0\tumbrella\nXVrNN52RTEs_2\tcar\nXVrNN52RTEs_3\tcar\nXV694aCXY8Q_0\tboat\nXW6BQWpl3bI_1\tboat\nXZl5Luzj6v0_6\tbear\nXaSsc3noeLs_0\tboat\nXbHWOyNM3Bw_0\tbear\nXbHeGzyGejE_0\tbear\nXbWrCVe09YA_0\tboat\nXcLl0qSs9bU_1\tknife\nXcifNE0anDo_0\tknife\nXcifNE0anDo_1\tknife\nXc1jzGFyrnE_0\tcar\nXc5LW1FIVE0_2\tknife\nXc5LW1FIVE0_3\tknife\nXdu-98BUgmA_0\tknife\nXd7VbtoAdb0_0\tcar\nXeOwt5KeVfA_2\tcar\nXeR1DgyOa9o_0\tknife\nXekvrqFtazY_0\tbus\nXeplLROyXyA_5\tumbrella\nXgBTEQN_ZxA_2\tbus\nXgBTEQN_ZxA_4\tbus\nXgBTEQN_ZxA_7\tbus\nXhSmPb3cA_A_1\tknife\nXhSmPb3cA_A_3\tknife\nXiEeY5R56EQ_0\tknife\nvOy0N09kGEE_0\tumbrella\nvO56uCHmSjg_0\tumbrella\nvPVpX6GPY5Q_0\tbus\nvPVpX6GPY5Q_1\tbus\nvQ_8ry_dx68_3\tboat\nvRhGvmXk2js_1\tboat\nvRzpk-thwA0_0\tbus\nvTvjeXsP7TM_1\tcar\nvTwSeYRU_WQ_0\tcar\nvTwSeYRU_WQ_2\tcar\nvUKk9LqKVpA_0\tboat\nvUKk9LqKVpA_1\tboat\nvUg2Sr7Jl-Y_0\tumbrella\nvVKZzTBvsF4_1\tbear\nvVNCUA8hss0_0\tboat\nvVUbZCrCqEU_1\tboat\nvV72xGim-is_5\tknife\nvWMiT73g5-k_0\tboat\nvWO0tyaGuaM_0\tumbrella\nvWUAzQ_EEJ4_0\tknife\nvW_aJr-PSvA_0\tbus\nvW_o48lG_0I_0\tbus\nvXX9FmlwVlk_1\tbus\nvXX9FmlwVlk_6\tbus\nvXX9FmlwVlk_0\tbus\nvXX9FmlwVlk_2\tbus\nvXX9FmlwVlk_4\tbus\nvXaLFnwvrX4_0\tbear\nvXvR0RiGzj4_1\tcar\nvYROjLzMqvY_1\tbus\nvYROjLzMqvY_2\tbus\nvYROjLzMqvY_3\tbus\nvYwdLoOa0Rc_0\tumbrella\nvYwdLoOa0Rc_1\tumbrella\nvY1sAfu99Es_2\tbear\nvZznldYVwGA_0\tboat\nvbfWHUjHR2k_0\tbus\nvcdEtOGEEcU_1\tbear\nvcdEtOGEEcU_0\tbear\nvcdEtOGEEcU_2\tbear\nvch6R3EO9Ec_0\tknife\nXjHJiHO6onE_5\tbear\nXmVv2wQSvjs_1\tcar\nXoJahpK73EM_0\tboat\nXoqPCnlpymI_2\tknife\nXpDVw5mS058_0\tboat\nXp591jCTBOA_0\tbear\nXqfkP1lAkyE_4\tbus\nXqfkP1lAkyE_5\tbus\nXqfkP1lAkyE_2\tbus\nXq-5DHWJ1pk_1\tbear\nXrh68BP53Gw_0\tcar\nXriRhjtrlLE_0\tcar\nXu-ZZl_L38Q_2\tboat\nXv9eEVcD2P0_0\tbus\nXwvKtur_QEk_0\tknife\nXxHnDkI1NdQ_0\tbus\nXxHnDkI1NdQ_1\tbus\nvfzGrdk_Mxo_0\tbear\nvhrRnvGSMMY_2\tboat\nvhrRnvGSMMY_5\tboat\nvhrRnvGSMMY_6\tboat\nvhrRnvGSMMY_8\tboat\nvh4BHzMwVT8_2\tboat\nvh4BHzMwVT8_3\tboat\nvi4ktD0dAD4_0\tcar\nvkfdn7gkQh8_1\tumbrella\nvknUR0K4MqM_0\tbus\nvlNLyHxz1TY_0\tboat\nvlaeAly1nZc_0\tboat\nvmr5UiZekic_1\tbear\nvo0WWdM7UCs_0\tbus\nvo6Uzhx2fcw_0\tboat\nvpItyB8epmQ_4\tboat\nvp8NiaEmk2M_0\tbus\nvqeybXtIwxE_3\tumbrella\nvrK5lDQJnmc_0\tcar\nXy1w-6sjVS0_0\tbus\nXzj_w2QkjRg_0\tumbrella\nX0iu2HmUYfY_0\tumbrella\nX0nevXM5278_0\tcar\nX1drOgA68EU_0\tbear\nX2zWe7ayseQ_1\tbear\nX3ST-FA3VS0_4\tbear\nX4YaqObAEns_1\tbus\nX4kxk4G-BOs_0\tbear\nX4kxk4G-BOs_1\tbear\nX6Y6e6qsVOc_1\tbear\nX6tuO-hL1cg_0\tboat\nX6z7yGyP3UY_0\tboat\nX7AJSe6kUz4_0\tboat\nX7PChwjgRog_0\tboat\nX7mkuAPcpg0_0\tbus\nX8Wc00FiJn8_1\tbear\nX8lHVX9uGm4_0\tcar\nX9dNz1MhFTM_0\tcar\nvtOaPYxGauU_0\tboat\nvwp5f1sTcOM_2\tboat\nvxEizaWVZ2E_0\tcar\nvx7S4ISNz90_0\tbear\nvzKEVGD3E3w_0\tboat\nvzKEVGD3E3w_1\tboat\nvzmWbtFBxb0_0\tbus\nv0DjGmLiuao_0\tcar\nv0P7DOSAooM_0\tboat\nv0Uh3fazz7A_4\tbear\nv4CWziKFAvg_0\tboat\nv4CWziKFAvg_1\tboat\nv4TWD1hSObU_0\tumbrella\nv4TWZQM-t_M_0\tboat\nv4wheqJ7qmw_0\tcar\nv4-PEShPpKo_1\tcar\nv4-PEShPpKo_0\tcar\nX_1xeuzdJII_3\tbus\nYAI5kxAVlag_0\tbus\nYAS9QgwaKuA_3\tbear\nYAacEL8GB8Y_0\tbus\nYCTBEauAnvs_0\tboat\nYCT0ue2AdNE_0\tumbrella\nYC0SWC1thDM_2\tcar\nYDxjfXnUsjA_0\tbus\nYFb4IgdgsQI_1\tboat\nYGm0A03QK-0_0\tbus\nYJklsCjPlRE_0\tcar\nYJrYjEZ4Hfo_1\tbear\nYLNAOu0nAaM_1\tbus\nYMWEbvBeA2k_0\tcar\nYNOl5XssrmA_0\tcar\nv6RTPFSqVAo_0\tbear\nv6d52nxP9CI_0\tboat\nv6d52nxP9CI_6\tboat\nv6d52nxP9CI_2\tboat\nv7R5EfiWsMU_0\tboat\nv7mxF1u1eJA_0\tboat\nv74SVFcInoY_0\tbus\nv77um2oiCmw_1\tbear\nv8vdjpigkqA_3\tbear\nv9EO_34zhPY_0\tbus\nv9dJjyyqJ14_0\tbear\nv-_nfHjdDrM_0\tcar\nwAJI2wAjCLA_0\tcar\nwAktmcUSj0Q_0\tbear\nwAsEbrNlx-Q_0\tcar\nwBEyQdKDniA_0\tbus\nwDOuWmULTDo_0\tbus\nwDwRfk2Ka7A_2\tumbrella\nwFuYr5TAoA4_0\tcar\nwFuYr5TAoA4_2\tcar\nwGqMuP3z6nY_2\tbear\nwHdnCnPBax4_0\tumbrella\nwHrdTEho0Do_2\tbus\nwItLJ3GVPHo_0\tumbrella\nwIzhSLqL-4M_0\tboat\nYPR6uiSn_PI_0\tbus\nYPR6uiSn_PI_2\tbus\nYPWoY6sseHw_2\tbus\nYP9HVTyFrM0_0\tumbrella\nYQRaUcLNZjw_1\tcar\nYRmCe16K5EI_0\tumbrella\nYRxTciapqLc_0\tbear\nYSFyOBQNQzc_1\tumbrella\nYSOeyn1SUIc_0\tbear\nYSx79S6HsRE_0\tboat\nYSx79S6HsRE_1\tboat\nYVueKFH38pQ_0\tumbrella\nYWAY2hVlXwU_1\tboat\nYXC4y1_fd5M_1\tboat\nYYjM_RIWUWk_0\tbus\nYY-G2b46dbU_0\tbus\nYalvFPYggIo_0\tbus\nYbsAJsBizWo_0\tcar\nwJbu3nAVmh8_0\tcar\nwJ-qeIIyve0_1\tbear\nwKlqztWBWCE_0\tbus\nwLXsUww1z0Y_1\tbus\nwLXsUww1z0Y_2\tbus\nwMW3eYDAmiM_0\tcar\nwN6DTQLhQo0_0\tboat\nwOAtMDJ1DIU_1\tbus\nwOqLqQhPKNs_2\tbus\nwPCVya7FjXI_0\tbear\nwPcWihBU6Fc_0\tboat\nwPjzhuBuZ_E_0\tcar\nwPrTnHfCQy0_0\tbear\nwP83jrOriho_5\tboat\nwP83jrOriho_1\tboat\nwP83jrOriho_3\tboat\nwQY4K0ZN5RY_0\tbus\nwQY4K0ZN5RY_1\tbus\nwQY4K0ZN5RY_3\tbus\nwRJ_foSdk2g_0\tumbrella\nwRs7_Un28R0_0\tbus\nwSaf-OQyJzM_0\tboat\nwSkaSUiYB60_0\tboat\nwUG-UKf5xOM_2\tbear\nwUtwwmbus0k_0\tbear\nwVI9BeWuM68_0\tbear\nwVX6wPj2U5M_0\tbus\nYcrP36sQwVc_5\tbear\nYepGVMeHePw_1\tboat\nYe3mi53K_Oo_2\tboat\nYgouPUMM7w8_0\tbus\nYhZT5GU-dEY_0\tbear\nYiDVwrN1Djs_3\tbus\nYi8XHxZACGY_0\tbus\nYlGg5v-AWZc_2\tumbrella\nYlnMI5yk7FU_0\tboat\nYmRfW-9QwH0_0\tcar\nYodCYpx5p8o_2\tbear\nYogxE9OtHGE_0\tcar\nYogxE9OtHGE_2\tcar\nYozOMrrhBWk_0\tumbrella\nYozOMrrhBWk_5\tumbrella\nYo8IaFdsDHQ_0\tumbrella\nYo8IaFdsDHQ_1\tumbrella\nYpGGnhGqqkc_0\tcar\nYpv2bwSbJbg_0\tbus\nYpyrD-P9emk_1\tbus\nYq3H6FwjqwQ_2\tbear\nwXg6MT7--Ms_1\tbus\nwYO_Z3tO-P0_0\tcar\nwYO_Z3tO-P0_1\tcar\nwYO_Z3tO-P0_2\tcar\nwaGAoKeMDbo_2\tbus\nwaZHoBhYNXM_2\tcar\nwan2A1Zp9pg_0\tumbrella\nwa4LKNmoGCI_0\tbus\nwbBafnofeHM_1\tbus\nwcLRQ5lDklc_2\tbus\nwcRJMRP7TtY_0\tcar\nwcUHhJA9ynY_0\tumbrella\nwcUHhJA9ynY_1\tumbrella\nwc6z479m8VU_0\tknife\nwePYCAT9VWI_0\tboat\nweUGYN9mO8M_0\tcar\nwe9P1H3yM9s_0\tumbrella\nwgn5GA4Kt_w_0\tbus\nwioe2rgDFxQ_0\tbus\nwi_60seXhMg_0\tumbrella\nwkCC1-6dZZc_0\tbear\nwkRF61CxvWQ_1\tboat\nYsJGlSMV6fc_0\tbear\nYsKpyV6dNVU_0\tumbrella\nYsKpyV6dNVU_6\tumbrella\nYukb6C-FiPs_0\tbus\nYyqN8OKq7-k_0\tcar\nYy9Cj5ayVow_4\tcar\nY2esC00COVs_0\tumbrella\nwkhiKomfWwo_0\tboat\nwku7FWw9zok_6\tbear\nwmN3gF7czBE_0\tboat\nwoB4lneU8v4_2\tboat\nwoB4lneU8v4_5\tboat\nwoB4lneU8v4_3\tboat\nwonqKYd_Hkc_0\tboat\nwulomSbG8Ww_0\tboat\nwwHyMOLjtHw_0\tcar\nY8gjbHlOSpg_1\tcar\nwz-CYTAvpJA_0\tcar\nwz-CYTAvpJA_1\tcar\nw1xC4CowaVk_2\tbear\nw2d7ZPHVRsQ_0\tcar\nw4QoeqK4vN4_0\tboat\nw5KKrxi32ZU_0\tboat\nw5RAGrRh6N0_0\tboat\nw85PvG-O3JQ_3\tbear\nw-RoxIo67S8_0\tbear\nw_dzHMbP1wk_0\tcar\nxAdflusGMAM_2\tbear\nxAdflusGMAM_1\tbear\nxBQVhJr5tn4_0\tcar\nxBQVhJr5tn4_1\tcar\nxBW2dB1aHqE_1\tbear\nxE-fIbBizEc_0\tboat\nxIjuSe8NERE_0\tboat\nxIr-46lqsbs_4\tboat\nxI3wdcR9GOU_0\tbear\nxJaqlEqJIsg_0\tcar\nxKUjAAXXark_1\tcar\nxKjnn1lJsUE_0\tboat\nxLl8JlHPals_0\tbear\nxL0aucx8LjA_0\tcar\nxM1N_JeMAns_0\tcar\nxNfYVO0HOWA_0\tbear\nxNfYVO0HOWA_1\tbear\nxNqzZtEMt6A_1\tcar\nxOQ_zqhFFoQ_0\tcar\nxOQ_zqhFFoQ_1\tcar\nxOQ_zqhFFoQ_2\tcar\nxPgexGqlrpM_0\tboat\nxQ2ursLiV78_0\tboat\nxVl7ISxNOBo_1\tboat\nxWfIV6ykSZU_0\tumbrella\nxYRbcgZcjTo_0\tboat\nxZdiy-peZpE_0\tbear\nxcC48didfYg_0\tcar\nxds7aav_WA0_0\tumbrella\nxeEFpaZutxQ_2\tcar\nxeEFpaZutxQ_0\tcar\nxemv_TG3nHo_2\tboat\nxf7e7HpnDAI_2\tumbrella\nxhLH-f-e2Ds_0\tbear\nxhLH-f-e2Ds_5\tbear\nxhLH-f-e2Ds_1\tbear\nxhLH-f-e2Ds_3\tbear\nxhLH-f-e2Ds_4\tbear\nxhYRRVSUjcI_0\tbear\nxh6_xD0_FUY_0\tumbrella\nxi1l0PNYmVU_0\tcar\nxi1l0PNYmVU_1\tcar\nxk-PCxxgLyQ_0\tcar\nxlSq_r-1VZI_0\tcar\nxlTBS98u4Xk_1\tboat\nxl03KNG3qcY_2\tbear\nxl03KNG3qcY_3\tbear\nxmXEOSj-QR8_0\tumbrella\nxm61skXJVHY_0\tbear\nxm7yMjZR_HM_0\tcar\nxniXqwdU3rM_1\tcar\nxn_6GQGdyww_0\tbear\nxoL1TWqV2UY_8\tcar\nxoL1TWqV2UY_3\tcar\nxoL1TWqV2UY_4\tcar\nxoL1TWqV2UY_6\tcar\nxo93ACxVFCE_0\tcar\nxu3hCCY1M98_0\tcar\nxvJ-vgSlRFQ_1\tbear\nxyUFBTV5sfA_1\tboat\nxyUFBTV5sfA_5\tboat\nxzFwd6rktG8_1\tbear\nx1PZyiPtcD0_2\tbear\nx1PZyiPtcD0_0\tbear\nx2MUZI0ckUs_0\tboat\nx51qh-jbh2w_0\tcar\nx8bgasvRg_0_0\tcar\nx_PtUMz2m3g_0\tumbrella\nx_yZa__92dU_0\tbear\nyE9ySV90e2U_2\tbear\nyFdbcjv2scY_0\tbear\nyFwt2mHmJQw_2\tumbrella\nyFyTQPoWKrg_0\tcar\nyGYLwBmuRVI_0\tbear\nyGYLwBmuRVI_1\tbear\nyGq_wX2hSms_0\tcar\nyHFbPuIOGec_0\tboat\nyMVPEp44IcU_1\tcar\nyNYzTl3zuSA_0\tcar\nyOeQRz1L-6w_0\tboat\nyPx8JYuB8jo_5\tbear\nyTEPer0Bvnk_0\tboat\nyTr7cqNxVw8_0\tboat\nyVwePYmRfaA_2\tboat\nyVwePYmRfaA_0\tboat\nyV3gYczZGSU_0\tboat\nyWKpg3C3HRA_0\tumbrella\nyWQT0KUXmZs_0\tcar\nyXA2s-Ylkx4_0\tumbrella\nyYt1-j5ltQg_0\tbear\nyZOWsBbP8Dw_1\tboat\nyafgzvvEBsk_0\tcar\nygqn0Cw0cJg_0\tboat\nykAF4z2vPRI_1\tcar\nynSIMn0mh5Q_0\tcar\nynuXudWT-jg_1\tboat\nyqDO3G8QSxs_2\tboat\nysudb_DYv1E_0\tbear\nytzy45KRs4k_0\tumbrella\nyy-1Eaz2SGI_4\tboat\nyy-1Eaz2SGI_5\tboat\nyy-1Eaz2SGI_6\tboat\ny26dbfVQaAI_0\tcar\ny3HDa7ZvWW4_0\tumbrella\ny5rlUzgK0z4_0\tumbrella\ny6l_Xj3A7dU_0\tbear\ny6nMm6sNieE_0\tbear\ny6oa4gTfIaw_0\tboat\ny7_Teuq-Jd4_0\tumbrella\ny-J-zu3KYKk_0\tboat\ny-lv7_3azcQ_3\tbear\ny-lv7_3azcQ_1\tbear\ny-lv7_3azcQ_2\tbear\ny_Kbef75lDk_0\tumbrella\ny_OvZEh5PxQ_1\tumbrella\nzA7rl-0pCw4_1\tbear\nzBCRUfv1YVo_0\tcar\nzBomR9gjgg4_1\tcar\nzCnqglOaM40_0\tboat\nzC1J8hrm_FI_0\tboat\nzGOI3Uds1-A_0\tcar\nzGvuvfZeouY_0\tcar\nzHwK-Ov5Dn8_1\tbear\nzIGdWP0BOPc_0\tcar\nzIoLntgax_4_0\tcar\nzIrTQvy-DtU_0\tumbrella\nzKN-t-wHfVw_0\tcar\nzOxKFs0x_-M_0\tcar\nzPUoexM4GJg_1\tbear\nzS4G-dKS3dg_0\tcar\nzUYNrm52mG8_0\tcar\nzU9O4EpnP8g_0\tboat\nzW4j5HFdFCE_1\tbear\nzW9G9_luulU_6\tboat\nzW9G9_luulU_8\tboat\nzX70EOhK1IA_4\tboat\nzX70EOhK1IA_0\tboat\nzX70EOhK1IA_2\tboat\nzX70EOhK1IA_3\tboat\nzYNSRTs7wcI_0\tboat\nzZMZCzV930Y_0\tboat\nzaXvp0LSorI_0\tumbrella\nzcIJlqUAlyQ_0\tboat\nzcdpKM2gDkA_3\tbear\nzdWOfDZyRWg_0\tcar\nzdp6LbsF3Fo_0\tcar\nzdp6LbsF3Fo_1\tcar\nzglydzoqdNw_1\tcar\nzhSMuVKY4jM_1\tboat\nzhgbbZA2jZo_0\tcar\nzj0QGbLx2Ek_0\tumbrella\nzkC1ygaZUL4_0\tcar\nzkFlovQ2F80_2\tumbrella\nzkFlovQ2F80_4\tumbrella\nzkFlovQ2F80_0\tumbrella\nzkYqOEAbTTE_0\tcar\nzk5BFmxsRfQ_1\tcar\nzmXJ3VmO_yQ_0\tbear\nzmXJ3VmO_yQ_1\tbear\nzn_LOCSgnBI_0\tcar\nzobMJDgPWmM_0\tboat\nzpW9Kjtbu7g_1\tboat\nzp4-YNYr-l8_0\tcar\nzqDdt_wpfcM_0\tbear\nzqyhnAN5qnA_0\tcar\nzq-AjPBQb3w_0\tumbrella\nzsszkZnE24M_0\tcar\nzsszkZnE24M_1\tcar\nzwKNqBmI95k_0\tumbrella\nzxfyvjQQ0QY_0\tcar\nzxuleRJc5Pw_1\tboat\nzySbpWHTUUI_2\tumbrella\nzzDlzbpuFUg_1\tcar\nzzOYV3PIwDo_1\tcar\nzzljeIZDjM8_0\tcar\nz1CT7NYPStE_0\tboat\nz1CT7NYPStE_2\tboat\nz1DFtYFOfsQ_0\tboat\nz1GcDqMXI5U_0\tbear\nz1WPNBklZbo_0\tbear\nz3V1O449zY8_0\tcar\nz3V1O449zY8_1\tcar\nz3V1O449zY8_2\tcar\nz32BNdijIPo_0\tcar\nz4C0C5AtXd8_1\tbear\nz4Nk6je-k5E_5\tbear\nz4Nk6je-k5E_6\tbear\nz4Nk6je-k5E_2\tbear\nz4Nk6je-k5E_4\tbear\nz4YdhKjeNQk_0\tcar\nz5PqRVPhGGo_0\tbear\nz56C-TtwATI_0\tcar\nz6Bzk_B2FVo_1\tumbrella\nz6gL7THeOz4_0\tcar\nz8GzZUKj04k_0\tcar\nz8QYapjsTBo_0\tbear\nz8WzXJMRLkg_1\tbear\nz9CJpzFuqHU_0\tboat\nz-gqhqI7U10_0\tumbrella\nz-n_qZEuRko_0\tumbrella\nz_CWMOiNpzY_1\tboat\n0Ah0DHbJ6Uw_0\tbear\n0B-l9QmJK3I_0\tcar\n0DHXMcNUn60_1\tumbrella\n0EEILwHA4Dg_0\tumbrella\n0FRiwnN3Wv8_0\tbear\n0FUPhsPv9vs_0\tboat\n0FUPhsPv9vs_1\tboat\n0GR555fb7uE_1\tboat\n0GR555fb7uE_3\tboat\n0Gal36CHm94_0\tcar\n0Hf-spRN8iA_0\tbear\n0H81H-1s398_0\tcar\n0JkwSF_s82I_0\tumbrella\n0JxUW6X6VTA_1\tcar\n0JxUW6X6VTA_2\tcar\n0LY3jcKxA2E_0\tboat\n0NN0x0UcFVI_0\tcar\n0NgLxOGQPPM_1\tcar\n0Nh6NERAbQM_0\tumbrella\n0NyneL4SB78_0\tumbrella\n0O2cDoxCAhA_0\tcar\n0PqvPOqRHik_0\tbear\n0ROl0QaHTgU_0\tboat\n0ThOYMXH3Mw_0\tumbrella\n0TyHCEslM-4_0\tboat\n0UGD0u7LEPY_0\tcar\n0UVJn4oJR3I_0\tcar\n0Vu78K6ZsOk_2\tbear\n0XETGtPrUR0_1\tboat\n0XrWsyRsBYs_1\tbear\n0YWXAZlIFZE_0\tcar\n0YWXAZlIFZE_1\tcar\n0YaZ8lrPQJc_0\tboat\n0YaZ8lrPQJc_2\tboat\n0YaZ8lrPQJc_5\tboat\n0ZJeQYZxfGQ_7\tbear\n0ZJeQYZxfGQ_6\tbear\n0agrBEPe_w4_2\tbear\n0bx9mbPU7zo_0\tumbrella\n0c5dV9e0rL0_1\tcar\n0hafN9Sygek_1\tbear\n0jL3xw-Gfq8_2\tboat\n0kyg-HgBo7o_0\tboat\n0lXT8w6Nvz4_1\tcar\n0loh5Nhb32w_0\tbear\n0lyjvzKFjn0_1\tbear\n0lyjvzKFjn0_2\tbear\n0mIwwe5irHk_0\tcar\n0mSZED2I97w_0\tcar\n0mSZED2I97w_2\tcar\n0mSZED2I97w_1\tcar\n0oHtf7nx8m0_0\tcar\n0oHtf7nx8m0_1\tcar\n0peaciSDgqg_0\tboat\n0rIli5nmkus_0\tcar\n0sAim6AJwgY_0\tcar\n0sAukk-qZs8_1\tcar\n0sWjMW4aW_Y_0\tbear\n0sbXLfSaBvk_0\tumbrella\n0tapt-cyoSY_12\tbear\n0vC1j_r-gPc_1\tboat\n0vun54M7U5c_0\tumbrella\n0wXgXCqnblk_0\tumbrella\n0wzUHyuc5JE_0\tboat\n0zKI3bZagm4_2\tboat\n01aEu9jy-zA_0\tcar\n02AiKGZAu3k_2\tbear\n02bMGGTZE_M_0\tboat\n04FPpXq4qHc_0\tumbrella\n04FPpXq4qHc_5\tumbrella\n04jEe0lfdos_0\tcar\n04p58ydbAvM_0\tcar\n05VoMpLo7Cc_2\tboat\n05rSMaVX3yA_1\tboat\n06kAyBeWx5c_1\tumbrella\n08Fj_YF5X8Q_2\tbear\n0-Jhv9dONP4_0\tbear\n0-zDto8pBU4_0\tbear\n0_ByJ0bAD70_1\tbear\n0_P-fui2MeI_0\tboat\n0_soacANAc8_0\tumbrella\n0_2dsK8nudw_0\tboat\n0_2dsK8nudw_1\tboat\n0_2dsK8nudw_2\tboat\n1EIBn1zqhJA_0\tboat\n1Fv0cFr9B_Y_0\tbear\n1Gd-hUsNAsQ_0\tbear\n1Gd-hUsNAsQ_5\tbear\n1HhUsmUQmRY_0\tboat\n1KnTTBiP4ig_0\tumbrella\n1LKTvGMlL60_0\tbear\n1MVBovgEi4s_0\tbear\n1OvseXyo27E_0\tumbrella\n1PYMTwN-dl4_0\tboat\n1REcM5EtrZg_0\tboat\n1REcM5EtrZg_1\tboat\n1SQF7Tb6pUA_2\tbear\n1T4c050qGWo_0\tboat\n1UGqDCwd0TU_2\tbear\n1VziogDsYAs_1\tbear\n1WOfnEUurGM_0\tboat\n1YelAl0OQQg_0\tbear\n1anH_WthXTc_0\tumbrella\n1anH_WthXTc_1\tumbrella\n1avrrmB_Q5s_3\tbear\n1cbY1pGpdhM_0\tumbrella\n1cy1p57Z49c_0\tboat\n1dmbrwAgFuc_0\tbear\n1fPDeE9SwYI_6\tbear\n1gbd0C2wJrI_2\tbear\n1huEYUsV2ng_0\tboat\n1iD7yA3Elk4_0\tumbrella\n1iLq0PGfeCs_1\tboat\n1irtTU-RM8g_0\tboat\n1lCEFERcEKg_1\tboat\n1lSGhF2K_lM_3\tbear\n1l-NcYZKF8w_0\tumbrella\n1miy1sfneCI_0\tbear\n1qIgbCRt2C4_0\tbear\n1qknV5a5WQA_5\tbear\n1rt4XRA4RHE_0\tbear\n1rt4XRA4RHE_3\tbear\n1v8UDwaLZOk_1\tboat\n1yym4MiYTrs_0\tboat\n1yym4MiYTrs_1\tboat\n1zGry9uSuEs_0\tboat\n10oedSsXbw0_0\tbear\n14R96gxvKtU_1\tboat\n15ImffljXUs_1\tumbrella\n16BnXZheZE8_0\tboat\n18XvETJJDqA_0\tbear\n19ID_DbSclo_1\tbear\n19vhT11oPv4_0\tumbrella\n1__PWUxtAJI_0\tboat\n2Da3689mFHo_0\tboat\n2DimBSzdfPw_0\tboat\n2Fo-71zWO5Q_0\tbear\n2F9aM3isFOg_0\tboat\n2HDMk0mGW_w_0\tumbrella\n2IWPUKQEQc0_0\tboat\n2Irm_qCNQ_g_10\tbear\n2Irm_qCNQ_g_2\tbear\n2Irm_qCNQ_g_4\tbear\n2IyAOD0OkOg_0\tbear\n2I_k7e8QpWI_1\tumbrella\n2LWxx48-zmY_0\tboat\n2OYJuEnLK_w_0\tumbrella\n2O-9dVZBFm4_0\tumbrella\n2PL1rgU3jQ4_3\tbear\n2Pxvoh1PnpM_0\tumbrella\n2QOthN0H0jo_0\tboat\n2UBlre798kQ_0\tboat\n2U7mw3Z_nrI_1\tbear\n2ZeSJRQEIDg_0\tumbrella\n2huYkh1UAa8_0\tboat\n2j5p2kIFnF8_0\tboat\n2kAmyrOg2is_0\tumbrella\n2l4-4yNg4uM_0\tbear\n2l4-4yNg4uM_1\tbear\n2nWt5S5AcdM_0\tbear\n2oAbMVTBupI_2\tboat\n2olUVemt4wc_0\tumbrella\n2rbAoA6KuZ4_0\tboat\n2rzjzIvxob0_0\tumbrella\n2sDjXjM3vuk_4\tbear\n2sgrwTqPz-Q_1\tumbrella\n2vC56ILIWK0_1\tbear\n2w5-fxqKaR0_0\tboat\n2xzgP87zGDM_0\tboat\n20nMgEiCqVs_0\tbear\n223bkVsFvUg_0\tumbrella\n23-uEh5ygBE_0\tboat\n24kbYgf2_xM_0\tboat\n27Yd0qtplBs_0\tboat\n2_VfwSLic7o_0\tboat\n3EBKN0vh_8Y_0\tumbrella\n3EQ8WatEGfM_1\tbear\n3FBfwZ1vctY_0\tboat\n3GXWmiQHAA4_0\tboat\n3Hc48OCKEaQ_0\tbear\n3ICqGhWY-HU_0\tbear\n3IOrKwocmOM_0\tbear\n3KUAz0bb87g_0\tumbrella\n3KqDceVP3xg_4\tboat\n3MqGpNqj-fo_2\tbear\n3M5VwMaIzvc_0\tbear\n3PN8pPy1PLc_1\tbear\n3PN8pPy1PLc_4\tbear\n3PuByhkRjdA_0\tbear\n3P8-bKeMTDU_0\tbear\n3P8-bKeMTDU_1\tbear\n3QQYEFonITE_0\tumbrella\n3SJI7j-hBwU_0\tumbrella\n3SbQY-gSjTI_1\tbear\n3SofVK5wM1k_0\tbear\n3T5iqGlQLn8_0\tbear\n3T5iqGlQLn8_4\tbear\n3UJ24QWw0js_0\tbear\n3UUo8exclHk_0\tumbrella\n3VZuzA8i9tI_0\tboat\n3ZWFSRxFKp8_4\tumbrella\n3ZwOfZ6mdTE_0\tumbrella\n3cBiXmqHBLE_0\tumbrella\n3eH1SNLDT7U_1\tboat\n3fiWerkBy1s_0\tboat\n3fm54fM2fh0_1\tboat\n3kOuqiigfhM_0\tumbrella\n3khbnSUKCjw_0\tumbrella\n3khbnSUKCjw_3\tumbrella\n3khbnSUKCjw_5\tumbrella\n3khbnSUKCjw_1\tumbrella\n3leEAIEn6wg_1\tbear\n3oFuTv4g5QE_0\tumbrella\n3oFuTv4g5QE_2\tumbrella\n3ohEBnBnt7o_2\tumbrella\n3pli8lLuPF0_1\tbear\n3qGBc-85DMI_1\tbear\n3q0pJjI8W5o_0\tbear\n3v6DRHFQTz0_1\tumbrella\n3yct6bNJF9c_1\tboat\n3zhjI0Cn1AM_1\tbear\n3z0lIa162ps_0\tbear\n31PMTcBL5-o_1\tumbrella\n31PMTcBL5-o_0\tumbrella\n32GDx70-6cQ_2\tboat\n351brnq0Ryk_1\tboat\n38Tbojzrw80_3\tbear\n3__l885Wkz4_0\tbear\n4A-5QKpDBFE_0\tbear\n4A-5QKpDBFE_1\tbear\n4BbVz6UbHFY_1\tbear\n4GTfq2m-SnY_0\tbear\n4K0agSc78Js_0\tumbrella\n4K0agSc78Js_1\tumbrella\n4MUu-MomyB0_1\tbear\n4N85gqVvlWU_1\tboat\n4OQGDsYtfSg_0\tboat\n4QdM0aAdf4g_3\tbear\n4Qf9iJ-IMDg_0\tbear\n4R5HjEAW6Y4_0\tboat\n4ViaowUogyA_1\tbear\n4ViaowUogyA_3\tbear\n4VxP7VQ-WtQ_0\tbear\n4XCmBo2k6Hc_1\tboat\n4h2kJG8rDAk_1\tboat\n4h8E8d4P5ms_0\tumbrella\n4iktvQjNLS8_6\tboat\n4lyoTIuPa9s_0\tumbrella\n4rxmIDjvHvo_0\tumbrella\n4td5npVxACw_0\tboat\n4td5npVxACw_2\tboat\n4td5npVxACw_3\tboat\n4td5npVxACw_1\tboat\n4u8RQi7_xUQ_1\tboat\n4zYtj8BG_ZA_0\tboat\n4z3XNRP4Qvk_0\tboat\n40Ogw6O8g2M_0\tumbrella\n42-2FjqvBRw_0\tboat\n44nxZjEYqLI_0\tboat\n45HOGdlAVq0_2\tumbrella\n45HOGdlAVq0_3\tumbrella\n45HOGdlAVq0_6\tumbrella\n46Sp7L3iKK4_1\tboat\n47mMBnGHuOE_7\tboat\n48IdCSlEHlM_0\tumbrella\n48pGfV-z-x0_0\tboat\n5AhKWEjMmUw_0\tumbrella\n5AzSuHB6_jc_0\tumbrella\n5Ce6X4i25i4_4\tumbrella\n5Ce6X4i25i4_0\tumbrella\n5EaEfiCIEcA_4\tumbrella\n5EaEfiCIEcA_3\tumbrella\n5FZykf07mxY_0\tumbrella\n5FZykf07mxY_1\tumbrella\n5FviZXBOPWk_0\tumbrella\n5H6nBOIIziQ_0\tumbrella\n5IdOF-nnOkU_6\tboat\n5I2hW9gRRwU_1\tboat\n5JubFWZKmZc_1\tumbrella\n5Kf5KxsLCmI_0\tboat\n5PxBf16_oMg_0\tumbrella\n5WUSwyO4k7A_0\tumbrella\n5XWfGTUYLbQ_6\tumbrella\n5Y3Lrgpl6s8_0\tumbrella\n5dL3vGF_-ug_0\tboat\n5e9luwmv6mU_0\tumbrella\n5g_ugz2HmKM_2\tboat\n5iYpaHYUElI_0\tboat\n5iYpaHYUElI_3\tboat\n5iYpaHYUElI_5\tboat\n5nMhK15X4R8_2\tboat\n5rT33oH7aV4_0\tboat\n5srF-BzF_go_0\tumbrella\n5suoa4TFYd4_0\tumbrella\n5vMpwDm27VM_0\tboat\n5vyqdnOWivc_3\tumbrella\n52m9SGVaiW8_0\tboat\n521jpaMoQ58_2\tboat\n537tF6-uRB4_0\tumbrella\n561s-m-0mqU_0\tumbrella\n561s-m-0mqU_2\tumbrella\n561s-m-0mqU_3\tumbrella\n582V5-HF4yg_0\tboat\n582V5-HF4yg_1\tboat\n597l2xVl9Tc_0\tumbrella\n6C42Di7bIpE_1\tboat\n6FG49plD8TQ_0\tboat\n6FQz5w7HaKg_0\tboat\n6JGioFiqwww_0\tumbrella\n6JLdACYt7D4_1\tumbrella\n6MVLpYA1t8E_1\tboat\n6MVLpYA1t8E_3\tboat\n6OEFFwKhAFw_0\tboat\n6PVjXDW7JlY_1\tboat\n6Sxb0d7xIys_0\tboat\n6Ug54vSsrio_0\tumbrella\n6WP3KFUYTrM_0\tboat\n6XrW8Yjd16I_0\tumbrella\n6c0RAJO-AGg_0\tumbrella\n6inTfRLx_58_0\tumbrella\n6it-xMMovj4_2\tumbrella\n6khDUjxTmdo_0\tboat\n6mvP_NKlIHg_1\tumbrella\n6qpeBvh9pqs_0\tboat\n6rowMK5ERz8_2\tumbrella\n6sN56W9U7tY_2\tboat\n6tLtEuKyj1E_1\tboat\n6tQrO26kwOY_0\tumbrella\n6t0mbpnPPdg_0\tumbrella\n6t55VfdtMWE_4\tboat\n6t55VfdtMWE_7\tboat\n6t55VfdtMWE_8\tboat\n6t55VfdtMWE_0\tboat\n6uM7MFSH15g_0\tumbrella\n6uvJft-l1R0_3\tboat\n6yCsWwj87QI_0\tboat\n6zxrdodJut0_0\tumbrella\n61RreGvIPOk_1\tboat\n66WmMvvZOxI_0\tumbrella\n68C7HGRrJ8o_0\tumbrella\n68kx9VUVhzE_1\tumbrella\n6-Nh0bY1nUk_0\tumbrella\n7HD-o1yj47U_0\tumbrella\n7NXmDbHoJn0_3\tumbrella\n7NXmDbHoJn0_5\tumbrella\n7NXmDbHoJn0_6\tumbrella\n7RcyfoxqADA_0\tumbrella\n7WKzOMuf3Cg_1\tumbrella\n7a_nsGmUZNU_0\tumbrella\n7kSyhlnimb8_0\tumbrella\n7kaTL52xbiY_0\tumbrella\n7tlbytb63z4_0\tumbrella\n7uR1cEVdMDo_0\tumbrella\n7ydX3wCeOgk_0\tumbrella\n71k1TftUiYE_0\tumbrella\n76ljAryU9Bw_0\tumbrella\n78lA-eJGUn8_0\tumbrella\n7-ugeb_4vqE_0\tumbrella\n7_k6DM-PlXg_0\tumbrella\n8AZtNaOO_8A_1\tumbrella\n8FhIv4h9D3E_0\tumbrella\n8FhIv4h9D3E_1\tumbrella\n8H88MFohrUM_0\tumbrella\n8SuTrZ6xu2E_0\tumbrella\n8d_Vt2SWIvg_0\tumbrella\n8fsRltS2ul4_0\tumbrella\n8nReKSsSgGE_0\tumbrella\n8oOer9PS53g_3\tumbrella\n801xOkfqjkM_0\tumbrella\n84Ber6V3IrA_0\tumbrella\n84zKfCKtsDo_0\tumbrella\n9CGTYEUn-mo_2\tumbrella\n9JFicuESmEA_0\tumbrella\n9JiMiflDI68_0\tumbrella\n9J4O20b9qnY_0\tumbrella\n9S2mGfudahk_0\tumbrella\n9UVLb_-RbfA_0\tumbrella\n9bFrwgSSAkQ_2\tumbrella\n9bFrwgSSAkQ_4\tumbrella\n9bFrwgSSAkQ_0\tumbrella\n98OOq0Wh904_0\tumbrella\n99uO6qHrhsU_0\tumbrella\n-PaNPkpeFdI_0\tumbrella\n-PaNPkpeFdI_4\tumbrella\n-Z3_Ixwl1YY_0\tumbrella\n-bA7JdKB0LA_0\tumbrella\n-d9Vg5j5vZU_1\tumbrella\n-eJmt-GItyI_0\tumbrella\n-k8FuC01N5E_0\tumbrella\n-0y7A0GDVY8_3\tumbrella\n-0y7A0GDVY8_5\tumbrella\n-0y7A0GDVY8_7\tumbrella\n-3TIfnTSM6c_1\tumbrella\n-3TIfnTSM6c_2\tumbrella\n-98I0B3kkqw_0\tumbrella\nAAVVg5xx0p8_0\tperson\nACB01WGxOSM_0\tskateboard\nACDc6tGnXXQ_0\telephant\nADWNgv6trag_0\tperson\nADznOfGgfj8_0\tperson\nAEEVGgiuS5c_0\tperson\nAEHbOzlbmOQ_0\tdog\nAEJTsQNMkME_0\tbus\nAFlkSTJ-mF0_0\tdog\nAGRV17_1OS0_1\tbus\nAHsZ4FTQ8Ew_0\ttruck\nAIViQtfacts_2\thorse\nAJBtOVA1KSw_0\tperson\nAJbQP-rIwCY_0\tperson\nAJ9ODXcnhVo_0\tperson\nAJ9ODXcnhVo_1\tperson\nAKBq0oH8IOM_1\ttrain\nAKBq0oH8IOM_3\ttrain\nAL9dFpjFlLM_0\thorse\nAM-TjLTvBSU_5\tbear\nANA-pgSAzGI_0\thorse\nANVnK2HmZno_1\tairplane\nANVnK2HmZno_7\tairplane\nANeOKwjvX7w_0\tdog\nAPP17gURiBU_0\tbear\nAPP17gURiBU_1\tbear\nAPTYyEYJfOY_0\tbird\nAQD8YBCTSPs_0\tumbrella\nARaILMtc8fs_1\tperson\nARsokXpl07Y_1\tboat\nARsokXpl07Y_2\tboat\nASPK-ZSB9Ts_0\tperson\nASfv8cmreoA_0\tperson\nASfwyHCtnIU_0\tperson\nAS5LvQT9rrQ_0\tperson\nATy91FTiYvU_0\tperson\nAVF8lCKe6os_2\tumbrella\nAWRcJpWTPwQ_0\tperson\nAWtY9Y2mPso_0\tmotorcycle\nAWwDsm1WnKE_1\tknife\nAXjDlIFY7ww_0\tboat\nAYAkMpj_MHA_2\tbicycle\nAYAkMpj_MHA_5\tbicycle\nAYAkMpj_MHA_6\tbicycle\nAax6L0Qqgio_0\tbird\nAcYd7y_-V74_0\tperson\nAdY55Q3qVK0_2\telephant\nAgbIDWiOXQ8_0\tperson\nAgsYgmA19z4_0\tperson\nAhWU-QUzOOA_0\tperson\nAiqGEAjF6QI_0\ttrain\nAiu6EH4a8v8_0\ttrain\nAiu6EH4a8v8_1\ttrain\nAiu6EH4a8v8_6\ttrain\nAixV6QSGqto_5\tbird\nAixV6QSGqto_6\tbird\nAjj7WZLukdw_0\tmotorcycle\nAjpbAriY8rU_0\tperson\nAlab3dEYXM0_0\tperson\nAoAoH9yb6zY_11\tbear\nAoAoH9yb6zY_6\tbear\nAo7Sa2afCb4_0\tperson\nApDgLQUsEqc_0\tbicycle\nApakHefqWv0_2\tairplane\nAqIG0zk2bpg_0\tperson\nAqTXLh7DtcM_0\tperson\nAqTXLh7DtcM_1\tperson\nAqdoD9jkBFc_0\thorse\nAqj7VnXQt4s_0\tcow\nAq4dBqb2SbQ_0\tperson\nArgYRdhvlc0_0\tskateboard\nAsPXe7qUyuI_0\tperson\nAuLrPQqrKV4_0\tmotorcycle\nAuY8vITQrsE_0\tcow\nAvBm7iHiDdI_2\tboat\nAvSgTHXgSXQ_0\tcow\nAwVdVzh1Eh0_0\tperson\nAwvDMOeS7no_0\tperson\nAwzt30r0OLQ_1\tbus\nAw2t3AalW4s_4\telephant\nAyh_2ithjCE_0\tcow\nAyh_2ithjCE_1\tcow\nAyh_2ithjCE_2\tcow\nAylQiap7dj4_2\tbear\nAylQiap7dj4_3\tbear\nAy9QToaaTGc_1\ttruck\nAy_a2OkcdEk_0\tperson\nAzVvPUazPYk_0\tmotorcycle\nAzzlFx32dQs_1\tboat\nA1RSx6j_ra0_9\telephant\nA1RSx6j_ra0_4\telephant\nA1RSx6j_ra0_6\telephant\nA27YZAfJmrc_0\tknife\nA27YZAfJmrc_1\tknife\nA3E72P24pf8_0\tperson\nA3cgW1rDOcI_0\tperson\nA32Fi06yKpU_0\thorse\nA5U6AHe9_4A_0\ttrain\nA5pUgLCQq9k_0\telephant\nA5pUgLCQq9k_2\telephant\nA5pUgLCQq9k_3\telephant\nA63BoLTUNAM_0\thorse\nZBzVnA8zj6Y_0\tperson\nZB45YyN1WUM_0\tbus\nZFYGhJKiw5w_1\tgiraffe\nZGfOCwbu-PY_0\tperson\nZHTMfW1eaW0_0\tcat\nZHURcze8rOI_0\tperson\nZIJUWQKzzsQ_0\tperson\nZJgwacILoAw_0\tperson\nZMgP2kxv5E8_1\tperson\nZM3wX5zgKOA_0\tperson\nZNXnJahaXIY_0\tperson\nZOc4wfLX2Jo_0\tcow\nZOnuSLp6asQ_0\ttrain\nZPQNucbAjBM_0\tcow\nZQITHWk17a0_0\tbicycle\nZQxmb_nVoH4_1\tcow\nZRUXj8o10Po_0\tperson\nZSnP5B6NiI8_0\ttrain\nZTqDuCZVTmM_1\tairplane\nZTqDuCZVTmM_5\tairplane\nZU3AYv2eU74_0\tmotorcycle\nZU4XQbNaYQc_0\tknife\nZVZWEWzZg50_1\tbird\nZVjep3tDJjU_0\tperson\nZWL6CshdsuY_1\tcow\nZWogXn8xs7E_0\tmotorcycle\nZXU4Uua3l0E_0\tcar\nZYOUZjfZMhk_0\tcow\nZYS0h2pAK6M_0\thorse\nZYm5iVw0YdE_0\ttruck\nZY8pG-I5Ax8_1\tbicycle\nZZBBcTBPmis_0\tperson\nZZpckGIvGTI_1\tboat\nZana4yKDGxY_3\tskateboard\nZana4yKDGxY_1\tskateboard\nZbnxzLt8FJk_1\tdog\nZbnxzLt8FJk_0\tdog\nZcXtrHkjobw_0\tperson\nZelRUJyMMkw_0\tperson\nZeqhN6ndscE_0\tperson\nZe8cOn59rW4_0\tperson\nZe8cOn59rW4_1\tperson\nZj1TAkYHlQo_0\tperson\nZj7GzCIi_9c_0\tperson\nZlEiOICCDdc_0\tperson\nZlH8Hd961FM_1\tknife\nZl30Oy50PfQ_0\tperson\nZmXKvpkfHZA_0\ttrain\nZmdvunyqJB8_0\tbus\nZqTkqkEbXEk_0\tcow\nZrPn3BODZJM_1\tperson\nZrPn3BODZJM_0\tperson\nZuBD3A8Vecs_0\tbird\nZuEbZKmjxaA_0\ttrain\nZuEbZKmjxaA_1\ttrain\nZu7udgxuUkk_5\tairplane\nZu7udgxuUkk_6\tairplane\nZu7udgxuUkk_1\tairplane\nZu7udgxuUkk_2\tairplane\nZu7udgxuUkk_3\tairplane\nZvadVS1LnQU_0\tbus\nZvadVS1LnQU_1\tbus\nZvadVS1LnQU_2\tbus\nZwLvs9JUsFY_0\tperson\nZw4-vF-vOMk_0\tperson\nZxO4Gd5fhOg_1\ttrain\nZxO4Gd5fhOg_2\ttrain\nZxX6DBopv30_0\tskateboard\nZyEA24Ud3EM_0\tperson\nZyM24-ekpz8_0\tperson\nZzBvzlzuw4M_0\tperson\nZ03ZC9qmwDc_0\tzebra\nZ1N0xBj_H3E_0\tbird\nZ1ns6XidhT8_0\telephant\nZ2S6XnfE5vI_0\tperson\nZ2kb4LiQJUU_0\ttrain\nZ2zB-gtDgOM_1\telephant\nZ22DSYtblFo_0\tbicycle\nZ5rHikLjARg_0\tperson\nZ6XKceRI1bE_0\tbus\nZ6XKceRI1bE_3\tbus\nZ6XKceRI1bE_6\tbus\nZ6XKceRI1bE_10\tbus\nZ6qQE2_jsIM_0\tskateboard\nZ68yTt3upjk_0\tmotorcycle\nZ8SxFPbnptI_0\tperson\nZ8pujku9bPw_0\tperson\nZ9vZk0io0fw_0\ttruck\nZ9vZk0io0fw_1\ttruck\nZ-R7-Ww03t8_0\tknife\nZ_kKBbIzdXM_0\tperson\nZ_pwMCnOdk4_0\tknife\nZ_pwMCnOdk4_3\tknife\nZ_0227AsAvk_0\tbus\nA_a1H0EO64s_0\tperson\nA_a1H0EO64s_1\tperson\nA_pc9ov1cT4_0\tperson\nA_weMKVolQM_3\tbear\nBBC4Jmlky4Y_0\thorse\nBBHBoewIXhw_1\tumbrella\nBBHBoewIXhw_3\tumbrella\nBBHBoewIXhw_4\tumbrella\nBCKR989ZYyM_0\tcar\nBCKR989ZYyM_2\tcar\nBCpaJ-tEv-0_0\tcar\nBFP7MT8RM8U_0\telephant\nBF7cTjrTSwY_0\tcow\nBF8d91cJS3o_0\tperson\nBGcAVF0Zi_o_0\tperson\nBGzetX8Dz-M_0\tcow\nBHurVVjld8Y_0\tperson\nBIUeggZa3SU_2\tperson\nBIUeggZa3SU_0\tperson\nBIUeggZa3SU_1\tperson\nBIfedkd3HEg_0\tboat\nBJaAlMv6b_U_1\tmotorcycle\nBKKSiAed9CI_0\thorse\nBKtAnbXVk1E_0\tperson\nBLCEb_seyUs_0\tairplane\nBLCEb_seyUs_1\tairplane\nBL8o-tdhlxs_2\ttrain\nBL8o-tdhlxs_3\ttrain\nBMhmY9_ltFc_0\tperson\nBO7KZKb9bkQ_0\tcow\nBQRwIXopDJw_0\tperson\nBQRwIXopDJw_1\tperson\nBQswg--xiy8_1\thorse\nBRd8dUMN0a4_0\tknife\nBRmtavy2ZEo_0\tperson\nBR0NNg6gLLo_0\tperson\nBSo8wjoZ7zc_0\tskateboard\nBTSUQrxC6l4_1\tbus\nBUHULgt_7DA_2\telephant\nBU3iU3zJnDI_0\tperson\nBU8sEPifL08_0\tperson\nBVTVHHm7vkA_0\tboat\nBWNTXqGixw8_0\tbird\nBZUE0vDhMvk_1\tknife\nBb2fkGYxp2E_0\tperson\nBckXjb2o93U_0\tperson\nBdHNtn10UKE_1\thorse\nBeXziIDAJDc_0\tperson\nBgHV_87CxNI_0\tumbrella\nBgXr-bSqMIo_0\ttrain\nBhO0SwB8Ee4_0\tperson\nBh4m74dLZaM_0\tperson\nBlYWgnhwvkM_0\telephant\nBlYWgnhwvkM_2\telephant\nBmZNFBFj-ws_0\tperson\nBm2yaWXwgjY_0\tknife\nBpXhq5Awd3U_0\tdog\nBrC6VbCzRGc_1\tknife\nBrHslMc3UMQ_0\ttruck\nBscLJpi3AJc_0\tperson\nBv8WeZ_zrJc_2\tbear\nBzEC1EEC2ts_0\tperson\nBzXWK-LODVo_0\tperson\nBzbzymdK_TM_0\tperson\nBz6Od4GfW6A_0\ttruck\nB0DRHTdmeK4_0\tknife\nB31JkzyQDkg_0\tbear\nB5GVudI81dM_0\tdog\nB6nArbkcRek_0\tmotorcycle\nB6sR2aqScR4_1\tbus\nB7IP-2uNuWs_0\tskateboard\nB7yxjI6dz4s_0\tmotorcycle\nB8iZGZlQcsg_0\tperson\nB8opNd6uzmY_1\tperson\nB9GQwzI2Eqk_0\tdog\nB92X9Xn1P2s_0\tperson\nB-CJ8miJKPs_2\tcow\nB-n15EytPtQ_0\tperson\nB_WnXKd-oZk_0\tperson\nCADW3z8x4AU_0\tskateboard\nCADyh6laNA0_0\tmotorcycle\nCA3wWkrNnRs_0\tperson\nCBSNFKeTnpA_0\tbird\nCCyZAt2Js0U_0\tcar\nCE-LfFDfGKQ_0\tperson\nCE-LfFDfGKQ_1\tperson\nCFN40hxKxM8_1\tairplane\nCFPhXPCobFg_0\tperson\nCGg2FXjvvOA_0\tperson\nCH3phgDW5Fc_0\tperson\nCINfsd8LiOU_3\thorse\nCINfsd8LiOU_0\thorse\nCINfsd8LiOU_2\thorse\nCIqkbJoJhBI_0\ttrain\nCKmnpW6gboU_1\tboat\nCKmnpW6gboU_0\tboat\nCLtQxCqTzcY_1\tknife\nCMgYFnnxQUU_0\thorse\nCOcbSVCp4ig_0\tbicycle\nCOcbSVCp4ig_3\tbicycle\nCOcbSVCp4ig_4\tbicycle\nCOcbSVCp4ig_5\tbicycle\nCRF7PcgB2yQ_2\tbus\nCSnhpel7FTA_0\tperson\nCSriNtLepLs_1\tskateboard\nCVmBocpXeTc_0\tbus\nCWCfCeYh2bA_1\ttrain\nCWvjAYt5eR4_0\tbus\nCW9n8Gahfgg_0\tcow\nCXT98GHNtRU_0\tperson\nCZ-Sh-SXaRQ_0\tperson\nCan5eao1S3Y_0\tbus\nCbB-71R_n9M_1\tmotorcycle\nCbpAv8c2Vsg_2\tcar\nCbpAv8c2Vsg_3\tcar\nCb3iufTFMEU_0\tperson\nCc2vs8vuPmU_1\tbird\nCc8E7aTdEVM_0\tperson\nCdain96L-q0_0\tbus\nCd7g3ZoA5tQ_0\tbus\nCeN22koBQRM_0\tperson\nCe2jOHHBDLk_0\tmotorcycle\nCe7IPtXkNcs_0\tperson\nCfqkbrB0Yy8_0\tperson\nCf2jOSj7eRg_2\ttrain\nCjbhKc3Vjpo_0\tperson\nCkEVvGqgVkQ_1\tknife\nCl13SbLP0hE_2\thorse\nCl13SbLP0hE_3\thorse\nCl13SbLP0hE_0\thorse\nCl13SbLP0hE_1\thorse\nCl-lB_jS8Wg_1\tbear\nCnMMdc6syXM_2\tumbrella\nCoxzc_S3ID0_1\tknife\nCpLMLRdeJJ0_0\ttrain\nCpN-qOO6Qm4_2\tairplane\nCpyK9j001RY_0\tperson\nCqNEwP8PwS4_0\tbear\nCqNEwP8PwS4_1\tbear\nCqYiAanNpo4_0\tperson\nCqbu8vOsszI_0\tcat\nCr5p4NYIR44_0\tperson\nCttKQip6B2E_0\tperson\nCuGu45Z4lt8_0\tknife\nCvszgVrLsgA_0\tperson\nCwYG2Hf6-NY_1\tcow\nCwvR1fjMeSU_1\thorse\nCyuollntwZ8_0\tdog\nC1dCZ9W6WIM_0\tperson\nC2x3rdWMAyg_0\tdog\nC3lwMd_rlG0_0\tperson\nC5MrhYouFTc_0\tcow\nC5SKibJTnR4_0\tcat\nC6dANICzCcg_0\tperson\nC6xJeHO8XSE_0\tperson\nC7NXymSnEFw_0\tbird\nC8ExRKjU1vY_0\ttruck\nC8V2-wEjv5A_1\tcow\nC8sUABBP0Jc_1\tbicycle\nC8sUABBP0Jc_2\tbicycle\nC80bmA0XrjM_0\tperson\nC886JwUWvxw_0\tskateboard\nC-Tal1XUc8o_2\tperson\nC-zp91eJqtk_3\tbird\nDApDao4fUqQ_3\thorse\nDApDao4fUqQ_1\thorse\nDApauH43Ivo_0\tbicycle\nDBArY7gHuoY_0\tcow\nDBsBTVJNxS8_0\tdog\nDBsBTVJNxS8_1\tdog\naCNvyXSuG6w_0\tperson\naCVmJCtuPeg_0\tbird\naCVmJCtuPeg_1\tbird\naDMk7CwLIxM_0\ttrain\naERiDkn_gkY_1\telephant\naEwD6TC8S4w_1\tbicycle\naFEOvm-1KvA_0\thorse\naHM4Dj-2y8o_0\tairplane\naI0y0wY4LQw_1\tperson\naI0y0wY4LQw_2\tperson\naJAd-MiEsfk_1\tperson\naJWETVChAE8_0\tperson\naJoKSWtqs0g_0\ttruck\naLYtaO_J2_U_0\tperson\naLbjxTwAV7o_0\tperson\naMDD0PenhaM_0\tcow\naMgj1BUBexw_0\tperson\naNgAUBTbUUM_0\tperson\naNmgrcJxdw8_0\tmotorcycle\naN2a-rDAYDQ_0\tdog\naN2a-rDAYDQ_1\tdog\naOhumbyx05c_0\tcat\naQcTwMVs1Zk_0\tskateboard\naQcTwMVs1Zk_1\tskateboard\naQx68fklEXA_1\tdog\naSGod2MJ5ww_1\thorse\naSq5ZqH_K7E_0\ttruck\naTAXvSNkuvc_0\tbus\naUFxg301s68_1\tskateboard\naUsTtvWAzAc_0\tperson\naV8S5HLSI_o_0\tperson\naWHaR4ExDpk_0\ttruck\naWIZBHwtII8_0\tmotorcycle\naWgH9T2sGkE_0\tboat\naWmC8Tbgy9A_0\ttrain\naXa5YE_AmKg_0\tperson\naYAuay_bTaw_0\tcat\naYVEZrX4mE0_2\tbear\naZRYQJd-5CQ_0\ttrain\naZRYQJd-5CQ_4\ttrain\naZRYQJd-5CQ_3\ttrain\naZRYQJd-5CQ_6\ttrain\naaZxOcHxPec_0\tperson\nab_RTkwBG_4_0\tperson\nacy4aJnh9SU_0\tperson\nac68trlkEnw_1\thorse\nadsmRxlAJo4_0\tdog\nafE4YqgaPlw_0\tskateboard\nafU2vHgUvaw_7\ttrain\nafU2vHgUvaw_2\ttrain\nafU2vHgUvaw_3\ttrain\nafkiqhwTeRQ_0\tperson\naiOHs3hApm0_0\tskateboard\naiOHs3hApm0_1\tskateboard\naij190b9wtM_4\tbear\nakWe9oXeKzA_0\tperson\nak1XT_Nl7VU_0\tairplane\nak4CfFF9Bpk_0\tperson\nalbeyJBtKD8_0\tperson\nalp0ImrbacI_0\tdog\nal12VKid_P8_0\tperson\namyr6d2Ns6M_0\thorse\namyr6d2Ns6M_4\thorse\namyr6d2Ns6M_6\thorse\nao9LHpxNCqY_0\thorse\napLT3-LKJgE_1\ttruck\napXNcHROKyY_0\thorse\naqp_quyEngw_0\tairplane\naspR9ca28CY_0\tperson\nas3DGRDezaA_0\tperson\natElNgnFvlk_0\tperson\nat-Ex-CnRX4_0\tairplane\nat-Ex-CnRX4_1\tairplane\nau_kgqsZlMU_0\ttruck\navRC7M3_kuA_0\tbird\nawnORAEMUIg_0\tperson\naytqFnOdBLA_0\tperson\nazLbVm88Dzc_3\tairplane\nazLbVm88Dzc_2\tairplane\nazXlb1cxVGQ_1\telephant\na1qoB1eERn0_0\tperson\na2-lZhKXx9E_0\ttruck\na3In51YCqMg_0\tdog\na3T8T1R2wAc_0\tbear\na45XOJQaDQI_0\tperson\na5dffDLeZsI_0\tairplane\na7hjIfPGJqI_0\tcat\na74_tj_B-YA_2\tknife\na74_tj_B-YA_1\tknife\na8v0k4Bz_QA_0\tperson\na9jgDU5THOU_0\tperson\na97S4U5ezQw_0\ttruck\na97S4U5ezQw_1\ttruck\na-M2_3j67qI_4\tknife\na-M2_3j67qI_5\tknife\na-M2_3j67qI_6\tknife\na-NeSgN26Zo_0\tbicycle\nbAKQZ0F7LFw_0\tperson\nbA10PjxgV3w_1\telephant\nbBPKh_BPJ50_4\tbear\nbBPKh_BPJ50_1\tbear\nbBW4swLrEHE_0\tperson\nbB6tIraYEaI_0\tskateboard\nbCDw1dn7M1Y_0\tcar\nbCDw1dn7M1Y_1\tcar\nbCWM39xLsYs_0\tskateboard\nbDFkztSgMko_0\tskateboard\nbD6xZhJfhMU_0\ttruck\nbFnzGS_doNQ_0\tperson\nbGFRHhc7zUI_1\tperson\nbGZtGWULlF0_0\tskateboard\nbGZtGWULlF0_1\tskateboard\nbIOpYFVLesY_0\tperson\nbJviDDrUSwA_0\tmotorcycle\nbKB6ESqkOic_1\ttruck\nbKRAinEnagU_1\tmotorcycle\nbKRAinEnagU_0\tmotorcycle\nbNXcPzWMXsw_0\tcar\nbN43crdYDJE_2\tbus\nbOL9YHt5u-o_0\tskateboard\nbOL9YHt5u-o_1\tskateboard\nbOofbwD246U_0\tperson\nbPKew4jsGkE_0\ttruck\nbPRVRL4x5T0_0\ttruck\nbQkneVc9gaA_0\tairplane\nbQ64JFsWSf0_0\tbicycle\nbRWbXGRwlVY_0\tperson\nbS1Z1k6laqY_0\tperson\nbUqFsPoDKBE_0\ttrain\nbVP58EONEm4_0\tcow\nbW4nHswGFPo_0\tmotorcycle\nbW5IvSesbV0_0\telephant\nbXR-iz0NfrA_0\tcat\nbZDsNeqNn9I_0\tcar\nbZDsNeqNn9I_2\tcar\nbZDsNeqNn9I_3\tcar\nbZDsNeqNn9I_5\tcar\nbZIU-ajwk6Q_0\tbicycle\nbZIU-ajwk6Q_1\tbicycle\nbZ6Tq0KWSsU_0\ttruck\nbZ6Tq0KWSsU_2\ttruck\nbanaB07Fu9c_0\tbear\nbcKUeyEaRPw_6\tbicycle\nbdhq0SKEqe4_0\tperson\nbd3b9R30l-E_0\tperson\nbeDuTpy1tg4_2\thorse\nbeDuTpy1tg4_0\thorse\nbeLkXAaP78Y_0\ttrain\nbe30TAE-gq4_0\tperson\nbfQSyBsTmE4_0\tumbrella\nbgSSzKax51E_1\tmotorcycle\nbgSSzKax51E_0\tmotorcycle\nbhoUxK8FSqc_0\tperson\nbhuPA9toCGY_0\tperson\nbiIFNnX2Nl4_0\tskateboard\nbiu2ssO3dRg_0\tbus\nbjRPge2oFgU_0\tknife\nbjV04dzuqhk_1\telephant\nbjdIG6B5zn0_0\tperson\nbjdIG6B5zn0_1\tperson\nblPLp16K1XY_2\tbicycle\nbmJ_QDIRS2U_1\ttrain\nbmJ_QDIRS2U_2\ttrain\nbmJ_QDIRS2U_3\ttrain\nbmLsrJHQQ14_4\tknife\nbnBORorLvmk_0\tperson\nbnBORorLvmk_1\tperson\nbnVGsydNrg8_0\tairplane\nbnVGsydNrg8_1\tairplane\nbnZbj1dD0qs_0\tumbrella\nbn0I2aJB5Ps_0\thorse\nboMU1mjUSDw_0\tskateboard\nbo8M-OTk4J0_0\tperson\nbpw3BCxYYU4_0\thorse\nbqoDChNwIYY_0\tumbrella\nbrJqQ_iH2VE_0\tperson\nbrMVhyEZLfo_0\tperson\nbs5AY2jipno_0\ttrain\nbtL-vruELoA_0\tperson\nbtq7gMuqMuo_1\tperson\nbtq7gMuqMuo_0\tperson\nbvEJDHpRNoI_0\telephant\nbvVfFv57gN4_0\tbus\nbvVfFv57gN4_4\tbus\nbwhPTEvGmIo_0\tperson\nbydgNyGwoys_0\tperson\nbziUK-7O0lY_0\tdog\nb0Z6qKhuldo_0\tskateboard\nb0sKQDUFTos_0\tperson\nb1s-jYD36GQ_0\tperson\nb4Wua_98Y9U_0\tperson\nb4d_9Yc0MwY_0\tbicycle\nb4qC2fctnLU_0\thorse\nb4zSrjPtOfs_0\tbicycle\nb5CJtpeG1Lc_0\ttrain\nb5CJtpeG1Lc_2\ttrain\nb5CJtpeG1Lc_1\ttrain\nb5mOcLykYeQ_0\tcow\nb9VOmo_86Ds_1\tperson\nb_W4BWH1i_A_1\tperson\nb_W4BWH1i_A_0\tperson\ncBxo9bPINJc_0\tskateboard\ncCEImigNo38_1\ttrain\ncDHZtfsI_gM_0\ttrain\ncDHZtfsI_gM_1\ttrain\ncDmkhESohro_0\tboat\ncEcTernKOqU_0\tperson\ncEcTernKOqU_1\tperson\ncGJLuwZIG5s_0\tgiraffe\ncGJLuwZIG5s_1\tgiraffe\ncGJLuwZIG5s_2\tgiraffe\ncGwjfCPO-7k_0\tcar\ncH0sXpOxvy0_2\tbird\ncH9u1pCWp2U_0\tperson\ncH_SL9CR8y4_3\tdog\ncIxdxFkZ7y8_0\tdog\ncIxdxFkZ7y8_1\tdog\ncJvh4GqZn-s_0\tperson\ncKQQVTnOzBk_0\thorse\ncLULEYFoBPc_2\tcow\ncMdjRuUhBIs_0\tmotorcycle\ncMdjRuUhBIs_1\tmotorcycle\ncMwa9cC304w_0\tcow\ncMwa9cC304w_1\tcow\ncNDYJRBsIOY_0\tdog\ncPlqWSd2TUc_0\tperson\ncP-p4R-JZxY_1\tbird\ncRBw9lx-EKA_1\tbus\ncR2-4m174EM_0\tbird\ncR-AWpc5zTs_0\tperson\ncTujx-TutbA_1\thorse\ncUrajeQPzpQ_0\tumbrella\ncUrf-ZwPzxI_0\tperson\ncUwPVOboe0k_0\tperson\ncVng1vleWNY_0\tperson\ncVrxfV0w29w_0\tperson\ncXZ7JY7YQmE_3\tbird\ncYdqN1oPRdY_0\tperson\ncagT3K3Ep3s_0\tskateboard\ncagT3K3Ep3s_1\tskateboard\nca8rEbHYMXg_0\tcow\nca-ko46j2fQ_6\tairplane\ncbL66gVAa5Y_0\tcow\ncctYyTO8OtU_0\tperson\ncc3mBIHi-GU_0\telephant\ncdNz1OLa1tU_0\tcar\ncf_U0G5W8BI_0\tperson\ncggX7PRYUh0_0\tperson\ncg_5uaJjLHk_0\tperson\nch_23jXJ_vA_2\tdog\nciCfkv5831Y_0\tairplane\ncih9W0SPGYA_0\tbird\nciwNB-l9a88_0\tperson\ncjHlHkhg0z0_0\tperson\nckFwzL1Ot94_0\ttruck\nckV9ay1lm7A_0\tairplane\nclZo-o5v1EA_0\telephant\nclvCQPta7y0_2\tbird\nclvCQPta7y0_0\tbird\nclvCQPta7y0_1\tbird\ncmTPsZ9x3PE_0\tcat\ncmW0Y4KGI7g_0\tgiraffe\ncnhhgh_z5NU_0\tcow\ncnqT4u0k3sM_0\tumbrella\ncpK8K6JD_GM_0\tairplane\ncpK8K6JD_GM_2\tairplane\ncprvb4cW5x4_0\tmotorcycle\ncqd8PRxMakA_0\ttruck\ncqvjKRFEi8M_1\tcar\ncrys7VEeUgU_0\tperson\ncskBHjsDXEs_0\tcow\ncso6B_84BFA_0\thorse\nctm9x2MaZuk_0\tcat\ncxu1qpzXobY_1\tbird\ncxu1qpzXobY_12\tbird\ncxu1qpzXobY_0\tbird\ncxu1qpzXobY_2\tbird\ncxu1qpzXobY_4\tbird\ncxu1qpzXobY_5\tbird\ncxu1qpzXobY_6\tbird\ncxu1qpzXobY_7\tbird\ncxu1qpzXobY_8\tbird\ncxu1qpzXobY_9\tbird\ncxu1qpzXobY_10\tbird\ncxu1qpzXobY_11\tbird\nczO8IPcAO1A_0\tperson\nc1FBptbYp3I_0\tperson\nc1FBptbYp3I_1\thorse\nc2T3VDriTaY_0\tknife\nc39xfJcSlxk_0\tdog\nc4kbPHdCIE8_1\telephant\nc43mnrjx2MU_0\tbus\nc5fPKbV5cAM_0\tperson\nc53j9l_w3Cg_3\tdog\nc7gnf6G7Jpw_0\tskateboard\nc7oqQy2Fvlw_0\ttruck\nc8JhzKh1i7s_0\tperson\nc8JhzKh1i7s_1\tperson\nc8gBv0b5g9w_1\telephant\nc8iU4McayiU_0\tperson\nc8iU4McayiU_1\thorse\nc8u5Y95o7jE_0\tskateboard\nc84BjBiic4s_0\tmotorcycle\nc93WuBjZeRk_0\tperson\nc-nMPinePds_0\tcat\nc_aupqZy-14_0\tairplane\nc_o91IPAB-c_0\tumbrella\ndAHCPltzogA_0\tbird\ndAP6fuArseQ_5\telephant\ndAtQR4dHPgE_0\tperson\ndA0WQ_RubaI_0\ttruck\ndBzXNQJRzls_0\tcat\ndCJFMDQBPb4_0\tboat\ndEIuy8LjAxc_0\tcar\ndElaQ10vYqg_1\tmotorcycle\ndHMFcv4UnmU_1\tbus\ndIP3FoGUXDQ_0\tperson\ndJYqTnxujb0_0\tperson\ndJnLznNE29w_0\ttrain\ndJnLznNE29w_1\ttrain\ndJ9qJezt6do_0\tcar\ndJ9qJezt6do_1\tcar\ndKmrUcJ9rJY_0\tperson\ndKmrUcJ9rJY_1\tperson\ndK3_HiQMH4o_0\tdog\ndMFsGGvkSVU_7\tairplane\ndMFsGGvkSVU_0\tairplane\ndMFsGGvkSVU_3\tairplane\ndMFsGGvkSVU_5\tairplane\ndMFsGGvkSVU_6\tairplane\ndNByeKh4gnA_0\tperson\ndNJ0q9QKzmY_0\tboat\ndNQYo7REyBU_0\tperson\ndOkb5WhLZGU_0\tperson\ndO0uu_fVUVI_0\tcar\ndO0uu_fVUVI_1\tcar\ndO4Jxsf987s_0\tbus\ndO-OrWse3dA_0\tcar\ndPCSntP-29E_0\tperson\ndPCSntP-29E_1\tperson\ndP7je2qU_QA_0\tdog\ndQIlnQxMIKo_0\ttrain\ndQIlnQxMIKo_4\ttrain\ndQIlnQxMIKo_5\ttrain\ndSAlTJeDlfQ_0\tperson\ndTvJyUKKshw_1\tperson\ndTzaYePj1gY_1\tcow\ndT5gXQAE-Qk_0\ttrain\ndT5gXQAE-Qk_2\ttrain\ndT5gXQAE-Qk_3\ttrain\ndUpoYuxpKPM_0\tperson\ndVTCCi__Z4Y_1\tperson\ndVte44AGoEE_0\tknife\ndW4RjdpTaJo_0\tperson\ndXYYgzjwm8w_0\tperson\ndXf-d5rkqdA_0\thorse\ndZv4xXpV6js_0\tboat\ndaeBFAZFQhU_0\tperson\ndbXKW9_L9sE_0\tbird\ndbwBzQuj1uA_0\tperson\ndc5oaWIkfwg_0\tcat\ndc-iaCwezlU_0\ttrain\ndeO0aj59T8o_0\tperson\ndfU8DcWDX8U_0\thorse\ndfU8DcWDX8U_4\thorse\ndgcW3TkPLmk_0\tboat\ndilCe3bivVk_0\tbus\ndi59PG3l25w_0\tbicycle\ndi59PG3l25w_1\tbicycle\ndjsh1r_W6ko_0\tperson\ndjt1lzJn7ak_2\tbird\ndlYwqfTRqoo_0\tperson\ndl-bg8WPGZs_0\tperson\ndmk3Cedj6g0_0\tperson\ndn006hdarCg_5\telephant\ndn006hdarCg_4\telephant\ndn006hdarCg_6\telephant\ndn006hdarCg_7\telephant\ndn006hdarCg_10\telephant\ndn7iBi1t7UI_0\tcow\ndn83BrM71W4_1\tboat\ndoOsOyiHItw_0\tperson\ndpqVH2tgA3E_0\tperson\ndqlk6F07Cxw_0\tmotorcycle\ndrohCN_vwC8_0\tmotorcycle\nds7JGeImFXo_0\thorse\ndtsLwaO2des_0\ttrain\ndt5TzAZByk0_0\tperson\nduROYI-AZlk_0\tperson\nduROYI-AZlk_1\tperson\ndutryxrzRjE_0\tumbrella\ndvDxOc2VWhc_0\tperson\ndvP5Dsp8EZA_2\tdog\ndvTIkEA7rOc_0\tperson\ndvvoKcQ5OOQ_3\tbear\ndvx9-0cVEYc_0\tperson\ndwQuyR9XFVM_0\tskateboard\ndxcnKYynkEY_1\tcow\ndxmxpyj3WVk_0\tknife\ndxmxpyj3WVk_3\tknife\ndyUVa3ZQVFg_0\thorse\ndzitRPrX410_0\tcow\ndzpcdtcQLfY_0\tmotorcycle\nDEnqBEwPykc_0\tperson\nDFCqlvY5OFY_1\tbus\nDFXptvzN9V8_3\tumbrella\nDFqSvoSh-qA_0\tcat\nDHEtea1hPBc_0\tperson\nDHwUCu0rrvc_0\tboat\nDJ_neeMWAuw_2\tdog\nDLsYDXqthiY_0\tskateboard\nDMBbH5HyOME_0\tperson\nDMn3ruRAObI_0\tperson\nDMyjVWCLbes_0\tperson\nDM6e1vEjYeM_0\tbicycle\nDM6e1vEjYeM_6\tbicycle\nDND0C3XD7mQ_0\thorse\nDOQilAKERwk_0\tumbrella\nDOmE1dA6CoQ_0\tperson\nDQJ4cPhVhFg_0\tairplane\nDT895n1nqqY_5\tbicycle\nDT895n1nqqY_4\tbicycle\nDUO7S4ma320_1\tcow\nDUO7S4ma320_0\tcow\nDU9GDCN25lI_0\tperson\nDV4bDUzPAIU_0\ttrain\nDWxidp6TWlg_0\tairplane\nDXhV8uXKo7w_0\tcow\nDXxF81ZJ_Jo_0\tcow\nDX1_rKFVugE_0\tdog\nDYBLqnRCo7g_0\tcat\nDZ2-5rYAUVk_0\ttrain\nDasqUqgdRv0_0\tdog\nDbNVb8C-Au8_0\tperson\nDbcdvAsVI48_0\tperson\nDcZSisTgSJs_0\tairplane\nDc9pWTcUNXY_5\tbear\nDeVQ3mr19Sw_2\tskateboard\nDeYmal3wAoE_2\tdog\nDeYmal3wAoE_0\tdog\nDfOuxNA9lro_1\tgiraffe\nDfXOTMc9IyM_1\tdog\nDfbPDcLTZEo_0\tairplane\nDf89T9IxDvc_0\tperson\nDf93ocrYlyY_0\tperson\nDgBuwqAbIkI_0\tskateboard\nDgBuwqAbIkI_1\tskateboard\nDhA0S7lPFVw_9\telephant\nDhA0S7lPFVw_0\telephant\nDhA0S7lPFVw_1\telephant\nDhA0S7lPFVw_2\telephant\nDhA0S7lPFVw_4\telephant\nDhA0S7lPFVw_5\telephant\nDhA0S7lPFVw_6\telephant\nDhA0S7lPFVw_7\telephant\nDhA0S7lPFVw_8\telephant\nDhEO4MuDBOc_0\tdog\nDhJAQCycHJs_0\telephant\nDhU-e-L13WM_0\tperson\nDhU-e-L13WM_1\tperson\nDhU-e-L13WM_2\tperson\nDiLGyNCykDE_0\tskateboard\nDjQx_qEnXko_0\tairplane\nDkMltyvC5l4_0\tperson\nDmPTbBo32qI_0\tbear\nDmzlB4KBLN4_0\tbird\nDm-XQKFA-BQ_0\ttruck\nDni4lPw5oH0_0\tperson\nDnzZd_9JlAA_0\tcat\nDoB18AvtSxQ_0\ttrain\nDofzMEokur0_0\tperson\nDonLBf92rMc_0\tdog\nDpp4k_BzZY8_1\tairplane\nDqcEAexhJ10_0\tcar\nDr6LfvQ_qKo_0\tcar\nDs_4eRyQDPo_2\tboat\nDuLk58XzeyA_0\ttrain\nDuv1XrdytdE_0\tcow\nDu4jlCLKZds_0\tperson\nDvjMMfcCq3U_0\tperson\nDvuTkGshMjA_2\tcow\nDvx0WVMuXVw_3\tboat\nDw4--8weqIA_0\tperson\nDx0LbiFgvPI_0\ttruck\nDyY1MPuGf5w_3\tdog\nDzUJVl_Pej0_0\tperson\nDzV-LWU5GoY_0\tperson\nD0b7xYmwl-M_0\tskateboard\nD0fhKhpAhJM_0\tzebra\nD0jRA5TKT-o_0\tperson\nD1vTDW7YDTk_0\tperson\nD2hRnCm0JtM_0\tperson\nD2oV8BC0iq8_0\tperson\nD21mLV716vI_0\tperson\nD32GncZb51Y_3\ttruck\nD4Jcg1u1Z-o_0\tperson\nD5maMxzZBe0_0\tperson\nD5m40zCfU8E_0\tperson\nD6E0xgBBquU_0\tperson\nD68oMT6tpc4_0\tperson\nD7H1UQbgDOw_0\tcow\nD9RGgV3fKds_0\tbird\nD_a5TQmLY-Y_1\tperson\nEBJ5jExrVqY_0\tcow\nEBLJ9v0QSrU_0\tcar\nEBUmagxsoV8_0\tperson\nEC8ftAGy2qA_2\tskateboard\nEDBDHaRqToc_0\tdog\nEEZKnzcn-v0_0\tcat\nEEfiTwozdM0_0\tcow\nEExHYyuWa-o_6\tbird\nEExHYyuWa-o_2\tbird\nEExHYyuWa-o_5\tbird\nEFRywDKULxc_1\ttrain\nEIl3WAxkNwc_0\ttrain\nEJJXpIiBEuw_0\tcow\nEJrj49l1N8k_0\tairplane\nELPjTNVxWfM_0\tperson\nEL-2TiSSQJg_0\tbear\nENPh0zyq2wo_0\tmotorcycle\nEOAADsR4IpM_0\tcow\nEP3xfG5_2i8_0\tcow\nEQN5hODdb6o_0\tskateboard\nEQ09ewMQn8Q_2\tbird\nEQ09ewMQn8Q_0\tbird\nEQ09ewMQn8Q_1\tbird\nEQ9vXT_IFYQ_7\tbird\nEQ9vXT_IFYQ_3\tbird\nESxRPsxVX-U_0\tcar\nETxRky6I39w_0\tperson\nEVD8F2ZOBbI_0\telephant\nEVYb5simSY0_0\tumbrella\nEWOehvvAvqU_0\tperson\nEXK2mcPIoBI_3\tskateboard\nEXK2mcPIoBI_0\tskateboard\nEXK2mcPIoBI_1\tskateboard\nEXK2mcPIoBI_2\tskateboard\nEXeKX_vOTvc_1\tcar\nEd-cfsA3BsU_0\thorse\nEeQOKiPASgY_0\tperson\nEfAYg1FMY-4_0\tbear\nEfAYg1FMY-4_5\tbear\nEfAYg1FMY-4_4\tbear\nEfSd4ucOXKs_0\ttruck\nEfbKwoMA6Kk_3\thorse\nEgpujPNldhs_0\ttrain\nEhQXwVQsngU_0\tboat\nEj0A86Eu1p8_0\tperson\nElHgkP_L8Eg_0\tairplane\nElTbW5itOAs_0\tcar\nElTbW5itOAs_3\tcar\nElTbW5itOAs_4\tcar\nElTbW5itOAs_7\tcar\nEmvEUer4CVc_0\tumbrella\nEnIkH0jrzaI_0\tskateboard\nEn6a3Ed7fvk_0\tperson\nEo5s8ykuzbU_0\tperson\nEpBZ77zmngM_0\thorse\nEpPw2JoHiTQ_0\tperson\nEqPK8xdf8hQ_0\tperson\nEqdBE21XAks_2\tumbrella\nEqdBE21XAks_3\tumbrella\nEqdBE21XAks_4\tumbrella\nEqz3xG4mWTs_0\tperson\nErN8-oTPkq0_1\tperson\nEr-RnWQrUac_0\tcat\nEsvPqOf-zEA_0\tperson\nEtIj5IUtn-g_0\tairplane\nEtIj5IUtn-g_1\tairplane\nEtIj5IUtn-g_2\tairplane\nEtMlgBveP58_0\tdog\nEtMlgBveP58_1\tdog\nEtkDITl8mEM_0\tperson\nEwlCKB77dYo_4\telephant\nEwlCKB77dYo_2\telephant\nEwlCKB77dYo_3\telephant\nEwqkMKutzBE_1\tknife\nEw-67eGgZAI_1\tmotorcycle\nExRpjMcFoBY_0\tdog\nEzRrohN-4ss_0\tskateboard\nEzZW0lM284U_0\tskateboard\nE2DbbyoqLg0_0\tperson\nE2DxfZPPu5Y_0\thorse\nE2DxfZPPu5Y_1\thorse\nE2DxfZPPu5Y_2\thorse\nE5erp1mhTzk_2\tbear\nE7CsRpWElOo_0\thorse\nE76rAl8oksk_0\tdog\nE9ARkaJcz2M_0\tperson\nE9J03vUxTZQ_0\ttruck\nE9w2-Y4d3MM_2\ttruck\nE9w2-Y4d3MM_0\ttruck\nE-ea5keAG3Y_0\tperson\nE-jpkZw_MdU_0\tmotorcycle\nE_cxlc0vrMg_0\thorse\nFBA18EyY2eI_2\tboat\nFBQpWJPC5pQ_0\tperson\nFBQpWJPC5pQ_1\tperson\nFBo954IqOlo_1\tbicycle\nFBo954IqOlo_5\tbicycle\nFBo954IqOlo_0\tbicycle\nFBo954IqOlo_2\tbicycle\nFBo954IqOlo_3\tbicycle\nFCICeCD4dKc_0\tperson\nFCypWBdHWb8_0\telephant\nFDKvBZH5LZE_0\thorse\nFD89Oq7BclA_0\tskateboard\nFETKMmV7P70_0\tmotorcycle\nFETKMmV7P70_1\tmotorcycle\nFEbVjS5-4ps_0\tperson\nFEsMY2y49d0_0\tperson\nFFuW_UWBVpU_0\ttrain\nFHRrYqTZExQ_0\tperson\nFID77dKUAU8_0\tcat\nFITKtv4tf7w_0\tcow\nFIi2mEV5dfQ_0\tskateboard\nFIi2mEV5dfQ_1\tskateboard\nFIvujc5oqIY_0\ttrain\nFJDKoEDLbNc_0\tairplane\nFLsLXPchOx0_0\tknife\nFMV_-mdKV8U_0\thorse\nFNNrfAuIQmo_1\thorse\nFNpd4DJ9LBA_0\thorse\nFPrcQJh9INg_0\tperson\nFQMXzPIoL14_2\tbird\nFQ-_p0lM-FM_1\telephant\nFRxSISi7wV4_0\tbicycle\nFSFW4QxV8-0_1\ttruck\nFUlVrltDAOk_0\tbird\nFWNxjmydNdU_0\tperson\nFYVNE1zYmyA_0\tperson\nFZrXRU5CxC8_0\tboat\nFaG9RreeG6M_6\tbicycle\nFaG9RreeG6M_2\tbicycle\nFbF-nKQx0WI_0\tperson\nFcP50mFdaYM_0\ttrain\nFdPApnQkBVQ_0\tbird\nFdPApnQkBVQ_1\tbird\nFdlDAmvsrR0_0\thorse\nFd1uYmMhzPE_0\thorse\nFedOlGadIYU_0\tbird\nFgd7fHxPhBs_0\ttruck\nFhQLl40AANQ_0\tbicycle\nFhvdS8wJkrI_5\tbicycle\nFhvdS8wJkrI_1\tbicycle\nFhvdS8wJkrI_2\tbicycle\nFhvdS8wJkrI_3\tbicycle\nFiCIZpT08B0_0\tcow\nFiD6UZuDr1M_0\tperson\nFjFwrTEJK1U_0\tperson\nFjmcQfLBpvQ_0\tperson\nFkSfwpb1Gss_0\tperson\nFkhru_XyPSU_4\tbicycle\nFkhru_XyPSU_1\tbicycle\nFlOaA91Qa2M_0\tcow\nFm7Z44jVp_A_1\tperson\nFm7Z44jVp_A_0\tperson\nFnIpAhpGTps_0\tperson\nFn0IWwSVPlk_0\tperson\nFotm2Ewrdr8_0\tdog\nFphk_JpP4JY_2\tbus\nFp2WKSG1qGw_0\tperson\nFrFv1rYtAws_0\ttrain\nFr298zXE9O8_0\tumbrella\nFshCFVUSBXY_0\tperson\nFsiLiUl9I10_1\tdog\nFs0LVU4qKSs_0\tskateboard\nFtEi5TPqRiA_0\tdog\nFuWY9thbtxw_0\tairplane\nFu9EsTmh8z0_0\tperson\nFvCCkxW3sv8_0\tperson\nFvDNYPmcXjQ_0\tbear\nFvDNYPmcXjQ_5\tbear\nFvDNYPmcXjQ_1\tbear\nFvDNYPmcXjQ_3\tbear\nFvHW0PyfZ_Q_1\tskateboard\nFvHW0PyfZ_Q_4\tskateboard\nFvHW0PyfZ_Q_5\tskateboard\nFv542o8y6aE_0\tperson\nFyEliJtlQIY_0\tperson\nF0PPPvVTNnE_3\tbear\nF3iJ9TqS-lE_1\tbear\nF3iJ9TqS-lE_0\tbear\nF39H1yTLerI_1\ttrain\nF4xCJHUMGsE_1\telephant\nF47hXNWC3K8_0\tcat\nF48wdm2YukQ_0\tbicycle\nF48wdm2YukQ_5\tbicycle\nF5Cc5wQJvhI_0\tperson\nF5Tm5BM0oaM_0\ttrain\nF5unbOiULNM_0\tmotorcycle\nF5unbOiULNM_1\tmotorcycle\nF9B5cLZb3T4_4\tbicycle\nF-OWsiGzRg0_0\tperson\nF_bZObIr47Y_0\tbicycle\nF_bZObIr47Y_1\tbicycle\nF_dg4Hi5ZU0_0\tcar\nF_xLwEhMPdY_0\tperson\nF_8rnxkAIgQ_0\tperson\nF_88eTR1pKU_0\ttrain\nGAMoEnodBZ8_1\tbicycle\nGAZx8145Hkk_1\tperson\nGAZx8145Hkk_0\tperson\nGCW28zxN9vk_0\tperson\nGDM2ctXPkmg_0\tperson\nGD5lsE86vOA_0\tcar\nGE2nS7Zbkrc_0\tairplane\nGE6JO6nrE2A_0\tperson\nGF9unI6hEMI_0\tairplane\nGGULYyv3_eY_0\telephant\nGGULYyv3_eY_1\telephant\nGGVYYc0KNWc_0\ttruck\nGHTZcjImEqk_0\tperson\nGIJMEjX04dI_0\tperson\nGIM6FHDMp0A_0\tperson\nGJTjlO1FJpo_3\tbear\nGJTjlO1FJpo_5\tbear\nGKyxtLTjXUU_1\tmotorcycle\nGLG6II1JYko_0\tbird\nGLpNrOwqNXc_0\tperson\nGLvmwdOjsHE_0\tcow\nGOEqT5_bhls_1\telephant\nGOVFUFYsINQ_2\telephant\nGOfP3fxCTvw_0\tperson\nGPPKPFCI-Kc_0\tperson\nGPSXltbv0f4_0\tmotorcycle\nGP5anr-xMfw_0\tperson\nGRluMAZzu8c_0\tairplane\nGSlWcX28sLk_0\tperson\nGUMAgiab8bg_0\tperson\nGUQmoD1aWhw_0\ttruck\nGUS7BLoHHPk_0\tairplane\nGVNmuLeQ6pA_1\tairplane\nGVNmuLeQ6pA_2\tairplane\nGWBEjzdOLjI_0\tgiraffe\nGWBEjzdOLjI_1\tgiraffe\nGWBEjzdOLjI_4\tgiraffe\nGXMBH6OujvQ_0\tperson\nGYM460lVV-k_0\thorse\nGYQO-VevHpI_0\tperson\nGYYxgR_VGFQ_0\tdog\nGZSlxtl9bj4_0\thorse\nGZSnngz0VX4_4\tdog\nGZhWdIsibfs_2\tbear\nGaierMnR4Xk_1\telephant\nGbe74-OWIo4_0\tperson\nGbwJhzDrFtI_0\tairplane\nGceLsS4AwH8_1\thorse\nGcjSF4Uyl74_0\tperson\nGdoD65Qn6kE_0\tcat\nGeOos0BFCSY_0\tbus\nGf_4plKc8tw_7\thorse\nGk8oy0G3dRU_0\tperson\nGlAH7-Rf8gc_1\ttruck\nGm9yMiay9Is_2\tskateboard\nGm9yMiay9Is_3\tskateboard\nGnTFmN4UNrI_0\tmotorcycle\nGn6ltyIKgcs_0\tperson\nGoXxeDaopwo_1\tperson\nGokzf7T4oVU_0\tcat\nGpE5cmO_2kQ_0\tskateboard\nGpE5cmO_2kQ_1\tskateboard\nGq7NQWGviWU_0\ttrain\nGsLJXtf6RC0_0\tperson\nGuMiw_OwxlM_0\tknife\nGubE6GTKTVc_0\tperson\nGubjV1tFrVA_1\tumbrella\nGvRQ4QZHPGc_8\tbicycle\nGvjv4DJftts_1\tcat\nGv5P6ORl-1M_0\tperson\nGwAGS0xPZDQ_0\tperson\nGwY5WqLjTcM_1\tcow\nGwY5WqLjTcM_0\tcow\nG0C4XEsjKGU_1\tbird\nG0i_9qeBwm8_0\tairplane\nG0sAxRZi6m4_0\tcar\nG1doEZFbv70_0\tairplane\nG1gPj-UK_gw_0\tcow\nG107tKapVcQ_0\tgiraffe\nG16fmAfdp9A_1\tzebra\nG16fmAfdp9A_2\tzebra\nG2gyuboBt-E_0\telephant\nG2gyuboBt-E_1\telephant\nG3jqix8WiYE_0\tperson\nG5jg_wMMXmU_0\tperson\nG6iN1OKj_eE_0\telephant\nd0G8DzwenzU_0\tperson\nd2ugQO5Z8M8_0\tairplane\nd3_3kfZ7rkc_0\tboat\nd3_3kfZ7rkc_2\tboat\nd4cTjVsUbIA_0\tperson\nd44bp_UDYOQ_0\tcow\nd6vOtyrW2eQ_0\tmotorcycle\nd6vOtyrW2eQ_1\tmotorcycle\nd6vTXY--7zw_6\ttruck\nd6xRfIz84Og_1\tcat\nd8GWgCsv0fo_0\tperson\nd8kSiPkTvek_1\tbus\nd9IW6kCjfmA_0\tknife\nd9IW6kCjfmA_1\tknife\nd9YRdtwcTOo_0\tmotorcycle\nd-CkujEJl24_0\tzebra\nd-6-T4gkBTk_1\tcow\nd_eu3LZxECY_0\tmotorcycle\nd_eu3LZxECY_1\tmotorcycle\neBIZSQg7pV8_0\tairplane\neBSijengaq4_0\tperson\neBVE2h6i3Do_0\tperson\neByIZzEh-DA_1\tdog\neByIZzEh-DA_2\tdog\neCzDpCe6xvc_0\thorse\neDUR6UTxYhk_0\tperson\neFXZRDC38No_0\tbird\neGVUtZXFcmY_1\tcat\neJn0yGDjytc_0\tcat\neKcJ2alScW8_0\tcow\neL4uMBEG4gE_0\tbus\neMsvM8G2Z0s_0\ttruck\neM0KTbh6EZE_0\tperson\neN0JRkzxVPw_0\telephant\neOeuY4ZbTt8_0\tbird\nePiG-qPeJ6c_1\telephant\nePiG-qPeJ6c_3\telephant\neQEBmp37ZMQ_0\tperson\neQ6zyKVuU2s_0\tperson\neROdacH1GEk_1\thorse\neRsf1_omRf4_2\telephant\neRsf1_omRf4_5\telephant\neRsf1_omRf4_6\telephant\neRsf1_omRf4_9\telephant\neRsf1_omRf4_12\telephant\neRsf1_omRf4_13\telephant\neRsf1_omRf4_14\telephant\neRsf1_omRf4_15\telephant\neTfXd1DQ6mc_0\tdog\neU_B2dXyBkI_0\telephant\neVAEQdogSqk_1\tperson\neVLFX7RZOJM_0\tperson\neVnnuxmvpM8_0\tperson\neVnnuxmvpM8_1\tperson\neVnnuxmvpM8_2\tperson\neWU6Kk9K6lI_0\tairplane\neWZHute7e6Q_0\tperson\neXAJwsjltWs_1\tairplane\neXAJwsjltWs_7\tairplane\neXvofXrEuU8_0\tperson\neZFqrD8MAKk_0\thorse\neZFqrD8MAKk_1\thorse\neZc2BPYt4rU_0\tperson\neZ9Qy0zfLb8_1\tdog\neaoH4_TdTt8_0\tperson\nea2xP5nm53M_2\tknife\nea_yr_40TRY_0\tairplane\nebc-oEY_eDM_0\tcow\necksf6PLvhw_1\tdog\nedx1TW6jRFg_0\tperson\nee6Zcz8Pyfk_1\tcow\nee6Zcz8Pyfk_2\tcow\nefczZtAK28w_1\tdog\negbQbEuLDlE_0\tcat\negfoTu4gtZo_0\tbicycle\negg1WCEyuTw_0\tperson\negmCEe7OgiE_0\tperson\nehxHGWKtaAg_0\tperson\neh9YpbAcMZE_0\tperson\nejRwmx3kUI8_0\tperson\nej0xIcEXWiU_0\thorse\nekfKlK5w3Lg_0\tperson\nekwoV0dpRwI_0\tperson\nekwoV0dpRwI_1\tperson\nek7bnCHGZq0_0\tskateboard\nelB6RfDJA6M_1\tdog\neljiGrMEYiQ_0\tperson\neljiGrMEYiQ_1\tperson\nemISA6YzHZ4_0\tbus\nemISA6YzHZ4_2\tbus\neoIk6xjgQ-4_3\tbicycle\neomNxgG_ivE_1\tumbrella\neomNxgG_ivE_2\tumbrella\neomNxgG_ivE_3\tumbrella\ner7oQRfciJ8_1\tperson\neuESct6MMNg_0\tperson\neuU-dtl6yyA_0\tperson\nevyGgkwoEpU_1\thorse\nex_t3nR28rg_0\tbird\nex_t3nR28rg_1\tbird\nex_t3nR28rg_2\tbird\nezrZuVfbOPs_0\tperson\nezyFfdIkCCQ_0\tcow\nez5RcUDpMoI_0\tbear\nez5RcUDpMoI_4\tbear\ne0cc8KmRgDE_0\tperson\ne0cc8KmRgDE_1\tperson\ne1VJlGQGYTA_0\tumbrella\ne37RxtyP9nk_2\tperson\ne37RxtyP9nk_1\tperson\ne5Q4wIVJR40_0\tperson\ne5a3Z_wlpUU_0\tperson\ne6FwS_DOE-U_1\thorse\ne6FwS_DOE-U_0\thorse\ne6xVrcpMa9Y_0\tcat\ne8Bc9zwTFnE_0\tperson\ne9G1bOd8GlA_0\tcar\ne9QeTOo4XBE_0\tperson\nfBYtizIh0wc_0\tcow\nfCVsRanBID8_0\tperson\nfDWKYttA3fM_1\tumbrella\nfEA-xCaKqfI_0\ttrain\nfEWxV64teMY_0\tdog\nfEpH1AFdSqs_0\tperson\nfFGF5gVW6UU_2\tbicycle\nfFGF5gVW6UU_0\tbicycle\nfFGF5gVW6UU_1\tbicycle\nfFIVNddMFuc_0\tperson\nfFT1LpdsEhQ_1\tcow\nfFmghP5NQVA_1\thorse\nfFw23dFiBDs_0\tperson\nfGJKT5ttUQw_0\tperson\nfHFCYOUh3vU_0\ttruck\nfJJuwfeoaWI_0\tcat\nfJnC2nKYQVQ_0\tmotorcycle\nfMl60_fkMfc_0\tknife\nfMu0OmctSTI_1\tairplane\nfNTptXtpsoo_0\tcow\nfOyaDea7Al4_0\tperson\nfPA_KgXi5v8_0\tbird\nfPA_KgXi5v8_2\tbird\nfP7EpJzJt0A_0\thorse\nfQRAi5pN1Fg_0\tbicycle\nfQRAi5pN1Fg_1\tbicycle\nfRB4jD1Uecw_0\tperson\nfRSu9-lyuaU_0\ttruck\nfRoEX_9tHtM_0\tperson\nfSB_aY8HhJI_0\tperson\nfSFjxB1XU2E_0\tperson\nfTd-8VbsXus_1\tairplane\nfUNAhHKf_OA_0\tcow\nfUva5AKNiPE_0\tperson\nfUva5AKNiPE_1\tperson\nfU8NxbaMKu0_0\tbus\nfWD8TEXWtek_0\tbear\nfYBeigFqN7Q_0\ttrain\nfYBeigFqN7Q_1\ttrain\nfYWFh5BSEyg_1\tcow\nfYup3iPmtHc_0\tperson\nfbAOGfYPur0_0\tperson\nfcFwbcMNdUo_0\tbird\nfcFwbcMNdUo_1\tbird\nfdMa18fwj14_0\tperson\nfdQFJz9IOso_0\tumbrella\nfd73v3-Qjqk_0\tknife\nfeMxoQY38A8_0\tperson\nfeMxoQY38A8_1\tperson\nfeNEI7bD5HI_0\tbus\nfeO8Ip4MOn4_0\tcat\nffQKiGKTDaA_0\tbird\nffr6_q8liAc_0\tperson\nffr6_q8liAc_1\thorse\nfhVVVY5XhDI_1\tknife\nfhWE0XDoxjM_0\tairplane\nfh9tibERtYI_0\tperson\nfiKs6mdtsmM_0\tcow\nfiVKh-Q-iY0_0\tmotorcycle\nfkGWb9_HVsA_0\telephant\nfk85Ace_-LM_0\tdog\nfmE9seWSDfs_0\tumbrella\nfmosIu7__Wc_1\tperson\nfmrqs2YvNCQ_0\tperson\nfm4syrPib5M_0\tperson\nfnKNDlQq-JY_0\tperson\nfoWPkPNDqyU_0\tbird\nfoWPkPNDqyU_1\tbird\nfojim3ViD7Y_0\tperson\nfpI0N9Lv5V8_0\thorse\nfpv4fALQXpQ_0\tperson\nfqWa-DUPAGw_0\tperson\nG8IUU0gjlEI_3\tboat\nG88QbXTQ6LI_0\tskateboard\nG9Sdd3czaTk_0\tdog\nG-kF2D98oms_1\telephant\nG-2yXvawYec_0\tperson\nG-5iXA4ERtM_0\ttrain\nG__uy4I0Kzw_0\tperson\nHAOmPeNNjNc_0\tbus\nHBUeO1WOFFk_0\tmotorcycle\nHBbWtsju37w_0\tboat\nHBw-J_3WlCY_0\tcat\nHF8ZrMgnyo8_0\tdog\nHJYmTdBHVvU_1\telephant\nHJYmTdBHVvU_2\telephant\nHJ08tJU-IIA_0\tdog\nHKNkm0t39B4_0\tcow\nHKRKZksEGro_0\tperson\nHMfFCe-og9A_1\tbus\nHMt7kgP0MC0_0\tperson\nHM8XKdebDvI_0\tboat\nHNBF7AppAQQ_0\tdog\nHNheLARZ64w_0\tbicycle\nHNheLARZ64w_2\tbicycle\nHN-3LaZVuCs_0\tcar\nHONOO3gmDec_1\tperson\nHP6UlpPulc8_0\tbicycle\nHQ3nHqG24O0_1\tcow\nHRF40e3Tbvw_0\tbicycle\nHRF40e3Tbvw_2\tbicycle\nHRRhkyr7U5E_2\ttrain\nHRcVM9md3Xg_0\tcow\nHTrUPWOXlvI_1\tperson\nHTrUPWOXlvI_0\tperson\nHULLjmpSRUI_0\tcow\nHUssZ9c2Qvs_0\ttruck\nHW8Z7IdfuIg_0\tperson\nHYCFQjnuXBI_0\ttruck\nHY4XBjJWJYg_0\ttruck\nHY9NQ2zNtGc_0\tcat\nHZVvEd_Tg_g_0\tperson\nHZngEEoQWDA_0\tperson\nHaMmo5SdpUo_0\tperson\nHaVnQ_P5HdQ_0\ttrain\nHacYwonTy6w_1\tskateboard\nHbWinZWeK2U_1\tdog\nHbhmAMorGaw_0\tperson\nHeOWa0NNB0g_0\tperson\nHg0fRYqZQ3U_0\tperson\nHi384VDSwXw_1\tbird\nHjo95Vo38qU_0\tperson\nHksncw-BlKU_0\tgiraffe\nHlWb7xQHFKI_0\tdog\nHmH4hitBoc4_0\tperson\nHoSTe-9VUJA_0\tcow\nHpdyNV4GqbM_0\tperson\nHpdyNV4GqbM_1\tperson\nHsGPGwN7vSk_0\tperson\nHugie4Q6leo_0\tbicycle\nHvKC4fLwUYw_1\tperson\nHvKC4fLwUYw_0\tperson\nHvOisoEmjKg_1\tairplane\nHvU4Jz4Gd1k_0\tcow\nHv_d6KPoSgA_0\tskateboard\nHwZUDp7yxxk_0\tperson\nHxPskaUPSXg_0\tcow\nHyHQRrpWhpk_0\tboat\nHylH7-rD0wA_0\tbird\nHzEm2GlGzhc_1\ttruck\nHzTD_opfrqI_0\tcar\nH0QTCKxJmLY_1\ttrain\nH1Oxjm0NqCg_0\tperson\nH2GwgpAKbzY_0\tdog\nH3HrWs1HITE_0\tcow\nH3S_DkPBWtw_0\telephant\nH3S_DkPBWtw_7\telephant\nH3S_DkPBWtw_1\telephant\nH3S_DkPBWtw_2\telephant\nH3S_DkPBWtw_3\telephant\nH3S_DkPBWtw_4\telephant\nH3S_DkPBWtw_5\telephant\nH3S_DkPBWtw_6\telephant\nH3XF5rAtuJA_2\tperson\nH3XF5rAtuJA_0\tperson\nH3a-C6RRYyo_0\tperson\nH5mmSHRHeOA_0\tperson\nH6TuJxifX64_0\ttrain\nH6w4nf5H4U4_0\tbird\nH6y9C6Ndy2A_0\tbird\nH6y9C6Ndy2A_1\tbird\nH7XZ5716KnI_0\tperson\nH7z05uOIPRM_1\ttrain\nH92s5sHsotk_0\tairplane\nH-4EZAh3ZiE_0\tbus\nIA1FFP5WN-4_0\tbear\nIA1FFP5WN-4_2\tbear\nICj693xC5DY_2\tairplane\nICj693xC5DY_0\tairplane\nICj693xC5DY_1\tairplane\nICxHfkE0XCo_0\tperson\nIDx8_34ETTQ_0\tperson\nIEyymbAxp24_0\tdog\nIFS0QSfnbaM_4\tknife\nIFS3ILjlHkY_2\ttruck\nIF_auR-0fxM_0\tknife\nIGv9j-RQi0k_0\tdog\nIG0UmL5bvEo_0\tcat\nIHFF7DOpF4Q_0\tmotorcycle\nIHmYV5ymU08_0\tcow\nIKEUMXjIyTQ_0\tcar\nILZvGBKYYrE_4\tbus\nILZvGBKYYrE_0\tbus\nILZvGBKYYrE_1\tbus\nILZvGBKYYrE_3\tbus\nIMTbwAOJNIc_1\ttrain\nIMh4AHUZ2HQ_0\tperson\nIM4EBlgTTOg_0\tbus\nINlrdk7hgl4_0\tknife\nIOQt3fFTSVc_0\thorse\nIO7-lFsWvl0_0\tbicycle\nIO7-lFsWvl0_2\tbicycle\nIPEJs-vLCV4_0\ttruck\nIPEJs-vLCV4_1\ttruck\nIRpgjSP4pLI_0\tperson\nIUJGm3Iu0Bs_1\tbicycle\nIUgsoj74aWQ_0\tperson\nIVlnjlVA5rc_1\tbicycle\nIXP1ML1tdZQ_0\tbus\nIXRxjnkOJeo_1\tmotorcycle\nIXenlPUsqrc_0\tperson\nIZvOv7tCr00_1\ttrain\nIcRjjKSX5uc_1\tperson\nIcRjjKSX5uc_0\tperson\nIcnle27cmMM_0\tbicycle\nIdVZJW1HC9E_0\tairplane\nIdVkEz2IF7w_0\tcar\nIeb9oZ9eB8I_0\tdog\nIfWSlkR8DbU_0\thorse\nIf1zPOV0idg_0\thorse\nIf1zPOV0idg_1\thorse\nIh2gG0269H8_0\tbus\nIjQXXK4uYVY_0\tdog\nIlMHPX2VcGw_0\telephant\nIluTkrIqsVg_1\telephant\nIluTkrIqsVg_3\telephant\nIluTkrIqsVg_6\telephant\nIo7bj1jNpPU_0\tcar\nIpjQJZ42zyQ_0\telephant\nIpjQJZ42zyQ_1\telephant\nIpjQJZ42zyQ_2\telephant\nIpjQJZ42zyQ_3\telephant\nIpwI5VTWHLc_0\thorse\nIpwI5VTWHLc_2\thorse\nIqy4PPX-Tlc_0\tperson\nIsHTpd2cnvI_0\ttrain\nIthz7KSWCxU_0\tbus\nIudK7ch_IIg_1\tairplane\nIvRDw_IA0_s_0\tcow\nIwve-3lTmMk_0\tperson\nIyLshk4jlyo_0\tcat\nIygCvE4_amo_2\tbird\nIygCvE4_amo_3\tbird\nIyjFl1Hhk3Q_0\tperson\nIz4XK2zNDUU_0\tperson\nI1wuUCQbXLc_0\tumbrella\nI2DkTg8wPnI_0\tperson\nI2WoCDTXONA_0\tperson\nI2WoCDTXONA_1\tperson\nI2lh579NY2s_0\tbird\nI45pfwCBczo_0\tperson\nI6ESaCg4z_8_0\tperson\nI6TvXxQTtZQ_1\thorse\nI6TvXxQTtZQ_0\thorse\nI6TvXxQTtZQ_2\thorse\nI8OfOokt6YU_0\tperson\nI8XhyDacLtU_1\tbird\nI8m0QjcQlSo_3\tbicycle\nI8m0QjcQlSo_4\tbicycle\nI9ivT_P5G18_0\tperson\nI_k5qXHxb0Y_2\tknife\nI_k5qXHxb0Y_0\tknife\nJBkwLPruJe0_0\tperson\nJBlDwXJFbQc_1\tumbrella\nJDZiLsus2es_1\tskateboard\nJDvfPX9cFDg_0\tdog\nJEpTSJRO3co_0\tperson\nJG2tVzjxhao_0\tbird\nfsAEg5w8xTg_0\tperson\nfsCwAYYI4js_0\tperson\nfsKTO8ksQ90_0\tperson\nftMQOwvHDF8_1\tcar\nftns38_MSTM_0\tcow\nfvxc7ruCiYk_0\tcow\nfvxc7ruCiYk_3\tcow\nfv8aFklHmko_0\tskateboard\nfwEvL-luHlw_0\tairplane\nfwEvL-luHlw_1\tairplane\nfwt8LzF8Mic_0\tperson\nfyZImQFj_Y8_0\tcow\nfycK7kJWV1I_0\tumbrella\nfzr3kw3BDDo_1\tairplane\nfz6ONSUlvNY_0\tperson\nf0i5E4DOFc8_0\tbus\nf2SctRCBZQc_0\tcar\nf3Z5d9I7rIw_0\tknife\nf4fxmsxPzrg_2\telephant\nf5LEkr56Efg_0\tperson\nf5Uz-TuMQ0Y_0\thorse\nf5ZpGBYuJ7o_0\tboat\nf5kAHBPObsw_1\tcow\nf6fZjMRJgoM_0\thorse\nf63aow5BRAI_5\tbus\nf65rTlprptk_0\thorse\nf7yNS6ltUFk_0\tperson\nf8H7Ns8cw-c_1\ttrain\nf8rXEKktSCg_0\telephant\nf_VqZJyJ4GM_0\tmotorcycle\ngAHcWn06srk_0\tperson\ngB0-eGpMj50_0\tperson\ngB2asNpe3zY_0\tperson\ngB7jSQgkcMM_1\thorse\ngCDC8R7IB7k_0\tperson\ngCwe-o1nqBc_0\tmotorcycle\ngCwe-o1nqBc_1\tmotorcycle\ngC9z8IzG83s_2\tbicycle\ngDEk1TWuZug_2\tperson\ngDG5Xr2p2y8_0\telephant\ngDHnBnqogX0_1\tairplane\ngDHnBnqogX0_0\tairplane\ngDbZj1O36VU_0\tairplane\ngDihz5aZLyA_0\tbus\ngDihz5aZLyA_2\tbus\ngEkiX2yFQm0_0\tcat\ngEnLlmMhxfE_0\tperson\ngGNmKI2M8i4_0\tperson\ngGd6hYCKdEs_0\tbird\ngHMCfvdZzMM_1\tperson\ngHYzGPx8f_4_0\tzebra\ngHYzGPx8f_4_1\tzebra\ngIx12Q8A3p8_1\tperson\ngJwtAwSqEow_0\ttrain\ngKAPbj9esXI_0\tskateboard\ngLqb3YuVttM_0\tumbrella\ngMRigFNGMeY_0\tperson\ngNfQargrILo_1\tcar\ngOFgWsujZaI_0\tcat\ngOWc7VBEwMo_0\tcar\ngPEMf91dil8_1\thorse\ngPSB23kv5Uc_0\tperson\ngPhL52Mj1_A_1\tmotorcycle\ngQ1qmNZzaTo_0\tboat\ngRDFlfzM_iI_4\telephant\ngRDFlfzM_iI_6\telephant\ngRDFlfzM_iI_1\telephant\ngRDFlfzM_iI_3\telephant\ngRMJhsEuiAc_0\tmotorcycle\ngRMJhsEuiAc_1\tmotorcycle\ngRMJhsEuiAc_6\tmotorcycle\ngR29_U82QeE_1\thorse\ngSJbrV0vy8M_0\tperson\ngSz16yrF9yA_0\tperson\ngT0yjYUmf90_0\tcow\ngUGlSiBvfOs_1\tmotorcycle\ngU8s5nxyBDk_0\tairplane\ngU8s5nxyBDk_1\tairplane\ngV3CcNeVZcY_0\telephant\ngV3CcNeVZcY_1\telephant\ngWkTSRUqxoo_0\tperson\ngW6HdCsty0U_0\tknife\ngYLohMps12s_0\telephant\ngYLohMps12s_3\telephant\ngYLohMps12s_4\telephant\ngYLohMps12s_1\telephant\ngYLohMps12s_2\telephant\ngaKGYmLxJVU_3\tbicycle\ngagJEV--3Pw_0\tperson\ngdAVi92ZfSc_0\thorse\ngdx96NpU6BY_6\ttrain\ngd4UfPes3YI_0\tcow\ngeEXytMwfq0_0\tperson\ngePAI8wYSdw_0\tperson\ngfTVuceAzNs_0\telephant\ngg8YzsSulrQ_0\ttruck\nghciPMerSc0_0\ttruck\ngiWDg00GIDw_1\tskateboard\ngig9B4ecK3w_0\tperson\ngiy_SOmkBY8_0\tumbrella\ngjnyg97XwnA_0\tperson\ngk-cycr3xjo_0\tperson\ngmVDmxVI7n0_0\telephant\ngpV4Qlx6YrA_6\tbus\ngqLSqmK3m74_0\tmotorcycle\ngqZYY0m_TuM_0\tmotorcycle\ngsrvWcnpNP4_1\tmotorcycle\ngsrvWcnpNP4_0\tmotorcycle\ngtVr7urU8c8_0\tperson\nguDQk0hVgU0_0\tbird\nguFTeFvjr9Y_0\tbird\ngu3DTnVjNQM_0\tknife\ngwXwH2Cs3BY_0\tknife\ngxHGnBrpPZs_1\tairplane\ngxHGnBrpPZs_2\tairplane\ngxKuLTUNhp4_0\thorse\ngx7PFNpHd_A_0\tperson\ngyaP7qiRxfY_0\tcow\ng1OZWFLSspQ_0\tmotorcycle\ng1rQZNA6yyo_6\tcow\ng1rQZNA6yyo_0\tcow\ng1rQZNA6yyo_1\tcow\ng1rQZNA6yyo_2\tcow\ng1rQZNA6yyo_3\tcow\ng1rQZNA6yyo_4\tcow\ng1rQZNA6yyo_5\tcow\ng3HXJNMlAsM_0\tairplane\ng3oqxu4AhBw_0\tperson\ng3swsx-acTI_1\tdog\ng3swsx-acTI_0\tdog\ng3vbaqnLXn8_0\tcow\ng4bayrAEhIU_0\tumbrella\ng5rUJOptHXQ_0\thorse\ng5ty_7So5Dw_0\tcow\ng51pzrSssl4_0\tperson\ng8M5d--ghFM_0\tperson\ng8vKB3IU1JY_0\thorse\ng8wHQVpij-I_0\tperson\ng9eN0FHn4-E_0\tdog\ng-EAZ6gVcic_0\tmotorcycle\ng-pVcRyPQG8_0\tcow\ng-yHAyCA2KI_1\thorse\ng_C47ek7TmI_1\tknife\ng_C47ek7TmI_4\tknife\ng_C47ek7TmI_5\tknife\ng_QHWoQgmFQ_0\tperson\ng_QHWoQgmFQ_1\tperson\ng_Tk-SESaYI_0\tperson\nhBHt6mnfUeo_0\tbus\nhBMZHx3_cTs_0\ttrain\nhC69bGTvLBo_0\tskateboard\nhD3Bn03GXNQ_1\tdog\nhFNAxcRpGBM_0\tskateboard\nhFSygfNIY_Y_0\tskateboard\nhFex_TS-aUo_0\tperson\nhGnscWmehTI_0\tcar\nhG9efPyerw4_1\thorse\nhHdBCtElIQg_0\tboat\nhHlqyr11RiI_0\tperson\nhIWM6v4zcSM_0\telephant\nhKoGkl1wyCU_0\tperson\nhON0t9Dzay4_0\tmotorcycle\nhP1ViN_WadY_0\tcow\nhR-utsUhYSg_0\tperson\nhSAUbt6-Yjc_0\tknife\nhSAUbt6-Yjc_1\tknife\nhSeHymINF98_1\tbus\nhTaEY4YCVqM_0\tairplane\nhUjzfhyM30Q_0\tairplane\nhUjzfhyM30Q_4\tairplane\nhUxguQsLvcs_4\tknife\nhUxguQsLvcs_5\tknife\nhUyAVmRxAzM_0\tperson\nhU_dAA1A0X0_0\tperson\nhU_9cs_qw1w_0\tperson\nhVjyHhYH6Ss_1\tairplane\nhVjyHhYH6Ss_2\tairplane\nhVowH5-Ss4I_0\ttrain\nhV4tEsm-F5s_0\tairplane\nhZdxBk4cjmg_0\tbus\nhaiW7jpl3wY_0\tperson\nhcJBaxNIvE4_1\tperson\nhcJBaxNIvE4_0\tperson\nhcV4RZPeRbo_0\tairplane\nhcuLD1cn9GA_0\tperson\nhdUc4uUYh0E_0\tboat\nhfWfYFG2O94_0\tperson\nhgagtwzScGQ_0\tperson\nhhFOwnYOLl0_0\tgiraffe\nhhLyE41H8nE_0\tmotorcycle\nhhNlg3Ws9Dc_0\tperson\nhhyVc2wsXVk_0\thorse\nhhyVc2wsXVk_1\thorse\nhh432zDMgPo_0\ttrain\nhiKbm0rqEb4_3\tskateboard\nhiN_kULL84o_5\tumbrella\nhiN_kULL84o_4\tumbrella\nhkEV_E85Jzw_0\tcar\nhkSv_YxmN7w_0\tperson\nhlZDJrpJzPU_0\tperson\nhljwk2WbXGY_0\tperson\nhmSeUlyLLak_0\ttrain\nhnZvUHrA3CY_0\tperson\nho6sg-47RD0_0\tairplane\nhqNhKf3a69Q_2\ttruck\nhqYyvTeOvas_0\tbear\nhqaNlwG0DNU_1\tperson\nhqrmbVw_EwQ_0\tcat\nJIuyqZCU5zY_0\tcow\nJKiG_pk4lSE_0\tperson\nJKmvEldBeEQ_0\tcow\nJKsodtdUW-o_0\tboat\nJMLFZcONQAs_2\tskateboard\nJMLFZcONQAs_5\tskateboard\nJMMci7hryUQ_0\tmotorcycle\nJMMci7hryUQ_1\tmotorcycle\nJMMci7hryUQ_2\tmotorcycle\nJNUhCGqPlFg_0\tbicycle\nJPHPd13gaL8_0\tcar\nJQrDalAaP4w_0\tperson\nJQrDalAaP4w_1\tperson\nJQz6IarIr4E_1\tperson\nJRAVv2LgiGo_0\tskateboard\nJRUvqZtBMrM_1\tknife\nJR0QfXOOmaA_0\tperson\nJSml3dguiUk_0\tmotorcycle\nJTFT_iJGFUE_0\tperson\nJUdUxjC2LRE_0\tbus\nJWU6vdEt_OU_0\tperson\nJWgjcmMh62o_0\ttrain\nJWgjcmMh62o_3\ttrain\nJW0-hEA4v9A_0\tperson\nJXIh3fJ4Jv0_0\tperson\nJX8ODdMUi7g_0\tbird\nJZC15tOV-eg_0\thorse\nJZMOzYwcTA0_0\tperson\nJasH0KtinHY_0\tairplane\nJasH0KtinHY_3\tairplane\nJa5jdE_8qio_0\tperson\nJbyTZ-esDXM_0\ttruck\nJbyTZ-esDXM_1\ttruck\nJb93SMKg5-k_0\tperson\nJcVOyLTTvKA_0\tperson\nJc18AfXzLZU_0\tperson\nJc18AfXzLZU_1\tperson\nJd7uOTcPvY8_1\tcar\nJeWRfjjRMQk_0\tperson\nJerVzlWZwac_0\tbus\nJe-lnjK_8fk_0\tperson\nJfjkltN0lZc_2\thorse\nJfobA6aKaas_0\tdog\nJftQEHHdO5w_0\ttruck\nJgaE8KDwg7k_1\tbird\nJgaE8KDwg7k_2\tbird\nJgc2PQ8Swbo_0\tcow\nJgkj9pj3-tc_1\thorse\nJhdyYrqxn_g_0\tmotorcycle\nJh7o2iR-lRg_0\tperson\nJijsSnHthXE_0\ttrain\nJio_xBodQxY_0\tperson\nJjQ8bdq_eXk_0\tperson\nJjtkwX4npyw_0\tperson\nJlG7Wzz4uU8_0\tcar\nJlG7Wzz4uU8_2\tcar\nJmkUuTj-Nks_0\tumbrella\nJmtuhGXlqmY_1\tairplane\nJnNJksYeB18_0\tcar\nJoKod4XDE6o_3\tbird\nJoKod4XDE6o_0\tbird\nJoKod4XDE6o_2\tbird\nJp6_g7oF2lQ_0\tcow\nJqEprl56N4I_0\tskateboard\nJrIoaRmcs6o_0\tcow\nJrNq6Z5YSoc_0\tperson\nJrUHo8zVwpo_0\tbus\nJsjz8hiE_iU_0\tperson\nJt7Ojtx0TMs_1\tcar\nJt7Ojtx0TMs_3\tcar\nJwBYrXUHdZ8_1\thorse\nJxTKws5Dx_8_0\tcat\nJxjXZYfiem4_0\tdog\nJx9mLWFxpnc_0\tdog\nJyYBZBogBvs_1\tboat\nJyduNnkZOiY_0\tperson\nJyrP5u2MuSo_0\tmotorcycle\nJzcc0pjgA5c_0\tperson\nJzjRC1xYwy8_0\tdog\nJ02u46SlewE_0\tperson\nJ1GtEDNcsHQ_1\thorse\nJ2JOoOxaJdw_0\tperson\nJ2bB5BgR-5Q_0\tbus\nJ2hdK_vuyyw_0\tmotorcycle\nJ2ycUTr0lJQ_0\tcat\nJ4T_QA6J7kw_0\tboat\nJ4T_QA6J7kw_1\tboat\nJ4T_QA6J7kw_2\tboat\nJ40neYxbEYA_0\tskateboard\nJ5-Z9tNISPw_0\tcar\nJ6klPNMhLKc_0\tcow\nJ7I-QXddTIk_0\tperson\nJ7hnNI0jtws_0\tperson\nJ8ITxacusCI_1\tperson\nJ8ITxacusCI_0\tperson\nJ9-8Qe3BWoI_0\tbicycle\nKARqX_agLpU_0\tknife\nKAgU6SrQTlQ_0\tumbrella\nKAgU6SrQTlQ_1\tumbrella\nKArVkjxSGpM_0\tperson\nKBCIbwknDew_1\tbicycle\nKCeuwWEv3ZU_0\tperson\nKCi4f4Hp6oA_0\tairplane\nKC5ECqMiTLU_0\tskateboard\nKD84e88aqHU_0\tperson\nKD84e88aqHU_1\tperson\nKEpHRYH8r28_0\tgiraffe\nKGdIJzBVugY_0\ttruck\nKHqFOBeHCwU_0\tboat\nKIOilXstQLY_0\tperson\nKIOilXstQLY_1\tperson\nKJ2kEj3C5HU_0\tairplane\nKKWUDcCI6yU_0\tcat\nKML2msVr5mE_2\telephant\nKMNAnjpGqv4_2\ttruck\nKNIVWRv3awA_0\ttruck\nKOmUta2sIgk_0\tperson\nKOsm1GUs46s_0\tmotorcycle\nKOza4PGcE0M_1\tbear\nKPLDdfk8hIg_0\ttrain\nKPLDdfk8hIg_1\ttrain\nKP7RzxyTTAU_1\tairplane\nKRKxqkfpetI_0\tperson\nKRNWPLnvZz4_0\tperson\nKR7Ah1hw5gA_0\tperson\nKS8S3STq2W4_0\tbird\nKS8S3STq2W4_1\tbird\nKTkhMglNlCE_0\tperson\nKTpwnsz498Q_4\thorse\nKTpwnsz498Q_6\thorse\nKWYD2iyUmgk_0\thorse\nKXIJLUzQi5Q_0\tperson\nKXMlBQiVeEg_0\ttrain\nKXPGShfFlU8_0\tperson\nKX9MjIikBU8_3\tbicycle\nKYc-vKtN0DI_0\tperson\nKY4mXNDM8I0_6\telephant\nKZdOpoUJ3Nk_0\tperson\nKcg7gY3WD7M_0\tperson\nKcg7gY3WD7M_1\tperson\nKeJWqAV0EgA_4\tumbrella\nKeJWqAV0EgA_6\tumbrella\nKedkADy9tBc_2\tknife\nKedkADy9tBc_4\tknife\nKgDguip9mZM_1\thorse\nKgDguip9mZM_2\thorse\nKg0XH4mez1A_0\tcow\nKho8jpdZzTs_0\tskateboard\nKjd7D98QULc_0\tairplane\nKkdLE8EkzQ8_0\tcat\nKkw7ZPCEz5w_0\tperson\nKk-2ajLfeh8_0\tcat\nKk_LtYOgQXA_0\tboat\nKmLYFD7xykY_1\tcar\nKmwqg1uRPRE_0\tperson\nKnQuff1ffzM_0\tskateboard\nKoRqIzHBQks_0\ttrain\nKoq5YYiN1tc_0\ttrain\nKpHpGcL_jEc_4\tbird\nKpHpGcL_jEc_3\tbird\nKpfTioA2qKw_4\telephant\nKpfTioA2qKw_5\telephant\nKpfTioA2qKw_0\telephant\nKpfTioA2qKw_1\telephant\nKpfTioA2qKw_2\telephant\nKpfTioA2qKw_3\telephant\nKppX5i4QRZ0_0\tumbrella\nKqsBJAhU_Dc_0\tcat\nKrRVwTPG26w_3\tdog\nKsE43Lli_3U_2\thorse\nKsE43Lli_3U_3\thorse\nKskL-dN784o_0\tairplane\nKtfQRtfJQ8s_2\tskateboard\nKxDh7a8_AmU_0\tperson\nKy4ahEexJUc_0\tairplane\nKzDLvBPcQew_2\tknife\nKzMFSHS4xVs_0\tbird\nKzOxVUsduDY_3\tknife\nKzt2eSUr1rY_0\tdog\nK0IvSLIQbgQ_0\tbird\nK0SktTNMXQU_0\tmotorcycle\nK2WsSTHs45g_1\telephant\nK2WsSTHs45g_3\telephant\nK2oIvJd-d-A_0\tperson\nK4IN8pNA--U_1\tperson\nK5C2Y3JvXCU_0\tskateboard\nK7TOmJ6RB_8_0\tskateboard\nK89ScUqJx5E_0\tperson\nK8_u8_NkoAk_1\ttrain\nK9L-BYQcepo_0\tbear\nK9pgB6KH-EY_0\tcow\nK-laAofNBgs_0\thorse\nK-xigT3f2VA_0\thorse\nK-0pug6xNEI_3\ttrain\nhuFyV9NBOBY_0\tperson\nhua1XfGRDoc_0\thorse\nhulGMGXPaBE_1\telephant\nhvXgMKsetW8_0\telephant\nhxBjbg6s174_0\tperson\nhyNwXcKelY0_1\ttrain\nhyNwXcKelY0_0\ttrain\nhzUpr73wZz0_0\tairplane\nh0jkFTI3qmI_1\thorse\nh1Hv9HnMe70_0\tcar\nh1zuISckIeI_0\tbus\nh10iwpJO4pQ_0\ttrain\nh2vHhQ7_MT4_0\tskateboard\nh3Fo82UBMRY_0\tdog\nh3IHNdoTXT0_0\tperson\nh3PBWibdVUc_0\ttrain\nh3RgUc0oY-c_1\tknife\nh3RgUc0oY-c_2\tknife\nh3t75PNg778_0\tperson\nh3uSlke3koc_0\tmotorcycle\nh4qpt2FEbC0_1\telephant\nh5JnAInpuSo_0\tmotorcycle\nh5JnAInpuSo_1\tmotorcycle\nh7_4qHh7Vas_1\ttruck\nh8TnGCoSVeQ_0\tairplane\nh8fKxUGKz8k_0\tmotorcycle\nh8fKxUGKz8k_1\tmotorcycle\nh-pm7wD31Ss_3\ttrain\nh-pm7wD31Ss_0\ttrain\nh-pm7wD31Ss_1\ttrain\nh-pm7wD31Ss_2\ttrain\nh_VG9OpleKc_0\tmotorcycle\nh_VG9OpleKc_1\tmotorcycle\niAZV9nCf3RE_0\tmotorcycle\niA7evYzMygE_2\tknife\niDBpYSvahjE_0\tperson\niDHjOnhAKA8_1\tskateboard\niE75sptNwbs_1\ttruck\niE75sptNwbs_2\ttruck\niFVwtlc6IYE_0\thorse\niFdOAHM4xDg_0\tperson\niFwPDZE4778_0\tskateboard\niG4PvtWoxG8_3\tcow\niH6Vlg0k330_3\tdog\niH6Vlg0k330_5\tdog\niH6Vlg0k330_6\tdog\niIWFuFa7Z4M_2\tperson\niIWFuFa7Z4M_0\tperson\niIWFuFa7Z4M_1\tperson\niIzXR3qRt48_0\tperson\niI08dGJAOMs_4\telephant\niI08dGJAOMs_3\telephant\niJcf4PhS_SQ_0\tperson\niKzpo0D7b_8_0\tcat\niK-7fByPADo_0\tperson\niMdJ5Xlz0hU_0\tknife\niMeNXU67sVg_1\tskateboard\niNiiX6P-kqA_1\tdog\niOxVi3Tq4ts_0\ttrain\niPlXCYJ6F7w_0\tskateboard\niQ-tckw9_uk_0\ttruck\niRzm-CyyW-E_0\tperson\niSNNmpWe3LA_0\tperson\niS7wej_vrvM_0\tperson\niVBDQ5wm-0w_4\tairplane\niVTAxc633DE_0\tperson\niXrLhQgf8HM_0\telephant\niXrLhQgf8HM_1\telephant\niX4gVag7ShI_0\tperson\niYL_l0MxgMY_0\tbird\niYlgi1z6nYI_0\ttruck\niavLgJ3_05c_3\thorse\nicVQnqL0xPI_2\tboat\nidkGZQeYvJ0_0\tskateboard\nigbftnGj4-o_0\tbicycle\nigg-y1toBvA_0\ttruck\nihkqhIpO_hw_0\tperson\nijbDg16cIC8_1\tbus\nik4t0sIEmTI_0\tperson\niltKgr5JKI0_0\tperson\nil5UMLzlQts_0\tbus\nimDfH3So8XU_0\tcar\nimDfH3So8XU_1\tcar\nim4bCIqpJns_1\tbicycle\nim4bCIqpJns_2\tbicycle\nim4bCIqpJns_0\tbicycle\nip1Y5qjDYfQ_0\tairplane\nip_oGEZ6zMw_1\tperson\nirvGAW8bqAw_2\tbus\nisbtQ06yVM8_0\ttruck\nitNqceL9dLM_0\tcow\niuii5XHcAYA_1\tdog\niulQVUJanzg_0\tskateboard\nivGBks6evlo_2\tdog\nivSQWqs_u1I_0\tbear\nivpPLs-cqxA_0\tcar\niwHJDgGVuCA_0\tairplane\niwHJDgGVuCA_1\tairplane\niw7zrlRPMo4_2\thorse\nixgGTHdobNI_0\tperson\niyDedQNhiYI_0\tcat\niyaI71EqLsg_0\tperson\nizHN9JUwtJ8_0\tboat\nizQ74nq9zh4_0\tcow\ni0QLe6YR7yo_0\tperson\ni1OlP2Sq0a0_2\ttruck\ni1xqjStfSsc_0\tperson\ni2SgjtgmsE0_0\tperson\ni5DfO7_n0q8_0\tcow\ni5GkqX44npg_0\tcar\ni5JWZKdNOac_0\tmotorcycle\ni5JWZKdNOac_1\tmotorcycle\ni6mzD2HGWOA_0\tairplane\ni6sR2IY4-Ck_0\tcow\ni8JA178zd0s_0\tcow\ni8Z9-KSMCTA_0\tbicycle\ni8syjc7Erco_0\tmotorcycle\ni-EijejS9Oc_0\tperson\ni-eCNLw3hVU_0\tbird\ni_l48nIXjxw_0\thorse\njBYa-gqwSeY_1\tcow\njCiTA9oIryk_0\telephant\njCuDdMn9sYA_0\tperson\njDGrgBt83DU_7\tcar\njD33e45nuRw_0\tbear\njD5K1zGLtvc_0\tskateboard\njEE_ZlDJ4cc_0\tcow\njEzxW8ylxK8_5\tairplane\njEzxW8ylxK8_1\tairplane\njEz3EToUAg8_0\tperson\njGCLsWhdTds_0\tumbrella\njHhJLxyr960_0\tbicycle\njIqTFAgBLpc_0\tdog\njJkZrKOehcQ_0\tperson\njKD0oOyMl2g_0\tperson\njLO5kFd36OY_0\tbird\njMLgjCQWQY0_0\tperson\njMmH8xfY1kw_0\tcow\njMyxNu6YkEQ_4\tboat\njN5jdXmBv2Y_0\tbird\njN5jdXmBv2Y_1\tbird\njN5jdXmBv2Y_2\tbird\njN5jdXmBv2Y_4\tbird\njN5jdXmBv2Y_6\tbird\njPouarzO-e4_0\tcat\njQPz-9OfXRM_0\tzebra\njRQuCIsXz1c_0\tairplane\njRUeQo3V1bk_0\tperson\njR366TYYsuo_0\tperson\njSkwPkAAiFM_0\tperson\njTNzSUl_zOQ_2\telephant\njUzhGHE_jgE_0\tperson\njVYzDs5YRM4_0\tcat\njVoxxEKEOFo_0\tmotorcycle\njX_taNw8FFg_0\tskateboard\njY4Dh-UAAaY_8\tskateboard\njZBMDKFS5D0_0\tperson\njbp8mHJfHGI_0\tperson\njcYNP_FWkA0_0\tperson\njcne18p2r2c_0\tcat\njdttJqwg_3o_0\tmotorcycle\njfSY_UCtq-w_0\tmotorcycle\njfTXT98Naic_0\tcow\njgQiUggCu7A_0\tcow\njjTgUBAd4D0_0\tcow\njjq2PAHcLiA_1\tperson\njjq2PAHcLiA_0\tperson\njlBGbg_CJz0_5\ttrain\njlBGbg_CJz0_6\ttrain\njlOOUqYlNNY_0\tmotorcycle\njlgECDznb0g_0\tbear\njl7oYVm0X34_0\tbird\njnU2n55I_LU_0\tdog\njouq30Wmqxg_0\tmotorcycle\njouq30Wmqxg_2\tmotorcycle\njo6o9BwKsUQ_1\telephant\njqPPsrUULY8_0\thorse\njtWUSSp-JiY_0\ttruck\njuS7DvjMPoo_0\tperson\nLCzQs5ybibU_0\thorse\nLDwE_VIc9Zc_0\tcow\nLEL3OcoqV8k_1\tknife\nLEPsxGhXYxY_2\ttruck\nLEPsxGhXYxY_3\ttruck\nLEXpJRLTRak_1\tbear\nLFWlRG2B-w0_0\tbus\nLFWlRG2B-w0_2\tbus\nLFWlRG2B-w0_3\tbus\nLGvjU4PVcC0_0\tboat\nLGvjU4PVcC0_1\tboat\nLGvjU4PVcC0_2\tboat\nLIC3D63R3HU_0\tperson\nLIhhU9j6MI4_1\tcow\nLLD46pbwbiU_0\tperson\nLLiy-k-4-OM_0\ttrain\nLLvpoIlozKU_0\thorse\nLLvpoIlozKU_1\thorse\nLO0IsJZeXhU_0\telephant\nLO0IsJZeXhU_1\telephant\nLPzXMvYB97A_0\tperson\nLTh-XAE8m3M_2\ttrain\nLURSawdSS9k_0\tdog\nLUsb9vk1q6U_0\tknife\nLU539OYJ_z8_0\tperson\nLXHO99b-uAQ_0\thorse\nLXHO99b-uAQ_5\thorse\nLX0HL9qztic_1\tumbrella\nLYPeAbFVTQw_0\tperson\nLZCq31MG3yY_0\tperson\nLZEMKs6H53w_0\tperson\nLZNlxXE0_2s_1\tskateboard\nLZNlxXE0_2s_2\tskateboard\nLZNlxXE0_2s_3\tskateboard\nLZ3S39QfkKA_3\tbicycle\nLbHrVQR9f24_0\tcow\nLcvMMvrPIug_1\tcow\nLdNi4yjT3yE_0\tperson\nLdusiqJFR6I_0\tperson\nLesCJsHdAU0_0\tcat\nLe2725PKYQk_0\tdog\nLfUSKsg8JoQ_0\tcat\nLfhPiqIDAcI_0\tperson\nLgbwFATbwhs_0\tcat\nLhF7TJOwt8o_0\tmotorcycle\nLhOMGvkzP28_0\tperson\nLhOMGvkzP28_1\tperson\nLhkFN7f676g_0\tairplane\nLh1QrEwtBxU_0\tskateboard\nLiS31CevvvA_0\tperson\nLiS31CevvvA_1\tperson\nLjRWmJThZrA_0\tperson\nLjyZ7Djyq1U_0\tperson\nLkP8lgpmCJc_0\tairplane\nLkfML7bjGg8_0\tperson\nLmCzQ6WrePM_0\tbus\nLnYz8cQsrWk_0\tcow\nLpTBcxby8_U_0\tcat\nLpT4VBLapqM_0\tcar\nLpjbdSyW__A_1\ttruck\nLqm0JTDlIaU_0\ttruck\nLtIW9sP55N4_0\tperson\nLuC8ON_75l4_0\tperson\nLuRLF2TroVk_1\tairplane\nLunFMJp3_Uc_0\tcat\nLup2fypzuD4_0\tperson\nLurlbycI8WQ_0\tperson\nLvd7WBHnDpk_0\ttruck\nLwxi57QRroE_0\tperson\nLyPkKroSsaU_0\tbird\nLyPkKroSsaU_2\tbird\nLyPkKroSsaU_7\tbird\nLz7uf7cmfAU_0\thorse\nL0Y9j9DtU1o_0\tdog\nL0mqjqU7pmw_0\tperson\nL1C1GJZuI6U_0\thorse\nL1TihVYcfII_0\tbear\nL1xr5gaSzeQ_0\tbicycle\nL2lJenTKrLU_0\ttruck\nL2lJenTKrLU_3\ttruck\nL2lJenTKrLU_5\ttruck\nL22pyXEUjv8_0\tbird\nL22pyXEUjv8_1\tbird\nL5px8rMqxRY_0\tmotorcycle\nL8Q0lJgaUi4_0\tzebra\nL-3-1978GvI_0\tknife\nL-6R2vuKWhc_1\ttruck\nL--TMS61Zvw_1\tboat\nL--TMS61Zvw_5\tboat\nL_dOv3wd1ZM_0\tperson\nL_nI4_2RbTU_0\tknife\nMAmHLoJdmc8_0\tcow\nMENNFokPNbU_0\tairplane\nMG8-IGrKVxc_0\ttruck\nMG8-IGrKVxc_2\ttruck\nMG8-IGrKVxc_3\ttruck\nMG8-IGrKVxc_5\ttruck\nMH1GdFqE_lo_0\thorse\nMH1GdFqE_lo_2\thorse\nMH1Kct5RCRg_6\tairplane\nMH1Kct5RCRg_10\tairplane\nMIkxezmilfY_0\tperson\nMI6x6FrXJqs_0\tknife\nMI9BIgkOBjI_0\thorse\nMJ9vJFTTV5c_0\tperson\nMKiCrBXtflw_0\tcat\nMK8Jm3I4In4_0\tdog\nMK8Jm3I4In4_4\tdog\nMMiSt9MNne8_0\ttrain\nMNve0XPgcGA_1\tbird\nMN1A5E3jNSE_0\thorse\nMPJu68gBGfI_0\tperson\nMPMudxdiIds_0\ttrain\nMPfgu6-snaM_0\tbird\nMQ1o_7gpp5E_0\tperson\nMQ1u8IEmFSA_0\tperson\nMQ3HhLmsCik_0\tperson\nMRNJmLLkjPc_1\tmotorcycle\nMRNJmLLkjPc_2\tmotorcycle\nMRqfEOhWW48_0\tperson\nMSItPvVCUN8_0\tcow\nMSd5Ecl5-W0_0\tperson\nMSnEnQ0psW8_0\tcar\nMV6MGXhQwFQ_0\tcat\nMWbnSN-7WG0_0\tcow\nMWt4P6HWxMM_0\thorse\nMXEcQSFwng0_0\tcat\nMXTzea4MeHc_1\tcar\nMXoVDyewPBE_0\tperson\nMYFPnJIKK5k_0\tperson\nMYpdq9KvK8o_1\tumbrella\nMasaNQLCMGE_0\tperson\nMbRvEKuvR04_0\tskateboard\nMb6r1es0AbU_0\tcat\nMcdl3s6oQrc_3\tbear\nMcdl3s6oQrc_1\tbear\nMe-clc6PGkA_2\thorse\nMe-clc6PGkA_3\thorse\nMfYpMzLWST8_0\tcat\nMgFhoihDD1U_0\tperson\nMkmpoid1BvA_1\ttrain\nMokOHR3wImM_0\tcat\nMqBTk3ITQ8c_5\telephant\nMqBTk3ITQ8c_3\telephant\nMrWZEUtDBq8_0\tdog\nMuyIuhdszH0_0\tperson\nMuyIuhdszH0_2\tmotorcycle\nMvKMtFVP5NU_0\tperson\nMvbZEiffy8s_0\tperson\nMvuGj1qR4Ic_0\tmotorcycle\nMvxUj_Du2IY_0\thorse\nMw6Cu1mPanU_1\tcow\nMxtJwd0GBkA_0\tairplane\nMzTsjMauBH8_0\ttruck\nMzrv2OCC2GE_1\tperson\nM0TTCr9jjgc_0\thorse\nM12KvkF1Nec_0\tperson\nM40gbbuNuL4_0\ttruck\nM5p7jyvEgPk_1\tknife\nM52oDxJEXk4_2\thorse\nM52oDxJEXk4_0\thorse\nM7Kcv9fUrhA_0\tcow\nM9CCnnc8m8k_0\tgiraffe\nNAInb4dMC_E_0\tairplane\nNAInb4dMC_E_3\tairplane\nNAsDBYDNhwY_0\tcat\nNDxs_vxhhME_1\tperson\nND-VrJY7mU0_0\tperson\nNEsCBcZFajg_2\tairplane\nNEsCBcZFajg_5\tairplane\njvlyXCBSuCk_0\tperson\njwYviTYbJYs_0\tcow\njxL3F-iB2S8_0\tbus\njxmsNv20V50_0\ttrain\njyrY4oyyA7M_0\tperson\njzNOBsi5TtQ_0\tcow\njzeFDGEt_iQ_0\tperson\nj4UJ80q_s3c_4\tskateboard\nj4UJ80q_s3c_5\tskateboard\nj4t-Otp9ES8_0\tperson\nj6XmNyG8nYE_0\tbear\nj8SM6uLadmU_0\tmotorcycle\nj8aX3NuEnxc_1\tairplane\nj8aX3NuEnxc_0\tairplane\nj93wwDC_a2I_0\tskateboard\nj_tT90ISNnc_0\tskateboard\nj_6ZWhyOOcA_0\tperson\nkBKG0SaNbdw_2\tcow\nkBYFlPJJx-s_0\tperson\nkCHOoDF-pXo_0\tcat\nkCQIRLEi88s_0\tperson\nkCefZaEK9M4_0\tperson\nkCt3G72NjyY_0\tmotorcycle\nkEx2sgiyKpY_0\tdog\nkG5vclMyg7w_0\tskateboard\nkHIZAi1E9gU_0\tcow\nkH3Hwla_MUM_0\tperson\nkI7523l1Tu4_0\thorse\nkI7523l1Tu4_1\thorse\nkLwsGbEsMjs_5\telephant\nkLwsGbEsMjs_1\telephant\nkL52zPMgsXM_0\ttruck\nkMIRREOoSt0_0\telephant\nkOqKBgGRd_c_0\tboat\nkQu7xcJmp6w_0\tairplane\nkRLl2HLijWc_0\telephant\nkRqsESioKVM_0\tperson\nkSWUU8Ef-Rg_0\tcow\nkSXkd4PYX9M_0\tbear\nkSm9E8WwGYY_0\tperson\nkTT6onfYUug_0\tbicycle\nkZcfsku1oJ4_1\tbicycle\nkarZg0Iifks_0\tskateboard\nkavU8zKXrEY_0\telephant\nkbD6iXQ3P6M_0\tcow\nkb4GuHpwuSw_1\tcow\nkdPgKSrjVYQ_0\ttrain\nkd9Tn_hyeb4_0\tdog\nkeka7aToy_E_0\tperson\nke2Ap6Zvq64_0\tcow\nke2uXJrB9WQ_1\tbird\nkfL1KEY53AM_0\tperson\nkfMMMSNZWeM_0\tgiraffe\nkgcb2y-aw8s_1\ttruck\nkhicinfB1nY_0\tperson\nkhr1-lWZOOw_0\tbicycle\nkixX1ga8yrw_0\tperson\nki51QTz_6iw_0\tbus\nkjhcR5ljaDU_0\tcar\nkksfStf04pc_0\tperson\nkk41Jjw-BpQ_0\thorse\nklxQpVdft5E_1\tbicycle\nkmIUPZSNl5A_0\tairplane\nknFBzlhmDMk_2\tskateboard\nknFBzlhmDMk_3\tskateboard\nkoomOoaIF0Q_0\tmotorcycle\nko4el3e0QFI_0\tbird\nkqE2rNzUnvU_0\tcow\nkqJJ6_2vGtU_0\tmotorcycle\nkqiHy-EzdcQ_0\tairplane\nkqiHy-EzdcQ_1\tairplane\nkqiHy-EzdcQ_2\tairplane\nkrD5WtdljCc_0\tbird\nkrR-lFUTXHo_0\tcow\nksbdMzGs-gs_0\tperson\nksbdMzGs-gs_1\tperson\nktCRlGt6408_0\ttrain\nktcXRj-Vz6c_0\tbus\nktcXRj-Vz6c_1\tbus\nktvaX1ALzwE_0\tmotorcycle\nkwMNSTE0h8U_0\tbus\nkwMNSTE0h8U_1\tbus\nkwyn-eed9l4_1\tbird\nkx2jH9V7vYM_0\ttrain\nkz0gVW9uWkc_0\tskateboard\nk1C25MTUso4_0\tperson\nk1Y6Y1yocF0_1\tknife\nk1qT5GtPmQo_0\tbear\nk2fCUP9H4cw_0\tskateboard\nk24lvYKkK5g_0\tboat\nk3hYFu55iGE_0\tperson\nk3hYFu55iGE_1\tperson\nk3pTU4KNdvE_0\ttrain\nk4tqy4pdlNs_0\thorse\nk5MmpG9afSM_2\tbear\nk5UoGZZb_RY_0\tcat\nk5oey7bw5kA_0\tperson\nk5-IPGgeCPc_0\tperson\nk5-IPGgeCPc_1\tperson\nk8OboASs470_0\tskateboard\nk8OboASs470_1\tskateboard\nk9COlD7u1tI_0\tknife\nk-tdE0VAFkc_1\tperson\nk-tdE0VAFkc_0\tperson\nk_E-cIymiis_0\ttrain\nlAZQZSK_9bk_0\tcat\nlCc5-WmCZJk_3\tdog\nlCc5-WmCZJk_5\tdog\nlDWAsuKkv5Y_1\tbird\nlFObiVRO-BQ_3\tairplane\nlGAGodreVjQ_0\ttrain\nlGJB2hhw5pI_0\tcat\nlIbOGzXhSW8_2\thorse\nlI-A6pFtkLQ_0\ttrain\nlI_jxWxWivM_0\tdog\nlJXfbIuwTIQ_1\tcow\nlJccP5OJjZ8_0\ttrain\nlKBO-dakd8w_0\ttrain\nlLyfm0vbHrw_0\ttrain\nlL_4QscWdx4_0\tperson\nlM0yKqnWblw_0\tperson\nlNJbOSFK9N4_1\tskateboard\nlOFTlhNmKD8_0\tbus\nlOQf3A_3lPI_0\thorse\nlOWmL3mpSeA_0\ttrain\nlOvB2zlHw8w_0\tdog\nlO-XTKPQb5I_0\ttrain\nlPapZHOAdzk_0\tbicycle\nlP5lgBlsH0U_4\tairplane\nlP5lgBlsH0U_1\tairplane\nlP5lgBlsH0U_2\tairplane\nlQDy9Mri-18_0\tperson\nlQsTpo0uOIw_1\tboat\nlQuFC-E7VUM_0\tperson\nlQuzpkDKFQ8_0\tperson\nlRuif4Zc7CI_0\tboat\nlSZa4pAHgV8_0\thorse\nlS-5gEkB0_o_0\tmotorcycle\nlTTquh-jLwM_0\tcar\nlThBPb6HI1U_0\tcat\nlVeIr8AFTjY_0\tperson\nlWT2t48q164_0\tmotorcycle\nlYSpeuL7-oo_0\tumbrella\nlZOTAg9Fofw_3\tbird\nlZVwQoLPjBU_0\tgiraffe\nlZVwQoLPjBU_1\tgiraffe\nlahDGDRe7X8_0\thorse\nlcKDCt1eWqg_1\tknife\nldQGB8gzRjA_1\tcow\nldhdyBduVoU_1\tcow\nlf_tYVzrap0_0\tperson\nlge9f_bgAOk_0\tperson\nlgzIpgcvPvU_0\tperson\nlhNv9zDa1ug_0\tcar\nlhadIxHkaVg_1\tperson\nlhadIxHkaVg_0\tperson\nlhnQuOIF-2c_1\tperson\nljLO1myCfoA_1\tknife\nljayNZQpp-I_1\thorse\nljayNZQpp-I_5\thorse\nljeTwRM6DWE_0\tperson\nlkvdy3Hejpw_0\tperson\nll6gTyUguMY_0\thorse\nll6m5MTpf4o_0\tperson\nlmpKSF0cXSc_0\ttrain\nlnfEV2dRfm4_0\tmotorcycle\nln0_FGR8B08_0\tperson\nloVlMj9Dhkk_0\ttruck\nlotZh71qMks_0\tperson\nlpcqEaZD_Xk_5\tbicycle\nlpcqEaZD_Xk_0\tbicycle\nlpcqEaZD_Xk_1\tbicycle\nlpcqEaZD_Xk_2\tbicycle\nlpcqEaZD_Xk_3\tbicycle\nlpcqEaZD_Xk_4\tbicycle\nlqu4tjd3Zg4_12\tbear\nNE9AhZPTVFY_0\tmotorcycle\nNFF4UemeH8g_0\ttruck\nNFSj66emNbM_0\tcat\nNGS9BrtLJ0I_1\tboat\nNGvpnRrWSKc_1\tbear\nNHLBjlX2jeg_0\tperson\nNHgh88y4e80_1\tcar\nNHpM-oBMIRk_0\tdog\nNHrjnZsJWOw_0\tperson\nNID_0E0tn_g_0\tcow\nNJQNZ36lsvw_2\ttruck\nNJm81cIGO98_0\tskateboard\nNJ22Hynv9s4_0\tumbrella\nNJ22Hynv9s4_1\tumbrella\nNJ7MXR2AaoY_0\tcow\nNKQfFcfr6Ko_0\tperson\nNL1iy1TKtRI_5\tcar\nNL1iy1TKtRI_1\tcar\nNL1iy1TKtRI_2\tcar\nNL1iy1TKtRI_3\tcar\nNL1iy1TKtRI_4\tcar\nNMCijcIa_XU_2\tknife\nNMhR_Z4Rq7g_0\tperson\nNNbRF02KnGM_1\tskateboard\nNQiMeD83sMw_0\ttruck\nNQiMeD83sMw_1\ttruck\nNQsnyZmQoPw_0\telephant\nNQsnyZmQoPw_2\telephant\nNQve9Yujb14_0\tperson\nNRaAEznVIxQ_0\tperson\nNTGqC7kOGAw_1\tbird\nNTRX6gLV_04_0\tbus\nNUSnWbhvmQs_0\tcow\nNVzCor2-ZpI_1\tzebra\nNV-p8Vp-bdA_0\thorse\nNWAQ1is2w98_0\tairplane\nNYIqB-l8eKk_0\ttrain\nNZ5OIYTIoYQ_0\tperson\nNaCksn1bbv4_0\tairplane\nNaCksn1bbv4_2\tairplane\nNaEokN7Nh-U_2\tknife\nNadzcUmXDTk_0\tperson\nNbJ2gM5KJTM_0\tcat\nNbJ2gM5KJTM_1\tcat\nNdXmkm9jcPA_1\tairplane\nNd6ceCmRYBI_0\tbird\nNeXVfNsggZw_0\tcow\nNfEzlo6-i_4_0\ttrain\nNfEzlo6-i_4_2\ttrain\nNfEzlo6-i_4_3\ttrain\nNhi9730yIzM_0\tdog\nNhskHQ9bqlo_0\tcat\nNhvr0y1tqjk_0\tperson\nNiP4AEjiwxs_1\tboat\nNio43-cQPh0_0\ttrain\nNi_TSyCk1Ak_0\tcat\nNjknyzAAQpM_0\tperson\nNlOjGoYPj9Y_0\ttruck\nNlTLvOcpoEA_0\telephant\nNlVEu_8kdoI_0\thorse\nNlVEu_8kdoI_1\thorse\nNljV4UjnFJc_0\tmotorcycle\nNnRWY12wxUk_0\tperson\nNnVFfTO9-q8_0\tperson\nNo84NOV3Pwk_1\tskateboard\nNpZj-n9_STU_1\tbird\nNqwxEAASrCo_1\tairplane\nNr9t7GeBwQY_2\tskateboard\nNsbG9FcyTFk_1\telephant\nNsbG9FcyTFk_4\telephant\nNsbG9FcyTFk_2\telephant\nNsbG9FcyTFk_3\telephant\nNuKyL_c3YcQ_0\tcow\nNulXMVhoGhU_0\tknife\nNuutxSJHULc_1\tcow\nNvkF9R1HsJc_0\tcar\nNxTnPIBFKdE_0\tairplane\nNxjnp7dqCdc_0\tcow\nNxqGplqsmNk_0\tperson\nNyKq-nq-KlQ_0\tperson\nNzAEnNO5-fo_0\tbicycle\nNzAEnNO5-fo_3\tbicycle\nNzAEnNO5-fo_4\tbicycle\nNzAEnNO5-fo_5\tbicycle\nN0LEywKxW9o_0\tcat\nN0e8A9q9tyU_0\ttrain\nN1OYtZSKdKQ_0\ttrain\nN1OYtZSKdKQ_3\ttrain\nN1pTdHcekjU_0\tcar\nN28sspen6dM_3\tbird\nN28sspen6dM_1\tbird\nN3ffRSq8s7M_2\tcow\nN6nP6NLTaG0_0\tmotorcycle\nN7Bv6ZMyBrU_0\tskateboard\nN9vkS7ish9k_0\tcow\nN_5Xf4hpanE_1\tdog\nN_5Xf4hpanE_0\tdog\nOBQQMo8mWLE_0\tperson\nOCA5rhgrl48_0\tperson\nOCLVaKMFCZg_1\tbicycle\nODI8kcB_dSs_0\ttruck\nODJSlRRM1Uo_0\tcat\nOD4XsgCwIKk_0\tperson\nOD9vhbbeBAE_0\thorse\nOEhrO1p2agU_0\tperson\nOGOf9vbNJB8_0\tperson\nOG8Nfns4uh0_0\tcat\nOHEyq1pCfZ8_0\ttruck\nOIV8ASYsqZc_0\tskateboard\nOIV8ASYsqZc_1\tskateboard\nOImLl2ufWqI_0\tcow\nOJktr2-sJmY_0\tmotorcycle\nOJktr2-sJmY_2\tmotorcycle\nOKbNtRotT5w_2\thorse\nOKbNtRotT5w_5\thorse\nOKbNtRotT5w_7\thorse\nOK-2ALhNWts_0\tbird\nOLpvIpNUgY4_0\tperson\nOLyGncmosSs_1\thorse\nOL_lZw3lqE4_0\tperson\nOMm3ReCUyGA_0\tperson\nONlvohUS-io_0\tcow\nOOC45SMJl6M_0\tbus\nOPIxLQwJLaM_1\tcow\nOPbyoGG-M_E_0\thorse\nOPm_iAWIO2o_1\tknife\nOR4OEYlOndk_0\tmotorcycle\nOSRtFznjiro_0\tmotorcycle\nOSUOKZdfiXQ_0\tperson\nOS6SXRjK0rU_0\thorse\nOUeSqgMRLUg_0\tbird\nOUrVDMMYK-4_0\tperson\nOWBXMvAtmcA_0\tcow\nOWqaj3O-u6E_0\ttrain\nOWqaj3O-u6E_1\ttrain\nOWqaj3O-u6E_3\ttrain\nOWvRHFQJ-5g_1\ttrain\nOXjc7JlWYwk_1\tbird\nOXpPVrdEoko_0\telephant\nOXpPVrdEoko_1\telephant\nOYCDyQPt5rU_0\ttruck\nOYRmTydmqZo_0\tcow\nOYugCmogPD8_0\tbear\nOZver3igS6U_1\tzebra\nOZy-0MSWC7o_0\tperson\nOZ5z2K-vIYg_0\tmotorcycle\nOb4ur_FS9xM_0\tdog\nOdLj2La07lM_0\tboat\nOdnylLd12pU_0\tskateboard\nOdsXUxBBISo_0\tairplane\nOePFLxtDg7k_0\thorse\nOflyVi689KA_0\tskateboard\nOg9LiinXMtw_0\tbus\nOjx6OtSIA3k_0\tperson\nOmdbd0YsB2o_0\tairplane\nOmdbd0YsB2o_1\tairplane\nOnRL69PzM4I_0\tbicycle\nOo3Uhz6L-cs_0\tperson\nOpEMSVRTyxk_0\tdog\nOpJl0GUiLQI_0\tperson\nOptQqflXY_g_9\telephant\nOptQqflXY_g_0\telephant\nOptQqflXY_g_4\telephant\nOptQqflXY_g_5\telephant\nOptQqflXY_g_8\telephant\nOqmbWcekMxo_0\tperson\nOrPfakDZX64_0\tperson\nOrwr1k0mKho_0\tperson\nOrwr1k0mKho_1\tperson\nOtHHLfag4xg_2\tknife\nOumTAMPogf4_0\tperson\nOvQFDkMjctE_0\tperson\nOyDNx0iCGUM_0\ttruck\nOyKi2PGJERI_0\tperson\nOyKi2PGJERI_1\tperson\nOyhAS52bQMA_1\tperson\nOyhAS52bQMA_0\tperson\nOzORAIgrZOg_1\tknife\nOzQFkM92we8_1\tdog\nO0o_u_t5Y6w_0\tbus\nO2TgLtQU7PI_0\tknife\nO3GPSL92hYw_0\telephant\nO4UhXpMuxJI_0\tperson\nO5PlzlxQuPc_0\tdog\nO5796OHwBy8_0\tbear\nO6cWlrockUQ_2\thorse\nO8s1bsDJrwc_0\tperson\nO9dxeSLiF9A_0\tskateboard\nO9dxeSLiF9A_1\tskateboard\nO90WVIgQwww_0\tperson\nO9_riOoIpKo_4\ttrain\nO9_riOoIpKo_6\ttrain\nO9_riOoIpKo_10\ttrain\nO_hypcyZCFo_0\tairplane\nlryNU4SKncc_0\tcow\nlrzxlHguluE_0\tbird\nlr7T4YcCWSU_0\telephant\nlr7T9GuNUMY_0\tcat\nlskWmTPa9Gk_0\tperson\nls34lS6fGzw_0\tperson\nlt7kXXW5D-c_0\tbus\nlvdU2uEdpnA_0\tboat\nlv6aYZguv6k_0\tperson\nlxXwMvanqo4_1\tboat\nlznoTW8tuLI_0\tbus\nlznoTW8tuLI_1\tbus\nlznoTW8tuLI_2\tbus\nl0J9Km2lk2I_0\tperson\nl0TirY4L7Es_1\thorse\nl0TirY4L7Es_3\thorse\nl3yFwpak_LA_1\thorse\nl38pNVKwDeo_0\tbird\nl4sdxYUAiJQ_0\tperson\nl4_P74HRriU_0\tperson\nl5GlzRyX39s_0\tperson\nl5GlzRyX39s_1\tperson\nl5WawiGWVxg_0\tperson\nl6cEGnOtFZg_0\tairplane\nl682n6ZmpNk_0\tperson\nl7Mmo3ow8qo_0\tperson\nl7kq2yqxPQc_4\thorse\nl7kq2yqxPQc_2\thorse\nl8r-mOc3-3U_1\tperson\nl9QgZQGtQWI_0\tmotorcycle\nl-4jrxgMGTQ_0\tskateboard\nmAEnlKe67pQ_0\tbicycle\nmAhzB1TH8mU_0\ttruck\nmAj62XUNkIM_0\thorse\nmBgSYaKydZY_0\tperson\nmC5X6MO2y9A_0\tperson\nmDf5zsFFweg_2\tknife\nmDf5zsFFweg_1\tknife\nmFbUnWMAreQ_0\tperson\nmGDfepYDRRE_0\tperson\nmHFxPudSk8c_0\tmotorcycle\nmIFnGYdf0po_0\tperson\nmJm2UYBiD8w_0\tcat\nmJo7aqOfRww_0\tairplane\nmJ6qCcS_-AQ_0\tperson\nmJ-DsFbUPUg_0\tmotorcycle\nmKBs2L-xwdU_0\tperson\nmLVHfKExUNU_0\tboat\nmMdGNbPpLKQ_0\ttruck\nmMy70TxInmA_0\tperson\nmNpEoUW_OPI_0\tknife\nmOFqvrGzJiE_1\telephant\nmOFqvrGzJiE_2\telephant\nmOkmKyBZoXI_0\tperson\nmP6-RR-Vuv0_3\ttruck\nmR1y0XlZhQ4_0\tperson\nmTeNKWTwFcs_0\tperson\nmU7E6pi9PFU_0\tbear\nmU7E6pi9PFU_2\tbear\nmWeNwTJwEmo_0\tperson\nmWhw719wEH4_0\tperson\nmXBKJjrxqmc_0\tknife\nmXekeIascCc_0\tperson\nmX_4T1I2ux4_0\tdog\nmYwEvpKN2-Q_0\ttrain\nmZ0VxiELg9A_2\tmotorcycle\nmZ0VxiELg9A_0\tmotorcycle\nmaiqraHgwgg_0\tskateboard\nmbZZ48h5pnY_0\tperson\nmboIIChd8tY_0\tbicycle\nmcR2Fi6wQj8_1\ttrain\nmcR2Fi6wQj8_0\ttrain\nmciQ3fR1QTE_0\ttruck\nmeAfvCGeyyU_0\tperson\nme-WjezBU4U_0\tmotorcycle\nmflX-nwtpzs_0\tskateboard\nmgSJL9uL49w_0\tbus\nmgSJL9uL49w_1\tbus\nmhDnVhRMCHc_5\tcow\nmhDnVhRMCHc_0\tcow\nmhDnVhRMCHc_1\tcow\nmhDnVhRMCHc_2\tcow\nmhDnVhRMCHc_3\tcow\nmhDnVhRMCHc_4\tcow\nmhIULm3ssFk_2\tairplane\nmiJ1b0bNn9M_0\tperson\nmiLapj3u_5g_0\tcat\nmiR8Xeb7SM0_0\tumbrella\nmi4j0PrR-Gs_0\ttruck\nmi4j0PrR-Gs_1\ttruck\nmjSUb46nTjs_0\thorse\nmj2ClgQE_Q0_3\tskateboard\nmj2ClgQE_Q0_2\tskateboard\nmj_R3ENyiKM_0\tperson\nmnOoqy7I3L8_0\tskateboard\nmns4vFzs4_8_1\tskateboard\nmns4vFzs4_8_0\tskateboard\nmnwyrMq92so_0\tperson\nmoBNY2JjuEQ_0\tcow\nmoc2yPvW_JU_1\tperson\nmpA3PWbdVWc_1\tbus\nmp-cHp44pXo_0\tbird\nmp-cHp44pXo_1\tbird\nmqI9CDpsCDE_0\tcat\nmqYD18pFqm8_0\tperson\nmrnDERbyZcM_0\tskateboard\nmtO9ioY8AHY_0\tperson\nmuk5R25UV1A_0\tperson\nmungFWJMSsg_0\tdog\nmwRNyFvem8g_3\ttruck\nmyYMS85ltwo_0\tskateboard\nmyiCWmM3XN4_1\tdog\nmziKTFuKVco_0\tperson\nmznC1uLm_j8_0\tskateboard\nm0z25TJV2vU_0\tperson\nm1VAqMAJ-Lw_0\telephant\nm2DUDsR4tWA_1\tbus\nm2Sr_Q8JpcI_0\thorse\nm2Sr_Q8JpcI_2\thorse\nm2Sr_Q8JpcI_3\thorse\nm2-nK6oZ08E_0\thorse\nm2-nK6oZ08E_1\thorse\nm3u_pETGaMw_0\ttrain\nm4Ozpr8E1EE_1\ttrain\nm5mSFt43spE_4\tmotorcycle\nm7VhCUoV_Dw_0\tperson\nm77tPf0Ulb0_0\tperson\nm8THukZrE7w_0\tperson\nm86BSOvJvS8_0\tperson\nm9hdxJE9HQE_2\ttrain\nm95nb4Vl_R0_0\telephant\nm-Ry10-IgWg_0\thorse\nm-sLdoVujlI_1\tbird\nm_25GAJYGHE_1\tcar\nnAO2Y4kF7b8_0\tbicycle\nnBllCINiO-4_0\ttrain\nnF_NlCSUpFo_0\tcat\nnIO0ZNZi6n0_0\tperson\nnIiXsRSLxZI_0\tperson\nnIiXsRSLxZI_1\tperson\nnJO5eQXPS0M_1\thorse\nnKfhxWUyc4I_0\telephant\nnKfhxWUyc4I_2\telephant\nnLUyCQwkCds_1\tmotorcycle\nnMW7WsVKd_E_0\ttruck\nnO14Z3ggnZs_0\ttruck\nnO16C5NBMQQ_0\tperson\nnO16C5NBMQQ_1\tperson\nnPJJOI4j3UQ_0\tperson\nnQAqVHkffhY_6\ttrain\nnQAqVHkffhY_7\ttrain\nnQAqVHkffhY_1\ttrain\nnQAqVHkffhY_5\ttrain\nnQrJJZvmF74_0\tcat\nnRu8IVZXzCU_0\tairplane\nnR1Ng3PnYoU_0\tcow\nnSUBF0RYH1o_1\tbicycle\nnTfgyYqyO_Y_0\tperson\nnTtqkLze7eY_0\thorse\nnTtqkLze7eY_3\thorse\nnTtqkLze7eY_4\thorse\nnW4sAWZ6dHQ_0\tbicycle\nnXYeq3IDOFo_0\ttruck\nnXgq-W7J6ho_0\tperson\nnYGQy8peDYk_0\tperson\nnYHjMb7HoK8_3\tbird\nnYIUSRVmY30_0\tperson\nnaMdRxX0924_0\ttrain\nna6hNW8gSx8_0\tbus\nnbojUStyLvY_1\tperson\nnbojUStyLvY_0\tperson\nncZiTQHehfk_0\tperson\nnefS_k9oFMI_0\tperson\nngE_mlmsaqY_0\tperson\nnh4AR9Mjwmo_0\tbicycle\nniQ2DNNlBSM_0\tperson\nniUnVyYTszc_0\tperson\nnjOQqZ1pBGM_2\tboat\nnjP6uuU-G6o_6\tbear\nnjcuqdNTGfM_0\tperson\nnj8ALe3wC9c_0\thorse\nnki1SdWtdCI_0\tcow\nnk6FezKWYSY_0\tbird\nnmNSM48p094_0\tknife\nnmRZQdp3xRk_0\tperson\nnn8WcALmZ7c_3\tbear\nnoTnh5A2OHo_4\tboat\nnoTnh5A2OHo_1\tboat\nnoWsAcioI8g_0\ttrain\nnoe-qNQfJBo_0\tbird\nno-b9_3kXiQ_1\tdog\nnpAPemisdEI_3\tboat\nnpGL0Kl16f0_0\tperson\nnpGL0Kl16f0_1\tperson\nnqZya6Vk3iY_0\tcat\nPAdHnsQ5png_0\tcat\nPAi_eJ_z59w_0\tskateboard\nPBPViL9vBZQ_0\tmotorcycle\nPBS3-SzLV2A_1\thorse\nPBwR_Jdod_g_0\tknife\nPCJWOz32Js8_0\tperson\nPDmAbS9Afkc_0\ttruck\nPE8yxnkayr0_0\tperson\nPE8yxnkayr0_1\tperson\nPFKrDvQuKII_1\tcar\nPFb83m0smRg_0\tperson\nPHunbTKqKwk_0\ttrain\nPH5VqmGrnXs_0\tcat\nPIG9w10uliw_0\tbus\nPIo5FlB1sf4_3\tbear\nPIzyVPr2kvQ_0\tperson\nPI_spS2t57M_1\thorse\nPI_spS2t57M_0\thorse\nPJK-c0HQksg_0\tbear\nPJUvXC0Eumw_0\tairplane\nPJsCV-lA78A_0\telephant\nPJ0Y1xQ7ZJo_0\thorse\nPJ2kZmkL25Y_0\tperson\nPKGRn71TQGQ_6\tairplane\nPKGRn71TQGQ_1\tairplane\nPKtLlpi00cM_1\tskateboard\nPK_UdRSa36U_0\tmotorcycle\nPMDSUC0_Ytg_0\tbus\nPNxobv7rkRU_0\tperson\nPOWngj1oBhQ_1\ttrain\nPOpePYwyHWY_0\tbus\nPOu1oPwNd4g_0\tumbrella\nPPeaYnqzi9g_0\tperson\nPPjAhD3i-v4_0\tbus\nPPqkkhaUIdE_3\tbus\nPPqkkhaUIdE_0\tbus\nPPqkkhaUIdE_1\tbus\nPRaq5kZmO2A_0\tbus\nPRyc4Vp0s00_0\tbird\nPSyuR_D5C2c_0\tcat\nPTLtv0VJ0_s_0\tperson\nPTM6VrBcP80_0\tdog\nPTewrgfas9o_1\ttrain\nPT6u63wHOhs_0\tdog\nPT_tMCTzlSc_0\tperson\nPV_FZhj_0hI_0\tcar\nPWZIO2hdNRU_0\tperson\nPWiyz8b24es_0\tairplane\nPXxs6Hzx7Pk_1\tzebra\nPZ3X20r0oVc_1\tbird\nPZ3X20r0oVc_0\tbird\nPdPZkfHUOq0_0\tperson\nPd9bh2hiWAk_0\tperson\nPeA8729U1jg_0\tboat\nPeJxY7YFBTA_0\tknife\nPgFIqGCjnc0_0\thorse\nPgNvdw3Zges_0\tumbrella\nPgjeF-iHzLk_0\tperson\nPgyVMv-RRL8_0\ttruck\nPiI1e3aKeos_0\tperson\nPkju9RRBRAU_0\tperson\nPn01hUEOICo_0\tbicycle\nPoI-RFl6jqU_0\tbird\nPoI-RFl6jqU_2\tbird\nPpX6lJOP6ng_0\tperson\nPq1kVNudVJo_0\tboat\nPsPMm45bDZA_0\tbird\nPskTcGACgjw_0\tperson\nPsrCCNATJd0_1\telephant\nPs9peKxde4U_0\tdog\nPvCZZzw4FKw_0\tperson\nPvQVqhtqTVk_1\tperson\nPvQVqhtqTVk_0\tperson\nPv3IqqHid-w_0\tairplane\nPv3IqqHid-w_1\tairplane\nPw7zlPV9yh4_0\tmotorcycle\nPytUHdEhipQ_0\tairplane\nP0FylASL6h4_0\tperson\nP06NLpHGLb8_0\ttruck\nP06NLpHGLb8_1\ttruck\nP1FTUN2gJkY_0\tperson\nP3JAtlf2-VA_0\tcat\nP3MhJa_p-dU_1\ttruck\nP5MpdcJgQrI_0\tskateboard\nP5NEco_Rqas_0\tmotorcycle\nP5NEco_Rqas_1\tmotorcycle\nP5v3n_5s-F8_0\thorse\nP7i0pgLo9kg_1\tcar\nP8E7gprJa1s_1\tskateboard\nP8_7-uFl2Go_0\tbicycle\nP9dDbodBY8s_2\tmotorcycle\nP9dDbodBY8s_0\tmotorcycle\nP9dDbodBY8s_1\tmotorcycle\nP91LJh-_E0Y_0\tcow\nP-FrYGR7Bf0_0\tperson\nP-phCIDPeWw_0\thorse\nP-27cmR3CZE_0\tknife\nP-_MzAIxz2E_1\tknife\nQBAxag8dq6Q_0\tcow\nQBfotDmdDkk_1\tskateboard\nQBrAST1Q2iE_0\tperson\nQCCt8ooY4qg_0\tperson\nQCjqG8908mY_0\tcow\nQEDWauqnaSk_0\tskateboard\nQEGY7Dq2x9s_0\thorse\nQE0MjXjSFjU_0\tboat\nQFS35qERdLE_0\tperson\nQFeMKKxurVg_2\thorse\nQFxep-yih-s_0\ttruck\nQFxep-yih-s_1\ttruck\nQGN2-Iqa4QQ_0\tperson\nQHPYpnJSf2s_0\tcat\nQHhkx3CSiWk_0\tperson\nQJ1W4Pajbv0_0\tperson\nQLmFsJCZy_o_3\tknife\nQMRFisCEGQc_0\tperson\nQM9Kddu2XcQ_0\ttrain\nQObG-uf4v68_0\tmotorcycle\nQOjAwmQ_7vA_0\tperson\nQPtMbvxzFuE_2\tbear\nQQC7AIIJg2Y_0\telephant\nQQLrVBS8VSo_0\tperson\nQQLrVBS8VSo_1\tperson\nQSTf92HwJS0_1\tdog\nQSTf92HwJS0_0\tdog\nQTjiYkMuDGI_0\tknife\nQTqvJZS8ZNo_0\telephant\nQUIxOZH8N8c_0\tperson\nQUUgu5YvS1c_0\tperson\nQU7X6RkjKPE_1\tboat\nQVUI5ZkkDsA_0\tperson\nQVnam2Ma6mY_0\tperson\nQY1rz6k86s0_1\tperson\nQZS3V-7xnAA_0\tperson\nQZWqiN4OA_A_0\tperson\nQZk1HSA90KA_0\tknife\nQaUHYb5os4U_0\tperson\nQahBgQXhNfo_0\tcat\nQbOvfWFyPzg_0\tdog\nQbOvfWFyPzg_1\tdog\nQbPvdKEmnrI_0\tperson\nQb4RNeQYfPc_0\tboat\nQcLa-GP2ITc_0\tperson\nQcLa-GP2ITc_1\tperson\nQdeUvHCiXwc_1\thorse\nQd0chk9vUQ0_0\tbear\nQeISQLJERxg_0\tperson\nQfJeJLieLew_0\tcow\nQfJk-eDxmKE_0\tperson\nQfkb-gc72qg_0\tcow\nQgPao5AkXFU_0\tskateboard\nQgiX6-1aN-4_0\tbus\nQhGx_MwYnWs_0\tperson\nQhIp71nr7Vk_0\tdog\nQk_VhG5lt1Q_0\tcat\nQmRFPW81gZc_1\ttruck\nQmfJmQuF1-I_0\tbus\nQmuLT1MpdP8_0\tperson\nQm2yaeiexlI_2\tmotorcycle\nQrd-Q3XrT3A_0\ttrain\nQszBg-eN7F8_0\tcat\nQtBYK8AxWCw_1\tperson\nQtpKcTyf4n4_0\tknife\nQtq2m-MV2q4_0\tcow\nQvY9ysq30EI_3\telephant\nQvY9ysq30EI_5\telephant\nQvY9ysq30EI_0\telephant\nQvY9ysq30EI_2\telephant\nQwJNOYFZ3W8_1\telephant\nQwTIODgGfOM_0\tperson\nQxLFtmn_Igw_2\tbear\nQyyPl-aCFUs_0\tcat\nQzETtzOBUaY_0\tperson\nQ0HpPvC0bKA_0\tperson\nQ0M_Fog02Yw_1\thorse\nQ0UrlXLNioY_1\tumbrella\nQ0tQtb1npx4_0\tcar\nQ0x55aCCNxA_0\tperson\nQ31q8b3CSN8_1\tskateboard\nQ4rAM1058Z4_0\thorse\nQ4rAM1058Z4_1\thorse\nQ5G2n-3zXX8_1\tperson\nQ5G2n-3zXX8_0\tperson\nQ5X1kisU8Qo_0\tperson\nQ6hwtMw2jkU_4\tskateboard\nQ6hwtMw2jkU_3\tskateboard\nQ7SViqj0bEg_0\tdog\nQ83xNK10WK0_0\tbear\nQ-lTGQgTOEg_0\tperson\nQ_rsZh5VqdY_0\tperson\nRANBJV7BN3k_0\tperson\nRAmxGTzr25A_0\tperson\nRBccU2wq7Qs_0\tknife\nRBclSX-7rYQ_0\tperson\nRDiehz1pFVA_0\tknife\nRD7nVPZTGEw_0\tskateboard\nREBfrgEC_3U_0\tknife\nREh7f-__WqU_0\tcat\nRE40E9-qdHE_0\thorse\nRFO8tA6rfbo_0\ttruck\nRFbhEQ4qN-A_0\tperson\nRIfxXKT-_88_1\tskateboard\nRJZgo3_JEPs_0\tperson\nRJi5ZRGQb-A_0\tperson\nRJxPTuKUKjk_0\thorse\nRKFpQfRSYIc_2\tmotorcycle\nRKFpQfRSYIc_3\tmotorcycle\nRKFpQfRSYIc_4\tmotorcycle\nRKFpQfRSYIc_6\tmotorcycle\nRKFpQfRSYIc_7\tmotorcycle\nRKFpQfRSYIc_8\tmotorcycle\nRKFpQfRSYIc_9\tmotorcycle\nRKFpQfRSYIc_10\tmotorcycle\nRKFpQfRSYIc_11\tmotorcycle\nRKFpQfRSYIc_0\tmotorcycle\nRKFpQfRSYIc_1\tmotorcycle\nRLcZcFP03fA_0\tperson\nRN6TzMbUlyg_0\tairplane\nROdg8e5a0Fk_1\tcow\nRPwZjkygYo4_1\telephant\nRR-fksDmQTU_0\tdog\nRSLwmLbf3No_0\thorse\nRSO2IDZGDus_0\tperson\nRSQ7pHT5sU4_1\tcow\nRSWyviTCTqk_0\tcat\nRTAQO62dbRo_0\thorse\nRTONY5PqRUo_0\tskateboard\nRT0mh9U0YDc_0\tperson\nRUAbb66fW18_0\tbicycle\nRUW8xYh84q4_0\tdog\nRU0u42rf0Hw_2\ttruck\nRU0u42rf0Hw_3\ttruck\nRU_8ryQNxC0_1\tbird\nRWJfJx1nXNQ_0\tbicycle\nRWo2zaceWcc_0\tbird\nRahqzUIhIkc_0\tcow\nRawtpxzAbmM_0\tperson\nRdZGVs8pH40_2\tskateboard\nRdZGVs8pH40_1\tskateboard\nRdge7lmfdc8_0\tperson\nRfVv6ECZ78Y_3\tbear\nRfa2If7RJTY_0\tknife\nRfa2If7RJTY_1\tknife\nRfvNPPjs-bw_0\tboat\nRi3O4rz5S2o_0\tboat\nRoMemRfbKkc_0\tperson\nRoNJ0fP0VUU_0\tperson\nRqAANAYxYz0_0\tperson\nRqqaUsDM-aI_0\tperson\nRrnixlsQyn8_0\tperson\nRr6AsTlUNKQ_0\tperson\nRspILw0UAM8_0\tperson\nRsyjwcMkRrY_1\tknife\nRsyjwcMkRrY_2\tknife\nRt1reRy5GVY_0\tperson\nRuFIanBmYzM_0\tbicycle\nRu9ksAvNYc0_2\tcow\nRwVTAYsyWMo_0\tperson\nRxWOvD9i9Ig_0\tcar\nRxtS3kGOYoc_0\tbicycle\nRxtS3kGOYoc_2\tbicycle\nRxtS3kGOYoc_4\tbicycle\nRxtS3kGOYoc_6\tbicycle\nRxtS3kGOYoc_9\tbicycle\nRxtS3kGOYoc_12\tbicycle\nRx9YjtdgOEI_0\tperson\nRyVdNK-PCyg_0\tperson\nRylJTxUTfF0_0\tskateboard\nRzdsXt87bVE_0\tdog\nR0biK134LTQ_0\tperson\nR0n9cqLQE4E_0\tskateboard\nR3rDAaPE_s4_3\ttruck\nR45uCINxuVY_0\tperson\nR7IE_IohaIk_1\tairplane\nR7IE_IohaIk_6\tairplane\nR7IE_IohaIk_0\tairplane\nR8Zg4uo1QpM_0\tperson\nR9d1vlii7cs_8\ttruck\nR9hRCG8pAHM_0\thorse\nR9hRCG8pAHM_1\thorse\nR_xLhXpHgp0_4\tskateboard\nSAeiSpeFynU_1\tbus\nSBmb0VU07rs_0\tboat\nSCLi5OFtzQk_0\tskateboard\nSCaWHsWzxqY_0\tperson\nSC18zgZ9Diw_0\tbus\nSDCTiDVOdW0_0\tbear\nSFA4mVjImxk_0\tperson\nSFoil_6CvbI_0\tbird\nSGsRwH8YxQg_1\tairplane\nSGsRwH8YxQg_11\tairplane\nSHSsDGmwywY_0\tcow\nSIZ3AYCr7PQ_0\tperson\nSIv3Hcq1ge8_0\telephant\nSIv3Hcq1ge8_1\telephant\nSJkZwyPxUTg_0\tcow\nSJqduSR9h4g_0\telephant\nSJwgIeOkfTM_1\thorse\nSKoDZimqLV0_4\tbus\nSMF8aDGwELI_0\tgiraffe\nSNbBUZtngzM_0\tperson\nSNnofRkUk8w_2\tboat\nSNqtno2pOzc_1\tdog\nSNqtno2pOzc_2\tdog\nSQn8ueHVBWc_4\telephant\nSQn8ueHVBWc_6\telephant\nSQn8ueHVBWc_1\telephant\nSQn8ueHVBWc_3\telephant\nSQ4tDbbdzr8_0\ttrain\nSQ4tDbbdzr8_2\ttrain\nSSjgAjilS8g_0\tperson\nSSwA_nC9rr0_0\tperson\nSThjw6JeBnQ_0\tperson\nSTuEo8vap08_0\tperson\nSUHEgX-8bo0_0\tperson\nSUwLfCebumU_1\tbear\nSUwLfCebumU_2\tbear\nSVUAFI7bHqQ_0\tperson\nSWedQv5UnQo_0\tperson\nSXWo-zKZICs_0\tperson\nSYT4odK3Dwo_1\tbird\nSc_CAareVEI_1\telephant\nSc_CAareVEI_6\telephant\nSc_CAareVEI_7\telephant\nSc_CAareVEI_2\telephant\nSc_CAareVEI_3\telephant\nSdzIWTR-rkc_0\tperson\nSeBOeRzwqrQ_0\tskateboard\nSeU_71ydaeA_0\telephant\nSehCD9wP-Pk_0\tperson\nSf9OdV3i3I4_0\tperson\nSgglaVke5lo_3\tboat\nSgySshdgJrQ_0\tmotorcycle\nShves64RCp4_0\tcat\nSiotcXGUwAs_0\tperson\nSj56u4dFe4k_2\tperson\nSlR9qCk_m9k_0\tmotorcycle\nSlR9qCk_m9k_1\tmotorcycle\nSlZZmtOGyeE_0\tairplane\nSlZZmtOGyeE_1\tairplane\nSndDcPzB8Hc_0\tcat\nSn2SGmheI-Q_0\tperson\nSn9gOBw9bf4_0\tperson\nSoiA6jtejG4_0\tdog\nSpbyBYH0OjI_0\tperson\nSph2g6B-X2M_0\tcat\nSpjssmEyc_o_0\tairplane\nSqHtdCP5Oao_1\thorse\nSqHtdCP5Oao_2\thorse\nSqLiHZHzp9w_0\tperson\nSqoR7vKYzCY_0\thorse\nSq-Xok-ea7U_0\tperson\nSreiPFJ6vBw_1\tboat\nSsMS0eIy2Ws_0\tperson\nSse7vXMMO6E_0\tperson\nSuaush4Da4s_0\tperson\nSvPL8gOREaU_0\tknife\nSwaILKCtBVA_0\ttruck\nSw4B_VFic3M_0\tskateboard\nSw7L3wImbSA_0\tperson\nSyldRIQbAGU_0\tperson\nSzVyFmQ28Xo_0\tcar\nSzkobSwGTMk_1\tbird\nSz2bTIe9kTo_0\tairplane\nnrEv-Plh45s_0\tbear\nnt_BXwq_xhA_0\tgiraffe\nnuCdww9iIOs_0\thorse\nnuMeNIi1MPY_0\tperson\nnuMeNIi1MPY_1\tperson\nnui8beXjUlU_0\telephant\nnui8beXjUlU_1\telephant\nnvMXQKwroRY_0\tperson\nnvaO13WFhos_0\tperson\nnxBkP48NgKY_0\tmotorcycle\nnxclZ6iCf7o_0\tcow\nnyogtZp3kIk_1\tairplane\nnzf12QyuD4E_0\ttruck\nn0tx4V2rF3I_1\tgiraffe\nn09NxJcTEYQ_0\tperson\nn12ITkwyzvM_0\tcow\nn15n46culQU_0\tperson\nn19nqH4078Y_0\tbear\nn2F8uNrgh1U_1\telephant\nn2daSQR_dTI_0\tmotorcycle\nn3Eb6Cf77Vg_0\tairplane\nn3aHtfCo_aw_0\tperson\nn3fhSGUvtH8_2\tknife\nn5alwWwFPb0_0\tmotorcycle\nn5osSY0_BSo_0\tperson\nn5-RrJI-Lxw_0\tperson\nn6I0k52pV18_0\tbear\nn8xNf-PRHnc_0\ttruck\nn9AUV2KuhLo_0\tcow\nn9zSAZMj2Mk_0\tknife\nn-I-WnLfnqE_0\thorse\nn-QBM6yD7RI_0\tbird\nn-eDiuWYJUc_0\tperson\nn-1FhryZboM_0\tperson\nn_Cv1LzGol0_0\tperson\noBixVhXVcmY_0\tperson\noBjIRWu_BWA_0\ttruck\noCCV0-mP2R4_0\tbus\noDlSzIkDJGM_1\tcar\noDnobYn8maE_0\tperson\noDrYXyIN9xs_2\tdog\noEcyeE0kNFc_0\thorse\noElAgrukyOk_0\tperson\noE0bjG0z-nk_0\tperson\noGDp2b_LvDA_0\tbicycle\noHu9fCIhAjs_0\tperson\noIQuiXJzEUI_0\tperson\noIYCDBqfT6I_1\telephant\noIZHf-r5C3w_2\tbird\noI3ETWYxCi8_2\tperson\noI3ETWYxCi8_1\tperson\noJAivZwYxDE_0\tperson\noLTHGMleOxk_0\tcar\noLTHGMleOxk_1\tcar\noMZczwLgR1Q_0\tboat\noMZczwLgR1Q_3\tboat\noMZczwLgR1Q_1\tboat\noMZczwLgR1Q_2\tboat\noNMf32fzYvo_0\tperson\noOi9E4se4ww_0\tperson\noOp7fTxc8qY_0\tperson\noOp7fTxc8qY_1\tperson\noQcVQukPVdA_0\thorse\noRacxmfNaSM_0\tcat\noSwwku39aC0_0\tskateboard\noXHr2yBfL3Y_0\tcat\noXfOERZ2kMs_0\tcow\noXlK1t1qisA_0\tperson\noYw8UE0VSFk_10\telephant\noYw8UE0VSFk_1\telephant\noYw8UE0VSFk_5\telephant\noYw8UE0VSFk_8\telephant\noY5CyHk-QEo_0\tperson\noaHCd7KI_Fc_0\tairplane\noaK_EfFOb7o_2\tskateboard\noaK_EfFOb7o_0\tskateboard\noa5NT5mX--c_0\tperson\noa838tg7QCk_2\telephant\noa838tg7QCk_3\telephant\nocJUmpBIBOo_0\tperson\noc7XeYj7dOE_0\tskateboard\nodjK5W70JaE_0\tperson\noeYHzAMgoQ4_0\tskateboard\nofynEJHRTz4_1\tperson\nof1ISNDelz4_0\tcat\nogJGxnVqTWY_0\tcow\nogNqc-uHzQ4_0\tumbrella\nohkrDDXUwjY_0\tperson\nohrYGLaImow_0\tcow\nohxeFH800SE_0\tskateboard\noiftoNj28hs_0\telephant\noiwU7UpO9S4_0\tperson\noi4GfdQBxyc_0\tperson\nojiIyU5ibT0_0\tperson\nokPcGR4BRQM_0\tperson\nomsmPSC4u3A_0\tairplane\nonH8ELLteHg_0\tmotorcycle\noo3eTJKpErU_1\telephant\noo3eTJKpErU_2\telephant\nopWm4bW5B9k_2\ttruck\nopYiNVXmySg_0\tskateboard\nopkxXg1s8ZQ_0\thorse\nopkxXg1s8ZQ_2\thorse\nopkxXg1s8ZQ_3\thorse\nopkxXg1s8ZQ_4\thorse\nosYXdQYkiPQ_0\tperson\notKNUa-KgUg_0\tcar\notKNUa-KgUg_1\tcar\notOxAXKskbI_0\tboat\notU4Zd1n65g_0\tbear\notqOLpbz4LQ_0\tairplane\nouK26Crplso_1\tcar\nouSUKHZs1Dc_0\tperson\nousG5WHZq8I_0\telephant\nouwAzKpUG7k_0\ttrain\novQiwCBG8Eg_4\telephant\novZ4In0kLUg_7\tbear\novZ4In0kLUg_2\tbear\novZ4In0kLUg_6\tbear\nowW-da7Tdls_0\tperson\nowtKQFT_gNk_0\tperson\nox0mlEooWI0_0\tskateboard\noyuMudJ9EM8_0\tperson\nozRJI9h3tks_0\thorse\nozRJI9h3tks_1\thorse\nozvxKPrfdo8_0\tdog\noz11xvTIbvM_0\tperson\no0QRA7gPhBI_0\tgiraffe\no02m7tfad28_0\tperson\no02m7tfad28_1\tperson\no09Ks_UmmkY_1\ttrain\no3eHOnTMxnU_0\tairplane\no4PVsZPaxOM_0\ttrain\no4PVsZPaxOM_1\ttrain\no4VOx1SeRKY_0\tbicycle\no4VOx1SeRKY_2\tbicycle\no4VOx1SeRKY_4\tbicycle\no4VOx1SeRKY_5\tbicycle\no4VOx1SeRKY_1\tbicycle\no4VOx1SeRKY_3\tbicycle\no7wb_t8x0D8_0\tperson\no8KS5SYj0GE_6\tbird\no8YfQD0GA00_0\tperson\no9gD7-MVkJ4_1\tbus\no-IwJTgdr_A_4\tbird\no_sONKO9OMk_0\tperson\no_7RumsdAcE_0\tmotorcycle\npAVwx70oxIc_0\tperson\npAthLZfnXaM_0\tperson\npAthLZfnXaM_1\tperson\npBWgDW8f6II_0\tperson\npB5-haagdS8_2\tbird\npEUCkpfCcaw_0\tboat\npEtOW-iQZCA_0\tperson\npE-OFVB2lzo_0\ttrain\npHsAHiqdb-c_0\tbird\npIHbW9IMV2E_1\tairplane\npIHbW9IMV2E_0\tairplane\npINK56mkS-E_0\tcat\npJBMnX2HBFo_0\ttrain\npJ6wkaE8-iY_3\telephant\npKFd8IXz4K4_0\tboat\npKnRcv--qEI_0\tcat\npLvGIJc0ETk_1\tcat\npMKMeBQzCC8_0\tdog\npMKMeBQzCC8_1\tdog\npMgX9KscZSg_1\ttrain\npNG0qeNr-Vo_0\tperson\npNWXXO380uQ_4\tdog\npNWXXO380uQ_10\tdog\npNWXXO380uQ_1\tdog\npNWXXO380uQ_2\tdog\npNWXXO380uQ_6\tdog\npP84ZurhiFY_0\tumbrella\npQAJTPvkPj4_0\tbird\npRArAdUzaKg_0\tperson\npRVlgxVhtuA_0\tcat\npRy6kU2p41E_0\tcat\npS5AzmSvRPY_0\thorse\npU9s744_T6o_0\ttruck\npVR9b-qG1Ig_0\tgiraffe\npVR9b-qG1Ig_6\tgiraffe\npVR9b-qG1Ig_7\tgiraffe\npVR9b-qG1Ig_1\tgiraffe\npXLbIBluyAQ_0\tbus\npXfO7xO-99w_0\tcat\npYXDml6lcAY_0\tmotorcycle\npZCCPMu42GA_0\tperson\npbFuk0oX6a8_0\tbicycle\npbFuk0oX6a8_1\tbicycle\npbFuk0oX6a8_2\tbicycle\npb3p83fw9bg_0\tperson\npcUV4ja1VRc_0\ttruck\npceUU6aj_ao_0\tcat\npdyhFh6-rCo_0\tbear\npeBxgn7gXlw_1\tmotorcycle\npeHZd4qdOMI_3\tboat\npe00hbvqjDI_0\tperson\npe_73GR1-NI_1\tairplane\npfED6WafVwQ_0\tbear\npfpKoO-GjGI_3\ttruck\npfpKoO-GjGI_1\ttruck\nphXjZ1yxWD0_0\tbus\nphec6_yC2HY_0\tperson\nphjJhuKxT5Y_0\ttrain\npiGT-hRYHHQ_0\thorse\npiN1RiueJhY_0\thorse\npjLei6UAHsE_0\tairplane\npjLei6UAHsE_1\tairplane\npjZqJuEX1ow_0\tairplane\nS2FTgueR-80_0\tperson\nS2FTgueR-80_1\tperson\nS3U383sqlRs_0\tbicycle\nS4UDIyyqmlY_2\tmotorcycle\nS6h6E0IKO6Y_0\tdog\nS73sRU7b2dk_0\tperson\nS9QmlxGGxGM_4\tknife\nS9goDsKFXAg_0\tperson\nS-qgaqzenIE_0\tperson\nTBpnes8Z-3s_0\tperson\nTCtRzPGrwls_0\thorse\nTCycfRWpg0s_0\telephant\nTDKDtLliMhg_0\tperson\nTDlLgW8Fjes_0\tperson\nTFcak4kNd2c_0\tperson\nTGFSBSitWNw_0\tcow\nTISjnLr1r-k_4\tgiraffe\nTISjnLr1r-k_5\tgiraffe\nTISjnLr1r-k_3\tgiraffe\nTJsLSuQcb7E_0\thorse\nTKadOIk-uPI_5\ttruck\nTK61mJMHqTE_0\ttrain\nTK61mJMHqTE_1\ttrain\nTLxcXucOpWw_0\tskateboard\nTMaLrtjFU34_3\tcow\nTNNXwm3Bt5I_0\tbicycle\nTOLyNcTSGPA_0\tperson\nTPglVxQN85I_0\tdog\nTRH4PZkAkiE_0\tperson\nTSl3wSreplo_2\tbird\nTSl3wSreplo_0\tbird\nTVuX76wWzwY_0\tperson\nTW9LBSqxNWo_0\tbicycle\nTW9LBSqxNWo_2\tbicycle\nTW9LBSqxNWo_6\tbicycle\nTXD-idarfhU_0\tperson\nTYsJu2G5WVY_2\tknife\nTZdDUMDyozA_0\tdog\nTZfFEYUY5_0_0\tboat\nTZsigdW7Qfs_0\tairplane\nTaL6ssJD8z4_0\tairplane\nTalhQQ9B7vc_0\tzebra\nTa-JBO0InZk_0\thorse\nTa-JBO0InZk_1\thorse\nTa-JBO0InZk_2\thorse\nTbm_BFLOPic_0\ttrain\nTcRl6wotFw4_0\thorse\nTcR9fR_SWLg_0\tbicycle\nTeiC-tObc4o_0\tbicycle\nTgRRY3Mn0Ro_0\tperson\nTi411VXWtAc_0\tdog\nTjCiDUNoDi0_0\tskateboard\nTkktEeCiSAo_4\tknife\nTkktEeCiSAo_5\tknife\nTlXSJmmN3dc_0\tmotorcycle\nTnB8G7eZm24_0\tperson\nTnY1qP0YQQ8_0\tperson\nTnc7CCuk78Y_0\tperson\nTn4trDBJAqE_0\tperson\nTo8VzjtX70s_1\tperson\nTo-lnvpzIKY_0\tperson\nTqKcS4Cx7wc_0\tbird\nTqvuyyM_x4E_0\tbird\nTqvuyyM_x4E_1\tbird\nTsM45PkaTj0_1\tbird\nTs4iqmKVRy4_0\tknife\nTtI1W2xFQ5k_0\tperson\nTtI1W2xFQ5k_1\tperson\nTtnuIzV01ek_2\ttrain\nTtyfhN-jWcc_0\tperson\nTuEArk4EFWg_0\tperson\nTuEwZSEUe5A_0\tperson\nTuOnAlE6TRs_0\tairplane\nTubHgt_FxYo_0\tperson\nTufSi0uSU8M_0\tperson\nTvUmQi32j08_0\tperson\nTvUmQi32j08_1\tperson\nTvuhORVyaL4_0\tperson\nTvuhORVyaL4_1\tperson\nTwH6hv5zVIU_0\tairplane\nTwSnlq5Kma0_0\tskateboard\nTxV4qpdgJ3Y_0\tairplane\nTxV4qpdgJ3Y_1\tairplane\nTyIzjLHGvjo_0\tperson\nTzUMxAOWWcc_0\tbicycle\nTzVawH7veiM_0\tbicycle\nT0WCoXgklkw_0\tperson\nT0r5yfzMs4g_1\tbicycle\nT24d3EHv2GE_0\tbird\nT406qi8vIlk_5\tairplane\nT406qi8vIlk_2\tairplane\nT6XxSbeAl6Q_0\tmotorcycle\nT8e9Qi4dcNY_1\tbear\nT95G52MuPFU_0\thorse\nT-PL14w9TV4_0\tcat\nT-cOBQACeAw_1\tbird\nT_2A3L49ah4_0\tdog\nT_2A3L49ah4_2\tdog\nT_2A3L49ah4_3\tdog\nT_2A3L49ah4_5\tdog\nUANkhHNWM-M_0\tperson\nUAnl6TGZhxs_0\tcow\nUA5VCImEZ2Y_0\tdog\nUBdNIuCPaZ4_0\tcar\nUBdNIuCPaZ4_2\tcar\nUBsG3-ocU64_1\tboat\nUE40h6VhUaU_1\tbicycle\nUF8l_MU2rj8_0\tperson\nUGCPxfU7FKM_0\tperson\nUG5FFY29OV0_0\tcat\nUHO129a_p0U_0\tairplane\nUHYwdGF9W-0_1\thorse\nUHYwdGF9W-0_0\thorse\nUIvJPTYu6Hc_0\ttrain\nUI4IvmmFIPQ_0\tperson\nUKExOybWiRM_0\tmotorcycle\nUKExOybWiRM_1\tmotorcycle\nUKkr05PKrb0_0\tbicycle\nUKlB9mDIXss_0\tperson\nULdZGJs5ta8_0\tmotorcycle\nUMsR07JXCYs_0\tcow\nUM446G0Lud4_0\tknife\nUOUaveJ_TWA_0\tperson\nUO_zNFtEt3Q_0\tperson\nUPkEE2dnlkU_0\telephant\nUPkEE2dnlkU_1\telephant\nUQAJPD_gH7g_0\tcat\nUQDXdgIlpDg_0\tknife\nUQibn_ZNp9Y_0\tskateboard\nUQibn_ZNp9Y_1\tskateboard\nUSAjeRaDlJ0_0\tperson\nUTqlz0i9KIo_0\tperson\nUVTPHohbCV0_0\tperson\nUX4dpwv6qWE_0\tdog\nUYAtAlnvVy4_0\tskateboard\nUYc0lVVxayQ_0\tdog\nUcCtmXy5F4g_0\tdog\nUcbWaG8GwRs_3\tairplane\nUcbWaG8GwRs_2\tairplane\nUceYFW8-zZM_0\ttrain\nUcse975FqUA_0\telephant\nUc5PAhXhIzk_0\tumbrella\nUgsSu7wC28w_0\tbird\nUhj0HRMHPXY_0\tperson\nUhsh3JUb_aI_0\tbicycle\nUisVwousE8g_0\tcat\nUi8yPflhqHs_0\tperson\nUjMTd3LCxyQ_0\tperson\nUjMTd3LCxyQ_1\tperson\nUlFA0xDQcS4_0\tskateboard\nUlhZSONgFCI_1\tcow\nUlhZSONgFCI_2\tcow\nUmvp1XgX6Qc_0\tperson\nUm-FzEOyncc_0\tperson\nUnUlhJaHWlA_0\tbear\nUnyyMjT0BCc_0\thorse\nUsCJdEa7tq4_0\tdog\nUsCJdEa7tq4_1\tdog\nUsrv7_ONvi0_0\thorse\nUs6dL_WD7xg_0\ttruck\nUtyaA_QRIrQ_0\ttruck\nUu9k1VohpvA_0\thorse\nUvptsJcl_ms_0\tperson\nUwtHiozuyRs_0\tperson\nUxPh-hnwal4_0\ttruck\nU2LvNquzuZ0_0\tbicycle\nU2LvNquzuZ0_2\tbicycle\nU4LhReaGH70_0\tperson\nU64eMon0R9w_1\tperson\nU74o2HGsFeI_0\tdog\nU853uMV0qAY_0\tperson\nU86p5VtUC6c_0\tknife\nU9YbGyTBb5k_0\tperson\nU99ENpOmVGI_0\tairplane\npmrTy1xQ5kI_0\tperson\nprJIAYsv8bQ_0\ttruck\npramqy_Y1gA_0\tboat\nprlcpxzCoyc_0\tbus\nps-nNC6Equg_0\tcat\nptF2Hqj7DGk_1\tmotorcycle\nptF2Hqj7DGk_0\tmotorcycle\nptPi712LDq0_3\tbear\nptU4EDudgg8_1\tbus\npt6v3JZFi4c_0\tbird\npuifEp7W50E_0\tmotorcycle\npuifEp7W50E_1\tmotorcycle\npu0G99aVryc_2\tcar\npu0G99aVryc_0\tcar\npwFqv42foTM_0\tperson\npye4y8sPr9I_0\tperson\npy0U90-ZTkI_0\tcat\npy2dhJjpOaI_0\tbear\np19EU6tw9oM_0\tperson\np2DntTqvGT4_3\tcar\np2DntTqvGT4_1\tcar\np2QsmFuYxdI_0\ttrain\np2TTKNDiGv0_1\tbicycle\np4pf9W4qt8s_0\tperson\np40Oqh_akS4_3\tbird\np43GludvR_g_0\tbicycle\np5F9hHDkbKc_0\ttrain\np7UAl7_bv4s_0\tbus\np8KQvF1DyLg_0\tperson\np8YhfWsz1JY_1\tperson\np8YhfWsz1JY_0\tperson\np8gE3VpTAR4_0\tperson\np84Z-poVaAw_0\tmotorcycle\np9ixpjYEEag_0\tmotorcycle\np-J_LbVq7CU_0\tperson\np-SJ_Ym5pTA_0\tcow\np-XasPaki0k_0\tcow\np-cJamorAiY_0\tperson\np-2rgSte1DI_1\tbus\np-2rgSte1DI_2\tbus\np-6u3d8YV70_0\tperson\np_YVPahadQ4_0\telephant\np_YVPahadQ4_1\telephant\nqDP6_m4bDRA_0\thorse\nqD8NS4r2Gd8_1\ttrain\nqEjyhyeCIR8_0\tcow\nqEjyhyeCIR8_3\tcow\nqEjyhyeCIR8_1\tcow\nqEjyhyeCIR8_2\tcow\nqGiLjP8-EVQ_0\tperson\nqHYuGyp8_HU_0\tbear\nqHZsnSLmqEY_0\tperson\nqIJo1R3rHmQ_0\tperson\nqJI7mnjOp0A_1\tumbrella\nqJOaXM8s-Yo_0\tknife\nqJOaXM8s-Yo_1\tknife\nqJugj62heF8_0\tairplane\nqKqEqxMZHVg_0\tperson\nqM566R4U4Ug_0\tbird\nqQbEwbtvdRg_0\tperson\nqSR2E4eqjqI_0\tskateboard\nqSiMwC5e5_I_0\tperson\nqUGXSXCXUbw_1\tperson\nqVCH1ozivyk_0\tperson\nqV9Ll-N_rpc_0\tdog\nqWpIdTdBIQU_0\tboat\nqWpIdTdBIQU_2\tboat\nqWpIdTdBIQU_3\tboat\nqXaS7daelL4_0\tperson\nqXfnmaLtO-M_0\tairplane\nqXwXdnrUo5w_0\ttrain\nqXx4Vj-HwkU_2\tbus\nqYf_XBAUa_o_2\telephant\nqZFwurCX4DM_0\ttrain\nqZH-IY7bBzg_0\tperson\nqZQcY5PTh10_0\tcat\nqZVUho1xBlo_1\ttruck\nqZVUho1xBlo_2\ttruck\nqZVUho1xBlo_0\ttruck\nqbYjOWN6n70_0\thorse\nqceiUxIt1VE_0\tcar\nqcjVVDAbHUI_0\tperson\nqcmbCgcy3co_0\tperson\nqdNXPwWD9_Q_1\tperson\nqdzu1EFDYUE_0\tcow\nqel4U0nmQOI_1\tperson\nqfp7BvAtQa8_0\tperson\nqgKnno5T6f0_0\tmotorcycle\nqguyMwcAj4M_0\tperson\nqhb1bts1fSM_0\tbear\nqheo-lRVpfk_4\tknife\nqheo-lRVpfk_0\tknife\nqheo-lRVpfk_1\tknife\nqheo-lRVpfk_2\tknife\nqheo-lRVpfk_3\tknife\nqhmscyJC8dM_0\telephant\nqh8xnvGfllE_1\tbird\nqh8xnvGfllE_2\tbird\nqipZi2kaQyA_3\tperson\nqi3hoxEao_g_1\tperson\nqi3hoxEao_g_2\tperson\nqptB3_MZagA_1\thorse\nqp5tJGAi9h0_0\tairplane\nqqL9gnwx87g_0\tcow\nqqL9gnwx87g_1\tcow\nqq4_m1S3AOI_0\tperson\nqt6FFVa8DGM_0\tperson\nquoX4193twY_0\tdog\nqvMRVm660LM_0\tperson\nqvZGFb3CbxA_0\tbird\nqvcNxorHqCc_0\tperson\nqx647iZCsoE_5\tumbrella\nqyQFBM_7mBw_0\tbird\nqywYqT8IzaQ_0\tskateboard\nqz4S2Tn1Jkk_0\tperson\nq2qEXqY43ws_0\tcow\nq2v3AmGBH-M_4\ttrain\nq2v3AmGBH-M_1\ttrain\nq2v3AmGBH-M_5\ttrain\nq2v3AmGBH-M_6\ttrain\nq3TB2Rnymkg_1\ttruck\nq3pYgC4-lrs_0\telephant\nq35X7FnaiGw_2\tbear\nq5BC4AVKV4c_0\tperson\nq6nXZqEmQGQ_0\tperson\nq9MXoyUF-BU_0\tperson\nq9d2hPrip6k_0\tdog\nq_dqx0-AtKk_0\tperson\nrA595TIyUgY_0\tbird\nrBko9NgVOX4_0\tperson\nrB2323YW1iA_0\tcow\nrDQ2hcIWoBY_1\ttrain\nrEXtAqxJj8c_0\tperson\nrGVf1BsLfng_0\tcow\nrHvp_Dghuho_0\tperson\nrH33U6qgd9M_1\tumbrella\nrIqhuv94Zuc_0\tperson\nrKN5E25jozk_1\tperson\nrKN5E25jozk_0\tperson\nrLbBCTSGdzc_0\tperson\nrOoxhMEKcgc_0\tbear\nrPEIT9eAAMY_2\tbicycle\nrPEIT9eAAMY_3\tbicycle\nrPUzTjaLdkk_0\tcat\nrPuPm0ctC3s_11\ttrain\nrQHtu5_Piv4_1\tcat\nrQKV6GBQuag_0\tairplane\nrRH0VLQDJZQ_0\tperson\nrSF1UQ01lZc_0\tperson\nrSSbdX8817Q_3\tdog\nrSu82skaMJQ_2\tskateboard\nrSu82skaMJQ_5\tskateboard\nrTIN784f0CM_0\ttrain\nrTIN784f0CM_1\ttrain\nrTIN784f0CM_3\ttrain\nrTV3ev-xyuk_0\ttrain\nrTYmEM2Lhew_0\tbus\nrT4P9ZJeBG8_0\ttrain\nrT4P9ZJeBG8_1\ttrain\nrT4crgFLycE_5\tbicycle\nrUJ7zeax1zY_0\tperson\nrV1Baq6-C6Q_0\telephant\nrWyf2iqpfng_0\thorse\nrXf2T3VO-kI_1\tcow\nrYkLuW5NLic_0\ttrain\nrZi9k9F8S1w_1\tperson\nrZi9k9F8S1w_0\tperson\nrbIYpEELMQc_3\thorse\nrbIYpEELMQc_2\thorse\nrbMVAO2mJiY_0\tperson\nrbn7_DeuItc_0\telephant\nrcF4-O7o_Qk_0\tperson\nrcF4-O7o_Qk_1\tperson\nrc96rbja6VI_5\tskateboard\nrc-e_NDrZDM_0\tperson\nrdBSfuG2KBA_2\tboat\nrdBSfuG2KBA_0\tboat\nrdQvGZDUDJA_1\tperson\nrdhiEKvYF0w_0\tcar\nrdnDsUHCZSY_1\tcat\nrePM3_x9tqw_7\tperson\nrePM3_x9tqw_4\tperson\nrePM3_x9tqw_5\tperson\nrfL51BZGldc_6\ttruck\nVCkpd_d1z4U_0\tairplane\nVE-3PfVw5-Y_1\tairplane\nVG2QbeXEwec_0\telephant\nVIQGgTWrg00_0\tperson\nVIr_rdbfvQQ_0\thorse\nVJVWk9wyMjI_0\tcow\nVJmgPBopcB4_0\thorse\nVJ0by87MRoI_4\tbicycle\nVJ0by87MRoI_7\tbicycle\nVLSeTnShp54_0\tmotorcycle\nVLSeTnShp54_1\tmotorcycle\nVLSol2tA9WY_0\telephant\nVLcSoFR7qBw_0\tcar\nVMDBBz7G-Pg_0\tmotorcycle\nVMmtrv5OtMQ_0\tboat\nVMxS4op_OBg_0\tperson\nVNCLtdahLmI_0\tbear\nVNCLtdahLmI_3\tbear\nVNHGw5Sj0Qc_0\tperson\nVN8_N7Ceofk_0\tcow\nVP0WD1miM00_0\thorse\nVP20LIiI9S4_3\thorse\nVP20LIiI9S4_7\thorse\nVP20LIiI9S4_1\thorse\nVP20LIiI9S4_2\thorse\nVP20LIiI9S4_5\thorse\nVQWxUc9QOjU_4\tbear\nVRtl4gAWELM_0\tskateboard\nVRt9s3OQPzo_0\tperson\nVSLdNogDia0_0\tbird\nVSrmwgo-veI_1\tboat\nVTqoizpYNeI_0\tcar\nVTqoizpYNeI_1\tcar\nVTqoizpYNeI_2\tcar\nVTqoizpYNeI_3\tcar\nVT11p8szxZY_0\tcow\nVUVAbtGJbuE_0\tperson\nVUh5jCDWj08_0\tcat\nVUl6vkX7PRU_0\tairplane\nVVn3XeSqijk_2\tmotorcycle\nVWTes_MfrOc_0\tknife\nVXNEqQb5C4Y_0\tmotorcycle\nVXT0TH9jfZo_0\telephant\nVXZscyYzxqw_1\tperson\nVYYS45KWEgo_1\tdog\nVYr49ml0uaE_0\tperson\nVZj4RHsnOWU_0\tperson\nVZqdzb_qI2g_0\tperson\nVa81siK4zeI_0\tumbrella\nVdLqI43E7eY_0\tcow\nVd5pCJuOoDM_0\tcar\nVfBrelUfLFg_0\tcow\nVgpm6fwLIns_0\tmotorcycle\nVhc7DKkRHOo_0\tdog\nViQIgBdCkh8_0\tcar\nVlBlBgxUa-U_0\thorse\nVlq4fYmrr6g_0\tcar\nVmVN4E_qtfM_0\tperson\nVm9-f0pXycc_2\tbicycle\nVngapMBo560_0\tcow\nVou-Sfzlpu8_2\ttrain\nVqdeO4pa_rc_0\telephant\nVqj-Qv5bVyE_0\tperson\nVr1Wqz5_UA0_1\tcow\nVr1Wqz5_UA0_2\tcow\nVr1Wqz5_UA0_0\tcow\nVsAo8VBzDTM_0\tperson\nVsOw_U6hYRY_0\tmotorcycle\nVsOw_U6hYRY_1\tmotorcycle\nVsyd7-_CUA0_0\tperson\nVs2JphYinjk_0\tgiraffe\nVtdrYDJFw-Y_0\tperson\nVtkV11WZWEc_0\tcow\nVuDA6sPAa9U_0\tperson\nVuLf3ZTqniM_0\tdog\nVuW2wDK-uZI_0\tmotorcycle\nVv-z9_l8_ms_0\tbird\nVwdZHZPjlT0_0\tcat\nVwkf0U9PZvI_0\tairplane\nVwppYMiCI1g_0\tumbrella\nVwvER7iR2YI_0\tperson\nVxG5gvk1mfo_2\telephant\nVxH52JoUd0I_0\tperson\nVxyq13mC_uk_0\tperson\nVxyq13mC_uk_1\tperson\nVyf_VJEQ1jE_0\tairplane\nV0CjVa5_1P0_0\thorse\nV0sliERbCxI_0\tperson\nV0sliERbCxI_1\tmotorcycle\nV0w_hBBqe-g_0\tperson\nV1ufPW4ictQ_0\tskateboard\nV25H8smvzbM_0\tdog\nV56RVnEPG54_0\tmotorcycle\nV6rg5et7Q14_0\tcat\nV6rg5et7Q14_1\tcat\nV6_XA2w3sTs_0\tboat\nV7CVQjk9-Xc_0\tskateboard\nV8Pv-I4ovPs_0\tperson\nV9m1dMbXxug_0\ttruck\nV9qvycn1a3E_0\ttrain\nV-ZKLxW5cuM_5\thorse\nV-ZKLxW5cuM_2\thorse\nV-ZKLxW5cuM_4\thorse\nV-iFCgvAuCg_0\tperson\nWBcYTIQ65Ow_0\tperson\nWB6uQ708AxE_0\tbird\nWCNpGdfG8nk_0\tperson\nWCZ4ZQ5ohf4_0\tmotorcycle\nWGw94BtHxYE_0\tbird\nWGw94BtHxYE_1\tbird\nWG1DuTb70bQ_0\tcat\nWItuBm7azO0_0\tcat\nWKpjUNNgKG0_1\tperson\nWLZkZ-4Y9fY_0\tcow\nWN5u1Y1yGkA_0\tairplane\nWP5JXCVRe9g_0\tperson\nWP5JXCVRe9g_1\tperson\nWQ603pEp_1k_5\tairplane\nWTEO_Ywn9AI_0\tumbrella\nWTw46mBWjOw_1\tairplane\nWUvTKLEimNw_2\ttruck\nWWcVr4lbq3E_0\tperson\nWXETP4eMyD0_0\tcow\nWZWh1M3qGAc_0\ttruck\nWbXmf511q4E_0\thorse\nWb9i7jssQsY_0\tmotorcycle\nWcUFxXISmb0_1\tmotorcycle\nWcUFxXISmb0_2\tmotorcycle\nWcgQXl6I-Ks_0\tcar\nWc6RwJ_8yts_0\tperson\nWc_-Q9ba0zs_0\tairplane\nWdh2SMcRQ2M_0\thorse\nWdh2SMcRQ2M_1\thorse\nWfZR-VRmSB0_3\tboat\nWfl0LOShC_I_0\tbus\nWh9avYClECA_0\tperson\nWixZlWbnBdM_0\tperson\nWkvpcaxQTSg_0\tdog\nWlFD1z5akJc_0\tperson\nWlK6sU21od0_1\tdog\nWlP5_pcua1U_1\ttruck\nWl1vbjfAxeA_0\tdog\nWl1vbjfAxeA_1\tdog\nWmNKtcf5iLM_0\tperson\nWpxEmYBfqSU_0\telephant\nWqb84sv1P68_0\tcat\nWrClMyPxaDk_0\tperson\nWrSS3nc07hE_0\tcat\nWsFZj4Bgtwc_0\tbicycle\nWvGCvwHutAc_1\tairplane\nWvUiJ8ZRRfc_0\tbird\nWvUziN47FfY_4\thorse\nWwx2Vce-1oM_0\tcar\nWx0zNFqSUZo_0\thorse\nWx1qid26zsw_0\tdog\nWzCI6AqY7cg_0\tbus\nWzrI82-Ak4I_1\tmotorcycle\nW1juH0nZ8v0_0\tairplane\nW1yEDHYLG1Y_0\ttruck\nW14Nt0_EGQg_0\tperson\nW17CFtB5Oy4_0\ttruck\nW1-9iBLd1lg_0\tperson\nW23FACVBLgI_0\tperson\nW3Bv11o03TQ_0\tcat\nW4cKlmHvXZ4_0\tknife\nW4gR7_z77A0_0\tperson\nW4iSCn6ILJs_0\tmotorcycle\nW7xlWK7cuEI_1\tskateboard\nW8U3FkkaVbc_0\tperson\nW8d2hNOMHpQ_1\thorse\nW8yL4Qnuo4k_0\telephant\nW86rN6nrllQ_0\tperson\nW9lLrNUFQ9M_0\tperson\nW975mcNRX7c_0\tboat\nW-sCMBY47ck_0\thorse\nW_QxijO2VBw_0\tzebra\nrftE7M9tNqI_0\tperson\nrftE7M9tNqI_1\tperson\nrhWLgPl3lt8_0\tperson\nrhjcRHB4crY_1\tbicycle\nriNqBOlFCuw_3\tdog\nriVZCbT4LDE_2\tperson\nrih7ECmHfRs_1\tcat\nrkIzABhjHkA_0\tperson\nrk1ByqQSwtI_1\telephant\nrlWlgyP-3-s_1\tumbrella\nrlWlgyP-3-s_2\tumbrella\nrlWlgyP-3-s_4\tumbrella\nrlqtE0bF9nk_0\tbicycle\nrmVxFro55IQ_0\tskateboard\nrmxx9X1ytcA_0\tairplane\nrm4XeENehOU_0\tskateboard\nrn9-fIMYEkA_2\tmotorcycle\nrn9-fIMYEkA_0\tmotorcycle\nroUwF9YU21U_0\tperson\nrsne3z-CaDw_1\ttrain\nrtjlk_iOmdE_2\ttrain\nrtjlk_iOmdE_0\ttrain\nrt4Qm6HPVTY_1\tboat\nrvBm-SnbjVI_0\tcow\nrwQl_jKPcyM_0\tperson\nrww5DvtCsG4_0\thorse\nrwzjQSTLmhk_0\tperson\nryUMZWWwJUk_0\tperson\nr0P-2rp1Hpk_1\tbus\nr0vIwhp5RLo_0\tknife\nr03Za0dP0d8_0\tperson\nr09YKBrwa8M_0\thorse\nr3PUq_cy6Mc_0\ttruck\nr3cOrAN6BI8_0\ttrain\nr3cOrAN6BI8_1\ttrain\nr7WW1Fl-s6s_5\tbus\nr7WW1Fl-s6s_4\tbus\nr7WW1Fl-s6s_6\tbus\nr7WW1Fl-s6s_7\tbus\nr7WW1Fl-s6s_1\tbus\nr7xw4qHLKIY_2\thorse\nr7xw4qHLKIY_1\thorse\nr7yOsosLuHI_0\tcow\nr8NwODfEuhI_0\tdog\nr8NwODfEuhI_2\tdog\nr9LAMeOEcsI_0\tperson\nr9jyOtbfWs8_0\tperson\nr9osF8drSbo_0\tperson\nr-Dva6GT-a0_1\tdog\nr-tFy30HVCw_0\tperson\nr-0UD9KQhvY_0\tcar\nr_sRdP_5WaM_0\tskateboard\nsByCUshWhWs_0\tdog\nsB613NHl89g_0\telephant\nsB8zpg-GrRo_0\tperson\nsD_9McrL3UQ_0\tskateboard\nsD_9McrL3UQ_1\tskateboard\nsEzZ3JnSzaM_0\tbird\nsFxTS449nUg_0\tperson\nsG0q9rphsoY_0\tcat\nsIIFHk89TT0_0\tperson\nsI17jkxX6tE_3\tskateboard\nsJyknuUaIOg_0\tskateboard\nsKCW1p03okE_0\tperson\nsKD6TBNqy6s_0\tperson\nsKD6TBNqy6s_1\tperson\nsKJ0JtWZeWw_1\tcow\nsKJ0JtWZeWw_3\tcow\nsLZh8XaxoYw_0\tperson\nsLfyo1VrX3g_3\tknife\nsLfyo1VrX3g_2\tknife\nsLnYAS4LAY8_1\tperson\nsLnYAS4LAY8_2\tperson\nsMVMaH9aWHw_0\thorse\nsNV29dtSqYs_1\tumbrella\nsOfNz788QiQ_2\thorse\nsP4jeoUjHZM_1\tmotorcycle\nsRb7OHsI6s4_0\tbird\nsV9L8gpGDmA_0\tmotorcycle\nsWbk2Sw9Rew_0\tperson\nsWfMpwviOCA_0\tcar\nsXSjs2EV61Y_2\tknife\nsXw73oA1Tq0_0\thorse\nsX5GCwZG8d8_1\tbus\nsbkHA-DWPSI_0\tperson\nscyRfbyCzJU_0\tcat\nsc15m4_lcvw_0\tperson\nsdAAObJErSA_0\tmotorcycle\nsezamC2zGqg_0\tbird\nsf76JIFYKB0_1\tcat\nsgHdQYSWPXg_0\tcar\nsgU4wTZ6k5s_1\tperson\nshXeONsfVmU_0\tperson\nshiIdcOonRs_0\tperson\nsiFucH6jjIs_0\tboat\nsiFucH6jjIs_1\tboat\nsj7NOYq8KBA_0\tperson\nskEWWsL6k9g_0\thorse\nskl1lsZUG4k_0\tperson\nsm346w9J4zA_0\tknife\nsnZjH03fjVk_1\tperson\nsoNDR07vxhQ_1\tperson\nsoNDR07vxhQ_0\tperson\nsofKbpbuX84_0\tperson\nsofKbpbuX84_1\tperson\nspVw0PNXErs_0\tdog\nsqLiQtbkEO4_0\tcow\nsqv-uPhtxwk_0\tairplane\nsq-wqsIw5hw_0\ttrain\nssspgc75B08_0\tgiraffe\nsteKGH-8MZw_0\thorse\nsteKGH-8MZw_2\thorse\nsts2vAv4BQo_0\tperson\nsuERIXWx_z0_1\tperson\nsvCBYM2zl80_0\thorse\nswuFjNkTmQY_0\tdog\nsyZTh043BkQ_0\thorse\ns0YqBVjRDyU_0\tperson\ns1Pd7evRn0U_2\tdog\ns2PyqAoOqrY_0\tcow\ns2x8llFphNY_0\telephant\ns3WiR_wFUBE_0\tcat\ns3ijyNmvxpE_0\tperson\ns4rr5OrSI4k_0\tskateboard\ns5I219neN7c_0\tperson\ns5jmkD6lkbU_0\tdog\ns5n7L55KpWE_1\tskateboard\ns7or9ZhEyXE_0\tperson\ns74eu-v6aqA_0\tperson\ns8W4NK7dWe0_0\tperson\ns83wzR7ySyM_0\tskateboard\ns9G4llLAJiU_0\tskateboard\ns9OmvmQH9hA_0\telephant\ns94ng_sG6Dg_0\tboat\ns-Jnbfjkmak_0\tskateboard\ns-Jnbfjkmak_1\tskateboard\ns-guJTrtfSU_0\tskateboard\ns-yjgHx_YWg_0\ttrain\ntAGvlfgdOsI_0\tskateboard\ntAGvlfgdOsI_2\tskateboard\ntBlPdyu-syw_0\tbird\ntBlPdyu-syw_2\tbird\ntBryhvKADFQ_0\tdog\ntGyP_SbWsVA_0\tperson\ntHA_VdGe90Y_0\tairplane\ntHA_VdGe90Y_1\tairplane\ntHcqw8Cejs8_0\tperson\ntHfOMcj62SY_0\tzebra\ntI2i9_rBdwo_1\tbird\ntI2i9_rBdwo_3\tbird\ntKpbcnqu6bY_0\tbird\ntK0pl2_wbWU_2\telephant\ntLJpuELQgxY_0\tperson\ntLa4F5ekKW0_0\tcat\ntLzUBeOwhyM_1\tbicycle\ntMojfxB-9zA_0\tperson\ntMp5Y1zucfI_1\ttrain\ntMp5Y1zucfI_0\ttrain\ntM3FYC5IVPo_0\tmotorcycle\ntNiu2o7-KPY_1\tcar\ntOK5TnF8eHQ_2\tbird\ntOL0kPV03Uw_0\ttrain\ntOlXErF8Z4o_0\thorse\ntPCRXfE_aGo_0\tbus\ntQj85vHtmeE_0\tbus\ntQnUccPTkck_1\ttruck\ntQ_Vy-9pvoQ_0\tskateboard\ntSlXTInFXss_0\tperson\ntTSVU8IU10c_0\tmotorcycle\ntUdWqmNDeY8_0\tperson\ntUm_oehvEpM_1\tperson\ntVOS6wht6oQ_1\thorse\ntV17SBx-oqE_0\tperson\ntXBDRj1c-Uc_0\tperson\ntXf9xVs5ZGk_0\ttrain\ntYKrjpIMYb0_1\tskateboard\ntYciFvRQuec_1\ttruck\ntYciFvRQuec_0\ttruck\ntY-4fAv_YRU_0\thorse\ntY-4fAv_YRU_1\thorse\nXA65Kh83GmE_0\tcow\nXA65Kh83GmE_1\tcow\nXBNPaOqVqds_0\tbird\nXBUvxtvKWM0_0\tcat\nXByg_hQRQDM_2\tbird\nXDNVcbDkafM_2\tairplane\nXDNVcbDkafM_3\tairplane\nXDNVcbDkafM_4\tairplane\nXD0ydIAwgGM_0\tcow\nXD_iMe4m2vQ_1\tperson\nXGX6SRd3ZkE_0\tbird\nXHu9PxuBpXg_0\tairplane\nXIzQLXQTsRo_0\tcow\nXI3_0lXrnfY_0\tcow\nXJq9qp3jhq0_0\tmotorcycle\nXJq9qp3jhq0_2\tmotorcycle\nXJq9qp3jhq0_1\tmotorcycle\nXLgI0VgtzEw_0\tcow\nXL50qkg4qdA_2\telephant\nXL50qkg4qdA_0\telephant\nXMIsf8xuMh4_0\ttrain\nXPi83QmsR90_0\tcat\nXQliC40rP9M_0\tperson\nXRKZRwdqhNo_0\tbird\nXSMGAlakHWY_0\tperson\nXS5wfvz6XZI_0\tbird\nXTWeBFPqdh0_0\tperson\nXT0t6ims_FI_2\tskateboard\nXVabRVMuX4Q_0\tmotorcycle\nXVabRVMuX4Q_1\tmotorcycle\nXVabRVMuX4Q_2\tmotorcycle\nXVabRVMuX4Q_3\tmotorcycle\nXVabRVMuX4Q_4\tmotorcycle\nXYA6HKrVVQQ_0\tcow\nXZBFfRl6DkA_0\tperson\nXaVZr4HPh2M_0\tcat\nXalkAzccT5I_0\tperson\nXa6tjMVGH2I_0\tmotorcycle\nXa6tjMVGH2I_2\tmotorcycle\nXd9tLIFo_7E_0\tcow\nXeIssB-JkcU_1\tbicycle\nXeIssB-JkcU_2\tbicycle\nXevq2dskQWo_0\ttruck\nXfUIrHPVj-s_0\tcat\nXf09qM8SYBc_0\ttruck\nXgDJ16iRhxs_0\telephant\nXgDJ16iRhxs_1\telephant\nXgDJ16iRhxs_2\telephant\nXgFaXb7Vb58_0\telephant\nXgxYznR79R0_0\tdog\nXhOx4rgdI-8_0\tbird\nXhTWW9CwFzM_0\tmotorcycle\nXiSjHcHG5IU_1\tbird\nXjXFktrwSOk_0\tbear\nXkpxlUwx4oc_5\ttruck\nXkpxlUwx4oc_1\ttruck\nXkpxlUwx4oc_2\ttruck\nXkr3OHSz_CA_1\tperson\nXkr3OHSz_CA_0\tperson\nXlIxLJTiphI_1\tairplane\nXlSvIczm3JA_0\tperson\nXlcJsAWbsyA_0\tdog\nXmwv-NZZat8_0\tperson\nXm_CKSNQE3E_0\tbird\nXnfAvhHnH6M_0\ttrain\nXnfAvhHnH6M_1\ttrain\nXoWHAeOAXg0_0\tmotorcycle\nXoXMpm6Yxfs_0\tperson\nXoa_dCJDiTE_0\tmotorcycle\nXocaP_gyqJU_0\tperson\nXopbyM2SJbc_0\tbicycle\nXopbyM2SJbc_1\tbicycle\nXr_3UPISgT0_0\tskateboard\nXsK5KxttYBA_0\tperson\nXtTLGRBrm3I_0\tskateboard\nXtVTdegdzvI_0\tmotorcycle\nXu6xzBcJySk_0\tperson\nXu6xzBcJySk_1\tperson\nXvvA9Zc1TMA_0\tperson\nXvwOXlVdehA_1\tperson\nXwqm_wzZDQI_0\tcow\nXxkkXeLqqu8_2\tairplane\nXxkkXeLqqu8_0\tairplane\nXxmNQjB1D_Y_0\tcat\nXyldpxZmUN8_0\tdog\nX0CZDjRqcKg_0\thorse\nX02e7Fj9BLM_0\tumbrella\nX0-n3maCrZU_1\tdog\nX2uXOY9J_UU_0\tperson\nX3HCAEcRaW8_0\tbicycle\nX3qbUW_qT7k_2\tairplane\nX4SbOXRpo0A_1\tdog\nX7xm2nZL7jc_0\tbear\nX79vSvy6SOQ_0\tskateboard\nX9L-jwA6Ozg_1\ttrain\nX9L-jwA6Ozg_0\ttrain\nX9a5wEDFXc8_0\tboat\nX_TnIuY27eM_8\tbird\nYA4-rm-dcsw_0\tperson\nYA-N841dD-0_0\tperson\nYB1trUAUzhg_0\tperson\nYB2wzBLh7MU_0\tzebra\nYCU3daBCWsU_0\tumbrella\nYCXHNoYaQRc_3\tskateboard\nYCXHNoYaQRc_4\tskateboard\nYDd_skWNTMs_0\tskateboard\nYDyc1Yv9j_s_0\tperson\nYEPfw3k3vEw_0\tperson\nYEvBzZ5KBYY_1\thorse\nYEz7v7toUwM_0\ttruck\nYFQlAc3qTBQ_0\tmotorcycle\nYIHcQxH9e1o_0\ttrain\nYIzqB2G1UvY_0\tperson\nYI4lmC3imb4_0\thorse\nYJiqdRcs_gU_1\tperson\nYKlWROFtcxc_1\tskateboard\nYKlWROFtcxc_0\tskateboard\nYKoT-GgRSw0_0\telephant\nYKoT-GgRSw0_1\telephant\nYKrdwZe1vq8_0\tdog\nYL97h6yps6w_1\tknife\nYMbqULxZJpg_1\thorse\nYMbqULxZJpg_2\thorse\nYMkOJNatD88_0\tperson\nYNEDPsAWm5I_0\tperson\nYQXwRsP0zvE_1\tperson\nYQgUV8TrYcw_0\tperson\nYRWC7Tdc5oI_0\tperson\nYTD8j8z44qQ_0\tperson\nYTd8Rxtpt1E_0\ttrain\nYTd8Rxtpt1E_3\ttrain\nYTd8Rxtpt1E_4\ttrain\nYTd8Rxtpt1E_6\ttrain\nYTd8Rxtpt1E_7\ttrain\nYTd8Rxtpt1E_8\ttrain\nYTd8Rxtpt1E_9\ttrain\nYTzuVYGpDhA_0\tmotorcycle\nYUhgrCNuMGQ_3\tbear\nYVDCTyDcjjA_1\tcow\nYWRbi_v93Mo_0\tperson\nYWhwljQ3efA_3\ttrain\nYWhwljQ3efA_4\ttrain\nYXeaiwTZ3ZE_0\tcow\nYXz7CDJ11jY_0\tbird\nYYUo7EkkJeg_0\tbicycle\nYYUo7EkkJeg_1\tbicycle\nYZmhYkqgBi0_0\tskateboard\nYZmhYkqgBi0_1\tskateboard\nYZmhYkqgBi0_2\tskateboard\nYZ3kcrHk4N8_1\thorse\nYZ3kcrHk4N8_0\tbicycle\nYax1xdgRbt4_0\tperson\nYa2zfpe-_ro_0\tbus\nYcjMrWCSRSA_0\tperson\nYdooYDhKq00_0\tperson\nYeTYMiaLkWY_1\tcow\nYfvvO_T8j8k_0\tskateboard\nYf9jBSXQTLo_0\tcar\nYf9jBSXQTLo_1\tcar\nYf9jBSXQTLo_2\tcar\nYf9jBSXQTLo_6\tcar\nYf-okdUBk9g_1\tbird\nYgM058nmMnQ_0\tperson\nYjZoPTjqDGw_0\tskateboard\nYj6XWsgomO0_0\tcat\nYluDona_474_2\tbus\nYmlQVVQx4SA_0\tperson\nYm3lE2u4vxE_3\tskateboard\nYm3lE2u4vxE_1\tskateboard\nYm37vW7b0U0_0\tcow\nYnZU-Qa6yeI_2\tbus\nYnyd8SBB5Wg_0\tknife\nYoFfsRgrNeY_0\tperson\nYof6XFKNuNY_2\thorse\nYorREGtes1I_0\tperson\nYo9XVrgl_GM_0\tcat\nYpDsXa1kNZU_0\ttruck\nYpb0U6Ga5pk_3\ttrain\nYpb0U6Ga5pk_1\ttrain\nYpb0U6Ga5pk_2\ttrain\nYp1kl6xU-Og_0\tperson\nYqvGb_tDI38_1\tbird\nYrhvCSxifRc_0\tcar\nYtrNZ4mlMw4_0\telephant\nYvAlZo3quqE_0\tperson\nYvwW9T4Qpek_0\tmotorcycle\nYv3YH0nImQI_3\ttruck\nYxRG0JQrpwI_0\tperson\nYxia21K4O6I_3\ttruck\nYy0lIDbLxQ8_0\telephant\nYy0lIDbLxQ8_3\telephant\nYy0lIDbLxQ8_1\telephant\nYy0lIDbLxQ8_2\telephant\nYzTl0Nf0Kpw_0\tcow\nYzT_UsE8Mhs_0\tairplane\nY0Hz5Hw1AiM_0\tperson\nY1lKSppJhdI_0\tcow\nY16c_yGYw1M_0\telephant\nY16c_yGYw1M_1\telephant\nY2jXJzRVhMI_0\tperson\nY2x6ow80IkQ_0\tperson\nY3TtBVfW6gs_0\tperson\nY3ZDfyDvFi4_0\telephant\nY3c_6Zv0dxg_1\tknife\nY3mx4jYyagQ_0\ttrain\nY5Atu2VWemQ_0\ttrain\nY5BEvakwvuM_0\tdog\nY64ky0LNHko_2\telephant\nY-YU80ccuXg_0\telephant\nZBJsNXYIQ4o_0\tperson\ntaPyucc_cOU_0\tperson\ntaPyucc_cOU_1\tperson\ntafdN9GXP0g_2\tskateboard\ntbLnjlX1xF8_2\tbird\ntbuu2U3o02Y_0\tperson\ntcOx8KjmHPo_0\tperson\ntc98WTYT-VI_0\telephant\ntdIWlg4_01E_1\tbird\ntgRYkhC-gJU_0\tperson\nthZqLw7IxVw_0\tknife\ntj2-fSeuMRI_0\tbird\ntmch--OGZhY_0\tgiraffe\ntmsInTqqzHI_0\tzebra\ntof4QiBHPQQ_0\tperson\ntowJyxwm3wE_0\tbird\nto8OyPMfkaI_0\tperson\ntpQv6Sn5z3o_0\tmotorcycle\ntpcuQY4eNaI_1\tbus\ntpeBIe69wr0_1\tbus\ntpeBIe69wr0_3\tbus\ntpwUnqxQYjo_0\ttrain\ntqy3XprB11s_1\thorse\ntqy3XprB11s_2\thorse\ntq9WP-2U1QM_0\tperson\ntsMTiOeM52E_0\tcat\ntsg-S4Hk2go_0\tperson\nttzJbLLAR34_0\tcat\ntvSJKUR21UM_0\ttrain\ntwewRZpG7Fs_0\tcow\ntwxvNeK9FZo_1\tbear\ntxDhTthoXSk_0\tmotorcycle\ntx0mtmimu0k_1\tperson\ntx2PSvwf7FU_1\tcow\ntyem40ZMKGE_0\tperson\ntygG1C5DURU_0\tperson\nty3iURJku9k_0\tperson\ntzH_tvBDeJA_0\tskateboard\ntzPForR9Ejs_1\ttrain\ntzvKjCoHBMI_0\tbird\nt0TW8zZxCWQ_0\tperson\nt1N1ijCr5NE_0\tbicycle\nt1N1ijCr5NE_1\tbicycle\nt4FZmjCINtw_0\tbus\nt4naVz1a0sg_0\ttrain\nt4zuUZQozs8_0\thorse\nt5B7vIbyRNQ_0\tperson\nt5kzdnId2sI_0\thorse\nt5s4Fs07WLM_0\tdog\nt50QLEhcZCE_0\tperson\nt6C6ukC_zEA_1\tbird\nt6C6ukC_zEA_2\tbird\nt6C6ukC_zEA_0\tbird\nt7YFOxuWxtg_0\tumbrella\nt7YFOxuWxtg_3\tumbrella\nt7s424DNznk_0\tcat\nt8MqK7LWqs8_0\tairplane\nt8mVwobdP40_0\tboat\nt_qvtoXbLRI_0\tperson\nuAWXGcWWgSU_0\tperson\nuAZF38u6SOo_0\tumbrella\nuAzws057QjE_0\tskateboard\nuA1sb8QyXuU_0\tskateboard\nuCZi19CC7rk_1\ttrain\nuCZi19CC7rk_2\ttrain\nuCZi19CC7rk_3\ttrain\nuE5rIJoAafE_0\tbird\nuE5rIJoAafE_1\tbird\nuH0jKXHq7Lw_0\thorse\nuH35b2DEXFw_1\tskateboard\nuH9vcwYxL2s_1\tperson\nuIu2jQswp94_0\tperson\nuJcu-YlAtbc_0\tbird\nuKJqU3gtIWM_0\tumbrella\nuLPuf056wH4_0\thorse\nuMAkaCYTDuc_0\ttruck\nuMYGWhLdrlc_0\tboat\nuMiNpG3NcEw_0\tperson\nuMpufBdwRn8_0\tgiraffe\nuNpHGE63PdQ_2\ttruck\nuNpHGE63PdQ_8\ttruck\nuOmCLzEMPGc_0\ttrain\nuRFXE4UfdTE_0\tcow\nuR8MqB3VgSI_0\ttruck\nuS1QmKXc0uY_0\tperson\nuTsfiR5FPdM_0\tperson\nuT9uk3mtt98_0\tbird\nuUU-VpxxSiM_0\tcow\nuVrW8Mm2xGY_0\tperson\nuWyTGtedEqU_1\tperson\nuWyTGtedEqU_0\tperson\nuarSTtaV_Ps_4\tboat\nua6Xyj9aWT4_0\tbear\nua6Xyj9aWT4_1\tbear\nua6Xyj9aWT4_2\tbear\nubHgpaAseuo_1\telephant\nubijaVodfKg_0\tperson\nubijaVodfKg_1\tperson\nubsr27_dQOk_0\telephant\nubsr27_dQOk_2\telephant\nubsr27_dQOk_3\telephant\nubsr27_dQOk_1\telephant\nucUearjcPHk_1\tairplane\nucfXE6fw3go_0\tcow\nudlyGSCujUU_0\ttruck\nufB4EORClps_1\tknife\nufMXT_CmtK4_0\tairplane\nuhm0JnSA-kQ_0\tperson\nuiLBqX72k4k_7\tboat\nuiM-lDuYaeY_0\tperson\nujoJwRvjEdI_0\tperson\nujz4u55Tp1U_0\tcat\nul47aFS8dQE_1\tmotorcycle\nul47aFS8dQE_2\tmotorcycle\nul47aFS8dQE_3\tmotorcycle\numkNI2_0Lqc_0\tperson\numxZfostBlE_0\ttrain\num22CD4bkqo_0\tcow\nun6QDPagbfo_1\tcow\nun6QDPagbfo_0\tcow\nup6VT6l38-A_1\tskateboard\nuqn85v1WM7A_0\tmotorcycle\nurAYVS5Lz7k_0\tperson\nusAsP-m-qs4_0\tdog\nuuhWeHmlvt4_0\tperson\nuu3KluYuhc0_0\tperson\nuu3pH95cmtk_0\tperson\nuwXhzSsAIJw_0\tperson\nuw9TxuXeiP0_0\ttrain\nuxgUbys1eD8_1\tbus\nuzMFzDPfsws_0\tknife\nuzsdMqrgiL8_0\tperson\nu14Sp3wCQew_0\tcar\nu2BHvsjQGjw_0\tperson\nu25Jazd2yJM_0\tperson\nu4KPFsw5W5c_0\tmotorcycle\nu4oma0FVycA_8\tknife\nu69KRu61wXM_0\tperson\nu7xTeWelI-U_3\tknife\nu8mmwwrdNb0_4\tairplane\nu8mmwwrdNb0_5\tairplane\nu8mmwwrdNb0_9\tairplane\nu80Y4lA5xT0_0\tdog\nu85tUrDgmOQ_0\tbus\nu9HkSfjYpnA_0\tmotorcycle\nu9rfXD33UIM_0\tperson\nu9_P9HFh_NY_0\tdog\nu-_A36Ha04o_0\tcow\nu_D1eyd8AOM_0\tcar\nvAUSfFO5UI4_1\tdog\nvFMzMNDlnBs_0\tperson\nvGIYDcnNTvA_0\tknife\nvHQkxg7kPUk_0\tdog\nvH0ZiiuSQzU_2\tperson\nvH7sKynwjD4_0\tperson\nvJypzwSdyN4_0\ttrain\nvMt5AD41SKM_0\tperson\nvMt5AD41SKM_1\tperson\nvOY2IRNsjYg_1\tperson\nvOY2IRNsjYg_0\tperson\nvQ6eOB8rxUE_0\tperson\nvRjErSbQNNY_0\tperson\nvTa2zdbIyUw_0\tperson\nvT2JpCnT6rg_0\tboat\nvWqexY1OdWg_1\tskateboard\nvXbTARLug3M_0\tperson\nvYN_Gy6fUbI_0\tbus\nvYhPihwivZs_0\tperson\nvaaqJVWoSf0_0\tperson\nvadASNfLl9I_0\tdog\nvas3iNRcsK8_0\telephant\nvas3iNRcsK8_1\telephant\nvbLhfzHqEKc_2\thorse\nvbSnjtc3vIs_0\tcat\nvcALsxetYU4_0\tairplane\nvc-_aAQAXs0_0\tknife\nvdXD-HTzyFM_0\tcat\nvfeKOPKE6l8_0\tperson\nvf7NtV1T5Jc_0\ttrain\nvf7NtV1T5Jc_1\ttrain\nvjb_l1_hEXk_0\tperson\nvjojFy4rPeo_3\tcar\nvjojFy4rPeo_1\tcar\nvj_BAwFKqtQ_0\tumbrella\nvklwqjQis8Y_1\tcat\nvlPgSny76H8_0\tperson\nvlflI5iuszQ_0\tperson\nvnD3gELVAq8_0\tperson\nvnyBVn70QLY_0\tcat\nvnzsKpfAS_M_1\thorse\nvpBxBDjiJxw_1\tdog\nvvamB_-Z0so_0\thorse\nvv3gfxFz2zw_0\tperson\nvwe8ZaV-4z8_0\tbicycle\nvwtokH03eW0_0\tskateboard\nvwxzh1lJ7iw_5\tmotorcycle\nvxmdsyEpU6A_2\tbus\nvx0oKJcOQb0_0\ttrain\nvx0oKJcOQb0_3\ttrain\nvx0oKJcOQb0_4\ttrain\nvyLqolkoVIM_0\tperson\nvzBbUEwED60_0\tperson\nvzBbUEwED60_1\tperson\nvzU0GH4cZM4_0\tcow\nv0tUEeE4RGc_1\ttruck\nv0xTNbrYZY0_0\tgiraffe\nv01IvIxWXTo_0\tperson\nv1iIhTWRjg8_0\tboat\nv1-PGfS1YCY_0\tboat\nv3LIQHdveBA_0\tperson\nv4H5VwQyKEU_0\ttrain\nv4H5VwQyKEU_1\ttrain\nv4QYOX-FHhY_1\tmotorcycle\nv40pc8KBg0I_2\thorse\nv5YzVj25_hs_0\ttruck\nv5lUHsxx0mc_1\tskateboard\nv50Qa_KMCzQ_0\ttruck\nv51CdpETaug_0\tbird\nv6UDfM50GIM_1\ttruck\nv7XVyg16ens_0\tcat\nv8Kp0jhKsKk_0\tperson\nv8ceKkKdqrE_1\tknife\nv8hOOgLXRjg_0\tperson\nv8kyeMoFLqk_0\thorse\nv8rj3jIndSE_0\tdog\nv8tktR3aE38_0\tairplane\nv_yEG5_Qm8Y_0\tperson\nwCu6xsT18qo_0\tperson\nwDHRro9mXuM_0\thorse\nwDcnUJFHguE_0\thorse\nwE8LYkzcq0o_1\thorse\nwE8LYkzcq0o_0\thorse\nwGPW8I8nGmc_0\ttrain\nwGWIrs5ja0Y_0\tbicycle\nwGyJeWBe8VA_0\tumbrella\nwIapUcRvgTM_0\tbear\nwIapUcRvgTM_5\tbear\nwI0a0fzgy3w_0\thorse\nwJdfgWlSY5M_0\tperson\nwJdfgWlSY5M_1\tperson\nwK7yIg1qfZ4_0\tperson\nwLA244rmq6g_0\tcat\nwLHLSvMwmjM_0\tskateboard\nwL0z6-jkCcc_0\tdog\nwL0z6-jkCcc_3\tdog\nwL0z6-jkCcc_1\tdog\nwL9iOnWhckI_1\tskateboard\nwL9iOnWhckI_3\tskateboard\nwMShicf3N_E_0\tperson\nwMyAEfVE_u4_1\telephant\nwNKWZ43SioQ_0\tairplane\nwNKWZ43SioQ_2\tairplane\nwNWW59wDinQ_1\ttrain\nwNcjU9-ck10_0\tperson\nwODzPBxcT0A_0\tmotorcycle\nwODzPBxcT0A_2\tmotorcycle\nwOLrGAo0vFo_0\thorse\nwOSL7OPRBXM_1\tdog\nwPRCf3v0EfI_0\tmotorcycle\nwQtHgysmmFg_1\tboat\nwQvPlByUvB0_1\tknife\nwSSTL6uuM9Y_0\ttrain\nwSmVgAahSUw_0\tskateboard\nwSmVgAahSUw_1\tskateboard\nwSmVgAahSUw_2\tskateboard\nwTMj2Gp8wz4_1\tbird\nwTMj2Gp8wz4_0\tbird\nwTtXB0Z2eMk_0\tcar\nwV1VMLQfTYo_0\tskateboard\nwWpNKbsF6q8_0\tbear\nwa1KdARQXXg_0\ttruck\nwa3jVRzsWGo_2\ttruck\nwbmT4LB3lVQ_2\tknife\nwb9x3QDpcYA_0\tperson\nwb9x3QDpcYA_1\tperson\nwcOuc6Y3Gek_0\ttrain\nwcjnFIBHoc8_0\tbear\nwdb2-oX7HqU_0\tboat\nwdhqMpQcsjc_0\tdog\nwdhqMpQcsjc_2\tdog\nweH4PvRo2GU_1\tbear\nwgZbNzu2Mdw_0\tperson\nwguspvl5Ioo_0\tperson\nwg1ZFP15W8U_0\thorse\nwg6XS3q4Vg8_0\ttrain\nwifl75i2zGw_0\tperson\nwiiV9QdYsYM_3\tbus\nwjfHYr4lXU0_0\tcow\nwmfJAE6gu7w_0\tperson\nwmjfHsCs1CE_0\tperson\nwmn4YG9rirU_1\tbird\nwmn4YG9rirU_0\tbird\nwmx0UeWsPyU_0\tperson\nwoEUh2mzEkE_0\thorse\nwqD1WkfidVw_1\tbear\nwr5b8Op3LUM_2\tbear\nwuAwZ_wX7jk_0\tknife\nwuFVuJjgpLk_0\tairplane\nwvadJ-1Ls80_0\tperson\nwymDvXB08SM_0\tperson\nwzBmon2jJxI_2\tbird\nwzlA0qMLDV8_1\tcow\nwzlA0qMLDV8_2\tcow\nwzlA0qMLDV8_3\tcow\nwzuQhwWLllk_2\tbird\nw0JzCkELpj8_0\tcat\nw0bfVrI7CPQ_0\tbear\nw1j-YVcZpfc_0\tperson\nw2WW3bYmA7s_0\ttruck\nw247rqoLoGg_0\tbear\nw3F_8A8kY7o_3\telephant\nw3F_8A8kY7o_5\telephant\nw3F_8A8kY7o_6\telephant\nw3adXMIxupk_0\tcat\nw35-xR0Vn_0_0\tzebra\nw5Pb_ORVLKI_0\tairplane\nw6A2W9VQeZk_0\tcar\nw6JEUZI5Vh8_2\tskateboard\nw6JEUZI5Vh8_0\tskateboard\nw6JEUZI5Vh8_3\tskateboard\nw7IKxGLuaQA_0\thorse\nw7g5pDCGteg_0\tperson\nw8zrFmMpPmc_0\tmotorcycle\nw8-ovxjadNo_0\ttrain\nw93q7lv9In8_0\tperson\nw-eAEp0TUi0_0\thorse\nw-eAEp0TUi0_1\thorse\nw_euwPW5ukA_0\tbicycle\nxAUupk4sGI0_0\tperson\nxAedjC0r5KY_0\tperson\nxAfxJQL2_aY_0\tzebra\nxDgoaE-g50s_2\tbear\nxFnFWM8KXcE_0\tperson\nxFzsK94M68U_1\tperson\nxGbFeCuGypE_0\tperson\nxHOcerZTZxM_0\tperson\nxIUJ8zlr0TU_0\tbear\nxIizuktSVrM_0\ttruck\nxJ_xdRV9lzo_0\tcat\nxKd8dHsveKg_0\tperson\nxMiQuC8eKGU_0\tperson\nxMp4dCjzI08_0\tcat\nxMuQzm__4bo_1\tperson\nxMuQzm__4bo_0\tperson\nxNBT-PZEMH0_0\tbicycle\nxOLvPvBg-8U_1\thorse\nxOtxf0cmHyA_2\thorse\nxPDDIKF9T3A_0\tperson\nxRJNEyms-F8_0\ttrain\nxSIjCyHBypw_0\tumbrella\nxSIjCyHBypw_1\tumbrella\nxSL4NZUmhW4_0\tperson\nxUB3mR57tLE_0\tbicycle\nxUtGzUu5Ryc_0\tumbrella\nxU_2MZdWfxM_0\tcow\nxVuNCF2vbXs_0\tperson\nxWWnn5OWp4I_0\tairplane\nxYVriT4YV0M_0\tperson\nxZLHtt1yjYk_0\ttruck\nxZZ_W6fRi8E_0\tknife\nxbL4hiu8qh0_0\thorse\nxbQZucd8eu0_0\tbicycle\nxbQZucd8eu0_3\tbicycle\nxbQZucd8eu0_2\tbicycle\nxcY11ewiUMM_1\thorse\nxd_raY9PCHM_0\tbus\nxd_raY9PCHM_1\tbus\nxeAkz6Kg108_0\tbird\nxeBhbPbmS8w_0\tperson\nxfzxTuJ85A4_0\tairplane\nxfzxTuJ85A4_1\tairplane\nxitZyv8gMgQ_1\thorse\nxjdEiJ_z4T8_0\tmotorcycle\nxj3FKNXP-cw_0\tbird\nxkKoATbAX0w_0\tdog\nxkeTuOlBIMM_0\tcat\nxlT93OXr3uc_0\tperson\nxlT93OXr3uc_1\tperson\nxlfOatU3OyY_0\tboat\nxljqBqpwIHo_0\tperson\nxl110TqE0kQ_0\tcat\nxmWAmSXnWCY_0\tcar\nxo54E-kQcoA_1\tboat\nxpGDfRYqtSE_0\tcow\nxpcNJG8acpU_0\tdog\nxp_ShmZCoDw_2\tairplane\nxqNQIYHzAGk_0\tperson\nxrGm-1D2Zqk_1\ttrain\nxsrHSco3Zcs_0\tperson\nxsrNtKa0oZg_1\tperson\nxs1kBHxDpxU_0\ttrain\nxs1kBHxDpxU_1\ttrain\nxs1kBHxDpxU_2\ttrain\nxtHE1-GIP_w_0\tperson\nxtXt8Vm3Qps_2\tdog\nxuAm_BWnXRc_1\tmotorcycle\nxuAm_BWnXRc_0\tmotorcycle\nxucBFquWbi8_1\tbear\nxv4fy9zyuNE_0\tperson\nxv6NQvvvIhk_1\tbicycle\nxxEtEzi7YiY_0\tbus\nxxcJJA7hCQY_0\tperson\nxxdOVyEU-c4_0\tperson\nxyg1xFLohGI_0\tcow\nxyyz5QJ7wi8_0\tdog\nxzC5_r9raeY_0\tperson\nxzFcPnglQf4_0\tperson\nx0RxwpR4wIc_0\tbird\nx0RxwpR4wIc_1\tbird\nx0nlchdJVJw_0\tbear\nx0nlchdJVJw_1\tbear\nx0q0JMiiw1A_0\tcat\nx0xsHmQGaB8_0\tdog\nx1RBYEheBRQ_0\tperson\nx2MJ_zDJY3k_0\tperson\nx2Tfa1fMOyE_0\tperson\nx29EcPsdK1Q_0\tdog\nx29EcPsdK1Q_1\tdog\nx4h9pGwdSMU_0\thorse\nx4r2tx9_9wQ_1\tperson\nx4r2tx9_9wQ_0\tperson\nx4uX_33GiJk_1\ttruck\nx48Ogx7C31g_0\tperson\nx4-I_EckNls_0\tbus\nx4-I_EckNls_1\tbus\nx4-I_EckNls_2\tbus\nx4-I_EckNls_3\tbus\nx5nImw1YH94_0\tperson\nx6sZc4EoI8o_0\tperson\nx6298plJ-7M_0\tcow\nx7jo9uCmWA0_0\tbear\nx8VC2CXIDBI_0\tperson\nx96LXIEQ3SM_1\tcow\nx96LXIEQ3SM_0\tcow\nx-2AUxPCkVM_0\tperson\nx-26Z1zy1-E_1\tperson\nx-26Z1zy1-E_2\tperson\nx-26Z1zy1-E_3\tperson\nx-26Z1zy1-E_0\tperson\nx_CImXdwsg4_0\ttruck\nx_XV2Y3pwDA_1\tbicycle\nx_XV2Y3pwDA_0\tbicycle\nyCYtcDx1zzE_0\tumbrella\nyCaJQKIGAjg_0\tmotorcycle\nyCz3VdCGZMA_0\tperson\nyDw-9GLrYj0_0\tperson\nyF0X9hui-Go_0\tperson\nyGD_BY9mQlM_0\tboat\nyIkwS9Vkq-k_0\telephant\nyJOGbyQ8qs8_0\tperson\nyJZU3h3_06M_1\tcat\nyLFd8GdaqBg_0\tperson\nyLL5Dv2F1rs_1\telephant\nyLL5Dv2F1rs_5\telephant\nyLL5Dv2F1rs_0\telephant\nyLNuhB7I5iI_1\tknife\nyLNuhB7I5iI_2\tknife\nyLkMk9nMaos_0\ttrain\nyLkMk9nMaos_7\ttrain\nyLkMk9nMaos_1\ttrain\nyLkMk9nMaos_2\ttrain\nyM9_GnJpXsM_0\tairplane\nyNnOUMUIIno_0\tbicycle\nyOrqtKYEfNs_0\ttrain\nyOrqtKYEfNs_1\ttrain\nyOrqtKYEfNs_2\ttrain\nyPscRV8ebRg_0\tperson\nyQLGypU_WiY_0\tknife\nyTZekxz2awI_4\tairplane\nyTZekxz2awI_1\tairplane\nyT-tBu_wqEo_0\tcat\nyVO-nlNYxrU_0\tperson\nyV1EsNcE3kY_0\tairplane\nyYIY-K1Hk-0_0\tcat\nyYUnGStTnHE_0\ttrain\nyYUnGStTnHE_1\ttrain\nyYr5tuCEb3w_0\tcat\nyY6S-xTKWGc_1\tperson\nyaNT5d8H3ho_0\tperson\nyahVo8Nqxks_0\tperson\nybCbkJl7tog_0\tperson\nybt9EtMfrdI_0\tperson\nydxMYuiOJAI_0\tperson\nygK39Pz1tKw_1\tmotorcycle\nyhp30idsPKU_0\tboat\nyiCMaealOnQ_0\tcow\nyiujj_fUOg8_0\tperson\nyjOTRS1-3Is_0\tcow\nyjUDTPRe-tg_1\tperson\nyjnR7dP-hxE_1\tbird\nykQnvD35jxs_0\tbus\nymoggco-rpw_1\telephant\nynHMWKjfsNk_0\tcar\nynYz6f5FCOk_0\tmotorcycle\nyoTs9WxR0mI_0\tperson\nyo3wwD8VMLA_0\tperson\nyo9gwC7gpEk_0\tboat\nypC9L5um-ic_0\tperson\nyp9kACFk9KU_0\tcar\nyqWKo_T-YsM_0\tperson\nysb6LLJ0t-c_0\tperson\nyssYMx-tQs4_0\thorse\nyu2v206waMs_0\tperson\nyvDdzmW5jGs_0\tcat\nyxURDHgvWrs_0\ttrain\nyxURDHgvWrs_7\ttrain\nyyMtxTJNnUM_0\tskateboard\nyzE2GgYffew_0\tperson\ny0HZlHGSvHk_0\thorse\ny0ptIotKNVU_1\thorse\ny0qGszhFtUc_0\tbird\ny2BOVk7bg7k_0\tcow\ny2BOVk7bg7k_1\tcow\ny2xzls--cC4_0\tperson\ny2_iaWWx-C0_1\tzebra\ny3VNGZBlDb0_0\tcat\ny3hSeUaVwAY_0\tbus\ny34cSfArQnM_0\tcat\ny6nBJ0OUtDs_0\tperson\ny6nBJ0OUtDs_2\tperson\ny67A9YHKh1U_0\tperson\ny8ib31rVZA0_0\tbicycle\ny8ib31rVZA0_1\tbicycle\ny8r2SJltJ1M_0\tdog\ny9hu6CyRi5s_0\tairplane\ny_O1AiuRLGA_0\tumbrella\ny_5uacneFuc_0\thorse\nzAvoyJ0_PSA_0\tcow\nzBtuA6r8o0M_0\tcat\nzCG95maa310_0\tperson\nzCnZg9VP1xw_0\ttruck\nzDs4lXFLJuM_1\thorse\nzD59UHvdpmY_0\tperson\nzESRFobSQMU_0\ttruck\nzESRFobSQMU_1\ttruck\nzHRsZ9HlcBk_0\tperson\nzIDehNZ1yiM_0\tperson\nzIvzY3cVVbM_0\tperson\nzI5cBWlyAMo_0\tdog\nzI5cBWlyAMo_1\tdog\nzJdOWFEL_CQ_0\tperson\nzLflV_7noSM_1\tairplane\nzMhr8GZ1QeY_1\tairplane\nzMjW-G29IRA_3\tbear\nzMjW-G29IRA_1\tbear\nzMjW-G29IRA_2\tbear\nzMjW-G29IRA_4\tbear\nzNFb--FJ2A4_0\tperson\nzNF5YxfaNTk_0\tcat\nzNfVxQPGrvM_1\telephant\nzN8rF-AchY0_1\tmotorcycle\nzN9Tz6jp7AY_0\tperson\nzOLTybhsJ5s_0\tcat\nzORNq_7nmVQ_1\tgiraffe\nzORNq_7nmVQ_0\tgiraffe\nzOoxYmqzDyc_1\tdog\nzPvrRc94j6s_0\tperson\nzP2DkEcgJFo_0\tperson\nzP8Recx-KgA_0\tboat\nzQbeiOf9ljM_0\tperson\nzU0g6JCyxAs_2\telephant\nzVVQ63dPpe4_2\tbicycle\nzWQQBElMPYI_0\tperson\nzX9OX5I2574_0\tperson\nzYvjN5ShZDI_0\tperson\nzYzASiLjHgY_0\tperson\nzZ8f7oFIg_c_0\tperson\nzbtsVe8RQqI_0\tperson\nzb8-yrB5SlI_1\tbird\nzcgArp_fmjc_5\tskateboard\nzcsREBhC1Rc_0\tdog\nzdWtCunlv1c_0\tcow\nzdqJTtHvwk4_0\tperson\nzd3rNWQ-OUQ_0\tperson\nzgJHKszSf2o_0\tperson\nzgJHKszSf2o_1\tperson\nzgRxry9FvEk_1\thorse\nzgSx8Y5FaPI_1\tknife\nzhDC_SqN7lQ_0\tbear\nzhNNahIXxC8_0\tbear\nzjQG5PadkFQ_0\tperson\nzj4cs0_VpTk_0\ttruck\nzkSIG3AE7tY_0\telephant\nzmDkkM7Buuo_0\tcow\nzmEU5n2Dy8Y_0\tdog\nzmdKmfMPuvA_0\tbird\nznTYxWfU2XM_0\ttruck\nzpEtPFxxD5M_0\thorse\nzqE3Jnn6_gw_0\tperson\nzqYLN7vCqcw_0\ttrain\nzqq508NRpOY_0\tperson\nztMFfJj7jb0_0\tknife\nzt3ojCKnIYM_0\tcat\nzwSnaqQ-5UU_0\tperson\nzxiZnbMo3io_0\tmotorcycle\nzxiZnbMo3io_1\tmotorcycle\nzxzApvuo8Lg_0\tperson\nzx0RzA6ts8U_0\tcow\nzyXxWBoTuww_0\tperson\nzyXxWBoTuww_1\tperson\nzyftQz018g0_0\tbus\nzy0lNSoVB0A_0\tcat\nzzRnX2EiOYU_0\tcat\nz0Tl2FDG69g_0\telephant\nz1kOi92oBDI_0\ttruck\nz1kOi92oBDI_1\ttruck\nz1qQ7Ma5C5U_1\ttruck\nz1qQ7Ma5C5U_0\ttruck\nz18s4h6yW2A_0\tbird\nz2M6XJGE1QM_0\tdog\nz2RqakqNnIM_1\tskateboard\nz29ijVd-dvc_0\tairplane\nz3rcLKwHCxM_1\ttruck\nz5-nsuFvaR8_0\tmotorcycle\nz7FTg1R3Hik_0\thorse\nz7mLqljZMP8_0\tperson\nz709zOu3tM8_0\tcar\nz9HO__A5ryw_0\tdog\nz9wpJN1R63w_0\tperson\nz-iM0zVi7a4_0\tbus\nz_CQX_gwU_o_0\tperson\nz_w1gsSfZhQ_0\tperson\n0AroA_SBRtQ_0\tperson\n0BUPQDR99KY_0\tbear\n0DDYOUzExSY_0\tperson\n0DGPzzGhUgI_0\tperson\n0DHLS1VDcnA_1\tbear\n0EeBXB53BQE_0\tairplane\n0EnI7ZqJvqI_1\tcar\n0EnI7ZqJvqI_2\tcar\n0GzrKbW6Reo_0\tperson\n0G0mSrzOZ2M_8\tbus\n0G0mSrzOZ2M_9\tbus\n0G0mSrzOZ2M_10\tbus\n0IHYTCKh8HM_0\tperson\n0KWfi9m1uZg_0\thorse\n0KWfi9m1uZg_2\thorse\n0KWfi9m1uZg_1\thorse\n0L0JFDbAEZg_0\tknife\n0Neg9vT08to_0\tcow\n0NtpuqPU3YI_0\tairplane\n0N7yCdf7DPs_0\ttruck\n0ORpOxJZo-Y_1\tbear\n0OqnKMwSULM_0\tskateboard\n0OqnKMwSULM_1\tskateboard\n0Pk8OLmmqrM_0\tmotorcycle\n0Pu-_5lNYZM_0\tbird\n0QKe3M6GiT4_0\tperson\n0Tu3KWEm4SE_0\tcow\n0Tu3KWEm4SE_1\tcow\n0TwpPpqiVQ8_0\tcow\n0U6SmZC1j40_0\tperson\n0VKozmEWjZ4_0\tperson\n0VaX_g70BaY_0\tmotorcycle\n0ZGdpgF-bGI_0\tbus\n0ZQ_-4ia7z0_0\tperson\n0c-Cwr5rI_A_0\telephant\n0c-Cwr5rI_A_1\telephant\n0fyRjxenSfY_0\tbear\n0fyRjxenSfY_1\tbear\n0f4alYlvEQw_0\tperson\n0gelRcDsNio_0\tairplane\n0ghRNQFgHow_0\tbicycle\n0gl1mPRzCqo_0\tperson\n0h9x35zsnyo_0\tbird\n0iLR3BtDujk_0\ttrain\n0iYm4g4D2wY_0\tperson\n0iv0Xw_u-sc_0\tbicycle\n0i-Nv28lRT0_0\tbicycle\n0kZSWqFOr0c_0\tperson\n0kidYsWSVvc_0\tperson\n0mbZJnNhckg_0\tperson\n0omh-B4giqI_0\tumbrella\n0owf_YERias_0\tskateboard\n0pAMIiK_RDo_0\tperson\n0pm7YRiUKTc_0\thorse\n0qVc1Whb3GA_0\tperson\n0qwRoiWnwmQ_0\tperson\n0rQzfr4WVKc_0\tcat\n0sA23Q_HQr8_2\tzebra\n0sA23Q_HQr8_1\tgiraffe\n0sA23Q_HQr8_0\tgiraffe\n0sfu67JuBFg_0\tperson\n0ss0_Sgy72g_1\tskateboard\n0tNuUAe5sNE_1\tperson\n0tNuUAe5sNE_0\tperson\n0txAuEdZYTI_0\tmotorcycle\n0uJKDzuaiys_0\ttrain\n0urYbdFc55k_0\ttrain\n0utGbb5enqA_2\tdog\n0utGbb5enqA_1\tdog\n0vQFT9tfq40_0\tperson\n0viKlMZRKdk_0\tperson\n0v7GMl2k-Sk_3\ttrain\n0yCCEL3tl24_0\telephant\n0zmzEkQWyps_0\tboat\n0zraBBQY8ew_0\tumbrella\n0zyhohOeIM4_0\ttrain\n00xcm8_ZTBc_0\tperson\n01CYScp2Yc0_1\thorse\n01mkUffAvo8_0\tperson\n02zor_ScZfo_1\tperson\n02zor_ScZfo_0\tperson\n03p9Ao9JvpY_0\ttrain\n03p9Ao9JvpY_2\ttrain\n03u5BWTYiRg_0\ttrain\n04Sh9tJvOAc_0\tairplane\n04UO1jSx2p4_0\tperson\n04gNIg-kFI8_0\tperson\n057f0LfDVoA_1\ttrain\n08Nunz5Qngc_0\tbus\n09jyC-o18uU_3\telephant\n09kq3b7cMwc_0\tcat\n1AcsNm2kiok_0\thorse\n1BfbSv9ZCu4_0\tknife\n1BfbSv9ZCu4_3\tknife\n1BiqFD2BD7Y_0\thorse\n1C3_qaiKlwo_0\ttruck\n1DHXDdSkk0s_0\tbicycle\n1DeIbpIRrAc_0\tknife\n1Dfkbv8bi9k_0\tperson\n1Dz4x50F-RQ_0\tdog\n1EYL4Mm3dfA_0\tbear\n1EiH3PTqhLE_0\tperson\n1ExRnJBXYP4_0\tknife\n1FVN3QOPlR0_0\tperson\n1FVN3QOPlR0_1\tperson\n1GJ0iwyNHIc_0\tairplane\n1JWHb6FAbmI_0\tperson\n1Knz9s55vjc_0\tcar\n1Knz9s55vjc_1\tcar\n1Knz9s55vjc_2\tcar\n1Knz9s55vjc_3\tcar\n1LmCkh8Dd-o_0\tdog\n1MmlnQKtd6g_0\tumbrella\n1M6GhIT94zE_0\tcow\n1M6GhIT94zE_2\tcow\n1NThnoBEkmc_0\tperson\n1ONRbj8GKJ4_1\tbear\n1ONRbj8GKJ4_2\tbear\n1ONRbj8GKJ4_8\tbear\n1ONRbj8GKJ4_10\tbear\n1ONptqLyHxQ_0\tdog\n1OSa1ptYmzE_0\ttrain\n1OSa1ptYmzE_1\ttrain\n1Ob23hwFaDg_0\tmotorcycle\n1PSIOY62FBg_1\tbear\n1Pe9JpKgjGY_0\tcar\n1P8yUGru9R4_0\tknife\n1RCZCLIZzc4_0\tboat\n1RGxleB_Ezk_0\tperson\n1RKOWfpa5Dc_0\tknife\n1RuPxpqNjBI_0\thorse\n1Tpmsev8onw_0\tcat\n1TsLUvJiluI_1\tperson\n1TsLUvJiluI_0\tperson\n1UhZKsDTuQs_2\tboat\n1V-7ErZ83ZY_0\tbus\n1ZN9xVmQojU_0\tumbrella\n1ZbSl9tPtbA_0\tbird\n1Z7CVnRjVT0_0\tperson\n1as5iG4PPas_0\tbus\n1bFvYEA0U3U_1\telephant\n1bveGPhOKuU_0\tcow\n1cKjzUG0YCQ_0\tbicycle\n1ceprZO-VEU_2\ttrain\n1ecpkwMLabI_0\tperson\n1fOM-kkuRsw_0\tcar\n1ggOn5NDRco_0\tcat\n1hUe5E9cjiU_0\tmotorcycle\n1iQKKup2m3I_0\ttruck\n1iQKKup2m3I_1\ttruck\n1iSjb4IlqfU_0\tperson\n1i7lugA55RU_0\tbicycle\n1i7lugA55RU_1\tbicycle\n1kZMlCvKoe8_0\tskateboard\n1kZMlCvKoe8_1\tskateboard\n1kZMlCvKoe8_2\tskateboard\n1ksBabVqkMY_0\tcar\n1ltK_3kkqfg_4\telephant\n1l7LOpfDmXY_0\tperson\n1ohoCoKJLDU_0\tmotorcycle\n1oyjAtaWDZA_0\ttruck\n1sQ3EL13Vqo_0\tperson\n1tK31PAVNJM_5\telephant\n1tK31PAVNJM_0\telephant\n1tK31PAVNJM_2\telephant\n1tK31PAVNJM_3\telephant\n1v2enBiUcqA_0\tbus\n1wIGd0H1CUo_0\tperson\n1xSI36nguW0_0\tbear\n1xs-ibIaMMU_0\tperson\n1xyKgJUu0lM_0\tskateboard\n1zVWBQWZxV0_0\tperson\n1zVWBQWZxV0_1\tperson\n1zqpqKWhr1Y_0\tperson\n10la9pvd-pk_0\tknife\n11kfBYxzlFA_0\tperson\n12f1R5wMVPs_0\tperson\n12_S_8HkAvA_0\tperson\n1462k8mwVB0_0\telephant\n15Lx-nGngUo_0\tskateboard\n18WxVaz5Ue4_1\tskateboard\n19A2XM5NIWs_0\tperson\n19UmUpkjRbs_0\tperson\n19oZ30mOTkU_0\tboat\n1-p8vd0PFQ4_0\tdog\n1_6ymF7z_iM_0\ttruck\n2ASHEEgYHcU_0\tcat\n2CF0oQ38cBQ_0\tmotorcycle\n2DM1oM4HFjI_0\tmotorcycle\n2FXE_xO8Mb4_0\tbus\n2FvnQne8he8_0\ttrain\n2GTexq12sBY_0\tperson\n2GTtMvLQqio_4\ttruck\n2GZphW1DkS4_0\tperson\n2HvVFwq85n0_0\tperson\n2Hwu-YpHKw0_0\telephant\n2H8AZ00ONQE_0\telephant\n2IJ4H46ZxEE_0\tperson\n2INYBScuPM8_0\tcar\n2IqEaQ0oyQg_0\tairplane\n2JN_uMTDa9I_0\tskateboard\n2KWlj_ZAw94_0\thorse\n2KWlj_ZAw94_1\thorse\n2KWlj_ZAw94_2\thorse\n2K2gLrhP9AU_1\tairplane\n2K2gLrhP9AU_2\tairplane\n2K6iDBPdcHk_0\tmotorcycle\n2LBHZoJ5skk_0\tperson\n2L3uwdhZtV0_0\tcar\n2MJHsLxKUBg_0\tperson\n2MiqTBWBlEc_0\tumbrella\n2NjC1r6v4IQ_0\tperson\n2O-2zfQxbnA_0\tperson\n2PaTs4s2Ybw_1\tbear\n2PaTs4s2Ybw_7\tbear\n2PaTs4s2Ybw_4\tbear\n2Pa1anwpeKE_0\tperson\n2Q3_TaV8vcg_0\tdog\n2Rc-oAwMJBs_0\thorse\n2Tp0YJi7JwQ_0\tgiraffe\n2UpHhiQWzD4_0\ttruck\n2VZlkg5HjME_0\tcow\n2WTwzNufol8_0\tdog\n2WTwzNufol8_1\tdog\n2WtNxQ0RBfc_0\tperson\n2ZXlS-GRWAw_0\tknife\n2Z6wSOr0jLI_1\tperson\n2a5TUccpQ08_0\tdog\n2a_-AyOXTXg_0\tskateboard\n2cFRz-musVA_0\tairplane\n2cFRz-musVA_1\tairplane\n2cFRz-musVA_2\tairplane\n2cFRz-musVA_3\tairplane\n2dZFWL9XGmw_0\tcow\n2fCH7TpvtlM_0\ttrain\n2fCH7TpvtlM_1\ttrain\n2fJ1hPXpiQc_3\tknife\n2fJ1hPXpiQc_0\tknife\n2gGuKs-4t94_0\tboat\n2i45n6p8AT8_0\tperson\n2i_wjgk6DiA_0\thorse\n2lK0mmHTvB8_3\ttrain\n2lK0mmHTvB8_1\ttrain\n2lqlNq6aII0_0\tskateboard\n2lxPwFW5YQo_0\tumbrella\n2l2gnrYWuWQ_0\ttruck\n2l7MPXzF64M_0\tcat\n2l7TuAfDgO8_0\ttruck\n2mO7-ybapaQ_1\tumbrella\n2nqGkC9ebf8_0\tboat\n2oA7J6HSmt8_6\tbicycle\n2oA7J6HSmt8_9\tbicycle\n2tSpb14o7SA_0\tperson\n2vF8Va9DGSM_5\tbicycle\n2vF8Va9DGSM_4\tbicycle\n2vF8Va9DGSM_14\tbicycle\n2vF8Va9DGSM_15\tbicycle\n2vF8Va9DGSM_2\tbicycle\n2vrbssf2sDM_0\ttruck\n2v808Hn8_do_0\tperson\n2v808Hn8_do_1\tperson\n2yEUVUqYMPc_0\tgiraffe\n2ya3SN5pLyU_0\tcar\n2065vf90oIM_0\tperson\n2065vf90oIM_1\tperson\n21GQbN_4k9M_0\tcow\n21Hp5g5RrOc_1\tperson\n21Hp5g5RrOc_0\tperson\n22iFltXYCcQ_0\tcow\n22ztStWwd8g_0\ttrain\n22ztStWwd8g_2\ttrain\n22ztStWwd8g_3\ttrain\n23qU2q5u0OE_6\tbird\n24Zxq5TuxzI_0\tcow\n26kWe8Ikgxk_0\tbird\n28AecePdVok_0\ttruck\n281z-ZLrI3g_7\tbicycle\n281z-ZLrI3g_4\tbicycle\n29bWSLuiEl0_1\tperson\n2_R2wz82ugQ_0\tumbrella\n3A4oCDgMkHw_0\tcow\n3A-dEIjnmyE_1\tskateboard\n3Bag9o-z-Ks_4\tbear\n3DN2iQJzM-k_0\ttrain\n3DaASBRARLQ_0\tcow\n3D8wwibqkYo_0\tcow\n3EtIKWgGaKY_0\tperson\n3FJ4ZWRq_S0_0\tperson\n3GLXlSuXWcs_1\tcow\n3GQxmRKhMMY_1\tairplane\n3GQxmRKhMMY_2\tairplane\n3GQxmRKhMMY_3\tairplane\n3GQxmRKhMMY_4\tairplane\n3GULyU-IOhA_0\tperson\n3HFqP9a97kA_0\tbird\n3IgOwKkKALw_0\tcat\n3LruhG4SULI_1\ttruck\n3LruhG4SULI_2\ttruck\n3LruhG4SULI_7\ttruck\n3LxUuC1C4y8_0\tbird\n3L7LWpMShiw_0\tskateboard\n3L759GhRx6M_0\tperson\n3MiM8HSul5A_0\tcow\n3MiM8HSul5A_2\tcow\n3MiM8HSul5A_4\tcow\n3M9T5RFr_9s_0\tperson\n3OmdALGspY8_0\tperson\n3O4ynxtRIDk_5\ttrain\n3O4ynxtRIDk_2\ttrain\n3RLrjX-XB98_0\tperson\n3RhgYReCxjo_0\tbus\n3S-lQgiUWVU_1\thorse\n3S-lQgiUWVU_0\thorse\n3UDEQElT2yQ_0\ttrain\n3WhmVhG1ZwU_0\tboat\n3WrB7zPpcHU_0\tcow\n3XDvXaNmGpM_0\tdog\n3XDvXaNmGpM_1\tdog\n3X29L9uQCqc_0\ttrain\n3X29L9uQCqc_1\ttrain\n3Y7-acGE4Wc_0\tperson\n3ZBYYBUfT6E_0\ttrain\n3Zwa4XoeZcA_0\tperson\n3bSWlbx1o3I_2\tbear\n3cOMDXFxcOQ_0\tcat\n3dvUlr2yxz4_0\ttrain\n3g4c88ocJ38_0\tskateboard\n3hMszgfh_qA_0\tbicycle\n3hR78-EVNEE_0\ttruck\n3jdK8UPhpO8_1\tskateboard\n3jdK8UPhpO8_0\tskateboard\n3kdpeeQ1Jnc_0\tcar\n3kd_QEZRUWc_1\ttruck\n3kd_QEZRUWc_5\ttruck\n3lHqsoi5cgo_0\tperson\n3liK-2EflUk_0\tcar\n3mIRDwcY1Lg_1\tperson\n3m5eMVv4z6w_1\tbear\n3nD6nhJtxIU_1\tskateboard\n3nbim5nlANI_1\thorse\n3q6LFZBelUs_0\tperson\n3rSUjqH5Wlw_0\ttruck\n3sEpU7UoQP8_0\tperson\n3sg9txiHCp0_0\tbear\n3szPqA1S6P0_0\tperson\n3tv_dUR84cE_1\tairplane\n3tv_dUR84cE_0\tairplane\n3uG4S1gvMxs_0\tbird\n3uVS_DAYfvY_3\tcar\n3vuykX663QA_0\tperson\n3wI_ureHDBY_0\ttrain\n3xLvnY9w5y0_0\tperson\n3xy8Fz8Nsgk_0\tbear\n3zV0wmpiS78_0\tperson\n3zccg30U6vs_0\tperson\n30AwDyYIr7o_0\tskateboard\n325FEWXtOYw_0\tperson\n3293hM-lzx8_0\tperson\n32_1y90B5eQ_0\tperson\n34L4iiCFTXM_0\tairplane\n34Pma_R21A8_2\tperson\n34jFMRay1zg_0\tperson\n35-MplWeZYQ_0\tmotorcycle\n36zopo-HS48_0\tperson\n38fx_nvlYDE_0\ttruck\n39yxd86tGLU_1\tboat\n3-ugxoEDuFY_0\tperson\n3_DeqcBRuwE_1\telephant\n3_DeqcBRuwE_3\telephant\n3_w3NNPGotM_0\tperson\n4ARhlapmEmI_0\tdog\n4Ac5edN3qIA_0\telephant\n4Ac5edN3qIA_1\telephant\n4BItGVIP3_w_0\tcow\n4BItGVIP3_w_1\tcow\n4BO3P7E3NDE_0\ttruck\n4BO3P7E3NDE_1\ttruck\n4BO3P7E3NDE_2\ttruck\n4Bw4gKDBQCM_1\tdog\n4C8rmAORSg8_0\tperson\n4Dcg1W7RRmQ_1\ttrain\n4ENxW7OPynQ_1\tcar\n4ExA1FWRfMM_0\tdog\n4FVfzA07rVs_0\tperson\n4FVfzA07rVs_1\tperson\n4GgzQqhrTmA_0\ttrain\n4GrMZIyjUdo_0\tperson\n4IUjw1DfTd4_0\tcow\n4ItJTYAUV3Q_0\tcat\n4IxmhmTsSRM_0\tperson\n4I72WJJrc1o_0\tperson\n4I72WJJrc1o_1\tperson\n4KFEzxXCjmw_0\tcar\n4KYtNfb0-64_0\tperson\n4KqP6ylUZpI_0\tumbrella\n4LHOLAPnjV8_0\tboat\n4LXlXP1epJE_0\tperson\n4MFPOb36tfo_2\tbear\n4MFPOb36tfo_1\tbear\n4MZrjdSF01s_1\tboat\n4Me3lyNuZ7k_0\tperson\n4M9sKAzevzo_0\ttrain\n4NI5ycFo2TA_0\tairplane\n4NI5ycFo2TA_1\tairplane\n4NKnUR1OMGo_0\thorse\n4NKnUR1OMGo_1\thorse\n4Ng6OxFQ9RY_3\tbear\n4Nx45ho9gSg_0\tperson\n4PNJ3ZV4f8E_0\tairplane\n4PNJ3ZV4f8E_1\tairplane\n4PNvdZPZIdM_0\ttrain\n4PhakAK74GE_1\tmotorcycle\n4PxLGSy75rk_2\tknife\n4QOhfEMrhzU_0\tairplane\n4Q0M6mWNDiU_0\thorse\n4RhaYtFsnGY_0\tperson\n4SrP2aSHoRk_0\tperson\n4TyWpb19rk4_0\tumbrella\n4U9sm_eqKTM_1\tcar\n4U9sm_eqKTM_2\tcar\n4Xd_k2REw4I_3\tbear\n4YRd-9lHLko_0\ttruck\n4ZIgGDQB_R0_0\tairplane\n4ZYWcd-Fdzg_0\tperson\n4Zxsg6aJ9tA_0\tperson\n4aOWHpM7rOM_0\tskateboard\n4avaoLry8L0_2\tskateboard\n4bHGieqZfUk_1\tknife\n4duFrAfYG8k_0\tperson\n4d6P5umc9j0_0\tbird\n4fIznTWAFRw_0\thorse\n4fIznTWAFRw_1\thorse\n4fIznTWAFRw_2\thorse\n4f_X4WbQu4M_0\telephant\n4hCLCX2lLGk_0\tperson\n4iBMfS5mIt8_0\tbird\n4ibKNzoA1tQ_0\ttruck\n4igLFns238c_0\tmotorcycle\n4kGNxHIXcUA_0\tperson\n4kLhVZ9UGDE_0\tskateboard\n4lC7BU1eHxc_0\tbus\n4l683stlRno_0\tknife\n4mv1Nx0j3k4_0\tperson\n4nz8CN4XlBE_0\tdog\n4oWXZIsPnEg_4\telephant\n4ofuHARhFlQ_0\tperson\n4pYH5Cm7Vkg_1\tboat\n4p3JGxvfiNE_4\tbicycle\n4p3JGxvfiNE_8\tbicycle\n4p3JGxvfiNE_10\tbicycle\n4qBYTh0AcfM_0\ttrain\n4qIx-9Qs3Zs_0\tairplane\n4qIx-9Qs3Zs_2\tairplane\n4qRkIra0ARM_0\tperson\n4rhkfDV0QC8_1\ttruck\n4ry_MJjFDUA_0\tcat\n4skAfQd8nX8_0\tperson\n4t79zNxVi0Y_0\telephant\n4t79zNxVi0Y_1\telephant\n4uFHcf-qpkU_0\thorse\n4uwly-P5oxg_0\tperson\n4uwly-P5oxg_1\tperson\n4u7pm-h8fiE_0\tperson\n4wox28JkSKY_1\tperson\n4w3ykGq-Q_E_0\tbicycle\n4w3ykGq-Q_E_2\tbicycle\n4w5q5RdJ5g4_0\thorse\n4w5q5RdJ5g4_2\thorse\n4w5q5RdJ5g4_4\thorse\n4x80RbpjCPM_0\tbear\n4x80RbpjCPM_4\tbear\n4yFIyyevEVY_1\tairplane\n4ycylGSteiU_0\ttruck\n4yjvwunpMKI_0\tcar\n4yjvwunpMKI_1\tcar\n4yjvwunpMKI_2\tcar\n4yw2hFyx47Q_0\tperson\n4y3qJAq5ap0_0\tcar\n40QgDL4dxrc_0\tairplane\n40deMboVqPI_1\tbird\n44FNsfkuWOI_0\telephant\n44hlNbUHL2c_0\tperson\n44672wUoOwM_0\tperson\n46NXMVbpzZw_1\tboat\n468w3XkLHwc_1\tboat\n47Nn3ywWOlU_1\tperson\n47cBD-Sq9mw_1\tperson\n48ujtCaCdX0_0\tperson\n49CwzbRIUpI_1\tbird\n49a6EgDu-ZU_0\ttruck\n4-GpBan9Z8s_0\thorse\n4_A8f6NAa3w_0\tperson\n5BHekdOG9JA_0\telephant\n5Bw22C4nsb4_0\ttrain\n5CPZUe4hn0M_0\tairplane\n5DS23LkFit8_0\tcow\n5DVU9wTDzN8_0\tskateboard\n5DjSsYt5N4Q_0\tskateboard\n5FAbvaslTQE_0\tmotorcycle\n5FXOzzaKrcw_0\tairplane\n5Fro7Bo628Y_0\tboat\n5FxLl3jd7I0_0\tskateboard\n5F5fgLUXow8_3\tcar\n5F5fgLUXow8_7\tcar\n5F5fgLUXow8_8\tcar\n5F5fgLUXow8_0\tcar\n5F5fgLUXow8_1\tcar\n5F5fgLUXow8_2\tcar\n5F5fgLUXow8_4\tcar\n5GMISyAZA9o_0\thorse\n5GpziDmwRTc_0\tcow\n5JPqrGj3CgM_0\tgiraffe\n5Ko6ZHOz4IY_0\tperson\n5Lbguv7FGLM_1\tbird\n5M7Wx_HJ_XQ_0\tperson\n5Nz4g-YykuI_0\tperson\n5O41yfenxMM_1\tcow\n5PeDI6XI7is_3\thorse\n5Qd986abGHo_0\tperson\n5Tza7UHp3xE_0\ttrain\n5WTw98UVUCo_1\thorse\n5WpjuP9uJrI_2\tbird\n5W8Hg8uhxgQ_0\tcar\n5W8Hg8uhxgQ_1\tcar\n5XEAIdyb_ng_0\tperson\n5XcopMzRch4_0\tskateboard\n5YbA5Uw-5xQ_0\tperson\n5YbA5Uw-5xQ_1\tperson\n5bIO0Gl25u0_1\tboat\n5bIO0Gl25u0_0\tboat\n5dGbxAkTDPM_1\tcow\n5dRnssv_jug_0\tcow\n5eRQh3Rv1Lk_0\thorse\n5eak0nLYZC0_0\tairplane\n5enKNMe1Dpg_0\tperson\n5eq6WBGMyME_0\tgiraffe\n5eum6r7kxbw_1\tgiraffe\n5eum6r7kxbw_4\tgiraffe\n5e84K5OEIj4_0\tperson\n5fXoyIBk_gI_0\tperson\n5gNgZQ0nDW8_4\tknife\n5gNgZQ0nDW8_5\tknife\n5gNhZJMFmis_0\tbear\n5gNhZJMFmis_1\tbear\n5gbLo2hItTs_0\tperson\n5geZjQ9qAJU_0\tmotorcycle\n5iDhgUX1kdc_0\tperson\n5iwoWJK4GGo_0\tcar\n5ll8fjNhIzg_0\tperson\n5lv2GCs3_E0_0\tperson\n5l9rlcuS7pE_0\tbus\n5mocfP3c3JE_0\tbear\n5mqvNWXtMCU_0\tcat\n5nAuDbKmWLY_0\telephant\n5nC2ZXfE-sg_0\ttrain\n5nkh3PK6lBs_0\tcow\n5of5t38DQL4_0\tcow\n5okxoIw3cJI_0\tskateboard\n5ovlgihl130_0\tknife\n5phhj08_8hI_0\tdog\n5psIBlFu-yQ_0\tperson\n5rh7nf5z_O0_1\tcow\n5rkM4mLsQoU_0\tknife\n5sIj93XnVc0_1\tmotorcycle\n5sjUnvABkko_0\tairplane\n5s4kqURLLo4_0\tperson\n5toRpAYrY_4_0\tperson\n5uYObEyAbCQ_0\thorse\n5ukcjpXOopg_0\tperson\n5vPXxAEGTrw_0\tairplane\n5vUtusnPXXs_0\tbird\n5vaBUAh4HkU_0\tairplane\n5yMeqHPiJgY_1\thorse\n5yMeqHPiJgY_2\thorse\n5yMeqHPiJgY_3\thorse\n5yeSANffSRk_0\tperson\n5yeSANffSRk_1\tperson\n5zJuhMtO1F8_0\tbird\n5zKtWxffw-0_0\tboat\n51rDJW0FO8w_0\thorse\n51yQTVmaMXw_1\tmotorcycle\n52UjkVxSSHg_0\tperson\n52VFNDCXUHg_0\tperson\n52pNzl4wrxs_0\tperson\n52wdqvYrGv4_0\tperson\n522wkm19sH0_0\tbus\n54icMYqqx_w_1\tbus\n55H1IVgQj3E_0\tboat\n56BI7lH0z1g_0\tperson\n56bgv0J-cXw_1\tknife\n56bgv0J-cXw_4\tknife\n56r2wDCnuQQ_0\thorse\n57BY7QjcYbQ_0\tperson\n574FA_5qp-s_0\tbus\n58K_ZPS7U8M_0\tperson\n58gdyHWU6do_1\ttruck\n5802XdQdAkU_0\tcow\n59JJGcB2jRE_0\thorse\n59JJGcB2jRE_4\thorse\n59JJGcB2jRE_2\thorse\n59cXOQc39JI_1\tzebra\n5928Zhy26yI_1\tgiraffe\n5-Oeo8tmauc_0\tbus\n5-Oeo8tmauc_1\tbus\n5-Oeo8tmauc_2\tbus\n5-O2xma48Tw_0\tbird\n5-y_Rrr8shw_2\tperson\n5_njhyGAXdE_0\ttruck\n5_njhyGAXdE_1\ttruck\n5_njhyGAXdE_2\ttruck\n5_2sGSrZblY_0\tperson\n6AD9GHHEVkE_1\tboat\n6AYkCla5Oak_0\tcar\n6A2LC4_gts4_0\tperson\n6A2LC4_gts4_1\tperson\n6BB65BA-pS0_1\tknife\n6CKS3WJRpHI_0\tperson\n6C1C-L7L6CE_0\tperson\n6DQ-H73b62Y_0\tperson\n6EHcwJiML3g_2\tperson\n6GlBa-DUEqc_0\tperson\n6HlTwF1ZDkc_0\tperson\n6HrWOx9GfzI_0\tperson\n6JrhpITR8po_1\tcow\n6JrhpITR8po_0\tcow\n6KpKxtwB1Ww_0\tperson\n6LiW0KF3fME_0\tperson\n6Meaw8zK8sU_0\tperson\n6M3wDWZDZJ8_0\tcar\n6M4oJG9NsRM_0\tperson\n6Nc1z3BVzlI_0\tbear\n6OlxDr5vZuI_2\thorse\n6Ona04rOyZk_0\tcat\n6PBKPTCkWOo_0\tperson\n6PH-mFChsi0_0\tairplane\n6PwE6q6pebc_1\tperson\n6QFs4uNsSt4_0\tperson\n6RIFox7kLqY_0\tcat\n6SBj14dkVPM_0\tcow\n6SdX0oE9Qm8_0\tcat\n6SizSdOT9_k_0\thorse\n6TEQ098RfzE_0\tcow\n6TQ8X9G4BAY_0\tdog\n6UQbOOWv_ws_0\tcow\n6UQbOOWv_ws_2\tcow\n6XUe2u2YWkQ_2\tumbrella\n6bJPo4tzJvQ_0\tperson\n6bco275PcUs_0\ttruck\n6bco275PcUs_1\ttruck\n6gwBOlfJ34I_1\tskateboard\n6gww5ltOLQY_0\tbird\n6gww5ltOLQY_1\tbird\n6hAG7632JjA_0\tcat\n6htKDjHsXPQ_0\tcow\n6id5A0aiJbE_0\ttrain\n6jwTUZocHXY_0\thorse\n6j07-PcNv70_0\ttruck\n6kjb3q8EygI_0\telephant\n6lAxaY4AYB8_0\tperson\n6lPPfWdeBvU_0\tcat\n6l3SpVgqJY0_0\tperson\n6mYi-vXre4Q_0\ttruck\n6med3JZ2k40_0\tperson\n6miVJWDTBCY_1\ttrain\n6n6fVeWD_m0_0\tknife\n6o61j0KZ9cA_0\tperson\n6pPjKIlVlfY_0\tbicycle\n6pnenPlFGIc_0\tmotorcycle\n6pnenPlFGIc_1\tmotorcycle\n6pny8Td3Lvs_0\thorse\n6qRIuIHqJco_0\ttrain\n6qSDUh2ES7Q_0\tperson\n6qVpY1VC2hU_1\tcat\n6qhp1FiVbBQ_0\tknife\n6rlBtCRp25g_0\tcat\n6r0rYZCL4Qc_0\tperson\n6r0rYZCL4Qc_1\tperson\n6uMmknjq0mg_0\tbicycle\n6uSZqFsKMGI_0\tcow\n6um2PoiKfT4_0\tmotorcycle\n6vAGEaKFuyY_1\tbus\n6vAGEaKFuyY_2\tbus\n6vafM_LKdhA_0\tumbrella\n6vc8u4MPWkY_0\tbird\n6v_NKAM10sA_5\tbicycle\n6v_NKAM10sA_9\tbicycle\n6v_NKAM10sA_10\tbicycle\n6v_NKAM10sA_11\tbicycle\n6v_NKAM10sA_12\tbicycle\n6v_NKAM10sA_0\tbicycle\n6v_NKAM10sA_1\tbicycle\n6w-nwNFVYm8_0\tmotorcycle\n6y78kiGuIAk_0\tperson\n6zPET0HFVaM_3\ttrain\n6zPgsocp4bY_1\tbicycle\n6zPgsocp4bY_2\tbicycle\n6zPgsocp4bY_3\tbicycle\n6zPgsocp4bY_7\tbicycle\n6zPgsocp4bY_9\tbicycle\n6zW1omjPFRs_0\telephant\n6zW1omjPFRs_1\telephant\n62MEsd3U1aQ_0\tperson\n62PpG0cOcbU_0\tperson\n63vKOQ-SCBw_0\tairplane\n63_kFJCm2pQ_0\tperson\n64yGcACuF0g_0\tcat\n64yZxDGH92I_0\tperson\n64-njkqyF7k_0\tbus\n65u4BXZ10RY_0\tdog\n65u4BXZ10RY_1\tdog\n654ylXfWndU_0\tboat\n66HPgc7Up3o_6\thorse\n66HPgc7Up3o_3\thorse\n66HPgc7Up3o_4\thorse\n66HPgc7Up3o_7\thorse\n66N_Ju8hg2U_0\tknife\n665JKK-JrTc_0\tperson\n67kix34dj7A_0\ttruck\n67wgEifQYpg_0\tperson\n68KnEa1hVf8_0\tbicycle\n6-Z9S0qy8ys_1\tdog\n6-7x1BQGuQE_0\tperson\n6_nq4o_21CY_0\telephant\n7BBHz6wfABM_0\tperson\n7CYm8WQftfw_0\tbus\n7DIXCjEBWLw_0\tairplane\n7D-ypPzaTDI_0\tperson\n7GvsFRhnxWc_1\tbird\n7G2sXxpbA-0_0\tmotorcycle\n7HXox1j1X2A_0\tperson\n7Hthj7LhsoI_1\telephant\n7H1AhHiyip0_0\tperson\n7JXhfaNTsUQ_2\tbird\n7K61aiu3UsM_0\tperson\n7K61aiu3UsM_1\tperson\n7LKG4ReUlZA_0\tperson\n7LTKFUY3Xo8_0\tbird\n7MQZWaHzUOo_0\tcow\n7Mb_dcvNENM_7\tbicycle\n7Mb_dcvNENM_3\tbicycle\n7Mb_dcvNENM_4\tbicycle\n7Mb_dcvNENM_5\tbicycle\n7Mb_dcvNENM_6\tbicycle\n7NDhXBp57BY_0\tperson\n7NFMDZwqdw4_0\tperson\n7Ng49Wed4Y4_0\tcow\n7Ng49Wed4Y4_2\tcow\n7NxvW5DSQrI_0\tcat\n7O8grUKQopY_0\tperson\n7PeZgsBNi5g_0\tcar\n7QauV6mvt98_0\tcar\n7RxzfGFIxSg_0\tcat\n7Strg7qJtW0_0\telephant\n7Strg7qJtW0_7\telephant\n7Strg7qJtW0_1\telephant\n7Strg7qJtW0_2\telephant\n7Strg7qJtW0_3\telephant\n7VQ8QZRnxD8_0\tcow\n7Vcfkjk--Fc_1\tdog\n7V5Q7Te4KNI_0\tbus\n7WZRhdW3Ysw_0\telephant\n7XQ-ufhX7gc_0\tcow\n7XQ-ufhX7gc_1\tcow\n7YCox5adS-U_0\tperson\n7YQM-nFSHW4_0\tknife\n7Ya_jh9VO9U_0\tperson\n7aTla4KAK_U_1\tknife\n7bqlApH5GwI_1\tbicycle\n7dFEYp-1Hgo_0\tperson\n7e8WNmzDHUQ_0\tperson\n7fF7heSCMTw_0\tmotorcycle\n7fRxyCT-Wao_0\tgiraffe\n7fRxyCT-Wao_2\tgiraffe\n7fSMUG5W8vk_2\tbicycle\n7g8SI9aAn70_1\tumbrella\n7hIJP5KExbE_1\telephant\n7hjOcuaQm7I_0\telephant\n7kPsaqRQBCk_0\tknife\n7kl1hNW3aVs_0\tmotorcycle\n7k7H9RKhOF8_1\tskateboard\n7k7H9RKhOF8_3\tskateboard\n7ledBa3nuVs_0\ttrain\n7ledBa3nuVs_2\ttrain\n7m98zjjFHbU_0\tperson\n7ntsSm-LFZA_0\tperson\n7ntsSm-LFZA_1\tperson\n7nzY38tPTM0_0\tperson\n7nzY38tPTM0_1\tperson\n7n8C_td0Th8_0\thorse\n7p4RxRFB_Eg_0\thorse\n7rE5dIroJwQ_0\tperson\n7rifGM-TuPA_0\thorse\n7trl2U6nLPc_0\thorse\n7vyHv7_GxbQ_0\tperson\n7wte1pPBwQ0_1\tbear\n7w616uMnI_8_0\telephant\n7w616uMnI_8_1\telephant\n7x8K4JervhE_0\tbus\n7y0joj813H0_3\tbus\n7zRaB-2B7B0_0\ttrain\n72RzEHZFYtM_2\tairplane\n72RzEHZFYtM_1\tairplane\n73Wonc3xnLI_0\tperson\n73Z4KnnAMlU_0\tperson\n74gRlu6vJLY_0\tperson\n747bRdBUPSw_0\tperson\n76LU6w1a7UA_1\tairplane\n76PIBEC3WVo_0\tskateboard\n77GychcVDRI_0\tperson\n77dvi_3OU4M_0\tperson\n79MY0qku9uc_1\thorse\n8AgZqrCi9no_0\thorse\n8BK44tI3ACo_0\tperson\n8BQJVHpHFsU_1\tdog\n8BQJVHpHFsU_2\tdog\n8B3bbakza_Q_0\tperson\n8CJRCoA1Rps_0\tperson\n8ClOgfNAjXs_0\tgiraffe\n8DlXcc1IXlw_0\tcar\n8EwDzFi34nA_0\tcow\n8FEp5ORJ27g_0\ttruck\n8FyuS809d24_0\tdog\n8FyuS809d24_1\tdog\n8GGi0BXLCaM_0\tperson\n8G_vBzM-Ws4_1\tumbrella\n8HcyzPUv5ag_0\tperson\n8JIpa6tfWzo_0\tairplane\n8JKJnuN_UTI_0\tcow\n8JhHIO_7m-0_0\tcow\n8LGnOH6nDbc_0\tdog\n8LGnOH6nDbc_1\tdog\n8Lx004yCltY_6\telephant\n8Lx004yCltY_12\telephant\n8Lx004yCltY_18\telephant\n8MO_kng7L-s_0\tperson\n8MO_kng7L-s_1\tperson\n8NlznvdsNJQ_2\tboat\n8N8hB2Au4JE_0\tperson\n8Pbd3dd3v5E_0\tperson\n8Pz3xq3KFo0_6\telephant\n8Pz3xq3KFo0_4\telephant\n8Qr-5_567tI_1\ttruck\n8Q8g9z-DNF8_0\tmotorcycle\n8RZsKbffdqI_0\tcat\n8Sbz2MGzhp4_0\tperson\n8UcqXCLmq-M_1\telephant\n8UcqXCLmq-M_3\telephant\n8UcqXCLmq-M_6\telephant\n8UcqXCLmq-M_7\telephant\n8Ul_lS0g_RU_0\tskateboard\n8UmKRVMR08g_2\tbird\n8U7BmrkcgcU_2\ttruck\n8VkbfdMQrR8_0\tperson\n8VzjERSpeS4_1\telephant\n8VzjERSpeS4_0\telephant\n8WcBoYh-IMg_0\tbird\n8X27eyH-tx0_0\tcar\n8Zi2bsTpMeY_0\tperson\n8ZmfZDMaVhg_0\tcat\n8Z1GvAHPEnU_0\tcat\n8a1bD-UgfKE_0\ttruck\n8bD-aqWPxwM_0\tmotorcycle\n8bE_FhrjBuM_2\tskateboard\n8bE_FhrjBuM_0\tskateboard\n8bE_FhrjBuM_1\tskateboard\n8bypIjdKgEI_0\tperson\n8b5fedIr-WQ_0\tperson\n8cNzCe26dSM_0\tperson\n8cSOpd9gaPE_0\tcow\n8c8TJ_Jzngk_0\thorse\n8d6950aGpD8_0\tdog\n8eK3ktD9j5o_0\thorse\n8eK3ktD9j5o_1\thorse\n8ewNcrMhg-w_0\tperson\n8gsiG2Wu3YM_0\tgiraffe\n8hFEJz0GvfU_0\telephant\n8hwa44VMdLs_0\tperson\n8h8Cpkugo-Y_0\telephant\n8h_eY7zEIqk_3\ttruck\n8iBiHoA_OJk_0\tperson\n8jRFQ8RKZ0s_1\tcar\n8kTREwiI1-8_0\tcow\n8kn6PJbtsyA_0\tbicycle\n8kn6PJbtsyA_1\tbicycle\n8kn6PJbtsyA_2\tbicycle\n8kn6PJbtsyA_3\tbicycle\n8kn6PJbtsyA_4\tbicycle\n8lKXEr2W3yM_0\tknife\n8lMRKCKyBwk_0\tperson\n8lonNtE99PI_1\tperson\n8l7UmXXnAJs_0\ttruck\n8mlHevSC8cc_0\tcar\n8m-GtOBjbzY_1\tbicycle\n8nWSGwlJyPQ_0\tcat\n8nsl-r_i0AI_0\tperson\n8n3A8io4GNU_0\tperson\n8okfUuO0Pvc_1\tbird\n8poWB-6q4xk_1\tbicycle\n8p2saqn2kiQ_0\tperson\n8qFJg_AoKeY_0\tcow\n8qulLm8MYrM_0\tbus\n8rBxRMDJEFY_0\tperson\n8sOWPIfWpCM_0\thorse\n8tKto2zQWUg_0\telephant\n8uoYlmdJlAo_1\tknife\n8wdvLn40CTk_5\tbus\n8wdvLn40CTk_0\tbus\n8wdvLn40CTk_1\tbus\n8wv3WJBJmog_1\tdog\n8yFZUTSjpos_0\tmotorcycle\n8zBx-nHUqBY_0\tperson\n8zUAF30Hu6c_1\ttrain\n8zUAF30Hu6c_2\ttrain\n8zftjn0I9TQ_0\ttruck\n8zftjn0I9TQ_2\ttruck\n8zjgYuK3nVY_0\tperson\n8z-YLOzAxb4_2\tbicycle\n8z-YLOzAxb4_4\tbicycle\n8z-sTr28AWk_0\tskateboard\n80CcMFD-Rcw_1\tperson\n80CcMFD-Rcw_0\tperson\n81cNVk8boEM_0\tperson\n82lK9rB-e08_1\tmotorcycle\n84P6L_HrN48_0\tbird\n88N5__h7Zdo_0\tbicycle\n89a461_gh2o_0\tbicycle\n89mGhzBokZ8_1\tbear\n89qfsC77BYk_0\tperson\n8_oUj2cuPdo_0\tdog\n9A-VO1zCZJ4_1\tmotorcycle\n9BVgbNz-bi8_0\tperson\n9BVgbNz-bi8_1\tperson\n9BpvtvUGG5g_0\tperson\n9DGpFjuUVBk_0\tperson\n9DY0dTRH5xI_0\tbird\n9D5ORdC7BuQ_6\tbus\n9ELQq5BMR1U_0\tperson\n9E8VBIYmTGY_1\tcow\n9E8VBIYmTGY_0\tcow\n9FAB9BrcQls_0\tperson\n9FTOvdcnzDQ_0\tairplane\n9GdhKEBm0pA_6\tbicycle\n9GdhKEBm0pA_1\tbicycle\n9GdhKEBm0pA_3\tbicycle\n9HqapwdLVzk_4\tknife\n9KfdTsjy53o_0\ttruck\n9LHbQA-pT0U_2\thorse\n9LJRUmW_AII_0\tboat\n9LOpNoTFWKg_0\ttruck\n9LOpNoTFWKg_4\ttruck\n9LOpNoTFWKg_1\ttruck\n9LOpNoTFWKg_2\ttruck\n9LqExSHe9y8_0\tknife\n9Ls7gSZQt1w_2\tbear\n9NsmnTdRiik_0\tairplane\n9PsezNNV0Jc_1\tairplane\n9PsezNNV0Jc_2\tairplane\n9PsezNNV0Jc_0\tairplane\n9Q3srzApSJU_0\tperson\n9RGlWjTKvE0_0\tbus\n9RZCK24Shec_0\tcat\n9ScZtgWAJZA_1\tperson\n9SgrA5Q1d94_0\tperson\n9ShZpsmuvc4_2\tskateboard\n9ShZpsmuvc4_1\tskateboard\n9UU2h6M8DJk_2\ttruck\n9UwLiWKOIGY_0\tperson\n9U-tccGetsk_0\tknife\n9VwSYjCCRYk_1\ttruck\n9VwSYjCCRYk_2\ttruck\n9WDPvYpnrfU_1\ttruck\n9WDt0JjOFIA_0\tperson\n9YVkZ7QxD5E_0\tperson\n9Y6XZFO31JU_0\tcow\n9ZpZZoTtySo_1\tbear\n9Z0Jz1tesQ4_4\tcow\n9Z0Jz1tesQ4_1\tcow\n9Z0Jz1tesQ4_2\tcow\n9Z0Jz1tesQ4_3\tcow\n9aQOAnspXGo_1\tbird\n9bYPYgMQVjU_0\tperson\n9bzmQFGK8m8_0\tperson\n9dOPPvgyMqk_0\tperson\n9eI_0DoOE08_0\tperson\n9eI_0DoOE08_1\tperson\n9g8o260G10k_0\tbird\n9hAU80xKWy0_0\ttruck\n9jS5MThAtmo_0\tperson\n9kGuuCx39JA_0\tmotorcycle\n9lsXenPJ-X8_1\tbird\n9ltdzlYXfp8_0\tcow\n9ltdzlYXfp8_3\tcow\n9muklrcigJY_0\tdog\n9nqU8e9IUPU_0\tskateboard\n9pEB8cjvPSQ_1\thorse\n9qamzN9bwxw_0\tperson\n9rvVWyyuud0_0\tperson\n9r1FvK19XV8_0\tperson\n9uhZRDsQKnc_0\tperson\n9yt1if13PHk_0\telephant\n9y5txKR57mc_0\tbird\n9zBCjCtH3Eg_0\thorse\n9zqk5w8Qx1Q_1\tbicycle\n9zroWMwZHGI_1\tperson\n907A5I4-LpA_0\tmotorcycle\n91SWvU-5TcI_0\tperson\n92MaWPuO8PI_0\tboat\n92560YiwSP0_0\tperson\n93gyPa_dPGU_0\ttruck\n946wiAK4Seg_1\tperson\n95CV_olHtcI_0\tperson\n96WWGXa4QrI_0\tcar\n96akJFw5SPU_0\ttruck\n96iqXHgOXKY_0\tperson\n98XiF-Z__aI_0\tcat\n99Tb7HSFn3I_0\tperson\n9_bFE0FUq_c_1\tknife\n-A-tBuMjU8s_0\tcat\n-B4YQQLrOfI_2\tskateboard\n-C0rYHhL_x4_0\tmotorcycle\n-DYf49hlRSE_0\tperson\n-Ebcfmg0-eE_0\tperson\n-E05a-eQSwY_0\tumbrella\n-FMaVn21dYU_1\thorse\n-Fu9coX9J-A_0\tperson\n-Fu9coX9J-A_1\tperson\n-Gk4iMiEMCc_0\tperson\n-LVtIbelA3M_0\thorse\n-LXr7LdXtrk_0\tboat\n-LjAFTF5WP4_0\tbicycle\n-LjAFTF5WP4_1\tbicycle\n-LjAFTF5WP4_3\tbicycle\n-MpLPuviQ00_0\tperson\n-M_jT3EYgcc_0\tperson\n-NWvB2g952Q_2\tbird\n-OZt785bbpY_0\tairplane\n-P37Y1G6oHk_2\tairplane\n-P37Y1G6oHk_3\tairplane\n-P37Y1G6oHk_0\tairplane\n-QBeUV_OkJg_1\tdog\n-QQCINzsXpw_0\tperson\n-Q6g2xZ0PxY_1\tairplane\n-RjxMfaV-Vo_1\tknife\n-RjxMfaV-Vo_2\tknife\n-SPHavKGd3M_0\tskateboard\n-S8L2HACCPE_12\telephant\n-S8L2HACCPE_1\telephant\n-S8L2HACCPE_10\telephant\n-TKKOo1FfAI_0\tbird\n-VgWHKeRRjs_0\tairplane\n-VgWHKeRRjs_1\tairplane\n-WyEyKxdZOQ_0\tperson\n-XWeGpACKwc_0\tskateboard\n-Xj6MiGVWt0_0\tperson\n-XwZnoNm0FU_0\tdog\n-ZDO95E0pl8_0\tperson\n-anX-ad_gHQ_0\tperson\n-avz2OsPIq4_2\tbicycle\n-bJkl4q5f-A_0\tbird\n-c1b7nHzGn4_0\tairplane\n-dQnNlBQp3o_0\tperson\n-db_SToBhkg_2\tmotorcycle\n-eZUdm8ERQQ_0\tperson\n-e42Pb0YeOY_0\tcat\n-fnhznKC3CU_0\tperson\n-f0JLwuyuTM_0\tperson\n-jL0HOXwYls_0\tperson\n-kLIF2a7yeU_0\tperson\n-k1TxEpOgnA_0\tperson\n-l9NS6DuRPI_0\tperson\n-mgNwLW3ODc_0\tperson\n-mwDgqLpu-k_0\tskateboard\n-nOfuA8B7As_1\tbicycle\n-nzXunuZac4_0\tcat\n-oG6YVPhC_I_0\thorse\n-o28rb1UnYA_0\tcar\n-sJOJNjOCBI_0\tmotorcycle\n-sJOJNjOCBI_1\tmotorcycle\n-sWch1rnO10_0\tperson\n-th9NS9hl6s_0\tcow\n-uP01llwXFY_5\tboat\n-uP01llwXFY_1\tboat\n-u5MNR-9ClU_0\tperson\n-vkMKVuweFA_0\tperson\n-v7FXEhgwtE_0\tperson\n-y652b4w3Ss_0\tbird\n-zqHD6Jthqg_0\tperson\n-0U1vm6LIi8_0\tperson\n-1je1K1ihbk_2\tskateboard\n-2iw3MzUP2Y_0\tmotorcycle\n-3OvKcu5P2U_0\tcar\n-3fzr21Ov5w_0\tperson\n-6vJDV8XnWE_0\tboat\n-7Im8MyvaXU_0\tcat\n--8shIp3t0I_0\tknife\n-_iBuJTwjw8_1\thorse\n-_xag4X_Do0_0\tbird\n_ATEx5gbBEQ_0\tknife\n_ATEx5gbBEQ_1\tknife\n_AcvI8VF5ig_0\tcow\n_Ae4vmwt8uA_0\tperson\n_Auvs-o5Pck_0\ttruck\n_A8nA25Tq8c_1\tperson\n_C_yvxdjVGA_2\thorse\n_C_yvxdjVGA_0\thorse\n_DXAxnPIiBU_0\tcow\n_D-9w3aSX50_0\tperson\n_GyE3cPQ6U8_0\tcar\n_HN1_MjnjWo_2\telephant\n_HYaLoOKE84_1\tcow\n_IhkqtAQHBw_0\ttrain\n_InrHPE8Umw_0\tmotorcycle\n_IpUnYit3Pg_0\tdog\n_JNG6qK6INs_3\tbear\n_KzDIvt0cCk_0\tperson\n_K6jYgDC1JU_0\tairplane\n_NZ4o-omJLE_0\tumbrella\n_NtOMcyVAp4_1\tdog\n_OmnjH4t-IY_0\tperson\n_QF0A9B-xB8_0\tperson\n_QRy9nd4kcg_0\tairplane\n_Q9M8QAjSMk_0\tperson\n_Rd-wEO2r10_0\tperson\n_R6nlDzh6Tc_0\tperson\n_R6nlDzh6Tc_2\tperson\n_T0O1BlYjaU_1\tbear\n_VegkTdhrQE_0\tmotorcycle\n_WKJaPPBz8Q_0\tumbrella\n_WcqTpLKkww_1\ttruck\n_Y6_E1l4blQ_1\tknife\n_ZDU4qi4lcI_2\tcow\n_ZDU4qi4lcI_0\tcow\n_ZDU4qi4lcI_1\tcow\n_ZHmkH59bCQ_0\tperson\n_ZXqLyRe4n0_0\telephant\n_ZsogS9uPJQ_0\tperson\n_akq_DieEWE_0\tperson\n_akq_DieEWE_1\tperson\n_bO2sdIelLY_0\tperson\n_dC_upYbxWI_0\tknife\n_eCb7mFYyIg_0\tmotorcycle\n_egWujmdZtw_0\tperson\n_epdfuB0qRM_0\tcar\n_e5Vvy9DJ9E_4\tbear\n_e5Vvy9DJ9E_0\tbear\n_foK5Dvj1As_0\tbird\n_hryEVGKNuw_0\thorse\n_iY4AnGfq0Y_0\ttrain\n_jBzwdg0QRA_1\tbus\n_jci9tIBIB4_5\ttruck\n_kdhlRke8uI_0\tperson\n_kfdh_5bI-Q_0\tperson\n_lmD-useijU_0\tperson\n_mJBwuCegJ0_12\ttruck\n_mJBwuCegJ0_1\ttruck\n_mJBwuCegJ0_2\ttruck\n_mJBwuCegJ0_8\ttruck\n_mJBwuCegJ0_9\ttruck\n_oRtPVRmtwo_0\tdog\n_pEHwWe2seA_5\telephant\n_sV1Jd1uiYg_0\tperson\n_tZU1XTOML4_0\tboat\n_usyDpllGBo_0\thorse\n_vBAv8cBoqE_0\tskateboard\n_vV0wdWq0cU_0\tperson\n_xMVx44FbT4_0\thorse\n_xQn3TupjYs_0\tcat\n_xy58m6yCko_0\tmotorcycle\n_yQQjARqD1s_0\tboat\n_yfoe4GCA0Q_4\tairplane\n_yfoe4GCA0Q_2\tairplane\n_yv5Cwbm9EA_0\tperson\n_zIDofZkgS4_1\ttruck\n_zQt1CSSKyA_1\tbicycle\n_0eR2vQAEqE_0\telephant\n_0eR2vQAEqE_1\telephant\n_17u-cPTYt0_0\tcar\n_17u-cPTYt0_1\tcar\n_2mIWIhbDPY_0\tbus\n_37U5Elgnck_0\tperson\n_5fE6dP48FM_0\tcow\n_5sIT4l5izM_0\tknife\n_6qUuUUYvUQ_0\tperson\n_7zbbqEa3nw_1\ttrain\n_7zbbqEa3nw_4\ttrain\n_8VTthFkvS0_0\tbird\n_8iyumFI4sQ_1\telephant\n_8iyumFI4sQ_2\telephant\n_8iyumFI4sQ_3\telephant\n_81FImml2gk_0\tdog\n_9bypka_Q4c_0\tbus\n_-CvwC7H730_0\tperson\n_-XcxnQLKPM_0\tdog\n__Q5A7gExpI_0\tperson\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/dataloader.py",
    "content": "import collections\nimport collections.abc\nimport importlib\n\nimport torch\nimport torch.utils.data.dataloader\nfrom tracking.utils.tensor import TensorDict, TensorList\n\nstring_classes = str\nint_classes = int\n\n\ndef _check_use_shared_memory():\n    if hasattr(torch.utils.data.dataloader, \"_use_shared_memory\"):\n        return getattr(torch.utils.data.dataloader, \"_use_shared_memory\")\n    collate_lib = importlib.import_module(\"torch.utils.data._utils.collate\")\n    if hasattr(collate_lib, \"_use_shared_memory\"):\n        return getattr(collate_lib, \"_use_shared_memory\")\n    return torch.utils.data.get_worker_info() is not None\n\n\ndef ltr_collate(batch):\n    \"\"\"Puts each data field into a tensor with outer dimension batch size\"\"\"\n\n    error_msg = \"batch must contain tensors, numbers, dicts or lists; found {}\"\n    elem_type = type(batch[0])\n    if isinstance(batch[0], torch.Tensor):\n        out = None\n        if _check_use_shared_memory():\n            # If we're in a background process, concatenate directly into a\n            # shared memory tensor to avoid an extra copy\n            numel = sum([x.numel() for x in batch])\n            storage = batch[0].storage()._new_shared(numel)\n            out = batch[0].new(storage)\n        return torch.stack(batch, 0, out=out)\n        # if batch[0].dim() < 4:\n        #     return torch.stack(batch, 0, out=out)\n        # return torch.cat(batch, 0, out=out)\n    elif (\n        elem_type.__module__ == \"numpy\"\n        and elem_type.__name__ != \"str_\"\n        and elem_type.__name__ != \"string_\"\n    ):\n        elem = batch[0]\n        if elem_type.__name__ == \"ndarray\":\n            # array of string classes and object\n            if (\n                torch.utils.data.dataloader.re.search(\"[SaUO]\", elem.dtype.str)\n                is not None\n            ):\n                raise TypeError(error_msg.format(elem.dtype))\n\n            return torch.stack([torch.from_numpy(b) for b in batch], 0)\n        if elem.shape == ():  # scalars\n            py_type = float if elem.dtype.name.startswith(\"float\") else int\n            return torch.utils.data.dataloader.numpy_type_map[elem.dtype.name](\n                list(map(py_type, batch))\n            )\n    elif isinstance(batch[0], int_classes):\n        return torch.LongTensor(batch)\n    elif isinstance(batch[0], float):\n        return torch.DoubleTensor(batch)\n    elif isinstance(batch[0], string_classes):\n        return batch\n    elif isinstance(batch[0], TensorDict):\n        return TensorDict(\n            {key: ltr_collate([d[key] for d in batch]) for key in batch[0]}\n        )\n    elif isinstance(batch[0], collections.abc.Mapping):\n        return {key: ltr_collate([d[key] for d in batch]) for key in batch[0]}\n    elif isinstance(batch[0], TensorList):\n        transposed = zip(*batch)\n        return TensorList([ltr_collate(samples) for samples in transposed])\n    elif isinstance(batch[0], collections.abc.Sequence):\n        transposed = zip(*batch)\n        return [ltr_collate(samples) for samples in transposed]\n    elif batch[0] is None:\n        return batch\n\n    raise TypeError((error_msg.format(type(batch[0]))))\n\n\ndef ltr_collate_stack1(batch):\n    \"\"\"Puts each data field into a tensor. The tensors are stacked at dim=1 to form the batch\"\"\"\n\n    error_msg = \"batch must contain tensors, numbers, dicts or lists; found {}\"\n    elem_type = type(batch[0])\n    if isinstance(batch[0], torch.Tensor):\n        out = None\n        if _check_use_shared_memory():\n            # If we're in a background process, concatenate directly into a\n            # shared memory tensor to avoid an extra copy\n            numel = sum([x.numel() for x in batch])\n            storage = batch[0].storage()._new_shared(numel)\n            out = batch[0].new(storage)\n        return torch.stack(batch, 1, out=out)\n        # if batch[0].dim() < 4:\n        #     return torch.stack(batch, 0, out=out)\n        # return torch.cat(batch, 0, out=out)\n    elif (\n        elem_type.__module__ == \"numpy\"\n        and elem_type.__name__ != \"str_\"\n        and elem_type.__name__ != \"string_\"\n    ):\n        elem = batch[0]\n        if elem_type.__name__ == \"ndarray\":\n            # array of string classes and object\n            if (\n                torch.utils.data.dataloader.re.search(\"[SaUO]\", elem.dtype.str)\n                is not None\n            ):\n                raise TypeError(error_msg.format(elem.dtype))\n\n            return torch.stack([torch.from_numpy(b) for b in batch], 1)\n        if elem.shape == ():  # scalars\n            py_type = float if elem.dtype.name.startswith(\"float\") else int\n            return torch.utils.data.dataloader.numpy_type_map[elem.dtype.name](\n                list(map(py_type, batch))\n            )\n    elif isinstance(batch[0], int_classes):\n        return torch.LongTensor(batch)\n    elif isinstance(batch[0], float):\n        return torch.DoubleTensor(batch)\n    elif isinstance(batch[0], string_classes):\n        return batch\n    elif isinstance(batch[0], TensorDict):\n        return TensorDict(\n            {key: ltr_collate_stack1([d[key] for d in batch]) for key in batch[0]}\n        )\n    elif isinstance(batch[0], collections.abc.Mapping):\n        return {key: ltr_collate_stack1([d[key] for d in batch]) for key in batch[0]}\n    elif isinstance(batch[0], TensorList):\n        transposed = zip(*batch)\n        return TensorList([ltr_collate_stack1(samples) for samples in transposed])\n    elif isinstance(batch[0], collections.abc.Sequence):\n        transposed = zip(*batch)\n        return [ltr_collate_stack1(samples) for samples in transposed]\n    elif batch[0] is None:\n        return batch\n\n    raise TypeError((error_msg.format(type(batch[0]))))\n\n\nclass LTRLoader(torch.utils.data.dataloader.DataLoader):\n    \"\"\"\n    Data loader. Combines a dataset and a sampler, and provides\n    single- or multi-process iterators over the dataset.\n\n    Note: The only difference with default pytorch DataLoader is that an additional option stack_dim is available to\n            select along which dimension the data should be stacked to form a batch.\n\n    Arguments:\n        dataset (Dataset): dataset from which to load the data.\n        batch_size (int, optional): how many samples per batch to load\n            (default: 1).\n        shuffle (bool, optional): set to ``True`` to have the data reshuffled\n            at every epoch (default: False).\n        sampler (Sampler, optional): defines the strategy to draw samples from\n            the dataset. If specified, ``shuffle`` must be False.\n        batch_sampler (Sampler, optional): like sampler, but returns a batch of\n            indices at a time. Mutually exclusive with batch_size, shuffle,\n            sampler, and drop_last.\n        num_workers (int, optional): how many subprocesses to use for data\n            loading. 0 means that the data will be loaded in the main process.\n            (default: 0)\n        collate_fn (callable, optional): merges a list of samples to form a mini-batch.\n        stack_dim (int): Dimension along which to stack to form the batch. (default: 0)\n        pin_memory (bool, optional): If ``True``, the data loader will copy tensors\n            into CUDA pinned memory before returning them.\n        drop_last (bool, optional): set to ``True`` to drop the last incomplete batch,\n            if the dataset size is not divisible by the batch size. If ``False`` and\n            the size of dataset is not divisible by the batch size, then the last batch\n            will be smaller. (default: False)\n        timeout (numeric, optional): if positive, the timeout value for collecting a batch\n            from workers. Should always be non-negative. (default: 0)\n        worker_init_fn (callable, optional): If not None, this will be called on each\n            worker subprocess with the worker id (an int in ``[0, num_workers - 1]``) as\n            input, after seeding and before data loading. (default: None)\n\n    .. note:: By default, each worker will have its PyTorch seed set to\n              ``base_seed + worker_id``, where ``base_seed`` is a long generated\n              by main process using its RNG. However, seeds for other libraries\n              may be duplicated upon initializing workers (w.g., NumPy), causing\n              each worker to return identical random numbers. (See\n              :ref:`dataloader-workers-random-seed` section in FAQ.) You may\n              use ``torch.initial_seed()`` to access the PyTorch seed for each\n              worker in :attr:`worker_init_fn`, and use it to set other seeds\n              before data loading.\n\n    .. warning:: If ``spawn`` start method is used, :attr:`worker_init_fn` cannot be an\n                 unpicklable object, e.g., a lambda function.\n    \"\"\"\n\n    __initialized = False\n\n    def __init__(\n        self,\n        name,\n        dataset,\n        training=True,\n        batch_size=1,\n        shuffle=False,\n        sampler=None,\n        batch_sampler=None,\n        num_workers=0,\n        epoch_interval=1,\n        collate_fn=None,\n        stack_dim=0,\n        pin_memory=False,\n        drop_last=False,\n        timeout=0,\n        worker_init_fn=None,\n    ):\n        if collate_fn is None:\n            if stack_dim == 0:\n                collate_fn = ltr_collate\n            elif stack_dim == 1:\n                collate_fn = ltr_collate_stack1\n            else:\n                raise ValueError(\"Stack dim no supported. Must be 0 or 1.\")\n\n        super(LTRLoader, self).__init__(\n            dataset,\n            batch_size,\n            shuffle,\n            sampler,\n            batch_sampler,\n            num_workers,\n            collate_fn,\n            pin_memory,\n            drop_last,\n            timeout,\n            worker_init_fn,\n        )\n\n        self.name = name\n        self.training = training\n        self.epoch_interval = epoch_interval\n        self.stack_dim = stack_dim\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/eval_datasets/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/dataset/eval_datasets/base_dataset.py",
    "content": "from collections import OrderedDict\nfrom typing import Dict\n\nimport numpy as np\nfrom PIL import Image\n\n# from tracking.utils.env import pathmgr\n\n\nclass BaseDataset:\n    \"\"\"Base class for all datasets.\"\"\"\n\n    def __init__(self):\n        pass\n\n    def __len__(self):\n        \"\"\"Overload this function in your dataset. This should return number of sequences in the dataset.\"\"\"\n        raise NotImplementedError\n\n    def get_sequence_list(self):\n        \"\"\"Overload this in your dataset. Should return the list of sequences in the dataset.\"\"\"\n        raise NotImplementedError\n\n\nclass Sequence:\n    \"\"\"Class for the sequence in an evaluation.\"\"\"\n\n    def __init__(\n        self,\n        name,\n        frames,\n        dataset,\n        ground_truth_rect,\n        ground_truth_seg=None,\n        init_data=None,\n        object_class=None,\n        target_visible=None,\n        object_ids=None,\n        multiobj_mode=False,\n    ):\n        self.name = name\n        self.frames = frames\n        self.dataset = dataset\n        self.ground_truth_rect = ground_truth_rect\n        self.ground_truth_seg = ground_truth_seg\n        self.object_class = object_class\n        self.target_visible = target_visible\n        self.object_ids = object_ids\n        self.multiobj_mode = multiobj_mode\n        self.init_data = self._construct_init_data(init_data)\n        self._ensure_start_frame()\n\n    def _ensure_start_frame(self):\n        # Ensure start frame is 0\n        start_frame = min(list(self.init_data.keys()))\n        if start_frame > 0:\n            self.frames = self.frames[start_frame:]\n            if self.ground_truth_rect is not None:\n                if isinstance(self.ground_truth_rect, (dict, OrderedDict)):\n                    for obj_id, gt in self.ground_truth_rect.items():\n                        self.ground_truth_rect[obj_id] = gt[start_frame:, :]\n                else:\n                    self.ground_truth_rect = self.ground_truth_rect[start_frame:, :]\n            if self.ground_truth_seg is not None:\n                self.ground_truth_seg = self.ground_truth_seg[start_frame:]\n                assert len(self.frames) == len(self.ground_truth_seg)\n\n            if self.target_visible is not None:\n                self.target_visible = self.target_visible[start_frame:]\n            self.init_data = {\n                frame - start_frame: val for frame, val in self.init_data.items()\n            }\n\n    def _construct_init_data(self, init_data):\n        if init_data is not None:\n            if not self.multiobj_mode:\n                assert self.object_ids is None or len(self.object_ids) == 1\n                for _frame, init_val in init_data.items():\n                    if \"bbox\" in init_val and isinstance(\n                        init_val[\"bbox\"], (dict, OrderedDict)\n                    ):\n                        init_val[\"bbox\"] = init_val[\"bbox\"][self.object_ids[0]]\n            # convert to list\n            for _frame, init_val in init_data.items():\n                if \"bbox\" in init_val:\n                    if isinstance(init_val[\"bbox\"], (dict, OrderedDict)):\n                        init_val[\"bbox\"] = OrderedDict(\n                            {\n                                obj_id: list(init)\n                                for obj_id, init in init_val[\"bbox\"].items()\n                            }\n                        )\n                    else:\n                        init_val[\"bbox\"] = list(init_val[\"bbox\"])\n        else:\n            init_data = {0: {}}  # Assume start from frame 0\n\n            if self.object_ids is not None:\n                init_data[0][\"object_ids\"] = self.object_ids\n\n            if self.ground_truth_rect is not None:\n                if self.multiobj_mode:\n                    assert isinstance(self.ground_truth_rect, (dict, OrderedDict))\n                    init_data[0][\"bbox\"] = OrderedDict(\n                        {\n                            obj_id: list(gt[0, :])\n                            for obj_id, gt in self.ground_truth_rect.items()\n                        }\n                    )\n                else:\n                    assert self.object_ids is None or len(self.object_ids) == 1\n                    if isinstance(self.ground_truth_rect, (dict, OrderedDict)):\n                        init_data[0][\"bbox\"] = list(\n                            self.ground_truth_rect[self.object_ids[0]][0, :]\n                        )\n                    else:\n                        init_data[0][\"bbox\"] = list(self.ground_truth_rect[0, :])\n\n            if self.ground_truth_seg is not None:\n                init_data[0][\"mask\"] = self.ground_truth_seg[0]\n\n        return init_data\n\n    def init_info(self):\n        info = self.frame_info(frame_num=0)\n        return info\n\n    def frame_info(self, frame_num):\n        info = self.object_init_data(frame_num=frame_num)\n        return info\n\n    def init_bbox(self, frame_num=0):\n        return self.object_init_data(frame_num=frame_num).get(\"init_bbox\")\n\n    def init_mask(self, frame_num=0):\n        return self.object_init_data(frame_num=frame_num).get(\"init_mask\")\n\n    def get_info(self, keys, frame_num=None):\n        info = ()\n        for k in keys:\n            val = self.get(k, frame_num=frame_num)\n            if val is not None:\n                info[k] = val\n        return info\n\n    def object_init_data(self, frame_num=None) -> Dict:\n        if frame_num is None:\n            frame_num = 0\n        if frame_num not in self.init_data:\n            return {}\n\n        init_data = {}\n        for key, val in self.init_data[frame_num].items():\n            if val is None:\n                continue\n            init_data[\"init_\" + key] = val\n\n        if \"init_mask\" in init_data and init_data[\"init_mask\"] is not None:\n            anno = imread_indexed(init_data[\"init_mask\"])\n            if not self.multiobj_mode and self.object_ids is not None:\n                assert len(self.object_ids) == 1\n                anno = (anno == int(self.object_ids[0])).astype(np.uint8)\n            init_data[\"init_mask\"] = anno\n\n        if self.object_ids is not None:\n            init_data[\"object_ids\"] = self.object_ids\n            init_data[\"sequence_object_ids\"] = self.object_ids\n\n        return init_data\n\n    def target_class(self, frame_num=None):\n        return self.object_class\n\n    def get(self, name, frame_num=None):\n        return getattr(self, name)(frame_num)\n\n    def __repr__(self):\n        return \"{self.__class__.__name__} {self.name}, length={len} frames\".format(\n            self=self, len=len(self.frames)\n        )\n\n\nclass SequenceList(list):\n    \"\"\"List of sequences. Supports the addition operator to concatenate sequence lists.\"\"\"\n\n    def __getitem__(self, item):\n        if isinstance(item, str):\n            for seq in self:\n                if seq.name == item:\n                    return seq\n            raise IndexError(\"Sequence name not in the dataset.\")\n        elif isinstance(item, int):\n            return super(SequenceList, self).__getitem__(item)\n        elif isinstance(item, (tuple, list)):\n            return SequenceList(\n                [super(SequenceList, self).__getitem__(i) for i in item]\n            )\n        else:\n            return SequenceList(super(SequenceList, self).__getitem__(item))\n\n    def __add__(self, other):\n        return SequenceList(super(SequenceList, self).__add__(other))\n\n    def copy(self):\n        return SequenceList(super(SequenceList, self).copy())\n\n\ndef imread_indexed(filename):\n    \"\"\"Load indexed image with given filename. Used to read segmentation annotations.\"\"\"\n    filename = pathmgr.get_local_path(filename)\n    im = Image.open(filename)\n\n    annotation = np.atleast_3d(im)[..., 0]\n    return annotation\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/eval_datasets/ego4d_lt_tracking_dataset.py",
    "content": "import json\nimport logging\nimport os\nimport time\nfrom typing import Dict\n\nimport torch\nfrom tqdm import tqdm\nfrom tracking.utils.env import pathmgr\n\nfrom .base_dataset import BaseDataset, Sequence, SequenceList\n\n\nclass _EGO4DLTTrackingDataset(BaseDataset):\n    \"\"\"EGO4D Long-term Tracking dataset.\"\"\"\n\n    def __init__(self, data_dir, annotation_path, split=None):\n        super().__init__()\n        self.data_dir = data_dir\n        self.split = split\n        self.frames_dir = os.path.join(data_dir, \"frames\")\n        self.info_dir = os.path.join(data_dir, \"clip_info\")\n        self.annotation_path = annotation_path\n\n        self.clip_info = self.load_clip_info(os.path.join(data_dir, \"clip_info.json\"))\n        self.sequences = self.get_sequences()\n        self.sequence_list = [seq.name for seq in self.sequences]\n\n    def get_sequences(self):\n        with pathmgr.open(self.annotation_path, \"r\") as f:\n            vq_annotations = json.load(f)\n            vq_ann_video_uids = [x[\"video_uid\"] for x in vq_annotations[\"videos\"]]\n\n        self.vq_video_dict = {\n            x[\"video_uid\"]: x[\"clips\"] for x in vq_annotations[\"videos\"]\n        }\n\n        # Load annotation all the visual query, including response track and visual crop.\n        sequences = []\n        for video_uid in tqdm(vq_ann_video_uids, total=len(vq_ann_video_uids)):\n            clips = self.vq_video_dict[video_uid]\n            for clip in clips:\n                clip_uid = clip[\"exported_clip_uid\"]\n\n                response_tracks = self.get_lt_track(\n                    video_uid, clip_uid, frame_number_key=\"exported_clip_frame_number\"\n                )\n                sequences.extend(response_tracks)\n\n        return SequenceList(sequences)\n\n    def load_clip_info(self, clip_info_path):\n        with pathmgr.open(clip_info_path) as f:\n            clip_info = json.load(f)\n\n        return clip_info\n\n    def get_lt_track(\n        self,\n        video_uid: str,\n        clip_uid: str,\n        frame_number_key: str = \"exported_clip_frame_number\",\n    ) -> Dict:\n        vq_video_dict = self.vq_video_dict\n        ann = vq_video_dict.get(video_uid)\n        sequences = []\n\n        for clip in ann:\n            if not clip[\"exported_clip_uid\"] == clip_uid:\n                continue\n\n            # Because we merge multiple annotations for each clip,\n            # there should be only one annotation for each clip and\n            # potentially more than three query sets\n            assert len(clip[\"annotations\"]) == 1\n            for cann in clip[\"annotations\"]:\n                for target_id, query_set in cann[\"query_sets\"].items():\n                    object_title = query_set[\"object_title\"]\n                    # visual_crop\n                    visual_crop = query_set[\"visual_crop\"]\n                    visual_crop = {\n                        visual_crop[frame_number_key]: [\n                            visual_crop[\"x\"],\n                            visual_crop[\"y\"],\n                            visual_crop[\"width\"],\n                            visual_crop[\"height\"],\n                        ]\n                    }\n\n                    # Cannot find the extracted frame dir\n                    frames = self.clip_info[clip_uid][\"frames\"]\n                    frames = [\n                        os.path.join(self.frames_dir, clip_uid, f) for f in frames\n                    ]\n                    if frames is None:\n                        continue\n\n                    # if it's an unannotated test set, there are no these fields:\n                    if self.split != \"test\":\n                        if not query_set[\"is_valid\"]:\n                            continue\n                        if \"lt_track\" not in query_set:\n                            continue\n                        visual_clip = {}\n                        for frame in query_set[\"visual_clip\"]:\n                            visual_clip[frame[frame_number_key]] = [\n                                frame[\"x\"],\n                                frame[\"y\"],\n                                frame[\"width\"],\n                                frame[\"height\"],\n                            ]\n                        gt_bbox_dict = {}\n                        for frame in query_set[\"lt_track\"]:\n                            gt_bbox_dict[frame[frame_number_key]] = [\n                                frame[\"x\"],\n                                frame[\"y\"],\n                                frame[\"width\"],\n                                frame[\"height\"],\n                            ]\n                        # Make sure the gt_bbox_dict contain all the previous bbox\n                        gt_bbox_dict.update(visual_clip)\n                        gt_bbox_dict.update(visual_crop)\n                    else:\n                        visual_clip = None\n                        gt_bbox_dict = {}\n\n                    seq = Sequence(\n                        f\"{clip_uid}_{target_id}_{object_title}\",\n                        frames,\n                        \"ego4d_lt_tracking\",\n                        None,\n                        object_ids=[f\"{target_id}_{object_title}\"],\n                    )\n                    seq.visual_crop = visual_crop\n                    seq.visual_clip = visual_clip\n                    seq.gt_bbox_dict = gt_bbox_dict\n                    seq.frames_dir = os.path.join(self.frames_dir, clip_uid)\n\n                    sequences.append(seq)\n\n        return sequences\n\n    def __len__(self):\n        return len(self.sequence_list)\n\n\nclass EGO4DLTTrackingDataset(torch.utils.data.Dataset):\n    \"\"\"EGO4D LTT dataset.\"\"\"\n\n    def __init__(self, data_dir, annotation_path, ratio=1.0, split=None):\n        \"\"\"\n        ratio: what percent of the dataset to load, used mostly for testing purpose\n        pre_download: pre-download frames from manifold, this is intended to work in FB only\n        \"\"\"\n        super().__init__()\n        # Split can be test, val, or ltrval (a validation split consisting of videos from the official train set)\n        dataset = _EGO4DLTTrackingDataset(data_dir, annotation_path, split)\n        # Only load a portion of the dataset\n        n_total = int(len(dataset) * ratio) + 1\n        self.sequences = dataset.sequences[:n_total]\n        self.sequence_list = dataset.sequence_list[:n_total]\n\n    def __getitem__(self, index):\n        seq = self.sequences[index]\n\n        return seq\n\n    def __len__(self):\n        return len(self.sequence_list)\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/processing/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/dataset/processing/base_processing.py",
    "content": "import torchvision.transforms as transforms\nfrom tracking.utils.tensor import TensorDict\n\n\nclass BaseProcessing:\n    \"\"\"Base class for Processing. Processing class is used to process the data returned by a dataset, before passing it\n    through the network. For example, it can be used to crop a search region around the object, apply various data\n    augmentations, etc.\"\"\"\n\n    def __init__(\n        self,\n        transform=transforms.ToTensor(),\n        template_transform=None,\n        search_transform=None,\n        joint_transform=None,\n    ):\n        \"\"\"\n        args:\n            transform       - The set of transformations to be applied on the images. Used only if template_transform or\n                                search_transform is None.\n            template_transform - The set of transformations to be applied on the template images. If None, the 'transform'\n                                argument is used instead.\n            search_transform  - The set of transformations to be applied on the search images. If None, the 'transform'\n                                argument is used instead.\n            joint_transform - The set of transformations to be applied 'jointly' on the template and search images.  For\n                                example, it can be used to convert both template and search images to grayscale.\n        \"\"\"\n        self.transform = {\n            \"template\": transform if template_transform is None else template_transform,\n            \"search\": transform if search_transform is None else search_transform,\n            \"joint\": joint_transform,\n        }\n\n    def __call__(self, data: TensorDict):\n        raise NotImplementedError\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/processing/processing_utils.py",
    "content": "import math\n\nimport cv2 as cv\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\n\n\"\"\"modified from the original test implementation\nReplace cv.BORDER_REPLICATE with cv.BORDER_CONSTANT\nAdd a variable called att_mask for computing attention and positional encoding later\"\"\"\n\n\ndef sample_target(im, target_bb, search_area_factor, output_sz=None, mask=None):\n    \"\"\"Extracts a square crop centered at target_bb box, of area search_area_factor^2 times target_bb area\n\n    args:\n        im - cv image\n        target_bb - target box [x, y, w, h]\n        search_area_factor - Ratio of crop size to target size\n        output_sz - (float) Size to which the extracted crop is resized (always square). If None, no resizing is done.\n\n    returns:\n        cv image - extracted crop\n        float - the factor by which the crop has been resized to make the crop size equal output_size\n    \"\"\"\n    if not isinstance(target_bb, list):\n        x, y, w, h = target_bb.tolist()\n    else:\n        x, y, w, h = target_bb\n    # Crop image\n    crop_sz = math.ceil(math.sqrt(w * h) * search_area_factor)\n\n    if crop_sz < 1:\n        raise Exception(\"Too small bounding box.\")\n\n    x1 = round(x + 0.5 * w - crop_sz * 0.5)\n    x2 = x1 + crop_sz\n\n    y1 = round(y + 0.5 * h - crop_sz * 0.5)\n    y2 = y1 + crop_sz\n\n    x1_pad = max(0, -x1)\n    x2_pad = max(x2 - im.shape[1] + 1, 0)\n\n    y1_pad = max(0, -y1)\n    y2_pad = max(y2 - im.shape[0] + 1, 0)\n\n    # Crop target\n    im_crop = im[y1 + y1_pad : y2 - y2_pad, x1 + x1_pad : x2 - x2_pad, :]\n    if mask is not None:\n        mask_crop = mask[y1 + y1_pad : y2 - y2_pad, x1 + x1_pad : x2 - x2_pad]\n\n    # Pad\n    im_crop_padded = cv.copyMakeBorder(\n        im_crop, y1_pad, y2_pad, x1_pad, x2_pad, cv.BORDER_CONSTANT\n    )\n    # deal with attention mask\n    H, W, _ = im_crop_padded.shape\n    att_mask = np.ones((H, W))\n    end_x, end_y = -x2_pad, -y2_pad\n    if y2_pad == 0:\n        end_y = None\n    if x2_pad == 0:\n        end_x = None\n    att_mask[y1_pad:end_y, x1_pad:end_x] = 0\n    if mask is not None:\n        mask_crop_padded = F.pad(\n            mask_crop, pad=(x1_pad, x2_pad, y1_pad, y2_pad), mode=\"constant\", value=0\n        )\n\n    if output_sz is not None:\n        resize_factor = output_sz / crop_sz\n        im_crop_padded = cv.resize(im_crop_padded, (output_sz, output_sz))\n        att_mask = cv.resize(att_mask, (output_sz, output_sz)).astype(np.bool_)\n        if mask is None:\n            return im_crop_padded, resize_factor, att_mask\n        mask_crop_padded = F.interpolate(\n            mask_crop_padded[None, None],\n            (output_sz, output_sz),\n            mode=\"bilinear\",\n            align_corners=False,\n        )[0, 0]\n        return im_crop_padded, resize_factor, att_mask, mask_crop_padded\n\n    else:\n        if mask is None:\n            return im_crop_padded, att_mask.astype(np.bool_), 1.0\n        return im_crop_padded, 1.0, att_mask.astype(np.bool_), mask_crop_padded\n\n\ndef transform_image_to_crop(\n    box_in: torch.Tensor,\n    box_extract: torch.Tensor,\n    resize_factor: float,\n    crop_sz: torch.Tensor,\n    normalize=False,\n) -> torch.Tensor:\n    \"\"\"Transform the box co-ordinates from the original image co-ordinates to the co-ordinates of the cropped image\n    args:\n        box_in - the box for which the co-ordinates are to be transformed\n        box_extract - the box about which the image crop has been extracted.\n        resize_factor - the ratio between the original image scale and the scale of the image crop\n        crop_sz - size of the cropped image\n\n    returns:\n        torch.Tensor - transformed co-ordinates of box_in\n    \"\"\"\n    box_extract_center = box_extract[0:2] + 0.5 * box_extract[2:4]\n\n    box_in_center = box_in[0:2] + 0.5 * box_in[2:4]\n\n    box_out_center = (crop_sz - 1) / 2 + (\n        box_in_center - box_extract_center\n    ) * resize_factor\n    box_out_wh = box_in[2:4] * resize_factor\n\n    box_out = torch.cat((box_out_center - 0.5 * box_out_wh, box_out_wh))\n    if normalize:\n        return box_out / crop_sz[0]\n    else:\n        return box_out\n\n\ndef jittered_center_crop(\n    frames, box_extract, box_gt, search_area_factor, output_sz, masks=None\n):\n    \"\"\"For each frame in frames, extracts a square crop centered at box_extract, of area search_area_factor^2\n    times box_extract area. The extracted crops are then resized to output_sz. Further, the co-ordinates of the box\n    box_gt are transformed to the image crop co-ordinates\n\n    args:\n        frames - list of frames\n        box_extract - list of boxes of same length as frames. The crops are extracted using anno_extract\n        box_gt - list of boxes of same length as frames. The co-ordinates of these boxes are transformed from\n                    image co-ordinates to the crop co-ordinates\n        search_area_factor - The area of the extracted crop is search_area_factor^2 times box_extract area\n        output_sz - The size to which the extracted crops are resized\n\n    returns:\n        list - list of image crops\n        list - box_gt location in the crop co-ordinates\n    \"\"\"\n\n    if masks is None:\n        crops_resize_factors = [\n            sample_target(f, a, search_area_factor, output_sz)\n            for f, a in zip(frames, box_extract)\n        ]\n        frames_crop, resize_factors, att_mask = zip(*crops_resize_factors)\n        masks_crop = None\n    else:\n        crops_resize_factors = [\n            sample_target(f, a, search_area_factor, output_sz, m)\n            for f, a, m in zip(frames, box_extract, masks)\n        ]\n        frames_crop, resize_factors, att_mask, masks_crop = zip(*crops_resize_factors)\n    # frames_crop: tuple of ndarray (128,128,3), att_mask: tuple of ndarray (128,128)\n    crop_sz = torch.Tensor([output_sz, output_sz])\n\n    # find the bb location in the crop\n    \"\"\"Note that here we use normalized coord\"\"\"\n    box_crop = [\n        transform_image_to_crop(a_gt, a_ex, rf, crop_sz, normalize=True)\n        for a_gt, a_ex, rf in zip(box_gt, box_extract, resize_factors)\n    ]  # (x1,y1,w,h) list of tensors\n\n    return frames_crop, box_crop, att_mask, masks_crop\n\n\ndef transform_box_to_crop(\n    box: torch.Tensor, crop_box: torch.Tensor, crop_sz: torch.Tensor, normalize=False\n) -> torch.Tensor:\n    \"\"\"Transform the box co-ordinates from the original image co-ordinates to the co-ordinates of the cropped image\n    args:\n        box - the box for which the co-ordinates are to be transformed\n        crop_box - bounding box defining the crop in the original image\n        crop_sz - size of the cropped image\n\n    returns:\n        torch.Tensor - transformed co-ordinates of box_in\n    \"\"\"\n\n    box_out = box.clone()\n    box_out[:2] -= crop_box[:2]\n\n    scale_factor = crop_sz / crop_box[2:]\n\n    box_out[:2] *= scale_factor\n    box_out[2:] *= scale_factor\n    if normalize:\n        return box_out / crop_sz[0]\n    else:\n        return box_out\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/processing/stark_processing.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport tracking.dataset.processing.processing_utils as prutils\nfrom tracking.dataset.processing.base_processing import BaseProcessing\nfrom tracking.utils.tensor import TensorDict\n\n\ndef stack_tensors(x):\n    if isinstance(x, (list, tuple)) and isinstance(x[0], torch.Tensor):\n        return torch.stack(x)\n    return x\n\n\nclass STARKProcessing(BaseProcessing):\n    \"\"\"The processing class used for training LittleBoy. The images are processed in the following way.\n    First, the target bounding box is jittered by adding some noise. Next, a square region (called search region )\n    centered at the jittered target center, and of area search_area_factor^2 times the area of the jittered box is\n    cropped from the image. The reason for jittering the target box is to avoid learning the bias that the target is\n    always at the center of the search region. The search region is then resized to a fixed size given by the\n    argument output_sz.\n\n    \"\"\"\n\n    def __init__(\n        self,\n        search_area_factor,\n        output_sz,\n        center_jitter_factor,\n        scale_jitter_factor,\n        mode=\"pair\",\n        *args,\n        **kwargs,\n    ):\n        \"\"\"\n        args:\n            search_area_factor - The size of the search region  relative to the target size.\n            output_sz - An integer, denoting the size to which the search region is resized. The search region is always\n                        square.\n            center_jitter_factor - A dict containing the amount of jittering to be applied to the target center before\n                                    extracting the search region. See _get_jittered_box for how the jittering is done.\n            scale_jitter_factor - A dict containing the amount of jittering to be applied to the target size before\n                                    extracting the search region. See _get_jittered_box for how the jittering is done.\n            mode - Either 'pair' or 'sequence'. If mode='sequence', then output has an extra dimension for frames\n        \"\"\"\n        super().__init__(*args, **kwargs)\n        self.search_area_factor = search_area_factor\n        self.output_sz = output_sz\n        self.center_jitter_factor = center_jitter_factor\n        self.scale_jitter_factor = scale_jitter_factor\n        self.mode = mode\n\n    def _get_jittered_box(self, box, mode):\n        \"\"\"Jitter the input box\n        args:\n            box - input bounding box\n            mode - string 'template' or 'search' indicating template or search data\n\n        returns:\n            torch.Tensor - jittered box\n        \"\"\"\n\n        jittered_size = box[2:4] * torch.exp(\n            torch.randn(2) * self.scale_jitter_factor[mode]\n        )\n        max_offset = (\n            jittered_size.prod().sqrt()\n            * torch.tensor(self.center_jitter_factor[mode]).float()\n        )\n        jittered_center = box[0:2] + 0.5 * box[2:4] + max_offset * (torch.rand(2) - 0.5)\n\n        return torch.cat((jittered_center - 0.5 * jittered_size, jittered_size), dim=0)\n\n    def __call__(self, data: TensorDict):\n        \"\"\"\n        args:\n            data - The input data, should contain the following fields:\n                'template_images', search_images', 'template_anno', 'search_anno'\n        returns:\n            TensorDict - output data block with following fields:\n                'template_images', 'search_images', 'template_anno', 'search_anno', 'test_proposals', 'proposal_iou'\n        \"\"\"\n        # Apply joint transforms\n        if self.transform[\"joint\"] is not None:\n            (\n                data[\"template_images\"],\n                data[\"template_anno\"],\n                data[\"template_masks\"],\n            ) = self.transform[\"joint\"](\n                image=data[\"template_images\"],\n                bbox=data[\"template_anno\"],\n                mask=data[\"template_masks\"],\n            )\n            (\n                data[\"search_images\"],\n                data[\"search_anno\"],\n                data[\"search_masks\"],\n            ) = self.transform[\"joint\"](\n                image=data[\"search_images\"],\n                bbox=data[\"search_anno\"],\n                mask=data[\"search_masks\"],\n                new_roll=False,\n            )\n\n        for s in [\"template\", \"search\"]:\n            assert (\n                self.mode == \"sequence\" or len(data[s + \"_images\"]) == 1\n            ), \"In pair mode, num train/test frames must be 1\"\n\n            # Add a uniform noise to the center pos\n            jittered_anno = [self._get_jittered_box(a, s) for a in data[s + \"_anno\"]]\n\n            # 2021.1.9 Check whether data is valid. Avoid too small bounding boxes\n            w, h = (\n                torch.stack(jittered_anno, dim=0)[:, 2],\n                torch.stack(jittered_anno, dim=0)[:, 3],\n            )\n\n            crop_sz = torch.ceil(torch.sqrt(w * h) * self.search_area_factor[s])\n            if (crop_sz < 1).any():\n                data[\"valid\"] = False\n                # print(\"Too small box is found. Replace it with new data.\")\n                return data\n\n            # Crop image region centered at jittered_anno box and get the attention mask\n            crops, boxes, att_mask, mask_crops = prutils.jittered_center_crop(\n                data[s + \"_images\"],\n                jittered_anno,\n                data[s + \"_anno\"],\n                self.search_area_factor[s],\n                self.output_sz[s],\n                masks=data[s + \"_masks\"],\n            )\n            # Apply transforms\n            (\n                data[s + \"_images\"],\n                data[s + \"_anno\"],\n                data[s + \"_att\"],\n                data[s + \"_masks\"],\n            ) = self.transform[s](\n                image=crops, bbox=boxes, att=att_mask, mask=mask_crops, joint=False\n            )\n\n            # 2021.1.9 Check whether elements in data[s + '_att'] is all 1\n            # Note that type of data[s + '_att'] is tuple, type of ele is torch.tensor\n            for ele in data[s + \"_att\"]:\n                if (ele == 1).all():\n                    data[\"valid\"] = False\n                    # print(\"Values of original attention mask are all one. Replace it with new data.\")\n                    return data\n            # 2021.1.10 more strict conditions: require the donwsampled masks not to be all 1\n            for ele in data[s + \"_att\"]:\n                feat_size = self.output_sz[s] // 16  # 16 is the backbone stride\n                # (1,1,128,128) (1,1,256,256) --> (1,1,8,8) (1,1,16,16)\n                mask_down = F.interpolate(ele[None, None].float(), size=feat_size).to(\n                    torch.bool\n                )[0]\n                if (mask_down == 1).all():\n                    data[\"valid\"] = False\n                    # print(\"Values of down-sampled attention mask are all one. \"\n                    #       \"Replace it with new data.\")\n                    return data\n\n        data[\"valid\"] = True\n        # if we use copy-and-paste augmentation\n        if data[\"template_masks\"] is None or data[\"search_masks\"] is None:\n            data[\"template_masks\"] = torch.zeros(\n                (1, self.output_sz[\"template\"], self.output_sz[\"template\"])\n            )\n            data[\"search_masks\"] = torch.zeros(\n                (1, self.output_sz[\"search\"], self.output_sz[\"search\"])\n            )\n        # Prepare output\n        if self.mode == \"sequence\":\n            data = data.apply(stack_tensors)\n        else:\n            data = data.apply(lambda x: x[0] if isinstance(x, list) else x)\n\n        return data\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/trackingdataset.py",
    "content": "import random\n\nimport torch.utils.data\nfrom tracking.utils.tensor import TensorDict\n\n\ndef no_processing(data):\n    return data\n\n\nclass TrackingDataset(torch.utils.data.Dataset):\n    \"\"\"Class responsible for sampling frames from training sequences to form batches.\n\n    The sampling is done in the following ways. First a dataset is selected at random. Next, a sequence is selected\n    from that dataset. A base frame is then sampled randomly from the sequence. Next, a set of 'train frames' and\n    'test frames' are sampled from the sequence from the range [base_frame_id - max_gap, base_frame_id]  and\n    (base_frame_id, base_frame_id + max_gap] respectively. Only the frames in which the target is visible are sampled.\n    If enough visible frames are not found, the 'max_gap' is increased gradually till enough frames are found.\n\n    The sampled frames are then passed through the input 'processing' function for the necessary processing-\n    \"\"\"\n\n    def __init__(\n        self,\n        datasets,\n        p_datasets,\n        samples_per_epoch,\n        max_gap,\n        num_search_frames,\n        num_template_frames=1,\n        processing=no_processing,\n        frame_sample_mode=\"causal\",\n        train_cls=False,\n        pos_prob=0.5,\n    ):\n        \"\"\"\n        args:\n            datasets - List of datasets to be used for training\n            p_datasets - List containing the probabilities by which each dataset will be sampled\n            samples_per_epoch - Number of training samples per epoch\n            max_gap - Maximum gap, in frame numbers, between the train frames and the test frames.\n            num_search_frames - Number of search frames to sample.\n            num_template_frames - Number of template frames to sample.\n            processing - An instance of Processing class which performs the necessary processing of the data.\n            frame_sample_mode - Either 'causal' or 'interval'. If 'causal', then the test frames are sampled in a causally,\n                                otherwise randomly within the interval.\n        \"\"\"\n        self.datasets = datasets\n        self.train_cls = train_cls  # whether we are training classification\n        self.pos_prob = pos_prob  # probability of sampling positive class when making classification\n\n        # If p not provided, sample uniformly from all videos\n        if p_datasets is None:\n            p_datasets = [len(d) for d in self.datasets]\n\n        # Normalize\n        p_total = sum(p_datasets)\n        self.p_datasets = [x / p_total for x in p_datasets]\n\n        self.samples_per_epoch = samples_per_epoch\n        self.max_gap = max_gap\n        self.num_search_frames = num_search_frames\n        self.num_template_frames = num_template_frames\n        self.processing = processing\n        self.frame_sample_mode = frame_sample_mode\n\n    def __len__(self):\n        return self.samples_per_epoch\n\n    def _sample_visible_ids(\n        self,\n        visible,\n        num_ids=1,\n        min_id=None,\n        max_id=None,\n        allow_invisible=False,\n        force_invisible=False,\n    ):\n        \"\"\"Samples num_ids frames between min_id and max_id for which target is visible\n\n        args:\n            visible - 1d Tensor indicating whether target is visible for each frame\n            num_ids - number of frames to be samples\n            min_id - Minimum allowed frame number\n            max_id - Maximum allowed frame number\n\n        returns:\n            list - List of sampled frame numbers. None if not sufficient visible frames could be found.\n        \"\"\"\n        if num_ids == 0:\n            return []\n        if min_id is None or min_id < 0:\n            min_id = 0\n        if max_id is None or max_id > len(visible):\n            max_id = len(visible)\n        # get valid ids\n        if force_invisible:\n            valid_ids = [i for i in range(min_id, max_id) if not visible[i]]\n        else:\n            if allow_invisible:\n                valid_ids = [i for i in range(min_id, max_id)]\n            else:\n                valid_ids = [i for i in range(min_id, max_id) if visible[i]]\n\n        # No visible ids\n        if len(valid_ids) == 0:\n            return None\n\n        return random.choices(valid_ids, k=num_ids)\n\n    def __getitem__(self, index):\n        if self.train_cls:\n            return self.getitem_cls()\n        else:\n            return self.getitem()\n\n    def getitem(self):\n        \"\"\"\n        returns:\n            TensorDict - dict containing all the data blocks\n        \"\"\"\n        valid = False\n        while not valid:\n            # Select a dataset\n            dataset = random.choices(self.datasets, self.p_datasets)[0]\n\n            is_video_dataset = dataset.is_video_sequence()\n\n            # sample a sequence from the given dataset\n            seq_id, visible, seq_info_dict = self.sample_seq_from_dataset(\n                dataset, is_video_dataset\n            )\n\n            if is_video_dataset:\n                template_frame_ids = None\n                search_frame_ids = None\n                gap_increase = 0\n\n                if self.frame_sample_mode == \"causal\":\n                    # Sample test and train frames in a causal manner, i.e. search_frame_ids > template_frame_ids\n                    while search_frame_ids is None:\n                        base_frame_id = self._sample_visible_ids(\n                            visible,\n                            num_ids=1,\n                            min_id=self.num_template_frames - 1,\n                            max_id=len(visible) - self.num_search_frames,\n                        )\n                        prev_frame_ids = self._sample_visible_ids(\n                            visible,\n                            num_ids=self.num_template_frames - 1,\n                            min_id=base_frame_id[0] - self.max_gap - gap_increase,\n                            max_id=base_frame_id[0],\n                        )\n                        if prev_frame_ids is None:\n                            gap_increase += 5\n                            continue\n                        template_frame_ids = base_frame_id + prev_frame_ids\n                        search_frame_ids = self._sample_visible_ids(\n                            visible,\n                            min_id=template_frame_ids[0] + 1,\n                            max_id=template_frame_ids[0] + self.max_gap + gap_increase,\n                            num_ids=self.num_search_frames,\n                        )\n                        # Increase gap until a frame is found\n                        gap_increase += 5\n\n                elif (\n                    self.frame_sample_mode == \"trident\"\n                    or self.frame_sample_mode == \"trident_pro\"\n                ):\n                    template_frame_ids, search_frame_ids = self.get_frame_ids_trident(\n                        visible\n                    )\n                elif self.frame_sample_mode == \"stark\":\n                    template_frame_ids, search_frame_ids = self.get_frame_ids_stark(\n                        visible, seq_info_dict[\"valid\"]\n                    )\n                else:\n                    raise ValueError(\"Illegal frame sample mode\")\n            else:\n                # In case of image dataset, just repeat the image to generate synthetic video\n                template_frame_ids = [1] * self.num_template_frames\n                search_frame_ids = [1] * self.num_search_frames\n            try:\n                template_frames, template_anno, meta_obj_train = dataset.get_frames(\n                    seq_id, template_frame_ids, seq_info_dict\n                )\n                search_frames, search_anno, meta_obj_test = dataset.get_frames(\n                    seq_id, search_frame_ids, seq_info_dict\n                )\n\n                H, W, _ = template_frames[0].shape\n                template_masks = (\n                    template_anno[\"mask\"]\n                    if \"mask\" in template_anno\n                    else [torch.zeros((H, W))] * self.num_template_frames\n                )\n                search_masks = (\n                    search_anno[\"mask\"]\n                    if \"mask\" in search_anno\n                    else [torch.zeros((H, W))] * self.num_search_frames\n                )\n\n                data = TensorDict(\n                    {\n                        \"template_images\": template_frames,\n                        \"template_anno\": template_anno[\"bbox\"],\n                        \"template_masks\": template_masks,\n                        \"search_images\": search_frames,\n                        \"search_anno\": search_anno[\"bbox\"],\n                        \"search_masks\": search_masks,\n                        \"dataset\": dataset.get_name(),\n                        \"test_class\": meta_obj_test.get(\"object_class_name\"),\n                    }\n                )\n                # make data augmentation\n                data = self.processing(data)\n\n                # check whether data is valid\n                valid = data[\"valid\"]\n            except Exception:\n                valid = False\n\n        return data\n\n    def getitem_cls(self):\n        # get data for classification\n        \"\"\"\n        args:\n            index (int): Index (Ignored since we sample randomly)\n            aux (bool): whether the current data is for auxiliary use (e.g. copy-and-paste)\n\n        returns:\n            TensorDict - dict containing all the data blocks\n        \"\"\"\n        valid = False\n        label = None\n        while not valid:\n            # Select a dataset\n            dataset = random.choices(self.datasets, self.p_datasets)[0]\n\n            is_video_dataset = dataset.is_video_sequence()\n\n            # sample a sequence from the given dataset\n            seq_id, visible, seq_info_dict = self.sample_seq_from_dataset(\n                dataset, is_video_dataset\n            )\n            # sample template and search frame ids\n            if is_video_dataset:\n                if self.frame_sample_mode in [\"trident\", \"trident_pro\"]:\n                    template_frame_ids, search_frame_ids = self.get_frame_ids_trident(\n                        visible\n                    )\n                elif self.frame_sample_mode == \"stark\":\n                    template_frame_ids, search_frame_ids = self.get_frame_ids_stark(\n                        visible, seq_info_dict[\"valid\"]\n                    )\n                else:\n                    raise ValueError(\"illegal frame sample mode\")\n            else:\n                # In case of image dataset, just repeat the image to generate synthetic video\n                template_frame_ids = [1] * self.num_template_frames\n                search_frame_ids = [1] * self.num_search_frames\n            try:\n                # \"try\" is used to handle trackingnet data failure\n                # get images and bounding boxes (for templates)\n                template_frames, template_anno, meta_obj_train = dataset.get_frames(\n                    seq_id, template_frame_ids, seq_info_dict\n                )\n                H, W, _ = template_frames[0].shape\n                template_masks = (\n                    template_anno[\"mask\"]\n                    if \"mask\" in template_anno\n                    else [torch.zeros((H, W))] * self.num_template_frames\n                )\n                # get images and bounding boxes (for searches)\n                # positive samples\n                if random.random() < self.pos_prob:\n                    label = torch.ones(\n                        1,\n                    )\n                    search_frames, search_anno, meta_obj_test = dataset.get_frames(\n                        seq_id, search_frame_ids, seq_info_dict\n                    )\n                    search_masks = (\n                        search_anno[\"mask\"]\n                        if \"mask\" in search_anno\n                        else [torch.zeros((H, W))] * self.num_search_frames\n                    )\n                # negative samples\n                else:\n                    label = torch.zeros(\n                        1,\n                    )\n                    if is_video_dataset:\n                        search_frame_ids = self._sample_visible_ids(\n                            visible, num_ids=1, force_invisible=True\n                        )\n                        if search_frame_ids is None:\n                            (\n                                search_frames,\n                                search_anno,\n                                meta_obj_test,\n                            ) = self.get_one_search()\n                        else:\n                            (\n                                search_frames,\n                                search_anno,\n                                meta_obj_test,\n                            ) = dataset.get_frames(\n                                seq_id, search_frame_ids, seq_info_dict\n                            )\n                            search_anno[\"bbox\"] = [self.get_center_box(H, W)]\n                    else:\n                        (\n                            search_frames,\n                            search_anno,\n                            meta_obj_test,\n                        ) = self.get_one_search()\n                    H, W, _ = search_frames[0].shape\n                    search_masks = (\n                        search_anno[\"mask\"]\n                        if \"mask\" in search_anno\n                        else [torch.zeros((H, W))] * self.num_search_frames\n                    )\n\n                data = TensorDict(\n                    {\n                        \"template_images\": template_frames,\n                        \"template_anno\": template_anno[\"bbox\"],\n                        \"template_masks\": template_masks,\n                        \"search_images\": search_frames,\n                        \"search_anno\": search_anno[\"bbox\"],\n                        \"search_masks\": search_masks,\n                        \"dataset\": dataset.get_name(),\n                        \"test_class\": meta_obj_test.get(\"object_class_name\"),\n                    }\n                )\n\n                # make data augmentation\n                data = self.processing(data)\n                # add classification label\n                data[\"label\"] = label\n                # check whether data is valid\n                valid = data[\"valid\"]\n            except Exception:\n                valid = False\n\n        return data\n\n    def get_center_box(self, H, W, ratio=1 / 8):\n        cx, cy, w, h = W / 2, H / 2, W * ratio, H * ratio\n        return torch.tensor([int(cx - w / 2), int(cy - h / 2), int(w), int(h)])\n\n    def sample_seq_from_dataset(self, dataset, is_video_dataset):\n\n        # Sample a sequence with enough visible frames\n        enough_visible_frames = False\n        while not enough_visible_frames:\n            # Sample a sequence\n            seq_id = random.randint(0, dataset.get_num_sequences() - 1)\n\n            # Sample frames\n            seq_info_dict = dataset.get_sequence_info(seq_id)\n            visible = seq_info_dict[\"visible\"]\n\n            enough_visible_frames = (\n                visible.type(torch.int64).sum().item()\n                > 2 * (self.num_search_frames + self.num_template_frames)\n                and len(visible) >= 20\n            )\n\n            enough_visible_frames = enough_visible_frames or not is_video_dataset\n        return seq_id, visible, seq_info_dict\n\n    def get_one_search(self):\n        # Select a dataset\n        dataset = random.choices(self.datasets, self.p_datasets)[0]\n\n        is_video_dataset = dataset.is_video_sequence()\n        # sample a sequence\n        seq_id, visible, seq_info_dict = self.sample_seq_from_dataset(\n            dataset, is_video_dataset\n        )\n        # sample a frame\n        if is_video_dataset:\n            if self.frame_sample_mode == \"stark\":\n                search_frame_ids = self._sample_visible_ids(\n                    seq_info_dict[\"valid\"], num_ids=1\n                )\n            else:\n                search_frame_ids = self._sample_visible_ids(\n                    visible, num_ids=1, allow_invisible=True\n                )\n        else:\n            search_frame_ids = [1]\n        # get the image, bounding box and other info\n        search_frames, search_anno, meta_obj_test = dataset.get_frames(\n            seq_id, search_frame_ids, seq_info_dict\n        )\n\n        return search_frames, search_anno, meta_obj_test\n\n    def get_frame_ids_trident(self, visible):\n        # get template and search ids in a 'trident' manner\n        template_frame_ids_extra = []\n        while None in template_frame_ids_extra or len(template_frame_ids_extra) == 0:\n            template_frame_ids_extra = []\n            # first randomly sample two frames from a video\n            template_frame_id1 = self._sample_visible_ids(\n                visible, num_ids=1\n            )  # the initial template id\n            search_frame_ids = self._sample_visible_ids(\n                visible, num_ids=1\n            )  # the search region id\n            # get the dynamic template id\n            for max_gap in self.max_gap:\n                if template_frame_id1[0] >= search_frame_ids[0]:\n                    min_id, max_id = search_frame_ids[0], search_frame_ids[0] + max_gap\n                else:\n                    min_id, max_id = search_frame_ids[0] - max_gap, search_frame_ids[0]\n                if self.frame_sample_mode == \"trident_pro\":\n                    f_id = self._sample_visible_ids(\n                        visible,\n                        num_ids=1,\n                        min_id=min_id,\n                        max_id=max_id,\n                        allow_invisible=True,\n                    )\n                else:\n                    f_id = self._sample_visible_ids(\n                        visible, num_ids=1, min_id=min_id, max_id=max_id\n                    )\n                if f_id is None:\n                    template_frame_ids_extra += [None]\n                else:\n                    template_frame_ids_extra += f_id\n\n        template_frame_ids = template_frame_id1 + template_frame_ids_extra\n        return template_frame_ids, search_frame_ids\n\n    def get_frame_ids_stark(self, visible, valid):\n        # get template and search ids in a 'stark' manner\n        template_frame_ids_extra = []\n        while None in template_frame_ids_extra or len(template_frame_ids_extra) == 0:\n            template_frame_ids_extra = []\n            # first randomly sample two frames from a video\n            template_frame_id1 = self._sample_visible_ids(\n                visible, num_ids=1\n            )  # the initial template id\n            search_frame_ids = self._sample_visible_ids(\n                visible, num_ids=1\n            )  # the search region id\n            # get the dynamic template id\n            for max_gap in self.max_gap:\n                if template_frame_id1[0] >= search_frame_ids[0]:\n                    min_id, max_id = search_frame_ids[0], search_frame_ids[0] + max_gap\n                else:\n                    min_id, max_id = search_frame_ids[0] - max_gap, search_frame_ids[0]\n                \"\"\"we require the frame to be valid but not necessary visible\"\"\"\n                f_id = self._sample_visible_ids(\n                    valid, num_ids=1, min_id=min_id, max_id=max_id\n                )\n                if f_id is None:\n                    template_frame_ids_extra += [None]\n                else:\n                    template_frame_ids_extra += f_id\n\n        template_frame_ids = template_frame_id1 + template_frame_ids_extra\n        return template_frame_ids, search_frame_ids\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/train_datasets/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/dataset/train_datasets/coco_seq.py",
    "content": "import os\nimport os.path\nimport random\nfrom collections import OrderedDict\n\nimport torch\nfrom pycocotools.coco import COCO\nfrom tracking.dataset.base_video_dataset import BaseVideoDataset\nfrom tracking.utils.env import pathmgr\nfrom tracking.utils.utils import opencv_loader\n\n\nclass MSCOCOSeq(BaseVideoDataset):\n    \"\"\"The COCO dataset. COCO is an image dataset. Thus, we treat each image as a sequence of length 1.\n\n    Publication:\n        Microsoft COCO: Common Objects in Context.\n        Tsung-Yi Lin, Michael Maire, Serge J. Belongie, Lubomir D. Bourdev, Ross B. Girshick, James Hays, Pietro Perona,\n        Deva Ramanan, Piotr Dollar and C. Lawrence Zitnick\n        ECCV, 2014\n        https://arxiv.org/pdf/1405.0312.pdf\n\n    Download the images along with annotations from http://cocodataset.org/#download. The root folder should be\n    organized as follows.\n        - coco_root\n            - annotations\n                - instances_train2014.json\n                - instances_train2017.json\n            - images\n                - train2014\n                - train2017\n\n    Note: You also have to install the coco pythonAPI from https://github.com/cocodataset/cocoapi.\n    \"\"\"\n\n    def __init__(\n        self,\n        root=None,\n        image_loader=opencv_loader,\n        data_fraction=None,\n        split=\"train\",\n        version=\"2017\",\n    ):\n        \"\"\"\n        args:\n            root - path to the coco dataset.\n            image_loader (default_image_loader) -  The function to read the images. If installed,\n                                                   jpeg4py (https://github.com/ajkxyz/jpeg4py) is used by default. Else,\n                                                   opencv's imread is used.\n            data_fraction (None) - Fraction of images to be used. The images are selected randomly. If None, all the\n                                  images  will be used\n            split - 'train' or 'val'.\n            version - version of coco dataset (2014 or 2017)\n        \"\"\"\n        super().__init__(\"COCO\", root, image_loader)\n\n        # self.img_pth = os.path.join(root, \"{}{}/\".format(split, version))\n        # self.anno_path = os.path.join(\n        #     root, \"annotations/instances_{}{}.json\".format(split, version)\n        # )\n        self.img_pth = os.path.join(root, \"coco_{}{}/\".format(split, version))\n        self.anno_path = os.path.join(\n            root,\n            \"detectron2/json_dataset_annotations/coco/instances_{}{}.json\".format(\n                split, version\n            ),\n        )\n\n        # Load the COCO set.\n        self.coco_set = COCO(pathmgr.get_local_path(self.anno_path))\n\n        self.cats = self.coco_set.cats\n\n        self.class_list = self.get_class_list()\n\n        self.sequence_list = self._get_sequence_list()\n\n        if data_fraction is not None:\n            self.sequence_list = random.sample(\n                self.sequence_list, int(len(self.sequence_list) * data_fraction)\n            )\n        self.seq_per_class = self._build_seq_per_class()\n\n    def _get_sequence_list(self):\n        ann_list = list(self.coco_set.anns.keys())\n        seq_list = [a for a in ann_list if self.coco_set.anns[a][\"iscrowd\"] == 0]\n\n        return seq_list\n\n    def is_video_sequence(self):\n        return False\n\n    def get_num_classes(self):\n        return len(self.class_list)\n\n    def get_name(self):\n        return \"coco\"\n\n    def has_class_info(self):\n        return True\n\n    def get_class_list(self):\n        class_list = []\n        for cat_id in self.cats.keys():\n            class_list.append(self.cats[cat_id][\"name\"])\n        return class_list\n\n    def has_segmentation_info(self):\n        return True\n\n    def get_num_sequences(self):\n        return len(self.sequence_list)\n\n    def _build_seq_per_class(self):\n        seq_per_class = {}\n        for i, seq in enumerate(self.sequence_list):\n            class_name = self.cats[self.coco_set.anns[seq][\"category_id\"]][\"name\"]\n            if class_name not in seq_per_class:\n                seq_per_class[class_name] = [i]\n            else:\n                seq_per_class[class_name].append(i)\n\n        return seq_per_class\n\n    def get_sequences_in_class(self, class_name):\n        return self.seq_per_class[class_name]\n\n    def get_sequence_info(self, seq_id):\n        anno = self._get_anno(seq_id)\n\n        bbox = torch.Tensor(anno[\"bbox\"]).view(1, 4)\n\n        mask = torch.Tensor(self.coco_set.annToMask(anno)).unsqueeze(dim=0)\n\n        \"\"\"2021.1.3 To avoid too small bounding boxes. Here we change the threshold to 50 pixels\"\"\"\n        valid = (bbox[:, 2] > 50) & (bbox[:, 3] > 50)\n\n        visible = valid.clone().byte()\n\n        return {\"bbox\": bbox, \"mask\": mask, \"valid\": valid, \"visible\": visible}\n\n    def _get_anno(self, seq_id):\n        anno = self.coco_set.anns[self.sequence_list[seq_id]]\n\n        return anno\n\n    def _get_frames(self, seq_id):\n        path = self.coco_set.loadImgs(\n            [self.coco_set.anns[self.sequence_list[seq_id]][\"image_id\"]]\n        )[0][\"file_name\"]\n        img = self.image_loader(os.path.join(self.img_pth, path))\n        return img\n\n    def get_meta_info(self, seq_id):\n        try:\n            cat_dict_current = self.cats[\n                self.coco_set.anns[self.sequence_list[seq_id]][\"category_id\"]\n            ]\n            object_meta = OrderedDict(\n                {\n                    \"object_class_name\": cat_dict_current[\"name\"],\n                    \"motion_class\": None,\n                    \"major_class\": cat_dict_current[\"supercategory\"],\n                    \"root_class\": None,\n                    \"motion_adverb\": None,\n                }\n            )\n        except Exception:\n            object_meta = OrderedDict(\n                {\n                    \"object_class_name\": None,\n                    \"motion_class\": None,\n                    \"major_class\": None,\n                    \"root_class\": None,\n                    \"motion_adverb\": None,\n                }\n            )\n        return object_meta\n\n    def get_class_name(self, seq_id):\n        cat_dict_current = self.cats[\n            self.coco_set.anns[self.sequence_list[seq_id]][\"category_id\"]\n        ]\n        return cat_dict_current[\"name\"]\n\n    def get_frames(self, seq_id=None, frame_ids=None, anno=None):\n        # COCO is an image dataset. Thus we replicate the image denoted by seq_id len(frame_ids) times, and return a\n        # list containing these replicated images.\n        frame = self._get_frames(seq_id)\n\n        frame_list = [frame.copy() for _ in frame_ids]\n\n        if anno is None:\n            anno = self.get_sequence_info(seq_id)\n\n        anno_frames = {}\n        for key, value in anno.items():\n            anno_frames[key] = [value[0, ...] for _ in frame_ids]\n\n        object_meta = self.get_meta_info(seq_id)\n\n        return frame_list, anno_frames, object_meta\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/train_datasets/ego4d_lt_tracking.py",
    "content": "import os\nimport os.path\nimport random\nfrom itertools import groupby\n\nimport torch\nfrom tracking.dataset.base_video_dataset import BaseVideoDataset\nfrom tracking.dataset.eval_datasets.ego4d_lt_tracking_dataset import (\n    EGO4DLTTrackingDataset,\n)\nfrom tracking.utils.utils import opencv_loader\n\n\nclass EGO4DLTT(BaseVideoDataset):\n    \"\"\"Ego4D VQ response track dataset.\"\"\"\n\n    def __init__(\n        self,\n        data_dir: str,\n        annotation_path: str,\n        data_fraction=None,\n        image_loader=opencv_loader,\n    ):\n        \"\"\"\n        args:\n            data_dir - directory that contains image files\n            annotation_path - which annotation file to read\n            data_fraction - Fraction of dataset to be used. The complete dataset is used by default\n        \"\"\"\n        super().__init__(\"Ego4DLTT\", annotation_path)\n        self.ego4d_lt_tracking = EGO4DLTTrackingDataset(\n            data_dir,\n            annotation_path,\n            ratio=data_fraction if data_fraction is not None else 1.0,\n        )\n        self.sequence_list = self.ego4d_lt_tracking.sequences\n\n    def get_sequence_info(self, seq_id):\n        bbox, frame_numbers = self._get_bbox_from_lt_tracking(seq_id)\n        valid = (bbox[:, 2] > 0) & (bbox[:, 3] > 0)\n        visible = torch.ones(len(bbox))\n\n        return {\n            \"bbox\": bbox,\n            \"valid\": valid,\n            \"visible\": visible,\n            \"frame_numbers\": frame_numbers,\n        }\n\n    def get_name(self):\n        return \"ego4d_lt_tracking\"\n\n    def _get_bbox_from_lt_tracking(self, seq_id):\n        frame_bbox_dict = self.ego4d_lt_tracking[seq_id].gt_bbox_dict\n        frame_numbers = list(frame_bbox_dict.keys())\n\n        bboxes = [frame_bbox_dict[frame_number] for frame_number in frame_numbers]\n        bboxes = torch.tensor(bboxes)\n        frame_numbers = torch.tensor(frame_numbers)\n\n        return bboxes, frame_numbers\n\n    def _get_frame(self, frame_path):\n        return self.image_loader(frame_path)\n\n    def get_frames(self, seq_id, frame_ids, anno=None):\n        seq = self.ego4d_lt_tracking[seq_id]\n        # obj_meta = self.sequence_meta_info[self.sequence_list[seq_id]]\n        obj_meta = {}\n        frame_numbers = anno[\"frame_numbers\"]\n\n        frame_list = [\n            self._get_frame(seq.frames[frame_numbers[f_id]]) for f_id in frame_ids\n        ]\n\n        if anno is None:\n            anno = self.get_sequence_info(seq_id)\n\n        anno_frames = {}\n        for key, value in anno.items():\n            anno_frames[key] = [value[f_id, ...].clone() for f_id in frame_ids]\n\n        return frame_list, anno_frames, obj_meta\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/train_datasets/ego4d_vq.py",
    "content": "import os\nimport os.path\nimport random\nfrom itertools import groupby\n\nimport torch\nfrom tracking.dataset.base_video_dataset import BaseVideoDataset\nfrom tracking.dataset.ego4d_tracking import Ego4DTracking\nfrom tracking.utils.utils import opencv_loader\n\n\nclass Ego4DVQ(BaseVideoDataset):\n    \"\"\"Ego4D VQ response track dataset.\"\"\"\n\n    def __init__(\n        self,\n        root: str,\n        annotation_path: str,\n        data_fraction=None,\n        image_loader=opencv_loader,\n    ):\n        \"\"\"\n        args:\n            root - directory that contains image files\n            annotation_path - which annotation file to read\n            data_fraction - Fraction of dataset to be used. The complete dataset is used by default\n        \"\"\"\n        super().__init__(\"Ego4DVQ\", root)\n        self.ego4d_tracking = Ego4DTracking(annotation_path, None, None)\n\n        if data_fraction is not None:\n            self.ego4d_tracking.response_tracks = random.sample(\n                self.ego4d_tracking.response_tracks,\n                int(len(self.ego4d_tracking.response_tracks) * data_fraction),\n            )\n        self.sequence_list = self.ego4d_tracking.response_tracks\n\n    def get_sequence_info(self, seq_id):\n        bbox, frame_numbers = self._get_bbox_from_response_track(seq_id)\n        valid = (bbox[:, 2] > 0) & (bbox[:, 3] > 0)\n        visible = torch.ones(len(bbox))\n\n        return {\n            \"bbox\": bbox,\n            \"valid\": valid,\n            \"visible\": visible,\n            \"frame_numbers\": frame_numbers,\n        }\n\n    def get_name(self):\n        return \"ego4d_vq\"\n\n    def _get_sequence_path(self, seq_id):\n        response_track = self.ego4d_tracking.response_tracks[seq_id]\n        clip_uid, object_title, target_id = (\n            response_track[\"clip_uid\"],\n            response_track[\"object_title\"],\n            response_track[\"target_id\"],\n        )\n        seq_dir = f\"{clip_uid}_{target_id}_{object_title}\"\n\n        return os.path.join(self.root, seq_dir)\n\n    def _get_bbox_from_response_track(self, seq_id):\n        response_track = self.ego4d_tracking.response_tracks[seq_id][\"response_track\"]\n        frame_bbox_dict = {}\n        frame_numbers = []\n        for frame_number, data in groupby(response_track, lambda x: x[\"frame\"]):\n            data = list(data)\n            assert len(data) == 1\n\n            for b in data:\n                box = [b[\"x\"], b[\"y\"], b[\"width\"], b[\"height\"]]\n                frame_bbox_dict[frame_number] = box\n                frame_numbers.append(frame_number)\n\n        bboxes = [frame_bbox_dict[frame_number] for frame_number in frame_numbers]\n        bboxes = torch.tensor(bboxes)\n        frame_numbers = torch.tensor(frame_numbers)\n\n        return bboxes, frame_numbers\n\n    def _get_frame_path(self, seq_path, frame_id):\n        return os.path.join(\n            seq_path, \"{:08}.png\".format(frame_id)\n        )  # frames start from 1\n\n    def _get_frame(self, seq_path, frame_id):\n        return self.image_loader(self._get_frame_path(seq_path, frame_id))\n\n    def get_frames(self, seq_id, frame_ids, anno=None):\n        seq_path = self._get_sequence_path(seq_id)\n        # obj_meta = self.sequence_meta_info[self.sequence_list[seq_id]]\n        obj_meta = {}\n        frame_numbers = anno[\"frame_numbers\"]\n\n        frame_list = [\n            self._get_frame(seq_path, frame_numbers[f_id]) for f_id in frame_ids\n        ]\n\n        if anno is None:\n            anno = self.get_sequence_info(seq_id)\n\n        anno_frames = {}\n        for key, value in anno.items():\n            anno_frames[key] = [value[f_id, ...].clone() for f_id in frame_ids]\n\n        return frame_list, anno_frames, obj_meta\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/train_datasets/got10k.py",
    "content": "import csv\nimport json\nimport os\nimport os.path\nimport random\nfrom collections import OrderedDict\n\nimport numpy as np\nimport pandas\nimport torch\nfrom tracking.dataset.base_video_dataset import BaseVideoDataset\nfrom tracking.utils.env import pathmgr\nfrom tracking.utils.utils import opencv_loader\n\n\nclass Got10k(BaseVideoDataset):\n    \"\"\"GOT-10k dataset.\n\n    Publication:\n        GOT-10k: A Large High-Diversity Benchmark for Generic Object Tracking in the Wild\n        Lianghua Huang, Xin Zhao, and Kaiqi Huang\n        arXiv:1810.11981, 2018\n        https://arxiv.org/pdf/1810.11981.pdf\n\n    Download dataset from http://got-10k.aitestunion.com/downloads\n    \"\"\"\n\n    def __init__(\n        self,\n        root,\n        image_loader=opencv_loader,\n        split=None,\n        seq_ids=None,\n        data_fraction=None,\n        cached_sequence_meta_info_dir=None,\n    ):\n        \"\"\"\n        args:\n            root - path to the got-10k training data. Note: This should point to the 'train' folder inside GOT-10k\n            image_loader (jpeg4py_loader) -  The function to read the images. jpeg4py (https://github.com/ajkxyz/jpeg4py)\n                                            is used by default.\n            split - 'train' or 'val'. Note: The validation split here is a subset of the official got-10k train split,\n                    not NOT the official got-10k validation split. To use the official validation split, provide that as\n                    the root folder instead.\n            seq_ids - List containing the ids of the videos to be used for training. Note: Only one of 'split' or 'seq_ids'\n                        options can be used at the same time.\n            data_fraction - Fraction of dataset to be used. The complete dataset is used by default\n        \"\"\"\n        super().__init__(\"GOT10k\", root, image_loader)\n\n        # all folders inside the root\n        self.sequence_list = self._get_sequence_list()\n\n        # seq_id is the index of the folder inside the got10k root path\n        if split is not None:\n            if seq_ids is not None:\n                raise ValueError(\"Cannot set both split_name and seq_ids.\")\n            ltr_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), \"..\")\n            if split == \"train\":\n                file_path = os.path.join(\n                    ltr_path, \"data_specs\", \"got10k_train_split.txt\"\n                )\n            elif split == \"val\":\n                file_path = os.path.join(ltr_path, \"data_specs\", \"got10k_val_split.txt\")\n            elif split == \"train_full\":\n                file_path = os.path.join(\n                    ltr_path, \"data_specs\", \"got10k_train_full_split.txt\"\n                )\n            elif split == \"vottrain\":\n                file_path = os.path.join(\n                    ltr_path, \"data_specs\", \"got10k_vot_train_split.txt\"\n                )\n            elif split == \"votval\":\n                file_path = os.path.join(\n                    ltr_path, \"data_specs\", \"got10k_vot_val_split.txt\"\n                )\n            else:\n                raise ValueError(\"Unknown split name.\")\n            file_path = pathmgr.get_local_path(file_path)\n            seq_ids = pandas.read_csv(\n                file_path, header=None, squeeze=True, dtype=np.int64\n            ).values.tolist()\n        elif seq_ids is None:\n            seq_ids = list(range(0, len(self.sequence_list)))\n\n        self.sequence_list = [self.sequence_list[i] for i in seq_ids]\n\n        if data_fraction is not None:\n            self.sequence_list = random.sample(\n                self.sequence_list, int(len(self.sequence_list) * data_fraction)\n            )\n\n        # Load pre-cached sequence_meta_info, so do not need to open thousands of files\n        # to read several MB of data\n        if cached_sequence_meta_info_dir is not None:\n            self.sequence_meta_info = json.load(\n                pathmgr.open(\n                    os.path.join(\n                        cached_sequence_meta_info_dir,\n                        f\"{split}_sequence_meta_info.json\",\n                    )\n                )\n            )\n        else:\n            self.sequence_meta_info = self._load_meta_info()\n        self.seq_per_class = self._build_seq_per_class()\n\n        self.class_list = list(self.seq_per_class.keys())\n        self.class_list.sort()\n\n    def get_name(self):\n        return \"got10k\"\n\n    def has_class_info(self):\n        return True\n\n    def has_occlusion_info(self):\n        return True\n\n    def _load_meta_info(self):\n        sequence_meta_info = {\n            s: self._read_meta(os.path.join(self.root, s)) for s in self.sequence_list\n        }\n        return sequence_meta_info\n\n    def _read_meta(self, seq_path):\n        try:\n            with pathmgr.open(os.path.join(seq_path, \"meta_info.ini\")) as f:\n                meta_info = f.readlines()\n            object_meta = OrderedDict(\n                {\n                    \"object_class_name\": meta_info[5].split(\": \")[-1][:-1],\n                    \"motion_class\": meta_info[6].split(\": \")[-1][:-1],\n                    \"major_class\": meta_info[7].split(\": \")[-1][:-1],\n                    \"root_class\": meta_info[8].split(\": \")[-1][:-1],\n                    \"motion_adverb\": meta_info[9].split(\": \")[-1][:-1],\n                }\n            )\n        except Exception:\n            object_meta = OrderedDict(\n                {\n                    \"object_class_name\": None,\n                    \"motion_class\": None,\n                    \"major_class\": None,\n                    \"root_class\": None,\n                    \"motion_adverb\": None,\n                }\n            )\n        return object_meta\n\n    def _build_seq_per_class(self):\n        seq_per_class = {}\n\n        for i, s in enumerate(self.sequence_list):\n            object_class = self.sequence_meta_info[s][\"object_class_name\"]\n            if object_class in seq_per_class:\n                seq_per_class[object_class].append(i)\n            else:\n                seq_per_class[object_class] = [i]\n\n        return seq_per_class\n\n    def get_sequences_in_class(self, class_name):\n        return self.seq_per_class[class_name]\n\n    def _get_sequence_list(self):\n        with pathmgr.open(os.path.join(self.root, \"list.txt\")) as f:\n            dir_list = list(csv.reader(f))\n        dir_list = [dir_name[0] for dir_name in dir_list]\n        return dir_list\n\n    def _read_bb_anno(self, seq_path):\n        bb_anno_file = os.path.join(seq_path, \"groundtruth.txt\")\n        bb_anno_file = pathmgr.get_local_path(bb_anno_file)\n        gt = pandas.read_csv(\n            bb_anno_file,\n            delimiter=\",\",\n            header=None,\n            dtype=np.float32,\n            na_filter=False,\n            low_memory=False,\n        ).values\n        return torch.tensor(gt)\n\n    def _read_target_visible(self, seq_path):\n        # Read full occlusion and out_of_view\n        occlusion_file = os.path.join(seq_path, \"absence.label\")\n        cover_file = os.path.join(seq_path, \"cover.label\")\n\n        with pathmgr.open(occlusion_file, \"r\", newline=\"\") as f:\n            occlusion = torch.ByteTensor([int(v[0]) for v in csv.reader(f)])\n        with pathmgr.open(cover_file, \"r\", newline=\"\") as f:\n            cover = torch.ByteTensor([int(v[0]) for v in csv.reader(f)])\n\n        target_visible = ~occlusion & (cover > 0).byte()\n\n        visible_ratio = cover.float() / 8\n        return target_visible, visible_ratio\n\n    def _get_sequence_path(self, seq_id):\n        return os.path.join(self.root, self.sequence_list[seq_id])\n\n    def get_sequence_info(self, seq_id):\n        seq_path = self._get_sequence_path(seq_id)\n        bbox = self._read_bb_anno(seq_path)\n\n        valid = (bbox[:, 2] > 0) & (bbox[:, 3] > 0)\n        visible, visible_ratio = self._read_target_visible(seq_path)\n        visible = visible & valid.byte()\n\n        return {\n            \"bbox\": bbox,\n            \"valid\": valid,\n            \"visible\": visible,\n            \"visible_ratio\": visible_ratio,\n        }\n\n    def _get_frame_path(self, seq_path, frame_id):\n        return os.path.join(\n            seq_path, \"{:08}.jpg\".format(frame_id + 1)\n        )  # frames start from 1\n\n    def _get_frame(self, seq_path, frame_id):\n        return self.image_loader(self._get_frame_path(seq_path, frame_id))\n\n    def get_class_name(self, seq_id):\n        obj_meta = self.sequence_meta_info[self.sequence_list[seq_id]]\n\n        return obj_meta[\"object_class_name\"]\n\n    def get_frames(self, seq_id, frame_ids, anno=None):\n        seq_path = self._get_sequence_path(seq_id)\n        obj_meta = self.sequence_meta_info[self.sequence_list[seq_id]]\n\n        frame_list = [self._get_frame(seq_path, f_id) for f_id in frame_ids]\n\n        if anno is None:\n            anno = self.get_sequence_info(seq_id)\n\n        anno_frames = {}\n        for key, value in anno.items():\n            anno_frames[key] = [value[f_id, ...].clone() for f_id in frame_ids]\n\n        return frame_list, anno_frames, obj_meta\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/train_datasets/lasot.py",
    "content": "import csv\nimport os\nimport os.path\nimport random\nfrom collections import OrderedDict\n\nimport numpy as np\nimport pandas\nimport torch\nfrom tracking.dataset.base_video_dataset import BaseVideoDataset\nfrom tracking.utils.env import pathmgr\nfrom tracking.utils.utils import opencv_loader\n\n\nclass Lasot(BaseVideoDataset):\n    \"\"\"LaSOT dataset.\n\n    Publication:\n        LaSOT: A High-quality Benchmark for Large-scale Single Object Tracking\n        Heng Fan, Liting Lin, Fan Yang, Peng Chu, Ge Deng, Sijia Yu, Hexin Bai, Yong Xu, Chunyuan Liao and Haibin Ling\n        CVPR, 2019\n        https://arxiv.org/pdf/1809.07845.pdf\n\n    Download the dataset from https://cis.temple.edu/lasot/download.html\n    \"\"\"\n\n    def __init__(\n        self,\n        root,\n        image_loader=opencv_loader,\n        vid_ids=None,\n        split=None,\n        data_fraction=None,\n    ):\n        \"\"\"\n        args:\n            root - path to the lasot dataset.\n            image_loader (jpeg4py_loader) -  The function to read the images. jpeg4py (https://github.com/ajkxyz/jpeg4py)\n                                            is used by default.\n            vid_ids - List containing the ids of the videos (1 - 20) used for training. If vid_ids = [1, 3, 5], then the\n                    videos with subscripts -1, -3, and -5 from each class will be used for training.\n            split - If split='train', the official train split (protocol-II) is used for training. Note: Only one of\n                    vid_ids or split option can be used at a time.\n            data_fraction - Fraction of dataset to be used. The complete dataset is used by default\n        \"\"\"\n        super().__init__(\"LaSOT\", root, image_loader)\n\n        # Keep a list of all classes\n        self.class_list = [f for f in pathmgr.ls(self.root)]\n        self.class_to_id = {\n            cls_name: cls_id for cls_id, cls_name in enumerate(self.class_list)\n        }\n\n        self.sequence_list = self._build_sequence_list(vid_ids, split)\n\n        if data_fraction is not None:\n            self.sequence_list = random.sample(\n                self.sequence_list, int(len(self.sequence_list) * data_fraction)\n            )\n\n        self.seq_per_class = self._build_class_list()\n\n    def _build_sequence_list(self, vid_ids=None, split=None):\n        if split is not None:\n            if vid_ids is not None:\n                raise ValueError(\"Cannot set both split_name and vid_ids.\")\n            ltr_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), \"..\")\n            if split == \"train\":\n                file_path = os.path.join(\n                    ltr_path, \"data_specs\", \"lasot_train_split.txt\"\n                )\n            else:\n                raise ValueError(\"Unknown split name.\")\n            sequence_list = pandas.read_csv(\n                file_path, header=None, squeeze=True\n            ).values.tolist()\n        elif vid_ids is not None:\n            sequence_list = [c + \"-\" + str(v) for c in self.class_list for v in vid_ids]\n        else:\n            raise ValueError(\"Set either split_name or vid_ids.\")\n\n        return sequence_list\n\n    def _build_class_list(self):\n        seq_per_class = {}\n        for seq_id, seq_name in enumerate(self.sequence_list):\n            class_name = seq_name.split(\"-\")[0]\n            if class_name in seq_per_class:\n                seq_per_class[class_name].append(seq_id)\n            else:\n                seq_per_class[class_name] = [seq_id]\n\n        return seq_per_class\n\n    def get_name(self):\n        return \"lasot\"\n\n    def has_class_info(self):\n        return True\n\n    def has_occlusion_info(self):\n        return True\n\n    def get_num_sequences(self):\n        return len(self.sequence_list)\n\n    def get_num_classes(self):\n        return len(self.class_list)\n\n    def get_sequences_in_class(self, class_name):\n        return self.seq_per_class[class_name]\n\n    def _read_bb_anno(self, seq_path):\n        bb_anno_file = pathmgr.get_local_path(os.path.join(seq_path, \"groundtruth.txt\"))\n        gt = pandas.read_csv(\n            bb_anno_file,\n            delimiter=\",\",\n            header=None,\n            dtype=np.float32,\n            na_filter=False,\n            low_memory=False,\n        ).values\n        return torch.tensor(gt)\n\n    def _read_target_visible(self, seq_path):\n        # Read full occlusion and out_of_view\n        occlusion_file = os.path.join(seq_path, \"full_occlusion.txt\")\n        out_of_view_file = os.path.join(seq_path, \"out_of_view.txt\")\n\n        with pathmgr.open(occlusion_file, \"r\", newline=\"\") as f:\n            occlusion = torch.ByteTensor([int(v) for v in list(csv.reader(f))[0]])\n        with pathmgr.open(out_of_view_file, \"r\") as f:\n            out_of_view = torch.ByteTensor([int(v) for v in list(csv.reader(f))[0]])\n\n        target_visible = ~occlusion & ~out_of_view\n\n        return target_visible\n\n    def _get_sequence_path(self, seq_id):\n        seq_name = self.sequence_list[seq_id]\n        class_name = seq_name.split(\"-\")[0]\n        vid_id = seq_name.split(\"-\")[1]\n\n        return os.path.join(self.root, class_name, class_name + \"-\" + vid_id)\n\n    def get_sequence_info(self, seq_id):\n        seq_path = self._get_sequence_path(seq_id)\n        bbox = self._read_bb_anno(seq_path)\n\n        valid = (bbox[:, 2] > 0) & (bbox[:, 3] > 0)\n        visible = self._read_target_visible(seq_path) & valid.byte()\n\n        return {\"bbox\": bbox, \"valid\": valid, \"visible\": visible}\n\n    def _get_frame_path(self, seq_path, frame_id):\n        return os.path.join(\n            seq_path, \"img\", \"{:08}.jpg\".format(frame_id + 1)\n        )  # frames start from 1\n\n    def _get_frame(self, seq_path, frame_id):\n        return self.image_loader(self._get_frame_path(seq_path, frame_id))\n\n    def _get_class(self, seq_path):\n        raw_class = seq_path.split(\"/\")[-2]\n        return raw_class\n\n    def get_class_name(self, seq_id):\n        seq_path = self._get_sequence_path(seq_id)\n        obj_class = self._get_class(seq_path)\n\n        return obj_class\n\n    def get_frames(self, seq_id, frame_ids, anno=None):\n        seq_path = self._get_sequence_path(seq_id)\n\n        obj_class = self._get_class(seq_path)\n        frame_list = [self._get_frame(seq_path, f_id) for f_id in frame_ids]\n\n        if anno is None:\n            anno = self.get_sequence_info(seq_id)\n\n        anno_frames = {}\n        for key, value in anno.items():\n            anno_frames[key] = [value[f_id, ...].clone() for f_id in frame_ids]\n\n        object_meta = OrderedDict(\n            {\n                \"object_class_name\": obj_class,\n                \"motion_class\": None,\n                \"major_class\": None,\n                \"root_class\": None,\n                \"motion_adverb\": None,\n            }\n        )\n\n        return frame_list, anno_frames, object_meta\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/train_datasets/tracking_net.py",
    "content": "import json\nimport os\nimport os.path\nimport random\nfrom collections import OrderedDict\n\nimport numpy as np\nimport pandas\nimport torch\nfrom tracking.dataset.base_video_dataset import BaseVideoDataset\nfrom tracking.utils.env import pathmgr\nfrom tracking.utils.utils import opencv_loader\n\n\ndef list_sequences(root, set_ids):\n    \"\"\"Lists all the videos in the input set_ids. Returns a list of tuples (set_id, video_name)\n\n    args:\n        root: Root directory to TrackingNet\n        set_ids: Sets (0-11) which are to be used\n\n    returns:\n        list - list of tuples (set_id, video_name) containing the set_id and video_name for each sequence\n    \"\"\"\n    sequence_list = []\n\n    for s in set_ids:\n        anno_dir = os.path.join(root, \"TRAIN_\" + str(s), \"anno\")\n\n        sequences_cur_set = [\n            (s, os.path.splitext(f)[0])\n            for f in pathmgr.ls(anno_dir)\n            if f.endswith(\".txt\")\n        ]\n        sequence_list += sequences_cur_set\n\n    return sequence_list\n\n\nclass TrackingNet(BaseVideoDataset):\n    \"\"\"TrackingNet dataset.\n\n    Publication:\n        TrackingNet: A Large-Scale Dataset and Benchmark for Object Tracking in the Wild.\n        Matthias Mueller,Adel Bibi, Silvio Giancola, Salman Al-Subaihi and Bernard Ghanem\n        ECCV, 2018\n        https://ivul.kaust.edu.sa/Documents/Publications/2018/TrackingNet%20A%20Large%20Scale%20Dataset%20and%20Benchmark%20for%20Object%20Tracking%20in%20the%20Wild.pdf\n\n    Download the dataset using the toolkit https://github.com/SilvioGiancola/TrackingNet-devkit.\n    \"\"\"\n\n    def __init__(\n        self,\n        root=None,\n        image_loader=opencv_loader,\n        set_ids=None,\n        data_fraction=None,\n        cached_sequence_list_dir=None,\n    ):\n        \"\"\"\n        args:\n            root        - The path to the TrackingNet folder, containing the training sets.\n            image_loader (jpeg4py_loader) -  The function to read the images. jpeg4py (https://github.com/ajkxyz/jpeg4py)\n                                            is used by default.\n            set_ids (None) - List containing the ids of the TrackingNet sets to be used for training. If None, all the\n                            sets (0 - 11) will be used.\n            data_fraction - Fraction of dataset to be used. The complete dataset is used by default\n        \"\"\"\n        super().__init__(\"TrackingNet\", root, image_loader)\n\n        if set_ids is None:\n            set_ids = [i for i in range(12)]\n\n        self.set_ids = set_ids\n\n        # Keep a list of all videos. Sequence list is a list of tuples (set_id, video_name) containing the set_id and\n        # video_name for each sequence\n\n        if cached_sequence_list_dir is not None:\n            # Load pre-cached sequence_list_info, so do not need to scan directory (often out of scan QPS)\n            self.sequence_list = json.load(\n                pathmgr.open(\n                    os.path.join(\n                        cached_sequence_list_dir,\n                        \"sequence_list_info.json\",\n                    )\n                )\n            )\n        else:\n            self.sequence_list = list_sequences(self.root, self.set_ids)\n\n        if data_fraction is not None:\n            self.sequence_list = random.sample(\n                self.sequence_list, int(len(self.sequence_list) * data_fraction)\n            )\n\n        self.seq_to_class_map, self.seq_per_class = self._load_class_info()\n\n        # we do not have the class_lists for the tracking net\n        self.class_list = list(self.seq_per_class.keys())\n        self.class_list.sort()\n\n    def _load_class_info(self):\n        ltr_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), \"..\")\n        class_map_path = os.path.join(\n            ltr_path, \"data_specs\", \"trackingnet_classmap.txt\"\n        )\n\n        with pathmgr.open(class_map_path, \"r\") as f:\n            seq_to_class_map = {\n                seq_class.split(\"\\t\")[0]: seq_class.rstrip().split(\"\\t\")[1]\n                for seq_class in f\n            }\n\n        seq_per_class = {}\n        for i, seq in enumerate(self.sequence_list):\n            class_name = seq_to_class_map.get(seq[1], \"Unknown\")\n            if class_name not in seq_per_class:\n                seq_per_class[class_name] = [i]\n            else:\n                seq_per_class[class_name].append(i)\n\n        return seq_to_class_map, seq_per_class\n\n    def get_name(self):\n        return \"trackingnet\"\n\n    def has_class_info(self):\n        return True\n\n    def get_sequences_in_class(self, class_name):\n        return self.seq_per_class[class_name]\n\n    def _read_bb_anno(self, seq_id):\n        set_id = self.sequence_list[seq_id][0]\n        vid_name = self.sequence_list[seq_id][1]\n        bb_anno_file = os.path.join(\n            self.root, \"TRAIN_\" + str(set_id), \"anno\", vid_name + \".txt\"\n        )\n        bb_anno_file = pathmgr.get_local_path(bb_anno_file)\n        gt = pandas.read_csv(\n            bb_anno_file,\n            delimiter=\",\",\n            header=None,\n            dtype=np.float32,\n            na_filter=False,\n            low_memory=False,\n        ).values\n        return torch.tensor(gt)\n\n    def get_sequence_info(self, seq_id):\n        bbox = self._read_bb_anno(seq_id)\n\n        valid = (bbox[:, 2] > 0) & (bbox[:, 3] > 0)\n        visible = valid.clone().byte()\n        return {\"bbox\": bbox, \"valid\": valid, \"visible\": visible}\n\n    def _get_frame(self, seq_id, frame_id):\n        set_id = self.sequence_list[seq_id][0]\n        vid_name = self.sequence_list[seq_id][1]\n        frame_path = os.path.join(\n            self.root,\n            \"TRAIN_\" + str(set_id),\n            \"frames\",\n            vid_name,\n            str(frame_id) + \".jpg\",\n        )\n        return self.image_loader(frame_path)\n\n    def _get_class(self, seq_id):\n        seq_name = self.sequence_list[seq_id][1]\n        return self.seq_to_class_map[seq_name]\n\n    def get_class_name(self, seq_id):\n        obj_class = self._get_class(seq_id)\n\n        return obj_class\n\n    def get_frames(self, seq_id, frame_ids, anno=None):\n        frame_list = [self._get_frame(seq_id, f) for f in frame_ids]\n\n        if anno is None:\n            anno = self.get_sequence_info(seq_id)\n\n        anno_frames = {}\n        for key, value in anno.items():\n            anno_frames[key] = [value[f_id, ...].clone() for f_id in frame_ids]\n\n        obj_class = self._get_class(seq_id)\n\n        object_meta = OrderedDict(\n            {\n                \"object_class_name\": obj_class,\n                \"motion_class\": None,\n                \"major_class\": None,\n                \"root_class\": None,\n                \"motion_adverb\": None,\n            }\n        )\n\n        return frame_list, anno_frames, object_meta\n"
  },
  {
    "path": "EgoTracks/tracking/dataset/transforms.py",
    "content": "import random\n\nimport cv2 as cv\nimport numpy as np\nimport torch\nimport torchvision.transforms.functional as tvisf\n\n\nclass Transform:\n    \"\"\"A set of transformations, used for e.g. data augmentation.\n    Args of constructor:\n        transforms: An arbitrary number of transformations, derived from the TransformBase class.\n                    They are applied in the order they are given.\n\n    The Transform object can jointly transform images, bounding boxes and segmentation masks.\n    This is done by calling the object with the following key-word arguments (all are optional).\n\n    The following arguments are inputs to be transformed. They are either supplied as a single instance, or a list of instances.\n        image  -  Image\n        coords  -  2xN dimensional Tensor of 2D image coordinates [y, x]\n        bbox  -  Bounding box on the form [x, y, w, h]\n        mask  -  Segmentation mask with discrete classes\n\n    The following parameters can be supplied with calling the transform object:\n        joint [Bool]  -  If True then transform all images/coords/bbox/mask in the list jointly using the same transformation.\n                         Otherwise each tuple (images, coords, bbox, mask) will be transformed independently using\n                         different random rolls. Default: True.\n        new_roll [Bool]  -  If False, then no new random roll is performed, and the saved result from the previous roll\n                            is used instead. Default: True.\n\n    Check the DiMPProcessing class for examples.\n    \"\"\"\n\n    def __init__(self, *transforms):\n        if len(transforms) == 1 and isinstance(transforms[0], (list, tuple)):\n            transforms = transforms[0]\n        self.transforms = transforms\n        self._valid_inputs = [\"image\", \"coords\", \"bbox\", \"mask\", \"att\"]\n        self._valid_args = [\"joint\", \"new_roll\"]\n        self._valid_all = self._valid_inputs + self._valid_args\n\n    def __call__(self, **inputs):\n        var_names = [k for k in inputs.keys() if k in self._valid_inputs]\n        for v in inputs.keys():\n            if v not in self._valid_all:\n                raise ValueError(\n                    'Incorrect input \"{}\" to transform. Only supports inputs {} and arguments {}.'.format(\n                        v, self._valid_inputs, self._valid_args\n                    )\n                )\n\n        joint_mode = inputs.get(\"joint\", True)\n        new_roll = inputs.get(\"new_roll\", True)\n\n        if not joint_mode:\n            out = zip(*[self(**inp) for inp in self._split_inputs(inputs)])\n            return tuple(list(o) for o in out)\n\n        out = {k: v for k, v in inputs.items() if k in self._valid_inputs}\n\n        for t in self.transforms:\n            out = t(**out, joint=joint_mode, new_roll=new_roll)\n        if len(var_names) == 1:\n            return out[var_names[0]]\n        # Make sure order is correct\n        return tuple(out[v] for v in var_names)\n\n    def _split_inputs(self, inputs):\n        var_names = [k for k in inputs.keys() if k in self._valid_inputs]\n        split_inputs = [\n            {k: v for k, v in zip(var_names, vals)}\n            for vals in zip(*[inputs[vn] for vn in var_names])\n        ]\n        for arg_name, arg_val in filter(\n            lambda it: it[0] != \"joint\" and it[0] in self._valid_args, inputs.items()\n        ):\n            if isinstance(arg_val, list):\n                for inp, av in zip(split_inputs, arg_val):\n                    inp[arg_name] = av\n            else:\n                for inp in split_inputs:\n                    inp[arg_name] = arg_val\n        return split_inputs\n\n    def __repr__(self):\n        format_string = self.__class__.__name__ + \"(\"\n        for t in self.transforms:\n            format_string += \"\\n\"\n            format_string += \"    {0}\".format(t)\n        format_string += \"\\n)\"\n        return format_string\n\n\nclass TransformBase:\n    \"\"\"Base class for transformation objects. See the Transform class for details.\"\"\"\n\n    def __init__(self):\n        \"\"\"2020.12.24 Add 'att' to valid inputs\"\"\"\n        self._valid_inputs = [\"image\", \"coords\", \"bbox\", \"mask\", \"att\"]\n        self._valid_args = [\"new_roll\"]\n        self._valid_all = self._valid_inputs + self._valid_args\n        self._rand_params = None\n\n    def __call__(self, **inputs):\n        # Split input\n        input_vars = {k: v for k, v in inputs.items() if k in self._valid_inputs}\n        input_args = {k: v for k, v in inputs.items() if k in self._valid_args}\n\n        # Roll random parameters for the transform\n        if input_args.get(\"new_roll\", True):\n            rand_params = self.roll()\n            if rand_params is None:\n                rand_params = ()\n            elif not isinstance(rand_params, tuple):\n                rand_params = (rand_params,)\n            self._rand_params = rand_params\n\n        outputs = dict()\n        for var_name, var in input_vars.items():\n            if var is not None:\n                transform_func = getattr(self, \"transform_\" + var_name)\n                if var_name in [\"coords\", \"bbox\"]:\n                    params = (self._get_image_size(input_vars),) + self._rand_params\n                else:\n                    params = self._rand_params\n                if isinstance(var, (list, tuple)):\n                    outputs[var_name] = [transform_func(x, *params) for x in var]\n                else:\n                    outputs[var_name] = transform_func(var, *params)\n        return outputs\n\n    def _get_image_size(self, inputs):\n        im = None\n        for var_name in [\"image\", \"mask\"]:\n            if inputs.get(var_name) is not None:\n                im = inputs[var_name]\n                break\n        if im is None:\n            return None\n        if isinstance(im, (list, tuple)):\n            im = im[0]\n        if isinstance(im, np.ndarray):\n            return im.shape[:2]\n        if torch.is_tensor(im):\n            return (im.shape[-2], im.shape[-1])\n        raise Exception(\"Unknown image type\")\n\n    def roll(self):\n        return None\n\n    def transform_image(self, image, *rand_params):\n        \"\"\"Must be deterministic\"\"\"\n        return image\n\n    def transform_coords(self, coords, image_shape, *rand_params):\n        \"\"\"Must be deterministic\"\"\"\n        return coords\n\n    def transform_bbox(self, bbox, image_shape, *rand_params):\n        \"\"\"Assumes [x, y, w, h]\"\"\"\n        # Check if not overloaded\n        if self.transform_coords.__code__ == TransformBase.transform_coords.__code__:\n            return bbox\n\n        coord = bbox.clone().view(-1, 2).t().flip(0)\n\n        x1 = coord[1, 0]\n        x2 = coord[1, 0] + coord[1, 1]\n\n        y1 = coord[0, 0]\n        y2 = coord[0, 0] + coord[0, 1]\n\n        coord_all = torch.tensor([[y1, y1, y2, y2], [x1, x2, x2, x1]])\n\n        coord_transf = self.transform_coords(coord_all, image_shape, *rand_params).flip(\n            0\n        )\n        tl = torch.min(coord_transf, dim=1)[0]\n        sz = torch.max(coord_transf, dim=1)[0] - tl\n        bbox_out = torch.cat((tl, sz), dim=-1).reshape(bbox.shape)\n        return bbox_out\n\n    def transform_mask(self, mask, *rand_params):\n        \"\"\"Must be deterministic\"\"\"\n        return mask\n\n    def transform_att(self, att, *rand_params):\n        \"\"\"2020.12.24 Added to deal with attention masks\"\"\"\n        return att\n\n\nclass ToTensor(TransformBase):\n    \"\"\"Convert to a Tensor\"\"\"\n\n    def transform_image(self, image):\n        # handle numpy array\n        if image.ndim == 2:\n            image = image[:, :, None]\n\n        image = torch.from_numpy(image.transpose((2, 0, 1)))\n        # backward compatibility\n        if isinstance(image, torch.ByteTensor):\n            return image.float().div(255)\n        else:\n            return image\n\n    def transfrom_mask(self, mask):\n        if isinstance(mask, np.ndarray):\n            return torch.from_numpy(mask)\n\n    def transform_att(self, att):\n        if isinstance(att, np.ndarray):\n            return torch.from_numpy(att).to(torch.bool)\n        elif isinstance(att, torch.Tensor):\n            return att.to(torch.bool)\n        else:\n            raise ValueError(\"dtype must be np.ndarray or torch.Tensor\")\n\n\nclass ToTensorAndJitter(TransformBase):\n    \"\"\"Convert to a Tensor and jitter brightness\"\"\"\n\n    def __init__(self, brightness_jitter=0.0, normalize=True):\n        super().__init__()\n        self.brightness_jitter = brightness_jitter\n        self.normalize = normalize\n\n    def roll(self):\n        return np.random.uniform(\n            max(0, 1 - self.brightness_jitter), 1 + self.brightness_jitter\n        )\n\n    def transform_image(self, image, brightness_factor):\n        # handle numpy array\n        image = torch.from_numpy(image.transpose((2, 0, 1)))\n\n        # backward compatibility\n        if self.normalize:\n            return image.float().mul(brightness_factor / 255.0).clamp(0.0, 1.0)\n        else:\n            return image.float().mul(brightness_factor).clamp(0.0, 255.0)\n\n    def transform_mask(self, mask, brightness_factor):\n        if isinstance(mask, np.ndarray):\n            return torch.from_numpy(mask)\n        else:\n            return mask\n\n    def transform_att(self, att, brightness_factor):\n        if isinstance(att, np.ndarray):\n            return torch.from_numpy(att).to(torch.bool)\n        elif isinstance(att, torch.Tensor):\n            return att.to(torch.bool)\n        else:\n            raise ValueError(\"dtype must be np.ndarray or torch.Tensor\")\n\n\nclass Normalize(TransformBase):\n    \"\"\"Normalize image\"\"\"\n\n    def __init__(self, mean, std, inplace=False):\n        super().__init__()\n        self.mean = mean\n        self.std = std\n        self.inplace = inplace\n\n    def transform_image(self, image):\n        return tvisf.normalize(image, self.mean, self.std, self.inplace)\n\n\nclass ToGrayscale(TransformBase):\n    \"\"\"Converts image to grayscale with probability\"\"\"\n\n    def __init__(self, probability=0.5):\n        super().__init__()\n        self.probability = probability\n        self.color_weights = np.array([0.2989, 0.5870, 0.1140], dtype=np.float32)\n\n    def roll(self):\n        return random.random() < self.probability\n\n    def transform_image(self, image, do_grayscale):\n        if do_grayscale:\n            if torch.is_tensor(image):\n                raise NotImplementedError(\"Implement torch variant.\")\n            img_gray = cv.cvtColor(image, cv.COLOR_RGB2GRAY)\n            return np.stack([img_gray, img_gray, img_gray], axis=2)\n            # return np.repeat(np.sum(img * self.color_weights, axis=2, keepdims=True).astype(np.uint8), 3, axis=2)\n        return image\n\n\nclass ToBGR(TransformBase):\n    \"\"\"Converts image to BGR\"\"\"\n\n    def transform_image(self, image):\n        if torch.is_tensor(image):\n            raise NotImplementedError(\"Implement torch variant.\")\n        img_bgr = cv.cvtColor(image, cv.COLOR_RGB2BGR)\n        return img_bgr\n\n\nclass RandomHorizontalFlip(TransformBase):\n    \"\"\"Horizontally flip image randomly with a probability p.\"\"\"\n\n    def __init__(self, probability=0.5):\n        super().__init__()\n        self.probability = probability\n\n    def roll(self):\n        return random.random() < self.probability\n\n    def transform_image(self, image, do_flip):\n        if do_flip:\n            if torch.is_tensor(image):\n                return image.flip((2,))\n            return np.fliplr(image).copy()\n        return image\n\n    def transform_coords(self, coords, image_shape, do_flip):\n        if do_flip:\n            coords_flip = coords.clone()\n            coords_flip[1, :] = (image_shape[1] - 1) - coords[1, :]\n            return coords_flip\n        return coords\n\n    def transform_mask(self, mask, do_flip):\n        if do_flip:\n            if torch.is_tensor(mask):\n                return mask.flip((-1,))\n            return np.fliplr(mask).copy()\n        return mask\n\n    def transform_att(self, att, do_flip):\n        if do_flip:\n            if torch.is_tensor(att):\n                return att.flip((-1,))\n            return np.fliplr(att).copy()\n        return att\n\n\nclass RandomHorizontalFlip_Norm(RandomHorizontalFlip):\n    \"\"\"Horizontally flip image randomly with a probability p.\n    The difference is that the coord is normalized to [0,1]\"\"\"\n\n    def __init__(self, probability=0.5):\n        super().__init__()\n        self.probability = probability\n\n    def transform_coords(self, coords, image_shape, do_flip):\n        \"\"\"we should use 1 rather than image_shape\"\"\"\n        if do_flip:\n            coords_flip = coords.clone()\n            coords_flip[1, :] = 1 - coords[1, :]\n            return coords_flip\n        return coords\n"
  },
  {
    "path": "EgoTracks/tracking/metrics/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/metrics/miou.py",
    "content": "import numpy as np\nfrom tracking.utils.bbox_helper import IoU, xywh_2_rect\n\n\ndef compute_overlaps(y_pred, y_gt):\n    overlaps = []\n    for p, g in zip(y_pred, y_gt):\n        if p is None or g is None:\n            overlap = 0\n        else:\n            p = xywh_2_rect(p)\n            g = xywh_2_rect(g)\n            overlap = IoU(p, g)\n        overlaps.append(overlap)\n\n    return overlaps\n\n\ndef mIoU(y_pred, y_gt):\n    overlaps = compute_overlaps(y_pred, y_gt)\n\n    return np.mean(overlaps)\n"
  },
  {
    "path": "EgoTracks/tracking/models/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/models/multiple_object_tracker.py",
    "content": "from abc import abstractmethod\n\nfrom tracking.models.tracker import Tracker\n\n\nclass MultipleObjectTracker(Tracker):\n    \"\"\"\n    Define a base class for multiple object tracker (MOT).\n\n    TODO: we have not looked much into MOT. Create a placeholder for future MOT models.\n    \"\"\"\n\n    def __init__(self, model):\n        super().__init__(model)\n\n    @abstractmethod\n    def inference(self, video, meta_data):\n        pass\n\n    @abstractmethod\n    def run_model(self, img):\n        pass\n\n    @abstractmethod\n    def update_tracker(self, res):\n        pass\n\n    @abstractmethod\n    def init_tracker(self, img, meta):\n        pass\n"
  },
  {
    "path": "EgoTracks/tracking/models/single_object_tracker.py",
    "content": "import logging\nimport time\nfrom abc import abstractmethod\nfrom typing import Dict\n\nimport av\nimport torch\nfrom tqdm import tqdm\nfrom tracking.dataset.eval_datasets.base_dataset import Sequence\nfrom tracking.models.template import InstanceRegistration\nfrom tracking.models.tracker import Tracker\nfrom tracking.utils.utils import opencv_loader\n\n\nclass SingleObjectTracker(Tracker):\n    \"\"\"\n    Define a base class for single object tracker (SOT).\n\n    In SOT, the bounding box of the target object is given in the first frame.\n    \"\"\"\n\n    def __init__(self, model, verbose: bool = False):\n        super().__init__(model, verbose)\n        self.instance_templates = InstanceRegistration()\n\n        # By default, SOT starts with search local region\n        self.is_search_local = True\n        self.target_position = None\n        self.target_size = None\n\n    def inference_video_handler(\n        self, video: av.container.Container, meta_data: Dict = None\n    ) -> Dict:\n        raise NotImplementedError\n\n    def inference_sequence(self, video: Sequence, meta_data: Dict = None) -> Dict:\n        \"\"\"\n        Run tracking model on a video sequence. Since some dataset stores video as individual frames and each sequence\n        can be quite large, it is not possible to pre-fetch all the data into memory (especially in multi-processing). So\n        we fetch those frames in an online fashion.\n\n        Args:\n            video: a Sequence contains frames path for the sequence\n            meta_data: contains any other information regarding the specific video.\n                It should contain:\n                \"target_bbox\", bounding box [x, y, w, h]\n                \"target_id\", target_id is a string and identifies a unique instance\n                \"frame_numbers\", corresponds to the frame number of each input image in the original video\n        Returns:\n            dict: contains tracking results, where key is the object_id. An example of the return result\n                should look like:\n                {\n                    \"object_id_1\":{\n                        \"label\": str,\n                        \"bboxes\": [\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            ...\n                        ]\n                }\n        \"\"\"\n        self.model.eval()\n\n        target_bbox = meta_data[\"target_bbox\"]\n        target_id = meta_data[\"target_id\"]\n        frame_numbers = meta_data[\"frame_numbers\"]\n        result = {target_id: {\"label\": target_id, \"bboxes\": []}}\n        for i in tqdm(range(len(frame_numbers)), total=len(frame_numbers)):\n            img_path = video.frames[frame_numbers[i]]\n            img = opencv_loader(img_path)\n            img = torch.from_numpy(img).permute(2, 0, 1).unsqueeze(0)\n            if i == 0:\n                # the first frame of the video, initilize tracker\n                self.init_tracker(img, meta_data)\n\n                result[target_id][\"bboxes\"].append(\n                    {\n                        \"bbox\": list(target_bbox),\n                        \"score\": 1,\n                        \"frame_number\": frame_numbers[i],\n                        \"type\": \"gt\",\n                    }\n                )\n                # In case not start at the frame next to the template,\n                # we may want to init the tracker from the another location\n                if \"init_location\" in meta_data:\n                    self.target_position = meta_data[\"init_location\"]\n\n                if \"init_size\" in meta_data:\n                    self.target_size = meta_data[\"init_size\"]\n            else:\n                results = self.run_model(img)\n                assert len(results) == 1, \"Only support single object tracking!\"\n                self.update_tracker(results)\n                for target_id, res in results.items():\n                    bbox = res[\"bbox\"]\n                    score = res[\"score\"]\n                    result[target_id][\"bboxes\"].append(\n                        {\n                            \"bbox\": bbox,\n                            \"score\": score,\n                            \"frame_number\": frame_numbers[i],\n                            \"type\": \"prediction\",\n                        }\n                    )\n\n        self.reset_tracker()\n        return result\n\n    def inference_img_sequence(\n        self, video: torch.Tensor, meta_data: Dict = None\n    ) -> Dict:\n        \"\"\"\n        Run tracking model on a video sequence.\n\n        Args:\n            video: a torch Tensor that contains a sequence of images, [N, 3, H, W]\n            meta_data: contains any other information regarding the specific video.\n                It should contain:\n                \"target_bbox\", bounding box [x, y, w, h]\n                \"target_id\", target_id is a string and identifies a unique instance\n                \"frame_numbers\", corresponds to the frame number of each input image in the original video\n        Returns:\n            dict: contains tracking results, where key is the object_id. An example of the return result\n                should look like:\n                {\n                    \"object_id_1\":{\n                        \"label\": str,\n                        \"bboxes\": [\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            ...\n                        ]\n                }\n        \"\"\"\n        assert \"target_bbox\" in meta_data\n        assert \"target_id\" in meta_data\n        assert \"frame_numbers\" in meta_data\n        self.model.eval()\n\n        target_bbox = meta_data[\"target_bbox\"]\n        target_id = meta_data[\"target_id\"]\n        frame_numbers = meta_data[\"frame_numbers\"]\n        result = {target_id: {\"label\": target_id, \"bboxes\": []}}\n        # _, _, h, w = video.shape\n        for i in range(len(video)):\n            if isinstance(video, torch.Tensor):\n                img = video[i].unsqueeze(0)\n            else:\n                img = video[i]\n            if i == 0:\n                # the first frame of the video, initilize tracker\n                t = time.time()\n                self.init_tracker(img, meta_data)\n                if self.verbose:\n                    logging.error(f\"Init tracker: {time.time() - t}\")\n\n                result[target_id][\"bboxes\"].append(\n                    {\n                        \"bbox\": list(target_bbox),\n                        \"score\": 1,\n                        \"frame_number\": frame_numbers[i],\n                        \"type\": \"gt\",\n                    }\n                )\n            else:\n                results = self.run_model(img)\n                assert len(results) == 1, \"Only support single object tracking!\"\n                self.update_tracker(results)\n                for target_id, res in results.items():\n                    bbox = res[\"bbox\"]\n                    score = res[\"score\"]\n                    result[target_id][\"bboxes\"].append(\n                        {\n                            \"bbox\": bbox,\n                            \"score\": score,\n                            \"frame_number\": frame_numbers[i],\n                            \"type\": \"prediction\",\n                        }\n                    )\n\n        self.reset_tracker()\n        return result\n\n    @abstractmethod\n    def run_model(self, image: torch.Tensor) -> Dict:\n        \"\"\"\n        Most tracking models run frame by frame. This function runs a single forward of the tracking model.\n\n        Args:\n            image: this is one image where we run one step of tracking, [N, 3, H, W]\n                N is the batchsize. In inference mode, N should equal to 1.\n        Returns:\n            dict: a dictionary holding tracking results for one image.\n                The structure of the dict is not listed as it may be specific to the model.\n                Common result contains \"bbox\" and \"score\"\n        \"\"\"\n        pass\n\n    @abstractmethod\n    def update_tracker(self, result: Dict) -> None:\n        \"\"\"\n        This function is used to update tracking information as the model runs through the video.\n        In SOT, the most important update is to update the local search window.\n\n        Args:\n            results: a dictionary holding tracking results of for one image. It is designed to directly\n                use the output from self.run_model(image).\n        Returns:\n            None\n        \"\"\"\n        pass\n\n    @abstractmethod\n    def init_tracker(self, image: torch.Tensor, meta: Dict) -> None:\n        \"\"\"\n        This function is used to initilize SOT with first frame annotation\n\n        Args:\n            image: this is one image where we used to initilize the tracker, [1, 3, H, W]\n            meta: a dictionary contains information of target objects in this image.\n        Returns:\n            None\n        \"\"\"\n        pass\n\n    def reset_tracker(self) -> None:\n        \"\"\"\n        To reset the tracker after done running on one video.\n        Clear any intermediate variables to get a clean setup for next video.\n        \"\"\"\n        self.instance_templates = InstanceRegistration()\n        self.target_position = None\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/backbone.py",
    "content": "\"\"\"\nBackbone modules.\n\"\"\"\nimport os\nfrom typing import Dict, List\n\nimport torch\nimport torch.nn.functional as F\nfrom torch import nn\nfrom torchvision.models._utils import IntermediateLayerGetter\nfrom tracking.models.stark_tracker import resnet as resnet_module\nfrom tracking.models.stark_tracker.position_encoding import build_position_encoding\nfrom tracking.models.stark_tracker.utils.misc import is_main_process, NestedTensor\n\n\nclass FrozenBatchNorm2d(torch.nn.Module):\n    \"\"\"\n    BatchNorm2d where the batch statistics and the affine parameters are fixed.\n    Copy-paste from torchvision.misc.ops with added eps before rqsrt,\n    without which any other models than torchvision.models.resnet[18,34,50,101]\n    produce nans.\n    \"\"\"\n\n    def __init__(self, n):\n        super(FrozenBatchNorm2d, self).__init__()\n        self.register_buffer(\"weight\", torch.ones(n))\n        self.register_buffer(\"bias\", torch.zeros(n))\n        self.register_buffer(\"running_mean\", torch.zeros(n))\n        self.register_buffer(\"running_var\", torch.ones(n))\n\n    def _load_from_state_dict(\n        self,\n        state_dict,\n        prefix,\n        local_metadata,\n        strict,\n        missing_keys,\n        unexpected_keys,\n        error_msgs,\n    ):\n        num_batches_tracked_key = prefix + \"num_batches_tracked\"\n        if num_batches_tracked_key in state_dict:\n            del state_dict[num_batches_tracked_key]\n\n        super(FrozenBatchNorm2d, self)._load_from_state_dict(\n            state_dict,\n            prefix,\n            local_metadata,\n            strict,\n            missing_keys,\n            unexpected_keys,\n            error_msgs,\n        )\n\n    def forward(self, x):\n        # move reshapes to the beginning\n        # to make it fuser-friendly\n        w = self.weight.reshape(1, -1, 1, 1)\n        b = self.bias.reshape(1, -1, 1, 1)\n        rv = self.running_var.reshape(1, -1, 1, 1)\n        rm = self.running_mean.reshape(1, -1, 1, 1)\n        eps = 1e-5\n        scale = w * (rv + eps).rsqrt()  # rsqrt(x): 1/sqrt(x), r: reciprocal\n        bias = b - rm * scale\n        return x * scale + bias\n\n\nclass BackboneBase(nn.Module):\n    def __init__(\n        self,\n        backbone: nn.Module,\n        train_backbone: bool,\n        num_channels: int,\n        return_interm_layers: bool,\n        net_type=\"resnet\",\n    ):\n        super().__init__()\n        for name, parameter in backbone.named_parameters():\n            if not train_backbone or \"layer2\" not in name and \"layer3\" not in name:\n                parameter.requires_grad_(\n                    False\n                )  # here should allow users to specify which layers to freeze !\n                # print('freeze %s'%name)\n        if return_interm_layers:\n            if net_type == \"resnet\":\n                return_layers = {\n                    \"layer1\": \"0\",\n                    \"layer2\": \"1\",\n                    \"layer3\": \"2\",\n                }  # stride = 4, 8, 16\n            elif net_type == \"repvgg\":\n                return_layers = {\"stage1\": \"0\", \"stage2\": \"1\", \"stage3\": \"2\"}\n            else:\n                raise ValueError()\n        else:\n            if net_type == \"resnet\":\n                return_layers = {\"layer3\": \"0\"}  # stride = 16\n            elif net_type == \"repvgg\":\n                return_layers = {\"stage3\": \"0\"}  # stride = 16\n            else:\n                raise ValueError()\n        self.body = IntermediateLayerGetter(\n            backbone, return_layers=return_layers\n        )  # method in torchvision\n        self.num_channels = num_channels\n\n    def forward(self, tensor_list: NestedTensor):\n        xs = self.body(tensor_list.tensors)\n        out: Dict[str, NestedTensor] = {}\n        for name, x in xs.items():\n            m = tensor_list.mask\n            assert m is not None\n            mask = F.interpolate(m[None].float(), size=x.shape[-2:]).to(torch.bool)[0]\n            out[name] = NestedTensor(x, mask)\n        return out\n\n\nclass Backbone(BackboneBase):\n    \"\"\"ResNet backbone with frozen BatchNorm.\"\"\"\n\n    def __init__(\n        self,\n        name: str,\n        train_backbone: bool,\n        return_interm_layers: bool,\n        dilation: bool,\n        freeze_bn: bool,\n        ckpt_path=None,\n    ):\n        if \"resnet\" in name:\n            norm_layer = FrozenBatchNorm2d if freeze_bn else nn.BatchNorm2d\n            # here is different from the original DETR because we use feature from block3\n            backbone = getattr(resnet_module, name)(\n                replace_stride_with_dilation=[False, dilation, False],\n                pretrained=is_main_process(),\n                norm_layer=norm_layer,\n                last_layer=\"layer3\",\n            )\n            num_channels = 256 if name in (\"resnet18\", \"resnet34\") else 1024\n            net_type = \"resnet\"\n        else:\n            raise ValueError()\n        super().__init__(\n            backbone,\n            train_backbone,\n            num_channels,\n            return_interm_layers,\n            net_type=net_type,\n        )\n\n\nclass Joiner(nn.Sequential):\n    def __init__(self, backbone, position_embedding):\n        super().__init__(backbone, position_embedding)\n\n    def forward(self, tensor_list: NestedTensor, mode=None):\n        xs = self[0](tensor_list)\n        out: List[NestedTensor] = []\n        pos = []\n        for _name, x in xs.items():\n            out.append(x)\n            # position encoding\n            pos.append(self[1](x).to(x.tensors.dtype))\n\n        return out, pos\n\n\ndef build_backbone(cfg):\n    position_embedding = build_position_encoding(cfg)\n    train_backbone = cfg.TRAIN.BACKBONE_MULTIPLIER > 0\n    return_interm_layers = cfg.MODEL.PREDICT_MASK\n    if cfg.MODEL.BACKBONE.TYPE == \"RepVGG-A0\":\n        try:\n            ckpt_path = os.path.join(cfg.ckpt_dir, \"RepVGG-A0-train.pth\")\n        except Exception:\n            ckpt_path = None\n    else:\n        ckpt_path = None\n    backbone = Backbone(\n        cfg.MODEL.BACKBONE.TYPE,\n        train_backbone,\n        return_interm_layers,\n        cfg.MODEL.BACKBONE.DILATION,\n        cfg.TRAIN.FREEZE_BACKBONE_BN,\n        ckpt_path,\n    )\n    model = Joiner(backbone, position_embedding)\n    model.num_channels = backbone.num_channels\n    return model\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/config/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/config/stark_st2/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/config/stark_st2/config.py",
    "content": "from dataclasses import dataclass, field\nfrom typing import List\n\nimport yaml\nfrom fvcore.common.config import CfgNode\n\n\n\"\"\"\nAdd default config for STARK-ST Stage2.\n\"\"\"\ncfg = CfgNode()\n\n# MODEL\ncfg.MODEL = CfgNode()\ncfg.MODEL.HEAD_TYPE = \"CORNER\"\ncfg.MODEL.NLAYER_HEAD = 3\ncfg.MODEL.HIDDEN_DIM = 256\ncfg.MODEL.NUM_OBJECT_QUERIES = 1\ncfg.MODEL.POSITION_EMBEDDING = \"sine\"  # sine or learned\ncfg.MODEL.PREDICT_MASK = False\n# MODEL.BACKBONE\ncfg.MODEL.BACKBONE = CfgNode()\ncfg.MODEL.BACKBONE.TYPE = \"resnet50\"  # resnet50, resnext101_32x8d\ncfg.MODEL.BACKBONE.OUTPUT_LAYERS = [\"layer3\"]\ncfg.MODEL.BACKBONE.STRIDE = 16\ncfg.MODEL.BACKBONE.DILATION = False\n# MODEL.TRANSFORMER\ncfg.MODEL.TRANSFORMER = CfgNode()\ncfg.MODEL.TRANSFORMER.NHEADS = 8\ncfg.MODEL.TRANSFORMER.DROPOUT = 0.1\ncfg.MODEL.TRANSFORMER.DIM_FEEDFORWARD = 2048\ncfg.MODEL.TRANSFORMER.ENC_LAYERS = 6\ncfg.MODEL.TRANSFORMER.DEC_LAYERS = 6\ncfg.MODEL.TRANSFORMER.PRE_NORM = False\ncfg.MODEL.TRANSFORMER.DIVIDE_NORM = False\n\n# TRAIN\n# General TRAIN config\nTRAIN = CfgNode()\nTRAIN.TRAIN_CLS = False\nTRAIN.LR = 0.0001\nTRAIN.WEIGHT_DECAY = 0.0001\nTRAIN.EPOCH = 50\nTRAIN.LR_DROP_EPOCH = 40\nTRAIN.BATCH_SIZE = 16\nTRAIN.NUM_WORKER = 8\nTRAIN.OPTIMIZER = \"ADAMW\"\nTRAIN.BACKBONE_MULTIPLIER = 0.1\nTRAIN.GIOU_WEIGHT = 2.0\nTRAIN.L1_WEIGHT = 5.0\nTRAIN.DEEP_SUPERVISION = False\nTRAIN.FREEZE_BACKBONE_BN = True\nTRAIN.FREEZE_LAYERS = [\"conv1\", \"layer1\"]\nTRAIN.PRINT_INTERVAL = 50\nTRAIN.VAL_EPOCH_INTERVAL = 20\nTRAIN.GRAD_CLIP_NORM = 0.1\nTRAIN.CHECKPOINT_PERIOD = 100\n# TRAIN.SCHEDULER\nTRAIN.SCHEDULER = CfgNode()\nTRAIN.SCHEDULER.TYPE = \"step\"\nTRAIN.SCHEDULER.DECAY_RATE = 0.1\n\ncfg.TRAIN_STAGE_1 = TRAIN.clone()\ncfg.TRAIN_STAGE_2 = TRAIN.clone()\n\ncfg.TRAIN_STAGE_2.EPOCH = 10\ncfg.TRAIN_STAGE_2.TRAIN_CLS = True\n\n# DATA\ncfg.DATA = CfgNode()\ncfg.DATA.SAMPLER_MODE = \"trident_pro\"  # sampling methods\ncfg.DATA.MEAN = [0.485, 0.456, 0.406]\ncfg.DATA.STD = [0.229, 0.224, 0.225]\ncfg.DATA.MAX_SAMPLE_INTERVAL = [200]\n# DATA.TRAIN\ncfg.DATA.TRAIN = CfgNode()\ncfg.DATA.TRAIN.DATASETS_NAME = [\"LASOT\", \"GOT10K_vottrain\", \"COCO\"]\ncfg.DATA.TRAIN.DATASETS_RATIO = [1, 1, 1]\ncfg.DATA.TRAIN.SAMPLE_PER_EPOCH = 60000\n# DATA.VAL\ncfg.DATA.VAL = CfgNode()\ncfg.DATA.VAL.DATASETS_NAME = [\"GOT10K_votval\"]\ncfg.DATA.VAL.DATASETS_RATIO = [1]\ncfg.DATA.VAL.SAMPLE_PER_EPOCH = 10000\n# DATA.SEARCH\ncfg.DATA.SEARCH = CfgNode()\ncfg.DATA.SEARCH.NUMBER = 1  # number of search frames for multiple frames training\ncfg.DATA.SEARCH.SIZE = 320\ncfg.DATA.SEARCH.FACTOR = 5.0\ncfg.DATA.SEARCH.CENTER_JITTER = 4.5\ncfg.DATA.SEARCH.SCALE_JITTER = 0.5\n# DATA.TEMPLATE\ncfg.DATA.TEMPLATE = CfgNode()\ncfg.DATA.TEMPLATE.NUMBER = 2\ncfg.DATA.TEMPLATE.SIZE = 128\ncfg.DATA.TEMPLATE.FACTOR = 2.0\ncfg.DATA.TEMPLATE.CENTER_JITTER = 0\ncfg.DATA.TEMPLATE.SCALE_JITTER = 0\n\n# TEST\ncfg.TEST = CfgNode()\ncfg.TEST.TEMPLATE_FACTOR = 2.0\ncfg.TEST.TEMPLATE_SIZE = 128\ncfg.TEST.SEARCH_FACTOR = 5.0\ncfg.TEST.SEARCH_SIZE = 320\ncfg.TEST.EPOCH = 50\ncfg.TEST.UPDATE_INTERVALS = CfgNode()\ncfg.TEST.UPDATE_INTERVALS.LASOT = [200]\ncfg.TEST.UPDATE_INTERVALS.GOT10K_TEST = [200]\ncfg.TEST.UPDATE_INTERVALS.TRACKINGNET = [25]\ncfg.TEST.UPDATE_INTERVALS.VOT20 = [10]\ncfg.TEST.UPDATE_INTERVALS.VOT20LT = [200]\ncfg.TEST.UPDATE_INTERVALS.EGO4D = [1]\n\n\n@dataclass\nclass _DATA_TEMPLATE:\n    NUMBER = 2\n    SIZE = 128\n    FACTOR = 2.0\n    CENTER_JITTER = 0\n    SCALE_JITTER = 0\n\n\n@dataclass\nclass _DATA_SEARCH:\n    NUMBER = 1  # number of search frames for multiple frames training\n    SIZE = 320\n    FACTOR = 5.0\n    CENTER_JITTER = 4.5\n    SCALE_JITTER = 0.5\n\n\n@dataclass\nclass _DATA_VAL:\n    DATASETS_NAME: List[str] = field(default_factory=lambda: [\"GOT10K_votval\"])\n    DATASETS_RATIO: List[float] = field(default_factory=lambda: [1])\n    SAMPLE_PER_EPOCH: int = 10000\n\n\n@dataclass\nclass _DATA_TRAIN:\n    DATASETS_NAME: List[str] = field(\n        default_factory=lambda: [\"LASOT\", \"GOT10K_vottrain\", \"COCO17\"]\n    )\n    DATASETS_RATIO: List[float] = field(default_factory=lambda: [1, 1, 1])\n    SAMPLE_PER_EPOCH: int = 60000\n\n\n@dataclass\nclass _DATA:\n    SAMPLER_MODE = \"trident_pro\"  # sampling methods\n    MEAN: List[float] = field(default_factory=lambda: [0.485, 0.456, 0.406])\n    STD: List[float] = field(default_factory=lambda: [0.229, 0.224, 0.225])\n    MAX_SAMPLE_INTERVAL: List[int] = field(default_factory=lambda: [200])\n    COCO_DATA_DIR = \"manifold://fair_vision_data/tree/\"\n    # COCO_DATA_DIR = \"manifold://mscoco/tree/coco2017\"\n    LASOT_DATA_DIR: str = \"manifold://fai4ar/tree/datasets/LaSOTBenchmark\"\n    TRACKINGNET_DATA_DIR: str = \"manifold://tracking/tree/data/trackingnet\"\n    CACHED_TRACKINGNET_SEQUENCE_LIST_DIR: str = (\n        \"manifold://tracking/tree/data/trackingnet/cache\"\n    )\n    GOT10K_DATA_DIR: str = \"manifold://tracking/tree/data/got10k\"\n    CACHED_GOT10K_META_INFO_DIR: str = \"manifold://tracking/tree/data/got10k/cache\"\n    EGO4DVQ_DATA_DIR: str = \"manifold://tracking/tree/data/ego4d/vq_frames\"\n    EGO4DVQ_ANNOTATION_PATH: str = (\n        \"manifold://tracking/tree/ego4d/v1/annotations/vq_train.json\"\n    )\n    TRAIN: _DATA_TRAIN = _DATA_TRAIN()\n    VAL: _DATA_VAL = _DATA_VAL()\n    SEARCH: _DATA_SEARCH = _DATA_SEARCH()\n    TEMPLATE: _DATA_TEMPLATE = _DATA_TEMPLATE()\n    DATA_FRACTION = None\n\n\n@dataclass\nclass _SCHEDULER:\n    TYPE: str = \"step\"\n    DECAY_RATE: float = 0.1\n\n\n@dataclass\nclass _TRAIN:\n    TRAIN_CLS: bool = False\n    LR: float = 0.0001\n    WEIGHT_DECAY: float = 0.0001\n    EPOCH: int = 500\n    LR_DROP_EPOCH: int = 400\n    BATCH_SIZE: int = 16\n    NUM_WORKER: int = 8\n    OPTIMIZER: str = \"ADAMW\"\n    BACKBONE_MULTIPLIER: float = 0.1\n    GIOU_WEIGHT: float = 2.0\n    L1_WEIGHT: float = 5.0\n    DEEP_SUPERVISION: bool = False\n    FREEZE_BACKBONE_BN: bool = True\n    FREEZE_LAYERS: List[str] = field(default_factory=lambda: [\"conv1\", \"layer1\"])\n    PRINT_INTERVAL: int = 50\n    VAL_EPOCH_INTERVAL: int = 20\n    GRAD_CLIP_NORM: float = 0.1\n    CHECKPOINT_PERIOD: int = 100\n    RESUME: bool = False\n    FINETUNE_CHECKPOINT: str = \"\"\n    # TRAIN.SCHEDULER\n    SCHEDULER: _SCHEDULER = _SCHEDULER()\n\n\n@dataclass\nclass _MODEL_BACKBONE:\n    TYPE = \"resnet50\"  # resnet50, resnext101_32x8d\n    OUTPUT_LAYERS: List[str] = field(default_factory=lambda: [\"layer3\"])\n    STRIDE = 16\n    DILATION = False\n\n\n@dataclass\nclass _MODEL_TRANSFORMER:\n    NHEADS = 8\n    DROPOUT = 0.1\n    DIM_FEEDFORWARD = 2048\n    ENC_LAYERS = 6\n    DEC_LAYERS = 6\n    PRE_NORM = False\n    DIVIDE_NORM = False\n\n\n@dataclass\nclass _MODEL:\n    HEAD_TYPE = \"CORNER\"\n    NLAYER_HEAD = 3\n    HIDDEN_DIM = 256\n    NUM_OBJECT_QUERIES = 1\n    POSITION_EMBEDDING = \"sine\"  # sine or learned\n    PREDICT_MASK = False\n    BACKBONE: _MODEL_BACKBONE = _MODEL_BACKBONE()\n    TRANSFORMER: _MODEL_TRANSFORMER = _MODEL_TRANSFORMER()\n\n\n@dataclass\nclass _UPDATE_INTERVALS:\n    LASOT: List = field(default_factory=lambda: [200])\n    GOT10K_TEST: List = field(default_factory=lambda: [200])\n    TRACKINGNET: List = field(default_factory=lambda: [25])\n    VOT20: List = field(default_factory=lambda: [10])\n    VOT20LT: List = field(default_factory=lambda: [200])\n    EGO4D: List = field(default_factory=lambda: [1])\n\n\n@dataclass\nclass _TEST:\n    TEMPLATE_FACTOR: float = 2.0\n    TEMPLATE_SIZE: int = 128\n    SEARCH_FACTOR: float = 5.0\n    SEARCH_SIZE: int = 320\n    EPOCH: int = 50\n    TEST_BATCHSIZE: int = 8\n    UPDATE_INTERVALS: _UPDATE_INTERVALS = _UPDATE_INTERVALS()\n\n\n@dataclass\nclass STARKParams:\n    TRAIN: _TRAIN = _TRAIN()\n    DATA: _DATA = _DATA()\n    TEST: _TEST = _TEST()\n    MODEL: _MODEL = _MODEL()\n\n\ndef _edict2dict(dest_dict, src_edict):\n    if isinstance(dest_dict, dict) and isinstance(src_edict, dict):\n        for k, v in src_edict.items():\n            if not isinstance(v, CfgNode):\n                dest_dict[k] = v\n            else:\n                dest_dict[k] = {}\n                _edict2dict(dest_dict[k], v)\n    else:\n        return\n\n\ndef gen_config(config_file):\n    cfg_dict = {}\n    _edict2dict(cfg_dict, cfg)\n    with open(config_file, \"w\") as f:\n        yaml.dump(cfg_dict, f, default_flow_style=False)\n\n\ndef _update_config(base_cfg, exp_cfg):\n    if isinstance(base_cfg, dict) and isinstance(exp_cfg, CfgNode):\n        for k, v in exp_cfg.items():\n            if k in base_cfg:\n                if not isinstance(v, dict):\n                    base_cfg[k] = v\n                else:\n                    _update_config(base_cfg[k], v)\n            else:\n                raise ValueError(\"{} not exist in config.py\".format(k))\n    else:\n        return\n\n\ndef update_config_from_file(filename):\n    exp_config = None\n    with open(filename) as f:\n        exp_config = CfgNode(yaml.safe_load(f))\n        _update_config(cfg, exp_config)\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/head.py",
    "content": "import torch\nimport torch.nn.functional as F\nfrom torch import nn\nfrom tracking.models.stark_tracker.backbone import FrozenBatchNorm2d\n\n\ndef conv(\n    in_planes,\n    out_planes,\n    kernel_size=3,\n    stride=1,\n    padding=1,\n    dilation=1,\n    freeze_bn=False,\n):\n    if freeze_bn:\n        return nn.Sequential(\n            nn.Conv2d(\n                in_planes,\n                out_planes,\n                kernel_size=kernel_size,\n                stride=stride,\n                padding=padding,\n                dilation=dilation,\n                bias=True,\n            ),\n            FrozenBatchNorm2d(out_planes),\n            nn.ReLU(inplace=True),\n        )\n    else:\n        return nn.Sequential(\n            nn.Conv2d(\n                in_planes,\n                out_planes,\n                kernel_size=kernel_size,\n                stride=stride,\n                padding=padding,\n                dilation=dilation,\n                bias=True,\n            ),\n            nn.BatchNorm2d(out_planes),\n            nn.ReLU(inplace=True),\n        )\n\n\nclass Corner_Predictor(nn.Module):\n    \"\"\"Corner Predictor module\"\"\"\n\n    def __init__(\n        self, inplanes=64, channel=256, feat_sz=20, stride=16, freeze_bn=False\n    ):\n        super(Corner_Predictor, self).__init__()\n        self.feat_sz = feat_sz\n        self.stride = stride\n        self.img_sz = self.feat_sz * self.stride\n        \"\"\"top-left corner\"\"\"\n        self.conv1_tl = conv(inplanes, channel, freeze_bn=freeze_bn)\n        self.conv2_tl = conv(channel, channel // 2, freeze_bn=freeze_bn)\n        self.conv3_tl = conv(channel // 2, channel // 4, freeze_bn=freeze_bn)\n        self.conv4_tl = conv(channel // 4, channel // 8, freeze_bn=freeze_bn)\n        self.conv5_tl = nn.Conv2d(channel // 8, 1, kernel_size=1)\n\n        \"\"\"bottom-right corner\"\"\"\n        self.conv1_br = conv(inplanes, channel, freeze_bn=freeze_bn)\n        self.conv2_br = conv(channel, channel // 2, freeze_bn=freeze_bn)\n        self.conv3_br = conv(channel // 2, channel // 4, freeze_bn=freeze_bn)\n        self.conv4_br = conv(channel // 4, channel // 8, freeze_bn=freeze_bn)\n        self.conv5_br = nn.Conv2d(channel // 8, 1, kernel_size=1)\n\n        \"\"\"about coordinates and indexs\"\"\"\n        with torch.no_grad():\n            self.indice = torch.arange(0, self.feat_sz).view(-1, 1) * self.stride\n            # generate mesh-grid\n            self.coord_x = (\n                self.indice.repeat((self.feat_sz, 1))\n                .view((self.feat_sz * self.feat_sz,))\n                .float()\n            )\n            self.coord_y = (\n                self.indice.repeat((1, self.feat_sz))\n                .view((self.feat_sz * self.feat_sz,))\n                .float()\n            )\n\n    def forward(self, x, return_dist=False, softmax=True):\n        \"\"\"Forward pass with input x.\"\"\"\n        score_map_tl, score_map_br = self.get_score_map(x)\n        if return_dist:\n            coorx_tl, coory_tl, prob_vec_tl = self.soft_argmax(\n                score_map_tl, return_dist=True, softmax=softmax\n            )\n            coorx_br, coory_br, prob_vec_br = self.soft_argmax(\n                score_map_br, return_dist=True, softmax=softmax\n            )\n            return (\n                torch.stack((coorx_tl, coory_tl, coorx_br, coory_br), dim=1)\n                / self.img_sz,\n                prob_vec_tl,\n                prob_vec_br,\n            )\n        else:\n            coorx_tl, coory_tl = self.soft_argmax(score_map_tl)\n            coorx_br, coory_br = self.soft_argmax(score_map_br)\n            return (\n                torch.stack((coorx_tl, coory_tl, coorx_br, coory_br), dim=1)\n                / self.img_sz\n            )\n\n    def get_score_map(self, x):\n        # top-left branch\n        x_tl1 = self.conv1_tl(x)\n        x_tl2 = self.conv2_tl(x_tl1)\n        x_tl3 = self.conv3_tl(x_tl2)\n        x_tl4 = self.conv4_tl(x_tl3)\n        score_map_tl = self.conv5_tl(x_tl4)\n\n        # bottom-right branch\n        x_br1 = self.conv1_br(x)\n        x_br2 = self.conv2_br(x_br1)\n        x_br3 = self.conv3_br(x_br2)\n        x_br4 = self.conv4_br(x_br3)\n        score_map_br = self.conv5_br(x_br4)\n        return score_map_tl, score_map_br\n\n    def soft_argmax(self, score_map, return_dist=False, softmax=True):\n        \"\"\"get soft-argmax coordinate for a given heatmap\"\"\"\n        score_vec = score_map.view(\n            (-1, self.feat_sz * self.feat_sz)\n        )  # (batch, feat_sz * feat_sz)\n        prob_vec = nn.functional.softmax(score_vec, dim=1)\n        exp_x = torch.sum((self.coord_x.to(score_map.device) * prob_vec), dim=1)\n        exp_y = torch.sum((self.coord_y.to(score_map.device) * prob_vec), dim=1)\n        if return_dist:\n            if softmax:\n                return exp_x, exp_y, prob_vec\n            else:\n                return exp_x, exp_y, score_vec\n        else:\n            return exp_x, exp_y\n\n\nclass Corner_Predictor_Lite(nn.Module):\n    \"\"\"Corner Predictor module (Lite version)\"\"\"\n\n    def __init__(self, inplanes=64, channel=256, feat_sz=20, stride=16):\n        super(Corner_Predictor_Lite, self).__init__()\n        self.feat_sz = feat_sz\n        self.stride = stride\n        self.img_sz = self.feat_sz * self.stride\n        \"\"\"convolution tower for two corners\"\"\"\n        self.conv_tower = nn.Sequential(\n            conv(inplanes, channel),\n            conv(channel, channel // 2),\n            conv(channel // 2, channel // 4),\n            conv(channel // 4, channel // 8),\n            nn.Conv2d(channel // 8, 2, kernel_size=3, padding=1),\n        )\n\n        \"\"\"about coordinates and indexs\"\"\"\n        with torch.no_grad():\n            self.indice = (\n                torch.arange(0, self.feat_sz).view(-1, 1) + 0.5\n            ) * self.stride  # here we can add a 0.5\n            # generate mesh-grid\n            self.coord_x = (\n                self.indice.repeat((self.feat_sz, 1))\n                .view((self.feat_sz * self.feat_sz,))\n                .float()\n            )\n            self.coord_y = (\n                self.indice.repeat((1, self.feat_sz))\n                .view((self.feat_sz * self.feat_sz,))\n                .float()\n            )\n\n    def forward(self, x, return_dist=False, softmax=True):\n        \"\"\"Forward pass with input x.\"\"\"\n        score_map_tl, score_map_br = self.get_score_map(x)\n        if return_dist:\n            coorx_tl, coory_tl, prob_vec_tl = self.soft_argmax(\n                score_map_tl, return_dist=True, softmax=softmax\n            )\n            coorx_br, coory_br, prob_vec_br = self.soft_argmax(\n                score_map_br, return_dist=True, softmax=softmax\n            )\n            return (\n                torch.stack((coorx_tl, coory_tl, coorx_br, coory_br), dim=1)\n                / self.img_sz,\n                prob_vec_tl,\n                prob_vec_br,\n            )\n        else:\n            coorx_tl, coory_tl = self.soft_argmax(score_map_tl)\n            coorx_br, coory_br = self.soft_argmax(score_map_br)\n            return (\n                torch.stack((coorx_tl, coory_tl, coorx_br, coory_br), dim=1)\n                / self.img_sz\n            )\n\n    def get_score_map(self, x):\n        score_map = self.conv_tower(x)  # (B,2,H,W)\n        return score_map[:, 0, :, :], score_map[:, 1, :, :]\n\n    def soft_argmax(self, score_map, return_dist=False, softmax=True):\n        \"\"\"get soft-argmax coordinate for a given heatmap\"\"\"\n        score_vec = score_map.view(\n            (-1, self.feat_sz * self.feat_sz)\n        )  # (batch, feat_sz * feat_sz)\n        prob_vec = nn.functional.softmax(score_vec, dim=1)\n        exp_x = torch.sum((self.coord_x.to(score_map.device) * prob_vec), dim=1)\n        exp_y = torch.sum((self.coord_y.to(score_map.device) * prob_vec), dim=1)\n        if return_dist:\n            if softmax:\n                return exp_x, exp_y, prob_vec\n            else:\n                return exp_x, exp_y, score_vec\n        else:\n            return exp_x, exp_y\n\n\nclass MLP(nn.Module):\n    \"\"\"Very simple multi-layer perceptron (also called FFN)\"\"\"\n\n    def __init__(self, input_dim, hidden_dim, output_dim, num_layers, BN=False):\n        super().__init__()\n        self.num_layers = num_layers\n        h = [hidden_dim] * (num_layers - 1)\n        if BN:\n            self.layers = nn.ModuleList(\n                nn.Sequential(nn.Linear(n, k), nn.BatchNorm1d(k))\n                for n, k in zip([input_dim] + h, h + [output_dim])\n            )\n        else:\n            self.layers = nn.ModuleList(\n                nn.Linear(n, k) for n, k in zip([input_dim] + h, h + [output_dim])\n            )\n\n    def forward(self, x):\n        for i, layer in enumerate(self.layers):\n            x = F.relu(layer(x)) if i < self.num_layers - 1 else layer(x)\n        return x\n\n\ndef build_box_head(cfg):\n    if cfg.MODEL.HEAD_TYPE == \"MLP\":\n        hidden_dim = cfg.MODEL.HIDDEN_DIM\n        mlp_head = MLP(\n            hidden_dim, hidden_dim, 4, 3\n        )  # dim_in, dim_hidden, dim_out, 3 layers\n        return mlp_head\n    elif \"CORNER\" in cfg.MODEL.HEAD_TYPE:\n        if cfg.MODEL.BACKBONE.DILATION is False:\n            stride = 16\n        else:\n            stride = 8\n        feat_sz = int(cfg.DATA.SEARCH.SIZE / stride)\n        channel = getattr(cfg.MODEL, \"HEAD_DIM\", 256)\n        print(\"head channel: %d\" % channel)\n        if cfg.MODEL.HEAD_TYPE == \"CORNER\":\n            corner_head = Corner_Predictor(\n                inplanes=cfg.MODEL.HIDDEN_DIM,\n                channel=channel,\n                feat_sz=feat_sz,\n                stride=stride,\n            )\n        elif cfg.MODEL.HEAD_TYPE == \"CORNER_LITE\":\n            corner_head = Corner_Predictor_Lite(\n                inplanes=cfg.MODEL.HIDDEN_DIM,\n                channel=channel,\n                feat_sz=feat_sz,\n                stride=stride,\n            )\n        else:\n            raise ValueError()\n        return corner_head\n    else:\n        raise ValueError(\"HEAD TYPE %s is not supported.\" % cfg.MODEL.HEAD_TYPE)\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/params.py",
    "content": "from typing import Dict\n\nfrom tracking.models.stark_tracker.config.stark_st2.config import cfg\n\n\nclass TrackerParams:\n    \"\"\"Class for tracker parameters.\"\"\"\n\n    def set_default_values(self, default_vals: Dict):\n        for name, val in default_vals.items():\n            if not hasattr(self, name):\n                setattr(self, name, val)\n\n    def get(self, name: str, *default):\n        \"\"\"Get a parameter value with the given name. If it does not exists, it return the default value given as a\n        second argument or returns an error if no default value is given.\"\"\"\n        if len(default) > 1:\n            raise ValueError(\"Can only give one default value.\")\n\n        if not default:\n            return getattr(self, name)\n\n        return getattr(self, name, default[0])\n\n    def has(self, name: str):\n        \"\"\"Check if there exist a parameter with the given name.\"\"\"\n        return hasattr(self, name)\n\n\ndef parameters(yaml_name: str):\n    params = TrackerParams()\n    # prj_dir = \"\"\n    # save_dir = \"\"\n    # update default config from yaml file\n    # yaml_file = os.path.join(prj_dir, 'experiments/stark_st2/%s.yaml' % yaml_name)\n    # update_config_from_file(yaml_file)\n    params.cfg = cfg\n    # print(\"test config: \", cfg)\n\n    # template and search region\n    params.template_factor = cfg.TEST.TEMPLATE_FACTOR\n    params.template_size = cfg.TEST.TEMPLATE_SIZE\n    params.search_factor = cfg.TEST.SEARCH_FACTOR\n    params.search_size = cfg.TEST.SEARCH_SIZE\n\n    # Network checkpoint path\n    params.checkpoint = \"manifold://tracking/tree/models/STARK/STARKST_ep0050.pth\"\n\n    # whether to save boxes from all queries\n    params.save_all_boxes = False\n\n    return params\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/position_encoding.py",
    "content": "\"\"\"\nVarious positional encodings for the transformer.\n\"\"\"\nimport math\n\nimport torch\nfrom torch import nn\nfrom tracking.models.stark_tracker.utils.misc import NestedTensor\n\n\nclass PositionEmbeddingSine(nn.Module):\n    \"\"\"\n    This is a more standard version of the position embedding, very similar to the one\n    used by the Attention is all you need paper, generalized to work on images.\n    \"\"\"\n\n    def __init__(\n        self, num_pos_feats=64, temperature=10000, normalize=False, scale=None\n    ):\n        super().__init__()\n        self.num_pos_feats = num_pos_feats\n        self.temperature = temperature\n        self.normalize = normalize\n        if scale is not None and normalize is False:\n            raise ValueError(\"normalize should be True if scale is passed\")\n        if scale is None:\n            scale = 2 * math.pi\n        self.scale = scale\n\n    def forward(self, tensor_list: NestedTensor):\n        x = tensor_list.tensors\n        mask = tensor_list.mask\n        assert mask is not None\n        not_mask = ~mask  # (b,h,w)\n        y_embed = not_mask.cumsum(\n            1, dtype=torch.float32\n        )  # cumulative sum along axis 1 (h axis) --> (b, h, w)\n        x_embed = not_mask.cumsum(\n            2, dtype=torch.float32\n        )  # cumulative sum along axis 2 (w axis) --> (b, h, w)\n        if self.normalize:\n            eps = 1e-6\n            y_embed = (\n                y_embed / (y_embed[:, -1:, :] + eps) * self.scale\n            )  # 2pi * (y / sigma(y))\n            x_embed = (\n                x_embed / (x_embed[:, :, -1:] + eps) * self.scale\n            )  # 2pi * (x / sigma(x))\n\n        dim_t = torch.arange(\n            self.num_pos_feats, dtype=torch.float32, device=x.device\n        )  # (0,1,2,...,d/2)\n        dim_t = self.temperature ** (2 * (dim_t // 2) / self.num_pos_feats)\n\n        pos_x = x_embed[:, :, :, None] / dim_t  # (b,h,w,d/2)\n        pos_y = y_embed[:, :, :, None] / dim_t  # (b,h,w,d/2)\n        pos_x = torch.stack(\n            (pos_x[:, :, :, 0::2].sin(), pos_x[:, :, :, 1::2].cos()), dim=4\n        ).flatten(\n            3\n        )  # (b,h,w,d/2)\n        pos_y = torch.stack(\n            (pos_y[:, :, :, 0::2].sin(), pos_y[:, :, :, 1::2].cos()), dim=4\n        ).flatten(\n            3\n        )  # (b,h,w,d/2)\n        pos = torch.cat((pos_y, pos_x), dim=3).permute(0, 3, 1, 2)  # (b,h,w,d)\n        return pos\n\n\nclass PositionEmbeddingLearned(nn.Module):\n    \"\"\"\n    Absolute pos embedding, learned.\n    \"\"\"\n\n    def __init__(self, num_pos_feats=256):\n        super().__init__()\n        self.row_embed = nn.Embedding(50, num_pos_feats)\n        self.col_embed = nn.Embedding(50, num_pos_feats)\n        self.reset_parameters()\n\n    def reset_parameters(self):\n        nn.init.uniform_(self.row_embed.weight)\n        nn.init.uniform_(self.col_embed.weight)\n\n    def forward(self, tensor_list: NestedTensor):\n        x = tensor_list.tensors\n        h, w = x.shape[-2:]\n        i = torch.arange(w, device=x.device)\n        j = torch.arange(h, device=x.device)\n        x_emb = self.col_embed(i)\n        y_emb = self.row_embed(j)\n        pos = (\n            torch.cat(\n                [\n                    x_emb.unsqueeze(0).repeat(h, 1, 1),\n                    y_emb.unsqueeze(1).repeat(1, w, 1),\n                ],\n                dim=-1,\n            )\n            .permute(2, 0, 1)\n            .unsqueeze(0)\n            .repeat(x.shape[0], 1, 1, 1)\n        )\n        return pos  # (H,W,C) --> (C,H,W) --> (1,C,H,W) --> (B,C,H,W)\n\n\nclass PositionEmbeddingNone(nn.Module):\n    \"\"\"\n    No positional encoding.\n    \"\"\"\n\n    def __init__(self, num_pos_feats=256):\n        super().__init__()\n        self.n_dim = num_pos_feats * 2\n\n    def forward(self, tensor_list: NestedTensor):\n        x = tensor_list.tensors\n        b, _, h, w = x.size()\n        return torch.zeros((b, self.n_dim, h, w), device=x.device)  # (B, C, H, W)\n\n\ndef build_position_encoding(cfg):\n    N_steps = cfg.MODEL.HIDDEN_DIM // 2\n    if cfg.MODEL.POSITION_EMBEDDING in (\"v2\", \"sine\"):\n        # TODO find a better way of exposing other arguments\n        position_embedding = PositionEmbeddingSine(N_steps, normalize=True)\n    elif cfg.MODEL.POSITION_EMBEDDING in (\"v3\", \"learned\"):\n        position_embedding = PositionEmbeddingLearned(N_steps)\n    elif cfg.MODEL.POSITION_EMBEDDING in (\"None\",):\n        print(\"Not using positional encoding.\")\n        position_embedding = PositionEmbeddingNone(N_steps)\n    else:\n        raise ValueError(f\"not supported {cfg.MODEL.POSITION_EMBEDDING}\")\n\n    return position_embedding\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/resnet.py",
    "content": "import torch\nimport torch.nn as nn\n\nfrom torch.hub import load_state_dict_from_url\nfrom torchvision.models.resnet import BasicBlock, Bottleneck, conv1x1\nfrom tracking.utils.env import pathmgr\n\n\"\"\"2021.1.5 Modified from torchvision.models.resnet\nNow the\n\"\"\"\n\n__all__ = [\n    \"ResNet\",\n    \"resnet18\",\n    \"resnet34\",\n    \"resnet50\",\n    \"resnet101\",\n    \"resnet152\",\n    \"resnext50_32x4d\",\n    \"resnext101_32x8d\",\n    \"wide_resnet50_2\",\n    \"wide_resnet101_2\",\n]\n\n\nmodel_urls = {\n    \"resnet18\": \"https://download.pytorch.org/models/resnet18-5c106cde.pth\",\n    \"resnet34\": \"https://download.pytorch.org/models/resnet34-333f7ec4.pth\",\n    \"resnet50\": \"https://download.pytorch.org/models/resnet50-19c8e357.pth\",\n    \"resnet101\": \"https://download.pytorch.org/models/resnet101-5d3b4d8f.pth\",\n    \"resnet152\": \"https://download.pytorch.org/models/resnet152-b121ed2d.pth\",\n    \"resnext50_32x4d\": \"https://download.pytorch.org/models/resnext50_32x4d-7cdf4587.pth\",\n    \"resnext101_32x8d\": \"https://download.pytorch.org/models/resnext101_32x8d-8ba56ff5.pth\",\n    \"wide_resnet50_2\": \"https://download.pytorch.org/models/wide_resnet50_2-95faca4d.pth\",\n    \"wide_resnet101_2\": \"https://download.pytorch.org/models/wide_resnet101_2-32ee1156.pth\",\n}\n\n\nclass ResNet(nn.Module):\n    def __init__(\n        self,\n        block,\n        layers,\n        num_classes=1000,\n        zero_init_residual=False,\n        groups=1,\n        width_per_group=64,\n        replace_stride_with_dilation=None,\n        norm_layer=None,\n        last_layer=None,\n    ):\n        super(ResNet, self).__init__()\n        assert last_layer in [\"layer1\", \"layer2\", \"layer3\", \"layer4\", \"fc\"]\n        self.last_layer = last_layer\n        if norm_layer is None:\n            norm_layer = nn.BatchNorm2d\n        self._norm_layer = norm_layer\n\n        self.inplanes = 64\n        self.dilation = 1\n        if replace_stride_with_dilation is None:\n            # each element in the tuple indicates if we should replace\n            # the 2x2 stride with a dilated convolution instead\n            replace_stride_with_dilation = [False, False, False]\n        if len(replace_stride_with_dilation) != 3:\n            raise ValueError(\n                \"replace_stride_with_dilation should be None \"\n                \"or a 3-element tuple, got {}\".format(replace_stride_with_dilation)\n            )\n        self.groups = groups\n        self.base_width = width_per_group\n        self.conv1 = nn.Conv2d(\n            3, self.inplanes, kernel_size=7, stride=2, padding=3, bias=False\n        )\n        self.bn1 = norm_layer(self.inplanes)\n        self.relu = nn.ReLU(inplace=True)\n        self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n        self.layer1 = self._make_layer(block, 64, layers[0])\n        if self.last_layer != \"layer1\":\n            self.layer2 = self._make_layer(\n                block, 128, layers[1], stride=2, dilate=replace_stride_with_dilation[0]\n            )\n            if self.last_layer != \"layer2\":\n                self.layer3 = self._make_layer(\n                    block,\n                    256,\n                    layers[2],\n                    stride=2,\n                    dilate=replace_stride_with_dilation[1],\n                )\n                if self.last_layer != \"layer3\":\n                    self.layer4 = self._make_layer(\n                        block,\n                        512,\n                        layers[3],\n                        stride=2,\n                        dilate=replace_stride_with_dilation[2],\n                    )\n                    if self.last_layer != \"layer4\":\n                        self.avgpool = nn.AdaptiveAvgPool2d((1, 1))\n                        self.fc = nn.Linear(512 * block.expansion, num_classes)\n\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_normal_(m.weight, mode=\"fan_out\", nonlinearity=\"relu\")\n            elif isinstance(m, (nn.BatchNorm2d, nn.GroupNorm)):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\n        # Zero-initialize the last BN in each residual branch,\n        # so that the residual branch starts with zeros, and each residual block behaves like an identity.\n        # This improves the model by 0.2~0.3% according to https://arxiv.org/abs/1706.02677\n        if zero_init_residual:\n            for m in self.modules():\n                if isinstance(m, Bottleneck):\n                    nn.init.constant_(m.bn3.weight, 0)\n                elif isinstance(m, BasicBlock):\n                    nn.init.constant_(m.bn2.weight, 0)\n\n    def _make_layer(self, block, planes, blocks, stride=1, dilate=False):\n        norm_layer = self._norm_layer\n        downsample = None\n        previous_dilation = self.dilation\n        if dilate:\n            self.dilation *= stride\n            stride = 1\n        if stride != 1 or self.inplanes != planes * block.expansion:\n            downsample = nn.Sequential(\n                conv1x1(self.inplanes, planes * block.expansion, stride),\n                norm_layer(planes * block.expansion),\n            )\n\n        layers = []\n        layers.append(\n            block(\n                self.inplanes,\n                planes,\n                stride,\n                downsample,\n                self.groups,\n                self.base_width,\n                previous_dilation,\n                norm_layer,\n            )\n        )\n        self.inplanes = planes * block.expansion\n        for _ in range(1, blocks):\n            layers.append(\n                block(\n                    self.inplanes,\n                    planes,\n                    groups=self.groups,\n                    base_width=self.base_width,\n                    dilation=self.dilation,\n                    norm_layer=norm_layer,\n                )\n            )\n\n        return nn.Sequential(*layers)\n\n    def _forward_impl(self, x):\n        # See note [TorchScript super()]\n        x = self.conv1(x)\n        x = self.bn1(x)\n        x = self.relu(x)\n        x = self.maxpool(x)\n\n        x = self.layer1(x)\n        if self.last_layer != \"layer1\":\n            x = self.layer2(x)\n            if self.last_layer != \"layer2\":\n                x = self.layer3(x)\n                if self.last_layer != \"layer3\":\n                    x = self.layer4(x)\n                    if self.last_layer != \"layer4\":\n                        x = self.avgpool(x)\n                        x = torch.flatten(x, 1)\n                        x = self.fc(x)\n\n        return x\n\n    def forward(self, x):\n        return self._forward_impl(x)\n\n\ndef _resnet(arch, block, layers, pretrained, progress, **kwargs):\n    model = ResNet(block, layers, **kwargs)\n    if pretrained:\n        state_dict = load_state_dict_from_url(model_urls[arch])\n        try:\n            model.load_state_dict(state_dict)\n        except Exception:\n            model_keys = model.state_dict().keys()\n            checkpoint_keys = state_dict.keys()\n            for key in model_keys:\n                if key not in checkpoint_keys:\n                    print(\"key %s is not found in the checkpoint.\" % key)\n            for key in checkpoint_keys:\n                if key not in model_keys:\n                    print(\"the checkpoint contains additional key %s\" % key)\n            model.load_state_dict(state_dict, strict=False)\n    return model\n\n\ndef resnet18(pretrained=False, progress=True, **kwargs):\n    r\"\"\"ResNet-18 model from\n    `\"Deep Residual Learning for Image Recognition\" <https://arxiv.org/pdf/1512.03385.pdf>`_\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    return _resnet(\"resnet18\", BasicBlock, [2, 2, 2, 2], pretrained, progress, **kwargs)\n\n\ndef resnet34(pretrained=False, progress=True, **kwargs):\n    r\"\"\"ResNet-34 model from\n    `\"Deep Residual Learning for Image Recognition\" <https://arxiv.org/pdf/1512.03385.pdf>`_\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    return _resnet(\"resnet34\", BasicBlock, [3, 4, 6, 3], pretrained, progress, **kwargs)\n\n\ndef resnet50(pretrained=False, progress=True, **kwargs):\n    r\"\"\"ResNet-50 model from\n    `\"Deep Residual Learning for Image Recognition\" <https://arxiv.org/pdf/1512.03385.pdf>`_\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    return _resnet(\"resnet50\", Bottleneck, [3, 4, 6, 3], pretrained, progress, **kwargs)\n\n\ndef resnet101(pretrained=False, progress=True, **kwargs):\n    r\"\"\"ResNet-101 model from\n    `\"Deep Residual Learning for Image Recognition\" <https://arxiv.org/pdf/1512.03385.pdf>`_\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    return _resnet(\n        \"resnet101\", Bottleneck, [3, 4, 23, 3], pretrained, progress, **kwargs\n    )\n\n\ndef resnet152(pretrained=False, progress=True, **kwargs):\n    r\"\"\"ResNet-152 model from\n    `\"Deep Residual Learning for Image Recognition\" <https://arxiv.org/pdf/1512.03385.pdf>`_\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    return _resnet(\n        \"resnet152\", Bottleneck, [3, 8, 36, 3], pretrained, progress, **kwargs\n    )\n\n\ndef resnext50_32x4d(pretrained=False, progress=True, **kwargs):\n    r\"\"\"ResNeXt-50 32x4d model from\n    `\"Aggregated Residual Transformation for Deep Neural Networks\" <https://arxiv.org/pdf/1611.05431.pdf>`_\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    kwargs[\"groups\"] = 32\n    kwargs[\"width_per_group\"] = 4\n    return _resnet(\n        \"resnext50_32x4d\", Bottleneck, [3, 4, 6, 3], pretrained, progress, **kwargs\n    )\n\n\ndef resnext101_32x8d(pretrained=False, progress=True, **kwargs):\n    r\"\"\"ResNeXt-101 32x8d model from\n    `\"Aggregated Residual Transformation for Deep Neural Networks\" <https://arxiv.org/pdf/1611.05431.pdf>`_\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    kwargs[\"groups\"] = 32\n    kwargs[\"width_per_group\"] = 8\n    return _resnet(\n        \"resnext101_32x8d\", Bottleneck, [3, 4, 23, 3], pretrained, progress, **kwargs\n    )\n\n\ndef wide_resnet50_2(pretrained=False, progress=True, **kwargs):\n    r\"\"\"Wide ResNet-50-2 model from\n    `\"Wide Residual Networks\" <https://arxiv.org/pdf/1605.07146.pdf>`_\n    The model is the same as ResNet except for the bottleneck number of channels\n    which is twice larger in every block. The number of channels in outer 1x1\n    convolutions is the same, e.g. last block in ResNet-50 has 2048-512-2048\n    channels, and in Wide ResNet-50-2 has 2048-1024-2048.\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    kwargs[\"width_per_group\"] = 64 * 2\n    return _resnet(\n        \"wide_resnet50_2\", Bottleneck, [3, 4, 6, 3], pretrained, progress, **kwargs\n    )\n\n\ndef wide_resnet101_2(pretrained=False, progress=True, **kwargs):\n    r\"\"\"Wide ResNet-101-2 model from\n    `\"Wide Residual Networks\" <https://arxiv.org/pdf/1605.07146.pdf>`_\n    The model is the same as ResNet except for the bottleneck number of channels\n    which is twice larger in every block. The number of channels in outer 1x1\n    convolutions is the same, e.g. last block in ResNet-50 has 2048-512-2048\n    channels, and in Wide ResNet-50-2 has 2048-1024-2048.\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    kwargs[\"width_per_group\"] = 64 * 2\n    return _resnet(\n        \"wide_resnet101_2\", Bottleneck, [3, 4, 23, 3], pretrained, progress, **kwargs\n    )\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/stark_s.py",
    "content": "\"\"\"\nBasic STARK Model (Spatial-only).\n\"\"\"\nfrom typing import List\n\nimport torch\nfrom torch import nn\nfrom tracking.models.stark_tracker.backbone import build_backbone\nfrom tracking.models.stark_tracker.head import build_box_head\nfrom tracking.models.stark_tracker.transformer import build_transformer\nfrom tracking.models.stark_tracker.utils.box_ops import box_xyxy_to_cxcywh\nfrom tracking.models.stark_tracker.utils.misc import NestedTensor\n\n\nclass STARKS(nn.Module):\n    \"\"\"This is the base class for Transformer Tracking\"\"\"\n\n    def __init__(\n        self,\n        backbone,\n        transformer,\n        box_head,\n        num_queries,\n        aux_loss=False,\n        head_type=\"CORNER\",\n    ):\n        \"\"\"Initializes the model.\n        Parameters:\n            backbone: torch module of the backbone to be used. See backbone.py\n            transformer: torch module of the transformer architecture. See transformer.py\n            num_queries: number of object queries.\n            aux_loss: True if auxiliary decoding losses (loss at each decoder layer) are to be used.\n        \"\"\"\n        super().__init__()\n        self.backbone = backbone\n        self.transformer = transformer\n        self.box_head = box_head\n        self.num_queries = num_queries\n        hidden_dim = transformer.d_model\n        self.query_embed = nn.Embedding(num_queries, hidden_dim)  # object queries\n        self.bottleneck = nn.Conv2d(\n            backbone.num_channels, hidden_dim, kernel_size=1\n        )  # the bottleneck layer\n        self.aux_loss = aux_loss\n        self.head_type = head_type\n        if head_type == \"CORNER\":\n            self.feat_sz_s = int(box_head.feat_sz)\n            self.feat_len_s = int(box_head.feat_sz ** 2)\n\n    def forward(\n        self,\n        img=None,\n        seq_dict=None,\n        mode=\"backbone\",\n        run_box_head=True,\n        run_cls_head=False,\n    ):\n        if mode == \"backbone\":\n            return self.forward_backbone(img)\n        elif mode == \"transformer\":\n            return self.forward_transformer(\n                seq_dict, run_box_head=run_box_head, run_cls_head=run_cls_head\n            )\n        else:\n            raise ValueError\n\n    def forward_backbone(self, input: NestedTensor):\n        \"\"\"The input type is NestedTensor, which consists of:\n        - tensor: batched images, of shape [batch_size x 3 x H x W]\n        - mask: a binary mask of shape [batch_size x H x W], containing 1 on padded pixels\n        \"\"\"\n        assert isinstance(input, NestedTensor)\n        # Forward the backbone\n        output_back, pos = self.backbone(\n            input\n        )  # features & masks, position embedding for the search\n        # Adjust the shapes\n        return self.adjust(output_back, pos)\n\n    def forward_transformer(self, seq_dict, run_box_head=True, run_cls_head=False):\n        if self.aux_loss:\n            raise ValueError(\"Deep supervision is not supported.\")\n        # Forward the transformer encoder and decoder\n        output_embed, enc_mem = self.transformer(\n            seq_dict[\"feat\"],\n            seq_dict[\"mask\"],\n            self.query_embed.weight,\n            seq_dict[\"pos\"],\n            return_encoder_output=True,\n        )\n        # Forward the corner head\n        out, outputs_coord = self.forward_box_head(output_embed, enc_mem)\n        return out, outputs_coord, output_embed\n\n    def forward_box_head(self, hs, memory):\n        \"\"\"\n        hs: output embeddings (1, B, N, C)\n        memory: encoder embeddings (HW1+HW2, B, C)\"\"\"\n        if self.head_type == \"CORNER\":\n            # adjust shape\n            enc_opt = memory[-self.feat_len_s :].transpose(\n                0, 1\n            )  # encoder output for the search region (B, HW, C)\n            dec_opt = hs.squeeze(0).transpose(1, 2)  # (B, C, N)\n            att = torch.matmul(enc_opt, dec_opt)  # (B, HW, N)\n            opt = (\n                (enc_opt.unsqueeze(-1) * att.unsqueeze(-2))\n                .permute((0, 3, 2, 1))\n                .contiguous()\n            )  # (B, HW, C, N) --> (B, N, C, HW)\n            bs, Nq, C, HW = opt.size()\n            opt_feat = opt.view(-1, C, self.feat_sz_s, self.feat_sz_s)\n            # run the corner head\n            outputs_coord = box_xyxy_to_cxcywh(self.box_head(opt_feat))\n            outputs_coord_new = outputs_coord.view(bs, Nq, 4)\n            out = {\"pred_boxes\": outputs_coord_new}\n            return out, outputs_coord_new\n        elif self.head_type == \"MLP\":\n            # Forward the class and box head\n            outputs_coord = self.box_head(hs).sigmoid()\n            out = {\"pred_boxes\": outputs_coord[-1]}\n            if self.aux_loss:\n                out[\"aux_outputs\"] = self._set_aux_loss(outputs_coord)\n            return out, outputs_coord\n\n    def adjust(self, output_back: List, pos_embed: List):\n        \"\"\" \"\"\"\n        src_feat, mask = output_back[-1].decompose()\n        assert mask is not None\n        # reduce channel\n        feat = self.bottleneck(src_feat)  # (B, C, H, W)\n        # adjust shapes\n        feat_vec = feat.flatten(2).permute(2, 0, 1)  # HWxBxC\n        pos_embed_vec = pos_embed[-1].flatten(2).permute(2, 0, 1)  # HWxBxC\n        mask_vec = mask.flatten(1)  # BxHW\n        return {\"feat\": feat_vec, \"mask\": mask_vec, \"pos\": pos_embed_vec}\n\n    @torch.jit.unused\n    def _set_aux_loss(self, outputs_coord):\n        # this is a workaround to make torchscript happy, as torchscript\n        # doesn't support dictionary with non-homogeneous values, such\n        # as a dict having both a Tensor and a list.\n        return [{\"pred_boxes\": b} for b in outputs_coord[:-1]]\n\n\ndef build_starks(cfg):\n    backbone = build_backbone(\n        cfg\n    )  # backbone and positional encoding are built together\n    transformer = build_transformer(cfg)\n    box_head = build_box_head(cfg)\n    model = STARKS(\n        backbone,\n        transformer,\n        box_head,\n        num_queries=cfg.MODEL.NUM_OBJECT_QUERIES,\n        aux_loss=cfg.TRAIN.DEEP_SUPERVISION,\n        head_type=cfg.MODEL.HEAD_TYPE,\n    )\n\n    return model\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/stark_st.py",
    "content": "\"\"\"\nSTARK-ST Model (Spatio-Temporal).\n\"\"\"\nfrom tracking.models.stark_tracker.backbone import build_backbone\nfrom tracking.models.stark_tracker.head import build_box_head, MLP\nfrom tracking.models.stark_tracker.stark_s import STARKS\nfrom tracking.models.stark_tracker.transformer import build_transformer\n\n\nclass STARKST(STARKS):\n    \"\"\"This is the base class for Transformer Tracking\"\"\"\n\n    def __init__(\n        self,\n        backbone,\n        transformer,\n        box_head,\n        num_queries,\n        aux_loss=False,\n        head_type=\"CORNER\",\n        cls_head=None,\n    ):\n        \"\"\"Initializes the model.\n        Parameters:\n            backbone: torch module of the backbone to be used. See backbone.py\n            transformer: torch module of the transformer architecture. See transformer.py\n            num_queries: number of object queries.\n            aux_loss: True if auxiliary decoding losses (loss at each decoder layer) are to be used.\n        \"\"\"\n        super().__init__(\n            backbone,\n            transformer,\n            box_head,\n            num_queries,\n            aux_loss=aux_loss,\n            head_type=head_type,\n        )\n        self.cls_head = cls_head\n\n    def forward(\n        self,\n        img=None,\n        seq_dict=None,\n        mode=\"backbone\",\n        run_box_head=False,\n        run_cls_head=False,\n    ):\n        if mode == \"backbone\":\n            return self.forward_backbone(img)\n        elif mode == \"transformer\":\n            return self.forward_transformer(\n                seq_dict, run_box_head=run_box_head, run_cls_head=run_cls_head\n            )\n        else:\n            raise ValueError\n\n    def forward_transformer(self, seq_dict, run_box_head=False, run_cls_head=False):\n        if self.aux_loss:\n            raise ValueError(\"Deep supervision is not supported.\")\n        # Forward the transformer encoder and decoder\n        output_embed, enc_mem = self.transformer(\n            seq_dict[\"feat\"],\n            seq_dict[\"mask\"],\n            self.query_embed.weight,\n            seq_dict[\"pos\"],\n            return_encoder_output=True,\n        )\n        # Forward the corner head\n        out, outputs_coord = self.forward_head(\n            output_embed, enc_mem, run_box_head=run_box_head, run_cls_head=run_cls_head\n        )\n        return out, outputs_coord, output_embed\n\n    def forward_head(self, hs, memory, run_box_head=False, run_cls_head=False):\n        \"\"\"\n        hs: output embeddings (1, B, N, C)\n        memory: encoder embeddings (HW1+HW2, B, C)\"\"\"\n        out_dict = {}\n        if run_cls_head:\n            # forward the classification head\n            out_dict.update({\"pred_logits\": self.cls_head(hs)[-1]})\n        if run_box_head:\n            # forward the box prediction head\n            out_dict_box, outputs_coord = self.forward_box_head(hs, memory)\n            # merge results\n            out_dict.update(out_dict_box)\n            return out_dict, outputs_coord\n        else:\n            return out_dict, None\n\n\ndef build_starkst(cfg):\n    backbone = build_backbone(\n        cfg\n    )  # backbone and positional encoding are built together\n    transformer = build_transformer(cfg)\n    box_head = build_box_head(cfg)\n    cls_head = MLP(cfg.MODEL.HIDDEN_DIM, cfg.MODEL.HIDDEN_DIM, 1, cfg.MODEL.NLAYER_HEAD)\n    model = STARKST(\n        backbone,\n        transformer,\n        box_head,\n        num_queries=cfg.MODEL.NUM_OBJECT_QUERIES,\n        aux_loss=cfg.TRAIN.DEEP_SUPERVISION,\n        head_type=cfg.MODEL.HEAD_TYPE,\n        cls_head=cls_head,\n    )\n\n    return model\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/stark_tracker.py",
    "content": "import logging\nimport math\nimport time\nfrom copy import deepcopy\nfrom typing import Dict, List\n\nimport cv2\nimport numpy as np\nimport torch\nfrom fvcore.common.config import CfgNode\nfrom tracking.models.single_object_tracker import SingleObjectTracker\nfrom tracking.models.stark_tracker.stark_st import build_starkst\nfrom tracking.models.stark_tracker.utils.box_ops import clip_box\nfrom tracking.models.stark_tracker.utils.merge import merge_template_search\nfrom tracking.models.stark_tracker.utils.misc import NestedTensor, Preprocessor\nfrom tracking.models.stark_tracker.utils.preprocessing_utils import sample_target\nfrom tracking.utils.bbox_helper import xywh_2_cxywh\nfrom tracking.utils.env import pathmgr\n\n\nclass STARKTracker(SingleObjectTracker):\n    def __init__(\n        self,\n        cfg: CfgNode,\n        device: torch.device = None,\n        verbose: bool = False,\n    ):\n        # Define siammask model\n        # Override search size to correctly initilize the box head\n        cfg.defrost()\n        cfg.DATA.SEARCH.SIZE = cfg.TEST.SEARCH_SIZE\n        cfg.freeze()\n        logging.info(cfg)\n        pretrained_path = cfg.MODEL.WEIGHTS\n        # If the input image needs to be cropped to smaller patches,\n        # this variable controls how many these patches we can send at a time.\n        self.cfg = cfg\n\n        self.template_factor: float = cfg.TEST.TEMPLATE_FACTOR\n        self.template_size: int = cfg.TEST.TEMPLATE_SIZE\n        self.search_size: int = cfg.TEST.SEARCH_SIZE\n        self.context_amount: float = 1.0 / self.template_factor\n        self.update_intervals: List = cfg.TEST.UPDATE_INTERVALS.UPDATE_INTERVALS\n        self.num_extra_template = len(self.update_intervals)\n        self.test_batchsize = cfg.TEST.TEST_BATCHSIZE\n        # template update\n        self.z_dict1 = {}\n        self.z_dict_list = []\n        self.preprocessor = Preprocessor()\n        self.frame_step = 0\n        self.target_id = None\n        self.device = device if device is not None else torch.device(\"cpu\")\n\n        stark_st = build_starkst(cfg)\n\n        if pretrained_path is not None:\n            logging.info(f\"Loading pretrained model from {pretrained_path} ...\")\n            with pathmgr.open(pretrained_path, \"rb\") as f:\n                stark_st.load_state_dict(torch.load(f)[\"state_dict\"], strict=True)\n        super(STARKTracker, self).__init__(stark_st, verbose)\n\n        self.model = self.model.to(self.device)\n\n        # This was put at the end to override parent function\n        self.is_search_local: bool = cfg.TEST.IS_SEARCH_LOCAL\n\n    def init_tracker(self, img: torch.Tensor, meta_data: Dict):\n        \"\"\"\n        This function is used to initilize SOT with first frame annotation\n\n        Args:\n            image: this is one image where we used to initilize the tracker, [1, 3, H, W]\n            meta: a dictionary contains information of target objects in this image.\n                It should contain \"target_bbox\": [x, y, w, h], \"target_id\": str\n        Returns:\n            None\n        \"\"\"\n        target_bbox = meta_data[\"target_bbox\"]\n        target_id = meta_data[\"target_id\"]\n        # make sure the size of the box is at least 10\n        # 10 is also the margin used in the predicted bbox\n        target_bbox[2] = max(target_bbox[2], 10)\n        target_bbox[3] = max(target_bbox[3], 10)\n\n        if isinstance(img, torch.Tensor):\n            img_npy = img.permute(0, 2, 3, 1).contiguous().numpy()[0]\n        elif isinstance(img, np.ndarray):\n            img_npy = img\n        else:\n            raise NotImplementedError\n        img_h, img_w, _ = img_npy.shape\n        # initialize z_dict_list\n        self.z_dict_list = []\n\n        # get the 1st template\n        # calculate the crop_size; adapted from SiamMask\n        x, y, w, h = xywh_2_cxywh(target_bbox)\n        pos = np.array([x, y])\n        size = np.array([w, h])\n        w_z = size[0]\n        h_z = size[1]\n        s_z = round(np.math.ceil(np.sqrt(w_z * h_z) / self.context_amount))\n\n        z_patch_arr1, _, z_amask_arr1 = sample_target(\n            img_npy,\n            pos,\n            s_z,\n            output_sz=self.template_size,\n        )\n        template1 = self.preprocessor.process(\n            z_patch_arr1,\n            z_amask_arr1,\n            device=self.device,\n            verbose=self.verbose,\n        )\n        with torch.no_grad():\n            self.z_dict1 = self.model.forward_backbone(template1)\n        # get the complete z_dict_list\n        self.z_dict_list.append(self.z_dict1)\n        for _ in range(self.num_extra_template):\n            self.z_dict_list.append(deepcopy(self.z_dict1))\n\n        if self.is_search_local:\n            # if doing local search, then we start from the position of\n            # the object in the previous frame, and will update the both\n            # position and size online\n            self.target_position = xywh_2_cxywh(target_bbox)[:2]\n            self.target_size = target_bbox[2:]\n        else:\n            # If doing global search (search the entire image), then we need\n            # to fix the position at the center of image and search_size to the size\n            # of the entire image. We will/should NOT update these parameters.\n            self.target_position = np.array([img_w // 2, img_h // 2])\n            self.target_size = target_bbox[2:]\n        self.frame_step = 0\n        self.target_id = target_id\n\n    def run_model(\n        self,\n        img: torch.Tensor,\n    ) -> Dict:\n        \"\"\"\n        Run one step of inference from a given search image.\n\n        Args:\n            img: search image in cv2 format.\n            multiscale_list: a list that stores different scales used for SiamMask.\n        Returns:\n            results: a dictionary holding tracking results of all targets for one image\n            {\n                \"target_id\": {\n                    \"bbox\": [x, y, w, h],\n                    \"score\": float,\n                }\n            }\n        \"\"\"\n        self.frame_step += 1\n\n        if self.is_search_local:\n            return self.track_locally(img)\n        else:\n            return self.track_globally(img)\n\n    def track_globally(\n        self,\n        img: torch.Tensor,\n    ) -> Dict:\n        img_npy = img.permute(0, 2, 3, 1).contiguous().numpy()[0]\n\n        img_h, img_w, _ = img_npy.shape\n        pos = self.target_position\n        target_size = self.target_size\n        # TODO: I believe the way they implement this is following SiamFC/SiamRPN/SiamRCNN. However, the search_size\n        # here may not always match the template scale. Will need to modify it according to our previous implementation\n        # on SiamMask\n\n        # calculate the resize_factor\n        wc_x = target_size[1]\n        hc_x = target_size[0]\n        s_x = round(np.math.ceil(np.sqrt(wc_x * hc_x) / self.context_amount))\n        scale_x = self.template_size / s_x\n\n        img_size = max(img_w, img_h)\n        # Need to take into account pixels around the image border\n        search_size = img_size * scale_x\n\n        # If the global search size is larger than the global_search_max_search_size,\n        # we need to crop the input into smaller patches and feed one at a time.\n        # Otherwise, we will be out of GPU memory if the search_size is large\n        maximum_input_size = self.search_size\n        overlap_size = (\n            s_x  # crop overlap to make sure object do not occur at the border\n        )\n\n        maximum_input_original_image = maximum_input_size / scale_x\n        # need to make sure, for each crop, we give it enough pad to match target_size\n        effective_input_original = maximum_input_original_image - overlap_size\n        n_per_x = int(img_w // effective_input_original) + 1\n        n_per_y = int(img_h // effective_input_original) + 1\n        line_x = (\n            np.arange(0, img_w, effective_input_original)\n            + effective_input_original // 2\n        )  # convert to center\n        line_y = (\n            np.arange(0, img_h, effective_input_original)\n            + effective_input_original // 2\n        )\n        x_centers, y_centers = np.meshgrid(line_x, line_y)\n        x_centers = x_centers.flatten()\n        y_centers = y_centers.flatten()\n\n        search_size = self.search_size\n        logging.info(\n            f\"Global search needs crop, template original size {s_x}, scale {scale_x}, search image entire size {search_size}, \"\n        )\n        logging.info(\n            f\"Global search needs crop, maximum_input_original_image, {maximum_input_original_image}, effective_input_original, {effective_input_original}, n_x {n_per_x}, n_y {n_per_y}\"\n        )\n\n        # Resize once, so we do not need to resize multiple times in get_subwindow\n        resized_img = cv2.resize(img_npy, (int(img_w * scale_x), int(img_h * scale_x)))\n        resize_factor = scale_x\n\n        crops = []\n        for x, y in zip(x_centers, y_centers):\n            x_patch_arr, _, x_amask_arr = sample_target(\n                resized_img,\n                # need to convert cx, cy, w, h to x, y, w, h\n                [x * scale_x, y * scale_x],\n                self.search_size,\n                output_sz=self.search_size,\n                verbose=self.verbose,\n            )  # (x1, y1, w, h)\n\n            search = self.preprocessor.process(x_patch_arr, x_amask_arr).to(self.device)\n            crops.append(search)\n        all_scores = []\n        all_bboxes = []\n\n        test_batch = self.test_batchsize\n        n_batch = int(math.ceil(len(crops) / test_batch))\n        for i in range(n_batch):\n            search_crop = crops[i * test_batch : (i + 1) * test_batch]\n            batchsize = len(search_crop)\n            tensors = [s.tensors.squeeze() for s in search_crop]\n            mask = [s.mask.squeeze() for s in search_crop]\n            tensors = torch.stack(tensors)\n            mask = torch.stack(mask)\n            search_crop = NestedTensor(tensors, mask)\n\n            z_dict_list = []\n            for z in self.z_dict_list:\n                n, _, c = z[\"feat\"].shape\n                feat = z[\"feat\"].expand(n, batchsize, c)\n                _, c = z[\"mask\"].shape\n                mask = z[\"mask\"].expand(batchsize, c)\n                n, _, c = z[\"pos\"].shape\n                pos = z[\"pos\"].expand(n, batchsize, c)\n\n                z_dict_list.append({\"feat\": feat, \"mask\": mask, \"pos\": pos})\n\n            with torch.no_grad():\n                x_dict = self.model.forward_backbone(search_crop)\n\n                feat_dict_list = z_dict_list + [x_dict]\n                seq_dict = merge_template_search(feat_dict_list)\n                # run the transformer\n                out_dict, _, _ = self.model.forward_transformer(\n                    seq_dict=seq_dict, run_box_head=True, run_cls_head=True\n                )\n\n            # get the final result\n            pred_boxes = out_dict[\"pred_boxes\"].view(-1, 4)\n            conf_score = out_dict[\"pred_logits\"].view(-1).sigmoid()\n\n            total = len(conf_score)\n            for i in range(total):\n                all_scores.append(conf_score[i].item())\n                all_bboxes.append(\n                    (pred_boxes[i] * self.search_size / resize_factor).tolist()\n                )\n\n        idx = np.argmax(all_scores)\n        i = idx // n_per_x\n        j = idx % n_per_x\n        pos = [x_centers[idx], y_centers[idx]]\n        pred_box = all_bboxes[idx]\n        pred_box = clip_box(\n            self.map_box_back(pred_box, resize_factor, pos=pos), img_h, img_w, margin=10\n        )\n        conf_score = all_scores[idx]\n        logging.info(\n            f\"Global search needs crop, best crop idx {idx}, patch i, j {i}, {j}\"\n        )\n\n        return {\n            self.target_id: {\n                \"bbox\": pred_box,\n                \"score\": conf_score,\n                \"img_npy\": img_npy,\n            }\n        }\n\n    def track_locally(\n        self,\n        img: torch.Tensor,\n    ) -> Dict:\n        if isinstance(img, torch.Tensor):\n            img_npy = img.permute(0, 2, 3, 1).contiguous().numpy()[0]\n        elif isinstance(img, np.ndarray):\n            img_npy = img\n        else:\n            raise NotImplementedError\n\n        img_h, img_w, _ = img_npy.shape\n        pos = self.target_position\n        target_size = self.target_size\n        # TODO: I believe the way they implement this is following SiamFC/SiamRPN/SiamRCNN. However, the search_size\n        # here may not always match the template scale. Will need to modify it according to our previous implementation\n        # on SiamMask\n\n        # calculate the resize_factor\n        wc_x = target_size[1]\n        hc_x = target_size[0]\n        s_x = round(math.ceil(np.sqrt(wc_x * hc_x) / self.context_amount))\n\n        crop_sz = round(math.ceil(s_x * (self.search_size) / (self.template_size)))\n\n        t = time.time()\n        x_patch_arr, resize_factor, x_amask_arr = sample_target(\n            img_npy,\n            # need to convert cx, cy, w, h to x, y, w, h\n            pos,\n            crop_sz,\n            output_sz=self.search_size,\n            verbose=self.verbose,\n        )  # (x1, y1, w, h)\n\n        if self.verbose:\n            logging.error(\n                f\"Crop patch size {crop_sz} wc_x hc_x {(wc_x, hc_x)} img size {(img_h, img_w)} {time.time() - t}\"\n            )\n\n        # There might be slightly rounding errors, but the difference should be fairly small\n        # assert abs(scale_x - resize_factor) <= 0.01, f\"scale_x: {scale_x}, resize_factor: {resize_factor}\"\n\n        t = time.time()\n        search = self.preprocessor.process(x_patch_arr, x_amask_arr, device=self.device)\n\n        if self.verbose:\n            logging.error(\n                f\"Preprocess image with size {x_patch_arr.shape} takes {time.time() - t}\"\n            )\n\n        with torch.no_grad():\n            t = time.time()\n            x_dict = self.model.forward_backbone(search)\n\n            if self.verbose:\n                logging.error(f\"Feature extraction {time.time() - t}\")\n            # merge the template and the search\n            feat_dict_list = self.z_dict_list + [x_dict]\n            seq_dict = merge_template_search(feat_dict_list)\n            # run the transformer\n            t = time.time()\n            out_dict, _, _ = self.model.forward_transformer(\n                seq_dict=seq_dict, run_box_head=True, run_cls_head=True\n            )\n            if self.verbose:\n                logging.error(\n                    f\"Matching transformer {time.time() - t}\"\n                )  # get the final result\n        pred_boxes = out_dict[\"pred_boxes\"].view(-1, 4)\n        # Baseline: Take the mean of all pred boxes as the final result\n        pred_box = (\n            pred_boxes.mean(dim=0) * self.search_size / resize_factor\n        ).tolist()  # (cx, cy, w, h) [0,1]\n        # get the final box result\n        pred_box = clip_box(\n            self.map_box_back(pred_box, resize_factor), img_h, img_w, margin=10\n        )\n        # get confidence score (whether the search region is reliable)\n        conf_score = out_dict[\"pred_logits\"].view(-1).sigmoid().item()\n\n        return {\n            self.target_id: {\n                \"bbox\": pred_box,\n                \"score\": conf_score,\n                \"img_npy\": img_npy,\n            }\n        }\n\n    def update_tracker(self, results):\n        assert len(results) == 1, \"Only support tracking single object\"\n\n        for _, res in results.items():\n            bbox = res[\"bbox\"]\n            score = res[\"score\"]\n            image = res[\"img_npy\"]\n            # Convert to center xy\n            cbox = xywh_2_cxywh(bbox)[:2]\n            # Update the pos and size only when we are tracking the object locally\n            if self.is_search_local:\n                self.target_position = cbox[:2]\n                self.target_size = bbox[2:]\n\n                # update template\n                for idx, update_i in enumerate(self.update_intervals):\n                    if self.frame_step % update_i == 0 and score > 0.5:\n                        # calculate crop_sz\n                        pos = self.target_position\n                        target_size = self.target_size\n                        wc_x = target_size[1]\n                        hc_x = target_size[0]\n                        s_x = round(\n                            math.ceil(np.sqrt(wc_x * hc_x) / self.context_amount)\n                        )\n\n                        z_patch_arr, _, z_amask_arr = sample_target(\n                            image,\n                            pos,\n                            s_x,\n                            output_sz=self.template_size,\n                            verbose=self.verbose,\n                        )  # (x1, y1, w, h)\n                        template_t = self.preprocessor.process(\n                            z_patch_arr, z_amask_arr, device=self.device\n                        )\n                        with torch.no_grad():\n                            z_dict_t = self.model.forward_backbone(template_t)\n                        self.z_dict_list[\n                            idx + 1\n                        ] = z_dict_t  # the 1st element of z_dict_list is template from the 1st frame\n                        logging.info(\n                            f\"Update template {idx + 1}, confidence score {score}\"\n                        )\n\n    def map_box_back(self, pred_box: List, resize_factor: float, pos: List = None):\n        if pos is None:\n            cx_prev, cy_prev = (\n                self.target_position[0],\n                self.target_position[1],\n            )\n        else:\n            cx_prev, cy_prev = pos\n\n        cx, cy, w, h = pred_box\n        half_side = 0.5 * self.search_size / resize_factor\n        cx_real = cx + (cx_prev - half_side)\n        cy_real = cy + (cy_prev - half_side)\n        return [cx_real - 0.5 * w, cy_real - 0.5 * h, w, h]\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/transformer.py",
    "content": "\"\"\"\nSTARK Transformer class.\n\nCopy-paste from torch.nn.Transformer with modifications:\n    * positional encodings are passed in MHattention\n    * extra LN at the end of encoder is removed\n    * decoder returns a stack of activations from all decoding layers\n\n2020.12.23 Split some preprocess fom the forward function\n\"\"\"\nimport copy\nfrom typing import Optional\n\nimport torch\nimport torch.nn.functional as F\nfrom torch import nn, Tensor\n\n\ndef check_inf(tensor):\n    return torch.isinf(tensor.detach()).any()\n\n\ndef check_nan(tensor):\n    return torch.isnan(tensor.detach()).any()\n\n\ndef check_valid(tensor, type_name):\n    if check_inf(tensor):\n        print(\"%s is inf.\" % type_name)\n    if check_nan(tensor):\n        print(\"%s is nan\" % type_name)\n\n\nclass Transformer(nn.Module):\n    def __init__(\n        self,\n        d_model=512,\n        nhead=8,\n        num_encoder_layers=6,\n        num_decoder_layers=6,\n        dim_feedforward=2048,\n        dropout=0.1,\n        activation=\"relu\",\n        normalize_before=False,\n        return_intermediate_dec=False,\n        divide_norm=False,\n    ):\n        super().__init__()\n\n        encoder_layer = TransformerEncoderLayer(\n            d_model,\n            nhead,\n            dim_feedforward,\n            dropout,\n            activation,\n            normalize_before,\n            divide_norm=divide_norm,\n        )\n        encoder_norm = nn.LayerNorm(d_model) if normalize_before else None\n        if num_encoder_layers == 0:\n            self.encoder = None\n        else:\n            self.encoder = TransformerEncoder(\n                encoder_layer, num_encoder_layers, encoder_norm\n            )\n\n        decoder_layer = TransformerDecoderLayer(\n            d_model,\n            nhead,\n            dim_feedforward,\n            dropout,\n            activation,\n            normalize_before,\n            divide_norm=divide_norm,\n        )\n        decoder_norm = nn.LayerNorm(d_model)\n        if num_decoder_layers == 0:\n            self.decoder = None\n        else:\n            self.decoder = TransformerDecoder(\n                decoder_layer,\n                num_decoder_layers,\n                decoder_norm,\n                return_intermediate=return_intermediate_dec,\n            )\n\n        self._reset_parameters()\n\n        self.d_model = d_model\n        self.nhead = nhead\n        self.d_feed = dim_feedforward\n        # 2021.1.7 Try dividing norm to avoid NAN\n        self.divide_norm = divide_norm\n        self.scale_factor = float(d_model // nhead) ** 0.5\n\n    def _reset_parameters(self):\n        for p in self.parameters():\n            if p.dim() > 1:\n                nn.init.xavier_uniform_(p)\n\n    def forward(\n        self,\n        feat,\n        mask,\n        query_embed,\n        pos_embed,\n        mode=\"all\",\n        return_encoder_output=False,\n    ):\n        \"\"\"\n\n        :param feat: (H1W1+H2W2, bs, C)\n        :param mask: (bs, H1W1+H2W2)\n        :param query_embed: (N, C) or (N, B, C)\n        :param pos_embed: (H1W1+H2W2, bs, C)\n        :param mode: run the whole transformer or encoder only\n        :param return_encoder_output: whether to return the output of encoder (together with decoder)\n        :return:\n        \"\"\"\n        assert mode in [\"all\", \"encoder\"]\n        if self.encoder is None:\n            memory = feat\n        else:\n            memory = self.encoder(feat, src_key_padding_mask=mask, pos=pos_embed)\n        if mode == \"encoder\":\n            return memory\n        elif mode == \"all\":\n            assert len(query_embed.size()) in [2, 3]\n            if len(query_embed.size()) == 2:\n                bs = feat.size(1)\n                query_embed = query_embed.unsqueeze(1).repeat(\n                    1, bs, 1\n                )  # (N,C) --> (N,1,C) --> (N,B,C)\n            if self.decoder is not None:\n                tgt = torch.zeros_like(query_embed)\n                hs = self.decoder(\n                    tgt,\n                    memory,\n                    memory_key_padding_mask=mask,\n                    pos=pos_embed,\n                    query_pos=query_embed,\n                )\n            else:\n                hs = query_embed.unsqueeze(0)\n            if return_encoder_output:\n                return hs.transpose(1, 2), memory  # (1, B, N, C)\n            else:\n                return hs.transpose(1, 2)  # (1, B, N, C)\n\n\nclass TransformerEncoder(nn.Module):\n    def __init__(self, encoder_layer, num_layers, norm=None):\n        super().__init__()\n        self.layers = _get_clones(encoder_layer, num_layers)\n        self.num_layers = num_layers\n        self.norm = norm\n\n    def forward(\n        self,\n        src,\n        mask: Optional[Tensor] = None,\n        src_key_padding_mask: Optional[Tensor] = None,\n        pos: Optional[Tensor] = None,\n        return_intermediate=False,\n    ):\n        if return_intermediate:\n            output_list = []\n            output = src\n\n            for layer in self.layers:\n                output = layer(\n                    output,\n                    src_mask=mask,\n                    src_key_padding_mask=src_key_padding_mask,\n                    pos=pos,\n                )\n                if self.norm is None:\n                    output_list.append(output)\n            if self.norm is not None:\n                output = self.norm(output)\n                output_list.append(output)\n            return output_list\n        else:\n            output = src\n\n            for layer in self.layers:\n                output = layer(\n                    output,\n                    src_mask=mask,\n                    src_key_padding_mask=src_key_padding_mask,\n                    pos=pos,\n                )\n\n            if self.norm is not None:\n                output = self.norm(output)\n\n            return output\n\n\nclass TransformerEncoderLite(nn.Module):\n    def __init__(self, encoder_layer, num_layers, norm=None):\n        super().__init__()\n        self.layers = _get_clones(encoder_layer, num_layers)\n        self.num_layers = num_layers\n        self.norm = norm\n        assert self.num_layers == 1\n\n    def forward(self, seq_dict, return_intermediate=False, part_att=False):\n        if return_intermediate:\n            output_list = []\n\n            # for layer in self.layers:\n            output = self.layers[-1](seq_dict, part_att=part_att)\n            if self.norm is None:\n                output_list.append(output)\n            if self.norm is not None:\n                output = self.norm(output)\n                output_list.append(output)\n            return output_list\n        else:\n            output = self.layers[-1](seq_dict, part_att=part_att)\n\n            if self.norm is not None:\n                output = self.norm(output)\n\n            return output\n\n\nclass TransformerDecoder(nn.Module):\n    def __init__(self, decoder_layer, num_layers, norm=None, return_intermediate=False):\n        super().__init__()\n        self.layers = _get_clones(decoder_layer, num_layers)\n        self.num_layers = num_layers\n        self.norm = norm\n        self.return_intermediate = return_intermediate\n\n    def forward(\n        self,\n        tgt,\n        memory,\n        tgt_mask: Optional[Tensor] = None,\n        memory_mask: Optional[Tensor] = None,\n        tgt_key_padding_mask: Optional[Tensor] = None,\n        memory_key_padding_mask: Optional[Tensor] = None,\n        pos: Optional[Tensor] = None,\n        query_pos: Optional[Tensor] = None,\n    ):\n        output = tgt\n\n        intermediate = []\n\n        for layer in self.layers:\n            output = layer(\n                output,\n                memory,\n                tgt_mask=tgt_mask,\n                memory_mask=memory_mask,\n                tgt_key_padding_mask=tgt_key_padding_mask,\n                memory_key_padding_mask=memory_key_padding_mask,\n                pos=pos,\n                query_pos=query_pos,\n            )\n            if self.return_intermediate:\n                intermediate.append(self.norm(output))\n\n        if self.norm is not None:\n            output = self.norm(output)\n            if self.return_intermediate:\n                intermediate.pop()\n                intermediate.append(output)\n\n        if self.return_intermediate:\n            return torch.stack(intermediate)\n\n        return output.unsqueeze(0)\n\n\nclass TransformerEncoderLayer(nn.Module):\n    def __init__(\n        self,\n        d_model,\n        nhead,\n        dim_feedforward=2048,\n        dropout=0.1,\n        activation=\"relu\",\n        normalize_before=False,\n        divide_norm=False,\n    ):\n        super().__init__()\n        self.self_attn = nn.MultiheadAttention(d_model, nhead, dropout=dropout)\n        # Implementation of Feedforward model\n        self.linear1 = nn.Linear(d_model, dim_feedforward)\n        self.dropout = nn.Dropout(dropout)\n        self.linear2 = nn.Linear(dim_feedforward, d_model)\n\n        self.norm1 = nn.LayerNorm(d_model)\n        self.norm2 = nn.LayerNorm(d_model)\n        self.dropout1 = nn.Dropout(dropout)\n        self.dropout2 = nn.Dropout(dropout)\n\n        self.activation = _get_activation_fn(activation)\n        self.normalize_before = normalize_before  # first normalization, then add\n\n        self.divide_norm = divide_norm\n        self.scale_factor = float(d_model // nhead) ** 0.5\n\n    def with_pos_embed(self, tensor, pos: Optional[Tensor]):\n        return tensor if pos is None else tensor + pos\n\n    def forward_post(\n        self,\n        src,\n        src_mask: Optional[Tensor] = None,\n        src_key_padding_mask: Optional[Tensor] = None,\n        pos: Optional[Tensor] = None,\n    ):\n        q = k = self.with_pos_embed(src, pos)  # add pos to src\n        if self.divide_norm:\n            # print(\"encoder divide by norm\")\n            q = q / torch.norm(q, dim=-1, keepdim=True) * self.scale_factor\n            k = k / torch.norm(k, dim=-1, keepdim=True)\n        src2 = self.self_attn(\n            q, k, src, attn_mask=src_mask, key_padding_mask=src_key_padding_mask\n        )[0]\n        src = src + self.dropout1(src2)\n        src = self.norm1(src)\n        src2 = self.linear2(self.dropout(self.activation(self.linear1(src))))\n        src = src + self.dropout2(src2)\n        src = self.norm2(src)\n        return src\n\n    def forward_pre(\n        self,\n        src,\n        src_mask: Optional[Tensor] = None,\n        src_key_padding_mask: Optional[Tensor] = None,\n        pos: Optional[Tensor] = None,\n    ):\n        src2 = self.norm1(src)\n        q = k = self.with_pos_embed(src2, pos)\n        src2 = self.self_attn(\n            q, k, value=src2, attn_mask=src_mask, key_padding_mask=src_key_padding_mask\n        )[0]\n        src = src + self.dropout1(src2)\n        src2 = self.norm2(src)\n        src2 = self.linear2(self.dropout(self.activation(self.linear1(src2))))\n        src = src + self.dropout2(src2)\n        return src\n\n    def forward(\n        self,\n        src,\n        src_mask: Optional[Tensor] = None,\n        src_key_padding_mask: Optional[Tensor] = None,\n        pos: Optional[Tensor] = None,\n    ):\n        if self.normalize_before:\n            return self.forward_pre(src, src_mask, src_key_padding_mask, pos)\n        return self.forward_post(src, src_mask, src_key_padding_mask, pos)\n\n\nclass TransformerEncoderLayerLite(nn.Module):\n    \"\"\"search region features as queries, concatenated features as keys and values\"\"\"\n\n    def __init__(\n        self,\n        d_model,\n        nhead,\n        dim_feedforward=2048,\n        dropout=0.1,\n        activation=\"relu\",\n        normalize_before=False,\n        divide_norm=False,\n    ):\n        super().__init__()\n        self.self_attn = nn.MultiheadAttention(d_model, nhead, dropout=dropout)\n        # Implementation of Feedforward model\n        self.linear1 = nn.Linear(d_model, dim_feedforward)\n        self.dropout = nn.Dropout(dropout)\n        self.linear2 = nn.Linear(dim_feedforward, d_model)\n\n        self.norm1 = nn.LayerNorm(d_model)\n        self.norm2 = nn.LayerNorm(d_model)\n        self.dropout1 = nn.Dropout(dropout)\n        self.dropout2 = nn.Dropout(dropout)\n\n        self.activation = _get_activation_fn(activation)\n        self.normalize_before = normalize_before  # first normalization, then add\n\n        self.divide_norm = divide_norm\n        self.scale_factor = float(d_model // nhead) ** 0.5\n\n    def with_pos_embed(self, tensor, pos: Optional[Tensor]):\n        return tensor if pos is None else tensor + pos\n\n    def forward_post(self, seq_dict, part_att=False):\n        \"\"\"\n        seq_dict: sequence dict of both the search region and the template (concatenated)\n        \"\"\"\n        if part_att:\n            # print(\"using part attention\")\n            q = self.with_pos_embed(\n                seq_dict[\"feat_x\"], seq_dict[\"pos_x\"]\n            )  # search region as query\n            k = self.with_pos_embed(\n                seq_dict[\"feat_z\"], seq_dict[\"pos_z\"]\n            )  # template as key\n            v = seq_dict[\"feat_z\"]\n            key_padding_mask = seq_dict[\"mask_z\"]\n            # print(q.size(), k.size(), v.size())\n        else:\n            q = self.with_pos_embed(\n                seq_dict[\"feat_x\"], seq_dict[\"pos_x\"]\n            )  # search region as query\n            k = self.with_pos_embed(seq_dict[\"feat\"], seq_dict[\"pos\"])  # concat as key\n            v = seq_dict[\"feat\"]\n            key_padding_mask = seq_dict[\"mask\"]\n        if self.divide_norm:\n            raise ValueError(\"divide norm is not supported.\")\n        # s = time.time()\n        src2 = self.self_attn(q, k, value=v, key_padding_mask=key_padding_mask)[0]\n        src = q + self.dropout1(src2)\n        src = self.norm1(src)\n        # e1 = time.time()\n        src2 = self.linear2(self.dropout(self.activation(self.linear1(src))))\n        src = src + self.dropout2(src2)\n        src = self.norm2(src)\n        # e2 = time.time()\n        # print(\"self-attention time: %.1f\" % ((e1-s) * 1000))\n        # print(\"MLP time: %.1f\" % ((e2-e1) * 1000))\n        return src\n\n    def forward(self, seq_dict, part_att=False):\n        if self.normalize_before:\n            raise ValueError(\"PRE-NORM is not supported now\")\n        return self.forward_post(seq_dict, part_att=part_att)\n\n\nclass TransformerDecoderLayer(nn.Module):\n    def __init__(\n        self,\n        d_model,\n        nhead,\n        dim_feedforward=2048,\n        dropout=0.1,\n        activation=\"relu\",\n        normalize_before=False,\n        divide_norm=False,\n    ):\n        super().__init__()\n        self.self_attn = nn.MultiheadAttention(d_model, nhead, dropout=dropout)\n        self.multihead_attn = nn.MultiheadAttention(d_model, nhead, dropout=dropout)\n        # Implementation of Feedforward model\n        self.linear1 = nn.Linear(d_model, dim_feedforward)\n        self.dropout = nn.Dropout(dropout)\n        self.linear2 = nn.Linear(dim_feedforward, d_model)\n\n        self.norm1 = nn.LayerNorm(d_model)\n        self.norm2 = nn.LayerNorm(d_model)\n        self.norm3 = nn.LayerNorm(d_model)\n        self.dropout1 = nn.Dropout(dropout)\n        self.dropout2 = nn.Dropout(dropout)\n        self.dropout3 = nn.Dropout(dropout)\n\n        self.activation = _get_activation_fn(activation)\n        self.normalize_before = normalize_before\n\n        self.divide_norm = divide_norm\n        self.scale_factor = float(d_model // nhead) ** 0.5\n\n    def with_pos_embed(self, tensor, pos: Optional[Tensor]):\n        return tensor if pos is None else tensor + pos\n\n    def forward_post(\n        self,\n        tgt,\n        memory,\n        tgt_mask: Optional[Tensor] = None,\n        memory_mask: Optional[Tensor] = None,\n        tgt_key_padding_mask: Optional[Tensor] = None,\n        memory_key_padding_mask: Optional[Tensor] = None,\n        pos: Optional[Tensor] = None,\n        query_pos: Optional[Tensor] = None,\n    ):\n        # self-attention\n        q = k = self.with_pos_embed(\n            tgt, query_pos\n        )  # Add object query to the query and key\n        if self.divide_norm:\n            q = q / torch.norm(q, dim=-1, keepdim=True) * self.scale_factor\n            k = k / torch.norm(k, dim=-1, keepdim=True)\n        tgt2 = self.self_attn(\n            q, k, tgt, attn_mask=tgt_mask, key_padding_mask=tgt_key_padding_mask\n        )[0]\n        tgt = tgt + self.dropout1(tgt2)\n        tgt = self.norm1(tgt)\n        # mutual attention\n        queries, keys = self.with_pos_embed(tgt, query_pos), self.with_pos_embed(\n            memory, pos\n        )\n        if self.divide_norm:\n            queries = (\n                queries / torch.norm(queries, dim=-1, keepdim=True) * self.scale_factor\n            )\n            keys = keys / torch.norm(keys, dim=-1, keepdim=True)\n        tgt2 = self.multihead_attn(\n            queries,\n            keys,\n            memory,\n            attn_mask=memory_mask,\n            key_padding_mask=memory_key_padding_mask,\n        )[0]\n        tgt = tgt + self.dropout2(tgt2)\n        tgt = self.norm2(tgt)\n        tgt2 = self.linear2(self.dropout(self.activation(self.linear1(tgt))))\n        tgt = tgt + self.dropout3(tgt2)\n        tgt = self.norm3(tgt)\n        return tgt\n\n    def forward_pre(\n        self,\n        tgt,\n        memory,\n        tgt_mask: Optional[Tensor] = None,\n        memory_mask: Optional[Tensor] = None,\n        tgt_key_padding_mask: Optional[Tensor] = None,\n        memory_key_padding_mask: Optional[Tensor] = None,\n        pos: Optional[Tensor] = None,\n        query_pos: Optional[Tensor] = None,\n    ):\n        tgt2 = self.norm1(tgt)\n        q = k = self.with_pos_embed(tgt2, query_pos)\n        tgt2 = self.self_attn(\n            q, k, value=tgt2, attn_mask=tgt_mask, key_padding_mask=tgt_key_padding_mask\n        )[0]\n        tgt = tgt + self.dropout1(tgt2)\n        tgt2 = self.norm2(tgt)\n        tgt2 = self.multihead_attn(\n            query=self.with_pos_embed(tgt2, query_pos),\n            key=self.with_pos_embed(memory, pos),\n            value=memory,\n            attn_mask=memory_mask,\n            key_padding_mask=memory_key_padding_mask,\n        )[0]\n        tgt = tgt + self.dropout2(tgt2)\n        tgt2 = self.norm3(tgt)\n        tgt2 = self.linear2(self.dropout(self.activation(self.linear1(tgt2))))\n        tgt = tgt + self.dropout3(tgt2)\n        return tgt\n\n    def forward(\n        self,\n        tgt,\n        memory,\n        tgt_mask: Optional[Tensor] = None,\n        memory_mask: Optional[Tensor] = None,\n        tgt_key_padding_mask: Optional[Tensor] = None,\n        memory_key_padding_mask: Optional[Tensor] = None,\n        pos: Optional[Tensor] = None,\n        query_pos: Optional[Tensor] = None,\n    ):\n        if self.normalize_before:\n            return self.forward_pre(\n                tgt,\n                memory,\n                tgt_mask,\n                memory_mask,\n                tgt_key_padding_mask,\n                memory_key_padding_mask,\n                pos,\n                query_pos,\n            )\n        return self.forward_post(\n            tgt,\n            memory,\n            tgt_mask,\n            memory_mask,\n            tgt_key_padding_mask,\n            memory_key_padding_mask,\n            pos,\n            query_pos,\n        )\n\n\ndef _get_clones(module, N):\n    return nn.ModuleList([copy.deepcopy(module) for i in range(N)])\n\n\ndef build_transformer(cfg):\n    return Transformer(\n        d_model=cfg.MODEL.HIDDEN_DIM,\n        dropout=cfg.MODEL.TRANSFORMER.DROPOUT,\n        nhead=cfg.MODEL.TRANSFORMER.NHEADS,\n        dim_feedforward=cfg.MODEL.TRANSFORMER.DIM_FEEDFORWARD,\n        num_encoder_layers=cfg.MODEL.TRANSFORMER.ENC_LAYERS,\n        num_decoder_layers=cfg.MODEL.TRANSFORMER.DEC_LAYERS,\n        normalize_before=cfg.MODEL.TRANSFORMER.PRE_NORM,\n        return_intermediate_dec=False,  # we use false to avoid DDP error,\n        divide_norm=cfg.MODEL.TRANSFORMER.DIVIDE_NORM,\n    )\n\n\ndef _get_activation_fn(activation):\n    \"\"\"Return an activation function given a string\"\"\"\n    if activation == \"relu\":\n        return F.relu\n    if activation == \"gelu\":\n        return F.gelu\n    if activation == \"glu\":\n        return F.glu\n    raise RuntimeError(f\"activation should be relu/gelu, not {activation}.\")\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/utils/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/utils/box_ops.py",
    "content": "from typing import List\n\nimport torch\nfrom torchvision.ops.boxes import box_area\n\n\ndef box_cxcywh_to_xyxy(x):\n    x_c, y_c, w, h = x.unbind(-1)\n    b = [(x_c - 0.5 * w), (y_c - 0.5 * h), (x_c + 0.5 * w), (y_c + 0.5 * h)]\n    return torch.stack(b, dim=-1)\n\n\ndef box_xywh_to_xyxy(x):\n    x1, y1, w, h = x.unbind(-1)\n    b = [x1, y1, x1 + w, y1 + h]\n    return torch.stack(b, dim=-1)\n\n\ndef box_xyxy_to_xywh(x):\n    x1, y1, x2, y2 = x.unbind(-1)\n    b = [x1, y1, x2 - x1, y2 - y1]\n    return torch.stack(b, dim=-1)\n\n\ndef box_xyxy_to_cxcywh(x):\n    x0, y0, x1, y1 = x.unbind(-1)\n    b = [(x0 + x1) / 2, (y0 + y1) / 2, (x1 - x0), (y1 - y0)]\n    return torch.stack(b, dim=-1)\n\n\n# modified from torchvision to also return the union\n\"\"\"Note that this function only supports shape (N,4)\"\"\"\n\n\ndef box_iou(boxes1, boxes2):\n    \"\"\"\n\n    :param boxes1: (N, 4) (x1,y1,x2,y2)\n    :param boxes2: (N, 4) (x1,y1,x2,y2)\n    :return:\n    \"\"\"\n    area1 = box_area(boxes1)  # (N,)\n    area2 = box_area(boxes2)  # (N,)\n\n    lt = torch.max(boxes1[:, :2], boxes2[:, :2])  # (N,2)\n    rb = torch.min(boxes1[:, 2:], boxes2[:, 2:])  # (N,2)\n\n    wh = (rb - lt).clamp(min=0)  # (N,2)\n    inter = wh[:, 0] * wh[:, 1]  # (N,)\n\n    union = area1 + area2 - inter\n\n    iou = inter / union\n    return iou, union\n\n\n\"\"\"Note that this implementation is different from DETR's\"\"\"\n\n\ndef generalized_box_iou(boxes1, boxes2):\n    \"\"\"\n    Generalized IoU from https://giou.stanford.edu/\n\n    The boxes should be in [x0, y0, x1, y1] format\n\n    boxes1: (N, 4)\n    boxes2: (N, 4)\n    \"\"\"\n    # degenerate boxes gives inf / nan results\n    # so do an early check\n    # try:\n    assert (boxes1[:, 2:] >= boxes1[:, :2]).all()\n    assert (boxes2[:, 2:] >= boxes2[:, :2]).all()\n    iou, union = box_iou(boxes1, boxes2)  # (N,)\n\n    lt = torch.min(boxes1[:, :2], boxes2[:, :2])\n    rb = torch.max(boxes1[:, 2:], boxes2[:, 2:])\n\n    wh = (rb - lt).clamp(min=0)  # (N,2)\n    area = wh[:, 0] * wh[:, 1]  # (N,)\n\n    return iou - (area - union) / area, iou\n\n\ndef giou_loss(boxes1, boxes2):\n    \"\"\"\n\n    :param boxes1: (N, 4) (x1,y1,x2,y2)\n    :param boxes2: (N, 4) (x1,y1,x2,y2)\n    :return:\n    \"\"\"\n    giou, iou = generalized_box_iou(boxes1, boxes2)\n    return (1 - giou).mean(), iou\n\n\ndef clip_box(box: List, H, W, margin=0):\n    x1, y1, w, h = box\n    x2, y2 = x1 + w, y1 + h\n    x1 = min(max(0, x1), W - margin)\n    x2 = min(max(margin, x2), W)\n    y1 = min(max(0, y1), H - margin)\n    y2 = min(max(margin, y2), H)\n    w = max(margin, x2 - x1)\n    h = max(margin, y2 - y1)\n    return [x1, y1, w, h]\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/utils/merge.py",
    "content": "import torch\n\n\ndef merge_template_search(inp_list, return_search=False, return_template=False):\n    \"\"\"NOTICE: search region related features must be in the last place\"\"\"\n    seq_dict = {\n        \"feat\": torch.cat([x[\"feat\"] for x in inp_list], dim=0),\n        \"mask\": torch.cat([x[\"mask\"] for x in inp_list], dim=1),\n        \"pos\": torch.cat([x[\"pos\"] for x in inp_list], dim=0),\n    }\n    if return_search:\n        x = inp_list[-1]\n        seq_dict.update({\"feat_x\": x[\"feat\"], \"mask_x\": x[\"mask\"], \"pos_x\": x[\"pos\"]})\n    if return_template:\n        z = inp_list[0]\n        seq_dict.update({\"feat_z\": z[\"feat\"], \"mask_z\": z[\"mask\"], \"pos_z\": z[\"pos\"]})\n    return seq_dict\n\n\ndef get_qkv(inp_list):\n    \"\"\"The 1st element of the inp_list is about the template,\n    the 2nd (the last) element is about the search region\"\"\"\n    dict_x = inp_list[-1]\n    dict_c = {\n        \"feat\": torch.cat([x[\"feat\"] for x in inp_list], dim=0),\n        \"mask\": torch.cat([x[\"mask\"] for x in inp_list], dim=1),\n        \"pos\": torch.cat([x[\"pos\"] for x in inp_list], dim=0),\n    }  # concatenated dict\n    q = dict_x[\"feat\"] + dict_x[\"pos\"]\n    k = dict_c[\"feat\"] + dict_c[\"pos\"]\n    v = dict_c[\"feat\"]\n    key_padding_mask = dict_c[\"mask\"]\n    return q, k, v, key_padding_mask\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/utils/misc.py",
    "content": "# lib.utils.misc\n\nimport logging\nimport time\nfrom typing import Optional\n\nimport numpy as np\nimport torch\nimport torch.distributed as dist\nfrom torch import Tensor\n\n\ndef is_dist_avail_and_initialized():\n    if not dist.is_available():\n        return False\n    if not dist.is_initialized():\n        return False\n    return True\n\n\ndef get_world_size():\n    if not is_dist_avail_and_initialized():\n        return 1\n    return dist.get_world_size()\n\n\ndef get_rank():\n    if not is_dist_avail_and_initialized():\n        return 0\n    return dist.get_rank()\n\n\ndef is_main_process():\n    # TODO: this is to disable download resnet50 checkpoint.\n    # change the url to the right manifold location\n    return get_rank() == 0\n\n\nclass NestedTensor(object):\n    def __init__(self, tensors, mask: Optional[Tensor]):\n        self.tensors = tensors\n        self.mask = mask\n\n    def to(self, device):\n        # type: (Device) -> NestedTensor # noqa\n        cast_tensor = self.tensors.to(device)\n        mask = self.mask\n        if mask is not None:\n            assert mask is not None\n            cast_mask = mask.to(device)\n        else:\n            cast_mask = None\n        return NestedTensor(cast_tensor, cast_mask)\n\n    def decompose(self):\n        return self.tensors, self.mask\n\n    def __repr__(self):\n        return str(self.tensors)\n\n\nclass Preprocessor(object):\n    def __init__(self):\n        self.mean = torch.tensor([0.485, 0.456, 0.406]).view((1, 3, 1, 1))\n        self.std = torch.tensor([0.229, 0.224, 0.225]).view((1, 3, 1, 1))\n\n    def process(\n        self,\n        img_arr: np.ndarray,\n        amask_arr: np.ndarray,\n        device: torch.device = None,\n        verbose: bool = False,\n    ):\n        # Deal with the image patch\n        if device is not None:\n            img_tensor = (\n                torch.tensor(img_arr)\n                .float()\n                .permute((2, 0, 1))\n                .unsqueeze(dim=0)\n                .to(device)\n            )\n            t = time.time()\n            img_tensor_norm = (\n                (img_tensor / 255.0) - self.mean.to(device)\n            ) / self.std.to(\n                device\n            )  # (1,3,H,W)\n\n            if verbose:\n                logging.error(f\"Normalize image {time.time() - t}\")\n\n            # Deal with the attention mask\n            amask_tensor = (\n                torch.from_numpy(amask_arr).to(torch.bool).unsqueeze(dim=0)\n            ).to(\n                device\n            )  # (1,H,W)\n        else:\n            img_tensor = (\n                torch.tensor(img_arr).float().permute((2, 0, 1)).unsqueeze(dim=0)\n            )\n            img_tensor_norm = ((img_tensor / 255.0) - self.mean) / self.std  # (1,3,H,W)\n            # Deal with the attention mask\n            amask_tensor = (\n                torch.from_numpy(amask_arr).to(torch.bool).unsqueeze(dim=0)\n            )  # (1,H,W)\n\n        return NestedTensor(img_tensor_norm, amask_tensor)\n"
  },
  {
    "path": "EgoTracks/tracking/models/stark_tracker/utils/preprocessing_utils.py",
    "content": "import logging\nimport time\n\nimport cv2\n\nimport numpy as np\nimport torch.nn.functional as F\n\n\"\"\"modified from the original test implementation\nReplace cv.BORDER_REPLICATE with cv.BORDER_CONSTANT\nAdd a variable called att_mask for computing attention and positional encoding later\"\"\"\n\n\ndef sample_target(im, pos, crop_sz, output_sz=None, mask=None, verbose=False):\n    \"\"\"Extracts a square crop centered at target_bb box, of area search_area_factor^2 times target_bb area\n    args:\n        im - cv image\n        target_bb - target box [x, y, w, h]\n        crop_sz - Crop size on the original input image\n        output_sz - (float) Size to which the extracted crop is resized (always square). If None, no resizing is done.\n        verbose - (bool) Boolean flag that indicates whether to log profiling information.\n    returns:\n        cv image - extracted crop\n        float - the factor by which the crop has been resized to make the crop size equal output_size\n    \"\"\"\n    if isinstance(pos, float):\n        pos = [pos, pos]\n\n    c = (crop_sz + 1) / 2\n    x1 = round(pos[0] - c)\n    y1 = round(pos[1] - c)\n\n    if crop_sz < 1:\n        raise Exception(f\"Too small bounding box. pos {pos}, crop_sz {crop_sz}\")\n\n    x2 = x1 + crop_sz\n\n    y2 = y1 + crop_sz\n\n    x1_pad = max(0, -x1)\n    x2_pad = max(x2 - im.shape[1] + 1, 0)\n\n    y1_pad = max(0, -y1)\n    y2_pad = max(y2 - im.shape[0] + 1, 0)\n\n    # Crop target\n    im_crop = im[y1 + y1_pad : y2 - y2_pad, x1 + x1_pad : x2 - x2_pad, :]\n    if mask is not None:\n        mask_crop = mask[y1 + y1_pad : y2 - y2_pad, x1 + x1_pad : x2 - x2_pad]\n\n    # Pad\n    t = time.time()\n    im_crop_padded = cv2.copyMakeBorder(\n        im_crop, y1_pad, y2_pad, x1_pad, x2_pad, cv2.BORDER_CONSTANT\n    )\n    if verbose:\n        logging.error(f\"padd takes {time.time() - t}\")\n    # deal with attention mask\n    H, W, _ = im_crop_padded.shape\n    t = time.time()\n    att_mask = np.ones((H, W))\n    if verbose:\n        logging.error(f\"Init att_mask {(H, W)} takes {time.time() - t}\")\n    end_x, end_y = -x2_pad, -y2_pad\n    if y2_pad == 0:\n        end_y = None\n    if x2_pad == 0:\n        end_x = None\n    att_mask[y1_pad:end_y, x1_pad:end_x] = 0\n    if mask is not None:\n        mask_crop_padded = F.pad(\n            mask_crop, pad=(x1_pad, x2_pad, y1_pad, y2_pad), mode=\"constant\", value=0\n        )\n\n    if output_sz is not None:\n        resize_factor = output_sz / crop_sz\n        t = time.time()\n        prev_shape = im_crop_padded.shape\n        im_crop_padded = cv2.resize(im_crop_padded, (output_sz, output_sz))\n        att_mask = cv2.resize(att_mask, (output_sz, output_sz)).astype(np.bool_)\n        if verbose:\n            logging.error(f\"Resize {prev_shape} to {output_sz} {time.time() - t}\")\n        if mask is None:\n            return im_crop_padded, resize_factor, att_mask\n        mask_crop_padded = F.interpolate(\n            mask_crop_padded[None, None],\n            (output_sz, output_sz),\n            mode=\"bilinear\",\n            align_corners=False,\n        )[0, 0]\n        return im_crop_padded, resize_factor, att_mask, mask_crop_padded\n\n    else:\n        if mask is None:\n            return im_crop_padded, att_mask.astype(np.bool_), 1.0\n        return im_crop_padded, 1.0, att_mask.astype(np.bool_), mask_crop_padded\n"
  },
  {
    "path": "EgoTracks/tracking/models/template.py",
    "content": "#!/usr/bin/env python3\n\n\"\"\"\nObject registration classes and helper functions. The following classes\nprovide functionality to register instances given images. Those images\nwill can be used as template images to track objects.\n\nIntake from\nvision/fair_accel/pixar_env/pixar_environment/visual_query/visual_query/utils/register_helper.py\n\"\"\"\n\nfrom typing import Any, Iterator, List\n\n\nclass TemplateImage:\n    \"\"\"\n    Define a template image.\n\n    The visual query pipeline will use at least one\n    template image of a given object instance to look for that object in the video.\n    \"\"\"\n\n    def __init__(\n        self,\n        image: Any,\n        bbox: List = None,\n        features: Any = None,\n        cropped: bool = True,\n    ) -> None:\n        \"\"\"\n        Initialize a TemplateImage object.\n\n        Args:\n            image: the image to be used as a template\n            bbox (list): the bounding box for the object in the image (will be None if the object\n                region is cropped, aka cropped=True)\n            features: the feature map for the image\n            cropped (bool): will be True if the object region is already cropped\n        \"\"\"\n        self.image = image\n        self.bbox = bbox\n        self.features = features\n        self.cropped = cropped\n\n    def update_template(self, attribute: str, value: Any) -> None:\n        \"\"\"\n        Update an attribute of the TemplateImage object with the given value.\n\n        For example, `update_template(\"features\", value)` means `self.features = value`\n\n        Args:\n            attribute (str): the string of the attribute to be updated\n            value (any): the new value of the desired attribute to change\n\n        Returns:\n            None\n        \"\"\"\n        if attribute == \"image\":\n            self.image = value\n        elif attribute == \"bbox\":\n            self.bbox = value\n        elif attribute == \"features\":\n            self.features = value\n        elif attribute == \"cropped\":\n            self.cropped = value\n\n\nclass ObjectInstance:\n    \"\"\"\n    An object instance with a list of TemplateImage template images.\n\n    The ObjectInstance class organizes all template images for a given instance.\n    \"\"\"\n\n    def __init__(self, description: str = \"\") -> None:\n        \"\"\"\n        Initialize a new object instance.\n        \"\"\"\n        self.description = description\n        self.templates = []\n\n    def add_template(\n        self, image: Any, bbox: List = None, features: Any = None, cropped: bool = True\n    ) -> None:\n        \"\"\"\n        Add a new object template to the list of templates.\n\n        Args:\n            image: the image to be used as a template\n            bbox: the bounding box for the object in the image (will be None if the object\n                region is cropped, aka cropped=True)\n            features: the feature map for the image\n            cropped (bool): will be True if the object region is already cropped\n        \"\"\"\n        # instantiate TemplateImage to add a new template image to the list\n        template = TemplateImage(image, bbox, features, cropped)\n        self.templates.append(template)\n\n    def get_templates_list(self) -> List:\n        \"\"\"\n        Returns the list of templates.\n\n        Args:\n            None\n\n        Returns:\n            self.templates (list): the list of TemplateImage templates\n        \"\"\"\n        return self.templates\n\n    def __iter__(self):\n        \"\"\"\n        Gets an iterator object through the templates list.\n\n        Returns:\n            iterator: an iterator for the templates list\n        \"\"\"\n        return iter(self.templates)\n\n    def __len__(self) -> int:\n        \"\"\"\n        Gets the number of templates\n\n        Args:\n            None\n\n        Returns:\n            int: the length of the templates list\n        \"\"\"\n        return len(self.templates)\n\n\nclass InstanceRegistration:\n    \"\"\"\n    Define the InstanceRegistration class to hold all registered instances.\n\n    The instance register will esentially be a dictionary containing all object\n    instances corresponding to their instance ID's.\n    The structure will be:\n    instances = {\n        \"instance_id_1\": ObjectInstance(),\n        \"instance_id_2\": ObjectInstance(),\n    }\n    \"\"\"\n\n    def __init__(self) -> None:\n        \"\"\"\n        Initialize the InstanceRegistration class.\n        \"\"\"\n        self.instances = {}  # the dictionary to hold all registered instances\n\n    def add(\n        self,\n        instance_id: str,\n        image: Any,\n        bbox: List = None,\n        path: str = None,\n        features: Any = None,\n        cropped: bool = True,\n        description: str = None,\n    ) -> None:\n        \"\"\"\n        Register a new instance and add it to the InstanceRegistration object.\n\n        If the instance ID is not in the register, add a new ID and ObjectInstance\n        pair to the dictionary. If instance ID already exists, append new templates\n        to the ObjectInstance value.\n\n        Args:\n            instance_id (str): the instance ID number\n            image: the image to be used as a template\n            bbox: the bounding box for the object in the image (will be None if the object\n                region is cropped, aka cropped=True)\n            features: the feature map for the image\n            cropped (bool): will be True if the object region is already cropped\n            description (str): a string description of the object instance\n        \"\"\"\n        if instance_id not in self.instances:\n            self.instances[instance_id] = ObjectInstance(description)\n\n        self.instances[instance_id].add_template(image, bbox, features, cropped)\n\n    def remove(self, instance_id: str) -> None:\n        \"\"\"\n        Remove an instance from the register.\n\n        Args:\n            instance_id (str): the instance id (number) to remove\n\n        Returns:\n            None\n        \"\"\"\n        if instance_id in self.instances:\n            self.instances.pop(instance_id)\n\n    def get_instance(self, instance_id: str) -> ObjectInstance:\n        \"\"\"\n        Get the instance associated with a given instance id.\n\n        Args:\n            instance_id (str): the instance id (number)\n\n        Returns:\n            ObjectInstance: an instance from the instances dictionary of type ObjectInstance\n        \"\"\"\n        return self.instances[instance_id]\n\n    def get_instance_ids(self) -> List:\n        \"\"\"\n        Gets the instance ids from the instances dictionary.\n\n        Args:\n            None\n\n        Returns:\n            keys (list): a list of keys (instance ids) from the instances dictionary\n        \"\"\"\n        return list(self.instances.keys())\n\n    def __iter__(self) -> Iterator:\n        \"\"\"\n        Get an iterator over the instances dictionary.\n\n        Returns an iterator where each element is a tupe of (key, value)\n        pairs from the instances dictionary. Keys are instance ids, values are\n        instances of type ObjectInstance\n\n        Args:\n            None\n\n        Returns:\n            iterator: an iterator through the items of the dictionary\n        \"\"\"\n        return iter(self.instances.items())\n\n    def __len__(self) -> int:\n        \"\"\"\n        Gets the number of instances in the instance dictionary.\n\n        Args:\n            None\n\n        Returns:\n            int: the length of the instance dictionary\n        \"\"\"\n        return len(self.instances)\n"
  },
  {
    "path": "EgoTracks/tracking/models/tracker.py",
    "content": "from abc import abstractmethod\nfrom typing import Dict, Union\n\nimport av\nimport numpy as np\nimport torch\nfrom torch import nn\nfrom tracking.dataset.eval_datasets.base_dataset import Sequence\n\n\nclass Tracker(nn.Module):\n    \"\"\"\n    Define a base class for tracking models.\n\n    The base class should have common functions designed for both\n    single object tracking (SOT) and multiple object tracking (MOT)\n    \"\"\"\n\n    def __init__(self, model: nn.Module, verbose: bool = False):\n        \"\"\"\n        Initialize a Tracker object.\n\n        Args:\n            model: a tracking model\n            verbose: boolean flag that indicates whether to log profiling information.\n        \"\"\"\n        super().__init__()\n        self.model = model\n        self.verbose = verbose\n\n    @abstractmethod\n    def inference(\n        self,\n        video: Union[torch.Tensor, np.ndarray, av.container.Container, Sequence],\n        meta_data: Dict = None,\n    ) -> Dict:\n        \"\"\"\n        Run tracking model on a video sequence.\n\n        Args:\n            video: either a torch Tensor that contains a sequence of images, [N, 3, H, W]\n                or a pointer to the video file (typically .mp4). Currently we only support\n                torch.Tensor as input.\n\n                The torch.Tensor is intended for short videos or dataset that consists of pngs,\n                while the av.container.Container is meant for long videos where loading each frame\n                into the memory is not practical.\n            meta_data: contains any other information regarding the specific video.\n                Examples of information can be stored are as follows:\n                For SOT, it should countain information such as initial target bbox.\n                For long videos, it could contain start and end frame number or timestamp where we\n                want to run tracking model.\n        Returns:\n            dict: contains tracking results, where key is the object_id. An example of the return result\n                should look like:\n                {\n                    \"object_id_1\":{\n                        \"label\": str,\n                        \"bboxes\": [\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            ...\n                        ]\n                    },\n                    \"object_id_2\":{},\n                    ...\n                }\n        \"\"\"\n        if isinstance(video, torch.Tensor) or isinstance(video, np.ndarray):\n            result = self.inference_img_sequence(video, meta_data)\n        elif isinstance(video, av.container.Container):\n            result = self.inference_video_handler(video, meta_data)\n        elif isinstance(video, Sequence):\n            result = self.inference_sequence(video, meta_data)\n        else:\n            raise NotImplementedError\n\n        return result\n\n    @abstractmethod\n    def inference_sequence(self, video: Sequence, meta_data: Dict = None) -> Dict:\n        \"\"\"\n        Run tracking model on a video sequence. Since some dataset stores video as individual frames and each sequence\n        can be quite large, it is not possible to pre-fetch all the data into memory (especially in multi-processing). So\n        we fetch those frames in an online fashion.\n\n        Args:\n            video: a Sequence contains frames path for the sequence\n            meta_data: contains any other information regarding the specific video.\n                It should contain:\n                \"target_bbox\", bounding box [x, y, w, h]\n                \"target_id\", target_id is a string and identifies a unique instance\n                \"frame_numbers\", corresponds to the frame number of each input image in the original video\n        Returns:\n            dict: contains tracking results, where key is the object_id. An example of the return result\n                should look like:\n                {\n                    \"object_id_1\":{\n                        \"label\": str,\n                        \"bboxes\": [\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            ...\n                        ]\n                }\n        \"\"\"\n\n    @abstractmethod\n    def inference_img_sequence(\n        self, video: torch.Tensor, meta_data: Dict = None\n    ) -> Dict:\n        \"\"\"\n        Run tracking model on a video sequence.\n\n        Args:\n            video: torch Tensor that contains a sequence of images, [N, 3, H, W]\n            meta_data: contains any other information regarding the specific video.\n                Examples of information can be stored are as follows:\n                For SOT, it should countain information such as initial target bbox.\n                For long videos, it could contain start and end frame number or timestamp where we\n                want to run tracking model.\n        Returns:\n            dict: contains tracking results, where key is the object_id. An example of the return result\n                should look like:\n                {\n                    \"object_id_1\":{\n                        \"label\": str,\n                        \"bboxes\": [\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            ...\n                        ]\n                    },\n                    \"object_id_2\":{},\n                    ...\n                }\n        \"\"\"\n        pass\n\n    @abstractmethod\n    def inference_video_handler(\n        self, video: av.container.Container, meta_data: Dict = None\n    ) -> Dict:\n        \"\"\"\n        Run tracking model on a video sequence.\n\n        Args:\n            video: a video handler of type av.container.Container to the video file (typically .mp4).\n            meta_data: contains any other information regarding the specific video.\n                Examples of information can be stored are as follows:\n                For SOT, it should countain information such as initial target bbox.\n                For long videos, it could contain start and end frame number or timestamp where we\n                want to run tracking model.\n        Returns:\n            dict: contains tracking results, where key is the object_id. An example of the return result\n                should look like:\n                {\n                    \"object_id_1\":{\n                        \"label\": str,\n                        \"bboxes\": [\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            {\n                                \"frame_number\": int,\n                                \"bbox\": [x, y, w, h],\n                                \"score\": float (confidence score),\n                            },\n                            ...\n                        ]\n                    },\n                    \"object_id_2\":{},\n                    ...\n                }\n        \"\"\"\n        pass\n\n    @abstractmethod\n    def run_model(self, image: torch.Tensor) -> Dict:\n        \"\"\"\n        Most tracking models run frame by frame. This function runs a single forward of the tracking model.\n\n        Args:\n            image: this is one image where we run one step of tracking, [N, 3, H, W]\n                N is the batchsize. In inference mode, N should equal to 1.\n        Returns:\n            dict: a dictionary holding tracking results for one image.\n                The structure of the dict is not listed as it may be specific to the model.\n                Common result contains \"bbox\" and \"score\"\n        \"\"\"\n        pass\n\n    @abstractmethod\n    def update_tracker(self, result: Dict) -> None:\n        \"\"\"\n        This function is used to update tracking information as the model runs through the video.\n        Typical updates can be: update the local tracking window for SOT, update memory bank of an\n        object, and etc.\n\n        Args:\n            results: a dictionary holding tracking results of for one image. It is designed to directly\n                use the output from self.run_model(image).\n        Returns:\n            None\n        \"\"\"\n        pass\n\n    @abstractmethod\n    def init_tracker(self, image: torch.Tensor, meta_data: Dict) -> None:\n        \"\"\"\n        This function is used to initilize the tracking model, typically the starting frame.\n        This is mostly designed for SOT, but can also be used to initilize MOT.\n\n        Args:\n            image: this is one image where we used to initilize the tracker, [1, 3, H, W]\n            meta: a dictionary contains information of target objects in this image.\n        Returns:\n            None\n        \"\"\"\n        pass\n\n    @abstractmethod\n    def reset_tracker(self) -> None:\n        \"\"\"\n        To reset the tracker after done running on one video.\n        Clear any intermediate variables to get a clean setup for next video.\n        \"\"\"\n        pass\n"
  },
  {
    "path": "EgoTracks/tracking/solver/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/solver/build.py",
    "content": "import logging\n\nimport detectron2.utils.comm as comm\nimport torch\n\n\ndef build_optimizer_scheduler(cfg, model):\n    optimizer = build_optimizer(cfg, model)\n    scheduler = build_scheduler(cfg, optimizer)\n\n    return optimizer, scheduler\n\n\ndef build_optimizer(cfg, model):\n    train_cls = getattr(cfg.TRAIN, \"TRAIN_CLS\", False)\n    if train_cls:\n        logging.info(\n            \"Only training classification head. Learnable parameters are shown below.\"\n        )\n        param_dicts = [\n            {\n                \"params\": [\n                    p\n                    for n, p in model.named_parameters()\n                    if \"cls\" in n and p.requires_grad\n                ]\n            }\n        ]\n\n        for n, p in model.named_parameters():\n            if \"cls\" not in n:\n                p.requires_grad = False\n            else:\n                logging.info(n)\n    else:\n        param_dicts = [\n            {\n                \"params\": [\n                    p\n                    for n, p in model.named_parameters()\n                    if \"backbone\" not in n and p.requires_grad\n                ]\n            },\n            {\n                \"params\": [\n                    p\n                    for n, p in model.named_parameters()\n                    if \"backbone\" in n and p.requires_grad\n                ],\n                \"lr\": cfg.TRAIN.LR * cfg.TRAIN.BACKBONE_MULTIPLIER,\n            },\n        ]\n        if comm.is_main_process():\n            logging.info(\"Learnable parameters are shown below.\")\n            for n, p in model.named_parameters():\n                if p.requires_grad:\n                    print(n)\n\n    if cfg.TRAIN.OPTIMIZER == \"ADAMW\":\n        optimizer = torch.optim.AdamW(\n            param_dicts, lr=cfg.TRAIN.LR, weight_decay=cfg.TRAIN.WEIGHT_DECAY\n        )\n    else:\n        raise ValueError(\"Unsupported Optimizer\")\n\n    return optimizer\n\n\ndef build_scheduler(cfg, optimizer):\n    if cfg.TRAIN.SCHEDULER.TYPE == \"step\":\n        lr_scheduler = torch.optim.lr_scheduler.StepLR(\n            optimizer, cfg.TRAIN.LR_DROP_EPOCH\n        )\n    elif cfg.TRAIN.SCHEDULER.TYPE == \"Mstep\":\n        lr_scheduler = torch.optim.lr_scheduler.MultiStepLR(\n            optimizer,\n            milestones=cfg.TRAIN.SCHEDULER.MILESTONES,\n            gamma=cfg.TRAIN.SCHEDULER.GAMMA,\n        )\n    else:\n        raise ValueError(\"Unsupported scheduler\")\n    return lr_scheduler\n\n\ndef get_optimizer_scheduler(net, cfg):\n    train_cls = getattr(cfg.TRAIN, \"TRAIN_CLS\", False)\n    if train_cls:\n        print(\n            \"Only training classification head. Learnable parameters are shown below.\"\n        )\n        param_dicts = [\n            {\n                \"params\": [\n                    p\n                    for n, p in net.named_parameters()\n                    if \"cls\" in n and p.requires_grad\n                ]\n            }\n        ]\n\n        for n, p in net.named_parameters():\n            if \"cls\" not in n:\n                p.requires_grad = False\n            else:\n                print(n)\n    else:\n        param_dicts = [\n            {\n                \"params\": [\n                    p\n                    for n, p in net.named_parameters()\n                    if \"backbone\" not in n and p.requires_grad\n                ]\n            },\n            {\n                \"params\": [\n                    p\n                    for n, p in net.named_parameters()\n                    if \"backbone\" in n and p.requires_grad\n                ],\n                \"lr\": cfg.TRAIN.LR * cfg.TRAIN.BACKBONE_MULTIPLIER,\n            },\n        ]\n        if comm.is_main_process():\n            logging.info(\"Learnable parameters are shown below.\")\n            for n, p in net.named_parameters():\n                if p.requires_grad:\n                    logging.info(n)\n\n    if cfg.TRAIN.OPTIMIZER == \"ADAMW\":\n        optimizer = torch.optim.AdamW(\n            param_dicts, lr=cfg.TRAIN.LR, weight_decay=cfg.TRAIN.WEIGHT_DECAY\n        )\n    else:\n        raise ValueError(\"Unsupported Optimizer\")\n    if cfg.TRAIN.SCHEDULER.TYPE == \"step\":\n        lr_scheduler = torch.optim.lr_scheduler.StepLR(\n            optimizer, cfg.TRAIN.LR_DROP_EPOCH\n        )\n    elif cfg.TRAIN.SCHEDULER.TYPE == \"Mstep\":\n        lr_scheduler = torch.optim.lr_scheduler.MultiStepLR(\n            optimizer,\n            milestones=cfg.TRAIN.SCHEDULER.MILESTONES,\n            gamma=cfg.TRAIN.SCHEDULER.GAMMA,\n        )\n    else:\n        raise ValueError(\"Unsupported scheduler\")\n    return optimizer, lr_scheduler\n"
  },
  {
    "path": "EgoTracks/tracking/utils/__init__.py",
    "content": ""
  },
  {
    "path": "EgoTracks/tracking/utils/bbox_helper.py",
    "content": "# --------------------------------------------------------\n# SiamMask\n# Licensed under The MIT License\n# Written by Qiang Wang (wangqiang2015 at ia.ac.cn)\n# --------------------------------------------------------\nfrom collections import namedtuple\nfrom typing import List\n\nimport numpy as np\n\nCorner = namedtuple(\"Corner\", \"x1 y1 x2 y2\")\nBBox = Corner\nCenter = namedtuple(\"Center\", \"x y w h\")\n\n\ndef corner2center(corner):\n    \"\"\"\n    :param corner: Corner or np.array 4*N\n    :return: Center or 4 np.array N\n    \"\"\"\n    if isinstance(corner, Corner):\n        x1, y1, x2, y2 = corner\n        return Center((x1 + x2) * 0.5, (y1 + y2) * 0.5, (x2 - x1), (y2 - y1))\n    else:\n        x1, y1, x2, y2 = corner[0], corner[1], corner[2], corner[3]\n        x = (x1 + x2) * 0.5\n        y = (y1 + y2) * 0.5\n        w = x2 - x1\n        h = y2 - y1\n        return x, y, w, h\n\n\ndef center2corner(center):\n    \"\"\"\n    :param center: Center or np.array 4*N\n    :return: Corner or np.array 4*N\n    \"\"\"\n    if isinstance(center, Center):\n        x, y, w, h = center\n        return Corner(x - w * 0.5, y - h * 0.5, x + w * 0.5, y + h * 0.5)\n    else:\n        x, y, w, h = center[0], center[1], center[2], center[3]\n        x1 = x - w * 0.5\n        y1 = y - h * 0.5\n        x2 = x + w * 0.5\n        y2 = y + h * 0.5\n        return x1, y1, x2, y2\n\n\ndef cxy_wh_2_rect(pos, sz):\n    return np.array([pos[0] - sz[0] / 2, pos[1] - sz[1] / 2, sz[0], sz[1]])  # 0-index\n\n\ndef xywh_2_rect(bbox):\n    \"\"\"\n    top-left position and size to rectangle of the bbox.\n\n    Args:\n        bbox: bounding box with [x, y, w, h], x,y are top-left position of the box.\n    Returns:\n        Updated bbox.\n    \"\"\"\n    x, y, w, h = bbox\n    return [\n        x,\n        y,\n        x + w,\n        y + h,\n    ]  # 0-index\n\n\ndef get_axis_aligned_bbox(region):\n    nv = region.size\n    if nv == 8:\n        cx = np.mean(region[0::2])\n        cy = np.mean(region[1::2])\n        x1 = min(region[0::2])\n        x2 = max(region[0::2])\n        y1 = min(region[1::2])\n        y2 = max(region[1::2])\n        A1 = np.linalg.norm(region[0:2] - region[2:4]) * np.linalg.norm(\n            region[2:4] - region[4:6]\n        )\n        A2 = (x2 - x1) * (y2 - y1)\n        s = np.sqrt(A1 / A2)\n        w = s * (x2 - x1) + 1\n        h = s * (y2 - y1) + 1\n    else:\n        x = region[0]\n        y = region[1]\n        w = region[2]\n        h = region[3]\n        cx = x + w / 2\n        cy = y + h / 2\n\n    return cx, cy, w, h\n\n\ndef aug_apply(bbox, param, shape, inv=False, rd=False):\n    \"\"\"\n    apply augmentation\n    :param bbox: original bbox in image\n    :param param: augmentation param, shift/scale\n    :param shape: image shape, h, w, (c)\n    :param inv: inverse\n    :param rd: round bbox\n    :return: bbox(, param)\n        bbox: augmented bbox\n        param: real augmentation param\n    \"\"\"\n    if not inv:\n        center = corner2center(bbox)\n        original_center = center\n\n        real_param = {}\n        if \"scale\" in param:\n            scale_x, scale_y = param[\"scale\"]\n            imh, imw = shape[:2]\n            h, w = center.h, center.w\n\n            scale_x = min(scale_x, float(imw) / w)\n            scale_y = min(scale_y, float(imh) / h)\n\n            # center.w *= scale_x\n            # center.h *= scale_y\n            center = Center(center.x, center.y, center.w * scale_x, center.h * scale_y)\n\n        bbox = center2corner(center)\n\n        if \"shift\" in param:\n            tx, ty = param[\"shift\"]\n            x1, y1, x2, y2 = bbox\n            imh, imw = shape[:2]\n\n            tx = max(-x1, min(imw - 1 - x2, tx))\n            ty = max(-y1, min(imh - 1 - y2, ty))\n\n            bbox = Corner(x1 + tx, y1 + ty, x2 + tx, y2 + ty)\n\n        if rd:\n            bbox = Corner(*map(round, bbox))\n\n        current_center = corner2center(bbox)\n\n        real_param[\"scale\"] = (\n            current_center.w / original_center.w,\n            current_center.h / original_center.h,\n        )\n        real_param[\"shift\"] = (\n            current_center.x - original_center.x,\n            current_center.y - original_center.y,\n        )\n\n        return bbox, real_param\n    else:\n        if \"scale\" in param:\n            scale_x, scale_y = param[\"scale\"]\n        else:\n            scale_x, scale_y = 1.0, 1.0\n\n        if \"shift\" in param:\n            tx, ty = param[\"shift\"]\n        else:\n            tx, ty = 0, 0\n\n        center = corner2center(bbox)\n\n        center = Center(\n            center.x - tx, center.y - ty, center.w / scale_x, center.h / scale_y\n        )\n\n        return center2corner(center)\n\n\ndef IoU(rect1, rect2):\n    # overlap\n    x1, y1, x2, y2 = rect1[0], rect1[1], rect1[2], rect1[3]\n    tx1, ty1, tx2, ty2 = rect2[0], rect2[1], rect2[2], rect2[3]\n\n    xx1 = np.maximum(tx1, x1)\n    yy1 = np.maximum(ty1, y1)\n    xx2 = np.minimum(tx2, x2)\n    yy2 = np.minimum(ty2, y2)\n\n    ww = np.maximum(0, xx2 - xx1)\n    hh = np.maximum(0, yy2 - yy1)\n\n    area = (x2 - x1) * (y2 - y1)\n\n    target_a = (tx2 - tx1) * (ty2 - ty1)\n\n    inter = ww * hh\n    overlap = inter / (area + target_a - inter)\n\n    return overlap\n\n\ndef cxywh_2_xywh(bbox: List, context_ratio: float = 0.0) -> List:\n    \"\"\"\n    Center x, y to top-left x, y.\n\n    Args:\n        bbox: bounding box with [x, y, w, h], x,y are center position of the box.\n        context_ratio: add context area to the box according to the ratio.\n    Returns:\n        Updated bbox.\n    \"\"\"\n    x, y, w, h = bbox\n    return [\n        x - w / 2,\n        y - h / 2,\n        w + context_ratio * (w + h),\n        h + context_ratio * (w + h),\n    ]  # 0-index\n\n\ndef xywh_2_cxywh(bbox: List, context_ratio: float = 0.0) -> List:\n    \"\"\"\n    Top-left x, y to center x, y.\n\n    Args:\n        bbox: bounding box with [x, y, w, h], x,y are top-left position of the box.\n        context_ratio: add context area to the box according to the ratio.\n    Returns:\n        Updated bbox.\n    \"\"\"\n    x, y, w, h = bbox\n    return [\n        x + w / 2,\n        y + h / 2,\n        w + context_ratio * (w + h),\n        h + context_ratio * (w + h),\n    ]\n"
  },
  {
    "path": "EgoTracks/tracking/utils/defaults.py",
    "content": "import argparse\nimport os\nimport sys\n\nfrom tracking.config.config import get_cfg\n\n\ndef setup(args):\n    \"\"\"\n    Create configs and perform basic setups.\n    \"\"\"\n    cfg = get_cfg(args.model_type)\n    cfg.merge_from_file(args.config_file)\n    cfg.merge_from_list(args.opts)\n    cfg.freeze()\n    return cfg\n\n\ndef default_argument_parser(epilog=None):\n    \"\"\"\n    Create a parser with some common arguments used by tracking.\n\n    Args:\n        epilog (str): epilog passed to ArgumentParser describing the usage.\n\n    Returns:\n        argparse.ArgumentParser:\n    \"\"\"\n    parser = argparse.ArgumentParser(\n        epilog=epilog\n        or f\"\"\"\nExamples:\n\nRun on single machine:\n    $ {sys.argv[0]} --num-gpus 8 --config-file cfg.yaml\n\nChange some config options:\n    $ {sys.argv[0]} --config-file cfg.yaml MODEL.WEIGHTS /path/to/weight.pth SOLVER.BASE_LR 0.001\n\nRun on multiple machines:\n    (machine0)$ {sys.argv[0]} --machine-rank 0 --num-machines 2 --dist-url <URL> [--other-flags]\n    (machine1)$ {sys.argv[0]} --machine-rank 1 --num-machines 2 --dist-url <URL> [--other-flags]\n\"\"\",\n        formatter_class=argparse.RawDescriptionHelpFormatter,\n    )\n    parser.add_argument(\n        \"--config-file\", default=\"\", metavar=\"FILE\", help=\"path to config file\"\n    )\n    parser.add_argument(\"--model-type\", type=str, default=\"STARK\", help=\"model type\")\n    parser.add_argument(\n        \"--resume\",\n        action=\"store_true\",\n        help=\"Whether to attempt to resume from the checkpoint directory. \",\n    )\n    parser.add_argument(\n        \"--eval-only\", action=\"store_true\", help=\"perform evaluation only\"\n    )\n\n    parser.add_argument(\n        \"--num-gpus\", type=int, default=1, help=\"number of gpus *per machine*\"\n    )\n    parser.add_argument(\n        \"--num-machines\", type=int, default=1, help=\"total number of machines\"\n    )\n    parser.add_argument(\n        \"--machine-rank\",\n        type=int,\n        default=0,\n        help=\"the rank of this machine (unique per machine)\",\n    )\n\n    # PyTorch still may leave orphan processes in multi-gpu training.\n    # Therefore we use a deterministic way to obtain port,\n    # so that users are aware of orphan processes by seeing the port occupied.\n    port = (\n        2 ** 15\n        + 2 ** 14\n        + hash(os.getuid() if sys.platform != \"win32\" else 1) % 2 ** 14\n    )\n    parser.add_argument(\n        \"--dist-url\",\n        default=\"tcp://127.0.0.1:{}\".format(port),\n        help=\"initialization URL for pytorch distributed backend. See \"\n        \"https://pytorch.org/docs/stable/distributed.html for details.\",\n    )\n    parser.add_argument(\n        \"opts\",\n        help=\"\"\"\nModify config options at the end of the command. For Yacs configs, use\nspace-separated \"PATH.KEY VALUE\" pairs.\nFor python-based LazyConfig, use \"path.key=value\".\n        \"\"\".strip(),\n        default=None,\n        nargs=argparse.REMAINDER,\n    )\n    return parser\n"
  },
  {
    "path": "EgoTracks/tracking/utils/env.py",
    "content": "from iopath.common.file_io import PathManagerFactory\n\n_ENV_SETUP_DONE = False\n\npathmgr = PathManagerFactory.get(key=\"tracking\")\n\n\ndef setup_environment():\n    global _ENV_SETUP_DONE\n    if _ENV_SETUP_DONE:\n        return\n    _ENV_SETUP_DONE = True\n"
  },
  {
    "path": "EgoTracks/tracking/utils/load_helper.py",
    "content": "import logging\n\nimport torch\n\nlogger = logging.getLogger(\"global\")\n\n\ndef check_keys(model, pretrained_state_dict):\n    ckpt_keys = set(pretrained_state_dict.keys())\n    model_keys = set(model.state_dict().keys())\n    used_pretrained_keys = model_keys & ckpt_keys\n    unused_pretrained_keys = ckpt_keys - model_keys\n    missing_keys = model_keys - ckpt_keys\n    if len(missing_keys) > 0:\n        logger.info(\"[Warning] missing keys: {}\".format(missing_keys))\n        logger.info(\"missing keys:{}\".format(len(missing_keys)))\n    if len(unused_pretrained_keys) > 0:\n        logger.info(\n            \"[Warning] unused_pretrained_keys: {}\".format(unused_pretrained_keys)\n        )\n        logger.info(\"unused checkpoint keys:{}\".format(len(unused_pretrained_keys)))\n    logger.info(\"used keys:{}\".format(len(used_pretrained_keys)))\n    assert len(used_pretrained_keys) > 0, \"load NONE from pretrained checkpoint\"\n    return True\n\n\ndef remove_prefix(state_dict, prefix):\n    \"\"\"Old style model is stored with all names of parameters share common prefix 'module.'\"\"\"\n    logger.info(\"remove prefix '{}'\".format(prefix))\n\n    def get_value(x):\n        return x.split(prefix, 1)[-1] if x.startswith(prefix) else x\n\n    # f = lambda x: x.split(prefix, 1)[-1] if x.startswith(prefix) else x\n    return {get_value(key): value for key, value in state_dict.items()}\n\n\ndef load_pretrain(model, pretrained_path):\n    logger.info(\"load pretrained model from {}\".format(pretrained_path))\n    pretrained_dict = torch.load(pretrained_path)\n\n    if \"state_dict\" in pretrained_dict.keys():\n        pretrained_dict = remove_prefix(pretrained_dict[\"state_dict\"], \"module.\")\n    else:\n        pretrained_dict = remove_prefix(pretrained_dict, \"module.\")\n\n    try:\n        check_keys(model, pretrained_dict)\n    except BaseException:\n        logger.info(\n            '[Warning]: using pretrain as features. Adding \"features.\" as prefix'\n        )\n        new_dict = {}\n        for k, v in pretrained_dict.items():\n            k = \"features.\" + k\n            new_dict[k] = v\n        pretrained_dict = new_dict\n        check_keys(model, pretrained_dict)\n    model.load_state_dict(pretrained_dict, strict=False)\n    return model\n\n\ndef restore_from(model, optimizer, ckpt_path):\n    logger.info(\"restore from {}\".format(ckpt_path))\n    device = torch.cuda.current_device()\n    ckpt = torch.load(ckpt_path, map_location=lambda storage, loc: storage.cuda(device))\n    epoch = ckpt[\"epoch\"]\n    best_acc = ckpt[\"best_acc\"]\n    arch = ckpt[\"arch\"]\n    ckpt_model_dict = remove_prefix(ckpt[\"state_dict\"], \"module.\")\n    check_keys(model, ckpt_model_dict)\n    model.load_state_dict(ckpt_model_dict, strict=False)\n\n    check_keys(optimizer, ckpt[\"optimizer\"])\n    optimizer.load_state_dict(ckpt[\"optimizer\"])\n    return model, optimizer, epoch, best_acc, arch\n"
  },
  {
    "path": "EgoTracks/tracking/utils/load_text.py",
    "content": "import numpy as np\nimport pandas as pd\n\nfrom .env import pathmgr\n\n\ndef load_text_numpy(path, delimiter, dtype):\n    if isinstance(delimiter, (tuple, list)):\n        for d in delimiter:\n            try:\n                ground_truth_rect = np.loadtxt(path, delimiter=d, dtype=dtype)\n                return ground_truth_rect\n            except Exception:\n                pass\n\n        raise Exception(\"Could not read file {}\".format(path))\n    else:\n        ground_truth_rect = np.loadtxt(path, delimiter=delimiter, dtype=dtype)\n        return ground_truth_rect\n\n\ndef load_text_pandas(path, delimiter, dtype):\n    if isinstance(delimiter, (tuple, list)):\n        for d in delimiter:\n            try:\n                ground_truth_rect = pd.read_csv(\n                    path,\n                    delimiter=d,\n                    header=None,\n                    dtype=dtype,\n                    na_filter=False,\n                    low_memory=False,\n                ).values\n                return ground_truth_rect\n            except Exception:\n                pass\n\n        raise Exception(\"Could not read file {}\".format(path))\n    else:\n        ground_truth_rect = pd.read_csv(\n            path,\n            delimiter=delimiter,\n            header=None,\n            dtype=dtype,\n            na_filter=False,\n            low_memory=False,\n        ).values\n        return ground_truth_rect\n\n\ndef load_text(path, delimiter=\" \", dtype=np.float32, backend=\"numpy\"):\n    path = pathmgr.get_local_path(path)\n    if backend == \"numpy\":\n        return load_text_numpy(path, delimiter, dtype)\n    elif backend == \"pandas\":\n        return load_text_pandas(path, delimiter, dtype)\n"
  },
  {
    "path": "EgoTracks/tracking/utils/meters.py",
    "content": "import logging\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 ProgressMeter(object):\n    def __init__(self, num_batches, meters, prefix=\"\"):\n        self.batch_fmtstr = self._get_batch_fmtstr(num_batches)\n        self.meters = meters\n        self.prefix = prefix\n\n    def display(self, batch):\n        entries = [self.prefix + self.batch_fmtstr.format(batch)]\n        entries += [str(meter) for meter in self.meters]\n        logging.info(\"\\t\".join(entries))\n\n    def _get_batch_fmtstr(self, num_batches):\n        num_digits = len(str(num_batches // 1))\n        fmt = \"{:\" + str(num_digits) + \"d}\"\n        return \"[\" + fmt + \"/\" + fmt.format(num_batches) + \"]\"\n"
  },
  {
    "path": "EgoTracks/tracking/utils/multiprocessing.py",
    "content": "#!/usr/bin/env python3\n# (c) Facebook, Inc. and its affiliates. Confidential and proprietary.\n\n# adopted from PySlowFast\n\n\"\"\"Multiprocessing helpers.\"\"\"\n\nimport torch\nfrom detectron2.utils import comm\n\n\ndef run(\n    local_rank,\n    func,\n    num_gpus_per_node,\n    init_method,\n    machine_rank,\n    num_nodes,\n    backend,\n    args,\n    in_node_batch_shuffle=True,\n):\n    \"\"\"\n    Runs a function from a child process.\n    Args:\n        local_rank (int): rank of the current process on the current machine.\n        num_proc (int): number of processes per machine.\n        func (function): function to execute on each of the process.\n        init_method (string): method to initialize the distributed training.\n            TCP initialization: equiring a network address reachable from all\n            processes followed by the port.\n            Shared file-system initialization: makes use of a file system that\n            is shared and visible from all machines. The URL should start with\n            file:// and contain a path to a non-existent file on a shared file\n            system.\n        machine_rank (int): the rank of the current machine.\n        num_shards (int): number of overall machines for the distributed\n            training job.\n        backend (string): three distributed backends ('nccl', 'gloo', 'mpi') are\n            supports, each with different capabilities. Details can be found\n            here:\n            https://pytorch.org/docs/stable/distributed.html\n        args: configs. Details in types.py\n    \"\"\"\n    # Initialize the process group.\n    world_size = num_gpus_per_node * num_nodes\n    rank = machine_rank * num_gpus_per_node + local_rank\n\n    torch.distributed.init_process_group(\n        backend=backend,\n        init_method=init_method,\n        world_size=world_size,\n        rank=rank,\n    )\n    # init distributed in-node group to shuffle only within a node\n    # not necessary for now\n    assert comm._LOCAL_PROCESS_GROUP is None\n    for shard in range(num_nodes):\n        node_rank = [num_gpus_per_node * shard + i for i in range(num_gpus_per_node)]\n        pg = torch.distributed.new_group(node_rank)\n        if shard == machine_rank:\n            comm._LOCAL_PROCESS_GROUP = pg\n\n    torch.cuda.set_device(local_rank)\n    func(*args)\n\n\ndef launch_job(\n    main_func,\n    num_gpus_per_node,\n    num_machines=1,\n    machine_rank=0,\n    init_method=None,\n    backend=\"NCCL\",\n    args=(),\n):\n    \"\"\"\n    Run 'func' on one or more GPUs, specified in cfg\n    Args:\n        cfg (NamedTuple): configs. Details can be found in types.py\n        init_method (str): initialization method to launch the job with multiple\n            devices.\n        func (function): job to run on GPU(s)\n        daemon (bool): The spawned processes’ daemon flag. If set to True,\n            daemonic processes will be created\n    \"\"\"\n    torch.multiprocessing.spawn(\n        run,\n        nprocs=num_gpus_per_node,\n        args=(\n            main_func,\n            num_gpus_per_node,\n            init_method,\n            machine_rank,\n            num_machines,\n            backend,\n            args,\n        ),\n    )\n"
  },
  {
    "path": "EgoTracks/tracking/utils/tensor.py",
    "content": "import copy\nimport functools\nfrom collections import OrderedDict\n\nimport torch\n\n\nclass TensorDict(OrderedDict):\n    \"\"\"Container mainly used for dicts of torch tensors. Extends OrderedDict with pytorch functionality.\"\"\"\n\n    def concat(self, other):\n        \"\"\"Concatenates two dicts without copying internal data.\"\"\"\n        return TensorDict(self, **other)\n\n    def copy(self):\n        return TensorDict(super(TensorDict, self).copy())\n\n    def __deepcopy__(self, memodict={}):\n        return TensorDict(copy.deepcopy(list(self), memodict))\n\n    def __getattr__(self, name):\n        if not hasattr(torch.Tensor, name):\n            raise AttributeError(\n                \"'TensorDict' object has not attribute '{}'\".format(name)\n            )\n\n        def apply_attr(*args, **kwargs):\n            return TensorDict(\n                {\n                    n: getattr(e, name)(*args, **kwargs) if hasattr(e, name) else e\n                    for n, e in self.items()\n                }\n            )\n\n        return apply_attr\n\n    def attribute(self, attr: str, *args):\n        return TensorDict({n: getattr(e, attr, *args) for n, e in self.items()})\n\n    def apply(self, fn, *args, **kwargs):\n        return TensorDict({n: fn(e, *args, **kwargs) for n, e in self.items()})\n\n    @staticmethod\n    def _iterable(a):\n        return isinstance(a, (TensorDict, list))\n\n\nclass TensorList(list):\n    \"\"\"Container mainly used for lists of torch tensors. Extends lists with pytorch functionality.\"\"\"\n\n    def __init__(self, list_of_tensors=None):\n        if list_of_tensors is None:\n            list_of_tensors = list()\n        super(TensorList, self).__init__(list_of_tensors)\n\n    def __deepcopy__(self, memodict={}):\n        return TensorList(copy.deepcopy(list(self), memodict))\n\n    def __getitem__(self, item):\n        if isinstance(item, int):\n            return super(TensorList, self).__getitem__(item)\n        elif isinstance(item, (tuple, list)):\n            return TensorList([super(TensorList, self).__getitem__(i) for i in item])\n        else:\n            return TensorList(super(TensorList, self).__getitem__(item))\n\n    def __add__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e1 + e2 for e1, e2 in zip(self, other)])\n        return TensorList([e + other for e in self])\n\n    def __radd__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e2 + e1 for e1, e2 in zip(self, other)])\n        return TensorList([other + e for e in self])\n\n    def __iadd__(self, other):\n        if TensorList._iterable(other):\n            for i, e2 in enumerate(other):\n                self[i] += e2\n        else:\n            for i in range(len(self)):\n                self[i] += other\n        return self\n\n    def __sub__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e1 - e2 for e1, e2 in zip(self, other)])\n        return TensorList([e - other for e in self])\n\n    def __rsub__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e2 - e1 for e1, e2 in zip(self, other)])\n        return TensorList([other - e for e in self])\n\n    def __isub__(self, other):\n        if TensorList._iterable(other):\n            for i, e2 in enumerate(other):\n                self[i] -= e2\n        else:\n            for i in range(len(self)):\n                self[i] -= other\n        return self\n\n    def __mul__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e1 * e2 for e1, e2 in zip(self, other)])\n        return TensorList([e * other for e in self])\n\n    def __rmul__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e2 * e1 for e1, e2 in zip(self, other)])\n        return TensorList([other * e for e in self])\n\n    def __imul__(self, other):\n        if TensorList._iterable(other):\n            for i, e2 in enumerate(other):\n                self[i] *= e2\n        else:\n            for i in range(len(self)):\n                self[i] *= other\n        return self\n\n    def __truediv__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e1 / e2 for e1, e2 in zip(self, other)])\n        return TensorList([e / other for e in self])\n\n    def __rtruediv__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e2 / e1 for e1, e2 in zip(self, other)])\n        return TensorList([other / e for e in self])\n\n    def __itruediv__(self, other):\n        if TensorList._iterable(other):\n            for i, e2 in enumerate(other):\n                self[i] /= e2\n        else:\n            for i in range(len(self)):\n                self[i] /= other\n        return self\n\n    def __matmul__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e1 @ e2 for e1, e2 in zip(self, other)])\n        return TensorList([e @ other for e in self])\n\n    def __rmatmul__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e2 @ e1 for e1, e2 in zip(self, other)])\n        return TensorList([other @ e for e in self])\n\n    def __imatmul__(self, other):\n        if TensorList._iterable(other):\n            for i, e2 in enumerate(other):\n                self[i] @= e2\n        else:\n            for i in range(len(self)):\n                self[i] @= other\n        return self\n\n    def __mod__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e1 % e2 for e1, e2 in zip(self, other)])\n        return TensorList([e % other for e in self])\n\n    def __rmod__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e2 % e1 for e1, e2 in zip(self, other)])\n        return TensorList([other % e for e in self])\n\n    def __pos__(self):\n        return TensorList([+e for e in self])\n\n    def __neg__(self):\n        return TensorList([-e for e in self])\n\n    def __le__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e1 <= e2 for e1, e2 in zip(self, other)])\n        return TensorList([e <= other for e in self])\n\n    def __ge__(self, other):\n        if TensorList._iterable(other):\n            return TensorList([e1 >= e2 for e1, e2 in zip(self, other)])\n        return TensorList([e >= other for e in self])\n\n    def concat(self, other):\n        return TensorList(super(TensorList, self).__add__(other))\n\n    def copy(self):\n        return TensorList(super(TensorList, self).copy())\n\n    def unroll(self):\n        if not any(isinstance(t, TensorList) for t in self):\n            return self\n\n        new_list = TensorList()\n        for t in self:\n            if isinstance(t, TensorList):\n                new_list.extend(t.unroll())\n            else:\n                new_list.append(t)\n        return new_list\n\n    def list(self):\n        return list(self)\n\n    def attribute(self, attr: str, *args):\n        return TensorList([getattr(e, attr, *args) for e in self])\n\n    def apply(self, fn):\n        return TensorList([fn(e) for e in self])\n\n    def __getattr__(self, name):\n        if not hasattr(torch.Tensor, name):\n            raise AttributeError(\n                \"'TensorList' object has not attribute '{}'\".format(name)\n            )\n\n        def apply_attr(*args, **kwargs):\n            return TensorList([getattr(e, name)(*args, **kwargs) for e in self])\n\n        return apply_attr\n\n    @staticmethod\n    def _iterable(a):\n        return isinstance(a, (TensorList, list))\n\n\ndef tensor_operation(op):\n    def islist(a):\n        return isinstance(a, TensorList)\n\n    @functools.wraps(op)\n    def oplist(*args, **kwargs):\n        if len(args) == 0:\n            raise ValueError(\n                \"Must be at least one argument without keyword (i.e. operand).\"\n            )\n\n        if len(args) == 1:\n            if islist(args[0]):\n                return TensorList([op(a, **kwargs) for a in args[0]])\n        else:\n            # Multiple operands, assume max two\n            if islist(args[0]) and islist(args[1]):\n                return TensorList(\n                    [op(a, b, *args[2:], **kwargs) for a, b in zip(*args[:2])]\n                )\n            if islist(args[0]):\n                return TensorList([op(a, *args[1:], **kwargs) for a in args[0]])\n            if islist(args[1]):\n                return TensorList(\n                    [op(args[0], b, *args[2:], **kwargs) for b in args[1]]\n                )\n\n        # None of the operands are lists\n        return op(*args, **kwargs)\n\n    return oplist\n"
  },
  {
    "path": "EgoTracks/tracking/utils/types.py",
    "content": "from dataclasses import dataclass, field\nfrom typing import Dict\n\nfrom tracking.models.stark_tracker.config.stark_st2.config import STARKParams\n\n\n@dataclass\nclass SiamMaskTestParams:\n    # SiamMask anchor config\n    anchor_cfg: Dict = field(\n        default_factory=lambda: {\n            \"stride\": 8,\n            \"ratios\": [0.33, 0.5, 1, 2, 3],\n            \"scales\": [8],\n            \"round_dight\": 0,\n        }\n    )\n    template_size: int = 127\n    search_size: int = 255\n    confidence_thresh: float = 0.0\n    out_size: int = 127\n    base_size: int = 8\n    total_stride: int = 8\n    seg_thr: float = 0.3\n    context_amount: float = 0.5\n    # This is different from original work, original 0.09\n    penalty_k: float = 0.09\n    windowing: str = \"cosine\"\n    # This is different from original work, original 0.39\n    window_influence: float = 0.39\n    # This is different from original work, original 0.38\n    lr: float = 0.38\n    # If the input image needs to be cropped to smaller patches,\n    # this variable controls how many these patches we can send at a time.\n    test_batch_size: int = 8\n    enable_mask: bool = False\n    enable_refine: bool = False\n\n\n@dataclass\nclass SiamMaskParams:\n    test: SiamMaskTestParams = SiamMaskTestParams()\n\n\n@dataclass\nclass Params:\n    # 0 for train, 1 for eval\n    run_type: int = 1\n    # basics\n    workers: int = 8\n    print_freq: int = 10\n    num_shards: int = 1\n    num_gpus_per_node: int = 2\n    dist_backend: str = \"nccl\"\n    seed: int = -1\n\n    # data related\n    annotation_path: str = \"manifold://tracking/tree/ego4d/v1/annotations/vq_val.json\"\n    clip_dir: str = \"manifold://tracking/tree/ego4d/clip\"\n    video_dir: str = (\n        \"manifold://ego4d_fair/tree/intermediate/canonical/v7/full_scale/canonical\"\n    )\n    model_type: str = \"STARK\"\n    model_path: str = \"manifold://tracking/tree/models/STARK/STARKST_ep0050.pth\"\n    result_dir: str = (\n        \"manifold://tracking/tree/users/haotang/model_output/stark_train_test\"\n    )\n    config_files: str = \"\"\n    visualize: int = 0\n    # is_read_5FPS_clip indicates whether we read frames from the original 30FPS video\n    # or 5FPS clip.\n    # return_5FPS_frames is only used if is_read_5FPS_clip is False.\n    # If return_5FPS_frames is True, we only return frames at 5FPS, but those frames\n    # are extracted from the 30FPS video.\n    is_read_5FPS_clip: bool = True\n    return_5FPS_frames: bool = True\n    \"\"\"\n    parameter to control where to track from\n    first_bbox: track from the first frame of the video sequence.\n                 This assumes the GT bbox for the first frame is given.\n    largest_bbox: track from the frame that has the largest GT bounding box.\n                    It will run the tracker forward until the end and\n                    backward until the beginning of the video sequence\n    \"\"\"\n    track_mode: str = \"first_bbox\"\n\n    # checkpoint-related\n    checkpoint_dir: str = \"\"\n    pretrained: str = \"\"\n    resume: str = \"\"\n\n    # Model parameters\n    SiamMask: SiamMaskParams = SiamMaskParams()\n    STARK: STARKParams = STARKParams()\n\n    # whether only tracking locally\n    is_search_local: bool = True\n"
  },
  {
    "path": "EgoTracks/tracking/utils/utils.py",
    "content": "import logging\nfrom typing import List\n\nimport av\nimport cv2\nfrom tracking.utils.env import pathmgr\n\n\ndef opencv_loader(path):\n    \"\"\"Read image using opencv's imread function and returns it in rgb format\"\"\"\n    try:\n        path = pathmgr.get_local_path(path)\n        im = cv2.imread(path, cv2.IMREAD_COLOR)\n\n        # convert to rgb and return\n        return cv2.cvtColor(im, cv2.COLOR_BGR2RGB)\n    except Exception as e:\n        logging.info('ERROR: Could not read image \"{}\"'.format(path))\n        logging.info(e)\n        return None\n\n\ndef visualize_bbox(frames: List, bboxes: List, texts: List = None) -> List:\n    imgs = []\n    for i in range(len(frames)):\n        img = frames[i]\n        box = bboxes[i]\n        text = str(texts[i]) if texts is not None else \"\"\n        x, y, w, h = box\n        color = (255, 255, 255)\n\n        cv2.rectangle(img, (int(x), int(y)), (int(x + w), int(y + h)), color, 5)\n        img = cv2.putText(\n            img,\n            text,\n            (int(x), int(y) - 10),\n            cv2.FONT_HERSHEY_SIMPLEX,\n            2,  # FontScale.\n            (0, 255, 0),  # Color.\n            2,  # Thickness.\n            cv2.LINE_AA,\n        )\n        imgs.append(img)\n\n    return imgs\n\n\ndef extract_frames(frame_numbers: List, container: av.container.Container) -> List:\n    frames = []\n    frame_numbers = set(frame_numbers)\n    for frame in container.decode(video=0):\n        if frame.index in frame_numbers:\n            frames.append(frame.to_ndarray(format=\"bgr24\"))\n\n    return frames\n\n\ndef extract_frames_by_range(\n    start: int, end: int, container: av.container.Container\n) -> List:\n    frames = []\n    for frame in container.decode(video=0):\n        if frame.index >= start and frame.index <= end:\n            frames.append(frame.to_ndarray(format=\"bgr24\"))\n\n    return frames\n\n\ndef pad_bboxes(frame_bbox_dict, frame_numbers):\n    bboxes = []\n    for n in frame_numbers:\n        if n in frame_bbox_dict:\n            bboxes.append(frame_bbox_dict[n])\n        else:\n            bboxes.append([0, 0, 0, 0])\n\n    return bboxes\n"
  },
  {
    "path": "EgoTracks/train.sh",
    "content": "python tools/train_net.py \\\n--num-gpus 1 \\\nMODEL.WEIGHTS /checkpoint/haotang/experiments/EgoTracks/STARKST_ep0001.pth.tar \\\n\\\nOUTPUT_DIR /checkpoint/haotang/experiments/EgoTracks/res/stark_finetune_Ego4DLTT \\\nTRAIN_STAGE_1.EPOCH 10 \\\nTRAIN_STAGE_1.LR_DROP_EPOCH 8 \\\nTRAIN_STAGE_1.NUM_WORKER 2 \\\nTRAIN_STAGE_2.EPOCH 1 \\\nTRAIN_STAGE_2.NUM_WORKER 1 \\\nDATA.TRAIN.DATASETS_NAME \"[\\\"EGO4DLTT\\\"]\" \\\nDATA.TRAIN.DATASETS_RATIO \"[1]\" \\\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2021 EGO4D Dataset and Benchmark Suite\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "MQ/Convert_annotation.py",
    "content": "import json\nimport torch\nimport os\n\n######################################################################################################\n#                     Load data\n######################################################################################################\nannotation_path = \"../../annotations/\"  # Change to your own path containing canonical annotation files\nfeat_path = \"video_features/\"  # Change to your own path containing features of canonical videos\ninfo_path = annotation_path + 'ego4d.json'\nannot_path_train = annotation_path + 'moments_train.json'\nannot_path_val = annotation_path + 'moments_val.json'\nannot_path_test = annotation_path + 'moments_test_unannotated.json'\n\nwith open(annot_path_train, 'r') as f:\n    v_annot_train = json.load(f)\n\nwith open(annot_path_val, 'r') as f:\n    v_annot_val = json.load(f)\n\nwith open(annot_path_test, 'r') as f:\n    v_annot_test = json.load(f)\n\nwith open(info_path, 'r') as f:\n    feat_info=json.load(f)\n\nv_all_duration = {}\nfor video in feat_info['videos']:\n    v_id = video['video_uid']\n    v_dur = video['duration_sec']\n    v_all_duration[v_id] = v_dur\n\nv_annot = {}\nv_annot['videos'] = v_annot_train['videos'] + v_annot_val['videos'] + v_annot_test['videos']\n\n######################################################################################################\n#                     Convert video annotations to clip annotations: clip_annot_1\n######################################################################################################\nclip_annot_1 = {}\nfor video in v_annot['videos']:\n    vid = video['video_uid']\n    clips = video['clips']\n    v_duration = v_all_duration[vid] #feat_info[feat_info.video_uid == vid].canonical_video_duration_sec.values[0]\n    try:\n        feats = torch.load(os.path.join(feat_path, vid + '.pt'))\n    except:\n        print(f'{vid} features do not exist!')\n        continue\n    fps = feats.shape[0] / v_duration\n    for clip in clips:\n        clip_id = clip['clip_uid']\n\n        if clip_id not in clip_annot_1.keys():\n            clip_annot_1[clip_id] = {}\n            clip_annot_1[clip_id]['video_id'] = vid\n            clip_annot_1[clip_id]['clip_id'] = clip_id\n            clip_annot_1[clip_id]['parent_start_sec'] = clip['video_start_sec']\n            clip_annot_1[clip_id]['parent_end_sec'] = clip['video_end_sec']\n            clip_annot_1[clip_id]['v_duration'] = v_duration\n            clip_annot_1[clip_id]['fps'] = fps\n            clip_annot_1[clip_id]['annotations'] = []\n            clip_annot_1[clip_id]['subset'] = video['split']\n\n        if video['split'] != 'test':\n            annotations = clip['annotations']\n            for cnt, annot in enumerate(annotations):\n                for label in annot['labels']:\n                    if label['primary']:\n                        clip_annot_1[clip_id]['annotations'].append(label)\n\n#######################################################################\n## If there are no remaining annotations for a clip ###\n## Remove the clip ###\nremove_list = []\nfor k, v in clip_annot_1.items():\n    if v['subset']!='test' and len(v['annotations']) == 0:\n        print(f'NO annotations: video {k}')\n        remove_list.append(k)\n\nfor item in remove_list:\n    del clip_annot_1[item]\n\ncnt_train = 0\ncnt_val = 0\nfor k, v in clip_annot_1.items():\n    if v['subset'] == 'train':\n        cnt_train += 1\n    elif v['subset'] == 'val':\n        cnt_val += 1\n\nprint(f\"Number of clips in training: {cnt_train}\")\nprint(f\"Number of clips in validation: {cnt_val}\")\n\nwith open(\"Evaluation/ego4d/annot/clip_annotations.json\", \"w\") as fp:\n    json.dump(clip_annot_1, fp)\n\n\n\n\n"
  },
  {
    "path": "MQ/Eval.py",
    "content": "from Evaluation.ego4d.generate_detection import gen_detection_multicore as gen_det_ego4d\nfrom Evaluation.ego4d.get_detect_performance import evaluation_detection as eval_det_ego4d\nfrom Evaluation.ego4d.generate_retrieval import gen_retrieval_multicore as gen_retrieval\nfrom Evaluation.ego4d.get_retrieval_performance import evaluation_retrieval as eval_retrieval\n\nimport Utils.opts as opts\nimport os\nif __name__ == '__main__':\n\n    opt = opts.parse_opt()\n    opt = vars(opt)\n\n    print(opt)\n\n    if not os.path.exists(opt[\"output_path\"]):\n        print('No predictions! Please run inference first!')\n\n\n    if opt['eval_stage'] == 'eval_detection' or opt['eval_stage'] == 'all':\n        print(\"---------------------------------------------------------------------------------------------\")\n        print(\"2. Detection evaluation starts!\")\n        print(\"---------------------------------------------------------------------------------------------\")\n\n        print(\"a. Generate detections!\")\n        gen_det_ego4d(opt)   # Not knowing video categories\n\n        if 'val' in opt['infer_datasplit']:\n            print(\"b. Evaluate the detection results!\")\n            eval_det_ego4d(opt)\n            print(\"Detection evaluation finishes! \\n\")\n\n    if opt['eval_stage'] == 'eval_retrieval' or opt['eval_stage'] == 'all':\n\n        print(\"---------------------------------------------------------------------------------------------\")\n        print(\"3. Retrieval evaluation starts!\")\n        print(\"---------------------------------------------------------------------------------------------\")\n\n        print(\"a. Generate retrieval!\")\n        gen_retrieval(opt)\n\n        if 'val' in opt['infer_datasplit']:\n            print(\"b. Evaluate the retrieval results!\")\n            eval_retrieval(opt)\n            print(\"Detection evaluation finishes! \\n\")\n"
  },
  {
    "path": "MQ/Evaluation/ego4d/eval_action_detection.py",
    "content": "import logging\nimport numpy as np\nimport pandas as pd\n\nfrom utils import interpolated_prec_rec\nfrom utils import segment_iou\n\nfrom joblib import Parallel, delayed\n\nclass EvalActionDetection(object):\n\n    def __init__(self, ground_truth_filename=None, \n                 tiou_thresholds=np.linspace(0.5, 0.95, 10), \n                 verbose=True):\n        if not ground_truth_filename:\n            raise IOError('Please input a valid ground truth file.')\n        self.tiou_thresholds = tiou_thresholds\n        self.verbose = verbose\n        self.ap = None\n\n        self.ground_truth, self.activity_labels = self._import_ground_truth(\n            ground_truth_filename)\n\n        if self.verbose:\n            logging.info('[INIT] Loaded annotations')\n            nr_gt = len(np.unique(self.ground_truth['gt-id']))\n            logging.info('\\tNumber of ground truth instances: {}'.format(nr_gt))\n            logging.info('\\tFixed threshold for tiou score: {}'.format(self.tiou_thresholds))\n\n    def _import_ground_truth(self, ground_truth_filename):\n        \"\"\"Reads ground truth file, checks if it is well formatted, and returns\n           the ground truth instances and the activity classes.\n\n        Parameters\n        ----------\n        ground_truth_filename : str\n            Full path to the ground truth CSV file.\n\n        Outputs\n        -------\n        ground_truth : df\n            Data frame containing the ground truth instances.\n        activity_labels : list\n            List of the activity classes\n        \"\"\"\n        ground_truth = pd.read_csv(ground_truth_filename)\n        # remove instances of length <=0 \n        ground_truth = ground_truth.loc[ground_truth['t-start'].values < ground_truth['t-end'].values].reset_index(drop=True)\n\n        activity_labels = np.unique(ground_truth['label'])\n        ground_truth['gt-id'] = range(len(ground_truth))\n\n        return ground_truth, activity_labels\n\n    def wrapper_compute_average_precision(self, prediction):\n        \"\"\"Computes average precision for each class in the subset.\n        \"\"\"\n        ap = np.zeros((len(self.tiou_thresholds), len(self.activity_labels)))\n        ground_truth_by_label = self.ground_truth.groupby(by='label')\n\n        results = Parallel(n_jobs=len(self.activity_labels))(\n                    delayed(compute_average_precision_detection)(\n                        ground_truth=ground_truth_by_label.get_group(l).reset_index(drop=True),\n                        prediction=prediction[prediction['label']==l].reset_index(drop=True),\n                        tiou_thresholds=self.tiou_thresholds,\n                    ) for l in self.activity_labels)\n        \n        for i in range(len(self.activity_labels)):\n            ap[:,i]= results[i]\n\n        return ap\n\n    def evaluate(self, prediction):\n        \"\"\"Evaluates a prediction df. For the detection task we measure the\n        interpolated mean average precision to measure the performance of a\n        method.\n        \"\"\"\n        logging.info('\\tNumber of predictions: {}. Number of unique videos: {}'.format(len(prediction),len(np.unique(prediction['video-name']))))\n\n        self.ap = self.wrapper_compute_average_precision(prediction)\n        self.mAP = self.ap.mean(axis=1)\n        self.average_mAP = self.mAP.mean()\n\n        if self.verbose:\n            logging.info('[RESULTS] Performance on Ego4D detection task.')\n            logging.info('\\tmAP: {}'.format(self.mAP))\n            logging.info('\\tAverage-mAP: {}'.format(self.average_mAP))\n        return self.average_mAP\n\ndef compute_average_precision_detection(ground_truth, prediction, tiou_thresholds=np.linspace(0.5, 0.95, 10)):\n    \"\"\"Compute average precision (detection task) between ground truth and\n    predictions data frames. If multiple predictions occurs for the same\n    predicted segment, only the one with highest score is matches as\n    true positive. This code is greatly inspired by Pascal VOC devkit.\n\n    Parameters\n    ----------\n    ground_truth : df\n        Data frame containing the ground truth instances.\n        Required fields: ['video-name', 't-start', 't-end']\n    prediction : df\n        Data frame containing the prediction instances.\n        Required fields: ['video-name, 't-start', 't-end', 'score']\n    tiou_thresholds : 1darray, optional\n        Temporal intersection over union threshold.\n\n    Outputs\n    -------\n    ap : float\n        Average precision score.\n    \"\"\"\n    ap = np.zeros(len(tiou_thresholds))\n    if prediction.empty:\n        return ap\n\n    gt_id_lst = np.unique(ground_truth['gt-id'].values)\n    gt_id_to_index = dict(zip(gt_id_lst, range(len(gt_id_lst))))\n    lock_gt = np.ones((len(tiou_thresholds),len(gt_id_to_index))) * -1\n    \n    npos = float(len(gt_id_lst))\n\n    # Sort predictions by decreasing score order.\n    sort_idx = prediction['score'].values.argsort()[::-1]\n    prediction = prediction.loc[sort_idx].reset_index(drop=True)\n\n    # Initialize true positive and false positive vectors.\n    tp = np.zeros((len(tiou_thresholds), len(prediction)))\n    fp = np.zeros((len(tiou_thresholds), len(prediction)))\n\n\n    # Adaptation to query faster\n    ground_truth_gbvn = ground_truth.groupby(by='video-name')\n\n    # Assigning true positive to truly grount truth instances.\n    for idx, this_pred in prediction.iterrows():\n\n        try:\n            # Check if there is at least one ground truth in the video associated.\n            ground_truth_videoid = ground_truth_gbvn.get_group(this_pred['video-name'])\n        except Exception as e:\n            fp[:, idx] = 1\n            continue\n\n        this_gt = ground_truth_videoid.reset_index()\n        tiou_arr = segment_iou(this_pred[['t-start', 't-end']].values,\n                               this_gt[['t-start', 't-end']].values)\n        # We would like to retrieve the predictions with highest tiou score.\n        tiou_sorted_idx = tiou_arr.argsort()[::-1]\n        for tidx, tiou_thr in enumerate(tiou_thresholds):\n            for jdx in tiou_sorted_idx:\n                if tiou_arr[jdx] < tiou_thr:\n                    fp[tidx, idx] = 1\n                    break\n                if lock_gt[tidx, gt_id_to_index[this_gt.loc[jdx]['gt-id']]] >= 0:\n                    continue\n                # Assign as true positive after the filters above.\n                tp[tidx, idx] = 1\n                lock_gt[tidx, gt_id_to_index[this_gt.loc[jdx]['gt-id']]] = idx\n                break\n\n            if fp[tidx, idx] == 0 and tp[tidx, idx] == 0:\n                fp[tidx, idx] = 1\n\n    tp_cumsum = np.cumsum(tp, axis=1).astype(np.float)\n    fp_cumsum = np.cumsum(fp, axis=1).astype(np.float)\n    recall_cumsum = tp_cumsum / npos\n\n    precision_cumsum = recall_cumsum * npos / (recall_cumsum * npos + fp_cumsum)\n    \n    for tidx in range(len(tiou_thresholds)):\n        ap[tidx] = interpolated_prec_rec(precision_cumsum[tidx,:], recall_cumsum[tidx,:])\n\n    return ap\n"
  },
  {
    "path": "MQ/Evaluation/ego4d/eval_detection.py",
    "content": "# This code is originally from the official ActivityNet repo\n# https://github.com/activitynet/ActivityNet\n# Small modification from ActivityNet Code\n\nimport json\nimport numpy as np\nimport pandas as pd\nfrom joblib import Parallel, delayed\n\nfrom ..utils import get_blocked_videos\nfrom ..utils import interpolated_prec_rec\nfrom ..utils import segment_iou\n\nimport warnings\n\nwarnings.filterwarnings(\"ignore\", message=\"numpy.dtype size changed\")\nwarnings.filterwarnings(\"ignore\", message=\"numpy.ufunc size changed\")\n\n\nclass ANETdetection(object):\n    GROUND_TRUTH_FIELDS = ['database']\n    # GROUND_TRUTH_FIELDS = ['database', 'taxonomy', 'version']\n    PREDICTION_FIELDS = ['results', 'version', 'external_data']\n\n    def __init__(self, ground_truth_filename=None, prediction_filename=None,\n                 ground_truth_fields=GROUND_TRUTH_FIELDS,\n                 prediction_fields=PREDICTION_FIELDS,\n                 tiou_thresholds=np.linspace(0.5, 0.95, 10),\n                 subset='test', verbose=False,\n                 check_status=False):\n        if not ground_truth_filename:\n            raise IOError('Please input a valid ground truth file.')\n        if not prediction_filename:\n            raise IOError('Please input a valid prediction file.')\n        self.subset = subset\n        self.tiou_thresholds = tiou_thresholds\n        self.verbose = verbose\n        self.gt_fields = ground_truth_fields\n        self.pred_fields = prediction_fields\n        self.ap = None\n        self.check_status = check_status\n        # Retrieve blocked videos from server.\n\n        if self.check_status:\n            self.blocked_videos = get_blocked_videos()\n        else:\n            self.blocked_videos = list()\n\n        # Import ground truth and predictions.\n        self.ground_truth, self.activity_index = self._import_ground_truth(\n            ground_truth_filename)\n        self.prediction = self._import_prediction(prediction_filename)\n\n        if self.verbose:\n            print('[INIT] Loaded annotations from {} subset.'.format(subset))\n            nr_gt = len(self.ground_truth)\n            print('\\tNumber of ground truth instances: {}'.format(nr_gt))\n            nr_pred = len(self.prediction)\n            print('\\tNumber of predictions: {}'.format(nr_pred))\n            print('\\tFixed threshold for tiou score: {}'.format(self.tiou_thresholds))\n\n    def _import_ground_truth(self, ground_truth_filename):\n        \"\"\"Reads ground truth file, checks if it is well formatted, and returns\n           the ground truth instances and the activity classes.\n\n        Parameters\n        ----------\n        ground_truth_filename : str\n            Full path to the ground truth json file.\n\n        Outputs\n        -------\n        ground_truth : df\n            Data frame containing the ground truth instances.\n        activity_index : dict\n            Dictionary containing class index.\n        \"\"\"\n        with open(ground_truth_filename, 'r') as fobj:\n            data = json.load(fobj)\n        # Checking format\n        # if not all([field in data.keys() for field in self.gt_fields]):\n        #     raise IOError('Please input a valid ground truth file.')\n\n        # Read ground truth data.\n        activity_index, cidx = {}, 0\n        video_lst, t_start_lst, t_end_lst, label_lst = [], [], [], []\n        for videoid, v in data.items():\n            # print(v)\n            if not v['subset'] in self.subset:\n                continue\n            if videoid in self.blocked_videos:\n                continue\n            for ann in v['annotations']:\n                if ann['label'] not in activity_index:\n                    activity_index[ann['label']] = cidx\n                    cidx += 1\n                video_lst.append(videoid)\n                t_start_lst.append(float(ann['start_time']))\n                t_end_lst.append(float(ann['end_time']))\n                label_lst.append(activity_index[ann['label']])\n\n        ground_truth = pd.DataFrame({'video-id': video_lst,\n                                     't-start': t_start_lst,\n                                     't-end': t_end_lst,\n                                     'label': label_lst})\n        if self.verbose:\n            print(activity_index)\n\n        with open('activity_idx.json', 'w') as f:\n            json.dump(activity_index, f)\n\n        return ground_truth, activity_index\n\n    def _import_prediction(self, prediction_filename):\n        \"\"\"Reads prediction file, checks if it is well formatted, and returns\n           the prediction instances.\n\n        Parameters\n        ----------\n        prediction_filename : str\n            Full path to the prediction json file.\n\n        Outputs\n        -------\n        prediction : df\n            Data frame containing the prediction instances.\n        \"\"\"\n        with open(prediction_filename, 'r') as fobj:\n            data = json.load(fobj)\n        # Checking format...\n        if not all([field in data.keys() for field in self.pred_fields]):\n            raise IOError('Please input a valid prediction file.')\n\n        # Read predictions.\n        video_lst, t_start_lst, t_end_lst = [], [], []\n        label_lst, score_lst = [], []\n        for videoid, v in data['results'].items():\n            if videoid in self.blocked_videos:\n                continue\n            for result in v:\n                try:\n                    label = self.activity_index[result['label']]\n                except:\n                    label_words = result['label']\n                    print(f'Category {label_words} is not in groundtruth set!')\n                    continue\n                video_lst.append(videoid)\n                t_start_lst.append(float(result['segment'][0]))\n                t_end_lst.append(float(result['segment'][1]))\n                label_lst.append(label)\n                score_lst.append(result['score'])\n        prediction = pd.DataFrame({'video-id': video_lst,\n                                   't-start': t_start_lst,\n                                   't-end': t_end_lst,\n                                   'label': label_lst,\n                                   'score': score_lst})\n        return prediction\n\n    def _get_predictions_with_label(self, prediction_by_label, label_name, cidx):\n        \"\"\"Get all predicitons of the given label. Return empty DataFrame if there\n        is no predcitions with the given label.\n        \"\"\"\n        try:\n            return prediction_by_label.get_group(cidx).reset_index(drop=True)\n        except:\n            if self.verbose:\n                print('Warning: No predictions of label \\'%s\\' were provided.' % label_name)\n            return pd.DataFrame()\n\n    def wrapper_compute_average_precision(self):\n        \"\"\"Computes average precision for each class in the subset.\n        \"\"\"\n        ap = np.zeros((len(self.tiou_thresholds), len(self.activity_index)))\n\n        # Adaptation to query faster\n        ground_truth_by_label = self.ground_truth.groupby('label')\n        prediction_by_label = self.prediction.groupby('label')\n\n        results = Parallel(n_jobs=len(self.activity_index))(\n            delayed(compute_average_precision_detection)(\n                ground_truth=ground_truth_by_label.get_group(cidx).reset_index(drop=True),\n                prediction=self._get_predictions_with_label(prediction_by_label, label_name, cidx),\n                tiou_thresholds=self.tiou_thresholds,\n            ) for label_name, cidx in self.activity_index.items())\n\n        # for label_name, cidx in self.activity_index.items():\n        #     compute_average_precision_detection(\n        #                 ground_truth=ground_truth_by_label.get_group(cidx).reset_index(drop=True),\n        #                 prediction=self._get_predictions_with_label(prediction_by_label, label_name, cidx),\n        #                 tiou_thresholds=self.tiou_thresholds\n        #             )\n\n        for i, cidx in enumerate(self.activity_index.values()):\n            ap[:, cidx] = results[i]\n\n        np.save('ap.npy', ap)\n\n        return ap\n\n    def evaluate(self):\n        \"\"\"Evaluates a prediction file. For the detection task we measure the\n        interpolated mean average precision to measure the performance of a\n        method.\n        \"\"\"\n        self.ap = self.wrapper_compute_average_precision()\n\n        self.mAP = self.ap.mean(axis=1)\n        self.average_mAP = self.mAP.mean()\n\n        if self.verbose:\n            print('[RESULTS] Performance on Ego4D detection task.')\n            print('Average-mAP: {}'.format(self.average_mAP))\n            print('mAPs are {}'.format(self.mAP))\n\n        return self.mAP, self.average_mAP\n\n\ndef compute_average_precision_detection(ground_truth, prediction, tiou_thresholds=np.linspace(0.5, 0.95, 10)):\n    \"\"\"Compute average precision (detection task) between ground truth and\n    predictions data frames. If multiple predictions occurs for the same\n    predicted segment, only the one with highest score is matches as\n    true positive. This code is greatly inspired by Pascal VOC devkit.\n\n    Parameters\n    ----------\n    ground_truth : df\n        Data frame containing the ground truth instances.\n        Required fields: ['video-id', 't-start', 't-end']\n    prediction : df\n        Data frame containing the prediction instances.\n        Required fields: ['video-id, 't-start', 't-end', 'score']\n    tiou_thresholds : 1darray, optional\n        Temporal intersection over union threshold.\n\n    Outputs\n    -------\n    ap : float\n        Average precision score.\n    \"\"\"\n    ap = np.zeros(len(tiou_thresholds))\n    if prediction.empty:\n        return ap\n\n    npos = float(len(ground_truth))\n    lock_gt = np.ones((len(tiou_thresholds), len(ground_truth))) * -1\n    # Sort predictions by decreasing score order.\n    sort_idx = prediction['score'].values.argsort()[::-1]\n    prediction = prediction.loc[sort_idx].reset_index(drop=True)\n\n    # Initialize true positive and false positive vectors.\n    tp = np.zeros((len(tiou_thresholds), len(prediction)))\n    fp = np.zeros((len(tiou_thresholds), len(prediction)))\n\n    # Adaptation to query faster\n    ground_truth_gbvn = ground_truth.groupby('video-id')\n\n    # Assigning true positive to truly grount truth instances.\n    for idx, this_pred in prediction.iterrows():\n\n        if this_pred['video-id'] == 'c424ecf4-c654-4770-8af6-de97adb8241f':\n            a = 1\n        try:\n            # Check if there is at least one ground truth in the video associated.\n            ground_truth_videoid = ground_truth_gbvn.get_group(this_pred['video-id'])\n        except Exception as e:\n            fp[:, idx] = 1\n            continue\n\n        this_gt = ground_truth_videoid.reset_index()\n        tiou_arr = segment_iou(this_pred[['t-start', 't-end']].values,\n                               this_gt[['t-start', 't-end']].values)\n        # We would like to retrieve the predictions with highest tiou score.\n        tiou_sorted_idx = tiou_arr.argsort()[::-1]\n        for tidx, tiou_thr in enumerate(tiou_thresholds):\n            for jdx in tiou_sorted_idx:\n                if tiou_arr[jdx] < tiou_thr:\n                    fp[tidx, idx] = 1\n                    break\n                if lock_gt[tidx, this_gt.loc[jdx]['index']] >= 0:\n                    continue\n                # Assign as true positive after the filters above.\n                tp[tidx, idx] = 1\n                lock_gt[tidx, this_gt.loc[jdx]['index']] = idx\n                break\n\n            if fp[tidx, idx] == 0 and tp[tidx, idx] == 0:\n                fp[tidx, idx] = 1\n\n    tp_cumsum = np.cumsum(tp, axis=1).astype(np.float)\n    fp_cumsum = np.cumsum(fp, axis=1).astype(np.float)\n    recall_cumsum = tp_cumsum / npos\n\n    precision_cumsum = tp_cumsum / (tp_cumsum + fp_cumsum)\n\n    for tidx in range(len(tiou_thresholds)):\n        ap[tidx] = interpolated_prec_rec(precision_cumsum[tidx, :], recall_cumsum[tidx, :])\n\n    return ap\n"
  },
  {
    "path": "MQ/Evaluation/ego4d/generate_detection.py",
    "content": "\nimport numpy as np\nimport pandas as pd\nimport json\nimport os\nfrom joblib import Parallel, delayed\n\n\ndef IOU(s1, e1, s2, e2):\n    if (s2 > e1) or (s1 > e2):\n        return 0\n    Aor = max(e1, e2) - min(s1, s2)\n    Aand = min(e1, e2) - max(s1, s2)\n    return float(Aand) / Aor\n\ndef Soft_NMS(df, nms_threshold=1e-5, num_prop=200):\n\n    df = df.sort_values(by=\"score\", ascending=False)\n\n    tstart = list(df.xmin.values[:])\n    tend = list(df.xmax.values[:])\n    tscore = list(df.score.values[:])\n    tlabel = list(df.label.values[:])\n\n    rstart = []\n    rend = []\n    rscore = []\n    rlabel = []\n\n    while len(tscore) > 1 and len(rscore) < num_prop and max(tscore)>0:\n        max_index = tscore.index(max(tscore))\n        if tlabel[max_index] == 0:\n            tstart.pop(max_index)\n            tend.pop(max_index)\n            tscore.pop(max_index)\n            tlabel.pop(max_index)\n            continue\n\n        for idx in range(0, len(tscore)):\n            if idx != max_index:\n                tmp_iou = IOU(tstart[max_index], tend[max_index], tstart[idx], tend[idx])\n                if tmp_iou > 0:\n                    tscore[idx] = tscore[idx] * np.exp(-np.square(tmp_iou) / nms_threshold)\n\n        rstart.append(tstart[max_index])\n        rend.append(tend[max_index])\n        rscore.append(tscore[max_index])\n        rlabel.append(tlabel[max_index])\n\n        tstart.pop(max_index)\n        tend.pop(max_index)\n        tscore.pop(max_index)\n        tlabel.pop(max_index)\n\n    newDf = pd.DataFrame()\n    newDf['score'] = rscore\n    newDf['xmin'] = rstart\n    newDf['xmax'] = rend\n    newDf['label'] = rlabel\n    return newDf\n\ndef _gen_detection_video(video_name, result, idx_classes, opt, num_prop=200, topk = 2):\n    path = os.path.join(opt[\"output_path\"], opt[\"prop_path\"]) + \"/\"\n    files = [path + f for f in os.listdir(path) if  video_name in f]\n    if len(files) == 0:\n        print('Missing result for video {}'.format(video_name))\n        return {video_name:[]}\n\n    dfs = []  # merge pieces of video\n    for snippet_file in files:\n        snippet_df = pd.read_csv(snippet_file)\n        dfs.append(snippet_df)\n    df = pd.concat(dfs)\n\n    df = Soft_NMS(df, nms_threshold=opt['nms_alpha_detect'], num_prop=num_prop)\n    df = df.sort_values(by=\"score\", ascending=False)\n\n    duration = result['duration']\n    proposal_list = []\n    for j in range(min(num_prop, len(df))):\n        tmp_proposal = {}\n        tmp_proposal[\"label\"] = idx_classes[int(df.label.values[j])]\n        tmp_proposal[\"score\"] = float(round(df.score.values[j], 6))\n        tmp_proposal[\"segment\"] = [float(round(max(0, df.xmin.values[j]), 1)),\n                                   float(round(min(duration, df.xmax.values[j]), 1))]\n        proposal_list.append(tmp_proposal)\n\n    return {video_name:proposal_list}\n\ndef gen_detection_multicore(opt):\n\n    with open(opt['clip_anno'], 'r') as f:\n        ego4d_gt = json.load(f)\n\n    video_list = []\n    for k, v in ego4d_gt.items():\n        if v['subset'] in opt['infer_datasplit']:\n            video_list.append(k)\n\n\n    # load all categories\n    if os.path.exists(opt[\"moment_classes\"]):\n        with open(opt[\"moment_classes\"], 'r') as f:\n            classes = json.load(f)\n\n    idx_classes = {}\n    for key, value in classes.items():\n        idx_classes[value] = key\n\n    result = {\n        video:\n            {\n                'duration': ego4d_gt[video]['parent_end_sec'] - ego4d_gt[video]['parent_start_sec']\n            }\n        for video in video_list\n    }\n\n    parallel = Parallel(n_jobs=16, prefer=\"processes\")\n    detection = parallel(delayed(_gen_detection_video)(video_name, result[video_name], idx_classes, opt)\n                        for video_name in video_list)\n    detection_dict = {}\n    [detection_dict.update(d) for d in detection]\n    output_dict = {\"version\": \"EGO4D\", \"results\": detection_dict, \"external_data\": {}}\n\n    with open(os.path.join(opt[\"output_path\"], opt[\"detect_result_file\"]), \"w\") as out:\n        json.dump(output_dict, out)\n\n\n"
  },
  {
    "path": "MQ/Evaluation/ego4d/generate_retrieval.py",
    "content": "\nimport numpy as np\nimport pandas as pd\nimport json\nimport os\nfrom joblib import Parallel, delayed\n\ndef IOU(s1, e1, s2, e2):\n    if (s2 > e1) or (s1 > e2):\n        return 0\n    Aor = max(e1, e2) - min(s1, s2)\n    Aand = min(e1, e2) - max(s1, s2)\n    return float(Aand) / Aor\n\ndef Soft_NMS(df, nms_threshold=1e-5, num_prop=200):\n\n    df = df.sort_values(by=\"score\", ascending=False)\n\n    tstart = list(df.xmin.values[:])\n    tend = list(df.xmax.values[:])\n    tscore = list(df.score.values[:])\n    tlabel = list(df.label.values[:])\n\n    rstart = []\n    rend = []\n    rscore = []\n    rlabel = []\n\n\n    while len(tscore) > 1 and len(rscore) < num_prop and max(tscore)>0:\n        max_index = tscore.index(max(tscore))\n        if tlabel[max_index] == 0:\n            tstart.pop(max_index)\n            tend.pop(max_index)\n            tscore.pop(max_index)\n            tlabel.pop(max_index)\n            continue\n\n        for idx in range(0, len(tscore)):\n            if idx != max_index:\n                tmp_iou = IOU(tstart[max_index], tend[max_index], tstart[idx], tend[idx])\n                if tmp_iou > 0:\n                    tscore[idx] = tscore[idx] * np.exp(-np.square(tmp_iou) / nms_threshold)\n\n        rstart.append(tstart[max_index])\n        rend.append(tend[max_index])\n        rscore.append(tscore[max_index])\n        rlabel.append(tlabel[max_index])\n\n        tstart.pop(max_index)\n        tend.pop(max_index)\n        tscore.pop(max_index)\n        tlabel.pop(max_index)\n\n    newDf = pd.DataFrame()\n    newDf['score'] = rscore\n    newDf['xmin'] = rstart\n    newDf['xmax'] = rend\n    newDf['label'] = rlabel\n    return newDf\n\n\ndef rm_other_category(df, annots, classes):\n    df_v = []\n    list_label = []\n    for ann in annots:\n        label = classes[ann['label']]\n\n        if not label in list_label:\n            df_v.append(df[df['label'] == label])\n            list_label.append(label)\n\n    df_v = pd.concat(df_v)\n    return df_v\n\ndef _gen_retrieval_video(video_name, result, classes, idx_classes, opt, test_anno, num_prop=200,  topk = 2):\n    path = os.path.join(opt[\"output_path\"], opt[\"prop_path\"]) + \"/\"\n    files = [path + f for f in os.listdir(path) if  video_name in f]\n    if len(files) == 0:\n        print('Missing result for video {}'.format(video_name))\n        return {video_name:[]}\n\n    dfs = []  # merge pieces of video\n    for snippet_file in files:\n        snippet_df = pd.read_csv(snippet_file)\n        dfs.append(snippet_df)\n    df = pd.concat(dfs)\n    df = rm_other_category(df, test_anno['annotations'], classes)\n\n    df = df.sort_values(by=\"score\", ascending=False)\n\n    duration = result['duration']\n    proposal_list = []\n    for j in range(min(num_prop, len(df))):\n        tmp_proposal = {}\n        tmp_proposal[\"label\"] = idx_classes[int(df.label.values[j])]\n        tmp_proposal[\"score\"] = float(round(df.score.values[j], 6))\n        tmp_proposal[\"segment\"] = [float(round(max(0, df.xmin.values[j]), 1)),\n                                   float(round(min(duration, df.xmax.values[j]), 1))]\n        proposal_list.append(tmp_proposal)\n\n    return {video_name:proposal_list}\n\ndef gen_retrieval_multicore(opt):\n\n    with open(opt['clip_anno'], 'r') as f:\n        ego4d_gt = json.load(f)\n\n    video_list = []\n    for k, v in ego4d_gt.items():\n        if v['subset'] in opt['infer_datasplit']:\n            video_list.append(k)\n\n    # load all categories\n    if os.path.exists(opt[\"moment_classes\"]):\n        with open(opt[\"moment_classes\"], 'r') as f:\n            classes = json.load(f)\n\n    idx_classes = {}\n    for key, value in classes.items():\n        idx_classes[value] = key\n\n\n    result = {\n        video:\n            {\n                'duration': ego4d_gt[video]['parent_end_sec'] - ego4d_gt[video]['parent_start_sec']\n            }\n        for video in video_list\n    }\n\n    parallel = Parallel(n_jobs=16, prefer=\"processes\")\n    detection = parallel(delayed(_gen_retrieval_video)(video_name, result[video_name], classes, idx_classes, opt, ego4d_gt[video_name])\n                        for video_name in video_list)\n\n    detection_dict = {}\n    [detection_dict.update(d) for d in detection]\n    output_dict = {\"version\": \"EGO4D\", \"results\": detection_dict, \"external_data\": {}}\n\n    with open(os.path.join(opt[\"output_path\"], opt[\"retrieval_result_file\"]), \"w\") as out:\n        json.dump(output_dict, out)\n\n\n"
  },
  {
    "path": "MQ/Evaluation/ego4d/get_detect_performance.py",
    "content": "\nimport os\nfrom .eval_detection import ANETdetection\n\ndef run_evaluation(ground_truth_filename, prediction_filename,\n         subset='test', tiou_thresholds=[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7],\n         verbose=True):\n\n    anet_detection = ANETdetection(ground_truth_filename, prediction_filename,\n                                   subset=subset, tiou_thresholds=tiou_thresholds,\n                                   verbose=verbose, check_status=False)\n    mAPs, average_mAP = anet_detection.evaluate()\n\n    for (tiou, mAP) in zip(tiou_thresholds, mAPs):\n        print(\"mAP at tIoU {} is {}\".format(tiou, mAP))\n\n\n\ndef evaluation_detection(opt):\n\n    run_evaluation(ground_truth_filename = opt[\"clip_anno\"],\n                   prediction_filename = os.path.join(opt[\"output_path\"], opt[\"detect_result_file\"]),\n                   subset=opt['infer_datasplit'], tiou_thresholds=opt['tIoU_thr'])"
  },
  {
    "path": "MQ/Evaluation/ego4d/get_retrieval_performance.py",
    "content": "\nimport numpy as np\nimport os\nimport json\nclass Moment_Retrieval(object):\n    GROUND_TRUTH_FIELDS = ['database']\n    PREDICTION_FIELDS = ['results', 'version', 'external_data']\n\n    def __init__(self, ground_truth_filename=None, prediction_filename=None,\n                 ground_truth_fields=GROUND_TRUTH_FIELDS,\n                 prediction_fields=PREDICTION_FIELDS,\n                 tiou_thresholds=np.linspace(0.5, 0.95, 10),\n                 subset='test', verbose=False,\n                 check_status=False):\n        if not ground_truth_filename:\n            raise IOError('Please input a valid ground truth file.')\n        if not prediction_filename:\n            raise IOError('Please input a valid prediction file.')\n        self.subset = subset\n        self.tiou_thresholds = tiou_thresholds\n        self.verbose = verbose\n        self.gt_fields = ground_truth_fields\n        self.pred_fields = prediction_fields\n        self.ap = None\n        self.check_status = check_status\n        # Retrieve blocked videos from server.\n\n        # Import ground truth and predictions.\n        self.ground_truth = self._import_ground_truth(\n            ground_truth_filename)\n        self.prediction = self._import_prediction(prediction_filename)\n\n        if self.verbose:\n            print('[INIT] Loaded annotations from {} subset.'.format(subset))\n            nr_gt = len(self.ground_truth)\n            print('\\tNumber of ground truth instances: {}'.format(nr_gt))\n            nr_pred = len(self.prediction)\n            print('\\tNumber of predictions: {}'.format(nr_pred))\n            print('\\tFixed threshold for tiou score: {}'.format(self.tiou_thresholds))\n\n    def _import_ground_truth(self, ground_truth_filename):\n\n        with open(ground_truth_filename, 'r') as fobj:\n            data = json.load(fobj)\n\n\n        ground_truth = {}\n        for videoid, v in data.items():\n\n            if not v['subset'] in self.subset:\n                continue\n\n            annotations = {}\n            for ann in v['annotations']:\n\n                if ann['label'] not in annotations.keys():\n                    annotations[ann['label']] = []\n                annotations[ann['label']].append([ann['start_time'], ann['end_time']])\n\n            ground_truth[v['clip_id']] = annotations\n\n        return ground_truth\n\n    def _import_prediction(self, prediction_filename):\n\n        with open(prediction_filename, 'r') as fobj:\n            data = json.load(fobj)\n        # Checking format...\n        if not all([field in data.keys() for field in self.pred_fields]):\n            raise IOError('Please input a valid prediction file.')\n\n\n        prediction = {}\n        for videoid, v in data['results'].items():\n\n            pred_props = {}\n            for prop in v:\n                if prop['label'] not in pred_props.keys():\n                    pred_props[prop['label']] = []\n                pred_props[prop['label']].append([prop['segment'][0], prop['segment'][1], prop['score']])\n\n            prediction[videoid] = pred_props\n\n        return prediction\n\n    def evaluate(self):\n        tious = [0.3, 0.5, 0.7]\n        recalls = [1, 2, 3, 4, 5]\n\n        # eval_result = [[[ [] for _ in range(len(self.ground_truth))] for _ in recalls] for _ in tious]\n        eval_result = [[ [] for _ in recalls] for _ in tious]\n\n        # v_cnt = 0\n        for key_v, value_v in self.ground_truth.items():\n            gt_v = value_v\n            pred_v = self.prediction[key_v]\n\n            for key_label, value_c in gt_v.items():\n                gt_v_c = value_c\n                num_gt_v_c = len(gt_v_c)\n                if key_label in pred_v.keys():\n                    pred_v_c = pred_v[key_label]\n                    overlap = iou(pred_v_c, gt_v_c)\n\n                    for i, t in enumerate(tious):\n                        for j, r in enumerate(recalls):\n\n                            is_retrieved = [(overlap > t)[:r*num_gt_v_c][:,i].any() for i in range(num_gt_v_c)]\n                            eval_result[i][j].extend(is_retrieved)\n                else:\n                    for i, t in enumerate(tious):\n                        for j, r in enumerate(recalls):\n                            eval_result[i][j].extend([False] * len(gt_v_c))\n\n\n        eval_result = np.array(eval_result).mean(axis=-1)\n\n        for i, t in enumerate(tious):\n            for j, r in enumerate(recalls):\n                recall = eval_result[i, j]\n                print(f'Rank {r}x @ tIoU {t} is {recall}')\n\n        return eval_result\n\n\ndef iou(pred, gt): # require pred and gt is numpy\n    assert isinstance(pred, list) and isinstance(gt,list)\n    pred_is_list = isinstance(pred[0],list)\n    gt_is_list = isinstance(gt[0],list)\n    if not pred_is_list: pred = [pred]\n    if not gt_is_list: gt = [gt]\n    pred, gt = np.array(pred), np.array(gt)\n    inter_left = np.maximum(pred[:,0,None], gt[None,:,0])\n    inter_right = np.minimum(pred[:,1,None], gt[None,:,1])\n    inter = np.maximum(0.0, inter_right - inter_left)\n    union_left = np.minimum(pred[:,0,None], gt[None,:,0])\n    union_right = np.maximum(pred[:,1,None], gt[None,:,1])\n    union = np.maximum(0.0, union_right - union_left)\n    overlap = 1.0 * inter / union\n    if not gt_is_list:\n        overlap = overlap[:,0]\n    if not pred_is_list:\n        overlap = overlap[0]\n    return overlap\n\ndef evaluation_retrieval(opt):\n\n    ego4d_MR = Moment_Retrieval(ground_truth_filename = opt[\"clip_anno\"],\n                   prediction_filename = os.path.join(opt[\"output_path\"], opt[\"retrieval_result_file\"]),\n                   subset=opt['infer_datasplit'], tiou_thresholds=opt['tIoU_thr'],\n                   verbose=True, check_status=False)\n\n    eval_result = ego4d_MR.evaluate()\n\n    print(eval_result)\n"
  },
  {
    "path": "MQ/Evaluation/utils.py",
    "content": "import json\nimport urllib.request as request\n\nimport numpy as np\n\nAPI = 'http://ec2-52-11-11-89.us-west-2.compute.amazonaws.com/challenge16/api.py'\n\ndef get_blocked_videos(api=API):\n    api_url = '{}?action=get_blocked'.format(api)\n    # req = request(api_url)\n    response = request.urlopen(api_url)\n    return json.loads(response.read())\n\ndef interpolated_prec_rec(prec, rec):\n    \"\"\"Interpolated AP - VOCdevkit from VOC 2011.\n    \"\"\"\n    mprec = np.hstack([[0], prec, [0]])\n    mrec = np.hstack([[0], rec, [1]])\n    for i in range(len(mprec) - 1)[::-1]:\n        mprec[i] = max(mprec[i], mprec[i + 1])\n    idx = np.where(mrec[1::] != mrec[0:-1])[0] + 1\n    ap = np.sum((mrec[idx] - mrec[idx - 1]) * mprec[idx])\n    return ap\n\ndef segment_iou(target_segment, candidate_segments):\n    \"\"\"Compute the temporal intersection over union between a\n    target segment and all the test segments.\n\n    Parameters\n    ----------\n    target_segment : 1d array\n        Temporal target segment containing [starting, ending] times.\n    candidate_segments : 2d array\n        Temporal candidate segments containing N x [starting, ending] times.\n\n    Outputs\n    -------\n    tiou : 1d array\n        Temporal intersection over union score of the N's candidate segments.\n    \"\"\"\n    tt1 = np.maximum(target_segment[0], candidate_segments[:, 0])\n    tt2 = np.minimum(target_segment[1], candidate_segments[:, 1])\n    # Intersection including Non-negative overlap score.\n    segments_intersection = (tt2 - tt1).clip(0)\n    # Segment union.\n    segments_union = (candidate_segments[:, 1] - candidate_segments[:, 0]) \\\n      + (target_segment[1] - target_segment[0]) - segments_intersection\n    # Compute overlap as the ratio of the intersection\n    # over union of two segments.\n    tIoU = segments_intersection.astype(float) / segments_union\n    return tIoU\n\ndef wrapper_segment_iou(target_segments, candidate_segments):\n    \"\"\"Compute intersection over union btw segments\n    Parameters\n    ----------\n    target_segments : ndarray\n        2-dim array in format [m x 2:=[init, end]]\n    candidate_segments : ndarray\n        2-dim array in format [n x 2:=[init, end]]\n    Outputs\n    -------\n    tiou : ndarray\n        2-dim array [n x m] with IOU ratio.\n    Note: It assumes that candidate-segments are more scarce that target-segments\n    \"\"\"\n    if candidate_segments.ndim != 2 or target_segments.ndim != 2:\n        raise ValueError('Dimension of arguments is incorrect')\n\n    n, m = candidate_segments.shape[0], target_segments.shape[0]\n    tiou = np.empty((n, m))\n    for i in xrange(m):\n        tiou[:, i] = segment_iou(target_segments[i,:], candidate_segments)\n\n    return tiou\n\n    # TEST"
  },
  {
    "path": "MQ/Infer.py",
    "content": "import sys\nsys.dont_write_bytecode = True\nimport torch\nimport torch.nn.parallel\nfrom Utils.dataset import VideoDataSet\nfrom Models.VSGN import VSGN\nimport pandas as pd\nfrom joblib import Parallel, delayed\nimport sys\nsys.dont_write_bytecode = True\nimport torch.nn.parallel\nimport os\nimport Utils.opts as opts\n\nimport datetime\nimport numpy as np\n\ntorch.manual_seed(21)\n\n\n# Infer all data\ndef Infer_SegTAD(opt):\n    model = VSGN(opt)\n    model = torch.nn.DataParallel(model).cuda()\n    if not os.path.exists(opt[\"checkpoint_path\"] + \"/best.pth.tar\"):\n        print(\"There is no checkpoint. Please train first!!!\")\n    else:\n        checkpoint = torch.load(opt[\"checkpoint_path\"] + \"/best.pth.tar\")\n        model.load_state_dict(checkpoint['state_dict'])\n    model.eval()\n\n    proposal_path = os.path.join(opt[\"output_path\"], opt[\"prop_path\"])\n\n    if not os.path.exists(proposal_path):\n        os.mkdir(proposal_path)\n\n    test_loader = torch.utils.data.DataLoader(VideoDataSet(opt, subset=opt['infer_datasplit'], mode=\"inference\"),\n                                              batch_size=opt[\"batch_size\"], shuffle=False,\n                                              num_workers=16, pin_memory=True, drop_last=False)\n\n    with torch.no_grad():\n        for i, (index_list, input_data, num_frms) in enumerate(test_loader):\n\n            infer_batch_selectprop(model, index_list, input_data, test_loader, proposal_path, num_frms)\n\n\n# Infer one batch of data, for the model with proposal selection\ndef infer_batch_selectprop(model,\n                           index_list,\n                           input_data,\n                           test_loader,\n                           proposal_path,\n                           num_frms):\n\n    loc_dec, score_dec, loc_adjusted, pred_action, pred_start, pred_end = model(input_data.cuda(), num_frms)\n\n    # Move variables to output to CPU\n    loc_adjusted_batch = loc_adjusted.detach().cpu().numpy()\n    score_dec_batch = score_dec.detach().cpu().numpy()\n    pred_action_batch = pred_action.detach().cpu().numpy()\n    pred_start_batch = pred_start.detach().cpu().numpy()\n    pred_end_batch = pred_end.detach().cpu().numpy()\n    num_frms_batch = num_frms.detach().cpu().numpy()\n\n\n    Parallel(n_jobs=len(index_list))(\n        delayed(infer_v_asis)(\n            opt,\n            video=test_loader.dataset.clip_dict[test_loader.dataset.clip_list[full_idx]],\n            score_dec_v = score_dec_batch[batch_idx],\n            loc_dec_v = loc_adjusted_batch[batch_idx],\n            pred_action_v = pred_action_batch[batch_idx],\n            pred_start_v = pred_start_batch[batch_idx],\n            pred_end_v = pred_end_batch[batch_idx],\n            proposal_path = proposal_path,\n            num_frms_v = num_frms_batch[batch_idx]\n\n        ) for batch_idx, full_idx in enumerate(index_list))\n\n\n\ndef infer_v_asis(*args, **kwargs):\n    tscale = args[0][\"temporal_scale\"]\n    loc_pred_v = kwargs['loc_dec_v']\n    score_dec_v = kwargs['score_dec_v']\n    pred_start_v = kwargs['pred_start_v']\n    pred_end_v = kwargs['pred_end_v']\n    proposal_path = kwargs['proposal_path']\n    num_frms_v = kwargs['num_frms_v']\n    thresh = 0.000000005\n\n    clip_name = kwargs['video']['clip_id']\n    fps = kwargs['video']['fps']\n\n    loc_pred_v[:, 0] = loc_pred_v[:, 0].clip(min=0, max=tscale - 1)\n    loc_pred_v[:, 1] = loc_pred_v[:, 1].clip(min=0, max=tscale - 1)\n\n    start_score = (pred_start_v[np.ceil(loc_pred_v[:, 0]).astype('int32')] + pred_start_v[\n        np.floor(loc_pred_v[:, 0]).astype('int32')]) / 2\n    end_score = (pred_end_v[np.ceil(loc_pred_v[:, 1]).astype('int32')] + pred_end_v[\n        np.floor(loc_pred_v[:, 1]).astype('int32')]) / 2\n\n    score_stage2 = start_score * end_score\n\n    loc_pred_v[:, 0] = loc_pred_v[:, 0].clip(min=0, max=num_frms_v - 1)\n    loc_pred_v[:, 1] = loc_pred_v[:, 1].clip(min=0, max=num_frms_v - 1)\n\n    new_props = []\n    for j in range(1, opt['decoder_num_classes']):\n        inds = (score_dec_v[:, j] > thresh)\n        scores = (score_dec_v[:, j] * score_stage2)[inds]\n        locations = loc_pred_v[inds, :]\n        labels = np.array([j] * locations.shape[0])\n        cls_dets = np.concatenate((locations, scores[:, None], labels[:, None]), axis=1)\n        keep = nms(cls_dets, opt['nms_thr'])\n        if (len(keep) > 0):\n            cls_dets = cls_dets[keep]\n\n        new_props.append(cls_dets)\n\n    new_props = np.concatenate(new_props, axis=0)\n    new_props[:, :2] = (new_props[:, :2]) / fps\n\n    col_name = [\"xmin\", \"xmax\", \"score\", \"label\"]\n    new_df = pd.DataFrame(new_props, columns=col_name)\n    path = proposal_path + \"/\" + clip_name + \".csv\"\n    new_df.to_csv(path, index=False)\n\n\ndef nms(dets, thresh=0.4):\n    \"\"\"Pure Python NMS baseline.\"\"\"\n    if len(dets) == 0: return []\n    x1 = dets[:, 0]\n    x2 = dets[:, 1]\n    scores = dets[:, 2]\n    lengths = x2 - x1\n    order = scores.argsort()[::-1]\n    keep = []\n    while order.size > 0:\n        i = order[0]\n        keep.append(i)\n        xx1 = np.maximum(x1[i], x1[order[1:]])\n        xx2 = np.minimum(x2[i], x2[order[1:]])\n        inter = np.maximum(0.0, xx2 - xx1)\n        ovr = inter / (lengths[i] + lengths[order[1:]] - inter)\n        inds = np.where(ovr <= thresh)[0]\n        order = order[inds + 1]\n    return keep\n\n\nif __name__ == '__main__':\n\n    opt = opts.parse_opt()\n    opt = vars(opt)\n\n    print(opt)\n\n    if not os.path.exists(opt[\"output_path\"]):\n        os.makedirs(opt[\"output_path\"])\n\n    print(datetime.datetime.now())\n    print(\"---------------------------------------------------------------------------------------------\")\n    print(\"1. Inference starts!\")\n    print(\"---------------------------------------------------------------------------------------------\")\n\n    Infer_SegTAD(opt)\n\n    print(\"Inference finishes! \\n\")\n\n"
  },
  {
    "path": "MQ/Merge_detection_retrieval.py",
    "content": "import json\nimport Utils.opts as opts\nimport os\n\nopt = opts.parse_opt()\nopt = vars(opt)\nresult_det = os.path.join(opt['output_path'], opt['detect_result_file'])\nresult_rev = os.path.join(opt['output_path'], opt['retrieval_result_file'])\nsubmission_file = opt['output_path'] + \"/submission.json\"\n\nwith open(result_det, 'r') as fobj:\n    data_det = json.load(fobj)\n\nwith open(result_rev, 'r') as fobj:\n    data_rev = json.load(fobj)\n\ndata_submission = {\"version\": \"1.0\", \"challenge\": \"ego4d_moment_queries\"}\n\ndata_submission['detect_results'] = data_det['results']\ndata_submission['retrieve_results'] = data_rev['results']\n\nwith open(submission_file, \"w\") as fp:\n    json.dump(data_submission, fp)\n"
  },
  {
    "path": "MQ/Models/ActionGenerator.py",
    "content": "\nimport torch\nfrom .BoxCoder import BoxCoder\nimport torch.nn.functional as F\n\nclass Pred_loc_cls(object):\n    def __init__(self, opt):\n        super(Pred_loc_cls, self).__init__()\n\n        self.pre_nms_thresh = 0.00\n        self.pre_nms_top_n = 10000\n        self.num_classes = opt['decoder_num_classes']\n\n        self.box_coder = BoxCoder(opt)\n\n    def __call__(self, cls_pred_dec, reg_pred_dec, anchors):\n        bs = cls_pred_dec[0].shape[0]\n        anchors = [anchor.unsqueeze(0).repeat(bs, 1, 1).to(device=cls_pred_dec[0].device) for anchor in anchors]\n        all_anchors = torch.cat(anchors, dim=1)          # bs, levels*positions*scales, left-right\n\n        cls_pred_dec = [cls_pred_dec[i] for i in range(len(cls_pred_dec)-1, -1, -1)]\n        reg_pred_dec = [reg_pred_dec[i] for i in range(len(reg_pred_dec)-1, -1, -1)]\n\n        loc_dec, _ = self._call_one_stage(cls_pred_dec, reg_pred_dec, all_anchors)\n        _, score_dec = self._call_one_stage(cls_pred_dec, reg_pred_dec, torch.stack(loc_dec, dim=0))\n\n\n        return torch.stack(score_dec, dim=0), torch.stack(loc_dec, dim=0)\n\n    def _call_one_stage(self, cls_pred, reg_pred, all_anchors):\n\n        N = cls_pred[0].shape[0]\n\n        cls_pred = F.softmax(torch.cat(cls_pred, dim=2).permute(0, 2, 1).reshape(N, -1, self.num_classes), dim=-1)  # bs, levels*positions*scales, num_cls\n        reg_pred = torch.cat(reg_pred, dim=2).permute(0, 2, 1).reshape(N, -1, 2)   # bs, levels*positions*scales, 2\n\n\n        candidate_inds = cls_pred > self.pre_nms_thresh\n        pre_nms_top_n = candidate_inds.view(N, -1).sum(1)\n        pre_nms_top_n = pre_nms_top_n.clamp(max=self.pre_nms_top_n)\n\n        loc_res = []\n        score_res = []\n        for cls_seq, reg_seq, anchor_seq, pre_nms_top_n_seq, candidate_inds_seq in zip(cls_pred, reg_pred, all_anchors, pre_nms_top_n, candidate_inds):\n\n            loc_pred = self.box_coder.decode(\n                reg_seq.view(-1, 2),        # levels*positions*scales, 2\n                anchor_seq.view(-1, 2)      # levels*positions*scales, 2\n            )\n\n            score_pred = cls_seq\n\n            loc_res.append(loc_pred)\n            score_res.append(score_pred)\n\n        return loc_res, score_res\n\n\n    def cat_boxlist(self, bboxes):\n        \"\"\"\n        Concatenates a list of BoxList (having the same image size) into a\n        single BoxList\n\n        Arguments:\n            bboxes (list[BoxList])\n        \"\"\"\n        assert isinstance(bboxes, (list, tuple))\n        assert all(isinstance(bbox, dict) for bbox in bboxes)\n\n        res = {}\n        res['loc'] = torch.ones([0, 2])\n        for bb in bboxes:\n            res['loc'] = torch.cat(res['loc'], bb['loc'], dim=0)\n\n        return res\n"
  },
  {
    "path": "MQ/Models/AnchorGenerator.py",
    "content": "\nimport torch\nimport torch.nn as nn\nimport math\n\nclass AnchorGenerator(nn.Module):\n    def __init__(self, opt):\n        super(AnchorGenerator, self).__init__()\n        self.num_levels = opt['num_levels']\n        self.tscale = opt[\"temporal_scale\"]\n        self.scales = opt['anchor_scale']  #8  # 1\n        self.base_stride = opt['base_stride']\n        self.strides = []            # distance between anchors with respect to the sequence\n\n        self.base_anchors = []\n        for l in range(self.num_levels):\n            stride = self.base_stride * pow(2, l)\n            self.strides.append(stride)\n            self.base_anchors.append( self.get_base_anchors(stride, self.scales))\n\n        self.anchors = self.gen_anchors()\n\n\n    def gen_anchors(self):\n        feat_sizes = [ math.ceil(self.tscale / self.strides[l]) for l in range(self.num_levels)]\n        anchors = []\n        for size, stride, base_anchors in zip(feat_sizes, self.strides, self.base_anchors):\n            shifts = torch.arange(0, size * stride, step=stride, dtype=torch.float32)[:, None].repeat(1, 2)\n            anchors.append((shifts.view(-1, 1, 2) + base_anchors.view(1, -1, 2)).reshape(-1, 2))\n\n        return anchors\n\n    def get_base_anchors(self, stride, scales):\n        anchors = torch.tensor([1, stride], dtype=torch.float) - 0.5\n        anchors = self._scale_enum(anchors, scales)\n        return anchors\n\n    def _scale_enum(self, anchor, scales):\n        \"\"\"Enumerate a set of anchors for each scale wrt an anchor.\"\"\"\n        length, center = self._whctrs(anchor)\n        ws = length * torch.tensor(scales)\n        anchors = self._mkanchors(ws, center)\n        return anchors\n\n    def _mkanchors(self, ws, ctr):\n        anchors = torch.stack(\n            (\n                ctr.unsqueeze(0)- 0.5 * (ws.to(dtype=torch.float32) - 1),\n                ctr.unsqueeze(0)+ 0.5 * (ws.to(dtype=torch.float32) - 1)\n            )\n        ).transpose(0,1)\n\n        return anchors\n\n    def _whctrs(self, anchor):\n\n        length = anchor[1] - anchor[0] + 1\n        center = anchor[0] + 0.5 * (length - 1)\n        return length, center\n\n"
  },
  {
    "path": "MQ/Models/BoundaryAdjust.py",
    "content": "import torch\nimport torch.nn as nn\nfrom .Loss import Loss_loc_cls\n\n\nclass BoundaryAdjust(nn.Module):\n\n    def __init__(self, opt):\n        super(BoundaryAdjust, self).__init__()\n        self.tscale = opt['temporal_scale']\n        self.base_stride = opt['base_stride']\n        bb_hidden_dim = opt['bb_hidden_dim']\n\n        self.Loss = Loss_loc_cls(opt)\n\n        self.start_conv = nn.Sequential(\n            nn.Conv1d(in_channels=bb_hidden_dim, out_channels=bb_hidden_dim,kernel_size=3,stride=2,padding=0,groups=1),\n            nn.ReLU(inplace=True),\n            nn.Conv1d(in_channels=bb_hidden_dim, out_channels=1, kernel_size=1),\n        )\n\n        self.end_conv = nn.Sequential(\n            nn.Conv1d(in_channels=bb_hidden_dim, out_channels=bb_hidden_dim,kernel_size=3,stride=2,padding=0,groups=1),\n            nn.ReLU(inplace=True),\n            nn.Conv1d(in_channels=bb_hidden_dim, out_channels=1, kernel_size=1),\n        )\n\n    def forward(self, loc_box, feat_frmlvl):\n        beta = 8.\n        bs, C, _ = feat_frmlvl.shape\n\n        if isinstance(loc_box, list):\n            loc_box = torch.cat(loc_box, dim=1)\n        loc_box = torch.clamp(loc_box, min=0., max=(self.tscale)-1)\n\n        boundary_length = (loc_box[:,:,1] - loc_box[:,:,0] + 1) / beta\n\n        # Starts\n        starts = torch.clamp((loc_box[:,:,0] / self.base_stride).to(dtype=torch.long), min=0, max=(self.tscale / self.base_stride)-1)\n        starts_left = torch.clamp(((loc_box[:,:,0] - boundary_length) / self.base_stride).to(dtype=torch.long), min=0, max=(self.tscale / self.base_stride)-1)\n        starts_right = torch.clamp(((loc_box[:,:,0] + boundary_length) / self.base_stride).to(dtype=torch.long), min=0, max=(self.tscale / self.base_stride)-1)\n\n        start_feats_center = torch.stack([feat_frmlvl[i, :, starts[i, :]] for i in range(bs)]).permute(0, 2, 1).reshape(-1, C)\n        start_feats_left = torch.stack([feat_frmlvl[i, :, starts_left[i, :]] for i in range(bs)]).permute(0, 2, 1).reshape(-1, C)\n        start_feats_right = torch.stack([feat_frmlvl[i, :, starts_right[i, :]] for i in range(bs)]).permute(0, 2, 1).reshape(-1, C)\n\n        start_feats = torch.stack((start_feats_left, start_feats_center, start_feats_right), dim=-1)\n\n        start_offsets = self.start_conv(start_feats).squeeze().view(bs,-1)\n\n        # Ends\n        ends = torch.clamp((loc_box[:,:,1] / self.base_stride).to(dtype=torch.long), min=0, max=(self.tscale / self.base_stride)-1)\n        ends_left = torch.clamp(((loc_box[:,:,1] - boundary_length) / self.base_stride).to(dtype=torch.long), min=0, max=(self.tscale / self.base_stride)-1)\n        ends_right = torch.clamp(((loc_box[:,:,1] + boundary_length) / self.base_stride).to(dtype=torch.long), min=0, max=(self.tscale / self.base_stride)-1)\n\n        end_feats_center = torch.stack([feat_frmlvl[i, :, ends[i, :]] for i in range(bs)]).permute(0, 2, 1).reshape(-1, C)\n        end_feats_left = torch.stack([feat_frmlvl[i, :, ends_left[i, :]] for i in range(bs)]).permute(0, 2, 1).reshape(-1, C)\n        end_feats_right = torch.stack([feat_frmlvl[i, :, ends_right[i, :]] for i in range(bs)]).permute(0, 2, 1).reshape(-1, C)\n\n        end_feats = torch.stack((end_feats_left, end_feats_center, end_feats_right), dim=-1)\n\n        end_offsets = self.end_conv(end_feats).squeeze().view(bs,-1)\n\n        return start_offsets, end_offsets\n\n    def cal_loss(self, start_offsets, end_offsets, anchors, gt_bbox, num_gt):\n\n        box_pred = self.update_bd(anchors, start_offsets, end_offsets).view(-1, 2)\n\n        cls_labels, reg_targets = self.Loss.prepare_targets(gt_bbox, num_gt, anchors, stage=2)\n\n        cls_labels = torch.cat(cls_labels, dim=0)  # bs*levels*positions*scales, num_cls\n        reg_targets = torch.cat(reg_targets, dim=0)  # bs*levels*positions*scales, left-right\n\n        all_anchors = torch.cat(anchors, dim=1).view(-1, 2) # bs*levels*positions*scales, 2\n\n        pos_inds = torch.nonzero(cls_labels > 0).squeeze(1)\n        reg_loss = self.Loss.reg_loss_func(None, reg_targets[pos_inds], all_anchors[pos_inds], box_pred[pos_inds]) / pos_inds.numel()\n\n        return reg_loss\n\n    def update_bd(self, anchors, start_offsets, end_offsets):\n\n        if isinstance(anchors, list):\n            anchors = torch.cat(anchors, dim=1)\n        loc_st2 = anchors.clone()\n        loc_st2[:,:,0] = anchors[:,:,0] + start_offsets\n        loc_st2[:,:,1] = anchors[:,:,1] + end_offsets\n\n        return loc_st2\n"
  },
  {
    "path": "MQ/Models/BoxCoder.py",
    "content": "\nimport torch\nimport math\n\nclass BoxCoder(object):\n\n    def __init__(self, opt):\n        self.cfg = opt\n\n    def encode(self, gt_boxes, anchors):\n        if False: #self.cfg.MODEL.ATSS.REGRESSION_TYPE == 'POINT':\n            TO_REMOVE = 1  # TODO remove\n            anchors_w = anchors[:, 2] - anchors[:, 0] + TO_REMOVE\n            anchors_h = anchors[:, 3] - anchors[:, 1] + TO_REMOVE\n            anchors_cx = (anchors[:, 2] + anchors[:, 0]) / 2\n            anchors_cy = (anchors[:, 3] + anchors[:, 1]) / 2\n\n            w = self.cfg.MODEL.ATSS.ANCHOR_SIZES[0] / self.cfg.MODEL.ATSS.ANCHOR_STRIDES[0]\n            l = w * (anchors_cx - gt_boxes[:, 0]) / anchors_w\n            t = w * (anchors_cy - gt_boxes[:, 1]) / anchors_h\n            r = w * (gt_boxes[:, 2] - anchors_cx) / anchors_w\n            b = w * (gt_boxes[:, 3] - anchors_cy) / anchors_h\n            targets = torch.stack([l, t, r, b], dim=1)\n        elif True: #self.cfg.MODEL.ATSS.REGRESSION_TYPE == 'BOX':\n            TO_REMOVE = 1  # TODO remove\n            ex_length = anchors[:, 1] - anchors[:, 0] + TO_REMOVE\n            ex_center = (anchors[:, 1] + anchors[:, 0]) / 2\n\n            gt_length = gt_boxes[:, 1] - gt_boxes[:, 0] + TO_REMOVE\n            gt_center = (gt_boxes[:, 1] + gt_boxes[:, 0]) / 2\n\n            wx, ww = (10., 5.)\n            targets_dx = wx * (gt_center - ex_center) / ex_length\n            targets_dw = ww * torch.log(gt_length / ex_length)\n            targets = torch.stack((targets_dx, targets_dw), dim=1)\n\n        return targets\n\n    def decode(self, preds, anchors):\n        if False: #self.cfg.MODEL.ATSS.REGRESSION_TYPE == 'POINT':\n            TO_REMOVE = 1  # TODO remove\n            anchors_w = anchors[:, 2] - anchors[:, 0] + TO_REMOVE\n            anchors_h = anchors[:, 3] - anchors[:, 1] + TO_REMOVE\n            anchors_cx = (anchors[:, 2] + anchors[:, 0]) / 2\n            anchors_cy = (anchors[:, 3] + anchors[:, 1]) / 2\n\n            w = self.cfg.MODEL.ATSS.ANCHOR_SIZES[0] / self.cfg.MODEL.ATSS.ANCHOR_STRIDES[0]\n            x1 = anchors_cx - preds[:, 0] / w * anchors_w\n            y1 = anchors_cy - preds[:, 1] / w * anchors_h\n            x2 = anchors_cx + preds[:, 2] / w * anchors_w\n            y2 = anchors_cy + preds[:, 3] / w * anchors_h\n            pred_boxes = torch.stack([x1, y1, x2, y2], dim=1)\n        elif True: #self.cfg.MODEL.ATSS.REGRESSION_TYPE == 'BOX':\n            anchors = anchors.to(preds.dtype)\n\n            TO_REMOVE = 1  # TODO remove\n            ex_length = anchors[:, 1] - anchors[:, 0] + TO_REMOVE\n            ex_center = (anchors[:, 1] + anchors[:, 0]) / 2\n\n            wx, ww = (10, 5.)\n            dx = preds[:, 0] / wx\n            dw = preds[:, 1] / ww\n\n            # Prevent sending too large values into torch.exp()\n            dw = torch.clamp(dw, max=math.log(1000. / 16))\n\n            pred_ctr_x = (dx * ex_length + ex_center)\n            pred_w = (torch.exp(dw) * ex_length)\n\n            pred_boxes = torch.zeros_like(preds)\n            pred_boxes[:, 0] = pred_ctr_x - 0.5 * (pred_w - 1)\n            pred_boxes[:, 1] = pred_ctr_x + 0.5 * (pred_w - 1)\n        return pred_boxes"
  },
  {
    "path": "MQ/Models/GCNs.py",
    "content": "\nimport torch\nimport torch.nn as nn\n\n\n# dynamic graph from knn\ndef knn(x, num_frms, opt, y=None, k=10):\n    bs, _, length = x.shape\n    if y is None:\n        y = x\n\n    # Original neighbors\n    dif = torch.sum((x.unsqueeze(2) - y.unsqueeze(3))** 2, dim=1)\n    idx_org = dif.topk(k=k, dim=-1, largest=False)[1]\n\n    if not opt['use_VSS']:\n        return idx_org\n    else:\n        idx_new = idx_org.clone()\n        max_dif = torch.max(dif)\n        ratio = opt['temporal_scale'] / length\n        half1_k = int(k / 2)\n        half2_k = k - half1_k\n        for i in range(bs):\n            if num_frms[i] <= (opt['short_ratio'] * opt['temporal_scale']):\n                thr = int((num_frms[i] + opt['stitch_gap']) / ratio)\n                dif[i, thr:, thr:] = max_dif + 1\n\n                loc1 = torch.tensor(range(length), dtype=torch.long, device=x.device)[:, None].repeat(1, half1_k).view(-1)\n                loc2 = idx_org[i, :, :half1_k].reshape(-1)\n                dif[i, loc1, loc2] = max_dif + 1\n\n                idx_new[i, :, half1_k:] = dif[i].topk(k=half2_k, dim=-1, largest=False)[1]\n\n    return idx_new\n\n\ndef get_neigh_idx_semantic(x, n_neigh, num_frms, opt):\n\n    B, _, num_prop_v = x.shape\n    neigh_idx = knn(x, num_frms, opt, k=n_neigh).to(dtype=torch.float32)\n    shift = (torch.tensor(range(B), dtype=torch.float32, device=x.device) * num_prop_v)[:, None, None].repeat(1, num_prop_v, n_neigh)\n    neigh_idx = (neigh_idx + shift).view(-1)\n    return neigh_idx\n\n\nclass NeighConv(nn.Module):\n    def __init__(self, in_features, out_features, opt):\n        super(NeighConv, self).__init__()\n        self.num_neigh = opt['num_neigh']\n        self.nfeat_mode = opt['nfeat_mode']\n        self.agg_type = opt['agg_type']\n        self.edge_weight = opt['edge_weight']\n\n        self.mlp = nn.Linear(in_features*2, out_features)\n\n    def forward(self, feat_prop, neigh_idx):\n\n        feat_neigh = feat_prop[neigh_idx.to(torch.long)]\n        f_neigh_temp = feat_neigh.view(-1, self.num_neigh, feat_neigh.shape[-1])\n\n        if self.nfeat_mode == 'feat_ctr':\n            feat_neigh = torch.cat((feat_neigh.view(-1, self.num_neigh, feat_prop.size(-1)), feat_prop.view(-1, 1, feat_prop.size(-1)).repeat(1, self.num_neigh,1)), dim=-1)\n        elif self.nfeat_mode == 'dif_ctr':\n            feat_prop = feat_prop.view(-1, 1, feat_prop.size(-1)).repeat(1, self.num_neigh,1)\n            diff = feat_neigh.view(-1, self.num_neigh, feat_prop.size(-1)) - feat_prop\n            feat_neigh = torch.cat((diff, feat_prop), dim=-1)\n        elif self.nfeat_mode == 'feat':\n            feat_neigh = feat_neigh.view(-1, self.num_neigh, feat_prop.size(-1))\n\n        feat_neigh_out = self.mlp(feat_neigh)\n        if self.edge_weight == 'true':\n\n            weight = torch.matmul(f_neigh_temp, feat_prop.unsqueeze(2))\n            weight_denom1 = torch.sqrt(torch.sum(f_neigh_temp*f_neigh_temp, dim=2, keepdim=True))\n            weight_denom2 = torch.sqrt(torch.sum(feat_prop.unsqueeze(2)*feat_prop.unsqueeze(2), dim=1, keepdim=True))\n            weight = (weight / torch.matmul(weight_denom1, weight_denom2)).squeeze(2)\n            feat_neigh_out = feat_neigh_out * weight.unsqueeze(2)\n\n        if self.agg_type == 'max':\n            feat_neigh_out = feat_neigh_out.max(dim=1, keepdim=False)[0]\n        elif self.agg_type == 'mean':\n            feat_neigh_out = feat_neigh_out.mean(dim=1, keepdim=False)\n        return feat_neigh_out\n\nclass xGN(nn.Module):\n    def __init__(self,  opt, in_channels, out_channels, stride = 2, bias=True):\n        super(xGN, self).__init__()\n        self.gcn_insert = opt['gcn_insert']\n        self.n_neigh = opt['num_neigh']\n        self.opt = opt\n        self.tconv1 = nn.Conv1d(in_channels=in_channels, out_channels=out_channels, kernel_size=3, stride=1, padding=1, groups=1)\n        self.nconv1 = NeighConv(in_channels, out_channels, opt)\n        self.stride = stride\n\n        self.relu = nn.ReLU(inplace=True)\n        if self.stride == 2:\n            self.maxpool = nn.MaxPool1d(kernel_size=2, stride=2)\n\n    def forward(self, x, num_frms):\n        bs, C, num_frm = x.shape\n\n        # CNN\n        c_out = self.tconv1(x)\n\n        # GCN\n        if self.gcn_insert == 'par':\n            neigh_idx = get_neigh_idx_semantic(x, self.n_neigh, num_frms, self.opt)\n            g_out = self.nconv1(x.permute(0, 2, 1).reshape(-1, C), neigh_idx)\n            g_out = g_out.view(bs, num_frm, -1).permute(0, 2, 1)\n            out = c_out + g_out\n\n        elif self.gcn_insert == 'seq':\n            neigh_idx = get_neigh_idx_semantic(c_out, self.n_neigh, num_frms, self.opt)\n            g_out = self.nconv1(c_out.permute(0, 2, 1).reshape(-1, C), neigh_idx)\n            g_out = g_out.view(bs, num_frm, -1).permute(0, 2, 1)\n            out = g_out\n\n        out = self.relu(out)\n\n        if self.stride == 2:\n            out = self.maxpool(out)\n\n        return out\n"
  },
  {
    "path": "MQ/Models/Head.py",
    "content": "import torch.nn as nn\nimport torch.nn.functional as F\n\n\nclass Head(nn.Module):\n    def __init__(self, opt):\n        super(Head, self).__init__()\n\n        self.num_convs_head = opt['num_head_layers']  # 1\n        bb_hidden_dim = opt['bb_hidden_dim']\n        num_anchors = len(opt['anchor_scale'])\n        num_classes = opt['decoder_num_classes']\n\n        cls_tower = []\n        bbox_tower = []\n        conv_func = nn.Conv1d\n        for i in range(self.num_convs_head):\n\n            cls_tower.append(\n                conv_func(\n                    bb_hidden_dim,\n                    bb_hidden_dim,\n                    kernel_size=3,\n                    stride=1,\n                    padding=1,\n                    bias=True\n                )\n            )\n            cls_tower.append(nn.GroupNorm(32, bb_hidden_dim))\n            cls_tower.append(nn.ReLU())\n\n            bbox_tower.append(\n                conv_func(\n                    bb_hidden_dim,\n                    bb_hidden_dim,\n                    kernel_size=3,\n                    stride=1,\n                    padding=1,\n                    bias=True\n                )\n            )\n            bbox_tower.append(nn.GroupNorm(32, bb_hidden_dim))\n            bbox_tower.append(nn.ReLU())\n\n        self.add_module('cls_tower', nn.Sequential(*cls_tower))\n        self.add_module('bbox_tower', nn.Sequential(*bbox_tower))\n        self.cls_logits = nn.Conv1d(\n            bb_hidden_dim, num_anchors * num_classes, kernel_size=3, stride=1,\n            padding=1\n        )\n        self.bbox_pred = nn.Conv1d(\n            bb_hidden_dim, num_anchors * 2, kernel_size=3, stride=1,\n            padding=1\n        )\n\n    def forward(self, x):\n        logits = []\n        bbox_reg = []\n        for l, feature in enumerate(x):\n            cls_tower = self.cls_tower(feature)\n            box_tower = self.bbox_tower(feature)\n\n            logits.append(self.cls_logits(cls_tower))\n\n            bbox_pred = self.bbox_pred(box_tower)\n            # if self.cfg.MODEL.ATSS.REGRESSION_TYPE == 'POINT':\n            #     bbox_pred = F.relu(bbox_pred)\n            bbox_reg.append(bbox_pred)\n\n        return logits, bbox_reg\n"
  },
  {
    "path": "MQ/Models/Loss.py",
    "content": "\nimport torch\nimport torch.nn.functional as F\nfrom .matcher import Matcher\n\nfrom .BoxCoder import  BoxCoder\n\n\nclass Loss_loc_cls(object):\n\n    def __init__(self, opt):\n\n        self.tscale = opt[\"temporal_scale\"]\n        self.gamma = 2.0\n        self.alpha = opt['focal_alpha']\n        self.num_classes = opt['decoder_num_classes']\n        self.iou_thresholds = opt['iou_thr']\n        self.matcher = Matcher(True)\n\n        self.box_coder = BoxCoder(opt)\n\n\n    def _iou_anchors_gts(self, anchor, gt):\n\n        anchors_min = anchor[:, 0]\n        anchors_max = anchor[:, 1]\n        box_min = gt[:, 0]\n        box_max = gt[:, 1]\n        len_anchors = anchors_max - anchors_min + 1\n        int_xmin = torch.max(anchors_min[:, None], box_min)\n        int_xmax = torch.min(anchors_max[:, None], box_max)\n        inter_len = torch.clamp(int_xmax - int_xmin, min=0)\n        union_len = torch.clamp(len_anchors[:, None] + box_max - box_min - inter_len, min=0)\n        jaccard = inter_len / union_len\n        return jaccard\n\n    def __call__(self, cls_pred_dec, reg_pred_dec, anchors, gt_bbox, num_gt):\n        bs = cls_pred_dec[0].shape[0]\n        anchors = [anchor.unsqueeze(0).repeat(bs, 1, 1).to(device=gt_bbox.device) for anchor in anchors]\n        cls_pred_dec = [cls_pred_dec[i] for i in range(len(cls_pred_dec)-1, -1, -1)]\n        reg_pred_dec = [reg_pred_dec[i] for i in range(len(reg_pred_dec)-1, -1, -1)]\n\n        loc_dec = []\n        for pred, anchor in zip(reg_pred_dec, anchors):\n            pred = pred.permute(0, 2, 1).reshape(-1, 2)\n            anchor = anchor.view(-1, 2)\n            loc_dec.append(self.box_coder.decode(pred, anchor).view(bs, -1,2))\n\n        _, reg_loss1 = self._loss_one_stage(cls_pred_dec, reg_pred_dec, gt_bbox, num_gt, anchors, stage=1)\n        cls_loss1, _ = self._loss_one_stage(cls_pred_dec, reg_pred_dec, gt_bbox, num_gt, loc_dec, stage=1)\n\n        losses = {\n            \"loss_cls_dec\": cls_loss1,\n            \"loss_reg_dec\": reg_loss1,\n        }\n        return losses, loc_dec\n\n\n    def _loss_one_stage(self, cls_pred, reg_pred, gt_bbox, num_gt, anchors, stage=0):\n\n        num_cls = self.num_classes\n\n        cls_labels, reg_targets = self.prepare_targets(gt_bbox, num_gt, anchors, stage=stage) # bs, levels*positions*scales, num_cls/left-right\n\n        cls_pred = torch.cat(cls_pred, dim=2).permute(0, 2, 1).reshape(-1, num_cls) # bs, levels*positions, scales*cls --> bs*levels*positions*scales, num_cls\n        reg_pred = torch.cat(reg_pred, dim=2).permute(0, 2, 1).reshape(-1, 2) # bs, levels*positions, scales*left-right --> bs*levels*positions*scales, left-right\n\n        cls_labels = torch.cat(cls_labels, dim=0)  # bs*levels*positions*scales, num_cls\n        reg_targets = torch.cat(reg_targets, dim=0)  # bs*levels*positions*scales, left-right\n\n        all_anchors = torch.cat(anchors, dim=1).view(-1, 2) # bs*levels*positions*scales, 2\n\n        pos_inds = torch.nonzero(cls_labels > 0).squeeze(1)\n        cls_loss = self.cls_loss_func(cls_pred, cls_labels)\n        reg_loss = self.reg_loss_func(reg_pred[pos_inds], reg_targets[pos_inds], all_anchors[pos_inds]) / pos_inds.numel()\n\n        return  cls_loss, reg_loss\n\n    def cls_loss_func(self, cls_pred, cls_labels):\n\n        pmask = (cls_labels>0).float()\n        nmask = (cls_labels==0).float()\n        num_pos = torch.sum(pmask)\n        num_neg = torch.sum(nmask)\n\n        CE_loss = torch.nn.CrossEntropyLoss(reduction='none')\n\n        loss = CE_loss(cls_pred, cls_labels.to(torch.long))\n\n        pos_loss = torch.sum(loss * pmask) / num_pos\n        neg_loss = torch.sum(loss * nmask) / num_neg\n\n        total_loss = pos_loss + neg_loss\n\n        return total_loss\n\n    def reg_loss_func(self, pred, target, anchor, pred_boxes=None, weight=None):\n        if type(pred_boxes) == type(None):\n            pred_boxes = self.box_coder.decode(pred, anchor)\n        pred_x1 = torch.min(pred_boxes[:, 0], pred_boxes[:, 1])\n        pred_x2 = torch.max(pred_boxes[:, 0], pred_boxes[:, 1])\n        pred_area = (pred_x2 - pred_x1)\n\n        gt_boxes = self.box_coder.decode(target, anchor)\n        target_x1 = gt_boxes[:, 0]\n        target_x2 = gt_boxes[:, 1]\n        target_area = (target_x2 - target_x1)\n\n        x1_intersect = torch.max(pred_x1, target_x1)\n        x2_intersect = torch.min(pred_x2, target_x2)\n        area_intersect = torch.zeros(pred_x1.size()).to(target)\n        mask = (x2_intersect > x1_intersect)\n        area_intersect[mask] = (x2_intersect[mask] - x1_intersect[mask])\n\n        x1_enclosing = torch.min(pred_x1, target_x1)\n        x2_enclosing = torch.max(pred_x2, target_x2)\n        area_enclosing = (x2_enclosing - x1_enclosing)  + 1e-7\n\n        area_union = pred_area + target_area - area_intersect + 1e-7\n        ious = area_intersect / area_union\n        gious = ious - (area_enclosing - area_union) / area_enclosing\n\n        losses = 1 - gious\n\n        if weight is not None and weight.sum() > 0:\n            return (losses * weight).sum()\n        else:\n            assert losses.numel() != 0\n            return losses.sum()\n\n\n    def prepare_targets(self, gt_bbox, num_gt, anchors, stage=0):\n\n        cls_targets = []\n        reg_targets = []\n        all_anchors = torch.cat(anchors, dim=1) # bs, levels, positions, scales, left-right\n\n        for i in range(len(gt_bbox)):\n\n            gt_cur_im = gt_bbox[i, :num_gt[i], :-1] * self.tscale\n            gt_label = gt_bbox[i, :num_gt[i], -1]\n            anchor_cur_im = all_anchors[i]\n            iou_matrix = self._iou_anchors_gts(anchor_cur_im, gt_cur_im)\n\n            # Find the corresponding gt for each pred\n            matched_idxs = self.matcher(iou_matrix.transpose(0, 1), self.iou_thresholds[stage])\n\n            # Use the label of the corresponding gt as the classification target for the pred\n            cls_labels_cur_im = torch.zeros_like(matched_idxs)\n\n            cls_labels_cur_im[:] = gt_label[matched_idxs]\n\n            cls_labels_cur_im[matched_idxs <0] = 0\n\n            # Record the boundary offset as the regression target\n            matched_gts = gt_cur_im[matched_idxs.clamp(min=0)]\n            reg_targets_cur_im = self.box_coder.encode(matched_gts, anchor_cur_im)\n\n            cls_targets.append(cls_labels_cur_im.to(dtype=torch.int32))\n            reg_targets.append(reg_targets_cur_im)\n\n        return cls_targets, reg_targets\n\n\ndef bi_loss(prediction, groundtruth, reduction='mean'):\n    gt = groundtruth.view(-1)\n    pred = prediction.contiguous().view(-1)\n\n    pmask = (gt>0.5).float()\n    num_positive = torch.sum(pmask)\n    num_entries = len(gt)\n    ratio=num_entries/num_positive\n\n    coef_0=0.5*(ratio)/(ratio-1)\n    coef_1=coef_0*(ratio-1)\n    loss = coef_1*pmask*torch.log(pred+0.00001) + coef_0*(1.0-pmask)*torch.log(1.0-pred+0.00001)\n\n    if reduction == 'mean':\n        loss = -torch.mean(loss)\n    elif reduction == 'none':\n        loss = -torch.mean(loss.view(groundtruth.shape), dim=1)\n    return loss\n\n\n\ndef get_loss_supplement(pred_action, gt_action, pred_start, gt_start, pred_end, gt_end):\n    loss_action = bi_loss(pred_action, gt_action)\n    loss_start = bi_loss(pred_start, gt_start)\n    loss_end = bi_loss(pred_end, gt_end)\n\n    return loss_action, loss_start, loss_end"
  },
  {
    "path": "MQ/Models/VSGN.py",
    "content": "# -*- coding: utf-8 -*-\nimport torch.nn as nn\nfrom .XGPN import XGPN\nimport torch.nn.functional as F\nfrom .Head import Head\nfrom .AnchorGenerator import AnchorGenerator\nfrom .Loss import Loss_loc_cls, get_loss_supplement\nfrom .ActionGenerator import Pred_loc_cls\nfrom .BoundaryAdjust import BoundaryAdjust\n\nclass VSGN(nn.Module):\n    def __init__(self, opt):\n        super(VSGN, self).__init__()\n\n        self.bb_hidden_dim = opt['bb_hidden_dim']\n        self.bs = opt[\"batch_size\"]\n        self.is_train = opt['is_train']\n        self.tem_best_loss = 10000000\n        self.hidden_dim_2d = 128\n        self.hidden_dim_3d = 512\n        self.input_feat_dim = opt['input_feat_dim']\n\n        self.xGPN = XGPN(opt)\n\n        # self.head_enc = Head(opt)\n        self.head_dec = Head(opt)\n\n        self.anchors = AnchorGenerator(opt).anchors\n        self.loss_loc_and_cls = Loss_loc_cls(opt)\n        self.bd_adjust = BoundaryAdjust(opt)\n\n        self.pred_loc_and_cls = Pred_loc_cls(opt)\n\n\n        # Generate action/start/end scores\n        self.head_actionness = nn.Sequential(\n            nn.Conv1d(self.bb_hidden_dim, self.bb_hidden_dim, kernel_size=3, padding=1, groups=1),\n            # nn.GroupNorm(32, self.bb_hidden_dim),\n            nn.ReLU(inplace=True),\n            nn.Conv1d(self.bb_hidden_dim, 1, kernel_size=1),\n            nn.Sigmoid()\n        )\n        self.head_startness = nn.Sequential(\n            nn.Conv1d(self.bb_hidden_dim, self.bb_hidden_dim, kernel_size=3, padding=1, groups=1),\n            # nn.GroupNorm(32, self.bb_hidden_dim),\n            nn.ReLU(inplace=True),\n            nn.Conv1d(self.bb_hidden_dim, 1, kernel_size=1),\n            nn.Sigmoid()\n        )\n        self.head_endness = nn.Sequential(\n            nn.Conv1d(self.bb_hidden_dim, self.bb_hidden_dim, kernel_size=3, padding=1, groups=1),\n            # nn.GroupNorm(32, self.bb_hidden_dim),\n            nn.ReLU(inplace=True),\n            nn.Conv1d(self.bb_hidden_dim, 1, kernel_size=1),\n            nn.Sigmoid()\n        )\n\n    def _forward_test(self, cls_pred_enc, reg_pred_enc, cls_pred_dec, reg_pred_dec):\n\n        loc_enc, score_enc, loc_dec, score_dec = self.gen_predictions(cls_pred_enc, reg_pred_enc, cls_pred_dec, reg_pred_dec, self.anchors)\n\n        return loc_enc, score_enc, loc_dec, score_dec\n\n\n\n    def forward(self, input, num_frms, gt_action= None, gt_start= None, gt_end= None, gt_bbox = None, num_gt = None):\n        # Cross-scale graph pyramid network\n        feats_enc, feats_dec = self.xGPN(input, num_frms)\n\n        # Scoring and localization\n        cls_pred_dec, reg_pred_dec = self.head_dec(feats_dec)\n        if self.is_train == 'true':\n            losses, loc_dec = self.loss_loc_and_cls(cls_pred_dec, reg_pred_dec, self.anchors, gt_bbox, num_gt)\n        else:\n            score_dec, loc_dec = self.pred_loc_and_cls(cls_pred_dec, reg_pred_dec, self.anchors)\n\n        # Supplementary scores\n        actionness = self.head_actionness(feats_dec[-1])\n        startness = self.head_startness(feats_dec[-1])\n        endness = self.head_endness(feats_dec[-1])\n\n        actionness = F.interpolate(actionness, size=input.size()[2:], mode='linear', align_corners=True).squeeze(1)\n        startness = F.interpolate(startness, size=input.size()[2:], mode='linear', align_corners=True).squeeze(1)\n        endness = F.interpolate(endness, size=input.size()[2:], mode='linear', align_corners=True).squeeze(1)\n\n        if self.is_train == 'true':\n            loss_action, loss_start, loss_end = get_loss_supplement(actionness, gt_action, startness, gt_start, endness, gt_end)\n            losses['loss_action'] = loss_action\n            losses['loss_start'] = loss_start\n            losses['loss_end'] = loss_end\n\n        # Boundary adjustment\n        start_offsets, end_offsets = self.bd_adjust(loc_dec, feats_dec[-1])\n\n        if self.is_train == 'true':\n            loss_reg_st2 = self.bd_adjust.cal_loss(start_offsets, end_offsets, loc_dec, gt_bbox, num_gt)\n            losses['loss_bd_adjust'] = loss_reg_st2\n\n            return losses, actionness, startness, endness\n        else:\n            loc_adjusted = self.bd_adjust.update_bd(loc_dec, start_offsets, end_offsets)\n            return loc_dec, score_dec, loc_adjusted, actionness, startness, endness\n\n\n\n\n\n\n"
  },
  {
    "path": "MQ/Models/XGPN.py",
    "content": "\nimport torch.nn as nn\n# from Utils.Sync_batchnorm.batchnorm import SynchronizedBatchNorm1d\nfrom .GCNs import xGN\n\n\n\nclass XGPN(nn.Module):\n    def __init__(self, opt):\n        super(XGPN, self).__init__()\n        self.input_feat_dim = opt[\"input_feat_dim\"]\n        self.bb_hidden_dim = opt['bb_hidden_dim']\n        self.batch_size = opt[\"batch_size\"]\n        self.tem_best_loss = 10000000\n        self.num_levels = opt['num_levels']\n        self.use_xGPN = opt['use_xGPN']\n\n        self.conv0 = nn.Sequential(\n            nn.Conv1d(in_channels=self.input_feat_dim, out_channels=self.bb_hidden_dim,kernel_size=3,stride=1,padding=1,groups=1),\n            nn.ReLU(inplace=True),\n        )\n\n        self.levels_enc = nn.ModuleList()\n        for i in range(self.num_levels):\n            if i == 0:\n                stride = 1\n            else:\n                stride = 2\n            self.levels_enc.append(self._make_levels_enc(opt, in_channels=self.bb_hidden_dim, out_channels=self.bb_hidden_dim, stride = stride))\n\n        self.levels_dec = nn.ModuleList()\n        for i in range(self.num_levels - 1):\n            output_padding = 1\n            self.levels_dec.append(self._make_levels_dec(in_channels=self.bb_hidden_dim, out_channels=self.bb_hidden_dim, output_padding = output_padding))\n\n        self.levels1 = nn.ModuleList()\n        for i in range(self.num_levels):\n            self.levels1.append(self._make_levels(in_channels=self.bb_hidden_dim, out_channels=self.bb_hidden_dim))\n\n        self.levels2 = nn.ModuleList()\n        for i in range(self.num_levels - 1):\n            self.levels2.append(self._make_levels(in_channels=self.bb_hidden_dim, out_channels=self.bb_hidden_dim))\n\n\n    def _make_levels_enc(self, opt, in_channels, out_channels, stride = 2):\n        if self.use_xGPN:\n            return xGN(opt, in_channels=in_channels, out_channels=out_channels, stride = stride)\n        else:\n            return nn.Sequential(\n                nn.Conv1d(in_channels=in_channels, out_channels=out_channels, kernel_size=3, stride=stride, padding=1,\n                          groups=1),\n                nn.ReLU(inplace=True)\n            )\n\n    def _make_levels_dec(self, in_channels, out_channels, output_padding = 1):\n\n        return nn.Sequential(\n            nn.ConvTranspose1d(in_channels=in_channels, out_channels=out_channels,kernel_size=3,stride=2,padding=1, output_padding=output_padding, groups=1),\n            nn.ReLU(inplace=True),\n        )\n\n    def _make_levels(self, in_channels, out_channels):\n\n        return nn.Sequential(\n            nn.Conv1d(in_channels=in_channels, out_channels=out_channels,kernel_size=3,stride=1,padding=1,groups=1),\n            nn.ReLU(inplace=True),\n        )\n\n    def _encoder(self, input, num_frms):\n\n        feats = []\n        x = self.conv0(input)\n        for i in range(0, self.num_levels):\n            if self.use_xGPN:\n                x = self.levels_enc[i](x, num_frms)\n            else:\n                x = self.levels_enc[i](x)\n            feats.append(x)\n\n        return feats\n\n    def _decoder(self, input):\n\n        feats = []\n        x = self.levels1[0](input[self.num_levels - 1])\n        feats.append(x)\n\n        for i in range(self.num_levels - 1):\n            ii = self.num_levels - i - 2\n            feat_enc = self.levels2[i](input[ii])\n            feat_dec = self.levels_dec[i](x)\n            x = self.levels1[i+1](feat_enc + feat_dec)\n            feats.append(x)\n\n\n\n        return feats\n\n    def forward(self, input, num_frms):\n\n        feats_enc = self._encoder(input, num_frms)\n        feats_dec = self._decoder(feats_enc)\n\n        return feats_enc, feats_dec\n"
  },
  {
    "path": "MQ/Models/matcher.py",
    "content": "import torch\n\n\nclass Matcher(object):\n    \"\"\"\n    This class assigns to each predicted \"element\" (e.g., a box) a ground-truth\n    element. Each predicted element will have exactly zero or one matches; each\n    ground-truth element may be assigned to zero or more predicted elements.\n\n    Matching is based on the MxN match_quality_matrix, that characterizes how well\n    each (ground-truth, predicted)-pair match. For example, if the elements are\n    boxes, the matrix may contain box IoU overlap values.\n\n    The matcher returns a tensor of size N containing the index of the ground-truth\n    element m that matches to prediction n. If there is no match, a negative value\n    is returned.\n    \"\"\"\n\n    BELOW_LOW_THRESHOLD = -1\n    BETWEEN_THRESHOLDS = -2\n\n    def __init__(self, allow_low_quality_matches=False):\n        \"\"\"\n        Args:\n            high_threshold (float): quality values greater than or equal to\n                this value are candidate matches.\n            low_threshold (float): a lower quality threshold used to stratify\n                matches into three levels:\n                1) matches >= high_threshold\n                2) BETWEEN_THRESHOLDS matches in [low_threshold, high_threshold)\n                3) BELOW_LOW_THRESHOLD matches in [0, low_threshold)\n            allow_low_quality_matches (bool): if True, produce additional matches\n                for predictions that have only low-quality match candidates. See\n                set_low_quality_matches_ for more details.\n        \"\"\"\n        # assert low_threshold <= high_threshold\n        # self.high_threshold = high_threshold\n        # self.low_threshold = low_threshold\n        self.allow_low_quality_matches = allow_low_quality_matches\n\n    def __call__(self, match_quality_matrix, iou_thr = 0.5):\n        \"\"\"\n        Args:\n            match_quality_matrix (Tensor[float]): an MxN tensor, containing the\n            pairwise quality between M ground-truth elements and N predicted elements.\n\n        Returns:\n            matches (Tensor[int64]): an N tensor where N[i] is a matched gt in\n            [0, M - 1] or a negative value indicating that prediction i could not\n            be matched.\n        \"\"\"\n        if match_quality_matrix.numel() == 0:\n            # empty targets or proposals not supported during training\n            if match_quality_matrix.shape[0] == 0:\n                raise ValueError(\n                    \"No ground-truth boxes available for one of the images \"\n                    \"during training\")\n            else:\n                raise ValueError(\n                    \"No proposal boxes available for one of the images \"\n                    \"during training\")\n\n\n        matched_vals, matches = match_quality_matrix.max(dim=0)\n        if self.allow_low_quality_matches:\n            all_matches = matches.clone()\n\n        # Assign candidate matches with low quality to negative (unassigned) values\n        below_threshold = matched_vals < iou_thr\n        matches[below_threshold] = Matcher.BELOW_LOW_THRESHOLD\n\n\n        if self.allow_low_quality_matches:\n            self.set_low_quality_matches_(matches, all_matches, match_quality_matrix)\n\n        return matches\n\n    def set_low_quality_matches_(self, matches, all_matches, match_quality_matrix):\n        \"\"\"\n        Produce additional matches for predictions that have only low-quality matches.\n        Specifically, for each ground-truth find the set of predictions that have\n        maximum overlap with it (including ties); for each prediction in that set, if\n        it is unmatched, then match it to the ground-truth with which it has the highest\n        quality value.\n        \"\"\"\n        # For each gt, find the prediction with which it has highest quality\n        highest_quality_foreach_gt, _ = match_quality_matrix.max(dim=1)\n        # Find highest quality match available, even if it is low, including ties\n        gt_pred_pairs_of_highest_quality = torch.nonzero(\n            match_quality_matrix == highest_quality_foreach_gt[:, None]\n        )\n\n        pred_inds_to_update = gt_pred_pairs_of_highest_quality[:, 1]\n        matches[pred_inds_to_update] = all_matches[pred_inds_to_update]\n"
  },
  {
    "path": "MQ/README.md",
    "content": "\n## Environment Installation\nCreate a conda environment and install required packages from scratch following the steps below\n```\n    conda create -n pytorch160 python=3.7 \n    conda activate pytorch160   \n    conda install pytorch=1.6.0 torchvision cudatoolkit=10.1.243 -c pytorch   \n    conda install -c anaconda pandas    \n    conda install -c anaconda h5py  \n    conda install -c anaconda scipy \n    conda install -c conda-forge tensorboardx   \n    conda install -c anaconda joblib    \n    conda install -c conda-forge matplotlib \n    conda install -c conda-forge urllib3\n```\n### Annotation conversion \nIf you use the canonical annotation files, you need to first convert them by removing unused \ncategories and video clips\n```\n    python Convert_annotation.py\n```\n\n### Training\n```    \n     python Train.py --use_xGPN --is_train true --dataset ego4d --feature_path {DATA_PATH} --checkpoint_path {CHECKPOINT_PATH} --batch_size 32 --train_lr 0.0001\n```\n### Inference\n```\n     python Infer.py  --use_xGPN --is_train false --dataset ego4d --feature_path {DATA_PATH} --checkpoint_path {CHECKPOINT_PATH}  --output_path {OUTPUT_PATH}   \n```\n### Evaluation\n```\n     python Eval.py --dataset ego4d --output_path {OUTPUT_PATH} --out_prop_map {OUT_PMAP} --eval_stage all\n```\n### Generate a submission file for the Ego4D Moment Queries challenge\n```\n    python Merge_detection_retrieval.py\n```\n\n## Acknowledgements\n\nThis codebase is built on  [VSGN](https://github.com/coolbay/VSGN).\n\nPlease also consider citing [VSGN](https://openaccess.thecvf.com/content/ICCV2021/papers/Zhao_Video_Self-Stitching_Graph_Network_for_Temporal_Action_Localization_ICCV_2021_paper.pdf) if you use this codebase.\n```\n@inproceedings{zhao2021video,\n  title={Video self-stitching graph network for temporal action localization},\n  author={Zhao, Chen and Thabet, Ali K and Ghanem, Bernard},\n  booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision},\n  pages={13658--13667},\n  year={2021}\n}\n```\n"
  },
  {
    "path": "MQ/Train.py",
    "content": "import sys\nsys.dont_write_bytecode = True\nimport os\nimport torch\nimport torch.nn.parallel\nimport torch.optim as optim\nimport numpy as np\nfrom tensorboardX import SummaryWriter\nimport Utils.opts as opts\nfrom Utils.dataset import VideoDataSet\nfrom Models.VSGN import VSGN\nimport datetime\nfrom collections import defaultdict\n\ntorch.manual_seed(21)\n\ndef Train_VSGN(opt):\n    path_appendix = '_'.join(string for string in opt['checkpoint_path'].split('_')[1:])\n    writer = SummaryWriter(logdir='runs/' + path_appendix)\n    model = VSGN(opt)\n    device = \"cuda\"\n    model = torch.nn.DataParallel(model)\n    model.to(device)\n\n    optimizer = optim.Adam(model.parameters(), lr=opt[\"train_lr\"], weight_decay=opt[\"weight_decay\"])\n\n    start_epoch = 0\n\n    kwargs = {'num_workers': 16, 'pin_memory': True, 'drop_last': True}\n\n    train_loader = torch.utils.data.DataLoader(VideoDataSet(opt, subset=\"train\"),\n                                               batch_size=opt[\"batch_size\"], shuffle=True,\n                                               **kwargs)\n\n    test_loader = torch.utils.data.DataLoader(VideoDataSet(opt, subset=\"validation\"),\n                                              batch_size=opt[\"batch_size\"], shuffle=False,\n                                              **kwargs)\n\n    scheduler = torch.optim.lr_scheduler.StepLR(optimizer, step_size=opt[\"step_size\"], gamma=opt[\"step_gamma\"])\n\n    for epoch in range(start_epoch, opt[\"num_epoch\"]):\n\n        train_VSGN_epoch(train_loader, model, optimizer, epoch, writer, opt)\n        epoch_loss = test_VSGN_epoch(test_loader, model, epoch, writer, opt)\n\n        print((datetime.datetime.now()))\n        state = {'epoch': epoch + 1,\n                 'state_dict': model.state_dict(),\n                 'optimizer': optimizer.state_dict()}\n        torch.save(state, opt[\"checkpoint_path\"] + \"/checkpoint.pth.tar\")\n        if epoch_loss < model.module.tem_best_loss:\n            print((datetime.datetime.now()))\n            print('The best model up to now is from Epoch {}'.format(epoch))\n            model.module.tem_best_loss = np.mean(epoch_loss)\n            torch.save(state, opt[\"checkpoint_path\"] + \"/best.pth.tar\")\n\n        scheduler.step()\n    writer.close()\n\n\ndef train_VSGN_epoch(data_loader, model, optimizer, epoch, writer, opt, is_train=True):\n\n    if is_train:\n        model.train()\n    else:\n        model.eval()\n\n    epoch_losses = defaultdict(float)\n    for n_iter, (input_data, gt_action, gt_start, gt_end, gt_bbox, num_gt, num_frms) in enumerate(data_loader):\n        with torch.set_grad_enabled(is_train):\n            losses, pred_action, pred_start, pred_end = model(input_data, num_frms, gt_action, gt_start, gt_end,  gt_bbox, num_gt)\n\n\n        # Overall loss\n        loss_cls_dec = torch.mean(losses['loss_cls_dec'])\n        loss_reg_dec = torch.mean(losses['loss_reg_dec'])\n        loss_action = torch.mean(losses['loss_action'])\n        loss_start = torch.mean(losses['loss_start'])\n        loss_end = torch.mean(losses['loss_end'])\n        loss_bd_adjust = torch.mean(losses['loss_bd_adjust'])\n\n        loss = loss_cls_dec + loss_reg_dec + 0.2*loss_action + 0.2*loss_start +0.2*loss_end + loss_bd_adjust\n\n        if is_train:\n            optimizer.zero_grad()\n            loss.backward()\n            optimizer.step()\n\n        epoch_losses['loss'] += loss.cpu().detach().numpy()\n        epoch_losses['loss_cls_dec'] += loss_cls_dec.cpu().detach().numpy()\n        epoch_losses['loss_reg_dec'] += loss_reg_dec.cpu().detach().numpy()\n        epoch_losses['loss_action'] += loss_action.cpu().detach().numpy()\n        epoch_losses['loss_start'] += loss_start.cpu().detach().numpy()\n        epoch_losses['loss_end'] += loss_end.cpu().detach().numpy()\n        epoch_losses['loss_bd_adjust'] += loss_bd_adjust.cpu().detach().numpy()\n\n    for k, v in epoch_losses.items():\n        epoch_losses[k] = v / (n_iter + 1)\n\n    to_print = [\"%s loss (epoch %d): \" % ('Train' if is_train else 'Val', epoch)]\n    for k, v in epoch_losses.items():\n        writer.add_scalar('%s/%s' % ('train' if is_train else 'val', k), v, epoch)\n        writer.flush()\n        to_print.append('%s: %.04f' % (k, v))\n    print(' '.join(to_print))\n\n    return epoch_losses['loss']\n\n\n\ndef test_VSGN_epoch(data_loader, model, epoch, writer, opt):\n    return train_VSGN_epoch(data_loader, model, None, epoch, writer, opt, is_train=False)\n\n\n\n\nif __name__ == '__main__':\n\n    print(datetime.datetime.now())\n\n    opt = opts.parse_opt()\n    opt = vars(opt)\n\n    if not os.path.exists(opt[\"checkpoint_path\"]):\n        os.makedirs(opt[\"checkpoint_path\"])\n\n    print(opt)\n\n    print(\"---------------------------------------------------------------------------------------------\")\n    print(\"Training starts!\")\n    print(\"---------------------------------------------------------------------------------------------\")\n    Train_VSGN(opt)\n    print(\"Training finishes!\")\n\n    print(datetime.datetime.now())\n\n"
  },
  {
    "path": "MQ/Utils/__init__.py",
    "content": ""
  },
  {
    "path": "MQ/Utils/dataset.py",
    "content": "# -*- coding: utf-8 -*-\nimport numpy as np\nimport pandas as pd\nimport pandas\nimport numpy\nimport json\nimport torch.utils.data as data\nimport os\nimport torch\nimport h5py\nimport pickle\nimport torch.nn.functional as F\nfrom scipy.io import loadmat\n\ndef load_json(file):\n    with open(file) as json_file:\n        data = json.load(json_file)\n        return data\n\n\nclass VideoDataSet(data.Dataset):\n    def __init__(self, opt, subset=\"train\", mode=\"train\"):\n        self.temporal_scale = opt[\"temporal_scale\"]\n        self.input_feat_dim = opt['input_feat_dim']\n        self.temporal_gap = 1. / self.temporal_scale\n        self.subset = subset\n        self.mode = mode\n        self.feature_path = opt[\"feature_path\"]\n        self.gap = opt['stitch_gap']\n        self.clip_anno = opt['clip_anno']\n        self.moment_classes = opt[\"moment_classes\"]\n\n\n        self._getDatasetDict()\n\n        self.anchor_xmin = [self.temporal_gap * i for i in range(self.temporal_scale)]\n        self.anchor_xmax = [self.temporal_gap * i for i in range(1, self.temporal_scale + 1)]\n\n    def _getDatasetDict(self):\n\n        anno_database = load_json(self.clip_anno)\n\n        self.clip_dict = {}\n        class_list = []\n\n        for clip_name, clip_info in anno_database.items():\n\n            clip_subset = clip_info['subset']\n\n            if clip_subset in self.subset:\n                self.clip_dict[clip_name] = clip_info\n\n                for item in clip_info['annotations']:\n                    class_list.append(item['label'])\n\n        self.clip_list = list(self.clip_dict.keys())\n\n        if os.path.exists(self.moment_classes):\n            with open(self.moment_classes, 'r') as f:\n                self.classes = json.load(f)\n        else:\n            class_list = list(set(class_list))\n            class_list = sorted(class_list)\n            print(f'The total number of classes is {len(class_list) + 1}')\n            self.classes = {'Background': 0}\n            for i,cls in enumerate(class_list):\n                self.classes[cls] = i + 1\n            with open(self.moment_classes, 'w') as f:\n                f.write(json.dumps(self.classes))\n\n    def __getitem__(self, index):\n        if self.mode == \"train\":\n            video_data, match_score_action, match_score_start, match_score_end, gt_bbox, num_gt, num_frms = self._get_video_data(index)\n            return video_data, match_score_action, match_score_start, match_score_end, gt_bbox, num_gt, num_frms\n        else:\n            video_data, num_frms = self._get_video_data(index)\n            return index, video_data, num_frms\n\n\n\n    def _get_video_data(self, index):\n\n        # General data\n        clip_name = self.clip_list[index]\n        clip_info = self.clip_dict[clip_name]\n        video_name = clip_info['video_id']\n\n        # Get video features\n        v_data = torch.load(os.path.join(self.feature_path, video_name + '.pt'))\n        v_data = torch.transpose(v_data, 0, 1)\n        num_frms_v = v_data.shape[-1]\n        fps_v = clip_info['fps']\n\n        clip_start = int(clip_info['parent_start_sec'] * fps_v)\n        clip_end = min(int(clip_info['parent_end_sec'] * fps_v), num_frms_v-1)\n\n        video_data = torch.zeros(self.input_feat_dim, self.temporal_scale)\n        win_data = v_data[:, clip_start: clip_end+1]\n        num_frms = min(win_data.shape[-1], self.temporal_scale)\n        video_data[:, :num_frms] = win_data[:, :num_frms]\n        if self.mode == 'train':\n            match_score_action, match_score_start, match_score_end, gt_bbox_padding, num_gt, num_frms = \\\n                self._get_train_data_label_org(num_frms, clip_name, fps_v)\n            return video_data, match_score_action, match_score_start, match_score_end, gt_bbox_padding, num_gt, num_frms\n        else:\n            return video_data, num_frms\n\n\n\n    def _get_train_data_label_org(self, num_frms, clip_name,  fps):\n        # Get annotations\n        clip_info = self.clip_dict[clip_name]\n        clip_labels = clip_info['annotations']\n\n        # Get gt_iou_map\n        gt_bbox = []\n        for j in range(len(clip_labels)):\n            tmp_info = clip_labels[j]\n\n            tmp_start_f = max(min(num_frms-1, tmp_info['start_time']*fps), 0)\n            tmp_end_f = max(min(num_frms-1, tmp_info['end_time']*fps), 0)\n\n            tmp_start = tmp_start_f / self.temporal_scale\n            tmp_end = tmp_end_f / self.temporal_scale\n\n\n            print(f'tmp_start {tmp_start}')\n            print(f'tmp_end {tmp_end}')\n            tmp_class = self.classes[tmp_info['label']]\n            gt_bbox.append([tmp_start, tmp_end, tmp_class])\n\n\n        # Get actionness scores\n        match_score_action = [0] * self.temporal_scale\n        for bbox in gt_bbox:\n            left_frm = max(round(bbox[0] * self.temporal_scale), 0)\n            right_frm = min(round(bbox[1] * self.temporal_scale), self.temporal_scale-1)\n            match_score_action[left_frm:right_frm+1] = [bbox[2]] * (right_frm + 1 - left_frm)\n\n        match_score_action = torch.Tensor(match_score_action)\n\n        ####################################################################################################\n        # generate R_s and R_e\n        gt_bbox = np.array(gt_bbox)\n        if gt_bbox.shape[0] == 0:\n            print(gt_bbox.shape)\n\n        gt_xmins = gt_bbox[:, 0]\n        gt_xmaxs = gt_bbox[:, 1]\n        gt_len_small = 3 * self.temporal_gap\n        gt_start_bboxs = np.stack((gt_xmins - gt_len_small / 2, gt_xmins + gt_len_small / 2), axis=1)\n        gt_end_bboxs = np.stack((gt_xmaxs - gt_len_small / 2, gt_xmaxs + gt_len_small / 2), axis=1)\n        #####################################################################################################\n\n        ##########################################################################################################\n        # calculate the ioa for all timestamp\n        match_score_start = []\n        for jdx in range(len(self.anchor_xmin)):\n            match_score_start.append(np.max(\n                self._ioa_with_anchors(self.anchor_xmin[jdx], self.anchor_xmax[jdx], gt_start_bboxs[:, 0], gt_start_bboxs[:, 1])))\n        match_score_end = []\n        for jdx in range(len(self.anchor_xmin)):\n            match_score_end.append(np.max(\n                self._ioa_with_anchors(self.anchor_xmin[jdx], self.anchor_xmax[jdx], gt_end_bboxs[:, 0], gt_end_bboxs[:, 1])))\n        match_score_start = torch.Tensor(match_score_start)\n        match_score_end = torch.Tensor(match_score_end)\n        ############################################################################################################\n\n        max_num_box = 50\n        gt_bbox = torch.tensor(gt_bbox, dtype=torch.float32)\n        gt_bbox_padding = gt_bbox.new(max_num_box, gt_bbox.size(1)).zero_()\n        num_gt = min(gt_bbox.size(0), max_num_box)\n        gt_bbox_padding[:num_gt, :] = gt_bbox[:num_gt]\n        # labels = BoxList(torch.Tensor(gt_bbox))\n\n        return  match_score_action, match_score_start, match_score_end, gt_bbox_padding, num_gt, num_frms\n\n\n\n    def _ioa_with_anchors(self, anchors_min, anchors_max, box_min, box_max):\n        len_anchors = anchors_max - anchors_min\n        int_xmin = np.maximum(anchors_min, box_min)\n        int_xmax = np.minimum(anchors_max, box_max)\n        inter_len = np.maximum(int_xmax - int_xmin, 0.)\n        scores = np.divide(inter_len, len_anchors)\n        return scores\n\n    def __len__(self):\n        return len(self.clip_list)\n\n\ndef iou_with_anchors(anchors_min, anchors_max, box_min, box_max):\n    \"\"\"Compute jaccard score between a box and the anchors.\n    \"\"\"\n    len_anchors = anchors_max - anchors_min\n    int_xmin = np.maximum(anchors_min, box_min)\n    int_xmax = np.minimum(anchors_max, box_max)\n    inter_len = np.maximum(int_xmax - int_xmin, 0.)\n    union_len = len_anchors - inter_len + box_max - box_min\n    # print inter_len,union_len\n    jaccard = np.divide(inter_len, union_len)\n    return jaccard\n\n\n"
  },
  {
    "path": "MQ/Utils/opts.py",
    "content": "import argparse\n\ndef parse_opt():\n\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        '--dataset',\n        default='ego4d',\n        type=str,\n        choices=['ego4d', 'ego4d'])\n    parser.add_argument(\n        '--is_train',\n        default='true',\n        type=str,\n        choices=['true', 'false'])\n    parser.add_argument(\n        '--out_prop_map',\n        default='true',\n        type=str,\n        choices=['true', 'false'])\n\n    # Dataset and annotation paths\n    parser.add_argument(\n        '--feature_path',\n        type=str,\n        default=\"/mnt/sdb1/Datasets/Ego4d/action_feature_canonical\")\n    parser.add_argument(\n        '--clip_anno',\n        type=str,\n        default=\"Evaluation/ego4d/annot/clip_annotations.json\")\n    parser.add_argument(\n        '--moment_classes',\n        type=str,\n        default=\"Evaluation/ego4d/annot/moment_classes_idx.json\")\n\n    # Output paths\n    parser.add_argument(\n        '--checkpoint_path',\n        type=str,\n        default='checkpoint')\n    parser.add_argument(\n        '--output_path',\n        type=str,\n        default='output')\n    parser.add_argument(\n        '--prop_path',\n        type=str,\n        default='proposals')\n    parser.add_argument(\n        '--prop_result_file',\n        type=str,\n        default=\"proposals_postNMS.json\")\n    parser.add_argument(\n        '--detect_result_file',\n        type=str,\n        default=\"detections_postNMS.json\")\n    parser.add_argument(\n        '--retrieval_result_file',\n        type=str,\n        default=\"retrieval_postNMS.json\")\n    parser.add_argument(\n        '--detad_sensitivity_file',\n        type=str,\n        default=\"detad_sensitivity\")\n\n    # Training hyper-parameters\n    parser.add_argument(\n        '--batch_size',\n        type=int,\n        default=32)\n    parser.add_argument(\n        '--train_lr',\n        type=float,\n        default=0.00005)\n    parser.add_argument(\n        '--weight_decay',\n        type=float,\n        default=0.0001)\n    parser.add_argument(\n        '--num_epoch',\n        type=int,\n        default=30)\n    parser.add_argument(\n        '--step_size',\n        type=int,\n        default=15)\n    parser.add_argument(\n        '--step_gamma',\n        type=float,\n        default=0.1)\n    parser.add_argument(\n        '--focal_alpha',\n        type=float,\n        default=0.01)\n\n    # Post processing\n    parser.add_argument(\n        '--nms_alpha_detect',\n        type=float,\n        default=0.46)\n    parser.add_argument(\n        '--nms_alpha_prop',\n        type=float,\n        default=0.75)\n    parser.add_argument(\n        '--nms_thr',\n        type=float,\n        default=0.4)\n\n    # Model architecture settings\n    parser.add_argument(\n        '--temporal_scale',\n        type=int,\n        default=928)\n    parser.add_argument(\n        '--input_feat_dim',\n        type=int,\n        default=2304)\n    parser.add_argument(\n        '--bb_hidden_dim',\n        type=int,\n        default=256)\n    parser.add_argument(\n        '--decoder_num_classes',\n        type=int,\n        default=111)\n    parser.add_argument(\n        '--num_levels',\n        type=int,\n        default=5)  # 5\n    parser.add_argument(\n        '--num_head_layers',\n        type=int,\n        default=4)\n\n    # Graph network hyper-parameters\n    parser.add_argument(\n        '--nfeat_mode',\n        default='feat_ctr',\n        type=str,\n        choices=['feat_ctr', 'dif_ctr', 'feat'])\n    parser.add_argument(\n        '--num_neigh',\n        type=int,\n        default=12)\n    parser.add_argument(\n        '--edge_weight',\n        default='false',\n        type=str,\n        choices=['true', 'false'])\n    parser.add_argument(\n        '--agg_type',\n        default='max',\n        type=str,\n        choices=['max', 'mean'])\n    parser.add_argument(\n        '--gcn_insert',\n        default='par',\n        type=str,\n        choices=['seq', 'par'])\n\n    # Detection hyper-parameters\n    parser.add_argument(\n        '--iou_thr',\n        nargs='+',\n        type=float,\n        default=[0.5, 0.5, 0.7])\n    parser.add_argument(\n        '--anchor_scale',\n        nargs='+',\n        type=float,\n        default=[1, 10])  # 4, 6; 8, 12; 16, 24; 32, 48; 64, 96\n    parser.add_argument(\n        '--base_stride',\n        type=int,\n        default=1)\n\n\n    # VSS hyper-parameters\n    parser.add_argument(\n        '--stitch_gap',\n        type=int,\n        default=30)\n    parser.add_argument(\n        '--short_ratio',\n        type=float,\n        default=0.4)\n    parser.add_argument(\n        '--clip_win_size',\n        type=float,\n        default=0.38)\n\n    # Baselines\n    parser.add_argument(\n        '--use_xGPN',\n        default=False,\n        action='store_true')\n    parser.add_argument(\n        '--use_VSS',\n        default=False,\n        action='store_true')\n\n    parser.add_argument(\n        '--num_props',\n        type=int,\n        default=200)\n\n    parser.add_argument(\n        '--tIoU_thr',\n        nargs='+',\n        type=float,\n        default=[0.1, 0.2, 0.3, 0.4, 0.5])\n\n    parser.add_argument(\n        '--eval_stage',\n        default='process_eval_prop',\n        type=str,\n        choices=['process_eval_prop', 'eval_detection', 'eval_retrieval', 'detad', 'all'])\n\n    parser.add_argument(\n        '--infer_datasplit',\n        default='test',\n        type=str,\n        choices=['test', 'validation'])\n    args = parser.parse_args()\n\n    return args\n"
  },
  {
    "path": "NLQ/2D-TAN/CODE_OF_CONDUCT.md",
    "content": "# Microsoft Open Source Code of Conduct\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\r\n\r\nResources:\r\n\r\n- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)\r\n- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)\r\n- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns\r\n"
  },
  {
    "path": "NLQ/2D-TAN/CONTRIBUTING.md",
    "content": "\n# Contributing\n\nThis project welcomes contributions and suggestions.  Most contributions require you to agree to a\nContributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us\nthe rights to use your contribution. For details, visit https://cla.microsoft.com.\n\nWhen you submit a pull request, a CLA-bot will automatically determine whether you need to provide\na CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions\nprovided by the bot. You will only need to do this once across all repos using our CLA.\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\nFor more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or\ncontact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n"
  },
  {
    "path": "NLQ/2D-TAN/LICENSE",
    "content": "   2D-TAN: Learning 2D Temporal Localization Networks for Moment Localization with Natural Language\r\n   \r\n   MIT License\r\n\r\n    Copyright (c) Microsoft Corporation.\r\n\r\n    Permission is hereby granted, free of charge, to any person obtaining a copy\r\n    of this software and associated documentation files (the \"Software\"), to deal\r\n    in the Software without restriction, including without limitation the rights\r\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n    copies of the Software, and to permit persons to whom the Software is\r\n    furnished to do so, subject to the following conditions:\r\n\r\n    The above copyright notice and this permission notice shall be included in all\r\n    copies or substantial portions of the Software.\r\n\r\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n    SOFTWARE\r\n"
  },
  {
    "path": "NLQ/2D-TAN/README.md",
    "content": "\n## Environment Installation\nPlease refer to README\\_2D-TAN.MD for the main environment.\n\nAfter that, please install transformers package\n```\npip install transformers\n```\n\n\n### Train && Test\n\nTo train a new model\n```    \npython moment_localization/train.py --cfg  experiments/ego4d/2D-TAN-40x40-K9L4-pool-window-std-sf.yaml --verbose\n```\n\nTo generate the submission file, do\n```\npython moment_localization/test.py --cfg  experiments/ego4d/2D-TAN-40x40-K9L4-pool-window-std-sf.yaml --verbose --split test --result nlq_2dtan_submission.json\n```\n\n## Acknowledgements\n\nThis codebase is built on  [2D-TAN](https://github.com/microsoft/2D-TAN).\n\n## Citation\n\nIf any part of the code is helpful to your work, please cite with:\n\n```\n@InProceedings{\n2DTAN_2020_AAAI,\nauthor = {Zhang, Songyang and Peng, Houwen and Fu, Jianlong and Luo, Jiebo},\ntitle = {Learning 2D Temporal Adjacent Networks forMoment Localization with Natural Language},\nbooktitle = {AAAI},\nyear = {2020}\n}\n```\n"
  },
  {
    "path": "NLQ/2D-TAN/README_2D-TAN.md",
    "content": "# 2D-TAN\n\nwe are hiring talented interns: houwen.peng@microsoft.com\n\nIn  this  paper,  we  study  the  problem  of  moment  localization  with  natural  language,  and  propose  a  novel  2D  Temporal Adjacent Networks(2D-TAN) method. \nThe core idea is to retrieve a moment on a two-dimensional temporal map, which considers adjacent moment candidates as the temporal context. \n2D-TAN is capable of encoding adjacent temporal relation, while learning discriminative feature for matching video moments with referring expressions. \nOur model is  simple  in  design  and  achieves  competitive  performance in  comparison  with  the  state-of-the-art  methods  on  three benchmark datasets.\n\n[Arxiv Preprint](https://arxiv.org/abs/1912.03590)\n\n**Please check the [`ms-2d-tan`](https://github.com/microsoft/2D-TAN/tree/ms-2d-tan) branch for our [TPAMI extension](https://arxiv.org/abs/2012.02646).**\n\n## News\n- :beers: Our journal extension is accepted by TPAMI.\n- :wrench: A third-party [optimized implementation](https://github.com/ChenJoya/2dtan) by @ChenJoya.\n- :sunny: Our paper was accepted by AAAI-2020. [Arxiv Preprint](https://arxiv.org/abs/1912.03590)\n- :trophy: We extend our 2D-TAN approach to the temporal action localization task and win the **1st** place in [HACS Temporal Action Localization Challenge](http://hacs.csail.mit.edu/challenge.html) at [ICCV 2019](iccv2019.thecvf.com). For more details please refer to our [technical report](https://arxiv.org/abs/1912.03612).\n\n## Framework\n![alt text](imgs/pipeline.jpg)\n\n## Main Results\n\n#### Main results on Charades-STA\n| Method | Rank1@0.5 | Rank1@0.7 | Rank5@0.5 | Rank5@0.7 |\n| ---- |:-------------:| :-----:|:-----:|:-----:|\n| Pool | 40.94 | 22.85 | 83.84 | 50.35 |\n| Conv | 42.80 | 23.25 | 80.54 | 54.14 |\n\nI fixed a bug for loading charades visual features, the updated performance is listed above.\nPlease use these results when comparing with our AAAI paper. \n\n#### Main results on ActivityNet Captions \n| Method | Rank1@0.3 | Rank1@0.5 | Rank1@0.7 | Rank5@0.3 | Rank5@0.5 | Rank5@0.7 |\n| ---- |:-------------:| :-----:|:-----:|:-----:|:-----:|:-----:|\n| Pool | 59.45 | 44.51 | 26.54 | 85.53 | 77.13 | 61.96 |\n| Conv | 58.75 | 44.05 | 27.38 | 85.65 | 76.65 | 62.26 |\n\n#### Main results on TACoS\n| Method | Rank1@0.1 | Rank1@0.3 | Rank1@0.5 | Rank5@0.1 | Rank5@0.3 | Rank5@0.5 |\n| ---- |:-------------:| :-----:|:-----:|:-----:|:-----:|:-----:|\n| Pool | 47.59 | 37.29 | 25.32 | 70.31 | 57.81 | 45.04 |\n| Conv | 46.39 | 35.17 | 25.17 | 74.46 | 56.99 | 44.24 |\n\n## Prerequisites\n- pytorch 1.1.0\n- python 3.7\n- torchtext\n- easydict\n- terminaltables\n\n\n## Quick Start\n\nPlease download the visual features from [box drive](https://rochester.box.com/s/8znalh6y5e82oml2lr7to8s6ntab6mav) and save it to the `data/` folder. \n\n\n#### Training\nUse the following commands for training:\n```\n# Evaluate \"Pool\" in Table 1\npython moment_localization/train.py --cfg experiments/charades/2D-TAN-16x16-K5L8-pool.yaml --verbose\n# Evaluate \"Conv\" in Table 1\npython moment_localization/train.py --cfg experiments/charades/2D-TAN-16x16-K5L8-conv.yaml --verbose\n\n# Evaluate \"Pool\" in Table 2\npython moment_localization/train.py --cfg experiments/activitynet/2D-TAN-64x64-K9L4-pool.yaml --verbose\n# Evaluate \"Conv\" in Table 2\npython moment_localization/train.py --cfg experiments/activitynet/2D-TAN-64x64-K9L4-conv.yaml --verbose\n\n# Evaluate \"Pool\" in Table 3\npython moment_localization/train.py --cfg experiments/tacos/2D-TAN-128x128-K5L8-pool.yaml --verbose\n# Evaluate \"Conv\" in Table 3\npython moment_localization/train.py --cfg experiments/tacos/2D-TAN-128x128-K5L8-conv.yaml --verbose\n```\n\n#### Testing\nOur trained model are provided in [box drive](https://rochester.box.com/s/5cfp7a5snvl9uky30bu7mn1cb381w91v). Please download them to the `checkpoints` folder.\n\nThen, run the following commands for evaluation: \n```\n# Evaluate \"Pool\" in Table 1\npython moment_localization/test.py --cfg experiments/charades/2D-TAN-16x16-K5L8-pool.yaml --verbose --split test\n# Evaluate \"Conv\" in Table 1\npython moment_localization/test.py --cfg experiments/charades/2D-TAN-16x16-K5L8-conv.yaml --verbose --split test\n\n# Evaluate \"Pool\" in Table 2\npython moment_localization/test.py --cfg experiments/activitynet/2D-TAN-64x64-K9L4-pool.yaml --verbose --split test\n# Evaluate \"Conv\" in Table 2\npython moment_localization/test.py --cfg experiments/activitynet/2D-TAN-64x64-K9L4-conv.yaml --verbose --split test\n\n# Evaluate \"Pool\" in Table 3\npython moment_localization/test.py --cfg experiments/tacos/2D-TAN-128x128-K5L8-pool.yaml --verbose --split test\n# Evaluate \"Conv\" in Table 3\npython moment_localization/test.py --cfg experiments/tacos/2D-TAN-128x128-K5L8-conv.yaml --verbose --split test\n```\n\n## Citation\nIf any part of our paper and code is helpful to your work, please generously cite with:\n```\n@InProceedings{2DTAN_2020_AAAI,\nauthor = {Zhang, Songyang and Peng, Houwen and Fu, Jianlong and Luo, Jiebo},\ntitle = {Learning 2D Temporal Adjacent Networks forMoment Localization with Natural Language},\nbooktitle = {AAAI},\nyear = {2020}\n} \n```\n"
  },
  {
    "path": "NLQ/2D-TAN/SECURITY.md",
    "content": "<!-- BEGIN MICROSOFT SECURITY.MD V0.0.3 BLOCK -->\r\n\r\n## Security\r\n\r\nMicrosoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).\r\n\r\nIf you believe you have found a security vulnerability in any Microsoft-owned repository that meets Microsoft's [Microsoft's definition of a security vulnerability](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)) of a security vulnerability, please report it to us as described below.\r\n\r\n## Reporting Security Issues\r\n\r\n**Please do not report security vulnerabilities through public GitHub issues.**\r\n\r\nInstead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://msrc.microsoft.com/create-report).\r\n\r\nIf you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com).  If possible, encrypt your message with our PGP key; please download it from the the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/en-us/msrc/pgp-key-msrc).\r\n\r\nYou should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc).\r\n\r\nPlease include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:\r\n\r\n  * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)\r\n  * Full paths of source file(s) related to the manifestation of the issue\r\n  * The location of the affected source code (tag/branch/commit or direct URL)\r\n  * Any special configuration required to reproduce the issue\r\n  * Step-by-step instructions to reproduce the issue\r\n  * Proof-of-concept or exploit code (if possible)\r\n  * Impact of the issue, including how an attacker might exploit the issue\r\n\r\nThis information will help us triage your report more quickly.\r\n\r\nIf you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://microsoft.com/msrc/bounty) page for more details about our active programs.\r\n\r\n## Preferred Languages\r\n\r\nWe prefer all communications to be in English.\r\n\r\n## Policy\r\n\r\nMicrosoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd).\r\n\r\n<!-- END MICROSOFT SECURITY.MD BLOCK -->\r\n"
  },
  {
    "path": "NLQ/2D-TAN/data/ActivityNet/download.sh",
    "content": "wget http://ec2-52-11-11-89.us-west-2.compute.amazonaws.com/data/challenge16/features/c3d/activitynet_v1-3.part-00\nwget http://ec2-52-11-11-89.us-west-2.compute.amazonaws.com/data/challenge16/features/c3d/activitynet_v1-3.part-01\nwget http://ec2-52-11-11-89.us-west-2.compute.amazonaws.com/data/challenge16/features/c3d/activitynet_v1-3.part-02\nwget http://ec2-52-11-11-89.us-west-2.compute.amazonaws.com/data/challenge16/features/c3d/activitynet_v1-3.part-03\nwget http://ec2-52-11-11-89.us-west-2.compute.amazonaws.com/data/challenge16/features/c3d/activitynet_v1-3.part-04\nwget http://ec2-52-11-11-89.us-west-2.compute.amazonaws.com/data/challenge16/features/c3d/activitynet_v1-3.part-05\ncat activitynet_v1-3.part-* > temp.zip && unzip temp.zip\n"
  },
  {
    "path": "NLQ/2D-TAN/data/ActivityNet/test.json",
    "content": "{\"v_uqiMw7tQ1Cc\": {\"duration\": 55.15, \"timestamps\": [[0, 4.14], [4.14, 33.36], [33.36, 55.15]], \"sentences\": [\"Two men both dressed in athletic gear are standing and talking in an indoor weight lifting gym filled with other equipment.\", \" One man is holding onto a rope attached to a machine, and the other man instructs him to bend down on his left knee while still holding onto the rope and he showing the man how to have proper form.\", \" The man then instructs the man holding the rope to pull the row down a few times and he's talking the whole time.\"]}, \"v_bXdq2zI1Ms0\": {\"duration\": 73.1, \"timestamps\": [[6.94, 69.08], [37.28, 43.49], [43.13, 55.55]], \"sentences\": [\"Three men are standing on a mat.\", \" The man in front begins to do karate on the mat.\", \" He gets down on the ground and flips around.\"]}, \"v_CN01Gm2Yc4k\": {\"duration\": 17.56, \"timestamps\": [[0, 5], [5, 12.2], [12.2, 17.56]], \"sentences\": [\"A young lady is gripping a black and silver punching bag between her legs.\", \"Once she has secured herself on the bag,she begins doing a set of crunches by pulling herself up.\", \"In between the crunches,she sits up and makes punches out into the air,before going back down.\"]}, \"v_K6Tm5xHkJ5c\": {\"duration\": 114.64, \"timestamps\": [[0, 21.78], [25.79, 83.69], [91.14, 114.64]], \"sentences\": [\"A woman is standing on a lit stage.\", \" She is holding an accordian as she talks.\", \" She is surrounded by two other accordians as she instructs on how to play the instrument.\"]}, \"v_4Lu8ECLHvK4\": {\"duration\": 124.23, \"timestamps\": [[0, 25.47], [28.57, 78.88], [79.51, 118.02]], \"sentences\": [\"A small child is seen standing on a base with an older man pointing.\", \" A boy runs after a ball and stands on the base.\", \" The adult runs back and fourth while others still play kickball.\"]}, \"v_HWV_ccmZVPA\": {\"duration\": 50.32, \"timestamps\": [[1.01, 50.32], [1.01, 26.67], [26.67, 50.07]], \"sentences\": [\"A commercial displays advertising a Sea Wheeze event by showing groups of women beginning a marathon, live music, and live group yoga all done outdoors.\", \"  A group of women perform yoga and start a marathon interspersed with images of people juggling, cheer leading and smiling and having fun.\", \"  A group of people perform yoga and listen to live music before the scene fades out.\"]}, \"v_2D22fVcAcyo\": {\"duration\": 215.78, \"timestamps\": [[0, 20.5], [0, 22.66], [22.66, 47.47], [47.47, 107.89], [107.89, 145.65], [145.65, 215.78]], \"sentences\": [\"a lot of people are standing in square around two kids.\", \" a young and a kid are doing balance in a balance rope.\", \" men are walking outside a tent and doing balance on top of a rope.\", \" people are walking in a bridge to see a competition of men doing tricks on top of a balance rope.\", \" man is jumping and dping tricks in a balance rope above a cold river.\", \" the boy is in a competition in snowy path doing tricks on a balance rope with people behind a fence watching him.\"]}, \"v_lVu-4SKcb4c\": {\"duration\": 17.88, \"timestamps\": [[0, 9.48], [0, 9.39], [1.43, 9.39], [11.44, 17.88]], \"sentences\": [\"A man in a green shirt is looking forward.\", \" He aims a dart and throws it.\", \" He repeats this a few more times.\", \" The dartboard is shown with three darts in it.\"]}, \"v_EvJqfGXb5Fo\": {\"duration\": 158.18, \"timestamps\": [[0, 34.01], [34.01, 64.06], [64.85, 97.28], [97.28, 142.36], [142.36, 158.18]], \"sentences\": [\"A young girl is outside raking a leaves out of the back yard.\", \"The camera then comes along and shows her working hard and then stopping to take a break.\", \"A small young boy is also outside and he begins smiling because his section of leaves are in a pile while the girl is still working.\", \"The boy then takes his rake and runs across the yard with it as the dog comes running out of nowhere.\", \"While this is taking place,the girl continues to work hard to get her portion done as the boy laughs and plays.\"]}, \"v_gOniW-yEZ0k\": {\"duration\": 13.58, \"timestamps\": [[0, 13.58], [0, 1.9], [2.78, 13.58]], \"sentences\": [\"a man is sitting in a park with his legs extended.\", \" two people are knelled in front of the man.\", \" one woman takes a strip and waxes one of the man's legs.\"]}, \"v_o-BGGr-DU5g\": {\"duration\": 47.53, \"timestamps\": [[4.75, 9.98], [14.73, 15.69], [40.64, 47.53]], \"sentences\": [\"Two people are sitting in a kayak rowing.\", \" Another person is sitting in a kayak rowing.\", \" Words are shown on the screen.\"]}, \"v_Po8gmt7hVTY\": {\"duration\": 92.13, \"timestamps\": [[0, 26.26], [23.49, 65.87], [63.11, 89.82]], \"sentences\": [\"A man is seen speaking to the camera followed by boiling water and water being poured out of a faucet.\", \" The man puts it noodles and spins them around and drains them.\", \" He adds more ingredients and tastes the noddles in the end.\"]}, \"v_yACg55C3IlM\": {\"duration\": 176.37, \"timestamps\": [[0, 56.44], [16.76, 21.16], [55.56, 119.05], [119.93, 137.57], [138.45, 151.68], [151.68, 176.37], [140.21, 161.38]], \"sentences\": [\"Two women wash a car by hand.\", \" A person cleans a motorcycle.\", \" Then, a woman brings a hose and rinse the car, while the other female rubs the car with an sponge.\", \" The woman throws water with the hose to the female who grabs the hose.\", \" Then, the female rinse the car with the hose.\", \" After, the female throws water with the hose to the woman.\", \" A woman wearing white clothes approaches the woman and the female.\"]}, \"v_E9R1H8xRIW8\": {\"duration\": 24.96, \"timestamps\": [[0, 3.37], [3.49, 15.1], [16.35, 24.96]], \"sentences\": [\"A man is outside in his front yard.\", \" He is using a push mower to mow the grass.\", \" He lifts the mower and turns it at every corner.\"]}, \"v_5qsXmDi8d74\": {\"duration\": 186.6, \"timestamps\": [[0, 26.12], [26.12, 41.05], [41.05, 95.16], [95.16, 129.68], [129.68, 186.6]], \"sentences\": [\"A sumo is slowly walking into an indoor arena where there a lot of spectators in the stands, and people already on the sumo wrestling stage.\", \"The man sits down and a widescreen shot of the arena is shown with yellow and white kanji appear on the screen.\", \"The two sumo men are in the sumo ring with the referee in the middle of them off to the side and they begin to wrestle one another trying to push each other out of the ring while the referee runs from side to side to monitor the situations.\", \" Eventually the taller sumo pushes the smaller guy out of the ring and they fall a little into the audience but both remain on their feet and go back onto the ring to catch their breaths and have the referee announce the winner.\", \" The replay of the round won plays in slow motion and at different angles.\"]}, \"v_ng14GLT_hHQ\": {\"duration\": 153.35, \"timestamps\": [[0, 153.35], [0, 39.87], [41.4, 133.41], [111.18, 153.35]], \"sentences\": [\"A man is seen on his knees surrounded by painting tools and materials.\", \" He mixes some pain and paints part of a canvas, then does another color.\", \" He keeps adding paint along the way, sometimes directly to the canvas.\", \" At the end he paints the edges around the canvas, and the finished painting is shown.\"]}, \"v_wPYr19iFxhw\": {\"duration\": 56.61, \"timestamps\": [[0, 15.28], [15.28, 27.46], [28.59, 56.61]], \"sentences\": [\"A red machine is seen on the ground.\", \" A man walks up next to it and picks up a hose.\", \" He begins to weld a piece of metal on the ground in front of it.\"]}, \"v_nGABbRHJ2Ug\": {\"duration\": 113.34, \"timestamps\": [[0, 113.34], [13.6, 69.14], [73.1, 113.34]], \"sentences\": [\"A girl in a pink top explains to a man how to use an elliptical machine at a gym.\", \" She gets on and explains and gets off.\", \" The man gets on and uses the machine as the girl explains further.\"]}, \"v_D0pVkTEYQg8\": {\"duration\": 21.41, \"timestamps\": [[0, 6.1], [6.1, 14.67], [13.92, 20.77]], \"sentences\": [\"A man is seen sitting on an exercise bike looking in the distance.\", \" He then begins riding around on the bike.\", \" He continues riding on the bike and looking off into the distance.\"]}, \"v_iHm8ZXs2XdY\": {\"duration\": 222.54, \"timestamps\": [[1.11, 86.79], [86.79, 170.24], [170.24, 212.53]], \"sentences\": [\"A woman brushes and styles her hair.\", \" The woman braids her hair into three braids, then braids the braids together.\", \" The woman shows off her completed braid in various poses.\"]}, \"v_y9kk0ptXevk\": {\"duration\": 94.85, \"timestamps\": [[0, 35.1], [28.93, 68.77], [64.03, 92.48]], \"sentences\": [\"A close up of shoes are shown followed by a woman speaking to the camera.\", \" She mixes together ingredients in a bowl and dips a rag inside.\", \" She wipes down the shoes with a rag and holds up a bottle.\"]}, \"v_Fdzw3niNDYY\": {\"duration\": 122.07, \"timestamps\": [[0, 6.1], [6.1, 31.13], [31.13, 51.27], [51.27, 75.07], [75.07, 100.71], [100.71, 122.07]], \"sentences\": [\"A large museum is shown with several vases and pictures hanging from the wall.\", \"As the 360 angle of the room stops,a man and a woman appear standing together in the room.\", \"The male then walks over to the wall and then comes back to talk to the woman.\", \"Suddenly,the female takes off her blazer and is shown in some what of a lingerie outfit and mesmerizes the man while picking up a fencing utensil with her feet.\", \"After,the two begin fencing and the man ends up popping off her button and she does the same in return.\", \"Towards the end of the game,the man's pants fall off and you can see his boxers,the lady gets back dressed and walks out of the building.\"]}, \"v_jikOPvJPU-c\": {\"duration\": 210.19, \"timestamps\": [[0, 27.32], [14.71, 45.19], [73.57, 119.81], [120.86, 210.19]], \"sentences\": [\"A young woman stands in a kitchen talking to a camera.\", \" She starts to make a sandwich.\", \" She puts the sandwich on a pan and cooks it.\", \" She then eats the sandwich.\"]}, \"v_R7DhZaY3A08\": {\"duration\": 83.06, \"timestamps\": [[0, 9.97], [13.7, 47.76], [54.4, 83.06]], \"sentences\": [\"A man and woman are playing on an indoor court.\", \" They hit the ball against the wall several times.\", \" They take turns lobbing the ball with their racquets.\"]}, \"v_fJ4xMCc5SKk\": {\"duration\": 28.33, \"timestamps\": [[0, 4.11], [4.11, 19.41], [19.55, 25.78], [25.64, 28.33]], \"sentences\": [\"A young man dressed in a blue and white uniform is standing on a red runway preparing for his routine.\", \"All of a sudden,he takes off running and starts doing a series of flips and cartwheels until he reaches the end.\", \"When he steps off,he is congratulated by his coach and an instant replay begins of his finishing flip.\", \"Last comes a black screen and  white url appears to watch more of the event online.\"]}, \"v_q2KR3lzTrq4\": {\"duration\": 195.62, \"timestamps\": [[0, 45.97], [38.15, 131.06], [127.15, 191.71]], \"sentences\": [\"A woman and three children are seen wandering around a playground as more adults and kids move in and out of frame.\", \" A boy slides down a slide with a woman's help over and over again.\", \" He continues to wander up the slide and rides down in the end with a girl.\"]}, \"v_90vop6PS2Y0\": {\"duration\": 271.23, \"timestamps\": [[0, 44.75], [59.67, 222.41], [223.77, 271.23]], \"sentences\": [\"A young oy is roller skating down his driveway.\", \" He is using a rake to push leaves.\", \" He goes up and down the driveway.\"]}, \"v_tY6UFSLtIoE\": {\"duration\": 231.97, \"timestamps\": [[0, 231.97], [3.48, 231.97], [1.16, 231.97]], \"sentences\": [\"People are dancing in a room with colorful lights.\", \" A man and a woman are dancing together.\", \" People are walking behind them.\"]}, \"v_a1WhnMcTbrY\": {\"duration\": 57.54, \"timestamps\": [[2.01, 16.69], [15.54, 41.14], [36.25, 54.95]], \"sentences\": [\"A man is seen looking to the camera holding a shovel.\", \" The man pushes the shoveling along the snow.\", \" The man continues to shovel the snow over and over.\"]}, \"v_EwjDShmfFHM\": {\"duration\": 89.82, \"timestamps\": [[0, 89.82], [7.63, 75], [75, 89.82]], \"sentences\": [\"A person is standing in front of a sink.\", \" They put soap on their hands and scrub them together.\", \" They turn the faucet on and rinse their hands off.\"]}, \"v_57buK1yvKPk\": {\"duration\": 74.86, \"timestamps\": [[0.75, 13.1], [11.23, 49.41], [47.54, 73.74]], \"sentences\": [\"A young girl is seen peeling potatoes and speaking to the camera.\", \" She waves her potato to the camera and continues peeling.\", \" She waves it around and continues peeling.\"]}, \"v_ZVIi4lPU6h0\": {\"duration\": 69.41, \"timestamps\": [[0, 10.06], [10.06, 69.41], [48.24, 69.41]], \"sentences\": [\"different pumpkins with famous people sculpt in pumpkins.\", \" man is talking to the camera in workshop carving a pumpkin with a knife.\", \"the man connects a light inside a pumpkin and plug it.\"]}, \"v_L2FgftH2VD8\": {\"duration\": 90.77, \"timestamps\": [[0, 12.71], [13.62, 67.62], [68.08, 90.77]], \"sentences\": [\"A woman is standing outside a building talking.\", \" She waves as she pumps water into a pan.\", \" Another woman washes dishes in the large flowing pan.\"]}, \"v_yeLB4QXA3NQ\": {\"duration\": 165.19, \"timestamps\": [[0, 14.04], [19, 51.21], [67.73, 165.19]], \"sentences\": [\"A woman is talking in front of a screen.\", \" Then we see a gathering at an outdoor event.\", \" A man is shown at a building, detailing and washing cars.\"]}, \"v_zYQ-WdosIwI\": {\"duration\": 42.49, \"timestamps\": [[3.19, 4.25], [4.25, 15.72], [15.72, 42.49]], \"sentences\": [\"First the woman greets everyone through the camera and she tells what she will be doing.\", \" Then she kneels down on the yoga mat and then she sits on her feet.\", \" Next, she comes up and comes back down doing a kneeling squat.\"]}, \"v_7NG6UrY2Foo\": {\"duration\": 65.09, \"timestamps\": [[0, 10.09], [11.72, 37.42], [41.33, 65.09]], \"sentences\": [\"A man is standing behind a bar with several bottles of drinks.\", \" He fills a glass with ice before pouring liquor in.\", \" He then layers the drink, ready for serving.\"]}, \"v_AC9mml3mqps\": {\"duration\": 134.7, \"timestamps\": [[0, 33.67], [33.67, 99.68], [99.68, 134.7]], \"sentences\": [\"Several people are shown watching the big monitor inside of a stadium before a hockey game.\", \" Several skaters come out onto the ice and skate around the rink.\", \" The skaters line up in the middle of the rink and suddenly disperse.\"]}, \"v_w1FFMG52FZE\": {\"duration\": 224.82, \"timestamps\": [[0, 8.99], [10.12, 219.2], [220.32, 224.82]], \"sentences\": [\"A girl with a hoop walks in front of the camera.\", \"  The girl stands near the pool and does tricks and a dance routine with a hula hoop.\", \"  The girl throws down the hoop and walks to the camera.\"]}, \"v_puK4NxGKNdQ\": {\"duration\": 181.05, \"timestamps\": [[9.96, 49.79], [47.98, 124.92], [110.44, 173.8]], \"sentences\": [\"A man is seen riding around on a lawn mower and stops to speak to the camera.\", \" More lawn mowers are shown next to him and he begins riding around on another one.\", \" He gives a thumbs up to the camera an continues driving around and speaking to the camera.\"]}, \"v_vGcH8N8sJlM\": {\"duration\": 181.16, \"timestamps\": [[0, 17.21], [21.74, 103.26], [109.6, 181.16]], \"sentences\": [\"A group of pine trees is shown beside a house.\", \" Four boys are shown and named in front of the camera.\", \" They are then shown playing a game of croquette.\"]}, \"v_Ck-9AHZNkq4\": {\"duration\": 61.26, \"timestamps\": [[2.14, 7.66], [16.85, 42.88], [38.9, 59.11]], \"sentences\": [\"Three people are shown sitting on a bicycle machine and moving their legs.\", \" More people are seen riding on the exercise machine while the camera pans around their movements.\", \" A person shows off his watch and a woman is looking at her phone.\"]}, \"v_WqnnGmL-lmU\": {\"duration\": 224.24, \"timestamps\": [[0, 38.12], [42.6, 143.51], [150.24, 224.24]], \"sentences\": [\"A man is touching a woman's hair in a salon.\", \" He washes her hair, then blow dries it.\", \" He then cuts and styles her hair.\"]}, \"v_GGSY1Qvo990\": {\"duration\": 18.16, \"timestamps\": [[0.36, 4.45], [4.18, 12.89], [13.62, 18.07]], \"sentences\": [\"A person is seen bending down before a set of weights.\", \" She lifts up the weight over her head.\", \" She throws the weight back down while smiling to the camera.\"]}, \"v_aTQaYDmcMDY\": {\"duration\": 201.74, \"timestamps\": [[0, 45.39], [25.22, 140.21], [117.01, 194.67]], \"sentences\": [\"A truck is seen driving in followed by several shots of motocross racers.\", \" The people begins driving on the track while the camera watches their movements.\", \" The people continue riding on the dirt bikes around the track while others watch on the side.\"]}, \"v_er6fi7nYsuw\": {\"duration\": 16.09, \"timestamps\": [[0, 1.69], [1.69, 9.01], [9.09, 16.09]], \"sentences\": [\"Two teams of girls playing field hockey in a field hockey tournament.\", \" A girl referee wearing a yellow shirt follows the ball from a distance.\", \" The players fight to get control of the ball while the referee looks on.\"]}, \"v_nezTU6Bq5hM\": {\"duration\": 45.19, \"timestamps\": [[0, 45.19], [10.84, 40.44], [30.05, 32.99], [33.44, 45.19]], \"sentences\": [\"A teen is squatting in the grass cutting grass with hedge shears.\", \" The camera zooms in on the boy as he cuts the grass.\", \" The boy stops cutting and pushes the grass with the shears.\", \" The boy returns to cutting the grass with the shears and the camera zooms out.\"]}, \"v_frePM0YGtQE\": {\"duration\": 175.17000000000002, \"timestamps\": [[0, 5.26], [5.26, 57.81], [57.81, 143.64], [143.64, 175.17]], \"sentences\": [\"A vacant kitchen is shown with a black shopping bag hanging down from the wood.\", \"After some time,a man comes in and sits down in front of the refrigerator with his black cat in his lap.\", \"When the cat is in his lap,he begins cutting the cats nails and rubbing his belly when he was done.\", \"Once finished,the nails are thrown in the trash and the two leave the kitchen.\"]}, \"v_D5jLypnn6Ps\": {\"duration\": 236.84, \"timestamps\": [[0, 233.29], [97.11, 163.42], [139.74, 236.84]], \"sentences\": [\"A woman gives a demonstration on hurling.\", \"  She misses a few times, but gets better.\", \"  She swings and misses but keeps trying.\"]}, \"v_LElk0AlBpbI\": {\"duration\": 175.23, \"timestamps\": [[4.38, 41.18], [41.18, 50.82], [51.69, 111.27], [111.27, 114.78], [114.78, 131.42], [132.3, 175.23]], \"sentences\": [\"A person skateboard in the streets of a city holding a camera.\", \" Then, the person films a man standing on the extreme of a skateboard to lift it.\", \" After, the person follows the skateboarder and pass him, and continues skating in the street.\", \" A person climbed a tree and holds a camera.\", \" The person continue skating and find his friends, after he appears in s home.\", \" After, the person continues riding the skateboard.\"]}, \"v_JTrwGfPJNzU\": {\"duration\": 11.31, \"timestamps\": [[0, 2.54], [2.6, 7.86], [6.9, 11.08]], \"sentences\": [\"A child is seen standing at the bottom of a large slide.\", \" Two people afterwards are seen coming down the slide.\", \" The adult looks over at the child smiling.\"]}, \"v_yE5whKJ-DE4\": {\"duration\": 150.7, \"timestamps\": [[0, 27.88], [27.88, 132.61], [132.61, 150.7]], \"sentences\": [\"Two young men are cutting the grass of a front lawn.\", \" They make a circle around the yard several times as the one helps guide the other.\", \" The one hugs the other as he holds a drink.\"]}, \"v_qNE6ju5dRc0\": {\"duration\": 120.0, \"timestamps\": [[0.6, 21.6], [27.6, 77.4], [66, 118.2]], \"sentences\": [\"A man is seen hosting a news segment and leads into another man speaking.\", \" Several people are seen walking around as well as shots of a river are shown.\", \" Many people hold flowers and ride down the river in kayaks while more speak to the camera.\"]}, \"v_PCoxnf59j5U\": {\"duration\": 213.02, \"timestamps\": [[2.13, 4.26], [6.39, 52.19], [54.32, 55.39], [56.45, 57.52], [62.84, 185.33], [162.96, 164.03], [183.2, 185.33], [191.72, 193.85], [201.3, 203.43], [203.43, 207.69], [206.63, 207.69], [208.76, 210.89]], \"sentences\": [\"The credits of the clip are shown.\", \" The guy stands, talks, and displays item.\", \" The guy removes the cap from a beer bottle.\", \" The guy drinks the beer.\", \" The guy removes a bike from a box, unwraps it, and puts the parts together.\", \" The guy puts paste on the foot pedals.\", \" The guy spins the fasten pedal and the back wheel moves.\", \" The guy puts the bike on its wheels on the floor.\", \" A man with a helmet on mounts the bike and rides off.\", \" The guy throw his hands up, drinks his beer, and leaves.\", \" The man parks the bike on the driveway.\", \" The credits of the video are shown.\"]}, \"v_K2Pws9z20Do\": {\"duration\": 228.46, \"timestamps\": [[0, 30.84], [25.13, 67.4], [53.69, 101.67], [85.67, 143.93], [143.93, 228.46]], \"sentences\": [\"a group gathers to the center of a gym floor.\", \" the group then begins to dance in unison.\", \" some of the group are on their feet.\", \" and some are in wheel chairs.\", \" The entire group dances until the end.\"]}, \"v_qI1ZayfiGHI\": {\"duration\": 95.03999999999999, \"timestamps\": [[0, 21.86], [22.81, 67.95], [61.78, 91.24]], \"sentences\": [\"Two men are seen holding tennis rackets and standing in a room.\", \" The men begin hitting the ball around the area and speaking to one another.\", \" The men continue to hit the ball around the room while walking back and fourth.\"]}, \"v_zRNS_ebpi7o\": {\"duration\": 81.25, \"timestamps\": [[0, 36.97], [36.97, 81.25], [0, 81.25]], \"sentences\": [\"man is taking off a violin from the case and gives it to a man.\", \" man start playing the violin in a crowded stage.\", \" people are standing gathered around violinists.\"]}, \"v_eI_LceS_qnQ\": {\"duration\": 148.21, \"timestamps\": [[0, 148.21], [0.74, 148.21], [5.19, 148.21]], \"sentences\": [\"Women are dancing together in a room.\", \" A woman in a pink skirt is standing in front of them leading the dance.\", \" They continue dancing together in the room.\"]}, \"v_qXD7myRvw0M\": {\"duration\": 28.33, \"timestamps\": [[0, 2.12], [4.67, 18.27], [21.53, 28.33]], \"sentences\": [\"A group is gathered on an indoor court.\", \" They are engaged in a game of tennis.\", \" They serve the ball back and forth over the net.\"]}, \"v_dySzHZniFCo\": {\"duration\": 160.4, \"timestamps\": [[0, 35.29], [27.27, 85.82], [64.16, 129.93], [124.31, 156.39]], \"sentences\": [\"Two girls are seen facing each other and begin swinging sticks around.\", \" Another girl walks in swinging sticks on the stage.\", \" More girls step up and swing objects around and leads into a man holding up wood and the girls hitting them.\", \" They do a routine together in the end and walk off stage.\"]}, \"v_jQHGyqk21GI\": {\"duration\": 178.21, \"timestamps\": [[0, 24.06], [32.08, 105.15], [109.6, 178.21]], \"sentences\": [\"A group of rafters are going through turbulent waters.\", \" A woman talks to the camera between shots of the rafters.\", \" They use their paddles as they go over the falls.\"]}, \"v_b-3l2qIHL5w\": {\"duration\": 117.84, \"timestamps\": [[0, 15.91], [12.96, 61.28], [57.74, 117.84]], \"sentences\": [\"a man is on one knee talking to the camera in a gym.\", \" the man points to his knee and grabs a resistance bar.\", \" the man takes the resistance bar and being to demonstrate exercises.\"]}, \"v_afqUOlnLHX0\": {\"duration\": 89.51, \"timestamps\": [[0, 11.64], [11.19, 53.26], [55.05, 87.72]], \"sentences\": [\"A man is seen moving a pool stick and begins hitting balls on a table.\", \" He stops to speak to the camera and continues hitting the balls around.\", \" He hits the balls one last time.\"]}, \"v_l4UJiGsZVfE\": {\"duration\": 211.93, \"timestamps\": [[0, 41.33], [41.33, 135.63], [130.34, 211.93]], \"sentences\": [\"several dirt bikers are shown riding over hills.\", \" several kids are lined up while mounted on a dirt bikes.\", \" the kids then race off on onto a course of hills.\"]}, \"v_Nqh3RtLRleU\": {\"duration\": 62.58, \"timestamps\": [[1.25, 16.9], [13.45, 36.61], [41.61, 60.7]], \"sentences\": [\"A person is seen knitting close up and leads into a woman speaking.\", \" The man runs down the street while knitting in his hands.\", \" The woman continues to speak and shows a marching band playing.\"]}, \"v_6Yn2U58qxPs\": {\"duration\": 214.95, \"timestamps\": [[0, 27.94], [41.91, 128.97], [148.31, 214.95]], \"sentences\": [\"Two men are putting on gear beside a cliff.\", \" One of the men is talking about the process.\", \" They then demonstrate rock climbing.\"]}, \"v_3hZjxdMcG6o\": {\"duration\": 11.24, \"timestamps\": [[0, 2.3], [1.46, 4.72], [3.48, 6.52], [5.56, 8.2], [7.87, 11.24]], \"sentences\": [\"a boy stands on a basketball court holding a ball.\", \" other players swarm the boy holding the ball.\", \" the boy toss the ball to a player under the hoop.\", \" the player with the ball tries to take a shot but misses.\", \" the player tries again and scores.\"]}, \"v_MmOVjM5-D-U\": {\"duration\": 93.16, \"timestamps\": [[0, 26.08], [0, 93.16], [25.62, 58.69], [25.62, 93.16], [58.69, 93.16]], \"sentences\": [\"litle furry bown dog is sanding on top of a table in a saloon while a woman is combing his hair.\", \" women are holding dogs on tables.\", \" woman is standing in front of  aable drying the dog's hair while is combing his hair.\", \" in the background a young woman is cutting dog's hair.\", \" two women are in front of a white poodle combing the hair.\"]}, \"v_iL5abexk3vQ\": {\"duration\": 150.42000000000002, \"timestamps\": [[0, 150.42], [9.78, 101.53], [0, 149.67], [123.34, 149.67]], \"sentences\": [\"A woman is dancing on a stage.\", \" She picks up a baton and begins to twirl it around while she dances.\", \" People are sitting in stands watching her dance.\", \" She lights the batons on fire and juggles them while she dances.\"]}, \"v_7RESODKApso\": {\"duration\": 54.1, \"timestamps\": [[0, 3.52], [3.79, 28.95], [29.22, 54.1]], \"sentences\": [\"A man drinks from a can next to a hole in the snow.\", \"  He speaks and gestures to the camera.\", \" He sets down his drink and picks up a fishing rod pulling a tiny fish out of the hole.\"]}, \"v_qkk2tK19sx8\": {\"duration\": 51.11, \"timestamps\": [[0, 17.12], [6.39, 40.12], [30.92, 51.11]], \"sentences\": [\"The black man stretch his arms and hold on to the beam's handle.\", \" The man jumped on the beam and began balancing on the beam.\", \" The man starts to rotate on the beam side to side and get off the beam.\"]}, \"v_ffUtqOyJ7fM\": {\"duration\": 84.8, \"timestamps\": [[0.85, 28.83], [24.17, 63.6], [61.48, 81.83]], \"sentences\": [\"A woman speaks to the camera while turning her face back and fourth.\", \" She holds up a product and wipes it all along her face.\", \" She washes her faces and wipes it down with a rag still speaking to the camera.\"]}, \"v_xuq9oRm8QZo\": {\"duration\": 92.83, \"timestamps\": [[0, 16.71], [16.25, 69.63], [70.55, 91.44]], \"sentences\": [\"A woman is seen standing behind wood and speaking to the camera.\", \" A man walks in and begins helping the woman paint.\", \" The girl paints up and down the boards and a lawn mower moves out of frame.\"]}, \"v_yjazHd6a5SQ\": {\"duration\": 155.38, \"timestamps\": [[0, 17.87], [17.87, 43.51], [43.51, 66.81], [66.81, 80.02], [82.35, 97.89], [97.89, 155.38]], \"sentences\": [\"A man wearing a blue t-shirt prepares to demonstrate how to prepare a drink.\", \" The bartender reviews the ingredients to be used in the preparation of the drink.\", \"  The bartender adds two shots of vodka to an orange colored glass.\", \" The bartender than adds a sugar mixture and lemon juice to the glass.\", \" The bartender vigorously shakes the mixture.\", \" The bartender adds a twist of lime to the glass then takes a sip of the drink and signs off.\"]}, \"v_2nPrH4Tv0yc\": {\"duration\": 83.06, \"timestamps\": [[0, 23.67], [24.09, 63.95], [53.16, 80.98]], \"sentences\": [\"Two men are seen boxing another man in a gym whose wearing protective gloves.\", \" The men switch back and fourth fighting several people in the room.\", \" The continue to move around and hit one another.\"]}, \"v_koEfnIoZB_4\": {\"duration\": 95.47999999999999, \"timestamps\": [[0.48, 94.05], [2.39, 13.37], [13.84, 92.62]], \"sentences\": [\"A series of people bungee jump down a long tunnel like stone opening.\", \"  A person wearing a bungee jumping harness and attached to a long rope jumps from the ledge of a stone tunnel and falls many feet below to just above the ground where they bounce around on the extended cord.\", \"  Four more people jump from the ledge in the same way and bounce at the bottom of the cord at the end of the fall into the tunnel.\"]}, \"v_HtkuvF7VbSQ\": {\"duration\": 160.15, \"timestamps\": [[0, 10.41], [33.63, 128.92], [36.03, 136.13], [136.93, 146.54], [152.94, 156.95], [159.35, 160.15]], \"sentences\": [\"A boy is talking directly into a camera.\", \" A guy uses a tattoo gun on a man's arm.\", \" The man is upset by the tattoo procedure.\", \" The man leaves the chair and walks out of the venue.\", \" The man is walking down the sidewalk.\", \" The boy laughs out loud.\"]}, \"v_O_L0CSZ7nnA\": {\"duration\": 83.15, \"timestamps\": [[0.42, 19.96], [21.2, 60.28], [51.97, 81.07]], \"sentences\": [\"A picture is laid out on a pumpkin followed by a person cutting it out.\", \" The person carves along the tracing while moving in and out of frame.\", \" The person finishes the pumpkin by putting a light inside.\"]}, \"v_X82bc2v5kcM\": {\"duration\": 116.31, \"timestamps\": [[0, 22.68], [30.82, 71.53], [78.51, 116.31]], \"sentences\": [\"A male stylist is talking about a woman's hair.\", \" He uses different creams and tools to style her hair.\", \" When he is done, he shows off the final product.\"]}, \"v_2rHsoF35eQw\": {\"duration\": 136.53, \"timestamps\": [[0, 12.97], [14.34, 85.33], [89.43, 136.53]], \"sentences\": [\"several views are shown of nature and a river.\", \" A large raft filled with people appears.\", \" The people struggle to stay upright as they go through the rapids and over falls.\"]}, \"v_STAvUAslEYM\": {\"duration\": 157.36, \"timestamps\": [[0, 18.1], [38.55, 138.48], [75.53, 77.11], [119.6, 121.17]], \"sentences\": [\"A man and a woman are sitting on couches.\", \" People are playing indoor soccer in an arena.\", \" A man falls down trying to kick the ball.\", \" People in the stands cheer for them.\"]}, \"v_0gw1Qq3WRbU\": {\"duration\": 114.8, \"timestamps\": [[0, 114.8], [0, 114.23], [0, 113.65]], \"sentences\": [\"women are in a trampoline doing high jumps to the pool.\", \" women are doing somersaults into a pool.\", \" in the background people are walking behind a fence.\"]}, \"v_Z_YXWLkRmjQ\": {\"duration\": 15.65, \"timestamps\": [[0, 2.82], [3.05, 8.45], [8.61, 14.95]], \"sentences\": [\"A boy is seen standing in a locker room with others.\", \" The boy begins kicking his legs around.\", \" He continues kicking his legs while others laugh in the distance.\"]}, \"v_ShKrNPaSdhY\": {\"duration\": 235.09, \"timestamps\": [[0, 9.4], [9.4, 15.28], [15.28, 235.09]], \"sentences\": [\"A man is looking out of an opened window of a very fast moving train surrounded by snow and a lot of trees.\", \"A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person grabs something for a  large wooden shelf.\", \"Various clips play of a person snowboarding, sometimes the person is wearing a jacket, sometimes the person is shirtless, sometimes the person is holding the selfie stick, and sometimes someone is filming the person.\"]}, \"v_ZMTi498qnPc\": {\"duration\": 100.5, \"timestamps\": [[0, 19.6], [21.1, 66.33], [70.85, 100.5]], \"sentences\": [\"A little girl is sitting on a bench in front of a wall.\", \" A woman is painting her toe nails with polish.\", \" The woman smiles at the camera and the little girl watches.\"]}, \"v_fdd5ixvEXOE\": {\"duration\": 63.18, \"timestamps\": [[0, 6.32], [8.21, 43.28], [44.86, 63.18]], \"sentences\": [\"a group is walking with their faces covered.\", \" They are protestors carrying various signs.\", \" The people dance down the sidewalk, wearing strange costumes.\"]}, \"v_HpJ2pr0ykqo\": {\"duration\": 45.93, \"timestamps\": [[0.46, 13.09], [11.71, 32.15], [33.76, 44.78]], \"sentences\": [\"A person is seen using a tool to spray down a fence.\", \" The woman bends down and sprays the liquid around.\", \" She continues to spray along the fence.\"]}, \"v_O_fdvOxYqiY\": {\"duration\": 165.03, \"timestamps\": [[0, 165.03], [4.13, 165.03], [28.05, 144.4], [33.01, 148.52], [56.11, 165.03]], \"sentences\": [\"There's a man in a gray shirt and black hat sitting on a stool in his living room with a set of banjo drums in front of him and a couch behind him that some more music instruments on it.\", \" He is demonstrating how to play the banjo drums as he beats the drum rhythmically.\", \" He alternately hits the drums to keep up with the rhythm and follow the beats.\", \" He hits the drums with his palms facing directly on the drums.\", \" He continue splaying the banjo drums as he explains the techniques involved in playing.\"]}, \"v_g49F9coR2VU\": {\"duration\": 76.19, \"timestamps\": [[0, 68.57], [70.09, 76.19], [75.04, 76.19]], \"sentences\": [\"Two people are boxing on a mat.\", \" They stop and step away from each other.\", \" A man in a white shirt starts to take his boxing glove off.\"]}, \"v_eXMF6Skt2To\": {\"duration\": 183.42, \"timestamps\": [[0, 4.59], [5.5, 24.76], [24.76, 27.51], [28.43, 33.93], [34.85, 43.1], [43.1, 48.6], [49.52, 54.11], [55.02, 107.3], [108.21, 118.3], [118.3, 123.81], [124.72, 164.16], [165.07, 176.08], [177, 183.42]], \"sentences\": [\"We see a stadium and an opening screen.\", \" We see men at a table and shots of an arena and people preparing to ride dirt bikes.\", \" A half naked lady is spraying a car with water.\", \" A man has blood on his face  and we see a person fall off their bike.\", \" We see shots of men and see a lady hold a sign to signal the start of the race.\", \" The races start and we see fire pyrotechnics.\", \" A man is falling a man is dripping with water and the lady is spraying a water from a hose.\", \" We see a man fall off his bike and bikers on their bike the crowd and a lady poses for a photo and we see biker riding.\", \"  We see a lady with a sponge washing a bike and men riding their bmx bikes in the dirt.\", \" We see a lady dance and a group of ladies posing.\", \" We see men ride on sand dunes and dirt hills before the stadium and a river.\", \" We see fireworks in the stadium and bikers.\", \" The title ending title screen loads.\"]}, \"v_7QxUtHqQdbY\": {\"duration\": 13.89, \"timestamps\": [[0, 2.36], [2.43, 10], [10.97, 13.89]], \"sentences\": [\"A man is working outside in a yard.\", \" He is pushing around a log.\", \" He uses a large ax to chop the log.\"]}, \"v_PVdd6E1S0Yc\": {\"duration\": 91.12, \"timestamps\": [[0, 16.4], [17.77, 60.14], [70.16, 91.12]], \"sentences\": [\"A girl is leaning forward and clipping her hair into place.\", \" She continues clipping it in several different areas.\", \" She then washes and rinses her face.\"]}, \"v_2q_4I3ae0J4\": {\"duration\": 122.97, \"timestamps\": [[0, 122.97], [6.76, 122.97], [54.11, 122.97], [83.01, 122.97]], \"sentences\": [\"A guy is hitting a ball with a stick and the action is being played in many different video speeds and angles to really catch the full view of how good he hit the ball.\", \"He tossed the ball just a little in the air and steps into it as it's falling down and make a great connection with the stick he have in his hand.\", \"final out come is a great hit and steps on how to make a great hit.\", \"the guy shows you many good tips on how you step into the hit,the way up swing and the follow though for best performance.\"]}, \"v_sRN_crwj3B4\": {\"duration\": 225.44, \"timestamps\": [[0, 69.89], [56.36, 140.9], [109.34, 188.24], [152.17, 223.19]], \"sentences\": [\"A camera pans around a room and shows a woman working.\", \" The woman speaks to the camera and continues cleaning up the kitchen.\", \" She sprays paint on a stove and cuts up a picture of a map.\", \" She lays down the map and shows off the camera while smiling.\"]}, \"v_nB0JECwGK0c\": {\"duration\": 231.99, \"timestamps\": [[0, 5.8], [6.96, 11.6], [12.76, 19.72], [20.88, 27.84], [27.84, 48.72], [48.72, 104.4], [103.24, 169.35], [171.67, 175.15], [175.15, 231.99]], \"sentences\": [\"A series of information is shown.\", \" A young man was putting on a helmet to another young man who is inside a two-person sumo wrestler costume.\", \" Another man wearing a headphone is talking while a man is standing behind him.\", \" The two people in sumo wrestler is jumping and smiling while waiting for their opponent, young man crawling inside another two-person sumo wrestler costume.\", \" The people in sumo wrestler costume get up talk with their opponent while hitting each other for a while then another man gives the signal to start the fight.\", \" They start fighting and fall down, all of them can't get up and the people watching them help them to get up while some people are holding camera.\", \" They talk for a while and continue to fool around with each other lead to a fight knocking off the wrestler in blue belt.\", \" The spectator stops the fight shoving the winning wrestler causing them to fall down.\", \" The audience help them again to get up, when they all in their feet again, they talk for a while giving each other a high five.\"]}, \"v__Ew3g9PXhvo\": {\"duration\": 133.42, \"timestamps\": [[0, 22.68], [23.35, 94.73], [83.39, 130.75]], \"sentences\": [\"Several shots are shown of the ocean leading into a person walking on a rope.\", \" More people are shown walking and kneeling on a rope while the camera moves around various angles.\", \" The girl continues to walk on the rope and ends by jumping down.\"]}, \"v_Xc70KHd4zhI\": {\"duration\": 60.95, \"timestamps\": [[0, 13.71], [14.02, 54.86], [55.16, 60.95]], \"sentences\": [\"A man stands behind a food counter and places food in a cup with a stick.\", \" He then taunts the customer with the cup, keeping it out of reach.\", \" He then slides it down the counter where she can retrieve it.\"]}, \"v_juiMCvZUYwk\": {\"duration\": 144.01, \"timestamps\": [[0, 2.16], [2.16, 17.28], [18, 20.16], [20.16, 38.16], [38.16, 63.36], [64.08, 83.53], [84.25, 87.13], [87.85, 127.45], [127.45, 136.09], [136.81, 144.01]], \"sentences\": [\"A \\\"Thread Banger\\\" logo is shown on screen.\", \" A couple wearing  Santa hats are shown behind spools of ribbon.\", \" \\\"Holly Jolly How Toos\\\" are shown.\", \"  A person cuts a potato to make a star stamp.\", \" The stamped paper is made into a gift wrap.\", \" A basket of gifts are assembled.\", \" A pair of butterfly wings are shown.\", \" Varrious forms of paper are rolled up and used.\", \" The couple returns and speaks to the camera.\", \" Credits are shown on screen.\"]}, \"v_tpDhYD9e_cU\": {\"duration\": 232.99, \"timestamps\": [[5.82, 58.25], [59.41, 66.4], [68.73, 232.99]], \"sentences\": [\"People are roller blading in between orange cones.\", \" Words are shown on the screen.\", \" A blank black screen is shown.\"]}, \"v_lgu-DBDWlEs\": {\"duration\": 18.79, \"timestamps\": [[0, 18.79], [0.75, 17.85], [1.22, 17.85], [5.82, 18.79]], \"sentences\": [\"There's a woman dressed in a white hoodie seated on a dinning chair by the dinning table in her kitchen, peeling potatoes straight into a trash can.\", \" The woman is leaning on the back rest of the dinning chair as she peels the potato skins off the potatoes with a peeler.\", \" She is using her right hand to peel the potato as she throws the skins directly into the trash can placed near her feet.\", \" While she is peeling the potatoes, a small black dog walks by and then another woman in a red hoodies and stripped socks opens a bag of chips behind her.\"]}, \"v_P2fUelA4BfA\": {\"duration\": 32.56, \"timestamps\": [[0, 5.05], [4.23, 12.05], [17.09, 32.56]], \"sentences\": [\"a man is sitting on a crate talking to the camera.\", \" the man then takes a knife and starts peeling potatoes.\", \" the man places the peeled potatoes in a tub of water in front of him.\"]}, \"v_cIpBpGQ0XTI\": {\"duration\": 226.56, \"timestamps\": [[4.53, 60.04], [64.57, 151.79], [138.2, 218.63]], \"sentences\": [\"A car is seen driving back and fourth on the road with a person hanging on the side.\", \" Several people climb out of the car on two wheels and hang on the side.\", \" The group continues to ride and wave to other cars while tightening a tire.\"]}, \"v_JOBSEatasv4\": {\"duration\": 133.7, \"timestamps\": [[0, 12.7], [18.05, 90.92], [92.25, 133.7]], \"sentences\": [\"a large towel is laid on the floor of a living room.\", \" A man lies down on the towel while he talks.\", \" He then shows how to do sit ups.\"]}, \"v_otWTm1_aAqI\": {\"duration\": 40.59, \"timestamps\": [[0, 3.65], [3.65, 36.12], [36.12, 37.54]], \"sentences\": [\"A boy jumps onto a balance beam.\", \" He does a gymnastics routine on the balance beam.\", \" He dismounts and lands on the blue mat.\"]}, \"v_PEpfA3L4m20\": {\"duration\": 23.26, \"timestamps\": [[0, 4.77], [4.65, 18.72], [18.84, 23.26]], \"sentences\": [\"A dark video is visible before all of a sudden a big spark appears in a room.\", \"The spark belongs to a man with a torch in his hand and firing away at an object.\", \"Although the room is extremely dark,when the fire ignites you can see that the building is a silver warehouse and a small fan hanging from the ceiling.\"]}, \"v_bYUmtLBL7W4\": {\"duration\": 224.53, \"timestamps\": [[0, 23.58], [29.19, 140.33], [150.43, 224.53]], \"sentences\": [\"A man is holding a rope behind a boat.\", \" He is surfing on the river water.\", \" He flips out of the boat into the water, then continues surfing.\"]}, \"v_9XjHgUP5QW0\": {\"duration\": 42.93, \"timestamps\": [[0, 10.09], [10.52, 24.04], [28.12, 40.79]], \"sentences\": [\"Two women are seen running down a road speaking to one another.\", \" They walk inside and look to a calendar followed by putting shaving cream on.\", \" A man knocks on the door with one woman answering and the other looking depressed.\"]}, \"v_olBh9KMAHMQ\": {\"duration\": 149.21, \"timestamps\": [[0, 149.21], [5.97, 149.21], [32.83, 149.21], [74.61, 149.21]], \"sentences\": [\"A car is shown covered in snow.\", \" A man walks out into the snow.\", \" He is holding a shovel in his hands.\", \" He dances as he shovels the snow around.\"]}, \"v_EVtM8DKW4bc\": {\"duration\": 126.29, \"timestamps\": [[0, 32.2], [28.42, 90.93], [90.93, 123.77]], \"sentences\": [\"A large group of people are seen speaking to one another and begin playing bumper cars.\", \" The cameraman drives around and continues crashing into one another.\", \" The man continues driving and stops in the end.\"]}, \"v_kxfOrs5ZWkw\": {\"duration\": 203.64, \"timestamps\": [[0, 14.25], [14.25, 56], [56, 96.73], [96.73, 116.07], [116.07, 203.64]], \"sentences\": [\"woman is standing in a kitchen in front of a counter mashing a dough.\", \" then put the dough in top of a cake that is in a green plate.\", \" the woman paint the cake with brown paint.\", \" golden coins are put on top of a cake and a map.\", \" the woman mash the dough again and make thin lines that paints with grey paint to put on top of a chest.\"]}, \"v_VvD2fdPNWEg\": {\"duration\": 188.29, \"timestamps\": [[0, 14.12], [14.12, 52.72], [52.72, 91.32], [91.32, 131.8], [131.8, 169.46], [0, 169.46], [169.46, 188.29]], \"sentences\": [\"Black screens appear and different screens have numbers and letters that read \\\"2014 World Indoor Championships Triple Jump Review Part 1\\\" and \\\"by Keinan Briggs\\\".\", \"A blurry still shot of what looks like an indoor track is shown with a man wearing blue short sleeves and shorts is in a running position, and 2 other people standing near him.\", \"The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he's running very fast, skips, and then does his jump.\", \"Just like the first man, another man is now shown running, skipping and jumping, and he's wearing a red outfit.\", \" Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he's wearing a blue outfit that has long sleeves and shorts.\", \"All men are shown running, skipping and jumping in a slow motion effect.\", \"The screen fades to black and white words appear that say \\\"Part 2 Coming Soon\\\" and \\\"Info@keinanbriggs dot com\\\".\"]}, \"v_KFS_lGlO-Ew\": {\"duration\": 58.65, \"timestamps\": [[0, 3.52], [13.78, 36.66], [45.75, 57.77]], \"sentences\": [\"A boy is talking to a camera.\", \" He goes into a bathroom and drinks a cup of mouthwash.\", \" He spits it out into the sink in front of him.\"]}, \"v_ZcgahXg_ELw\": {\"duration\": 194.82, \"timestamps\": [[0, 18.51], [20.46, 175.33], [30.2, 170.46], [66.24, 91.56], [82.8, 143.19], [103.25, 133.45], [110.07, 157.8], [169.49, 194.82]], \"sentences\": [\"There is a large boat carrying some divers into the ocean.\", \" The divers are swimming near the sea bed along with sea life and several sea creatures.\", \" There are sea turtles and sea urchins swimming across the ocean.\", \" One of the divers goes near a some sort of a man made structure that has sunk into the ocean.\", \" The other divers wave as the continue swimming in the ocean.\", \" A large stingray is swimming alongside some small fish.\", \" Several scuba divers are seen swimming with a sea turtle.\", \" The scuba divers wave as they finish their journey and swim back up to the surface of the ocean to get back into their boats.\"]}, \"v_wD-9KvI1-AI\": {\"duration\": 115.59, \"timestamps\": [[0, 37.57], [36.41, 88.43], [86.69, 111.54]], \"sentences\": [\"Two girls are seen speaking to the camera and holding up glasses.\", \" They clink and hold up mouthwash and take a drink from the glass.\", \" They swish around the mouthwash and spit it out while laughing.\"]}, \"v_AO-0r8H2DOo\": {\"duration\": 51.46, \"timestamps\": [[0, 50.43], [20.84, 24.44], [48.63, 50.43], [50.94, 51.46]], \"sentences\": [\"A person is running a razor on the skin of their leg.\", \" The person shaves their foot.\", \" The person shaves their knee.\", \" The person removes the razor from their leg.\"]}, \"v_IlKOWIBAEFE\": {\"duration\": 226.63, \"timestamps\": [[0, 64.59], [60.06, 159.77], [156.37, 226.63]], \"sentences\": [\"A man is shown speaking to several groups of people and leads them down a beach.\", \" The people are wearing scuba gear and are shown swimming around the ocean.\", \" The people wave to the camera while continuing to swim and end by walking out of the water.\"]}, \"v_WHchTZ61VT4\": {\"duration\": 150.79, \"timestamps\": [[0, 150.79], [2.26, 150.79], [105.55, 121.39]], \"sentences\": [\"A black dog is standing up on a wire rack.\", \" A woman is scrubbing the dog with shampoo.\", \" Another dog jumps up on the fence behind them.\"]}, \"v_0RIc6mwDRaQ\": {\"duration\": 158.52, \"timestamps\": [[0, 158.52], [4.76, 158.52], [22.19, 158.52], [30.91, 158.52]], \"sentences\": [\"A woman is sitting at a harp.\", \" She is plucking the strings with her hands.\", \" She is inside a large cathedral.\", \" Another person is playing flute alongside her.\"]}, \"v_3nX5ZwzHftM\": {\"duration\": 33.11, \"timestamps\": [[0, 5.46], [6.29, 24.83], [25.33, 33.11]], \"sentences\": [\"A group of people are floating on tubes in a river.\", \" They are talking and laughing as they float.\", \" They are also drinking alcoholic beverages together.\"]}, \"v_Ujgmih4OtMs\": {\"duration\": 197.1, \"timestamps\": [[0, 44.35], [30.55, 134.03], [127.13, 197.1]], \"sentences\": [\"two woman stand by a body of water holding bows and arrows.\", \" they each take turns shooting a bow across the water onto a target.\", \" a bigger group of people are then shown having the same target practice.\"]}, \"v_Xu54UPG1cME\": {\"duration\": 190.06, \"timestamps\": [[10.45, 57.02], [57.02, 83.62], [83.62, 87.43], [119.74, 190.06]], \"sentences\": [\"A man is painting a wall with a roller brush.\", \" He is hanging wall paper over the paint.\", \" He smooths out the wall paper with a metal tool.\", \" He then peels off the wall paper from the wall.\"]}, \"v_s5y4xXcphcc\": {\"duration\": 131.87, \"timestamps\": [[0.66, 36.26], [34.29, 89.01], [76.48, 121.98]], \"sentences\": [\"People are seen riding on surf boards with sails along the water.\", \" The camera follows around the people riding on the water.\", \" They continue to push themselves along the water past one another.\"]}, \"v_Cg_jN5G1ZpY\": {\"duration\": 70.78, \"timestamps\": [[0, 70.78], [28.31, 56.62], [59.1, 64.05]], \"sentences\": [\"A black bull is chasing people around a pen.\", \" A man hides behind a yellow barrel.\", \" A man jumps onto the fence behind the bull.\"]}, \"v_UfjR8ewF8xo\": {\"duration\": 213.76, \"timestamps\": [[1.07, 210.56], [1.07, 38.48], [38.48, 205.21]], \"sentences\": [\"A person demonstrates what hash marks on a basketball court are as well as different basketball play techniques including lay up moves and footwork on the court, using and outdoor court and players as the exhibit.\", \"  A close up of hashmarks is shown on a live, outdoor court, as a finger is seen from the side of the camera pointing to the marks on the court.\", \"  A player is seen on the court demonstrating different layup and basketball moves with lettered templates accompanying the move to explain what they are.\"]}, \"v_i4SNM6xSLI8\": {\"duration\": 41.79, \"timestamps\": [[0, 5.22], [2.93, 31.76], [26.95, 41.79]], \"sentences\": [\"Two men are in a arm wrestle position on the ground.\", \" The men started to arm wrestle, trying to put each others arms on the ground.\", \" The man in black shorts won.\"]}, \"v_esTcWwmykKQ\": {\"duration\": 219.43, \"timestamps\": [[0, 219.43], [14.26, 26.33], [212.85, 215.04]], \"sentences\": [\"A number of individuals swim in a pool and play with balls, with other individuals standing or sitting ashore in the background.\", \" One of the individuals in the water climbs ashore and sits.\", \" An individual briefly moves across the foreground of the camera.\"]}, \"v_WqDep-4l0yc\": {\"duration\": 93.18, \"timestamps\": [[0, 5.59], [14.91, 52.65], [56.38, 93.18]], \"sentences\": [\"A man is talking while seated in a large canoe.\", \" He moves it onto the water, canoeing around with his dog.\", \" He is shown paddling and turning in the lake.\"]}, \"v_1B3XsffrM4M\": {\"duration\": 115.5, \"timestamps\": [[0, 115.5], [10.97, 115.5], [1.15, 115.5]], \"sentences\": [\"Three people wearing all black are standing on a red carpet.\", \" They begin to dance and wave fans around.\", \" People are standing behind them watching them.\"]}, \"v_ynvCxrj1UNg\": {\"duration\": 99.57, \"timestamps\": [[0, 9.46], [14.44, 61.23], [65.22, 99.57]], \"sentences\": [\"A woman mounts a bar in a gym.\", \" She stands on the bar and flips forward several times.\", \" She then dismounts and raises her arms.\"]}, \"v_KfzVxgHEyzI\": {\"duration\": 20.04, \"timestamps\": [[0, 5.01], [3.91, 9.42], [8.12, 13.73], [13.93, 20.04]], \"sentences\": [\"people are standing on a football field.\", \" a ball rolls towards the crowd.\", \" one man taps the ball with his foot.\", \" He then runs away from the crowd.\"]}, \"v_ccfffP3pXrc\": {\"duration\": 70.13, \"timestamps\": [[0, 69.42], [2.1, 70.13], [0, 70.13]], \"sentences\": [\"little kid is playing hanging from stairs.\", \" little blonde kid is playing in the playground.\", \" kid is a green grassy park playing in the playground.\"]}, \"v_hL11sP4Hlrg\": {\"duration\": 117.08, \"timestamps\": [[0, 20.49], [20.49, 42.73], [42.73, 83.12], [83.12, 117.08]], \"sentences\": [\"nail polishes and panited nails are shown.\", \" someone is adding nail polish to a sponge to create an ombre\\u00e9 paint.\", \" then a thin layer of paint in the sponge is put in the nails and two more layer.\", \" woman clean off the ecxess and put a layer of top coat.\"]}, \"v_bfBTnUiGVUo\": {\"duration\": 69.59, \"timestamps\": [[0, 11.48], [11.48, 14.96], [14.96, 64.72], [64.72, 69.59]], \"sentences\": [\"A young boy dressed in shorts and a t-shirt is standing in a bathroom with his left foot on a colorful mat and his right hand on the sink, and he's brushing his teeth with his left hand.\", \"The boy briefly stops dancing and his brushing his teeth and just stares at himself in the mirror.\", \"The boy starts dancing and brushing his teeth again, spits in the sink brushes his teeth again and continues to dance.\", \"The boy spits into the sink then gives a big smile to the camera.\"]}, \"v_WCCkmuFrSQ0\": {\"duration\": 185.85, \"timestamps\": [[0, 185.85], [0, 132.88], [132.88, 185.85]], \"sentences\": [\"little girl is standing in a living room wearing a pincess custome and behind her kid wearing a wonderwoman custom is playing with her.\", \" kids are playing hopscotch in a kitchen.\", \" a man is in the kitchen playing hopscotch with the girls.\"]}, \"v_IAj0JIDDaOQ\": {\"duration\": 65.13, \"timestamps\": [[0, 7.82], [10.1, 53.08], [56.34, 65.13]], \"sentences\": [\"A man is wearing a cap and talking outside a house.\", \" He is showing how to work on a window.\", \" He sprays the window with a pressure washer to clean it.\"]}, \"v_4OeZViscNp4\": {\"duration\": 109.99000000000001, \"timestamps\": [[11.55, 43.45], [46.2, 67.65], [67.1, 89.09], [88.54, 100.64]], \"sentences\": [\"A man is taking the shoe lace out of a shoe.\", \" He wipes the shoe off with a blue rag.\", \" He puts white tape on the bottom of the shoe.\", \" He sprays the shoe with something from a can.\"]}, \"v_RHpigjSwhVM\": {\"duration\": 122.16, \"timestamps\": [[0, 13.44], [13.44, 77.57], [76.96, 122.16]], \"sentences\": [\"A man dressed in a black and white uniform is pushing his bicycle up a small hill.\", \"Once he gets to the top of the hill,he begins racing his bike throughout a field with several mounds of dirt.\", \"More tracks appear and the man begins racing against other individuals on the track.\"]}, \"v_4mzM3JjBJ74\": {\"duration\": 166.18, \"timestamps\": [[0, 41.54], [39.05, 113.83], [110.51, 162.85]], \"sentences\": [\"A woman is seen speaking to the camera and holding up a pair of clippers.\", \" She then begins cutting a cat's claws while the cat squirms around.\", \" She continues cutting it's claws while the cat moves all around.\"]}, \"v__D9oML1HvVw\": {\"duration\": 133.24, \"timestamps\": [[0, 40.64], [35.31, 88.6], [76.61, 127.91]], \"sentences\": [\"A man is seen standing up on a rope and jumping off doing a flip.\", \" More people are shown performing flips off rope and picnic tables.\", \" The men take turns jumping off the rope and looking to the camera.\"]}, \"v_MwQTeFD0OKQ\": {\"duration\": 231.92000000000002, \"timestamps\": [[0, 2.32], [3.48, 35.95], [17.39, 20.87], [24.35, 25.51], [27.83, 28.99], [52.18, 218.01], [106.68, 150.75], [107.84, 114.8], [119.44, 124.08], [230.76, 231.92]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy is approaching a weight on a stage.\", \" A man massages a guy's shoulders.\", \" The man smells something a person holds up in their hands.\", \" A male rubs a white powder on his hand and chest.\", \" A guy is weighting a lift on a stage and releases.\", \" A guy The audience cheers and claps.\", \" A guy cheers and kisses the weight plates.\", \" A guy is benching pressing.\", \" A guy is captured kissing his thigh on a stage with a weight on the floor.\"]}, \"v_gUR1wXosHMo\": {\"duration\": 50.41, \"timestamps\": [[0, 12.1], [9.33, 31], [29.99, 49.15]], \"sentences\": [\"A young child is seen drinking from a bottle.\", \" He speaks to the camera while pausing to drink.\", \" He continues drinking and pointing to the camera.\"]}, \"v_DgcoDX3HbKY\": {\"duration\": 58.84, \"timestamps\": [[0, 17.36], [12.36, 39.13], [37.95, 56.78]], \"sentences\": [\"A woman is seen spinning around food in a hot pan.\", \" She mixes in more ingredients and continues cooking.\", \" She then puts it on a plate and serves it to the camera man.\"]}, \"v_f_BzYUCp4J0\": {\"duration\": 214.07, \"timestamps\": [[0, 20.34], [40.67, 145.56], [151.99, 214.07]], \"sentences\": [\"A man is driving a tractor in a yard.\", \" He is using a blower to blow leaves down a hill.\", \" He continues down the yard, blowing the leaves downhill into the trees.\"]}, \"v_hmb86jpgWfE\": {\"duration\": 169.3, \"timestamps\": [[0.85, 3.39], [4.23, 158.29], [15.24, 20.32], [159.14, 169.3]], \"sentences\": [\"The credits of the clip are shown.\", \" A lady talks while holding a red coffee mug.\", \" A coffee machine fills two, glasses with coffee simultaneously.\", \" The credits of the video are shown.\"]}, \"v_EIibo7aTpys\": {\"duration\": 170.81, \"timestamps\": [[0, 7.69], [23.91, 99.07], [115.29, 170.81]], \"sentences\": [\"A man is standing inside a gym.\", \" He is wearing a pair of boxing gloves as he shows punches.\", \" He then incorporates a punching bag for kicking.\"]}, \"v_swmNnPkPBek\": {\"duration\": 169.14, \"timestamps\": [[0, 29.6], [32.98, 108.25], [113.32, 169.14]], \"sentences\": [\"A man is shown standing in a field between houses.\", \" He and a woman start flying a kite together.\", \" The kite weaves through the air, turning and twisting as it goes.\"]}, \"v_xXTfM9xXFQM\": {\"duration\": 152.18, \"timestamps\": [[0, 35.76], [35.76, 143.81], [143.81, 152.18]], \"sentences\": [\"A man comes onto the screen and introduces a video where he will demonstrate how to use power stilts.\", \" He begins to demonstrate how to use the power stilts by running and jumping in several different directions.\", \" When he is done the cameraman catches a close up of him and his face.\"]}, \"v_kfiF8A8g7UE\": {\"duration\": 37.2, \"timestamps\": [[0, 2.42], [2.6, 31.06], [31.81, 37.2]], \"sentences\": [\"A female gymnast runs up to and mounts a pair of uneven bars in front of an audience.\", \" The gymnast performs a routine on the uneven bars.\", \" The gymnast dismounts from the bars and falls down.\"]}, \"v_nkrA8sJydF0\": {\"duration\": 216.13, \"timestamps\": [[0, 69.16], [41.07, 97.26], [88.61, 211.81]], \"sentences\": [\"A close up of a machine is shown followed by a man speaking to the camera.\", \" The man uses the vacuum around a vent and shows how it works.\", \" He cleans the vacuum and continues cleaning while emptying it out and moving along the floor and speaking more.\"]}, \"v_DFJBJkCR0Bk\": {\"duration\": 89.07, \"timestamps\": [[0, 81.95], [3.12, 89.07], [8.02, 89.07], [14.7, 89.07]], \"sentences\": [\"Several young kids are in a pool.\", \" They throw a ball around to each other.\", \" They swim back and forth with it.\", \" The pass the ball around.\"]}, \"v_jzCnWUUUviE\": {\"duration\": 15.74, \"timestamps\": [[0, 2.44], [3.31, 9.92], [10.71, 15.74]], \"sentences\": [\"A weight lifter is inside a gym.\", \" He lifts a barbell up to his chest.\", \" He then lifts it over his head.\"]}, \"v_WPVb8fYLFUM\": {\"duration\": 177.66, \"timestamps\": [[0, 47.08], [45.3, 103.93], [85.27, 148.34], [137.68, 174.99]], \"sentences\": [\"A man is seen speaking to the camera and showing over various cakes.\", \" He mixes ingredients into a bowl and stirs them up.\", \" He shows dough on a plate and sprinkles chocolate chips.\", \" He shows the cookie done and begins eating it.\"]}, \"v_twrPZghmNtA\": {\"duration\": 44.86, \"timestamps\": [[0, 2.47], [7.85, 28.04], [31.63, 44.86]], \"sentences\": [\"A couple of players jump over a fence to celebrate.\", \" They are then seen in a game of soccer.\", \" They run on the sand, kicking the ball into the net.\"]}, \"v_dnzcNZBtUG4\": {\"duration\": 188.57, \"timestamps\": [[0, 25.46], [27.34, 127.28], [128.23, 188.57]], \"sentences\": [\"A group of people are standing in a lobby.\", \" A man and woman start dancing together.\", \" They spin and twirl as they continue to dance.\"]}, \"v_-MFzpFMdWZs\": {\"duration\": 46.97, \"timestamps\": [[0, 13.39], [11.27, 32.88], [28.18, 43.92]], \"sentences\": [\"A person is seen sitting on a bed with his leg up.\", \" The boy shaves his leg when another person walks into frame.\", \" The person looks down at his leg.\"]}, \"v_yQ2AirKmnTM\": {\"duration\": 39.56, \"timestamps\": [[0, 39.56], [2.77, 19.98], [25.71, 39.56]], \"sentences\": [\"A large group of adults and children are sitting in bumper cars and driving around hitting one another or into walls.\", \"A boy and a girl drive quickly into a wall and are stuck while the girl is very mad about it.\", \"The boy and girl that were previous stuck get unstuck, then they drive straight into another wall while the girl yells at the little boy and he cries.\"]}, \"v_Qre7RVxEn78\": {\"duration\": 119.77000000000001, \"timestamps\": [[0, 6.59], [7.19, 25.15], [25.75, 109.59], [110.19, 119.77]], \"sentences\": [\"A young man with a marked dot for ear piercing is laying on a medical table.\", \"  Another young man shows a large ear piercing tool to the camera.\", \" The man pierces both of his ears.\", \"  He gets up off the table and looks at his piercings in the mirror.\"]}, \"v_iMATWwGyAUM\": {\"duration\": 178.1, \"timestamps\": [[0.89, 27.61], [32.06, 153.16], [52.54, 174.54], [175.43, 177.21]], \"sentences\": [\"The credits of the clip is shown.\", \" A person is skiing down the snowy slope.\", \" The person speaks directly to the camera.\", \" The credits of the video is shown.\"]}, \"v_Y0G_wA38HkI\": {\"duration\": 231.29, \"timestamps\": [[0, 72.86], [58.98, 163.06], [156.12, 224.36]], \"sentences\": [\"Several clips are shown of people riding along the water kite surfing.\", \" The people pushing along the ocean while the camera captures their movements.\", \" The men jump all along the water on the boards and continue to ride off.\"]}, \"v_Zcq_xLi2NGo\": {\"duration\": 131.29, \"timestamps\": [[0, 16.41], [20.35, 78.77], [87.31, 131.29]], \"sentences\": [\"A man is playing a saxophone while standing on a stage.\", \" A band is playing in the background behind him.\", \" He continues to play as the spotlight is on him.\"]}, \"v_slHv7r8A4OI\": {\"duration\": 198.09, \"timestamps\": [[0, 32.68], [36.65, 156.49], [162.43, 198.09]], \"sentences\": [\"A man is crouched down in the snow looking at the camera.\", \" He is then seen skiing through the snow.\", \" He is also seen riding the lifts before skiing again.\"]}, \"v_jwndE_xn8sA\": {\"duration\": 8.52, \"timestamps\": [[0, 0.89], [0.98, 4.9], [3.79, 8.48]], \"sentences\": [\"a girl is sitting in front of the camera.\", \" the girl takes several puffs from a large pipe.\", \" the girl then blows out smoke holes.\"]}, \"v_O-upcCp0jIs\": {\"duration\": 112.08, \"timestamps\": [[0, 12.33], [18.49, 67.81], [70.05, 112.08]], \"sentences\": [\"A man is seated inside a room.\", \" He is hammering nails into carpet on the floor.\", \" He presses pieces together and hammers them into the floor.\"]}, \"v_1hiyhNqakMI\": {\"duration\": 78.95, \"timestamps\": [[0, 56.45], [9.87, 43.42], [47.76, 77.37]], \"sentences\": [\"A large yard is seen followed by a man moving in and out of frame.\", \" The man uses a lawn mower up and down the yard.\", \" He continues moving around the yard.\"]}, \"v_EQMDnhIKU4w\": {\"duration\": 113.25999999999999, \"timestamps\": [[0, 3.4], [3.96, 26.05], [26.62, 41.34], [41.91, 102.5], [103.06, 113.26]], \"sentences\": [\"The logo \\\"monkeysee com\\\" is shown on screen.\", \" Two men speak to the camera from a darkened room.\", \" The camera focuses on the man's shoes.\", \" The man throws a dart at a dartboard as the other man narrates technique.\", \" The logo returns with a disclaimer.\"]}, \"v_lM4FQ_FqEhQ\": {\"duration\": 161.87, \"timestamps\": [[0, 161.87], [5.67, 161.87], [0, 158.63]], \"sentences\": [\"old man is talking to the camera in a skate park skating and doing tricks.\", \" men are standing behind the old man skating.\", \" people are skating in skate park.\"]}, \"v_akUXL2VzFEs\": {\"duration\": 56.98, \"timestamps\": [[0, 7.69], [6.84, 37.61], [34.47, 56.7]], \"sentences\": [\"A person's feet is seen moving along the water and closes in on others riding in tubes.\", \" Two people are seen sitting in front riding tubes through the jungle.\", \" The person's feet are shown again as well as people riding.\"]}, \"v_2oc0OBWkYfg\": {\"duration\": 43.03, \"timestamps\": [[0, 4.73], [4.95, 14.41], [14.63, 31.62], [31.84, 43.03]], \"sentences\": [\"A woman's face appears in a filmstrip with \\\"Forties Medium\\\" written above on a piece of tape.\", \"  A person is placing curlers in her hair.\", \"  Now they are brushing and combing her hair back.\", \" Final shots of her finished look appear followed by a website address.\"]}, \"v_py26bxAfOEg\": {\"duration\": 227.19, \"timestamps\": [[1.14, 144.26], [34.08, 182.88], [97.69, 223.78]], \"sentences\": [\"A large river is shown with people riding in tubes.\", \" People wave to the camera as well as smoke cigarette and swim in the water.\", \" People drink beer and gesture to the camera while still sitting in tubes and getting out on the side.\"]}, \"v_1926p23ooUM\": {\"duration\": 61.26, \"timestamps\": [[0, 5.51], [8.88, 31.85], [33.38, 61.26]], \"sentences\": [\"A man is playing basketball inside a gym.\", \" He bounces the ball as he runs through the orange cones.\", \" He makes baskets as he weaves around the course.\"]}, \"v_tik7rHU_DM8\": {\"duration\": 44.4, \"timestamps\": [[0, 6.22], [3.33, 13.32], [11.32, 27.3], [26.42, 44.4]], \"sentences\": [\"a man stands in a bull ring.\", \" a bull runs towards the man.\", \" the man gets hit by the bull.\", \" the man then runs around being chased by the bull.\"]}, \"v_OvGxDaayPcw\": {\"duration\": 41.26, \"timestamps\": [[0, 4.95], [3.92, 8.25], [6.6, 37.75], [7.84, 41.26]], \"sentences\": [\"Two children stand in front of a mat.\", \" They throw something on to the mat.\", \" They take turns jumping across the mat.\", \" They pick up the item they threw on it.\"]}, \"v_5I0K3y27EUM\": {\"duration\": 15.02, \"timestamps\": [[0.15, 5.48], [3.53, 10.37], [9.99, 14.8]], \"sentences\": [\"A woman is seen sitting at the top of the slide with a child.\", \" The woman looks at the camera and begins sliding down.\", \" Her and the child slide to the bottom.\"]}, \"v_OCdmlTxq1Co\": {\"duration\": 115.25999999999999, \"timestamps\": [[0, 5.76], [6.34, 14.98], [19.59, 34.58], [31.7, 42.07]], \"sentences\": [\"A pick axe is scraping of something on some metal.\", \" A blowtorch is used to bond the metal.\", \" There is a close up of the dried product.\", \" A man turns a dial on a machine.\"]}, \"v_maE7PmL7Zjk\": {\"duration\": 140.34, \"timestamps\": [[0, 3.51], [4.21, 11.93], [12.63, 49.82], [49.12, 129.82], [130.52, 140.34]], \"sentences\": [\"\\\"What bowt it?\\\" logo appears on screen.\", \" \\\"A Serious Game of Pool\\\" scrolls across the screen.\", \"  Young men play pool in a dimly lit room.\", \" A man carefully plans out a pool shot with paper and rulers but misses the shot.\", \" \\\"A Serious Game of Pool\\\" scrolls off screen.\"]}, \"v_hltWAq_Odxk\": {\"duration\": 9.34, \"timestamps\": [[0, 9.34], [0, 0.65], [0.84, 6.86], [7.14, 7.61], [9.19, 9.34]], \"sentences\": [\"Two guys are playing wrestling in front of an audience.\", \" A professional wrestler starts to lift a shirtless wrestler.\", \" The wrestler lifts the shirtless wrestler over his head and carries him on his back.\", \" The wrestler throws the shirtless wrestler on the wrestling box's floor.\", \" The shirtless wrestler lays motionless on the floor.\"]}, \"v_6rOmYOU7748\": {\"duration\": 59.49, \"timestamps\": [[0, 9.52], [9.82, 51.16], [51.46, 59.49]], \"sentences\": [\"The credits are shown below a red arrow.\", \" A person that is using a power tool is working on the roof.\", \" The credits of the images are shown.\"]}, \"v_Jv-bPV8eswU\": {\"duration\": 105.05, \"timestamps\": [[0, 104.52], [0, 105.05], [88.77, 105.05]], \"sentences\": [\"man is sitting in a bench in the middle of a room.\", \" the man is holding a shave and shaving her beard.\", \" when the man finish to shave toouch his face with his hands.\"]}, \"v_xIhTY02lRSE\": {\"duration\": 64.02, \"timestamps\": [[0.32, 17.6], [13.44, 43.21], [37.45, 61.46]], \"sentences\": [\"A man is seen standing over a bike and begins taking it apart.\", \" He rips off the sides of the bike while others watch on the side.\", \" The man continues to move while others clap on the side.\"]}, \"v_C10_qXWxpsk\": {\"duration\": 73.53999999999999, \"timestamps\": [[0, 73.54], [1.84, 25.37], [22.43, 37.5], [36.03, 51.11], [50.01, 63.61], [62.51, 73.54]], \"sentences\": [\"There's a young girl wearing a blue tank top and large blue bow on her head doing some gymnastic exercises in a park.\", \" She starts off by showing a handstand as she stands on her two hands and thrusts her body up.\", \" Then she demonstrates the cartwheel, followed by the power hurdle round off.\", \" She also bends backwards and throw herself over to do the back walkover and then the front walkover as she makes a one hundred eighty degree flip over.\", \" Then she shows the forward roll by doing a somersault on the grass.\", \" After that, she finishes off with the tutorial and signs off.\"]}, \"v_pk7LcugO3zg\": {\"duration\": 161.56, \"timestamps\": [[0, 58.16], [58.16, 114.71], [114.71, 144.6], [145.41, 161.56]], \"sentences\": [\"A room full of large televisions screens are shown with desktops along the lines of the of the desk.\", \"After,a man appears with a clear bag in his hand dropping brown liquid into it.\", \"He then tries to lick the liquid from the side but he isn't successful because of the gravity is keeping it in.\", \"The video then zooms out and you can see that it was a tape on the main television in the room the whole time.\"]}, \"v_l2drIA62T8w\": {\"duration\": 107.58, \"timestamps\": [[10.22, 24.21], [25.82, 44.11], [46.26, 84.99], [85.53, 99.51]], \"sentences\": [\"A dog groomer pets the dog's fur with her hands.\", \" The groomer brushes the neck and back of a dog on a table with a comb.\", \" The groomer brushes the neck and back of a dog on a table with brushes.\", \" The groomer uses a glove with brushing surface to groom the dog.\"]}, \"v_xpKAvKrrBDs\": {\"duration\": 153.86, \"timestamps\": [[0, 52.31], [46.93, 112.31], [105.39, 144.62]], \"sentences\": [\"A young boy is seen sitting before a ball pit and looking towards the camera.\", \" He crawls around a play area and goes down a slide.\", \" He continues walking around and playing in a ball pit.\"]}, \"v_8Ny9NjNpQQA\": {\"duration\": 17.81, \"timestamps\": [[0, 15.94], [0.45, 15.94], [7.12, 7.75]], \"sentences\": [\"People are swimming in the water.\", \" Two women are standing on the beach watching.\", \" Someone in the water throws a ball.\"]}, \"v_8_jbsmj5Z9w\": {\"duration\": 105.0, \"timestamps\": [[0, 5.25], [6.83, 99.23], [99.75, 105]], \"sentences\": [\"Two men are standing outside talking.\", \" A man starts shaving hes beard in a mirror.\", \" He shaves half of his beard and laughs.\"]}, \"v_U0qUFAPUg_Y\": {\"duration\": 193.19, \"timestamps\": [[0, 14.49], [28.01, 100.46], [112.05, 193.19]], \"sentences\": [\"A group of athletes are on an indoor track.\", \" One runs with a long pole in his hand.\", \" He breaks the bar as he tries to vault over it.\"]}, \"v_-01K1HxqPB8\": {\"duration\": 215.71, \"timestamps\": [[0, 142.37], [142.37, 146.69], [159.63, 166.1]], \"sentences\": [\"Two men are standing in front of each other.\", \" They kneel down onto the floor and start wrestling.\", \" They start fighting each other again.\"]}, \"v_laeOL4ipHck\": {\"duration\": 184.86, \"timestamps\": [[0, 9.24], [9.24, 157.13], [157.13, 184.86]], \"sentences\": [\"An introduction comes onto the screen for a video about vacationing.\", \" Some women are shown playing volleyball on the beach while sending the ball back and forth.\", \" The video ends with the closing caption shown across the screen.\"]}, \"v_YDSSJ6Tp47g\": {\"duration\": 106.84, \"timestamps\": [[0, 30.98], [26.17, 75.85], [64.1, 104.7]], \"sentences\": [\"Two girls are seen speaking to the camera while riding around on roller blades.\", \" The girls move all along a parking lot while another comes into frame on skates.\", \" The girls kiss one another while still riding around and zooming in on their faces.\"]}, \"v_gYqXtgtyFnY\": {\"duration\": 67.87, \"timestamps\": [[0, 67.87], [2.04, 30.2], [30.88, 61.42], [63.8, 67.87]], \"sentences\": [\"Some feet with ballerina shoes on are seen in front of cabinets and a fridge.\", \" The person steps back and ties the shoe on the left.\", \" Then she ties the shoe on the right.\", \" The she comes back close to the camera.\"]}, \"v_rWDMssiL7hE\": {\"duration\": 138.95, \"timestamps\": [[0, 2.08], [2.08, 67.39], [84.06, 86.15]], \"sentences\": [\"A woman is brushing her teeth.\", \" A man walks into the room behind her.\", \" The man gets into the shower behind her.\"]}, \"v_0w7cO4tscBc\": {\"duration\": 98.8, \"timestamps\": [[0, 31.12], [26.68, 69.65], [65.21, 96.82]], \"sentences\": [\"A woman is seen speaking to the camera standing next to a horse.\", \" She begins brushing the horse while still speaking.\", \" She holds up tools and continues brushing the horse.\"]}, \"v_dRqbDamDLT0\": {\"duration\": 219.48, \"timestamps\": [[0, 28.53], [43.9, 142.66], [152.54, 219.48]], \"sentences\": [\"A man is inside a work shop.\", \" He is working to replace the tire on a bike.\", \" He removes the rubber tread and replaces it.\"]}, \"v_gbuRv8phs1Y\": {\"duration\": 165.05, \"timestamps\": [[0, 21.46], [21.46, 38.79], [38.79, 165.05]], \"sentences\": [\"large waterfall is shown and in the river people is kayaking.\", \" man is being interviewed on a lakeside.\", \" man is on a lakeside and sits in a kayak and gets in the river kayaking.\"]}, \"v_6cPXFUqRB1s\": {\"duration\": 56.19, \"timestamps\": [[0, 11.8], [11.24, 15.17], [15.17, 19.39], [19.39, 27.82], [28.94, 48.05], [48.61, 56.19]], \"sentences\": [\"A male Olympian from the Unites States is getting ready to compete in the ball throw.\", \" The male then grabs the handle and positions himself.\", \" The male star then spins carefully gaining momentum of the throw.\", \" The male star then tosses the ball as far as he can.\", \" After achieving his goal, the replay shows how good the man really handled the ball throw.\", \" The field shows the group of competitors and spectators for the day.\"]}, \"v_MP31A6fHsh4\": {\"duration\": 150.77, \"timestamps\": [[0, 21.86], [28.65, 116.09], [119.11, 150.77]], \"sentences\": [\"A game of curling is being discussed by a man wearing glasses.\", \" He is shown pushing the pucks around with the sticks.\", \" He continues talking about the mechanics of the game.\"]}, \"v_4YJ_L7jqgoA\": {\"duration\": 169.11, \"timestamps\": [[0, 16.91], [31.29, 100.62], [115, 169.11]], \"sentences\": [\"A weight lifter is inside a gym.\", \" He lifts a barbell up to his chest and pauses.\", \" He then lifts it over his head before dropping it.\"]}, \"v_-Jp86pFKlsw\": {\"duration\": 27.61, \"timestamps\": [[0, 27.61], [0, 27.06], [0, 26.5]], \"sentences\": [\"woman is in a yard playing with two dogs.\", \" woman is throwing frisbes to dogs and they catch them.\", \" the woman is training her dogs so can do icks wit the frisbees.\"]}, \"v_l3EBfLkfAX8\": {\"duration\": 88.42, \"timestamps\": [[0, 11.05], [12.82, 26.08], [30.06, 88.42]], \"sentences\": [\"A track team is shown on a field.\", \" A man jumps over a low bar onto a mat.\", \" We then see other track athletes doing the same moves and their measurements.\"]}, \"v_2ooY3GqZieg\": {\"duration\": 143.03, \"timestamps\": [[2.86, 37.9], [33.61, 95.83], [89.39, 127.29]], \"sentences\": [\"People are seen looking at the camera and walking around an area.\", \" Several clips are then shown of people riding skateboards in crowded areas.\", \" The people ride all around a city while looking to the camera and pushing their board.\"]}, \"v_y3xcwZpcLvI\": {\"duration\": 59.54, \"timestamps\": [[0, 5.95], [8.93, 44.95], [47.93, 59.54]], \"sentences\": [\"A female gymnast mounts a low beam.\", \" She turns and balances on the beam.\", \" She goes forward doing jumps and springs.\"]}, \"v_MSSb3wPd5hM\": {\"duration\": 159.13, \"timestamps\": [[0, 43.76], [43.76, 116.96], [103.43, 154.35]], \"sentences\": [\"A group of people are seen playing instruments next to one another.\", \" The continue to play while the front row turns around.\", \" The front row moves all around one another as they continue to play.\"]}, \"v_5SpWmZxECqc\": {\"duration\": 214.29, \"timestamps\": [[22.5, 38.57], [39.64, 184.29], [197.14, 199.29]], \"sentences\": [\"A woman is brushing her hair.\", \" She sprays it with a spray bottle and continues brushing her hair.\", \" She finishes and gives a thumbs up.\"]}, \"v_PxGggNnMGtQ\": {\"duration\": 63.5, \"timestamps\": [[0, 16.83], [10.48, 43.18], [38.1, 63.5]], \"sentences\": [\"a man stands behind a bar.\", \" the man starts talking to the camera.\", \" the man then begins creating and mixing a cocktail.\"]}, \"v_furUOKw0Qzs\": {\"duration\": 137.6, \"timestamps\": [[0, 6.19], [9.63, 66.74], [69.49, 105.95], [106.64, 132.79], [134.16, 137.6]], \"sentences\": [\"There is an intro with a little red animated car that drives by over the top of the logo for Kwik Fit Top Tip.\", \" Then there is a man who kneels down next to a red car, and explains what you will need to change a tire.\", \" He loosens the bolts and positions the jack, removes the tire and replaces it with a new one.\", \" Then he lowers the car and tightens the new bolts, then removes the jack and talks for a bit more.\", \" At the end the logo shows again.\"]}, \"v_zy7rd78yBnY\": {\"duration\": 209.63, \"timestamps\": [[0, 206.49], [15.72, 206.49], [206.49, 209.63]], \"sentences\": [\"A woman is sitting at a table painting.\", \" She begins painting flowers on the paper in front of her.\", \" She picks the painting up.\"]}, \"v_qwxmpiaT-kk\": {\"duration\": 41.05, \"timestamps\": [[0, 7.59], [6.77, 22.17], [6.77, 41.05]], \"sentences\": [\"two men are sitting a ta table holding hands.\", \" one man starts shoving the other mans hands toward the table.\", \" the two have an arm wrestling match.\"]}, \"v_trl-RCWyhb0\": {\"duration\": 58.79, \"timestamps\": [[0, 7.06], [11.76, 37.63], [41.74, 58.79]], \"sentences\": [\"A man is seated inside a room.\", \" He is playing a large drum set.\", \" He hits the drums with his hands to a beat.\"]}, \"v_l4C-l6XeNRc\": {\"duration\": 238.86, \"timestamps\": [[0, 15.53], [15.53, 161.23], [161.23, 186.31], [161.23, 238.86]], \"sentences\": [\"someone is pouring fuel in a mowing cart.\", \" man is sitting on the mowing cart and driving in a green grassy field and pass by neighboors.\", \" the man stands on top of the lawnmower in the yard.\", \" the man takes out the car and other men start fighting for the cart and the three are riding it.\"]}, \"v_FrkXeG1YoKg\": {\"duration\": 80.11, \"timestamps\": [[0, 13.62], [9.61, 56.08], [52.87, 80.11]], \"sentences\": [\"The female athlete run to with the stick and jumped over the pole.\", \" Different women jumped over the pole with the help of the stick.\", \" The female athlete in red top runs and jumped over the pole and go over it without touching the pole, and the crowd cheered.\"]}, \"v_fmRio4-6Xqc\": {\"duration\": 10.06, \"timestamps\": [[0, 10.06], [0, 9.95], [0.3, 10.06]], \"sentences\": [\"men are doing motocross in a competition.\", \" a lot of people are gathered around a path watching the motocross competition.\", \" motorbikers are on dusty path going on their bikes.\"]}, \"v_q8-iXvYyCGg\": {\"duration\": 15.77, \"timestamps\": [[0, 1.1], [1.1, 5.28], [5.44, 13.24], [13.4, 15.77]], \"sentences\": [\"Two man stand in line while a woman stands to one side.\", \" The woman steps forward and makes a series of jumps in front of the two men.\", \" The two men makes a series of jumps in turn.\", \" The woman makes a series of jumps again.\"]}, \"v_MWnYL4JiMP0\": {\"duration\": 208.4, \"timestamps\": [[0, 55.23], [43.76, 138.59], [119.83, 195.9]], \"sentences\": [\"A large group of people are seen standing in a room.\", \" A woman walks in front and leads an exercise class.\", \" The people follow behind the woman dancing and do the same thing she does.\"]}, \"v_mFWRIp164r4\": {\"duration\": 161.45, \"timestamps\": [[0, 161.45], [0, 76.69], [0.81, 6.46], [4.84, 8.07], [76.69, 107.36], [107.36, 159.83], [159.83, 161.45]], \"sentences\": [\"A large group of people are hanging around outdoors either sitting, standing, or playing tug o war.\", \"Men wearing blue uniforms start to walk and get into place along a long, thick rope.\", \" A man wearing a turban takes a water bottle, pours water onto his hands,then drinks some water and spits it out.\", \"Another man grabs the bottle from him and pours it onto another man's hands who rinses his hands off.\", \"The men now have the ropes in their hands and are getting ready for their tug o war.\", \" A man in a red turban has his left hand up, the men suddenly starts pulling on the ropes and the man in the red turban quickly puts his left arm down and they all continue to tug on the rope some more while the audience gets excited and starts moving about, clapping and yelling.\", \"The men with most wearing turbans slowly start to pull the rope their way, they win,stop pulling the rope and a hand quickly appears in the view before the video stops.\"]}, \"v_DmAOCYuMgtE\": {\"duration\": 205.01, \"timestamps\": [[0, 202.96], [6.15, 189.63], [12.3, 50.23], [39.98, 77.9], [76.88, 131.21], [120.96, 147.61], [137.36, 186.56], [166.06, 190.66], [198.86, 205.01]], \"sentences\": [\"There is a large group of ladies in an indoor gym doing a Zumba workout.\", \" The instructor dressed in a green and yellow tank top is directing the the group with her Zumba moves.\", \" The instructor is going sideways while shaking her hips and and moving her hands rhythmically.\", \" Then she makes her group dance on the spot while rotating her left arm and holding her right arm still.\", \" Then she again starts dancing sideways as she moves her legs and arms together and the entire group imitates her moves.\", \" She continues more dance moves and rounds where she moves her body, arms and legs simultaneously.\", \" The entire group of ladies dances in quick and vigorous steps as they rapidly move their hands.\", \" Then she begin jogging back and forth in the gym while moving their hands in the air.\", \" Then the group stops when they're instructed to take a break from the workout session.\"]}, \"v_AyicWbHhUWc\": {\"duration\": 54.27, \"timestamps\": [[5.43, 12.48], [11.12, 49.92], [49.38, 54.27]], \"sentences\": [\"A man walks onto a mat.\", \" He bends down and picks up a large weight over his head.\", \" He drops the weight onto the mat under him.\"]}, \"v_dfjl7sS1IGo\": {\"duration\": 206.17000000000002, \"timestamps\": [[0, 45.36], [46.39, 131.95], [127.83, 197.92]], \"sentences\": [\"A woman is seen holding up products and putting them in her hair .\", \" She blow dries her hair and begins braiding her hair.\", \" She blows out her hair and shows off the length in the end.\"]}, \"v_qHRCGBIiNFg\": {\"duration\": 189.01, \"timestamps\": [[0, 187.12], [0, 8.51], [8.51, 18.9], [19.85, 189.01]], \"sentences\": [\"A group of men labor over an ice fishing hole using a fishing pole, a wire, and their hands to finally wrangle a fish from deep under the ice.\", \"  A group of men are standing over a small, round, hole in the ice.\", \"  One man is on his knees peering deeply into the hole while the other man has a fishing line submerged in the hole.\", \"  The two men put gloves on and go into the hole to try to retrieve, then they use a wire, and then finally, they are able to wrangle a wriggling, large and long fish out of the water from under the ice.\"]}, \"v_3La7NPOBVN8\": {\"duration\": 205.59, \"timestamps\": [[0, 61.68], [62.7, 70.93], [72.98, 184], [186.06, 205.59]], \"sentences\": [\"A girl in a green sweater is talking about doing a tutorial for the braid she has in her hair.\", \" The scene cuts to the bathroom and the girl is seen brushing her hair.\", \" The she braids her hair in a braid to the side.\", \" At the end she puts a hair tie on it, pulls the braid a bit and smiles.\"]}, \"v_QBXswoKU4S4\": {\"duration\": 164.79, \"timestamps\": [[0, 33.78], [34.61, 93.11], [93.11, 135.95], [135.95, 164.79]], \"sentences\": [\"Four individuals are in a small rectangular patch of dirt in the middle of a large green football field.\", \"A player with a wooden paddle then hits the ball that was thrown to him as someone in the outfield grabs it.\", \"Some time passes and the game continues as the the man throws another ball that isn't acceptable.\", \"More pitches are thrown and then the game ends with the teams walking back and forth and hand shaking one another on their performance.\"]}, \"v_Bule85koN3o\": {\"duration\": 48.51, \"timestamps\": [[0, 6.79], [5.58, 12.37], [12.13, 48.51]], \"sentences\": [\"The man put the ball on his face and sway.\", \" The man turned around and threw the ball and landed on the field.\", \" The man walked way giving high fives to the other players.\"]}, \"v_cdufbM2OCwM\": {\"duration\": 100.14, \"timestamps\": [[0, 2], [10.51, 93.63], [95.63, 100.14]], \"sentences\": [\"Star wars memorabilia is shown in a room.\", \" A person is playing a saxophone in front of a music stand.\", \" He stops playing and puts the saxophone down.\"]}, \"v_VlLq4bAHCXI\": {\"duration\": 44.56, \"timestamps\": [[0, 4.23], [5.79, 16.04], [18.05, 44.56]], \"sentences\": [\"A man is wearing full running gear.\", \" He laces up his shoes and joins in a race.\", \" The people line up, then run, racing each other to the finish line.\"]}, \"v_ZPVrC5185NM\": {\"duration\": 51.76, \"timestamps\": [[0, 19.15], [20.44, 23.55], [28.98, 30.8]], \"sentences\": [\"A small girl swings on a black swing.\", \"  A parent pushes a girl on a black swing.\", \"  The girl laughs with glee at being pushed.\"]}, \"v_PyPu-6wATfw\": {\"duration\": 169.65, \"timestamps\": [[0, 33.08], [27.99, 111.12], [102.64, 169.65]], \"sentences\": [\"a man is standing behind a restaurant bar.\", \" the man places a glass on the bar.\", \" the man then begins making a cocktail while talking to the camera.\"]}, \"v_HrKO4BfXVbk\": {\"duration\": 180.42, \"timestamps\": [[0, 53.22], [50.52, 129.9], [119.08, 175.01]], \"sentences\": [\"A man is seen speaking to the camera while holding an instrument.\", \" He moves his hands around and begins playing the instrument.\", \" He continues playing and stops to speak to the camera.\"]}, \"v_TAC-5hXVLPY\": {\"duration\": 177.66, \"timestamps\": [[0, 23.1], [35.53, 113.7], [120.81, 177.66]], \"sentences\": [\"A man is standing inside a gym.\", \" He is holding an archery set and talking.\", \" He shows how to draw the bow and arrow and shoot.\"]}, \"v_u5ri43qbi1A\": {\"duration\": 220.85, \"timestamps\": [[28.71, 220.85], [28.71, 40.86], [40.86, 220.85]], \"sentences\": [\"This video gives the audience a step by step guide of how to make a pikachu cake.\", \" First, he searches the internet to find a pikachu character's face to fit the cake he's making.\", \" Then, he explains the name of the pikachu and he shows viewers which frosting to put first all in order and when he's done he shows the entire cake finished.\"]}, \"v_PSh-caJvSHU\": {\"duration\": 194.75, \"timestamps\": [[0, 12.66], [32.13, 95.43], [110.03, 194.75]], \"sentences\": [\"A little boy is standing in front of a table.\", \" He and another child are shown creating jackolanterns from pumpkins.\", \" They use plastic pumpkins to base their designs on.\"]}, \"v_VE9MAMmF1wc\": {\"duration\": 110.5, \"timestamps\": [[0, 35.36], [34.81, 75.7], [74.59, 106.64]], \"sentences\": [\"A close up of paper is seen followed by a woman speaking to the camera.\", \" She steps up with another man on a platform while they smile and wave to the camera.\", \" The men push her off the side as she slides down the rope and the man waves.\"]}, \"v_esNQZCjMZaM\": {\"duration\": 93.86, \"timestamps\": [[0, 19.71], [20.65, 45.99], [46.93, 69.92], [70.86, 93.86]], \"sentences\": [\"A young woman is standing in a stadium on a mat holding up a bow and arrows and releasing it onto the target.\", \"After she releases it,the girls behind her begin to clap and look in amazement at her results.\", \"Two more girls go after her and the commentators jump up and down in glee and begin to laugh.\", \"The other girls then step up to take their turns as the ladies give them thumbs up and other cheers.\"]}, \"v_OFKGyZxazQk\": {\"duration\": 168.02, \"timestamps\": [[0, 20.16], [20.16, 32.76], [32.76, 57.97], [58.81, 168.02]], \"sentences\": [\"A news reporter wearing a black dress reports on the use of sunscreen.\", \" Video clips of adults and children on different beaches.\", \" An interview with a physician who is wearing a white lab coat.\", \" The reporter then places sunscreen on her nose while talking with the anchor news team.\"]}, \"v_G77y1JRjZDU\": {\"duration\": 73.52, \"timestamps\": [[0, 9.19], [18.01, 59.55], [64.33, 73.52]], \"sentences\": [\"A large group poses for a photo together.\", \" They are seen outside at a long sink.\", \" They are gathered to wash clothing in the basin.\"]}, \"v_IU6LVYI0FZM\": {\"duration\": 62.51, \"timestamps\": [[0, 6.56], [8.44, 35.94], [38.76, 62.51]], \"sentences\": [\"A couple of men are meeting inside a ring.\", \" They proceed to fight in slow motion.\", \" They fight in several methods used in kickboxing.\"]}, \"v_L36MIRUpcrI\": {\"duration\": 32.44, \"timestamps\": [[0, 23.19], [12.65, 14.76], [23.36, 26.28], [26.6, 32.44]], \"sentences\": [\"A guy is exercising in a gym.\", \" Drips of sweat falls off the guy's face.\", \" The guy is half kneeing and looks up.\", \" The credits of the video are shown.\"]}, \"v_sbr3HKm2Y9I\": {\"duration\": 196.57999999999998, \"timestamps\": [[0, 196.58], [0, 78.63], [4.91, 196.58], [120.9, 196.58]], \"sentences\": [\"marching band wering red uniforms are in street playing drums and doing a choreography.\", \" behind the band kids walking in circles are doing a choreography.\", \" kids are sitting on the sidewalk looking at them.\", \" the band back off in the sidewalk and make a dance at the rhthm of the music.\"]}, \"v_BgAiDS4fF_I\": {\"duration\": 132.6, \"timestamps\": [[0, 58.34], [58.34, 93.48], [93.48, 132.6]], \"sentences\": [\"This man is standing with his hands on his hips and he explains what exercises he will be doing throughout the video.\", \" First he shows viewers how to properly do a crunch and his feet are apart, arms on his chest, and each time he goes up the elbows touch his legs.\", \" When he's done, he stands up and tells viewers more helpful information about how to have a good workout.\"]}, \"v_r-iXUXMP4DY\": {\"duration\": 233.13, \"timestamps\": [[0, 15.15], [18.65, 59.45], [92.09, 233.13]], \"sentences\": [\"A man is wiping sweat from his forehead.\", \" He is talking in front of a table.\", \" He demonstrates how to iron a shirt.\"]}, \"v_LCyLWiw7n5Q\": {\"duration\": 116.25999999999999, \"timestamps\": [[0, 27.9], [22.67, 81.38], [74.41, 113.36]], \"sentences\": [\"A man is seen speaking to the camera and begins eating an ice cream.\", \" Several other men around him stuff their faces in ice cream while laughing with one another.\", \" They do this several times and rub ice cream all over one another.\"]}, \"v_Iiwz1JtC7rk\": {\"duration\": 106.12, \"timestamps\": [[0, 35.02], [26.53, 74.28], [63.67, 102.4]], \"sentences\": [\"A close up of a woman is seen leading into objects shown in front of the camera.\", \" A person is then seen putting the girl's hair up in several dos while showing it to the camera.\", \" The girl continues to show off hairstyles while smiling to the camera.\"]}, \"v_8RntjHIwMNo\": {\"duration\": 35.3, \"timestamps\": [[0, 8.47], [7.94, 24.53], [21.53, 34.06]], \"sentences\": [\"A small group of people are seen standing together and speaking.\", \" The group then begins playing on a set of drums.\", \" The people continue playing and stop to shake hands with a man.\"]}, \"v_rFM3OUUL5fI\": {\"duration\": 227.79, \"timestamps\": [[2.28, 12.53], [17.08, 29.61], [37.59, 80.86], [82, 183.37], [203.87, 216.4]], \"sentences\": [\"A seal sits on a rock near an ocean.\", \" A large rock column is seen from a boat in the ocean.\", \" The man attempts to walk across the rope but falls but and holds onto the rope.\", \" The man walks across the rope all the way to the attached rock.\", \" The man films from a beach cliff next to a tent.\"]}, \"v_akwJwcvfjLA\": {\"duration\": 125.57, \"timestamps\": [[0, 12.56], [24.49, 100.46], [106.11, 125.57]], \"sentences\": [\"A man is playing a game inside a court.\", \" He engages in a game of racquetball.\", \" He talks to the camera bout the game.\"]}, \"v_vCAGiXqYXBk\": {\"duration\": 93.67, \"timestamps\": [[0, 16.86], [14.52, 31.85], [36.06, 62.76], [59.48, 93.67]], \"sentences\": [\"a man is sitting on a side walk playing an accordion.\", \" a crowd has gathered around the man to watch him play.\", \" the man twists and turns his body while playing passionately for the crowd.\", \" another man runs through the performance clapping his hands.\"]}, \"v_E-M2Cq0RNTs\": {\"duration\": 142.9, \"timestamps\": [[0, 22.86], [14.29, 51.44], [52.87, 83.59], [113.6, 142.9]], \"sentences\": [\"man is hand washing a black jeep.\", \" the man then hand washes a yellow corvette.\", \" the man hoses down the yellow corvette.\", \" a call center is shown.\"]}, \"v_Lomlff9wClo\": {\"duration\": 55.43, \"timestamps\": [[0, 5.82], [6.65, 36.3], [37.41, 55.43]], \"sentences\": [\"A woman is outside a house in the yard.\", \" She is holding an ax over a log.\", \" She hits the log several times with the ax, laughing while she does.\"]}, \"v_J4hnBPgwDlw\": {\"duration\": 191.05, \"timestamps\": [[0, 14.33], [16.24, 36.3], [56.36, 191.05]], \"sentences\": [\"A woman wearing glasses has her hand on her hip.\", \" She starts talking about a bottle of mouthwash.\", \" She then uses the mouthwash to gargle and rinse in the sink.\"]}, \"v_4T8uFygBeNo\": {\"duration\": 222.0, \"timestamps\": [[0, 11.1], [11.1, 27.75], [27.75, 222]], \"sentences\": [\"First the man steps onto his skateboard and a car rides past.\", \" Then both of the men ride the skateboards at the same time in the middle of the streets.\", \"  One of the men glide around lots of obstacles and he kinda zig zags through the street and one of the men plays hopscotch when done.\"]}, \"v_8VPjByN_v9w\": {\"duration\": 99.89, \"timestamps\": [[0, 14.98], [21.48, 72.42], [73.92, 99.89]], \"sentences\": [\"Two men are standing on an outdoor court.\", \" They are engaged in break dancing.\", \" They do all their moves and spins in unison.\"]}, \"v_eM2miz5uf8Q\": {\"duration\": 76.26, \"timestamps\": [[0, 5.34], [5.34, 21.73], [22.11, 76.26]], \"sentences\": [\"A man walks up to an ice covered truck.\", \" The man opens the door and repeatedly slams it shut trying to break up the ice.\", \" He uses a scraper to clear the ice from the driver's side window and mirror.\"]}, \"v_x8cuLOUppmU\": {\"duration\": 45.23, \"timestamps\": [[0, 45.23], [1.81, 35.28], [35.96, 45.23]], \"sentences\": [\"A woman is standing behind a green fence.\", \" She swings a ball on a chain around her several times.\", \" She releases the ball and throws it in front of her.\"]}, \"v_AR6_PW1um-I\": {\"duration\": 206.71, \"timestamps\": [[0, 1.03], [2.07, 6.2], [7.23, 21.7], [22.74, 103.35], [104.39, 135.39], [116.79, 136.43], [27.91, 199.47], [201.54, 206.71]], \"sentences\": [\"A man and a woman are at a parking lot as the woman is learning how to roller blade.\", \" A black screen appears with white letters.\", \"  A man with a helmet and a longbord walks ahead as he helps the girl in the roller blades get across grass.\", \"  The girls skates around in the parking lot as the man helps her move and with balance.\", \"  A man with shades on rolls around on two longboards.\", \"  White text is seen at the bottom of the screen.\", \"  The man on the longboard and the girl in the inline skates roll around in the parking lot.\", \"  The screen goes black.\"]}, \"v_cyznGwlE9hM\": {\"duration\": 233.78, \"timestamps\": [[0, 233.78], [0, 7.01], [7.01, 233.78]], \"sentences\": [\"This is a shot put and discus throw music video.\", \" First, the man spins around and throws the discus indoors.\", \" Next he is shown doing it outdoors where lots of people are watching.\"]}, \"v_m5PO3T2uGzs\": {\"duration\": 24.01, \"timestamps\": [[0, 24.01], [1.08, 9], [7.92, 18.73], [18.25, 24.01]], \"sentences\": [\"There's a little baby dressed in a purple outfit swinging on a swing in children's park with her father standing next to her.\", \" The baby laughs every time her father swings her and tickles her knees.\", \" There's a young boy in a black shirt and beige shorts right behind the baby playing and walking towards the swing next to the baby.\", \" As the father continues to swing the baby, the boy walks away from the swing.\"]}, \"v_iWSKl7vOd2s\": {\"duration\": 67.45, \"timestamps\": [[0, 5.4], [5.4, 10.12], [10.79, 23.27], [23.95, 30.02], [30.02, 52.95], [52.95, 57.67], [58.01, 67.45]], \"sentences\": [\"A group of women practice dance in a studio.\", \" A woman talks to the camera.\", \" The women are shown practicing dance in the studio again.\", \" A wall with diplomas and certificates is shown.\", \" The women are shown practicing dance in the studio once more.\", \" The exterior of the studio is shown.\", \" A black screen with white text showing contact information for the studio is shown.\"]}, \"v_KgM8_YBJbM4\": {\"duration\": 58.31, \"timestamps\": [[0, 8.45], [11.66, 36.44], [39.07, 58.31]], \"sentences\": [\"A large group of people are inside a dimly lit room.\", \" They are struggling on their recumbent bikes.\", \" They keep pushing on the pedals even though they are tired.\"]}, \"v_vc820BteGzY\": {\"duration\": 156.69, \"timestamps\": [[0, 156.69], [7.05, 27.42], [21.94, 28.99], [17.24, 53.27], [47.01, 67.38], [57.97, 75.99], [73.64, 86.18], [83.83, 97.93], [95.58, 118.3], [115.95, 156.69]], \"sentences\": [\"There are three young children standing next to a kitchen counter in their kitchen showing a baking recipe.\", \" One of the girls begins by adding two cups of flour to a large green bowl.\", \" Then the little boy adds some raw eggs to the flour.\", \" The little girl in the middle stirs the mixture in circular motion.\", \" Then she adds some melted butter to the mixture and stirs it again.\", \" Then they add some salt ans stir it again.\", \" the list of ingredients are shown on the screen.\", \" All three children wipe the baking tray and pour the batter into it.\", \" Then they stick it in the oven and bake the cake.\", \" Once the cake is ready, they put some white butter forsting on and decorate the cake with sprinkles.\"]}, \"v_rczR9C00KOM\": {\"duration\": 212.79, \"timestamps\": [[0, 25.53], [44.69, 127.67], [144.7, 212.79]], \"sentences\": [\"a man uses a scraper to remove paint from a ceiling.\", \" He then replaces it with a light brown color.\", \" He uses the spreader to smooth the paint across the ceiling.\"]}, \"v_A8dBgZCuQow\": {\"duration\": 173.06, \"timestamps\": [[0, 173.06], [20.77, 49.32], [52.78, 118.55], [119.41, 147.1], [154.02, 160.94], [167.87, 173.06]], \"sentences\": [\"A woman sitting in a room puts on makeup as a song plays.\", \"  She takes out a small mirror to help her.\", \"  She then uses various size brushes to apply the makeup to her face.\", \"  She applies eyelash makeup while using a mirror for help.\", \"  She then shows a small makeup case and applies makeup to her lips.\", \" She waves to the camera and the screen turns black.\"]}, \"v_ZJk05q3y5iM\": {\"duration\": 56.36, \"timestamps\": [[1.97, 11.83], [29.87, 33.81], [52.41, 56.36]], \"sentences\": [\"Girl paints the fingernails of another girl.\", \"  Girl dips the brush into the polish.\", \"  Girl laughs into the camera.\"]}, \"v_nEj34gf508E\": {\"duration\": 72.26, \"timestamps\": [[0, 69.01], [3.61, 9.76], [9.03, 18.07], [48.78, 67.93]], \"sentences\": [\"A man in white is doing gymnastics.\", \" He prepares to start his routine on the bars.\", \" He jumps and begins his routine.\", \" He dismounts after flipping and lands on the mat.\"]}, \"v_Qnr73D2zIjU\": {\"duration\": 62.69, \"timestamps\": [[0, 12.85], [9.72, 24.45], [22.26, 39.18], [40.75, 62.69]], \"sentences\": [\"a crowd is gathered at a rodeo stadium.\", \" a man rides a bull into the center of the stadium.\", \" the bull throws the man off.\", \" people chase the bull around the ring.\"]}, \"v_eMI2x3HFozQ\": {\"duration\": 40.98, \"timestamps\": [[0, 6.35], [6.35, 16.8], [16.8, 27.05], [27.66, 31.76], [31.97, 37.71], [38.52, 40.98]], \"sentences\": [\"A man in blue talks to a little boy as the boy prepares to arm wrestles with a muscular man as a crowd watches at an outdoor event.\", \" The boy and the man sit and the referee put his hand on the man's hand then removers it to signal the start of the race.\", \" The man and the boy arm wrestle as the boy grimaces.\", \" The man lets the boy win and jumps up pretending to be upset.\", \" The referee holds the boys hand in the air and a man hands the boy a sucker.\", \" The boy shakes the hand of his opponent.\"]}, \"v_6LLDsbc8XMM\": {\"duration\": 101.22, \"timestamps\": [[0, 3.54], [4.05, 71.36], [71.86, 81.98], [82.49, 101.22]], \"sentences\": [\"\\\"Professor Baterista e Formado sozo\\\" appears on a blue screen.\", \" People perform a form of acrobatic non-combat kick fighting while a small group of people watch.\", \" Two of them pose together for a photo followed by a copyright.\", \" A man walks and picks the petals of a flower off.\"]}, \"v_vL8s-b4eJiU\": {\"duration\": 192.29, \"timestamps\": [[0, 31.73], [41.34, 99.99], [117.29, 192.29]], \"sentences\": [\"a man is standing on a ladder holding wall paper on a wall.\", \" the man then knells down and cuts the wall paper.\", \" after the man applies the cut wall paper to the wall.\"]}, \"v_uevUOX7Wpz4\": {\"duration\": 38.35, \"timestamps\": [[0, 8.25], [8.25, 22.82], [19.75, 22.82], [22.43, 38.35]], \"sentences\": [\"A man and a woman paddle a canoe down a river with other people on canoes watching.\", \" Two other individuals paddle a canoe down the river.\", \" A cameraman rises up on the riverbank.\", \" Two new individuals paddle down the river.\"]}, \"v_30Yk_1Yc7Vk\": {\"duration\": 57.47, \"timestamps\": [[0, 57.47], [4.6, 57.47], [9.2, 57.47], [23.28, 57.47]], \"sentences\": [\"A man is sitting in a chair.\", \" A woman is standing behind him.\", \" She begins to shave his hair.\", \" The hair falls onto his shoulders.\"]}, \"v_mDaZqz7lB0o\": {\"duration\": 221.36, \"timestamps\": [[0, 54.23], [40.95, 170.44], [185.94, 221.36]], \"sentences\": [\"a man sits a piano with his hands placed on the keys.\", \" the man begins playing the piano.\", \" credits begin rolling as the man continues to play the piano.\"]}, \"v_sZRUTtoxY_s\": {\"duration\": 45.47, \"timestamps\": [[0, 4.77], [4.77, 18.64], [18.19, 28.42], [28.87, 45.47]], \"sentences\": [\"A man wearing boxing gloves walks around a heavy bag.\", \" The man begins to punch the heavy bag repeatedly.\", \" The man kicks the heavy bag repeatedly.\", \" The man resumes punching the heavy bag.\"]}, \"v_Boa880LnJ3w\": {\"duration\": 108.93, \"timestamps\": [[0, 15.79], [20.7, 51.74], [63.72, 108.93]], \"sentences\": [\"A man walks up and kneels behind a bike.\", \" He proceeds to use his tools on the bike.\", \" He removes pieces of the bike and replaces them.\"]}, \"v_j1XZ3FA8EYY\": {\"duration\": 199.34, \"timestamps\": [[0, 1.99], [1.99, 153.49], [153.49, 199.34]], \"sentences\": [\"This video teaches viewers futsal tricks and goals.\", \" There is no audio, but there is lots of movement between players and some include kicking the ball really high, or backwards into the goal.\", \" People are also shown kicking the ball between someones legs while the person is standing there to get the ball and other tricks are shown too.\"]}, \"v_JnpcJP82WLI\": {\"duration\": 64.65, \"timestamps\": [[0, 6.14], [7.11, 28.77], [28.77, 64.65]], \"sentences\": [\"A group is gathered around a track.\", \" Two men are engaged in a game of table tennis.\", \" They hit the ball back and forth.\"]}, \"v_H1bmoIihWwo\": {\"duration\": 54.1, \"timestamps\": [[0.54, 13.53], [12.17, 37.87], [35.17, 52.75]], \"sentences\": [\"A young girl is seen climbing up a ladder onto a diving board.\", \" She walks down the end while others watch her from below.\", \" She jumps off the side and climbs back up from the pool.\"]}, \"v_Keuj_3QyLq0\": {\"duration\": 8.99, \"timestamps\": [[0, 0.99], [1.3, 5.93], [6.29, 8.99]], \"sentences\": [\"A couple of action figures are positioned on a blanket.\", \" They are made to fight each other.\", \" The process is created using stop motion.\"]}, \"v_huUb8mM5fv4\": {\"duration\": 29.65, \"timestamps\": [[0, 9.64], [7.12, 20.02], [17.2, 29.06]], \"sentences\": [\"A large group of people are seen walking around a track with others watching on the side.\", \" One man then stands ready behind the group.\", \" The man runs down the track into a large sand pit.\"]}, \"v_-DpnaHTk8PA\": {\"duration\": 209.61, \"timestamps\": [[0, 53.45], [60.79, 153.01], [154.06, 209.61]], \"sentences\": [\"A group is standing together on a stage.\", \" They engage in a game of arm wrestling.\", \" They pull hard on each other's arms, trying to win.\"]}, \"v_tBFX7g605Go\": {\"duration\": 146.66, \"timestamps\": [[2.93, 145.92], [8.07, 145.92], [13.2, 145.92], [24.2, 145.92]], \"sentences\": [\"A rabbit is cleaning itself with its tongue.\", \" It is underneath a chair.\", \" It looks into the camera.\", \" It stares blankly at it.\"]}, \"v_v7OluHKECRA\": {\"duration\": 120.65, \"timestamps\": [[0, 21.11], [21.11, 39.81], [39.81, 54.9], [54.9, 120.65]], \"sentences\": [\"A blender blending a mixture in a red bowl.\", \" The chef scrapes the side of the bowl with a grey scraper.\", \" The chef then adds chocolate syrup into the mixture and  a brown powder into the mixture and blends the ingredients together.\", \" The chef adds flower to the mixture and water and needs the mixture by hand and forms round balls and uses a toothpick to form the chocolate balls.\"]}, \"v_LAicExwwM54\": {\"duration\": 212.86, \"timestamps\": [[0, 4.26], [4.26, 10.64], [10.64, 30.86], [31.93, 65.99], [65.99, 81.95], [81.95, 120.26], [121.33, 179.87], [179.87, 206.47], [206.47, 212.86]], \"sentences\": [\"We see colors stream into a bar and words on the title screen.\", \" A city and a chimney flash.\", \" We see men working on a roof and a title bar on the bottom of the screen.\", \" A man grabs a tool and removes shingles from a roof by tapping a hammer on the tool.\", \" The man puts a metal tool on a shingle and shows a nail.\", \" The man hammers the nails into the metal piece on the shingle and cuts the metal.\", \" The man lifts the metal piece and taps nails around it.\", \" We see the man place a shingle in the empty spot where he removed one.\", \" The man speaks to the camera and we see the ending title screen.\"]}, \"v_kWmf0_XSfBU\": {\"duration\": 39.43, \"timestamps\": [[0, 7.29], [6.51, 25.23], [22.28, 38.25]], \"sentences\": [\"A woman is seen standing behind an ironing board fixing a shirt.\", \" She speaks to the camera and begins ironing the shirt.\", \" She places it back down and folds up the ironing fabric.\"]}, \"v_s0N0PzdwVik\": {\"duration\": 42.7, \"timestamps\": [[0, 3.42], [4.06, 21.35], [23.27, 42.7]], \"sentences\": [\"A man is playing a set of bagpipes on a stage.\", \" He walks back and forth while people dance to the music.\", \" He continues playing for the crowd exuberantly.\"]}, \"v_Rho3u46ZIEE\": {\"duration\": 40.59, \"timestamps\": [[0, 40.59], [9.13, 40.59], [0, 40.39]], \"sentences\": [\"woman plays the accordion in an open field in front of bushes.\", \" man is standing next to the woman and is watching her.\", \" a man and a woman are standing in a sunny day playing accordion.\"]}, \"v_AcLZk6JyXUM\": {\"duration\": 225.75, \"timestamps\": [[0, 48.54], [46.28, 156.89], [158.02, 225.75]], \"sentences\": [\"a choir stands before a congregation.\", \" a choir director stands in front of the choir and waves his hands.\", \" the choir begins to sing.\"]}, \"v_M0sa3xWhFGo\": {\"duration\": 230.02, \"timestamps\": [[0, 32.2], [42.55, 139.16], [157.56, 224.27]], \"sentences\": [\"A group of cheerleaders are seen yelling to an audience.\", \" They begin performing a routine by lifting one another and jumping around.\", \" The girls continue with their cheer leading routine and ends with them walking off stage and hugging.\"]}, \"v_CMTiL1ctmDs\": {\"duration\": 46.44, \"timestamps\": [[0, 6.73], [6.73, 17.88], [17.88, 26.94], [26.94, 46.44]], \"sentences\": [\"A young man wearing a hat, shirt and jeans is standing in a kitchen and sucking on a hookah.\", \"The man removes the hookah from his mouth and blows out rings of smoke.\", \"The man sucks on the hookah again, blows out smoke, sucks it back in and this time just blows out smoke.\", \"The man puts the hookah back in his mouth to suck in more smoke, then blows out another string of smoke rings, then points to the camera and starts talking.\"]}, \"v_sR3_5j8pUdI\": {\"duration\": 84.48, \"timestamps\": [[0, 18.58], [13.09, 38.44], [31.26, 60.4], [53.22, 84.48]], \"sentences\": [\"a woman is then sitting on a rowing machine pulling the cable.\", \" different angles of the rowing machine being used is shown.\", \" the woman change the resistance and the angle of the rowing machine.\", \" the woman continues using the machine.\"]}, \"v_wONwHYy59Tc\": {\"duration\": 191.12, \"timestamps\": [[0, 35.36], [35.36, 97.47], [97.47, 139.52], [139.52, 191.12]], \"sentences\": [\"A beautiful girl with stunning black curls is sitting down talking by herself.\", \" She pulls up a hair dryer and she begins to talk about it, then picking up a bottle of shampoo and lotion.\", \" She explains the process of how to manage such beautiful hair on her own, using the blow dryer to show.\", \" She continues to talk ever so gracefully on and on about the hair products.\"]}, \"v_cdpPn-7R3GQ\": {\"duration\": 237.17000000000002, \"timestamps\": [[0, 8.3], [24.9, 119.77], [145.86, 237.17]], \"sentences\": [\"A cue hits a stack of pool balls.\", \" Two men are shown playing a game of pool and talking.\", \" One man is clearly shaming and beating the other man at the game.\"]}, \"v_zmmiX3_TJ84\": {\"duration\": 210.61, \"timestamps\": [[4.21, 202.18], [83.19, 87.4], [209.55, 210.61]], \"sentences\": [\"People are standing in a room dancing.\", \" They turn to the side and kick their leg up.\", \" A picture of a man and woman are shown on the screen.\"]}, \"v_iUVz4A5oblQ\": {\"duration\": 203.22, \"timestamps\": [[0, 33.53], [42.68, 160.55], [141.24, 200.17]], \"sentences\": [\"A person is seen pointing to the floor and begins laying down carpet.\", \" The person pushes carpet all down a stair and cuts along the side.\", \" They continue to lay down carpet and drill nails into the sides.\"]}, \"v_skIP_U4EYDQ\": {\"duration\": 17.86, \"timestamps\": [[0, 3.84], [4.55, 11.7], [10.18, 17.86]], \"sentences\": [\"a little girl is kneeling in sand.\", \" the girl scoops some sand.\", \" the girl puts the sand down and makes a castle.\"]}, \"v_HMIv7qpDmH0\": {\"duration\": 37.63, \"timestamps\": [[0, 2.63], [5.64, 26.53], [27.09, 37.63]], \"sentences\": [\"A woman is standing close to the camera.\", \" She is holding a rubik's cube in her hands.\", \" She tries to solve the puzzle as quickly as possible.\"]}, \"v_N9xp9VbpklQ\": {\"duration\": 23.78, \"timestamps\": [[0.12, 23.78], [9.15, 23.78], [0, 23.78]], \"sentences\": [\"kid is walking ina  green grassy croquet field.\", \" woman is standing in front of the kid holding a pole.\", \" a crocket field is in the middle of street in a city.\"]}, \"v_vdq_xoRyxCU\": {\"duration\": 70.75, \"timestamps\": [[0, 11.32], [5.66, 18.04], [9.2, 57.66], [38.21, 70.75]], \"sentences\": [\"Several people go up a snowy mountain.\", \" They get on tubes at the top.\", \" They ride together down the mountain.\", \" They cross the finish line.\"]}, \"v_kj8L5yu-fGs\": {\"duration\": 229.48, \"timestamps\": [[0, 37.86], [37.86, 125.07], [125.07, 206.53], [206.53, 229.48]], \"sentences\": [\"A woman at an outdoor stand is cutting up some conch fish on the cutting board.\", \" She then begins to cut up some vegetables on the same cutting board and puts them into a bowl with the conch.\", \" She seasons up the mixture with several different citruses and some salt and pepper.\", \" She puts it all into a cup and serves it to the customer.\"]}, \"v_7H4-gDM3r0w\": {\"duration\": 117.00999999999999, \"timestamps\": [[0.59, 5.85], [5.27, 7.02], [7.02, 15.21], [15.8, 22.82], [23.4, 38.03], [38.03, 50.9], [50.9, 56.75], [56.16, 77.81], [77.81, 81.32], [81.32, 96.53], [96.53, 103.55], [103.55, 106.48], [107.65, 115.84]], \"sentences\": [\"Several scenes of the inside of a bar are shown.\", \" An individual talks to the camera.\", \" More scenes of the inside and exterior of the bar are shown.\", \" A splash screen with a company logo and a map are shown.\", \" Two individuals, one seated and one standing, talk to each other at a bar.\", \" The standing individual shows he other one how to make a drink.\", \" The second individual tastes the drink.\", \" The first individual shows the other individual how to make a different drink.\", \" The second individual tastes this new drink.\", \" The first individual shows the other individual how to make a third drink.\", \" The second individual tastes this third drink.\", \" The two individuals shake hands.\", \" A splash screen with a company logo and a map are shown again, briefly interspersed with the two individuals talking.\"]}, \"v_OYAyb_Ire24\": {\"duration\": 180.09, \"timestamps\": [[0, 16.21], [25.21, 86.45], [91.85, 180.09]], \"sentences\": [\"A girl is shown inside her bedroom.\", \" She applies foundation to her skin.\", \" She then applies lipstick and eye makeup.\"]}, \"v_fh68-PXZ9Oo\": {\"duration\": 93.35, \"timestamps\": [[0, 26.14], [20.54, 65.34], [54.61, 90.08]], \"sentences\": [\"A man is seen throwing several frisbee to a dog in a back yard.\", \" The man and dog perform tricks with one another back and fourth.\", \" The man continues to perform tricks with the dog and frisbee.\"]}, \"v_WFL8DhccHr0\": {\"duration\": 237.32999999999998, \"timestamps\": [[5.93, 18.99], [35.6, 62.89], [62.89, 86.63], [110.36, 153.08], [154.27, 169.69], [169.69, 178], [187.49, 207.67]], \"sentences\": [\"Ingredients are shown on a counter.\", \" A person mixes the ingredients together in a bowl.\", \" They pour the batter into bowls and add dye to them.\", \" They grease large pans and pour the different colored batter into them.\", \" They put the pans into an oven.\", \" They set the timer on the oven.\", \" They frost the cake with blue frosting and add sprinkles.\"]}, \"v_7H5oYHs7EJw\": {\"duration\": 146.64, \"timestamps\": [[0, 16.13], [34.46, 107.78], [118.04, 146.64]], \"sentences\": [\"A man is skiing down a snow covered hill.\", \" He is holding onto the camera and speeding down the snow quickly.\", \" He is completely decked out in protective ski gear.\"]}, \"v_KhAtzEJxz9M\": {\"duration\": 203.59, \"timestamps\": [[0, 29.52], [33.59, 109.94], [119.1, 203.59]], \"sentences\": [\"a group of women are moving back and forth in unison.\", \" They change positions, marching forward.\", \" Then then continue doing several aerobic dance moves together.\"]}, \"v_jVC3DZdphYM\": {\"duration\": 167.3, \"timestamps\": [[0, 81.14], [81.98, 104.56], [105.4, 139.7], [141.37, 167.3]], \"sentences\": [\"A person plays the harmonica holding it with both hands inside a room.\", \" Then, the person stops playing and talks.\", \" After, the person continues playing while marking the compass of the music with his hands.\", \" Next, the person stops playing and talks.\"]}, \"v_SMNXIkCGh_0\": {\"duration\": 40.13, \"timestamps\": [[0, 11.03], [11.03, 12.64], [22.87, 40.13]], \"sentences\": [\"A person is rafting in choppy water.\", \" He turns the camera around and gives a thumbs up.\", \" There are two people in front of him on tubes.\"]}, \"v_Dydb923dXss\": {\"duration\": 148.96, \"timestamps\": [[0, 25.32], [34.26, 105.01], [107.25, 148.96]], \"sentences\": [\"A man is engaged in scuba diving.\", \" He explores the fish and coral on the floor.\", \" He swims through a school of fish, observing the wildlife.\"]}, \"v_OMRu1rPRBHo\": {\"duration\": 238.4, \"timestamps\": [[0, 38.14], [46.49, 158.54], [168.07, 238.4]], \"sentences\": [\"A man is talking to another man in a parking lot.\", \" They take tubes to the top of a hill.\", \" They then tube down the snowy hill.\"]}, \"v_0ZHZ1ZqmT7s\": {\"duration\": 10.5, \"timestamps\": [[0, 10.5], [0.05, 10.5], [0, 10.44]], \"sentences\": [\"man is combing a kid's hair in a hair saloon.\", \" man is standing behind anoher man holding an acoustic guitar and playing a song.\", \" litle kid is sitting on a chair with the wet hair getting a hair style.\"]}, \"v_ywSeEtroEXo\": {\"duration\": 207.36, \"timestamps\": [[0, 5.18], [5.18, 8.29], [10.37, 17.63], [18.66, 207.36]], \"sentences\": [\"A boy is skateboarding down the street.\", \" He falls at the intersection and gets hit by a car.\", \" Two people are skateboarding and one spins and runs into the other.\", \" Several different incidents of skateboarding accidents are shown in succession.\"]}, \"v_biyf6Q-xF0M\": {\"duration\": 166.32999999999998, \"timestamps\": [[0, 33.27], [38.25, 88.15], [87.32, 166.33]], \"sentences\": [\"a man is standing over a row of pumpkins.\", \" the man then unloads more pumpkins from a truck.\", \" the  man then carves the pumpkins and puts them on display.\"]}, \"v_Ff8QLpH5T1c\": {\"duration\": 217.86, \"timestamps\": [[0, 40.3], [47.93, 148.15], [150.33, 217.86]], \"sentences\": [\"A man is canoeing through a long river.\", \" He uses a paddle to navigate the waters.\", \" He pulls the canoe out of the water.\"]}, \"v_KRES3eBM2l4\": {\"duration\": 40.71, \"timestamps\": [[0, 40.71], [1.63, 21.37], [6.51, 13.43], [12.62, 20.15], [22.18, 40.71]], \"sentences\": [\"There's a man in a white shirt and black hat playing with a Frisbee disc with his white dog on a large yard.\", \" The man throws the disc at a distance and the dogs goes running to catch it in hits mouth.\", \" Then the dog goes back to the man to return the disc.\", \" The man throws the disc again at a distance for the dog to run and fetch it.\", \" There's a colorful rainbow in the bright blue and clear sky.\"]}, \"v_Fok7z0mLNbU\": {\"duration\": 112.7, \"timestamps\": [[0, 62.55], [22.54, 85.09], [72.13, 112.7]], \"sentences\": [\"The young woman is dancing ballet and doing tumbling and splits in front of the judges.\", \" A young girl in white stocking is dancing gracefully in front of the judges and the girl with number 252 on her chest perform her ballet dance.\", \" A man in blue shirt and black vest is instructing the young girls.\"]}, \"v_fO8b3U8fuGo\": {\"duration\": 18.07, \"timestamps\": [[0, 15.09], [4.34, 11.29], [9.21, 17.61]], \"sentences\": [\"A woman is seen riding around on a horse and smiling to the camera.\", \" She moves forward with the horse.\", \" She turns around and walks back to the camera.\"]}, \"v_6f1HnAlpphA\": {\"duration\": 31.6, \"timestamps\": [[0, 4.58], [4.58, 18.33], [18.65, 31.6]], \"sentences\": [\"A cowboy is let loose from a gate while riding a horse.\", \" He ropes a calf to the ground.\", \" He jumps off and ties the calf up.\"]}, \"v_pbz8c7TAlDs\": {\"duration\": 45.5, \"timestamps\": [[0, 11.6], [12.06, 32.08], [32.08, 44.59]], \"sentences\": [\"A person is seen riding in a tube with a small child.\", \" The man and child ride down a river over waterfall.\", \" The tube flips and the man grabs the boy.\"]}, \"v_u8ykXBc2Efs\": {\"duration\": 104.85, \"timestamps\": [[0, 104.85], [0, 43.51], [35.65, 43.51], [84.93, 104.85]], \"sentences\": [\"A boy and girl are standing in front of a kitchen sink.\", \" They are doing the dishes in the sink.\", \" A woman walks behind them and open opens the refrigerator.\", \" She then starts helping them rinse the dishes.\"]}, \"v_R7iFa9OpoTY\": {\"duration\": 103.72, \"timestamps\": [[0, 32.67], [32.15, 75.2], [75.2, 103.72]], \"sentences\": [\"A young woman is standing in the middle of a gym with two dumb bells in her hands and a microphone attached to her head.\", \"When the lady finishes talking,she begins riding the elliptical before doing a set of lifting dumb bells.\", \"She then returns on the bike and continues instructing the glass as the other women in the classroom mimic her behavior.\"]}, \"v_64UBH371Jj8\": {\"duration\": 54.06, \"timestamps\": [[0, 54.06], [5.95, 46.49], [45.68, 54.06]], \"sentences\": [\"A woman is standing at a sink.\", \" She is scrubbing a pan in the sink.\", \" She turns the faucet on and washes off the pan.\"]}, \"v_sRol1BJ9EUk\": {\"duration\": 13.54, \"timestamps\": [[0, 13.54], [0, 8.6], [8.87, 13.54]], \"sentences\": [\"A man in a black shirt is in a gym.\", \" He is dribbling a ball around some blue chairs.\", \" He runs up to the basketball hoop and makes a shot.\"]}, \"v_MR0vMF_5hp8\": {\"duration\": 118.61, \"timestamps\": [[0, 118.61], [4.74, 33.21], [33.21, 118.61]], \"sentences\": [\"A person scrapes ice off of the windshield of a car with a windshield scraper, while the person in the car tapes them and sporadically talks to the camera.\", \"  A person is standing outside of a car scraping the windshield of ice with a a glass ice scraper.\", \"  The person makes progress removing ice form both sides of the windshield as the person inside of the car turns the camera on themselves as they talk into the camera.\"]}, \"v_OuEQLjwBIPI\": {\"duration\": 34.32, \"timestamps\": [[0.17, 9.44], [9.27, 23.34], [21.79, 32.26]], \"sentences\": [\"A group of men are seen standing around a field speaking to one another.\", \" One man pitches a ball and another hit it.\", \" One man jumps up and down while holding the bat and walking away.\"]}, \"v_e6mpdQ3BFhA\": {\"duration\": 175.27, \"timestamps\": [[0, 27.17], [33.3, 143.72], [147.22, 175.27]], \"sentences\": [\"A woman is riding on an elliptical machine.\", \" She uses the pedals and handle bars to steer as she goes.\", \" She continues riding before an ad for the trainer appears.\"]}, \"v_t2DdSm_MGXo\": {\"duration\": 88.63, \"timestamps\": [[3.99, 23.93], [24.37, 33.68], [34.57, 48.75], [49.19, 68.25], [68.25, 85.53]], \"sentences\": [\"Materials to clean a bathroom sink is displayed in the screen.\", \" Then a man shows the first step to clean a bathroom sink is to fill water and then drain it.\", \" The second step is to put gloves, and the third step is to wet a cloth and put abrasive power to rub the bathroom sink.\", \" The four step is to put abrasive powder on a sponge to clean thoroughly the bathroom sink, then the fifth step is to mix vinegar with water.\", \" In the sixth step, the person puts the vinegar on a sponge, and then cleans the bathroom sink and the faucet.\"]}, \"v_Ttx3kt2fW1o\": {\"duration\": 39.24, \"timestamps\": [[0.39, 29.43], [6.67, 26.49], [20.8, 38.65]], \"sentences\": [\"A large group of people are seen moving around on exercise bikes.\", \" The group move together while the camera pans around.\", \" The group continues riding the bikes together.\"]}, \"v_b4b6YkxsHk4\": {\"duration\": 7.94, \"timestamps\": [[0, 1.55], [1.43, 3.57], [3.57, 5.88], [6, 7.94]], \"sentences\": [\"A young lady in shorts pushes a black shuffleboard puck across a cement shuffleboard court as a lady in a striped shirt watches her.\", \" The lady taps the puck with her stick before pushing it hard and pushing the puck across the court.\", \" The camera follows the pucks which stops short and teeters before resting.\", \" The camera pans to the lady who covers her face with her hand and walks towards the start of the board.\"]}, \"v_sARnRvNdl-Y\": {\"duration\": 126.22, \"timestamps\": [[0, 2.52], [2.52, 118.02], [118.02, 126.22]], \"sentences\": [\"A seated man wearing headphones holds a guitar.\", \" The man plays the guitar.\", \" The man stops playing the guitar and looks at the camera.\"]}, \"v_iJqLgrShN-w\": {\"duration\": 211.05, \"timestamps\": [[0, 125.57], [125.57, 156.17], [156.17, 211.05]], \"sentences\": [\"The person is skiing in extremely cold weather using one hand as he holds the selfie stick recording himself with the other.\", \" Soon, someone else comes along and starts to watch, but eventually does the same thing as he guides his way through the snowy paths.\", \" This person records himself and another person skiing in the snow.\"]}, \"v_mUyMYnGXKgk\": {\"duration\": 55.75, \"timestamps\": [[7.25, 12.82], [12.82, 32.06], [32.61, 49.06]], \"sentences\": [\"A coach explains to a group of teen basketball players in a gym.\", \" The teens are aligned in two lines, then they pass the ball each other to threw the ball to the basket.\", \" The coach gives instructions to the players, then the teens continue practicing.\"]}, \"v_jpclX7wgcZU\": {\"duration\": 32.21, \"timestamps\": [[0, 4.99], [4.99, 7.25], [6.12, 8.53]], \"sentences\": [\"A man is sitting in a tube drinking a beer.\", \" A blue raft is next to him holding a red cooler.\", \" Another person is sitting on a tube next to him.\"]}, \"v__uOfIm1tFcI\": {\"duration\": 133.56, \"timestamps\": [[0.67, 130.22], [0.67, 43.41], [43.41, 55.43], [56.1, 125.55]], \"sentences\": [\"A boy is seen tumbling backwards and forwards in different locations and on different surfaces including grass, bounce tarps and mattresses.\", \"  A boy is seen tumbling back and forward on grass lawns in different locations.\", \"  The boy is then seen doing similar gymnastic moves on a mattress outdoors.\", \" The boy is then seen flipping on bounce tarps outdoors before returning to flipping on grass.\"]}, \"v_9UpVdljXQ4E\": {\"duration\": 46.46, \"timestamps\": [[0, 29.04], [29.04, 46.46], [0, 9.99]], \"sentences\": [\"man is sanding in the middle of street skating.\", \" another man is in street with him and are skating together.\", \" a couple is walking inn the middle of street behind the skater.\"]}, \"v_8xvoAyY70I8\": {\"duration\": 34.58, \"timestamps\": [[0, 30.08], [19.02, 34.58], [0, 34.58]], \"sentences\": [\"people are in the woods setting a campfire.\", \"kids are wasing the dishes on a small waterjet.\", \" kids are standing in camp washing dishes and setting the camp.\"]}, \"v_EiXW33yuAcw\": {\"duration\": 52.5, \"timestamps\": [[0, 4.2], [8.66, 29.66], [38.06, 52.5]], \"sentences\": [\"A man is standing in front of a horse.\", \" He is holding a cup up to the horse's mouth.\", \" The horse is eating the feed while dogs pick up the mess that drops.\"]}, \"v_X6CpfuJLx0U\": {\"duration\": 100.89, \"timestamps\": [[0, 5.55], [5.55, 95.34], [15.13, 20.68], [62.05, 85.76], [95.34, 100.89]], \"sentences\": [\"We approach a man on a sidewalk.\", \" We see a man playing the accordion on the sidewalk as people walk past.\", \" We see the name of the player on the screen.\", \" A lady walks out of store and to an old man on a bench and back to the store.\", \" The man finishes and smiles and talks.\"]}, \"v_hW6aZXhKl9M\": {\"duration\": 196.93, \"timestamps\": [[0, 196.93], [137.85, 144.74], [148.68, 157.54]], \"sentences\": [\"Some people are recording themselves as they ride on horseback through the water on a beach.\", \" At one point they see a school of fishes in the water.\", \" The person recording also shows the view from the water to the beachfront.\"]}, \"v_xIld1Pt1QGs\": {\"duration\": 150.35, \"timestamps\": [[0, 13.53], [20.3, 99.23], [81.19, 144.34]], \"sentences\": [\"A man is seen lifting a girl onto a camel and showing a close up of the camel.\", \" Another child sits up on the camel and shows 3 people riding on top while the man moves the camel.\", \" The group walk past a lot of people on the street while laughing and climbing off in the end.\"]}, \"v_Cx3QGeQu7xM\": {\"duration\": 113.85, \"timestamps\": [[1.14, 6.26], [9.68, 105.88], [11.38, 106.45], [107.59, 113.85]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy is tossing a freebie outsides in a field.\", \" A dog is fetching the freebie.\", \" The credits of the video are shown.\"]}, \"v_YeikEC85CGk\": {\"duration\": 206.94, \"timestamps\": [[0, 38.28], [71.39, 165.55], [166.58, 206.94]], \"sentences\": [\"Several kids are running around on a sandy beach.\", \" They are chasing a ball as they kick it to each other.\", \" Someone kicks the ball a far distance, ending the game.\"]}, \"v_vw065HaGq3I\": {\"duration\": 44.21, \"timestamps\": [[0, 11.72], [11.94, 23.43], [23.87, 42]], \"sentences\": [\"A woman with a very long black hair is combing her hair in front of the mirror.\", \" She stands up from a orange chair showing her very long hair and put something on the window.\", \"Another person starts to fix, comb and braid her very long hair.\"]}, \"v_CBoitanoH4s\": {\"duration\": 226.49, \"timestamps\": [[0, 84.93], [69.08, 165.34], [168.73, 219.69]], \"sentences\": [\"A close up of the ground is seen with a person laying out sticks.\", \" The person lays out more objects together in a pile.\", \" The person then lights a match to the pile and creates a fire.\"]}, \"v_G1hRHCymRGE\": {\"duration\": 93.21000000000001, \"timestamps\": [[4.19, 65.71], [4.19, 90.87], [17.24, 93.21]], \"sentences\": [\"litle kid is standing in frnt of a balance beam and make a jump to do gymnastics on top.\", \" in the background people are standing watching the balance beam.\", \" woman is doing gymnastics in a balance beam in the middle of stage.\"]}, \"v_J__1J4MmH4w\": {\"duration\": 112.52000000000001, \"timestamps\": [[0, 6.75], [6.75, 17.44], [17.44, 66.95], [17.44, 112.52]], \"sentences\": [\"men are standing under a tent receiving a man.\", \" man is talking to the camera with a tv behind him.\", \" men are playing beer pong under and drinking beers.\", \" people in the background are talking or drinking beer.\"]}, \"v_HCntSYltlmA\": {\"duration\": 215.04, \"timestamps\": [[0, 10.75], [10.75, 25.8], [25.8, 215.04]], \"sentences\": [\"First two men are shown sitting in the car talking to the camera.\", \" Then they stop the car to zoom the camera in on deer and birds walking in the grass.\", \" 45 yards appears on the screen briefly and then a deer runs when someone shoots an arrow towards it and they replay the incident once again showing who did it and when they've killed one, a man goes near pulling the antlers and smiling.\"]}, \"v_tOVv0cAyjcg\": {\"duration\": 185.64, \"timestamps\": [[0, 31.56], [34.34, 83.54], [87.25, 185.64]], \"sentences\": [\"A woman is shown combing her hair into sections with a giant blue comb.\", \" She creates sections and makes a pony tail with a jeweled holder.\", \" She then combs the front, and uses a level to cut bangs into her hair.\"]}, \"v_tm_CL7A0W4M\": {\"duration\": 117.33, \"timestamps\": [[0, 13.49], [17.01, 87.41], [95.62, 117.33]], \"sentences\": [\"a woman walks onto a dance floor with a man.\", \" The couple start dancing while a small gathering watches.\", \" They turn and twirl together as they dance.\"]}, \"v_cTioh2vzxGE\": {\"duration\": 108.03999999999999, \"timestamps\": [[0, 14.59], [25.39, 79.95], [80.49, 108.04]], \"sentences\": [\"A man is seated on an ornate couch.\", \" He is playing a harmonica in his hand.\", \" A person gets in the way as he continues to play.\"]}, \"v_6g80a1NnftU\": {\"duration\": 128.43, \"timestamps\": [[0, 2.57], [2.57, 66.14], [66.78, 118.8], [118.8, 128.43]], \"sentences\": [\"A person is washing their hands as the words \\\"Tutorial: How to Wash Your Hands\\\" appears on screen.\", \" A continuous scroll of instructions crawls across the bottom of the screen.\", \" Someone washing their hands improperly is shown with the words \\\"How Not To Wash Your Hands :-(\\\".\", \"  Credits roll after the scene ends.\"]}, \"v_MVUqd8iVUEk\": {\"duration\": 42.77, \"timestamps\": [[0, 7.06], [6.63, 40.63], [40.63, 42.77]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He does a gymnastics routine on the balance beam.\", \" He dismounts and lands on a mat.\"]}, \"v_rWQz-EwA4EA\": {\"duration\": 9.15, \"timestamps\": [[0, 9.15], [0.41, 9.15], [0.14, 9.15]], \"sentences\": [\"A man is standing in a room.\", \" He is throwing putty onto a wall in front of him.\", \" He is holding a board with putty on it.\"]}, \"v_8C1EFngZC3Q\": {\"duration\": 57.24, \"timestamps\": [[0, 57.24], [0, 17.46], [17.46, 57.24], [52.37, 57.24]], \"sentences\": [\"A man is in a studio doing step aerobics along to music on a step block.\", \"  He does a routine stepping on the block corners.\", \"  He then skips along with alternating feet across the block.\", \"  People are coming down the stairs behind him.\"]}, \"v_Zv78Or7fW5U\": {\"duration\": 50.85, \"timestamps\": [[0, 11.44], [10.93, 34.33], [29.75, 48.56]], \"sentences\": [\"A woman is seen standing ready before a track.\", \" She jumps into a large sand pit when a person raises a flag.\", \" Her run is shown again several more times.\"]}, \"v_TqcoukXhXeA\": {\"duration\": 176.52, \"timestamps\": [[0, 176.52], [5.3, 176.52], [21.18, 176.52], [91.79, 176.52]], \"sentences\": [\"Two girls are standing outside a building.\", \" They are holding strings going into the air.\", \" They are flying kites in the sky.\", \" Another kid is shown flying a kite.\"]}, \"v_rKtktLDSOpA\": {\"duration\": 128.52, \"timestamps\": [[0, 23.78], [21.21, 102.18], [64.26, 128.52]], \"sentences\": [\"The camera is blurry then focuses on people playing polo.\", \"  Two teams play against each other.\", \"  A woman video records the proceedings.\"]}, \"v_6ChRD-1NwSg\": {\"duration\": 107.50999999999999, \"timestamps\": [[0, 4.84], [5.38, 17.74], [18.28, 61.28], [60.74, 107.51]], \"sentences\": [\"The intro is a blue background with the Bissell logo and asks \\\"Is it okay to use steam on hardwood floors?\\\".\", \" A woman answers \\\"yes\\\" and is shown steaming a hardwood floor, she then explains why it is okay while standing in front of a counter and cabinet.\", \" The steamer is shown again steaming the wood floor and then the woman again, and she shows different aspects of the steamer being demonstrated.\", \" She explains and demonstrates how to tell if your floor is sealed, and wraps up her explanation, then we see the logo again at the end.\"]}, \"v_dUzqM38vwPI\": {\"duration\": 193.79, \"timestamps\": [[0, 193.79], [12.6, 59.11], [28.1, 130.81], [73.64, 137.59], [97.87, 145.35], [134.69, 140.5], [155.04, 193.79]], \"sentences\": [\"There's a man dressed in blue winter gear standing on the slopes of a snowy mountain with a snowboard in his hands, talking about his snowboarding experience.\", \" There are some other people standing in the snow next to a car that has a snowboard tied to its back.\", \" The man shares his experience wearing a red jacket as he gets on the snowboard that is tied behind the black car.\", \" The car drives ahead with the man on the snowboard behind while he tightly holds onto the rope that is pulling the board.\", \" He continues going fast on the snowboard behind the car till he comes to a stop.\", \" He then gets off of his snowboard and gives a high five to the driver of the black car.\", \" The man on the snowboard is excited about his experience snowboarding behind a car as he shares it with everyone.\"]}, \"v_ew7XlNRrKyM\": {\"duration\": 16.37, \"timestamps\": [[0, 16.37], [0, 3.68], [14.49, 15.88], [14.9, 16.37]], \"sentences\": [\"A number of individuals play field hockey on a field.\", \" A man dressed in yellow gestures left and right with his arms.\", \" The camera pans to capture a man in black walking along the field.\", \" The man in yellow gestures again.\"]}, \"v_9wRQsxVFwkE\": {\"duration\": 56.15, \"timestamps\": [[0, 21.62], [15.72, 40.71], [32.28, 55.58]], \"sentences\": [\"A young man is seen pushing a lawn mower and smiling to the camera.\", \" The man looks over his shoulder and walks back and fourth.\", \" He walks past one more time with the mower.\"]}, \"v_PLnfT1PoVHw\": {\"duration\": 112.69, \"timestamps\": [[0, 14.09], [16.9, 72.68], [75.5, 112.69]], \"sentences\": [\"Two young men are sitting inside a garage.\", \" One is applying wax to the other boy's leg.\", \" They rip off the wax, removing the hair from his leg.\"]}, \"v_tScqYRQ7zyo\": {\"duration\": 16.21, \"timestamps\": [[0.41, 3], [3.32, 8.75], [9.48, 15.64]], \"sentences\": [\"A woman is seen looking into a mirror.\", \" She begins putting lip stick on.\", \" She closes the mirror and looks down.\"]}, \"v_5GiIqXY__74\": {\"duration\": 228.95, \"timestamps\": [[0, 4.58], [4.58, 174], [175.15, 204.91], [204.91, 228.95]], \"sentences\": [\"\\\"The Bowlers Company\\\" logo appears on screen.\", \" A graphic is shown on screen introducing a bowler using various balls.\", \" The path of the balls is illustrated.\", \" A video subscription link is shown followed by credits and logo.\"]}, \"v_ak5mpw8komA\": {\"duration\": 78.35, \"timestamps\": [[4.7, 11.75], [10.97, 29.38], [29.38, 54.84], [55.62, 78.35]], \"sentences\": [\"A cat pulls a dog on a leash.\", \" The dog follows the cat pulling it on the leash.\", \" The cat pulls the dog up stairs on the leash.\", \" White and yellow text on a green screen is shown.\"]}, \"v_VaT3qsoHPQ8\": {\"duration\": 159.2, \"timestamps\": [[0, 10.35], [11.14, 89.15], [88.35, 106.66], [117.81, 121.79], [120.99, 128.15]], \"sentences\": [\"A person picks up a cookie and holds it into a glass of milk.\", \" They mix ingredients into a large clear bowl.\", \" They add chocolate chunks to the dough.\", \" They put the dough into balls on a cookie sheet.\", \" They put the cookie sheet into the oven.\"]}, \"v_8gUKEh27AFM\": {\"duration\": 25.75, \"timestamps\": [[0, 24.08], [1.03, 24.08], [2.58, 24.08], [11.2, 24.08]], \"sentences\": [\"A man stands behind a cage.\", \" He is standing on a small circle.\", \" He has a ball on a rope.\", \" He then spins and throws the ball.\"]}, \"v_mf6UsZuW9Nw\": {\"duration\": 63.41, \"timestamps\": [[0, 11.1], [11.1, 28.85], [28.54, 47.56], [47.56, 63.41]], \"sentences\": [\"A woman in a purple blouse is sitting at her desk speaking to the camera, she seems to be a news anchor.\", \" Then they go to the pool where you see kids and families enjoying a nice hot day by the pool.\", \" A father makes sure to rub down his sun in sunscreen really well.\", \" Then the news anchor returns and talks a little more about it.\"]}, \"v_4_wfCFTnExI\": {\"duration\": 177.7, \"timestamps\": [[0, 89.74], [33.76, 113.73], [113.73, 173.26]], \"sentences\": [\"A small group of people are seen playing volleyball on a sandy field.\", \" The people hit the ball back and fourth to one another while the camera captures their movements.\", \" They continue hitting the ball back and fourth as the sun sets.\"]}, \"v_vvvjTjsXbzE\": {\"duration\": 156.32999999999998, \"timestamps\": [[0, 156.33], [6.25, 50.03], [64.1, 84.42], [85.2, 111.78], [114.12, 152.42]], \"sentences\": [\"A lady stands behind a bar speaking as she demonstrates how much liquid is in a shot tool .\", \" She show us  shot glass tool and pours a shot off each side in a glass then into a bowl.\", \" She talks then pours two shots into the bowl.\", \" She pours the same  shot in a shot glass, then the tool and into a bowl.\", \" She pours the same shot into the tool, then a glass of ice then the bowl.\"]}, \"v_IqXaLlFSWwc\": {\"duration\": 13.35, \"timestamps\": [[0, 13.15], [0, 10.55], [10.68, 13.15]], \"sentences\": [\"A young man performs a high jump over a raised white pole and onto a red mat on an outdoor sports field at night.\", \"  A young man stands, at night, in shorts and does brief stretches before getting a running start and running towards a raised bar.\", \"  The man hurls himself in the air and jumps over the raised pole backwards after which he lands on a thick red gym mat on the other side.\"]}, \"v__Zq8ugolzlA\": {\"duration\": 140.9, \"timestamps\": [[0, 15.5], [23.25, 88.06], [96.52, 140.9]], \"sentences\": [\"A couple of men are talking inside a gym.\", \" They are demonstrating how to lift weights.\", \" They lift several weights, showing the techniques as they go.\"]}, \"v_eYgXvnnlPQA\": {\"duration\": 140.99, \"timestamps\": [[0, 16.21], [16.21, 121.25], [121.25, 140.99]], \"sentences\": [\"An introduction comes onto the screen for a video about rock climbing and a man introduces what will happen in the video.\", \" A men in a blue shirt is shown climbing all the way to the top of a rock.\", \" The video ends with a final shot of the rock climber and his dog as well as the closing credits.\"]}, \"v_DfOiHMcrCbs\": {\"duration\": 81.22, \"timestamps\": [[0, 14.21], [15.03, 56.04], [48.33, 79.19]], \"sentences\": [\"A man is seen speaking to the camera and shows people smoking.\", \" Several packs of cigarettes are shown with more people smoking.\", \" A man ends by holding up a pack and speaking to the camera.\"]}, \"v_F30odTEdsxo\": {\"duration\": 41.52, \"timestamps\": [[0, 41.52], [6.23, 41.52], [40.27, 41.52]], \"sentences\": [\"People are playing cards around a table.\", \" People are standing up behind them.\", \" A man stands up from the table.\"]}, \"v_LoBjzA2z2Ls\": {\"duration\": 229.53, \"timestamps\": [[0, 64.27], [65.42, 175.59], [161.82, 221.5]], \"sentences\": [\"A close up of a salad is shown with a spoon mixing it around.\", \" Several ingredients are shown being put into a bowl and as well as cut up and wrap put on top.\", \" The woman cooks the food as and mixes it together with the salad and stirs it up.\"]}, \"v_hYRNSJwhVPw\": {\"duration\": 234.57999999999998, \"timestamps\": [[0, 86.8], [70.37, 166.55], [160.69, 232.24]], \"sentences\": [\"A woman is shown running down the beach and smiling to the camera.\", \" She then begins performing sit ups on the dock.\", \" She continues to demonstrate how to properly do sit ups and gesturing to the camera.\"]}, \"v_FMYu8k1b_DM\": {\"duration\": 213.65, \"timestamps\": [[0, 26.71], [14.96, 70.5], [68.37, 131.39], [131.39, 213.65]], \"sentences\": [\"3 guys stand in a cirle on a indoor field.\", \" the 3 guys each take turns throwing a soccer ball to the guy on their right.\", \" each guy takes turns catching the ball from their left.\", \" the guys then practice kicking goals.\"]}, \"v_9FK7tjzBKio\": {\"duration\": 50.6, \"timestamps\": [[0, 10.37], [10.12, 41.24], [41.24, 50.6]], \"sentences\": [\"Two people are playing wall ball in a room.\", \" Two more people are playing wall ball in a room next to them.\", \" A woman is standing in a hallway in front of the rooms.\"]}, \"v_VWpRBfhoFVg\": {\"duration\": 18.25, \"timestamps\": [[0, 12.87], [0.64, 12.87], [12.96, 18.25]], \"sentences\": [\"A little girl is holding a stick.\", \" She is trying to hit a pinata in front of her.\", \" She walks back and gives the stick to a woman.\"]}, \"v_cyXWvxVt8qE\": {\"duration\": 86.98, \"timestamps\": [[0, 20.44], [19.57, 53.49], [52.19, 86.98]], \"sentences\": [\"a man serves a tennis ball on a tennis court.\", \" a player opposite of him hits the ball with his racket.\", \" the two men continuously play tennis until a point is scored.\"]}, \"v_rdkrg8Bj9_I\": {\"duration\": 82.62, \"timestamps\": [[0, 23.13], [23.13, 44.61], [44.61, 64.85], [64.85, 82.62]], \"sentences\": [\"A athlete practices his long jump on a track and field course with some light jumps.\", \" The athlete begins sprinting and jumping farther and farther.\", \" The athlete is now running full out and jumping full out.\", \" Clips of the long jump athlete jumping on different courses with people watching and competing in other exercises.\"]}, \"v_P2Fcv3cC8bI\": {\"duration\": 77.3, \"timestamps\": [[0, 10.44], [10.44, 19.71], [19.33, 77.3]], \"sentences\": [\"A man uses a brush on bundled wallpaper on the floor.\", \" The man lifts the wallpaper and hands it to another man standing on a chair.\", \" The second man places the wallpaper on a wall with help from the first man.\"]}, \"v_YZvdzvM-124\": {\"duration\": 6.62, \"timestamps\": [[0, 1.13], [1.26, 5.29], [5.59, 6.62]], \"sentences\": [\"A group of team mates are on a field together.\", \" Coaches are talking to each other in confusion.\", \" They are talking to and looking at an ill or injured player.\"]}, \"v_s56ctLdnOdw\": {\"duration\": 92.57, \"timestamps\": [[0, 13.42], [15.27, 57.39], [58.32, 92.57]], \"sentences\": [\"Two volleyball teams meet on opposite sides of a net.\", \" They lob the ball back and forth over the net.\", \" They are engaged in a game of volleyball.\"]}, \"v_WaFDgdqY1DM\": {\"duration\": 40.13, \"timestamps\": [[0, 9.83], [9.23, 40.13], [33.5, 40.13]], \"sentences\": [\"A small monkey is walking along a branch.\", \" The monkey stops and eats something in its hand.\", \" It uses its foot to scratch its head.\"]}, \"v_gKLbdLKEG6U\": {\"duration\": 231.36, \"timestamps\": [[11.57, 135.35], [18.51, 135.35], [134.19, 151.54], [167.74, 205.91], [208.23, 219.8]], \"sentences\": [\"People are sitting on a raft going down a river.\", \" They are using yellow oars to paddle themselves.\", \" They crash into the bottom of a bridge.\", \" They are walking across the water and down a trail.\", \" They are carrying their raft and get into a van.\"]}, \"v_RL4V-Sx619M\": {\"duration\": 83.69, \"timestamps\": [[0, 16.74], [19.25, 49.79], [51.05, 81.59]], \"sentences\": [\"A child is seen pushing a puck as well as a girl standing next to him.\", \" The two play shuffleboard while others play with them.\", \" The girl is seen speaking to the camera and giving a thumbs up.\"]}, \"v_ssBiSN8XofA\": {\"duration\": 176.12, \"timestamps\": [[0, 48.43], [50.2, 118.88], [111.84, 173.48]], \"sentences\": [\"A man is seen speaking to the camera while holding a basketball.\", \" The man then begins performing several baskets.\", \" He continues shooting hoops with the ball while speaking to the camera.\"]}, \"v_Px08sPeSsG0\": {\"duration\": 86.26, \"timestamps\": [[0, 15.1], [15.1, 32.35], [32.35, 86.26]], \"sentences\": [\"two men are sitting in frnot of the camera with paintings hanging in the white wall behind them.\", \"  man is doing a tattoo on a man's ribs.\", \" the man keeps talking in front of the camera and showing his arm tattoo.\"]}, \"v_FQVs9_IbgOY\": {\"duration\": 117.82, \"timestamps\": [[0, 16.49], [19.44, 73.64], [80.71, 117.82]], \"sentences\": [\"A large bull shakes it head in a ring.\", \" It runs, aimed at the man in front of him.\", \" The man changes the backgrounds as he leans forward, pushing back.\"]}, \"v_NNOsdZr802w\": {\"duration\": 167.63, \"timestamps\": [[0, 20.12], [20.95, 40.23], [40.23, 107.28], [106.44, 167.63], [165.95, 167.63]], \"sentences\": [\"A man in a bathroom hands another man an item then pulls down, and takes off his pants.\", \" The man holds a can and puts it on the counter.\", \" The man then sits down and sprays his leg with shaving cream and rubs it on his leg.\", \" The man then shaves his calf with a razor as another person holds a camera and films it.\", \" A person rubs his left in a smooth shaved spot.\"]}, \"v_OabVylOVys4\": {\"duration\": 207.22, \"timestamps\": [[0, 21.76], [20.72, 71.49], [69.42, 140.91], [137.8, 199.96]], \"sentences\": [\"A person is seen walking into a truck and speaking to a large group of people.\", \" Several clips are shown of animals and wild life and people riding down a river in a raft.\", \" The people speak to one another and eat food as well as swim in the river.\", \" People ride in kayaks, eat and cook more food as well as continuing to ride down the river.\"]}, \"v_jEppv00aBBc\": {\"duration\": 235.85, \"timestamps\": [[0, 2.36], [3.54, 22.41], [23.58, 235.85]], \"sentences\": [\"A series of unrelated still images are shown.\", \" Brief scenes related to dogs are shown.\", \" A man walks and takes care of a large group of dogs while occasionally interacting with others or talking to the camera.\"]}, \"v_95UgspVYJSM\": {\"duration\": 46.56, \"timestamps\": [[0, 15.13], [12.8, 32.82], [29.1, 44.69]], \"sentences\": [\"A woman is seen holding an ornament and looking at a tree.\", \" She then hands the ornament on the tree as well as another.\", \" She walks around the tree and back to the ornaments.\"]}, \"v_ABQYqpWF1LA\": {\"duration\": 132.45, \"timestamps\": [[0, 19.87], [10.6, 19.87], [10.6, 132.45]], \"sentences\": [\"The man is applying sunblock all over his body.\", \" The man is shown pointing on the billboard.\", \" The man is holding a tube of sunblock and apply on his body while he also put on a black shirt and then talk to the camera.\"]}, \"v_sF859t5osSg\": {\"duration\": 102.00999999999999, \"timestamps\": [[0, 8.67], [25.5, 95.38], [100.48, 102.01]], \"sentences\": [\"A dog is standing on a rug.\", \" It walks around a table and drinks from a cup.\", \" A person walks up and picks up the camera.\"]}, \"v_mbGpp_nDwI4\": {\"duration\": 98.2, \"timestamps\": [[0, 15.22], [15.22, 52.04], [52.04, 68.25], [73.16, 98.2]], \"sentences\": [\"A gymnast get up and ready himself  to perform in a parallel bars in front of the big crown while another man is holding a platform.\", \" He starts to do his routine and the man take away the platform, while some gymnast behind him is doing some routine too.\", \" He caught his feet with the bars, he stop and reach for the powder and another man approach him.\", \" He do another routine and landed strongly.\"]}, \"v_yu1XjQUctiM\": {\"duration\": 94.32, \"timestamps\": [[5.19, 6.6], [8.02, 74.04], [71.68, 82.06]], \"sentences\": [\"A boy is standing next to a sink in a bathroom.\", \" He puts toothpaste on a toothbrush and begins brushing his teeth.\", \" He spits into the sink in front of him.\"]}, \"v_Amgt0yzQido\": {\"duration\": 76.74, \"timestamps\": [[0, 20.34], [17.27, 54.49], [55.64, 75.59]], \"sentences\": [\"Three girls are seen standing on a large gym in front of an audience.\", \" They begin performing a jump roping routine with one another.\", \" They jump and flip around one another and end in a split.\"]}, \"v_lSgkR94_h8Q\": {\"duration\": 230.11, \"timestamps\": [[0, 57.53], [36.82, 147.27], [144.97, 230.11]], \"sentences\": [\"a girls is sitting in front of  a camera.\", \" the girl waves at the camera.\", \" the girl then begins to belly dance.\"]}, \"v__E_9te0nq3A\": {\"duration\": 167.67000000000002, \"timestamps\": [[0, 40.24], [40.24, 86.35], [86.35, 144.2], [144.2, 167.67]], \"sentences\": [\"man is walking to a tent and put the materials on top of a bench.\", \" man put newspaper and dry leavs on a small tray and turn on a campfire.\", \" the man put more branches on the campfire and then with a bucket turn off the small campfire.\", \" the man is in a small cabin in the woods talking to a woman.\"]}, \"v_HfN967uah8o\": {\"duration\": 154.65, \"timestamps\": [[0, 22.42], [30.16, 88.15], [102.84, 154.65]], \"sentences\": [\"A bunch of people are riding tubes down snowy hills.\", \" A little girl laughs as she speeds down the hill.\", \" They are passed by another group going faster.\"]}, \"v_4vOxhqUbHL8\": {\"duration\": 158.45, \"timestamps\": [[4.75, 144.19], [43.57, 100.62], [144.98, 158.45]], \"sentences\": [\"A man is playing the drums with his hands on a stage.\", \" Another man is sitting behind him playing a drum set.\", \" Words come up on the screen.\"]}, \"v_S9alQwrQ-oo\": {\"duration\": 148.7, \"timestamps\": [[0, 15.61], [27.51, 81.79], [103.35, 148.7]], \"sentences\": [\"A pair of beetle shaped fingernails are displayed.\", \" A woman uses polish and false nails in front of her.\", \" She shapes and paints the nails to look like beetles.\"]}, \"v_4MBGT228QiQ\": {\"duration\": 150.09, \"timestamps\": [[0, 33.02], [21.01, 96.06], [87.8, 150.09]], \"sentences\": [\"two woman are standing in a kitchen.\", \" one woman is talking to the camera while holding a book.\", \" the two woman begin preparing a meal.\"]}, \"v_krFle3KU4Ts\": {\"duration\": 65.09, \"timestamps\": [[0, 2.93], [6.18, 40.68], [43.61, 65.09]], \"sentences\": [\"A man is standing inside a house.\", \" He is playing an accordian.\", \" The accordian has ivory keys he plays with his fingers.\"]}, \"v_suxZhXSVNKY\": {\"duration\": 113.03, \"timestamps\": [[0, 92.68], [93.25, 108.5], [109.07, 113.03]], \"sentences\": [\"Numerous scenes of large waves crashing with surfers riding them are shown.\", \" Surfers walk away from the beach up a hill.\", \" The logo \\\"Wonder Land Productions\\\" is shown on the screen.\"]}, \"v_No5ZwqHdEQU\": {\"duration\": 180.16, \"timestamps\": [[0, 177.46], [111.7, 112.6], [179.26, 180.16]], \"sentences\": [\"People are playing volleyball on a beach.\", \" A woman in a brown bikini is talking to the camera.\", \" People are standing in the water on the beach.\"]}, \"v_7JoYkshshVI\": {\"duration\": 75.0, \"timestamps\": [[0, 6.38], [6.38, 42], [45.38, 75]], \"sentences\": [\"A man is standing inside a gym.\", \" He is standing in front of several discs on the ground.\", \" He uses a long grasper to move them in a game of curling.\"]}, \"v_odMI0DGsn7k\": {\"duration\": 152.28, \"timestamps\": [[0, 9.14], [9.14, 16.75], [16.75, 152.28]], \"sentences\": [\"There are people who are wearing fencing gear and they are fencing while other people are watching them.\", \"A girl not wearing a mask gets angry at another girl and she yells at the girl wearing a mask and they both walk away when she's done.\", \"A man wearing a blue sweater and glasses standing in a hallway talking to the camera appears in between various videos and screen shots of the fencing, the group of people around the fencing and the activities in the fencing area.\"]}, \"v_mSyfGQigb8U\": {\"duration\": 202.85, \"timestamps\": [[0, 202.85], [30.43, 102.44], [100.41, 202.85]], \"sentences\": [\"A person is standing at a sink.\", \" They spray the sink and start cleaning it with a toothbrush.\", \" They wipe the sink with a towel afterwards.\"]}, \"v_wEn3nAJHhtw\": {\"duration\": 159.78, \"timestamps\": [[0, 7.19], [7.19, 146.99], [146.2, 159.78]], \"sentences\": [\"An individual stands facing a dog in front of an audience.\", \" the individual performs tricks with the dog and some frisbees.\", \" Several individuals run across the field as the first individual finishes the routine.\"]}, \"v_gIhVeU8xbrs\": {\"duration\": 170.16, \"timestamps\": [[0, 17.02], [17.02, 118.26], [118.26, 146.33], [146.33, 170.16]], \"sentences\": [\"In an enclosed weight lifting gym a large man wearing a red shirt and black shorts picks up a barbell with very heavy weights on each end, holds it briefly above his head and then quickly drops it to the ground as it bounces a few times.\", \"Another man wearing black shorts and a red and white shirt is also taking his turn at lifting the heavyweights on the barbell, then briefly over his head then drops them to the ground and does this four times in a row.\", \" A smaller man is now attempting to lift the barbell with the heavyweights, but he can only lift them three times to his waist level then drops them.\", \"A larger shirtless man is standing in front of a mirror and he's also only lifting them to his waist a four times, then drops them and walks off.\"]}, \"v_pPrW3iW0DA8\": {\"duration\": 64.18, \"timestamps\": [[0, 64.18], [1.6, 64.18], [0, 17.01], [18.29, 64.18]], \"sentences\": [\"A man is standing in a driveway.\", \" There is a red ring on the ground.\", \" He throws a disc across the yard.\", \" He watches it fly across.\"]}, \"v_MFow119nrOk\": {\"duration\": 221.61, \"timestamps\": [[0, 103.05], [103.05, 172.86], [172.86, 221.61]], \"sentences\": [\"This young man is skateboarding down the ramp and he goes through the parking lot and he also stops to talk to a man and lift his shirt up.\", \" Then the man gets back onto his skateboard and he keeps going.\", \" But in the end he gets into a car to head back somewhere.\"]}, \"v_21Pz1cjdd2I\": {\"duration\": 146.47, \"timestamps\": [[0, 8.79], [9.52, 53.46], [54.19, 88.62], [88.62, 146.47]], \"sentences\": [\"Children stand near inner tubes on snow.\", \"  A family goes down a snowy hill on a large inner tube.\", \" The inner tubes are pulled back up the hill on a pulley system with kids riding in them.\", \" Another family rides down the hill.\"]}, \"v_GBFRHM7i-NQ\": {\"duration\": 129.82, \"timestamps\": [[2.6, 34.4], [27.26, 115.54], [57.77, 127.23]], \"sentences\": [\"Several people are seen running around a pit that leads into a bull running around.\", \" Several people run around the bull inside the pit.\", \" The people continue to run around as the bull grows more violent.\"]}, \"v_iBz_YrU-T80\": {\"duration\": 168.97, \"timestamps\": [[0, 27.04], [13.52, 40.55], [22.81, 59.14], [49, 168.97]], \"sentences\": [\"Four adults are sitting at a table in a kitchen.\", \" A man drinks a cup of coffee.\", \" They talk to each other about something.\", \" Several women are drinking tea outdoors.\"]}, \"v_yfjnahzAPSc\": {\"duration\": 207.73, \"timestamps\": [[0, 199.42], [8.31, 16.62], [16.62, 206.69]], \"sentences\": [\"A group of people play cricket on a large green, grass covered field with intersperses demonstrative interviews with different people between practice video.\", \"  A man in a white shirt speaks to the camera with people practicing cricket in the background.\", \"  A group of men practice cricket on a field with different people interviewing and gesturing different cricket moves as they speak.\"]}, \"v_HktZZPJMU8s\": {\"duration\": 211.63, \"timestamps\": [[0, 32.8], [38.09, 123.8], [124.86, 207.39]], \"sentences\": [\"A man is seen standing in front of the camera with an object in his hands.\", \" He then begins dancing around the room with the object moving his body all around.\", \" He continues to move around the room with his body.\"]}, \"v_gVixuVE0-ek\": {\"duration\": 135.68, \"timestamps\": [[0, 52.23], [40.7, 103.79], [92.26, 133.64]], \"sentences\": [\"A man is seen boxing towards the camera as well as hitting a bag.\", \" He then is shown speaking to the camera and demonstrating how to box.\", \" He continues moving his arms around and bowing.\"]}, \"v_nzjivjnk2Ac\": {\"duration\": 233.01, \"timestamps\": [[0, 233.01], [13.98, 229.52], [60.58, 212.04]], \"sentences\": [\"The young boy is skateboarding on the road.\", \" The young man in blue shirt is skateboarding on the street.\", \" Three young men are skateboarding in an empty street sliding side to side.\"]}, \"v_ufBz1xfqQoM\": {\"duration\": 180.09, \"timestamps\": [[0, 36.02], [31.52, 109.86], [101.75, 173.79]], \"sentences\": [\"A host is seen speaking into a microphone and a couple walks out on stage.\", \" The couple begin dancing with one another while others walk on stage.\", \" People cheer as they audience stands around and leads into more people dancing together.\"]}, \"v_ZdaS-WZHUZY\": {\"duration\": 154.62, \"timestamps\": [[0, 6.18], [6.96, 146.12], [146.89, 149.21], [149.98, 154.62]], \"sentences\": [\"Scenes of an outdoor stadium are shown.\", \"  Various scenes of lacrosse being played are shown.\", \" A player lifts a large trophy over head his.\", \" A \\\"Yellow Hill Studio\\\" logo appears on screen.\"]}, \"v_HWgQhsTgj90\": {\"duration\": 22.06, \"timestamps\": [[0, 9.04], [9.15, 13.01], [13.13, 22.06]], \"sentences\": [\"Two water polo teams compete in a pool.\", \" The referee blows the whistle on a foul by the defender and the play stops.\", \" When the play resumes the player passes the yellow ball to a team mate who takes a shot and scores a goal.\"]}, \"v_FU0EPNGKsv8\": {\"duration\": 58.05, \"timestamps\": [[0, 13.64], [11.9, 35.41], [29.03, 58.05]], \"sentences\": [\"The woman n white is instructing the girls in blue uniform on how to do a lay up.\", \" The girl one by one rent to the basketball and threw the balls.\", \" The girls dribble the ball as then do a lay up to the basket.\"]}, \"v_8e80cJTrJDs\": {\"duration\": 39.19, \"timestamps\": [[0, 0.78], [0.98, 39.19], [18.42, 39.19]], \"sentences\": [\"Bikes are lined up at the start of a race.\", \" They start to race around a dirt track.\", \" People in the stands are watching them race.\"]}, \"v_GyBIC-DBoss\": {\"duration\": 78.09, \"timestamps\": [[8.98, 78.09], [8.98, 65.59], [58.18, 60.52]], \"sentences\": [\"A woman in a pink shirt is standing on a mat.\", \" She bends down and picks up a large weight over her head several times.\", \" She drops the weight onto the mat.\"]}, \"v_jfhKC2WFDTo\": {\"duration\": 179.31, \"timestamps\": [[0, 53.79], [45.72, 132.69], [128.2, 167.65]], \"sentences\": [\"A group of cheerleaders are seen walking out onto a stage in front of a large audience.\", \" The girls begin performing a routine with one another while men spot them on the sides.\", \" The girls continue with their routine and end by walking away.\"]}, \"v_bjKd--KFl0E\": {\"duration\": 230.92000000000002, \"timestamps\": [[0, 31.17], [53.11, 139.71], [147.79, 230.92]], \"sentences\": [\"A still image is seen of a woman riding a wave on a surfboard.\", \" She is wearing a white headband around her head.\", \" She is fully encased by white rapids.\"]}, \"v_mwDQENGsvd8\": {\"duration\": 43.1, \"timestamps\": [[0, 5.17], [8.83, 30.17], [31.46, 43.1]], \"sentences\": [\"A little boy is standing inside a room.\", \" He is using a large pair of drum sticks.\", \" He is beating a drum set and cymbals.\"]}, \"v_BrgYIg6UXhU\": {\"duration\": 267.07, \"timestamps\": [[0, 5.34], [5.34, 108.16], [108.16, 122.85], [122.85, 267.07]], \"sentences\": [\"A man wearing a blue jacket approaches a blue car.\", \" The man then picks up a snow brush and ice scraper and begins to brush the snow from the car.\", \"The man in the blue jacket says hello to a neighbor and continues cleaning the car.\", \" The man continues to scrape the ice and brush the snow from the windshields and body of the car.\"]}, \"v_LTBrHLqhRMs\": {\"duration\": 66.26, \"timestamps\": [[0, 27.17], [27.17, 54.33], [54.33, 66.26]], \"sentences\": [\"man is standing in a sandy court talking to the camra and holding a voley ball.\", \"the man extends the hand holding the ball and showing how to hit the ball.\", \" the man on a side of the court is hitting the ball showing the voleyball moves.\"]}, \"v_vVvImml1A8g\": {\"duration\": 55.15, \"timestamps\": [[0, 5.51], [4.96, 9.93], [10.2, 43.57], [42.19, 47.98], [47.98, 54.05]], \"sentences\": [\"Several young boys and girls are riding bumper cars at a theme park.\", \" A young happy blonde boy looks at the camera.\", \" The cars are moving in circular motion around the track.\", \" The blonde boy smiles in excitement as he enjoys the ride.\", \" A couple of the bumper cars crash, but the drivers are happy with the occasion.\"]}, \"v_xaicDAewb6o\": {\"duration\": 95.2, \"timestamps\": [[0, 15.23], [21.42, 55.69], [64.26, 95.2]], \"sentences\": [\"A girl is standing in front of a kitchen sink.\", \" She dips the dishes up and down in the soapy water.\", \" she then shows the cleanliness of the dish off to the camera.\"]}, \"v_ebmi7XJA8Oo\": {\"duration\": 212.69, \"timestamps\": [[0, 35.09], [35.09, 212.69], [0, 212.69]], \"sentences\": [\"little kid is standing next to a sink holding a small cloth the kid cleans the soap bottle.\", \" the kid holds a cleaner and cleans the sink and polish the sink with a cloth.\", \" kid is standing in a bathroom cleaning the sink.\"]}, \"v_BkjWeWUwG0A\": {\"duration\": 216.82999999999998, \"timestamps\": [[0, 80.23], [114.92, 145.27], [161.54, 196.23]], \"sentences\": [\"The little boy wearing a blue outfit is swinging in the park.\", \"  A little girl wearing a red coat is swinging in the park.\", \"  Little girl wearing a red jacket is talking directly into the camera.\"]}, \"v_7J6cZ_Gz8q4\": {\"duration\": 184.2, \"timestamps\": [[0.92, 177.76], [35.92, 76.44], [76.44, 177.76]], \"sentences\": [\"A man in a black suit and a woman in a white gown dance in front of a room filled with people eating dinner, on a platform with fireworks, smoke and a live saxophone player playing music in a white suit and hat.\", \"  The couple dance on the stage as fireworks erupt from the side of the stage.\", \"  The couple continues to dance fireworks and smoke like mist on the stage  as the saxophone player plays and photographs are taken from the sides of the platform.\"]}, \"v_OQPBLjX1LHk\": {\"duration\": 48.81, \"timestamps\": [[0, 6.1], [7.08, 29.53], [30.99, 48.81]], \"sentences\": [\"A little girl is on the monkey bars on a playground.\", \" She swings across them one bar at a time.\", \" She then runs across the bridge, and returns to the monkey bars.\"]}, \"v_I4y6q9oIIQo\": {\"duration\": 127.11, \"timestamps\": [[0, 15.89], [17.16, 88.97], [80.71, 127.11]], \"sentences\": [\"Kermit The Frog is talking to the camera in a doctor's office.\", \" a jungle is shown and a fruit fall from a tree.\", \" a man picks up the fruit and begins processing it.\"]}, \"v_8IJJGK2td2c\": {\"duration\": 154.69, \"timestamps\": [[0, 38.67], [39.45, 94.36], [97.46, 151.6]], \"sentences\": [\"A person is seen rolling a lemon and cutting it up followed by putting it into a glass.\", \" He mashes up the lemon and puts ice in on top.\", \" He puts in water and covers the glass, followed by shaking it up and showing a glass of lemonade.\"]}, \"v_kQ4rE7o6rrg\": {\"duration\": 128.36, \"timestamps\": [[0, 3.85], [4.49, 16.69], [17.33, 128.36]], \"sentences\": [\"The words \\\"AA Tournament Tatiana Schlange playing left on Far side\\\" appear on a black screen.\", \" A women's outdoor volleyball tournament is being held on a sunny beach.\", \"  Various clips of Schlange playing at different tourneys are shown.\"]}, \"v_HlhQ3-WOdgI\": {\"duration\": 19.09, \"timestamps\": [[0, 0.48], [0.76, 1.24], [1.24, 12.41], [12.88, 18.51]], \"sentences\": [\"A squirrel is standing on all fours at the edge of a couch.\", \" The squirrel leans into a coffee cup using its front limbs.\", \" The squirrel bobs his head in and out of the coffee cup.\", \" The squirrel turns away from the cup and leaves walking across the top of the couch.\"]}, \"v_KoqE2gPCLe4\": {\"duration\": 67.13, \"timestamps\": [[0, 7.72], [7.72, 45.65], [45.65, 67.13]], \"sentences\": [\"A female athlete dressed in a Russian uniform is standing at the end of a runway preparing mentally fr her jump.\", \"Once she is ready,the girl takes off down and perfects her pole vault jump.\", \"When the jump is completed,the lady grabs her sticks and waits to see her score but it doesn't show so she begins to make hand gestures to someone to ensure that the jump was successful.\"]}, \"v_q_nBBJS-eJo\": {\"duration\": 220.89, \"timestamps\": [[0, 217.58], [0, 22.09], [9.94, 32.03], [33.13, 203.22]], \"sentences\": [\"A man is wearing an orange shirt.\", \" He holds up can of something.\", \" He then holds several other things too.\", \" He then varnishes some wood.\"]}, \"v_cKMGacBQX0E\": {\"duration\": 57.17, \"timestamps\": [[0, 10.86], [12.01, 42.59], [44.02, 57.17]], \"sentences\": [\"A man mounts a beam in front of the judges.\", \" He spins and turns around on the beam, performing several gymnastics moves.\", \" He then dismounts perfectly from the beam.\"]}, \"v_ranTpEJvqs8\": {\"duration\": 53.55, \"timestamps\": [[0, 14.19], [13.39, 39.62], [33.47, 51.4]], \"sentences\": [\"A small group of people are seen sitting on bikes while others watch on the side.\", \" The men then races down a track on their bikes.\", \" They continue riding around past one another while looking around.\"]}, \"v_YDNgm6ufrJc\": {\"duration\": 61.16, \"timestamps\": [[0, 6.73], [7.03, 31.5], [31.8, 57.8], [57.8, 61.16]], \"sentences\": [\"A young child is pretend washing in the kitchen sink.\", \" She talks to the camera.\", \" She starts washing a bottle with soap.\", \"  She steps away from the sink.\"]}, \"v_oEC5UG-rBFc\": {\"duration\": 198.6, \"timestamps\": [[0, 23.83], [39.72, 142.99], [151.93, 198.6]], \"sentences\": [\"An animation is shown of a ball game on a court.\", \" A man is shown talking in front of a screen.\", \" He demonstrates several kicks and moves involved in soccer.\"]}, \"v_Mpph0kFsyZ0\": {\"duration\": 120.44, \"timestamps\": [[0.6, 19.27], [4.22, 19.27], [16.86, 120.44]], \"sentences\": [\"Two men are standing behind the fence.\", \" The short man is talking to the camera then to the man next to him.\", \" The male athlete put the ball on his neck, swing and then threw the ball, the short man did the same, the ball landed on the field.\"]}, \"v_8Kv7piYg9yc\": {\"duration\": 95.09, \"timestamps\": [[0, 5.71], [5.71, 11.41], [11.89, 14.74], [14.74, 72.74], [72.74, 95.09]], \"sentences\": [\"A group of kids in a gymnasium play Rock, Paper, Scissors.\", \" A girl wearing a blue jacket runs across the gymnasium to the other side.\", \" A group of boys run across to the other side of the gymnasium.\", \" The camera man pans across the gymnasium where many children are running and playing the game.\", \" The children run after each other playing tag and kids playing Rock, Paper, Scissors and more clips of children running in every direction playing Rock, Paper, Scissors.\"]}, \"v_aCknCFmU0sA\": {\"duration\": 95.47999999999999, \"timestamps\": [[0, 19.1], [18.14, 65.88], [56.33, 91.66]], \"sentences\": [\"A man is seen looking to the camera holding up a brush.\", \" The man then begins brushing his hair all along the sides.\", \" He turns around to show the back and continues brushing and waves.\"]}, \"v_qoS5nkk7Rgk\": {\"duration\": 67.76, \"timestamps\": [[0, 5.42], [14.23, 43.36], [49.46, 67.76]], \"sentences\": [\"A woman is working on grooming a dog.\", \" She brushes his fur as he sits on a table.\", \" She continues grooming excess fur out of his coat.\"]}, \"v_iuQHLWWhSEY\": {\"duration\": 22.18, \"timestamps\": [[0, 2.11], [2.55, 13.19], [16.41, 22.18]], \"sentences\": [\"A little girl stands up on a beam.\", \" She tries to roll forward, then falls.\", \" She stands up and balances, jumping off the beam.\"]}, \"v_HOTCR1uIaBM\": {\"duration\": 173.99, \"timestamps\": [[12.18, 167.03], [12.18, 77.42], [100.91, 102.65], [113.09, 153.11], [157.46, 163.55]], \"sentences\": [\"Two people are standing behind a kitchen counter.\", \" They begin to cook and stir ingredients.\", \" The man does a hand stand behind the counter.\", \" They then begin dancing behind the counter.\", \" They light a firework on top of the cake.\"]}, \"v_at8e-jBBU5E\": {\"duration\": 67.15, \"timestamps\": [[0, 12.09], [12.09, 19.81], [19.81, 67.15]], \"sentences\": [\"A man introduces a video about rock climbing while showing several different examples rock of climbing maneuvers.\", \" Next, he shows an example of the rock climbing maneuver that he will teach.\", \" Lastly, he proceeded to show how to do the rock climbing maneuver in the example.\"]}, \"v_ugDN2gDN99E\": {\"duration\": 7.52, \"timestamps\": [[0, 7.52], [1.92, 4.36], [4.44, 7.52]], \"sentences\": [\"A young man is sitting on a rowing machine with a red and white polo shirt,Adidas sweat shorts,and Adidas shoes.\", \"As he is sitting down in the gym,he grabs the bar and begins moving back and forth on the seat.\", \"While he is seated,his legs move from a straight position to a ninety degree angle each time,while simultaneously pulling the bar.\"]}, \"v_D3NZ45e9llI\": {\"duration\": 224.42000000000002, \"timestamps\": [[0, 19.08], [23.56, 123.43], [125.68, 224.42]], \"sentences\": [\"A helicopter is flying over a mountain scene.\", \" Several people carry kayaks into the rapids.\", \" They ride the kayaks through the rough waters.\"]}, \"v_3AsQjx1lxLU\": {\"duration\": 234.37, \"timestamps\": [[0, 48.05], [52.73, 179.3], [202.73, 234.37]], \"sentences\": [\"A group of people are running down a path.\", \" The contenders are all wearing signs and posing with people.\", \" They race down the streets to the finish line.\"]}, \"v_8ulb1O_5gRs\": {\"duration\": 146.47, \"timestamps\": [[0, 36.62], [35.15, 99.6], [82.76, 142.08]], \"sentences\": [\"A man is seen speaking to the camera while holding a paintball gun and aiming it off in the distance.\", \" He begins shooting the gun against a target on a tree.\", \" He continues shooting the gun and showing off his shots in the end.\"]}, \"v_kHBTnFweJfw\": {\"duration\": 198.25, \"timestamps\": [[0, 198.25], [0, 19.83], [20.82, 52.54], [54.52, 66.41], [67.41, 193.3], [179.42, 195.28], [195.28, 198.25]], \"sentences\": [\"A black man leads  class of people dancing for exercise in a parking lot.\", \" The man moves slow to show the move.\", \" The man then goes fast and the class follows his lead.\", \" The camera pans and we see the class as a lady in black pants joins.\", \" We see the class and the teacher as they perform the routine.\", \" We see the teach and the class as they move their arms.\", \" The routine finishes and the class claps for the teacher.\"]}, \"v_A3a6MNgab0c\": {\"duration\": 95.67, \"timestamps\": [[0, 26.31], [26.79, 71.27], [71.75, 95.67]], \"sentences\": [\"A young man is standing in a room holding an archery bow in his hand and talking about the equipment.\", \"Shortly after,he removes his hand from the black stick and demonstrates its use making sure to hold it up with his arms at a ninety degree angle.\", \"Finally,the guy takes a break from talking and releases the bow and aims at the target.\"]}, \"v_t6f_O8a4sSg\": {\"duration\": 218.52, \"timestamps\": [[0, 13.11], [13.11, 185.74], [62.28, 191.21], [191.21, 218.52]], \"sentences\": [\"An introduction comes onto the screen for a video about skate boarding tricks.\", \" Several tricks are shown while someone narrates the tricks.\", \" A man is shown on the screen giving details about the tricks and offering pointers and tips.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_rSxO9uspxT8\": {\"duration\": 70.43, \"timestamps\": [[5.99, 11.27], [16.9, 38.03], [48.59, 50.71]], \"sentences\": [\"A weed wacker is shown on the ground.\", \" A man starts cutting the top of a hedge.\", \" He then starts cutting weeds with the weed wacker in front of the hedge.\"]}, \"v_K8f4LNNiQy8\": {\"duration\": 13.61, \"timestamps\": [[0.14, 2.25], [2.72, 9.32], [9.32, 13.27]], \"sentences\": [\"A large group of people are seen running around a track.\", \" One man is behind running with a pole.\", \" The man pole volts over a bar and gets up.\"]}, \"v_EFGtb9IDQao\": {\"duration\": 89.49, \"timestamps\": [[0, 22.82], [23.71, 72.04], [72.93, 89.49]], \"sentences\": [\"A woman is sitting in a room dressed in a black shirt talking with a silver table in front of her.\", \"The lady then takes an off white Converse shoe,dips a toothbrush in a bowl of baking soda and begins scrubbing the shoe.\", \"When she is finished scrubbing the shoe,she takes the sponge,wipes it off and continues talking about the process of cleaning the shoe.\"]}, \"v_gLfvk2SSj1c\": {\"duration\": 138.02, \"timestamps\": [[0, 138.02], [4.14, 10.35], [18.63, 66.94], [62.11, 136.64], [82.81, 132.5]], \"sentences\": [\"A young man wearing a green shirt is talking about the techniques involved in rock climbing.\", \" Two young men are seen climbing the wall while being suspended on ropes.\", \" There's another young man who is demonstrating how to climb up the wall while holding onto the wall mounts.\", \" The man in the green shirt explain the technique as he points to the wall to show the significance of each rock and its height.\", \" He shows various rocks that are named differently and as assigned different numbers.\"]}, \"v_X9AnhFjdiXA\": {\"duration\": 149.1, \"timestamps\": [[0, 149.1], [4.47, 149.1], [0, 148.35]], \"sentences\": [\"man is holding a guitar and is talking to the camera.\", \" man is sitting in a room playing the guitar to the camera.\", \" man is holding an acoustic guitar playing it.\"]}, \"v_ZefWc2tgltY\": {\"duration\": 102.03, \"timestamps\": [[0, 27.55], [21.94, 64.79], [64.79, 102.03]], \"sentences\": [\"a man stands with a flute in his hand.\", \" the man utters a few words to the camera.\", \" then the man plays the flute.\"]}, \"v_Z86tpjRaiK8\": {\"duration\": 231.56, \"timestamps\": [[0, 16.21], [37.05, 113.47], [133.15, 231.56]], \"sentences\": [\"A man pulls up his socks and puts on a pair of gloves.\", \" He then engages in a game of jousting.\", \" He and his opponent jab and poke their swords at one another.\"]}, \"v_gY0qgtM0Gt8\": {\"duration\": 101.1, \"timestamps\": [[0, 13.14], [22.24, 56.62], [63.19, 101.1]], \"sentences\": [\"A large pile of leaves is shown outdoors.\", \" A leaf blower blows them away from the house.\", \" The person continues to walk with the leaf blower.\"]}, \"v_3TNDCTlLlGk\": {\"duration\": 214.73, \"timestamps\": [[0, 26.84], [30.06, 88.04], [73.01, 203.99]], \"sentences\": [\"A car is seen driving that leads into people getting out and grabbing boards out of the back.\", \" The people look at the camera and lead into several clips of people wake boarding and riding jet skis.\", \" The people drink on a boat and smile to the camera while others continue to ride around and perform tricks.\"]}, \"v_ndJqptBTxAY\": {\"duration\": 108.81, \"timestamps\": [[0, 5.44], [5.98, 40.8], [41.35, 81.61], [82.15, 108.81]], \"sentences\": [\"A large white truck with its hood open backs up.\", \" Marc man speaks to the camera by a vintage red car.\", \" He wipes some car cleaner on the driver's side door and polishes it.\", \"  He drives off in the car.\"]}, \"v_wU-8acM-IUM\": {\"duration\": 210.03, \"timestamps\": [[0, 32.55], [27.3, 67.21], [58.81, 108.16], [90.31, 149.12], [141.77, 210.03]], \"sentences\": [\"a young man stands and plays the saxophone.\", \" the man is sitting with the saxophone talking.\", \" the man then plays the saxophone while sitting.\", \" the man talks points to parts of the saxophone.\", \" the man continues to talk and play the saxophone on and off.\"]}, \"v_dBNZf90PLJ0\": {\"duration\": 167.74, \"timestamps\": [[5.87, 15.94], [18.45, 62.9], [63.74, 114.9], [115.74, 119.93], [121.61, 158.52]], \"sentences\": [\"Pictures of people on a boat is shown.\", \" After, a group of people gets ready to rafting.\", \" The people take the boats in the river and sail.\", \" People sail in calm waters, then they load the boats on the roof of a car.\", \" After, they go to another rivers that has choppy waters, when finish rafting they drink.\"]}, \"v_1oM26-0yFcM\": {\"duration\": 176.19, \"timestamps\": [[0, 35.24], [43.17, 94.26], [86.34, 171.79]], \"sentences\": [\"A man is seen spinning in circles and throwing a discuss off into the distance.\", \" Another man takes his turn and ends by receiving flowers and walking away.\", \" More clips are shown of people spinning around and throwing the object and walking away.\"]}, \"v_R8WbSI3m1lI\": {\"duration\": 99.66, \"timestamps\": [[0, 14.45], [18.94, 68.77], [73.75, 99.66]], \"sentences\": [\"Several people are shown walking through a shopping center.\", \" Some of the people are skating on inline skates.\", \" They weave in and out of the foot traffic.\"]}, \"v_ox6cIfguQ00\": {\"duration\": 103.82, \"timestamps\": [[0, 29.07], [29.59, 75.27], [69.56, 100.18]], \"sentences\": [\"A close up of a horse is seen as well as a person's hands.\", \" The person rides the horse past several cars and people.\", \" The person continues riding the horse around the public area.\"]}, \"v_gVKgXyKh4BQ\": {\"duration\": 6.5, \"timestamps\": [[0, 0.59], [0.81, 4.58], [4.71, 6.5]], \"sentences\": [\"a male athlete is shown running down a track.\", \" He takes a giant leap into the air.\", \" He lands hard in the sand.\"]}, \"v_Q8iXOTXdy2Y\": {\"duration\": 137.95, \"timestamps\": [[0, 33.11], [33.11, 102.08], [89.67, 134.5]], \"sentences\": [\"A man is seen bending over and stretching followed by throwing a ball in the distance.\", \" Several more boys are shown afterwards throwing a shot put into the distance.\", \" They walk around a bit and continue throwing the ball.\"]}, \"v_70bS0DkAeDo\": {\"duration\": 32.88, \"timestamps\": [[0.33, 3.78], [3.78, 17.59], [17.92, 28.93]], \"sentences\": [\"A man bends on front a wight.\", \" Then, the man raises the weight until the shoulders.\", \" After, the man holds the weight above the head, and then he falls the weight to the floor.\"]}, \"v_1MBVaveQDd8\": {\"duration\": 131.45, \"timestamps\": [[0, 40.75], [34.83, 106.47], [94.64, 130.13]], \"sentences\": [\"A couple is seen dancing in frame followed by another couple who begin dancing.\", \" People sit around the side and watch the couples dance as well as speak to one another.\", \" The dancing couples walk in and out of frame.\"]}, \"v_sZ95YHZtVCc\": {\"duration\": 85.15, \"timestamps\": [[0, 21.29], [21.29, 68.54], [68.97, 85.15]], \"sentences\": [\"A young woman with large breast is sitting outside in a small pink shirt,she pulls her sleeves down and starts playing with her boobs and then turns back around.\", \"As she is sitting down,man come around for her to polish their shoes and they all begin to stair down her shirt watching her breast move rapidly.\", \"Once the men sit down,they all begin to get closer to look down her shirt while her head is down before they all slap themselves in the face when she tells them they were being filmed the whole time.\"]}, \"v_xv8OYJ7t7-E\": {\"duration\": 94.62, \"timestamps\": [[0, 29.33], [21.76, 60.08], [44.47, 91.78]], \"sentences\": [\"a woman is sitting talking to the camera.\", \" the woman the picks up a glass and holds it.\", \" things are being poured on the woman.\"]}, \"v_Irg5qYkjJoY\": {\"duration\": 198.35, \"timestamps\": [[0, 16.86], [16.86, 60.5], [60.5, 89.26], [91.24, 172.56], [173.55, 198.35]], \"sentences\": [\"A river is shown and then different buildings with the clouds moving and music in the background.\", \" Two men are seen walking on a sidewalk and then talking inside a building, and then on a roof attaching equipment with ropes and pulleys.\", \" The street is shown with all of the cars far below and one of the men is looking down from the roof.\", \" Then the same man gets out on a rope between buildings very high up, and balances, then carefully walks across the rope while music plays in the background.\", \" At the end he makes it to the other side and the Adidas logo is shown.\"]}, \"v_DgJ-GG1Agyw\": {\"duration\": 222.77, \"timestamps\": [[0, 41.21], [41.21, 84.65], [84.65, 153.71], [153.71, 222.77]], \"sentences\": [\"man is cleaning a woman's nose to put a piercing.\", \" the woman is talking with the man and laughing to the camera, in the background a woman is waiting in a waiting room.\", \" the man holds the know with a tweezer and put the piercing, the woman drops a tear.\", \" the man move the peircing with the tweezer to put it in place and the woman talks with him.\"]}, \"v_7rpq2RXAoKE\": {\"duration\": 30.88, \"timestamps\": [[0, 23.78], [10.96, 26.25], [27.02, 30.88]], \"sentences\": [\"A child uses monkey bars on a playground.\", \"  The child goes back the way they came.\", \"  They dismount on to a circle thing.\"]}, \"v_ko89yQozE-4\": {\"duration\": 218.41, \"timestamps\": [[0, 12.01], [27.3, 102.65], [109.2, 218.41]], \"sentences\": [\"A woman is outside over a board.\", \" she and a friend, then several others are shown in images and videos being silly together.\", \" they go parasailing across the ocean on boats.\"]}, \"v_1jWMd8QaN5s\": {\"duration\": 38.04, \"timestamps\": [[0, 38.04], [0, 4.94], [35.75, 38.04]], \"sentences\": [\"People are standing in a line playing a game of Foosball.\", \" A man is standing in front of the Foosball table on the phone.\", \" A man in a black hat is standing against the wall behind them.\"]}, \"v_U1nvAxorOPQ\": {\"duration\": 115.28999999999999, \"timestamps\": [[0, 39.2], [32.28, 77.24], [73.78, 109.52]], \"sentences\": [\"A woman is seen speaking to the camera while standing next to another woman.\", \" The first then begins lifting a horse's hoof and cleaning off the bottom.\", \" The horse puts its feet down and the camera zooms in.\"]}, \"v_Qu3_80O0j5w\": {\"duration\": 112.06, \"timestamps\": [[0, 110.94], [3.36, 112.06], [2.24, 112.06]], \"sentences\": [\"woman is swimming in a pool and go from side to other side.\", \" man s swimming on an olimpic pool in a competition.\", \" man is in a clean pool swimming.\"]}, \"v_Yzb_4XMgcM4\": {\"duration\": 143.27, \"timestamps\": [[0, 12.18], [15.76, 53.01], [40.12, 81.66], [91.69, 136.1]], \"sentences\": [\"Canada baton twirling logo in pink.\", \" We see a male baton thrower in a white outfit.\", \" His routine is contained with a female in a sparkling outfit.\", \" They finish twirling their batons and the routine is over.\"]}, \"v_cQYAi2drreo\": {\"duration\": 71.94, \"timestamps\": [[0, 29.49], [29.49, 60.79], [60.07, 71.94]], \"sentences\": [\"Several newspapers are drawn out across a wooden floor in a kitchen.\", \"On top of the newspapers,there are people sitting in chairs carving out pumpkins and dumping the remains on the ground.\", \"A person then walks to the oven and checks the pumpkin seeds before panning the designs of the jack-o-lanterns that the people have carved out.\"]}, \"v_6czh95dpwAA\": {\"duration\": 42.77, \"timestamps\": [[0.21, 2.57], [2.57, 8.98], [8.34, 19.68], [19.68, 42.56]], \"sentences\": [\"A woman's butt is shown close up as she walks away holding a bucket of soap.\", \" A close up of a car is seen followed by the woman washing the car.\", \" A man notices nearby as he cuts the grass as well as a dog in the car.\", \" In the end an older woman is shown.\"]}, \"v_IK9kE9IrcOM\": {\"duration\": 116.15, \"timestamps\": [[0, 11.03], [13.36, 63.3], [64.46, 116.15]], \"sentences\": [\"A man is standing inside his living room.\", \" He picks up a swiffer broom and starts to use it.\", \" He then shows how to use cleaner on the floor and wax it clean.\"]}, \"v_Rnux3rCLdmI\": {\"duration\": 226.67000000000002, \"timestamps\": [[0, 49.87], [55.54, 163.21], [172.27, 226.67]], \"sentences\": [\"A boot and supplies are shown sitting on a table.\", \" A man then takes the boot and smooths it down.\", \" He proceeds to polish the boot.\"]}, \"v_h67ctuwV-Nw\": {\"duration\": 190.2, \"timestamps\": [[6.66, 175.93], [28.53, 161.67], [145.5, 190.2]], \"sentences\": [\"A man in red jacket rode his canoe and started paddling through the water.\", \" The man slide down the rocks and waves in the water.\", \" The man's canoe flip over and the water dragged him through.\"]}, \"v_GIy6ZbAooOQ\": {\"duration\": 205.47, \"timestamps\": [[0, 33.9], [27.74, 151.02], [135.61, 203.42]], \"sentences\": [\"A man is seen speaking to the camera and holding a jump rope.\", \" The man begins jumping rope continuously while swinging the rope all over.\", \" He continues to jump and spin around.\"]}, \"v_VpZ3PaLi2RQ\": {\"duration\": 79.16, \"timestamps\": [[0, 20.98], [20.98, 64.91], [64.91, 79.16]], \"sentences\": [\"A woman says: Desmin  is now old enough to cut the grass while the boy pushes the lawnmower across the lawn.\", \" After that, she doesn't say anything else and the boy is seen pushing the lawnmower in different directions and the woman speaks again.\", \" In the end, the boy is tired and is still mowing the lawn while the woman says good job desmin.\"]}, \"v_JDn95TW9WoM\": {\"duration\": 148.59, \"timestamps\": [[2.97, 148.59], [46.8, 64.63], [127.04, 144.13]], \"sentences\": [\"People are playing soccer in an indoor arena.\", \" A man in a blue shirt kicks a yellow soccer ball and scores a goal.\", \" A man in a red shirt stands behind him and puts his arm around him.\"]}, \"v_uhnY3lZ9ZCI\": {\"duration\": 158.07999999999998, \"timestamps\": [[0, 24.5], [32.41, 101.17], [112.24, 158.08]], \"sentences\": [\"Rapid white waters of a river are shown.\", \" A man in a kayak is battling the waves.\", \" He loses his paddle and tries to remain upright.\"]}, \"v_Q78FBGHniCc\": {\"duration\": 187.68, \"timestamps\": [[0, 30.97], [30.97, 150.14], [150.14, 187.68]], \"sentences\": [\"A pile of trees are laying on the pavement up against a brown wooden fence.\", \"Shortly after,a wind blower appears and someone begins blowing the leaves down the sidewalk.\", \"Once one side has moved,he moves to the left and starts blowing the trees out of the gutter off of the ladder and bricks.\"]}, \"v_OOqGdga8t4s\": {\"duration\": 22.45, \"timestamps\": [[0, 22.45], [2.58, 22.45], [18.52, 22.45]], \"sentences\": [\"A little girl is holding a pink bat.\", \" She is hitting a red pinata in front of her.\", \" A little boy in a blue shirt walks behind her.\"]}, \"v_eic6dpU0ytM\": {\"duration\": 128.31, \"timestamps\": [[0, 67.36], [67.36, 102.01], [102.01, 128.31]], \"sentences\": [\"old woman is sitting on a chair knitting balaclavas.\", \" woman in a hospital room put the balaclava on baby's head and stands around the baby.\", \" the old woma is on the chair kniting again.\"]}, \"v_2fndjkCHsEY\": {\"duration\": 193.14, \"timestamps\": [[0, 44.42], [35.73, 150.65], [127.48, 185.42]], \"sentences\": [\"A close up of a fooseball table is shown with a group of children and an adult playing.\", \" The kids move the poles all around while laughing with one another.\", \" The kids continue to play on the table.\"]}, \"v_D2ggFcgEbFo\": {\"duration\": 176.19, \"timestamps\": [[0, 22.91], [25.55, 98.67], [101.31, 176.19]], \"sentences\": [\"A group of people are riding a conveyor belt in the snow.\", \" They use tubes to slide down a steep hill.\", \" They race each other tubing down the hill together.\"]}, \"v_9ut_IDtfVzY\": {\"duration\": 150.09, \"timestamps\": [[0, 28.52], [30.77, 150.09], [122.33, 131.33]], \"sentences\": [\"A man and a woman spray paint something hanging on a metal bike rack.\", \" The camera pans to show several individuals in and near a building with a large number of bicycles and bicycle parts inside and outside, with many of them interacting with the bicycles and parts.\", \" The camera zooms in on a cake sitting on a table.\"]}, \"v_StTr5O_wGXI\": {\"duration\": 44.05, \"timestamps\": [[0, 41.85], [8.15, 35.68], [20.92, 35.68], [31.72, 42.95]], \"sentences\": [\"A man is giving the news as a world graphic rotates behind him.\", \" It cuts to a story about soccer players.\", \" He gives the news over the soccer players.\", \" The soccer segment of the news report ends.\"]}, \"v_uDpLB-JDjEA\": {\"duration\": 99.15, \"timestamps\": [[3.97, 60.48], [59.99, 66.93], [68.91, 73.87], [79.82, 82.79]], \"sentences\": [\"A man is sitting on a horse holding a rope.\", \" A calf is released from a pen and he chases after it.\", \" The man jumps off his horse and ties the legs of the calf.\", \" The calf gets up and gets back on his horse.\"]}, \"v_-F7QWQA8Eh8\": {\"duration\": 104.31, \"timestamps\": [[0, 13.56], [13.04, 52.15], [41.72, 100.13]], \"sentences\": [\"A camera pans close to a stage as well as a woman's face.\", \" The woman then begins dancing with a man on stage while holding a crown.\", \" The couple continue dancing around and ends by bowing to the audience.\"]}, \"v_2-SPZIF5lPY\": {\"duration\": 139.62, \"timestamps\": [[0, 14.66], [22.34, 73.3], [87.96, 139.62]], \"sentences\": [\"A group of men are being interviewed about jousting.\", \" They join together in a gym to joust.\", \" A man and woman gear up and parry with each other.\"]}, \"v_PFrFwE3CfjE\": {\"duration\": 180.35, \"timestamps\": [[3.61, 172.23], [36.97, 59.52], [86.57, 168.63]], \"sentences\": [\"A pregnant woman is standing in a room.\", \" She dips wall paper into a black bucket.\", \" She puts the wall paper on the wall of a shelf behind her.\"]}, \"v_-Z98HU6T7J8\": {\"duration\": 131.96, \"timestamps\": [[0, 9.9], [4.62, 19.13], [11.88, 130.64], [32.99, 130.64]], \"sentences\": [\"A hardwood floor is shown on the ground.\", \" The camera hangs off of a balcony.\", \" A small bat is hanging on a window.\", \" A woman stands around looking at it.\"]}, \"v_sCxGclun1E0\": {\"duration\": 110.06, \"timestamps\": [[0, 110.06], [62.19, 76.49], [100.16, 110.06]], \"sentences\": [\"Two kids are sitting behind a counter stirring the ingredients in the bowls.\", \" A kid uses their hands to scrape off the spatula.\", \" Another person stands in front of them and licks his finger.\"]}, \"v_qMj2sCoRHqY\": {\"duration\": 154.51, \"timestamps\": [[0, 3.09], [0, 153.73], [94.25, 112.02]], \"sentences\": [\"A man takes a seat in a chair and raises up his harmonica.\", \" An man play a song on his harmonica seated at home.\", \" The man vigorously moves the harmonica back and forth over the entire range of notes from going from one end immediately back to the other.\"]}, \"v_lnHdEtuXU8w\": {\"duration\": 77.81, \"timestamps\": [[4.28, 77.81], [9.34, 12.06], [35.01, 47.46]], \"sentences\": [\"A woman is standing in a room talking.\", \" She picks up a black hair dryer.\", \" She starts using it on her shirt.\"]}, \"v_98YZQ0gNjpQ\": {\"duration\": 142.73, \"timestamps\": [[0, 10.71], [10.71, 17.84], [17.84, 53.53], [53.53, 76.36], [76.36, 142.73]], \"sentences\": [\"Two dirt bike riders dressed in full motocross gear sit on their motorcycles.\", \"  A motocross rider rides his red dirt bike over some small Whoop-De-Dos.\", \" The camera man pans across the motocross course with different riders riding on different parts of the course.\", \" A group of motocross riders perform some jumps at high speed from multiple directions.\", \" A group of motocross riders ride on the motocross course performing tricks and other riding skills.\"]}, \"v_UajYunTsr70\": {\"duration\": 21.57, \"timestamps\": [[0, 2.8], [3.45, 16.39], [17.37, 21.57]], \"sentences\": [\"A cat is sitting on top of a white sheet.\", \" It is licking its paws over and over again.\", \" It rubs its head in between paw licks.\"]}, \"v_4VAhZEpQsv8\": {\"duration\": 195.65, \"timestamps\": [[0, 28.37], [9.78, 42.07], [24.46, 53.8], [129.13, 195.65]], \"sentences\": [\"A close up of nails are shown.\", \" A women paints her nails gray.\", \" She then paints black dots on them.\", \" She then coats them with a finisher.\"]}, \"v_O5vpeIfQxLQ\": {\"duration\": 158.73, \"timestamps\": [[0, 6.35], [7.14, 11.9], [12.7, 102.38], [103.18, 137.3], [137.3, 151.59], [151.59, 158.73]], \"sentences\": [\"A collage of still photos shows people eating.\", \" The graphic \\\"Ice Cream Eating Competition\\\" appears on screen.\", \" Three people are eating ice cream out of cups with their fingers.\", \" The woman on the far end finishes hers first, followed by the other two.\", \"  Credits animate on the screen.\", \" The collage reappears with \\\"The End\\\" on it.\"]}, \"v_i_16EfqIrFg\": {\"duration\": 4.71, \"timestamps\": [[0, 0.38], [0.66, 2.26], [2.33, 4.71]], \"sentences\": [\"A group of men are on top of a roof.\", \" They move around on top of the house.\", \" They are removing tiles revealing the base beneath.\"]}, \"v_qY7LG7r_IA8\": {\"duration\": 228.65, \"timestamps\": [[0, 10.29], [24.01, 73.17], [88.03, 228.65]], \"sentences\": [\"A young girl is leaning foward as if looking at something.\", \" She stands up, and takes her friend's hand.\", \" They dance and twirl each other around the room.\"]}, \"v_JWN0cMm-8ug\": {\"duration\": 217.62, \"timestamps\": [[0, 25.03], [25.03, 69.64], [69.64, 90.31], [90.31, 217.62]], \"sentences\": [\"man is standing in a sidewalk talking to the camera in a square and a lot of people are walking behind him.\", \" man is in front of the bullring talking to the camera.\", \" man is walking in the stands of the bullring along with othe people.\", \" bullfighters walks in the court and are bullfighting.\"]}, \"v_dQR6VEemP24\": {\"duration\": 54.1, \"timestamps\": [[0, 54.1], [4.06, 32.19], [51.4, 54.1]], \"sentences\": [\"A dog is standing in a bath tub.\", \" A person is spraying the dog with a shower nozzle.\", \" They start drying the dog off with a towel.\"]}, \"v_R3MPcPKQYKE\": {\"duration\": 27.26, \"timestamps\": [[0, 3.68], [3.95, 16.22], [16.77, 27.26]], \"sentences\": [\"A man is working inside a house.\", \" He is laying tiles one at a time.\", \" He smooths the tiles gently into place.\"]}, \"v_dVcnkTR5EBE\": {\"duration\": 117.75, \"timestamps\": [[0, 17.66], [17.66, 54.75], [54.75, 71.83], [71.83, 117.75]], \"sentences\": [\"A man wearing a blue sweater walks from a warehouse to the camera.\", \" The man explains how to use an remove ice from a car windshield.\", \" The man brushes snow from the windshield.\", \" The man pours water directly onto the windshield that has ice on it.\"]}, \"v_mwUP1yZQsh0\": {\"duration\": 160.15, \"timestamps\": [[0, 69.66], [69.66, 97.69], [97.69, 160.15]], \"sentences\": [\"kids are in a playground playing in a small slide.\", \" kids are in a room playing and enters in a small white playhouse.\", \" the kids back to the slide in the playground.\"]}, \"v_xsdrqauYhJs\": {\"duration\": 130.59, \"timestamps\": [[4.57, 9.79], [9.79, 38.52], [22.2, 26.12], [38.52, 65.95], [65.3, 87.5], [87.5, 92.07], [93.37, 94.68], [95.33, 104.47], [105.12, 109.7], [110.35, 114.92], [115.57, 130.59]], \"sentences\": [\"Two young girls stand in a kitchen, with one holding a bag of something and talking and the other standing on a chair.\", \" The two collaborate to mix the bag and some other ingredients in a large bowl.\", \" The first girl gets something from the refrigerator.\", \" The two are shown mixing the bowl in turn.\", \" The two shapes the mix from the bowl into lumps and places them on a baking sheet.\", \" The two place the baking sheet in an oven.\", \" The two girls hug each other.\", \" The two girls sit in front of the oven licking their mixing spoons.\", \" The two girls remove the baking sheet from the oven.\", \" The two girls sit with a plate of baked cookies between them.\", \" An ending black screen with text is shown.\"]}, \"v_sdR443ncw-I\": {\"duration\": 23.59, \"timestamps\": [[0, 2.24], [2.24, 8.49], [8.49, 18.99], [18.99, 23.59]], \"sentences\": [\"A girl with long dark brown hair is standing with her back turned to the camera and is adjusting her all black clothing.\", \"The girl begins to brush her hair on the left side.\", \" The girl then grabs all of her hair to the left side and brushes some more.\", \" When the girl is done brushing a screenshot of the long hair is shown.\"]}, \"v_PCSlAOYPMOs\": {\"duration\": 88.55, \"timestamps\": [[0, 30.99], [30.11, 48.7], [41.62, 70.4], [50.92, 80.14], [82.35, 86.78], [85.89, 88.55]], \"sentences\": [\"Several individuals are shown hitting the badminton shuttlecock in turn.\", \" A man stands still on a badminton court.\", \" Lines radiate from the man's position on the court.\", \" The man maneuvers along some of the lines in the court.\", \" A dashed line outlines a square area on the court.\", \" The man moves within the square.\"]}, \"v_YQfJWGJ75Pk\": {\"duration\": 89.56, \"timestamps\": [[0, 89.56], [0, 14.78], [14.78, 77.02], [77.02, 89.11]], \"sentences\": [\"A man demonstrates how to spray varnish a chest of drawers using a spray nozzle varnish hose.\", \"  A man sprays a chest of drawers with varnish while standing barefoot outdoors.\", \"  The man covers the entire chest from the very top to the bottom with the spray varnish which is coming from a long hose attached to a metal pump.\", \"  The man finishes spraying the chest and hangs the nozzle up and walks away as the camera focuses on the finished product.\"]}, \"v_oA_uJ9gLvUQ\": {\"duration\": 70.71000000000001, \"timestamps\": [[0, 6.01], [6.01, 10.25], [10.61, 48.08], [48.43, 58.69], [58.69, 70.71]], \"sentences\": [\"A \\\"Trend Routing Technology\\\" logo appears on screen.\", \" \\\"Knife Sharpening using a Diamond Bench Stone\\\" appears.\", \" Two men demonstrate sharpening a knife using a honing stone.\", \" The man cuts paper with the knife.\", \" An advertisement for their website appears along the logo.\"]}, \"v_Oent5pguFk4\": {\"duration\": 21.18, \"timestamps\": [[0, 0.11], [0.21, 10.27], [10.48, 21.18]], \"sentences\": [\"The video is shot at the wrong angle.\", \" A woman is riding a stationary bike.\", \" She continues to ride the bike while speaking to the camera.\"]}, \"v_E5zIMqTj4nc\": {\"duration\": 103.96000000000001, \"timestamps\": [[0, 19.75], [17.67, 72.77], [62.37, 99.28]], \"sentences\": [\"A man is seen speaking to the camera while standing on a snowboard.\", \" He begins inching his way down a hill and laying on the ground.\", \" He stands up and continues riding down the hill past others.\"]}, \"v_4SecbKo1iGE\": {\"duration\": 148.75, \"timestamps\": [[0, 11.9], [11.9, 18.59], [19.34, 43.88], [43.88, 89.99], [89.99, 121.23], [121.97, 148.75]], \"sentences\": [\"We see an opening title screen.\", \" We see a mans hands gestures towards wood.\", \" the man then paints the wood with a brown paint.\", \" the man the paints a different color of paint on the wood .\", \" The man rubs mica powder in wax on the piece of  trim.\", \" We see the finished product and the end credits.\"]}, \"v_p9hJmlWGvFI\": {\"duration\": 50.76, \"timestamps\": [[0.51, 12.18], [13.7, 33.5], [29.44, 46.44]], \"sentences\": [\"A small group of people are seen playing soccer and team mates cheering.\", \" A person scores a goal several times and cheers with team mates.\", \" The game continues and leads into a woman speaking to the camera.\"]}, \"v_87pCIcWgwVM\": {\"duration\": 212.35, \"timestamps\": [[0, 179.43], [0, 22.3], [11.68, 21.23], [21.23, 166.69], [166.69, 181.56]], \"sentences\": [\"A man demonstrates how to jump rope in different locations including walkways, steps and paved sidewalks.\", \" A man is seen walking down a gravel pathway with a white cord strapped across his chest.\", \" The man begins jumping rope on steps and on elevated stone platforms.\", \" The man is then seen running up an down stone stairs outdoors before jumping rope on staircases and in tunnels at various speeds.\", \"The man is seen in a still shot with the white strap across his chest again.\"]}, \"v_JE50XTpCN78\": {\"duration\": 219.03, \"timestamps\": [[5.48, 93.09], [94.18, 144.56], [145.66, 159.89], [160.99, 216.84]], \"sentences\": [\"A woman explains how to polish the fingernails.\", \" Then, the woman polish the fingernail of the index of a person using a nail file.\", \" After, the woman cuts the sides of the nails.\", \" After, the woman gives form to the nails with the nail file.\"]}, \"v_6U081DbNJIY\": {\"duration\": 121.02, \"timestamps\": [[0, 9.68], [16.94, 59.91], [62.93, 121.02]], \"sentences\": [\"a man is shown running on a field.\", \" He is holding a javelin over his shoulder.\", \" He throws it as far as he can.\"]}, \"v_CjoAnld43C4\": {\"duration\": 217.39, \"timestamps\": [[0, 22.83], [28.26, 122.82], [147.82, 217.39]], \"sentences\": [\"Two men are together in a room.\", \" They are engaged in practicing jousting.\", \" They jab and stab at each other with swords.\"]}, \"v_vL8Hy6lcnF8\": {\"duration\": 223.31, \"timestamps\": [[0, 35.73], [44.66, 125.05], [132.87, 223.31]], \"sentences\": [\"A group is gathered inside a building.\", \" They begin dancing in unison.\", \" They move and swing in time to the music.\"]}, \"v_t1U8fJVEztQ\": {\"duration\": 13.33, \"timestamps\": [[0, 13.33], [0.53, 13.33], [7.46, 11.93]], \"sentences\": [\"People are running down a street.\", \" Cars are driving on the street behind them.\", \" A woman in shorts is running down the street.\"]}, \"v_C3Mdjku7ZmM\": {\"duration\": 127.15, \"timestamps\": [[0, 47.05], [46.41, 50.86], [51.5, 127.15]], \"sentences\": [\"A person is cleaning a sink with a pipe.\", \" They turn the faucet on.\", \" They stick the pipe down the drain of the sink.\"]}, \"v_chMp_uvII5g\": {\"duration\": 45.42, \"timestamps\": [[0, 0.45], [0.45, 4.09], [4.09, 45.42]], \"sentences\": [\"A group of people are in attached innertubes at the top of a snowy hill.\", \"  A man at the top pushes them.\", \" The group rides down hill with the camera pointed up the hill.\"]}, \"v_CdwgIN9FkdY\": {\"duration\": 35.81, \"timestamps\": [[0, 2.69], [6.62, 20.05], [22.38, 35.81]], \"sentences\": [\"A man is kneeling inside a gym.\", \" He lifts equipment over his head.\", \" He continues stretching over and over again.\"]}, \"v_w--X02F3MHM\": {\"duration\": 35.83, \"timestamps\": [[1.25, 35.65], [3.94, 25.44], [25.08, 35.83]], \"sentences\": [\"Three children play hopskotch in a driveway.\", \"  The kid in blue goes first, then the kid in red goes.\", \"  Finally, the kid in black goes quickly.\"]}, \"v_Rj_SwlpOhNk\": {\"duration\": 109.59, \"timestamps\": [[0, 22.47], [22.47, 73.97], [75.07, 109.59]], \"sentences\": [\"a man is in a raft on rough waters.\", \" the man begins paddling profusely.\", \" the water eventually calms and the man paddles at regular speed.\"]}, \"v_jWPr92KwXeY\": {\"duration\": 150.37, \"timestamps\": [[0.75, 40.6], [33.83, 98.49], [98.49, 148.12]], \"sentences\": [\"A person is seen riding down a snowy mountain on a snowboard.\", \" The camera followed the person constantly down the mountain.\", \" The person continues riding and going over jumps while the camera captures his movements.\"]}, \"v_7ZbH4vHTmVs\": {\"duration\": 105.58, \"timestamps\": [[0, 97.14], [21.12, 27.98], [98.72, 105.58]], \"sentences\": [\"People are raking leaves in a front yard.\", \" Two girls are lifting the leaves up and putting them into a garbage can.\", \" People are sitting in a mini van.\"]}, \"v_IBscTNN6qfY\": {\"duration\": 237.03, \"timestamps\": [[0, 18.96], [24.89, 118.52], [135.11, 237.03]], \"sentences\": [\"A woman is seated on a couch, brushing another woman's hair.\", \" She proceeds to talk about how to do corn rows.\", \" She demonstrates by adding multiple cornrows to the woman's hair.\"]}, \"v_AH4v5vqsUlc\": {\"duration\": 56.33, \"timestamps\": [[0, 23.66], [24.22, 34.93], [35.21, 46.19], [47.6, 56.33]], \"sentences\": [\"A little boy is climbing up the stairs of a play gym, he stops once and points at a red tube opening but passes it.\", \" He gets to the red tube slide at the top and points to it and then slides down.\", \" Once on the ground he walks around for a bit then turns around and points up.\", \" Then he goes back and starts up the stairs again.\"]}, \"v_nbcRj00xCKM\": {\"duration\": 133.86, \"timestamps\": [[4.02, 11.38], [11.38, 131.19], [131.86, 133.86]], \"sentences\": [\"An individual is mostly submerged underwater while wearing a wakeboard and holding a tether to a boat.\", \" The individual gets dragged forward and begins wakeboarding with the camera capturing the individual from a low angle.\", \" The individual releases the tether and begins to sink into the water.\"]}, \"v_r8DXz1FOb90\": {\"duration\": 128.13, \"timestamps\": [[0, 33.31], [29.47, 79.44], [77.52, 125.57]], \"sentences\": [\"A woman is seen standing on a court with a dog throwing a frisbee.\", \" A man kneels in and begins helping the woman and her dog.\", \" The two continue to play with one another as the dog runs around.\"]}, \"v_dB50ZkOlDzY\": {\"duration\": 41.87, \"timestamps\": [[0, 41.87], [3.56, 41.87], [12.14, 41.87]], \"sentences\": [\"The young man is swinging on two poles.\", \" The young man did hand stands on the pole and started swinging.\", \" The young man keep swimming and pausing to do handstand.\"]}, \"v_7o-2My6U3GU\": {\"duration\": 107.88, \"timestamps\": [[0, 105.18], [3.24, 51.78], [37.22, 92.78], [90.08, 107.88]], \"sentences\": [\"There's a person dressed in winter gear shoveling his walkway with his dog next to him.\", \" The man begins by taking the shovel and shoveling off some of the snow from his walkway and dumping it on the side lawn while his dog plays around in the snow.\", \" He walks down his pathway as he picks up the snow in his shovel and piles it up on top of the heap of snow.\", \" After he's done, he keeps the shovel down and walks back into the house.\"]}, \"v_qRI4UJ2HR2g\": {\"duration\": 162.84, \"timestamps\": [[0, 34.2], [34.2, 100.15], [87.12, 161.21]], \"sentences\": [\"A man is seen speaking to the camera and leads into him holding his arm out.\", \" Another man is shown tattooing his arm while looking to the camera.\", \" The artist continues working and shows it off in the end.\"]}, \"v_JKZ-3N1fYL8\": {\"duration\": 11.38, \"timestamps\": [[0, 1.88], [2.22, 8.08], [8.76, 11.38]], \"sentences\": [\"A woman is working outside in the yard.\", \" She is using a large rake to work.\", \" She is raking leaves out of the grass.\"]}, \"v_cnjaB6GFpSc\": {\"duration\": 158.9, \"timestamps\": [[4.77, 158.9], [0, 155.72], [0, 158.9]], \"sentences\": [\"people ae in a wooden room doing exercise.\", \" people are doing steps on a room following a choreography.\", \" man is holding a microphone leading the step group.\"]}, \"v_59R_1aBnFn4\": {\"duration\": 6.18, \"timestamps\": [[0, 1.17], [1.33, 4.51], [4.48, 6.18]], \"sentences\": [\"A man is seen standing outside and lifts another up onto his shoulders.\", \" The man then throws the other one down on a mat.\", \" The one thrown down covers his head.\"]}, \"v_vzrZJX-Slzg\": {\"duration\": 124.9, \"timestamps\": [[0, 20.61], [19.98, 108.04], [108.66, 124.9]], \"sentences\": [\"The camera focuses on some sort of machinery with many wires and hoses connected.\", \" The camera pans to show an individual welding something on a large metal drill head.\", \" The man stops welding and the camera zooms in on the part of the drill head affected.\"]}, \"v_HwRiUpC5mf4\": {\"duration\": 201.85, \"timestamps\": [[0, 4.04], [5.05, 18.17], [19.18, 56.52], [57.53, 61.56], [62.57, 75.69], [76.7, 145.33], [146.34, 201.85]], \"sentences\": [\"\\\"a camel ride-desrt of doha-Qatar\\\" is shown on screen.\", \" A family stands around a sitting camel while the little boy pats his head.\", \" The camel stands up and walks off with the family riding on its back.\", \" A group of military men riding horses in a line approaches.\", \" A young boys filters sand in his hand.\", \" The video is reversed showing the horses and camel walking backward.\", \" The camel sits and the people get off his back.\"]}, \"v_UGujWA07GkM\": {\"duration\": 103.53999999999999, \"timestamps\": [[1.04, 33.65], [29.51, 81.28], [67.3, 102.5]], \"sentences\": [\"A man is seen dealing cards on a table surrounded by people.\", \" The people play a game of poker while speaking to the camera.\", \" More people are shown speaking to the camera as well as playing around the casino.\"]}, \"v_pznmOdbp7E0\": {\"duration\": 210.4, \"timestamps\": [[0, 52.6], [54.7, 62.07], [63.12, 108.35], [108.35, 170.42], [171.47, 210.4]], \"sentences\": [\"A rectangular bowl of cake is top of stove followed by the ingredients and equipments list.\", \" The materials listed are on the top of the kitchen counter while a girl is pointing on the temperature setting of the oven.\", \" The girl starts to make the cake with the written instruction at the bottom.\", \" After mixing the cake ingredients she pour it on a glass bowl and put it inside the oven, bake it and insert a toothpick in the middle and inspect it and pull out the cake.\", \" It is allowed to cool and add ready made icing an sprinkles on top.\"]}, \"v_0r-_a6m5k-0\": {\"duration\": 46.65, \"timestamps\": [[0, 30.79], [7.46, 30.79], [38.95, 46.65]], \"sentences\": [\"A woman is sitting on the ground peeling a fruit with a knife.\", \" Another girl is sitting next to her eating something out of a bowl.\", \" People are standing up next to them in front of a table.\"]}, \"v_p3vw2UJvLZE\": {\"duration\": 38.06, \"timestamps\": [[0, 38.06], [0.57, 1.33], [1.33, 2.09], [11.04, 24.93]], \"sentences\": [\"Children are sitting around a green, casino table, and adults are standing behind them.\", \" A person brings a plate of a piece of cake close to the table.\", \" A boy uses his hand to rub on his face.\", \" A guy moves playing cards around.\"]}, \"v_pMDFkrK0KRc\": {\"duration\": 185.09, \"timestamps\": [[0, 36.09], [45.35, 153.62], [158.25, 185.09]], \"sentences\": [\"A man is talking to the camera.\", \" He is wearing a pair of black glasses.\", \" He takes off the glasses and applies contact lenses.\"]}, \"v_zQVUXbyCV1o\": {\"duration\": 183.55, \"timestamps\": [[0, 1.84], [2.75, 22.94], [23.86, 168.87], [170.71, 183.55]], \"sentences\": [\"A logo is shown that says Le Meilleur Du Beach Soccer.\", \" Then men playing a type of soccer in the sand.\", \" Various teams are shown playing the sport and making goals.\", \" Then the logo is shown again at the end along with some credits.\"]}, \"v_vrY1ZMqjMog\": {\"duration\": 51.85, \"timestamps\": [[0, 51.59], [0.26, 51.85], [0, 51.85]], \"sentences\": [\"man is standing in a room milling one of the wall.\", \" man is showing to the camera hot to mill a wall.\", \" man is walking in a small room that have a plastic on the floor to not mess up the floor.\"]}, \"v_GrACpo7aonA\": {\"duration\": 213.37, \"timestamps\": [[0, 20.27], [20.27, 40.54], [68.28, 97.08], [40.54, 211.24]], \"sentences\": [\"Edrum attic logo and title card appear.\", \" A man in a black polo shirt is sitting in front of an electronic drum set.\", \" The tutorial starts by showing each part of the drum set up close.\", \" The man demonstrates each feature for the rest of the instructional video.\"]}, \"v_9fQ2wWFJJGo\": {\"duration\": 213.42000000000002, \"timestamps\": [[0, 44.82], [44.82, 85.37], [85.37, 138.72], [138.72, 185.67], [185.67, 213.42]], \"sentences\": [\"A man and a woman are standing outside at a beach in the sand talking while the lady holds a brown paper bag in her hand and a man begins filming them.\", \"Two females then appear in the sand with a orange bucket and plastic shovel making sand castles.\", \"More pairs of women are shown adding sand in their buckets and making their castles in the dirt together.\", \"The teams begin to get extremely individual and add words and feathers to their masterpiece before the man and lady come around to judge them.\", \"Finally, the winners appear and they are gifted toy dolphins and begin to laugh and hug the stuffed animals.\"]}, \"v_T69Cadlc62E\": {\"duration\": 68.43, \"timestamps\": [[17.11, 63.64], [4.45, 63.64], [46.19, 48.93]], \"sentences\": [\"People are hitting balls into a net with a stick.\", \" People stand on the sidelines watching them.\", \" A person dressed up in a bunny costume stands next to them.\"]}, \"v_dNgXkPmvU-c\": {\"duration\": 172.97, \"timestamps\": [[0, 5.19], [6.05, 83.02], [84.75, 91.67], [91.67, 108.97], [108.97, 140.97], [140.97, 169.51], [169.51, 172.97]], \"sentences\": [\"The camera is pointed towards a beige and black couch in a living room and shoes and socks fall in front of the camera.\", \" A man enters and sits on the ground in front of the camera and puts on his shoes and socks.\", \"  The man stands up in front of the camera.\", \" The man turns circles showing off his shoes.\", \" The man kneels down and shoes the camera the bottom of the shoes.\", \" the man sits down and rubs the shoes on each other and continues to show them off.\", \" The man bends forwards and turns off the camera.\"]}, \"v_r-BJYixThME\": {\"duration\": 20.9, \"timestamps\": [[0, 2.3], [4.18, 15.78], [16.4, 20.9]], \"sentences\": [\"Some people are at the top of a snowy hill.\", \" They use inflatable tubes to slide down the slope.\", \" A person raises their arms in celebration at the top of the hill.\"]}, \"v_Cz5fahiO1AA\": {\"duration\": 61.93, \"timestamps\": [[3.72, 15.48], [16.1, 37.47], [37.47, 50.47], [50.78, 57.28]], \"sentences\": [\"A man puts water in a pot to boil.\", \" Then, the man adds penne pasta and salt to cook.\", \" After, the man drains the penne pasta and put it in a pot.\", \" Next, the man adds sauce and water.\"]}, \"v_uz04njTFKP8\": {\"duration\": 45.77, \"timestamps\": [[0, 44.17], [23.34, 31.12], [43.25, 45.77]], \"sentences\": [\"Two people are playing tennis on a court.\", \" The crowd watching them play cheers.\", \" A man misses the ball and it goes off the court.\"]}, \"v_Zt8zZhMs4Es\": {\"duration\": 236.47, \"timestamps\": [[0, 39.02], [42.57, 163.17], [166.71, 236.47]], \"sentences\": [\"A man is seen inside a gym.\", \" He is holding a racquet and ball in his hands.\", \" He serves the ball over the net several times.\"]}, \"v_HHG1kCydLYU\": {\"duration\": 189.82, \"timestamps\": [[0, 64.54], [51.25, 142.37], [126.23, 185.08]], \"sentences\": [\"A small group of people are seen standing around a kitchen eating food.\", \" They speak to one another as a man cooks for them in front and mixes ingredients together.\", \" he continues cooking and speaking to the women and showing off his work in the end.\"]}, \"v_Z2QA7dUVwMM\": {\"duration\": 212.51, \"timestamps\": [[20.19, 81.82], [78.63, 100.94], [162.57, 175.32], [187.01, 189.13]], \"sentences\": [\"A person puts a tire onto a wheel with a tool.\", \" They pour soap around the rim of the tire.\", \" They spray the tire with something from a can.\", \" A person holds a tiki torch to the tire.\"]}, \"v_KI6FNa3BwMM\": {\"duration\": 214.53, \"timestamps\": [[3.22, 53.63], [34.32, 175.91], [165.19, 214.53]], \"sentences\": [\"an indoor soccer match is in play.\", \" the players mostly kick the ball in the center of the court.\", \" a goal is eventually made and the team switches sides.\"]}, \"v_clSku91LoQQ\": {\"duration\": 126.27, \"timestamps\": [[0, 15.15], [17.05, 75.76], [76.39, 126.27]], \"sentences\": [\"a man is wearing sunglasses and singing on stage.\", \" Another man is playing an electric guitar to his right.\", \" A little boy joins them, singing and playing an accordian.\"]}, \"v_F9Wv_Lxe_QM\": {\"duration\": 43.05, \"timestamps\": [[0.22, 11.41], [11.19, 17.87], [19.37, 42.19]], \"sentences\": [\"Two men are seen standing on a platform with one holding the other.\", \" The man in front then puts his arms out in front of him.\", \" The other then pushes him down towards the ground.\"]}, \"v_L1B_cE8waag\": {\"duration\": 199.82999999999998, \"timestamps\": [[0, 66.94], [66.94, 149.87], [149.87, 199.83]], \"sentences\": [\"A young man is riding down the road on a skateboard in his neighborhood before eventually falling down on the ground.\", \"After,more boys begin traveling on skateboards but they all fall on the ground after several attempts at a trick.\", \"Finally,a boy appears and gets up from off the ground with dirt on his face and shrugging his shoulders.\"]}, \"v_j4-w606GnYw\": {\"duration\": 195.05, \"timestamps\": [[0, 12.68], [11.7, 105.33], [95.57, 191.15]], \"sentences\": [\"A large group of people are seen standing together with a man running in front.\", \" They group then begins dancing together in the room.\", \" The man continues to lead the group dancing and ends by him walking forward.\"]}, \"v_vBOejU7dBzY\": {\"duration\": 107.7, \"timestamps\": [[0, 24.23], [24.77, 34.46], [34.46, 39.85], [39.31, 60.85], [60.85, 65.69], [66.77, 107.7], [87.77, 107.7]], \"sentences\": [\"A woman uses a spray and a comb on a horse's mane and tail while another woman holds the horse steady.\", \" The horse is shown running in an enclosed pasture.\", \" A still image of the spray product is shown.\", \" The woman continues to clean the horse's mane and tail.\", \" The spray product is shown again.\", \" A woman talks to the camera while standing next to a horse.\", \" The woman holds up the spray product with one hand and part of the horse's tail with the other.\"]}, \"v_fWVUEOVUzS4\": {\"duration\": 149.4, \"timestamps\": [[0, 142.68], [0, 147.16], [0, 149.4]], \"sentences\": [\"a little dwarf man and a irl are playing tennis on a court.\", \" on a court side people are siting on tables.\", \" two person are playing on a tennis court.\"]}, \"v_len7R78v5NY\": {\"duration\": 98.28999999999999, \"timestamps\": [[0, 28.01], [24.57, 68.31], [65.36, 96.82]], \"sentences\": [\"Two men are seen speaking to the camera in front of an exercise equipment.\", \" One man gets on and begins demonstrating how to use it.\", \" The other man uses the machine while the first speaks to the camera.\"]}, \"v_EF74-5YIhAk\": {\"duration\": 44.68, \"timestamps\": [[0, 2.9], [2.01, 16.98], [16.75, 36.86], [36.86, 44.68]], \"sentences\": [\"a man anda woman are standing next to a car holding kayaks equipment.\", \" the woman sits in he green kayak and get in the water holding the row.\", \" the other man is in the white kayak and is behind the woman in the sea.\", \"the man and the woman are kayaking together in a calm sea.\"]}, \"v_Gq8-XVrlAt4\": {\"duration\": 173.29, \"timestamps\": [[0, 20.79], [31.19, 98.78], [103.97, 173.29]], \"sentences\": [\"A man and woman are standing on a tennis court.\", \" They bounce and serve the ball one at a time.\", \" The woman continues serving the ball against the back fence.\"]}, \"v_BKdKbFPerGo\": {\"duration\": 70.94, \"timestamps\": [[0, 10.64], [12.06, 48.59], [54.27, 70.94]], \"sentences\": [\"A group of people are walking down train tracks.\", \" They get into the river water in tubes.\", \" They glide down the river on the tubes.\"]}, \"v_aFSaGCvYXXY\": {\"duration\": 221.0, \"timestamps\": [[0, 221], [33.15, 43.09], [14.36, 183.43], [184.53, 221]], \"sentences\": [\"A video is shown of an outdoor water ski camp for kids.\", \"  Instructors are shown giving disabled children a chance at fun with specialized equipment for water skiing.\", \"  Camp instructors and children give testimonials on the experience.\", \"  A graphic screen is shown with the camp logo, followed by a website address, sponsors of the camp, the media company and it's website address and a slogan.\"]}, \"v_-U4lNtzVQ8s\": {\"duration\": 89.19, \"timestamps\": [[0, 11.15], [14.27, 56.63], [58.86, 89.19]], \"sentences\": [\"A man is inside a house.\", \" He sits down on a bench to remove his pants.\", \" He then loads a torch and burns the hair off his legs.\"]}, \"v_kXbc9D0sF5k\": {\"duration\": 191.43, \"timestamps\": [[0, 37.33], [31.59, 130.17], [103.37, 189.51]], \"sentences\": [\"People are seen shoveling snow in several clips as well as getting a camera ready.\", \" Many people speak to the camera as people ski around public places.\", \" People perform jumps and tricks while sometimes falling and continuing to speak to the camera.\"]}, \"v_QBqfrJzcrns\": {\"duration\": 69.43, \"timestamps\": [[1.39, 18.75], [12.84, 46.86], [49.99, 68.04]], \"sentences\": [\"A woman is seen ironing a shirt and speaking to the camera.\", \" She plugs in the iron and points to the table while folding the shirt.\", \" She continues speaking and showing off the iron.\"]}, \"v_iZUwLKd5TTk\": {\"duration\": 203.59, \"timestamps\": [[0, 43.77], [43.77, 85.51], [85.51, 141.5], [141.5, 188.32], [195.45, 203.59]], \"sentences\": [\"A young boy with a short haircut is standing in a room talking into the camera.\", \"As the camera turns,a woman appears ironing a blue shirt.\", \"She begins pressing the front and then flips it over to ensure the back doesn't have any wrinkles in it either.\", \"During the process,a small white dog runs under the ironing bard and the lady begins doing the sleeves.\", \"Once complete,the boy comes back and starts talking about something again.\"]}, \"v_UadYaZOC6B8\": {\"duration\": 75.26, \"timestamps\": [[3.01, 22.95], [19.94, 53.81], [40.64, 69.99]], \"sentences\": [\"A close up bathroom supplies are shown as well as a faucet running.\", \" A person's hands are then seen scrubbing soap into their hands.\", \" Finally they wash off the soap under the faucet.\"]}, \"v_tyjUDi3uLd0\": {\"duration\": 235.92000000000002, \"timestamps\": [[0, 4.72], [4.72, 74.31], [74.31, 202.89], [202.89, 235.92]], \"sentences\": [\"An introduction comes onto the screen for a video about home improvement.\", \" And then comes on and talks about some key points to remember when doing a  flooring project.\", \" He then proceeded to show a method of balancing tiles on my floor with a string.\", \" The video in the closing credits and graphics shown on the screen.\"]}, \"v_LdzaFk5VrD0\": {\"duration\": 161.17000000000002, \"timestamps\": [[0, 161.17], [7.25, 54.8], [45.93, 92.67], [87.03, 98.31], [96.7, 147.47], [144.25, 161.17]], \"sentences\": [\"There's a woman sitting in her bedroom talking about how to wear contact lenses.\", \" She demonstrates by taking the lens on her fingers and putting it into her left eye first.\", \" Then she uses her fingers to show how to gently place the lens correctly into the eye.\", \" Then she adjusts her upper lid to make sure the lens has fitted in properly.\", \" Then she uses her fingers to show how to correctly flex the lens before wearing them.\", \" Then she signs off from the tutorial and waves goodbye.\"]}, \"v_Xz3F4x70qjQ\": {\"duration\": 111.06, \"timestamps\": [[0, 111.06], [14.99, 16.1], [85.52, 111.06]], \"sentences\": [\"A small girl holding a cup feeds both herself and a smaller child with a spoon, while people occasionally walk past in the background.\", \" A hand briefly extends into the foreground and snaps.\", \" The camera focuses on the smaller child.\"]}, \"v_orwTrxIwCpo\": {\"duration\": 132.19, \"timestamps\": [[0, 31.73], [34.37, 94.52], [77.33, 124.92]], \"sentences\": [\"A man is seen standing behind a car holding a hose.\", \" The man speaks to the camera while spraying down the car.\", \" The man continues to clean the car while speaking to the camera.\"]}, \"v_3TLhUYQ8geM\": {\"duration\": 200.34, \"timestamps\": [[0, 65.11], [49.08, 147.25], [156.27, 199.34]], \"sentences\": [\"A close up of a tire is seen followed by a man using a bar to undo it.\", \" The man spins the bar all around and finally takes off the tire.\", \" He wipes it down and then pushes it back on.\"]}, \"v_Ny8NDMWfGJk\": {\"duration\": 196.42000000000002, \"timestamps\": [[0, 27.5], [42.23, 134.55], [150.26, 196.42]], \"sentences\": [\"A large red truck is parked by gravel.\", \" Men gather at the back of the truck.\", \" Another truck appears, and uses a hose to weed back into the second truck.\"]}, \"v_rcDw6If4hjc\": {\"duration\": 48.97, \"timestamps\": [[0, 13.22], [13.22, 33.06], [33.06, 48.97]], \"sentences\": [\"A bowler wearing green shorts bowls and makes a strike.\", \" The bowler bowls another ball using both hands and makes another strike.\", \" Slow motion clips of the mans hand position and spin on the ball is repeated multiple times.\"]}, \"v_FrRKm_V0lZU\": {\"duration\": 40.01, \"timestamps\": [[0, 8.2], [7.2, 25.01], [22.6, 40.01]], \"sentences\": [\"a man is standing at a bar.\", \" the man takes a bottle and pours contents into a glass.\", \" the man then drinks from the glass.\"]}, \"v_WKoHUS5B2u4\": {\"duration\": 180.28, \"timestamps\": [[0, 173.07], [0, 20.73], [0, 72.11], [32.45, 72.11]], \"sentences\": [\"A young man with long hair and sunglasses is holding the camera.\", \" He rotates it around to show his surroundings.\", \" He is in the desert with several other people.\", \" Then he is on a horse riding by pyramids.\"]}, \"v_uJZFC7gHZGI\": {\"duration\": 121.23, \"timestamps\": [[0, 35.76], [30.31, 80.01], [71.53, 121.23]], \"sentences\": [\"A man is putting is gloves on while the woman is bending over on a chair.\", \" The old man used a thong to pierce the side of the woman's mouth.\", \" The old man put an accessory on the woman's lower lip.\"]}, \"v_CoP3xaSZt7A\": {\"duration\": 119.39, \"timestamps\": [[0, 26.27], [28.65, 80.59], [73.42, 117.6]], \"sentences\": [\"A group of people are seen standing in a circle with people performing kicks in the middle.\", \" Several clips of shown of people performing these martial arts and people dancing.\", \" More clips are shown of people playing instruments and dancing while the men perform martial arts.\"]}, \"v_7OYvyg32iqw\": {\"duration\": 192.91, \"timestamps\": [[0, 45.33], [31.83, 161.08], [152.4, 192.91]], \"sentences\": [\"The man is under the water with his head up.\", \" The man is wakeboarding swaying side the side.\", \" The guy let go of the harness and went under the water for a bit and floated.\"]}, \"v_xsBFnpdLWkU\": {\"duration\": 38.45, \"timestamps\": [[0, 15.57], [10.38, 26.53], [25.57, 37.11]], \"sentences\": [\"A woman is seen sitting behind a table dealing cards.\", \" She picks up more cards and lays them out.\", \" She continues to pull out more and more cards.\"]}, \"v_gMLA3a0FMS0\": {\"duration\": 107.03999999999999, \"timestamps\": [[0, 107.04], [4.82, 86.71], [12.31, 90.99], [61.02, 107.04]], \"sentences\": [\"There are two players playing lacrosse in an outdoor field while their coach is giving them instructions by the goal net.\", \" The coach is holding the lacrosse stick in his hand as he demonstrates how to move the body and use the right techniques in lacrosse.\", \" While the coach explains, the two players watch him from the side, near the goal net.\", \" The coach continues to explain by using hand gestures and moving the lacrosse stick to hold it in the correct manner that is suitable for the game.\"]}, \"v_O_e0pqEMZMw\": {\"duration\": 111.71000000000001, \"timestamps\": [[0, 8.94], [15.64, 50.27], [53.62, 111.71]], \"sentences\": [\"a man adjusts the camera on a back porch.\", \" He sits in front of a computer talking to the camera.\", \" He then shows how to do something on the computer.\"]}, \"v_IHpBwsyMT9Q\": {\"duration\": 59.33, \"timestamps\": [[0, 2.37], [2.67, 57.84], [32.93, 33.52], [52.21, 53.69]], \"sentences\": [\"A girl stand inside a garage with darts in her hands.\", \" The girl throws darts at a circle dart board.\", \" The girl gets a dart from the white wall.\", \" The girls picks a dart from the floor.\"]}, \"v_djE5A2S1Ezg\": {\"duration\": 204.55, \"timestamps\": [[2.05, 198.41], [2.05, 10.23], [10.23, 152.39], [152.39, 193.29], [190.23, 198.41]], \"sentences\": [\"A man and woman stand outside of an unpainted brown wooden fence and demonstrate how to paint it using two techniques.\", \"  A woman stands in front of a fence with a dog in the background and talks to the camera.\", \"  A man joins the woman in talking to the camera and then the man begins to paint the wooden fence with a brush.\", \"  The man then begins to paint the fence with a spray bottle.\", \"  The woman returns to talk to the camera again.\"]}, \"v_0cscG-qOaQY\": {\"duration\": 160.73, \"timestamps\": [[0, 53.04], [53.04, 80.36], [80.36, 122.96], [122.96, 160.73]], \"sentences\": [\"woman is wrapping a bowl on top of wooden table and put a bow on top.\", \" woman grabs a box and a wrap a box on blue paper.\", \" the woman cut paper and wrap a small box into a christmas paper.\", \" woman grab a red and golden paper and wraps a whiskey box.\"]}, \"v_VRwI8Iydb_o\": {\"duration\": 141.16, \"timestamps\": [[0, 19.76], [21.17, 100.22], [106.57, 141.16]], \"sentences\": [\"A white sand covered beach is shown by the ocean.\", \" A little girl wakes up and rises her sister.\", \" They run to the beach to play in the sand together.\"]}, \"v_teIE_kXbMiw\": {\"duration\": 107.93, \"timestamps\": [[5.94, 25.9], [26.98, 69.61], [76.09, 84.18]], \"sentences\": [\"A man is sitting down holding knives.\", \" He starts sharpening the knife in his hand.\", \" He rubs the blade of the knife against his hand.\"]}, \"v_kdfJW8YV378\": {\"duration\": 231.55, \"timestamps\": [[0, 13.89], [13.89, 31.26], [31.26, 231.55]], \"sentences\": [\"A field with many racing sail boats being rigged for a competition.\", \" A boy rolls his sail boat to the water and begins sailing in a competition.\", \" Clips of the boy sailing and jumping from side to side on each tack.\"]}, \"v_4zYY4abpCgI\": {\"duration\": 120.37, \"timestamps\": [[13.24, 19.86], [38.52, 76.44], [75.83, 116.16]], \"sentences\": [\"A person is sanding a white board.\", \" He starts to paint the board.\", \" He pours paint into a plastic bin and continues painting.\"]}, \"v_OUIS4bnEhU0\": {\"duration\": 35.99, \"timestamps\": [[0, 9.18], [9.36, 26.27], [25.55, 35.45]], \"sentences\": [\"A woman is seen close up to the camera.\", \" She then begins performing a set of sit ups on a ball.\", \" She continues doing sit ups and stops to smile to the camera.\"]}, \"v_4yZ1agUX004\": {\"duration\": 114.05, \"timestamps\": [[0, 24.52], [25.09, 49.04], [49.04, 111.2], [66.15, 87.25]], \"sentences\": [\"People stand in a marathon start line, then a person gives a signal and people start to run.\", \" Children and adults play in the beach running holding ball.\", \" People play beach volleyball while other people watch.\", \" Men talk on front people playing volleyball.\"]}, \"v_N5x5VUK7Kx8\": {\"duration\": 71.66, \"timestamps\": [[0.36, 18.99], [15.41, 49.44], [43.35, 69.51]], \"sentences\": [\"A man is seen standing on a roof with a small child.\", \" The child holds up a kite and the man pulls on the string.\", \" The two continue to work together and walk around the roof.\"]}, \"v__KOVk8iGbrA\": {\"duration\": 183.02, \"timestamps\": [[0, 16.47], [22.88, 114.39], [135.43, 183.02]], \"sentences\": [\"Several women are shown working inside a shop.\", \" A woman picks out a piercing to get done.\", \" a technician gloves up and applies the piercing for her.\"]}, \"v_juIOpLYnW64\": {\"duration\": 74.63, \"timestamps\": [[0, 10.07], [10.82, 33.96], [33.21, 55.6], [55.6, 74.63]], \"sentences\": [\"A man dressed in a white shirt is talking to a young girl who is sitting on a black bed in a setting similar to a doctor's office.\", \"When they are done talking,the man takes a pair of silver clamps and puts it around the girl's eyebrows.\", \"After,he inserts a needle into her left eyebrow,followed by the jewelry.\", \"Once the balls are screwed in,he takes a napkin and dabs away the blood before holding up a mirror for the girl to see.\"]}, \"v_UGKGBBAckJw\": {\"duration\": 82.76, \"timestamps\": [[0, 16.55], [0, 82.76], [27.72, 76.14], [76.14, 82.76]], \"sentences\": [\"Children are standing on mats in a large basketball court.\", \" They do exercises lead by an instructor that cannot be seen and music is playing.\", \" The children start to do steps back and forth onto and then off of the mats, in between moving their arms.\", \" The children then go right and left, stepping off and on the mats.\"]}, \"v_5oy5Yi6fzJU\": {\"duration\": 43.58, \"timestamps\": [[0, 10.24], [8.93, 30.29], [25.28, 42.93]], \"sentences\": [\"A man is seen pushing a lawn mower with a small child behind him.\", \" A dog walks in and out of frame while the man continues pushing the mower.\", \" The man stops and the boy stands right beside him.\"]}, \"v_RPkLocpR8VQ\": {\"duration\": 77.67, \"timestamps\": [[0, 6.99], [7.38, 42.33], [45.44, 77.67]], \"sentences\": [\"A group of boys are seated at tables.\", \" They are trying to solve rubik's cubes puzzles.\", \" They are being timed as they complete the puzzles.\"]}, \"v_rFTVKkMqpIQ\": {\"duration\": 230.48, \"timestamps\": [[0, 20.74], [26.51, 106.02], [111.78, 230.48]], \"sentences\": [\"A nurse is standing in a room with another woman.\", \" She demonstrates how to wash her hands in the sink.\", \" She lathers well, then rinses and dries her hands.\"]}, \"v_LZC9MLWo9bE\": {\"duration\": 89.91, \"timestamps\": [[0, 23.38], [19.78, 57.09], [51.25, 86.31]], \"sentences\": [\"A close up of wood is seen following by a person walking into frame and cutting the wood.\", \" The person shows a close up of the tool and continues to cut more pieces of wood.\", \" The person cuts up several more pieces of wood.\"]}, \"v_eUKMPNZ3NI4\": {\"duration\": 123.07, \"timestamps\": [[0, 8.61], [15.38, 65.22], [67.07, 123.07]], \"sentences\": [\"A group is gathered around a picnic table.\", \" They are engaged in a game of beer pong.\", \" They are throwing the balls and trying to get them into cups.\"]}, \"v_snvSHNYvRks\": {\"duration\": 35.5, \"timestamps\": [[0, 2.31], [2.31, 10.12], [10.12, 16.33], [16.69, 27.16], [26.98, 29.82], [30.18, 35.5]], \"sentences\": [\"A woman prepares to shot put in front of an audience and judges.\", \" The woman throws the weight.\", \" The woman walks away from the competition area.\", \" The shot put attempt is replayed.\", \" The woman displays a thumbs up sign with both hands.\", \" The woman puts on a shirt as the score is displayed.\"]}, \"v_vy91mJTl7rQ\": {\"duration\": 137.6, \"timestamps\": [[0, 15.14], [19.26, 57.1], [62.61, 137.6]], \"sentences\": [\"A group is gathered on a raft in a river.\", \" They float through the turbulent waters.\", \" They try to stay upright using their paddles.\"]}, \"v_UALnEw4XhTY\": {\"duration\": 237.4, \"timestamps\": [[0, 17.81], [22.55, 96.15], [134.13, 237.4]], \"sentences\": [\"A group of people are at the base of a cliff.\", \" They are putting on their equipment.\", \" They then rapel up the side of the cliff.\"]}, \"v_Hhc10CrukfA\": {\"duration\": 30.16, \"timestamps\": [[0, 2.26], [2.26, 9.95], [9.8, 30.16]], \"sentences\": [\"Two cookies on a plate with a glass of milk next to it.\", \" Balls of dough on a sheet of wax paper in a pan in the oven are taken out and rolled into a ball.\", \" The preparing of cookie dough from the end to the beginning.\"]}, \"v_GOxmnVFdMfY\": {\"duration\": 161.73, \"timestamps\": [[0, 42.86], [41.24, 114.83], [109.97, 156.07]], \"sentences\": [\"A group of people are seen riding around in bumper cars.\", \" The people crash into one another while stopping to smile and laugh to the camera.\", \" The people continue bumping into one another and end by getting up and walking out.\"]}, \"v_B7Ddfw2PXOI\": {\"duration\": 80.69, \"timestamps\": [[0, 73.83], [0.4, 73.83], [73.43, 80.69]], \"sentences\": [\"A man in a blue shirt is playing bag pipes.\", \" People are standing behind him watching.\", \" The man finishes playing and sets the bag pipes down.\"]}, \"v_Yd3G3732WbI\": {\"duration\": 93.37, \"timestamps\": [[0, 8.4], [11.2, 63.02], [63.49, 93.37]], \"sentences\": [\"A woman is shown with another woman in a living room.\", \" They cut out a strip of wrapping paper and show how to stuff the box with gift paper.\", \" They then tape the material together and place a bow on it.\"]}, \"v_9qVcdqGeAzE\": {\"duration\": 155.18, \"timestamps\": [[0, 27.16], [27.93, 131.9], [137.33, 138.89]], \"sentences\": [\"A woman is standing in a room talking.\", \" She begins to blow dry her hair with a round brush.\", \" She finishes and hair sprays her hair.\"]}, \"v_DXhVbxfmrYM\": {\"duration\": 80.03999999999999, \"timestamps\": [[0, 4.8], [5.2, 52.83], [53.23, 80.04]], \"sentences\": [\"Sumo wrestlers walk through a crowd gathered around a competition stage.\", \" Two men go on stage and fight each other.\", \" The loser walks off while the winner receives praise from the audience.\"]}, \"v__vUE7PhDBcA\": {\"duration\": 136.45, \"timestamps\": [[0, 41.62], [38.21, 96.88], [98.93, 132.36]], \"sentences\": [\"A man is shown running down a track and smiling to the camera.\", \" He sprays himself with water while continuing to run.\", \" He continues speaking to the camera while running all over.\"]}, \"v_Q_32kySHzCQ\": {\"duration\": 153.32, \"timestamps\": [[0, 44.46], [42.16, 98.13], [99.66, 149.49]], \"sentences\": [\"Various tools are laid out in fabric with a person unraveling them.\", \" The person shows off the tools to the camera.\", \" The person is then seen out back throwing the object against wood and showing it to the camera.\"]}, \"v_CL6TbOgnLzA\": {\"duration\": 207.49, \"timestamps\": [[0, 9.34], [0, 11.41], [12.45, 207.49], [32.16, 207.49]], \"sentences\": [\"A group of men are standing next to a pool in swimsuits and one jumps in.\", \" Many men are around a swimming pool in their swimsuits for competitive style swimming.\", \" There is a competition set up between two teams back and forth trying to make goals.\", \" Then they are shown playing a water sport that involves making goals with a yellow ball in the pool, while referees in white stand by.\"]}, \"v_2UbwK1Qtveg\": {\"duration\": 6.48, \"timestamps\": [[0, 1], [0.84, 4.83], [4.31, 6.48]], \"sentences\": [\"a man sits in a barber chair.\", \" another man with clippers cuts the sitting man's beard.\", \" a third man is shown making faces at the camera.\"]}, \"v_CvmhLCrOjhM\": {\"duration\": 31.28, \"timestamps\": [[0, 4.38], [7.82, 21.43], [21.74, 31.28]], \"sentences\": [\"A woman is timing a boy as he attempts to solve a rubik's cub.\", \" He works hard to solve the puzzle.\", \" He gets it done and sets the block down.\"]}, \"v_2_KTq85YQcY\": {\"duration\": 148.38, \"timestamps\": [[0, 14.84], [23, 89.77], [96.44, 148.38]], \"sentences\": [\"An iron is shown sitting on a counter top.\", \" A woman appears and fills the iron with water.\", \" She then demonstrates how to iron clothing with it.\"]}, \"v_j56eH9M0ObY\": {\"duration\": 141.98, \"timestamps\": [[0, 34.08], [33.37, 104.36], [100.1, 141.27]], \"sentences\": [\"A large group of people are seen standing in a circle with a man dancing in the middle.\", \" Another man takes a turn break dancing in the circle followed by another.\", \" More people dance in the middle of the circle and ends with everyone cheering.\"]}, \"v_IsM_xfhJzps\": {\"duration\": 134.61, \"timestamps\": [[0, 12.79], [12.11, 30.29], [30.29, 129.9]], \"sentences\": [\"A man is working out on a machine.\", \" He stands up and talks to the camera.\", \" He sits down on an exercise machine and starts to work out again.\"]}, \"v_QgjNH6sAziM\": {\"duration\": 90.33, \"timestamps\": [[0, 9.94], [14.45, 66.39], [72.26, 90.33]], \"sentences\": [\"A small white dog is lying on a table.\", \" A woman is using tools to groom the dog.\", \" She places powder in his ears while he lies still.\"]}, \"v_ZY8UyWtoMWg\": {\"duration\": 37.57, \"timestamps\": [[0, 2.44], [5.45, 23.11], [23.29, 37.57]], \"sentences\": [\"The outside of a house is shown.\", \" They have several boards leaning against the sides of the house.\", \" Several people are seen sitting and working on the roof of the house.\"]}, \"v_4WUFEnFE5sY\": {\"duration\": 219.75, \"timestamps\": [[0, 26.37], [19.78, 85.7], [61.53, 219.75]], \"sentences\": [\"A person walked to the center of the stage covered with blue shawl.\", \" The young lady belly danced on the stage.\", \" The lady danced as she walked on each side of the stage and then threw her shawl away and continue to dance.\"]}, \"v_GMHzZXAQzIA\": {\"duration\": 97.69, \"timestamps\": [[0, 4.4], [4.4, 70.33], [70.33, 97.69]], \"sentences\": [\"This child hangs from the first monkey bar and someone walks past and someone's shadow is seen.\", \" Then the child gradually moves to another bar on the monkey bars by herself and when she gets to the end she steps on the wooden end and then makes her way back to the beginning.\", \" Then she climbs her way back to the end and that is her last destination.\"]}, \"v_5asz3rt3QyQ\": {\"duration\": 188.45, \"timestamps\": [[0, 41.46], [42.4, 153.59], [162.07, 188.45]], \"sentences\": [\"A group of friends are at the beach.\", \" They walk around gathering up sand.\", \" They create a design in the sand.\"]}, \"v_3ohvA6Raf4w\": {\"duration\": 231.32, \"timestamps\": [[5.78, 116.82], [26.6, 154.98], [106.41, 230.16]], \"sentences\": [\"Two women are seen dancing together in a living room.\", \" They perform the same choreography with one another while looking off in the distance.\", \" They continue dancing with one another and another girl is shown holding a dog and speaking to the camera.\"]}, \"v_9SY9ufDznFQ\": {\"duration\": 221.15, \"timestamps\": [[0, 51.97], [19.9, 140.43], [126.05, 221.15]], \"sentences\": [\"young women are barely dressed on a hockey field.\", \" they women begin chasing a puck.\", \" the a goaly is shown full padded while being trained.\"]}, \"v_e8MK2naV6E8\": {\"duration\": 49.32, \"timestamps\": [[0, 9.37], [11.34, 23.92], [23.43, 49.32]], \"sentences\": [\"a boy stands next to a pinata with a stick in his hand.\", \" the boy takes a swing at the pinata and misses.\", \" the boy hits and pushes the pinata.\"]}, \"v_Z0eBz6QsI-c\": {\"duration\": 41.19, \"timestamps\": [[0, 7], [4.94, 27.19], [24.1, 41.19]], \"sentences\": [\"four men are in a racquetball court walking around.\", \" the four men stop walking as one man serves the ball.\", \" the ball is considered out.\"]}, \"v_0fsMeZoZzJI\": {\"duration\": 59.93, \"timestamps\": [[0, 13.48], [11.39, 31.76], [33.26, 58.43]], \"sentences\": [\"A man is seen walking into a bathroom and shows another man sitting in a tub.\", \" A person then shaves the mans leg while speaking to the camera.\", \" The woman continues shaving as the camera walks away.\"]}, \"v_ywFa_D5QZ-k\": {\"duration\": 219.78, \"timestamps\": [[0, 23.08], [23.08, 51.65], [51.65, 193.4], [193.4, 219.78]], \"sentences\": [\"Still images of natural scenes of Utah sites.\", \" A lady demonstrates how to wax a pair of skis.\", \" The ski technician uses an iron to melt the wax on to the skis and describes the complete process of waxing skis.\", \" The ski technician now tests the skis and demonstrate cross country skiing on a cross country trail.\"]}, \"v_685wnEW1Uq4\": {\"duration\": 7.34, \"timestamps\": [[0, 4.81], [4.73, 7.34], [5.43, 7.34]], \"sentences\": [\"The man in gray shirt is running towards the end of the track field.\", \" The man threw the stick to the green field.\", \" The man in white shirt is walking in the field.\"]}, \"v_Wyr2o0lsSTU\": {\"duration\": 48.95, \"timestamps\": [[0, 5.87], [6.61, 35.98], [38.18, 48.95]], \"sentences\": [\"A little girl is walking outside a house.\", \" She is holding a long leash.\", \" A dog is on the other end, and she tries to lead the dog around.\"]}, \"v_m49gj6Y6SDo\": {\"duration\": 152.18, \"timestamps\": [[0, 43.37], [35, 105.01], [98.16, 146.1]], \"sentences\": [\"A man is seen moving in and out of frame assembling a bike.\", \" The man puts parts all over the frame while continuing to move in and out of frame.\", \" He continues piecing together the bike and shows the finished bike.\"]}, \"v_otq24Pdm3sc\": {\"duration\": 211.14, \"timestamps\": [[0, 22.17], [29.56, 114.02], [118.24, 211.14]], \"sentences\": [\"Several people are gathered on a court on a beach.\", \" Players are gathered inside the ring together.\", \" They engange in a game of tug of war over a fake pond.\"]}, \"v_A7ER02-zr54\": {\"duration\": 237.96, \"timestamps\": [[0, 69.01], [57.11, 168.95], [154.67, 232.01]], \"sentences\": [\"A man is seen speaking to the camera and shows a closeup of a bike frame.\", \" The man spins around the wheels and begins adjusting the bike.\", \" He continues moving the bike around and putting the wheel in place.\"]}, \"v_SndKvA_2DcE\": {\"duration\": 162.51, \"timestamps\": [[0, 36.56], [41.44, 60.94], [53.63, 96.69], [78.82, 114.57], [115.38, 162.51]], \"sentences\": [\"a man and woman are walking through the grand canyon.\", \" a small group is kayaking down a river.\", \" a woman is sitting on rocks talking to the camera.\", \" a man on a boy is interviewed.\", \" several shots of the grand canyon and it's tourists are shown.\"]}, \"v_osjru9UsWsI\": {\"duration\": 221.91, \"timestamps\": [[0, 13.31], [13.31, 56.59], [56.59, 214.15], [214.15, 221.91]], \"sentences\": [\"An introduction comes onto the screen for a video about how to style hair with a blow-dryer.\", \" A girl comes on and explains how she blow dries style into her hair and which tools and products she uses to do this.\", \" She starts with the blow dryer and brush and goes through her hair section-by-section drying and adding and curl.\", \" When she is done the video ends with the closing credits and graphics shown on the screen.\"]}, \"v_dL-ybVv7Sgs\": {\"duration\": 33.83, \"timestamps\": [[0, 6.43], [5.41, 20.64], [19.96, 33.83]], \"sentences\": [\"a man is sitting near a pill of rocks with sticks in his hand.\", \" the man begins rubbing the sticks together over the rocks.\", \" a fire starts and the man gets up and stands over the flames.\"]}, \"v_7SxEQiFHGm8\": {\"duration\": 185.48, \"timestamps\": [[0, 183.63], [16.69, 19.48], [92.74, 100.16], [123.34, 128.91], [130.76, 136.33], [147.46, 150.24], [182.7, 185.48]], \"sentences\": [\"We see two teams of me playing soccer in doors.\", \" The white team all hugs up close.\", \" We see a man make a goal and the white team hugs again.\", \" We see the yellow team all hug each other.\", \" Number nine on the white team runs around the  court.\", \" A man on the white team hits the ball with his head.\", \" A man spins a ball on his finger.\"]}, \"v_Nq3b9OReeEI\": {\"duration\": 91.42, \"timestamps\": [[0, 27.43], [21.48, 58.51], [57.59, 88.67]], \"sentences\": [\"A large group of people are seen running around a field holding sticks.\", \" The men throw a ball around while playing a game of lacrosse.\", \" The men continue playing with one another while the camera captures their movements.\"]}, \"v_z08g5S7J-CY\": {\"duration\": 57.21, \"timestamps\": [[0, 2.57], [2.86, 29.75], [29.75, 46.34], [46.92, 50.63], [50.92, 57.21]], \"sentences\": [\"The logo \\\"Carjam TV\\\" and \\\"World's Best Car Videos\\\" appears on screen.\", \" A car wash is shown with women wearing provacative clothing.\", \" A young man is dousing cars with mud and eating a candy bar.\", \"  The dirty cars proceed to the car wash.\", \"  A Snicker's candy bar is shown followed by the \\\"Carjam TV\\\" logo.\"]}, \"v_xuoWaq6XPZo\": {\"duration\": 79.72, \"timestamps\": [[0, 18.73], [14.75, 31.89], [27.1, 50.62], [49.42, 79.72]], \"sentences\": [\"a boy is on a concert stage sitting behind drums.\", \" the boy begins playing the drums.\", \" the boy continues playing the drums as smoke effects begin to appear.\", \" the boy then drops the drumsticks, poses, then walks off of the stage.\"]}, \"v_qlqF8K072UU\": {\"duration\": 161.5, \"timestamps\": [[0, 33.91], [34.72, 71.06], [71.87, 95.28], [95.28, 161.5]], \"sentences\": [\"A woman runs on the track and then jumps long on a sand box, after she walks and a man shows her performance.\", \" A second participant perform long jump successfully in the competition.\", \" However, the third participant runs, but fails to perform the long jump.\", \" Two more participants perform long jump.\"]}, \"v_tXLvsYsWCoY\": {\"duration\": 70.5, \"timestamps\": [[6.7, 64.86], [10.57, 64.86], [10.57, 63.09]], \"sentences\": [\"People are standing on a field.\", \" They are marching around playing drums.\", \" People are standing on the sidelines in front of them watching.\"]}, \"v_Eucw0oPrFUs\": {\"duration\": 127.01, \"timestamps\": [[0, 31.12], [31.12, 64.14], [64.14, 127.01]], \"sentences\": [\"man is walking to a bench tie his laces and waks to a futball field and holding a ball with his foot and its watching a futsal game.\", \" man in the green grassy futball field start doing tricks with the foot and the ball showing how to do it.\", \" the man flick the ball up and and play the ball in the air.\"]}, \"v_DvTZ5mmF8NM\": {\"duration\": 26.61, \"timestamps\": [[0, 3.99], [3.99, 19.96], [14.64, 25.28]], \"sentences\": [\"A pot of dried pasta is left to boil on the stove.\", \" A person stirs a bowling pot of past on a stove.\", \" The person taps the spoon on the side of the pot to remove any stuck on pieces.\"]}, \"v_exCENNu1qBU\": {\"duration\": 123.55, \"timestamps\": [[0, 12.97], [14.83, 42.01], [51.27, 123.55]], \"sentences\": [\"A man is sitting in a parking lot drinking a soda.\", \" He puts on his safety gear.\", \" He gets up and runs and jumps on a pair of stilts.\"]}, \"v_HwTSF0VgmMU\": {\"duration\": 56.15, \"timestamps\": [[0, 34.81], [13.48, 16.84], [16, 56.15]], \"sentences\": [\"A man is practicing karate moves in a gym.\", \" He gets down on the ground and kicks.\", \" He continues to practice karate moves.\"]}, \"v_J7JLo0nQ5pA\": {\"duration\": 179.4, \"timestamps\": [[0, 19.73], [26.01, 114.81], [123.78, 179.4]], \"sentences\": [\"A woman is standing in a kitchen surrounded by floating images of foods.\", \" She is then shown with several baking ingredients.\", \" She mixes the ingredients together and makes a bundt cake.\"]}, \"v_g4OlXwjgwSs\": {\"duration\": 155.09, \"timestamps\": [[0, 6.2], [6.2, 19.39], [20.16, 70.56], [70.56, 100.03], [100.03, 145.01], [145.78, 155.09]], \"sentences\": [\"We see an opening title screen.\", \" We see a man in a red shirt throw shot put twice.\", \" We see a title screen and see the man start to throw and see the stance of his feet while throwing and see him transfer his weight.\", \" We see the man's leg swing analyzed and the shoulder position.\", \" We see the mans feet and his knees as he extends his arm.\", \" We see a closing title screen.\"]}, \"v_cdcn6XP1N6A\": {\"duration\": 144.03, \"timestamps\": [[0, 13.68], [17.28, 65.54], [75.62, 144.03]], \"sentences\": [\"A man is on a stage with other band mates.\", \" He is playing the flute in front of a microphone.\", \" The other men are playing guitars and drums in the background.\"]}, \"v_dgas2Fku3No\": {\"duration\": 87.05, \"timestamps\": [[0, 87.05], [4.79, 80.96], [7.83, 54.84], [18.28, 40.91], [35.26, 67.47], [53.54, 87.05]], \"sentences\": [\"There's an indoor badminton court where some doubles tennis matches are going on while some spectators watch them play.\", \" The front court has a set of ladies doubles teams playing badminton.\", \" One of the players returns the serve from her opponent as she slices the shuttlecock while her doubles partner volleys the shuttlecock to her opponent.\", \" The opposing team players miss a shot causing the other team to win.\", \" The winning team player serves the shuttlecock to the opponent who returns the serve swiftly.\", \" The team continue playing as they keep score of their match.\"]}, \"v_BhCNHWQhhEw\": {\"duration\": 191.61, \"timestamps\": [[0, 191.61], [8.62, 167.66], [34.49, 168.62], [63.23, 167.66], [182.99, 191.61]], \"sentences\": [\"There's a tattoo artist wearing blue gloves inking a tattoo on a client's arm in a tattoo parlor.\", \" The tattoo artist is drawing a design on the client's wrist and wipes off the excess ink on the sides.\", \" The artist is drawing some curved lines to form a design as he intricately works with the tattooing needle.\", \" The artist wipes off the excess ink every time it smudges on the side.\", \" After the entire design is completed, the client shows her arm and what is written on it.\"]}, \"v_LURZ8QDfowU\": {\"duration\": 172.1, \"timestamps\": [[0, 57.65], [22.37, 172.1], [67.12, 172.1]], \"sentences\": [\"The camera is walking to the gas station showing the the cars parked at the pump stations.\", \" The cab is parked while three men are cleaning it up.\", \" Two men are cleaning the inside and then the hood of the car.\"]}, \"v_cduejHfXPDc\": {\"duration\": 166.46, \"timestamps\": [[0, 10.82], [8.32, 13.32], [27.47, 50.77], [59.09, 139], [146.49, 163.13]], \"sentences\": [\"A single hand of an artist is painting a picture on canvas.\", \" With delicate strokes, the images of green are seen.\", \" With more work, the image begins to take shape in that of a flower.\", \" The main part of the picture comes to life when the white flower petals are seen.\", \" The finishing touches display a very beautiful flower.\"]}, \"v_le1aEgEms9Y\": {\"duration\": 144.92000000000002, \"timestamps\": [[0, 6.52], [6.52, 23.19], [23.19, 140.57], [140.57, 144.92]], \"sentences\": [\"A woman in the bathroom is speaking to a little brown dog that is in the bathroom with her.\", \" Takes out some toothbrushes and some toothpaste and sets them on the counter.\", \" She sits down on the floor and begins to alternate between brushing her own teeth and brushing the dog's teeth.\", \" When she is done she waves to the camera and the video ends.\"]}, \"v_tP0viuKibJU\": {\"duration\": 6.22, \"timestamps\": [[0.06, 1.52], [1.59, 3.89], [4.01, 6.01]], \"sentences\": [\"A girl is seen standing on a mat look down at the floor.\", \" She then begins walking backwards doing a flip.\", \" She continues flipping and looking at the ground.\"]}, \"v_Czw85LWCGes\": {\"duration\": 56.05, \"timestamps\": [[0, 50.17], [50.45, 53.53], [54.65, 56.05]], \"sentences\": [\"An individual wearing a protective mask welds something on a table.\", \" The individual stops welding and puts the tool down.\", \" The individual moves toward and reaches for the camera.\"]}, \"v_a6kF1_4rs2E\": {\"duration\": 101.43, \"timestamps\": [[0, 17.24], [19.27, 76.07], [80.13, 101.43]], \"sentences\": [\"A man talking inside a room.\", \" He uses an iron and a sander on a board.\", \" He shows how to sand a water ski for future use.\"]}, \"v_TRXLUcm2CuQ\": {\"duration\": 168.57999999999998, \"timestamps\": [[0, 68.27], [0, 32.87], [16.86, 53.1], [28.66, 53.1]], \"sentences\": [\"A women is in a bathtub full of water.\", \" She has shaving cream on her legs.\", \" She begins to shave her legs.\", \" She then lathers the other leg and shaves it.\"]}, \"v_x6Z0xTgWoVI\": {\"duration\": 152.21, \"timestamps\": [[0, 44.9], [44.9, 80.67], [80.67, 108.83], [108.07, 131.66], [131.66, 152.21]], \"sentences\": [\"Several people are shown skiing down a small mountain under the zipline.\", \" One person in particular comes down the slope holding a child in front of them before finally letting them go.\", \"The young child is freely skiing but the adult is trailing close behind them.\", \"As they continue,they encounter another pair of people doing the same thing.\", \"After some time,the adult grabs the child to slow them down and claps for them before they eventually stop all together.\"]}, \"v_sG3JpMuXFnU\": {\"duration\": 126.04, \"timestamps\": [[0, 6.93], [6.93, 27.73], [27.73, 126.04]], \"sentences\": [\"woman is talking to teh camera wearing big sunglasses and behind her a family is sanding behind a suv talking.\", \" cars are parked on side of the road and people is walking in te highway holding small kayaks.\", \" people get in a lake with the boats and the inflatables floating in the river talking and playing.\"]}, \"v_xkIhTMJ_ThA\": {\"duration\": 11.4, \"timestamps\": [[0, 11.4], [0, 11.29], [0.29, 11.4]], \"sentences\": [\"woman is wearing black shorts playing squash in a room.\", \" man wearing a yellow shirt and playing squash.\", \"two men are in a woden court room playing squash.\"]}, \"v_-cJova7MiO8\": {\"duration\": 29.51, \"timestamps\": [[0, 18.15], [0, 29.51], [19.04, 29.51]], \"sentences\": [\"Two men are wrestling in a ring.\", \" People are standing around them watching.\", \" One man wins and raises his hand.\"]}, \"v_v-YKnFqX_L0\": {\"duration\": 122.45, \"timestamps\": [[0, 17.14], [30, 75.31], [79.59, 122.45]], \"sentences\": [\"A male racer is talking in an interview.\", \" Several runners walk by and wave.\", \" They engage in a long race to the finish line.\"]}, \"v_LYqfB7HsQwQ\": {\"duration\": 78.9, \"timestamps\": [[0, 12.23], [12.23, 75.35], [75.75, 78.9]], \"sentences\": [\"A man comes onto the screen thanking his viewers for the comments they have made about his videos.\", \" Teams to play the harmonica and perform a song for the video.\", \" When he is done he turns off the camera.\"]}, \"v_4QvpJ71d8Nk\": {\"duration\": 144.99, \"timestamps\": [[0, 5.8], [5.8, 26.1], [26.1, 124.69], [124.69, 144.99]], \"sentences\": [\"A black screen appears with a green lettering on it that read \\\"Rope Skipping Sportensemble Chemnitz TSV Einheit Sud www sportensemble de\\\".\", \"A large group of mostly women and one man wearing green tops and black bottoms are standing in an indoor gymnasium and they each jump and do their routine with their own jump ropes.\", \"Various clips of them begin to play as the scene rotates from them jumping in the indoor gymnasium and also in a darker area that has spotlights on the ground and they're wearing different outfits.\", \"Yellow words being to scroll in the middle of the screen going from right to left and they read \\\"Rope Skipping Sportensemble Chemnitz TSV Einheit Sud www sportensemble de\\\"and the screen fades to black.\"]}, \"v_cFzo-Zgxk1M\": {\"duration\": 99.99000000000001, \"timestamps\": [[0, 9.5], [9.5, 13.5], [13.5, 32.5], [32.5, 99.99]], \"sentences\": [\"A man wearing a grey shirt bowls a ball down the lane.\", \" His companions a man with a beard and a blond and a brunette woman sit in a booth watching.\", \" The blond lady gets up and bowls a ball down the lane for a strike.\", \" The blond girl continues bowling strikes on every bowl no matter how she rolls the bowling ball.\"]}, \"v_2aHetC-N-P4\": {\"duration\": 180.35, \"timestamps\": [[0, 40.58], [38.78, 130.75], [112.72, 178.55]], \"sentences\": [\"A camera pans around a tractor and shows the man adjusting settings.\", \" He then rides the tractor around a field and zooming in on his arms and feet.\", \" He continues riding around the grassy area.\"]}, \"v_zfU85oBVpfA\": {\"duration\": 44.93, \"timestamps\": [[0, 5.62], [6.29, 22.69], [24.04, 44.93]], \"sentences\": [\"A man is located inside a building.\", \" he kneels down on a mat while holding a pole.\", \" He shows how to lean holding the pole.\"]}, \"v_GLL1vOrV5Qo\": {\"duration\": 228.14, \"timestamps\": [[0, 49.05], [59.32, 157.41], [175.67, 228.14]], \"sentences\": [\"a man is cutting long strips of paper inside a room.\", \" He applies putty to a hole in the wall.\", \" He then shows how to cover it with paint.\"]}, \"v_pMVo7PaXD1c\": {\"duration\": 237.32999999999998, \"timestamps\": [[5.93, 33.23], [8.31, 9.49], [33.23, 232.59]], \"sentences\": [\"Various exterior scenes of a paintball venue's location is shown.\", \" A helicopter lands in the parking lot.\", \" Scenes of a group of individuals engaging in a paintball game in the venue is shown.\"]}, \"v_uFhZhnlYKRw\": {\"duration\": 143.87, \"timestamps\": [[0, 33.81], [27.34, 82.73], [84.88, 143.87]], \"sentences\": [\"three ladies stand behind an outdoor bar.\", \" each lady takes turns talking to the camera.\", \" the ladies then disburse behind the bar to prepare a drink.\"]}, \"v_tUCGJk6aSeg\": {\"duration\": 43.82, \"timestamps\": [[0, 10.95], [10.95, 43.38], [33.08, 36.15]], \"sentences\": [\"A man plays the drums with two sticks.\", \" Also the man plays the cymbals while playing the drum.\", \" A rotating light shines the musician.\"]}, \"v_YcjLd_XBK5Y\": {\"duration\": 62.74, \"timestamps\": [[0, 10.98], [10.35, 40.15], [40.47, 62.74]], \"sentences\": [\"A woman is sitting down on a floral glass table drilling a design into the pumpkin.\", \"As she is drilling,two boys are standing next to her watching her and then they suddenly leave.\", \"The person behind the camera then picks up the top of the pumpkin to show its empty contents before the lady closes it and continues drilling.\"]}, \"v_5Lv0g7ISQVU\": {\"duration\": 59.07, \"timestamps\": [[0, 57.89], [31.6, 42.53], [39.58, 59.07]], \"sentences\": [\"Two girls play kickball in the backyard.\", \"  The girl gets a homerun.\", \"  She then gets out to end the inning.\"]}, \"v_9JrRZ9i1sXo\": {\"duration\": 201.85, \"timestamps\": [[0, 67.62], [54.5, 148.36], [109, 196.81]], \"sentences\": [\"A woman is seen shoveling snow in a walkway and speaking to the camera.\", \" She moves around the driveway and demonstrates how to properly shovel snow.\", \" She continues speaking while pushing the snow into a banking.\"]}, \"v_wB9LBEHR5-c\": {\"duration\": 176.96, \"timestamps\": [[0, 169.88], [43.35, 53.97], [169.88, 176.96]], \"sentences\": [\"Several people are on some bumper cars at an amusement park riding and bumping into each other.\", \" An attendant comes up to one of the cars and says something to them before they ride away.\", \"  The ride ends and everyone gets out of their car an begins to exit the ride.\"]}, \"v_ChH3zlLeWug\": {\"duration\": 159.38, \"timestamps\": [[0, 39.05], [30.28, 90.85], [101.21, 159.38]], \"sentences\": [\"a man is in a bathroom talking to the camera.\", \" the man takes clippers and begins cutting his beard.\", \" the man continues to talk to the camera as he cuts his hair.\"]}, \"v_8FSKFy1tPQc\": {\"duration\": 123.02, \"timestamps\": [[0, 46.75], [35.06, 92.27], [81.81, 116.87]], \"sentences\": [\"A man is seen speaking to the camera and lead into him riding a horse and hitting a ball.\", \" The man continues riding along the field holding a stick and hitting a ball.\", \" More people demonstrate how to properly play the game.\"]}, \"v_twJ2uE1GS2I\": {\"duration\": 198.9, \"timestamps\": [[0, 26.85], [37.79, 154.15], [158.13, 198.9]], \"sentences\": [\"A woman is working in a kitchen.\", \" She shows how to mix ingredients for a chocolate cake.\", \" Then she bakes it and shows how to frost it.\"]}, \"v_1zEcIngghq4\": {\"duration\": 203.15, \"timestamps\": [[0, 160.49], [160.49, 176.74], [175.73, 201.12], [201.12, 203.15]], \"sentences\": [\"A man plays the tam-tams in a room.\", \" The man plays only in one tam-tam.\", \" Then, the man plays the two tam-tams.\", \" After, the man finish playing the instruments.\"]}, \"v_dnQcp43wbRY\": {\"duration\": 143.34, \"timestamps\": [[2.87, 134.74], [30.1, 41.57], [70.95, 76.69], [126.14, 136.89]], \"sentences\": [\"Two men are assembling a bicycle on a stand.\", \" They put the tires onto the bike.\", \" They put the pedals on the bike.\", \" They finish assembling the bike.\"]}, \"v_4eHP5IvDl6o\": {\"duration\": 71.24, \"timestamps\": [[6.41, 66.96], [7.12, 66.96], [7.12, 64.47]], \"sentences\": [\"A woman is standing in a barn.\", \" She is brushing a horse's hair with a pink rake.\", \" Another horse is in the stable behind them.\"]}, \"v_bc7r5_gSAVg\": {\"duration\": 167.25, \"timestamps\": [[0, 20.91], [22.58, 102.86], [121.26, 167.25]], \"sentences\": [\"A group walks onto a dance floor in a movie scene.\", \" They are playing black jack as the cards are being dealt by a dealer.\", \" A woman talks as she is losing.\"]}, \"v_6J45AbWiGIE\": {\"duration\": 121.07, \"timestamps\": [[0, 19.98], [16.34, 76.88], [78.09, 121.07]], \"sentences\": [\"a young woman and a brown dog are standing in an empty field.\", \" the woman throws a blue frisbee across the field.\", \" the dog catches the frisbee and brings it over to the woman.\"]}, \"v_YAhHfaXnpKg\": {\"duration\": 88.31, \"timestamps\": [[0, 8.39], [11.48, 61.81], [63.14, 88.31]], \"sentences\": [\"A cheetah is seen in the wilderness.\", \" A large guila monster and several porcupines are seen.\", \" People ride camels through the enclosure, looking at the animals.\"]}, \"v_R2EZlSlDCuE\": {\"duration\": 204.34, \"timestamps\": [[0, 20.43], [28.61, 144.06], [158.36, 204.34]], \"sentences\": [\"A woman is standing outside a garage.\", \" She is talking but keeps messing up.\", \" She comes back and talks about painting again.\"]}, \"v_gT_8511vwVE\": {\"duration\": 232.55, \"timestamps\": [[0, 20.93], [25.58, 165.11], [188.36, 232.55]], \"sentences\": [\"a woman is talking in front of a group of people.\", \" they begin dancing at her instruction.\", \" the people all dance in unison, making the same moves.\"]}, \"v_p0menuS7Mlk\": {\"duration\": 38.01, \"timestamps\": [[0, 5.13], [5.32, 12.92], [13.11, 24.52], [25.09, 32.5], [33.07, 38.01]], \"sentences\": [\"A young girl stands at the back of a diving board practicing.\", \" Another girl walks up and the first girl walks to the edge.\", \" She turns around and stands on the board.\", \" The girl lift her hands and dives and emerges to swim to the edge.\", \" We see the electronic scoreboard.\"]}, \"v_HnCUykqco5M\": {\"duration\": 216.62, \"timestamps\": [[0, 32.49], [30.33, 110.48], [89.9, 205.79]], \"sentences\": [\"A large group of people are seen moving along the river in a raft.\", \" Another group is seen riding along the river in front.\", \" The people swim around and laugh with one another as well as jumping off cliffs and riding their bodies down the river.\"]}, \"v_Z7ZODw0C_hY\": {\"duration\": 226.7, \"timestamps\": [[0, 22.67], [23.8, 107.68], [142.82, 226.7]], \"sentences\": [\"A man is wearing a hoodie while standing next to his garden.\", \" He is talking about cultivating the vegetable plants.\", \" He uses shears to cut the leaves off the tops of the plants.\"]}, \"v_L5kxbN9wFAg\": {\"duration\": 48.18, \"timestamps\": [[0, 48.18], [0, 22.65], [9.88, 40.47], [20.24, 45.29]], \"sentences\": [\"A man is wearing all red in a park.\", \" He is holding a disc of some sort.\", \" He twists his body around.\", \" He then tosses the disc very far.\"]}, \"v_B42CY1Z6eV8\": {\"duration\": 127.83, \"timestamps\": [[0, 33.23], [53.69, 68.39], [58.8, 67.75]], \"sentences\": [\"Young man lifts up his ankle.\", \"  Man wearing black pants puts on a white sock.\", \"  Man is loosening his black shoe laces.\"]}, \"v_rMy6sItJID0\": {\"duration\": 93.21000000000001, \"timestamps\": [[0, 22.37], [20.97, 72.23], [61.52, 90.87]], \"sentences\": [\"A gymnast is seen standing with her arms out and jumps onto a beam.\", \" The girl begins flipping herself around the beam while others watch on the side.\", \" The girl continues her routine and ends by jumping off with her arms up.\"]}, \"v_plE3KNmuwj4\": {\"duration\": 157.62, \"timestamps\": [[3.94, 19.7], [20.49, 33.89], [34.68, 67.78], [68.56, 92.99], [92.99, 151.31]], \"sentences\": [\"People sail in a boat in a river while a man water ski pulling by the boat.\", \" The person water ski and does a spectacular flip in the air, and continues water skiing.\", \" Then, the person water ski and flips in the air while two helicopters follows him close.\", \" After, a man water ski on ramp while an helicopter flies close to him.\", \" People water ski over a ramp or pulley by a boat.\"]}, \"v_VYuQAfG0gKw\": {\"duration\": 25.73, \"timestamps\": [[0, 4.63], [4.63, 8.62], [8.75, 17.75], [17.75, 20.71]], \"sentences\": [\"A young woman sits on a couch brushing her hair.\", \" Then, the young woman braids her hair.\", \" After, the woman brushes the hair and twist it.\", \" After the woman puts the hair on front her face and brush it.\"]}, \"v_-l16smV_uYg\": {\"duration\": 157.85, \"timestamps\": [[0, 157.85], [35.52, 39.46], [44.2, 67.09]], \"sentences\": [\"A woman in a black cape is sitting in a chair in front of a woman in a red shirt.\", \" The woman standing up starts brushing the other woman's hair.\", \" She puts a large curler in her hair.\"]}, \"v_NWaMWZUuTZc\": {\"duration\": 44.75, \"timestamps\": [[0, 4.47], [4.47, 22.6], [22.6, 33.11], [33.11, 39.15], [39.15, 44.75]], \"sentences\": [\"A man wearing a hat, jacket and long pants is doing a side step dance on a stage with other musical people playing behind him and flashing lights above him.\", \"The man picks up his dancing and starts to walk forward on the stage and begins to breakdance and spin on the ground multiple times.\", \"The man stops spinning on the ground, stands up, takes his jacket off and puts it on the DJs table.\", \" The man grabs a microphone then walks towards the end of the stage, someone throws him his white hat that flew off of his head and he puts it on.\", \" The now very sweaty man crosses his arms and stands in a pose and stares at the crowd.\"]}, \"v_5JG8Dc2wsdc\": {\"duration\": 111.64, \"timestamps\": [[5.02, 25.12], [13.96, 54.7], [49.12, 111.64]], \"sentences\": [\"A hand is holding different sizes and types of brushes.\", \" Nail base coat is brushed on the nail, then the white nail polish is applied.\", \" A thinner bristle brushed is used to draw spider web on the and then top coat is applied.\"]}, \"v_g17h49EYsJY\": {\"duration\": 72.03, \"timestamps\": [[0, 72.03], [6.12, 37.82], [41.42, 72.03]], \"sentences\": [\"Children in canoes are being filmed paddling on a lake.\", \"  Two people on single person canoes go by.\", \"  Another canoe goes by but has two children seated in it.\"]}, \"v_0V8mzi_89Fw\": {\"duration\": 119.56, \"timestamps\": [[0, 45.43], [28.69, 87.88], [72.93, 114.78]], \"sentences\": [\"Several pictures of a roof are shown of a before and after.\", \" Afterwards the siding of a house is shown in pictures with a before and after.\", \" More pictures are shown of homes on the inside.\"]}, \"v_aoY0XhAXm7M\": {\"duration\": 138.25, \"timestamps\": [[0, 32.49], [33.18, 91.94], [97.47, 117.51]], \"sentences\": [\"A person is mixing ingredients into a clear bowl.\", \" They mix the ingredients together in the bowl.\", \" They pour the mixture into a tin pan.\"]}, \"v_0czF2CCgq6I\": {\"duration\": 47.09, \"timestamps\": [[0, 9.18], [13.66, 32.02], [33.43, 47.09]], \"sentences\": [\"A man is riding on a lawn mower in his yard.\", \" He listens to music on his headphones while he mows.\", \" He goes around the yard, covering all of it before stopping.\"]}, \"v_ke9gaIRnaEo\": {\"duration\": 126.87, \"timestamps\": [[0, 22.84], [21.57, 79.3], [78.66, 126.87]], \"sentences\": [\"a man speaks to the camera.\", \" several people are jogging through a park.\", \" a woman is then interviewed.\"]}, \"v_ID44l9VqqGQ\": {\"duration\": 110.85, \"timestamps\": [[0, 14.97], [28.82, 74.27], [83.14, 110.85]], \"sentences\": [\"a man is shown standing against a black background.\", \" He is playing a very fancy ornate accordian.\", \" He plays at a fast speed on the keyboard.\"]}, \"v_xyMCaug7LXM\": {\"duration\": 54.78, \"timestamps\": [[0, 16.16], [48.75, 50.67], [51.49, 54.78]], \"sentences\": [\"A woman sprints down a track and throws a javelin.\", \" The crowd cheers for her.\", \" She claps her hands and kneels down onto the track.\"]}, \"v_g7glOdM6BYo\": {\"duration\": 80.46000000000001, \"timestamps\": [[0, 80.46], [0, 59.94], [59.94, 80.46]], \"sentences\": [\"An animal is being held by a person.\", \" A person begins clipping the animals nails with an orange tool.\", \" They take a mask off of the animal and look at its teeth.\"]}, \"v_-9l1Rh10bO8\": {\"duration\": 92.02000000000001, \"timestamps\": [[0, 9.66], [11.96, 83.28], [9.66, 80.06], [83.28, 92.02]], \"sentences\": [\"A guy comes onto the screen to introduce a video about his character on a kids show.\", \" He begins to show several different clips from the show.\", \" He also comments about different aspects of the show while being interviewed.\", \" He closes the video with a quick goodbye and the closing credits are shown on the screen.\"]}, \"v_j7vUMNMB4Yo\": {\"duration\": 93.35, \"timestamps\": [[0, 91.48], [33.6, 48.54], [20.07, 21], [49.47, 88.21]], \"sentences\": [\"A guy is sitting on a roof and talking.\", \" The guy holds up an orange tool.\", \" A silver ladder is against the house.\", \" The guy uses the orange tool to remove pieces of the roof.\"]}, \"v_9AOVI0OCZqg\": {\"duration\": 193.12, \"timestamps\": [[0, 58.9], [58.9, 74.35], [75.32, 119.74], [119.74, 135.18], [135.18, 193.12]], \"sentences\": [\"Image and clips of a blond hair stylist braiding her hair.\", \" The hairstylist then places her braided hair into a bun.\", \" The hairstylist uses hair pins to secure the braided hair bun.\", \" The hairstylist then poses with the finished hair style while smiling and spinning to the camera.\", \" The hairstylist holds up a blond child in front of the camera.\"]}, \"v_dMjOeGJBF9M\": {\"duration\": 28.35, \"timestamps\": [[0, 4.82], [5.95, 19.42], [14.74, 28.35]], \"sentences\": [\"boy stands on top of a slide.\", \" the boy positions and stands in a skate board.\", \" the boy rides down the slide on the skateboard.\"]}, \"v_nIfYhQHFWZI\": {\"duration\": 23.64, \"timestamps\": [[0, 5.91], [5.91, 16.55], [15.6, 23.17]], \"sentences\": [\"A young man is seen standing before a mat.\", \" He then runs down the mat and performs flips.\", \" He continues running down and jumping into a mat.\"]}, \"v__GQaltSDMAk\": {\"duration\": 77.51, \"timestamps\": [[0, 10.46], [12.79, 53.87], [54.26, 77.51]], \"sentences\": [\"A little girl is standing in front of a kitchen island.\", \" She is holding a lemon half in her hand.\", \" She tries to grind the lemon on a juicer.\"]}, \"v_dGHryLMDBIU\": {\"duration\": 58.21, \"timestamps\": [[0.29, 18.34], [17.46, 44.53], [38.71, 57.34]], \"sentences\": [\"A man is seen sitting down speaking to the camera in front of a hookah.\", \" He then grabs a hose and begins smoking from the hookah.\", \" He blows out the smoke and continues speaking to the camera.\"]}, \"v_6kgJx6ahgq0\": {\"duration\": 72.66, \"timestamps\": [[0, 19.25], [15.62, 39.96], [42.5, 72.66]], \"sentences\": [\"a group of man is shown on a kickball field.\", \" the same man is then shown in a pool.\", \" the man is then shown in various pictures.\"]}, \"v_6WQSZekz8vQ\": {\"duration\": 56.15, \"timestamps\": [[0, 7.86], [7.86, 14.6], [14.88, 28.63], [28.92, 49.69], [49.97, 56.15]], \"sentences\": [\"We see two opening title screens.\", \" We see two men in fatigues doing sit ups outside in the grass with instructions on the screen while one man is holding the legs of a man in the sit up positions.\", \" The laying down man sits up.\", \" The man is laying again and does a couple of sit ups.\", \" We see the closing ending credits.\"]}, \"v_dR3hrw9dVdw\": {\"duration\": 170.11, \"timestamps\": [[0, 127.58], [29.77, 154.8], [85.91, 169.26]], \"sentences\": [\"A person's hands are seen playing a piano.\", \" The person moves their hands up and down the instrument.\", \" The person continues to play over and over.\"]}, \"v_dbMPw8PfXHo\": {\"duration\": 116.57, \"timestamps\": [[0, 5.25], [5.25, 103.16], [40.8, 103.16], [103.74, 116.57]], \"sentences\": [\"A chef is shown standing in front of a food related mural on the wall.\", \" Then various ingredients are shown and he goes through the process of making some sandwich rolls with tortilla.\", \" He lays on the different ingredients and then rolls them all up in the tortilla, cutting them into slices afterwards.\", \" Then he takes a bite of one and the advertisement with information about the restaurant is shown on the wall.\"]}, \"v_z5xZrF421HE\": {\"duration\": 219.23, \"timestamps\": [[0, 16.44], [20.83, 88.79], [105.23, 219.23]], \"sentences\": [\"A group is walking through tall grass in a field.\", \" They go to a large cliff and put on equipment.\", \" They then climb up the cliff one by one.\"]}, \"v_xXj-oQm-NbE\": {\"duration\": 221.82, \"timestamps\": [[0, 13.31], [37.71, 92.06], [86.51, 147.51], [173.02, 206.29]], \"sentences\": [\"A man in a tie and suit is standing in front of a building talking.\", \" He then stands next to a woman talking.\", \" The woman starts to wrap a small blue box in wrapping paper.\", \" A man holds up a wooden block and the other man carves something in it.\"]}, \"v_EfjzkyLrnDg\": {\"duration\": 13.89, \"timestamps\": [[0, 1.25], [2.15, 9.51], [10.28, 13.89]], \"sentences\": [\"A group of people are together in a room.\", \" A man punctures several beer cans.\", \" He then drinks the beer from the sides of the cans.\"]}, \"v_45WdXofnTkI\": {\"duration\": 67.18, \"timestamps\": [[0, 64.49], [19.82, 64.49], [64.49, 67.18]], \"sentences\": [\"A man standing in a violin shop is playing the violin.\", \" He makes several variations in pitch as he plays his song on the violin.\", \" When he is done he received applause from someone else in the store.\"]}, \"v_UkA6pgt29VI\": {\"duration\": 236.38, \"timestamps\": [[0, 14.18], [36.64, 139.46], [146.56, 236.38]], \"sentences\": [\"A man is shown on the front of an advertisement.\", \" We see several people engaged in water sports.\", \" A man talks about his brand and their support of those sports.\"]}, \"v_OszjSKHCvKI\": {\"duration\": 218.99, \"timestamps\": [[0, 53.65], [45.99, 154.39], [133.58, 214.61]], \"sentences\": [\"Several clips of scenery are shown as well as people riding in a boat.\", \" More clips are shown of people wake boarding on the water and performing jumps and tricks.\", \" Several clips follow with people performing jumps and riding behind a boat doing flips.\"]}, \"v_am4Z43QlUrg\": {\"duration\": 216.32, \"timestamps\": [[0, 34.61], [64.9, 101.67], [147.1, 216.32]], \"sentences\": [\"A man rides a bike next to a garage.\", \" He stops and talks about the front wheel of the bike before folding it up and walking away.\", \" He then shows a close up of the sections on the front of the bike.\"]}, \"v_2ISOAmuzs24\": {\"duration\": 210.3, \"timestamps\": [[0, 172.45], [0, 200.84], [0, 210.3]], \"sentences\": [\"man is standing in forn of a net in a soccer game while players are preparing to make a fee kick.\", \" in the background team wearing red shirts and blue shirts are kneeling on the beach soccer court.\", \" people are around the field watching the game from the stands.\"]}, \"v_Z6l2Yu9Q0mU\": {\"duration\": 210.0, \"timestamps\": [[0, 210], [10.5, 210], [31.5, 119.7], [115.5, 210]], \"sentences\": [\"A man is standing in a room.\", \" He is holding a microphone and wearing sunglasses.\", \" He then spins a hula hoop around himself while singing into the mic.\", \" He then sits down and talks to the camera.\"]}, \"v_xrl3oxTa6sQ\": {\"duration\": 104.61, \"timestamps\": [[0, 26.15], [55.96, 94.15], [0, 94.15]], \"sentences\": [\"dark wood is shown and men are in front of a big firewood.\", \" some of the fire gets in the floor and the man step on the fire to turn of the fire.\", \" men are drinking beer and standing around a firewood.\"]}, \"v_mua8hNPuQHw\": {\"duration\": 109.34, \"timestamps\": [[0, 109.34], [0.55, 3.83], [3.83, 50.3], [50.84, 107.16]], \"sentences\": [\"A man talks to the camera  and an unseen person on his right while holding a sword in a glove covered hand.\", \"  The man begins to point to the sword and move it around using different techniques.\", \"  The camera pans out and it is now evident that the man is talking to two students , one on each side of him.\", \"  The man jousts with one of the students in between talking to them offering advise and live demonstration before giving the camera a thumbs up and ending the clip.\"]}, \"v_JcMOzfurtK4\": {\"duration\": 235.6, \"timestamps\": [[0, 40.05], [21.2, 142.54], [106.02, 200.26], [106.02, 235.6]], \"sentences\": [\"The woman and man are at the packing up their stuff like food.\", \"  An old man is pointing the map and then talking to the other guy then two men carried the canoe near the river.\", \" Two people are canoeing in the calm water.\", \" The people set up the tent and continue to canoe and then go fishing.\"]}, \"v_rCmpRDbS_O4\": {\"duration\": 95.34, \"timestamps\": [[0, 24.31], [22.88, 61.02], [58.64, 94.87]], \"sentences\": [\"A man is seen standing in front of a sink and washes his face with water.\", \" The man rubs his hands along his face.\", \" Finally he grabs a towel and wipes his face off and sits in front of the camera.\"]}, \"v_7_HWPDDW7Cw\": {\"duration\": 162.15, \"timestamps\": [[0, 38.1], [38.91, 64.05], [64.05, 102.15], [102.15, 162.15]], \"sentences\": [\"A woman holds a mop and points the head and the cotton part of it, while standing next a pail.\", \" Then, the woman wets the mop and drains it squeezing in the pail.\", \" After, the woman mops the floor and wash it in the pail turning the handle, then the person squeeze the mop and cleans the floor again the floor.\", \" The person shows again how to wash and drain the mop, then mopping the floor.\"]}, \"v_OjV4UScwkU0\": {\"duration\": 161.07999999999998, \"timestamps\": [[0, 20.94], [20.94, 57.99], [57.99, 161.08]], \"sentences\": [\"man is in a workshop and puts a glove in his hand and grab a weld machine.\", \" man start welding something in a metal table.\", \" the man holds another tool and then keeps welding the metal.\"]}, \"v_Qo3riKtRg2c\": {\"duration\": 10.82, \"timestamps\": [[0, 9.9], [2.33, 3.14], [0, 10.82]], \"sentences\": [\"man is standing in a bowling thwogin the ball to the pins.\", \" in the next row someone is throwing a green ball.\", \" man is in bowling playing a game.\"]}, \"v_IiCN1md2MV4\": {\"duration\": 12.19, \"timestamps\": [[0, 0.37], [0.43, 3.84], [3.84, 7.44], [7.74, 12.19]], \"sentences\": [\"Two men play squash in a room with a glass wall.\", \" The man on front hits the ball to the wall.\", \" Then, the man on back hit the ball that comes on the back.\", \" After, the man stop playing and walk.\"]}, \"v_G6ayznrS0tY\": {\"duration\": 30.15, \"timestamps\": [[0, 30.15], [2.56, 5.28], [5.28, 8.9]], \"sentences\": [\"man drinks mouthwash and then is talking to girls with a really fresh breath.\", \" man is walking in a sidewalk being interviewed for various journalists.\", \" in studio the man is eating a pizza and people are retouching the makeup.\"]}, \"v_UPwDuuYlLfQ\": {\"duration\": 35.06, \"timestamps\": [[0, 35.06], [1.93, 35.06], [4.73, 35.06]], \"sentences\": [\"A dog is sitting on a table.\", \" A person is shaving the dogs hair.\", \" The dog is trying to bite the person cutting its hair.\"]}, \"v_AAfFlwaXW3c\": {\"duration\": 60.93, \"timestamps\": [[0, 13.4], [14.62, 29.25], [34.43, 60.93]], \"sentences\": [\"Several scenes depict construction workers working on a building.\", \"  A man sits inside, drinking a cup of coffee.\", \" Another worker uses boards and bags to lift them like weights.\"]}, \"v_kWN4zFblj6o\": {\"duration\": 84.15, \"timestamps\": [[0, 15.15], [15.99, 54.7], [61.01, 84.15]], \"sentences\": [\"A group of people are inside a large gym.\", \" They are using steppers to exercise.\", \" They jump on and off the steppers as they go.\"]}, \"v_8-QcL1k5n6k\": {\"duration\": 60.84, \"timestamps\": [[0, 6.69], [7, 29.2], [29.51, 40.76], [41.06, 48.06], [48.37, 49.89], [52.93, 59.32]], \"sentences\": [\"A man exercise on a rowing machine pulling a handle and moving forward and backward.\", \" Then, the man increases the resistance of the machine and continue exercising.\", \" The foam seat is contoured and looks comfortable.\", \" The machine has a multi functional on board computer.\", \" The man can easily fold up quickly for compact storage.\", \" The machine has transport wheels for easy transport the rowing machine to exercise.\"]}, \"v_H80bs53Arrw\": {\"duration\": 164.19, \"timestamps\": [[0, 21.34], [19.7, 74.71], [73.89, 164.19]], \"sentences\": [\"a woman speaks the the camera while spinning a hula hoop around her arm.\", \" the woman then takes the hula hoop and places it around her hips.\", \" the woman demonstrates how to use the hula hoop in the traditional way.\"]}, \"v_wBcP3SQ3Qg4\": {\"duration\": 229.86, \"timestamps\": [[0, 67.81], [67.81, 95.39], [95.39, 117.23], [117.23, 229.86]], \"sentences\": [\"two women are standingin a bathoom in fnot of a miror and one of the women is washing her hands.\", \" the woman pour soap and is washing her hands with a sponge and pouring water to clean them.\", \" the woman dry her hands with bloting paper and throw the paper on the paper bin.\", \" then the other woman do the same and wash her hands with soap and dry them with blotting paper.\"]}, \"v_J1fcLhB-Slg\": {\"duration\": 31.67, \"timestamps\": [[4.28, 5.07], [5.23, 18.85], [18.85, 27.71]], \"sentences\": [\"A man stands in front of several beers on a table while two others watch.\", \" The man drinks all the beers in quick succession.\", \" Two of the spectators pat the individual's shoulder.\"]}, \"v_1cCRZztswFA\": {\"duration\": 175.75, \"timestamps\": [[0, 29], [43.94, 105.45], [118.63, 175.75]], \"sentences\": [\"A woman walks onto a basketball court.\", \" She is performing while using a baton.\", \" She turns and spins the baton as she performs.\"]}, \"v_lRB6XvAm_FU\": {\"duration\": 91.07, \"timestamps\": [[0, 8.65], [8.65, 47.36], [47.36, 66.48], [66.48, 83.78], [84.24, 91.07]], \"sentences\": [\"The words \\\"Decorating With Attitude\\\" appear on screen.\", \" Children open ornaments and place them on the tree.\", \" The little girl destroys a glass ornament.\", \"  She then purposely breaks another ornament.\", \" Credits roll at the end.\"]}, \"v_NpBZn7OHUKo\": {\"duration\": 119.84, \"timestamps\": [[0, 18.58], [13.18, 39.55], [34.75, 69.51], [68.31, 119.84]], \"sentences\": [\"two man stand facing the camera.\", \" one man speaks the camera.\", \" the two men then walk over to an exercise machine.\", \" the talking man continues to talk with the other man demonstrates exercises.\"]}, \"v_MBTSe-NHK-I\": {\"duration\": 133.75, \"timestamps\": [[0, 16.05], [16.05, 46.14], [46.14, 74.9], [75.57, 84.26], [84.26, 133.75]], \"sentences\": [\"A river with white rapids and a group of tubers wearing yellow helmets float in the distance.\", \" One tuber comes across the rapids  bobbing up and down through the rapids.\", \" The second tuber comes through the rapids.\", \" The third tuber goes through the rapids.\", \" The camera zooms out as the tubers pass through the rough water and end up in the calm waters of the river.\"]}, \"v_uz91AvGxjbw\": {\"duration\": 190.59, \"timestamps\": [[0, 42.88], [42.88, 103.87], [103.87, 113.4], [115.31, 190.59]], \"sentences\": [\"People play croquet in a field, a man hits a ball to score.\", \" After, the man hits a yellow ball with a stick.\", \" Also, a young man plays croquet, and then sit.\", \" The old man continues playing croquet, then he shakes hands with a person.\"]}, \"v_uzUVSpklbRs\": {\"duration\": 48.83, \"timestamps\": [[0, 14.65], [11.48, 31.5], [28.57, 48.1]], \"sentences\": [\"A woman is seen sitting on a camel and laughing to the camera.\", \" Another woman rides in front of her as they walk down the desert.\", \" A person is seen waving to the camera while others walk around.\"]}, \"v_9dSOQrpovQI\": {\"duration\": 60.98, \"timestamps\": [[0, 12.2], [12.2, 44.51], [45.12, 48.78], [49.09, 60.98]], \"sentences\": [\"The intro states Marissa's first attempt at washing dishes by herself and then we see a little girl with brown hair and a pink shirt washing the dishes at the sink, she turns to look at the camera and then back to the sink.\", \" She has a bowl filled with water and is rinsing the silverware in the bowl, then placing it over on the right in the rack.\", \" Then the words are shown This is how we found the kitchen when she was done.\", \" The dish rack is shown and all of the dishes are piled on top of one another in disarray, and there is even a soap bottle thrown in the mix.\"]}, \"v_zgnBeiEB5pE\": {\"duration\": 176.38, \"timestamps\": [[26.46, 29.98], [29.1, 84.66], [84.66, 176.38]], \"sentences\": [\"First the woman introduces the man and what he has bought to town.\", \" She then asks him: what is a horse's neck? and he tells her where it originated from and why it's called the horse's neck.\", \" Then they start to actually make the drink themselves and when they're done, they toast and begin drinking.\"]}, \"v_81k4vwur1Gk\": {\"duration\": 171.48, \"timestamps\": [[0, 11.15], [18.01, 89.17], [100.32, 171.48]], \"sentences\": [\"A man removes a cup from a coffee machine.\", \" He takes a drink, and obviously enjoys it.\", \" He is then seen singing and dancing around an office at work.\"]}, \"v_Q-879RNVOdg\": {\"duration\": 202.25, \"timestamps\": [[0, 1.01], [2.02, 12.13], [12.13, 23.26], [24.27, 85.95], [86.97, 105.17], [106.18, 176.97], [177.98, 202.25]], \"sentences\": [\"A \\\"UCT Wakeboarding\\\" logo appears on screen.\", \" Several shots of a calm body of water appears.\", \"  Several young people in swimsuits walk out to the pier on the water.\", \" They go out on a boat and enjoy a day of water skiing and cruising.\", \" They all jump off a tall pier into the water and swing on a rope into the water.\", \" They return to the boat for more riding and water skiing.\", \" Social media links appear on screen.\"]}, \"v_o86qcfpzO0g\": {\"duration\": 139.34, \"timestamps\": [[0, 18.81], [18.11, 139.34], [52.25, 55.04]], \"sentences\": [\"Two women light each others cigarettes.\", \" They sit at a table and smoke their cigarettes.\", \" They blow smoke rings into the air in front of them.\"]}, \"v_xYeqvN8cihg\": {\"duration\": 36.06, \"timestamps\": [[9.92, 25.06], [25.78, 29.39], [34.8, 36.06]], \"sentences\": [\"Young man starts to solve a rubiks cube.\", \"  The man wearing green talks to the camera.\", \"  The man wearing black stares at the camera.\"]}, \"v_wDFpFJ1CP9g\": {\"duration\": 229.5, \"timestamps\": [[0, 9.18], [9.18, 81.47], [81.47, 156.06], [156.06, 205.4], [205.4, 219.17], [219.17, 229.5]], \"sentences\": [\"An introduction comes onto the screen for a video about teaching a child how to wakeboard.\", \" A man is explaining the key concepts behind making a child comfortable enough to wakeboard while his daughter is shown wakeboarding in a lake at the same time.\", \" Next, they are shown practicing how to wakeboard in a pool while the man discusses the techniques.\", \" Next, they show the girl back at the lake wakeboarding while her father continues to explain the proper way to teach them.\", \" As the girl wakeboards several people cheer for her from the boat.\", \" The video ends with the closing graphics and captions shown at the end of the video.\"]}, \"v_3JHIcli-Wlg\": {\"duration\": 48.65, \"timestamps\": [[0, 9.49], [12.89, 39.16], [40.13, 48.65]], \"sentences\": [\"A male gymnast spits on his hands.\", \" He then mounts a beam and begins spinning on it.\", \" He dismounts, throwing his arms up in the air.\"]}, \"v_HQk5hngL4Us\": {\"duration\": 153.53, \"timestamps\": [[0, 39.15], [38.38, 106.7], [99.8, 148.16]], \"sentences\": [\"A camera pans around a christmas tree and shows several kids walking around with ornaments.\", \" The kids take turns decorating the trees and smiling to the camera.\", \" They continue wandering around decorating while adults help occasionally.\"]}, \"v_1nltPeGC5ZQ\": {\"duration\": 84.75, \"timestamps\": [[0, 10.59], [13.98, 26.7], [27.97, 44.07], [44.92, 81.36]], \"sentences\": [\"Two sumo wrestlers compete in a ring on front a crowd, the short sumo takes out the ring to the bigger one and a picture is shown.\", \" The sumos eat Asian food with other people.\", \" Then, the sumos continue wrestling and again the little sumo takes out the big one.\", \" After, the sumos walk on the street, a pictures, a sumo sitting and fighting.\"]}, \"v_dJgea9sOlBY\": {\"duration\": 20.71, \"timestamps\": [[0, 4.66], [3, 14.08], [13.57, 19.88]], \"sentences\": [\"A young girl is seen sitting on a ball looking to the camera.\", \" She begins do sit ups while looking off into the distance.\", \" She continues performing sits ups and laughing with another.\"]}, \"v_ZVNRQ_MPZAs\": {\"duration\": 206.69, \"timestamps\": [[0, 49.61], [49.61, 106.45], [106.45, 151.92], [151.92, 205.66]], \"sentences\": [\"Views of the very dirt filled field these bikers get to practice with their bikes.\", \" They start racing on the dirt and you can see them going high in the air.\", \"  the dirt looks a little wet and muddy like it was raining previously but that obviously does not matter to the racers.\", \" this is their hobby, what they do for fun on their down time.\"]}, \"v_iOa_svsqGxQ\": {\"duration\": 169.32, \"timestamps\": [[0, 22.01], [38.94, 142.23], [150.69, 169.32]], \"sentences\": [\"Several scenes of different kinds of weather are shown.\", \" Men are then shown surfing waves in the ocean.\", \" They ride the waves on surf boards through the turbulent waters.\"]}, \"v_VR19Scunfhg\": {\"duration\": 137.67000000000002, \"timestamps\": [[0, 18.59], [10.33, 32.35], [22.03, 54.38], [42.68, 88.11], [81.91, 137.67]], \"sentences\": [\"a man walks a tight rope hanging over a pool.\", \" the man falls in the pool.\", \" another man walks a tight rope in a park.\", \" that man falls from his tightrope.\", \" various people are seen walking different tight ropes and falling.\"]}, \"v_aYtnkEWM_Cg\": {\"duration\": 95.16, \"timestamps\": [[0, 7.14], [7.14, 38.06], [38.06, 95.16]], \"sentences\": [\"Two of the players stand behind the net waiting for the other team to pass the volleyball.\", \" The green team wins multiple times and they all clap and smile at each other.\", \"  The red team is their opponents and they're seen walking.\"]}, \"v_Sh8r9g_lp7U\": {\"duration\": 69.43, \"timestamps\": [[0, 30.2], [30.55, 52.07], [52.42, 69.43]], \"sentences\": [\"Three men are in the inside of an empty blue pool,reconstructing the bottom of it.\", \"The guy on the left,picks up a man man made broom and starts sweeping all of the debris off of the cement and a lady joins him in his task.\", \"On the right,a man is kneeling down,laying down the rest of the blue tile in the pool.\"]}, \"v_3qkNnr1_78I\": {\"duration\": 131.15, \"timestamps\": [[0.66, 47.21], [48.52, 88.52], [89.18, 126.56]], \"sentences\": [\"A person is slacklining reach the mountain summit near a town.\", \" People slack to pass from a mountain to another mountain.\", \" A man slacks to pass from a summit to another summit.\"]}, \"v_kzbQWKUMyS0\": {\"duration\": 236.26, \"timestamps\": [[0, 62.61], [64.97, 105.14], [103.96, 192.56], [192.56, 236.26]], \"sentences\": [\"A young man appears out of the corner doing a flip on a large stage and clapping to the audience.\", \"As he dances,the man jumps on top of a rope and starts teetering back and forth until he slides down into a split.\", \"After the split,the man jumps up and begins doing flips up and down on the line before finally getting off and flipping underneath it.\", \"The circus show continues,and the man continues doing jumps on top of the slack line and clapping to get the audiences' participation.\"]}, \"v_3cQg4XOkC5Y\": {\"duration\": 106.88, \"timestamps\": [[0, 13.89], [17.64, 74.28], [83.9, 106.88]], \"sentences\": [\"A couple of girls are standing in the front yard.\", \" They have sparkling pom poms on the ground.\", \" They do several cheerleading moves, eventually incorporating the pom poms as they dance.\"]}, \"v_feWO_gqAcGk\": {\"duration\": 68.22, \"timestamps\": [[0, 7.16], [12.96, 41.96], [47.75, 68.22]], \"sentences\": [\"A large bull is injured inside a ring.\", \" A man is riding a horse while stabbing the bull.\", \" The men stab the bull over and over again.\"]}, \"v_sIYRsGZm2XY\": {\"duration\": 107.81, \"timestamps\": [[0, 8.09], [8.62, 35.58], [38.81, 107.81]], \"sentences\": [\"A man is seated inside a booth.\", \" He is smoking from a hookah pipe.\", \" News reporters go into the lounge and talk about smoking with hookahs.\"]}, \"v_JXazqQitVdQ\": {\"duration\": 12.49, \"timestamps\": [[0, 10.74], [2.12, 4.81], [10.93, 12.49]], \"sentences\": [\"A girls is playing on the monkey bars trying to get to the other side.\", \" She swings back and forth as she struggles a bit to make it to the other end.\", \" She finally gets to the other end and looks over at the camera.\"]}, \"v_6jTH_gFx6Ik\": {\"duration\": 154.11, \"timestamps\": [[6.93, 133.31], [14.64, 133.31], [133.31, 146.41]], \"sentences\": [\"People are sitting in a raft going down a river.\", \" They are rowing their oars to move through the waves.\", \" They get out of the raft and pull it out of the water.\"]}, \"v_0Zg-7EgFiC8\": {\"duration\": 218.22, \"timestamps\": [[0, 18.55], [43.64, 130.93], [138.57, 218.22]], \"sentences\": [\"A group of people are running around inside a gym.\", \" They are doing various cheerleading routines.\", \" They are acting silly, riding each other for the camera.\"]}, \"v_Q2wd5aLtZ1E\": {\"duration\": 62.25, \"timestamps\": [[0, 10.58], [12.45, 43.27], [39.84, 62.25]], \"sentences\": [\"a man is on a roof cutting throwing shingles.\", \" the man removes the roofing.\", \" the man then installs a new roof.\"]}, \"v_juLxWt_3omw\": {\"duration\": 28.05, \"timestamps\": [[0, 5.89], [6.03, 26.37], [26.37, 28.05]], \"sentences\": [\"The woman stands still for a short while in her blue/white outfit.\", \" Then she lifts the heavy yellow weight and someone who's watching her shows peremptory by yelling.\", \" She holds it up for a good second and then drops it back down to the ground.\"]}, \"v_7hvq4VqEGCE\": {\"duration\": 180.16, \"timestamps\": [[0, 10.81], [21.62, 90.98], [136.02, 180.16]], \"sentences\": [\"A man is holding a baby down in a room.\", \" He is forcing the child's eyelids open.\", \" The baby is falling asleep despite what the man is doing.\"]}, \"v_Ktun1-2Y540\": {\"duration\": 179.1, \"timestamps\": [[0, 17.01], [20.6, 85.97], [95.82, 179.1]], \"sentences\": [\"A woman is standing at an outside event.\", \" She is spinning in circles inside a hula hoop.\", \" She continues dancing with the hula hoop and smiling at people.\"]}, \"v_K3Z3z8t-RIQ\": {\"duration\": 203.76, \"timestamps\": [[0, 25.47], [42.79, 131.42], [142.63, 203.76]], \"sentences\": [\"A group of girls are performing on a stage.\", \" They are using jump ropes to twirl, spin, and flip.\", \" They continue performing more and more elaborate tricks.\"]}, \"v_MrVj3D-DuJI\": {\"duration\": 81.97, \"timestamps\": [[0, 81.97], [0.82, 79.51], [80.33, 81.97]], \"sentences\": [\"A woman is standing in a room.\", \" She starts hula hooping in the room.\", \" She walks towards the camera.\"]}, \"v_8EfkFxoXI_4\": {\"duration\": 170.74, \"timestamps\": [[0, 43.54], [43.54, 110.98], [111.83, 142.57], [142.57, 170.74]], \"sentences\": [\"A black tool clip is sitting on a wooden table by itself and then suddenly someone grabs it and begins to turn it,to show the tools inside.\", \"A bike then appears and the person starts to move the seat back and forth illustrating its looseness.\", \"The tool is then inserted into the seat and it begins to get tightened.\", \"Once the seat is tight,the man then removes it out of the seat and then reinserts it to make sure it is properly positioned.\"]}, \"v_Y5zJT3BjIxM\": {\"duration\": 185.74, \"timestamps\": [[0, 39.93], [21.36, 48.29], [58.51, 137.45], [137.45, 185.74]], \"sentences\": [\"Several hair tools are shown on a table.\", \" A man shows his hair off.\", \" A woman shaves the back of his hair.\", \" He then shows off the results.\"]}, \"v_xSIh6JjAR_Y\": {\"duration\": 233.57, \"timestamps\": [[0, 30.36], [38.54, 171.67], [184.52, 233.57]], \"sentences\": [\"A man is shown riding a camel down a street.\", \" Another man appears next to him.\", \" He guides the camel back to the starting point.\"]}, \"v_fU-OulK7lZs\": {\"duration\": 144.5, \"timestamps\": [[0, 6.5], [7.22, 110.54], [79.47, 81.64], [122.1, 144.5]], \"sentences\": [\"People are walking out onto a field.\", \" They begin playing a game of indoor soccer.\", \" People are sitting in the stands cheering for them.\", \" They start celebrating and holding a trophy.\"]}, \"v_E2nAOID5DLM\": {\"duration\": 28.47, \"timestamps\": [[0, 2.42], [2.56, 5.41], [5.55, 28.47]], \"sentences\": [\"The IAAF World Youth Championships logo appears.\", \" A young man waits on a racetrack.\", \"  The man runs and does a jump into sand and a scoreboard graphic is overlaid.\"]}, \"v_WGEKoGRIJGk\": {\"duration\": 134.35, \"timestamps\": [[0.67, 28.21], [27.54, 92.03], [90.69, 134.35]], \"sentences\": [\"A young girl is seen speaking to the camera while holding up a flute.\", \" She then begins playing the instrument while a boy watches her from behind.\", \" She stops playing to speak to the camera and wave.\"]}, \"v_ILIpCfCWyT0\": {\"duration\": 139.19, \"timestamps\": [[0, 16.01], [16.7, 35.49], [36.89, 85.6], [93.26, 134.32]], \"sentences\": [\"Skaters are skateboarding during the day.\", \" Now the same skaters are Skating during he night time.\", \" Now they are skating handrails at the park during the day.\", \"  Skating through New York City again during the day.\"]}, \"v_yxDsp8EBZtY\": {\"duration\": 8.34, \"timestamps\": [[0, 8.34], [0, 8.25], [0.25, 8.34]], \"sentences\": [\"man is in a bricked sidewalk doing a shot put.\", \" man is throw the ball to a large green grassy field.\", \" man do some turns and throw a ball into a field.\"]}, \"v_lFlQ_xWVt8M\": {\"duration\": 126.02, \"timestamps\": [[0, 23.94], [23.94, 52.93], [52.93, 86.32], [86.32, 115.93], [115.93, 126.02]], \"sentences\": [\"A man dressed in protective gear and wearing a metal mask is sitting on metal stool in front of a metal table.\", \"The man is holding a tool in his right arm and the camera zooms in to show what it is while the man continues to talk.\", \"The man then puts his mask on, the screen goes black and a very hot flame that is blue,white and green appear and is moving, while a blue CEV logo is at the bottom right of the screen.\", \"A close up of the man holding a small metal piece is shown while a black object points at circular markings in the metal.\", \"A special effects outro begins and it ends with a white screen, big blue letters that read CEV in the middle, website in black, and the phone number also in black.\"]}, \"v_hfZQBDePOOE\": {\"duration\": 199.46, \"timestamps\": [[1, 199.46], [1, 8.98], [9.97, 83.77], [84.77, 199.46]], \"sentences\": [\"A professional wake boarder interviews on camera in between shots of him demonstrating tricks and stunts on a wakeboard in the water.\", \"  A man in black shades interviews with  a camera, while sitting in front of a body of water.\", \"  The man is then shown conducting various stunts and tricks in the water while wake boarding, including high jumps in the air while being pulled by a motor boat.\", \"  The man continues interviewing before ending in one final stunt.\"]}, \"v_JJ811udnROI\": {\"duration\": 37.06, \"timestamps\": [[0, 7.78], [7.41, 25.39], [24.64, 36.13]], \"sentences\": [\"A young child is seen wandering around a playground.\", \" She hops up and down while others watch in the distance.\", \" She continues to play hop scotch and walks towards the camera.\"]}, \"v_rXgxlwrRFTg\": {\"duration\": 36.69, \"timestamps\": [[0, 12.84], [12.84, 17.06], [17.24, 36.69]], \"sentences\": [\"man is standing in front of a horse in a barn.\", \" people are riding horses in a line in a alrge gren grassy field.\", \" the man are passing through a river and keep walking on the plain.\"]}, \"v_q81H-V1_gGo\": {\"duration\": 160.15, \"timestamps\": [[0, 20.02], [35.23, 99.29], [104.1, 160.15]], \"sentences\": [\"A man is talking outside a house.\", \" He puts a ring over his finger and pulls out an arrow.\", \" He then demonstrates how to shoot the arrow with the bow.\"]}, \"v_Bh35Q9vNsSA\": {\"duration\": 27.31, \"timestamps\": [[0, 5.32], [5.32, 21.03], [21.71, 27.31]], \"sentences\": [\"Two women are sitting down on a couch watching a man who is standing in their living room with bag pipes.\", \"Another couple appears and shows their reactions before the ladies come back and begin laughing.\", \"Finally,the man begins to play his instrument and they both continue laughing at him.\"]}, \"v_tlgEi4bU9Fc\": {\"duration\": 86.75, \"timestamps\": [[0, 22.99], [22.99, 86.75], [0, 86.75]], \"sentences\": [\"woman is sitting on a chair with curlers on her hair in a room.\", \" the woman takes out the curls and shows her wavy hair talking to the camera and walking in the room.\", \" woman is laying in a bed next to the girl with the curlers.\"]}, \"v_HDVk1O78gwc\": {\"duration\": 223.61, \"timestamps\": [[0, 25.72], [29.07, 122.98], [143.11, 223.61]], \"sentences\": [\"A female gymnast mounts a high bar.\", \" She is seen in several clips as she falls and fails at the the flips and mounts.\", \" The clips continue throughout the video.\"]}, \"v_5Wp2dxIAocI\": {\"duration\": 213.25, \"timestamps\": [[0, 63.98], [60.78, 145.01], [142.88, 210.05]], \"sentences\": [\"A woman is seen speaking to the camera and begins wrapping a box.\", \" She pushes the paper all along the box and tucking in the sides.\", \" She tapes down the box and presents it to the camera.\"]}, \"v_RiF_iAc0keQ\": {\"duration\": 11.89, \"timestamps\": [[0.18, 4.93], [3.21, 8.68], [7.97, 11.83]], \"sentences\": [\"Four kids are seen jumping on a bed with one another.\", \" One child grabs the other by the legs while the others jump down.\", \" The child flips the other down onto the bed.\"]}, \"v_m--b-Ltjm_Y\": {\"duration\": 143.15, \"timestamps\": [[0, 25.77], [22.9, 93.05], [79.45, 143.15]], \"sentences\": [\"a woman is kneeling down talking the the camera.\", \" the woman then grabs a pair of running stilts and demonstrates them.\", \" several people then go through a city park on the running stilts.\"]}, \"v_wTBJ4PRnU4k\": {\"duration\": 233.85, \"timestamps\": [[0, 56.12], [56.12, 111.08], [111.08, 233.85]], \"sentences\": [\"woman gets out a black car and talks to the camera.\", \" woman opens the car trunk and grab some tools and the spare tire and is showing how to change the tire.\", \" woman holds the hydraulic jack, unscrew the crews put the new tire and tie the screws.\"]}, \"v_XlEmG7nM0jw\": {\"duration\": 66.22, \"timestamps\": [[0, 9.93], [14.24, 43.05], [46.36, 66.22]], \"sentences\": [\"A man is talking from behind a bar.\", \" He pours ice into a glass, then adds different liquors.\", \" He prepares the drink, ready to serve.\"]}, \"v_wlcU-u-xsH4\": {\"duration\": 34.76, \"timestamps\": [[0, 19.29], [0, 19.47], [15.82, 19.47]], \"sentences\": [\"People are playing a game of tug of war.\", \" People are standing behind them watching.\", \" The rope breaks and people fall onto the ground.\"]}, \"v_1ftLLKrC81s\": {\"duration\": 220.37, \"timestamps\": [[0, 22.04], [22.04, 220.37], [0, 220.37]], \"sentences\": [\"old man is talking to the camera in studio.\", \" a man and a woman start dancing tango in the middle of stage.\", \" people are sitting around stage watching the couple dance.\"]}, \"v_Ce0t7gfJl5w\": {\"duration\": 176.96, \"timestamps\": [[0, 23], [38.93, 113.25], [130.95, 176.96]], \"sentences\": [\"A man is skateboarding down city roads.\", \" He does several stunts as he goes, and stops to talk to the camera.\", \" He winds down the road, falling down and then walking for a while.\"]}, \"v_lcEGoZAC7GI\": {\"duration\": 59.91, \"timestamps\": [[1.8, 4.49], [17.67, 57.21], [17.67, 53.62], [35.94, 54.22]], \"sentences\": [\"The credits of the clip are shown.\", \" Brown boxes are stacked around an exercise bike.\", \" An exercise bike is on a tiled floor.\", \" A guy is riding the exercise bike.\"]}, \"v_cjUz6gVQPEs\": {\"duration\": 89.07, \"timestamps\": [[0, 20.49], [18.71, 56.56], [60.12, 88.63]], \"sentences\": [\"A gymnast is seen standing with his arm up and walking towards uneven bars.\", \" He begins swinging around on the bars over and over.\", \" He continues swinging on the bars and ends by jumping down with his arms up.\"]}, \"v_CRNycmwvGXs\": {\"duration\": 152.86, \"timestamps\": [[0, 32.86], [30.57, 82.54], [80.25, 148.27]], \"sentences\": [\"A man is seen speaking to the camera and holding up a box.\", \" He opens the box and pulls out paper.\", \" He takes a drink and continues holding up items and begins smoking a cigarette and holding up more paper.\"]}, \"v_iHO42zwYsu0\": {\"duration\": 142.71, \"timestamps\": [[0, 59.22], [57.8, 80.63], [104.89, 142.71]], \"sentences\": [\"A man is pushing a lawn mower through the grass.\", \" He goes around a pile of leaves in the grass.\", \" He leaves and pushes the lawn mower somewhere else.\"]}, \"v_qVuRcevXgMk\": {\"duration\": 80.81, \"timestamps\": [[0, 4.04], [4.44, 44.44], [44.85, 71.51], [71.51, 80.81]], \"sentences\": [\"A close up of a contact lens holder.\", \" A dark haired girl places a black eye lens into her left eye.\", \" Then the dark haired girl places a black eye lens into her right eye.\", \" The dark haired girl facing away from the camera turns slowly to the camera and smiles at the camera with the black eye lenses inserted into her eyes.\"]}, \"v_mRbqt5ugQSE\": {\"duration\": 165.16, \"timestamps\": [[0, 165.16], [0, 162.69], [4.95, 162.69]], \"sentences\": [\"people are surfing on waves on sea.\", \" big waves are on the sea and men are surfing.\", \" a lot of men are in a wavy ocean surfing big waves.\"]}, \"v_sPSfixKrDc0\": {\"duration\": 130.78, \"timestamps\": [[0, 18.31], [18.31, 26.16], [26.16, 96.77], [96.77, 109.2], [109.2, 113.77], [113.77, 125.54], [125.54, 130.78]], \"sentences\": [\"A man is standing behind a large light gray counter in an industrial kitchen, with a pencil and paper, talking, and holding his hands out in front of him to indicate different sizes.\", \"A large truck cake is shown, a smaller one next to it, and the toy truck is also there.\", \"The man is back at the large light gray counter and in a sped up motion the man is shown with various different supplies as he assembles a very large truck cake that was previously shown.\", \"When the cake is all done the camera pans the whole cake so the details can be seen and once again we see the smaller scale cake and the toy.\", \" A white screen appears with his logo on the left, and all of his detailed information for his shop and contact information on the right.\", \" The man and his workers are now outside of the shop where they carefully load the large cake into their red company car.\", \"A white screen appears and in the middle a black box appears with a website in it that say's \\\"RICHMONDTIMELAPSE COM\\\".\"]}, \"v_0PS48XWOsKA\": {\"duration\": 65.09, \"timestamps\": [[0, 9.11], [8.46, 27.66], [22.78, 40.03], [39.38, 65.09]], \"sentences\": [\"a woman stands in front of a window pane.\", \" the woman then points to several parts of the window.\", \" the woman then opens the window.\", \" the woman cleans the exterior of the window.\"]}, \"v_4XTJzFjjFp0\": {\"duration\": 165.05, \"timestamps\": [[0, 21.46], [26.41, 141.94], [146.89, 165.05]], \"sentences\": [\"A man is at a table inside a shop.\", \" He is showing the components of a bike wheel.\", \" He takes some parts off and puts them back on again.\"]}, \"v_G72MBCYwT8E\": {\"duration\": 50.18, \"timestamps\": [[0, 50.18], [16.31, 33.37], [33.37, 50.18]], \"sentences\": [\"This video shows Colin Minor's hammer throw in the junior olympics.\", \" He spins around fast and then lets the hammer go.\", \" He is then shown in a photo holding the hammer and there is kind words describing him.\"]}, \"v_ED7SKNfAKyI\": {\"duration\": 13.77, \"timestamps\": [[0, 2.75], [3.1, 7.78], [8.12, 12.74]], \"sentences\": [\"A woman is seen swinging her arms around with another behind her.\", \" The girl moves their arms up while others behind them play basketball.\", \" The girls continue moving their arms around one another.\"]}, \"v_je6wJ_Ky5wg\": {\"duration\": 77.52, \"timestamps\": [[0, 77.52], [30.62, 31.78], [53.88, 59.69], [55.04, 77.52]], \"sentences\": [\"A lady in a sports bra leads a glass in aerobics using a exercise step.\", \" The instructor raises her am in the air.\", \" We pan left and see the class without the teacher.\", \"  The lady in pink in the back right is lost and stops trying.\"]}, \"v_BR9dr2iOyNc\": {\"duration\": 102.07, \"timestamps\": [[0, 102.07], [3.57, 102.07], [7.65, 102.07], [10.72, 102.07]], \"sentences\": [\"A man is acting strangely on a subway.\", \" Several other people are trying to ignore it.\", \" He is licking his shoe.\", \" Another man is reading a paper.\"]}, \"v_9GwsrWUq7mY\": {\"duration\": 73.77, \"timestamps\": [[1.11, 19.55], [15.49, 48.69], [50.9, 72.29]], \"sentences\": [\"People are seen riding on a tube down a river.\", \" The people hold their hands up and smile while still riding down.\", \" They ride past several people also moving down the river.\"]}, \"v_W30cufYc_ZI\": {\"duration\": 220.73, \"timestamps\": [[0, 20.97], [36.42, 173.27], [187.62, 220.73]], \"sentences\": [\"A clock is shown under neath the waters.\", \" A swimmer goes along the bottom of the ocean while holding it.\", \" The people are scuba diving through the rocks and waters.\"]}, \"v_SqEHpHNuy-w\": {\"duration\": 117.05, \"timestamps\": [[0, 64.96], [64.96, 73.16], [73.16, 74.33], [74.33, 117.05]], \"sentences\": [\"Two military men wearing glasses are leaned over a cot smiling, talking, and looking like they are getting ready to arm wrestle while a few people around them are watching,filming them or doing their own thing.\", \"Instead of arm wrestling the man on the left uses his two hands to pull down the one fist of the man on the right.\", \"They struggle for a short while, and as soon as the guy on the right is using all his might the man on the left let's his fist go and the man on the left accidentally punches his own face and knocks his glasses off.\", \"The man on the left as well as everyone around them starts laughing very hard and the two men shake hands.\"]}, \"v_JLDZdxTf5TA\": {\"duration\": 125.69, \"timestamps\": [[0, 30.17], [16.34, 89.24], [35.82, 99.92]], \"sentences\": [\"Three people are sitting on the couch while a man is holding a bagpipe and another woman sitting on the floor.\", \" The man began playing his bagpipe while the woman get up and sat on the couch.\", \" The man stop playing and the woman in blue began laughing and singing.\"]}, \"v_ijSmiDjlmlU\": {\"duration\": 212.88, \"timestamps\": [[0, 55.35], [39.38, 117.08], [113.89, 210.75]], \"sentences\": [\"A small child is seen speaking to the camera and showing off a bathing suit.\", \" A woman plays with the girl in the pool and pulls her around.\", \" She plays with two other children in the pool and teaches them how to swim.\"]}, \"v_PUJYZEq8H64\": {\"duration\": 104.58, \"timestamps\": [[0, 17.26], [16.21, 68.5], [67.98, 104.58]], \"sentences\": [\"men on horse back sit with polo clubs in hand.\", \" the crowd disburses across the field.\", \" the men begin playing polo.\"]}, \"v_XncWGxekE30\": {\"duration\": 163.03, \"timestamps\": [[0, 22.01], [25.27, 91.3], [92.11, 163.03]], \"sentences\": [\"A group of tubers are going down a snowy hill.\", \" A man is talking to the camera as he walks.\", \" They continue down the hill together, tubing as they go.\"]}, \"v_NGk3v4sKqdg\": {\"duration\": 177.77, \"timestamps\": [[0, 8.89], [8.89, 125.33], [125.33, 168.88], [168.88, 177.77]], \"sentences\": [\"A young brunette girl is standing as she holds onto a bike tire and white words on the screen appear that read \\\"Bicycle Clinic #1\\\" and \\\"Alice Griffith (Double Rock) June 25,2011\\\".\", \"The video changes from color then eventually to black and white as people are working on different bikes and doing different things as people around them help or just watch, and sometimes children are shown watching them fix the bikes.\", \"Three large men are on a stage dancing and holding mics as they sing and small children are standing near them, then the clips go back to people working on bikes.\", \"Children are riding their bikes and the white words appear on the screen and read \\\"The Bayview BOOM bvhpradio org/boom\\\".\"]}, \"v_v2zVnmbPmeQ\": {\"duration\": 238.12, \"timestamps\": [[0, 55.96], [59.53, 163.11], [180.97, 238.12]], \"sentences\": [\"A woman is seen speaking to the camera and begins putting mascara on.\", \" She puts on eye shadow afterwards while still looking to the camera.\", \" In the end she puts on lipstick and smiles.\"]}, \"v_SgnBsgrqfj0\": {\"duration\": 237.36, \"timestamps\": [[0, 59.34], [59.34, 219.55], [219.55, 237.36]], \"sentences\": [\"woman is sitting in front of a table talking to the camera and showing a bottle of lemonade.\", \" the woman use a plastic funnel to pass the juice to a big pot and mix it with sugar and water.\", \" the woman shake the bottle and mix the lemonade.\"]}, \"v_vutxJfF0Rlg\": {\"duration\": 183.67, \"timestamps\": [[0, 57.86], [40.41, 128.57], [124.9, 180.91]], \"sentences\": [\"Several pictures are shown of people measuring themselves and a cup of coffee.\", \" Text is shown as well as pictures of people smiling to each other.\", \" Cars and money are shown as well as more text and pictures of people drinking coffee.\"]}, \"v_cfaBPxE-A5k\": {\"duration\": 95.2, \"timestamps\": [[0, 10.47], [11.9, 79.49], [80.45, 95.2]], \"sentences\": [\"A chain is wrapped around a tree stump.\", \" A man pick up a large ax.\", \" He uses the ax to chop the wood.\"]}, \"v_LqCg09IRp-o\": {\"duration\": 45.95, \"timestamps\": [[0, 12.64], [11.26, 37.91], [32.63, 45.95]], \"sentences\": [\"The man with headphones is standing and talking to the camera.\", \" The old man roller skates through the small yellow cones on the ground.\", \" The old man did a handstand on his one hand.\"]}, \"v_0dkIbKXXFzI\": {\"duration\": 15.49, \"timestamps\": [[0, 2.48], [4.03, 10.3], [10.61, 15.49]], \"sentences\": [\"A girl is on a low beam in a gym.\", \" She lifts her legs up in the air on the beam.\", \" A group of girls sit on the sideline watching.\"]}, \"v_XkkOVpXegS8\": {\"duration\": 172.07999999999998, \"timestamps\": [[0, 48.18], [40.44, 129.92], [116.16, 170.36]], \"sentences\": [\"A countdown is shown that leads into clips of people scoring goals.\", \" People skate around the ice while the video counts down continuously.\", \" Audience members react as more people score goals and the numbers count down.\"]}, \"v_XIMi2oydVB8\": {\"duration\": 81.06, \"timestamps\": [[0, 15], [15, 35.67], [35.67, 59.17], [59.17, 81.06]], \"sentences\": [\"There are three girls that seem to be very close friends and they have had their final practice together.\", \" They took many pictures and recording of the practice for memories sake.\", \" They seem to be very close and enjoy their last practice to the fullest, having fun instead of being sad.\", \" They are ready for nationals at this point and are planning to do great and are grateful for being able to practice at a nice place.\"]}, \"v_HPrkxpOoep0\": {\"duration\": 233.34, \"timestamps\": [[9.33, 222.84], [9.33, 19.83], [18.67, 233.34]], \"sentences\": [\"A man is standing on a bowling lane.\", \" He grabs a ball and throws it down a lane.\", \" He continues to bowl on the lane.\"]}, \"v_yCcqJnlviQI\": {\"duration\": 70.1, \"timestamps\": [[0, 70.1], [2.1, 70.1], [30.49, 35.05]], \"sentences\": [\"men are standing in a court playing voleyball.\", \" people is behind a fence watchnig the game in a sunny day.\", \" men are in a group cheering the team.\"]}, \"v_EXr5QXCpkYY\": {\"duration\": 234.75, \"timestamps\": [[0, 32.87], [27, 51.65], [83.34, 166.68], [160.81, 234.75]], \"sentences\": [\"People pull up carpet in a room.\", \" They paint the floor and put a pad on it.\", \" They put hardwood floors over the padding.\", \"They paint the wooden floor and lay another layer on it.\"]}, \"v_q0KrlywYHM8\": {\"duration\": 37.72, \"timestamps\": [[0, 30.37], [0.57, 5.85], [9.24, 13.77], [13.96, 32.63], [33.01, 37.72]], \"sentences\": [\"A man in a blue shirt by an indoor pool is talking about a series of videos he's endorsing about water polo.\", \"  A graphic from the bottom of the screen appears with a yellow logo and blue letters and directly below the man his name in white letters.\", \" A still picture of a dvd set appears.\", \"  There is a video shown of a water polo match and at the bottom of the screen is a small dvd graphic as well as an orange colored bar with white text and below it a blue colored bar with white text.\", \"  A graphic screen appears with a crest with to orange bars on it, the larger bar has blue letters and the smaller bar has white, there is also a website address below the logo then the screen turns black.\"]}, \"v_ATk8OkvNHHQ\": {\"duration\": 179.38, \"timestamps\": [[0, 3.59], [3.59, 13.45], [13.45, 68.16], [68.16, 81.62], [81.62, 177.58], [177.58, 179.38]], \"sentences\": [\"An intro screen appears and white words on the screen appear that say \\\"100 % BMX RACE 4\\\".\", \"A young boy is dressed in full protective gear and is standing on his bike as he puts his gloves on and pulls his helmet into place.\", \" Various clips of different boys all dressed up in their protective bike gear play as they are all shown riding their bikes very quickly around different tracks.\", \"From the view point of a rider, boys are riding around a track and suddenly a rider in front loses their balance and the rider falls off their bike and the camera man just rides on by avoiding hitting the fallen rider and the bike, and it plays twice.\", \"Various clips of different bike riders on different tracks are riding around as fast as they can and also doing some tricks.\", \"An outro screen appears with a collage of various pictures of people on their bikes and red text that reads \\\"100% BMX RACE\\\" , then the screen fades to black.\"]}, \"v_-u2zAMnrCC4\": {\"duration\": 161.05, \"timestamps\": [[0, 19.33], [29.79, 60.4], [58.78, 118.37], [115.15, 157.03]], \"sentences\": [\"A person is seen sitting in a kayak with two men behind him.\", \" The men hit a wall of a pool when a girl walks into frame.\", \" The pool knocks over the man and the other begins kayaking down the forest.\", \" The men stand around afterwards and speak to one another.\"]}, \"v_OBua42LRiF8\": {\"duration\": 78.14, \"timestamps\": [[0, 5.08], [5.08, 71.49], [71.89, 78.14]], \"sentences\": [\"A black screen with title text of team names and a date is shown.\", \" A number of people play a lacrosse game in a stadium while watched by several referees and spectators.\", \" One team seems to successfully score and celebrates.\"]}, \"v_UN0bAa_ko4I\": {\"duration\": 217.39, \"timestamps\": [[0, 2.17], [2.17, 3.26], [3.26, 122.82], [123.91, 178.26], [179.34, 217.39]], \"sentences\": [\"View of a large body of water with a city around it, the words \\\"Oakland - California - USA\\\" are overlaid.\", \" A young man by the name of Mestre Calango sits by the water.\", \" Calango starts performing by the water on the pier.\", \" He goes to the beach, takes his shirt and shoes off and performs some more.\", \" Credits overlay a black screen.\"]}, \"v_SF3pw17yBB4\": {\"duration\": 15.14, \"timestamps\": [[0, 15.14], [0, 13.1], [13.1, 15.14]], \"sentences\": [\"A person is holding a large knife in a kitchen.\", \" Someone is shown cutting the skin from a potato.\", \" He puts down the potato when he finishes cutting it and goes for another.\"]}, \"v_1XtjXqqPvyQ\": {\"duration\": 138.67000000000002, \"timestamps\": [[0, 13.87], [5.55, 22.19], [21.49, 37.44], [36.75, 81.12], [79.74, 138.67]], \"sentences\": [\" a dog runs onto grass.\", \" a man throws a frisbee towards the dog.\", \" the dog catches the frisbee.\", \" the man runs towards the dog.\", \" the man and dog perform several tricks as a crowd watches.\"]}, \"v_5JCqKshcfHE\": {\"duration\": 18.3, \"timestamps\": [[0, 17.29], [1.37, 7.32], [7.69, 14.91], [9.15, 17.75], [14.55, 17.75]], \"sentences\": [\"A woman's leg is sticking out of the bathtub bubbles.\", \" A pink razor is glided across starting from her foot and traveling up her leg.\", \" She is shaving her luxuriously long legs.\", \" The pink razor carefully shaving and revealing a glistening smooth surface.\", \" We then get a quick glimpse of the goddess her chest covered in the suds heaves and teases.\"]}, \"v_CG-itBlFOzc\": {\"duration\": 49.04, \"timestamps\": [[0, 8.09], [7.36, 15.69], [14.47, 49.04]], \"sentences\": [\"The old woman is sitting on a chair and knitting.\", \" The woman is showing her knitted item.\", \" The woman put the two skeins for yarns on the table and then talked to the camera.\"]}, \"v_8RMrbKCQheM\": {\"duration\": 36.36, \"timestamps\": [[0, 6], [4.73, 11.09], [9.09, 14], [12.55, 24.55], [22.18, 36.36]], \"sentences\": [\"a small boy walks with a paint roller in his hand.\", \" the boy dips the paint roller in a paint holder.\", \" the boy then swipes the paint roller across a fence.\", \" a woman stands opposite of the boy.\", \" the woman is painting the fence.\"]}, \"v_4JnXF13ktSs\": {\"duration\": 35.02, \"timestamps\": [[0, 7.7], [9.45, 26.26], [27.31, 35.02]], \"sentences\": [\"A man is walking in his front yard.\", \" He is pushing a lawn mower to mow the grass.\", \" He has a baby in a carrier.\"]}, \"v_yWEFVfX-JoI\": {\"duration\": 238.12, \"timestamps\": [[0, 238.12], [182.16, 197.64], [198.83, 205.97], [214.31, 222.64], [223.83, 238.12]], \"sentences\": [\"Two people are in canoes are paddling down rapids on a river.\", \"  One of them is stopped at a bank where there is a person in a blue canoe.\", \"  There are people in a group large red tube rapids ride.\", \" With other people in canoes going by the person in their canoe passes under a bridge.\", \"  They pass by a building and then fall into the water.\"]}, \"v_sY31L_r7dsk\": {\"duration\": 55.61, \"timestamps\": [[0, 5.01], [19.19, 23.36], [25.86, 55.61]], \"sentences\": [\"A person sets a plate onto a table.\", \" A person pours dressing into a bowl.\", \" They stir the food in the bowl on the table.\"]}, \"v_WCChCrg9eZU\": {\"duration\": 161.12, \"timestamps\": [[0, 23.36], [26.59, 121.65], [127.29, 161.12]], \"sentences\": [\"A woman is standing in front of a truck in a driveway.\", \" She is using a large shovel to move snow.\", \" She scoops it up and throws it off the side of the driveway.\"]}, \"v_WoB4lSNBDww\": {\"duration\": 155.78, \"timestamps\": [[59.98, 81.79], [80.23, 85.68], [107.49, 109.05]], \"sentences\": [\"A woman is hanging wall paper on a wall.\", \" She smooths it out with a plastic tool.\", \" She cuts some of the paper out of the wall.\"]}, \"v_GuwWFip-AF0\": {\"duration\": 134.26, \"timestamps\": [[0, 6.04], [15.44, 28.87], [28.87, 52.36], [87.27, 91.97]], \"sentences\": [\"A woman picks up a statue of a tiger off of a table.\", \" People are playing pool at a pool table.\", \"  A man in a black shirt is talking into a microphone.\", \" A man gets a medal put around his neck.\"]}, \"v_iEaiLh3GZA8\": {\"duration\": 225.12, \"timestamps\": [[0, 15.76], [13.51, 46.15], [40.52, 69.79], [63.03, 225.12]], \"sentences\": [\"The train is moving forward as the buildings are lit up.\", \" An Asian man wore his glove, removed the tie of the shoe.\", \" The man began brushing the shoes and pour some clear liquid.\", \" The man began scrubbing the shoes with white cloth and then put the lace back on.\"]}, \"v_Mk1gOZ5EOUk\": {\"duration\": 86.52, \"timestamps\": [[0, 20.76], [21.63, 59.7], [57.1, 86.09]], \"sentences\": [\"A man is seen smiling to the camera holding a beer in a tube.\", \" A person's feet pushes him along a river in the tube.\", \" He continues to ride down while the cameraman swings around.\"]}, \"v_Fr9F2xRLd0A\": {\"duration\": 70.53999999999999, \"timestamps\": [[3.17, 70.19], [50.44, 70.54], [0, 70.54]], \"sentences\": [\"A person is in a kayak while two are in the water.\", \"  The people hang on to the ends and she paddles away.\", \"  This appears to be a rescue video tutorial.\"]}, \"v_cICxG-28hK0\": {\"duration\": 25.06, \"timestamps\": [[0, 5.01], [5.14, 6.01], [6.14, 9.02], [9.02, 25.06], [18.54, 20.42]], \"sentences\": [\"A number of individuals stand on some sort of indoor court.\", \" A new individual runs into frame from below holding some sort of ball.\", \" The individual throws the ball and hits someone with it.\", \" The individuals in camera frame walk to different positions.\", \" One of the individuals throws a ball at someone off frame.\"]}, \"v_kBh_98QimD4\": {\"duration\": 55.5, \"timestamps\": [[0, 9.71], [10.27, 24.42], [29.97, 54.66]], \"sentences\": [\"A man is shown playing an instrument while others walk around him.\", \" He looks off into the distance and continues to play the saxophone.\", \" He plays over and over while people walk past.\"]}, \"v_iSJ87SnNLPc\": {\"duration\": 35.62, \"timestamps\": [[2.14, 4.99], [6.06, 8.19], [10.51, 12.82], [24.04, 31.52], [34.55, 35.62]], \"sentences\": [\"A shirtless guy enters a bathroom and yawns.\", \" The guy brushes his teeth.\", \" The guy drinks a beverage.\", \" The guy now fully clothed dances.\", \" The guy poses with the beverage.\"]}, \"v_FJ7yrh2UiQ8\": {\"duration\": 207.7, \"timestamps\": [[0, 46.73], [40.5, 122.54], [113.2, 167.2], [151.62, 203.55]], \"sentences\": [\"A man is seen gearing up and walking through a forest with others.\", \" They walk to a paintball field and aim their guns around the area.\", \" The men then begin shooting others and playing paintball.\", \" The men continue to play and walk around.\"]}, \"v_SGQQSH88isc\": {\"duration\": 75.77, \"timestamps\": [[0, 23.87], [20.08, 53.04], [46.22, 75.77]], \"sentences\": [\"A woman is shown speaking to the camera while holding a dart.\", \" Pictures of a man are shown and leads into her throwing darts.\", \" She takes off a blindfold and cheers while a man eats a banana.\"]}, \"v_Q6uc1kl008o\": {\"duration\": 120.3, \"timestamps\": [[0, 120.3], [0, 16.24], [52.93, 55.94], [88.42, 108.87]], \"sentences\": [\"Men in purple and yellow sweatsuits run around on a basketball court in an arena taking turns shooting balls in preparation for a game.\", \" A man in gray talks to an usher and four other men comedown the stairs and go to their seats.\", \" A lady in pink shirt walks up the stairs.\", \" Two people in a low level get up and move further back and stop to speak with the usher.\"]}, \"v_pi6sBUrSNGk\": {\"duration\": 181.4, \"timestamps\": [[0, 19.05], [17.23, 52.6], [43.53, 117.91], [109.74, 178.67]], \"sentences\": [\" a faucet is running water.\", \" a girl walks up to the faucet and washes her hands.\", \" the girl dries her hands then throws the towel against the wall.\", \" someone comes after the girl and turns off the faucet.\"]}, \"v_DAPX3S1Nmqg\": {\"duration\": 81.6, \"timestamps\": [[0, 81.6], [0.82, 81.6], [38.35, 59.56]], \"sentences\": [\"A white dog is standing on the carpet.\", \" It has two casts on its front feet.\", \" It stands up on its back feet.\"]}, \"v_AKShRE_4eTA\": {\"duration\": 202.99, \"timestamps\": [[26.39, 180.66], [26.39, 38.57], [64.96, 71.05]], \"sentences\": [\"A man is mowing the lawn on a riding lawn mower.\", \" Kids are riding bikes on the street in front of him.\", \" A car drives on the street in front of him.\"]}, \"v_1T66cuSjizE\": {\"duration\": 12.18, \"timestamps\": [[0, 1.95], [2.31, 7.79], [8.04, 12.18]], \"sentences\": [\"A couple of wrestlers are fighting in a ring.\", \" One grabs the other before slamming him down.\", \" He holds him while the referee slides in.\"]}, \"v_vYHtmvftHoU\": {\"duration\": 166.45, \"timestamps\": [[0, 6.66], [6.66, 32.46], [31.63, 102.37], [103.2, 166.45]], \"sentences\": [\"An animated \\\"Sector 9\\\" logo appears on screen.\", \"  A man changes clothing behind his vehicle.\", \" He walks out to the water and begins surfing.\", \" A number of surfers join him in the water.\"]}, \"v_fPCfTJLh46A\": {\"duration\": 184.14, \"timestamps\": [[0, 21.18], [21.18, 43.27], [43.27, 63.53], [63.53, 184.14]], \"sentences\": [\"people are walking on sidewalk and on street.\", \" people are walking no a mall and enters in a bowling.\", \" men is playing bowling and a woman next to him is playing too throwing the ball to the pins.\", \" people is walking outside a mall to the parking lot.\"]}, \"v__roK9m9UOvM\": {\"duration\": 37.66, \"timestamps\": [[0, 36.72], [5.46, 36.72], [0.38, 36.72]], \"sentences\": [\"A woman is laying in a bed.\", \" She is putting a shoe on.\", \" She is talking to a person holding a camera.\"]}, \"v_rzm4V_McRhQ\": {\"duration\": 69.2, \"timestamps\": [[0, 11.76], [17.99, 56.39], [58.12, 69.2]], \"sentences\": [\"A man is talking from behind a bar.\", \" He pours ice into a glass, then adds several kinds of liquor.\", \" He adds colored liquids, and mixes the drink.\"]}, \"v_TFwELfVs19g\": {\"duration\": 73.53999999999999, \"timestamps\": [[18.02, 54.79], [25, 43.39], [41.18, 46.7], [58.83, 61.4]], \"sentences\": [\"A woman is laying down on a table.\", \" She gets her belly button pierced.\", \" They put an earring in the belly button.\", \" She stands up and looks in a mirror.\"]}, \"v_9uxkazuxmDw\": {\"duration\": 237.77, \"timestamps\": [[0, 55.88], [48.74, 171.2], [145.04, 235.4]], \"sentences\": [\"A large group of people are seen running around a field and cheering with one another.\", \" Several clips are shown of lacrosse players scoring goals and celebrating with one another.\", \" The people continue to score goals in different shots and celebrate with one another.\"]}, \"v_rgAALWYnRrg\": {\"duration\": 28.49, \"timestamps\": [[0, 3.42], [3.42, 8.26], [8.26, 28.49]], \"sentences\": [\"The man spins the blindfolded woman around while she's holding the bat in her hand.\", \" But then she starts swinging the bat and the man moves out of the way.\", \" Next, she swings the bat at the pinata and she hits the candy out of there, then she takes the blindfold off and swings the bat again getting more candy out.\"]}, \"v_zuBJzdDI9MY\": {\"duration\": 75.88, \"timestamps\": [[0, 75.88], [26.94, 33.01], [40.98, 75.88]], \"sentences\": [\"A man is standing in a kitchen.\", \" A man puts olive oil into a boiling pot on the stove.\", \" He puts noodles into the pot.\"]}, \"v__aEHpGmhHe8\": {\"duration\": 162.22, \"timestamps\": [[0.81, 26.77], [15.41, 85.16], [79.49, 162.22]], \"sentences\": [\"A hand take the brush and showing it to the camera, she is touching the bristle.\", \" The brushed is dipped on pink palette and showed it to the camera then dipped the brushed on the peach palette.\", \" The person painted on the hand, then started painting petals on the her arm.\"]}, \"v_vCeaFAiokrU\": {\"duration\": 141.5, \"timestamps\": [[0, 24.76], [26.89, 93.39], [97.64, 140.8]], \"sentences\": [\"A person is seen speaking to the camera holding a shovel.\", \" The person then begins shoveling snow around an area.\", \" He continues shoveling snow while speaking to the camera.\"]}, \"v_gJxR-KzawO4\": {\"duration\": 194.44, \"timestamps\": [[0, 23.33], [26.25, 119.58], [129.31, 194.44]], \"sentences\": [\"A little girl is shown standing in front of a sink.\", \" She is using soap to lather up a cup.\", \" She then rinses the cup off under the faucet.\"]}, \"v_jeaaS1NK_d4\": {\"duration\": 186.23, \"timestamps\": [[0, 88.46], [97.77, 173.19], [173.19, 186.23]], \"sentences\": [\"A group of people are gathered at a table.\", \" Two men engage in a game of arm wrestling.\", \" They pull and push trying to bend their opponent's arm.\"]}, \"v_Nx4rK_jvvR4\": {\"duration\": 28.23, \"timestamps\": [[0, 4.66], [5.22, 21.03], [21.31, 28.23]], \"sentences\": [\"A man is holding onto a woman while they do ballet.\", \" They spin around together elegantly as they dance.\", \" They continue showing several moves that can be learned at the school.\"]}, \"v_AJ_a4fE-rR0\": {\"duration\": 121.05, \"timestamps\": [[0, 17.55], [23, 79.29], [87.76, 121.05]], \"sentences\": [\"A surfer rides over an ocean wave multiple times.\", \" The wave knocks him off his board into the water.\", \" He continues surfing, maintaining his balance.\"]}, \"v_qBqUu4_qOnU\": {\"duration\": 16.25, \"timestamps\": [[0, 2.44], [2.52, 9.02], [10, 15.77]], \"sentences\": [\"A man is seen leading a blindfolded child holing a stick.\", \" The girl begins hitting a pinata.\", \" She hits it once and looks back to the camera.\"]}, \"v_RSyk6rS8ay0\": {\"duration\": 211.47, \"timestamps\": [[0, 9.52], [9.52, 24.32], [24.32, 181.86], [182.92, 211.47]], \"sentences\": [\"The logo \\\"Crossfit Connect\\\" appears on screen.\", \" \\\"The Olympic Lifts Part 2 - The Clean & Jerk\\\" appear.\", \" A woman weightlifter demonstrates the jerk followed by a list of phases.\", \" Disclaimers about the video appear on screen.\"]}, \"v_Lr5GuPjfU7Q\": {\"duration\": 90.19, \"timestamps\": [[0, 13.98], [18.94, 66.74], [72.15, 90.19]], \"sentences\": [\"A blonde woman is talking to the camera.\", \" She is demonstrating how to wrap a present.\", \" She measures and cuts paper, then tapes it together around the gift.\"]}, \"v_hiVs1hNyPpw\": {\"duration\": 64.55, \"timestamps\": [[0, 62.62], [16.14, 24.53], [63.26, 64.55]], \"sentences\": [\"A woman is standing up brushing her hair.\", \" She starts dancing while brushing her hair.\", \" She finishes and looks up.\"]}, \"v_L0Fdx2r3qA8\": {\"duration\": 181.91, \"timestamps\": [[0, 27.29], [35.47, 108.23], [130.97, 181.91]], \"sentences\": [\"A man is standing inside a kitchen.\", \" He takes a bite of a raw potato and chews it.\", \" The man demonstrates how to peel the potato using a drill.\"]}, \"v_B5VIJnAFlK8\": {\"duration\": 30.4, \"timestamps\": [[0, 12.46], [12.61, 13.53], [13.37, 30.4]], \"sentences\": [\"An individual uses a squeegee on the panes of a window.\", \" The individual puts the squeegee down.\", \" The individual uses a towel to wipe the panes of the window.\"]}, \"v_DZrCkQ2z-u4\": {\"duration\": 50.62, \"timestamps\": [[0, 8.86], [12.4, 34.93], [36.95, 50.62]], \"sentences\": [\"A male gymnast mounts a beam in a gym.\", \" He spins and turns on the beam several times.\", \" He dismounts, raising his arms in the air.\"]}, \"v_JmL6BiuXr_g\": {\"duration\": 141.13, \"timestamps\": [[0, 21.17], [10.58, 40.93], [25.4, 74.8], [50.1, 141.13]], \"sentences\": [\"The people are on mountain snowboarding down the slope.\", \" A man is wiping the skiboard.\", \" Group of people are skiing down the slope.\", \" A man is cleaning up and waxing the ski board on the table.\"]}, \"v_3KmMvfdidvQ\": {\"duration\": 96.34, \"timestamps\": [[0, 13.49], [19.75, 56.84], [60.69, 96.34]], \"sentences\": [\"A sumo wrestler meets another one inside a ring.\", \" They crouch down in preparation for battle.\", \" They wrestle each other, slamming each other on the ring.\"]}, \"v_zto8JvkVLVw\": {\"duration\": 47.39, \"timestamps\": [[0, 5.21], [2.13, 20.14], [20.14, 47.39]], \"sentences\": [\"A gymnast is seen walking forward and raising his arms out to the side.\", \" He jumps up on a beam and begins performing a routine.\", \" He spins himself around continuously and ends by jumping down with his arms out.\"]}, \"v_cinmiQ4tHYk\": {\"duration\": 70.26, \"timestamps\": [[0.7, 17.21], [14.76, 48.83], [45.67, 69.56]], \"sentences\": [\"A woman is seen drinking from a cup and speaking to a man.\", \" The man and woman then begin fighting with one another.\", \" The woman spins the man all around and look at each other closely.\"]}, \"v_aYSm25veKTs\": {\"duration\": 184.97, \"timestamps\": [[0, 8.32], [8.32, 148.9], [56.42, 173.87], [173.87, 184.97]], \"sentences\": [\"An introduction comes onto the screen for a video about BMX riding.\", \" Several BMX riders are shown doing tricks and riding on the track.\", \" Some of the riders are shown riding in the first person view.\", \" the video ends with the closing captions shown on the screen.\"]}, \"v_pCWlZ37fGEo\": {\"duration\": 81.57, \"timestamps\": [[0, 10.6], [15.09, 56.69], [59.55, 81.57]], \"sentences\": [\"Several people are seen swimming inside a large pool.\", \" They are involved in a game of water polo.\", \" They hit the ball back and forth over the net.\"]}, \"v_JSYv9uYZP2o\": {\"duration\": 194.69, \"timestamps\": [[0, 14.6], [14.6, 79.82], [81.77, 128.5], [129.47, 141.15], [141.15, 194.69]], \"sentences\": [\"A team enters in a field and takes a team picture in a stadium.\", \" Two teams play hurling in the stadium, and players from the two teams scores, and they celebrate.\", \" In the second half, the teams continues playing and scoring.\", \" The team wearing purple uniform win the competition and receives a trophies.\", \" After, a player from the winner teal and a coach speaks.\"]}, \"v_WebWWFKJ4b0\": {\"duration\": 140.92000000000002, \"timestamps\": [[0, 13.39], [16.91, 68.35], [74.69, 140.92]], \"sentences\": [\"A man is seated inside a workshop.\", \" He cuts a piece of wood, and shows how to use equipment on it.\", \" He uses a small welding tool to light it and sparks fly.\"]}, \"v_hJJas1Zat1s\": {\"duration\": 60.33, \"timestamps\": [[0, 60.33], [0, 37.4], [37.4, 52.18]], \"sentences\": [\"vodka and a lemonade cup is shown in a counter.\", \" someone is mixing the drinks in a cup and serve in an ice cup.\", \" then put a lemon slice in the edge of a cup and peppermint on top.\"]}, \"v_MC0L0ljTUiw\": {\"duration\": 235.06, \"timestamps\": [[0, 24.68], [44.66, 172.77], [178.64, 235.06]], \"sentences\": [\"A woman walks into a room as people watch.\", \" She goes into a pose and begins dancing.\", \" She performs several belly dancing moves as she dances.\"]}, \"v_DN3v5LhGsx0\": {\"duration\": 167.23, \"timestamps\": [[0, 66.89], [43.48, 111.21], [102.01, 165.56]], \"sentences\": [\"A man is seen riding around on a skateboard and performing a trick.\", \" He is shown again riding in slow motion showing off his tricks.\", \" He continues to ride around on the board past others sitting around.\"]}, \"v_t0ZuC58UIOM\": {\"duration\": 99.61, \"timestamps\": [[0, 3.98], [4.48, 82.18], [82.18, 99.61]], \"sentences\": [\"A bull runs out on a field with people running behind it.\", \" The bull starts fighting a black and white striped bull.\", \" Elevated scenes of the gathered crowd are shown.\"]}, \"v_7O9kkDxEvaY\": {\"duration\": 82.39, \"timestamps\": [[0, 74.15], [15.24, 76.62], [73.73, 82.39]], \"sentences\": [\"A woman brushes her long hair.\", \"  She continues to brush it and finesse it.\", \"  It looks great in the end.\"]}, \"v_VvlJjaLwGqY\": {\"duration\": 135.7, \"timestamps\": [[0, 8.82], [20.35, 42.07], [42.74, 95.67], [96.35, 119.41]], \"sentences\": [\"A woman is holding a piece of watermelon next to a pool.\", \" She is sitting down at a table with food on it.\", \" She mixes the food together with plastic tongs.\", \" She pours olive oil onto the food and squeezes a lemon on top.\"]}, \"v_GsR4fagoV-Q\": {\"duration\": 118.0, \"timestamps\": [[0, 15.93], [11.8, 38.94], [35.99, 73.16], [67.85, 118]], \"sentences\": [\"two men stand across each other at a ping pong table.\", \" the men begin playing ping pong.\", \" one man makes a point and the other man beats on the ping pong table.\", \" this pattern is repeated a few times.\"]}, \"v_L61Le9sOGK0\": {\"duration\": 16.6, \"timestamps\": [[0, 16.6], [5.31, 5.98], [6.72, 6.89]], \"sentences\": [\"A man in a hat is playing a game of Foosball.\", \" He scratches his nose with his hand.\", \" He reaches for the ball under the Foosball table.\"]}, \"v_E4n0KcS_zgI\": {\"duration\": 63.55, \"timestamps\": [[0, 7.94], [14.94, 43.85], [45.44, 63.55]], \"sentences\": [\"A small baby is shown inside a bedroom.\", \" She is banging on two large drums in front of her.\", \" She continues slapping the surface of the drums with her hands.\"]}, \"v_rMWCaPh9UqE\": {\"duration\": 171.19, \"timestamps\": [[17.12, 171.19], [17.12, 170.34], [162.63, 166.91]], \"sentences\": [\"A person is pushing a lawn mower through the grass.\", \" A large brown dog is walking next to the lawn mower.\", \" The dog drops its ball in front of the lawn mower.\"]}, \"v_DOgmd5jNhXY\": {\"duration\": 150.42000000000002, \"timestamps\": [[0, 53.4], [39.86, 106.05], [102.28, 145.15]], \"sentences\": [\"A close up of an underwater ship is shown sitting in the sand.\", \" The camera pans around the boat as well as fish swimming around the area.\", \" The camera pans around the boat and shows a scuba diver swimming around.\"]}, \"v_ObkyDlB5wvs\": {\"duration\": 167.87, \"timestamps\": [[0, 10.91], [11.75, 44.49], [44.49, 101.56], [101.56, 167.87]], \"sentences\": [\"Several people are shown talking and a man begins dressing in a fencing uniform.\", \"Once all of his garments are on,they are inside of a building and fighting on another.\", \"All of them begin fencing and a screen shows with arrows on it.\", \"A young girl with a long brown pony tail then begins talking about her experience and her partner appears talking before showing a London blu and white flag on the wall.\"]}, \"v_3FAvxuTw4NI\": {\"duration\": 148.42000000000002, \"timestamps\": [[0, 69.02], [23.75, 86.83], [60.85, 148.42]], \"sentences\": [\"A person is seen walking away and begins flying a plane.\", \" The person moves the plane all over the room.\", \" He continues to walk around and steer the remote controlled plane and pans to others doing the same.\"]}, \"v_iosb2TdQ7yY\": {\"duration\": 230.97, \"timestamps\": [[0, 36.96], [45.04, 81.99], [115.48, 230.97]], \"sentences\": [\"A man is talking outside a house.\", \" He is discussing the tree in the yard.\", \" He uses an ax to chop the branches from the fallen tree.\"]}, \"v_i0Z8I2WCLNk\": {\"duration\": 190.99, \"timestamps\": [[0, 85.94], [85.94, 165.2], [165.2, 190.99]], \"sentences\": [\"A man comes onto the screen and explain some key concepts to know about pruning grape vines for the winter.\", \" When he is done with his explanation he proceeded to prune back several of the vines in a strategic manner.\", \" When he finishes up with the pruning he explains some additional concepts that should be known.\"]}, \"v_B73wt5icB-c\": {\"duration\": 167.63, \"timestamps\": [[0, 29.33], [33.53, 112.31], [114.82, 167.63]], \"sentences\": [\"A woman is standing on the ground next to the ocean.\", \" She is doing several tricks and stunts with a jump rope.\", \" She continues twirling and jumping on the rocks.\"]}, \"v_jmSrbVNKF6U\": {\"duration\": 81.34, \"timestamps\": [[0, 14.64], [14.64, 54.5], [54.5, 81.34]], \"sentences\": [\"ballet dancer is stretching in a bathroom wearing pointe shoes.\", \" the girl makes a pointe stand and is practiing ballet movements.\", \" the girl is dancing on pointe in the bathroom practicing ballet.\"]}, \"v_0n3VRoYYYGU\": {\"duration\": 232.47, \"timestamps\": [[10.46, 218.52], [23.25, 62.77], [63.93, 219.68]], \"sentences\": [\"A man demonstrates how to use a electric knife sharpener to sharpen a knife and shows how sharp the knife is after being sharpened by slicing tomatoes.\", \"  A man stands in  front of an electric knife sharpener and points to it while talking to the camera.\", \"  The man begins to sharpen knives after which he proceeds to cut a tomato to exhibit how sharp the knives are.\"]}, \"v_XH-YlSbgxkY\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 12.11], [18.17, 77.98], [103.72, 151.42]], \"sentences\": [\"A girl is on a basketball court in front of a crowd.\", \" She is putting on a performance with a baton.\", \" She twirls and dances with the baton.\"]}, \"v_NNqghz7Fd0M\": {\"duration\": 132.7, \"timestamps\": [[0, 20.57], [25.88, 80.29], [96.21, 132.7]], \"sentences\": [\"A little boy is seated in front of a tree.\", \" He is playing a kid drum set.\", \" He hits the cymbals and drums with his sticks.\"]}, \"v_ZeBrPKBGb_k\": {\"duration\": 180.16, \"timestamps\": [[0, 19.82], [19.82, 109], [109, 115.3], [115.3, 180.16]], \"sentences\": [\"A black background with text appears multiple times while cutting out periodically to show bike riders taking small jumps.\", \" The camera cuts to multiple scenes of various riders taking small jumps.\", \" On one jump in particular the camera slows down a jump where a rider almost hits another but the collision is avoided.\", \" The camera resumed watching various riders taking small jumps until it cuts to a black background with text on it.\"]}, \"v_Wt7Ca_mHbL0\": {\"duration\": 25.78, \"timestamps\": [[0.39, 5.54], [4.77, 10.95], [12.63, 24.74]], \"sentences\": [\"A man is seen standing on a diving board looking off into the distance.\", \" He puts out his arms to his side.\", \" He then dives into the pool and his score is shown.\"]}, \"v_BP9MfTepAv4\": {\"duration\": 132.38, \"timestamps\": [[0, 41.04], [33.76, 87.37], [86.05, 130.39]], \"sentences\": [\"A man is seen playing an instrument in front of the camera.\", \" He pauses to speak to the camera and continues playing on.\", \" He finishes playing the instrument and fades to black.\"]}, \"v_JXMD8Obk0yg\": {\"duration\": 63.07, \"timestamps\": [[0, 8.2], [7.25, 57.07], [56.13, 63.07]], \"sentences\": [\"People are sitting in a room.\", \" Two people get up and start arm wrestling on a table.\", \" They stand up and go back to their seats.\"]}, \"v_v0cihSAXQbI\": {\"duration\": 115.15, \"timestamps\": [[1.15, 14.97], [19.58, 41.45], [40.3, 67.36], [78.3, 115.15]], \"sentences\": [\"a man stands on a track field a sphere in his hand.\", \" the man starts running with the sphere.\", \" the man briefly stops running.\", \" The man then throws the sphere across the field.\"]}, \"v_5g7bqiT7Y3c\": {\"duration\": 5.85, \"timestamps\": [[0, 5.85], [0, 3.63], [3.57, 5.85]], \"sentences\": [\"A man is standing on a field behind a fence.\", \" He holds a ball in his hand and spins around several times.\", \" He releases the ball and throws it onto a field in front of him.\"]}, \"v_GgAXP4FTFnA\": {\"duration\": 54.22, \"timestamps\": [[0, 13.28], [13.01, 25.21], [25.21, 54.22]], \"sentences\": [\"Several swimmers idle in a pool in a line while an audience watches.\", \" The swimmers swim towards the middle of the pool in unison as the camera pans to reveal more swimmers approaching from the other direction.\", \" All the swimmers engage in a game of water polo.\"]}, \"v_RnwidjJiDEE\": {\"duration\": 149.21, \"timestamps\": [[0, 35.06], [32.83, 108.18], [98.48, 143.99]], \"sentences\": [\"A man is seen playing drums on a stage while speaking to the audience.\", \" He continues playing drums while other people play instruments around him.\", \" Two men sing on the stage in front and point to the audience.\"]}, \"v_EGLJPCJnG64\": {\"duration\": 89.71000000000001, \"timestamps\": [[0, 9.87], [10.32, 50.24], [51.58, 89.71]], \"sentences\": [\"A man is standing and talking in front of a white wall.\", \" He continues talking as he shows how to play a game of indoor tennis.\", \" He swings the bat and hits the ball against the wall again.\"]}, \"v_n2L9F6cMNaE\": {\"duration\": 154.02, \"timestamps\": [[0, 28.49], [33.12, 103.97], [104.74, 154.02]], \"sentences\": [\"Parents have taken their children to a public playground.\", \" A little girl lets her brother out of a stroller.\", \" They play on the equipment together.\"]}, \"v_Q2jdtN4-RE0\": {\"duration\": 231.23, \"timestamps\": [[0, 27.75], [43.93, 145.67], [160.7, 231.23]], \"sentences\": [\"a woman is standing on her back patio.\", \" She moves very slowly, lifting and lowering her arms and legs.\", \" She performs several slow martial arts moves.\"]}, \"v_WTfeKnRJ17g\": {\"duration\": 91.72, \"timestamps\": [[0.46, 21.55], [23.85, 62.83], [61.91, 90.8]], \"sentences\": [\"A group of people are seen standing on a stage in front of others.\", \" They begin jump roping with one another while others watch.\", \" They continue dancing around and performing with the jump ropes.\"]}, \"v_OM58jhy61Mc\": {\"duration\": 27.7, \"timestamps\": [[0, 3.05], [5.26, 16.34], [16.21, 26.32]], \"sentences\": [\"A man is seen looking at the camera and holding onto a hookah.\", \" He puts the pipe up to his mouth.\", \" He then blows out the smoke and looks to the camera.\"]}, \"v_3G1T_V102GA\": {\"duration\": 57.31, \"timestamps\": [[6.02, 8.02], [15.47, 19.2], [43.55, 43.84]], \"sentences\": [\"A man is riding a motorcycle.\", \" He is putting shaving cream onto his face.\", \" He picks up a razor and begins shaving his beard.\"]}, \"v_NCvNIKw4EZ4\": {\"duration\": 23.27, \"timestamps\": [[0, 23.27], [2.68, 17.57], [17.57, 20.36]], \"sentences\": [\"People are sitting behind tables holding cameras.\", \" People are playing pool at a pool table.\", \" Two men shake hands behind the pool table.\"]}, \"v_dFlmzpAb6AQ\": {\"duration\": 202.85, \"timestamps\": [[0, 201.84], [5.07, 202.85], [0, 202.85]], \"sentences\": [\"people are on catamarans riding on sea.\", \" men are extreme riding on catamarans on a sea and going on sids fot the wind.\", \" people are on catamarans and riding them in extreme wether.\"]}, \"v_KZLEUd2ALVI\": {\"duration\": 42.03, \"timestamps\": [[0, 13.66], [11.77, 28.79], [27.74, 41.61]], \"sentences\": [\"A woman is seen standing in a circle and looking over her shoulder.\", \" She throws an object off into the distance and is shown again.\", \" She throws her arms up and walks away afterwards.\"]}, \"v_xOmfJGR5fBw\": {\"duration\": 200.92000000000002, \"timestamps\": [[0, 50.23], [50.23, 144.66], [143.66, 187.86]], \"sentences\": [\"A woman is seen holding on a cat on a coach and holding up a pair of nail clippers.\", \" She begins cutting the cat's claws while the cat squirms around a bit.\", \" She continues cutting the claws while speaking to the camera.\"]}, \"v_P1gGM89_T2g\": {\"duration\": 63.99, \"timestamps\": [[0, 3.2], [14.72, 47.67], [49.91, 63.99]], \"sentences\": [\"A leaf is floating through the murky ocean water.\", \" A group of scuba divers are exploring the bottom of the sea.\", \" They are using cameras as they look at the growth and animals.\"]}, \"v_waFqh-Qkafc\": {\"duration\": 52.32, \"timestamps\": [[0, 14.65], [10.72, 38.97], [31.39, 50.22]], \"sentences\": [\"A close up of a pumpkin is shown with pictures of it cut out.\", \" A person's hands draws on the pumpkin while holding up a stencil.\", \" The person cuts out the pumpkin and shows it off.\"]}, \"v_fWD0rL_72nw\": {\"duration\": 60.19, \"timestamps\": [[0, 11.74], [13.24, 46.34], [49.65, 60.19]], \"sentences\": [\"A man and woman face off inside a gym.\", \" They are both wearing boxing gloves.\", \" The woman punches as the man blocks.\"]}, \"v_pYvqbfVY-s8\": {\"duration\": 212.6, \"timestamps\": [[0, 40.39], [62.72, 159.45], [161.58, 212.6]], \"sentences\": [\"A group of swimmers are inside a public pool.\", \" They are playing a game of water polo.\", \" They hit the ball over each other, trying to get it into the net.\"]}, \"v_r46Vy3p19a0\": {\"duration\": 31.74, \"timestamps\": [[0, 5.08], [5.08, 17.62], [17.62, 23.81], [23.81, 31.74]], \"sentences\": [\"A young boy is pushing a lawn mower forward and away from the camera on a very large yard of green grass.\", \" The boy turns the law mower and mows towards the left of the field, then down.\", \" The boy turns it once again and mows towards the right until he reaches the area where he first started.\", \" Then the boy turns the mower left and goes back up again away from the camera like he did when he first started.\"]}, \"v_5VwGzOLPFAQ\": {\"duration\": 141.04, \"timestamps\": [[0, 13.4], [5.64, 11.28], [13.4, 37.38], [37.38, 89.56], [68.4, 76.87], [86.74, 90.97], [92.38, 131.17], [131.87, 141.04]], \"sentences\": [\"A man wearing a lime green jacket holds a camera on a selfie stick with the camera aimed at himself, with another man in a dark jacket standing to his side.\", \" The two men wave at the camera.\", \" The first man snowboards downhill while keeping the camera on himself.\", \" The camera points downward to show the snow the man is snowboarding on.\", \" The man's feet and snowboard enters the camera frame.\", \" The man cleans the camera lens of snow.\", \" A slow motion replay of the man snowboarding downhill is shown.\", \" The path that the man snowboarded down is outlined in a still image.\"]}, \"v_wyNM_7YDgfo\": {\"duration\": 139.1, \"timestamps\": [[0, 50.77], [50.77, 118.93], [118.93, 130.75], [130.75, 139.1]], \"sentences\": [\"A group of people dressed in paintball gear march down a road, interspersed with short clips of people giving various speeches.\", \" The group of people engage in a paintball game in an undulating field.\", \" The group of people cheer after their game.\", \" A black screen with white text is shown.\"]}, \"v_4KMbeat6yoE\": {\"duration\": 162.42000000000002, \"timestamps\": [[0, 48.73], [44.67, 112.88], [90.15, 159.99]], \"sentences\": [\"Three men are seen playing instruments with one another.\", \" The camera pans in and out of their movements as they play together.\", \" The men continue to play the instruments and stop in the end with one walking away.\"]}, \"v_3G9zc_SEOHM\": {\"duration\": 135.19, \"timestamps\": [[1.35, 25.69], [29.07, 116.26], [45.29, 120.32], [68.95, 91.93]], \"sentences\": [\"A young man talks with pedestrians in a plaza area.\", \" The young man  plays a game of rock paper scissors with pedestrians in in a plaza area.\", \" The young man kisses people in a plaza area.\", \" The young man gets slapped by pedestrians.\"]}, \"v_cgPt46YiXNo\": {\"duration\": 15.4, \"timestamps\": [[0, 2.77], [1.69, 10.31], [7, 15.4]], \"sentences\": [\"The young man is sitting on a bench.\", \" The young man stood up with his stilts and began running.\", \" The young man jumped and flip on a block and landed on his stilts.\"]}, \"v_sQwx_m8Vghw\": {\"duration\": 25.96, \"timestamps\": [[0, 25.96], [11.68, 22.84], [22.84, 25.96]], \"sentences\": [\"A person uses a bike chain pedals and a wheel to power a small generator.\", \"  The camera zooms in on the machine parts while it's moving.\", \"  The person stops turning the pedals as the wheel keeps spinning and the camera angle raises up above the machine and the video stops.\"]}, \"v_l-PDSOCk7z0\": {\"duration\": 140.09, \"timestamps\": [[0, 140.09], [8.41, 34.32], [21.71, 54.63], [47.63, 140.09]], \"sentences\": [\"Toothbrushes and a plate with paint on it are sitting out.\", \" Hands pick up a toothbrush and hold it.\", \" They dip the brush in paint.\", \" They then paint using the brushes.\"]}, \"v_x4f4jp_eHHo\": {\"duration\": 229.5, \"timestamps\": [[0, 28.69], [36.72, 145.73], [154.91, 229.5]], \"sentences\": [\"A group of girls are dancing on a stage.\", \" They are performing a style of belly dancing.\", \" They dance in unison, spinning and turning.\"]}, \"v_2rgamh4uty8\": {\"duration\": 120.61, \"timestamps\": [[0, 54.88], [22.91, 94.67], [83.22, 120.61]], \"sentences\": [\"The man opened a bottle, rubbed the bottle on the ski board.\", \" The man rubbed the wax on the skiboard.\", \" The man brushed the ski board.\"]}, \"v_nKPkHO9ajs8\": {\"duration\": 52.76, \"timestamps\": [[0, 52.76], [1.85, 52.76], [2.37, 9.23], [7.91, 52.76]], \"sentences\": [\"A boy is playing in the yard.\", \" He is holding a bat.\", \" He runs to a goal in the yard.\", \" He pretends to shoot and score goals.\"]}, \"v_JFBd-R1YuXY\": {\"duration\": 84.68, \"timestamps\": [[0, 63.51], [0, 30.06], [29.22, 84.68]], \"sentences\": [\"A little girl in a white hat is playing with sand on a beach.\", \" A woman is sitting behind her in the sand.\", \" The woman gets up and walks away and the child follows her.\"]}, \"v_lGKUEUBeo8U\": {\"duration\": 145.13, \"timestamps\": [[0, 42.81], [9.43, 145.13], [17.42, 132.06]], \"sentences\": [\"The man walked to the blue platform.\", \" The man steps up and down on the platform as he moves around it.\", \" The man move his arms around him as he moves.\"]}, \"v_O2Y6rn4gFd4\": {\"duration\": 24.66, \"timestamps\": [[0, 24.66], [3.08, 24.66], [8.01, 24.66]], \"sentences\": [\"The young man is shaving his leg.\", \" The young girl is shaving the other young man's leg.\", \" The young man talked to the camera and continue to shave his leg.\"]}, \"v_gxILsv1RTEI\": {\"duration\": 68.8, \"timestamps\": [[0, 68.8], [0, 3.78], [53.32, 62.95]], \"sentences\": [\"A man is brushing his teeth.\", \" He is holding a cell phone up in front of his face.\", \" He spits the tooth paste into the sink.\"]}, \"v_m_gr7WdjJmc\": {\"duration\": 186.69, \"timestamps\": [[0, 21.47], [30.8, 144.68], [144.68, 186.69]], \"sentences\": [\"A man is talking outside of a large outdoor ramp.\", \" He demonstrates how to slide down the ramp on a pair of skis.\", \" He shows the turns and postures required for skiing.\"]}, \"v_CIgdBoHjGXU\": {\"duration\": 223.98, \"timestamps\": [[0, 10.08], [10.08, 24.64], [24.64, 117.59], [117.59, 223.98]], \"sentences\": [\"man is standing in a clear hair saloon talking o the camera.\", \" man lays on a sink and a woman behind him is washing her hair.\", \" man sits in a chair and a woman behind her start drying his hair, combing it and using a razor to cut her hair.\", \" when the hair is ready the man put hairspray and with her hands mousse the hair to put it on place and keeps talking to the camera.\"]}, \"v_ph7d2H77tks\": {\"duration\": 172.66, \"timestamps\": [[0, 20.72], [21.58, 62.16], [63.02, 101.01], [101.87, 172.66]], \"sentences\": [\"A man stands behind a white bicycle in what appears to be a store and speaks to the camera.\", \" He takes a wrench and adjusts the seat.\", \" He mounts the bicycle to test the seat position.\", \" He readjusts the handlebar position.\"]}, \"v_62s1ZSNLJ6g\": {\"duration\": 135.53, \"timestamps\": [[0, 115.87], [21.68, 27.78], [117.91, 135.53]], \"sentences\": [\"A person is standing in a bath tub.\", \" They take their shoes off and put them under the faucet.\", \" They step out of the bath tub onto a towel.\"]}, \"v_D_y9uXMbImA\": {\"duration\": 49.6, \"timestamps\": [[0, 49.6], [0, 48.85], [44.39, 44.89]], \"sentences\": [\"A man is mowing the lawn with a red lawn mower.\", \" A boy in a blue shirt is walking behind the lawn mower.\", \" A white car is parked on the street.\"]}, \"v_-5c9WHk408g\": {\"duration\": 142.5, \"timestamps\": [[0, 19.95], [23.51, 116.85], [119.7, 142.5]], \"sentences\": [\"a group of people put on paintball gear.\", \" They hide behind several obstacles in the field.\", \" Then they jump out and shoot at each other with the paint bullets.\"]}, \"v_-mX18jJkPDk\": {\"duration\": 189.62, \"timestamps\": [[0, 21.81], [12.32, 108.08], [64.47, 189.62]], \"sentences\": [\"A woman is talking to the camera and showing a black brush.\", \" The woman brushed her hair as she talked to the camera.\", \" The woman is showing her hair then continue brushing her hair.\"]}, \"v_nrvB8pcrY7o\": {\"duration\": 175.4, \"timestamps\": [[0, 31.57], [35.08, 121.03], [136.82, 175.4]], \"sentences\": [\"A man is shown inside a shop building.\", \" He is shown stripping and cleaning a water ski.\", \" He shows the fabric up close as he talks about how to do it.\"]}, \"v_QjaEDlh805g\": {\"duration\": 211.23, \"timestamps\": [[0, 51.75], [27.46, 128.85], [121.46, 211.23]], \"sentences\": [\"buttons are placed one by one on a table.\", \" a woman hair is being sprayed by another woman.\", \" then the woman's hair gets brushed.\"]}, \"v_DJE9nX2qKYs\": {\"duration\": 13.57, \"timestamps\": [[0, 1.29], [2.17, 7.13], [8.96, 13.57]], \"sentences\": [\"A woman lowers herself in front of a barbell.\", \" She lifts it up to her chest and pauses.\", \" Then she lifts it over her head.\"]}, \"v_-voGnJbk3CI\": {\"duration\": 77.07, \"timestamps\": [[5.01, 14.26], [14.26, 23.51], [23.51, 38.15]], \"sentences\": [\"A man is seen walking up stairs while another man stands on his hands and dives into the water.\", \" Then the man stands on his feet and dives backwards into the water.\", \" Next he stands far from the edge and runs to dive into the water.\"]}, \"v_Opqg11Nkb7c\": {\"duration\": 192.89, \"timestamps\": [[0, 46.29], [41.47, 116.7], [111.88, 192.89]], \"sentences\": [\"a man walks through the woods with a loaded backpack.\", \" the man then gathers sticks from the forest.\", \" with the sticks the man begins to make a fire.\"]}, \"v_wu0G4yQIwKo\": {\"duration\": 143.04, \"timestamps\": [[0, 127.3], [0, 114.43], [36.47, 127.3], [127.3, 143.04]], \"sentences\": [\"A woman is crouched down painting a fence while talking with another girl in a yard.\", \" The girl who is recording the is also helping to paint the fence while talking to the camera.\", \" The girls begin to play back and forth dabbing each other with the paint.\", \" One of the girls gets up and begins to chase the other girl.\"]}, \"v_iyOyZJm7fVU\": {\"duration\": 103.65, \"timestamps\": [[0, 11.92], [23.32, 33.17], [48.2, 64.78], [65.3, 88.62], [89.66, 103.65]], \"sentences\": [\"A young man is helped putting on an apron and cameras take picture of the event.\", \" A group of people make trays of cookies together.\", \" The prepares batter in a large bowl.\", \" Cupcake batter is squeezed out into trays which are loaded into the oven.\", \" The boys give high fives and congratulate each other.\"]}, \"v_Tsht1n005fI\": {\"duration\": 102.82, \"timestamps\": [[0, 11.31], [15.42, 78.66], [83.28, 102.82]], \"sentences\": [\"A man is speaking to the camera outside on a field.\", \" They are engaged in a game of soccer.\", \" The men run back and forth hitting the ball.\"]}, \"v_8jUdeuAOEJg\": {\"duration\": 73.91, \"timestamps\": [[0, 73.91], [17.74, 73.91], [42.87, 66.15]], \"sentences\": [\"The young man in black jacket is rotating his leg under his other leg.\", \" The young man did pushed up and then split.\", \" The young man rub himself on the floor.\"]}, \"v_mShwD_I43ao\": {\"duration\": 183.72, \"timestamps\": [[1.84, 159.83], [66.14, 159.83], [159.83, 183.72]], \"sentences\": [\"A woman with purple hair is wearing headphones and talking.\", \" She begins to play a video game on the screen.\", \" Words come onto the screen at the end.\"]}, \"v_gIwTydKpIe4\": {\"duration\": 106.58, \"timestamps\": [[0, 14.39], [20.25, 58.62], [66.61, 106.58]], \"sentences\": [\"A man is showing how to iron a shirt on an ironing board.\", \" He is then shown talking about how to iron clothes to the camera.\", \" He shows the settings and how to do it appropriately.\"]}, \"v_F7u4kpwhs5g\": {\"duration\": 53.62, \"timestamps\": [[0, 12.06], [13.14, 35.92], [24.93, 47.99]], \"sentences\": [\"A group of people are seen riding around on horses swinging sticks.\", \" The people ride back and fourth playing the game with one another.\", \" One scores a goal and they ride together and wave sticks in the air.\"]}, \"v_yWCEDAQvhzA\": {\"duration\": 171.13, \"timestamps\": [[0, 171.13], [5.13, 56.47], [50.48, 96.69], [91.56, 100.97], [98.4, 108.67], [105.25, 136.05], [133.48, 148.03], [144.61, 155.73], [154.87, 171.13]], \"sentences\": [\"There are three black belt karate masters demonstrating and doing karate in a large gym with several spectators.\", \" The three masters show synchronized karate chops and moves as they show striking moves with open and techniques while kicking with their right leg.\", \" They bend their elbows and close their fists as they show some karate chops while jumping up high in the air.\", \" The they step back as the crowd applauds for them.\", \" Then one of the masters holds a wooden board suspended on a string while the other master concentrates and punches into the board to split it into two.\", \" The same move is repeated several times in slow motion.\", \" Then another master comes forward to punch a wooden baseball bat while two other masters kneel down and hold the bat.\", \" The master first kicks the bat, retreats and then comes back with force and kicks it hard to split it into two pieces.\", \"The entire crowd cheers for him as the masters leave the stage.\"]}, \"v_1a8PCm9e1YU\": {\"duration\": 135.33, \"timestamps\": [[0, 54.13], [36.54, 93.37], [85.93, 130.59]], \"sentences\": [\"A young boy is seen sitting behind a set of drums with others moving around him.\", \" The boy begins playing the drums while another man plays behind him.\", \" Several men play instruments around him at once.\"]}, \"v_qTAG23IVSeM\": {\"duration\": 107.53, \"timestamps\": [[4.3, 15.05], [15.59, 24.19], [24.19, 44.63], [44.09, 107.53]], \"sentences\": [\"A man mounts and rides a horse with the help of a woman while another man on a horse rides by.\", \" A number of men on horses with polo mallets are shown together.\", \" Some of the individuals begin galloping around.\", \" The individuals engage in a game of polo with an audience watching.\"]}, \"v_sahQxLbmM0U\": {\"duration\": 37.32, \"timestamps\": [[0.56, 9.52], [8.96, 24.63], [23.51, 35.82]], \"sentences\": [\"A woman is seen bending forward grabbing onto a set of weights.\", \" She then lifts the weights over her head.\", \" She jumps out to the side and finally throws the weights down on the ground.\"]}, \"v_1cLxW-FhgpA\": {\"duration\": 181.6, \"timestamps\": [[4.54, 177.06], [13.62, 177.06], [92.62, 177.06]], \"sentences\": [\"A woman is belly standing in a room.\", \" She starts belly dancing and moving her hands.\", \" She does a spin and continues to belly dance.\"]}, \"v_xaCOYdzox0g\": {\"duration\": 229.74, \"timestamps\": [[0, 25.27], [24.12, 51.69], [45.95, 76.96], [74.67, 141.29], [140.14, 229.74]], \"sentences\": [\"a plate of spaghetti is shown.\", \" cheese is sprinkled on top of the spaghetti.\", \" meet is placed into a pot.\", \" vegetables are added to the pot.\", \" all of the contents get mixed and cooked.\"]}, \"v_mg0n3DNtUZU\": {\"duration\": 115.5, \"timestamps\": [[0, 21.94], [8.08, 25.41], [25.99, 115.5], [96.44, 115.5]], \"sentences\": [\"Two teams are playing tug of war.\", \" A man is shown speaking.\", \" People cheer in the audience.\", \" One team finally wins the game.\"]}, \"v_ZHOPn9lONHA\": {\"duration\": 179.28, \"timestamps\": [[0, 25.1], [26, 87.85], [88.74, 140.74], [141.63, 156.87], [157.77, 179.28]], \"sentences\": [\"A woman sitting on the floor speaks to the camera.\", \" She moves and points to areas on her body.\", \" She scoots along the floor and lays down.\", \" She rolls on her side and continues to talks to the camera.\", \" She lays back down and makes motions with her hands.\"]}, \"v_0_-Q1zOC3Kw\": {\"duration\": 39.27, \"timestamps\": [[0, 37.3], [0, 37.11], [0, 39.27]], \"sentences\": [\"A student plays the harmonica in a classroom.\", \" A woman in the back of a classroom dances away to the music of the harmonica.\", \" Kids around the man listen to his performance.\"]}, \"v_qKG1mU0Feug\": {\"duration\": 80.92, \"timestamps\": [[0, 4.86], [4.45, 26.3], [28.32, 54.22], [55.84, 64.74]], \"sentences\": [\"A team races toward the center of the pool in a line to retrieve the ball and start the game.\", \" The team passes the ball foreward and takes a shot on the goal that is blocked by the goalie.\", \" The goalie passes the ball in and the players pass down the court.\", \" The ball is deflected by a defender and the goalie swims to recover it.\"]}, \"v_jpWevi1HBYo\": {\"duration\": 16.95, \"timestamps\": [[0, 5.76], [4.58, 12.46], [11.87, 16.36]], \"sentences\": [\"A small group of kids are seen standing around one another holding sticks.\", \" They begin chasing a ball with the sticks.\", \" One grabs it and runs back to the girl.\"]}, \"v_AGjhryYGVs4\": {\"duration\": 198.97, \"timestamps\": [[0, 15.92], [29.85, 107.44], [139.28, 198.97]], \"sentences\": [\"Rapid white waters are shown in a river.\", \" Several people push rafts into the water.\", \" They also jump in and swim together.\"]}, \"v_PAGuZzrzSO4\": {\"duration\": 26.05, \"timestamps\": [[0, 4.43], [4.43, 5.47], [5.47, 14.07], [14.07, 26.05]], \"sentences\": [\"A man riding a horse chases a calf.\", \" The man lassos the calf.\", \" The man jumps off the horse and ties up the calf.\", \" The man walks back to his horse and mounts it.\"]}, \"v_e1_oskOyQoU\": {\"duration\": 162.1, \"timestamps\": [[0, 65.65], [65.65, 110.23], [110.23, 141.03], [141.03, 162.1]], \"sentences\": [\"A knife appears on the table with cut up apples and a hand begins picking it up and describing its contents.\", \"After,he picks up a small white block and starts to sharpen and sand the knife making sure to be very gentle with it.\", \"Next,he takes an extremely small cut of apple and shaves it horizontally with the knife.\", \"Finally,the packaged products are shown along with the information for you to purchase it.\"]}, \"v_tIbSsad0z9U\": {\"duration\": 158.92000000000002, \"timestamps\": [[0, 16.69], [29.4, 113.63], [121.57, 158.92]], \"sentences\": [\"A man is swimming in an indoor pool.\", \" The water is shown crashing against ocean rocks.\", \" Then we see the man demonstrating swim moves in the pool again.\"]}, \"v_ye7e0mitDdU\": {\"duration\": 43.05, \"timestamps\": [[0, 8.83], [10.12, 30.13], [30.35, 43.05]], \"sentences\": [\"A man is sitting on a rowing machine in a room.\", \" He glides back and forth on the machine.\", \" He gets a workout as he pushes back and forth.\"]}, \"v_bcXc6mKSEEM\": {\"duration\": 28.75, \"timestamps\": [[0, 5.61], [5.61, 17.82], [16.96, 28.75]], \"sentences\": [\"two guys stand across each at a bar with their hands locked.\", \" the guys laugh then they arm wrestle.\", \" the guys then laugh again.\"]}, \"v_p1fpQ4yR1co\": {\"duration\": 112.5, \"timestamps\": [[0, 21.38], [21.94, 74.25], [70.31, 108]], \"sentences\": [\"A close up of products are shown leading into a woman holding a blow dryer.\", \" She pins her hair followed by curling it along the sides.\", \" She then straightens her hair afterwards and shows them side by side.\"]}, \"v_DvDfifKGXXg\": {\"duration\": 60.49, \"timestamps\": [[0, 16.03], [16.03, 39.92], [42.64, 60.49]], \"sentences\": [\"A couple of little boys are outside in a yard.\", \" They are using paint brushes on a set of metal bars.\", \" The boys are attempting to pain the bars black.\"]}, \"v_VWsyA_RJIzg\": {\"duration\": 25.53, \"timestamps\": [[0, 7.02], [5.23, 11.36], [10.34, 25.53]], \"sentences\": [\"Hoops are floating in the water.\", \" The woman is looking up the hops.\", \" The woman entered the hoop.\"]}, \"v_VtS4vy8Z0RQ\": {\"duration\": 14.65, \"timestamps\": [[0, 4.25], [3.37, 10.11], [7.69, 11.14]], \"sentences\": [\"A man is seen juggling in his hands while text is across his face.\", \" A close up is then shown of solo cups.\", \" The man high fives other people and smiles.\"]}, \"v_WhBnR7yIvJc\": {\"duration\": 35.09, \"timestamps\": [[0, 35.09], [4.03, 11.4], [14.74, 16.49]], \"sentences\": [\"A little girl is swinging in a swing.\", \" She tilts backwards and looks behind her.\", \" She smiles and waves at the camera.\"]}, \"v_F3FjEM9ls0o\": {\"duration\": 56.05, \"timestamps\": [[0, 5.89], [4.76, 56.05], [26.63, 56.05]], \"sentences\": [\"A man sits behind a drum set.\", \" He starts to play the drum set with drum sticks.\", \" He continues to play the drum set.\"]}, \"v_-76d-7Ju7L0\": {\"duration\": 191.89, \"timestamps\": [[0, 191.89], [5.76, 38.38], [35.5, 133.36], [129.53, 174.62], [172.7, 191.89]], \"sentences\": [\"There's a man doing a tutorial in his yard, showing how to spray paint and rust proof the wheel of a truck.\", \" There are two truck tires on the ground which the mechanic checks before installing them.\", \" Then he moves towards the truck and brings out a protective enamel spray on can that he intends to use on the wheel.\", \" Then he walks towards a metal piece laying on the grass which has been spray painted with the enamel coating.\", \" There are several others vehicles like a bus, truck and a car parked in the same yard.\"]}, \"v_A4L4ObzZ5VE\": {\"duration\": 9.36, \"timestamps\": [[0, 9.36], [2.43, 5.71], [5.8, 9.36], [6.64, 9.36]], \"sentences\": [\"A bunch of dirt bikes are going around a dirt track racing.\", \" All the riders go over a jump and land smoothly.\", \" All the riders then go around a sharp turn.\", \" Two riders at the back of the pack wiped out while turning.\"]}, \"v_aYSJn94g_Io\": {\"duration\": 81.57, \"timestamps\": [[0, 12.64], [0, 11.42], [7.75, 19.17], [17.54, 81.57]], \"sentences\": [\"A man in a red shirt is standing outside.\", \" He is holding a bottle of tea.\", \" He then goes into a bowling alley.\", \" He then begins throwing the ball around down the lanes.\"]}, \"v_UnOzWl0EGCA\": {\"duration\": 66.6, \"timestamps\": [[0, 20.31], [17.98, 41.95], [38.96, 66.6]], \"sentences\": [\"a man stands behind a bar and starts talking.\", \" the man holds up a martini glass.\", \" the man then begins making and mixing a drink.\"]}, \"v_3VAq3wYxnMs\": {\"duration\": 109.32, \"timestamps\": [[0, 11.48], [11.48, 58.49], [58.49, 103.85], [106.04, 109.32]], \"sentences\": [\"An individual gestures to his leg.\", \" Another individual applies foam to the leg.\", \" The second individual shaves the first individual's leg.\", \" The first individual pulls his leg out of camera frame.\"]}, \"v_ZsicrMkZEN8\": {\"duration\": 86.31, \"timestamps\": [[0, 9.06], [13.38, 42.29], [44.88, 86.31]], \"sentences\": [\"A couple of girls are on a gym court.\", \" They perform with batons, swinging and twirling them.\", \" The girls dance in unison as they perform.\"]}, \"v_ke3R1rOeQzE\": {\"duration\": 80.28999999999999, \"timestamps\": [[0, 18.47], [16.86, 53.39], [47.77, 80.29]], \"sentences\": [\"a player spikes a volley ball across a court of awaiting players.\", \" the opposite team runs for the ball and hits it on the other side of the net.\", \" a point is scored and the team switches sides.\"]}, \"v_dBzWXTH5j00\": {\"duration\": 142.57, \"timestamps\": [[0, 17.11], [24.24, 96.95], [110.49, 142.57]], \"sentences\": [\"A large group is riding on a raft down a river.\", \" They use paddles to guide them over small waterfalls as they go.\", \" They try hard to stay upright and together.\"]}, \"v_qEU4vKowVo4\": {\"duration\": 90.56, \"timestamps\": [[0, 8.6], [14.94, 63.84], [70.64, 90.56]], \"sentences\": [\"A video is shown of people sideways.\", \" They are then shown removing a tire from a car.\", \" They remove the tire and replace it with a new one.\"]}, \"v_U9pnR51t6As\": {\"duration\": 200.69, \"timestamps\": [[3.01, 63.22], [60.21, 141.49], [140.48, 195.67]], \"sentences\": [\"A man is shown being interviews by the news and shows men preparing to wrestle.\", \" The men bend down and perform exercises across the floor.\", \" He continues to speak as well as other men as they continue to practice.\"]}, \"v_mzewLmZSCMU\": {\"duration\": 43.1, \"timestamps\": [[0, 2.8], [3.02, 38.36], [38.79, 43.1]], \"sentences\": [\"The \\\"Royal Opera House\\\" appears on a black screen.\", \" Dancers are shown in clips performing.\", \"  \\\"Deloitte Ignite 14 Myth\\\" advertisement is shown on screen with a website address.\"]}, \"v_KNLGluuewIU\": {\"duration\": 226.0, \"timestamps\": [[0, 28.25], [44.07, 188.71], [193.23, 226]], \"sentences\": [\"A woman is in a bedroom talking to the camera.\", \" A little girl is dancing and singing while seated.\", \" they go back and forth between them, singing.\"]}, \"v_lbtW7nHTnwA\": {\"duration\": 168.37, \"timestamps\": [[0, 23.57], [23.57, 57.25], [57.25, 111.96], [112.81, 135.54], [137.22, 168.37]], \"sentences\": [\"Two men play ping pong in a room with many tables.\", \" The camera moves to a player helping another with his serve.\", \" The camera pans to another table being played.\", \" The camera once again pans to a fourth table.\", \" The camera pans around the entire room.\"]}, \"v_NrlITLsd7Fk\": {\"duration\": 12.21, \"timestamps\": [[0, 1.89], [2.08, 7.76], [8.37, 12.21]], \"sentences\": [\"a man mounts a beam in a gym.\", \" He spins around the beam multiple times.\", \" He then dismounts from the beam.\"]}, \"v_gB_xHRJY7sw\": {\"duration\": 25.54, \"timestamps\": [[0, 10.09], [10.86, 23.37], [23.5, 25.54]], \"sentences\": [\"A kite flying in the sky.\", \" A close up of the kite and the trailing tails flutter in the dim lit sky.\", \" The kite line shines white against the dark grey sky.\"]}, \"v_QMm6gYzsMw8\": {\"duration\": 185.78, \"timestamps\": [[0, 38.09], [35.3, 136.55], [114.26, 180.21]], \"sentences\": [\"Three woman are seen speaking to the camera and begin dancing together.\", \" The women move all around the room while dancing together.\", \" The continue dancing with one another and end by holding a pose.\"]}, \"v_z48kSSKMoXo\": {\"duration\": 85.94, \"timestamps\": [[0, 84.65], [2.58, 84.65], [6.88, 84.65], [11.17, 84.65]], \"sentences\": [\"A woman stands inside a gym.\", \" She starts jumping rope in it.\", \" She does tricks as she jumps.\", \" Several people watch her jump rope.\"]}, \"v_vRNcq6nOk0E\": {\"duration\": 167.54, \"timestamps\": [[0, 8.38], [8.38, 150.79], [150.79, 167.54]], \"sentences\": [\"A guy begins to explain that you will go over some key concepts about how to win rock, paper, scissors every time.\", \" As he starts to go over the concepts he uses several hand gestures to explain the difference contradictory concepts he came up with to win the game.\", \" At the end of the video he makes a closing statement and the video ends.\"]}, \"v_gGai6uu5Yjs\": {\"duration\": 115.92, \"timestamps\": [[0, 4.64], [4.64, 12.75], [12.75, 115.92], [12.75, 115.34]], \"sentences\": [\"sexy women are posing to the camera.\", \" people are doing exercise on a gym.\", \" women are doing exrcise in elliptical bike in room.\", \" men are in a room doing exercise in elliptical bike.\"]}, \"v_fk_hkHmnmJo\": {\"duration\": 60.33, \"timestamps\": [[0, 60.33], [2.11, 23.23], [6.94, 30.77], [29.26, 51.28], [49.17, 60.33]], \"sentences\": [\"There's a swimmer standing in the pool showing how to apply sunscreen on the body using a stick.\", \" The swimmer opens the stick of sunscreen and rolls it on his left hand first.\", \" Then he smears it to spread it evenly on his entire hand.\", \" Then he applies the cream on his right hand and spreads it evenly all over his arm.\", \" He spreads the cream on both hands to evenly apply it on his skin for protection from the sun.\"]}, \"v_Rd9TrjbCkAE\": {\"duration\": 11.82, \"timestamps\": [[0, 5.85], [3.07, 9.16], [8.69, 11.52]], \"sentences\": [\"A group of people are seen standing outside speaking to one another.\", \" One man is shown spraying down a fence.\", \" More people walk around the area.\"]}, \"v_mj0lRelI0xw\": {\"duration\": 131.19, \"timestamps\": [[0, 71.5], [0, 131.19], [71.5, 131.19]], \"sentences\": [\"People are playing snare drums in a line.\", \" People are standing still next to them.\", \" They begin to march forward while continuing to play the drums.\"]}, \"v__3xMhj4mbsk\": {\"duration\": 197.6, \"timestamps\": [[0, 3.95], [3.95, 84.97], [88.92, 146.23], [146.23, 197.6]], \"sentences\": [\"A logo is seen for 'Restore Stuff' and the words for the intro are \\\"Miss Mustard Seed's Milk Paint, Just two tablespoons of Luckett's Green [add water according to directions]\\\".\", \" There is a worn table shown, then a woman proceeds to paint the table with green paint while music plays, then he table is shown finished and then another coat is added on top.\", \" Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then adds wax on top.\", \" There are more items that the paint was used on shown at the end.\"]}, \"v_BwR1DPCVsP8\": {\"duration\": 189.43, \"timestamps\": [[0, 27.47], [30.31, 124.08], [126.92, 189.43]], \"sentences\": [\"A group is gathered in a basketball gym.\", \" They take turns doing layups with the ball.\", \" They run in slow motion, jumping and putting the ball in the basket.\"]}, \"v__vK_sDOdgbM\": {\"duration\": 62.25, \"timestamps\": [[0, 10.89], [13.07, 49.18], [53.23, 62.25]], \"sentences\": [\"a man takes off his glasses in front of the camera.\", \" He cleans a contact lens in the palm of his hand.\", \" He then uses his fingers to insert the contact into his eye.\"]}, \"v_nEOpfvJ7g_g\": {\"duration\": 25.96, \"timestamps\": [[0, 4.41], [5.06, 19.99], [20.77, 25.96]], \"sentences\": [\"A man and woman are standing inside a court.\", \" They hit a ball against the wall multiple times.\", \" They are engaged in a game of racquetball.\"]}, \"v_86iCOCtA4Ww\": {\"duration\": 129.06, \"timestamps\": [[0, 28.39], [27.75, 29.68], [91.63, 116.8]], \"sentences\": [\"A man is jump roping next to water.\", \" A man passes him on a bicycle.\", \" He stops jump roping and continues to talk to the camera.\"]}, \"v_6fyIc1vrK4Q\": {\"duration\": 197.57999999999998, \"timestamps\": [[0, 20.75], [32.6, 126.45], [116.57, 190.66]], \"sentences\": [\"A glass is pouring wine into glasses with two people cheering.\", \" Two people are then seen decorating a tree and helping one another.\", \" The people continue to move around the tree and cheers again and kiss.\"]}, \"v_79FMLEeVp7Q\": {\"duration\": 135.09, \"timestamps\": [[0, 12.83], [22.29, 73.63], [86.46, 135.09]], \"sentences\": [\"A man is seen walking down a wooded path.\", \" He walks across a bridge wearing a backpack.\", \" We see him from several angles, always from behind and walking.\"]}, \"v_Lwy92HbuZII\": {\"duration\": 180.2, \"timestamps\": [[0, 32.44], [36.04, 76.58], [93.7, 180.2]], \"sentences\": [\"Three women and a man are gathered on a boat.\", \" As the boat moves through the water, the women pose for pictures.\", \" They are then seen driving the boat quickly through the water.\"]}, \"v_M9Z2RKnwiz4\": {\"duration\": 234.31, \"timestamps\": [[0, 52.72], [53.89, 114.81], [115.98, 172.22], [173.39, 234.31]], \"sentences\": [\"Balls of different color are aligned on the grass, a man hits the yellow balls with a stick to pass all trough a tiny goal.\", \" The man hits the black balls and all enter the goal.\", \" A red ball gets stack in the goal and the man goes to put aside the ball, then he scores all the red balls.\", \" The man scores all the blue balls except one that gets stuck in the goal.\"]}, \"v_zg6BRB4a3Fo\": {\"duration\": 84.68, \"timestamps\": [[0, 28.37], [28.37, 53.35], [53.35, 84.68]], \"sentences\": [\"woman is standing in a gym talking to the camera.\", \" women are in a gym doing xtreme bike and a woman in front is leading them.\", \" woman is doing steps next too the bikes.\"]}, \"v_AmWcQz_KJG4\": {\"duration\": 95.18, \"timestamps\": [[0, 25.22], [23.32, 66.63], [64.25, 91.37]], \"sentences\": [\"A gymnast is seen standing before a beam and pushes herself on top.\", \" She begins performing a gymnastics routine while many watch on the side.\", \" The girl continues flipping and twirling herself around and ends by jumping down on the side.\"]}, \"v_mo8CBVntUjE\": {\"duration\": 166.23, \"timestamps\": [[0, 28.26], [29.92, 120.52], [123.84, 166.23]], \"sentences\": [\"A woman is seated in an outdoor area.\", \" She is banging a set of drums.\", \" She continues playing, dancing in her seat.\"]}, \"v_UCzKdpP9sLE\": {\"duration\": 87.82, \"timestamps\": [[0, 87.82], [3.51, 54.45], [48.3, 50.93]], \"sentences\": [\"A little girl is sitting on a chair.\", \" She is putting make up on her face.\", \" A woman grabs a brush and brushes her cheek.\"]}, \"v_bQGegLwVc8I\": {\"duration\": 57.38, \"timestamps\": [[0, 17.5], [15.49, 41.02], [41.6, 56.52]], \"sentences\": [\"Two people are seen standing on the edge of a diving board with their arms out.\", \" They jump off the side and are shown again diving into the water.\", \" The two are shown several more times diving at the same time.\"]}, \"v_AxaksczuL80\": {\"duration\": 150.79, \"timestamps\": [[0, 3.02], [22.62, 49.01], [47.5, 136.47]], \"sentences\": [\"A man holds two razors in his hands.\", \" He brushes shaving cream onto his face.\", \" He starts shaving the side of his face with a razor.\"]}, \"v_nfjIQXyL7_Y\": {\"duration\": 11.75, \"timestamps\": [[0, 8.81], [6.52, 8.81], [8.99, 11.75]], \"sentences\": [\"A man is lifting another man on his shoulders.\", \" Another man hits the man over the head with a metal chair.\", \" The man throws the man onto his back on the ground.\"]}, \"v_5UlxCwq-LOs\": {\"duration\": 123.46, \"timestamps\": [[0, 3.09], [3.09, 49.38], [49.38, 70.99], [70.99, 123.46]], \"sentences\": [\"A man at a track and field competition prepares to take off on a long jump.\", \" He takes off and makes the job which he did celebrates vigorously with the crowd.\", \" A man comes behind him from the USA and makes a shorter jump in the competition.\", \" The previous jumper returns and makes a second longer jump and the crowd goes crazy.\"]}, \"v_IZx-EMbylmM\": {\"duration\": 134.1, \"timestamps\": [[0, 134.1], [10.73, 134.1], [18.1, 134.1]], \"sentences\": [\"The woman is talking to the camera.\", \" The woman is holding cup and saucer and raising it and then mixing the content of the cup.\", \" The woman drink in the cup, then she is holding two blue cups.\"]}, \"v_mkEME_iWi9o\": {\"duration\": 88.47, \"timestamps\": [[0, 14.6], [16.81, 67.24], [69.45, 88.47]], \"sentences\": [\"A group of people are watching a game.\", \" The game the teams are playing is cricket.\", \" They run after the ball and hit it toward the goal.\"]}, \"v_qrvPTE0kb5U\": {\"duration\": 218.38, \"timestamps\": [[6.55, 7.64], [8.74, 27.3], [27.3, 189.99], [202.01, 204.19]], \"sentences\": [\"A man is talking on a cell phone.\", \" He begins talking to another man.\", \" He starts playing a game of croquet on the ground.\", \" The ball falls into a pond next to them.\"]}, \"v_U6-j4rUn3dk\": {\"duration\": 169.07, \"timestamps\": [[0, 5.92], [21.98, 79.46], [94.68, 169.07]], \"sentences\": [\"A woman is crouching down in the grass.\", \" She is talking while holding a plant in front of her.\", \" she then shows how to transfer the plant to the soil.\"]}, \"v_cAhu8H9qsAI\": {\"duration\": 59.35, \"timestamps\": [[0, 13.95], [15.43, 50.75], [51.34, 59.35]], \"sentences\": [\"A bench is shown in a foyer.\", \" A woman puts her shoes on after sitting down.\", \"She then picks up a bag and walks away.\"]}, \"v_f6j6lb0AaxM\": {\"duration\": 134.56, \"timestamps\": [[0, 17.49], [20.86, 104.28], [108.32, 134.56]], \"sentences\": [\"A little boy is standing inside a gym.\", \" He is using a racquet to hit a ball over a net.\", \" He hits the ball numerous times.\"]}, \"v_jNJnPpIvtTU\": {\"duration\": 211.95, \"timestamps\": [[0, 24.37], [33.91, 149.43], [154.72, 211.95]], \"sentences\": [\"A man and woman are talking outside a large group.\", \" A couple starts dancing across the floor.\", \" They spin and twirl as the crowd watches.\"]}, \"v_1jl5qtS4mNQ\": {\"duration\": 118.63, \"timestamps\": [[16.61, 61.09], [59.91, 67.03], [111.51, 118.63]], \"sentences\": [\"A person is pulling a white cable up off the ground.\", \" They pull up the carpet with a tool.\", \" Someone is playing a piano at the end.\"]}, \"v_JgAlMwG3fWw\": {\"duration\": 122.9, \"timestamps\": [[0, 16.59], [16.59, 24.58], [25.2, 122.9]], \"sentences\": [\"A group of people windsail on a large body of water near a rocky mountain.\", \" A close up of a woman steering her small boat.\", \" More clips are shown of people sailing in the area.\"]}, \"v_PsddM2OmOGo\": {\"duration\": 107.21000000000001, \"timestamps\": [[0, 31.09], [21.44, 67], [55.21, 107.21]], \"sentences\": [\"a woman is standing with a roll of wall paper.\", \" the woman then unrolls the wall paper.\", \" the woman then applies the wall paper to the wall.\"]}, \"v_e-k2J91a954\": {\"duration\": 61.16, \"timestamps\": [[0, 61.16], [0, 60.86], [51.07, 55.66]], \"sentences\": [\"People are playing volleyball in a room.\", \" People are sitting next to the court watching them.\", \" A woman falls onto the ground trying to hit the ball.\"]}, \"v_vTbeVoT1Gsg\": {\"duration\": 49.31, \"timestamps\": [[0, 6.66], [6.66, 37.23], [37.23, 49.31]], \"sentences\": [\"First, the woman stands still for a few seconds and then begins running as she throws the javelin and many people are watching.\", \" When she starts running, the camera follows her as she runs a short distance and it shows how far the javelin flies.\", \" In the end, her score is shown and other people are shown doing things.\"]}, \"v_5AG9Q5bF4pM\": {\"duration\": 121.6, \"timestamps\": [[0, 121.6], [17.02, 95.46], [64.45, 91.81], [89.99, 121.6]], \"sentences\": [\"There's a woman in printed black and white shirt doing a tutorial on a cooking recipe in her kitchen.\", \" She begins by taking small small sized cucumber and slicing them lengthwise with the skin on on a white chopping board.\", \" She uses the knife to make long slits in the cucumber while holding it vertically in her hand.\", \" Then she goes on to slice them in rounds and places them on the cutting board.\"]}, \"v_k3oPZS_Id3M\": {\"duration\": 131.5, \"timestamps\": [[19.72, 26.3], [28.93, 67.72], [67.06, 92.05], [98.62, 107.17], [111.11, 123.61]], \"sentences\": [\"A man is cleaning a sink with a rag.\", \" He puts clothes into the sink and puts detergent onto them.\", \" He rubs the clothes together under the faucet.\", \" He then hands the clothes on a clothes line to dry.\", \" A washing machine is shown.\"]}, \"v_v6Ui5kgi2OI\": {\"duration\": 82.39, \"timestamps\": [[0, 22.24], [22.66, 31.31], [31.72, 44.9], [45.31, 73.73], [74.15, 82.39]], \"sentences\": [\"Chef Judy Koh appears is in a professional kitchen, speaking to the camera.\", \" She shows off a large metal pot and wisk.\", \" She attaches them to a mixer and mixes several ingredients.\", \" She shows off the texture of the finished mixture.\", \" The logo \\\"Creative Culinaire\\\" appears on screen.\"]}, \"v_91XkPU8A5hs\": {\"duration\": 77.32, \"timestamps\": [[0, 9.67], [13.92, 51.81], [52.58, 77.32]], \"sentences\": [\"A woman is standing in front of a green background.\", \" She is playing the violin with a long bow.\", \" Her hand shakes along the chords as she continues to play.\"]}, \"v_EhjiQFHfDmY\": {\"duration\": 166.0, \"timestamps\": [[0, 49.8], [39.01, 125.33], [113.71, 163.51]], \"sentences\": [\"A woman is seen speaking to the camera when a man walks out with hula hoops.\", \" The man then begins performing several different tricks using the hula hoops.\", \" He moves all around himself performing tricks on the ground and ends by bowing.\"]}, \"v_lq20hEghHtU\": {\"duration\": 187.55, \"timestamps\": [[0.94, 58.14], [41.26, 123.78], [92.84, 184.73]], \"sentences\": [\"A young girl climbs on top of a camel while others walk around her.\", \" A man leads the camel around in circles while the girl laughs to the camera.\", \" The camel continues walking around and stops to let the girl off and walk down stairs.\"]}, \"v_OD7lx6blG9M\": {\"duration\": 28.42, \"timestamps\": [[0, 1.71], [1.56, 21.46], [21.6, 23.31], [26.01, 27.43]], \"sentences\": [\"A woman takes a pan off of a stove.\", \" She flips the food in the pan in the air a few times.\", \" She sets the pan back on the stove.\", \" An egg is shown on the counter.\"]}, \"v_XBBT8UvESiE\": {\"duration\": 142.53, \"timestamps\": [[0, 26.37], [24.23, 106.89], [81.95, 140.39]], \"sentences\": [\"A woman is seen pulling off a hat and begins dancing around a man tied up.\", \" She wets a cloth over his face while still dancing and rubs cream all over his face.\", \" She then shaves his face while still dancing around and the man smiling in the end.\"]}, \"v_R1Q-KP8GHFE\": {\"duration\": 175.57, \"timestamps\": [[0, 14.92], [22.82, 99.2], [113.24, 175.57]], \"sentences\": [\"Several scenes are shown of a video game.\", \" A character is being pulled by a boat.\", \" It gets points as it surfs, hitting different objects.\"]}, \"v_QryL-hVKAOA\": {\"duration\": 122.74, \"timestamps\": [[0, 47.26], [47.26, 92.06], [92.06, 122.74]], \"sentences\": [\"little kid is standing in front of a sink washing the dishes.\", \" the kid grabs a sponge and its cleaning a pot.\", \" kid wash a white plate in front of the sink.\"]}, \"v_O-YKLVm0ciI\": {\"duration\": 202.39, \"timestamps\": [[0, 41.49], [56.67, 137.62], [147.74, 202.39]], \"sentences\": [\"An old black and white video is shown.\", \" Several track athletes take turns running down the track.\", \" They take flying leaps into a sand pit.\"]}, \"v_H91Dm6jaUPg\": {\"duration\": 145.92000000000002, \"timestamps\": [[0, 18.24], [28.45, 72.23], [89.74, 145.92]], \"sentences\": [\"A woman is seated in a room and talking.\", \" She has a canvas and paints in front of her.\", \" She demonstrates how to paint an image.\"]}, \"v_cZWgq6ATrRI\": {\"duration\": 60.16, \"timestamps\": [[8.12, 53.55], [34.29, 53.55], [0, 60.16]], \"sentences\": [\"A white dog is sitting on the floor.\", \" A girl does a hand stand on the floor and brushes her face with her foot.\", \" A woman is sitting on the couch behind her.\"]}, \"v_MjmDj36sVxM\": {\"duration\": 32.76, \"timestamps\": [[0, 5.24], [3.93, 22.28], [7.86, 32.76]], \"sentences\": [\"The woman is petting her dog, and the dog licked her face.\", \" The woman is playing with her dog.\", \" The woman walked with her black dog and then pet him.\"]}, \"v_ELlRh3gjpeE\": {\"duration\": 160.54, \"timestamps\": [[0, 25.69], [27.29, 160.54], [0.8, 160.54]], \"sentences\": [\"People are standing in a line on a court.\", \" They begin to play a game of indoor soccer.\", \" People are sitting in the stands watching.\"]}, \"v_j8lH0saRXl4\": {\"duration\": 91.3, \"timestamps\": [[0, 29.67], [22.83, 56.15], [56.15, 87.19]], \"sentences\": [\"A boy is shown holding a rubix cube and smiling to the camera.\", \" The boy then begins solving the rubix cube.\", \" He continues attempting to solve when a person hits him in the face.\"]}, \"v_gd7SO0TQ-sY\": {\"duration\": 120.31, \"timestamps\": [[0, 120.31], [0, 7.82], [7.82, 41.51], [41.51, 114.9]], \"sentences\": [\"A group of young people play volleyball and surf on a sunny day the beach.\", \"  Two girls play volleyball with each other without a net on the beach in bikinis.\", \"  A group of people play volleyball on the beach interspersed with video of men surfing on waves in the water at the beach.\", \"  A group of women play volley ball on the beach with a raised white net followed by another game of volleyball with a mixed gender game this time, before a final shot of a person surfing displays along with video of the two women playing volleyball without a net.\"]}, \"v_FZk40J_drws\": {\"duration\": 151.3, \"timestamps\": [[0, 12.86], [12.86, 31.77], [32.53, 55.98], [56.74, 86.24], [86.24, 109.69], [109.69, 130.12], [130.12, 135.42], [136.17, 151.3]], \"sentences\": [\"A man picks up a stone on the beach.\", \" He takes a run along the beach in early evening and passes a seal.\", \" He runs across a long bridge towards a city.\", \" He runs through a long two lane tunnel.\", \" He runs along city streets and the Hollywood Walk of Fame.\", \" He runs up a steep hill as the sun starts to rise.\", \" The man drops the stone from the beach on top of the hill.\", \" Video of him running as the words \\\"Join Me\\\" appear on screen and he tries to pet the seal.\"]}, \"v_Cgquef_qgcs\": {\"duration\": 6.78, \"timestamps\": [[0.14, 1.73], [1.63, 4.92], [4.34, 6.61]], \"sentences\": [\"A man is seen standing with a large pole.\", \" The man runs down a track with the large pole.\", \" He finally pole volts himself over a bar and onto a mat.\"]}, \"v_UE2mDvY9rew\": {\"duration\": 15.84, \"timestamps\": [[0, 4.51], [3.8, 10.69], [9.98, 15.28]], \"sentences\": [\"A close up of a roof is shown.\", \" The camera pans around the side of the room.\", \" The camera then pans back to the middle of the roof.\"]}, \"v_kyObhFkHrak\": {\"duration\": 7.36, \"timestamps\": [[0, 1.21], [1.32, 4.86], [5.34, 7.36]], \"sentences\": [\"A man body slams a fellow wrestler on the stage.\", \" The referee runs around screaming at the wrestlers.\", \" One jumps on the others as they hit the mat.\"]}, \"v_tqqWTxQ5-kY\": {\"duration\": 50.02, \"timestamps\": [[0, 6.75], [7.25, 31.76], [34.51, 50.02]], \"sentences\": [\"A woman is listening while a man is talking to her about a piercing.\", \" He disinfects a spot in her nose.\", \" He then inserts a piercing and shows her in the mirror.\"]}, \"v_PDjtB578yRk\": {\"duration\": 148.17000000000002, \"timestamps\": [[0, 148.17], [0, 36.3], [23.71, 57.04], [57.04, 145.94], [145.94, 148.17]], \"sentences\": [\"A large group of people are gathered outdoors on a cemented area and some of the adults that are standing are playing on instruments and singing.\", \" The children standing are dressed in white and only some of them start to dance along to the music but stop when the men start doing their dance with the long blade knives.\", \"Now two brown men who were crouched down in front of the adults playing instrument stand up and they do a dance that include both of them holding onto long bladed knives while everyone around them continues to watch.\", \" A white skin man enters and does his knife routine with one of the brown men as the other one leaves, and they continue switching out and taking turns with this double knife dance with only two of them dancing at a time.\", \"The last two men end their dance and the darker man walks out of view while the lighter man puts his right hand to his face.\"]}, \"v_fZQclIXmRHE\": {\"duration\": 87.91, \"timestamps\": [[0, 22.86], [22.86, 58.9], [57.14, 87.03]], \"sentences\": [\"A man is seen speaking to the camera while holding up a shirt.\", \" He lays down a shirt and points to an iron.\", \" Another man holds up an iron and the two men iron shirts and hold them up.\"]}, \"v_RpH774VD6Hw\": {\"duration\": 100.4, \"timestamps\": [[0, 9.54], [14.56, 72.79], [73.29, 100.4]], \"sentences\": [\"A group gathers on an indoor field.\", \" They walk around as commentators discuss the event.\", \" They engage in archery, shooting arrows at targets.\"]}, \"v_wpxozv4Yois\": {\"duration\": 173.78, \"timestamps\": [[0, 1.74], [1.74, 13.03], [13.03, 152.93], [152.93, 155.53], [155.53, 173.78]], \"sentences\": [\"In a sped up motion various clips of a road trip play where we see a long stretch of road at night turning into day, men in a car, and daytime driving.\", \" Continuing in a sped up motion we see the arrival at a ski lodge.\", \" Then in normal motion various people are snowboarding, we see it from first person view if a person is holding a long selfie stick, or the person filming others as different people snowboard down different snowy hills surrounded by a lot of trees.\", \"In a sped up motion a clip is shown of driving on the road.\", \"The clip goes back to a man snowboarding while holding the selfie stick pointed at him.\"]}, \"v_mucFmOzqWW8\": {\"duration\": 104.82, \"timestamps\": [[0, 5.77], [6.29, 99.58], [100.63, 104.82]], \"sentences\": [\"A little girl is running on a beach as text appears on the screen.\", \"  The video shows her enjoying herself at an aquarium as fish and otters are shown as well as  her playing outdoors at the beach.\", \" The video slowly fades to black.\"]}, \"v_gXdFGYPKClE\": {\"duration\": 67.9, \"timestamps\": [[0, 8.83], [7.47, 44.47], [7.47, 67.9]], \"sentences\": [\"The people are behind the small fence with their bikes.\", \" Then the fence is put down the bikers started racing with each other.\", \" The bikers are cycling through the ramps as audiences are watching.\"]}, \"v_2mAKLFVhV9Y\": {\"duration\": 111.74000000000001, \"timestamps\": [[0, 25.7], [21.23, 79.89], [67.6, 110.62]], \"sentences\": [\"A woman is seen running around on the field playing a game of field hockey with others.\", \" The girls run back and fourth past one another while still throwing around the ball.\", \" They continue to play against the other team and run across the field.\"]}, \"v_Y7VWbYGI0Oc\": {\"duration\": 24.29, \"timestamps\": [[0, 1.09], [1.09, 3.04], [3.76, 24.29], [8.02, 10.44], [15.18, 23.07]], \"sentences\": [\"A man stands in the grass at a park holding a kite  overlooking the downtown area of a city.\", \" The kite flys around low then takes off into the sky as the man watches it.\", \" The camera pans up to show the kite flying in front of a big bright sun.\", \" We see bright spots fly about on the lens of the camera.\", \" The bright spots reappear on the screen.\"]}, \"v_VIROYxBPp70\": {\"duration\": 37.85, \"timestamps\": [[0, 3.22], [0, 37.85], [3.41, 37.09], [37.66, 37.85]], \"sentences\": [\"Two guys stand in a boxing ring with their gloved hands covering their facial profiles .\", \"Two guys are boxing in a boxing ring.\", \" A guy attacks repeatedly, kicking and punching.\", \" A guy puts his gloved hands down.\"]}, \"v_qA_KTu8oTW4\": {\"duration\": 130.96, \"timestamps\": [[0, 21.61], [24.23, 91.67], [92.33, 130.96]], \"sentences\": [\"A large group has gathered outside on a parking lot.\", \" A school band begins to march and play.\", \" The cheerleaders dance while the band plays.\"]}, \"v_ADUmfTuiDH8\": {\"duration\": 117.45, \"timestamps\": [[7.05, 11.74], [13.51, 24.08], [25.84, 84.56], [90.43, 98.66], [99.83, 103.94]], \"sentences\": [\"A person picks a lemon from a tree.\", \" Sugar is poured into a cup then into a pitcher of water.\", \" Lemons are juiced into a measuring cup.\", \" The lemon juice is poured into a pitcher along with a red fruit juice and stirred.\", \" Lemon slices are added to the pitcher.\"]}, \"v_9Xrw-WOipSI\": {\"duration\": 74.1, \"timestamps\": [[4.82, 61.87], [33.71, 49.64], [53.35, 55.94]], \"sentences\": [\"A woman in a brown dress is holding two sticks.\", \" She hits balls around goals on fake grass.\", \" Two balls are shown on the fake grass.\"]}, \"v_qmKSDwVvxVk\": {\"duration\": 21.13, \"timestamps\": [[5.81, 8.03], [7.5, 8.24], [8.56, 10.67]], \"sentences\": [\"A man is standing on a track.\", \" He jumps backwards over a bar.\", \" He lands on a blue mat on his back.\"]}, \"v_OqLUp37WKMA\": {\"duration\": 69.13, \"timestamps\": [[0, 26.61], [9.33, 44.24], [39.06, 66.71]], \"sentences\": [\"A small group of men are seen running around a field playing soccer.\", \" One scores a goal and is shown several more times again.\", \" The men smile to one another and continue playing the sport.\"]}, \"v_E22gU_8tafI\": {\"duration\": 82.55, \"timestamps\": [[0, 14.86], [15.27, 25.59], [35.08, 42.51], [65.62, 79.25]], \"sentences\": [\"A runner stretches out before his performance at the starting line.\", \" The athlete runs down the track and jumps into the sand bouncing to the side and back on his feet.\", \" The runner jumps in the sand and falls back kicking one foot up in the air.\", \" The athlete runs and jumps in the sand then land sitting back with both feet firmly planted still.\"]}, \"v_BodF651KcIg\": {\"duration\": 236.87, \"timestamps\": [[0, 67.51], [65.14, 170.54], [129.09, 228.58]], \"sentences\": [\"A woman is seen standing on a stage and begins moving her arms around.\", \" She begins dancing a routine while moving her body around all along the stage.\", \" She continue spinning and dancing around and ends by walking away.\"]}, \"v_mpC_UTM1tWQ\": {\"duration\": 16.95, \"timestamps\": [[0, 1.61], [1.61, 10.76], [10.68, 16.95]], \"sentences\": [\"A man with a blue shirt,blue sweat pants and green socks is standing outside in a large field walking into a circle of cement.\", \"Once the guy is on the circle,he begins walking around the circle to find his perfect spot.\", \"Everything is perfect and then he throws the discus that was in his hand into the field as he is spinning around.\"]}, \"v_BzxK6r4UG5k\": {\"duration\": 56.96, \"timestamps\": [[0, 5.7], [6.55, 24.49], [25.92, 56.96]], \"sentences\": [\"A weight lifter powders his hands on a stage.\", \" He walks over to a barbell, and lifts it up.\", \" He raises it over his head before dropping it.\"]}, \"v_F51cKkjt6tk\": {\"duration\": 31.42, \"timestamps\": [[0, 6.13], [23.88, 27.02], [30, 31.42]], \"sentences\": [\"Young girl puts black mascara on her eyelashes.\", \"  She looks into the large mirror.\", \"  She smiles for the camera.\"]}, \"v_EQNJfWiAS28\": {\"duration\": 157.82999999999998, \"timestamps\": [[0, 154.67], [0, 17.36], [22.1, 157.83]], \"sentences\": [\"A woman dances on a street while spectators watch.\", \" An older man walks nearby to the woman.\", \" The older man joins the woman in dancing.\"]}, \"v_F3jJVS3NHf8\": {\"duration\": 207.36, \"timestamps\": [[13.48, 42.51], [62.21, 81.91], [81.91, 135.82], [131.67, 137.89], [161.74, 180.4]], \"sentences\": [\"Ingredients are sitting on a wooden block.\", \" A person sets a glass bowl in a pot on the stove.\", \" They mix ingredients together in a bowl.\", \" They pour the mixture into small metal cups.\", \" They pull them out of the oven and put one on a plate.\"]}, \"v_SSTom962aPk\": {\"duration\": 85.13, \"timestamps\": [[0, 21.71], [22.13, 59.59], [54.48, 82.15]], \"sentences\": [\"A man is seen walking into a barber shop with others and one sitting in a chair.\", \" He speaks to the hairdresser and the man begins cutting his hair.\", \" He finishes the cut and the man smiles back and speaks.\"]}, \"v_7eR0DyDg7wQ\": {\"duration\": 53.33, \"timestamps\": [[1.07, 7.47], [8, 12.8], [12.53, 33.06], [33.06, 38.4], [38.66, 53.33]], \"sentences\": [\"The camera zooms out from a radio sitting on a counter.\", \" A man smashes the radio with a baseball bat.\", \" The man talks to no one in particular while pouring something from a container into a mug.\", \" The man walks to and sits at a table with the mug.\", \" The man eats something from the mug.\"]}, \"v_rze0k4LklN4\": {\"duration\": 142.59, \"timestamps\": [[0, 9.27], [20.68, 67.02], [72.01, 142.59]], \"sentences\": [\"a man is wearing an apron inside a room.\", \" He is talking next to a bike on a stand.\", \" He shows how to disassemble and assemble the bike.\"]}, \"v_B_PhHrBEeNI\": {\"duration\": 169.92000000000002, \"timestamps\": [[2.55, 43.33], [45.88, 120.65], [107.9, 156.33]], \"sentences\": [\"A man is seen speaking to the camera and begins playing on a stage with people.\", \" He then plays the harmonica while speaking and showing clips of him singing.\", \" He continues to speak and play as well as showing him on stage.\"]}, \"v_jd609r5yKkI\": {\"duration\": 143.71, \"timestamps\": [[0, 59.64], [59.64, 131.49], [131.49, 143.71]], \"sentences\": [\"Four drummers are being recorded while they are performing a drum routine.\", \" As they continue with their drum routine drummer of the pace of the drumming.\", \" When the video in the closing captions and credits are shown on the screen.\"]}, \"v_rvcSqYeUZ9s\": {\"duration\": 51.69, \"timestamps\": [[0, 3.62], [7.75, 33.34], [35.41, 51.69]], \"sentences\": [\"A man is leaning foward on a bench.\", \" Another man is applying suntan lotion onto his back.\", \" He stands up when the man is done with the lotion.\"]}, \"v_DxhdDYQkQU8\": {\"duration\": 53.64, \"timestamps\": [[0, 13.41], [13.95, 36.74], [35.94, 52.03]], \"sentences\": [\"A man is seen standing before a skateboard and begins riding.\", \" Another man claps as her continues to ride around on the board.\", \" In the end a man is seen cleaning off a skateboard.\"]}, \"v_eA5ANAdLvFE\": {\"duration\": 121.84, \"timestamps\": [[0, 30.46], [26.19, 91.99], [77.37, 121.84]], \"sentences\": [\"A man is seen standing with a younger man and hands him a pan.\", \" The younger man begins cooking eggs while laughing with the older man.\", \" The men cook together while mixing in more ingredients and presenting it on a plate.\"]}, \"v_2imjxY43yYM\": {\"duration\": 188.4, \"timestamps\": [[0, 188.4], [23.55, 151.66], [150.72, 188.4]], \"sentences\": [\"A group of people are dancing in a hall.\", \"  People are twirling around on the floor.\", \"  Other groups join in.\"]}, \"v_mtU66vCjVVs\": {\"duration\": 69.36, \"timestamps\": [[0, 17.34], [20.11, 59.3], [60, 69.36]], \"sentences\": [\"A little girl is standing inside her bedroom.\", \" She is playing a long silver flute.\", \" She continues playing until she is finished.\"]}, \"v_Flh6nxGkf74\": {\"duration\": 35.85, \"timestamps\": [[0, 35.85], [19.72, 25.81], [7.35, 35.85]], \"sentences\": [\"A women narrates a news story about sand sculpting on the beach.\", \" A man on the screen comments on the sand sculpting competition.\", \" Clips of people are shown as the sculpt sand structures on the beach.\"]}, \"v_B5Ea3Bs8hC4\": {\"duration\": 73.52, \"timestamps\": [[0, 19.11], [19.11, 33.08], [33.08, 73.52], [0, 73.52]], \"sentences\": [\"A man is talking and sitting on a chair and is washing clothes in a pink bucket that's filled with soap and water and surrounded by other colorful buckets with clothes in them as well as clothes on the grass.\", \" The man takes the dark piece of clothing and wrings it out in the pink bucket, then puts it in the yellow bucket for a few dunks in it, wrings it out in both the yellow and pink bucket then throws it into a dark green bucket.\", \" The man goes back to the pink bucket to wash another dark item clothing, he wrings it out in the pink bucket, throws it in the yellow bucket, then wrings his hands together a few times while staring at the camera.\", \"There are people walking behind the man as he's washing and wringing out the clothing.\"]}, \"v_Ws5jA8cMKas\": {\"duration\": 182.46, \"timestamps\": [[0, 34.67], [34.67, 83.02], [83.93, 133.2], [133.2, 166.95], [167.87, 182.46]], \"sentences\": [\"A young boy is sitting down in a chair with a grey hoodie on getting his hair done.\", \"As the camera moves,you can see a young woman standing in a chair blow drying his hair.\", \"Also in the bathroom,is another young woman holding the camera and another boy is standing in the door way of the bathroom watching.\", \"Once the drying has finished,the boy grabs the blow dryer and starts to blow dry his own hair.\", \"Next to him,is the camera girl and she begins smiling and blowing kisses to the screen.\"]}, \"v_3JcvtncHhLw\": {\"duration\": 104.75, \"timestamps\": [[0, 38.76], [31.42, 78.56], [68.61, 103.7]], \"sentences\": [\"A man is seen stretching outside and leads into him running.\", \" The man runs all along a long road.\", \" He continues running while the camera captures his movements.\"]}, \"v_oKauZV0DHHk\": {\"duration\": 160.59, \"timestamps\": [[0, 15.26], [20.88, 103.58], [106.79, 160.59]], \"sentences\": [\"A woman with curly hair is shown close up.\", \" We then see all the tools and ingredients needs to create her look.\", \" the woman is shown demonstrating how she rolled and styled her hair.\"]}, \"v_-WrOnvkUTXg\": {\"duration\": 36.49, \"timestamps\": [[0, 5.47], [5.66, 18.79], [18.25, 28.28], [28.1, 36.49]], \"sentences\": [\"A man wearing a long sleeve black shirt and grey pants is kneeling down slowly in an open field of grass with a body of water behind him.\", \"After he has mentally prepared himself,the man jumps up from his feet into the lateral standing position.\", \"Once he is up,another man appears next to him and illustrates the same thing.\", \"The exercise continues until both of the men have reached the end and they walk off together.\"]}, \"v_hwGvU9Csz98\": {\"duration\": 19.39, \"timestamps\": [[0, 16.48], [0.19, 11.34], [18.9, 19.39]], \"sentences\": [\"This woman rides the white/brown horse under the shady trees for a little bit.\", \" The horse is nodding its head and walks in circles a few times.\", \" In the end, the horse stops walking and just stands in place while the woman is still sitting on the saddle.\"]}, \"v_QJfuxpFMn8s\": {\"duration\": 175.96, \"timestamps\": [[0, 175.96], [2.64, 174.2], [22, 36.95], [109.98, 114.37]], \"sentences\": [\"A workplace kitchen is shown and there are people in and out using it.\", \" One man is washing dishes and sometimes buckets with a large sprayer hose, and he sometimes sends the items through a square machine.\", \" A man wheels in some red fruits or vegetables and someone takes the top box and he leaves the rest.\", \" A man comes and takes the boxes and brings back a trash can.\"]}, \"v_WT7ZtXsTslM\": {\"duration\": 69.17, \"timestamps\": [[0, 3.46], [8.99, 31.13], [32.17, 69.17]], \"sentences\": [\"Several layers of a cake are being shown.\", \" They are shaped into what appears to be a shoe.\", \" They are then painted with frosting and dye.\"]}, \"v_dDmc6n79ek0\": {\"duration\": 110.74000000000001, \"timestamps\": [[0, 34.33], [29.35, 76.41], [76.96, 109.63]], \"sentences\": [\"Several people are seen skating around the ice in black and white.\", \" The group leads into a large game of ice hockey.\", \" People skate around furiously with one man sweeping in the end.\"]}, \"v_0NgQr2-AieQ\": {\"duration\": 59.05, \"timestamps\": [[0, 14.76], [14.47, 36.61], [36.02, 59.05]], \"sentences\": [\"A baby boy with large brown eyes is laying down on his back on a yellow blanket.\", \"As he lays there,a hand appears dabbing his face with a yellow and white rag.\", \"While receiving the treatment,the baby boy begins to laugh and squirm a bit in enjoyment.\"]}, \"v_x_FAc0KqMVw\": {\"duration\": 119.37, \"timestamps\": [[0, 119.37], [77, 114], [117.58, 119.37]], \"sentences\": [\"Two people are sitting in chairs holding acoustic guitars.\", \" They begin to play the guitars.\", \" They stop playing and set the guitars on their laps.\"]}, \"v_qVHazdU4_vY\": {\"duration\": 164.97, \"timestamps\": [[0, 53.61], [42.89, 125.38], [104.75, 160.84]], \"sentences\": [\"A woman is sitting on the floor and speaking to the camera while moving her legs around.\", \" She lays down and demonstrates how to perform a break dancing move.\", \" She spins around continuously while still speaking to the camera.\"]}, \"v_UXi0Cy16-0Y\": {\"duration\": 101.03, \"timestamps\": [[0, 16.16], [19.7, 54.56], [62.64, 101.03]], \"sentences\": [\"A boy walks into the center of a court in front of judges.\", \" He begins to jump using a jump rope.\", \" He spins and flips with the rope.\"]}, \"v_iA8ylJWzzVc\": {\"duration\": 196.02, \"timestamps\": [[0, 4.9], [4.9, 20.58], [20.58, 47.05], [48.03, 70.57], [70.57, 132.32], [134.28, 182.3], [183.28, 196.02]], \"sentences\": [\"We see an opening title screen with a Christmas tree in it.\", \" We see the tree decorated then see a plain tree.\", \" A man stuffs a red and green striped mesh into parts of the tree so it hangs on the tree and creates bows in the mesh to decorate the tree.\", \" The man adds another row of mesh to the tree on the left side.\", \" He then adds bows of a gold lame fabric to the center between the two striped stripes and on the left side.\", \" The man adds bows on a strip of lime green ribbon to each side.\", \" We are shown the finished tree and see a title screen.\"]}, \"v_Dh3bLRYJkiY\": {\"duration\": 59.0, \"timestamps\": [[0, 10.92], [3.54, 20.95], [15.93, 40.71], [43.66, 59]], \"sentences\": [\"a boy stands at the starting line of a track.\", \" the boy takes off running.\", \" the boy then jumps in a pile of sand.\", \" another boy repeats the pattern of the first boy.\"]}, \"v_EHianByJXXM\": {\"duration\": 28.24, \"timestamps\": [[0, 28.24], [0, 28.09], [0, 26.26]], \"sentences\": [\"man is riding a horse in a barn chasing a bulland when grabs him the bull runs.\", \" people are on side of the barn watching the man.\", \" man is standing in th barn watching the man.\"]}, \"v_HpjomKhpIdk\": {\"duration\": 63.48, \"timestamps\": [[0, 26.35], [11.74, 39.68], [35.23, 61.9]], \"sentences\": [\"A close up of a roof is shown and leads into people working around it.\", \" People bend over and work while the camera pans around.\", \" The camera man continues to walk around on the roof.\"]}, \"v_QoTM5tmcJeI\": {\"duration\": 31.09, \"timestamps\": [[0, 31.09], [0, 1.71], [0, 11.5], [11.5, 16.79], [16.48, 24.1], [28.92, 31.09]], \"sentences\": [\"A couple of children are playing in a large game room area.\", \"A boy and a girl are standing at a child sized foosball table and playing.\", \" Another child from a taller foosball table walks over to the child sized table sticks his hands on the table.\", \"The girl picks up the ball from the table, drops it on the ground, then picks it back up.\", \" The child that wasn't originally playing in the first place tries to take the place of the girl and she bumps him out of her way with her hip, then puts the ball back on the table.\", \"The child that isn't part of the game steals the ball and the girl tries to get it back from him and she cries as he puts it behind his back.\"]}, \"v_FSe9tVYHgBc\": {\"duration\": 84.81, \"timestamps\": [[0, 10.6], [15.27, 41.13], [42.41, 84.81]], \"sentences\": [\"A group of men are standing on a boat.\", \" They are smiling and talking as a fax comes in.\", \" They gear up and jump into the water.\"]}, \"v_V1SEaTS9hos\": {\"duration\": 11.15, \"timestamps\": [[0, 11.15], [0.72, 11.15], [2.23, 11.15]], \"sentences\": [\"Two men are scrubbing the clothes using their hands.\", \" The men are washing their clothes using their hands.\", \" The clothes are in big buckets.\"]}, \"v_ZYcZZJ0XItM\": {\"duration\": 140.39, \"timestamps\": [[0, 11.23], [12.63, 37.2], [53.35, 140.39]], \"sentences\": [\"A swimmer climbs to the top of a diving board.\", \" He approaches the end, jumping up and down.\", \" He plunges into the water, taking a dive.\"]}, \"v_dfgwl-_IMic\": {\"duration\": 31.97, \"timestamps\": [[0, 31.97], [1.12, 8.63], [4.64, 9.91], [9.27, 30.54]], \"sentences\": [\"There's a man on stilts wearing a helmet running through the streets in a city.\", \" The man is wearing a green shirt and helmet and running on the streets, passing houses with a coffee cup in his hands.\", \" Some people on the streets watch the man stilts pass by them.\", \" The man goes into a city where everyone is walking on stilts as they go about their regular business.\"]}, \"v_5hXH-TorJ6M\": {\"duration\": 70.33, \"timestamps\": [[0, 17.94], [16.53, 47.12], [37.98, 65.06]], \"sentences\": [\"A man is seen speaking to the camera and pours ice into a glass.\", \" The man then begins mixing various liquors into the drink.\", \" He finally stirs the drink up to finish and presents it to the camera.\"]}, \"v_9XmzbuByY_E\": {\"duration\": 49.67, \"timestamps\": [[0, 8.2], [10.43, 27.32], [24.59, 44.7]], \"sentences\": [\"A man is seen speaking to the camera while people play shuffleboard behind him.\", \" Several clips are shown of people playing shuffle board.\", \" More people speak to the camera as more clips of the game are shown.\"]}, \"v_EGrXaq213Oc\": {\"duration\": 126.39, \"timestamps\": [[0, 19.59], [12.01, 36.65], [33.49, 73.94], [72.67, 126.39]], \"sentences\": [\"a small child is snowboarding down a slope.\", \" a woman talks to the camera.\", \" another small child is shown snowboarding.\", \" then several children are shown being taught how to snow board.\"]}, \"v_M6FdaEstXbI\": {\"duration\": 114.06, \"timestamps\": [[0, 27.94], [21.1, 76.99], [67.29, 111.21]], \"sentences\": [\"A man is seen kneeling down putting a pair of stilts on and a helmet.\", \" He's shown bouncing all around the city while speaking to the camera.\", \" He continues moving around the city jumping and hopping and helps others in a gym use the stilts.\"]}, \"v_3FZ47muWIYA\": {\"duration\": 160.68, \"timestamps\": [[0, 36.96], [31.33, 113.28], [110.87, 156.67]], \"sentences\": [\"A person is seen washing their hands and leads into children speaking to the camera.\", \" The children hold up objects while speaking and lead into them washing their hands.\", \" The kids continue washing and drying their hands and walk out.\"]}, \"v_jed5hUKCCk0\": {\"duration\": 154.04, \"timestamps\": [[0, 9.24], [10.01, 16.17], [16.94, 31.58], [31.58, 85.49], [79.33, 85.49], [86.26, 140.18], [140.18, 154.04]], \"sentences\": [\"We see ornaments on a Christmas tree.\", \" A man cuts a Christmas tree free of a net in a living room as a lady watches and leaves and a teen girl enters to help.\", \" A teen girl and a young African american boy enter the room and a lady ties an orange strip on the boys head.\", \" Two teen girls put the lights and garland on the tree as the boy and an African American girl watch and help.\", \" The young girl and boy play hide and seek.\", \" The teens and the kids add ornaments to the tree.\", \" We see a photo of three teens and the younger girl and boy posing in front of the stairs, on the ground, and in front of the tree one where the younger girl is eating a candy cane.\"]}, \"v_S0Kl5D5mrvQ\": {\"duration\": 50.57, \"timestamps\": [[0, 28.83], [28.32, 46.78], [47.03, 50.57]], \"sentences\": [\"A person is wiping a sink with a towel.\", \" A woman in a red shirt is playing a guitar and singing.\", \" She continues to wipe the sink with a towel.\"]}, \"v_BH-kBRn84i8\": {\"duration\": 22.11, \"timestamps\": [[0, 22.11], [3.32, 11.16], [9.4, 22.11]], \"sentences\": [\"The man in white shirt is cutting the grass with lawn mower.\", \" The man walked on the grass covered law.\", \" The man pulled back the lawn mower and then moved it forward and repeated it.\"]}, \"v_bH6KL0ai3Ww\": {\"duration\": 55.66, \"timestamps\": [[0, 6.96], [6.96, 50.37], [50.09, 55.66]], \"sentences\": [\"man is standing in the middle of stage in front of a balance beam.\", \"  the man gets in the beam and start doing gymnastics.\", \" the man makes a high jump and gets in the floor and walks.\"]}, \"v_9Zy5ylJYiA4\": {\"duration\": 197.02, \"timestamps\": [[0, 69.94], [77.82, 99.5], [123.14, 132]], \"sentences\": [\"Man is wearing white and red shirt and threw shot put.\", \"  Man throws shot put again.\", \"  There are several men running on the track.\"]}, \"v_lKi-hl_KGJ4\": {\"duration\": 207.17000000000002, \"timestamps\": [[0, 207.17], [7.25, 207.17], [12.43, 207.17], [117.05, 207.17]], \"sentences\": [\"Several people are standing in a gym.\", \" An instructor stands on stage and leads them in an exercise.\", \" They dance in place as part of the exercise.\", \" A child enters and spins around a pole.\"]}, \"v_x44fn0snUvw\": {\"duration\": 100.8, \"timestamps\": [[0, 8.57], [16.13, 58.46], [62.49, 100.8]], \"sentences\": [\"A woman's hands are shown in the base of a sink.\", \" She is spreading soap over her nails and fingers.\", \" She then rinses them off in the sink.\"]}, \"v_IQ4SUx8ythk\": {\"duration\": 60.12, \"timestamps\": [[0, 1.8], [3.91, 5.71], [33.06, 34.87]], \"sentences\": [\"People are standing on a crowded beach.\", \" A large wave is shown in the water.\", \" A woman is walking along the beach at sunset.\"]}, \"v_gVMG_FHDrvo\": {\"duration\": 7.85, \"timestamps\": [[0, 7.54], [2.16, 5.02], [0, 7.85]], \"sentences\": [\"An animation of two people fighting in a boxing ring is shown.\", \" A man stands on the ropes and jumps onto another man.\", \" People sit in the stands and watch them.\"]}, \"v_UJwWjTvDEpQ\": {\"duration\": 131.05, \"timestamps\": [[0, 39.97], [36.7, 95.67], [87.15, 128.43]], \"sentences\": [\"A young child is seen speaking to the camera while holding a guitar.\", \" He moves the guitar around while showing it off to the camera.\", \" He plays a bit and continues to speak.\"]}, \"v_GV_BDNmUiLY\": {\"duration\": 124.85, \"timestamps\": [[0, 124.85], [0, 119.24], [3.75, 124.85]], \"sentences\": [\"men are on the ocean doing windsurfing.\", \" a lot of men are on olympics doing windsurf on ocean.\", \" people is windsurfing in a competition on the sea.\"]}, \"v_AJ15GW-sS5M\": {\"duration\": 177.98, \"timestamps\": [[0, 172.64], [111.24, 115.69], [152.17, 159.29], [174.42, 177.98]], \"sentences\": [\"Several different men are shown making long jumps in track and field competitions.\", \" One of the men celebrates his distance as he finishes his jump.\", \" Another man is shown stepping on the line before he continues to complete his jump.\", \" The video ends with the closing caption displayed across the screen.\"]}, \"v_dwCeFVAaP9c\": {\"duration\": 144.27, \"timestamps\": [[0, 23.8], [20.92, 88.72], [78.62, 144.27]], \"sentences\": [\"a man in on his knees in an empty room.\", \" he holds up a patch of carpet and starts talking.\", \" the then demonstrates how to install flooring.\"]}, \"v_z6U8CyJRNXw\": {\"duration\": 166.36, \"timestamps\": [[0, 4.16], [7.49, 159.71], [113.13, 155.55]], \"sentences\": [\"A man is pulled on a knee board and goes over jumps with a tow rope.\", \" People wake board over ramps in a lake pulled by a tow rope.\", \" People ride over jumps and do multiple rotations in the air on wake boards.\"]}, \"v_5ptxyeHlcwM\": {\"duration\": 91.07, \"timestamps\": [[0, 10.93], [13.66, 54.64], [69.21, 91.07]], \"sentences\": [\"A man is playing a game inside a bowling alley.\", \" He walks up to the lane with a ball and throws it at the pins.\", \" He is then seen talking about bowling with another man.\"]}, \"v_yeEe8-aYA2E\": {\"duration\": 70.64, \"timestamps\": [[0, 10.6], [10.6, 52.27], [56.86, 70.64]], \"sentences\": [\"A man is riding a bike while wearing a helmet.\", \" He does stunts and turns on the bike.\", \" He goes up and down ramps in a skate park.\"]}, \"v_dTwH5Fzu4eE\": {\"duration\": 36.02, \"timestamps\": [[0, 7.38], [0, 22.87], [13.69, 36.02]], \"sentences\": [\"a group of woman are in a a studio.\", \" the woman practice a ballet routine.\", \" an instructor helps the women.\"]}, \"v_fCLnOf-YjEI\": {\"duration\": 116.5, \"timestamps\": [[0, 43.1], [19.8, 29.71], [41.36, 116.5], [95.53, 116.5]], \"sentences\": [\"An old man in a grey hooded sweatshirt is shoveling the driveway behind a car while barefoot.\", \" Another man is next door also shoveling snow.\", \" Two kids walk by and stop and start to talk to the old man.\", \" He shows them his feet soles and the talk some more.\"]}, \"v_A92F-HvSZx0\": {\"duration\": 61.7, \"timestamps\": [[0, 22.21], [17.89, 44.11], [36.09, 58.61]], \"sentences\": [\"Two men are seen standing on a stage with one playing the drums.\", \" The other plays an instrument beside him while they look into the crowd.\", \" The men continue playing and one stops to put sunglasses on.\"]}, \"v_LGt_KpgXymU\": {\"duration\": 225.14, \"timestamps\": [[3.38, 158.72], [60.79, 63.04], [178.99, 225.14]], \"sentences\": [\"A woman is playing a violin next to water.\", \" She starts walking through bushes next to the water.\", \" A woman is wearing a scarf and talking to the camera.\"]}, \"v_z8VqGGu5vPc\": {\"duration\": 215.04, \"timestamps\": [[0, 215.04], [0, 27.96], [29.03, 59.14], [60.21, 201.06], [202.14, 209.66], [210.74, 215.04]], \"sentences\": [\"A university swim team is doing a fund raiser washing cars.\", \"  A member explains what they are doing.\", \"  A man on the street with a poster sign tries to get customers.\", \"  Students are rinsing and washing cars.\", \" The students thank people in the video and to come support them.\", \" A black screen appears with a website address.\"]}, \"v_FLJzzot6F-s\": {\"duration\": 232.73, \"timestamps\": [[0, 9.31], [40.73, 111.71], [132.66, 232.73]], \"sentences\": [\"A car is driving down a winding road.\", \" A man is seen standing on a dirt ground, very still.\", \" He then moves slowly into several martial arts moves.\"]}, \"v_n25mDmcBC6E\": {\"duration\": 185.64, \"timestamps\": [[0, 64.05], [64.05, 133.66], [133.66, 185.64]], \"sentences\": [\"A woman with short hair and a black long sleeve turtle neck is standing in a room with a brown square wall behind her.\", \"She then begins playing the flute,moving her head up and down back and forth to show passion.\", \"The song keeps going and the lady keeps moving in the same way before she finally stands up from reading the music and looks out into the crowd.\"]}, \"v_Zl3YebXhXC0\": {\"duration\": 16.3, \"timestamps\": [[0, 2.53], [3.67, 11.9], [12.47, 16.3]], \"sentences\": [\"A young boy is in the driveway in front of his house.\", \" He is wearing a pair of headphones.\", \" He is using a leaf blower to blow leaves.\"]}, \"v_u-X4YO91V78\": {\"duration\": 168.87, \"timestamps\": [[0, 55.73], [33.77, 90.34], [74.3, 158.74]], \"sentences\": [\"A person is seen riding down the river on a tube with people following from behind.\", \" A man's face is seen close up speaking and shows more clips of people riding in tubes.\", \" A man is swimming in the water and shows people jumping in tubes and riding down together.\"]}, \"v_2lUqeOw61QY\": {\"duration\": 80.18, \"timestamps\": [[7.22, 72.56], [10.02, 72.56], [9.62, 72.56]], \"sentences\": [\"People are playing basketball on a court.\", \" They shoot the balls into the net.\", \" A man in a white shirt is standing on the court watching.\"]}, \"v_ClW3USojCoE\": {\"duration\": 176.1, \"timestamps\": [[0, 25.53], [37.86, 127.67], [140.88, 176.1]], \"sentences\": [\"A man is talking in front of a climbing wall.\", \" Another man talks about the process between shots.\", \" Several people are shown climbing the wall as they talk about it.\"]}, \"v_ZJGXWbt6cbU\": {\"duration\": 102.05, \"timestamps\": [[0, 97.97], [9.18, 97.97], [16.84, 20.92]], \"sentences\": [\"woman is standing in a room and is talking to the camera and leading a group of children leading them.\", \" kids are trying to do a choreography following the steps of the teacher.\", \" woman is sitting in chair talking to the camera.\"]}, \"v_6O5UcjQMwoQ\": {\"duration\": 36.42, \"timestamps\": [[0, 36.42], [0, 2], [19.49, 29.5], [31.32, 33.69]], \"sentences\": [\"A man plays a set of drums in a room with an ornate carpet.\", \" We see the person on the left briefly.\", \" We see the person on the left again.\", \" We look towards the carpet briefly.\"]}, \"v_moGDCWEoaK8\": {\"duration\": 95.16, \"timestamps\": [[0, 15.22], [17.13, 62.33], [63.28, 95.16]], \"sentences\": [\"A man is running across a field toward his teammates.\", \" The opposing team grabs him and fights for the ball.\", \" the crowd cheers as the teams fight over the goal.\"]}, \"v_P_zz379qSuo\": {\"duration\": 123.93, \"timestamps\": [[0, 6.2], [9.91, 17.35], [17.35, 89.85], [91.7, 107.81]], \"sentences\": [\"Two men are walking on a beach.\", \" A man puts up a slack line in between two trees.\", \" He gets on the slack line and starts doing tricks on it.\", \" The man is juggling balls on the beach.\"]}, \"v_70rKlFJdkKw\": {\"duration\": 147.66, \"timestamps\": [[0, 33.22], [33.22, 98.93], [93.76, 142.49]], \"sentences\": [\"A small group of kids are seen outside on a set of swings.\", \" Two girls push the others around and switch places in the swings.\", \" They continue to play on the swings together while riding and pushing one another.\"]}, \"v_Xj1R81SK_zs\": {\"duration\": 95.47999999999999, \"timestamps\": [[0, 36.76], [21.96, 69.7], [61.58, 95]], \"sentences\": [\"A person is seen throwing objects off the side of a pier.\", \" The person jumps down and begins riding on a board behind a shark.\", \" The person rides a wave and cheers with other people.\"]}, \"v_2VTEseqA5SA\": {\"duration\": 31.28, \"timestamps\": [[0, 7.19], [7.19, 18.14], [18.14, 31.28]], \"sentences\": [\"A man in a welding facility prepares to weld two pieces of metal together.\", \" He begins to the two pieces of metal together with a welding tool.\", \" Another man walks into the video as they are recording and walked out of the screen just as the man is finishing the welding job.\"]}, \"v_fjN9Qe237bw\": {\"duration\": 99.38, \"timestamps\": [[0, 15.9], [15.9, 40.75], [40.25, 63.6], [64.1, 93.42], [93.92, 99.38]], \"sentences\": [\"A set of pool balls are on the table as the camera begins lifting up to see the eyes of the shooters.\", \"An aerial view of the room then appears before a boy hits an orange solid ball into the corner pocket.\", \"The guy then begins to smile because the cue ball didn't enter.\", \"The opponent takes his turn but the stripe nine doesn't enter into the pocket and someone ends up pushing it in the hole.\", \"After the two take more turns,the guy bags up his pool stick and walks away from the table.\"]}, \"v_l-gHWS0oXiw\": {\"duration\": 106.63, \"timestamps\": [[0, 36.25], [27.19, 81.57], [65.58, 101.3]], \"sentences\": [\"A man is seen speaking to the camera while people work behind him.\", \" Another man speaks to the camera while people around them dig up the ground.\", \" More people speak as they clean up the area.\"]}, \"v_-DzTAnE1t3w\": {\"duration\": 149.84, \"timestamps\": [[10.49, 43.45], [41.95, 65.93], [63.68, 72.67], [77.92, 95.9]], \"sentences\": [\"People are putting together a Christmas tree.\", \" They put the lights onto the Christmas tree.\", \" They pour mugs of eggnog.\", \" They finish decorating the tree with bulbs.\"]}, \"v_C0gGikr-Dw8\": {\"duration\": 65.23, \"timestamps\": [[0, 8.15], [10.11, 54.79], [56.42, 65.23]], \"sentences\": [\"A large soccer ball shaped pinata is hanging from a string.\", \" A little boy swings a bat, hitting the ball over and over.\", \" The people are gathered around him, watching.\"]}, \"v_mio5dnRbo4w\": {\"duration\": 182.01, \"timestamps\": [[0.91, 180.19], [37.31, 66.43], [67.34, 174.73]], \"sentences\": [\"This man is washing the black car outdoors in the warm weather.\", \" First, the man turns his water sprayer on and he starts spraying all of the dirt off of the car.\", \" Then he sprays something on the car and sprays water on the car leaving it sparkly clean.\"]}, \"v_42XFIWVIWpw\": {\"duration\": 172.69, \"timestamps\": [[0, 169.23], [6.91, 154.55], [39.72, 69.94], [61.3, 91.52], [90.66, 132.11], [105.34, 144.19], [164.92, 172.69]], \"sentences\": [\"There's a ballerina gymnast dressed in a sparkly blue attire performing in a large gymnasium.\", \" She walks in the center of the gym on the wooden floor and begins by twirling her body while balancing a wand in her hand.\", \" She spins around on her toes and rotates as she throws the wand from one hand to another.\", \" She continues doing the ballerina moves while holding the wand in her hand.\", \" She juggles the wand between her hand and spins it in the air to catch it securely back in her hands while continuously twisting her body.\", \" She then twirls the wand on her neck while balancing it throughout her ballerina dance moves.\", \" After she finishes her performance, she walks off the gym floor.\"]}, \"v_AeefhelpxGA\": {\"duration\": 69.89, \"timestamps\": [[0, 69.89], [0.35, 69.89], [0, 69.54]], \"sentences\": [\"Two men are sitting down in chairs.\", \" They are playing a drum with their hands.\", \" People are walking behind them as they play.\"]}, \"v_1VBg21aaiKM\": {\"duration\": 97.13, \"timestamps\": [[5.34, 22.83], [23.31, 72.85], [72.85, 94.7]], \"sentences\": [\"A man talks, and then cuts the beard of a person with scissors.\", \" The man continues explaining and showing hot to cut the beard.\", \" At the end, the man cuts the mustache with a machine.\"]}, \"v_IqRN2sOQ7Mo\": {\"duration\": 187.71, \"timestamps\": [[0, 187.71], [14.08, 183.96], [69.45, 152.05], [25.34, 187.71], [183.96, 187.71]], \"sentences\": [\"People are on the beach enjoying a hot and sunny day.\", \" Many people are on the screen commenting on the events of the day.\", \" Kites are being flown high up in the air as several spectators look at all the kites.\", \" People are walking back and forth enjoying the show of the colorful flying objects.\", \" Children cheer at the end of the video as they are holding kites.\"]}, \"v_LZEiFNEAyyw\": {\"duration\": 127.83, \"timestamps\": [[11.5, 13.42], [13.42, 15.98], [17.9, 108.01]], \"sentences\": [\"A woman holds a lotion bottle in her hands.\", \" She pumps some of it onto her hands.\", \" She then rubs the lotion onto her face.\"]}, \"v_1buoiCgXG1Q\": {\"duration\": 22.83, \"timestamps\": [[0.34, 5.48], [4.79, 15.75], [16.32, 22.37]], \"sentences\": [\"A rough river is shown with a person riding off in the distance.\", \" The person is seen riding in a kayak closer to the camera.\", \" He flips over the kayak and rides down the river.\"]}, \"v_NK5FWZ2BOQs\": {\"duration\": 92.78999999999999, \"timestamps\": [[0, 7.42], [6.5, 50.57], [47.79, 55.21]], \"sentences\": [\"A man and a dog walk onto a field.\", \" A man throws a frisbee and the dog chases after it.\", \" The dog brings the frisbee back to the man.\"]}, \"v_ulV37d5wFaw\": {\"duration\": 202.04, \"timestamps\": [[0, 202.04], [5.05, 7.07], [36.37, 39.4]], \"sentences\": [\"A young woman talks to the camera while working on her hair and occasionally talking.\", \" The young woman holds some sort of object up to the camera.\", \" The scene cuts to the woman with part of her hair clipped up at the top of her hair.\"]}, \"v_I3BWhaDRxGk\": {\"duration\": 34.95, \"timestamps\": [[0, 8.39], [8.74, 26.04], [27.26, 34.95]], \"sentences\": [\"A group of people are gathered in a field.\", \" They are engaged in a game of tug of war.\", \" They pull hard on the rope trying to win.\"]}, \"v_CRzaKuaCXr8\": {\"duration\": 127.52, \"timestamps\": [[0, 31.24], [31.88, 79.06], [79.7, 89.27], [89.9, 127.52]], \"sentences\": [\"A couple dance holding hands in a party while people watch them.\", \" A woman turns around holding the hand of a juvenile.\", \" Then, the couple dance holding each other and turning around.\", \"  Also, the couple dance holding both hands or one hand hand to spin the woman.\"]}, \"v_QN6YFgrx_Ig\": {\"duration\": 158.69, \"timestamps\": [[0, 29.36], [12.69, 49.19], [35.7, 76.96], [70.62, 149.96]], \"sentences\": [\"A man in a red track suit crouches.\", \" He holds up his arms in a specific manner.\", \" He then sits on the ground and lifts his legs.\", \" He then goes through several positions.\"]}, \"v_oobYvNJU5ko\": {\"duration\": 70.31, \"timestamps\": [[0, 20.39], [15.12, 48.16], [48.87, 70.31]], \"sentences\": [\"a man is standing and talking.\", \" the man then begins fluffing a woman's hair.\", \" the man holds a bottle to the camera and begins styling the woman's hair.\"]}, \"v_wnsy_i-IXpM\": {\"duration\": 146.86, \"timestamps\": [[0, 21.29], [7.34, 21.29], [7.34, 34.51], [19.09, 146.86]], \"sentences\": [\"A spaceship is crashed in the snow.\", \" Several snow troopers are after the pilot.\", \" The pilot gets on a board and rides it down.\", \" The snow troopers chase him down the mountain.\"]}, \"v_dEG-OgH9zmU\": {\"duration\": 94.32, \"timestamps\": [[0, 12.73], [18.86, 60.84], [69.33, 94.32]], \"sentences\": [\"A man is under water in a pool.\", \" He is signaling via hand signs about his gear.\", \" He continues speaking and demonstrating using sign language.\"]}, \"v_3dAJEnMn6QA\": {\"duration\": 184.25, \"timestamps\": [[0, 56.2], [44.22, 105.02], [87.52, 178.72]], \"sentences\": [\"A large sand castle is shown with a girl laying down sand.\", \" People walk in and out frame as the girl continues to work.\", \" The girl lays out more sand as the camera pans around the beach.\"]}, \"v_6hu3V1PS4vM\": {\"duration\": 170.71, \"timestamps\": [[0, 7.68], [7.68, 121.21], [121.21, 140.84], [140.84, 157.91], [157.91, 161.32], [161.32, 170.71]], \"sentences\": [\"A closeup of a brunette girl is standing outside and talking to the camera and the white words at the bottom of the screen say \\\"Jamie Trevina #14 Helix Charter High School\\\".\", \"Various clips of her playing field hockey on a large grassy field play, and she's hitting the ball with her stick in different games against other girls, or just practicing alone hitting the balls.\", \"While the videos are playing a smaller video of a woman talking plays in the bottom right of the screen and white words on the small screen say the woman is \\\"Coach Cheryl Tyler Helix Field Hockey\\\".\", \"In the same small screen on the right a man is now talking while the video plays and the white words say he is \\\"Asst Coach Aceves Helix Field Hockey\\\".\", \"A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats written in white on the left side of the screen.\", \" Another black screen appears and it includes 3 small pictures of the same girl, and contact information written in white at the bottom of the screen.\"]}, \"v_8tlLBffNjf8\": {\"duration\": 32.56, \"timestamps\": [[0, 7.81], [8.79, 27.67], [28.81, 32.56]], \"sentences\": [\"A man is standing inside a house.\", \" He is adorning a christmas tree with ornaments.\", \" He applies icycle decorations by throwing them at the tree.\"]}, \"v_ScKbopywnvM\": {\"duration\": 51.6, \"timestamps\": [[0, 6.71], [6.71, 39.73], [39.47, 51.6]], \"sentences\": [\"Two males are outside at a kids park with a red slack line attached to the equipment at the park.\", \"The young man begins to tight rope the line while bare foot and wobbling across the sand.\", \"On the other end is a female who is also attempting to cross the line and they are about to meet each other on the rope.\"]}, \"v_87hsTxVtn-A\": {\"duration\": 235.89, \"timestamps\": [[0, 22.41], [24.77, 121.48], [129.74, 235.89]], \"sentences\": [\"A woman in belly dancing gear is standing on a stage.\", \" She dances for the audience, swerving and gyrating.\", \" She continues dancing as she finishes her performance.\"]}, \"v_MjRsR_7ECi8\": {\"duration\": 30.14, \"timestamps\": [[0, 5.12], [5.73, 12.81], [12.06, 23.51]], \"sentences\": [\"A woman is seen opening the door to a man holding flowers and falling.\", \" A man kisses a woman on the head and then speaks to another woman.\", \" In the end a woman is taking a drink from a glass.\"]}, \"v_u-yFENQQxAo\": {\"duration\": 30.16, \"timestamps\": [[0, 5.13], [7.09, 21.72], [23.07, 30.16]], \"sentences\": [\"A boy and girl are raking leaves in the yard.\", \" They use their own rakes, moving them around.\", \" They stack them on the back of their play cars and deposit them in piles.\"]}, \"v_NIJTz15ikgA\": {\"duration\": 136.46, \"timestamps\": [[0, 15.69], [32.75, 87.34], [102.35, 136.46]], \"sentences\": [\"A girl is seated on a couch while another girl prepares her makeup.\", \" The woman dabs powder around her face.\", \" She then spreads it evenly across her cheeks and chin.\"]}, \"v_lOCw2uO3UK8\": {\"duration\": 172.2, \"timestamps\": [[0, 172.2], [0, 11.19], [11.19, 22.39], [23.25, 152.4], [152.4, 172.2]], \"sentences\": [\"A young man does warm up exercises before playing a solo game of tennis in a gym room using the wall as an opponent before finally collapsing on the gym floor in exhaustion and then rising again.\", \"  A young man sits on a hardwood floor of a gym room and does warm up exercises including toe touches.\", \"  The man then gets up and does standing warm up exercises including stretching and bending at the knees.\", \"  the man then begins to play solo tennis using the wall as an opponent and hitting the ball with the racket against the wall back and forth.\", \"  The man then collapses on the floor in exhaustion as the ball bounces around on the floor before he gets up again.\"]}, \"v_noKDv_a8u-Y\": {\"duration\": 209.77, \"timestamps\": [[0, 26.22], [33.56, 132.16], [145.79, 209.77]], \"sentences\": [\"A man is seated in front of a velvet blanket.\", \" He is playing a guitar on his lap.\", \" He continues playing for the remainder of the show.\"]}, \"v_Hi0L9rcsXUI\": {\"duration\": 30.0, \"timestamps\": [[0, 5.85], [6.45, 22.35], [23.4, 30]], \"sentences\": [\"A young girl mounts a high beam.\", \" She spins and flips around the bars several times.\", \" She dismounts and riases her arms in the air.\"]}, \"v_TjLoGNBzNRA\": {\"duration\": 110.32, \"timestamps\": [[8.27, 12.69], [12.69, 29.79], [29.79, 80.53], [79.98, 90.46], [90.46, 94.32], [94.87, 98.18], [98.74, 106.46]], \"sentences\": [\"A woman rubs a wall surface.\", \" The woman peels something apart while kneeing on the ground.\", \" The woman attaches wallpaper to the wall surface.\", \" The woman trims excess wallpaper from the wall.\", \" The woman stands next to the wallpaper and gives a thumbs up sign.\", \" The woman peels the wallpaper away from the wall.\", \" The woman sits by the wallpaper and gives the thumbs up sign.\"]}, \"v_NjTk2naIaac\": {\"duration\": 234.99, \"timestamps\": [[0, 48.17], [49.35, 152.74], [153.92, 234.99]], \"sentences\": [\"a group of adults are sitting in bumper cars.\", \" the cars all start at the same time.\", \" the adults then begin to chase and bump each other.\"]}, \"v_lVOBMs6op7o\": {\"duration\": 11.01, \"timestamps\": [[0, 11.01], [0, 10.79], [8.86, 11.01]], \"sentences\": [\"man is holding a cup talking to other people in a classroom.\", \" two men are sitting on a bench talking to the camera.\", \" woman is in the class room watching the boys talking.\"]}, \"v_j3QSVh_AhDc\": {\"duration\": 231.69, \"timestamps\": [[0, 47.5], [50.97, 140.17], [154.07, 231.69]], \"sentences\": [\"a group is white water rafting.\", \" a person is showing stuck in between rocks.\", \" the person's raft continuously flips upside down in the water.\"]}, \"v_nc4twXSueZo\": {\"duration\": 63.69, \"timestamps\": [[0, 63.06], [0, 62.42], [0, 62.1]], \"sentences\": [\"A kid is wearing boxing gloves.\", \" There is a man wearing a white shirt kneeling down in front of him.\", \"  He is practicing boxing with the man.\"]}, \"v_j73Wh1olDsA\": {\"duration\": 3.07, \"timestamps\": [[0, 0.8], [0.75, 1.73], [1.73, 3.07]], \"sentences\": [\"A hand throws a dart at a dartboard.\", \" The hand aims a second dart.\", \" The hand throws the second dart at the dartboard.\"]}, \"v_Xf0c2abFH3Y\": {\"duration\": 93.11, \"timestamps\": [[10.24, 10.71], [31.66, 40.04], [48.42, 57.26]], \"sentences\": [\"Paint is shown on an easel.\", \" A person is mixing paint in a jar.\", \" They begin to paint on a canvas.\"]}, \"v_83oa1S0x9zI\": {\"duration\": 149.75, \"timestamps\": [[0, 149.75], [11.98, 149.75], [54.66, 149.75], [74.87, 149.75]], \"sentences\": [\"Several people in white uniforms stand on a field.\", \" They run around it holding bats.\", \" They hit a ball around the field.\", \" They stand and talk to each other.\"]}, \"v_lfllVwgOWBk\": {\"duration\": 68.55, \"timestamps\": [[1.03, 13.37], [13.02, 44.9], [39.76, 65.8]], \"sentences\": [\"A man and woman are seen talking that leads into two women talking.\", \" The man walks in and out of frame while the woman brushes the other's hair.\", \" The man speaks angrily with them and walks out of frame.\"]}, \"v_1dvrNvxw43Q\": {\"duration\": 47.32, \"timestamps\": [[0, 9.94], [5.68, 28.63], [26.97, 47.32]], \"sentences\": [\"a man is knelling down on snow covered ice.\", \" the man points to a whole in the ice.\", \" the man then retrieves a line from the line in the ice exposing a caught fish.\"]}, \"v_XvFv0n2mJUk\": {\"duration\": 9.85, \"timestamps\": [[0, 1.87], [1.87, 4.14], [4.18, 9.85]], \"sentences\": [\"Two men stand at the end of a mat one kneeling over with his head between the other  mans knees.\", \" The standing man flips the kneeling man into the air and onto his shoulders.\", \"The standing man turns and throws the man on the mat behind them and backs up.\"]}, \"v_SIf4H2dqbpg\": {\"duration\": 100.57, \"timestamps\": [[0, 16.59], [18.6, 62.35], [62.35, 99.56]], \"sentences\": [\"Two people are shown decorating a christmas tree followed by several others standing around.\", \" One man puts on a jacket on while the camera pans around to more people decorating.\", \" Close ups of decorations are shown as well as close ups of people.\"]}, \"v_9L-aeZsgwZs\": {\"duration\": 177.77, \"timestamps\": [[0, 33.78], [41.78, 135.11], [140.44, 177.77]], \"sentences\": [\"a group is gathered on a field in front of a crowd.\", \" They are leaning back, playing a game of tug of war.\", \" They hold their position, refusing to let go.\"]}, \"v_Sjx7K9Ybx9Q\": {\"duration\": 18.32, \"timestamps\": [[0, 16.12], [0, 15.85], [16.76, 18.32]], \"sentences\": [\"A man is pushing a lawn mower through the grass.\", \" A child is standing next to him pushing a toy lawn mower.\", \" They give each other a high five.\"]}, \"v_s2ra7HNzIF0\": {\"duration\": 60.58, \"timestamps\": [[0, 14.84], [13.93, 32.41], [31.2, 60.58]], \"sentences\": [\"a woman is holding a baby.\", \" the woman is licking an ice cream cone.\", \" the woman feeds the ice cream to the baby.\"]}, \"v_8itO1pQI9ww\": {\"duration\": 12.8, \"timestamps\": [[0, 1.66], [0, 9.21], [10.81, 12.8]], \"sentences\": [\"Man wearing a white cap is guzzling beer.\", \"  There are balloons in the background.\", \"  A man is wearing a black shirt.\"]}, \"v_n3MGZcDHr-U\": {\"duration\": 195.1, \"timestamps\": [[0, 8.78], [8.78, 18.53], [18.53, 181.44], [182.41, 186.31]], \"sentences\": [\"A woman with a very curly hair is drying her hair with a white towel while instructions are keep on popping.\", \" She showed a bottle and spray it on her hair.\", \"She shows a blow dryer and starts assembling it, pointing something on the handle and starts drying the hair with instruction popping above her video.\", \" Information of her  channel and social media account are shown.\"]}, \"v_2tO1ApNwXpQ\": {\"duration\": 111.83, \"timestamps\": [[0, 111.83], [3.35, 111.83], [59.27, 67.1]], \"sentences\": [\"A man is sitting on a black stool.\", \" He is shining the shoes of someone sitting on a chair in front of him.\", \" A sign next to him is shown.\"]}, \"v_q5tYHwZLRYU\": {\"duration\": 24.08, \"timestamps\": [[0, 4.82], [4.45, 14.81], [14.81, 24.08]], \"sentences\": [\"a boy holds an object and begins running with it.\", \" the boy comes to a stop and throws the object across a grass filled park.\", \" people stand by and watch the object soar across the park.\"]}, \"v_IdEXShfpQHs\": {\"duration\": 33.62, \"timestamps\": [[0, 8.07], [6.72, 23.87], [21.35, 32.45]], \"sentences\": [\"A close up of a dog is seen with a woman sitting in a chair.\", \" The woman begins brushing the dog while he shows it's teeth.\", \" The woman continues brushing and the dog jumps up.\"]}, \"v_-Lxv663IEaI\": {\"duration\": 73.85, \"timestamps\": [[0, 29.91], [29.17, 69.42], [69.42, 73.85]], \"sentences\": [\"Two women,a young boy,and a teenage male are riding horses down a dirt path looking at the scenery surrounding them.\", \"To the left of them, there is a barbwire fence with two goats on the side,a playground,and several people sitting under the hut.\", \"As they continue their expedition,more people join them and more buildings of the village become vivid.\"]}, \"v_ruNII4WvE3k\": {\"duration\": 162.19, \"timestamps\": [[0, 42.98], [34.06, 114.35], [98.13, 157.33]], \"sentences\": [\"A small dog is seen standing on a table with a woman cutting it's fur.\", \" A person stands behind as the woman continues to groom the dog.\", \" She continuously cuts the dogs fur while the man speaks to the camera.\"]}, \"v_ILF-93buuSY\": {\"duration\": 66.94, \"timestamps\": [[0, 66.94], [0, 62.26], [59.91, 62.26]], \"sentences\": [\"A man is driving a large red tractor.\", \" He is mowing weeds down in a field.\", \" A white barn is shown.\"]}, \"v__8aVDfNQtq0\": {\"duration\": 122.23, \"timestamps\": [[0, 12.22], [18.95, 70.28], [12.22, 97.17], [97.17, 110.01], [110.01, 122.23]], \"sentences\": [\"An introduction comes onto the screen for a video about beach soccer.\", \" Several people are shown playing soccer on the beach and having a great time.\", \" People are shown doing soccer ball tricks with one another as well as mingling and watching the competition.\", \" The players are shown receiving several different awards as well.\", \" The video ends with the closing credits shown across the screen.\"]}, \"v_ubVPP8BVcfs\": {\"duration\": 67.39, \"timestamps\": [[0, 7.41], [7.41, 46.83], [46.83, 65.03], [65.03, 67.39]], \"sentences\": [\"Several people are shown in canoe riding around in the water and having a great time.\", \" Then, they are some learning different methods of canoeing and how to maneuver in the water.\", \" Next, they are shown jumping into the water and playing around.\", \" The video ends with the closing graphics and captions shown on the screen.\"]}, \"v_7o7hL0VccJQ\": {\"duration\": 93.03, \"timestamps\": [[0, 93.03], [53.49, 54.89], [79.08, 79.54], [87.92, 93.03]], \"sentences\": [\"A man on the street corner outside a venue, standing on stilts plays a bagpipe as people go by.\", \"  Someone in a blue jacket comes by and leaves a tip in a bucket.\", \"  A person in a hat leaves a tip.\", \"  The person filming zooms in on a sign.\"]}, \"v_oY22VETX20w\": {\"duration\": 103.19, \"timestamps\": [[0, 103.19], [31.47, 101.64], [0, 101.64]], \"sentences\": [\"man is tattoing a woman's leg thaat is sitting on a chair.\", \" woman in the room behind the tattoo artist watching them.\", \" woman is sitting on a tattoo chair and a man is in frot of her doing a tattoo on her leg.\"]}, \"v_NGiDXRIx1gk\": {\"duration\": 175.45, \"timestamps\": [[11.4, 175.45], [4.39, 175.45], [0, 175.45]], \"sentences\": [\"Two men are engaging in a fencing match inside of a fencing gym.\", \" While they are fencing, a referee is directing them and overseeing the match.\", \" At the same time several people are coming and going in the background.\"]}, \"v_vrwJEvpeHyM\": {\"duration\": 134.75, \"timestamps\": [[0, 30.32], [31.67, 91.63], [80.17, 130.03]], \"sentences\": [\"An athlete is seen spinning in circles and throwing a discuss.\", \" Several more people are shown afterwards throwing a discuss off in the distance.\", \" More people take their turn throwing while others watch.\"]}, \"v_7xpkFhlxo2Q\": {\"duration\": 186.06, \"timestamps\": [[0, 11.16], [11.16, 53.96], [53.03, 127.45], [127.45, 186.06]], \"sentences\": [\"Two men are in a room with three white walls and a glass wall as the fourth.\", \"In the inside,they begin hitting a ball back and forth with a tennis racket.\", \"The game never goes for very long because it keeps rolling on the floor and they have to stop and start over constantly.\", \"Both of the guys continue hitting the ball and the camera pans the gym and a game of indoor volleyball is taking place.\"]}, \"v_jdz4PzF1pO0\": {\"duration\": 191.22, \"timestamps\": [[0, 21.99], [22.95, 126.2], [124.29, 173.05]], \"sentences\": [\"A woman is seen kicking a bag while another man watches on the side.\", \" Several clips are then shown of a man playing a game with others.\", \" He is kissed by many people as well as kicked for when he loses the game.\"]}, \"v_Fmr6mPyvE-g\": {\"duration\": 102.66, \"timestamps\": [[0, 29.77], [29.77, 72.89], [70.83, 100.09]], \"sentences\": [\"A small child is seen climbing on a playground and moving to monkey bars.\", \" She climbs across the monkey bars and is shown climbing across another set.\", \" She continues climbing on monkey bars and smiling to the camera.\"]}, \"v_Sd08rsPTroE\": {\"duration\": 234.2, \"timestamps\": [[0, 51.52], [55.04, 161.6], [145.2, 218.97]], \"sentences\": [\"A man is seen speaking to the camera and holding up various tools.\", \" He is then seen sitting behind a drum set points to drums  and begins playing.\", \" He pauses to speak to the camera as well as play more.\"]}, \"v_yeWCfvmeUvM\": {\"duration\": 56.15, \"timestamps\": [[0, 11.23], [13.19, 37.06], [37.06, 56.15]], \"sentences\": [\"four girls are swinging on a swing set.\", \" then the girls jump and do cartwheels.\", \" the girls are then seen using a seesaw.\"]}, \"v_hT_4wWPNYxo\": {\"duration\": 166.07, \"timestamps\": [[0, 7.47], [7.47, 166.07], [0, 166.07]], \"sentences\": [\"woman is walking on a backyard on a sunny day wearing a bathsuit and holding a hoola hoop.\", \" the girl start doing a dance with the hoola hoop.\", \" woman is in a backyard in a sunni day and is doing a choreography with a hoola hoop.\"]}, \"v_3HYQV_zu2RA\": {\"duration\": 152.21, \"timestamps\": [[0, 32.72], [33.49, 42.62], [43.38, 129.38], [129.38, 149.16]], \"sentences\": [\" A man stands next a young man sitting on a rowing machine while talking.\", \" The man instructs the young man to put the feet on the machine.\", \" Then, the man shows how the young man pulls the handle until the chest while he continues talking.\", \" The man continues talking next the machine.\"]}, \"v_E15Q3Z9J-Zg\": {\"duration\": 130.47, \"timestamps\": [[0.65, 3.26], [3.26, 12.39], [12.39, 115.47], [115.47, 123.95]], \"sentences\": [\"A woman exercises on a stepping sort of machine.\", \" The woman stands next to the machine and another woman while talking to the camera.\", \" The second woman talks to and instructs the first woman while the first woman exercises on the machine, interspersed with quick cuts of the woman exercising alone.\", \" The two women stand next to the machine and talk to each  other and the camera.\"]}, \"v_QacSWR8c-8Y\": {\"duration\": 16.93, \"timestamps\": [[0, 4.23], [4.32, 10.33], [10.33, 15.07], [15.57, 16.93]], \"sentences\": [\"A female athlete with a Russian uniform is standing outside of a field on a blue track.\", \"The lady then takes off running while holding a pole in her hand.\", \"When ready,the lady starts to pole vault and clears the height and lands on the mat.\", \"Once complete,she jumps up and down,happy that her jump was successful as the crowd begins to cheer for her.\"]}, \"v_IZNrdIkMCoc\": {\"duration\": 89.65, \"timestamps\": [[0.45, 7.62], [0.9, 89.2], [28.69, 34.52], [51.1, 51.55]], \"sentences\": [\"A guy is bending over and touching the floor.\", \" The guy is doing karate moves on a tiled floor.\", \" The guy back flips and lands on his feet.\", \"  The guy stands on one hand.\"]}, \"v_xynscQyItDQ\": {\"duration\": 67.57, \"timestamps\": [[0, 9.12], [11.15, 50.68], [53.04, 67.57]], \"sentences\": [\"A man is seated inside a bedroom.\", \" He unties a shoe in his lap.\", \" He then demonstrates how to lace up a pair of shoes.\"]}, \"v_lAsPxkZD6Xc\": {\"duration\": 132.17, \"timestamps\": [[10.57, 81.94], [10.57, 83.93], [84.59, 108.38]], \"sentences\": [\" A man is laying back in a chair.\", \" A person is tattooing him on his rib cage.\", \" He stands up to show the tattoo.\"]}, \"v_4zLTW7lT3fs\": {\"duration\": 106.35, \"timestamps\": [[0, 20.21], [18.61, 57.43], [58.49, 103.69]], \"sentences\": [\"Several shots are shown of people warming up that leads into them lifting weights.\", \" A man is seen speaking to the camera while more people lift weights.\", \" Several others are see speaking as well as more weight lifting.\"]}, \"v_MzNI-qdQfQc\": {\"duration\": 107.02000000000001, \"timestamps\": [[0, 107.02], [5.89, 100.6], [94.71, 100.6], [94.71, 107.02]], \"sentences\": [\"A man is holding a rubik's cube.\", \" He begins to twist it around.\", \" He then solves the cube.\", \" He the holds it up.\"]}, \"v_-l18hJp8ShE\": {\"duration\": 95.77000000000001, \"timestamps\": [[0, 2.87], [2.87, 12.45], [12.45, 19.15], [19.15, 34.48], [34.48, 58.42], [58.42, 89.55], [89.55, 92.9], [92.9, 95.77]], \"sentences\": [\"A black intro screen quickly appears and light blue letters are in the middle that look like \\\"dji\\\".\", \"A close up of a blonde curly haired boy is shown, then an aerial shot from above that includes a very large dirt track and the words on the bottom right of the screen say \\\"CHANEY RANCH MOTORCROSS CALIFORNIA,USA\\\".\", \"The blonde curly haired boy is shown again talking,then getting ready as he secures his protective gear onto his body and the white words on the screen say \\\"ROOKIE WHITE PROFESSIONAL MOTORCROSS RACER\\\".\", \"A drone is shown as the boy takes off on his dirt bike and multiple various clips of the boy riding his bike play as he's going around the track very fast, or jumping with his bike and the drone can be seen in the sky.\", \"The drone is shown sitting on the dirt track,the boy is no longer riding his dirt bike and he's now on the dirt track flying his drone.\", \" The boy is now back on his dirt bike and once again the drone can be seen flying along.\", \"A close up of the drone flying in the sky is shown and white words appear on the screen that say \\\"PHANTOM 2 VISION+ LET YOUR IMAGINATION TAKE FLIGHT\\\".\", \" A black screen appears and once again the light blue letters appear that look like \\\"dji\\\".\"]}, \"v_isUCIXYjOXE\": {\"duration\": 45.05, \"timestamps\": [[0, 10.81], [9.46, 28.15], [25.9, 44.37]], \"sentences\": [\"Two men are seen speaking to one another with one walking away.\", \" The men are seen playing pool with one hitting a ball.\", \" He knocks in several balls and hands the stick to a man and walks away.\"]}, \"v_TdqEtrrPX_Q\": {\"duration\": 27.21, \"timestamps\": [[0, 27.21], [4.22, 8.84], [8.3, 27.21]], \"sentences\": [\"The photographer is lying on his side taking picture of the man lying on his back.\", \" The man in red jacket threw the frisbee up in the air.\", \" The dog jumped over the man in red and caught the frisbee.\"]}, \"v_i4SvqrGYH-Q\": {\"duration\": 172.07999999999998, \"timestamps\": [[0, 45.6], [45.6, 125.62], [128.2, 168.64]], \"sentences\": [\"A man is seen standing behind a pong table throwing a ball to the other side.\", \" He speaks to another man standing next to him as he continue playing.\", \" The man throws several more balls while others watch on the side as well as showing a close up of him and a dog.\"]}, \"v_JQpx7CcTstU\": {\"duration\": 49.88, \"timestamps\": [[0, 7.23], [9.73, 34.17], [36.66, 49.88]], \"sentences\": [\"A person is tubing down a snowy hill.\", \" Several other people wait their turn at the top of the hill.\", \" One woman goes down the hill extremely fast, picking up speed as she goes.\"]}, \"v_FYhB2rQwfCc\": {\"duration\": 103.61, \"timestamps\": [[13.47, 99.46], [26.42, 27.97], [35.74, 48.18]], \"sentences\": [\"Two people are playing wall ball in a room.\", \" A woman drops her racket onto the ground.\", \" The man and woman begin to stretch.\"]}, \"v_0QNcOwi5bu8\": {\"duration\": 33.67, \"timestamps\": [[0, 8.59], [1.68, 6.57], [11.11, 23.4], [24.24, 33.67]], \"sentences\": [\"A room with tan walls is seen.\", \" The camera pans up and shows different parts of the ceiling.\", \" There is a man in the corner who is smoothing material out on the ceiling above with a trowel.\", \" He scrapes the excess on a board he is holding and then smooths out more material on the ceiling.\"]}, \"v_Mno1JV_6y_M\": {\"duration\": 183.35, \"timestamps\": [[0, 20.17], [20.17, 100.84], [100.84, 183.35]], \"sentences\": [\"woman is standing talking to the camera in a laundry room.\", \" the woman holds a small cloth and roll it and put it on the sleeve and is ironing the shirt cuffs.\", \"then do the same with the other sleeve while keeps talking to the camera.\"]}, \"v_pQsk5XPTLoY\": {\"duration\": 13.47, \"timestamps\": [[0, 13.47], [0, 2.76], [1.95, 13.47]], \"sentences\": [\"a tv is playing in a room.\", \" on the the tv two wrestlers are standing in a ring.\", \" one wrestler throw the other wrestler down and wins the match.\"]}, \"v_POYg9zju63U\": {\"duration\": 148.93, \"timestamps\": [[0, 40.21], [54.36, 105], [132.55, 134.78]], \"sentences\": [\"A woman is raking leaves into a pile.\", \" Another woman is raking leaves away from a street.\", \" A man flips the camera around and talks.\"]}, \"v_6UqWORrn3KI\": {\"duration\": 59.05, \"timestamps\": [[0, 51.67], [3.25, 6.79], [5.61, 8.86], [8.27, 17.71], [16.24, 27.16], [26.87, 30.41], [29.23, 37.2], [35.72, 38.09], [37.79, 44.29], [43.4, 59.05]], \"sentences\": [\"There's a young man and a young woman doing a tutorial on how to make homemade lemonade in their kitchen.\", \" The ingredients used for the lemonade are placed on the stove top.\", \" A water jug, five lemons, some sugar and a boiling pot are placed on the stove top.\", \" The man takes spoons full of sugar and adds it to boiling water.\", \" Then the woman heats the solution on the stove as she gently stirs it with a plastic spoon.\", \" Then she adds the mixture to the pitcher.\", \" Then the man juices some lemons in a juicer.\", \" He then adds one cup of the lemon juice to the pitcher of sugar solution.\", \" Then he fills the pitcher with some tap water and pours the lemonade in two glasses.\", \" Both the man and the woman give each other high fives as they take a sip out of their lemonade glasses and nod their heads as they enjoy the drink.\"]}, \"v_lU-PEm5L5EU\": {\"duration\": 103.89, \"timestamps\": [[0, 15.06], [12.99, 40.52], [12.99, 103.89], [45.19, 103.89]], \"sentences\": [\"A woman is standing in a gym.\", \" She is then shown on a stationary bike.\", \" She is leading a classroom doing the same.\", \" She is then shown lifting weights.\"]}, \"v_mpFNy97oV0c\": {\"duration\": 234.1, \"timestamps\": [[12.88, 19.9], [43.31, 159.19], [158.02, 181.43], [188.45, 194.31]], \"sentences\": [\"A woman is holding a teddy bear standing behind a table.\", \" She folds wrapping paper into a bag.\", \" She puts the teddy bear inside the bag and seals it with tape.\", \" She puts curling ribbon to the present.\"]}, \"v_00SfeRtiM2o\": {\"duration\": 175.87, \"timestamps\": [[0, 29.9], [30.78, 55.4], [56.28, 76.5], [76.5, 101.12], [102, 171.47]], \"sentences\": [\"A woman sitting on a bench talks for a while.\", \" A little boy enters a rental store and the lady in the counter talk to him about the snowboard she is holding.\", \" She demonstrates how to buckle the snowboard to the little boy.\", \" The little boy and a woman are walking in the snow, then wear the snowboards to the little boy after telling him some information he needs to know about the snow board.\", \" They boy starts riding the snow board while the woman shows her what to do.\"]}, \"v_WRX7aUqgZJ0\": {\"duration\": 46.6, \"timestamps\": [[0.23, 11.88], [14.68, 33.09], [34.49, 46.37]], \"sentences\": [\"A person is seen rubbing down wax on an item in front of the ski.\", \" The person uses a tool along the ski to wax it.\", \" He continues waxing the board and holds up the tool.\"]}, \"v_dvHj856L8zY\": {\"duration\": 126.68, \"timestamps\": [[0, 20.27], [20.27, 60.17], [60.17, 89.94], [89.94, 126.68]], \"sentences\": [\"Two people are riding horses down a trial the woman is in front.\", \" They start off at a slow pace and then the woman on the white horse begins to go faster and the person behind her follows suit.\", \" They are going down a nature trail of some sort, the leaves have fallen completely off the trees.\", \" It's a pretty nice day out and the woman starts to slow down a bit at the end of the trail and the rider behind her starts to catch up.\"]}, \"v_6VygM9-XgAk\": {\"duration\": 172.82999999999998, \"timestamps\": [[0, 60.49], [60.49, 106.29], [106.29, 145.17], [144.31, 172.83]], \"sentences\": [\"As the words Drift innovation float  across the screen,a back drop of a male skiing is visible behind it.\", \"Two people then appear on top of a large mountain of snow with two snow mobiles.\", \"The first person takes off while the guy with the camera trails behind them.\", \"Finally,the guy behind the camera appears and starts to talk and an advertisement of the camera he is using appears.\"]}, \"v_5rw6n16ILgY\": {\"duration\": 155.57, \"timestamps\": [[0, 26.45], [29.56, 107.35], [107.35, 155.57]], \"sentences\": [\"four men sit at a table and give commentary.\", \" a woman then runs across a track and jumps over a beam.\", \" a second woman then runs and jumps over a different beam.\"]}, \"v_oA8ZUG1y4Lc\": {\"duration\": 113.08, \"timestamps\": [[1.7, 43.54], [33.92, 83.68], [75.76, 107.99]], \"sentences\": [\"A woman is seen dancing around a floor with a man.\", \" Another woman watches on the side as the two continue to dance with one another.\", \" The dance all around the room while smiling and laughing to one another.\"]}, \"v_sfCfrWpHpu0\": {\"duration\": 154.69, \"timestamps\": [[0, 14.7], [23.2, 92.82], [115.25, 154.69]], \"sentences\": [\"A little girl is sitting in a shopping cart.\", \" She is making faces while holding an ice cream cone.\", \" She looks away and licks the cone.\"]}, \"v_NzxZdC-63LE\": {\"duration\": 187.85, \"timestamps\": [[0, 187.85], [10.33, 183.15], [69.5, 183.15]], \"sentences\": [\"The man is flipping and doing tumbling in the gym.\", \" The athletes continue to flip up in the air while audiences are watching.\", \"  The people are doing back flips in the different places.\"]}, \"v_lETAKUG4pQw\": {\"duration\": 66.71, \"timestamps\": [[0, 2], [2, 14.34], [14.34, 39.36], [39.69, 66.71]], \"sentences\": [\"A cat with glowing eyes comes up the stairs.\", \" The cat walks onto a man on the couch.\", \" The man picks up the cat and clips it's fingernails.\", \" The cat jumps up and the man pets the cat.\"]}, \"v_zLZTqSaGxJo\": {\"duration\": 136.6, \"timestamps\": [[6.15, 8.88], [20.49, 51.23], [49.86, 116.11]], \"sentences\": [\"People are standing on a balcony.\", \" Men are standing on a field of grass.\", \" They begin to play a game on the field.\"]}, \"v_bEcSrzeCGyA\": {\"duration\": 237.22, \"timestamps\": [[0, 37.95], [46.26, 160.12], [144.7, 228.91]], \"sentences\": [\"A man is seen speaking to the camera and holding a racket.\", \" He is then shown hitting a ping pong ball and moving around a table.\", \" He continues to speak and hit the ball back and fourth with another man playing against him.\"]}, \"v_shBiO7aGy6k\": {\"duration\": 159.38, \"timestamps\": [[0, 19.92], [28.69, 94.83], [98.82, 159.38]], \"sentences\": [\"A man is standing inside a gym.\", \" He is talking to the camera in between doing stunts on a tightrope.\", \" He sits, balances, flips and spins on the tightrope.\"]}, \"v_jA05XIX7Yh0\": {\"duration\": 106.2, \"timestamps\": [[0, 105.14], [6.9, 105.14], [15.93, 105.14], [97.7, 105.14]], \"sentences\": [\"Waves are shown crashing against the beach.\", \" Several surfers are surfing the waves.\", \" The waves get bigger and bigger.\", \" The scene then fades out to black.\"]}, \"v_V4wwal5FQZE\": {\"duration\": 155.34, \"timestamps\": [[0, 24.85], [24.08, 38.06], [38.06, 48.93], [48.93, 83.88], [83.88, 155.34]], \"sentences\": [\"A woman wearing a white blouse vacuums the floor.\", \"A man wearing a green shirt vacuums the wooden floor.\", \"A lady wearing a light blue blouse walks down the stairs carrying a vacuum hose and storing it in the closet.\", \"The lady wearing a white blouse demonstrates access to the vacuum hose from the wall storage receptacle.\", \"A clip of the lady wearing the white blouse demonstrates the whole vacuuming process from set up to completion.\"]}, \"v_optJ47P_5Ys\": {\"duration\": 15.51, \"timestamps\": [[0, 2.4], [3.1, 12.87], [13.49, 15.51]], \"sentences\": [\"A little girl is drinking water while her mom washes clothes.\", \" The woman scrubs the clothing against a washing board.\", \" She is then shown with a brand new washer and dryer.\"]}, \"v_hj7rkE0fPsE\": {\"duration\": 47.0, \"timestamps\": [[0, 3.76], [3.99, 13.63], [13.63, 30.31], [31.02, 43], [43.24, 47]], \"sentences\": [\"Words appear on the title screen.\", \" A lady talks to the camera and holds a piece of hair extension.\", \" The lady takes a brush and brushes the extension and touches her head while talking to the camera.\", \" We see the extension up close as the lady brushes it and see her speak briefly before returning to the extension.\", \" We see the lady finish brushing it and the screen fades to black.\"]}, \"v_6hNV9oxC51k\": {\"duration\": 128.58, \"timestamps\": [[0, 5.79], [5.79, 112.51], [79.72, 90.01], [112.51, 128.58]], \"sentences\": [\"An introduction comes onto the screen for a video about a family rafting adventure.\", \" Several people are shown rafting down the river rapids and having a great time.\", \" People are also shown in the river cabin playing pool and having fun.\", \" The video ends with the closing caption and credits shown on the screen.\"]}, \"v_1AiQt87brik\": {\"duration\": 75.3, \"timestamps\": [[0, 52.34], [52.34, 69.28], [69.66, 75.3]], \"sentences\": [\"A young man playing congo drums is overlaid by the text \\\"Alex Rivera on Congas\\\".\", \"  The camera pans to a man playing a keyboard.\", \"  The camera pans to people singing on a stage.\"]}, \"v_XDBugI_CcYs\": {\"duration\": 57.68, \"timestamps\": [[0, 31.44], [0, 48.74], [37.2, 48.74]], \"sentences\": [\"Woman are playing tug of war in the sand.\", \" A crowd of people are watching them.\", \" They get pulled over and hug each other.\"]}, \"v_DW7Zm9DzEDk\": {\"duration\": 23.92, \"timestamps\": [[0, 8.97], [7.41, 18.89], [18.3, 23.44]], \"sentences\": [\"A man is seen running down a long track in slow motion.\", \" The man then leaps into the air and jumps into a sand pit.\", \" People watch his jump on the side.\"]}, \"v_duZnMXDWkGw\": {\"duration\": 231.95, \"timestamps\": [[0, 77.7], [49.87, 160.04], [147.29, 226.15]], \"sentences\": [\"A cartoon character is shown followed by several people speaking to the camera.\", \" Many people are seen walking around an area as well as people riding down a slide and training.\", \" They continue running an area while the man still speaks to the camera and runs around laughing with others.\"]}, \"v_RD7AUdgtchE\": {\"duration\": 4.55, \"timestamps\": [[0, 1.55], [2.09, 3.28], [3.07, 4.48]], \"sentences\": [\"A girl is seen shoveling snow and wiping her face.\", \" She's seen in another clip bending down and jumping up in the air.\", \" She walks away in the end.\"]}, \"v_SAaqnGbci6Y\": {\"duration\": 156.64, \"timestamps\": [[0, 13.31], [26.63, 104.17], [107.3, 156.64]], \"sentences\": [\"A man walks into his small kitchen.\", \" He is talking to the camera as he shows how he cannot have enough room to stand at his sink.\", \" He tries to wash dishes with his forehead against the cabinet.\"]}, \"v_U7oDqpIYsxI\": {\"duration\": 73.26, \"timestamps\": [[0, 20.51], [19.41, 50.18], [50.92, 72.89]], \"sentences\": [\"An exercise machine spins around a circle when a man walks into frame.\", \" The man takes a drink and uses the machine.\", \" He adjusts the settings and continues riding, ending by rolling it away in the end.\"]}, \"v_5KYUiMysyb0\": {\"duration\": 22.01, \"timestamps\": [[0, 4.07], [3.74, 13.21], [3.74, 15.3], [9.69, 22.01]], \"sentences\": [\"A woman sprays a bottle of solution.\", \" She then scrubs the sides of a sink.\", \" Various text appears across the the screen.\", \" She rinses it down the drain.\"]}, \"v_y-X0DjEHD_k\": {\"duration\": 71.33, \"timestamps\": [[0, 53.5], [2.85, 71.33], [7.13, 71.33], [53.14, 71.33]], \"sentences\": [\"A man is at an ice cream stand.\", \" Several customers stand by it.\", \"  He does tricks as he hands out the ice cream.\", \" Finally he gives the woman a cone.\"]}, \"v_plhiqYw0P_g\": {\"duration\": 124.96, \"timestamps\": [[0, 10.62], [13.12, 43.11], [49.36, 124.96]], \"sentences\": [\"A man is water skiing on a large lake.\", \" He is being pulled by a motor boat.\", \" He weaves back and forth in the water.\"]}, \"v_rzIaKwWJDZI\": {\"duration\": 201.88, \"timestamps\": [[0, 6.06], [51.48, 114.06], [117.09, 169.58]], \"sentences\": [\"A woman is sitting down in a chair.\", \"  She begins making a diaper cake on the table.\", \" She puts lace and small stuffed animals onto the cake.\"]}, \"v_kkIClKG5xY8\": {\"duration\": 165.72, \"timestamps\": [[0, 30.66], [36.46, 106.89], [119.32, 165.72]], \"sentences\": [\"An aerial view is seen of a river.\", \" two people are walking along the beach and talking.\", \" They go surfing in the water together.\"]}, \"v_99xnJSBRzkE\": {\"duration\": 152.25, \"timestamps\": [[0, 152.25], [32.73, 152.25], [60.9, 152.25]], \"sentences\": [\"A boat is sailing in the water with two people in it.\", \" A man in black shirt is being interviewed and boat in the water is being shown.\", \" Two men are in the boat sitting on the edge of the boat, one man is pulling the sail.\"]}, \"v_3Y_4Azzta6Q\": {\"duration\": 171.81, \"timestamps\": [[0, 4.3], [5.15, 10.31], [11.17, 171.81]], \"sentences\": [\"The words \\\"Sexy panty cake\\\" are shown on screen.\", \" A cake shaped like a heart wearing panties is shown.\", \" A person holds a heart shaped cake pan and demonstrates the steps of how to make the cake.\"]}, \"v_A80eMz7rJUM\": {\"duration\": 156.41, \"timestamps\": [[10.17, 52.4], [50.05, 73.51], [147.03, 150.15]], \"sentences\": [\"A woman cuts a branch off of a tree with scissors.\", \" She sets them down and keeps talking.\", \" A pan of the garden is shown.\"]}, \"v_tMTvOaUYNeg\": {\"duration\": 23.96, \"timestamps\": [[0, 23.96], [1.92, 3.71], [3.83, 23.96]], \"sentences\": [\"Two children pick up leaves off a lawn and deposit them into a bag while a man stands nearby.\", \" The man picks up a rake.\", \" The man ranks the leaves.\"]}, \"v_W_hux-Z6Ll0\": {\"duration\": 155.67000000000002, \"timestamps\": [[0.78, 127.65], [44.37, 45.92], [133.1, 135.43]], \"sentences\": [\"People are skiing down a hill of snow.\", \" A person does several flips in the air on skis.\", \" The crowd watching him cheers for him.\"]}, \"v_G0DPDo44wt8\": {\"duration\": 21.53, \"timestamps\": [[0, 6.03], [6.24, 15.39], [15.07, 20.88]], \"sentences\": [\"A man is seen bending down before a set of weights with others watching him on the side.\", \" The man lifts up the weights over his head.\", \" In the end he throws the weights down.\"]}, \"v_--6bJUbfpnQ\": {\"duration\": 26.75, \"timestamps\": [[0, 1.2], [4.81, 14.98], [15.25, 26.48]], \"sentences\": [\"A close up of a beer is shown that pans up to a man.\", \" The man looks down and begins drinking from the glass.\", \" The man continues drinking and pauses to smile to the camera.\"]}, \"v_j46ll2_jR7k\": {\"duration\": 219.92000000000002, \"timestamps\": [[0, 31.89], [31.89, 93.46], [94.56, 170.44], [171.54, 219.92]], \"sentences\": [\"A woman stands in an amusement park with hula hoops while a small group watches.\", \" She starts performing with the hula hoop.\", \" She picks up a second hoop and performs with both.\", \" She picks up the third, fourth and fifth hoops with her feet and performs.\"]}, \"v_W1krUTxgsMc\": {\"duration\": 143.78, \"timestamps\": [[0, 28.76], [24.44, 140.9], [34.51, 140.9], [114.3, 140.9]], \"sentences\": [\"Several slides of text are shown.\", \" A man is then shown in a chair.\", \" He is playing a guitar.\", \" He finishes the song at the end.\"]}, \"v_KMz8f9vDK38\": {\"duration\": 131.63, \"timestamps\": [[1.97, 32.91], [37.52, 95.43], [61.21, 127.68]], \"sentences\": [\"A group of people are seen skating around the ice playing hockey.\", \" The kids move all around the ice while others watch on the side.\", \" They continue to skate with one another all around the room.\"]}, \"v_2Tuht3F2uc8\": {\"duration\": 46.35, \"timestamps\": [[0, 6.72], [9.5, 33.37], [36.61, 46.35]], \"sentences\": [\"A woman is shoveling snow outside her house.\", \" She rakes up big scoops of the snow.\", \" She then tosses them off to one side.\"]}, \"v_mlNP3uaTB3Q\": {\"duration\": 65.06, \"timestamps\": [[0, 65.06], [29.28, 33.18], [37.09, 44.57], [48.47, 51.73]], \"sentences\": [\"A lady is standing, speaking, and holding rugs.\", \" The lady puts a paste on a window glass.\", \" The lady use a rug to wipe off the paste on the window.\", \" The lady uses a clean rug to wipe over the window again.\"]}, \"v_NDK0XQnsnmA\": {\"duration\": 129.96, \"timestamps\": [[0, 20.14], [20.14, 55.88], [55.88, 93.57], [93.57, 129.96]], \"sentences\": [\"At the fair there is a ride called bumper cars that everyone loves.\", \" Kids and adults are able to ride it and they basically bump into each other intentionally.\", \" They go around in circles not only knocking their friends around but also other riders they have never met.\", \" It is pretty fun and easy so they enjoy their turn on the ride.\"]}, \"v_3OcAjx8e4LU\": {\"duration\": 187.48, \"timestamps\": [[0, 3.75], [27.18, 84.37], [98.43, 187.48]], \"sentences\": [\"A woman gives a thumbs up as she goes rafting in a river.\", \" They go through small waterfalls, trying to stay upright.\", \" They continue along the raging waters.\"]}, \"v_plMBtIbzX6w\": {\"duration\": 20.32, \"timestamps\": [[0, 2.64], [3.05, 13.11], [13.51, 20.32]], \"sentences\": [\"A man goes into a bowling alley.\", \" He walks up to the lane while holding a ball.\", \" He throws the ball, but doesn't knock down any of the pins.\"]}, \"v_J2gJYNO2qh8\": {\"duration\": 139.27, \"timestamps\": [[0, 11.84], [12.53, 45.26], [48.75, 103.06], [106.54, 131.61]], \"sentences\": [\"A local well known bakery is providing a demonstration.\", \" Workers are introduced as the efforts are displayed on how they are making a large upcoming contribution for a special event.\", \" The bakers are making a huge delicious cake for celebration of many years in special Olympics.\", \" Many people arrive for the event, and absolutely love the final outcome of the sweet cakes.\"]}, \"v_KxAxMZ6dYa4\": {\"duration\": 104.31, \"timestamps\": [[0, 11.47], [9.91, 56.32], [64.67, 104.31]], \"sentences\": [\"an anchorman beings talking to the camera.\", \" People gathered around a shuffleboard begin playing.\", \" a few people speak to the camera as the other people play shuffle board.\"]}, \"v_9gU5be5YCVw\": {\"duration\": 58.65, \"timestamps\": [[0, 3.52], [3.52, 52.5], [52.5, 58.65]], \"sentences\": [\"An Asian male gymnast is wearing long red pants, and a sleeveless top while standing in a large indoor gymnasium and is walking on fat blue mats towards tall parallel bars.\", \"The man looks at the bars, holds his two arms up, grabs the poles, then begins his very elaborate parallel bar routine that includes flips, spins, handstands and etcetera.\", \"The man finishes his routine by flipping multiple times and then off to the side of the parallel bars where he lands on his feet, smiles, takes small bows and walks off.\"]}, \"v_A32TgJfp2z8\": {\"duration\": 90.6, \"timestamps\": [[0, 11.78], [13.14, 62.96], [64.78, 90.6]], \"sentences\": [\"Old black and white videos are shown of people engaged in games of table tennis.\", \" Crowds watch and cheer them on.\", \" They clap as the ball is hit back and forth over the net.\"]}, \"v_bpB0GiH6uDw\": {\"duration\": 95.92, \"timestamps\": [[0, 72.9], [2.4, 17.27], [14.39, 71.46], [19.66, 73.86], [72.9, 95.92]], \"sentences\": [\"There's a man in a green shirt mowing his lawn with a lawn mower.\", \" He brings out the lawn mowing equipment from his garage and begins mowing the lawn.\", \" He walks up and down his entire lawn, pushing his lawn mower as he cuts the grass.\", \" He walks throughout his backyard as he makes sure he covers the entire area as the rotating blades of the lawn mower cut the grass.\", \" After he's done mowing, he plays with his two black and white dogs in his backyard.\"]}, \"v_fid8KlncwTA\": {\"duration\": 176.01, \"timestamps\": [[0, 42.24], [40.48, 121.45], [115.29, 168.97]], \"sentences\": [\"A group of people are seen riding around on horses and speaking to one another.\", \" Several areas of land are shown as they people continue to ride around and speak to one another.\", \" A close up of a horse is shown and more people riding along.\"]}, \"v_IlCsGkFnRkc\": {\"duration\": 174.99, \"timestamps\": [[0, 39.37], [52.5, 101.49], [118.99, 174.99]], \"sentences\": [\"Kids and adults are running around a room.\", \" They are putting decorations on a christmas tree.\", \" They hang lights and then the ornaments.\"]}, \"v_8YKUwWUU-O0\": {\"duration\": 195.87, \"timestamps\": [[0, 4.9], [4.9, 184.12], [14.69, 119.48], [119.48, 184.12], [184.12, 195.87]], \"sentences\": [\"A dark pink screen appears with white lettering that read \\\"Supirior University vs Sargodha University\\\".\", \"A large group of people are on a grassy field watching as two teams play tug o war, some people are taking pictures and videos a referee is in the middle of the rope to guide them, and each team has a coach(es) on the side of them talking to them.\", \"After a while of tugging the right side wins and they briefly celebrate because they immediately start another round.\", \" They tug on the rope some more and eventually the tug o war ends with the team on the left winning and they all celebrate and some are bowing on the grass.\", \" The dark pink screen appears again with the white words on it that scroll from bottom to the top.\"]}, \"v_IXUh06YCtjw\": {\"duration\": 83.13, \"timestamps\": [[0, 9.14], [19.12, 54.45], [58.61, 83.13]], \"sentences\": [\"a person is standing outside holding a coffee mug.\", \" They sit the mug down on a bench.\", \" A dog runs up and starts drinking from the mug.\"]}, \"v_CNdCnkKhitI\": {\"duration\": 195.91, \"timestamps\": [[0, 14.69], [38.2, 96.97], [116.56, 195.91]], \"sentences\": [\"A view is seen of the open sky and credits.\", \" A group of people are playing a game on the field.\", \" They are engaged in a game of cricket.\"]}, \"v_iGax3fokst8\": {\"duration\": 22.97, \"timestamps\": [[0, 22.97], [0, 22.39], [0.57, 22.97]], \"sentences\": [\"kid is playing with an abs machine while a person is swinging him.\", \" little kid is laying on the floor playing with a crunch machine.\", \" kid is watching to the person who is swinging him.\"]}, \"v_Vl4gId1_zxo\": {\"duration\": 223.45, \"timestamps\": [[0, 53.63], [59.21, 130.72], [124.01, 214.51]], \"sentences\": [\"A man is seen speaking to the camera and holding up ingredients.\", \" He then walks out onto a field with young children and giving them a kite.\", \" He holds up a kite and bag while speaking to the camera while more clips are shown of him and his children flying kites.\"]}, \"v_Wrbf7c58IuU\": {\"duration\": 104.4, \"timestamps\": [[0, 28.71], [23.49, 67.34], [59.51, 100.74]], \"sentences\": [\"Two men are seen passing around a ball in a pool while others swim around.\", \" The men play with one another all around the pool.\", \" The continue to throw the ball while laughing to one another.\"]}, \"v_wZgBJlWqWWI\": {\"duration\": 54.75, \"timestamps\": [[0, 54.75], [2.74, 24.91], [29.02, 48.73], [48.73, 54.75]], \"sentences\": [\"A little girl in a pink sweater and red boots is on a jungle gym.\", \" She proceeds to cross the monkey bars backwards away from the camera.\", \" The she comes back towards the camera but backwards again.\", \" She turns around and smiles, bows and blows a kiss.\"]}, \"v_ChPzol03Hqs\": {\"duration\": 206.57, \"timestamps\": [[0, 33.05], [0, 38.21], [21.69, 206.57], [36.15, 206.57]], \"sentences\": [\"A news reporter sits at a desk.\", \" He is talking to the camera.\", \" Several people are sitting on the beach.\", \" Children play with buckets in the sand.\"]}, \"v_Q0FbJovQ0Lw\": {\"duration\": 148.7, \"timestamps\": [[0, 137.55], [2.23, 137.55], [137.55, 148.7]], \"sentences\": [\"A man is sitting behind a drum set.\", \" He starts to play the drum set with drum sticks.\", \" He finishes and stands up and walks to the camera.\"]}, \"v_tAgVokWkdnQ\": {\"duration\": 207.03, \"timestamps\": [[0, 28.98], [49.69, 130.43], [144.92, 207.03]], \"sentences\": [\"A large group of band mates are gathered on a field.\", \" They are playing the drums and several instruments.\", \" A girl is talking to the camera as the band plays.\"]}, \"v_L963epA4MFU\": {\"duration\": 27.05, \"timestamps\": [[0, 5.55], [0, 22.86], [2.57, 22.86], [4.33, 27.05]], \"sentences\": [\"A man is in a street.\", \" He is holding a leaf blower.\", \" He blows the leafs around.\", \" Several people stand around watching.\"]}, \"v_Br1Ty6PCrv8\": {\"duration\": 42.12, \"timestamps\": [[0, 5.05], [7.79, 26.96], [29.27, 42.12]], \"sentences\": [\"A child walks up to the top of a red slide.\", \" He slides down, then runs back to the top again.\", \" Again, he slides down toward the camera.\"]}, \"v_X5UoLcloHIM\": {\"duration\": 162.1, \"timestamps\": [[0, 10.54], [10.54, 34.85], [35.66, 89.96], [89.96, 162.1]], \"sentences\": [\"Clips of skateboarders in different scenes.\", \" A skateboarder wearing a red helmet is skating down hill on a public street.\", \" A skateboarder wearing a black helmet skates downhill and performs some skateboard tricks.\", \" A skateboarder wearing an orange helmet skates down the street and performs some skateboard tricks.\"]}, \"v_XFijgUPprk4\": {\"duration\": 55.87, \"timestamps\": [[0, 55.87], [10.61, 48.33], [46.37, 55.87]], \"sentences\": [\"A man does a gymnastics routine on the parallel bars.\", \"  He does his routine while others do theirs in the background.\", \"  He stumbles as he dismounts and then bows.\"]}, \"v_JEvEoAESqJ0\": {\"duration\": 9.64, \"timestamps\": [[0.14, 2.7], [2.75, 6.65], [6.17, 9.2]], \"sentences\": [\"A large group of people are seen running down a track together.\", \" One man is seen running the opposite direction by himself.\", \" He jumps into a pit and walks away.\"]}, \"v_sGwra7t-ARo\": {\"duration\": 99.5, \"timestamps\": [[0, 15.42], [16.42, 50.25], [54.23, 99.5]], \"sentences\": [\"A female track star prepares herself to run.\", \" She runs very fast down the track.\", \" She takes a flying leap into a sand pit.\"]}, \"v_cWBbuw_DA2c\": {\"duration\": 47.09, \"timestamps\": [[0, 9.65], [10.36, 32.26], [27.78, 45.91]], \"sentences\": [\"Two women are seen speaking to one another while loading up a hookah.\", \" They blow smoke out of the hookah and kiss one another.\", \" They continue to blow smoke around the room.\"]}, \"v_n_sfeihU3f8\": {\"duration\": 78.16, \"timestamps\": [[0, 78.16], [0, 75.42], [3.52, 78.16]], \"sentences\": [\"team are in an ice court playing hockey.\", \" men are going side to sid of the hockey court playing.\", \" men are wearing white uniforms playing hockey on ice.\"]}, \"v_wmrrBnxbHjk\": {\"duration\": 60.65, \"timestamps\": [[0, 28.81], [28.81, 60.65], [0, 60.65]], \"sentences\": [\"two men and two women are playing table soccer and showing the table.\", \" a man and a woman are in a living room playing table soccer.\", \" people are in a comercial showing the socer table and playing.\"]}, \"v_ez8ram5yd70\": {\"duration\": 98.27000000000001, \"timestamps\": [[0, 98.27], [6.88, 37.34], [37.34, 67.8], [67.8, 98.27]], \"sentences\": [\"There's a lot of children and adults in a large indoor gymnasium with a wood floors and some are rope jumping while others are watching while sitting or standing.\", \"A brown skinned girl in the forefront begins to jump rope very quickly.\", \" As soon as she's done a white skinned girl next to her begins her solo jump rope as the two girls on each side of her watch her.\", \" When she's finished the last white skinned girl on the left begins her solo jump rope and they all watch her until she's done.\"]}, \"v_RgMAHuMVRcU\": {\"duration\": 222.52, \"timestamps\": [[0, 15.58], [21.14, 175.79], [181.35, 222.52]], \"sentences\": [\"Two men are working together in an orchard.\", \" They use very long shears to cut the branches.\", \" They keep trimming the trees as they go.\"]}, \"v_vlX9sU9bM9s\": {\"duration\": 4.51, \"timestamps\": [[0, 1.37], [1.17, 2.93], [2.84, 4.37]], \"sentences\": [\"A large track is shown with a person holding a javelin.\", \" The person begins running down the track.\", \" The person then throws the javelin off into the distance.\"]}, \"v_wt0XC2EEh7Y\": {\"duration\": 97.66, \"timestamps\": [[0, 20.51], [21.49, 47.37], [47.37, 88.87], [88.87, 97.66]], \"sentences\": [\"A woman talks next a horse holding a brush.\", \" Then, the woman brush the neck and the front legs of the horse.\", \" After, the woman brush the body and the back legs of the horse.\", \" When, she finish to brush the horse, she stands and talks pointing the horse.\"]}, \"v_SvYeqLg4dQU\": {\"duration\": 113.83, \"timestamps\": [[0, 2.85], [2.85, 81.38], [81.95, 95.04], [95.61, 113.83]], \"sentences\": [\"An overhead view of a blue pool table is shown.\", \"  A man takes shot with the cue.\", \" A replay with overlaid graphics is shown.\", \" The man continues to play pool.\"]}, \"v_ukPz_13Agis\": {\"duration\": 38.71, \"timestamps\": [[3.1, 34.45], [3.1, 6.77], [15.68, 21.87], [12.58, 15.29]], \"sentences\": [\"A man shoots free throws on an indoor basketball court.\", \" A man shoots a basket from the corner of the free throw line.\", \" The man walks over to retrieve the ball and shoots a basket from outside the key.\", \" The man shoots a basket from the top of the key.\"]}, \"v_gCDpUPvD3s4\": {\"duration\": 51.57, \"timestamps\": [[0, 51.57], [37.65, 51.57], [48.99, 51.57]], \"sentences\": [\"People on horses are outdoors playing a polo game.\", \"  One person makes a goal.\", \"  A person walking on the ground grabs a ball with a mallet.\"]}, \"v_K5v9-h2S5pw\": {\"duration\": 147.91, \"timestamps\": [[0, 22.93], [29.58, 113.15], [116.85, 147.91]], \"sentences\": [\"A man is speaking from behind a podium.\", \" He continues talking as the panel listens.\", \" A man appears and plays a saxophone so the man cannot continue speaking.\"]}, \"v_i3DJXbrg0vk\": {\"duration\": 65.13, \"timestamps\": [[0, 10.75], [12.05, 36.8], [36.47, 63.18]], \"sentences\": [\"A woman is seen walking into a pit and begins spinning around in circle.\", \" She throws an object off into the distance and walks away.\", \" She then begins cheering and running to the audience while they cheer back.\"]}, \"v_RpVkFIpEhIE\": {\"duration\": 14.88, \"timestamps\": [[0.45, 13.17], [2.9, 14.88], [0, 14.88]], \"sentences\": [\"woman is standing behind a net making a shot put.\", \" in the court two people are standing in the field and runs when the woman makes the throw.\", \" people are in a green grassy field.\"]}, \"v_D0RDF1ez-8Y\": {\"duration\": 178.89, \"timestamps\": [[0, 29.52], [29.52, 120.75], [120.75, 178.89]], \"sentences\": [\"woman is sitting in a bed talking to the camera showing a contac lenses case.\", \" then she take off hr glasses and show how to put the contact on the eye, she grab it with the index finger and put it in the eye.\", \" and then she do the same with the other contac in her other eye.\"]}, \"v_uM3RiCL0g2U\": {\"duration\": 190.4, \"timestamps\": [[0, 190.4], [0, 43.79], [44.74, 183.74], [62.83, 183.74]], \"sentences\": [\"A man demonstrates how to train a dog to catch frisbees and perform tricks and stunts while doing so.\", \"  A man holding an array of white frisbees in his hand talks to a camera  The camera pans out and a dog is seen in the background with a frisbee in its mouth.\", \"  The man then begins throwing frisbees in the air strategically , talking to the camera after each throw, explaining the training process.\", \"  The dog jumps, rolls over, begs , runs and moves  about during the training session.\"]}, \"v_Htp7EK8IB18\": {\"duration\": 38.36, \"timestamps\": [[0, 8.82], [8.82, 38.36], [32.03, 38.36]], \"sentences\": [\"A child is sitting in an inner tube and is shown going down a snowy hill.\", \" The camera person is filming from their inner tube and is showing the child and the scenery around them that include the trees, the snowy hill and other people in their inner tubes.\", \"The child comes to a stop, turns around and gets off of his inner tube and gets very close to the camera while smiling.\"]}, \"v_jRXF5_vNUWE\": {\"duration\": 131.12, \"timestamps\": [[0, 31.47], [24.91, 98.34], [93.75, 126.53]], \"sentences\": [\"A group of cheerleaders are seen walking onto a stage and holding a pose.\", \" The girls then begin dancing with one another as well as performing stunts and tricks.\", \" The girls continue to cheer with one another and end by walking towards the audience.\"]}, \"v_0VoNAs7Ia0A\": {\"duration\": 148.28, \"timestamps\": [[9.64, 16.31], [17.79, 33.36], [40.78, 49.67], [57.83, 60.05], [57.83, 148.28]], \"sentences\": [\"A girl is standing in her pajamas.\", \" She begins to dance on the floor.\", \" A boy comes in the room and lifts her up.\", \" He sets her down on the ground.\", \" They continue to wrestle in front of the camera.\"]}, \"v_f0On10HA3HQ\": {\"duration\": 135.61, \"timestamps\": [[0, 22.37], [15.59, 46.78], [15.59, 135.6], [36.61, 135.6]], \"sentences\": [\"A jet ski is on the sand.\", \" A person is tied to the back of it.\", \" The jet ski takes off onto the water.\", \" It speeds across the lake.\"]}, \"v_z2qG-TOSwqw\": {\"duration\": 49.2, \"timestamps\": [[0, 17.47], [10.82, 36.66], [30.75, 49.2]], \"sentences\": [\"The woman is putting a clipper on other woman's lower lip.\", \" The woman inserted a long metal stick on his lower lip.\", \" The woman adjusted the pin and put accessory on her lower lip.\"]}, \"v_YveUW4bLL5A\": {\"duration\": 69.75, \"timestamps\": [[0, 7.32], [0, 69.75], [0, 8.72]], \"sentences\": [\"rice, flour and pepper is in a kitchen's floor.\", \" someone is holding a vacuum cleaner and turn it on to clean the floor someone is  vacuuming the floor with an orange vacuum cleaner.\", \"different ingredients are on the floor and someone cleans it.\"]}, \"v_VbhW_K3NvmQ\": {\"duration\": 166.0, \"timestamps\": [[0, 106.24], [107.07, 162.68], [163.51, 166]], \"sentences\": [\"A young lady plays a white piano on front people that applaud her.\", \" A woman cries hearing the young woman play the piano.\", \" After, the young woman ends her performance and people applauds.\"]}, \"v_-7eQ2bHNPUw\": {\"duration\": 197.5, \"timestamps\": [[0, 197.5], [0, 36.54], [24.69, 61.22], [50.36, 163.92]], \"sentences\": [\"A woman stands in front of a sink.\", \" She then wipes the faucet with a towel.\", \" She turns on the sink.\", \" She rinses off her hands.\"]}, \"v_JHHHuKeA-WQ\": {\"duration\": 107.6, \"timestamps\": [[0, 12.91], [16.68, 55.95], [59.72, 107.6]], \"sentences\": [\"A woman has been blindfolded, and is holding a long stick.\", \" She moves around to disorient herself.\", \" She then swings the stick, trying to hit a pinata that gets pulled out of her way.\"]}, \"v_HVKveVRZ-JY\": {\"duration\": 27.1, \"timestamps\": [[0, 26.69], [0, 26.42], [18.16, 26.42]], \"sentences\": [\"men are in a pool playing waterpolo.\", \" people are around the pool watchnig the game.\", \" man wearing white shirt is on a side of th pool doing of referee.\"]}, \"v_VdY1Shdks6o\": {\"duration\": 82.2, \"timestamps\": [[0, 18.49], [18.08, 40.69], [40.69, 62.47], [62.06, 70.28], [70.69, 74.39]], \"sentences\": [\"An explanatory title splash with a series of text is shown.\", \" An individual uses contact lens solution to rub a contact lens in the individual's palm.\", \" the individual puts the contact lens on her eye.\", \" The individual removes the lens from her eye.\", \" The individual holds up a contact lens storage case.\"]}, \"v_6r3qgd1y5KE\": {\"duration\": 152.18, \"timestamps\": [[0, 25.87], [29.68, 84.46], [86.74, 152.18]], \"sentences\": [\"a woman is standing on a ladder wiping the wall with a rag.\", \" the woman then brings in large rolls of wall paper.\", \" the woman then measures and applies the wall paper.\"]}, \"v_ZwxvczODMbM\": {\"duration\": 51.36, \"timestamps\": [[0, 51.36], [15.41, 51.36], [23.63, 51.36]], \"sentences\": [\"Two people are arm wrestling on a chair.\", \" The dog walked over the young man.\", \" The woman beat the young boy, the did arm wrestling again and the woman beat the young man.\"]}, \"v_AqTZd5HZKNI\": {\"duration\": 204.24, \"timestamps\": [[0, 39.83], [38.81, 133.78], [125.61, 202.2]], \"sentences\": [\"A man is seen pushing a vacuum all along a carpet.\", \" The man pushes a vacuum back and fourth along the carpet.\", \" He continues pushing the vacuum around all over the floor.\"]}, \"v_vgXU0u-rN9c\": {\"duration\": 59.26, \"timestamps\": [[0, 4.15], [8.89, 40.3], [48, 59.26]], \"sentences\": [\"A man is standing behind a bar with several bottles.\", \" He adds one ingredient at a time to a glass.\", \" He creates a pineapple flavored drink.\"]}, \"v_lyjz4sNglQg\": {\"duration\": 111.87, \"timestamps\": [[1.12, 40.83], [34.68, 78.31], [73.84, 108.52]], \"sentences\": [\"A large christmas tree is shown with people walking in and out of frame.\", \" People move around quickly decorating the tree.\", \" They continue to decorate the tree and ends with showing the tree in the dark.\"]}, \"v_w8kVVzMOC98\": {\"duration\": 220.29, \"timestamps\": [[0, 23.13], [29.74, 117.85], [124.46, 220.29]], \"sentences\": [\"A row of bowling pins are shown at the end of a lane.\", \" A ball is then shown hitting the pins.\", \" The mechanics of how a ball is drilled is demonstrated.\"]}, \"v_ybkcKusf-Kg\": {\"duration\": 62.16, \"timestamps\": [[0, 58.43], [6.84, 15.23], [11.5, 55.32], [52.21, 62.16]], \"sentences\": [\"A gymnast enters the auditorium full of people.\", \" He grabs the high bars.\", \" He pulls himself up and does several tricks.\", \" He then lowers himself back down to the ground.\"]}, \"v_9-yueOtwiL8\": {\"duration\": 230.69, \"timestamps\": [[0, 9.23], [0, 230.69], [77.28, 84.2], [108.42, 118.81]], \"sentences\": [\"A man is standing behind a fence practicing with a heavy ball on his shoulder.\", \" Several men are shown in various throwing sports.\", \" A man throws a spear.\", \" Another man trows a disc.\"]}, \"v_as7KugARkLE\": {\"duration\": 8.94, \"timestamps\": [[0, 0.89], [0.89, 2.99], [3.17, 8.94]], \"sentences\": [\"Three girls are standing in a gymnasium in a maroon tops and black spandex.\", \"One girl walks off while the other is positioned in front of the chalk,putting it on her hand.\", \"Lastly,there's the third girl who is standing at the top of the bars and ends up doing a flip into the pit of foam.\"]}, \"v_zz3Mw8FMA70\": {\"duration\": 121.88, \"timestamps\": [[0, 120.66], [6.09, 121.88], [20.11, 20.72], [41.44, 83.49], [112.13, 119.44]], \"sentences\": [\"A guy is sucking on a black pipe.\", \" The guy blows smoke out of his mouth.\", \" The guy blows smoke out of his smokes.\", \" The guy does hand gestures.\", \" The guy takes out money and displays them.\"]}, \"v_Sx3NHkPp3Jo\": {\"duration\": 112.34, \"timestamps\": [[0, 6.18], [20.78, 65.72], [71.34, 112.34]], \"sentences\": [\"A man is running down a track by a field.\", \" He takes a huge leap into a sand pit.\", \" He then walks away looking unhappy.\"]}, \"v_pUIicfDCZC0\": {\"duration\": 157.87, \"timestamps\": [[0, 157.87], [10.26, 15], [15, 157.87]], \"sentences\": [\"This video gives viewers some advice about what meals can help you with weight loss.\", \" A list is then shown to show viewers how to make this meal and it's filled with vegetables and just a little bit of meat.\", \" He seasons chicken breast and puts them into the oven and then puts vegetables into the pot along with vegetables and more seasoning, there's also pasta on the other side and he cuts chicken up into little pieces and he mixes everything together creating a nice meal.\"]}, \"v_dJknA-jTNGc\": {\"duration\": 54.61, \"timestamps\": [[0, 24.03], [24.3, 35.77], [36.05, 45.06]], \"sentences\": [\"People in two boats are rafting in the murky waters of a river.\", \" Suddenly, one boat tilts and people falls in the water.\", \" Immediately, two men in a canoes approaches the boat to help the men in the water.\"]}, \"v_pPM1jC_NlzI\": {\"duration\": 67.76, \"timestamps\": [[0, 67.76], [0, 21.01], [0, 67.08]], \"sentences\": [\"man is standing in front of a house welding a metal object.\", \" man is wearing a helmet and holding a weld.\", \" man is welding an object hat is on top of a chair in a sunny day.\"]}, \"v_mO1T8zhIliY\": {\"duration\": 233.85, \"timestamps\": [[0, 177.73], [76, 212.8], [168.37, 231.51]], \"sentences\": [\"Two people are seen fencing back and fourth.\", \" The people push one another around on a mat while others watch on the side.\", \" The two continue to fence and stop in the end.\"]}, \"v_VXLyTLY1PAw\": {\"duration\": 6.32, \"timestamps\": [[0, 0.66], [0.85, 4.33], [4.86, 6.32]], \"sentences\": [\"two boys are on a field outdoors.\", \" One takes off running across the red ground.\", \" He jumps over a bar onto a mat.\"]}, \"v_MvZFYjs80Y4\": {\"duration\": 209.98, \"timestamps\": [[0, 209.98], [0, 205.78], [4.2, 209.98]], \"sentences\": [\"two men are sitting on a table plaing rock paper scissors and the losers gets a slap.\", \" men are sitting in a room with posters hanging on the wall.\", \" men are playing rock paper scissors in a room.\"]}, \"v_XYW6F_4qKJU\": {\"duration\": 59.77, \"timestamps\": [[0, 7.17], [7.17, 26.9], [26.9, 34.96], [34.96, 52.9], [52.9, 59.77]], \"sentences\": [\"An intro screen appears on a black screen that look like a white square that has yellow and blue drawings on it and words on the screen put together say \\\"VI DO VET TAGLIARE LE UNGHIE AL GATTO\\\".\", \"A vet wearing scrubs is holding the left front paw of a black and white cat while someone else not in scrubs is also assisting.\", \"A white screen appears and it includes a diagram of a cat's nails, the names of the parts of the nails, and where they should cut the nail.\", \"The diagram goes away and the people begin cutting the nails of the calm cat.\", \" The outro appears and it's the same as the intro with the drawing that is yellow and blue on a white screen.\"]}, \"v_YSrnHPcdGL4\": {\"duration\": 187.76, \"timestamps\": [[0, 187.76], [0, 140.82], [140.82, 187.76]], \"sentences\": [\"team are on a court playing thowing themslves bows.\", \" men are running through the court hiding behind posts.\", \" the game ends and the team players shake their hands and say goodbye to the camera.\"]}, \"v_eLJYFoCx-gc\": {\"duration\": 89.21000000000001, \"timestamps\": [[0, 15.61], [16.95, 41.48], [41.48, 78.06], [69.59, 86.54]], \"sentences\": [\"A woman is seen running down a track and into a sand pit.\", \" Her run is shown again as she walks away.\", \" She cheers in the end and claps her hands while hugging others.\", \" Camera follow her around and her jump is shown one more time.\"]}, \"v_j4iaeT5xIdw\": {\"duration\": 192.26, \"timestamps\": [[0, 0.96], [0.96, 184.57], [60.56, 185.53], [182.65, 192.26]], \"sentences\": [\"An introduction comes onto the screen for an indoor soccer game.\", \" The indoor soccer game is played by several players as they kick the ball back and forth.\", \" Some of the players fall while they are trying to dribble the ball.\", \" A score is made and the video ends with the closing captions shown on the screen.\"]}, \"v_0EewuppFjEw\": {\"duration\": 55.15, \"timestamps\": [[0, 14.89], [14.89, 39.98], [39.98, 55.15]], \"sentences\": [\"people are walking in a bridge to get into a snowy slide.\", \" people are in snowslides going down sowy paths.\", \" someone push a kid down a slide.\"]}, \"v_WKXIl7wvlk0\": {\"duration\": 68.2, \"timestamps\": [[0, 24.89], [18.41, 48.42], [41.6, 65.47]], \"sentences\": [\"A large group of kids are seen running around a field playing field hockey.\", \" The boys chase one another with the ball up and down the field.\", \" The boys continue playing with one another.\"]}, \"v_eTVzSwuCfd8\": {\"duration\": 226.86, \"timestamps\": [[0, 24.95], [24.95, 209.84], [209.84, 226.86]], \"sentences\": [\"woman is standing in frnot of a mirror with the wet hair and its separating it into parts.\", \" then with a brush dry the hair with an animal print hair dryer.\", \" then with her hands the woman put the hair on place.\"]}, \"v_ZYPKueJon34\": {\"duration\": 24.34, \"timestamps\": [[0, 6.08], [5.23, 15.82], [15.57, 23.97]], \"sentences\": [\"A group of people are seen standing on a bridge.\", \" One holds the other on the side of the ledge.\", \" The person then bungee jumps off the side.\"]}, \"v_Mgym0F-T7Js\": {\"duration\": 179.96, \"timestamps\": [[0, 146.66], [18.9, 115.17], [146.66, 179.96]], \"sentences\": [\"A man is standing behind a desk.\", \" He begins to wipe the desk with a sponge.\", \" Words come onto the screen at the end.\"]}, \"v_lc-piYwzqsA\": {\"duration\": 48.6, \"timestamps\": [[7.05, 9.96], [10.45, 41.55], [40.82, 45.68]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He does a gymnastics routine on the balance beam.\", \" He dismounts and lands on a mat.\"]}, \"v_BLamvR0GIE8\": {\"duration\": 49.9, \"timestamps\": [[0.25, 49.15], [0.25, 4.49], [4.49, 18.21], [18.21, 49.65]], \"sentences\": [\"A man talks to the camera and walks the audience into the bathroom where he proceeds to wash his hand while talking to the camera and eventually leaves the bathroom and walks back down the hall.\", \"  A man talks to the camera from a hallway and begins walking.\", \"  The man enters a bathroom and walks to a sink where he lathers up with liquid soap and washes his hands.\", \"  The man rinses his hands off, leaves the bathroom and walks away from the camera.\"]}, \"v_50b9lVikSeo\": {\"duration\": 36.13, \"timestamps\": [[0.72, 5.24], [12.83, 27.1], [28.72, 32.88]], \"sentences\": [\"Two fingers turn a silver knob clockwise on a vacuum cleaner.\", \" The person uses the vacuum cleaner to clean the carpet.\", \" The person empties the vacuum cleaner in a trash.\"]}, \"v_0uOMJSUza68\": {\"duration\": 108.5, \"timestamps\": [[0, 23.87], [15.73, 54.79], [41.23, 82.46], [78.66, 106.33]], \"sentences\": [\"A person is seen holding up a doll and beginning to brush it's hair.\", \" The person brushes the hair all along the camera.\", \" She continues to brush the doll.\", \" She still plays with the doll's hair and turns off the camera.\"]}, \"v_oc4v7GPk05c\": {\"duration\": 9.47, \"timestamps\": [[0, 5.92], [0, 5.68], [5.87, 9.47]], \"sentences\": [\"People are playing soccer on a field.\", \" A woman in a black shirt is standing on the field behind them.\", \" Two people are running across the field.\"]}, \"v_TyHLBe6__rc\": {\"duration\": 238.1, \"timestamps\": [[0, 42.86], [45.24, 146.43], [154.76, 235.72]], \"sentences\": [\"A man is seen gesturing to the camera while several people carry boards out onto the water.\", \" Several clips are then shown of people riding around on kite boards.\", \" They perform flips and tricks on the boards past one another while others watch on the sides.\"]}, \"v_EXxckPa76vc\": {\"duration\": 70.15, \"timestamps\": [[0, 70.15], [19.29, 29.81], [54.72, 66.99], [67.69, 70.15]], \"sentences\": [\"There are people crowded around a foosball table while two people play.\", \"  The player at the bottom of the screen scores and the camera man shows the score and the replay on a screen near the table.\", \"  The player at the top of the screen scores and the camera man shows the screen again with an instant replay and the score.\", \" The camera man pans the camera to the floor and the video ends.\"]}, \"v_OUpTPRtEITY\": {\"duration\": 175.82, \"timestamps\": [[0, 33.41], [31.65, 115.16], [109.89, 175.82]], \"sentences\": [\"a man speaks to the camera while standing on a court.\", \" the man then demonstrates several badminton swings.\", \" the man returns to speaking to the camera.\"]}, \"v_Pr6zL1ToSC4\": {\"duration\": 145.29, \"timestamps\": [[0, 30.51], [17.43, 77.73], [60.29, 145.29]], \"sentences\": [\"a man is in standing by a large gathering of rocks.\", \" the man then jumps down a set of rocks.\", \" the man begins to rock climb while being holstered.\"]}, \"v_Cy2wqpjppy8\": {\"duration\": 64.18, \"timestamps\": [[0, 13.48], [16.05, 44.93], [35.94, 60.01]], \"sentences\": [\"A helicopter flies in the ski and a man bends over with a child.\", \" The child waves to the camera and begins playing in the sand.\", \" He continues to play in the sand while a person's feet are shown.\"]}, \"v_oO1g33vi4hg\": {\"duration\": 220.92000000000002, \"timestamps\": [[0, 60.75], [57.44, 161.27], [148.01, 214.29]], \"sentences\": [\"A person is seen riding down a snowy hill and crashing on a snowboard.\", \" Several shots are shown afterwards of a person riding down a hill on a snowboard.\", \" The person continues to ride around past others and off of jumps.\"]}, \"v_9hE6VRD3qXQ\": {\"duration\": 177.03, \"timestamps\": [[0, 131.89], [0, 177.03], [31.87, 177.03], [121.26, 177.03]], \"sentences\": [\"man is kneeling in a corner of a room purring cement on the floor with a spatula.\", \" two women are watching the men working on the floor.\", \" man is on the floor cleaning the terminations between the tiles.\", \" one of the man put the tile on the floor and adjust it while the other people in the room are watching him.\"]}, \"v_6HmKyms-U2s\": {\"duration\": 82.06, \"timestamps\": [[0, 82.06], [6.56, 32.82], [20.52, 53.34], [38.57, 59.9], [52.11, 67.7], [55.8, 82.06]], \"sentences\": [\"There are two young boys, one in a brown shirt and the other in a red shirt playing racket ball in an indoor court.\", \" The boy in brown hits a back hand which goes on the other side Then the boy in red gives the ball to the other player who again serves.\", \" The boy in red is unable to return the serve causing the ball fall down again.\", \" They continue playing racket ball taking turns in serving and returning the balls.\", \" The boy in red uses both hands to return the serve from the boy in brown.\", \" They hit the ball alternatively to return the opponents serve.\"]}, \"v_8r167TmBebg\": {\"duration\": 78.62, \"timestamps\": [[0, 13.37], [14.55, 33.02], [36.56, 76.66], [54.64, 78.62]], \"sentences\": [\"A team walks along a rope on a sporting field.\", \" The teams line up and stand holding the rope waiting to begin the competition.\", \"The two teams compete in a game of tug of war.\", \" The team is pulled forward and the match ends.\"]}, \"v_al_NNsjwU-Q\": {\"duration\": 55.66, \"timestamps\": [[0, 9.74], [10.3, 34.23], [34.51, 54.82]], \"sentences\": [\"A young girl is seen climbing on a gymnastics beam.\", \" She begins performing moves on the beam while falling off and climbing back on.\", \" She does a few more tricks then jumps down to the side.\"]}, \"v_4cd0sNdLmT4\": {\"duration\": 5.46, \"timestamps\": [[0, 0.19], [0, 0.93], [0.93, 5.46]], \"sentences\": [\"The man is wearing a shirt, jeans, and shoes as he stands on the roof.\", \" He uses a large garden fork to lift the top layer of the roof up.\", \" Each time he lifts a part up, he throws it to the ground and continues to lift more parts up.\"]}, \"v_7fwrkFHTm-Q\": {\"duration\": 123.42, \"timestamps\": [[0, 117.86], [8.02, 117.86], [119.71, 123.42]], \"sentences\": [\"A man is wearing red boxing gloves.\", \" He starts punching and kicking a punching bag.\", \" He stops and starts to take off his boxing glove.\"]}, \"v_fd7VuzALBCM\": {\"duration\": 81.2, \"timestamps\": [[0, 10.96], [10.96, 38.16], [38.16, 58.46], [58.46, 81.2]], \"sentences\": [\"man is walking to a van and is holding a foam head.\", \" the man starts cleaning the window taking out the snow fom the car.\", \" the man extends the pole of the head and ake out the snow from the car roof.\", \"the man hangs the foam head on the head and show the clean car.\"]}, \"v_079MEwdDNjg\": {\"duration\": 162.82999999999998, \"timestamps\": [[0, 18.73], [20.35, 100.96], [106.65, 162.83]], \"sentences\": [\"A couple of baseball teams are gathered on a field.\", \" They are playing a game of baseball after taking pictures.\", \" They run onto the field, high fiving each other.\"]}, \"v_kl9xvnAKfdE\": {\"duration\": 49.74, \"timestamps\": [[0, 49.74], [30.59, 34.57], [46.51, 49.74]], \"sentences\": [\"two female field hockey teams are play against each other in a glass in closed type field that is in doors.\", \"the red team seem to have score a down on the other end of the field on the blue team.\", \"the blue team have scored once on the red team as well.\"]}, \"v_UodvUEkuVig\": {\"duration\": 203.57, \"timestamps\": [[0, 29.52], [37.66, 110.95], [126.21, 203.57]], \"sentences\": [\"A woman is standing in front of the camera.\", \" She is talking about her hairstyle.\", \" She shows how to hot roll and style her hair.\"]}, \"v_69DNcmkoapw\": {\"duration\": 146.07999999999998, \"timestamps\": [[0, 20.45], [29.22, 72.31], [86.92, 146.08]], \"sentences\": [\"a couple of small children are playing with a tub.\", \" They are using an old wash board in the water.\", \" They rub clothes up and down the board, pretending to wash them.\"]}, \"v_4lxS8OJRsa8\": {\"duration\": 170.46, \"timestamps\": [[0, 14.49], [27.27, 139.78], [145.74, 170.46]], \"sentences\": [\"A group gathers around to watch a match.\", \" Two people engage in martial arts inside the ring.\", \" The spectators clap and cheer them on.\"]}, \"v_xVPTVGpOkGE\": {\"duration\": 29.75, \"timestamps\": [[0, 2.97], [3.57, 21.27], [21.71, 29.75]], \"sentences\": [\"A man walks into a gym, talking and smiling.\", \" He uses two large bars to show how to lift himself up.\", \" He then balances and swings between the bars.\"]}, \"v_ccKJg_f1UDo\": {\"duration\": 33.02, \"timestamps\": [[0, 1.98], [2.48, 30.54], [30.71, 33.02]], \"sentences\": [\"A girl is sitting on a balance beam.\", \" She begins to do a gymnastics routine on the balance beam.\", \" She jumps off onto the blue mat underneath her.\"]}, \"v_lAN2pe1lW-o\": {\"duration\": 38.78, \"timestamps\": [[0, 6.2], [8.73, 25.98], [26.95, 38.78]], \"sentences\": [\"A male athlete is standing on a circle on a track.\", \" He spins in a circle with a disc.\", \" He then lets go of the disc and lets it fly.\"]}, \"v_G8OyFOhVGCI\": {\"duration\": 143.5, \"timestamps\": [[0, 15.79], [21.53, 66.01], [69.6, 143.5]], \"sentences\": [\"A person walks past the front of an ornate building.\", \" A man inside is cleaning a woman's nose.\", \" He inserts a piercing through her nostrils.\"]}, \"v_hRk-3fep5WQ\": {\"duration\": 48.69, \"timestamps\": [[0, 11.2], [11.69, 34.33], [34.33, 48.69]], \"sentences\": [\"A young lady is standing in a living room,tossing her hair behind her back as it falls down to her ankles.\", \"A man who is also in the room next to her,takes out a brush and begins brushing her hair showing that her hair is about five feet long.\", \"Once he has shown her length,he releases the hair and starts brushing it from the top of her head.\"]}, \"v_LSaUJwsU4GQ\": {\"duration\": 122.83, \"timestamps\": [[0, 7.98], [8.6, 113.62], [113.62, 122.83]], \"sentences\": [\"A young man is on a scooter.\", \" Two young men perform in a locker room.\", \" The one wipes himself off with a towel and tosses it to the other.\"]}, \"v_m3yLm_dJU94\": {\"duration\": 140.13, \"timestamps\": [[0, 32.23], [32.23, 75.67], [75.67, 105.8], [105.1, 126.82], [126.12, 140.13]], \"sentences\": [\"A series of small rectangular pictures appear on the title page to create one word.\", \"After the intro,a team of cheerleaders appear at a competition performing.\", \"During their routine,coaches come along and begin during interviews behind the scenes and showing how the girls prepare for the event.\", \"Next,an actual cheerleaders begins talking and you can see her getting dressed and someone is doing her hair.\", \"More teams and members appear and they all are practicing jumps,steps,and going over techniques.\"]}, \"v_MoSuxL57xRY\": {\"duration\": 225.75, \"timestamps\": [[2.26, 19.19], [20.32, 85.78], [85.78, 102.71], [102.71, 107.23], [108.36, 123.03], [124.16, 215.59]], \"sentences\": [\"An old man holds a surfboard and puts a helmet to snowboard.\", \" Then, the man snowboard down a hill and turn around.\", \" The man turns goes down the hill, then turns several times and falls.\", \" Then, the man have a a hot drink with other people.\", \" A young person sits on the snow wearing a snowboard.\", \" A person snowboards on the hill, also the time on time the person spins several times.\"]}, \"v_9q6wWG6ql4E\": {\"duration\": 56.17, \"timestamps\": [[0, 25], [25, 37.07], [37.63, 56.17]], \"sentences\": [\"A little girl wearing a white blouse plays on the monkey bars.\", \" The little girl stands behind a gymnastic log and peers around the log.\", \" The little girl then returns using the monkey bars switching from hand to hand.\"]}, \"v_A1EflBqBv14\": {\"duration\": 97.05, \"timestamps\": [[0, 24.26], [22.32, 73.27], [62.6, 96.56]], \"sentences\": [\"Two people are seen sitting on a couch and then down to the floor.\", \" They place their hands out and begin arm wrestling one another.\", \" The woman beats the man and they shake hands while speaking.\"]}, \"v_U_ia-tINzpw\": {\"duration\": 129.08, \"timestamps\": [[0, 7.74], [7.74, 72.28], [72.28, 129.08]], \"sentences\": [\"This man walks in the middle of the street and puts the case down while the saxophone is in there.\", \" Then he is shown taking parts out to put the saxophone together where there isn't anyone really looking.\", \" When he's finished, he starts to play the saxophone using his mouth and his fingers.\"]}, \"v_gpJ7veSnhUs\": {\"duration\": 216.04, \"timestamps\": [[0, 47.53], [28.09, 116.66], [118.82, 216.04]], \"sentences\": [\"two soccer teams walk on to a soccer feild.\", \" the two teams line up opposite each other and shake hands.\", \" the two teams then begin a soccer match.\"]}, \"v_OHNH7IV0768\": {\"duration\": 18.07, \"timestamps\": [[0, 2.17], [2.44, 14.18], [14.45, 18.07]], \"sentences\": [\"A group of swimmers are inside a public pool.\", \" They are involved in a game of water polo.\", \" They try to keep the ball away from each other.\"]}, \"v_eUecHAdv1uU\": {\"duration\": 14.19, \"timestamps\": [[0, 2.62], [1.42, 9.01], [8.73, 14.19]], \"sentences\": [\"a cowboy rides into a stadium on a pony.\", \" the man jumps off of the pony and catches a running dog.\", \" the man then hog ties the dog then walks back toward the pony.\"]}, \"v_o-aSCtwxsTw\": {\"duration\": 41.1, \"timestamps\": [[0, 40.07], [1.23, 40.07], [3.7, 40.07], [31.44, 40.07]], \"sentences\": [\"A kite is being flown in a desert.\", \" Several people are standing around watching it.\", \" It does many tricks in the air.\", \" It spins in the air rapidly.\"]}, \"v_FX4inHmWQtE\": {\"duration\": 156.78, \"timestamps\": [[0, 18.03], [21.95, 105.83], [104.26, 153.65]], \"sentences\": [\"Two women are seen driving and speaking to the camera while others walk down carrying tubes.\", \" The people are then seen sitting in the water riding tubes and drinking beer.\", \" They speak to one another as they continue to ride around and drink beer.\"]}, \"v_mDvWGOr_sws\": {\"duration\": 194.72, \"timestamps\": [[0, 30.18], [32.13, 121.7], [137.28, 194.72]], \"sentences\": [\"A group of girls are standing in a gym.\", \" They use jump ropes to dance in unison.\", \" They jump and flip over the ropes in a choreographed routine.\"]}, \"v_ssHXm1LqovI\": {\"duration\": 11.59, \"timestamps\": [[0.06, 11.59], [0, 11.3], [0, 11.59]], \"sentences\": [\"people are in a court playing dodgeball.\", \" people are sitting on stands around the cout watching the game.\", \" people are standing next to the court laying on gym walls.\"]}, \"v_Lzvtnr4gT8Y\": {\"duration\": 85.66, \"timestamps\": [[0, 33.84], [20.56, 58.68], [56.96, 83.09]], \"sentences\": [\"A close up of a couch is shown and shows a boy laying down.\", \" A person then begins shaving his leg.\", \" The man walks in and out of frame and pans back to the boy.\"]}, \"v_EwYgRPVDQWQ\": {\"duration\": 122.23, \"timestamps\": [[0, 31.17], [31.17, 70.28], [80.67, 122.23]], \"sentences\": [\"A woman is seen working at a table and at a sink.\", \" She is washing vegetables in water.\", \" She then cuts them up, creating a dressing and a salad.\"]}, \"v_t0XM3ivJYUo\": {\"duration\": 49.98, \"timestamps\": [[1.25, 49.23], [4, 21.74], [20.49, 47.23]], \"sentences\": [\"Two people are seen playing ping pong while a group of people watch on the side.\", \" The boys hit the ball back and fourth to one another.\", \" They continue playing the game with each other.\"]}, \"v_7-jcXxwqf5E\": {\"duration\": 216.02, \"timestamps\": [[0, 29.16], [41.04, 136.09], [167.41, 216.02]], \"sentences\": [\"A man is standing with a fishing pole.\", \" He is fishing through a hole in the ice.\", \" He reels in a large fish that he caught.\"]}, \"v_sCj-ME5RkLY\": {\"duration\": 71.89, \"timestamps\": [[7.19, 71.89], [55.71, 56.79], [55.71, 71.89]], \"sentences\": [\"People are paying volleyball on a court.\", \" A girl falls down going for the ball.\", \" A girl in a white shirt is standing at the back.\"]}, \"v_a7YSE6dZ1yk\": {\"duration\": 125.95, \"timestamps\": [[0, 29.6], [24.56, 91.94], [91.31, 124.69]], \"sentences\": [\"A woman is seen smiling to the camera and pulling out a cook book.\", \" She brings out several ingredients and begins combining them into a bowl.\", \" She moves her arms out and changes into a plate of cookies laid out with her eating them.\"]}, \"v_Ld2a5ogu9k8\": {\"duration\": 36.13, \"timestamps\": [[0, 36.13], [7.05, 19.87], [19.51, 36.13]], \"sentences\": [\"A person is sitting on a bed.\", \" They put their socks on their feet.\", \" They then put their shoes on their feet.\"]}, \"v_3bi2XM3scQA\": {\"duration\": 52.06, \"timestamps\": [[0, 5.99], [9.89, 34.62], [35.14, 52.06]], \"sentences\": [\"A man is inside a horse stall.\", \" He lifts a barbell up to his chest.\", \" He then lifts it over his head and quickly drops it.\"]}, \"v_hoYF0DhYVOI\": {\"duration\": 72.03, \"timestamps\": [[0, 14.05], [15.49, 56.9], [58.34, 72.03]], \"sentences\": [\"A woman is standing behind a bar while she talks.\", \" She pours several drinks into a glass of ice.\", \" She mixes it all together, ready to serve.\"]}, \"v_jherly5DNjg\": {\"duration\": 35.9, \"timestamps\": [[0, 4.31], [4.67, 19.03], [19.03, 35.9]], \"sentences\": [\"A man sits on a horse while another person watches behind a fence.\", \" The man chases and lassos a cow.\", \" The man cheers and remounts the horse.\"]}, \"v_QokthYjtPzM\": {\"duration\": 112.9, \"timestamps\": [[0, 33.3], [13.55, 33.3], [33.3, 46.85], [59.83, 112.9]], \"sentences\": [\"A womans hand is shown on a counter.\", \" She then coats her nails with something.\", \" She then sprinkles glitter on them.\", \" Then she coats them with a finisher.\"]}, \"v_RMkaNGdydws\": {\"duration\": 173.11, \"timestamps\": [[0, 32.02], [27.7, 57.12], [50.2, 114.25], [111.65, 173.11]], \"sentences\": [\"The bald man is holding  a rectangular sign and talking to someone.\", \" The man placed the guid under the paper.\", \" The man cut the paper using a cutter and then he brushed the paper with a brush.\", \" The man placed the guide on top of the paper and cut it.\"]}, \"v_fnPX_0Rs4eE\": {\"duration\": 102.05, \"timestamps\": [[0, 10.72], [14.29, 70.42], [80.11, 102.05]], \"sentences\": [\"A female gymnast mounts a low beam in a gym.\", \" She stands on the beam, then does several jumps and flips.\", \" She dismounts, placing her arms in the air.\"]}, \"v_ETHVjrG7S4k\": {\"duration\": 67.18, \"timestamps\": [[0, 23.51], [17.47, 45.01], [47.36, 65.5]], \"sentences\": [\"Two men are seen walking towards the Camera while other people stand around them.\", \" The men then hop on a set of bars.\", \" The climb across the bars and cheer with other people.\"]}, \"v_cEVHZc_uT7c\": {\"duration\": 138.03, \"timestamps\": [[0, 15.18], [26.23, 93.86], [94.55, 138.03]], \"sentences\": [\"A view is seen of a river from the edge.\", \" Some people walk down to the river with a bucket.\", \" They use the bucket and rocks to wash their clothes.\"]}, \"v_52PO939EtGw\": {\"duration\": 64.25, \"timestamps\": [[0, 15.42], [12.21, 40.16], [38.55, 62.97]], \"sentences\": [\"A close up of a machine is shown that pans over to bottles.\", \" The camera pans around a fence and shown a man spraying paint.\", \" The man shows off his gear in the end.\"]}, \"v_kbe4iowYMqM\": {\"duration\": 139.99, \"timestamps\": [[0, 40.6], [25.2, 88.9], [79.8, 137.19]], \"sentences\": [\"a woman stands in a kitchen a begins talking.\", \" the woman points to several items on her counter.\", \" the woman the begins preparing a meal.\"]}, \"v_uwLM5n-rYmA\": {\"duration\": 177.45, \"timestamps\": [[0, 18.63], [18.63, 111.79], [111.79, 150.83], [150.83, 177.45]], \"sentences\": [\"A weight trainer explains flexing and stretching for proper squat position.\", \" The weight lifter without a shirt gets into the squat position without any weight and rocks back and forth for flexing and stretching.\", \" The weight lifter then uses weights resting on his knees while in the squatting position.\", \" The weight lifter then slides the weights off of his knees onto the floor.\"]}, \"v_nIymjHWIz7Y\": {\"duration\": 15.23, \"timestamps\": [[0, 2.28], [1.14, 4.42], [2.74, 15.23]], \"sentences\": [\"two men stand on a diving board.\", \" both mean turn their backs to the diving board.\", \" in unison, both men jump backwards off of the diving board into a pool of water.\"]}, \"v_z1tV0-C3IBw\": {\"duration\": 15.28, \"timestamps\": [[0, 3.21], [3.36, 10.08], [9.47, 14.9]], \"sentences\": [\"A man is seen pushing a lawn mower along the yard.\", \" He moves the object back and fourth.\", \" He continues cutting the grass while looking to the camera.\"]}, \"v_zSeLjjo3KF0\": {\"duration\": 61.38, \"timestamps\": [[0, 20.26], [20.26, 35.6], [34.99, 61.38]], \"sentences\": [\"A man stands on the edge of a bridge while another man checks his bungee jumping harness.\", \" The first man grips the bridge railing and prepares to jump off the bridge.\", \" The first man jumps off the bridge while the second man throws a rope down alongside.\"]}, \"v_unI7FhokvbM\": {\"duration\": 125.03, \"timestamps\": [[0, 19.38], [20, 80.02], [75.02, 121.9]], \"sentences\": [\"Various tools are seen laid out and a woman is seen sweeping the floor.\", \" She lays out carpet and then cuts it and measures it.\", \" The finishes laying carpets on the ground and smiles to the camera.\"]}, \"v_XxfatT0sWXw\": {\"duration\": 150.3, \"timestamps\": [[0, 142.79], [48.1, 92.44], [145.04, 145.79], [146.55, 147.3], [149.55, 150.3]], \"sentences\": [\"A guy is spinning and flipping while twirling a baton in a gym floor.\", \" The guy twirls the baton around his upper body.\", \" The guy picks up the fallen baton from the gym floor.\", \" The guy bows with one hand extended.\", \" The guy turns to leave after posing.\"]}, \"v_Ujm7CiWkOBY\": {\"duration\": 137.09, \"timestamps\": [[8.23, 69.92], [73.34, 94.59], [104.87, 114.47]], \"sentences\": [\"People are standing in a room talking.\", \" A man picks up a pool stick and puts glasses on.\", \" He shoots a pool ball into a pocket.\"]}, \"v_sODu6d-3zAQ\": {\"duration\": 89.89, \"timestamps\": [[0, 89.89], [0, 25.17], [25.17, 44.04], [44.04, 89.89]], \"sentences\": [\"A girl in jeans and a black shirt is holding a sparkly silver hula hoop.\", \" She talks for awhile and then steps through the hoop with both legs.\", \" She places it on her waist and spins it for a little bit, then stops.\", \" After that she talks for a bit more and then spins it on her hips for a while again.\"]}, \"v_S8RXX1uOGgQ\": {\"duration\": 194.35, \"timestamps\": [[0, 65.11], [49.56, 134.1], [114.67, 192.41]], \"sentences\": [\"A person is seen riding on the water on a wake board and falling into the water.\", \" Several more people are shown afterwards attempting to stand by falling.\", \" Afterwards they are shown again riding the board successfully.\"]}, \"v_g_Cz69Q5bKM\": {\"duration\": 44.24, \"timestamps\": [[0, 14.82], [11.06, 31.19], [26.76, 41.36]], \"sentences\": [\"Two people are seen are hitting a ball around in a room.\", \" The men hold tennis rackets and continue hitting the ball.\", \" The men run around hitting the ball.\"]}, \"v_dP2DgvNt12Y\": {\"duration\": 72.83, \"timestamps\": [[0.73, 69.92], [0.73, 4.73], [4.73, 15.29], [15.29, 71.74]], \"sentences\": [\"A man videotapes himself and a group of workers blowing leaves in the front yard of an apartment complex.\", \"  A man, in a black t-shirt, talks to himself while walking and recording himself with a camera.\", \"  The man approaches a group of yard workers with leaf blowing machines strapped to their backs as they blow leaves into a pile on the front yard of an apartment complex.\", \"  The man tapes them and then himself again as he walks between the men working on the yard.\"]}, \"v__crwKCjKRjg\": {\"duration\": 190.4, \"timestamps\": [[0, 17.14], [19.99, 92.35], [97.11, 190.4]], \"sentences\": [\"A group of kids are playing on bumper cars.\", \" They are driving the cars around, bumping into each other.\", \" They spin the wheels hard, trying to hit each other.\"]}, \"v_C03QJbrKzaw\": {\"duration\": 126.02, \"timestamps\": [[0, 6.3], [15.12, 71.83], [85.69, 126.02]], \"sentences\": [\"A hedge is shown up close.\", \" A bunch of tools for trimming the hedge are displayed.\", \" A man shows how to trim the hedge and shape it.\"]}, \"v_2UfljrwzsLs\": {\"duration\": 67.27, \"timestamps\": [[0, 8.41], [8.41, 19.84], [19.84, 52.13], [52.13, 67.27]], \"sentences\": [\"Two girls are sitting in a room while one of the girls files the other girl's nails.\", \" Next, the girl begins to clip the other girl's nails as she screams in pain.\", \" The girl then continues to file the girl's nails and she fights her and tries to get her to stop.\", \" The girl finally looks at her nails and decides that she likes them.\"]}, \"v_y1IjkACdnfs\": {\"duration\": 28.84, \"timestamps\": [[0, 10.82], [10.53, 19.03], [18.6, 19.32]], \"sentences\": [\"A person is riding a motor bike on a dirt trail.\", \" The person goes over a dirt hill on the trail.\", \" A man in a black jacket is filming the biker.\"]}, \"v_WaXfGbfUYJg\": {\"duration\": 223.77, \"timestamps\": [[32.45, 40.28], [58.18, 62.66], [91.75, 98.46]], \"sentences\": [\"Woman applies a base coat to her fingernail.\", \"  Woman applies white nail polish to her fingernail.\", \"  Woman applies a coat of nail polish remover to her fingernail.\"]}, \"v_jW1isCO6MYk\": {\"duration\": 26.12, \"timestamps\": [[0, 10.19], [9.01, 14.5], [13.85, 26.12]], \"sentences\": [\"The young male hold the little girl's chest as she go through the monkey bar.\", \" The young boy assisted the little girl as she go down the ladder.\", \" The little girl went back to the other side of the monkey bars as the young boy guided her by holding her underarms.\"]}, \"v_bCD6_kGsF9A\": {\"duration\": 134.26, \"timestamps\": [[5.37, 15.44], [80.55, 82.57], [114.12, 119.49]], \"sentences\": [\"Woman wearing blue jeans starts doing a skating routine.\", \"  A woman wearing blue jeans skates on one leg.\", \"  Woman wearing blue jeans spins around on skates.\"]}, \"v_kShrO0yutUQ\": {\"duration\": 223.7, \"timestamps\": [[0, 20.13], [15.66, 45.86], [17.9, 38.03], [43.62, 216.99], [121.92, 216.99]], \"sentences\": [\"Oregon daily emerald logo and title card pops up.\", \" The word BIKE is overlaid on a mountain scene.\", \" REPAIR is then overlaid under BIKE, Becoming BIKE REPAIR.\", \" The instructions follow with a man in a white ensemble and purple hat.\", \" He is serving up Portland co-op Eco-consciousness realness repair.\"]}, \"v_zufK6CufVhA\": {\"duration\": 169.23, \"timestamps\": [[0, 23.69], [23.69, 77], [77, 169.23]], \"sentences\": [\"First the man wakes up with his eyes buck wide and he washes his face and gets dressed.\", \" Then he heads outside and plays a game of solo shuffle and he scores good points.\", \" He even pushes the ball using a strange angle and the ball still makes it to number 10.\"]}, \"v_TSO5Phe2ZM4\": {\"duration\": 125.23, \"timestamps\": [[0, 1.88], [2.5, 63.24], [63.87, 65.12], [65.74, 123.97], [108.95, 123.97], [124.6, 125.23]], \"sentences\": [\"The credits of a clip are shown.\", \" Two guys are playing racquetball.\", \" The credits of a video are shown.\", \" A guy plays racquetball alone.\", \" A guy picks up some of the racquetballs and load it into the black machine.\", \" The credits of a capture are shown.\"]}, \"v_ngxs6ngJR4k\": {\"duration\": 228.69, \"timestamps\": [[0, 20.58], [21.73, 44.6], [45.74, 64.03], [70.9, 137.22], [139.5, 190.96], [193.25, 200.11]], \"sentences\": [\"A man removes the front tire of the bike from the frame.\", \" The man replaces the tire on the front rim and pumps it up.\", \" The man reinstalls the front tire onto the bike frame.\", \" The man shows an electric piece of equipment then fastens it to the seat post.\", \" The man removes the handlebar grips and slides on electrical controls.\", \" The man installs a headlamp to the bike.\"]}, \"v_iXF01UxOtLI\": {\"duration\": 215.32999999999998, \"timestamps\": [[0, 69.98], [63.52, 166.88], [148.58, 212.1]], \"sentences\": [\"Several clips are shown of people performing soccer tricks around other players.\", \" People kick the ball past one another while the camera captures their movements.\", \" The men continue playing around with one another in many more clips.\"]}, \"v_rfH9VLQAuwY\": {\"duration\": 39.24, \"timestamps\": [[0, 9.81], [7.85, 30.8], [29.43, 38.65]], \"sentences\": [\"Various pictures are shown of people standing around on shuffleboard courses.\", \" The pictures continue with people playing the game as well as smiling into the camera.\", \" More pictures are shown in the end.\"]}, \"v_hjuvoK5En4s\": {\"duration\": 12.03, \"timestamps\": [[0, 2.04], [2.47, 8.72], [9.14, 12.03]], \"sentences\": [\"A group of children are playing on a playground.\", \" A little girl stands in the middle and watches.\", \" She walks over to help push a friend.\"]}, \"v_b5NP9oI-urM\": {\"duration\": 5.94, \"timestamps\": [[0, 2.85], [0.86, 2.85], [1.45, 5.94]], \"sentences\": [\"The young boy pushed the Christmas tree.\", \" The boy walked away from the Christmas tree.\", \" The young boy arranged the Christmas tree and picked up the envelopes from the ground.\"]}, \"v_ucHq8B0-1BA\": {\"duration\": 208.86, \"timestamps\": [[0, 106.52], [33.42, 146.2], [98.17, 201.55]], \"sentences\": [\"A young girl is seen walking near a horse while a woman brushes it.\", \" The girl walks all around playing with locks on the doors and helping the woman brush.\", \" She continues brushing the horse while looking to the camera and smiling.\"]}, \"v_MXDeLfF5rok\": {\"duration\": 167.74, \"timestamps\": [[0, 31.87], [31.03, 80.52], [52.84, 60.39], [140.06, 167.74]], \"sentences\": [\"a deep sea is shown with someone recording he ocean.\", \" a lot of windsurfers are on the sea.\", \" men are driving a boat in the sea.\", \" windsurfers get to the point of rturn and make a turn.\"]}, \"v_2wcD0wSzB5w\": {\"duration\": 150.09, \"timestamps\": [[6.75, 121.58], [29.27, 30.77], [132.83, 135.84]], \"sentences\": [\"Dogs are doing tricks on a field of grass.\", \" A dog jumps into a swimming pool.\", \"  People are standing on podiums holding up trophy's.\"]}, \"v_dGxJGvw_sUg\": {\"duration\": 102.31, \"timestamps\": [[0, 13.81], [14.83, 73.15], [79.29, 102.31]], \"sentences\": [\"several women are dancing in sprinklers on a lawn.\", \" They are then seen wearing cheerleader clothes as they do several dance moves.\", \" Men and boys watch as the story is told of an upcoming film.\"]}, \"v_thhFfqcOfJQ\": {\"duration\": 139.9, \"timestamps\": [[0, 20.29], [20.29, 72.05], [77.65, 139.9]], \"sentences\": [\"A woman is dancing up on a stage.\", \" She is leading a large group in zumba class.\", \" They all copy her moves and dance with her.\"]}, \"v__XRJk2oFwZw\": {\"duration\": 227.79, \"timestamps\": [[0, 227.79], [1.14, 227.79], [10.25, 76.31], [61.5, 92.25], [78.59, 112.76], [108.2, 134.39], [130.98, 176.54], [151.48, 186.79], [161.73, 192.48], [205.01, 227.79]], \"sentences\": [\"There are two teams playing cricket in an indoor cricket field that is covered by net on two sides.\", \" The two teams are represented by blue color and white color.\", \" The bowler from the blue teams hits an overhand ball to the batter.\", \" The bowler raises his hand to claim that the batter has not made a run.\", \" The fielders on the side field are waiting to guard the ball and prevent the batter from making runs.\", \" After the bowler causes batter get out by hitting the stumps behind him, the entire team cheers for their runs.\", \" The bowler bowls an overhand again to the batter and the batter hits it straight across.\", \" Again when the bowler hits an overhand, the batter tries to run to make a run but is stopped by the fielders who hit the ball on the stumps.\", \" The blue team continues playing as the bowler bowls more overhand balls to the batter.\", \" The batter then walks out and another batter from his team comes on the field while the blue team waits to start another round.\"]}, \"v_uDlyfvy0NOs\": {\"duration\": 80.18, \"timestamps\": [[0, 80.18], [2, 76.17], [10.02, 16.84], [15.63, 56.13], [52.52, 80.18]], \"sentences\": [\"There's a man standing in the hot sun on an extremely hot day with very high temperatures, showing how he can bake cookies in the open without using an oven.\", \" He is standing in a parking lot where several other cars are parked.\", \" He points to a times to show the time it takes to bake the cookies.\", \" He places some raw cookie dough on a baking sheet and places the sheet on the hood of his car in the strong sunlight.\", \" He then shows how the cookie dough begins melting and even baking in the heat of the sunlight.\"]}, \"v_spZ_RrpyNJw\": {\"duration\": 112.12, \"timestamps\": [[0, 10.09], [23.55, 44.85], [46.53, 53.82], [82.41, 88.01], [0, 112.12], [105.39, 112.12]], \"sentences\": [\"A person breaks the racked balls on pool miniature pool table.\", \" The person shoots balls into the pockets making each shot he takes.\", \" The man misses a shot but gets it on the second shot.\", \" The man scratches the ball and takes it back out of the pocket.\", \" The person plays a game of pool by himself.\", \" The person makes the eight ball and finishes the game.\"]}, \"v_ekbZecn088U\": {\"duration\": 220.45, \"timestamps\": [[0, 6.61], [11.02, 18.74], [0, 207.22], [170.85, 207.22]], \"sentences\": [\"The boy nods his head dancing.\", \" The boy holds up and shows the lit cigarette.\", \" A kid smokes a cigarette sitting in his bedroom.\", \" The kid turns off the light and continues smoking a cigarette.\"]}, \"v_VI2qAFwvPSc\": {\"duration\": 101.12, \"timestamps\": [[0, 17.19], [18.2, 69.27], [73.31, 101.12]], \"sentences\": [\"Several people are gathered inside a kitchen.\", \" Two of them start twirling and dancing.\", \" A little girl runs over to be picked up by her father as they continue dancing.\"]}, \"v_Tw1vg9qWLx0\": {\"duration\": 150.13, \"timestamps\": [[0, 21.02], [25.52, 93.83], [106.59, 150.13]], \"sentences\": [\"A boy is standing outside in a yard.\", \" He is playing a game of croquette.\", \" He shows the bats and balls, and explains the technique.\"]}, \"v_oIEDMaMo7UE\": {\"duration\": 9.71, \"timestamps\": [[0, 1.12], [1.65, 4.61], [5.73, 9.71]], \"sentences\": [\"A male athlete is standing in a circle.\", \" He spins several times while holding a chain.\", \" He releases the ball and it sails through the air.\"]}, \"v_mbB7UFoTwpo\": {\"duration\": 60.12, \"timestamps\": [[0, 17.43], [17.43, 25.25], [25.25, 30.66], [30.66, 60.12]], \"sentences\": [\"woman is talking in front of a camera in studio.\", \" woman is cleaning her face with a white soap.\", \" woman is in a laboratory talking to the camera.\", \" th woman is in the bathroom cleaning her face with circular moves with a soap and back in studio the woman keeps talking.\"]}, \"v_HgKZ4KAuhdI\": {\"duration\": 55.29, \"timestamps\": [[0, 11.61], [11.33, 22.94], [25.71, 45.61], [45.61, 51.69]], \"sentences\": [\"A woman is rubbing shampoo onto the tail of a horse.\", \" She sprays the tail with a red hose.\", \" She then uses a sponge on the back of the horse.\", \" She sprays the horse one more time with the hose.\"]}, \"v_4r6fQ5RvuGE\": {\"duration\": 96.78, \"timestamps\": [[0, 40.65], [9.19, 96.78], [0, 45.49], [0, 96.78]], \"sentences\": [\"Several people are in the ocean swimming an surfing.\", \" One of the surfers is shown riding a large wave and going up and down.\", \" The other people disappear from view as the man rides.\", \" The waves crash up and down to carry the surfer over the water.\"]}, \"v_ma9R2AjCRZE\": {\"duration\": 175.07999999999998, \"timestamps\": [[0, 21.88], [28.01, 101.55], [111.18, 175.08]], \"sentences\": [\"A sumo wrestler is walking up to another man in a field.\", \" They engage in a wrestling match togheter.\", \" They push and pull as people watch.\"]}, \"v_QVdsLRKpCT0\": {\"duration\": 60.65, \"timestamps\": [[0, 11.52], [13.34, 46.09], [47.61, 60.65]], \"sentences\": [\"A gymnast walks up to a beam in a gym.\", \" He mounts the beam, and does a hand stand.\", \" He then flips several times on the beam.\"]}, \"v_P5Y-b-lcBs0\": {\"duration\": 105.74000000000001, \"timestamps\": [[0, 26.44], [24.85, 82.48], [68.2, 103.63]], \"sentences\": [\"A close up of a pool table is shown with two people playing against one another.\", \" The people move all around the table and hit the ball past one another.\", \" The game continues and one girl walks away.\"]}, \"v_DWvFgDSAUzE\": {\"duration\": 19.83, \"timestamps\": [[0, 19.83], [0, 5.45], [5.35, 15.67]], \"sentences\": [\"A reclining woman knits with her hands.\", \" The woman talks without facing the camera.\", \" The woman smiles without facing the camera.\"]}, \"v_dzR4voNDZ7g\": {\"duration\": 129.15, \"timestamps\": [[0, 107.84], [23.25, 110.42], [115.59, 129.15]], \"sentences\": [\"A person canoes on a flat water.\", \"  A video then switches to a man navigating the river while drinking beers.\", \"  Finally, the man shows the view from hiking.\"]}, \"v_Zc7uU4Qwolc\": {\"duration\": 67.87, \"timestamps\": [[0, 12.9], [11.54, 43.44], [43.78, 67.87]], \"sentences\": [\"a girls stands with a violin in hand.\", \" the girl begins playing the violin.\", \" the girl then smiles at the camera while still playing the violin.\"]}, \"v_-LtQMRfj0eM\": {\"duration\": 227.73, \"timestamps\": [[0, 81.98], [67.18, 162.83], [144.61, 215.21]], \"sentences\": [\"A man is seen walking into frame with a chainsaw and begins using it on a tree.\", \" He moves all along the tree cutting the sides all around.\", \" He continues cutting the tree while the camera watches him from several angles.\"]}, \"v_Mx6Gt14tnmY\": {\"duration\": 141.06, \"timestamps\": [[0, 12.7], [13.4, 67], [74.06, 141.06]], \"sentences\": [\"A view of a busy city street is shown.\", \" Several people are shown in various shopping centers.\", \" A man sits down and gets a manicure on his finger nails.\"]}, \"v_CtQ25XC45As\": {\"duration\": 135.34, \"timestamps\": [[0, 44.66], [37.22, 96.77], [85.94, 129.93]], \"sentences\": [\"People are seen walking around a gym and run towards the middle.\", \" The kids then play a game of dodgeball against one another.\", \" One team wins and cheers with one another as they line up to receive a trophy.\"]}, \"v_6J0IdWi4O0Q\": {\"duration\": 58.6, \"timestamps\": [[0, 58.6], [2.64, 21.68], [9.08, 22.27], [23.15, 58.6]], \"sentences\": [\"A man in a tank top stands on a court.\", \" He bounces a tennis ball on the ground.\", \" He hits the ball into the trees.\", \" He hits another ball into a net.\"]}, \"v_pWotXONgXtc\": {\"duration\": 206.57, \"timestamps\": [[0, 206.57], [0, 1.03], [1.03, 102.25], [102.25, 195.2]], \"sentences\": [\"Two men play wall tennis in a gym room with hardwood floors and a glass wall.\", \"  Two men are in a gym room alone, together, wearing black gym shorts and t-shirts.\", \"  The two men begin to play wall tennis hitting the tennis ball against the wall back and forth.\", \"  The men continue to play tennis with each man at different times dominating the ball.\"]}, \"v_J2gGPC98yec\": {\"duration\": 21.9, \"timestamps\": [[0, 4.16], [5.58, 16.31], [16.75, 21.9]], \"sentences\": [\"Several players are gathered on an indoor field.\", \" A man walks up holding a ball in his hand.\", \" He spins a few times, then lets go of the ball.\"]}, \"v_VeWdsZb5tog\": {\"duration\": 160.06, \"timestamps\": [[0, 13.6], [19.21, 49.62], [66.42, 160.06]], \"sentences\": [\"A couple of girls are standing outside of a house.\", \" They are laughing and talking, playing with their hair.\", \" They are then shown playing several games of hopscotch.\"]}, \"v_8jyqeivzs2M\": {\"duration\": 182.95, \"timestamps\": [[0, 82.33], [82.33, 161.91], [161.91, 182.95]], \"sentences\": [\"green paste is in a pot and is mixed with milk.\", \" the pasta is pour in the pot with the sauce and cheese.\", \" when ready the pasta is serve in a white plate.\"]}, \"v_ow9bWn5gOvg\": {\"duration\": 223.93, \"timestamps\": [[0, 14.56], [15.68, 64.94], [64.94, 223.93], [78.38, 127.64], [126.52, 223.93]], \"sentences\": [\"A man in is talking in a kitchen with a knife, a chopping board and bowl in front of him.\", \" He lifts a sharpening stone from the yellow green bowl filled with water and talk about if for a while.\", \" He lifts the knife and starts sharpening the knife with the stone and the talking continues.\", \" He shows something and put between the stone and knife but put it away before sharpening the knife, he repeat the procedure before dipping the knife in water.\", \" He repeat his way of sharpening  the knife with coin then dips it in water then sharpen it again.\"]}, \"v_Q6KyDc24uSk\": {\"duration\": 224.86, \"timestamps\": [[0, 64.09], [46.1, 150.66], [145.04, 224.86]], \"sentences\": [\"three pool balls are on a pool table.\", \" a man takes a pool stick and shoots the que ball towards the colored balls.\", \" the man demonstrates several shots and angles.\"]}, \"v_1scjpxusQx0\": {\"duration\": 210.86, \"timestamps\": [[3.16, 56.93], [55.88, 150.77], [129.68, 200.32]], \"sentences\": [\"A large group of people are seen standing around and speaking to one another.\", \" Several clips are shown of people afterwards jumping rope with one another.\", \" The people compete against one another performing jump roping tricks and routines one after the other.\"]}, \"v_-oJb3Acw-_s\": {\"duration\": 191.8, \"timestamps\": [[0, 59.46], [48.91, 140.97], [132.34, 188.92]], \"sentences\": [\"A man is seen speaking and smiling to the camera and shows a woman wiping his face.\", \" The woman then holds up a tool to his face and pierces the man's lip.\", \" The woman puts a ring in the lip and the boy shows it off in the end.\"]}, \"v_PKEw32TJRWs\": {\"duration\": 230.95, \"timestamps\": [[0, 106.24], [106.24, 230.95], [155.89, 230.95]], \"sentences\": [\"people are doing wakeboard on a lake.\", \" the man falls of the boat and its doing wakeboard again.\", \" man is with one foot holding the rope.\"]}, \"v_ykdRdg1XvFM\": {\"duration\": 94.13, \"timestamps\": [[0, 5.65], [6.59, 90.84], [80.01, 94.13]], \"sentences\": [\"A man sits down in his kitchen making himself comfortable.\", \" He starts playing accordion, enjoying and feeling the rhythm.\", \" The dog come to him, he stops playing then brush his dog's hair.\"]}, \"v_4ZoBfU4b5Ko\": {\"duration\": 62.86, \"timestamps\": [[0.94, 15.09], [11.31, 51.86], [43.69, 62.86]], \"sentences\": [\"The young lady part her hair and blow dry her hair.\", \" The lady blow dry other parts of her hair.\", \" The lady put a white cream on her hair.\"]}, \"v_oSoi5owiybU\": {\"duration\": 61.32, \"timestamps\": [[0, 10.12], [10.43, 24.22], [33.73, 61.32]], \"sentences\": [\"A man in black stands in front of a line of people racing at the finish and puts a medal around the head of a 101 year old man.\", \" We see a paper with a head line and a cityscape.\", \" We see an older man with a gray beard in a turban running in marathons and on a race track.\"]}, \"v_CfDdbeAk8LE\": {\"duration\": 15.35, \"timestamps\": [[0, 1.23], [1.38, 14.04], [14.5, 14.74], [14.81, 15.35]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy that is wearing a helmet is welding.\", \" The guy removes his helmet.\", \" The credits of the video are shown.\"]}, \"v_TDROfnEk0NQ\": {\"duration\": 220.47, \"timestamps\": [[0, 220.47], [15.43, 108.03], [108.03, 217.17]], \"sentences\": [\"This video teaches viewers how to shave a beard from your face.\", \" The man shaves using the cream on his face and he removes most of his facial hair.\", \" Then he adds more shaving cream to his face and takes it off again to shave with an electric razor.\"]}, \"v_HlYwtqJALns\": {\"duration\": 14.88, \"timestamps\": [[0, 14.88], [2.31, 5.06], [7.52, 9.82], [11.39, 14.88]], \"sentences\": [\"A girl is outside practicing baton twirling.\", \"  She throws the baton up in the air, does a cartwheel, and then catches the baton.\", \"   She then throws the baton in the air again does another cartwheel and catches the baton.\", \"  The girl then tosses the baton in the air spins around catching the baton with a hand behind her back and poses.\"]}, \"v_9ukVV07rszg\": {\"duration\": 194.21, \"timestamps\": [[42.73, 173.82], [92.25, 95.16], [175.76, 183.53]], \"sentences\": [\"Two people are playing a game of fencing.\", \" The crowd cheers for them as they play.\", \" A woman takes off her hat and holds it.\"]}, \"v_uyr3E9ZReAw\": {\"duration\": 145.46, \"timestamps\": [[0, 32.73], [37.09, 111.28], [116.37, 145.46]], \"sentences\": [\"Several shots are shown of soccer players.\", \" A group of news casters are outside talking about the game.\", \" A game in progress is being shown and talked about.\"]}, \"v_KzZlSbM16aY\": {\"duration\": 99.87, \"timestamps\": [[0, 24.97], [23.47, 58.92], [93.38, 99.87]], \"sentences\": [\"A woman points at music notes on a stand.\", \" She picks up a flute and puts her fingers on the pads.\", \" She lifts the flute up and starts playing it.\"]}, \"v_mZ1Di2gg-I4\": {\"duration\": 209.05, \"timestamps\": [[0, 5.23], [5.23, 43.9], [43.9, 70.03], [70.03, 203.82], [203.82, 209.05]], \"sentences\": [\"An Asian woman is dressed in all white and is standing on a stage alone.\", \"The woman slowly starts to move and does various karate movements in slow motion that it almost looks like a dance.\", \"The woman speeds it up a little and jumps and kicks and lands on her feet and continues on with her karate routine.\", \"The woman slowly lifts her left leg all the way up to her head level,squats to the ground slowly with her leg still pointing up then stands up and never loses her balance when she's balancing on just one foot and she continues to do her routine until the finish.\", \"When she's done she brings her hands together in the front of her to indicate she's done, then turns and walks off the stage.\"]}, \"v_38ZxXyECPPU\": {\"duration\": 112.18, \"timestamps\": [[0, 2.8], [3.37, 13.46], [14.02, 20.75], [21.31, 74.04], [14.02, 107.69], [83.01, 98.71], [108.25, 112.18]], \"sentences\": [\"A white screen appears as pieces of a map fall in it showing a map of Brazil along with a logo with green letters.\", \"  There is various footage of capoeira matches with white letters on the screen.\", \"  A black screen appears with white letters coming in and out of frame from the right and the left and then leaving off screen.\", \"  A man is showing a capoeria sequence while there is white text at the top corner of the screen as well as breaks with a black screen highlighting for steps when the sequence changes, and other hints for training.\", \"  There is various breaks in the video with black screens with white text.\", \" The footage changes showing various capoeria matches.\", \" A black screen appears with a website address in white letters.\"]}, \"v_AmhfmeKk6Bg\": {\"duration\": 22.5, \"timestamps\": [[0, 4.95], [5.18, 15.41], [15.41, 21.94]], \"sentences\": [\"A woman is seen brushing the hair of another girl.\", \" The girl sitting moves her face around while the other still brushes.\", \" The girls continue to brush the other's hair.\"]}, \"v_wnnoaLzYqVQ\": {\"duration\": 180.51, \"timestamps\": [[0, 24.37], [34.3, 101.09], [106.5, 180.51]], \"sentences\": [\"Several people are lined up to get into the water.\", \" They get into rafts and paddle away.\", \" They race each other past several markers.\"]}, \"v_k85EQoiLckw\": {\"duration\": 80.18, \"timestamps\": [[0, 19.64], [18.04, 53.32], [49.31, 78.17]], \"sentences\": [\"A woman is speaking to the camera and holding up a bottle of polish.\", \" She holds up shoes and begins wiping them down.\", \" She demonstrates how to clean the shoes while still speaking.\"]}, \"v_61wzTjdnXe4\": {\"duration\": 183.69, \"timestamps\": [[0, 39.49], [45.92, 137.77], [146.96, 183.69]], \"sentences\": [\"A scuba diver is swimming under the ocean water.\", \" He comes face to face with an odd looking fish.\", \" He tries to touch it, but it always swims away.\"]}, \"v_fOgfpA9MTOQ\": {\"duration\": 32.42, \"timestamps\": [[0, 11.83], [11.99, 17.34], [17.5, 32.42]], \"sentences\": [\"A small audience watches a rodeo in a large indoor stadium.\", \" A calf is let loose and a cowboy on a horse quickly ropes him.\", \" The cowboy flips the calf and ties it up.\"]}, \"v_f6Id4KERnoI\": {\"duration\": 144.45, \"timestamps\": [[0, 144.45], [0.72, 144.45], [137.95, 144.45]], \"sentences\": [\"A woman is kneeling down painting a chair.\", \" A little girl is standing next to her painting the chair.\", \" The girl dips the brush into a can of paint.\"]}, \"v_a0Zlu4AvdnI\": {\"duration\": 52.18, \"timestamps\": [[0.52, 16.44], [15.65, 38.61], [36.52, 49.57]], \"sentences\": [\"A woman is seen speaking to the camera and making a piece sign.\", \" She points to a person mowing the lawn in the distance.\", \" She continues walking around the yard.\"]}, \"v_hcFw88RcAbo\": {\"duration\": 84.15, \"timestamps\": [[0, 10.1], [10.94, 27.77], [17.25, 60.17], [62.27, 83.31]], \"sentences\": [\"The student ministry black logo appears on the screen.\", \" A dark hallway is seen and a shadow of a man.\", \" The man is talking to the camera.\", \" He mops the entire floor in darkness.\"]}, \"v_JZN0L8pp5hY\": {\"duration\": 27.33, \"timestamps\": [[0, 7.24], [6.97, 19.68], [17.22, 26.65]], \"sentences\": [\"A large group of people are seen riding on camels.\", \" Men lead the camels around on the dirt.\", \" The people continue to ride around on the camels.\"]}, \"v_xSWpGhhM1H8\": {\"duration\": 66.39, \"timestamps\": [[0, 8.96], [8.96, 44.48], [46.47, 66.39]], \"sentences\": [\"Several people are gathered in a yard behind a large house.\", \" They stretch a rope over a small mud pit.\", \" They engage in a game of tug of war together.\"]}, \"v_6y_gnZgf0N8\": {\"duration\": 11.56, \"timestamps\": [[0, 11.56], [0, 1.62], [4.45, 6.13], [8.9, 9.31], [11.51, 11.56]], \"sentences\": [\"Guy are wrestling in a wrestling box.\", \" A wrestler and the referee push on each other.\", \" The wrestler lifts a guy in a black jersey.\", \" The wrestler's partner throws the guy to the floor.\", \" All three wrestlers lay on the floor.\"]}, \"v_aLv03Fznf5A\": {\"duration\": 33.67, \"timestamps\": [[0, 33.33], [0, 33.67], [23.06, 33.67]], \"sentences\": [\"musculous man is doing gymnastics in a balance beam.\", \" in the background kids are sitting on benches in front of a court.\", \" men are watching the man ding gymnasics in the beam.\"]}, \"v_S5zweEQSnho\": {\"duration\": 135.43, \"timestamps\": [[0, 37.24], [38.6, 98.19], [86, 132.72]], \"sentences\": [\"A man is seen speaking to the camera while moving his arms around.\", \" Another man is seen swinging a tennis racket several times.\", \" The first man speaks again to demonstrate how to play tennis.\"]}, \"v_eUCVKv4R-7A\": {\"duration\": 140.88, \"timestamps\": [[0, 2.11], [2.11, 140.88], [104.95, 107.07]], \"sentences\": [\"People are sitting in kayaks on the sand.\", \" They being to kayak down a river.\", \" A kayak flips over into the water.\"]}, \"v_EbQJuDQdW8U\": {\"duration\": 124.13, \"timestamps\": [[0, 3.1], [3.72, 44.69], [45.31, 121.65], [122.27, 124.13]], \"sentences\": [\"A lady speaks directly to the camera.\", \" The lady moves a shirt around on an ironing board.\", \" A lady is ironing a button down shirt.\", \" The lady puts the iron down.\"]}, \"v_oFh_AGspaEQ\": {\"duration\": 113.55, \"timestamps\": [[0, 24.41], [44.85, 55.07], [94.81, 99.35]], \"sentences\": [\"Man in white shirt wipes down the wood.\", \"  Man applies an alcohol-based stain.\", \"  The man in a white shirt holds up the wood.\"]}, \"v_3X6eP273RoI\": {\"duration\": 151.57999999999998, \"timestamps\": [[0, 40.93], [37.9, 109.9], [100.8, 149.31]], \"sentences\": [\"Several food items are shown laid out as well as eggs boiling in a pot.\", \" A person cuts up ingredients and mixes them into a bowl.\", \" She puts more ingredients in the bowl and spoons it onto a sandwich.\"]}, \"v_sfT9Siql3P8\": {\"duration\": 34.53, \"timestamps\": [[0, 5.35], [5.87, 13.29], [14.5, 34.53]], \"sentences\": [\"Several kids are playing in bumper cars.\", \" They ride the cars around the floor, bumping each other.\", \" The continue bumping into each other as they play.\"]}, \"v_y8ENWnuzCIE\": {\"duration\": 38.13, \"timestamps\": [[0, 37.56], [4.19, 13.54], [28.41, 37.75], [22.11, 37.75]], \"sentences\": [\"A girl is sitting in a chair with a gloved man with his hands in her mouth.\", \" She is getting a piercing and the man is about to start.\", \" He sticks the needle through her bottom lip.\", \" Her new lip piercing is complete.\"]}, \"v_vh55SaEpuws\": {\"duration\": 71.5, \"timestamps\": [[0, 13.58], [8.22, 31.82], [34.68, 71.5]], \"sentences\": [\"a young man stares out of a window.\", \" an elder woman enters the room and starts talking to the man.\", \" the woman and the man then sit and peel potatoes together.\"]}, \"v_3SLaaTD8t3Q\": {\"duration\": 21.29, \"timestamps\": [[0.32, 5.43], [5, 13.2], [13.84, 20.44]], \"sentences\": [\"Two children are seen speaking to one another with a woman sitting on the floor.\", \" The kids help each other put sunscreen on.\", \" The woman then helps as the boy dances around.\"]}, \"v_UPfQNZl0_dg\": {\"duration\": 127.59, \"timestamps\": [[0, 121.85], [66.35, 70.18], [110.37, 112.28]], \"sentences\": [\"A person is sitting down putting makeup on their face.\", \" There is an open laptop on the desk in front of them.\", \" They turn around and talk to the camera.\"]}, \"v_txsupdxCToQ\": {\"duration\": 88.82, \"timestamps\": [[0, 88.82], [11.1, 80.82], [56.4, 88.82]], \"sentences\": [\"A guy does roller blading on the ramps.\", \"  The man takes off his shirt and then continues to do tricks.\", \"  He falls down and then is interviewed.\"]}, \"v_-M-Dr6HqDhU\": {\"duration\": 53.69, \"timestamps\": [[0, 15.3], [11.54, 31.67], [27.38, 53.69]], \"sentences\": [\"The woman crouched in front of the chair and put down the bowl.\", \" The woman scrub the chair with yellow cloth.\", \" The woman began painting the chair red.\"]}, \"v_ynUBEoobKW0\": {\"duration\": 40.8, \"timestamps\": [[0, 5.1], [5.1, 17.34], [17.54, 40.8], [13.67, 40.8]], \"sentences\": [\"A crowd of people are seen inside of a gymnasium preparing to watch a gymnast's routine.\", \"After a few seconds,two girls dressed in the same black and green leotard begin their performance.\", \"They start out with their hands to the sky and tumbling around on the ground.\", \"During their performance,a long lady to their right is performing on a balance beam as well.\"]}, \"v_OaG9uH7BgjI\": {\"duration\": 84.73, \"timestamps\": [[0, 20.34], [20.76, 36.86], [34.74, 46.18], [56.35, 76.68]], \"sentences\": [\"Two women from the veterinarian clinic are giving a demonstration on how to clip cat nails.\", \" One woman holds the cat, while the other starts holding up a paw.\", \" The cat begins to pull away slightly, out of fear of being hurt.\", \" The vet then clips the cat nails carefully, and the cat feels much better after all is done.\"]}, \"v_upoS4Jct7kE\": {\"duration\": 90.53999999999999, \"timestamps\": [[0, 21.28], [22.18, 62.92], [72.43, 90.08]], \"sentences\": [\"A man is seen speaking to the camera and grabs a knife.\", \" He holds up a tomato and plate and begins sharpening the knife on the plate.\", \" Finally he cuts up the tomato.\"]}, \"v_te5xo60oVZM\": {\"duration\": 123.72, \"timestamps\": [[0, 13.61], [17.94, 80.42], [90.31, 123.72]], \"sentences\": [\"A woman is grooming a dog in a salon.\", \" She brushes the dogs hair and clips it.\", \" She continues grooming and clipping the dog's hair.\"]}, \"v_pLVCuSq560Y\": {\"duration\": 185.85, \"timestamps\": [[0, 26.02], [26.95, 95.71], [86.42, 146.82], [131.03, 183.07]], \"sentences\": [\"Two men are seen sitting at a table with people walking around them.\", \" A group of men are then seen playing a game of soccer with one another.\", \" They kick the ball around continuously while running after one another.\", \" They continue to play up and down the field.\"]}, \"v_q1yuDuO01tg\": {\"duration\": 95.39, \"timestamps\": [[0, 5.72], [5.25, 10.02], [10.97, 13.83], [13.83, 62.96], [62, 91.57]], \"sentences\": [\"A close up of tree branches is shown.\", \" A cable car line is shown.\", \" Two women are interviewed by a third.\", \" Scenes of two of the women getting on a cable car and bungee jumping nearly naked are shown.\", \" The two women are lowered to a mat on the ground by a crew.\"]}, \"v_FP0tI2Tjigs\": {\"duration\": 48.37, \"timestamps\": [[0, 7.74], [8.95, 35.31], [37, 48.37]], \"sentences\": [\"A boy is using a pretend vaccuum cleaner inside a house.\", \" Beside him, a man is using a real vacuum on a rug.\", \" Together, they are cleaning the house.\"]}, \"v_RhEunVjB_Ns\": {\"duration\": 154.82999999999998, \"timestamps\": [[0, 17.81], [17.81, 132.38], [132.38, 154.83]], \"sentences\": [\"A large group of high school cheerleaders in a large indoor gym are in two different groups on the left and right and they immediately begin their cheer routine that includes flips and cheers that are mostly in unison.\", \" The girls separate into three groups and they hold one girl up above them while she poses, then the girl flips down into the group and they safely put them on the ground and resume their elaborate cheer routine that includes more flips, more cheers, and more of them holding certain girls up in the air as they pose.\", \"A blond girl in the front fumbles a little and almost loses her fall, but she recovers quickly and the cheerleaders finish their routine strong and they cheer and hug one another when it's over.\"]}, \"v_CAG75_XxmEE\": {\"duration\": 29.05, \"timestamps\": [[0, 29.05], [8.57, 10.46], [2.03, 8.71]], \"sentences\": [\"A man mows his front lawn with an electric power push mower.\", \" The person stops and pauses to look at the viewer.\", \" The man pushes through the bush to get the mower into the grass around the edge of the lawn.\"]}, \"v_S8oIiWRiIfE\": {\"duration\": 28.75, \"timestamps\": [[0, 2.59], [3.16, 21.85], [23.57, 28.75]], \"sentences\": [\"a boy is sitting on the trailer outside a building.\", \" He is talking to another couple of young men holding coffee cups.\", \" They continue talking as he holds his phone.\"]}, \"v_n-BJ753InB0\": {\"duration\": 254.93, \"timestamps\": [[0, 38.24], [47.16, 119.82], [135.11, 254.93]], \"sentences\": [\"a woman is standing next to a red SUV.\", \" the woman takes a large brush and starts to remove snow from the vehicle.\", \" a man then starts removing the snow off the vehicle.\"]}, \"v_prqwtY9cn6s\": {\"duration\": 100.87, \"timestamps\": [[0, 11.6], [11.1, 39.84], [37.32, 100.87]], \"sentences\": [\"a young man sits a piano locate on a sidewalk.\", \" the man plays the piano as a crowd watches.\", \" when the man finish playing a crowd cheers.\"]}, \"v_eeoQE0dbA6U\": {\"duration\": 201.02, \"timestamps\": [[0, 42.21], [51.26, 137.7], [135.69, 197]], \"sentences\": [\"A man is seen standing in the middle of a gym moving his arms up and down.\", \" The man then begins dancing around using a baton.\", \" The man swings his arms and legs around and presents them to the camera.\"]}, \"v_ZkIGGQ9iOSA\": {\"duration\": 48.67, \"timestamps\": [[0, 2.19], [2.19, 4.62], [4.62, 48.67]], \"sentences\": [\"A blonde woman is lying down next to a pool with her knees up and she sits up to kick her sandals off.\", \"The woman lays back down and starts doing situps.\", \"The woman flips her hair back while still doing situps and the camera person walks around and shows her at different angles.\"]}, \"v_izZqZFVpW4c\": {\"duration\": 174.48, \"timestamps\": [[0, 26.17], [27.04, 128.24], [137.84, 174.48]], \"sentences\": [\"A man is kneeling on a frozen lake.\", \" A video is shown of the cold waters below.\", \" A fish swims up to the bait and grabs it as the man reels it in.\"]}, \"v__xgGaxc1jNE\": {\"duration\": 184.27, \"timestamps\": [[0, 184.27], [0, 12.9], [11.98, 184.27]], \"sentences\": [\"A man faces the camera in front of a white wall with logos.\", \" The man smiles at the camera.\", \" The man talks to the camera.\"]}, \"v_mr2wnh2GwL8\": {\"duration\": 238.17000000000002, \"timestamps\": [[0, 63.11], [63.11, 194.11], [195.3, 227.45], [227.45, 238.17]], \"sentences\": [\"A white bridge appears along with the front of the Hyatt hotel before a bunch of people appear walking on the beach.\", \"As the camera travels across the beach,a group of boys begin putting buckets on top of the trash can upside down and filling them with dirt and water.\", \"The men the surround the dirt with shovels and lift the trash cans up to unveil the sand.\", \"After,the men begin carving into the sand and creating designs in the sand castle.\"]}, \"v_RNAUncQEASo\": {\"duration\": 122.95, \"timestamps\": [[0, 24.59], [24.59, 122.95], [72.54, 83.61]], \"sentences\": [\"A woman comes onto the screen to introduce a video about dog grooming and show the tools that she uses to clip the dog's hair.\", \" She begins to clip the dogs hair while it is standing on top of a grooming table.\", \" She stands the dog up and continues to clip the dog's hair.\"]}, \"v_jmerKGN0VPs\": {\"duration\": 47.18, \"timestamps\": [[0, 47.18], [1.18, 40.34], [40.58, 47.18]], \"sentences\": [\"A black car is parked in a parking lot.\", \" A man in a red shirt is spraying a car with a hose.\", \" He walks behind the car and continues spraying it.\"]}, \"v_M1-G6KEhY-M\": {\"duration\": 130.03, \"timestamps\": [[3.25, 126.13], [63.07, 106.63], [105.98, 114.43]], \"sentences\": [\"People are riding horses along the beach.\", \" A woman in a white jacket is riding on a horse on the beach.\", \" People are walking on the beach behind them.\"]}, \"v_ccirM2NGwMA\": {\"duration\": 17.0, \"timestamps\": [[0, 16.91], [0.93, 16.91], [1.44, 16.91], [2.38, 16.91]], \"sentences\": [\"A kid is in a bathroom.\", \" A man is sitting next to her.\", \" She is getting her hair dried.\", \" She is wearing a towel.\"]}, \"v_naCGjbEz1T8\": {\"duration\": 105.65, \"timestamps\": [[0, 17.43], [20.07, 71.31], [84.52, 105.65]], \"sentences\": [\"Two boys are alone in a room.\", \" They have a table covered in ingredients.\", \" They squeeze juice into a mug, then add the other ingredients to make a drink.\"]}, \"v_KNyM0KvDHMM\": {\"duration\": 189.87, \"timestamps\": [[0, 45.57], [47.47, 144.3], [127.21, 183.22]], \"sentences\": [\"A man is shown speaking to the camera and holding up various tools and products.\", \" He begins taking off a bike's handlebars and moving them around.\", \" He sprays down the handlebars and continues speaking.\"]}, \"v_9A3z0W8U124\": {\"duration\": 95.69, \"timestamps\": [[0, 16.27], [12.92, 28.71], [32.06, 62.2], [59.81, 95.69]], \"sentences\": [\"a girl stands in front of a balance beam.\", \" the girl hops on the balance beam and lands in a split.\", \" the girl then does several flips and tricks.\", \" the girl jumps off the balance beam and lands in a mount.\"]}, \"v_pKFBr0pMn7I\": {\"duration\": 60.58, \"timestamps\": [[0, 3.94], [4.24, 8.78], [9.09, 17.27], [17.87, 60.58]], \"sentences\": [\"A man in a grey shirt is in front of a Samsung logo.\", \" The camera pans to a couple in the bleachers sitting on red chairs.\", \" The man in the grey shirt runs along a path in the stadium with a pole and vaults over the bars.\", \" He is cheering and the audience cheers, and a replay is shown of the vault, at the end he is seen walking away and other people in the audience are shown.\"]}, \"v_VuiuqKX8srs\": {\"duration\": 123.95, \"timestamps\": [[0, 16.73], [21.07, 68.17], [89.24, 123.95]], \"sentences\": [\"Several people have gathered at the top of a snowy hill.\", \" They ride tubes all the way to the bottom.\", \" They slow down partway down the hill.\"]}, \"v_xbcP38aF5Ok\": {\"duration\": 176.89, \"timestamps\": [[0, 29.19], [25.65, 113.21], [113.21, 176.01]], \"sentences\": [\"A man is seen speaking to another and leads into the man performing gymnastics.\", \" The man does flips and shows a man speaking to a teacher in a class.\", \" The boys run around the school and outside and speak to one another.\"]}, \"v_TUPCQpyoSbI\": {\"duration\": 164.82, \"timestamps\": [[0, 15.66], [19.78, 74.99], [84.88, 164.82]], \"sentences\": [\"Several people walk up stairs into a building.\", \" They look at the various wares for sale.\", \" Then they are shown in a group, knitting with yarn.\"]}, \"v_gIgim1Dp8HU\": {\"duration\": 62.97, \"timestamps\": [[0, 62.34], [4.41, 62.34], [7.56, 62.34], [15.74, 62.34]], \"sentences\": [\"Two sumo wrestlers are in an arena.\", \" Several people are watching in a crowd.\", \" The is a referee that watches them.\", \" Eventually one of them wins the match.\"]}, \"v_mpLYUgMhacA\": {\"duration\": 61.32, \"timestamps\": [[0, 11.96], [14.72, 44.46], [46.61, 61.32]], \"sentences\": [\"A man is wearing a helmet and skating gear.\", \"  He is seen skating down the side of a road.\", \" He is moving very quickly, skating and keeping his balance.\"]}, \"v_OEQM6wYtYlk\": {\"duration\": 52.69, \"timestamps\": [[0, 10.01], [12.12, 37.67], [40.04, 52.69]], \"sentences\": [\"A man is walking up a slide on a playground.\", \" When he reaches the top, he pauses.\", \" Then he slides all the way to the bottom.\"]}, \"v_15IRaGI4Ml0\": {\"duration\": 184.03, \"timestamps\": [[0, 180.35], [7.36, 27.6], [15.64, 184.03], [97.54, 184.03]], \"sentences\": [\"A woman stands on exercise equipment.\", \" She is peddling up and down.\", \" The camera swoops back and forth as she exercises.\", \" She adjusts the panel several time.\"]}, \"v_291szrilAVE\": {\"duration\": 186.18, \"timestamps\": [[0, 43.75], [41.89, 132.19], [110.78, 173.15]], \"sentences\": [\"A young boy is seen grabbing an item out of a box and smiling to the camera.\", \" He puts the stilts on his feet and begins jumping around the area.\", \" He is shown jumping in several locations and smiling to the camera.\"]}, \"v_uLeJBFypCHE\": {\"duration\": 233.69, \"timestamps\": [[0, 75.95], [54.92, 142.55], [106.33, 197.46], [193.96, 227.84]], \"sentences\": [\"A man is seen riding in on a motorcycle in several clips as well as driving and speaking to another person.\", \" Several clips are shown of people wake boarding and leads into the man walking in with others and shaking another's hand.\", \" The man then performs several tricks on a wakeboard while people watch on the side and clap.\", \" The man takes several turns falling into the water and ends with people tubing and riding.\"]}, \"v_CQ4dPckD_Xc\": {\"duration\": 105.16, \"timestamps\": [[0, 16.83], [16.83, 39.44], [39.44, 105.16]], \"sentences\": [\"man is standing in a bowling wearing a red shirt and talking to the camera.\", \" the man grabs a bowl and throw it to the pins.\", \" the man talks to te camera and show how to hold it and throw the bawl while behind him other people are playing bowling.\"]}, \"v_L54gbbqtxOg\": {\"duration\": 61.51, \"timestamps\": [[0, 61.51], [0, 55.67], [55.67, 61.51]], \"sentences\": [\"A man is recording a woman in a garage.\", \" A woman is using white paint to paint a dresser while talking to a man recording her on camera.\", \" She looks at the camera right before the video ends and says something to the man.\"]}, \"v_JHuLY-ygFkc\": {\"duration\": 128.57, \"timestamps\": [[0, 33.43], [30.21, 90], [79.71, 125.35]], \"sentences\": [\"A large blackjack table is seen with people standing around the sides.\", \" The dealer then lays out the cards to the people playing.\", \" The players lay out cards and chips continuously with the dealer.\"]}, \"v_a0YyuiZVtFU\": {\"duration\": 27.54, \"timestamps\": [[0, 6.33], [6.33, 13.08], [13.77, 20.38], [20.38, 27.54]], \"sentences\": [\"A man is fighting another man both of them are on their knees.\", \" They are pretty extreme about it knocking each other down and stuff.\", \" They keep fighting and practicing and being very physical with one another not being very kind at all.\", \" One of the men grabs the other man by his arm and starts to pin him down.\"]}, \"v_UWgzslG97MQ\": {\"duration\": 220.39, \"timestamps\": [[0, 34.16], [40.77, 121.22], [127.83, 220.39]], \"sentences\": [\"A man is surfing through a large wave.\", \" They go over and under the waves as they surf.\", \" The waves crash around them as they continue to surf.\"]}, \"v_hPV-Z73KXak\": {\"duration\": 238.4, \"timestamps\": [[2.38, 8.34], [5.96, 8.34], [11.92, 35.76], [35.76, 201.45], [205.02, 231.25]], \"sentences\": [\"The camera zooms out from a close up view of a gong.\", \" An individual strikes the gong with a mallet.\", \" A man plays drums while doing tricks with the drumsticks.\", \" The man stops playing and talks to the camera while making occasional gestures with the drumsticks to illustrate points.\", \" The man plays the drums again while performing tricks with the drumsticks.\"]}, \"v_U7k6GFEOt7g\": {\"duration\": 202.73, \"timestamps\": [[0, 50.68], [50.68, 114.54], [114.54, 164.21], [164.21, 202.73]], \"sentences\": [\"A group of boys are in a lines forming an X,running across to each other,throwing the ball to the person diagonally across from them and hitting it.\", \"Once the drill is complete,the boys of the team form a huddle and begin talking.\", \"After,the boys begin a game of lacrosse in a large outdoor field.\", \"As the game continue,the ball continues to be thrown from team to team as they knock each other over and make try to score on each other.\"]}, \"v_z-ttrQ38mOc\": {\"duration\": 221.05, \"timestamps\": [[0, 29.84], [0, 221.05], [63, 221.05]], \"sentences\": [\"men is standing in stage playing frums.\", \" blonde woman wearnig a white dress is playing violin walking around the stage.\", \" behind the girl people are playing different instruments.\"]}, \"v_pnxgTQofPQo\": {\"duration\": 11.1, \"timestamps\": [[0, 10.99], [0, 3.94], [1.72, 8.1], [5.27, 10.38]], \"sentences\": [\"Four boys are playing outside in the dirt.\", \" They pick up one of the boys.\", \" They hold him on their shoulders.\", \" They then drop him to the ground.\"]}, \"v_e51ld7ANyQg\": {\"duration\": 167.86, \"timestamps\": [[0, 10.91], [10.91, 141], [141.84, 167.86]], \"sentences\": [\"people is standing in front of a lake posing for a picture.\", \" men are in a ice court playing curling.\", \" the man is talking to the camera in front of the court.\"]}, \"v_bh6VHVHMoo8\": {\"duration\": 26.59, \"timestamps\": [[4.65, 5.98], [12.5, 12.63], [20.6, 21.54]], \"sentences\": [\"The man pulls the silver cable toward him.\", \"  The man is kneeling on a board.\", \"  The man releases the silver cable.\"]}, \"v_K1TizK5Sg78\": {\"duration\": 221.22, \"timestamps\": [[0, 22.12], [32.08, 133.84], [136.05, 221.22]], \"sentences\": [\"A man is standing in front of a tiled wall.\", \" He lights up and smokes a cigarette.\", \" He continues smoking and standing with his arms crossed.\"]}, \"v_f11zga3X2L4\": {\"duration\": 132.73, \"timestamps\": [[0, 43.14], [39.15, 94.24], [84.94, 126.09]], \"sentences\": [\"A group of people are seen standing on a stage aiming bows and arrows.\", \" The people shoot arrows one after the other while people behind watch.\", \" More people shoot arrows and speak to people.\"]}, \"v_4qnrM4k6qN0\": {\"duration\": 227.41, \"timestamps\": [[0, 38.66], [42.07, 142.13], [146.68, 222.86]], \"sentences\": [\"A small group of people are seen playing soccer on an indoor field.\", \" The men continuously kick the ball around past one another.\", \" The men continue to play soccer in several different clips.\"]}, \"v_dPZfExDmX9Y\": {\"duration\": 180.07, \"timestamps\": [[0, 180.07], [47.72, 50.42], [47.72, 180.07]], \"sentences\": [\"A little girl is standing at a counter making a sandwich.\", \" She licks peanut butter off of her finger.\", \" She continues to put the peanut butter onto the sandwich.\"]}, \"v_4OCbTYrThtc\": {\"duration\": 126.01, \"timestamps\": [[0, 30.87], [34.02, 99.54], [107.73, 126.01]], \"sentences\": [\"a bull runs out of a gate into an arena.\", \" A matador waves a red cape at the bull.\", \" The bull charges him over and over.\"]}, \"v_x2xC5lm0cZw\": {\"duration\": 158.55, \"timestamps\": [[0, 157.75], [0, 158.55], [109.4, 117.32]], \"sentences\": [\"woman is walknig in a grassy yard cutting the grass with a lawnmower.\", \" woman is wearing a pink sweater and is cutting the grass with a lawnmower.\", \" woman is kneeling on the yard using  a machine around bushes.\"]}, \"v_l9HcwQPNvWo\": {\"duration\": 196.66, \"timestamps\": [[0, 196.66], [20.65, 184.86], [67.85, 192.73], [193.71, 196.66]], \"sentences\": [\"A man sitting outside a house plays a song while playing the guitar and harmonica at the same time.\", \" He thumps his hand on the guitar to make a beat.\", \"  He plays the harmonica while playing the guitar.\", \"  He stops leans over and turns off the camera.\"]}, \"v_AFdqkU6FyqY\": {\"duration\": 132.05, \"timestamps\": [[0, 24.43], [38.3, 92.44], [97.06, 132.05]], \"sentences\": [\"A person is shown driving a dune buggy.\", \" They take the buggy through highly graveled areas.\", \" They zoom past the lake and around a dirt path.\"]}, \"v_KWhXvv1WtFM\": {\"duration\": 14.19, \"timestamps\": [[1.06, 14.19], [0, 14.19], [3.26, 14.19]], \"sentences\": [\"Two people are in a fencing match dressed in white and fencing back and forth.\", \" Many people are standing around watching and recording a video.\", \" One of the players looses and shows great distress at his loss.\"]}, \"v__i6kvwg1Oyo\": {\"duration\": 57.61, \"timestamps\": [[0, 23.62], [19.3, 42.05], [42.34, 57.32]], \"sentences\": [\"A close up of a dart board is shown with a dart moving into frame.\", \" A person takes down a dart and walks away.\", \" The camera zooms in on the board in the end.\"]}, \"v_kWtY5wkkAMY\": {\"duration\": 56.77, \"timestamps\": [[0, 4.83], [0, 51.66], [21.01, 49.96], [49.39, 52.23], [51.95, 56.77]], \"sentences\": [\"We see the title screen over the video.\", \" A man uses a hedge trimmer to trim small lavender hedges while wearing headphones while instructions flash on the screen.\", \" The man moves to the second bush and shapes it trimming the sides and the top.\", \" The man stops trimming and wipes the top of the bush to remove the trimmed parts.\", \" The screen goes black and we see the ending title screen and website address.\"]}, \"v_iRwRwpVLE_Y\": {\"duration\": 196.69, \"timestamps\": [[10.82, 36.39], [36.39, 67.86], [67.86, 73.76], [74.74, 84.58], [84.58, 117.03], [118.01, 139.65], [133.75, 139.65], [140.63, 168.17], [168.17, 180.95], [182.92, 186.85]], \"sentences\": [\"A girl talks in the direction of the camera while in a kitchen environment.\", \" The girl adds a series of ingredients into a mixing bowl.\", \" The girl mixes the content of the bowl.\", \" The girl talks some more.\", \" The girl interacts with some containers of ingredients on the table.\", \" The girl mixes the ingredients into a bowl with the camera looking down from a top down view.\", \" The girl adds oats into the bowl an mixes it.\", \" The girl talks while wandering back and forth near the bowl.\", \" An adult man walks into the screen and tastes something from the table.\", \" The girl tastes something from the table.\"]}, \"v_7ghaFHKMUZ0\": {\"duration\": 70.26, \"timestamps\": [[0, 7.73], [11.59, 16.16], [0, 33.73], [37.94, 70.26]], \"sentences\": [\"A container of ice cream is shown.\", \" A bowl of the same ice cream is then shown.\", \" They are sitting on a stove top.\", \" A man then eats the ice cream and talks to the camera.\"]}, \"v_2Sev8z4P7pE\": {\"duration\": 45.28, \"timestamps\": [[0, 4.53], [7.47, 29.2], [32.6, 45.28]], \"sentences\": [\"A man is raking leaves in a yard.\", \" He is using a clear bag to package them up.\", \" He then moves the bags out of the yard and mows the lawn.\"]}, \"v_uptOE6bfBgA\": {\"duration\": 84.68, \"timestamps\": [[0, 17.36], [17.36, 48.69], [48.69, 71.98], [72.83, 84.68]], \"sentences\": [\"A pile of brown leaves are being blown up from the side of the road and the curb of the sidewalk.\", \"As the person continues to blow them,the leaves fly by the drain and goes underneath the sidewalk.\", \"However,the person continues to blow the leaves and pauses as he runs into a small median in the sidewalk.\", \"Continuing on with the task,the person moves around it and the leaves continue being blown across the sidewalk and into the grass.\"]}, \"v_ai80XIxFqqg\": {\"duration\": 236.94, \"timestamps\": [[0, 9.48], [0, 130.32], [75.82, 130.32], [130.32, 236.94], [199.03, 236.94]], \"sentences\": [\"sexy woman is talking to the camera holding a microphone.\", \" the woman is walking in the field holding a paintball gun.\", \" then the woman is walking on the field taking out her clothes and posing for a camera.\", \" the woman is playing paintball with other men.\", \" the woman is talking to the camera again.\"]}, \"v_XX2sXEmR4BE\": {\"duration\": 23.45, \"timestamps\": [[0, 2.58], [2.46, 12.66], [12.66, 19.35], [19.35, 23.45]], \"sentences\": [\"A woman is riding a stationary bike in a gym.\", \" Another woman in pink walks up and gets onto a bike and starts writing.\", \" The woman in pink gets off of the bike and walks away.\", \" The video ends with the clothes and captions down across the screen.\"]}, \"v__8Zk9dfBgPg\": {\"duration\": 122.35, \"timestamps\": [[0, 8.56], [7.95, 100.94], [112.56, 122.35]], \"sentences\": [\"A woman is painting a board.\", \" She starts spray painting a picture onto the board.\", \" Words come onto the screen.\"]}, \"v_Ez7s36AwgLk\": {\"duration\": 233.94, \"timestamps\": [[0, 14.04], [22.22, 202.36], [32.75, 202.36], [95.92, 231.6]], \"sentences\": [\"A man is skating in a skate park.\", \" Several people watch from the sides.\", \" A lot of kids are signing paperwork.\", \" Skaters go up the ramps.\"]}, \"v_8nhuvbFSSmw\": {\"duration\": 207.56, \"timestamps\": [[0, 60.19], [49.82, 152.56], [117.27, 207.56]], \"sentences\": [\"People are seen riding around on skateboards past one another.\", \" People look and smile to the camera while continuing to ride around a city on skateboards.\", \" The ride around several more areas as well as putting on a helmet.\"]}, \"v_qm8sJxsZ5VY\": {\"duration\": 223.7, \"timestamps\": [[0, 2.24], [3.36, 20.13], [21.25, 36.91], [38.03, 77.18], [77.18, 152.12], [152.12, 171.13], [171.13, 223.7]], \"sentences\": [\"We see an animated title screen.\", \" A man in red cap stands outside a barbershop talking.\", \" He sits in a chair and the barber uses electric razors to cut his hair.\", \"  The man pretends to be asleep and the barber points at him and the man pretend to wake up and fall back asleep while getting his hair cut.\", \" We see the man pretend to sleep and talk in his sleep as the words appear on the screen and the barber laughs.\", \" The man appears to fall out of the chair.\", \" The man points out the cameras and explains it to the barber who shakes his hand and the barbers talk to him outside.\"]}, \"v_WxlJBRUU1A0\": {\"duration\": 226.47, \"timestamps\": [[0, 27.18], [39.63, 149.47], [163.05, 226.47]], \"sentences\": [\"A woman is seated and talking.\", \" She is showing how to knit an item.\", \" She is using a needle and yarn to knit.\"]}, \"v_xe6-tTvxQxk\": {\"duration\": 75.51, \"timestamps\": [[0, 75.51], [0.76, 75.51], [23.79, 75.51]], \"sentences\": [\"Two people are playing tennis on a tennis court.\", \" People are sitting in the stands watching them.\", \" A kid in a red shirt runs onto the court to pick up the balls.\"]}, \"v_APAxAnwS9oM\": {\"duration\": 102.49000000000001, \"timestamps\": [[0.51, 25.11], [24.09, 72.77], [73.28, 102.49]], \"sentences\": [\"A dog is seen laying on the grass with it's hind legs.\", \" The dog walks up to a door and continues laying it's leg down.\", \" The dog moves inside with it's legs still hanging in the back.\"]}, \"v_3iHHhCHcT8I\": {\"duration\": 183.3, \"timestamps\": [[0, 183.3], [43.08, 53.16], [0, 177.8]], \"sentences\": [\"boy is laying on the wall next to a window smoking a cigarrette.\", \" man take out the cellphone fom the pocket check the hour and save him again.\", \" young boy is sitting next to a white wall smoking.\"]}, \"v_DVlMzGPhWO4\": {\"duration\": 96.00999999999999, \"timestamps\": [[0, 23.52], [19.2, 58.08], [55.2, 94.56]], \"sentences\": [\"A man is shown speaking to the camera on a boat riding around.\", \" Several other boats are shown riding near him.\", \" More shots are shown of the man speaking while still riding around on boats.\"]}, \"v_PJgB6h-fImY\": {\"duration\": 181.58, \"timestamps\": [[0, 19.97], [20.88, 143.45], [149.8, 181.58]], \"sentences\": [\"A couple of men are on the side of a bike path.\", \" They are trying to work on fixing a bent tire.\", \" They work together to depretzel the wheel by banging and spinning it.\"]}, \"v_jprf0pE-4uI\": {\"duration\": 88.98, \"timestamps\": [[0, 8.9], [9.79, 52.05], [55.61, 88.98]], \"sentences\": [\"A man is walking while carrying a leaf blower.\", \" He is using the blower to blow the leaves out of the grass.\", \" His shadow is seen as he continues blowing the leaves.\"]}, \"v_t0y6dkIwEvc\": {\"duration\": 34.06, \"timestamps\": [[0, 3.92], [2.73, 6.98], [4.77, 12.94], [9.2, 22.14], [21.63, 34.06]], \"sentences\": [\"a man stands on a track field.\", \" the man stands in place then steps backwards.\", \" a few people run by the man.\", \" the man stretches then runs.\", \" the man run then jumps into sand.\"]}, \"v_YSnCGTXJtig\": {\"duration\": 31.07, \"timestamps\": [[0, 6.21], [7.77, 17.24], [17.71, 31.07]], \"sentences\": [\"a crowd is gathered in a rodeo ring.\", \" a man rides a horse into the middle of the ring.\", \" the man strings up a baby bull then jumps off his horse.\"]}, \"v_3UrypnvwAOY\": {\"duration\": 46.09, \"timestamps\": [[0, 4.38], [4.61, 43.33], [43.79, 46.09]], \"sentences\": [\"A girl with a violin stands in the center of a room while being watched by an audience.\", \" The girl plays the violin.\", \" The girl stops playing the violin, bows, and walks towards the audience.\"]}, \"v_7p99ez6MEeo\": {\"duration\": 18.25, \"timestamps\": [[0, 2.46], [2.56, 14.42], [15.33, 18.25]], \"sentences\": [\"A bunch of people are playing volleyball on a sand court.\", \" They celebrate as they get the ball over the net.\", \" They continue hitting the ball back and forth.\"]}, \"v_CSruNOwxCRY\": {\"duration\": 99.06, \"timestamps\": [[0, 21.3], [53.49, 55.47], [67.85, 70.33]], \"sentences\": [\"Boy wearing orange hits the volleyball over the net.\", \"  Man wearing gray shirt hits the volleyball.\", \"  Man wearing white shirts hit the volleyball over the net.\"]}, \"v_NjzUWVoc8rw\": {\"duration\": 7.34, \"timestamps\": [[0, 1.28], [1.36, 4.51], [4.62, 7.34]], \"sentences\": [\"a man is standing on a tennis court.\", \" the man takes a racket and bounces a tennis ball.\", \" the man serves the ball.\"]}, \"v_NcTZ3wgdNOQ\": {\"duration\": 212.23, \"timestamps\": [[0, 70.04], [57.3, 160.23], [141.13, 207.99]], \"sentences\": [\"Several products are laid out followed by a woman grooming a horse.\", \" The woman brushes the horse all around it's body while the horse lays motionless.\", \" She continues brushing down the horse and kisses him in the end.\"]}, \"v_Uv_6SJlvCl0\": {\"duration\": 47.79, \"timestamps\": [[0, 11.23], [10.51, 32.26], [26.28, 45.4]], \"sentences\": [\"A close up of a bird is seen dipping into a coffee cup.\", \" The bird walks around a table and looks at the camera.\", \" He then bends back down to the coffee cup.\"]}, \"v_xftFhOCEqFs\": {\"duration\": 166.79, \"timestamps\": [[0, 166.79], [5, 166.79], [20.01, 166.79], [32.52, 166.79]], \"sentences\": [\"A school gym is full of people.\", \" Several athletes are there to participate.\", \" One by one they pole vault over a bar.\", \" People stand around watching them go.\"]}, \"v_ZjYttT9itfY\": {\"duration\": 184.08, \"timestamps\": [[0, 38.66], [31.29, 61.67], [105.84, 184.08]], \"sentences\": [\"a man stands on a field with a shut put in his hand.\", \" the man starts spinning around in a circle.\", \" the man then throws the shot put.\"]}, \"v_xzmcOKHP-sM\": {\"duration\": 113.57, \"timestamps\": [[0, 11.92], [8.52, 21.01], [21.58, 63.03], [21.58, 113.57]], \"sentences\": [\"A woman is shown talking on the phone.\", \" People walk through a large lobby.\", \" A woman then talks to the camera.\", \" Several people do arts and craft.\"]}, \"v_3RTmWrwgKek\": {\"duration\": 30.65, \"timestamps\": [[0, 6.59], [6.59, 25.75], [0, 30.65]], \"sentences\": [\"three kids and one adult are gathered at a park.\", \" a boy hopscotches back and forth.\", \" the other people watch the boy play.\"]}, \"v_DBGea9pST1A\": {\"duration\": 60.44, \"timestamps\": [[3.02, 18.74], [19.04, 44.73], [44.73, 60.44]], \"sentences\": [\"A snow plow plows snow along a road at night.\", \" A man shovels snow to form a path from his door.\", \" A rural road is shown snowed over.\"]}, \"v_5rVXCKLihyg\": {\"duration\": 92.0, \"timestamps\": [[0, 10.12], [10.58, 45.54], [34.5, 88.32]], \"sentences\": [\"A woman is seen speaking to the camera and lays out a shirt on an ironing table.\", \" She begins ironing the shirt while moving it all around the table.\", \" She continues flipping the shirt and moving the iron around it.\"]}, \"v_IWhEUNOUIyc\": {\"duration\": 227.3, \"timestamps\": [[0, 5.68], [6.82, 119.33], [120.47, 164.79], [168.2, 227.3]], \"sentences\": [\"A woman news anchor is speaking in a news channel setting with a ticker across the bottom.\", \" Some drummers are shown drumming and an old man joins them drumming, this is played over a few times.\", \" Then school children are shown playing recorders in a classroom, and an old man that visits them is a highlight.\", \" At the end the two sections of video are shown side by side and then the television channel's logo.\"]}, \"v_MRzsZN5p9QY\": {\"duration\": 65.85, \"timestamps\": [[0, 11.52], [5.27, 58.28], [55.64, 56.96]], \"sentences\": [\"A man bends down and picks up a weight.\", \" They lift the weight up and down several times.\", \" They drop the weight onto the ground.\"]}, \"v_hpZ5XnuiRPw\": {\"duration\": 162.22, \"timestamps\": [[0, 8.11], [8.11, 29.2], [37.31, 162.22]], \"sentences\": [\"A man is holding a harmonica.\", \" He is standing talking to the camera.\", \" He blows into the harmonica and starts to play it.\"]}, \"v_ayDMt_8KajY\": {\"duration\": 33.18, \"timestamps\": [[0, 3.32], [3.82, 16.26], [13.6, 31.85]], \"sentences\": [\"A man is seen standing in a circle holding a ball.\", \" He throws the ball while others watch.\", \" Another boy steps up and throws the ball.\"]}, \"v_aw4ehW-wTKA\": {\"duration\": 143.66, \"timestamps\": [[5.03, 10.06], [10.06, 143.66], [137.92, 143.66]], \"sentences\": [\"People are putting up a slack line.\", \" People are walking on the slack line.\", \" A man in a green shirt is sitting on the slack line.\"]}, \"v_gA0m7YUH408\": {\"duration\": 11.05, \"timestamps\": [[0, 4.97], [4.97, 11.05], [0.17, 11.05]], \"sentences\": [\"A man hits a ball with a club.\", \" He puts his hands in the air to celebrate.\", \" People are walking on the grass behind him.\"]}, \"v_LTPrtyWIcA4\": {\"duration\": 130.66, \"timestamps\": [[0, 15.03], [23.52, 105.18], [107.79, 130.66]], \"sentences\": [\"A man rides a motorcycle into a parking spot.\", \" He gets off the bike, and shows how to clean a large window.\", \" He wipes it down and scrapes it clean with brushes.\"]}, \"v_13Y47Uk_w1o\": {\"duration\": 150.09, \"timestamps\": [[0, 150.09], [9.76, 150.09], [23.26, 150.09], [81.05, 150.09]], \"sentences\": [\"A man is bouncing outside on the concrete.\", \" Other people are shown using the same contraptions.\", \" They bounce around sidewalks in public.\", \" They jump around on and off stairs.\"]}, \"v_ogOrhXUgna0\": {\"duration\": 189.96, \"timestamps\": [[0, 12.35], [19.95, 39.89], [26.59, 187.11]], \"sentences\": [\"People walk in the beach as waves come in.\", \"  Others try to surf on the waves as they come in.\", \"  One person tries to paddleboard.\"]}, \"v_qr5vqi5tTL8\": {\"duration\": 41.73, \"timestamps\": [[0, 8.35], [8.35, 15.65], [15.86, 21.28], [21.49, 41.73]], \"sentences\": [\"Two women are bathing a large brown and white husky dog in a commercial bath.\", \" The dog does not like the bath and struggles.\", \" The dog shakes off the water and gets water everywhere.\", \"  The women continue to bathe him.\"]}, \"v_YS8swiRbbIE\": {\"duration\": 79.27, \"timestamps\": [[0, 79.27], [21.01, 22.59], [64.61, 72.14]], \"sentences\": [\"Girls are dancing on a mat with batons.\", \"A girl does a front flip on the mat.\", \" A girl lays down on the mat in between a circle of people.\"]}, \"v_lGWAepvduTI\": {\"duration\": 89.93, \"timestamps\": [[0, 8.54], [8.99, 78.69], [79.14, 89.93]], \"sentences\": [\"A man sits on a sit that can restraint his feet.\", \" Then, the man exercises holding a weight behind his head and supporting.\", \" After, the man finish exercising, left the weight on the floor and leaves.\"]}, \"v_PUWg7fXnCf0\": {\"duration\": 133.51, \"timestamps\": [[17.36, 26.7], [48.06, 48.73], [86.11, 87.45]], \"sentences\": [\"People are jump roping together in a group.\", \" A woman is jump roping on a street and doing flips.\", \" A man is jump roping next to a water fountain.\"]}, \"v_JDM9Akcs96g\": {\"duration\": 14.07, \"timestamps\": [[0, 1.83], [2.46, 9.29], [10.2, 14.07]], \"sentences\": [\"A woman is giving a dog a bath in a tub.\", \" She uses a hose to spray water all over the dog.\", \" The dog licks his lips and looks sad while he is getting bathed.\"]}, \"v_3ve9a8YKP90\": {\"duration\": 184.25, \"timestamps\": [[0, 3.69], [4.61, 16.58], [17.5, 75.54], [76.46, 130.82], [130.82, 158.46], [159.38, 184.25]], \"sentences\": [\"The words \\\"Why should you go kayaking in Antarctica?\\\" appear over a blue screen.\", \" First person screenshots of a kayak in antarctica appear on screen.\", \" People lift a kayak out followed by video of people kayaking in snowy/icy water.\", \" People in kayaks watch a seal resting on an ice float.\", \" Penguins hop through the water and play on ice floats.\", \" People purposely flip their kayaks into the water and credits appear on screen.\"]}, \"v_bQhCEXZwnMM\": {\"duration\": 226.28, \"timestamps\": [[0, 40.73], [40.73, 118.8], [118.8, 226.28]], \"sentences\": [\"a row of bows is shown in an armory.\", \" person is holding a bow and talking in front of the camera next to another man.\", \" one of the man is throwing arrows to a board and behind them two old men are watching other weapons.\"]}, \"v_O0-CRPl0TR0\": {\"duration\": 209.12, \"timestamps\": [[0, 23], [26.14, 121.29], [132.79, 209.12]], \"sentences\": [\"two men are inside a gym together.\", \" they are engaged in a game of table tennis.\", \" They hit the ball back and forth over the net.\"]}, \"v_vdTisVMhW7I\": {\"duration\": 187.87, \"timestamps\": [[0, 46.03], [53.54, 114.6], [106.15, 175.66]], \"sentences\": [\"A man is seen speaking to the camera and begins adjusting a bike.\", \" The man unboxes parts and shows them off to the camera.\", \" He then puts the parts on the bike and screws them in tightly.\"]}, \"v_D7WhCBcddSA\": {\"duration\": 31.65, \"timestamps\": [[0, 5.06], [2.85, 31.65], [9.65, 31.65]], \"sentences\": [\"A man in gray shirt is walking and then two men are playing racquet ball.\", \" The two men are playing racquet ball while audience are outside the room watching.\", \" A man sitting is being shown and then two players play.\"]}, \"v_El4QfhJ6RvE\": {\"duration\": 11.33, \"timestamps\": [[0, 11.33], [0, 7.99], [1.87, 7.99], [8.9, 11.05]], \"sentences\": [\"A man is in a driveway.\", \" He is on a jumping contraption.\", \" He bounces up and down.\", \" Eventually he stops jumping and walks off.\"]}, \"v_6Z4Qg_fNo0Q\": {\"duration\": 203.77, \"timestamps\": [[0, 39.73], [26.49, 138.56], [132.45, 203.77]], \"sentences\": [\"a man is under water wearing snorkeling gear.\", \" several fish move pass the man.\", \" the man then begins swimming in place.\"]}, \"v_e_0bMJEFiN8\": {\"duration\": 92.86, \"timestamps\": [[0, 12.07], [15.79, 70.11], [74.75, 92.86]], \"sentences\": [\"A man is talking inside a bathroom.\", \" He is using a rag to clean a sink.\", \" He lathers up and wipes it all back down.\"]}, \"v_xlr_sSnttZo\": {\"duration\": 188.38, \"timestamps\": [[0, 58.4], [45.21, 121.51], [116.8, 181.79]], \"sentences\": [\"A woman is seen speaking to the camera and smiling while speaking.\", \" She holds up a toothbrush and as well as toothpaste and begins brushing her teeth.\", \" She continues brushing her teeth and ends by wiping off her mouth and staring at the camera.\"]}, \"v_s_VFaQTlskE\": {\"duration\": 122.0, \"timestamps\": [[0, 121.39], [0, 122], [96.99, 122]], \"sentences\": [\"A man is sitting on a chair playing an acoustic guitar.\", \" A man is sitting next to him playing two large drums with his hands.\", \" A man in a blue shirt walks in front of them.\"]}, \"v_-OLPVREPy6Y\": {\"duration\": 171.09, \"timestamps\": [[0, 21.39], [0, 67.58], [67.58, 171.09]], \"sentences\": [\"woman is sitting in front of a counter talking to the camera.\", \" woman grabs a brush and paints a wooden hanger.\", \" he woman cleans the paint with a towel and again paint the hanger and again cleans the table with a cloth.\"]}, \"v_h3qKte2gv14\": {\"duration\": 90.05, \"timestamps\": [[0, 13.96], [13.96, 44.57], [46.37, 90.05]], \"sentences\": [\"A man is smoking a cigarette in front of a door.\", \" He is standing and opens the door.\", \" He then turns the camera toward himself and blows smoke up his own nose.\"]}, \"v_tFjGMdff3WM\": {\"duration\": 123.09, \"timestamps\": [[0, 24], [21.54, 75.08], [68.31, 113.86]], \"sentences\": [\"Several pictures are shown of a machine as well as tools laid out.\", \" A man is seen using the tool in another picture.\", \" Several more clips are shown of the same ones over and over.\"]}, \"v_jYyN-nJcm0M\": {\"duration\": 220.75, \"timestamps\": [[0, 29.8], [34.22, 157.84], [168.88, 220.75]], \"sentences\": [\"A man is seated inside a bedroom.\", \" He is playing a set of large drums.\", \" He hits the drums with his hands back and forth.\"]}, \"v_Rai5nKbB6wU\": {\"duration\": 199.39, \"timestamps\": [[7.98, 14.95], [27.91, 84.74], [74.77, 199.39]], \"sentences\": [\"People are standing on a boat in the water.\", \" People are walking in a town.\", \" People are long boarding down a hill in front of people watching.\"]}, \"v_mV5DfYFg4H0\": {\"duration\": 87.1, \"timestamps\": [[0, 20.47], [17.42, 56.61], [58.36, 84.05]], \"sentences\": [\"A cat is see close up and a person picking it up.\", \" The person is holding scissors and begins cutting the cat's claws.\", \" The person continues cutting the claws and shows them off in the end.\"]}, \"v_vmUbGiOyUbU\": {\"duration\": 113.8, \"timestamps\": [[0, 10.81], [10.81, 21.05], [21.62, 43.81], [44.38, 67.71], [68.85, 74.54], [74.54, 91.04], [91.04, 113.8]], \"sentences\": [\"A blond pet groomer stands next to a white fluffy little dog on top of a grooming table.\", \" A  dark haired pet groomer grooms a black and white dog standing on a grooming table.\", \" The blond haired groomer blow dries the white dog while brushing the dog.\", \" The dark haired groomer holds up the tools she uses to groom the animals.\", \" The blond haired groomer uses an electric filer to file down the white dogs nails.\", \" The dark haired groomer brushes the black and white dogs hair.\", \" The blond haired groomer shows the finished groomed white fluffy dog.\"]}, \"v_bJ5YjjFLGyA\": {\"duration\": 218.78, \"timestamps\": [[0, 38.29], [38.29, 154.24], [38.29, 218.78]], \"sentences\": [\"two men are standing in a kitchen talking to the camera with a pasta plate in front of them.\", \" man puts butter on the pan and the other man is talking to the camera, ten pour a liquid.\", \" man put the pasta in hot water and the other man serve the sauce in a plate with the pasta.\"]}, \"v_m6yPz9fHJnY\": {\"duration\": 92.39, \"timestamps\": [[4.16, 15.71], [33.26, 36.03], [72.99, 82.69]], \"sentences\": [\"Man carves out a deep groove in a log.\", \"  Man slams his axe into a piece of wood.\", \"  A yellow dog lays on the ground near the logs.\"]}, \"v_TUMk0wpBiP0\": {\"duration\": 165.57999999999998, \"timestamps\": [[0, 32.29], [32.29, 68.72], [69.54, 110.94], [110.11, 142.4], [142.4, 165.58]], \"sentences\": [\"A scenic route of the mountains and trees are seen through the window of the passenger of a truck.\", \"Once they have arrived a the cabin,the individuals are standing outside on a mountain snow boarding.\", \"Since it is night time,the field is lit up with several lights and you can see the people performing tricks and falling to the ground very vividly.\", \"Many more people continue jumping over the slopes and they all end up falling on the ground.\", \" Eventually, others begin snowboarding and they glide through the mountains with ease and never fall.\"]}, \"v_bwRsZtPzipc\": {\"duration\": 228.89, \"timestamps\": [[0, 8.01], [9.16, 222.03], [222.03, 228.89]], \"sentences\": [\"Two belly dancers with candles in each hand walk onto a dance floor with a mirrored wall.\", \" They perform with the candles as people watch.\", \" The women finish their dance, blow out the candles and walk away.\"]}, \"v_zqcJ0N_a6y8\": {\"duration\": 81.11, \"timestamps\": [[0, 16.22], [19.06, 56.78], [59.21, 81.11]], \"sentences\": [\"Two military men are tied together from behind.\", \" They pull and crawl away from each other.\", \" A group watches them struggle to free themselves.\"]}, \"v_wkSm7bUCgGQ\": {\"duration\": 134.35, \"timestamps\": [[0, 34.26], [26.2, 77.92], [60.46, 129.65]], \"sentences\": [\"A woman is seen sitting on a bench and speaking to the camera.\", \" She shows off her leg covered in shaving cream and walks up to a sink then back down again.\", \" She shaves her legs continuously while moving up and down and another boy watching from behind.\"]}, \"v_m1aF1CVo-s8\": {\"duration\": 94.50999999999999, \"timestamps\": [[0, 17.96], [17.96, 25.52], [25.52, 94.51]], \"sentences\": [\"elliptical trainers are shown in a room inside a gym.\", \" woman is alone in a oom doing exercise in the ellipical.\", \" another woman start in the eliptical trainer in the back.\"]}, \"v_owLv-_CPNJI\": {\"duration\": 55.3, \"timestamps\": [[0, 8.02], [9.12, 37.33], [40.65, 55.3]], \"sentences\": [\"A folded up exercise bike is shown in a living room.\", \" A man unfolds the bike, putting it into place.\", \" He shows how it can fold and unfold.\"]}, \"v_kPM3RAn0Mk4\": {\"duration\": 232.29, \"timestamps\": [[0, 6.97], [8.13, 26.71], [27.88, 49.94], [51.1, 216.03], [217.19, 232.29]], \"sentences\": [\"The words \\\"Love Food & Money with Angie Greenup\\\" appears on screen.\", \" A woman speaks to the camera from her living room while her dogs play fight behind her.\", \" She starts working on her nails using bottles from a box next to her.\", \" She files and polishes her nails.\", \" Her twitter handle and subscribe screen are shown while she holds her dogs.\"]}, \"v_mzGbmHjdCM8\": {\"duration\": 80.03999999999999, \"timestamps\": [[2, 8.4], [8.8, 24.81], [25.21, 80.04]], \"sentences\": [\"A man cranks his lawn on.\", \" The man starts to mow his lawn.\", \" The man moves really slowly as he mows the lawn.\"]}, \"v_rQZIJBinOsw\": {\"duration\": 129.01, \"timestamps\": [[0, 22.58], [22.58, 91.6], [91.6, 129.01]], \"sentences\": [\"A male chef appears in a kitchen standing behind an island with several knives on a block of wood with sharpening utensils on it.\", \"The man then grabs the knife and starts gliding it over the block very gently and smoothly before hitting it over a silver steel stick.\", \"When finish,he grabs a piece of paper and shows how it cuts so effortlessly.\"]}, \"v_yHaTlDD-qHA\": {\"duration\": 66.54, \"timestamps\": [[0, 66.54], [24.95, 25.95], [31.94, 35.6]], \"sentences\": [\"People are playing baseball on a field.\", \" A man in a hat is standing on the field watching.\", \" A man throws a ball at someone holding a bat.\"]}, \"v_kpAwQpA1nPs\": {\"duration\": 181.05, \"timestamps\": [[4.53, 16.29], [16.29, 19.92], [30.78, 34.4]], \"sentences\": [\" A man is sprinting down a track.\", \" He jumps over a bar and lands on a mat.\", \" Girls are sitting behind a desk talking.\"]}, \"v_axzmwzPQ134\": {\"duration\": 98.5, \"timestamps\": [[0, 10.84], [11.33, 66], [64.52, 98.5]], \"sentences\": [\"A person is seen hitting a ball on the grass followed by several others.\", \" Various people are shown speaking to the camera while people play crochet behind them and celebrate.\", \" They continue playing while others watch and huddling up in the end.\"]}, \"v_NhcOmldkGIo\": {\"duration\": 175.2, \"timestamps\": [[0, 21.9], [27.16, 133.15], [137.53, 175.2]], \"sentences\": [\"a scoreboard is shown at a game.\", \" Several players run onto the field, and play a game of lacrosse.\", \" the players fight over the ball, trying to win.\"]}, \"v_kU2FVf0ldx4\": {\"duration\": 27.73, \"timestamps\": [[0, 27.73], [1.39, 27.73], [10.67, 15.11]], \"sentences\": [\"two little kids are swinging on platground.\", \" in the background kids are playing in a tire playground.\", \" kid is walking behind the swings.\"]}, \"v_-CEi03j4-Bw\": {\"duration\": 10.26, \"timestamps\": [[0, 2.77], [2.77, 8.31], [8.31, 10.26]], \"sentences\": [\"This baby is standing up in the sand digging the sand off of the sand dune using his small hands.\", \" Then, he starts to try and climb onto the sand dune and he looks at the camera once.\", \"  There's also people behind him a few feet away playing badminton with each other.\"]}, \"v__uKKSGTNJAY\": {\"duration\": 37.04, \"timestamps\": [[0, 6.67], [6.85, 20], [20.18, 37.04]], \"sentences\": [\"A young child sits a the top of a very wide concrete slide.\", \" The child and others go down the slide.\", \" The person holding the camera goes down the slide.\"]}, \"v_fvroOk6TpKk\": {\"duration\": 193.14, \"timestamps\": [[0, 33.8], [33.8, 134.24], [134.24, 193.14]], \"sentences\": [\"A Canadian team is outside on a large green field playing a game of lacrosse against an American team.\", \"Both teams continue to play and go back and forth making plays as the video flashes in between each segment letting you know what quarter it is.\", \"The game comes to an end and Canada wins with a score of eight to four and all of the players begin to jump up in joy and congratulate one another on the game.\"]}, \"v_3O2acf8oRVA\": {\"duration\": 15.93, \"timestamps\": [[0, 1.83], [1.75, 6.05], [6.05, 15.93]], \"sentences\": [\"A man wearing grey shorts kneels down on a carpeted floor and begins stretching.\", \" The man moves his right leg under his hip and in front of his left knee.\", \" The man begins to rock back and forth in a slow movement as he stretches.\"]}, \"v_b3mJ5rPzDv8\": {\"duration\": 145.54, \"timestamps\": [[0.73, 11.64], [12.37, 144.82], [120.07, 145.54], [136.81, 143.36], [144.82, 145.54]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy that is sitting, speaks.\", \" The clip flips, and the guy is closer to the camera.\", \" The phone number and credits associated with the clip are shown.\", \" The guy stops talking and looks straight at the camera.\"]}, \"v_a74RMGL_c8E\": {\"duration\": 32.0, \"timestamps\": [[0, 5.12], [7.36, 22.24], [24.32, 32]], \"sentences\": [\"A game is in progress as the crowd watches.\", \" The people are playing a game of field hockey.\", \" They hit the ball into the goal as the crowd cheers.\"]}, \"v_DhgdEfKAvO0\": {\"duration\": 156.69, \"timestamps\": [[0, 26.64], [22.72, 36.04], [43.09, 156.69]], \"sentences\": [\"A woman is blindfolded and turned in circles.\", \" She falls down onto the floor.\", \" She gets up and starts swinging her bat at a pinata in front of her.\"]}, \"v_cz2ESqP3PDk\": {\"duration\": 49.0, \"timestamps\": [[0, 8.08], [8.82, 21.31], [21.31, 33.56], [33.56, 49]], \"sentences\": [\"A man is using some type of card shark system.\", \" He pulls out a card from this device one by one and puts the cards to the other side of the table.\", \" He does this over and over again not really demonstrating anything else.\", \" All he does is pull out more and more cards and put them to the side.\"]}, \"v_MsalIjwP3no\": {\"duration\": 63.41, \"timestamps\": [[0, 13], [8.88, 39], [37.41, 63.41]], \"sentences\": [\"three men are working on a brick wall.\", \" two men begin filling cups with water and tossing the water onto the brick wall.\", \" other men are seen scrapping the wall with a metal instrument.\"]}, \"v_2Ks8gsK22PA\": {\"duration\": 109.50999999999999, \"timestamps\": [[0, 105.13], [6.57, 105.13], [10.95, 105.13], [15.33, 105.13]], \"sentences\": [\"Two men are on a stage playing bongos.\", \" There are several mics around them.\", \" One seems to be shouting or singing something.\", \" The shake their heads in rhythm.\"]}, \"v_oSDHYvvYo5M\": {\"duration\": 52.08, \"timestamps\": [[0, 52.08], [0, 50.52], [25, 26.82]], \"sentences\": [\"A man is standing on stilts in a room.\", \" He is painting the ceiling in a room.\", \" He walks over and bends down to pick something up.\"]}, \"v_sP416nSD4xQ\": {\"duration\": 68.19, \"timestamps\": [[0, 8.18], [9.21, 50.46], [50.8, 68.19]], \"sentences\": [\"A man is seated inside a small room.\", \" He is playing a short piano.\", \" He continues to play, moving his fingers along the keys.\"]}, \"v_G8dCenteoT0\": {\"duration\": 27.05, \"timestamps\": [[0, 13.39], [13.39, 27.05], [0, 27.05]], \"sentences\": [\"woman is putting contact lenses on her left eye.\", \" the woman opens her eye wih fingers and take off the contact.\", \" woman is in front of a camera and is showing how to wear contact lenses.\"]}, \"v_OTm43dbEEuE\": {\"duration\": 71.19, \"timestamps\": [[0, 11.75], [12.1, 68.35], [69.41, 71.19]], \"sentences\": [\"A young girl stands in a gym wearing a cheerleader outfit.\", \" The girl performs several routines for the crowd.\", \" The girl finishes and the crowd applauds.\"]}, \"v_ijgLl3PHHE0\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 11.36], [12.11, 54.51], [69.65, 151.42]], \"sentences\": [\"A woman is talking outside on a beach.\", \" She puts on snorkeling gear and dives in the ocean.\", \" She swims under the water and explores.\"]}, \"v_DV1ITGBfo5w\": {\"duration\": 155.78, \"timestamps\": [[0, 155.78], [4.67, 155.78], [21.81, 59.98], [36.61, 62.31], [60.76, 150.33], [70.88, 144.1], [150.33, 155.78]], \"sentences\": [\"There are two men standing in an indoor gym wearing gray athletic shirts and black and red shorts.\", \" They are demonstrating and talking about workout routines.\", \" The man in the red shorts is raising his right hand up to show a stretching exercise move while the other person is watching him.\", \" He continues to show some more workout exercises by flexing his chest muscles and and pointing to his thigh.\", \" Then the other person in black shorts kneels down on his left knee and holds up a long metal pole with his hands to raise it.\", \" The person in the red short explains what core muscles he is exercising while doing the workout.\", \" Then they both stand up and complete their tutorial on the workout.\"]}, \"v_g4G1gg-9y7w\": {\"duration\": 114.82, \"timestamps\": [[12.06, 94.15], [27.56, 48.23], [47.65, 62], [82.1, 93.01]], \"sentences\": [\"A woman is sitting down in a chair.\", \" She gets her ear pierced by a piercer.\", \" They put an earring into the hole.\", \" She holds a blue towel up to her ear.\"]}, \"v_rxfkWIGZtlQ\": {\"duration\": 121.74, \"timestamps\": [[0, 48.09], [48.09, 102.26], [102.87, 121.13]], \"sentences\": [\"A woman holds a hair dryer next a female while explains.\", \" Then, the woman takes off the adapter of the hair dryer and continues explaining.\", \" Te woman continues talking holding on her right hand the hair dryer, and showing the hair of the female with the left hand.\"]}, \"v_gvr1dpCpvhw\": {\"duration\": 218.34, \"timestamps\": [[0, 32.75], [32.75, 137.55], [147.38, 218.34]], \"sentences\": [\"A view is seen of a female chef and a male one appears.\", \" They wave at the camera before showing a recipe for graham cracker cake.\", \" They show the cake in layers of graham crackers, and are each served a piece.\"]}, \"v_cMuQUTKMc0k\": {\"duration\": 160.17000000000002, \"timestamps\": [[0, 12.01], [12.01, 44.85], [44.85, 82.49], [82.49, 125.74], [125.74, 160.17]], \"sentences\": [\"An introduction comes onto the screen for a video about ice cream.\", \" Some people are standing by an ice cream truck talking about getting some ice cream.\", \" They walk up to the truck window and get their ice cream.\", \" As they eat the ice cream, they talk among each other.\", \" The video ends with the closing credits.\"]}, \"v_MU2DUVy_wqQ\": {\"duration\": 52.63, \"timestamps\": [[0, 7.37], [9.21, 20.26], [25.53, 52.63]], \"sentences\": [\"A boy is seated in a chair at a hair stylist's shop.\", \" He is wearing a cape as she turns him side to side.\", \" She uses clippers to trim and shape his hair.\"]}, \"v_FklvvNrpsUk\": {\"duration\": 172.15, \"timestamps\": [[0, 172.15], [0.86, 172.15], [0, 171.29]], \"sentences\": [\"A woman is standing in a bathroom.\", \" She is holding a black hair dryer.\", \" She is drying her hair with the hair dryer.\"]}, \"v_pIk9qMEyEd4\": {\"duration\": 108.83, \"timestamps\": [[3.26, 107.2], [0, 107.2], [0, 108.83]], \"sentences\": [\"three men are standing in a small room.\", \" three men are asembling a bycicle in a small room.\", \" a bicycle is being assembling in a blue pole.\"]}, \"v_E1AVyl1RwF8\": {\"duration\": 52.04, \"timestamps\": [[0, 1.82], [5.2, 21.59], [30.18, 52.04]], \"sentences\": [\"A couple of men are fighting inside a gym.\", \" They are using boxing gloves and equipment.\", \" One man is kicking and punching as the other blocks.\"]}, \"v_RxXBMgsu6uU\": {\"duration\": 177.45, \"timestamps\": [[0, 6.21], [6.21, 94.05], [94.05, 133.97], [130.42, 141.96], [141.96, 170.35], [170.35, 177.45]], \"sentences\": [\"An introduction comes onto the screen for a video about a Jamaican biking team.\", \" Several kids prepare as they begin to embark on a biking race.\", \" The gate opens and the race starts.\", \" One of the bikers falls on the track.\", \" When the race finishes the winner is interviewed.\", \" The  video ends with the closing captions shown on the screen.\"]}, \"v_KU8VVtam3ig\": {\"duration\": 158.94, \"timestamps\": [[0, 15.89], [15.89, 41.32], [41.32, 65.96], [65.96, 158.94]], \"sentences\": [\"A man wearing a black t-shirt and to ladies stand behind a counter in a kitchen.\", \" The man uses stacked pennies to get the angle of the knife to be sharpened and demonstrates how to sharpen kitchen knives using a stone.\", \"  The man slides the knife on the stone while pressing the knife with his fingers.\", \" The man demonstrates the proper way to  sharpens a knife using a steel.\"]}, \"v_8kO6A3W_kQ8\": {\"duration\": 80.34, \"timestamps\": [[0, 36.96], [37.76, 58.65], [58.65, 80.34]], \"sentences\": [\"A hairstylist wearing a striped shirt describes how to brush long hair.\", \" The hairstylist begins by brushing the hair in sections.\", \" The hairstylist starts at the bottom and brushes in a down direction.\"]}, \"v_2GACaR0GdD8\": {\"duration\": 146.05, \"timestamps\": [[0, 3.65], [3.65, 41.63], [41.63, 55.5], [56.96, 146.05]], \"sentences\": [\"A still image of an individual standing by a horse is shown.\", \" Two people ride horses down a forest path.\", \" One of the people stops the horse and dismounts.\", \" The person remounts the horse and continues riding down the path.\"]}, \"v_8QY00KU3gkw\": {\"duration\": 123.79, \"timestamps\": [[0, 17.95], [17.95, 50.75], [50.75, 79.84], [79.84, 115.12], [115.74, 123.79]], \"sentences\": [\"A girl trainer wearing a white shirt introduces herself and a workout with an elliptical trainer machine.\", \" The trainer starts with a warm up high and low intensity workouts on the elliptical machines.\", \" The trainer suggests a lower interval for a brief recovery.\", \" The trainer suggests a lower level for a brief cool down.\", \" The trainer signs off and says goodby.\"]}, \"v_3OXh6OV2Zrc\": {\"duration\": 176.73, \"timestamps\": [[0, 8.84], [8.84, 33.58], [33.58, 66.27], [66.27, 120.18], [120.18, 173.19], [173.19, 176.73]], \"sentences\": [\"A still body of water is shown up under a bridge.\", \"As the camera pans up the bridge,a woman appears with a harness wrapped around her body sitting in a chair.\", \"The lady continues talking to the individuals in front of her as others walk around taking pictures of her.\", \"Finally,the lady stands up and two men of the Climb Crew begin positioning her on the edge of the bridge.\", \"The lady then jumps off the bridge and does the free fall, moving back and forth while hanging up side down.\", \"After,she sits up and the guys above her on the bridge pull her up,she begins smiling and laughing at the camera.\"]}, \"v_ML0XZMcKk_E\": {\"duration\": 125.2, \"timestamps\": [[0, 26.92], [15.02, 80.13], [26.92, 120.19], [43.82, 120.19]], \"sentences\": [\"Four men are walking up to the stage with their fencing swords.\", \" The men waved their fencing sword as the walked.\", \" Two athletes are competing with each other with their fencing words.\", \" A man below the stage is walking with the athletes as they compete.\"]}, \"v_LZxTeIeuqT8\": {\"duration\": 170.97, \"timestamps\": [[0, 24.79], [22.23, 110.28], [109.42, 170.97]], \"sentences\": [\"two girls are standing in roller skates.\", \" the girls begin to hold each and try to skate.\", \" one girl falls down while the other tries to help.\"]}, \"v_G8gTBLLf8Bo\": {\"duration\": 102.63, \"timestamps\": [[0, 24.12], [24.12, 67.74], [67.74, 102.63]], \"sentences\": [\"A woman introduces that she will be doing a video about how to clean windows.\", \" Those items that she will be using to clean the windows as well as how to open the windows to be clean.\", \" She then proceeds to clean the windows and then close them back into place.\"]}, \"v_hgLDMHCcw4k\": {\"duration\": 93.22999999999999, \"timestamps\": [[0, 93.23], [1.4, 92.3], [5.13, 45.68], [36.83, 52.21], [49.41, 81.58], [80.18, 93.23]], \"sentences\": [\"There are two women dressed in Yoga pants and tanks tops demonstrating some Pilates moves and techniques in a bright room with a large window overlooking an ocean.\", \" The instructor is talking as her model demonstrates the techniques on a tabletop.\", \" The model poses by kneeling on her right knee and bending sideways by supporting herself on her right arm.\", \" The instructor adjust her foot to show the correct posture for yoga.\", \" Then the instructor makes the model lift her left leg up straight and move it sideways while maintaining balance.\", \" Then the model sits down on her knees as the instructor completes her tutorial session.\"]}, \"v_uuhcDXyGrEI\": {\"duration\": 170.69, \"timestamps\": [[0, 12.8], [22.19, 65.72], [87.91, 170.69]], \"sentences\": [\"A man is seated at a table in a kitchen.\", \" He reads from a piece of paper in front of him.\", \" He then uses the ingredients on the table to create a sandwich.\"]}, \"v_EWlt9TTOw30\": {\"duration\": 82.5, \"timestamps\": [[0, 11.14], [8.66, 22.28], [16.91, 27.64], [26.81, 39.6], [38.36, 60.23], [57.75, 81.26]], \"sentences\": [\" a christmas tree is shown.\", \" a man then takes fabric and wraps it around the tree.\", \" the man removes the fabric.\", \" the man cuts the fabric.\", \" the man points to the tree.\", \" the man then takes the cut fabric and tucks in in the tree.\"]}, \"v_EQajiMQAW74\": {\"duration\": 37.83, \"timestamps\": [[0, 37.83], [14.94, 22.32], [32.72, 33.48], [34.42, 37.83]], \"sentences\": [\"A guy cuts a man's hair with a clipper.\", \" The guy seats on the sink.\", \" The man rubs his cheek.\", \" The guy runs his finger through the man's hair.\"]}, \"v_a4-5QFOiAiw\": {\"duration\": 59.98, \"timestamps\": [[0, 8.1], [8.1, 14.99], [14.99, 59.08], [0.3, 59.08]], \"sentences\": [\"A man is standing on an outdoor court that is blue and in slow motion he is shown throwing the tennis ball up in the air.\", \" When the tennis ball comes down the man hits it very hard with his racket.\", \" The man throws the ball up again in the air and hits it very hard and does that three times until the words on the top of the screen spin away in a special effect as if it's spinning out into the distance of the video until it fades to black.\", \"Red words appear at the top of the screen that say \\\"Pro Tennis Lessons www tenniscruz com\\\".\"]}, \"v_I4uZkBmE5eM\": {\"duration\": 82.12, \"timestamps\": [[0, 79.24], [0.41, 79.24], [79.66, 82.12]], \"sentences\": [\"A man is sitting behind two drums.\", \" He starts to play the drums with his hands.\", \" He stops playing and stands up.\"]}, \"v_pSp7zYRYjHE\": {\"duration\": 32.15, \"timestamps\": [[0.48, 19.61], [5.3, 23.95], [21.38, 31.35]], \"sentences\": [\"A young boy is seen brushing his teeth.\", \" He smiles to the camera and brushes his tongue.\", \" He takes out the toothpaste and speaks.\"]}, \"v_PY6WgOIZlhw\": {\"duration\": 223.35, \"timestamps\": [[0, 43.55], [0, 49.14], [0, 45.79], [0, 223.35]], \"sentences\": [\"a man wearing black clothesis lifting weight in a corer of a room.\", \" wmoan is on side of th room lifting weight.\", \" in front musculous man is kneeling in floor trying to lifting weight.\", \" men are in room lifting weight on the middle of mats.\"]}, \"v_dAcdSkaoK64\": {\"duration\": 89.28, \"timestamps\": [[0, 8.48], [14.73, 68.3], [70.98, 89.28]], \"sentences\": [\"A male gymnast walks up to a beam.\", \" He mounts it and begins spinning and doing splits in the air.\", \" He then dismounts and raises his arms.\"]}, \"v_20ooSJixdyg\": {\"duration\": 75.61, \"timestamps\": [[0.38, 74.09], [0.38, 22.68], [27.22, 52.92], [52.92, 75.23]], \"sentences\": [\"A woman demonstrates how to make a mixed drink from behind a bar, ending with preparing a glass with lime around the rim , a straw, and a smile.\", \"  A woman in a white shirt stands behind a bar and begins to make a mixed drink starting with ice and alcohol.\", \"  The woman then adds ginger ale, and shakes the drink in a tumbler.\", \"  The woman then lines a drinking glass rim with lime before pouring the tumbler contents into the glass with a straw, picking up the drink and smiling with the finishes product.\"]}, \"v_U_FxyViYYBA\": {\"duration\": 93.92, \"timestamps\": [[0, 93.92], [38.98, 44.14], [48.84, 69.5]], \"sentences\": [\"A little girl is playing on a playground.\", \" She goes down a little slide on the playground.\", \" She climbs back up and goes down the slide again.\"]}, \"v__VPf75tGIHQ\": {\"duration\": 60.14, \"timestamps\": [[0, 60.14], [5.11, 11.43], [9.62, 20.75], [16.24, 30.67], [27.97, 36.69], [36.08, 49.31], [47.51, 60.14]], \"sentences\": [\"There are two men playing racket ball in an indoor court with a few spectators watching them.\", \" The player on the left begins by serving and hits the ball on the wall.\", \" His opponent returns his serve swiftly.\", \" They both continue playing and maintain a good rally until the player on the right misses a shot.\", \" The player on the left wins a point and the spectators applaud and cheer for him.\", \" The player on the left serves again and his opponent returns the serve.\", \" This time the player on the left is unable to hit back and the ball bounces off of the wall into the court.\"]}, \"v_E15z95ZcEYU\": {\"duration\": 56.5, \"timestamps\": [[0, 56.5], [6.21, 56.5], [10.17, 56.5], [11.86, 56.5]], \"sentences\": [\"A woman is laying back in a chair.\", \" A man is using a large needle on her arm.\", \" He is filling in a tattoo.\", \" The woman stares blankly at the ceiling.\"]}, \"v_zAr9k1-umvY\": {\"duration\": 211.81, \"timestamps\": [[22.24, 119.67], [58.25, 61.43], [119.67, 136.62], [137.68, 200.16]], \"sentences\": [\"A person is kneeling down putting tile onto the wall.\", \" Another man stands behind them helping them.\", \" They lay down a pink paper onto the floor.\", \" They put tile on top of the paper.\"]}, \"v_7s7YqryNMAE\": {\"duration\": 84.82, \"timestamps\": [[0.85, 7.63], [5.94, 12.72], [36.9, 56.41]], \"sentences\": [\"A woman holds her eye open.\", \" She takes a contact lens out of her eye.\", \" She uses a tool to take her contact lens out.\"]}, \"v_5kmGgH4xFW0\": {\"duration\": 179.38, \"timestamps\": [[0, 179.38], [11.66, 27.8], [23.32, 93.28], [51.12, 103.14], [96.86, 125.56], [119.28, 166.82], [165.03, 179.38]], \"sentences\": [\"There's a group of four people sharing memories of snow tubing in the Colorado snowy mountains slopes.\", \" Two people from the group are dressed in winter gear, go down the slope in their tubes.\", \" The other two group members follow them in their tubes as they go down the mountain slope.\", \" The group members enjoy themselves in the tubes are the go downhill.\", \" They share some pictures of their tubing adventure.\", \" The snowy mountain slopes have several other tubers enjoying themselves as they go down the slopes.\", \" The group shares a picture of themselves standing next to their snow tubes at the bottom of the mountain slope.\"]}, \"v_4mSPGxeKK2k\": {\"duration\": 60.44, \"timestamps\": [[0, 15.41], [15.41, 42.31], [17.53, 51.98]], \"sentences\": [\"A tiger is shown behind a fence holding a rope in its mouth.\", \" Women are standing on the other side of the fence pulling on the rope.\", \" People are standing behind them watching.\"]}, \"v_sWtwatYMbX0\": {\"duration\": 112.47999999999999, \"timestamps\": [[0, 14.62], [9, 32.62], [34.87, 65.24], [61.3, 112.48]], \"sentences\": [\"a woman stands behind a bar.\", \" the woman waves and starts talking.\", \" the woman points at various items on the bar.\", \" the woman holds up a mixer and begins to make a drink.\"]}, \"v_bG55LSFBA9M\": {\"duration\": 45.23, \"timestamps\": [[0, 7.69], [5.88, 30.08], [28.5, 45.23]], \"sentences\": [\"a group of people gather around a river.\", \" the group then water tubes downstream.\", \" the group plays a few games in the water.\"]}, \"v_hRuHqoXEvsI\": {\"duration\": 28.0, \"timestamps\": [[0, 28], [0.56, 6.02], [1.68, 6.72], [6.02, 28], [12.04, 26.74]], \"sentences\": [\"There's a woman artist dressed in a pink straw skirt and top performing and dancing with a stick.\", \" She is dancing next a large drum wheel while balancing a stick on her neck and twirling her body.\", \" As the drum wheel rotates, she dances with the sticks in her hands.\", \" She then goes around in circles as she juggle two sticks in her hands.\", \" She goes around while juggling the sticks in her hands as she dances simultaneously.\"]}, \"v_tTkavaWq0QM\": {\"duration\": 181.98, \"timestamps\": [[2.73, 5.46], [5.46, 15.47], [15.47, 175.61], [61.87, 63.69]], \"sentences\": [\"The curtain raises and a man and a woman are shown.\", \" The man walks towards the woman.\", \" The two begin to dance together.\", \" The scene switches from black and white to full color.\"]}, \"v_CnrvRF_N7fU\": {\"duration\": 153.57999999999998, \"timestamps\": [[0, 13.05], [13.05, 25.34], [25.34, 70.65], [71.41, 132.84], [132.84, 153.58]], \"sentences\": [\"A man in orange colored shorts jump up on to a pile of gym mats and down to the ground.\", \" The man wearing orange shorts works out on a thigh machine.\", \" A man in a blue tank top and a man wearing a black tank top work out on the rowing machines with the man wearing the orange shorts.\", \" The men work out running on a treadmill.\", \" The man wearing a grey t-shirt and the man wearing the black tank top jump on and off of the pile of gym mats.\"]}, \"v_gXk9TiqGUHs\": {\"duration\": 215.82999999999998, \"timestamps\": [[0, 168.35], [5.4, 15.11], [18.35, 198.56], [46.4, 47.48], [48.56, 49.64], [72.3, 73.38], [85.25, 87.41], [125.18, 128.42], [160.79, 165.11], [169.43, 171.58], [199.64, 214.75]], \"sentences\": [\"A guy sits and talks inside.\", \" The credits of the clip are shown.\", \" A man surfs on a body of walk.\", \" A male pulls a duffel bag.\", \" The male writes on a slip.\", \" A guy sticks his pinkie finger into his ear.\", \" The guy rubs his eye with his fingers.\", \" A guy touches his back while he sits and talks.\", \" A lady spins on skates.\", \" A guy walks with surf board underneath his arm.\", \" The credits of the video are shown.\"]}, \"v_70GQ4Nnrk4E\": {\"duration\": 148.79, \"timestamps\": [[0, 148.79], [23.06, 119.04], [65.47, 131.68]], \"sentences\": [\"This man is standing on stage and he is jumping rope using the white rope.\", \" The man skips and does other tricks to the music causing the kids in the crowd to gawk and comment.\", \" He even flips on his hands and criss crosses while jumping rope.\"]}, \"v_XLdqEn8pqis\": {\"duration\": 142.06, \"timestamps\": [[0, 63.22], [39.78, 102.28], [97.31, 138.51]], \"sentences\": [\"A young child is seen sitting in a chair holding an accordion.\", \" She begins playing while rocking back and fourth.\", \" She continues playing to the camera over and over.\"]}, \"v_L4rKeN_4CLk\": {\"duration\": 113.72999999999999, \"timestamps\": [[0, 27.3], [19.9, 81.32], [66.53, 109.75]], \"sentences\": [\"A person is seen riding around on a surf board with another person watching on the side.\", \" The man rides all along the waves while text demonstrates how to perform moves.\", \" He continues riding around on the water and ends with credits.\"]}, \"v_0pegrKSh4iw\": {\"duration\": 177.17000000000002, \"timestamps\": [[0, 54.04], [46.95, 131.99], [124.02, 170.08]], \"sentences\": [\"A man is seen playing a set of drums followed by another man standing near him.\", \" The man continues playing while the man speaks into the microphone and other people play instruments around him.\", \" The group continue playing with one another while talking and laughing.\"]}, \"v_Yezk4k2E5s0\": {\"duration\": 11.56, \"timestamps\": [[0, 3.06], [3.06, 6.94], [7, 11.56]], \"sentences\": [\"A person in a red shirt stands and holds a javelin on a red outdoor track.\", \" The person lines up the shot and runs forward.\", \" The person throws the javelin and watches as they turn away as others who are around watch as well.\"]}, \"v_bPZRYmr7p1k\": {\"duration\": 143.77, \"timestamps\": [[0, 143.77], [20.13, 143.77], [47.44, 143.77]], \"sentences\": [\" A man riding the horse and shot is arrow using a bow.\", \" One man hit the man's back and fell off the horse.\", \" The man is in the battle field fighting other men and, and then they ride the horses in the field.\"]}, \"v_gUQFX_IydG8\": {\"duration\": 113.84, \"timestamps\": [[0, 13.09], [13.66, 27.32], [30.17, 99.61], [99.04, 113.84]], \"sentences\": [\"Nuns walk into a room against a wall.\", \" One of the nuns breaks a board with her hands.\", \" The nuns begin to perform karate moves.\", \" A nun fights with a man and karate kicks him.\"]}, \"v_M7Lc8nh9auA\": {\"duration\": 48.09, \"timestamps\": [[0, 4.57], [9.86, 14.19], [33.18, 33.42]], \"sentences\": [\"A man jumps off stairs in roller blades.\", \" He falls on the ground on top of the stairs.\", \" A man watching him laughs at him.\"]}, \"v_KEJP4Uxa5m0\": {\"duration\": 164.31, \"timestamps\": [[0, 7.39], [21.36, 23.82], [21.36, 164.31]], \"sentences\": [\"A woman is kneeling down onto the grass.\", \" She hits a ball with a stick.\", \" A man in a red shirt is standing next to her.\"]}, \"v_2-1MNxfX5Bc\": {\"duration\": 68.42, \"timestamps\": [[1.03, 13], [13, 43.45], [33.53, 66.03]], \"sentences\": [\"A large group of people are seen moving in a raft down a river.\", \" The person fall out and ride down the river while others run on the side.\", \" More people continue to ride down the river.\"]}, \"v_ReKUs0km4X8\": {\"duration\": 132.82, \"timestamps\": [[0, 8.63], [8.63, 83.01], [83.01, 126.18], [126.18, 132.82]], \"sentences\": [\"An introduction comes onto the screen for a video about a shot put challenge.\", \" Several people are shown preparing o engage in a shot put toss.\", \" Then they are shown making throws and celebrating their distance.\", \" The video ends with the closing credits shown on the screen.\"]}, \"v_gjz9pSK0Y9I\": {\"duration\": 124.39, \"timestamps\": [[0, 31.1], [34.83, 90.8], [74.63, 122.52]], \"sentences\": [\"A young man is seen kneeling down before a set of shoes.\", \" He speaks to the camera and tries on a pair of shoes.\", \" He tries on more pairs while still speaking to the camera.\"]}, \"v_U40FhqwfBvs\": {\"duration\": 101.03, \"timestamps\": [[0, 12.63], [13.13, 55.06], [46.47, 92.95]], \"sentences\": [\"A woman is seen holding a plate and speaking to the camera.\", \" She then begins cutting up a cucumber over and over.\", \" She continues cutting and showing a close up of a table.\"]}, \"v_4WikrzXQ3Bo\": {\"duration\": 75.05, \"timestamps\": [[0, 7.13], [10.13, 46.9], [50.28, 75.05]], \"sentences\": [\"A man and woman are standing on a skating rink.\", \" They start performing using jump ropes.\", \" They jump, slide, handstand, and flip using the ropes as an audience watches.\"]}, \"v_mNM01g9wLy4\": {\"duration\": 75.4, \"timestamps\": [[0, 21.86], [18.85, 58.43], [56.17, 73.51]], \"sentences\": [\"A woman is seen speaking to the camera and begins exercising on a machine.\", \" She moves her body back and fourth while still speaking to the camera.\", \" She continues to ride the machine back and fourth.\"]}, \"v_5E2OdhrgG8s\": {\"duration\": 181.21, \"timestamps\": [[0, 16.31], [35.34, 133.19], [145.87, 181.21]], \"sentences\": [\"A group is standing in a dark room.\", \" They are playing harmonicas in unison.\", \" They continue playing to a tune.\"]}, \"v_ABBA086Gmq0\": {\"duration\": 200.57, \"timestamps\": [[0, 34.1], [38.11, 111.32], [144.41, 200.57]], \"sentences\": [\"A man rides a bike out of a building and down a road.\", \" He rides the bmx dirt bike throughout the town.\", \" He rides it back into a garage and up the stairs.\"]}, \"v_zemqddZ_YO4\": {\"duration\": 161.07999999999998, \"timestamps\": [[8.86, 57.18], [47.52, 129.67], [128.06, 159.47]], \"sentences\": [\"A woman is seen climbing a large rock.\", \" She is shown again from several angles making her way up the rock.\", \" She continues to climb and ends by looking down.\"]}, \"v_BMxtjh9E7BY\": {\"duration\": 67.85, \"timestamps\": [[0, 27.14], [25.1, 53.26], [47.49, 67.85]], \"sentences\": [\"Two men in yellow shirts are brushing the front of the stone as it glides down to the target.\", \" The man in red kicked the stone causing the other young man in yellow trip over and hit the ground.\", \" The young man is covering his nose and a woman opend the door.\"]}, \"v_9jivQgF6J1g\": {\"duration\": 152.05, \"timestamps\": [[0, 32.69], [26.61, 100.35], [108.71, 145.96]], \"sentences\": [\"A large group of people are seen skating around on ice playing hockey.\", \" The men switch with other team mates and a goalie looks around.\", \" The men speak with one another as others watch on the side.\"]}, \"v_ig867kFeLic\": {\"duration\": 17.42, \"timestamps\": [[0, 3.31], [3.57, 8.71], [9.14, 17.42]], \"sentences\": [\"A man is walking around a lot on a pair of stilts.\", \" He begins jumping up and down on them.\", \" He talks to his friends as he walks.\"]}, \"v_cXfflEWa83E\": {\"duration\": 181.07, \"timestamps\": [[0, 174.73], [24.44, 174.73], [171.11, 174.73]], \"sentences\": [\"A person is wake boarding behind a boat.\", \" They go back and forth over the waves of the boat.\", \" A picture of the lake is shown at sunset.\"]}, \"v_XyQSmMYbP6o\": {\"duration\": 124.55, \"timestamps\": [[0, 36.12], [6.85, 89.68], [22.42, 89.68], [66.01, 124.55]], \"sentences\": [\"Two women are talking to the camera.\", \" The woman with necklace is talking to the camera and showed her swimsuit briefly.\", \" The woman is looking down with her mouth open and put her face in the water.\", \" The girls wiped her face and licked the water.\"]}, \"v_EEMGyhO3OVI\": {\"duration\": 145.37, \"timestamps\": [[4.36, 25.44], [27.62, 29.8], [69.78, 71.23], [102.49, 130.83], [136.65, 140.28]], \"sentences\": [\"People are racing bikes around a dirt trail.\", \" A man takes a drink out of a large can.\", \" Two people hug at the end of the race.\", \" The bikes line up at the starting line before racing.\", \" Three men are standing on the winners podium.\"]}, \"v_KwBuRjh_v9M\": {\"duration\": 108.3, \"timestamps\": [[0, 12.45], [12.45, 33.03], [33.03, 89.35], [89.35, 108.3]], \"sentences\": [\"An introduction comes onto the screen for a video about a piercing method.\", \" A woman sits and waits as she prepares to get a piercing in her cheek.\", \" She lays down and receives the piercing in her cheek, then sits up to wipe her face.\", \" When the video is over the closing captions are shown on the screen.\"]}, \"v_i0AsepC37Sk\": {\"duration\": 211.6, \"timestamps\": [[4.23, 5.29], [5.29, 193.62], [161.88, 166.11], [197.85, 202.08]], \"sentences\": [\"A man is sitting behind two drums.\", \" He begins to play them with his hands.\", \" A man is standing with his arms folded behind him.\", \" People that are watching him applaud for him.\"]}, \"v_WOZbWqJMkRg\": {\"duration\": 184.74, \"timestamps\": [[0, 181.04], [85.9, 87.75], [88.67, 169.96], [181.04, 184.74]], \"sentences\": [\"People plays in a marching band outdoors wearing special uniforms.\", \" A woman pass on front the marching band.\", \" A man stands and walks on front the marching band looking when they play.\", \" Then, the marching band stops to play and put their instruments on the ground.\"]}, \"v_FQEGKGn9vnU\": {\"duration\": 128.55, \"timestamps\": [[0, 59.13], [58.49, 82.27], [80.98, 128.55]], \"sentences\": [\"A girl climbs up a slide and goes back down several times.\", \" A girl climbs up stairs on the playground.\", \" People are sitting on a hill watching them play.\"]}, \"v_QrQN-Hm5xew\": {\"duration\": 90.12, \"timestamps\": [[0, 9.91], [12.62, 56.77], [63.98, 90.12]], \"sentences\": [\"A man is wearing a large gold necklace.\", \" Several people are shown inside a warehouse.\", \" They begin skateboarding up and down the ramps.\"]}, \"v_CYPfbnL0bCI\": {\"duration\": 182.35, \"timestamps\": [[0, 33.73], [33.73, 71.12], [71.12, 182.35]], \"sentences\": [\"a matches box and a fuel are on dry leaves.\", \" then woods are on a pile.\", \" a man holds a foil and tun it on with a match.\"]}, \"v_KbbEbeCJTJg\": {\"duration\": 154.14, \"timestamps\": [[0, 20.04], [31.6, 101.73], [110.21, 154.14]], \"sentences\": [\"A man is standing on a field, talking to the camera.\", \" He walks around with a ball in his hand.\", \" He spins, then throws the ball as far as he can.\"]}, \"v_CGIrDfEP5lE\": {\"duration\": 95.09, \"timestamps\": [[0, 10.46], [20.44, 58.95], [60.86, 95.09]], \"sentences\": [\"A man is riding a lawn mower outside a house.\", \" He goes around in circles, covering the lawn.\", \" A little girl chases and dances behind the mower.\"]}, \"v_GtCXZRGSaqk\": {\"duration\": 149.4, \"timestamps\": [[0, 21.66], [21.66, 88.14], [88.14, 115.04], [115.78, 149.4]], \"sentences\": [\"someone is walking on sand to a beach.\", \" the man on the sea is doing wakeboarding on the sea.\", \" woman is doing wakeboard next to the man.\", \" various boats are standing on a beach and two men are walking out of them.\"]}, \"v_EXUKhI7WTqo\": {\"duration\": 104.72, \"timestamps\": [[0, 15.71], [17.8, 79.59], [84.3, 104.72]], \"sentences\": [\"A group of women are dancing in a yard outside a house.\", \" They are spinning each other in circles as they dance.\", \" they continue dancing, laughing and talking.\"]}, \"v_p81NOkb2rww\": {\"duration\": 100.52000000000001, \"timestamps\": [[0, 18.09], [5.03, 18.09], [11.06, 18.09], [20.61, 100.52]], \"sentences\": [\"Several athletes are in a gym.\", \" They kick a ball around.\", \" They are then outside posing.\", \" Several clips of soccer games are shown.\"]}, \"v_PmmKHLmG5Ec\": {\"duration\": 98.12, \"timestamps\": [[0, 22.08], [22.57, 26.49], [26, 68.19], [68.19, 84.38], [81.44, 98.12]], \"sentences\": [\"A number of individuals prepare to engage in tug of war while referees and an audience watches on.\", \" The referee releases the rope to signal the start of the tug of war.\", \" The individuals engage in tug of war against each other.\", \" One of the teams wins and the individuals all walk closer to the camera.\", \" Another individual walks to the far end of the room holding one end of the rope.\"]}, \"v_tZswexUR6Q0\": {\"duration\": 192.86, \"timestamps\": [[0, 192.86], [0, 24.11], [24.11, 121.5], [121.5, 192.86]], \"sentences\": [\"A group of women are seen flirting, dancing , laughing and drinking on land and in the back of a boat.\", \"  A group of girls in bikinis ride in the back of a boat being pulled on land.\", \"  The women then handle boating equipment before riding in the back of a boat on the water, flirting with the camera in bikinis, holding beers and making suggestive movements to the camera.\", \"  The women are then seen in the back of the boat drinking from beer bottles, laughing, posing and dancing.\"]}, \"v_5JlwYD_GChY\": {\"duration\": 78.14, \"timestamps\": [[0.78, 22.66], [21.1, 60.16], [48.44, 75.4]], \"sentences\": [\"A large group of people are seen wandering around a beach playing soccer.\", \" People walk around a city and enjoy one another as well as playing more soccer.\", \" People continue to play in several shots.\"]}, \"v_Yh6xzcNlAjo\": {\"duration\": 72.22, \"timestamps\": [[0, 5.06], [10.11, 57.05], [60.3, 72.22]], \"sentences\": [\"A person closes an oven door in a kitchen.\", \" There is a pan covered in cookies inside the oven.\", \" A man removes the cookies and a woman inspects them.\"]}, \"v_wqc2KnHfPHk\": {\"duration\": 130.15, \"timestamps\": [[0, 54.66], [55.31, 96.96], [97.61, 130.15]], \"sentences\": [\"A street parade with a marching band approaches the camera.\", \" The parade stops and the men play the drums.\", \" The camera pans the stopped parade line.\"]}, \"v_5MLEO5JWRYI\": {\"duration\": 122.92, \"timestamps\": [[0, 28.89], [20.28, 59.61], [47.94, 82.97], [82.35, 122.92]], \"sentences\": [\"some one pours baking soda down a drain.\", \" the person holds the box of baking soda up the the camera.\", \" the person then continues to pour baking soda all over the inside of the sink.\", \" the person then pats the baking soda down.\"]}, \"v_BWKKwqX62Y4\": {\"duration\": 43.33, \"timestamps\": [[0, 39.21], [3.68, 39.21], [39.43, 41.38], [41.81, 43.33]], \"sentences\": [\"A boy in a red jacket swings on a swing set with trees in the background.\", \" He swings higher and higher.\", \" Finally he jumps off the swing and lands at the edge of the play area.\", \" He turns and walks towards the camera.\"]}, \"v_nDJgThY8zi8\": {\"duration\": 52.71, \"timestamps\": [[5.01, 6.33], [10.01, 42.96], [29.52, 30.04]], \"sentences\": [\"A woman is walking down stairs.\", \" She gets on a cycle bike exercise machine and starts working out.\", \" She adjusts the seat on the cycle bike.\"]}, \"v_onBAyGhqubg\": {\"duration\": 77.37, \"timestamps\": [[0, 56.48], [56.48, 63.06], [71.18, 77.37]], \"sentences\": [\" A woman does flips off of a diving board into the pool.\", \" A person jumps on a diving board outside and jumps into a swimming pool.\", \"  A person is sitting in a chair watching them.\"]}, \"v_pBaeRTgaNBM\": {\"duration\": 123.65, \"timestamps\": [[0, 12.98], [19.78, 76.04], [82.84, 123.65]], \"sentences\": [\"A man is located inside a gym.\", \" He is talking while several people are using rowing machines.\", \" He shows the mechanics of how the machines work.\"]}, \"v_shpZ47Mvxfg\": {\"duration\": 179.09, \"timestamps\": [[7.16, 21.49], [22.39, 42.98], [71.64, 88.65], [94.02, 121.78], [148.64, 162.08]], \"sentences\": [\"A girl applies lotion to her face with hands.\", \" The girl applies a face foundation stick and brushes it in.\", \" The girl applies make up with a brush to her eyebrows.\", \" The girl curls her eye lashes then paints them with mascara.\", \" The applies lipstick to finish her look.\"]}, \"v_60Fyun_Szw4\": {\"duration\": 16.58, \"timestamps\": [[0, 1.82], [2.24, 7.21], [7.46, 16.58]], \"sentences\": [\"a man is standing on a track and field.\", \" He spins several times with a ball in his hand.\", \" He lets it go, then watches it.\"]}, \"v_8iTz6Jy3lJg\": {\"duration\": 189.08, \"timestamps\": [[0, 66.18], [47.27, 146.54], [128.58, 185.3]], \"sentences\": [\"A group of men are seen standing around a table full of objects and speaking to the camera.\", \" The men hold up various hoses and tubes and leads into a man riding on a tube.\", \" The man rides behind a boat while others watch and speak to one another.\"]}, \"v_vKC23-I4pBc\": {\"duration\": 34.09, \"timestamps\": [[0, 11.08], [11.25, 26.59], [26.59, 34.09]], \"sentences\": [\"Several individuals walk back and forth on a stage with glass panes mounted in the middle while others stand or sit nearby.\", \" One of the individuals speedily cleans the glass panes.\", \" The individual walks off stage.\"]}, \"v_fZQS02Ypca4\": {\"duration\": 170.99, \"timestamps\": [[0, 22.23], [22.23, 58.99], [58.99, 142.78], [142.78, 170.99]], \"sentences\": [\"little kid is standing in front of a camera and its putting blush on her cheeks.\", \" then with a small pincel grab eyeshadow and put it on her eyelids.\", \" the girl is putting pink lipstick on her lips and talking to the camera.\", \" litle girl is painting her nails with pink polish.\"]}, \"v_VthI1KPjEq8\": {\"duration\": 16.95, \"timestamps\": [[0, 3.05], [3.39, 13.22], [13.98, 16.95]], \"sentences\": [\"A woman is dipping a rag in a bowl of olive oil.\", \" She then rubs the oil on the wood of a chair.\", \" Then she zooms in on the shiny wood.\"]}, \"v_29UfCoftDkA\": {\"duration\": 47.18, \"timestamps\": [[0, 6.37], [3.54, 14.15], [12.27, 27.6], [26.66, 47.18]], \"sentences\": [\"a man stands in between two metal bars that are waist high.\", \" the man places his hands on the bars.\", \" the man begins to walk forward will holding on to the bars.\", \" the man then walks backwards while holding on to the bars.\"]}, \"v_JhihdPxI_Xc\": {\"duration\": 134.0, \"timestamps\": [[0, 18.76], [31.49, 59.63], [73.03, 134]], \"sentences\": [\"A group is surrounding two women in a ring.\", \" They are crouched in front of each other.\", \" They jump up and start emulating a style of kickboxing.\"]}, \"v_DfOqhNeHDgM\": {\"duration\": 57.77, \"timestamps\": [[0.58, 3.76], [4.04, 53.15], [4.33, 53.15], [10.11, 13], [54.02, 56.91]], \"sentences\": [\"The credits of clip are shown.\", \"  Some guys are playing drums outside.\", \" Children that are surrounding the drum players are clapping.\", \" A shirtless boy is clapping and dancing in place.\", \" The credits of video are shown.\"]}, \"v_y9bLCC26MGQ\": {\"duration\": 36.87, \"timestamps\": [[0, 10.14], [9.4, 26], [26, 36.14]], \"sentences\": [\"A person is seen walking on a field carrying sticks while another stands ready.\", \" The other man then runs down the track and jumps into a sand pit.\", \" His jump is shown again in slow motion.\"]}, \"v_d7gbNqcKXps\": {\"duration\": 7.06, \"timestamps\": [[0, 1.59], [2.01, 5.22], [6.14, 7.06]], \"sentences\": [\"A group of people are gathered with bats outside.\", \" They are trying to hit a ball through loops.\", \" They hit the ball and it goes through its target.\"]}, \"v_Nsl_tnIRNEo\": {\"duration\": 156.85, \"timestamps\": [[0, 30.59], [35.29, 109.01], [122.34, 156.85]], \"sentences\": [\"A man walks up to a lane with a bowling ball.\", \" He throws the ball, and then we see several kids making a homemade version.\", \" They roll a ball and hit the pins.\"]}, \"v_TaLEPzEyZ34\": {\"duration\": 167.81, \"timestamps\": [[0, 11.75], [0, 23.49], [11.75, 57.89], [44.47, 167.81]], \"sentences\": [\"A woman is standing at a mail box.\", \" She is reading a letter outside.\", \" She is then drinking a cup of coffee.\", \" She reads a book and lays in bed.\"]}, \"v_WZeMQ-5dFlM\": {\"duration\": 127.8, \"timestamps\": [[0, 15.34], [26.84, 97.77], [104.8, 127.8]], \"sentences\": [\"A boy is riding on a skateboard outside.\", \" He goes down the street, flipping the board.\", \" He continues doing stunts as he rides.\"]}, \"v_nI_XzNfxjlY\": {\"duration\": 215.54, \"timestamps\": [[14.01, 22.63], [30.18, 33.41], [38.8, 67.9], [72.21, 201.53], [202.61, 208]], \"sentences\": [\"A person carries two bags out of a house.\", \" A dog walks out of a house.\", \" A baby walks out of the house and falls into the swimming pool.\", \" The baby lays on its back in the pool.\", \" A man comes behind the baby and picks him up.\"]}, \"v_FGFPyp9nJug\": {\"duration\": 229.72, \"timestamps\": [[0, 51.69], [55.13, 152.76], [151.61, 229.72]], \"sentences\": [\"a toddler is in a stroller holding a lease to a dog.\", \" another toddler is walking a dog on a lease.\", \" a different dog is seen pushing a baby in a stroller.\"]}, \"v_QTPz2j16KFk\": {\"duration\": 95.27000000000001, \"timestamps\": [[0, 27.15], [27.15, 53.83], [53.35, 76.22], [76.69, 95.27]], \"sentences\": [\"A young man with long hair is sitting at a table with a triangular Rubik's cube on the table.\", \"The man then solves the puzzle and the timer stops as he throws it down.\", \"An instant replay is then shown enhancing the man's reaction for finishing.\", \"Once complete,the guy stands up on the side of the table and signs a piece of paper while being congratulated by the people surrounding him.\"]}, \"v_Yi3xUQcaOnE\": {\"duration\": 90.07, \"timestamps\": [[0.45, 15.76], [15.76, 44.13], [43.23, 70.71], [70.71, 73.86], [74.31, 89.17]], \"sentences\": [\"A man reports in a TV set about a rescue of a person in the raging rapids.\", \" The boats goes down a cascade and a person falls in the water.\", \" Then, a man jumps from the boat and rescue the person and brings him to the shore.\", \" An old man holding an oar talks.\", \" The scene of the accident is replayed in the screen.\"]}, \"v_pMmlJGSucss\": {\"duration\": 74.24, \"timestamps\": [[0, 12.25], [15.59, 43.8], [44.54, 74.24]], \"sentences\": [\"A group of men are standing inside a building.\", \" A man climbs to the end of a diving board.\", \" He jumps off into the water, flipping as he goes.\"]}, \"v_YeZz5PZiiwU\": {\"duration\": 174.87, \"timestamps\": [[0, 48.09], [41.09, 117.16], [104.92, 168.75]], \"sentences\": [\"A man is seen getting into a car and shots of the city are shown.\", \" People speak to the camera as well as hang out in hotel rooms and play fooseball.\", \" Several people are seen wandering around a room that shows games of fooseball going on and people driving.\"]}, \"v_94w7SEcPDho\": {\"duration\": 230.99, \"timestamps\": [[0, 230.99], [8.08, 230.99], [90.09, 114.34], [191.72, 230.99]], \"sentences\": [\"A bike is going down a dirt track.\", \" It goes up and down hills.\", \" They pass another biker on the trail.\", \" The get back to the finish line.\"]}, \"v_g0vAi9iuVPA\": {\"duration\": 13.26, \"timestamps\": [[0, 1.46], [1.72, 8.15], [8.35, 12.73]], \"sentences\": [\"A gymnast is seen standing ready before a platform.\", \" The man then begins flipping down the track while others watch on the side.\", \" He continues flipping and ends with his arms out.\"]}, \"v_HlAjWgz7zZ4\": {\"duration\": 106.44, \"timestamps\": [[0, 43.64], [29.27, 81.96], [66.53, 104.31]], \"sentences\": [\"A camera pans around cars that leads into a person riding a bike into a lake.\", \" More clips are shown of people attempting stunts on a rope and falling off on the side.\", \" A woman is seen walking across the rope and falling into the pool.\"]}, \"v_pqVWGi0d4RU\": {\"duration\": 203.27, \"timestamps\": [[4.07, 10.16], [10.16, 203.27], [167.7, 170.75]], \"sentences\": [\"An older man interviews a bald man with visible injuries on his face.\", \" A series of scenes from hockey games are shown.\", \" An overhead view of one of the hockey team's benches is shown with seated players.\"]}, \"v_41LaEr0i2Dc\": {\"duration\": 176.18, \"timestamps\": [[0, 176.18], [17.62, 176.18], [27.31, 176.18], [35.24, 176.18]], \"sentences\": [\"A large river runs through a canyon.\", \" Several boats ride through the water.\", \" People are being pulled behind the boat.\", \" Waves ripple behind the boats.\"]}, \"v_saB1t3Znhk0\": {\"duration\": 90.19, \"timestamps\": [[6.31, 27.96], [27.96, 66.29], [66.29, 78.46], [78.46, 79.36]], \"sentences\": [\"Two boys perform karate on front people stand in a circle.\", \" Then, a woman and a man join the boys to perform karate in an alternate way.\", \" After, the boys left, and the woman and the man do karate,next  the man takes from his waist a rod to hit the woman, but she hits the man.\", \" Next, the woman and the man salute and left.\"]}, \"v_RhOV_K2XzZA\": {\"duration\": 63.62, \"timestamps\": [[0, 17.18], [18.13, 46.76], [40.72, 62.03]], \"sentences\": [\"A group of people are seen standing around a gym hitting a ball.\", \" The people walk around a bit and continue playing.\", \" Others watch on the side as the volleyball game continues.\"]}, \"v_AK-9sj8btp8\": {\"duration\": 210.63, \"timestamps\": [[0, 210.63], [33.7, 188.51], [188.51, 210.63]], \"sentences\": [\"This video shows many different slides of people running on the field playing a game.\", \" Many of the people throw balls to someone and the person is supposed to hit the ball knocking the object off of the stick.\", \" In the end people are shown smiling with the smile of a champion and the crowd cheers.\"]}, \"v_JHITVq5zJOM\": {\"duration\": 237.54, \"timestamps\": [[0, 43.95], [48.7, 131.84], [144.9, 237.54]], \"sentences\": [\"Several people are gathered around a net on the beach.\", \" They are playing a game of volleyball.\", \" They hit the ball back and forth over the net.\"]}, \"v_4j7sZBThR7s\": {\"duration\": 130.31, \"timestamps\": [[0, 130.31], [0, 15.64], [16.29, 42.35], [97.73, 130.31]], \"sentences\": [\"A chef holds a pan over a fire.\", \" He puts various ingredients in the pan.\", \" He stirs them up and adds eggs.\", \" Eventually he is done with the omelette.\"]}, \"v_AUPs7Ukfc1I\": {\"duration\": 136.32999999999998, \"timestamps\": [[0, 39.53], [32.04, 85.2], [87.25, 132.92]], \"sentences\": [\"A man is seen speaking to the camera and holding up a razor.\", \" The man then begins shaving hair on his chin.\", \" He continues shaving his chin and stops to look at the camera.\"]}, \"v_WuO75Sb0Kgg\": {\"duration\": 135.94, \"timestamps\": [[0, 135.94], [10.2, 125.75], [21.07, 73.41], [62.53, 121.67], [77.49, 135.94]], \"sentences\": [\"There's an optometrist seated with his patient in front of a phoropter in his clinic, talking about contact lenses and its maintenance.\", \" He explains what are the correct ways to put on contact lenses and also how to keep them clean.\", \" A woman is demonstrating how to correctly wear lenses in the eyes as she takes the lenses out of the case.\", \" Then the doctor also demonstrates how to correctly wear the lenses.\", \" The optometrist continues to explain how to store the lenses in the case to increase its life and durability.\"]}, \"v_SdsoRu3953g\": {\"duration\": 185.71, \"timestamps\": [[0, 23.21], [34.36, 101.21], [109.57, 185.71]], \"sentences\": [\"The side of a girl's hair is shown on the camera.\", \" She then shows it off from several angles, before showing the hot rollers she used.\", \" She then demonstrates how the hot rollers are applied and removed.\"]}, \"v_EolA3Rd_Vm4\": {\"duration\": 66.32, \"timestamps\": [[2.32, 58.69], [8.95, 58.69], [49.41, 61.01]], \"sentences\": [\"A person is laying down in a chair with their leg up.\", \" A woman standing next to her is shaving her let.\", \" Another person is holding a blue bucket.\"]}, \"v_KlheP4IiS8w\": {\"duration\": 211.4, \"timestamps\": [[3.17, 199.77], [1.06, 199.77], [187.08, 198.71], [201.88, 204]], \"sentences\": [\"A lady is throwing freebies in a park.\", \" The dog is fetching the freebies the lady throws.\", \" Two passerby move in the walkway adjacent to the park.\", \" The lady and the dog leave.\"]}, \"v_94wjthSzsSQ\": {\"duration\": 138.66, \"timestamps\": [[0, 138.66], [0, 136.58], [0, 19.41], [22.88, 45.76]], \"sentences\": [\"Two men in white stand in a field.\", \" They are surrounded by a crowd of people.\", \" The jump up in the air and spin.\", \" Two women enter and do flips.\"]}, \"v_ZoCRdAYWtKg\": {\"duration\": 148.48, \"timestamps\": [[0, 148.48], [5.2, 148.48], [17.08, 38.61], [43.8, 148.48]], \"sentences\": [\"Several people are sitting in bumper cars.\", \" The bumper cars start to move.\", \" A child drives a car into a wall.\", \" The cars continue to run into each other.\"]}, \"v_63HZk1SInLk\": {\"duration\": 110.39, \"timestamps\": [[0, 17.11], [17.11, 110.39], [17.11, 108.18]], \"sentences\": [\"woman is sitting in a table talking to the camera and writing on a notebook.\", \" woman wearing a pink shirt is sanding in a kitchen talking to the camera and showing the ingredients in the right side and showing how to make a cake.\", \" h woman is mixing the ingredients on bowls and cooking the sryrup.\"]}, \"v_GE2q5qDJ-xU\": {\"duration\": 122.17, \"timestamps\": [[0, 32.38], [32.38, 55.59], [55.59, 122.17]], \"sentences\": [\"This small dog is seen walking on the carpet in cute little shoes.\", \" Then a dog bigger than the last one is seen walking outside on a deck and another one is seen walking on the carpet.\", \" There's also a few other dogs who are being tortured to try and walk in the shoes.\"]}, \"v_TjR436qaQw4\": {\"duration\": 150.21, \"timestamps\": [[0, 19.53], [14.27, 51.82], [44.31, 97.64], [95.38, 150.21]], \"sentences\": [\"a google search screen is shown.\", \" some types into the search bar.\", \" a result of pictures are shown.\", \" a boy is then seen standing in a room.\"]}, \"v_A7oh6l1AIvs\": {\"duration\": 89.17, \"timestamps\": [[0, 8.02], [13.82, 56.17], [58.85, 89.17]], \"sentences\": [\"A man is seated at equipment inside a gym.\", \" He is using a rowing machine and he talks about it.\", \" He sits on it and pushes back and forth.\"]}, \"v_MYi6p113py8\": {\"duration\": 220.78, \"timestamps\": [[0, 70.65], [62.92, 145.71], [142.4, 213.05]], \"sentences\": [\"A woman is seen standing in the middle of a large crowd with a man bending down in front.\", \" The man and woman begin dancing with one another in front of the large crowd.\", \" The two continue dancing with one another while others watch and end by bowing and taking tips.\"]}, \"v_9pJBfTZOcxI\": {\"duration\": 63.62, \"timestamps\": [[0, 12.41], [13.68, 47.72], [48.67, 63.62]], \"sentences\": [\"A man gets on a water ski in flood waters.\", \" He is being drug by the back of a vehicle.\", \" A second car drives behind him, taking a video.\"]}, \"v_H0l29-F7Edg\": {\"duration\": 40.87, \"timestamps\": [[0, 4.5], [4.7, 20.03], [30.24, 40.87]], \"sentences\": [\"A man is kneeling on a floor in a house.\", \" He and another man are putting down tiles.\", \" The recorder goes to another room, where a woman is seated and painting boards.\"]}, \"v_UUjTMDSUvs0\": {\"duration\": 114.68, \"timestamps\": [[0, 25.8], [25.23, 61.36], [60.21, 114.68]], \"sentences\": [\"A woman is cooking food in a pan on the stove.\", \" A buffet of food is shown around the woman.\", \" She is stirring the food in the pan.\"]}, \"v_2_hcULoN4Ls\": {\"duration\": 220.89, \"timestamps\": [[0, 47.49], [47.49, 131.43], [131.43, 220.89]], \"sentences\": [\"A lush green field of grass is shown and a horse begins trotting across the field in a game of polo.\", \"After,four men and a referee begin racing towards the middle of the field and starting a game of polo.\", \"As the game continues,more horses appear trotting across the field and competing to win the game.\"]}, \"v_Vg043D46E7Q\": {\"duration\": 35.69, \"timestamps\": [[0, 13.38], [13.56, 30.51], [30.87, 35.69]], \"sentences\": [\"Half of a man's face is shown in the corner of the camera as he begins smiling and talking to the camera.\", \"While talking,he pans the people next to him and you can see him talking to his friends at a ski resort.\", \"Finally,they all take off and begin tubing down a snow slide,talking and laughing with one another.\"]}, \"v_4Oug7S32B-4\": {\"duration\": 113.18, \"timestamps\": [[0, 31.12], [25.46, 76.39], [76.39, 111.48]], \"sentences\": [\"Two men are seen speaking to one another while one carries a heavy fridge.\", \" Another man carries a fridge as they speak to one another and walk around the room.\", \" In the end they shake hands and walk around more.\"]}, \"v_E7C91KoML-o\": {\"duration\": 20.09, \"timestamps\": [[0, 3.92], [3.31, 11.95], [11.35, 19.78]], \"sentences\": [\"A man is seen bending down before a weight.\", \" He lifts the weight up by his head.\", \" He lifts it over his head and drops it back down.\"]}, \"v_iAIl5eawd6I\": {\"duration\": 215.27, \"timestamps\": [[0, 20.45], [20.45, 24.76], [24.76, 215.27]], \"sentences\": [\"a large snowy mountains are shown with people skiing.\", \" a person is standing on skiis showing how to do side stepping.\", \" the person is skiing down a slope traversing.\"]}, \"v_r8AXq1Q5bn0\": {\"duration\": 168.32, \"timestamps\": [[0, 168.32], [0, 2.52], [2.52, 168.32]], \"sentences\": [\"A man plays the accordion in an animated way in front of a camera with one onlooker in the background.\", \" A man in a baseball cap is seen talking to the camera.\", \"  The man begins playing an accordion and dancing while playing as an onlooker in the background smiles and dances too before leaving the room,  The man continues to pay the accordion while singing and dancing.\"]}, \"v_IfKGdI5egKc\": {\"duration\": 112.55, \"timestamps\": [[0, 112.55], [0, 43.89], [43.89, 112.55]], \"sentences\": [\"These 2 people are trying to bathe this dog who is making the mission completely impossible.\", \" But, after a while the dog allows them to bathe him and there is also someone else trying to bathe the big black dog.\", \" Not to mention, there's another dog that bigger and fluffier than all of the other dogs, except he's easy to work with.\"]}, \"v_SokK_O2s9tQ\": {\"duration\": 110.57, \"timestamps\": [[0, 19.9], [6.08, 19.9], [6.08, 91.78]], \"sentences\": [\"The man is riding a camel.\", \" Two men are standing next to two camels that are resting.\", \" The women are riding the camels while a man is holding the leash of the camel.\"]}, \"v_QCj7IGUGs2Y\": {\"duration\": 126.89, \"timestamps\": [[0, 16.5], [31.72, 66.62], [90.09, 126.89]], \"sentences\": [\"A little girl runs in an indoor playground.\", \" She runs under the equipment looking into a net.\", \" She appears to be confused, walking slowly.\"]}, \"v_Zkz4ef53YjA\": {\"duration\": 43.68, \"timestamps\": [[0, 5.46], [10.26, 22.49], [25.77, 43.68]], \"sentences\": [\"A man is inside a kitchen talking.\", \" He places pasta into boiling water on the stove.\", \" He cooks it in a pan as well.\"]}, \"v_1jjsTfZS5DY\": {\"duration\": 172.9, \"timestamps\": [[0, 8.64], [15.56, 56.19], [86.45, 94.23], [95.09, 107.2], [109.79, 119.3]], \"sentences\": [\"A person writes with marker on paper and is upset that it bleeds through.\", \" The person wraps a package and is upset that the wrapping paper is to short to cover it.\", \" Wrapping paper is cut with a pair of scissors.\", \" The person ties and tapes the wrapping paper on the present.\", \" The girl plays video games on her computer.\"]}, \"v_S3EA0yDdaWY\": {\"duration\": 113.41, \"timestamps\": [[0, 16.44], [22.11, 70.88], [74.28, 113.41]], \"sentences\": [\"Different girls are shown on basketball courts.\", \" They are performing using batons.\", \" They are dancing and twirling, sometimes flipping.\"]}, \"v_w-KZEq6JhnQ\": {\"duration\": 116.33, \"timestamps\": [[0, 6.98], [0, 24.43], [25.01, 38.39], [25.01, 115.17]], \"sentences\": [\"A woman stands outside a building.\", \" She is talking into a microphone.\", \" Another woman is interviewed in an apartment.\", \" Several other girls are interviewed as well.\"]}, \"v_5X7zeOps9uA\": {\"duration\": 109.58, \"timestamps\": [[0, 13.15], [6.57, 19.18], [16.44, 109.58]], \"sentences\": [\"The woman with blindfold is being guided by other woman.\", \" The woman in orange shirt left the woman and the woman in blue shirt starts to hit the pinata.\", \" The woman missed the pinata as she walked backwards and continue to hit the air.\"]}, \"v_4aBJ_L0u7Lo\": {\"duration\": 141.82999999999998, \"timestamps\": [[0, 46.8], [42.55, 101.41], [95.02, 140.41]], \"sentences\": [\"A young girl is seen holding a stick and speaking to the camera.\", \" The girl begins pushing pucks along the ground.\", \" She continue pushing them with the stick and speaking to the camera.\"]}, \"v_o_-a7AMw74M\": {\"duration\": 103.05, \"timestamps\": [[0, 48.95], [48.95, 70.07], [70.59, 103.05]], \"sentences\": [\"man is standing in a white bathtub ceaning hisshoes and his foot with the water from something red that apears to be blood.\", \" then the man do the same with the other foot and the other shoe.\", \" then the man put the shoe under the water so can clean it on inside.\"]}, \"v_FMVECEaQ0Jo\": {\"duration\": 169.67000000000002, \"timestamps\": [[0, 169.67], [5.09, 6.79], [8.48, 13.57], [14.42, 18.66], [16.97, 22.06], [22.06, 34.78], [28, 35.63], [33.09, 66.17], [60.23, 71.26], [65.32, 169.67]], \"sentences\": [\"There are many marathoners talking about their experience in the running and jogging in the mountainous regions.\", \" There are some cops in a city walking around with riffles on their shoulders and walkie talkies in their hand.\", \" A group of people are walking on a suspended wooden bridge in a mountainous region.\", \" The group of people then jog through the wooded area.\", \" Then they are seen walking in a large crowd wearing hats and colorful capes.\", \" There's a man in a denim shirt and hat sitting in a curbside cafe with a book in his hand, talking about what's in the book.\", \" Black and white pictures of some tribal pictures are shown standing near a large tent.\", \" Another man is talking about the tribes and is seen jogging in the wilderness with a dog.\", \" Another lady wearing a pink shirt is talking about her marathon experience.\", \" A couple of people are seen sharing their stories and experience about their jogging expedition in the mountains and their participation in the marathon races.\"]}, \"v_kRom61pt8zk\": {\"duration\": 184.39, \"timestamps\": [[0, 83.9], [36.88, 47.94], [68.22, 72.83], [83.9, 147.51], [151.2, 184.39]], \"sentences\": [\"A girl is talking to the camera and takes her hair down and plays with it.\", \" The girl poses and makes a face.\", \" The girl makes a frightened face.\", \" The girl brushes her hair with a brush.\", \" The girl parts her hair and checks herself out in the camera.\"]}, \"v_w1VJnYDYYY0\": {\"duration\": 33.41, \"timestamps\": [[0, 33.41], [0, 33.25], [0.84, 33.41]], \"sentences\": [\"two boys are playing ping pong in a big room.\", \" two boys from the nickelodeon drake and josh show are playing ping pong.\", \" two men in their bedroom  are playing ping pong.\"]}, \"v_Z1img-5JbDo\": {\"duration\": 11.31, \"timestamps\": [[0.34, 3.45], [3.11, 6.45], [6.5, 11.31]], \"sentences\": [\"A young male athlete is standing on the track running towards the mat at an angle.\", \"The boy takes off,arches his back and does a successful high jump.\", \"After he clears the bar,his friend appears from behind the camera and starts talking.\"]}, \"v_zsw9WEsSowI\": {\"duration\": 89.33, \"timestamps\": [[0, 89.33], [4.91, 85.31], [85.31, 89.33]], \"sentences\": [\"A music stand with sheet music is shown.\", \" A person holds up a flute in front of it and begins playing it.\", \" They then put the flute down.\"]}, \"v_ERGoTBC8NkA\": {\"duration\": 60.19, \"timestamps\": [[0, 10.83], [12.34, 46.34], [48.45, 60.19]], \"sentences\": [\"A girl is standing inside her bathroom.\", \" She is using a battery operated toothbrush.\", \" She is worried by the vibrations, and has difficulty trying it.\"]}, \"v_wAAu-2U5Pso\": {\"duration\": 189.36, \"timestamps\": [[0, 26.51], [45.45, 155.27], [165.69, 189.36]], \"sentences\": [\"A huge ocean wave over takes several surfers.\", \" One surfers continues riding the wave for a long time.\", \" Eventually the wave knocks him off his board.\"]}, \"v_x4c_wI6kQyE\": {\"duration\": 70.36, \"timestamps\": [[0, 3.17], [3.17, 7.39], [7.39, 41.86], [41.86, 55.58], [55.58, 67.54], [67.54, 70.36]], \"sentences\": [\"A white screen appears and in orange and white large words appear and they say \\\"ITN WORLD\\\".\", \"A small village appears with a lot of people standing outside of a home.\", \" An overweight young child is shown sitting on a chair on his porch smoking a cigarette and skillfully holding it and sometimes even blowing smoke rings as everyone around him watches on.\", \" The young child has a second cigarette and lights it with the already lit one in his mouth and a child next to him wacks his arm.\", \" When the young smoker is done with his cigarette smoking he is shown with a tired look lying in his bed, reaching for his bottle of milk, then he lays down and drinks it.\", \"A white screen appears and it has red words that say \\\"ITN PRODUCTIONS 2010\\\" and \\\"SUBSCRIBE NOW\\\".\"]}, \"v_I6IfZiNmlWA\": {\"duration\": 41.17, \"timestamps\": [[0, 3.5], [3.71, 19.97], [20.17, 41.17]], \"sentences\": [\"Video of a lacrosse game taken from the stands is shown.\", \"  A player takes a shot at the net.\", \" The shot misses and the ball is in play down the field.\"]}, \"v_E3dV8LdAPx8\": {\"duration\": 168.16, \"timestamps\": [[0, 30.27], [31.95, 114.35], [119.39, 168.16]], \"sentences\": [\"A group of team mates are inside a gym.\", \" They are playing a game of volleyball.\", \" They hit the ball back and forth over the net.\"]}, \"v_qdE6dbQOnt0\": {\"duration\": 42.03, \"timestamps\": [[0, 1.68], [1.68, 37.2], [37.2, 42.03]], \"sentences\": [\"First the boy pumps something onto his hand from a bottle and he rubs it on his face.\", \" Then he washes it off using the water from the bathroom faucet and he looks in the mirror to know how much of it is gone.\", \" In the end, he looks again and it is all gone and he stops.\"]}, \"v_9aRUmbcYxUM\": {\"duration\": 160.29, \"timestamps\": [[0, 48.89], [41.67, 116.21], [108.19, 157.88]], \"sentences\": [\"Two men are seen arm wrestling and leads into one winning.\", \" The winner then plays against several more people and winning each time.\", \" He continues arm wresting with others and the ref declaring a winner each time.\"]}, \"v_blOgPoTkhks\": {\"duration\": 17.39, \"timestamps\": [[0, 17.39], [0, 4.78], [2.17, 8.61], [9.04, 17.39]], \"sentences\": [\"Girls are in a gymnasium with the bars and beams set up.\", \" A woman in black is on the right and walks away from the bars.\", \" A girl is swinging on one of the bars.\", \" Then she swings herself onto the higher bar while other girls watch.\"]}, \"v_0JHOEr3YdNM\": {\"duration\": 200.46, \"timestamps\": [[0, 200.46], [19.04, 34.08], [66.15, 142.33], [145.33, 150.34], [179.41, 190.44]], \"sentences\": [\"A woman is sitting in a bathroom.\", \"  The woman rubs soap on her right leg.\", \"  The lady shaves the bottom part of her right leg with a pink razor.\", \"  The woman dries her leg with a towel.\", \"  The woman rubs her leg with a lotion.\"]}, \"v_WtNvqSFTgxI\": {\"duration\": 237.66, \"timestamps\": [[0, 35.65], [52.28, 140.22], [152.1, 237.66]], \"sentences\": [\"A boy is wearing hockey gear in the street.\", \" He tries to defend the goal as they play.\", \" He uses his stick to push the puck away.\"]}, \"v_Uc1_7BXtXZs\": {\"duration\": 96.02000000000001, \"timestamps\": [[0, 3.36], [3.84, 22.08], [22.56, 91.69], [92.17, 96.02]], \"sentences\": [\"A GoPro logo appears on screen.\", \" Video of people on a white sandy beach is shown.\", \"  First person video of beach volleyball is shown.\", \" The Go Pro logo is shown again.\"]}, \"v_qhYQd9nwOts\": {\"duration\": 133.44, \"timestamps\": [[0, 12.68], [20.68, 88.07], [90.74, 133.44]], \"sentences\": [\"A group of people are riding rafts through a cavernous river.\", \" They paddle as they glide past large cliffs.\", \" They go under an empty space in the rocks.\"]}, \"v_le0tJsyuPks\": {\"duration\": 125.13, \"timestamps\": [[0, 20.02], [23.78, 75.71], [80.09, 125.13]], \"sentences\": [\"A couple of people are talking in front of the camera.\", \" They are shown at a bowling alley in front of the lanes.\", \" They are bowling balls down the lanes and knocking down the pins.\"]}, \"v_7toItxBIVtk\": {\"duration\": 227.38, \"timestamps\": [[0, 10.23], [10.23, 120.51], [120.51, 227.38]], \"sentences\": [\"Seven women are in an empty dance studio practicing belly dancing with each other.\", \"All of them have on black except for the instructor who is dressed in a pink bra and they begin moving their hips and pulling their hands up.\", \"After some time,they begin to add in the feet and doing 180 degree turns with their body and moving forward and backwards.\"]}, \"v_lSTqYESahrY\": {\"duration\": 106.83, \"timestamps\": [[0, 25.1], [27.24, 73.18], [65.7, 102.55]], \"sentences\": [\"A man in a wheelchair speaks to the camera and holds up a pair of shoes.\", \" He puts on the shoes while still speaking.\", \" He continues speaking and rolls away.\"]}, \"v_IoGpS8NQklE\": {\"duration\": 231.97, \"timestamps\": [[0, 35.96], [0, 227.33], [0, 231.97], [68.43, 231.97]], \"sentences\": [\"people are standing on side of a sandy court on seashore.\", \" men are playing beach soccer in a sandy court.\", \" men are siting on a white table watching the game.\", \" men are standing in te middle of a court doing a choreography before the beach soccer game starts.\"]}, \"v_LSFmrUdURCs\": {\"duration\": 162.75, \"timestamps\": [[0, 162.75], [33.36, 140.78], [140.78, 162.75]], \"sentences\": [\"man is standing in front of a ski cleaning the board.\", \" the man is pouring wax in the table and setting it with a special iron.\", \" the man takes out the wax with a brush.\"]}, \"v_lEGetBydfl4\": {\"duration\": 16.86, \"timestamps\": [[0, 2.7], [2.78, 13.82], [14.16, 16.86]], \"sentences\": [\"A man is standing outside in a yard.\", \" He is holding a large ax in his hands.\", \" He chops a large piece of wood with the ax.\"]}, \"v_VgQmPHpRFXQ\": {\"duration\": 64.46, \"timestamps\": [[11.6, 22.56], [23.53, 47.7], [46.41, 62.53]], \"sentences\": [\"A man is seen sitting in a chair with shoes in between him.\", \" The man then puts on the shoes and take them off.\", \" He moves his hands around in the end.\"]}, \"v_9nndNUHadcg\": {\"duration\": 47.18, \"timestamps\": [[0, 46.71], [10.14, 21], [15.33, 25.24], [29.25, 45.53]], \"sentences\": [\"A woman stands at a bar.\", \" She begins pouring a drink.\", \" She adds other ingredients to it.\", \" She then finishes the mixed drink.\"]}, \"v_Jp8L9h4aaV4\": {\"duration\": 183.83, \"timestamps\": [[0, 183.83], [0, 179.24], [5.51, 183.83]], \"sentences\": [\"women are in a small room doing exercise in steps.\", \" women are doing a choreography in steps following the instructor.\", \" in the background there's a room with exercise machines.\"]}, \"v_VGvjsCblFY0\": {\"duration\": 88.59, \"timestamps\": [[0, 9.74], [9.3, 27.9], [25.25, 48.72], [55.81, 88.59]], \"sentences\": [\"a girl does cartwheels in a back yard.\", \" another girl watches from a window.\", \" then the first girl does a hand stand.\", \" the 2nd girl comes outside to talk to the first girl.\"]}, \"v_--1DO2V4K74\": {\"duration\": 211.53, \"timestamps\": [[0, 32.79], [47.6, 211.53], [63.46, 211.53], [172.4, 211.53]], \"sentences\": [\"A cat is shown climbing a wall.\", \" A man is then shown climbing a rock wall.\", \" He pulls himself up with his hands.\", \" Eventually he reaches the top.\"]}, \"v_uG_hgODoDes\": {\"duration\": 207.73, \"timestamps\": [[0, 43.62], [42.58, 132.94], [120.48, 207.73]], \"sentences\": [\"a dog is standing on a table.\", \" a woman is standing behind the dog talking.\", \" the woman takes a pair of clippers an begins cutting the dogs hair.\"]}, \"v_fJCkM6secVM\": {\"duration\": 201.39, \"timestamps\": [[0, 201.39], [40.28, 150.03], [167.15, 201.39]], \"sentences\": [\"A woman gives a cooking demonstration.\", \"  She adds the ingredients and then mixes them together.\", \"  She serves the mixture on a rice cake.\"]}, \"v_TUfYisuVrs0\": {\"duration\": 104.56, \"timestamps\": [[0, 104.56], [5.23, 104.56], [18.3, 104.56], [30.85, 104.56]], \"sentences\": [\"A tall diving board stands above a pool.\", \" Several people are own it.\", \" One by one the drop off of it.\", \" The splash as they hit the water.\"]}, \"v_6q3EIv2X8BQ\": {\"duration\": 33.34, \"timestamps\": [[0, 4.17], [4.17, 10.17], [10.17, 12.84], [13, 23.51], [23.67, 27.18], [27.51, 33.34]], \"sentences\": [\"We see baby chick and goats.\", \" Kids are watching the goats through a fence at a petting zoo.\", \" We see a lady help a boy wash his hands.\", \" We see kids pet rabbits and goats and wash their hands.\", \" We see the kids in a group waving their hands.\", \" We see the ending title screen.\"]}, \"v_21biKVGaY1Y\": {\"duration\": 158.15, \"timestamps\": [[9.49, 47.45], [60.89, 71.96], [126.52, 129.68]], \"sentences\": [\"A child brings in water from the ocean in a bucket.\", \"  A woman is making sand castles.\", \"  A boy pours a lot of water into the sand.\"]}, \"v_T8ae3_Pm5eE\": {\"duration\": 211.82999999999998, \"timestamps\": [[0, 22.24], [27.54, 178.99], [42.37, 178.99], [63.55, 178.99]], \"sentences\": [\"A woman is shown leaning against a wall.\", \" Several ballerinas are shown in a room.\", \" Different techniques are demonstrated by them.\", \" They do the moves in sync.\"]}, \"v_6j-H-tIjJvA\": {\"duration\": 230.71, \"timestamps\": [[0, 23.07], [23.07, 115.36], [115.36, 197.26], [198.41, 230.71]], \"sentences\": [\"Two teams play beach soccer on front the ocean kicking and passing the ball.\", \" Then, two teams of children play beach soccer, after other teams compete beach soccer.\", \" After, other teams of teens plays beach soccer in the beach.\", \" The teams pose to take a picture.\"]}, \"v_ROMy00dG8Ds\": {\"duration\": 222.07999999999998, \"timestamps\": [[0, 59.96], [59.96, 115.48], [115.48, 169.89], [169.89, 222.08]], \"sentences\": [\"A large cat is walking down a brick pathway with a leash alongside a small white dog.\", \"As the walk continues,the cat stops and begins staring at a parked car with large red flames painted on the side.\", \"Another car is parked and the cat comes to a halt again before perusing the rest of the sidewalk and walking over the puddles.\", \"Finally,the walk ends and the cat begins walking up the steps and looking at the person who was walking him.\"]}, \"v_hlvs-e3bCq0\": {\"duration\": 175.29, \"timestamps\": [[0, 9.64], [11.39, 28.05], [20.16, 36.81], [112.18, 175.29]], \"sentences\": [\"A skier goes down a hill.\", \" There is a shot of the mountain.\", \" Several people are shown playing traditional instruments.\", \" A girl is interviewed on the mountain.\"]}, \"v_cyhWzLsM29E\": {\"duration\": 171.53, \"timestamps\": [[0, 18.01], [23.16, 86.62], [89.19, 171.53]], \"sentences\": [\"A woman is in a kitchen, holding a cookie dough ball.\", \" She eats it, then shows a table covered in ingredients.\", \" She shows step by step how to mix, place, and bake the balls.\"]}, \"v_x18x9BKMAlk\": {\"duration\": 205.89, \"timestamps\": [[0, 58.68], [56.62, 144.12], [136.92, 201.77]], \"sentences\": [\"Several people are shown in different locations performing martial arts.\", \" The move their arms and legs around while pictures of men are shown intermittently.\", \" More people perform the martial arts around one another.\"]}, \"v_6SOluodeJ7s\": {\"duration\": 17.07, \"timestamps\": [[0, 6.31], [6.57, 9.05], [8.96, 17.07]], \"sentences\": [\"A man wearing a blue robe eats a Dorito's while holding a Dorito's bag.\", \" The man in the blue robe removes the robe and drops the bag of Dorito's.\", \" The man now only wearing a Sumo wrestling outfit runs all out at a huge Asian man dressed in a Sumo wrestling outfit.\"]}, \"v_Nt6cha3hK_s\": {\"duration\": 187.06, \"timestamps\": [[0, 65.47], [35.54, 111.3], [96.34, 187.06]], \"sentences\": [\"A black man is standing at the kitchen talking to the camera and a plate of food is shown.\", \" The man put the broccoli on the chopping board, and chopped them.\", \" The man put raspberries and nuts on the food.\"]}, \"v_2VoWT4gnQDg\": {\"duration\": 130.79, \"timestamps\": [[0, 41.2], [37.27, 88.94], [82.4, 126.86]], \"sentences\": [\"A room is shown and leads into a man speaking to the camera.\", \" He pans back to a roof and uses a tool to pull up tiles.\", \" The man finishes by speaking more to the camera.\"]}, \"v_8fZbv6OUEm8\": {\"duration\": 64.11, \"timestamps\": [[0, 64.11], [5.45, 64.11], [22.44, 64.11]], \"sentences\": [\"A foot kicked the ball, and the goalkeeper blocked the ball.\", \" The young boy kicked the ball, the goalkeeper pushed the ball away.\", \" The ball is kicked and the goalkeeper used his feet to blocked the ball.\"]}, \"v_81dGQTVec_s\": {\"duration\": 223.21, \"timestamps\": [[0, 52.46], [52.46, 147.32], [148.44, 160.71], [161.83, 223.21]], \"sentences\": [\"A young man is talking with a nike shoes on his lap, lifting and holding the shoes while he continue on talking.\", \" A pair of shoes is put in very dirty sink, after lifting and showing each shoes, a series of cleaning procedure are done in each shoes, these includes brushing the sides with a small brush and toothbrush with liquid solution and then wiping them with a cloth,  cleaning those small and hard to reach area with a unknown cleaner using cotton swabs and finally cleaning the sole and rinsing it using tap water.\", \" The materials used in cleaning are wash and clean up and the shoes are rinse again.\", \" The shoes are dried in a concrete near a grassy area, lift for a while  and finally worn by the owner, turning and showing how clean the shoes are and then walks away.\"]}, \"v_wHxyzVcKq0c\": {\"duration\": 165.77, \"timestamps\": [[0, 147.53], [87.86, 92.83], [145.88, 147.53], [148.36, 165.77]], \"sentences\": [\"A college cheer leading team does a dance routine with the mascot.\", \"  The mascot is dancing around the floor.\", \"  At the end of the routine the team strikes a pose on the floor as the announcer is heard over the speakers and the crowd cheers them on.\", \" The team clears the floor and then a graphics screen appears with large yellow letters logo.\"]}, \"v_KUejIghF6K4\": {\"duration\": 32.14, \"timestamps\": [[0, 11.41], [11.57, 13.34], [13.5, 32.14]], \"sentences\": [\"A toddler hits a pi\\u00f1ata with a baseball bat, sometimes the pi\\u00f1ata moves up.\", \" The toddler falls trying to hit the pi\\u00f1ata that went up.\", \" After, the toddler rise and continues hitting the pi\\u00f1ata.\"]}, \"v_zyylgHTPUS8\": {\"duration\": 104.93, \"timestamps\": [[0, 33.58], [34.63, 84.47], [84.99, 104.93]], \"sentences\": [\"An image of the front of a dog parlor is shown followed by images of the dogs they have helped and the equipment inside.\", \"As the pictures continue,dogs are being shown getting groomed in a large bath tub.\", \"After,more shots are visible of before and after results of the dog and ending with the address of the building.\"]}, \"v_yPA6klGWEsc\": {\"duration\": 104.24000000000001, \"timestamps\": [[0, 2.08], [2.61, 21.37], [21.37, 51.6], [51.6, 81.3], [81.82, 100.59], [100.59, 104.24]], \"sentences\": [\"We see an opening title screen.\", \" We see stairs near a river.\", \"  We see a small brown dog walking onto a dock.\", \" We look out over the river from the dock and see under the dock.\", \" The river is filmed through the trees and see see the dog again.\", \" We see the ending title screen.\"]}, \"v_Lo848n58uoM\": {\"duration\": 127.01, \"timestamps\": [[0, 12.7], [38.74, 50.17], [63.51, 69.86]], \"sentences\": [\"A little boy in a red shirt is walking a dog on a leash.\", \" A kid in a yellow shirt is walking a dog.\", \" A baby is walking a dog on the beach.\"]}, \"v_nTkMD63Wj14\": {\"duration\": 65.5, \"timestamps\": [[0, 17.03], [16.38, 46.51], [43.23, 64.85]], \"sentences\": [\"A dog is seen looking off into the distance and a boy walks into frame.\", \" The boy is then seen riding a tractor and pushing snow.\", \" He continues to push snow along the yard.\"]}, \"v_JLA4Ck8_BRI\": {\"duration\": 68.13, \"timestamps\": [[0, 18.05], [18.05, 51.1], [51.1, 68.13]], \"sentences\": [\"woman is standing in front of a bar preparing a cocktail.\", \" the woman pour the drinks on the ice cup and shake them.\", \" thn serve the drink in a martini glass.\"]}, \"v_QVe7NojAHjY\": {\"duration\": 171.74, \"timestamps\": [[0, 24.9], [32.63, 113.35], [123.65, 171.74]], \"sentences\": [\"A stack of oatmeal cookies is shown on the screen.\", \" Butter and other ingredients are spread into a bowl.\", \" They are then formed into cookies and baked.\"]}, \"v_lCX7y_KAihU\": {\"duration\": 58.77, \"timestamps\": [[0, 2.35], [2.64, 8.82], [9.11, 16.75], [17.04, 32.32], [32.62, 48.49], [48.78, 58.77]], \"sentences\": [\"A logo for \\\"School of Psychology\\\" appears on screen.\", \" A photo of a bearded man is shown with the words \\\"Shaving Kevin's Beard\\\" overlaid.\", \" Kevin reaches into an envelope and pulls something out.\", \" Kevin is in a bathroom and partially shaves his beard, leaving an unusual pattern.\", \" Photos of him are shown from all sides.\", \" \\\"Kevin raised \\u00a385\\\" is shown on a black screen.\"]}, \"v_K6oVOQG0lOo\": {\"duration\": 41.75, \"timestamps\": [[1.25, 40.71], [0, 40.71], [0, 41.75]], \"sentences\": [\"men are on the pits changing a tire.\", \" red car is parked in a side of the street.\", \" people are around a red car trying to change the car tires.\"]}, \"v_NBXH7A2EO7Q\": {\"duration\": 100.2, \"timestamps\": [[0, 7.01], [14.03, 84.16], [86.17, 100.2]], \"sentences\": [\"a man is seen talking inside a shop.\", \" He is working on the handle bars of a bicycle.\", \" He screws the bars back onto the bike.\"]}, \"v_ssktVpcv9WI\": {\"duration\": 76.86, \"timestamps\": [[0, 1.54], [3.07, 29.21], [52.65, 76.86]], \"sentences\": [\"A man and woman are sitting at a dinner table.\", \" A man gets up and walks to the bathroom.\", \" A man serves pizza onto their plates.\"]}, \"v_JgDfOMDfNZs\": {\"duration\": 46.26, \"timestamps\": [[0, 7.4], [8.56, 33.77], [36.31, 46.26]], \"sentences\": [\"A sign is shown by the side of the road.\", \" A man is speaking in front of a building.\", \" He is then shown soaping and washing cars.\"]}, \"v_33eH3ozXLmU\": {\"duration\": 178.86, \"timestamps\": [[0, 178.86], [9.84, 140.41], [140.41, 178.86]], \"sentences\": [\"These people have scuba dived to get into water.\", \" They have oxygen tanks on their backs and they're wearing scuba diving outfits.\", \"  Some of the people are men and some women and towards the end, someone waves and people are seen getting out of the water and back onto shore.\"]}, \"v_i49blayQ93Q\": {\"duration\": 201.5, \"timestamps\": [[0, 28.21], [21.16, 61.46], [45.34, 110.83], [86.65, 201.5]], \"sentences\": [\"a group of camels is in the desert.\", \" there are crowds of people sitting on and around he camels.\", \" a man walks by a few of the camels laying down.\", \" people begin loading on to each camel and the crowd marches off.\"]}, \"v_o3yvGAz5IJ8\": {\"duration\": 207.68, \"timestamps\": [[0, 3.12], [3.12, 21.81], [21.81, 114.22], [114.22, 203.53], [203.53, 207.68]], \"sentences\": [\"An introduction comes onto the screen for a video about how to clean a butcher block.\", \" A woman comes onto the screen and begin to explain the process.\", \" She gathers some soapy water and begins to scrub the counter down.\", \" She dries the counter and or some oil on to the wood and begins to rub it in.\", \" The video ends with the closing caption shown on the screen.\"]}, \"v_fqFqQjH8M20\": {\"duration\": 183.3, \"timestamps\": [[0, 5.5], [5.5, 87.98], [87.98, 183.3]], \"sentences\": [\"First the man holds up a selfie stick while he standing next to others.\", \" Next, he starts skateboarding and leaving the others behind, but soon they start to catch up on their skateboards in the streets.\", \" Finally, he gets on the sidewalk skateboarding with the others still behind him and they catch up and he steps off of the skateboard looking around as they leave him behind.\"]}, \"v_5PgDTLR7wFQ\": {\"duration\": 106.97999999999999, \"timestamps\": [[0, 106.98], [24.07, 37.44], [37.44, 47.6], [51.35, 67.93], [70.6, 80.23], [96.81, 104.84]], \"sentences\": [\"A woman is standing behind a sink.\", \" She is holding a sponge and a box of baking soda.\", \" She pours the baking soda into the sink.\", \" She starts wiping the sink a sponge.\", \" She uses a toothbrush to scrub the bottom of the sink.\", \" She wipes the sink with a towel.\"]}, \"v_ejIEsnkvLWY\": {\"duration\": 227.85, \"timestamps\": [[0, 227.85], [0, 22.78], [22.78, 143.54], [143.54, 192.53], [192.53, 227.85]], \"sentences\": [\"Two men play accordions outdoors in the grass and in different locations throughout the video clip, at one point one of the players falls into a body of water and comes up with a fish in his shirt before everyone toasts at a table outdoors.\", \"  Two men stand on grass bordering a body of water with ships sailing pass them in the background as they both play accordions.\", \"  The men play in various locations with shots of boats, birds on water and flowers interspersed with their playing.\", \"  At one point the two men play on a boat and one of them falls into the water where he loses his white hat and looks sad.\", \"  The other man pulls a fish out of the wet man's shirt and they all cut away to a shot of everyone seated at a table and toasting with drinks.\"]}, \"v_lTDkfbr7znU\": {\"duration\": 184.36, \"timestamps\": [[0, 29.5], [38.71, 119.83], [135.5, 184.36]], \"sentences\": [\"A man and woman are dancing inside a venue.\", \" They twirl around on the dance floor in circles.\", \" They continue dancing as other people visit and eat.\"]}, \"v_kFP91VjB1AI\": {\"duration\": 82.9, \"timestamps\": [[0, 4.56], [9.12, 12.85], [60.1, 82.9]], \"sentences\": [\"A man throws a ball into a cup.\", \" Another man picks up the cup and drinks it.\", \" He then throws the ball across the room and hits the man in the face before landing in a cup.\"]}, \"v_el-ogdlS5nc\": {\"duration\": 8.01, \"timestamps\": [[0, 8.01], [0.36, 3.24], [3.08, 4.17], [4.25, 8.01]], \"sentences\": [\"There's a man in his front yard showing how to start a bonfire in a pit using wood legs and twigs.\", \" He begins by dropping a lit matchstick into a container that has many wooden logs and tree branches in it.\", \" After he drops the lit matchstick in the pile of wood, it ignites and bursts into flames right away.\", \" When the flames become bigger, the man retreats and sits down on a chair that is kept near the bonfire.\"]}, \"v_2HmhRdKRVb4\": {\"duration\": 215.78, \"timestamps\": [[0, 21.58], [24.82, 121.92], [128.39, 215.78]], \"sentences\": [\"A series of women are shown close up.\", \" A stylist is seen talking with a client in a chair.\", \" She is then seen doing the woman's hair for her, and shows off the finished result.\"]}, \"v_QKEFacWrn_8\": {\"duration\": 134.54, \"timestamps\": [[0, 5.38], [5.38, 127.14], [20.18, 35.65], [39.69, 53.81], [54.49, 68.61], [69.29, 74], [74.67, 82.74], [83.41, 99.56], [106.28, 113.01], [113.68, 117.05], [119.74, 125.79], [127.14, 128.48], [129.16, 130.5], [131.17, 134.54]], \"sentences\": [\"The video starts with footage of people outside with red,white and blue text explaining what the video is about.\", \" Men attempt various tricks using bowling balls.\", \"  A man knocks down pins in a skating pool drop in.\", \"  Another man bowls a ball around bowling pins lined up in a curve on a bowling lane and the bowling ball doesn't hit any of them.\", \"  One man shows another how to hold the bowling ball.\", \"  A bowling ball in a skate drop breaks something inside the drop.\", \"  A man bowls two bowling balls at once.\", \"  Two men sitting back on chairs talk to each other.\", \"  A man bowls a strike in a bowling alley.\", \"  A group of men are walking in a straight line while clapping bowling pins together.\", \"  Two men interview each other on brown chairs.\", \"  A bowling ball hits the camera.\", \"  A blue screen appears and a red, white and blue logo with a W on it appears.\", \"  A green screen appears with footage links to other videos as well as sponsor logos and a subscription link.\"]}, \"v_S-DOW63629o\": {\"duration\": 84.43, \"timestamps\": [[0, 84.43], [0.84, 84.43], [83.58, 84.43]], \"sentences\": [\"Two men are sitting behind large drums.\", \" They begin to play the drums with their hands.\", \" They turn to each other and laugh.\"]}, \"v_zL7Rz4I8UyA\": {\"duration\": 27.56, \"timestamps\": [[0.55, 3.31], [3.45, 13.92], [14.19, 22.88], [22.88, 27.56]], \"sentences\": [\"A woman reporter speaks in a TV set.\", \" A man rides a horse holding a pole and joins other people that play polo.\", \" Then, four men stand on the podium, and a man takes off a small pole stick from a bag that holds a person.\", \" After, three reporters are in  TV set.\"]}, \"v_fU4EgYmISro\": {\"duration\": 32.16, \"timestamps\": [[0, 10.61], [10.61, 21.06], [21.55, 32.16]], \"sentences\": [\"Four people play badminton together with two on each team.\", \" One round ends and the four individuals walk back to position.\", \" The shuttlecock is served and the game begins again.\"]}, \"v_xV7uPiqNuwQ\": {\"duration\": 194.1, \"timestamps\": [[0, 2.91], [3.88, 188.27], [189.24, 194.1]], \"sentences\": [\"\\\"Assembling Bullitt cargo bikes at Helsinki Metro\\\" appears on screen.\", \"  A group of people assemble a project in the middle of a busy airport, the video is sped up.\", \" \\\"Camera run out of batteries, but the bikes got assembled anyhow\\\" appears after the video ends.\"]}, \"v_32z1yiC0Co0\": {\"duration\": 192.52, \"timestamps\": [[0, 23.1], [23.1, 74.12], [74.12, 120.32], [120.32, 192.52]], \"sentences\": [\"A series of still images of a woman's running club wearing bright yellow jerseys.\", \" Large group of runners participating in a woman's running event.\", \" Clips and images of many different woman's running events.\", \"still images and video clip of Fab 50 running club wearing their bright yellow jerseys.\"]}, \"v_g4uvBcIE1Os\": {\"duration\": 28.98, \"timestamps\": [[0, 3.91], [4.93, 19.71], [20.86, 28.98]], \"sentences\": [\"A kid is seen pulling a tube on the snow.\", \" Someone pulls his string and lets go, sending him down the hill.\", \" He spins and laughs as he speeds down hill.\"]}, \"v_jelxK3R-heg\": {\"duration\": 18.02, \"timestamps\": [[0, 5.5], [5.77, 15.59], [15.86, 18.02]], \"sentences\": [\"A man is blowing leaves with a little boy in his back yard.\", \" He is using a large leaf blower while the child watches.\", \" The child gets bored and starts to walk away.\"]}, \"v_stVRtmxHVaE\": {\"duration\": 234.29, \"timestamps\": [[0, 41], [55.06, 142.92], [148.77, 234.29]], \"sentences\": [\"A man is shown on the roof of a house.\", \" He is removing shingles one at a time.\", \" He continues removing them so they can be replaced.\"]}, \"v_RVbejE3s3m4\": {\"duration\": 38.78, \"timestamps\": [[0, 6.59], [11.63, 20.16], [22.69, 38.78]], \"sentences\": [\"A couple of girls are seated in front of a table.\", \" One girl is painting the other one's nails.\", \" She puts on several coats, then seals them with a topcoat.\"]}, \"v_GkwkHQJifDU\": {\"duration\": 63.69, \"timestamps\": [[0, 7.01], [9.24, 47.13], [49.68, 63.69]], \"sentences\": [\"A woman is talking inside a house.\", \" She uses a stepper to exercise.\", \" She explains as she does different steps and moves.\"]}, \"v_iDMzTPfELoc\": {\"duration\": 222.84, \"timestamps\": [[0, 201.67], [6.69, 182.73], [5.57, 24.51], [15.6, 109.19], [22.28, 184.96], [32.31, 189.42], [131.48, 194.99], [166.02, 200.56], [173.82, 222.84], [206.13, 222.84]], \"sentences\": [\"There's a young boy playing hopscotch on his driveway and sidewalk with a girl and another boy.\", \" The hopscotch squares are drawn all the way from the driveway onto the sidewalk.\", \" The boy begins hopping on the squares, starting from his driveway.\", \" Then he hops all the way to the sidewalk where more squares are drawn with chalk.\", \" The girl joins him near the sidewalk and walks along his side as he hops across the squares.\", \" The boy continues hopping across all the squares that drawn throughout the other side of the house on the sidewalk.\", \" He hops all around his street on the sidewalk as he passes a stop sign, and a street with cars and traffic.\", \" He hops till he reaches the end of the sidewalk which marks the end of the hopscotch squares too.\", \" Two other girls walk besides him as he finishes hopping till the end.\", \" After he's done hopping he smiles and begins walking back.\"]}, \"v_I8nK8c7k9ko\": {\"duration\": 146.84, \"timestamps\": [[0, 48.46], [30.84, 89.57], [48.46, 146.84]], \"sentences\": [\"The man in red shirt is walking in the water pulling the group of tubes.\", \" The man stopped walking and talked to the man lying on the tube.\", \" The people put on their shoes and stood up from their tubes.\"]}, \"v_j2ESEJmy7aA\": {\"duration\": 75.07, \"timestamps\": [[0, 2.25], [3, 5.63], [6.01, 64.19], [9.38, 48.05], [64.94, 75.07]], \"sentences\": [\"The credits of the video are shown.\", \" A lady is behind a counter.\", \" A woman is talking directing into a camera.\", \" The woman is grooming a dog.\", \" The credits of the clip are shown.\"]}, \"v_WU4ISFy651Y\": {\"duration\": 156.81, \"timestamps\": [[0, 25.09], [22.74, 58.02], [55.67, 99.57], [97.22, 156.81]], \"sentences\": [\"a woman is talking to the camera while standing in kitchen.\", \" the woman takes a cookie cutter and cuts cookie dough.\", \" the woman then takes the cut dough and puts it on a stick.\", \" the woman continues this process and puts the sticks of dough onto a baking sheet.\"]}, \"v_1NAlbF88oUI\": {\"duration\": 64.65, \"timestamps\": [[0, 27.8], [27.8, 36.52], [36.52, 48.81], [48.81, 60.44], [60.44, 64.65]], \"sentences\": [\"People are in a room focusing on two men dressed in orange shirts who are positioning themselves on opposite sides of a table to begin an arm wrestling match while two referees are at the ends of the table.\", \"The referees check their positions and one of them gives a thumbs up, the men begin their arm wrestling match where they don't struggle too much and the man on the right easily wins the match.\", \" A man in the crowd is holding a camera and he goes behind the man on the right as the men reposition for another match.\", \" Once he men are ready another arm wrestling round starts and the camera man takes pictures and the man on the right wins once again.\", \"The two referees raise their arms on the right to call the winner as the players walk away from the table.\"]}, \"v_4mBVik8dq_w\": {\"duration\": 23.04, \"timestamps\": [[0, 3.22], [4.03, 15.89], [17.16, 23.04]], \"sentences\": [\"A man is mowing the grass in his yard.\", \" A little boy is using a plastic mower next to him.\", \" They push the mowers back and forth.\"]}, \"v_PJgy8J1f3jg\": {\"duration\": 186.02, \"timestamps\": [[0, 20.46], [20.46, 44.64], [44.64, 186.02], [0, 186.02]], \"sentences\": [\"man is standing in an open court playing paintball walking and hiding behind cones.\", \" other players are standing inside a house and gets out to start shooting someone from the other team and hiding behind stacks.\", \" people from the other team are shooting and hiding himslf behind a small wooden bridge on the court.\", \" men are in a small paintball court playing.\"]}, \"v_iAQY-FHckIM\": {\"duration\": 75.84, \"timestamps\": [[0, 69.39], [10.24, 22.37], [34.51, 65.98], [69.77, 75.84]], \"sentences\": [\"A lady that is inside a kitchen, speaks.\", \" The lady puts contacts lens into her eye ball.\", \" The lady takes contacts lens from her eye balls.\", \" The credits of the video are shown.\"]}, \"v_2AE847UXu3Q\": {\"duration\": 121.37, \"timestamps\": [[0, 121.37], [19.42, 32.77], [40.66, 90.42], [90.42, 121.37]], \"sentences\": [\"man is sitting talking to the camera and tuching his hair.\", \" a woman stands in front of the man and gives him a comb and the an start combing his hair.\", \" the woman put hairspray on the man's head and with her hands put the hair on its place.\", \" the man is looking himself on a mirror and combin his hair.\"]}, \"v_9VRLj4IfUzY\": {\"duration\": 214.41, \"timestamps\": [[0, 212.27], [0, 12.86], [19.3, 91.13], [91.13, 214.41]], \"sentences\": [\"A woman demonstrates how to apply a white wax like substance to a wooden cabinets while sitting on the floor in a kitchen wearing a green apron.\", \"  A woman in a green apron sits on a kitchen floor next to black cabinets and talks to the camera.\", \"  The woman produces a can of white wax like substance and then produces a circular brush.\", \"  The woman begins applying the white wax like substance to the cabinets she is sitting next to and then blots them with a piece of fabric, after which, she begins talking to the camera again.\"]}, \"v_PqcdYoa--8g\": {\"duration\": 91.56, \"timestamps\": [[0, 10.99], [5.95, 32.04], [31.13, 91.56]], \"sentences\": [\"a pot of water is boiling.\", \" some puts several ingredients into the pot of boiling water.\", \" then someone cooks on a skillet.\"]}, \"v_hz0W27EwjQ8\": {\"duration\": 238.73, \"timestamps\": [[0, 37], [31.03, 75.2], [63.26, 137.27], [153.98, 238.73]], \"sentences\": [\"four women play volley ball on a beach.\", \" the ball is volleyed several times before it his the sand.\", \" one woman serves the ball.\", \" all four women resume playing volley ball.\"]}, \"v_rrc9Ph5juXM\": {\"duration\": 213.35, \"timestamps\": [[0, 44.8], [41.6, 125.87], [60.8, 153.61], [154.68, 210.14]], \"sentences\": [\"A person is seen cutting up butter and mixing various ingredients into a bowl.\", \" The person boils the ingredients as well as mixing more together in separate bowls.\", \" She boils the chocolate, pulls out a cake, and cooks more ingredients.\", \" In the end she shows off a cake.\"]}, \"v_e4AIrRnWakA\": {\"duration\": 203.13, \"timestamps\": [[0, 30.47], [32.5, 147.27], [124.92, 201.1]], \"sentences\": [\"Various children are seen walking around an area holding cigarettes and smoking.\", \" A man speaks to the camera as well as a woman while more clips are shown of the city.\", \" More people talk to the camera as close ups are shown of kids smoking and others watching.\"]}, \"v_QuEHZ2Y3H40\": {\"duration\": 107.11, \"timestamps\": [[0, 26.24], [24.1, 76.05], [73.91, 103.37]], \"sentences\": [\"A close up of a wave is shown leading into a woman surfing.\", \" More clips are shown of people surfing as well as swimming in the ocean.\", \" The continue surfing around the water and swimming underneath.\"]}, \"v__QdPfYK9s6o\": {\"duration\": 173.62, \"timestamps\": [[0, 49.48], [39.06, 124.14], [116.32, 169.28]], \"sentences\": [\"A person is seen riding a surf board along the water.\", \" The man moves himself along the water in different shots on the board.\", \" He continues riding the surf board along the water and looking to the camera.\"]}, \"v_1BUnQWRBpYg\": {\"duration\": 218.18, \"timestamps\": [[0, 218.18], [9.82, 13.09], [130.91, 134.18]], \"sentences\": [\"A man in a helmet is long boarding down a hill holding a stick.\", \" A car is seen behind him.\", \" He puts his hand down and rubs it on the pavement.\"]}, \"v_PwyvQ3BKziA\": {\"duration\": 91.02, \"timestamps\": [[0, 91.02], [3.64, 91.02], [0, 90.57]], \"sentences\": [\"tips to wash the face and pictures of women doing it are shown.\", \"different steps of a facial rutine is shown.\", \" a woman is washing her face with her hands showing facial rutine.\"]}, \"v_mh_0QLZhrSY\": {\"duration\": 100.1, \"timestamps\": [[0, 23.02], [26.03, 67.57], [62.06, 97.6]], \"sentences\": [\"A man is seen standing outside playing a set of bagpipes.\", \" The man plays while people walk in and out of frame.\", \" The man continues to play moving his hands up and down.\"]}, \"v_HtCQ-OmHJl4\": {\"duration\": 7.41, \"timestamps\": [[0, 7.41], [0.26, 2.22], [1.96, 6.3], [6.11, 7.41]], \"sentences\": [\"There's a young athlete dressed in a blue and white shirt and shorts doing the hammer throw in a hammer throw ring covered by net.\", \" He begins by rotating fast and spinning on his feet with the hammer throw ball in his hands.\", \" He turns and spins extremely fast on the spot and then flings the hammer throw ball at a distance.\", \" Then he stands and takes a look at how far the ball has reached in the field.\"]}, \"v_Xrjkjz1l4qw\": {\"duration\": 15.09, \"timestamps\": [[0, 15.09], [1.51, 13.06], [13.13, 15.09]], \"sentences\": [\"A man is sitting in front of a desk.\", \" He picks up a rubiks cube and starts completing it.\", \" He finishes and sets the rubiks cube on the desk in front of him.\"]}, \"v_JRs2MpyP0SQ\": {\"duration\": 106.21000000000001, \"timestamps\": [[0, 10.62], [20.71, 70.1], [72.75, 106.21]], \"sentences\": [\"A man in glasses is seated and talking.\", \" Another man is shown inside a bowling alley.\", \" He is involved in a game of competitive bowling with other players.\"]}, \"v_ND9mMyNjm5M\": {\"duration\": 78.09, \"timestamps\": [[0, 78.09], [60.13, 64.03], [64.03, 67.16], [67.94, 78.09]], \"sentences\": [\"A woman brushes out and scratches a big black horse.\", \" The woman starts brushing the horses legs.\", \" The woman is seen doing something with the horses hoof.\", \" The woman brushes the horses neck and then starts to brush out the horses tail and mane.\"]}, \"v_AISkvED80lU\": {\"duration\": 175.45, \"timestamps\": [[0, 175.45], [35.09, 107.02], [75.44, 175.45]], \"sentences\": [\"Groups of people do tricks and fail hilariously.\", \"  People get dropped and run into each other.\", \"  Many other failures of cheerleading happens.\"]}, \"v_-uR5-jYe0Ag\": {\"duration\": 33.28, \"timestamps\": [[0, 5.32], [4.99, 16.64], [16.64, 33.28]], \"sentences\": [\"a woman is standing in front of a mirror.\", \" the woman then begins applying eye liner.\", \" the woman talks to the camera then returns to applying makeup.\"]}, \"v_t6d__c9sIUU\": {\"duration\": 427.06, \"timestamps\": [[0, 38.44], [17.08, 162.28], [36.3, 373.68], [284, 427.06]], \"sentences\": [\"The woman and a man walked towards the car.\", \" The woman began to shovel the snow off the silver car, she handed the shovel to the man.\", \" The man shovel snow off the car, then he shovel the snow off on the car next to the silver car.\", \" The mab shovels the snow off the ground.\"]}, \"v_PjcTk1hcf4k\": {\"duration\": 183.25, \"timestamps\": [[0.92, 175.01], [0.92, 33.9], [33.9, 158.51], [161.26, 175.01]], \"sentences\": [\"Two women talk to the camera from a stage in front of a large sign before cutting away to a young woman standing in front of and demonstrating the use of an upside down Christmas tree.\", \"  Two women sit on stage , one holding an electronic tablet, while talking to each other and then to the camera.\", \"  The scene cuts away to one young woman talking to the camera and then kneeling in front of an upside down Christmas Tree.\", \"  The two women return and begin talking to the camera again.\"]}, \"v_r6z6Ct16I_8\": {\"duration\": 66.15, \"timestamps\": [[0, 4.63], [4.96, 11.91], [11.91, 64.83]], \"sentences\": [\"A young child is paiting an adult's toenails silver.\", \" The child talks to the camera.\", \" The child returns to painting the toenail.\"]}, \"v_a1nRXQZ6-Fo\": {\"duration\": 187.62, \"timestamps\": [[0, 32.83], [30.96, 128.52], [123.83, 187.62]], \"sentences\": [\"a man stands with a saxophone strapped to him.\", \" the man begins talking to the camera.\", \" the man then demonstrates how to play the saxophone.\"]}, \"v_od1jHUzgrAU\": {\"duration\": 169.37, \"timestamps\": [[4.23, 8.47], [8.47, 18.63], [18.63, 25.41], [25.41, 28.79], [30.49, 34.72], [34.72, 43.19], [43.19, 53.35], [52.5, 62.67], [62.67, 92.31], [92.31, 125.33], [125.33, 132.95], [133.8, 157.51]], \"sentences\": [\"A man styles his hair in front of a mirror.\", \" The man styles his facial hair in front of a mirror.\", \" The man puts a jacket on in front of the mirror.\", \" A close up of the man's shoes are shown.\", \" The man points at the mirror.\", \" The man gathers materials to clean his shoes.\", \" The man cleans his shoes.\", \" The man smells a can of polish and makes a face.\", \" The man uses the polish on his shoes.\", \" The man brushes his shoes with occasional blowing.\", \" The man shines his shoes.\", \" The man talks to the camera.\"]}, \"v_AFb77tjPuwQ\": {\"duration\": 238.84, \"timestamps\": [[0, 7.17], [7.17, 28.66], [28.66, 101.51], [101.51, 120.61], [120.61, 238.84]], \"sentences\": [\"man is holding binoculars and is watching something through them.\", \" man is asembling a crocket court in a green grassy field.\", \" when ready men and women start playing in the field.\", \" man is standing next to a big trophy talking to the camera.\", \" men keep playing in the field next to a lake.\"]}, \"v_1IhbkbuDPpc\": {\"duration\": 103.03, \"timestamps\": [[0.52, 18.54], [19.58, 45.85], [46.36, 53.57], [53.57, 78.3], [79.33, 93.75]], \"sentences\": [\"People load a car with wood furniture, then people talk on front the camera.\", \" People roller skates passing around cones and a ramps to flip.\", \" Then, a boy puts on roller skaters and performs in the gym.\", \" Other teen roller skate passing the cones.\", \" A juvenile roller skate over a ramp and jumps to holds the ring of a basketball board.\"]}, \"v_UuJwtJBJ7oU\": {\"duration\": 159.29, \"timestamps\": [[0, 4.78], [4.78, 156.9], [156.1, 159.29]], \"sentences\": [\"A man seated behind drums talks to the camera.\", \" The man plays the drums with his palms.\", \" The man stops playing the drums.\"]}, \"v_E2NKQZNMAO0\": {\"duration\": 197.0, \"timestamps\": [[0, 16.74], [16.74, 38.41], [32.5, 51.22], [51.22, 74.86], [74.86, 82.74], [82.74, 99.48], [99.48, 106.38], [106.38, 161.54], [161.54, 197]], \"sentences\": [\"sun is going out in a presentation with chinese characters.\", \" a lot o men are in an open field practicing some kung fu movements outside a temple.\", \" men are breaking bricks with their hands and doing handstands.\", \" men are in a room in the middle of a formation f man holding poles and throwing at them.\", \" two men are fighting with swords in an open area.\", \" men and women are fighting in a open area inside a building.\", \" man is holding a woman on his arms and kissing her.\", \" men is practicnig figting n an open field with other men throwing poles at him.\", \" two men ae in the middle of a big formation kung fu fighting.\"]}, \"v_Tab-dSCaMC8\": {\"duration\": 74.3, \"timestamps\": [[0, 21.18], [17.46, 63.16], [54.24, 71.7]], \"sentences\": [\"A woman is seen speaking to the camera and bends down to grab a brush.\", \" She brushes the horse all along it's body while speaking to the camera.\", \" She brushes the horses hooves in the end.\"]}, \"v_OyKEEws65l8\": {\"duration\": 104.97999999999999, \"timestamps\": [[0, 11.55], [11.02, 91.86], [64.04, 65.61], [93.43, 104.98]], \"sentences\": [\"A woman sits on the back of a camel.\", \" The camel stands up and a man leads it around.\", \" People are standing next to them taking pictures.\", \" The camel sits down and the woman gets off.\"]}, \"v_5O9myPtSriI\": {\"duration\": 128.24, \"timestamps\": [[0, 46.81], [30.78, 87.85], [75.02, 120.55]], \"sentences\": [\"A man is seen speaking to the camera and holds up a bow and arrow.\", \" He shoots an arrow and looks back to speak to the camera.\", \" He continues showing off the bow while talking to the camera.\"]}, \"v_U0d68z5HTwE\": {\"duration\": 127.39, \"timestamps\": [[0, 14.01], [14.01, 43.95], [43.31, 56.05], [57.32, 66.24], [66.24, 73.25], [74.52, 77.07], [77.7, 80.25], [80.89, 92.35], [92.35, 103.18], [103.82, 112.74], [113.37, 122.93]], \"sentences\": [\"A closeup of a plate of cookies is shown, with more cookies and a jar of milk in the background.\", \" A bowl is shown with a series of ingredients added and then mixed.\", \" A second bowl is shown with ingredients added and then mixed.\", \" The second bowl is mixed into the first bowl.\", \" The mixture is covered by plastic wrap.\", \" The oven is shown being turned on.\", \" A baking parchment is placed on a baking tray.\", \" The mixture is shaped into balls.\", \" The balls are rolled in white powder and then placed on the baking sheet.\", \" The baked cookies are placed on a rack.\", \" The beginning scene is repeated.\"]}, \"v_un6VqJYUpDo\": {\"duration\": 109.6, \"timestamps\": [[14.8, 18.08], [30.69, 33.43], [46.58, 50.42]], \"sentences\": [\"A man is holding a mop over a yellow bucket.\", \" A man is wiping a window with a towel.\", \" He begins to squeegee the window with a squeegee.\"]}, \"v_U9Dcet1qdRE\": {\"duration\": 29.33, \"timestamps\": [[0.44, 6.6], [7.33, 17.3], [15.54, 28.59]], \"sentences\": [\"A man is seen bending down before a large weight.\", \" He picks up the weight while looking in the distance.\", \" He continues to hold the weight and throws it back down.\"]}, \"v_9pNfaRJ0K4o\": {\"duration\": 149.47, \"timestamps\": [[0.75, 5.98], [8.97, 11.96], [14.2, 32.88], [40.36, 147.97], [136.76, 140.5]], \"sentences\": [\"A lady enters a gym with ballet shoes in hand.\", \" The lady sits on the tiled floor.\", \" The lady puts her hair in a bun.\", \" The lady puts on her ballet shoes and practices ballet.\", \" The credits of the clip are shown.\"]}, \"v_vynLNpomc30\": {\"duration\": 64.85, \"timestamps\": [[0, 6.49], [4.22, 22.7], [27.89, 48.96], [0, 64.85]], \"sentences\": [\"four men stand on a stage.\", \" two of the men play drums.\", \" the other two men play bag pipes.\", \" all four men dance and play in unison.\"]}, \"v_mFDC1CLt6B4\": {\"duration\": 74.93, \"timestamps\": [[0, 74.93], [0, 32.97], [32.97, 33.34], [33.72, 74.93]], \"sentences\": [\"People are interacting outside on a sunny day.\", \" Individuals are sitting on bicycles and waiting.\", \" The short gate is released.\", \" Individuals start biking through a gray path.\"]}, \"v_s04x6lhUmtY\": {\"duration\": 63.76, \"timestamps\": [[0, 63.76], [4.14, 21.04], [18.17, 56.11], [36.98, 57.39], [40.81, 56.43]], \"sentences\": [\"There's a man dressed in a black shirt and camouflage shorts doing stunts on a blue slackline that is tied between two trees used as anchors in a yard.\", \" He begins by bouncing on the slackline while sitting on it.\", \" Then he climbs on the slackline and balances himself as he jumps up and down on the flat webbing.\", \" He continues to bounce up and down while trying to balance on the webbing.\", \" He then does a back flip from the slackline to directly land on the ground behind him.\"]}, \"v_RpB5_XYoYhk\": {\"duration\": 63.48, \"timestamps\": [[0, 55.55], [13.97, 31.74], [31.74, 53.96]], \"sentences\": [\"This woman is showing viewers how to wrap a square boxed gift.\", \" First she folds the paper a certain way making it look like a trapezoid.\", \" Then she folds it again and puts tape onto it to hold it down.\"]}, \"v_UuLBAMSmwgc\": {\"duration\": 189.27, \"timestamps\": [[0, 2.84], [2.84, 25.55], [25.55, 106.94], [106.94, 186.43], [186.43, 189.27], [0, 189.27]], \"sentences\": [\"Two men are standing at foosball table and the taller man throws a ping pong ball at a child that he just picked up and the child walks back to the ping pong table.\", \" The two men start playing foosball, the taller guy scores and the shorter guy moves a peg to mark a point.\", \" The shorter guy grabs the ball, puts it back in the table and they begin another round of foosball and the taller guy wins two more times back to back and moves his white pegs to mark his point.\", \"The men continue to play another round and taller man finally wins again and he wins the whole game and moves his white peg once more.\", \"They both back away from the table and we see a bigger view of the game area.\", \" Other people have been hanging around or playing other games the whole time.\"]}, \"v_nrh2jDsmeLQ\": {\"duration\": 226.21, \"timestamps\": [[2.26, 226.21], [54.29, 182.1], [61.08, 182.1], [145.9, 226.21]], \"sentences\": [\"A woman is standing in the kitchen.\", \" She is talking into the camera.\", \" She holds several bowls of ingredients.\", \" She then makes a salad.\"]}, \"v_ylo_0z8si1g\": {\"duration\": 163.75, \"timestamps\": [[0, 27.84], [19.65, 106.44], [87.61, 163.75]], \"sentences\": [\"Two women are talking in the hallway.\", \" The woman with black hair walked in the studio and the other woman in gray jacket introduced the other woman with curly hair.\", \" The two women began stretching and then began belly dancing.\"]}, \"v_OYIAhO9nJmk\": {\"duration\": 139.74, \"timestamps\": [[0, 139.74], [5.59, 139.74], [0, 137.64]], \"sentences\": [\"band is in stage in a competition and judges are sitting in front of them in a white table.\", \" man jumps in the floor and start doing breakdance in the middle of stage.\", \" around the stage people are sitting on chairs in the studio.\"]}, \"v_GxSh-XQhIjU\": {\"duration\": 233.82999999999998, \"timestamps\": [[0, 44.43], [50.27, 144.97], [142.63, 233.83]], \"sentences\": [\"several girls are running across a field with rugby sticks in hand.\", \" the girls chase and pass a ball around the field.\", \" a score is made and the girls run to the opposite end of the field.\"]}, \"v_8nQGd6hiduA\": {\"duration\": 167.77, \"timestamps\": [[0, 46.14], [42.78, 111.56], [110.72, 165.25]], \"sentences\": [\"A man is seen speaking to the camera while holding a tennis racket and balls.\", \" This leads into him demonstrating how to properly hit the ball while speaking to the camera.\", \" He continues to hit the ball while looking back to the camera.\"]}, \"v_O1z0Q-3OUg0\": {\"duration\": 151.12, \"timestamps\": [[0, 9.82], [9.82, 21.16], [21.16, 75.56], [75.56, 141.29], [141.29, 151.12]], \"sentences\": [\"An introduction comes onto the screen for a video to show a cooking recipe.\", \" A woman introduces that she will make a salad.\", \" She starts by taking a hand mixer and mixing several ingredients together to form a dressing.\", \" Then, she adds the additional ingredients together with some cous cous and mixes everything together.\", \" The video ends with the closing credits shown across the screen.\"]}, \"v_ipcvgAb5y0U\": {\"duration\": 86.03, \"timestamps\": [[0, 14.63], [9.89, 27.53], [24.95, 48.61], [45.6, 86.03]], \"sentences\": [\"Meat is being cut on a board.\", \" The slices are marinated in sauce.\", \" The meat is then skewered.\", \" It is then cooked in a pan.\"]}, \"v_pmlK-IV4vko\": {\"duration\": 19.97, \"timestamps\": [[0, 19.97], [0.6, 10.58], [2.6, 16.58], [10.28, 19.37]], \"sentences\": [\"An athlete stands on a track.\", \" They are holding a long pole.\", \" They run down the track quickly.\", \" They then pole vault over a bar.\"]}, \"v_Uc0Z2tuIJVA\": {\"duration\": 90.35, \"timestamps\": [[1.81, 25.75], [27.1, 60.99], [62.34, 85.38]], \"sentences\": [\"Two men are seen playing ping pong and a man speaks to the camera.\", \" Several people are shown playing beer pong as well as speaking to the camera.\", \" The people continue to play as others speak to the camera.\"]}, \"v_uxMOn-NmmZo\": {\"duration\": 91.67, \"timestamps\": [[0, 11.92], [14.21, 41.25], [48.59, 91.67]], \"sentences\": [\"A stump is shown protruding from the ground.\", \" A man gathers dried grass around the stump.\", \" He then lights a fire, showing how to make a camp fire.\"]}, \"v_5Q_FrGFVGNY\": {\"duration\": 143.23, \"timestamps\": [[0, 143.23], [4.3, 36.52], [37.24, 143.23]], \"sentences\": [\"A boy and girl dance in a living room spinning each other around and around and switching sides as they dance.\", \"  A boy and girl begin to spin each other around in a ballroom style dance on the living room floor.\", \"  The boy spins the girl and the girl spins the boy, the two do this back and forth sometimes twirling by the waist and dipping under the arm to spin.\"]}, \"v_2uBPhFis_4Y\": {\"duration\": 48.74, \"timestamps\": [[0, 46.79], [0, 48.74], [47.76, 48.74]], \"sentences\": [\"A man in a black shirt is playing two drums with his hands.\", \" People are walking behind him while he plays.\", \" He finishes and stands up straight.\"]}, \"v_7mmXZeOJT8w\": {\"duration\": 29.86, \"timestamps\": [[0, 4.63], [4.78, 20.16], [17.77, 29.26]], \"sentences\": [\"A child's mouth is seen close up with a person brushing his teeth.\", \" The man continues brushing while the boy smiles.\", \" He pulls out the toothbrush and the boy looks to the camera.\"]}, \"v_6NqS3vYvf6Q\": {\"duration\": 154.9, \"timestamps\": [[0, 13.94], [22.46, 51.89], [79.77, 154.9]], \"sentences\": [\"A horse's feet run by the camera.\", \" A woman is seen standing beside a horse and speaking.\", \" She demonstrates how to mount and ride the horse.\"]}, \"v_Zn84iOuIkDs\": {\"duration\": 81.36, \"timestamps\": [[0, 17.49], [18.71, 60.21], [51.67, 78.52]], \"sentences\": [\"A close up of a person is seen with a cat in their lap.\", \" The person then holds up a pair of tweezers and begins cutting the cat's claws.\", \" The man continues to cut the claws and pets the pat and ends by letting her walk away.\"]}, \"v_24vWSTx6N5M\": {\"duration\": 20.23, \"timestamps\": [[0, 2.33], [2.63, 13.15], [13.45, 20.23]], \"sentences\": [\"A group of children are spinning on a tire attached to a swing set.\", \" Another child walks by the swing set.\", \" The kids continue to spin in circles.\"]}, \"v_Ed7kAmkawTo\": {\"duration\": 233.8, \"timestamps\": [[0, 39.75], [91.18, 129.76], [174.18, 233.8]], \"sentences\": [\"A woman is brushing her very long, black hair.\", \"  The woman puts her very long black hair into a ponytail.\", \"  The woman braids her very long black hair.\"]}, \"v_2XOTxAZZhsQ\": {\"duration\": 58.84, \"timestamps\": [[0, 13.83], [13.53, 38.25], [35.3, 57.96]], \"sentences\": [\"A woman is seen moving around a kitchen putting dishes away.\", \" She washes more dishes and speaks to other.\", \" A close up of a boiling pot is shown as she continues to work.\"]}, \"v_yToUeIIlkOg\": {\"duration\": 190.47, \"timestamps\": [[0, 3.81], [3.81, 57.14], [57.14, 98.09], [98.09, 165.71], [165.71, 185.71], [185.71, 190.47]], \"sentences\": [\"An introduction comes onto the screen for a video about cooking.\", \" A woman begin to buy ingredients to the grill to saute them and then put them to the side.\", \" He garnishes played and also crack some eggs into a container.\", \" She fries the egg and then adds the grilled ingredients into the egg forming an omelet.\", \" She places on to the garnished plate and ads some salt.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_tnt6Wpv_kHc\": {\"duration\": 184.76, \"timestamps\": [[0, 30.49], [29.56, 113.63], [105.31, 184.76]], \"sentences\": [\"a man is in a studio riding an elliptical.\", \" other people gather around the man to apply makeup and take his picture.\", \" the man then continues to ride the elliptical.\"]}, \"v_kh42ufAYMZQ\": {\"duration\": 147.07999999999998, \"timestamps\": [[0, 11.77], [19.12, 112.51], [117.66, 147.08]], \"sentences\": [\"a cat is lying down in a woman's lap.\", \" She is holding a pair of cat toe nail clippers.\", \" She gently clips each nail one at a time.\"]}, \"v_M4npKXFKxPA\": {\"duration\": 28.75, \"timestamps\": [[0, 2.01], [0, 28.75], [15.24, 28.75]], \"sentences\": [\"A woman is standing on a mat.\", \" People are sitting on blue mats next to her.\", \" A woman is swinging from a bar doing gymnastics.\"]}, \"v_b380n1dci9I\": {\"duration\": 58.91, \"timestamps\": [[0, 48.6], [8.84, 48.6], [48.31, 58.91]], \"sentences\": [\"People are riding bicycles around a dirt track.\", \" They go over many jumps.\", \" People are standing in the crowd watching them.\"]}, \"v_tnB7LNIcXC0\": {\"duration\": 115.68, \"timestamps\": [[0, 47.43], [47.43, 102.38], [102.38, 115.68]], \"sentences\": [\"A piece of metal is shown and a man is standing on top of a metal roof spray painting it,changing it from a rusty red to all white.\", \"The guy makes sure he is extremely careful while spray painting and only does a partial amount of it and leaves about two feet from the edge left to paint.\", \"Once complete,he turns to the side and finishes the top before finally getting down and looking at what he had done.\"]}, \"v_tCQiu-qY9XA\": {\"duration\": 71.31, \"timestamps\": [[27.45, 42.43], [36.01, 52.06], [45.64, 69.53]], \"sentences\": [\"Two people are seen holding tennis rackets and hitting a ball.\", \" The people hit the ball back and fourth to one another.\", \" A close up is shown of the girl hitting a ball.\"]}, \"v_r9eXOf4hvCE\": {\"duration\": 68.15, \"timestamps\": [[0, 68.15], [36.12, 38.85], [39.87, 68.15]], \"sentences\": [\"A man is lifting himself up on two bars.\", \" People are sitting down behind him watching.\", \" He is lifting himself up on treadmill handles.\"]}, \"v_oUQPIZu5bVU\": {\"duration\": 113.64, \"timestamps\": [[0, 32.39], [32.39, 102.28], [102.28, 113.64]], \"sentences\": [\"Hurling teams march on a field while bagpipe musicians play.\", \" Clips of different teams playing in different hurling tournaments.\", \" Hurling teams shaking hands after completing a game.\"]}, \"v_RYJ3yzxZB8k\": {\"duration\": 154.32, \"timestamps\": [[0.77, 2.31], [10.03, 80.25], [70.22, 138.89]], \"sentences\": [\"A man is break dancing on the ground.\", \" A man in a brown shirt is talking.\", \" A man in green shorts lays down on the ground.\"]}, \"v_9bERRZ2eTbo\": {\"duration\": 113.89, \"timestamps\": [[0, 35.31], [29.61, 81.43], [73.46, 108.77]], \"sentences\": [\"A man is seen standing before a counter and putting water into a container.\", \" He then mixes ingredients into the container and leaves it out.\", \" He puts it in the fridge and then drinks a glass of it.\"]}, \"v_RF0ChBe9HHI\": {\"duration\": 82.4, \"timestamps\": [[6.59, 62.21], [67.98, 76.63], [76.22, 82.4]], \"sentences\": [\"A man is standing on a stage playing a violin.\", \" A man is standing behind him in a tuxedo.\", \" People applaud for him after he finishes.\"]}, \"v_aa0MLYA8F7s\": {\"duration\": 90.33, \"timestamps\": [[0, 10.84], [16.71, 61.42], [68.2, 90.33]], \"sentences\": [\"A woman is shown mounting a very high beam in a gym.\", \" She tosses and spins between two bars.\", \" She flips between them several times before dismounting.\"]}, \"v__RCe4Q0p1aA\": {\"duration\": 89.57, \"timestamps\": [[0, 26.87], [26.42, 52.85], [52.4, 76.14], [76.14, 89.57]], \"sentences\": [\"Two men are standing in the corner around a stand putting powder on their hand.\", \"One man then walks onto the stage and positions himself to lift up a weight.\", \"After a long time,the man picks up the weight in a squat,bends his knees several times and finally jerks it over his head.\", \"A replay is then shown from another angle and the individuals behind him begin throwing their fist up in excitement before congratulating the man with a hug.\"]}, \"v_4OfhHE72V8c\": {\"duration\": 201.55, \"timestamps\": [[22.17, 104.81], [105.81, 170.31], [171.32, 198.53]], \"sentences\": [\"A woman paints dark the top of her eyelid using a brush.\", \" Then, the woman puts make up on the lower eyelid using the brush.\", \" After, the woman takes a sponge to powder her cheeks.\"]}, \"v_LcXB-fSLTKY\": {\"duration\": 151.23, \"timestamps\": [[0, 23.44], [25.71, 127.79], [136.86, 151.23]], \"sentences\": [\"a stack of wooden limbs are gathered together.\", \" A man's hands appear, lighting the flint.\", \" He starts a fire, and maintains it.\"]}, \"v_QnQ2D-tJ9pM\": {\"duration\": 123.79, \"timestamps\": [[1.24, 32.8], [27.85, 94.7], [82.32, 121.31]], \"sentences\": [\"A young child is seen swinging an ax and cutting up wood.\", \" Other people are seen standing around a fire and speaking to one another.\", \" The man continues cutting wood and showing it to the camera.\"]}, \"v_7tlXgKBTD_0\": {\"duration\": 51.97, \"timestamps\": [[0, 3.64], [3.38, 16.11], [15.85, 51.97]], \"sentences\": [\"A woman is sitting on a mat.\", \" She lays back and starts lifting her legs in the air.\", \" She continues working out on the mat.\"]}, \"v_VcQHv5PHb-M\": {\"duration\": 160.87, \"timestamps\": [[0, 37], [30.56, 90.09], [62.74, 126.28], [131.11, 158.45]], \"sentences\": [\"A young boy is seen speaking to the camera while another walks around him from behind.\", \" The men play darts as well as show their faces close up and take off their shirts.\", \" They play more games as well as dress up as characters while still zooming in on a dart.\", \" In the end the boy panics to the camera.\"]}, \"v_TomBet77rDc\": {\"duration\": 46.19, \"timestamps\": [[0, 32.33], [32.33, 39.03], [39.03, 46.19]], \"sentences\": [\"A man walks up to a very heavy barbell and prepares to perform a lift.\", \" He starts by lifting the bar goes to shoulder level and pauses for a moment.\", \" Then proceeds to lift the barbell over his head and drop it to the floor.\"]}, \"v_gXp3KSWhf1g\": {\"duration\": 234.45, \"timestamps\": [[4.69, 14.07], [44.55, 48.06], [93.78, 234.45]], \"sentences\": [\"People are running on the street.\", \" A man takes a drink out of a water bottle.\", \" People are crossing the finish line of a race.\"]}, \"v_sMVf7HDvsEc\": {\"duration\": 168.88, \"timestamps\": [[0, 6.76], [6.76, 37.15], [37.15, 90.35], [90.35, 98.79], [99.64, 168.88]], \"sentences\": [\"Two young men are assembling a fake Christmas tree.\", \"  One has a small green bird perched on his finger whom he shows the tree.\", \"  A second bird flies to his other hand and they put lights on the tree.\", \"  The young man rubs the bird's head.\", \"  The birds look on at the finished Christmas tree.\"]}, \"v_yUCSKSMVrPo\": {\"duration\": 162.35, \"timestamps\": [[0, 38.15], [38.96, 81.99], [82.8, 129.07], [129.07, 162.35]], \"sentences\": [\"A large auditorium is filled with students watching a young man on stage play the drums.\", \"The man on stage has four drums in front of them but they are large and brassy with glass tops and the drum sticks are different.\", \"As he continues to play,he grabs a black cloth and unfolds it over the drums to create a different sound.\", \"During the performance,many photographers come on stage to film the guy until he finishes and the crowd gives him a standing ovation.\"]}, \"v_Jl2lDgcsvmA\": {\"duration\": 190.27, \"timestamps\": [[0, 22.83], [31.39, 127.48], [136.99, 190.27]], \"sentences\": [\"A group of children are gathered at an outdoor event.\", \" They are engaged in a game of kickball.\", \" They kick the ball and run to the bases.\"]}, \"v_Zxi0V2pBPlA\": {\"duration\": 122.37, \"timestamps\": [[0, 7.95], [10.4, 61.19], [63.02, 122.37]], \"sentences\": [\"A man is seated over plastic on a chair.\", \" A woman is using wax to clean his legs.\", \" Then they rip the wax off his legs one strip at a time.\"]}, \"v_N2WxAkVh-C4\": {\"duration\": 177.59, \"timestamps\": [[12.43, 24.86], [58.6, 60.38], [74.59, 128.75], [142.96, 150.06]], \"sentences\": [\"A woman picks up a shampoo bottle.\", \" She sprays something into her hair.\", \" She starts to blow dry her hair.\", \" She then brushes her hair with a comb.\"]}, \"v_0iIY3HLF3lU\": {\"duration\": 89.28, \"timestamps\": [[0, 12.5], [16.96, 62.5], [66.96, 89.28]], \"sentences\": [\"A man is riding a canoe in a river.\", \" He is  then seen talking to the camera.\", \" He is seen riding the canoe and paddling again.\"]}, \"v_Gfsk28SzgXk\": {\"duration\": 139.07, \"timestamps\": [[0, 57.71], [39.63, 102.91], [85.52, 133.5]], \"sentences\": [\"A group of people are seen sitting on a dock while another group rides away in a boat.\", \" The people talk back and fourth while one man sits on a pair of skis.\", \" The boat takes off and the man rides in the back.\"]}, \"v_YAiCO8en_ls\": {\"duration\": 216.41, \"timestamps\": [[6.49, 10.82], [16.23, 34.63], [167.72, 174.21], [200.18, 216.41]], \"sentences\": [\"A man bends down and kneels on the grass.\", \" A small black and white dog jumps on his back and grabs a Frisbee out of his hand several times.\", \" He then throws the Frisbee in the air and the dog grabs it in its mouth.\", \"Two dogs are fighting over a Frisbee.\"]}, \"v_8tddzer_NfY\": {\"duration\": 189.08, \"timestamps\": [[0, 8.51], [8.51, 181.52], [52, 54.83], [70.91, 72.8], [130.47, 132.36], [182.46, 189.08]], \"sentences\": [\"A woman walks onto a gym floor.\", \" She starts dancing and twirling a baton on the floor.\", \" She does a front flip on the floor.\", \" She drops her baton on the ground and picks it up.\", \" She does the splits on the floor.\", \" She bows and walks off the floor.\"]}, \"v_B8imoIn6NUE\": {\"duration\": 124.51, \"timestamps\": [[0, 2.49], [3.11, 5.6], [6.23, 106.45], [107.08, 124.51]], \"sentences\": [\"A \\\"Devin Super Tramp\\\" logo animates on screen.\", \" An indoor skate ramp room is shown full of light blue balloons.\", \"  Skaters begin skating up and down the ramps, through the balloons.\", \" Credits and video links are shown.\"]}, \"v_uG_G4g6ixms\": {\"duration\": 30.33, \"timestamps\": [[0, 3.94], [3.94, 11.98], [11.98, 22.29], [23.65, 30.33]], \"sentences\": [\"A man is riding on a horse.\", \" He runs after a calf and ties its legs.\", \" He then gets back up onto his horse.\", \" Another man unties the legs of the calf.\"]}, \"v_yAkVtmP7654\": {\"duration\": 216.62, \"timestamps\": [[0, 10.83], [10.83, 23.83], [24.91, 46.57], [47.66, 69.32], [69.32, 100.73], [101.81, 168.96], [170.05, 209.04], [211.2, 216.62]], \"sentences\": [\"A man and two boys walk through the snowy parking lot of an apartment complex and we see the distant building.\", \" One boy stops and moves snow off a car and walks through the deep snow around the car as the man and other boy keep walking.\", \" The cameraman shows us herself and a person out in the snow.\", \" We see the one of the boys runs towards the camera and see the playground and apartment building the people came from.\", \" The camera operator walks to the the vehicle the man and the boys are cleaning off and a boy runs in front of the lady.\", \" The boy wipes snow we see the building and we see the man with his snow removal tool.\", \" The man starts knocking the snow off the  vehicle with the tool.\", \" The lady holding the camera gives the camera a thumbs up before panning back to the man.\"]}, \"v_MkKUQ4MMHd8\": {\"duration\": 37.55, \"timestamps\": [[0, 37.55], [0.19, 37.55], [33.6, 37.55]], \"sentences\": [\"People are riding camels on the sand.\", \" People are walking next to the camels leading them.\", \" A building is shown in the background.\"]}, \"v_0yGGccaHMnI\": {\"duration\": 46.07, \"timestamps\": [[0, 45.15], [0.92, 45.15], [45.15, 46.07]], \"sentences\": [\"A person is standing on stilts.\", \" They walk back and forth on a dirt trail.\", \" They jump off the stilts and hold them in their hands.\"]}, \"v_nKn2uQTVo-U\": {\"duration\": 223.01, \"timestamps\": [[0, 8.92], [10.04, 211.85], [212.97, 223.01]], \"sentences\": [\"A man is performing in front of a crowd and the words \\\"A Handy Andy Trailer\\\" appear on screen with fire in the background.\", \" People perform acrobatic like tricks on the floor of a public space with people gathered around watching.\", \" A man wearing orange red finishes the video spinning on the ground upside down.\"]}, \"v_HguqDEvSN68\": {\"duration\": 32.11, \"timestamps\": [[0, 32.11], [0.64, 32.11], [0, 31.79]], \"sentences\": [\"People are sitting in bumper cars.\", \" They are driving the bumper cars around and crashing into each other.\", \" People are standing by the gate watching them.\"]}, \"v_NdnosxA2c5g\": {\"duration\": 37.97, \"timestamps\": [[0, 3.61], [3.42, 9.11], [13.29, 37.97]], \"sentences\": [\"A horse grazes on grass on the side of a trail.\", \" A child smells then throws a handful of flowers into the air.\", \" The group rides together on horses down a forested path.\"]}, \"v_4Sf9C_vtYIs\": {\"duration\": 14.14, \"timestamps\": [[0, 3.75], [3.75, 8.2], [8.2, 14.14]], \"sentences\": [\"A toddler wearing a camouflage shirt is wetting his hands over a sink.\", \" A lady holding the toddler puts an orange colored soap in the toddlers hands.\", \" The toddler then rinses his hands under the faucet.\"]}, \"v_7Eh6c1eYMFk\": {\"duration\": 70.51, \"timestamps\": [[0, 5.99], [8.81, 44.42], [46.54, 70.51]], \"sentences\": [\"a vacuum is shown standing in a kitchen.\", \" A woman uses the vacuum in various scenarios.\", \" She cleans up dirt, pet food, and candies from the floor.\"]}, \"v_31TT2oiYRO4\": {\"duration\": 217.53, \"timestamps\": [[0, 54.38], [54.38, 172.93], [174.02, 217.53]], \"sentences\": [\"Three women are in an empty dance studio dressed in all black workout clothes with a lime green wall behind them.\", \"All of the ladies begin to dance in unison moving their hands from left to right and jumping from side to side.\", \"The instructor remains in the front of the triangle formation and continues to dance while the two behind her mimics her every move.\"]}, \"v_1hB5jVAhSDE\": {\"duration\": 32.07, \"timestamps\": [[0, 30.62], [22.77, 23.25], [30.62, 32.07]], \"sentences\": [\"A woman plays drums with her palms while seated.\", \" The woman mimes playing the drums with her palms in the air.\", \" The woman stops playing and breathes in an exaggerated manner.\"]}, \"v_VSONGdnvKiM\": {\"duration\": 190.78, \"timestamps\": [[0, 24.8], [33.39, 113.51], [127.82, 190.78]], \"sentences\": [\"Scuba divers are swimming around under the water.\", \" They prep a camera and go diving.\", \" They look at all the wildlife and fish.\"]}, \"v_mzVJHw9Jrb4\": {\"duration\": 140.71, \"timestamps\": [[0, 135.79], [19, 127.35], [85.83, 87.24], [116.79, 117.5]], \"sentences\": [\"People are interacting outside later in the day.\", \" A guy skates around colorful cups place on the pavement as cones.\", \" A guy in a black, sleeveless undershirt squats and skates.\", \" The guy in a black, sleeveless undershirt stand on his tip toe with skates on.\"]}, \"v_Y7gywSk5i0M\": {\"duration\": 9.59, \"timestamps\": [[0, 9.59], [0.43, 8.58], [5.61, 8.58], [6.23, 9.54]], \"sentences\": [\"A woman is in a gym.\", \" She is swinging on a bar.\", \" She does a flip in air.\", \" She lands on the ground.\"]}, \"v_dWyE0o2NetQ\": {\"duration\": 187.15, \"timestamps\": [[0, 14.04], [23.39, 179.67], [138.49, 176.86], [181.54, 186.22]], \"sentences\": [\"The credits of the video are shown.\", \" A lady performs stunts inside a gym.\", \"  The lady is lifted up by ladies, and the lady grabs her leg with her hand.\", \" The credits of the clip are shown.\"]}, \"v_x6E92fGgdH4\": {\"duration\": 134.97, \"timestamps\": [[0, 8.77], [8.77, 32.39], [32.39, 62.76], [61.41, 96.5], [95.83, 134.97]], \"sentences\": [\"A blue screen appears with the word Ansell on it followed by the words Hand Scrubbing.\", \"After,a young lady dressed in scrubs,walks into a room and peels off paper from a scrub brush.\", \"Once she turns the water on,she begins scrubbing her arms and under her nails for 15 minutes.\", \" Next she applies the soap and follows the same motions making sure to clean all the way up to her elbows before washing it off.\", \"For her last step,she uses her arms to turn the water off and walks out of the room making sure to not touch anything.\"]}, \"v_GI8tylrKKlA\": {\"duration\": 199.37, \"timestamps\": [[0, 28.91], [34.89, 118.62], [129.59, 199.37]], \"sentences\": [\"A woman is talking while seated on a couch.\", \" She is holding a cat in her lap.\", \" She uses a small pair of scissors to cut the cat's toenails.\"]}, \"v_hiifjzLG8Io\": {\"duration\": 19.6, \"timestamps\": [[0, 19.6], [0, 4.8], [5.1, 9.8], [9.8, 19.6]], \"sentences\": [\"A dirt yard is shown with a barn in the background, and a blue wheelbarrow and two white chairs in the foreground.\", \" A man is next to a horse behind a fence and cleans some brushes.\", \" He walks over to the horse.\", \" Then he brushes the horse.\"]}, \"v_Cl96RZAFcZo\": {\"duration\": 17.14, \"timestamps\": [[0, 1.03], [1.11, 8.4], [8.48, 17.05]], \"sentences\": [\"A car in a driveway is shown with a man on the far side.\", \" The cameraman walks to the other side of the car where the man is washing it.\", \" The man begins to dance while washing the car.\"]}, \"v_dDN37ufNu84\": {\"duration\": 85.26, \"timestamps\": [[0, 85.26], [0, 6.39], [7.25, 22.17], [24.73, 85.26]], \"sentences\": [\"A woman with short hair in a blue shirt is standing with a ping pong paddle at one end of a ping pong table.\", \" She explains that she is going to show how to put a spin on the ball, and a yellow ball is shown hitting the table in a spin.\", \" She then is shown holding two balls and the paddle, she hits one and and then gets another from the bin on the right.\", \" Then she proceeds to demonstrate over and over how to hit the ball correctly to get the spin on it.\"]}, \"v_rwxSphRRIL8\": {\"duration\": 88.52, \"timestamps\": [[0, 10.18], [14.6, 44.7], [51.78, 88.52]], \"sentences\": [\"A chef is shown talking inside a kitchen.\", \" He fills a pot with water to boil with salt.\", \" He then shows how to make a pot filled with pasta.\"]}, \"v_OzXD3WO6jrs\": {\"duration\": 65.97, \"timestamps\": [[0, 10.88], [11.21, 26.39], [26.72, 57.72], [57.72, 65.97]], \"sentences\": [\"A man stands on front the parallel bars preparing to perform.\", \" Then, the man performs his routine on the parallel bars.\", \" Then, the man flips twice an after continues with his routine.\", \" The man stands on his hands, then flips twice an land stand on the mat.\"]}, \"v_Sx5MlpX6NIY\": {\"duration\": 142.66, \"timestamps\": [[0, 32.81], [33.53, 91.3], [92.02, 142.66]], \"sentences\": [\"A band is standing together in an outside arena.\", \" A woman drinks from a cup while they prepare to play.\", \" The group starts marching and playing instruments and drums.\"]}, \"v_-n0F3QTuxug\": {\"duration\": 15.3, \"timestamps\": [[0.31, 8.42], [2.45, 11.17], [5.59, 15]], \"sentences\": [\"A young child is seem looking to the camera.\", \" He puts his hands under a sink with running water.\", \" He cleans his face and smiles to the camera.\"]}, \"v_XASTWKClhPU\": {\"duration\": 130.33, \"timestamps\": [[0, 41.71], [31.93, 84.72], [80.81, 127.73]], \"sentences\": [\"A man is seen skating around a city street while a car followed by the side.\", \" The man rides past cars at a quick pace and performs several tricks and flips.\", \" The man continues skating around and looking at the camera.\"]}, \"v_JoiZmVQCLCI\": {\"duration\": 186.35, \"timestamps\": [[0, 44.72], [35.41, 136.04], [112.74, 180.76]], \"sentences\": [\"An audience cheers as several men run down a track and pole volt.\", \" Many clips play one after the other of people using a pole to get over a bar.\", \" More people take turns pole volting and reacting afterwards.\"]}, \"v_ps0a-GGomX4\": {\"duration\": 32.6, \"timestamps\": [[0.33, 8.97], [9.13, 13.69], [13.86, 15.32]], \"sentences\": [\"People are standing behind a fence watching a man.\", \" The man picks up a javelin and runs down a track.\", \" He throws the javelin into the field in front of him.\"]}, \"v_kCb2Km85Yn4\": {\"duration\": 24.71, \"timestamps\": [[0, 3.83], [1.98, 6.79], [6.67, 12.97], [15.57, 24.71]], \"sentences\": [\"A child climbs up a slide.\", \" She gets to the top of the slide.\", \" She turns around on the slide.\", \" She then slides down it.\"]}, \"v_Uqs8NaPzHKU\": {\"duration\": 226.74, \"timestamps\": [[0, 9.07], [9.07, 36.28], [40.81, 68.02], [185.93, 226.74]], \"sentences\": [\"A cupcake is sitting on a plate.\", \" Butter is stirred into a pot with chocolate.\", \" More ingredients are added to the pot.\", \" Finally the cupcakes are done cooking.\"]}, \"v_6hjRnngC73o\": {\"duration\": 119.17, \"timestamps\": [[0, 13.7], [19.66, 68.52], [73.29, 119.17]], \"sentences\": [\"A man is talking inside a work room.\", \" He uses a small canister and sanding block to sand a large piece of wood.\", \" He sands it clean, then paints it.\"]}, \"v_obVMUmZQW_M\": {\"duration\": 142.62, \"timestamps\": [[0, 24.24], [24.24, 104.82], [104.82, 142.62]], \"sentences\": [\"A woman has curlers in her hair.\", \" She begins to take the curlers out of her hair.\", \" She uses her fingers to comb the curls through her hair.\"]}, \"v_s5QkiA-w5YE\": {\"duration\": 158.06, \"timestamps\": [[0, 41.89], [30.82, 109.06], [86.93, 149.37]], \"sentences\": [\"A person is seen close up in a kayak paddling along.\", \" The person moves his arms all around the water and off into the distance.\", \" The person continues to ride along in the kayak and flip in the water.\"]}, \"v_xAMZGWqRmqE\": {\"duration\": 63.58, \"timestamps\": [[0, 5.72], [4.45, 43.87], [39.42, 63.58]], \"sentences\": [\"The man picked up the frisbee and play with it as the dog followed it.\", \" The man threw the frisbee and the  dog catch it and bring back to the man.\", \" The man wiped the frisbee and then threw it again and the dog caught and brought it back to the owner.\"]}, \"v_6VT2jBflMAM\": {\"duration\": 194.12, \"timestamps\": [[0, 187.32], [12.62, 187.32], [188.3, 194.12]], \"sentences\": [\"Several people are in a backyard playing a game of kickball and having a great time.\", \" A kid is recording the game and showing himself the camera at the same time.\", \" The video in the closed caption shown on the screen.\"]}, \"v_LCLDhKiMAPA\": {\"duration\": 215.23, \"timestamps\": [[0, 154.96], [156.04, 167.88], [194.78, 204.46], [214.15, 215.23]], \"sentences\": [\"Two men are playing foosball in a dimly lit room.\", \" One of the little plastic men on the game flies off.\", \" One man tries to fix the game piece.\", \" He gives the thumbs up at the end.\"]}, \"v_TEh6gfRUFZQ\": {\"duration\": 109.09, \"timestamps\": [[0, 18.54], [18, 72], [72, 109.09]], \"sentences\": [\"A man is standing near a window talking to the phone and looking out at the weather.\", \"The man then comes outside and starts talking about the snow holding a red plastic stick in his hand.\", \"With the stick,he proceeds to the car and start slicing the snow off of his windshield.\"]}, \"v_7tDDXbiQ8AI\": {\"duration\": 177.07, \"timestamps\": [[8.85, 40.73], [40.73, 61.97], [63.74, 80.57], [97.39, 126.6], [159.36, 176.18]], \"sentences\": [\"Various ingredients are set out on a counter and the man presents them.\", \" A measuring cup of ice and lemon juice are poured into the blender.\", \" A spoonful of a powdered nutritional supplement are added to the blender.\", \" The blender is mixed and the icy contents are poured into a cup.\", \" Various meals are cooked in a kitchen with different cooking methods.\"]}, \"v_zE0vlPLBVJo\": {\"duration\": 25.43, \"timestamps\": [[0, 3.05], [4.58, 15.38], [19.32, 25.43]], \"sentences\": [\"A little girl is at a party in a house.\", \" She is holding a large stick.\", \" She is using it to hit a pinata.\"]}, \"v_l_KhWbeZeRA\": {\"duration\": 222.02, \"timestamps\": [[0, 41.07], [53.28, 166.52], [173.18, 222.02]], \"sentences\": [\"Two teams are gathered inside a building gym.\", \" They are engaged in a game of dodgeball.\", \" They throw the balls at each other, running and dodging them.\"]}, \"v_Aa33vHLEXJA\": {\"duration\": 73.53, \"timestamps\": [[1.1, 19.48], [16.91, 55.15], [44.85, 72.79]], \"sentences\": [\"A person is seen fighting a bull and being trampled and impailed.\", \" The people carry him away and show more clips of people bull fighting.\", \" A man looks at the bull and shows him down in the end.\"]}, \"v_fErOJ98E15w\": {\"duration\": 162.12, \"timestamps\": [[22.7, 153.21], [32.42, 153.21], [55.93, 98.08]], \"sentences\": [\"A man is playing wall ball in a room.\", \" He hits the ball against the wall several times.\", \" A person is standing outside the room.\"]}, \"v_2FIQwmB362w\": {\"duration\": 174.27, \"timestamps\": [[0, 25.27], [28.75, 92.36], [100.2, 174.27]], \"sentences\": [\"a man is wearing sunglasses in the middle of the street.\", \" He gets on a skateboard and rides it down the street.\", \" He does several stunts, flipping and spinning as he goes.\"]}, \"v_224E-VtB4k4\": {\"duration\": 225.49, \"timestamps\": [[0, 37.21], [45.1, 160.1], [163.48, 225.49]], \"sentences\": [\"A group of men are shown walking through an airport.\", \" A man removes a violin from his case.\", \" He plays for the small crowd that passes through.\"]}, \"v_0AbJgWxIYVI\": {\"duration\": 202.07999999999998, \"timestamps\": [[0, 37.39], [19.2, 48.5], [61.64, 202.08]], \"sentences\": [\"a boy runs with a skateboard in his hand.\", \" the boy throws the skateboard down and a does a trick.\", \" several examples of skateboard tricks and falls are shown.\"]}, \"v_T4ZeB_TvS68\": {\"duration\": 64.45, \"timestamps\": [[0, 8.38], [9.99, 25.78], [26.42, 64.45]], \"sentences\": [\"An elderly man is standing inside a casino.\", \" He talks about the decks and the way they are dealt.\", \" A female dealer is standing next to him as he gives the demonstration.\"]}, \"v_qAZStAHJ3CQ\": {\"duration\": 129.66, \"timestamps\": [[0, 35.66], [31.12, 85.58], [86.87, 127.07]], \"sentences\": [\"A young girl speaks to the camera while holding up a hula hoop.\", \" She begins spinning the hoop around herself.\", \" She continues spinning while speaking to the camera and pausing to stop.\"]}, \"v_iZk3PH8ghlI\": {\"duration\": 131.22, \"timestamps\": [[9.19, 38.71], [38.71, 81.35], [81.35, 125.31], [125.31, 129.9]], \"sentences\": [\"A group of teens skateboarding on a road.\", \" The teens talk each other, then spread and continues skateboarding.\", \" Some of the teens holds hands behind their bodies while skating.\", \" Teens holds hands while skateboarding.\"]}, \"v_F8K9WQfHth4\": {\"duration\": 112.08, \"timestamps\": [[6.72, 10.65], [28.02, 32.5], [95.27, 99.19]], \"sentences\": [\"A man is hitting a ball with a club.\", \" People are standing behind him watching.\", \" A man in a red hat hits the ball after.\"]}, \"v_SymvoBsqt3Y\": {\"duration\": 72.49, \"timestamps\": [[0, 67.06], [1.45, 68.14], [0, 68.14]], \"sentences\": [\"People are standing in a line holding bass drums.\", \" They begin to march in place and play the drums.\", \" There are red water coolers on the curb behind them.\"]}, \"v_Q3tPDohXUYc\": {\"duration\": 58.35, \"timestamps\": [[0, 5.54], [5.54, 23.34], [23.05, 48.43], [48.14, 58.35]], \"sentences\": [\"A tall,thin black male athlete is standing on a track asking the crowd to clap for him.\", \"Once he is ready,he takes off down the runway and does his steps for a triple jump before finally landing in the pit.\", \"When complete,the woman holds up a white flag to ensure that he didn't scratch and an instant replay is shown.\", \"Finally,the score flashes across the bottom and the male throws up his muscles because he achieved higher than his score before.\"]}, \"v_1DmdX5QwqFI\": {\"duration\": 121.65, \"timestamps\": [[0, 21.9], [23.11, 79.68], [90.63, 121.65]], \"sentences\": [\"A woman is talking in the front yard.\", \" She is then shown in a bathroom, washing her hands.\", \" She shows how to soap up and rinse.\"]}, \"v_p1gH8y8X0kA\": {\"duration\": 97.06, \"timestamps\": [[0, 21.84], [22.81, 32.03], [53.38, 55.81]], \"sentences\": [\"A man is playing some bag pipes in a room.\", \" His fingers are shown playing the bag pipes.\", \" A man is sitting behind a drum set on a stage above him.\"]}, \"v_rnhtmtW_a8o\": {\"duration\": 198.93, \"timestamps\": [[0, 23.87], [24.87, 111.4], [111.4, 198.93]], \"sentences\": [\"A couple of teams are playing inside a gym.\", \" They are serving a volleyball back and forth over a net.\", \" They continue playing, trying to keep the ball from their opponents.\"]}, \"v_gSwjTXkXK3Q\": {\"duration\": 208.77, \"timestamps\": [[0, 19.83], [24.01, 137.79], [146.14, 208.77]], \"sentences\": [\"A couple of men are talking to the camera inside a club.\", \" They set up a table with cups and balls.\", \" They are engaged in a game of beer pong.\"]}, \"v_6b8h8ztnj9Q\": {\"duration\": 236.29, \"timestamps\": [[0, 57.89], [63.8, 172.49], [176.03, 236.29]], \"sentences\": [\"A group of people are inside a gym together.\", \" They are working out on rowing machines.\", \" They pull on the ropes and slide up and down the machines.\"]}, \"v_Zo7oziWT-7o\": {\"duration\": 183.83, \"timestamps\": [[0, 63.42], [47.8, 130.52], [128.68, 176.48]], \"sentences\": [\"A man is seen bouncing up and down on a rope followed by several others.\", \" The people take turns bouncing up and down on a rope while people watch on the side.\", \" The bounce up and down while looking around.\"]}, \"v_RTM6iJxc-G0\": {\"duration\": 31.72, \"timestamps\": [[0.48, 7.45], [8.88, 20.3], [20.3, 27.44]], \"sentences\": [\"A group of people are seen playing instruments together.\", \" Another group of people are seen out in public playing together.\", \" One last shot is shown of the group playing together.\"]}, \"v_Zguc8yykcgk\": {\"duration\": 14.79, \"timestamps\": [[0, 14.79], [0, 14.72], [5.18, 14.79]], \"sentences\": [\"someone is siting on the floor and put the shoes.\", \" someone is sitting on a wooden floor putting the shoes.\", \" the man put the shoes and close them with velcro.\"]}, \"v_xBR7YEKPgDA\": {\"duration\": 68.92, \"timestamps\": [[0, 8.96], [9.65, 38.59], [41.01, 68.92]], \"sentences\": [\"A group of players are running across a field.\", \" They hit the ball and get it into the goal.\", \" They are engaged in a game of field hockey.\"]}, \"v_5WHnYEinw4A\": {\"duration\": 72.26, \"timestamps\": [[0, 8.67], [11.2, 44.44], [44.8, 72.26]], \"sentences\": [\"a man is standing holding a mallet on a field.\", \" He hits a ball through a loop on the ground.\", \" He is involved in a game of croquette.\"]}, \"v_DYwF_1xX4dU\": {\"duration\": 215.02, \"timestamps\": [[0, 27.95], [36.55, 124.71], [139.76, 215.02]], \"sentences\": [\"A man is seen holding a flute while standing against a wall.\", \" He then starts talking to the camera.\", \" He demonstrates how to play the flute.\"]}, \"v_CRDBKk44RWg\": {\"duration\": 143.5, \"timestamps\": [[0, 15.79], [15.79, 143.5], [65.29, 143.5]], \"sentences\": [\"man is holding a tennis ball and is standing in a tennis court talking to the camera.\", \" man walks and stands next to a little girl showing her how to hi the ball.\", \" the man grabs the cart with the tennis balls and is giving the balls to the kid so she can pactice shots.\"]}, \"v_dRAn_gsx9Wc\": {\"duration\": 192.94, \"timestamps\": [[0, 170.75], [8.68, 170.75], [24.12, 170.75], [36.66, 170.75]], \"sentences\": [\"Several people are playing football on a field.\", \" They run up and down the field.\", \" They kick the ball back and forth.\", \" Several people are in the audience.\"]}, \"v_uTQyPHg8r0M\": {\"duration\": 86.45, \"timestamps\": [[0, 15.13], [6.92, 55.76], [57.92, 62.67], [70.02, 84.29], [84.72, 86.45]], \"sentences\": [\"A young lady holds a blue glass and talks to the camera and shows a  bottle of Listerine and a mirror.\", \" We see the lady drink the Listerine and swishes it in her mouth twice and spits in in the kitchen sink.\", \" The lady rinses the sink with a blue bowl.\", \" the lady looks in the mirror at her teeth and points at them and walks in the room.\", \" The camera pans away to the dining room.\"]}, \"v_7KEM_rbhASw\": {\"duration\": 191.22, \"timestamps\": [[0, 28.68], [34.42, 135.76], [143.41, 191.22]], \"sentences\": [\"A group of people are gathered in a river.\", \" They jump in the water one at a time.\", \" Then they give each other high fives.\"]}, \"v_Re-SsHmajds\": {\"duration\": 204.99, \"timestamps\": [[0, 204.99], [0, 201.91], [1.02, 204.99]], \"sentences\": [\"three men are standing on a wooden court playing squash.\", \" men are in a court holding tennis raquets playing squash.\", \" men are wearing sports clothes plaing in wooden court.\"]}, \"v_0YHCiC7IIg8\": {\"duration\": 128.08, \"timestamps\": [[0, 124.88], [3.84, 124.24], [7.04, 119.12], [12.81, 121.68], [126.16, 128.08]], \"sentences\": [\"There are six men dressed in vest suites playing the harmonica in a large room.\", \" They are enjoying themselves as they rhythmically play their instruments and dance along to the tune.\", \" The player on the extreme right is playing a longer harmonica while the others are playing a smaller harmonica.\", \" They continue playing together as they dance along.\", \" There is also an orchestra playing various instruments with a conductor directing them.\"]}, \"v_Ty0BvWyYPVA\": {\"duration\": 17.09, \"timestamps\": [[0, 5.04], [4.87, 14.44], [0, 17.09]], \"sentences\": [\"A boy pushes a ball down a track with a pole.\", \" Another boy comes up behind him and pushes a ball down the track.\", \" A kid is sitting down behind them watching.\"]}, \"v_ez9pf35BMtc\": {\"duration\": 127.85, \"timestamps\": [[0.64, 122.1], [0.64, 1.92], [1.92, 65.84], [66.48, 122.1]], \"sentences\": [\"A man demonstrates how to balance on the parallel bars using a student gymnast as an example on a pair of parallel bars in an indoor gymnasium.\", \"  The man talks to the camera in a indoor gym.\", \"  The man is then seen next to a pair of parallel bars where a young boy is hanging and balancing himself between the bars.\", \"  The boy demonstrates landing a jump from the parallel bars as the man continues to talk to the camera.\"]}, \"v_8OEts-YLeW0\": {\"duration\": 57.34, \"timestamps\": [[0, 55.91], [2.01, 55.91], [5.16, 55.91], [48.46, 55.91]], \"sentences\": [\"A child is in a gym.\", \" He is wearing a martial arts uniform.\", \" He displays several kicks and punches.\", \" He spins around at the end.\"]}, \"v_Yl85vnsndx0\": {\"duration\": 219.99, \"timestamps\": [[0, 90.19], [90.19, 92.39], [101.19, 206.79]], \"sentences\": [\"Women are belly dancing on a stage.\", \" People are sitting in chairs watching them dance.\", \" The girls continue to dance on the stage.\"]}, \"v_nibek2g971I\": {\"duration\": 168.62, \"timestamps\": [[0, 11.8], [12.65, 69.14], [69.98, 161.04], [161.04, 168.62]], \"sentences\": [\"A photo of clowns and foreign language is shown.\", \" A man is walking a very low, red tightrope.\", \" Another man joins him on the rope as they walk back and forth on it.\", \" The words \\\"The End\\\" appear on screen.\"]}, \"v_re4vD9S8ThA\": {\"duration\": 2.42, \"timestamps\": [[0, 0.48], [0.31, 0.89], [1.09, 2.42]], \"sentences\": [\"a man is kneeling in a gym.\", \" the man then stands up.\", \" the man takes a huge leap across the floor.\"]}, \"v_n_9skH6xGeM\": {\"duration\": 197.7, \"timestamps\": [[3.95, 17.79], [17.79, 47.45], [48.44, 72.16], [72.16, 149.26], [149.26, 197.7]], \"sentences\": [\"Four woman and one man jump rope doing tricks with the rope.\", \" Two women turns two ropes while a woman jumps, and  a woman and a man jumps alone.\", \" Then, the women and the man jumps together.\", \" The women and the man take turns to jump with hands and feet and make turns.\", \" After, three women sit and pass the rope under the body, then all they jump together.\"]}, \"v_2mXGnG6ZBDA\": {\"duration\": 45.79, \"timestamps\": [[0, 5.72], [5.72, 31.6], [31.6, 45.79]], \"sentences\": [\"A girl wearing a white blouse swings a wooden bat at a pinata.\", \" While the girl is swinging at the pinata someone is raising and lowering the pinata with a rope.\", \"The girl continues swinging the wooden bat relentlessly at the pinata.\"]}, \"v_yH0xeA_OvWg\": {\"duration\": 70.06, \"timestamps\": [[0.7, 17.51], [16.46, 51.14], [43.08, 64.45]], \"sentences\": [\"A close up of a sink is shown followed by a person wiping it down.\", \" The person uses a rag all along the sink while looking to the camera.\", \" The woman continues cleaning the sink.\"]}, \"v_tBGeBbO8gh0\": {\"duration\": 166.77, \"timestamps\": [[0, 30.02], [33.35, 125.07], [133.41, 166.77]], \"sentences\": [\"a couple of men are standing on an iced over lake.\", \" They have made holes through the ice.\", \" They fish with long poles in the water.\"]}, \"v_EMDTvPUEr7E\": {\"duration\": 59.24, \"timestamps\": [[0, 18.96], [16.88, 47.98], [42.65, 59.24]], \"sentences\": [\"A young boy and young girl are playing hop scotch as the kids and adults are on the side watching.\", \" The boy in orange shirt took turn and play the hop scotch.\", \" A woman in brown shirt is scratching her face as she watch the boy in white shirt.\"]}, \"v_iAPv-QSvZF4\": {\"duration\": 36.76, \"timestamps\": [[0, 26.65], [26.83, 33.82], [34, 36.76]], \"sentences\": [\"A young girl is performing on a balance beam in a small white room.\", \" She walks the length of the bar.\", \"  She makes several poses and then falls off to the floor.\"]}, \"v_I8jhEprzTN8\": {\"duration\": 202.25, \"timestamps\": [[7.08, 56.63], [48.54, 53.6], [56.63, 64.72], [120.34, 144.61], [9.1, 171.91]], \"sentences\": [\"Two people juggle a soccer ball multiple times in a volley.\", \" The two head butt the ball and kick it high into the air.\", \" The man misses a kick and the ball lands in the water.\", \" The ball lands in the water multiple times in a row while the men practice.\", \" Two people juggle a soccer ball on the shoreline of a beach.\"]}, \"v_N5XBi-uPkAU\": {\"duration\": 12.38, \"timestamps\": [[0, 0.8], [1.92, 6.75], [7.43, 12.38]], \"sentences\": [\"A group of wrestlers have slammed another wrestler to the ground.\", \" They are all standing outside the wrestling ring.\", \" Two or them celebrate aggressively at their win.\"]}, \"v_mK3keyPMe3o\": {\"duration\": 208.61, \"timestamps\": [[0, 208.61], [104.3, 208.61], [2.09, 208.61]], \"sentences\": [\"a lot of people wearing white t shits are going on skateboards on street.\", \" the skateboardes are going on highway and people on sides are cheering them up.\", \" people are in a skateboard competition on street.\"]}, \"v_s0swzu1jIpc\": {\"duration\": 91.03999999999999, \"timestamps\": [[0, 32.77], [30.95, 69.19], [57.81, 88.3]], \"sentences\": [\"A man is shown screaming into a mirror and laying out objects on a sink.\", \" He rubs lotions on his head and begins shaving his head.\", \" He walks around putting on various hats and takes them off and walks around.\"]}, \"v_mHVmDOxtVt0\": {\"duration\": 126.6, \"timestamps\": [[0, 15.82], [20.89, 82.92], [84.19, 126.6]], \"sentences\": [\"A group is gathered in a boxing rink.\", \" Two of the pairs are engaged in boxing.\", \" They punch and kick at each other.\"]}, \"v_9btLaLqX-Zk\": {\"duration\": 158.76, \"timestamps\": [[0, 13.49], [3.97, 17.46], [17.46, 94.46], [93.67, 111.92], [113.51, 157.96]], \"sentences\": [\"The window cleaning company logo appears as the video opens.\", \" Followed by a title card announcing the cleaning instruction to follow.\", \" A man behind glass window begins to wash them.\", \" The secret ingredient is introduced: hot sauce.\", \" He then starts on the inside and finishes.\"]}, \"v_riuJrZqkYYU\": {\"duration\": 74.33, \"timestamps\": [[0, 19.7], [14.87, 42], [44.97, 73.21]], \"sentences\": [\"A large group of people are seen running on a gym floor and backing away from one another.\", \" The people then throw balls at one another as people watch.\", \" The game continues on with people walking in and out when they are hit.\"]}, \"v_nqbYEJlRwoQ\": {\"duration\": 186.94, \"timestamps\": [[0, 17.76], [21.5, 63.56], [90.67, 186.94]], \"sentences\": [\"A man is kneeling inside a building.\", \" He is talking about a large rug on the floor.\", \" He then demonstrates the proper tools and methods for cleaning it.\"]}, \"v_QQe2n2yjJuc\": {\"duration\": 196.57999999999998, \"timestamps\": [[0, 196.58], [35.38, 39.32], [170.04, 172.99]], \"sentences\": [\"People are playing indoor soccer in an arena.\", \" People are cheering in the crowd watching.\", \" Four men in suits are sitting behind a table.\"]}, \"v_R_AsoAmxd4o\": {\"duration\": 220.12, \"timestamps\": [[4.4, 7.7], [4.4, 71.54], [70.44, 220.12]], \"sentences\": [\"People are water skiing behind a boat.\", \" A dog is sitting on a board behind the boat.\", \" They continue to water ski behind the boat.\"]}, \"v_QSV7f5XHohE\": {\"duration\": 223.78, \"timestamps\": [[0, 25.74], [22.38, 149.94], [113.01, 157.77], [144.34, 223.78]], \"sentences\": [\"Several photos of cakes are shown.\", \" A women is then shown making a cake.\", \" She intersts a doll on top of the cake.\", \" She then makes it look like the cake is a dress.\"]}, \"v_Gg32cIypcdc\": {\"duration\": 237.39, \"timestamps\": [[0, 10.68], [10.68, 18.99], [18.99, 29.67], [29.67, 237.39]], \"sentences\": [\"man is running in street from a bull and the bull gore the man.\", \" bull is running and goring a man in stairs and people are running.\", \" men are sitting on top of street and a man running from the bull and gets to the men on top.\", \" bulls are chasing people on streets while people runs from the bull.\"]}, \"v_WpQHQeY43zo\": {\"duration\": 198.25, \"timestamps\": [[0, 5.95], [5.95, 157.61], [157.61, 163.56], [163.56, 198.25]], \"sentences\": [\"\\\"David Vernon Playing Jacqueline Waltz and Leyland Accordian Club\\\" appears on screen.\", \" Vernon appears seated on a stage playing the accordian.\", \" He finishes the song, speaks briefly and leaves the stage.\", \" Website addresses are shown on screen followed by a copyright notice.\"]}, \"v_Sd4C8_FMdjA\": {\"duration\": 119.03999999999999, \"timestamps\": [[0, 14.88], [15.48, 79.76], [84.52, 119.04]], \"sentences\": [\"a musician is standing and talking on a stage.\", \" He then displays several dance moves in front of a group of kids.\", \" He shows off the pages of a book with instructions on how to dance.\"]}, \"v_3gPjMvTmE2g\": {\"duration\": 207.49, \"timestamps\": [[0, 158.73], [48.76, 64.32], [76.77, 140.06], [158.73, 207.49]], \"sentences\": [\"Several boats are shown sailing on the water as a man narrates before the start of a boat race.\", \" Stats are shown on the screen as the man explains some of the stats.\", \" The crowd is show on the sideline sitting on the grass watching with binoculars.\", \" The boats begin to bunch together as the horn blows for the beginning of the race.\"]}, \"v_LnMvFpR0xCY\": {\"duration\": 144.31, \"timestamps\": [[7.94, 15.87], [38.24, 38.96], [44.02, 54.12], [55.56, 90.92], [90.2, 129.88]], \"sentences\": [\"A woman walks into a kitchen.\", \" She starts mopping the floor of the kitchen.\", \" She pours soap into the sink.\", \" She dances while she mops the floor.\", \" She puts a purple towel down and dries the floor.\"]}, \"v_u6f9COsww0w\": {\"duration\": 138.07, \"timestamps\": [[0, 33.14], [28.3, 95.96], [90.43, 132.54]], \"sentences\": [\"Several shots are shown of people swimming around a pool as well as playing a game.\", \" Many people speak to the camera while more shots are shown of water polo being played.\", \" A coach speaks to his team and shows them all huddled up together and playing more.\"]}, \"v_A0LLegTPpWk\": {\"duration\": 119.72, \"timestamps\": [[0, 9.58], [9.58, 51.48], [51.48, 89.19], [89.79, 119.72]], \"sentences\": [\"A woman talks next a horse holding two combs, while a person holds the leash of the horse.\", \" Then, the woman combs the mane of the horse with the red and silver comp while she talks.\", \" After, the woman combs the horse with a polling comb and pass her hand on the mane.\", \" After, the woman shows thinning scissors that uses to cut the ends of the mane.\"]}, \"v_p3vqC_FFyyM\": {\"duration\": 147.31, \"timestamps\": [[0, 62.61], [19.15, 84.7], [76.6, 138.47]], \"sentences\": [\"A close up of a roof is shown with a person's hand holding a tool.\", \" The person begins pushing tiles using the tool.\", \" He continues to work around the roof while looking all around him.\"]}, \"v_a2JBhm22-M4\": {\"duration\": 74.93, \"timestamps\": [[0.37, 14.61], [17.61, 19.86], [19.48, 45.33], [45.71, 49.08], [50.95, 74.93]], \"sentences\": [\"The credits and image are shown.\", \" A girls runs and leaps with a brown platform.\", \" A girl does gymnastic stunts on two, uneven heighten hurdles.\", \" The girls flips off and lands on her feet.\", \" The credits and a picture are shown.\"]}, \"v_uaBTWbu0jps\": {\"duration\": 40.06, \"timestamps\": [[0, 26.04], [26.04, 32.85], [32.85, 40.06]], \"sentences\": [\"A man standing in a hammer throw chamber is preparing to make a toss.\", \" He begins to spin around and around in circles to build up momentum.\", \" When he has built up enough momentum he releases the hammer across the field.\"]}, \"v_HImOluKZgp0\": {\"duration\": 32.07, \"timestamps\": [[0, 4.49], [5.77, 14.91], [17.64, 32.07]], \"sentences\": [\"A group of people are sailing on turbulent ocean waters.\", \" The sky is cloudy and windy, blowing the sails.\", \" The people speed around in the water.\"]}, \"v_g_bb4RSu6TQ\": {\"duration\": 2.3, \"timestamps\": [[0, 0.26], [0.3, 0.93], [1.06, 2.3]], \"sentences\": [\"a gymnast holds his position on top of a beam.\", \" He uses his arms to hold up his entire body.\", \" He stays in that position for two seconds.\"]}, \"v_k_xDTGiDp9A\": {\"duration\": 180.51, \"timestamps\": [[0, 3.61], [4.51, 64.98], [65.89, 101.09], [101.99, 157.05], [157.95, 180.51]], \"sentences\": [\"A person films a waterfall from land.\", \" First person video of a person canoeing down rough water with small waterfalls.\", \" Video of a vehicle bridge with a large waterfall in front of it as people in canoes go down it.\", \" First person video from a canoe resumes.\", \" A canoe going down numerous close waterfalls is shown.\"]}, \"v_mhYFpct97UE\": {\"duration\": 155.32, \"timestamps\": [[0, 16.31], [21.74, 100.18], [101.73, 155.32]], \"sentences\": [\"A few school photos are shown of a young girl.\", \" She is then shown in several clips during field hockey games.\", \" A green arrow appears over her head each time she is in the game.\"]}, \"v_YBK6SfHd-0Y\": {\"duration\": 201.04, \"timestamps\": [[0, 172.89], [0, 127.66], [173.9, 201.04]], \"sentences\": [\"A man on the roof of a house is showing how to remove shingles from a house.\", \"  The video explains what to do, what to use, how to remove the shingles with step by step instructions and precautions and safety.\", \"  Two men then carry sheets of plywood on the roof to replace damaged, deteriorated wood while the video explains the specifics of what to use.\"]}, \"v_xwSHzGCP6iA\": {\"duration\": 79.13, \"timestamps\": [[0, 37.98], [37.19, 68.85], [68.45, 79.13]], \"sentences\": [\"A person is bungee jumps off of a tower.\", \" They fall onto a yellow mat and get their harness taken off.\", \" They stand up and walk away.\"]}, \"v_7-u3OI6HDns\": {\"duration\": 196.12, \"timestamps\": [[0, 22.55], [24.51, 108.84], [113.75, 196.12]], \"sentences\": [\"A man is shown in an old video, playing a keyboard.\", \" He is then shown playing drums while a woman taps her foot.\", \" Another man joins in, and soon a band is playing as the woman listens, then begins to sing.\"]}, \"v_5OWJ7WqKWMU\": {\"duration\": 150.95, \"timestamps\": [[0, 21.13], [21.89, 83.02], [83.02, 110.2], [110.2, 150.95], [143.41, 144.91]], \"sentences\": [\"A small boy brushes his teeth at a bathroom sink.\", \" The boy stops brushing his teeth and starts manipulating the buttons on the electric toothbrush.\", \" The boy rinses the toothbrush and his mouth with running tap water.\", \" The boy plays with the toothbrush some more.\", \" An adult briefly leans into frame to kiss the boy.\"]}, \"v_CHBpVOfPmRA\": {\"duration\": 107.37, \"timestamps\": [[0, 10.2], [18.79, 67.11], [76.77, 107.37]], \"sentences\": [\"A group of men are playing a game in an arena.\", \" They are engaged in a game of volleyball.\", \" They serve the ball over the net.\"]}, \"v_ANwaFSIHdW0\": {\"duration\": 38.76, \"timestamps\": [[0, 6.2], [5.62, 26.93], [27.52, 38.76]], \"sentences\": [\"A woman is standing by a playground.\", \" There are three dogs following her around the playground.\", \" The woman and the dogs go down the slide.\"]}, \"v_Z_hwYD3_lBY\": {\"duration\": 184.79, \"timestamps\": [[0, 184.79], [5.54, 44.35], [38.8, 100.71], [70.22, 130.27], [123.81, 161.69], [158.92, 184.79]], \"sentences\": [\"There's an old man in a brown shirt and denim shorts mowing his lawn in a riding lawn mower.\", \" He begins mowing the lawn in his backyard as he goes past some bushes and shrubs.\", \" He goes around in a circular fashion as he tries to cover the areas around and in between the hedges that are next to his house.\", \" The man continues mowing the same area as he goes over in circles.\", \" Then he goes towards the backyard to cover some large area of land.\", \" He drives is lawn mower across the front of the house towards the garage.\"]}, \"v__R-jA9hOFCE\": {\"duration\": 206.66, \"timestamps\": [[0, 58.9], [50.63, 152.93], [136.39, 202.52]], \"sentences\": [\"A large boat is shown riding on the water as well as a beach and people swimming underwater.\", \" Several shots are shown of people riding boats and swimming in the water as well as drinking and dancing.\", \" They swim all along the ocean with fish moving in and out of frame and show more clips of them riding in the boat and walking on the beach.\"]}, \"v_GD9SfOn3irM\": {\"duration\": 97.27000000000001, \"timestamps\": [[0, 8.75], [8.27, 28.69], [21.4, 93.38]], \"sentences\": [\"A person is seen riding in on a horse chasing a calf in the middle of a large crowd.\", \" Another man is seen chasing a calf on a horse and roping a calf running away.\", \" Several more men take their turns chasing after the calfs.\"]}, \"v_Y-lL9JiLhz0\": {\"duration\": 35.09, \"timestamps\": [[0, 10.53], [10.7, 26.49], [23.86, 33.86]], \"sentences\": [\"A clip of scenery is shown followed by a close up of a woman.\", \" More clips are shown of people riding around on wakeboards.\", \" People continue to ride around the water while waving to the camera.\"]}, \"v_Hn3-SRXssY4\": {\"duration\": 213.04, \"timestamps\": [[0, 53.26], [76.7, 158.72], [162.98, 213.04]], \"sentences\": [\"A man is shown running down a track.\", \" He then catapults into the air over a bar.\", \" He lands on a mat on the other side.\"]}, \"v_9njq_aC4AS4\": {\"duration\": 51.69, \"timestamps\": [[0, 18.35], [18.61, 41.61], [41.35, 51.69]], \"sentences\": [\"A woman is sitting in a backyard kneeling down playing with her dad.\", \"The dog is black and white and the lady is throwing an orange Frisbee around to her to catch in her mouth.\", \"Each time the girl throws it,the dog catches it and returns it anticipating more.\"]}, \"v_hXSee4C6pyE\": {\"duration\": 75.02, \"timestamps\": [[0.38, 74.27], [3, 22.88], [22.88, 74.27]], \"sentences\": [\"A person with an unseen face is shown, via their hands, demonstrating how to put a chain on a bicycle.\", \"  A series of metal clamps are shown before A bicycle with gold spikes and a black white walled tire is shown without a chain, as a hand begins to apply one to the bicycle.\", \"  The chain is attached with two metal clasps and the final results are shown with the chain completely attached to the bicycle.\"]}, \"v_QXAs-KJj7K8\": {\"duration\": 126.06, \"timestamps\": [[0, 40.97], [38.45, 90.76], [90.76, 124.17]], \"sentences\": [\"A man is seen hosting a news segment and leads into a group of people sitting with a dog.\", \" The men shake hands and begin playing a game of crochet.\", \" They speak to the camera while continuing to play and others commenting on the game.\"]}, \"v_qokr0bO828E\": {\"duration\": 188.85, \"timestamps\": [[0, 13.22], [29.27, 108.59], [129.36, 188.85]], \"sentences\": [\"A bald man is shown inside his bathroom.\", \" He uses an electric razor that he shows to the camera.\", \" He shaves his head and trims his beard.\"]}, \"v_x4Vk5wSH7xE\": {\"duration\": 25.57, \"timestamps\": [[0.13, 6.77], [7.93, 16.11], [15.08, 25.18]], \"sentences\": [\"A man is seen swinging around a balloon while holding a child.\", \" A man is shown dealing cards to a group of people.\", \" They continue playing with one another.\"]}, \"v_Jh07fhoPWEI\": {\"duration\": 144.1, \"timestamps\": [[0, 33.14], [33.86, 100.15], [92.23, 140.5]], \"sentences\": [\"A woman is seen holding a rubix cube and begins attempting to solve it.\", \" She tries again moving the object around and around.\", \" She holds up the puzzle and solves it several more times.\"]}, \"v_0LJ1mSpqGJg\": {\"duration\": 192.33, \"timestamps\": [[0, 59.62], [59.62, 114.44], [114.44, 157.71], [157.71, 192.33]], \"sentences\": [\"A small logo of Complex magazine appears before the screen turns to a man commentating a game of tennis.\", \"After,several athletes are shown in the room competing with one another and serving the ball over the net.\", \"Some individuals then come over to the man with the microphone and begin doing small interviews with him about the sport.\", \"Finally,a real game is shown and professional athletes are seen playing the sport.\"]}, \"v_ijChwOwYDWc\": {\"duration\": 210.23, \"timestamps\": [[0, 29.43], [29.43, 124.04], [108.27, 166.08], [152.42, 206.03]], \"sentences\": [\"A person is seen walking along the ice dragging a sled.\", \" The person makes a hole while another walks around and makes holes.\", \" The men sit around the holes with a pole and one grabs a fish.\", \" The men continue fishing and showing off their fish to the camera.\"]}, \"v_aDaazrgvjJg\": {\"duration\": 23.29, \"timestamps\": [[0, 3.26], [4.77, 13.51], [15.02, 23.29]], \"sentences\": [\"A female weight lifter walks up to a barbell.\", \" She lifts it up to her neck.\", \" She then puts it over her head before dropping it.\"]}, \"v_GQdkuWJGYFg\": {\"duration\": 165.09, \"timestamps\": [[0, 165.09], [37.15, 66.86], [60.26, 94.1], [99.88, 165.09]], \"sentences\": [\"A woman is standing in a kitchen.\", \" She puts strawberries in to a glass.\", \" She adds juice to it.\", \" She then drinks the mixture.\"]}, \"v_9cxGx2BsKkM\": {\"duration\": 83.31, \"timestamps\": [[0, 5.83], [11.25, 71.65], [74.15, 83.31]], \"sentences\": [\"A man is shown shooting an arrow.\", \" Several other clips from a robin hood movie show arrows being shot.\", \" It continues until the end of the clip.\"]}, \"v_IoJoUIxzdac\": {\"duration\": 53.38, \"timestamps\": [[0, 10.14], [10.14, 10.41], [10.14, 53.38]], \"sentences\": [\"A girl with her back facing the camera turns around and begins solving a rubik's cube.\", \" The female passes the unsolved rubik's cube to a man.\", \" The man begins quickly turning the rubik's cubes until the colors are all the same on each side.\"]}, \"v_6F9C3dIU4kU\": {\"duration\": 64.39, \"timestamps\": [[0.97, 43.78], [13.52, 55.37], [36.7, 64.39]], \"sentences\": [\"A young child is seen sitting in a swing moving back and fourth.\", \" The child smiles to the camera while still moving back and fourth.\", \" He continues to move around in the swing.\"]}, \"v_ycA2gqWhPGk\": {\"duration\": 18.53, \"timestamps\": [[0, 2.78], [2.69, 6.86], [6.76, 12.79], [12.69, 18.53]], \"sentences\": [\"Outside on a very hot day many people are outside.\", \" A little boy is sitting down on a crate and he pours some water out on his hand and washes his face.\", \" Near the market walking  past shops there are many citizens.\", \" They are just going about thier day like normal.\"]}, \"v_ne7uJQ0MUtE\": {\"duration\": 223.42000000000002, \"timestamps\": [[1.12, 222.31], [1.12, 3.35], [14.52, 62.56], [62.56, 213.37]], \"sentences\": [\"A woman demonstrates how to make lemonade from a kitchen using lemons and water.\", \"  A woman is standing in a kitchen next to a bowl of multi colored fruit.\", \"  The woman is then shown standing in a different outfit, in the same spot, in the same kitchen, but this time next to a bowl of lemons.\", \" The woman boils water and juices lemons and then pours the mixture in a bowl which she then transfers to a large glass, angled pouring pitcher.\"]}, \"v_-E2dqOULQgY\": {\"duration\": 68.34, \"timestamps\": [[1.71, 17.08], [17.08, 45.1], [42.71, 68]], \"sentences\": [\"A young man is seen playing drums in front of an audience.\", \" Other people are shown playing guitar while the man plays more drums.\", \" He continues to play drums and smile to the audience.\"]}, \"v_y_bXP4NtAw0\": {\"duration\": 197.07, \"timestamps\": [[0, 2.96], [0, 186.23], [190.17, 197.07]], \"sentences\": [\"A man kneels down and puts a mask on.\", \" He starts welding a piece of metal in front of him.\", \" He stops and lifts his mask up and takes his gloves off.\"]}, \"v_8eUBLvj3veI\": {\"duration\": 186.92, \"timestamps\": [[0, 33.65], [27.1, 91.59], [91.59, 186.92]], \"sentences\": [\"a woman sits in front of a roller set placed on a table.\", \" the woman picks up and holds a few rollers while describing them.\", \" the woman then demonstrates how to use the rollers.\"]}, \"v_CMGjxw3X1dI\": {\"duration\": 38.57, \"timestamps\": [[0, 4.24], [4.82, 38.57], [27.38, 38.57]], \"sentences\": [\"A man steps onto a wind surfing board from shallow water.\", \" The wind surfer rides the board around in the lake.\", \" The windsurfer flips his sail around and heads back into shallow waters.\"]}, \"v_xzQRc682Isc\": {\"duration\": 77.25, \"timestamps\": [[0, 26.65], [27.42, 36.7], [37.47, 77.25], [60.26, 69.14]], \"sentences\": [\"Men stand in a track and two of them raise his arms.\", \" A man stands in a circle spinning a heavy ball to perform hammer throw.\", \" Then, the man throw the ball and walks away.\", \" A man wearing a pink poncho stands on front a camera.\"]}, \"v_DjT4-5H3xDQ\": {\"duration\": 105.53999999999999, \"timestamps\": [[0, 105.54], [0, 7.92], [21.11, 29.55], [30.08, 88.65], [89.18, 94.98], [95.51, 101.31], [101.84, 105.54]], \"sentences\": [\"A chef in a kitchen explains how to hone a knife.\", \"  A still shot is shown as the word honing is on the screen and music plays in the background.\", \" He explains how to hold a honing steel.\", \"  He then explains how to hold the knife and how to move it along with the steel.\", \"  He cleans the knife on a towel and shows the residue left behind.\", \"  He explains the difference between a honing steel and a sharpening steel.\", \"  A black screen appears and fades into a white screen with online culinary schools, websites and a copyright to a company.\"]}, \"v_rbKPBMRj9jY\": {\"duration\": 157.2, \"timestamps\": [[0, 3.93], [3.93, 147.77], [87.25, 97.46], [147.77, 157.2]], \"sentences\": [\"An introduction comes onto the screen for a video about rollerblading.\", \" A man is shown rollerblading and doing several stunt on the street.\", \" A first person view is shown of him as he performs one of his tricks.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_fnf7FbZkL6k\": {\"duration\": 76.58, \"timestamps\": [[0, 74.67], [3.06, 76.58], [0, 76.58]], \"sentences\": [\"man is standing in a green yard painting a wooden fence.\", \" man is holding a pipe and its painting an old fence into a new wooden.\", \" fence is in front of the house and man is painting it.\"]}, \"v_Oc8ACBiwIyE\": {\"duration\": 202.2, \"timestamps\": [[0, 64.7], [50.55, 139.52], [147.61, 199.17]], \"sentences\": [\"A camera pans around a roof and shows a person pushing up tiles.\", \" More tiles are pushed off of the roof as they pull away items.\", \" They finish pulling off the tiles.\"]}, \"v_4x3dgSgXQ38\": {\"duration\": 70.17, \"timestamps\": [[0, 17.54], [14.03, 45.96], [41.05, 70.17]], \"sentences\": [\"a woman comes down a slide with a little girl in her lap.\", \" the two fall to the floor at the end of the slide.\", \" someone assists the two in getting up from the ground.\"]}, \"v_MnZ9L54twws\": {\"duration\": 136.66, \"timestamps\": [[3.42, 12.3], [12.3, 21.18], [21.87, 128.46]], \"sentences\": [\"A person is working out on a machine.\", \" People are sitting in a kayak rowing with oars.\", \" The man continues to work out on a machine.\"]}, \"v_NLdhDlsMnxQ\": {\"duration\": 41.31, \"timestamps\": [[0, 9.09], [9.09, 27.88], [27.88, 41.31]], \"sentences\": [\"A a white dog without the use of its hind legs is outside with its owner on the porch.\", \" They begin to walk down the driveway as the camera follows them.\", \" The dog stops and uses the bathroom by a bush before continuing down the driveway.\"]}, \"v_gFv3PrFkeL0\": {\"duration\": 67.71, \"timestamps\": [[0, 12.53], [10.83, 44.69], [43.33, 66.02]], \"sentences\": [\"A cartoon is shown of people dancing and leads into a man walking into frame.\", \" He puts on a shirt while another man walks in and out of frame.\", \" He hits the other man with a shirt and they laugh with one another.\"]}, \"v_iMwLP3y0VcQ\": {\"duration\": 42.26, \"timestamps\": [[0, 5.28], [5.71, 22.19], [22.61, 42.26]], \"sentences\": [\"A juvenile hold a long paper tube  on front his face.\", \" Then, the juvenile, smoke from a tube and then exhale the smoke through the tube.\", \" This time the juvenile smokes and exhales the smoke through the tube doing smoke rings.\"]}, \"v_p8UOE62POAE\": {\"duration\": 18.95, \"timestamps\": [[0, 6.06], [5.97, 10.33], [9, 18.95]], \"sentences\": [\"A man ropes a white lamb.\", \" He throws it to the ground and ties its back legs.\", \" Someone rides up next to him on a horse holding a red flag.\"]}, \"v_CPnLc0MtBYc\": {\"duration\": 15.0, \"timestamps\": [[0, 8.55], [8.03, 12.15], [11.85, 15]], \"sentences\": [\"The young man is standing on the track field.\", \" The young man run to the pole.\", \" The young man jumped over the pole and landed on the red mat.\"]}, \"v_a68fUj833qg\": {\"duration\": 103.93, \"timestamps\": [[0, 20.27], [20.27, 67.04], [67.04, 103.93]], \"sentences\": [\"different drinks and liquors are shown on top of a table.\", \" man is standing behind a bar preparing a cocktail, mixing liquors and squeezing lemons and mix them in the shaker.\", \" he man serve the drink in a martini glass.\"]}, \"v_ZF4oT2P0a54\": {\"duration\": 106.02000000000001, \"timestamps\": [[4.24, 9.54], [10.07, 22.79], [23.86, 101.78]], \"sentences\": [\"A surfer walks over sandbags down a sandy hillside.\", \" The surfer falls dropping into waves and is caught up in the white wash.\", \" The surfer rides waves in the ocean ducking into the hollow wave faces.\"]}, \"v_4fEMDQnD4Xg\": {\"duration\": 55.71, \"timestamps\": [[0, 4.18], [6.13, 20.33], [23.95, 55.71]], \"sentences\": [\"A large table display is set up outdoors.\", \" A man is seated behind the table with a group.\", \" They are all playing bongo drums.\"]}, \"v_5n8wY8hwy3Y\": {\"duration\": 175.32999999999998, \"timestamps\": [[0, 20.16], [41.2, 50.85], [104.32, 118.35]], \"sentences\": [\"Man pushes a white toy car.\", \"  A toy dump truck is under the pump.\", \"  A blue truck dumps black items into the form.\"]}, \"v_eS1r2Qi0qUM\": {\"duration\": 61.49, \"timestamps\": [[0, 11.38], [11.38, 39.35], [39.66, 60.56]], \"sentences\": [\"Two couples play tennis in a competition on front people.\", \" The players Players with yellow t-shirt win the set, they throw the ball that the red team could not return.\", \" The game is replayed again.\"]}, \"v_Yi-0wjSu0E0\": {\"duration\": 27.05, \"timestamps\": [[0, 5.14], [1.89, 22.18], [21.24, 27.05]], \"sentences\": [\"The person is standing with a blue floor map.\", \" The person mopped the wooden floor.\", \" The person removed the mop from its body.\"]}, \"v_Zr8cz8QrBp4\": {\"duration\": 84.5, \"timestamps\": [[0, 12.67], [16.48, 55.77], [63.8, 84.5]], \"sentences\": [\"A man is standing in a pose outside a building.\", \" He begins break dancing for the camera.\", \" He spins and flips over and over.\"]}, \"v_BSg989GP5ro\": {\"duration\": 235.36, \"timestamps\": [[0, 80.02], [62.37, 172.99], [154.16, 221.24]], \"sentences\": [\"A young girl is seen speaking to the camera and holding up a bottle.\", \" She holds up several mote items and mixes ingredients together in a cup.\", \" She stirs them around and ends by showing off her drink.\"]}, \"v_MOG4eTo4Q4Y\": {\"duration\": 10.73, \"timestamps\": [[0, 1.98], [2.57, 7.83], [8.21, 10.73]], \"sentences\": [\"Lots of kids and adults are inside a trampoline room.\", \" They are throwing balls at something off screen.\", \" They continue bouncing as they throw the balls.\"]}, \"v_7DJDUzdw_I4\": {\"duration\": 49.13, \"timestamps\": [[0, 3.93], [3.93, 43.24], [43.24, 49.13]], \"sentences\": [\"A male gymnast wearing a red suit is standing in front of tall parallel bars, raises his arms and jumps to pull himself up onto the parallel bars.\", \"The man swings himself into a handstand and begins his very elaborate routine that includes a lot of swinging, handstands, spinning and etcetera.\", \" The man finishes his routine strong with multiple flips in the air, lands on his feet, raises his two arms on the sides, claps and then walks away as two men are walking towards him.\"]}, \"v_Upd7zpT6tuc\": {\"duration\": 201.48, \"timestamps\": [[0, 201.48], [15.11, 30.22], [25.19, 42.31], [41.3, 201.48]], \"sentences\": [\"Several athletes are in a field.\", \" One kicks a ball in the air.\", \" She runs toward a base.\", \" She then runs around to the home plate.\"]}, \"v_yFPxSn69pcc\": {\"duration\": 93.81, \"timestamps\": [[0.47, 23.45], [22.05, 66.6], [57.22, 89.12]], \"sentences\": [\"A man walks around a field that leads into people playing a game.\", \" People sit around on a lawn speaking to one another as the men continue to play.\", \" Audience members continue to watch the game go on.\"]}, \"v_YNQphOFqDOA\": {\"duration\": 167.07, \"timestamps\": [[0, 11.69], [12.53, 50.12], [57.64, 167.07]], \"sentences\": [\"A man is seen standing inside an empty room.\", \" He looks at himself in the mirror, then engages in a fight.\", \" The preview is for a movie.\"]}, \"v_BSlVLi81VGM\": {\"duration\": 76.63, \"timestamps\": [[0, 14.56], [16.09, 50.19], [48.27, 76.24]], \"sentences\": [\"A person is seen bending down on the floor with a man sitting on a couch.\", \" The woman is seen using a razor on the man's leg.\", \" She continues to shave his legs as others watch around him.\"]}, \"v_Zt9nALIsHPc\": {\"duration\": 46.49, \"timestamps\": [[0, 19.52], [19.52, 32.08], [32.08, 41.37], [41.61, 44.39]], \"sentences\": [\"A smiling man posing while the camera flashes in front of him.\", \" He catches a harmonica and starts to play it for a while.\", \" He poses for the pictures one more time slightly stepping forward.\", \" Then the video emphasize  the tournament of roses logo.\"]}, \"v_3TsNntqwbSQ\": {\"duration\": 43.42, \"timestamps\": [[3.26, 4.56], [4.34, 41.9], [10.42, 12.16]], \"sentences\": [\"People are riding camels in the sand.\", \" Large pyramids are shown in front of them.\", \" A woman on the camel is holding a camera.\"]}, \"v_DRSH-_Ye9eE\": {\"duration\": 40.64, \"timestamps\": [[0, 11.99], [11.99, 22.96], [22.96, 33.12], [33.12, 40.64]], \"sentences\": [\"A large group of people including teens and adults are on a large grassy field surrounded by a lot of trees and players are running into place on the field.\", \"Two larger teens quickly start running to the right, other players start running to them and one of the boys hit the boy so hard with his stick that the boy falls.\", \"The boy quickly gets up and the boy who knocked the other boy down runs to the ball and picks up with his net at the end of the stick and starts running towards the goal while the referee runs with him.\", \" When the boy gets to the goal area he tosses the ball to another player and that player attempts to throw it into the goal and the players continue to look for the ball.\"]}, \"v_a_c-FIC_W4A\": {\"duration\": 59.98, \"timestamps\": [[0, 5.1], [8.1, 20.39], [26.99, 59.98]], \"sentences\": [\"a can of black shoe polish is shown.\", \" A man is using a cloth to polish a black shoe.\", \" He talks to the camera as he works with the shoes, getting them shiny.\"]}, \"v_Cu-p0FZOqi8\": {\"duration\": 137.07, \"timestamps\": [[0, 36.32], [25.36, 60.31], [45.92, 97.32], [84.98, 137.07]], \"sentences\": [\"a man stands on the side of a pool.\", \" the man dives backwards into the pool.\", \" the same man then stands on top of a diving board.\", \" the man jumps backwards off the diving board into the pool.\"]}, \"v_sVma83g_wmg\": {\"duration\": 222.12, \"timestamps\": [[0, 63.31], [57.75, 142.16], [144.38, 212.13]], \"sentences\": [\"A woman is seen smiling to the camera and begins parting her hair.\", \" She then braids her hair down along her face.\", \" She shows off her hair in the while smiling and blowing a kiss.\"]}, \"v_sgFp3HCSgCo\": {\"duration\": 216.2, \"timestamps\": [[0, 51.89], [49.73, 138.37], [150.26, 210.8]], \"sentences\": [\"News hosts are seen speaking to the camera and leads into a woman interviewing a man.\", \" The man then demonstrates how to curl with the woman by pushing a puck on the ice.\", \" They continue speaking while holding sticks and the woman continues practicing as the hosts speak.\"]}, \"v_UNbC2c1C824\": {\"duration\": 90.72, \"timestamps\": [[0, 32.66], [27.22, 66.68], [63.05, 87.55]], \"sentences\": [\"A woman is seen holding a pose on a stage.\", \" She begins dancing around with batons while smiling to the audience.\", \" She continues dancing and smiling to the camera and holds a pose in the end.\"]}, \"v_RrVsNvO6Yd4\": {\"duration\": 116.5, \"timestamps\": [[0, 36.11], [27.96, 81.55], [65.82, 109.51]], \"sentences\": [\"A group of men are seen standing around an begin break dancing.\", \" People watch on the side as the men take turns dancing around.\", \" The men continue to walk in and out of the circle and dance.\"]}, \"v_YySTmiavdMc\": {\"duration\": 36.92, \"timestamps\": [[0, 36.92], [0.92, 36.92], [2.22, 36.92]], \"sentences\": [\"A large tractor is going through a field.\", \" It is plowing the weeds of the field.\", \" Large trees are shown in the background.\"]}, \"v_ym_OhvcJ--w\": {\"duration\": 76.53, \"timestamps\": [[0, 20.28], [18.75, 53.57], [47.83, 73.47]], \"sentences\": [\"A camera pans around a large snowy mountain with people walking around.\", \" A man speaks to the camera and shows people skiing and climbing inside a ice cave.\", \" At the top people are seen relaxing with one another.\"]}, \"v_UhgVO1QaP2s\": {\"duration\": 166.67000000000002, \"timestamps\": [[0, 55.84], [55.84, 86.67], [86.67, 98.34], [98.34, 113.34], [113.34, 166.67]], \"sentences\": [\"kids are practicing sumo wrestling in a gym room and talking to the camera about their experience.\", \" men are in an office, shake their hands and are talking about their sumo experience.\", \" girls are doing gymnastics in a stage.\", \" men are doing jumps on a pole in stage.\", \" a lot of people are walking on the sidewalk and again in stage men are doing jumps.\"]}, \"v_aDWrPrNFdR0\": {\"duration\": 111.99000000000001, \"timestamps\": [[0, 24.08], [0, 19.6], [24.08, 28], [21.28, 111.99], [90.15, 111.99]], \"sentences\": [\"men and women are walking in sidewalk and enters to a restaurant.\", \" people in restaurant are sitting at tables talking and eating.\", \" women walks to a a barn.\", \" people start playing beerpong in a party and a lot of people are in the background.\", \"the man put a bil on a waitres jean and she walks to one o the man and desconcentrate him.\"]}, \"v_GKM-K8jbfyE\": {\"duration\": 119.77000000000001, \"timestamps\": [[0, 119.77], [36.53, 119.77], [76.05, 119.77]], \"sentences\": [\"A person is wiping the glass using a tall wiper.\", \" The person wipe the next glass window.\", \" The person wipe the next smaller glass window with the wiper.\"]}, \"v_BtYKJOmw-aU\": {\"duration\": 112.66, \"timestamps\": [[0, 3.94], [0, 112.66], [33.24, 59.71], [96.33, 112.66]], \"sentences\": [\"I boy in a winter hat has a toothbrush in his mouth and talks a bit.\", \" He is brushing his teeth with a green toothbrush and toothpaste.\", \" He talks a little while in the middle of brushing.\", \" Then he shows his teeth after having brushed for awhile and continues brushing again.\"]}, \"v_gt2Sp_iG2hU\": {\"duration\": 214.6, \"timestamps\": [[0, 43.99], [51.5, 118.03], [121.25, 214.6]], \"sentences\": [\"A man is seated talking on a stage.\", \" He is showing a set of drums in front of him.\", \" He demonstrates how to play the drums.\"]}, \"v_Pv6oIFroaCQ\": {\"duration\": 173.71, \"timestamps\": [[0, 8.69], [19.98, 57.32], [61.67, 65.14], [70.35, 74.69], [75.56, 126.81], [130.28, 138.97], [139.84, 151.13]], \"sentences\": [\"A woman is wearing a purple apron.\", \" She mixes ingredients together into a bowl and stirs it together.\", \" She balls it up and puts it on a cookie sheet.\", \" She puts the cookie sheet into the oven.\", \" She stands next to a brown dog and talks.\", \" She takes the cookies out of the oven and takes a bite.\", \" She feeds a bite of the cookie to the dog next to her.\"]}, \"v_bZ4r3Y_qceE\": {\"duration\": 36.85, \"timestamps\": [[0, 17.14], [11.24, 25.61], [24.51, 34.82]], \"sentences\": [\"An athletic woman is seen standing before a track and running into a pit.\", \" She gets up and walks back while others watch her.\", \" She jumps down the track once again.\"]}, \"v_g5CYoFJFkPk\": {\"duration\": 105.68, \"timestamps\": [[0, 82.43], [82.43, 85.07], [85.6, 105.68]], \"sentences\": [\"A young woman dressed in green performs with her baton in front of a judge.\", \" She bounces her baton on the floor and catches it.\", \"  She finishes her routine.\"]}, \"v_DrQgYA5_8VA\": {\"duration\": 29.68, \"timestamps\": [[0, 2.82], [2.67, 7.42], [7.42, 13.35], [13.35, 29.68]], \"sentences\": [\"Two men are standing behind a boat in a river.\", \" The boat begins to move slowly.\", \" The boat starts to kick up water in it's wake.\", \" The camera changes angles and we see one man water skiing behind the boat.\"]}, \"v_l_T3zfRQhic\": {\"duration\": 24.01, \"timestamps\": [[0, 2.16], [3.96, 14.53], [15.73, 24.01]], \"sentences\": [\"A man is shown in his back yard.\", \" He is using a chain saw on a large hedge.\", \" He uses it to trim the leaves and shape the hedges.\"]}, \"v_CHMk7efu1ro\": {\"duration\": 76.37, \"timestamps\": [[0, 8.4], [12.6, 43.91], [46.59, 76.37]], \"sentences\": [\"A man is shown inside a gym.\", \" He is using exercise equipment available to him.\", \" He rides the rowing machine back and forth as he shows the different moves possible.\"]}, \"v_gnmtsqvTO_c\": {\"duration\": 178.7, \"timestamps\": [[0, 178.7], [1.79, 17.87], [94.71, 140.28], [148.32, 178.7]], \"sentences\": [\"A doctor talks to the camera.\", \" Some patients are shown in the office.\", \" He washes his hands in a sink.\", \" Some text then appears on the screen.\"]}, \"v_s2VpBgSWIPg\": {\"duration\": 203.29, \"timestamps\": [[0, 43.71], [54.89, 116.89], [54.89, 203.29]], \"sentences\": [\"A group of people are standing outside a building.\", \" They take turns jumping across a hopscotch game on the concrete.\", \" A man jumps, then so does a woman.\"]}, \"v_txyXUXWybt4\": {\"duration\": 85.89, \"timestamps\": [[0.43, 18.47], [17.18, 57.55], [52.82, 82.88]], \"sentences\": [\"A man is seen stepping on a tool and spinning a blade.\", \" He holds up a knife and continues to sharpen the blade.\", \" he runs the knife all along the blade.\"]}, \"v_fE3j74_s4KY\": {\"duration\": 226.26, \"timestamps\": [[0, 66.75], [58.83, 152.72], [132.36, 217.21]], \"sentences\": [\"A man is seen kicking a soccer ball into a goal followed by another man doing the same.\", \" Several more people step up to kick a goal with the goalie standing in front.\", \" The men continue to kick balls while walking in and out frame.\"]}, \"v_CQ0r8ldAKl8\": {\"duration\": 229.86, \"timestamps\": [[0, 31.03], [35.63, 152.85], [160.9, 229.86]], \"sentences\": [\"A woman is talking on the stage with a male interviewer.\", \" The woman is the former first lady of the united states, and she talks for some time.\", \" She then jumps rope with the show's host.\"]}, \"v_4IC1_C_dtvk\": {\"duration\": 62.56, \"timestamps\": [[0, 14.39], [10.63, 41.6], [24.08, 61.62]], \"sentences\": [\"A person is seen playing the drums while others watch on the side.\", \" The men laugh with one another as the man continues to play.\", \" He plays the drum over and over while the others watch in amazement.\"]}, \"v_zhH7wxXrGSY\": {\"duration\": 176.4, \"timestamps\": [[0, 142.89], [14.99, 18.52], [24.7, 30.87], [142, 160.53], [160.53, 170.23]], \"sentences\": [\"An individual uses various implements to paint on a wooden block.\", \" The individual mixes paints on a surface.\", \" The individual mixes more paints on the surface.\", \" The completed painting is shown.\", \" A time lapse video of the painting process is shown.\"]}, \"v_IeTMYNbQSp0\": {\"duration\": 19.13, \"timestamps\": [[0.29, 1.44], [1.24, 10.62], [8.04, 18.27]], \"sentences\": [\"A girl is seen bending down before a car.\", \" She begins scrubbing down the car with a rag.\", \" She continues washing and stands up.\"]}, \"v_WEjMCo8OfjE\": {\"duration\": 169.55, \"timestamps\": [[0, 41.54], [37.3, 123.77], [113.6, 167.86]], \"sentences\": [\"A person is seen walking in the snow carrying skis and leads into people skiing.\", \" People are shown in several clips jumping off sides and landing onto snow.\", \" The men look around and speak to one another as well as continue to ride around on skis.\"]}, \"v_xiICsWY0xOk\": {\"duration\": 111.97, \"timestamps\": [[0, 3.36], [3.36, 20.15], [20.15, 38.07], [38.63, 49.83], [49.83, 54.3], [54.86, 75.58], [75.58, 87.89], [87.89, 111.97]], \"sentences\": [\"A bright yellow background with the title \\\"How to make Honey Ginger Lemonade\\\"  appears for a few seconds.\", \" The camera briefly shows four full glasses of lemonade and cuts to a person pointing out the various ingredients needed to make the beverage.\", \" Text then pops up saying \\\"There are 3 ways to peel ginger skin\\\" which cuts to the person showing the various ways to peel ginger.\", \" Next the person is seen cutting a lemon in half and then squeezing the juice through a strainer into a glass.\", \" Afterwards the person pours honey into a spoon and into the glass.\", \" She then puts her hands on two of the glasses and the camera cuts to the woman pouring water, as well as the ginger slices into a pot and begins to boil it.\", \" The camera then cuts to her pouring the contents of the pot through a strainer into the four glasses and putting lemon slices in each one.\", \" The camera then shows the finished product and shows various credits.\"]}, \"v_gqK_jApRT5E\": {\"duration\": 176.87, \"timestamps\": [[0, 42.45], [39.8, 119.39], [114.96, 173.33]], \"sentences\": [\"A large group of people are seen standing around and dipping brushes into paint.\", \" People are then seen painting a fence all around a yard.\", \" The people continue painting and helping one another and speaking with each other.\"]}, \"v_OBb4013eIc8\": {\"duration\": 163.17000000000002, \"timestamps\": [[0, 17.13], [19.58, 76.69], [100.35, 163.17]], \"sentences\": [\"A couple of men are riding inside a car.\", \" They are talking as they drive down the road.\", \" They then get out and ride a surfboard on the water.\"]}, \"v_okvQJRTfGHk\": {\"duration\": 57.89, \"timestamps\": [[0, 46.02], [0, 19.68], [19.68, 46.02]], \"sentences\": [\"This man is canoeing in his red canoe and he is using the wooden paddle to get through water.\", \" The man continues to lean over looking like he could be ready to land in the water, but he stays in the canoe and keeps moving.\", \" Little bubbles appear in the water and he sits still for a while, he even tells viewers some things.\"]}, \"v_nS9PgniAQAE\": {\"duration\": 161.68, \"timestamps\": [[0, 15.36], [14.55, 131.77], [37.19, 131.77], [63.86, 67.1], [151.98, 161.68]], \"sentences\": [\"A small white dog is in a black cage.\", \" It gets tied up to a table.\", \" A woman starts shaving the dogs hair.\", \" She brushes the hair of the dog.\", \" The dog is playing on the floor with a ball.\"]}, \"v_y7i-jRmrwnI\": {\"duration\": 82.08, \"timestamps\": [[0, 82.08], [0, 35.71], [35.71, 40.63], [41.86, 82.08]], \"sentences\": [\"A woman is standing at a sink.\", \" She is washing dishes in the sink.\", \" She picks up a wine glass and takes a drink.\", \" She continues to do the dishes in the sink.\"]}, \"v_J0-OVQ-JB5g\": {\"duration\": 203.2, \"timestamps\": [[0, 38.61], [36.58, 135.13], [117.85, 201.17]], \"sentences\": [\"A woman is seen standing next to a dog who is licking her.\", \" She then begins grooming the dog all around.\", \" She continuously pets the dog while grooming his fur and letting him lick her face.\"]}, \"v_2oNsMva04MM\": {\"duration\": 199.82999999999998, \"timestamps\": [[0, 58.95], [42.96, 86.93], [80.93, 152.87], [108.91, 199.83]], \"sentences\": [\"The man in blue shirt is talking to the camera.\", \" The man pour a paint on the white surface then use the paintbrush to mix the paint.\", \" The paint is brushed on a canvas, the person started sketching on the canvas and painted brown color.\", \" The man mixes the colors and painted in the canvas.\"]}, \"v_GGv0sCOf_tM\": {\"duration\": 17.42, \"timestamps\": [[0, 17.42], [0, 1.22], [3.05, 3.74], [6.88, 17.42]], \"sentences\": [\"A lady is outside wringing a cloth on a bench.\", \" The lady places the pink cloth down on the bench.\", \" The lady removes a green hose from the brown bench.\", \" The lady press the cloth down on the bench and water drains.\"]}, \"v_1U8y7e22SQg\": {\"duration\": 141.06, \"timestamps\": [[0, 22.57], [23.28, 108.62], [86.75, 137.54]], \"sentences\": [\"A woman is seen speaking to the camera while holing up a mop.\", \" The woman then begins dancing around the floor while dancing with the mop.\", \" She continues to spin and dance for the camera while laughing and smiling.\"]}, \"v_pzkwJYJol7o\": {\"duration\": 159.5, \"timestamps\": [[0, 15.95], [27.11, 65.39], [82.94, 159.5]], \"sentences\": [\"Several people are rowing in the ocean water.\", \" They are engaged in a race.\", \" They try to win by paddling as fast as possible.\"]}, \"v_5dXi-tAGqbs\": {\"duration\": 236.94, \"timestamps\": [[0, 17.77], [41.46, 159.93], [186, 236.94]], \"sentences\": [\"A group of women are dancing inside a gym.\", \" They are performing an aerobic exercise called zumba.\", \" They continue doing the moves in unison.\"]}, \"v_97LW-ivu01A\": {\"duration\": 159.2, \"timestamps\": [[0, 19.9], [19.9, 44.58], [44.58, 97.11], [97.11, 159.2]], \"sentences\": [\"man is kayaking in a calm river.\", \" man is standing in te seasore talking to the camera and showing the kayak.\", \" man is getting in the sea and sits in a kayak.\", \" the man stands and get out the river and walks to the land.\"]}, \"v_w87EDMJo5NM\": {\"duration\": 88.35, \"timestamps\": [[0, 9.72], [10.6, 65.82], [68.03, 88.35]], \"sentences\": [\"a couple of people are in a room together.\", \" a woman uses wax on a man's legs.\", \" He is drinking a beer while she waxes the hair off his legs.\"]}, \"v_HkzMA1jrm00\": {\"duration\": 72.99, \"timestamps\": [[0, 1.46], [1.46, 4.74], [4.74, 63.14], [63.14, 72.99]], \"sentences\": [\"A man dressed in a red jacket and a woman wearing a blue dress are walking in a casino.\", \"A man wearing a white suite, black bowtie, and a black eye patch is sitting at a casino table and handling his poker chips.\", \" The man wearing the red jacket talks to the man wearing the eye patch, he sits down and they begin a game at the table while other people look on as they play and the dealer talks with them.\", \"A card is flipped, a king and a jack are revealed, and the dealer grabs a stack of chips from a player and the players continue to talk.\"]}, \"v_xKePBw5XZHs\": {\"duration\": 210.93, \"timestamps\": [[0, 67.5], [58.01, 150.82], [141.32, 206.71]], \"sentences\": [\"A woman is shown speaking to the camera while showing off her nails and nail polish.\", \" She begins painting her nails using various colors presented to the camera.\", \" She continues painting her nails and waving them to the camera.\"]}, \"v_9svdYGBSMvM\": {\"duration\": 62.37, \"timestamps\": [[0.94, 15.9], [15.59, 41.16], [45.22, 61.12]], \"sentences\": [\"A man is seen sitting before a table carving a pumpkin.\", \" The man digs into the details on the pumpkin while the camera moves around.\", \" He continues to cut a face into the pumpkin.\"]}, \"v_woUdHiRWKMg\": {\"duration\": 180.63, \"timestamps\": [[0, 28], [28, 48.77], [48.77, 95.73], [95.73, 142.7], [142.7, 180.63]], \"sentences\": [\"A red car is shown and then the interior with a man lifting the emergency brake, then he is shown placing a rock under the tire and flipping through the car manual and the camera zooms in on the trunk drawing.\", \" Next the man opens the trunk and lifts the base of the interior to remove the spare tire and the jack.\", \" The man puts the jack together and proceeds to jack up the car.\", \" He then removes the lug nuts from the old tire, and removes it from the car, replacing it with the spare tire.\", \" He lowers the jack and places the old tire into the trunk and shuts the trunk.\"]}, \"v_kW4ajodPtWU\": {\"duration\": 194.58, \"timestamps\": [[0.97, 193.61], [0.97, 8.76], [9.73, 194.58]], \"sentences\": [\"Several boys in an indoor gymnastic gym performs extensive and complicated tumbles on bouncy floors  in front of coaches and fellow gymnast and students.\", \"  A boy performs a tumbler routine with high kicks and tumbles.\", \"  A series of boys are then displayed exhibiting complicated turns and tumbles, sometimes alone and sometimes in unison forwards and backwards on gym mats and bounce floors.\"]}, \"v_nDo0nfs9Ee4\": {\"duration\": 17.32, \"timestamps\": [[0, 2.17], [1.65, 8.66], [8.92, 17.32]], \"sentences\": [\"a man and a dog are standing in a shower stall.\", \" the man bends down and rubs shampoo on the dog.\", \" the dog stands and licks himself.\"]}, \"v_g_AwwSsBj0s\": {\"duration\": 232.15, \"timestamps\": [[0, 29.02], [45.27, 181.08], [183.4, 232.15]], \"sentences\": [\"A man is walking down the hall in a building.\", \" Several people are moving around in the floor.\", \" Some people are roller skating past each other.\"]}, \"v__4LZrf1GL1s\": {\"duration\": 37.01, \"timestamps\": [[0.56, 9.07], [8.88, 24.43], [23.5, 35.53]], \"sentences\": [\"People are seen walking around the desert and speaking to the camera.\", \" Several clips are shown of people drinking shots and walking around an area.\", \" The people are then seen running around in a race.\"]}, \"v_dc8pLGl9Ccc\": {\"duration\": 208.38, \"timestamps\": [[0, 26.05], [27.09, 134.4], [105.23, 202.12]], \"sentences\": [\"Three men are seen standing in front of the camera with one speaking.\", \" They speak to various girls and play a game with them in pubic places.\", \" When they win they get a kiss and when they lose they get slapped.\"]}, \"v_88TLZbT_KkE\": {\"duration\": 126.36, \"timestamps\": [[0, 30.96], [26.54, 83.4], [68.87, 125.1]], \"sentences\": [\"Two men are seen kneeling on the ground laying down tiles.\", \" More men are shown working with another man speaking to the camera.\", \" The men continue working and laying down tiles on plaster.\"]}, \"v_00KMCm2oGhk\": {\"duration\": 31.56, \"timestamps\": [[0, 17.99], [17.99, 30.61], [25.4, 27.45], [27.61, 31.56], [30.14, 31.56]], \"sentences\": [\"Ladies are walking down the road waving flags.\", \" Women are playing keyboards and drums as they march.\", \" A guy gets off a short ladder.\", \" The guy carries the ladder as he begins to leave.\", \" People with raincoats and umbrellas start to cross the street at the crosswalk.\"]}, \"v_vLL-voBPWM4\": {\"duration\": 82.18, \"timestamps\": [[0, 14.79], [16.44, 55.88], [59.17, 82.18]], \"sentences\": [\"A truck drives past a sign on the way to the river.\", \" Several kayakers go down a path into the harsh waters.\", \" They lose their balance and flip in the water.\"]}, \"v_atw5LkvnAyo\": {\"duration\": 146.59, \"timestamps\": [[0, 21.26], [30.05, 119.47], [123.87, 146.59]], \"sentences\": [\"A man is hanging a large strip of wallpaper.\", \" He rolls up the wallpaper, then reapplies.\", \" He smoothes the paper against the wall as he goes.\"]}, \"v_6rfFmqz6s8M\": {\"duration\": 62.16, \"timestamps\": [[1.86, 16.78], [16.16, 21.45], [21.45, 51.28], [52.53, 58.12]], \"sentences\": [\"Several individuals are shown assembling some sort of machine.\", \" The machine is shown moving on its own.\", \" One of the individuals plays table tennis with the machine.\", \" A small boy plays table tennis with the machine as others watch on.\"]}, \"v_msiX-xky6Ac\": {\"duration\": 191.94, \"timestamps\": [[0, 28.79], [33.59, 112.28], [121.88, 191.94]], \"sentences\": [\"A group of children are playing in a yard.\", \" They have drawn hopscotch on the ground with chalk.\", \" They take turns jumping across and explaining how the game is played.\"]}, \"v_Jsx38_s3Mnc\": {\"duration\": 194.3, \"timestamps\": [[0, 53.43], [48.57, 130.18], [117.55, 186.52]], \"sentences\": [\"A man is seen walking into frame in front of various objects laid out on a table.\", \" The man then begins mixing the items and polishing a pair of shoes.\", \" The man rubs the shoes all down and ends by tying them and presenting them to the camera.\"]}, \"v_ZKkjR2VTb7Y\": {\"duration\": 36.9, \"timestamps\": [[0, 36.9], [3.69, 9.22], [9.22, 31.18], [31.73, 36.9]], \"sentences\": [\"A section of grasses and yellow flowers with clover is seen.\", \" A man comes and cuts a section of the grass with a hand tool.\", \" He cuts a few more sections.\", \" Then he holds up the grass he has cut to the camera and walks away.\"]}, \"v_cxDPCkefl1A\": {\"duration\": 73.85, \"timestamps\": [[0, 9.97], [12.92, 46.9], [49.11, 73.85]], \"sentences\": [\"Several cake pops are shown on a display.\", \" A woman and girl are shown making the cake pops in a kitchen.\", \" They bake them, then frost and decorate.\"]}, \"v_T60xwc6nKJI\": {\"duration\": 132.26, \"timestamps\": [[0, 11.24], [11.24, 46.95], [46.95, 124.99], [124.99, 132.26]], \"sentences\": [\"An individual standing next to a small table with 2 items on top.\", \" The person is waving their hands over the two items as the camera zooms in.\", \" The next scene shows the top of the table and liquid being poured over the top after a few seconds a person begins wiping the solution into the table in small circular motions.\", \" The camera then cuts to black.\"]}, \"v_kMRQmijCc5Y\": {\"duration\": 108.72, \"timestamps\": [[0, 16.31], [19.03, 71.75], [85.34, 108.72]], \"sentences\": [\"A woman is talking in a room full of balloons.\", \" She is then shown on an elliptical.\", \" She runs on it intersperced with talking on the camera.\"]}, \"v_W_ZNdQLFmAA\": {\"duration\": 58.33, \"timestamps\": [[9.33, 42], [28.29, 28.58], [43.46, 43.75], [44.04, 44.33], [46.08, 50.45]], \"sentences\": [\"A man is plastering a ceiling.\", \" The man turns away from the ceiling and looks down.\", \" A male hands over the metal plaster holder to a guy on the floor.\", \" The guy hands the male another metal plaster holder.\", \" The guy puts more plastering clay on the metal.\"]}, \"v_IsHM24qWmpI\": {\"duration\": 208.03, \"timestamps\": [[0, 30.16], [33.28, 68.65], [67.61, 118.58], [104.01, 183.06]], \"sentences\": [\"A piece of metal is laid out.\", \" A bike wheel is removed.\", \" The metal rim is replaced.\", \" The bike wheel is put back into place.\"]}, \"v_u9aFICSj7zw\": {\"duration\": 58.31, \"timestamps\": [[0, 58.31], [0, 48.69], [48.69, 58.31]], \"sentences\": [\"A boy is ice fishing on a frozen lake in the winter time.\", \" He pulls up a fish as his parents watch him pull it in.\", \" He finally gets the fish up onto the ice and he sees that it is a really big catch.\"]}, \"v_cbR34GknrBs\": {\"duration\": 16.53, \"timestamps\": [[0, 1.57], [2.4, 12.81], [12.57, 16.53]], \"sentences\": [\"People are running around a track.\", \" A woman runs down the track.\", \" She jumps into a pile of sand.\"]}, \"v_cY541XSdz50\": {\"duration\": 73.33, \"timestamps\": [[2.2, 61.23], [2.2, 34.83], [35.2, 61.6]], \"sentences\": [\" A group of people strap a man into bungee jumping gear before the man jumps, backwards, into the air and falls a great distance below a raised bridge and bounces at the end of a bungee rope.\", \"  A man is being strapped into a harness and leg straps as he hangs onto the outside of railing that hangs high in the air above a body of water.\", \"  The man lets go of the railing and falls below  just above the body of water and begins to bounce at the end of the bungee rope.\"]}, \"v_9JMbahMzBjk\": {\"duration\": 52.62, \"timestamps\": [[0, 7.37], [8.68, 30.52], [39.46, 52.62]], \"sentences\": [\"A group of kids are dancing around a living room.\", \" Their father lights the christmas tree while his daughter pulls his shirt.\", \" He continues decorating the tree in front of them.\"]}, \"v_w3N0Pyz2-m0\": {\"duration\": 144.2, \"timestamps\": [[3.6, 12.26], [12.26, 116.08], [116.08, 142.03]], \"sentences\": [\"A woman plays the violin in various outdoors settings.\", \" The woman talks to someone off camera while seated indoors, interspersed with dramatic cuts of the woman playing the violin in outdoor environments.\", \" A black screen with a logo and two other videos playing are shown.\"]}, \"v_h3thb-S-3L8\": {\"duration\": 168.23, \"timestamps\": [[0, 6.73], [7.57, 159.82], [160.66, 168.23]], \"sentences\": [\"\\\"Dream School's Guide to Perfect Pasta with Jamie Oliver and Ben Chapman\\\" appears on screen.\", \" The two men speak to a group of young people as they prepare a homemade pasta dish.\", \" The \\\"Channel 4 Dreamschool\\\" logo appears along with website address.\"]}, \"v_oNo8ZpqE_6k\": {\"duration\": 90.7, \"timestamps\": [[4.53, 13.6], [13.6, 69.84], [56.69, 63.49], [69.38, 73.01], [73.47, 77.09], [78.91, 90.7]], \"sentences\": [\"An audience in a stadium watches as two lacrosse teams set up.\", \" Scenes from a lacrosse game between the teams are shown.\", \" A closeup of the scoreboard display is shown.\", \" One of the team wins and celebrates.\", \" A man holds a trophy up in front of a crowd.\", \" A man talks to the camera in close up.\"]}, \"v_MHhMO3yhcfU\": {\"duration\": 140.01, \"timestamps\": [[0, 63], [61.6, 71.4], [72.8, 140.01]], \"sentences\": [\"A bull is chasing after men in a pen.\", \" A bull knocks a man down onto the ground.\", \" The bull continues to chase people in the pen.\"]}, \"v_mE02JHvCEUM\": {\"duration\": 198.55, \"timestamps\": [[0, 56.59], [51.62, 135.02], [138.99, 198.55]], \"sentences\": [\"A man is seen playing a piano and singing in a public place.\", \" People stand around him and watch him play on the side.\", \" A man hands out pamphlets while the man continues to play piano and others watch.\"]}, \"v_U7vWTmVzWSc\": {\"duration\": 197.09, \"timestamps\": [[0, 32.52], [33.51, 110.37], [132.05, 197.09]], \"sentences\": [\"A man is riding a surf board in the ocean water.\", \" He stays balanced as he goes sideways over a wave.\", \" He avoids other surfers as he continues on his board.\"]}, \"v_aQulBdlcGNU\": {\"duration\": 191.12, \"timestamps\": [[0, 61.16], [61.16, 100.34], [100.34, 191.12]], \"sentences\": [\"woman is laying on the floor doing abs.\", \" the woman is doing static bike laying on the floor.\", \" the woman is next to a waterfall doing abs.\"]}, \"v_MVxXCu4zxSM\": {\"duration\": 87.89, \"timestamps\": [[0, 19.77], [18.46, 58.01], [53.61, 84.37]], \"sentences\": [\"A man is shown using a razor all along his face.\", \" He shaves his facial hair while still looking to the camera.\", \" He continues shaving while the camera zooms in on his hair.\"]}, \"v_lARaqx1e7wM\": {\"duration\": 98.83, \"timestamps\": [[3.46, 45.46], [47.93, 83.51], [87.95, 93.88]], \"sentences\": [\"A woman and a little girl begin decorating a Christmas tree.\", \" The little girl is kneeling down in front of the tree putting gold bulbs onto the tree.\", \" She stands up in front of the camera holding a red bulb.\"]}, \"v_45gAK3x_0ds\": {\"duration\": 188.43, \"timestamps\": [[0, 49.93], [49.93, 120.6], [120.6, 188.43]], \"sentences\": [\"A young man is seen bouncing up and down on top of black slack line with it in between his crotch.\", \"More men appear on the slack line doing tricks back and forth and landing on the slack line and performing for the crowd surrounding them.\", \"Different ages and genders begin to form on the line and start handling the rope with their hands and doing more tricks.\"]}, \"v_tfepV4CXF7c\": {\"duration\": 65.97, \"timestamps\": [[0, 5.94], [9.57, 44.86], [49.15, 65.97]], \"sentences\": [\"A child is sitting at a table with food.\", \" He is drinking root beer from a large mug.\", \" He clinks glasses with an adult and they drink.\"]}, \"v_jLcYOkRvdic\": {\"duration\": 111.34, \"timestamps\": [[0, 111.34], [40.64, 61.79], [57.9, 111.34]], \"sentences\": [\"A young child shovels snow with a parent.\", \"  A truck drives by and then two adults shovel.\", \"  The girl helps at the end too so everyone can get out of their driveway.\"]}, \"v_RX-9yj3PkYI\": {\"duration\": 106.7, \"timestamps\": [[0, 12.8], [12.27, 58.15], [61.88, 106.7]], \"sentences\": [\"A guy showing something while bunch of people are behind him drinking.\", \" He continues on reading and drinks a liquid in the cup.\", \" A hand points to the cup and they began talking and he sips again and approves it and wave his hand a sip some more.\"]}, \"v_hsJct3UsbAs\": {\"duration\": 211.02, \"timestamps\": [[0, 10.55], [10.55, 12.66], [12.66, 211.02]], \"sentences\": [\"These 2 people are standing on skis waiting for the boat to pull them in the water.\", \" Then they stand up and the boat begins to pull them.\", \" The boat pulls them by the what they're attached to and they water ski happily ever after.\"]}, \"v_oDZlW0OgEgg\": {\"duration\": 134.12, \"timestamps\": [[4.69, 124.73], [24.14, 124.73], [124.06, 124.73]], \"sentences\": [\"A man is standing behind a table.\", \" He begins to polish the table in front of him with a rag.\", \" A before and after photo of the table is shown.\"]}, \"v_9elfMU_LRKc\": {\"duration\": 43.86, \"timestamps\": [[0, 11.84], [10.75, 16.23], [40.79, 43.86]], \"sentences\": [\"Two people are wearing black aprons.\", \" A man kneels down next to a bike.\", \" A woman stands in front of the bike.\"]}, \"v_QwnUZ-5JaOM\": {\"duration\": 118.24000000000001, \"timestamps\": [[0, 16.55], [16.55, 93.41], [93.41, 118.24]], \"sentences\": [\"An athlete competes in a long jump competition in a track and field course.\", \" The long jumper fouls on numerous tries.\", \" The long jumper claps his hands to get the crowd behind him as he tries his final long jump and completes a perfect jump.\"]}, \"v_5ry-UTd0y_o\": {\"duration\": 156.46, \"timestamps\": [[0, 1.56], [0, 154.89], [59.45, 65.71], [70.41, 77.45], [87.62, 95.44], [124.38, 126.73], [127.51, 156.46]], \"sentences\": [\"We see a title over a video screen.\", \" We see people riding tubes down a steep slope.\", \" We see a lady ride as she holds a camera.\", \" We see a member of the staff put a person on the tow line and see them go up.\", \" A boy in goggles holds a camera on himself as he goes down.\", \" We see a man push a boy down the slope.\", \" We see the ending title and credits.\"]}, \"v_NKblxYCeetg\": {\"duration\": 198.18, \"timestamps\": [[0, 64.41], [51.53, 134.76], [116.93, 189.26]], \"sentences\": [\"A group of people are seen riding a ski lift and riding down a mountain.\", \" Several clips are shown of people riding down a mountain.\", \" More and more people ride around the area past others and showing their face.\"]}, \"v_Vn4wrgBpgP8\": {\"duration\": 69.2, \"timestamps\": [[0, 69.2], [14.88, 34.25], [17.99, 34.6], [33.56, 53.97], [53.97, 69.2]], \"sentences\": [\"There's a person dressed in a black shirt doing a tutorial on how to powder skis to maintain them.\", \" He begins by demonstrating how to sprinkle powder on the skis that are placed on a large red table in front of him.\", \" He spreads the powder evenly on the gliding surface of the skis.\", \" Then uses an iron to go over the powered surface to heat it slightly.\", \" Then he shows how the skis look after the powder treatment.\"]}, \"v_W8ayZca_fAY\": {\"duration\": 154.74, \"timestamps\": [[0, 39.46], [42.55, 112.96], [98.26, 151.64]], \"sentences\": [\"A man walks into frame and begins adjusting a machine.\", \" He holds up an iron and begins ironing a shirt.\", \" He continues ironing the shirt back and fourth.\"]}, \"v_LN8UWHvoELs\": {\"duration\": 202.82999999999998, \"timestamps\": [[0, 10.14], [33.47, 83.16], [106.48, 202.83]], \"sentences\": [\"A man is seated inside a room.\", \" He is holding two drum sticks over a single drum.\", \" He begins playing, showing how it is done.\"]}, \"v_QhiKgeJV3k0\": {\"duration\": 195.08, \"timestamps\": [[0, 10.73], [10.73, 99.49], [94.62, 189.23]], \"sentences\": [\"Two men are seen speaking to one another while one holds a guitar.\", \" Another man is seen off in the distance and the man with the guitar begins playing.\", \" He continues playing guitar and stops to high five others in the end.\"]}, \"v_OBDq689jDDY\": {\"duration\": 61.29, \"timestamps\": [[0, 21.76], [12.87, 43.21], [43.52, 58.53]], \"sentences\": [\"A woman is shown speaking to the camera and moves up and down on a beam.\", \" She kicks her legs back and fourth while still looking at the camera.\", \" She continues to kick her legs around.\"]}, \"v_2TEJnQzCPUM\": {\"duration\": 72.82, \"timestamps\": [[0, 1.82], [1.82, 16.02], [16.02, 69.18], [69.18, 72.82]], \"sentences\": [\"An introduction comes onto the screen for a rollerskating video.\", \" A man talks about the best practices to prepare to roller skate.\", \" He demonstrates some of the correct moves to properly roller skate.\", \" The video ends with the closing credits shown at the end of the video.\"]}, \"v_wUvC0TXK1PM\": {\"duration\": 81.27, \"timestamps\": [[0, 20.72], [16.25, 56.89], [52.83, 78.43]], \"sentences\": [\"A man walks into frame and begins cleaning off a window on a platform.\", \" He moves a tool all around the area and continues cleaning.\", \" He finishes the window and ends by turning off the camera.\"]}, \"v_MdOAr_4FJvc\": {\"duration\": 233.13, \"timestamps\": [[0, 47.79], [33.8, 157.36], [150.37, 230.8]], \"sentences\": [\"a man is sitting at a piano.\", \" the man begins to play the piano.\", \" the man continues to play the piano until the end.\"]}, \"v_-FWGLSfI13Q\": {\"duration\": 223.05, \"timestamps\": [[0, 23.42], [23.42, 49.07], [49.07, 80.3], [80.3, 147.21], [147.21, 184.02], [184.02, 223.05]], \"sentences\": [\"A little boy in a kitchen is scooping out the inside of a pumpkin while another boy sits a the table.\", \" The boy's dad comes over to help him get the insides out of the pumpkin.\", \" They begin to use a marker to draw a face on the pumpkin.\", \" Next, they use a knife to cut the face into the pumpkin.\", \" A boy in a black shirt makes funny faces to the camera while another boy plays with the insides of the pumpkin.\", \" The family turns the lights off and lights up the pumpkin before the video ends.\"]}, \"v_aWnpbk007cE\": {\"duration\": 82.85, \"timestamps\": [[0, 3.73], [0, 61.72], [62.14, 72.08], [72.49, 82.85]], \"sentences\": [\"There are a couple of kites in the sky above a green field with a few people scattered.\", \" One of the kites is an orange and black dragon kite that is shown from far away and then up close.\", \" The camera pans back and we can see the people who are below the dragon kite.\", \" Then the camera zooms back in on the dragon again.\"]}, \"v_Jd0hvO7erXM\": {\"duration\": 211.53, \"timestamps\": [[0, 211.53], [13.75, 56.06], [56.06, 211.53]], \"sentences\": [\"This video shows the man arm wrestling different opponents.\", \" First he arm wrestles a man wearing a black shirt and then he arm wrestles a shirtless man.\", \" Next he  goes against other people and as usual, he continues to win.\"]}, \"v_CgaWju3yGc4\": {\"duration\": 164.86, \"timestamps\": [[0, 164.86], [7.42, 164.86], [51.93, 140.13], [133.54, 164.86]], \"sentences\": [\"A man is crouching on the ground.\", \" He is next to a stationary bike.\", \" He begins to work on the bike with tools.\", \" He then talks to the camera.\"]}, \"v_ahpoDWYqtfw\": {\"duration\": 80.6, \"timestamps\": [[8.46, 9.27], [9.67, 11.28], [11.28, 72.13]], \"sentences\": [\"The camera shows a wheelbarrow full of wood.\", \" The camera pans up to show a man holding an axe.\", \" The man uses the axe to split some wood.\"]}, \"v_z-iuSgXKUcw\": {\"duration\": 169.18, \"timestamps\": [[0, 54.98], [50.75, 117.58], [117.58, 165.8]], \"sentences\": [\"A large group of people are seen playing instruments with one another.\", \" The camera zooms in on a man playing a violin.\", \" The man continues playing with a conductor shown as well as others playing instruments.\"]}, \"v_DbBqhlSvr-o\": {\"duration\": 64.13, \"timestamps\": [[2.89, 14.75], [21.48, 51.95], [51.63, 64.13]], \"sentences\": [\"A woman is standing on a ladder hanging wall paper.\", \" She uses a black tool to help her put the wall paper up.\", \" Words flash onto the screen at the end.\"]}, \"v_I9NukwdINyY\": {\"duration\": 202.99, \"timestamps\": [[0, 31.46], [47.7, 133.97], [147.17, 202.99]], \"sentences\": [\"A woman is seen standing inside a room.\", \" She shows off several brushes and a canvas.\", \" She demonstrates how to make a painting.\"]}, \"v_taOJ9kUiwgM\": {\"duration\": 94.41, \"timestamps\": [[13.22, 72.23], [20.3, 72.23], [52.4, 94.41]], \"sentences\": [\"The chefs in white hats are cooking eggs on the long table.\", \" A drum is being played at the stage and camera men are taking pictures and videos.\", \" The people are on stage talking and the people with white hats are standing watching.\"]}, \"v_igrjxhf0XyY\": {\"duration\": 57.68, \"timestamps\": [[0, 15], [15.57, 34.03], [34.32, 56.24]], \"sentences\": [\"Several clips are shown of sunscreen bottles as well as people rubbing it in.\", \" A man speaks to the camera and shows more people.\", \" More shots are shown of sunscreen being rubbed in.\"]}, \"v_Dzj5X11anrk\": {\"duration\": 88.49, \"timestamps\": [[0, 13.27], [11.5, 54.42], [52.21, 88.49]], \"sentences\": [\"two woman and man start scraping a dirt away from a tree.\", \" mulch is poured around the tree.\", \" then mulch is then spread evenly around the tree.\"]}, \"v_ZlwkO1oFBHw\": {\"duration\": 140.97, \"timestamps\": [[0, 19.74], [26.08, 102.91], [108.55, 140.97]], \"sentences\": [\"A couple of people are in an indoor basketball court.\", \" They are playing a game of one on one.\", \" They bounce the ball and try to get it into the basket.\"]}, \"v_7kO_qcJEiu0\": {\"duration\": 186.57, \"timestamps\": [[0, 67.17], [54.11, 135.27], [123.14, 182.84]], \"sentences\": [\"A woman is seen speaking to the camera while moving her hands around.\", \" She runs her hands through her hair and begins styling it.\", \" She finishes braiding her hair and looking to the camera.\"]}, \"v_f1kY1-9XR1k\": {\"duration\": 152.35, \"timestamps\": [[0, 34.28], [46.47, 111.98], [112.74, 152.35]], \"sentences\": [\"A woman is seated in a stylist cape.\", \" A woman is working on her hair, separating it into sections.\", \" She braids each section and pins it into place.\"]}, \"v_JeSxkw4ed-I\": {\"duration\": 45.05, \"timestamps\": [[0.9, 17.12], [11.71, 32.43], [20.72, 43.7]], \"sentences\": [\"A person is seen sitting in a tub while another sprays a dog.\", \" The people scrub down the dog while spraying it with a shower head.\", \" They continue to rub down the dog.\"]}, \"v_MIQiVsnwcWE\": {\"duration\": 208.68, \"timestamps\": [[0, 31.3], [18.78, 103.3], [102.25, 208.68]], \"sentences\": [\"a man stands on a ocean front beach.\", \" the man begins doing tai chi.\", \" the man then stands indoors and does tai chi.\"]}, \"v_4Ex-sB0vtwk\": {\"duration\": 9.2, \"timestamps\": [[0, 1.98], [2.02, 2.67], [4.09, 5.61], [6.62, 8.87]], \"sentences\": [\"A guy moves a elongated, metal pole back away from a chalk marked pavement and lifts the pole off the pavement.\", \" The guy steps backwards to give room.\", \" A lady steps forward and uses a long, metal pole to move a yellow disk on the pavement.\", \" The lady steps backwards, while the guy steps forward.\"]}, \"v_RhokmoZJrco\": {\"duration\": 26.29, \"timestamps\": [[0, 4.99], [5.39, 18.4], [19.32, 26.29]], \"sentences\": [\"A couple of people were sailing on the ocean.\", \" They float through the water, holding their sails upright.\", \" A person goes over another person in the water.\"]}, \"v_Y-2nhi8JdO8\": {\"duration\": 187.08, \"timestamps\": [[0.94, 180.54], [8.42, 78.57], [79.51, 180.54]], \"sentences\": [\"A person, face unseen, is shown seated, and playing an acoustic/electric guitar in a room with another electric guitar in the background.\", \"  A person in jeans and a t-shirt is playing the guitar in a closeup using the right hand to strum and the left hand to shape notes.\", \"  The person continues to strum on the guitar jumping up and down between notes on the neck of the guitar, and using a pick at various speeds.\"]}, \"v_8s3b1f6OMw0\": {\"duration\": 33.07, \"timestamps\": [[0, 33.07], [8.76, 33.07], [0.66, 33.07]], \"sentences\": [\"People are swimming in a swimming pool.\", \" They are throwing a ball back and forth.\", \" People are standing on the side of the pool watching.\"]}, \"v_SLdf2ZUdgEQ\": {\"duration\": 165.87, \"timestamps\": [[0, 21.56], [24.05, 116.11], [120.26, 165.87]], \"sentences\": [\"A man is talking inside a bowling alley.\", \" He holds up a string and discusses how to use it.\", \" He then demonstrates the positions and techniques of bowling.\"]}, \"v_altXks0a0qY\": {\"duration\": 35.69, \"timestamps\": [[0, 7.32], [6.42, 24.45], [21.41, 35.69]], \"sentences\": [\"two women are sitting on a small camel.\", \" the woman on the back of the camel waves at the camera.\", \" the camel begins to walk and carry the women on it's back.\"]}, \"v_UL4YwgCFrDI\": {\"duration\": 77.93, \"timestamps\": [[0, 11.69], [20.65, 55.33], [56.5, 77.93]], \"sentences\": [\"A couple of men are standing next to a river.\", \" They engage in several martial arts moves.\", \" They move their bodies slowly and in unison.\"]}, \"v_6jgWCFWtCfU\": {\"duration\": 56.61, \"timestamps\": [[0, 9.62], [12.17, 43.59], [46.14, 56.61]], \"sentences\": [\"A group from a band is marching down a street.\", \" They girls are cheerleading as the band follows.\", \" They are banging cymbals and playing drums.\"]}, \"v_UcVbSLmILaY\": {\"duration\": 69.36, \"timestamps\": [[0, 5.55], [5.9, 25.32], [25.32, 69.36]], \"sentences\": [\"An individual's feet are shown next to a pair of shoes.\", \" The individual puts socks on his feet.\", \" The individual puts the shoes on his feet.\"]}, \"v_ELiXlJUBzzw\": {\"duration\": 136.63, \"timestamps\": [[6.15, 19.13], [18.44, 69.68], [80.61, 107.94]], \"sentences\": [\"A man is spraying a hose with a nozzle onto his car.\", \" He gets a bucket and starts to scrub the car.\", \" He sprays the soap off the car with the hose.\"]}, \"v_fmtW5lcdT_0\": {\"duration\": 13.4, \"timestamps\": [[0, 3.55], [3.22, 8.91], [8.51, 12.39]], \"sentences\": [\"A small child is seen standing on a lawn.\", \" The girl picks up a ball and throws it around the yard.\", \" She runs around the chase the ball and grab it.\"]}, \"v_AMMECm7Huhk\": {\"duration\": 166.79, \"timestamps\": [[0, 9.17], [9.17, 16.68], [16.68, 60.04], [60.04, 104.24], [104.24, 149.28], [149.28, 166.79]], \"sentences\": [\"A man comes onto the screen and introduces a video about how to make coffee ice cream.\", \" The opening credits for the video are then shown on the screen.\", \" The man starts with some instant coffee and add some water to it which he then adds to some cream.\", \" He then takes that mixture and adds it to a larger batch of cream which he freezes until it hardens.\", \" When the ice cream is done he tastes it and describes how good the flavor is.\", \" When the video is over the closing credits and graphics are shown on the screen.\"]}, \"v_BQRidRi2V1c\": {\"duration\": 68.03999999999999, \"timestamps\": [[0, 4.76], [5.44, 20.41], [23.81, 68.04]], \"sentences\": [\"Several girls are in a gym.\", \" They are dancing together in unison.\", \" They then start jumping rope together.\"]}, \"v_MpqXCbsqVNQ\": {\"duration\": 174.2, \"timestamps\": [[0, 33.97], [38.32, 81], [99.29, 174.2]], \"sentences\": [\"A man is outside a building in a field.\", \" He is shown talking to the camera.\", \" Then we see him involved in a game of lacrosse.\"]}, \"v_iubDO1DSMZk\": {\"duration\": 77.93, \"timestamps\": [[0, 2.34], [2.34, 24.16], [24.16, 26.11], [26.11, 77.15]], \"sentences\": [\"A family pose in front of their Christmas tree in their living room.\", \" The family made up of a lady a man a young girl a baby and a dog decorate the Christmas tree while filmed in fast motion.\", \" The man poses with the baby.\", \" The baby and the dog crawl and walk around on the carpeted floor while the man the lady and daughter decorate the Christmas tree.\"]}, \"v_u_HDCcby_B0\": {\"duration\": 117.52000000000001, \"timestamps\": [[0, 5.29], [18.8, 65.81], [68.16, 117.52]], \"sentences\": [\"A dog training event is being shown.\", \" A man is on the field with his dog.\", \" He throws frisbees and the dog does tricks.\"]}, \"v_OFe8toY6Ch4\": {\"duration\": 190.26, \"timestamps\": [[4.76, 174.09], [175.04, 180.75], [184.55, 190.26]], \"sentences\": [\"Scenes of various individuals engaged in competitive curling are shown, intersperse with occasional eyecatch screens with numbers.\", \" An animated white title screen with a logo is shown.\", \" A man walks away from the camera frame, transitioning to a white screen with a logo.\"]}, \"v_qaB0igbuKuQ\": {\"duration\": 160.87, \"timestamps\": [[0, 44.24], [41.83, 111], [100.54, 158.45]], \"sentences\": [\"A close up of products are shown and leads into a woman holding and petting a cat.\", \" Another women then begins cutting the cat's claws and wrapping her up in a blanket.\", \" The woman holds the cat while the others continues cutting and ends with them playing.\"]}, \"v_fG7iLOObw30\": {\"duration\": 181.28, \"timestamps\": [[0, 53.48], [40.79, 128.71], [120.55, 175.84]], \"sentences\": [\"Several clips are shown of celebrities walking the red carpet and leads into a woman speaking with a man.\", \" They shake hands and show clips of the man cutting a woman's hair.\", \" They continue speaking as her styles her hair and shows it off in the end.\"]}, \"v_NBawYEfglow\": {\"duration\": 85.38, \"timestamps\": [[0, 7.68], [8.11, 20.92], [21.35, 58.91], [59.77, 85.38]], \"sentences\": [\"A group of people jump up and down slapping their knees.\", \" Arnold Schwarzenegger in a gold shirt is playing the violin on stage.\", \" The crowd dances sarcastically to his music.\", \" He leaves the stage in frustration.\"]}, \"v_XxYoSn6NE_4\": {\"duration\": 220.96, \"timestamps\": [[0, 11.05], [0, 217.65], [203.29, 220.96]], \"sentences\": [\"woman is talking to the camera and showing pictures of braids.\", \" woman is standing in a bathroom showing to the camera how to make a braid around the head.\", \" the woman is showing her braid.\"]}, \"v_n1yugby5jC0\": {\"duration\": 110.13, \"timestamps\": [[0, 31.39], [25.33, 80.4], [69.93, 107.38]], \"sentences\": [\"Girls are seen walking around the beach playing a game of volleyball.\", \" The girls laugh to one another as they continue to play and walk around.\", \" More clips are shown of people playing and ends with a persons feet.\"]}, \"v_VxoBV76IkLM\": {\"duration\": 112.47999999999999, \"timestamps\": [[0, 112.48], [3.37, 112.48], [0, 111.92]], \"sentences\": [\"man is standing in a alge ield doing a shot put.\", \" woman is wearing black clothes doing a shot put in a large green field.\", \" woman is practicing doing a shot put in the field.\"]}, \"v_4oZtb0kglx4\": {\"duration\": 217.62, \"timestamps\": [[0, 6.53], [6.53, 99.02], [100.1, 204.56], [204.56, 217.62]], \"sentences\": [\"Bright pink french cancan candy wrap is shown.\", \" The materials, tools and and how to make it are demonstrated step by step.\", \" After wrapping the ribbon is used to tie the ends and ruffles are made on each end.\", \" The finished product is shown.\"]}, \"v_j9QPrMZuegY\": {\"duration\": 121.46, \"timestamps\": [[0, 40.69], [40.69, 68.63], [68.63, 121.46]], \"sentences\": [\"An Asian athlete practices clean and jerk lifts in a weight gym.\", \" The Asian girl resets and practices a new set of clean and jerk lifts.\", \" The Asian girl rests between lifts and returns for another set of lifts.\"]}, \"v_WN5EWPfDbog\": {\"duration\": 170.55, \"timestamps\": [[0, 170.55], [17.91, 156.05], [60.55, 156.05]], \"sentences\": [\"The man in black vest is sitting on the table.\", \" The man spread the cards on the table.\", \" The man is putting the cards on the table and pointing it the cards.\"]}, \"v_jxk6KOLu5kU\": {\"duration\": 120.33, \"timestamps\": [[10.23, 23.46], [24.67, 45.72], [74.6, 87.84]], \"sentences\": [\"A woman is holding a contact lens on her finger.\", \" She puts the contact into her eye.\", \" She picks up another contact and puts it into her other eye.\"]}, \"v_bNRE808ALfM\": {\"duration\": 183.97, \"timestamps\": [[0, 29.44], [45.99, 134.3], [140.74, 183.97]], \"sentences\": [\"The bright sun is blinding through the trees.\", \" A group of people are doing martial arts moves in the woods.\", \" They are holding sticks as they move in unison.\"]}, \"v_SeVftOMjNMM\": {\"duration\": 16.14, \"timestamps\": [[0, 4.44], [4.44, 11.05], [12.59, 16.14]], \"sentences\": [\"A kid is laying down on his back on the floor.\", \" Three people lift him up off the ground.\", \" They throw him down onto a couch behind them.\"]}, \"v_D7Oc3SLX0wo\": {\"duration\": 71.73, \"timestamps\": [[0, 23.67], [19.72, 55.23], [49.49, 69.93]], \"sentences\": [\"A small group of people are seen playing volleyball on a sandy court.\", \" The men hit the ball back and fourth to one another while running around.\", \" They continue playing and high fiving one another.\"]}, \"v_K0MzjnMzbj4\": {\"duration\": 175.78, \"timestamps\": [[0, 5.27], [7.03, 34.28], [34.28, 136.23], [137.11, 165.23], [166.11, 175.78]], \"sentences\": [\"Graphics with the \\\"iSport com Instructional Video Lessons\\\" appears on screen.\", \" Young men play basketball in an indoor court and \\\"How To Do a Spin Move in Basketball\\\" overlays the video.\", \" \\\"Power Dribble\\\" overlays video of the players demonstrating the steps of doing it.\", \" A recap of the steps is shown in a smaller window.\", \" The logo reappears on screen.\"]}, \"v_B8d9FYuZglQ\": {\"duration\": 120.05, \"timestamps\": [[0, 120.05], [15.61, 19.21], [19.21, 120.05]], \"sentences\": [\"This woman is showing viewers how to get the jingle eye shadow look.\", \" First, she applies the sin color to her eyes and then the creep color onto the side of her eyes.\", \" Next she applies another black color and the buck color and she does her eyelashes resulting in beautiful eyes.\"]}, \"v_FbmK-7sZ3O4\": {\"duration\": 118.1, \"timestamps\": [[0, 118.1], [0, 116.33], [3.54, 118.1]], \"sentences\": [\"team are on ice court playing hockey.\", \" people on sands are watching the competition.\", \" a video in black and white is shown with a hockey game.\"]}, \"v_cVuHOF56B64\": {\"duration\": 40.33, \"timestamps\": [[0, 7.87], [6.66, 26.82], [21.58, 37.71]], \"sentences\": [\"A close up of a sign is shown followed by people playing instruments.\", \" Two men are seen sword fighting and several people wander around an area.\", \" The people play drinking games with one another as well as celebrate.\"]}, \"v_qMJi2nXWOkg\": {\"duration\": 5.25, \"timestamps\": [[0, 5.25], [0.21, 2.86], [1.76, 3.91]], \"sentences\": [\"baseball team is in a court playing.\", \" batter hits the ball in a court.\", \" man is running in the field and he stumbles with another.\"]}, \"v_B-6kP8M_GmM\": {\"duration\": 186.61, \"timestamps\": [[0, 38.25], [37.32, 95.17], [77.44, 140.89], [139.96, 180.08]], \"sentences\": [\"A man walks up holding a basketball and holds his arms out.\", \" He speaks to the camera while another man is shown and a woman measures him.\", \" The men then begin playing basketball while constantly bumping into one another.\", \" The men continue hitting one another and the host speaks to the camera.\"]}, \"v_XuG2V9gDD9M\": {\"duration\": 97.99000000000001, \"timestamps\": [[0, 11.27], [21.56, 80.84], [83.29, 97.99]], \"sentences\": [\"A couple of small children are in a yard.\", \" They are standing on an inflatable boat.\", \" They play with the plastic sail.\"]}, \"v_QlTddnlIJpA\": {\"duration\": 74.65, \"timestamps\": [[0, 18.66], [19.04, 47.03], [46.28, 70.55]], \"sentences\": [\"A person seen riding closer to the camera on a horse and looking around.\", \" He rides in on several clips on the horse mocing closer to the camera.\", \" He continues riding in one more time on the horse.\"]}, \"v_wGEaIInAtT4\": {\"duration\": 199.23, \"timestamps\": [[0, 199.23], [0, 81.68], [81.68, 199.23], [176.32, 186.28]], \"sentences\": [\"Several kids are shown performing jump rope stunts at a jump rope performance.\", \" A team on the stage is performing intricate tricks while taking turn in the ropes.\", \" Another team comes onto the screen and performs more jump rope tricks while some other team members watch.\", \" One of the tricks they perform involves the use of a hula hoop.\"]}, \"v_fvslbZDJ3C8\": {\"duration\": 34.47, \"timestamps\": [[2.24, 34.47], [3.1, 34.47], [10.17, 10.69]], \"sentences\": [\"People are running on a field playing dodge ball.\", \" People are watching them on the sidelines.\", \" A man in a black shirt throws a ball.\"]}, \"v_Ji3qvOdmOZA\": {\"duration\": 173.06, \"timestamps\": [[0, 38.07], [38.07, 122.01], [128.93, 173.06]], \"sentences\": [\"A man has his arm outstretched on a table.\", \" A tattoo artist is applying a tattoo to his arm.\", \" He works with the needle up close to get it right.\"]}, \"v_mSonugqhYuE\": {\"duration\": 194.37, \"timestamps\": [[0, 40.82], [49.56, 125.37], [132.17, 194.37]], \"sentences\": [\"A box is sitting on the floor next to a plastic display.\", \" A man flips over a bike in the plastic.\", \" He removes and replaces a tire on the bike.\"]}, \"v_InVpvGiubi0\": {\"duration\": 201.53, \"timestamps\": [[0, 81.62], [82.63, 140.06], [140.06, 199.51]], \"sentences\": [\"A man shows how to start fire with a device and a small piece of wood.\", \" Then, the man puts wood on the device and blows the flames.\", \" Then, put the flames in the wood fire starts to get bigger.\"]}, \"v_HUZ9PuMm8yM\": {\"duration\": 207.84, \"timestamps\": [[0, 20.78], [22.86, 112.23], [123.67, 207.84]], \"sentences\": [\"A diver is standing on his hands at the end of a diving board.\", \" He flips off the board, turning several times as he hits the water.\", \" Several clips are seen of divers jumping into water.\"]}, \"v_k_ZXmr8pmrs\": {\"duration\": 182.55, \"timestamps\": [[10.04, 60.24], [29.21, 60.24], [35.6, 182.55]], \"sentences\": [\"The man is preparing his camera equipments.\", \" The men ride the helicopter.\", \" A man in a sailing boat is sailing through the water.\"]}, \"v_HdZjxdQhtZo\": {\"duration\": 157.94, \"timestamps\": [[0, 15], [15, 27.64], [15, 157.94]], \"sentences\": [\"man is talking to the camera in studio.\", \" litle kid is riding a bicycle.\", \" old men are ina  club playing shuffleboard and a kids are playing in a court too.\"]}, \"v_UGjF8G0HLZA\": {\"duration\": 72.73, \"timestamps\": [[0, 8.73], [16, 58.54], [59.63, 72.73]], \"sentences\": [\"A man is standing in the middle of an obstacle course.\", \" He and other people are gearing up to fight.\", \" They engage in a game of paintball shooting.\"]}, \"v_ICBrXUuwvgg\": {\"duration\": 193.93, \"timestamps\": [[0, 36.85], [36.85, 79.51], [79.51, 144.48], [144.48, 193.93]], \"sentences\": [\"A black screen appears with a small paragraph explaining that a young man is about to climb Yosemite Valley without a rope followed by a North Face advertisement.\", \"The young man then appears in everyday clothing standing outside of a white van talking.\", \"He then drives to he mountain and begins climbing the rocks,without any ropes,harness or help just a red fanny pack on his back.\", \"After several steps,he stops to take a look and walks across the rocks before continuing on and completing his task.\"]}, \"v_MDucYea4ie8\": {\"duration\": 80.02, \"timestamps\": [[0, 33.61], [25.21, 60.41], [53.21, 76.82]], \"sentences\": [\"A large group of children are seen driving cars around playing bumper cars.\", \" The kids crash into one another continuously and move around the area.\", \" The kids continue to drive around and cash into one another.\"]}, \"v_ykov_joUUTk\": {\"duration\": 204.27, \"timestamps\": [[0, 33.7], [40.85, 142.99], [156.26, 204.27]], \"sentences\": [\"A man is shown wearing martial arts clothing inside a house.\", \" He is doing several moves with his hands for balance.\", \" He lifts his body, does a handstand, then goes into numerous other moves.\"]}, \"v_4mlA78hn4mY\": {\"duration\": 214.14, \"timestamps\": [[0, 200.22], [14.99, 22.48], [0, 211.99]], \"sentences\": [\"two men are playing squash on a wooden room.\", \" man is walking on carpet outside the court.\", \" men are playing in a court room.\"]}, \"v_FLImHIKzzm4\": {\"duration\": 152.62, \"timestamps\": [[0, 34.34], [6.1, 99.96], [71.73, 152.62]], \"sentences\": [\"The people are swimming in the pool, then one person threw the ball to one side.\", \" The person throw the ball in the goal and went in.\", \" The players are swimming towards the other side of the goal and then they started swimming on other side of the goal post.\"]}, \"v_Fb-t6zr7K5c\": {\"duration\": 80.12, \"timestamps\": [[0, 10.82], [10.42, 35.25], [35.25, 64.9], [63.69, 80.12]], \"sentences\": [\"A large stage is shown with several instruments pushed up against the wall.\", \"All of a sudden,a young lady appears dressed in a silver and blue leotard and begins doing her routine across the floor.\", \"As she performs,several lights begin panning the wall and adding a flair to her performance.\", \"When she finishes,the girl does a hurkie on the ground and pulls her hands up in the air before finally exiting the stage.\"]}, \"v_KBMvitQaXzE\": {\"duration\": 22.45, \"timestamps\": [[0, 0.9], [1.01, 2.81], [13.7, 18.08], [18.19, 21.22]], \"sentences\": [\"Three people are riding a very colorful camel on the beach.\", \" The young boy on the ground is acting as a guide.\", \" One of the three people riding is a young boy, who throws an object from the camel.\", \" The riders continue on their way in delight.\"]}, \"v_aObyxa8gdAo\": {\"duration\": 128.06, \"timestamps\": [[0, 36.5], [32.01, 84.52], [74.91, 124.22]], \"sentences\": [\"A man is seen looking at the camera and leads into him playing a poker game with others.\", \" One man deals cards and chips while speaking to one another.\", \" They continue playing and speaking to one another.\"]}, \"v_QeL3ScQVelo\": {\"duration\": 170.67000000000002, \"timestamps\": [[0, 48.64], [48.64, 100.69], [100.69, 152.75], [152.75, 170.67]], \"sentences\": [\"woman is talking to the camera in news standing next to a chef.\", \" the man holds a fish and put it on the pan.\", \" the womans erve salad on white plates and the man put the fish on top and pour a dressing on top.\", \" the man shows the fish on the pan and keeps talking to the woman.\"]}, \"v_enASD1KDX24\": {\"duration\": 63.81, \"timestamps\": [[0, 15.95], [16.91, 34.14], [34.46, 63.81]], \"sentences\": [\"A young lady is standing in the yard in a grey shirt with two tubes attached to her breast and a black book bag.\", \"She then drops the rake and begins talking about the bag hanging down from her shoulder.\", \"After she is finished,she grabs the rake and continues piling up the leaves.\"]}, \"v_7oeFpnRCJkY\": {\"duration\": 7.06, \"timestamps\": [[0.04, 7.06], [0.25, 7.06], [0, 7.02]], \"sentences\": [\"man is in a roofed gym lifting weight.\", \" man is kneeling on a gym holding a lift on his right arm.\", \" man in the gym is doing exercise.\"]}, \"v_WFbUBMgOMn8\": {\"duration\": 206.66, \"timestamps\": [[0, 11.37], [42.36, 89.9], [129.16, 206.66]], \"sentences\": [\"A woman is talking in her kitchen.\", \" She is in the process of making a dessert.\", \" She mixes all the ingredients and then shows the final product.\"]}, \"v_Likt_9dbMqE\": {\"duration\": 230.88, \"timestamps\": [[0, 31.17], [31.17, 50.79], [31.17, 230.88]], \"sentences\": [\"men are playing soccer in a street court.\", \" brasil vs argentina game is playing in a large green field.\", \" different videos of teams playing soccer.\"]}, \"v_ZGK-w7-bkNw\": {\"duration\": 134.21, \"timestamps\": [[1.34, 134.21], [33.55, 134.21], [42.28, 134.21], [100.66, 134.21]], \"sentences\": [\"A woman is shown with braids in her hair.\", \" Another woman is shown doing the braiding.\", \" She slowly loops the hair around.\", \" Eventually she is done braiding.\"]}, \"v_hc4DBHpRuGM\": {\"duration\": 63.83, \"timestamps\": [[0, 9.89], [10.85, 35.11], [37.34, 63.83]], \"sentences\": [\"Several views are shown of an elliptical in a room.\", \" A woman is shown riding the machine.\", \" She shows how to use the screen on the machine as she works out.\"]}, \"v_5T_P4x0q0VM\": {\"duration\": 22.9, \"timestamps\": [[0.23, 5.95], [5.72, 15.23], [14.65, 21.41]], \"sentences\": [\"A close up of a person's leg is shown with a man kneeling in front.\", \" The person then begins shining the shoes of another.\", \" He continues to rub down the shoes while looking all around.\"]}, \"v_KEXm-3H6eTg\": {\"duration\": 69.06, \"timestamps\": [[0, 15.54], [10.01, 42.12], [41.09, 69.06]], \"sentences\": [\"a woman stands behind a bar and talks to the camera.\", \" the woman then takes  a glass an puts it on the bar.\", \" the woman begins making a cocktail.\"]}, \"v_j0JsoWxrGh0\": {\"duration\": 100.1, \"timestamps\": [[0, 8.01], [8.01, 92.59], [92.59, 100.1]], \"sentences\": [\"An introduction comes onto the screen for a video about working in the kitchen.\", \" A man comes onto the screen and shows people how to best sharpen their knives while commenting on the best way to do it.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_kYkwA_lvqYc\": {\"duration\": 13.98, \"timestamps\": [[0, 0.98], [0.84, 9.65], [9.44, 13.56]], \"sentences\": [\"A man is seen speaking to the camera.\", \" He shows off various objects on a table and puts lotion on a shoe.\", \" He then wipes off a shoe with a rag and presents it to the camera.\"]}, \"v_Tzm6TEManmQ\": {\"duration\": 204.29, \"timestamps\": [[0, 29.62], [59.24, 63.33], [80.69, 152.2], [155.26, 180.8]], \"sentences\": [\"Lights are turning on over a swimming pool.\", \" A man stands on a diving board next to the pool.\", \" A man is working out in a gym.\", \" He jumps off the diving board into the swimming pool and starts swimming laps.\"]}, \"v_IlN_XipVf44\": {\"duration\": 65.71, \"timestamps\": [[0, 65.71], [0.66, 65.71], [63.08, 65.71]], \"sentences\": [\"A person is standing next to a couch.\", \" They are spray painting the couch purple.\", \" They put the cushions back onto the couch.\"]}, \"v_yVp99wxlW90\": {\"duration\": 60.51, \"timestamps\": [[0, 5.75], [9.98, 39.64], [42.66, 60.51]], \"sentences\": [\"A man is playing a game in front of a large house.\", \" His friends join him, and they play croquette.\", \" They hit the balls through the hoops with mallets.\"]}, \"v_RKDjetk5Kko\": {\"duration\": 212.77, \"timestamps\": [[0, 32.98], [34.04, 67.02], [68.08, 191.49], [193.62, 212.77]], \"sentences\": [\"A logo intro is shown and then a woman is talking at a counter in front of various ingredients.\", \" She then goes over all of the ingredients while a recipe list is shown on the screen.\", \" Shen then goes on to prepare the dish at the stove with all of the ingredients explaining along the way.\", \" The woman then shows the final product finished and there is an outro with the credits.\"]}, \"v_nKBjM-kdeeI\": {\"duration\": 141.69, \"timestamps\": [[0, 141.69], [25.5, 43.22], [43.22, 53.13], [53.13, 141.69]], \"sentences\": [\"A boy is plying on a jungle gym while a man video tapes him.\", \" He goes down the slide and runs around to the other side.\", \" The man talks to the camera for a bit and then begins to record the boy again.\", \" The man films the boy playing with a musical toy as the man talks to the camera.\"]}, \"v_e4XYZAs7tcs\": {\"duration\": 10.84, \"timestamps\": [[0, 10.84], [0.98, 1.74], [3.2, 3.52]], \"sentences\": [\"Two people are in a room playing wall ball.\", \" A man in a yellow shirt swings a tennis racket.\", \" A woman in a white shirt swings a tennis racket.\"]}, \"v_wHGDq_8dCuc\": {\"duration\": 232.47, \"timestamps\": [[2.32, 222.01], [11.62, 104.61], [104.61, 219.68]], \"sentences\": [\"A man in a karate outfit demonstrates different martial arts moves in a special effects background.\", \"  A man stands in a purple haze and begins to demonstrate martial arts moves using his hands as a exhibition.\", \"  The man then turns for a profile view and continues to exhibit and demonstrate martial arts moves.\"]}, \"v_lztbD1NRU4M\": {\"duration\": 23.01, \"timestamps\": [[0, 23.01], [0.69, 23.01], [7.82, 13.69], [10.35, 13.69]], \"sentences\": [\"Two boys are standing on a trampling.\", \" A dog is watching them.\", \" They grab each other and jump.\", \" One of them flips the other on to his shoulders.\"]}, \"v_Ix8WFQ6-yx8\": {\"duration\": 69.24, \"timestamps\": [[0, 69.24], [8.66, 10.73], [16.62, 18.35]], \"sentences\": [\"Two men play squash in an indoor court.\", \" The two men toss the ball back and forth between rounds.\", \" One man tosses the ball to the other again.\"]}, \"v_lKKimizxQJM\": {\"duration\": 39.45, \"timestamps\": [[0, 11.64], [9.86, 22.49], [24.85, 39.45]], \"sentences\": [\"a boy plays a round of hopscotch.\", \" the boy then turns around and plays another round of hopscotch.\", \" after a girl plays hopscotch.\"]}, \"v_yA3AD9jU7QU\": {\"duration\": 207.89, \"timestamps\": [[0, 48.85], [48.85, 92.51], [92.51, 140.33], [140.33, 180.86], [180.86, 194.38]], \"sentences\": [\"A black screen appears and the title comes across in white words describing a reverse Tubal performance is about to take place.\", \"All of a sudden,a male nurse walks in wearing blue scrubs,and goes immediately towards the sink.\", \"While he's washing his hands,he makes sure to wash his hands thoroughly and take all of he debris from up under his nails.\", \"Next,he takes a small orange scrubber and begins to wash ferociously between his fingers and up his arm before switching to do it with the other hand.\", \"The RN then retreats down the hallway,turns around to open the door with his backside and grabs a sterile towel to dry his hands.\"]}, \"v_FExyWFc1nU0\": {\"duration\": 33.9, \"timestamps\": [[0, 11.36], [10.85, 25.43], [24.75, 33.9]], \"sentences\": [\"A man is sitting on a horse.\", \" He jumps off the horse and ties the legs of a calf.\", \" He stands up and walks back to his horse.\"]}, \"v_VceicZDzH3U\": {\"duration\": 195.16, \"timestamps\": [[0, 19.52], [20.49, 31.23], [31.23, 37.08], [37.08, 86.85], [87.82, 96.61], [97.58, 156.13], [157.11, 161.99], [162.96, 188.33], [188.33, 195.16]], \"sentences\": [\"We see a title screen over a man holding a cat and see a jack-o-lantern of the man.\", \" We see a boy cut open and clean out a pumpkin.\", \" The man walks to the sink and back to his chair.\", \" He tapes a picture of the man to the pumpkin and pokes holes in the picture.\", \" The man carves the pumpkin with a small knife.\", \" The man goes into the living room and comes back and carves the pumpkin.\", \" The man goes to the sink then leaves the room and comes back.\", \" The man finishes carving  and walks away.\", \" We see the pumpkin superimposed on the starting image.\"]}, \"v_WQmJrfjOF7o\": {\"duration\": 187.08, \"timestamps\": [[0, 59.87], [29, 157.15], [97.28, 187.08]], \"sentences\": [\"The man walked to the kitchen and put thread on the floor.\", \" The man began placing the tiles on the floor and measuring the corner and cutting the tiles.\", \" The man roll a rolling pin on the floor and put a cream on it and cleaned up the floor.\"]}, \"v_obUkL-Ya8dE\": {\"duration\": 211.81, \"timestamps\": [[2.12, 18], [27.54, 50.84], [51.89, 80.49], [83.67, 110.14], [105.91, 176.86], [199.1, 211.81]], \"sentences\": [\"A man comes to a stop riding a bike down a hillside and talks.\", \" The man stand in front of a rock wall talking.\", \" The man uses a tool to adjust the and runs it through the different gears by hand.\", \" The man adjusts the brakes and the handle bar grips.\", \" The man pulls the cable through from the handlers to the shifter to the derailleur and ties its end.\", \" The man takes off and rides away.\"]}, \"v_A4PdcfWqrN8\": {\"duration\": 188.44, \"timestamps\": [[0, 36.75], [28.27, 62.19], [54.65, 99.87], [84.8, 138.51], [115.89, 188.44]], \"sentences\": [\"a woman holding two frisbees spins around in a circle.\", \" a dog spins around in a circle with her.\", \" the woman stops spinning, the dog then stands on the woman's back.\", \" the woman throws the frisbee and the dog catches it.\", \" the woman and the dog continue to do various tricks.\"]}, \"v__15t4WTR19s\": {\"duration\": 238.28, \"timestamps\": [[4.77, 13.11], [14.3, 32.17], [33.36, 48.85], [50.04, 56], [57.19, 72.68], [73.87, 94.12], [95.31, 110.8], [111.99, 120.33], [121.52, 131.06], [132.25, 163.22], [164.42, 178.71], [179.9, 189.44], [190.63, 219.22], [220.41, 229.94]], \"sentences\": [\"A chef stands as she talks near a kitchen island.\", \" The chef grabs a bowl of salad and shows it off.\", \" The chef puts down the bowl to grab another bowl of chopped apples which she throws into a bowl.\", \" The chef grabs a cup of nuts and throws it on top of a salad.\", \" The chef throws cheese into the salad.\", \" The chef shows off her salad before proceeding to pour olive oil into a cup.\", \" The chef squeezes a lemon into the same cup.\", \" The chef pours soy sauce into the cup, too.\", \" With a spoon, the chef pours in a spice and some salt into the cup.\", \" The chef shows off shredded garlic before throwing it into the cup.\", \" With a spoon, the chef stirs all of the ingredients in the cup.\", \" The chef pours the ingredients into the salad.\", \" The chef grabs two salad utensils and tosses the salad.\", \" The chef shows off the fully prepared salad.\"]}, \"v_Et4GHTvGbg0\": {\"duration\": 59.77, \"timestamps\": [[0, 10.46], [10.46, 59.77], [21.82, 41.24], [41.54, 59.77]], \"sentences\": [\"A story was written describing the weather and and the name of woman, Jen.\", \" Jen in winter clothes is shoveling ice towards the pile of snow.\", \"  She pats the side of the snow and continues shoveling some more gesturing how strong she was.\", \" She continues nonstop shoveling and throwing the ice over her shoulder.\"]}, \"v_-0r0HEwAYiQ\": {\"duration\": 43.68, \"timestamps\": [[0, 5.02], [7.86, 26.42], [27.52, 43.68]], \"sentences\": [\"A woman pushes a button on a vacuum.\", \" It seems to catch on the carpet.\", \" A close up is shown of it hanging as she tries to vacuum.\"]}, \"v_yl37hI-Bgkk\": {\"duration\": 57.47, \"timestamps\": [[0, 9.48], [11.78, 33.62], [34.48, 57.47]], \"sentences\": [\"A man is standing inside a building.\", \" He uses tools to shave and clean another man's neck.\", \" The man then signs a sheet to have his hair shaved off.\"]}, \"v_op58Lalekrk\": {\"duration\": 205.59, \"timestamps\": [[0, 205.59], [0, 70.93], [70.93, 80.18], [80.18, 205.59], [184, 196.34]], \"sentences\": [\"A woman is standing behind a music stand.\", \" She is playing a flute.\", \" She sets the flute down and looks around.\", \" She picks the flute back up and begins playing.\", \" People are seen watching her play.\"]}, \"v_UxR9fdD0Vzw\": {\"duration\": 129.8, \"timestamps\": [[0, 16.87], [20.12, 44.13], [54.52, 129.8]], \"sentences\": [\"A man is shown inside a workshop.\", \" He is then shown outdoors, applying gear around his waist.\", \" He uses a trimmer to trim and cut the hedges in his yard.\"]}, \"v_RPr1ZbIGLwU\": {\"duration\": 223.42000000000002, \"timestamps\": [[0, 36.86], [44.68, 172.04], [184.32, 223.42]], \"sentences\": [\"A woman is seen talking outside.\", \" She holds up a cardboard roll.\", \" She kneels on a floor and shows how to apply a rug so it will stay in place.\"]}, \"v_eVTMUEYhwDE\": {\"duration\": 13.1, \"timestamps\": [[0, 12.38], [0.07, 0.52], [1.7, 12.38]], \"sentences\": [\"A man in a weightlifting outfit stands in front of a small group of people and lifts a heavily weighted bar bel from an elevated platform, above his head.\", \"  A man in a body suit bends before a bar bell with his hands on the bar.\", \"  The man then lifts the barbell above his head before changing leg stance to better support the weight and finally allowing the bell to drop to the floor from the height of his head and bounce as helpers rush the stage to get the bell.\"]}, \"v_drzTgrfN19M\": {\"duration\": 197.72, \"timestamps\": [[0, 9.89], [9.89, 43.5], [43.5, 59.32], [59.32, 153.23], [153.23, 176.96], [176.96, 190.8], [190.8, 197.72]], \"sentences\": [\"An introduction comes onto the screen for a video about a pasta dish.\", \" A man explains the dish and shows the ingredients that he will use to make it.\", \" He started by soaking porcini mushrooms in some water until they are soft.\", \" He heats up some cream and chops up the porcini mushrooms to add to the cream with some seasonings.\", \" He adds some cooked pasta into the porcini sauce with some reserved pasta liquid.\", \" He serves up the dish on a plate and tastes it.\", \" The video ends with the closing credits shown on the screen.\"]}, \"v_ntS2PA5YWuA\": {\"duration\": 139.09, \"timestamps\": [[4.17, 60.5], [61.89, 75.8], [79.98, 94.58], [113.36, 130.74]], \"sentences\": [\"A person puts a tire on a wheel with a tool on a pallet.\", \" They spray around the tire.\", \" They kick the tire with their feet.\", \" They pump up the tire with a red pump.\"]}, \"v_a_uamUiKq1o\": {\"duration\": 45.49, \"timestamps\": [[0, 6.37], [4.55, 42.53], [14.56, 32.07], [14.56, 35.48], [37.3, 44.81]], \"sentences\": [\"Four army men are hanging out in a room.\", \" Two of them start to play a game of arm wrestling.\", \" The other two watch and record the match with a cellphone.\", \" The two continue to arm wrestle.\", \" The army man on the right is the winner and the rest cheer and jeer.\"]}, \"v_FUvUDCZxAO8\": {\"duration\": 139.95, \"timestamps\": [[0, 18.19], [16.79, 44.78], [30.09, 139.95]], \"sentences\": [\"The man with long hair is talking to the camera and holding a wooden bow.\", \" The man picked up the bow and arrow.\", \" The man with long hair began shooting the arrows to the target, took out the arrows and began shooting the arrow from farther distance.\"]}, \"v_xunKd050v7U\": {\"duration\": 63.07, \"timestamps\": [[0.63, 26.49], [25.54, 52.66], [46.67, 61.8]], \"sentences\": [\"A close up of a lemon is shown with liquid being squeezed out.\", \" A dog is seen walking away and then hiding in the corner.\", \" A person walks up to pet the dog.\"]}, \"v_Lp3c3nwHrqM\": {\"duration\": 215.62, \"timestamps\": [[0, 36.66], [40.97, 121.83], [128.29, 215.62]], \"sentences\": [\"A woman is seated in her kitchen.\", \" She is holding a bottle of dish washing liquid and talking.\", \" She lathers up with the dish soap, showing how clean it gets her dishes.\"]}, \"v_9I42aiA-UcY\": {\"duration\": 56.69, \"timestamps\": [[0, 15.31], [12.76, 41.67], [36, 55.56]], \"sentences\": [\"A dog is seen laying in a tub with a person's hand rubbing it's belly.\", \" The dog looks up to the camera and smiles.\", \" The person continues rubbing the dogs belly in the tub.\"]}, \"v_M_E1i4S8Vp0\": {\"duration\": 101.35, \"timestamps\": [[0, 18.75], [19.76, 71.45], [60.3, 95.26]], \"sentences\": [\"A young girl is seen dancing around in front of a swing.\", \" The jumps on the swing and moves herself back and fourth.\", \" She continues riding up and down on the swing.\"]}, \"v_p42wxuN8MZE\": {\"duration\": 118.0, \"timestamps\": [[0, 34.22], [34.81, 56.64], [57.23, 118]], \"sentences\": [\"A woman in a coach's uniform speaks to camera from the sidelines of an indoor basketball court.\", \" The screen fades black and the woman returns speaking some more.\", \" Girls are playing tennis on the court.\"]}, \"v_oAJlaJ8xcwY\": {\"duration\": 23.57, \"timestamps\": [[0, 0.71], [0.82, 12.96], [12.96, 22.39]], \"sentences\": [\"A woman in a bikini is sitting in a chair.\", \" She stands up and gets lotion off of a table.\", \" She sits back down and puts the lotion on her leg.\"]}, \"v_z-_snl6eaPE\": {\"duration\": 20.57, \"timestamps\": [[0, 4.73], [4.63, 13.68], [12.96, 20.57]], \"sentences\": [\"a hockey game is in progress.\", \" two hockey players ram into each other and begin fighting.\", \" the referee skates over and breaks up the fight.\"]}, \"v_zPV8s8ZuLBY\": {\"duration\": 185.78, \"timestamps\": [[0, 55.73], [46.45, 116.11], [120.76, 184.85]], \"sentences\": [\"Two men are seen speaking to the camera with one holding a guitar.\", \" The men then begins playing the guitar while another plays the harmonica and sings.\", \" The men continue to make music together and stop at the same time.\"]}, \"v_FcfoTk3UK5g\": {\"duration\": 166.46, \"timestamps\": [[0, 28.3], [34.96, 109.03], [98.21, 164.8]], \"sentences\": [\"A large group of people are seen standing around a gymnasium with people fencing in between.\", \" Close up shots are shown of people fencing back and fourth.\", \" People continue to fence with one another as people watch on the sides.\"]}, \"v_dJ0kxnyVzFI\": {\"duration\": 164.19, \"timestamps\": [[0, 28.73], [26.27, 87.02], [97.69, 164.19]], \"sentences\": [\"a man stands in front of a pass crowd and talks to the camera.\", \" hundreds of people are running a marathon.\", \" an anchorwoman then talks to the camera.\"]}, \"v_y3Zq6RZZNtc\": {\"duration\": 25.12, \"timestamps\": [[0, 2.39], [3.14, 14.2], [14.82, 25.12]], \"sentences\": [\"A girl is sitting outside on the grass.\", \" She is putting on her socks and shoes.\", \" She shows off her new shoes while she talks.\"]}, \"v_43R60vMRook\": {\"duration\": 112.53999999999999, \"timestamps\": [[0, 39.95], [40.51, 98.47], [98.47, 112.54]], \"sentences\": [\"A red and white title screen appears with words in Spanish saying,Como Hacer!After,several images of different females appear and they are all hula hooping.\", \"A thin young woman with glasses thin stands in front of a white wall and begins demonstrating how to hula hoop.\", \"She begins with two around her waist then they move to her neck,ankle, and wrist.\"]}, \"v_BtrGC6PUPJk\": {\"duration\": 26.59, \"timestamps\": [[0, 26.59], [0, 26.06], [2.13, 26.06], [4.39, 26.06]], \"sentences\": [\"Several martial artists are outside on tile.\", \" They are surrounded by a crowd of people.\", \" They are beside a large building.\", \" They demonstrate several moves to them.\"]}, \"v_35WvCw9Qcqk\": {\"duration\": 182.49, \"timestamps\": [[0, 36.5], [30.11, 114.05], [107.67, 182.49]], \"sentences\": [\"a kid is skate boarding down an empty street.\", \" another kid skate boards behind the first kid.\", \" they both then zig zag down the street together.\"]}, \"v_5TjIJOFGupI\": {\"duration\": 67.62, \"timestamps\": [[0, 22.65], [21.98, 24.34], [24.68, 67.62]], \"sentences\": [\"A pair of hands is shown putting sandwich ingredients on a bun.\", \" The hands move the bun to one side to access other ingredients.\", \" The hands resume putting ingredients on the bun.\"]}, \"v_FRJLhGFpCGE\": {\"duration\": 201.88, \"timestamps\": [[0, 5.05], [5.05, 61.57], [62.58, 113.05], [115.07, 201.88]], \"sentences\": [\"The words \\\"Dathan Ritzenhein NYC Marathon 2010\\\" appear on a black screen.\", \" Still and clips of a man running marathons are shown with overlaid graphics showing angles.\", \" Strides used during a marathon are shown and illustrated.\", \" A man doing seated foot exercises is shown with a count of repetitions shown.\"]}, \"v_FnbVnRX6WxQ\": {\"duration\": 94.22999999999999, \"timestamps\": [[0, 42.87], [0, 93.28], [0, 94.23], [12.25, 40.52], [42.4, 56.54], [57.01, 79.62], [79.15, 83.86], [83.86, 94.23]], \"sentences\": [\" A man is sitting on a workout bench while a crowd watches.\", \" People in the crowd are taking photographs and video.\", \" Two announcers talk about boxing.\", \" The man begins doing situps on the bench.\", \" The man gets off the bench and folds a towel on the ground.\", \" The man grabs a crunch wheel and begins to do rolling crunches.\", \" The man then pauses briefly to acknowledge the crowd.\", \" The man then returns to doing his exercise.\"]}, \"v_T7kOKW76EsA\": {\"duration\": 103.7, \"timestamps\": [[0, 32.67], [32.15, 75.18], [68.44, 100.59]], \"sentences\": [\"A close up of a floor is shown with a person walking in and out of frame.\", \" A vacuum is shown afterwards moving in and out.\", \" The vacuum sucks up the mess on the floor while a person's feet are shown.\"]}, \"v_rqnzzNYt2cE\": {\"duration\": 177.49, \"timestamps\": [[0, 36.39], [31.95, 113.6], [93.18, 172.17]], \"sentences\": [\"A car pulls up and shows a man driving and speaking to the camera.\", \" A man is then seen skateboarding down a long road.\", \" He skates past several cars and obstacles and ends with the man getting out of the car.\"]}, \"v_FsS8cQbfKTQ\": {\"duration\": 74.61, \"timestamps\": [[0, 10.44], [14.55, 47.37], [50.36, 74.61]], \"sentences\": [\"A man is running while holding a pole on a track.\", \" He uses the pole to vault through the air.\", \" He vaults over a high bar onto a mat.\"]}, \"v_DDh5-FjIegY\": {\"duration\": 26.37, \"timestamps\": [[0, 6.59], [5.93, 20.17], [19.38, 25.18]], \"sentences\": [\"A man is seen standing on a field while others walk around him.\", \" The man walks around a bit while holding onto a discuss.\", \" He spins his body around and throws the object, ending with his fists in the air.\"]}, \"v_oS4w7-0aH8Q\": {\"duration\": 57.21, \"timestamps\": [[0, 8.58], [10.3, 26.89], [29.47, 57.21]], \"sentences\": [\"a girl is standing in front of a balance beam.\", \" a woman stands next to her and watches.\", \" the girl climbs on the balance beam an performs several tricks.\"]}, \"v__A5iOie5VkM\": {\"duration\": 145.5, \"timestamps\": [[0, 11.64], [7.27, 61.11], [58.93, 145.5]], \"sentences\": [\"a young man is in a studio gym standing.\", \" the man then starts exercising on a stair stepper.\", \" the man completes and entire workout routine.\"]}, \"v_HCFF0svChQY\": {\"duration\": 31.23, \"timestamps\": [[0, 4.06], [5.31, 17.02], [19.21, 31.23]], \"sentences\": [\"A group of team mates are gathered on a track.\", \" An athlete runs and jumps into the sand.\", \" The crowd claps as he stands and walks away.\"]}, \"v_FqiMsRnatP0\": {\"duration\": 45.79, \"timestamps\": [[0, 16.03], [16.48, 31.14], [31.82, 36.4], [36.4, 41.9], [41.67, 45.79]], \"sentences\": [\"A woman helps a small child to hold a blue rod, while other individuals walk around in the background.\", \" The small child hits a pinata with the rod repeatedly.\", \" The small child walks to the front of the rod and pushes it.\", \" The child walks away as the pinata is lifted off the ground.\", \" The woman helps the small child with the rod again.\"]}, \"v_dBCiKzkJogg\": {\"duration\": 236.24, \"timestamps\": [[1.18, 63.78], [48.43, 161.82], [134.66, 218.52]], \"sentences\": [\"A group of people are seen walking around a room speaking to one another.\", \" People walk in and out of frame as the people begin playing beer pong.\", \" The people play continuously with one another while others watch on the side and people hug.\"]}, \"v_c5dvRUBZw2Q\": {\"duration\": 234.32999999999998, \"timestamps\": [[0, 45.69], [43.35, 152.31], [126.54, 195.66]], \"sentences\": [\"A woman is seen smiling to the camera while people walk around a boat.\", \" Several jump into the water and begin swimming underwater with scuba gear.\", \" The people continues to swim around the ocean while holding up cards and gesturing to one another.\"]}, \"v_eRHbpYeYtxo\": {\"duration\": 15.12, \"timestamps\": [[0, 1.28], [1.97, 10.51], [10.66, 15.12]], \"sentences\": [\"A weight lifter is seen inside a gym.\", \" He lifts a barbell up to his chest.\", \" He then lifts it over his head before dropping it.\"]}, \"v_HgOHqD0lWTE\": {\"duration\": 137.56, \"timestamps\": [[0, 19.26], [21.32, 106.61], [107.29, 137.56]], \"sentences\": [\"A man walks down to a lake with a little boy.\", \" A couple of men are shown at a camp site together.\", \" We then see them cooking and building a fire.\"]}, \"v_SibfKtVX3CQ\": {\"duration\": 234.1, \"timestamps\": [[0, 53.84], [47.99, 136.95], [135.78, 230.59]], \"sentences\": [\"Two men are shown speaking that leads into clips of a soccer match.\", \" Team mates high five one another and continue playing all along the field.\", \" The teams continue to play against one another while the man speaks to the camera.\"]}, \"v_NGBaYycOQT0\": {\"duration\": 29.28, \"timestamps\": [[0.29, 6.59], [6.59, 19.62], [18.01, 28.11]], \"sentences\": [\"A person is seen walking into frame holding a racket.\", \" The person moves around a bit and looks off in the distance.\", \" A machine holding a racket is seen spinning around.\"]}, \"v_caPl3Aszru0\": {\"duration\": 67.22, \"timestamps\": [[4.71, 22.86], [22.52, 26.55], [54.11, 61.84]], \"sentences\": [\"A woman jumps off a diving board into the water.\", \" A man in a red shirt claps his hands.\", \" The woman takes a shower after diving.\"]}, \"v_ZncidS9kQ-g\": {\"duration\": 57.8, \"timestamps\": [[0, 6.07], [7.22, 35.25], [37.57, 57.8]], \"sentences\": [\"A man is dressed in a spiderman outfit.\", \" He is leaning against a rail inside a building.\", \" He is playing a saxophone.\"]}, \"v_PT4x_Y5lu_g\": {\"duration\": 147.94, \"timestamps\": [[0, 12.57], [17.75, 68.79], [71.75, 147.94]], \"sentences\": [\"A group of swimmers gather in front of judges.\", \" A girl dives off the board into the water.\", \" They take turns as they flip through the air into the pool.\"]}, \"v_DeoqC3oVV38\": {\"duration\": 201.8, \"timestamps\": [[10.09, 57.51], [23.21, 57.51], [52.47, 186.66]], \"sentences\": [\"The woman is riding her lifebuoy and holding on to the other lifebuoy.\", \" A man is holding a can of beer and offering it to the woman.\", \" The group of people are riding through the calm water up, then the water got wavy.\"]}, \"v_xRuZMDClaQM\": {\"duration\": 189.71, \"timestamps\": [[0, 189.71], [15.18, 21.82], [46.48, 61.66], [80.63, 100.55], [112.88, 128.05], [159.35, 189.71]], \"sentences\": [\"Two men fence indoors in costume as a machine keeps track and lights up red and green and  the teacher and other students watch.\", \" The guy on the right gets the point but both guys pump their fist in triumph.\", \" The teacher approaches and talks to the left guy.\", \" The right guy wins a point he pumps his fist and removes his helmet.\", \" The left guy bends down and pumps his fist.\", \" The teacher talks to the guy on the right the men step back and the camera pans down.\"]}, \"v_ZBoa0UN86Qw\": {\"duration\": 130.73, \"timestamps\": [[26.8, 27.45], [29.41, 91.51], [100.01, 103.93]], \"sentences\": [\"A man is dribbling two basketballs on a court.\", \" A man blocks another man with a blue mat.\", \" A man shoots a basket and scores.\"]}, \"v_RGMSc1tfkzA\": {\"duration\": 124.11, \"timestamps\": [[0.62, 22.96], [27.92, 29.17], [40.96, 42.2]], \"sentences\": [\"People are doing flips off of jumping boards into the water.\", \" People are standing in the swimming pool.\", \" A woman's face is shown with bruises on it.\"]}, \"v_qL7kMgxpFJY\": {\"duration\": 54.08, \"timestamps\": [[0, 5.95], [2.16, 9.19], [14.06, 52.19], [20.82, 52.19]], \"sentences\": [\"A man pours concrete onto a plate.\", \" He is wearing a blue uniform.\", \" He then spreads it onto a wall.\", \" He spreads it around evenly.\"]}, \"v_YRMbCxetWtg\": {\"duration\": 82.13, \"timestamps\": [[0, 82.13], [15.19, 16.43], [25.05, 25.87], [66.94, 78.02]], \"sentences\": [\"Two men are playing wall ball in a room.\", \" A man hits the wall and lands on the ground.\", \" The other man falls down onto the ground.\", \" The man stands up and pulls a tooth out of his mouth.\"]}, \"v_Jd6dM5p91M4\": {\"duration\": 194.77, \"timestamps\": [[0, 180.16], [4.87, 57.46], [52.59, 172.37], [57.46, 177.24], [81.8, 176.27], [181.14, 194.77]], \"sentences\": [\"There are several people wearing helmets and vests, rowing rafts in the river in the wilderness.\", \" Groups of people are waiting at the top part of the river slope, ready to begin their journey down the river while some other rafters are standing on the banks of the river.\", \" The rafters go down the river through the turbulent water and waves of the river.\", \" The rafters go down the turbulent water trying hard to stay afloat as they combat the rapid flowing river.\", \" They continue rafting down the river as they row through the waves.\", \" Still pictures of some of the rafters standing in the wilderness are shown.\"]}, \"v_a39_RoOBkX0\": {\"duration\": 11.43, \"timestamps\": [[0, 2.17], [2.86, 7.2], [7.65, 11.43]], \"sentences\": [\"A group is gathered closely together at sinks in a commercial kitchen.\", \" The camera goes around in a circle, recording them as they wash.\", \" they are all wearing gloves and aprons as they wash the dishes.\"]}, \"v_En9FemmDusk\": {\"duration\": 279.59000000000003, \"timestamps\": [[0, 41.94], [61.51, 230.66], [241.85, 279.59]], \"sentences\": [\"A baby kitten is lying down on a bed.\", \" It is playing with a pair of clippers.\", \" A boy gets on the bed, petting the kitten and showing how to clip its nails.\"]}, \"v_KBG7wrKsZAI\": {\"duration\": 181.26, \"timestamps\": [[0, 181.26], [16.31, 21.75], [29, 38.06], [48.03, 53.47], [127.78, 130.5]], \"sentences\": [\"A lady and a man in karate uniforms practice kicks in a room with carpet.\", \" The lady almost falls trying to kick the man.\", \" The cameraman's finger is on the screen.\", \" The finger returns on the screen.\", \" The finger appears gain briefly.\"]}, \"v_rAO-_VxIJng\": {\"duration\": 46.81, \"timestamps\": [[0, 15.45], [13.11, 33.24], [28.32, 46.81]], \"sentences\": [\"People are seen walking around a neighborhood with some walking dogs.\", \" A young girl walks a dog around the area.\", \" Another man follows her from behind.\"]}, \"v_uyzQkTArIwU\": {\"duration\": 235.22, \"timestamps\": [[0, 235.22], [30.58, 235.22], [30.58, 226.99]], \"sentences\": [\"Two men are playing kick dance at the center of the circle.\", \" One man in blue pants joined the dance then the other man went off the stage.\", \" One man will join the dance and then other man will get off the stage.\"]}, \"v_5GZNSTv1rVs\": {\"duration\": 118.82, \"timestamps\": [[0, 4.75], [5.35, 26.73], [28.52, 51.69], [60.6, 118.82]], \"sentences\": [\"A boy is shown holding a fish with the words \\\"Paddle fish caught ice fishing?\\\".\", \" A man is seen sitting on a bucket on the ice fishing through a hole in the ice.\", \" He catches a fish and then puts it back in the water under the ice.\", \" He then catches a few more fish afterwards.\"]}, \"v_foZ88hBB77I\": {\"duration\": 70.1, \"timestamps\": [[0, 16.12], [17.88, 41.01], [37.86, 68]], \"sentences\": [\"A man is seen sitting at a table with other people sitting and walking around him.\", \" A woman rubs a mans shoulders while he attempts to solve a rubix cube.\", \" The man solves the puzzle and the girl laughs.\"]}, \"v_OwSdSL_4sxU\": {\"duration\": 36.22, \"timestamps\": [[0, 36.22], [0.91, 36.22], [0, 36.04]], \"sentences\": [\"team are in a pool playing water polo in a rofed gym.\", \" in the bacground two people are standing nex to a pool watching the game.\", \" in stands three people are sitting watching the game.\"]}, \"v_JDg--pjY5gg\": {\"duration\": 126.18, \"timestamps\": [[1.89, 116.71], [7.57, 22.08], [23.34, 78.86], [72.55, 116.71]], \"sentences\": [\"A group of people compete in an indoor beer pong tournament.\", \"  A man in a red and black shirts talks to the camera in a close up shot before the scene cuts away to a room filled with people playing or watching people plat beer pong.\", \"  People are shown throwing ping pong balls into beer filled cups.\", \" A group of people accept trophies at the event as onlookers celebrate and drink beer and the man returns to speak briefly into the camera.\"]}, \"v_pHiulmPx7ek\": {\"duration\": 216.64, \"timestamps\": [[0, 53.08], [46.58, 126.74], [124.57, 210.14]], \"sentences\": [\"A large group of girls are seen playing a game of field hockey down a field.\", \" Several clips are shown of people running around chasing a ball.\", \" The girls continue to play with one another while the camera pauses frequently to capture their movements.\"]}, \"v_N_um3L3w1uQ\": {\"duration\": 39.59, \"timestamps\": [[0, 37.02], [16.43, 17.22], [35.63, 36.82], [39.39, 39.59]], \"sentences\": [\"Guys are moving around a outside basketball court with leg extensions.\", \" The guys give each other high five.\", \" A guy points and smiles.\", \" The shadow of a man holding a recording device is the floor.\"]}, \"v_gzdasX0KIVg\": {\"duration\": 234.61, \"timestamps\": [[0, 25.81], [35.19, 139.59], [141.94, 234.61]], \"sentences\": [\"A woman is working inside a salon.\", \" She has a small dog on a table.\", \" She continues grooming and clipping the dog.\"]}, \"v_NiinNJg-uyg\": {\"duration\": 117.59, \"timestamps\": [[16.46, 22.93], [37.63, 89.95], [113.47, 117.59]], \"sentences\": [\"Two men are standing on a field carrying nets.\", \" They guard each other and play Lacrosse.\", \" Words come onto the screen.\"]}, \"v_R4oYA0Zu-m0\": {\"duration\": 215.74, \"timestamps\": [[0, 25.89], [30.2, 114.34], [125.13, 215.74]], \"sentences\": [\"A car pulls into a driveway and women get out.\", \" They lie down in front of a pool, then follow a group of men down to the water.\", \" They ride on the waves together as they are pulled by a boat.\"]}, \"v__WMRdq7yFpA\": {\"duration\": 10.54, \"timestamps\": [[0, 0.37], [1.48, 6.85], [7.22, 10.54]], \"sentences\": [\"A man is diving under the ocean water.\", \" He swims away from the camera, looking back.\", \" He then turns sideways, still watching and swimming.\"]}, \"v_wMwJObSq21Y\": {\"duration\": 132.94, \"timestamps\": [[0, 23.26], [23.93, 72.45], [72.45, 107.01], [107.68, 132.94]], \"sentences\": [\"Several women are in a workout room,with pink steppers placed on the ground in front of them and silver fans on the wall.\", \"The instructor then begins stepping up and down on the mat and begins the routine.\", \"As the routine becomes more rigorous,the ladies attempt to keep up but all of them aren't and one ends up just walking away until she has gained clarity.\", \"All of the ladies continue on with the exercise,doing steps kicks and turns in the room until the workout is complete.\"]}, \"v_kGvs0Nv5zJo\": {\"duration\": 123.32, \"timestamps\": [[0, 6.78], [6.78, 18.5], [18.5, 123.32]], \"sentences\": [\"First the news reporter tells viewers what horrible event is going on.\", \" Then we get a small glimpse of people sitting outside at the candle vigil.\", \" Then a man is shown talking to the news reporter outside about how great the person is who's missing and what could have happened to the person.\"]}, \"v_DEduSDgovOQ\": {\"duration\": 170.62, \"timestamps\": [[0, 51.19], [51.19, 117.73], [117.73, 170.62]], \"sentences\": [\"Six small rectangles appear on the screen with a different girl in each one grooming a different dog.\", \"After,three rectangles appear and the same girl is doing another action in each one to groom the dog.\", \"After,the girl appears with a white Shih Zhu and starts to cut its hair with clippers first and a pair of scissors following,until the grooming is complete.\"]}, \"v_El_q7DhzArg\": {\"duration\": 4.13, \"timestamps\": [[0, 0.81], [0.79, 2.03], [2.05, 2.96], [2.91, 4.13]], \"sentences\": [\"A woman in a baby blue shirt is at a park practicing.\", \" She is outside all by herself and no one else seems to be around at al.\", \" It is daytime outside and she is on some concrete near the grass.\", \" She has a baton and she does some cool trick with it.\"]}, \"v_xekPSA9h_jg\": {\"duration\": 60.56, \"timestamps\": [[0.61, 18.17], [17.26, 43.3], [37.55, 59.65]], \"sentences\": [\"Two people are seen walking around a fooseball table playing.\", \" The people grab the poles and hit the ball around the table.\", \" They continue to play with one another.\"]}, \"v_USWExMIMcik\": {\"duration\": 45.7, \"timestamps\": [[0, 7.77], [7.77, 15.08], [15.08, 45.7]], \"sentences\": [\"man wearing a white shirt is standing next to an old man.\", \" old man is sitting on a chair in front of a shufleboard court.\", \" two men are standing on the ohe part of the court playing shuffleboard.\"]}, \"v_qiRrR2Nj2SQ\": {\"duration\": 133.86, \"timestamps\": [[0, 13.39], [14.06, 47.52], [48.86, 76.97], [76.97, 133.86]], \"sentences\": [\"There is an intro with flashing images and then a logo shown and a man walking on an exercise machine.\", \" Then we see people on stationary bikes and a man in the front talks for a bit.\", \" Several people are riding on stationary bikes while music plays.\", \" The man in front talks some more and the logo is shown again at the end.\"]}, \"v__Wag6CT_0j8\": {\"duration\": 232.5, \"timestamps\": [[0, 41.85], [41.85, 119.74], [123.23, 232.5]], \"sentences\": [\"Two teams of woman play hurling in a field.\", \" The team wearing white t-shirt scores, and they jumps to celebrate.\", \" A TV reporter interviews players talking and asking questions to them.\"]}, \"v_nCzB1iXKYk4\": {\"duration\": 208.68, \"timestamps\": [[0, 104.34], [103.3, 208.68], [186.77, 189.9]], \"sentences\": [\"A man is dancing on the sidewalk.\", \" Another person's feet are shown dancing.\", \" Words are shown on the screen.\"]}, \"v_TfpCjzGqA7w\": {\"duration\": 26.29, \"timestamps\": [[0, 25.37], [0, 26.29], [15.38, 26.29]], \"sentences\": [\"little girl is in backyard holding a pole and hiting a pi\\u00f1ata.\", \" womena re in a table behind the litle girl waching her.\", \" man is standing next to a house in front of the pi\\u00f1ata.\"]}, \"v_DQ9EaCSFwGI\": {\"duration\": 205.28, \"timestamps\": [[0, 82.11], [82.11, 185.78], [185.78, 205.28]], \"sentences\": [\"Several skateboarders are skating down a very steep hill recording themselves at the same time.\", \" They begin to show recordings of themselves doing different tricks as they ride down the Hills.\", \" At the end of the video they show themselves chatting and talking with the camera and the closing credits are shown.\"]}, \"v_06Eq9tgprBw\": {\"duration\": 172.59, \"timestamps\": [[0, 59.54], [52.64, 126.86], [114.78, 166.55]], \"sentences\": [\"Three people are seen laughing with one another and lead into them dancing.\", \" The group dances together with one another and smiling off in the distance.\", \" They continue dancing with one another and end by holding a pose.\"]}, \"v_FtbrPGaINt0\": {\"duration\": 85.17, \"timestamps\": [[0, 22.14], [25.98, 61.75], [64.3, 85.17]], \"sentences\": [\"A female swimmer walks across the diving board alongside another swimmer.\", \" They stand at the end of the boards in position.\", \" They backflip into the water while people clap.\"]}, \"v_W1FmiUTYt3I\": {\"duration\": 121.76, \"timestamps\": [[0, 2.44], [2.44, 9.13], [9.74, 57.83], [58.44, 92.53], [93.14, 121.76]], \"sentences\": [\"A little boy looks through the window shutters on a plastic playhouse.\", \" Then a man is shown and they are seen going down a slide.\", \" Then both the man and the boy are in the window again, and they are talking about washing hands and wipes, the video flashes back to all the things the boy does with his hands and back to the window.\", \" The boy and the man then show how to wash hands and all the steps.\", \" At the end they are at a table and eating food, giving tips about what is sanitary and healthy handling food.\"]}, \"v_ah3tGziTbds\": {\"duration\": 127.46, \"timestamps\": [[0, 26.77], [31.23, 84.76], [82.21, 117.26]], \"sentences\": [\"A close up of a board is shown with a person pointing around.\", \" This leads into boats boats riding along the water with people steering.\", \" The people continue to ride along the water and leads back to the man with the board.\"]}, \"v_mdu7eHlbDwc\": {\"duration\": 161.07999999999998, \"timestamps\": [[0, 30.6], [51.54, 111.14], [114.36, 161.08]], \"sentences\": [\"Several images are shown of various sports.\", \" A man is scuba diving in a swimming pool.\", \" He is joined by other divers, and a woman does an interview.\"]}, \"v_Vyj5eIh3jh0\": {\"duration\": 10.87, \"timestamps\": [[0.05, 1.63], [1.3, 5.32], [5.54, 10.54]], \"sentences\": [\"A fire is seen being lit.\", \" The fire spreads all along the sand.\", \" The fire continues going up higher and higher.\"]}, \"v_37pnsj0hlZ4\": {\"duration\": 111.15, \"timestamps\": [[0, 20.56], [22.79, 66.14], [75.58, 111.15]], \"sentences\": [\"A machine is shown sitting in a living room floor.\", \" A man sits on the equipment and straps it onto his feet.\", \" He then demonstrates how to pulll the cord and move his body up and down the machine.\"]}, \"v_FLZPaPf027E\": {\"duration\": 102.39, \"timestamps\": [[0, 27.13], [27.13, 66.55], [66.55, 70.14]], \"sentences\": [\"A man in a black hat is talking to the camera.\", \" He begins playing a harmonica he is holding in his hand.\", \" He sets the harmonica down and continues talking.\"]}, \"v_aNE5ZWD5E34\": {\"duration\": 140.74, \"timestamps\": [[0, 14.78], [14.78, 89.37], [78.81, 137.92]], \"sentences\": [\"Two people are seen hosting a news segment that leads into people speaking to the camera.\", \" Several shots are shown of people putting sunscreen on as well a close ups of sunscreen.\", \" Another woman speaks to the camera while others continue to put sun screen on each other.\"]}, \"v_Pp5DCsgaALg\": {\"duration\": 153.21, \"timestamps\": [[0, 41.37], [33.71, 91.92], [87.33, 153.21]], \"sentences\": [\"different knives are shown on display.\", \" a man standing over a machine making knives.\", \" the man is then sitting on top of a machine making knives.\"]}, \"v_TpgtCuYz0RQ\": {\"duration\": 122.42, \"timestamps\": [[0, 12.85], [12.85, 67.33], [67.94, 108.34], [108.34, 122.42]], \"sentences\": [\"Several people are laid out on the beach and a boy walks over and gives a girl a frisbee.\", \"As the young lady holds the frisbee,she begins talking to her friend about the game and the guy holds a can in his hand.\", \"The girl then gets up and they begin playing a game rock,paper,scissor shoot;the girl loses and the male kisses her on the cheek.\", \"After,several more videos appear of him doing this on several other occasions and a button to subscribe.\"]}, \"v_1mYtNMDFyXQ\": {\"duration\": 110.38, \"timestamps\": [[0, 20.42], [20.42, 47.46], [47.46, 77.26], [77.82, 99.34], [99.89, 110.38]], \"sentences\": [\"A black and white scene appears with two individuals sitting on a bench.\", \"The two then begin staring at each other intensely before the guy takes a drink of his tea with the spoon still in it.\", \"He becomes embarrassed and the lady starts drinking her tea and playing with her dog.\", \"After,the dog begins to mess with the guy and the snobby lady places her dog on the ground.\", \"To pass time,the man grabs a newspaper to read as the woman begins drinking out of bottle while two people come to get them.\"]}, \"v_oRtMsdNQ1LE\": {\"duration\": 71.83, \"timestamps\": [[1.08, 28.37], [10.42, 43.1], [29.45, 70.04]], \"sentences\": [\"A man is seen speaking to the camera with a headset on.\", \" He begins moving his hands on the drum.\", \" He continues hitting the drum while looking off into the distance.\"]}, \"v_keaMf0raxF8\": {\"duration\": 144.2, \"timestamps\": [[0, 52.63], [25.23, 100.94], [61.28, 135.54]], \"sentences\": [\"A small group of men are seen standing on ice with one speaking to the camera.\", \" The man bends down and demonstrates how to play curling.\", \" He pushes a puck back and fourth while using his feet and sliding away in the end.\"]}, \"v_kNAgK0nC9Ig\": {\"duration\": 233.66, \"timestamps\": [[0, 49.07], [43.23, 153.05], [146.04, 219.64]], \"sentences\": [\"People are seen walking on the beach that leads into a man surfing on the water.\", \" The man moves along the ocean on a surfboard while people watch on the side.\", \" Several shots are shown of the man riding waves while others watch from the side.\"]}, \"v_qNHfEf72V3g\": {\"duration\": 159.52, \"timestamps\": [[0, 20.74], [24.73, 85.34], [86.94, 159.52]], \"sentences\": [\"A large group of men are outside a warehouse.\", \" They run in, hiding behind obstacles.\", \" They have paintball guns, which they shoot at each other.\"]}, \"v_APlxSpTZVPI\": {\"duration\": 94.2, \"timestamps\": [[3.77, 5.18], [19.31, 33.91], [54.64, 71.12]], \"sentences\": [\"A man wearing jeans does a back flip.\", \"  A man wearing white pants plays an instrument.\", \"  A man wearing blue pants plays and instrument.\"]}, \"v_x-rGfBaFQek\": {\"duration\": 170.27, \"timestamps\": [[0, 68.11], [13.62, 170.27], [105.57, 170.27]], \"sentences\": [\"The woman is shoveling the snow on the ground.\", \" A dog came over and played with the snow as the woman throw the snow on the ground.\", \" The dog went behind the car and then near the woman and then near the car.\"]}, \"v_3nrianTc060\": {\"duration\": 225.1, \"timestamps\": [[0, 31.51], [27.01, 68.65], [48.4, 124.93], [122.68, 225.1]], \"sentences\": [\"2 adult skiers and one child skier stand at the top of a mountain.\", \" one adult skis down hill.\", \" the child skier skies next.\", \" the 2nd adult skies after the child.\"]}, \"v_q4QPF-qNBTY\": {\"duration\": 129.1, \"timestamps\": [[0, 19.37], [23.24, 95.54], [101.99, 129.1]], \"sentences\": [\"Several girls are gathered in a gym.\", \" They take turns running down the mat and doing flips over the beam.\", \" They are each named as they run and flip.\"]}, \"v_WFqr6QPsszQ\": {\"duration\": 150.91, \"timestamps\": [[0, 150.91], [20.37, 110.16], [110.16, 150.91]], \"sentences\": [\"This video shows viewers how to wrap gifts using cloth.\", \" First, the woman puts two books on both ends of the cloth and she folds both ends of the cloth together.\", \" Then when she's finished, it looks like a real purse in her hands.\"]}, \"v_gzs6VcYc0OI\": {\"duration\": 202.13, \"timestamps\": [[0, 15.16], [16.17, 26.28], [26.28, 42.45], [42.45, 54.58], [55.59, 105.11], [105.11, 167.77], [167.77, 194.04]], \"sentences\": [\"An american gymanst and the colt logo appear.\", \" A young boy was circling in pommel horse in a living room, then in a gym with spectators.\", \" A man starts talking and a young boy in pommel horse doing some endless circling move.\", \" He continues on doing it while the man is watching him and showing him what to do.\", \" The man continues on talking about pommel horse while the boy continue on doing his routine.\", \" The boy is in the living room again and then in the gym, showing how lightweight, durable and versatile the pommel horse is that even a kid assemble it.\", \" How perfect the pommel horse for both home and gym use.\"]}, \"v_L1lXij7Fyvo\": {\"duration\": 107.14, \"timestamps\": [[0, 11.25], [11.79, 42.85], [42.32, 56.78], [56.25, 72.32], [72.85, 88.92], [88.92, 107.14]], \"sentences\": [\"A male is standing outside white a basketball jersey and gym shorts on,talking while holding on to a red rope.\", \"Behind him,there is a large pool and plants with a man on the other die of the food holding the rope as well.\", \"A picture then appears in the middle of the screen indicating that the guy's name is Billy Funk.\", \"Billy Funk then begins to tight rope the line over the pool and swaying from side to side while doing so.\", \"Another angle is shown and other individuals are shown doing the same thing but  falling into the pool and creating a large splashes.\", \"The first guy then reappears and finishes the task without falling,says something to the camera then walks away.\"]}, \"v_LDIemY9nO-4\": {\"duration\": 132.74, \"timestamps\": [[33.85, 37.83], [38.49, 67.03], [120.79, 123.45]], \"sentences\": [\"Rafts are lined up on the side of a river.\", \" People are going down the river in rafts.\", \" A man does a flip off of the raft.\"]}, \"v_I52lhI6txNo\": {\"duration\": 60.09, \"timestamps\": [[6.91, 19.23], [16.83, 51.98], [50.78, 52.28]], \"sentences\": [\"People are sitting on tubes in the snow.\", \" They begin sledding down the hill on the tubes.\", \" A woman stands up and walks away.\"]}, \"v_zPDbMflNURc\": {\"duration\": 76.07, \"timestamps\": [[0, 2.66], [2.66, 26.62], [27, 49.06], [49.06, 76.07]], \"sentences\": [\"A person stands on front a table fixing a ski.\", \" The person puts a purple strap on the ski.\", \" Then, the person rubs a purple bar on an iron to melt and rubs the strap.\", \" After, the man pass the iron over the strap on the ski.\"]}, \"v_nXNczyQpljQ\": {\"duration\": 204.34, \"timestamps\": [[0, 22.48], [31.67, 132.82], [139.97, 204.34]], \"sentences\": [\"A man playing a saxophone in a room.\", \" He adjusts the reed in the mouthpiece.\", \" He then blows into it, showing how it works.\"]}, \"v_R3HC-IAZVZg\": {\"duration\": 119.93, \"timestamps\": [[0, 3.6], [3.6, 47.37], [47.97, 111.54], [112.14, 119.93]], \"sentences\": [\"A stationary bike appears with the words \\\"H8715 Carbon Bike GSG\\\" above it.\", \" Video and photos of the bike are shown followed by a woman adjusting the seat of the bike.\", \" She puts on a heart monitor and starts using the connected bike.\", \" She finishes and rolls the bike away.\"]}, \"v_GJDl-whUpq4\": {\"duration\": 109.65, \"timestamps\": [[0, 33.99], [31.25, 80.04], [71.27, 103.07]], \"sentences\": [\"A woman is seen sitting in a chair knitting the hat.\", \" A cat is seen standing next to the woman stepping on her while another cat sits behind.\", \" The other cat jumps up to the other and runs away.\"]}, \"v_0GWJ-VHFlTk\": {\"duration\": 66.25, \"timestamps\": [[0, 3.97], [3.64, 15.57], [14.91, 36.1], [36.44, 66.25]], \"sentences\": [\"a young man stands on a basketball court holding two basketballs.\", \" the man then runs toward the hoop and shoots.\", \" the man retrieves the ball & shoots the ball again.\", \" the man continues this pattern.\"]}, \"v_0_PdI-5l62o\": {\"duration\": 68.99, \"timestamps\": [[0, 11.73], [11.73, 58.98], [58.98, 68.99]], \"sentences\": [\"The man is sitting on the brown horse and the horse walks in the beginning.\", \" Then the man holds something in his hand to lure the bull to come near him and then the horse starts running.\", \" Some people in the crowd clap and wave the flags in their hands.\"]}, \"v_n41Ypwpn-P8\": {\"duration\": 102.53999999999999, \"timestamps\": [[0, 24.61], [24.61, 102.54], [22.56, 102.54]], \"sentences\": [\"woman is talking tot he camera and walking through a parking lot.\", \" people are standing in a large gren grassy field playing.\", \" men are in a field playnig throwing a ball.\"]}, \"v_OWyqpSBJH8M\": {\"duration\": 60.37, \"timestamps\": [[0, 9.96], [12.98, 32.9], [38.34, 60.37]], \"sentences\": [\"a woman is standing over a table.\", \" the woman takes a piece of fabric and applies tape to it.\", \" the woman then begins to craft with various objects.\"]}, \"v_Q_LhL-t0Yls\": {\"duration\": 168.38, \"timestamps\": [[0, 10.94], [8.42, 71.56], [64.83, 168.38]], \"sentences\": [\"An Asian man walked to the stage and introduce the boy.\", \" The boy with flute walked to the stage and he is being interviewed by the Asian man.\", \" The boy began playing his flute in front of the judges and when he finished he bowed.\"]}, \"v_JTQsElq5UN4\": {\"duration\": 50.95, \"timestamps\": [[0, 50.95], [1.53, 47.63], [46.36, 50.95]], \"sentences\": [\"People are sitting in the stands watching a game.\", \" People are playing a game of ping pong.\", \" They finish and give each other hugs.\"]}, \"v_3jZq0UaDIks\": {\"duration\": 130.64, \"timestamps\": [[0, 29.39], [30.05, 81.65], [80.99, 113], [113.65, 129.33]], \"sentences\": [\"A woman walks to the bank of a river holding a camera.\", \" Suddenly, two men appears sailing in inflatable boats while the woman takes pictures.\", \" Other people sail on individual boats in the choppy waters in the river.\", \" Two people stand on the bank of the river.\"]}, \"v_HzyTD2uZ8jI\": {\"duration\": 149.27, \"timestamps\": [[0, 29.11], [29.11, 102.25], [108.22, 143.3]], \"sentences\": [\"A man is seen speaking to the camera and leads into a girl jumping in front of him.\", \" More people take turns jumping into a pit in front of the man.\", \" The people continue moving one after the other into the pit.\"]}, \"v_470dhR3Yrjs\": {\"duration\": 180.28, \"timestamps\": [[0, 180.28], [0, 6.31], [7.21, 164.05], [164.96, 180.28]], \"sentences\": [\"This is a video on how to do a braid for girl's hair.\", \"  A girl is outdoors in a yard as she shows her braided hair.\", \" Indoors this girl shows the back of her head as she gives a tutorial on how to braid the hair as she begins with the top of hear head and finishes at the nape of her neck.\", \" Again she is shown outside in a yard with her braid and a blue bow at the end of the braid.\"]}, \"v_LUDZ7e0RdEE\": {\"duration\": 94.97, \"timestamps\": [[0, 15.67], [15.2, 28.97], [29.44, 56.51], [56.98, 78.83], [78.35, 94.97]], \"sentences\": [\"A young Asian boy begins walking out of a building on to the concrete.\", \"A group of boys then appear dressed in a white karate shirt fighting against one another.\", \"Suddenly,the men all appear doing various techniques to gain strength including breaking bricks and tossing sticks.\", \"After,men and women appear dressed as Samurai and start to fight each other in a big open field charging each other with long swords.\", \"A man then appears gathering the leaves with his hands while squatting in a fighting motion.\"]}, \"v_R6kXT4Spiwo\": {\"duration\": 157.56, \"timestamps\": [[0, 22.06], [36.24, 126.05], [131.56, 157.56]], \"sentences\": [\"A diver is standing at the top of a diving board.\", \" He prepares to jump from the high dive multiple times.\", \" He jumps, flipping as he hits the water.\"]}, \"v_bmWICdhvyJw\": {\"duration\": 74.84, \"timestamps\": [[0, 10.48], [12.35, 56.13], [56.88, 74.84]], \"sentences\": [\"A girl sits on a beam in a gym.\", \" She balances on the beam, then flips forward and backward several times.\", \" She then dismounts from the beam.\"]}, \"v_aljYWkDQzN8\": {\"duration\": 60.33, \"timestamps\": [[0, 4.22], [5.13, 40.72], [41.32, 53.99]], \"sentences\": [\"A man is standing on skis wearing only underwear.\", \" He then starts skiing down a hill of snow.\", \" He goes off of a jump and crashes at the bottom.\"]}, \"v_MmipoQF8EJs\": {\"duration\": 76.21000000000001, \"timestamps\": [[0, 24.39], [24.01, 56.01], [56.39, 76.21]], \"sentences\": [\"A uniformed line of people are traveling across a desert in India on camels.\", \"One group of people are seen stagnant with what appears to be their family,with only two people and the rest of them surrounding each other on the ground with blankets.\", \"More people are shown in the same fashion and they are all standing still looking out into at the sand mounds.\"]}, \"v_R37pbIySnjg\": {\"duration\": 120.13, \"timestamps\": [[0, 10.81], [11.41, 70.28], [77.48, 120.13]], \"sentences\": [\"A boy is painting a wooden fence in front of him.\", \" An older man is helping him paint the fence.\", \" The man carries two buckets of paint and sets them down next to the boy.\"]}, \"v_zpBZ7HMNO34\": {\"duration\": 123.53, \"timestamps\": [[0, 121.06], [101.3, 106.85], [0, 123.53]], \"sentences\": [\"woman is in a living room doing exercise in a elliptical machine.\", \" when finish she take off the elliptical and push it very easily.\", \" woman is doing exercise in a living room in front of a white couch.\"]}, \"v_OqA83jGQtfg\": {\"duration\": 224.57999999999998, \"timestamps\": [[0, 10.11], [10.11, 21.34], [21.34, 183.04], [31.44, 209.99], [209.99, 224.58]], \"sentences\": [\"An introduction comes onto the screen for a video about fishing lures.\", \" Several men show off the different lures they are using for ice fishing.\", \" The action of the lures is shown underwater as several different fish go after the lures.\", \" The men are also shown above the ice working their poles and catching several fish.\", \" The video ends with the closing credits and Graphics shown on the screen.\"]}, \"v_CJWSed5v4jE\": {\"duration\": 77.06, \"timestamps\": [[0, 77.06], [2.7, 77.06], [0, 76.67]], \"sentences\": [\"man is diving on a cart on the woods.\", \" a naked man is driving a cart on the back of the house.\", \" naked man is in a cart on the woods driding a car.\"]}, \"v_AdP2aMo6OgY\": {\"duration\": 49.53, \"timestamps\": [[0.25, 9.66], [9.16, 35.17], [29.97, 48.04]], \"sentences\": [\"A person is seen jumping off a diving board into a pool.\", \" Several more people are seen jumping off the diving board into the pool.\", \" In the end a girl does a handstand and dives backwards into the pool.\"]}, \"v_d3RF0qC6RJs\": {\"duration\": 172.48, \"timestamps\": [[0, 165.58], [0, 38.81], [40.53, 147.47], [148.33, 168.17]], \"sentences\": [\"A man performs with his dog in a frisbee catching spectacle on a large grass covered lawn in front of an audience of people on the sidelines.\", \"  A man throws frisbee after frisbee in the air each of which his dog catches in mid air.\", \"  The man then has the dog jump off of his back  and perform many other tricks and stunts on the field in the middle  of catching the frisbees.\", \"  An audience in front on the sidelines erupts in applause at the final frisbee catch.\"]}, \"v_Mv2uecqTSdY\": {\"duration\": 6.06, \"timestamps\": [[0, 1.7], [1.79, 4.06], [4.03, 6.06]], \"sentences\": [\"A small boy is sitting inside of a small red canoe on a wooden dock holding a long red paddle.\", \"A man behind hem then pushes him into the body of murky water.\", \"When he is all the way into the water,he joins the rest of the individuals who are kayaking as well.\"]}, \"v_ymmBQHiNK24\": {\"duration\": 132.17, \"timestamps\": [[0, 4.63], [3.97, 130.85], [130.85, 132.17]], \"sentences\": [\"Words are shown on the screen.\", \" A man in a black shirt is playing the bag pipes.\", \" He stops playing and sets the bag pipes down.\"]}, \"v_quoyW7FZqdI\": {\"duration\": 233.85, \"timestamps\": [[0, 39.75], [16.37, 60.8], [53.79, 137.97], [104.06, 233.85]], \"sentences\": [\"The woman is standing holding a jumping rope while an old man walked behind her.\", \" The woman put the down the jumping rope and started jumping without the rope.\", \" The woman take the rope and began jumping while holding the rope in one of her hand.\", \" The woman started doing the jumping rope with the rope.\"]}, \"v_F67zl57FSXE\": {\"duration\": 101.67, \"timestamps\": [[0, 101.67], [1.02, 101.67], [34.06, 39.14], [80.32, 83.88]], \"sentences\": [\"Several men are doing dead lifting in a weight lifting competition.\", \" One by one, they squat down, grab the weight, stand, and lift it over their heads before dropping it.\", \" The seventh man fails on his first try, and drops the weight before raising it overhead.\", \" The thirteenth man also fails, dropping his weight before lifting it high.\"]}, \"v_xqzsv8VpaNM\": {\"duration\": 163.85, \"timestamps\": [[0, 31.95], [40.96, 112.24], [122.07, 163.85]], \"sentences\": [\"a man stands by a lake an talks to the camera.\", \" a woman on a sail boat is coursing through the lake.\", \" the man then returns to talk to the camera.\"]}, \"v_GP2S0V5NiPs\": {\"duration\": 216.32, \"timestamps\": [[0, 61.65], [40.02, 134.12], [128.71, 216.32]], \"sentences\": [\" a woman is interviewing a man under a tint.\", \" 3 people drill a big hole in an ice filled lake.\", \" they all begin ice fishing.\"]}, \"v_GnLUmMkyvCo\": {\"duration\": 176.43, \"timestamps\": [[0.88, 20.29], [8.82, 39.7], [40.58, 176.43]], \"sentences\": [\"A man is seen spinning around and throwing an object off into the distance.\", \" The man throws it again several more times.\", \" More people are shown throwing the object one after other.\"]}, \"v_5_M10vevgJg\": {\"duration\": 206.89, \"timestamps\": [[0, 49.65], [64.14, 194.48], [200.68, 206.89]], \"sentences\": [\"People are skiing down a hill of snow.\", \" A man is waxing the bottom of a ski.\", \" A woman in a pink jacket is skiing down a hill.\"]}, \"v_BZAzrFF5emE\": {\"duration\": 183.21, \"timestamps\": [[0, 53.13], [43.05, 122.75], [107.18, 182.29]], \"sentences\": [\"A man is seen speaking to the camera while holding a skateboard.\", \" He points to the board and helmet and leads into him bending down on the grass.\", \" He then demonstrates how to ride around on the board on the tar as well as falling in the end.\"]}, \"v_uuFJdgTT5kE\": {\"duration\": 137.49, \"timestamps\": [[0, 3.44], [3.44, 20.62], [19.94, 22], [22, 65.99], [65.31, 118.93], [118.93, 137.49]], \"sentences\": [\"The camera shows an aerial view of a polo grounds with stands.\", \" A number of individuals are shown playing polo.\", \" The polo grounds are shown being watered with a machine.\", \" More polo play is shown, interspersed with quick cuts of audience reactions, player interviews, and crew actions.\", \" A series of unrelated quick cuts shows buildings, people, and activities nearby the polo grounds.\", \" A number of individuals are shown playing polo again, interspersed by an audience reaction.\"]}, \"v_48zOi9j1E0A\": {\"duration\": 164.77, \"timestamps\": [[0.82, 24.72], [27.19, 41.19], [42.84, 78.27], [78.27, 93.09], [94.74, 124.4], [126.87, 163.12]], \"sentences\": [\"A man talks while a person make gestures with his body and face.\", \" The man ties his shoes and takes out a knife, and the person paints his face with black paint.\", \" The man and the person wears camo clothes and hold firearms, the man shoots the person who bend in pain.\", \"  The man runs while the person shoots him and falls.\", \" The man and the person shoot themselves in the woods.\", \" After, teh man and the person are shirtless shooting each other, and one gets injured and vomit.\"]}, \"v_GAqzjkkb98Q\": {\"duration\": 71.52, \"timestamps\": [[0, 71.52], [0, 36.12], [36.47, 71.52]], \"sentences\": [\"This is a video of competitive calf roping.\", \"  One man on horseback goes after a calf and then stops his horse and ties up the calf.\", \"  He tries a second time and goes after a calf and rope him and tie up the calf's legs as fast as he can.\"]}, \"v_wJYsD3_CS6E\": {\"duration\": 85.98, \"timestamps\": [[0, 85.98], [9.89, 85.98], [49.01, 85.98]], \"sentences\": [\"The little baby is sitting on a blue swing.\", \" A man pushed the swing backward causing the swing to continue to move.\", \" The baby is looking sideways looking happy and awed.\"]}, \"v_e9AsyRGUzTc\": {\"duration\": 53.15, \"timestamps\": [[0, 37.21], [37.47, 38.8], [38.53, 53.15]], \"sentences\": [\"A man talks in front the ocean holding and showing a bottle.\", \" Then, the man puts sunscreen from the bottle on his hand.\", \" After, the man spreads the cream on his hands a applies it on his face and the bottles are display on the screen.\"]}, \"v_j6zAdpBqRu0\": {\"duration\": 142.9, \"timestamps\": [[0, 3.57], [3.57, 17.86], [17.86, 50.73], [50.73, 77.16], [77.16, 107.89], [110.03, 135.04], [134.32, 142.9]], \"sentences\": [\"We see a mountain and clouds in the sky.\", \" People are on the snow and on ski lifts.\", \" We see a man talk see snow equipment and another man speaks.\", \" We see the men riding a plow and a helicopter.\", \" The men jump out of the helicopter and ski down a steep slope.\", \" A man talks and we see a group of people shovel and pose for a photo.\", \" We see the ending screen for British Columbia.\"]}, \"v_y2jDV7tFUXg\": {\"duration\": 34.13, \"timestamps\": [[0, 27.82], [0, 26.11], [0, 34.13]], \"sentences\": [\"A boat is in the water.\", \" They are pulling two water skiers behind them.\", \" People are sitting in the stands watching them.\"]}, \"v_dZZE8HI0OBE\": {\"duration\": 13.17, \"timestamps\": [[0, 1.91], [2.17, 8.56], [9.68, 13.17]], \"sentences\": [\"A girl is leaning in front of a camera.\", \" She is applying eye makeup as she talks.\", \" She continues wiping it on with a brush.\"]}, \"v_wwh94C7NB1I\": {\"duration\": 192.87, \"timestamps\": [[0, 16.39], [0, 192.87], [126.33, 138.86], [154.29, 192.87]], \"sentences\": [\"men are sitting on top of hill putting some knepads and helmets.\", \" men goes down the hill in skateboards.\", \" one of the men falls into the grave.\", \"the men sits in a sidewalk and are talking to the camera.\"]}, \"v_cXY-ONmtylc\": {\"duration\": 115.06, \"timestamps\": [[0, 4.6], [4.6, 80.54], [80.54, 90.32], [90.32, 100.1], [100.1, 114.48]], \"sentences\": [\"man is mixing cement in a big plastic bowl.\", \" the man is talking to the camera and its milling the walls wih a spatula and a woman is doing the same.\", \" people are laying on the store.\", \"the man is talking to the camera holding big poles.\", \" the woman grab a cement bag and carry it.\"]}, \"v_W3ozAI2ozCs\": {\"duration\": 36.67, \"timestamps\": [[0, 28.42], [2.93, 28.42], [26.95, 36.67]], \"sentences\": [\"The young athlete jumped on the pole and began turning around the pole with his arms and hands.\", \" A young kid walked at the side of the mat as the young boy is doing his rounds.\", \" The young athlete jumped off the poles and take a bow.\"]}, \"v_jcQy1x8lDaQ\": {\"duration\": 128.83, \"timestamps\": [[0, 54.75], [40.58, 97.26], [89.53, 125.6]], \"sentences\": [\"A bowling lane is seen with a person throwing a ball.\", \" The person walks back and throws several more balls.\", \" The person continues to bowl walking in and out of frame.\"]}, \"v_uF9othvTXn8\": {\"duration\": 98.11, \"timestamps\": [[0, 98.11], [0, 95.65], [96.63, 98.11]], \"sentences\": [\"People are sitting in bumper cars.\", \" They start going and crashing into each other.\", \" They stop and all line up together.\"]}, \"v_cIRMaWUTHuk\": {\"duration\": 143.87, \"timestamps\": [[0, 20.86], [29.49, 106.46], [113.66, 143.87]], \"sentences\": [\"A woman is talking inside her kitchen.\", \" She displays several different ingredients on the counter.\", \" She adds them to a pot and creates a dish.\"]}, \"v_V4U5SaPDL0E\": {\"duration\": 194.1, \"timestamps\": [[0, 36.88], [39.79, 131.01], [133.93, 194.1]], \"sentences\": [\"A man and woman are dancing in a living room.\", \" A little girl is trying to watch tv while they dance.\", \" They continue twirling and dancing in front of her.\"]}, \"v_V9MTU7xLukc\": {\"duration\": 114.52000000000001, \"timestamps\": [[0, 103.07], [12.02, 49.82], [49.82, 114.52]], \"sentences\": [\"two men are on a rooftop cleaning the red roof with soap.\", \" people are walking on the rooftop in the right part of the building.\", \" people are in a rooftop walking and cleaning.\"]}, \"v_h2xV6mTpUCM\": {\"duration\": 172.15, \"timestamps\": [[0, 7.75], [7.75, 89.52], [62.84, 172.15]], \"sentences\": [\"A cat  licking his right paw.\", \" Then starts to scratch his eyes with left paw and lick it for a while.\", \"  Eventually moving his paws behind his ears licking and brushing repeatedly.\"]}, \"v_gwZleaX_ZR8\": {\"duration\": 149.61, \"timestamps\": [[0, 49.37], [39.65, 108.47], [92.76, 142.87]], \"sentences\": [\"A person is seen diving off a board while others watch.\", \" Several more clips are shown of people diving into the water.\", \" They continue diving one after the other.\"]}, \"v_sy-xNiKnfBU\": {\"duration\": 201.92000000000002, \"timestamps\": [[0, 23.22], [26.25, 125.19], [125.19, 201.92]], \"sentences\": [\"A line of people are standing and waving on the beach.\", \" A man is surfing in the water with a sail.\", \" He falls off the board a few times, trying to stay upright.\"]}, \"v_uBmUiouilQY\": {\"duration\": 38.85, \"timestamps\": [[0, 3.88], [4.08, 10.68], [10.88, 37.49], [37.29, 38.85]], \"sentences\": [\"A female child plays hula hoop in a room.\", \" Suddenly, a toddler appears and the female child leaves the room.\", \" Then, the boy starts to move graciously inside the hula while smiling.\", \" After, the boy stops moving and walk away.\"]}, \"v_1X4hgrBjw-U\": {\"duration\": 78.14, \"timestamps\": [[0, 1.56], [1.95, 12.11], [12.5, 19.92], [20.32, 71.89], [72.28, 78.14]], \"sentences\": [\"A woman is handed an ice cream cone.\", \" Two police officers order ice cream and wait for it.\", \" A customer appears irritated by the officers.\", \" The police officers and woman converse.\", \" The police officer offers the ice cream cone to the woman.\"]}, \"v_mjKcoY18QG0\": {\"duration\": 143.73, \"timestamps\": [[0, 3.59], [3.59, 51.02], [51.74, 74.02], [74.74, 111.39], [111.39, 135.83], [135.83, 143.73]], \"sentences\": [\"A gold telephone with several white buttons on it is lit up ringing next to a bed in a hotel room.\", \"A man who is Robert Deniro grabs the phone and begins talking to a man who is in the casino on the end of the receiver.\", \"The scene then flips to the casino down stairs and some men are gambling.\", \"Shortly,the dealer is changed and the men still have an issue with the game and starts to throw the cards at the dealer.\", \"The gambler then leaves and begins talking to Robert Deniro and telling him about the issue.\", \"Once Deniro leaves,the gambler then grabs the phone off the wall,hits the owner and proceeds back to the table to continue gambling.\"]}, \"v_DinaQYSgbtg\": {\"duration\": 56.77, \"timestamps\": [[0, 22.43], [14.76, 39.74], [41.44, 55.92]], \"sentences\": [\"A small child is seen standing before a sink washing dishes.\", \" He wipes around the sink and continues washing dishes.\", \" He puts the clean dishes next to him.\"]}, \"v_GqkvSUNfZFk\": {\"duration\": 145.07, \"timestamps\": [[0, 7.98], [5.8, 15.96], [14.51, 145.07], [50.05, 145.07]], \"sentences\": [\"Hockey players enter a hockey rink.\", \" They are then shown backstage messing around.\", \" The two teams play against each other.\", \" They make points against each other.\"]}, \"v_nB50V0OBto0\": {\"duration\": 162.8, \"timestamps\": [[0, 17.91], [17.91, 39.89], [42.33, 159.54]], \"sentences\": [\"A girl is seen pulling on blinds and speaking to the camera.\", \" Another girl curls her hair and shows a man and girl speaking to the camera.\", \" Several shots are shown of people riding down a hill on sleds and playing with one another.\"]}, \"v_Aygp8JaMkqQ\": {\"duration\": 174.85, \"timestamps\": [[0, 6.12], [6.99, 31.47], [32.35, 55.95], [56.83, 157.36], [158.24, 162.61], [163.48, 167.85]], \"sentences\": [\"A map with \\\"The Wedge Newport Beach, CA\\\" appears on screen.\", \" A crowded beach scene is shown.\", \" \\\"The come for one thing\\\" and \\\"A ride of a lifetime\\\" is shown on screen.\", \" Large waves in the water appear with people trying to body surf them, mostly unsuccessfully.\", \"  A group of people high five on the beach.\", \" Credits appear on screen with an email address.\"]}, \"v_GG_Bi89pNlg\": {\"duration\": 34.76, \"timestamps\": [[0, 4.87], [5.56, 25.55], [26.77, 34.76]], \"sentences\": [\"Several athletes are gathered inside a fenced area.\", \" One walks to the circle in the center.\", \" She spins in circles, then lets go of the ball before the others join in to measure the distance.\"]}, \"v_Uqte3S_ErTM\": {\"duration\": 9.01, \"timestamps\": [[0, 1.31], [1.58, 6.67], [6.8, 9.01]], \"sentences\": [\"Several people are in a manmade race track.\", \" BMX bikers are going over the hills along the path.\", \" They spin in the air and do stunts as they ride.\"]}, \"v_YTuQrhSKkNE\": {\"duration\": 100.28999999999999, \"timestamps\": [[0, 100.29], [23.07, 31.09], [33.6, 44.13], [59.17, 74.71], [74.71, 100.29]], \"sentences\": [\"A team of men play with curling sticks and play hockey with a glove on the curling floor.\", \" A man stops and lines up a shot.\", \" We see a cameraman filming in the middle of the floor.\", \" The players go left and we see the cameramen leaving the room with their cameras lowered.\", \" One man runs away with the glove and goes right then left.\"]}, \"v_HZWdMK6zhec\": {\"duration\": 79.6, \"timestamps\": [[0, 8.36], [13.53, 56.52], [58.11, 79.6]], \"sentences\": [\"A man is standing outside a large red shed.\", \" He is using a net to play a game with a small child.\", \" They are hitting the ball back and forth toward the net.\"]}, \"v_RrKCACSu9xU\": {\"duration\": 49.02, \"timestamps\": [[0, 8.33], [8.58, 18.38], [16.18, 33.58], [31.86, 49.02]], \"sentences\": [\"two boys and one man each swing on a swing set.\", \" one boy swings upside down.\", \" the man laughs really while swinging the highest.\", \" the second boy jumps off his swing.\"]}, \"v_KiKZEKwn4Aw\": {\"duration\": 207.01, \"timestamps\": [[0, 22.77], [23.81, 112.82], [113.85, 207.01]], \"sentences\": [\"a kid is shown riding a ski lift.\", \" then the kid is shown skiing down hill.\", \" an adult skis behind the kid.\"]}, \"v_euyYRNOSPE0\": {\"duration\": 180.7, \"timestamps\": [[0, 180.7], [0.9, 180.7], [0, 178.89]], \"sentences\": [\"woman is wearing arabian clothes dancing the belly dance.\", \" eautiful woman is in middle of a dark room doing the bellydance.\", \" woman is dancing arabian music doing the belly dance.\"]}, \"v_Cy3tUZIN8nk\": {\"duration\": 100.87, \"timestamps\": [[0, 71.11], [17.15, 87.76], [64.56, 99.86]], \"sentences\": [\"A man is seen sitting on a bench playing a harmonica.\", \" The man kicks his feet while he plays along.\", \" He continues to play the instrument and pauses to speak to others.\"]}, \"v_Z9k8GiGjkZ8\": {\"duration\": 84.89, \"timestamps\": [[0.42, 16.55], [7.22, 64.52], [25.47, 84.89]], \"sentences\": [\"A woman is pushed off the ledge.\", \" The harness broke and the woman fell in the water.\", \" The woman is being interviewed and showing her wounds.\"]}, \"v_wuknZBoyMRE\": {\"duration\": 98.66, \"timestamps\": [[0.99, 35.52], [30.59, 70.05], [68.08, 95.7]], \"sentences\": [\"A man is seen speaking to the camera while standing on stilts.\", \" He then begins running around the yard on the stilts.\", \" He continues walking around on the stilts and falls down speaking to the camera.\"]}, \"v_dTkMZlj7jFU\": {\"duration\": 193.82, \"timestamps\": [[0, 185.1], [5.81, 57.18], [57.18, 193.82]], \"sentences\": [\"Two men demonstrate how to apply tiling to a ceiling using different tools and themselves in action as the demonstration.\", \"  A man stands in a room over a laid out selection of tiles and measures them with a measuring tape and then cuts them with a ruler and cutting device.\", \"  The man then joins another man on a ladder as they begin and end putting the tiles on the ceiling.\"]}, \"v_2PFU_Ee0x14\": {\"duration\": 150.0, \"timestamps\": [[0, 27.75], [58.5, 106.5], [62.25, 68.25]], \"sentences\": [\"A man in blue is hitting an object over a net.\", \"  A man in white and khakis is hitting an object over a net.\", \"  A man wearing a black hat is sitting outdoors.\"]}, \"v_ABBQqwPOxw4\": {\"duration\": 6.99, \"timestamps\": [[0, 1.64], [1.5, 4.65], [4.3, 6.68]], \"sentences\": [\"A man is seen juggling balls on a court.\", \" He continues juggling with his hands.\", \" He finishes jugging by dropping the balls.\"]}, \"v_P9qhbSYblG4\": {\"duration\": 115.71000000000001, \"timestamps\": [[0, 12.73], [19.67, 74.63], [81.57, 115.71]], \"sentences\": [\"A close up is seen of a fancy bowling ball.\", \" A man walks up to a lane with a ball in his hand.\", \" He throws the ball, knocking down pins.\"]}, \"v_VLjfzOpn-AQ\": {\"duration\": 167.14, \"timestamps\": [[0, 2.51], [3.34, 16.71], [17.55, 153.77], [154.6, 167.14]], \"sentences\": [\"A black and white drawing of an angry dog is shown with the words \\\"Grrrr Productions\\\".\", \" Then we see several people in wetsuits getting ready outside.\", \" Then they are seen kayaking in the water of a river while music plays.\", \" There are credits at the end while someone walks a kayak down some steps.\"]}, \"v_EN63ldqfGsI\": {\"duration\": 229.88, \"timestamps\": [[0, 26.44], [25.29, 229.88], [188.5, 216.09]], \"sentences\": [\"name of a song with a countdown is shown.\", \" people are on a wooden basket court practicing a choreography.\", \" little kid wearing a pink shirt is standing next to the group watching them.\"]}, \"v_2MRR5NxbO9k\": {\"duration\": 155.62, \"timestamps\": [[0, 18.67], [0, 155.62], [18.67, 155.62]], \"sentences\": [\"the man is recharging te lawnmower with fuel and turn it on.\", \" man is mowing the lawn in a backyard.\", \" man is holding a red lawnmower and is cutting the grass in the house backyard.\"]}, \"v_o4z1nEiyr4E\": {\"duration\": 22.18, \"timestamps\": [[0.33, 5.54], [6.32, 15.3], [13.75, 21.95]], \"sentences\": [\"A woman walks into frame swinging a jump rope around her.\", \" She jumps up and down while looking off into the distance.\", \" She stops jumping and walks out of frame.\"]}, \"v_lG5d8bCHLM4\": {\"duration\": 33.48, \"timestamps\": [[0, 8.71], [8.54, 12.39], [12.89, 26.62], [26.62, 33.48]], \"sentences\": [\"A young girl straddles a bar on a playground bar set.\", \" The girl does a 360 revolution on the bar.\", \" The girl does a series of 360 revolutions on the bar.\", \" The girl dismounts from the bar.\"]}, \"v_TIEzvhv6xaI\": {\"duration\": 19.25, \"timestamps\": [[0, 3.85], [0, 19.25], [12.13, 19.25]], \"sentences\": [\"A man is standing on a ladder next to a court.\", \" They begin to play volleyball on the court.\", \" A man in a white shirt is standing next to the court.\"]}, \"v_iB20nDf5yJs\": {\"duration\": 178.45, \"timestamps\": [[8.03, 19.63], [19.63, 52.64], [52.64, 178.45]], \"sentences\": [\"First the man jumps on the diving board while he stands backwards towards the water and then he circles in the air landing into the water.\", \" Then he is seen walking onto the board from the start of it and he jumps when he gets to the end of it and dives into the pool.\", \"  There is music playing throughout the video and the man dives into the water from different sized boards indoors and outdoors.\"]}, \"v_zzci2xZ011A\": {\"duration\": 48.53, \"timestamps\": [[0, 19.9], [20.87, 48.53], [0, 48.53]], \"sentences\": [\"A boy is standing on a beach.\", \" He is playing hackey sack with a person in front of him.\", \" People are sitting on the beach behind him.\"]}, \"v_CRH5U5XKb2Q\": {\"duration\": 225.16, \"timestamps\": [[0, 30.4], [43.91, 175.63], [181.26, 225.16]], \"sentences\": [\"A man is seated outside a building.\", \" He is playing a guitar in his lap.\", \" A few people walk up to listen.\"]}, \"v_SKdouCRLoKE\": {\"duration\": 93.09, \"timestamps\": [[0, 12.1], [21.41, 67.95], [71.21, 93.09]], \"sentences\": [\"A matador waves a cape in a fight.\", \" A bull runs over and gorges the man several times.\", \" Other matadors are then seen being attacked as a news reporter talks about it.\"]}, \"v_2GCNxOKMtBo\": {\"duration\": 193.91, \"timestamps\": [[3.88, 6.79], [5.82, 7.76], [15.51, 19.39], [79.5, 88.23], [117.32, 123.13]], \"sentences\": [\"A man is sitting on a snow mobile on the ice.\", \" The puts a fishing pole into a hole in the ice.\", \" A fish is shown under the water.\", \" He pulls the fish up and holds it.\", \" A man is drilling holes into the ice with a drill.\"]}, \"v_kW63TeJo4JY\": {\"duration\": 23.59, \"timestamps\": [[0, 3.42], [3.77, 15.57], [16.04, 23.59]], \"sentences\": [\"A little girl is standing in a circle of people.\", \" She is given a long pole to hold.\", \" She uses the pole to hit a pinata over and over.\"]}, \"v_uSuHnQPWfNY\": {\"duration\": 169.65, \"timestamps\": [[0, 10.18], [10.18, 128.08], [51.74, 135.72], [135.72, 169.65]], \"sentences\": [\"A woman and her dog are outside as the woman grooms the dog with a yellow brush.\", \"  She attempts to sit the dog down as the dog rolls around and lets her groom it.\", \"  She explains about using organic baking powder on a dog and then brushing them after to eliminate odors.\", \" She stops grooming, pets the dog, gives thanks for watching, says goodbye, she gets up and walks towards the camera as well as the dog and the video stops.\"]}, \"v_D_yO_40uREE\": {\"duration\": 112.52000000000001, \"timestamps\": [[0, 112.52], [0.56, 112.52], [0, 111.96]], \"sentences\": [\"old men are putting cloth tiles on the floor.\", \" old man wearing red shirt i putting blue cloth tiles on the floor.\", \" men are cutting circles on the blue cloth tiles to put on the floor.\"]}, \"v_zLjAfrfqRcc\": {\"duration\": 234.63, \"timestamps\": [[0, 36.37], [45.75, 163.07], [163.07, 234.63]], \"sentences\": [\"A group of vehicles are driving down a road.\", \" They pass each other at a great speed.\", \" The car goes over several bridges and through towns and countrysides.\"]}, \"v_7ET-TtUVU7s\": {\"duration\": 130.5, \"timestamps\": [[3.91, 42.41], [42.41, 115.49], [115.49, 130.5]], \"sentences\": [\"Several logos in a square appear on the screen before all of them flash together.\", \"The video finally starts and men are seen in a small body of water canoeing.\", \"After some time,a man then comes and begins talking about his experience.\"]}, \"v_ux_qqONPSrc\": {\"duration\": 123.51, \"timestamps\": [[0, 22.23], [32.11, 86.45], [88.31, 123.51]], \"sentences\": [\"Several images are shown of breakfast and cooking items.\", \" Ingredients are shown on the page.\", \" Then we see numerous stills of a woman creating a salad.\"]}, \"v_5vDPgcyRtOU\": {\"duration\": 111.22, \"timestamps\": [[0, 21.13], [22.24, 33.92], [34.48, 71.18], [86.2, 89.54], [90.65, 111.22]], \"sentences\": [\"An \\\"1825 Interiors\\\" logo appears on screen with a legal disclaimer.\", \" The topic \\\"Table Waxing and Polishing\\\" appears on screen followed by descriptive text.\", \" A man working on a piece of furniture is overlaid with the text \\\"Apply wax with a soft cloth\\\".\", \" \\\"Polish with orange oil\\\" appears as the man sprays the furniture and rubs it in.\", \"  The logo appears again with a closing statement.\"]}, \"v_MWWDqMI-rxU\": {\"duration\": 137.7, \"timestamps\": [[8.26, 131.5], [43.37, 131.5], [131.5, 134.25]], \"sentences\": [\"A man is break dancing on the ground.\", \" He is sitting on the ground talking.\", \" He stands up and talks to the camera.\"]}, \"v_9FYVaOGQV6o\": {\"duration\": 90.91, \"timestamps\": [[0, 20.45], [20.45, 60.91], [57.73, 86.36]], \"sentences\": [\"A small group of people are seen skating on the ice playing hockey.\", \" One player hunches over and two men help him off the ice.\", \" The hit is shown again several more times while players skate around.\"]}, \"v_3MS3CAyl_YA\": {\"duration\": 66.29, \"timestamps\": [[0, 7.29], [9.94, 37.79], [41.76, 66.29]], \"sentences\": [\"A man is seated on a couch.\", \" He is holding a long hose to his mouth.\", \" He takes a hit from a hookah and blows out the smoke.\"]}, \"v_MtmQjudesdM\": {\"duration\": 26.12, \"timestamps\": [[0, 3.4], [4.96, 13.85], [16.07, 26.12]], \"sentences\": [\"A track athlete prepares to run toward the target.\", \" She runs, then jumps onto the mat.\", \" She walks away dejectedly after missing.\"]}, \"v_Dk3DiAp2yAU\": {\"duration\": 85.1, \"timestamps\": [[0.85, 21.28], [18.3, 55.32], [53.19, 81.27]], \"sentences\": [\"A man is seen speaking to the camera while holding a rag.\", \" He bends down and uses the rag all over a window.\", \" He continues cleaning off the window while speaking to the camera.\"]}, \"v_Lm4oeMdqOgw\": {\"duration\": 81.36, \"timestamps\": [[0, 36.61], [13.02, 30.51], [33.36, 54.51], [54.51, 81.36]], \"sentences\": [\"A woman attempts to throw a javelin.\", \"  She stands around and then runs toward the field.\", \"  She throws the javelin and then it is measured.\", \"  She hurts herself at the end.\"]}, \"v_JxbmHo84AC4\": {\"duration\": 156.5, \"timestamps\": [[0, 42.26], [35.21, 114.25], [97.81, 152.59]], \"sentences\": [\"Several shots are shown of the inside of a car as well as people playing with one another.\", \" More shots are shown of scenery and show the people walking and people bungee jumping.\", \" More people take their turns bungee jumping one after the other while smoke speak to the camera and each other.\"]}, \"v_YqairWJU2Vw\": {\"duration\": 102.89, \"timestamps\": [[0, 13.38], [13.89, 70.48], [72.54, 102.89]], \"sentences\": [\"A man is on a field in front of spectators.\", \" He spins and throws a ball for distance.\", \" He then walks away in frustration.\"]}, \"v_Ul8qLMmszx4\": {\"duration\": 93.18, \"timestamps\": [[0, 20.97], [7.45, 44.26], [41, 93.18]], \"sentences\": [\"A person is seen pushing snow off of a car.\", \" The man speaks to the camera while still scraping off his car.\", \" He cleans off another car while the cameraman shows his face and pans back to the man cleaning off the car.\"]}, \"v_7hfaWQgcDyo\": {\"duration\": 54.1, \"timestamps\": [[0, 5.41], [7.57, 28.67], [30.84, 54.1]], \"sentences\": [\"A grilled cheese sandwich is shown being pulled apart.\", \" Slices of bread are shown being buttered, then topped with cheese.\", \" Then the sandwiches are grilled.\"]}, \"v_O1WvjCFqLz0\": {\"duration\": 63.07, \"timestamps\": [[0, 9.46], [6.62, 17.66], [15.14, 38.15], [35, 63.07]], \"sentences\": [\"a toddler is standing in a chair.\", \" the kid then begins swinging his arms and punching.\", \" he the does a few kicks and head buts.\", \" a woman is sitting next to him talking.\"]}, \"v_K3sJnHGHQHM\": {\"duration\": 180.0, \"timestamps\": [[3.6, 25.2], [25.2, 35.1], [35.1, 120.6], [120.6, 129.6], [130.5, 175.5]], \"sentences\": [\"Scenes relating to a group's trip to a rafting destination is shown.\", \" A simplified map diagram of the group's intended rafting course is shown.\", \" The group is shown rafting down a river on several rafts in a number of scenes.\", \" Another map of a rafting course is shown.\", \" More scenes of the group engaging in rafting-related activities is shown.\"]}, \"v_QOuNt8YH3Rk\": {\"duration\": 167.96, \"timestamps\": [[0, 53.75], [50.39, 118.41], [105.82, 166.28]], \"sentences\": [\"A man is seen spinning around in a circle and throwing an object into the distance.\", \" The man spins again and leads into another man performing the throw.\", \" One last man steps up to throw the object off into the distance several times.\"]}, \"v_BS9UPqgR89E\": {\"duration\": 140.48, \"timestamps\": [[0, 136.27], [45.66, 59.7], [106.06, 140.48]], \"sentences\": [\"A woman gives a tutorial on ballet moves.\", \"  She takes a break and then continues moving.\", \"  She bows down and then finishes.\"]}, \"v_m6H1tLAkyjQ\": {\"duration\": 24.09, \"timestamps\": [[0, 24.09], [6.02, 9.76], [9.76, 24.09]], \"sentences\": [\"This shirtless man is surfing on the calm waves of water.\", \" Someone walks past bent over and smiling.\", \" Then the man who's supposedly surfing falls down.\"]}, \"v_zMWhT5Rv6WE\": {\"duration\": 192.7, \"timestamps\": [[0, 62.63], [37.58, 134.89], [91.53, 184.03]], \"sentences\": [\"A woman is seen speaking into the microphone behind a set of drums.\", \" She speaks enthusiastically with her hands and begins playing the drums.\", \" She pauses to speak to the audience while still hitting the drums here and there.\"]}, \"v_e9bdQGmyrKA\": {\"duration\": 97.5, \"timestamps\": [[0, 7.31], [12.19, 51.19], [59.48, 97.5]], \"sentences\": [\"A group of men are standing outside a rink.\", \" They are using jump ropes to exercise.\", \" They jump up and down tirelessly over the ropes.\"]}, \"v_sS-KyhAzeUY\": {\"duration\": 153.82, \"timestamps\": [[0, 153.82], [6.15, 109.21], [109.21, 153.82]], \"sentences\": [\"This video shows people how important it is to wash your hands because it keeps down many infections and germs.\", \" Then many people start to wash their hands using soap or cleaning them using hand sanitizer.\", \" There's music playing through the video and people are shown drying their hands and washing them.\"]}, \"v_j8NwT9JBQJk\": {\"duration\": 157.05, \"timestamps\": [[0, 9.42], [10.21, 29.05], [29.84, 94.23], [95.02, 152.34]], \"sentences\": [\"A person tries to get in the sailboat where there is a man.\", \" Then, the person and the man continues sailing in the boat.\", \"The person and the man sail standing on the boat holding the ropes of the sail.\", \" The boat tilt to the left and to the right, while the person and the man continue standing.\"]}, \"v_wH-uaN8gL_k\": {\"duration\": 60.05, \"timestamps\": [[0, 35.43], [10.51, 46.24], [25.82, 59.75]], \"sentences\": [\"A large group of people are seen running around a gym.\", \" The group plays a game of dodgeball against other kids.\", \" The group continue playing with one another while the camera moves around.\"]}, \"v_QASZ8CTxBSg\": {\"duration\": 41.61, \"timestamps\": [[0, 14.15], [10.82, 29.34], [24.13, 39.95]], \"sentences\": [\"A close up of a box is shown followed by a person wrapping it with paper.\", \" The person puts paper all around the box.\", \" The person continues wrapping and walks away.\"]}, \"v_tyeLIzY0MJ4\": {\"duration\": 20.25, \"timestamps\": [[0, 20.25], [0.81, 17.82], [17.51, 18.63], [19.74, 20.25]], \"sentences\": [\"A man is sitting down at a table.\", \" He picks up a large mug of beer and chugs it.\", \" He then sets the mug down onto the table.\", \" Someone sitting next to him claps.\"]}, \"v_iN1DEIADG9o\": {\"duration\": 137.53, \"timestamps\": [[0, 137.53], [4.13, 50.89], [50.89, 137.53]], \"sentences\": [\"A man trains his dog how to catch frisbees and perform tricks and stunts on a large grass covered field by himself.\", \"  A man throws a red frisbee at a white and brown dog and the dog catches it and brings it back.\", \"  The man throws more frisbees and has the dog run between his legs, jump  high and low to catch the frisbee.\"]}, \"v_4EloxAiCydc\": {\"duration\": 195.47, \"timestamps\": [[0, 13.68], [22.48, 109.46], [118.26, 195.47]], \"sentences\": [\"A close up is shown of a man wearing a harness.\", \" He uses a piece to sharpen against a grain of leather.\", \" He shows the tool up close, and demonstrates how it works.\"]}, \"v_Yc9pZ8Vy-3s\": {\"duration\": 218.71, \"timestamps\": [[0, 218.71], [20.78, 51.4], [51.4, 136.69], [136.69, 218.71]], \"sentences\": [\"A group of people kayak down rough streams of narrow water surrounded by rocks.\", \"  Two people kayak on a rough, narrow, body of water surrounded by rocks using paddles to navigate the water, later on the y kayak off of rocks and slide into the water.\", \"  The people kayak under a bridge where people are jumping into the water to swim.\", \"  At the end a person flips the kayak going under water briefly before turning themselves right side up in the water again.\"]}, \"v_VtIMPJjcdn4\": {\"duration\": 82.27, \"timestamps\": [[0, 82.27], [5.35, 43.6], [50.18, 82.27]], \"sentences\": [\"A woman shows how to get odor out of shoes.\", \"  She pours baking soda in the shoes.\", \"  Then she pours the baking soda back out.\"]}, \"v_0x4TP4MPelY\": {\"duration\": 147.8, \"timestamps\": [[0, 42.86], [41.38, 92.37], [133.02, 145.58]], \"sentences\": [\"A close up of a person's hands are shown with a man painting them.\", \" The person continues painting the other's nails while the camera zooms in.\", \" The person finishes the nails and the girl gives a thumbs up.\"]}, \"v_6-cHUULLVGQ\": {\"duration\": 197.48, \"timestamps\": [[0, 67.14], [68.13, 164.89], [165.88, 188.59]], \"sentences\": [\"A person is spraying a car with a hose.\", \" They start wiping the car with a soapy sponge.\", \" They spray the soap off of the car with the hose.\"]}, \"v_Sul7NDmB5HM\": {\"duration\": 225.88, \"timestamps\": [[0, 25.98], [27.11, 225.88], [27.11, 220.24], [220.24, 225.88]], \"sentences\": [\"Title screens appear to open the video.\", \"  A woman in a red top is kneeling on a blue mat.\", \"  The woman rises and stretches forward and back on the mat.\", \"  The woman returns to a kneeling position.\"]}, \"v_ur873jaQO3A\": {\"duration\": 130.42, \"timestamps\": [[0, 12.39], [16.3, 30], [30.65, 57.38], [71.08, 130.42]], \"sentences\": [\"A man is standing outside in front of a row of trees.\", \" He is holding and talking about an archery set.\", \" He shows the up close mechanics of the bow.\", \" He is then shown demonstrating how to use the bow and arrow to shoot at targets.\"]}, \"v_wLKePf07V14\": {\"duration\": 197.23, \"timestamps\": [[3.94, 28.6], [29.58, 84.81], [85.8, 103.55], [104.53, 187.37]], \"sentences\": [\"A man wraps a bottle of wine with cellophane paper.\", \" Then, the wraps the bottle with gift paper over the cellophane paper.\", \" After, the man cuts part of the gift paper to show the green cellophane paper.\", \" Next, the man puts ribbons around the neck of the bottle.\"]}, \"v_my9Z4bun_Dk\": {\"duration\": 124.18, \"timestamps\": [[0, 22.35], [21.11, 65.82], [63.95, 124.18]], \"sentences\": [\"people are standing next to bmx bikes in an indoor field.\", \" the guys then mount their bikes behind the start line.\", \" all of the guys then race across a track of hills and sharp turns.\"]}, \"v_qN0a8-A-5Pg\": {\"duration\": 164.56, \"timestamps\": [[0, 16.46], [16.46, 59.24], [58.42, 164.56]], \"sentences\": [\"a man stands on a field.\", \" the man begins spinning a shot put around.\", \" the man stops spinning and release the shot put.\"]}, \"v_iwhejKH3DSw\": {\"duration\": 203.87, \"timestamps\": [[0, 10.19], [10.19, 49.95], [49.95, 95.82], [95.82, 155.96], [155.96, 192.66], [192.66, 203.87]], \"sentences\": [\"A person is standing in front of a small white table that have utensils ingredients, clear bowls, a clear large measuring cup and neon pink words appear on the screen that say \\\"Russian Salad\\\".\", \"The person grabs the bowl filled with colorful vegetables and they spoon it into an empty clear bowl.\", \"The person then grabs the large clear measuring cup that has mayonnaise in it and they spoon it on top of the vegetables and they mix it all together with the spoon until the vegetables are completely covered, then they spoon the rest of the mayonnaise into the bowl that was left in the measuring cup.\", \"The person takes some liquid and pours two teaspoons into the mixture, then takes a tablespoon and pours two tablespoons of olive oil, adds some salt and pepper, then mixes the mixture with the spoon.\", \"The person grabs a large plate, pours the salad mixture onto the plate, then garnishes it with parsley.\", \"A red screen appears and it includes yellow lettering that is inviting you to visit their channel, subscribe to their channel and to view previous video recipe.\"]}, \"v_fSUwyioi_ws\": {\"duration\": 103.47, \"timestamps\": [[1.55, 8.79], [41.39, 47.6], [89.5, 99.33]], \"sentences\": [\"A man is slicing a tomato on a board.\", \" He puts a piece of white wood into a pan of water.\", \" He then sharpens his knife with a knife sharpener.\"]}, \"v_8ma-p7ap2MQ\": {\"duration\": 224.19, \"timestamps\": [[0, 61.65], [48.2, 147.96], [150.21, 216.34]], \"sentences\": [\"A man is seen speaking to the camera while pointing to plants.\", \" He kneels down still speaking and uses a tool along a hedge.\", \" He continues using the tool and stops to speak to the camera.\"]}, \"v_lviFcaF4HUo\": {\"duration\": 36.97, \"timestamps\": [[0, 2.59], [2.03, 33.64], [32.9, 36.97]], \"sentences\": [\"A girl is on the parallel bars.\", \" She does a gymnastics routine on the parallel bars.\", \" She lands on a blue mat in front of her and puts her arms up.\"]}, \"v_dSww-S8qyCM\": {\"duration\": 94.25, \"timestamps\": [[0, 94.25], [51.84, 81.05], [58.91, 94.25]], \"sentences\": [\"A bunch of girls do long jumps.\", \"  The jumps are measured by men.\", \"  In between jumps, they rake the dirt.\"]}, \"v_baSx0q9LKg0\": {\"duration\": 236.22, \"timestamps\": [[0, 10.63], [10.63, 56.69], [56.69, 77.95], [77.95, 94.49], [94.49, 205.51], [205.51, 236.22]], \"sentences\": [\"a cake with a hershey shape is in a white plate.\", \" someone is mixing eggs and flour and other ingredients in a bowl.\", \" when ready the mix is put in a recipient in chocolate shape.\", \" then the mix is pour in cupcake liners.\", \" when ready the cake is in a tray and the woma put chocolate syrup on the cake and freeze.\", \" when ready the cake its put in white plate and cut in a piece.\"]}, \"v_uqaSFllHrco\": {\"duration\": 141.02, \"timestamps\": [[0, 16.92], [16.92, 141.02], [43.71, 141.02]], \"sentences\": [\"people are on a lakeside wearing helmets and boards.\", \"man is doing wakeboard on a calkm lake and doing jumps on slides on the water.\", \" people are on the dock cheering the team up.\"]}, \"v_HD_vpQCUSCQ\": {\"duration\": 161.07, \"timestamps\": [[0, 26.58], [32.21, 112.75], [114.36, 161.07]], \"sentences\": [\"a woman is standing outside by a field and talking.\", \" A woman is shown getting out of bed early in the morning .\", \" She makes and eats breakfast before going to the gym to work out.\"]}, \"v_CUG8vpMIFEQ\": {\"duration\": 197.97, \"timestamps\": [[0, 38.6], [45.53, 154.42], [159.37, 197.97]], \"sentences\": [\"A swimmer stands on a very high platform.\", \" He dives off backwards into the water.\", \" He spins several times on the way down.\"]}, \"v_mWNTl9Bh7kI\": {\"duration\": 33.37, \"timestamps\": [[0, 18.69], [4.5, 18.69], [20.35, 32.37]], \"sentences\": [\"A small group of men are seen standing on a field.\", \" The men playing a game with one another using sticks to hit a ball.\", \" The continue to run around and chase the ball.\"]}, \"v_-MldnTjJ-zE\": {\"duration\": 178.75, \"timestamps\": [[0, 178.75], [11.62, 128.7], [128.7, 178.75]], \"sentences\": [\"A girl is standing next to a white horse.\", \" She begins to brush the horse.\", \" She walks around the horse and brushes the other side of the horse.\"]}, \"v_1ioKX0iuico\": {\"duration\": 177.18, \"timestamps\": [[0, 17.72], [22.15, 110.74], [116.05, 177.18]], \"sentences\": [\"A group is riding a boat in the river.\", \" Another person is swimming in the water, waiting for a water board.\", \" They put the board on their feet, then water ski behind the boat.\"]}, \"v_rO9SwC42Goo\": {\"duration\": 22.15, \"timestamps\": [[0, 2.1], [3.43, 15.73], [18.39, 22.15]], \"sentences\": [\"A man is standing in front of a camel.\", \" Two children are riding it as it kneels to the ground.\", \" The kids are then able to dismount from the camel.\"]}, \"v_dXONZBWOKHk\": {\"duration\": 58.7, \"timestamps\": [[0, 12.62], [12.03, 39.33], [41.09, 57.23]], \"sentences\": [\"A small child is seen jumping on the bed smiling at the camera.\", \" She jumps down and then back up again.\", \" She continues to jump over and over again on the bed.\"]}, \"v_rCSFBiXxbVs\": {\"duration\": 56.24, \"timestamps\": [[0, 6.75], [9.28, 37.12], [41.62, 56.24]], \"sentences\": [\"A woman is shown in images, and so is a man.\", \" The woman is in the bathroom cutting the man's hair.\", \" She cuts and styles it, showing off the final result.\"]}, \"v_laKctaVegPg\": {\"duration\": 147.04, \"timestamps\": [[8.82, 147.04], [1.47, 8.09], [8.82, 141.16]], \"sentences\": [\"A man demonstrates how to clean a tile floor with bleach,  a bucket and a mop.\", \"  A man talks to a camera while holding a mop before the screen cuts away to 6 videos of him progressively mopping a floor.\", \"  A man vacuums a floor, prepares of bucket of water and bleach, then mops a floor, pours the bucket water in the toilet and returns to speaking to the camera.\"]}, \"v_aPzHheM0Egw\": {\"duration\": 64.3, \"timestamps\": [[0.96, 15.43], [15.43, 44.69], [39.86, 62.05]], \"sentences\": [\"A person is seen laying plaster down on a roof.\", \" The man moves a tool all along the tiles of a roof.\", \" He continues to lay plaster down on the roof.\"]}, \"v_tMM166j4YEw\": {\"duration\": 42.68, \"timestamps\": [[0.85, 8.96], [10.24, 28.81], [26.67, 40.76]], \"sentences\": [\"A man is seen sitting on a horse and rides in chasing a calf.\", \" The man ropes a calf and climbs back on the horse.\", \" Two men run in to grab the calf.\"]}, \"v_-r_bvqjYjYg\": {\"duration\": 66.06, \"timestamps\": [[0, 7.93], [5.62, 24.44], [25.1, 66.06]], \"sentences\": [\"three people are knelled down holding a measuring tape.\", \" one boy gets up and holds a shut put.\", \" the boy then spins around and throws the shot put.\"]}, \"v_cBAlXvu38dg\": {\"duration\": 60.12, \"timestamps\": [[12.02, 25.55], [39.08, 43.28], [44.79, 46.59]], \"sentences\": [\"Man in a blue t-shirt kneels down on the floor.\", \"  Man is leaning on the red wall.\", \"  Man pushes forward and touches the kneecap on the wall.\"]}, \"v_VXCV3KUtCdk\": {\"duration\": 236.12, \"timestamps\": [[0, 42.5], [57.85, 198.34], [199.52, 236.12]], \"sentences\": [\"A view is seen of a bird flying over a canyon.\", \" A man is then seen, talking and showing images of people who spelunk in the caverns.\", \" He continues discussing the artform, while interviewing a man rappelling the side of a cliff.\"]}, \"v_21qQL15lUNY\": {\"duration\": 65.48, \"timestamps\": [[0, 52.06], [11.79, 59.59], [59.59, 64.83]], \"sentences\": [\"A man walks a dog down the sidewalk.\", \"  The dog stays right next to the man.\", \"  He then sniffs the sidewalk at the end.\"]}, \"v_3KsOJiA_uak\": {\"duration\": 24.78, \"timestamps\": [[0, 5.45], [5.82, 17.47], [18.58, 24.78]], \"sentences\": [\"A man is seen speaking to the camera in a crowded bar.\", \" He continues speaking while the camera looks over to a table.\", \" He continues speaking and bends down to the camera.\"]}, \"v_4SLvbRa2NI0\": {\"duration\": 166.79, \"timestamps\": [[0, 53.37], [51.7, 120.09], [105.91, 164.29]], \"sentences\": [\"A young girl is seen speaking to the camera and pointing to a blow dryer.\", \" She then begins blow drying her hair all around with a brush.\", \" She continues to dry her hair and shows it off in the end.\"]}, \"v_EYIYohKR0Qo\": {\"duration\": 108.62, \"timestamps\": [[0, 11.41], [16.84, 67.35], [72.23, 108.62]], \"sentences\": [\"A woman is preparing to dive into a pool.\", \" She goes to the diving board and leans forward.\", \" She jumps into the water, swimming like a fish.\"]}, \"v_vGZO5lM61D4\": {\"duration\": 192.63, \"timestamps\": [[0, 39.49], [49.12, 146.4], [156.03, 192.63]], \"sentences\": [\"A group of people meet at the top of a hill.\", \" It is covered in a thick layer of snow.\", \" They ride snowboards all the way to the bottom.\"]}, \"v_yX_DJiboktI\": {\"duration\": 158.06, \"timestamps\": [[0, 31.61], [26.08, 109.06], [84.56, 154.11]], \"sentences\": [\"Two women are seen holding a pose in the middle of a gym.\", \" They begin performing a routine using batons and others watching on the side.\", \" The girls continue dancing together with the batons and end by holding a pose.\"]}, \"v_3iLo6lxAarc\": {\"duration\": 123.9, \"timestamps\": [[0, 32.21], [26.64, 52.66], [60.71, 119.57]], \"sentences\": [\"A woman is seen speaking to the camera while holding up a box.\", \" She opens the box and pulls out a pair of shoes.\", \" She then puts on the shoes and ties them, walking away in the end.\"]}, \"v_RPkH81M6-NE\": {\"duration\": 143.45, \"timestamps\": [[0, 6.46], [7.17, 9.32], [10.04, 138.43], [19.37, 137.71], [139.15, 143.45]], \"sentences\": [\"A graphic screen in blue appears with a company logo with a motto underneath.\", \" There is a woman on a boat passing buildings and a faded blue graphic with white letters appears at the bottom of the screen.\", \"  A woman in a yellow boat explains how to sail in a single person boat with five essentials to go by.\", \"  White text appears on the screen explaining the steps further.\", \"  A still picture of a book about how to start sailing appears with a link to the online shop underneath it.\"]}, \"v_1epGZvRN3Fw\": {\"duration\": 192.56, \"timestamps\": [[7.7, 68.36], [32.74, 144.42], [47.18, 192.56]], \"sentences\": [\"One man is holding a pole then lifted it as the other man instructed him how to lift properly.\", \" The barbel has green plate and the man started to lift the barbell as the other man watches.\", \" The barbell has yellow plate and the man started to lift it several times as the other man is sitting and watching him.\"]}, \"v_jPaeFy4Phz4\": {\"duration\": 204.43, \"timestamps\": [[0, 34.75], [18.4, 56.22], [34.75, 181.94], [55.2, 204.43]], \"sentences\": [\"A women is staring at the camera.\", \" She is showing off her hair.\", \" Several hair products are then shown.\", \" She demonstrates how to fix her hair.\"]}, \"v_ZWlwKbuK2fM\": {\"duration\": 174.5, \"timestamps\": [[0, 174.5], [0, 75.91], [76.78, 85.5], [85.5, 122.15], [122.15, 174.5]], \"sentences\": [\"Six kids are having karate lesson while several spectators are watching them on the sideline.\", \"  They form a single line and started to execute  hand & feet move back and forth.\", \" After the kicking move, the line breaks and the last two kids in line move further back and the grown man move on the side next to them.\", \" They proceed to there previous position and began to rearrange and face their respective partners.\", \" They bow their heads with each partner and duel while the two man sitting on the chair are watching them.\"]}, \"v_92fD8Cy2zL0\": {\"duration\": 203.69, \"timestamps\": [[0, 1.02], [2.04, 13.24], [14.26, 17.31], [18.33, 203.69]], \"sentences\": [\"There is an intro with a woman's name.\", \" Then we see an animated woman wearing a blue shirt and hoop earrings on stage with a microphone.\", \" Then a drawing of the front of a nail salon is shown.\", \" The scene goes back and forth from the stage with the woman and an animated nail salon with other women.\"]}, \"v_0y_5NIIvUzI\": {\"duration\": 202.9, \"timestamps\": [[0, 11.16], [11.16, 16.23], [16.23, 24.35], [25.36, 88.26], [89.27, 137.97], [137.97, 202.9]], \"sentences\": [\"A man dressed in a black and yellow jacket speaks to a crowd.\", \" A man holding a beer talks to two men on a ski slope.\", \" A man wearing a yellow sweater and holding a beer stretches on a ski slope.\", \" Scenes of different skiers jumping and performing tricks on the ski slopes.\", \" A large crowd of spectators standing on the slopes watching the skiing athletes compete in different competitions.\", \" A skier performs a free style skiing performance as he falls and rolls down hill.\"]}, \"v_Czd1PFeumIo\": {\"duration\": 164.12, \"timestamps\": [[0, 24.62], [24.62, 142.78], [141.96, 164.12]], \"sentences\": [\"Four men appear on stage playing their instruments on a blacked out stage.\", \"As they play,a young lady dressed in a floral dress and a man dressed in a black suit comes out and they begin dancing across the stage.\", \"Once they finish dancing,the two bow and walk off of the stage in opposite directions.\"]}, \"v_sVDRluetSyg\": {\"duration\": 125.46, \"timestamps\": [[0, 16.31], [23.84, 74.65], [79.04, 125.46]], \"sentences\": [\"A woman is standing on a ladder outside a trolley.\", \" She is cleaning the windows while wearing a very short skirt.\", \" She tricks several men into handing her a bucket, when they realize she isn't wearing underwear.\"]}, \"v_D4wcmmQsPng\": {\"duration\": 74.44, \"timestamps\": [[2.98, 74.44], [5.21, 74.44], [7.82, 18.24], [17.87, 74.44]], \"sentences\": [\"A child is shown skating on the ice.\", \" He is holding hockey stick.\", \" He skates backward through obstacles.\", \" He then hits a puck around and shoots it.\"]}, \"v_ncgzVLi_hlI\": {\"duration\": 235.06, \"timestamps\": [[2.35, 57.59], [65.82, 170.42], [164.54, 231.53]], \"sentences\": [\"A group of people are seen walking around a field with some sitting.\", \" A man scores a goal and leads into more people shooting goals.\", \" The teammates celebrate and jump on run another as well as cheer.\"]}, \"v_hFlDERq1ThU\": {\"duration\": 132.87, \"timestamps\": [[0, 38.53], [29.23, 92.34], [85.03, 129.54]], \"sentences\": [\"A man is seen standing with his arm up and climbs on top of a beam.\", \" He spins himself around performing a gymnastics routine.\", \" He jumps down and and cheers while walking away and his performance is shown again.\"]}, \"v_BngR6rNiO_g\": {\"duration\": 115.96000000000001, \"timestamps\": [[0, 13.34], [20.87, 70.16], [72.48, 115.96]], \"sentences\": [\"A couple is dancing on a stage.\", \" An audience watches as they move across the stage.\", \" They spin and twirl as they dance.\"]}, \"v_6fuOwhx91zM\": {\"duration\": 92.67, \"timestamps\": [[0, 12.97], [16.22, 55.6], [57.46, 92.67]], \"sentences\": [\"A man is talking outside in front of a wooded area.\", \" He is holding a skateboard as he talks.\", \" He then shows the positions and ways to ride the board.\"]}, \"v_DqsaFxxfONY\": {\"duration\": 100.36, \"timestamps\": [[4.52, 10.54], [26.09, 36.13], [36.63, 44.66], [45.66, 58.21], [59.21, 89.32]], \"sentences\": [\"A man dismounts from a set a parallel bars in a park onto a platform.\", \" The man does shoulder dips between the bars on the exercise equipment.\", \" The man does push ups on the parallel bars.\", \" The man climbs across the parallel bars hanging upside down then does pull ups.\", \" The man hops over the parallel bars using his arms.\"]}, \"v_KpmdpL5btYo\": {\"duration\": 97.06, \"timestamps\": [[0, 14.07], [14.56, 66.49], [67.46, 97.06]], \"sentences\": [\"A baby is shown floating in water.\", \" He sinks below the surface, looking around.\", \" A woman appears, holding him as he swims.\"]}, \"v_unFlcSwdDFc\": {\"duration\": 117.07, \"timestamps\": [[0, 9.37], [22.83, 80.77], [88.97, 117.07]], \"sentences\": [\"A couple of teams are gathered on a court together.\", \" They are engaged in a game of soccer.\", \" They kick the ball back and forth to each other.\"]}, \"v_GHBeLaysVaA\": {\"duration\": 136.14, \"timestamps\": [[0, 135.46], [19.74, 31.99], [78.28, 80.32]], \"sentences\": [\"Ballerinas are dancing on a dark stage.\", \" A girl in the middle spins around.\", \" They kneel down on the stage together.\"]}, \"v_7vgokK5_Pvc\": {\"duration\": 93.41, \"timestamps\": [[0, 9.34], [13.08, 35.03], [36.9, 93.41]], \"sentences\": [\"Two boys are standing in a yard.\", \" They take off running and jump onto a swing set.\", \" They fly off the swings onto the ground.\"]}, \"v_Usowsx0PDbA\": {\"duration\": 58.93, \"timestamps\": [[0, 9.72], [13.26, 36.83], [40.07, 58.93]], \"sentences\": [\"A man is standing inside a track while spectators watch.\", \" He runs with a javelin over his shoulder.\", \" He throws it as far as he is able.\"]}, \"v_ULwdDmQ8Z_8\": {\"duration\": 122.83, \"timestamps\": [[0, 13.51], [15.35, 33.78], [36.24, 67.56], [79.23, 122.83]], \"sentences\": [\"A woman in an orange vest wearing skis is standing at the edge of a dock by the water.\", \" She sits down on the dock and then gets into the water.\", \" A boat comes and the people inside the boat throw her a line and she grabs it.\", \" Then they take off and she skis behind the boat.\"]}, \"v_YfcxIgsqs5M\": {\"duration\": 195.28, \"timestamps\": [[2.93, 31.24], [39.06, 137.67], [102.52, 186.49]], \"sentences\": [\"A group of cheerleaders are seen walking on stage while the audience cheers.\", \" The group then begins performing a cheering routine with one another.\", \" The group continues to jump and flip around each other and ends by holding a pose and cheering to the camera.\"]}, \"v_v5i_NAlJX1Y\": {\"duration\": 45.16, \"timestamps\": [[9.71, 11.74], [11.97, 27.32], [27.78, 34.55]], \"sentences\": [\"A woman work out in a rowing machine pulling a string with a handle.\", \" The woman moves in the seat backward and forward while pulling the handle.\", \" An arrow shows where the hand of the woman have to reach.\"]}, \"v_3SjuIcAfeWk\": {\"duration\": 94.53, \"timestamps\": [[0, 36.39], [14.65, 36.39], [32.61, 94.53]], \"sentences\": [\"The woman is covering the vase with a clear plastic.\", \" The woman hold the center of the plastic.\", \" The woman tied the ribbon on the wrapper and cut the excess ribbon.\"]}, \"v_7LimgSQsHm0\": {\"duration\": 133.59, \"timestamps\": [[0, 17.37], [17.37, 62.78], [62.78, 96.85], [96.85, 102.19], [102.19, 124.23], [124.23, 133.59]], \"sentences\": [\"A man wearing a suit is sitting behind a desk with papers in front of him, a blue screen behind him, and he's talking into the camera while words scroll at the bottom.\", \" Video clips of hockey players on a rink and people in the stands begin to play while words are still scrolling on the bottom, and at times a man is shown talking to the camera with blue words on the bottom that say \\\"AMATEUR ICE HOCKEY LEAGUE CROWNED WITH GALA GAME AGAINST PAST LEGENDS\\\".\", \"More clips of people playing hockey on a rink and a man holding a microphone because talking and the blue words on the bottom of the screen read \\\"NEW RUSSIAN PRESIDENT VLADIMIR PUTIN MAKES SURPRISE APPEARANCE\\\".\", \"The men are done playing hockey and are now standing in a line so they can shake hands.\", \" A suited man is now holding a microphone and is talking while Vladimir Putin is standing next to him.\", \" Then a large group of the players and although people on the ice gather together to take pictures while people in the stands watch on.\"]}, \"v_fwwo0GsYB7c\": {\"duration\": 81.87, \"timestamps\": [[8.6, 26.61], [25.79, 35.62], [38.07, 40.94]], \"sentences\": [\"People are tearing up the roof on a house.\", \" They put a new roof on the house.\", \" A man is standing on the roof.\"]}, \"v_633ZdPm_GjM\": {\"duration\": 70.89, \"timestamps\": [[0, 15.95], [16.3, 54.59], [47.5, 69.47]], \"sentences\": [\"A close up of a pan is shown with a person mixing in food.\", \" The person fries up the food and adds more ingredients to the pan.\", \" The person continues cooking and places it on a plate.\"]}, \"v_HcZ3irBAcE0\": {\"duration\": 29.47, \"timestamps\": [[0, 28.44], [1.92, 7.22], [7.51, 29.32], [22.69, 28.44]], \"sentences\": [\"A white cat is sitting on a man's lap who is wearing red.\", \" The man has one hand holding the white cats paw and the other nail clippers.\", \" He begins trimming white cats nails.\", \" The white cats black eyes stare straight as the nails are cut.\"]}, \"v_LygR7ds26JY\": {\"duration\": 20.69, \"timestamps\": [[0, 7.55], [7.55, 15.72], [15.72, 20.69]], \"sentences\": [\"A young man is standing on the runway outside next to a large white garage,a tent,and a black van.\", \"After some time,the guy takes off running and does a jump with the pole vault.\", \"He lands the jump successfully drops the stick and walks off of the mat.\"]}, \"v_ennVaOEePHk\": {\"duration\": 237.59, \"timestamps\": [[0, 15.44], [22.57, 47.52], [61.77, 230.46], [106.91, 230.46]], \"sentences\": [\"A flag is blowing in the wind outside.\", \" The camera pans around to show various hills.\", \" Several kids on bikes race through the course.\", \" They go up and over the hills.\"]}, \"v_WPK5VeqNSh8\": {\"duration\": 145.29, \"timestamps\": [[0, 145.29], [26.88, 145.29], [37.77, 145.29]], \"sentences\": [\"a man and a woman holds the rings and put them in the curling court.\", \" two man holds special shoes and are ready to play in the court holding the rings.\", \" man throw the rings to the court playing.\"]}, \"v_yG4C_s7ItA4\": {\"duration\": 114.47999999999999, \"timestamps\": [[0, 16.6], [12.02, 67.54], [57.24, 114.48]], \"sentences\": [\"a woman is sitting wiping her legs.\", \" another woman is sitting in front of the camera talking.\", \" the first woman then begins shaving her legs.\"]}, \"v_Z0mxEFOm_Wc\": {\"duration\": 88.59, \"timestamps\": [[0, 17.27], [17.27, 54.92], [53.59, 88.59]], \"sentences\": [\"a man is scrapping a long piece of wood.\", \" the man then sandblasts the wood.\", \" the man then wipes the piece of wood clean.\"]}, \"v_CocYQOgnegg\": {\"duration\": 157.22, \"timestamps\": [[0, 3.14], [3.14, 32.23], [32.23, 119.49], [119.49, 157.22]], \"sentences\": [\"A person is walking along green grass that is surrounded by water.\", \" Suddenly a leaf blower begins and the person blows all of the leaves into a large pile.\", \"The person walks away from the pile and blows the leaves into another direction and goes to another pile and blows the leaves from the smaller pile over to the area with the bigger pile.\", \"The leaves are now in a big pile together and the person keep blowing them into a pile walking around and around the pile.\"]}, \"v_ux3h_qEusvw\": {\"duration\": 154.18, \"timestamps\": [[0, 47.03], [43.17, 113.32], [94.82, 149.56]], \"sentences\": [\"A close up of potatoes are shown as well as a peeler.\", \" A person is then seen peeling the potatoes in front of the camera.\", \" The person continues peeling and shows the end potatoes.\"]}, \"v_k0ruZZZ5Gxw\": {\"duration\": 66.04, \"timestamps\": [[0, 19.48], [19.48, 28.73], [28.73, 61.09], [61.75, 62.41]], \"sentences\": [\"A middle aged woman and man are standing in their kitchen at the island talking to one another.\", \"It appears to be another day and the woman begins cutting an apple into slices on a plate.\", \"After the apple,she begins cutting pieces off of an iceberg lettuce and mincing them down to smaller pieces.\", \"Once everything is cut smaller,she takes them and puts them in a large clear bowl and swirls them around.\"]}, \"v_EbBlHnunlSI\": {\"duration\": 123.32, \"timestamps\": [[0, 11.72], [4.32, 14.8], [14.18, 123.32]], \"sentences\": [\"a man stands in front of a mirror.\", \" the man puts on eyeglasses.\", \" the man then begins to cut his beard off with a set of electric clippers.\"]}, \"v_ZU4Mgdd3omA\": {\"duration\": 34.78, \"timestamps\": [[0, 32], [9.39, 28.87], [32.18, 33.57], [33.91, 34.78]], \"sentences\": [\"A girl is playing the flute with a lady watching on the webcam and visible on the monitor.\", \" The lady watching turns her head to the right.\", \" The girl finishes playing and lowers her flute.\", \" The girl and the lady both laugh.\"]}, \"v_dJO_4TrLr7E\": {\"duration\": 98.00999999999999, \"timestamps\": [[0, 13.72], [16.66, 61.75], [67.63, 98.01]], \"sentences\": [\"A man and woman are posed on a stage.\", \" They begin dancing together in a fancy way.\", \" They spin, twirl and turn as they dance.\"]}, \"v_Zomv5zlkkEc\": {\"duration\": 182.67, \"timestamps\": [[0, 182.67], [0, 181.76], [179.93, 182.67]], \"sentences\": [\"A woman is belly dancing on carpet.\", \" People are behind her watching her.\", \" She does a spin and bows.\"]}, \"v_-rCYwovSK4s\": {\"duration\": 114.5, \"timestamps\": [[0, 6.87], [6.87, 107.63], [69.84, 107.63], [107.63, 114.5]], \"sentences\": [\"An introduction comes onto the screen for a video about a hammer throw.\", \" A man is shown attempting several hammer throws in a practice arena while.\", \" Other people come and go in the background as the man performs his hammer throws.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_ZQSa_8wofFw\": {\"duration\": 91.21000000000001, \"timestamps\": [[0, 15.51], [16.87, 55.64], [57.01, 88.02]], \"sentences\": [\"Two people are seen sitting and speaking while holding drinks.\", \" They are then shown holding brooms and pushing containers around and writing on paper.\", \" In the end they are shown speaking again outside.\"]}, \"v_bSZnvk2Cx28\": {\"duration\": 101.17, \"timestamps\": [[0, 18.21], [18.21, 29.34], [29.85, 101.17]], \"sentences\": [\"two man are standing outside of a forest.\", \" the two men shake hands.\", \" the men then begin spinning away from each other while kicking towards each other.\"]}, \"v_zRBspE-uJUo\": {\"duration\": 172.99, \"timestamps\": [[0, 44.11], [32, 116.77], [103.79, 171.26]], \"sentences\": [\"A man is seen swimming across a pool and a woman speaking to the camera.\", \" Two people are stretching on the side and the man grabs a boogie board.\", \" The man continues to swim back and fourth as well as perform stretches around the side.\"]}, \"v__n9eNF1WaFU\": {\"duration\": 201.55, \"timestamps\": [[0, 8.06], [11.09, 35.27], [53.41, 57.44], [53.41, 70.54], [80.62, 98.76], [136.05, 187.44], [193.49, 201.55]], \"sentences\": [\"A large dog walks into a building.\", \" The dog sits on a table and gets brushed.\", \" The dog gets into a bath tub.\", \" A woman washes the dog in the bath tub.\", \" She dries the dog with a towel and blow drier.\", \" She shaves and clips the hair of the dog.\", \" The dog walks out of the building.\"]}, \"v_45AIj4-_RBw\": {\"duration\": 196.43, \"timestamps\": [[0, 13.75], [27.5, 59.91], [81.52, 196.43]], \"sentences\": [\"A young girl is seated in front of a piano.\", \" She talks to the camera for a while.\", \" She then plays the piano, giving a performance.\"]}, \"v_-DGsqL65o4k\": {\"duration\": 42.45, \"timestamps\": [[0, 7.22], [7.22, 27.38], [24.62, 42.45]], \"sentences\": [\"two people are standing on the side walk of a flooded street.\", \" a car speeds through the street.\", \" the car pulls a man who is water skiing through the flooded street.\"]}, \"v_fgQ2HYMl3pA\": {\"duration\": 239.07, \"timestamps\": [[23.91, 153.01], [151.81, 160.18], [151.81, 239.07]], \"sentences\": [\"People are playing soccer on the beach.\", \" A man dives into the sand trying to block a goal.\", \" They continue to play soccer on the beach.\"]}, \"v_e8gJpLlqzA8\": {\"duration\": 195.61, \"timestamps\": [[0, 30.32], [30.32, 34.23], [34.23, 184.85], [184.85, 195.61]], \"sentences\": [\"A cheer leading group takes their places on stage to begin their routine.\", \" They begin their routine by lifting 3 girls into the air.\", \" Throughout the routine they dance, lift and launch multiple cheer leaders into the air.\", \" After their routine they celebrate with hugs all around.\"]}, \"v_kuJO1VapxuQ\": {\"duration\": 198.74, \"timestamps\": [[0, 32.79], [33.79, 85.46], [90.43, 198.74]], \"sentences\": [\"A female belly dancer is standing on a dimly lit stage.\", \" She raises one arm at a time as she dances.\", \" She twirls her hips in a specific way to the beat.\"]}, \"v_l7gWFOa7FnI\": {\"duration\": 168.11, \"timestamps\": [[0, 23.54], [33.62, 109.27], [129.45, 168.11]], \"sentences\": [\"A man lies tiles down on the ground.\", \" He intersects them together one at a time.\", \" He talks about how to do it across an entire patio and shows it done.\"]}, \"v_BDQHEemWnSk\": {\"duration\": 155.11, \"timestamps\": [[0, 8.53], [16.29, 69.8], [93.07, 155.11]], \"sentences\": [\"A young woman is skating along a boardwalk and bridge.\", \" Some men join her, and they do several stunts as they skate.\", \" They go over bridges and city sidewalks.\"]}, \"v_mkwCGf92vqo\": {\"duration\": 49.95, \"timestamps\": [[0, 49.95], [3.75, 49.95], [17.98, 49.95]], \"sentences\": [\"People are doing karate in a room.\", \"  A girl knocks three people onto the ground.\", \" She continues to fight them.\"]}, \"v_n1NqFiDdlEU\": {\"duration\": 65.6, \"timestamps\": [[3.61, 7.54], [8.53, 65.6], [54.12, 55.1]], \"sentences\": [\"A crowd of people are cheering.\", \" A person on a motor bike is doing tricks off of a jump.\", \" Three people are holding signs above their heads.\"]}, \"v_hPJw9_nPo_s\": {\"duration\": 204.32999999999998, \"timestamps\": [[0, 70.49], [68.45, 162.44], [147.11, 196.15]], \"sentences\": [\"A close up of a wakeboard is seen as well as a person's hands grabbing onto string.\", \" The person rides around the water on the board while doing jumps.\", \" The person continues riding around the water and showing off scenery.\"]}, \"v_TxgvL4ZJZbo\": {\"duration\": 10.4, \"timestamps\": [[0, 1.77], [2.08, 7.65], [7.96, 10.4]], \"sentences\": [\"a view is seen of a turbulent ocean in a cloudy sky.\", \" A man is attempting to keep his sail upright.\", \" He spins out of control in the wind.\"]}, \"v_YiBenqCKGcA\": {\"duration\": 105.4, \"timestamps\": [[0, 45.85], [0, 105.4], [45.85, 59.55], [59.55, 105.4]], \"sentences\": [\"woman is practicing somersaults on a roofed gym and women behind her are watching her.\", \" in the background people are practicing gymnastics and moving the mats.\", \" women are doing somersaults together in a choreography.\", \" a woman is doing somer saults and big jumps alone.\"]}, \"v_gpKYclCmQHM\": {\"duration\": 167.56, \"timestamps\": [[0, 14.24], [24.3, 77.91], [83.78, 167.56]], \"sentences\": [\"A group of people are on the street.\", \" They go inside a building together.\", \" They engage in a game of beer pong, throwing balls into cups.\"]}, \"v_FDvZUUc5tw4\": {\"duration\": 104.55, \"timestamps\": [[1.57, 93.57], [16.21, 51.75], [62.21, 104.55]], \"sentences\": [\"A cat is having its nails cut.\", \"  The cat looks away as each nail is cut.\", \"  The rear paws are also cut and the cat remains chill.\"]}, \"v_OsrRpGbIpKA\": {\"duration\": 183.35, \"timestamps\": [[0, 34.84], [20.17, 57.75], [54.09, 107.26], [102.67, 183.35]], \"sentences\": [\" a man stands on a ladder holding wall paper on a wall.\", \" the man takes one hand and scraps the wall paper to the wall.\", \" the man then applies more wall paper until the wall is covered.\", \" The man then cuts out excess wall paper out of the corners and edges.\"]}, \"v_D-0MV6LRvbs\": {\"duration\": 186.62, \"timestamps\": [[0, 42.92], [47.59, 124.1], [129.7, 186.62]], \"sentences\": [\"A man is wearing a business suit and crouching beside a car.\", \" A woman is also shown in the same situation.\", \" They are shown learning how to replace tires on a vehicle.\"]}, \"v_uDmEOkAXTfo\": {\"duration\": 127.85, \"timestamps\": [[0, 127.85], [3.2, 26.85], [24.93, 66.48], [63.93, 101], [97.81, 116.98], [114.43, 127.85]], \"sentences\": [\"There's a young woman in a blue shirt talking about her hair and the hair salon she goes to.\", \" She is standing in a park under tree talking about her hair.\", \" She then enters the hair salon and tells the stylist the kind of haircut she wants by doing gestures in front of forehead indicating she wants bangs.\", \" Then she sits on the salon chair where the hairdresser puts a white cover over her and begins cutting her hair.\", \" The hairdresser cuts the girl's front part of the hair in bangs that fall directly on her forehead.\", \" She then shows off her new look with her bangs falling on her forehead.\"]}, \"v_RYl-eG9hasI\": {\"duration\": 201.59, \"timestamps\": [[0, 201.59], [20.16, 30.24], [20.16, 182.44], [183.44, 201.59]], \"sentences\": [\"People are sitting in bleachers of a gym.\", \" A woman walks onto the stage and begins to dance.\", \" She twirls a baton around while dancing.\", \" She finishes and walks off the stage.\"]}, \"v_4x0LdQRN248\": {\"duration\": 22.55, \"timestamps\": [[0, 2.82], [3.49, 15.9], [16.46, 22.55]], \"sentences\": [\"A man is wearing a mask inside a workshop.\", \" He is using welding equipment on a metal horse.\", \" Sparks fly everywhere as he continues to weld.\"]}, \"v_ubNDaGOws0E\": {\"duration\": 122.39, \"timestamps\": [[0, 15.91], [24.48, 80.78], [86.29, 122.39]], \"sentences\": [\"A man and woman are dancing inside a kitchen.\", \" They move back and forth in the confined space.\", \" They twirl and spin as they dance.\"]}, \"v_1imA9vLRd3k\": {\"duration\": 152.64, \"timestamps\": [[0, 18.32], [25.19, 80.9], [91.58, 152.64]], \"sentences\": [\"A man is posing with his hands on his hips.\", \" An instructor is shown talking to his class.\", \" He shows them individually how to do karate moves.\"]}, \"v_KgEHEyz3oKw\": {\"duration\": 188.78, \"timestamps\": [[0, 185], [10.38, 185], [23.6, 67.02], [62.3, 188.78]], \"sentences\": [\"A man is standing in the snow.\", \" He is holding a large shovel.\", \" He holds it up in the air.\", \" He then starts to shovel the snow.\"]}, \"v_55IErOrgQOA\": {\"duration\": 70.64, \"timestamps\": [[0, 67.81], [11.65, 29.67], [29.31, 70.64]], \"sentences\": [\"A horse in a stable eats hay.\", \" An individual's hand uses a brush on the horse's fur.\", \" The individual moves to the other side of the horse and uses the brush on the horse's hair.\"]}, \"v_ByIIq3jFOKo\": {\"duration\": 193.06, \"timestamps\": [[0, 30.89], [41.51, 128.39], [129.35, 193.06]], \"sentences\": [\"Several large groups of people are riding multiple seated rafts.\", \" They are using paddles to navigate the rough waters.\", \" They pause to wave at the camera when it is easier going.\"]}, \"v_firp_OhUMPc\": {\"duration\": 194.19, \"timestamps\": [[0, 19.42], [19.42, 185.45], [185.45, 194.19]], \"sentences\": [\"A young man is playing with a black and white dog in a grass field using frisbees.\", \" The dog performs tricks using the frisbee as the crowd watches.\", \" The man finishes with the dog jumping up in his arms.\"]}, \"v_7A_NgDs7jZY\": {\"duration\": 216.72, \"timestamps\": [[0, 19.5], [14.09, 161.46], [112.69, 216.72]], \"sentences\": [\"Five ladies are standing on the side of the stages.\", \" The ladies walked to the center of the stage and started dancing waving their scarves.\", \" The ladies started to do belly dancing, they put aside their scarves and dance.\"]}, \"v_94q8YdJoPUw\": {\"duration\": 89.14, \"timestamps\": [[0, 32.54], [32.98, 66.86], [66.41, 82.01], [82.46, 89.14]], \"sentences\": [\"A stream of water appears with rocks and medium but bold waves flashing throughout the water.\", \"After several subtitles,a man appears kayaking just sitting in the middle of the current struggling to go forward.\", \"Time passes by and he is then seen again flipping over after continuous waves come knocking him out of the kayak.\", \"He eventually gets it together and continues spinning around in circles in the water.\"]}, \"v_vigHVj40dO4\": {\"duration\": 231.35, \"timestamps\": [[0, 43.96], [46.27, 165.42], [137.66, 220.94]], \"sentences\": [\"A man is seen pushing a piece of machinery over large grass.\", \" A 3d animation is shown how the tool works.\", \" A woman is then seen using the machine and pushing through the tall grass as well as others using the machine.\"]}, \"v_GSFyEkGCUVo\": {\"duration\": 181.72, \"timestamps\": [[0, 89.95], [89.95, 117.21], [117.21, 135.38], [135.38, 181.72]], \"sentences\": [\"woman is doing somersaults holding baton.\", \" woman is in a competition in the middle of stage doing a choreography with a baton.\", \" a couple is doing a choreography with batons.\", \" a woman is in the middle of a court in a roofed gym andin a soccer field.\"]}, \"v_5-vAXCUN8X0\": {\"duration\": 190.24, \"timestamps\": [[0, 54.22], [29.49, 123.66], [104.63, 190.24]], \"sentences\": [\"a crowd is gathered at an indoor swimming pool.\", \" several people are in the pool throwing a ball around.\", \" two teams play water polo.\"]}, \"v_nqB4Zn6UWdk\": {\"duration\": 69.41, \"timestamps\": [[0, 10.41], [16.66, 47.2], [49.28, 69.41]], \"sentences\": [\"Several people are running down a street.\", \" They are running with a man wearing a cross on his back.\", \" They are engaged in a race.\"]}, \"v_UL_3QfD3ERM\": {\"duration\": 90.95, \"timestamps\": [[0, 11.82], [17.74, 56.39], [59.12, 90.95]], \"sentences\": [\"A large crowd is gathered around a field.\", \" People enter the field with frisbees and their dogs.\", \" They get their dogs to do numerous tricks using the frisbees.\"]}, \"v_zSOK9jmWE1E\": {\"duration\": 186.08, \"timestamps\": [[0, 4.65], [5.58, 22.33], [23.26, 74.43], [75.36, 172.12], [173.05, 186.08]], \"sentences\": [\"A boat dock is shown with \\\"Stuart Cove's Dive Shop\\\" overlaid in graphics.\", \" \\\"The Bahamas\\\" is overlaid on video of a boat on water.\", \"  A shark is swimming in the water as a man in diving suit jumps in.\", \" Various fish and sharks are shown swimming in a frenzy in the water as the diver feeds them.\", \" The divers resurface and talk to each other with their heads above water.\"]}, \"v_zh0haUMeZV0\": {\"duration\": 144.5, \"timestamps\": [[0, 16.62], [19.51, 97.54], [100.43, 144.5]], \"sentences\": [\"A man is shown speaking inside a gym.\", \" Several other people are in the background working out on the equipment.\", \" The man kneels on the floor, showing how to position oneself for lifting smaller weights.\"]}, \"v_0BHufmWSI6Y\": {\"duration\": 145.31, \"timestamps\": [[0, 144.58], [34.15, 82.1], [118.43, 145.31]], \"sentences\": [\"A person is showing how to lay tile indoor using a rack.\", \"  He places the tiles in each square and hits them with a mallet.\", \"  The finished product looks great.\"]}, \"v_i2X7z9ywHV8\": {\"duration\": 192.22, \"timestamps\": [[0, 29.79], [29.79, 60.55], [60.55, 105.72], [105.72, 137.43], [137.43, 182.6], [190.29, 192.22]], \"sentences\": [\"A young man is sitting down on a brown couch blowing out smoke from a hookah.\", \"After the smoke clears,he begins talking excessively and making several hand motions.\", \"When he removes his hand from his throat,he takes another puff of the hookah and blows it out again.\", \"All of a sudden,he appears with a plastic cup with holes on both ends in his left hand.\", \"Another pull is taken and he blows through the cup to create rings as he exhales.\", \"A large blue hookah then appears as well as the animated version of the man smoking on his website.\"]}, \"v_qjacthwabek\": {\"duration\": 11.38, \"timestamps\": [[0, 10.07], [10.41, 10.7], [11.21, 11.38]], \"sentences\": [\"A guy is half kneeing on a light blue platform and pulling a handle to an exercise machine.\", \" The guy looks towards the exercise machine.\", \" The guy stands up and allows the handle to get closer to the exercise machine.\"]}, \"v_R_YZNqP1gSE\": {\"duration\": 119.4, \"timestamps\": [[0, 21.49], [22.09, 78.21], [87.76, 115.22]], \"sentences\": [\"A man is seen showing off other men's heads then speaking to the camera.\", \" The man then begins giving another man a haircut.\", \" He uses a razor and cuts all along the man's hair and ends by styling it.\"]}, \"v_Xq2LIzE5eDs\": {\"duration\": 119.0, \"timestamps\": [[0, 16.66], [19.64, 85.09], [90.44, 119]], \"sentences\": [\"A dog is shown swimming after a ball in the ocean.\", \" He catches up to it near a wooden slat floating in the water.\", \" He snaps at the ball, rolling it back toward the shore.\"]}, \"v_FDLhpMkJwCM\": {\"duration\": 12.32, \"timestamps\": [[0, 12.32], [3.88, 4.37], [0, 12.2]], \"sentences\": [\"A man is standing up playing a saxophone.\", \" He stops playing to adjust the mouth piece .\", \"People are standing behind him talking.\"]}, \"v_-02DygXbn6w\": {\"duration\": 109.71000000000001, \"timestamps\": [[0, 51.56], [51.56, 99.83], [99.83, 109.71]], \"sentences\": [\"Some people at the top of a snow slope begin to snowboard down the slope.\", \" The person with the camera falls and cannot stop themselves as they roll down the slope.\", \" When they finally stop they see some other skiers who are at the bottom of the slope.\"]}, \"v_ymJTN8aKZEw\": {\"duration\": 86.28999999999999, \"timestamps\": [[0, 6.47], [9.49, 26.75], [40.12, 86.29]], \"sentences\": [\"Two men are outside in a yard.\", \" An older gentleman has been blindfolded.\", \" He is using a bat to swing at a pinata over and over.\"]}, \"v_rrKGM5hck1A\": {\"duration\": 99.15, \"timestamps\": [[0, 14.38], [16.36, 55.03], [67.42, 99.15]], \"sentences\": [\"A man and woman are dancing inside a gym.\", \" Then we see them on a professional stage, dancing while dressed up.\", \" They spin and twirl together across the stage.\"]}, \"v_D2JvqkKa-qM\": {\"duration\": 14.16, \"timestamps\": [[0, 2.76], [2.97, 9.27], [10.05, 14.16]], \"sentences\": [\"Two women are standing at the end of diving boards.\", \" They flip through the air, diving in unison.\", \" The two women hit the water at the same time.\"]}, \"v_Si6LZFiQT3k\": {\"duration\": 190.92, \"timestamps\": [[0, 53.46], [50.59, 128.87], [124.09, 185.19]], \"sentences\": [\"A close up of a fire pit is shown with a person putting in various twigs and sticks.\", \" The man sits and holds up a knife and begins creating sparks into the fire.\", \" He strokes the fire and adds more objects to make it bigger.\"]}, \"v_weKPXw4nxKA\": {\"duration\": 141.97, \"timestamps\": [[0, 141.97], [0, 141.26], [0, 140.55]], \"sentences\": [\"man is standing in a wooden porch.\", \" man with long hair is playing congas.\", \" blonde man is standing in poch playing congas.\"]}, \"v_gdmGZK_vFAc\": {\"duration\": 36.47, \"timestamps\": [[0, 5.65], [5.65, 15.13], [15.13, 36.29]], \"sentences\": [\"This woman is standing over the garbage can as she peels the potato and the man recording says: She just peeled this potato in 3 seconds.\", \" Then I see a few smoke streaks in the air and he turns the camera to show her walking to the sink to wash it.\", \" Then he moves the camera downward to show all of the peelings from the potatoes she's peeled that are in the garbage can and shows the actual potatoes on the kitchen counter.\"]}, \"v_DVXOr56dlKg\": {\"duration\": 131.15, \"timestamps\": [[0, 17.7], [33.44, 40.66], [77.38, 79.34]], \"sentences\": [\"Man wearing black pole vaults in hot weather.\", \"  A Frenchman pole vaults in hot weather.\", \"  Renaud goes for another exciting pole vault.\"]}, \"v_XELYXH6fqeA\": {\"duration\": 153.48, \"timestamps\": [[2.3, 49.88], [43.74, 109.74], [107.44, 148.11]], \"sentences\": [\"A large group of people are seen standing around an area speaking to one another.\", \" A group of people grab a hold of a rope as well as another group on the other side.\", \" The men then begin pulling the rope and stop by walking around.\"]}, \"v_03JdaRepHkA\": {\"duration\": 123.48, \"timestamps\": [[0, 1.85], [1.85, 12.35], [12.35, 20.99], [20.99, 51.86], [51.86, 80.26], [80.26, 112.99], [113.61, 117.31], [117.93, 123.48]], \"sentences\": [\"A logo for the spike network pops up briefly.\", \" A woman is seen mixing a couple of drinks and the title of the show pops up on screen for a few seconds.\", \" The camera focuses on an alcoholic beverage and a bottle then cuts to a female bartender.\", \" She begins mixing a drink together in a glass and covers it with a metal cover.\", \" She demonstrates how the glass is to be secured and begins to mix the contents properly.\", \" After she is finished she separates the two containers and proceeds to mix another liquid into the metal container before pouring it back into a glass and adding fixings to it.\", \" The camera then cuts to a shot of the beverage, with a list of it's contents on the right.\", \" The camera then cuts to a gentleman reaching for a glass and a flash of the spike logo.\"]}, \"v_XBO6AIdaCzU\": {\"duration\": 107.16, \"timestamps\": [[0, 8.57], [12.32, 36.97], [52.51, 107.16]], \"sentences\": [\"A man is walking along a beam in front of an audience.\", \" He dances and sings, dressed like a pirate.\", \" He claps and the crowd claps with him.\"]}, \"v_-jNouTszLJ0\": {\"duration\": 103.25999999999999, \"timestamps\": [[0, 4.13], [4.65, 69.7], [70.22, 103.26]], \"sentences\": [\"A large group is gathered around two men playing beer pong.\", \" The men take turns tossing the ping pong balls.\", \" The match ends and the contestants hug.\"]}, \"v_qcsGJTJstZ4\": {\"duration\": 30.93, \"timestamps\": [[0, 30.93], [2.17, 4.95], [10.21, 15]], \"sentences\": [\"People are playing dodge ball in a room.\", \" A man throws a ball and hits a woman in the face.\", \" He walks up to her and she tries to hit him.\"]}, \"v_2zVpWu1i5qM\": {\"duration\": 96.18, \"timestamps\": [[0, 13.95], [22.12, 67.81], [75.5, 96.18]], \"sentences\": [\"A man is standing in front of a table in a classroom.\", \" He is talking about how to make a sandwich.\", \" He pulls out the bread and applies the toppings.\"]}, \"v_Ey-0Q6VNJaY\": {\"duration\": 213.67000000000002, \"timestamps\": [[0, 9.62], [10.68, 91.88], [91.88, 180.55], [181.62, 213.67]], \"sentences\": [\"An animated \\\"Braille Skateboarding com\\\" logo appears.\", \" A young person stands in the street with their skateboard and performs some simple tricks.\", \" A young man is shown on a parking lot skating.\", \" An advertisement about mastering skateboarding is shown with video links.\"]}, \"v_BFxxrjqgF0w\": {\"duration\": 85.53999999999999, \"timestamps\": [[0, 11.55], [10.27, 48.33], [44.48, 85.54]], \"sentences\": [\"tiny people are sitting in a van.\", \" tiny people are standing in a bull ring.\", \" the tiny people then begin bull fighting with baby bulls.\"]}, \"v_UYe6JGaUZzg\": {\"duration\": 117.35, \"timestamps\": [[0, 21.12], [27.58, 88.6], [96.82, 117.35]], \"sentences\": [\"A little girl is performing on a stage.\", \" She is tossing and spinning a baton.\", \" She also does several dance moves.\"]}, \"v_t7J7SugZPlE\": {\"duration\": 74.47, \"timestamps\": [[0, 4.47], [5.21, 30.53], [30.53, 55.85], [56.59, 61.43], [61.81, 74.47]], \"sentences\": [\"An old lady in curler, tying her robe came out and an old man in robe follows and kiss her.\", \" They come and open the door and another old man came in and the man in robe shows him a notebook while the lady gets something in the closet.\", \" They give the old man some other things and a little boy comes running to take away the toys but the lady ask him to return it and shows him a plant instead.\", \" The little boy runs outside and the lady drags him inside.\", \" On their way inside, he kicks the old man  and the old lady waves her hand and go inside the house.\"]}, \"v_b1wnLw3H1vo\": {\"duration\": 53.57, \"timestamps\": [[0, 53.57], [2.41, 53.57], [6.16, 53.57], [11.52, 53.57]], \"sentences\": [\"Two people stand in a boxing ring.\", \" They are practicing boxing with each other.\", \" The girl swings several punches at the man.\", \" He blocks her punches she throws.\"]}, \"v_CjPN7fw0B48\": {\"duration\": 34.76, \"timestamps\": [[0, 34.76], [2.26, 23.12], [23.46, 34.76]], \"sentences\": [\"A backyard is shown between a wooden fence.\", \" A man is mowing the yard up and down.\", \" He then mows the yard sideways.\"]}, \"v_SKtUq_1cOSs\": {\"duration\": 55.96, \"timestamps\": [[0, 15.95], [20.15, 45.05], [47.57, 55.96]], \"sentences\": [\"A weight lifter is on a stage outside.\", \" He lifts a large dumb bell to his chest.\", \" He then lifts it over his head.\"]}, \"v_aSxSgymPOBw\": {\"duration\": 95.64, \"timestamps\": [[0, 43.52], [13.87, 43.52], [44.47, 52.6]], \"sentences\": [\"Someone is walking along a snowy sidewalk.\", \" A white dog is on a leash in front of them.\", \" They cross the street to the other side.\"]}, \"v_xnCw4tvy0uQ\": {\"duration\": 225.86, \"timestamps\": [[0, 173.91], [40.65, 156.97], [176.17, 225.86]], \"sentences\": [\"A person tubes down a mountain.\", \"  He then falls off and walks the tube back.\", \"  The man goes up the tow rope.\"]}, \"v_XBMiD_7fdF4\": {\"duration\": 55.26, \"timestamps\": [[0, 7.18], [7.18, 29.57], [32.33, 55.26]], \"sentences\": [\"A recording of a computer screen is shown.\", \" In it, a man is choosing a kind of liquor.\", \" He is then shown with an assortment of beers as he talks.\"]}, \"v_JyfelXz6GaA\": {\"duration\": 123.9, \"timestamps\": [[0, 13.01], [16.11, 97.26], [73.1, 120.8]], \"sentences\": [\"A large group of people are seen celebrating and shows two teams huddled up together.\", \" The teams are then shown playing a game of soccer with one another.\", \" The men continue to play up and down the field.\"]}, \"v_2zohqWPmeQU\": {\"duration\": 185.18, \"timestamps\": [[0, 50.92], [46.3, 125], [107.4, 179.62]], \"sentences\": [\"A close up of chairs are shown as well as a table and bench.\", \" The person begins using a tool on the chair to scrape off the paint.\", \" The person continues scraping paint off and showing off the furniture again.\"]}, \"v_2icoQWmbocU\": {\"duration\": 68.85, \"timestamps\": [[0, 2.41], [2.41, 62.31], [62.31, 68.85]], \"sentences\": [\"An introduction comes onto the screen for a trailer about a martial arts movie.\", \" The trailer is then played showing several martial arts battles and other captions on the screen.\", \" The video ends with the closing captions and graphics shown on the screen.\"]}, \"v_QylENMzsW9w\": {\"duration\": 64.51, \"timestamps\": [[0, 7.42], [10, 38.38], [42.25, 64.51]], \"sentences\": [\"A living room in a house is shown.\", \" A woman appears, mopping the floors.\", \" She continues mopping until the floor is clean.\"]}, \"v_Ad9jrt2bP1o\": {\"duration\": 40.08, \"timestamps\": [[0, 8.42], [8.22, 31.06], [32.66, 40.08]], \"sentences\": [\"People are seen walking around a track and sitting down.\", \" One stands before a track and looks off into the distance.\", \" He runs down the track and into a sand pit.\"]}, \"v_cZFThsHMC5w\": {\"duration\": 172.04, \"timestamps\": [[0, 5.16], [17.2, 33.55], [33.55, 172.04]], \"sentences\": [\"A man is sitting down on a chair.\", \" He stands up and beings doing karate moves.\", \" Another man walks in and they begin fighting.\"]}, \"v_TqO5Ddh5Lp4\": {\"duration\": 60.14, \"timestamps\": [[0, 60.14], [33.38, 36.38], [36.69, 41.5]], \"sentences\": [\"A man paddles a canoe with the camera in first person view.\", \" A wave crashes into the canoe.\", \" The man recovers from the wave.\"]}, \"v_2iW1Eq9SDW4\": {\"duration\": 26.26, \"timestamps\": [[0, 4.07], [4.07, 16.28], [16.15, 26.26]], \"sentences\": [\"Six individuals are outside standing in the sand with a volley ball net separating them.\", \"Once they have finished talking,the beach volley ball game begins and the competition starts.\", \"However,after a couple of serves,the lady in the front gets hit in the head with the ball and everybody stops to look at her.\"]}, \"v_aGlfi9PqRdY\": {\"duration\": 122.53, \"timestamps\": [[0, 28.8], [28.8, 84.55], [79.03, 118.24]], \"sentences\": [\"A close up of ingredients are shown laid out on a table and leads into a person cutting up potatoes.\", \" They put the potato into a pot and the skin in a bowl.\", \" He finally puts salt in the pot.\"]}, \"v_v6go4RA0ZB4\": {\"duration\": 13.51, \"timestamps\": [[0, 1.22], [1.62, 8.24], [8.58, 13.51]], \"sentences\": [\"a little girl is swimming the length of a pool.\", \" other people in the pool watch on as she goes.\", \" She reaches the edge, and begins climbing out of the water.\"]}, \"v_gSH5ya0pfko\": {\"duration\": 96.97, \"timestamps\": [[0, 27.64], [24.24, 62.54], [65.94, 91.63]], \"sentences\": [\"A man is seen bending down near lawn flamingos hitting a ball.\", \" Another man is seen hitting balls past the flamingos in the lawn.\", \" A woman walks out to watch the men hit the balls around.\"]}, \"v_jQVT4u6NojM\": {\"duration\": 78.3, \"timestamps\": [[0, 23.49], [20.36, 57.55], [52.07, 75.56]], \"sentences\": [\"A group of people are seen walking around when two men grabs hands.\", \" The men then begin arm wrestling one another while other watch.\", \" One beats the others and shakes him hands while walking away.\"]}, \"v_01_BrVxYsE0\": {\"duration\": 208.98, \"timestamps\": [[0, 44.93], [28.21, 73.14], [52.25, 93], [93, 202.71]], \"sentences\": [\"A man is shown at a bar.\", \" He is then talking to a camera.\", \" He then puts ingredients into a glass.\", \" He pours alcohol into the mix.\"]}, \"v_FmaW2KK4wWU\": {\"duration\": 215.34, \"timestamps\": [[0, 18.3], [18.3, 55.99], [55.99, 76.45], [76.45, 108.75], [108.75, 152.89], [152.89, 215.34]], \"sentences\": [\"woman is standing in a woom wallpapering a wall.\", \" woman grabs wallpaper paste from a buckt and the materials are shown.\", \" the woman measure the wallpaper and cut it.\", \"  the woman is marking the wallpaper and plum the level of the wallpapers.\", \" then paste the wallpaper with a brush in the back part and soak it.\", \"then the woman hang the wallpaper in the wall and with a shovel is flattening the paper and cuting the borders and do the same with another paper.\"]}, \"v_oCicjtc1t9Y\": {\"duration\": 88.05, \"timestamps\": [[0.88, 11.45], [14.97, 58.55], [51.07, 84.97]], \"sentences\": [\"A small child is seen raking leaves with an older man next to her.\", \" The man and child continue to push leaves around the yard.\", \"  The camera pans around the girl who is looking at the camera.\"]}, \"v_kgvbU_3jEy8\": {\"duration\": 163.92000000000002, \"timestamps\": [[0, 9.02], [9.84, 159.01], [18.85, 154.09], [59.83, 98.35], [138.51, 139.33], [54.09, 143.43], [159.82, 163.92]], \"sentences\": [\"A black screen appears with two instances of white text zooming in explaining what you are about to see.\", \"  There are two teams playing indoor soccer one team in white and the other in blue.\", \"  Throughout the video there are pauses where players from both teams are circled, have connecting lines and arrows drawn in front to show a movement of a play .\", \"  Yellow text is seen at the bottom of the screen.\", \"  There is a zoom in of the back of a player walking.\", \" The screen goes black with white letters and numbers.\", \"  The screen goes black and the credits in white letters appears.\"]}, \"v_OaFYMXKxTbk\": {\"duration\": 144.82, \"timestamps\": [[0, 34.03], [29.69, 91.24], [103.55, 139.75]], \"sentences\": [\"Several shots are shown of a mountain as well as people walking with skis.\", \" A large crowd of people watch as others ski on a fake mountain indoors.\", \" The people move up and down the track while others throw obstacles in their way.\"]}, \"v_8QEG_1GhoEc\": {\"duration\": 148.03, \"timestamps\": [[0, 148.03], [25.16, 65.13], [65.13, 148.03]], \"sentences\": [\"This video gives viewers tips on how to have effective mulching.\", \" He tells viewers how to not make the common mistake of over mulching and piling the dirt too high on the tree.\", \" He also tells the benefits of doing so and he gives really great tips on how to landscape.\"]}, \"v_JlCQlNjvXzA\": {\"duration\": 85.15, \"timestamps\": [[0, 13.2], [10.64, 54.49], [50.66, 85.15]], \"sentences\": [\"a digital screen is shown zoomed in.\", \" a man presses a button on an elliptical.\", \" the man holds on to the handle bars & begins vigorously using the elliptical.\"]}, \"v_z3-tII3XcUs\": {\"duration\": 6.1, \"timestamps\": [[0.12, 3.69], [1.16, 4.63], [2.77, 5.98]], \"sentences\": [\"A woman is seen holding a guitar.\", \" She begins strumming the guitar and singing.\", \" She continues playing and looking to the camera.\"]}, \"v_jDfTrTtPs5s\": {\"duration\": 40.47, \"timestamps\": [[0, 8.09], [7.69, 27.93], [25.3, 38.85]], \"sentences\": [\"Two people are seen moving around a small room.\", \" The people hold tennis rackets and hit the ball off the wall.\", \" The people continue hitting the ball back and fourth.\"]}, \"v_y-rgla4aNUo\": {\"duration\": 226.12, \"timestamps\": [[0, 40.7], [45.22, 151.5], [160.54, 226.12]], \"sentences\": [\"A man is seated inside a building.\", \" He is playing a guitar in front of a drum set.\", \" He is talking as he continues to play.\"]}, \"v_v5patZyuYys\": {\"duration\": 213.23, \"timestamps\": [[0, 30.92], [30.92, 204.7], [204.7, 213.23]], \"sentences\": [\"team players are in a large soccer field having an argument.\", \" man is in the base ready to hit the ball and people is running, then the players are making a change of positions.\", \" the other team is walking to the field and putiing on their positions.\"]}, \"v_RHb_nF11Scc\": {\"duration\": 30.54, \"timestamps\": [[0, 27.79], [0, 30.54], [0, 29.92]], \"sentences\": [\"man is standing in front of a woman's foot.\", \" the man is cutting the woman's nails.\", \" a man and a woman are on a small room.\"]}, \"v_-2VzSMAdzl4\": {\"duration\": 223.48, \"timestamps\": [[0, 15.64], [15.64, 35.76], [35.76, 223.48]], \"sentences\": [\"a boat is being hold by a car in a highway.\", \" people are in a boat and a woman is doing wakesurfing in the back.\", \" two people are wakesurfing together in a lake.\"]}, \"v_cT4EquMmRiw\": {\"duration\": 176.82, \"timestamps\": [[0, 17.68], [18.57, 47.74], [42.44, 77.8], [65.42, 126.43], [113.16, 176.82]], \"sentences\": [\"empty boats are seen in water.\", \" a girl walks with a paddle in her hand.\", \" a boy walks with a paddle in his hand.\", \" a few kids gather into a boat.\", \" the kids paddle through water.\"]}, \"v_IaT8-cA_AVU\": {\"duration\": 182.6, \"timestamps\": [[0, 19.17], [16.43, 37.43], [37.43, 182.6], [55.69, 182.6]], \"sentences\": [\"A man in a white shirt talks to a camera.\", \" He grips the hand of another man.\", \" They then begin to arm wrestle.\", \" The do several rounds while they talk.\"]}, \"v_hYAE418i-ZY\": {\"duration\": 219.36, \"timestamps\": [[0, 72.39], [70.19, 159.04], [117.36, 216.07]], \"sentences\": [\"Several clips are shown of men getting a hair cut followed by a man speaking to the camera.\", \" The man then begins cutting the hair of a man sitting in a chair.\", \" The man continues to cut and style his hair while showing it to the camera in the end.\"]}, \"v_lrlUN65DM8c\": {\"duration\": 109.03999999999999, \"timestamps\": [[0, 36.53], [29.44, 75.78], [66.52, 108.5]], \"sentences\": [\"A man walks into a circle and spins himself around.\", \" He throws an object off into the distance and performs this several more times.\", \" He throw is shown many times again afterwards.\"]}, \"v_J8mSgO4r-kQ\": {\"duration\": 190.8, \"timestamps\": [[0, 25.76], [43.88, 99.22], [106.85, 190.8]], \"sentences\": [\"Two men are crouched on a frozen lake.\", \" They have drilled a hole through the ice.\", \" They use a fishing pole to catch fish through the hole in the water.\"]}, \"v_ulopyhvgyQg\": {\"duration\": 40.57, \"timestamps\": [[0, 2.84], [3.04, 8.72], [8.72, 29.41], [29.61, 37.32], [37.52, 40.57]], \"sentences\": [\"A \\\"Top Dog Express Car Wash\\\" logo appears on screen.\", \" A man speaks to the camera in front of an oil change station.\", \"  People pump gas while other wash and clean cars.\", \" The man speaks to the camera again.\", \" The logo reappears on screen.\"]}, \"v_AY6QSTuHGRc\": {\"duration\": 168.53, \"timestamps\": [[0, 16.85], [16.01, 52.24], [48.03, 85.11], [98.59, 163.48]], \"sentences\": [\"From behind a black screen a go pro camera emerges into view followed by the logo.\", \" An outdoors scene by a lake is followed by a snowy ski lift scene.\", \" Snowboarders and skiers fill the outdoor action shots.\", \" More shots heavy on the nature and outdoors wonder and finally end.\"]}, \"v_sGUkc9ajgiU\": {\"duration\": 31.63, \"timestamps\": [[0, 12.18], [2.85, 3.48], [12.33, 25.78], [25.93, 31.63]], \"sentences\": [\"A man shines another man's shoe.\", \" The man makes a hand gesture towards the camera.\", \" The first man stops shining the shoe and the two men stare at each other.\", \" The first man talks to the camera while standing by a door.\"]}, \"v__yFOkxb22RI\": {\"duration\": 60.42, \"timestamps\": [[0, 15.71], [16.92, 42.29], [40.18, 59.51]], \"sentences\": [\"A man is shown speaking to the camera holding up products.\", \" He sprays them down on a table.\", \" He finally wipes down the table with a rag.\"]}, \"v_-TubttTNt90\": {\"duration\": 220.52, \"timestamps\": [[0, 25.36], [25.36, 155.47], [166.49, 220.52]], \"sentences\": [\"A group of chefs are gathered around a table.\", \" The head chef is demonstrating how to sharpen a knife.\", \" He rubs a knife back and forth across a sharpening block.\"]}, \"v_gtAl_FkXdR8\": {\"duration\": 144.24, \"timestamps\": [[0.72, 30.29], [31.01, 51.93], [52.65, 67.79], [67.79, 96.64], [97.36, 113.23], [113.95, 144.24]], \"sentences\": [\"Soldiers walk holding firearms and wearing military outfit, one man wears a camouflage.\", \" The soldiers shoot to others while protected their bodies behind large containers and walls.\", \" Men run to the woods, and the man with the camouflage shoots to others.\", \" Other men search on abandoned house while shooting.\", \" Some soldiers run to a trench for protection and load his firearm.\", \" Men continue running and shooting near a tunnel and a helicopter.\"]}, \"v_zhPqZtWuhow\": {\"duration\": 33.3, \"timestamps\": [[0, 6.33], [7.16, 22.14], [22.81, 33.3]], \"sentences\": [\"Two men are playing a game of foosball.\", \" A man acts as referee while standing in front of them.\", \" Their game is being broadcast on a large screen.\"]}, \"v_Ve37zGVerDU\": {\"duration\": 91.86, \"timestamps\": [[0, 18.37], [20.67, 67.06], [73.03, 91.86]], \"sentences\": [\"Two men are talking inside a doctor office.\", \" They use the equipment to engage in arm wrestling.\", \" They push and pull trying to win.\"]}, \"v_ieWgalZPc2g\": {\"duration\": 132.45, \"timestamps\": [[0, 15.23], [20.53, 86.09], [91.39, 132.45]], \"sentences\": [\"A group of bikers are gathered outside a race.\", \" Several reactions from players and spectators are shown.\", \" We then see many clips of people having accidents on the bikes.\"]}, \"v_iIVOAvu3qtM\": {\"duration\": 68.87, \"timestamps\": [[0, 14.46], [19.28, 50.28], [57.51, 68.87]], \"sentences\": [\"A man is inside a workshop with a board of wood.\", \" He uses varnish to wipe down the board.\", \" He continues varnishing the wood until it shines.\"]}, \"v_IN4nGNF9gi8\": {\"duration\": 108.02000000000001, \"timestamps\": [[0, 16.2], [16.2, 34.03], [34.03, 78.85], [78.85, 88.58], [88.58, 108.02]], \"sentences\": [\"A blurry black and white video plays of a woman opening glass doors as the video clears up and she enters the business and she sits down on a chair.\", \"The woman is then shown sitting down with a male hairdresser behind her fussing with her hair, measuring it, washing it, and rinsing it.\", \"The hairdresser has a pair of scissors in his hands and he starts cutting the woman's hair, combing it, sectioning it off, then blow dries and razors her hair.\", \"The man is now blow drying and styling her hair with a blow dryer and his fingers.\", \"When he's finished the woman shakes her head back and forth, walks from the chair, leaves the business through the glass doors, goes to the camera for a close up shot then walks away from the camera.\"]}, \"v_RKzwMrL5Th4\": {\"duration\": 67.44, \"timestamps\": [[0, 10.79], [11.47, 51.93], [52.61, 67.44]], \"sentences\": [\"A group of players run up and down the court.\", \" They are chasing a ball back and forth.\", \" They kick the ball, trying to get it into a goal.\"]}, \"v_jBFn08ZRKSE\": {\"duration\": 24.71, \"timestamps\": [[0, 10.01], [10.13, 21], [21.12, 24.71]], \"sentences\": [\"A young man plays a set of red bongo drums.\", \" He continues to play them.\", \" A person walks in and joins him playing the drums behind him.\"]}, \"v_dID-dQpaLbc\": {\"duration\": 235.16, \"timestamps\": [[0, 37.63], [55.26, 134.04], [154.03, 235.16]], \"sentences\": [\"Three men and women are standing outside a large building.\", \" They are each holding red fans that they open.\", \" They make several dance moves in unison.\"]}, \"v_o3Nuqg4w_b8\": {\"duration\": 120.86, \"timestamps\": [[0, 120.86], [37.47, 53.78], [53.78, 103.34], [103.94, 116.63], [105.15, 120.86]], \"sentences\": [\"A group of people are exercising while in a step class with music playing in the back ground while a woman in the back of the class exercises alone.\", \"  A woman in purple breaks away from the routine and rests.\", \"  The woman in purple goes back into the routine.\", \" The woman in purple rests again.\", \"  A woman at one side of the class walks away from the step brick and goes to the back of the class and returns to her step brick.\"]}, \"v_wb8TkqxxEuo\": {\"duration\": 234.2, \"timestamps\": [[0, 16.39], [16.39, 32.79], [32.79, 88.99], [88.99, 158.08], [158.08, 234.2]], \"sentences\": [\"A shirtless man briefly lifts a ball up onto one shoulder.\", \" Another shirtless man lifts weights on a barbell repeatedly with others exercising in the background.\", \" A third man lifts and flips a heavy tire while two others watch in the background.\", \" A number of individuals are shown in a parking lot with cars exercising with weights, kegs, or tires, while others watch.\", \" A series of tug of war matches are shown with spectators in the background.\"]}, \"v_01vNlQLepsE\": {\"duration\": 11.7, \"timestamps\": [[0, 10.47], [0.41, 2.63], [5.85, 10.59], [11.41, 11.7]], \"sentences\": [\"A girl with brown hair in all black with a gold star on her shirt is twirling batons.\", \" The camera pulls back and we can see she is on a pogo stick.\", \" She spins around to the left then stops twirling the batons.\", \" Then the video gets green spots and she is seen jumping off the pogo stick.\"]}, \"v_SfQku6CicrU\": {\"duration\": 5.57, \"timestamps\": [[0, 0.86], [0.56, 1.39], [1.39, 3.26], [3.73, 5.57]], \"sentences\": [\"A man bends over into a pond.\", \" He reaches into the pond.\", \" He puts water onto his face.\", \" He cheers gleefully after he does this.\"]}, \"v_ZfXkzv-hNlg\": {\"duration\": 109.25, \"timestamps\": [[0, 27.31], [16.39, 18.57], [56.81, 61.18]], \"sentences\": [\"The people on the turquoise raft start rowing.\", \"  The people on the turquoise raft stop rowing.\", \"  The people on the turquoise raft begin rowing again.\"]}, \"v_-TWiYyvt2Ec\": {\"duration\": 123.21, \"timestamps\": [[0, 24.03], [28.34, 89.94], [96.72, 123.21]], \"sentences\": [\"A person is sailing in the ocean.\", \" They are trying to hold up their sails as move through the waves.\", \" They crash several times in the water.\"]}, \"v_mIC02-VKqUE\": {\"duration\": 61.86, \"timestamps\": [[0.93, 59.07], [0.93, 38.04], [38.04, 58.77]], \"sentences\": [\"Three men prepare for battle by making animated gestures with their hands and doing several martial arts kicks in place.\", \"  One man in a black and white hat introduces two young men to a fight at which point the men lock hands with many special effects and separate.\", \"  The man in the red shirt crosses his arms as his eyes light up with special effects and the men kick into the air.\"]}, \"v_K8XNOs0AwaE\": {\"duration\": 139.3, \"timestamps\": [[0, 22.29], [28.56, 89.15], [92.63, 139.3]], \"sentences\": [\"A man rides a bmx dirt bike next to a tree.\", \" He takes off his helmet to talk.\", \" The men are then shown engaged in a fight and several others try to tear them apart.\"]}, \"v_ZUM89wyBcYY\": {\"duration\": 199.51, \"timestamps\": [[0, 18.95], [48.88, 130.68], [134.67, 199.51]], \"sentences\": [\"A couple is dancing on a floor in a room.\", \" Several people are sitting on the floor watching the dance.\", \" They move back and forth on the dance floor.\"]}, \"v_oQuAwR_t5Ig\": {\"duration\": 216.95, \"timestamps\": [[0, 216.95], [58.58, 123.66], [130.17, 216.95]], \"sentences\": [\"A person named Cameron goes skateboarding.\", \"  He gives a demonstration of his board.\", \"  He then finishes by doing tricks.\"]}, \"v_nUoN18FTeug\": {\"duration\": 197.02, \"timestamps\": [[0, 193.08], [0, 197.02], [195.05, 197.02]], \"sentences\": [\"A little girl is playing an acoustic guitar.\", \" There is a brown guitar bag behind her.\", \" She stops playing and sets the guitar in her lap.\"]}, \"v_AT_pPlJTiyE\": {\"duration\": 205.79, \"timestamps\": [[0, 17.49], [90.55, 96.72], [122.44, 157.43]], \"sentences\": [\"A woman is standing in front of a car.\", \" She puts a brick under the tire of the car.\", \" She begins changing the tire on the car.\"]}, \"v_ZpyCrs-q-so\": {\"duration\": 45.28, \"timestamps\": [[0, 17.89], [17.89, 28.75], [28.75, 45.28]], \"sentences\": [\"A man wearing an orange tank top swings an ax and splits some firewood.\", \" A man wearing a blue tank top swings an ax and splits some firewood.\", \" The ax gets stuck in the firewood as the man walks away.\"]}, \"v_4SSbyJ6pMuE\": {\"duration\": 91.51, \"timestamps\": [[0, 62.23], [20.13, 62.23], [51.25, 89.22]], \"sentences\": [\"A person is seen standing on a stage playing a violin.\", \" The man moves his hands up and down on the instrument.\", \" He continues to play and ends by moving his hands.\"]}, \"v_ESlUzrtqC98\": {\"duration\": 107.72, \"timestamps\": [[0, 7], [7.54, 95.87], [95.87, 107.72]], \"sentences\": [\"A game of beer pong is being played outside at night, the camera is sideways.\", \"  The camera is righted as the game continues.\", \" The video ends with the one team getting two consecutive balls in cups.\"]}, \"v_AimG8xzchfI\": {\"duration\": 227.21, \"timestamps\": [[0, 40.9], [52.26, 155.64], [165.86, 227.21]], \"sentences\": [\"A view of an ice covered lake is shown.\", \" Several black and white photos are shown before we see a current group together.\", \" They perform a game of curling on the ice.\"]}, \"v_h1t5QZjERms\": {\"duration\": 175.1, \"timestamps\": [[0, 7.88], [7.88, 40.27], [40.27, 98.93], [98.93, 163.72], [163.72, 175.1]], \"sentences\": [\"A man and a woman are seen in a room hitting a ball with a badminton racket in their hand.\", \"As the camera zooms out,you can see that they are playing a against another team of two more people.\", \"During the game,several males come over to the side and begin doing an interview talking about the game.\", \"After,there foot work is shown and a storage room with badminton in them stacked on the table.\", \"More and more teams are shown and the men and women continue to talk and play the game and the outside of the building appears with advertising for the Badminton club.\"]}, \"v_iGxMm7C1q48\": {\"duration\": 88.07, \"timestamps\": [[0, 13.21], [0, 77.95], [0, 88.07]], \"sentences\": [\"man is in the bowling thowing the ball to the pins.\", \" next to the man other is playing on the bowling.\", \"people are playing bowling in the court.\"]}, \"v_3I4EzlMo124\": {\"duration\": 98.66, \"timestamps\": [[0, 34.53], [20.23, 62.16], [58.7, 97.18]], \"sentences\": [\"A gymnast walks up to a beam and holds her hands out.\", \" She begins performing a gymnastics routine on the beam.\", \" She spins and twirls herself around and ends by jumping down with her arms up.\"]}, \"v_8uV6u0QcTSs\": {\"duration\": 64.13, \"timestamps\": [[0, 64.13], [1.6, 29.18], [28.54, 51.95], [48.1, 64.13]], \"sentences\": [\"There's a little girl in an orange sleeveless shirt playing with a makeup kit on her porch.\", \" She takes a makeup brush that has some red eye shadow on it and smears it all over face.\", \" She then takes a lipstick, removes the cap and begins applying the lipstick on her lips.\", \" She puts several coats of lipstick on her lips making her lips look bright red and completely smeared with lipstick.\"]}, \"v_T_q3f10pkOg\": {\"duration\": 142.71, \"timestamps\": [[1.43, 134.86], [5.71, 55.66], [56.37, 134.86]], \"sentences\": [\"Two teams play water volleyball in an outdoor pool with a small audience surrounding them including a referee dressed in white on the sidelines and digital scoreboard.\", \"  The two team in the water competitively pursue a yellow volleyball from the water.\", \"  The two teams hit the ball and swim after the ball spanning the length of the pool as the referee at times interrupts with a whistle.\"]}, \"v_WPrlU-Im5Ko\": {\"duration\": 85.94, \"timestamps\": [[0, 24.92], [16.76, 51.56], [52.85, 81.21]], \"sentences\": [\"A woman holds up a bottle and contact lens to the camera.\", \" She then puts in the contacts and stares at the camera.\", \" She is shown wearing a hat and then takes out the contacts.\"]}, \"v_VUlsdTzaKV4\": {\"duration\": 148.98, \"timestamps\": [[0.74, 6.7], [7.45, 136.32], [17.88, 121.42], [52.89, 75.23], [137.06, 148.98]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy talks while standing on a snowy slope.\", \" A guy snow boards down the slope.\", \" A guy snow boards in place.\", \" The credits of the video are shown.\"]}, \"v_8BsIeOSzK_U\": {\"duration\": 54.22, \"timestamps\": [[8.95, 12.47], [11.93, 46.9], [47.98, 49.88], [13.01, 49.07], [53.41, 54.22]], \"sentences\": [\"A man jumps onto parallel bars.\", \" He does a gymnastics routine on the bars.\", \" He then jumps off and lands on a mat.\", \" A man in a black shirt watches his performance.\", \" He gives a man a high five when he lands on the mat.\"]}, \"v_Y4IsLkxb5CI\": {\"duration\": 181.05, \"timestamps\": [[0, 181.05], [35.3, 181.05], [98.67, 181.05]], \"sentences\": [\"A woman in bikini is swimming under the sea.\", \" A reflection of a person on the water is shown riding a surfboard.\", \" The woman swims in the water and she is close to the corals and fishes.\"]}, \"v_ucsAN6pGv6w\": {\"duration\": 7.99, \"timestamps\": [[0, 1.4], [0, 6.27], [5.11, 7.99]], \"sentences\": [\"A man runs on his tip toes setting up for the play.\", \" The athlete runs down the track holding a javelin.\", \" The athlete hurls his javelin down the field then watches.\"]}, \"v_6PnPu_cLCvE\": {\"duration\": 128.92, \"timestamps\": [[0, 13.54], [11.6, 45.77], [32.23, 80.57], [76.06, 128.92]], \"sentences\": [\"a boy stands in front of a garage.\", \" the boy then takes  a cigarette, lights and smokes it.\", \" the boy puts the cigarette out on the ground.\", \" then the boy is followed around by a person in a gorilla costume.\"]}, \"v_KoHzXi7Usl8\": {\"duration\": 159.06, \"timestamps\": [[0, 13.52], [13.52, 28.63], [29.43, 78.73], [81.12, 115.32], [115.32, 159.06]], \"sentences\": [\"Three people are snowboarding on snowy mountain.\", \" One man is riding the cable car and looking at the snowboarders, he talks and watch from the cable car.\", \" Another snowboarder getting ready to do his tricks, while the man in the cable car is already on the top of the mountain, talking and the snowboarders continue on their fun.\", \" Another set of snowboarders continue their fun and then talk in the cable car.\", \" They snowboards some more, ride the cable car and finally do the steep hill snowboarding while some people are shooting why they are flying in the sky while snowboarding.\"]}, \"v_Rokj1EIAHHk\": {\"duration\": 39.57, \"timestamps\": [[0, 20.18], [20.18, 24.14], [24.14, 39.57]], \"sentences\": [\"man is running in a blue race track doing big somersaults on a competition.\", \" girl is reading a book in stands.\", \" then a repetition is shown and a man wearing an orange shirt shake his hand.\"]}, \"v_tAbB24pczrs\": {\"duration\": 208.46, \"timestamps\": [[13.55, 19.8], [20.85, 182.4], [183.44, 186.57]], \"sentences\": [\"A woman takes off her jacket.\", \" She starts to work out on a yoga mat.\", \" She sits up and grabs a bottle.\"]}, \"v_pf49xhMRrgQ\": {\"duration\": 174.07999999999998, \"timestamps\": [[0, 37.43], [40.91, 116.63], [115.76, 168.86]], \"sentences\": [\"A large group of people are seen sitting on the ground with some playing drums.\", \" The camera moves around the capture the people playing drums from the front.\", \" People continue playing the instruments together while others watch on the side.\"]}, \"v_bVAUJAAg3TM\": {\"duration\": 174.62, \"timestamps\": [[0, 17.46], [33.18, 106.52], [117.87, 174.62]], \"sentences\": [\"A female athlete runs down a track.\", \" she takes a flying leap through the air.\", \" She then lands in a pit of sand.\"]}, \"v_p3PEMCN4h_g\": {\"duration\": 77.83, \"timestamps\": [[0, 20.63], [19.46, 52.54], [46.31, 74.33]], \"sentences\": [\"A group of people are seen wandering around as well as a man speaking to the camera.\", \" A close up of a person running is shown in a public place.\", \" More people are seen running down a track while several watch on the side.\"]}, \"v_ZGsYV0KDB-4\": {\"duration\": 31.19, \"timestamps\": [[0, 4.37], [4.99, 26.04], [26.35, 31.19]], \"sentences\": [\"A dog is seen lying down on the floor.\", \" The dog is dreaming in his sleep.\", \" He starts running very fast, then jumps up and runs face first into the wall.\"]}, \"v_EZKrOWEKX_Q\": {\"duration\": 136.21, \"timestamps\": [[12.94, 136.21], [44.27, 50.4], [118.5, 125.31]], \"sentences\": [\"People are surfing on large waves in the water.\", \" The person crashes and falls into the water.\", \" A wave crashes over a person surfing.\"]}, \"v_f07eWOCKLI8\": {\"duration\": 129.82, \"timestamps\": [[0, 129.82], [11.68, 14.28], [125.93, 127.23]], \"sentences\": [\"Women are decorating a Christmas tree.\", \" A woman is holding a coffee mug in her hand.\", \" They finish decorating the tree and put their hands up.\"]}, \"v_Wzg4d-3ym1E\": {\"duration\": 205.29, \"timestamps\": [[0, 6.16], [7.19, 17.45], [17.45, 66.72], [66.72, 105.72], [106.75, 158.07], [158.07, 179.63], [180.65, 198.1], [199.13, 205.29]], \"sentences\": [\"We see power tools on a green title screen.\", \" A lady sits on a table with tools on it in a workshop and talks.\", \" She grabs a tool ads the battery and a sanding disk while speaking.\", \" She puts it down then we see her use the tool while wearing a mask and and safety goggles and we see her kneel near the nighstand.\", \"  We see the lady spray paint the newly sanded nightstand white and wipe it off with water.\", \"  We see the nightstand with no paint on it and see a recap of her process.\", \" The lady kneels on the ground talking next to the nightstand.\", \" We see a green ending title screen.\"]}, \"v_n1iu-AlcS-Q\": {\"duration\": 35.09, \"timestamps\": [[0, 35.09], [1.05, 35.09], [0, 34.56]], \"sentences\": [\"woman is playing shuffleboard in a small cout.\", \" man is on a side playing shuffleboard and playing with the girl.\", \" people are in the back standing next to a railing.\"]}, \"v_OJiLPJkzel4\": {\"duration\": 96.78, \"timestamps\": [[0, 27.1], [20.81, 59.04], [60.97, 96.78]], \"sentences\": [\"a man stands and speaks to the camera.\", \" the man names appears on screen.\", \" the man continues to talk.\"]}, \"v_hzeK-DdGOsc\": {\"duration\": 124.76, \"timestamps\": [[0, 119.77], [68.62, 119.77], [100.43, 119.77], [120.39, 124.76]], \"sentences\": [\"Several suffering bulls are shown as the fight in the ring with matadors.\", \" A painting of a suffering bull is also shown during the video as the matadors fight the bulls.\", \" The bulls are shown dying after they have given up the fight.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_C_2EFIuyDSA\": {\"duration\": 81.97, \"timestamps\": [[0, 9.02], [8.2, 38.52], [37.7, 81.97]], \"sentences\": [\"a boy is sitting behind a set of drums.\", \" the boy begins playing the drums.\", \" an older boy sits across from him and plays an organ.\"]}, \"v_kt3hzGla8r4\": {\"duration\": 226.79, \"timestamps\": [[0, 69.17], [56.7, 171.23], [145.15, 222.25]], \"sentences\": [\"A man is seen playing guitar on a stage with others playing instruments behind him.\", \" The man grabs a guitar from the audience and begins playing both one after the other.\", \" He continues playing the instruments and ends by waving to the crowd and walking off stage.\"]}, \"v_AUHORHUgC-s\": {\"duration\": 144.06, \"timestamps\": [[0, 144.06], [7.92, 33.13], [33.85, 38.9], [51.14, 69.87], [77.79, 110.92], [111.64, 133.25], [133.97, 144.06]], \"sentences\": [\"A man in a garage is surrounded by tools is explaining how to sharpen a knife the Russian way.\", \"  He shows the different types of sharpening stones and then pushes them aside.\", \"  He is now sitting at a table with a hat on and with a cup of coffee.\", \"  He uses the bottom of the ceramic cup to sharpen the knife.\", \"  He is now outside of a car and is demonstrating how to use the frosted edge of a car window to sharpen the knife.\", \"  He is back in the garage and explains and demonstrates that using a knife to sharpen another knife.\", \"  He then asks for people to like the video and to subscribe and thanks everyone from watching.\"]}, \"v_8AQopjogplo\": {\"duration\": 212.14, \"timestamps\": [[0, 32.88], [32.88, 135.77], [105.01, 212.14]], \"sentences\": [\"two men sit on a stage.\", \" the men each start playing guitars.\", \" one guy strums his guitar the other man pats on his guitar.\"]}, \"v_RG98kemBdyg\": {\"duration\": 31.02, \"timestamps\": [[0, 12.1], [12.1, 27.76], [27.76, 31.02]], \"sentences\": [\"A man is standing on top of a white table playing the saxophone with one of his arms behind his back.\", \"After a few notes,he touches someone in the crowd,moves his hand and begins playing the correct way.\", \"Once he is finished,he sticks his tongue out in exasperation,looks at the crowd,takes a bow and begins to step off of the table.\"]}, \"v_a8dUtKcAunw\": {\"duration\": 117.03, \"timestamps\": [[0, 117.03], [0.59, 117.03], [53.25, 117.03]], \"sentences\": [\"A man is sitting down smoking a cigarette.\", \" He is holding a white guitar and playing it.\", \" He begins singing into a microphone.\"]}, \"v_suL3ZeuQ3DA\": {\"duration\": 24.13, \"timestamps\": [[2.17, 7.12], [7.48, 10.74], [19.66, 24.13]], \"sentences\": [\"A boy holds a ball and throws it.\", \" Someone throws the ball back at him and hits him in the head.\", \" Another person walks up in front of him.\"]}, \"v_DfFqlrv7F2g\": {\"duration\": 78.46000000000001, \"timestamps\": [[0, 4.71], [4.71, 14.52], [14.52, 38.05], [38.05, 78.46]], \"sentences\": [\"woman si sitting on a chair in a small room trying to put her shoes and gets a backpain.\", \" man is in a chair in a living room doing the same and have a back pain too and a publciity of a plastic instrument is shown.\", \"the man and the woman are puting the socks with the instrument.\", \" then people are talking to the camera about the instrument.\"]}, \"v_YuuWL4EK7Q4\": {\"duration\": 174.52, \"timestamps\": [[0, 69.81], [49.74, 129.15], [116.06, 172.78]], \"sentences\": [\"A man is seen walking away while the camera pans around an area.\", \" Another man speaks to the camera and interviews other people.\", \" He then shines the shoes of one man who pays him and shakes his hand.\"]}, \"v_yw1IZdbEzck\": {\"duration\": 175.52, \"timestamps\": [[0, 14.04], [20.18, 94.78], [106.19, 175.52]], \"sentences\": [\"A man is wearing gloves while working with a woman.\", \" She is being still as he clamps her nose.\", \" He then inserts a piercing, making her eyes water.\"]}, \"v_HNvolNt5RU0\": {\"duration\": 42.89, \"timestamps\": [[0, 2.57], [1.72, 5.15], [3.43, 14.15], [15.44, 42.89]], \"sentences\": [\"A man stands beside a pool.\", \" He throws a ball into the pool.\", \" Several people swim to grab it.\", \" They are shown swimming around underwater.\"]}, \"v_K_IqYFJKIgk\": {\"duration\": 233.2, \"timestamps\": [[0, 27.98], [27.98, 164.41], [164.41, 211.05], [211.05, 233.2]], \"sentences\": [\"a man and a woman are smoking outside a store laying on bricked wall.\", \" man is sitting in front of the camera talking and showing pople smoking and some pills on top of a table.\", \" a man and a woman are talking to the camera about cigar addiction and show a flowchart about the effects of smoking.\", \" people throw cigars on floor and step on the cigar and talk between them.\"]}, \"v_zwFxq1MnaO0\": {\"duration\": 166.23, \"timestamps\": [[0, 17.45], [39.06, 109.71], [117.19, 166.23]], \"sentences\": [\"A group is dancing inside a gym.\", \" They are moving in unison, keeping time to the beat.\", \" They march and dance in place as they go.\"]}, \"v_44FeihJUKvM\": {\"duration\": 59.1, \"timestamps\": [[0, 5.32], [6.5, 37.82], [39.59, 59.1]], \"sentences\": [\"A cat is standing on top of a table.\", \" He dips his paw into a mug in front of him.\", \" After each dip, he licks his paw clean.\"]}, \"v_RZogaNvPuNs\": {\"duration\": 211.84, \"timestamps\": [[0, 104.86], [104.86, 136.63], [136.63, 183.24], [183.24, 211.84]], \"sentences\": [\"A girl comes onto the screen and explains that she will be making some lemonade and shows the things that are needed.\", \" She scoops some powder into a pitcher of water.\", \" She stirs the lemonade together in a pitcher for a few seconds.\", \" She tastes the lemonade and pours some into a cup.\"]}, \"v_Hj3kEemIPic\": {\"duration\": 196.26, \"timestamps\": [[0, 196.26], [11.78, 24.53], [91.26, 94.2], [119.72, 121.68], [166.82, 172.71]], \"sentences\": [\"A man cleans snow from a parked car.\", \" The man pauses to put on gloves.\", \" The man pauses to clean snow from the camera.\", \" The man pauses to move the camera's angle.\", \" The man pauses to pick up and move the camera.\"]}, \"v_2AQg1DDVYHI\": {\"duration\": 192.77, \"timestamps\": [[0, 3.86], [16.39, 187.95], [68.43, 69.4], [88.68, 105.06], [150.36, 160.97], [164.82, 185.06]], \"sentences\": [\"The credits of the clip are shown.\", \" People are walking and jumping a heighten hurdle with leg extensions.\", \" A girl falls and messes up the heighten hurdle.\", \" Guys sit and take off extensions.\", \" A person dressed in a costume with leg extension walks around.\", \" The credits of the video are shown.\"]}, \"v_S5bjFaZUnOM\": {\"duration\": 119.72, \"timestamps\": [[0, 17.96], [18.56, 94.58], [96.38, 119.72]], \"sentences\": [\"a group of people are gathered in a gym.\", \" They are engaged in fencing together.\", \" They poke and jab at each other as they pretend to fight.\"]}, \"v_4W4mrswC2tA\": {\"duration\": 16.5, \"timestamps\": [[0, 1.24], [1.82, 10.07], [12.95, 16.5]], \"sentences\": [\"A woman is lifting weights in a gym room.\", \" She lifts the barbell up to her chest.\", \" She then lifts it over her head and laughs.\"]}, \"v_UqSjGwxBuqA\": {\"duration\": 204.24, \"timestamps\": [[2.04, 44.93], [42.89, 134.8], [121.52, 196.07]], \"sentences\": [\"A man is seen speaking to a group of kids who also speak to the camera.\", \" They adjust bikes and show kids riding around a track on bikes.\", \" Some kids fall while others continue to ride around and a man speaks to the camera.\"]}, \"v_mYfo8LhPB5Y\": {\"duration\": 81.34, \"timestamps\": [[0, 7.73], [7.32, 31.32], [31.32, 68.73], [69.14, 77.68]], \"sentences\": [\"A man lays on a road holding an accordion.\", \" The man plays the accordion.\", \" The man sits up while continuing to play the accordion.\", \" A series of still images of food and drink are shown.\"]}, \"v_5Y1AJsAE9UE\": {\"duration\": 200.32, \"timestamps\": [[0, 50.08], [41.07, 145.23], [128.2, 187.3]], \"sentences\": [\"A woman is seen speaking to the camera while pointing to an exercise bike.\", \" Sh adjusts the settings on the bike and climbs on top to begin riding.\", \" She continues riding on the bike and stopping to adjust settings.\"]}, \"v_cCqjsuJa2vk\": {\"duration\": 49.92, \"timestamps\": [[0, 11.73], [11.23, 27.71], [27.71, 49.92]], \"sentences\": [\"A female is standing in a gym with a black dress that has sparkles and a pink trim on the bottom beginning to perform.\", \"She throws the baton in the air and starts moving around the floor with it.\", \"During her performance,she does a series of kicks and flips while tossing the baton in the air and catching it.\"]}, \"v_oFc4uYTxEqs\": {\"duration\": 214.62, \"timestamps\": [[0, 16.1], [23.61, 88], [95.51, 214.62]], \"sentences\": [\"A man and a woman are talking on a stage.\", \" They invite another couple onto the dance floor.\", \" The couple dances elegantly together before the crowd.\"]}, \"v_FsS_NCZEfaI\": {\"duration\": 212.74, \"timestamps\": [[1.06, 22.34], [22.34, 199.98], [84.03, 91.48], [192.53, 199.98]], \"sentences\": [\"People are sitting on a boat in the water.\", \" People are scuba diving under the water.\", \" Fish are seen under the water swimming.\", \" An old car is seen under the water.\"]}, \"v_J76bFZWXHFY\": {\"duration\": 195.4, \"timestamps\": [[0, 24.42], [32.24, 87.93], [106.49, 195.4]], \"sentences\": [\"A man is seen wearing rock climbing equipment.\", \" He is rappelling up the side of a steep cliff.\", \" Then we see several pictures that were taken on his trip before going back to him climbing the cliff.\"]}, \"v_dFsFL_WJasg\": {\"duration\": 23.27, \"timestamps\": [[0, 23.27], [3.61, 4.54], [9.89, 10.82], [12.45, 23.27]], \"sentences\": [\"People are riding two camels in a desert.\", \" A short person that is leading the camels turns around.\", \" The back that is tied to the front camel leaves the rear.\", \" The back camel walks alongside the hump of the front camel.\"]}, \"v_je5KvCND9xo\": {\"duration\": 189.52, \"timestamps\": [[0, 37.9], [36.01, 83.39], [83.39, 189.52]], \"sentences\": [\"a man is laying on the floor talking to the camera.\", \" the man points to several parts of his body.\", \" the man then begins to demonstrate sits ups and other exercises.\"]}, \"v_J8pZtBhpqMI\": {\"duration\": 81.55, \"timestamps\": [[0, 21.61], [20.39, 49.74], [48.93, 65.24]], \"sentences\": [\"A kid is crossing the monkey bars on a playground.\", \" He gets to the other side and goes back across.\", \" He stands on the top of the playground.\"]}, \"v_g-rw2Kyh9xo\": {\"duration\": 238.95, \"timestamps\": [[0, 15.53], [25.09, 113.5], [124.25, 238.95]], \"sentences\": [\"A man walks up to the side of a pool.\", \" He dives into the water and floats to the surface.\", \" He mainstains the position before being seen surfing in the ocean water.\"]}, \"v_N6ERAg1EKcc\": {\"duration\": 24.31, \"timestamps\": [[0, 5.11], [5.11, 13.61], [13.61, 24.31]], \"sentences\": [\"A group of kids are standing inside of a garage as a man begins putting a blindfold on a young child.\", \"The little boy then takes a green plastic bat,takes one hit at the pinata,and then walks away.\", \"After he leaves,the man grabs the blindfold and begins unraveling it for the next kid to take a turn.\"]}, \"v_8cbHNUbu3Tk\": {\"duration\": 76.65, \"timestamps\": [[0, 0.38], [0.38, 76.65], [0.38, 74.35], [58.25, 59.02]], \"sentences\": [\"A woman is standing in a gym.\", \" She begins dancing on the floor.\", \" She spins batons around as she dances.\", \" She does a cart wheel on the ground.\"]}, \"v_KEMMmoIdT3g\": {\"duration\": 160.75, \"timestamps\": [[0, 36.97], [36.17, 145.48], [144.68, 147.89], [149.5, 160.75]], \"sentences\": [\"Three men talk to each other, with two sated facing each other and a third standing over the two, with other individuals watching on in the background.\", \" The two seated men arm wrestle against each other as the standing one adjudicates.\", \" The seated individual on the left wins the contest.\", \" The seated individual on the left stands and moves the table out of the way and then hugs the other individual.\"]}, \"v_vKNsvOvC5mA\": {\"duration\": 97.5, \"timestamps\": [[0, 20.48], [21.45, 66.79], [69.23, 97.5]], \"sentences\": [\"White water rapids are going down a river.\", \" They paddle their canoes as they go down the river.\", \" They are trying to reach a finish line in the race.\"]}, \"v_bUfhRJjHNoU\": {\"duration\": 192.15, \"timestamps\": [[0, 48.04], [72.05, 108.56], [145.07, 192.15]], \"sentences\": [\"The outside view of a house is seen surrounded by crime tape.\", \" A man balances on the tape, standing on it.\", \" He then walks on the tape, keeping his balance.\"]}, \"v_Ey7w7pu5HZc\": {\"duration\": 86.43, \"timestamps\": [[0, 86.43], [3.89, 86.43], [8.64, 86.43], [57.04, 86.43]], \"sentences\": [\"A man is wearing a a business casual outfit.\", \" He is dancing in front of a large blue sign.\", \" He jumps off of the stage.\", \" He starts dancing on the concrete.\"]}, \"v_rNb4Jz_t9F4\": {\"duration\": 149.79, \"timestamps\": [[0, 148.29], [0, 147.55], [0, 136.31], [139.31, 149.79]], \"sentences\": [\"A girl is on a lake holding on to a pole.\", \" She is standing on a surfboard.\", \" She is being pulled behind a boat.\", \" Eventually she lets go off the pole.\"]}, \"v_gXAMD_KxXII\": {\"duration\": 163.03, \"timestamps\": [[0, 14.67], [16.3, 85.59], [90.48, 163.03]], \"sentences\": [\"A man is standing in front of a fireplace and talking.\", \" He shows how to use a small brush on a shoe.\", \" He continues to polish and repair the dress shoe.\"]}, \"v_hDb19ih3jAA\": {\"duration\": 36.41, \"timestamps\": [[0, 12.01], [10.92, 25.85], [26.58, 35.86]], \"sentences\": [\"A person is seen riding on roller blades looking into a trash can.\", \" People look around and watch the man skate.\", \" He skates down a set of stairs and off into the distance.\"]}, \"v_r97vYbzloD8\": {\"duration\": 33.83, \"timestamps\": [[0, 4.23], [6.09, 23.68], [24.02, 33.83]], \"sentences\": [\"A woman is standing on a roof top with a man.\", \" He is playing a flute while she moves around.\", \" The woman is flying a kite to the music.\"]}, \"v_9KPRS9y8Fvo\": {\"duration\": 86.52, \"timestamps\": [[0, 9.52], [9.52, 26.82], [26.82, 54.07], [54.07, 69.65], [69.65, 86.52]], \"sentences\": [\"A man and a baby are at a park and each are swinging on their own swings with words at the bottom right of the screen that read \\\"Edwin's First Big Swing Five-and-a-half months May 18, 2012\\\".\", \" Now there's  close up of the baby swinging and he is very happy and has a smile on his face that looks like he's laughing as he goes back and forth.\", \"His mom and dad both take turns in front of him making him laugh and pushing him on the swing from the front.\", \"The baby is shown swinging from a view above him, then the mom swinging him from the back, and then the view of him swinging from under him.\", \"The mom is now sitting on the swing next to him and they swinging until the screen fades to black.\"]}, \"v_I4kjOE8HnU0\": {\"duration\": 170.77, \"timestamps\": [[0, 4.27], [4.27, 170.77], [29.03, 50.38], [59.77, 75.99], [71.73, 170.77], [125.52, 170.77]], \"sentences\": [\"An introduction comes onto the screen for a video about a track and field.\", \" An athlete are shown performing long jumps on a track.\", \" There is also a relay race shown on the video, as well.\", \" The boys are shown standing together talking and having fun.\", \" The long jumper is shown in Paris where they also perform several long jumps.\", \" He is shown training and practicing as well as getting caught in the rain.\"]}, \"v_B7t85SESTXI\": {\"duration\": 128.59, \"timestamps\": [[0, 0.64], [1.29, 80.37], [32.79, 34.72], [38.58, 43.08], [43.72, 88.73], [84.23, 128.59]], \"sentences\": [\"A lady brings a bowl of popcorn.\", \" People sit on a couch in front of  TV.\", \" The people faces are covered with a black cloth.\", \" Individuals raise black paintball guns.\", \" The people sitting on the white couch are shot with paint balls.\", \" The credits and associated clips are shown.\"]}, \"v_cW2R4AuUnK8\": {\"duration\": 193.14, \"timestamps\": [[0, 33.8], [35.73, 141.96], [106.23, 184.45]], \"sentences\": [\"A large group of people are riding in a tube down a river.\", \" The people paddle along as another person is seen riding behind in a kayak.\", \" There are several clips of people riding in the tube and paddling themselves along.\"]}, \"v_3MJQEQ98168\": {\"duration\": 24.1, \"timestamps\": [[0, 2.77], [2.89, 17.11], [18.08, 24.1]], \"sentences\": [\"A little boy is using the monkey bars on a playground.\", \" He climbs across the bars to the other side.\", \" He gets down from the bars and jumps up and down.\"]}, \"v_R9qRR8CcSJA\": {\"duration\": 70.06, \"timestamps\": [[0, 4.9], [5.95, 70.06], [53.59, 70.06]], \"sentences\": [\"A man is standing in front of a building.\", \" A woman behind him starts cleaning the window on the building.\", \" The man continues talking in front of her.\"]}, \"v_P3_YQbHXEIs\": {\"duration\": 69.96000000000001, \"timestamps\": [[0, 11.19], [12.59, 51.07], [54.57, 69.96]], \"sentences\": [\"A tattoo artist is wearing gloves and holding a needle.\", \" He is ornately applying an image to a man's shoulder.\", \" He continues inking and wiping as he goes.\"]}, \"v_g0upuaWM74M\": {\"duration\": 86.17, \"timestamps\": [[0, 22.84], [16.8, 54.72], [53.43, 86.17]], \"sentences\": [\"several cars are shown at a car wash.\", \" one man is vacuuming cars.\", \" another man is wiping the cars down with rags.\"]}, \"v_sxQ9H3c5bRM\": {\"duration\": 129.71, \"timestamps\": [[0, 13.62], [14.27, 17.51], [28.54, 119.33], [119.98, 129.71]], \"sentences\": [\"The intro has drawings of bodybuilders and the words Gimnasio Coloso.\", \" The drawing logo goes purple and zooms in and out.\", \" Women are shown doing aerobic dancing workout.\", \" Then a woman is shown next to a punching bag smiling and the drawing is shown again.\"]}, \"v_50nJ8UkOGwg\": {\"duration\": 160.44, \"timestamps\": [[0, 59.36], [40.11, 116.32], [97.87, 154.02]], \"sentences\": [\"A person is seen riding in a small boat along the water.\", \" The person rides through rough waves and looks off in the distance.\", \" The man continues riding along in the boat.\"]}, \"v_vuntaZJBcfI\": {\"duration\": 124.65, \"timestamps\": [[0, 22.44], [21.19, 66.06], [66.69, 124.65]], \"sentences\": [\"thousands of people stand behind a starting line.\", \" the massive amount of people start running through the streets.\", \" a marathon then takes places.\"]}, \"v_X8o3FbH0gyo\": {\"duration\": 170.23, \"timestamps\": [[0, 26.39], [33.19, 102.14], [106.39, 170.23]], \"sentences\": [\"a man is riding a water ski behind a boat.\", \" He jumps through the air over waves several times.\", \" Each time he lands, he falls into the water.\"]}, \"v_PVed6JEd3ZM\": {\"duration\": 38.62, \"timestamps\": [[0, 38.62], [0.97, 23.17], [24.71, 36.3], [36.49, 38.62]], \"sentences\": [\"A man in a red tank top is crossing the monkey bars.\", \" He crosses the monkey bars one bar at a time while swinging.\", \" He gets to the end and does some pull ups on the last bar.\", \" Then he jumps down into the grass.\"]}, \"v_YTdLk7Nsn_k\": {\"duration\": 120.16, \"timestamps\": [[0, 36.05], [36.05, 63.09], [64.29, 120.16]], \"sentences\": [\"A bicycle repair man describes how to remove the bike crank from the bicycle.\", \" The repair man removes the pedal and the lock nut from the crank.\", \" The repair man then attaches the crank puller tool and spins the tool to remove the bike crank.\"]}, \"v_3-KLYPzd1zU\": {\"duration\": 117.7, \"timestamps\": [[0, 106.52], [4.12, 32.96], [22.95, 52.38], [50.02, 107.11], [104.75, 117.7]], \"sentences\": [\"There are some people water tubing down a river.\", \" One of the tubers comes on a blue tube wearing a yellow helmet and blue vest is followed by several tubers also on blue tubes.\", \" They go down the river on the their tubes as they try hard to stay afloat on the turbulent waves.\", \" Several tubers are seen going down the river in groups of four as they pass by trees and rocks.\", \" The tubers then get off of their tubes and walk on the banks of the river towards a building while carrying the tubes in their hands.\"]}, \"v_cY3QbnSeu9k\": {\"duration\": 197.07, \"timestamps\": [[0, 18.72], [31.53, 151.74], [155.68, 197.07]], \"sentences\": [\"A man is skiing on a snow covered mountain.\", \" He skis down the hill and talks to the camera.\", \" He takes the turns and goes very quickly.\"]}, \"v_wyOf_L4cNHc\": {\"duration\": 235.42000000000002, \"timestamps\": [[0, 227.18], [27.07, 84.75], [27.07, 202.46], [171.85, 230.71]], \"sentences\": [\"The symphony orchestra is playing Bach.\", \" We see Glenn Gould on piano.\", \" Close ups of Glenn playing with the orchestra.\", \" The song ends and Bach is done being played.\"]}, \"v_MSPslSgkp60\": {\"duration\": 158.22, \"timestamps\": [[0, 158.22], [7.91, 142.4], [18.99, 82.27], [62.5, 128.95], [115.5, 158.22]], \"sentences\": [\"There's a fitness expert dressed in a black shirt and a red hat demonstrating and talking about fitness training tips in a gym.\", \" He is standing with several exercise balls behind him as he demonstrates how to use the jump rope.\", \" He begins doing the jump rope  by jumping several times as he shows the correct technique of doing it.\", \" Then he goes on to show some more jump ropes techniques while doing the jump rope himself.\", \" After he stops, he continues talking and explaining the workout method.\"]}, \"v_62Dwj4l7_qs\": {\"duration\": 178.72, \"timestamps\": [[0, 25.02], [18.77, 83.11], [34.85, 145.66], [34.85, 133.15]], \"sentences\": [\"The woman in blue shirt lifted the barbel and put it down.\", \" The woman lifted the barbel as the coach is watching.\", \" The man in white shirt lifted the barbel, paused on his chest and let go.\", \" The man in green shirt lifted the barbel and put it down and then try again.\"]}, \"v_j18sB8o2IQw\": {\"duration\": 15.09, \"timestamps\": [[0, 3.02], [2.19, 11.17], [10.34, 15.09]], \"sentences\": [\"different men are standing on different diving boards.\", \" each of the men are shown taking turns diving from their diving boards.\", \" the dives are played in a loop.\"]}, \"v_FOm0uKw7dXc\": {\"duration\": 203.76, \"timestamps\": [[0, 21.39], [25.47, 128.37], [120.22, 197.64]], \"sentences\": [\"Two people are seen standing on a stage and the man walks towards the woman.\", \" The two begin performing a tango routine with one another.\", \" They continue dancing around with one another and end by holding a pose.\"]}, \"v_Ii3jLIcf92s\": {\"duration\": 31.12, \"timestamps\": [[0, 31.12], [1.09, 31.12], [0.47, 31.12]], \"sentences\": [\"A man is sitting behind a game.\", \" He is playing a drum in front of him with drum sticks.\", \" A screen is shown in front of them.\"]}, \"v_xAoQ6JisbhI\": {\"duration\": 60.16, \"timestamps\": [[6.62, 60.16], [7.22, 60.16], [6.92, 60.16]], \"sentences\": [\"A man is sitting behind a desk.\", \" He completes a Rubik's cube in front of him.\", \"  A man in a red shirt is standing next to him helping him.\"]}, \"v_sEGceBU8icE\": {\"duration\": 110.44, \"timestamps\": [[0, 13.25], [18.22, 62.4], [69.02, 110.44]], \"sentences\": [\"A man is standing on a black stage.\", \" He is using paints on a large black canvas.\", \" He works quickly, producing a piece of art work.\"]}, \"v_xKLnBh0zmL4\": {\"duration\": 100.45, \"timestamps\": [[2.01, 4.52], [4.02, 86.89], [86.39, 90.91], [97.94, 100.45]], \"sentences\": [\"A man jumps on parallel bars.\", \" He does a gymnastics routine on the parallel bars.\", \" He dismounts and lands on the mat next to the bars with his hands raised.\", \" He gives a people on the sidelines high fives.\"]}, \"v_Qu-Y2u1Xn_U\": {\"duration\": 216.71, \"timestamps\": [[14.09, 26.01], [26.01, 112.69], [110.52, 113.77], [145.2, 146.28], [177.7, 198.29]], \"sentences\": [\"People are holding tubes on dirt.\", \" They get into the river on the tubes.\", \" Under the water is shown.\", \" A dog is sitting in one of the tubes.\", \" People are swimming under the water.\"]}, \"v_swkSdgwCxHs\": {\"duration\": 96.2, \"timestamps\": [[0, 5.77], [6.25, 44.25], [25.01, 52.91]], \"sentences\": [\"The female athlete is standing and then positioned.\", \" The athlete ran and jumped over the pole The female athlete get off the mat and walked away.\", \" The female athlete jumped over the pole and wave at everyone.\"]}, \"v_PjNF7HoQ6yY\": {\"duration\": 97.59, \"timestamps\": [[1.95, 21.96], [23.91, 65.88], [55.14, 93.2]], \"sentences\": [\"A man is see throwing a bowling ball down a lane several times while others around him do the same.\", \" He high fives another man and continues bowling.\", \" He throws one last ball down and walks back to the lane.\"]}, \"v_WzDnorAzWVU\": {\"duration\": 154.2, \"timestamps\": [[0, 147.26], [0, 6.17], [6.17, 28.53], [28.53, 90.21], [90.98, 148.81]], \"sentences\": [\"A man talks to the camera and demonstrates how to clean paint brushes before applying paint with one to a painting he is standing in front of.\", \"  A man talks to the camera in an art room with paint behind him and a large canvas painting.\", \"  The man begins to clean a paint brush using water first and then cleaning the head with a paper towel.\", \"  The man then uses a bottle of white paint remover to white the tip of the brush and clean it.\", \"  The man then applies paint to the canvas he is standing in front of.\"]}, \"v_1y2aqd5HQlU\": {\"duration\": 60.19, \"timestamps\": [[0, 9.33], [8.43, 32.2], [42.13, 60.19]], \"sentences\": [\"two people stand and talk the the camera.\", \" they then point to pumpkins.\", \" after they begin carving the pumpkins.\"]}, \"v_Ja8QImLWYII\": {\"duration\": 91.07, \"timestamps\": [[0, 21.4], [20.49, 51.91], [52.36, 91.07]], \"sentences\": [\"a car is being washed by a woman.\", \" a car is being driven down a snowy street.\", \" two woman are riding in a convertible singing and dancing.\"]}, \"v_uKzelWWaYB4\": {\"duration\": 83.64, \"timestamps\": [[0, 18.82], [18.4, 57.29], [51.86, 81.97]], \"sentences\": [\"A young girl is seen climbing up on a playground and sliding down a slide.\", \" Another child is seen moving around on a set of monkey bars.\", \" The camera pans back to the girl riding down the side again.\"]}, \"v_32H1n87WgCM\": {\"duration\": 168.29, \"timestamps\": [[12.62, 26.93], [41.23, 45.44], [55.54, 79.94]], \"sentences\": [\"A woman in a blue shirt is sitting behind a desk talking.\", \" A boy in a karate outfit holds a trophy.\", \" People are practicing karate in a room.\"]}, \"v_vGKdr_au240\": {\"duration\": 39.1, \"timestamps\": [[9.19, 11.14], [17.4, 20.33], [20.72, 27.57], [31.28, 34.02]], \"sentences\": [\"A girl is putting lip stick on.\", \" She throws a curling ball down the ice.\", \" Two people are in front of the ball brushing the ice.\", \" Two men in bathing suits are tossing a beach ball around.\"]}, \"v_YlK_P4Ys6hE\": {\"duration\": 116.1, \"timestamps\": [[0, 23.8], [30.77, 75.47], [85.91, 116.1]], \"sentences\": [\"A skier is seated in the snow on top of a hill.\", \" He dons his skiing equipment and helmet.\", \" He then zooms down the hill on his snowboard, weaving and doing stunts.\"]}, \"v_1cWWCiNIYnc\": {\"duration\": 20.09, \"timestamps\": [[0, 20.09], [3.62, 20.09], [17.27, 20.09]], \"sentences\": [\"The man with beard is shaving under his chin.\", \" The man looked down then continue to shave.\", \" The man show the razor to the camera.\"]}, \"v_Fyi7pbkKk7w\": {\"duration\": 145.57, \"timestamps\": [[0, 31.3], [33.48, 100.44], [103.35, 145.57]], \"sentences\": [\"A man is outside in a yard.\", \" He stuffs a tire with logs of wood.\", \" He uses an ax to chop the wood one log at a time.\"]}, \"v_1VSqWp5DZiU\": {\"duration\": 209.49, \"timestamps\": [[0, 209.49], [0, 77.51], [207.4, 209.49]], \"sentences\": [\"A man and a woman are dancing on a deck.\", \" People are sitting behind them watching.\", \" The man gives a thumbs up.\"]}, \"v_c_DQ7Y8ZRBQ\": {\"duration\": 122.0, \"timestamps\": [[0, 7.93], [7.93, 21.96], [21.96, 78.08], [78.08, 122]], \"sentences\": [\"woman is sitting on passenger seat.\", \" woman walks in th sidewalk and get in a saloon.\", \" woman sits on a chair in front of a mirror and a woman behind him is cutting her hair.\", \" woman is washing the hai and making a hairstyle.\"]}, \"v_qNxLTF4Q6yk\": {\"duration\": 229.55, \"timestamps\": [[0, 18.36], [26.4, 134.29], [154.95, 229.55]], \"sentences\": [\"A man is seated on a platform outside.\", \" He is playing a guitar beside a case.\", \" A small crowd is listening as he plays.\"]}, \"v_ICMcCoyuBAw\": {\"duration\": 197.42000000000002, \"timestamps\": [[0, 22.7], [22.7, 55.28], [55.28, 197.42]], \"sentences\": [\"woman is standing in a room talking to the camera unscrewling an outlet.\", \" the woman is taking out a wallpaper with a spatula.\", \" the woman is cleaning the wall with a brush while keeps taking out the old wallpaper.\"]}, \"v_Vvi0HQ6Pu7c\": {\"duration\": 8.1, \"timestamps\": [[0, 2.51], [2.15, 5.55], [5.83, 7.78]], \"sentences\": [\"A claymation video shows wrestlers standing in a ring.\", \" One stands over the other and flips him into the ring.\", \" The other man stands up in the end.\"]}, \"v_PZ1FVhgTRWU\": {\"duration\": 91.42, \"timestamps\": [[0, 5.49], [5.94, 86.85], [86.39, 91.42]], \"sentences\": [\"A woman jumps onto a balance beam.\", \" She does a gymnastic routine on the balance beam.\", \" She dismounts and lands on a mat.\"]}, \"v_iFJaqDgYsp0\": {\"duration\": 88.89, \"timestamps\": [[0, 28], [23.11, 66.22], [49.78, 87.55]], \"sentences\": [\"A man is seen kneeling down before a set of weights while another watches on the side.\", \" He lifts up the weights and throws them back down.\", \" He is again shown lifting the weights over his head.\"]}, \"v_jQR4Hhaf8o8\": {\"duration\": 231.9, \"timestamps\": [[0, 231.9], [0, 230.74], [153.05, 156.53]], \"sentences\": [\"People are sitting in the stands.\", \" People start dancing on the stage in front of the stands.\", \" They all fall down onto the stage.\"]}, \"v_SaG9e90z1j8\": {\"duration\": 99.99000000000001, \"timestamps\": [[0, 6.5], [7, 10], [10.5, 88.49], [13, 71.99], [89.49, 92.99], [93.49, 99.99]], \"sentences\": [\"A white screen appears with a moving graphic of a butterfly that turns into multi colored text with a website address underneath.\", \"  The screen then shows text with blue, yellow, tree and grey test showing the TV channel name and the title of the video.\", \"  A woman in a kitchen behind a counter is explaining how to make a furniture polish using organic materials.\", \"  White text appears on the screen.\", \"  The video now shows the woman using the polish she just made.\", \"  A white screen appears with text giving a website address followed by the contributors of the video.\"]}, \"v_jkay2K3RA1M\": {\"duration\": 10.68, \"timestamps\": [[0, 2.46], [2.78, 10.68], [2.94, 10.68]], \"sentences\": [\"A stuffed animal is sitting in a chair.\", \" A person has their hand laying on a book.\", \" Another person is painting their fingernails.\"]}, \"v_n4apOkL24BE\": {\"duration\": 108.07, \"timestamps\": [[1.62, 29.18], [23.23, 73.48], [74.03, 103.74]], \"sentences\": [\"A man is seen kneeling down next to running water.\", \" He throws clothes into a bucket and speaks to the camera.\", \" He pulls out clothes from a bucket and dumps out the water as well as in the other bucket.\"]}, \"v_BRuansCVV3U\": {\"duration\": 123.35, \"timestamps\": [[6.78, 116.56], [117.79, 120.26], [121.49, 122.11], [122.11, 122.73]], \"sentences\": [\"An old guy does karate moves on a gym floor.\", \" The old guy stops doing his karate moves.\", \" The old guy takes a bow.\", \" The old guy begins to leave.\"]}, \"v_i2dFL7sGf9c\": {\"duration\": 8.45, \"timestamps\": [[0, 2.45], [2.49, 5.96], [6.13, 8.45]], \"sentences\": [\"A man holds another man with the second man bend over and head between the first man's legs.\", \" The first man flips lifts the second man up.\", \" The first man drops the second man in a power bomb.\"]}, \"v_W50sQxSWDwM\": {\"duration\": 116.28999999999999, \"timestamps\": [[0, 29.65], [30.82, 83.14], [70.93, 116.29]], \"sentences\": [\"A person is seen sitting on top of a horse and crying.\", \" Another woman is shown laughing and the man helps the girl on a horse.\", \" Another girl rides a horse behind the other while laughing.\"]}, \"v_C8IHSB9mfeE\": {\"duration\": 34.2, \"timestamps\": [[0, 4.28], [6.16, 24.46], [24.97, 34.2]], \"sentences\": [\"A man is standing inside a garage in a house.\", \" He is throwing darts at a target.\", \" He removes them and throws them again.\"]}, \"v_aa5jHg4E3O0\": {\"duration\": 202.66, \"timestamps\": [[0, 54.72], [46.61, 146.93], [133.76, 194.56]], \"sentences\": [\"A woman is seen speaking to the camera while sitting in front of a bed.\", \" She holds up a coffee cup on a plate as well as another cup.\", \" She continues speaking while holding up coffee cups.\"]}, \"v_ybAEMliC7p4\": {\"duration\": 18.41, \"timestamps\": [[0, 18.41], [7.46, 12.98], [12.98, 18.41]], \"sentences\": [\"This man is show solving the rubics cube while there's a timer to time how long it takes.\", \" First someone says something and then he starts twisting sides of the cube to match the colors together.\", \" When he's done, he turns the cube in different ways to show viewers how all of the colors are grouped together.\"]}, \"v_41__Qick6tM\": {\"duration\": 195.7, \"timestamps\": [[0, 4.89], [4.89, 8.81], [8.81, 148.73], [148.73, 163.41], [163.41, 189.83], [189.83, 195.7]], \"sentences\": [\"Black screens appear and on each white words appear that say \\\"MARC ANTHONY\\\" and \\\"FISHTAIL/FISHBONE BRAID\\\".\", \"A blonde lady is sitting on a chair that is spinning and her hair is braided to her left side.\", \"The woman is still sitting on the chair, hair now unbraided, talking, and she briefly holds a product in her hand, puts it down then grabs her hair and starts to demonstrate how to braid while white words appear on the bottom that are describing the steps that she's taking as she slowly braids her hair.\", \"When she gets to the end of the braid she holds her hair with one hand, grabs a rubber band, ties the rubber band at the end of the hair while white words at the bottom continue to appear describing each step.\", \" The lady picks at the braid once it's secured in the rubber band and loosens and styles it with her fingers.\", \"The outro appears with a white screen with black words that say MARC ANTHONY, a website and white words on a gray banner at the bottom that say FISHTAIL/FISHBONE BRAID while a small video screen on the right shows the lady spinning on the chair again to showcase her braid from different angles.\"]}, \"v_7x_1tRem1gA\": {\"duration\": 58.72, \"timestamps\": [[0, 8.81], [10.57, 38.76], [39.93, 58.72]], \"sentences\": [\"Several people are underneath a wooden structure.\", \" They climb across it like they would monkey bars.\", \" Some of them lose their grips, falling into the water.\"]}, \"v_hmPeCPjaxAM\": {\"duration\": 150.26, \"timestamps\": [[0, 15.78], [26.29, 92.41], [93.91, 150.26]], \"sentences\": [\"A couple of women are standing on the deck of a cruise ship.\", \" They are engaged in a game of curling.\", \" They hit the pucks with long sticks.\"]}, \"v_Rvx2EoMScKg\": {\"duration\": 130.66, \"timestamps\": [[4.57, 9.8], [10.45, 120.21], [35.93, 98.65], [119.55, 124.13]], \"sentences\": [\"A boy sits down at a keyboard in a room.\", \" The person plays a song on the keyboard.\", \" The friends watch as the boy plays a song.\", \" The boy gets frustrated and leans forward after he stops playing.\"]}, \"v_LB9-RIKxk6E\": {\"duration\": 158.9, \"timestamps\": [[0, 154.13], [28.6, 35.75], [36.55, 154.13], [154.92, 158.9]], \"sentences\": [\"A woman on a news program reports a story while a graphic background screen plays behind her.\", \"  A screen with graphics of a flag, the statue of liberty, white letters and in the center a picture of an older woman in a running outfit.\", \"  The reporter is now joined by the anchor at a large clear desk as they talk further of the story.\", \"  A red screen appears for the show and a website address for social media platforms in white letters.\"]}, \"v_iY7bZQnHXlk\": {\"duration\": 205.27, \"timestamps\": [[0, 205.27], [1.03, 205.27], [62.61, 93.4]], \"sentences\": [\"A little girl is standing on a chair in front of a sink.\", \" She is doing the dishes in the sink.\", \" She puts soap into the water in the sink.\"]}, \"v_Jx4GCjGARqs\": {\"duration\": 59.12, \"timestamps\": [[0, 10.64], [10.94, 26.31], [26.6, 31.63], [31.92, 59.12]], \"sentences\": [\"An athlete stands in a circle holding a heavy ball to perform hammer throw.\", \" The athlete spins the heavy ball an throw it in the field.\", \" Two men wearing white t-shirt measures where the ball landed, and the score is shown.\", \" The hammer throw performance of the athlete is replayed.\"]}, \"v_90SltIDizo8\": {\"duration\": 82.35, \"timestamps\": [[0, 26.35], [22.65, 59.7], [42, 79.88]], \"sentences\": [\"Two men are seen speaking to the camera with one kneeling down.\", \" The other bends down beside him as the first moves a ball around.\", \" The man continues to move the ball while the other walks around him.\"]}, \"v_kQ7ensWEW08\": {\"duration\": 122.02, \"timestamps\": [[0, 122.02], [3.66, 122.02], [0, 121.41]], \"sentences\": [\"man is knitting a sweater sitting in a couch.\", \" man is in a room sitting in a couch and holding blue and yellow threads.\", \" men is in a living room kniting something sitting in a couch.\"]}, \"v_xevpFDYTJ0U\": {\"duration\": 29.21, \"timestamps\": [[0.15, 8.91], [10.81, 20.16], [20.45, 25.41], [26.14, 29.21]], \"sentences\": [\"A child climbs up onto the parallel bars during a competition.\", \" The girl swings and does a routine on the parallel bars.\", \" The girl dismounts and faces the judges.\", \" The athlete rejoins her team and is congratulated.\"]}, \"v_smh90DBXsBg\": {\"duration\": 129.2, \"timestamps\": [[0, 129.2], [0, 25.19], [25.19, 129.2]], \"sentences\": [\"A woman in a purple sun dress, wearing pink sunglasses in her hair receives a tattoo in a tattoo parlor by a tattoo artist with tattoos and a baseball hat.\", \"  A woman is shown sitting in a chair and receiving a tattoo by a tattooed tattoo artist wearing white gloves and a backwards baseball cap.\", \"  The woman winces in pain at times but continues to receive the tattoo with ink spots developing on her shoulder near the section behind her right shoulder where the tattoo is being placed.\"]}, \"v_ss6XN-JP_x8\": {\"duration\": 214.37, \"timestamps\": [[0, 28.94], [41.8, 170.42], [185.43, 214.37]], \"sentences\": [\" A woman is seen in front of a table in a kitchen.\", \" She is assembling a large fancy cake.\", \" She creates the shape, then shows how to decorate it.\"]}, \"v_XKu57UKSqPc\": {\"duration\": 121.07, \"timestamps\": [[0, 13.92], [13.92, 87.17], [87.17, 104.12], [104.12, 121.07]], \"sentences\": [\"An introduction comes onto the screen for a video about grooming dogs and she talks about what she will be doing.\", \" She starts to cut the hair of a dog that is sitting on a table.\", \" She stands the dog up and continues to cut its hair.\", \" Next, she moves on and start to cut the hair on its ears.\"]}, \"v_mkK9iEzRrqQ\": {\"duration\": 17.51, \"timestamps\": [[0, 2.01], [2.63, 9.54], [9.89, 17.51]], \"sentences\": [\"A group of girls are on a field in front of spectators.\", \" They are chasing a ball during a game of field hockey.\", \" They hit the ball back and forth toward a goal.\"]}, \"v_DkiJwIJQKaM\": {\"duration\": 106.91, \"timestamps\": [[0, 21.38], [23.52, 61.47], [60.4, 106.91]], \"sentences\": [\"a woman holding two Frisbee is standing over a dog.\", \" the dog runs around in a circle around the woman.\", \" the woman and dog continue to perform several tricks with Frisbee.\"]}, \"v_EbGq9gXcXLQ\": {\"duration\": 127.59, \"timestamps\": [[0, 35.09], [28.71, 96.97], [82.3, 123.13]], \"sentences\": [\"A close up of drums are shown followed by a man playing them.\", \" The man moves his hands all along the drum set while the camera captures his movements.\", \" He continues to play on the set and look off into the distance.\"]}, \"v_j7hSNqcWIO4\": {\"duration\": 116.84, \"timestamps\": [[0, 16.36], [23.95, 92.31], [94.64, 116.84]], \"sentences\": [\"A male athlete runs with a long pole.\", \" He runs with the pole, using it to vault.\", \" He vaults over the bar onto a mat.\"]}, \"v_wvFJbY3SmXI\": {\"duration\": 61.19, \"timestamps\": [[0, 61.19], [16.21, 61.19], [35.79, 40.69]], \"sentences\": [\"A person holding a ball spins around and throws it onto the field several times.\", \" There are people sitting in the stands watching them.\", \" A man in a black shirt is sitting in a chair watching.\"]}, \"v_gwKy0W1xof4\": {\"duration\": 75.88, \"timestamps\": [[0, 67.16], [0, 67.54], [70.57, 75.88]], \"sentences\": [\"A man is playing piano as people in the room watch him.\", \" A woman walks over to the piano and begins to watch him as well.\", \" When he is done, the people begin to clap.\"]}, \"v_zdMvd5Cr5jM\": {\"duration\": 106.53, \"timestamps\": [[0, 41.55], [14.91, 16.51], [42.08, 99.61], [102.27, 106.53]], \"sentences\": [\"Girls stand with their heads down.\", \" A girl looks behind her.\", \" The girls do cheer on a gym floor.\", \" The girls leave and walk towards the gym door.\"]}, \"v_CuZpm0Il6YM\": {\"duration\": 18.18, \"timestamps\": [[0, 5.36], [5.36, 15.55], [15.73, 18.18]], \"sentences\": [\"A small white dog is standing on the carpet.\", \" It begins to climb a wooden ladder onto a bunk bed.\", \" Two kids are sitting in the bunk bed.\"]}, \"v_HGduo1zU6Ok\": {\"duration\": 216.23, \"timestamps\": [[0, 29.19], [32.43, 138.38], [138.38, 216.23]], \"sentences\": [\"A group of team members are on a field playing a game.\", \" They are playing a game of field hockey together.\", \" They hit the ball back and forth, trying to get it into a goal.\"]}, \"v_aBdrTqSnWbw\": {\"duration\": 121.21, \"timestamps\": [[1.21, 6.67], [6.67, 119.39], [120, 121.21]], \"sentences\": [\"The outside of a paintball store is shown.\", \" A man talks to the camera from inside the store, interspersed by scenes of people engaging in paintball.\", \" An ending title text on white background is shown.\"]}, \"v_outMi06JZss\": {\"duration\": 68.92, \"timestamps\": [[0, 29.63], [17.23, 42.73], [45.83, 68.92]], \"sentences\": [\"People are running in the dark and then in the desert.\", \"  Tanks follow the four people and then two people finish.\", \"  It takes 11 hours and everyone is super happy.\"]}, \"v_nVHL9qP11aA\": {\"duration\": 231.99, \"timestamps\": [[0, 231.99], [37.12, 60.32], [136.87, 209.95], [226.19, 231.99]], \"sentences\": [\"A boy and two girls are playing beer pong in a crowded room.\", \" One girl pushes the other to the ground and jumps over her a few times.\", \" They make different poses being silly when they throw the ping pong ball, laughing a lot.\", \" At the end the boy leaves the game.\"]}, \"v_vgdcVhRSa9E\": {\"duration\": 122.53, \"timestamps\": [[0, 16.54], [21.44, 82.71], [72.29, 119.47]], \"sentences\": [\"A man is seen looking into a mirror and shows a close up of dogs.\", \" He then begins washing a dog while another person helps from behind.\", \" She scrubs the dog dog while speaking to the camera and the man spraying down the dogs.\"]}, \"v_LA5UXJ_hVU4\": {\"duration\": 22.5, \"timestamps\": [[0, 4.5], [6.3, 13.05], [14.96, 22.5]], \"sentences\": [\"A cowboy bursts through a gate after a calf.\", \" He uses a lasso to trap the calf.\", \" He dismounts and ties up the calf.\"]}, \"v_kPnqo24kemc\": {\"duration\": 109.92, \"timestamps\": [[0, 13.74], [13.74, 96.73], [96.73, 109.92]], \"sentences\": [\"A man begins to explain that he will demonstrate a fitness exercise that is used in CrossFit.\", \" He begins to perform exercise by doing several bends on his knees.\", \" He finished performing the exercise and the video ends.\"]}, \"v_wPLEmDBfgok\": {\"duration\": 184.76, \"timestamps\": [[0, 24.94], [32.33, 102.54], [109.01, 184.76]], \"sentences\": [\"A couple is dancing in the middle of a square.\", \" Another couple has joined in in front of a small crowd.\", \" They continue spinning and twirling as they all dance.\"]}, \"v_OD4MrhX85-M\": {\"duration\": 32.93, \"timestamps\": [[0, 8.73], [8.4, 22.23], [21.9, 31.61]], \"sentences\": [\"A puck is shown moving along a game and leads into people playing shuffleboard.\", \" A game takes her turn pushing the puck down the game.\", \" A man walks into frame in the end.\"]}, \"v_I0yNAIWHcQQ\": {\"duration\": 37.27, \"timestamps\": [[0, 37.27], [26.09, 29.26], [28.88, 30]], \"sentences\": [\"A woman is swinging on a swing set.\", \" A woman holding the camera smiles.\", \" Another person is standing next to her.\"]}, \"v_A0XGYLim9IU\": {\"duration\": 64.76, \"timestamps\": [[0, 48.57], [2.91, 5.83], [5.83, 64.76]], \"sentences\": [\"This person is playing a solo game of croquet outside in a grassy area.\", \" There's lots of clouds in the sky and he pushes the purple ball through the ring first.\", \" Then he pushes other balls through there until he gets tired of playing the game.\"]}, \"v_yH018Jl5GMQ\": {\"duration\": 23.76, \"timestamps\": [[0, 2.26], [2.85, 18.05], [18.77, 23.76]], \"sentences\": [\"a man is working inside a garage.\", \" He is using a sprayer to wash a car with pressure.\", \" He wipes it clean with a rag.\"]}, \"v_id4XtnLsw7c\": {\"duration\": 106.84, \"timestamps\": [[0, 9.62], [21.37, 59.29], [63.03, 106.84]], \"sentences\": [\"A man is lifting weights in a gym.\", \" Several men are shown lifting barbells in a row.\", \" A man is talking to the camera in between weight lifting.\"]}, \"v_rIr091-LMGY\": {\"duration\": 103.45, \"timestamps\": [[0, 21.21], [22.76, 67.24], [63.62, 96.2]], \"sentences\": [\"Several clips are shown of people sitting next to another with men putting makeup on.\", \" The men put makeup all along the women while speaking to one another.\", \" The couples then show off their work in the end.\"]}, \"v_Bh8RcPBQjxo\": {\"duration\": 10.4, \"timestamps\": [[0, 3.54], [3.22, 7.59], [6.61, 10.3]], \"sentences\": [\"A person is seen riding down a hill on a dirt bike.\", \" The person rides over a jump on the dirt path.\", \" The person continues riding around as others watch on the side.\"]}, \"v_ewGW8hMlxnA\": {\"duration\": 190.73, \"timestamps\": [[10.49, 42.91], [43.87, 59.13], [62.94, 72.48], [72.48, 102.99], [104.9, 190.73]], \"sentences\": [\"A young man talks while sitting next to a juvenile in the bleachers.\", \" The juvenile gives to the young man a shoe, then he sprays polish on the shoe and shows a toothbrush while talking.\", \" Then, the juvenile puts foam on the shoe and brush with the toothbrush.\", \" The young man brushes the shoe with foam while they talk.\", \" The juvenile shine the shoe with a paper while they talk, then he puts on the shoe and run away.\"]}, \"v_iddZ6YIWLWc\": {\"duration\": 115.17, \"timestamps\": [[0, 36.28], [28.79, 80.04], [71.98, 111.72]], \"sentences\": [\"A long rope is shown with a man tightening it and a woman walking across holding onto a man.\", \" More people attempt to walk the rope while others watch on the side.\", \" They fall off continuously and end by sitting and eating on the ground.\"]}, \"v__ye90Ou8SnE\": {\"duration\": 90.47, \"timestamps\": [[0, 38], [38, 66.49], [66.49, 90.47]], \"sentences\": [\"old man is kneeling on the floor putting cloth tiles on the floor.\", \" man is in an office and shows the material list.\", \" the room is almost done and the man is showing how to put the cloth tile.\"]}, \"v_R_TRpIHkgMs\": {\"duration\": 96.78, \"timestamps\": [[0, 14.03], [15, 64.84], [73.07, 96.78]], \"sentences\": [\"A group of people are watching inside a building.\", \" The former president of the united states is engaged in a game of pool.\", \" He hits the cue and tries to knock the balls in the pockets.\"]}, \"v_V4cYhOQ6Pfs\": {\"duration\": 41.08, \"timestamps\": [[0, 5.55], [6.57, 26.29], [25.26, 39.64]], \"sentences\": [\"A man steps into frame and picks up a large ball.\", \" He walks back towards the camera and begins swinging around.\", \" He continues swinging and throws the object off in the distance and walks back to the camera.\"]}, \"v_I5Q0DcmTs9c\": {\"duration\": 227.06, \"timestamps\": [[0, 225.92], [9.08, 227.06], [0, 227.06]], \"sentences\": [\"man is siting in a bed playing an harmonica and an acordion.\", \" man is sitting playing instruments in a room.\", \" man is sitting in a room and instruments are hanging in the back wall.\"]}, \"v_pX-ik8n_eNQ\": {\"duration\": 211.79, \"timestamps\": [[0, 211.79], [9.53, 12.71], [73.07, 77.3], [135.55, 136.6]], \"sentences\": [\"Two men are playing table tennis.\", \" The ball flies off the table to the side at one point.\", \" The man waits for the other man to get back.\", \" One player hits the ball when it almost falls on the floor.\"]}, \"v_mmRpNwb0NZ0\": {\"duration\": 128.89, \"timestamps\": [[0, 41.25], [36.73, 97.31], [87.65, 126.96]], \"sentences\": [\"A woman is seen speaking to the camera as well as clips of her warming up on the floor.\", \" She continues to speak and show more clips of her dancing as a ballerina around a room.\", \" She's shown dancing on stage while continuing to speak.\"]}, \"v_DFAodsf1dWk\": {\"duration\": 231.71, \"timestamps\": [[0, 27.81], [33.6, 72.99], [110.06, 231.71]], \"sentences\": [\"A man is sleeping in a bedroom.\", \" He reaches out and turns off an alarm clock.\", \" He is then seen engages in a game of beer pong with his friends.\"]}, \"v_nEmuDmbOp1E\": {\"duration\": 152.07, \"timestamps\": [[0, 21.29], [27.37, 57.79], [72.99, 152.07]], \"sentences\": [\"A couple of men are working inside a house.\", \" They scrape a ceiling clean, then apply spackling.\", \" They cover the entire ceiling with the spackling.\"]}, \"v_TM4-Miytfv4\": {\"duration\": 24.08, \"timestamps\": [[0, 23.72], [0, 6.62], [6.62, 23.72]], \"sentences\": [\"A young man performs a high jump which is played in slow motion as the boy runs, jumps, and lands on a gym mat inside of a gym.\", \"  A young man runs towards a pole in the air and hurls himself over it in a high jump.\", \"  The man lands on the other side of the bar onto a gym mat where he rolls and then gets up and walks.\"]}, \"v_hz3n1wrXYAc\": {\"duration\": 97.78, \"timestamps\": [[0, 18.58], [18.58, 80.18], [80.18, 97.78]], \"sentences\": [\"man is talking to the camera holding a helmet and a bike.\", \" two men are talking on top of a slide and go down riding bikes.\", \" men get to the finish and keep talking to the camera interviewing other men.\"]}, \"v_0y4mO86t4Z0\": {\"duration\": 169.88, \"timestamps\": [[0, 31.43], [28.03, 129.96], [112.97, 164.78]], \"sentences\": [\"A person is seen riding around on a horse led by another woman.\", \" The horse roams around in circles with the girl on top.\", \" The woman stops the horse to speak to the girl and continues riding around and stopping again.\"]}, \"v_B67jaG6qKWE\": {\"duration\": 155.88, \"timestamps\": [[0, 15.59], [25.72, 96.64], [98.98, 155.88]], \"sentences\": [\"A group of players are in a gym.\", \" They are engaged in a game of foosball.\", \" Two referees are watching as they play.\"]}, \"v_XCJ2StGMgW4\": {\"duration\": 34.76, \"timestamps\": [[0, 4.17], [6.43, 18.77], [21.38, 34.76]], \"sentences\": [\"A young boy is standing inside a house.\", \" He is playing a set of bagpipes.\", \" He continues to play until he is finished.\"]}, \"v_u1VIetb75rs\": {\"duration\": 148.03, \"timestamps\": [[0, 122.86], [122.86, 132.49], [135.45, 148.03]], \"sentences\": [\"A man lifts a large weight over his head and drops it on the ground several times.\", \" The statistics are shown on the screen.\", \" Three men get medals and stand on a podium.\"]}, \"v_rdkPwRWW91s\": {\"duration\": 142.85, \"timestamps\": [[0, 39.28], [37.86, 106.42], [102.14, 138.56]], \"sentences\": [\"A person is seen climbing onto a surf board and moving along the water with a sail.\", \" The person moves all around the water while others watch on the side.\", \" The person continues to ride around back and fourth in circles.\"]}, \"v_PYNTOqgOXWc\": {\"duration\": 63.93, \"timestamps\": [[0, 1.92], [1.92, 35.48], [35.48, 57.21], [57.21, 63.93]], \"sentences\": [\"An introduction comes onto the screen for a demonstration of a mop.\", \" The mop is shown being used in a figure eight motion to clean the floor.\", \" The mop is wrung out and used to do a second pass on the floor.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_f-JfdEfNQlE\": {\"duration\": 112.55, \"timestamps\": [[0, 17.44], [21.95, 67.53], [75.97, 112.55]], \"sentences\": [\"Several children are on a playground outdoors.\", \" They swing, climb, and play hard.\", \" They continue playing on the brand new set.\"]}, \"v_O62LVI0XNHo\": {\"duration\": 171.5, \"timestamps\": [[0, 42.02], [36.02, 129.48], [108.9, 167.22]], \"sentences\": [\"A man is seen walking into frame playing a set of bag pipes.\", \" He moves his hands up and down the instrument while blowing into the sides.\", \" He continues to play and walks out of frame.\"]}, \"v_6Ke30NtYOC0\": {\"duration\": 79.99, \"timestamps\": [[0, 1.2], [1.2, 7.2], [7.2, 71.59], [71.59, 75.19], [75.19, 79.99]], \"sentences\": [\"We see a monitor on a computer.\", \" The man adjusts the monitor on himself.\", \" The man plays the guitar in front of the camera.\", \" The man finishes and hands the guitar to his friend.\", \" The man turns the camera towards the monitor.\"]}, \"v_TOP1Fwili-k\": {\"duration\": 139.09, \"timestamps\": [[0, 59.81], [39.64, 100.84], [94.58, 132.13]], \"sentences\": [\"A man is seen speaking to the camera while two men stand behind him.\", \" The man then demonstrates how to properly hit a birdie using a racket.\", \" The two men then hit the birdie back and fourth while the man still speaks.\"]}, \"v_wy_oDiDK6lk\": {\"duration\": 121.02, \"timestamps\": [[3.63, 121.02], [0, 121.02], [0, 120.42]], \"sentences\": [\"woman is holding a cat on her legs and is cutting his nails with a nail clipper.\", \"the cat is faling sleep while the woman is cutting his nails.\", \" cat is lying on woman's leg and its falling sleep while the woman is cutting her nails.\"]}, \"v_Yk3pQ18So90\": {\"duration\": 203.82999999999998, \"timestamps\": [[0, 203.83], [40.77, 203.83], [1.02, 203.83]], \"sentences\": [\"People are standing around a red car.\", \" Three women kneel down and begin changing the tires.\", \" People stand around watching them.\"]}, \"v_JfifgnVgJEU\": {\"duration\": 35.6, \"timestamps\": [[0, 15.66], [15.13, 24.21], [24.38, 35.6]], \"sentences\": [\"A man fiddles with something in his hands.\", \" The man puts something in his mouth.\", \" The man smiles at the camera.\"]}, \"v_hJf7uOUiEFo\": {\"duration\": 185.04, \"timestamps\": [[0, 25.91], [25.91, 93.45], [93.45, 139.71], [139.71, 164.69], [164.69, 185.04]], \"sentences\": [\"Two vacant black chairs are in a room until a young female hair stylist with blonde hair sits in the chair and begins talking about hair products and what they contain.\", \"Once the girl leaves,she comes back with washed hair and starts talking about another product of oil that she has in her hand.\", \"After,she appears in front of the mirror with more products,once she has shaken the bottle,she then squirts it in her head before combing it through.\", \"Now its time to blow dry and a small timer appears at the bottom of the screen indicating that it cuts your time in half.\", \"Once complete,she shows the final look and begins talking to the camera again.\"]}, \"v_D2TQ_RR2Q50\": {\"duration\": 226.37, \"timestamps\": [[0, 63.38], [62.25, 153.93], [155.06, 220.71]], \"sentences\": [\"Three women are seen speaking to the camera while people run in the background.\", \" More clips are shown of people running a marathon while others still speak to the camera.\", \" The women continue speaking while others still run around.\"]}, \"v_JE0xYYOp5_s\": {\"duration\": 82.11, \"timestamps\": [[0, 18.88], [19.29, 57.06], [57.47, 62.81], [64.86, 82.11]], \"sentences\": [\"A lady in a kitchen is slicing tomato then talks to the camera as we see the title on the screen.\", \" We see a title screen and a lady take a mug and throws the water on the ground and uses the bottom to sharpen her knife.\", \" We then see the lady slice her tomato with ease.\", \" The lady speak to the camera and we see the closing screen.\"]}, \"v_NNfAlym-xh8\": {\"duration\": 138.79, \"timestamps\": [[0, 43.72], [4.86, 33.31], [63.15, 138.79]], \"sentences\": [\"A boy practices on the uneven bars.\", \"  He sits on top of the bars and then continues.\", \"  He does other routines as well.\"]}, \"v_0drl-yrfBAA\": {\"duration\": 235.68, \"timestamps\": [[0, 65.99], [65.99, 147.3], [147.3, 235.68]], \"sentences\": [\"A group of marching band drummers ready themselves starts performing while audience are encircling them.\", \" Another group of drummers join them, put down their hats and plays with them while the first group walks around while playing.\", \" A third set of drummers arrives followed by the cymbals players and they all played their instruments together.\"]}, \"v_Dt2KQcKR4T8\": {\"duration\": 5.97, \"timestamps\": [[0, 1.07], [1.25, 4.24], [4.51, 5.97]], \"sentences\": [\"An athlete runs with a long pole down a track.\", \" He vaults up in the air with the pole.\", \" He misses the bar, and crashes onto the mat.\"]}, \"v_okSvWjK0okw\": {\"duration\": 121.19, \"timestamps\": [[0, 16.97], [16.36, 79.38], [79.38, 121.19]], \"sentences\": [\"A large rock is shown and two people are rock climbing up a real rock outside in the terrain.\", \"The camera zooms in on the guys and they are midway up the rock as the people stay on the ground and continue to watch them.\", \"After,the angle shifts,shows the whole rock and the title of the song that they were playing.\"]}, \"v_xf_exEkpJe8\": {\"duration\": 167.8, \"timestamps\": [[0, 167.8], [5.03, 167.8], [10.07, 167.8], [23.49, 113.27], [32.72, 146.83], [73.83, 92.29], [88.93, 152.7], [150.18, 167.8]], \"sentences\": [\"There is a man and woman dancing on their front porch next to a brick fireplace.\", \" The woman is dressed in a gray shirt and jeans and the man is wearing a white tank top and jeans.\", \" They are doing a Salsa kind of dance as they hold hands and twirl their bodies around.\", \" The man holds the woman's hand as she twirls around while he stands still.\", \" Then they both dance rhythmically while shaking their bodies and going around in rotation.\", \" Another man comes there and puts something in the brick fireplace while the couple continues to dance.\", \" Then the man leaves but the couple still continues to dance as they hold their hands and twirl their bodies while shaking their hips.\", \" The man then gives the woman a thumbs up and they stop dancing.\"]}, \"v_f4IL30BPe2w\": {\"duration\": 132.66, \"timestamps\": [[0, 36.48], [29.85, 93.52], [78.93, 127.35]], \"sentences\": [\"A person is seen performing tricks with a frisbee and dog.\", \" The man throws the frisbee all around while the dog jumps around him.\", \" The two continue performing tricks back and fourth.\"]}, \"v_E2Vd-sOC_ik\": {\"duration\": 105.42, \"timestamps\": [[0, 36.37], [30.57, 78.01], [68.52, 104.89]], \"sentences\": [\"A person is shown in several clips bouncing around on stilts.\", \" A man hosts a news segment and shows more people bouncing around past others.\", \" A man speaks to the camera while more people jump on stilts and the host speaks.\"]}, \"v_yRgei7gpr-I\": {\"duration\": 229.59, \"timestamps\": [[0, 53.95], [57.4, 154.97], [140.05, 223.85]], \"sentences\": [\"A man is seen walking up and and throwing an object off in the distance.\", \" His throw is shown again followed by several more people throwing a shot put.\", \" More and more people take turns and leads into a man lifting weights around others.\"]}, \"v_Zc8zn0sKfwo\": {\"duration\": 205.29, \"timestamps\": [[0, 34.9], [36.95, 142.68], [146.78, 205.29]], \"sentences\": [\"A man is talking inside a kitchen.\", \" He shows a macaroni and cheese bake.\", \" He then shows the step by step instructions for how to make the bake.\"]}, \"v_FFyJjF4MjHM\": {\"duration\": 35.2, \"timestamps\": [[0, 35.2], [6.34, 35.2], [29.39, 35.2]], \"sentences\": [\"People are skiing down a hill of snow.\", \" It zooms in onto a man skiing slowly down the hill.\", \" A person in a blue jacket comes up behind them.\"]}, \"v_xQljKBB3498\": {\"duration\": 90.23, \"timestamps\": [[0, 8.57], [17.6, 56.4], [60, 90.23]], \"sentences\": [\"A young girl is inside a bathroom.\", \" She shows a bottle of orange face wash.\", \" She shows how to wash your face with the wash.\"]}, \"v_zzE2VrQMvbc\": {\"duration\": 121.48, \"timestamps\": [[0, 34.01], [34.62, 78.35], [78.96, 106.9], [106.29, 121.48]], \"sentences\": [\"A black pistol is shown on the bottom middle of the camera aiming out into a grassy field with barricades.\", \"Shortly after,the person begins to move in the field looking for targets to fire his paint balls at.\", \"The person moves from one wooden house to another without being seen and sets up to fire at a target.\", \"Three people appear and circles appear around them while tips come across the screen.\"]}, \"v_jRfTdoqG7Tw\": {\"duration\": 135.19, \"timestamps\": [[0, 32.44], [37.18, 91.93], [84.49, 131.81]], \"sentences\": [\"A woman is seen getting makeup put on and leads into two women speaking.\", \" One woman then begins putting makeup on the other while still speaking.\", \" They continue to put makeup on the girl and she shows it off.\"]}, \"v_Q7cgJD7-sEM\": {\"duration\": 206.94, \"timestamps\": [[0, 19.66], [34.14, 151.06], [151.06, 206.94]], \"sentences\": [\"A man is seated in a chair in a building.\", \" He is playing a long wooden flute.\", \" He continues playing as the people listen to him.\"]}, \"v_6gyD-Mte2ZM\": {\"duration\": 188.25, \"timestamps\": [[0, 188.25], [6.59, 36.71], [16, 77.18], [56.47, 76.24], [70.59, 117.65], [105.42, 142.12], [122.36, 148.71], [129.89, 153.42], [138.36, 171.3], [165.66, 188.25]], \"sentences\": [\"There's a man in a brown shirt bowling in a large alley in a competition with spectators watching him.\", \" He begins by picking up his blue bowling ball and then, holds it firmly to shoot it at the pins.\", \" He gets a strike after the ball hits the pin.\", \" He continues throwing the ball several times and every time he gets a strike.\", \" Then when he hits the ball again, he knocks down four pins in the first attempt.\", \" Then after he continues bowling, the pins knock down the remaining pins down.\", \" He bowls again and knocks down four pins.\", \" On the second attempt, he knocks down more pins and finally gets a spare.\", \" The crowd cheers for him as he bowls the ball again knocking down two more pins.\", \" He raises his hands feeling victorious.\"]}, \"v_gl_0jjJBUkc\": {\"duration\": 17.07, \"timestamps\": [[0, 3.16], [3.33, 9.47], [9.39, 16.98]], \"sentences\": [\"A young man is seen kneeling down before a bucket.\", \" He looks up to the camera while washing clothes.\", \" Another man walks into frame and begins washing clothes in a  bucket.\"]}, \"v_Fv1qhPABYk0\": {\"duration\": 18.32, \"timestamps\": [[0.09, 4.12], [2.75, 11.63], [12.18, 17.68]], \"sentences\": [\"A group of girls are seen pulling a rope.\", \" One team pulls against the other.\", \" One team wins and the girls speak to one another.\"]}, \"v_rDxEl9bPodU\": {\"duration\": 73.52, \"timestamps\": [[0, 20.95], [22.05, 28.67], [28.67, 73.52]], \"sentences\": [\"People ride horses on front the ocean.\", \" A woman wearing green top and a bag on her shoulder rides a horse.\", \" People ride horses going in a line.\"]}, \"v_MVzypK0eMKc\": {\"duration\": 126.06, \"timestamps\": [[5.67, 31.52], [38.45, 90.13], [86.35, 122.28]], \"sentences\": [\"A young boy is seen speaking to the camera and pouring ingredients into a blender.\", \" He squeezes juice and mixes up the blender.\", \" He pours it out and takes a sip while speaking to the camera.\"]}, \"v_bWdufJDosIo\": {\"duration\": 121.05, \"timestamps\": [[0, 15.74], [15.74, 52.66], [41.16, 87.15], [76.26, 121.05]], \"sentences\": [\"a woman holding rolls of wall paper starts talking to the camera.\", \" a man behind her is arranging other wall paper rolls.\", \" the woman then stands in front of a finished wall and talks.\", \" wall paper is then installed on a different wall.\"]}, \"v_Otm5TV4XI7w\": {\"duration\": 127.73, \"timestamps\": [[0.64, 95.8], [98.35, 114.32], [111.77, 127.09]], \"sentences\": [\"These two men are talking to each other and one of the men is the world champion of paper, scissors, rock.\", \" The champion himself explains how to win every game just by having mind control and looking at the opponent's hand to see what they put up.\", \" Then the champion even plays against someone and he wins, when they're done talking and having fun, the spokesperson thanks  the champion for coming.\"]}, \"v__ZiTTLhXjZQ\": {\"duration\": 155.82999999999998, \"timestamps\": [[0, 155.83], [0, 155.05], [0.78, 155.83]], \"sentences\": [\"A man is throwing a Frisbee onto the field.\", \" A dog is chasing the Frisbee on the field.\", \" People are sitting around the field watching them.\"]}, \"v_2belnHaa36g\": {\"duration\": 22.71, \"timestamps\": [[0, 22.71], [11.13, 16.24], [16.24, 22.71]], \"sentences\": [\"This african american, short, and stubby man is playing the drums while other people sing along to his beat.\", \" The camera is at a normal view, but then it gets zoomed in on the man.\", \" He then stands up while laughing and he stops playing the drums.\"]}, \"v_u7OvguFW-Hs\": {\"duration\": 17.46, \"timestamps\": [[0, 17.46], [3.14, 9.95], [9.95, 17.46]], \"sentences\": [\"Some boys are in a room joking and playing around.\", \" Some of the boys lift one of the boys into the air.\", \" When they get him into the air, the drop him down and the boy smiles at the camera.\"]}, \"v_jNJg1TYq3c8\": {\"duration\": 49.02, \"timestamps\": [[5.39, 48.04], [5.39, 14.95], [14.95, 49.02]], \"sentences\": [\"A man is shown cleaning a window with a tool.\", \"  The man steams up the window.\", \"  The man scrapes the steam off of the window.\"]}, \"v_YNnyUVFE4uM\": {\"duration\": 60.33, \"timestamps\": [[0, 50.98], [0, 60.33], [50.98, 60.33]], \"sentences\": [\"Someone is washing dishes in a sink while being recorded with a camera.\", \" A counter in the corner of the screen is keeping a count of the amount of water being used as the dishes are being washed.\", \" The person cleans out the sink after they are finished washing the dishes.\"]}, \"v_7B1FZR0IA6M\": {\"duration\": 78.25, \"timestamps\": [[0, 74.34], [3.91, 13.69], [5.87, 76.3], [36.39, 43.43]], \"sentences\": [\"A man is skating in a skate park.\", \" He bounces up and down on rope.\", \" He then does several other tricks.\", \" He jumps a ramp and dives into a pile of leaves.\"]}, \"v_P6Z-7k-erfc\": {\"duration\": 67.11, \"timestamps\": [[0, 10.74], [12.08, 41.94], [48.99, 67.11]], \"sentences\": [\"A couple of little girls are sitting  on the floor in a kitchen.\", \" A man is washing dishes while the girls are playing.\", \" They are carving and drawing on a pumpkin.\"]}, \"v_POvVSjY_8HU\": {\"duration\": 82.2, \"timestamps\": [[0, 10.69], [14.38, 63.29], [66.58, 82.2]], \"sentences\": [\"A man is standing inside a garage.\", \" He is using a stick to wipe off the top of the car.\", \" He reaches across, blowing water and wiping with a rag.\"]}, \"v_s69uPXLvzIg\": {\"duration\": 92.21000000000001, \"timestamps\": [[0, 92.21], [20.75, 92.21], [0, 90.36]], \"sentences\": [\"in a workshop man is welding beams.\", \" some beams in the wotkshop are shown.\", \" men is standing in a workshop welding beams and showing the workshop.\"]}, \"v_x7-2_HigN8c\": {\"duration\": 74.24, \"timestamps\": [[0, 8.91], [12.99, 50.48], [50.48, 74.24]], \"sentences\": [\"A couple of women are standing in front of a carnival shop.\", \" They are throwing dart at balloons, trying to pop them.\", \" They continue until they have popped enough balloons.\"]}, \"v_4CSyAAoO18s\": {\"duration\": 154.72, \"timestamps\": [[0, 16.25], [27.85, 82.77], [88.96, 154.72]], \"sentences\": [\"A man is talking in front of a camera.\", \" He shows off a tube of hair gel.\", \" He then demonstrates how to use the gel by smoothing it into his hair.\"]}, \"v_hbHkS0GAOLE\": {\"duration\": 23.89, \"timestamps\": [[0, 23.89], [1.31, 23.89], [2.63, 23.89], [16.96, 23.89]], \"sentences\": [\"A shot of the snowy mountain going down.\", \" People stand along the sides of it.\", \" Other people are seen riding down the mountain.\", \" They pass a person in a vest at the bottom.\"]}, \"v_AZn294ubbps\": {\"duration\": 104.47, \"timestamps\": [[0, 44.92], [0, 42.31], [42.31, 104.47]], \"sentences\": [\"man is standing in a lakeside talking to the camera and holding a row nex to a kayak.\", \" man is sitting in a kayak in the lakeside in front of the man talking.\", \" the man sits on the kayak behind the man and start rowing in the lake .\"]}, \"v_1JKgr3KfoHo\": {\"duration\": 206.9, \"timestamps\": [[0, 30], [33.1, 129.31], [143.79, 206.9]], \"sentences\": [\"A group of ice hockey players are gathered on the ice.\", \" They are practicing for a big game.\", \" They hit the puck back and forth and spin on the ice.\"]}, \"v_0gLAhptj34w\": {\"duration\": 91.65, \"timestamps\": [[0.92, 20.62], [22.91, 69.2], [71.03, 88.44]], \"sentences\": [\"A close up of a fooseball table is shown with two people playing.\", \" The people move the poles all along the table pushing a ball.\", \" The two continue to play back and fourth.\"]}, \"v_TVmuh_sR1KI\": {\"duration\": 134.7, \"timestamps\": [[0, 125.27], [0, 134.7], [125.27, 134.7]], \"sentences\": [\"A kid is standing up playing the bag pipes.\", \" People are sitting in front of him watching.\", \" He stops playing and walks off.\"]}, \"v_UgXPt2LydrY\": {\"duration\": 26.43, \"timestamps\": [[0, 3.83], [5.42, 16.52], [17.18, 26.43]], \"sentences\": [\"A group of friends are on a sandy beach.\", \" Several onlookers are gathered around the net.\", \" The people are playing a game of volleyball.\"]}, \"v_e2QVdX-JdIg\": {\"duration\": 102.56, \"timestamps\": [[0, 14.36], [17.95, 58.46], [64.1, 102.56]], \"sentences\": [\"A group of men are playing on a field.\", \" They are involved in a track match.\", \" A man spins several times, then throws a disc.\"]}, \"v_V--Xz2FtJXA\": {\"duration\": 199.62, \"timestamps\": [[0, 55.89], [53.9, 76.85], [93.82, 131.75], [127.76, 140.73], [183.65, 186.65]], \"sentences\": [\"A woman in a black shirt is talking.\", \" She walks and sits down in a chair.\", \" A woman starts cutting her hair.\", \" She holds the braids up that the woman cut off.\", \"  She gives the woman a hug.\"]}, \"v_WrFNI5GQFPM\": {\"duration\": 214.02, \"timestamps\": [[0, 58.86], [51.36, 153.02], [142.32, 208.67]], \"sentences\": [\"A woman's hair is seen followed by another woman styling her hair.\", \" The woman braids the other's hair all around and pins it up behind her.\", \" The woman continue pinning and curling her hair and shows it off in the end.\"]}, \"v_c4ctwOucndQ\": {\"duration\": 117.87, \"timestamps\": [[0, 113.15], [0, 115.51], [115.51, 117.87]], \"sentences\": [\"A man is sitting on an exercise machine working out.\", \" People are walking behind him.\", \" He stops working out and drops the cord.\"]}, \"v_-doxoUNGLJE\": {\"duration\": 206.57, \"timestamps\": [[0, 74.36], [46.48, 159.06], [103.28, 206.57]], \"sentences\": [\"Two men are standing with a tire at their center.\", \" The older man is holding a tire and the younger man is talking.\", \" The older man put down the tire he is holding and the men continue to talk to the camera.\"]}, \"v_DTWZhe352y8\": {\"duration\": 238.96, \"timestamps\": [[0, 22.7], [22.7, 27.48], [27.48, 31.06], [38.23, 46.6], [48.99, 65.71], [66.91, 69.3], [78.86, 81.25], [81.25, 198.33], [198.33, 200.72], [207.89, 216.26], [225.81, 238.96]], \"sentences\": [\"A woman is sitting down at a table talking.\", \" She lifts up a box and sets it on the table.\", \" She grabs a pair of scissors and tape.\", \" She pulls out a roll of wrapping paper and two bows from a clear box.\", \" She has a black gift bag in her hand.\", \" She begins ripping the wrapping paper with her hands.\", \" She lays the wrapping paper out on the table in front of her.\", \" She sets the box on top of the wrapping paper and begins wrapping the box.\", \" She finishes wrapping the present and puts a red bow on top.\", \" She then puts on sunglasses and continues talking.\", \" A cat jumps onto the table and sniffs the wrapping paper.\"]}, \"v_iBefG1qFbsE\": {\"duration\": 183.23, \"timestamps\": [[0, 183.23], [86.12, 114.52], [114.52, 183.23]], \"sentences\": [\"A person is sitting down knitting something.\", \" The old woman's face is shown.\", \" She continues knitting with her hands.\"]}, \"v_iaXlCCgLBdo\": {\"duration\": 36.36, \"timestamps\": [[0, 2.18], [2.18, 32.73], [32.73, 36.36]], \"sentences\": [\"The runner starts running and throws the javelin really far.\", \" Then it is replayed showing the man do this again in slow motion.\", \" Then the man screams and yells and jumps up and down in surprise of what he just did.\"]}, \"v_x86YIU9TIPw\": {\"duration\": 37.99, \"timestamps\": [[0, 2.47], [2.47, 13.87], [13.87, 16.14], [16.52, 37.99]], \"sentences\": [\"Two lacrosse teams compete in a tournament.\", \" The white team is playing defense while the blue team has the ball and is playing offense.\", \" The blue team takes a shot at the goal and is blocked by the goalie.\", \" The goalie places the ball on the ground for his team to now go to offense and attack the blue team goalie.\"]}, \"v_NLCNBK2YJQU\": {\"duration\": 122.83, \"timestamps\": [[0, 30.09], [33.78, 85.37], [93.97, 122.83]], \"sentences\": [\"A man is riding a wave with a sailboat.\", \" He is leaning back and holding the camera on a rod.\", \" He continues cutting through the water as he goes.\"]}, \"v_LaWlIUKH3PU\": {\"duration\": 176.73, \"timestamps\": [[0, 176.73], [0, 175.84], [69.81, 124.59], [0, 69.81], [124.59, 176.73]], \"sentences\": [\"cheerleader team are holding batons doing a choreography in the midle of a square.\", \" a lot of people are gathered around the team watching them.\", \" anoter team of younger kids are marching in the middle of the people.\", \" team gets in the street doing a choreography in the middle of the people.\", \" other teams of kids gets in the parade and are jumping.\"]}, \"v_LV0nevBELso\": {\"duration\": 162.01, \"timestamps\": [[0, 8.1], [8.1, 104.49], [104.49, 162.01]], \"sentences\": [\"A young man stands outdoors on a porch speaking to the camera, the words \\\"Zack's Glass Cleaning\\\" appears on screen.\", \" He brings out tools and starts cleaning the window, explaining the process to the camera.\", \" He appears at another location cleaning a large commercial window.\"]}, \"v_6YIZ00dNpMU\": {\"duration\": 179.57, \"timestamps\": [[0, 41.3], [41.3, 98.77], [108.64, 179.57]], \"sentences\": [\"a man sits behinds a a pair of drums.\", \" the man talks to the camera.\", \" the man then plays the drums with his hands.\"]}, \"v_BcMHGhxdMl4\": {\"duration\": 42.03, \"timestamps\": [[0, 15.76], [15.13, 33.2], [33.2, 42.03]], \"sentences\": [\"A man with short black curly hair is standing in the corner of a bumper car room talking.\", \"As he talks,a variety of people from different ages and genders are moving around and hitting each other.\", \"The action keeps going,and the man talks about the events and extends his arm about the cars.\"]}, \"v_HCphw9_Jku8\": {\"duration\": 167.77, \"timestamps\": [[0, 25.16], [47.81, 121.63], [133.37, 167.77]], \"sentences\": [\"A bunch of children are riding in bumper cars.\", \" They intentionally bump into each other.\", \" They continue hitting each other with the cars.\"]}, \"v_CgWVpLVd16o\": {\"duration\": 22.04, \"timestamps\": [[0, 3.31], [3.31, 8.7], [8.7, 14.76], [14.65, 22.04]], \"sentences\": [\"A older boy is at the park on the top of a slide just sitting and waiting.\", \" He sits up there for a few before finally letting himself go down the slide.\", \" He is sitting on a skate board and he is holding it so he doesn't move but once he lets go he builds up a lot of speed.\", \" Once he does he goes down fast and hurts his butt a little when he lands.\"]}, \"v_ZblmMtkVXIc\": {\"duration\": 45.49, \"timestamps\": [[0.23, 12.96], [10.69, 28.88], [30.02, 43.44]], \"sentences\": [\"A woman is seen speaking to the camera and pouring ingredients into a bucket.\", \" She dips the mop into a bucket and rubs it along the floor.\", \" She continues cleaning and smiles to the camera.\"]}, \"v_pZxteNqdweM\": {\"duration\": 80.4, \"timestamps\": [[0, 10.85], [8.04, 20.5], [16.08, 33.77], [32.96, 57.49], [57.49, 80.4]], \"sentences\": [\"a man stands behind a bar.\", \" the man begins talking to the camera.\", \" the man takes a glass and fills the glass with various liquors.\", \" the man mixes the liquor in a shaker.\", \" the man then pours the contents into a martini glass.\"]}, \"v_GcE-0A4Titg\": {\"duration\": 119.1, \"timestamps\": [[0, 5.95], [5.95, 119.1], [0, 119.1]], \"sentences\": [\"man is hammering a fence on a side of the workshop.\", \" man kneeling in the floor is welding a metal fence.\", \" two men are in a workshop welding and hammering pieces.\"]}, \"v_eKiRykHu734\": {\"duration\": 151.3, \"timestamps\": [[43.12, 52.2], [52.2, 55.23], [62.03, 151.3]], \"sentences\": [\"A person is wake boarding in water.\", \" People are playing rock, paper, scissors on a boat.\", \" A man is wake boarding off of jumps behind a boat.\"]}, \"v_lLHAzwAs_9I\": {\"duration\": 197.12, \"timestamps\": [[34.5, 197.12], [34.5, 87.72], [110.38, 121.23]], \"sentences\": [\"A baby is sitting in a swing.\", \" A woman is standing in front of the baby pushing them in the swing.\", \" A man is standing behind the baby in the swing.\"]}, \"v_iId8WcbiKZI\": {\"duration\": 104.84, \"timestamps\": [[0, 14.68], [14.15, 36.69], [36.69, 72.34], [72.34, 104.84]], \"sentences\": [\"A man is seen sitting in a blue chair in a shallow part of a lake,holding onto a rope and a pole.\", \"All of a sudden he is yoked out of the chair and pulled into the water by a Jet ski.\", \"He continues to hold on and travel across the water doing flips and turns but eventually falls.\", \"Next he appears on a seat with a pole attached to it as if he is sitting in the water doing tricks.\"]}, \"v_EVQlh2Et5tc\": {\"duration\": 24.24, \"timestamps\": [[0, 5.09], [5.21, 16], [16.12, 24.24]], \"sentences\": [\"A gymnast is seen standing before a set of uneven bars while others watch on the side.\", \" The girl jumps up and begins flipping around on the bars.\", \" She continues flipping around and ends by jumping down the side.\"]}, \"v_r5mwKEhEsHA\": {\"duration\": 126.36, \"timestamps\": [[0, 32.85], [32.85, 51.81], [51.81, 66.97], [67.6, 126.36]], \"sentences\": [\"A woman is talking in her room while a cat is walking away behind her.\", \" She lift the contact lenses case and continue talking.\", \" She lifts again the lenses case while her finger is touching the  liquid solution in the case.\", \" She shows her index finger and put her contact lense in her right eye while continuously talking.\"]}, \"v_bOBQLGfEeyg\": {\"duration\": 59.7, \"timestamps\": [[0, 7.46], [10.15, 30.15], [33.13, 59.7]], \"sentences\": [\"A man is standing inside a gym.\", \" He walks forward, then leans over.\", \" He tries to hit a ball with his fists.\"]}, \"v_ZH8hnmjRDsI\": {\"duration\": 59.05, \"timestamps\": [[0, 9.45], [9.74, 59.05], [24.21, 32.48], [35.13, 59.05]], \"sentences\": [\"A yellow plane is flying in the sky.\", \" A boy is sitting on the sand of a beach.\", \" A colorful towel is next to many small sand castles.\", \" The boy continues to play in the sand.\"]}, \"v_2Voht8wf3dQ\": {\"duration\": 117.89, \"timestamps\": [[0, 117.89], [7.66, 117.89], [20.04, 117.89], [75.45, 117.89]], \"sentences\": [\"A woman stands at a counter.\", \" There are several vegetables on a board.\", \" She holds up a knife to cut them.\", \" She uses a tool to sharpen the knife.\"]}, \"v_qgasVDGUw3E\": {\"duration\": 172.47, \"timestamps\": [[0, 9.49], [9.49, 73.3], [73.3, 172.47]], \"sentences\": [\"A red truck parks on front a house, a ladder is on the rood of the truck.\", \" A person is taking off damaged shingles of a roof.\", \" Then, the person is nailing and gluing new shingles in the roof.\"]}, \"v_d_JH9U-UI3c\": {\"duration\": 142.13, \"timestamps\": [[0, 28.43], [24.87, 87.41], [74.62, 142.13]], \"sentences\": [\"a girl is standing in the middle of a basketball court.\", \" the girl holds a baton and does a standing split.\", \" the girl then performs a dance routine.\"]}, \"v_RnN4BXyOtxU\": {\"duration\": 121.53, \"timestamps\": [[20.66, 37.68], [38.28, 79], [86.29, 91.76], [96.01, 113.03]], \"sentences\": [\"A lemon is cut on a counter.\", \" They juice the lemon and pour it into a pot.\", \" They pour it into a plastic pitcher.\", \" They start to drink the drink.\"]}, \"v_JuD1OdoXe9Q\": {\"duration\": 140.82999999999998, \"timestamps\": [[1.41, 31.69], [30.28, 78.86], [85.91, 112.66], [110.55, 139.42]], \"sentences\": [\"A man is seen standing before a track and running into a pit.\", \" His run is shown again and the audience cheers for him.\", \" He receives a medal with others as flags are raised.\", \" He finally sings along and smiles to the audience.\"]}, \"v_2r7qhNGm44I\": {\"duration\": 141.29, \"timestamps\": [[0, 4.24], [4.24, 59.34], [59.34, 141.29], [120.1, 141.29]], \"sentences\": [\"There is an intro that states \\\"Carolyn Goes to Winter Park: 1st Snowboard Trip January 2013\\\".\", \" Then various still shots and video are shown of a little girl doing various things, and then learning how to snowboard in the slopes.\", \" Then she is in a sled going down a hill and more still shots of her are shown, some with a woman.\", \" At the end she get the hang of snowboarding and goes down the hill on her own, and we see her at the end being pulled in a wagon.\"]}, \"v_hoyQ36EH1a8\": {\"duration\": 98.24000000000001, \"timestamps\": [[0, 16.7], [16.7, 29.96], [25.05, 30.95], [29.96, 48.63], [48.63, 98.24]], \"sentences\": [\"people are in riding horses around a barn.\", \" woman is standing talking to the people that are riding the horses.\", \" women riding horses are jumping above obstacles on the barn.\", \" man is going out of the barn holding a horse and practicing riding on the horse.\", \" woman sitting on a horse is talking to the camera and is riding the horse doing tricks on the barn.\"]}, \"v_BSKolF3MMe4\": {\"duration\": 178.05, \"timestamps\": [[0, 52.53], [52.53, 95.26], [95.26, 121.07], [121.07, 178.05]], \"sentences\": [\"Leaves are blown down a path by a leaf blower.\", \" The leaf blower follows a down hill path through the trees.\", \" The camera pans back to show the cleared path.\", \" The camera pans back again to show the cleared path and continues leaf blowing on a never ending path.\"]}, \"v_kbdBKIWKOWk\": {\"duration\": 52.98, \"timestamps\": [[0, 52.98], [2.38, 37.88], [33.91, 52.98]], \"sentences\": [\"The man on stage is dancing, then he step on small step.\", \" As the man step on the the blue platform he also dance.\", \" The camera shows the people dancing on the ground.\"]}, \"v_Zw4illqWzFI\": {\"duration\": 24.59, \"timestamps\": [[0, 24.59], [2.58, 8.98], [11.07, 19.67]], \"sentences\": [\"People gamble in a casino on front a man wearing white shirt.\", \" The person on front picks up the poker cards while talking.\", \" Two men put tokens on the squares of the table.\"]}, \"v_fs8yU4pBNm4\": {\"duration\": 21.5, \"timestamps\": [[0, 10.32], [1.18, 10.43], [10.43, 17.74], [17.74, 21.39]], \"sentences\": [\"There is a classroom with children of about junior high age, and two boys are holding up another boy.\", \" They look as though they are fighting but the boy being held is laughing.\", \" Then the two boys holding him pick him up and lay him backwards on a table.\", \" Then the boy is seen getting down from the table.\"]}, \"v_i_tMiGS11fs\": {\"duration\": 156.25, \"timestamps\": [[2.34, 156.25], [21.09, 156.25], [29.69, 156.25], [63.28, 156.25]], \"sentences\": [\"To people stand in a gym.\", \" Several people hold swords and are fencing.\", \" They are all wearing special outfits.\", \" They talk and practice positions.\"]}, \"v_kZB7yxzHOrA\": {\"duration\": 150.28, \"timestamps\": [[0, 129.24], [129.24, 134.5], [135.25, 150.28]], \"sentences\": [\"A number of scenes of various women diving into pools from various angles and in various locations are shown, usually with an audience in the background.\", \" A number of costumed individuals are shown.\", \" Several scenes of the costumed individuals diving into a pool are shown.\"]}, \"v_yBL1hCKmX7s\": {\"duration\": 15.47, \"timestamps\": [[0, 6.57], [6.19, 11.6], [9.43, 15.47]], \"sentences\": [\"A man is standing on a track.\", \" He runs down the track and throws a javelin onto the field in front of him.\", \" People are standing next to the field.\"]}, \"v_hIJ6VTEKji8\": {\"duration\": 17.65, \"timestamps\": [[0, 5.65], [4.85, 11.82], [10.32, 17.65]], \"sentences\": [\"a girl is standing on a side walk.\", \" the girl runs towards some chalked letters on the ground.\", \" the girl begins to hopscotch.\"]}, \"v_yZErFOSkogc\": {\"duration\": 92.21000000000001, \"timestamps\": [[0, 19.36], [22.13, 58.55], [61.32, 92.21]], \"sentences\": [\"A man and woman are scuba diving in the ocean.\", \" the guide is helping the woman swim through the water.\", \" She is exploring the bottom of the sea, looking at plants and fish.\"]}, \"v_75xhANnCOEg\": {\"duration\": 137.97, \"timestamps\": [[0, 3.45], [4.14, 137.28], [137.28, 137.97]], \"sentences\": [\"A grey screen appears with black letters about the video about a Dojo.\", \"  While a song plays there are still pictures with children practicing as well as video of the instructor and a girl practicing kicks.\", \"  Then a black screen appears.\"]}, \"v_XDOtHC4E6L8\": {\"duration\": 89.56, \"timestamps\": [[0, 89.56], [0, 9.85], [10.3, 89.56], [68.96, 81.95], [83.29, 89.56]], \"sentences\": [\"A gymnast is practicing on the parallel bars in the gym.\", \"  He practices with pads on the bars.\", \"  He practices on bars with no pads.\", \"  He practices on how to dismount.\", \" He practices with pads draped over the bars.\"]}, \"v_cLTDcBhgRw8\": {\"duration\": 30.07, \"timestamps\": [[0, 1.8], [1.8, 9.02], [9.02, 30.07]], \"sentences\": [\"A man on power stilts is sitting on a park bench.\", \" He gets up from the park bench and starts to walk down a path.\", \" He then proceeds to start running down the path until he reaches a poem where he stops.\"]}, \"v_jDeBuorU4hY\": {\"duration\": 123.51, \"timestamps\": [[0, 12.97], [22.85, 44.46], [56.81, 123.51]], \"sentences\": [\"The interior of an ice rink is shown.\", \" It is shown from several angles with silhouettes.\", \" People are shown gathered to play a game of curling.\"]}, \"v_rRSTE1EsAUM\": {\"duration\": 81.67, \"timestamps\": [[0, 8.17], [11.84, 49], [53.9, 81.67]], \"sentences\": [\"A group of kids are on a track by the field.\", \" They pose for pictures before jumping onto a table.\", \" They then sit on the track for pictures again.\"]}, \"v_FTmGHtBdWi0\": {\"duration\": 123.18, \"timestamps\": [[0, 15.4], [16.63, 75.14], [83.76, 123.18]], \"sentences\": [\"Two men meet in a booth and sit down.\", \" They begin a game of arm wrestling.\", \" They push and pull until there is a winner.\"]}, \"v_VFqkLp5mzBM\": {\"duration\": 79.16, \"timestamps\": [[0, 5.15], [5.54, 19.79], [20.58, 50.66], [51.06, 69.66], [74.01, 79.16]], \"sentences\": [\"A man in a red shirt is talking in front of a screen.\", \" Then a field is shown and various shots of different people.\", \" There is a polo match with horses.\", \" Then some men are on stage and receive a trophy and a man talks behind a podium.\", \" At the end the scene cuts back to the man in the red shirt.\"]}, \"v_gN8F0o1baAo\": {\"duration\": 23.66, \"timestamps\": [[0.24, 18.93], [4.14, 18.93], [10.29, 23.66]], \"sentences\": [\"A man is seen pushing a lawn mower around the yard.\", \" A small child follows behind the man with a toy lawn mower.\", \" They two continue riding along the lawn past one another.\"]}, \"v_TnvAN5iwpIw\": {\"duration\": 93.5, \"timestamps\": [[0, 23.37], [23.84, 52.83], [52.83, 79], [79.94, 93.5]], \"sentences\": [\"A green title page appears,with words showing that the video will be of a tenor saxophone player as well as the website to receive to lessons.\", \"A black male then appears with a green sweater and black hat playing the sax.\", \"The man then lays the instrument across his lap and begins talking about what he is doing.\", \"After,the guy plays some more before finally stopping to talk again.\"]}, \"v_SvDnZ47J37U\": {\"duration\": 55.13, \"timestamps\": [[0, 55.13], [22.88, 48.51], [54.3, 55.13]], \"sentences\": [\"women team are on a alrge green field playing hurling.\", \" dog is running in a field and sits on the court, the dog lay down on the court and a woman grab it from the floor and gives him to a man to take him out the field.\", \"referee wearing yellow shirt is doing gestures.\"]}, \"v_kTf-Id-lWX8\": {\"duration\": 66.06, \"timestamps\": [[0, 12.55], [12.55, 38.98], [36.33, 66.06]], \"sentences\": [\"two people stand opposite each other on a shuffle board.\", \" one person pushes a disc toward the other person.\", \" they each take turns playing.\"]}, \"v_o67-Z8n-jEE\": {\"duration\": 177.03, \"timestamps\": [[0, 3.54], [4.43, 21.24], [22.13, 78.78], [79.66, 165.52], [166.41, 177.03]], \"sentences\": [\"The \\\"monkeysee com\\\" logo appears with \\\"See how the experts do it.\", \"\\\" A man sits in an orange painted bathroom with arm on a bathroom vanity and speaks to the camera.\", \" He shows two different cleaners.\", \"  He sprays the sink, toilet and shower and wipes them down.\", \" The logo returns with terms and conditions.\"]}, \"v_CzyMYAvKE2E\": {\"duration\": 44.26, \"timestamps\": [[0, 3.32], [3.32, 11.29], [11.29, 29.43], [29.65, 44.26]], \"sentences\": [\"A pumpkin is spinning around on a table and then stops.\", \" Then a knife cuts off the top of the pumpkin seemingly on its own with no person holding it.\", \" The knife then cuts out a Halloween pumpkin face on the pumpkin and the insides come out of its mouth.\", \" The top is placed back on the pumpkin and it now glows from the inside, the lights go out while it is glowing and it says \\\"Happy Halloween\\\".\"]}, \"v_5QbiJmDyoM0\": {\"duration\": 97.69, \"timestamps\": [[0, 10.26], [12.7, 57.64], [62.03, 97.69]], \"sentences\": [\"A female gymnast mounts a beam in a gym.\", \" She does several flips and springs across the beam.\", \" She then dismounts and raises her arms.\"]}, \"v_shGGt9TRlkk\": {\"duration\": 37.18, \"timestamps\": [[0, 19.15], [0, 2.97], [20.82, 37.18]], \"sentences\": [\"People are sitting on kayaks on the land.\", \" A woman is eating a sandwich sitting on the front of the canoe.\", \" A man is walking into the waves of the water.\"]}, \"v_oyLTgy93soQ\": {\"duration\": 42.15, \"timestamps\": [[0, 42.15], [3.37, 16.86], [20.02, 31.82], [28.66, 42.15]], \"sentences\": [\"A women is outside wearing a jersey.\", \" She throws a ball across a lawn.\", \" They measure the distance to the ball.\", \" Several other athletes are sitting around.\"]}, \"v_LBh2kEwx2cQ\": {\"duration\": 146.22, \"timestamps\": [[13.16, 45.33], [111.86, 122.09], [142.56, 146.22]], \"sentences\": [\"Man starts scraping grout around on the floor.\", \"  Man scraps off the excess grout.\", \"  Man looks toward the countertop.\"]}, \"v_tzwIHzuzG9c\": {\"duration\": 24.57, \"timestamps\": [[0, 4.54], [5.9, 15.48], [15.72, 24.57]], \"sentences\": [\"a man is sitting in a barber chair.\", \" a barber cuts the man hair with clippers.\", \" the men both laugh and talk during the hair cut.\"]}, \"v_JUfowIpmwaE\": {\"duration\": 187.82, \"timestamps\": [[0, 142.74], [138.05, 142.74], [177.49, 187.82]], \"sentences\": [\"A person is kite boarding in the water.\", \" They are doing jumps in the water and fall onto their side.\", \" A kite boarder jumps in the water.\"]}, \"v_bnQVFmXUx_U\": {\"duration\": 131.01, \"timestamps\": [[0, 18.34], [18.34, 48.47], [48.47, 81.88], [81.22, 113.32], [113.98, 131.01]], \"sentences\": [\"A person sitting down at a wooden table grabs a black piece of square cloth and begins placing objects on it.\", \"After,a brown suede shoe appears and the man begins cleaning it with a small white brick.\", \"Next,he grabs a smaller wooden brush,dips it into some liquid in a cap and cleans the boot.\", \"When all of the lather is gone,the process continues until the boot is finally dry.\", \"Lastly,the boot is then brushed and the laces are added in for a complete finish.\"]}, \"v_BSdXxBOJ12A\": {\"duration\": 238.01, \"timestamps\": [[0, 238.01], [30.94, 238.01], [70.21, 238.01]], \"sentences\": [\"female field hockey teams are playing against each other in a tournament.\", \"there are many different girl teams being shown in many different games and fields.\", \"No team score at shoot on the other team in any of the games that are being shown from year to year.\"]}, \"v_xoSA8_kTiBY\": {\"duration\": 82.55, \"timestamps\": [[0, 5.78], [5.78, 76.77], [16.51, 60.26], [76.77, 82.55]], \"sentences\": [\"A woman introduces a video about a workout routine that she will perform.\", \" Is Sean teaching a spin class several participants they spin along with her.\", \" He is also shown performing several core-strengthening exercises on the floor.\", \" The video ends with the closing credit shown on the screen.\"]}, \"v_Wy0u0amd4Ko\": {\"duration\": 60.67, \"timestamps\": [[0, 60.67], [27.3, 27.61], [43.99, 45.2]], \"sentences\": [\"Two people are in a room playing wall ball.\", \" A man in a yellow shirt swings his racket and hits the ball.\", \" A boy in a white shirt swings his racket and hits the ball.\"]}, \"v_WNd6SHMi30M\": {\"duration\": 51.2, \"timestamps\": [[0, 14.08], [14.59, 35.07], [35.07, 51.2]], \"sentences\": [\"An old red car is shown in front of a Bubble Boy car wash and people are seen washing vehicles.\", \"The other side of the building appears with large words across it saying Details and the workers begin waxing the cars and cleaning underneath the hood.\", \"When complete,a few words come across the screen with the business' location and their logo.\"]}, \"v_ku65ME0vW8s\": {\"duration\": 32.76, \"timestamps\": [[0, 12.45], [12.61, 27.52], [27.19, 32.76]], \"sentences\": [\"A boy is crossing the monkey bars.\", \" He gets to the end and goes back the other way.\", \" He lands on the black playground and walks up the stairs.\"]}, \"v_cIKAwgMLKw4\": {\"duration\": 98.97999999999999, \"timestamps\": [[0, 22.27], [18.81, 73.74], [68.29, 98.98]], \"sentences\": [\"a woman stands under a tree next to a beach.\", \" the woman picks up a bottle and pours the contents into her hands.\", \" the woman then begins shaving under her arms.\"]}, \"v_tJ2xOG_EWOg\": {\"duration\": 216.67000000000002, \"timestamps\": [[0, 23.83], [23.83, 141.92], [141.92, 188.5], [188.5, 216.67]], \"sentences\": [\"men is peeling a pumpkin on top of a white table.\", \"man is doing a face with a knife on the pumpkin.\", \" the man grabs a brush and paints the pumkin with black and red paint.\", \" the man walks and connect lights inside a pumpkin.\"]}, \"v_jM3Buw2Kidk\": {\"duration\": 124.18, \"timestamps\": [[0, 124.18], [0, 123.56], [23.59, 56.5], [56.5, 124.18]], \"sentences\": [\"man is in ocean windsurfing in a large board.\", \" man wearing a black suit is in sea doing windsurf.\", \" the man falls in the sea and is just floating on the board.\", \"the man is elevating the sail to stand again.\"]}, \"v_m9CbLJdYqHw\": {\"duration\": 43.0, \"timestamps\": [[0.86, 11.83], [12.26, 29.24], [27.09, 41.93]], \"sentences\": [\"A woman is seen kneeling on the floor on a mat.\", \" She speaks to the camera and moves her arms up and down.\", \" She continues to move her arms up and down.\"]}, \"v_6Ni6csyQbzw\": {\"duration\": 73.99, \"timestamps\": [[0, 22.94], [22.94, 73.99], [0, 73.99], [65.85, 73.99]], \"sentences\": [\"men are in a line in a bycicle in a competition.\", \" men start the competition and are driving in a dusty path.\", \" a parking lot with a lot of cars parked are on side of the path on a road.\", \" when men gets to the end people are waiting for them holding signs.\"]}, \"v_f6wAW0Jv2Eo\": {\"duration\": 223.6, \"timestamps\": [[0, 51.43], [52.55, 154.28], [137.51, 215.77]], \"sentences\": [\"A man is seen standing by the water as well as one grabbing items out of a car and food being cooked.\", \" People walk around with kayaks, look onto the water, and lead into them riding down the river.\", \" More clips are shown of people riding in kayaks down the river as others watch.\"]}, \"v_eyBSKNXo6Vo\": {\"duration\": 124.75, \"timestamps\": [[0, 13.1], [13.1, 24.95], [25.57, 37.43], [37.43, 83.58], [83.58, 124.75]], \"sentences\": [\"A pro skier instructs young children on how to water ski.\", \" Clips of a young boy and young girl playing in the shallow water.\", \" the young boy gets fitted for a pair of water skis on home patio.\", \" the young boy is pulled by the water ski instructor while on different types of floating devices.\", \" the child is then pulled behind a boat while on water skis.\"]}, \"v_1cU8sp05Bu0\": {\"duration\": 64.81, \"timestamps\": [[4.54, 11.02], [11.67, 52.82], [52.82, 56.06]], \"sentences\": [\"Cars pass the streets of a city.\", \" A man person plays tam-tams in a music store while smiling.\", \" Then, the mans stop playing the tam-tams.\"]}, \"v_B1DNoole3Wo\": {\"duration\": 93.41, \"timestamps\": [[0, 12.14], [17.75, 55.11], [78, 93.41]], \"sentences\": [\"A little girl walks out of a house talking.\", \" Her mom is smoking a cigarette in the background.\", \" The girl is shown through the years becoming sick because of her mother's smoking.\"]}, \"v_H1cKUnazzFM\": {\"duration\": 30.4, \"timestamps\": [[0, 30.4], [1.98, 21.73], [21.58, 30.4]], \"sentences\": [\"A man in a white shirt is standing on a field.\", \" He picks up a ball attached to a rope and swings it around.\", \" He throws it onto the field in front of him.\"]}, \"v_O0KUnuhLwj0\": {\"duration\": 112.18, \"timestamps\": [[0, 20.19], [23.56, 62.26], [79.08, 112.18]], \"sentences\": [\"A man is talking while holding a pack of cigarettes.\", \" He shows a lighter, and lights a cigarette.\", \" He then sits and smokes it quietly.\"]}, \"v_-lEsnrNNZFU\": {\"duration\": 102.08, \"timestamps\": [[0, 40.32], [40.32, 52.06], [52.57, 102.08]], \"sentences\": [\"men are in stage doing a coreographyjumping the rope.\", \" men are jumping in stage and stumbles on the ropes.\", \" the men keeps jumping the rope going faster and standing in stage.\"]}, \"v_PwOMgya8qYI\": {\"duration\": 152.11, \"timestamps\": [[0, 30.42], [38.79, 108], [117.13, 152.11]], \"sentences\": [\"a woman is walking while carrying hula hoops.\", \" she stretches before her performance outdoors.\", \" She then demonstrates how to perform using the hula hoops.\"]}, \"v_DZBu_U_Jt4c\": {\"duration\": 26.15, \"timestamps\": [[0, 4.84], [1.31, 26.15], [8.11, 26.15]], \"sentences\": [\"A woman is looking at her cell phone.\", \" A woman is dancing behind a blackjack table.\", \" A man is sitting in a chair at the table dancing.\"]}, \"v_VAG6ECk5WYo\": {\"duration\": 214.44, \"timestamps\": [[7.51, 182.27], [68.62, 80.41], [209.08, 214.44]], \"sentences\": [\"People are playing curling on ice.\", \" Two people are scrubbing the ice in front of the curling ball.\", \" They pose for a picture at the end.\"]}, \"v_-faeAVsbBG0\": {\"duration\": 85.78, \"timestamps\": [[0, 85.35], [19.3, 63.04], [81.92, 85.78]], \"sentences\": [\"A group does a step exercise class.\", \"  A bunch of other people look confused.\", \"  The main woman stops at the end and walks towards the camera.\"]}, \"v_zN9COeDCm9Q\": {\"duration\": 209.35, \"timestamps\": [[0, 25.12], [28.26, 69.09], [103.63, 209.35]], \"sentences\": [\"Skiers are going down a snow covered mountain.\", \" They hold a spear as they glide down hill.\", \" The spear is attached to a rope that makes them move more quickly.\"]}, \"v_XvM1rCVQWWY\": {\"duration\": 107.97, \"timestamps\": [[0, 15.12], [22.67, 63.16], [73.96, 107.97]], \"sentences\": [\"A man is kneeling on the ground beside a railing.\", \" He lays down several plastic sheets.\", \" He then rolls over the sheets, sealing them.\"]}, \"v_sMITf5WBIxM\": {\"duration\": 158.45, \"timestamps\": [[0.79, 144.98], [0.79, 17.43], [17.43, 48.33], [48.33, 145.78]], \"sentences\": [\"A woman has her hair washed and styled in a salon by a hair dresser in a black smock.\", \"    A hairdresser talks to the camera before beginning to wash a customers hair who is sitting in a beauty parlor chair and then at a sink while the hair is being washed.\", \"  The woman then combs the customers hair with a blow dryer comb combo.\", \"   The hairdresser than straightens the customers hair, section by section, until the final hair style is revealed.\"]}, \"v_ooCciCGrdcA\": {\"duration\": 183.79, \"timestamps\": [[0, 183.79], [51.46, 64.33], [65.24, 83.62], [126.81, 150.7]], \"sentences\": [\"People play games of badminton on indoor courts.\", \" The players have a long volley until the play in the foreground misses and the birdie lands at her feet.\", \" The players volley and the birdie is hit out of view and the player retrieves it then serves.\", \" The players volley and the play is pressed to the back of the court hitting long shots.\"]}, \"v__jxpaVW4_cE\": {\"duration\": 126.2, \"timestamps\": [[0, 23.35], [25.24, 87.08], [92.76, 126.2]], \"sentences\": [\"A woman is holding onto a camel.\", \" A group of kids climb on the back of the animal.\", \" They wave, riding the camel around the enclosure.\"]}, \"v_656VWQU5dgE\": {\"duration\": 91.74, \"timestamps\": [[0, 64.22], [64.22, 67.43], [67.43, 88.07]], \"sentences\": [\"Scenes of groups of people engaging in various forms of sport and exercise are shown.\", \" Scenes of a group of people engaging in sort sort of table game is shown.\", \" More scenes of people engaging in sport and exercise are shown.\"]}, \"v_9IvKkq9k81o\": {\"duration\": 49.44, \"timestamps\": [[0, 10.63], [14.83, 35.84], [31.39, 48.94]], \"sentences\": [\"A man is seen sitting in a chair carving a pumpkin.\", \" The man pushes a knife along the pumpkin.\", \" He looks to the camera and continues cutting.\"]}, \"v_fdHpRUOSi28\": {\"duration\": 78.53, \"timestamps\": [[0, 21.6], [19.24, 58.11], [50.26, 76.57]], \"sentences\": [\"A person is seen holding a cat and a pair of clippers.\", \" The person begins cutting the cat's claws while the cat squirms around.\", \" He continues cutting and lets the cat down in the end.\"]}, \"v_xqI9M6QiHws\": {\"duration\": 162.98, \"timestamps\": [[0, 162.98], [15.48, 47.26], [44, 63.56], [60.3, 84.75], [81.49, 109.2], [106.75, 130.38], [127.94, 162.98]], \"sentences\": [\"There's a woman dressed in a maroon shirt standing in her kitchen doing a tutorial on how to make red velvet cupcakes.\", \" She begins by beating some eggs in a large bowl.\", \" Then she adds some sugar, flour and red food coloring to the mixture.\", \" She then pours the mixture into a white mug and then heats it to solidify and cook it.\", \" Then she takes some cream cheese in a bowl and adds some sugar to it to make a butter cream frosting.\", \" She then puts the frosting on the red velvet cupcake and decorates it with colorful sprinkles on top.\", \" She takes a fork to take a bite off of the cupcake and eats a piece as she signs off from the tutorial.\"]}, \"v_coEvniePQLA\": {\"duration\": 143.5, \"timestamps\": [[0, 12.2], [14.35, 43.77], [37.31, 93.28], [86.82, 143.5]], \"sentences\": [\"slices of mangos and lemons are shown.\", \" a woman then cuts mangos and lemons.\", \" the woman places the fruit on a plate.\", \" the woman then begins juicing the mangos and lemons.\"]}, \"v_f3YyN44Dx8M\": {\"duration\": 128.08, \"timestamps\": [[0, 11.53], [12.81, 32.66], [32.66, 33.94], [35.22, 128.08]], \"sentences\": [\"A man in a black shirt is juggling red frisbees.\", \" A small white and black dog is running around the man catching the frisbees being thrown by the man.\", \" The man lays on his back and the dog jumps over him.\", \" The man continues to do tricks with the dog.\"]}, \"v_PmeBYO3ARvk\": {\"duration\": 93.88, \"timestamps\": [[0, 14.55], [14.55, 65.25], [67.12, 93.88]], \"sentences\": [\"A girl is standing inside a gym.\", \" She twirls a baton repetitively over her shoulder to the other hand.\", \" Then she does several dance moves with the baton.\"]}, \"v_-wXbBZDSIa8\": {\"duration\": 25.26, \"timestamps\": [[0, 1.64], [1.52, 14.27], [14.15, 17.18], [17.05, 17.68]], \"sentences\": [\"A man is laying down on a wrestling ring.\", \" He stands up and picks up another man.\", \" The man flips the other man over and he lands on his back.\", \" The ref taps on the mat when he gets pinned.\"]}, \"v_EwEV5_sHGJk\": {\"duration\": 204.07999999999998, \"timestamps\": [[0, 42.86], [55.1, 142.86], [168.37, 204.08]], \"sentences\": [\"A woman is lying out materials on a board.\", \" She cuts them to fit the pattern she is seeking.\", \" She explains what she is doing in several steps.\"]}, \"v_GaIvG8u1tzo\": {\"duration\": 122.96, \"timestamps\": [[0, 37.5], [36.27, 81.77], [78.08, 118.04]], \"sentences\": [\"A woman is seen laying on a table while a man makes a mark on her face.\", \" The man then begins piercing her ear and speaking to the camera.\", \" He finishes the piercing and shows it to the camera.\"]}, \"v_-NM-0NZXRNw\": {\"duration\": 201.18, \"timestamps\": [[6.04, 66.39], [66.39, 117.69], [117.69, 136.8], [137.81, 175.02], [176.03, 195.14]], \"sentences\": [\"Teams compete shooting using plastic guns.\", \" The teams compete shooting while covered behind inflated protectors.\", \" Men run to cover behind the protectors while shooting.\", \" A group of men jumps and celebrates, then people continue shooting.\", \" After, the winners receive a trophy in the podium.\"]}, \"v_uJ_QCxMDfag\": {\"duration\": 29.63, \"timestamps\": [[0, 7.56], [7.26, 20.74], [25.04, 26.96]], \"sentences\": [\"A man is pushing a lawn mower through grass.\", \" Another man is standing in the drive way watching him.\", \" The man pushing the lawn mower waves at the camera.\"]}, \"v_pRkJ_9zq16A\": {\"duration\": 63.37, \"timestamps\": [[0, 7.6], [12.36, 41.82], [42.46, 63.37]], \"sentences\": [\"A group of players are on a basketball court.\", \" They are kicking around a ball in a game of indoor soccer.\", \" They try to get the ball into the goal.\"]}, \"v_s_QH-5G33Fw\": {\"duration\": 158.9, \"timestamps\": [[0, 19.07], [20.66, 104.08], [118.38, 158.9]], \"sentences\": [\"A man and woman are facing off on a beach.\", \" They engage in a game of volleyball.\", \" They hit a ball back and forth over a net.\"]}, \"v_7X3wPRKuAsU\": {\"duration\": 91.39, \"timestamps\": [[0, 27.42], [1.37, 30.16], [45.24, 69.46], [80.43, 91.39]], \"sentences\": [\"A pitcher throws a ball which is hit and fielded by the pitcher.\", \" The pitcher recovers the ball and throws it hitting the batter.\", \" A pitcher pitches a ball which strikes the batter and is not hit.\", \" The coaches hold the ball and discuss the game.\"]}, \"v_pCUun9uE3h8\": {\"duration\": 81.36, \"timestamps\": [[0, 18.71], [21.56, 58.99], [52.07, 81.36]], \"sentences\": [\"A marching band is seen walking down the street with people watching.\", \" More people walk past the people marching.\", \" The group continues marching and playing instruments.\"]}, \"v_QOMvNgo6CQ4\": {\"duration\": 47.13, \"timestamps\": [[0.71, 40.06], [6.83, 40.06], [25.45, 47.13]], \"sentences\": [\"A small child is seen kneeling on the ground with a man sitting in front of him.\", \" The boy begins shining down the shoes of the man.\", \" The boy continues cleaning off the shoes.\"]}, \"v_HLZLkI1NYAs\": {\"duration\": 66.25, \"timestamps\": [[10.93, 11.92], [18.88, 58.3], [56.31, 58.3]], \"sentences\": [\"A woman is holding a tray of drinks.\", \" A man bowls several balls down a lane.\", \" He knocks over the pins on the lane.\"]}, \"v_uIOIcv5MhuA\": {\"duration\": 27.18, \"timestamps\": [[0, 9.51], [9.51, 27.05], [27.05, 27.18]], \"sentences\": [\"A woman laying on the floor takes out a cigarette from a carton.\", \" She lights the cigarette and smokes as the camera gazes over her body.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_J-uW8raljqE\": {\"duration\": 119.37, \"timestamps\": [[0, 11.94], [13.13, 78.19], [84.16, 119.37]], \"sentences\": [\"A man enters a large field with a dog.\", \" He uses a frisbee to teach the dog several tricks.\", \" The dog does tricks to catch the frisbee.\"]}, \"v_f7ndXtwTep0\": {\"duration\": 125.09, \"timestamps\": [[0, 36.27], [51.29, 62.54], [70.05, 73.18]], \"sentences\": [\"Woman scrubs dirty clothes using a brush.\", \"  The woman dips the clothes in clean water.\", \"  Woman squeezes all the extra water out of the clothing.\"]}, \"v_LnDz1rvDaPY\": {\"duration\": 73.99, \"timestamps\": [[0, 23.31], [23.31, 55.12], [55.49, 73.99]], \"sentences\": [\"A woman wearing a hajib stands outside in snowy weather next to a car.\", \" She scrapes the car window off with a small blue scraper.\", \" A man walks up, salutes the camera and finishes the other side of the window as the woman says goodbye to the viewers.\"]}, \"v_TDfWOcKi684\": {\"duration\": 222.15, \"timestamps\": [[0, 27.77], [48.87, 172.16], [175.5, 222.15]], \"sentences\": [\"Several people are gathered on a course.\", \" They are using paintball guns and hiding behind obstacles.\", \" They sneak around to shoot at each other.\"]}, \"v_THOLslLjRqs\": {\"duration\": 150.7, \"timestamps\": [[0, 35.41], [36.17, 111.52], [112.27, 150.7]], \"sentences\": [\"A woman pains a wood box color brown while talking.\", \" The woman stops painting and talks, then she continues painting.\", \" Two kids stands on front  the woman.\"]}, \"v_l5QQ1vVctOo\": {\"duration\": 25.47, \"timestamps\": [[0, 5.99], [4.84, 17.7], [16.18, 25.47]], \"sentences\": [\"a girl holds here left eye open using her right hand.\", \" the girl uses here left hand to put a contact lens in her eye.\", \" the contact lens then falls out of her eye.\"]}, \"v_V35ubrbe8gA\": {\"duration\": 223.56, \"timestamps\": [[0, 46.95], [36.89, 143.08], [171.02, 223.56]], \"sentences\": [\"a man stands in front of a shrub and talks to the camera.\", \" the man begins pruning the shrub.\", \" the man demonstrates different techniques.\"]}, \"v_U7QjLGMeGOo\": {\"duration\": 73.26, \"timestamps\": [[0.73, 70.69], [0.73, 32.23], [32.97, 70.69]], \"sentences\": [\"A group of children at an outdoor Halloween party wait in line with trick or treat bags to play outdoor children's bowling game.\", \"  A little boy in a blue Halloween costume rolls a bowling ball down a blue carpeted bowling alley like run way.\", \"  The boy misses the pens and gets candy instead at which point a little girl in a black and pink tutu rolls the bowling ball instead.\"]}, \"v_X0UmqVLOAK0\": {\"duration\": 12.1, \"timestamps\": [[0, 1.27], [1.57, 7.2], [6.77, 12.1]], \"sentences\": [\"a man stands behind a fence on a field.\", \" the man stretches his arms and legs.\", \" the man spins around a few times then comes to a stop.\"]}, \"v_UcI4miTi0Cg\": {\"duration\": 74.3, \"timestamps\": [[0, 10.77], [14.12, 54.24], [55.73, 74.3]], \"sentences\": [\"A game is shown in progress on a field.\", \" Several players are chasing a white ball.\", \" They try to the hit the ball with their head and feet.\"]}, \"v__8HTgaTPFRo\": {\"duration\": 83.71000000000001, \"timestamps\": [[0, 21.76], [21.76, 83.71], [0, 83.71]], \"sentences\": [\"man is sitting in front of a chair and is talking in front of a camera.\", \" man is washing a contac lens and opens the eye and with the index finger put it on the right eye.\", \" man is sitting in front of a table showing how to put contact lenses.\"]}, \"v_qmlohhdz784\": {\"duration\": 180.7, \"timestamps\": [[0, 17.17], [51.5, 122.87], [140.04, 180.7]], \"sentences\": [\"A group of men walk around in an indoor court.\", \" They use racquets to hit a ball against a wall.\", \" They are engaged in a game of racquetball.\"]}, \"v_wd7W8NTi_58\": {\"duration\": 97.00999999999999, \"timestamps\": [[0, 26.68], [22.8, 70.33], [66.94, 94.59]], \"sentences\": [\"A close up of paper is shown followed by a person riding down a river in a kayak.\", \" More people are seen riding down while others watch on the side.\", \" Men sit down and speak to one another.\"]}, \"v_Ovtfld_ZyCs\": {\"duration\": 220.47, \"timestamps\": [[0, 220.47], [11.02, 56.22], [56.22, 220.47]], \"sentences\": [\"This video teaches viewers how to do a 90s handspin.\", \" He recommends that you do this on a nice hardwood floor so you don't hurt yourself on something soft.\", \" He also explains which hand to use to get started and to remember what part of the hand you're using to spin and how to keep your body in the air.\"]}, \"v_eH8PT9fzbqU\": {\"duration\": 26.31, \"timestamps\": [[0, 10.13], [10.13, 15.92], [15.92, 26.31]], \"sentences\": [\"A boy in a white shirt walks on to a field.\", \" The boy swings his arms in preparation of throwing a shotput.\", \" The boy then throws the shotput.\"]}, \"v_fKy5rh-SoTM\": {\"duration\": 105.68, \"timestamps\": [[0, 20.61], [0, 42.8], [0, 105.68]], \"sentences\": [\"man is standing in front of a pool table playing.\", \" man is holding a camera sitting on a chair watching the games.\", \" in the background people are walking or watching the game.\"]}, \"v_jNPOEMYJlgc\": {\"duration\": 79.67, \"timestamps\": [[0, 8.37], [12.75, 43.02], [45.01, 79.67]], \"sentences\": [\"A boy is seated in front of a table.\", \" He is trying to solve a rubik's cube.\", \" He spins and turns the color blocks, trying to figure out how to solve it.\"]}, \"v_pe0MhPhhVIk\": {\"duration\": 52.29, \"timestamps\": [[0, 1.31], [1.31, 7.32], [7.58, 20.92], [20.92, 52.29]], \"sentences\": [\"Two teams play doubles badminton in a gymnasium.\", \" A player wearing a striped shirt hits the ball over the net and returns a hard winning shot at the player wearing a yellow shirt.\", \" The player wearing a striped shirt serves a low shot and a player wearing a red shirt returns the ball.\", \" A series of play continues back and forth between the two teams.\"]}, \"v_fykq7xuc3zk\": {\"duration\": 6.06, \"timestamps\": [[0, 1], [1.12, 4.39], [4.49, 6.06]], \"sentences\": [\"A man runs down a diving board.\", \" He bounces on the board a couple of times.\", \" Then he jumps into the swimming pool.\"]}, \"v_V1IHwwpyFUE\": {\"duration\": 134.19, \"timestamps\": [[0, 29.52], [30.86, 101.31], [93.26, 125.47]], \"sentences\": [\"A close up of a house is shown with a girl walking into frame.\", \" The girl kicks a ball when another boy runs in and out of frame as well as other children.\", \" The girl continues running around with the ball as well as in and out of frame.\"]}, \"v_JMlNfZlOyX8\": {\"duration\": 121.84, \"timestamps\": [[0, 18.88], [18.28, 90.16], [90.77, 121.84]], \"sentences\": [\"Two young girls appear in the bathroom,one has a green headband around her forehead and the other has paint across her face.\", \"Both of the girls are laughing and joking with one another until they start to wash their face and clean it with green rags.\", \"After rinsing their face,they both dry their face off with a towel that is hanging down from the door and come back to the camera to show pure faces.\"]}, \"v_OMq736aZeV8\": {\"duration\": 181.4, \"timestamps\": [[0, 26.3], [27.21, 104.3], [115.19, 181.4]], \"sentences\": [\"A man is riding a kayak into the ocean.\", \" He uses his paddles to turn and navigate.\", \" He continues through crags and spaces in the cliffs.\"]}, \"v_Hy8WbkpvUlA\": {\"duration\": 220.17000000000002, \"timestamps\": [[11.01, 213.57], [136.51, 213.57], [210.26, 213.57]], \"sentences\": [\"A boy is kneeling down cleaning his snow board.\", \" He scrubs the bottom of the snowboard with a yellow sponge.\", \" A man stands behind him dancing.\"]}, \"v_oVPFTkC4-Lc\": {\"duration\": 70.33, \"timestamps\": [[0, 10.55], [6.33, 18.64], [10.2, 23.21], [20.75, 70.33]], \"sentences\": [\"Two girls dance around a room.\", \" One is mopping as she dances.\", \" The other climbs a ladder.\", \" The girl dances backwards cleaning the floor.\"]}, \"v_HW9SFCj0dVU\": {\"duration\": 187.55, \"timestamps\": [[0, 106.9], [106.9, 187.55], [0, 46.89]], \"sentences\": [\"an is sitting in the woods holding a rock and a knife and is peeling the rock in a white paper.\", \" the man turn on fie and put it on a bowl.\", \" other men are standing behind the man sitting.\"]}, \"v_4R0fSNCWUo0\": {\"duration\": 155.18, \"timestamps\": [[0, 6.21], [29.48, 89.23], [91.56, 155.18]], \"sentences\": [\"A girl is talking in front of a cement wall.\", \" She then starts playing a saxophone.\", \" She continues playing as people walk by.\"]}, \"v_iUMDlxU14bM\": {\"duration\": 134.19, \"timestamps\": [[0, 26.17], [31.53, 93.26], [94.6, 134.19]], \"sentences\": [\"a man is walking a child on the back of a camel.\", \" A group plays and sings on the stage.\", \" the man is then seen pulling the camel through a parking lot.\"]}, \"v_pIk_bbjCNDo\": {\"duration\": 22.27, \"timestamps\": [[1.22, 22.27], [17.26, 22.05], [20.15, 22.27]], \"sentences\": [\"A woman and monkey brush their teeth.\", \"  The woman spits out.\", \"  Then she takes the monkey's toothbrush.\"]}, \"v_m5NK0eErs90\": {\"duration\": 75.81, \"timestamps\": [[0, 75.81], [2.65, 75.81], [10.99, 75.81], [25.02, 75.81]], \"sentences\": [\"Several people are swimming in a pool.\", \" They are all wearing protective caps.\", \" They are throwing a ball around the pool.\", \" They try to get it into a goal.\"]}, \"v_2GEZgHcA7zU\": {\"duration\": 99.66, \"timestamps\": [[0, 28.4], [26.41, 65.78], [63.78, 98.17]], \"sentences\": [\"A man is seen standing on the edge of a diving board with his hands up.\", \" Other people dive continuously behind him and leads into him diving.\", \" More people step up to dive off the board and smile to the camera.\"]}, \"v_aotVhoXjqS0\": {\"duration\": 72.49, \"timestamps\": [[0, 72.49], [0, 33.71], [33.71, 72.49]], \"sentences\": [\"The man explains to viewers how to serve and what walls the ball will hit depending on which wall the ball hits first.\", \" Then he hits the ball and it goes the way he said it would.\", \" Then the ball comes back to him somehow and he bounces it and hits it again with the racket sending it into orbit in the room.\"]}, \"v_rRkwB9EcEMs\": {\"duration\": 24.94, \"timestamps\": [[0, 2.37], [2.49, 23.32], [23.44, 24.94]], \"sentences\": [\"A young man is in a small gym.\", \" The man lifts a pair of red weights over his head.\", \"  He completes the lift and drops them on the floor where the bounce.\"]}, \"v_lgB0Ynn38-k\": {\"duration\": 107.09, \"timestamps\": [[0, 107.09], [0, 105.48], [47.12, 60.51]], \"sentences\": [\"people are in a cabin playing beer pong.\", \" people are sitting on chairs or standing playing beer pong.\", \"two men are talking between them and showing a white shirt.\"]}, \"v_x6Gs4PINiiI\": {\"duration\": 157.53, \"timestamps\": [[0, 33.08], [22.84, 111.84], [89.79, 157.53]], \"sentences\": [\"a girl stands on a side walk.\", \" the girl starts hoping through a game of hop scotch.\", \" the girl repeats the game by hoping back and forth.\"]}, \"v_MM2ZYfEWCQo\": {\"duration\": 73.19, \"timestamps\": [[0, 14.27], [25.98, 66.6], [67.7, 73.19]], \"sentences\": [\"A man is putting kindle into a fire pit.\", \" He starts a fire in the fire pit.\", \" A kid stands behind him holding a stick.\"]}, \"v_arnKDX_ToxE\": {\"duration\": 133.05, \"timestamps\": [[0, 6.65], [6.65, 127.73], [127.73, 133.05]], \"sentences\": [\"First, the man introduces himself and then he tells viewers what he is going to show them throughout the video.\", \" Then he starts to walk on the elliptical machine and explains to viewers how accommodating this machine is whether a person is tall, short, skinny or overweight.\", \" In the end, he says his name again and thanks viewers for watching his video.\"]}, \"v_RVHx_Otzcl0\": {\"duration\": 222.89, \"timestamps\": [[0, 81.35], [81.35, 101.41], [102.53, 124.82], [127.05, 222.89]], \"sentences\": [\"A group of dancers perform in a show wearing white costumes.\", \" The dancers lie dawn on the back and extend the hands and the feet, then they applaud with the feet.\", \" The dancer stand and continue dancing.\", \" Then, a person enters the stage and dance, after other dancers join the person.\"]}, \"v_c7HroaL0WDc\": {\"duration\": 143.45, \"timestamps\": [[0, 5.02], [5.02, 13.63], [13.63, 82.49], [82.49, 121.22], [121.22, 143.45]], \"sentences\": [\"A special effect screen appears and it's mainly orange and brown with white thin lines, logos, words and numbers.\", \"Men are now sitting in a black and yellow speedboat that is going very first, and a man is shown wake boarding, flipping and spinning in the air.\", \" A man is now standing in front of the speedboat, talking, and the words on the screen say his name is Trevor Hansen and under his name there are words that say Team Supra Rider, and various clips of the speedboat both out and in it are shown while the man talks and sometimes shows what the interior can do.\", \"A man is wake boarding again, large wakes in the water is shown, and the speedboat is shown driving.\", \" A very elaborate outro begins and it includes logos, company names, special thanks, clips of boats and people on the water, then ends with the website.\"]}, \"v_SL7iKDqir6g\": {\"duration\": 44.14, \"timestamps\": [[2.87, 8.17], [8.17, 12.36], [12.8, 40.39]], \"sentences\": [\"A colander of steaming pasta sits on a counter top.\", \" A woman pours the pasta into a glass bowl.\", \" The woman adds and mixes in oil and spices while talking to the camera.\"]}, \"v_8Da6w-Eg3Ko\": {\"duration\": 226.02, \"timestamps\": [[0, 6.78], [7.91, 91.54], [92.67, 226.02]], \"sentences\": [\"A man starts a chainsaw on the ground.\", \" He hands it to a man on a makeshift platform above him and he starts trimming tall hedges.\", \" The first man is on on a tractor pulling the platform forward so the man on top can cut another area of the hedge.\"]}, \"v_Kkkrap77n5M\": {\"duration\": 37.57, \"timestamps\": [[0, 2.82], [11.08, 18.97], [21.6, 37.57]], \"sentences\": [\"A man and woman are outside in a yard.\", \" They hand off an ax to each other.\", \" The woman uses the ax to split a piece of wood.\"]}, \"v_maHLwXvNN3w\": {\"duration\": 43.89, \"timestamps\": [[0.66, 16.46], [12.51, 30.72], [28.09, 43.23]], \"sentences\": [\"A man is seen pulling a pair of drums closer.\", \" He then begins playing on the drums.\", \" The man continues to play while looking off into the distance.\"]}, \"v_Dl0JNkGbZT4\": {\"duration\": 153.48, \"timestamps\": [[0, 44.51], [48.35, 102.83], [105.14, 150.41]], \"sentences\": [\"A woman is shown sitting in a chair with another women putting a dot on her tongue and her looking into a mirror.\", \" She sits back down and the other woman then pierces her tongue.\", \" She puts the ring in and the girl shows it off the camera.\"]}, \"v_yj2WJBqmEHk\": {\"duration\": 18.88, \"timestamps\": [[0, 18.88], [0.76, 18.88], [14.63, 18.88]], \"sentences\": [\"A person is tubing down a hill.\", \" There is a two little kids in front of them on small tubes.\", \" A person in a red jacket stands at the bottom of the hill.\"]}, \"v_roavmdw1ORo\": {\"duration\": 151.84, \"timestamps\": [[0, 150.32], [5.31, 150.32], [29.61, 150.32], [42.51, 150.32]], \"sentences\": [\"A horse is in a stable.\", \" A woman is standing with it.\", \" She is grooming the horse.\", \" She trims the hair around his ears.\"]}, \"v_-TddN8oBvhQ\": {\"duration\": 107.93, \"timestamps\": [[0, 5.94], [5.94, 29.14], [29.68, 46.95], [46.95, 64.22], [64.22, 90.12], [90.12, 100.37], [100.37, 106.31]], \"sentences\": [\"The kiss tornado 360 blow dryer logo shown.\", \" A long curly haired woman inspecting the blow dryer then drying her hair looking irritated and bored.\", \" She uses the kiss blow dryer with smile on her face, enjoying the moment.\", \" Then it shows the mechanism how the blow dryer works.\", \" The woman continue drying her hair then change the setting and nozzle and continue drying her hair.\", \" The woman turning and smiling and looking satisfied with her hair.\", \" The tornado 360 kiss logo appears again.\"]}, \"v_sIzcPVbn0lg\": {\"duration\": 52.2, \"timestamps\": [[0, 52.2], [12.53, 30.28], [30.28, 52.2]], \"sentences\": [\"A young blonde girl is jumping and dancing in the kitchen.\", \"The girl rubs her nose with her right hand and continues to jump and dance.\", \"The girl stops dancing, looks at the camera, and then continues to dance again and spins once.\"]}, \"v_P7UbKv72LAs\": {\"duration\": 218.06, \"timestamps\": [[0, 218.06], [22.9, 197.34], [76.32, 197.34]], \"sentences\": [\"The man is drinking from a can while he is sitting on the chair, he then rub sunblock on his body.\", \" The man sat down and rub more sunblock on his stomach and back.\", \" The man sat down again and drink his drink in the can.\"]}, \"v_1gp-5iOIfVo\": {\"duration\": 169.68, \"timestamps\": [[0, 35.63], [35.63, 76.36], [77.21, 111.14], [111.14, 156.11], [156.96, 169.68]], \"sentences\": [\"Several individuals are dressed in workout clothes,tying up their shoes,and placing numbers on their shirts.\", \"All of the people meet at the starting line and begin a marathon throughout the city.\", \"As they run,people are on the side of the road encouraging them with water on their tables,signs and clapping for them.\", \"Aside from the people,there are also large red blow ups on the side illustrating the hydration stations.\", \"Finally,a young couple completes the marathon and a still image of them is shown at the end.\"]}, \"v_d7gY7YJ3Fdc\": {\"duration\": 12.35, \"timestamps\": [[0, 6.61], [1.79, 8.46], [8.52, 11.98]], \"sentences\": [\"A person is seen sitting on the couch.\", \" The person then puts one shoe on then the other.\", \" She shows off her shoes to the camera.\"]}, \"v_DAv8CEings8\": {\"duration\": 47.14, \"timestamps\": [[0, 10.84], [9.66, 29.46], [29.7, 47.14]], \"sentences\": [\"a crowd is gathered around a shuffle board.\", \" four people are standing playing shuffleboard.\", \" three people are sitting watching the shuffleboard game.\"]}, \"v_u9ec3Exc5mI\": {\"duration\": 60.58, \"timestamps\": [[0, 22.11], [22.11, 48.77], [48.77, 60.58]], \"sentences\": [\"A little boy hits a pinata with a stick in the back yard while a lady in a brown blouse looks on.\", \" The little boy continues swinging the stick relentlessly at the pinata hoping to get some candy.\", \" The little boy gives up the stick to a man in a blue shirt who gives the stick to a little girl.\"]}, \"v_Eu3QFCldg0s\": {\"duration\": 154.53, \"timestamps\": [[0, 126.71], [54.86, 97.35], [126.71, 149.12]], \"sentences\": [\"A small child walks a dog in various locations.\", \" The small child and dog interact with several other dogs.\", \" The small child releases the dog and walks alone.\"]}, \"v_EpWZ_-hNKKs\": {\"duration\": 32.15, \"timestamps\": [[0, 4.98], [7.88, 21.22], [24.27, 32.15]], \"sentences\": [\"A surfer is riding the waves in the ocean.\", \" He gets on a yellow board and rides over the waves.\", \" He rides the wave all the way to shore.\"]}, \"v_TokZDNwr664\": {\"duration\": 185.71, \"timestamps\": [[0, 185.71], [10.21, 13.93], [15.79, 19.5], [38.07, 59.43], [67.79, 75.21], [143, 160.64]], \"sentences\": [\"People are riding bumper cars at a carnival.\", \" A man in a black cap waves at the camera.\", \" A man and a boy in a red shirt car crash head on with another car.\", \"  The lady with short hair in gray drives past then goes back to the right.\", \" The man in blue and boy in his car crash head on with a girl and the man in a black cap three way crash.\", \" We see a three way crash with one car backwards.\"]}, \"v_CvsFEsXakwo\": {\"duration\": 185.76, \"timestamps\": [[0, 14.86], [14.86, 58.51], [58.51, 130.96], [130.03, 185.76]], \"sentences\": [\"A male is sitting down with a pair of drum sticks in his hand,a long black pony tail and a black shirt is talking to the camera.\", \"The angle of the camera changes and then the guy starts to talk about the high hat.\", \"After,the angle goes back to black and white and he starts making four quarter notes on the instrument before talking about it again.\", \"He then continues the rest of the video in the same manner,with the bass drum following before finally playing the entire trap set.\"]}, \"v_LbS-C68GTX8\": {\"duration\": 164.07, \"timestamps\": [[0, 164.07], [0, 161.61], [4.92, 164.07]], \"sentences\": [\"team are playing dodgeball in a wooden roofed court.\", \" kids are in a gym throwing balls playing dodgeball.\", \" people are in a court roofed gym playing dodgeball.\"]}, \"v_VwmYoF9Rh_8\": {\"duration\": 132.56, \"timestamps\": [[0, 12.59], [12.59, 45.73], [45.73, 83.51], [85.5, 129.91]], \"sentences\": [\"Two men are looking something while the other one is holding some stick and an shallow underwater scene with rocks on it appears.\", \" Bunch of people are getting ready for kayaking, then another man holding a selfie stick to record a video of himself and then his friend while they are in kayak.\", \" Thhe camera is underwater, eventually lifting it to record the vast sea and other kayak riders.\", \" Several people are just in their kayaks, paddling around.\"]}, \"v_eFbZ0_TJLE0\": {\"duration\": 113.42, \"timestamps\": [[0, 38.56], [38, 77.13], [77.13, 96.97], [97.54, 113.42]], \"sentences\": [\"Two little boys dressed in diapers,are pushed onto the stage with two male Sumo wrestlers and begin pushing him around.\", \"The adult sumo wrestlers allows the kids to play with him before pushing them down on the ground and picking them up by their bottoms.\", \"After a short replay,three more kids come into the circle and begin pushing the man and wrestling with him.\", \"The Sumo then grabs each of the boys one by one and tries to stop them but isn't successful because there are too many of them.\"]}, \"v_we6Ddq1ABcQ\": {\"duration\": 68.06, \"timestamps\": [[0, 5.78], [5.78, 20.76], [20.76, 49.68], [49.68, 55.47], [55.47, 68.06]], \"sentences\": [\"A man runs with a ball and throws it to a person holding a stick to hits the ball.\", \" The player runs, and the man grabs a ball from the ground an throws it and runs.\", \" The players gather together and talk.\", \" The man throws the ball and the player hits the ball which return behind the man.\", \" The man takes the ball and throw to another player.\"]}, \"v_JHYMG87h3XI\": {\"duration\": 76.35, \"timestamps\": [[0, 8.78], [6.87, 70.24], [69.09, 72.15]], \"sentences\": [\"A man is in a lake of water.\", \" He holds onto a rope and gets pulled up by a boat on a bar stool.\", \" He lets go of the rope and falls into the water.\"]}, \"v_OwchMqCYaF4\": {\"duration\": 169.34, \"timestamps\": [[0, 11.85], [13.55, 108.38], [91.45, 163.42]], \"sentences\": [\"A large group of cheerleaders are seen performing a stunt and dropping a person.\", \" Several more clips are shown of people falling onto the ground.\", \" The video continues with more clips of people falling down.\"]}, \"v_QHn9KyE-zZo\": {\"duration\": 196.28, \"timestamps\": [[1.96, 21.59], [32.39, 66.73], [83.42, 137.4], [135.43, 187.45]], \"sentences\": [\"A person is seen close up walking on a rope and jumping.\", \" A man speaks to the camera while showing more clips of people walking on a rope.\", \" The men tighten the rope and show more people walking and juggling.\", \" Many people speak to the camera as the people continue to walk and perform tricks on the rope.\"]}, \"v_gdyEfPbUEjw\": {\"duration\": 156.62, \"timestamps\": [[8.61, 153.49], [69.7, 71.26], [74.39, 84.57]], \"sentences\": [\"A man windsurfs on a lake with other windsurfers occasionally entering the frame.\", \" The man performs a trick near another windsurfer.\", \" The trick is repeated in slow motion.\"]}, \"v_4o8MaHTb7E4\": {\"duration\": 188.45, \"timestamps\": [[0.94, 10.36], [9.42, 13.19], [13.19, 16.96], [16.96, 51.82], [51.82, 74.44], [74.44, 111.19], [111.19, 118.73], [119.67, 120.61], [120.61, 148.88], [148.88, 160.19], [160.19, 172.44], [172.44, 187.51]], \"sentences\": [\"A man with red hair makes a long jump in front of an audience.\", \" Several reaction scenes from other people are shown.\", \" The man walks away from the track.\", \" The man's long jump is replayed several times in various speeds.\", \" Another man fouls in his long jump attempt.\", \" The first man is shown alternatively bending over and walking around.\", \" The first man jogs and claps.\", \" The two men hug each other.\", \" The first man walks down the track celebrating, with brief audience shots.\", \" The first man receives a flag and hugs two other people.\", \" The first man unfolds the flag and holds it up.\", \"The first man runs around with the flag draped around him.\"]}, \"v_LQ7X62seYYI\": {\"duration\": 120.63, \"timestamps\": [[1.81, 15.08], [16.28, 25.94], [26.54, 48.85], [48.85, 73.58], [74.19, 120.63]], \"sentences\": [\"People ski down the hill covered with snow while ski lifts pass above the hill.\", \" A person ski on a small ramp, turn around but falls on the snow.\", \" After, the person ski over the ramps and ski rails, and he lands stand on the snow.\", \" Other people ski on ramps and on sky rails without falling.\", \" A man ski over high rumps and on rails, also he jumps high and flips in the air.\"]}, \"v_apjGHMrnMV0\": {\"duration\": 223.86, \"timestamps\": [[0, 61.56], [44.77, 124.24], [136.56, 219.39]], \"sentences\": [\"A man is seen lifting a set of weights over his head and shown again several times.\", \" Another man lifts a giant weight over his head and back down again.\", \" Several men take turns lifting weights over their heads and end with one hugging other people.\"]}, \"v_EYoyxe8hd3g\": {\"duration\": 195.02, \"timestamps\": [[0, 21.45], [21.45, 97.51], [111.16, 195.02]], \"sentences\": [\"A group of men run out of a building.\", \" A very large crowd is waiting for them outside.\", \" A woman leads as they break into song.\"]}, \"v_GKBYgS99oiI\": {\"duration\": 165.26, \"timestamps\": [[0, 155.34], [51.23, 155.34], [95.85, 165.26]], \"sentences\": [\"A person talks about how to change a spare tire.\", \"  First, you remove the hubcaps and lugnuts.\", \"  Then you change the tire and tighten the lugnuts.\"]}, \"v_C1IuvUSmcvA\": {\"duration\": 238.47, \"timestamps\": [[0, 31], [31, 60.81], [60.81, 238.47], [197.93, 238.47]], \"sentences\": [\"kid is standing on a backyard holding a pumpkin and draw the eyes with a marker.\", \" open the eyes the nose and the mouth with a drill .\", \" man is unseeding the pumpkin and open the eyes and the teeth in the dark.\", \" a candle is inside a pumpkin in the dark.\"]}, \"v_NzrOOXRyDPM\": {\"duration\": 221.26, \"timestamps\": [[0, 39.83], [43.15, 141.61], [159.31, 221.26]], \"sentences\": [\"A bull runs onto a field.\", \" Several matadors use capes and try to ward off the bull.\", \" The bull walks away from them while they chase him.\"]}, \"v_yl3bjdUZrmM\": {\"duration\": 38.52, \"timestamps\": [[0, 8.28], [10.59, 25.42], [25.62, 38.52]], \"sentences\": [\"a woman is shown applying sunscreen to several hands.\", \" Kids are shown rubbing the lotion into their arms and legs.\", \" The kids talk about the benefits of using sunscreen to the camera.\"]}, \"v_pb0k7YrMwZY\": {\"duration\": 6.85, \"timestamps\": [[0, 2.29], [2.02, 4.83], [4.62, 6.75]], \"sentences\": [\"A person is seen standing before a ping pong table.\", \" The man then hits the ball to the other.\", \" The other misses and the first man grabs a ball.\"]}, \"v_eCh_SqpkjtA\": {\"duration\": 84.49, \"timestamps\": [[0, 1.69], [8.45, 9.72], [33.37, 35.91], [33.37, 84.49]], \"sentences\": [\"A girl is standing on a blue mat.\", \" She does several toe touches on the mat.\", \" She does several back flips on the mat.\", \" She continues dancing on the mat.\"]}, \"v_IsHMvAfUOGs\": {\"duration\": 11.87, \"timestamps\": [[0, 9.91], [2.91, 3.8], [9.91, 11.87]], \"sentences\": [\"A little girl in pink flip flop shops across a hop scotch court.\", \" The girl almost falls and puts one hand on the ground in front of her to steady herself.\", \" The girl finishes hoping when she reaches the end of the court.\"]}, \"v_n3v9Znovl98\": {\"duration\": 159.31, \"timestamps\": [[0, 29.47], [38.24, 101.96], [117.89, 159.31]], \"sentences\": [\"A weight lifter walks up to a bar bell.\", \" He lifts it up to his chest.\", \" He then lifts it over his head and drops it.\"]}, \"v_jDL2tRtoxN4\": {\"duration\": 48.11, \"timestamps\": [[0, 48.11], [0.96, 9.86], [9.14, 11.55], [15.87, 36.08], [36.8, 42.57]], \"sentences\": [\"A man is sitting in a bumper car with two children.\", \" They begin to drive the car.\", \" They bump into another car in front of them.\", \" the little boy stands up in the car and takes his seat belt off.\", \" He sits back down and continues driving the bumper car.\"]}, \"v_jzVxdBzCuoM\": {\"duration\": 221.12, \"timestamps\": [[0, 22.11], [23.22, 130.46], [137.1, 221.12]], \"sentences\": [\"A young gymnast is inside a building.\", \" she is demonstrating several cheerleading moves with other members.\", \" They run, flip, and catch each other.\"]}, \"v_s1YjWVUu6pM\": {\"duration\": 197.09, \"timestamps\": [[0, 47.3], [0, 120.23], [47.3, 120.23], [120.23, 197.09]], \"sentences\": [\"bearded man is standing in a roofed gym in fronr of machines talking to the camera.\", \" man is kneeling in front of him getting ready to lift weight.\", \" the coach kneels in front of the man and is showing him how to put the leg to stand and lift the weight.\", \" a winab gets in front of the man and he is showing how a woman lift weight.\"]}, \"v_Xt86M-mRxi8\": {\"duration\": 129.06, \"timestamps\": [[0, 9.03], [16.78, 98.73], [99.37, 129.06]], \"sentences\": [\"A man is outside in a yard.\", \" He is showing the different tools needed for mulching.\", \" He then shows the process, mulching a tree.\"]}, \"v_LJdI1neOr2c\": {\"duration\": 89.68, \"timestamps\": [[0, 6.73], [8.07, 38.56], [43.94, 89.68]], \"sentences\": [\"A gymnast climbs on a low beam.\", \" She jumps in the air and does flips down the beam.\", \" She then dismounts and raises her arms.\"]}, \"v_MubE2kOK6z0\": {\"duration\": 93.69, \"timestamps\": [[0, 11.71], [20.14, 74.95], [26.23, 74.95], [51.06, 93.69]], \"sentences\": [\"A woman stands by a window talking to a camera.\", \" She is then shown standing next to a ballerina.\", \" They demonstrate some ballet moves.\", \" The woman then explains some more.\"]}, \"v_f38Jt5D0z4A\": {\"duration\": 20.76, \"timestamps\": [[0.62, 20.76], [0, 20.76], [0, 4.46]], \"sentences\": [\"A woman puts a hand on a horse.\", \" Two girls brush the horse from the other side.\", \" The woman talks to the horse or to the two girls.\"]}, \"v_Q0U51Hqn21w\": {\"duration\": 6.34, \"timestamps\": [[0, 2.09], [2.88, 4.56], [4.6, 6.34]], \"sentences\": [\"A man holds a discus while swinging his arm.\", \" The man swings and throws the discus.\", \" The man watches the discus fly.\"]}, \"v_o9ghRI_Iddk\": {\"duration\": 148.07, \"timestamps\": [[0.74, 42.94], [30.36, 97.73], [86.62, 148.07]], \"sentences\": [\"a woman stands in fronts of an orchestra holding a violin.\", \" the orchestra begins to play.\", \" the woman starts playing her violin.\"]}, \"v_lGESoAdgps8\": {\"duration\": 231.36, \"timestamps\": [[0, 49.74], [47.43, 166.58], [157.33, 220.95]], \"sentences\": [\"An athlete is seen walking onto a field and spinning in circles.\", \" He throws an object off into the distance when another man walks up and performs a throw.\", \" Several more athletes step up to throw the discuss into the air.\"]}, \"v_qH3HnhEaeok\": {\"duration\": 182.55, \"timestamps\": [[0, 31.03], [31.95, 84.88], [109.53, 182.55]], \"sentences\": [\"A couple of people are canoing in a river.\", \" They use paddles to move through the water.\", \" The moves are explained as they go.\"]}, \"v_OXTQsO5abO4\": {\"duration\": 41.38, \"timestamps\": [[0, 41.38], [0, 6], [8.07, 17.79], [16.76, 41.38]], \"sentences\": [\"A small child is holding an iron.\", \" She is pretending to iron clothes on the ground.\", \" She then folds the clothes.\", \" She continues to iron it afterward.\"]}, \"v_wKThOOUV6lY\": {\"duration\": 167.35, \"timestamps\": [[0, 41], [48.53, 136.39], [142.24, 167.35]], \"sentences\": [\"A group of people are standing in the mud.\", \" They are engaging in a game of tug of war.\", \" They pull on the rope, trying to make their enemies fall.\"]}, \"v_wts5XRikF1Y\": {\"duration\": 155.41, \"timestamps\": [[0, 25.64], [27.97, 97.13], [102.57, 155.41]], \"sentences\": [\"Several surfers ride the waves at a beach.\", \" A man is shown weaving through the water on a board.\", \" He raises his arms in the air as he goes over a wave.\"]}, \"v_1wjnveHAhGE\": {\"duration\": 131.11, \"timestamps\": [[0, 41.3], [41.3, 44.58], [72.11, 131.11]], \"sentences\": [\"A man is sitting on an elliptical machine against a wall.\", \" He lifts up the monitor portion of the elliptical machine.\", \" He begins working out on the elliptical machine.\"]}, \"v_Jd0KWW9LN4Q\": {\"duration\": 184.41, \"timestamps\": [[0, 12.91], [12.91, 27.66], [30.43, 43.34], [44.26, 59.01], [61.78, 85.75], [86.67, 104.19], [105.12, 132.78], [132.78, 149.37], [149.37, 179.8], [179.8, 184.41]], \"sentences\": [\"We see an opening screen and a screen with images of a man bowling.\", \" We then see the man bowl a strike and speak to the camera.\", \" Instructions appear on the screen as the man ties his shoes and bowls again.\", \" Instructions are on the screen and a lady speaks then the bowler speaks and bowls.\", \" We see shots of the alley then the man bowls and speaks and the lady speaks again.\", \" The man holds a shoes and discuses his shoes and slip guards before bowling again.\", \" The man shows the way to hold and swing the ball and bowls.\", \" The man shows trophies as instructions appear on the screen.\", \" We see two men bowl and speak to the camera while the one in black holds the microphone.\", \" We see the ending title screen.\"]}, \"v_sa5ZuxFDZNw\": {\"duration\": 124.94, \"timestamps\": [[0, 42.48], [36.23, 89.33], [88.08, 123.69]], \"sentences\": [\"A group of people are seen running around a gym playing a game of dodgeball.\", \" The people throw balls back and fourth to one another while roaming around.\", \" The people continue to play while the camera captures their movements.\"]}, \"v_0w-3O0ZOQFQ\": {\"duration\": 72.58, \"timestamps\": [[0, 5.44], [6.53, 10.89], [14.52, 39.19], [39.92, 50.08], [52.98, 67.86]], \"sentences\": [\"A woman is providing a demonstration on mop cleaning.\", \"The lady presents a bottle of the cleaning chemical that she is using before beginning.\", \" The woman the starts mopping the floor, using vigorous effort.\", \" The floor begins to show that the chemical works as described.\", \" This lady then moves to the mop bucket and completes the demonstration.\"]}, \"v_LUGksGa4WJA\": {\"duration\": 144.55, \"timestamps\": [[0, 7.23], [23.85, 62.15], [76.61, 144.55]], \"sentences\": [\"A large ocean wave is shown from a surfer's perspective.\", \" The wave rises higher and higher.\", \" The wave eventually closes the surfer in.\"]}, \"v_H3PWbSF9ax4\": {\"duration\": 66.83, \"timestamps\": [[2.34, 66.83], [0, 64.82], [0, 66.83]], \"sentences\": [\"baby kid is sitting in swinging in a swing watching and laughin to the camera.\", \" little kid is swinging in he playground having fun.\", \" someone is recording a kidon her first time on a swing.\"]}, \"v_nuaTROuaZPY\": {\"duration\": 165.93, \"timestamps\": [[0, 21.57], [31.53, 114.49], [118.64, 165.93]], \"sentences\": [\"A man is standing outside dressed inappropriately for the cold.\", \" He crouches in front of a pile of kindling.\", \" He shows the proper technique for building a fire.\"]}, \"v_rXwSSTGmvb8\": {\"duration\": 201.5, \"timestamps\": [[0, 18.14], [18.14, 139.04], [140.04, 201.5]], \"sentences\": [\"man is standing in front of a bar talking to the camera.\", \" man is mixing a drink in a cocktail shaker and talking to the camera showing how to prepare it.\", \" the man shakes the drink and serve it in a glass.\"]}, \"v_ULH_AqrP3to\": {\"duration\": 50.85, \"timestamps\": [[4.58, 33.56], [19.07, 22.37], [35.34, 36.1], [39.41, 45]], \"sentences\": [\"A person is mopping the floor.\", \" They are filling a bucket of water.\", \" They pull off a red rag from the bottom of the mop.\", \" They put the red rag into a washing machine.\"]}, \"v_pSWcVR96xlc\": {\"duration\": 4.06, \"timestamps\": [[0, 0.39], [0.35, 3.03], [3.5, 4.06]], \"sentences\": [\"People are standing in a swimming pool.\", \" They throw a ball into a net.\", \" They swim away in the water.\"]}, \"v_H-5nHSHwFOk\": {\"duration\": 745.5, \"timestamps\": [[0, 3.73], [3.73, 89.46], [89.46, 137.92], [141.65, 219.92], [219.92, 257.2], [260.93, 283.29], [283.29, 484.58], [484.58, 700.77], [700.77, 745.5]], \"sentences\": [\"We see an opening title screen.\", \" We see a man talking in a room while holding a ski.\", \" The man adds a substance from a jug to the ski and wipes it with a paper towel.\", \" The man stands and talks while holding a tool and a red brick of wax.\", \" The man melts the wax with the tool and wipes the ski.\", \" The man exchanges skis and waxes the second one with the tool.\", \" The man stands and talks to the camera then waxes the ski.\", \" The man then scrapes the wax off the ski and uses a different tools and paper towel on the ski.\", \" The man talks and we see the ending screen.\"]}, \"v_T47mErD2KeA\": {\"duration\": 21.06, \"timestamps\": [[0, 10.43], [10.64, 14.95], [15.48, 21.06]], \"sentences\": [\"An individual stirs an egg mixture in a pan with chopsticks.\", \" The individual folds the egg in half with chopsticks.\", \" The individual flips the egg over in the pan.\"]}, \"v_aoIGBV31OT4\": {\"duration\": 197.79, \"timestamps\": [[0, 56.37], [47.47, 158.23], [142.41, 195.81]], \"sentences\": [\"A person is seen riding a surf board along the water with a sail.\", \" The person rides all along the water while the camera captures his movements.\", \" More people are seen riding around as well as falling down in the water.\"]}, \"v_L149Uf5V7K0\": {\"duration\": 137.29, \"timestamps\": [[0, 4.81], [5.49, 125.62], [67.27, 67.96], [129.05, 129.74]], \"sentences\": [\"Boys are standing in a gym with jump ropes.\", \" The boys take turns jumping rope.\", \" A boy bends over to pick up a part of his jump rope.\", \" A boy bends over after rope jumping .\"]}, \"v_cQr-HSUKbsw\": {\"duration\": 140.32999999999998, \"timestamps\": [[0, 140.33], [13.33, 140.33], [15.44, 140.33]], \"sentences\": [\"teams are playing ice hockye in a court.\", \" men tagteamed a woman and start figting on the court.\", \" men behind the fence is watching the game and when players start fighting people are screaming.\"]}, \"v_6QrVxwNUbBk\": {\"duration\": 184.88, \"timestamps\": [[0, 22.19], [27.73, 125.72], [128.49, 184.88]], \"sentences\": [\"A man is shown in the snowy mountains.\", \" He is climbing the mountain with a pair of skis.\", \" When he reaches the summit, he leaves a helicopter and skis to the bottom of the mountain.\"]}, \"v_tz3zHV1Z5po\": {\"duration\": 221.81, \"timestamps\": [[0, 44.36], [49.91, 160.81], [136.41, 216.27]], \"sentences\": [\"Two people are seen sitting in a pool with one holding a ball.\", \" They begin fighting over the ball and grabbing one another.\", \" They continue to demonstrate how to block and catch the ball.\"]}, \"v_3Hbm8FdirRc\": {\"duration\": 73.4, \"timestamps\": [[0, 73.4], [0.73, 73.4], [63.86, 67.16]], \"sentences\": [\"A man is sitting on a green riding lawn mower.\", \" He continues to mow the lawn.\", \" He mows around a bush on the lawn.\"]}, \"v_an5XI45pIl8\": {\"duration\": 190.33, \"timestamps\": [[0, 36.16], [40.92, 134.19], [148.46, 190.33]], \"sentences\": [\"Two men are seated together on a stage.\", \" They wave and clap toward the crowd.\", \" One man presents the other man, a musician, with an award.\"]}, \"v_MAyYq3HilFc\": {\"duration\": 5.11, \"timestamps\": [[0, 3.93], [3.5, 5.11], [3.93, 5.11], [0, 5.11]], \"sentences\": [\"A man is running with a stick preparing to perform a javelin throw.\", \" Another man is watching as the man does the throw.\", \" As the man gets closer to the line, he releases the javelin and it goes flying through the air.\", \" There are bleachers in the background and it is a hot and sunny day.\"]}, \"v_c1RR1cmS9LU\": {\"duration\": 150.78, \"timestamps\": [[0, 27.14], [39.96, 72.37], [87.45, 150.78]], \"sentences\": [\"A group of people are doing an interview.\", \" The people are wearing inline skates.\", \" They then show how to skate in the equipment.\"]}, \"v_0N8iIUS660o\": {\"duration\": 129.02, \"timestamps\": [[0, 20], [14.19, 35.48], [31.61, 59.35], [49.03, 79.35], [68.38, 97.41], [97.41, 129.02]], \"sentences\": [\"a bull runs through a crowd.\", \" the people int he crowd disperse.\", \" a bull corners a man on the ground.\", \" people try to pull the bull by the tail.\", \" the bull lifts the man off the ground and throws the man.\", \" the bull then runs after more crowds of people.\"]}, \"v_MYFVsllwDnc\": {\"duration\": 96.69, \"timestamps\": [[0, 42.06], [42.06, 79.28], [79.77, 96.69]], \"sentences\": [\"A man is cutting tall grass with a large scythe.\", \" He stops for a minute to clean the blade and sharpen it.\", \"  He resumes cutting the grass in wide arcing strokes.\"]}, \"v_vjMuhHo6wMY\": {\"duration\": 162.84, \"timestamps\": [[0, 39.08], [40.71, 121.32], [105.03, 158.77]], \"sentences\": [\"A woman and dog are seen moving around a room performing tricks.\", \" Another dog is shown playing with the two in several more clips.\", \" The woman continues playing around with the dogs using frisbees and her body.\"]}, \"v_t97xM9sY2yg\": {\"duration\": 130.73, \"timestamps\": [[0, 20.26], [10.46, 43.79], [42.49, 81.71], [80.4, 130.73]], \"sentences\": [\"ingredients are chopped an diced on a cutting board.\", \" the ingredients are added to a frying pan.\", \" the contents of the pan are mixed together and cook.\", \" the food is then plated.\"]}, \"v_3lkZPJES45Q\": {\"duration\": 122.7, \"timestamps\": [[0, 16.56], [16.56, 82.21], [82.21, 122.7]], \"sentences\": [\"A drummer shows the components of a double base drum pedal.\", \" The drummer then place his feet on the pedals and demonstrates playing the double pedal process.\", \" The drummer speeds up the foot pedal action on the double pedal and plays different beats.\"]}, \"v_37gHYr2uDZo\": {\"duration\": 63.27, \"timestamps\": [[0, 3.16], [3.16, 30.05], [30.05, 44.29], [44.29, 63.27]], \"sentences\": [\"A man comes onto the screen introduces that he will be making a coconut flavored drink.\", \" He fills a cup with ice and adds all the ingredients into the cup.\", \" Grab another cup and uses it to mix drink.\", \" He grabs a third cup and pours the drink into that cup or serving.\"]}, \"v_XeRiPVEZ6pY\": {\"duration\": 118.97999999999999, \"timestamps\": [[1.19, 111.84], [112.44, 117.2], [113.03, 115.41], [114.82, 115.41]], \"sentences\": [\"A guy is playing an accordion on a stage.\", \" The guy stops playing the accorion.\", \" The guy points to the audience and orchestra.\", \" The guy slightly bows his head.\"]}, \"v_9xHLzVojpBc\": {\"duration\": 96.69, \"timestamps\": [[0, 26.59], [27.07, 60.91], [61.4, 93.3]], \"sentences\": [\"A man is seen speaking to the camera and leads into a woman hitting a ball with a tennis racket.\", \" She hits the ball over and over while the man speaks.\", \" She then hits the ball to the man.\"]}, \"v_47OMV7rZrQA\": {\"duration\": 228.79, \"timestamps\": [[0, 26.31], [33.17, 120.11], [122.4, 228.79]], \"sentences\": [\"A woman walks onto a mat in a gym.\", \" She then begins to perform for the judges.\", \" She does numerous moves in martial arts for the crowd.\"]}, \"v_HYAlS44yzdo\": {\"duration\": 116.68, \"timestamps\": [[0, 12.25], [9.33, 21.59], [26.25, 113.76]], \"sentences\": [\"A man is seen spinning around and throwing a shot put in the air.\", \" Another man is followed shortly afterwards doing the same.\", \" Pictures are then shown of the men shot putting and leads into more video.\"]}, \"v_LNLsmdVMCmY\": {\"duration\": 134.79, \"timestamps\": [[0, 9.44], [16.85, 54.59], [61.33, 134.79]], \"sentences\": [\"Two news reporters are talking in front of a screen.\", \" A man is shown talking about snow cleaning equipment inside a shop.\", \" The female newscaster is seen cleaning the snow off her car.\"]}, \"v_ujS0VNOXeVg\": {\"duration\": 166.02, \"timestamps\": [[11.62, 14.11], [29.88, 114.56], [131.99, 132.82]], \"sentences\": [\"A woman is brushing her hair.\", \" She starts braiding her hair behind her head.\", \" She cuts the elastic band out of her hair with scissors.\"]}, \"v_u3uYs6SZFKo\": {\"duration\": 40.08, \"timestamps\": [[0, 4.21], [2, 8.22], [4.41, 40.08]], \"sentences\": [\"Two kids are talking at the playground.\", \" The two kids walked to the swing and sat.\", \" The girl in yellow shirt push the young boy in red shirt on the swing and the girl in blue shirt is swing.\"]}, \"v_IMto8gJvRek\": {\"duration\": 195.49, \"timestamps\": [[0, 28.35], [31.28, 122.18], [130, 195.49]], \"sentences\": [\"A man is standing and talking inside a kitchen.\", \" He shows us a juicer and a lemon.\", \" He grinds the lemon into the juicer, producing juice.\"]}, \"v_fnKOW7tJA1A\": {\"duration\": 43.1, \"timestamps\": [[0, 2.8], [2.8, 38.57], [39, 43.1]], \"sentences\": [\"A man jumps onto parallel bars.\", \" He begins doing a gymnastic routines on the parallel bars.\", \" He dismounts and lands on a mat.\"]}, \"v_WZUxscN9rW8\": {\"duration\": 127.29, \"timestamps\": [[0, 11.46], [11.46, 95.47], [64.28, 79.56], [96.11, 102.47], [103.74, 106.29], [107.56, 127.29]], \"sentences\": [\"An introductory title screen is shown.\", \" A number of men dive into a pool in front of audiences, occasionally punctuated with audience reaction shots.\", \" One of the diver exits the pool and is tended to by two others while the audience watches on.\", \" A diver is hugged by other individuals.\", \" Three divers stand on a podium.\", \" A logo on a blue screen is shown.\"]}, \"v_5zYETEiYiCQ\": {\"duration\": 65.18, \"timestamps\": [[0, 65.18], [33.24, 65.18], [0, 64.85]], \"sentences\": [\"A man is sitting on a bench playing a piano.\", \" A man comes up next to him and starts playing the piano with him.\", \" A man pulling a brown bag stops and watches.\"]}, \"v_SnZnAVuMn4M\": {\"duration\": 194.56, \"timestamps\": [[0, 39.88], [52.53, 56.42], [56.42, 194.56]], \"sentences\": [\"A volleyball coach talks to the camera while two volleyball players stand behind him.\", \"  The two volleyball players play volleyball with each other without a net between them.\", \"  The coach then returns to talk to the camera and makes hand gestures toward the ball after which the clips go in and out of showing the women play volleyball and the man talking.\"]}, \"v_ksKlcjeIBi0\": {\"duration\": 5.06, \"timestamps\": [[0, 5.06], [0, 3.06], [3.06, 5.06]], \"sentences\": [\"Young gymnasts are at a gym practicing on balancing beams.\", \" A girl in camouflage leaps, turns and lands back on the balancing beam.\", \"  She hops again and poses.\"]}, \"v_N-LaOcSqZaM\": {\"duration\": 17.14, \"timestamps\": [[0, 17.14], [0.6, 6.08], [6.77, 17.14]], \"sentences\": [\"A group of young women and men play a game of volleyball on the beach while wearing swimsuits and trunks.\", \" A group of woman and men are playing volleyball, on the beach on an overcast day with all players approaching the ball to hit it.\", \"  The team on the left side of the net makes a goal.\"]}, \"v_cHYZPYLwvks\": {\"duration\": 167.46, \"timestamps\": [[4.19, 151.55], [19.26, 23.44], [97.13, 97.97], [105.5, 114.71]], \"sentences\": [\"People are wearing scuba gear scuba diving under water.\", \" Fish are shown next to the scuba divers.\", \" A man is holding a camera under the water.\", \" A man takes off his goggles and waves at the camera.\"]}, \"v_z3xkE5Ox-2A\": {\"duration\": 166.93, \"timestamps\": [[0, 26.71], [30.88, 104.33], [122.69, 166.93]], \"sentences\": [\"a man stands in a corner room.\", \" the man starts carving a pumpkin.\", \" the man then creates a sculptor.\"]}, \"v_AOteP9srRpw\": {\"duration\": 11.1, \"timestamps\": [[1.5, 11.1], [3.55, 4.33], [4.38, 5.99]], \"sentences\": [\"We see a man kitesurfing .\", \" The sail waves a little as the surfer loses control.\", \" The surfer falls into the water and recovers.\"]}, \"v_VRRLOIP6EmA\": {\"duration\": 85.32, \"timestamps\": [[0, 9.81], [11.09, 52.9], [55.46, 85.32]], \"sentences\": [\"A surfer goes through the waves of an ocean, riding a wave.\", \" The wave crashes over the surfers, knocking them off their boards.\", \" One surfer manages to stay upright.\"]}, \"v_6Kp_fvkZWTE\": {\"duration\": 64.13, \"timestamps\": [[0, 11.54], [8.34, 25.97], [20.84, 39.76], [34.31, 64.13]], \"sentences\": [\"a man stands in an indoor arena.\", \" a few people walk pass the man.\", \" the man then takes off running.\", \" the man jumps over a beam and lands on pads.\"]}, \"v_hCJTKVzkYFE\": {\"duration\": 62.21, \"timestamps\": [[0, 16.17], [13.69, 42.92], [38.88, 58.16]], \"sentences\": [\"A group of people are seen riding around on horses swinging sticks.\", \" They are shown in many clips riding around and swinging a club.\", \" They stand on the side swinging the club and practicing.\"]}, \"v_UH9qJ4Y6ENA\": {\"duration\": 198.25, \"timestamps\": [[0, 191.31], [3.97, 25.77], [33.7, 107.06], [65.42, 141.75], [149.68, 196.27]], \"sentences\": [\"A group of fencing students in a gym are practicing.\", \" A \\\"Daily Bruin\\\" logo is overlaid on the screen.\", \" There are two fencing opponents in the center of the screen.\", \" We are concentrated on these two for the duration.\", \"The match is interrupted only by an interview with the fencing students.\"]}, \"v_yINX46xPRf0\": {\"duration\": 159.99, \"timestamps\": [[0, 31.2], [12, 64.79], [52.8, 159.99]], \"sentences\": [\"The people are in the pool wearing goggles.\", \" The people are wearing oxygen thanks while in the pool.\", \" The people are training on how to dive and swim under water with their oxygen on.\"]}, \"v_uJuGXnGqozs\": {\"duration\": 53.82, \"timestamps\": [[4.31, 36.6], [36.87, 41.44], [41.98, 53.82]], \"sentences\": [\"A woman performs a gymnastics routine on uneven bars in front of an audience, with scoring-related text overlay.\", \" The woman dismounts from the bars.\", \" A black screen with a series of scoring text is shown.\"]}, \"v_nMiXX2jqI40\": {\"duration\": 64.22, \"timestamps\": [[0, 4.5], [9.31, 37.25], [46.56, 64.22]], \"sentences\": [\"A man is dressed like santa claus and wearing scuba gear.\", \" He swims at the bottom of the ocean.\", \" He explores old ship wrecked items and fish.\"]}, \"v_-sd2XAFkeC0\": {\"duration\": 230.66, \"timestamps\": [[0, 55.36], [55.36, 160.31], [163.77, 227.2]], \"sentences\": [\"A man is seen speaking to the camera and leads into a group of people riding in a raft.\", \" The camera shows various angles of people riding and getting splashed by water.\", \" They continue riding around and smiling with one another as well as speaking to the camera.\"]}, \"v_25Wxe9TQzY8\": {\"duration\": 6.04, \"timestamps\": [[0, 5.89], [1.78, 4.53], [3.05, 5.95]], \"sentences\": [\"A person is seen standing on a board with others in the water.\", \" The person begins riding along the water on the board.\", \" The person continues riding along the water.\"]}, \"v_nZ40a3LSFeU\": {\"duration\": 112.11, \"timestamps\": [[0, 10.09], [10.65, 68.38], [71.19, 112.11]], \"sentences\": [\"a sailboat is seen gliding through the ocean.\", \" Men are riding and sailing on the boat.\", \" It picks up speed, leaving rapids in its wake.\"]}, \"v_UjJ8yWaFNGg\": {\"duration\": 183.25, \"timestamps\": [[12.83, 19.24], [25.66, 98.04], [45.81, 47.65], [98.96, 100.79]], \"sentences\": [\"A man puts goggles and skis on.\", \" He starts skiing down a hill of snow.\", \" A person is setting up a camera next to a lake.\", \" People are sitting on a ski lift.\"]}, \"v_Kyo1nkGKRqw\": {\"duration\": 93.72, \"timestamps\": [[0, 15.46], [15.93, 35.61], [51.08, 93.72]], \"sentences\": [\"A man is talking in front of a screen.\", \" He is seen looking at post cards of people, then is on a ranch.\", \" They learn to take care of the horses and ride them.\"]}, \"v_hiYPv3MrrUw\": {\"duration\": 56.8, \"timestamps\": [[0, 13.92], [13.92, 37.77], [33.51, 56.8]], \"sentences\": [\"a man is skateboarding down an empty street.\", \" the man zig zags away from the camera.\", \" another man water baords in the ocean.\"]}, \"v_U5wliityRuU\": {\"duration\": 197.21, \"timestamps\": [[0, 19.72], [27.61, 90.72], [96.63, 197.21]], \"sentences\": [\"A scuba diver is moving slowly under water.\", \" The instructor is seen talking to the camera.\", \" We go back under water, watching the scuba diver while the instructor talks.\"]}, \"v_39dTxOhrW68\": {\"duration\": 41.63, \"timestamps\": [[0, 6.45], [6.45, 19.36], [22.07, 41.63]], \"sentences\": [\"A man is standing outside a building.\", \" He uses a chainsaw on a hedge by the driveway.\", \" He goes around the hedge, clipping and trimming it.\"]}, \"v_FmDGejzydo8\": {\"duration\": 203.97, \"timestamps\": [[0, 46.91], [46.91, 152.97], [126.46, 199.89]], \"sentences\": [\"A person is seen riding on a skateboard and falling down.\", \" Several more people are shown riding on skateboards attempting tricks and occasionally falling.\", \" Some successful tricks are shown as they move all around several different areas.\"]}, \"v_siGEHA6fs80\": {\"duration\": 61.07, \"timestamps\": [[0, 12.82], [10.69, 42.44], [43.36, 60.15]], \"sentences\": [\"A close up of a log is shown with a person putting a piece of wood on top.\", \" The person chops the wood and continues with several more.\", \" In the end he pans out from the area.\"]}, \"v_LYqq0dPB-U8\": {\"duration\": 83.73, \"timestamps\": [[5.86, 18.84], [5.86, 75.36], [76.61, 77.87]], \"sentences\": [\"A woman is standing on a ladder putting decorations on a Christmas tree.\", \" People are helping her decorate the Christmas tree.\", \" A man stands on the ladder and puts a star on top of the tree.\"]}, \"v_UU8Xtm8Gl3I\": {\"duration\": 109.2, \"timestamps\": [[0, 21.29], [24.57, 91.19], [92.28, 109.2]], \"sentences\": [\"A man is snowboarding up and down several ramps.\", \" A crowd watches as he flips and turns in the air.\", \" He continues performing, doing several stunts.\"]}, \"v_bb-DPA34qvw\": {\"duration\": 124.79, \"timestamps\": [[0, 74.25], [74.25, 83.61], [82.98, 124.79]], \"sentences\": [\"A small girl plays drums with her palms.\", \" The camera pans up to show an overcast sky.\", \" The camera pans down to the girl playing drums with her palms again.\"]}, \"v_kUQ4bTeoG-Y\": {\"duration\": 137.16, \"timestamps\": [[0, 19.2], [25.37, 102.18], [106.99, 137.16]], \"sentences\": [\"A man is shown dancing around in a parking lot.\", \" Several runners are gathered, ready to begin a race.\", \" They take of running together toward the ultimate finish line.\"]}, \"v_UgSLUt8X1Lc\": {\"duration\": 65.99, \"timestamps\": [[0, 9.9], [12.54, 50.81], [52.13, 65.99]], \"sentences\": [\"A woman is sweeping with a broom in the kitchen.\", \" She pauses to talk about what she is doing.\", \" She demonstrates how to mop the floor properly.\"]}, \"v_t7WI6H6UVG4\": {\"duration\": 117.58, \"timestamps\": [[0, 24.69], [24.69, 85.24], [81.72, 116.4]], \"sentences\": [\"A woman is seen speaking to the camera and pointing to a food item.\", \" She places cream on the food and spreads it around, followed by measuring and cutting.\", \" She cuts up the cake continuously.\"]}, \"v_HPNZi_WsUeY\": {\"duration\": 118.1, \"timestamps\": [[0, 10.04], [10.63, 14.17], [14.76, 25.39], [25.39, 46.06], [46.65, 72.63], [72.63, 75.58], [75.58, 79.12], [79.72, 83.26], [83.85, 103.33]], \"sentences\": [\"An introductory title screen with the video description is shown.\", \" An individual drizzles olive oil into a pan.\", \" The individual adds chicken to the pan and cooks it.\", \" The individual adds chopped onions and mushrooms to the pan and cooks them.\", \" The individual ads some other ingredients to the pan and mixes the contents together.\", \" The individual places the pan on a wooden platform.\", \" The individual mixes cooked pasta into the pan.\", \" The individual spoons out a bowl of the pan's contents.\", \" The individual garnishes and tastes the bowl's contents.\"]}, \"v_BOOX9aGlSEs\": {\"duration\": 222.82, \"timestamps\": [[0, 20.05], [20.05, 222.82], [0, 222.82]], \"sentences\": [\"people are siting on cabins above a snowy hill.\", \" the man jumps into the snow and are skiing down a snowy slope.\", \" people are snowboarding down a snowy mountain hill.\"]}, \"v_0JgcRWHCi4c\": {\"duration\": 22.78, \"timestamps\": [[0, 22.78], [9.79, 12.41], [14.81, 16.51], [9.68, 22.32]], \"sentences\": [\"A woman and a dog are in a room playing with an orange frisbee.\", \" The woman kneels and holds the frisbee over her leg and the dog jumps to get it.\", \" She has the dog jump over her leg a few more times.\", \" An orange and white cat comes into the room on the right on top of the couch.\"]}, \"v_ix40OdQd7iE\": {\"duration\": 99.85, \"timestamps\": [[5.99, 40.44], [42.43, 58.41], [58.41, 99.85]], \"sentences\": [\"An athlete runs with a pole and jumps high over an horizontal pole successfully.\", \" Then, a shirtless person runs to jump high but he makes fall the horizontal bar.\", \" The long jump of the  shirtless man is replayed.\"]}, \"v_RTnNxbG2V5o\": {\"duration\": 235.78, \"timestamps\": [[0, 27.11], [61.3, 159.15], [175.65, 235.78]], \"sentences\": [\"A group of people are getting into bumper cars.\", \" They ride the cars around the plateform.\", \" Several others are riding the other rides at the carnival.\"]}, \"v_aKacWW7Mn2c\": {\"duration\": 22.78, \"timestamps\": [[0, 10.59], [11.05, 16.63], [18.11, 22.78]], \"sentences\": [\"A swimmer lifts his arms before and prepares for a dive on the platform.\", \" The swimmer dives into an Olympic pool from the platform.\", \" The swimmer surfaces and swims over the side of the pool.\"]}, \"v_vFVg-ImCW9w\": {\"duration\": 199.9, \"timestamps\": [[0, 69.97], [58.97, 152.92], [137.93, 194.9]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her mixing various ingredients into a bowl.\", \" She microwaves a bowl and pours flour on the counter, followed by mixing the bowl into the flour.\", \" She rolls up a big ball of dough and wraps it up and puts it into a container.\"]}, \"v_2dA1fAU3o6o\": {\"duration\": 64.37, \"timestamps\": [[0, 64.37], [7.72, 64.37], [51.81, 53.42]], \"sentences\": [\"A small child follows a man.\", \" The man uses a leaf blower to clear a patch of land of some leaves.\", \" The child is blown at by the leaf blower.\"]}, \"v_SrA6k_iQNGA\": {\"duration\": 134.24, \"timestamps\": [[0, 36.91], [35.57, 87.92], [85.91, 128.19]], \"sentences\": [\"A small group of people are seen carving pumpkins with one man screwing his.\", \" Two men are seen kneeling outside with one pouring liquid into pumpkins.\", \" The pumpkins are then lit on fire and put on display.\"]}, \"v_asLRIsN6wLQ\": {\"duration\": 155.02, \"timestamps\": [[0, 44.18], [41.85, 115.49], [116.26, 154.24]], \"sentences\": [\"A large ball is soon rolling forward followed by a man bending over and throwing a ball.\", \" Another man steps up and bends forward while throwing a ball off into the distance.\", \" Several more men take their turns as the camera captures their movements.\"]}, \"v_w0d32MVTY9Q\": {\"duration\": 43.03, \"timestamps\": [[0, 43.03], [21.08, 33.56], [33.56, 43.03]], \"sentences\": [\"There is a lot of people around watching as the man rides the horse to go lasso the small bull to the ground.\", \" When he lassoes the bull to the ground he gets back on his horse and the bull starts to move while it's attached to the rope.\", \" Then someone else rides in on their horse and other people run in as well.\"]}, \"v_y56qXoJh6U0\": {\"duration\": 131.66, \"timestamps\": [[0, 11.85], [25.67, 92.82], [99.4, 131.66]], \"sentences\": [\"Several team members gather in a bowling alley.\", \" They take turns walking up to the lanes with balls.\", \" They throw the balls, knocking down the pins.\"]}, \"v_DP9hfhq8sro\": {\"duration\": 18.72, \"timestamps\": [[0.09, 2.9], [3.74, 12.63], [12.73, 18.34]], \"sentences\": [\"A close up of a bar is shown.\", \" The camera then pans all around a fooseball table.\", \" People are then shown playing on the table.\"]}, \"v_wPCQfs0Rgx0\": {\"duration\": 96.25, \"timestamps\": [[0, 18.29], [18.29, 34.65], [34.65, 96.25]], \"sentences\": [\"home cookies are shown in a tray and a woman is putting the cookies on it.\", \" woman grabs the tray and put them on the oven.\", \" when cookies are ready the woman holds the tray and take them out the oven and serve them in a blue plate.\"]}, \"v_SLisp6hn700\": {\"duration\": 177.89, \"timestamps\": [[0, 15.12], [12.45, 49.81], [42.69, 177.89]], \"sentences\": [\"The woman is sitting at the table talking to the camera.\", \" The woman is holding a wrapped gift, then she is showing the materials she used.\", \" The woman put the cloth on wrapper, put adhesive tape on the edge and began wrapping the present.\"]}, \"v_QpJ5npI8qO0\": {\"duration\": 145.94, \"timestamps\": [[0, 44.51], [37.94, 105.81], [94.13, 138.64]], \"sentences\": [\"A man is seen moving his arms in front of the camera and smiling.\", \" He then holds his arms up and moves himself around in circles.\", \" He continues to spin around and move his arms in a circular motion.\"]}, \"v_YfxK4HAp8jI\": {\"duration\": 78.69, \"timestamps\": [[0, 21.64], [18.1, 57.84], [47.22, 76.73]], \"sentences\": [\"A man is seen speaking to a group of boys on a basketball court.\", \" The boys then begin shooting hoops and passing to one another.\", \" The boys take turns one after the other shooting hoops.\"]}, \"v_Mm-bwu8Q2IU\": {\"duration\": 82.5, \"timestamps\": [[0, 1.24], [1.65, 24.34], [24.75, 73.43], [73.84, 82.5]], \"sentences\": [\"A man and brown dog are in a fenced off area of an arena with people watching them.\", \" The man throws frisbees for the dog to catch.\", \" The man performs special tricks with the dog using the frisbee.\", \" The man lifts the dog triumphantly over his head and carries him on his shoulder.\"]}, \"v_T7fzZX0qKKQ\": {\"duration\": 50.09, \"timestamps\": [[0.75, 14.27], [11.77, 35.06], [33.81, 48.83]], \"sentences\": [\"Several people are seen standing on the side walk speaking to one another.\", \" One man wearing a costume begins riding around on a unicycle playing the bagpipes.\", \" He continues riding around playing while others watch on the side.\"]}, \"v_gM7JdDs5f4o\": {\"duration\": 218.15, \"timestamps\": [[0, 21.82], [22.91, 214.88], [217.06, 218.15]], \"sentences\": [\"Outside in parking lot a band instructor is talking to members of a drum line.\", \"  The band play their drums and chant as the instructor squats in front and plays along to the music.\", \"  The band stop playing as a crowd cheers them on.\"]}, \"v_xCedPpnP6Wg\": {\"duration\": 15.12, \"timestamps\": [[0, 15.12], [0, 14.66], [9.3, 14.66]], \"sentences\": [\"man is wearing stilts and its ready to cross the street.\", \" two women are standing trying to cross the street and a bus is passing in sreet.\", \"the green bus pass in the street anda  lot of people are sitting on top.\"]}, \"v_fG0nn2IVdDM\": {\"duration\": 55.06, \"timestamps\": [[0, 11.29], [19.27, 27.25], [49.82, 55.06]], \"sentences\": [\"People are flying kites on a field.\", \" A man in a suit is talking into a microphone.\", \" People are dancing and playing drums.\"]}, \"v_FBUtGL5_tto\": {\"duration\": 152.14, \"timestamps\": [[0, 152.14], [0.76, 152.14], [0, 151.38]], \"sentences\": [\"people are kayaking on rapids on the river.\", \" people are in yellow kayaks wearing life jackets.\", \" people in rapids ara kayaking sitting on boats.\"]}, \"v_aqQ7-J9kbUE\": {\"duration\": 34.2, \"timestamps\": [[0, 21.72], [2.05, 34.2], [25.48, 26.17], [33.35, 34.2]], \"sentences\": [\"A guy is making a campfire with a blowtorch.\", \" People are standing around the campfire.\", \" A man picks up sticks from the ground.\", \" The man goes closer to the campfire and adds a stick to it.\"]}, \"v_5BCWB7Pf2Tk\": {\"duration\": 97.15, \"timestamps\": [[0, 37.89], [38.38, 41.29], [42.26, 73.84], [75.78, 91.81]], \"sentences\": [\"A teen spins his skateboard in the air with his feet on the street.\", \" The teen stands on the border of the skateboard and flips it with the other feet.\", \" Then, the teen spins in the air the skateboard.\", \" After, the teen holds his skateboard, then he falls on the ground.\"]}, \"v_QHmZWkRK528\": {\"duration\": 202.06, \"timestamps\": [[0, 202.06], [9.09, 33.34], [29.3, 185.9], [99.01, 185.9]], \"sentences\": [\"Several cheerleaders stand around a gym.\", \" They get into a formation.\", \" They then do a cheer routine.\", \" They throw each other up into the air.\"]}, \"v_MT852hP9wVk\": {\"duration\": 91.98, \"timestamps\": [[0, 13.34], [15.64, 53.35], [59.32, 91.98]], \"sentences\": [\"A man is standing outside a building.\", \" He had a large ax in his hands.\", \" He is using the ax on a very large log of wood, trying to split it.\"]}, \"v_X4l1wbSYQFo\": {\"duration\": 101.8, \"timestamps\": [[0, 13.74], [17.31, 74.31], [76.86, 101.8]], \"sentences\": [\"A woman is talking in a bathroom.\", \" She is holding a bottle of fluid as she speaks.\", \" She then spreads it onto her hands and applies it to her face.\"]}, \"v_ibKFezOKsBQ\": {\"duration\": 82.41, \"timestamps\": [[0, 3.71], [4.12, 13.6], [14.01, 82.41]], \"sentences\": [\"\\\"Let's play and have fun!\\\" appears over reversed video of a child sliding up a slide.\", \" The child slides back down.\", \"  Several children come down various slides.\"]}, \"v_jAk-vBePtTU\": {\"duration\": 186.41, \"timestamps\": [[0, 44.74], [35.42, 116.51], [109.98, 180.82]], \"sentences\": [\"A man walks into frame and sits before a set of drums.\", \" He begins playing the drums with his hands continuously.\", \" He continues to play the drums and pauses with his hands down.\"]}, \"v_tF4Tl56ntnE\": {\"duration\": 89.07, \"timestamps\": [[0, 19.15], [19.15, 36.07], [36.52, 58.34], [58.79, 77.94], [78.38, 89.07]], \"sentences\": [\"A blue title page appears along with words stating that the video will be about how to apply contact lens.\", \"A lady wearing a white robe then appears walking in the bathroom towards a mirror and washes her hand first.\", \"Secondly,she grabs the contact,shakes it,pours liquid in it and slides the contact out to the edge of her finger.\", \"When the lens is properly positioned,she grabs her eyelid and places the lens on her pupil and then blinks it into place.\", \"Once the complete process is finish,the bottle of Dailies is placed on the counter and the lady winks at the end.\"]}, \"v_IVFGb72s3oY\": {\"duration\": 157.52, \"timestamps\": [[0, 12.6], [12.6, 40.17], [40.17, 45.68], [45.68, 55.13], [55.13, 70.88], [70.88, 131.53], [132.31, 140.19], [140.19, 157.51]], \"sentences\": [\"Game show hosts sits on a stage talking into the microphone on an Asian show as Asian words stream across the bottom.\", \" We see the crowd then a host is talking to a young child standing on the stage.\", \" We see the crowd and a lady judge laughing.\", \" The small boy plays a piano and sings and the judge and host and the crowd clap.\", \" The judges and a person backstage look captivated as they watch the boy playing.\", \" The boy plays and we see the crowd and judges positive reactions laughing  and clapping.\", \" The boy finishes dramatically and a person in the crowd stands and claps while walking in the aisle.\", \" We see the judges clap and give the boy their feedback as the boy listens.\"]}, \"v_tXuNa_h804c\": {\"duration\": 234.93, \"timestamps\": [[0, 12.92], [14.1, 23.49], [23.49, 102.2], [102.2, 104.55], [105.72, 124.52], [125.69, 126.87], [128.04, 177.38], [177.38, 179.73], [180.9, 200.87], [202.05, 234.94]], \"sentences\": [\"A man was talking to one woman and a man and then another man began talking, they continue their conversation for a while.\", \" Someone turn on the radio and a woman in custom appears from behind curtain dancing, while two man are amazed.\", \" They began some hand moves, the man in yellow tank shows his several dance moves and the woman follows her.\", \" A man with pink scarf sitting looks frustrated and make a sign of the cross.\", \" The continue their dance lesson on break dancing and hugged at the end when the woman looks like she is learning.\", \" The three people walking on the street, talking and having fun.\", \" They dance again while the two dance with each other, the other man dance by himself.\", \" They are having fun in the park.\", \" They dance again and another one on the phone looks amazed while the other two enjoy dancing with each other.\", \" They are lying on the grass and then dance some more while the man in pink scarf approves.\"]}, \"v_8P1vKpL3Zcs\": {\"duration\": 189.01, \"timestamps\": [[0, 9.45], [9.45, 101.12], [101.12, 155.93], [155.93, 175.78], [175.78, 189.01]], \"sentences\": [\"An introduction comes onto the screen for a video about a water skier.\", \" A man at a lake begins to perform water skiing tricks while attached to a water skiing line.\", \" He begins to perform a series of jumps while he water skis.\", \" He is then shown doing some tricks at nigh time.\", \" The video ends with the closing credits shown on the screen.\"]}, \"v_vwpaEsh0-1U\": {\"duration\": 205.68, \"timestamps\": [[0, 8.23], [39.08, 43.19], [62.73, 70.96], [75.07, 123.41], [120.32, 132.67], [141.92, 156.32], [197.46, 205.68]], \"sentences\": [\"People run onto an indoor soccer arena.\", \" Two men shake hands in the middle of the arena.\", \" They do a huddle and turn in a circle.\", \" They start playing a game of soccer.\", \" The crowd cheers for them while watching.\", \"  A man jumps onto a fence in front of the crowd.\", \"  A man stops and ties his shoe.\"]}, \"v_IJAR9ERJt4s\": {\"duration\": 31.19, \"timestamps\": [[0, 2.96], [3.12, 27.6], [27.75, 31.19]], \"sentences\": [\"The \\\"BBC News\\\" logo appears on screen with website addresses.\", \" A man plays a bagpipe in front of burning trucks as people thrown rocks.\", \" Police set up a blockade as rioters throw stones and fire.\"]}, \"v_o_JAjYZDs9Y\": {\"duration\": 16.05, \"timestamps\": [[0.24, 3.29], [4.01, 11.39], [10.03, 15.32]], \"sentences\": [\"A large group of people are seen lined up on a field.\", \" One person begins walking forward holding a stick.\", \" He misses a throw and other team mates around him cheer.\"]}, \"v_k_7hLIwul48\": {\"duration\": 33.41, \"timestamps\": [[0, 22.39], [6.85, 21.22], [10.69, 32.24], [25.06, 27.73], [32.58, 33.41]], \"sentences\": [\"Mike Tyson is on a show blindfolded as he throws darts.\", \"  The host of the show gives him darts as she stands beside him.\", \"  He throws three darts and the last two get a bulls eye as the host and audience gasp in excitement at what happened.\", \" The host walks up to the dart board to see the darts.\", \"  Mike Tyson takes the blindfold off.\"]}, \"v_QZWyv6SShks\": {\"duration\": 159.82, \"timestamps\": [[0, 15.18], [18.38, 78.31], [99.09, 159.82]], \"sentences\": [\"A group has gathered on a large field.\", \" They are engaged in a game of soccer.\", \" They kick the ball across the field, trying to get it into a goal.\"]}, \"v_LM8C4FSpN0w\": {\"duration\": 61.02, \"timestamps\": [[0, 14.65], [12.2, 45.16], [42.11, 60.72]], \"sentences\": [\"A small group of people are seen swimming around a pool.\", \" The people throw a ball around the water.\", \" The people continue playing with one another in the pool.\"]}, \"v_rmoa-Ffel2k\": {\"duration\": 94.55, \"timestamps\": [[0, 87.46], [4.25, 85.57], [85.57, 94.55]], \"sentences\": [\"This man is in the public gym to workout and he is standing on the treadmill just walking.\", \" There is also other people walking around farther around behind him.\", \" After a while, he steps off of the treadmill and says his last words to his viewers.\"]}, \"v_7JXae2so5-E\": {\"duration\": 48.6, \"timestamps\": [[0, 7.05], [8.75, 26.24], [30.86, 48.6]], \"sentences\": [\"A man is wearing protective gear inside a workshop.\", \" He is welding a piece of metal with a machine.\", \" He continues working while sparks are flying.\"]}, \"v_v34qczSoYLo\": {\"duration\": 95.78, \"timestamps\": [[0, 3.35], [3.35, 19.64], [20.11, 35.92], [36.4, 68.96], [69.44, 95.78]], \"sentences\": [\"A logo for bungee Highground Adventures is shown.\", \" Several people are being strapped in and readied for jumping, a man on the right takes pictures.\", \" They are seen walking a long bridge like structure and the camera pans back to show the box they will jump from, above a valley surrounded by large green hills.\", \" Then a woman is about to jump and they are talking, she jumps off the platform and we see it from her perspective.\", \" Then we see it from a far away perspective camera and the logo is shown again with the website.\"]}, \"v_IEPoIqIrprg\": {\"duration\": 233.57, \"timestamps\": [[0, 233.57], [123.79, 233.57], [18.69, 233.57]], \"sentences\": [\"Several people are playing an indoor game of volley ball in a gym.\", \" The teams switch sides as the game continues to be played.\", \" Several people are watching as the players play volleyball in the gym.\"]}, \"v_UTiSAR1o2nU\": {\"duration\": 138.95, \"timestamps\": [[0, 13.89], [28.48, 102.13], [112.55, 138.95]], \"sentences\": [\"A girl has tied a rope between two trees.\", \" She balances on the rope, trying to walk across it.\", \" She jumps off, and a man takes her place on the rope behind her.\"]}, \"v_b1QkoG9hxk8\": {\"duration\": 77.53, \"timestamps\": [[0, 6.2], [6.2, 64.35], [64.35, 77.53]], \"sentences\": [\"A blond girl wearing a black blouse instructs on how to prepare a mudslide.\", \" The bartender demonstrates how to prepare the drink.\", \" The bartender describes the ingredients of the mudslide chocolate syrup, Kahlua, Bailey's and ice.\"]}, \"v_dZyb8t-4ATQ\": {\"duration\": 26.59, \"timestamps\": [[0, 3.59], [3.86, 15.69], [16.62, 26.59]], \"sentences\": [\"A man is crouched down on a floor.\", \" He measures and cuts pieces of carpet.\", \" He then lays the carpet and attaches it with molding.\"]}, \"v_Ol7JKNItQC4\": {\"duration\": 223.66, \"timestamps\": [[0, 6.71], [7.83, 58.15], [59.27, 203.53], [203.53, 218.06], [219.18, 223.66]], \"sentences\": [\"The logo \\\"Zumba Toning\\\" appears on screen.\", \" A woman's indoor aerobic class is in process.\", \"  The camera briefly scans to the mirrored wall and then back to the class.\", \" The instructor finishes the class.\", \"  A Zumba logo with website address appears.\"]}, \"v_4GrPMa_BE6M\": {\"duration\": 22.33, \"timestamps\": [[0, 22.33], [1.67, 9.04], [9.04, 22.33]], \"sentences\": [\"These 2 people are arm wrestling each other and having fun.\", \" Both of them talk while doing it and the woman fights hard to not have her arm taken down.\", \" But the man takes it down anyway and she is the one screaming in the end.\"]}, \"v_e2IL0BusPNM\": {\"duration\": 113.94, \"timestamps\": [[0, 13.1], [18.8, 71.21], [73.49, 113.94]], \"sentences\": [\"A couple of people are standing at the foot of a table.\", \" They are engaged in a game of beer pong.\", \" They throw the balls and try to get them to land in the cups.\"]}, \"v_eBlYGGmeBY0\": {\"duration\": 53.55, \"timestamps\": [[0, 53.55], [2.95, 53.55], [34.27, 53.55]], \"sentences\": [\"People are standing on top of a roof.\", \" They are using tools to rip up the roof on the house.\", \"  A person is sweeping the roof behind them.\"]}, \"v_RTwa2d6Oqvo\": {\"duration\": 45.07, \"timestamps\": [[0, 14.42], [11.94, 29.97], [33.13, 44.39]], \"sentences\": [\"A man is seen sitting on the ground cleaning a pair of shoes.\", \" People walk in and out of frame as the man works.\", \" The camera pans around cars and people.\"]}, \"v_aELu8QS8T54\": {\"duration\": 88.31, \"timestamps\": [[0, 15.9], [16.34, 60.49], [60.93, 88.31]], \"sentences\": [\"two girls are sitting on a beach.\", \" each girl takes turns filling a pal with sand.\", \" the girls then make a sand castle.\"]}, \"v_cIaqen3kVIA\": {\"duration\": 145.4, \"timestamps\": [[0, 25.45], [24.72, 141.77], [139.59, 145.4]], \"sentences\": [\"A girl is holding a flute and talking.\", \" She lifts the flute up to her mouth and begins playing.\", \" She puts the flute down and stops playing.\"]}, \"v_Y5uVICaJU-0\": {\"duration\": 6.04, \"timestamps\": [[0, 6.04], [0.03, 4.14], [4.47, 6.04]], \"sentences\": [\"A man is standing on a field.\", \" He holds a disc and spins around several times.\", \" He throws the disc down onto the field in front of him.\"]}, \"v_D9hS68pULz0\": {\"duration\": 168.9, \"timestamps\": [[0, 168.9], [5.07, 109.79], [63.34, 109.79], [100.5, 168.9]], \"sentences\": [\"Several men sit around a table.\", \" They are all holding beers.\", \" One of them counts down something.\", \" They then chug all of the beer.\"]}, \"v_Liha_xwiwtc\": {\"duration\": 24.01, \"timestamps\": [[0, 24.01], [0, 9.6], [9.72, 24.01]], \"sentences\": [\"a river is flowing on a summer day.\", \" a man in a boat paddles down stream.\", \" the man's boat then floats down the river.\"]}, \"v_bON69f83fSY\": {\"duration\": 129.41, \"timestamps\": [[0, 8.41], [9.06, 48.53], [55.64, 129.41]], \"sentences\": [\"A man is talking inside a garage.\", \" He is standing in front of a bike.\", \" He shows all the different tools he needs to work on the bike.\"]}, \"v_TNFoUBRsngY\": {\"duration\": 156.36, \"timestamps\": [[0, 156.36], [0, 3.91], [6.25, 57.07], [57.85, 58.64], [59.42, 62.55], [79.75, 93.82], [93.04, 93.82], [94.6, 97.73], [106.33, 127.44], [128.22, 131.35], [135.25, 156.36]], \"sentences\": [\"This is a video of tug o war matches for high school students.\", \" Freshman girls  and Sophomore girls battle each other in an outdoor game of tug o war there is white text at the bottom of the screen.\", \"  A man yells ready and the teams pull on the rope as a crowd of people cheer them on.\", \"  The girls in the black team lose.\", \"  Next is the Freshmen vs the Sophomore boys and white text at the bottom of the screen.\", \"  The call goes out and the match starts as the teams pull on the rope.\", \"  The team in the blue loses.\", \"  Next is the junior vs the senior girls as white text is shown on the screen.\", \"  Someone yells go and the teams pull on the rope as the team in the white wins the match and they run towards the middle of the field and are met with others in white shirts and they celebrate the win.\", \"  The next match is the junior vs the senior boys there is white text at the bottom of the screen.\", \"  The teams pull on the rope as the team in white wins the match and again they walk to the middle of the field and are met by other children in white shirts and they all celebrate.\"]}, \"v_tTEAlDsmZrA\": {\"duration\": 193.35, \"timestamps\": [[9.67, 182.72], [31.9, 81.21], [32.87, 54.14]], \"sentences\": [\"People are standing in a back yard.\", \" They begin cutting a hedge with a saw.\", \" A man is standing on a ladder cutting the top of a tree.\"]}, \"v_Zp9mSiw8Vkw\": {\"duration\": 49.81, \"timestamps\": [[0, 49.81], [0.25, 49.81], [18.93, 21.17]], \"sentences\": [\"People are standing at a Foosball table.\", \" They are playing the game of Foosball.\", \" A person puts a ball onto the Foosball table.\"]}, \"v_T9gKHEOvRKk\": {\"duration\": 79.13, \"timestamps\": [[0, 9.5], [11.47, 60.14], [61.33, 79.13]], \"sentences\": [\"A woman is talking to the camera.\", \" Another woman is shown applying lotion to her hand.\", \" She then applies and rubs it into her face.\"]}, \"v_tcGO-GHcQIQ\": {\"duration\": 124.13, \"timestamps\": [[0, 6.83], [6.83, 80.69], [80.69, 124.13]], \"sentences\": [\"manis holding a knife above a sharpening rock.\", \"the man is passing the knife on the rock and sharp it.\", \" the man cleans the knife with a cloth and is cuting a piece of paper to show the sharp.\"]}, \"v_sbIh_M0oGs8\": {\"duration\": 33.55, \"timestamps\": [[0, 7.21], [7.88, 23.99], [27.68, 33.55]], \"sentences\": [\"A few kids get ready to race on small dirtbikes.\", \"  The kids then go around turns.\", \"  The video finishes with them on a jump.\"]}, \"v_v621l04N1QQ\": {\"duration\": 69.36, \"timestamps\": [[0, 6.94], [7.98, 45.78], [46.47, 69.36]], \"sentences\": [\"Several black and white clips are being shown.\", \" People are riding on water skis and doing stunts.\", \" They continue as they are being pulled by motor boats.\"]}, \"v_MjljlkQaHh4\": {\"duration\": 24.57, \"timestamps\": [[0, 8.23], [8.48, 17.81], [16.95, 23.95]], \"sentences\": [\"Two men are seen kneeling before one another in a ring.\", \" The men begin fighting while others watch.\", \" The men continue fighting one another in the middle of a large crowd.\"]}, \"v_9Rvz-oIAn50\": {\"duration\": 79.45, \"timestamps\": [[0, 79.45], [6.75, 34.56], [45.29, 79.45]], \"sentences\": [\"A woman gives a tutorial on step aerobics.\", \"  She goes back and forth and then to her left.\", \"  She turns around and then steps on the board.\"]}, \"v_T_5ANYuDWOA\": {\"duration\": 104.78999999999999, \"timestamps\": [[2.62, 3.67], [2.62, 98.5], [103.22, 104.79]], \"sentences\": [\"A man is climbing on a ladder.\", \" He is trimming the top of the hedges.\", \" He gets up and moves the ladder.\"]}, \"v_4HxmQpkryjA\": {\"duration\": 66.57, \"timestamps\": [[0, 5.99], [11.32, 45.27], [47.27, 66.57]], \"sentences\": [\"A group of kids are swimming in a pool.\", \" They are shown tossing a ball back and forth in the water.\", \" They get the ball into the net as they swim.\"]}, \"v_bCEdkW675dQ\": {\"duration\": 24.1, \"timestamps\": [[0, 7.59], [5.91, 18.08], [17.72, 23.5]], \"sentences\": [\"A man is seen speaking to another holding a violin.\", \" The man speaking them walks out of frame.\", \" The other man begins playing the violin.\"]}, \"v_4NSWcmO_u4I\": {\"duration\": 73.42, \"timestamps\": [[0, 8.44], [11.38, 50.29], [52.5, 73.42]], \"sentences\": [\"The siding outside a house is shown.\", \" A man shows how to dip and apply stain to the siding.\", \" He then shows how to properly seal the buckets between uses.\"]}, \"v_qeyFjCAA_dg\": {\"duration\": 144.66, \"timestamps\": [[0, 65.82], [65.82, 144.66], [0, 144.66]], \"sentences\": [\"man is sitting in a bed in a living room talking to the camera and showing how to do abs.\", \" the man lay on the bed and start doing crunches.\", \" man is showing to the camera how to make crunches on a bed.\"]}, \"v_ZWudhOEyE_0\": {\"duration\": 160.15, \"timestamps\": [[0, 12.01], [22.42, 147.34], [148.94, 151.34], [151.34, 152.14]], \"sentences\": [\"A lady pets a white and black dog.\", \" The lady runs a clipper through the dog's fur.\", \" The lady stops using the clipper.\", \" The lady puts the clipper down.\"]}, \"v_kl4vLrvGAmM\": {\"duration\": 180.14, \"timestamps\": [[0, 48.64], [36.93, 130.6], [108.08, 175.64]], \"sentences\": [\"A close up of plaster is shown with several people mixing it around.\", \" A man lays down the plaster and begins putting tiles on the floor.\", \" The man measures the floor and continues laying down tile.\"]}, \"v_mfJj5gBQg-4\": {\"duration\": 27.11, \"timestamps\": [[0.54, 21.69], [5.69, 18.71], [12.2, 26.7]], \"sentences\": [\"A woman is seen walking around a stage carrying a mop.\", \" She pushes the mop all along the floor.\", \" She finishes by looking and smiling to the camera.\"]}, \"v_m-B1tlnywNY\": {\"duration\": 198.07, \"timestamps\": [[0, 7.92], [7.92, 42.58], [42.58, 198.07]], \"sentences\": [\"A group of cheerleaders run in the center of the room while two of them are holding a japan banner.\", \" They form three small circles and throw three of them upward.\", \" They start their routine, the cheerleaders fall twice but they continue dancing and cheering.\"]}, \"v_WJfMz7joX4s\": {\"duration\": 87.1, \"timestamps\": [[0, 8.71], [14.37, 57.92], [59.66, 87.1]], \"sentences\": [\"An ice hockey player falters and almost falls.\", \" Then he does slip and fall.\", \" His teammates glide past as he continues to struggle to stay upright.\"]}, \"v_Aj0Pd6snB-k\": {\"duration\": 106.34, \"timestamps\": [[0, 33.5], [32.96, 52.64], [53.17, 83.48], [85.6, 106.34]], \"sentences\": [\"A young lady is in her kitchen with a pink Santa Claus on her head while holding up a bowl of cookies.\", \"The lady then appears in the kitchen behind an island with a tray of cookies on the counter.\", \"On the cookie sheet,there are several raw shape bell shaped cookie dough items on the tray and the lady begins sprinkling green sparkles on top.\", \"After,the lady then adds red sprinkles onto the other cookies.\"]}, \"v_dSF2i1OQtMc\": {\"duration\": 227.93, \"timestamps\": [[0, 45.59], [60.4, 147.01], [173.23, 227.93]], \"sentences\": [\"A group is gathered on an indoor court.\", \" They are shown in several different venues.\", \" They perform stunts and tricks while jumping rope.\"]}, \"v_GbykXyc8LA8\": {\"duration\": 59.86, \"timestamps\": [[0.3, 16.16], [14.07, 44.6], [39.81, 57.47]], \"sentences\": [\"A woman is seen taking her jacket off and close up of a table.\", \" The girl is seen laying on a table and a man walks in and piercing her stomach.\", \" He puts a piece of jewelry in and the girl sits up to show.\"]}, \"v_WXEq3OeD68o\": {\"duration\": 78.1, \"timestamps\": [[0, 7.03], [17.57, 52.72], [53.5, 78.1]], \"sentences\": [\"a weight lifter is standing on a stage.\", \" He lifts a barbell up to his head before dropping it.\", \" He jumps up and down in excitement.\"]}, \"v_NQOPahBcpSE\": {\"duration\": 171.22, \"timestamps\": [[0, 42.81], [42.81, 120.71], [104.45, 171.22]], \"sentences\": [\"A woman looks bored on a bed with a dog and texts on her phone.\", \" She then walks around public places singing with her dog.\", \" She eats food with the dog while playing guitar in her room and still dancing around in public.\"]}, \"v_seQE5VZt3K0\": {\"duration\": 181.86, \"timestamps\": [[0, 6.37], [7.27, 60.92], [61.83, 160.04], [160.95, 181.86]], \"sentences\": [\"A person trowels wet concrete on the ground.\", \" Another person uses a piece of wood to level the concrete.\", \" A water mixture is poured on the concrete, it is scored and tiles are pounded on top.\", \" A person cleans the tiles with a cloth.\"]}, \"v_lE3Hs4bsPhg\": {\"duration\": 236.49, \"timestamps\": [[1.18, 61.49], [60.3, 189.19], [143.07, 228.21]], \"sentences\": [\"A young woman walks onto a stage and speaks to a man sitting in a chair.\", \" The man gets up and the two begin dancing with one another.\", \" The couple dance all around the stage performing lifts and tricks and end by holding a pose.\"]}, \"v_D5xp0LuEcKw\": {\"duration\": 190.66, \"timestamps\": [[0, 35.27], [39.09, 141.09], [148.71, 190.66]], \"sentences\": [\"A man and woman are meeting on a dimly lit stage.\", \" They begin dancing together elegantly.\", \" They spin and turn, dancing in unison.\"]}, \"v_9Zn0zErRckc\": {\"duration\": 23.04, \"timestamps\": [[0, 0.69], [1.04, 9.1], [10.83, 12.67], [14.74, 16.35], [22.92, 23.04]], \"sentences\": [\"A man is smiling in front of a camera.\", \" A man sprints down a track and jumps into a pile of sand.\", \" Another person comes up and give shim a high five.\", \" Flags are seen flying on flag poles.\", \" People are lined up ready to start a race.\"]}, \"v_h7iCyiNUxeE\": {\"duration\": 6.92, \"timestamps\": [[0, 0.38], [0.38, 2.39], [2.35, 5.36], [5.54, 6.92]], \"sentences\": [\"A man is facing a window.\", \" the man turns towards the camera.\", \" The camera turn and we see a blond lady in glasses posing for the camera.\", \" The camera pans back to the man who is holding a towel.\"]}, \"v_rBJBnf4F9sA\": {\"duration\": 209.53, \"timestamps\": [[0, 14.67], [66, 81.72], [91.14, 101.62]], \"sentences\": [\"Man pours very hot liquid into two mugs.\", \"  Man applies a blow torch to a slap of material.\", \"  Man wipes down the brown slab of material.\"]}, \"v_F1xZKduLnWg\": {\"duration\": 130.64, \"timestamps\": [[0, 13.72], [13.72, 23.51], [13.72, 60.75], [60.75, 130.64]], \"sentences\": [\"people are in a court room receiving awards.\", \" woman is talking to the camera and people are in gym practicing fencing.\", \" people are sitting on chairs behind he girls rpacticing fencing.\", \"girl is in a hallway talking to the camera and the people playing fencingin the gym is shown again.\"]}, \"v_yzN9jN3qncA\": {\"duration\": 150.35, \"timestamps\": [[0, 16.54], [30.82, 81.19], [88.71, 150.35]], \"sentences\": [\"A man is seated at a piano by a curbside.\", \" He is playing the piano as people are walking by.\", \" They stop to listen and leave him money.\"]}, \"v_Fi2Al65EH0g\": {\"duration\": 187.13, \"timestamps\": [[0, 55.2], [47.72, 134.73], [135.67, 184.32]], \"sentences\": [\"A woman is seen kneeling in the grass and playing with a dog.\", \" The woman lays down with the dog on top and leads into her performing tricks.\", \" Another woman is performing tricks with her dog that is shown in several shots.\"]}, \"v_L67RSiR2X78\": {\"duration\": 300.33, \"timestamps\": [[0, 94.6], [94.6, 144.16], [144.16, 300.33]], \"sentences\": [\"man is showing how to wax skis with a machine.\", \" with a sponge the man is putting wax in the ski and then is polishing it.\", \" with a small spatula take out the wax and with a nylon brush cleans the surface.\"]}, \"v_qXNYHbnGvto\": {\"duration\": 186.81, \"timestamps\": [[0, 25.22], [28.95, 123.29], [101.81, 183.07]], \"sentences\": [\"A woman is seen speaking to the camera while standing next to a horse.\", \" The woman then begins brushing down the horse's mane.\", \" She continues brushing all around the horse including it's feet and tail.\"]}, \"v_ksNvNH4fpdo\": {\"duration\": 18.37, \"timestamps\": [[0.18, 14.42], [2.66, 16.99], [8.27, 18.28]], \"sentences\": [\"A man is seen sitting on a piece of exercise equipment.\", \" He moves his arms back and fourth lifting weights.\", \" He continues to lift the weights and look off into the distance.\"]}, \"v_HaGLPOqibaM\": {\"duration\": 200.76, \"timestamps\": [[0, 15.06], [5.02, 9.03], [15.06, 200.76]], \"sentences\": [\"A wall is shown with the camera tilted sideways.\", \" A man walks across the scene.\", \" The man applies plaster to the wall.\"]}, \"v_ToLMOwlrgm0\": {\"duration\": 218.8, \"timestamps\": [[5.47, 39.38], [36.1, 61.26], [91.9, 214.43]], \"sentences\": [\"A man is holding a brush and talking.\", \" A woman bends over and brushes the back of her hair.\", \" She clips her hair back and brushes her bangs.\"]}, \"v_HzSCfBOefA4\": {\"duration\": 30.02, \"timestamps\": [[0, 4.05], [4.05, 28.22], [28.22, 30.02]], \"sentences\": [\"A white man dressed in a suit is talking to the camera while standing in a restaurant kitchen.\", \"The man turns the camera to a worker dressed in casual clothing who looks like he is singing and dancing while loading dishes onto a rack and poses when he's done.\", \"The man turns the camera back to his own face and talks into it.\"]}, \"v_iaKlx11RAiY\": {\"duration\": 135.34, \"timestamps\": [[0, 2.71], [3.38, 135.34], [29.78, 54.14], [118.42, 135.34]], \"sentences\": [\"There is an intro with three nails and a white background.\", \" Then a black haired girl and a blonde haired girl are seen singing and dancing a rhyme about rock paper scissors.\", \" The girl with the black hair has a wind up on her back and her hand keeps flying off at times, then we see a pink hippo.\", \" At the end her hand flies and comes back with a remote and the other girl takes it and acts as if she is changing channels.\"]}, \"v_Zr1xfVeUGeo\": {\"duration\": 213.86, \"timestamps\": [[0, 1.07], [6.42, 9.62], [10.69, 82.33], [17.11, 194.61], [70.57, 76.99], [122.97, 124.04], [163.6, 164.67], [197.82, 202.09], [203.16, 209.58], [210.65, 213.86]], \"sentences\": [\"A colored cake shaped fish is laying on a white paper.\", \" A person adds a powder to a liquid in a small, plastic container.\", \" The person uses a paint brush to makes the powder and liquid together.\", \" The person uses the paint brush to apply the mixture to the white, cake fish laying on the paper.\", \" The person adds powder and additional water to a small, plastic container.\", \" The person adds blue liquid to a small, plastic container.\", \" The person whips a paint mistake with fingers.\", \" The person adds a white dough as the eye.\", \"The person uses a black marker to color in the eye.\", \" The final product, a colored cake shaped fish is laying on a white paper.\"]}, \"v_kyvxaxRFLG8\": {\"duration\": 103.59, \"timestamps\": [[0, 40.4], [0, 44.02], [44.02, 69.4], [69.4, 103.59]], \"sentences\": [\"man is chopping wood in a backyard and another man is behind him.\", \" man is trying to chop the wood and the other man is holding another hammer and is trying to hel him doing jokes.\", \" after chopping the wood the man trying to chop the wood on the floor.\", \" man is talking on a celphone and the man is behind him, ten again in the backyard and a white pouddle is with them in the backyard.\"]}, \"v_Vh4TxFOCNM8\": {\"duration\": 57.66, \"timestamps\": [[0, 20.76], [17.59, 43.24], [38.05, 56.21]], \"sentences\": [\"A large group of people are seen playing a soccer match in an indoor field.\", \" The people kick the ball up and down the court in front of a large audience.\", \" The men continue to kick the ball around.\"]}, \"v_xMEwcb1P6dQ\": {\"duration\": 48.67, \"timestamps\": [[0, 5.84], [6.57, 22.87], [25.07, 48.67]], \"sentences\": [\"A girl is sitting inside a bedroom.\", \" She puts a guitar onto her lap.\", \" She begins to play the guitar for the camera.\"]}, \"v_HWuRcUpcsHY\": {\"duration\": 53.94, \"timestamps\": [[0, 53.94], [30.48, 51.78], [34.79, 44.5]], \"sentences\": [\"A person is kayaking down a river with other people.\", \" They are using an orange oar to row themselves.\", \" They hit a rock on the side of the river.\"]}, \"v_isGfZVCL4gE\": {\"duration\": 139.23, \"timestamps\": [[0, 12.53], [18.1, 83.54], [89.11, 139.23]], \"sentences\": [\"A boy is standing inside a kitchen.\", \" He is using an iron to iron a piece of clothing.\", \" He shows how to push the button to release the steam.\"]}, \"v_RnShLAifVno\": {\"duration\": 102.84, \"timestamps\": [[0, 102.84], [42.17, 69.93], [68.39, 102.84]], \"sentences\": [\"A woman is standing in a kitchen talking.\", \" She starts washing dishes in the sink.\", \" She continues talking to the camera.\"]}, \"v_ev-RTtbVjFI\": {\"duration\": 143.38, \"timestamps\": [[15.06, 32.26], [40.15, 129.76], [138.37, 139.08]], \"sentences\": [\"A person is washing a green rag in the sink.\", \" They put something inside the rag and begin to wash a window with it.\", \" They then wipe the window with a green towel.\"]}, \"v_N8BlpYSpgg4\": {\"duration\": 52.15, \"timestamps\": [[0, 52.15], [12.78, 21.64], [18.78, 52.15]], \"sentences\": [\"The people are lying on the ground with red paint on their back.\", \" A woman is sitting on the ground holding a banner and is talking.\", \" The protesters are standing on the side holding signs and banners.\"]}, \"v_JMpwIWxoB5s\": {\"duration\": 166.67000000000002, \"timestamps\": [[0, 12.5], [22.5, 89.17], [116.67, 166.67]], \"sentences\": [\"A table is shown covered in water bowls and lemons.\", \" A woman is talking about how to create lemonade from the ingredients.\", \" She squeezes juice from the lemons and adds sugar and water.\"]}, \"v_UKo5IFacUyE\": {\"duration\": 38.57, \"timestamps\": [[0, 5.4], [6.36, 22.56], [22.56, 38.57]], \"sentences\": [\"A woman is standing inside a bathroom.\", \" She is using the rollers on the bottom of a machine.\", \" She sticks her boots in the machine and they get polished.\"]}, \"v_E3UCEbGZmz0\": {\"duration\": 237.23, \"timestamps\": [[0, 55.75], [48.63, 145.9], [139.97, 227.74]], \"sentences\": [\"A man is seen painting a wall back and fourth.\", \" The man dips the brush in paint and continues moving back and fourth on the wall.\", \" He paints down the wall one more time.\"]}, \"v_Fky1ioAUt38\": {\"duration\": 54.1, \"timestamps\": [[0, 17.85], [17.85, 21.91], [22.45, 34.36], [34.9, 54.1]], \"sentences\": [\"A person mops the floor while a dog chase the mop.\", \" The person spins around the mop and the dog also spins.\", \" Then, the person wash and drain the mop in a bucket.\", \" After, the woman continues mopping and the dog chasing the mop.\"]}, \"v_z0tiCqKa4cs\": {\"duration\": 92.74000000000001, \"timestamps\": [[0, 19.94], [19.94, 52.86], [52.86, 76.98], [77.9, 92.74]], \"sentences\": [\"A woman is standing in the kitchen talking and a screen appears with the title of how to make a sandwich.\", \" All of a sudden, a jar of Mayonnaise,a loaf of bread,and a tomato appears.\", \"Once the lady finish talking,she cuts the tomatoes and puts the content on the pieces of bread to make a sandwich.\", \"When the sandwich is complete,she takes a bite out of it and begins talking again and moving the knifes to the sink.\"]}, \"v_ihdkXBpzKbE\": {\"duration\": 193.52, \"timestamps\": [[0, 31.93], [8.71, 41.61], [19.35, 41.61], [32.9, 193.52]], \"sentences\": [\"A frying pan is put in a sink.\", \" Someone then scrubs it with a sponge.\", \" It is then rinsed off in the sink.\", \" Several other dishes are then washed as well.\"]}, \"v_Srpn1NaBueI\": {\"duration\": 36.13, \"timestamps\": [[0, 14.81], [14.99, 18.79], [18.79, 32.52], [32.7, 36.13]], \"sentences\": [\"A man sits on a horse holding a rope with a loop while a group of men stand on his side.\", \" Suddenly, a calf runs and the man catch the calf with the loop of the rope.\", \" Then, the man rises the calf and throw on the ground and tie tie the calf.\", \" Next, the man rides his horse.\"]}, \"v_1qKXZ9fThTg\": {\"duration\": 196.19, \"timestamps\": [[0, 62.78], [57.87, 143.22], [132.43, 190.3]], \"sentences\": [\"A close up of nail polish is shown as well as a person's nails.\", \" The person holds up the bottles and begins painting her nails.\", \" She continues to paint and ends by showing off her nails.\"]}, \"v_mKm75VWThAI\": {\"duration\": 212.51, \"timestamps\": [[0, 7.44], [7.44, 86.07], [86.07, 128.57], [128.57, 161.51], [161.51, 176.38], [176.38, 202.95], [202.95, 212.51]], \"sentences\": [\"Two men wearing sumo suits slowly walk toward one another in a large indoor gym with mats on the ground and people are around watching them or taking pictures.\", \"The men bang into one another, one falls, and they continue to wrestle and knock each other onto the ground multiple times, taking turns kicking each other, and people not in sumo outfits join in and jump on the sumo's backs as well.\", \"A black screen appears with large white letters that read \\\"Sumo Suit Finals\\\", a man with a microphone is talking, a referee is walking around the area, and the man is introducing the sumo wrestlers and the referee.\", \"When the introductions are done the wrestlers the referee come together in the middle of the court and a match between the wrestlers begin as the referee watches on.\", \"The blue sumo guy pushes the red sumo guy to the ground and lies on him, the referee calls the blue sumo the winner, people cheer, and other people kick at the red sumo guy stuck on the ground.\", \" Everyone walks out of the gym and leave the red sumo guy on the ground then an outro appears with a Subscribe button on it, and two smaller screen withs other clickable videos.\", \"It ends with a short clip of people in the gym and the camera hitting a blond guy in the head when he goes too close.\"]}, \"v_5fW_2c_kKfc\": {\"duration\": 200.18, \"timestamps\": [[0, 50.05], [51.05, 135.12], [132.12, 192.17]], \"sentences\": [\"A large group of girls are seen standing around and speaking to one another.\", \" One girl bounces a ball and leads into a game of volleyball.\", \" The girls continue to play with one another as the camera pans around and watches their movements.\"]}, \"v_CBW_uJJpmZY\": {\"duration\": 115.94, \"timestamps\": [[0, 115.94], [17.39, 29.56], [49.27, 115.94]], \"sentences\": [\"A group of people take part in a jump roping competition.\", \"  They start with two jump ropes.\", \"  They switch jumpers a few times.\"]}, \"v_UlWLcqIvLKk\": {\"duration\": 131.17, \"timestamps\": [[0, 15.08], [15.08, 36.07], [36.07, 65.58], [65.58, 72.14], [72.14, 97.72], [97.72, 114.12], [114.12, 117.4], [117.4, 131.17]], \"sentences\": [\"The camera focuses in on a little boy holding a toy Iron in his hands pressing it over a white shirt.\", \" The boy starts unfolding a shirt and then taking the toy iron and start to pretend that he is ironing the shirt.\", \" When he is finished he puts the iron down and folds the shirt, next he takes a pair of shorts and pretends to iron those as well.\", \" Once again he puts the iron down but then throws the shorts over the folded shirt.\", \" He the takes the iron and starts to iron over another shirt that is unfolded on the bed for a brief moment until he begins to fold it.\", \" He approaches the clothes he ironed and picks them up when a baby crawls over in makes an attempt to take the iron.\", \" The boy then drops the cloths and takes the iron away before the baby can pick it up.\", \" He then waves the iron over his head briefly before putting it down and approaching the baby.\"]}, \"v_FiFzHgBjryA\": {\"duration\": 157.76, \"timestamps\": [[0, 18.93], [22.87, 103.33], [110.43, 157.76]], \"sentences\": [\"A large mess is shown on a living room floor.\", \" A woman uses a vacuum to clean up the mess.\", \" She pushes the vacuum over and over until it is gone.\"]}, \"v_Xjw9vUwILOE\": {\"duration\": 102.89, \"timestamps\": [[0, 102.89], [40.64, 67.39], [4.12, 102.89]], \"sentences\": [\"man is standing in a race track running and making a long jump and the video shows a repetition.\", \" man is smiling and fells in the track  of happiness.\", \" men are sitting on white chairs next to a racetrack.\"]}, \"v_dSdZz_Royyc\": {\"duration\": 202.39, \"timestamps\": [[0, 202.39], [7.08, 29.35], [23.27, 37.44], [21.25, 39.47], [35.42, 57.68], [49.58, 159.88], [63.75, 105.24], [99.17, 130.54], [124.47, 170], [157.86, 177.09], [171.02, 202.39]], \"sentences\": [\"There are some people going sailing a motor boat with wakeboarders in the river.\", \" A pickup truck towing a motor boat behind it arrives with two men.\", \" Two other men direct the pickup truck to get ready for sailing.\", \" The men wear their waterproof boots to get ready for wakeboarding.\", \" As the motorboat takes off, the man on the wakeboard follows behind them.\", \" The wakeboarder does stunts on the board as he flips over the and lands back on the river.\", \" He does several flips on the board as the motorboat sails forward.\", \"  The wakeboarder does front and back flips in the air and sometimes lands in water but gets right back on the board.\", \" He continues to wakeboard as the people in the motorboat smile and wave at him.\", \" He does various stunts on the board, fallls into the water but springs right back up on the board.\", \" Then he swims right next to the motorboat as the sun sets.\"]}, \"v_SSJjjggYBxc\": {\"duration\": 53.5, \"timestamps\": [[0, 7.49], [8.02, 19.26], [19.79, 53.5]], \"sentences\": [\"The outside of a building is shown on a snowy day.\", \" Several tracks from shoes are seen in the sidewalk.\", \" A man uses a scraper to wipe the snow off his car.\"]}, \"v_oqVNFPUANfs\": {\"duration\": 124.9, \"timestamps\": [[0, 5.62], [5.62, 13.74], [13.74, 36.22], [36.22, 61.2], [61.2, 108.04], [108.66, 124.9]], \"sentences\": [\"A gymnast wearing a blue leotard mounts a balance beam in a competition.\", \" The gymnast go right into a split on the balance beam and performs some additional moves.\", \" The gymnast than performs a hand stand a jumping exercise and a series of backward flips.\", \" The gymnast continues with some balancing moves and into a forward somersault.\", \" The gymnast prepares for her dismount by starting with backward somersaults that take her into a backward dismount and she lands perfectly and gets congratulated by her coach and team.\", \" A slow motion replay of the gymnast dismount is played.\"]}, \"v_045Tkq12H_c\": {\"duration\": 231.92000000000002, \"timestamps\": [[0, 61.46], [56.82, 173.94], [140.31, 221.48]], \"sentences\": [\"A young boy is shown speaking to the camera with another man.\", \" Clips are shown of people climbing a large rock while the boy interviews more people.\", \" A woman and man still speak to the camera and end by shaking the boys hand.\"]}, \"v_rulzKikXMHo\": {\"duration\": 49.37, \"timestamps\": [[0, 2.47], [3.46, 9.63], [24.44, 49.37]], \"sentences\": [\"A man is standing in a field.\", \" He picks up a football and throws it.\", \" A man is sitting on the grass holding a towel to his bleeding head.\"]}, \"v_y0Kio7VOk5o\": {\"duration\": 28.58, \"timestamps\": [[0, 11.29], [11, 20.58], [19.87, 28.44]], \"sentences\": [\"A young woman is seen walking forward on a board.\", \" She walks to the end and raises her hands up in the air.\", \" She dives off the side and rises to the surface swimming to the end of the pool.\"]}, \"v_BWsjIONsXlM\": {\"duration\": 74.47, \"timestamps\": [[0, 9.68], [18.99, 47.29], [52.5, 74.47]], \"sentences\": [\"a man is standing while sand blasting a long piece of wood.\", \" the man then applies a coat of stain to the piece of wood.\", \" the man then takes a dryer and blows the piece of wood.\"]}, \"v_Yu18MvEn-To\": {\"duration\": 82.5, \"timestamps\": [[0, 82.5], [30.11, 42.49], [76.31, 82.5]], \"sentences\": [\"An elderly woman is sitting and talking on a couch while knitting a small piece that is made of white yarn.\", \"The woman stops knitting then holds the piece out to readjust the yarn and the needles then resumes knitting.\", \"The woman looks at the camera then holds her piece up to look at it.\"]}, \"v_x4QVVFhamJ4\": {\"duration\": 124.85, \"timestamps\": [[0, 16.23], [31.84, 82.4], [95.51, 124.85]], \"sentences\": [\"A woman is seen holding a rose in various poses.\", \" Hands are shown in several images, holding babies, hands, feet, and fruits.\", \" The images continue in artistic ways.\"]}, \"v_WPM0vuERyfc\": {\"duration\": 31.86, \"timestamps\": [[2.87, 4.3], [6.21, 10.99], [11.31, 18.48]], \"sentences\": [\"A woman is holding a black ball.\", \" She pours water into two glasses and stirs them.\", \" She pours the water over a strainer.\"]}, \"v_hghdjiQlYko\": {\"duration\": 141.97, \"timestamps\": [[0, 14.91], [23.42, 105.06], [108.6, 141.97]], \"sentences\": [\"Several people sled down a snowy embankment.\", \" They are riding on tubes as they get up and run.\", \" The people are going down a manmade path.\"]}, \"v_I5g6I-FOguQ\": {\"duration\": 73.26, \"timestamps\": [[0, 0.37], [0.73, 32.6], [32.97, 69.23], [69.6, 73.26]], \"sentences\": [\"A man stands high on a manmade cliff as a giant wave crashes nearby.\", \" A surfer rides the giant wave in several different clips.\", \"  A group of people gather to watch and the size of the wave is illustrated.\", \" A surfer falls ahead of the wave.\"]}, \"v_FiqkrBh1VOI\": {\"duration\": 156.57, \"timestamps\": [[0, 10.18], [5.48, 153.44], [33.66, 36.79], [62.63, 63.41]], \"sentences\": [\"A woman and a man enters a dance floor.\", \" Then, the woman and the man dance tango on front people in a restaurant.\", \" A young man looks the couple and smiles.\", \" A band plays in the restaurant.\"]}, \"v_Pfc7KbwqdYk\": {\"duration\": 37.99, \"timestamps\": [[0, 13.49], [11.02, 23.93], [28.68, 37.04]], \"sentences\": [\"A small group of people are seen holding drinks and wearing costumes.\", \" The group laughs with one another and speaks.\", \" They then take a drink out of their glasses.\"]}, \"v_2QydTDAYJsA\": {\"duration\": 19.06, \"timestamps\": [[0, 4.77], [5.34, 13.63], [14.49, 19.06]], \"sentences\": [\"A cowboy is released from a gate on a horse.\", \" He lassos a calf with his rope.\", \" He jumps down and ties up the calf.\"]}, \"v_D4Y6DyRD0kY\": {\"duration\": 61.12, \"timestamps\": [[0, 52.56], [8.56, 61.12], [46.14, 61.12]], \"sentences\": [\"Group of people are standing on a flat rock watching.\", \" A man in canoe is paddling through the wavy water.\", \" The man continue to paddle until he reached the finished line and the woman stopped the timer.\"]}, \"v_pnFRC2_HPrE\": {\"duration\": 180.49, \"timestamps\": [[0, 9.93], [9.93, 82.12], [82.12, 91.15], [91.15, 180.49]], \"sentences\": [\"A woman in black shorts and a blue shirt is seen using an elliptical trainer and the brand and model are shown.\", \" Different people are shown using the elliptical and the various features are shown and demonstrated.\", \" Finally the brand and model are shown again with the same girl from the beginning.\", \" Then the screen goes black for the rest of the video.\"]}, \"v_tghS4UnuWzk\": {\"duration\": 219.29, \"timestamps\": [[0, 54.82], [54.82, 60.3], [71.27, 153.5], [173.24, 199.55]], \"sentences\": [\"A person is sitting down holding blue shoes.\", \" They hold a bottle wet wipes.\", \" They take one and start wiping the bottom of the shoe.\", \" They get a different shoe and start wiping it.\"]}, \"v_Zc44Ddk2NG8\": {\"duration\": 7.06, \"timestamps\": [[0, 1.09], [1.45, 3.67], [3.64, 7.06]], \"sentences\": [\"Two little girls are sliding down a long metal slide with red sides on them at a playground.\", \"The second girl is much larger than the other girl and ends up moving her a tad bit off of the slide and using her to stop.\", \"Once the little girl recoups,they both run off of the slide and onto another piece at the park.\"]}, \"v_5c8HvpeRWrc\": {\"duration\": 40.73, \"timestamps\": [[0.41, 12.01], [11.61, 29.73], [24.64, 37.06]], \"sentences\": [\"A group of girls are seen performing ballet moves together.\", \" A woman walks in and out of frame watching the girls as they continue to dance.\", \" The girls move up and down and stop by speaking to one another.\"]}, \"v_aW8LjbEpY1c\": {\"duration\": 35.99, \"timestamps\": [[0, 4.5], [5.58, 23.03], [24.65, 35.99]], \"sentences\": [\"A boy wearing glasses is seated at a table.\", \" He is attempting to solve a rubik's cube.\", \" He is being timed as he solves the puzzle.\"]}, \"v_CCRPXH8ui-s\": {\"duration\": 229.69, \"timestamps\": [[0, 44.79], [52.83, 141.26], [145.85, 229.69]], \"sentences\": [\"Three children are stuck together at the bottom of a slide.\", \" Another child comes down the slide, and stops when she sees the boys.\", \" One of the boys manages to get off the slide.\"]}, \"v_nNldj5g7W5o\": {\"duration\": 182.23, \"timestamps\": [[0, 29.16], [39.18, 120.27], [138.5, 182.23]], \"sentences\": [\"a baby is seated in a car seat in a car.\", \" He is drinking from a cup and crying.\", \" He talks or sings while he continues to cry.\"]}, \"v_Nj_rPQwzllA\": {\"duration\": 164.79, \"timestamps\": [[0, 9.06], [20.6, 79.1], [91.46, 164.79]], \"sentences\": [\"A man is seated behind a large desk.\", \" Another man is sitting in a red chair talking with him.\", \" They dance as a person dressed as a horse runs onto the stage.\"]}, \"v_PllZQ09sBuI\": {\"duration\": 219.38, \"timestamps\": [[0, 7.68], [7.68, 10.97], [10.97, 14.26], [14.26, 40.59], [40.59, 61.43], [61.43, 121.76], [121.76, 150.28], [150.28, 219.38]], \"sentences\": [\"people are saying hellow to the camera in christmas time.\", \" woman is holding a christmas balls crown.\", \" little baby is sleeping and swinging in a little chair.\", \" a man a woman and a kid are taking out the thread from the tree.\", \"and sart putting the christmas lights around the tree.\", \"once the lights are ready they are putting red balls on the tree.\", \"th little girl on man's shoulders put the star at the top of the tree.\", \"a small tree is shown on top of a table and a kid taks out a red carpet and put in the tree's foot and decorate it with red balls and lights.\"]}, \"v_GavbA_SHlVM\": {\"duration\": 127.32, \"timestamps\": [[0, 17.19], [19.73, 77.66], [86.57, 127.32]], \"sentences\": [\"A group of men are unloading equipment from a truck.\", \" A man bungee jumps off the side of a bridge.\", \" He swings back and forth over the water.\"]}, \"v_SKMVLKmgxAw\": {\"duration\": 149.26, \"timestamps\": [[0, 11.94], [13.43, 82.84], [91.79, 149.26]], \"sentences\": [\"A man is wearing headphones while seated in a room.\", \" He is using his hands to play a pair of drums.\", \" He continues to play throughout the video.\"]}, \"v_v9bcQsDl-yk\": {\"duration\": 162.31, \"timestamps\": [[0, 29.22], [41.39, 141.21], [146.89, 162.31]], \"sentences\": [\"A group of people are sledding down a hill.\", \" They are riding on tubes going one at a time.\", \" The mountains are covered in snow.\"]}, \"v_sgUMHHuAhZg\": {\"duration\": 203.66, \"timestamps\": [[0, 43.79], [50.92, 147.66], [153.77, 203.66]], \"sentences\": [\"A large advertisement is shown on the screen.\", \" Two people are engaged in kick boxing.\", \" They flip and spin as they kick and punch.\"]}, \"v_0e-qdFlRmPU\": {\"duration\": 167.69, \"timestamps\": [[5.03, 167.69], [153.43, 155.95], [166.01, 167.69]], \"sentences\": [\"A man and woman begin dancing together in a room.\", \" He picks her up and swings her around.\", \" They finish dancing and stare at each other.\"]}, \"v_iS_ms9ajumY\": {\"duration\": 133.03, \"timestamps\": [[0, 17.29], [9.98, 24.61], [17.96, 83.14], [79.15, 133.03]], \"sentences\": [\"a woman starts talking to the camera.\", \" the woman then points to a jar full of powder.\", \" the woman begins slicing and squeezing lemons.\", \" the woman begins mixing and making lemonade.\"]}, \"v_TIAAUayALPI\": {\"duration\": 212.88, \"timestamps\": [[0, 36.19], [67.06, 153.27], [168.18, 212.88]], \"sentences\": [\"A woman is styling different women's hair.\", \" She is talking about how she styles their hair.\", \" She demonstrates some of her techniques as she goes.\"]}, \"v_-SCRtjT7dto\": {\"duration\": 126.57, \"timestamps\": [[0, 22.78], [22.78, 58.86], [58.86, 105.69], [105.69, 126.57]], \"sentences\": [\"A man wearing a tank top holds a bowl of leafy greens and a salad dressing up to the camera.\", \" The man then places the leafy greens on a blue plate.\", \" The man then pours the salad dressing over the leafy greens and mixes it with his hands.\", \" The man then begins to eat the salad with his hands.\"]}, \"v_9Hxcuf80TK0\": {\"duration\": 215.09, \"timestamps\": [[0, 200.03], [11.83, 204.33], [130.13, 136.58], [186.05, 200.03]], \"sentences\": [\"A man plays a song on the saxophone.\", \" The man stops playing then discusses and explains the technique used.\", \" The man demonstrates pressing the keys while discussing.\", \" The man blows hard playing the saxophone at the finish of the song.\"]}, \"v_tj0sI8M3tro\": {\"duration\": 211.55, \"timestamps\": [[0, 63.46], [63.46, 117.41], [117.41, 185.1]], \"sentences\": [\"A woman is sitting down talking.\", \" She picks up paint brushes and begins painting on a canvas.\", \" She starts painting a pink flower onto the canvas.\"]}, \"v_NcjQI0avKHE\": {\"duration\": 220.54, \"timestamps\": [[0, 3.31], [4.41, 155.48], [156.59, 208.41], [211.72, 220.54]], \"sentences\": [\"The intro states \\\"Progression: Lisa's First Season Snowboarding\\\".\", \" The little girl is learning to snowboard and each day progresses a little better, she is falling down a lot.\", \" Then she is getting better and gets off the lift and does some more.\", \" At the end she is much better and is seen cheering with her hands up.\"]}, \"v_cc9iCNPSiKc\": {\"duration\": 189.77, \"timestamps\": [[0, 0.95], [7.59, 16.13], [18.03, 185.97]], \"sentences\": [\"Several leaves are seen blowing around a yard.\", \" A man walks into frame and blows around the leaves.\", \" More men are seen pushing leaves all around the yard into a pile.\"]}, \"v_cZZM3bgmXE4\": {\"duration\": 235.43, \"timestamps\": [[0, 22.37], [25.9, 130.66], [131.84, 235.43]], \"sentences\": [\"A woman is performing on a stage in front of judges.\", \" She is playing an instrument with a bow.\", \" She continues playing while the judges make faces at each other and her.\"]}, \"v_frbNKAZALzI\": {\"duration\": 201.9, \"timestamps\": [[0, 19.18], [21.2, 60.57], [63.6, 156.47], [146.38, 201.9]], \"sentences\": [\"A man is standing outside talking into a camera.\", \" Several rafters are shown going down waterfalls.\", \" They paddle through a river.\", \" The camera wearer then goes down the falls.\"]}, \"v_jimvzigX1ak\": {\"duration\": 32.18, \"timestamps\": [[0, 5.63], [6.28, 19.47], [22.69, 24.94], [25.59, 29.45]], \"sentences\": [\"A casino dealer sets out cards for gamblers.\", \" The men take cards then pass during the game.\", \" The dealer plays their hand and the outcome is determined.\", \" The dealer gives chips to the winning players.\"]}, \"v_aAY_M6M26TI\": {\"duration\": 72.73, \"timestamps\": [[0, 9.45], [12.36, 43.64], [51.63, 72.73]], \"sentences\": [\"A man and woman are inside a house.\", \" They are playing a game of table tennis.\", \" They hit the ball back and forth over the net.\"]}, \"v_Nn-KZMYbOv4\": {\"duration\": 141.46, \"timestamps\": [[0, 41.73], [35.36, 104.68], [86.29, 135.8]], \"sentences\": [\"A large group of people are seen riding exercise bikes while wearing santa hats.\", \" The camera pans all around the people working out and shows a man leading in front.\", \" The group continues to ride together in different shots while following the man in front.\"]}, \"v_yKLX0iXyLsQ\": {\"duration\": 235.36, \"timestamps\": [[0, 235.36], [41.19, 44.72], [223.59, 229.47]], \"sentences\": [\"A man spins around and throws a disk onto the field many times.\", \" A man in a red shirt walks up next to him.\", \" While turning around the man falls down.\"]}, \"v_KgccYb6ufPY\": {\"duration\": 84.03, \"timestamps\": [[0, 12.18], [12.18, 14.71], [15.55, 25.21], [25.21, 62.19], [62.19, 84.03]], \"sentences\": [\"A man runs to performs a long jump in a competition.\", \"  Men stands around the sand box holding meters.\", \" Other athlete performs long jump in the competition.\", \" Again, the man runs long jump, then the athlete performs long jump.\", \" A third person performs long jump.\"]}, \"v_5ayMRPi7Lg4\": {\"duration\": 21.46, \"timestamps\": [[0, 3], [3.54, 12.98], [12.98, 21.46]], \"sentences\": [\"The top of a ceiling is shown inside a building.\", \" A male swimmer appears at the end of a diving board.\", \" He dives into the water quickly and cleanly.\"]}, \"v_PCTqA_ov8RA\": {\"duration\": 182.02, \"timestamps\": [[0, 160.18], [20.93, 65.53], [45.51, 182.02]], \"sentences\": [\"A person is riding a wave behind a jetski.\", \"  The person then goes into a shed and it shows that it is actually a sled.\", \"  he rides waves on other items too including a door and an inflatable whale.\"]}, \"v_4R37E4Kevs4\": {\"duration\": 26.4, \"timestamps\": [[0, 1.85], [1.85, 11.35], [10.96, 13.73]], \"sentences\": [\"A man is smoking out of a hookah hose.\", \" He blows the smoke into the face of a dog.\", \" The dog bites at the smoke in front of him.\"]}, \"v_TIjwhYSIRgg\": {\"duration\": 123.44, \"timestamps\": [[0, 72.83], [33.33, 95.05], [82.7, 123.44]], \"sentences\": [\"Two people are seen fencing with one another.\", \" The people go back and fourth and his each other with swords.\", \" They continue to hit one another and move back and fourth.\"]}, \"v_SSoHwNbASQQ\": {\"duration\": 120.54, \"timestamps\": [[7.23, 120.54], [37.37, 41.58], [62.68, 112.7]], \"sentences\": [\"People are walking on a slack line.\", \" People are walking on the sidewalk in front of the slack line.\", \" A person is doing tricks on the slack line.\"]}, \"v_kAQML4pRtck\": {\"duration\": 6.13, \"timestamps\": [[0, 3.53], [3.53, 4.97], [4.97, 6.13]], \"sentences\": [\"An athletic man wearing athletic gear is standing in a fenced in area and swings a ball hat is attached to a rope.\", \" The man then starts to spin himself very quickly while still swinging the ball on the rope.\", \"Eventually the man releases the rope and the ball and rope go flying.\"]}, \"v_LsK452h29ng\": {\"duration\": 164.32999999999998, \"timestamps\": [[0, 61.62], [60.8, 119.96], [120.78, 164.33]], \"sentences\": [\"A young adult male is sitting in a gym on an elliptical machine talking.\", \"After the introduction,he grabs the bar,while his feet are placed solidly in the straps and begins moving it back and forth in sort of a rowing position.\", \"However,throughout the entire process the guy never stops talking and giving tips and technique about the proper way to use the machine.\"]}, \"v_iANrLcieixM\": {\"duration\": 76.49, \"timestamps\": [[0, 17.97], [28.68, 45.51], [42.83, 76.49]], \"sentences\": [\"A score is shown while people walk around an area.\", \" A man is seen holding a pole and running down a track.\", \" He pole volts over a bar and is shown again several times.\"]}, \"v_UqU_mAjgknQ\": {\"duration\": 77.78999999999999, \"timestamps\": [[8.95, 77.79], [0, 77.79], [8.95, 64.95]], \"sentences\": [\"a cartoon is shown in a video.\", \" a sumo against a karateka in a ring.\", \" the sumo is taking out the ropes of the ring and hit the karateka and at the end the sumo eats the karateka.\"]}, \"v_IDVWoE02zjM\": {\"duration\": 25.89, \"timestamps\": [[0.39, 5.31], [5.57, 13.46], [13.59, 25.89]], \"sentences\": [\"A woman walks in the sidewalk holding a box with a white sign to polish shoes.\", \" Then, the woman climbs the steps of a house, and a person gives her a bundle with shoes.\", \" After, the woman sits on the steps and polish the shoes.\"]}, \"v_YWfLZFXwjTE\": {\"duration\": 112.2, \"timestamps\": [[0, 15.15], [18.51, 69], [74.61, 112.2]], \"sentences\": [\"a woman is standing inside a bathroom.\", \" She is holding a little boy, who is laughing.\", \" She gargles water and spits it out.\"]}, \"v_J_CJSmMFWlg\": {\"duration\": 33.32, \"timestamps\": [[0, 8], [7.16, 22.49], [20.33, 31.99]], \"sentences\": [\"A small boy is seen punching and kicking a man on his knees wearing gloves.\", \" Another boy punches and kicks the same man.\", \" The boys continue practicing while others practice behind them.\"]}, \"v_Mz-yz0fQ_Hk\": {\"duration\": 101.66, \"timestamps\": [[0, 6.1], [6.61, 29.99], [19.31, 69.13], [69.13, 82.34], [82.34, 99.12], [99.62, 101.66]], \"sentences\": [\"There is an intro which shows the logo for the RYA Champion Club, and then with the word \\\"accelerating\\\" in front of a person on a boat and water.\", \" Then there is a woman who is at first sitting in a blue boat and then directing the boat in the water by maneuvering the sail.\", \" She moves the boat for awhile and then the video slows and replays her movements, while the words \\\"close reach\\\" are shown, and then \\\"powerpause\\\" then \\\"Leeward heel\\\" and finally \\\"accelerate\\\".\", \" Afterwards the video is replayed yet again and describes some more of her movements.\", \" Then the video splits into four segments each with video of people maneuvering boats and the action they are performing.\", \" At the end a website address is shown on the screen.\"]}, \"v_I6nuNE-Qibw\": {\"duration\": 105.02000000000001, \"timestamps\": [[0, 11.55], [14.18, 77.72], [76.14, 102.92]], \"sentences\": [\"A woman opens a fridge and shows several clips of water boiling, vegetables being cut, and food being cookies.\", \" A woman then mixes several ingredients into several poles and punching out a shape.\", \" She pushes out more cookies and showing them to the camera.\"]}, \"v_mglEC2-MH14\": {\"duration\": 225.1, \"timestamps\": [[0, 20.26], [28.14, 94.54], [100.17, 225.1]], \"sentences\": [\"A woman is seated in front of the camera, talking.\", \" She puts her hair up in pink rollers.\", \" She then takes them down and styles her hair.\"]}, \"v_96c3BWVDoq4\": {\"duration\": 123.69, \"timestamps\": [[0, 12.37], [11.75, 77.31], [50.1, 118.75]], \"sentences\": [\"A man walks into a shop and speaks with other people.\", \" A drawing is shown as well as a woman standing and a man begins tattooing her arm.\", \" Another man looks onward as the artist continues to work and ends by her smiling in the end.\"]}, \"v_BTUgRe4aSsg\": {\"duration\": 27.76, \"timestamps\": [[0, 8.19], [8.33, 13.46], [13.6, 15.13], [15.27, 22.07], [22.21, 27.76]], \"sentences\": [\"At the Olympics there is a woman at a stadium about to do the hammer throw.\", \"  The woman twirls the stringed weight gathering momentum as she then begins to spin her whole body around.\", \"  She lets go and tosses it as she lets out a loud scream.\", \"  The hammer then goes into the field as officials go to see where it lands.\", \"  The cameras now show the emotional athlete walking around the event area.\"]}, \"v_vlqrUu4gi0Q\": {\"duration\": 220.06, \"timestamps\": [[0, 47.31], [55.01, 61.62], [101.23, 106.73]], \"sentences\": [\"Man spins around on the tight rope.\", \"  Man balances on the tight rope.\", \"  Man jumps and spins on the tight rope.\"]}, \"v_5wBo0Gd81-I\": {\"duration\": 164.0, \"timestamps\": [[0, 33.62], [29.52, 111.52], [106.6, 164]], \"sentences\": [\"three kids are sitting in bumper cars.\", \" the cars are then started.\", \" the kids then begin to ram into each others bumper cars.\"]}, \"v_RblRzlmSFak\": {\"duration\": 35.16, \"timestamps\": [[0, 5.8], [5.8, 6.68], [6.68, 35.16]], \"sentences\": [\"A man wearing jeans and a black shirt is walking on a large yard filled with leaves and is carrying a large thin wooden board.\", \"The man then bends down and puts the wooden board on the grass.\", \"The man then starts pushing the board on the grass and he begins to move leaves very quickly from one end of the yard to the next and does this three times.\"]}, \"v_-OH1BDqao9w\": {\"duration\": 208.56, \"timestamps\": [[0, 47.97], [67.78, 168.94], [176.23, 208.56]], \"sentences\": [\"The outside of a car wash is seen.\", \" A man is talking to a woman inside the car.\", \" She gets out, and he takes it in to be washed and dried.\"]}, \"v_tAWTfutrwg0\": {\"duration\": 211.72, \"timestamps\": [[0, 119.62], [119.62, 178.9], [178.9, 211.72]], \"sentences\": [\"man is holding a brush and its putting wallpaper on white wall and cutting the edges.\", \" the man is unrolling a wallpaper and put the wallpaper on the wall.\", \" the wallpaper is perfectly stuck on the wall in an office.\"]}, \"v_UxlSiLBleX4\": {\"duration\": 230.18, \"timestamps\": [[0, 216.37], [216.37, 220.97], [220.97, 230.18]], \"sentences\": [\"A seated man wearing headphones plays a guitar.\", \" The man stops playing and leans forward.\", \" A black screen with text is shown.\"]}, \"v_t3wyR2VQy20\": {\"duration\": 38.78, \"timestamps\": [[0, 11.25], [10.28, 27.14], [28.11, 38.2]], \"sentences\": [\"A man is seen standing on a pair of stilts laughing to the camera.\", \" He jumps off the side of the rail and back down again.\", \" He does a flip this time into the grass while the camera shows his face close up.\"]}, \"v_TFIlTCvL4oQ\": {\"duration\": 221.96, \"timestamps\": [[0, 45.5], [31.07, 117.64], [113.2, 221.96]], \"sentences\": [\"people are walking up a hill with tubes.\", \" a woman is seen tubing downhill.\", \" a man then demonstrates how to use a snow tube.\"]}, \"v_aYrhuTGO440\": {\"duration\": 139.85, \"timestamps\": [[0, 41.26], [41.26, 92.3], [92.3, 137.06]], \"sentences\": [\"A black poodle is walking down a concrete sidewalk on a red leash.\", \"As the dog continues walking down the sidewalk,he stops at every set of bricks and begin to smell around them.\", \"When finished,the dog walks across the road and begins sniffing everything on the other side including grass,garbage bags,and the bottom of the doors.\"]}, \"v_mC_8ckG6WpU\": {\"duration\": 216.57, \"timestamps\": [[7.58, 19.49], [20.57, 67.14], [102.87, 194.92]], \"sentences\": [\"A woman is sitting on the floor next to black tubing.\", \" She stands up and cuts the tubing with a tool.\", \" She uses ribbon to wrap around the tubing.\"]}, \"v_odbjmsyfJe4\": {\"duration\": 20.88, \"timestamps\": [[0, 20.88], [4.59, 14.2], [7.2, 19.31], [16.07, 19.31]], \"sentences\": [\"A man is brushing his hair in a mirror.\", \" The brush gets stuck in his hair.\", \" He struggles to remove it from his hair.\", \" Afterward he stares at himself in the mirror.\"]}, \"v_BSsXKG9dFHI\": {\"duration\": 64.74, \"timestamps\": [[0, 1.94], [2.27, 61.18], [6.15, 18.13], [21.36, 25.57], [62.15, 64.74]], \"sentences\": [\"The intro is orange and has the words Orlando Crosstrainer.\", \" An exercise machine is shown and different women are shown using it.\", \" A woman takes her shoes and socks off and steps on an electronic scale.\", \" A woman drinks from a mug while another uses the machine.\", \" At the end we see the orange logo again.\"]}, \"v_A8KtrGjBodw\": {\"duration\": 110.41, \"timestamps\": [[0, 34.23], [17.11, 68.45], [64.04, 105.99]], \"sentences\": [\"A woman walks into frame and pours herself a glass of wine.\", \" She speaks to the camera while holding up the bottle.\", \" She drinks from the bottle while still speaking to the camera.\"]}, \"v_z9l32VOM6wY\": {\"duration\": 203.36, \"timestamps\": [[0, 47.79], [43.72, 138.29], [119.98, 201.33]], \"sentences\": [\"A man is seen speaking to a woman while showing her how to sharpen a knife.\", \" The woman then uses the tool to sharpen the knife with the man's help.\", \" He points to the knife and shows her again how to do it properly.\"]}, \"v_8XxsgEw49p0\": {\"duration\": 190.03, \"timestamps\": [[0, 100.72], [101.67, 190.03], [101.67, 135.87], [109.27, 115.92], [124.47, 134.92], [141.57, 190.03]], \"sentences\": [\"A video of a painter and his son as the painter is asked questions on painting techniques and his son demonstrates how to do them on a canvas while in the corner of the screen a digital paint program is being shown from a computer screen.\", \"  The screen changes and a voice comes over about an art piece he was doing  and the video is paused showing a home screen of a computer.\", \" The video is now skipped around as the person talks about the video.\", \"  White text is seen on the screen.\", \"  A still picture of the artwork is shown as credits in yellow test roll.\", \"  A computer made paining is shown as people are heard laughing and talking about the work.\"]}, \"v_F559bkkKSp8\": {\"duration\": 21.5, \"timestamps\": [[0, 3.01], [3.12, 15.8], [16.13, 21.5]], \"sentences\": [\"A man walks a couple of camels along the ocean front.\", \" A group of children are riding the camels as they walk.\", \" A woman follows behind, watching.\"]}, \"v_ZlwU7HKcoYs\": {\"duration\": 29.77, \"timestamps\": [[0, 6.1], [6.25, 15.33], [18.75, 29.77]], \"sentences\": [\"A person is riding in a raft boat.\", \" They are dragging a person on water skis behind them.\", \" The man is weaving back and forth in the water.\"]}, \"v_BkBbzC6nIvA\": {\"duration\": 226.46, \"timestamps\": [[0, 67.94], [62.28, 158.52], [151.72, 220.79]], \"sentences\": [\"A man is seen speaking to the camera while riding an exercise bike.\", \" He moves his legs quickly while standing on the bike.\", \" He continues to ride the bike while smiling and speaking to the camera.\"]}, \"v_P2hrv6QzDPI\": {\"duration\": 173.9, \"timestamps\": [[0, 55.65], [47.82, 115.64], [115.64, 169.55]], \"sentences\": [\"A man is seen playing an instrument when another man walks in playing.\", \" Two more men walk into frame and all begin playing instruments together.\", \" The continue playing with one another.\"]}, \"v_Jd5tpIdMGh8\": {\"duration\": 21.34, \"timestamps\": [[0, 21.34], [0.32, 21.34], [0, 21.13]], \"sentences\": [\"man is sitting on a chair and a man next to him is smoking.\", \" man is smiling in the chair and a man next to him is smoking.\", \" two men are standing in a room looking o the camera.\"]}, \"v_kwaCAq-9LnM\": {\"duration\": 151.42000000000002, \"timestamps\": [[12.11, 143.09], [20.44, 74.95], [81.01, 141.58]], \"sentences\": [\"A woman wearing an apron stands in a kitchen.\", \" She makes lemon juice and pours it into a jar.\", \" She adds sugar to the jar and stirs it.\"]}, \"v_Eb_9_Bcij0Q\": {\"duration\": 56.12, \"timestamps\": [[0, 10.66], [10.94, 30.31], [30.31, 48.55], [48.27, 56.12]], \"sentences\": [\"A man is standing in the bathroom and puts two thumbs up while showing his beard and head.\", \"He then takes a razor and begins going over his beard and lining it up.\", \"In the middle of it,he grabs his phone to take pictures before he continues to shave off his beard.\", \"Once complete,he puts the clippers down and stands still to see what he's done.\"]}, \"v_GxOjqC_IDX4\": {\"duration\": 83.69, \"timestamps\": [[0, 83.69], [11.72, 30.13], [30.13, 63.18], [53.56, 81.59]], \"sentences\": [\"Athletes are shown on a track.\", \" They stretch and get ready.\", \" One runs and takes a leap into the sand.\", \" The distance is measured to it.\"]}, \"v_WMVJqLMtaws\": {\"duration\": 109.47999999999999, \"timestamps\": [[0, 29.01], [26.28, 85.94], [79.92, 105.1]], \"sentences\": [\"Two children are seen standing outside with one playing hopscotch and dogs walking in and out of frame.\", \" The girl plays with the dogs and chase them around to grab a rock.\", \" The boy plays with the girl as the dogs walk on the side.\"]}, \"v_lh8ths6sKAE\": {\"duration\": 32.37, \"timestamps\": [[0, 3.88], [4.69, 19.75], [20.39, 32.37]], \"sentences\": [\"A man is using a bucket of water and a mop inside a garage.\", \" He is wiping it back and forth along the floor.\", \" He cleans the floor with the mop over and over.\"]}, \"v_bJ695Pp7Vng\": {\"duration\": 212.63, \"timestamps\": [[0, 8.51], [9.57, 200.94], [202, 212.63]], \"sentences\": [\"A black screen appears then white text appears coming in from the left and right side of the screen.\", \"  There are various still pictures of girls playing water polo.\", \" There are two black screens with white text that show up after the video.\"]}, \"v_w7IeqGuuA7Q\": {\"duration\": 233.01, \"timestamps\": [[0, 40.78], [38.45, 120], [113.01, 233.01]], \"sentences\": [\"a woman is standing over a small boy with her hands wrapped around his.\", \" they both are holding a bat.\", \" The boy and the woman swing at a pinata.\"]}, \"v_0pcrpO0Gd8M\": {\"duration\": 167.95, \"timestamps\": [[0, 44.51], [43.67, 111.69], [103.29, 164.59]], \"sentences\": [\"A woman is shown speaking to the camera and holding up eyelashes.\", \" She then clips the lashes with a nail clipper and pours glue on the back.\", \" She then puts mascara on and finally the eyelashes while speaking to the camera.\"]}, \"v_yVKmkR78Jn0\": {\"duration\": 37.11, \"timestamps\": [[0, 9.28], [8.16, 26.16], [24.49, 35.62]], \"sentences\": [\"A group of women are seen wearing bikinis and washing vars.\", \" They dance with one another while rubbing rags all over the cars.\", \"  They continue dancing around and rubbing down rags.\"]}, \"v_CaQkeVwKiUs\": {\"duration\": 104.75, \"timestamps\": [[0, 0.52], [2.62, 3.14], [15.19, 23.04], [24.09, 24.62], [39.28, 40.85], [56.04, 96.37], [75.42, 83.27]], \"sentences\": [\"A guy enters a building through a door.\", \" A guy greets two sitting individuals.\", \" The guy point a gun at the individual pointing three guns.\", \" A man hits the individual pointing guns with a bowling pin.\", \" The guy pulls the head of the individual not pointing guns.\", \" The man bowls with the individual's head.\", \" The man tosses the head which the guy catches in a bag and shakes.\"]}, \"v_aOTtBZynDOQ\": {\"duration\": 79.67, \"timestamps\": [[0, 8.37], [8.37, 38.64], [38.64, 50.19], [51.39, 79.67]], \"sentences\": [\"An athlete practices tossing a Javelin in a track a field course.\", \"The athlete starts with two or three side steps and then proceeds to toss the Javelin.\", \" The athlete then increases his speed and steps.\", \" The athlete then increases his speed by sprinting aggressively from a longer distance and then doing the side steps prior to tossing the Javelin.\"]}, \"v_hvy_V1EWKEI\": {\"duration\": 222.77, \"timestamps\": [[0, 20.05], [27.85, 100.25], [118.07, 222.77]], \"sentences\": [\"A man is talking while doing a woman's hair.\", \" He cuts it into a style, then dries it.\", \" He shows off the final product.\"]}, \"v_hfBTv5b_Cok\": {\"duration\": 192.38, \"timestamps\": [[0, 37.51], [43.29, 137.55], [141.4, 192.38]], \"sentences\": [\"A group of men are shown in recording studios.\", \" Several men are shown playing drums and cymbals.\", \" A man is shown inside the studio talking and adjusting the sound levels.\"]}, \"v_niqc-dW54ic\": {\"duration\": 77.03999999999999, \"timestamps\": [[0.77, 18.49], [27.74, 55.47], [45.07, 75.89]], \"sentences\": [\"A man is shown speaking to the camera while a woman stands behind him.\", \" The man continues speaking and walks over to the girl.\", \" The girl walks and does tricks along the beam while the man spots her.\"]}, \"v_xbQQhK7wQZQ\": {\"duration\": 217.8, \"timestamps\": [[8.71, 58.81], [57.72, 62.07], [96.92, 105.63], [125.24, 131.77], [152.46, 159], [163.35, 191.67]], \"sentences\": [\"A woman is mixing ingredients into a bowl.\", \" She puts oil into the bottom of a pan.\", \" She pours the mixture into a pan on the oven.\", \" She continues to stir it.\", \" She then takes something out of a crock pot and puts it onto a plate.\", \" She frosts it and starts to cut it.\"]}, \"v_-MB6Wxglgzw\": {\"duration\": 196.6, \"timestamps\": [[0, 21.63], [22.61, 75.69], [76.68, 196.6], [164.16, 174.98]], \"sentences\": [\"Some boys are shown in a volleyball court outside, one boy serves the ball over and over again.\", \" Then everyone else is playing the game.\", \" A different set of teams is shown playing volley ball and then a few others.\", \" There is a baby sitting looking at the camera.\"]}, \"v_RAluocUocdw\": {\"duration\": 87.26, \"timestamps\": [[0, 17.02], [6.11, 32.29], [30.98, 87.26]], \"sentences\": [\"high ocean waves are shown from a coast.\", \" a man surfing is seen coming to his feet on his board.\", \" the man rides a large oncoming wave.\"]}, \"v_sWQ65uwxXbA\": {\"duration\": 126.87, \"timestamps\": [[0, 24.74], [26.01, 79.93], [81.83, 126.87]], \"sentences\": [\"a weight lifter is inside a gym.\", \" He does a squat while holding a barbell.\", \" He is then seen lifting the barbell keeping it close to his body and giving tips.\"]}, \"v_Ydep68S6ViE\": {\"duration\": 115.28999999999999, \"timestamps\": [[0, 2.88], [2.88, 85.89], [86.47, 89.35], [89.35, 110.1], [111.25, 115.29]], \"sentences\": [\"We see two opening title screens.\", \" We watch a series of ladies throwing the hammers on track surrounded by a green net.\", \" We see a table with people watching and an older man walking away from the table.\", \" We see one girl throw shotput two times.\", \" We then see the ending title screens.\"]}, \"v_R0B5bBr6t8w\": {\"duration\": 18.3, \"timestamps\": [[0, 1.01], [1.01, 6.5], [4.85, 6.86], [6.86, 9.97], [10.06, 18.3]], \"sentences\": [\"A man in grey throws a ball at a man in white.\", \" The man in white makes a layup shot and runs out of camera frame while the man in gray retrieves the ball.\", \" A second man in white throws a ball at the first man in white out of camera frame.\", \" The first man in white runs in and makes a layup shot while the second man retrieves the ball.\", \" The exercise with all three men is repeated.\"]}, \"v_TOBHIXCu4Ic\": {\"duration\": 123.62, \"timestamps\": [[0, 123.62], [0.62, 6.18], [0.62, 8.65]], \"sentences\": [\"This video shows viewers how dumb people are and what pure failure looks like.\", \"  First, the team throws a girl into the air, but when she comes back down she is on the ground.\", \" Next, another man grabs the woman and tries to hold her in the air using his hands, and he drops her causing both of them to fall to the ground.\"]}, \"v_UWTpfygMUQw\": {\"duration\": 173.94, \"timestamps\": [[0, 173.94], [9.57, 28.7], [15.65, 37.4], [26.09, 173.94]], \"sentences\": [\"Two men are standing on a roof.\", \" One of them cleans the roof with a pressure washer.\", \" Then they put cement on the tiles.\", \" Then they dry it with a blow dryer.\"]}, \"v_AFtFitXAFks\": {\"duration\": 154.11, \"timestamps\": [[0, 154.11], [6.16, 154.11], [13.1, 49.32], [43.92, 154.11]], \"sentences\": [\"A man is inside of a gym.\", \" He starts doing flips inside the gym.\", \" He does many tricks as he jumps in the air.\", \" He lands on his feet after the tricks.\"]}, \"v_v-LmMLpvsbk\": {\"duration\": 224.28, \"timestamps\": [[5.61, 224.28], [5.61, 223.16], [137.93, 139.05]], \"sentences\": [\"People are break dancing in the middle of a dance floor.\", \" People are sitting around them watching.\", \" A man does a long hand stand in the middle of the dance.\"]}, \"v_ZojEQYIV_o8\": {\"duration\": 198.69, \"timestamps\": [[0, 28.81], [40.73, 120.21], [126.17, 198.69]], \"sentences\": [\"A worn out dresser is inside a garage.\", \" A man shows how to use pieces of board to repair the furniture.\", \" He adds new boards before nailing them together.\"]}, \"v_yDH9iAn82Q8\": {\"duration\": 178.54, \"timestamps\": [[0, 27.67], [24.1, 76.77], [62.49, 132.12], [116.05, 175.86]], \"sentences\": [\"A close up of a salad is shown and leads into a person cutting up vegetables.\", \" The person boils pasta in a pot and puts in a strainer under cold water.\", \" The person mixes ingredients together in a bowl and then pours it onto the finished salad.\", \" She finishes by putting more cheese in and mixing it around.\"]}, \"v_1-Ud-q4y1oc\": {\"duration\": 80.02, \"timestamps\": [[0, 78.82], [17.6, 62.81], [64.41, 80.02]], \"sentences\": [\"A woman shows how to clean the bathroom.\", \"  She washes windows with windex.\", \"  She wipes it off with a rag.\"]}, \"v_1UIathRb404\": {\"duration\": 128.29, \"timestamps\": [[0, 12.83], [12.83, 25.66], [25.66, 34], [34, 118.67], [118.67, 128.29]], \"sentences\": [\"An athletic young man wearing athletic gear is standing outdoors, white words on the bottom left say \\\"The Hit\\\", and with a curved stick in his hands he hits a white ball very hard across the field and does this a few times at different angles and a view shows that he hits it into a goal.\", \"Four young men are shown standing on the field with their sticks standing along their sides and the text on the upper right say \\\"STICK LENGTH\\\", and multiple white words are on the right side.\", \"They move the sticks to the front of them and the word on the upper left say's \\\"GRIP\\\", and there's a lot of white words on the bottom.\", \"The young men take turns demonstrating various moves and white text appears on the upper left to say what they're doing, as well as a lot of white text appears on the screen to describe the movements.\", \"The very last person to demonstrate a move is a girl wearing bright pink NIKE shows, black shorts and a black hoodie, and just like the young men white words appear on the screen.\"]}, \"v_BhAQhPasmhU\": {\"duration\": 154.51, \"timestamps\": [[0, 37.08], [33.99, 108.15], [77.25, 149.87]], \"sentences\": [\"A person is seen spinning in circles and throwing a discuss.\", \" The person spins several more times and throws the object into a fence.\", \" The person spins around continuously in several different shots.\"]}, \"v_lQUqzLT7bl0\": {\"duration\": 96.75, \"timestamps\": [[0, 92.88], [76.91, 92.88], [92.39, 96.75]], \"sentences\": [\"old man is in a slide chair above snowy mountain.\", \" then jumps in the mountain and is skiing down the slope.\", \" when gets to the low part a lot of people is standing on skis.\"]}, \"v_hHMqyl_Dugs\": {\"duration\": 237.77, \"timestamps\": [[0, 42.8], [46.37, 150.99], [172.39, 237.77]], \"sentences\": [\"A man is creating a hole in the ice.\", \" He pulls a line from the waters beneath the hole.\", \" A fish pops out, and the man grabs it.\"]}, \"v_tb7s5a1H-IU\": {\"duration\": 151.35, \"timestamps\": [[0, 20.43], [20.43, 51.46], [51.46, 108.97], [108.21, 150.59]], \"sentences\": [\"A woman is standing alone inside her bathroom pointing towards her hair.\", \" She begins a tutorial and starts brushing through her wet hair and parting it.\", \" She uses a certain brand of spray and sprays t around her hair and then she picks up her blow dryer and a curling brush and begins to begins to blow dry her hair.\", \" Once her hair is dry she uses another type of spray and sprays throughout her hair, thought she curling but she was just straightening.\"]}, \"v_98OypfeTKEc\": {\"duration\": 41.19, \"timestamps\": [[0, 41.19], [0.21, 41.19], [0, 40.99]], \"sentences\": [\"women ar swinging on a backyard.\", \" thre women are swinging on the yard of a school.\", \" women are in Courtyard of a school having fun on swings.\"]}, \"v_FCiKVtVqTAA\": {\"duration\": 126.43, \"timestamps\": [[0, 3.16], [4.43, 122.01], [5.06, 106.84], [123.27, 126.43]], \"sentences\": [\"A black screen with white text explains that it is an instructional video on how to play a song on two congas.\", \"  A man in a music room standing behind congas plays the congas as after every part played is then slowed down to show more detail.\", \"  A small white box with black text appears at the top corner of the screen.\", \"  A black screen with white text showing a website address appears.\"]}, \"v_9Bo7Hr77DgA\": {\"duration\": 51.8, \"timestamps\": [[0, 3.89], [5.18, 27.46], [29.01, 51.8]], \"sentences\": [\"A blonde woman is seated in front of the camera.\", \" she uses a toothbrush to brush her teeth.\", \" She continues brushing for a long while.\"]}, \"v_BJ9r8_JnG0k\": {\"duration\": 224.03, \"timestamps\": [[0, 75.05], [75.05, 118.73], [118.73, 174.74], [174.74, 192.66], [192.66, 212.83]], \"sentences\": [\"A male fitness trainer from Iron Edge is about to demonstrate various workouts using bars.\", \" The man then shows how to work the monkey bars in multiple ways.\", \" Then the trainer shows how to maneuver straight bar, pulleys, and medicine ball.\", \" Furthermore, the athletic male shows pull ups.\", \" A workout regimen is displayed as part of the conclusion of the demonstration.\"]}, \"v_8v2ewQE-QK0\": {\"duration\": 217.07999999999998, \"timestamps\": [[0, 27.14], [39.08, 136.76], [162.81, 217.08]], \"sentences\": [\"A funeral is in progress inside a building.\", \" A band marches in and plays music.\", \" The group sits in the pews as they mourn.\"]}, \"v_qs_VoH8fOhs\": {\"duration\": 192.49, \"timestamps\": [[0, 40.42], [41.39, 128.97], [136.67, 192.49]], \"sentences\": [\"Several family members are shown packing up a box in a living room.\", \" They run around and put up a christmas tree together.\", \" They then decorate the tree with ornaments.\"]}, \"v_Pt5jMqQXTZ8\": {\"duration\": 10.26, \"timestamps\": [[0, 10.26], [3.95, 5.85], [7.03, 10.26]], \"sentences\": [\"A woman is standing in front of a truck full of wood.\", \" She place a piece of wood onto a tree stump.\", \" She swings an ax at the wood and chops it up.\"]}, \"v_uMGfCaGMnEE\": {\"duration\": 73.38, \"timestamps\": [[0, 73.38], [2.94, 73.38], [23.48, 31.92], [30.82, 73.38]], \"sentences\": [\"A woman is shown standing at a bar.\", \" She is talking about something.\", \" She opens a bottle and pours it into a glass.\", \" She adds other ingredients to make the drink.\"]}, \"v_GSo0lqq5zmM\": {\"duration\": 182.18, \"timestamps\": [[0, 54.66], [54.66, 118.42], [118.42, 162.14], [162.14, 182.18]], \"sentences\": [\"Three men are standing in a room talking to three other people who are dressed in a black and reg hoodie with their team name on.\", \"After,the three men take their hoodies out of a bag and they begin to play a game.\", \"Once all dressed,each of them appear in an in door rink in wheel chairs and begin playing the slider game.\", \"Finally,the game ends and a man takes his jersey off,throws it on the ground and walks out of the warehouse.\"]}, \"v_ZOQSDsJYXIA\": {\"duration\": 98.59, \"timestamps\": [[0, 11.83], [16.27, 56.2], [43.38, 98.59]], \"sentences\": [\"The young athlete run in the track and jumped and landed on the sandy part.\", \" The athlete in yellow ran and hopped and jump as the woman in white raised the red flag.\", \" Male athletes one by one are running and then hopped and jumped and landed on sandy ground.\"]}, \"v_5vd8j0hKIgs\": {\"duration\": 23.31, \"timestamps\": [[3.38, 4.55], [3.38, 15.85], [15.97, 19]], \"sentences\": [\"A woman is hanging from two bars.\", \" She starts to work out on the bars.\", \" She stops and puts her feet on the ground.\"]}, \"v_Ht9WSqhFD34\": {\"duration\": 89.65, \"timestamps\": [[7.17, 30.03], [29.14, 37.65], [67.24, 79.79]], \"sentences\": [\"A boy is shooting a bow and arrow at a target.\", \" He pulls bows out of a bucket to shoot them.\", \" Another little boy shoots an arrow at a target.\"]}, \"v_LkUnT9fMIXc\": {\"duration\": 21.73, \"timestamps\": [[0, 4.56], [5.32, 21.73], [13.26, 15.97]], \"sentences\": [\"A man throws a curling ball down ice.\", \" Two people buff the ice in front of the ball.\", \" A man slips and falls on the ice.\"]}, \"v_VUvEWwghANE\": {\"duration\": 109.55, \"timestamps\": [[0.55, 29.03], [27.39, 83.81], [68.47, 104.07]], \"sentences\": [\"A man is seen standing on a roof using a tool to pull up tile.\", \" Several clips are shown of the man ripping up tiles on the roof.\", \" The man continues to work with others.\"]}, \"v_SBj7yuFEwQI\": {\"duration\": 131.82, \"timestamps\": [[7.91, 31.64], [30.98, 54.71], [56.68, 117.32]], \"sentences\": [\"A man is standing in front of a wooden fence talking.\", \" He is now standing in front of a shed talking.\", \" He pours paint into a bucket and begins to spray paint the fence.\"]}, \"v_l9o9R7UcPuc\": {\"duration\": 153.99, \"timestamps\": [[0, 153.99], [26.95, 153.99], [34.65, 153.99], [64.67, 153.99]], \"sentences\": [\"A man in a blue shirt stands outside.\", \" He holds up a pitch fork.\", \" He is talking to the camera.\", \" He uses it to remove the tiles on the roof.\"]}, \"v_u3XYsINR-y4\": {\"duration\": 169.73, \"timestamps\": [[0, 48.37], [50.92, 124.75], [110.32, 163.79]], \"sentences\": [\"Two women are seen playing different instruments in different frames.\", \" One plays a violin while the others plays the piano.\", \" The two continue to play together in separate frames.\"]}, \"v_dd1LE0m_KVg\": {\"duration\": 84.13, \"timestamps\": [[0, 81.6], [0, 84.13], [82.44, 84.13]], \"sentences\": [\"People are standing up playing the drums.\", \" Two people in red shirts are playing bass drums in the back.\", \" They stop playing and one of the men walks off.\"]}, \"v_tBNOJJx4Z9k\": {\"duration\": 127.85, \"timestamps\": [[0, 10.23], [16.62, 33.88], [44.75, 127.85]], \"sentences\": [\"A woman is standing inside her kitchen.\", \" She removes a bottle from her cabinet and sets it down.\", \" She then shows how to fill a cup and use it for washing.\"]}, \"v_uOk4EFDsDP4\": {\"duration\": 54.15, \"timestamps\": [[25.18, 32.22], [34.66, 38.99], [45.49, 46.03]], \"sentences\": [\"A boy mixes noodles in a bowl.\", \" He puts the noodles onto a plate.\", \" A woman standing next to him takes a bite of the noodles.\"]}, \"v_fbIEeQknsuo\": {\"duration\": 223.59, \"timestamps\": [[0, 223.59], [6.71, 40.25], [27.95, 50.31], [43.6, 194.52], [60.37, 200.11], [107.32, 196.75], [190.05, 223.59]], \"sentences\": [\"There are several tourist on a beach enjoying camel back rides.\", \" Some of the tourists are already on the camels while the others are waiting for their turn.\", \" The camel owner who is dressed in a large robe helps the tourists climb up on the camel's back as they begin their ride.\", \" The camels start to walk on the wet sands on the shore.\", \" Several tourists walk alongside the camels while some them ride the camels.\", \" A group of tourists are riding the camels as they enjoy themselves.\", \" One of the tourists smiles as she poses for the camera while on the camel's back.\"]}, \"v_hu714U34avg\": {\"duration\": 237.75, \"timestamps\": [[0, 66.57], [66.57, 149.78], [149.78, 230.62], [230.62, 237.75]], \"sentences\": [\"A group of women are walking around in a workout room,one is making steps in place while talking to her friend and the other one is looking at herself in the mirror.\", \"The instructor then walks in and they all begin doing a routine together.\", \"In the beginning,they start out moving their arms but they eventually increase the workout by adding in the stepper and walking around the room.\", \"Once the ladies have completed their workout,one remains in the room,grabs her water and walks around in a circle to calm her heart rate.\"]}, \"v_0nPeqy-DA2E\": {\"duration\": 202.9, \"timestamps\": [[0, 202.9], [8.12, 53.77], [24.35, 82.17], [138.98, 202.9]], \"sentences\": [\"Two little girls with curlers are sitting at the counter.\", \" The girls are talking to the camera, one of the girls is licking the food in her fork.\", \" The girl in pink shirt is kissing the cheek of the other girl and began poking her.\", \" The girls are eating and talking to the camera.\"]}, \"v_feY5JrgSpzE\": {\"duration\": 65.99, \"timestamps\": [[0, 13.86], [14.19, 46.19], [46.85, 63.68]], \"sentences\": [\"A man is seen kneeling on the floor holding a pole.\", \" He begins moving himself forward on the pole.\", \" He then stands in front of a wall pushing himself forward.\"]}, \"v_Z2KHO87wHzg\": {\"duration\": 110.22999999999999, \"timestamps\": [[0, 7.16], [3.31, 11.57], [9.37, 24.8], [25.9, 110.23]], \"sentences\": [\"A bottle of sunscreen is shown.\", \" A blue sun is then shown.\", \" Several pictures related to sunscreen is shown.\", \" More product information is then shown.\"]}, \"v_yUbdrBSmUHE\": {\"duration\": 139.34, \"timestamps\": [[0, 9.06], [9.75, 133.77], [35.53, 65.49], [75.25, 86.39], [86.39, 139.34]], \"sentences\": [\"A website address is seen and then the words \\\"Introduction to rope skipping\\\".\", \" Then there is a girl in shorts and a tank top jumping rope.\", \" She then does some jumping with her legs out to the sides, front to back, then crossing her arms.\", \" Then she does some while twisting her hips back and forth.\", \" She does a few more variations and at the end we see the website listed again.\"]}, \"v_-g-qMUjVA-s\": {\"duration\": 62.69, \"timestamps\": [[0, 7.84], [12.85, 47.96], [49.21, 62.69]], \"sentences\": [\"A man is riding a bike along a long roof.\", \" He does a wheelie as he goes.\", \" He turns and goes back the other way.\"]}, \"v_AXw2bkQyRPo\": {\"duration\": 112.00999999999999, \"timestamps\": [[0, 105.29], [34.72, 105.29], [110.89, 112.01]], \"sentences\": [\"A man and a woman are dancing together in a room.\", \" They are twirling around on the floor.\", \" They finish dancing and the woman walks to the camera.\"]}, \"v__MR8G1jwM4o\": {\"duration\": 201.55, \"timestamps\": [[0, 24.19], [37.29, 119.92], [133.02, 201.55]], \"sentences\": [\"a woman stands in front of a elliptical machine and starts talking to the camera.\", \" a row of treadmills is shown.\", \" a woman then demonstrates the exercise machine.\"]}, \"v_N49yT-kvXuw\": {\"duration\": 146.57, \"timestamps\": [[0, 13.19], [16.85, 76.21], [79.15, 146.57]], \"sentences\": [\"an aerial view of a ski resort is shown.\", \" several people climb the hills with snowboards and skis.\", \" They talk to the camera between views of them skiing and boarding down the snowy hills.\"]}, \"v_B4qwjeJBk0s\": {\"duration\": 199.0, \"timestamps\": [[0, 38.8], [42.78, 141.29], [123.38, 194.02]], \"sentences\": [\"A large scenery is shown with a car driving and people getting out.\", \" The people then begin riding long roads down a long road while the car follows from behind.\", \" The car continues to follow the people riding around on boards and ends with the men packing up and leaving.\"]}, \"v_G71xFbDSSno\": {\"duration\": 30.33, \"timestamps\": [[0, 30.33], [3.64, 30.33], [14.56, 30.33]], \"sentences\": [\"The baby is looking at the camera and then the hand wiped his face.\", \" The hand wiped the baby's face and the baby opened his mouth.\", \" The hand wiped the side of the baby's face and nose and the baby clapped.\"]}, \"v_8nyOw9vBh2E\": {\"duration\": 158.96, \"timestamps\": [[0, 27.02], [27.02, 129.56], [133.53, 158.96]], \"sentences\": [\"A group of people gather inside a ring.\", \" Two boxers are getting ready to fight.\", \" They engage in punching and fighting each other.\"]}, \"v_9I4H8O6B7yM\": {\"duration\": 139.74, \"timestamps\": [[0, 10.48], [11.18, 135.55], [135.55, 139.74]], \"sentences\": [\"A person is sitting on a dirt bike outdoors.\", \" The person races and jumps the dirt bike across numerous outdoor terrains.\", \"  The video ends with a shot of the undercarriage of the bike in midair.\"]}, \"v_3f6G-qzwzfg\": {\"duration\": 205.36, \"timestamps\": [[1.03, 203.3], [23.62, 64.69], [64.69, 201.25]], \"sentences\": [\"Two teams of cricket players play in a ODI game in front of a large audience in the bleachers with high lights shown when goals achieve with the green and yellow team celebrating the most throughout the video.\", \"  A team of green and yellow outfitted cricket players pay ball on the field with one player staring another down with a menacing look.\", \" The teams continue to play with the yellow and green team in the end celebrating.\"]}, \"v_P-04xkAdWSY\": {\"duration\": 30.19, \"timestamps\": [[0, 5.43], [5.13, 18.56], [18.11, 30.19]], \"sentences\": [\"three people are kneeling on a track.\", \" the three people begin running very slowly across the track and field.\", \" the camera zooms in to show the men as being very large.\"]}, \"v_t-8wEopB3AQ\": {\"duration\": 194.72, \"timestamps\": [[0, 7.79], [7.79, 24.34], [24.34, 138.25], [138.25, 194.72]], \"sentences\": [\"A man is stading outside by the a pretty blue body of water in Thailand preparing to go scuba diving.\", \"Then, a white boat appears with the man in them before going down under water to experience the coral reef and the other life forms.\", \"While the guy is scuba diving,men are shown on the boat talking and they all eventually join the man at the bottom.\", \"A shrimp appears walking across the sand and the men continue being shown in and out of the water.\"]}, \"v_wZZ1W6D1nwA\": {\"duration\": 58.56, \"timestamps\": [[0.88, 46.85], [11.71, 46.85], [27.82, 55.34]], \"sentences\": [\"A group of people are seen standing in a gym jumping rope.\", \" The people jump together while others watch on the side.\", \" The group continues jumping rope with one another.\"]}, \"v_tGHLUWWm_zU\": {\"duration\": 187.55, \"timestamps\": [[0, 1.88], [1.88, 93.77], [93.77, 187.55]], \"sentences\": [\"A close up of a corner of a room is shown.\", \" A man applies plaster to a wall with tools.\", \" The man applies plaster to a different wall with tools.\"]}, \"v_JjGhHZgdWVI\": {\"duration\": 112.92, \"timestamps\": [[0, 2.82], [9.6, 105.01], [105.01, 112.92]], \"sentences\": [\"A man shows a yellow post it note in front of the camera.\", \" A man is welding something on the ground.\", \" He stands up and sets the hose down.\"]}, \"v_fs-goyuhTi8\": {\"duration\": 12.15, \"timestamps\": [[0, 6.74], [6.13, 10.63], [10.02, 12.15]], \"sentences\": [\"An old woman is hitting the pinata.\", \" The woman hugged the yellow pinata.\", \" The woman walked over to the other girl and about to hand her the stick.\"]}, \"v_GhXniQgRUTY\": {\"duration\": 121.88, \"timestamps\": [[0, 39.61], [35.96, 89.58], [81.05, 121.27]], \"sentences\": [\"A large group of people are seen standing around with a woman speaking in front.\", \" The woman moves back and fourth demonstrating to the class and begins leading an exercise class.\", \" The group follows the woman's movements, moving up and down on a beam.\"]}, \"v_NFErgnaSRRY\": {\"duration\": 78.3, \"timestamps\": [[7.44, 16.83], [17.23, 21.14], [36.8, 78.3]], \"sentences\": [\"A pumpkin is being carved by someone.\", \" They put a roll of toilet paper inside the pumpkin.\", \" They pour something from a bottle into the pumpkin and light it on fire.\"]}, \"v_UYGiq0CsYEs\": {\"duration\": 83.55, \"timestamps\": [[0, 80.2], [2.51, 80.2], [5.01, 80.2], [7.94, 80.2]], \"sentences\": [\"A man is standing at a microphone in front of a crowd.\", \" He is playing the drums on stage.\", \" He appears to be singing at the same time.\", \" A bright light shines from behind him.\"]}, \"v_fgP2pf2rh4Q\": {\"duration\": 235.56, \"timestamps\": [[0, 45.93], [44.76, 235.56], [122.49, 235.56]], \"sentences\": [\"woman s sitting in front of a camera and putting pink lipsticks on her lips.\", \" the girl grabs a cigarrette and start smoking and is trying to make circles with the smoke.\", \" the woman is siting and lays on the bed to keep smoking.\"]}, \"v_TGvY7GtyTK4\": {\"duration\": 106.3, \"timestamps\": [[0, 106.3], [62.19, 71.22], [71.22, 79.73], [79.73, 106.3]], \"sentences\": [\"A fit man is in a mirrored room with wooden floors and is talking while he is moving on the ground and looking at the camera.\", \"The man is bent on his knees and suddenly he jumps up to his feet, but keeps his knees bent while he squats low to the ground continuing to talk.\", \"The man then puts his two hands on the ground, and pushes his feet back to go back on his knees and demonstrates one more time how he jumps from his knees to his toes.\", \"The man then spreads himself out to lie down and talk closer to the camera until he ends it with a smile.\"]}, \"v_bBtzyRzk0UM\": {\"duration\": 214.76, \"timestamps\": [[0, 34.36], [34.36, 138.52], [152.48, 214.76]], \"sentences\": [\"A dance floor is shown covered in ballerinas.\", \" A woman talks to the camera in an interview.\", \" She shows off her exercise routine before the big performance.\"]}, \"v_vth3IYGHu5k\": {\"duration\": 161.05, \"timestamps\": [[0, 108.71], [0, 79.72], [79.72, 161.05]], \"sentences\": [\"blonde woman is running in a race track and make a jump in an elastic bed.\", \" in the background people are running around the court.\", \" women are kneeling down in the racetrack and runs and in the end makes a long jump.\"]}, \"v_zKHMKAOb1iw\": {\"duration\": 30.09, \"timestamps\": [[1.2, 1.81], [8.73, 13.99], [21.07, 24.83]], \"sentences\": [\"A person is buffing the ice in front of a ball.\", \" A man slides a curling ball down the lane.\", \" People are standing at the end of the lane cheering.\"]}, \"v_Lb43_7s9t7E\": {\"duration\": 128.52, \"timestamps\": [[0, 23.78], [21.21, 86.11], [86.11, 128.52]], \"sentences\": [\"a crowd is gathered in a gym.\", \" two men enter a circle of people.\", \" the two men then begin fighting capeiro style.\"]}, \"v_5WWvCSCGXmc\": {\"duration\": 231.2, \"timestamps\": [[0, 27.74], [39.3, 143.35], [153.75, 231.2]], \"sentences\": [\"A group of dirt bike riders race along a path.\", \" They are engaged in a bmx dirt bike race.\", \" They go over hills and around the curves to the finish line.\"]}, \"v_OXbfnzs-qUU\": {\"duration\": 58.07, \"timestamps\": [[0, 16.84], [15.1, 42.68], [42.97, 56.33]], \"sentences\": [\"A woman is seen knitting while speaking to the camera and another girl walking into frame.\", \" The girls continue to speak with one another while the girl knits.\", \" The continue with their conversation.\"]}, \"v_qGID8CHyClA\": {\"duration\": 123.62, \"timestamps\": [[0, 106.32], [2.47, 106.32], [106.32, 123.62]], \"sentences\": [\"People are playing a game of tug of war on the grass.\", \" A man in a red shirt is walking next to them.\", \" They stop playing and set the rope down.\"]}, \"v_RIr3Y2XS5NA\": {\"duration\": 153.41, \"timestamps\": [[2.3, 3.07], [6.14, 6.9], [7.67, 8.44], [8.44, 9.2], [11.51, 13.04], [20.71, 128.86], [138.06, 148.8]], \"sentences\": [\"People are standing in front of a counter.\", \" People are walking towards a yellow bus.\", \" People are riding on a yellow bus.\", \" A black van drives beside the yellow bus.\", \" People unload inflated boats from a trailer.\", \" People row inflated boats on a rocky body of water.\", \" The credits of the clip are shown.\"]}, \"v_dFgwKTH-FhY\": {\"duration\": 15.67, \"timestamps\": [[0, 15.67], [0.24, 15.67], [1.72, 15.67]], \"sentences\": [\"A large waterfall of a river is shown.\", \" People are going down the waterfall on blue rafts.\", \" A man is standing in the water watching them go by.\"]}, \"v_Y1UwPTU61uk\": {\"duration\": 99.96000000000001, \"timestamps\": [[0, 12], [13.49, 65.97], [69.47, 98.46]], \"sentences\": [\"a woman is seen standing before a beam and lifts herself up performing tricks.\", \" The man flips herself all along the beam while others watch on the side.\", \" She continues flipping on the beam and end by jumping off with her arms up.\"]}, \"v_U6S8a3WI19w\": {\"duration\": 117.77000000000001, \"timestamps\": [[0, 117.77], [0, 116.01], [4.12, 116.01], [0, 114.83]], \"sentences\": [\"women are playing beach soccer on a large field.\", \" people are walking around the court next to the stands.\", \" peolpe are sitting on stands watching the game.\", \" pople are in a sunny day playing and watching the game.\"]}, \"v_KyrDumISv4A\": {\"duration\": 72.88, \"timestamps\": [[0, 19.31], [16.03, 50.65], [53.57, 72.15]], \"sentences\": [\"A woman speaks to the camera and shows a car bending down on a mat.\", \" Another girl performs kicks down the mat while a man follows from behind.\", \" The girls move back to the beginning performing tricks.\"]}, \"v_CMYeHWoB1FM\": {\"duration\": 13.79, \"timestamps\": [[0, 1.31], [1.45, 12.97], [13.1, 13.79]], \"sentences\": [\"A person is peeling a potato in a sink.\", \" The water runs as the person peels.\", \" The person finishes and picks up another potato.\"]}, \"v_Pcro3S-4EnQ\": {\"duration\": 150.32, \"timestamps\": [[0, 40.59], [25.55, 101.46], [96.2, 150.32]], \"sentences\": [\"two kids are sitting a table in a library.\", \" the girl takes eyeliner and and applies it to a boy's eye.\", \" the boy then laughs at his reflection.\"]}, \"v_2aw1pVJsnKs\": {\"duration\": 93.78999999999999, \"timestamps\": [[0, 20.63], [18.76, 66.59], [57.21, 91.91]], \"sentences\": [\"A person is seen riding along on a dirt bike and crashes onto the side.\", \" Several clips are shown afterwards of people riding around on bikes crashing onto the side.\", \" More people crash their bikes as others watch on the side.\"]}, \"v_1Se1ZqCSQvk\": {\"duration\": 124.17, \"timestamps\": [[0, 4.97], [8.07, 15.52], [16.14, 90.02], [90.02, 124.17]], \"sentences\": [\"A person's hands are seen sharpening a knife over a counter and the intro says \\\"Kitchen Tricks Sharpening Knives\\\".\", \" Then there is a tools needed list on the screen and a bowl, sharpener, and other tools are seen on the counter.\", \" Giving the instructions and explanation on the screen along the way, the person wets the stones in water, then sharpens a knife on a sharpening stone and then on a knife sharpening tool.\", \" Then they show how to use the bottom of a bowl to sharpen, afterwards cutting a tomato and at the end a website address is shown.\"]}, \"v_aVH9QsSATKM\": {\"duration\": 136.42000000000002, \"timestamps\": [[2.73, 33.42], [23.87, 90.72], [81.85, 135.74]], \"sentences\": [\"A person is seen having his back shaved and signing a piece of paper.\", \" A man then begins tattooing the other man while the speak to one another.\", \" The artist continues tattooing and the man looks and speaks to him in the end.\"]}, \"v_9PxPcJS47js\": {\"duration\": 225.19, \"timestamps\": [[0, 12.39], [12.39, 33.78], [33.78, 56.3], [56.3, 209.42], [209.42, 225.19]], \"sentences\": [\"Two men meet to compete in a slack line competition.\", \" A bald headed man performs tricks on a yellow trick line.\", \" The man wearing a baseball cap performs tricks on a traditional line.\", \" The camera pans back to the bald man performing trick on the slack line and back to the man wearing a baseball cap performing tricks on the traditional line.\", \" The slack line athletes finish competing and shake hands  at the finish.\"]}, \"v_hsPepNAzu_Q\": {\"duration\": 86.05, \"timestamps\": [[0, 13.77], [14.2, 46.47], [56.8, 86.05]], \"sentences\": [\"a woman is seated outside, talking to the camera.\", \" Several people are shown riding horses along a path.\", \" they walk back casually to the stables.\"]}, \"v_CQocaUwWcQI\": {\"duration\": 37.99, \"timestamps\": [[0, 37.99], [2.85, 27.54], [37.42, 37.99]], \"sentences\": [\"A man runs down a track and jumps into a pile of sand several times.\", \" People are standing on the side watching him.\", \" People are sitting down next to the sand.\"]}, \"v_xJ23geP1Hss\": {\"duration\": 191.26, \"timestamps\": [[0, 174.05], [0, 189.35], [178.83, 189.35]], \"sentences\": [\"woman is walking in a court, kneel on the floor and start doing a choreography.\", \" a lot of people are sitting on stands watching the woman in the middle of the court.\", \" the judge points are shown on screen.\"]}, \"v_fklBsM-H7-Y\": {\"duration\": 103.42, \"timestamps\": [[0, 33.61], [33.1, 68.78], [69.81, 103.42]], \"sentences\": [\"A middle aged man is sitting down on a black couch playing the guitar in front of him.\", \"While the guy is playing,he has his sheet music on the wooden table in front of him reading the music.\", \"As he continues playing,he never looks up from the table implying that he doesn't know any of the notes by heart.\"]}, \"v_YjE1by2PX08\": {\"duration\": 73.03, \"timestamps\": [[0, 9.86], [19.35, 51.48], [55.87, 73.03]], \"sentences\": [\"A tractor is driving down a path.\", \" It is using its scoop down in the snow.\", \" It scoops the snow and puts it away.\"]}, \"v_5QS_VBDwKzw\": {\"duration\": 142.5, \"timestamps\": [[0, 39.19], [26.36, 81.94], [80.51, 114], [109.73, 142.5]], \"sentences\": [\"A small child is seen sitting on the floor when an adult walks into frame.\", \" The woman begins putting rollers in the girls hair while smiling to one another.\", \" She looks in the mirror and is shown again with curly hair on the couch.\", \" She holds a doll walking around while a woman changes a baby's diaper.\"]}, \"v_CXbVcrVgNzQ\": {\"duration\": 46.39, \"timestamps\": [[0, 16.47], [16.24, 41.75], [43.84, 46.39]], \"sentences\": [\"A child irons a yellow tshirt.\", \"  She then irons another shirt.\", \"  She throws it on the floor at the end.\"]}, \"v_I91LmNcwN4Y\": {\"duration\": 126.46, \"timestamps\": [[0, 22.76], [22.76, 51.21], [51.21, 82.83], [82.83, 126.46]], \"sentences\": [\"A woman is standing outside with some white furniture.\", \" She begins to point and explain the process to paint her furniture yourself like a DIY project.\", \" After she shows the colors of the paint that she is planning to use  then she grabs some grey paint and paint brush ans begins at the top of the white chair.\", \" She dabs around on the chair a bit with a piece of cloth and then picks up another jar of paint.\"]}, \"v_R8vqzwGs6aE\": {\"duration\": 206.96, \"timestamps\": [[0, 58.98], [53.81, 146.94], [134.52, 203.86]], \"sentences\": [\"A camera pans around target and leads into a woman shooting a bow and arrow.\", \" More people are shown shooting the bow and arrow as well as the camera looking around targets.\", \" One woman continues using her bow and walks over and grabs them.\"]}, \"v_i5-OVkjT0nM\": {\"duration\": 201.64, \"timestamps\": [[0, 18.15], [18.15, 62.51], [62.51, 93.76], [93.76, 201.64]], \"sentences\": [\"red lemonade is shown in a jar on a wooden chair.\", \" ingredients are shown on a table.\", \" the juice is pour on a jar and mixed with sugar and water and its put on the fridge.\", \" a red tea is prepared in a pyrex and is mixed with the lemonade and serve in a jar.\"]}, \"v_IAtxK0w_ybY\": {\"duration\": 177.7, \"timestamps\": [[0, 17.77], [17.77, 52.42], [52.42, 132.39], [132.39, 177.7]], \"sentences\": [\"two women are standing in a kitchen talking to the camera.\", \" to make syrup women pour water and sugar in a pot and heat till the sugar disolves.\", \" woman cuts the lemon, des seed, chop them and put them on the blender.\", \" then pour the juice in the syrup and serve in a clear cup.\"]}, \"v_mk3srKjFB3A\": {\"duration\": 49.6, \"timestamps\": [[0.99, 4.96], [6.7, 28.27], [29.76, 48.61]], \"sentences\": [\"A man is seen with his arm up and waves to an audience.\", \" He then climbs up on a beam and begins spinning around.\", \" He continues spinning and ends by jumping down and bowing to the audience.\"]}, \"v_6fWXqCWuU9Y\": {\"duration\": 193.26, \"timestamps\": [[0, 34.79], [27.06, 65.71], [56.05, 114.99], [110.16, 193.26]], \"sentences\": [\"four men walk along a beach.\", \" the men lay backpacks on the sand.\", \" the men then changes their attire.\", \" the men then put on sunglasses and take off running.\"]}, \"v_QV4E2B0AdGw\": {\"duration\": 177.07999999999998, \"timestamps\": [[0, 24.79], [33.64, 110.67], [108.9, 144.32], [131.04, 175.31]], \"sentences\": [\"A close up of a man is seen laying on a table looking to his side.\", \" Another person is then seen putting a tattoo on his chest and pans over to another girl talking.\", \" She shows off her tattoos and the artist continues working.\", \" The in the end he shows off his new tattoo.\"]}, \"v_GO_36Qd9bb0\": {\"duration\": 191.47, \"timestamps\": [[2.87, 52.65], [33.51, 135.95], [134.99, 190.51]], \"sentences\": [\"A group of people are seen standing and speaking to an audience.\", \" They move places and begin dancing with one another.\", \" The group continues dancing with a partner and end by posing.\"]}, \"v_39HCogCoD7Y\": {\"duration\": 184.11, \"timestamps\": [[0, 69.04], [55.23, 130.72], [127.04, 175.83]], \"sentences\": [\"A woman is seen speaking to the camera and leads into several clips of a home and a person spraying a hose.\", \" A person pulls up weeds and lays down dirt for flowers.\", \" The woman continues laying down soil and showing off her flowers.\"]}, \"v_iMB_mb11KWM\": {\"duration\": 50.06, \"timestamps\": [[0, 9.76], [8.26, 30.29], [29.29, 50.06]], \"sentences\": [\"two teams are positioned on a field.\", \" a crowd watches from the side of the field.\", \" the two teams then begin to play tug of war.\"]}, \"v_nMFEEBtIu-Y\": {\"duration\": 227.09, \"timestamps\": [[0, 30.66], [42.01, 138.53], [137.39, 223.69]], \"sentences\": [\"A group of men are seen playing instruments together.\", \" The band continues as the man up front sings into the microphone.\", \" The men continue to play together and end by stopping and looking around.\"]}, \"v_Ls-0SqAeXW0\": {\"duration\": 96.6, \"timestamps\": [[0, 45.4], [45.4, 73.9], [74.38, 96.6]], \"sentences\": [\"Two individuals are inside of a small room with three white walls and a glass wall behind them stretching and holding a tennis racket.\", \"An intense game begins and the two run from side to side taking turns hitting the ball making sure the ball doesn't stop.\", \"After some time,the two guys take a break before going back at it and hitting the ball again.\"]}, \"v_NsqW8ZwYDEk\": {\"duration\": 187.35, \"timestamps\": [[0, 19.67], [19.67, 82.43], [82.43, 150.82], [150.82, 187.35]], \"sentences\": [\"Two men are standing in the inside of a room with several animal heads on the wall as well as archery posters.\", \"One guy is standing still holding an bow and arrow in his hand silently as the man in front of him talks about the proper way to shoot the bow.\", \"In between the man talking,the other guy begins doing a few demonstrations and aiming at the target on the other end of the wall.\", \"After several releases of the boy,the target is zoomed in on and the guy comes back to talk about what just took place.\"]}, \"v_K2dU4-Rg354\": {\"duration\": 122.09, \"timestamps\": [[0, 11.6], [14.04, 56.77], [65.32, 122.09]], \"sentences\": [\"A man does a pole vault and fails the first time.\", \"  A few replays are shown of his failures.\", \"  A second person goes and still has troubles.\"]}, \"v_xmSN6La-2vQ\": {\"duration\": 116.91, \"timestamps\": [[0, 7.6], [8.18, 36.24], [33.32, 112.82]], \"sentences\": [\"A young girl is seen speaking to the camera and pointing to her eyes.\", \" She then takes out a pair of contacts and puts it in a container.\", \" She then puts the contact back in and continues speaking to the camera.\"]}, \"v_ujltXvkQK_g\": {\"duration\": 162.26, \"timestamps\": [[0, 8.11], [17.04, 68.96], [69.77, 141.98], [142.79, 162.26]], \"sentences\": [\"A large white building is seen and the words CBS Sports in gold.\", \" A newscaster starts speaking and goes on to talk about a football player while footage of the man plays.\", \" The man in question then speaks for awhile and then his coach.\", \" At the end footage is shown of the man playing lacrosse at the time the video was made.\"]}, \"v_Fr7rhb2Vw_k\": {\"duration\": 153.23, \"timestamps\": [[0, 13.02], [18.39, 59.76], [66.65, 153.23]], \"sentences\": [\"A man is standing inside a building.\", \" He points out all the different tools he needs.\", \" A woman then shows how to hang wallpaper inside a house.\"]}, \"v_HzAlvJ1fNWU\": {\"duration\": 48.51, \"timestamps\": [[0, 13.58], [11.64, 31.04], [30.32, 47.78]], \"sentences\": [\"Two people are seen riding in tubes down a mountain.\", \" Several more people are shown shortly afterwards riding down.\", \" More people ride on tubes with one looking back at the camera.\"]}, \"v_s0-xTG38cPw\": {\"duration\": 46.12, \"timestamps\": [[0, 5.3], [4.38, 30.21], [19.37, 45.42]], \"sentences\": [\"A man is seen smoking a pipe and blowing smoke out of his nose.\", \" He tilts his head back and blows out several smoke rings while looking at the camera.\", \" He continues taking puffs and blowing smoke into the air.\"]}, \"v_YigV1ARspVU\": {\"duration\": 36.2, \"timestamps\": [[0, 5.43], [5.61, 23.35], [23.53, 36.2]], \"sentences\": [\" A large bumper car pileup is occurring with kids at the wheels.\", \" The pileup is broken briefly.\", \"  Another pileup occurs preventing much movement by the cars.\"]}, \"v_i1PpX1IOcIs\": {\"duration\": 184.02, \"timestamps\": [[0, 17.48], [17.48, 82.81], [82.81, 97.53], [97.53, 117.77], [117.77, 184.02]], \"sentences\": [\"A man doing squats using extremely heavy weights as heavy metal music plays throughout the whole clip.\", \" People can be seen entering and exiting the location as he takes a break.\", \" A black screen appears with words going down it.\", \" A man lifts heavy weight over his head then throws it down on the floor.\", \" The judges and  audience can be seen as the man exits the stage.\"]}, \"v_dcMFJ-8Eo7g\": {\"duration\": 153.14, \"timestamps\": [[0, 19.14], [19.14, 55.89], [55.89, 117.91], [117.91, 153.14]], \"sentences\": [\"A blue piece of floor with holes in the middle is covered by a bald man in black jacket.\", \" The covered floor is shown followed by the machine that cuts the tiles and adhesive to be used.\", \" The adhesive is mixed and applied to the floor and put the tile little by little, the picture of the entire room with the tile installed are shown.\", \" A small swimming pool with dolphin image is shown and the information regarding the tiling expert.\"]}, \"v_vvk6f13VO5c\": {\"duration\": 62.31, \"timestamps\": [[16.82, 48.6], [16.82, 29.91], [30.22, 48.6]], \"sentences\": [\"A group of young people play soccer in a large sand pit bordering a large green field.\", \"  A group of young men and one woman play soccer in a sand pit using their feet to kick and sometimes their heads.\", \"  The young people continue to play competitively sometimes slipping in the sand in an effort to dominate the soccer ball.\"]}, \"v_RaQE93FNLQI\": {\"duration\": 98.06, \"timestamps\": [[0, 3.92], [2.45, 70.6], [71.58, 86.29], [87.27, 98.06]], \"sentences\": [\"A woman and little girl are in the kitchen, preparing to bake some delicious cookies.\", \" The lady shows the girl how to roll the dough, and helps cut shapes into nice little shapes.\", \" The woman then takes a jar and shows the girl how to use sprinkles.\", \" The little girl then sprinkles the dough and is happy that the cookies will turn out well.\"]}, \"v_R-RQx5pbMvo\": {\"duration\": 142.07999999999998, \"timestamps\": [[0, 29.84], [33.39, 88.8], [96.62, 138.53]], \"sentences\": [\"A woman is seen speaking to the camera and pouring liquid into a sink.\", \" She puts a shirt in and begins scrubbing the shirt.\", \" She drains the water and runs the faucet over the shirt while still speaking to the camera.\"]}, \"v_yvOOFjG-FEo\": {\"duration\": 95.37, \"timestamps\": [[0, 20.98], [18.6, 40.05], [39.1, 95.37]], \"sentences\": [\"a man stands at a table and talks to the camera.\", \" the man moves a cup of water.\", \" the man then takes an iron and begins to iron a towel.\"]}, \"v_RzMKERQ9vOU\": {\"duration\": 157.01, \"timestamps\": [[0, 43.18], [39.25, 115.41], [105.2, 154.66]], \"sentences\": [\"A man is seen sitting on the floor speaking to the camera.\", \" He lays down and begins demonstrating how to do a proper sit up.\", \" The man continues to speak while doing sit ups and moving his arms and legs.\"]}, \"v_movzxpiGX8k\": {\"duration\": 99.44, \"timestamps\": [[0, 99.44], [0.99, 99.44], [5.47, 99.44]], \"sentences\": [\"A woman is sitting down in a chair.\", \" He starts brushing her hair with a blue brush.\", \" She touches her hair while she brushes it.\"]}, \"v_K9ccE4wrTts\": {\"duration\": 86.89, \"timestamps\": [[0, 23.03], [23.03, 56.91], [56.91, 86.89]], \"sentences\": [\"man is sanding in a room talking to the camera.\", \" the man holds a razor and shave his beard.\", \" when ends the man keeps talking to the camera.\"]}, \"v_NgG4AWP1F6Q\": {\"duration\": 192.54, \"timestamps\": [[0, 72.2], [57.76, 144.41], [129.96, 187.73]], \"sentences\": [\"A close up of a person's feet are shown followed by them putting socks on.\", \" The wiggle around their feet and begin putting shoes on.\", \" They tie up the shoes as well as another person helping and walking away.\"]}, \"v_vBKIXqRd-eA\": {\"duration\": 233.78, \"timestamps\": [[0, 39.74], [38.57, 44.42], [49.09, 57.28], [60.78, 78.32]], \"sentences\": [\"A man is sitting on a horse.\", \" A calf is released from a pen.\", \" The man runs after the calf and ties its legs.\", \" The man gets back onto his horse.\"]}, \"v_zOGg5-Mll4o\": {\"duration\": 211.02, \"timestamps\": [[0, 16.88], [18.99, 121.34], [122.39, 211.02]], \"sentences\": [\"A man is surfing,biking, and mountain climbing.\", \" He ;is then seen climbing the side of a mountain with skis.\", \" He skis down the mountain carefully.\"]}, \"v_9A9_sNvJ8zQ\": {\"duration\": 230.64, \"timestamps\": [[0, 21.91], [35.75, 166.06], [175.29, 230.64]], \"sentences\": [\"a man and woman are inside a gym.\", \" The man demonstrates how to use a machine by pushing and pulling.\", \" The woman talks about the technique as he goes.\"]}, \"v_34KalqGygZ0\": {\"duration\": 104.97999999999999, \"timestamps\": [[5.25, 7.87], [11.55, 14.17], [38.84, 52.49], [51.96, 104.98]], \"sentences\": [\"A person grabs a saddle from the side of a barn.\", \" They carry it and put it onto a horse.\", \" They climb onto the back of the horse and ride off.\", \" Many people are riding horses along a trail.\"]}, \"v_mmgoptOJM0s\": {\"duration\": 13.79, \"timestamps\": [[0, 8.28], [1.1, 1.38], [3.38, 3.45]], \"sentences\": [\"Two men are in a room playing ping pong.\", \" A man in a blue shirt hits the ball.\", \" A man in a white shirt hits the ball.\"]}, \"v_TVPiI9551As\": {\"duration\": 137.82999999999998, \"timestamps\": [[0, 1.38], [1.38, 48.24], [48.24, 80.63], [80.63, 137.83]], \"sentences\": [\"\\\"American Muscle Webisodes\\\" appears in front of an American flag and next to a man posing.\", \" An astroturfed gym is shown with people walking around.\", \" Two men gather to arm wrestle.\", \" One man wins and there is a rematch.\"]}, \"v_i1CVl-0-gJE\": {\"duration\": 72.75, \"timestamps\": [[0, 5.09], [12, 47.65], [51.65, 72.75]], \"sentences\": [\"A man is standing outside in a yard.\", \" He is using a large rake to move leaves.\", \" He talks about his technique as he continues to rake the leaves.\"]}, \"v_MMVfzKCnpnI\": {\"duration\": 83.15, \"timestamps\": [[0, 16.21], [0, 19.96], [16.63, 79.82], [20.37, 79.41], [79.82, 83.15]], \"sentences\": [\"A marching band stands still on a grassy field.\", \" An individual dressed in white walks in front of the marching band.\", \" The marching band begins to play.\", \" The individual dressed in white performs a routine with a baton.\", \" The marching band and the individual stop performing, and the individual walks off camera.\"]}, \"v_ISHKwbnOzXY\": {\"duration\": 192.08, \"timestamps\": [[0, 192.08], [2.88, 192.08], [13.45, 191.12]], \"sentences\": [\"two people are on a court practicing fencing being hold by ropes.\", \" behind the fence kids a woman is standing watching them.\", \" in the corner man is standing laying on the wall wearing black clothes.\"]}, \"v_4Q5YJKHa5W0\": {\"duration\": 131.36, \"timestamps\": [[13.14, 26.93], [30.21, 59.77], [60.42, 106.4], [105.74, 111], [113.62, 116.91]], \"sentences\": [\"A person is putting lettuce onto a sandwich.\", \" They slice a boiled egg with a slicer and put it on the sandwich.\", \" They cut up an avocado and put it on a sandwich.\", \" They put mayonnaise on top of the sandwich.\", \" They put a piece of bread on top of the sandwich.\"]}, \"v_IUnqrqZ_x_A\": {\"duration\": 59.03, \"timestamps\": [[0, 7.08], [14.76, 37.78], [38.07, 59.03]], \"sentences\": [\"Two men are standing on a stage.\", \" They are involved in a jousting match.\", \" They parry and poke at each other with swords.\"]}, \"v_x0PE_98UO3s\": {\"duration\": 123.44, \"timestamps\": [[0, 21.6], [21.6, 90.73], [90.11, 123.44]], \"sentences\": [\"A black and white still image is shown of a woman holding a black bow and arrow,focusing it at the targets across the field.\", \"After some time,the arrow is finally released in slow motion to a target and the lady slowly puts her hand down.\", \"Although her hand hands are going down,the right one is still in at an angle and the left one is fully extended while holding the bow and a still image is captured of her technique.\"]}, \"v_e5_lP2HgtSE\": {\"duration\": 22.2, \"timestamps\": [[0, 22.2], [0.11, 22.2], [19.65, 22.2]], \"sentences\": [\"A little girl is standing on the sidewalk.\", \" A dog wearing two pink casts stands on its back legs and walks with her.\", \" A man walks in front of the dog.\"]}, \"v_EW3zRMVjkoU\": {\"duration\": 35.76, \"timestamps\": [[0, 16.81], [10.01, 25.21], [23.06, 34.51]], \"sentences\": [\"A small group of people are seen playing soccer on a sandy field.\", \" A large crowd watches the boys play as they run up and down.\", \" The game continues on as people still watch them play.\"]}, \"v_8A7nbBMC4eA\": {\"duration\": 204.27, \"timestamps\": [[5.11, 29.62], [29.62, 187.92], [185.88, 187.92]], \"sentences\": [\"People are dressed up talking to a microphone.\", \" People are dancing on a round stage.\", \" They finish dancing and the people watching stand up to applaud.\"]}, \"v_RihO8i98QJg\": {\"duration\": 218.92000000000002, \"timestamps\": [[0, 170.76], [26.27, 30.65], [26.27, 49.26]], \"sentences\": [\"People are playing dodge ball on a court.\", \" A woman is kneeling down on the ground.\", \" People are in the stands watching them.\"]}, \"v_7AsHuXeoSpA\": {\"duration\": 14.98, \"timestamps\": [[0, 2.85], [2.77, 10.93], [10.86, 14.98]], \"sentences\": [\"woman is holding a soap facial cleanser on her hands and a face towel.\", \" the woman cleans the face with the liquid soap in circular motions.\", \" then the woman wets a cloth and clans the face with it.\"]}, \"v_PrR-kkpy1c8\": {\"duration\": 223.4, \"timestamps\": [[0, 11.17], [11.17, 15.64], [11.17, 21.22], [21.22, 41.33], [41.33, 223.4]], \"sentences\": [\"man is talking to the camera.\", \" people are stadning on a side of a wock wall.\", \" man is in a river under a waterfall.\", \" man is on lake side talking to the camera like other couples as well.\", \" people are kayaking on calm river and have a good picnic day.\"]}, \"v_ASXqlsSfZ5E\": {\"duration\": 21.73, \"timestamps\": [[0, 3.04], [3.37, 13.58], [14.56, 21.73]], \"sentences\": [\"A group of boys are on the sidewalk of a street.\", \" They are bouncing around on stilts.\", \" They continue talking as they bounce and walk.\"]}, \"v_NiPqyUecGdc\": {\"duration\": 56.31, \"timestamps\": [[1.13, 16.05], [14.36, 39.98], [34.07, 53.49]], \"sentences\": [\"A man is seen riding on a board along the water.\", \" The man spins himself around while hanging onto a string.\", \" He lifts his legs up then leans back in the water.\"]}, \"v_-ZBsdK10Trs\": {\"duration\": 49.25, \"timestamps\": [[0.49, 9.36], [9.85, 30.54], [25.86, 47.03]], \"sentences\": [\"A large gymnasium is shown that shows people running around.\", \" Several boys are then shown hitting the camera.\", \" The balls continue to fly as others watch on the side.\"]}, \"v_KzxVQ19pRUU\": {\"duration\": 235.4, \"timestamps\": [[0, 71.8], [65.91, 164.78], [114.17, 180.08], [184.79, 230.7]], \"sentences\": [\"A man is seen speaking to the camera and begins holding up bottles of alcohol.\", \" He mixes ingredients together as well as liquids into a mixer.\", \" He takes a drink and mixes the ingredients up together.\", \" He finally puts in whip cream and a cherry to present.\"]}, \"v_9VGbtQrlcN4\": {\"duration\": 113.15, \"timestamps\": [[0, 23.2], [20.37, 77.51], [74.68, 108.62]], \"sentences\": [\"A man is seen speaking to the camera while standing behind a car door.\", \" He sprays the door and wipes down the window while still speaking.\", \" He sprays the window again and wipes it down one more time.\"]}, \"v_XuYmybr9uDE\": {\"duration\": 72.49, \"timestamps\": [[0, 64.52], [0, 71.77], [7.25, 71.77]], \"sentences\": [\"different drinks are on top of a table behind a christmas plate.\", \" a cup full of ice is shown and a person pour drinks on the cup and make a cocktail.\", \" a cranberry cocktail is serve in a cup.\"]}, \"v_-ZDCHvzbnoU\": {\"duration\": 145.06, \"timestamps\": [[0, 15.96], [18.86, 103.72], [108.79, 145.06]], \"sentences\": [\"A man is talking inside a large gym.\", \" He presents a paintball gun as he discusses technique.\", \" He then engages in a game of paintball with others.\"]}, \"v_2tf414bkudE\": {\"duration\": 192.66, \"timestamps\": [[0.96, 10.6], [11.56, 132.93], [22.16, 36.6], [111.74, 112.7], [136.79, 186.88], [147.38, 181.1]], \"sentences\": [\"A person picks up a knife and a knife sharpener.\", \" The person sharpens the knife.\", \" The person runs the knife through a piece of white paper.\", \" The person runs a finger through the knife sharpener.\", \" The person is shaving using a knife.\", \" The person easily cuts a piece of newspaper paper.\"]}, \"v_NSMAftE6fb4\": {\"duration\": 38.55, \"timestamps\": [[0, 38.55], [0, 23.32], [25.83, 29.1]], \"sentences\": [\"There are surfers in the water waiting for a wave to come so they can surf.\", \"  One surfer catches a wave and rides it while a surfer rides the same wave in the opposite direction while dodging other surfers sitting on their boards.\", \" Another surfer finds a wave and is quickly engulfed in water.\"]}, \"v_ORKAMBnsX64\": {\"duration\": 72.33, \"timestamps\": [[0, 10.85], [15.55, 44.48], [47.38, 72.33]], \"sentences\": [\"A diver walks to the end of the diving board.\", \" He prepares himself for the jump as a man is being interviewed.\", \" The diver plummets from the board next to another man into the water.\"]}, \"v_CjuTFlxFvH0\": {\"duration\": 152.67000000000002, \"timestamps\": [[0, 15.27], [21.37, 92.37], [96.18, 152.67]], \"sentences\": [\"a man is located inside a warehouse.\", \" He is doing a hand stand on a large block.\", \" He closes his legs and flips off onto a pair of stilts.\"]}, \"v_VFsRRXYbuHs\": {\"duration\": 19.39, \"timestamps\": [[0, 3.1], [3.39, 11.63], [10.66, 18.52]], \"sentences\": [\"A young man is seen standing on a wakeboard riding on the water.\", \" The man spins himself around while still moving along the water.\", \" He continues to jump and spin on the water while looking forward to the camera.\"]}, \"v_uPqp30C6MDE\": {\"duration\": 47.23, \"timestamps\": [[0, 23.14], [9.92, 33.77], [29.28, 45.58]], \"sentences\": [\"A small child is seen sitting in a swing.\", \" The child begins moving back and fourth while looking to the camera.\", \" The child continues moving back and fourth.\"]}, \"v__bz66SOrklQ\": {\"duration\": 227.63, \"timestamps\": [[9.11, 69.43], [70.56, 75.12], [76.25, 159.34], [160.48, 218.52], [173, 182.1]], \"sentences\": [\"A marching band performs in a field and in a gym moving around while playing.\", \" The marching band align in the street with the instruments.\", \" After, people play in the marching band in different places.\", \" The marching band performs on front a building and other places.\", \" A man pass on front the marching band holding a camera.\"]}, \"v_YBrcJxnXuVU\": {\"duration\": 15.65, \"timestamps\": [[0.47, 5.63], [5.56, 15.65], [0.47, 15.65]], \"sentences\": [\"woman is sitting in front of a table with a big beer cup in front of her.\", \" the woman grab the cup with her mouth and drinks all the beer buttons up.\", \" woman wearing white shirt and white blazer is in a bar and drinks a beer glass.\"]}, \"v_ZBAQx9DxYTo\": {\"duration\": 86.08, \"timestamps\": [[0, 18.94], [18.08, 57.67], [58.1, 86.08]], \"sentences\": [\"a man is lifting a barbell then he adjusts a camera lens.\", \" the man is then seen talking the the camera while walking through a crowd.\", \" the man then demonstrates the use of a bow and arrow.\"]}, \"v_SvIUXZqy8Hs\": {\"duration\": 27.4, \"timestamps\": [[0, 18.91], [5.62, 18.91], [15.07, 27.4]], \"sentences\": [\"A small child is see blind folded while holding a bat.\", \" Another child spins her around and lets him swing into the air.\", \" The child continues swinging around and the blindfold falls off.\"]}, \"v_jmxzDxfSbZM\": {\"duration\": 194.49, \"timestamps\": [[0, 50.57], [51.54, 128.36], [123.5, 194.49]], \"sentences\": [\"two people are in a living room.\", \" the two being un boxing a Christmas tree.\", \" the two assemble the christmas tree.\"]}, \"v_1H2bRd91sZw\": {\"duration\": 120.09, \"timestamps\": [[0, 13.21], [17.41, 58.85], [61.25, 120.09]], \"sentences\": [\"Several food items and dishes are laid out on a table.\", \" Meat product and other items are used to create a sandwich.\", \" Then a bento shaper is used to create an image in the sandwich.\"]}, \"v_VdGZfI-8RuA\": {\"duration\": 221.32999999999998, \"timestamps\": [[2.21, 182.6], [33.2, 108.45], [98.49, 213.59]], \"sentences\": [\"A man is seen kneeling down over a bike.\", \" The man adjusts the bike while animals walk in and out of frame.\", \" The man continues to adjust the bike when a woman walks in and out of frame.\"]}, \"v_Ey2SmPzJTKM\": {\"duration\": 137.81, \"timestamps\": [[0, 14.47], [17.92, 84.75], [93.71, 137.81]], \"sentences\": [\"A box is shown containing different colored items.\", \" A man is then seen removing a tire from a car, showing how to do it properly.\", \" He uses the colored bars to assist him in replacing the tire.\"]}, \"v_1jX8p54Dfjs\": {\"duration\": 201.6, \"timestamps\": [[0, 28.22], [31.25, 165.31], [167.32, 201.6]], \"sentences\": [\"A woman is seated on a couch in a living room.\", \" She is holding a cat in her lap.\", \" She trims the nails on each toe nail.\"]}, \"v_2ji02dSx1nM\": {\"duration\": 162.69, \"timestamps\": [[0, 9.76], [18.71, 68.33], [82.97, 162.69]], \"sentences\": [\"A surfer is riding on a surf board in the ocean.\", \" He goes through the waves as they crash around him.\", \" He continues riding the waves and talking to the camera in an interview.\"]}, \"v_BCRFFkvfB_Q\": {\"duration\": 24.59, \"timestamps\": [[0, 24.47], [2.83, 5.9], [5.66, 17.46], [19.18, 23.85]], \"sentences\": [\"Men are outside at the field for a track and field event.\", \" A runner prepares to do the long jump at one end of the field.\", \" He begins his running approach and jump.\", \" He lands and they mark his distance.\"]}, \"v_JJyV1AIQj4M\": {\"duration\": 231.39, \"timestamps\": [[0, 48.59], [47.43, 129.58], [122.64, 231.39]], \"sentences\": [\"a woman walks down a set of stairs.\", \" the woman comes to a stop in front of the stairs.\", \" the woman then belly dances.\"]}, \"v_lyJpgvmTOpo\": {\"duration\": 8.22, \"timestamps\": [[0, 0.21], [0.33, 6.04], [6.17, 8.22]], \"sentences\": [\"A juvenile holds a jar of beer while a young person looks at him smiling.\", \" Then, the juvenile drinks all the beer in one go.\", \" After, the young person cheers.\"]}, \"v_4DMnMu2Cb_c\": {\"duration\": 234.03, \"timestamps\": [[0, 12.87], [36.28, 101.8], [132.23, 234.03]], \"sentences\": [\"A woman is seated in front of the camera.\", \" She is shown braiding her hair.\", \" She continues braiding and pinning it up into a style.\"]}, \"v_vBpYwyXfE0o\": {\"duration\": 200.5, \"timestamps\": [[0, 79.2], [5.01, 21.05], [40.1, 65.16], [79.2, 82.2], [83.21, 186.46], [186.46, 200.5]], \"sentences\": [\"A person travels in a ski lift where they can see the ski trail and people ski.\", \" People ski in a hill.\", \" People travel in sky lifts above the hill.\", \" The person arrives to a hill and starts to ski down the mountain, only the hands and the pole are visible.\", \" The shadow of the person on the snow is visible.\", \" Then, a juvenile ski on front the shadow, after the shadow disappears and the juvenile joins other people.\"]}, \"v_1lagsBNqNe4\": {\"duration\": 163.68, \"timestamps\": [[0, 36.01], [27.01, 90.84], [78.57, 163.68]], \"sentences\": [\"a woman is standing behind an ironing board talking.\", \" the woman then places a shirt on the board.\", \" the women then begins ironing.\"]}, \"v_Xxng1g1PrdE\": {\"duration\": 203.43, \"timestamps\": [[0, 55.94], [52.89, 143.42], [136.3, 189.19]], \"sentences\": [\"A camera pans around an area and leads into people riding in rafts and a man jumping out the back.\", \" More people are shown riding in rafts and shows the man jumping out several more times.\", \" More and more people ride around in raft.\"]}, \"v__MWyhJS4KbM\": {\"duration\": 66.57, \"timestamps\": [[0, 15.98], [16.64, 51.26], [43.94, 65.57]], \"sentences\": [\"A man is seen cleaning a set of windows quickly in front of a large crowd.\", \" Another man speaks to the camera while another man cleans off the windows.\", \" A third man speaks into a microphone towards the window washer.\"]}, \"v_URgF15eyQvg\": {\"duration\": 133.52, \"timestamps\": [[0, 2], [1.34, 6.68], [6.68, 23.37], [24.03, 116.83], [117.49, 130.84]], \"sentences\": [\"There is an intro that shows four people in different costumes, one in a green shirt, one in red, one in blue, and one in red and white stripes.\", \" The man with the red striped outfit snaps his fingers and the name of the show appears.\", \" Then there is an old man who is sitting on a chair and talking, while another man listens.\", \" Then the scene cuts to a soccer game that appears to be a parody team game.\", \" At the end, the four man are shown again and then the logo of the show, and finally a website address is shown.\"]}, \"v_XnvaW1HQyg4\": {\"duration\": 27.66, \"timestamps\": [[0, 2.63], [3.04, 13.97], [4.98, 24.2], [24.89, 27.66]], \"sentences\": [\"A logo for a sports even is shown.\", \" There is a man in a net in blue.\", \" He swings a ball on the end of a wire and lets go throwing it out into the field.\", \" Then the man is shown with two other men and holding a flag around each other.\"]}, \"v_GlJ4DvArV6Q\": {\"duration\": 133.61, \"timestamps\": [[0, 11.36], [0, 133.61], [12.69, 133.61], [38.08, 52.11], [50.1, 78.83], [76.82, 104.88], [120.25, 133.61]], \"sentences\": [\"There's a news reporter sitting in the studio with a laptop in front of her giving the daily news telecast.\", \" There are several news headlines captions shown on screen as the reporter is talking.\", \" There are scenes from the Rajasthan polo club shown where jockeys are riding horses in a large open field with spectators watching them.\", \" The commissioner of Australia is being interviewed about the event.\", \" The princess of Jaipur is also talking about the polo event.\", \" The captain of the Australian polo team talks about the event too.\", \" The news correspondent representing the news channel signs off from the news clip.\"]}, \"v_zBm3FR-CCI0\": {\"duration\": 133.69, \"timestamps\": [[0, 36.1], [8.02, 52.81], [34.09, 133.69]], \"sentences\": [\"The male athlete threw the disk to the field.\", \" The plate landed on the field and the people in the field go after the field.\", \" The athlete is in a netted fence where they throw their metal plate to the field.\"]}, \"v_WcBB6DfMTWA\": {\"duration\": 205.82, \"timestamps\": [[0, 10.29], [10.29, 93.65], [93.65, 199.65], [199.65, 205.82]], \"sentences\": [\"A background with text pops up briefly.\", \" A tai chi instructor begins a stance routine and is seen shifting his weight to either leg multiple times before briefly returning to his original stance.\", \" He then begins a second routine that has him facing either direction for a brief period of time.\", \" He does this until he comes back to his original starting position before the video ends.\"]}, \"v_RllrUfp2EIU\": {\"duration\": 155.69, \"timestamps\": [[0, 49.82], [49.82, 120.66], [120.66, 155.69]], \"sentences\": [\"a small campfire is shown in the woods.\", \" someone turns on the campfire in the night.\", \" when the fire is turning off the man put more dry branches.\"]}, \"v_mBnLy9ZgMkc\": {\"duration\": 187.28, \"timestamps\": [[0, 49.63], [50.57, 139.53], [146.08, 187.28]], \"sentences\": [\"A man is standing on a stage playing an instrument.\", \" He is playing a tune on a white keyboard attached to an accordian.\", \" He continues playing, moving back and forth as he goes.\"]}, \"v_6QbIJ2pnXXo\": {\"duration\": 162.98, \"timestamps\": [[0, 30.97], [30.97, 82.31], [82.31, 113.27], [113.27, 152.39], [152.39, 162.98]], \"sentences\": [\"A persons hands are working with pink dough.\", \"  A round piece of styrofoam is on a cake platter, strips of the dough are placed on the foam.\", \" The person works with purple dough and cuts it into strips.\", \" The purple strips are overlaid onto the styrofoam.\", \"  \\\"Francesca Sugar Art\\\" is shown on screen with video links.\"]}, \"v_IkbEC202hYg\": {\"duration\": 153.79, \"timestamps\": [[0, 41.52], [37.68, 108.42], [105.34, 149.94]], \"sentences\": [\"A large group of women are seen dancing in the middle of a large audience.\", \" The women kick and jump around one another while continuing the routine.\", \" A man yells to them on the side as they continue dancing and ends with them cheering and audience members crying.\"]}, \"v_zWiu-wdKeWs\": {\"duration\": 53.43, \"timestamps\": [[0, 24.31], [24.31, 53.43], [25.65, 53.43]], \"sentences\": [\"man is standing next to a tree putting dirt around tree.\", \" the man walks to another tree and with the foot kick the dirt.\", \" in the sreet a man is standing in a car behind the tree.\"]}, \"v_Tv8r1w-rLME\": {\"duration\": 5.35, \"timestamps\": [[0, 1.85], [1.5, 5.35], [0, 5.35]], \"sentences\": [\"woman exhalates a smoke and the man inhalates.\", \" the man makes a smoke ring and blow it to the girl and she inhalates.\", \" a man and a woman are sharing smoke in a room.\"]}, \"v_zPu3JBSPa94\": {\"duration\": 218.76, \"timestamps\": [[0, 21.88], [41.56, 56.88], [188.13, 218.76]], \"sentences\": [\"A woman is getting a tattoo applied by a man with a grey shirt and black hat.\", \"  Man dabs the woman's arm with a rag.\", \"  Man wearing red shoes walks into the room.\"]}, \"v_U36rsW_WhUA\": {\"duration\": 133.52, \"timestamps\": [[13.35, 93.46], [94.8, 96.13], [106.14, 122.83]], \"sentences\": [\"A person is holding a cats paw and clipping their nails.\", \" They pet the can afterwards.\", \" They pick up the cats back foot and start clipping the nails.\"]}, \"v_gwpQuO5DPOA\": {\"duration\": 22.08, \"timestamps\": [[0, 4.2], [5.96, 14.13], [14.8, 22.08]], \"sentences\": [\"a man is standing over a piece of large metal.\", \" the man begins welding pieces of metal together.\", \" the man then adjusts his angle and continues welding.\"]}, \"v_hzpFVURhKwo\": {\"duration\": 139.02, \"timestamps\": [[13.21, 78.55], [0, 122.34], [76.46, 139.02]], \"sentences\": [\"A woman steps on a ladder and hangs paper on the ceiling.\", \" A man stands next to her holding the paper.\", \" She gets off the ladder and moves it to continue putting the paper on the ceiling.\"]}, \"v_aEpRYY_wi0M\": {\"duration\": 39.34, \"timestamps\": [[0.59, 6.49], [6.49, 24.98], [24.98, 38.35]], \"sentences\": [\"A picture of a building is shown followed by picture of people working.\", \" More picture are shown of people fixing bikes.\", \" Several more pictures are shown of people working bikes.\"]}, \"v_IxaoK4TbALQ\": {\"duration\": 102.28, \"timestamps\": [[0, 102.28], [6.65, 19.95], [17.9, 81.83], [46.03, 102.28]], \"sentences\": [\"A woman is sitting on a bench.\", \" She fills a bottle with a liquid.\", \" She sprays it on a wall.\", \" She then wipes off the grime.\"]}, \"v_sxQbiXWFdKs\": {\"duration\": 171.27, \"timestamps\": [[0, 7.71], [7.71, 35.97], [36.82, 142.15], [143.01, 171.27]], \"sentences\": [\"A school bus unloads with kids carrying boats with \\\"Down the Delaware\\\" overlaid.\", \" Kids walk to the water's edge and launch the water craft, including boats and inner tubes.\", \" A man narrates the scene at the helm of a boat.\", \" People buy food from a floating food boat by the shore.\"]}, \"v_5TMKHLOACYg\": {\"duration\": 151.05, \"timestamps\": [[0, 0.76], [2.27, 147.27], [29.45, 39.27], [42.29, 46.82], [49.85, 52.11], [39.27, 124.61], [148.03, 151.05]], \"sentences\": [\"The credits of the clip is shown.\", \" People sit or stand while speaking.\", \" A lady rubs a liquid from an aerosol can on children faces.\", \" A child in a stroller drinks from a sippy bottle.\", \" The lady wipes the child's head with a cloth.\", \" People interact outside in a playground.\", \" The laptop and credits of the video is shown.\"]}, \"v_NNZKinEXYc4\": {\"duration\": 90.14, \"timestamps\": [[0, 15.32], [19.38, 59.94], [67.15, 90.14]], \"sentences\": [\"A gymnast does several flips along a mat.\", \" She mounts a beam, and does back springs.\", \" She then dismounts and raises her arms.\"]}, \"v_WDbG2_sDHow\": {\"duration\": 22.36, \"timestamps\": [[0, 10.51], [10.85, 18.56], [18.67, 22.36]], \"sentences\": [\"A man jumps backward and flips four times in the air and dives in the swimming pool.\", \" The jump of the swimmer is showed again.\", \" The man walks drying his body.\"]}, \"v_ggyGuKFjdxk\": {\"duration\": 171.13, \"timestamps\": [[0, 26.53], [37.65, 117.23], [133.48, 171.13]], \"sentences\": [\"A man is talking inside a kitchen.\", \" He is frying chopped vegetables in a pan.\", \" He then adds other ingredients, creating a final dish.\"]}, \"v_jnOqi_9KJiE\": {\"duration\": 35.23, \"timestamps\": [[0, 6.52], [7.22, 18.14], [18.85, 26.24]], \"sentences\": [\"A woman is peeling a potato.\", \" She is then sitting in front of a fish tank crying.\", \" She holds her shoulder and puts her head down.\"]}, \"v_lPCl1ZYH2xI\": {\"duration\": 360.42, \"timestamps\": [[0, 16.22], [16.22, 23.43], [25.23, 257.7], [99.12, 360.42], [250.49, 263.11], [264.91, 360.42]], \"sentences\": [\"A person in a red coat is cleaning the snow off their car.\", \" They lift open the trunk of the car.\", \" Another person in a tan coat is cleaning off the front of the car.\", \" A man in a white jacket starts to clear the snow off of another car.\", \" They open the door to the car.\", \" They continue clearing the snow from the car.\"]}, \"v_kkcTQHFNXAg\": {\"duration\": 33.74, \"timestamps\": [[0, 0.84], [1.01, 30.37], [30.87, 33.74]], \"sentences\": [\"The person sets up their grip while holding themselves up on flat bars in a park.\", \" A woman swings her legs up and out over a set of parallel bars.\", \" The woman slows down then drops off from the parallel bars.\"]}, \"v_moUL_qLnNDM\": {\"duration\": 4.83, \"timestamps\": [[0, 2.25], [2.03, 3.16], [2.85, 4.83]], \"sentences\": [\"A dog is standing on grass.\", \" The dog starts running away.\", \" A bomb flies onto the grass and blows up.\"]}, \"v_fgoXpih2Kws\": {\"duration\": 154.67000000000002, \"timestamps\": [[0, 32.48], [23.97, 47.95], [63.41, 154.67]], \"sentences\": [\"a boy is standing in an empty room.\", \" another boy walks up to the first boy.\", \" the boy then start to wrestle.\"]}, \"v_Obj__zWaZqk\": {\"duration\": 9.15, \"timestamps\": [[0, 2.2], [2.01, 6.31], [6.27, 9.01]], \"sentences\": [\"A large group of people are seen wandering around an area.\", \" One person is seen shoveling dirt out of the back of a truck.\", \" The camera pans around to more people working.\"]}, \"v_j55LAXY-T0E\": {\"duration\": 147.87, \"timestamps\": [[0, 9.61], [8.87, 36.97], [38.44, 110.9], [116.81, 145.65]], \"sentences\": [\"A car is shown driving as well as clouds in the sky.\", \" A man wakes up from his bed and drinks a cup of coffee excitedly.\", \" He walks to work and then back again to grab more coffee.\", \" He's seen dancing around an area and drinking several cups of coffee.\"]}, \"v_mNM-JUC7ZEA\": {\"duration\": 163.14, \"timestamps\": [[0, 2.45], [2.45, 159.07], [2.45, 112.57], [112.57, 159.07], [159.07, 163.14]], \"sentences\": [\"An introduction comes onto the screen for a video about home repair.\", \" Two men on a roof are trying to fix a leak in a pipe located on top of the roof.\", \" One of the men points out the flaws in the pipe that caused it to leak as well as prepares the pipe to be fixed.\", \" After preparing the pipe, the man puts some rubber compound around the pipe and attaches a new gasket.\", \" The video ends with a closing caption shown on the screen.\"]}, \"v__i6yjCO8nzQ\": {\"duration\": 187.87, \"timestamps\": [[0, 63.88], [31, 128.69], [70.45, 185.99]], \"sentences\": [\"A large group of people are seen standing around with the audience clapping.\", \" The men begin performing gymnastic tricks one after the other down a mat.\", \" The men continue flipping and a man helping them at the end.\"]}, \"v_vg-FrXO1coA\": {\"duration\": 231.53, \"timestamps\": [[0, 56.72], [56.72, 216.48], [216.48, 231.53]], \"sentences\": [\"This woman is floating in her room in space that has no gravity whatsoever and she is washing her face using the cloth.\", \" She also turns upside down to get her toothbrush out of the compartment and she starts brushing her teeth.\", \" When she's done, she stops and wipes her mouth using the cloth.\"]}, \"v_IiNf2F4P5sE\": {\"duration\": 73.86, \"timestamps\": [[0.74, 26.22], [26.59, 51.33], [51.7, 67.95]], \"sentences\": [\"Man holds surfboards in the beach.\", \" Then, the men surfs in the ocean.\", \" A man holds a white surfboard and enters the sea.\"]}, \"v_pniQHSjY7dc\": {\"duration\": 85.38, \"timestamps\": [[0, 23.05], [19.21, 66.6], [67.02, 85.38]], \"sentences\": [\"A man bends down and lifts the side of a weight.\", \" He then beings to push the weight up and down.\", \" He stands up and does the same thing.\"]}, \"v_E3UJv-NC1E8\": {\"duration\": 33.07, \"timestamps\": [[0, 8.76], [8.43, 19.84], [19.18, 33.07]], \"sentences\": [\"two wrestlers are in a ring.\", \" one wrestler grabs the other man and slams him to the ground.\", \" the man then leaves the ring after he body slams his opponent.\"]}, \"v_UmH4VPH0KG4\": {\"duration\": 57.63, \"timestamps\": [[0, 55.61], [36.31, 55.61], [50.14, 55.61]], \"sentences\": [\"The person wearing masked is torching the metal.\", \" The man removed his helmet and talked to the camera.\", \" The man showed the torched metal.\"]}, \"v_y_Ak7a3oXRY\": {\"duration\": 34.04, \"timestamps\": [[0, 3.57], [6.3, 24], [24.51, 34.04]], \"sentences\": [\"a group of people are building a sand castle on a beach.\", \" They use water and buckets to arrange around the sand.\", \" They speed the video as they build the castle.\"]}, \"v_-erT3ckPkAg\": {\"duration\": 50.11, \"timestamps\": [[0, 16.29], [15.53, 36.33], [31.32, 46.85]], \"sentences\": [\"A young child is seen swinging at a pinata as well as another woman.\", \" Several people attempt to swing at the pinata.\", \" In the end a group of children are huddled around the candy.\"]}, \"v_j7Tk8I_DCtw\": {\"duration\": 27.93, \"timestamps\": [[0, 5.17], [0.84, 23.74], [19.83, 27.93]], \"sentences\": [\"The young boy is blowing his bagpipe a his fingers press the pole.\", \" The people are passing by as the boy play the bag pipe.\", \" The boy paused for few seconds, then continue to play the pipe.\"]}, \"v_CSsilC4QbB4\": {\"duration\": 139.02, \"timestamps\": [[0, 20.16], [27.8, 86.89], [90.36, 139.02]], \"sentences\": [\"A man climbs out of a boat to the water.\", \" He dives in his scuba gear.\", \" He explores the depths of the bay, looking at coral and fish.\"]}, \"v_rqmi-DjYp0U\": {\"duration\": 36.9, \"timestamps\": [[0, 5.35], [10.33, 26.38], [28.23, 36.9]], \"sentences\": [\"A woman is drinking a beer from a bottle.\", \" She lifts it to her mouth using her feet.\", \" She holds it to her mouth and drinks.\"]}, \"v_LMMimz1-fa0\": {\"duration\": 113.87, \"timestamps\": [[7.97, 22.77], [24.48, 46.69], [47.83, 52.38], [52.38, 84.83], [85.4, 113.87]], \"sentences\": [\"A boat is pushed by a car to the river.\", \" Then, a group of people board the boat.\", \" A man water surf behind the boat.\", \" Then, a woman gives a special stick to the man that uses it to shoot  down discs throwing from the boat.\", \" People in the boats continues shooting discs for the man to shoot down.\"]}, \"v_OAot8XBeLrs\": {\"duration\": 223.89, \"timestamps\": [[0, 60.45], [58.21, 165.68], [139.93, 211.57]], \"sentences\": [\"A large group of people are seen running around a field playing soccer when one scores a goal.\", \" People cheer as they game continues on showing several more goals being made.\", \" The team mates cheer with one another as well as the audience.\"]}, \"v_HM_rHjh-wqQ\": {\"duration\": 121.53, \"timestamps\": [[0.61, 119.71], [0.61, 28.56], [27.95, 49.22], [49.83, 120.32]], \"sentences\": [\"A man stands in front of a group of people and plays the violin while other people, sitting on the floor , play the violin behind him.\", \"  A man holds up a violin in front of a room of people and then begins to play it.\", \"  While he plays a group of people, sitting on the floor behind him, play the violin as well.\", \"  The man stops playing momentarily and talks to the audience before starting to play again.\"]}, \"v_E3IP4Y8e_ho\": {\"duration\": 89.12, \"timestamps\": [[0, 20.05], [21.39, 52.58], [56.14, 89.12]], \"sentences\": [\"A group of people have stretched a tightrope across a gym.\", \" They take turns trying to balance and walk on the rope.\", \" They fall or make it across, taking turns.\"]}, \"v_wcmO0R3Kqzo\": {\"duration\": 93.25, \"timestamps\": [[16.79, 20.98], [30.77, 51.75], [73.67, 81.6]], \"sentences\": [\"A person is painting their fingernails pink.\", \" They dip newspaper in water and rub it onto their nail.\", \" They put a top coat over the nails.\"]}, \"v_AUFI2wx5Z48\": {\"duration\": 141.32, \"timestamps\": [[0, 16.25], [19.08, 95.39], [100.34, 141.32]], \"sentences\": [\"A series of nail polishes are shown on a table.\", \" A woman's nails are being painted two shades of pink.\", \" They are then decorated with designs.\"]}, \"v_rZGxJN2AOQY\": {\"duration\": 238.21, \"timestamps\": [[0, 232.26], [44.07, 157.22], [103.62, 234.64]], \"sentences\": [\"Two people are seen walking around a close room holding tennis rackets.\", \" The two begin hitting the ball around the area.\", \" The men continue to use their rackets to hit the ball around.\"]}, \"v_fPtKNj6jCPU\": {\"duration\": 56.54, \"timestamps\": [[0, 8.2], [9.61, 33.36], [38.17, 56.54]], \"sentences\": [\"A man and woman are standing together on a stage.\", \" The woman is throwing balls, trying to get them into the cups as they rotate.\", \" The man talks as he joins in the game.\"]}, \"v_pev7rvOE8eM\": {\"duration\": 619.39, \"timestamps\": [[0, 148.65], [148.65, 170.33], [170.33, 579.13], [600.81, 619.39]], \"sentences\": [\"An individual cleans snow off a car.\", \" The camera pans to show a small child indoors watching television.\", \" The camera returns to the person cleaning snow off the car outside.\", \" The individual outside enters the cleaned car and drives away.\"]}, \"v_ayLeSjJz53I\": {\"duration\": 146.04, \"timestamps\": [[0, 47.46], [47.46, 129.98], [130.71, 146.04]], \"sentences\": [\"An empty,pitch black stage is shown before a little girl comes prancing out from behind the curtain dressed in a pink leotard and tutu.\", \"The little girl begins moving across the stage on her toes making leaps and jumps while extending her hands out in front of her.\", \"When she is near the end,the little girl kneels down on her needs as if she is bowing before exiting the stage and reappearing with a judge.\"]}, \"v_kXvFkU7gQSM\": {\"duration\": 218.36, \"timestamps\": [[0, 191.07], [10.92, 191.07], [25.11, 191.07], [68.78, 191.07]], \"sentences\": [\"Two men are in front of an desk.\", \" They are wearing fencing outfits.\", \" They then demonstrate fencing for the show.\", \" Several students are on the side.\"]}, \"v_NLuNMeYBeoc\": {\"duration\": 97.46000000000001, \"timestamps\": [[0, 7.8], [13.16, 86.25], [88.2, 97.46]], \"sentences\": [\"A gymnast mounts a pair of bars.\", \" He flips and hand stands, and turns several times.\", \" He dismounts and raises his arms.\"]}, \"v_FWbCX1wBVoE\": {\"duration\": 168.67000000000002, \"timestamps\": [[0, 26.14], [26.14, 36.26], [36.26, 53.13], [53.13, 126.5], [126.5, 168.67]], \"sentences\": [\"A documentary discussing the mopping bucket and mopping procedures.\", \" The documentary shows the mopping process with\\na mop and bucket.\", \" A clip of images of research and development department and laboratory and quality control departments.\", \"\\nA mop being dipped into a yellow bucket and the ringing of the mop and the mop sliding across the floor with more dipping the mop and ringing the mop.\", \" More clips are shown of the contaminates left on the floor is shown after all of the mopping is completed.\"]}, \"v__QTQEw1b_-U\": {\"duration\": 157.5, \"timestamps\": [[0, 157.5], [58.28, 121.28], [121.28, 157.5]], \"sentences\": [\"two men are talking to the camera under a wooden construction in an open field.\", \" man is hanging from the wooden construction and behind him the other man do the same.\", \" the manis again hanging but this time he is holding himself ever two steps.\"]}, \"v_W84TQm1l90U\": {\"duration\": 7.73, \"timestamps\": [[0, 1.62], [1.62, 4.02], [4.29, 5.45], [5.65, 7.73]], \"sentences\": [\"A man is standing there with a woman bending over in front of him.\", \" He bends down and lifts her up to his face, flipping her around.\", \" The man walks forward while holding the woman in that position.\", \" The man leans forward and slams the woman down on her back onto a trampoline.\"]}, \"v_9GYLUAFgCXE\": {\"duration\": 180.75, \"timestamps\": [[0, 110.25], [53.32, 59.65], [59.65, 110.25], [110.25, 180.75], [143.69, 166.29]], \"sentences\": [\"A group of musicians perform on a street while pedestrians and motor vehicles pass by.\", \" The camera pans to show spectators standing and watching the performance.\", \" The camera pans to show pedestrians and the city skyline.\", \" The camera moves down the street following pedestrian traffic.\", \" The camera focuses on a pair of people dressed as Mickey and Minnie Mouse.\"]}, \"v_LbXhdPZakpo\": {\"duration\": 50.67, \"timestamps\": [[0, 26.6], [5.57, 37.75], [30.91, 50.67]], \"sentences\": [\"A large group of people are seen running around a field.\", \" They are shown playing a game of field hockey with one another.\", \" The group continues running around while people watch on the side.\"]}, \"v_0bzSBV3jHIY\": {\"duration\": 152.18, \"timestamps\": [[0, 28.91], [23.59, 100.44], [87.51, 150.66]], \"sentences\": [\"A man walks into frame and speaks to people all around a bar.\", \" People are seen eating and playing pool while others interact on the side.\", \" People continue socializing with one another while people still play pool and eat.\"]}, \"v_hUynCsek8I0\": {\"duration\": 203.29, \"timestamps\": [[0, 62], [57.94, 149.42], [142.3, 198.21]], \"sentences\": [\"A close up of a fishing pole is shown with a person reeling it in.\", \" Others kneel around him as he continues to reel.\", \" He finally pulls out a fish and shows it to the camera.\"]}, \"v_Y7BBrdCwIJw\": {\"duration\": 130.16, \"timestamps\": [[5.21, 130.16], [24.08, 74.19], [72.89, 126.91]], \"sentences\": [\"The man with glasses is playing his accordion.\", \" The man is pressing the white buttons as he pull the bellows.\", \" The man is also playing the keys while he is push and pulling the bellows.\"]}, \"v_FPv0qnoQbq0\": {\"duration\": 44.33, \"timestamps\": [[0.89, 9.97], [11.3, 30.59], [32.36, 43]], \"sentences\": [\"A man is seen sitting on a horse while others stand around.\", \" The man rides in and rope up a calf.\", \" He ties the calf and walks back on the horse.\"]}, \"v_GOZ305xZvz8\": {\"duration\": 38.62, \"timestamps\": [[0, 0.97], [1.74, 4.44], [4.63, 16.8]], \"sentences\": [\"A pitcher pitches a ball to the batter.\", \" The batter bats the ball really far.\", \" A fan catches the ball, cheering in happiness.\"]}, \"v_6vylz7u_tHw\": {\"duration\": 123.25, \"timestamps\": [[0, 23.42], [23.42, 41.91], [41.91, 53.61], [53.61, 94.9], [94.9, 106], [106, 123.25]], \"sentences\": [\"A woman wearing a blue dress is sitting on a camel lying down at a beach.\", \"An older man mounts his own camel lying down that is attached to the woman's and a worker is standing close to the man.\", \" A working man walks to the woman's camel, pulls a rope out from under the camel, and the camel quickly stands while the woman hold on tight and smiling.\", \" The working man walks over to the older man's camel, pulls his rope up, instructs the elderly man how to sit on the camel, and the camel stands up while the older man also holds on tight while smiling.\", \"The worker grabs the rope to guide the camels and the camels start to walk.\", \" A child walks up to the worker and the man holds the rope out to the child, the child grabs the rope and walks the camel's with the working man walking closely behind him holding a stick.\"]}, \"v_lkC_md7KKq0\": {\"duration\": 32.95, \"timestamps\": [[0, 4.12], [5.77, 27.18], [6.75, 27.18], [15.49, 27.18]], \"sentences\": [\"Text appears across the white screen.\", \" Two people are shown in a kitchen.\", \" they are both holding knives.\", \" They sharpen the knives on the bottom of a mug.\"]}, \"v_ICl9CT-9fKY\": {\"duration\": 126.94, \"timestamps\": [[0, 16.5], [6.98, 22.85], [27.29, 126.94], [74.9, 126.94]], \"sentences\": [\"A man in a blue shirt walks across the stage.\", \" Another man in yellow enters the stage.\", \" He then jumps rope on stage.\", \" He jumps around the stage doing tricks.\"]}, \"v_NURr5XJcwFs\": {\"duration\": 45.4, \"timestamps\": [[0, 7.26], [6.36, 20.66], [19.97, 45.4]], \"sentences\": [\"A woman puts a blindfold on another woman.\", \" They give her a bat and spin her around.\", \" She walks up to a pinata and tries to hit it.\"]}, \"v_EWWCQH6WbtQ\": {\"duration\": 85.03, \"timestamps\": [[2.98, 18.71], [19.56, 34.44], [36.14, 40.39], [49.32, 57.4], [58.67, 61.22]], \"sentences\": [\"Ice and cream are added into the toy mixer.\", \" Jam and sugar are added to the toy mixer.\", \" The mixer is rotated around to prepare the ingredients.\", \" A spoon is used to remove the ice cream into a bowl.\", \" The child enjoys eating a bowl of the ice cream.\"]}, \"v_pOVICBn8QMw\": {\"duration\": 50.1, \"timestamps\": [[0, 6.01], [6.01, 16.53], [16.53, 31.56], [31.81, 50.1]], \"sentences\": [\"There is man in a red uniform prepping to get on and start performing.\", \" He gets on the balance beam and starts to spin around and around .\", \" He even at one point does it one handed and puts some other cool tricks into it.\", \" When he is done he gets off of the beam and begins to walk off the stage.\"]}, \"v_CTWo9EfQ4Hc\": {\"duration\": 67.01, \"timestamps\": [[0, 10.72], [11.06, 51.94], [52.27, 67.01]], \"sentences\": [\"An older woman prepares to take the bars at a professional athletic venue with an audience.\", \" She performs a routine on the double bars.\", \" She walks off to the applause of the audience.\"]}, \"v_MbEtgOmOY-4\": {\"duration\": 171.78, \"timestamps\": [[0, 15.46], [16.32, 128.84], [121.97, 167.49]], \"sentences\": [\"A close up of a man's face is seen with a person standing next to him.\", \" The person then pierces the man's ear and puts a ring through.\", \" He sits up in the end and speaks to the camera.\"]}, \"v_35SpLMcN-m8\": {\"duration\": 49.37, \"timestamps\": [[0, 9.87], [6.66, 17.52], [13.58, 29.13], [27.89, 49.37]], \"sentences\": [\"people are scattered on a baseball field.\", \" a man standing a home plate has a ball coming his way.\", \" the man kicks the ball and runs to the next plate.\", \" this process is repeated by several players who step up to home plate.\"]}, \"v_kElViDpjunQ\": {\"duration\": 120.77, \"timestamps\": [[0, 12.08], [12.08, 26.57], [26.57, 67.03], [67.03, 88.76], [88.76, 120.77]], \"sentences\": [\"An introduction comes onto the screen for a video about leather care and cleaning.\", \" A woman begins to talk about different methods that are used to clean and care for leather.\", \" She starts by demonstrating a dry method to clean leather and then moves on to a wet method used to clean leather.\", \" She proceeded to show several different products are best at properly cleaning the leather.\", \" Then, the video ends with the closing credits and graphics shown on the screen.\"]}, \"v_6it_yeIb_L0\": {\"duration\": 185.29, \"timestamps\": [[0, 41.69], [35.2, 115.8], [106.54, 177.87]], \"sentences\": [\"Several shots of scenery are shown as well as people smiling to the camera.\", \" More clips are shown of people riding skateboards around areas and people waving to the camera.\", \" Several clips are shown of people performing tricks on boards and holding up boards to the camera.\"]}, \"v_Jz7bt59z6Qg\": {\"duration\": 22.52, \"timestamps\": [[0, 22.52], [12.95, 16.78], [16.78, 22.52]], \"sentences\": [\"Some people are shown horseback riding on a trail.\", \" A woman turns the camera around to show the back of her horse.\", \" She then turns the camera back around to show herself and her friends.\"]}, \"v_ml4aMGCJgP0\": {\"duration\": 151.77, \"timestamps\": [[0, 5.31], [6.07, 144.18], [141.14, 143.42], [144.94, 151.77]], \"sentences\": [\"The intro is a grey background that says \\\"What do you tell people who say bowling is not a sport?\\\".\", \" Several men are shown talking, in between clips of men bowling.\", \" The video goes to black and white.\", \" The PBA logo is shown with a message to watch the tour on ESPN.\"]}, \"v_ywJQotAB3dw\": {\"duration\": 162.59, \"timestamps\": [[0, 16.26], [33.33, 116.25], [119.5, 162.59]], \"sentences\": [\"A close up of a flag is shown in a room.\", \" Several people walk around a court with a couple of balls.\", \" They kick the balls back and forth in a game of dodgeball.\"]}, \"v_1VwNfMlb4JU\": {\"duration\": 29.35, \"timestamps\": [[0, 22.45], [22.45, 26.71], [27, 29.35]], \"sentences\": [\"A man cuts off an individual's ponytail.\", \" The individual shakes his or her head as the man brushes loose hair from the individual.\", \" The camera pans to show, in a mirror, several people watching the proceedings.\"]}, \"v_RFgusQogDyQ\": {\"duration\": 132.03, \"timestamps\": [[0, 132.03], [74.6, 132.03], [91.1, 111.56]], \"sentences\": [\"A girl in a green shirt is being recorded as she swings back and forth on a swing.\", \" The person with the camera begins to zoom in close on her as she continues to swing on the swing.\", \" You can see a man near the swing and a white shirt standing as the girl is swinging.\"]}, \"v_D5A6eBnKmD8\": {\"duration\": 170.57, \"timestamps\": [[0, 31.56], [25.59, 115.99], [110.02, 170.57]], \"sentences\": [\"men are in a gym in full padding.\", \" the man talking to other men who are sitting down.\", \" the men in the padded gear then begin fighting.\"]}, \"v_MMB5Cn3JCGI\": {\"duration\": 20.23, \"timestamps\": [[0, 1.52], [1.52, 3.64], [4.05, 20.23]], \"sentences\": [\"A woman runs down a field.\", \" She jumps backwards over a bar and lands on a blue mat.\", \" They show the jump in slow motion again.\"]}, \"v_EI_6eT-0-X4\": {\"duration\": 103.09, \"timestamps\": [[0, 43.3], [43.3, 66.49], [66.49, 103.09]], \"sentences\": [\"Two people come onto the screen to introduce a fitness video.\", \" A woman begins to hop in place while holding a jump rope.\", \" Then, she begins to jump rope while the man shows the proper form for jumping rope.\"]}, \"v_HsGz6S2MBU4\": {\"duration\": 13.47, \"timestamps\": [[0, 13.47], [0.4, 13.47], [7.41, 13.47]], \"sentences\": [\"a woman is holding a contac lense on her index finger and with her other hand open the eye to put the contact.\", \" woman is in front of a camera showing how to put contact lenses.\", \" when the lens is in the eye she move the eye to set in place.\"]}, \"v_A3160tXXLGg\": {\"duration\": 25.12, \"timestamps\": [[0, 25.12], [7.66, 25.12], [22.36, 25.12]], \"sentences\": [\"a man put a timer on a laptop on top of a table.\", \" the man grabs a rubik's cube and play with it.\", \" when the man finish the timer marks 14 seconds.\"]}, \"v_r015El3onHw\": {\"duration\": 84.94, \"timestamps\": [[0, 11.04], [7.64, 84.94], [0, 84.94]], \"sentences\": [\"different gloves are shown in a video.\", \" people are on the competition start riding bikes.\", \" bikers are riding on a competition at night.\"]}, \"v_gyQ3NBwXhDU\": {\"duration\": 208.24, \"timestamps\": [[0, 32.28], [32.28, 109.32], [109.32, 160.34], [160.34, 186.37], [186.37, 208.24]], \"sentences\": [\"A bunch of advertisements appear and then several black and yellow flags are seen drawn across the city.\", \"After, a man appears in a room talking to a large group of people who are getting dressed in green jerseys and grabbing their field game wooden stick.\", \"Once on the field,they all gather together to take a picture before dispersing across the field.\", \"Once in the field,the people do a small drill of holding the ball across the paddle and walking across the field.\", \"After,a real game begins and several people are shown in the stadiums cheering for each other and giving out trophies.\"]}, \"v_eaI8My4pGq4\": {\"duration\": 182.88, \"timestamps\": [[0, 54.86], [53.04, 133.5], [103.33, 173.74]], \"sentences\": [\"A group of people are seen riding a train following by riding down a mountain.\", \" The person uses several cameras to ride around and show other people in frame.\", \" The continue to ride around on the slopes while passing by other people.\"]}, \"v_cw0HRDIQ10I\": {\"duration\": 38.71, \"timestamps\": [[0, 6.77], [5.61, 26.51], [21.68, 38.71]], \"sentences\": [\"The man roll the barbel on the floor.\", \" The man lifted the barbel up to his chest.\", \" The barbel fell down with the man, he fell on his back.\"]}, \"v_ZhUC4qTGdHY\": {\"duration\": 164.28, \"timestamps\": [[0, 7.39], [8.21, 19.71], [19.71, 69], [70.64, 80.5], [81.32, 145.39], [145.39, 164.28]], \"sentences\": [\"We see an opening title screen.\", \" We see people standing in the rain and a jetski on a truck.\", \" We see a man touching the jetski before riding it on the lake.\", \" The man falls off the jetski into the lake.\", \" We see a man water skiing behind the man on the jet ski n the lake The two men walk on the shore then speak to the camera before driving away in the truck.\", \" We see the ending title screens.\"]}, \"v_1RQ27XZKU1E\": {\"duration\": 227.16, \"timestamps\": [[20.44, 35.21], [42.02, 161.28], [161.28, 171.51], [191.95, 206.72]], \"sentences\": [\"A woman is putting mousse into her hair.\", \" She then starts putting her hair up.\", \" She puts a bobby pin into her hair.\", \" She then sprays her hair with hairspray.\"]}, \"v_zGTqXydTuQs\": {\"duration\": 158.9, \"timestamps\": [[0, 38.13], [19.07, 74.68], [46.08, 121.55], [118.38, 158.9]], \"sentences\": [\"Two boys are shown putting on scuba gear.\", \" An instructor takes them underwater.\", \" They swim around in shallow water.\", \" They then exit the water.\"]}, \"v_Vnj0j648Emw\": {\"duration\": 29.26, \"timestamps\": [[0, 3.95], [5.27, 18.73], [19.31, 29.26]], \"sentences\": [\"A man is dressed as a chef in a classroom.\", \" He is holding up a sharpener and a knife.\", \" He demonstrates how to sharpen a knife against the blade.\"]}, \"v_0ZXc2fEDgg8\": {\"duration\": 83.17, \"timestamps\": [[0, 4.99], [4.99, 9.57], [9.57, 25.78], [25.78, 30.36], [30.77, 48.24], [48.24, 50.74], [51.57, 56.97], [57.39, 67.79], [68.62, 83.17]], \"sentences\": [\"A title screen with words sliding across it.\", \" A man picks up a slumped over man on a sidewalk at night then slams the slumped man onto the ground.\", \" We see a repeat of the slam in slow motion.\", \" We then see another screen with title on it.\", \" We see the other man lift the first man and slam him on the sidewalk.\", \" We see a title screen.\", \" A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man slams the man on another man laying on the ground.\", \" We see a repeat of the second slam in slow motion.\", \" We see the ending title and credits.\"]}, \"v_hhk7A9gJcu8\": {\"duration\": 162.94, \"timestamps\": [[0, 158.05], [0, 7.33], [18.74, 43.99], [44.81, 76.58], [76.58, 156.42]], \"sentences\": [\"A woman in a kitchen setting demonstrates how to make a smores ice cream cake using different ingredients, cookware and an oven.\", \"  A woman talks to the camera while standing in front of a kitchen counter.\", \"  The woman mixes ingredients that she then pours in a bowl and puts in the oven.\", \"  The women then mixes a creamy filling of whipped cream and melted chocolate.\", \" The woman then lines a bake pan with graham crackers and pours everything together after which she smiles at the camera with the finished product before her.\"]}, \"v_Q_W0GL3ljUY\": {\"duration\": 166.21, \"timestamps\": [[0, 162.88], [5.82, 166.21], [0, 166.21]], \"sentences\": [\"man is helping a woman dressing like a sumo.\", \" two sumo players are standing in a small blue court wrestling and a dog is walking around.\", \" people are ouside a house in the backyard watchnig people in sumo outfits wrestling.\"]}, \"v_NJjoTu1vS7A\": {\"duration\": 174.78, \"timestamps\": [[0, 157.3], [3.5, 30.59], [31.46, 157.3], [158.17, 174.78]], \"sentences\": [\"A dramatic video of children outside playing lacrosse in a park.\", \"  The video starts with jump cuts of the young men with helmets on and suiting up.\", \"  They play the game with various parts of the video going in slow motion for dramatic effect.\", \"  A black screen appears with white letters and then another screen with white and red letters showing time and dates for matches.\"]}, \"v_spJaetMCD20\": {\"duration\": 114.61, \"timestamps\": [[0, 83.1], [0, 82.52], [82.52, 114.61]], \"sentences\": [\"man is standing in a trampoline and make a jump into a pool.\", \" people are walking behind him next to the pool in the roofed gym.\", \" man is doing a jump in a pool in a competition and people around the pool are watching him.\"]}, \"v_CsvEXvHlO3M\": {\"duration\": 88.82, \"timestamps\": [[0, 29.75], [23.09, 59.95], [55.95, 86.6]], \"sentences\": [\"A man is seen smiling to the camera and leads into several clips of people walking with tubes.\", \" A person rides down a snowy hill with a child on a tube.\", \" Several more shots are shown of people riding down the mountain and smiling to one another.\"]}, \"v_mqwC7rqeXsk\": {\"duration\": 91.21000000000001, \"timestamps\": [[0, 4.1], [4.1, 53.36], [53.36, 91.21]], \"sentences\": [\"A military marching band preforms in front of a castle with the audience on either sides.\", \" The drummers play their song in unison and drum in sync.\", \" The drummers then form a straight line and continue to do their routine in perfect sync with each other until then end.\"]}, \"v_Lyaozxv4_qU\": {\"duration\": 41.96, \"timestamps\": [[0, 41.96], [7.13, 41.96], [0, 25.59]], \"sentences\": [\"man is talking to the camera and shows another man holding a leaf blower.\", \" man is standing in the woods blowing dry leaves on the woods.\", \" man is standing inf ront of a bricked wall talking to the camera.\"]}, \"v_ovq0Fqbxt1c\": {\"duration\": 42.84, \"timestamps\": [[0.64, 12.85], [12.42, 29.13], [30.63, 42.84]], \"sentences\": [\"A woman is seen speaking to the camera holding up a bottle.\", \" She stirs around liquid into a bowl and dips a rag in.\", \" She then cleans off the table using a rag.\"]}, \"v_z85nM9V4058\": {\"duration\": 196.63, \"timestamps\": [[0, 48.17], [48.17, 104.21], [104.21, 148.45], [148.45, 196.63]], \"sentences\": [\"A woman is outside with her two kids,drawing a game of hopscotch on the ground with a piece of chalk.\", \"When she is finished,the older child stands behind the number one,waves to the camera and hops all the way through the game.\", \"Then the lady grabs the rock,but the boy comes back and takes another turn.\", \"Finally,the little girl throws the rock and takes her turn but she ends up jumping pass the game before turning around coming back.\"]}, \"v_uOUjBTlwoxg\": {\"duration\": 55.54, \"timestamps\": [[0, 15.27], [15.27, 38.6], [37.21, 54.43]], \"sentences\": [\"A person is seen moving around on a snowboard around a yard.\", \" The person falls and gets back up riding on the board.\", \" The person continues to ride around on the board in the yard.\"]}, \"v_V0e5tItt1RM\": {\"duration\": 224.79, \"timestamps\": [[0, 224.79], [55.07, 113.52], [113.52, 157.36], [157.36, 224.79]], \"sentences\": [\"Two young girls are talking to a camera doing a vlog.\", \" They play a game of rock paper scissors and then the girl on the right wins and proceeds to sit on the girl on the left.\", \" They then play another game of rock paper scissor and the girl on the left wins and sits on the girl on the right.\", \" The video then turns into the two young girls goofing around with toys and hitting each other playfully.\"]}, \"v_TspdPLMqTx0\": {\"duration\": 169.0, \"timestamps\": [[0, 27.04], [25.35, 90.41], [92.1, 169]], \"sentences\": [\"a young man stands in a room holding a violin.\", \" the man then begins playing the violin.\", \" a woman is then shown walking through a forest.\"]}, \"v_TbLBu2TDey8\": {\"duration\": 118.07, \"timestamps\": [[0, 20.07], [21.84, 78.52], [56.68, 108.04]], \"sentences\": [\"A woman is seen standing in a field holding frisbees with a dog.\", \" The woman begins throwing around the frisbee performing tricks with the dog.\", \" She continues to do tricks with the dog while others watch on the side.\"]}, \"v_3nzXMKByUnk\": {\"duration\": 209.48, \"timestamps\": [[0, 7.33], [7.33, 84.84], [84.84, 131.97], [131.97, 209.48]], \"sentences\": [\"woman is laying on the entrance of a wall and a man is going on stairs.\", \" when they meet start dancing cumbia in the middle of the square.\", \" woman is dancing cumbia alone in a large square.\", \" the man and the woman keeps dancing.\"]}, \"v_vbHLA5l_BRc\": {\"duration\": 154.73, \"timestamps\": [[0, 42.55], [37.13, 117.59], [94.38, 152.41]], \"sentences\": [\"People are seen looking close up to a camera with a cam climbing on a set of skis.\", \" He is then shown riding along the water while the camera watches from below.\", \" He continues to ride while shots of the boat are shown and him smiling at the camera.\"]}, \"v_E50qKeeMbgU\": {\"duration\": 70.71000000000001, \"timestamps\": [[0, 11.67], [12.02, 70.71], [39.24, 60.81], [41.72, 70.71]], \"sentences\": [\"A man in a red shirt is standing next to a workout machine talking.\", \" Then there us a girl in a blue shirt on one of the machines using it to workout.\", \" The video shows all of the various features of the machine.\", \" All of the features of the machine are pointed out by the narrator and the girl interacts with them.\"]}, \"v_J4rzLO4u_pI\": {\"duration\": 147.8, \"timestamps\": [[0, 22.17], [25.86, 60.6], [79.07, 147.8]], \"sentences\": [\"A man is standing outside a house, talking.\", \" He puts on a pair of gloves.\", \" He then uses shears to cut the dry dead grass in front of the house.\"]}, \"v_IjwOh2YmT9U\": {\"duration\": 176.26, \"timestamps\": [[0, 18.51], [29.96, 105.76], [126.91, 176.26]], \"sentences\": [\"A man is engaged in skateboarding outdoors.\", \" He takes several ramps and skate parks.\", \" He flips and turns through the city streets.\"]}, \"v_DWsO49YhWUI\": {\"duration\": 64.06, \"timestamps\": [[0.32, 23.38], [24.34, 51.57], [48.37, 63.1]], \"sentences\": [\"A girl is shown speaking to the camera with clips of women splashing water on their face.\", \" The girl then begins washing her face in the sink.\", \" She splashes water all over her face and still speaks to the camera.\"]}, \"v_3-_Eld2NwJ0\": {\"duration\": 70.22, \"timestamps\": [[0, 10.18], [9.13, 14.39], [0, 70.22]], \"sentences\": [\"A woman is putting sand into a green bucket.\", \" She dumps it out upside down in front of her.\", \" A little boy is sitting in the sand next to her.\"]}, \"v_tyuyI30cZ00\": {\"duration\": 37.8, \"timestamps\": [[0, 6.43], [6.43, 31.94], [31.94, 37.8]], \"sentences\": [\"A woman is doing something in her face in front of a mirror.\", \" The reflection in the mirror shows that she is fixing her right eyebrows shifting to her left eyebrows.\", \" Then the reflection in the mirror again, she starts to fix her left eye.\"]}, \"v_qsYElirHVUU\": {\"duration\": 200.09, \"timestamps\": [[0, 27.01], [37.02, 128.06], [143.06, 200.09]], \"sentences\": [\"A man wearing a hat is outdoors talking.\", \" Several skaters are going up and down ramps.\", \" They are in a competition for skateboarders.\"]}, \"v_Q-fUXywUo7o\": {\"duration\": 144.61, \"timestamps\": [[4.34, 10.85], [10.12, 121.48], [121.48, 138.11]], \"sentences\": [\"A kneeing man talks to the camera.\", \" The man uses some shoe polish to polish a pair of black shoes.\", \" The man holds up and displays the polished shoes.\"]}, \"v_kl7qwEgYLZU\": {\"duration\": 31.42, \"timestamps\": [[0, 3.46], [4.71, 12.41], [11.47, 20.89], [20.26, 31.42]], \"sentences\": [\"two girls are sitting in sand on a beach.\", \" the girls begin building a sand castle.\", \" waves from the ocean come in and wash away the sand castle.\", \" the girls then go inside and play.\"]}, \"v_ep2Kyk8CHT8\": {\"duration\": 152.39, \"timestamps\": [[0, 7.62], [8.38, 32.76], [30.48, 71.62], [72.39, 92.2], [92.96, 123.44], [124.2, 152.39]], \"sentences\": [\"\\\"Spear & Jackson Tyzack Professional Builders Tools\\\" appears on screen with a logo and website address.\", \" A man speaks to the camera holding a tool.\", \" A man begins troweling a wall.\", \" The man returns to talk talk to the camera again while holding a trowel.\", \" A man is building a brick wall.\", \" The man returns, speaking to the camera and a number of products are shown on screen.\"]}, \"v_Rd18n3PeZvk\": {\"duration\": 3.37, \"timestamps\": [[0, 0.77], [0.91, 1.7], [2.05, 3.37]], \"sentences\": [\"A man is seated at a table outside.\", \" He is holding a hose to his mouth.\", \" He takes a hit from a hookah and blows out smoke.\"]}, \"v_c-8GvZKndyQ\": {\"duration\": 91.77, \"timestamps\": [[0, 3.67], [3.67, 75.71], [75.71, 91.77]], \"sentences\": [\"A young Asian female with a pink leotard is standing in an auditorium taking deep breaths and becoming focus.\", \"The girl then lifts her head and does a cartwheel onto the balance beam to begin her routine.\", \"She does several flips,toe touches,turns and flips during her routine before jumping off and sticking her landing on a blue mat.\"]}, \"v_mOISOUKHpNM\": {\"duration\": 50.43, \"timestamps\": [[0, 50.43], [0.25, 50.43], [0, 50.18]], \"sentences\": [\"girl is running in a race track and make a jump to a pole to make gymnastics.\", \" jury are sitting in front of a table behind the stage.\", \" people are standing behind the stage siting on stands watching the girl.\"]}, \"v_8FO4W-SBpxs\": {\"duration\": 177.98, \"timestamps\": [[0, 69.41], [51.61, 128.15], [117.47, 175.31]], \"sentences\": [\"Two men are seen kneeling down in front of one another and begin performing martial arts.\", \" The man kick their legs around and switch places with other men.\", \" More people kick around a circle near one another as others watch on the side.\"]}, \"v_sUL9HAplalo\": {\"duration\": 109.15, \"timestamps\": [[0, 27.83], [18.55, 27.83], [32.2, 47.48], [81.86, 86.23]], \"sentences\": [\"Two women are sitting down talking.\", \" A woman is smoking a cigarette.\", \" A man is crying on a woman.\", \" A woman in sun glasses is crying into a tissue.\"]}, \"v_QMHF20eV9N0\": {\"duration\": 34.81, \"timestamps\": [[0, 4.52], [4.52, 9.75], [9.75, 20.54], [20.54, 34.81]], \"sentences\": [\"A woman in black and red tights is getting ready to start running.\", \" Once she starts running builds up lots of speed  and even starts jumping up as she runs.\", \" Once she gets in place where she is ready she puts all her force into throwing the stick.\", \" She does a great job when she is done she walks around the field waving the german flag very ecstatic.\"]}, \"v_8_XQPqLdblg\": {\"duration\": 34.62, \"timestamps\": [[0, 34.62], [0, 13.5], [13.5, 34.62]], \"sentences\": [\"Four squares are shown of the same woman dressed in different clothes.\", \"In three of the rectangles,the woman is singing in front of a mic and on the bottom,she is playing the guitar.\", \"In each video,she begins singing at different times implying that she is singing different parts of the song.\"]}, \"v_xDc407xoYUM\": {\"duration\": 32.14, \"timestamps\": [[0, 3.86], [3.7, 14.94], [13.98, 27.64], [27.8, 32.14]], \"sentences\": [\"A man appears in a small body of water holding on to a rope attached to a boat,gliding across the water.\", \"All of a sudden,he reappears with a burger and a shake in hand and sailing but he isn't holding on.\", \"Another man then comes along in the water and the two begin to box.\", \"Finally,a commercial add for Dairy Queen comes on showing that you can get a burger and a shake for three dollars and ninety nine cents.\"]}, \"v_2sbF8W0_bbg\": {\"duration\": 14.26, \"timestamps\": [[0, 5.28], [5.42, 11.69], [11.76, 14.26]], \"sentences\": [\"A young woman is smoking a bong.\", \" She exhales a lot of smoke.\", \" She smiles and the camera pans away.\"]}, \"v_qiT-OtAHtvk\": {\"duration\": 126.41, \"timestamps\": [[0, 40.45], [28.44, 99.23], [94.18, 123.25]], \"sentences\": [\"A group of men are seen playing instruments with one another.\", \" They continue to play together while laughing and smiling to one another.\", \" People walk in and out of frame as they play.\"]}, \"v_gLfIPN_WM48\": {\"duration\": 192.19, \"timestamps\": [[0, 40.36], [30.75, 103.78], [107.63, 150.87], [137.42, 190.27]], \"sentences\": [\"A close up of foo is seen followed by a woman mixing ingredients.\", \" She boils some water and begins mixing eggs and other various ingredients.\", \" She continues mixing in more chocolate and puts them on a pan in the oven.\", \" She lays them out next to a glass of milk and breaks off a piece.\"]}, \"v_ddLFSNa3ci0\": {\"duration\": 158.2, \"timestamps\": [[18.98, 56.16], [81.47, 87.8], [105.2, 131.3]], \"sentences\": [\"A man kneels down with a blue bucket in front of him.\", \" Cactus plants are planted in soil.\", \" A man spreads mulch around the plant.\"]}, \"v_BBRNbo8c8gA\": {\"duration\": 130.61, \"timestamps\": [[0.65, 39.84], [35.27, 91.43], [80.33, 128]], \"sentences\": [\"People are seen smiling to the camera and lead into people performing tricks.\", \" More and more people do flips in the middle of a circle of people.\", \" People watch as the kids continue to flip around and cheer with one another.\"]}, \"v_KjUxjcpIG_Y\": {\"duration\": 68.34, \"timestamps\": [[0, 11.62], [9.57, 42.71], [47.49, 68.34]], \"sentences\": [\"A kid takes mouthwash and swishes it in his mouth.\", \"  He spits it out and then starts crying.\", \"  He starts screaming into a towel.\"]}, \"v_s_XdqaQj0uI\": {\"duration\": 208.21, \"timestamps\": [[3.12, 16.66], [18.74, 20.82], [23.94, 24.99], [28.11, 96.82], [96.82, 136.38], [136.38, 152], [152, 192.6]], \"sentences\": [\"A man holding some sort of fruit takes to the camera while two children walk around near him.\", \" The man's eye is briefly visible through some sort of tunnel.\", \" A still image of the two children are shown.\", \" The man, now seated, holds a carved pumpkin and talks to the camera while the two children idle nearby.\", \" Hands are shown going through the process of emptying a pumpkin and adding dirt to it.\", \" The pumpkin is buried in the ground.\", \" The man talks to the camera again as the two children walk near him.\"]}, \"v_0EepbsAtiDk\": {\"duration\": 186.55, \"timestamps\": [[0, 186.55], [12.13, 13.99], [185.62, 186.55]], \"sentences\": [\"A group of individuals rides horses on a beach, with the camera view being from the perspective of one of the riders.\", \" The camera pans right to show cars nearby.\", \" The camera pans down to focus on the horse the camera user is riding on.\"]}, \"v_hr8zkCXbTTk\": {\"duration\": 180.13, \"timestamps\": [[0, 18.91], [25.22, 109.88], [117.99, 180.13]], \"sentences\": [\"a group of curlers are shown inside a hockey rink.\", \" The women take turns pushing the puck down the aisle.\", \" They engage in the game of curling together.\"]}, \"v_mtSJG4q2vP4\": {\"duration\": 111.13, \"timestamps\": [[0, 18.34], [18.89, 85.57], [87.79, 111.13]], \"sentences\": [\"a woman runs down a track at a fast speed.\", \" She takes a huge leap through the air, landing into the sand.\", \" Other athletes follow suit, also landing in the sand.\"]}, \"v_FEqLmpNzxdg\": {\"duration\": 173.94, \"timestamps\": [[0, 10.44], [10.44, 51.31], [69.58, 83.49], [86.97, 126.11], [153.07, 163.5]], \"sentences\": [\"Two men are standing on the ice fishing.\", \" A man is holding a small fish in his hand talking.\", \" A fish is swimming under the ice.\", \" A man is knelt down on the ice reeling in a fish.\", \" They pull a large fish out and hold it up.\"]}, \"v_2WyRPSKFUi8\": {\"duration\": 216.06, \"timestamps\": [[0, 41.05], [36.73, 155.56], [159.89, 216.06]], \"sentences\": [\"A man is riding a lawn mower backward down a hill.\", \" He is blowing leaves away while he is moving.\", \" He continues in a circle as he keeps blowing the leaves.\"]}, \"v_yyCsQ7QzAJ8\": {\"duration\": 228.72, \"timestamps\": [[0, 25.16], [24.02, 60.61], [61.75, 94.92], [97.2, 129.23], [131.51, 172.68], [178.4, 228.72]], \"sentences\": [\"The ingredients for a chocolate cake is on a table.\", \" Person puts chocolate and whipping cream in a pot to melt.\", \" The person whip white eggs and adds the sugar.\", \" Then, the person adds the yolks in the chocolate mix mix it and adds cooking oil, and mix it again.\", \" After, the person mix the chocolate mix and the whip cream, the adds  flower and mix all the ingredients.\", \" Next, the woman applies cooking oil to a baking pan, and put the cake mix in it and bakes.\"]}, \"v_nB90Q8sTBgE\": {\"duration\": 210.44, \"timestamps\": [[0, 39.98], [38.93, 101.01], [86.28, 170.46], [144.15, 207.29]], \"sentences\": [\"A man is seen speaking to the camera and holding up a paper.\", \" He measures the paper and rips it, followed by putting it on a canvas.\", \" The man is then seen painting the picture while speaking to the camera.\", \" He pulls out his tools and continues working and ends by showing off the paper.\"]}, \"v_n2wq_9TeNYM\": {\"duration\": 41.17, \"timestamps\": [[0, 4.12], [2.47, 10.09], [4.32, 34.99], [34.17, 41.17]], \"sentences\": [\"Several bikers are lined up in a row.\", \" They then take off biking.\", \" They ride up and down hills on the track.\", \" Finally the race is finished.\"]}, \"v_Y9xPzIiy6mI\": {\"duration\": 49.58, \"timestamps\": [[0, 10.41], [9.92, 33.22], [30.49, 49.58]], \"sentences\": [\"two sumo wrestlers are knelling in a ring.\", \" the two get up and run towards each other.\", \" one runs off the stage ring and falls.\"]}, \"v_akJbB6LWP34\": {\"duration\": 55.95, \"timestamps\": [[0, 5.32], [5.6, 49.52], [49.8, 55.95]], \"sentences\": [\"\\\"Gooroo Youth Basketball Offensive Drills: 3 on 0 Pass and Screen Away Rollyer Lay-Up by Tara VanDerveer\\\" is shown.\", \" A coach instructs small children in a gym playing basketball.\", \" The Gooroo logo appears on screen again.\"]}, \"v_iLHVaeiPpuw\": {\"duration\": 199.23, \"timestamps\": [[0, 175.32], [7.97, 33.87], [33.87, 107.58], [107.58, 175.32], [175.32, 199.23]], \"sentences\": [\"Two teams are on an indoor court and playing soccer.\", \" A man wearing glasses is now talking into the camera holding his microphone in front of him, then is shown interviewing a man.\", \"Various clips of the teams playing soccer continues while the crowd cheers them on.\", \"Another player is briefly shown being interviewed and more clips of the game play again while the crowd cheers on.\", \"The game ends and two players get interviewed but we can't see the man interviewing them just his hand holding the microphone while people walk off the court.\"]}, \"v_foFFu7bY5ow\": {\"duration\": 138.04, \"timestamps\": [[0, 19.33], [24.85, 83.52], [90.42, 138.04]], \"sentences\": [\"A man is standing on the beach talking to the camera.\", \" Another man joins him as they have a conversation.\", \" They then talk about the art of surfing and some different moves.\"]}, \"v_dnJLvsqqSgQ\": {\"duration\": 176.25, \"timestamps\": [[0, 176.25], [22.03, 176.25], [37.89, 176.25], [81.08, 97.82]], \"sentences\": [\"Many people are on a beach.\", \" A man starts doing flips into the water.\", \" He does it many different times.\", \" Eventually he spars with someone on the beach.\"]}, \"v_IROb83YwQ8Y\": {\"duration\": 144.73, \"timestamps\": [[0, 52.1], [46.31, 109.99], [111.44, 141.11]], \"sentences\": [\"A close up of a razor is shown as well as a man speaking to the camera.\", \" The man then begins shaving his face while holding up a phone.\", \" He continues shaving his face and ends by turning off the camera.\"]}, \"v_A8xThM3onkc\": {\"duration\": 73.27, \"timestamps\": [[0, 11.36], [11.36, 59.35], [59.35, 73.27]], \"sentences\": [\"A woman speaks to the camera surrounded by numerous bottles of various alcoholic drinks.\", \" She begins mixing a drink in a glass with ice.\", \" She adds some fruit on a toothpick to the finished drink.\"]}, \"v_VSeBb4e9ysU\": {\"duration\": 151.84, \"timestamps\": [[0, 151.84], [37.2, 151.84], [54.66, 151.84]], \"sentences\": [\"woman is standing in snowy mountain is interviewing another man.\", \" man is standing while is being interviewed and is holding a shovel cleaning a path.\", \" man is taking out the snow with a shovel.\"]}, \"v_E5FiPYZARLE\": {\"duration\": 189.68, \"timestamps\": [[0, 189.68], [49.32, 52.16], [106.22, 121.4]], \"sentences\": [\"Four men are at a beach playing volley ball as a man filming them announces the plays and talks to them and jokes with them.\", \"  A girls asks for help with a splinter she has.\", \"  The men switch sides of the volley ball game.\"]}, \"v_8iHklV25LaE\": {\"duration\": 29.91, \"timestamps\": [[0, 8.37], [7.48, 21.68], [19.89, 28.71]], \"sentences\": [\"Two women are seen walking around a dark room with one washing dishes.\", \" One walks in and out of frame while showing a dart spot.\", \" They are shown again smiling to the camera.\"]}, \"v_6UjZaj86bKs\": {\"duration\": 227.89, \"timestamps\": [[0, 45.58], [54.69, 145.85], [149.27, 227.89]], \"sentences\": [\"A woman is kneeling in a dance pose on a stage.\", \" She begins belly dancing with another woman.\", \" They move all over the stage fluidly as they perform.\"]}, \"v_aS0wGPhD48o\": {\"duration\": 80.03999999999999, \"timestamps\": [[0, 6.8], [7.2, 58.43], [58.43, 80.04]], \"sentences\": [\"A woman's vibrantly painted fingernails are shown on screen with the word \\\"superWOWstyle!\\\" shown.\", \" Steps in painting nails are shown, including prep, painting an sealing.\", \" The final design is shown again along with social media links.\"]}, \"v_OMa1i3ITBbo\": {\"duration\": 141.14, \"timestamps\": [[0, 141.14], [29.64, 141.14], [61.4, 141.14]], \"sentences\": [\"The man with headphones is talking to the camera.\", \"The man clapped his hand and talked and raised his hand.\", \" The man put is hand over his other hand and continue to talk.\"]}, \"v_SipyRTPgdfY\": {\"duration\": 22.24, \"timestamps\": [[0, 22.24], [0, 22.12], [0, 22.01]], \"sentences\": [\"man is lifting weight standing on the middle of stage.\", \" man is weightlifting is a roofed gym.\", \" blonde man wearing shorts is in the roofed gym and is lifting weight.\"]}, \"v_whJ6ESGNoyY\": {\"duration\": 29.56, \"timestamps\": [[0, 11.82], [24.09, 29.56], [11.53, 12.12]], \"sentences\": [\"Two dogs are walking on leashes on a trail.\", \" A woman is walking next to them holding their leashes.\", \" They walk next to a trash can in the grass.\"]}, \"v_hSSHf_c1q5I\": {\"duration\": 135.98, \"timestamps\": [[0, 12.24], [12.92, 52.35], [55.07, 135.98]], \"sentences\": [\"A man and woman are seated at a table, looking at a map.\", \" They get geared up for a run and drink water.\", \" They then join and run in a race with several other people.\"]}, \"v_ekJtPwfLM-M\": {\"duration\": 154.41, \"timestamps\": [[0, 27.79], [0, 31.65], [20.07, 136.66], [121.99, 154.41]], \"sentences\": [\"A man stands in a dance studio.\", \" He is wearing a black tank top.\", \" He then demonstrates several different stretches.\", \" He stands back up in the studio.\"]}, \"v_2fMpsSrmeIA\": {\"duration\": 58.7, \"timestamps\": [[0, 23.19], [23.48, 51.36], [51.66, 58.7]], \"sentences\": [\"A  bar is shown with several people inside enjoying their self and two women appear playing a game of pool.\", \"As the game continues,the young lady bends over the table and looks at the guys and asks if she is blocking their view.\", \"After they end the video,an ad for beer appears that the men were drinking.\"]}, \"v_KR1-rdV18pI\": {\"duration\": 221.94, \"timestamps\": [[0, 38.84], [54.37, 140.93], [140.93, 219.72]], \"sentences\": [\"A person is water skiing backwards off the side of a boat.\", \" A person is water skiing back and forth behind a boat.\", \" A person is water skiing next to a boat and sits down in the water before standing back up.\"]}, \"v_4ACqWG_p1bI\": {\"duration\": 192.29, \"timestamps\": [[0, 41.34], [45.19, 130.75], [137.48, 188.44]], \"sentences\": [\"A young boy is seen smiling to the camera while sitting behind a drum set.\", \" Another boy adjusts a microphone while the other begins playing the drums.\", \" The second boy dances around and screams into the mic while the first continues to play drums.\"]}, \"v_q6sLCLnTuik\": {\"duration\": 120.42, \"timestamps\": [[9.03, 104.76], [31.31, 78.27], [92.12, 103.56]], \"sentences\": [\"A woman is sitting in a barber chair in front of a man.\", \" The man blow dries the woman's hair using a round brush.\", \" He then styles it with a comb.\"]}, \"v_fD9JNH5FWCk\": {\"duration\": 86.84, \"timestamps\": [[0.87, 6.95], [7.38, 75.12], [21.71, 51.67], [62.96, 72.95], [75.55, 76.86], [77.29, 80.76], [81.2, 85.97]], \"sentences\": [\"The credits of a clip are shown.\", \" Children are outside playing with hula hoops.\", \" A lady is standing on the lawn and speaking.\", \" A guy takes his body through a hula hoop.\", \" The children chase the guy.\", \" The children lay on the lawn with the guy.\", \" The credits of a video are shown.\"]}, \"v_DepG0r3JiV4\": {\"duration\": 76.07, \"timestamps\": [[0.76, 29.29], [22.82, 55.91], [54.39, 74.93]], \"sentences\": [\"A man is seen speaking to the camera while holding onto a tennis racket.\", \" Clips are shown of people playing tennis and him holding up the racket.\", \" He puts the racket closer to the camera.\"]}, \"v_p8MvTi8hJdE\": {\"duration\": 219.94, \"timestamps\": [[0, 53.89], [54.99, 159.46], [156.16, 216.64]], \"sentences\": [\"A man is shown speaking to the camera and begins moving around on a snowboard.\", \" The man demonstrates how to move on the board while still speaking to the camera.\", \" He continues to move around an area while speaking and gesturing to himself.\"]}, \"v_82cpSdoHdg4\": {\"duration\": 65.04, \"timestamps\": [[0, 7.15], [5.2, 55.28], [53.66, 65.04]], \"sentences\": [\"The woman is talking on the microphone.\", \" The girl started playing the drums buy thumping them.\", \" When the girl finished she take a bow and waved.\"]}, \"v_wdD-UHM8rTg\": {\"duration\": 223.1, \"timestamps\": [[0, 52.43], [44.62, 130.51], [90.35, 175.13], [170.67, 223.1]], \"sentences\": [\"Several clips are shown of people walking around and speaking to the camera.\", \" The people hold up instruments and one boy begins to play.\", \" More shots are shown of trash and people wandering around and speaking to the camera.\", \" More clips are shown of children playing instruments and speaking to the camera.\"]}, \"v_CKjHXMoXye4\": {\"duration\": 55.68, \"timestamps\": [[0, 5.57], [7.24, 21.44], [21.99, 55.68]], \"sentences\": [\"A man is wearing a beanie and talking to the camera.\", \" Another man is shown, introduced as his roommate.\", \" They walk into a room before being shown jumping bars and vaulting.\"]}, \"v_QWqEi91fWOQ\": {\"duration\": 180.88, \"timestamps\": [[0, 28.04], [35.27, 120.29], [136.57, 180.88]], \"sentences\": [\"A woman is talking in front of a goal net.\", \" A man is then talking to the camera about a game.\", \" The players gather on the field to play lacrosse.\"]}, \"v_MtFX7uTHwFQ\": {\"duration\": 234.89, \"timestamps\": [[0, 41.11], [109.23, 153.86], [196.14, 205.53]], \"sentences\": [\"Man wearing khakis throws a strike.\", \"  Man wearing a black shirt throws a strike.\", \"  The red ball glides across the lane.\"]}, \"v_hi4aLY1ajTY\": {\"duration\": 140.2, \"timestamps\": [[0, 14.02], [14.02, 32.25], [32.25, 77.11], [77.81, 140.2]], \"sentences\": [\"blonde woman is in a pool trying to do that a kid jumps to the pool.\", \" little gil is in the edge of the pool and make a jump, then start swimming to her mother.\", \" the same woman is with the kid in a bigger pool and the id jumps and is swimming.\", \" kid is swimming in a pool take u on stairs and make a jump again.\"]}, \"v__HMwzNA9DNY\": {\"duration\": 100.13, \"timestamps\": [[4.01, 12.02], [13.02, 29.54], [30.54, 100.13]], \"sentences\": [\"People are setting up targets on a field.\", \" People are standing in a line holding bow and arrows.\", \" They start to shoot at the targets on the field.\"]}, \"v_yxcikJ3Hp8w\": {\"duration\": 172.11, \"timestamps\": [[0, 172.11], [26.68, 63.68], [137.69, 169.53]], \"sentences\": [\"A group performs a cheerleading routine.\", \"  They come together and make a pyramid.\", \"  It ends with high kicks in unison and then  a flip.\"]}, \"v_dpS_S4Zi2Po\": {\"duration\": 62.02, \"timestamps\": [[0, 19.54], [14.89, 41.86], [40.62, 56.13]], \"sentences\": [\"A young girl is seen holding up makeup and smiling to the camera.\", \" The girl looks into the camera while still playing with makeup.\", \" She continues playing with the makeup over and over again.\"]}, \"v_5BbHu0WQZqw\": {\"duration\": 118.25999999999999, \"timestamps\": [[0, 39.62], [31.34, 82.78], [76.87, 114.12]], \"sentences\": [\"A close up of a person's legs are shown with other people putting on shaving cream.\", \" The people then begin shaving the other person legs.\", \" They continue to shave while others move in and out frame.\"]}, \"v_DZx2G-OZAPk\": {\"duration\": 32.07, \"timestamps\": [[0, 5.61], [5.77, 28.86], [29.02, 32.07]], \"sentences\": [\"A young man with bleached white hair sits at a piano.\", \"  He begins playing the piano enthusiastically.\", \" The finishes the song, gets up and leaves smiling.\"]}, \"v_dAiqJJKezPE\": {\"duration\": 34.13, \"timestamps\": [[0, 5.29], [5.29, 18.77], [18.77, 34.13]], \"sentences\": [\"A man rolls a tire towards a raised car.\", \" The man uses a jack to raise the tire to the car's height.\", \" The man attaches the tire to the car with bolts.\"]}, \"v_mYHezmI0U6U\": {\"duration\": 136.02, \"timestamps\": [[0, 24.48], [31.97, 84.33], [90.46, 136.02]], \"sentences\": [\"A man is shown riding down a snowy embankment.\", \" He is using snow skis to ski down a snow covered hill.\", \" He moves quickly, doing a flip as he goes.\"]}, \"v_SGiMk9KdOQw\": {\"duration\": 136.63, \"timestamps\": [[0, 19.81], [13.66, 90.17], [103.84, 136.63]], \"sentences\": [\"several people are in a swimming pool.\", \" a ball is thrown from one person to another.\", \" the ball is eventually tossed into a goal.\"]}, \"v_m2hiQ9EOUUI\": {\"duration\": 97.62, \"timestamps\": [[0, 13.67], [13.67, 63.45], [66.38, 97.62]], \"sentences\": [\"A man and a little boy are surrounded by a watching crowd.\", \" They are displaying several martial arts moves.\", \" They kick, flip, and spin for the crowd.\"]}, \"v_06r6DtoTtSQ\": {\"duration\": 125.95, \"timestamps\": [[0, 40.3], [34.64, 87.53], [85.01, 122.8]], \"sentences\": [\"A man is shown speaking to the camera and moving his feet on a skateboard.\", \" He moves his hands to demonstrate how to move on the board and then uses his feet.\", \" He continues to demonstrate the move while riding around and speaking to the camera.\"]}, \"v_C0t3fbC2RCg\": {\"duration\": 133.21, \"timestamps\": [[0, 35.97], [27.31, 98.58], [76.6, 129.88]], \"sentences\": [\"A woman is seen sitting on a couch next to a young child.\", \" The child begins blowing into an instrument while the woman claps.\", \" The boy continues playing and spinning around while the woman claps.\"]}, \"v_8wB0BOjuyes\": {\"duration\": 16.23, \"timestamps\": [[0, 16.23], [2.03, 2.76], [6.9, 16.23]], \"sentences\": [\"There are riders on their own horses and they are holding sticks as the horse runs on the grass.\", \" One of the men reach down with their stick and hits the ball that is on the grass and it goes rolling fast.\", \"The horses all go running and the man once again reaches down and hits the ball with his stick and they all continue to ride on their running horses.\"]}, \"v_QGzrtgTrwiQ\": {\"duration\": 170.25, \"timestamps\": [[0, 50.22], [51.07, 125.13], [114.92, 165.99]], \"sentences\": [\"A man is seen long jumping into a pit followed by another man jumping in.\", \" More clips are shown of men running down a track into a pit.\", \" The video continues on with more clips of men running.\"]}, \"v_lQWij22wbNU\": {\"duration\": 32.3, \"timestamps\": [[0, 4.68], [4.84, 15.83], [12.6, 24.22], [23.9, 32.3]], \"sentences\": [\"a person kicks a ball across the grass.\", \" the ball then becomes airborne.\", \" a few people run towards the ball.\", \" the ball then rolls away from the people.\"]}, \"v_8onOVVuN_Is\": {\"duration\": 64.45, \"timestamps\": [[0, 64.45], [0, 63.8], [0.64, 64.45]], \"sentences\": [\"women are running in a race track and making a long jump in a dusty path.\", \" behind the women jurys are siting on white tables.\", \" peolpe are on side of race track watching the women.\"]}, \"v_HGSZ9_CVuM4\": {\"duration\": 148.47, \"timestamps\": [[0, 11.14], [15.59, 52.71], [62.36, 148.47]], \"sentences\": [\"A man is seen talking inside a building.\", \" He has components from a bike and some tools.\", \" He demonstrates how to replace and repair that part of the bike.\"]}, \"v_X9Z9uqrb9EY\": {\"duration\": 70.52, \"timestamps\": [[0, 70.52], [1.41, 70.52], [25.39, 51.83]], \"sentences\": [\"People are sitting down on chairs.\", \" They are playing drums with their hands.\", \" People are standing next to them behind a table watching.\"]}, \"v_K7f0co9akMI\": {\"duration\": 191.08, \"timestamps\": [[0, 66.88], [45.86, 142.35], [127.07, 189.17]], \"sentences\": [\"A small group of women are seen playing a volleyball game on a sandy course while others watch on the side.\", \" The women hit the ball back and fourth while a man watches the scores.\", \" The game continues on with people watching on the side.\"]}, \"v_p-vfyM7ew04\": {\"duration\": 226.91, \"timestamps\": [[0, 19.29], [18.15, 55.59], [54.46, 148.62], [140.68, 218.96]], \"sentences\": [\"A red logo title card appears on the screen.\", \" A man has various bottles of a brand of ski waxes.\", \" He takes each bottle and spreads it along the ski.\", \" He finishes with a set of brushes across the blades.\"]}, \"v_ZLmoqxkCJL0\": {\"duration\": 158.01, \"timestamps\": [[0, 22.12], [22.12, 99.55], [99.55, 112.19], [112.19, 158.01]], \"sentences\": [\"A series of still photos of before and after images of an Asian girl posing in different outfits.\", \" The Asian girl demonstrates how to braid her hair.\", \" The Asian girl then poses with the finished braided pigtails.\", \" The Asian model then undoes the braids from her hair and poses without the braids.\"]}, \"v_GvP6gZbHn30\": {\"duration\": 111.15, \"timestamps\": [[0, 3.89], [3.89, 107.82], [109.49, 111.15]], \"sentences\": [\"A person puts a Rubiks cube on a table.\", \" The person then solves the puzzle as the clock in front of him ticks away.\", \" The person finishes and puts the cube down.\"]}, \"v_PAiJNr97C6g\": {\"duration\": 122.37, \"timestamps\": [[0, 36.71], [29.37, 88.72], [80.76, 121.15]], \"sentences\": [\"A man is shown speaking to the camera and begins riding around on a snowboard.\", \" Several other people are seen riding snowboards and speaking to the camera.\", \" The people ride on the snow as well as on and off the lift and ends with a man speaking.\"]}, \"v_et029cxyEOs\": {\"duration\": 108.50999999999999, \"timestamps\": [[0, 15.19], [18.45, 75.41], [64.02, 107.96]], \"sentences\": [\"A man is seen sitting in front of the camera with a rubix cube.\", \" The man then begins to solve the rubix cube.\", \" He continues working on the cube and solves it by putting it on the table.\"]}, \"v_j8i-9T0UeRQ\": {\"duration\": 133.7, \"timestamps\": [[0, 18.05], [19.39, 85.57], [72.2, 123.67]], \"sentences\": [\"Several shots are shown of fields and flags and leads into a man speaking.\", \" Players are shown running around and warming up with more speaking to the camera.\", \" Audience members watch the men play lacrosse with one another as well as people taking pictures and more speaking.\"]}, \"v_Pu5p7SC3sqg\": {\"duration\": 28.89, \"timestamps\": [[0, 2.74], [2.74, 13.29], [13.14, 16.18]], \"sentences\": [\"A person is standing on a room clearing snow with a snow shovel.\", \" All of the snow slides off the roof knocking the person onto the ground.\", \" A woman stands next to him in the snow.\"]}, \"v_rXgC48CLncg\": {\"duration\": 201.97, \"timestamps\": [[0, 21.21], [41.4, 61.6], [129.26, 133.3]], \"sentences\": [\"Man dressed in black cuts the woman's ponytail off.\", \"  Man cuts short layers into woman's hair.\", \"  Woman is looking into the mirror.\"]}, \"v_-nlAKyoyIuU\": {\"duration\": 213.67000000000002, \"timestamps\": [[0, 40.6], [58.76, 160.25], [166.66, 213.67]], \"sentences\": [\"A couple of sumo wrestlers are in a ring together.\", \" They engage in a fight in front of a crowd.\", \" They wrestle each other to the ground several times.\"]}, \"v_1rdecGieY-M\": {\"duration\": 134.54, \"timestamps\": [[0, 15.47], [18.84, 32.96], [34.98, 98.88], [100.23, 134.54]], \"sentences\": [\"A woman and a child are in the kitchen rolling out some dough with a rolling pin.\", \" They roll out the dough and then the woman moves the dough to a mat and cuts out shapes from it, placing the shapes on a silver pan in front of the child.\", \" The child puts sprinkles on the tree shaped cookie, and then the others the woman places on the tray.\", \" Then they place red candies on some of the cookies.\"]}, \"v_zwa44U585FE\": {\"duration\": 143.45, \"timestamps\": [[0, 5.02], [5.02, 9.32], [9.32, 49.49], [49.49, 143.45]], \"sentences\": [\"Two men are standing and talking in a yard holding onto croquet sticks and balls on the ground and white words appear at the bottom of the screen that say \\\"How to play croquet with Mr Ben Sutton on Sea, summer 1990\\\".\", \" The men walk a little on the grass and they each briefly hit different balls.\", \" The men are back in the area where they first started talking and are pointing in areas that look like they're pointing out their course.\", \"The men are now playing croquet in the large grassy area and they're taking turns hitting the croquet balls, smiling, and talking the whole time.\"]}, \"v_eUxFTEeNIGg\": {\"duration\": 84.8, \"timestamps\": [[0, 75.05], [0, 76.74], [0, 84.8], [64.87, 84.8]], \"sentences\": [\"man is standing in the middle of a ring jumping the rope.\", \" referee is standing on a corner of a ring.\", \" people are in the background watching the man or talking between them.\", \" the man finish and givs the rope to the referee.\"]}, \"v_mUsjm4oBBvw\": {\"duration\": 232.15, \"timestamps\": [[6.96, 30.18], [15.09, 37.14], [49.91, 52.23], [59.2, 208.94], [96.34, 102.15]], \"sentences\": [\"A man is sitting down talking on a cell phone.\", \" Another man is blow drying his hair.\", \" He starts to pick his hair with a hair pick.\", \" He then starts to shave his head with a shaver.\", \" People are standing behind him filming it.\"]}, \"v_wDw3i5ODGWA\": {\"duration\": 148.96, \"timestamps\": [[0, 30.54], [26.81, 90.86], [80.44, 148.96]], \"sentences\": [\"a boy is in tinkering with a skateboard in the trunk of a car.\", \" the boy then rides that skate board down a street.\", \" the boy performs several tricks on the skateboard.\"]}, \"v_qy-LbstiMYg\": {\"duration\": 192.77, \"timestamps\": [[0, 17.35], [17.35, 163.86], [102.17, 127.23], [163.86, 192.77]], \"sentences\": [\"An introduction comes onto the screen for a video about Motocross sporting.\", \" Several Riders are shown riding on a motocross track back and forth.\", \" At one point one of the Motocross Riders has trouble with his bike and has to stop.\", \" The video ends with the closing montage and captions shown across the screen.\"]}, \"v_49drGj3JUg4\": {\"duration\": 23.45, \"timestamps\": [[12.78, 14.42], [19.35, 20.52], [21.58, 22.98]], \"sentences\": [\"A man ropes a small black calf.\", \"  The man ties up the small black calf.\", \"  The brown horse watches the action.\"]}, \"v_zI6PsewSm7w\": {\"duration\": 134.44, \"timestamps\": [[0, 34.28], [27.56, 84.03], [82.01, 134.44]], \"sentences\": [\"a boy is dancing with a baton on a court.\", \" the boy twists, turns, and throws the baton.\", \" the boy then falls to the floor and perform several tricks on the floor.\"]}, \"v_qXi05KUFOSk\": {\"duration\": 82.52, \"timestamps\": [[0, 36.31], [36.72, 50.34], [50.75, 82.52]], \"sentences\": [\"Several men are installing flooring in a large non-residential room.\", \" A man is using a tool to score the floor.\", \" Another man is setting floor tiles by the wall while others continue to work.\"]}, \"v_VYOKYSmoyk0\": {\"duration\": 79.69, \"timestamps\": [[0, 15.14], [22.31, 33.87], [35.46, 37.45], [43.43, 43.83], [44.63, 79.69]], \"sentences\": [\"A woman plays croquet and then talks.\", \" A guy plays croquet, misses the goal, and shows disappointment.\", \" The guy rubs his arm with his hand.\", \" A man stands with his hands formed on the lawn.\", \" The woman walks over and hits a red, croquet ball.\"]}, \"v_6xAe1YVbxuY\": {\"duration\": 204.8, \"timestamps\": [[0, 53.25], [48.13, 154.62], [145.41, 203.78]], \"sentences\": [\"A person is seen putting on weights and leads into a man lifting weights over his head.\", \" A man is shown lifting weights up and throwing them back down.\", \" Several more people are shown afterwards lifting weights over their heads and back down.\"]}, \"v_hryx3zm06U8\": {\"duration\": 112.47999999999999, \"timestamps\": [[0, 17.43], [18, 38.24], [38.8, 78.73], [78.73, 112.48]], \"sentences\": [\"A man in a hardhat and goggles stands in a tiled room talking then we see the man cutting tiles with tools.\", \" We see a man tiling and another man looking at blueprints.\", \" We see two men tiling the wall and floor in two different room.\", \"  The man tiling the floor cuts the tile and lays it and the man on the wall cuts a half circle in a tile and we see him tile the wall more.\"]}, \"v_wvmuUuLOoEQ\": {\"duration\": 237.35, \"timestamps\": [[0, 27.29], [42.72, 103.25], [116.3, 237.35]], \"sentences\": [\"A car is seen driving down the road, and the people arrive at a restaurant for breakfast.\", \" They then go to the snowy mountains to ski.\", \" They are seen skiing down the slopes together.\"]}, \"v_QCeGGnd4QB0\": {\"duration\": 203.9, \"timestamps\": [[0, 67.29], [48.93, 134.57], [124.38, 196.76]], \"sentences\": [\"A small group of kids are seen playing badminton with one another.\", \" A man watches on the side as people walk in and out of frame.\", \" The kids continue playing while others watch them on the side.\"]}, \"v_8inrvRctXQ0\": {\"duration\": 197.39, \"timestamps\": [[0, 52.31], [38.49, 137.19], [109.55, 197.39]], \"sentences\": [\"two men are on a racquetball court.\", \" one man serves the ball.\", \" both men swing at the ball until score is made.\"]}, \"v_0PmrImNqA2w\": {\"duration\": 54.29, \"timestamps\": [[0, 27.69], [18.46, 39.63], [39.9, 53.2]], \"sentences\": [\"A camera pans around a house and shows a woman speaking to the camera.\", \" The woman is then shown spraying paint all along a fence.\", \" The woman continues painting and smiling to the camera.\"]}, \"v_BLTOTjVYiuE\": {\"duration\": 18.81, \"timestamps\": [[0, 4.23], [3.67, 11.47], [10.44, 18.81]], \"sentences\": [\"a man runs quickly across a track.\", \" the man jumps several hurdles on the track.\", \" the man then leaps into a sandbox.\"]}, \"v_JGuVc7z_YOQ\": {\"duration\": 89.17, \"timestamps\": [[0, 10.7], [18.28, 70.89], [72.22, 89.17]], \"sentences\": [\"A large group are gathered on a field to play.\", \" They engage in a game together.\", \" They take breaks to relax and talk.\"]}, \"v_9VWoQpg9wqE\": {\"duration\": 128.01, \"timestamps\": [[0, 42.88], [41.6, 92.17], [90.89, 124.81]], \"sentences\": [\"Three women are seen standing around followed by them grooming dogs.\", \" A man sits in a waiting room with a dog while more shots are shown of dogs being groomed.\", \" The camera pans around the shop in the end as well as a car parked out front.\"]}, \"v_jzNdWjZm92s\": {\"duration\": 194.1, \"timestamps\": [[4.85, 12.62], [12.62, 119.37], [119.37, 154.31], [162.07, 164.01]], \"sentences\": [\"People are standing on sand holding kayak row oars.\", \" They sit in a large raft and go down the river.\", \" They go down a large waterfall in the raft.\", \" They get out of the water and lift the raft over their heads.\"]}, \"v_xDD9rWISPpk\": {\"duration\": 12.84, \"timestamps\": [[0, 12.84], [3.85, 10.53], [10.59, 12.84]], \"sentences\": [\"A man is running in pogo stilts.\", \"  He turns around and then walks back.\", \"  He runs at the camera at the end.\"]}, \"v_5koLOwu786I\": {\"duration\": 60.63, \"timestamps\": [[0, 6.97], [5.76, 60.63], [40.62, 60.63]], \"sentences\": [\"The young man is wiping his hair with towel.\", \" The young man is blow drying his hair, rubbing his hair with blow dry.\", \"The young boy is shaking his head as he blow dry his hair.\"]}, \"v_y6sx0u3MYFo\": {\"duration\": 9.41, \"timestamps\": [[0, 1.6], [1.65, 8.18], [8.04, 9.41]], \"sentences\": [\"A Caucasian male athlete is standing outside in a field in a light blue Adidas shirt and Adidas bottoms.\", \"While in the circle,he spins around and prepares to throw the discus.\", \"The discus is then released and the guy looks out into the field to see how far he was able to throw it.\"]}, \"v_qoVYcplxgFE\": {\"duration\": 68.76, \"timestamps\": [[0, 6.88], [9.97, 48.13], [49.16, 68.76]], \"sentences\": [\"A female gymnast is posed on a low beam.\", \" She then lifts a foot, maintaining her balance.\", \" She changes positions, standing on her toes.\"]}, \"v_sq0cKsoX7mg\": {\"duration\": 11.56, \"timestamps\": [[0, 1.68], [2.25, 7.86], [8.33, 11.56]], \"sentences\": [\"A group of people are playing tennis inside a gym.\", \" A woman turns flips and swings her racquet.\", \" She then starts to walk away.\"]}, \"v_e4bcTIoiMIk\": {\"duration\": 209.47, \"timestamps\": [[0, 6.28], [0, 17.8], [17.8, 58.65], [58.65, 75.41], [75.41, 186.43], [186.43, 209.47]], \"sentences\": [\"kid is standing in front of a kitchen jumping and dancing.\", \" a man next to him is standing next to him talking with him.\", \" the man is in the living room holding a chair and the kid is olding a chainsaw and some knives.\", \" the kid cut his hand and the man is bandaging the hand.\", \" the man and the kid are sitting on a table and the kid is sharpening the nife in a rock and cut the finger, the man bandage the finger.\", \" the finger falls to the floor and a dog grabs it.\"]}, \"v_xFIfGrhYpAg\": {\"duration\": 33.69, \"timestamps\": [[0, 5.39], [7.24, 24.93], [25.1, 33.69]], \"sentences\": [\"Several players are on an ice court playing hockey.\", \" A small boy tries to keep up, stick in hand.\", \" They roll across the ice, hitting a puck back and forth.\"]}, \"v_6TUA9ipKk9I\": {\"duration\": 65.57, \"timestamps\": [[0, 6.23], [10.49, 36.07], [42.62, 65.57]], \"sentences\": [\"Two male swimmers walk to the edge of a diving board.\", \" They stand in position, side by side ready to dive.\", \" They dive backwards in unison, flipping several times.\"]}, \"v_tCfu0LplM64\": {\"duration\": 197.89, \"timestamps\": [[0, 16.82], [43.54, 109.83], [110.82, 197.89]], \"sentences\": [\"a man holds a pair of shoes up to the camera.\", \" the man then begins to clean and shine the shoes.\", \" the man then holds the finished shoes up to the camera.\"]}, \"v_-7wfTI8Qv1Q\": {\"duration\": 8.08, \"timestamps\": [[0, 7.88], [0.24, 8.04], [3.88, 5.94]], \"sentences\": [\"A small child rides a swing.\", \" Another small child rides a swing more vigorously.\", \" A third child runs by in the background.\"]}, \"v_mjbzWcSeiwQ\": {\"duration\": 88.75, \"timestamps\": [[0, 10.21], [12.42, 68.78], [72.33, 88.75]], \"sentences\": [\"Numerous people arrive at a large facility.\", \" Ice hockey players are getting dressed and signing autographs.\", \" They then engage in a game of hockey.\"]}, \"v_6DzBNkTen1g\": {\"duration\": 80.76, \"timestamps\": [[0, 23.02], [17.36, 37.15], [34.32, 42.4]], \"sentences\": [\"A woman in a black shirt is blind folded.\", \" She starts swinging a bat at a pinata.\", \" She goes over and gives a woman a hug standing on the side.\"]}, \"v_C-6kvesNmU4\": {\"duration\": 40.0, \"timestamps\": [[0, 7.4], [8.8, 27.4], [29.6, 40]], \"sentences\": [\"A raft is gently gliding through the water.\", \" Other people are also floating on rafts.\", \" They talk to each other as they float.\"]}, \"v_C8Toxe4fE30\": {\"duration\": 7.52, \"timestamps\": [[0, 7.52], [0, 7.45], [3.54, 7.45]], \"sentences\": [\"A man is standing on a field.\", \" People are sitting in the stands watching.\", \" The man spins around and throws a disk.\"]}, \"v_JQcN61A1MEU\": {\"duration\": 65.43, \"timestamps\": [[5.89, 65.43], [5.89, 14.07], [45.48, 55.29]], \"sentences\": [\"People are playing a game of indoor soccer.\", \" People are sitting in the stands watching the game.\", \" A person kicks the ball into the goal.\"]}, \"v_N2hi_TNBk94\": {\"duration\": 222.48, \"timestamps\": [[0, 86.77], [61.18, 161.3], [147.95, 216.92]], \"sentences\": [\"A large group of people are seen riding in tubes down a river and smiling to the camera.\", \" The people bounce around while interacting with each other as well as swim in the water.\", \" They continue riding down the river and looking to the camera.\"]}, \"v_itgR5a-hH_o\": {\"duration\": 214.57999999999998, \"timestamps\": [[2.15, 62.23], [68.66, 144.84], [143.77, 205.99]], \"sentences\": [\"A man is seen playing piano and smiling to the camera.\", \" He continues playing while looking down at his hands.\", \" People walk in and out of frame as he continues to play.\"]}, \"v_lfH_S2LTEXA\": {\"duration\": 218.29, \"timestamps\": [[0, 37.11], [38.2, 118.97], [120.06, 218.29]], \"sentences\": [\"A bearded man is inside a gym.\", \" He climbs a fake rock wall, jumping onto the rocks on the ceiling.\", \" He continues to hold on, shown talking with the camera as others do the same.\"]}, \"v_9IwS7pfJXu4\": {\"duration\": 211.09, \"timestamps\": [[0, 53.83], [47.5, 151.99], [135.1, 207.93]], \"sentences\": [\"A large group of people are seen sitting around a table cutting up ingredients.\", \" The people laugh with one another while preparing lots of food.\", \" The women continue to mix together ingredients while speaking to one another.\"]}, \"v_JW0VZ5NoC8A\": {\"duration\": 124.09, \"timestamps\": [[0, 33.5], [13.65, 101.75], [39.09, 124.09]], \"sentences\": [\"The man hit the ball and went in the hole, on the opposite side the woman hit the ball and went in the hole.\", \" The man and woman are doing tricks with billiard balls by using different balls or triangle.\", \" The woman is lying on the pool table and the man hit the ball and bounced on the woman's arms and leg, they also kissing as the both of them hit the balls.\"]}, \"v_h4SzYWJUqVQ\": {\"duration\": 174.66, \"timestamps\": [[0, 44.54], [42.79, 122.26], [103.92, 172.04]], \"sentences\": [\"A person is seen hammering down a floor following by cutting up carpet.\", \" The person glues down the carpet and laying weights down to level it out.\", \" The person continues gluing down the carpet and cutting out the sides.\"]}, \"v_8yeUJm0Pl24\": {\"duration\": 60.65, \"timestamps\": [[0.61, 14.86], [12.74, 43.06], [38.82, 59.44]], \"sentences\": [\"A large group of people are seen in several clips cheering with one another.\", \" The clips lead into people playing beer pong and celebrating with one another.\", \" More shots are shown of people partying and playing beer pong.\"]}, \"v_8ZA8UGBEx74\": {\"duration\": 104.65, \"timestamps\": [[0, 3.14], [3.66, 50.23], [50.76, 104.65]], \"sentences\": [\"The camera opens on a dance floor in a darkened room.\", \" Two women are dancing together on the floor.\", \" The women continue to dance as others dance around them.\"]}, \"v_zLeCGU8SVVc\": {\"duration\": 104.1, \"timestamps\": [[1.04, 17.18], [18.22, 67.14], [71.83, 102.01]], \"sentences\": [\"A small group of people are seen bending forward and lead into young girls jumping up with pom poms.\", \" The girls begins performing a routine together while moving their pom poms around.\", \" They continue to dance and cheer and end with their arms up.\"]}, \"v_00ZRoqhhb8g\": {\"duration\": 72.56, \"timestamps\": [[0, 70.02], [1.09, 7.62], [7.62, 72.56]], \"sentences\": [\"A man throws a javelin many times in an outdoor setting with a man at the start line holding a red flag.\", \"  A man gets a running start on a outdoor clay colored track and stops short of a line and throws the javelin then watches with an anticipating look as the javelin lands.\", \"  The man is then shown throwing the javelin several more times with different reactions after the throws, including joy and indifference.\"]}, \"v_HZ0tf9Cp340\": {\"duration\": 155.39, \"timestamps\": [[0, 7.77], [6.99, 112.66], [113.43, 128.97], [148.4, 155.39]], \"sentences\": [\"The event of a field ball throw is taking place on an open field with net.\", \" There is a variety of multiple males taking turns spinning and throwing the ball with incredible strength.\", \" A couple of the throwers lose balance and stumble during their turn.\", \" Officials come to the platform and start placing tools for measuring.\"]}, \"v_6DYQHmsezUw\": {\"duration\": 96.36, \"timestamps\": [[0, 11.08], [12.53, 57.82], [58.78, 96.36]], \"sentences\": [\"Several people are floating on tubes down a river.\", \" They lay back in the tubes, riding the waves as they go.\", \" They struggle to stay in the tubes, holding onto each other.\"]}, \"v_oS7Twj3Pou0\": {\"duration\": 37.92, \"timestamps\": [[0, 13.27], [16.87, 19.53], [25.97, 27.11]], \"sentences\": [\"Man is carrying an umbrella that is brown in color.\", \"  Woman is holding a black umbrella.\", \"  Woman wearing white is skipping.\"]}, \"v_j5M9l0qxwnU\": {\"duration\": 79.51, \"timestamps\": [[0, 9.54], [15.11, 41.74], [46.91, 79.51]], \"sentences\": [\"Two men are standing with others in a gym.\", \" They are engaged in a game of fencing.\", \" They parry back and forth with their swords.\"]}, \"v_tN1_lOJlUlc\": {\"duration\": 182.17, \"timestamps\": [[0, 11.84], [11.84, 68.32], [69.23, 177.62], [179.44, 182.17]], \"sentences\": [\"A man sits behind a set of three bongo drums with red, white and blue flags printed on them.\", \" He starts playing the drums.\", \" The camera turns to reveal a guitar player on the stage behind him.\", \" The man finishes and stands up.\"]}, \"v_nw32dno_RcM\": {\"duration\": 34.97, \"timestamps\": [[0, 4.37], [4.55, 31.3], [31.47, 34.97]], \"sentences\": [\"A stationary bike class is being held in a darkened room.\", \" The instructor points to the class.\", \"  She leans back and speaks to the class.\"]}, \"v_dea_92hDJnU\": {\"duration\": 214.25, \"timestamps\": [[0, 24.64], [36.42, 142.48], [152.12, 214.25]], \"sentences\": [\"A vet tech is talking behind a table.\", \" An orange tabby cat is seated on the table.\", \" It jumps off as she continues talking.\"]}, \"v_doZb3RlLSts\": {\"duration\": 223.66, \"timestamps\": [[0, 72.69], [67.1, 197.93], [204.64, 223.66]], \"sentences\": [\"Two men are laying down padding in a room.\", \" They lay carpet over the padding.\", \" They vacuum the carpet after they put it in.\"]}, \"v_CRdgzvZxB8A\": {\"duration\": 74.21000000000001, \"timestamps\": [[0, 26.34], [24.12, 54.55], [55.66, 74.21]], \"sentences\": [\"A man is seen sitting in a kayak speaking to the camera.\", \" He continues speaking more moving around the water.\", \" He then spins several times in the kayak.\"]}, \"v_bXApJtAf6Qo\": {\"duration\": 127.62, \"timestamps\": [[0, 3.19], [3.83, 127.62], [9.57, 126.98], [33.18, 82.31], [118.68, 127.62]], \"sentences\": [\"A black screen appears with white letters explaining it is about scuba diving.\", \"  There are five people underwater with scuba gear holding hands and practicing.\", \"  There is white text that appears on the screen.\", \"  Two other scuba divers swim by.\", \"  Credits roll with white text and the screen fades to black.\"]}, \"v_-npRRmY2wBs\": {\"duration\": 114.66, \"timestamps\": [[0, 114.66], [12.61, 114.66], [36.69, 114.66], [64.78, 114.66]], \"sentences\": [\"Several people stand in an arena.\", \" There is a small bull inside of it.\", \" The bull charges at the people.\", \" They wrestle with the bull.\"]}, \"v_LGS_yzsScfw\": {\"duration\": 166.7, \"timestamps\": [[0, 35.84], [41.67, 116.69], [108.35, 159.2]], \"sentences\": [\"A man is seen unscrewing a large tire.\", \" He then pulls off the tire and begins unscrewing the back one.\", \" He take off the back tire and is shown again afterwards.\"]}, \"v_7X_wgaRaJYQ\": {\"duration\": 144.3, \"timestamps\": [[2.16, 143.58], [24.53, 26.7], [136.37, 144.3]], \"sentences\": [\"A woman is swimming laps in a swimming pool.\", \" Another person passes her under the water.\", \" Words come onto the screen at the end.\"]}, \"v_pnEYhDVXVJ0\": {\"duration\": 102.12, \"timestamps\": [[0, 11.74], [5.62, 18.89], [10.72, 56.68], [41.36, 102.12]], \"sentences\": [\"A contact case is opened on a counter.\", \" A contact is removed from the case.\", \" The contact is inserted into an eyeball.\", \" The man carefully inserts it.\"]}, \"v_Ihmu18WVMpk\": {\"duration\": 182.37, \"timestamps\": [[0, 54.71], [50.15, 128.57], [109.42, 175.99]], \"sentences\": [\"A group of people are seen running around a court playing soccer.\", \" The men kick the ball up and down the field when one scores a goal.\", \" The men cheer and show several more goals being made afterwards.\"]}, \"v_-TuxT19bogQ\": {\"duration\": 41.33, \"timestamps\": [[0, 5.17], [6.82, 20.87], [21.7, 41.33]], \"sentences\": [\"Two teams are gathered together on a field.\", \" The crowd watches as they chase the ball down the field.\", \" They get the ball away, sending it into a goal.\"]}, \"v_j4Ru2L4u0Qk\": {\"duration\": 91.37, \"timestamps\": [[0, 22.84], [23.3, 90.91], [0, 90.91]], \"sentences\": [\"A man is practicing hitting a ball with a stick on a field.\", \" He continues to hit the ball onto the field.\", \" He is wearing a helmet and a jersey.\"]}, \"v_y8RpTBtGG1g\": {\"duration\": 37.57, \"timestamps\": [[0, 7.14], [7.14, 21.41], [21.6, 37.57]], \"sentences\": [\"A little boy is vacuuming the floor while the other one wearing a red shirt is watching him.\", \" The boy wearing a red shirt slides and the one vacuuming dances a little while and put the vacuum on the back of the other.\", \" He eventually continues his chore on another part of the floor.\"]}, \"v_Ggtcmy29TxE\": {\"duration\": 153.14, \"timestamps\": [[0, 32.16], [36.75, 86.52], [88.05, 153.14]], \"sentences\": [\"A man is lying on the bottom of a pool.\", \" He is then shown pushing a boy's head down on the bottom.\", \" The boy loses his breath and rises to the surface.\"]}, \"v_3TxZTZEEg44\": {\"duration\": 156.81, \"timestamps\": [[0, 156.81], [0, 1.57], [26.66, 31.36], [32.15, 45.47], [46.26, 50.96], [51.75, 116.82], [117.6, 146.61], [147.4, 156.81]], \"sentences\": [\"A man in a red shirt at an outdoor tennis court is giving a tutorial on to return a serve and how to hold the racket.\", \"  A grey title screen with white letters and artwork show who the host and the video series is about.\", \" Footage is shown with two players playing tennis.\", \" The instructor shows how to hold and move with the racket.\", \"  Footage of a game with two people playing is shown.\", \"  A student with shades is now in the video as he and the instructor further help to explain the video as the student shows how to return serve the balls.\", \"  The instructor is now in a blue shirt and explaining more in the video and where to get more free lessons.\", \"  A white screen appears with a red arrow in a circle and black letters showing where to get more videos.\"]}, \"v_UIPTzsWiGSU\": {\"duration\": 55.33, \"timestamps\": [[0, 18.54], [7.75, 28.77], [25.18, 55.33]], \"sentences\": [\"The little girl is eating ice cream  while she talks.\", \" The little girl looked at the window and then continue eating ice cream.\", \" The girl licked the ice cream on her elbow and continue eating ice cream.\"]}, \"v_Rg9qviHZ3qc\": {\"duration\": 213.14, \"timestamps\": [[0, 55.42], [50.09, 134.28], [136.41, 209.94]], \"sentences\": [\"A close up of a woman's hair is shown and leads into her parting her hair.\", \" She brushes and rubs lotion in her hair followed by braiding it.\", \" She continues to style her hair and smiles to the camera.\"]}, \"v_8TGG-FZx0cc\": {\"duration\": 165.65, \"timestamps\": [[0, 19.05], [19.88, 35.62], [37.27, 85.31], [95.25, 120.93], [128.38, 165.65]], \"sentences\": [\"There is a pot of boiling water on the stove shown, and then a person picks up a bag of noodles.\", \" The person gets the noodles out and puts them in the water.\", \" They stir the noodles with tongs and instructions are given along the way.\", \" Then they drain the noodles in the sink and scrape the rest off the bottom of the pot.\", \" Then the noodles are rinsed in the sink and transferred to a bowl.\"]}, \"v_0KTued0g034\": {\"duration\": 56.82, \"timestamps\": [[1.14, 18.18], [19.03, 38.92], [34.66, 54.83]], \"sentences\": [\"Two men are seen walking out of frame followed by a band following police bikes.\", \" The band plays instruments as people walk around.\", \" The band continues marching past the group of people.\"]}, \"v_TtAEG3yXDnI\": {\"duration\": 105.16, \"timestamps\": [[0, 18.4], [19.98, 54.16], [46.8, 100.96]], \"sentences\": [\"A woman is seen standing before a set of uneven bars and pushes herself along.\", \" She tries again jumping along the bars and swinging herself around.\", \" She jumps up one more time across the bars and ends by showing her hands to the camera.\"]}, \"v_DvIng_zQPyY\": {\"duration\": 199.95, \"timestamps\": [[0, 31.99], [36.99, 136.96], [139.96, 199.95]], \"sentences\": [\"Two teams of basketball players are on a court.\", \" They throw the ball and engage in a game of dodgeball.\", \" They run and try not to get hit by the ball.\"]}, \"v_Adjpq4A5WtI\": {\"duration\": 103.2, \"timestamps\": [[0, 7.74], [7.74, 40.25], [40.25, 93.4], [93.4, 103.2]], \"sentences\": [\"A young man wearing a black tank top begins playing a piano.\", \" The young pianist performs a classical rendition.\", \" The young pianist continues playing with an expertise of a master.\", \" The pianist completes his performance and looks at the camera and smiles.\"]}, \"v_XoFikALe8Q0\": {\"duration\": 184.72, \"timestamps\": [[0, 47.1], [48.03, 140.38], [138.54, 180.1]], \"sentences\": [\"A close up of a machine and products are shown with people pushing it around.\", \" Several clips are shown of people washing cars and using the tool.\", \" People driving in cars as they push around the machine and use it along cars.\"]}, \"v_OhpaFQeQtKs\": {\"duration\": 110.18, \"timestamps\": [[0, 20.93], [19.28, 51.78], [65.01, 108.53]], \"sentences\": [\"A person is seen standing ready in front of a large crowd.\", \" Two people then begin fencing one another.\", \" The people fence back and fourth and a group of people cheer with a player.\"]}, \"v_TxYZLJQOHvY\": {\"duration\": 24.5, \"timestamps\": [[0, 3.92], [2.94, 10.04], [8.7, 17.27], [15.19, 24.5]], \"sentences\": [\"a girl glides down a slide.\", \" the girl stands to her feet.\", \" the girl walks up a set of stairs.\", \" the girl glides down the slide again.\"]}, \"v_pTmlOZY0e4c\": {\"duration\": 124.67, \"timestamps\": [[0, 20.57], [24.93, 97.86], [73.55, 121.55]], \"sentences\": [\"Several girls are seen walking around and gearing up.\", \" They are then shown in many clips playing jump rope with one another.\", \" The girls perform several tricks with the jump ropes while smiling at the camera.\"]}, \"v_eZbdiuUu0S8\": {\"duration\": 193.68, \"timestamps\": [[0, 5.81], [6.78, 56.17], [52.29, 65.85], [65.85, 80.38], [80.38, 164.63], [164.63, 185.93], [186.9, 193.68]], \"sentences\": [\"An animated intro begins the scene.\", \" The scene cuts to a man in a swimming pool named Brad Schumacher, who talks about tips to playing water polo.\", \" Brad introduces his friend, Wolf Wigo, who swims into frame.\", \" Wolf Wigo then gives his own tips about water polo.\", \" Brad returns to talking about swimming while Wolf watches.\", \" Wolf then talks again, affirming what Brad said.\", \" An animated outro closes the scene.\"]}, \"v_kuv1yEeNQzQ\": {\"duration\": 206.98, \"timestamps\": [[0, 2.07], [2.07, 30.01], [30.01, 174.9], [174.9, 206.98]], \"sentences\": [\"A black screen appears and colorful logos that say \\\"beach soccer\\\" on one and \\\"ITALIA\\\" on the other appear on the screen very quickly.\", \"Various clips of people at the beach begin to play and they include mostly people playing soccer on the sand, but there are also people cheering in the stand, dancing, or hanging out.\", \"The black screen with the same colorful logos briefly appear again and it's followed by more clips of people playing soccer in the sand making goals after goals while people cheer them on, and the winners cheer themselves on.\", \"Once again the black screen with the logos appears and various clips of the ones shown before are shown again until it ends with a screen of the logos.\"]}, \"v_hhQ1Xbytds4\": {\"duration\": 60.23, \"timestamps\": [[0, 60.23], [2.41, 60.23], [1.2, 60.23]], \"sentences\": [\"Large buildings are shown in front of a beach.\", \" People are standing on top of a building putting a new roof on.\", \" A beach with sand is behind it.\"]}, \"v_701qhmCLPxU\": {\"duration\": 36.02, \"timestamps\": [[0, 10.98], [10.44, 17.11], [18.37, 21.25], [30.25, 34.03]], \"sentences\": [\"A girl climbs onto a slack line rope.\", \" The person bounces up to a standing position to start the routine.\", \" The person bounces on the rope and with her stomach.\", \" The person flips off from the rope onto the mat.\"]}, \"v_k7MXH55q28U\": {\"duration\": 189.38, \"timestamps\": [[12.31, 35.98], [61.55, 77.65], [82.38, 90.9]], \"sentences\": [\"Man clips the rope to the silver caribiner.\", \"  Man crawls up the white-colored wall.\", \"  Man in a blue t-shirt clips the rope on a second caribiner.\"]}, \"v_Cqbs_wM3oc4\": {\"duration\": 15.05, \"timestamps\": [[0, 7.9], [0.08, 7.9], [7.97, 15.05]], \"sentences\": [\"A man is sitting in a chair in front of a building.\", \" He is playing a saxophone.\", \" People are waling into the building in front of him.\"]}, \"v_fU-kGMQ68jg\": {\"duration\": 201.81, \"timestamps\": [[0, 77.69], [62.56, 154.38], [120.07, 198.78]], \"sentences\": [\"A group of people are seen standing around with sleds.\", \" People then begin sliding down the hill on the tubes spinning around.\", \" Several people ride down one after the other and smile to the camera.\"]}, \"v_t9j3GNVm8jw\": {\"duration\": 215.64, \"timestamps\": [[0, 70.08], [51.75, 163.89], [138.01, 212.41]], \"sentences\": [\"A boy is shown speaking to the camera and holding up an instrument.\", \" The boy moves his hands up and down and begins playing.\", \" He pauses to show off the instrument and continue playing afterwards.\"]}, \"v_WglqrQ9uR-A\": {\"duration\": 212.51, \"timestamps\": [[0, 46.75], [46.75, 127.51], [129.63, 160.45], [160.45, 212.51]], \"sentences\": [\"People skateboard on a road where cars are passing.\", \" One person staggers and falls from the skateboard, and only the road and the sky can be seen.\", \" Then, the person continues skateboarding and falls again on the road.\", \" After, the person shows his injured legs and the broken shin pads and tennis shoes.\"]}, \"v_gzVpwbiB9fE\": {\"duration\": 34.34, \"timestamps\": [[0, 7.04], [7.73, 22.15], [22.49, 34.34]], \"sentences\": [\"A man is bouncing a tennis ball on an outdoor court.\", \" He hits the ball over the net several times.\", \" The balls roll over to the opposing fence, broken in half from the impact.\"]}, \"v_T3bTwmccIEQ\": {\"duration\": 112.9, \"timestamps\": [[0, 10.73], [8.47, 28.79], [25.4, 64.35], [62.66, 112.9]], \"sentences\": [\"three men walk next to each other.\", \" the men begin putting a boat on the back of a truck.\", \" the men tie the boat down.\", \" the men drives to a lake and they all go fishing.\"]}, \"v_YODfHuzK2As\": {\"duration\": 165.84, \"timestamps\": [[0, 22.39], [23.22, 63.02], [63.02, 112.77], [112.77, 154.23], [154.23, 165.84]], \"sentences\": [\"a man and a woman are sitting on a blue couch in a show talking to the camera.\", \" litle kid is standing in a room throwing darts to a board while behind him two women sitting are watching him.\", \" women are talking to the camera while the kid is playing with the oher woman.\", \" man is tlaking to th camera in front of a dart board talking about the kid.\", \" again in studio the man and te woman are talking.\"]}, \"v_B5hzlU0OepQ\": {\"duration\": 154.6, \"timestamps\": [[0, 15.46], [41.74, 47.15], [69.57, 74.21]], \"sentences\": [\"Woman is holding a clear plastic container.\", \"  Woman is emptying salad onto the plate.\", \"  Woman is opening a clear plastic container holding tomatoes.\"]}, \"v_wUXpeZHrTWw\": {\"duration\": 215.89, \"timestamps\": [[1.08, 214.81], [11.87, 111.18], [111.18, 200.78]], \"sentences\": [\"Two men demonstrate different martial arts moves together on a grass covered patch of land surrounded by trees.\", \"  Two men exhibit a pushing hands exercise in the grass over and over again.\", \"  The men then progress around the grass and start moving around the small piece of land with the same move in rotation.\"]}, \"v_ncXZIWMNKZQ\": {\"duration\": 30.14, \"timestamps\": [[0, 22], [22, 25.62], [25.77, 30.14]], \"sentences\": [\"woman is siting on a couch kniting a sweater.\", \" woman is sitting in a chair on the yard of the house knitting.\", \" the woman is talking to the camera in a dark room.\"]}, \"v_kTBEGydNpgg\": {\"duration\": 86.49, \"timestamps\": [[0, 34.16], [14.27, 16.86], [19.03, 28.11], [28.54, 58.81], [59.24, 60.54], [65.3, 86.49]], \"sentences\": [\"We see a group of people and two hosts on stage at a game show in Asia.\", \" We see a man on the crew.\", \" The camera zooms in on a lady in a ponytail.\", \" We see the hosts convince the lady to join them.\", \" We see the cameraman again.\", \" The lady throws darts at a dartboard on a hosts chest.\"]}, \"v_czmYE1FzBXM\": {\"duration\": 192.01, \"timestamps\": [[0, 57.6], [43.2, 145.92], [123.84, 191.05]], \"sentences\": [\"People are seen loading up a bus as well as walking onto a bus and gesturing to the camera.\", \" The men are then seen on a large field playing a game of lacrosse with one another.\", \" The men continue playing in several shots and end by running away.\"]}, \"v_YzyCFfrX_4I\": {\"duration\": 18.76, \"timestamps\": [[0, 5.44], [5.91, 13.7], [13.79, 18.11]], \"sentences\": [\"A close up of a house is seen with a person coming into frame.\", \" The person jumps up on a skateboard and grinds a rail.\", \" He grinds his way back and walks towards the camera.\"]}, \"v_YZQ_qh9wC4w\": {\"duration\": 184.61, \"timestamps\": [[0, 40.61], [42.46, 120], [117.23, 180.92]], \"sentences\": [\"A person's feet are shown that pans up to a girl waving her arms.\", \" The girl stretches with a mans help and then dives into a pool.\", \" The girl swims back and fourth in the pool and ends with her coach instructing her.\"]}, \"v_YYmx8EHIjAE\": {\"duration\": 38.92, \"timestamps\": [[0, 4.48], [6.42, 27.05], [27.83, 38.92]], \"sentences\": [\"A man is on the floor in a house.\", \" He is laying down thick tiles.\", \" He puts them down one at a time and seals them.\"]}, \"v_jCB1EC3RzWI\": {\"duration\": 63.76, \"timestamps\": [[0, 7.01], [10.52, 41.45], [44.63, 63.76]], \"sentences\": [\"Several people are playing a game inside a swimming pool.\", \" They are hitting a ball back and forth toward a net.\", \" They are trying to play water volleyball.\"]}, \"v_XjV0D7nJx0Q\": {\"duration\": 101.03, \"timestamps\": [[0, 34.35], [27.28, 69.71], [69.71, 96.99]], \"sentences\": [\"A man is shown speaking to the camera while holding a tire.\", \" He puts a marker inside the tire and takes it off the axis.\", \" He finishes by still speaking to the camera.\"]}, \"v_vgUSEkvJRlI\": {\"duration\": 207.66, \"timestamps\": [[0, 20.77], [16.61, 55.03], [37.38, 203.5], [94.48, 203.5]], \"sentences\": [\"A title screen after a white screen announces the video as a fencing flash mob.\", \" Team members are seen boarding a train with their fencing gear and assemble outside in a courtyard.\", \" They are in their white uniforms and masks outside of some ancient ruins.\", \" The \\\"flash mob\\\" of fencing commences and ends.\"]}, \"v_kaRZaCGzNzw\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 18.17], [18.17, 57.54], [57.54, 87.82], [87.07, 115.83], [115.83, 151.42]], \"sentences\": [\"A bearded man talks to the camera from close up.\", \" The man uses an electric razor to shave his beard.\", \" The man stops shaving to talk to the camera.\", \" The man resumes shaving with the electric razor.\", \" The man stops shaving once more to talk to the camera.\"]}, \"v_ibWb6iRQiD4\": {\"duration\": 182.28, \"timestamps\": [[0, 44.66], [38.28, 120.3], [110.28, 182.28]], \"sentences\": [\"A woman walks into frame and speaks to the camera followed by pulling a towel off her hair.\", \" She combs her hair and sprays product into it and brushes her hair afterwards.\", \" She puts up her hair and begins blow drying it with a brush.\"]}, \"v_bodOObk5K00\": {\"duration\": 144.1, \"timestamps\": [[0, 36.03], [41.07, 97.99], [106.64, 118.17]], \"sentences\": [\"Woman in a black dress plays the keyboard.\", \"  A famous musician plays the harmonica.\", \"  Another well-versed musician plays the electric guitar.\"]}, \"v_immCYvN8pwQ\": {\"duration\": 198.72, \"timestamps\": [[0, 18.88], [23.85, 125.19], [137.11, 198.72]], \"sentences\": [\"Two skateboards are shown hanging outside.\", \" a couple of men pick up the skateboards, and ride them down the road.\", \" They do several stunts and rails on the boards.\"]}, \"v_sGFbsMKkoYs\": {\"duration\": 8.36, \"timestamps\": [[0, 3.93], [3.89, 6.14], [6.23, 8.36]], \"sentences\": [\"A man lifts a barbell with weights from the ground up in a gym with other people nearby.\", \" The man lifts the barbell up above his head.\", \" The man drops the barbell onto the ground.\"]}, \"v_q92zSoMudWU\": {\"duration\": 37.29, \"timestamps\": [[0, 7.83], [6.9, 21.44], [23.68, 35.61]], \"sentences\": [\"A group of men are seen looking off into the distance that leads into a soccer match.\", \" One man scores a goal and celebrates on the side.\", \" His goal is shown again several more times.\"]}, \"v_qeYKXF8tsp4\": {\"duration\": 118.93, \"timestamps\": [[0, 70.77], [70.77, 99.31], [99.9, 118.93]], \"sentences\": [\"Young women play field hockey on an outdoor school field with a stadium of onlookers.\", \" A player returns to the opposite side.\", \" The teams runs back towards the ball.\"]}, \"v_AeOUzM7nl5w\": {\"duration\": 79.72, \"timestamps\": [[0, 27.1], [17.54, 51.81], [46.63, 79.72]], \"sentences\": [\"A woman is seen speaking to the camera and holds up a contact.\", \" She then puts the lens in her eye and bends forward.\", \" She shows off the contact in her eye.\"]}, \"v_LmioUbGNv04\": {\"duration\": 41.54, \"timestamps\": [[0.62, 11.42], [10.59, 30.12], [29.08, 40.5]], \"sentences\": [\"A man is seen kicking another man holding a mat.\", \" People behind him practice as he continues to kick.\", \" The man kicks the other over and over.\"]}, \"v_6pnabYJdqxc\": {\"duration\": 79.37, \"timestamps\": [[0, 5.95], [5.95, 25], [25, 62.3], [62.3, 79.37]], \"sentences\": [\"Multiple white and purple flowers are shown in a large field.\", \" A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website displays at the bottom in purple letters.\", \"The man is now holding a floral plant up with his left hand and with his right hand he cuts the flowers off, continues to talk the whole time, and then holds up the flower less plant with his right hand.\", \"More views of the flowers are shown and it ends with the man talking and him holding up a plant with flowers in his left hand, and plant without the flowers in his right hand.\"]}, \"v_fxbEiZrQQzM\": {\"duration\": 65.78, \"timestamps\": [[0, 12.17], [21.38, 37.83], [46.05, 65.78]], \"sentences\": [\"A man is working outside in a field.\", \" He is using a large tool called a thresher.\", \" The people walk around the grass, cutting it with the tool.\"]}, \"v_XkzEXA4b20k\": {\"duration\": 232.99, \"timestamps\": [[1.16, 219.01], [16.31, 26.79], [8.15, 209.69], [213.19, 222.51]], \"sentences\": [\"A lady combs long, red hair.\", \" The lady flips the black comb and uses it to measure.\", \" The lady parts the hair and cuts the ends.\", \" The lady combs the hair to remove the parts and moves the comb around the cuts edges.\"]}, \"v_2vAaAy_WC7Y\": {\"duration\": 179.86, \"timestamps\": [[0, 30.58], [26.08, 81.84], [80.04, 179.86]], \"sentences\": [\"a woman is standing in a kitchen talking to the camera.\", \" the woman the points to several items on the counter in front of her.\", \" the woman then begins mixing ingredients and baking.\"]}, \"v_iEZgExTrv70\": {\"duration\": 23.31, \"timestamps\": [[0, 1.17], [1.17, 16.44], [16.44, 19], [19, 23.31]], \"sentences\": [\"A young blond boy is holding onto monkey bars.\", \" The boy lets go and swings his legs a few times and slowly works his way to the end of the monkey bars moving his hands along each rung.\", \"The boy reaches the end, stretches his legs out to touch the wooden platform and uses the leverage to pull himself to the end.\", \" The boy lets go of the monkey bars, stands up with his arms to his sides, smiles and nods his head.\"]}, \"v_vbnuIUgUVXA\": {\"duration\": 139.13, \"timestamps\": [[0, 18.09], [13.91, 35.48], [62.61, 139.13]], \"sentences\": [\"Children are picking up crabs in mud.\", \"  The crabs are put in a bucket.\", \"  Then everyone makes sand castles and bring buckets of waters.\"]}, \"v_s9MNW35YCMw\": {\"duration\": 201.69, \"timestamps\": [[0, 201.69], [6.05, 201.69], [8.07, 28.24], [123.03, 201.69]], \"sentences\": [\"A child talks into the camera.\", \" He is inside of a bathroom.\", \" He holds up a bottle of mouthwash.\", \" He then gargles the mouthwash.\"]}, \"v_vWde8sMxe1w\": {\"duration\": 128.65, \"timestamps\": [[0, 23.16], [28.3, 85.55], [95.85, 128.65]], \"sentences\": [\"a man stands in the middle of a stadium.\", \" crowds watch and cheer the man on.\", \" the man takes off running across the track.\"]}, \"v_pwaSQyDNyWs\": {\"duration\": 115.33, \"timestamps\": [[0, 15.57], [19.03, 76.12], [76.7, 115.33]], \"sentences\": [\"A group of women are inside a gym.\", \" They are dancing side to side.\", \" They slide back and forth and move in unison.\"]}, \"v_scwBQj4GE7Y\": {\"duration\": 36.71, \"timestamps\": [[0.73, 4.41], [4.22, 24.05], [24.41, 35.98]], \"sentences\": [\"A small child holds the edge of a pool while floating.\", \" The child releases the edge and swims in the pool.\", \" Two women and a men talk in a newscast setting.\"]}, \"v_mi6f8kGVR70\": {\"duration\": 58.45, \"timestamps\": [[0, 30.39], [14.32, 48.51], [35.94, 58.45]], \"sentences\": [\"A bald guy is riding a camel with his young son.\", \" A woman in orange shirt is riding a camel as three people are guiding the camel.\", \" The woman walked out and walked to the van.\"]}, \"v_yISeNkFiVAg\": {\"duration\": 141.06, \"timestamps\": [[0, 95.92], [95.92, 137.54], [138.24, 141.06]], \"sentences\": [\"A woman plays the tam-tams in a cafe.\", \" The woman supports her left hand on a tam-tam while she taps with her right hand, then the woman continues playing.\", \" When the woman finish playing, she raises her hands high and smiles.\"]}, \"v_5JVHUcOW0GE\": {\"duration\": 129.06, \"timestamps\": [[0, 25.17], [23.23, 80.66], [81.95, 121.31]], \"sentences\": [\"A man is seen standing behind a counter with two slices of bread.\", \" He speaks to the camera while showing a sandwich he is making.\", \" He puts the sandwich in a bag and finally into a container and walks out.\"]}, \"v_XQaaA2UZYh8\": {\"duration\": 64.16, \"timestamps\": [[0, 16.36], [16.04, 43.63], [40.42, 62.23]], \"sentences\": [\"A close up of a machine is shown followed by a man torching a gate.\", \" He adjusts the settings and moves it around.\", \" He continues torching the side.\"]}, \"v_S_1_ZSMxRfg\": {\"duration\": 212.74, \"timestamps\": [[14.89, 58.5], [35.1, 71.27], [44.68, 184.02], [120.2, 212.74]], \"sentences\": [\"A hand cooked the bacon on the pan.\", \" The tomato is being sliced on the board.\", \" The mayonnaise is spread on the toasted bread and then the ham is placed and then cheese, then mayo is spread again, then the bacon is added and then the lettuce and tomatoes.\", \" The person put sticks on the sandwich then cut into four, then he placed fries on the plate and the sandwiches.\"]}, \"v_kmWf36zfL7o\": {\"duration\": 24.09, \"timestamps\": [[0, 18.07], [0.72, 24.09], [18.07, 24.09]], \"sentences\": [\"A boy is laying down in a chair.\", \" A man is standing up giving the boy a tattoo on his arm.\", \" The boy sits still while he gets the tattoo.\"]}, \"v_MOvLBw1EzmI\": {\"duration\": 37.94, \"timestamps\": [[0, 3.98], [5.69, 30.54], [31.3, 37.94]], \"sentences\": [\"A snow covered vehicle is shown outside.\", \" A person is using a red scraper to remove snow and ice from the windshields.\", \" They continue scraping until a strip is cleaned.\"]}, \"v_myHHyzx6TPc\": {\"duration\": 99.68, \"timestamps\": [[5.98, 10.47], [9.97, 93.7], [94.2, 99.68]], \"sentences\": [\"A girl jumps onto a balance beam.\", \" She does a gymnastics routine on the balance beam.\", \" She dismounts and lands on a mat next to the beam.\"]}, \"v_ANeDHelwzK0\": {\"duration\": 53.89, \"timestamps\": [[0.27, 10.24], [10.51, 35.84], [33.95, 52.82]], \"sentences\": [\"A close up of a door is shown and a person opening the door.\", \" The person opens a shower curtain to show a dog sitting inside.\", \" The water runs all over a dog while he looks at the camera.\"]}, \"v_uBPWqgUiQWA\": {\"duration\": 39.57, \"timestamps\": [[0, 9.3], [9.5, 25.32], [25.52, 28.09], [28.29, 39.57]], \"sentences\": [\"A group of young men are gathered in a darkly colored room.\", \" One of them, who appears to be drunk, starts throwing darts.\", \" He then throws a dart at the cameraman.\", \" The camera then violently shakes.\"]}, \"v_KjkD7CZcXK8\": {\"duration\": 82.55, \"timestamps\": [[0, 22.29], [13.21, 17.33], [23.94, 76.36], [77.18, 82.55]], \"sentences\": [\"A man is scraping ice off the drivers window of a truck with an ice scraper.\", \" He moves ice on the ground with his foot.\", \" He moves to the front windshield and scrapes.\", \" The man points to the truck and stands back.\"]}, \"v_1PQiq8zajCE\": {\"duration\": 87.12, \"timestamps\": [[0, 22.65], [23.96, 71.88], [72.31, 87.12]], \"sentences\": [\"A woman is talking to the camera inside a billiard room.\", \" Mike tyson puts a blind fold over his eyes.\", \" He takes darts and throws them at the target.\"]}, \"v_-hEr3ydGyoM\": {\"duration\": 176.47, \"timestamps\": [[0, 21.18], [21.18, 52.94], [52.94, 176.47]], \"sentences\": [\"someone with the ace of obama is playing drums on top of stage.\", \" people are on stands on the national convention.\", \" different scenes from movies and video clips are shown.\"]}, \"v_Zjfw0n32DBA\": {\"duration\": 79.23, \"timestamps\": [[0, 79.23], [1.98, 27.33], [24.56, 55.86], [53.48, 79.23]], \"sentences\": [\"There's a little toddler boy wearing a brown shirt and jeans standing in his bathroom brushing his teeth with a toothbrush.\", \" He takes his toothbrush in his hand and and then waits for an adult to put toothpaste on it.\", \" Then he begins brushing his teeth by himself.\", \" Then the adult helps him brush his teeth properly to help the child by showing him how to use the brush on all his teeth.\"]}, \"v_Tc0nHNkf0KM\": {\"duration\": 27.12, \"timestamps\": [[0, 9.09], [9.22, 18.17], [18.31, 27.12]], \"sentences\": [\"A child opens a faucet and wet his hands in the sink.\", \" Then, the child takes soap on his hand, open the faucet and wash his hands.\", \" After, he is instructed to dry his hands, but he doesn't know how to take paper from a dispenser.\"]}, \"v_xc0Wm-TH5K8\": {\"duration\": 25.01, \"timestamps\": [[0, 3.25], [4, 14.38], [16.13, 25.01]], \"sentences\": [\"A weight lifter is inside a gym.\", \" He lifts a barbell up to his chest.\", \" Then he raises it over his head, and drops it back to the ground.\"]}, \"v_PaAJ-6HT6bw\": {\"duration\": 33.76, \"timestamps\": [[4.22, 33.76], [8.44, 22.45], [32.58, 33.76]], \"sentences\": [\"People are standing in an indoor field.\", \" A man spins around and throws a ball onto the field.\", \" Someone stands up and walks towards the ball.\"]}, \"v_Uw_0h2UrfyY\": {\"duration\": 139.04, \"timestamps\": [[0, 40.32], [38.93, 104.28], [95.24, 134.87]], \"sentences\": [\"A man and woman are seen speaking to the camera and leads into a close up of a guitar.\", \" A woman plays the guitar and sings while a girl performs a dance routine on the stage.\", \" The woman continues dancing around while the woman sings and ends with the hosts speaking.\"]}, \"v_z1QgzOfUjow\": {\"duration\": 44.98, \"timestamps\": [[0, 41.6], [5.17, 41.6], [21.81, 41.6]], \"sentences\": [\"People are sitting in large rafts.\", \" They are paddling with oars.\", \" They are going over large waves in the river.\"]}, \"v_Mdt2E8KYpCg\": {\"duration\": 51.69, \"timestamps\": [[0, 10.34], [14.99, 39.28], [42.64, 51.69]], \"sentences\": [\"A wrestler stands up outside a ring.\", \" Other wrestlers pick him up and prepare to put him through a table.\", \" They slam him down on the table and he breaks it.\"]}, \"v_umi5d_a6bfc\": {\"duration\": 61.46, \"timestamps\": [[0, 11.06], [11.06, 55.32], [55.32, 61.46]], \"sentences\": [\"And introduction comes onto the screen for a video about how to remove a bike chain.\", \" A person sitting next to a bike demonstrates how to remove and replace a bike chain using a small tool.\", \" The video ends with the closing graphics and credits shown on the screen.\"]}, \"v_LAZHNzFbDNY\": {\"duration\": 106.67, \"timestamps\": [[0, 12.27], [14.93, 63.47], [75.2, 106.67]], \"sentences\": [\"A large group of people are gathered on a track and field.\", \" An athlete spins several times while holding a steel ball.\", \" He lets go of the ball and makes it go a long distance.\"]}, \"v_R0YS8JS_0rk\": {\"duration\": 62.67, \"timestamps\": [[0, 14.73], [11.91, 40.74], [35.1, 59.54]], \"sentences\": [\"A man is shown raising his arm up in the middle of a large crowd.\", \" He then begins performing a gymnastics routine on a beam.\", \" He spins himself around continuously and ends by jumping down the side and walking away.\"]}, \"v_-UWE4jXuLoo\": {\"duration\": 180.58, \"timestamps\": [[0, 20.77], [27.99, 102.93], [109.25, 180.58]], \"sentences\": [\"A group of boys are shown skateboarding in different scenarios.\", \" They give instructions as they go on the various moves and techniques.\", \" They demonstrate the moves as they explain them.\"]}, \"v_FNAt8Pew0HA\": {\"duration\": 35.99, \"timestamps\": [[0, 4.32], [5.04, 18.54], [19.98, 35.99]], \"sentences\": [\"A young girl is standing in front of a kitchen sink.\", \" She is peeling a potato as she talks.\", \" She continues showing how to peel the potato with a peeler.\"]}, \"v_vSV7arHrH5k\": {\"duration\": 152.05, \"timestamps\": [[2.28, 25.09], [25.85, 53.22], [53.98, 89.71], [89.71, 100.35], [100.35, 110.99], [111.75, 122.4], [123.16, 137.6], [137.6, 149], [148.24, 152.05]], \"sentences\": [\"A woman talks to the camera with some cloth and various cleaning tools in front of her.\", \" The woman picks up each of the cleaning tools while talking to the camera.\", \" The woman submerges a piece of cloth a bowl of white liquid.\", \" The woman rinses the cloth under running tap water.\", \" The woman moves some items and places a towel on her working surface.\", \" The woman spreads the wet cloth over the towel.\", \" The woman places another towel over the wet cloth.\", \" The woman rolls both towels and the wet cloth up.\", \" The woman talks to the camera once more.\"]}, \"v_5yrLDF_ZmN0\": {\"duration\": 124.53, \"timestamps\": [[0, 3.11], [3.11, 30.51], [30.51, 37.98], [37.98, 45.45], [45.45, 124.53]], \"sentences\": [\"Two divers are underwater in a controlled environment.\", \" They are instructing on proper methods of using their equipment.\", \" The diver on the left gives their mask to the diver on the right and he takes two deep breaths and returns the mask to the diver on the right.\", \" She also takes two breaths and gives the mask back over to the diver on the right.\", \" They do this roughly two more times between them and  they start to swim off which continuing to share the breathing mask until the camera fades to black.\"]}, \"v_lBhNeACY8y4\": {\"duration\": 206.61, \"timestamps\": [[10.33, 19.63], [37.19, 38.22], [42.36, 198.35]], \"sentences\": [\"A person gets out of their bed.\", \" They turn a sink on and wash their face.\", \" They start to work out in a gym with boxing gloves on.\"]}, \"v_oEDBkmmVKM0\": {\"duration\": 60.47, \"timestamps\": [[0, 3.93], [3.33, 38.7], [38.4, 42.93]], \"sentences\": [\"A little boy is laughing in a kitchen.\", \" He plays a harmonica and spins around.\", \" He puts the harmonica down and laughs again.\"]}, \"v_H4wC2d_Vbog\": {\"duration\": 160.66, \"timestamps\": [[0, 160.66], [0.8, 160.66], [1.61, 160.66]], \"sentences\": [\"People are standing in a gym.\", \" They are dancing and clapping their hands.\", \" They are stepping on small step stools while doing so.\"]}, \"v_7phIVBx1BzQ\": {\"duration\": 210.26, \"timestamps\": [[0, 35.74], [36.79, 83.05], [87.26, 141.92], [142.97, 153.49], [154.54, 210.26]], \"sentences\": [\"Two men play frisbee with dogs in a competition, the men hold several frisbees that throw the for the dogs to catch.\", \" A man bends and the dog jumps on the back, and then the men continue playing with the dogs.\", \" The men bend for the dogs to jumps on the back and throws the frisbee far and the dogs bring the frisbees.\", \" The dog jumps on the back of a man to catch the frisbee.\", \" Also, men throw the frisbees far and the dogs catch them in the air.\"]}, \"v_aN9vCyXMbb8\": {\"duration\": 65.23, \"timestamps\": [[0, 10.44], [10.76, 48.92], [51.2, 65.23]], \"sentences\": [\"A man is standing inside a garage.\", \" He starts playing a saxophone.\", \" He leans back and forth as he continues to play.\"]}, \"v_dOUCAVnJLko\": {\"duration\": 206.29, \"timestamps\": [[0, 37.13], [38.16, 115.52], [116.55, 206.29]], \"sentences\": [\"A woman bungee jumps off a very tall tower.\", \" The person is lowered down the rest of the way slowly.\", \" People meet her on the ground and detach her from the harness and she waves to onlookers.\"]}, \"v_AuVVP8q6tFY\": {\"duration\": 185.27, \"timestamps\": [[0, 27.79], [33.35, 151], [158.41, 185.27]], \"sentences\": [\"A boy is inline skating in a gym.\", \" He rounds it in several circles, passing other kids.\", \" He keeps rolling casually around the room.\"]}, \"v_231pbDe3uQc\": {\"duration\": 10.89, \"timestamps\": [[0, 2.18], [1.03, 5.61], [4.47, 10.89]], \"sentences\": [\"The biker jumped over the ramp.\", \" He The biker jump to another ramp near the camera.\", \" The biker continue to drive down the dirt road.\"]}, \"v_BD7txKlwoj8\": {\"duration\": 20.88, \"timestamps\": [[0, 20.88], [0.63, 20.88], [9.92, 20.88], [16.91, 20.88]], \"sentences\": [\"There is a net around a circle.\", \" A man is standing inside the net.\", \" He spins and swings a ball on a rope.\", \" He tosses the ball and throws his hands in the air.\"]}, \"v_WROGzgOpPXc\": {\"duration\": 209.77, \"timestamps\": [[0, 55.59], [58.74, 149.99], [142.64, 202.43]], \"sentences\": [\"A camera pans around various landscapes and shows close ups of peoples faces.\", \" The people cheer to the camera and begin riding in a raft down a river.\", \" The people continuously paddle and swim around the area while laughing and speaking to the camera.\"]}, \"v_svWiQtzgtOc\": {\"duration\": 82.62, \"timestamps\": [[0, 11.57], [19.83, 60.31], [64.44, 82.62]], \"sentences\": [\"a large man is break dancing in front of a crowd.\", \" The people are watching as they stand around him on a city street.\", \" He spins and turns for their entertainment.\"]}, \"v_V9_mEvC24nk\": {\"duration\": 152.74, \"timestamps\": [[0, 20.62], [33.6, 116.85], [122.19, 152.74]], \"sentences\": [\"A group is gathered in the bleachers outside a field.\", \" Several players join on the field together.\", \" They engage in a game of cricket using balls and a bat.\"]}, \"v_pem8BpCspUM\": {\"duration\": 4.27, \"timestamps\": [[0, 0.71], [0.77, 2.69], [2.59, 4.12]], \"sentences\": [\"A girl is seen running into frame.\", \" She slides into a plate where two other people are running.\", \" A person in the back spreads their arms out.\"]}, \"v_xzuQIbnXt2U\": {\"duration\": 26.84, \"timestamps\": [[0, 8.59], [8.46, 21.21], [21.21, 26.84]], \"sentences\": [\"A young woman is bent over between the legs of a man with his head between his knees.\", \"The large man the picks up the person and throws him into the dirt and walks away.\", \"Once the guy has landed,an instant replay of the incident is shown from the same view.\"]}, \"v_V4srMOGRlU8\": {\"duration\": 128.22, \"timestamps\": [[0, 30.13], [23.08, 86.55], [72.44, 128.22]], \"sentences\": [\"a man and two women walk while talking into a camera.\", \" the group is then shown floating and drinking in a river.\", \" Other people are also in the water playing games.\"]}, \"v_L21zcZlFfIY\": {\"duration\": 201.76, \"timestamps\": [[0, 26.23], [20.18, 69.61], [54.47, 129.13], [105.92, 201.76]], \"sentences\": [\"five people are standing on a wall the wall of a basketball court.\", \" two of those people run to the middle of the court to retrieve balls.\", \" those two people throw their balls to five people standing opposite of their wall.\", \" each sides takes turns throwing and dodging each others balls.\"]}, \"v_B_9S_qzlD38\": {\"duration\": 15.42, \"timestamps\": [[0, 5.4], [5.4, 9.41], [6.94, 8.33], [9.79, 15.19]], \"sentences\": [\"Two young girls are at a beach making sand castles.\", \" The two kids then are standing at the shore playing in the water.\", \" Camera pans to a close up of the kids legs and feet as they run through the sand and water.\", \" The camera cuts to a peaceful scene with waves in the background and a pinwheel spinning atop a sand castle.\"]}, \"v_Ieb7EkMxpJk\": {\"duration\": 29.93, \"timestamps\": [[0, 2.54], [2.84, 8.38], [13.32, 23.8]], \"sentences\": [\" A large dog runs into a lake of water.\", \" It lays on the grass.\", \" A dog is getting groomed on a table.\"]}, \"v_J27dBmSpRW4\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 40.13], [37.1, 107.51], [96.15, 148.39]], \"sentences\": [\"The outside of a building is shown and leads into people talking to one another.\", \" Two men are shown speaking to one another while smoking from a hookah.\", \" The men speak to the camera while it pans around the bar and back to them smoking.\"]}, \"v_unE-vkRljRs\": {\"duration\": 99.89, \"timestamps\": [[0, 17.98], [22.98, 65.93], [67.43, 99.89]], \"sentences\": [\"A group is riding horses in the countryside.\", \" They walk together in a long line.\", \" They explore the desert on their horses.\"]}, \"v_o-RbNz6gD5k\": {\"duration\": 41.33, \"timestamps\": [[0, 41.33], [28.73, 31.83], [31.41, 41.33]], \"sentences\": [\"A robot plays ping pong against a human.\", \"  A woman walks behind the game.\", \"  The game ends and no points are scored.\"]}, \"v_EpV0Zmg50nQ\": {\"duration\": 69.03, \"timestamps\": [[0, 31.41], [31.76, 68], [37.62, 54.88], [57.64, 68.34]], \"sentences\": [\"A girl plays with her hair while seated talking.\", \" A diver makes multiple jumps from a diving board into an Olympic pool.\", \" The diver makes a backwards facing dives into the pool.\", \" The diver flips backwards while moving forward into a dive.\"]}, \"v_CR_79ZjQG_w\": {\"duration\": 37.55, \"timestamps\": [[0, 37.55], [0.75, 12.77], [5.63, 37.55], [6.2, 9.76]], \"sentences\": [\"There are children outside on the driveway, and a red truck parked at the end of the driveway with a few orange cones.\", \" The smallest girl walks over to one of the older boys.\", \" Three boys play hopscotch on the chalk outline on the ground.\", \" A girl plays hopscotch on the left.\"]}, \"v_vopKTwCiHrA\": {\"duration\": 162.01, \"timestamps\": [[0, 21.06], [17.01, 80.19], [55.08, 153.1]], \"sentences\": [\"A hand placed two layers of cake on top of another cake.\", \" The hand began cutting the sides of the cake to make it into rounder.\", \" The hand make a jack-o-lantern face on an orange fondant and placed it over the cake.\"]}, \"v_VhzPqd0Su5I\": {\"duration\": 95.3, \"timestamps\": [[0, 54.79], [54.79, 75.28], [75.28, 95.3]], \"sentences\": [\"A view of the grass is shown, then a close up of a hand, and finally a man is shown riding on a riding lawn mower in a very large grassy area surrounded by a lot of trees.\", \"The man waves to the camera, gives a peace sign, then drinks from a can.\", \" More of the yard and trees are shown and the man on the lawnmower gives one more wave with his left hand.\"]}, \"v_oD0RWEO8D1g\": {\"duration\": 179.7, \"timestamps\": [[0, 5.39], [5.39, 48.52], [48.52, 87.15], [87.15, 139.27], [139.27, 179.7]], \"sentences\": [\"A black screen appears along with some words to illustrate that a player with the number six is the only girl on the team competing with the boys.\", \"Player number six then appears in a hockey rink,shakes the hand of the other team's captain and the referee's before skating to the center of the court.\", \"From the middle of the court,she joins the huddle with the rest of the team before they all hit their sticks on the ground and break from each other.\", \"The game finally begins,and small highlights of her are shown playing extremely aggressive and pushing boys against the wall in attempt to get the puck.\", \"For the last play,she gets to hit the puck by herself and ends up making a goal,the video then ends showing her name and age for one last time.\"]}, \"v_ItukN-TWrJM\": {\"duration\": 150.41, \"timestamps\": [[0, 18.05], [20.31, 47.38], [49.63, 150.41]], \"sentences\": [\"A woman is standing in a room talking to the camera.\", \" She shows off scissors and colored pink ribbon.\", \" She then shows how to wrap the ribbon and tie a bow around a present.\"]}, \"v_ywWHBghVyJ4\": {\"duration\": 30.28, \"timestamps\": [[0, 2.42], [2.88, 12.72], [13.02, 30.28]], \"sentences\": [\"A man is talking inside his garage.\", \" He shows how to use tools to wax down a ski.\", \" He shows the entire length of the board as he waxes it.\"]}, \"v_4sm-tTbfamM\": {\"duration\": 182.51, \"timestamps\": [[0, 24.64], [39.24, 127.76], [135.06, 182.51]], \"sentences\": [\"A man is inside a work shop while he shows off a bike.\", \" He spins the tires and adjusts the chain.\", \" He continues tightening the chair using metal tools.\"]}, \"v_pouxwDABDrg\": {\"duration\": 222.59, \"timestamps\": [[0, 222.59], [8.9, 34.5], [96.83, 120.2], [120.2, 162.49], [185.86, 210.34]], \"sentences\": [\"A trainer leads an aerobic class with people in a gym.\", \" The trainer and class step in a circle and up on the platform.\", \" The trainer and class kick up their legs forward on the platform.\", \" The trainer and class step up sideways on the platform.\", \" The trainer and class walk over then in reverse over the platform.\"]}, \"v_rprQvEVVpIc\": {\"duration\": 17.83, \"timestamps\": [[0, 13.37], [13.29, 17.83], [0, 17.83]], \"sentences\": [\"woman is standing on top of a tampoline geting ready to make a jump into the pool.\", \" the woman makes a jump and gets in the pool.\", \" two men are sitting on side of a roofed pool watching the girl.\"]}, \"v_c-zbA4zixfE\": {\"duration\": 140.18, \"timestamps\": [[0, 2.1], [2.1, 131.07], [132.47, 140.18]], \"sentences\": [\"A red dartboard is shown on a wall.\", \" A young person gathers up darts and throws them back at board, and repeats.\", \" The camera shakes and a close up of the board is shown.\"]}, \"v_N-1b20gDnCM\": {\"duration\": 184.32, \"timestamps\": [[0, 44.24], [44.24, 101.38], [102.3, 164.97], [164.97, 184.32]], \"sentences\": [\"Several individual are standing outside in a large green field swinging paddles back and forth.\", \"Then they all get in a canoe and start paddling though the water together.\", \"As they travel,boats are seen as well as the trees and birds in nature surrounding them.\", \"When they are finished,they leave the boats on the side of the water and they all are dressed in different clothing eating at a restaurant.\"]}, \"v_TcrLMpMA1WM\": {\"duration\": 91.44, \"timestamps\": [[5.49, 10.97], [11.89, 25.6], [43.89, 59.89]], \"sentences\": [\"A man is kneeling down in front of a pile of sticks.\", \" He lights the sticks on fire.\", \" He takes sticks out of a bucket and starts another fire.\"]}, \"v_qW926_opnTE\": {\"duration\": 109.0, \"timestamps\": [[0, 48.5], [48.5, 87.2], [87.2, 109]], \"sentences\": [\"a man and a woman are walking in a pool and the woman walks into a seat and grabs a violin and talk to the man.\", \" woman sart playing the violinf and the man looks nervious.\", \" the woman stops playing the violing and keeps talking to the man.\"]}, \"v_2ahuZDlObAQ\": {\"duration\": 196.4, \"timestamps\": [[0, 6.87], [6.87, 46.15], [46.15, 114.89], [114.89, 185.59], [185.59, 196.4]], \"sentences\": [\"A man comes onto the screen to introduce a video about rock climbing.\", \" He gets onto the rock and starts to show several different techniques for rock climbing.\", \" The camera then shows a close-up of him performing different foot movements for rock climbing.\", \" Later he begins to show a different technique for rock climbing.\", \" He ends the video with a quick closing statement.\"]}, \"v_evkiciK1nRc\": {\"duration\": 58.82, \"timestamps\": [[0, 13.82], [7.35, 22.35], [17.06, 34.41], [32.64, 58.82]], \"sentences\": [\"two men stand on a racquetball court.\", \" the two men begin playing racquetball.\", \" a score is made and the players stop playing.\", \" the players resume playing until the next score is made.\"]}, \"v_747hJQNJpeg\": {\"duration\": 183.35, \"timestamps\": [[0, 78.84], [78.84, 183.35], [0, 183.35]], \"sentences\": [\"A young lady with long black hair,green feathered earrings and a grey two piece sleeveless outfit is sitting outside on the concrete in front of a bunch of plants.\", \"As the lady is sitting down in the middle of the sidewalk with a silver instrument in the shape of a half circle with small circles on it with holes in the middle.\", \"The female then begins playing the instrument with her hands as if it is a conga moving her hands from circle to circle.\"]}, \"v_tAEGMVLn0wk\": {\"duration\": 210.91, \"timestamps\": [[0, 39.02], [34.8, 150.8], [140.25, 203.53]], \"sentences\": [\"A young girl is seen walking around a playground with other people walking around.\", \" She speaks to the camera and points around the area while speaking to others and climbing on monkey bars.\", \" She slides down a slide and continues playing on the playground with another woman's help.\"]}, \"v_hfk93bEIjwc\": {\"duration\": 86.05, \"timestamps\": [[0, 8.61], [14.63, 54.21], [56.37, 86.05]], \"sentences\": [\"A raft is seen parked alongside a river.\", \" Some people are rafting on the river, paddling along with the currents.\", \" They follow several small waterfalls, trying to stay upright.\"]}, \"v_BfLrltipDDU\": {\"duration\": 115.06, \"timestamps\": [[0, 16.68], [27.04, 95.5], [95.5, 115.06]], \"sentences\": [\"A large group of people are sitting on a raft together.\", \" They are getting into the water, on water skis.\", \" They are pulled around in the water by a zip line.\"]}, \"v_ripbruSSD8w\": {\"duration\": 6.78, \"timestamps\": [[0.14, 2], [1.83, 4.24], [4.37, 6.54]], \"sentences\": [\"A man is seen standing outside holding an ax.\", \" He lays down a piece of wood and holds up the ax.\", \" He swings it down and hits the wood.\"]}, \"v_BEtftLo6NKQ\": {\"duration\": 173.06, \"timestamps\": [[0, 21.63], [29.42, 87.39], [107.3, 173.06]], \"sentences\": [\"A woman is talking while seated in a chair.\", \" She hangs up the phone and smiles at the camera.\", \" She then shows a bucket on the floor, and proceeds to mop the floors clean.\"]}, \"v_DQLotF3P9Fc\": {\"duration\": 193.56, \"timestamps\": [[0, 193.56], [4.84, 173.24], [14.52, 39.68], [32.91, 79.36], [73.55, 106.46], [101.62, 145.17], [107.43, 141.3], [140.33, 161.62], [143.24, 164.53], [159.69, 166.46], [164.53, 193.56]], \"sentences\": [\"There are two men dressed in athletic shirts and shorts in a large open field practicing shot put.\", \" The young man dressed in the blue shirt is practicing shot put in the field while the other man who is slightly older than him is in a green shirt giving him instructions on how to throw the ball.\", \" The man in green is standing on a square concrete piece of land where he poses and aims to throw the shot put ball at a distance.\", \" He bends forward and then swings himself to shoot the ball at a distance.\", \" Then he uses a long measuring tape to measure the distance of his throw.\", \" He then aims and shoots another ball in the field.\", \" He continues to shoot more balls by holding it against his neck and aiming for his target distance.\", \" Then the man in green comes ahead to aim and shoot the shot put ball by bending down sideways and holding the ball against his neck to shoot.\", \" He shoots the ball trying to hit it beyond the target distance.\", \" He then flexes his muscle as the other man in blue goes to bring the shot put ball back.\", \" The man in blue comes back with the ball and aims again to shoot another ball in the field.\"]}, \"v_SI8HO5-e24c\": {\"duration\": 187.69, \"timestamps\": [[0, 25.34], [34.72, 105.1], [114.49, 187.69]], \"sentences\": [\"A bunch of people are on a bridge.\", \" They are putting on bungee gear.\", \" A man jumps off the side, swinging over the water.\"]}, \"v_aj-klsonETc\": {\"duration\": 35.62, \"timestamps\": [[0, 3.92], [6.06, 27.78], [28.32, 35.62]], \"sentences\": [\"A referee watches as two teams gather on the field.\", \" They starts a game of lacrosse together.\", \" The boys run after the ball with their nets, trying to hit it into a goal.\"]}, \"v_i4yQ54eWfy4\": {\"duration\": 137.37, \"timestamps\": [[0, 19.92], [19.92, 83.8], [83.8, 137.37]], \"sentences\": [\"man is standing in a kitchen talking to the camera.\", \" the man holds a knife and cut a lettuce and put it on a bowl.\", \" the man holds small croutons on a plate and show the lettuce.\"]}, \"v_YIEv6_HQtAc\": {\"duration\": 169.92000000000002, \"timestamps\": [[0, 28.04], [28.89, 33.98], [35.68, 39.08], [42.48, 46.73], [47.58, 57.77], [68.82, 158.88]], \"sentences\": [\"A man is talking on a basketball court.\", \" He picks up a bottle of water and takes a drink of the water.\", \" He then pours the water on top of his head.\", \" Another man walks behind him.\", \" He leaves and returns with a basketball.\", \" He stands under the basket of the basketball hoop and tries to throw it up into the basket.\"]}, \"v_z7zj8stU-kw\": {\"duration\": 4.64, \"timestamps\": [[0, 2.3], [1.53, 2.3], [2.32, 4.25], [4.27, 4.64]], \"sentences\": [\"A boy is brushing his teeth with a pink toothbrush.\", \" He looks at the camera and makes a face.\", \" There is a closeup of the brush getting rinsed in the water.\", \" Then the camera shows the floor for a second and cuts off.\"]}, \"v_7ih5UMIU7zE\": {\"duration\": 166.42000000000002, \"timestamps\": [[0, 4.99], [5.82, 8.32], [8.32, 157.27], [10.82, 25.79], [27.46, 38.28], [58.25, 76.55], [83.21, 120.65], [143.95, 158.1], [158.1, 166.42]], \"sentences\": [\"We see a title screen with a college emblem on it.\", \" We see cheerleaders standing on the floor with people in chairs watching in a crowd.\", \" the cheerleaders performs  routine in front of a castle backdrop.\", \" The men flip then the ladies flip and the men lift them in the air and hold them up as the crowd claps.\", \" The people forum groups and flip three girls in the air.\", \" The people form two groups and hold up two girls who hold up one girl together.\", \" The people hold up letters to spell out a word then the girls on top of the piles spell words and chants.\", \" The men swing three girls onto girls on top of other peoples shoulders an the crowd stands cheers and claps.\", \" The routine is done the cheerleaders hug each other and people in the crowd.\"]}, \"v__CMIO5R_OGA\": {\"duration\": 35.06, \"timestamps\": [[0.18, 33.13], [0.18, 7.01], [7.01, 30.33], [30.5, 34.89]], \"sentences\": [\"A video displays a number of clips played consecutively of a field hockey female player walking, and achieving two goals in a field hockey game before waiving at the crowd in victory.\", \"  A woman is shown walking with her head down in a line with other woman after clips of her sports stats flash on the screen.\", \"  The woman is then shown hitting two field hockey goals on the field in an active game.\", \"  The woman is then shown waiving at the crows in victory.\"]}, \"v_wN2XnDS0aGc\": {\"duration\": 23.3, \"timestamps\": [[0, 5.01], [5.13, 19.46], [19.69, 23.3]], \"sentences\": [\"A vintage shot of a female athlete successfully doing a high jump in a large stadium.\", \"  The action is repeated in slow motion twice.\", \" The athlete is briefly shown celebrating.\"]}, \"v_Te9e32TDiZ8\": {\"duration\": 147.63, \"timestamps\": [[0, 25.1], [21.41, 62.01], [46.5, 95.96], [90.79, 147.63]], \"sentences\": [\"a woman is laying on a medical chair.\", \" here mouth is held open with clamps by second woman.\", \" the second woman pieces the 1st woman.\", \" the 2nd woman removes the clamps and inserts a ring in the first woman's mouth.\"]}, \"v_V4S9ppnrXzc\": {\"duration\": 145.75, \"timestamps\": [[0, 24.05], [24.05, 117.33], [117.33, 145.75]], \"sentences\": [\"man is standing in a room and is talking to the camera.\", \" baby is in a pool swimming and floting and the man keeps talking to the camera.\", \" the end of the video with the credits are shown.\"]}, \"v_SrcZRhXkr2k\": {\"duration\": 94.13, \"timestamps\": [[0, 80.01], [66.84, 70.13], [80.01, 89.9], [89.9, 94.13]], \"sentences\": [\"A man and woman are standing in a racketball room and attempt on taking turns hitting the racketball very hard, but the woman is dominating every chance.\", \"The woman swings the racket and almost hits the man in his face with her fast flying racket.\", \"The man reaches his hand out, shakes the woman's hand, and gives her a side hug while they both walk towards the door to exit the room.\", \"The woman exits first, removes her glasses and smiles, and the man is walking right behind her and removes his glasses while looking down.\"]}, \"v_RjBXzs2XvbY\": {\"duration\": 225.57999999999998, \"timestamps\": [[0, 42.86], [60.91, 166.93], [155.65, 225.58]], \"sentences\": [\"a man is standing holding a knife over a table.\", \" the man points to several parts of the knife.\", \" the man then demonstrates the knife's ability.\"]}, \"v_j_YzK7aHTIA\": {\"duration\": 113.87, \"timestamps\": [[0, 13.66], [23.91, 72.88], [78.57, 113.87]], \"sentences\": [\"An image is shown of a rum cake.\", \" The ingredients are mixed into a bowl and a lemon is grated.\", \" The cake is then baked and sprinkled with powdered sugar.\"]}, \"v_3j2d27w3x5Q\": {\"duration\": 194.44, \"timestamps\": [[0, 56.39], [45.69, 133.19], [122.5, 182.78]], \"sentences\": [\"A man is seen speaking to the camera and mixing ingredients into a pan.\", \" He stirs around the ingredients while adding more as well as putting noodles in a pot.\", \" He puts the noodles into the pan stirring it around and presenting it on a plate.\"]}, \"v_5Yq5GMPBguI\": {\"duration\": 118.05, \"timestamps\": [[0, 37.19], [30.1, 84.41], [79.09, 113.92]], \"sentences\": [\"A person is seen pushing a lawn mower across the yard.\", \" The woman walks back and fourth across the yard while pushing the lawn mower.\", \" The woman walks back towards the camera and back again under the playground.\"]}, \"v_b7B0NRizzYo\": {\"duration\": 26.22, \"timestamps\": [[0, 14.68], [14.68, 18.22], [18.35, 26.22]], \"sentences\": [\"A woman and a toddler pile dry dead leaves with rakes.\", \" Then, the toddler jumps on the pile of leaves and spreads them.\", \" After, the woman continue piling the leaves.\"]}, \"v_nLAm7USuYbA\": {\"duration\": 80.13, \"timestamps\": [[2.4, 80.13], [4.01, 17.63], [68.51, 80.13]], \"sentences\": [\"A man runs down a field and jumps backwards over a bar several times.\", \" People are standing in front of the mat watching him.\", \" A woman in an orange vest is standing next to them watching.\"]}, \"v_UR1e1MIRvvc\": {\"duration\": 69.45, \"timestamps\": [[0, 6.6], [9.72, 41.67], [43.75, 69.45]], \"sentences\": [\"A group has gathered in the streets.\", \" They are taking pictures of a group of men in kilts.\", \" The men are playing sets of bagpipes.\"]}, \"v_U7vH9pEfGVw\": {\"duration\": 164.1, \"timestamps\": [[0, 43.49], [37.74, 117.33], [92.71, 160.81]], \"sentences\": [\"A man is shown speaking to the camera and leads into a woman dealing cards.\", \" The woman lays out cards on a table and presenting them with her hands.\", \" She continues laying out cards and ends with the man speaking.\"]}, \"v_9RAW6QibWRs\": {\"duration\": 47.02, \"timestamps\": [[0, 47.02], [15.75, 34.56], [34.8, 47.02]], \"sentences\": [\"A young girl is outside on a small circle of concrete surrounded by trees and three buckets.\", \"In the bucket directly in front of her,she has soap and water and is cleaning several clothes.\", \"As she washes each item,she takes them and places them on top of the other bucket,to separate them for rinsing.\"]}, \"v_9WhPG89P-tg\": {\"duration\": 60.05, \"timestamps\": [[0, 6.3], [9.31, 37.83], [39.33, 60.05]], \"sentences\": [\"A group of people are seated inside a waiting room.\", \" They are talking as a barber is cutting some men's hair.\", \" The barber uses clippers to trim and clean up.\"]}, \"v__SzFi60-OGA\": {\"duration\": 199.51, \"timestamps\": [[0, 5.99], [5.99, 32.92], [32.92, 59.85], [59.85, 69.83], [70.82, 141.65], [141.65, 166.59], [167.59, 199.51]], \"sentences\": [\"A little girl in her martial arts uniform approaches her three masters.\", \" Each master congratulates her individually.\", \" The master in the middle removes her belt and ties on a new one.\", \" Once again congratulating her, everyone begins to applaud as she goes back to her place among the students.\", \" Next a line of students are standing at attention and waiting for instruction, in the next scene the little girl is participating in board breaking.\", \" She succeeds in the first trial and holds up the board she broke.\", \" She then takes part in the second trial and also succeeds holding up the pieces.\"]}, \"v_tZzse87ICr8\": {\"duration\": 21.27, \"timestamps\": [[0, 1.49], [1.49, 21.27], [0, 11.7], [11.06, 21.27]], \"sentences\": [\"The girl looks at the camera and prepares to jump.\", \" A young girl plays hopscotch in the sand on the beach.\", \" There is a finger on the edge of the camera.\", \" The girl hops on the board back the other direction.\"]}, \"v_sf77PM1CtNQ\": {\"duration\": 109.74000000000001, \"timestamps\": [[0, 14.81], [24.14, 68.59], [66.39, 109.74]], \"sentences\": [\"an industrial vacuum cleaner is shown.\", \" a backpack is placed on the floor.\", \" a man picks up the back pack and demonstrates its uses.\"]}, \"v_4OIkfJ_IkpA\": {\"duration\": 88.74, \"timestamps\": [[0, 31.06], [31.06, 63.45], [26.18, 85.63]], \"sentences\": [\"A young boy is seen standing behind a lawn mower and begins pushing.\", \" He stops to throw a rock out of the way and another man helps him start it.\", \" He continues pushing the mower around the yard.\"]}, \"v_9fw8ODTEso4\": {\"duration\": 153.09, \"timestamps\": [[0, 153.09], [7.65, 153.09], [20.67, 137.78], [143.9, 153.09]], \"sentences\": [\"Several people stand on a beach.\", \" There are stands set up around them.\", \" They begin to kick a ball into a goal post.\", \" They come together and embrace in the end.\"]}, \"v_E88Sr9H3Wi8\": {\"duration\": 169.85, \"timestamps\": [[0, 37.37], [38.22, 107.01], [102.76, 163.06]], \"sentences\": [\"A close up of glasses are shown followed by a woman speaking to the camera.\", \" Various ingredients are laid out and she begins mixing them into a bowl.\", \" She pours it into glasses and shows it off to the camera.\"]}, \"v_RpyIg_j4I3E\": {\"duration\": 184.94, \"timestamps\": [[4.62, 44.38], [41.61, 122.98], [104.49, 170.14]], \"sentences\": [\"A close up of a kayak is shown with a person paddling and people riding in front.\", \" The person continues to ride along the river moving himself in the kayak.\", \" They all continue to ride together in the water past one another.\"]}, \"v_udpVICVTQrQ\": {\"duration\": 29.26, \"timestamps\": [[0, 4.53], [8.78, 24.87], [25.75, 29.26]], \"sentences\": [\"A swimmer is standing on a diving board outside a pool.\", \" He raises his arms, then dives into the water.\", \" The crowd cheers and stands up in celebration.\"]}, \"v_tOCFOu8eOkU\": {\"duration\": 17.51, \"timestamps\": [[0, 17.51], [3.06, 7.18], [7.18, 17.51]], \"sentences\": [\"little kid is sitting in a Babies eating chair.\", \" an adult person is holding an ice cream and is offering it to the baby.\", \" the kid grabs the ice cream and start eating.\"]}, \"v_RjZ7jJBE1Qw\": {\"duration\": 123.42, \"timestamps\": [[0, 45.05], [45.05, 92.56], [92.56, 105.52], [105.52, 123.42]], \"sentences\": [\"A blonde man is squatting outdoors and talking next to his small tree that he touches, and the words on the screen say \\\"PHOENIXLONGEVITYARTS COM JAKE MACE\\\".\", \"A different man and a toddler girl are now standing next to a pool and the man throws the toddler in and she struggles to swim and struggles catch her breath while floating on her back multiple times.\", \"The toddler finally swims to the stairs where a woman is waiting for her, she stands up, the woman tries to give her a high five but the toddler rather be held for comfort.\", \"Black screens appear with white words on them that say \\\"CLICK THE 'LIKE' BUTTON HIT 'SUBSCRIBE'\\\", \\\"FACEBOOK dot COM/JAKEMACE dot TAICHI\\\", and \\\"INSTAGRAM@JAKEMACETAICHI\\\".\"]}, \"v_UHNUmpx0nww\": {\"duration\": 108.9, \"timestamps\": [[0, 108.9], [0, 11.98], [13.07, 27.23], [27.23, 47.92], [54.45, 80.04], [80.59, 108.9]], \"sentences\": [\"Two teams are playing football on the sand.\", \" A player hits the goal and greeted by his teammates.\", \" In slow motion replay, he was introduced as Eric Cantona from Franca.\", \" The play continue but there was no hit goals, they change players and resume the game.\", \" Another player scores one more goal the replay shows that it was Joel Cantona.\", \" The play continues, the two teams kicking and running back and forth but not scoring a goal.\"]}, \"v_94bJbSWNw3o\": {\"duration\": 47.07, \"timestamps\": [[0.24, 47.07], [0, 47.07], [0, 46.83]], \"sentences\": [\"man is doing slackline above a seashore.\", \" kid is walking from side to side of a rock above a seashore.\", \" kid is in beach in the sunset practicing slackline.\"]}, \"v_PJ72Yl0B1rY\": {\"duration\": 206.37, \"timestamps\": [[0, 8.25], [8.25, 202.24], [202.24, 206.37]], \"sentences\": [\"An introduction comes onto the screen for a video about a soccer tournament.\", \" From several different countries are shown playing games and receiving Awards during several different parts of the tournament.\", \" The video ends with the closing captions and the graphics shown on the screen.\"]}, \"v_vD9oh7NZ2PA\": {\"duration\": 119.42, \"timestamps\": [[0, 32.24], [25.08, 83.59], [59.11, 112.26]], \"sentences\": [\"A man is shown speaking to the camera and leads into him kayaking.\", \" He takes off a fake legs and climbs into a kayak.\", \" He continues speaking while climbing it and out as well as rowing away.\"]}, \"v_hsI_BHN5h_0\": {\"duration\": 158.69, \"timestamps\": [[0, 1.59], [1.59, 10.31], [10.31, 21.42], [21.42, 76.96], [77.76, 144.4], [145.2, 150.75], [150.75, 158.69]], \"sentences\": [\"\\\"Santa Teresa Beach Soccer 2013\\\" animates on screen.\", \"  Scenes of a beach are shown.\", \"  A clean up effort appears to be occuring.\", \"  People set up a beach soccer area with marking, fences and fireworks.\", \" A game is being played on the beach field with an large crowd watching.\", \" \\\"Salerno Dal 14 Luglio Al 4 Agosto La Tradizione Continua\\\" animates on screen.\", \"  Several men speak to the camera and laugh.\"]}, \"v_kqzIDPXbATw\": {\"duration\": 156.34, \"timestamps\": [[0, 36.74], [35.96, 153.99], [154.78, 156.34]], \"sentences\": [\"A man is walking in a field of honey bee boxes.\", \" He begins to use a weed eater to trim the weeds of the field.\", \" He finishes and walks off the field.\"]}, \"v_xcBJP14YBvg\": {\"duration\": 61.0, \"timestamps\": [[3.35, 5.49], [4.88, 38.43], [38.12, 39.95], [44.22, 52.46]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He does a gymnastics routine on the balance beam.\", \" He dismounts and lands on a mat.\", \" He walks down off the stage.\"]}, \"v_-zZJmRT9udU\": {\"duration\": 161.75, \"timestamps\": [[0, 37.2], [41.25, 103.52], [105.14, 159.32]], \"sentences\": [\"A man is seen walking into frame and sits down behind a drum.\", \" He speaks to the camera and begins playing the drums with hands.\", \" He continues playing while pausing to speak and demonstrate how to use drums.\"]}, \"v_O9phka35v6I\": {\"duration\": 92.28, \"timestamps\": [[0, 10.61], [13.38, 61.83], [56.29, 88.59]], \"sentences\": [\"A man walks into frame and sits in a chair.\", \" He begins playing an accordion to the camera.\", \" He continues playing while moving his hands up and down.\"]}, \"v_1rf7t4sYtIA\": {\"duration\": 38.17, \"timestamps\": [[0, 4.96], [6.11, 29.78], [30.73, 38.17]], \"sentences\": [\"A boy is standing outside his house.\", \" He turns on a leaf blower, using it on the driveway.\", \" He walks around, blowing around the hedges and driveway.\"]}, \"v_5pl_qttD8Fc\": {\"duration\": 75.78999999999999, \"timestamps\": [[4.55, 7.58], [16.67, 23.12], [23.87, 29.94], [54.19, 61.01]], \"sentences\": [\"A woman is smoking a cigarette.\", \" She gets into the shower.\", \" She puts her make up on and paints her finger nails.\", \" She gets into a limousine.\"]}, \"v_MTJ1EtiizVQ\": {\"duration\": 103.35, \"timestamps\": [[0, 96.12], [6.2, 96.12], [101.29, 103.35]], \"sentences\": [\"A man and woman start dancing on a stage.\", \" People are sitting around the stage watching them dance.\", \" They finish and the crowd applauds for them.\"]}, \"v_UrQ7Jq1s95o\": {\"duration\": 21.27, \"timestamps\": [[0, 4.36], [4.04, 17.44], [20.21, 21.27]], \"sentences\": [\"A man bends down and picks up a large weight.\", \" He lifts it over his head and drops it onto a mat.\", \" People are watching him and applauding him.\"]}, \"v_FQkvwPpDomw\": {\"duration\": 27.49, \"timestamps\": [[10.03, 17.32], [20.76, 21.86], [23.92, 24.88]], \"sentences\": [\"The man shovels his driveway from the snow.\", \"  A car backs out of the driveway next door.\", \"  The man appears in front of the camera.\"]}, \"v_SBn1i9YqN1k\": {\"duration\": 89.05, \"timestamps\": [[0, 36.51], [11.58, 74.8], [65.9, 89.05]], \"sentences\": [\"The man took out metal knife sharpener from the drawer and took a knife.\", \" The man is holding the sharpener and start rubbing the knife on the metal sharpener.\", \" The man placed a chopping board on the counter, wet a paper towel and placed under the chopping board.\"]}, \"v_yc9Bc8G7Y_Q\": {\"duration\": 7.18, \"timestamps\": [[0, 2.51], [0, 2.3], [1.72, 5.42], [4.41, 7.18]], \"sentences\": [\"There is a shot of a field.\", \" There are several bushes and trees in the distance.\", \" A biker enters frame going quickly.\", \" He then rides off in the dirt.\"]}, \"v_f4UdgFrorCo\": {\"duration\": 209.17000000000002, \"timestamps\": [[0, 53.34], [54.38, 77.39], [79.48, 143.28], [144.32, 166.29], [167.33, 209.17], [191.39, 192.43]], \"sentences\": [\"A man talks with a young woman, then the woman turns on the radio and they continue talking.\", \" Then, the woman extends her hand to invite the man to the stage while talking.\", \" After, the woman and the man dance tango on the stage.\", \" The woman rise her feet up and dance around tango.\", \" Next, the man raises the woman and they turn around and continue dancing.\", \" A woman enter and find the couple dancing tango.\"]}, \"v_JXyi7hFT26w\": {\"duration\": 203.22, \"timestamps\": [[0, 30.48], [36.58, 120.92], [126, 203.22]], \"sentences\": [\"A woman is standing outside with other women.\", \" They stand in different poses near the water.\", \" They take photos of buildings as they explore the city.\"]}, \"v_dcEdjqyHj8M\": {\"duration\": 62.53, \"timestamps\": [[0, 13.13], [14.7, 45.65], [43.15, 61.28]], \"sentences\": [\"Two men are seen chainsawing on a stage while a man stands in the middle.\", \" The men cut wood in various ways in front of a large audience.\", \" One finishes before the other and is shown again in slow motion.\"]}, \"v_h-MWdTHW_Eg\": {\"duration\": 62.07, \"timestamps\": [[0, 62.07], [37.86, 40.34], [57.41, 62.07]], \"sentences\": [\"A man and a little girl are playing badminton in front of a playground.\", \" The girl picks up the birdie off the ground and serves it.\", \" The man walks off the court.\"]}, \"v_2NMTArm9IkA\": {\"duration\": 13.28, \"timestamps\": [[0, 11.75], [4.52, 6.24], [8.9, 11.89]], \"sentences\": [\"A man is standing in a kitchen.\", \" He cuts a grapefruit in half on a block.\", \" He then rubs the grapefruit onto the inside of a sink.\"]}, \"v_KzVRgHnpCOQ\": {\"duration\": 142.36, \"timestamps\": [[0, 46.27], [35.59, 101.79], [90.4, 135.96]], \"sentences\": [\"A close up of objects are shown with a person sitting down and taping her feet.\", \" The woman puts pads on her feet and begins putting her shoe on.\", \" She puts on another shoe and shows off her feet in the end.\"]}, \"v_5Foo5NSjEXQ\": {\"duration\": 120.02, \"timestamps\": [[0, 27.01], [26.41, 69.01], [73.81, 115.82]], \"sentences\": [\"A chef is seen speaking to the camera and pouring oil into a pot.\", \" He then puts ingredients into the pot and sits it around.\", \" He takes out the ingredient in the end into a strainer.\"]}, \"v_85RJm2qymRY\": {\"duration\": 71.47, \"timestamps\": [[0, 5.36], [5.72, 33.95], [35.38, 65.04], [65.04, 71.47]], \"sentences\": [\"There is a tire with an orange power tool attached to one of the lug nuts.\", \" The camera cuts to a man and he talks for a bit then shows the car, and then zooms back to the tire.\", \" He then proceeds to take off all of the lug nuts with the tool and removes the tire from the car.\", \" Then the camera pans back to his face and he talks a bit more.\"]}, \"v_r_jey4tT7zo\": {\"duration\": 52.41, \"timestamps\": [[0, 7.6], [7.6, 44.02], [44.02, 52.41]], \"sentences\": [\"First the shirtless man dances slow to the soft music.\", \" Then he speeds up a little and he bends while moving his legs and flexing his stomach.\", \" In the end, he stops while still holding onto the wood of the top bunk and he stares at the camera.\"]}, \"v_Gl6EMAgTNKo\": {\"duration\": 62.95, \"timestamps\": [[0, 7.24], [31.79, 36.83], [37.14, 38.4], [39.34, 39.97]], \"sentences\": [\"People are rafting down a choppy river.\", \" People are in kayaks going down the river.\", \" People are walking across a river on horses.\", \" Plates of food are shown on a table.\"]}, \"v_4usf67inE3w\": {\"duration\": 159.29, \"timestamps\": [[0, 19.11], [19.11, 52.57], [52.57, 74.07], [74.07, 112.3], [113.1, 143.36], [143.36, 159.29]], \"sentences\": [\"A young boy is in the inside of a bowling alley gabbing a ball from the machine.\", \"After he picks the ball,he walks over to the lane and releases the ball.\", \"The ball goes directly for the gutter but swirls back onto the lane because two black rails are up on the side.\", \"After his first round,the boy returns to get his ball and attempts to knock down the one pin left.\", \"Another boy then takes his two turns but he rolls the ball down between his legs.\", \"Lastly,a young girl with a purple shirt takes her two turns,she rolls like the average person does but she does it on the other lane.\"]}, \"v_BioBrxuKOsw\": {\"duration\": 68.45, \"timestamps\": [[0, 8.9], [12.32, 46.21], [51.68, 68.45]], \"sentences\": [\"Several people are riding horses in an outdoor arena.\", \" They are involved in a game of polo.\", \" They hit the ball back and forth with sticks while riding the horses.\"]}, \"v_05BGDQvQ2YM\": {\"duration\": 173.76, \"timestamps\": [[0, 15.64], [22.59, 106.86], [114.68, 173.76]], \"sentences\": [\"Several kids are inside a building together.\", \" They are riding bumper cars around a floor.\", \" The video shakes as they bump into each other.\"]}, \"v_GvJxJf4m6_M\": {\"duration\": 92.11, \"timestamps\": [[0, 21.19], [21.65, 57.57], [55.73, 88.89]], \"sentences\": [\"A man is seen speaking to the camera and bends forward pointing to his back.\", \" The man then pulls up his sock and uses a pole on his leg.\", \" He lifts his leg up and then back down again.\"]}, \"v_sGGnEgCnEt8\": {\"duration\": 203.52, \"timestamps\": [[0, 24.42], [25.44, 193.35], [194.36, 203.52]], \"sentences\": [\"Two young men lay on the floor arm wrestling.\", \" The two men clearly struggle to win.\", \"  Finally one of the men wins.\"]}, \"v_rJpFVvho0o4\": {\"duration\": 167.52, \"timestamps\": [[0, 39.37], [43.56, 117.27], [107.21, 167.52]], \"sentences\": [\"A close up of a pool is shown followed by a person swimming around.\", \" The person moves up and down the pool while the camera captures them from several angles.\", \" The person continues swimming around back and fourth.\"]}, \"v_zrnxRV3yLR8\": {\"duration\": 69.17, \"timestamps\": [[0, 20.75], [21.1, 31.13], [31.82, 38.74], [39.43, 67.1]], \"sentences\": [\" The white walls of a room is progressively filled with colorful pictures.\", \" A person peels applications and put on a wall.\", \" Then, the person pass a brush on a paper and puts it on the wall.\", \" After the person cuts pieces of a picture to fit in the wall.\"]}, \"v_lL2XqxgNIeQ\": {\"duration\": 108.46000000000001, \"timestamps\": [[0, 97.61], [46.64, 50.43], [66.16, 70.5], [84.6, 87.31], [98.16, 108.46]], \"sentences\": [\"Several short outdoor scenes of various types of activities at a recreation area are displayed.\", \" A woman talks to the camera.\", \" A man talks to a woman.\", \" A woman sated on a pier talks.\", \" An ending title scene with contact information is shown.\"]}, \"v_L_8Gyi8FMk4\": {\"duration\": 19.69, \"timestamps\": [[0, 4.73], [4.73, 13.78], [13.69, 19.3]], \"sentences\": [\"A young girl is seen peeling a potato.\", \" Another child moves around behind her.\", \" More children are seen working and the girl looks up to the camera.\"]}, \"v_69X7tP6p7E0\": {\"duration\": 70.06, \"timestamps\": [[0, 18.21], [22.42, 52.54], [55.34, 70.06]], \"sentences\": [\"A group of people are on a basketball court.\", \" They are engaged in a game of dodgeball.\", \" They throw the ball at each other.\"]}, \"v_6EWzgWd72Cs\": {\"duration\": 237.94, \"timestamps\": [[0, 10.71], [11.9, 237.94], [44.02, 132.05], [76.14, 129.67], [126.11, 205.81], [166.55, 201.06], [199.87, 217.71], [212.95, 237.94]], \"sentences\": [\"There are two news reporters talking about dog grooming as part of their news segment.\", \" A lady dressed in a blue dress is talking about the Extreme Dog Grooming company that grooms dogs.\", \" She shows some women working in the dog grooming salon where couple of dogs are being groomed with shears by professional dog groomers.\", \" One lady grooms a poodle and then dyes its fur with different colors.\", \" Then she shows another dog that has spots that resemble a giraffe that is being brought to an elementary school to play with the kids.\", \" Several kids sit with the dog and pet the dog as part of a behavioral therapy session.\", \" Some other dog is shown painted to resemble a zebra.\", \" The woman in blue comes back to talk more about the dog grooming salon.\"]}, \"v_KePjkCySBCs\": {\"duration\": 40.79, \"timestamps\": [[0, 2.86], [3.06, 39.97], [24.27, 40.79], [39.97, 40.79]], \"sentences\": [\"A man on a street surrounded by a crowd is wearing roller blades with rods attached and using ski poles to propel him forward.\", \"  The rods on his roller blades strike bottles on the ground that make music as he skates by them.\", \"  The crowd begins to cheer him on during the performance.\", \"  he finishes the performance as he races towards the camera.\"]}, \"v_3pjVV7A6Apw\": {\"duration\": 201.29, \"timestamps\": [[3.02, 53.34], [59.38, 145.94], [140.91, 192.24]], \"sentences\": [\"A person is seen cleaning a window and pouring liquid into a bucket.\", \" The person holds up tools and dips them in the bucket.\", \" He cleans a window using several tools and looking at the window.\"]}, \"v_B8KJJecq2F0\": {\"duration\": 166.84, \"timestamps\": [[0, 166.84], [5.01, 67.57], [64.23, 104.27], [104.27, 161], [109.28, 166.84]], \"sentences\": [\"There are two team practicing cricket in an indoor field that is surrounded by nets on three sides.\", \" The batter wearing a blue shirt and helmet is swinging his bat as the bowler throws an overhand ball to him.\", \" After he finishes his turn, another batter takes over and begins playing.\", \" There are various players lined up who take turns to bowl overhand balls.\", \" The teams continue their practice rounds as they hit overhand and underhand balls.\"]}, \"v_9ZboVy59qrw\": {\"duration\": 115.03, \"timestamps\": [[0, 44.29], [44.29, 94.33], [94.33, 115.03]], \"sentences\": [\"A man stands at the podium to say a few words and there's also people shown holding up trophies and talking.\", \" People are riding on fat fast brown horses and they were hitting the ball using croquet sticks.\", \"  Many models, important people, and even a special handsome prince speaks in front of the camera.\"]}, \"v_ByF8Pg3xXNA\": {\"duration\": 20.25, \"timestamps\": [[0.1, 4.45], [4.56, 14.78], [14.07, 19.94]], \"sentences\": [\"A person is seen dipping clothes into a bucket and smiling to the camera.\", \" The man washes the clothes all around the bucket.\", \" He takes out a clothing item and rinses it off.\"]}, \"v_-oExUcmbTEE\": {\"duration\": 48.9, \"timestamps\": [[0, 5.38], [8.31, 35.21], [36.92, 48.9]], \"sentences\": [\"A woman is on a track, preparing to run.\", \" She runs down the track and jumps into the sand.\", \" She gets up and walks away.\"]}, \"v_Vncj0EkAGio\": {\"duration\": 61.58, \"timestamps\": [[7.08, 56.04], [18.78, 53.88], [54.81, 56.65]], \"sentences\": [\"A woman stands behind a bar.\", \" She pours ice and shots into a glass.\", \" She puts a straw into the glass.\"]}, \"v_Ir_Ul8FaXs4\": {\"duration\": 37.73, \"timestamps\": [[0, 5.28], [5.28, 26.22], [26.6, 37.73]], \"sentences\": [\"A bunch of people are playing and swimming at the beach.\", \" A woman is talking on the phone as others are building castles in the sand.\", \" Then we see a woman standing in front of the ocean again.\"]}, \"v_PRT0Z9HPF4U\": {\"duration\": 141.25, \"timestamps\": [[0, 6.36], [14.12, 26.84], [81.92, 134.18]], \"sentences\": [\"Man hits the white billiard ball.\", \"  Boy shakes his wooden pool cue.\", \"  Boy shoots a pool ball into the hole.\"]}, \"v_iChE4EoYG6k\": {\"duration\": 114.06, \"timestamps\": [[0, 112.35], [0, 53.61], [53.61, 61.02], [61.02, 69], [66.15, 109.49], [110.07, 114.06]], \"sentences\": [\"We see a class of people working out on an exercise step.\", \" We see the instructor enter and lead the class as a person in the rear films the class.\", \" The instructor raises his hands in the air and walks around the classroom.\", \" The instructor stands still and jumps in the air.\", \" The instructor counts down and starts working out again.\", \" The instructor stops working out and leaves walks away.\"]}, \"v_DCjklOgbzGs\": {\"duration\": 158.41, \"timestamps\": [[0, 25.35], [31.68, 101.38], [110.09, 158.41]], \"sentences\": [\"A skier is riding a lift over the mountain.\", \" He skis down a steep hill past other skiers.\", \" He speeds up as he continues down the hill.\"]}, \"v_qUFPq8D0jMc\": {\"duration\": 179.32, \"timestamps\": [[0, 8.07], [8.07, 168.56], [168.56, 179.32]], \"sentences\": [\"Several kids are shown arriving at a park where they put their bags down and proceeded to go into the park.\", \" They are shown performing several different jump roping tricks while having fun and dancing.\", \" The video ends with the closing credits shown across the screen.\"]}, \"v_Ue90f5r-2Qw\": {\"duration\": 156.53, \"timestamps\": [[0, 17.22], [31.31, 107.22], [111.13, 156.53]], \"sentences\": [\"A man is talking inside a room.\", \" He is holding a violin and string in his hands.\", \" He talks about how to play it and a harmonica.\"]}, \"v_KxJpfKZbNiI\": {\"duration\": 15.4, \"timestamps\": [[0, 2.16], [2.23, 10.55], [11.16, 15.4]], \"sentences\": [\"A man is holding a little girl on a playset.\", \" She goes across the monkey bars in the yard.\", \" She stands up and gives her dad a high five.\"]}, \"v_uID_HFDKFKw\": {\"duration\": 69.34, \"timestamps\": [[0, 11.09], [14.56, 38.83], [40.91, 69.34]], \"sentences\": [\"A large group of people are gathered on a field.\", \" They are running and kicking balls back and forth.\", \" With each kick, they slide across a slip and slide.\"]}, \"v_66nA52ux2Sk\": {\"duration\": 216.34, \"timestamps\": [[0, 18.39], [37.86, 140.62], [144.95, 216.34]], \"sentences\": [\"A boy in a wheelchair is seated in a corner.\", \" He is playing the drums and cymbals.\", \" He continues playing, hitting them with a pair of drum sticks.\"]}, \"v_suyh4tGuScw\": {\"duration\": 113.11, \"timestamps\": [[0, 10.74], [10.74, 73.52], [73.52, 95.57], [96.7, 113.11]], \"sentences\": [\"A man and a woman are dressed in fancy evening wear preparing to dance on a large lit up stage.\", \"The band behind them begins to play and the two grab each other and start to ballroom dance.\", \"As they move around the room,the woman bends her legs straight out and around the guy while he glides her across the floor.\", \"After some time,they guy dips the young lady and the video ends.\"]}, \"v_eCXiGAChev4\": {\"duration\": 83.96000000000001, \"timestamps\": [[0, 5.04], [10.92, 12.17], [28.97, 33.17], [44.5, 83.96]], \"sentences\": [\"A person is sitting down in front of a bucket.\", \" Another person is standing on the grass in front of them.\", \" A front door to a house is shown.\", \" The woman continues scrubbing a pair of tongs in the bucket.\"]}, \"v_x768VAsOQSw\": {\"duration\": 75.37, \"timestamps\": [[0, 22.61], [20.35, 52.76], [48.24, 73.49]], \"sentences\": [\"A camera pans around several snow mobiles and shows people sitting around a hole.\", \" A man swims up in the water and speaks to the camera.\", \" Another man comes out of the water wet.\"]}, \"v_zmaDLAZu4kA\": {\"duration\": 30.14, \"timestamps\": [[0, 3.62], [4.22, 15.97], [17.63, 30.14]], \"sentences\": [\"A cowboy rides his horse out of a gate.\", \" He ropes a calf with a lasso.\", \" He dismounts, tying the calf and getting back on his horse.\"]}, \"v_Zzj03Cew2vk\": {\"duration\": 27.38, \"timestamps\": [[0, 3.42], [5.06, 11.22], [9.17, 14.37], [12.46, 27.38]], \"sentences\": [\"A bottle of moisturizer is shown.\", \" A woman on a beach applies it to her skin.\", \" She rubs it into her skin.\", \" Text appears on screen describing the product.\"]}, \"v_5co1E0umtJQ\": {\"duration\": 188.36, \"timestamps\": [[0, 38.61], [42.38, 149.75], [159.17, 188.36]], \"sentences\": [\"A man is scuba diving under the ocean water.\", \" He is exploring the bottom of the sea, showing off tips for how to swim.\", \" He gives an ok sign to the camera as he moves along.\"]}, \"v_8AsV0ojyUMU\": {\"duration\": 118.78999999999999, \"timestamps\": [[0, 5.94], [10.69, 65.93], [70.68, 118.79]], \"sentences\": [\"A man is wearing glasses inside a workshop.\", \" He holds up a bike wheel while he talks.\", \" He shows how to mount the wheel onto the bike.\"]}, \"v_slQuWp_rMTE\": {\"duration\": 7.87, \"timestamps\": [[0, 3.27], [3.38, 7.01], [7.08, 7.87]], \"sentences\": [\"A man and child are canoeing down a river.\", \" The canoe heads under a bridge.\", \"  As the camera follows it reveals a bicycle parked by the bridge's railing.\"]}, \"v_MiOJxYa5Nt4\": {\"duration\": 17.28, \"timestamps\": [[0, 17.28], [0, 3.28], [3.63, 8.9], [9.59, 11.49], [11.83, 11.92], [16.24, 17.28]], \"sentences\": [\"A guy is practicing a hammer throw.\", \" The guy walks forward as he grips the steel wire attached to the metal ball.\", \" The guy spins the hammer throw object.\", \" The guy spins with the hammer throw object.\", \" The guy releases the hammer throw object.\", \" The guy walks toward the green net.\"]}, \"v_ePaFTey15ho\": {\"duration\": 199.46, \"timestamps\": [[0, 32.91], [39.89, 132.64], [140.62, 199.46]], \"sentences\": [\"A man wearing a tie is talking to the camera.\", \" He shows off several bottles of liquor as he talks.\", \" He pours them into shakers, then mixes them and pours for serving.\"]}, \"v_LIJBolW8k5o\": {\"duration\": 131.26, \"timestamps\": [[0, 36.75], [30.85, 93.2], [84.66, 127.33]], \"sentences\": [\"A large group of people are seen sitting in the water looking around.\", \" Another group are seen kite surfing along the water.\", \" The people continue riding past each other along the water.\"]}, \"v_s4Ryxk3TxKA\": {\"duration\": 52.2, \"timestamps\": [[0, 7.83], [8.87, 32.1], [34.19, 52.2]], \"sentences\": [\"A group of teen boys are painting a fence.\", \" They are using paint brushes as they work.\", \" They apply strokes of white paint to the inside and outside of the fence.\"]}, \"v_Ny49eEt1OJg\": {\"duration\": 85.8, \"timestamps\": [[0, 22.74], [20.59, 52.34], [48.48, 81.51]], \"sentences\": [\"A man is see laying plaster on a wall and rubbing it into the wall.\", \" Another man is seen using a tool along the wall.\", \" The men continue working with one another and laying plaster down all along the wall.\"]}, \"v_Y9B22Ii7-eE\": {\"duration\": 206.8, \"timestamps\": [[7.24, 196.46], [7.24, 21.71], [52.73, 67.21], [135.45, 155.1], [172.68, 188.19], [186.12, 197.49]], \"sentences\": [\"A man is standing behind a table.\", \" He holds up a large carton of eggs.\", \" He puts a pan on a burner.\", \" He buts butter into the pan and then dishes scrambled eggs into the pan.\", \" He adds toppings to the egg and flips it over.\", \" He puts the omelette onto a plate and adds a garnishment.\"]}, \"v_YVxuIAwOyoE\": {\"duration\": 177.77, \"timestamps\": [[0, 31.11], [38.22, 98.66], [107.55, 177.77]], \"sentences\": [\"A man is outside speaking to the camera.\", \" A game of cricket is in progress.\", \" They hit the ball with the bat, trying to get it into the goal.\"]}, \"v_O_tZAD_opA4\": {\"duration\": 74.24, \"timestamps\": [[0, 4.45], [4.45, 57.53], [57.53, 74.24]], \"sentences\": [\"people are in roofes gym doing gymnastics.\", \" woman is next to a kid talking to the camera and shows the corret position to make a handstand.\", \" the blonde kid is running and doing a somersault.\"]}, \"v_UH_z4C6sv3E\": {\"duration\": 54.1, \"timestamps\": [[2.16, 10.01], [10.01, 42.47], [43.01, 53.83]], \"sentences\": [\"First, the man pulls on his beard a little bit showing viewers what he has to get rid of.\", \" Then he gets his electric razor and starts removing most of his facial hairs.\", \" He removes the hairs on the side, and under his chin but he doesn't get the front of the chin.\"]}, \"v_5ssP_EapV9Q\": {\"duration\": 101.8, \"timestamps\": [[0, 23.92], [25.45, 69.22], [68.71, 99.76]], \"sentences\": [\"A small group of hockey players are seen skating around the ice.\", \" They play a game of hockey while skating past one another.\", \" The men continue to skate around while the camera captures their movements.\"]}, \"v_v9APkG4il4Q\": {\"duration\": 30.02, \"timestamps\": [[0.45, 28.97], [1.65, 12.61], [12.61, 28.67]], \"sentences\": [\"A man walks across a rope stretched between two mountain tops high above land , balancing himself with both arms and hands, before making it to the other side of the rope.\", \"  The man walks with a shaky carriage , slowly across a high suspended rope.\", \"  The man waivers but makes it to the other side where he celebrates by smiling into the camera.\"]}, \"v_TDZsE3yValQ\": {\"duration\": 19.58, \"timestamps\": [[0, 2.84], [3.23, 14.09], [15.37, 19.58]], \"sentences\": [\"A female athlete runs down a track.\", \" She takes a giant leap through the  air.\", \" She lands in a sand pit for distance.\"]}, \"v_QQBmydn6--I\": {\"duration\": 226.67000000000002, \"timestamps\": [[0, 68], [62.34, 153], [156.41, 223.27]], \"sentences\": [\"A man is seen lighting a match and putting it into a pile of sticks.\", \" The man strokes the fire with a stick and continues to let it burn.\", \" He then walks over and cuts up a fish on the side.\"]}, \"v_Doy6s1y58uc\": {\"duration\": 8.55, \"timestamps\": [[0, 0.64], [0.68, 7.82], [7.86, 8.55]], \"sentences\": [\"A screen graphic of a dartboard wipes off screen.\", \"  In slow motion a man wearing a green shirt throws a dart.\", \" A dartboard graphic wipes back onto screen.\"]}, \"v_Xq9ueKle4fY\": {\"duration\": 129.29, \"timestamps\": [[0, 31.03], [29.74, 80.16], [74.34, 129.29]], \"sentences\": [\"A woman is seen leaning over a tub scrubbing a dog.\", \" She dries off the dog with a towel and then blow dries him.\", \" She brushes him and trims his nails and gives him kisses.\"]}, \"v_LACH47i14lY\": {\"duration\": 101.82, \"timestamps\": [[0, 14.76], [20.87, 72.29], [72.8, 101.82]], \"sentences\": [\"A male news caster is talking in front of a screen.\", \" A game of soccer is in progress.\", \" A woman signs what is happening as the game continues.\"]}, \"v_r-_JFgDJRrQ\": {\"duration\": 184.92, \"timestamps\": [[0, 49.93], [50.85, 118.35], [114.65, 180.3]], \"sentences\": [\"A close up of a truck is shown and shows a man opening part of the interior.\", \" The man pulls out items and pulls down a spare tire.\", \" He unscrews a tire and pulls it off, followed by screwing on a new one and putting it back.\"]}, \"v_o8-v0rPP06U\": {\"duration\": 106.22999999999999, \"timestamps\": [[0, 35.59], [23.37, 70.64], [70.11, 103.58]], \"sentences\": [\"A man is seen walking around and leads into people playing soccer.\", \" A man scores a goal and leads into more clips of people scoring goals.\", \" Team mates celebrate as more goals are shown in different clips of soccer matches.\"]}, \"v_Cm8hWFFA16I\": {\"duration\": 209.0, \"timestamps\": [[0, 9.41], [9.41, 82.56], [82.56, 135.85], [136.9, 209]], \"sentences\": [\"A man walks in the street and approaches a man that polish shoes.\", \" First, the person brushes the tennis shoe and cleans it with a cloth.\", \" Then, the person applies white polish and spray liquid.\", \" After, the person shows boxes to the man while talking, the man return the boxes to the person.\"]}, \"v_iq0h4m3I8hY\": {\"duration\": 217.32999999999998, \"timestamps\": [[0, 35.86], [52.16, 148.87], [159.74, 217.33]], \"sentences\": [\"A video is shown of numerous people gathered beside a river with rafts.\", \" They ride in the turbulent waves, trying to stay upright.\", \" Several rafts flip in the harsh currents.\"]}, \"v__QyQSAtMdj8\": {\"duration\": 183.97, \"timestamps\": [[0, 34.03], [32.2, 109.46], [110.38, 176.61]], \"sentences\": [\"A snowy hill is shown with ski lifts as well as several clips of people riding on the lift.\", \" More clips are shown afterwards of different people riding up and down the mountain.\", \" The continue skiing and snowboarding down the hill past others.\"]}, \"v_GgiaxJ1JeSM\": {\"duration\": 99.99000000000001, \"timestamps\": [[0, 11], [11, 99.99], [15, 99.99]], \"sentences\": [\"A number of people sit in idle bumper cars.\", \" The bumper cars activate and the individuals drive around the arena.\", \" The camera follows an individual in a green bumper  car as he drives around.\"]}, \"v_5oPGbuL8G5Y\": {\"duration\": 188.22, \"timestamps\": [[0, 188.22], [6.59, 188.22], [14.12, 188.22], [170.34, 188.22]], \"sentences\": [\"Two men sit in a boat.\", \" A third person is being pulled behind the boat.\", \" They surf side to side on the water.\", \" They eventually fall off the rope.\"]}, \"v_lNvX6h3o4EA\": {\"duration\": 32.79, \"timestamps\": [[0, 28.36], [28.85, 30.16], [30, 32.79]], \"sentences\": [\"A man in a classroom sitting down on a stool playing a guitar in from of adult students.\", \" The man stands up from the stool and the people clapping can be heard.\", \" Take a bow then walks behind the stool to put the guitar away.\"]}, \"v_4At1Vd-0lWE\": {\"duration\": 162.89, \"timestamps\": [[0, 9.77], [25.25, 120.54], [122.17, 162.89]], \"sentences\": [\"A man and woman are inside an indoor court.\", \" They are engaged in a game of racquetball.\", \" They hit the ball back and forth against the wall.\"]}, \"v_gIf0VWXI_DY\": {\"duration\": 203.87, \"timestamps\": [[0, 9.17], [46.89, 69.32], [114.17, 175.33]], \"sentences\": [\"The outside of a building is shown.\", \" A man in a hat is shaving someone's finger.\", \" He begins to tattoo something onto the side of the finger.\"]}, \"v_ave_VDl3LwE\": {\"duration\": 69.17, \"timestamps\": [[0, 6.57], [7.26, 48.08], [53.95, 69.17]], \"sentences\": [\"A group of women are outdoors around a fire.\", \" A woman hammers a stake into the ground next to a bbq pit.\", \" She continues to hammer it until it goes in.\"]}, \"v_NDyc4PZE954\": {\"duration\": 186.09, \"timestamps\": [[0, 27.91], [13.03, 155.38], [117.23, 186.09]], \"sentences\": [\"The old man is talking to the camera.\", \" An old black man is polishing the other man's shoes as he sits in the chair.\", \" The old man is reading a boy while he is sitting on the chair.\"]}, \"v_r8hXEpP7HH0\": {\"duration\": 75.02, \"timestamps\": [[0, 13.88], [15.38, 66.4], [69.4, 75.02]], \"sentences\": [\"A sumo wrestling match is about to start.\", \"  They start and the black guy loses.\", \"  He falls towards the camera.\"]}, \"v_VDYSVR0HbpM\": {\"duration\": 213.53, \"timestamps\": [[0, 213.53], [11.74, 213.53], [22.42, 213.53], [36.3, 213.53]], \"sentences\": [\"Several ballerinas dance outside on the concrete.\", \" They are shown dancing in several locations.\", \" They are wearing multicolored outfits.\", \" They dance around various sites.\"]}, \"v_v3t4Z5cEgZM\": {\"duration\": 51.11, \"timestamps\": [[0, 51.11], [21.21, 44.46], [42.93, 49.32]], \"sentences\": [\"A woman is sitting in a chair smoking a cigarette.\", \" She has a glass ash tray on a table next to her.\", \" She plays with her hair while she takes a drag off the cigarette.\"]}, \"v_ZjvmWr5LoFw\": {\"duration\": 226.23, \"timestamps\": [[0, 223.97], [0, 64.48], [64.48, 109.72], [109.72, 223.97]], \"sentences\": [\"A group of children play bumper cars in an amusement park setting.\", \"  A group of children drive multi colored bumper cars around on an indoor surface as onlooker watch from the sidelines.\", \"  The cars are suddenly stopped from working and a worker walks on the floor between the cars and then walks amount the children as if speaking to them.\", \"  The cars start moving again and the children continue to drive until the cars are stopped again and the worker returns to the floor among the children before the scene fades out and some of the kids get off of the bumper cars.\"]}, \"v_l2MB-KxbVEs\": {\"duration\": 43.52, \"timestamps\": [[0, 12.18], [14.14, 30.68], [29.37, 42.64]], \"sentences\": [\"A man is seen riding a horse into a pit and roping up a calf.\", \" He climbs back up on the horse while others watch.\", \" Two men then rope up the calf as others ride around on horses.\"]}, \"v_8zq6C0SRyDQ\": {\"duration\": 144.41, \"timestamps\": [[0, 14.44], [22.38, 103.97], [117.69, 144.41]], \"sentences\": [\"A woman is standing in her kitchen, making a cake.\", \" She frosts the cake layers with a knife.\", \" She then decorates the cake, showing off the finished product.\"]}, \"v_fUa3pwpNZ6I\": {\"duration\": 154.02, \"timestamps\": [[0, 35.42], [28.49, 107.81], [83.17, 130.15], [117.05, 153.25]], \"sentences\": [\"A young gymnast is seen standing ready with her arms up.\", \" She then jumps up onto a beam and begins performing a gymnastics routine.\", \" She flips and kicks herself along the beam and jumps down to hug other people.\", \" Her jumps are shown again and she is seen walking away.\"]}, \"v_IjULOynkK5I\": {\"duration\": 71.63, \"timestamps\": [[0, 10.39], [7.88, 18.98], [12.89, 71.63], [31.52, 71.63]], \"sentences\": [\"A woman stands in a small gym.\", \" She then gets on a bike.\", \" She is instructing a class.\", \" They then do several other exercises.\"]}, \"v_VcEW9F8TyqU\": {\"duration\": 82.13, \"timestamps\": [[0, 9.86], [12.73, 52.97], [65.7, 82.13]], \"sentences\": [\"A display is set up for a game of beer pong.\", \" People clap and shake hands before the game.\", \" They try to throw the small balls into the red cups.\"]}, \"v_KGTPkiDRpfE\": {\"duration\": 40.22, \"timestamps\": [[0, 4.62], [5.83, 28.35], [29.16, 40.22]], \"sentences\": [\"A group is standing in rafts by the river water.\", \" They climb into the rafts one by one.\", \" They go into the water, paddles through the waves.\"]}, \"v_RzFqIN5hWJQ\": {\"duration\": 175.36, \"timestamps\": [[0, 32.44], [32.44, 99.08], [110.48, 169.22]], \"sentences\": [\"A group of people are seen walking out onto a stage with one girl holding a pose.\", \" She begins dancing around with a baton and smiling to the crowd.\", \" She continues dancing with the baton and ends by bowing and walking off the stage.\"]}, \"v_59NxymNdzBE\": {\"duration\": 153.22, \"timestamps\": [[0, 16.85], [17.62, 153.22], [17.62, 51.33], [51.33, 151.69]], \"sentences\": [\"There is a logo shown with a blue background and then a man welcomes the viewer in the midst of a longer intro with saw blades and the words \\\"Home Improvement\\\".\", \" The host comes back on and begins to discuss different problems and tips for fixing small wear that happens to furniture over time.\", \" The first tip is to use an ice cube to get up wax off of a table.\", \" Then he tells you how to repair a cigarette burn, small scratches, and finally a ring left in the table top.\"]}, \"v_5oD3-y66g_8\": {\"duration\": 146.74, \"timestamps\": [[0, 30.82], [5.87, 30.82], [33.02, 83.64]], \"sentences\": [\"A woman is doing a hand stand.\", \" She starts hula hooping with her foot.\", \" She stands up and continues to hula hoop.\"]}, \"v_m6C4SOxfNGQ\": {\"duration\": 106.55, \"timestamps\": [[0, 106.55], [9.59, 106.55], [74.05, 81.51]], \"sentences\": [\"People are playing foosball in a room.\", \" They are hitting a yellow ball on the table.\", \" They make a goal into the hole.\"]}, \"v_vqqoDYma9F8\": {\"duration\": 154.23, \"timestamps\": [[0, 32.39], [33.16, 104.1], [97.93, 148.06]], \"sentences\": [\"A woman speaks to the camera while hosting a news segment and leads into a man speaking to the camera.\", \" Clips are shown of men hanging off of buildings washing windows while another man speaks to the camera.\", \" The men wash windows all along a building and stop to smoke cigarettes and speak to one another.\"]}, \"v_19LxLS1_Yn0\": {\"duration\": 35.74, \"timestamps\": [[0, 4.65], [5.9, 21.8], [23.59, 35.74]], \"sentences\": [\"A man is preparing to run down a track.\", \" He is carrying a pole over his shoulder as he runs.\", \" He uses the pole to vault over a bar onto a mat.\"]}, \"v_W3TQnn0q9kc\": {\"duration\": 98.11, \"timestamps\": [[0, 13.24], [13.73, 28.94], [28.94, 42.68], [43.17, 63.28], [63.77, 98.11]], \"sentences\": [\"A woman talks in a TV studio, and a man water surf behind a boat.\", \" Then, people sail in a boat, then a teen jumps in the water to surfboard, but the teen falls in the water.\", \" A person, water surf  close to a boat holding a rope but he falls,, and reporters comment in teh studio.\", \" After, a person  water surfs making pirouettes but falls, as well other water surfers fall.\", \" A person surfs holding a rope attached from a pole, but falls to the water.\"]}, \"v_ZFJkIiqOErk\": {\"duration\": 124.18, \"timestamps\": [[0, 43.46], [33.53, 94.38], [60.85, 120.46]], \"sentences\": [\"Several people are seen standing around a court throwing balls at one another.\", \" People pass balls to each other and continue throwing them at one another.\", \" More people walk in and out of the game while people cheer on the sides.\"]}, \"v_XFlKGUFgBnc\": {\"duration\": 167.0, \"timestamps\": [[2.5, 50.93], [45.92, 117.73], [101.87, 159.48]], \"sentences\": [\"A group of girls are seen dancing with a woman leading in front.\", \" The girls follow the woman dancing all around the room.\", \" They continue dancing together and cheering with one another.\"]}, \"v_TbxVdELEiO8\": {\"duration\": 137.53, \"timestamps\": [[0, 48.14], [48.14, 99.02], [99.02, 137.53]], \"sentences\": [\"A girl is recorded in the kitchen while she is dancing and mopping the floor.\", \" She stops dancing and begins to focus on mopping.\", \" She begins to dance again as she finishes mopping the floor.\"]}, \"v_R246xMs2aig\": {\"duration\": 191.01, \"timestamps\": [[0, 191.01], [5.73, 191.01], [186.23, 191.01]], \"sentences\": [\"A woman is wearing a long purple skirt.\", \" She is standing up and belly dancing.\", \" She bends down and flips her head back.\"]}, \"v_5GFpN0YZEog\": {\"duration\": 212.02, \"timestamps\": [[0, 212.02], [4.24, 212.02], [136.75, 187.64], [190.82, 195.06]], \"sentences\": [\"People are standing on a sidewalk playing instruments.\", \" People are standing on the street behind them watching.\", \" A man stops and takes a picture of them.\", \" A police car with its lights on goes down the street.\"]}, \"v_H_dERoTis5Y\": {\"duration\": 124.9, \"timestamps\": [[5.62, 23.73], [33.72, 36.22], [33.72, 124.9]], \"sentences\": [\"People are standing in a tower.\", \" They shoot smoke bombs at people down below.\", \" People begin to shoot guns in a field.\"]}, \"v_1uiEkwykOxo\": {\"duration\": 200.51, \"timestamps\": [[0, 50.13], [50.13, 139.35], [139.35, 185.47], [185.47, 200.51]], \"sentences\": [\"An animated version of the Earth spins around and then a view of several horse stalls are shown.\", \"Many more horses appear and people begin talking about them and caring for them.\", \"Next,men are shown playing a game of polo,eating and swimming.\", \"A group of rooms are also shown and more features of the resort is shown.\"]}, \"v_Ule69iMpA3Y\": {\"duration\": 60.93, \"timestamps\": [[0, 11.88], [11.88, 20.72], [20.72, 60.93]], \"sentences\": [\"A woman is shown working out on a step doing some step aerobics.\", \" She moves to one side of the step and continues to go up and down doing the aerobics.\", \" She move back to the center of the state and finishes doing aerobic routine.\"]}, \"v_FCe1NVTbaZ4\": {\"duration\": 10.94, \"timestamps\": [[0, 10.94], [1.42, 7.49], [9.46, 10.94]], \"sentences\": [\"A woman does an exercise on her back.\", \"  She does abdominal crunches.\", \"  Then she puts her feet down.\"]}, \"v_EQPiYEvFmSo\": {\"duration\": 177.24, \"timestamps\": [[0, 7.09], [7.09, 28.36], [28.36, 118.75], [118.75, 146.22], [146.22, 177.24]], \"sentences\": [\"A cheerleading team is standing in the middle of the floor preparing to perform their routine.\", \" They begin dancing and performing their routine for a crowd of people that is standing around the room.\", \" Later on in the routine they begin to perform formations and lifts.\", \" They end their routine and line up against the wall after they receive their applause.\", \" Another set of cheerleaders on the other side of the room proceeds to shout a chant and cheer for the performers, giving them a round of applause while the performing team stands by the wall on the other side of the room.\"]}, \"v_SqIVJrXxO3g\": {\"duration\": 146.07999999999998, \"timestamps\": [[4.38, 128.55], [40.9, 43.09], [48.94, 52.59], [70.12, 73.04], [128.55, 146.08]], \"sentences\": [\"Several men paddle a raft down a river.\", \" One of the men jumps in the river.\", \" The man is pulled out of the river.\", \" Another man is shown being pulled back onto the raft.\", \" An end title text on black screen is shown.\"]}, \"v_a5Xc9ZgN2yo\": {\"duration\": 19.48, \"timestamps\": [[0, 5.45], [5.45, 11.01], [11.2, 14.42], [14.32, 19.48]], \"sentences\": [\"A girl in a blue dress plays hopscotch hopping in the squares.\", \" The girl wearing a pink dress hops in the hop scotch course.\", \" The girl in the blue dress hops for a second time.\", \" The girl in the blue dress dances over the hopscotch course.\"]}, \"v_jYU215e-dKg\": {\"duration\": 39.66, \"timestamps\": [[0, 13.09], [13.88, 39.66], [11.7, 39.66]], \"sentences\": [\"man is sitting in stage drying her hair with a cloth and holding a guitar.\", \" man hold a bottle and drinks from it standing in stage.\", \" the man is walking in the stage drinking from the bottle and throw it to the public.\"]}, \"v_iA2Q4t-o58w\": {\"duration\": 219.27, \"timestamps\": [[0, 77.84], [48.24, 158.97], [163.35, 215.98]], \"sentences\": [\"A girl is seen flipping along a mat that leads into several people doing lifts.\", \" A girl is seen in the tub as well as back at the gym getting hurt and playing with others.\", \" More clips are shown of people performing gymnastics and falling out of their tricks or hurting another.\"]}, \"v_7-_Nur_xiV4\": {\"duration\": 185.9, \"timestamps\": [[0, 114.33], [26.03, 158.01], [85.51, 181.25]], \"sentences\": [\"Two men are seen break dancing against one another in the middle of a large stage.\", \" People jump and flip around one another while others watch.\", \" Then men go back and fourth with one another as people cheer.\"]}, \"v_AzmaqkS88YM\": {\"duration\": 149.32999999999998, \"timestamps\": [[0, 147.83], [0, 149.33], [50.77, 149.33]], \"sentences\": [\"men wearing sport clothes are playing squash in small court room.\", \" men holding tennis rackets are playing squash in small court room.\", \" old man wearing white shirt is waching the game.\"]}, \"v_Lf3oTCD4d08\": {\"duration\": 39.41, \"timestamps\": [[0, 3.35], [3.35, 12.81], [14.78, 18.13], [30.93, 39.41]], \"sentences\": [\"A woman is ironing something on an ironing board.\", \" She sets the iron down and talks to the camera.\", \" A laptop is shown on a table.\", \" She picks up the iron and continues to iron.\"]}, \"v_NHDjJ8auZQ0\": {\"duration\": 111.74000000000001, \"timestamps\": [[0, 40.22], [29.61, 77.1], [71.51, 109.5]], \"sentences\": [\"A large group of people are seen playing various ping pong matches against one another.\", \" The games play back and fourth while others watch on the side.\", \" The people continue to play back and fourth with one another.\"]}, \"v_hrwcr7BxS5I\": {\"duration\": 15.09, \"timestamps\": [[0, 1.13], [1.96, 5.89], [6.26, 15.09]], \"sentences\": [\"A man is on an outdoor tennis court.\", \" He bounces the ball a few times.\", \" Then he serves it over the net.\"]}, \"v_bZF4nakRNF4\": {\"duration\": 23.04, \"timestamps\": [[0, 1.96], [1.96, 7.6], [7.6, 23.04]], \"sentences\": [\"An old black and white clip plays and a tall man starts running towards a pole that is up high, and there are a lot of people in the general area doing their own thing or watching him.\", \" When the man reaches the pole he jumps very high, clears the pole, lands on the matting below it and people cheer while he gets up and runs back to the area he started.\", \" A slow motion replays and it shows the man running and jumping once again.\"]}, \"v_9PY28-zQhm4\": {\"duration\": 38.76, \"timestamps\": [[0, 8.33], [8.33, 25.97], [24.22, 38.76]], \"sentences\": [\"an elder man is standing over a sink.\", \" the man peels a potato with a knife.\", \" the man places the peelings into the sink.\"]}, \"v_NIY1f2KcEe0\": {\"duration\": 30.37, \"timestamps\": [[0, 2.28], [4.25, 14.27], [15.95, 30.37]], \"sentences\": [\"A man is pushing a powerful mower in his yard.\", \" Smoke goes everywhere as he pushes it back and forth.\", \" The camera blurs out as it is overcome by the debris.\"]}, \"v_3fyR5F18WKg\": {\"duration\": 15.15, \"timestamps\": [[0.45, 11.36], [2.95, 13.11], [4.62, 15]], \"sentences\": [\"Two boys are seen sitting and standing before a piano.\", \" One begins moving his fingers on the instrument.\", \" The man sitting next to him watches.\"]}, \"v_ox2AGCcE9a0\": {\"duration\": 40.06, \"timestamps\": [[0, 3], [4.81, 22.43], [24.43, 40.06]], \"sentences\": [\"A man walks up to a barbell on a stage.\", \" He lifts it up to his chest and pauses.\", \" He lifts it over his head before dropping it.\"]}, \"v_WHYEBsWp5qY\": {\"duration\": 21.11, \"timestamps\": [[0, 4.12], [4.12, 10.24], [10.34, 21.11]], \"sentences\": [\"A man is standing on a runway outside on the side of the track,positioning his feet preparing to count his steps.\", \"Once the athlete is ready,he takes off and does a complete long jump into the pit full of sand.\", \" Immediately after,a replay is shown and attention is given to his feet for when he takes off.\"]}, \"v_sqcJOpPrexQ\": {\"duration\": 44.4, \"timestamps\": [[0.89, 9.32], [9.55, 17.54], [17.54, 27.53], [27.53, 39.29]], \"sentences\": [\"Introductory text scenes are shown explaining the video context.\", \" A hand holds and demonstrates some sort of cutting tool.\", \" The tool is used to cut apart a piece of roofing.\", \" The hand flips over the roofing briefly before placing it back down.\"]}, \"v_vvHrSeomFtg\": {\"duration\": 214.81, \"timestamps\": [[0, 30.07], [22.55, 55.85], [42.96, 78.4], [74.11, 102.03], [93.44, 135.33], [110.63, 160.03], [170.77, 214.81]], \"sentences\": [\"sandwiches are shown on a a plate.\", \" turkey is shown being chopped.\", \" celery is shown being chopped.\", \" a tomato is shown being sliced.\", \" mayonnaise is shown in a bowl.\", \" ingredients are added to the bowl.\", \" the contents of the bowl gets mixed then spread onto bread.\"]}, \"v_GX1EjqXAszM\": {\"duration\": 62.69, \"timestamps\": [[0, 9.4], [5.02, 26.96], [26.96, 43.89], [42, 62.69]], \"sentences\": [\"a man applies peanut butter to bread.\", \" the man wipes the knife clean.\", \" the man then applies jelly to bread.\", \" the man makes a sandwich.\"]}, \"v_lCIJJgxTs2U\": {\"duration\": 62.58, \"timestamps\": [[0, 4.07], [4.07, 24.41], [24.09, 55.69], [56.01, 62.58]], \"sentences\": [\"People are standing in bleachers and clapping their hands.\", \" A man is standing on the field shaking his arms.\", \" He runs down a track and jumps over a bar.\", \" He takes his shirt off and bends over.\"]}, \"v_hxbp-zM5JPQ\": {\"duration\": 106.72, \"timestamps\": [[2.13, 3.2], [3.74, 5.34], [19.21, 99.78], [103.52, 106.72]], \"sentences\": [\"A guy in a white tee shirt enters a bedroom.\", \" The guy moves the ironing table.\", \" The guy starts ironing a bottom down shirt.\", \" The credits of the clip are shown.\"]}, \"v_ZTHsS5lQyvQ\": {\"duration\": 153.35, \"timestamps\": [[0, 13.8], [13.8, 60.57], [60.57, 106.57], [106.57, 153.35]], \"sentences\": [\"woman is talking to the camera showing a candy pizza.\", \" the woman put chocolate in a bain marie, add butter and mix them with a spatula.\", \"the woman spread butter  and chocolate on bread slices grate cheese on it.\", \" woman toast the bread and slice in parts.\"]}, \"v_bmoS216hsoc\": {\"duration\": 122.3, \"timestamps\": [[0, 43.42], [34.86, 84.39], [75.83, 119.85]], \"sentences\": [\"A woman is seen speaking to the camera holding an instrument.\", \" She begins playing the instrument while looking away.\", \" She continues to play while pausing in between and smiling to the camera.\"]}, \"v_IgyBIt3GTAU\": {\"duration\": 194.03, \"timestamps\": [[0, 21.34], [21.34, 138.73], [137.76, 194.03]], \"sentences\": [\"A young man dressed in a blue button down shirt and grey pants is standing in the middle of a room with shelves of glasses behind him.\", \"The man then takes a small can of wax and puts it on a piece of wood that he is holding in his hand.\", \"After dabbing the wax with a white rag,he begins running his fingers over the wood and showing other pieces of wood that the product has been used on.\"]}, \"v_t3dHI5TeY7I\": {\"duration\": 168.81, \"timestamps\": [[0.84, 167.97], [0, 37.98], [38.83, 153.62]], \"sentences\": [\"This man is showing viewers how he puts his socks on while he sits in his wheelchair.\", \" First he lifts one leg up onto the other leg and he puts one white high knee sock on.\", \" A small white dog walks by while he puts on his socks and afer a while, he has both socks on his feet.\"]}, \"v_XJmBiSBx7Ss\": {\"duration\": 114.27000000000001, \"timestamps\": [[0, 16.57], [19.43, 45.71], [55.99, 114.27]], \"sentences\": [\"a man walks up to a tall wall of bushes.\", \" the man then takes a trimming machine and trims each bush.\", \" the man then grabs a ladder and uses it to trim the top of the bushes.\"]}, \"v_IajP-SB2D5c\": {\"duration\": 182.07, \"timestamps\": [[0, 26.4], [34.59, 118.34], [132.91, 182.07]], \"sentences\": [\"A man is talking in front of a camera on a track.\", \" He takes a long running jump.\", \" He lands in the sand pit and it is measured for distance.\"]}, \"v_lZ6zN5Q447M\": {\"duration\": 222.54, \"timestamps\": [[0, 222.54], [7.79, 62.31], [63.42, 149.1], [150.22, 222.54]], \"sentences\": [\"A man in a black hoodie stands in a red room behind a bar and explains how to make a mixed drink.\", \"  He goes through the ingredients and the glassware to make the drink.\", \"  He fills the glass with ice and now makes the drink explaining the measurements.\", \"  He uses a straw to  further mix the drink, takes a sip of the drink, explains how the drink tastes and then ends the video of where to find him, how to contact him and how to get on his show.\"]}, \"v_Z4yZr5dIMec\": {\"duration\": 160.2, \"timestamps\": [[0, 20.83], [20.83, 53.67], [53.67, 160.2]], \"sentences\": [\"a green grassy field is shown with some flowers.\", \" horses are on a barn in a club with pools.\", \" men are playing polo on a green grassy field riding horses.\"]}, \"v_Ub88_ql0B78\": {\"duration\": 74.94, \"timestamps\": [[0, 15.74], [13.12, 46.84], [43.09, 74.94]], \"sentences\": [\"a girl is on a basketball court performing a routine with a baton.\", \" another girl is shown doing a separate baton routine.\", \" a boy is then shown performing on another court.\"]}, \"v_N2zoVF76Pgg\": {\"duration\": 186.06, \"timestamps\": [[0, 26.05], [31.63, 122.8], [124.66, 186.06]], \"sentences\": [\"Several ball players enter an indoor court.\", \" They engage in a game of soccer together.\", \" They kick the ball back and forth to each other.\"]}, \"v_fgIJnjuMyoc\": {\"duration\": 126.22, \"timestamps\": [[0, 21.46], [23.98, 37.24], [88.99, 94.67]], \"sentences\": [\"Boy wearing a wetsuit is surfing.\", \"  Boy wearing a t-shirt is holding a surfboard.\", \"  Boy is pictured with a trophy and his father.\"]}, \"v_gXffXyAkcHM\": {\"duration\": 13.47, \"timestamps\": [[0, 1.89], [1.89, 9.56], [9.9, 13.47]], \"sentences\": [\"A drawing is shown on the screen.\", \" A gymnast flips around a bar numerous times.\", \" She continues flipping over and over.\"]}, \"v_xYu5luMTycc\": {\"duration\": 116.47, \"timestamps\": [[0.58, 10.48], [4.08, 10.48], [6.99, 63.48], [36.69, 116.47]], \"sentences\": [\"A man sits on a sail boat in the river.\", \" Another sailboat is shown being driven.\", \" Several people are interviewed on the docks.\", \" More people sail in the river.\"]}, \"v__I1zlicAxpM\": {\"duration\": 13.21, \"timestamps\": [[0, 13.21], [0, 8.59], [8.59, 13.21]], \"sentences\": [\"Two men dressed in red are playing table tennis.\", \" The men make several shots back and forth on the table.\", \" One of the men begins to celebrate after making a good shot.\"]}, \"v_xMuC8lmVX3A\": {\"duration\": 224.03, \"timestamps\": [[0, 60.49], [59.37, 169.14], [131.06, 217.31]], \"sentences\": [\"A woman with no arms is seen speaking to the camera and holding up tools with her feet.\", \" She then begins cutting wrapping paper and wrapping it around a box.\", \" The woman wraps the present with her feet and shows it to the camera.\"]}, \"v_3joaQzU05MY\": {\"duration\": 40.26, \"timestamps\": [[0, 4.83], [9.86, 24.36], [27.18, 40.26]], \"sentences\": [\"A man is inside a department store.\", \" His child jumps across a hopscotch on the ground.\", \" The dad follows suit, showing the boy how to do it.\"]}, \"v_Yz7FjWlA6U4\": {\"duration\": 233.1, \"timestamps\": [[0, 50.12], [50.12, 233.1], [157.34, 167.83], [185.31, 233.1]], \"sentences\": [\"a big waterfall is shown in a large plain.\", \" people are rafting on rapids on river.\", \" men are walking in rocks by side of the river .\", \"  men gets in the calm part and are on the kayaks.\"]}, \"v_RAw8sshR51c\": {\"duration\": 86.43, \"timestamps\": [[1.73, 19.88], [8.64, 33.71], [27.22, 56.18], [62.23, 86.43]], \"sentences\": [\"a crowd is gathered in a large stadium.\", \" a man then takes center stage an lifts are heavily weighted barbell over his head.\", \" a score board is shown.\", \" the man drops the barbell and the crowd cheers.\"]}, \"v_4KE6dUAGZ94\": {\"duration\": 208.59, \"timestamps\": [[0, 70.92], [55.28, 137.67], [132.45, 170], [167.91, 208.59]], \"sentences\": [\"A man is seen rubbing his hands together in powder and walking over to a beam.\", \" He raises his arms up and begins spinning all around on the beam.\", \" He jumps down with his arms up and sits down while other people cheer for him.\", \" In the end his is shown standing on a podium hugging others and receiving a medal.\"]}, \"v_-qcPtBHelmc\": {\"duration\": 134.7, \"timestamps\": [[0, 32.33], [30.31, 96.31], [78.8, 132.68]], \"sentences\": [\"A dog is shown carrying a frisbee and a woman performing tricks.\", \" The woman and dog move all around the yard while performing tricks with a frisbee.\", \" They continue running around doing tricks through tunnels and poles.\"]}, \"v_xmW27Mi-jbg\": {\"duration\": 123.44, \"timestamps\": [[12.34, 59.87], [61.1, 74.68], [73.45, 84.56], [104.31, 112.33]], \"sentences\": [\"A person puts sticks into a pile.\", \" They light the sticks with a lighter.\", \" A fire starts in the fire pit they made.\", \" A man sits down in front of the fire and roasts a marshmallow.\"]}, \"v_73LjSLUZGZc\": {\"duration\": 130.5, \"timestamps\": [[0, 35.89], [35.23, 86.13], [82.87, 124.62]], \"sentences\": [\"A close up of a board is shown followed by several people throwing bowling balls.\", \" A crane pushes pins into a machine and breaks them up.\", \" A man bends down and grabs the debris and ends with a machine knocking over pins.\"]}, \"v_BGHQbw5HZ9Y\": {\"duration\": 204.25, \"timestamps\": [[0, 38.81], [41.87, 132.76], [124.59, 197.1]], \"sentences\": [\"Several clips are shown of people cheering and walking around on a beach.\", \" A man speaks to several women and plays a game with them.\", \" He rubs lotions on their butts when he wins and gets a smack when he loses.\"]}, \"v_BOVYcAeBxyY\": {\"duration\": 54.48, \"timestamps\": [[0, 5.72], [8.44, 33.5], [36.5, 54.48]], \"sentences\": [\"A boy is using a large rake to move leaves across the yard.\", \" He continues raking, then moves them into a pile at the base of a tree.\", \" Another boy joins in, and the first boy walks away.\"]}, \"v_onFddYAkyyc\": {\"duration\": 63.0, \"timestamps\": [[0.94, 36.22], [9.76, 14.49], [17.32, 62.68]], \"sentences\": [\"A man is seen pushing a mop along the floor.\", \" He then begins dancing with the mop.\", \" He continues to push the mop all along the floor while laughing to the camera.\"]}, \"v_gdYr4E3qobI\": {\"duration\": 100.5, \"timestamps\": [[3.01, 48.74], [48.74, 53.26], [62.31, 83.91], [83.41, 100.5]], \"sentences\": [\"A man drills a hole into the ice.\", \" He puts a fishing pole into the ice.\", \" He pulls a fish out of the hole and puts it on top of the ice.\", \" He picks up the fish in his hand.\"]}, \"v_mgNfayAiTQc\": {\"duration\": 11.15, \"timestamps\": [[0, 9.92], [9.98, 10.31], [10.7, 11.15]], \"sentences\": [\"An individual's arms and hands are shown spreading plaster on a floor.\", \" The individual stops spreading the plaster.\", \" The individual moves out of camera frame.\"]}, \"v_lUds16WLsHI\": {\"duration\": 221.66, \"timestamps\": [[0, 23.27], [24.38, 85.34], [64.28, 70.93], [100.85, 159.59]], \"sentences\": [\"A man is standing in a room talking.\", \" The hallways of a school is shown.\", \" The man gets into an elevator.\", \" He lays on a table and gets his legs waxed.\"]}, \"v_qxmrH20IA2Q\": {\"duration\": 5.38, \"timestamps\": [[0, 2.77], [0.73, 3.95], [3.55, 5.38]], \"sentences\": [\"The stones heat each other causing them to move forward.\", \" Three people are watching after the stones.\", \" Two people are brushing the front of the stone.\"]}, \"v_aGKySEwCMnI\": {\"duration\": 200.02, \"timestamps\": [[0, 200.02], [95.01, 97.01], [145.01, 152.01]], \"sentences\": [\"People are sitting on the beach making a sand castle.\", \" A black dog is shown walking on the beach.\", \" A person is running into the waves of the water.\"]}, \"v_jFZRNe7xFY8\": {\"duration\": 21.36, \"timestamps\": [[0, 2.67], [3.63, 8.01], [5.55, 8.01], [7.26, 21.36]], \"sentences\": [\"A shirtless man stands in an auditorium.\", \" He then lifts himself on the beam.\", \" He then stands on his hands.\", \" Then he lowers himself down.\"]}, \"v_euF5okzyaaA\": {\"duration\": 91.44, \"timestamps\": [[0, 20.12], [19.66, 69.5], [66.29, 90.07]], \"sentences\": [\"A group of people are seen riding horses down a beach as well as riding in a cart.\", \" They're shown riding all around the beach in many shots as well as kissing the horses and speaking to one another.\", \" The continue riding around and laughing with one another.\"]}, \"v__DlDtsPxdyY\": {\"duration\": 189.62, \"timestamps\": [[0, 36.03], [36.97, 117.56], [127.04, 185.82]], \"sentences\": [\"A woman is seen close up to the camera as well as several others.\", \" A pool table is shown with people making shots and others watching.\", \" The people continue to play with one another and end by shaking hands and two holding up a trophy.\"]}, \"v_w2HnFjJei7k\": {\"duration\": 35.2, \"timestamps\": [[0, 4.93], [5.46, 23.23], [24.11, 35.2]], \"sentences\": [\"a man is standing inside a small room.\", \" He is drinking from a bottle with a blue substance.\", \" He swishes it in his mouth, then spits it out making bubbles.\"]}, \"v_HEw5wIWVpWE\": {\"duration\": 236.03, \"timestamps\": [[2.36, 7.08], [7.08, 36.58], [36.58, 47.21], [47.21, 61.37], [61.37, 67.27], [67.27, 126.28], [126.28, 219.51], [188.82, 202.99], [224.23, 231.31]], \"sentences\": [\"The camera focuses on an older man's face.\", \" The camera focuses on two children interact with each other in a cluttered room.\", \" The camera follows the children walking into a different room.\", \" The camera focuses on a bug on the wall.\", \" The two children dance together.\", \" A close up of some sort of machinery is shown with the man or the children occasionally interacting with it.\", \" A closeup of the floor is shown with the man occasionally interacting with bugs on the floor or the machine.\", \" The two children talk to the camera.\", \" The two children interact with each other again.\"]}, \"v_06xJ8-Dg_j8\": {\"duration\": 124.18, \"timestamps\": [[0, 121.7], [6.21, 121.7], [11.8, 121.7], [102.45, 121.7]], \"sentences\": [\"A man is shown sitting at drums.\", \" He is wearing a pair of earphones.\", \" He starts drumming the drums.\", \" Eventually he finishes the song.\"]}, \"v_j05b3qqgRxw\": {\"duration\": 56.75, \"timestamps\": [[0, 56.75], [0, 56.18], [5.68, 56.75]], \"sentences\": [\"man is kneeling in front ofa woman and is making a tattoo on her right foot.\", \" woman wearing a jean skirt is sitting in front of a man getting a tattoo.\", \" woman is sitting on a chair in front of the woman in a tatto studio.\"]}, \"v_Rn5qprCWXFg\": {\"duration\": 89.82, \"timestamps\": [[0, 10.33], [10.33, 49.4], [44.01, 89.82]], \"sentences\": [\"a man is kneeling in sand.\", \" a man takes a shovel and begins filling a bucket with sand.\", \" a boy sitting across from the man begins pointing and instructing the man.\"]}, \"v_iLaye6q55qk\": {\"duration\": 237.32999999999998, \"timestamps\": [[0, 41.53], [28.48, 91.37], [64.08, 160.2], [145.96, 237.33]], \"sentences\": [\"a boy skate boards across a garbage can and falls down.\", \" another boy does skateboarding tricks down a flight of stairs.\", \" a 3rd boy skateboards through a street.\", \" several skateboarders are then shown skateboarding and falling.\"]}, \"v_AVIMCVsLrVw\": {\"duration\": 213.0, \"timestamps\": [[13.84, 27.69], [31.95, 199.15], [202.35, 203.41]], \"sentences\": [\"People are doing back flips on mats.\", \" A man is jumping and running on stilts.\", \" People are sitting on a bench wearing stilts.\"]}, \"v_yweAN9o4QYI\": {\"duration\": 35.18, \"timestamps\": [[0.35, 11.08], [7.92, 24.98], [25.5, 33.24]], \"sentences\": [\"A woman is seen painting the face of another.\", \" The woman speaks to the person while still painting.\", \" The woman continues to paint his face.\"]}, \"v_9xKOEE8Ni-Q\": {\"duration\": 79.58, \"timestamps\": [[0, 8.75], [12.33, 47.35], [57.69, 79.58]], \"sentences\": [\"A couple of camels are lying on the ground next to their riders.\", \" A man helps someone get on a camel and stand up.\", \" Then he guides them as they ride the camel around town.\"]}, \"v_CrWlXxqj4ac\": {\"duration\": 167.56, \"timestamps\": [[0, 20.94], [21.78, 82.1], [82.94, 149.96], [150.8, 167.56]], \"sentences\": [\"A person standing on a ladder puts lights on a large Christmas tree.\", \"  Others come and start placing lights on the tree too, the video is sped up.\", \" They deck the tree with ornaments and other decorations.\", \" Video of the final look of the Christmas tree is shown.\"]}, \"v_-VKGwqL83w8\": {\"duration\": 117.99000000000001, \"timestamps\": [[0, 31.86], [34.22, 75.52], [70.8, 117.99]], \"sentences\": [\"A close up of a plane is shown followed by people scuba diving under water.\", \" Shots of landscapes are shown that lead into people swimming along the water.\", \" More landscapes are shown and ends with water washing away sand.\"]}, \"v_ZWzPz-LX9Qg\": {\"duration\": 31.26, \"timestamps\": [[0, 31.26], [0.47, 31.26], [13.91, 15.63], [16.88, 17.97]], \"sentences\": [\"A man is wearing blue scrubs and a fanny pack.\", \" He is washing his hands in the sink.\", \" He throws his hands in the air.\", \" Someone comes out of a closet behind him.\"]}, \"v_k1aFJ-F8xTs\": {\"duration\": 27.05, \"timestamps\": [[0, 9.06], [7.44, 18.8], [15.96, 26.24]], \"sentences\": [\"A man is shown looking at the camera while holding a razor.\", \" He partially shaves his face and shows off to the camera.\", \" He finishes shaving his face while making funny faces.\"]}, \"v_ho8cKYrtufU\": {\"duration\": 176.31, \"timestamps\": [[0, 26.45], [31.74, 118.13], [119.01, 176.31]], \"sentences\": [\"Several views are shown of an archery set.\", \" A man is seen outside in the snow as he shoots.\", \" He takes several shots with the bow and arrow.\"]}, \"v_xhBvsWa0PCs\": {\"duration\": 25.38, \"timestamps\": [[0, 2.79], [3.68, 16.62], [17.77, 25.38]], \"sentences\": [\"A cowboy is released from a rodeo gate.\", \" He uses a lasso to catch a small calf.\", \" He dismounts to tie up the calf.\"]}, \"v_1RKExOpIGas\": {\"duration\": 215.29, \"timestamps\": [[0, 215.29], [1.08, 215.29], [0, 214.21]], \"sentences\": [\"men are riding motorbikes in a path.\", \" people in motorbikes are doing motocross in a dusty path.\", \" men are doing tricks and bi jumps on their motorbikes.\"]}, \"v_C0MIMsY6okw\": {\"duration\": 217.73, \"timestamps\": [[11.98, 47.9], [51.17, 78.38], [78.38, 90.36], [116.49, 188.34], [189.43, 211.2]], \"sentences\": [\"The small bowls of salt are arranged and limes are sliced in halves.\", \" The limes are juiced into a cup using a hand held press.\", \" The salt is poured into the cup from the small bowls.\", \" Water is added to the cup and more limes are squeezed in by hand.\", \" The cup is stirred with more water and a set of cups filled with the refreshment are seen.\"]}, \"v_uBls-XJdcBs\": {\"duration\": 14.17, \"timestamps\": [[0, 14.02], [0.92, 2.9], [3.26, 10.55], [10.55, 11.54], [11.62, 14.17]], \"sentences\": [\"Several children are playing pool soccer.\", \" A boy in a swimsuit walks in front of the camera.\", \" The game in the pool continues as the swimmers change direction.\", \" The ball is thrown to a swimmer.\", \" The swimmer catches the ball and throws it into the goal.\"]}, \"v_yVE4t-X5b-M\": {\"duration\": 114.64, \"timestamps\": [[0, 25.79], [26.37, 87.12], [87.7, 110.62], [110.62, 114.64]], \"sentences\": [\"Two young girls perform backflips in their home.\", \" They go outside and do several flips on the grass.\", \"  The girls finish by walking on their hands.\", \" A credit for the music is shown at the end.\"]}, \"v_bI1L2D_erOY\": {\"duration\": 184.18, \"timestamps\": [[0, 184.18], [25.79, 60.78], [60.78, 88.41]], \"sentences\": [\"woman is sitting on a couch interviewing another girl on a studio.\", \" woman is showing facial soaps and cleansers.\", \" people are on beach spreading sunscreen on their faces.\"]}, \"v_xUUmAdQJgjg\": {\"duration\": 5.83, \"timestamps\": [[0, 0.76], [1.11, 4.05], [5.33, 5.83]], \"sentences\": [\"A boy runs the length of a track.\", \" He takes a big jump into a sand pit.\", \" He jumps up and moves out of the way.\"]}, \"v_hokqvyeqhmg\": {\"duration\": 102.89, \"timestamps\": [[0, 96.2], [0, 102.89], [0, 102.37]], \"sentences\": [\"man is going down a rock wall hanging from harness.\", \" on the floor man is watching two men going down a rock wall.\", \" people are in big falls jumping to the floor.\"]}, \"v_aPjbJ4ZNcVQ\": {\"duration\": 225.03, \"timestamps\": [[1.13, 30.38], [39.38, 101.26], [40.5, 119.26], [60.76, 63.01], [46.13, 63.01], [69.76, 72.01], [73.13, 76.51], [131.64, 141.77], [146.27, 151.89], [154.14, 158.64], [162.02, 185.65], [160.89, 194.65], [173.27, 194.65], [198.02, 202.52], [204.77, 223.9]], \"sentences\": [\"A guy sits on a table talking with a child.\", \" The guy measures the ingredient on the table.\", \" The child pours the ingredient into the bowl and mixes with a spoon.\", \" The child scoops some of the flour with the mixing spoon and pours it on the table.\", \" The guy leaves and stands with a stick of butter.\", \" The child sticks their hand into the mixing bowl and puts that hand in their mouth.\", \" The guy opens an ingredient with scissors.\", \" The guy hands the child an egg which the child breaks into a measuring cup.\", \" The child and guy added the egg to the bowl.\", \" The guy mixes the ingredients in the bowl.\", \" The child waves with one hand.\", \" The guy uses silverware to put dough on a baking pan.\", \" The man hands the child the spoon silverware and the child gets a scoop from the bowl.\", \" The guy puts the baking pan into the oven.\", \" The child, guy, and dog watch the baking process through the oven window.\"]}, \"v_jExOw6W1I3E\": {\"duration\": 36.18, \"timestamps\": [[0, 7.6], [7.05, 21.53], [20.8, 36.18]], \"sentences\": [\"different people are introduced to the camera.\", \" the camera then stops at a man with a tall beer glass.\", \" the man drinks the entire  contents of the glass with one swallow.\"]}, \"v_kSdWy3subNE\": {\"duration\": 26.8, \"timestamps\": [[0, 9.78], [7.9, 14.34], [14.2, 26.8]], \"sentences\": [\"A man in a speedo walks down a diving board.\", \"  He begins jumping up and down.\", \"  He completes a dive and the next person goes up.\"]}, \"v_75cjK13ylJM\": {\"duration\": 222.87, \"timestamps\": [[0, 69.09], [72.43, 180.52], [180.52, 222.87]], \"sentences\": [\"A lady chef displays a Russian salad and gives the ingredients necessary to prepare the salad.\", \" The chef demonstrates the preparation process to make the salad and adds and mixes the ingredients.\", \" The chef slices orange slices and displays the finished salad.\"]}, \"v_SFfB6qvT5FI\": {\"duration\": 31.39, \"timestamps\": [[0, 15.38], [0.63, 31.39], [0, 31.39]], \"sentences\": [\"man is recording a video while is jumping on a bungee.\", \" man is in free fall holds to harness.\", \" man is jumping from a bridge in a city.\"]}, \"v_6UPfqdssD6g\": {\"duration\": 77.74, \"timestamps\": [[0, 2.72], [3.11, 61.8], [62.19, 77.74]], \"sentences\": [\"A kitchen in black and white is shown with the words \\\"Washing Dishes at The Church\\\" and \\\"Listen to #DeathSquad podcasts\\\" are printed on the cabinet doors.\", \" A man enters and starts washing dishes by hand in the sink.\", \" A podcast advertisement is shown.\"]}, \"v_SrKGO2Xu670\": {\"duration\": 209.57999999999998, \"timestamps\": [[0, 39.82], [39.82, 105.84], [105.84, 170.81], [170.81, 209.58]], \"sentences\": [\"A young woman dressed as a chef is in a restaurant preparing omelets on the small grill in front of her.\", \"After she flips the first,one she then flips the second one and hands it to the customer on the other side of the glass.\", \"While she was preparing the omelette,she had a bowl in her hand and then dumped the contents of it on to the grill and added in ingredients such as ham,pepper,and cheese.\", \"The process continues,and the woman cracks the eggs,finishes them and hands them to the customers,making sure to spray the grill after each use.\"]}, \"v_RLMvrl_vaqc\": {\"duration\": 20.39, \"timestamps\": [[0, 20.39], [0.31, 14.48], [18.35, 20.39]], \"sentences\": [\"People are having fun in a house.\", \" Then, a man holds a hose to smoke and he looks in trouble with smoke in his mouth.\", \" After, a woman talks with a microphone.\"]}, \"v_kx0ZSPOOFJ0\": {\"duration\": 9.57, \"timestamps\": [[0, 9.52], [0.1, 9.52], [0, 9.57]], \"sentences\": [\"man is doing a javelin throw in a large open field.\", \" man is running in a court getting ready to make a javelin throw.\", \" man is running in a court and make a javelin throw to a green grassy field.\"]}, \"v_p-l6as8o1f4\": {\"duration\": 123.53, \"timestamps\": [[0, 45.09], [45.09, 90.18], [90.8, 123.53]], \"sentences\": [\"A brown horse's hooves are seen walking over a trail of rocks and walking to a small body of water.\", \"All of a sudden,a small barn is shown and several people begin horse back riding throughout the wilderness.\", \"As they travel,the horse enters a body of water walking through the river and back into the forest of trees.\"]}, \"v_UhNgPK81rKM\": {\"duration\": 32.94, \"timestamps\": [[0, 3.46], [3.62, 15.32], [19.1, 32.94]], \"sentences\": [\"A crowded train is shown from the inside.\", \" A man is talking to someone else as the car begins to rock.\", \" A woman gets up and walks away.\"]}, \"v_FrV8r4l5ZUM\": {\"duration\": 147.56, \"timestamps\": [[0, 49.43], [39.84, 110.67], [104.77, 144.61]], \"sentences\": [\"A group of people are seen standing around a gymnasium with two girls walking in front.\", \" The girls perform a jump roping routine that leads into more girls joining in.\", \" The group of girls jump rope together and bow to the audience.\"]}, \"v_GfiqDJA-qqU\": {\"duration\": 190.75, \"timestamps\": [[0, 49.6], [43.87, 141.16], [115.4, 189.8]], \"sentences\": [\"A person is seen walking out onto a large stage.\", \" The man looks off into the distance and begins dancing around with a sword.\", \"  He continues moving around and ends by walking off stage.\"]}, \"v_KLr1ZVJDFDs\": {\"duration\": 228.93, \"timestamps\": [[0, 227.78], [0, 66.39], [66.39, 220.91]], \"sentences\": [\"Two young men ride skateboards down numerous paved streets in upper class residential neighborhoods.\", \"  Two young men begin to skateboard down the street of a residential neighborhood.\", \"  The two men travel on sidewalks bending at the knees and squatting as they skateboard and then stand again and ride the skateboard down streets again.\"]}, \"v_svG8RyP-OlU\": {\"duration\": 149.51, \"timestamps\": [[0, 33.64], [31.4, 116.62], [99.43, 148.77]], \"sentences\": [\"A man speaks to the camera while a woman behind him shovels snow.\", \" The man lifts up snow and throws it at the girl while the camera pans around.\", \" The man then begins shoveling while the girl throws snow up in the air.\"]}, \"v_aPEqCGdCsp0\": {\"duration\": 213.25, \"timestamps\": [[0, 30.92], [43.72, 158.87], [164.2, 213.25]], \"sentences\": [\"A tattoo artist is giving a man a tattoo on the leg.\", \" He fills in the spaces of chinese symbols with black ink.\", \" He wipes it clean, then continues tattooing.\"]}, \"v_2tlLq9qvG-c\": {\"duration\": 180.16, \"timestamps\": [[0, 35.13], [45.04, 129.72], [113.5, 175.66]], \"sentences\": [\"Various ingredients are laid out and leads into a person mixing them together in a bowl.\", \" The person bunches up dough and lays it out on a board.\", \" She cuts up the dough, lays it out, and puts it into containers.\"]}, \"v_lDJpGI4BZ8k\": {\"duration\": 204.88, \"timestamps\": [[0, 29.71], [31.76, 142.39], [112.69, 199.76]], \"sentences\": [\"A man walks into frame and holds up a harmonica.\", \" He then begins playing the instrument and moving his hands around.\", \" He pauses to speak to the camera and continues playing on the harmonica.\"]}, \"v_bvnXdr-Hre4\": {\"duration\": 89.14, \"timestamps\": [[0, 20.95], [24.96, 70.42], [70.87, 89.14]], \"sentences\": [\"a woman runs down a diving board.\", \" She bounces on the edge of the board.\", \" She jumps into the water, back flipping and forward jumping.\"]}, \"v_d950IKYTYY0\": {\"duration\": 64.34, \"timestamps\": [[0, 6.11], [6.11, 26.7], [26.06, 54.05], [54.37, 64.34]], \"sentences\": [\"A man dressed as Aladdin is standing outside in his shop on the side of the road serving ice cream.\", \"A young girl is standing on the side of the booth eating her ice cream as the man waits for his ice cream.\", \"The server then grabs a stick and starts taunting the man and acting like he is dropping the ice cream on the ground and not giving it to the man.\", \"However,its all an act and when he is done,the customer receives the ice cream and the server gives him a handshake and a kiss.\"]}, \"v_tS2d90ZGmeA\": {\"duration\": 137.57999999999998, \"timestamps\": [[0, 15.82], [15.82, 119.01], [121.07, 129.32]], \"sentences\": [\"A man and a woman run and exercise in a gym.\", \" The woman and the man talk in the gym and give advice if a person is cramped up.\", \" After, the woman and the man continue exercising.\"]}, \"v_QBI5ZH_cdik\": {\"duration\": 123.09, \"timestamps\": [[0, 23.39], [0, 123.09], [0, 122.47]], \"sentences\": [\"man is standing in front of the men in motorcycles holding a sign with numbers.\", \" men are doing motocross in a dusty path.\", \" people are in a motocross competition doing tricks on the dusty path.\"]}, \"v_OlH5t7EKOKM\": {\"duration\": 38.1, \"timestamps\": [[0, 3.62], [2.67, 27.43], [28.77, 38.1]], \"sentences\": [\"a girl is holding on to a balance bar.\", \" the girl begins swinging around the bar while performing splits and various tricks.\", \" the girl eventually swings off of the bar and lands a mount.\"]}, \"v_bOUtD3leN0E\": {\"duration\": 222.66, \"timestamps\": [[0, 222.66], [44.53, 87.95], [175.9, 208.18]], \"sentences\": [\"A woman in a red shirt is standing behind a woman sitting down.\", \" She starts brushing her bands up and puts a curler in her bangs.\", \"  She puts another curler behind the first one.\"]}, \"v_6skP3w9WDIM\": {\"duration\": 95.78, \"timestamps\": [[0.96, 31.61], [24.42, 73.27], [63.22, 92.43]], \"sentences\": [\"A group of women are seen sitting on the floor wrapping presents.\", \" More shots are shown of people wrapping presents and speaking to one another.\", \" More clips are shown of them wrapping.\"]}, \"v_3q_MOQNfSmA\": {\"duration\": 210.75, \"timestamps\": [[0, 195.99], [120.12, 122.23], [195.99, 199.15]], \"sentences\": [\"People are playing a game where they hit a ball with a stick.\", \" A man is seen sitting on the grass behind a goal.\", \" A m an is holding a bottle and a pitcher of juice.\"]}, \"v_phg81-nhqH4\": {\"duration\": 27.96, \"timestamps\": [[0, 9.09], [8.39, 20.97], [17.75, 27.26]], \"sentences\": [\"A man is seen kneeling on the ground and holding onto a machine.\", \" He pulls the machine against his body while looking to the camera.\", \" He continues using the machine on himself.\"]}, \"v__b_9BQvJ_v4\": {\"duration\": 114.06, \"timestamps\": [[0, 15.4], [16.54, 44.48], [27.37, 65.58], [64.44, 114.06]], \"sentences\": [\" a woman is standing in a park with two frisbees and a dog.\", \" the dog and the woman perform several tricks.\", \" a man, a dog, and a frisbee perform several tricks.\", \" this pattern is repeated with other performers.\"]}, \"v_YjxjsP6A5H8\": {\"duration\": 235.1, \"timestamps\": [[0, 78.76], [78.76, 129.31], [129.31, 215.12], [215.12, 235.1]], \"sentences\": [\"A man walks into a courtyard holding a child and proceeded to walk into a house starts building a structure.\", \" He moves outdoors where he continues to complete the structure with sanding and paint.\", \" He takes the structure to an open area where it is tested out by several skateboarders.\", \" Video ends with the closing credits and scenery shown on the screen.\"]}, \"v_j5mhELw7XaM\": {\"duration\": 126.27, \"timestamps\": [[0, 13.26], [18.31, 74.5], [83.97, 126.27]], \"sentences\": [\"A man shows his hand to the camera as he talks.\", \" He is then seen using a skateboard in different venues.\", \" He does several stunts and tricks on the skateboard.\"]}, \"v_4fQUWOuFjwQ\": {\"duration\": 122.18, \"timestamps\": [[0, 7.94], [16.49, 26.88], [29.94, 45.21], [45.21, 67.2]], \"sentences\": [\"A woman in a black shirt is standing in front of a field talking.\", \" People are playing a sports game on horses in a field.\", \" People are sitting on yellow blankets watching the game.\", \" The woman puts on many different hats.\"]}, \"v_z_ExqQ80T5g\": {\"duration\": 114.55, \"timestamps\": [[0, 19.47], [26.92, 90.49], [95.65, 114.55]], \"sentences\": [\"a man is sailing on a boat in the ocean.\", \" He is seen going through the rough waters with his sail flying in the wind.\", \" He is seen from different angles as he continues sailing.\"]}, \"v_LRhkbJ9dcP8\": {\"duration\": 157.53, \"timestamps\": [[0, 48.83], [35.44, 105.54], [100.82, 151.22]], \"sentences\": [\"A woman is seen sitting in a chair with a woman standing behind her holding an object.\", \" The woman then begins blow drying the other's hair while she bends down.\", \" She continues blow drying the hair and shows it off in the end.\"]}, \"v_0HhNhRExwSQ\": {\"duration\": 133.86, \"timestamps\": [[0, 33.47], [32.13, 95.71], [82.33, 131.19]], \"sentences\": [\"A man is seen putting chains on his body followed by many people walking down a cliff.\", \" A man speaks to the camera while more people walk and begin climbing up a mountain.\", \" More people speak to each other while climbing and sitting down eating food.\"]}, \"v_x8AR0FD5Jqo\": {\"duration\": 196.26, \"timestamps\": [[10.79, 13.74], [13.74, 196.26], [155.04, 160.93]], \"sentences\": [\"People are lined up to race bicycles.\", \" They race bicycles around the track.\", \" A man is standing on the track watching them.\"]}, \"v_RpgTxW7lYJM\": {\"duration\": 221.98, \"timestamps\": [[0, 203.11], [203.11, 218.65], [218.65, 221.98]], \"sentences\": [\"An individual's hand is shown drawing something on a piece of paper in sped up video.\", \" The individual moves out of the way to allow the camera to capture the completed image on its own.\", \" The image fades to a thank you text on white screen.\"]}, \"v_AZx_lm2XLHk\": {\"duration\": 48.44, \"timestamps\": [[0, 10.9], [12.11, 32.69], [29.06, 47.71]], \"sentences\": [\"A large track is shown with a man standing ready.\", \" The man jumps over a bar and celebrates.\", \" His jump is shown again as well as him walking away.\"]}, \"v_RfchfRzuV8I\": {\"duration\": 52.15, \"timestamps\": [[0, 11.73], [11.47, 33.9], [29.47, 50.33]], \"sentences\": [\"A man is seen walking into frame holding onto a set of bag pipes.\", \" The man then begins playing the bag pipes in front of the camera.\", \" He continues to play and then walks out of frame.\"]}, \"v_Wzo3_EYrfAY\": {\"duration\": 41.96, \"timestamps\": [[0, 41.96], [26.43, 41.96], [10.07, 41.96]], \"sentences\": [\"A man is being recorded while jumping up and down on jumping boots.\", \" He goes over to a pole and jumps where he is able to get more leverage on his jumps.\", \" Several people come and go in the background as he is performing his jumps.\"]}, \"v_lKDTjsH9XtU\": {\"duration\": 232.64, \"timestamps\": [[0, 33.73], [38.39, 152.38], [160.52, 232.64]], \"sentences\": [\"A small slide is shown in a back yard.\", \" A woman walks over to the slide.\", \" She talks and shows how it is used.\"]}, \"v_dKiy-7TZqeI\": {\"duration\": 17.53, \"timestamps\": [[0, 17.53], [0.61, 4.47], [3.33, 7.98], [6.14, 15.78]], \"sentences\": [\"A rodeo is attended by several people.\", \" A man comes out on a horse.\", \" He ropes a small cattle.\", \" He then ties it up in rope.\"]}, \"v_sSVG3g2iKL8\": {\"duration\": 144.2, \"timestamps\": [[0, 40.37], [40.37, 86.52], [86.52, 131.22], [131.22, 144.2]], \"sentences\": [\"About ten people dressed in all blue and black uniforms are outside of a yellow building holding their instruments varying from wind pipes and different types of drums.\", \"The bass drum begins hitting his drum and then the band begins playing their part song in unison.\", \"As they are playing,people continue to walk by while a crowd of students sit in blue chairs to the left of them and watch.\", \"Towards the end of their performance,a man comes in the middle of the circle and begins taking pictures of the boys as they play.\"]}, \"v_kyafh7Ownao\": {\"duration\": 39.96, \"timestamps\": [[5.59, 11.79], [11.39, 18.38], [18.78, 32.97], [32.77, 35.57]], \"sentences\": [\"A car drives towards a car wash with other cars driving by in the background.\", \" Short scenes of various parts of the car wash are shown.\", \" People are shown washing several different cars.\", \" The car wash's sign is shown.\"]}, \"v_CFBmZ1g16H8\": {\"duration\": 93.32, \"timestamps\": [[0, 23.33], [20.53, 64.39], [42.46, 92.85]], \"sentences\": [\"A person is seen swimming under water using scuba gear.\", \" The person kicks their feet continuously.\", \" The man continues to kick their legs and demonstrate how to swim.\"]}, \"v_td15Nx9J0a4\": {\"duration\": 142.34, \"timestamps\": [[0, 15.66], [20.64, 53.38], [54.09, 63.34], [64.05, 138.07]], \"sentences\": [\"A man throws a heavy ball from a circle and it crosses the goal lines.\", \" The referee calls a penalty on him for touching the ground and the man gets very upset and is protesting.\", \" There is a replay shown.\", \" The man walks around afterwards upset and picks up a towel pacing around afterwards.\"]}, \"v_8UXuHMmOYGI\": {\"duration\": 60.26, \"timestamps\": [[0, 6.63], [10.85, 39.17], [43.08, 60.26]], \"sentences\": [\"A group of tools and knives are on a table top.\", \" A man uses a sharpener to sharpen a knife.\", \" He rakes it over the sharpener several times.\"]}, \"v_oNpkjfX2rTc\": {\"duration\": 58.05, \"timestamps\": [[0, 20.61], [20.9, 47.89], [47.6, 58.05]], \"sentences\": [\"A bald headed man appears behind a table dressed in a chef's attire.\", \"After he finishes talking,he then grabs a small grey container,puts a clear lid on it and begins cutting through the plastic in a delicate fashion.\", \"The man then takes out the knives and places them on the black table and continues talking.\"]}, \"v_PJysE5c1WDs\": {\"duration\": 40.47, \"timestamps\": [[0, 40.47], [0, 39.26], [0, 40.07]], \"sentences\": [\"man is in a gym lifting weight.\", \" man walks in the roofed gym andis weightlifting.\", \" sweaty man is lifting weight in an empty room.\"]}, \"v_WpKQV53ENHE\": {\"duration\": 206.56, \"timestamps\": [[0, 11.36], [11.36, 38.21], [38.21, 170.41], [170.41, 206.56]], \"sentences\": [\"waterfall is shown in front of a rock wall on a river.\", \" people are waking on a bridge and a man standing on the edge of the bridge make a jump to the river.\", \" people are kayaking on the rapids and fell off and the kayak gets stuck in a rock whil epeople in water go with the flow.\", \"men are kayaking and a man makes a high jump to the river.\"]}, \"v_s43eZJ0hy44\": {\"duration\": 91.49, \"timestamps\": [[0, 90.11], [49.86, 52.61], [90.57, 91.49]], \"sentences\": [\"A number of children play a dodgeball type game on a grassy field.\", \" One of the children falls down while going after the ball.\", \" The camera pans downwards to show nearby grass.\"]}, \"v_0yi-nkwLEnI\": {\"duration\": 115.17, \"timestamps\": [[0, 13.24], [10.94, 36.85], [29.94, 74.29], [71.98, 115.17]], \"sentences\": [\"a man holds a tattoo needle on a woman's arm.\", \" the woman begins talking to the camera.\", \" the man and woman laughs.\", \" the man finishes the woman's tattoo.\"]}, \"v_b4DhjwkO-b4\": {\"duration\": 65.75, \"timestamps\": [[0, 7.89], [8.22, 48.98], [36.49, 65.75]], \"sentences\": [\"A group of people stand against a wall.\", \"  Three of them run and start playing dodgeball.\", \"  A few catch and keep throwing.\"]}, \"v_xb8iMASjw1A\": {\"duration\": 131.96, \"timestamps\": [[0, 27.05], [9.24, 64.66], [22.43, 83.79], [65.98, 131.96]], \"sentences\": [\"The people are snowboarding over the slope.\", \" The snowboarders are skating on the ramps, while audiences are watching.\", \" The black man is talking to the camera then ate some ice and continue to talk.\", \" The black man is busy looking at his phone while the man with long hair is talking to the camera.\"]}, \"v_SwbvD590YtQ\": {\"duration\": 60.26, \"timestamps\": [[0, 14.16], [12.05, 37.96], [32.84, 57.85]], \"sentences\": [\"Two men are seen pulling out a boat as well as clips of a boat on the water.\", \" The men pull out more objects in a shed while the boat rides along.\", \" They pull out the last tubes as more shots are shown of the boat.\"]}, \"v_993xtlhuVII\": {\"duration\": 180.47, \"timestamps\": [[0, 57.75], [43.31, 130.84], [106.47, 166.93]], \"sentences\": [\"A man is shown speaking to the camera holding a violin.\", \" The man then begins playing the instrument while looking down.\", \" He continues playing and pauses to speak to the camera.\"]}, \"v_l0btLzdAeuM\": {\"duration\": 151.57999999999998, \"timestamps\": [[0, 54.57], [48.51, 102.32], [101.56, 146.27]], \"sentences\": [\"Two men are seen playing a game of fooseball while showing a close up of the table.\", \" Several shots are shown of the table as well as the men playing.\", \" The men continue to play with one another while moving their hands around.\"]}, \"v_Ez5uEh7YyIM\": {\"duration\": 147.14, \"timestamps\": [[2.94, 46.35], [46.35, 52.97], [52.97, 70.62], [70.62, 136.1], [136.1, 147.14]], \"sentences\": [\"A man talks to the camera while standing next to a pool, interspersed with short scenes of an individual swimming in the pool.\", \" A different man wraps something around his ankles.\", \" The man is shown swimming with fins and the object wrapped around his ankles.\", \" The first man talks to the camera again while occasionally making gestures with his arms, still interspersed with short scenes of an individual swimming in the pool.\", \" A series of credits text a logo on a black screen are shown.\"]}, \"v_OS-h1xzAZno\": {\"duration\": 79.92, \"timestamps\": [[0, 11.19], [11.19, 57.55], [59.54, 79.92]], \"sentences\": [\"a gymnast mounts a beam in a gym.\", \" She performs on the beam, flipping forward and back again.\", \" She dismounts, arms put in the air.\"]}, \"v_fKDl_CnA8nY\": {\"duration\": 128.92, \"timestamps\": [[0, 4.51], [5.16, 54.79], [56.08, 113.45], [114.74, 128.92]], \"sentences\": [\"An intro is shown that says \\\"McGill Music com Sax School\\\".\", \" There is a man playing a saxophone, and then he talks for awhile.\", \" He demonstrates a few notes and how you can change the pitch.\", \" At the end the logo shows again with a website.\"]}, \"v_3CeZS6-0NfU\": {\"duration\": 18.02, \"timestamps\": [[0, 18.02], [0.99, 11.44], [15.41, 17.21], [16.67, 18.02]], \"sentences\": [\"A guy is indoors working in his garage.\", \" A guy is welding a brown, flat object.\", \" The guy lifts his black helmet.\", \" The guy speaks and smiles slightly.\"]}, \"v_-8awLlFLcQc\": {\"duration\": 161.12, \"timestamps\": [[0, 37.06], [37.06, 90.23], [90.23, 111.18], [111.18, 122.45], [122.45, 136.15], [136.15, 161.12]], \"sentences\": [\"presentation of an oreck is shown.\", \" the man open the vacuum and check it and put it on the back and seat it in place.\", \" man is vacuuming the carpet in an office and the inside of a trash bin.\", \" the the man change the head and vacuum an office chair.\", \" the  man is cleaning the ceiling slit.\", \" the man put the vcuum on the floor and take out the bag and shows the container.\"]}, \"v__AKzq9X1Aik\": {\"duration\": 26.49, \"timestamps\": [[0, 1.85], [1.99, 5.96], [6.23, 15.5], [15.76, 23.31], [23.58, 26.49]], \"sentences\": [\"A man stands on front the parallel bars holding it.\", \" The man starts to advance holding on his hands.\", \" The man stops in the middle of the parallel bars, raise his legs and after continues advancing.\", \" Then, the man stops at the end of the bars, again he raises his legs, then exercises up and down.\", \" Next, the man jumps on the mat.\"]}, \"v_4ImpZRtbzYw\": {\"duration\": 192.49, \"timestamps\": [[0, 53.9], [46.2, 132.82], [84.7, 158.81], [155.92, 186.72]], \"sentences\": [\"A woman is seen speaking to the camera and shows off a wooden table.\", \" She then sands down the table and dips a brush into paint.\", \" She then paints all around the table while sanding more and finally laying down wax.\", \" She measures the table and cuts out paper to put on top and shows off the table in the end her speaking more.\"]}, \"v_gmnwqOPcOo0\": {\"duration\": 136.4, \"timestamps\": [[0, 130.26], [0, 4.77], [4.77, 55.92], [55.92, 105.71], [104.34, 136.4]], \"sentences\": [\"A woman breaks a Guiness book of world records by hula hooping with 107 hula hoops in front of an audience and then giving an interview.\", \" The interior of an event showcase is shown including the signs involved.\", \" A woman piles hula hoops around another woman on a red and white stage.\", \" The woman surrounded by hula hoops begins to hula hoop for brief seconds before she stops and shakes hands with a Guiness Book record keeper.\", \" The woman smiles at the achievement and then does an interview.\"]}, \"v_W8XwSNt8P5A\": {\"duration\": 110.81, \"timestamps\": [[0, 21.61], [27.7, 65.38], [69.81, 110.81]], \"sentences\": [\"A man is on his knees inside a gym.\", \" He does several different moves.\", \" He is showing different ways to stretch and exercise.\"]}, \"v_ot-Y1sa-ujc\": {\"duration\": 136.09, \"timestamps\": [[0, 33.34], [18.37, 83.7], [88.46, 136.09]], \"sentences\": [\"a woman is standing on a bridge in front of a crowd.\", \" a man is strapping a woman in a harness.\", \" the woman then bungee jumps off the bridge.\"]}, \"v_hGziyfXmotc\": {\"duration\": 227.3, \"timestamps\": [[0, 62.51], [55.69, 157.97], [138.65, 215.94]], \"sentences\": [\"A close up of a violin is seen with a person's hands moving all around.\", \" The man begins playing the violin while moving his hands up and down.\", \" He continues playing the instrument while pausing to speak to the camera.\"]}, \"v_kNUpypAppjk\": {\"duration\": 46.53, \"timestamps\": [[0.23, 12.8], [14.43, 31.64], [26.99, 44.67]], \"sentences\": [\"A man is seen holding a heavy set of weights.\", \" He lifts the weight up over his head then back down again.\", \" He does this several more times.\"]}, \"v_r1y_ASZDdEo\": {\"duration\": 188.31, \"timestamps\": [[0, 25.42], [35.78, 103.57], [106.4, 188.31]], \"sentences\": [\"A group of people are walking across a field and talking.\", \"  A couple of teams engage in a game of cricket on the field.\", \" They swing their bats, hitting the ball and throwing it.\"]}, \"v_bY-4XBIGiwI\": {\"duration\": 182.93, \"timestamps\": [[0, 10.98], [21.95, 111.59], [115.24, 182.93]], \"sentences\": [\"a boy spins around inside a gym.\", \" He is using a pair of nunchucks for exercise.\", \" He jumps and spins around the nunchucks.\"]}, \"v_E0niuPtg16o\": {\"duration\": 65.02, \"timestamps\": [[0, 8.13], [9.1, 39.98], [40.96, 62.74]], \"sentences\": [\"Four people are seen standing on a basketball court.\", \" One begins shooting baskets while the others grab balls for her.\", \" Another man steps into frame while the girl continues to practice.\"]}, \"v_Cc_DmDsXm6M\": {\"duration\": 22.62, \"timestamps\": [[0, 19.34], [1.7, 19.34], [17.08, 22.62]], \"sentences\": [\"The person is wakeboarding on the water with costume on.\", \" The mascot is waving as he surf the water.\", \" The mascot let go of the harness and fell in the water, the head of the mascot fell off showing the man's head.\"]}, \"v_KbEoaYhMZ6c\": {\"duration\": 44.61, \"timestamps\": [[0, 16.06], [15.84, 18.96], [19.85, 36.35], [36.35, 44.61]], \"sentences\": [\"A man presses a tool back and forth over a carpet at the seam at the wall.\", \" He stops and put the tool down.\", \" He turns the tool and uses the cutting edge to slice the carpet at the wall seam and tears off the cut strip.\", \" He turns the tool around and uses the roller end to tuck the carpet in at the wall seam.\"]}, \"v_o0gdMKlKLcU\": {\"duration\": 17.09, \"timestamps\": [[0.34, 6.32], [2.73, 6.32], [5.64, 16.83]], \"sentences\": [\"A person is seen bending down before a wall.\", \" The man sprays a large hose against the wall.\", \" Afterwards the camera pans around to a small group of men making plaster.\"]}, \"v_-UwqKYkkKlU\": {\"duration\": 64.0, \"timestamps\": [[0, 9.28], [9.28, 58.56], [28.8, 40], [58.56, 64]], \"sentences\": [\"A woman comes onto the screen and introduces a fitness video.\", \" She shows herself teaching a spin class with several other students.\", \" She also shows herself teaching a core strength exercise.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_IEqnfSiCIXc\": {\"duration\": 198.72, \"timestamps\": [[0, 11.92], [11.92, 47.69], [49.68, 64.58], [67.56, 122.21], [123.2, 148.04], [149.04, 171.89]], \"sentences\": [\"A young man skateboards in the street, then enters in a shop.\", \" Young men skateboard in different parts of a city.\", \" After, a young men wearing black clothes flips his skateboard and jumps.\", \" Young man skates on the street passing over rails and flipping and turning.\", \" A juvenile skates on a big court, he pass over rails without falling.\", \" Other person skates on a park, then pass over the rails and turning and flipping teh skateboard.\"]}, \"v_xor90CAOc94\": {\"duration\": 73.71000000000001, \"timestamps\": [[0, 9.95], [14.37, 54.54], [58.6, 73.71]], \"sentences\": [\"The roof top of a house is shown as it is damaged over time.\", \" We then see several images of the after repair process.\", \" Then we see an advertisement for the group siding and remodeling the house.\"]}, \"v_gh0GD6OvLHE\": {\"duration\": 16.21, \"timestamps\": [[0, 3.48], [3.65, 8.27], [8.02, 16.21]], \"sentences\": [\"A woman is seen sitting in the shower with her leg out.\", \" She shaves her legs and looks to the camera smiling.\", \" She runs out of the bathroom and a boy pushes her.\"]}, \"v_SwIxaPdYIJE\": {\"duration\": 25.12, \"timestamps\": [[0, 25.12], [0.75, 23.62], [3.01, 12.06], [10.68, 19.09], [21.1, 25.12]], \"sentences\": [\"There are two teams playing lacrosse in a open field.\", \" The teams are represented by blue shirts and white shirts they're wearing.\", \" A player from the blue team aggressively chases the ball with his lacrosse stick and tries to hit a goal.\", \"  His team member tries to follow the ball and keep it away from the opponent team player.\", \" After the blue team scores a goal, they get ready for another round of the game.\"]}, \"v_vjUx3k63oZI\": {\"duration\": 72.93, \"timestamps\": [[0, 8.39], [9.85, 36.47], [40.11, 72.93]], \"sentences\": [\"A man is standing on a bridge and talking to the camera.\", \" He puts on a bunch of gear.\", \" He bungee jumps off the side of the bridge.\"]}, \"v_od9EdcDcByA\": {\"duration\": 224.82, \"timestamps\": [[0, 70.82], [61.82, 160.74], [142.76, 215.82]], \"sentences\": [\"A shot of balls are shown as well as clips of people surfing and walking around.\", \" More people are seen playing paintball as others speak to one another as well as surf.\", \" The video continues on with several shots of people playing paintball that transitions into people skateboarding and walking around.\"]}, \"v_P6cR-26pTSY\": {\"duration\": 171.13, \"timestamps\": [[0, 7.7], [7.7, 159.15], [159.15, 171.13]], \"sentences\": [\"A number of individuals stand marching in place on either side of a courtyard.\", \" The individuals walk into the center of the courtyard and do some sort of synchronized routine with stepping platforms.\", \" The individuals finish their routine and walk back to the sides of the courtyard.\"]}, \"v_3abD7z6vRPM\": {\"duration\": 78.03999999999999, \"timestamps\": [[0, 2.73], [3.12, 5.07], [5.46, 74.53], [17.95, 75.7], [76.09, 78.04]], \"sentences\": [\"A black screen appears with grey 3 dimensional letters showing a website address sitting on a white reflective base.\", \"  Next a black screen with white letters appears showing who is in the video and what the video is about.\", \"  A man and woman are in a blue weight room as the man lifts some weights and does a squat snatch as a woman  looks on.\", \"  The woman is instructing the man on how to do the exercise correctly.\", \"  They high five each other and the screen goes black with the three dimensional letters as well as copy right text below.\"]}, \"v_iSH43hQoxio\": {\"duration\": 184.92, \"timestamps\": [[0, 25.89], [25.89, 87.84], [87.84, 184.92]], \"sentences\": [\"These shirtless men are standing in the hot sun while they dig up dirt from the ground.\", \"  Some of them are having not so nice thoughts in their minds and aloud as they dig and stare at a beautiful woman.\", \" The men talk to each other and even praise God when the woman does a move that they've wished for themselves.\"]}, \"v_fxgbk_Kk4Rw\": {\"duration\": 125.83, \"timestamps\": [[6.92, 23.28], [23.91, 28.94], [28.94, 32.09], [32.72, 66.69], [67.32, 78.01], [78.01, 86.82], [87.45, 95.63], [96.26, 114.5]], \"sentences\": [\"Two vacuum cleaners are shown side by side.\", \" One of the vacuum clears is shown vacuuming a wooden floor.\", \" The other vacuum is shown with its attachment parts laid out in front of it.\", \" The second vacuum is shown using its attachment parts to vacuum various things.\", \" A woman places the attachment parts into holders on the vacuum cleaner.\", \" The woman detaches and holds up the filter on the vacuum cleaner.\", \" The woman stores the vacuum cleaners in a closet.\", \" The two vacuum cleaners are shown once again side by side with text showcasing their features.\"]}, \"v_9_zC7CdvYu4\": {\"duration\": 91.81, \"timestamps\": [[0.46, 87.68], [0.46, 7.34], [7.8, 87.68]], \"sentences\": [\"A man demonstrates how to snowboard and do tricks on the snowboard in a snow covered outdoor, forest like environment.\", \"  A man talks to the camera from a snow slope while wearing a green helmet.\", \"  The man begins to snowboard and do tricks and stunts from the snowboard including complete jumps in the air and flips in the air while wearing a snowboard.\"]}, \"v_wZJeEV6sZXE\": {\"duration\": 38.64, \"timestamps\": [[0, 1.93], [2.32, 22.8], [22.99, 38.64]], \"sentences\": [\"A woman character walks holding a cup, and a red shape above her head follows her.\", \" Then, the character sits on a toilets and drinks from a cup.\", \" Then the woman characters stands, washes her hands and dry then on hes pants.\"]}, \"v_8E8bytYxwAA\": {\"duration\": 29.03, \"timestamps\": [[0, 5.08], [6.68, 19.59], [20.17, 29.03]], \"sentences\": [\"A female gymnast is spinning around a bar in a gym.\", \" She spins around the bar multiple times before dismounting.\", \" She lands on the mat, arms in the air.\"]}, \"v_TscC5kgurqY\": {\"duration\": 170.13, \"timestamps\": [[0, 21.27], [33.18, 119.94], [122.5, 170.13]], \"sentences\": [\"A man is shown speaking with another man.\", \" A table is covered in an array of food items in plates and bowls.\", \" The chef talks about the food, and how to use it in an omelette.\"]}, \"v_kfwwya1qzXM\": {\"duration\": 209.31, \"timestamps\": [[0, 51.28], [51.28, 139.19], [139.19, 209.31]], \"sentences\": [\"A young man is sitting down with a guitar in his lap preparing to play.\", \"As he begins,a small rectangle appears in the upper right corner of the video and shows the strings as well as the note he is playing.\", \"The guy takes a pause and then begins playing a song and the lyrics to the song appears at the bottom as well as the notes above them.\"]}, \"v_m4EcgRjCpi8\": {\"duration\": 186.04, \"timestamps\": [[0, 11.16], [11.16, 171.16], [171.16, 186.04]], \"sentences\": [\"An introduction comes onto the screen for a challenge involving a rowing machine.\", \" A man begins to row on a rowing machine as several people watch him work out.\", \" The video ends with the closing captions shown on the screen.\"]}, \"v_MRxC-Ygp4go\": {\"duration\": 127.32, \"timestamps\": [[0, 17.19], [5.09, 19.73], [5.09, 127.32], [34.38, 127.32]], \"sentences\": [\"A women is driving a car.\", \" She is wearing a cowboy hat.\", \" There is then a shot of the ocean.\", \" Several people are surfing waves.\"]}, \"v_agM7yjqVKo0\": {\"duration\": 63.18, \"timestamps\": [[0.95, 20.53], [19.9, 49.28], [47.07, 62.23]], \"sentences\": [\"A group of people are seen standing around a court with one passing a basketball.\", \" They pass the ball to one another and one makes a basketball.\", \" They continue speaking and shooting hoops.\"]}, \"v_fyxXJJhCGBQ\": {\"duration\": 40.54, \"timestamps\": [[5.47, 38.72], [8.51, 9.53], [8.51, 40.54]], \"sentences\": [\"Two men are standing in the woods.\", \" They pick up wood and set it on a tree stump.\", \" They chop the wood with ax's.\"]}, \"v_YrdpvaBDDlE\": {\"duration\": 77.69, \"timestamps\": [[0, 21.37], [19.42, 60.21], [49.34, 74.97]], \"sentences\": [\"A group of people are seen moving around under a tent cooking food.\", \" A man chops up ingredients and pours them into a bowl.\", \" Another person walks in and out of frame as he continues mashing up the food.\"]}, \"v_TlDh_RZ3HDk\": {\"duration\": 145.32999999999998, \"timestamps\": [[0, 18.89], [13.81, 67.58], [65.4, 145.33]], \"sentences\": [\"A woman in green shirt is twisting the other woman's hair.\", \" The woman in green curl the other woman's hair and then braide the side.\", \" The woman styled the girl's hair into an updo.\"]}, \"v_HatKNbfqL-k\": {\"duration\": 45.72, \"timestamps\": [[0, 5.03], [8.23, 25.15], [29.49, 45.72]], \"sentences\": [\"A man is in a room of a house.\", \" He is playing a large wooden flute.\", \" His fingers are shown changing over the holes to create different sounds.\"]}, \"v_3JrxcNxNMU4\": {\"duration\": 31.65, \"timestamps\": [[0.16, 30.86], [3.32, 18.99], [3.32, 31.33]], \"sentences\": [\"This woman is playing a solo game of croquet.\", \"  She pushes the blue ball through the thin white rings and the ball lightly hits the wooden pole.\", \" There is also two other people walking around and we can't see anyone's faces, even the person who is playing croquet.\"]}, \"v_h4Cf5u1j0TU\": {\"duration\": 101.72999999999999, \"timestamps\": [[0, 20.35], [19.33, 73.24], [66.12, 97.66]], \"sentences\": [\"A woman is seen laughing to the camera and holding a baby in her lap.\", \" She teases the baby with ice cream and eats it herself while laughing.\", \" She occasionally feeds to baby ice cream as well as herself.\"]}, \"v_4qZckue0QU4\": {\"duration\": 23.38, \"timestamps\": [[0, 2.22], [2.22, 9.82], [9.82, 23.38]], \"sentences\": [\"First, the woman pushes the stick through her fingers while she stands up.\", \" Then she bends down to aim the stick towards the white ball on the table.\", \" When she hits the white ball, it sends the rest of the balls into crazy directions and a few of them go into the holes.\"]}, \"v_vJiOYQE9tts\": {\"duration\": 136.32999999999998, \"timestamps\": [[0, 8.86], [8.86, 26.58], [26.58, 42.94], [42.94, 70.21], [70.89, 110.42], [110.42, 117.92], [118.6, 136.33]], \"sentences\": [\"We see an opening title screen.\", \" A lady wipes a horse with a towel and is standing in the stable talking next to the horse.\", \" We see a title and images of horses then a title screen.\", \" We see the lady clip a horse with an electric shaver with titles on the screen.\", \" We see a title then the girl shave the horses beard with a purple razor.\", \" The girl walks a white horse across the screen and we see the Horse grooming product.\", \" The ladies speak and we see the closing screen.\"]}, \"v_jVoj7XaUoU8\": {\"duration\": 162.24, \"timestamps\": [[0, 162.24], [21.9, 121.68], [151.69, 162.24]], \"sentences\": [\"A girl does a ballet routine on stage.\", \"  She moves around gracefully, jumping and spinning.\", \"  She runs off stage at the end.\"]}, \"v_1Vu0bzAKL8Q\": {\"duration\": 56.01, \"timestamps\": [[0, 5.32], [5.32, 31.92], [31.92, 56.01]], \"sentences\": [\"The title of the fence appear and a yellowish brown fence is shown.\", \" The animated construction of fence followed by the mechanism of airflow through the build fence.\", \" A picture of a man and his name appear and some more information regarding the fence.\"]}, \"v_o8qR72Ymru8\": {\"duration\": 165.56, \"timestamps\": [[0, 33.11], [26.49, 105.96], [100.99, 165.56]], \"sentences\": [\"a boy is standing by a bunch of trees.\", \" the boy begins kicking leaves.\", \" the boy then warms his hands and builds a tent.\"]}, \"v_3ImTO0bzXPA\": {\"duration\": 190.31, \"timestamps\": [[0, 48.53], [46.63, 128.46], [108.48, 188.41]], \"sentences\": [\"A woman is seen sitting in a chair with a man rubbing her face.\", \" The man then puts a dot on her face and begins putting in a piercing.\", \" The camera zooms in as the man pierces her face and puts a rag on afterwards.\"]}, \"v_mzbhfWgJ2sU\": {\"duration\": 200.25, \"timestamps\": [[18.02, 198.25], [41.05, 78.1], [95.12, 181.23], [178.22, 198.25]], \"sentences\": [\"Two women are standing in a kitchen.\", \" A woman peels a fruit in her hand.\", \" She cuts up vegetables and put them in a bowl.\", \" They eat the mixture with forks.\"]}, \"v_T7Mg-Owb14Y\": {\"duration\": 121.26, \"timestamps\": [[0, 13.34], [21.22, 62.45], [66.69, 121.26]], \"sentences\": [\"A man is standing inside a white room.\", \" He is holding a large pole as he talks.\", \" He shows the camera the different positions necessary for using the pole.\"]}, \"v_JfF80Uho8U8\": {\"duration\": 143.27, \"timestamps\": [[0, 143.27], [21.49, 63.75], [60.17, 81.66], [81.66, 107.45], [108.88, 131.09], [132.52, 143.27]], \"sentences\": [\"There's a person in a commercial kitchen wearing a gray shirt and a gray hat demonstrating and talking about how to make a sandwich.\", \" He begins by slicing a hoagie bread into two pieces and applying some mayonnaise on the slices.\", \" Then he puts cheese slices and cold lunch meat slices inside the sandwich, followed by a few slices of salami.\", \" Then he tops it with chopped lettuce and a few tomato and pickle slices, some jalapenos and onions.\", \" Then he seasons it with pepper and some spicy sauce over the meat.\", \" He then proudly shows the finished sandwich that is loaded with meat and cheese.\"]}, \"v_kuMevlNUDCs\": {\"duration\": 144.17000000000002, \"timestamps\": [[0, 15.86], [21.63, 103.8], [109.57, 144.17]], \"sentences\": [\"A girl is standing inside a kitchen.\", \" She dances around while washing the dishes.\", \" Another girl joins her, and makes a phone call while they talk.\"]}, \"v_E9HbfcT1ZWM\": {\"duration\": 153.42000000000002, \"timestamps\": [[0.77, 28.38], [33.75, 104.32], [109.69, 152.65]], \"sentences\": [\"A camera pans all around landscapes and leads into a woman climbing onto a rope.\", \" A man speaks to the camera and shows several clips of people walking on rope across a cliff.\", \" He continues speaking as more people walk and bounce up on the rope.\"]}, \"v_NYRlfaKwTag\": {\"duration\": 170.92000000000002, \"timestamps\": [[0, 170.92], [9.4, 170.92], [25.64, 170.92], [38.46, 170.92]], \"sentences\": [\"An arm is laid out on a mat.\", \" Someone is coloring in a tattoo on it.\", \" The tattoo is a butterfly flying.\", \" The wings are being colored in green.\"]}, \"v_7mDiIJ9r4EU\": {\"duration\": 152.18, \"timestamps\": [[0, 19.02], [23.59, 96.64], [98.92, 152.18]], \"sentences\": [\"A man jumps off a pier into the ocean.\", \" He is water skiing over ramps and turning flips.\", \" Another man is watching as he performs stunts on the skis.\"]}, \"v_-E9YQ_Uhu50\": {\"duration\": 62.09, \"timestamps\": [[0, 62.09], [2.17, 62.09], [0, 61.16]], \"sentences\": [\"woman is playing violing in a living room.\", \" scene of an old home video of a woman playing violin is shown.\", \" woman is in a house playing violin.\"]}, \"v_D1E_KJRxGvQ\": {\"duration\": 96.67, \"timestamps\": [[2.9, 4.83], [8.22, 89.9], [89.42, 93.28]], \"sentences\": [\"A girl jumps onto a balance beam.\", \" She does a gymnastics routine on the balance beam.\", \" She dismounts and lands on a mat.\"]}, \"v_MlnK2sa7mm4\": {\"duration\": 157.53, \"timestamps\": [[0, 47.26], [43.32, 111.84], [98.45, 152.8]], \"sentences\": [\"A man is seen speaking to the camera and holding up a harmonica.\", \" He plays the harmonica a bit and pauses to speak to the camera.\", \" He continues playing and speaking in between.\"]}, \"v_bDwGZOk7njI\": {\"duration\": 59.58, \"timestamps\": [[0, 30.69], [3.57, 5.96], [30.09, 59.58]], \"sentences\": [\"Two people are riding on a red riding lawn mower.\", \" A small white dog is standing in the grass.\", \" They go around a tree on the lawn mower.\"]}, \"v_8bppcsg07Rc\": {\"duration\": 177.1, \"timestamps\": [[0, 175.33], [32.76, 175.33], [38.08, 175.33], [44.27, 175.33]], \"sentences\": [\"A woman is in a gym.\", \" She is going across monkey bars.\", \" She uses several different methods to cross them.\", \" She crosses it several times.\"]}, \"v_Qci4EFEIZuo\": {\"duration\": 57.24, \"timestamps\": [[0, 57.24], [5.72, 57.24], [8.87, 57.24], [12.31, 57.24]], \"sentences\": [\"Several people are standing on the grass.\", \" They are holding percussion instruments.\", \" They play their instruments together.\", \" They follow the conductors lead.\"]}, \"v_NbO4k5EtU4Y\": {\"duration\": 117.12, \"timestamps\": [[0, 8.2], [12.88, 51.53], [54.46, 117.12]], \"sentences\": [\"A man is standing in a snow covered field.\", \" He spins while holding a chained ball numerous times, very quickly.\", \" He lets go of the ball and it sails through the air.\"]}, \"v_xXXQyLS1uuY\": {\"duration\": 60.67, \"timestamps\": [[0, 4.25], [7.89, 43.08], [46.42, 60.67]], \"sentences\": [\"A child zooms past the camera on a snowy hill.\", \" Several people are shown riding the tubes down the paths.\", \" They smile and laugh as they go downhill.\"]}, \"v_uhiQp0GCeKg\": {\"duration\": 187.27, \"timestamps\": [[0, 22.47], [23.41, 103.93], [111.43, 187.27]], \"sentences\": [\"A woman is standing against a wall while talking.\", \" She is discussing pre operation procedures with a patient.\", \" She shows how to apply a cream to the entire face.\"]}, \"v_iJWmjVjBNzE\": {\"duration\": 94.83, \"timestamps\": [[0, 8.06], [8.53, 73.02], [73.49, 78.24], [78.71, 84.87], [85.35, 94.83]], \"sentences\": [\"A title screen with white and red letters in front of a mesh background appears followed by a black screen with white letters explaining what the video is about.\", \"  The video shows a sped up time of a family decorating a Christmas tree in a living room as the mount is placed and the tree is then decorated with lights  and ornaments as some of the family members show off and pose for the camera.\", \"  A black screen appears with white text zooming in.\", \"  Another black screen appears with red and white letters showing the name of the show and  there is a website at the bottom of the screen.\", \"  Then a black screen appears with a picture of a woman in the foreground with white letters above her hands.\"]}, \"v_eU27exUJZSM\": {\"duration\": 151.28, \"timestamps\": [[0.76, 32.52], [26.47, 110.43], [102.87, 148.25]], \"sentences\": [\"A person is seen sitting with her arm out while others tattoo her.\", \" A man continues to tattoo her hands as she wipes it off with a paper towel.\", \" They continue to work on her hand and she looks away.\"]}, \"v_NHznDFD3V3k\": {\"duration\": 61.21, \"timestamps\": [[0, 22.65], [0, 61.21], [22.65, 61.21], [26.93, 61.21]], \"sentences\": [\"man is in the subway holding a vacuum cleaning the floor.\", \" people are sitting on benches on the subway.\", \" the man throw french fries in the floor and is eating from the floor and grab a bread slice to grab ketchup from the floor.\", \" people are watching the man with contempt.\"]}, \"v_7GOPv-XegSc\": {\"duration\": 180.84, \"timestamps\": [[0, 3.62], [3.62, 12.66], [13.56, 38.88], [40.69, 77.76], [78.66, 156.42], [157.33, 180.84]], \"sentences\": [\"The words \\\"the good works tour cuts the lawn with MACHETES!\\\" appears on screen.\", \" A volunteer named \\\"Irene Zimmerman\\\" speaks to the camera in a field.\", \" A volunteer named Zeek Compton speaks to the camera.\", \" They both take turns speaking on camera.\", \" People are cutting tall grass with machetes and lawn mowers.\", \" Information about the project and website appear on screen.\"]}, \"v_0fvL6IHKYF0\": {\"duration\": 166.49, \"timestamps\": [[0, 37.46], [39.12, 93.23], [104.06, 139.85], [140.68, 166.49]], \"sentences\": [\"A man is shown kneeling down speaking to the camera next to a piece of exercise equipment.\", \" He points to the machine and changes around all the specs.\", \" He then begins riding the bike and moving along the ice.\", \" In the end he runs away.\"]}, \"v_XEriJg8cW4g\": {\"duration\": 74.78999999999999, \"timestamps\": [[0, 46.37], [44.88, 71.8], [73.67, 74.79]], \"sentences\": [\"A man is holding a bag pipe and talking.\", \" He starts playing the bag pipes.\", \" He puts it down and stops.\"]}, \"v_j89l589KFrg\": {\"duration\": 182.39, \"timestamps\": [[0, 13.68], [14.59, 51.98], [52.89, 136.79], [137.71, 182.39]], \"sentences\": [\"The words \\\"BlackJack 21 (The Movie)\\\" appear on screen.\", \" A movie poster followed by stills of the movie are shown with fancy wipes.\", \" A screen of foreign language appears followed by more stills.\", \" More foreign language appears followed by shots of gambling and the word \\\"gracias\\\" on screen.\"]}, \"v_MxKuqpxmKKk\": {\"duration\": 180.36, \"timestamps\": [[0, 35.17], [33.37, 98.3], [93.79, 180.36]], \"sentences\": [\"a man walks on a field.\", \" the man holds a shot put and starts spinning around.\", \" the man throws the shot put across the field.\"]}, \"v_JcsnMUVBlac\": {\"duration\": 165.46, \"timestamps\": [[0, 57.91], [57.91, 110.86], [111.68, 165.46]], \"sentences\": [\"An empty room,with large blue and black boulders and white steps is shown with a silhouette of a person playing.\", \"The camera then zooms in,and shows the decor of the room as well as the person's body who is playing the piano.\", \"More angles are shown,and you can see that it is a young man with short,thick,black hair playing the piano while dressed in a nice grey suit.\"]}, \"v_q4Oy6EDTJiM\": {\"duration\": 74.68, \"timestamps\": [[0, 50.03], [35.47, 50.03], [50.03, 74.68]], \"sentences\": [\"A man is washing a small dog in a sink while being recorded by someone else.\", \" He notices that there is some poop at the bottom of the sink so he lifts the dog out of the sink and rinses the poop down the drain then places the dog back in the sink.\", \" When he is done washing the dog he removes his gloves and throws them at the camera person.\"]}, \"v_iwMXYbYyJy4\": {\"duration\": 32.6, \"timestamps\": [[0, 4.4], [4.73, 21.35], [23.47, 32.6]], \"sentences\": [\"A little boy and girl are on swings on a playground.\", \" A man walks up and starts pushing them higher.\", \" They smile and laugh as they swing.\"]}, \"v_6qojVSLbyUU\": {\"duration\": 139.13, \"timestamps\": [[0, 139.13], [14.61, 139.13], [20.87, 139.13]], \"sentences\": [\"a man is cuttin the bushes with a big hand pruners.\", \" man is cutting the bushes with big scissors.\", \" the bush is being shaped with hand pruners.\"]}, \"v__7XW-BFK_ZY\": {\"duration\": 169.07, \"timestamps\": [[0, 7.61], [8.45, 59.17], [60.02, 169.07]], \"sentences\": [\"A man is in a field with a dog with the words \\\"Practicamos Disc Dog\\\" on the screen.\", \" The man offers the dog the disc and he performs a trick with it.\", \" Several people are at the park with their dogs too and also perform.\"]}, \"v_DSMSAIk_xhY\": {\"duration\": 190.4, \"timestamps\": [[0, 30.46], [30.46, 46.65], [46.65, 151.37], [151.37, 190.4]], \"sentences\": [\"A guitar player wearing a blue t-shirt and the backup singer wears a blue button shirt.\", \" The singer wearing the blue button shirt raises his arms showing emotion.\", \" The guitar player closes his eyes feeling the music.\", \" The vocalist wearing a blue button shirt talks softly as the song ends.\"]}, \"v_bJ6SpcLM7GE\": {\"duration\": 85.1, \"timestamps\": [[0, 10.64], [13.62, 66.38], [65.53, 85.1]], \"sentences\": [\"Several people are holding lights in a dark arena.\", \" A man is shown on the stage, playing a saxophone.\", \" He continues playing for the audience in the dimly lit room.\"]}, \"v_ZZ71FIfxX-c\": {\"duration\": 151.81, \"timestamps\": [[0, 6.07], [6.83, 24.29], [25.05, 39.47], [40.23, 54.65], [56.17, 110.82], [110.06, 118.41], [120.69, 151.81]], \"sentences\": [\"A man throws a ping pong ball at a cup on a table then speaks to it.\", \" Another man appears at the other end of the table then the men speak.\", \" The second man magically has two pong balls in his hands then magically adds 10 cups to the table for beer pong.\", \" The first guy pours beer and the guys play beer pong.\", \" The second guy makes shot after shot and the first guy drinks beers.\", \" The second guy makes shot while holding his hand over his eyes.\", \" The first guy drinks a beer then passes out and the second guy puts a pong ball on his chest before leaving.\"]}, \"v_iSIzuN9cEAs\": {\"duration\": 101.00999999999999, \"timestamps\": [[0, 55.05], [30.81, 72.73], [53.03, 95.96]], \"sentences\": [\"A man is seen standing in a large field next to a dog.\", \" He begins performing tricks with the dog using a frisbee.\", \" He continues performing tricks while other people watch around the sides.\"]}, \"v_TK5FnYshy10\": {\"duration\": 226.72, \"timestamps\": [[0, 2.27], [3.4, 26.07], [20.4, 26.07], [24.94, 130.36], [78.22, 95.22], [132.63, 160.97], [162.1, 226.72]], \"sentences\": [\"We see an opening title screen.\", \" A group of kids is building a moat filled with water around a sand castle.\", \" A little girl with floaters on pour water in the moat.\", \" We see kids across the beach working on their castles in the wet sand.\", \"  We see a teen and two small kids filling a large square bucket with sand.\", \" We see prize buckets in the sand and the kids run over to the camera man.\", \" A lady in black reads names a man hands her and passes out prize buckets to the kids.\"]}, \"v_d-eoNpp8mNM\": {\"duration\": 42.63, \"timestamps\": [[0, 3.84], [4.05, 4.48], [4.69, 5.54], [5.76, 8.53]], \"sentences\": [\"Purple jersey players attempt to stop a white jersey player with their sticks.\", \" The white jersey player makes it near the goal where he passes it to another player.\", \" The player scores a goal.\", \" Another player approaches the scorer to high five him in support.\"]}, \"v_r64pATF3vCI\": {\"duration\": 25.43, \"timestamps\": [[0.13, 3.56], [5.09, 18.05], [12.97, 14.49], [19.32, 21.48], [21.87, 25.43]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy shoots a toy gun.\", \" The guy adds small, yellow balls to the paintball gun.\", \" The guy gives a thumbs up.\", \" The credits of the video are shown.\"]}, \"v_crbkEVcbF2M\": {\"duration\": 100.15, \"timestamps\": [[0, 25.54], [23.03, 61.59], [61.09, 100.15]], \"sentences\": [\"a car is shown driving down a highway.\", \" the car is then shown driving through a tube.\", \" a man is shown water boarding on a lake.\"]}, \"v_fgeW0L2acbI\": {\"duration\": 106.74000000000001, \"timestamps\": [[0, 18.68], [13.34, 40.03], [31.49, 67.25], [65.11, 106.74]], \"sentences\": [\"a car is driving down a highway.\", \" the car passes by several cars.\", \" the car then goes through a toll both.\", \" the car then drives through a wooded area.\"]}, \"v_0gwhdJGq2eg\": {\"duration\": 124.44, \"timestamps\": [[0, 19.91], [26.13, 88.97], [95.82, 124.44]], \"sentences\": [\"A group of people are swimming in a public pool.\", \" They hit a ball back and forth in the water.\", \" they swim after the ball, trying to catch it or hit it.\"]}, \"v_dn1qrAHh7k0\": {\"duration\": 105.72999999999999, \"timestamps\": [[0, 24.32], [24.32, 89.35], [89.35, 105.73]], \"sentences\": [\"bread slices, \\u00e1 provologne and butter are shown in a counter.\", \" man spread buter on the bread and is toast in a pan while the cheese is melting.\", \" when the sandwixh is ready the man serve it in a white plate.\"]}, \"v_oW0G_C86fz0\": {\"duration\": 205.8, \"timestamps\": [[0, 31.9], [34.99, 166.7], [168.76, 205.8]], \"sentences\": [\"A close up is shown of a white wall with a crack.\", \" A tool is being used to spread spackling into the crack.\", \" The mud is spread and smoothed to cover the damage.\"]}, \"v_I6B4g85H2iI\": {\"duration\": 119.1, \"timestamps\": [[0, 12.51], [12.51, 60.74], [65.5, 119.1]], \"sentences\": [\"kids are standing posing on a picture.\", \" kids are riding motorcycles doing tricks in a dusty race track.\", \" different pictures of kids on their bicycles are shown.\"]}, \"v_vgC8jB2FhAg\": {\"duration\": 183.09, \"timestamps\": [[0, 183.09], [53.1, 56.76], [86.05, 183.09]], \"sentences\": [\"Girls are practicing ballet moves next to a bar.\", \" They do the splits and bend backwards to touch the ground.\", \" They do several high kicks before holding their leg straight up into the air and turning around several times.\"]}, \"v_QixK0AeqcsI\": {\"duration\": 13.4, \"timestamps\": [[0, 12.86], [1.81, 6.63], [6.7, 13.13]], \"sentences\": [\"A girl is seen swinging around on uneven bars while a man helps her on the side.\", \" She holds herself up and swings around the front.\", \" She continues swinging around while the man still watches.\"]}, \"v_2Mh-OomUNpQ\": {\"duration\": 188.49, \"timestamps\": [[0, 15.08], [22.62, 84.82], [98.01, 188.49]], \"sentences\": [\"A large playground full of equipment is shown.\", \" Several kids are playing on the equipment.\", \" A little boy is walking around, and runs to a slide.\"]}, \"v_A8NAj6NQ5vM\": {\"duration\": 8.5, \"timestamps\": [[0, 3.36], [3.61, 6.88], [6.84, 8.5]], \"sentences\": [\"Two teams play beach volleyball on front a crowd.\", \" A player with ted t-shit hits the ball hard but the other team takes the ball.\", \" Then, the green team hits a ball that the other team can reach it.\"]}, \"v_PoamN_DEInI\": {\"duration\": 32.93, \"timestamps\": [[0, 13.01], [14.32, 25.02], [25.68, 32.93]], \"sentences\": [\"A woman is doing hopscotch on a sidewalk outside a fence.\", \" She is then shown posing for pictures.\", \" A screen scroll asks for votes.\"]}, \"v_JoQywfQ6B-8\": {\"duration\": 137.92000000000002, \"timestamps\": [[0, 17.24], [33.79, 90.34], [97.92, 137.92]], \"sentences\": [\"A man is shown standing on the back of a boat.\", \" He is talking about several ropes and gear he has with him.\", \" He shows how to put on skis before going into the water.\"]}, \"v_p5Ynl_rGoEU\": {\"duration\": 180.84, \"timestamps\": [[0, 43.4], [37.98, 134.72], [123.87, 178.13]], \"sentences\": [\"People walk in and out of frame followed by several clips of scenery and wake boards.\", \" More clips are shown of people sitting in the water as well as riding on wakeboards in the water.\", \" A man speaks to the camera and leads into groups of people hanging out and smiling to the camera.\"]}, \"v_cWpT8nb2a9s\": {\"duration\": 126.11, \"timestamps\": [[0, 18.92], [11.35, 26.48], [29.64, 75.66], [77.56, 126.11]], \"sentences\": [\"a woman watches girls practice in a gym.\", \" the girls take turns doing high kicks and cheers.\", \" then the girls kick and cheer in unison.\", \" each woman and girl speaks to the camera individually.\"]}, \"v_uQDTcusxDCg\": {\"duration\": 179.16, \"timestamps\": [[0, 50.16], [50.16, 117.35], [117.35, 179.16]], \"sentences\": [\"An indoor field is shown with a large crowd of people in the stands waving green and white flags with yellow lions in the middle of them.\", \"After the crowd is shown,the game of soccer continues and as the team makes a goal,the whole left wall of fans go crazy and begin jumping up and down in an uproar.\", \"The game becomes more intense and the goalie begins squatting down in an attempt to protect his side as the ball comes in his territory.\"]}, \"v_aIXUWoP-L-E\": {\"duration\": 58.38, \"timestamps\": [[0, 19.85], [20.72, 48.16], [48.45, 58.38]], \"sentences\": [\"A man is outside dressed in a blue hoodie and burgundy pants pushing a lawn mower across a small patch of grass.\", \"AS he turns,he has difficulty because the back yard has a trampoline and several blocks around it.\", \"Finally,the man moves from the small patch,crosses over the bricks and goes to the other side of the yard.\"]}, \"v_-VexUX6OJBM\": {\"duration\": 126.55, \"timestamps\": [[0, 6.96], [6.96, 17.72], [18.35, 94.28], [94.28, 126.55]], \"sentences\": [\"One man wearing blue shirt wearing a jumping leg extension and another man wearing red pants play on a field.\", \" The man with the jumping extension does a flip and misses the landing and ends up on his but.\", \" The man in the red pants performs somersaults while the other man with the jumping extensions watches on and gets instruction.\", \" The man with the jumping extensions practices with the help of the man wearing red pants and completes a somersault.\"]}, \"v_xIG7FQWBWZU\": {\"duration\": 33.53, \"timestamps\": [[0, 7.38], [5.53, 22.97], [20.96, 33.53]], \"sentences\": [\"an ice rink and sports gear is shown.\", \" huge pucks are pushed across the the rink.\", \" a point is scored and a player cheers.\"]}, \"v_FmLxc-aNh88\": {\"duration\": 80.61, \"timestamps\": [[0, 8.87], [9.27, 45.95], [45.95, 70.14]], \"sentences\": [\"A woman in blue starts talking while a brown horse with white marks on face is behind her.\", \" The a woman in tank top gently brushing the white horse in circle motion from neck to the back of his body.\", \" She stop and get a bigger bristle brush and brush the horse once more then she stop and nod.\"]}, \"v_szl1InYab_k\": {\"duration\": 61.3, \"timestamps\": [[0, 61.3], [2.76, 12.26], [12.26, 26.97], [29.42, 37.7], [38.01, 61.3]], \"sentences\": [\"A person is showing you how to paint you couch to a color that you want.\", \"A guy sits the couch on card boards that is spread on the floor while he spray the hole couch with red paint spray.\", \"He starts with the side then he goes across the bottom to the other side on the couch.\", \"the guy then left the head rest part of the couch and spray on top and in between.\", \"finally he use a blow dry to help the paint dry and then he goes over the already painted couch with more paint to make the color deeper.\"]}, \"v_TRWDARS8lRE\": {\"duration\": 70.06, \"timestamps\": [[0, 57.45], [0, 70.06], [4.2, 70.06]], \"sentences\": [\"People are playing the game fencing in a room.\", \" A man in a black suit is standing in front of them.\", \" People are walking behind them.\"]}, \"v_na4vSFfVi2s\": {\"duration\": 112.85, \"timestamps\": [[0, 112.85], [6.21, 106.08], [14.67, 93.66], [83.51, 112.85]], \"sentences\": [\"A girl is at a playground.\", \" She starts to cross monkey bars.\", \" She falls down on the ground twice.\", \" Eventually she makes it all the way across.\"]}, \"v_fQB76oAKOQc\": {\"duration\": 154.41, \"timestamps\": [[0, 132.8], [31.65, 33.97], [60.22, 70.26], [135.88, 142.06]], \"sentences\": [\"A man is laying down on a table getting a tattoo.\", \" People are standing in front of him watching.\", \" Another man in a tux is talking to the camera.\", \" They wrap the tattoo with saran wrap.\"]}, \"v_S5MD51gg-vA\": {\"duration\": 193.03, \"timestamps\": [[3.86, 51.15], [45.36, 131.26], [135.12, 187.24]], \"sentences\": [\"A man is seen in several clips shooting a basket into a hoop.\", \" He is then shown attempting to play tennis when another man walks in.\", \" The man teaches him how to play tennis and has him practice.\"]}, \"v_yUYTlwiP16E\": {\"duration\": 121.12, \"timestamps\": [[0, 18.17], [12.72, 36.33], [26.04, 102.95], [103.55, 121.12]], \"sentences\": [\"Two reporters sit at a desk.\", \" A man shovels snow outside.\", \" Several people are interviewed around.\", \" The man then stands against the shovel.\"]}, \"v_p7j6yY99vEg\": {\"duration\": 130.31, \"timestamps\": [[0, 26.71], [14.99, 30.62], [26.71, 130.31]], \"sentences\": [\"players are in a a side of a basket court gathered in a circle.\", \" referee wearing a yellow shirt walks from the other side of the court.\", \" men start playing basketball in an empty court.\"]}, \"v_SO5KnbKienU\": {\"duration\": 202.27, \"timestamps\": [[0, 52.59], [55.62, 157.77], [126.42, 199.24]], \"sentences\": [\"A large group of women are seen walking onto a stage and holding a pose.\", \" They begin dancing together with batons while others watch.\", \" The continue dancing with one another and end by walking off stage.\"]}, \"v_OBfVj8mCVUw\": {\"duration\": 75.05, \"timestamps\": [[0, 16.89], [13.13, 55.16], [54.03, 75.05]], \"sentences\": [\"a woman is sitting with yarn on her lap.\", \" the woman begins knitting win the material.\", \" the camera shows a 360 view of the woman knitting.\"]}, \"v_e6J_ygZ779A\": {\"duration\": 142.32, \"timestamps\": [[1.42, 57.64], [44.12, 57.64], [58.35, 88.95], [89.66, 103.18], [104.6, 142.32]], \"sentences\": [\"A man talks in a field wearing sports outfit while making gestures with his hands.\", \" A person walks behind the man.\", \" Then, the man runs in circles, also a person runs in circles.\", \" Also, a male wearing dark clothes run in circles.\", \" After, the man and the person runs in circles.\"]}, \"v_qVqlImNflY8\": {\"duration\": 97.59, \"timestamps\": [[0, 15.62], [14.64, 46.85], [45.38, 97.59]], \"sentences\": [\"A small brown and white dog is laying on a rug.\", \" A person starts filling a large blue bucket with water.\", \" They put the dog into the water.\"]}, \"v_60Y0DfZhlHM\": {\"duration\": 169.9, \"timestamps\": [[0, 169.9], [37.38, 54.37], [56.07, 169.9], [162.26, 169.9]], \"sentences\": [\"A guy is putting white paste from a can on to a parted surface with a paintbrush.\", \" The guy lays a sheet over the whitened area.\", \" The guy adds white paste above the placed sheet.\", \" The guy puts dots of white paste on the whitened area.\"]}, \"v_QUJXOFPJ_YI\": {\"duration\": 27.12, \"timestamps\": [[0, 3.66], [6.24, 20.48], [20.34, 27.12]], \"sentences\": [\"Two girls are inside a gym in a building.\", \" They are hitting a ball against the wall with racquets.\", \" They continue playing as a man joins in.\"]}, \"v_lmcBk-gqMzA\": {\"duration\": 68.07, \"timestamps\": [[0, 68.07], [18.04, 42.54], [42.2, 67.73]], \"sentences\": [\"A woman in a green shirt is standing next to a brown horse.\", \" She picks up a brush and starts brushing the horse.\", \" She picks up another brush and brushes the horse.\"]}, \"v_-A6e83tl4Y8\": {\"duration\": 215.82999999999998, \"timestamps\": [[0, 215.83], [0, 214.75], [131.66, 150]], \"sentences\": [\"women are wearing pink shirts playing voleyball in a wooden court.\", \" in the background people are practicing free shots.\", \" women are gathered in a circle with the coach.\"]}, \"v_8Q-P5KEvXN0\": {\"duration\": 46.14, \"timestamps\": [[0, 46.14], [1.15, 46.14], [45.45, 46.14]], \"sentences\": [\"People are playing indoor soccer in an arena.\", \" They are making several goals into a net.\", \" A man celebrates and throws his arm in the air.\"]}, \"v_iiQQ8xZvZok\": {\"duration\": 26.1, \"timestamps\": [[0, 3.26], [3.78, 17.23], [17.62, 26.1]], \"sentences\": [\"A man is standing in front of a large crowd.\", \" He is throwing darts at a target.\", \" Another man competes with him, shooting the darts.\"]}, \"v_zb6WUBWwXfk\": {\"duration\": 199.86, \"timestamps\": [[0, 168.88], [168.88, 188.86], [188.86, 199.86]], \"sentences\": [\"man is in a static bike going really fast like practicing for a competition.\", \" man stands on the bike to go faster and is looking to the camera.\", \" then the man stops and take out of the bike and holds a chainsaw.\"]}, \"v_OuVncktxGw0\": {\"duration\": 28.63, \"timestamps\": [[0, 2.72], [2.72, 8.88], [8.73, 19.9], [19.76, 28.63]], \"sentences\": [\"Two young men are standing across from each other on a small table in a restaurant.\", \" They are both arm wrestling on the table and the man who appears the strongest and the oldest begins talking while looking at the camera.\", \"All of sudden,the older man wins and the table begins to fall on the boy.\", \"While on the ground,the boy screams in agony and the man rushes over to help him out.\"]}, \"v_t1-GV2bAL4I\": {\"duration\": 5.32, \"timestamps\": [[0, 5.32], [0, 3.48], [3.32, 3.48]], \"sentences\": [\"A woman is laying down on a table.\", \" She starts playing a harmonica.\", \" She puts the harmonica down and shows her teeth.\"]}, \"v_PagM71op4HU\": {\"duration\": 30.56, \"timestamps\": [[0, 2.6], [3.06, 4.74], [5.04, 7.95], [6.57, 7.95], [8.86, 11.76], [13.14, 14.06], [17.88, 24.29], [26.28, 29.95]], \"sentences\": [\"A boy in a blue shirt throws a toy dart while other kids watch.\", \"  A girl in the group throws the dart against the wall.\", \"  A boy in a green shirt takes his turn to throw the dart.\", \"   The dart hits a window.\", \"  The dart flies through the air and hits the wall.\", \"  The dart hits the ceiling.\", \"  Kids play with the dart outside.\", \"  An ad for the dart shows on the screen.\"]}, \"v_1RVu0qNtWCc\": {\"duration\": 136.56, \"timestamps\": [[0, 35.5], [35.5, 99.69], [86.71, 131.78]], \"sentences\": [\"A man is seen looking in the mirror and adjusting a camera.\", \" The man then begins shaving his facial hair using a razor.\", \" He continues shaving and looking up then down at his hair.\"]}, \"v_G00TjQ7JJ8Y\": {\"duration\": 27.52, \"timestamps\": [[0, 9.77], [9.63, 20.5], [20.64, 27.52]], \"sentences\": [\"Several men are lined up against a white wall on horses in a dark field of grass.\", \"All of the men then take off running and begin competing in a game of polo.\", \"As they continue racing across the field,people in the crowd are shown watching the game.\"]}, \"v_DmtaWx7QcZ8\": {\"duration\": 94.07, \"timestamps\": [[0, 11.29], [11.76, 52.68], [55.03, 94.07]], \"sentences\": [\"several walls are shown in an interior display.\", \" A man shows how to stir paint in the bucket.\", \" Then he demonstrates how to pain the wood using a brush and roller.\"]}, \"v_Vkr3r1Cd0mI\": {\"duration\": 163.75, \"timestamps\": [[0, 14.74], [14.74, 51.58], [51.58, 118.72], [118.72, 163.75]], \"sentences\": [\"A young lady in a red sweater appears in front of the screen and begins blow drying her hair.\", \"After,she reappears and shows the different utensils she will use throughout the video.\", \"Once she scrunches her hair up from blow drying,she then goes into deep detail about the assortment of brushes placed in front of her.\", \"She reappears with wet hair,adds  oil to them and then uses the brushes to dry her hair into a perfect bob.\"]}, \"v_Vtsv9iPHDqg\": {\"duration\": 184.41, \"timestamps\": [[0, 37.8], [34.12, 101.43], [104.19, 183.49]], \"sentences\": [\"An athletic woman is seen running into a large sand pit and is shown again in slow motion.\", \" Another woman steps up to run into the pit and gets up walking away.\", \" Several more runners take turns afterwards while looking around and their scores being shown.\"]}, \"v_DguywhRJ7ds\": {\"duration\": 4.81, \"timestamps\": [[0, 0.89], [0.91, 1.25], [1.3, 4.81]], \"sentences\": [\"A girl springs forward on a diving board.\", \" The girl bounces on the edge of the diving board.\", \" The girl dives into the pool in front of her.\"]}, \"v_KyDcuYjDi_Y\": {\"duration\": 220.07, \"timestamps\": [[0, 31.91], [50.62, 133.14], [140.84, 220.07]], \"sentences\": [\"A girl is talking outside in her yard.\", \" She engages in several different moves.\", \" She does forward and back flips and handsprings.\"]}, \"v_dcsQy55tjw4\": {\"duration\": 60.12, \"timestamps\": [[0, 12.62], [11.42, 21.04], [21.34, 27.35]], \"sentences\": [\"A woman stands in a circle.\", \" She holds a ball behind her ear.\", \" She spins around and launches the ball onto the field.\"]}, \"v_NH2TVi42xDE\": {\"duration\": 129.2, \"timestamps\": [[0, 5.81], [6.46, 78.81], [79.46, 116.28], [116.92, 129.2]], \"sentences\": [\"The words \\\"Do You Have a Dog that Can't Be Groomed?\\\" appear in a comic font on screen.\", \" A woman is holding a little yorkie on a couch and it becomes very upset when it sees a grooming brush.\", \"  The woman uses positive reinforcement over several days and is able to brush the dog with little fuss.\", \" The woman cuddles and kisses the dog and credits roll.\"]}, \"v_0VVNybUx7DE\": {\"duration\": 224.98, \"timestamps\": [[5.62, 31.5], [31.5, 214.85], [215.98, 220.48], [220.48, 224.98]], \"sentences\": [\"A man talks to the camera while another stands beside him, with both standing behind a cricket wicket.\", \" One of the men physically demonstrates cricket skills and postures while the other continues to talk and highlights important points on the other's body.\", \" The second man performs a cricket pitch in one smooth motion.\", \" A portion of an advertisement is shown.\"]}, \"v_t1urvYx1X_w\": {\"duration\": 41.1, \"timestamps\": [[0, 5.75], [9.86, 33.29], [34.11, 41.1]], \"sentences\": [\"Some cars are covered in snow in a parking lot.\", \" A man is seen using his briefcase to scrape away the snow.\", \" He attempts to use his hands as well.\"]}, \"v_pgff9mC5y3s\": {\"duration\": 26.12, \"timestamps\": [[0, 0.78], [0.78, 1.31], [4.96, 22.99], [13.85, 14.89], [15.67, 17.24]], \"sentences\": [\"A guy carries a girl away from the pinata.\", \" The guy puts the girl down.\", \" A boy swings a pole at a pinata.\", \" A lady brings a white stool.\", \" The lady puts the boy on top on the white stool.\"]}, \"v_LdDB7xXXHQM\": {\"duration\": 192.08, \"timestamps\": [[0, 24.01], [26.89, 63.39], [80.67, 192.08]], \"sentences\": [\"A man is wearing a pair of boxing gloves.\", \" He is hitting a large punching bag.\", \" He continues hitting and kicking it over and over.\"]}, \"v_84OwFujqHyw\": {\"duration\": 60.84, \"timestamps\": [[0, 10.65], [8.52, 25.55], [23.73, 39.54], [41.67, 60.84]], \"sentences\": [\"two polo players run across a field.\", \" one player falls off his horse.\", \" other polo players rush to the man laying on the field.\", \" an ambulance comes to the player's aid.\"]}, \"v_Dx4LpX-X9JY\": {\"duration\": 227.85, \"timestamps\": [[0, 29.62], [58.1, 137.85], [145.82, 227.85]], \"sentences\": [\"Several people are gathering and talking to the camera.\", \" They are at an outdoor event.\", \"The people engage in a foot race.\"]}, \"v_RjFoJggnfj4\": {\"duration\": 136.56, \"timestamps\": [[0, 45.75], [46.43, 94.91], [94.22, 131.09], [132.46, 136.56]], \"sentences\": [\"An indoor arena appears and a Brazil team is competing with a team from Japan in a game of indoor soccer.\", \"A penalty kick starts the game and the Brazil teams jumps in joy because they are leading the game with a two to zero score.\", \"During the game,several attempts are made at the goal but the goalie isn't able to stop all of them and Japan keeps losing.\", \"The game ends with an easy goal as the men congratulate each other on a five to zero game.\"]}, \"v_vXcfhKnUjRc\": {\"duration\": 232.36, \"timestamps\": [[0, 8.13], [8.13, 54.61], [54.61, 158.01], [158.01, 232.36]], \"sentences\": [\"Five men are outside behind a house with drums in front of them as another man comes along to grab his drum and joins the other guys.\", \"The man then gets into formation and they all begin playing their drums together.\", \"However,the guy on the right is playing on a different beat than the rest of them because his sticks are still in the air when the other guy's are moving.\", \"After his solo,the band continues playing on one accord until the guy in the middle walks out to turn the camera off and the other men take off their instruments.\"]}, \"v_FNlEHAIh6LQ\": {\"duration\": 173.82999999999998, \"timestamps\": [[0, 2.61], [2.61, 3.48], [3.48, 37.37], [38.24, 58.23], [58.23, 112.12], [112.99, 151.23], [151.23, 173.83]], \"sentences\": [\"The words \\\"Redken Ready\\\" appear in large theater style lights behind a woman getting her hair done.\", \" A man speak to the camera with a woman seated next to him.\", \" Tools and products are listed for \\\"The Look\\\".\", \" For \\\"The Prep\\\" the woman demonstrates spraying her hair.\", \"  Then the woman shows the steps to braiding hair.\", \" For the \\\"Finish\\\" she applies a spray product to keep the braid in place.\", \" Finally the man returns to give tips on hair styling.\"]}, \"v_ayXuNcjC8wk\": {\"duration\": 37.73, \"timestamps\": [[0.57, 4.15], [5.28, 19.62], [19.43, 36.41]], \"sentences\": [\"A young girl is shown speaking to the camera and shows off a trampoline.\", \" She then moves her way along a set of monkey bars.\", \" She climbs all the way back and jumps down with her arms up.\"]}, \"v__3I4nm2zF5Y\": {\"duration\": 66.08, \"timestamps\": [[0, 4.96], [5.29, 40.64], [40.97, 60.8], [61.13, 66.08]], \"sentences\": [\"A man getting a haircut is overlaid with the words \\\"Bobbys World AKA Mr Hundred Dollar Haircut\\\".\", \" Credits and other text is overlaid as the man is given a shave.\", \" The man's hair is sprayed and a final trim is given.\", \"  A \\\"Bobbysworld\\\" logo appears with a website link.\"]}, \"v_yGwevg8vwuU\": {\"duration\": 179.91, \"timestamps\": [[0, 19.79], [32.38, 130.43], [140.33, 179.91]], \"sentences\": [\"A couple of women are fighting in a field.\", \" They spin and kick in a form of kickboxing.\", \" They continue fighting quickly, kicking and boxing with each other.\"]}, \"v_12v5k4Z8lAE\": {\"duration\": 115.8, \"timestamps\": [[13.32, 20.84], [35.9, 49.21], [57.9, 68.9], [90.9, 115.8]], \"sentences\": [\"A woman rolls up a towel.\", \" She wraps it in red tissue paper.\", \" She puts it into a gift bag.\", \" She puts another piece of tissue paper into the bag.\"]}, \"v_nX-GvQmf5Tc\": {\"duration\": 81.76, \"timestamps\": [[0, 81.76], [0.82, 13.9], [16.76, 75.63], [67.86, 73.17], [71.54, 81.76]], \"sentences\": [\"There are several people riding bumper cars in at an entertainment center.\", \" The bumper car drivers wait for a period of time before they begin driving the cars.\", \" Then they all go in the same direction as they go around a divider, make a U turn and then come back to where they started.\", \" There are some people watching them with cameras in their hands.\", \" They drivers continue driving their cars in the same direction where some car follow the other in circles.\"]}, \"v_LCe0toF3058\": {\"duration\": 152.72, \"timestamps\": [[0, 29.78], [25.2, 105.38], [98.5, 152.72]], \"sentences\": [\"a man is standing over a barbell in n gym.\", \" the man then lifts the large barbell over his head.\", \" another man is shown power lifting.\"]}, \"v_hBjVRKwCUNA\": {\"duration\": 222.61, \"timestamps\": [[0, 46.75], [38.96, 149.15], [129.11, 219.27]], \"sentences\": [\"A camera pans around a large field and leads into a man speaking.\", \" The man is then shown performing exercise moves while speaking to the camera.\", \" He uses the playground to perform exercises while speaking to the camera.\"]}, \"v_Hk-wwGuHuC0\": {\"duration\": 98.43, \"timestamps\": [[0, 15.26], [15.26, 61.52], [68.9, 98.43]], \"sentences\": [\"a man is mopping inside an airy building.\", \" The floors shine as he moves the mop over the surface.\", \" He continues mopping, making sure every inch is clean.\"]}, \"v_Wgh8e4V8hBc\": {\"duration\": 11.94, \"timestamps\": [[0, 5.13], [1.55, 5.13], [9.01, 11.94]], \"sentences\": [\"A girl is holding a bat.\", \" She swings at a pinata hanging from the ceiling.\", \" She hands the bat to a boy in a red shirt.\"]}, \"v_XdqHO4x2FL0\": {\"duration\": 68.13, \"timestamps\": [[0, 4.77], [9.54, 37.47], [44.96, 68.13]], \"sentences\": [\"A man is standing on a busy street.\", \" He is talking to the camera in the daylight.\", \" He shows off his large muscles as they talk.\"]}, \"v_ViCGpj478Ik\": {\"duration\": 46.81, \"timestamps\": [[0, 46.81], [1.4, 17.55], [17.55, 46.81]], \"sentences\": [\"People are practicing boxing moves with each other indoors and everyone is paired up with one partner.\", \"  people are seen punching the targets, kicking, and kneeing them.\", \" Some of the people even grab their partners head, and they start kneeing the targets.\"]}, \"v_MmOQhq95Z_g\": {\"duration\": 182.86, \"timestamps\": [[0, 21.94], [26.51, 122.51], [133.49, 182.86]], \"sentences\": [\"Several kids are gathered inside a gym.\", \" They run down the track with a long pole.\", \" They use the pole to vault over a bar.\"]}, \"v_-e9e4ke_wJk\": {\"duration\": 28.21, \"timestamps\": [[0, 22.85], [0, 0.71], [1.97, 5.22], [3.24, 6.21]], \"sentences\": [\"Ladies are washing clothes outside in a basin.\", \" A boy gives a lady something.\", \" The boy walks away from a group of ladies revealing his navel as he swings his white, sleeveless undershirt side to side.\", \" The lady rises and puts what the boy gave her in her pocket.\"]}, \"v_-VcxQ6i6Ejk\": {\"duration\": 102.78999999999999, \"timestamps\": [[0, 102.79], [0, 8.74], [9.25, 47.28], [31.86, 38.03], [38.03, 47.28], [60.64, 68.35], [74.01, 83.26], [85.83, 88.4], [88.91, 97.65]], \"sentences\": [\"A cricket game is being played.\", \" A man runs the bases, and then begins walking.\", \" A naked man runs onto the field and is chased by several officials.\", \" The playing teams pause as they watch the streaker.\", \" A replay is showed as the streaker is overtaken and forced to the ground by a player with a cricket bat.\", \" The crowd cheers and takes pictures.\", \" Two men high five as they return to the game.\", \" The game resumes as the pitcher throws the ball.\", \" The batter hits the ball, which is caught by one of the basemen.\"]}, \"v_eSpPY2yMg70\": {\"duration\": 51.62, \"timestamps\": [[0, 9.29], [8.26, 45.42], [44.91, 51.62]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He begins doing a gymnastics routine on the balance beam.\", \" He dismounts and lands on a blue mat next to the beam.\"]}, \"v_WdCoVsU8Bbs\": {\"duration\": 23.13, \"timestamps\": [[0, 3.12], [3.12, 11.1], [18.5, 20.58]], \"sentences\": [\"A man in face paint is looking out a window.\", \" A man is dealing cards at a black jack table.\", \" The man in face paint walks backwards out of a door.\"]}, \"v_QDTo_ss6INM\": {\"duration\": 124.16, \"timestamps\": [[0, 124.16], [22.97, 50.9], [46.56, 70.15], [73.25, 98.08], [86.29, 124.16]], \"sentences\": [\"A man and a woman stand in a kitchen.\", \" They put meat in a pan.\", \" They make a salad on the side.\", \" The add the cooked meat to it.\", \" They then taste the food.\"]}, \"v_oZTFplEHVDo\": {\"duration\": 19.74, \"timestamps\": [[0, 5.43], [5.13, 13.42], [11.74, 18.95]], \"sentences\": [\"A text intro is shown with a person spinning on a bar.\", \" Another woman is shown spinning on a gymnasts bar.\", \" She continues spinning and holds herself up.\"]}, \"v_Ta_Kf0dCd3U\": {\"duration\": 157.06, \"timestamps\": [[0, 32.98], [32.2, 111.51], [108.37, 153.92]], \"sentences\": [\"A person lays down metal as well as tile on a shower.\", \" They are then shown laying down plaster and putting the metal on top.\", \" They lay down the plaster and push it down while showing off the shower in the end.\"]}, \"v_qhnWJ4G5JMA\": {\"duration\": 167.0, \"timestamps\": [[0, 33.4], [30.06, 109.38], [104.37, 161.15]], \"sentences\": [\"A woman is seen speaking to the camera behind an exercise bike.\", \" She adjusts the settings on the bike while climbing on top.\", \" She then begins using the bike and climbs off to adjust the bike more.\"]}, \"v_PBzlHfEMU5s\": {\"duration\": 19.58, \"timestamps\": [[0, 4.89], [4.31, 13.8], [13.7, 19.09]], \"sentences\": [\"A man is seen sitting on a horse in front of a large crowd.\", \" The man rides in on the horse and ropes a calf.\", \" The man finally walks back to the horse.\"]}, \"v_qRPq2PEiyM0\": {\"duration\": 56.59, \"timestamps\": [[0, 12.45], [9.62, 37.63], [32.54, 52.34]], \"sentences\": [\"A group of men are seen standing together with one pointing off into the distance.\", \" The men then begin playing instruments while people walk in and out of frame.\", \" The man continue playing and end by pausing and looking to one another.\"]}, \"v_M_WEOecjwLY\": {\"duration\": 101.02000000000001, \"timestamps\": [[0, 11.62], [13.13, 73.24], [74.75, 101.02]], \"sentences\": [\"A swimmer stands at the top of a diving board.\", \" She jumps, flipping several times on the way down.\", \" The crowd cheers as she hits the water.\"]}, \"v_aUCdj7acYos\": {\"duration\": 24.27, \"timestamps\": [[0, 8.13], [7.4, 24.27], [0, 24.27]], \"sentences\": [\"A little girl is holding a stick.\", \" She walks up to a pinata and hits it.\", \" People are sitting on the sand watching.\"]}, \"v_RPLbUeV3-o0\": {\"duration\": 41.01, \"timestamps\": [[0, 8.82], [7.18, 27.06], [27.88, 41.01]], \"sentences\": [\"a snowboarder glides down a slope.\", \" the snow boarder goes up a hill and becomes airborne.\", \" the snow boarder falls flat on his stomach.\"]}, \"v_c-C_9InvwKE\": {\"duration\": 73.03999999999999, \"timestamps\": [[0, 20.82], [21.91, 55.15], [55.51, 73.04]], \"sentences\": [\"Clothes are in a bucket with detergent, and other clothes are drying in a rope.\", \" Then, a person wash the clothes steeping with the feet them.\", \" The home of the person is dirty and very old.\"]}, \"v_bb9AIdvKkZU\": {\"duration\": 31.16, \"timestamps\": [[0, 4.05], [4.05, 6.86], [6.86, 10.28], [10.28, 12.62], [12.62, 31.16]], \"sentences\": [\"A man wearing a red and black winter jacket shovels snow and tosses the snow onto a pile of snow behind him.\", \" The man in the red jacket stands and stairs at the camera while holding the shovel.\", \" The man then shovels up some snow from the sidewalk.\", \" The man with the shovel tosses the snow onto a pile of snow around the corner of a building.\", \" The man then continues to shovel the snow and tosses the snow onto another pile of snow to his right.\"]}, \"v_3K_8CdJS9lE\": {\"duration\": 223.56, \"timestamps\": [[1.12, 16.77], [17.88, 74.89], [80.48, 159.85], [160.96, 216.86]], \"sentences\": [\"A person is seen blindfolded with other people helping her walk outside.\", \" The man leads her to a pinata and lifts it up in the air.\", \" She takes off the blind fold and puts it back on, leading into her attempting to hit the pinata.\", \" She hits it a few times then walks away in the end.\"]}, \"v_w9CC0wf27zs\": {\"duration\": 78.9, \"timestamps\": [[0, 9.86], [12.62, 43.4], [45.76, 78.9]], \"sentences\": [\"Two elderly women are seated at a table covered in food items.\", \" One is assisting the other one with her knitting.\", \" She helps her adjust her hand position on the needle and yarn.\"]}, \"v_-HZtgP41I_o\": {\"duration\": 207.94, \"timestamps\": [[8.32, 18.71], [19.75, 33.27], [33.27, 48.86], [48.86, 119.56], [119.56, 122.68], [122.68, 137.24], [137.24, 193.38], [194.42, 207.94]], \"sentences\": [\"A black and white image of several men is shown.\", \" Three men drop shoes on the ground and puts them on.\", \" A fourth man talks to the three men while holding a pair of shoes.\", \" The fourth man talks to the camera while demonstrating how to wear and remove shoes.\", \" A new man walks through the middle of the camera frame.\", \" The black and white still image is shown again.\", \" A black screen with scrolling white text is shown.\", \" A black and white still image from a different part of the video is shown.\"]}, \"v_87JvCGMC514\": {\"duration\": 113.66, \"timestamps\": [[0, 32.96], [30.12, 84.11], [71.04, 111.39]], \"sentences\": [\"A small child is seen attempting to fly a kite on the beach.\", \" Several other kids around him are attempting to fly kites.\", \" The boy continues to push the kite around the area while people watch on the side.\"]}, \"v_fpIcr1RaEDc\": {\"duration\": 88.56, \"timestamps\": [[0, 11.51], [11.96, 39.85], [39.85, 78.82], [79.26, 88.56]], \"sentences\": [\"The words \\\"Parallel Bar Dips\\\" appears on a black screen followed by an explanation of it.\", \" A man in the corner of the gym demonstrates how to perform the action.\", \" The man does higher ones.\", \" The logo \\\"Relative Strength Advantage\\\" appears on screen.\"]}, \"v_HFDsuGHojDU\": {\"duration\": 10.97, \"timestamps\": [[0, 1.92], [1.92, 4.77], [4.77, 10.97]], \"sentences\": [\"A man behind a cage swings his arm while holding a discus.\", \" The man spins and releases the discus.\", \" A replay of the discus throw is shown.\"]}, \"v_IEtCboPbTXI\": {\"duration\": 73.05, \"timestamps\": [[0, 0.73], [0, 70.49], [18.63, 67.57], [68.67, 73.05]], \"sentences\": [\"The intro states \\\"Dog Grooming 101, Session 8: Bathing Greyhounds from life with dogs\\\".\", \" A dog is seen laying on a chair covered with a red blanket in the sunlight from the window behind it.\", \" Someone starts to vacuum the dog with a vacuum while he lays on the chair.\", \" Then the person takes away the vacuum and the logo Life With Dogs is seen, with a black and white dog running in a field.\"]}, \"v_pn41XETdQB4\": {\"duration\": 229.72, \"timestamps\": [[0, 60.87], [48.24, 152.76], [160.8, 229.72]], \"sentences\": [\"a group of masked men hold an terrorize a young man.\", \" None masked men vandalize an area while holding a captive.\", \" an older man comes in and rescues the captured the young man.\"]}, \"v_2SKZB0bfqF8\": {\"duration\": 164.82, \"timestamps\": [[0, 6.59], [18.13, 51.09], [62.63, 164.82]], \"sentences\": [\"A woman opens the blinds inside her house.\", \" It is snowing heavily outside.\", \" A man shows the proper way to shovel the snow.\"]}, \"v_bHAzuAnnvcU\": {\"duration\": 21.94, \"timestamps\": [[0.11, 0.33], [0.22, 8.12], [6.47, 21.39]], \"sentences\": [\"A young child is seen standing before a set of monkey bars.\", \" He begins making his way across the monkey bars.\", \" He makes it to the other side and jumps down next to another boy.\"]}, \"v_rYcac4QmSms\": {\"duration\": 235.96, \"timestamps\": [[0, 44.83], [43.65, 154.56], [159.27, 228.88]], \"sentences\": [\"A girl is seen laying on a platform and begins walking towards the camera.\", \" She steps on a platform that lifts her up while speaking to the camera and looking around.\", \" She then jumps off the side and lands on a mat with two others helping her off.\"]}, \"v_t3eRbi1Uk5E\": {\"duration\": 186.2, \"timestamps\": [[0, 27.93], [34.45, 104.27], [106.13, 186.2]], \"sentences\": [\"A man and some women are shown using ellipticals in a gym.\", \" They are shown on several peices of equipment, moving quickly.\", \" Others are shown jumping, running, and doing other exercises.\"]}, \"v_0h4UT-2XTAw\": {\"duration\": 170.16, \"timestamps\": [[0, 26.37], [35.73, 113.15], [120.81, 170.16]], \"sentences\": [\"A woman is playing with her hair in front of the camera.\", \" She takes out and shows off foam rollers.\", \" She shows how to apply and remove the curlers.\"]}, \"v_nQQ-tcG6wBA\": {\"duration\": 192.91, \"timestamps\": [[0, 22.18], [31.83, 133.11], [147.58, 192.91]], \"sentences\": [\"A woman is kneeling on a hard wood floor.\", \" She is demonstrating different moves to stretch the leg muscles.\", \" She leans forward and back several times.\"]}, \"v_NVR52Aed_7s\": {\"duration\": 21.57, \"timestamps\": [[0, 20.82], [0.65, 20.82], [21.03, 21.57]], \"sentences\": [\"A man is kneeling down on an orange mat.\", \" He pulls a rope on an exercise machine.\", \" He stands up and lets go of the rope.\"]}, \"v_qenGkKGoq6o\": {\"duration\": 66.13, \"timestamps\": [[0, 66.13], [0, 56.21], [0, 65.14]], \"sentences\": [\"a marching band is in the midle o street.\", \" behind the marching band a fire truck is in the parade.\", \" people on sidewalks are watching the parade.\"]}, \"v_TeLWp5sSxg0\": {\"duration\": 186.25, \"timestamps\": [[25.14, 33.52], [44.7, 91.26], [89.4, 186.25]], \"sentences\": [\"A girl starts brushing her hair.\", \" She wraps a curler around her hair and attaches it to her head.\", \" She puts another curler on the other side of her head.\"]}, \"v_YozbZM_nA0c\": {\"duration\": 35.83, \"timestamps\": [[0, 4.12], [4.12, 35.83], [0, 35.83]], \"sentences\": [\"kids are standing in a line in front of a white table.\", \" kids are playing hopscotch in an open area and peolpe are gathered around.\", \" in the background a lot of kids are standing and playing.\"]}, \"v_sf2zGT5nN04\": {\"duration\": 225.93, \"timestamps\": [[0, 23.72], [30.5, 133.3], [166.06, 225.93]], \"sentences\": [\"A man is shown talking on a stage.\", \" He is mixing several ingredients into bowls.\", \" He demonstrates how to make a salad for the audience.\"]}, \"v_1sTTv-XC-RA\": {\"duration\": 93.46000000000001, \"timestamps\": [[0, 16.82], [18.69, 68.23], [71.03, 93.46]], \"sentences\": [\"A boat is parked in front of a river.\", \" It moves slowly through the currents as the person paddles.\", \" He navigates the waters with his raft and paddle.\"]}, \"v_hDPLy21Yyuk\": {\"duration\": 76.23, \"timestamps\": [[0, 12.2], [6.48, 20.58], [18.68, 76.23]], \"sentences\": [\"The man with glasses is holding a woman's shoe.\", \" The person is showing ad brush in the packet.\", \" The man brushes the brown shoe with a brush, then he brush it with a different brush.\"]}, \"v_ISEbX4WvBW4\": {\"duration\": 75.14, \"timestamps\": [[0, 21.04], [19.54, 54.1], [49.59, 75.14]], \"sentences\": [\"a small boy is on a tire swing.\", \" the tire swing begins spinning around in a circle with the boy on it.\", \" the boy smiles and laughs as he rides the tire swing.\"]}, \"v_uElCsF1fOgE\": {\"duration\": 221.04, \"timestamps\": [[0, 29.84], [34.26, 135.94], [149.2, 221.04]], \"sentences\": [\"Several couples are dancing in the middle of a busy street.\", \" They smile and twirl around as they dance.\", \" They continue as a small crowd watches.\"]}, \"v_sC7xUkNTpP4\": {\"duration\": 219.27, \"timestamps\": [[0, 219.27], [17.54, 19.73], [83.32, 87.71], [110.73, 129.37], [131.56, 133.75], [209.4, 212.69], [217.07, 219.27]], \"sentences\": [\"A number of children and adults play some type of ball game in a yard.\", \" A white car drives by in the background.\", \" A black car drives by in the background.\", \" Two people walk by in the background.\", \" Another black car drives by in the background.\", \" Another white car drives by in the background.\", \" The ball is kicked into the camera.\"]}, \"v_b8eqn-GTdcc\": {\"duration\": 178.56, \"timestamps\": [[0, 77.67], [47.32, 133.92], [116.07, 174.1]], \"sentences\": [\"A woman is shown speaking to the camera and standing next to a chair.\", \" She holds up various products and begins spraying down a chair.\", \" She wipes down the chair with a rag and presents it in the end.\"]}, \"v_c1tbdVxIhH4\": {\"duration\": 68.64, \"timestamps\": [[0, 15.79], [15.44, 43.59], [43.59, 68.64]], \"sentences\": [\"An older man and a young boy are sitting down in the living room playing with a pumpkin.\", \"The little boy then sticks his hand inside of the Jack-o-lantern and scoops the seeds out of the inside.\", \"Once complete,the screen goes dark and a candle is lit up while the pumping is put on top of it.\"]}, \"v_9iJ8snVY2s0\": {\"duration\": 125.81, \"timestamps\": [[0, 18.87], [26.42, 102.53], [104.42, 125.18]], \"sentences\": [\"A woman shows how to wrap a gift by setting out the paper.\", \"  She cuts the paper and folds it over.\", \"  She tapes the package together and it looks pretty.\"]}, \"v_0F8F-ON083s\": {\"duration\": 66.78, \"timestamps\": [[0, 14.36], [17.03, 49.42], [56.1, 66.78]], \"sentences\": [\"A group gathers at the top of a high dive.\", \" They take turns diving into the pool below.\", \" They each jump off the board head first.\"]}, \"v_74AJ-1e1qGA\": {\"duration\": 10.71, \"timestamps\": [[0, 0.75], [1.55, 7.01], [8.03, 10.71]], \"sentences\": [\"Two men are standing outside a swimming pool.\", \" One lifts another and then throws him into the water.\", \" The man rises up and shakes his head.\"]}, \"v_puPMvwv2kmg\": {\"duration\": 97.71000000000001, \"timestamps\": [[0, 35.66], [30.78, 71.82], [70.35, 95.76]], \"sentences\": [\"Three people are seen moving up and down on an exercise bar.\", \" The men move all around with one leading in front.\", \" The continue to exercise together moving up and down.\"]}, \"v_B0cb0B90Ubg\": {\"duration\": 86.4, \"timestamps\": [[0, 6.48], [8.64, 28.94], [35.86, 86.4]], \"sentences\": [\"A man is kneeling in his backyard.\", \" He is talking about the tools in his hand.\", \" He uses them to groom his hairy dog.\"]}, \"v_H4spfNy_LG4\": {\"duration\": 149.26, \"timestamps\": [[0, 149.26], [6.72, 128.36], [28.36, 50], [44.78, 82.84], [73.14, 99.26], [92.54, 119.41], [111.94, 149.26]], \"sentences\": [\"There some groups of people rafting in a red raft wearing yellow helmets and red vests in a river.\", \" The rafter go down the river through the turbulent waves as they raft with rows in their hands.\", \" The raft suddenly overturns and all the rafters fall into the water.\", \" Another group of people go rafting in their rafts through the rough river water as they try hard to stay afloat.\", \" They go down the river as they doge some rocks and stay afloat in the rough water.\", \" A few of the rafters jump down from the slopes of the small hills that surround the river.\", \" Another group of rafters go down the river while rowing through the swift and rapid waves of the river.\"]}, \"v_ivkF2jbavhc\": {\"duration\": 66.06, \"timestamps\": [[0, 31.05], [31.05, 66.06], [54.17, 59.79]], \"sentences\": [\"A video camera attached to a bus is recording as the bus rides along and opening credits are played.\", \" A woman shows up on the camera playing a song on the piano.\", \" The closing credits to the video are then played the screen.\"]}, \"v_9R2wP-iceaw\": {\"duration\": 151.7, \"timestamps\": [[0, 142.59], [24.27, 28.06], [0, 151.7], [147.9, 151.7]], \"sentences\": [\"People are playing dodge ball in a room.\", \" A man falls down onto the ground.\", \" People are sitting on the side watching the people play.\", \" The people walk onto the mat and high five each other.\"]}, \"v_bc-DycGxV9E\": {\"duration\": 64.69, \"timestamps\": [[0, 11.32], [11, 29.76], [20.7, 47.22], [33.64, 64.69]], \"sentences\": [\"an elder man is walking up a set a stairs holding a toddler's hand.\", \" the man leads the toddler to the top of a slide.\", \" the man sits the child on the slide.\", \" the child then slides down and stands up.\"]}, \"v_u9YrRYp2t3I\": {\"duration\": 117.63, \"timestamps\": [[0, 30], [26.47, 80.58], [68.82, 113.52]], \"sentences\": [\"A man is seen bending down to the camera and a girl riding around on a board.\", \" The people paddle along the water while looking around.\", \" The people continue to ride around the area while sitting and standing and drinking on the beach.\"]}, \"v_V9LudLaWGOM\": {\"duration\": 63.68, \"timestamps\": [[0, 7.32], [9.55, 37.89], [43.62, 63.68]], \"sentences\": [\"A man runs down a track with a javelin.\", \" He holds the javelin over his shoulder, then throws it.\", \" The javelin sails through the air as the man watches.\"]}, \"v_vS0ppdYTwTc\": {\"duration\": 110.3, \"timestamps\": [[6.07, 110.3], [25.37, 41.36], [41.36, 110.3]], \"sentences\": [\"This woman is showing viewers how to french braid hair.\", \" First she sprays the hair with water and then she applies gel to both sides of her hands and rubs it into the hair.\", \" Next she combs the hair and divides a part of the hair into three sections and she does a french braid in the middle of the head, which causes the client in the chair to smile when she's done.\"]}, \"v_jkaevzzYdP8\": {\"duration\": 223.45, \"timestamps\": [[0, 2.23], [3.35, 8.94], [8.94, 223.45], [134.07, 139.65], [178.76, 194.4], [208.92, 223.45]], \"sentences\": [\"We see a title screen over the UK flag.\", \" A man has dogs on a city street near a car.\", \" We see a man in the woods talking into a microphone then interviewing the man with the dogs and see shots of the dogs.\", \" The interviewer plays with the dogs.\", \" We see the dogs run to the men and the interviewer plays with them again.\", \" We see a banner across the bottom of the screen and the man kneeling playing with his dogs.\"]}, \"v_ZXlJIrRiXrA\": {\"duration\": 78.41, \"timestamps\": [[0, 8.23], [13.33, 48.62], [50.18, 78.41]], \"sentences\": [\"A view is seen of snow covered ground and people on the ice.\", \" A man sets up a fishing line in a hole in a lake.\", \" He then pulls a fish through the hole.\"]}, \"v_LANB732DHbo\": {\"duration\": 99.68, \"timestamps\": [[0, 8.47], [24.42, 67.79], [71.27, 99.68]], \"sentences\": [\"A girl mounts a low beam in a gym.\", \" She flips and turns several times.\", \" She then dismounts with her arms in the air.\"]}, \"v_iUGuDzgow2I\": {\"duration\": 48.65, \"timestamps\": [[0, 48.65], [3.89, 41.35], [9.24, 31.13], [27, 39.65], [38.67, 48.65]], \"sentences\": [\"There's a gymnast dressed red leotards performing gymnastics on a horse bar in an indoor gym with another gymnast, some judges and spectators.\", \" The gymnast begins by getting onto the horse bar and does some front and back hand springs.\", \" He continues doing the hand springs and then does a hand stand for a few seconds.\", \" Then he swings back down again in another front hand spring.\", \" He continues to do some more back and front hand springs and then jumps back down in a triple twist jump, off of the horse bar.\"]}, \"v_O3HFalRZVts\": {\"duration\": 123.51, \"timestamps\": [[0, 15.44], [13.59, 24.08], [26.55, 59.9], [48.17, 66.08], [64.22, 123.51]], \"sentences\": [\"a sandwich bun is being sliced open.\", \" turkey is placed on the bred.\", \" then ham is place on the bread.\", \" Next beef is place don the bread.\", \" Cheese is placed on top of the meet then various vegetables are place on top of the sandwich.\"]}, \"v_d79uK3AhtTU\": {\"duration\": 186.31, \"timestamps\": [[0, 28.88], [44.71, 149.05], [158.36, 186.31]], \"sentences\": [\"A man is hanging from a rope, dressed in bungee gear.\", \" He jumps, swinging back and forth from the rope.\", \" He is pulled back up by another man.\"]}, \"v_K98WGaMR4eM\": {\"duration\": 105.43, \"timestamps\": [[0, 105.43], [15.29, 37.96], [62.2, 93.31]], \"sentences\": [\"Two people are wrestling on a mat.\", \" A man in a striped shirt is refereeing for their fight.\", \" A woman picks up another woman and drops her on the mat several times.\"]}, \"v_ecUypvzBAOQ\": {\"duration\": 157.73, \"timestamps\": [[0, 157.73], [0, 36.28], [36.28, 68.61], [67.83, 157.73]], \"sentences\": [\"A women is standing in a kitchen.\", \" She is at a pot of noodles.\", \" She puts the noodles in a bowl.\", \" She adds vegetables and stirs it up.\"]}, \"v_0KqeKi2CBqg\": {\"duration\": 88.49, \"timestamps\": [[0, 2.21], [2.65, 33.63], [34.07, 55.75], [56.19, 83.62], [84.07, 88.49]], \"sentences\": [\"Actress Stella Stevens is shown in a TV show credit opening.\", \" She appears in a restaurant with a man as they sit down at a table.\", \" She stands next to a man setting up a video camera.\", \" She smokes a cigarette on a couch while speaking to a small group of people around her.\", \"  She speaks to people in a hallway.\"]}, \"v_qJ4ObH27qjc\": {\"duration\": 102.24000000000001, \"timestamps\": [[0, 13.29], [17.89, 79.23], [84.86, 102.24]], \"sentences\": [\"a man is shown singing inside a house.\", \" Another man is seated, playing the drums.\", \" Two other men play drums and a keyboard in the background.\"]}, \"v_RTD_JWmhNkA\": {\"duration\": 121.67, \"timestamps\": [[0, 36.5], [13.99, 102.81], [63.88, 121.67]], \"sentences\": [\"Two men are seen sitting down playing guitar with one another.\", \" One man uses his hands and another uses tools to play.\", \" The men continue playing with one another and end by looking to the camera.\"]}, \"v_1UgjxeAPq_A\": {\"duration\": 179.03, \"timestamps\": [[0, 37.6], [29.54, 116.37], [117.26, 179.03]], \"sentences\": [\"a man is in front of a canvas.\", \" the man begins to apply paint to a paintbrush.\", \" the man then begins painting the canvas.\"]}, \"v_Ofnuo7FTHfM\": {\"duration\": 10.47, \"timestamps\": [[0, 2.04], [2.46, 6.18], [6.28, 10.47]], \"sentences\": [\"Two wrestlers are inside a ring together.\", \" They both climb up different ladders.\", \" One of the them knocks the other one off.\"]}, \"v_MHo5kioyrFM\": {\"duration\": 201.67000000000002, \"timestamps\": [[0, 63.52], [64.53, 147.22], [148.22, 195.62]], \"sentences\": [\"A person walks into frame speaking to the camera and holding up a box and various tools.\", \" She then begins wrapping the box with a bow.\", \" She continues wrapping and speaking to the camera.\"]}, \"v_6l0JqBhldeA\": {\"duration\": 126.09, \"timestamps\": [[0, 6.93], [15.13, 76.91], [81.32, 126.09]], \"sentences\": [\"A man is walking on a beach.\", \" He uses a mallet to hit a ball against another ball.\", \" He walks over to the other ball and tries to get it through a hoop.\"]}, \"v_sOMA_oI7dgk\": {\"duration\": 198.13, \"timestamps\": [[3.96, 98.07], [98.07, 144.63], [146.61, 160.48], [160.48, 192.18]], \"sentences\": [\"A woman talks in a gym sitting on a rowing machine.\", \" Then, the woman puts her shoes in the rowing machine and starts to pull a handle with a string.\", \" The woman shows with her right hand the movement of her bottom.\", \" Then, the woman continues exercising, after she stops and talks again.\"]}, \"v_iFA1XhZ6VM8\": {\"duration\": 144.56, \"timestamps\": [[2.17, 44.09], [44.81, 82.4], [83.12, 127.93], [127.93, 138.78]], \"sentences\": [\"The ingredients for a chocolate cake is displayed, then a person puts flour oil, eggs, milk in a bowl.\", \" Then, the person mix all the ingredients and adds chocolate and mix it again.\", \" After, the person adds the mix in a baking pan which puts in a rice cooker for 30 min.\", \" Next, the person take out the cake and put on a plate.\"]}, \"v_kWdIYqh6kEo\": {\"duration\": 193.17, \"timestamps\": [[0, 57.95], [51.19, 126.52], [113.97, 192.2]], \"sentences\": [\"A countdown is shown that leads into clips of hockey players scoring goals.\", \" More clips are shown as the number counts down and people play.\", \" The shots continue to be shown of people scoring goals while the number counts down.\"]}, \"v_bfk3xsTt0XA\": {\"duration\": 61.53, \"timestamps\": [[0, 7.38], [7.38, 23.07], [23.07, 55.07], [55.07, 61.53]], \"sentences\": [\"A man in a red shirt pours water over his head.\", \" Images and video clips of teams playing beach soccer in the sand.\", \" Video clips of different beach soccer teams taking shots at the goal.\", \"A soccer player in a red uniform takes a shot at the goal from the goalies perspective.\"]}, \"v_ofZURf7w9wk\": {\"duration\": 164.7, \"timestamps\": [[0, 12.35], [18.94, 101.29], [108.7, 164.7]], \"sentences\": [\"A couple of people are meeting inside a gym.\", \" A girl interviews with the camera.\", \" Then she is seen engaged in a game of jousting with an opponent.\"]}, \"v_Rq1MoqtH8fM\": {\"duration\": 237.55, \"timestamps\": [[0, 45.13], [47.51, 117.59], [106.9, 186.48], [188.85, 231.61]], \"sentences\": [\"A lawn mower and other tools are seen when a man walks into frame.\", \" The man then begins cutting the grass with a weedwacker along the sides.\", \" He blows the grass around and begins using the lawn mower around the yard.\", \" He finishes by grabbing the leaf blower.\"]}, \"v_EDkYPikPWW8\": {\"duration\": 66.39, \"timestamps\": [[0, 14.94], [7.97, 42.16], [36.18, 66.39]], \"sentences\": [\"People are standing near a tree.\", \" A woman is putting blindfold to the other girl and rotate her several times.\", \" The girl walked towards the pinata and hit it.\"]}, \"v_v1Vmf5s42No\": {\"duration\": 22.41, \"timestamps\": [[0, 3.7], [3.7, 16.69], [16.81, 22.41]], \"sentences\": [\"Two women are outside walking away from a blue building with the sign Owen's above it.\", \"As they walk,the woman begins smoking a cigarette and looking out into the city.\", \"The younger girl then grabs her cigarette and starts smoking as well and looking around.\"]}, \"v_F3iZD7tm8Io\": {\"duration\": 74.86, \"timestamps\": [[0, 30.32], [31.44, 61.76], [61.76, 74.86]], \"sentences\": [\"This woman is wearing a purple sports bra and blue panties as she runs and goes flying onto the beam.\", \" Then another woman comes up and she is wearing black shorts and a shirt.\", \"  She flies onto the blue mat and other people watch as she does her trick.\"]}, \"v_bMJlN9iPpCI\": {\"duration\": 189.52, \"timestamps\": [[0, 58.75], [52.12, 142.14], [116.56, 175.31]], \"sentences\": [\"A man is seen putting sunscreen on herself and a child and leads into news anchors hosting a show.\", \" The two speak with one another that leads into more clips of sunscreen and people putting it on.\", \" The woman and man finish by speaking more.\"]}, \"v_iDhzxzLmwoI\": {\"duration\": 185.21, \"timestamps\": [[0, 60.19], [60.19, 185.21], [0, 185.21]], \"sentences\": [\"men are standing on a rooftop fixing the roof and are taking off the tiles of the roof.\", \" men are standing next to the pool taking off the wooden in the pool.\", \" men are fixing he wooden from a hous in the rooftop and in the swimming pool.\"]}, \"v_FfYNkePtHjo\": {\"duration\": 154.79, \"timestamps\": [[0, 34.83], [33.28, 113.77], [104.48, 150.92]], \"sentences\": [\"Four people are seen standing ready and begin a game of badminton.\", \" The people hit the birdie all around the area and stop to shake hands with one another.\", \" They walk around the field a bit while speaking to one another.\"]}, \"v_QzbZxKJ-YBY\": {\"duration\": 160.38, \"timestamps\": [[0, 23.26], [28.07, 126.7], [129.11, 160.38]], \"sentences\": [\"A group of female dancers are performing on a stage.\", \" They are belly dancing, moving their hips to the music.\", \" They dance in unison using flashing lights and props.\"]}, \"v_G5frRzhSNJ8\": {\"duration\": 232.18, \"timestamps\": [[0, 45.27], [45.27, 118.41], [134.66, 232.18]], \"sentences\": [\"a boy is in a salon chair.\", \" a woman is cutting the boy's hair.\", \" the woman then washes the boys hair.\"]}, \"v_nfIM66dU_J0\": {\"duration\": 94.22999999999999, \"timestamps\": [[0, 34.86], [33.92, 59.83], [61.72, 86.69]], \"sentences\": [\"Kids are in a gym working out on the floor.\", \" A boy is kicking a mat being held by a man.\", \" A boy is wearing boxing gloves practicing boxing.\"]}, \"v_pc5_pexVob8\": {\"duration\": 190.5, \"timestamps\": [[0, 17.14], [12.38, 31.43], [41.91, 110.49], [95.25, 161.92], [155.26, 190.5]], \"sentences\": [\"A man in goggles is holding a guitar.\", \" A woman stands at a microphone.\", \" Several people begin chopping vegetables.\", \" The chopped veggies are poured on to a tarp.\", \" The salad is then served.\"]}, \"v_cr9VTwfM_2w\": {\"duration\": 74.33, \"timestamps\": [[0, 70.98], [5.95, 43.85], [51.29, 74.33]], \"sentences\": [\"A boy goes skateboarding on a street and attempts tricks.\", \"  Sometimes, he fails and other times he can perform a kickflip.\", \"  He falls down and then has to run after the board.\"]}, \"v_9T1C2CW_P0A\": {\"duration\": 171.62, \"timestamps\": [[0, 67.79], [67.79, 136.44], [136.44, 171.62]], \"sentences\": [\"Five men are in a room together making up a band,three of them are playing the guitar,one is the singer,and the other is playing the drums.\", \"As the song continues,the singer begins making several faces and grabbing the mic to evoke emotion into the song he is singing.\", \"While he is playing,the camera then moves to the rest of the guys and shows close ups of the men playing the drums and showing their enthusiasm.\"]}, \"v_-_gDSRlC1kg\": {\"duration\": 65.23, \"timestamps\": [[0, 10.11], [12.72, 38.16], [39.46, 65.23]], \"sentences\": [\"A hockey player is yelling at someone off camera.\", \" He is then seen standing around.\", \" He engages in practicing curling for a team.\"]}, \"v_q8c_0JTe5r8\": {\"duration\": 130.31, \"timestamps\": [[0, 22.15], [20.2, 67.11], [66.46, 130.31]], \"sentences\": [\"batter is placed into a baking dish.\", \" different kinds of batter is entered in layers.\", \"the batter is spread with a butter knife.\"]}, \"v_-bqaXU4s8Qs\": {\"duration\": 55.36, \"timestamps\": [[0, 9.96], [10.79, 41.24], [44.29, 55.36]], \"sentences\": [\"An older man is standing in a parking lot.\", \" He is using a hose on the side of a large truck.\", \" He sprays debris from the truck with the hose.\"]}, \"v_tznMNEWglxY\": {\"duration\": 41.47, \"timestamps\": [[0, 41.47], [7.05, 30.48], [30.48, 41.47]], \"sentences\": [\"Several girls are in a gymnastics gym practicing and warming up.\", \" One of the girls begins to do a performance on the balance beam.\", \" Another girl comes behind her to begin a performance on the balance beam.\"]}, \"v_5nOc03oiFvk\": {\"duration\": 213.44, \"timestamps\": [[0, 16.01], [16.01, 113.12], [113.12, 180.36], [180.36, 213.44]], \"sentences\": [\"A boy on a bicycle prepares to go rock climbing.\", \" The boy sets up his climbing gear and proceeds to climb a rock mountain.\", \" The boy is climbing shirtless while secured by a climbing rope.\", \" The boy repels down the side of the cliff secured by a rope and pulleys.\"]}, \"v_rDT4ngAfeHs\": {\"duration\": 11.7, \"timestamps\": [[1.64, 11.7], [1.7, 11.7], [1.93, 11.7]], \"sentences\": [\"A man is wearing a yellow vest and a mask.\", \" He is holding onto a black hose.\", \" He is vacuuming the floor underneath him.\"]}, \"v_1ebIpLiTCvw\": {\"duration\": 184.79, \"timestamps\": [[0, 45.27], [47.12, 89.62], [80.38, 181.09]], \"sentences\": [\"A woman is seen speaking to the camera while a dog moves in and out of frame.\", \" Two pieces of bread are shown with ingredients on top and the woman wrapping them up.\", \" She shows off several bags of lunches and made and finally drives around and area giving homeless people the bags.\"]}, \"v_Snj5CuEUbPI\": {\"duration\": 178.14, \"timestamps\": [[0, 55.22], [45.43, 127.37], [109.56, 173.69]], \"sentences\": [\"A person is seen writing on a paper followed by people walking around and speaking to one another.\", \" People then ride around in a raft down a river past one another.\", \" They smile and gesture to the camera as well as continue paddling down the river and walking around.\"]}, \"v_rmzMfd9ftU8\": {\"duration\": 131.87, \"timestamps\": [[0, 8.57], [9.23, 32.31], [32.31, 75.16], [75.16, 114.06], [114.72, 125.27], [125.93, 131.87]], \"sentences\": [\"A \\\"Very Berry Professional Cleaning\\\" logo and \\\"Limescale on sink\\\" appears on screen.\", \" A woman stands by a sink pointing out limescale.\", \" She pours a cleaner on and starts scraping.\", \" She sprays the scraped areas and wipes them down.\", \" She stands out by her company vehicle and gives the website address.\", \"  The logo reappears on screen.\"]}, \"v_o0cVs7THLi8\": {\"duration\": 75.05, \"timestamps\": [[0, 15.76], [13.51, 33.4], [31.14, 75.05]], \"sentences\": [\"The man is skating backward while carrying a pole.\", \" A man crouch looking and measuring at the stones on the floor.\", \" The man pushed the stone as the two other men brushed the front of the stone as it glide down the circle.\"]}, \"v_n9TuUTNpKwg\": {\"duration\": 88.47, \"timestamps\": [[0, 11.5], [12.39, 53.08], [59.72, 88.47]], \"sentences\": [\"An athlete is running quickly down a track.\", \" She takes a giant leap, landing in a sand pit.\", \" She walks away, looking tired and disappointed.\"]}, \"v_JmtcnoHa66U\": {\"duration\": 94.28999999999999, \"timestamps\": [[0, 20.74], [20.74, 90.04], [90.04, 94.29]], \"sentences\": [\"girl is standing in front of a balance beam and make a jump to gets on top.\", \" girl start doing gymnastics in the balance beam in a competition in a roofed gym.\", \" a lot of people are sitting on stands watchin the competition.\"]}, \"v_sc_L4zUEb7E\": {\"duration\": 128.22, \"timestamps\": [[0, 4.49], [4.49, 81.42], [81.42, 128.22]], \"sentences\": [\"There are kids sitting in oversized snow tubes and are moving themselves back and forth so they can go down the snowy hill.\", \"They finally get momentum and the kids go sliding down the long, wide and snowy hill, and various clips of other people are also shown riding down the hill.\", \"A woman is shown sitting on a tube and looks like the camera is handed to her and the view changes from her point of view and shows her point going down the hill and anything she looks at.\"]}, \"v_1L_4N307nBk\": {\"duration\": 93.0, \"timestamps\": [[0, 14.88], [14.88, 65.1], [65.1, 93]], \"sentences\": [\"girl is doing gymnastics in a balance beam in a roofed gym while people around her are practicing gymnastics too.\", \" the woman is stretching on the floor and walking in a low balance beam with mats behind the beam.\", \" a coach is helping the girl and enxt to her a kid is stretching too.\"]}, \"v_RrEJ2-TfWCI\": {\"duration\": 67.39, \"timestamps\": [[1.01, 19.88], [20.22, 49.53], [42.45, 65.03]], \"sentences\": [\"Two men are seen speaking to the camera holding lacrosse sticks.\", \" The men pretend to hit and push one another while still speaking.\", \" They continue to demonstrate moves while looking to the camera.\"]}, \"v_rZu5ZJmAlbI\": {\"duration\": 230.46, \"timestamps\": [[0, 230.46], [0, 229.31], [0, 228.15]], \"sentences\": [\"man is standing in a backyard and its painting an old wooden fence.\", \" man is in a sunny day painting a wooden fence.\", \" man is in a backyard holding a paining pipe and painting the fence.\"]}, \"v_tFiXLhbKdnk\": {\"duration\": 66.26, \"timestamps\": [[1.66, 3.98], [3.98, 62.62], [64.27, 66.26]], \"sentences\": [\"A woman bends down and puts a rag into a white bucket.\", \" She starts to wipe a car with the rag.\", \" A man walks up behind her holding a vacuum hose.\"]}, \"v_-GRvxWH4axc\": {\"duration\": 21.97, \"timestamps\": [[0, 6.37], [6.48, 18.56], [18.12, 21.97]], \"sentences\": [\"A big furry bear with pink and purple polka dots is in the form of a pinata hanging down from the string.\", \"As it moves,a little girl dressed in a floral dress begins taking several wack at the pinata but she isn't capable of breaking it.\", \"When her turn is complete,she then passes the stick to the other boy who looks anxiously at the pinata.\"]}, \"v_iNs17kcwlDk\": {\"duration\": 100.03, \"timestamps\": [[0, 100.03], [0, 95.03], [3, 100.03]], \"sentences\": [\"man is playing congas in a living room.\", \" man wearing a green shirt is playing congas.\", \" a man is sitting in front of stairs playing congas.\"]}, \"v_HQP20PGfwYM\": {\"duration\": 178.01, \"timestamps\": [[0, 14.24], [30.26, 123.71], [136.17, 178.01]], \"sentences\": [\"A couple of men are kneeling on the floor.\", \" They are removing carpeting from the wall and floor.\", \" They are going to pull it up and replace it.\"]}, \"v_LPV3n9LeQ80\": {\"duration\": 125.95, \"timestamps\": [[0, 35.89], [23.3, 81.24], [76.83, 120.91]], \"sentences\": [\"Two people are seen hosing a news segment that leads into a man speaking in a snow storm.\", \" Cars are shown off the roads as well as people driving around.\", \" People shovel out snow as well as speak to the camera and show more clips of people driving.\"]}, \"v_M2wdIwZMNm8\": {\"duration\": 171.09, \"timestamps\": [[2.57, 54.75], [44.48, 124.04], [105.22, 166.81]], \"sentences\": [\"A person is seen sitting on the snow around a hole and loading up a pole.\", \" He looks at a machine and continues adjusting his pole.\", \" He moves his pole around a bit and holds up a fish that he catches.\"]}, \"v_GoFV8lTD4ug\": {\"duration\": 123.09, \"timestamps\": [[4.31, 17.85], [17.85, 60.93], [26.46, 27.08], [64.01, 74.47]], \"sentences\": [\"A man stands up and walks onto a stage.\", \" The man starts playing a flute on the stage.\", \" A woman is holding a cigarette watching.\", \" The man steps on the tables and continues playing.\"]}, \"v_Snq0l-gKpWo\": {\"duration\": 33.72, \"timestamps\": [[1.01, 31.52], [12.81, 25.29], [25.12, 29.33]], \"sentences\": [\"Kids are standing on a bed.\", \" They lift the girl up on their shoulders.\", \" They drop her and throw her down on the bed.\"]}, \"v__cA6yS9SeEc\": {\"duration\": 134.2, \"timestamps\": [[17.45, 25.5], [54.35, 65.09], [76.5, 90.59]], \"sentences\": [\"Man puts up a very bright red triangle.\", \"  Man loosens the lug nuts with a wrench.\", \"  Man puts a jack below the car.\"]}, \"v_ZYwfvPJv4Rk\": {\"duration\": 61.58, \"timestamps\": [[0, 4.93], [7.08, 43.41], [49.26, 61.58]], \"sentences\": [\"A boy is wearing a pair of headphones.\", \" He is riding a riding lawn mower.\", \" He is mowing the lawn back and forth.\"]}, \"v_J8B2dX3FLTo\": {\"duration\": 204.57999999999998, \"timestamps\": [[0, 34.78], [51.15, 170.83], [172.87, 204.58]], \"sentences\": [\"Clips are shown of a younger justin beiber playing the piano.\", \" He sways back and forth as he plays the piano.\", \" He is then shown playing a guitar and singing.\"]}, \"v_nHwqBo0xvog\": {\"duration\": 48.09, \"timestamps\": [[0, 47.85], [26.93, 37.03], [0, 48.09]], \"sentences\": [\"wo kids are playing footbal on a park.\", \" man is slowly walking on a path.\", \" two blonde kids are playing with a ball in a green grassy field.\"]}, \"v_u2329Chp6IY\": {\"duration\": 165.19, \"timestamps\": [[0, 53.69], [53.69, 110.68], [110.68, 165.19]], \"sentences\": [\"A room is shown with a small rink and a bunch of adults going around in a small oval in bumper cars.\", \"Since they are in a small area,they get congested and start hitting each other and spinning in a circle.\", \"The behavior continues and then the ride finally stops and they get out.\"]}, \"v_hSlydQ9rJuk\": {\"duration\": 53.29, \"timestamps\": [[0, 11.99], [9.33, 38.9], [33.31, 53.29]], \"sentences\": [\"a woman holds a frisbee in front of a dog's face in a park.\", \" the dog jumps toward the frisbee.\", \" the two then run around the park performing several tricks.\"]}, \"v_xfhwYTFCGYY\": {\"duration\": 104.53999999999999, \"timestamps\": [[5.75, 9.93], [29.79, 35.02], [47.04, 55.93], [68.99, 87.29]], \"sentences\": [\"A woman is ironing a shirt on a board.\", \" She plugs the iron in and turns the knob.\", \" She pours water into the iron.\", \" She starts ironing the shirt and hangs it on a hanger.\"]}, \"v_86Yl3F2HSik\": {\"duration\": 91.37, \"timestamps\": [[0, 14.16], [20.1, 61.68], [63.96, 91.37]], \"sentences\": [\"A man is bouncing a tennis ball on a court.\", \" He drops the ball, then swings his bat.\", \" He hit it with the racquet over the net, then displays other moves.\"]}, \"v_WaVrNbTmbU4\": {\"duration\": 107.63, \"timestamps\": [[0, 29.06], [29.06, 76.41], [76.41, 107.63]], \"sentences\": [\"old man is talking to the camera and showing different type of brushes.\", \" the man standing next to an old chair varnishing the chair.\", \" the man is in the room showing how to wash the brush putting it in water in a bucket and save it on the package.\"]}, \"v_FeWZkO6kZl0\": {\"duration\": 214.37, \"timestamps\": [[0, 32.16], [37.51, 139.34], [153.27, 214.37]], \"sentences\": [\"A group of female team mates are on a field.\", \" They are engaged in a game of field hockey.\", \" They run and celebrate when getting a goal.\"]}, \"v_FlLDPameKGM\": {\"duration\": 10.08, \"timestamps\": [[0, 0.45], [1.36, 5.14], [5.95, 10.08]], \"sentences\": [\"A woman is wearing a green robe.\", \" She sits on the edge of her bed.\", \" She uses a brush to brush her long hair.\"]}, \"v_BQ_BJNFGmTg\": {\"duration\": 65.32, \"timestamps\": [[0, 65.32], [0, 61.73], [61.4, 65.32]], \"sentences\": [\"A man is sitting down on the floor.\", \" He is playing two drums with his hands in front of him.\", \" He stops paying and puts his hands down.\"]}, \"v_f4CSejhkTd8\": {\"duration\": 120.81, \"timestamps\": [[0, 16.31], [16.91, 83.36], [79.13, 119.61]], \"sentences\": [\"A man and woman are seen speaking to the camera and leads into several clips of people working out.\", \" The two are seen speaking again and shows a close up of a machine.\", \" A woman works out on the machine and the man finishes speaking.\"]}, \"v_xs5imfBbWmw\": {\"duration\": 232.36, \"timestamps\": [[0, 5.81], [5.81, 228.88], [230.04, 232.36]], \"sentences\": [\"A video opens with people on a raft with text on the screen describing a vacation destination and logos of various sponsors.\", \"  Various clips are shown of people on yellow rafts rafting down a river  as a voice over on the film gives the specifics of this destination and activities and guests and clients are shown giving live opinions on the experience.\", \"   The screen changes to a still with text and logos of sponsors.\"]}, \"v_Hxgjh9Yb408\": {\"duration\": 29.28, \"timestamps\": [[0.29, 6.88], [6.3, 14.79], [13.47, 28.26]], \"sentences\": [\"A person is seen riding in on a horse chasing a calf.\", \" The shot is shown again several times.\", \" The person ropes the calf and another person rides in on a horse.\"]}, \"v_D-wP7_1A_Kw\": {\"duration\": 74.53999999999999, \"timestamps\": [[6.34, 32.42], [6.34, 29.07], [51.43, 52.18]], \"sentences\": [\"People are playing volleyball on a beach.\", \" People are in the stands watching them.\", \" People are holding up cards with numbers on them.\"]}, \"v_RnRUwLtR33g\": {\"duration\": 27.15, \"timestamps\": [[0.14, 27.01], [3.8, 20.09], [16.29, 17.37], [20.22, 25.52]], \"sentences\": [\"A lady speaks while outside on a windy day.\", \" The lady jumps rope on the pavement.\", \" The lady swings the rope to the side.\", \" The credits of the clip are shown.\"]}, \"v_bY2dgTJFWko\": {\"duration\": 73.86, \"timestamps\": [[0, 15.51], [14.77, 48.75], [44.32, 70.17]], \"sentences\": [\"A person is seen performing flips on a rope.\", \" The person jumps down and is shown again doing flips.\", \" The person continuously perform flips on the rope while falling off and getting back on.\"]}, \"v_rWdXyKZnL2U\": {\"duration\": 151.49, \"timestamps\": [[0, 18.18], [18.94, 29.54], [31.81, 151.49]], \"sentences\": [\"A man in a black hat is holding a violin.\", \" He begins to play the violin.\", \" He puts the violin down and continues talking.\"]}, \"v_bH-S32gOlCA\": {\"duration\": 218.55, \"timestamps\": [[0, 15.3], [0, 218.55], [24.04, 33.87]], \"sentences\": [\"hockey players are sitting on the bank on a court side.\", \" people are playing hockey on ice on a court.\", \" team players are posing for a picture.\"]}, \"v_V6B8zFv1DdA\": {\"duration\": 126.27, \"timestamps\": [[0, 77.03], [19.57, 85.86], [75.76, 123.11]], \"sentences\": [\"A large group of people are seen running around a field playing soccer.\", \" Several players are shown speaking to the camera while they continue to play.\", \" The run up and down the field and the reporter is shown speaking.\"]}, \"v_NnMMEFglHBQ\": {\"duration\": 158.9, \"timestamps\": [[0, 21.45], [16.68, 45.29], [44.49, 158.9]], \"sentences\": [\"a woman is knelled down next to a vacuum cleaner.\", \" the woman talks to the camera.\", \" the woman then demonstrates the vacuum.\"]}, \"v_YTBmMSIczEc\": {\"duration\": 13.65, \"timestamps\": [[0, 2.8], [3.69, 8.12], [8.53, 13.65]], \"sentences\": [\"A group of hockey players are on the ice in a gym.\", \" They are using sticks to hit at the puck back and forth.\", \" The players fight over the puck, trying to get it into the goal.\"]}, \"v_KRSBbX-itrY\": {\"duration\": 43.33, \"timestamps\": [[0, 43.33], [0, 25.35], [0, 20.58], [23.18, 43.33]], \"sentences\": [\"People are tubing down a river.\", \" There are large rocks in front of them in the water.\", \" A person is standing in the water behind the people on tubes.\", \" They go down a large water fall and two of the people fall out of their tube.\"]}, \"v_PL1JmxPH7y4\": {\"duration\": 47.76, \"timestamps\": [[0.48, 9.08], [9.08, 29.85], [28.66, 46.09]], \"sentences\": [\"A person walks into frame and lays down on an exercise equipment.\", \" The man then begins moving up and down continuously.\", \" He gets up and walks back to the camera.\"]}, \"v_PvB98KAatK8\": {\"duration\": 204.96, \"timestamps\": [[2.05, 45.09], [47.14, 111.7], [106.58, 169.09], [163.97, 201.89]], \"sentences\": [\"A man is seen moving around and leads into a man with his arms out.\", \" A close up of a wakeboard is shown and a woman puts on a lifejacket.\", \" More people are seen sitting in the water and ride on the board behind the boat.\", \" A man is seen driving the boat as they continue to ride along.\"]}, \"v_HWcWElJfEjw\": {\"duration\": 172.73, \"timestamps\": [[0, 15.55], [24.18, 94.14], [115.73, 172.73]], \"sentences\": [\"a man is standing in front of a large plastic dome.\", \" He fills it with streamers and toys.\", \" He is demonstrating how things can be preserved inside it as a keepsake.\"]}, \"v_pXyT_AybrQ8\": {\"duration\": 161.96, \"timestamps\": [[2.43, 45.35], [38.87, 115.8], [94.75, 158.72]], \"sentences\": [\"A man is seen sitting on a stair speaking to the camera.\", \" He holds up wood and tools while still speaking.\", \" He then begins ripping up carpet on the floor and showing it to the camera.\"]}, \"v_sVT71OQjHE0\": {\"duration\": 55.49, \"timestamps\": [[0, 18.03], [13.87, 33.85], [37.45, 54.65]], \"sentences\": [\"A wall is shown and shows a woman walking into frame.\", \" The woman splatters plaster on the wall and lays it out.\", \" She continues spreading the plaster and turns to laugh at the camera.\"]}, \"v_qx1FNJxiUuE\": {\"duration\": 134.7, \"timestamps\": [[0, 7.41], [7.41, 26.94], [26.94, 61.29], [61.29, 96.31], [96.31, 134.7]], \"sentences\": [\"man is standing talking to the camera talking about caramel cookies.\", \" man is putting the caramel between the cookies and put grated coconut on the sides.\", \" the man talks to the camera and mash the cookies dough and make the cookies form.\", \" and put the cookies on waxes paper in metal tray.\", \" th man put caramel betwee cookies and put the grated coconut.\"]}, \"v_CQXhtaNkhrw\": {\"duration\": 136.98, \"timestamps\": [[0, 11.64], [11.64, 58.9], [58.9, 136.98]], \"sentences\": [\"A man with white hair plays an accordion on a stage.\", \" The man smiles and looks around while performing.\", \" The man moves to the music while playing and grabs the microphone and speaks into the microphone as he completes his performance.\"]}, \"v_KzogfJrOqJE\": {\"duration\": 222.68, \"timestamps\": [[0, 14.47], [14.47, 24.49], [24.49, 36.74], [36.74, 99.09], [99.09, 132.49], [132.49, 180.37], [180.37, 207.09], [207.09, 222.68]], \"sentences\": [\"A woman is standing at a faucet and filling a metal bucket with water and the green word \\\"Laundry!\\\" quickly pops up on the screen.\", \" The woman walks out of view while the metal bucket is still filling and she passes larger bucket on the grass.\", \" The woman returns and she has a small wooden stool that she places near the larger bucket.\", \" The woman then grabs the bucket of water and pours the water into the larger bucket, refills the bucket again and returns to the area, puts the bucket down and sits on the wooden stool.\", \" The woman reaches over to the large pile of clothes wrapped in a large cloth, pulls out a piece of clothing and begins to wash and scrub the clothing by hand.\", \"The woman then wrings out the clothing item then sticks it into the smaller bucket and now the video is in a sepia tone color as she washes more clothing items, wrings them out and puts them into the smaller bucket until she has done all pieces of clothing includes the largest fabric they were all wrapped in.\", \"The woman is now standing under a clothes line and is hanging her largest piece of fabric followed by smaller pieces of fabric that she has washed.\", \" When the woman is done hanging all the clothes the video goes back to color, the woman talks to the camera and a black screen appears with green lettering that say \\\"I got three words for Ghana Invest In Appliances!:)\\\".\"]}, \"v_DQVkDzj4cPE\": {\"duration\": 178.54, \"timestamps\": [[0, 8.93], [8.93, 79.45], [80.34, 178.54]], \"sentences\": [\"Two people are laying stomach side down in a shallow pool.\", \"  They start kicking the water with their legs.\", \" They grab flotation devices and practice swimming with them.\"]}, \"v_iiqaJGokpEw\": {\"duration\": 60.7, \"timestamps\": [[0, 8.8], [10.02, 40.67], [42.18, 60.7]], \"sentences\": [\"A group of people are gathered in a yard.\", \" A man is using a stick while he is blindfolded to hit a pinata.\", \" He swings the bat several times, hitting a woman in the face.\"]}, \"v_-79MZQX4CEA\": {\"duration\": 65.23, \"timestamps\": [[0, 10.76], [11.41, 24.13], [24.46, 48.27], [60.66, 65.23]], \"sentences\": [\"A man in a suit is sitting at a desk.\", \" Another man in a suit is talking in front of a large television.\", \" People are playing soccer on a field of grass.\", \" Two men in suits are talking behind a desk.\"]}, \"v_9cJi1iD7Iyo\": {\"duration\": 180.65, \"timestamps\": [[0, 10.84], [11.74, 168.91], [170.72, 180.65]], \"sentences\": [\"A woman stands on a rocky shore with the words \\\"Tai-ji-quan Forma de 10 ejercicios de estilo yang\\\" overlaid on the screen.\", \"  She performs slow, tai chi-like techniques by the water with the sun to her back.\", \" She finishes her routine and the director and copyright are shown on screen.\"]}, \"v_cUdIbmXb2yI\": {\"duration\": 102.49000000000001, \"timestamps\": [[0, 28.19], [28.19, 68.16], [68.16, 102.49]], \"sentences\": [\"people are sitting on stairs  talking between them ni front of a sea.\", \" woman and a kid stands and starts dancing doing a choeography.\", \" band is in stage playing a song and dancing while people are watching them.\"]}, \"v_1qU2CdUQbw0\": {\"duration\": 215.39, \"timestamps\": [[0, 6.46], [25.85, 45.23], [45.23, 49.54], [52.77, 89.39], [89.39, 112], [115.23, 127.08], [132.46, 160.46], [160.46, 183.08]], \"sentences\": [\"A large Buddha statue is shown.\", \" A woman is jump roping and exercising in a room.\", \" She tapes her hands with white tape.\", \" She begins to work out in a boxing ring.\", \" She does sit ups on a towel on the beach.\", \" She continues working out in a gym.\", \" She starts boxing in the ring with a guy.\", \" Pictures of her in her bikini are shown.\"]}, \"v_lneRTkBTPwg\": {\"duration\": 79.85, \"timestamps\": [[0, 6.39], [6.79, 58.69], [58.69, 79.85]], \"sentences\": [\"Two people are fencing while people watch from the sidelines.\", \" They stop and change sides.\", \"  They change sides again and people walk by.\"]}, \"v_YNo7-L8VQWw\": {\"duration\": 149.17000000000002, \"timestamps\": [[0, 17.15], [23.87, 62.65], [79.8, 149.17]], \"sentences\": [\"a man is talking outside in a parking lot.\", \" He shows a funnel to the camera as he talks.\", \" HE then uses the funnel to clear snow from the outside of a vehicle.\"]}, \"v_M-n0vW3p2sE\": {\"duration\": 40.15, \"timestamps\": [[0, 3.41], [3.61, 32.72], [32.92, 40.15]], \"sentences\": [\"A young man prepares to mount a pair of balancing beams in an indoor arena.\", \" He mounts the bars and begins performing.\", \" He attempts to dismount but falls instead.\"]}, \"v_dMryzJswHY8\": {\"duration\": 143.59, \"timestamps\": [[0, 75.39], [75.39, 136.41], [135.7, 140.72]], \"sentences\": [\"A man disassembles a bicycle and baby stroller combination device to make the stroller standalone.\", \" The sequence is steps is repeated.\", \" A website address is shown on a black background.\"]}, \"v_lI6h3H4Zs98\": {\"duration\": 91.46000000000001, \"timestamps\": [[0, 5.95], [6.4, 46.65], [47.1, 88.72], [88.72, 91.46]], \"sentences\": [\"A young man places a trophy on a shelf.\", \"  A group of young people perform sophisticated jump rope tricks in a gym.\", \" Members are interviewed throughout the video.\", \" The jump rope is dropped on the floor as the person walks away.\"]}, \"v_IgAE9XJVIlk\": {\"duration\": 106.12, \"timestamps\": [[0, 30.24], [27.06, 73.22], [70.04, 102.4]], \"sentences\": [\"A person is seen break dancing on a roof in the day as well as night.\", \" The man moves his body around while the camera spins around him.\", \" He continues to dance around while looking off into the distance.\"]}, \"v_91WRZuT4c6E\": {\"duration\": 111.64, \"timestamps\": [[0, 111.64], [25.68, 59.73], [66.99, 111.64]], \"sentences\": [\"A group of people clean cars at a car wash.\", \"  A person is interviewed about the process.\", \"  The people at the end make cars perfect.\"]}, \"v__nGlzZystmo\": {\"duration\": 139.02, \"timestamps\": [[0, 12.51], [12.51, 139.02], [0, 139.02]], \"sentences\": [\"two men are practicing futball movements on an empty court.\", \" men are playing futsal in a roofed court annotating goals.\", \" men are playing in a roofed gym.\"]}, \"v_EFEI0-awheU\": {\"duration\": 19.78, \"timestamps\": [[4.75, 6.63], [6.63, 10.39], [16.32, 19.78]], \"sentences\": [\"A man in glasses is talking.\", \" Another man is sitting down at a table ironing a shirt.\", \" He takes a drink of his water and spits it onto what he is ironing.\"]}, \"v_4CsTbXdERSU\": {\"duration\": 188.76, \"timestamps\": [[0, 24.54], [36.81, 101.93], [103.82, 188.76]], \"sentences\": [\"A rooftop view is shown of several houses.\", \" We see a man using a hose with fire.\", \" He is applying a rubber layer to the roof of a house.\"]}, \"v_cFCN9QE1M0c\": {\"duration\": 42.98, \"timestamps\": [[0, 5.37], [7.95, 21.28], [22.78, 42.98]], \"sentences\": [\"A man is standing and performing on a stage.\", \" He is playing a small flute.\", \" A group of women are dancing and singing in the background.\"]}, \"v_FIaXCUPjFY0\": {\"duration\": 29.03, \"timestamps\": [[0, 22.64], [1.16, 22.64], [22.93, 29.03]], \"sentences\": [\"A man holds a small white dog under water.\", \" A woman in sunglasses is standing behind the dog helping wash it.\", \" They then set the dog down on the patio.\"]}, \"v_Y2UkP0rySHA\": {\"duration\": 105.47, \"timestamps\": [[0, 6.33], [6.33, 103.88], [104.94, 105.47]], \"sentences\": [\"People are standing at the top of a hill.\", \" A person is skiing down a hill of snow.\", \" They get to the bottom of the hill and stop.\"]}, \"v_QjMNQxu3Zf8\": {\"duration\": 70.59, \"timestamps\": [[0, 70.59], [15.18, 70.59], [69.88, 70.59]], \"sentences\": [\"A woman is brushing her teeth in a bathroom.\", \" She laughs and continues to brush her teeth.\", \" She then bends over and spits into a sink.\"]}, \"v_5wQLpjdsRUg\": {\"duration\": 122.35, \"timestamps\": [[0, 14.07], [13.46, 48.33], [42.21, 52.61], [42.21, 65.46], [59.95, 121.73]], \"sentences\": [\"A black screen with the users name.\", \" VHS video clips of two men appearing to be fencing.\", \" Various VHS recorded fencing matches appear.\", \" The video continues with old fencing games recorded in grainy VHS.\", \" A young boy talks about the matches to the camera.\"]}, \"v_LLFhSU-XuTI\": {\"duration\": 59.98, \"timestamps\": [[0, 9.3], [10.5, 41.38], [43.48, 59.98]], \"sentences\": [\"A man is riding a recumbent bike in place.\", \" Another man is mixing something in a bowl.\", \" They pretend the bike riding is controling the man who is mixing.\"]}, \"v_GHU3G24jFjI\": {\"duration\": 206.38, \"timestamps\": [[0, 2.06], [5.16, 8.26], [2.06, 206.38]], \"sentences\": [\"Three men stand next to each other.\", \" The camera pans left to show an audience watching the three men.\", \" The three individuals take turns walking onto a floor covering and dancing in front of the audience.\"]}, \"v_JKa3jnnowNo\": {\"duration\": 140.34, \"timestamps\": [[18.24, 28.07], [63.15, 76.49], [70.17, 76.49]], \"sentences\": [\"Two men are standing on a roof of a house.\", \" A man is on a ladder drilling something.\", \" Another man is kneeling down in front of him and hammers nails into the ceiling.\"]}, \"v_msELZwMnoFo\": {\"duration\": 147.48, \"timestamps\": [[0, 70.05], [43.51, 147.48], [60.47, 147.48]], \"sentences\": [\"The man is swimming in the water then ride his surfboard.\", \" The people are in the water and a man ride his surfboard.\", \"  The man is surfing the water and jump off the surfboard while other people are in the water.\"]}, \"v_ll91M5topgU\": {\"duration\": 10.31, \"timestamps\": [[0, 1.7], [1.96, 7.53], [7.94, 10.31]], \"sentences\": [\"A man is standing in his front yard.\", \" He is using a leaf blower attached to his back.\", \" He is blowing leaves off his grass.\"]}, \"v_pGKTRM1vcfw\": {\"duration\": 43.98, \"timestamps\": [[0, 43.98], [0, 29.47], [29.47, 43.98]], \"sentences\": [\"lacrosse team is in a large green grassy field playing.\", \" coach wearing black clothes is watching the game walking on sides.\", \" women runs to the benches and gathered around the coach.\"]}, \"v_IWdJF6lBSnM\": {\"duration\": 91.86, \"timestamps\": [[0, 91.86], [7.81, 91.86], [23.88, 91.86], [47.77, 91.86]], \"sentences\": [\"A man is wearing a red shirt.\", \" He is talking into the camera.\", \" Pictures of a roof are shown in the background.\", \" Information about the roof is shown on screen.\"]}, \"v_nKa1e_CpvoY\": {\"duration\": 223.95, \"timestamps\": [[1.12, 4.48], [5.6, 218.35], [36.95, 40.31], [36.95, 172.44], [173.56, 178.04], [179.16, 183.64], [185.88, 188.12], [191.47, 192.59], [199.31, 204.91], [209.39, 212.75], [219.47, 223.95]], \"sentences\": [\"The credits of a clip are shown.\", \" A lady stands in a kitchen and speaks.\", \" The lady cracks eggs into a measuring cup.\", \" The lady measures and mixes ingredients.\", \" The lady puts the mixture into a circular, baking pan.\", \" The lady puts the pan into the oven.\", \" The lady takes the pan out of the oven, and the dough mixture is browned.\", \" The lady presses a finger on the baked product.\", \" The lady runs a knife between the pan and the baked product.\", \" The lady turns the baked product upside down.\", \" The credits of a video are shown.\"]}, \"v_lKSlIMfWZXI\": {\"duration\": 187.71, \"timestamps\": [[0, 158.62], [9.39, 91.04], [183.02, 187.71]], \"sentences\": [\"A man is washing dishes in a sink.\", \" He holds a large hose to spray the dishes with.\", \" The stack of clean plates are shown.\"]}, \"v_Trzd5ijRN1A\": {\"duration\": 162.82, \"timestamps\": [[0, 21.17], [27.68, 96.06], [113.16, 162.82]], \"sentences\": [\"Two men are jousting inside a gym.\", \" They aim their swords at one another.\", \" They jump back and forth trying to make contact.\"]}, \"v_S6VgTNGiIkg\": {\"duration\": 235.36, \"timestamps\": [[0, 56.49], [52.96, 167.1], [162.4, 233]], \"sentences\": [\"A close up of a pool table is shown that leads into a person hitting a ball.\", \" Several people use different methods to perform trick shots.\", \" They continue performing impressive shots are pool cues as well as a dog.\"]}, \"v_FARJEomZRrc\": {\"duration\": 139.57999999999998, \"timestamps\": [[13.26, 25.82], [55.83, 64.2], [73.28, 90.72]], \"sentences\": [\"A person is sanding a piece of wood on a table.\", \" They begin shaving the wood with a red razor tool.\", \" They begin painting the wood with white paint.\"]}, \"v_0hdwFR5qWz4\": {\"duration\": 228.74, \"timestamps\": [[0, 48.04], [48.04, 126.95], [126.95, 180.7], [180.7, 228.74]], \"sentences\": [\"A man made stream of water is shown along with several sky scrapers in the city,with clips of people walking in between it.\", \"The video then starts and large amounts of people are shown in a gym watching teams compete.\", \"All of a sudden an intense game of Foosball begins and the players compete in a big tournament.\", \"Teams begin to win and congratulate one another while receiving their trophies.\"]}, \"v_knnQ99kDt8w\": {\"duration\": 39.06, \"timestamps\": [[0, 39.06], [3.32, 39.06], [17.97, 39.06]], \"sentences\": [\"Some people are jumping up and down at a trampoline park.\", \" Soon, they begin to throw balls back and forth at each other while jumping on the trampoline.\", \" The camera changes angles and shows the opponent on the other side of the trampoline as well.\"]}, \"v_3L0MnbQkLWM\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 12.87], [12.87, 58.3], [58.3, 151.42]], \"sentences\": [\"The little baby walks away from the hop scotch drawing and then she runs back and plays.\", \" She has to keep trying over and over again because she keeps messing up.\", \" But, after a while she gets it and is able to make it through the whole board even though she keeps running between two of them that are on the ground.\"]}, \"v_gWz4P3Jnis8\": {\"duration\": 174.06, \"timestamps\": [[2.61, 78.33], [33.07, 141.86], [136.63, 174.06]], \"sentences\": [\"The couch is being shown then the camera moved to the face of the man.\", \" The man is holding a shisha and began blowing smoke while tapping his mouth and talk to the camera.\", \" The man is showing the silver shisha and move the camera to his face.\"]}, \"v_4bUxtqX_oxM\": {\"duration\": 19.78, \"timestamps\": [[0, 1.98], [2.57, 13.95], [15.04, 19.78]], \"sentences\": [\"A woman is wearing sunglasses on the beach.\", \" She and other women are riding camels.\", \" They continue on the beach, riding the camels.\"]}, \"v_s60we-9PBhw\": {\"duration\": 79.67, \"timestamps\": [[0, 16.33], [13.94, 33.06], [31.87, 79.67]], \"sentences\": [\"A white kitten is sleeping on the bed.\", \" A hand is petting the cat's paw gently.\", \" The person slowly clip the kitten's nail.\"]}, \"v_yt0K2HWC0WI\": {\"duration\": 235.87, \"timestamps\": [[1.18, 225.25], [8.26, 60.15], [60.15, 225.25]], \"sentences\": [\"A man demonstrates how to walk across and navigate a slackline in a grass courtyard in front of apartments.\", \"  The man stands on a slackline balancing himself with his arms before the clip cuts to him interviewing.\", \"  The man then demonstrates different moves on the line including jumping up an down on the slackline from different directions.\"]}, \"v_Oa26_SgrY8w\": {\"duration\": 129.08, \"timestamps\": [[0, 14.2], [21.94, 82.61], [86.48, 129.08]], \"sentences\": [\"A newscaster is talking in front of a video screen.\", \" A game of curling is being engaged in by two teams.\", \" the members interview with the camera after the game.\"]}, \"v_SoWow2cxfac\": {\"duration\": 148.21, \"timestamps\": [[0, 11.12], [11.86, 148.21], [145.99, 147.47]], \"sentences\": [\"A man interacts with a dog while holding a stack of frisbees.\", \" The man uses the frisbees to perform tricks with the dog.\", \" Another man briefly runs across the camera frame in the foreground.\"]}, \"v_VNUVKrN4ndc\": {\"duration\": 83.71000000000001, \"timestamps\": [[1.26, 19.67], [19.25, 61.11], [60.27, 82.03]], \"sentences\": [\"A man is shown speaking to the camera and leads into a boy jumping up on uneven bars.\", \" The man helps the boy along the bars while still speaking.\", \" The boy jumps up again with the man's assistance.\"]}, \"v_eRN5gqZFXHI\": {\"duration\": 186.02, \"timestamps\": [[0, 32.55], [32.55, 66.04], [66.04, 107.89], [107.89, 186.02]], \"sentences\": [\"kid is sitting in a table and put a white cleaner on top of a table.\", \" the kid grab another bottle and a scuff remover.\", \" the kid put a white sneaker on the table and spread the cleaner on the sole and clean it with a cloth.\", \" then spread white cream and clean the sneaker.\"]}, \"v_Z47QGlaQ1NE\": {\"duration\": 166.3, \"timestamps\": [[0, 2.49], [1.66, 21.62], [20.79, 104.77], [104.77, 166.3]], \"sentences\": [\"A black male athlete is outside in a field at a track meet preparing to clear a high jump.\", \"The guy takes off running at an angle and is able to do a backwards jump over the six foot bar and clears it.\", \"After,more athletes appear and they follow suit by doing high jumps and clearing the bar without scratching.\", \"As the guys continue successfully jumping,they jump on top of the mat and throw their hands in the air because in joy from their success.\"]}, \"v_86hyAYM5d3E\": {\"duration\": 168.9, \"timestamps\": [[58.27, 114.85], [114.85, 124.14], [156.23, 162.99]], \"sentences\": [\"A man is riding a riding lawn mower on a baseball field.\", \" He gets off and lays down on the grass.\", \" He then stops and talks to the camera.\"]}, \"v_FIw076A69Oc\": {\"duration\": 61.07, \"timestamps\": [[0, 8.86], [12.52, 35.42], [37.56, 61.07]], \"sentences\": [\"A shirtless man is standing on a playground.\", \" He uses the equipment to do balance exercises.\", \" He lifts himself up and down while using only his arm strength.\"]}, \"v_OiL6Aj0gC14\": {\"duration\": 152.46, \"timestamps\": [[0, 22.87], [24.39, 84.62], [85.38, 139.5], [140.27, 152.46]], \"sentences\": [\"A man and a male competes ping pong in a court, the man throws twice hard a ball than the male could not stop it.\", \" Then, the man and the male change positions and continues playing, after the male loss a ball, the man serves the ball and wins the set.\", \" After, the man loss several balls during the competition.\", \" After, the man and the male change positions, and the male wins the competition.\"]}, \"v_7S15OsGinjw\": {\"duration\": 72.56, \"timestamps\": [[0, 0.36], [0.36, 14.88], [15.24, 38.82], [39.18, 64.58], [64.58, 72.56]], \"sentences\": [\"We see a newscaster and a man on the street.\", \" The man on the street is speaking as cars ride behind him.\", \" We see children running through a fountain in a park and see kids interviewed while on the playground and playing in the fountain.\", \" We see a man and two girls interviewed and making castles in the sand at the beach.\", \" We see a lady hitting a volleyball and a lady and a kid walking at the beach.\"]}, \"v_2oizmWFx4PA\": {\"duration\": 161.89, \"timestamps\": [[0, 20.24], [25.09, 91.47], [93.9, 161.89]], \"sentences\": [\"A close up is seen of a bolt being removed with a screw driver.\", \" A wheel is removed from a bicycle.\", \" It is then replaced with a new one.\"]}, \"v_45llr44Pu9g\": {\"duration\": 214.18, \"timestamps\": [[0, 52.47], [58.9, 155.28], [127.44, 208.83]], \"sentences\": [\"A man is seen speaking to the camera and pointing all around a bike.\", \" Several close ups of a bike are shown with a person adjusting the sides with a screwdriver.\", \" The person continues to check the specs on a bike and ends by laughing and speaking to the camera.\"]}, \"v_RseCMmSvcPY\": {\"duration\": 122.32, \"timestamps\": [[0, 45.87], [37.31, 92.35], [87.46, 118.04]], \"sentences\": [\"A close up of a pool table is shown when two people walk into frame.\", \" The people then begin playing a game of pool with one another.\", \" The two continue playing and one hits the other with a stick.\"]}, \"v_5vv5e_E93gM\": {\"duration\": 101.4, \"timestamps\": [[0, 20.79], [23.83, 73.01], [77.07, 101.4]], \"sentences\": [\"A man is shown lying in a hospital bed, then another in another room.\", \" They are shown on video having injured themselves on a snowy hill.\", \" The men wrecked on their skis, flipping numerous times.\"]}, \"v_PfleCcLgZ7E\": {\"duration\": 180.47, \"timestamps\": [[0, 56.85], [46.92, 119.11], [110.08, 177.76]], \"sentences\": [\"A woman walks out on stage while another walks in and out of frame.\", \" The girl holds a pose and begins performing a dancing routine with a baton.\", \" The girl spins and twists herself around on the floor and ends by bowing and running off to hug a woman.\"]}, \"v_9abGikdleAU\": {\"duration\": 135.0, \"timestamps\": [[0, 41.85], [33.75, 95.85], [72.9, 128.25]], \"sentences\": [\"Two girls are seen speaking to the camera and laughing with one another.\", \" The girls begin dancing together back and fourth.\", \" The girls continue dancing and end by speaking to the camera.\"]}, \"v_Uj1QtIM8500\": {\"duration\": 155.67000000000002, \"timestamps\": [[0, 44.37], [40.47, 105.85], [97.29, 150.22]], \"sentences\": [\"A woman is seen speaking to the camera while holding up a contact lens.\", \" She moves her hands around while still speaking to the camera.\", \" She holds open her eye and puts a contact in her eye.\"]}, \"v_b6VAlwv45q4\": {\"duration\": 234.14, \"timestamps\": [[0, 9.37], [9.37, 234.14], [74.92, 81.95], [146.34, 153.36], [204.87, 217.75], [218.92, 234.14]], \"sentences\": [\"A man's image as he talks is imposed over trees and the man make gestures towards his mouth.\", \" We see a game of rock em sock em style robots on a computer screen cut with images of the man narrating in the lower left corner.\", \" One character falls off the map and a third character joins the fight.\", \" The blue and gray guy are on a seesaw and the blue guy jumps at the gray guy.\", \" Both of the characters fall off the map.\", \" The guys fall down stairs fighting and we see the subscribe screen.\"]}, \"v_pwKZRo19Vf0\": {\"duration\": 129.2, \"timestamps\": [[0, 46.51], [25.84, 83.33], [83.33, 127.26]], \"sentences\": [\"A close up of a stove is shown followed by a man cracking an egg.\", \" The man mixes around the egg and pours oil into a pan.\", \" He then puts the egg into the pan and stirs it around and plating it in the end.\"]}, \"v_nLdRqOTb0Ik\": {\"duration\": 49.9, \"timestamps\": [[1, 7.98], [7.73, 9.23], [26.45, 49.9]], \"sentences\": [\"A man is siting behind a desk doing a Rubik's cube.\", \" He sets the Rubik's cube down and stands up.\", \" He sits down again and does the Rubik's cube again.\"]}, \"v_DzxPreFrmFE\": {\"duration\": 195.44, \"timestamps\": [[0, 36.16], [47.88, 141.7], [152.45, 195.44]], \"sentences\": [\"A man is shown inside a bowling alley.\", \" He walks up to the lane while holding a ball.\", \" He throws the ball, and it goes down to hit the pins at the other end.\"]}, \"v_1517CiM5c0A\": {\"duration\": 214.27, \"timestamps\": [[0, 213.2], [10.71, 213.2], [21.43, 213.2], [31.07, 213.2]], \"sentences\": [\"Several people stand on the street.\", \" They are playing instruments together.\", \" A man is video taping them.\", \" Several bystanders pass by them.\"]}, \"v_5ya20wcGE-8\": {\"duration\": 95.39, \"timestamps\": [[0, 20.99], [18.6, 65.34], [58.19, 95.39]], \"sentences\": [\"two people are fencing in a gym.\", \" a woman is then interviewed.\", \" then tons of people are shown practicing fencing.\"]}, \"v_9WOvWFdA7lY\": {\"duration\": 172.46, \"timestamps\": [[0, 18.11], [18.97, 156.93], [156.93, 167.28], [169.01, 172.46]], \"sentences\": [\"A woman is seated in a beauty chair.\", \" A tattooed man with tools appears and pierces her lower lip.\", \" He finishes and gives her a drink.\", \"  A still selfie photo of her finished piercing is shown.\"]}, \"v_ArzhjEk4j_Y\": {\"duration\": 19.32, \"timestamps\": [[0, 1.16], [1.74, 16.23], [16.71, 19.32]], \"sentences\": [\"A silver and black GoPro camera appears along with the advertisement.\", \"After,several,a group of individuals are shown at the beach helping each other build a large sand castle together.\", \"When they are finished,the camera's advertisement reappears showing the quality of the GoPro.\"]}, \"v_pHhcYS_wPys\": {\"duration\": 5.02, \"timestamps\": [[0, 0.88], [0.93, 3.11], [3.11, 4.94]], \"sentences\": [\"A person is seen standing before a track.\", \" The person begins to move forward throwing a javelin.\", \" The man throws it off into the distance.\"]}, \"v_5zT1GWfmVLU\": {\"duration\": 32.18, \"timestamps\": [[0, 3.22], [3.38, 6.44], [6.6, 9.49], [9.49, 12.23], [12.39, 18.02], [18.99, 32.18]], \"sentences\": [\"\\\"Sunsetflip Powerbomb\\\" appears on screen in a whimsical font.\", \" A young man pretends to kick another man in the crotch.\", \" He appears to bend over in pain and the other jumps on his back.\", \" He then slaps him and they flip over onto a mat.\", \" The action is repeated in slow motion.\", \" \\\"Thanks for watching! For more wrestling visit our main channel ARAMBA austria\\\" appears on screen.\"]}, \"v_NLdyQ1oMmAo\": {\"duration\": 151.12, \"timestamps\": [[0, 6.8], [6.04, 151.12], [51.38, 151.12]], \"sentences\": [\"man is skateboarding in a path.\", \" men are skateboarding in street going on squares and streets.\", \" skaters are going between acrs in streets.\"]}, \"v_wVHD_Y5J3qE\": {\"duration\": 141.11, \"timestamps\": [[0, 42.33], [31.75, 91.72], [89.6, 137.58]], \"sentences\": [\"A woman is speaking to the camera and shows off towels and a flat iron.\", \" She then pins her hair up and begins flat ironing her hair.\", \" She continues moving the object all around her head.\"]}, \"v_ZOKC86lF6E8\": {\"duration\": 83.13, \"timestamps\": [[0, 16.21], [19.95, 56.53], [61.51, 83.13]], \"sentences\": [\"A woman is in a backyard of a house.\", \" She is using frisbees to train a dog.\", \" She throws the frisbees, and the dog chases and catches them.\"]}, \"v_15npAlupNU4\": {\"duration\": 122.07, \"timestamps\": [[0, 14.65], [16.48, 76.29], [79.95, 122.07]], \"sentences\": [\"A man is standing in a snow covered parking lot.\", \" He uses a scraper to wipe the snow off the back of a car.\", \" He continues scraping until the windshield is clear.\"]}, \"v_2DwBXRhtX4s\": {\"duration\": 48.41, \"timestamps\": [[0, 7.02], [7.99, 39.94], [40.67, 48.41]], \"sentences\": [\"a man is shown zipping up his shirt and donning a hood.\", \" He is then shown with another person, fencing.\", \" they stab and jab at each other with their swords.\"]}, \"v_inFPa4wxOwQ\": {\"duration\": 29.07, \"timestamps\": [[0, 4.65], [4.8, 22.53], [22.82, 29.07]], \"sentences\": [\"A young man dressed in a small colorful Speedo is standing at the end of a diving board.\", \"After several seconds,the man walks towards the end of the board and does several flips into the pool.\", \"When it is complete,the scoreboard is shown and a score of sixty three is shown in the bottom right corner of the board.\"]}, \"v_PLek2e8NlKc\": {\"duration\": 184.6, \"timestamps\": [[0.92, 179.98], [0.92, 12], [13.84, 80.3], [80.3, 179.98]], \"sentences\": [\"A woman leads a class held in a medical equipment classroom, in demonstrating different ways for a person to move or get up from the floor.\", \"  Two women sits in front of a small class of people on a mat on the floor.\", \"  One woman uses the other woman to demonstrate how to get up from the floor using one knee.\", \"  The woman in the blue sweater is then seen talking to the class.\"]}, \"v_6LWkrN1qz8E\": {\"duration\": 232.64, \"timestamps\": [[0, 41.88], [45.36, 170.99], [177.97, 232.64]], \"sentences\": [\"A man is watching tv in a house.\", \" He is brushing a little girl's hair as she stands in front of him.\", \" She watches tv while he continues to brush.\"]}, \"v_qZk7okgCU2M\": {\"duration\": 124.62, \"timestamps\": [[0, 11.22], [18.69, 82.25], [85.99, 124.62]], \"sentences\": [\"A man is belly surfing as a wave arrives.\", \" He stands up on his surfboard and rides the waves.\", \" A woman reporter talks to a man about the surfer.\"]}, \"v_UMhZGJqeSuU\": {\"duration\": 72.75, \"timestamps\": [[0, 5.46], [5.82, 72.75], [60.02, 67.66], [6.18, 59.65]], \"sentences\": [\"There is an intro with fire in the background and a picture of fangoers, that says Cork v Wexford All Ireland semi final 2003.\", \" Men are shown playing a game on a large field.\", \" The crowd is cheering and wearing colorful outfits.\", \" The men on the field hit the ball back and forth with sticks to make goals in the nets.\"]}, \"v_tjEMbP2SODQ\": {\"duration\": 180.44, \"timestamps\": [[0, 29.77], [46.01, 139.84], [143.45, 180.44]], \"sentences\": [\"A man and woman are standing inside a building.\", \" They slowly change their positions and raise their arms.\", \" they go into several slow martial arts style moves.\"]}, \"v_Ih8bPM3p0rE\": {\"duration\": 27.17, \"timestamps\": [[0, 2.31], [2.45, 6.25], [6.25, 11], [11.82, 27.17]], \"sentences\": [\"An image of a man in front of an arena with a illustrated javelin thrower is the title screen.\", \" We then see the man run and throw the javelin on a dirt track.\", \" The camera pans to follow the javelin we see it land and men in the distance run towards the javelin.\", \" The thrower turns and walks away and we see a man in maroon pants walk to the tape measure and bend over before standing and backing away.\"]}, \"v_lol04SNoopE\": {\"duration\": 19.48, \"timestamps\": [[0, 2.05], [2.05, 4.68], [5.55, 19.48]], \"sentences\": [\"A woman is standing on a diving board.\", \" She dives head first into the water.\", \" A boy is standing on the side of the pool watching.\"]}, \"v_NvOo-wtEPPk\": {\"duration\": 68.06, \"timestamps\": [[0.68, 17.01], [17.01, 48.66], [45.26, 66.02]], \"sentences\": [\"Two men are seen speaking to one another and one holding a gun.\", \" One man jumps in the water while others stand around and watch.\", \" The other man then pulls him out of the water.\"]}, \"v_I2Y-5EEXAE0\": {\"duration\": 201.46, \"timestamps\": [[0, 50.36], [53.39, 154.11], [161.17, 191.38]], \"sentences\": [\"Several shots are shown of a restaurant with a man speaking to the camera.\", \" The man then puts butter into a pan as well as bread and other ingredients.\", \" He then finishes by making a sandwich and cutting it up to show to the camera.\"]}, \"v_P3kWD8Oocio\": {\"duration\": 20.53, \"timestamps\": [[0, 4.11], [4.21, 14.27], [14.37, 20.53], [15.09, 19.19]], \"sentences\": [\"People ride bicycles towards a house.\", \" Children play in a playground.\", \" Two boys lead their bike across a bridge.\", \"  A boy raises his arm in the air.\"]}, \"v_ibjvKk93__g\": {\"duration\": 102.03, \"timestamps\": [[0, 37.75], [37.75, 84.17], [84.17, 102.03]], \"sentences\": [\"An AFrican American male wearing a blue muscle shirt and Under Armour sweat shorts is standing on an elliptical talking.\", \"Although he is the only one in the gym,there are two people standing behind him at the reception desk.\", \"After some time,the guy begins to workout on the machine and shows its function,while a man walks back and forth into the room from the side door of the gym.\"]}, \"v_psgIH8U1adg\": {\"duration\": 121.07, \"timestamps\": [[0, 47.82], [36.32, 81.72], [78.69, 119.86]], \"sentences\": [\"A close up of a tree is shown and leads into a woman pushing a baby on a swing.\", \" The camera pans all around the swing as the child moves back and fourth.\", \" The baby is seen in a crib laughing to the camera and standing up.\"]}, \"v_j7fPZQE3-fQ\": {\"duration\": 74.65, \"timestamps\": [[0, 13.06], [13.81, 51.14], [55.24, 73.53]], \"sentences\": [\"A man is seen speaking to a woman sitting down.\", \" The man makes a mark on her lip then pierces her lip.\", \" He holds up a mirror and the two smile with each other.\"]}, \"v_WtWw-GNpr4E\": {\"duration\": 151.12, \"timestamps\": [[0, 34.76], [35.51, 88.4], [86.14, 148.85]], \"sentences\": [\"Two people are seen playing badminton when one man speaks to the camera.\", \" The man moves his body around and demonstrates how to properly hit the birdie.\", \" He continues to speak and demonstrate on how to play.\"]}, \"v_geuUVSJyovM\": {\"duration\": 84.08, \"timestamps\": [[0, 15.13], [12.19, 51.71], [48.35, 84.08]], \"sentences\": [\"A man sat on a bench by the piano.\", \" The man press the key on the piano.\", \" The man started to play the piano with both of his hands.\"]}, \"v_8-1h1YXYvhk\": {\"duration\": 127.62, \"timestamps\": [[0, 127.62], [14.04, 72.74], [72.74, 120.6]], \"sentences\": [\"This video shows viewers how to do a turtle freeze to an elbow freeze.\", \" First, he gets in the turtle position and then he lifts his hips over his head.\", \" Next, he repeats the same moves of lifting himself into the air and the video ends.\"]}, \"v_U37UAWdI-vY\": {\"duration\": 88.03, \"timestamps\": [[0, 10.12], [12.32, 47.09], [48.41, 88.03]], \"sentences\": [\"a group of people are seated around a dining table.\", \" A man is playing a harmonica for the group.\", \" They sit and listen intently as he plays.\"]}, \"v_TotbMcWIoyE\": {\"duration\": 196.79, \"timestamps\": [[0, 38.37], [38.37, 132.83], [132.83, 196.79]], \"sentences\": [\"Two males are in a room practicing for a racquetball championship,one of the guys stands in the front while the other positions himself in a squat and listens to the directions he is receiving.\", \"The real practice then begins and the guys alternate back and forth between who will take the front and the back and starts to hit the ball.\", \"Each time they switch,the guys make a gesture at the camera and then meet in the middle of the court at the end.\"]}, \"v_oNrWO_VQQbk\": {\"duration\": 178.23, \"timestamps\": [[0, 178.23], [16.04, 40.1], [38.32, 83.77], [80.2, 114.07], [109.61, 128.32], [128.32, 178.23]], \"sentences\": [\"There's a man doing a tutorial and explaining how to use a portable shower for dogs.\", \" He starts by filling in the receptacle with some tap water and closing the cap back on tight.\", \" Then he takes the portable shower to his backyard where he shows the different attachments of the shower.\", \"  He fixes the shower on the car window, pulls out the hose and demonstrates how to use the shower head.\", \" He washes and bathes his white dog in the front yard thoroughly using the portable shower head.\", \" Then he places the shower case on a wall mounted shelf right next to his front door and talks more about how to use it.\"]}, \"v_uE9MHR27_gc\": {\"duration\": 238.93, \"timestamps\": [[0, 75.26], [44.2, 167.25], [145.75, 234.16]], \"sentences\": [\"A chef is seen speaking to the camera and begins cutting up ingredients.\", \" He cuts up several pieces of food using different knives.\", \" He continues cutting up the ingredients and ends by showing off several knives.\"]}, \"v_elgmPvU19K8\": {\"duration\": 213.15, \"timestamps\": [[0, 30.91], [36.23, 153.46], [155.6, 213.15]], \"sentences\": [\"a view is seen of the ocean with a big boat in it.\", \" Another boat appears, then we see people watching waves.\", \" a man is water surfing behind a boat.\"]}, \"v_T97WL2cKD6M\": {\"duration\": 58.65, \"timestamps\": [[0, 6.45], [11.44, 31.38], [37.25, 58.65]], \"sentences\": [\"A girl is standing inside a house.\", \" She is playing an accordian for the camera.\", \" She pushes the machine in and out as she plays the keyboard.\"]}, \"v_iXaA7PVRhIY\": {\"duration\": 71.7, \"timestamps\": [[0, 16.13], [15.06, 45.17], [21.87, 71.7]], \"sentences\": [\"The woman is talking to the little girl.\", \" A person is throwing balls to the girl at the table tennis and she hit the balls.\", \" The girl is playing table tennis with the older woman.\"]}, \"v_BCdt22s9hlU\": {\"duration\": 97.75999999999999, \"timestamps\": [[0, 31.28], [31.28, 50.83], [50.83, 97.76]], \"sentences\": [\"woman is standing in a room laying on the wall holding socks and putthing them on the feet.\", \" the woman put the brown boots on the right shoe and tie the laces.\", \" the woman grabs the other shoe and put it on the left foot and tie the laces.\"]}, \"v__S6D21MV8Ks\": {\"duration\": 238.26, \"timestamps\": [[0, 66.71], [66.71, 134.62], [134.62, 177.5], [177.5, 238.26]], \"sentences\": [\"Two young boys are standing in the room with two tennis rackets in their hand surrounded by three white walls and a glass wall behind them.\", \"One of the boys then takes the ball and bounces it against the wall and the two begin taking turns hitting the ball back and forth.\", \"After sometime,they aren't able to keep the ball up and one boy starts to bounce the ball up and down on racket by himself.\", \"The game then continues on in the same fashion as the people on the other side of the glass watches them play with each other.\"]}, \"v_PMdba6f_cho\": {\"duration\": 120.3, \"timestamps\": [[0, 17.44], [19.25, 70.38], [76.39, 120.3]], \"sentences\": [\"A woman is riding on a pair of water skis in a lake.\", \" She holds onto a rope attached to a boat as she skis.\", \" She slides to one side, staying upright.\"]}, \"v_JSqJmZPqDy8\": {\"duration\": 34.78, \"timestamps\": [[0, 34.78], [13.57, 18.96], [18.96, 27.48], [27.65, 34.78]], \"sentences\": [\"A man with no shirt on mows the lawn with an electric mower, while a black dog watches and runs around.\", \" He mows under the swing set, then takes the bag off the mower and empties it into a black plastic bag.\", \" He lights a cigarette and then he rakes up the leftover grass and puts it in the bag.\", \" Finally he trims up around the edges of the swing set and rakes up a bit more while the dog follows him around.\"]}, \"v_CArYinl5tFo\": {\"duration\": 146.12, \"timestamps\": [[0, 16.07], [19.73, 80.37], [92.79, 146.12]], \"sentences\": [\"A bike is leaning against a concrete wall.\", \" A box containing a bike is removed by a man in front of a garage.\", \" He takes out all the parts, and shows how to assemble the bike.\"]}, \"v_bqnRA6rZcqs\": {\"duration\": 112.66, \"timestamps\": [[0, 6.76], [21.41, 27.6], [77.17, 112.66]], \"sentences\": [\"A man falls down in a room.\", \" He is holding a stick and tries hitting a pinata.\", \" Another man picks up the stick and gives it to a kid who tries hitting the pinata.\"]}, \"v_gsJ953MHtpY\": {\"duration\": 214.86, \"timestamps\": [[0, 22.56], [22.56, 44.05], [44.05, 214.86]], \"sentences\": [\"man is wearing stilts running in a race track in a large field.\", \" the man is running going on stairs running on the stands and going down again.\", \" man is running in campus next to buildings and in the race track.\"]}, \"v_0qQvcJJekN8\": {\"duration\": 25.1, \"timestamps\": [[0.25, 4.52], [3.39, 17.45], [13.55, 24.47]], \"sentences\": [\"A man is seen sitting on a swing next to a person in a wheel chair.\", \" The man behind helps push the boy in the chair.\", \" The two continue swinging as others watch on the side.\"]}, \"v_5j5_YV25cFA\": {\"duration\": 121.88, \"timestamps\": [[0, 20.72], [13.41, 39], [33.52, 82.27], [78, 121.88]], \"sentences\": [\"two mean stand on a racquetball court.\", \" the men stretch then begin playing.\", \" a score is won and one man falls to the floor and holds his head.\", \" the other man remains standing and laughs.\"]}, \"v_HW5QhCSKTsw\": {\"duration\": 230.7, \"timestamps\": [[0, 55.37], [116.51, 230.7], [55.37, 230.7]], \"sentences\": [\"man is talking to a camera showing some basket defense movements.\", \" two men are practicing basket moves.\", \" men are playing basket in a wooden court.\"]}, \"v_4cqesj6HwTU\": {\"duration\": 75.66, \"timestamps\": [[0, 10.59], [17.02, 55.23], [59.02, 75.66]], \"sentences\": [\"A woman is standing behind a table and talking.\", \" She is showing a beer in front of her.\", \" She then talks about the beer and serving it.\"]}, \"v__kj3B0T_TE0\": {\"duration\": 65.2, \"timestamps\": [[0, 62.59], [0, 64.88], [0, 65.2]], \"sentences\": [\"woman is on a sidewalk cleaning a sneaker with a brush.\", \" in the back cars and motorbikes are passing by in street.\", \"woman is kneeling on the sidewalk holding a brush cleaning sneakers.\"]}, \"v_qblFXnyqf1o\": {\"duration\": 186.78, \"timestamps\": [[0, 165.3], [80.32, 84.99], [183.05, 186.78]], \"sentences\": [\"People are dancing together in a room.\", \" They are kicking their legs up.\", \" They stop dancing and the woman walks over to the camera.\"]}, \"v_o8ja3mhecQI\": {\"duration\": 70.32, \"timestamps\": [[0, 8.09], [8.09, 17.23], [17.58, 41.49], [41.84, 70.32]], \"sentences\": [\"A girl is swinging on pull up bars and she jumps down.\", \"  While on the ground she grabs a resistance band, loops it around her arm and climbs back on the pull up bars.\", \"  While she hangs with one hand as her feet rest on the legs of the pull up bar while she wraps the resistance band over the bar.\", \" She jumps down again and pulls the hole grips of the resistance band around her legs then climbs back up on the pull up bar and uses the resistance bands as a bungee as she jumps down again.\"]}, \"v_d0FP6xp9O4c\": {\"duration\": 131.59, \"timestamps\": [[0, 7.9], [21.05, 88.16], [92.11, 131.59]], \"sentences\": [\"A man and a dog are inside a building.\", \" The man uses frisbees to throw for the dog.\", \" The dog does various tricks to catch the frisbees.\"]}, \"v_173d8EtsIpE\": {\"duration\": 187.13, \"timestamps\": [[0, 29.01], [29.01, 38.36], [38.36, 49.59], [50.53, 187.13]], \"sentences\": [\"Two men demonstrate fencing in a fencing gym,The man In a black fencing uniform pushes the man wearing a white shirt back\\nand off balance.\", \"The men walk back into position to the center of the court and begin another session.\", \" The man wearing black once again forces the man wearing white off balance and scores .\", \" The fencers again walk back to the center court to begin another session with the fencer in black gets behind the man wearing white and the fencers stop and walk off.\"]}, \"v_EKfhRuD3x9s\": {\"duration\": 238.56, \"timestamps\": [[0, 25.05], [25.05, 230.21], [51.29, 230.21], [82.3, 230.21], [126.44, 230.21]], \"sentences\": [\"LP and Giovanni Logo appear on the black screen opening.\", \" A man sits behind a set of bongo drums.\", \" He continues to give his introduction to the camera before he begins.\", \" He starts to demonstrate playing the bongos in a lesson.\", \" The lesson continues, alternating between color and black and white footage.\"]}, \"v_RVZprJDJz1U\": {\"duration\": 84.24, \"timestamps\": [[1.68, 23.17], [24.01, 58.13], [52.65, 81.71]], \"sentences\": [\"A close up of a chair is shown with a person spraying it down.\", \" The person holds up a product and wipes their hands on the dirty chair.\", \" He rubs down the chair with a rag as well as with a hose.\"]}, \"v_msd9vrplD-I\": {\"duration\": 99.6, \"timestamps\": [[1, 29.88], [25.9, 68.23], [67.73, 93.13]], \"sentences\": [\"A playground is shown and leads into several clips of a boy playing on the playground.\", \" A man speaks to the camera and plays around with the boy.\", \" The boy moves all around the playground while the man records him and plays with him.\"]}, \"v_UFVeN-ThOwU\": {\"duration\": 143.76, \"timestamps\": [[0, 143.76], [20.84, 23], [47.44, 49.6], [102.78, 109.25]], \"sentences\": [\"A small girl uses a sponge to wash a knife at a kitchen sink while occasionally talking.\", \" The camera briefly pans left to show a drying rack with items in it.\", \" The girl makes a face at the camera.\", \" The camera pans left to focus on the drying rack again.\"]}, \"v_73AGD3RWPEw\": {\"duration\": 56.24, \"timestamps\": [[0, 10.12], [10.12, 56.24], [0, 56.24]], \"sentences\": [\"man is standing in a park attaching the ropes on trees.\", \" the man is standing on the rope doing balance and making jumps and tricks.\", \" man is practicing Slacklining on rope.\"]}, \"v_lZcTesK6CfA\": {\"duration\": 225.72, \"timestamps\": [[0, 25.96], [25.96, 63.2], [63.2, 179.45], [181.71, 192.99], [192.99, 225.72]], \"sentences\": [\"The camera pans across a field with buildings in the distance.\", \" Two girls dressed in blue blazers and white pants appear from behind a tree and adjust their sleeves.\", \" clips and images of the girls in the blue blazers proceed to wash their hands in a sink.\", \" The girls in the blue blazers show a sign language and say goodbye to the viewer.\", \" Photographs of the girls in the blue blazers posing.\"]}, \"v_G3H3Gflf1SM\": {\"duration\": 156.39, \"timestamps\": [[0, 156.39], [10.17, 132.93], [145.44, 147.79]], \"sentences\": [\"A man is standing in front of a sink.\", \" He begins to shave his beard.\", \" He finishes shaving his beard and picks up the hair he shaved off.\"]}, \"v_ivWTI2J_UnY\": {\"duration\": 128.85, \"timestamps\": [[0, 9.02], [13.53, 90.19], [90.19, 128.85]], \"sentences\": [\"A man is sitting in front of a booth.\", \" A gymnast mounts a beam in front of him.\", \" He spins and flips on the beam during his performance before dismounting.\"]}, \"v_D0aZaiBAHxg\": {\"duration\": 176.96, \"timestamps\": [[0, 176.96], [0, 19.47], [8.85, 40.7], [155.72, 176.96]], \"sentences\": [\"A man stands in front of a bush.\", \" He starts up a chainsaw.\", \" He begins to trim the large hedge.\", \" Eventually it is evened out.\"]}, \"v_W6JJ1L_EEBY\": {\"duration\": 99.57, \"timestamps\": [[0, 28.87], [24.89, 71.19], [61.23, 96.08]], \"sentences\": [\"A small group of people are seen sitting on bikes before a start.\", \" The group then begins riding around a track past one another.\", \" Several more clips are shown of the people riding around the track.\"]}, \"v_B53aHHzgTzc\": {\"duration\": 151.38, \"timestamps\": [[0, 0.76], [0.76, 14.38], [15.14, 18.92], [19.68, 151.38]], \"sentences\": [\"An old video is playing and says \\\"world record\\\".\", \" There is a countdown running at the bottom of the screen and a man takes off running.\", \" His score is shown and it says \\\"Art Walker 54' 11' - American Record\\\".\", \" Several different men are shown doing the long jump and their names and medals.\"]}, \"v_51wFW1g42VQ\": {\"duration\": 108.81, \"timestamps\": [[0, 108.81], [7.62, 99.56], [22.85, 76.17], [64.74, 108.81]], \"sentences\": [\"There's are some young athletes standing in an open field talking about hurling as some players play the game.\", \" There are two teams participating in hurling.\", \" The players are warming up for the game as different contestants talk about the techniques used in hurling.\", \" Some of the players are running with their hurling sticks trying to catch the ball.\"]}, \"v_dIC0nm4nrI8\": {\"duration\": 113.12, \"timestamps\": [[0, 113.12], [5.09, 50.9], [28.85, 86.54]], \"sentences\": [\"There are two groups of ballerina on each side of the stage.\", \" Four ballerinas are dancing and walking side by side of the sate.\", \" The four ballerinas danced at the center of the stage then bow.\"]}, \"v_1fbU_MkV7NE\": {\"duration\": 102.96000000000001, \"timestamps\": [[0, 8.75], [9.78, 63.32], [65.38, 102.96]], \"sentences\": [\"A woman is speaking inside a gym.\", \" She lies down on a mat on the floor.\", \" She demonstrates how to do sit ups properly.\"]}, \"v_nWpFumm3Z5g\": {\"duration\": 10.5, \"timestamps\": [[0, 2.68], [2.26, 6.3], [5.98, 10.5]], \"sentences\": [\"people are on a soccer field.\", \" the players start to run towards a goal.\", \" a score is is made and the players disburse.\"]}, \"v_JQavlg895jU\": {\"duration\": 165.51, \"timestamps\": [[0, 52.14], [24.83, 137.37], [85.24, 165.51]], \"sentences\": [\"The group are lined up then they throw the ladies up in the air, catched them and scattered around.\", \" The cheer dancing started to perform their cheer dance as people run behind them with flags.\", \" A man handed the cheer dancers pompoms and then danced and threw the pompoms away and continue to dance.\"]}, \"v_cRP9tyF1N4I\": {\"duration\": 26.89, \"timestamps\": [[0, 1.75], [1.88, 12.64], [14.25, 26.89]], \"sentences\": [\"A man wearing sunglasses is tubing down a hill.\", \" He is shown going forward, then in reverse.\", \" He is then shown flying down the hill over grates for sensory input.\"]}, \"v_jl7aBkPfcS8\": {\"duration\": 145.45, \"timestamps\": [[0, 17.45], [21.82, 109.81], [112, 145.45]], \"sentences\": [\"A view is seen of someone's feet as they step on a bed.\", \" The person walks around on the covers.\", \" The person sits on the bed, clacking their shoes together.\"]}, \"v_TMGG5x-UQ2s\": {\"duration\": 90.91, \"timestamps\": [[0, 13.64], [13.18, 26.82], [26.82, 90.91]], \"sentences\": [\"people are walking snowy path between a bricked walls.\", \" people are going down in snowy slides.\", \" people sitting on snow slides are going down a hill.\"]}, \"v_HeOj7jZ0igI\": {\"duration\": 160.75, \"timestamps\": [[0, 27.33], [31.35, 128.6], [129.41, 160.75]], \"sentences\": [\"A woman prepares her jousting clothing and gear.\", \" She then engages in a game of jousting.\", \" She points her joust at the camera threateningly.\"]}, \"v_bDK-_jU_KzI\": {\"duration\": 126.81, \"timestamps\": [[0, 126.81], [34.24, 112.86], [37.41, 53.26], [43.11, 103.98], [67.84, 108.42], [106.52, 117.29]], \"sentences\": [\"There are several body builders showing their weight training exercises with weight bars and arm wrestling techniques.\", \" Two of the body builders arm wrestle on a table while another person is watching them.\", \" After he signals the body builders to start, they begin arm wrestling.\", \" Both the body builders use all their force and concentration while they try to take the opponent down.\", \" They continue using force as they pivot their elbows to push their opponent's arm in the opposite direction.\", \" Finally the wrestler on the left wins by putting his opponent's arm down.\"]}, \"v_2Jr1K1wBKfQ\": {\"duration\": 133.49, \"timestamps\": [[2, 31.37], [26.7, 89.44], [94.11, 130.82]], \"sentences\": [\"A man is seen speaking to the camera and leads into people shooting bows and arrows.\", \" Several people are seen lined up shooting bows while a man speaks to the camera.\", \" The women continue to use the bows and speak to the camera.\"]}, \"v_45P3UDcb4Gc\": {\"duration\": 165.19, \"timestamps\": [[0, 24.78], [27.26, 100.76], [85.9, 165.19]], \"sentences\": [\"Two women are seen in several pictures smoking a cigarette leading into a video.\", \" The women hold onto cigarettes while speaking to one another and lighting the ends.\", \" They continue smoking several cigarettes while looking off into the distance.\"]}, \"v_lW4OZ8eP3ns\": {\"duration\": 70.03, \"timestamps\": [[0, 10.15], [13.66, 46.22], [47.62, 70.03]], \"sentences\": [\"A man is playing an instrument inside a building.\", \" He and a man with a guitar continue to play.\", \" A row of seats blocks the view as they play.\"]}, \"v_6DXH6kwMe-Q\": {\"duration\": 180.68, \"timestamps\": [[0, 7.23], [8.13, 13.55], [14.45, 155.38], [156.28, 166.22], [167.12, 180.68]], \"sentences\": [\"Two screens appear with black background and white text showing the title of the video and what the video is about and a website address.\", \"  There are two still pictures that appear with bold white letters on the screen.\", \"  A woman then prepares the oil paints then she paints a picture on canvas with a paint brush.\", \"  The camera then zooms out of the sunset painting of hills and a small island during sunset.\", \" A black screen appears with the woman's website in white letters and then fades to black.\"]}, \"v_Auy0KGsXAIg\": {\"duration\": 133.75, \"timestamps\": [[0, 19.39], [29.42, 92.29], [96.3, 133.75]], \"sentences\": [\"A man wearing a beanie is inside a room.\", \" He is talking in front of a disassembled bike.\", \" He shows the different tools he needs to replace the chain.\"]}, \"v_hZ0jI9U5Nws\": {\"duration\": 26.36, \"timestamps\": [[0, 3.82], [2.77, 10.01], [6.98, 17.26], [16.21, 26.36]], \"sentences\": [\"a is standing in front of a balance bar.\", \" the girl jumps onto the bar.\", \" the girl then swings around the bar performing splits and other tricks.\", \" the girl then jumps off the balance bar and poses.\"]}, \"v_tVC_5_SgseY\": {\"duration\": 137.81, \"timestamps\": [[0, 25.5], [25.5, 88.89], [88.89, 100.6], [100.6, 137.81]], \"sentences\": [\"chef is standing in front of a counter talking to the camera.\", \" the man grabs a bread slice and spread butter and put them on a griddle.\", \" when the egg is ready the man form a sandwich and spread ketchup.\", \" sliced in the hald and serve it on white plate.\"]}, \"v_63d_t0U1pXw\": {\"duration\": 210.32999999999998, \"timestamps\": [[0, 23.14], [11.57, 66.25], [42.07, 96.75], [62.05, 210.33]], \"sentences\": [\"The man in white shirt is standing and talking to the camera.\", \" The young man jumps high with stilts on and he flip over and landed upright.\", \" The young man flip back over and jumped back.\", \" The young man jumps and does stunts while on stilts.\"]}, \"v_Feo8xSjY5A8\": {\"duration\": 54.1, \"timestamps\": [[0, 43.55], [7.84, 30.3], [23.81, 53.29]], \"sentences\": [\"A woman is seen sitting down and holding a cat in her lap.\", \" She then begins cutting the cat claws.\", \" She continues cutting the claws on the cat.\"]}, \"v_ay_YB-S4qR0\": {\"duration\": 34.62, \"timestamps\": [[0, 8.48], [8.83, 25.62], [23.54, 34.27]], \"sentences\": [\"A close up of a dart board is shown.\", \" Gradually darts begin to move into frame.\", \" More darts are seen moving into frame.\"]}, \"v_QMCHIR3nDLs\": {\"duration\": 87.3, \"timestamps\": [[0, 13.53], [16.59, 62.85], [65.47, 87.3]], \"sentences\": [\"A couple of men are competiting in a pit outdoors.\", \" They stand on blocks of wood, using axes.\", \" They use the axes to chop the wood as quickly as possible.\"]}, \"v_6Y8wppTQFPo\": {\"duration\": 100.22, \"timestamps\": [[0, 13.53], [13.53, 28.06], [28.06, 98.71]], \"sentences\": [\"This is how your folding bike looks straight out of the box.\", \"Unfolding the main frame by lifting bike up a little bit then unfold it close mechanism and wait for click sound to let you know its locked.\", \" Pull up handle bars and set post to the right height for your body then you are ready to roll.\"]}, \"v_BWqsgYhgUbI\": {\"duration\": 70.13, \"timestamps\": [[0, 12.62], [11.92, 28.4], [27.7, 70.13]], \"sentences\": [\"a middle age man is standing over a pile of wood.\", \" the man knells down to the wood.\", \" the man strikes a match and starts a fire.\"]}, \"v_A_ndiCY-rDc\": {\"duration\": 150.14, \"timestamps\": [[0, 149.39], [0, 140.38], [0, 150.14]], \"sentences\": [\"woman is laying on a floor and is doing abs.\", \" woman is doing crunches on sets.\", \" woman is laying on the floor of a living room doing crunches.\"]}, \"v_c6nEk5N4fSU\": {\"duration\": 95.16, \"timestamps\": [[0, 20.93], [19.51, 69.94], [64.71, 95.16]], \"sentences\": [\"a woman is using an elliptical.\", \" several features of the elliptical is displayed.\", \" the woman continues to use the machine.\"]}, \"v_0EdDWY0Zuqw\": {\"duration\": 179.93, \"timestamps\": [[0, 46.78], [45.88, 137.65], [123.25, 177.23]], \"sentences\": [\"A person is seen playing an instrument in front of the other.\", \" The person moves their hands up and down on the instrument.\", \" They continue to play while looking off into the audience and ends by bowing.\"]}, \"v_oey6DFvL9Xk\": {\"duration\": 61.72, \"timestamps\": [[1.54, 19.13], [19.44, 42.28], [39.19, 56.47]], \"sentences\": [\"A woman is seen pointing to her eyes and holds her eye open.\", \" She squeezes out a contact lense and is shown again in slow motion.\", \" She holds up the lens to the camera.\"]}, \"v_gxJeNdvNzhU\": {\"duration\": 42.56, \"timestamps\": [[0, 19.79], [15.11, 34.48], [27.45, 41.92]], \"sentences\": [\"A young child is being blindfolded by a man in front of a large crowd.\", \" The boy then begins swinging a bat at a pinata.\", \" He continues swinging and people walk around him.\"]}, \"v_WXST-TXQjoU\": {\"duration\": 14.9, \"timestamps\": [[0.07, 3.87], [2.76, 10.21], [8.57, 13.93]], \"sentences\": [\"A man is seen looking at the camera.\", \" Another man is seen walking around him holding a razor.\", \" The man then cuts the other's hair.\"]}, \"v_lt--z8nFIT0\": {\"duration\": 193.38, \"timestamps\": [[0, 38.68], [33.84, 116.99], [111.19, 185.64]], \"sentences\": [\"A large group of people are seen skating around the ice playing hockey.\", \" Several people speak to the camera as the men continue to play.\", \" The men push the puck all along the ice while still speaking to the camera.\"]}, \"v_rMZtiiLAqoY\": {\"duration\": 118.14, \"timestamps\": [[0, 10.63], [10.04, 15.95], [15.95, 56.12], [39.58, 53.76], [56.12, 71.48], [72.66, 85.65], [88.02, 102.79], [103.97, 115.19], [115.19, 118.14]], \"sentences\": [\"A man with disheveled hair talks to the camera while standing next to a table football table.\", \" The man holds a coin up to the camera.\", \" The man inserts the coin into the table.\", \" the man jams the coin mechanism with a knife.\", \" The man uses a mechanism to insert multiple table football balls onto the table.\", \" A closeup of the ball dispenser mechanism is shown.\", \" The man plays table football by himself, scoring several goals.\", \" Another closeup of the ball dispenser is shown.\", \" The man smiles at the camera.\"]}, \"v_cr2lbZ6or1Q\": {\"duration\": 125.76, \"timestamps\": [[0, 117.59], [41.5, 117.59], [0, 107.52]], \"sentences\": [\"man is in a dark stage playing violin.\", \" a lot of people are sitting on chairs watching the performance of the man.\", \" two men are standing behind the man in stage.\"]}, \"v_6nMQRUhOcwM\": {\"duration\": 49.69, \"timestamps\": [[2.98, 5.47], [2.98, 49.69], [35.28, 35.78]], \"sentences\": [\"A woman is throwing a red frisbee.\", \" A black and white dog is chasing after the frisbees.\", \" The woman kneels down to pick up a frisbee.\"]}, \"v_JkZZvDHTty4\": {\"duration\": 119.19, \"timestamps\": [[0, 35.76], [38.74, 84.03], [85.82, 119.19]], \"sentences\": [\"A large machine is seen moving a roof with a man sitting next to it.\", \" The machine lifts up the tiles continuously.\", \" Finally in the end a man digs out debris from the machine.\"]}, \"v_AauepSs1kUU\": {\"duration\": 170.78, \"timestamps\": [[0, 30.74], [31.59, 70.02], [70.02, 121.26], [121.26, 163.1]], \"sentences\": [\"People play professional field jockey competing in teams.\", \" Several teams compete field jockey and scores in the goal.\", \" A man stops the ball with the stick and a player hits it and scores.\", \" Several teams scores when a player holds the ball with the stick and let a teammate score.\"]}, \"v_DUb48prwNZk\": {\"duration\": 89.56, \"timestamps\": [[0, 25.97], [20.15, 64.04], [57.32, 83.74]], \"sentences\": [\"A close up of a hookah is shown as well as a camera panning around a girl.\", \" The girl is seen holding a hose and smoking from the hookah.\", \" The camera pans around the girl as she sits down and continues smoking.\"]}, \"v_vKCxWIzJTm0\": {\"duration\": 219.48, \"timestamps\": [[0, 26.34], [37.31, 145.95], [169, 219.48]], \"sentences\": [\"A man is crouching on the ground in front of a crowd.\", \" A woman makes slow moves in his direction.\", \" Another couple move in before they all begin dancing together.\"]}, \"v_oUdEoaKDHpA\": {\"duration\": 213.53, \"timestamps\": [[0, 51.25], [49.11, 122.78], [104.63, 207.13]], \"sentences\": [\"A close up of a floor is seen followed by two men walking and performing tricks.\", \" The men perform tricks all around various areas while pointing to the camera.\", \" The men continue to jump and dance around public places while laughing and playing with one another.\"]}, \"v_t_Creyg6ANs\": {\"duration\": 173.69, \"timestamps\": [[0, 7.82], [8.68, 92.05], [92.05, 143.29], [144.16, 173.69]], \"sentences\": [\"\\\"Shuffleboard Olympics at Pembroke Pines\\\" appears on a black screen.\", \" Young children pretend to play shuffleboard on a large outdoor board, although the really just push the puck down the length.\", \" The children finish and are given candy treats for playing.\", \"  Credits roll over a black background.\"]}, \"v_ksvK_P-Eas4\": {\"duration\": 238.32999999999998, \"timestamps\": [[0, 23.83], [35.75, 160.87], [169.21, 232.37]], \"sentences\": [\"Four women are seen standing on a stage beside one another.\", \" The women begin belly dancing with one another in front of an audience.\", \" They continue dancing with one another and end by laughing with one another.\"]}, \"v_uyGxlvak-Bg\": {\"duration\": 156.32999999999998, \"timestamps\": [[0, 31.27], [28.14, 114.9], [109.43, 150.08]], \"sentences\": [\"A woman is shown speaking to the camera while standing with another woman.\", \" They point to a pair of sneaks on a table and one woman mixes together ingredients.\", \" She cleans off the shoe while presenting the others and still speaking.\"]}, \"v_1U0VxGw1cdA\": {\"duration\": 29.05, \"timestamps\": [[0, 6.97], [3.63, 21.35], [10.31, 29.05]], \"sentences\": [\"The player is holding a bat walking in the field.\", \" The player ran after the other player.\", \" The players are running to the other side of the field.\"]}, \"v_hchuVbHYK_k\": {\"duration\": 46.56, \"timestamps\": [[0, 9.78], [11.41, 34.45], [36.78, 46.56]], \"sentences\": [\"A person is riding in a raft in the river.\", \" They use a paddle to navigate the waters.\", \" They continue to raft through rougher waters.\"]}, \"v_6RePzOd3GvQ\": {\"duration\": 13.52, \"timestamps\": [[0, 3.85], [4.05, 6.28], [6.08, 7.1]], \"sentences\": [\"A man in a black shirt is talking to the camera.\", \" He stands in front of a sink and brushes his teeth.\", \" He spits into the sink in front of him.\"]}, \"v_dWJIJM3qmyQ\": {\"duration\": 178.57999999999998, \"timestamps\": [[0, 27.68], [43.75, 116.97], [136.61, 178.58]], \"sentences\": [\"A man is shown sanding down the top of a file cabinet.\", \" He then uses a rag to wipe the surface clean.\", \" Then he applies a laminate cleaner and rubs it into the wood.\"]}, \"v_XZZRyOhxQBE\": {\"duration\": 66.18, \"timestamps\": [[0, 6.29], [11.58, 44.67], [47.65, 66.18]], \"sentences\": [\"a gymnast uses a long pole to approach a vault.\", \" He vaults onto the pole and into the air.\", \" He goes over the bar several times, landing on the mat.\"]}, \"v_djpr7UMlnSw\": {\"duration\": 23.99, \"timestamps\": [[0, 5.76], [5.52, 16.91], [16.07, 23.39]], \"sentences\": [\"A man is seen bending down and laying tile on a floor.\", \" The man carefully places the tile around plaster.\", \" He continues to lay down the tiles.\"]}, \"v_wq4H7L15NMA\": {\"duration\": 16.09, \"timestamps\": [[0, 3.62], [3.7, 6.6], [6.52, 9.82], [9.9, 12.79], [13.11, 16.09]], \"sentences\": [\"A woman pulls on a rowing machine in a gym while others exercise or walk by in the background.\", \" The woman pulls on the machine a second time.\", \" The woman pulls on the machine a third time.\", \" The woman pulls on the machine a fourth time.\", \" The woman pulls on the machine a fifth time.\"]}, \"v__1vYKA7mNLI\": {\"duration\": 61.86, \"timestamps\": [[7.11, 54.74], [11.13, 54.74], [16.08, 54.74]], \"sentences\": [\"A man is kneeling down on a blue mat.\", \" He is holding onto a stick attached to a machine.\", \" He begins to pull the stick and work out with the machine.\"]}, \"v_yJSQmNSFlNI\": {\"duration\": 238.02, \"timestamps\": [[0, 238.02], [0, 32.13], [36.89, 141.62], [42.84, 238.02]], \"sentences\": [\"Several people are in tubes on the river.\", \" They float past a bridge.\", \" The water gets rockier as they go.\", \" They drink beers as they float.\"]}, \"v_MdrK2uQ-GvA\": {\"duration\": 70.71000000000001, \"timestamps\": [[0, 14.14], [14.14, 26.51], [26.87, 35]], \"sentences\": [\"A person does a hand stand on a diving board.\", \" They dive into the swimming pool below them.\", \" People on the sidelines are clapping.\"]}, \"v_CqscMsSNiNY\": {\"duration\": 235.27, \"timestamps\": [[0, 34.11], [51.76, 130.57], [174.1, 235.27]], \"sentences\": [\"A man is wearing a wet suit in the ocean.\", \" He balances on a boardd while holding up a sail.\", \" He lifts the sail up out of the water.\"]}, \"v_krNVpENNPCM\": {\"duration\": 237.15, \"timestamps\": [[0, 237.15], [33.2, 87.74], [87.74, 237.15]], \"sentences\": [\"This woman is making small homemade cakes using her hands and ingredients.\", \" First, she mixes the ingredients up together and she adds eggs into it along with flour and milk.\", \" She then mixes the thin manageable mix in the bowl and puts it inside of a square baking pan to let it bake and when it's done, she takes the cake out to cut it into little slices.\"]}, \"v_jr7JA5eKkwY\": {\"duration\": 186.02, \"timestamps\": [[5.58, 10.23], [62.32, 90.22], [120.91, 134.86]], \"sentences\": [\"Man washes his long black hair.\", \"  Man blow dries his long black hair.\", \"  Man runs his hands through his black hair.\"]}, \"v_2-S2fehRKVc\": {\"duration\": 4.74, \"timestamps\": [[0, 4.74], [0.17, 0.52], [0.45, 4.24], [2.58, 4.69]], \"sentences\": [\"There's a man in a blue shirt using an ax to chop wood from a tree bark in the forest.\", \" He begins by aiming the ax directly on the tree bark that is already chopped close to the ground.\", \" He then lifts his ax and brings it down with force, directly on the tree bark.\", \" He bends as he brings the ax closer to forcefully chop the bark into half.\"]}, \"v_0zjA3KPnLK8\": {\"duration\": 180.23, \"timestamps\": [[5.41, 28.84], [27.04, 51.37], [55.87, 176.63]], \"sentences\": [\"Two men are seen kneeling down before one another in front of a large crowd.\", \" One throws the other down and leads into another fight between two men.\", \" The men continue wrestling and throwing one another down while people watch on the side.\"]}, \"v_RN2QwhcAsUY\": {\"duration\": 121.35, \"timestamps\": [[0.61, 30.94], [28.52, 83.12], [74.63, 118.31]], \"sentences\": [\"A person is seen washing a dog in a tub.\", \" The person runs water all over the dog and scrubs him with soap.\", \" She continues to wash the dog while the camera pans around her movements.\"]}, \"v_EqSXihtiv5g\": {\"duration\": 93.02000000000001, \"timestamps\": [[0, 13.49], [13.95, 38.6], [39.07, 84.18]], \"sentences\": [\"Materials to make a gift pack is shown.\", \" A person cuts pink circles from craft paper, then the person folds the circles in half.\", \"  After, the person joins four circles to form a rectangle knotted with a ribbon.\"]}, \"v_Z1N185E4gsk\": {\"duration\": 50.62, \"timestamps\": [[0, 4.3], [5.82, 28.85], [30.63, 50.62]], \"sentences\": [\"A person is standing in the heavy falling snow.\", \" They are trying to clear the snow off the sidewalk.\", \" The child just stands with the shovel, not sure what to do.\"]}, \"v_gA7GpvB10UY\": {\"duration\": 187.79, \"timestamps\": [[0, 17.84], [17.84, 79.81], [79.81, 187.79]], \"sentences\": [\"man is holding a contact lenses case in front of a mirror and open it.\", \" the woman wash her hands takes out the lenses and holds a contact with her right hand and put it on the right eye.\", \" then grab the other contac and do the same with the other eye and show the liquid.\"]}, \"v_MaJlWFemO68\": {\"duration\": 15.67, \"timestamps\": [[0.63, 15.67], [0.63, 15.52], [0.63, 15.6]], \"sentences\": [\"woman is sitting in a room in front of a whit curtain.\", \" woman is combing her large dark hair.\", \" the woman is combing her hair in a room in front of a curtain watching to the camera.\"]}, \"v_HuUIIKA3o_A\": {\"duration\": 193.59, \"timestamps\": [[0, 18.39], [31.94, 99.7], [110.34, 193.59]], \"sentences\": [\"A man is walking in a snow covered parking lot.\", \" He wipes the snow off the windows of a car.\", \" He then gets into the car and drives away.\"]}, \"v_tfPm9xAZ5z0\": {\"duration\": 88.89, \"timestamps\": [[0, 22.67], [17.33, 64.44], [53.33, 87.55]], \"sentences\": [\"A close up of cats claws are seen with a woman speaking to the camera.\", \" The woman holds a pair of clippers and begins cutting the cats claws.\", \" She continues cutting and pausing to speak to the camera.\"]}, \"v_GR6Ul2pD8_Y\": {\"duration\": 203.8, \"timestamps\": [[0, 41.78], [40.76, 120.24], [118.21, 203.8]], \"sentences\": [\"a man rides a huge lawn mower, gets off and starts talking.\", \" the man then shows a woman how to start a left blowing machine.\", \" they both begin cleaning their yard.\"]}, \"v_7FPvAakfM9Y\": {\"duration\": 79.16, \"timestamps\": [[0, 79.16], [1.98, 4.75], [6.33, 16.23], [15.04, 51.06], [48.29, 58.58], [57.78, 79.16]], \"sentences\": [\"There's a young woman wearing a black shirt and white shorts mopping the kitchen floor tiles with a mop in her left hand and candy in her right hand.\", \" The woman goes running towards the black bucket placed near the dinning table with the mop in her hands.\", \" Then she comes towards the sink and mops the floor in a way as though she is dancing along with it.\", \" She continues mopping the floor across the kitchen, around the counters and stove with the mop still in her hand.\", \" Then as she dances on the wet floor, she loses balance and slips and falls down on the floor.\", \" She gets up right away and then walks around eating the candy in her right hand.\"]}, \"v_fOuFF7dGPtI\": {\"duration\": 145.64, \"timestamps\": [[0, 31.31], [96.85, 98.3], [99.76, 100.49]], \"sentences\": [\"A man is standing up holding a bowling ball.\", \" He throws the ball down the lane.\", \" It knocks the pins over at the end of the lane.\"]}, \"v_I2w4N_GnyT8\": {\"duration\": 53.5, \"timestamps\": [[0, 18.46], [15.25, 42.26], [35.04, 51.09]], \"sentences\": [\"A person is seen pitching a ball and players high fiving and cheering.\", \" The clips is shown again in slow motion.\", \" In the end the pitcher walks away.\"]}, \"v_vrXqd_Ct298\": {\"duration\": 225.98, \"timestamps\": [[0, 170.61], [170.61, 225.98], [0, 225.98]], \"sentences\": [\"kids are going on bicycles in a dusty path.\", \" bikers are on start and go in a competition.\", \" kids are riding bicycles on a path in a city.\"]}, \"v_6VUsbs84lCc\": {\"duration\": 17.86, \"timestamps\": [[0, 2.68], [1.79, 5.8], [6.07, 17.86]], \"sentences\": [\"a woman is sitting on wood deck.\", \" the woman has red yawn and a needle in her lap.\", \" the woman sits and knits vigorously.\"]}, \"v_62BPME-ikJU\": {\"duration\": 168.9, \"timestamps\": [[0, 3.38], [3.38, 102.19], [102.19, 168.9]], \"sentences\": [\"This video is a tutorial showing how to cut the grass.\", \" First she explains how you should cut the grass according to its color and how high or low you want it.\", \" Next, she explains how to use the lawnmower and other tools and then she cuts the grass.\"]}, \"v_CdjU2OZri4c\": {\"duration\": 104.89, \"timestamps\": [[0, 22.03], [12.06, 37.23], [29.89, 70.8], [65.03, 104.89]], \"sentences\": [\"two different types of flooring is shown.\", \" a man takes an instrument an begins measuring hard wood.\", \" the man then drills holes in the floor.\", \" the man installs hard wood flooring.\"]}, \"v_QoRUUJz-PU0\": {\"duration\": 208.38, \"timestamps\": [[0, 8.34], [9.38, 130.24], [131.28, 208.38]], \"sentences\": [\"Words on screen present \\\"Ricardinho 5 anos de magia\\\" appear.\", \" Ricardinho appears running on several fields of play both indoors and out.\", \" He scores several goals into the nets at different games.\"]}, \"v_egT7FYHlWho\": {\"duration\": 97.72999999999999, \"timestamps\": [[0, 16.61], [13.68, 44.96], [41.54, 97.73]], \"sentences\": [\"the interior of an RV is shown.\", \" a man takes a rag and wets it in the sink.\", \" the man takes the rag and wipes down a mirror.\"]}, \"v_fBlvOzfFq-k\": {\"duration\": 88.65, \"timestamps\": [[0, 13.3], [12.85, 50.98], [48.76, 88.65]], \"sentences\": [\"a crowd is gathered in an arena.\", \" swimmers are lined up on a diving board.\", \" the swimmers take turns diving off the diving board.\"]}, \"v_T-Ngg5bptUc\": {\"duration\": 126.48, \"timestamps\": [[0, 97.39], [24.66, 92.96], [0, 120.16]], \"sentences\": [\"A person sets up a Christmas tree inside.\", \"  Some children and a woman help too.\", \"  There is a fire going the whole time.\"]}, \"v_IQGg87yZZjs\": {\"duration\": 198.95, \"timestamps\": [[0, 19.89], [20.89, 52.72], [42.77, 103.45], [83.56, 149.21], [133.3, 198.95]], \"sentences\": [\"various knives are shown close up.\", \" a boy picks up a mallet.\", \" the boy takes the mallet and hammers small goal posts into the grass.\", \" the boy then snaps his fingers and a his twin appears.\", \" the two then begin to play cricket.\"]}, \"v_ZJ6BFrKcRe0\": {\"duration\": 154.88, \"timestamps\": [[0, 154.88], [17.04, 147.13], [51.88, 154.88]], \"sentences\": [\"The man in gray shirt is standing at the beach.\", \" The man is pulling the threads of the kite with his both hands.\", \" The man is looking up as he fly the kite, he walked near the water and continue to fly his kite.\"]}, \"v_P4PQ5tC3gX8\": {\"duration\": 80.39, \"timestamps\": [[0, 21.7], [17.28, 54.66], [51.05, 77.98]], \"sentences\": [\"A man is seen walking into frame and begins playing on an accordion.\", \" He moves his hands up and down and shows off several accordions.\", \" He continues playing and ends by dropping one.\"]}, \"v_gXvRxyT5rWw\": {\"duration\": 47.81, \"timestamps\": [[0, 5.74], [6.69, 38.25], [40.4, 47.81]], \"sentences\": [\"A man lifts himself up between two bars on a sandy beach.\", \" He spreads and closes his legs over and over again.\", \" He maintains his balance, then drops to the ground.\"]}, \"v_gSkE0KCvves\": {\"duration\": 14.72, \"timestamps\": [[0, 2.72], [2.5, 9.72], [9.2, 13.32]], \"sentences\": [\"A person is seen riding into a pit on a horse.\", \" The person swings a rope and grabs a calf.\", \" He ties up the calf and walks away.\"]}, \"v_ZGL-PmMopeM\": {\"duration\": 133.14, \"timestamps\": [[13.98, 16.64], [25.3, 30.62], [42.61, 133.14]], \"sentences\": [\"A person is taking skis off their feet.\", \" They cover something in the snow with a shovel.\", \" They begin to do tricks on skis down a hill.\"]}, \"v_J3DxJ8gI95U\": {\"duration\": 134.77, \"timestamps\": [[0, 22.24], [33.69, 89.62], [95.01, 134.77]], \"sentences\": [\"a chef is working inside a kitchen.\", \" He is cooking in several pots and skillets as he talks.\", \" He gives instructions on how to cook a dish.\"]}, \"v_KRGiJIHSd9E\": {\"duration\": 236.84, \"timestamps\": [[0, 73.42], [55.66, 181.19], [175.26, 229.74]], \"sentences\": [\"A woman is seen bending down and peeling paper off a mans back.\", \" The man leans forward the woman begins tattooing him while several shots are shown of sessions.\", \" The woman continues tattooing the man and shows off the tattoo in the end.\"]}, \"v_Iq9cAZxki9Y\": {\"duration\": 39.66, \"timestamps\": [[6.15, 8.73], [8.13, 10.31], [10.71, 11.3]], \"sentences\": [\"A woman gives the word for rock in Korean.\", \"  A woman gives the name for paper in Korean.\", \"  A woman gives the name for scissors in Korean.\"]}, \"v_jHXqbgeq83Y\": {\"duration\": 25.17, \"timestamps\": [[0, 3.78], [4.78, 16.74], [18.63, 25.17]], \"sentences\": [\"A man walks up to another man outside drinking a beer.\", \" He sits on the ground next to a chimpanzee.\", \" They drink and clink glasses together.\"]}, \"v_IRvFx8K0gAI\": {\"duration\": 166.53, \"timestamps\": [[0, 1.67], [2.5, 4.16], [8.33, 162.37], [163.2, 166.53]], \"sentences\": [\"A woman and a man face each other inside a film strip drawing.\", \" The music plays and the scene zooms in on the couple as they begin to dance together.\", \" The man and woman dance around while others sit at tables and watch them.\", \" When the dance ends the camera pulls back and we see the film strip drawing again with a website at the top.\"]}, \"v_KNyWPCoHEng\": {\"duration\": 164.72, \"timestamps\": [[0, 51.06], [39.53, 120.25], [115.31, 159.78]], \"sentences\": [\"Several clips are shown of people washing cars and a man getting out of his car.\", \" Water is shown splashing the car as well as the car moving and products being shown up a close.\", \" A man uses a waxer on the car and cleans off the interior and exterior.\"]}, \"v_sAi1aMHR89A\": {\"duration\": 22.83, \"timestamps\": [[0, 22.83], [0, 3.88], [5.48, 22.83]], \"sentences\": [\"a man is laying on the floor.\", \" another man holds the ankles of the laying man.\", \" the man then begins doing sit ups.\"]}, \"v_pXcFBfv5Sf4\": {\"duration\": 84.38, \"timestamps\": [[0, 9.28], [9.7, 67.08], [67.08, 84.38]], \"sentences\": [\"A man wearing a grey shirt introduces a group of BMX riders and a BMX track.\", \" The man wearing the grey shirt describes different techniques used in BMX competition while clips of BMX riders performing different moves.\", \" As the man wearing the grey shirt speaks clips of BMX riders perform additional maneuvers on the track.\"]}, \"v_Y8-7fr5bv24\": {\"duration\": 195.03, \"timestamps\": [[0, 33.15], [35.1, 67.28], [68.26, 117.99], [118.97, 154.07], [158.95, 195.03]], \"sentences\": [\"A pink screen appears with the word Glamour coming across it followed by a word across the screen.\", \"After,a young woman with curly hair is shown sitting in a chair as a model as the hair stylist talks.\", \"He then shows her hair with a french braid in the front and begins to demonstrate how to braid it.\", \"After grabbing the three strands and braiding both sides,the man begins to pin up the rest of the hair and shows the complete look.\", \"Once complete,the girl reappears with her hair out in a curly Afro and does her own hair the exact same way showing how easy it is to achieve the look.\"]}, \"v_E2yPoqpNVdM\": {\"duration\": 115.06, \"timestamps\": [[0, 13.23], [14.96, 74.21], [90.89, 115.06]], \"sentences\": [\"A large man is talking inside a gym.\", \" He uses a paintball gun while he talks.\", \" He then is engaged in a game of paintball with other men.\"]}, \"v_SyOdA4ZKEtQ\": {\"duration\": 87.93, \"timestamps\": [[0, 6.6], [7.03, 66.39], [50.56, 57.6], [58.04, 66.39], [66.83, 79.58], [80.02, 87.93]], \"sentences\": [\"A black screen appears with pink letters explaining what the video is about and who is in it.\", \"  Gymnasts are at a gym showing how to tumble and flip.\", \"  A black screen appears with pink letters.\", \"  The screen has a shaded lower area with pink letters.\", \"  A black screen with pink letters comes on.\", \"  A graphic screen comes up that transforms into a video of a flower with blue letters and numbers in a shaded box at the bottom of the screen.\"]}, \"v_Mk9PMED8K4g\": {\"duration\": 210.88, \"timestamps\": [[3.16, 166.6], [9.49, 14.76], [41.12, 50.61], [54.83, 60.1], [62.21, 82.24], [86.46, 166.6], [141.29, 157.11], [173.98, 205.61]], \"sentences\": [\"A person is riding a dirt bike.\", \" A lady puts on goggles while sitting on a dirt bike.\", \" A lady pulls out a silver ladder, climbs a into a truck, and sits on a dirt bike.\", \" The lady backs the dirt bike off the truck.\", \" The lady climbs on the truck, undressed, and dresses in her biking gear.\", \" The lady rides off on the dirt bike.\", \" The lady rides the dirt bike through water.\", \" The lady talks on a phone.\"]}, \"v_I5F59PkcDWM\": {\"duration\": 167.0, \"timestamps\": [[0, 156.98], [0.83, 156.98], [35.9, 40.08]], \"sentences\": [\"A woman is sitting down playing an acoustic guitar.\", \" A man is sitting down behind her.\", \" He picks up a beer bottle and takes a drink.\"]}, \"v_dgRYwmcRpuo\": {\"duration\": 161.38, \"timestamps\": [[0, 12.91], [12.91, 23.4], [28.24, 65.36], [66.17, 71.01], [74.23, 103.28], [104.09, 105.7], [106.51, 133.94], [134.75, 146.85], [1.61, 132.33], [154.12, 161.38]], \"sentences\": [\"A person at a sink with green gloves on takes dishes out of a sink and puts them in a dish washer.\", \"  Protective grids are removed from the bottom of the sink and set aside.\", \"  A cleanser is poured into the sink then the person scrubs the sink from side to side as well as cleaning the drain catch.\", \"  A half a lemon is put in the garbage disposal to clean it.\", \"  The sink hose is used to rinse it down removing any cleanser from the sink and drain catch.\", \"  The sponge is ringed out.\", \"  Now the person is drying the sink , faucets and accessories.\", \" The grids are put back.\", \" White text appears on screen.\", \"  With the person still wiping down the sink white text appears at the end of the video.\"]}, \"v_TP8lUusp66Y\": {\"duration\": 191.89, \"timestamps\": [[0, 42.22], [11.51, 42.22], [64.28, 191.89], [131.44, 191.89]], \"sentences\": [\"A women holds a bat in her hands.\", \" She juggles a ball bouncing it up and down.\", \" Then she is on a field running the ball down the field.\", \" She hits the ball into a goal.\"]}, \"v_7RDn5qTQquE\": {\"duration\": 226.65, \"timestamps\": [[0, 62.33], [65.73, 169.99], [186.99, 226.65]], \"sentences\": [\"A man is inside a racquetball court.\", \" He is showing different stances and swings with his racquet.\", \" He is pretending to hit a ball against the wall.\"]}, \"v_TX8FGTL1flw\": {\"duration\": 116.68, \"timestamps\": [[0.58, 35], [35, 52.51], [52.51, 112.01]], \"sentences\": [\"This man is ice fishing in the cold weather and he is well dressed.\", \" This man is on his knees in the snow and he is pulling fish from a little hole using a string.\", \" After a while he stops when he pulls the last fish from the hole and it's pretty big.\"]}, \"v_fDPNV463JuE\": {\"duration\": 177.91, \"timestamps\": [[0, 8.01], [8.01, 31.13], [31.13, 32.91], [32.91, 177.91]], \"sentences\": [\"A man wearing protective gear and a helmet is standing and talking to the camera in a paint gun area with a lot of large cushions of different shapes.\", \"A man quickly walks in front of the guy talking then reappears in the view and talks to the man.\", \"A quick black screen appears with white words that say \\\"TIPS PARA BACK CENTRAL\\\".\", \"Two men dressed in protective gear and helmets are standing closely to one another talking, and one of the men has a paint gun in his hands and he's showing how he holds the gun as he talks and points to the paint gun area with all of the large cushions.\"]}, \"v_Qhs0AjFvcOA\": {\"duration\": 74.26, \"timestamps\": [[0, 11.88], [12.25, 65.72], [10.4, 47.15], [66.46, 74.26]], \"sentences\": [\"A short intro video appears with people playing various sports.\", \"  The video then goes into tennis and a tennis player explaining his technique.\", \" There is text that appears on the screen describing various aspects of tennis, where it's played,the setup and rules.\", \" A white screen appears and the Olympic logo is shown along with text for the year of that Olympics tournament followed by several screens with black text and a Youtube logo and the web address.\"]}, \"v_wtoKUYBw9f4\": {\"duration\": 61.74, \"timestamps\": [[0, 11.42], [12.97, 37.35], [40.75, 61.74]], \"sentences\": [\"A female track athlete stands on the tracks.\", \" She gets into a position, then runs.\", \" She vaults over a pole onto a mat.\"]}, \"v_j6HDZh7W6Z4\": {\"duration\": 85.06, \"timestamps\": [[0.43, 22.54], [22.11, 59.54], [52.31, 80.8]], \"sentences\": [\"A man walks into a circle and moves his arms and legs around.\", \" He spins himself around and throws an object off into the distance.\", \" Several more people are shown afterwards throwing a discuss.\"]}, \"v_YCqbvmEG-Uw\": {\"duration\": 17.28, \"timestamps\": [[0, 17.28], [0, 10.71], [0, 0.86]], \"sentences\": [\"This woman is scrubbing the ice off the front car window.\", \" She has one door open and there is also a bush and statue behind her.\", \"  She looks towards the camera only one time throughout the whole entire video.\"]}, \"v_Vhf-vNRYQEg\": {\"duration\": 86.94, \"timestamps\": [[0, 86.94], [11.74, 86.94], [85.63, 86.94]], \"sentences\": [\"Guitars are hanging on a wall of a shop.\", \"  A man sits on a cardboard box and plays an accordion.\", \" He stops playing and lifts his hand up.\"]}, \"v_VrNHEv6aR38\": {\"duration\": 14.56, \"timestamps\": [[0, 2.18], [2.18, 9.46], [9.46, 14.56]], \"sentences\": [\"A group of swimmers are in a public pool.\", \" They are involved in a game of water polo.\", \" They hit the ball and throw it back and forth.\"]}, \"v_PLqTX6ij52U\": {\"duration\": 147.47, \"timestamps\": [[0, 21.38], [22.12, 98.8], [98.8, 147.47]], \"sentences\": [\"A man is standing inside a building.\", \" He is talking while holding a bike.\", \" He holds up the bike while he talks about it.\"]}, \"v_a2HjLtnVDaY\": {\"duration\": 36.04, \"timestamps\": [[0, 36.04], [0.9, 36.04], [16.76, 36.04]], \"sentences\": [\"A large dog and two small dogs are walking.\", \" Two of the dogs are tied together.\", \" A woman walks next to them holding a leash for the other dog.\"]}, \"v_bG7hnpAeja0\": {\"duration\": 200.3, \"timestamps\": [[0, 6.01], [8.01, 11.02], [15.02, 30.04], [31.05, 149.22], [40.06, 105.16], [85.13, 87.13], [108.16, 109.16], [110.16, 128.19], [118.18, 119.18], [129.19, 147.22], [151.23, 156.23], [157.23, 161.24], [166.25, 179.27], [181.27, 199.3]], \"sentences\": [\"People are standing or sitting around with phones and cameras waiting for a cover object to be revealed.\", \" The black cloth is removed and seven sumo are uncovered.\", \" The sumo do a performance for the people waiting.\", \" The sumo run through the neighborhood.\", \" The sumo surprise passerby as they interact.\", \"  The sumo drink milk.\", \" A sumo donks a basketball into the hoop.\", \" The sumo run on the beach.\", \" A flock of birds fly in the sky.\", \" The sumo jog with headlight bands on their forehead.\", \" The sumo sit at a gas station to eat Chinese food in a picnic type setting.\", \" A vehicle appears directly where the sumo were sitting.\", \" The vehicle moves on a road.\", \" The credits of the clip are shown.\"]}, \"v_GNg5kjnJlOE\": {\"duration\": 97.85, \"timestamps\": [[0, 27.4], [23.48, 69.47], [56.26, 91]], \"sentences\": [\"A close up of stilts are shown followed by a man bouncing around.\", \" Several people are shown jumping up and down on the stilts past one another.\", \" They continue bouncing around as well as with other people.\"]}, \"v_5C0G3BQ-Nds\": {\"duration\": 213.72, \"timestamps\": [[0, 19.23], [24.58, 119.68], [119.68, 213.72]], \"sentences\": [\"A game of foosball is in progress.\", \" Several people gather around the board to play.\", \" They kick with the figures and hit the ball back and forth.\"]}, \"v_m16Cn9VA3Lk\": {\"duration\": 29.65, \"timestamps\": [[0, 4.3], [4.74, 22.54], [24.31, 29.65]], \"sentences\": [\"a little girl is climbing on equipment at the playground.\", \" She swings across the monkey bars.\", \" She gets to the other end and stops.\"]}, \"v_EInkc1uEX3c\": {\"duration\": 228.18, \"timestamps\": [[0, 30.8], [30.8, 111.81], [111.81, 185.97], [185.97, 228.18]], \"sentences\": [\"An introduction comes onto the screen for a video about laying a floor.\", \" The floor is swept, cleaned, and prepared for the process.\", \" The men begin to lay the vinyl flooring across the floor one piece at a time.\", \" The final result is shown on the screen.\"]}, \"v_ESecNZbZgug\": {\"duration\": 91.56, \"timestamps\": [[0, 15.56], [18.31, 50.81], [51.27, 91.56]], \"sentences\": [\"A woman walks up to an elliptical.\", \" She climbs onto it, using it to exercise.\", \" She shows the mechanics for how it works as she pedals along.\"]}, \"v_IJ76Wtgg2g4\": {\"duration\": 109.88, \"timestamps\": [[0, 19.78], [18.13, 69.77], [66.48, 104.38]], \"sentences\": [\"A gymnast is seen standing with her arms up and jumps up onto a beam.\", \" She begins performing a gymnastics routine on the beam.\", \" She jumps and flips herself around and ends by jumping down with her arms up.\"]}, \"v_dFVX_2UQ2WY\": {\"duration\": 55.78, \"timestamps\": [[0, 16.45], [16.45, 55.78], [0, 55.78]], \"sentences\": [\"woman is standing in front of a table with red boots and a toothbrush in front.\", \" the woman grabs the toothbrush and cleans the heel.\", \" woman is showing how to clean a high heel with a toothbrush.\"]}, \"v_FgRIl4bNl_M\": {\"duration\": 121.16, \"timestamps\": [[0, 121.16], [3.03, 121.16], [0, 118.74]], \"sentences\": [\"man is cleaning a snowy path with a shovel.\", \" man cleans a square from a really deep snow.\", \" man wearing snowy clothes is pournig out the snow.\"]}, \"v_cROJALtLB1k\": {\"duration\": 33.41, \"timestamps\": [[0, 9.19], [11.36, 26.9], [29.4, 33.41]], \"sentences\": [\"Several views are shown of exercise equipment in a house.\", \" A man is then shown riding on the equipment.\", \" A close up is shown of the digital screen.\"]}, \"v_xf9iLflgRro\": {\"duration\": 205.79, \"timestamps\": [[0, 73.06], [74.08, 99.81], [99.81, 205.79]], \"sentences\": [\"man is standing on a rooftop putting polymer asphalt.\", \" men are unrolling the paper on the floor.\", \" men are on the rooftop putting the lams on the grey roof.\"]}, \"v_-5Q7iNtaWCU\": {\"duration\": 76.77, \"timestamps\": [[0, 3.45], [3.84, 17.27], [17.27, 21.11], [21.11, 29.17], [29.17, 76.77]], \"sentences\": [\"A man wearing a baseball cap is playing dodge ball with a group of kids.\", \" A group of boys on one side of the court are throwing and dodging the ball.\", \" The man wearing a baseball cap is hit with a ball and is out from the girls team.\", \" The girls team continue dodging the balls and tossing the ball at the boys team.\", \" The camera pans back and forth between the boys team and the girls team.\"]}, \"v_HytB88Fhqw8\": {\"duration\": 96.5, \"timestamps\": [[0, 14.48], [16.89, 61.28], [63.21, 96.5]], \"sentences\": [\"Several team members are playing on a field at night.\", \" They are also shown in the locker rooms and showers.\", \" They dress up and go to see a gift wrapping expert, who teaches them how to wrap presents.\"]}, \"v_2g9GrshWQrU\": {\"duration\": 179.51, \"timestamps\": [[0, 179.51], [0, 178.62], [55.65, 115.79]], \"sentences\": [\"Two men are arm wrestling at a table.\", \" People are standing around watching them.\", \" A man in a black shirt is holding a camera filming them.\"]}, \"v_u02UsNRxclU\": {\"duration\": 231.76, \"timestamps\": [[0, 227.12], [8.11, 231.76], [0, 231.76]], \"sentences\": [\"boy is smoking from a hookah and making circles with he smoke.\", \" differente men are sitting on couches smoking hokaah.\", \" men are doing tricks wih the smoke.\"]}, \"v_HNR_HofJ_Fs\": {\"duration\": 122.05, \"timestamps\": [[0, 20.14], [21.36, 84.21], [78.11, 120.21]], \"sentences\": [\"A man is seen moving around an airplane when another man walks in and speak to him.\", \" The men are then shown in several shots playing a game of volleyball and cheering with one another.\", \" In the end one man puts on a jacket and walks away while speaking to another.\"]}, \"v_esuEWVNHfsM\": {\"duration\": 220.82, \"timestamps\": [[0, 22.08], [26.5, 111.52], [118.14, 220.82]], \"sentences\": [\"A couple of men are playing a game of table tennis.\", \" They hit the ball back and forth over the net.\", \" They continue hitting the ball, trying to win the game.\"]}, \"v_KZyg_UYyL0s\": {\"duration\": 43.63, \"timestamps\": [[0, 8.51], [0, 37.09], [36.21, 43.63]], \"sentences\": [\"A man is pointing at a wooden fence.\", \" He is standing in front of the fence talking.\", \" He touches the fence and continues talking.\"]}, \"v_mRgS35iyhYE\": {\"duration\": 55.68, \"timestamps\": [[0.28, 20.32], [16.43, 38.42], [39.26, 55.4]], \"sentences\": [\"A large group of people are seen playing bumper cars with one another.\", \" The people crash into one another back and fourth.\", \" They continue to drive around and hit one another.\"]}, \"v_6-beYw2R10s\": {\"duration\": 48.95, \"timestamps\": [[11.5, 41.12], [11.75, 41.12], [13.22, 41.12]], \"sentences\": [\"A dog is standing in a bath tub.\", \" A person is spraying the dog with a hose.\", \" The person is rubbing the dogs fur.\"]}, \"v_JZz2O0y0ufY\": {\"duration\": 14.28, \"timestamps\": [[0, 1.86], [1.71, 8.71], [8, 14.28]], \"sentences\": [\"A man is seen laying out a piece of wood.\", \" He then holds up an ax.\", \" Finally he swings it back down.\"]}, \"v_WV-Sf5-aCcc\": {\"duration\": 147.32, \"timestamps\": [[0, 50.09], [27.99, 86.92], [79.55, 141.43]], \"sentences\": [\"A man is seen standing in front of the camera and holding his arms out.\", \" He begins moving back and fourth moving his body around.\", \" He continues moving around and speaking when another woman comes into frame and moves around.\"]}, \"v_jF33TElZc_Y\": {\"duration\": 188.83, \"timestamps\": [[0, 21.71], [41.54, 92.52], [119.9, 188.83]], \"sentences\": [\"A clock has a spinning hand around and around.\", \" A man is skiing on a very tall mountain.\", \" He is seen skiing down the hill several times.\"]}, \"v_jUmfhYsA5r0\": {\"duration\": 66.76, \"timestamps\": [[0, 12.02], [14.02, 46.06], [41.06, 64.76]], \"sentences\": [\"A man is seen leaning against a wall holding a guitar.\", \" The man begins playing the guitar while singing.\", \" He continues to play the guitar and sing and ends by speaking to the camera.\"]}, \"v_xQH8YS2_NxY\": {\"duration\": 93.89, \"timestamps\": [[0.94, 20.19], [19.25, 65.72], [50.23, 88.26]], \"sentences\": [\"A boy is seen playing a set of drums to the camera.\", \" He moves his hands up and down on the set.\", \" He continues playing and gets up and walks away in the end.\"]}, \"v_RUAWJc2OIJY\": {\"duration\": 173.64, \"timestamps\": [[0, 30.39], [30.39, 43.41], [46.88, 52.96], [118.94, 173.64]], \"sentences\": [\"A man in a suit is talking to the camera.\", \" A man starts break dancing on the floor.\", \" Two men shake hands and the audience claps.\", \" The man starts to dance on the stage.\"]}, \"v_oy1XjDer7o4\": {\"duration\": 77.35, \"timestamps\": [[23.2, 46.02], [11.22, 71.16], [25.52, 37.13], [55.3, 73.09], [74.25, 77.35]], \"sentences\": [\"A boy kicks a soccer ball in the yard while his father works.\", \" The adult mows the lawn with his child.\", \" The man moves toys to the side of the yard to clear the area.\", \" The man dumps lawn clippings into a trash bin.\", \" The man moves all of the toys back into the yard.\"]}, \"v_5WqnKjOz1z4\": {\"duration\": 143.51, \"timestamps\": [[0, 17.22], [18.66, 82.52], [94.72, 143.51]], \"sentences\": [\"A man is standing in his backyard.\", \" He is using a large rake to rake the leaves.\", \" He then gets a bag and rakes the leaves into the bag.\"]}, \"v_RHtpBRwZ9hM\": {\"duration\": 138.53, \"timestamps\": [[0, 22.16], [22.16, 90.74], [0, 138.53]], \"sentences\": [\"people are standing talking to the camera in studio.\", \" team is in the court playing curling.\", \" men are narrating the curling game.\"]}, \"v_V3LvKGRzkeg\": {\"duration\": 115.00999999999999, \"timestamps\": [[7.48, 27.6], [6.33, 115.01], [80.51, 115.01]], \"sentences\": [\"People are playing music up on a stage.\", \" People are watching them in front of the stage.\", \" People are dancing in front of the stage.\"]}, \"v_9PP5_HGpu4c\": {\"duration\": 187.15, \"timestamps\": [[0, 40.24], [50.53, 99.19], [109.48, 187.15]], \"sentences\": [\"A man is shown in a kitchen segment with a female newscaster.\", \" He shows her several different ingredients on the table in front of them.\", \" He then shows her how to make a stir fry.\"]}, \"v_bmIWsU8sNlw\": {\"duration\": 208.04, \"timestamps\": [[0, 13.52], [32.25, 145.63], [160.19, 208.04]], \"sentences\": [\"A little girl is seen in several different poses.\", \" She is then seen dancing on a stage with other girls.\", \" They are doing several ballerina style moves and dances.\"]}, \"v_cGoj8xGxrG0\": {\"duration\": 44.44, \"timestamps\": [[0, 10.67], [10.67, 27.78], [26.67, 42.89]], \"sentences\": [\"A text intro leads into a picture of a chair.\", \" Several more pictures of the chair are shown one after the other.\", \" The chair is still shown and ends with text.\"]}, \"v_WRc1Jv1j3nk\": {\"duration\": 38.94, \"timestamps\": [[0, 8.76], [7.79, 25.51], [26.48, 37.58]], \"sentences\": [\"Several clips are shown of people flipping and shooting bow and arrows.\", \" More people practice archery and a girl poses for the camera.\", \"  She shoots the bow even more.\"]}, \"v_gEYutYXODs4\": {\"duration\": 190.59, \"timestamps\": [[0, 37.17], [34.31, 93.39], [84.81, 190.59]], \"sentences\": [\"a woman washes her hands in a bathroom sink.\", \" the woman then lights a candle.\", \" the woman then sits in a living room and starts knitting.\"]}, \"v_K5wPwCFVkhU\": {\"duration\": 15.79, \"timestamps\": [[0, 15.79], [2.84, 15.79], [15.55, 15.79]], \"sentences\": [\"A dog is resting in a person lap.\", \"the dog is rubbing his head and licking the hand of the person holding him while laying and relaxing on a person lap.\", \"finally the dog stops licking the person hand and try's to look at the camera.\"]}, \"v_0vQs3ztG7vg\": {\"duration\": 37.97, \"timestamps\": [[0, 36.26], [23.92, 37.97], [36.83, 37.97]], \"sentences\": [\"A small child wearing yellow traverses a set of playground monkey bars while another child plays in the background.\", \" An adult is shown watching the child.\", \" The child dismounts from the monkey bars.\"]}, \"v_PKYg6_rs3LQ\": {\"duration\": 24.1, \"timestamps\": [[0, 24.1], [0, 3.62], [4.34, 18.68], [18.08, 24.1]], \"sentences\": [\"Two men are standing in a forest.\", \" They are holding up axes.\", \" They begin to rapidly chop stumps of wood on the ground.\", \" They then stop chopping the wood.\"]}, \"v_xabaKyhx7cg\": {\"duration\": 121.53, \"timestamps\": [[0, 24.91], [24.31, 82.04], [78.39, 121.53]], \"sentences\": [\"dirty sneakers are shown next to some show products.\", \" a man begins scrubbing the shoes with a brush.\", \" the man places the shoes in a bag and puts the bag in a washing machine.\"]}}"
  },
  {
    "path": "NLQ/2D-TAN/data/ActivityNet/train.json",
    "content": "{\"v_QOlSCBRmfWY\": {\"duration\": 82.73, \"timestamps\": [[0.83, 19.86], [17.37, 60.81], [56.26, 79.42]], \"sentences\": [\"A young woman is seen standing in a room and leads into her dancing.\", \" The girl dances around the room while the camera captures her movements.\", \" She continues dancing around the room and ends by laying on the floor.\"]}, \"v_ehGHCYKzyZ8\": {\"duration\": 61.72, \"timestamps\": [[0, 2.78], [3.09, 61.72], [15.43, 55.24], [17.59, 54], [39.81, 54.62], [56.47, 61.72]], \"sentences\": [\"The video starts with a title logo sequence.\", \" A man and woman are in a living room demonstrating exercises.\", \" The woman lays on the ground.\", \" The man starts pointing to different areas of the woman's body as she does an exercise.\", \" The woman begins to do small sit ups.\", \" The woman ends with a final title logo sequence.\"]}, \"v_nwznKOuZM7w\": {\"duration\": 31.65, \"timestamps\": [[0, 15.51], [11.39, 31.65]], \"sentences\": [\"Two people are seen moving around a kitchen quickly performing various tasks and sitting down.\", \" They then wax down a ski in the kitchen while continuing to move around.\"]}, \"v_ogQozSI5V8U\": {\"duration\": 36.55, \"timestamps\": [[0, 7.49], [7.49, 18.09], [19.37, 36.55]], \"sentences\": [\"We see a hallway with a wooden floor.\", \" A dog in socks walks slowly out onto the floor as a lady films him.\", \" The dog turns around and goes back to the other room.\"]}, \"v_nHE7u40plD0\": {\"duration\": 145.56, \"timestamps\": [[0, 145.56], [67.68, 72.78], [82.97, 87.33], [98.98, 103.34]], \"sentences\": [\"A woman and a man are sitting on the sidewalk playing music.\", \" People stand next to them and watch them play.\", \" A little boy holding a yellow ball walks by.\", \" A man poses for a picture in front of them.\"]}, \"v_69IsHpmRyfk\": {\"duration\": 94.72, \"timestamps\": [[1.89, 31.26], [29.36, 71.51], [55.41, 91.4]], \"sentences\": [\"A young girl is seen sitting in a chair with a person standing next to her.\", \" The person next to her then piercing one ear followed by the other.\", \" The person rubs lotion on the piercings afterwards.\"]}, \"v_D18b2IZpxk0\": {\"duration\": 95.67, \"timestamps\": [[0, 17.7], [19.61, 88.01], [90.88, 95.67]], \"sentences\": [\"A woman is shown riding a camel past pyramids in Egypt.\", \" The camel walks as the woman leans forward.\", \" And hand covers the lens as the harness is shown.\"]}, \"v_pizl41xmw7k\": {\"duration\": 172.07999999999998, \"timestamps\": [[0, 85.18], [27.53, 43.02], [86.04, 168.64]], \"sentences\": [\"A child mops the floor of a hallway in a house.\", \" The child sets the mop down and plays with her family member.\", \" The child walks into the bedroom area and continues to mop the floor.\"]}, \"v_oP77DgsbhKQ\": {\"duration\": 214.6, \"timestamps\": [[0, 40.77], [41.85, 119.1], [96.57, 170.61], [168.46, 214.6]], \"sentences\": [\"A man is seen kneeling down on the floor speaking to the camera.\", \" The man mixes up various ingredients and begins laying plaster on the floor.\", \" He measures the floor and tiles and cuts out a piece of tile to lay on the floor.\", \" He continues laying tiles on the floor while looking back to speak to the camera.\"]}, \"v_fzp5ooc727c\": {\"duration\": 148.32, \"timestamps\": [[0, 14.83], [15.57, 32.63], [32.63, 44.5], [44.5, 65.26], [66.74, 72.68], [74.16, 107.53], [106.05, 130.52], [129.78, 137.94], [137.94, 148.32]], \"sentences\": [\"Two lines of young men are walking side by side down a road.\", \"Then one man stands in a field holding a wooden object and begins twisting it.\", \"He then bends down and grabs a ball.\", \"After,the ball is placed on the ground and he picks it up and hits it as if he's playing baseball.\", \"The ball is thrown back and he its it again.\", \"Shortly after, a field of men are shown and they begin playing a game against one another.\", \"There was a penalty and one players attempts to hit the ball into the goal from the side.\", \"After,everyone is pictured lying down on the ground as if they are dead but one person begins to sit up but gets hit in the head by the ball and lays back down.\", \"Lastly,the screen flashes to a black screen and the words The End are shown.\"]}, \"v_LNKdVrX_0Fg\": {\"duration\": 226.72, \"timestamps\": [[0, 22.67], [22.67, 179.11], [182.51, 226.72]], \"sentences\": [\"A woman wearing overalls is talking to the camera.\", \" She lays out wrapping paper, showing how to wrap a toy in it.\", \" She wraps it around the toy, then tapes it up.\"]}, \"v_t0ajvfx6dgA\": {\"duration\": 147.26, \"timestamps\": [[0, 10.31], [17.67, 137.69], [120.02, 125.17]], \"sentences\": [\"A man in a suit is sitting behind a desk.\", \" People are playing lacrosse on a field of grass.\", \" A person in a yellow uniform is standing in front of a net blocking balls.\"]}, \"v_IoiDAHNryTk\": {\"duration\": 47.04, \"timestamps\": [[0, 19.29], [19.99, 47.04]], \"sentences\": [\"A girl is seen climbing across a set of monkey bars followed by her waving to the camera.\", \" She climbs her way back on the bars and jumps down mid way through.\"]}, \"v__yWADgOFxP0\": {\"duration\": 238.38, \"timestamps\": [[0, 75.09], [75.09, 238.38]], \"sentences\": [\"A camera pans over a snowy area and leads into a man standing on a snowboard and riding down a mountain.\", \" The man zooms in on himself riding down the hill and ends with him turning off the camera.\"]}, \"v_AGgJVF3nT6I\": {\"duration\": 65.04, \"timestamps\": [[0, 14.31], [14.31, 65.04]], \"sentences\": [\"A playroom is seen followed by a young boy sliding down a slide and climbing back up again.\", \" He slides down again, this time landing on his back, and continues to slide down several more times.\"]}, \"v_XD3yFrJHiv8\": {\"duration\": 157.32, \"timestamps\": [[0, 157.32], [0, 16.52], [0, 29.89], [29.89, 152.6], [152.6, 157.32]], \"sentences\": [\"A man and woman are sitting on red couches with sports jerseys hanging on the wall and a blue screen on the wall behind them in the middle of them.\", \"The woman picks up a clipboard next to her and smooths out the papers that are on top of it while smiling, crosses her legs and sits back.\", \"The man is talking this whole time while the woman gets comfortable on her couch and the woman briefly talks.\", \"Various clips begin to play and it briefly shows parts of a city, then most of it is of men outdoors and playing soccer on sand in a middle of city, and occasionally blue words pop up on the screen when certain plays in the game are made.\", \" When the clips end the man and woman on the couch begin talking and she puts her clipboard down.\"]}, \"v_lZKrd84QElk\": {\"duration\": 65.83, \"timestamps\": [[0.66, 18.76], [16.79, 56.94], [45.75, 65.17]], \"sentences\": [\"The former president is seen walking in a large field next to a woman and surrounded by a large crowd.\", \" The man gives a speech while people cheering and he shakes hands with others.\", \" The man then shares a beer with other people around him.\"]}, \"v_6lYTHj9vImo\": {\"duration\": 60.12, \"timestamps\": [[0, 15.33], [15.93, 34.27], [34.57, 49.6], [49, 60.12]], \"sentences\": [\"Four kids are outside in the beach playing in the sand,two boys on the left and two girls on the right.\", \"The girls have about six sand castles and a large circle surrounding it filled with water.\", \"They then take off running to the beach to grab more water as the boy comes and looks at their work.\", \"Once they are done,both of the girls take off running to the water but then stop midway to come back and get their floats.\"]}, \"v_E3QtX6r9QX0\": {\"duration\": 103.37, \"timestamps\": [[0, 36.18], [19.12, 103.37]], \"sentences\": [\"A large pile of leaves are seen being blown around with shots of a blower being shown.\", \" the leaves continue to be shown blowing around as well as a machine sitting off in the distance.\"]}, \"v_iYxj8a1TPYk\": {\"duration\": 157.41, \"timestamps\": [[0, 84.21], [83.43, 157.41]], \"sentences\": [\"A basketball player is seen dribbling a ball in various shots for the camera and leads into the player making baskets over and over again.\", \" The man is then seen speaking to the camera and transitions into him scoring several more baskets.\"]}, \"v_cp52LdlmlUk\": {\"duration\": 129.96, \"timestamps\": [[0, 129.96], [5.2, 129.96], [17.55, 129.96]], \"sentences\": [\"People are standing in a room working out.\", \" They are stepping up and down on small stepping stools.\", \" They continue working out in the room.\"]}, \"v_bpg2PC2neQM\": {\"duration\": 218.7, \"timestamps\": [[0, 32.8], [38.27, 83.11], [88.57, 218.7]], \"sentences\": [\"A black and white video is being played of people playing lacrosse on a field.\", \" It then turns back to color and splits into multiple frames and speeds.\", \" The video includes numerous clips of players in lacrosse games, hitting the ball toward opposing goals.\"]}, \"v_RgzbNJPchqc\": {\"duration\": 69.24, \"timestamps\": [[0, 69.24], [38.08, 60.59]], \"sentences\": [\"A man is playing the bagpipes in front of people.\", \" The people on the couch in front of him start laughing.\"]}, \"v__zHSfEhEqkU\": {\"duration\": 194.35, \"timestamps\": [[0, 64.14], [55.39, 194.35]], \"sentences\": [\"A man is seen padding a canoe along the water while the camera captures him from several angles.\", \" The man continues riding around followed by performing several ways to turn the canoe around.\"]}, \"v_dAjhBWalWRM\": {\"duration\": 32.09, \"timestamps\": [[0, 32.09], [0.8, 30.81]], \"sentences\": [\"A group of people stand in front of a blackjack table.\", \" The blackjack attendant places cards on the table.\"]}, \"v_zihMznAYlV0\": {\"duration\": 72.8, \"timestamps\": [[1.46, 4.73], [6.19, 72.8], [38.95, 40.4], [43.68, 51.32], [51.32, 53.14], [56.05, 58.6], [58.6, 61.15], [61.51, 65.88], [66.24, 67.34]], \"sentences\": [\"Two men in padded sumo costumes are pulled along a tug rope on a ski slope.\", \" Two men in yellow padded sumo costumes do jumps on their snowboard on a downhill course.\", \" A filmer waives to the camera.\", \" The man spins while sliding across a platform in the sumo suit.\", \" The two men give each other a high five.\", \" The man in sumo suit goes over a small triangular obstacle.\", \" A man on small skis crashes while trying to jump.\", \" The man jumps onto and slide across a platform while wearing a sumo suit.\", \" The man bounces over a low railing.\"]}, \"v_---9CpRcKoU\": {\"duration\": 14.07, \"timestamps\": [[0, 1.62], [1.76, 8.58], [8.87, 14.07]], \"sentences\": [\"A man was sitting inside a room.\", \" He is holding a bowl of noodles and broth.\", \" He is drinking the broth from a bowl.\"]}, \"v_epqnpUCVLK8\": {\"duration\": 63.32, \"timestamps\": [[0, 5.07], [5.07, 13.61], [13.61, 24.38], [30.08, 61.74]], \"sentences\": [\"A little boy is laying on an exercise ball.\", \" The boy falls of and gets back on the ball before he falls off again.\", \" He tries to sit on the ball but the ball rolls away.\", \" He retrieves it and continues to sit on and fall off the ball.\"]}, \"v_GFE2wAi9fjo\": {\"duration\": 17.15, \"timestamps\": [[0, 17.15], [6.6, 17.15]], \"sentences\": [\"A woman puts a pair of shoes on while sitting in an office chair.\", \" The woman buckles her shoes.\"]}, \"v_W19-fYOO9sg\": {\"duration\": 98.15, \"timestamps\": [[0, 32.88], [30.92, 72.63], [65.76, 95.7]], \"sentences\": [\"A close up of a bike wheel is seen that leads into a person's hands pushing on the tire.\", \" The person uses a tool along the tire to help move it along.\", \" The person finally pushes the tire along it's sides.\"]}, \"v_m22TDwfa8go\": {\"duration\": 183.86, \"timestamps\": [[0, 23.9], [23.9, 52.4], [54.24, 136.05], [136.05, 183.86]], \"sentences\": [\"A woman is seen talking to the camera and presenting various liquids to the camera.\", \" She ready's the tip of a glass and dips the glass into sugar on a plate.\", \" She pours various liquids into a mixer and shakes the mixture all together.\", \" She pours the drink out into the glass while still speaking to the camera.\"]}, \"v_V_Nj_BhesEY\": {\"duration\": 83.15, \"timestamps\": [[0, 13.72], [14.14, 17.05], [0, 83.15], [17.46, 83.15]], \"sentences\": [\"Three people stand by the corner of a building.\", \" One of the persons, a young boy, takes a bow.\", \" A crowd of people watch him.\", \" He proceeds to perform various karate moves, such as bowing, cartwheels and flips.\"]}, \"v_p9iE8iemCMs\": {\"duration\": 134.58, \"timestamps\": [[10.09, 123.82], [42.39, 72.67], [74.02, 89.5], [92.86, 123.14]], \"sentences\": [\"A person is holding a flute.\", \"  The person shows a fingering for the second octave of the note.\", \"  The person shows the fingering on the third octave.\", \"  The woman talks directly to the camera.\"]}, \"v_fN2DiOswmOA\": {\"duration\": 185.48, \"timestamps\": [[2.78, 7.42], [7.42, 14.84], [14.84, 22.26], [22.26, 28.75], [28.75, 63.99], [63.99, 95.52], [95.52, 107.58], [107.58, 116.85], [116.85, 134.47], [134.47, 143.75], [143.75, 154.88], [154.88, 166.01], [166.01, 185.48]], \"sentences\": [\"The screen shows the title of preparing a Chilean Hulte salad dish.\", \" A person is mixing salad ingredients in a large bowl.\", \" There is information shown about Dr.\", \" Rachel Collin's trip to Chile.\", \" There are several people standing under a canopy at a food market.\", \" Two customers make a purchase and give money to the seller and give the camera a thumbs up.\", \" The chef is showing hulte placed on a kitchen counter.\", \" The chef is slicing the hulte in circular bite size pieces.\", \" A woman eats the cut pieces of hulte.\", \" The chef chops some cilantro on the kitchen counter.\", \" Then the chef places the ingredients in a salad bowl.\", \" The finished product is shown on screen, followed by a group of people sitting together and enjoying the salad.\", \" The end credits are displayed on the screen.\"]}, \"v_37pwbUp8t1I\": {\"duration\": 200.04, \"timestamps\": [[0, 199.04], [59.01, 199.04]], \"sentences\": [\"Hiphop dancers perform in front of a crowd.\", \"  They are all doing the same basic dance and having pictures taken of them.\"]}, \"v_TmI9MxCDBMw\": {\"duration\": 191.94, \"timestamps\": [[0, 32.63], [34.55, 142.99], [149.71, 191.94]], \"sentences\": [\"A murky river is shown next to a row of trees.\", \" A bunch of people on intertubes go by slowly.\", \" Then we see rapid waters as the tubers go over small falls.\"]}, \"v_4x7HYKV8zkY\": {\"duration\": 115.94, \"timestamps\": [[0, 26.09], [26.09, 65.5], [62.03, 71.3]], \"sentences\": [\"Three girls are on the beach talking.\", \" They do several flips on the beach.\", \" They lift one of the girls up for a stunt.\"]}, \"v__Af_9cK5x4E\": {\"duration\": 232.29, \"timestamps\": [[0, 10.45], [10.45, 48.78], [48.78, 73.17], [73.17, 80.14], [80.14, 173.06], [171.9, 232.29]], \"sentences\": [\"The camera pans above lush and green terrain over what looks like a mountain range.\", \" A man is shown covered in sweat and then jumping across various hills performing stunts on a dirt bike.\", \" He rotates and flips and performs all sorts of acrobatics.\", \" He is highly skilled and jumping over everything.\", \" The video then shows multiple men on dirt bikes jumping in various different places and shows the action from  a variety of angles.\", \" The men continue performing their stuns in various other landscapes.\"]}, \"v_y5j9TqTy9Xw\": {\"duration\": 44.84, \"timestamps\": [[0, 7.62], [9.64, 29.37], [30.71, 44.84]], \"sentences\": [\"A woman is walking along a track.\", \" She takes off at a fast run.\", \" She jumps over a bar and onto a mat.\"]}, \"v_Kp7pUEKrb8Q\": {\"duration\": 89.63, \"timestamps\": [[10.76, 13], [15.69, 63.19], [64.98, 66.33], [68.57, 80.22]], \"sentences\": [\"A person is slicing limes on a board.\", \" They put the limes and sugar into a blender.\", \" They strain the juice and pour it into a jar.\", \" They put a straw and a lime wedge on the rim of the glass.\"]}, \"v_5lre5zbUV1Q\": {\"duration\": 77.23, \"timestamps\": [[0, 33.6], [34.37, 38.23], [36.68, 69.51], [69.89, 73.37]], \"sentences\": [\"A child scrubs out the kitchen sink using a brush.\", \" The boy turns on the sink faucet.\", \" The child uses the faucet nozzle to rinse out the sink.\", \" The boy returns the sink nozzle to the faucet and turns off the water.\"]}, \"v_huFuRGoZt9I\": {\"duration\": 23.36, \"timestamps\": [[0, 13.2], [13.78, 23.36]], \"sentences\": [\"A dealer is shown laying out cards on a table while other people's hands are shown on the side.\", \" The person then lays out cards while another person lays out their chips.\"]}, \"v_CmEQjszPDrg\": {\"duration\": 220.85, \"timestamps\": [[0, 40.86], [40.86, 138.03], [139.13, 220.85]], \"sentences\": [\"Several people are outside with running equipment and numbers pinned to them jogging at a slow pace at what seams to be a Marathon or a 5k.\", \"A lady dressed in all black however,seems to be the focal point throughout the video and she is walking at an extremely slow pace for the whole time.\", \"After the crowd is shown and more people are seen running through the city or even participating in a wheel chair as the people on the side cheer them on.\"]}, \"v_RULNhPrXnfA\": {\"duration\": 187.55, \"timestamps\": [[0, 23.44], [23.44, 33.76], [32.82, 45.95], [45.95, 151.91], [150.98, 187.55]], \"sentences\": [\"A man is shown standing in front of a blue background as many harmonicas are shown and he starts playing them.\", \" He is then shown speaking into the camera and going into detail with regards to the products features.\", \" He shows off how many he has in his coat and continues talking.\", \" He is then shown playing another harmonica as he gives instruction on it.\", \" He speaks some more and shows his harmonica again as the video goes to an end title screen that reads Howcast original\\\".\"]}, \"v_Zd22n1caVgM\": {\"duration\": 32.49, \"timestamps\": [[0, 31.51], [7.15, 7.8], [15.59, 16.57], [21.12, 26.64]], \"sentences\": [\"A boy wearing white shorts is standing in a room.\", \" He puts something in his mouth.\", \" He kicks his legs up to the side.\", \" The kneels down onto the ground.\"]}, \"v_ZKP5J7OKEvI\": {\"duration\": 173.78, \"timestamps\": [[0, 119.04], [53.87, 169.43]], \"sentences\": [\"A small group of people are seen sitting on the side and lead into two people dancing together.\", \" The people continue dancing along the floor and end by clapping with the band.\"]}, \"v_44BfVJnhBgc\": {\"duration\": 169.92000000000002, \"timestamps\": [[0, 159.73], [65.42, 159.73]], \"sentences\": [\"A runner tests a prosthetic leg in a long distance run.\", \" He runs inside then runs outside.\"]}, \"v_VFOjLDa5VtA\": {\"duration\": 48.76, \"timestamps\": [[0, 14.63], [14.87, 37.06], [29.5, 47.54]], \"sentences\": [\"A small group of people are seen wandering around a tennis court hitting a ball over the net.\", \" The people hit the ball back and fourth while others watch on the side.\", \" They continue to play the game as well as others.\"]}, \"v_O-zE1-Yw3w0\": {\"duration\": 136.19, \"timestamps\": [[0, 40.86], [48.35, 94.65], [107.59, 125.97]], \"sentences\": [\"A young girl introduces the video and explains what she will be doing to wood.\", \" She places a piece of bubblewrap and makes sure it covers around about half of the wood.\", \" She then covers the rest of the wood and walks across it like a plank.\"]}, \"v_LFeoVokXAFY\": {\"duration\": 58.42, \"timestamps\": [[0, 8.47], [11.98, 50.54], [52.58, 58.42]], \"sentences\": [\"A man uses a large plastic blue bat.\", \" He swings it at a pinata shaped like spongebob squarepants.\", \" He misses several times, and keeps swinging.\"]}, \"v_HxJnPUqF9i8\": {\"duration\": 121.05, \"timestamps\": [[8.47, 12.71], [13.92, 37.52], [38.13, 54.47], [56.29, 61.13], [67.18, 75.05], [89.57, 113.18]], \"sentences\": [\"Athletes throw a javelin during a competition.\", \" A man practices his throwing stance walking and doing half throws without javeline.\", \" A man practices his throwing stance walking and doing half throws holding a javeline.\", \" The man swings a hammer.\", \" The man throws a weighted ball.\", \" Athletes train in a gym doing throwing motions on weighted cable machines.\"]}, \"v_FKl0077EUoY\": {\"duration\": 57.02, \"timestamps\": [[0, 20.24], [7.41, 15.11], [16.25, 30.51], [32.79, 57.02]], \"sentences\": [\"We see a person sharpen a knife on a sanding disc.\", \" The person touches it and turns it off.\", \" The person turns it on and then off off.\", \" We see the man talking to the camera.\"]}, \"v_Y_dtU10XIsg\": {\"duration\": 66.06, \"timestamps\": [[0, 5.62], [6.94, 42.61], [46.57, 66.06]], \"sentences\": [\"A close up of a crack is seen.\", \" A woman is outside, shoveling snow.\", \" A dog wags his tail as he tries to help.\"]}, \"v_x4iCAIPRDVQ\": {\"duration\": 23.38, \"timestamps\": [[0, 23.38], [11.69, 21.63], [21.63, 23.38]], \"sentences\": [\"People exercise on fitness machines while people sits on front and watch.\", \" A man pass on front holding a jacket and stand next a TV.\", \" A group of woman walk on front people exercising.\"]}, \"v_NwfS7eZiMLg\": {\"duration\": 134.72, \"timestamps\": [[0, 99.02], [99.69, 132.7], [133.37, 134.72]], \"sentences\": [\"A man is playing the bagpipes at the bottom of the stairs in the living room of a house, wearing a button up and dress pants, along with socks.\", \" He begins to tap his foot along with the beat of his tune, He starts to tap his left foot in a back and forth rhythm with his right foot.\", \" He finishes, and smiles at the camera.\"]}, \"v_aJbl1eVBzk0\": {\"duration\": 187.83, \"timestamps\": [[0, 187.83], [122.09, 129.6], [143.69, 146.51], [167.17, 169.98]], \"sentences\": [\"People are working in a bike shop fixing a bike.\", \"They put the wheels back onto the bike.\", \" The put the seat on the bike.\", \" The bike is put together on the floor.\"]}, \"v_UYHgieL5IKM\": {\"duration\": 185.18, \"timestamps\": [[0, 90.74], [52.78, 141.66], [157.4, 181.48]], \"sentences\": [\"A man is giving advice on outdoor activities, specifically mushrooming and closeup is shown and the man talks about it.\", \"  The man cuts one open and then cuts it in half.\", \"  Another man talks about the experience.\"]}, \"v_f0CViWbj3V4\": {\"duration\": 27.63, \"timestamps\": [[0, 1.38], [1.93, 20.59], [21.41, 27.63]], \"sentences\": [\"A man and woman are seated on a porch.\", \" The man plays bongo drums while the woman helps occasionally.\", \" Another hand is seen banging a drum in the foreground.\"]}, \"v_h8J08sJ2no0\": {\"duration\": 45.51, \"timestamps\": [[0, 24.8], [24.8, 40.96]], \"sentences\": [\"A person walks on the roof of a climbing equipment, then he goes down the wall and reach the floor and walk forward.\", \" The man stand with the hands on the border on the equipment and descend down the walk with the hands, then he walk on hands sideward.\"]}, \"v_g0XO-rWHmzs\": {\"duration\": 73.98, \"timestamps\": [[0.74, 44.39], [35.51, 71.39]], \"sentences\": [\"A woman is seen holding two dogs on a leash and proceeds to unhook them and let them go.\", \" One down then does his business into a bag tied to him and runs off behind bikes.\"]}, \"v_rBaR5xF8orE\": {\"duration\": 128.18, \"timestamps\": [[0, 63.45], [62.81, 128.18]], \"sentences\": [\"A large group of people are seen sitting around an auditorium with one man flying kites around in the middle.\", \" The person continues moving around with the kites and walks away in the end with a woman speaking to the crowd.\"]}, \"v_i2u80Y3BMYs\": {\"duration\": 214.78, \"timestamps\": [[0, 63.36], [63.36, 136.38], [135.31, 214.78]], \"sentences\": [\"Two men in work out clothes are standing up against the wall and they begin to talk about working out.\", \"One man is then shown and he bends down and shows the proper way to lift the bar with weight on it.\", \"A replay is then shown and the boy bends from the knees and then flips his wrist and brings it over his shoulder as he goes down into a squatting position.\"]}, \"v_WvxwmaDFGqk\": {\"duration\": 11.49, \"timestamps\": [[0, 1.32], [1.78, 7.36], [7.82, 11.49]], \"sentences\": [\"A man is seen kneeling in a gym.\", \" He leans forward several times.\", \" He is performing slow stretching moves.\"]}, \"v_xmag8UI8iws\": {\"duration\": 104.33, \"timestamps\": [[0, 104.33], [68.86, 80.33], [100.68, 104.33]], \"sentences\": [\" A person is using a leaf blower to blow leaves into a pile.\", \" The leaves blow up onto a hedge.\", \" They walk in front of a tree.\"]}, \"v_N9LTq3gYmsI\": {\"duration\": 35.55, \"timestamps\": [[0, 14.04], [13.51, 28.62], [28.8, 35.55]], \"sentences\": [\"A group of people are sitting down at the top of a snow slide in a tube.\", \"The person holding the camera starts his journey and he is off down the slopes of snow.\", \"As he reaches the bottom,several black mats are placed in front of him to help slow him down.\"]}, \"v_pZ8QqpYu-H8\": {\"duration\": 187.83, \"timestamps\": [[0, 165.29], [171.86, 187.83]], \"sentences\": [\"A man is seated at a piano, playing and singing into a microphone.\", \"When he finishes, he looks up and smiles.\"]}, \"v_4hmJfJo6UI8\": {\"duration\": 117.94, \"timestamps\": [[0, 14.15], [18.28, 27.71], [41.87, 117.94]], \"sentences\": [\"A female athlete runs quickly down a track.\", \" She plows into the sand before getting up and walking away.\", \" The scene is repeated three times before ending with her cheering and clapping.\"]}, \"v_TEaugXCX1m4\": {\"duration\": 150.14, \"timestamps\": [[0, 21.02], [26.27, 110.35], [111.1, 150.14]], \"sentences\": [\"A lighthouse is shown on the beach before we see a man running with a surf board.\", \" The man rides a wave, then through it.\", \" He completes several stunts before walking onto the beach with the board under his arm.\"]}, \"v_9rW35YTKYq8\": {\"duration\": 236.98, \"timestamps\": [[14.22, 36.73], [36.73, 213.28], [94.79, 213.28]], \"sentences\": [\"A man is shown flipping a violin in his hands, playing a popular song on his violin.\", \" The camera shows the violinist from various angles playing the popular song and not breaking concentration.\", \" The camera pans all around the player and shows him playing the complete song.\"]}, \"v_hoisfXCLJDQ\": {\"duration\": 15.19, \"timestamps\": [[0.15, 3.19], [3.19, 9.79], [7.06, 12.53]], \"sentences\": [\"A camera zooms in on a person riding in a tube.\", \" More people are seen riding in tubes behind the man.\", \" The people continue to ride around the area down the river.\"]}, \"v_mnqSG5o84NE\": {\"duration\": 139.82999999999998, \"timestamps\": [[0, 48.24], [48.94, 62.22], [62.92, 111.86], [112.56, 138.43]], \"sentences\": [\"A man train a boy kick box while two men watch sitting in the room.\", \" Then, the man stands and kick the boy who kick back then kneels.\", \" After, the man trains another child while showing movements.\", \" After, the man stands to practice kicks, then the man lye down and and hug the child who continues practicing kick box.\"]}, \"v_IWuiVS3-Z7k\": {\"duration\": 119.97, \"timestamps\": [[0, 4.8], [7.8, 52.79], [56.38, 103.77], [106.17, 119.97]], \"sentences\": [\"People are shown walking along a beach.\", \" Several people in paintball gear are running through an obstacle course.\", \" The people shoot at each other, hiding behind the obstacles.\", \" The winner dances and runs across the field.\"]}, \"v_nvsK9ggeics\": {\"duration\": 73.26, \"timestamps\": [[1.1, 37.36], [30.04, 71.79]], \"sentences\": [\"A young child is seen sitting behind a drum set playing the drums.\", \" The boy continues playing the instrument while the camera zooms in on him playing.\"]}, \"v_rAuz_Pf3lp8\": {\"duration\": 174.92000000000002, \"timestamps\": [[3.5, 167.04], [3.5, 11.37], [13.12, 31.48], [38.48, 154.8], [155.68, 174.92]], \"sentences\": [\"A family has a picnic, and goes tubing on inflatable rafts in a narrow body of water surrounded by trees, on a rainy day.\", \"  A family of people sit at an outdoor wooden picnic table, eating, waiving at the camera.\", \"  The family watch the weather outdoors as it begins to rain and a little girl runs out into the rain and dances in it.\", \"  The family then appears, floating, talking and smiling on inflatable tubes on a narrow body of water.\", \"  The event ends and the family leaves an area bordered by a wooden fence.\"]}, \"v_pxb95-aSDYo\": {\"duration\": 168.75, \"timestamps\": [[4.22, 11.81], [12.66, 64.97], [66.66, 115.6], [116.44, 168.75]], \"sentences\": [\"A man plays guitar and harmonica at the same time.\", \" Then, the man sings while playing the guitar.\", \" After, the man continues playing both the guitar and the harmonica, then sing.\", \" Next, the man plays the harmonica and the guitar together.\"]}, \"v_y7WO-8cQfO0\": {\"duration\": 191.73, \"timestamps\": [[0, 4.79], [4.79, 191.73], [49.85, 70.94], [70.94, 191.73], [90.11, 97.78], [156.26, 191.73]], \"sentences\": [\"The video begins with a title sequence.\", \" A young man is shown in a gym performing tricks with a jump rope as music plays in the background.\", \" He then lays down and begins doing tricks on the floor.\", \" The young man gets up again and does more tricks while standing.\", \" At one point, his friends assist with the jump rope tricks.\", \" The video ends with credits showing the young man's name, along with the names of those who assisted him.\"]}, \"v_74EoyLUbtgI\": {\"duration\": 171.22, \"timestamps\": [[0, 21.4], [21.4, 29.96], [34.24, 42.81], [42.81, 113.86], [114.72, 138.69], [141.26, 146.4], [153.25, 171.22]], \"sentences\": [\"A lady is seen putting wax on a mans shoes.\", \" We see the cloth hanging on the wall.\", \" We see the footprints on the platform.\", \" The woman rubs the mans shoes with a cloth.\", \" We see the cloth on the wall, then the lines of cloth near the shoes shine sign.\", \" A man is standing on a platform.\", \" We see the holographic man on the wall with the paper.\"]}, \"v_D9rHZpZoeRA\": {\"duration\": 202.5, \"timestamps\": [[0, 29.36], [29.36, 66.83], [67.84, 114.41], [114.41, 150.86], [149.85, 202.5]], \"sentences\": [\"A black two door Audi A3 is shown and then the camera zooms in on the tires.\", \"A finger then touches the emergency light and the lights on the car begin to flash.\", \"Next,the truck is opened,and the person removes the spare tire and the jack.\", \"He then lifts the car and continues to loosen the bolts on the wheel of the car.\", \"Once loose,the wheel is removed and the spare is put on and the same actions are performed in reverse.\"]}, \"v_WY9zvUkK_4Y\": {\"duration\": 203.59, \"timestamps\": [[4.07, 54.97], [53.95, 184.25], [184.25, 192.39]], \"sentences\": [\"Two girls stand between a girl in a hair salon stool and begin brushing her and parting her hair.\", \" One woman braids her hair continuously to eventually create a french braid.\", \" Both women stand talking to the camera while presenting the braid just made.\"]}, \"v_N-6-MdxRg50\": {\"duration\": 134.49, \"timestamps\": [[0, 5.38], [4.71, 12.78], [13.45, 128.44], [27.57, 35.64], [129.78, 134.49]], \"sentences\": [\"We see a colorful opening scene.\", \" Kids in colorful clothes walk on a stage and get in place.\", \" The kids perform zumba on a stage.\", \" The girl second from left goes the wrong direction and almost runs into another girl.\", \" We see an an ending screen.\"]}, \"v_uFMDSiHu7g4\": {\"duration\": 181.23, \"timestamps\": [[0, 13.59], [13.59, 141.36], [141.36, 181.23]], \"sentences\": [\" A man wearing a striped shirt dances with a girl in a brown blouse at a street festival.\", \" Other couple join in and dance in a street festival while performers play on a stage.\", \" Onlookers pass by while the group continues to dance.\"]}, \"v_Pu92wJ-7UTQ\": {\"duration\": 62.04, \"timestamps\": [[1.24, 12.72], [11.48, 31.02], [27.92, 62.04]], \"sentences\": [\"The man is strumming one drum.\", \" The man strum the other drum while moving his leg.\", \" The man play two drums at the same time.\"]}, \"v_dsVvnFkGAn0\": {\"duration\": 82.8, \"timestamps\": [[0, 13.66], [12.01, 68.31], [63.76, 82.8]], \"sentences\": [\"The woman is sitting by the fireplace holding a violin.\", \" The woman placed the violin between her neck and shoulder and began strumming the violin with the stick.\", \" The lady put the violin on her lap and talked.\"]}, \"v_JgHQCKz_DRc\": {\"duration\": 104.05, \"timestamps\": [[3.12, 88.44], [3.64, 27.57], [3.64, 87.92], [3.12, 87.4], [81.68, 84.8], [90, 98.33]], \"sentences\": [\"A man sits in a chair as he is getting his hair cut.\", \" A man in a black shirt moves a light around.\", \" People scramble behind the hair stylist.\", \" A hair stylist continuously combs and cuts the man's hair.\", \" The hair stylists rubs some pomade on the man's hair.\", \" The man is seen posing.\"]}, \"v_DEmArEKL8gc\": {\"duration\": 194.56, \"timestamps\": [[0, 22.37], [22.37, 54.48], [54.48, 79.77], [79.77, 143], [143, 194.56]], \"sentences\": [\"A teenage female cheer leading squad walks around on a mat and get in formation.\", \"The routine begins in a manikin challenge and they all begin to do a flip.\", \"After,they do a several straddle jumps and begin thrown up in stands.\", \"Once the stunts are done,half of the team begins doing cart wheels and they all meet back in the middle to do stunts in the air.\", \"More stunts are done and the girls finish by landing in a split,they then get up and hug each other in the middle of the mat.\"]}, \"v_8ikOQRbeQL8\": {\"duration\": 132.22, \"timestamps\": [[0, 132.22], [19.17, 132.22]], \"sentences\": [\"A woman wearing a hood and glasses is talking.\", \" She is holding a baton and twirling it in her hands.\"]}, \"v_zzz_3yWpTXo\": {\"duration\": 21.53, \"timestamps\": [[0.22, 10.55], [8.29, 21.09]], \"sentences\": [\"A woman is seen standing behind a sink and washing dishes while speaking to the camera.\", \" The woman continues washing silverware while looking over to the camera and smiling.\"]}, \"v_iMiKGoQ7RjE\": {\"duration\": 127.9, \"timestamps\": [[0, 35.81], [34.53, 73.54], [102.32, 105.51]], \"sentences\": [\"A man in a black hat is hitting a ball on the grass with a club.\", \" He continues to talk to the camera.\", \" He holds up a small trophy.\"]}, \"v_Vjsd6Ec6eKA\": {\"duration\": 152.86, \"timestamps\": [[0, 9.94], [10.7, 35.16], [37.45, 131.46], [133.75, 152.86]], \"sentences\": [\"A group of people are on a field.\", \" They attach a camera to one of the player's heads.\", \" They lift each other over their heads in cheerleading stunts that can be seen from the camera's view.\", \" They smile and laugh as they continue to perform stunts.\"]}, \"v_XnUi1SG9jxA\": {\"duration\": 69.17, \"timestamps\": [[1.73, 27.67], [24.9, 49.11], [47.04, 67.1]], \"sentences\": [\"A large group of people are seen standing around when several clips are shown of a man attempting to jump over a bar.\", \" The man completes the jump after a couple tries and is shown again in slow motion.\", \" The man attempts jumping higher several more times and ends up knocking the bar down each time.\"]}, \"v_FeKEqUxiReA\": {\"duration\": 236.64, \"timestamps\": [[0, 86.37], [87.55, 236.64]], \"sentences\": [\"A woman is laughing as she jumps rope inside a gym.\", \" She continues jumping for a long period of time, speeding up and changing positions as men with cameras record her.\"]}, \"v_BB2vrBWgXkU\": {\"duration\": 196.72, \"timestamps\": [[26.56, 52.13], [52.13, 75.74], [75.74, 99.34], [99.34, 121.97], [121.97, 147.54], [147.54, 176.06], [176.06, 196.72]], \"sentences\": [\"A woman wearing a leopard print shirt and a denim jacket is doing a tutorial on fake nails and how to use them.\", \" She is holding a packet of the fake nails in her hand as she explains the process.\", \" Then she demonstrates how to place the fake nails on top of her nails.\", \" Then she takes a nail file and files the ends of the nails to smooth it.\", \" She then uses some glue to glue the nails over her nails.\", \" Then she clips off the excess to shorten the nails, followed by filing the nails.\", \" She also uses some lime green nail polish and paints the nails to finish off the process and make them shiny.\"]}, \"v_S6t9Lq1xKJk\": {\"duration\": 30.6, \"timestamps\": [[0, 3.37], [4.28, 9.49], [10.25, 30.6]], \"sentences\": [\"A cook is standing in front of a large stove.\", \" It is covered in ingredients and pans on burners.\", \" The man creates a giant omelette, finally flipping it onto a plate and handing it to a patron.\"]}, \"v_0_xap_BBDrw\": {\"duration\": 48.02, \"timestamps\": [[0.72, 48.02], [27.61, 48.02]], \"sentences\": [\"An old man with gray hair, wearing red shirt and black pants is dribbling the ball in an indoor court, he dribbled the ball side by side, between his legs.\", \" He shoot the ball into the ring, then start dribbling again to side to side and between his legs, and shoot the ball into the ring.\"]}, \"v_QdmUojrWdmE\": {\"duration\": 228.65, \"timestamps\": [[0, 212.64], [13.72, 22.86], [21.72, 24.01], [52.59, 56.02], [117.75, 126.9], [129.19, 185.2], [129.19, 201.21], [129.19, 197.78], [204.64, 214.93], [214.93, 228.65]], \"sentences\": [\"Music plays as surfers ride the waves.\", \" A few men are shown preparing to surf, prepping their board and getting dressed.\", \" A helicopter rides over the shoreline where the surfers are riding.\", \" A couple laughs together on the beach in a tent awaiting more surfing.\", \" A man is then shown prepping his board with surf wax.\", \" The crowd watches others riding waves.\", \" The crowd cheers multiples surfing runs on.\", \" Kelly Slater is featured on a successful run, followed by more clips riding the waves.\", \" Kelly Slater is paused mid wave to wrap up the story line.\", \" Music and producer credits are then shown.\"]}, \"v_L2oaUDyzWPA\": {\"duration\": 92.09, \"timestamps\": [[0, 9.21], [10.13, 22.56], [23.02, 42.36], [42.36, 63.54], [63.54, 87.03], [87.03, 92.09]], \"sentences\": [\"We see a golden title on a black screen.\", \" A man is playing a harmonica as arrows point to numbers above him.\", \" We see another title screen and more arrows on numbers.\", \" The title screen returns and the man plays with the arrows above him again.\", \" The fourth title screen and the man plays with arrows above.\", \" The name shows up and the video ends.\"]}, \"v_bdC2YPVHGZM\": {\"duration\": 141.04, \"timestamps\": [[0, 4.23], [5.64, 110.72], [102.25, 107.19], [112.83, 131.17], [131.87, 141.04]], \"sentences\": [\"A man puts on a helmet with a camera mounted on it.\", \" The man participates in a lacrosse match with the camera recording in first person perspective.\", \" The man makes a successful shot on goal and high fives a teammate.\", \" The two teams shake hands after the game.\", \" The man walks towards a group of people dressed in black.\"]}, \"v_fny1HWXezlE\": {\"duration\": 144.8, \"timestamps\": [[0, 44.89], [30.41, 77.47], [60.82, 142.63]], \"sentences\": [\"A small child is seen climbing on a camel as well as a woman in front of him.\", \" A man stands the camel up on it's legs and walks around the area.\", \" The man continues to walk around with the camels while the camera pans to their movements.\"]}, \"v_pYb8jzB5vs0\": {\"duration\": 194.65, \"timestamps\": [[0, 21.41], [22.39, 194.65]], \"sentences\": [\"An intro leads into a man in women sitting beside a pool and talking.\", \" The people are then shown underwater wearing scuba gear and teaching one another hand signals while the man speaks to the camera above the surface.\"]}, \"v_kNkYgYnJTXk\": {\"duration\": 202.53, \"timestamps\": [[1.01, 46.58], [50.63, 141.77], [109.36, 202.53]], \"sentences\": [\"A person is seen in various shots riding around in a canoe and smiling off into the distance.\", \" Another person is seen sitting in a canoe and demonstrates how to properly turn around.\", \" The man continues moving along the water moving his paddle around while the camera captures his movements.\"]}, \"v_cMeKc9mp9wI\": {\"duration\": 54.2, \"timestamps\": [[1.08, 30.62], [17.07, 21.41], [23.3, 54.2]], \"sentences\": [\"A group of men are riding around on horses while carry large sticks and holding them into the air.\", \" One man comes close to the camera man and near the crowd for a few moments.\", \" The man on horses go back to the stable to await their return, and eventually go back out into the ring.\"]}, \"v_qbGml8XLhz8\": {\"duration\": 166.09, \"timestamps\": [[3.32, 166.09], [15.78, 88.03], [86.37, 164.43]], \"sentences\": [\"A man steps to the side on a lawn and begins moving his arms and legs around.\", \" He slowly moves his arms in various motions while stepping from side to side.\", \" He moves his legs up and his arms continuously following until he finishes the performance.\"]}, \"v_90LkAH4tZC4\": {\"duration\": 161.45, \"timestamps\": [[0, 161.45], [7.27, 51.66], [37.94, 161.45]], \"sentences\": [\"The person in black shirt is playing drums.\", \" The camera zoomed in to the drums as the person continue to play.\", \" The camera shifted to the view looking down the drums.\"]}, \"v_F9HKxxoNNSQ\": {\"duration\": 44.72, \"timestamps\": [[0, 14.31], [14.31, 19.68], [19.9, 35.33], [35.55, 44.5]], \"sentences\": [\"A person throw a disc with a stick, the disc arrives to a triangle on the floor where two people stand.\", \" Then, another disk slides on the floor to stop inside the triangle.\", \" After, the person throw another disc that stops inside the triangle.\", \"The rules oh the shuffleboard game is displayed in a board.\"]}, \"v_L0jbYqV9Zaw\": {\"duration\": 187.69, \"timestamps\": [[11.26, 27.21], [26.28, 30.03], [34.72, 159.53], [129.5, 152.03], [160.47, 182.99]], \"sentences\": [\"Paintballs are flying at men in front of a tent.\", \"  The men back into the tent.\", \"  People are getting ready for the paintball competition.\", \"  Paintballs come out of a man's mouth.\", \"  The sun is setting.\"]}, \"v_thgW2RT30qQ\": {\"duration\": 203.62, \"timestamps\": [[3.05, 120.13], [62.1, 200.56]], \"sentences\": [\"An intro leads into several clips of a person lifting heavy weights over their shoulders as well as their arms all around.\", \" More shots are show of athletes performing impressive stunts while looking off into the distance and people measuring their throws.\"]}, \"v_NSdBL6HqlWk\": {\"duration\": 190.61, \"timestamps\": [[0, 13.34], [15.25, 29.55], [37.17, 148.68], [154.4, 190.61]], \"sentences\": [\"A man is playing cymbals under a bright light on a stage.\", \" He is joined by a woman on a bass drum.\", \" Then they are joined by other drummers, and a man on a huge set in the background.\", \" Lights flash as they perform in unison.\"]}, \"v_AdFg_21LRg4\": {\"duration\": 207.12, \"timestamps\": [[0, 139.81], [130.49, 207.12]], \"sentences\": [\"A montage of bullfighting is being shown.\", \" The matador is being hit by the bull, while other matadors try to distract the bull.\"]}, \"v_h4m7bYDVLAc\": {\"duration\": 24.92, \"timestamps\": [[0, 21.55], [0.37, 23.05], [20.18, 24.17]], \"sentences\": [\"A woman blindfolded in a yard and swinging away at a pinata being moved around.\", \" Several people around her are watches and can't help but laugh.\", \" The woman is laughing as well and finally hits the pinata for the children to grab.\"]}, \"v_by4dS4tgkY0\": {\"duration\": 189.4, \"timestamps\": [[0, 26.52], [38.83, 117.43], [125, 189.4]], \"sentences\": [\"A man is talking to the camera from a parking lot.\", \" He runs down the street while continuing to talk.\", \"  He runs onto several city streets, not stopping.\"]}, \"v_shLUZZS9oYc\": {\"duration\": 52.41, \"timestamps\": [[0, 14.41], [14.94, 40.88], [41.93, 52.41]], \"sentences\": [\"A man is standing outside by the sidewalk cutting down a set of hedges.\", \"As he finishes the side,he moves to the front of the plant and continues cutting the plant down.\", \"Once a small portion is shown,he looks at the plant and then cuts off the item in his hand.\"]}, \"v_QLJAQBUisuQ\": {\"duration\": 146.91, \"timestamps\": [[12.49, 23.51], [12.49, 146.91], [77.86, 107.25], [119.73, 131.49]], \"sentences\": [\"A man is talking to the camera.\", \" An Olympic field is shown with many people walking around on it.\", \" The  man runs down a strip of track and jumps into a pile of sand.\", \" He has a flag wrapped around him and waves at the audience.\"]}, \"v_dbR5AzEZOPE\": {\"duration\": 191.84, \"timestamps\": [[0, 10.55], [10.55, 41.25], [41.25, 141.01], [141.01, 191.84]], \"sentences\": [\"three man are standing in a gym talking to each other.\", \" men opens the wooden door and enters in the gym and are watching the first men, and they panicked.\", \" men start running in the court trying to grab a pink ball and start playing dodgeball.\", \" man is talking to the camera in font of a bricked wall.\"]}, \"v_KE2tDW9x9d8\": {\"duration\": 203.06, \"timestamps\": [[0, 48.73], [46.7, 165.49], [162.45, 203.06]], \"sentences\": [\"A girl is seen talking to the camera with her hand on her hip and leads into her holding up various ingredients.\", \" She then mixes the ingredients together on a slice of bread and creates a sandwich while pouring chips out onto the side.\", \" She then presents the plate while speaking to the camera and holding up various liquids.\"]}, \"v_qxlVkDpdyOA\": {\"duration\": 118.75, \"timestamps\": [[0, 118.75], [4.75, 46.31], [80.15, 86.09], [96.19, 112.22]], \"sentences\": [\"We see two men walking and jumping on jump-stilts.\", \" One man jumps down the road, the the other as a man photographs them.\", \" A man on a bike rides past the men.\", \" Four bikes ride past the men.\"]}, \"v_B3ZVUyLeT84\": {\"duration\": 59.49, \"timestamps\": [[5.35, 12.49], [12.49, 20.23], [20.52, 52.35], [53.54, 55.03]], \"sentences\": [\"A boy surfs in a big wave.\", \" A group of people lye down on surfboards in a wave.\", \" Suddenly, a boy stands an surf below the wave.\", \" Men stand in the beach holding surfboards.\"]}, \"v_QQNW2ha8WIs\": {\"duration\": 47.07, \"timestamps\": [[0, 10.35], [8.94, 20.94], [26.59, 36.95], [39.77, 42.6]], \"sentences\": [\"A boy jumps on a trampoline while catching a stuffed doll on his shoulders in the air.\", \" The boy falls back and lands on his back on the trampoline.\", \" The boy jumps and catches the doll and slams it between his legs on the trampoline.\", \" The boy misses trying to catch the doll and falls on the trampoline.\"]}, \"v_p1JSdZmztGk\": {\"duration\": 224.14, \"timestamps\": [[5.6, 79.57], [59.4, 184.92], [163.62, 219.66]], \"sentences\": [\"Two people are seen speaking to one another while standing on the docks as well as speak to the camera.\", \" The people enjoy themselves around the are by getting their hair cut, eating food, and the man preparing a boat.\", \" Several shots are shown of a kitchen as well as people riding on the boat and still continue to speak to the camera.\"]}, \"v_x3z3dVUxmJ0\": {\"duration\": 131.05, \"timestamps\": [[0.66, 3.93], [6.55, 119.26], [34.07, 36.04], [39.97, 47.18], [80.6, 84.53], [103.53, 119.26], [119.91, 123.19], [125.16, 130.4]], \"sentences\": [\"The name of the business is shown.\", \" A person is braiding a client's hair.\", \" A person is running scissor through a braid.\", \" A person is applying rods to braids.\", \" A person is putting braids with rods into water.\", \" A client with reading glasses is talking.\", \" A client is leaving after braids are done.\", \" The credits of the video are shown.\"]}, \"v_HhbTyPnFVIg\": {\"duration\": 83.76, \"timestamps\": [[4.19, 16.33], [17.59, 27.64], [30.15, 53.6], [56.12, 72.45]], \"sentences\": [\"A woman stand with athletic jacket in a grass covered and forested yard.\", \" The woman enters an open workshop area.\", \" Logs are stacked upright on a chopping block.\", \" The woman uses an an ax to split the logs in half.\"]}, \"v_qCnHgcP3tM8\": {\"duration\": 138.35, \"timestamps\": [[0, 11.76], [11.07, 24.21], [24.21, 80.93], [80.93, 138.35]], \"sentences\": [\"Cars are driving down the highway fairly quickly.\", \" They stop, a man gets out and helps two women get out.\", \" They go into a bar and throw a ball into a girls drink starting a beer pong war.\", \" He wakes up in his dorm and then click on his ipad to start a beer pong championship.\"]}, \"v_EwMAJPldfKs\": {\"duration\": 31.86, \"timestamps\": [[0, 10.67], [10.19, 21.19], [21.19, 31.86]], \"sentences\": [\"A young lady with a grey jacket on is standing in front of a sink lathering her hands.\", \"She then turns the water on and begins to rinse her hands and flex her fingers to make sure all of the soap is off.\", \"After that is done,she grabs a white towel,dries her hands and wipes her mouth.\"]}, \"v_ikZwamRM5mo\": {\"duration\": 193.11, \"timestamps\": [[0, 193.11], [8.69, 193.11], [27.04, 193.11], [118.76, 193.11]], \"sentences\": [\"Several percussionists stand on a field.\", \" They march in place on the field.\", \" They are drumming in sync.\", \" A woman walks by with a video camera.\"]}, \"v_QeVVKZhoFCg\": {\"duration\": 206.71, \"timestamps\": [[0, 42.37], [42.37, 98.18], [98.18, 162.26], [173.63, 206.71]], \"sentences\": [\"A girl with several facial piercings his seen rubbing lotion all over her face and powdering her cheeks and face.\", \" She then puts eyeliner on followed by mascara and lip liner.\", \" She colors in her eyebrows and puts on fake eye lashes, then rubbing some of the black off and more mascara on.\", \" She puts a bit of blush in her cheeks and then smiles and waves to the camera.\"]}, \"v_Lo0EQXmaeXM\": {\"duration\": 78.9, \"timestamps\": [[0, 60.75], [46.16, 74.17]], \"sentences\": [\"The man looks at the camera and then goes back to looking somewhere else and talking.\", \" then the cups they're both holding that has a blue liquid in it is then put into their mouths and they both gargle until they have lots of bubbles formed in their mouths.\"]}, \"v_TBeZXLchito\": {\"duration\": 180.44, \"timestamps\": [[0, 101.05], [101.95, 103.75], [103.75, 138.04], [129.02, 135.33], [138.04, 154.28], [154.28, 167.81]], \"sentences\": [\"People skateboard in a competition on the road while bending and holding his arms back.\", \" Then, a skateboarder opens his arms and signal others to advance.\", \" Then, the skateboarders pass on front spectators watching on side the road.\", \" People take picture to the skateboarders.\", \" A skateboarder fells on the road.\", \" People continues skateboarding in the road.\"]}, \"v_SHS8pNOsZDU\": {\"duration\": 26.36, \"timestamps\": [[0, 25.83], [6.59, 23.19], [20.95, 25.83]], \"sentences\": [\"A group rides horses playing a game of polo on a field.\", \" The group fight over the ball and ride in a tight formation.\", \" A member on the team breaks away and rides toward the goal on his horse.\"]}, \"v_yo3s6V19YtQ\": {\"duration\": 185.04, \"timestamps\": [[0, 24.06], [25.91, 123.98], [128.6, 185.04]], \"sentences\": [\"A young man is rappelling up the side of a cliff.\", \" Another man watches and helps from below.\", \" The man continues climbing until he reaches the top.\"]}, \"v_tgdLeBX7aXk\": {\"duration\": 64.69, \"timestamps\": [[0, 18.76], [21.67, 29.43], [30.73, 64.69]], \"sentences\": [\"People are playing cricket together outside.\", \" A group of people hold up a trophy.\", \" People are walking around outside playing cricket.\"]}, \"v_wBhtt9x74TA\": {\"duration\": 25.12, \"timestamps\": [[0, 25.12], [1, 25.12], [12.56, 16.46]], \"sentences\": [\"A woman is standing by a toilet in a bikini.\", \" A man is rubbing sunscreen onto her legs.\", \" She begins to rub her leg.\"]}, \"v_f-aGlEjgZoE\": {\"duration\": 235.73, \"timestamps\": [[0, 43.61], [49.5, 150.87], [153.22, 229.84]], \"sentences\": [\"A woman is seen speaking to the camera while holding up various objects.\", \" The puts tape on he eye and begins putting eyeliner above her eye.\", \" She continues putting the makeup on while speaking to the camera and takes off the tape in the end.\"]}, \"v_HfowLX1u38Y\": {\"duration\": 62.25, \"timestamps\": [[0, 59.14], [15.87, 62.25], [0, 62.25]], \"sentences\": [\"man wearing a purple shirt is holding a gas pipe.\", \" the man is using the pipe to light up the woodfire.\", \" man is standing outside a house lighting up a woodfire.\"]}, \"v_UhB739uudDo\": {\"duration\": 81.55, \"timestamps\": [[0, 13.86], [13.46, 59.12], [56.27, 80.33]], \"sentences\": [\"A man is seen standing in a field with a dog while holding onto toys.\", \" The man then begins throwing the toys while the dog chases after them.\", \" The men continues to do tricks with the dog and end with a picture.\"]}, \"v_WBkqGBFsdgI\": {\"duration\": 121.23, \"timestamps\": [[0, 23.03], [24.85, 43.64], [45.46, 49.7], [52.13, 107.9], [107.9, 121.23]], \"sentences\": [\"An older blonde newswoman is reading a story.\", \" Various pictures are shown of shuffleboard history.\", \" An older man is interviewed for the camera.\", \" Various clips of people playing shuffleboard are shown.\", \" The older blonde reporter ends the news story.\"]}, \"v_JH31FxBZ5Xw\": {\"duration\": 138.3, \"timestamps\": [[0, 138.3], [15.21, 125.16], [26.28, 125.16], [51.86, 125.16]], \"sentences\": [\"Several shots of wrestlers are shown.\", \" They all are doing flips off the corner.\", \" The land on their opponent.\", \" They knock them down to the floor.\"]}, \"v_TgDzZIop_uw\": {\"duration\": 50.29, \"timestamps\": [[5.78, 41.74], [5.78, 8.3], [8.55, 16.34], [16.09, 41.99]], \"sentences\": [\"An unseen person demonstrates how to remove and install a tire valve on a tire using a special tool.\", \"  A pair of hands is seen yielding a metal tool over a yellow walled tire lying on a flat surface.\", \"  The hand uses the metal curved tool to pluck the old tire valve out of its hole.\", \"  The hand then uses a metal, black, tool to insert a new valve into the tire.\"]}, \"v_djgM0IWIBKc\": {\"duration\": 235.99, \"timestamps\": [[0, 47.2], [47.2, 103.83], [103.83, 165.19], [165.19, 228.91]], \"sentences\": [\"A group of men are in a kayak going down the river bank.\", \" The are paddling and looking at the trees in the distance enjoying their day.\", \" One of the men gets out of the boat to go swimming in the water, They all get in and start splashing water, swimming under and enjoying the day before getting back in to turn back.\", \" Once they start to head back to land and to get ready to get on the dock.\"]}, \"v_PwMDJapSo70\": {\"duration\": 85.5, \"timestamps\": [[0, 50.44], [49.59, 85.5]], \"sentences\": [\"A person's hands are seen moving around a cat and trimming it's claws while the cat lays still and looks around.\", \" The person then files the nails of the cat and zooms in on the cat's belly in the end.\"]}, \"v_MKmrqcoCZ-M\": {\"duration\": 70.28999999999999, \"timestamps\": [[4.92, 23.19], [23.55, 57.64], [57.64, 70.29]], \"sentences\": [\"A man is sitting on a black mat in a gym.\", \" He lays back and does crunches on the mat.\", \" He sits up and continues talking.\"]}, \"v_kH8YpzoflKg\": {\"duration\": 115.17, \"timestamps\": [[0, 73.13], [58.16, 115.17]], \"sentences\": [\"A camera pans around a shirtless man sitting in the snow followed by the man snowboarding and men riding up a hill.\", \" Several shots are shown of people riding down the snowy hill and doing tricks in front of the camera.\"]}, \"v_GffGGAwbcHo\": {\"duration\": 54.88, \"timestamps\": [[7.96, 12.35], [12.62, 14.27], [15.64, 22.5], [22.78, 27.72], [28.81, 33.2], [33.75, 42.81], [44.18, 49.39]], \"sentences\": [\"A caveman is seen walking a purple rock.\", \" He runs into a big dog and the dog eats the caveman.\", \" A God walks a poodle.\", \" A cowboy walks his dog and is shot outside a saloon.\", \" Chaplin is seen walking his dog.\", \" A hippie dog lies down on the floor and seems to be hallucinating.\", \" Dogs and spacecraft are seen exploring space.\"]}, \"v_E3h0UHRsSQk\": {\"duration\": 112.85, \"timestamps\": [[0, 89.71], [21.44, 27.65], [37.24, 46.27], [46.27, 58.68], [58.68, 100.44], [100.44, 112.85]], \"sentences\": [\"A man wearing a black clothes is sharpening the knife on a stone.\", \" The man beside him on blue long sleeves drawing something on the table with his finger.\", \" The man turn the knife to sharpen the other side and then wipe it with paper towel.\", \" The man in navy blue shirt point to the knife while the man sharpening the knife tries to sharpen it one hand.\", \" He continues sharpening the knife, turn it again to further sharpen the other side and wipe it again with paper towel.\", \" Throws the old and dirty paper towel and reach the roll of paper towel and clean the knife.\"]}, \"v_-ibmoYKRxQk\": {\"duration\": 121.91, \"timestamps\": [[0, 45.1], [45.71, 90.82], [100.57, 121.91]], \"sentences\": [\"A camera pans around a snowy area and transitions into several people in tubes down a hill.\", \" The people laugh while riding down the hill when one person falls off and the camera pans around the people.\", \" The camera shows one more shot of the people all riding down the long hill together.\"]}, \"v_x2FfKHiN_3s\": {\"duration\": 112.52000000000001, \"timestamps\": [[0, 10.13], [13.5, 76.52], [79.33, 112.52]], \"sentences\": [\"A man is sitting on a frozen lake, fishing through a hole and surrounded by fishing gear.\", \" He walks away from his stuff, and a fish pulls his pole into the water, disappearing with it.\", \" He stands angrily with his hands on his hips, then gets another pole to try to get it back.\"]}, \"v_hUzsmIWojH0\": {\"duration\": 117.41, \"timestamps\": [[0, 73.38], [79.25, 117.41]], \"sentences\": [\"A man runs up to a beam and jumps over it several times.\", \" He makes at least six attempts.\"]}, \"v_LNlGgtg70uQ\": {\"duration\": 78.87, \"timestamps\": [[0, 78.87], [0, 46.14], [45.74, 64.28]], \"sentences\": [\"This woman is showing her viewers how to make a Chambord Royale.\", \" First she fills her shaker up halfway with ice and then she adds vodka and Chambord and she puts one ounce of both of them and then she adds a little bit of pineapple juice and cranberry juice.\", \" Next she shakes everything up and strains the drink into the cocktail cup.\"]}, \"v_59mz2Nd8GM0\": {\"duration\": 222.91, \"timestamps\": [[0, 30.09], [76.9, 159.38], [76.9, 222.91]], \"sentences\": [\"This perosn is shown making a sandwich that includes lunch meat, swiss cheese, and mayonnaise.\", \" He then mixes an egg and milk together and puts the sandwich into the mix.\", \" He puts the sandwich into a skillet that's on the stove for a little bit, and then he puts the sandwich on a white square shaped plate, which I'm guessing he ate.\"]}, \"v_DU2hdNIS2WI\": {\"duration\": 23.99, \"timestamps\": [[0, 23.99], [0, 8.76], [8.16, 17.99], [18.11, 22.91], [22.31, 23.99]], \"sentences\": [\"A very large, muscular man is shown in a gym with a weight bar as piano music plays in the background.\", \" The video begins with the weight on the floor and the man getting ready to lift it.\", \" He lifts the weight and first brings it parallel to his shoulders.\", \" He then lifts it completely over his head with his arms extended.\", \" After leaving his arms up for several seconds, he allows the weight to fall on the ground.\"]}, \"v_MSjSXzk2k50\": {\"duration\": 140.62, \"timestamps\": [[0, 45.7], [41.48, 140.62]], \"sentences\": [\"An intro leads into a woman pulling out a bucket and piecing together a mop.\", \" The camera pans around the bucket and the woman continues using the mop inside the bucket and moving around the object.\"]}, \"v_HHDMFrN7vFs\": {\"duration\": 4.44, \"timestamps\": [[0, 0.11], [0.09, 4.44], [0.18, 4.44]], \"sentences\": [\"A man in a red shirt is sitting at an exercise bike.\", \" He is moving his legs on the pedals.\", \" There are other bikes next to him.\"]}, \"v_DCYz8p4zH6o\": {\"duration\": 34.48, \"timestamps\": [[0.34, 8.28], [7.93, 24.83], [23.62, 32.93]], \"sentences\": [\"A man is seen kneeling on the floor swinging his arms back and fourth.\", \" Text moves across his face as he swings his arms.\", \" The man continues to swing his arms and ends with credits rolling.\"]}, \"v_MiTIi_QYt2k\": {\"duration\": 113.45, \"timestamps\": [[0, 43.68], [38.01, 86.79], [81.69, 110.62]], \"sentences\": [\"A close up of a wooden bench is seen followed by a person mixing ingredients together.\", \" A person is then seen holding a rag and wiping down the bench.\", \" More ingredients are mixed afterwards that leads into more wiping down with the rag.\"]}, \"v_56m7PcBuUFc\": {\"duration\": 36.27, \"timestamps\": [[0, 14.33], [18.68, 36.27]], \"sentences\": [\"A girl is pushing two little boys on a backyard swing.\", \" She smiles at the camera as she pushes the boys back and forth.\"]}, \"v_u35hesPTsNE\": {\"duration\": 131.82, \"timestamps\": [[0.66, 72.5], [54.05, 130.5]], \"sentences\": [\"A band is seen sitting on the stage with one man playing the drums and a woman interviewing him.\", \" The man continues playing as the women speaks to the crowd and sings while they play.\"]}, \"v_eAOBdYKju70\": {\"duration\": 170.92000000000002, \"timestamps\": [[0, 99.99], [35.89, 52.99], [65.81, 119.65], [117.94, 135.88], [135.03, 158.96]], \"sentences\": [\"Various shots are shown of horse saddles and various people riding these saddles on horses.\", \" A girl wraps the rope around her saddle while others practice on placed saddles.\", \" People ride around the saddles and show various caddie and how to ride them.\", \" A tourist is being interviewed on riding experience but she watched other riding and felt confident.\", \" A man speakers on his experience and various shots of the horses and wildlife are shown.\"]}, \"v_szW1c2SGdew\": {\"duration\": 136.37, \"timestamps\": [[0, 8.86], [8.86, 116.6], [39.55, 45.68], [112.51, 116.6], [117.28, 122.05], [122.05, 136.37]], \"sentences\": [\"A man swings his leg in the air creating letters and we see an opening screen.\", \" two men are in two different rooms performing Capoeira moves.\", \" A man does a handstand move.\", \" The man does a handstand and pauses.\", \" We see the website on a black screen.\", \" We see four screens with images of men doing Capoeira.\"]}, \"v_5kIl4TspdR0\": {\"duration\": 141.74, \"timestamps\": [[0, 31.89], [31.89, 66.62], [66.62, 101.34], [101.34, 141.74]], \"sentences\": [\"Someone is brushing their teeth with an electric toothbrush.\", \" They wear braces  so they make sure to scrub all around very well.\", \" You can see the tongue moving around never really being comfortable inside of the mouth.\", \" The man continues to brush, toothpaste spewing down his lips a bit .\"]}, \"v_eMB9L-LDK1E\": {\"duration\": 129.68, \"timestamps\": [[0, 52.52], [52.52, 83], [85.59, 129.68]], \"sentences\": [\"A person sprays a sink and wipes it with a towel.\", \" They spray a bath tub and wipe it with a towel.\", \" They spray a toilet and wipe it with a toilet.\"]}, \"v_UUjXw1xjprU\": {\"duration\": 191.1, \"timestamps\": [[27.71, 52.55], [52.55, 86], [86, 111.79], [111.79, 127.08], [127.08, 143.33], [143.33, 151.93], [151.93, 162.44], [162.44, 175.81], [175.81, 181.55]], \"sentences\": [\"There are several people gathered in a skating park with skateboards.\", \" There a young man wearing a red hat talking about a skateboarding event at Red Bull skate Arcade.\", \" Several spectators are gathered in the arcade along with a panel of judges.\", \" Some of the participants are beating the heat by splashing water on themselves.\", \" The participants begin their stunts on the skateboards as they go over ramps and steep slopes.\", \" Several participants are showing off their stunts as spectators cheer and clap for them.\", \" They show off their scary yet impressive stunts as the climb up walls and steep ramps without falling.\", \" The crowds cheer for them and applaud them.\", \" The winners are awarded certificates and prizes for winning.\"]}, \"v_QooDDNWaQjU\": {\"duration\": 62.44, \"timestamps\": [[0, 62.44], [5, 60.88]], \"sentences\": [\"A person throws a Frisbee for her dog for a dog to retrieve during an event on a sporting field.\", \" The dog catches the Frisbee and brings it back to the trainer.\"]}, \"v_mvQxhjjVWOk\": {\"duration\": 176.5, \"timestamps\": [[13.24, 48.54], [48.54, 73.25], [73.25, 112.96], [112.96, 135.9], [135.9, 170.32], [170.32, 176.5]], \"sentences\": [\"There is a woman representing Jamaica participating on a long jump event.\", \" There is another woman doing long jump from another country.\", \" Several other contestant are participating in the same long jump competition.\", \" There are spectators watching them as they compete against each other.\", \" The contestant from Istanbul makes very long jump in the sand pit.\", \" The contestants continue competing in the sporting event.\"]}, \"v_sRYDJ379UYc\": {\"duration\": 69.75, \"timestamps\": [[0.35, 17.44], [14.65, 40.11], [41.85, 66.96]], \"sentences\": [\"A man is seen sitting on a piece of exercise equipment with a trainer standing in front of him.\", \" The man then moves back and fourth on the machine while the other man helps.\", \" He is shown again in another clips moving and the trainer helping.\"]}, \"v_k42CKebiSLA\": {\"duration\": 72.84, \"timestamps\": [[2.19, 12.02], [13.48, 72.84]], \"sentences\": [\"A man travels to Japan to study how to be a sumo wrestler.\", \"  The man gets training and learns the techniques of sumo.\"]}, \"v_WMoofjkumOs\": {\"duration\": 153.44, \"timestamps\": [[0.77, 9.21], [7.67, 153.44]], \"sentences\": [\"In the beginning the man is shown tricking the bull.\", \" Many other men have been shown tricking bulls in front of large crowds.\"]}, \"v_TF591ByrGYk\": {\"duration\": 51.64, \"timestamps\": [[0, 14.72], [14.72, 36.92], [36.67, 51.64]], \"sentences\": [\"A young male gymnast is is an arena standing on a mat preparing to do his routine.\", \"The boy then approached the bars and does a series of swings and hand stand in the air.\", \"While he's performing,he adds several flips and rolls into his performance before finally jumping off of the bars.\"]}, \"v_95pMelnv2dQ\": {\"duration\": 13.91, \"timestamps\": [[0, 13.91], [0.42, 4.94], [5.08, 6.95], [10.43, 11.47]], \"sentences\": [\"Men play badminton in the sand.\", \" A man on the left serves the birdie both men on the right miss it.\", \" the man on the right serves and the man on the left hits it back but it hits the net.\", \" A man stands on the left watching.\"]}, \"v_y_HCdBEJbNE\": {\"duration\": 121.6, \"timestamps\": [[0, 2.43], [2.43, 32.83], [27.36, 29.79], [29.79, 72.96], [64.45, 67.49], [115.52, 121.6]], \"sentences\": [\"A man puts plaster on a base.\", \" The man walks over and rubs it on the ceiling.\", \" We see the stilts the man is walking on.\", \" The camera becomes wobbly and blurry.\", \" The man bends down to grab more plaster.\", \" The man smiles and the video ends.\"]}, \"v_RWjCwIOuzrc\": {\"duration\": 207.42000000000002, \"timestamps\": [[0, 13.48], [13.48, 49.78], [53.93, 97.49], [101.64, 149.35], [145.2, 188.76], [191.87, 204.31]], \"sentences\": [\"There is a man nodding in the first frame.\", \" The video movies to the man putting up the wall paper by first measuring it out, lining up the pattern and putting it up on the wall.\", \" He then unscrews a light switch and pulls it out just a little, making some slits in the fabric or paper, then putting the light switch back over the new wall paper.\", \" The camera shows wall paper in a finished room, going over different rooms with different wall papers.\", \" The man is later seen measuring and marking the wall, rolling out more wall paper and putting it up on the wall.\", \" Then it shows two tables that look like they have also been wall papered.\"]}, \"v_Fk0z6MeCV0I\": {\"duration\": 67.83, \"timestamps\": [[0, 14.92], [14.92, 36.29], [36.63, 67.83]], \"sentences\": [\"A class of kids are at outside at school dressed in uniforms with their teacher standing next to them.\", \"As they are in line,one girl is in the middle of a game of hop scotch,turns around,finishes and gets back in line.\", \"Once she is finishes,all of the other kids takes their turn one by one.\"]}, \"v__4licRHiRRs\": {\"duration\": 120.23, \"timestamps\": [[0, 31.86], [28.86, 87.17], [79.95, 116.02]], \"sentences\": [\"A text intro leads into a picture of a dog and the same dog running along the yard.\", \" The dog is seen in several clips chasing after a frisbee.\", \" A man throws the frisbee to the dog in the yard who continues chasing after him.\"]}, \"v_c2-6_i1yV5E\": {\"duration\": 170.92000000000002, \"timestamps\": [[0, 140.16], [49.57, 58.97], [84.61, 88.88], [160.67, 170.07]], \"sentences\": [\"Individuals run with a elongated stick and use it to elevated their bodies over a heighten hurdle.\", \" A guy touches the back of the individual as he lifts his body.\", \" The guy seems like he falls backs while trying to lift his body because the clip is reversed.\", \" The credits of the video are shown.\"]}, \"v_gDNgiybMA1s\": {\"duration\": 94.32, \"timestamps\": [[0, 39.14], [34.9, 94.32]], \"sentences\": [\"A camera pans up to a person standing in a kitchen and then dancing on the floor.\", \" The man continues to dance around while looking to the camera and singing.\"]}, \"v_O4P07fipvIA\": {\"duration\": 219.78, \"timestamps\": [[1.1, 130.77], [62.64, 201.1]], \"sentences\": [\"A large group of cheerleaders are seen running into an arena cheering and beginning performing a routine with one another.\", \" The girls continue cheering around the stage while lifting one another up and performing tricks and pans to the audience in the end.\"]}, \"v_hru57dsi0N0\": {\"duration\": 160.68, \"timestamps\": [[0, 33.74], [39.37, 108.46], [122.12, 160.68]], \"sentences\": [\"A woman is seated in a chair in a dining room.\", \" She shows off her bare feet and their shape.\", \" She then puts on and tries to lace her shoes around the swollen feet.\"]}, \"v_XHMrvd3sKzE\": {\"duration\": 88.38, \"timestamps\": [[0, 5.74], [5.74, 25.63], [25.63, 45.96], [45.96, 59.21], [59.21, 88.38]], \"sentences\": [\"Two kids are climbing a rock wall.\", \"  The adults are guiding the lines.\", \" The kids continue to climb.\", \" The one on the right will make it to the top first.\", \"  The one on the left did not make it to the top, both hop back down the wall.\"]}, \"v_mAWuiYWXmb8\": {\"duration\": 23.59, \"timestamps\": [[0, 1.65], [0.24, 23.59], [0.59, 23]], \"sentences\": [\"A woman and a man exercise sitting on a cardio machine.\", \" A woman works out sitting on a cardio machine.\", \" A man sits next a woman performing cardio workouts.\"]}, \"v_l8NepxsCh34\": {\"duration\": 48.67, \"timestamps\": [[0, 13.14], [13.14, 26.77], [26.77, 48.67]], \"sentences\": [\"A girl is playing hopscotch on a sidewalk.\", \" She gets to the end and turns around to go back.\", \" Another girl throws a puck onto the sidewalk and starts to play hopscotch.\"]}, \"v_UZ9D6DhrmDI\": {\"duration\": 33.02, \"timestamps\": [[0.66, 24.6], [24.76, 33.02]], \"sentences\": [\"A person solves a cube puzzle flipping the pieces around.\", \" The person solves the puzzle and show a chronometer.\"]}, \"v_s9Wop4PMZaw\": {\"duration\": 42.93, \"timestamps\": [[0.64, 21.47], [15.67, 41.86]], \"sentences\": [\"Two young children are seen riding on a camel past a group of people and a man leading them along.\", \" The man continues to lead the camel around with the children on top and ends with them climbing down and others walking up.\"]}, \"v_2N129Bw1jiQ\": {\"duration\": 17.97, \"timestamps\": [[0, 10.42], [10.06, 17.97]], \"sentences\": [\"Young children are seen jumping on a mat back and fourth while two older women watch them on the side.\", \" The boy then takes a big leap and the girl stands in front of him.\"]}, \"v_ffyPN2-EDg4\": {\"duration\": 108.16, \"timestamps\": [[0, 3.79], [3.79, 107.08], [107.62, 108.16]], \"sentences\": [\"A man walks up to a snow scoop.\", \" The man shovels the snow on a roof while the cameraman talks.\", \"  The man stops scooping the snow.\"]}, \"v_zgdT41KjjrE\": {\"duration\": 236.43, \"timestamps\": [[1.18, 2.36], [4.73, 9.46], [13, 15.37], [15.37, 21.28], [22.46, 29.55], [30.74, 236.43], [87.48, 236.43]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy stands next to horses with a clipboard.\", \" A guy walks under a horse fence.\", \" A person leads a horse.\", \" The guy gets on top of the horse.\", \" The guy pats the horse and goes horseback riding.\", \" People go horseback riding down a trail.\"]}, \"v_lQq_JPRFEMw\": {\"duration\": 171.84, \"timestamps\": [[0, 171.84], [39.52, 43.82], [95.37, 102.25], [153.8, 156.38]], \"sentences\": [\"People are playing a game of lacrosse on a field.\", \" The teams line up and shake hands.\", \" A woman in a blue coat is talking to the camera.\", \" A man in a tan suit is talking into a microphone.\"]}, \"v_sRgBK2_nb0I\": {\"duration\": 53.11, \"timestamps\": [[0, 7.97], [9.03, 11.42], [11.42, 18.59], [19.12, 44.08], [45.14, 47], [47, 52.04], [52.31, 53.11]], \"sentences\": [\"We see a man raise his arms and prepare to mount the pommel horse.\", \" The man mounts the pommel horse.\", \" The man does a handstand and throws his open legs over the pommel.\", \" The man spins around on the pommel horse.\", \" The man does a handstand and dismounts.\", \" The man raises his arms and walks away.\", \" The man shakes another man's hand.\"]}, \"v_jnnHUCs-t3o\": {\"duration\": 26.52, \"timestamps\": [[0, 5.17], [5.17, 21.74], [22.67, 26.52]], \"sentences\": [\"Several people are playing in a public swimming pool.\", \" They swim in the water, playing a game with a ball.\", \" They hit the ball back and forth, trying to keep it from each other.\"]}, \"v_ztD4lVJATws\": {\"duration\": 14.17, \"timestamps\": [[0.14, 4.32], [3.75, 10.48], [9.77, 13.53]], \"sentences\": [\"A woman is seen kneeling on the floor and pulling onto a piece of exercise equipment.\", \" The woman begins turning her body with the equipment while speaking to the camera.\", \" She continues pulling onto the lever while looking back to the camera.\"]}, \"v_Vcv9P-4Tty0\": {\"duration\": 45.54, \"timestamps\": [[0, 9.79], [9.33, 26.18], [26.41, 45.54]], \"sentences\": [\"A group of people are seen standing on a sandy field with one throwing a soccer ball to another.\", \" The other person scores a goal and other players jump on him and congratulate him.\", \" The same goal is shown several more times from different angles.\"]}, \"v_3NSikmqK3Ys\": {\"duration\": 67.59, \"timestamps\": [[0, 44.61], [44.61, 67.59], [13.86, 16.9]], \"sentences\": [\"man is standing in front of a motorbike and puts a toilet lid in the black leathe seat.\", \" the man is driving the motorbike thorugh the street and a dog is running next to him.\", \" the man opens the motorbike trunk and close it.\"]}, \"v_EU-IdUKbLSg\": {\"duration\": 79.3, \"timestamps\": [[0.79, 25.77], [21.01, 61.06], [53.53, 74.94]], \"sentences\": [\"A large group of people are seen swimming around a pool while a coach yells on the sides.\", \" Shots of people playing are shown when one hits the other.\", \" The coaches yell to one another while people still play the game.\"]}, \"v_ciXArKhjAv8\": {\"duration\": 7.55, \"timestamps\": [[0, 3.89], [0, 7.55], [3.58, 7.55]], \"sentences\": [\"A little boy is standing eating ice cream.\", \" There is a dog on the floor behind him.\", \" He laughs and turns around.\"]}, \"v_K-r_Tj7uFGw\": {\"duration\": 60.12, \"timestamps\": [[0, 22.24], [22.24, 60.12]], \"sentences\": [\"A girl is sitting on a large chair with two girls beside her and a man tattooing her foot.\", \" Another man steps into frame and the girls continue talking to each other while the artist.\"]}, \"v_TOfBNYOlv8c\": {\"duration\": 86.01, \"timestamps\": [[6.02, 77.41], [0, 5.16], [7.74, 76.98], [9.03, 82.57], [83, 86.01]], \"sentences\": [\"A woman behind a bar is showing how to make a mixed drink.\", \"  A series of shots appear with a person pouring alcohol into a martini glass and then the screen fades into the video title screen showing a website name, the name of the drink they are making and the person who will be making it.\", \"  A website address is shown at the bottom of the screen.\", \"  A girl standing behind the bar explains what ingredients she is using for the drink, the amounts she is using, and mixes them all together in a glass and presents the drink.\", \"   The camera zooms in on the drink and fades to black to end the video.\"]}, \"v_hlwSgE7Epwo\": {\"duration\": 117.17, \"timestamps\": [[0, 15.82], [15.82, 87.29], [87.88, 102.52], [103.11, 117.17]], \"sentences\": [\"A woman standing outside near a tennis court talking about things.\", \" A girl in all black with a baton practicing her moves and dances inside of the studio.\", \" Her coach does an interview while sitting down with her hands held together.\", \" The girl continues to practice by herself in the studio.\"]}, \"v_bNwrAuu0qiQ\": {\"duration\": 171.5, \"timestamps\": [[0, 44.59], [36.87, 171.5]], \"sentences\": [\"An intro leads into several pictures of a tennis player and leaders into video footage of the player playing matches.\", \" The tennis player is shown in several shots of games performing incredible stunts and clenching his fists to celebrate in the end.\"]}, \"v_VgQ6a7oVx7g\": {\"duration\": 62.67, \"timestamps\": [[0, 62.67], [4.7, 11.59], [14.1, 56.09], [56.4, 62.67], [62.04, 62.67]], \"sentences\": [\"People are performing gymnastic stunts in front of an audience.\", \" A guy locks his arms around bars above his head.\", \" The guy swings his body while holding on to the bars.\", \" The guy flips off the bars and lands on his feet, claps, and begins to leave.\", \" A man approaches the guy clapping.\"]}, \"v_21krmbuT21s\": {\"duration\": 58.06, \"timestamps\": [[0, 3.19], [3.77, 7.55], [8.71, 49.06], [50.22, 58.06]], \"sentences\": [\"Two gymasts are performing in front of a crowd.\", \" One is spinning constantly on a beam.\", \" The man in red mounts and begins to spin, performing several tricks.\", \" The man dismounts, and puts one victorious arm up into the air.\"]}, \"v_1JHqxhajh60\": {\"duration\": 99.85, \"timestamps\": [[0, 99.85], [0.5, 99.35]], \"sentences\": [\"A hand is holding a shower head close to a dog.\", \" The dog moves around the bathtub as he tries to bite the water being splashed on him.\"]}, \"v_EmlmKZ6Gi3Y\": {\"duration\": 205.24, \"timestamps\": [[11.29, 20.52], [20.52, 48.23], [48.23, 82.1], [82.1, 126.22], [126.22, 154.96], [154.96, 183.69], [183.69, 188.82]], \"sentences\": [\"There's a large team of participants getting ready to do engage in a water tubing activity.\", \" They walk down a hilly terrain to the river.\", \" They get onto their tubes and begin going down the rapids.\", \" The participants seem very calm and happy as they wave to the camera.\", \" They all begin their journey down the rapids as the water starts getting more turbulent.\", \" They continue going along the with water current as they flow steadily through the water.\", \" Then they all arrive at banks of the river where the water is calm and steady flowing.\"]}, \"v_hQXWnoipdFE\": {\"duration\": 153.82999999999998, \"timestamps\": [[20, 50.76], [50.76, 87.68], [87.68, 111.53], [111.53, 136.91], [136.91, 146.91]], \"sentences\": [\"The video is represented by North Face and Cliff Bar where they show mountain climbers at Yosemite National Park.\", \" There are several people talking about the fascination of mountain climbing.\", \" There are pictures of people wearing bandanas shown sitting on the mountain tops.\", \" There's a man who is mountain climbing on a steep slope.\", \" Another man takes a leap from the top of mountain in an attempt to bungee jump from that height.\"]}, \"v_pHZogKGkc9o\": {\"duration\": 41.63, \"timestamps\": [[0, 5.83], [7.08, 34.14], [35.39, 41.63]], \"sentences\": [\"A group of young boys are inside a basketball court.\", \" They play a game while the coach cheers them on and instructs them.\", \" Some of the boys watch from the sidelines, waiting for their turn.\"]}, \"v_9V7cMp_w1_0\": {\"duration\": 176.61, \"timestamps\": [[0, 37.97], [37.97, 58.28], [58.28, 75.94], [75.06, 94.49], [95.37, 120.98], [120.98, 136.87], [135.99, 147.47], [147.47, 150.12], [151.89, 166.9], [166.9, 176.61]], \"sentences\": [\"Winter scenes with vehicles and heavy snow are shown.\", \" Scenes from the interior of an airport are shown, with people walking around or waiting.\", \" A woman talks to the camera.\", \" A man cleans snow off a car.\", \" More scenes from a winter storm are shown.\", \" Scenes of people cleaning snow off their vehicles are shown.\", \" A different woman talks to the camera.\", \" A car drives away from the camera.\", \" Two people talk to the camera.\", \" A truck drives away from the camera.\"]}, \"v_NOxiMgQMeuk\": {\"duration\": 130.8, \"timestamps\": [[0, 24.85], [35.32, 88.29], [100.72, 130.8]], \"sentences\": [\"A woman is shown with a paintbrush and a piece of canvas.\", \" She uses green paint to fill in a drawing of a plant.\", \" She goes around in circles, painting the image.\"]}, \"v_6tveUnZe7WA\": {\"duration\": 50.62, \"timestamps\": [[0, 19.24], [19.24, 43.28], [43.53, 50.62]], \"sentences\": [\"A white male is dressed outside in a Scotland uniform standing outside in the middle of a cemetery.\", \"As he is standing,he plays the bag pipes with the American Flag hanging down from them.\", \"When he is finished,he begins to look to his right,shakes his head,catches his breath and keeps playing.\"]}, \"v_jzDXtd0__DM\": {\"duration\": 180.58, \"timestamps\": [[0, 33.41], [30.7, 112.86], [107.45, 174.26]], \"sentences\": [\"A close up of a sign is seen followed by a young couple looking to the camera.\", \" Other people are seen standing on the side and watching the other two.\", \" The coupe hold on and then jump off the side while the others stand and watch.\"]}, \"v_vX8L1RcZ4cc\": {\"duration\": 52.57, \"timestamps\": [[0, 9.2], [9.2, 21.55], [21.03, 37.06], [39.69, 52.57]], \"sentences\": [\"A little boy doing karate is yelling commands.\", \" He starts to do some of his karate moves, moving all around the court.\", \" He is a blue belt being judged for his skills.\", \" He bows gracefully before walking off and the judges throw up their flags.\"]}, \"v_3TbZ7uSYUe8\": {\"duration\": 32.6, \"timestamps\": [[0, 26.73], [26.24, 32.6]], \"sentences\": [\"A group of men are standing on a diving board and they take terms jumping off of the diving board.\", \"As the last person jumps off the board,a group of men are shown walking across the pool.\"]}, \"v_FhbsTTHT2Zs\": {\"duration\": 71.01, \"timestamps\": [[0, 17.04], [17.75, 39.05], [39.41, 71.01]], \"sentences\": [\"A woman with blonde hair,a purple jacket and black gloves on is standing near a stable talking.\", \"As she continues talking,her saddle is shown and she begins talking about the specifics of it.\", \"The lady then puts it on the horse and begins rubbing certain parts of it to make sure it is secure.\"]}, \"v_xld0M1MXNiE\": {\"duration\": 6.63, \"timestamps\": [[0, 0.86], [0.7, 1.92], [1.79, 6.63]], \"sentences\": [\"A close up of a globe is shown with a person pointing a hookah at it.\", \" The man is then seen looking closely to the camera.\", \" He finally blows smoke rings out of his mouth.\"]}, \"v_0SmA1cGocz4\": {\"duration\": 214.27, \"timestamps\": [[0, 17.14], [22.5, 107.14], [112.49, 177.85], [183.2, 214.27]], \"sentences\": [\"The word curling appears on the screen numerous times.\", \" A woman is shown having her hair dried, brushed, and curled by a specialist.\", \" He places her hair is rollers, then takes them down and styles it.\", \" Then she poses with her new hair style.\"]}, \"v_py4ekPd5G_k\": {\"duration\": 71.67, \"timestamps\": [[0, 17.56], [15.41, 51.6], [50.17, 71.67]], \"sentences\": [\"Several shots of a building are shown as well as a lake surrounded by trees.\", \" Many people are seen riding canoes and a person's feet and legs are shown.\", \" The people ride down the river while the camera pans in more landscapes and trees.\"]}, \"v_5IkU9svJFRI\": {\"duration\": 69.6, \"timestamps\": [[0, 1.74], [1.74, 13.22], [12.88, 22.97], [21.23, 26.45], [25.75, 32.02], [35.15, 69.6]], \"sentences\": [\"We see a boy squatting in the dirt.\", \" We then see the title screen.\", \" The little boy attempts to make a campfire using a flint.\", \" Small flames start and grow.\", \" The boy stands up next to his fire.\", \" We see 2 title cards about starting fires for survival and the website is show before the end screens.\"]}, \"v_3YiGMRp-7B4\": {\"duration\": 23.96, \"timestamps\": [[0, 2.04], [3.35, 12.7], [12.7, 23.96]], \"sentences\": [\"A group of people are standing in a parking lot.\", \" The people move in several martial arts techniques.\", \" They kick and punch back and forth.\"]}, \"v_WGzUnE043iA\": {\"duration\": 84.4, \"timestamps\": [[4.22, 73.42], [4.22, 29.54], [29.12, 51.9], [54.01, 73]], \"sentences\": [\"A man in a canoe talks and paddles in a lake surrounded by large rocks, trees, foliage, stray kayaks, and other people in canoes.\", \"  The man begins at a profile view holding a paddle while sitting in a canoe and talking to a camera occasionally pointing to a nearby shore with the paddle.\", \"  The man then uses the paddle in the water to push the canoe off deeper into the water.\", \"  The man begins to paddle freely in the water, passing along the way, a group of people on a canoe and several stray canoes and kayaks in the water, before facing the camera again in a close up and talking.\"]}, \"v_aDDq5ofaFHI\": {\"duration\": 157.15, \"timestamps\": [[0, 57.36], [57.36, 81.72], [81.72, 145.37], [145.37, 157.15]], \"sentences\": [\"White words appear on the screen and say \\\"THE AMERICAN DREAM\\\" and a man wearing a helmet jumps onto the dirt hill path and continues to walk down, grabs his skateboard and begins skating on the road at the end of the hill of a very scenic area.\", \" The man is now skating in a road in a residential area where he passes many homes with cars  parked on the roads.\", \" The man continues to skate through residential areas, water edges along parks, harbors, cities and etcetera.\", \" The man ends with a walk along a rocky beach and carrying his skateboard on his right shoulder.\"]}, \"v_4d3RtnuVCV4\": {\"duration\": 126.64, \"timestamps\": [[0, 126.64], [39.26, 126.64]], \"sentences\": [\"A video of the UConn women's field hockey team is shown.\", \"  The coach talks to the players and they have a practice.\"]}, \"v_SCGQIhvDcIo\": {\"duration\": 213.82999999999998, \"timestamps\": [[0, 10.69], [11.76, 48.11], [49.18, 205.28], [207.42, 213.83]], \"sentences\": [\"The \\\"LLumar\\\" logo appears on screen.\", \" A young girl with a pool cue walks to a pool table, the camera focuses on her low cut top.\", \" Several women play pool at the table in revealing clothing.\", \" The \\\"LLumar\\\" logo reappears on screen.\"]}, \"v_hsJJbTqSQR4\": {\"duration\": 13.52, \"timestamps\": [[0, 3.92], [4.12, 9.8], [9.26, 12.91]], \"sentences\": [\"A young girl is seen standing on a tennis court holding a racket.\", \" The woman begins swinging the racket while another boy stands beside her.\", \" The woman continues swinging and walks back to the boy.\"]}, \"v_w-6Oo3bgms4\": {\"duration\": 114.47, \"timestamps\": [[0, 18.31], [4.01, 17.74], [18.89, 32.05], [19.46, 32.05], [33.19, 114.47]], \"sentences\": [\"Several men are playing soccer in a gym.\", \" There are some spectators in the background.\", \" Another group of men are playing soccer.\", \" There are spectators in the background.\", \" Various scenes of soccer matches are shown with spectators.\"]}, \"v_Y8WY_c3onSY\": {\"duration\": 5.02, \"timestamps\": [[0, 2.81], [1.55, 5.02]], \"sentences\": [\"A couple girls are seen riding down a long slide in the middle of a park.\", \" More children ride down the slide while a mother helps the kids at the top.\"]}, \"v_u3B3M17akWU\": {\"duration\": 35.9, \"timestamps\": [[0.36, 17.95], [12.92, 35]], \"sentences\": [\"A woman is seen sitting down holding an ice cream while looking at the camera.\", \" She continues to eat the ice cream as the camera pans around her and watching her eat.\"]}, \"v_-G8N5FxjZbw\": {\"duration\": 116.61, \"timestamps\": [[0, 27.99], [31.48, 93.87], [83.38, 112.53]], \"sentences\": [\"A man is seen playing a set of bagpipes while people behind him push around bicycles.\", \" He is seen playing again while more people walk in and out of frame with children and dogs.\", \" Some people stop to hear him play and he stops to look to the camera.\"]}, \"v_gXKGS1N3zuM\": {\"duration\": 151.28, \"timestamps\": [[12.1, 113.46], [40.09, 113.46], [67.32, 141.45], [97.57, 141.45], [114.22, 141.45], [132.37, 141.45]], \"sentences\": [\"A belly dancer dressed in red and black is demonstrating how to hip circles and shimmy.\", \" She is standing with her feet hip width apart.\", \" Then she shows how to do the foot work as she moves her hips in circles.\", \" She simultaneously moves her hips and as she moves sideways.\", \" Then she extends her hands and up on one side as she continues to move along sideways.\", \" She repeats the steps going back and forth as she twirls her hips.\"]}, \"v_SQncxXAlBFE\": {\"duration\": 125.6, \"timestamps\": [[0, 43.96], [49.61, 125.6]], \"sentences\": [\"A woman body builder slowly lifts a giant barbell of weights up into the air.\", \" She lifts it to her chest, Then over her head before freezing in place.\"]}, \"v_k3yRK68SEDE\": {\"duration\": 41.05, \"timestamps\": [[0, 41.05], [6.16, 36.13], [36.33, 41.05]], \"sentences\": [\"Two men are sitting at a table.\", \" The men engage in a game of arm wrestling.\", \" One of them beats the other.\"]}, \"v_MBouLt-hXDU\": {\"duration\": 234.17000000000002, \"timestamps\": [[0, 52.69], [52.69, 100.69], [52.69, 94.84], [94.84, 234.17]], \"sentences\": [\"Cake chemistry explaining how to do a at home experiment, They give all the ingredients needed and begin to explain what they will be doing.\", \" The start to give step by step instructions on how to mix the ingredients together.\", \" They give very detailed information about what to do before putting them in the oven.\", \" Once, they come out of the oven they explain the difference between all of the cakes and the different ingredients they did not put in each to see why the results were different.\"]}, \"v_rbDbXXqaZaM\": {\"duration\": 117.68, \"timestamps\": [[0, 104.15], [104.73, 117.68]], \"sentences\": [\"A man drives a mowing machine to cut the grass of a backyard.\", \" The man pass on front the home to continues mowing the other parts of the yard.\"]}, \"v_htfrXrKUIzg\": {\"duration\": 128.11, \"timestamps\": [[2.56, 54.44], [53.8, 126.18]], \"sentences\": [\"A man is seen standing behind a large animal holding a razor and speaking to the camera.\", \" The man then shaves all around the dog while stopping to speak to the camera and pet the dog.\"]}, \"v_fynO9wmckLA\": {\"duration\": 106.25999999999999, \"timestamps\": [[0, 46.22], [50.47, 106.26]], \"sentences\": [\"Two young men are standing indoors, talking to the camera.\", \" They demonstrate how they run on a track, and do a long jump into sand.\"]}, \"v_pmPEfkb8roQ\": {\"duration\": 30.86, \"timestamps\": [[0, 11.73], [11.73, 30.86]], \"sentences\": [\"A fence in front of a house is shown.\", \" A man wearing white starts painting the fence.\"]}, \"v_0MtST08F2Xc\": {\"duration\": 36.85, \"timestamps\": [[3.87, 7.37], [7.37, 12.9], [12.9, 17.88], [17.88, 27.28], [27.28, 27.65]], \"sentences\": [\"A person in blue pants is raking some fallen leaves from the ground.\", \" There is a black dog and a white dog jumping around the person raking the leaves.\", \" The white dog is trying to bite off the rake.\", \" Both the dogs are playing around the man raking the leaves, trying to bite the rake.\", \" The person is moving the rake in circles as the dogs are jumping around him.\"]}, \"v_AEH6JEd_03c\": {\"duration\": 106.02000000000001, \"timestamps\": [[15.9, 104.43], [51.95, 73.69], [74.22, 84.82], [83.76, 94.36]], \"sentences\": [\"A butterfly is flying on the screen with words on slides.\", \" A person is mixing ingredients in a bowl.\", \" They spoon the dough onto a cookie sheet.\", \" Bakes cookies are shown stacked up on a plate.\"]}, \"v_P6lwZ6gKvUw\": {\"duration\": 136.56, \"timestamps\": [[1.37, 57.35], [61.45, 132.46]], \"sentences\": [\"A person is seen sitting in a chair and leads into her peeling a potato with a knife.\", \" The person then finishes peeling the potatoes and putting it down.\"]}, \"v_JV4ss42WZG8\": {\"duration\": 65.83, \"timestamps\": [[0.99, 19.75], [16.79, 50.03], [45.42, 64.18]], \"sentences\": [\"A person is seen cutting up various fruits while also seen speaking to the camera.\", \" The person mixes various ingredients into a container of water.\", \" The person spins around the container in the end.\"]}, \"v_vw64k9rIi_g\": {\"duration\": 15.4, \"timestamps\": [[0.08, 15.16], [0.38, 8.47], [0.69, 6.08], [7.08, 12.32], [12.39, 15.09]], \"sentences\": [\"A person's hand washes a grey cat in a white tub of water.\", \"  A grey cat is sitting in a white tub of clear water, drenched in water.\", \"  A hand with a tattoo appears and wipes the cat's back with a red cloth.\", \"  The hand then wipes the cat's neck and the back of its head with the red cloth.\", \"  The hand, finally, lets the red cloth fall into the water as the hand holds itself up to the cat's nose.\"]}, \"v_heLlfK--Bx0\": {\"duration\": 80.92, \"timestamps\": [[0, 15.38], [17.4, 47.34], [49.36, 80.92]], \"sentences\": [\"A girl is standing with her back turned on a court.\", \" She turns, accidentally dropping a rope.\", \" She then performs, spinning and jumping with the rope.\"]}, \"v_hR6VFvMXCN4\": {\"duration\": 147.63, \"timestamps\": [[0, 28.79], [28.05, 57.58], [54.62, 147.63]], \"sentences\": [\"A close up of a flame is shown followed by audience members standing up and athletes standing ready.\", \" Hitler then watches a man jump into a pit as well as several other runners after him.\", \" More athletes continue jumping while the audience gets riled up and ends with soldiers raising flags up to the sky.\"]}, \"v_Gpocjp7hSzU\": {\"duration\": 197.86, \"timestamps\": [[5.94, 72.22], [73.21, 101.9], [101.9, 164.22], [165.21, 176.09], [177.08, 197.86]], \"sentences\": [\"A chef shows all the ingredients to do pasta.\", \" Then, the chef puts the pasta in hot water, then pours oil in a pan.\", \" Next, the chef adds to the pan the garlic, tomatoes, basil, salt, pepper and the cooked pasta and mix.\", \" After, the chef adds the parmesan cheese on top the pasta and serves in a dish.\", \" The chef put cheese and two green leaves on top the pasta in the dish.\"]}, \"v_BgsxbT9RCeg\": {\"duration\": 195.58, \"timestamps\": [[15.65, 22.49], [22.49, 47.92], [47.92, 74.32], [74.32, 89.97], [89.97, 105.61], [105.61, 129.08], [129.08, 150.6], [150.6, 185.8], [185.8, 195.58]], \"sentences\": [\"A woman ballerina dressed in a pink skirt and white blouse is standing in pose with her back bent forward and hands on her sides on a stage.\", \" A man in blue jeans and a white shirt walks in and strokes her back with a yellow cloth.\", \" Then a little girl ballerina comes and bumps into the woman.\", \" The woman breaks into a dance every time the little girl ballerina taps her.\", \" The little girl picks up a pair of wings and tries to put it on her back.\", \" The woman starts doing some ballet moves.\", \" She continues to dance to ballet moves as the little girl walks away.\", \" The woman ballerina twists and twirls on her toes as she dances to music.\", \" The crowd applauds and the man in the white shirt and blue jeans lifts her up and walks off the stage.\"]}, \"v_cByxAZfw_hM\": {\"duration\": 51.06, \"timestamps\": [[0, 51.06], [0, 35.23]], \"sentences\": [\"man is running in a race track and make a long jump while people in stands is watching him an clapping.\", \" people on side of the racetrack is sitting on a side.\"]}, \"v_TGVWaA_xTGE\": {\"duration\": 122.97, \"timestamps\": [[0, 73.78], [47.34, 114.98]], \"sentences\": [\"A woman is seen sitting behind a set of bongo drums and playing along while speaking to the camera.\", \" The woman continues hitting the drums while speaking to the camera and singing along.\"]}, \"v_vvdmMyyAtN0\": {\"duration\": 222.1, \"timestamps\": [[0, 23.32], [24.43, 133.26], [137.7, 222.1]], \"sentences\": [\"A woman is lying on a bed with her hair spread.\", \" There are several images of her from behind with very long hair.\", \" We then see numerous images of her with her hair cut off to shoulder length.\"]}, \"v_VJyNbaAz6Xs\": {\"duration\": 167.44, \"timestamps\": [[0.84, 19.26], [14.23, 39.35], [39.35, 97.95], [97.95, 167.44]], \"sentences\": [\"A man in a red coat is outside on a snowboard.\", \" He starts going down a course and doing some really cool tricks while moving.\", \" Some men are rubbing down their boards and another gets on the field and starts doing some flips and stuff in mid air.\", \" These are all pretty experienced people on the boards, they are even boarding through water and having a good time.\"]}, \"v_lroya8XhuPs\": {\"duration\": 188.45, \"timestamps\": [[0, 49], [16.96, 49], [49, 170.55], [170.55, 188.45]], \"sentences\": [\"woman is standing talking to the camera holding a microphone and interviewing voleyball players.\", \" men are standing in a sandy field being interviewed.\", \" men are in sandy field showing he girl how to play beach soccer.\", \" woman is sin front of the net talking to the camera.\"]}, \"v_dWPlarw_xg8\": {\"duration\": 214.69, \"timestamps\": [[0, 63.33], [67.63, 214.69]], \"sentences\": [\"A man gets pumped up to do a long jump then does it.\", \"  Others go next and try to get the crowd pumped up for their respective long jumps.\"]}, \"v_q-RNYziOHjE\": {\"duration\": 142.99, \"timestamps\": [[0, 31.46], [31.46, 62.92], [62.92, 115.11], [115.11, 142.99]], \"sentences\": [\"A black female is talking to the screen with long blonde curly hair and a black sweater.\", \"A blow dryer is shown and the lady then begins drying a girl's hair.\", \"The girls hair is then shown extremely curly and the young lady has trouble drying her hair.\", \"The Red by Kiss blow dryer is shown again and the lady continues drying the young lady's hair.\"]}, \"v_Cjq9wf9XnX0\": {\"duration\": 33.95, \"timestamps\": [[0, 6.11], [6.11, 33.95], [6.79, 33.95]], \"sentences\": [\"man is putting the lifts on a pole.\", \" man is standing in middle of a room in a gym lifting weight.\", \" a lot of different lifts are stacked in the gym.\"]}, \"v_ffWMjZCysO0\": {\"duration\": 218.64, \"timestamps\": [[0, 62.31], [61.22, 158.51], [131.18, 210.99]], \"sentences\": [\"A person is seen running along the road wearing equipment and speaking to the camera.\", \" The man runs around using strings as well as speaking to the camera.\", \" The man continues speaking while more shots are shown of him running.\"]}, \"v_NttjvRpSdsI\": {\"duration\": 61.46, \"timestamps\": [[0, 61.46], [0, 61.16], [4.92, 61.16]], \"sentences\": [\"People are sitting in stands watching people.\", \" The people are in robes.\", \" They are doing karate moves on the floor.\"]}, \"v_XCXcwMyrqYM\": {\"duration\": 75.63, \"timestamps\": [[0, 16.26], [17.02, 54.83], [31.01, 42.73], [0, 75.63], [55.21, 75.63]], \"sentences\": [\"A man talks about a bow he is using in front of an open field.\", \" The man shows how to use the bow by hitting a target in the field.\", \" Several vehicles drive down a road behind the field.\", \" Cows graze behind the road.\", \" The man hits his last target and walks away.\"]}, \"v_JnYteBN2LDI\": {\"duration\": 61.09, \"timestamps\": [[0, 5.19], [5.8, 10.39], [10.39, 18.63], [18.33, 24.74], [18.02, 24.74], [24.44, 35.43], [35.43, 38.18], [37.88, 40.93], [40.02, 47.35], [48.26, 61.09]], \"sentences\": [\"A male bartender stands behind a bar in front of drinks and mixing cups.\", \" The man picks up a steel sup and pours its contents of ice into a glass he holds in opposite hand.\", \" The man then picks up a small steel shot glass and fills it with liquir.\", \" The man then pours the liquir into from the shot glass into the glass cup with ice.\", \" The man picks up another glass with red juice inside and pours it into the glass with ice before setting back down.\", \" The man pours the cup with all the liquids into a mixing cup then uses it to cap and shake the mixer.\", \" The man stops shaking and sepperates the two cups, setting them back on the counter.\", \" The man grabs a third empty glass and moves it to the opposite side of the counter.\", \" The man picks up the mixer and pours its contents into the empty glass before setting it back down.\", \" The man then adds a staw and miniature umbrella into the drink for decoration before holding up the glass.\"]}, \"v_NsYBZUTzgDw\": {\"duration\": 33.07, \"timestamps\": [[0, 9.26], [10.09, 33.07]], \"sentences\": [\"A woman lifts up a cat from the table and sits down with it in her lap.\", \" The woman uses trimming scissors to cut the cats claws.\"]}, \"v_43j1BAyP6Q0\": {\"duration\": 179.05, \"timestamps\": [[0.9, 177.26], [0.9, 105.64], [105.64, 176.36]], \"sentences\": [\"An unseen person navigates several Amazon dot com pages on exercise equipment.\", \"  An Amazon page showing an exercise machine alone is shown, followed by another image of a Amazon page showing a woman using an exercise  machine along with a price and information about the equipment.\", \"  Another page showing a eliptical trainer is shown in which an active computer mouse is navigating the review for the item at which point another model elliptical trainer on another page is shown.\"]}, \"v_HeHQxObROwQ\": {\"duration\": 92.7, \"timestamps\": [[0, 17.61], [17.61, 39.4], [39.4, 62.57], [62.57, 92.23]], \"sentences\": [\"A woman is spreading shaving cream on another woman's legs.\", \" She puts her hands under water and begins to shave the woman's legs for her.\", \" She starts from bottom to top of the leg and continues that motion.\", \" The video is very unsteady, but the woman continues to shave her friends leg.\"]}, \"v_tjuYS-6UC_M\": {\"duration\": 167.46, \"timestamps\": [[0, 49.4], [54.43, 140.67], [141.51, 167.46]], \"sentences\": [\"A pinata hangs from a tree, as a group of girls stand in front of it.\", \" One has a stick and is blindfolded.\", \" She hits the pinata, then walks away.\"]}, \"v_MGF7I9aCPPM\": {\"duration\": 65.16, \"timestamps\": [[0, 29.65], [29.32, 38.12], [42.03, 49.19]], \"sentences\": [\"A woman in a pink shirt is riding a cycle bike.\", \" She is then doing push ups on the ground.\", \" She does sit ups on the ground.\"]}, \"v_NnEUVHhtLZs\": {\"duration\": 138.21, \"timestamps\": [[0, 9.67], [13.13, 78.78], [85, 138.21]], \"sentences\": [\"a man is seated, talking to a talk show host.\", \" They are animated as they speak to one another.\", \" They continue talking, then the host presents the man with a gift.\"]}, \"v_zCI36lTmBqY\": {\"duration\": 165.56, \"timestamps\": [[0, 25.66], [25.66, 69.53], [69.53, 113.41], [113.41, 165.56]], \"sentences\": [\"A man is sitting inside on a chair inhaling from a pipe that looked like it was an oboe.\", \" He takes the hose out of his mouth and start to exhale forming O's in the air.\", \" He starts to blow his smoke in a container and makes some really cool circles i have never seen anything like it.\", \" It's pretty cool how he is forming the o's, just relaxing and enjoy simple fun.\"]}, \"v_LmWcpkqUurg\": {\"duration\": 187.32, \"timestamps\": [[0, 24.35], [25.29, 49.64], [42.15, 70.24], [70.24, 112.39], [114.26, 152.66], [149.85, 164.84], [165.77, 178.89]], \"sentences\": [\"A man stands at the front of his minivan and shows it.\", \" The man leans on the tailgate of his van and shows storage cargo features inside.\", \" The man assembles together poles.\", \" The man sits in the drivers seat of the van and places the rod frame into a socket and twists it around.\", \" The man adjusts the rod and reaches under the van to remove a spare tire.\", \" The man removes the spare tire from its enclosure.\", \" The man works on installing the new tire.\"]}, \"v_t8_XO-nWaYg\": {\"duration\": 74.93, \"timestamps\": [[7.12, 16.86], [16.86, 30.35], [30.35, 57.32], [57.32, 67.44], [67.44, 71.93]], \"sentences\": [\"There are two teenage boys playing and solving the Rubic's cube.\", \" Another small boy comes in there and takes a look at the camera.\", \" The teenagers are competing against each other to solve the cube.\", \" They both finish almost at the same time and solve the Rubic's cube.\", \" They proudly show off their skills in the camera.\"]}, \"v_EhxFw5Eb1VE\": {\"duration\": 67.11, \"timestamps\": [[1.01, 17.45], [11.41, 67.11]], \"sentences\": [\"The male athlete is standing by the two poles, raised his arms up, then jumped on the poles with his arms, while under him, a man pull out a red beam.\", \" The athlete perform his exhibition on the poles, he stand on his arms while his feet and legs are extended straight up in the air, he turns around, swirl, jumped and twist around then jumped on the mat, standing straight.\"]}, \"v_1BfYAuxv6Wk\": {\"duration\": 63.58, \"timestamps\": [[4.77, 10.81], [10.81, 16.85], [16.85, 22.89], [22.89, 31.79], [31.79, 45.46], [45.46, 47.68]], \"sentences\": [\"Maria is demonstrating how to make a Nyquil cocktail drink.\", \" She shows the ingredients required for the drink.\", \" She points to vodka, jagermeister and food coloring.\", \" She then takes a shaker and pours and vodka and the jagermeister.\", \" Then adds some ice in it and shakes it.\", \" She uses a strainer to strain the drink into a cocktail glass and places the glass on the table.\"]}, \"v_ueDoskgg2yw\": {\"duration\": 15.09, \"timestamps\": [[0, 9.66], [0, 2.26], [2.11, 9.51], [2.49, 5.51], [3.4, 5.13], [4.91, 6.72], [6.26, 9.66], [9.43, 12], [11.77, 15.09]], \"sentences\": [\"There are some men shaving with Gillette shaving gel.\", \" There's a model whose face is completely lathered with shaving gel and he is using a blue razor to shave his face.\", \" Another male model also has his entire face lathered with shaving gel.\", \" He is also shaving his face with a blue razor.\", \" He shaves his cheeks and mustache area.\", \" He pumps out a small amount gel on his hands.\", \" Then shows the difference between regular foam cream and gel shaving cream and continues having.\", \" He then poses with a lady model who touches his face to feel his smooth skin.\", \" The entire Gillette shaving set is shown.\"]}, \"v_sgwg1C3i-Vw\": {\"duration\": 118.33, \"timestamps\": [[0, 11.24], [11.24, 33.13], [33.13, 37.27], [33.13, 77.51], [37.87, 115.96], [115.37, 118.33]], \"sentences\": [\"An introduction for a canoe sporting brand appears on the screen.\", \" Several people are shown preparing to get their canoes into the water on a snowy day.\", \" Several other people get off of a bus and head toward the water.\", \" People are then shown doing several canoe an skiing training exercises.\", \" Then, in the water, people are shown canoeing and having fun.\", \" The video ends with the canoesport website displayed.\"]}, \"v_v4KygkYPdp0\": {\"duration\": 193.24, \"timestamps\": [[0.97, 4.83], [5.8, 11.59], [12.56, 164.25], [79.23, 102.42], [165.22, 169.08], [171.01, 191.3]], \"sentences\": [\"The credits of the clip are shown.\", \" A person rests his hands on the top of drums.\", \" The person is playing the drums.\", \" The person claps their hands.\", \" The person puts his fingers together.\", \" The credits of the clip are shown.\"]}, \"v_2dFLbFsFyuY\": {\"duration\": 97.71000000000001, \"timestamps\": [[0, 15.63], [15.63, 19.54], [21.01, 22.96], [30.78, 36.15], [36.15, 38.11], [38.11, 42.02], [49.34, 57.16], [57.65, 61.56], [61.56, 64.49], [66.44, 70.35], [70.84, 75.73], [81.59, 94.29]], \"sentences\": [\"A woman holds a yellow ball behind her neck.\", \" She turns around and launches the ball onto a field.\", \" People run to measure the distance.\", \" A man in a red shirt holds a ball behind his neck.\", \" He turns around and launches the ball on the field.\", \" People run to measure the distance of it.\", \" Another woman holds a ball behind her neck.\", \" She also turns around and launches the ball onto the field.\", \" People then run over to measure the distance.\", \" She waves at the crowd.\", \" She then throws the ball again.\", \" The results then flash on the screen.\"]}, \"v_zDPsJ3ECaTI\": {\"duration\": 221.4, \"timestamps\": [[0, 24.35], [24.35, 205.9], [40.96, 205.9]], \"sentences\": [\"An intro starts and begins showing a group of people.\", \" Various people perform a dance routine together with an instructor performing front and center.\", \" The routine continues with the people and instructor moving around with their arms and legs doing various movements to music.\"]}, \"v_t3zAh4NBVko\": {\"duration\": 24.73, \"timestamps\": [[0, 24.73], [0, 19.29], [19.66, 24.73]], \"sentences\": [\"A boy and a girl are sitting behind a table.\", \" They begin to arm wrestle on the table.\", \" The man wins and smiles.\"]}, \"v_mn1ozn0j7D8\": {\"duration\": 131.43, \"timestamps\": [[0, 20.37], [21.03, 31.54], [31.54, 59.14], [59.8, 101.85], [101.85, 105.14], [105.8, 131.43]], \"sentences\": [\"We see a couple opening title screens.\", \" A man is shaving with a straight razor.\", \" We see the man behind him and the men hug and talk.\", \" The man returns to shaving his face.\", \" We see the man in the rear again.\", \" The shaving man talks and we see the ending title screens.\"]}, \"v_oG4zf8dAQKw\": {\"duration\": 37.57, \"timestamps\": [[0, 17.66], [11.65, 37.57]], \"sentences\": [\"A close up of products are shown followed by a woman open the package in front of a mirror.\", \" The woman puts the package into her mouth, swishes it around, then spits it out.\"]}, \"v_OBbHkBVDX8Y\": {\"duration\": 172.85, \"timestamps\": [[0, 5.19], [6.91, 119.27], [69.14, 170.26]], \"sentences\": [\"A man is seen standing on stage holding an instruments in his hands.\", \" He then picks up the instrument and begins playing on stage.\", \" The man continues to play and ends looking away.\"]}, \"v_jlqC3lFqxhQ\": {\"duration\": 201.73, \"timestamps\": [[0, 5.04], [5.04, 194.67], [194.67, 201.73]], \"sentences\": [\"The video begins with a backdrop of a snowy area and introduces the names of the people in the video and that it's the \\\"Wisp Snowboard Trip 2014.\", \"The video then goes into numerous various different segments of a bunch of different people snowboarding while doing tricks either in the daytime or nighttime and at various different locations.\", \" The outro goes to gray and then fade to black.\"]}, \"v_ZJCbT3300OA\": {\"duration\": 124.88, \"timestamps\": [[0, 7.49], [16.23, 51.82], [56.19, 124.88]], \"sentences\": [\"A large intertube is shown on the screen.\", \" A bunch of sledders get on the tubes.\", \" They ride them down a steep hill together.\"]}, \"v_QxsELAtsSWE\": {\"duration\": 170.57, \"timestamps\": [[5.12, 12.79], [15.35, 47.76], [48.61, 97.23], [98.08, 158.63], [159.49, 170.57]], \"sentences\": [\"A female news anchor introduces a story.\", \" A female news reporter speaks to a fitness instructor inside a gym, where cyclists are riding fitness bikes.\", \" Exercises such as yoga and bicycling are demonstrated by those in the gym.\", \" The female news reporter continues talking to the fitness instructor.\", \" She speaks to the anchor back in the studio.\"]}, \"v_iM-HdlplAhw\": {\"duration\": 22.73, \"timestamps\": [[0, 3.07], [2.5, 11.82], [10, 22.16]], \"sentences\": [\"A child is seen handing onto a set of monkey bars while children running around.\", \" The girl then begins climbing across the set of monkey bars.\", \" She climbs all the way to the end and jumps off the side.\"]}, \"v_CNH37tJNzFE\": {\"duration\": 129.99, \"timestamps\": [[0.65, 39], [40.95, 99.44], [71.49, 127.39]], \"sentences\": [\"A close up of a gear shaft is seen following by someone opening a trunk and pulling a tire out.\", \" The person puts a jack under the car and begins unscrewing the tire and taking it off.\", \" The person puts a new tire on and screws it in place while taking off the jack and putting the hubcap back on.\"]}, \"v_DLJqhYP-C0k\": {\"duration\": 186.97, \"timestamps\": [[0, 10.28], [10.28, 154.25], [156.12, 163.6], [164.53, 182.29], [182.29, 186.97]], \"sentences\": [\"The opening credits are shown for a video about bowling.\", \" The video then shows several bowlers doing bowling tricks at a bowling alley.\", \" A credit comes onto the screen introducing the grad finale trick.\", \" A man throws the ball and simultaneously throws himself down the alley as well.\", \" The closing credits then com onto the screen to end the video.\"]}, \"v_nMTyJxJIZUs\": {\"duration\": 68.71000000000001, \"timestamps\": [[0, 62.52], [62.18, 68.71]], \"sentences\": [\"A small child paints another individual's fingernails.\", \" The other individual examines the nails.\"]}, \"v_rt1kYX3slRI\": {\"duration\": 69.68, \"timestamps\": [[0, 5.57], [5.92, 56.44], [57.49, 69.68]], \"sentences\": [\"A man mounts a beam in front of a crowd.\", \" The gymnast begins to drop, lift, hold, and spin in circles on the high beams for the crowd.\", \" He dismounts gracefully, raising his arms to the crowd before walking away.\"]}, \"v_Cy56IkwsQVs\": {\"duration\": 237.66, \"timestamps\": [[1.19, 224.59], [1.19, 46.34], [46.34, 120.02], [226.96, 236.47]], \"sentences\": [\"Several young people, talk and laugh while standing around a table covered in beer cans and blue plastic cups.\", \"  A young man stands around a table in a room talking to two two women and some more men, occasionally laughing and smiling.\", \"  A small white balls is thrown across the table as the people attempt to throw the balls in the blue cups from across the table.\", \"  In the final moments of the clip a ball flies across the table and the men react in a triumphant way throwing their arms in the air in celebration.\"]}, \"v_Sw7iRtHxMSs\": {\"duration\": 90.78999999999999, \"timestamps\": [[0, 16.8], [16.8, 20.88], [0, 90.79], [29.96, 34.05], [35.41, 44.49], [38.59, 44.03], [46.76, 60.38], [52.66, 57.2], [61.74, 65.37], [69, 81.71], [82.62, 83.53]], \"sentences\": [\"A group of young men poses and goofs around in front of a table full of red cups.\", \" A young man in black puts two shot glasses down on the table.\", \" Another group of young men sit in chairs outside.\", \" A young man in grey bounces a ball on the table and in to one of the cups and celebrates with the young man next to him.\", \" A young man in black bounces a ball toward the cups but misses.\", \" Another man holds his hand up next to the cups.\", \" The two men that bounced the balls at the cups clink the shot glasses together and then drink the shot.\", \" A young man in black pats the back of the young man in grey.\", \" The young man in grey drinks from one of the red cups on the table while the young man in black pretends to punch him.\", \" Another young man rearranges the remaining cups on the table.\", \" The young man in grey and the young man in black fist bump.\"]}, \"v_3gsF785TAmg\": {\"duration\": 108.18, \"timestamps\": [[0, 11.9], [11.9, 21.64], [21.64, 44.35], [44.35, 71.4], [71.4, 106.56]], \"sentences\": [\"A game of volleyball is being played between blue and yellow team.\", \" The yellow team servies the ball and it is hit continually back and forth until the yellow team scores a point.\", \" A player on the yellow team falls and the players on each team assist her.\", \" They take her shoe and sock off and massage her leg.\", \" Two people proceed to pick her up with the help of a third and take her off the court and lay her down to the side to continue care.\"]}, \"v_awv0jtZpeoo\": {\"duration\": 28.28, \"timestamps\": [[0, 27.72], [13.58, 19.09], [21.21, 26.59]], \"sentences\": [\"A man in a red shirt is working out an an exercise machine.\", \" A woman in a purple shirt walks behind him.\", \"Two people are talking to each other behind him.\"]}, \"v_0QyHaXliXKs\": {\"duration\": 158.57, \"timestamps\": [[0.79, 61.05], [42.81, 120.51], [129.23, 156.19]], \"sentences\": [\"A large group of people are seen holding up flags and walking in a circle while many others watch on the sides.\", \" Two people are then seen walking up to the circle and lead into a wrestling match between the two.\", \" One man bows to the other and the winner walks away from the stage.\"]}, \"v_9-yA1F4il_A\": {\"duration\": 16.84, \"timestamps\": [[0, 14.56], [0.76, 13.64], [14.98, 16.84]], \"sentences\": [\"A lady is blowing leaves off a roof.\", \" the lady walks to the right then towards the top.\", \" The camera pans down and we see a small boy on the ground below.\"]}, \"v_CvhSPJ0sBCk\": {\"duration\": 60.09, \"timestamps\": [[0, 44.77], [48.68, 60.09]], \"sentences\": [\"Two people are shown parasailing together across ocean water.\", \" They move their sails around as they go.\"]}, \"v_iDz8nKDpumY\": {\"duration\": 112.18, \"timestamps\": [[0, 38.14], [32.53, 112.18]], \"sentences\": [\"Two people are seen riding on skis behind a boat with one person having a child on their shoulders.\", \" The people all hang onto one another while the young child climbs on top of them and falls off in the end.\"]}, \"v_OH5UXwa3F7E\": {\"duration\": 186.97, \"timestamps\": [[0, 30.85], [0, 186.97], [47.68, 54.22], [71.05, 77.59], [97.22, 128.07], [129.01, 135.55], [165.47, 170.14], [182.29, 186.97]], \"sentences\": [\"We see an opening screen and a man runs and does a high jump at fifteen feet.\", \" We see a man jump the high jump on a track at various height with lots of cut scenes.\", \" We see seventeen and a still of the man.\", \" We see fifteen nine scroll across the screen.\", \" We see a series of still of the man and sixteen six.\", \" Seventeen two scrolls across the screen.\", \" We see seventeen nine scroll across the screen.\", \" We then see the ending credits.\"]}, \"v_iGuOr5KwLQ0\": {\"duration\": 116.33, \"timestamps\": [[0, 116.33], [63.98, 66.31]], \"sentences\": [\"A man in a toga skates on rollerblades in a parking lot.\", \" A person holding a camera is standing to the side watching the man on rollerblades.\"]}, \"v_my4UPLGI6w4\": {\"duration\": 76.53, \"timestamps\": [[13.01, 39.03], [39.03, 63.91], [63.91, 69.65]], \"sentences\": [\"There's a man coming out of his garage with an electrical leaf blower.\", \" He begins blowing the leaves off of his yard for fall cleanup.\", \" He walks around his yard with the blower as he cleans the leaves.\"]}, \"v_NRdxsuSCJyM\": {\"duration\": 62.11, \"timestamps\": [[0, 24.54], [24.85, 38.51], [38.82, 62.11]], \"sentences\": [\"A scuba diver holds onto a rock as he throws a peace sign in the air.\", \" The man lets go of the rock and puts up two peace signs in the air.\", \" The man fixes his snorkel and goggles.\"]}, \"v_kMsWDe0V1Xg\": {\"duration\": 190.85, \"timestamps\": [[0, 3.82], [3.82, 28.63], [28.63, 48.67], [49.62, 79.2], [80.15, 83.97], [92.56, 125], [125, 182.26], [181.3, 190.85]], \"sentences\": [\"Blue lights light up a stage.\", \" A man's silhouette is visible and we see the arena in blue light.\", \" The man on stage plays lit in a red light.\", \" We see the arena in blue and the sax player in red.\", \" We see another member of the band.\", \" We see the man on the saxophone playing close and far.\", \" We see the whole arena and the man playing close.\", \" We pan from the man out to the audience.\"]}, \"v_x4DuEusRR7Q\": {\"duration\": 31.8, \"timestamps\": [[0, 5.25], [5.57, 27.98], [28.14, 31.8]], \"sentences\": [\"A person is seen swimming the depths of a pool floor.\", \" The man comes up before the camera, his face showing.\", \" He then swims slowly back toward the surface.\"]}, \"v_Ufm19cvrxGs\": {\"duration\": 158.36, \"timestamps\": [[0, 24.55], [44.34, 60.97], [65.72, 117.98], [120.35, 135.4], [137.77, 147.28]], \"sentences\": [\"A set of instruction is seen with diagrams.\", \" A man uses a tool to repair individual links of a bike chain.\", \" The bike chain is fastened back together on the bike gears using a specialized tool.\", \" The person inspects the newly replaced chain by hand.\", \" The person points to different areas on the bike gearing with the bike on the rack after the job is complete.\"]}, \"v_uz4Tb2RG1tY\": {\"duration\": 150.46, \"timestamps\": [[0, 77.48], [56.42, 148.2]], \"sentences\": [\"A chef is seen speaking to the camera holding up a knife as well as a sharpener.\", \" The man then sharpens the knife on a board on the table as well as on the sharpener.\"]}, \"v_M_LSDRzVN38\": {\"duration\": 43.58, \"timestamps\": [[0, 15.04], [15.04, 32.91], [32.91, 43.58]], \"sentences\": [\"A blindfolded young woman swings a stick around wildly as a man holds a pi\\u00f1ata high above her head on a string at a birthday party.\", \" Then woman swings a few more times as the man brings the pi\\u00f1ata up and down with the attached string and as she does this knocks a piece of the pi\\u00f1ata off and a few kids gather round her to see if any candy fell out.\", \" The woman feels for the pi\\u00f1ata a few times with the stick, but does not swing as kids continue to look up in amazement.\"]}, \"v_ULZpTYSwlTs\": {\"duration\": 27.89, \"timestamps\": [[5.02, 9.2], [9.2, 17.15], [17.15, 24.82], [24.82, 26.91]], \"sentences\": [\"There are some weightlifters on stage participating in weightlifting events.\", \" There are several spectators watching the event.\", \" One of the weightlifters successfully lifts the weight bar high up and then drops it down.\", \" He raises his right hand feeling triumphant.\"]}, \"v_1fF1OQtpctg\": {\"duration\": 213.81, \"timestamps\": [[0, 54.52], [54.52, 125.08], [125.08, 181.74], [182.81, 213.81]], \"sentences\": [\"A cheer-leading team begins to hold up posters as their mascot runs behind them.\", \"They then begin to do a routine and some of the girls run with streamers as the rest of them hold up the girls for their stunt.\", \"The stunt is finished and the retreat back to their original position and begin doing cartwheels and other tricks and stunts along with their mascot.\", \"As the routine continues,more stunts are performed and the Tiger mascot continues to cheer with the girls.\"]}, \"v_SnBTp7iV2kE\": {\"duration\": 146.75, \"timestamps\": [[0, 111.53], [87.32, 90.99], [111.53, 132.81], [119.6, 132.81], [133.54, 146.75]], \"sentences\": [\"A boy and a man take turns playing billiards while a crowd watches.\", \" The man wipes his face with a towel.\", \" The boy wins and the crowd cheers.\", \" Several men pick up the boy in celebration.\", \" The winning shot is replayed in slow motion.\"]}, \"v_OqajYZVt1Wc\": {\"duration\": 75.7, \"timestamps\": [[0, 34.06], [31.04, 75.7]], \"sentences\": [\"A women is seen holding a thread of string in her hands and begins knitting the string with her hands.\", \" She continues threading the string with her hands and ends by holding the thread up to show.\"]}, \"v_xlTKV-3QSW8\": {\"duration\": 78.1, \"timestamps\": [[3.12, 36.32], [36.32, 62.87], [62.87, 78.1]], \"sentences\": [\"A man sitting in a raft in water talks to the camera.\", \" The man demonstrates techniques while talking to the camera.\", \" The man rafts downstream while paddling.\"]}, \"v_62h9hnNTKWM\": {\"duration\": 135.56, \"timestamps\": [[9.49, 27.79], [27.79, 56.26], [56.26, 91.5], [91.5, 109.12], [109.12, 124.71], [124.71, 131.49]], \"sentences\": [\"Alexandra Raisman from Massachusetts is seen wearing purple leotards, getting ready to do gymnastics on the horse bar.\", \" She jumps right onto the horse bar and does some front and back flips.\", \" Then she does some back hand springs on the horse bar.\", \" she swiftly jumps on the horse bar while maintaining complete control over body and balance.\", \" She does a final back flip and a front flip and then, gets off the horse bar.\", \" The spectators cheer for her as she walks away.\"]}, \"v_bQ3yPbCICRg\": {\"duration\": 10.5, \"timestamps\": [[0, 2.31], [2.2, 8.13], [7.77, 10.18]], \"sentences\": [\"A man is seen bending over a bang in the middle of drummers.\", \" The people hit the drums continuously while the camera pans around.\", \" The men drum while the camera pans around them.\"]}, \"v_4innF37ifyY\": {\"duration\": 19.97, \"timestamps\": [[0, 7.19], [7.79, 8.89], [9.09, 19.97]], \"sentences\": [\"A news man is speaking in front of a group of people.\", \" A man is shown on a diving board high atop a cliff.\", \" He dives, jumping into the shallow waters below.\"]}, \"v_4fEY6zIq8bQ\": {\"duration\": 219.66, \"timestamps\": [[0, 219.66], [17.57, 81.27], [71.39, 219.66]], \"sentences\": [\"The man is plastering the wall.\", \" The man bend over then continue to plaster the wall.\", \" The man cover the wall with pink plaster until the whole wall is covered.\"]}, \"v_1iIG5D3jTk4\": {\"duration\": 96.25, \"timestamps\": [[0.96, 44.27], [35.13, 93.36]], \"sentences\": [\"Two people are seen standing in a large gymnasium speaking to one another and leads into them performing a jump roping routine.\", \" The woman continue jumping all along the gym together and end by holding the ropes against their feet.\"]}, \"v_bY0bGFJ-k1U\": {\"duration\": 143.15, \"timestamps\": [[2.15, 48.67], [40.8, 116.67], [113.81, 139.57]], \"sentences\": [\"A close up of a hand is seen that pans out to a man putting gloves on.\", \" The man then assembles a torch and begins burning a piece of metal in front of him.\", \" The man continues to work and hammer objects as well as sand it on the side.\"]}, \"v_eW5W8dVB_I4\": {\"duration\": 122.09, \"timestamps\": [[0, 20.15], [0, 122.09], [54.94, 108.05]], \"sentences\": [\"Two men are standing on the side of the court holding basketball.\", \" The men are giving interview, talking to the camera, while one man is talking the other man is listening, then vice versa.\", \" The man went to the basket dribble to the ball, the men ran to the basket and shot the ball.\"]}, \"v_G5mKcPzVMG4\": {\"duration\": 73.26, \"timestamps\": [[0, 12.09], [10.26, 73.26]], \"sentences\": [\"A man in gray shirt and cap is sitting next to a boat motor, while behind him is a woman riding a surfboard, and holding a harness attached to the boat.\", \" As the woman moving the dolphins started to swim with her, the dolphins' fins are visible as they swim up and down.\"]}, \"v_ITGlho0dw-k\": {\"duration\": 126.43, \"timestamps\": [[0, 3.79], [3.79, 15.8], [15.8, 42.99], [43.62, 84.08], [84.08, 106.2], [106.84, 115.69], [116.32, 126.43]], \"sentences\": [\"We see an opening title screen.\", \" We see a lady putting sunscreen on in a bathroom and on the beach.\", \" We see a title screen and see the lady buy her sunscreen and another title screen.\", \" The lady throws a way a bottle and looks on her phone before going to the bathroom and putting sunscreen on.\", \" We see a title screen and the lady applies sunscreen and a friend puts some on her back.\", \" The lady puts on sunscreen on the beach and her friend run on the beach.\", \" We see a title screen and the ending screen.\"]}, \"v_ynispYtdDq8\": {\"duration\": 67.68, \"timestamps\": [[0, 8.8], [9.81, 53.46], [57.19, 67.68]], \"sentences\": [\"A woman in lingerie is sitting on a couch waving at the camera.\", \" She opens a pack of cigarettes and lights up.\", \" She continues sitting and smoking while looking at the camera.\"]}, \"v_44r5SAczrOg\": {\"duration\": 53.17, \"timestamps\": [[0, 49.72], [49.98, 53.17]], \"sentences\": [\"A person is solving a cube puzzle spinning the pieces to match the colors.\", \" When, the person match all the color, points the table and puts the cube puzzle on it.\"]}, \"v_KpOSIph2hHw\": {\"duration\": 62.69, \"timestamps\": [[0, 3.76], [3.76, 10.97], [11.28, 58.93], [23.82, 26.64], [30.09, 38.56], [47.33, 51.41], [58.93, 62.69]], \"sentences\": [\"We see a GoPro opening screen.\", \" We see a lady walking with a raft into a river.\", \" We see people riding rafts in the river.\", \" We see a mans's legs and the lady rides past.\", \" We see the lady handing a beverage in a can to the cameraman.\", \" The cameraman goes under a branch that is across the water.\", \" We then see the GoPro ending scene.\"]}, \"v_fHEUdQY1cdc\": {\"duration\": 176.15, \"timestamps\": [[0, 29.06], [29.06, 117.14], [117.14, 176.15]], \"sentences\": [\"Several people are seen running down the road around a bull with some holding sticks in their hands.\", \" The people crowd around the bull waving sticks and follow the bull around as he gets angry.\", \" Another bull is shown and the two fight while the people stand and cheer on the sides.\"]}, \"v_QlCA9f1WD84\": {\"duration\": 37.01, \"timestamps\": [[0, 30.91], [8.51, 31.09], [31.65, 36.64]], \"sentences\": [\"A painter applies plaster to a wall using a wide flat edge tool.\", \" The man moves electrical wire handing on the while to plaster around it.\", \" Other rooms of the house are seen in different stages of completeness.\"]}, \"v_2yjRePOzYq4\": {\"duration\": 44.77, \"timestamps\": [[0, 11.42], [11.64, 44.77]], \"sentences\": [\" A man skips on a truck signed with white lines, when he arrives to the third line jumps high and lands in the sandbox.\", \" The playback of a man performing long jump is show several times.\"]}, \"v_UF2v4emX7rc\": {\"duration\": 69.28, \"timestamps\": [[0, 5.2], [6.24, 48.5], [49.53, 69.28]], \"sentences\": [\"A group of men in masks are gathered around targets.\", \" They are holding paint guns as they run across the field.\", \" They hide behind obstacles, shooting at each other.\"]}, \"v_nKnsvy7-wAI\": {\"duration\": 129.06, \"timestamps\": [[0.65, 40.01], [32.91, 92.28], [81.95, 123.89]], \"sentences\": [\"A man is seen running down the street holding a box and speaking to another.\", \" The man then plays a game with a small girl and bows after each game.\", \" The two continue to play with the man laughing at the camera and him giving her a kiss in the end.\"]}, \"v_8vcO5DRxP6c\": {\"duration\": 203.21, \"timestamps\": [[17.27, 40.64], [61.98, 97.54], [97.54, 99.57], [118.88, 129.04], [148.34, 159.52]], \"sentences\": [\"A man picks up a ball and puts it behind his neck and throws it onto the field.\", \" Another man in a blue shirt picks up a ball and puts it behind his ear and throws it onto the field.\", \" People measure the distance on the field.\", \" The man puts on a white t shirt and puts his arms in the air.\", \" Another man launches a ball onto the field.\"]}, \"v_YZJghuPmff8\": {\"duration\": 150.07, \"timestamps\": [[0, 8.25], [10.5, 21.01], [22.51, 28.51], [28.51, 56.28], [56.28, 150.07]], \"sentences\": [\"A woman holds the back section of a girls hair while she gets ready to style it.\", \" The woman uses a single pick comb to separate strands of hair.\", \" The woman clips back sections of hair.\", \" The woman pulls on strands of hairs to get them straightened out.\", \"  The woman braids them the strands of hair together.\"]}, \"v_ol4ScGsyhbI\": {\"duration\": 222.31, \"timestamps\": [[0, 67.8], [75.58, 184.52], [190.07, 222.31]], \"sentences\": [\"An image is shown of a man posing with trophies and flexing his biceps.\", \" The images cut to videos, as he wins multiple arm wrestling matches and trophies.\", \"In the final scenes, a vast audience talks as they watch him win yet again.\"]}, \"v_hMUoeOFmquI\": {\"duration\": 107.9, \"timestamps\": [[0, 23.2], [23.2, 100.35], [100.35, 107.9]], \"sentences\": [\"A news segment begins and black and white picture of a smiling girl appears on the screen and the banner on the screen says \\\"HENRICO TEEN DIES AFTER RACE FATHER RECOUNTS DAUGHTER'S FINAL MOMENTS\\\".\", \" The newscaster appears with her parents talking about the girl while clips of the race play, and still shot pictures of the girl appear on the camera.\", \"When the pictures and video clips of the interview and race are over, the newscaster is speaking alone back at the news station.\"]}, \"v_i1llwxnI_Vo\": {\"duration\": 191.89, \"timestamps\": [[23.99, 42.22], [42.22, 84.43], [84.43, 117.05], [117.05, 140.08], [140.08, 167.9], [167.9, 183.25]], \"sentences\": [\"There are several people gathered on the street where live music is playing.\", \" There are couples dancing together to the music doing the Salsa style of dance.\", \" There are many restaurants and stores in that town square where people are gathered to see the couples dance.\", \" Some of the bystanders are video taping the dancers.\", \" The couples continue to dance till the music ends.\", \" One guy kisses his girlfriend on the cheek after the dance is over.\"]}, \"v_8eDJXDetgGE\": {\"duration\": 221.61, \"timestamps\": [[0, 68.7], [55.4, 170.64], [125.21, 218.29]], \"sentences\": [\"A man is seen holding a stick up and leads into clips of men playing field hockey.\", \" Men are seen running up and down a field chasing after a ball and scoring a goal.\", \" Several clips are shown of people playing this game as well as celebrating with team mates.\"]}, \"v_W3fKTlm1BPs\": {\"duration\": 236.66, \"timestamps\": [[5.92, 114.78], [91.11, 230.74]], \"sentences\": [\"An intro leads into a camera following around a lacrosse match and pausing to show off players movements.\", \" The game continues on as the people play and run around chasing a ball.\"]}, \"v_j-qAgWm_Ylw\": {\"duration\": 185.9, \"timestamps\": [[0, 19.52], [15.8, 185.9], [59.49, 145.93]], \"sentences\": [\"The man in stripes shirt ran to the narrow path and hopped and jumped on the sandy ground.\", \" The men are jumped one by one on the sandy ground while a man and woman are holding a rake and smoothen the ground.\", \" Two people are holding a tape measure and measure the jump.\"]}, \"v_grroBKRxAMY\": {\"duration\": 93.27000000000001, \"timestamps\": [[0, 6.06], [6.99, 16.79], [17.25, 25.18], [40.1, 53.63], [53.16, 56.89], [59.69, 76.01]], \"sentences\": [\"Words are shown on the screen.\", \" A man is talking while standing outside in front of a hill.\", \" The man is holding a shovel standing in front of a small tree.\", \" The man continues talking and then shovels out some weeds and dirt around the tree.\", \" He picks up rocks from around the tree.\", \" There is a white bucket in front of him of bark that he puts around the tree.\"]}, \"v_v_UmAH95xls\": {\"duration\": 117.05, \"timestamps\": [[0, 23.41], [25.17, 81.35], [82.52, 117.05]], \"sentences\": [\"Two girls are sitting on the porch of a house while shaving their legs.\", \" A boy walks out and looks before walking away.\", \"The girls continue soaping up and shaving.\"]}, \"v_YEZrwxz0Ysk\": {\"duration\": 132.11, \"timestamps\": [[0, 18.5], [20.48, 111.63], [112.96, 132.11]], \"sentences\": [\"A shot glass is shown, filled with three colors of liquid.\", \" Several bottles of different colored alcohols are shown.\", \" The liquids are poured one at a time into the glasses, forming the tricolored drink.\"]}, \"v_Ed9xVend710\": {\"duration\": 237.47, \"timestamps\": [[0, 26.12], [27.31, 70.05], [70.05, 136.55], [135.36, 172.17], [172.17, 219.66], [219.66, 237.47]], \"sentences\": [\"A still shot of a man on water skis is shown.\", \" It then jumps to the same man water skiing very intently.\", \" He falls a few times and does his best to stay upright.\", \" The video then shows other people trying their best but falling each time.\", \" The video continues to show people falling again and again.\", \" At the end, credits are shown as to who filmed and starred in the video.\"]}, \"v_o9gsbkp135s\": {\"duration\": 27.38, \"timestamps\": [[0, 13.55], [13.55, 26.97]], \"sentences\": [\"A person is shown outside brushing snow off of a car with lights on.\", \" The man walks around the car pushing more of the snow off and shutting the door.\"]}, \"v_5MjAgMF_FzA\": {\"duration\": 109.16, \"timestamps\": [[0, 9.82], [10.37, 22.92], [23.47, 27.29], [26.74, 61.67], [61.67, 77.5], [77.5, 98.79], [99.33, 109.16]], \"sentences\": [\"A black screen with a white title appears.\", \" A cook is in front of a professional stove putting seasoning into a metal pan and warming a pan over a gas lit blue flame.\", \" The cook now scoops a large portion of mixed egg from a large metal pot into the small metal pan.\", \" He begins to whisk the egg mixture with two wooden sticks, holding the pan over the burner.\", \" When the egg is almost fully cooked, the man begins to shape the egg inside of the pan with the wooden sticks in the shape of an omelet.\", \" He rolls the omelet back and forth in the pan.\", \" End black screen and a blue word.\"]}, \"v_feio1hW6Dy0\": {\"duration\": 112.22, \"timestamps\": [[0, 42.08], [34.79, 112.22]], \"sentences\": [\"A close up of ballet shoes are shown followed by a woman putting them on and moving around in a bedroom.\", \" She moves her arms and feet in the point shoes  and whips her hair all around the room.\"]}, \"v_3VzXH3o88mw\": {\"duration\": 129.71, \"timestamps\": [[0, 56.42], [53.83, 99.23], [95.98, 129.71]], \"sentences\": [\"A person is seen mixing various ingredients into a blender as well as rolling rough up into a ball and speaking to the camera.\", \" The man speaks to other chefs and instructs them on how to roll a ball of rough.\", \" He then puts the dough in a machine to make spaghetti and then puts them in a plate to present.\"]}, \"v_HNBiW2Nq318\": {\"duration\": 40.03, \"timestamps\": [[1.6, 22.62], [23.02, 39.23]], \"sentences\": [\"A person is seen bending forward on a gymnastics beam while moving his hands up to keep balance.\", \" The man then attempts a flip but lands on his stomach and falls off, walking away in pain and his jump shown again in slow motion.\"]}, \"v_e0a1lp4ZWu8\": {\"duration\": 89.86, \"timestamps\": [[0, 89.86], [28.31, 29.65], [86.27, 89.86]], \"sentences\": [\"People are riding on horses in a field.\", \" A person in a red shirt is standing next to the horse.\", \" A man in a black hat is next to the horse.\"]}, \"v_JKFxKhCQPUs\": {\"duration\": 45.91, \"timestamps\": [[8.03, 20.89], [20.89, 30.99], [30.99, 40.86], [40.86, 45.91]], \"sentences\": [\"A male gymnast wearing a blue leotard is doing gymnastics on a horse bar.\", \" He is performing in an indoor stadium full of spectators.\", \" He continues to excel in doing his moves steadily on the horse bar.\", \" After he's done, he gets off the bar and one of the coaches hugs him as the crowd cheers for him.\"]}, \"v__ekWWP0dQZM\": {\"duration\": 145.87, \"timestamps\": [[0, 13.13], [18.96, 132.74], [51.78, 98.46], [80.96, 118.88], [121.07, 134.2]], \"sentences\": [\"A ballerina is shown in class warming up her feet and walking away crying.\", \" Various actors talk to the camera about filming a movie about ballet and the moves they learned.\", \" The ballerinas are moving around the set while the camera is rolling.\", \" The actors continue talking about tricks and what they learned.\", \" A man plays the violin while the final scene is filmed and everyone is dancing.\"]}, \"v_pjF6uBZHVRE\": {\"duration\": 192.63, \"timestamps\": [[0, 11.56], [12.52, 78.98], [85.72, 88.61], [91.5, 97.28], [99.21, 100.17], [103.06, 108.84], [111.73, 174.33], [180.11, 192.63]], \"sentences\": [\"The starting list for the men's pole vault event is displayed over the background of the competition area.\", \" Multiple vaulters attempt to vault, one after another, some successfully and some not.\", \" The camera cuts to a man wiping his face with a towel, then a quick shot of the last vault attempt, then a quick shot of another man walking away from the camera.\", \" Another man in white and blue vaults and is successful.\", \" The camera cuts to four other competitors watching.\", \" The camera cuts to a man in white and blue celebrating while holding a flag against his black.\", \" The man who celebrated is being interviewed.\", \" A different competitor, wearing red, is being interviewed.\"]}, \"v_X5Bxa0OvdwI\": {\"duration\": 213.46, \"timestamps\": [[0, 52.3], [52.3, 148.36], [147.29, 213.46]], \"sentences\": [\"Various items are shown on a floor and leads into a woman holding up the products and speaking to the camera.\", \" She holds up her shoe and lights a match over the polish.\", \" She then takes a rag and runs over the boot with the polish in small circles.\"]}, \"v_kdRcWkrZRZo\": {\"duration\": 179.05, \"timestamps\": [[0, 5.37], [8.06, 8.95], [8.95, 18.8], [18.8, 34.02], [34.02, 44.76], [44.76, 46.55], [47.45, 52.82], [52.82, 76.99], [76.99, 81.47], [80.57, 88.63], [89.53, 111.91], [111.01, 119.07], [117.28, 126.23], [128.92, 130.71], [131.6, 143.24], [145.93, 162.04], [163.83, 179.05]], \"sentences\": [\"A still picture of an individual's back is shown.\", \" Some sort of item is shown in close up.\", \" A man and a woman talk to the camera in a newscast setting.\", \" Scenes of summer beach goers are shown in a news report context.\", \" A man is shown walking near a boat with dogs.\", \" The man is shown near a grill.\", \" A quick cut of a the item from before is shown up close.\", \" The man is interviewed while seated, with a quick cut of him walking.\", \" The man removes his shirt.\", \" More close up scenes of the item are shown.\", \" Still images and video of skin damage are shown.\", \" The man talks in an indoor environment.\", \" Another still image of the item is shown.\", \" The man is interviewed seated again.\", \" A still screen of text is shown.\", \" A different man talks to the camera while a logo is shown beside him.\", \" A webpage about the first man is shown.\"]}, \"v_1VmqefkNV_8\": {\"duration\": 171.86, \"timestamps\": [[0, 171.86], [12.03, 171.86], [117.73, 171.86]], \"sentences\": [\"A man is dancing on a stage in a yellow shirt.\", \" People in the audience watching him are dancing with him.\", \" A man walks in front of the crowd.\"]}, \"v_MlGh0geYhSg\": {\"duration\": 61.93, \"timestamps\": [[0, 1.86], [2.48, 4.95], [6.19, 9.6], [14.86, 18.27], [18.89, 22.29], [36.54, 41.8], [42.42, 44.9], [46.76, 52.02]], \"sentences\": [\"A horse kicks a man in a red shirt.\", \" A girl in a grey shirt gets thrown off a horse.\", \" A man riding a  horse gets bucked off.\", \" A horse tips over backward with a a person on it.\", \" A man is riding on a horse and flies off.\", \" A white horse misses a jump and the person falls off.\", \" A man gets hit by a rope while chasing a calf.\", \" A horse gets his head stuck in a garbage can.\"]}, \"v_dSsMVoPLQOk\": {\"duration\": 101.28999999999999, \"timestamps\": [[2.53, 43.05], [36.97, 78.5], [67.36, 98.75]], \"sentences\": [\"A woman is seen shaving down the fur of a dog while the camera shows many dogs sitting in crates.\", \" A woman is seen speaking to the camera and showing off several dogs with long hair and afterwards.\", \" The woman continues shaving down the sides of the dog while stopping to speak to the camera and showing off the shaved dog.\"]}, \"v_eZ_qerXno64\": {\"duration\": 67.11, \"timestamps\": [[0, 37.91], [40.6, 67.11]], \"sentences\": [\"A little girl is shown playing table tennis, hitting the ball extremely quickly back and forth over the net.\", \" Some of the balls fly past her, but she continues hitting new balls without pausing.\"]}, \"v_ZT63nK4lexg\": {\"duration\": 93.18, \"timestamps\": [[0, 31.22], [32.15, 44.26], [45.19, 78.74], [78.27, 83.86], [84.33, 93.18]], \"sentences\": [\"A man walks over and chalks his hands.\", \" The man walks the bars, stretches and stands there.\", \" The man mounts the bars and begins to spin.\", \" The man flips and dismounts.\", \" The man walks away from the bars.\"]}, \"v_ioHDdIBu2go\": {\"duration\": 157.18, \"timestamps\": [[0, 24.36], [25.15, 45.58], [45.58, 128.1], [128.88, 157.18]], \"sentences\": [\"A woman talks, then she holds the tube of a vacuum and points the nozzle.\", \" The woman vacuum dirt on a carpet, then she extends the tube while explaining.\", \" Then, the woman puts a small nozzle and vacuum a couch,  then she explains  how to remove the dust container.\", \"  The woman continues explaining next to the vacuum.\"]}, \"v_mqUJEX9qk8E\": {\"duration\": 109.65, \"timestamps\": [[0, 5.48], [5.48, 14.25], [14.25, 109.65]], \"sentences\": [\"two men are riding horses in a dusty field in mountains.\", \" men and a woman wearing Kufiyyas on their heads are standing on dessert next to horses.\", \" dessert with mountains in the distance is shown and the men are standing next to a kids ride the horses adn are going in the desert.\"]}, \"v_eGW0rygfcrg\": {\"duration\": 92.22999999999999, \"timestamps\": [[0, 1.84], [2.77, 92.23], [68.71, 73.32], [74.25, 82.08], [88.54, 92.23]], \"sentences\": [\"A man and a woman are standing in a bar.\", \" We see the man and a woman ballroom dancing.\", \" The lady kicks her leg out behind and in front of her.\", \" We zoom in on the legs of the dancers.\", \" The camera goes blurry and the scene ends.\"]}, \"v_kkLRLb8TGwI\": {\"duration\": 126.87, \"timestamps\": [[0, 19.67], [19.67, 47.58], [47.58, 70.42], [70.42, 111.01], [111.65, 126.87]], \"sentences\": [\"A bunch of females are shown playing a water polo match in an indoor pool.\", \" it appears to be a tournament as they are highly competitive and going all out.\", \" Various shots of the action are shown in normal motion and in slow motion.\", \" The match appears to be getting very tense as both teams are trying their best to score and both goalies put up great defense.\", \"  A young girl who played in the match is then shown with her entire family as they take a picture.\"]}, \"v_MsBqlgdzeag\": {\"duration\": 56.05, \"timestamps\": [[0, 8.69], [8.97, 13.45], [13.73, 17.1], [17.38, 27.75], [28.03, 36.43], [36.71, 56.05]], \"sentences\": [\"A man approaches a trunk standing by some dirt.\", \" He grabs an ax sitting on the dirt.\", \" He takes the ax and cuts the trunk in half.\", \" The trunk falls and he picks up one of the halves.\", \" He takes the ax to the trunk and cuts it in half.\", \" He stands the other trunk and cuts it in half.\"]}, \"v_mb1LoOTM_NI\": {\"duration\": 60.23, \"timestamps\": [[0, 60.23], [6.63, 33.73], [30.12, 49.69], [47.58, 60.23]], \"sentences\": [\"Two men are standing at the table in arm wrestling  position.\", \" A woman is positioning the men, holding their hands.\", \" One man without glasses is bending on the side to with his weight.\", \" The man with glass put down the other man's hand and won.\"]}, \"v_HVfr9FnEj-Q\": {\"duration\": 188.71, \"timestamps\": [[0, 4.72], [4.72, 187.77], [56.61, 65.1], [78.31, 83.03], [92.47, 98.13], [144.36, 151.91], [155.68, 184.93], [187.77, 188.71]], \"sentences\": [\"Ladies are standing in a workout room.\", \" The ladies are belly dancing.\", \" The ladies dip down and toss their hair backwards.\", \" They swing their dipped bodies.\", \" The ladies dip and bend backwards.\", \" The ladies throw their hair back and forth.\", \" 2:43 A man is in the room in the back and bends down.\", \" The ladies finish dancing and take a bow.\"]}, \"v_yN3e-giBxns\": {\"duration\": 35.2, \"timestamps\": [[0, 8.1], [8.1, 11.44], [11.44, 18.13], [18.13, 35.2]], \"sentences\": [\"It's a nighttime outside at a horse ranch and a lot of people are standing around.\", \" Suddenly a horse with a man riding on him quickly starts running and there's a calf roped to the horse who is running in front of them.\", \" The man lassos the calf, jumps off the horse, throws the calf on its side and quickly ties it up.\", \"The man gets up, walks back to his horse, jumps back on and the horse slowly begins to walk as the calf is trying to stand up.\"]}, \"v_uE_8WuNO7cA\": {\"duration\": 167.9, \"timestamps\": [[0, 5.88], [5.88, 18.47], [18.47, 164.55], [18.47, 72.2], [72.2, 130.97], [136.84, 152.79], [151.95, 167.9]], \"sentences\": [\"We see an opening screen with a moon.\", \" A lady appears holding a pumpkin.\", \" We see the lady in the lower left hand of the screen talking.\", \" We see a person open and clean a pumpkin.\", \" We see the person carve a drawing on a pumpkin.\", \" We see a person draw on the pumpkin with a black marker.\", \" We see the finished jack o lantern with a candle in it.\"]}, \"v_IoOkg-_S4cY\": {\"duration\": 78.0, \"timestamps\": [[0, 78], [0, 3.9], [6.63, 74.49], [75.66, 78]], \"sentences\": [\"A gymnastic girl is performing balance beam.\", \" The girl is getting ready to get on the beam from a jump pad.\", \" The girl performs flawlessly on the beam.\", \" The girl lands on floor perfectly with a big smile.\"]}, \"v_UGd9cVzHQOU\": {\"duration\": 34.13, \"timestamps\": [[3.07, 31.4], [17.58, 31.4]], \"sentences\": [\"A man is seen using a machine across a long stretch of leaves while moving up and down the lawn.\", \" He continues pushing the leaves around the area and moving up and down the lawn.\"]}, \"v_YdenUU3g0XY\": {\"duration\": 68.03999999999999, \"timestamps\": [[0, 17.35], [17.69, 35.38], [46.6, 62.25]], \"sentences\": [\"A man introduces the topic of the video, which is how to do a smash shot in Badminton.\", \" He slowly demonstrates the necessary approach and form of the shot.\", \" We then see a player perform the shot multiple times as another person sets him up.\"]}, \"v_E4ItlgO16LI\": {\"duration\": 85.53999999999999, \"timestamps\": [[0, 20.1], [4.28, 17.96], [19.67, 31.22], [31.22, 77.42], [76.99, 79.55], [80.41, 85.54]], \"sentences\": [\"A male gymnast in a blue outfit applies chalk dust to his hands.\", \" An infographic appears, showing his name to be Danell Leyva from the USA.\", \" He steps up to a parallel bars and waves.\", \" He performs his routine, executing many flips and handstands.\", \" He dismounts badly, falling over and landing on his back beside the mat.\", \" He steps back onto the mat and briefly raises his arms.\"]}, \"v_BsceC-igcTY\": {\"duration\": 124.74, \"timestamps\": [[0, 17.46], [17.46, 100.41], [102.29, 124.74]], \"sentences\": [\"Hockey players walk out onto the ice, greeting each other.\", \" They play the game, trying to get the puck past their opponents into the goal.\", \" They roll around on the ice slowly.\"]}, \"v_V1NtrnPz3sA\": {\"duration\": 79.13, \"timestamps\": [[0, 9.1], [9.5, 20.18], [20.97, 56.18], [58.56, 77.95]], \"sentences\": [\"An athletic woman is stretching with a ball and swinging her legs back and fourth.\", \" She throws the ball and again prepares for another throw.\", \" She spins around throwing the ball yet again with a third throw followed shortly after.\", \" She performs one last throw and spins herself around once again.\"]}, \"v_2kx--bbqXHg\": {\"duration\": 225.28, \"timestamps\": [[0, 225.28], [51.81, 107.01], [183.6, 184.73]], \"sentences\": [\"Cotton balls are being set on fire and put out in various ways.\", \"  An ax is used to put out the fire.\", \"  A piece of wood is used to put out the fire.\"]}, \"v_lHy_OZ8GygM\": {\"duration\": 204.62, \"timestamps\": [[0, 26.6], [30.69, 87.98], [87.98, 99.24], [101.28, 157.55], [157.55, 204.62]], \"sentences\": [\"A woman wash the head of a man and cuts his hair, then the woman stands next two man an touch the head of the young man.\", \" The woman cuts the hair of a young man using first a machine, and then a comb and scissors.\", \" Then, the woman dry the hair with a dryer and brush the head.\", \" After, the woman takes cream on her hands and comb the head of the man with her fingers to gives form to the hair.\", \" Next, the woman explains the hairstyle.\"]}, \"v_LvRP3c5n3P8\": {\"duration\": 230.76, \"timestamps\": [[21.92, 72.69], [75, 105], [105, 139.61], [144.23, 189.22]], \"sentences\": [\"People walk in the hallways of a hospital, then a doctor reviews the injured leg of a man leaving green sparkles on the leg and a machine.\", \" Then, the man makes a call and leaves green sparkles on the phone that it is passes to the hand of a nurse that grabs the phone.\", \" After the nurse enters to visit a a sick man as well two doctors who carry green sparkles on their hands that leaves on the sick man.\", \" A person wash hand, use hand sanitizes and cleans an stethoscope to get rid off microbes.\"]}, \"v_NbdAUGbrWrE\": {\"duration\": 130.82, \"timestamps\": [[0, 128.2], [82.42, 98.77], [128.86, 130.82]], \"sentences\": [\"A teenage girl brushes her hair.\", \" The girl looks down as if she is confused.\", \" The girl talks to the camera.\"]}, \"v_VM-ldOw7e4Y\": {\"duration\": 222.82, \"timestamps\": [[0, 31.19], [31.19, 86.9], [86.9, 164.89], [164.89, 183.83], [172.68, 222.82]], \"sentences\": [\"An athlete prepares to perform long jump in a stadium full of people, then a white male runs and jumps high to land in the sand.\", \" Also, three black males runs fast and jump high to perform long jump.\", \" Also, a white male perform long jump, as well two black men do long jumps.\", \" A score board shows and score, while a person stands walk away, and takes off his sweet sweater.\", \" A black male jumps high happy a runs celebrating his triumph.\"]}, \"v_8HxMXHc8Nr0\": {\"duration\": 182.81, \"timestamps\": [[0, 3.66], [4.57, 106.03], [109.69, 131.62], [130.71, 179.15]], \"sentences\": [\"A screen appears with instructions how to attach an InStep bike trailer.\", \" A man is showing how to attach an InStep bike trailer on the back wheel of a bike.\", \" Then, the man continues to explain the process sitting in dining room.\", \" Two toddlers are sitting in a bike trailer, while the man attach the safety belts.\"]}, \"v_ZN7C8n_6uH8\": {\"duration\": 110.6, \"timestamps\": [[0, 46.45], [32.07, 110.6]], \"sentences\": [\"A black and white filter pans over a soccer match going on in an indoor field.\", \" Color is then shown as more people play soccer back and fourth shown in several shots.\"]}, \"v_pZzTMUJG9Rk\": {\"duration\": 214.21, \"timestamps\": [[4.28, 201.35], [10.71, 37.49], [31.06, 64.26], [59.98, 103.89], [104.96, 214.2]], \"sentences\": [\"A man is playing soccer with another across a field.\", \" He performs a quick turn around move with the other following close behind.\", \" The same clip is replayed over and over at slower speeds to better understand the trick.\", \" Another trick is performed and later shown in slow motion.\", \" Two more tricks are demonstrated by the duo and finally showed at a slowed down pace.\"]}, \"v_KSP62q7tM68\": {\"duration\": 80.55, \"timestamps\": [[0, 14.9], [18.93, 56.39], [53.97, 78.54]], \"sentences\": [\"A person is seen riding waves on the water as well as people partying at a house.\", \" A Dj is shown playing music as well as people dancing around and surfers surfing.\", \" More shots are shown of people surfing and having fun at the house.\"]}, \"v_n3wYcW4mnrs\": {\"duration\": 60.44, \"timestamps\": [[0.6, 2.72], [3.02, 60.44], [19.34, 22.06], [33.24, 34.75], [34.45, 38.38], [38.99, 56.21]], \"sentences\": [\"We see an opening screen on white.\", \" We then see people on tube playing in a river.\", \" A boy in sunglasses floats past the camera.\", \" A boy throws a peace sign to the camera.\", \" People go over a waterfall in their rafts.\", \" We see a bunch of people jump into the water.\"]}, \"v_aOzMA2rpWEw\": {\"duration\": 536.87, \"timestamps\": [[0, 42.95], [42.95, 171.8], [177.17, 193.27], [193.27, 222.8], [244.28, 536.87]], \"sentences\": [\"A man and a woman are standing outside in the snow talking.\", \" The man is cleaning the snow off of the car.\", \" The girl wears a fur coat and talks to the camera.\", \" The man continues brushing the snow off of the car.\", \" They are sitting inside the car talking.\"]}, \"v_f_mbX87xabo\": {\"duration\": 19.11, \"timestamps\": [[0, 17.01], [18.25, 19.11]], \"sentences\": [\"A child plays a chrome flute inside of home.\", \" The girl finishes the song and lowers the flute.\"]}, \"v_0j9TxzwRr6E\": {\"duration\": 176.87, \"timestamps\": [[0, 120.27], [44.22, 45.1], [97.28, 116.73], [118.5, 125.58], [133.53, 172.45], [172.45, 176.87]], \"sentences\": [\"Two men plays foosball in an arena with two referees standing near by watching the fame.\", \"  We see the bleacher an spectators.\", \" A point is scored and see people clapping and a replay and a title screen.\", \" The man in gray backs up and wipes sweat.\", \" We see the man in black speaking with the people behind him before the men return to the game.\", \" We see the ending title screen.\"]}, \"v_etfSrbmOvUE\": {\"duration\": 188.66, \"timestamps\": [[0, 166.97], [83.01, 95.27], [114.14, 168.85], [174.51, 188.66]], \"sentences\": [\"Two people climb a rock climbing wall at night in front of a narrow pool of water surrounding by a crowd of onlookers.\", \"  The two people climb slowly up the wall, when over midway up, the person on the left falls from the wall and into the water below.\", \"  Another race up the wall begins in which the person on the right falls off and the person on the left climbs to the top of the wall and then jumps off the wall into the water.\", \"  In the same setting, but now during the daytime, a lone person wearing skis catapults through the air past the rock climbing wall and lands in the water below.\"]}, \"v_twGoVVPO08Q\": {\"duration\": 191.61, \"timestamps\": [[6.71, 79.52], [65.15, 188.74]], \"sentences\": [\"An audience watching pans out into a large track and athletes running into a pit.\", \" Several people are shown running down the track while the audience claps and people speak to the camera.\"]}, \"v_PQ-qpoPeqM0\": {\"duration\": 191.12, \"timestamps\": [[0, 72.63], [72.63, 160.54], [154.81, 191.12]], \"sentences\": [\"A young man pulls a wheel out and shows the proper structure of a wheel.\", \" He checks the current pressure for the tire and begins pumping air into the tire.\", \" He shows the difference between good tread and bad tread as well as when to know when to replace your tires.\"]}, \"v_GVmGXTEm46s\": {\"duration\": 77.46000000000001, \"timestamps\": [[0.77, 41.44], [29.05, 75.14]], \"sentences\": [\"A close up of a sink is shown followed by a person rubbing it down with a rag from various angles.\", \" The sink is shown again by itself followed by water dripping down.\"]}, \"v_Qx4YLntwZ5s\": {\"duration\": 225.2, \"timestamps\": [[0, 14.64], [14.64, 20.27], [21.39, 63.06], [64.18, 200.43], [70.94, 97.96], [101.34, 124.99], [166.65, 200.43], [202.68, 225.2]], \"sentences\": [\"We see a lady taking in a room and touching her hair.\", \" There is a title screen.\", \" The lady shows us the products and tools she uses on her hair.\", \" We see the lady doing her hair.\", \" The lady sections her hair and adds product.\", \" The lady twists her hair around her finger.\", \" The lady begin blow drys her hair.\", \" We see images of the ladies finished hair.\"]}, \"v_uhAIe9rcjSo\": {\"duration\": 76.85, \"timestamps\": [[0, 4.61], [7.3, 12.3], [21.13, 76.85]], \"sentences\": [\"A close up is seen of a metal double sink.\", \" Then we see two bowls with powder and a cut lime.\", \" A woman uses the lime dipped in powder to scrub and then rinse the sink before drying it off, showing off a perfecting clean sink.\"]}, \"v_D84XQFQ4tsU\": {\"duration\": 76.07, \"timestamps\": [[0, 9.51], [11.03, 33.47], [36.51, 41.08], [46.4, 69.98]], \"sentences\": [\"A body of water is shown.\", \" A person takes a lid off of a pot.\", \" They show a camp site with a tent.\", \" They put a cloth into the bucket.\"]}, \"v_hJn5L1nrkL4\": {\"duration\": 70.73, \"timestamps\": [[2.83, 5.3], [5.3, 6.37], [6.37, 10.61], [10.61, 16.62], [16.62, 22.63], [22.63, 48.8], [48.8, 57.29], [57.29, 60.83], [60.83, 67.19], [67.19, 70.73]], \"sentences\": [\"There are two men playing table tennis in an indoor stadium.\", \" One of the players is wearing blue and the other player is in a red shirt.\", \" There is a person dressed in a black shirt seated near the players.\", \" There are several spectators seated in the stadium.\", \" They continue playing a rally for some time.\", \" The player in the red shirt misses the ball and gives his opponent a winning point.\", \" The player in blue cheers loudly after his winning point and breaks into a dance.\", \" He continues dancing and goes towards his opponent to mock him.\", \" He then goes back to the table tennis table.\", \" The man dressed on black shows the score.\"]}, \"v_JTGS1YulUQw\": {\"duration\": 76.46000000000001, \"timestamps\": [[0, 25.23], [21.41, 56.2], [52.76, 74.93]], \"sentences\": [\"A close up of booklets are shown with a person flipping them open and reading.\", \" The woman marks a name down and peels it off to put on a sock.\", \" The woman then lays an iron over the name and peels off the paper to show how to properly label a gift.\"]}, \"v_cEHyZzBsWnw\": {\"duration\": 124.01, \"timestamps\": [[0, 17.36], [26.04, 87.43], [90.53, 124.01]], \"sentences\": [\"A female weightlifter lifts a barbell with her legs.\", \" She gets it to her stomach, then pulls.\", \" She goes up and down, working her abdominals.\"]}, \"v_abjQ1EyqJuw\": {\"duration\": 37.82, \"timestamps\": [[0.57, 13.99], [6.43, 33.28], [31.95, 37.82]], \"sentences\": [\"As the camera walks, it was showing the well maintained hedges, at the center of two hedges is a narrow path leading to a wider field surrounded by more hedges.\", \" On one side of the hedge is a man in black shirt, he is standing on a ladder, he is trimming the hedges.\", \" Near the man is an empty bench, on the side are more well trimmed hedges.\"]}, \"v_Fz1NCLAB8bA\": {\"duration\": 122.56, \"timestamps\": [[0, 26.35], [26.35, 40.44], [40.44, 65.57], [65.57, 82.11], [82.72, 99.27], [98.04, 122.56]], \"sentences\": [\"Five products are aligned on a table,illustrating the products needed to shave.\", \"A young white male walks into the bathroom,turns on the water and begins to rub his beard.\", \"A series of different forms of the product is shown and then the man prepares his skin with oil and puts it around his beard.\", \"Next comes the brush and he adds some white cream to it to lather up his hair.\", \"Finally,it is time to shave and the beard is taken completely down.\", \"For the finishing touches,lotion is added and the man is now dressed in a suit ready to go.\"]}, \"v_UMS4-qifK9A\": {\"duration\": 53.8, \"timestamps\": [[0, 2.96], [2.96, 51.11], [52.46, 53.8]], \"sentences\": [\"A man sits down in front of a bed.\", \" He starts to play an electric guitar.\", \" He finishes playing and stands up.\"]}, \"v_ZNUkzdw2EeI\": {\"duration\": 139.1, \"timestamps\": [[0, 47.29], [47.99, 111.98], [113.37, 139.1]], \"sentences\": [\"An athletic man is seen stepping up to a circle and throwing a discuss off into the distance.\", \" He then runs excitedly while cameras follow him and shown other athletes spinning the disk.\", \" More shots are shown of people celebrating and the athlete runs into the stands.\"]}, \"v_oEd7WT4mVSE\": {\"duration\": 65.97, \"timestamps\": [[0, 11.54], [12.2, 26.06], [27.05, 47.5], [47.17, 55.74], [56.07, 65.97]], \"sentences\": [\"A woman is sitting at a table using a hookah while another woman makes silly faces and gestures behind her.\", \" They speak animatedly with the person behind the camera.\", \" There is a close up of the items on the table in front of them.\", \" The woman with the camera turns it to face herself before aiming it back toward the other women.\", \" One of the women coughs as a cloud of smoke hits her in the face.\"]}, \"v_Lmne5ZF0McI\": {\"duration\": 45.88, \"timestamps\": [[0, 45.65], [0.23, 45.88], [0, 45.88]], \"sentences\": [\"man is jumping wearing stilts on a sidewalk.\", \" a calm green grassy field is behind the man wearinf stilts.\", \" man is wearing white sweater and stilts and is in a green grassy park.\"]}, \"v_tbOIyG1RCUI\": {\"duration\": 13.79, \"timestamps\": [[0, 12.83], [7.31, 13.59]], \"sentences\": [\"A blindfolded man wearing boxing gloves is seen hitting a punching bag while many watch him on the sides.\", \" He continues punching when a person on the roof pulls the bag up higher.\"]}, \"v_r82RY124wVY\": {\"duration\": 100.15, \"timestamps\": [[1.5, 4.01], [10.52, 16.52], [33.05, 97.64]], \"sentences\": [\"A woman is standing on a tennis court talking.\", \" She begins to play tennis on the court.\", \" She serves a tennis ball across the court several times.\"]}, \"v_9eqfQyr3J7k\": {\"duration\": 26.43, \"timestamps\": [[0, 7.4], [7.4, 18.63], [18.63, 26.43]], \"sentences\": [\"Several people are outside in a ski resort sitting on the tubes.\", \"After,the three individuals in the front,are pulled down the slope and they begin to slide down.\", \"Once they are off,the man who pushed him down walks away and more people begin to go down.\"]}, \"v_GQVqSLs2Ulg\": {\"duration\": 85.43, \"timestamps\": [[2.14, 41.43], [25.63, 81.58]], \"sentences\": [\"A man is seen holding a glass while speaking to the camera when another man walks in and begins painting the wall.\", \" The man continues to paint up and down the wall while the camera captures him and the other man walks away.\"]}, \"v_K2l7ops-tno\": {\"duration\": 109.57, \"timestamps\": [[0, 7.67], [14.24, 31.77], [35.61, 81.08], [82.72, 109.57]], \"sentences\": [\"A man is placing tiles on the floor.\", \" A woman appears, removing tiles from a box and talking about them.\", \" The woman kneels onto the ground, cutting and applying tiles.\", \" A man rolls a pressure roller over the finished floor before the woman returns, speaking about the finished product.\"]}, \"v_mB90PudOrnU\": {\"duration\": 27.38, \"timestamps\": [[0, 27.38], [20.26, 21.49]], \"sentences\": [\"A girl is giving a small dog a bath.\", \" She has an orange bottle in her hand.\"]}, \"v_g7IZWqeyM20\": {\"duration\": 117.89, \"timestamps\": [[0, 2.95], [2.95, 110.81], [110.81, 117.89]], \"sentences\": [\"A white intro screen appears with a red,white and black art swirl on the left side red and black words on the right that say \\\"England Squash&Racketball\\\" and the website in black at the bottom.\", \"A man appears with a racket and he's talking to the camera as he hits a racketball then various small clips play afterwards that include him hitting the racketball as well as various other people playing, too.\", \"The outro screen appears and it's exactly like the white intro screen.\"]}, \"v_T49ZxNX1DFM\": {\"duration\": 58.35, \"timestamps\": [[4.08, 43.76], [30.05, 43.76]], \"sentences\": [\"There are people throwing balls to each other in the pool.\", \" there are people swimming to the other side of the pool.\"]}, \"v_jUPbimyUndA\": {\"duration\": 19.9, \"timestamps\": [[0, 4.88], [0, 4.58], [4.58, 12.84], [12.93, 19.9]], \"sentences\": [\"woman is walking wearing a bikini and eating a chocolate is snowy day.\", \" people are in sidewalk watching the girl walks.\", \" woman is in a restaurant wearing a bikini and two aiter are watching her.\", \" woman walks in a airport eating a restaurant.\"]}, \"v_7lv1VOxIng4\": {\"duration\": 233.8, \"timestamps\": [[0, 233.8], [71.31, 88.84], [106.38, 149.63], [163.66, 173.01], [189.38, 224.45]], \"sentences\": [\"A little girl is putting makeup on her face.\", \" She puts lipstick on her lips.\", \" She puts mascara on her eyelashes.\", \" She sprays body spray on her shirt.\", \" She puts eye shadow on her eyes.\"]}, \"v_iE3I2ICIvHE\": {\"duration\": 100.68, \"timestamps\": [[0, 23.66], [17.12, 100.68]], \"sentences\": [\"A gymnast is seen standing ready before a beam and then jumping on to perform a routine.\", \" The girl then performs several flips and tricks on the beam, ending with her jumping off the side with her legs together and holding her arms up.\"]}, \"v_-AjZCBMb4qU\": {\"duration\": 116.7, \"timestamps\": [[0, 56.02], [58.94, 116.7]], \"sentences\": [\"A girl is seating in front of a table, playing an accordian.\", \" She stares at the camera as she plays the keyboard and pulls the accordian in and out.\"]}, \"v_RisNywzGXt8\": {\"duration\": 63.53, \"timestamps\": [[0, 4.45], [6.99, 8.89], [9.21, 61.62]], \"sentences\": [\"A lady pulls and fixes her outfit.\", \" The lady messes with her hair.\", \" The lady tries on shoes while standing and sitting.\"]}, \"v_IT9uvR9yjxI\": {\"duration\": 110.67, \"timestamps\": [[0, 39.29], [38.73, 72.49], [76.91, 109.01]], \"sentences\": [\"An intro is shown of maps and a house close up.\", \" Afterwards a close up of a roof is shown as well as logos.\", \" More pictures are shown of trucks parked as well as logos.\"]}, \"v_YRRcCaxIoR4\": {\"duration\": 97.57, \"timestamps\": [[0, 2.93], [2.93, 97.57]], \"sentences\": [\"Pole Vault Greats is on the screen.\", \"  There are several scenes of men and women pole vaulting.\"]}, \"v_F4eF_nO2UFs\": {\"duration\": 215.02, \"timestamps\": [[0, 6.45], [6.45, 207.49], [112.88, 131.16], [134.39, 172.01], [175.24, 206.42], [206.42, 208.57], [212.87, 215.02]], \"sentences\": [\"We see an opening title screen.\", \" Tools sit on a table and we see a person unpack a bike and assemble it.\", \" We see the man put a tire on the bike.\", \" A person tightens the holds on the handlebars.\", \" The man puts grease on the paddles and installs them before airing the tires.\", \" We then see the finished bike.\", \" The ending title screen is shown.\"]}, \"v_ux4iT6vQQb0\": {\"duration\": 73.14, \"timestamps\": [[0, 24.87], [24.87, 40.23], [40.23, 71.68]], \"sentences\": [\"People run motocross on a bumpy road in the wood.\", \" A person climbs a bump with a motorcycle.\", \" Also people rides motorcycles on an unpaved flat surface.\"]}, \"v_OtcJMIJTTx4\": {\"duration\": 8.08, \"timestamps\": [[0, 4.69], [4.77, 7.96], [0, 8.08]], \"sentences\": [\"A little girl stands on a diving board.\", \"Then the little girl jumps, flip and dives in the swimming pool.\", \" People are in the swimming pool.\"]}, \"v_WltsIClflnA\": {\"duration\": 68.87, \"timestamps\": [[0, 13.43], [13.43, 59.23], [60.26, 68.87]], \"sentences\": [\"kid is swinging on a playground.\", \" woman runs to the swings and sits.\", \" woman stands and foot up.\"]}, \"v_EOSvdsejPQQ\": {\"duration\": 143.8, \"timestamps\": [[7.91, 33.79], [33.07, 133.02], [133.74, 143.8]], \"sentences\": [\"A man is sitting on the stairs playing a harmonica.\", \" He stands up and continues playing it.\", \" Words come up on the screen.\"]}, \"v_JBTiD2-FcR0\": {\"duration\": 50.11, \"timestamps\": [[0, 7.02], [7.52, 11.78], [12.53, 22.3], [12.53, 32.32], [32.82, 50.11]], \"sentences\": [\"A closeup of a bag of cement mix is shown.\", \" One man adds water into a container while another watches.\", \" The first man pours the cement mix into the container.\", \" The second man uses a mixer on the container.\", \" one of the men applies the mixture to a wall.\"]}, \"v_Tovbyt_ZiIc\": {\"duration\": 203.45, \"timestamps\": [[0, 6.1], [6.1, 35.6], [35.6, 186.16], [186.16, 203.45]], \"sentences\": [\"Opening credits show the description of the video.\", \" A woman waves her hand and acknowledges her hair and face as she continues to talk.\", \" The woman has her hair down and starts styling her hair.\", \" She completes styling her hair and continues to talk.\"]}, \"v_gV6W0rAHyZg\": {\"duration\": 118.42, \"timestamps\": [[8.29, 118.42], [19.54, 108.36], [42.04, 100.07]], \"sentences\": [\"There's a man in a white shirt standing in an open field doing a tutorial for Expert Village on how to play lacrosse.\", \" He is holding a lacrosse stick in his hands as he explains the techniques of the game.\", \" He makes hand gestures to demonstrate the correct method of holding the lacrosse stick for effective playing technique.\"]}, \"v_bX8QXK9mjKA\": {\"duration\": 64.09, \"timestamps\": [[0, 10.25], [10.25, 13.46], [13.46, 60.88], [60.88, 64.09]], \"sentences\": [\"A large group of people are at a carnival playing in their own bumper cars and a few of them bump into one another and come to a stop.\", \"They laugh and begin to pull their bumper cars away from one another.\", \" The people start driving around again where they all continue to either bump into one another or just drive around.\", \" Eventually all the bumper cars come to a complete stop and the ride is over.\"]}, \"v_BFICeyu5oMM\": {\"duration\": 103.19, \"timestamps\": [[0, 45.4], [19.61, 95.97], [102.16, 103.19]], \"sentences\": [\"Ingredients are sitting on a wooden block.\", \" A person starts mixing the ingredients together.\", \" Words come onto the screen at the end.\"]}, \"v_rF1n8L571vM\": {\"duration\": 166.56, \"timestamps\": [[0, 6.66], [7.5, 157.4]], \"sentences\": [\"A logo with engine pistons is seen and a disclaimer is shown.\", \" Two women in gym exercise pants ride on stationary bikes in a gym together.\"]}, \"v_i9g2MGNUVQI\": {\"duration\": 97.2, \"timestamps\": [[1.46, 51.52], [44.23, 94.77]], \"sentences\": [\"A woman is seen speaking to the camera and leads into the news interviewing a man.\", \" Several shots are then shown of two bulls fighting other while others watch and speak to the camera.\"]}, \"v_Uofnmkfohkc\": {\"duration\": 132.14, \"timestamps\": [[0, 27.09], [27.75, 69.37], [70.69, 132.14]], \"sentences\": [\"A young child is seen riding a skateboard down a road following a group of older boys.\", \" Several shots of him riding around are shown as well as him failing and riding more.\", \" He fist bumps the camera man and more shots are shown of him riding around.\"]}, \"v_F2Igw6lvqwk\": {\"duration\": 49.39, \"timestamps\": [[0.49, 45.93], [6.42, 33.34], [40.99, 49.39]], \"sentences\": [\"A girl is sitting at the bottom of the stairs while trying to put her shoes on.\", \" She looks off in the distance in a disgusted manor, at the same time appearing quite distracted.\", \" She finishes by tying up her shoe laces and laughing to herself and the person filming her.\"]}, \"v_BhxKjirVF4Y\": {\"duration\": 106.33, \"timestamps\": [[8.51, 17.01], [17.01, 27.11], [27.11, 44.12], [44.12, 91.97], [91.97, 106.32]], \"sentences\": [\"A woman dressed in gym clothes is doing a tutorial on spinning in a gym.\", \" She is demonstrating the dumbbells that she will be using.\", \" She then demonstrates the exercise bike and continues to bike along with some other women at the gym.\", \" She explains how to do some rigorous exercise on the bike.\", \" there are several other women who are also biking on the exercise bike with her.\"]}, \"v_cmM0li5O1t0\": {\"duration\": 26.75, \"timestamps\": [[0, 26.75], [0, 0.27], [0.94, 5.89], [11.77, 14.98], [20.46, 25.55]], \"sentences\": [\"We see a little girl water skiing.\", \" We see a man holding a child water skiing.\", \" The man lets go, and grabs her jacket again.\", \"  The man points to the skis.\", \" The man lefts go and grabs the jacket again.\"]}, \"v_igwT-3gprOI\": {\"duration\": 114.17, \"timestamps\": [[0, 15.41], [13.7, 114.17]], \"sentences\": [\"A woman is shown talking to the camera with her hands and the camera pointing to a building.\", \" She stands in front of the building doing a several little dances and continues this in front of several buildings and locations.\"]}, \"v_yVK-GMdc9UA\": {\"duration\": 53.38, \"timestamps\": [[0, 2.4], [2.4, 27.23], [27.76, 53.38]], \"sentences\": [\"A man is smiling at the camera.\", \" He is ironing clothes on an ironing board.\", \" He flips the clothes over and irons the other side.\"]}, \"v_gU81ZXdYh7o\": {\"duration\": 5.09, \"timestamps\": [[0, 5.09], [0.23, 5.09], [0.89, 5.09]], \"sentences\": [\"A boy in an orange shirt is standing in a room.\", \" He starts punching a punching bag.\", \" The punching bag moves in the air.\"]}, \"v_-Wmrg_0jxA8\": {\"duration\": 93.16, \"timestamps\": [[0, 40.99], [48.44, 93.16]], \"sentences\": [\"A circle is formed of several children who are talking and banging each other in the head with foam mallets.\", \" The other people laugh as they watch.\"]}, \"v_BwwjQZDn3NE\": {\"duration\": 65.97, \"timestamps\": [[0, 17.81], [12.53, 51.13], [50.47, 65.97]], \"sentences\": [\"A man is seen outside dancing to himself while wiping a rag on the car.\", \" The weather is pouring rain and the man continues to dance around the car holding a rag.\", \" The man moves to the front of the car followed by taking his shirt off and waving to the camera.\"]}, \"v_XKvzx2cD9KY\": {\"duration\": 146.43, \"timestamps\": [[7.32, 140.57], [49.05, 140.57], [77.61, 140.57], [79.07, 140.57]], \"sentences\": [\"There is a large crowd shown clapping and two hosts speaking in the beginning.\", \" A line of  men are then shown wearing sumo wrestling outfits.\", \" Two people get inside of the ring and begin fighting.\", \" The two people grab each other's necks and try to knock their opponent down to the ground.\"]}, \"v_2wUKu5UIHmI\": {\"duration\": 100.87, \"timestamps\": [[0, 41.86], [39.84, 100.87]], \"sentences\": [\"The camera captures a close up of an older woman putting makeup on and smacking her lips to the camera.\", \" She then puts mascara on as well as more lipstick and nods her head back and fourth smiling.\"]}, \"v_hmT9H0IjiGs\": {\"duration\": 215.55, \"timestamps\": [[14.01, 46.34], [46.34, 63.59], [63.59, 85.14], [85.14, 106.7], [106.7, 132.56], [132.56, 151.96], [151.96, 172.44], [172.44, 195.07], [195.07, 205.85]], \"sentences\": [\"A man wearing a white hat is demonstrating how to make a Caribbean drink.\", \" He shows a bowl filled with citrus fruits.\", \" He takes a lemon juicer and some lemons and limes and oranges.\", \" He then juices the oranges and lemon on the juicer.\", \" He then empties the juice a large cocktail bowl.\", \" He adds rum to the juice along with some vanilla extract.\", \" He also mixes in sugar and rum and whisks the drink.\", \" He finally adds a bowl full of water and stirs it well.\", \" He pours the beverage in cocktail glasses and places it on the kitchen counter.\"]}, \"v_sV6NoTdFaPE\": {\"duration\": 86.24, \"timestamps\": [[0.86, 27.6], [27.6, 63.82], [57.35, 82.79]], \"sentences\": [\"A young woman is seen speaking to the camera while holding onto a field hockey stick.\", \" The girl then hits the ball all around the yard while the camera follows.\", \" She continues to hit the ball around and stops to look at the camera.\"]}, \"v_KwhqAV_0o40\": {\"duration\": 167.6, \"timestamps\": [[0, 61.17], [61.17, 144.14], [144.14, 167.6]], \"sentences\": [\"A man dressed in snow gear is standing on a frozen body of water and bending over as he looks into a fish hole that his fishing pole is in.\", \"The man pulls on his fishing pole, goes on his knees, and continues to slowly pull the fishing pole up and the camera man who had already put the camera down bends down and grabs the fish and places it onto the ice.\", \"The man picks the camera up and angles the camera towards the fish on the ice and the man who was fishing is smiling, unhooks the fish then holds it up in the air.\"]}, \"v_hRoHfDR4-e0\": {\"duration\": 237.07999999999998, \"timestamps\": [[7.11, 40.3], [41.49, 126.84], [126.84, 235.89]], \"sentences\": [\"People handles bulls in a rodeo ring, a man is throw to the air by a bull.\", \" People are throw by bulls to the ground while jumping and kicking with the back legs while people watch the rodeo.\", \" Several people riding bulls are throw to the ground while other people distract the bulls that jumps and kicks.\"]}, \"v_1wqSUOGmpBs\": {\"duration\": 129.77, \"timestamps\": [[0, 44.12], [44.12, 109.65], [109.65, 129.77]], \"sentences\": [\"Two very large sumos are in an elevated circle doing leg warm ups and squatting while another man in the middle dressed in Japanese garb referees.\", \" The referee lets them know when to start and the sumos wrestle while the referee walks around the ring and monitors them.\", \"Finally one of the men is able to push another man out of the ring,they stop wrestling, the loser walks to his end and they bow to one another and both leave the ring.\"]}, \"v_TtQPtLPTqBA\": {\"duration\": 169.07, \"timestamps\": [[0, 4.23], [43.96, 64.24], [69.32, 89.6], [100.59, 112.43], [127.64, 147.09]], \"sentences\": [\"A girl is pouring something into a sink.\", \" She walks away and wipes her hands on a towel.\", \" She pours the bowl into a bucket on the ground.\", \" She starts wiping the floor with a towel.\", \" She moves the bucket up to the front of the classroom and dumps it out.\"]}, \"v_0JpULUYPDX0\": {\"duration\": 100.03, \"timestamps\": [[0, 31.51], [33.51, 71.02], [61.02, 97.53]], \"sentences\": [\"A person is seen standing on a court holding a tennis racket.\", \" The man then demonstrates several moves with the tennis racket and hitting the ball to another.\", \" The two continuously hit the ball back and fourth to one another.\"]}, \"v_kWPvAxLzGw8\": {\"duration\": 206.89, \"timestamps\": [[0, 23.79], [23.79, 34.14], [38.27, 41.38], [46.55, 72.41], [72.41, 84.82], [85.86, 187.24]], \"sentences\": [\"A woman is sitting down wearing green sunglasses.\", \" She is talking on the cell phone.\", \" She is riding in a car.\", \" She is laying on a chair getting her foot tattooed.\", \" She is showing her foot tattoo.\", \" She is sitting outside talking again.\"]}, \"v_p9yq0kAqGU4\": {\"duration\": 141.43, \"timestamps\": [[0, 108.9], [52.33, 62.94], [99.71, 103.25], [109.61, 113.15], [136.48, 141.43]], \"sentences\": [\"Men pull a rope in a game of tug of war.\", \" A lady bends down to take a photo and a lady walks and films the even.\", \" We see a tower in the field.\", \" The men let go of the rope, one man falls and claps.\", \" A man smiles and gives a thumbs up to the camera.\"]}, \"v_zlOErVVHKEk\": {\"duration\": 185.51, \"timestamps\": [[0, 185.51], [23.19, 42.67], [42.67, 45.45], [77.91, 93.68], [95.54, 185.51]], \"sentences\": [\"People are playing a game in a field.\", \"  The man with the mallet and the man with the red hat run back and forth.\", \"  A man with a blue shirt runs toward home plate.\", \"  The man with the mallet is shown getting hit in slow motion.\", \"  A woman is up to bat and is shown running after getting a hit.\"]}, \"v_FPbPkjLAEzs\": {\"duration\": 78.9, \"timestamps\": [[0, 24.07], [26.04, 78.9]], \"sentences\": [\"A man is parasailing on the ocean.\", \" Other people also begin sailing in the water, some falling over.\"]}, \"v_xC9s-_MNO_Q\": {\"duration\": 122.3, \"timestamps\": [[0, 103.96], [0, 19.57], [9.17, 12.84], [15.9, 20.79], [53.2, 73.99], [69.71, 70.93], [71.55, 102.12], [89.28, 93.56], [104.57, 122.3], [114.35, 116.18]], \"sentences\": [\"We see a man decorating a Christmas tree.\", \" The man adds a string of lights.\", \" A little girl ads bulbs to the tree.\", \" The man turns the lights on.\", \" The man and the girl add bulbs to the tree.\", \" The lady goes up and own the stairs.\", \" The lady adds ornaments to the tree.\", \"  The man stands on a ladder and adds ornaments.\", \" The lady turns off the lights and the family looks at the tree together.\", \" The man and woman kiss each other.\"]}, \"v_FkQ1V0V_XCs\": {\"duration\": 238.03, \"timestamps\": [[1.19, 230.89], [10.71, 48.8], [49.99, 72.6], [78.55, 92.83], [104.73, 192.8], [224.94, 226.13], [232.08, 236.84]], \"sentences\": [\"A lady sits and discusses, indoors.\", \" The lady shows off her painted nails.\", \" The lady presents her nail polishes.\", \" The lady paints her fingernail.\", \" The puts nail polish on a folder and uses them to embellish her fingernail.\", \" The lady raises her foot and shows off her sock.\", \" The credits of the clip are shown.\"]}, \"v_0H_9zlnmW4U\": {\"duration\": 230.16, \"timestamps\": [[3.45, 133.49], [103.57, 222.1]], \"sentences\": [\"A man is seen standing in a large field and leads into him moving his arms and legs around the area.\", \" The man continues moving around the area moving his hands up and down and looking off into the distance.\"]}, \"v_JDfFAljt4JM\": {\"duration\": 233.68, \"timestamps\": [[0, 109.83], [78.28, 233.68]], \"sentences\": [\"Two people are seen doing a ballet dance on stage followed by a woman doing a dance while others watch on the side.\", \" The woman continue spinning with the man walking in and out of frame and ends with her bowing to the audience.\"]}, \"v_08wKlw4a_so\": {\"duration\": 25.31, \"timestamps\": [[0, 4.3], [3.42, 25.31], [18.22, 22.15], [14.43, 21.77]], \"sentences\": [\"A black dog walks on a lawn.\", \" A lady rakes leaves from the lawn onto the pavement sidewalk.\", \" The lady stops raking, turns around, and talks plus gestures.\", \" A white ball rolls to a parked car.\"]}, \"v_xpEbejnuGEY\": {\"duration\": 147.59, \"timestamps\": [[0, 27.3], [25.83, 80.43], [61.99, 112.17], [109.21, 142.42]], \"sentences\": [\"A woman is seen kneeling into frame next to a patio set.\", \" She then shows off various cleaning tools an rubs them along a chair.\", \" She brings the chair inside and pours paint into a bucket and paints along the side.\", \" She shows off the chair outside again while speaking to the camera.\"]}, \"v_K4F8I74OM-Y\": {\"duration\": 137.7, \"timestamps\": [[0, 18.59], [18.59, 24.78], [24.78, 127.37], [127.37, 137.69]], \"sentences\": [\"A brunette woman newscaster is wearing a white shirt and royal blue blazer over it and is speaking into the camera.\", \"A clip begins and it features people running and the words on the screen say they are novices who are training to run a marathon in Tel Aviv, Israel.\", \" A man appears training them and different marathoners in training take turns being interviewed while they continue to switch back and forth to everyone going through the training.\", \"The last clip is the view from the start of a marathon and hundreds of people start running as they leave the start line.\"]}, \"v_LChqFAESyCg\": {\"duration\": 140.74, \"timestamps\": [[14.07, 28.15], [28.15, 48.55], [48.55, 61.92], [61.92, 77.41], [77.41, 97.11], [97.11, 105.55]], \"sentences\": [\"There's a young girl standing in her bathroom doing a tutorial on how to apply lipstick.\", \" she opens her mirror cabinet and takes her lipstick out.\", \" She begins applying the lipstick on her lips.\", \" Then she uses the same lipstick and dabs it on her cheeks.\", \" She uses her fingers to smear the lipstick evenly on her cheek bones.\", \" Then she pouts and smiles for the camera, striking a pose.\"]}, \"v_H2KVO7LWU5w\": {\"duration\": 51.61, \"timestamps\": [[0, 51.61], [3.35, 14.71], [44.9, 47.74]], \"sentences\": [\"A toddler is holding a leaf blower.\", \" A teen is raking the lawn.\", \" A teen tosses a rake full of leaves at the toddler.\"]}, \"v_J8VMY1SPJaY\": {\"duration\": 225.41, \"timestamps\": [[0, 56.35], [65.37, 176.95], [126.23, 215.27]], \"sentences\": [\"A woman is seen speaking to the camera that leads into clips of people riding in kayaks and camels wandering around.\", \" More clips are shown of people riding around the water in a kayak.\", \" The person paddles themselves along the water with other people riding near him.\"]}, \"v_skSPijG9sgU\": {\"duration\": 220.03, \"timestamps\": [[0, 85.81], [78.11, 220.03]], \"sentences\": [\"A few kids are seen standing on a stage followed by the children pushing a puck along the ice.\", \" Several people are shown playing the game around them and panning to the audience reacting as well as people standing on the sides.\"]}, \"v_puGw7gu96AM\": {\"duration\": 54.1, \"timestamps\": [[0, 6.49], [7.84, 28.4], [30.03, 54.1]], \"sentences\": [\"A man comes out of a gate on a horse.\", \" He lassos and ropes a calf.\", \" He then jumps down and ties the calf.\"]}, \"v_2Q0WGQbJbso\": {\"duration\": 128.27, \"timestamps\": [[0, 84.02], [77.6, 125.7]], \"sentences\": [\"A person plays a violin in front of a huge crowd of people.\", \"  The people give him a standing ovation at the end.\"]}, \"v_uMQEaWGQvrc\": {\"duration\": 17.09, \"timestamps\": [[0, 4.96], [4.96, 10.08], [10.85, 17.09]], \"sentences\": [\"A man on a diving board walks to the end.\", \" the man bounces on the board two times then dives into the water.\", \" The man surfaces and swims towards the edge of the pool.\"]}, \"v_rHUCx_JqNk4\": {\"duration\": 156.88, \"timestamps\": [[0, 20.39], [23.53, 94.13], [100.4, 156.88]], \"sentences\": [\"a woman with pink hair is posing for the camera.\", \" She brushes out her hair with her hands before separating it into sections.\", \" She then braids the hair down the side of her head.\"]}, \"v_vpu4Bwq-xHI\": {\"duration\": 132.33, \"timestamps\": [[0, 132.33], [4.63, 11.25], [11.25, 132.33]], \"sentences\": [\"There are lots of adults in the room (elderly or young) and they're all watching this girl play the clarinet.\", \" First the girl walks to the front of the classroom as she holds her clarinet and the man who plays the piano gets up from his seat to play the piano.\", \" Then he starts playing the piano and she plays the clarinet along with the piano, when she's done everyone claps for her.\"]}, \"v_XzYtm5WdAE8\": {\"duration\": 31.78, \"timestamps\": [[0.32, 7.31], [6.99, 24.95], [22.56, 31.62]], \"sentences\": [\"A man is seen standing in a large field behind a piece of heavy machinery.\", \" The man pushes the machine along some tall grass while the camera follows his movements.\", \" The man continues pushing along the high grass.\"]}, \"v_7D5ItfgJFVw\": {\"duration\": 47.69, \"timestamps\": [[0, 47.69], [3.1, 10.73], [10.49, 47.69]], \"sentences\": [\"The white rabbit is in the cage.\", \" The rabbit is cleaning its hands by licking it.\", \" The rabbit cleaned his back and then wend down to the first floor of his cage.\"]}, \"v_CDWHstJThJA\": {\"duration\": 215.78, \"timestamps\": [[0, 215.78], [0, 198.52], [198.52, 215.78]], \"sentences\": [\"A group of young Asian men are indoors with a lot of spectators in the stands holding signs and cheering them on.\", \" Two young Asian men stand up with their bow and arrows and they each take turns at shooting at their bulls eye target while the crowd cheers them on after each shot is made, and occasionally 3 suited people are shown making commentaries.\", \" When the men are done shooting at the target,one of them raise their arm in victory, they shake each others hands,hug, take a bow and wave to the cheering crowd.\"]}, \"v_cCISvaObBxI\": {\"duration\": 194.26, \"timestamps\": [[12.63, 64.11], [43.71, 48.56], [67.99, 88.39], [92.27, 110.73], [120.44, 137.92], [137.92, 161.23]], \"sentences\": [\"Two teams play soccer in an indoor soccer court, the team wearing white t-shirt wins the competition.\", \" The player scores and celebrate with a teammate.\", \" Other teams plays soccer, a player with white uniform receives a ball and score.\", \" Two teams play soccer, and the player with the yellow uniform scores.\", \" Two team of girls compete, a girl with red uniform scores and the team wins.\", \" Then, a player with a white uniform scores with a spectacular movement.\"]}, \"v_waF8oGaQqvI\": {\"duration\": 134.82, \"timestamps\": [[0, 4.04], [4.04, 26.96], [26.96, 97.74], [97.74, 115.27], [115.27, 128.08], [128.08, 134.82]], \"sentences\": [\"A special effect intro appears and a blue word appears in the middle of the screen and say's \\\"Howcast\\\".\", \" A woman is lying on a bed in a business with a man sitting next to her and a list of things pop up on the screen under the words \\\"YOU WILL NEED\\\" appear on the screen.\", \" The woman is shown doing various things as steps show up under each action she does, and even tips appear on the screen that lead up to the woman laying on the bed as a man tattoos her.\", \"When he's done tattooing her he holds up a white bottle with a green cap and talks to her while showing it and white words appear on the screen giving a warning that \\\"Applying too much topical anesthetic and then covering the tattoo can cause seizures\\\".\", \" The woman stands up to show her tattoo and the woman is briefly shown sunbathing with the tattoo covered up.\", \"A close up of her tattoo is shown and words appear over it that say's \\\"Democrats are more likely to have tattoos\\\", then a white screen appears with the blue words in the middle that say \\\"Howcast\\\".\"]}, \"v_lJ02cAklA6o\": {\"duration\": 18.62, \"timestamps\": [[0, 3.35], [4.56, 15.18], [15.74, 18.62]], \"sentences\": [\"A man is seated while someone buffs his shoes.\", \" The person uses a brush to clean his shoes thorougly.\", \" Then they use polish to shine them.\"]}, \"v_yVsOoFr61x4\": {\"duration\": 24.08, \"timestamps\": [[0, 8.91], [8.31, 19.02], [19.02, 24.08]], \"sentences\": [\"A young girl is seen walking to the end of a diving board with several other people around her.\", \" The girl puts her arms up and then dives into the pool.\", \" She's seen again coming to the surface in the pool and swimming over to the edge.\"]}, \"v_NGF0rQiDxNk\": {\"duration\": 38.57, \"timestamps\": [[0, 32.21], [32.78, 38.57]], \"sentences\": [\"A female gymnast is spinning and jumping on a pair of high beams as her coach watches, prepared to catch her.\", \" He steps onto the beam as she dismounts, arms in the air.\"]}, \"v_NV2scxevYKk\": {\"duration\": 208.79, \"timestamps\": [[12.53, 40.71], [46.98, 70.99], [78.3, 119.01], [125.28, 183.74]], \"sentences\": [\"Two men do maneuvers on a canoe pivoting the canoe helping with the paddlers.\", \" Then, the men  pivot the canoe away from the bow paddlers while paddling fast the oars.\", \" After, the men slides the canoe forward using the oars to advance.\", \" Next, the men sail on the river until arrive to the bank of the river.\"]}, \"v_Vfb3LmFDols\": {\"duration\": 130.2, \"timestamps\": [[0, 6.51], [7.16, 11.72], [11.72, 25.39], [25.39, 124.99], [124.99, 130.2]], \"sentences\": [\"We see a man in BMX bike arena talking.\", \" We see people bring bikes up a ramp.\", \"  We see people start when the gate opens.\", \" We then see people riding bikes.\", \" We see a man wipe dirt from his hair and turn off the camera.\"]}, \"v_Xf8y5_b2dq4\": {\"duration\": 165.16, \"timestamps\": [[0, 36.34], [38.81, 113.14], [88.36, 160.21]], \"sentences\": [\"A man is seen holding onto a paint machine and spraying it around all the furniture.\", \" He continues painting around the area while the camera pans around his movements.\", \" He finishes the painting and the camera pans around the furniture.\"]}, \"v_QEdbqJijx1w\": {\"duration\": 76.26, \"timestamps\": [[0, 14.49], [15.25, 44.61], [38.13, 75.87]], \"sentences\": [\"A woman is seen speaking to the camera while sitting in a chair.\", \" She then holds up a contact lens and puts one in her eye.\", \" She puts another contact in her eye and smiles to the camera.\"]}, \"v_blSOfdlqJtY\": {\"duration\": 111.99000000000001, \"timestamps\": [[4.48, 45.36], [36.4, 78.95], [53.76, 108.07]], \"sentences\": [\"A large group of people are seen playing around a gymnasium throwing balls at one another and bouncing around.\", \" The people continue throwing balls when one hits the camera and shows a persons face.\", \" The game continues on with the people throwing balls around and people watching on the sides.\"]}, \"v_s0YJOzALDNg\": {\"duration\": 64.48, \"timestamps\": [[0, 9.99], [12.25, 51.26], [52.88, 64.48]], \"sentences\": [\"A group of people are under a covering.\", \" They are riding around in a series of bumper cars.\", \" The cars bump into each other as they drive around.\"]}, \"v_UxlDSfC7S-0\": {\"duration\": 156.34, \"timestamps\": [[0, 7.04], [7.04, 44.56], [44.56, 84.42], [84.42, 156.34]], \"sentences\": [\"A bag of Spill Master Absorbant is shown on the screen.\", \" A man stands in a warehouse talking to the camera and pours some liquid on the ground.\", \" He takes a bowl of some material and sprinkled it over the spills.\", \" He then sweeps up the material with a broom and dust pan.\"]}, \"v__-zOtZZ_fwI\": {\"duration\": 182.93, \"timestamps\": [[0, 11.89], [12.8, 29.27], [29.27, 60.37], [60.37, 182.93]], \"sentences\": [\"A woman is video taping some men in a living room getting jackets on.\", \"  One of the men motions the the camera person to follow him as he grabs a broom and walks down a hall and out a door to a snow covered parking lot.\", \"  They walk out into the parking lot as another man comes outside.\", \"  The man with the broom brushes snow off of an SUV as another man does the same at a car next to him.\"]}, \"v_cdiazgshHuc\": {\"duration\": 52.01, \"timestamps\": [[0, 3.38], [3.64, 14.82], [16.64, 29.65], [31.47, 51.49], [35.63, 45.77]], \"sentences\": [\"A girl holds up a brush and walks up to the horse.\", \" The girl brushes of the coat of the horse in a stable.\", \" The girl removes the ankle braces from the horse.\", \" The girl wraps up the braces together an puts them away.\", \" A horse sticks his head out from a stable and a man watches.\"]}, \"v_dth80jcqPxU\": {\"duration\": 107.31, \"timestamps\": [[0, 107.31], [0, 103.56], [0, 100.87], [23.61, 51.51]], \"sentences\": [\"Several types of shot put throws and terminology are demonstrated.\", \" The different throws show different block types.\", \"  These are used  in various sling types.\", \"  Some names of some of the throws are the glide shot,  the spin Shot, and the stand throw.\"]}, \"v_6VW7ZPurE7c\": {\"duration\": 90.21000000000001, \"timestamps\": [[0, 48.71], [39.69, 88.86]], \"sentences\": [\"A small dog is seen wearing an outfit and walking on two legs while people stand around him and watch.\", \" The dog continues walking around and looking around as people watch.\"]}, \"v_EOradtej9GU\": {\"duration\": 121.14, \"timestamps\": [[0, 27.26], [27.86, 63.6], [63.6, 101.76], [101.76, 121.14]], \"sentences\": [\"A mountain full of snow appears and a man begins skiing down the slopes.\", \"As he skis,more men appear before he reappears by himself.\", \"Once alone,the man skis rapidly down the slopes and does spins and kneels as he skis.\", \"Eventually,he goes to fast and ends up flipping over into a pile of snow.\"]}, \"v_FaKQvJBhMPg\": {\"duration\": 89.1, \"timestamps\": [[0, 3.56], [3.56, 8.46], [8.46, 66.38], [66.38, 84.19], [84.19, 89.09]], \"sentences\": [\"A man and a woman are sitting in two separate floating donuts, the man in the blue, the woman in the green, and both are smiling then the man raises his left arm to wave.\", \"A group of people are also on different colored floating donuts, playing, falling in the water and having a good time.\", \"A brown haired woman standing in a pile of floating donuts is holding a mic and talking, and other clips begin to play that include scenery of the lake, interviewing various people of ages and both sexes, people walking with their floating donuts, signs at the lake, people having fun and etcetera.\", \" The woman is now sitting in a green floating donut, still holding the mic, and still talking.\", \"A white screen appears appears with a maroon and white logo, then it changes to another white screen that has a blue website in the middle of it.\"]}, \"v_56kqqlco5H0\": {\"duration\": 105.21000000000001, \"timestamps\": [[0, 16.31], [16.31, 30.51], [30.51, 90.48], [90.48, 105.21]], \"sentences\": [\"A gymnast wearing a blue outfit climes onto the a balance beam and performs a hand stand with a split in a competition in front of a huge American flag.\", \" The gymnast proceeds on the balance beam and performs a front somersault and then three consecutive backward somersaults in a row.\", \" The gymnast continues with her performance on the parallel bar with spin moves, jump moves and dance moves.\", \" The gymnast prepares for the dismount at one end of the parallel bar does a forward somersault on the parallel bar and a somersault with a spin and lands the dismount perfectly.\"]}, \"v_nOJUyDGq_l0\": {\"duration\": 196.95, \"timestamps\": [[0, 16.74], [19.7, 106.35], [113.25, 172.33], [174.3, 196.95]], \"sentences\": [\"A group of men are gathered in a circle in a room.\", \" They shake each other's hands, then start fighting in the ring of people.\", \" They spin and kick, never actually hitting each other.\", \" When they finish the group comes together, clapping as a group.\"]}, \"v_eRQAjBwhDXk\": {\"duration\": 81.06, \"timestamps\": [[0, 34.05], [35.67, 81.06]], \"sentences\": [\"A person skis quickly down a snow covered hill.\", \" People are on intertubes, sledding along the snow.\"]}, \"v_-5KAycAQlC4\": {\"duration\": 139.44, \"timestamps\": [[0, 29.28], [31.37, 99], [105.27, 139.44]], \"sentences\": [\"A man is being pulled on a water ski as he floats in the water casually.\", \" He mounts the water ski and tears through the water at fast speeds.\", \" Two men are shown sitting in the boat, before cutting back to the turbulent water skiing.\"]}, \"v_bWCIcijlgCo\": {\"duration\": 146.04, \"timestamps\": [[0, 74.48], [72.29, 146.04]], \"sentences\": [\"The video begins with several shots of people riding down long roads on skateboards in fast motion as well as slow.\", \" The people perform various jumps and tricks down these long and winding roads and shows the boarder speaking into the camera.\"]}, \"v_LrwBGQ9B0Vg\": {\"duration\": 104.37, \"timestamps\": [[0, 7.83], [11.48, 17.22], [19.83, 68.89], [70.45, 78.8], [85.06, 104.37]], \"sentences\": [\"A group of fish swim around in the ocean floor.\", \" A long yellow fish passes the camera.\", \" Scuba divers gather on a boat as a man speaks.\", \" We see several fish and a shark.\", \" The scuba divers dive, looking at the fish and waving at the camera.\"]}, \"v_7BM40jqPYgA\": {\"duration\": 163.31, \"timestamps\": [[1.63, 155.96], [1.63, 22.05], [27.76, 150.24], [150.24, 155.14]], \"sentences\": [\"A boy makes repairs to a disassembled bicycle with the use of a solder in a backyard near the back steps of a house.\", \"  A boy enters the scene and pulls on a pair of gloves while wearing a sports protective mask, turns on a blue machine on the back steps and picks up a solder.\", \"  The boy then begins to solder a disassembled bicycle on the ground in  a backyard.\", \"  The boy then gets up and walks out of the scene after lifting the lid on his mask.\"]}, \"v_U0IJmOHoa1M\": {\"duration\": 230.55, \"timestamps\": [[21.9, 55.33], [55.33, 103.75], [103.75, 142.94], [142.94, 162.54], [162.54, 179.83], [179.83, 194.82], [194.82, 212.11], [212.11, 223.63]], \"sentences\": [\"The cricket team of Sri Lanka is playing against another country.\", \" the cricketers are playing a competitive game in the field.\", \" The Sri Lanka team is represented by the blue uniform.\", \" The batsman scores four runs as the bowler throws an overhand ball.\", \" The video shows different cricket matches taking place where Sri Lanka is playing against teams from different countries.\", \" The stadium is filled with spectators cheering for the cricketers.\", \" The match goes on full swing as the batsmen score four runs.\", \" The fielder runs to catch the ball after the batsman hits it high, almost catching the ball to make him clean bold.\"]}, \"v_iiY3TE2O1QE\": {\"duration\": 38.8, \"timestamps\": [[0, 3.49], [3.3, 16.88], [16.1, 38.8]], \"sentences\": [\"A camera is held by someone under water and swimming in the ocean.\", \" It pans to several shots of men playing soccer on a beach and kick the ball around.\", \" The camera pans over the ball followed by several more shots of the man playing.\"]}, \"v_AX2KQGWXg1E\": {\"duration\": 186.24, \"timestamps\": [[0, 70.77], [71.7, 94.05], [94.98, 176.93], [177.86, 186.24]], \"sentences\": [\"A woman and a man practice kick box in a gym where also other people train, then he woman talks.\", \" A cars run in a city with a soldier holding a weapon, a family in the street, people walking and car sit o the curve.\", \" The woman talks from a room, then she trains with others in a gym, then a lady in the gym talks.\", \" at the end trophies are shown.\"]}, \"v_ohNtDBYmhX0\": {\"duration\": 154.92000000000002, \"timestamps\": [[0, 25.56], [13.94, 48.8], [47.25, 154.92]], \"sentences\": [\"A male skateboarder is skating, he jumped on the railing and then slipped and fell on his back and a hand helped him up.\", \" A boy jumped in a platform with his skateboard and slipped and fell.\", \" The skateboarders jumped on the platform or railings and slipped and fell on the ground.\"]}, \"v_nfTFGY2n_io\": {\"duration\": 228.18, \"timestamps\": [[0, 222.48], [13.69, 107.25], [108.39, 228.18]], \"sentences\": [\"A family talks about making healthy food.\", \"  They start by making smoothies and read ingredients from coconut sugar.\", \"  They blend food and prepare the food and then blend the smoothie.\"]}, \"v_m7XKITsRtVw\": {\"duration\": 79.74, \"timestamps\": [[0, 79.74], [0, 7.58], [20.33, 25.52], [64.19, 72.16]], \"sentences\": [\"A man and a woman are drinking coffee outside next to a camper.\", \" The man is playing guitar.\", \" The woman walks to the camera and starts showing off paper documents.\", \" She throws the papers and walks back to the man.\"]}, \"v_PLgcXxX3A2A\": {\"duration\": 169.09, \"timestamps\": [[0, 85.39], [87.08, 169.09]], \"sentences\": [\"A boy on a team throws a basketball at other team members.\", \" Others join in, some falling as they are hit with the ball.\"]}, \"v_8ClpQ4q6NmM\": {\"duration\": 121.49, \"timestamps\": [[0, 57.71], [55.88, 121.49]], \"sentences\": [\"A man is seen kneeling down next to a dog scrubbing his back while another man pours water over the dog's body.\", \" The man continues scrubbing as the other pours water and ends with the dog running away.\"]}, \"v_j_vP89LZlp8\": {\"duration\": 130.58, \"timestamps\": [[0, 120.79], [48.97, 101.85], [101.2, 122.74], [123.4, 130.58]], \"sentences\": [\"A woman brushes her long hair at home.\", \" The woman sits down on the sofa.\", \" The woman gets up and turns away.\", \" The person turns around walks out of view.\"]}, \"v_-vDMeHr1ZfI\": {\"duration\": 229.13, \"timestamps\": [[0, 16.04], [16.04, 37.81], [37.81, 229.13]], \"sentences\": [\"a lot of desserts are in a sliding belt in a counter.\", \" a sunset in a beach and in a lake is shown.\", \" people is doing kayaking in a lake going though the lake with big gren vegetation.\"]}, \"v_rggwT0-G5sk\": {\"duration\": 78.55, \"timestamps\": [[0, 55.77], [7.86, 34.17], [33.78, 54.99], [56.17, 78.55]], \"sentences\": [\"Two young men are shown running back and fourth down a court hitting a tennis ball.\", \" They keep hitting the ball against the wall and chasing the ball around.\", \" One pauses and hits the ball on his racket and again throws it for the boys to play.\", \" One falls down on the ground towards the end and the other helps him up.\"]}, \"v_WQAVlmS5IWs\": {\"duration\": 92.16, \"timestamps\": [[0, 86.17], [41.93, 50.23], [50.69, 61.75]], \"sentences\": [\"A woman talks to the camera while bathing a baby in the bathtub.\", \" The woman demonstrates a small scrubbing pad to the camera.\", \" The woman uses the pad on the baby.\"]}, \"v_o5j6N8O6HS4\": {\"duration\": 30.02, \"timestamps\": [[0, 4.05], [4.05, 9.16], [9.16, 30.02]], \"sentences\": [\"One man is explaining to another man how to use a rowing machine.\", \"  One of the main starts to row on the rowing machine before the other.\", \" Next, the other man joins the first man and starts to row.\"]}, \"v_g8Yx4qWzNH0\": {\"duration\": 14.98, \"timestamps\": [[0, 5.17], [5.24, 12.43], [12.88, 13.93], [14.3, 14.98]], \"sentences\": [\"A man is bent down on a mat.\", \" He picks up a large weight and lifts it over his head.\", \" He drops the weight onto the ground.\", \" A man in a blue shirt claps.\"]}, \"v_J8WxSDLZwu0\": {\"duration\": 41.04, \"timestamps\": [[0, 3.49], [3.49, 10.67], [10.67, 41.04]], \"sentences\": [\"This baby hits the ball and falls down.\", \" Then he gets back up and grabs the stick to attempt hitting the ball again.\", \" Next he falls again and gets back up while holding the stick and he grabs the ball hitting it really far.\"]}, \"v_ZazjI26IQUo\": {\"duration\": 67.08, \"timestamps\": [[0, 11.4], [11.4, 32.2], [32.2, 48.97], [49.64, 67.08]], \"sentences\": [\"A parent is tattooing their very small child that looks like he is about 3 .\", \" He is crying because it hurts and his mean mother is keeping him held down while they tattoo his arm.\", \" They keep going with the tattoo it is on his upper arm but you can't tell what they are tattooing.\", \"  The artist grabs something green and starts to shake it.\"]}, \"v_dI1RqUHyWYo\": {\"duration\": 90.42, \"timestamps\": [[0.9, 89.51], [0.9, 59.22], [66.46, 90.42]], \"sentences\": [\"Several people at an indoor pool jump off of a diving board into the pool water below exhibiting a mix of advanced diving techniques and diving technique mishaps.\", \"  Several divers jump off of the diving board into the water below performing many techniques including flips.\", \"  More, less successful dives are shown near the end of the clip before the scene fades to black.\"]}, \"v_l0Sz7dqLzqs\": {\"duration\": 146.5, \"timestamps\": [[0, 39.55], [38.09, 115.73], [113.53, 146.5]], \"sentences\": [\"A large crowd is seen sitting in front of a pool followed by several shots of two people diving into a pool.\", \" More shots are shown of divers performing impressive stunts into the pool and ends with them walking away and their score being shown.\", \" A man speaks off into the distance and the divers stand together to get their medals.\"]}, \"v_0gA_3BAxtVM\": {\"duration\": 175.92000000000002, \"timestamps\": [[0, 175.92], [31.66, 32.54], [102.91, 109.95]], \"sentences\": [\"People are riding bicycles around a dirt track.\", \" Two men crash into each other and fall down.\", \" Several people crash into each other and fall down on the track.\"]}, \"v_54Hp_Z-cu-s\": {\"duration\": 61.6, \"timestamps\": [[0, 60.37], [0.31, 61.29], [15.4, 61.6]], \"sentences\": [\"People are interacting in a track field.\", \" The marching band are walking with their instruments down a track.\", \" The  drummers are performing as they walk.\"]}, \"v_HMc2QoiQcoA\": {\"duration\": 170.4, \"timestamps\": [[0, 14.48], [18.74, 30.67], [40.04, 170.4]], \"sentences\": [\"A woman is seated on a bed in a bedroom.\", \" She runs her hands through her hair as she talks.\", \" She opens a cigarette case and smokes a cigarette while she talks.\"]}, \"v_HGG_st1NOYM\": {\"duration\": 96.96000000000001, \"timestamps\": [[0, 96.96], [47.02, 47.99], [78.54, 81.44]], \"sentences\": [\"Women in bikinis are playing volleyball on the beach.\", \" One of the women falls onto the sand.\", \" They pose for a picture on the beach.\"]}, \"v_modITAJlP_0\": {\"duration\": 69.96000000000001, \"timestamps\": [[21.34, 39.88], [39.88, 62.97], [62.97, 66.46], [66.46, 69.96]], \"sentences\": [\"A woman wearing light blue tank top and black shorts is exercising on an elliptical.\", \" She continues walking on the elliptical as she moves her hands forward and backwards.\", \" She then finishes her exercise routine, gets off the equipment and takes a drink of water from a blue water bottle.\", \" She walks away holding the bottle in her hand.\"]}, \"v_PlSk7Q9v15A\": {\"duration\": 140.16, \"timestamps\": [[0, 9.11], [9.81, 17.52], [17.52, 41.35], [42.05, 82.69], [83.39, 88.3], [89.7, 117.03], [117.73, 140.16]], \"sentences\": [\"We see two opening title screens.\", \" We see a man behind a bar talking.\", \" The man adds ice to a martin glass and a tall glass.\", \" the man adds three shots to the glass and shakes it.\", \" The man puts a strainer on the glass and pours the ice out of the martini glass.\", \" The man pours the lime green drink in the martini glass and adds a cherry and straw.\", \" We see the closing screen.\"]}, \"v_loUYsxA2RHg\": {\"duration\": 86.7, \"timestamps\": [[0, 13.87], [13.87, 21.24], [21.24, 44.22], [44.22, 71.53], [71.53, 86.7]], \"sentences\": [\"An elderly man is setting up his camera and then goes off to get on his riding mower.\", \" He appears on the left side riding down the sidewalk until he reaches his lawn.\", \" He makes a turn and starts working through the grass, going in circles until he reaches the center of the lawn.\", \" He then goes back and reaches a small patch of grass that he missed the first time.\", \" He goes back through one more time making sure that he didn't miss any spots, and gets off his lawn mower to turn the camera off.\"]}, \"v_6rG5dBgwBDc\": {\"duration\": 154.02, \"timestamps\": [[0, 9.24], [14.63, 75.47], [80.86, 154.02]], \"sentences\": [\"Snowflakes are shown falling down the screen before we see a christmas tree.\", \" A woman is talking before she starts preparing and decorating the tree.\", \" She applies a plethora of ornaments and lights, and the tree is shown several different states of decoration.\"]}, \"v_McwVhHxdr5g\": {\"duration\": 24.35, \"timestamps\": [[0, 3.77], [5.97, 18.63], [19.36, 24.35]], \"sentences\": [\"a little boy is riding inline skates down a driveway.\", \" He waves his arms, trying to keep his balance.\", \" He runs, then falls on the skates.\"]}, \"v_uZC3WPkta-I\": {\"duration\": 95.41, \"timestamps\": [[0, 22.9], [23.85, 50.09], [35.3, 63.93], [63.93, 95.41]], \"sentences\": [\"A group of people are outside playing a game of croquet in the yard.\", \" One of the women in a kirt has her hand behind her back just watching them play.\", \" The other woman is the only female playing, she take her turn and then it's back to the men.\", \" The man in sandals hit the black ball and then it is once again the woman's turn.\"]}, \"v_p4RUPQAV0ro\": {\"duration\": 34.26, \"timestamps\": [[0, 5.82], [5.65, 14.05], [13.88, 15.25], [18.16, 27.07], [28.44, 31.18]], \"sentences\": [\"A man walks up and picks up a weight.\", \" He lifts it up to his shoulders and then over his head.\", \" A person stands up and puts his fist in the air.\", \" Another man next to him picks up a weight and lifts it over his head.\", \" The men shake hands before walking off.\"]}, \"v_2zQk4ZEfzf4\": {\"duration\": 37.94, \"timestamps\": [[0, 14.99], [14.23, 37.94]], \"sentences\": [\"A man is seen standing in a sand pit and begins spinning around and throwing the object.\", \" The man is shown several times spinning around and throwing the object off into the distance.\"]}, \"v_awag66wjX4k\": {\"duration\": 161.22, \"timestamps\": [[0, 157.99], [0, 4.84], [6.45, 16.12], [16.93, 41.11], [41.92, 138.65], [140.26, 153.96], [153.96, 161.22]], \"sentences\": [\"A bike company is showing off their bikes and how to fix them.\", \" There is an intro of the bike company's logo.\", \" Then a man gives a quick into talk about the bikes.\", \" A person with gloves then shows off some tools and paste.\", \" He then uses the tools and paste to fix the bike's handle.\", \" The person then shows off the finished product of a fully adjustable handle.\", \" The ending screen shows the bike company's logo again.\"]}, \"v_bPvxr2-L_HU\": {\"duration\": 10.8, \"timestamps\": [[0, 5.83], [6.32, 10.8]], \"sentences\": [\"A person in Blue pants attemps to pile drive a guy in a pink suit.\", \"  The guy in the pink suit gets revenge.\"]}, \"v_14dA-qLmNZo\": {\"duration\": 65.25, \"timestamps\": [[0.98, 18.92], [15.01, 53.18], [48.61, 63.29]], \"sentences\": [\"A large group of people are seen riding along the water on boats.\", \" One person crashes into another and shows a person speaking to the camera.\", \" More clips are shown of the boats together and logos being shown.\"]}, \"v_lTFCUuLtUJs\": {\"duration\": 216.04, \"timestamps\": [[0, 76.69], [65.89, 152.31], [152.31, 206.32]], \"sentences\": [\"A large group of people are seen standing around a track leading into several people running down the road.\", \" A woman is seen speaking to the camera while several people are seen running and drinking water.\", \" More people speaking to the camera while showing them run in different locations.\"]}, \"v_y0VZOcxbjRM\": {\"duration\": 76.14, \"timestamps\": [[0, 76.14], [0, 75], [3.81, 33.88], [30.84, 38.83], [30.84, 44.54], [43.4, 49.11], [47.21, 76.14]], \"sentences\": [\"There are five ladies playing shuffleboard in an indoor shuffleboard court.\", \" There are three women in green and two women dressed in cream colored shirts playing against each other.\", \" A lady from the green team begins to aim the stick to hit the puck while another team member helps her rearrange the pucks.\", \" Then she shoots the puck with the stick and steps back to give her opponent a chance.\", \" A player from the cream team then hits the puck with her stick but is not very successful.\", \" A man steps in and replaces the puck on the shuffleboard.\", \"Then another player from the green team comes forward to play.\"]}, \"v_zU6SnkNIdrw\": {\"duration\": 177.94, \"timestamps\": [[0, 8.01], [11.57, 28.47], [31.14, 86.3], [90.75, 135.23], [139.68, 177.94]], \"sentences\": [\"A man is wearing an apron and standing in his kitchen.\", \" Several food items in bowls are shown.\", \" A white bowl is filled with sugar, eggs, and peanut butter, then blended.\", \" He presses balls of cookie dough onto a pan and bakes them.\", \" He eats one of the cookies for the camera while he talks about them.\"]}, \"v_Gkv5ibx0tYw\": {\"duration\": 97.2, \"timestamps\": [[0, 97.2], [39.85, 61.72], [62.69, 97.2]], \"sentences\": [\"A woman with short blonde hair is sitting in a chair talking.\", \" She holds up a hair curler and puts it in her hair.\", \" She takes it out and continues talking.\"]}, \"v_BbeZ2t__2iA\": {\"duration\": 9.43, \"timestamps\": [[0, 3.96], [3.3, 9.43]], \"sentences\": [\"A close up of a man is seen holding a coffee cup and leads into him taking a sip.\", \" He nods his head in approval to the coffee and is shown again drinking more coffee next to a person.\"]}, \"v_ilXO32we9uo\": {\"duration\": 104.24000000000001, \"timestamps\": [[2.61, 31.79], [30.75, 93.81]], \"sentences\": [\"Two men are sailing on the blue water, with their white boat with white flags, then they avoided the buoys on the water.\", \" A plan written on a white paper with black pen, and then the plan is put into action, when the white boat sail on the water and turn around.\"]}, \"v_qZaWIb28kfU\": {\"duration\": 88.63, \"timestamps\": [[3.1, 21.27], [21.27, 44.76], [45.2, 83.31]], \"sentences\": [\"A man and a boy walks around a wood fire holding sheets and wearing corned hats, while a crowd stand in a circle.\", \" Then, the man  stand and talks to people.\", \" Suddenly, fire and smoke come out from the wood fire with sparkles.\"]}, \"v_J4vq7MLMAtY\": {\"duration\": 149.56, \"timestamps\": [[0, 149.56], [9.72, 23.18], [47.11, 137.6], [83.75, 88.24], [90.48, 128.62]], \"sentences\": [\"Several people are shown at a party playing different games and having fun.\", \" A man begins to talk to one of the women as she is playing one of the games.\", \" The game begins to get heated while several of the women laugh and joke around.\", \" One of the women takes a picture of the laughing women playing the game.\", \" A man helps as the women try to get the hang of playing the game.\"]}, \"v_wdb4-V33wIo\": {\"duration\": 112.85, \"timestamps\": [[4.51, 31.03], [36.68, 91.97], [89.15, 110.03]], \"sentences\": [\"A camera pans around a snowy roof and leads into a man pushing snow off of a roof and onto the ground below.\", \" The man continues speaking to the camera while pushing off snow and leading into an empty roof.\", \" Another man is seen shoveling off snow and ends with pictures of the men working.\"]}, \"v_3S5RoKVsAys\": {\"duration\": 150.68, \"timestamps\": [[0, 3.01], [3.77, 36.92], [37.67, 143.14], [85.13, 89.65], [97.19, 101.71], [121.29, 140.13], [144.65, 150.68]], \"sentences\": [\"We see an opening title screen.\", \" We see a man in a barber shop and see images of the shop.\", \" The barber speaks cut with scenes of a barber shop.\", \" We see a Union Jack flag on the arm of a chair.\", \" A large dog walks through the room.\", \" We see the man shaving a man with a straight razor.\", \" We see the ending title screen.\"]}, \"v_bzJTmN6wAC4\": {\"duration\": 209.61, \"timestamps\": [[0, 17.82], [26.2, 128.91], [129.96, 209.61]], \"sentences\": [\"A man is seated in front of a canvas.\", \" He is using a palette to paint an ombre scene.\", \" He then covers the ombre to a silhouette of a tree on a hill.\"]}, \"v_c_KU8M2YfzA\": {\"duration\": 171.2, \"timestamps\": [[0, 5.99], [5.14, 20.54], [22.26, 38.52], [38.52, 132.68], [142.95, 171.2]], \"sentences\": [\"A black screen is visible and white words begin to appear.\", \"Next,there's a line of ten boys standing together behind a rope outside in a large grassy field.\", \"The boys form a circle and begin leaning to the left in a lounge position to exercise.\", \"When they are finished,they begin pulling tug of war and the man on the left side with black suit wins.\", \"Another group of boys are shown and they begin crouching down in effort to win the game.\"]}, \"v_2WeG8QGOfcI\": {\"duration\": 212.77, \"timestamps\": [[0, 195.74], [29.79, 34.04], [64.89, 73.4], [92.55, 96.81], [119.15, 125.53], [169.15, 187.23], [195.74, 212.77]], \"sentences\": [\"We see an instructor leading an aerobics class.\", \" The people do a popping waist dance.\", \" The people go back and forth.\", \" A man walks past the door.\", \" A man in blue enters the room.\", \" The people lift their legs high.\", \" The instructor finishes and walks back and forth.\"]}, \"v_VwclmKWo_-M\": {\"duration\": 120.91, \"timestamps\": [[0, 120.91], [5.44, 30.23], [9.07, 36.88], [33.85, 45.94], [41.11, 50.78], [47.15, 60.45], [60.45, 77.99], [75.57, 91.89], [88.26, 98.54], [95.52, 105.79], [102.77, 120.91]], \"sentences\": [\"There are three young men in a house.\", \" One the men is sitting on a couch in the living room eating a packet of Doritos.\", \" And there are two other men who are staring at him while he eats.\", \" One of the men gets up and washes his hands.\", \" He then opens a can of coke and drinks from it.\", \" Then he begins chopping tomatoes and lettuce to make a sandwich.\", \" He slices some ham and makes two toasts in a toaster.\", \" Then he puts mayonnaise on the bread and tops it with the meat, lettuce and tomato.\", \" He cuts the sandwich in half and serves it on a plate.\", \" Then he offers the sandwich plate to the man seated on the couch eating the Doritos.\", \" The man takes the plate and takes a bite of the sandwich as the other man stands next to him and watches.\"]}, \"v_Bri_myFFu4A\": {\"duration\": 65.9, \"timestamps\": [[0, 6.26], [5.27, 14.17], [14.83, 22.74], [23.06, 60.63], [59.97, 65.9]], \"sentences\": [\"A person retrieves an instrument from a closet.\", \" The man examines the instrument in his hand.\", \" The person holds up the violin to his chin and gets ready.\", \" The person plays a song on the violin.\", \" The man finishes the song and lowers the instrument.\"]}, \"v_AsTfp_4Um1A\": {\"duration\": 140.27, \"timestamps\": [[0, 135.36], [0, 41.38], [28.05, 48.39], [46.29, 113.62], [113.62, 140.27]], \"sentences\": [\"Two little girls take pack a suitcase and take a trip to New York City.\", \"Two little girls stand in a room dressed in costumes that later morph into ballerina outfits.\", \"  The two girls begin to dance together while singing or speaking into the camera.\", \"  The clip fades to the two girls folding and packing clothes in a suitcase in a bedroom in a house,  The girls pack tutus in a pink suitcase and then cut to them in a horse drawn carriage in the streets of New York,  talking and pointing to landmarks.\", \"  The trip ends and the two girls run into a building and then sing together on the edge of a water fountain before running off.\"]}, \"v_ybF4RykZxK8\": {\"duration\": 63.72, \"timestamps\": [[0, 15.93], [13.7, 37.91], [36.32, 62.12]], \"sentences\": [\"A man is seen riding down on a skateboard while the camera follows his movements.\", \" The man skates around the street through obstacles and down the street.\", \" More people continue riding down the street while the camera follows them.\"]}, \"v_qf5wMRlZYnQ\": {\"duration\": 231.69, \"timestamps\": [[0, 59.08], [55.61, 231.69]], \"sentences\": [\"A belly dancer is seen moving herself along a stage and performing a routine while many watch.\", \" She continues the routine and ends by shaking her hair around and bending backwards to pose.\"]}, \"v_f6JZ3LWJRVE\": {\"duration\": 106.74000000000001, \"timestamps\": [[6.94, 103.54], [6.94, 10.14], [10.67, 54.97], [63.51, 85.93], [77.92, 90.73], [100.34, 103.54]], \"sentences\": [\"Two men hunt and shoot a buffalo in a sandy, desert like setting.\", \"  A room filled with stuffed and hunted animals displays in a room with many of them mounted on walls.\", \"  Two brown buffalos are standing next to each other on a sandy ground in extremely windy weather.\", \"  Two men watch the two buffalos from a distance with weapons mounted aiming to shoot as a camera man stands behind them filming the incident.\", \"  One of the buffalos is shot by an yellow tipped weapon while walking away.\", \"  One of the men is then shown standing over the dead animal.\"]}, \"v_ESgcgoYgg0o\": {\"duration\": 173.41, \"timestamps\": [[0, 40.75], [40.75, 173.41]], \"sentences\": [\"woman is sitting in front of other in a consulting room and take the glasses out and wash her hands.\", \" woman gives her contact lenses and he other woman holds it with the index finger put some some liquid and put it in the eye, then do the same with the other contact put the lenses and talk to the other woman.\"]}, \"v_KTIzccovgeg\": {\"duration\": 65.25, \"timestamps\": [[8.48, 12.4], [9.79, 19.9], [28.06, 36.54], [36.87, 39.15], [39.8, 46.65], [47.96, 50.24]], \"sentences\": [\"A lake is seen with the view of a city skyline across the way.\", \" A group of walkers walk along the sidewalk near the lake.\", \" A man uses a snow blower on a sidewalk area.\", \" People use snow shovels to clear the sidewalk.\", \" A spade gardening tool is used to break up ice.\", \" A man applies salt to the cleared sidewalk area.\"]}, \"v_0hWGSkDnRHA\": {\"duration\": 208.62, \"timestamps\": [[0, 86.58], [64.67, 207.58]], \"sentences\": [\"Two people are seen passing a ball back and fourth in a pool and leads into one speaking to the camera.\", \" The man demonstrates how to properly throw the ball with his hands while still speaking to the camera.\"]}, \"v_WsXxnCQ_MIc\": {\"duration\": 213.86, \"timestamps\": [[0, 208.51], [0, 2.14], [83.4, 112.27], [75.92, 167.88], [159.32, 193.54]], \"sentences\": [\"A young woman uses hair products on and blow dries her hair straight with a dryer that has a comb attached to the end of it.\", \"  The woman begins by removing a terry cloth turban from her head and revealing a wet may batch of hair.\", \"  The woman then begins to put section of her hair in twist braids.\", \"  The women then starts blowdrying sections of her hair with a comb attached blow dryer.\", \"  The woman swings her straightened hair and smiles.\"]}, \"v_zX9DZ_x9rJ4\": {\"duration\": 173.99, \"timestamps\": [[0, 6.96], [6.96, 24.36], [24.36, 132.23], [6.96, 132.23], [132.23, 158.33], [158.33, 166.16], [166.16, 173.99]], \"sentences\": [\"A black intro screen with white words appear and it notes the location, the people, and the cake they are going to make.\", \"A man and woman wearing red aprons appear in a kitchen with a white kitchen aid mixer in front of them and a banner on the screen displaying all the ingredients.\", \" The view then changes to a shot from above to show what the man is doing, and the banner on the screen is still showing the ingredients that are being used.\", \"The view changes from front to a top angle as the man is mixing the ingredients.\", \"The view then changes back to a front view and the man moves the kitchen aid to the side and grabs from the counter behind them, a baked cake and a plate with a slice of cake on it.\", \" The outro includes a picture of the man and woman standing together, their names, the name of the cake they made, their address and the news station that aired it.\", \"The credits then begin to scroll from bottom to top on a black screen with white letters.\"]}, \"v_B2qCBkXrb8s\": {\"duration\": 68.89, \"timestamps\": [[1.03, 19.63], [9.3, 29.28], [29.62, 47.54], [46.85, 68.21]], \"sentences\": [\"A large man is seen standing and bowing in front of another large man while one holds his hands out inbetween the two men.\", \" Several people sit around the circle and the circle and the men wrestle one another.\", \" One pushes the other to the ground and the audience cheers.\", \" The man pushes another out of the circle and the audience claps once again.\"]}, \"v_LgoMRWkBDkQ\": {\"duration\": 20.02, \"timestamps\": [[0, 20.02], [7.61, 11.61]], \"sentences\": [\"A man takes out the ice over the windows of a car.\", \" A person stand watching a man takes out ice on a car.\"]}, \"v_LPeyqO2pRd4\": {\"duration\": 84.82, \"timestamps\": [[0, 26.72], [26.72, 49.62], [49.62, 71.25], [71.68, 84.82]], \"sentences\": [\"A woman add ice on a glass while talking.\", \" Then, the woman adds syrup in the glass using a measure cup.\", \" After, the woman add liquid to the glass, then pours the it in a black cup.\", \" After, the woman serves the mix in another glass.\"]}, \"v_yRup8RDsCzk\": {\"duration\": 179.49, \"timestamps\": [[0, 179.49], [20.64, 166.93], [39.49, 54.74]], \"sentences\": [\"Two men are doing martial arts with others around them watching.\", \" Many other men are shown doing several flips and tricks around each other.\", \" Two men flip near each other while others around them watch.\"]}, \"v_PqP3JIJEU5I\": {\"duration\": 54.1, \"timestamps\": [[0, 52.21], [23.26, 26.51], [28.67, 48.96], [52.21, 54.1]], \"sentences\": [\"A man is smoothing a substance on a roof with a trowel.\", \" He moves quickly to smooth out dents.\", \" The man moves to the bottom and smooths back up the top.\", \" He finishes and walks away.\"]}, \"v_-yOwB5rvMAo\": {\"duration\": 72.08, \"timestamps\": [[0, 8.29], [8.65, 18.38], [18.38, 37.84], [39.28, 50.81], [51.53, 55.86], [56.58, 58.02]], \"sentences\": [\"A blonde woman stands by a bridge yelling.\", \" A brunette extends  purple and red yarn to the woman.\", \" The woman is hallucinating this and is then doing an interview.\", \" A group of people in a classroom cheerfully knit away and play with yarn.\", \" The blonde woman hallucinates seeing the woman who gave her the yarn, and starts laughing hysterically.\", \" The group cheerfully displays their yarn.\"]}, \"v_LBC8Fa1oCGI\": {\"duration\": 16.6, \"timestamps\": [[0.08, 16.6], [1.16, 6.56], [11.71, 16.19]], \"sentences\": [\"Several people parasail on a body of water surrounded by other boats, foliage and houses in the distance.\", \"  Several people in swim trunks sail in a body of water  with multi colored parasails.\", \"  A person in the foreground in blue swim trunks flips the sail over but the sail twists and lands on the bottom so that the person and the sail land on their feet.\"]}, \"v_RVYINuYPY6o\": {\"duration\": 233.2, \"timestamps\": [[1.17, 232.03], [17.49, 72.29], [73.46, 229.7]], \"sentences\": [\"Three boys in a grass covered back yard take turns playing a game of cricket on the lawn.\", \"  The boys take turns throwing and hitting the cricket ball, helping each other out by redistributing the ball back into the game when they land in the field.\", \"  One of the boys puts on a football helmet and stands on the side lines catching the ball.\"]}, \"v_3hp7kPpZDhs\": {\"duration\": 76.32, \"timestamps\": [[0, 26.33], [26.71, 35.87], [38.16, 42.74], [42.36, 70.22], [71.36, 76.32]], \"sentences\": [\"On a track, a runner gets ready to perform.\", \" He runs and skips along the way, jumping high at the end.\", \" He walks along the track after being finished.\", \" The man runs and jumps again.\", \" The runner talks to someone.\"]}, \"v_aH7puGPu39Y\": {\"duration\": 189.99, \"timestamps\": [[0, 38], [38.95, 112.09], [112.09, 189.99]], \"sentences\": [\"Three men wearing snowboards get out a ski lift, and a man tie his shoe.\", \" Then, the men ski down a hill covered with snow.\", \" A man bend his legs on the snow, then continue skiing with other men.\"]}, \"v_FKQIdqjY9nI\": {\"duration\": 212.13, \"timestamps\": [[1.06, 211.07], [211.07, 212.13]], \"sentences\": [\"A man plays the bagpipes on stage while wearing a Scottish skirt.\", \" Then, the man ends playing and holds the bagpipes on his left arm.\"]}, \"v_b5E7-GxvCdk\": {\"duration\": 19.09, \"timestamps\": [[0, 19.09], [4.77, 13.65], [6.87, 14.12], [13.65, 19.09]], \"sentences\": [\"A woman is on her hands and knees cutting grass with some scissors.\", \" The camera pans out to give a full view of her cutting the grass.\", \" She makes a joke about the grass having split ends and bad roots.\", \" The camera goes back to a close up of the grass and the video ends.\"]}, \"v_17nr8u_ze0o\": {\"duration\": 57.28, \"timestamps\": [[0.57, 26.35], [20.34, 56.42]], \"sentences\": [\"A camera pans around several wooded areas and leads into a boy holding a leaf blower and smiling to the camera.\", \" The camera pans to an older man and then back to the boys blowing leaves.\"]}, \"v_UG82vrvkYFk\": {\"duration\": 34.0, \"timestamps\": [[0, 1.02], [1.02, 3.57], [4.25, 9.86], [9.86, 17.85], [17.68, 31.11]], \"sentences\": [\"A man in green trunks throws a man in red trunks in a wrestling ring.\", \" The man in green trunks rolls out of the ring.\", \" The man in green trunks spears the other man.\", \" The man in green trunks power bombs the other man.\", \" The man in green trunks pins the other man and wins the match.\"]}, \"v_Tix8XrlBZxg\": {\"duration\": 200.25, \"timestamps\": [[0, 53.07], [53.07, 118.15], [118.15, 146.18], [146.18, 186.23], [186.23, 200.25]], \"sentences\": [\"It's snowing outside of a home with a gray parked van and the man is holding tools, puts the camera down and then begins to clean the snow off of the van.\", \" The man moves the camera and adjusts the position and then walks back to the van begins cleaning the snow off of the entire top of the van.\", \"The man walks back to the camera and moves it once more so it can capture a different view and he continues to wipe the snow off of the side and top of the van.\", \"The piece of the tool breaks off and the man grabs it and shows it to the camera and continues talking, goes off camera, and then shows the camera he has fixed the tool and then moves the camera again.\", \"A woman shows up and she touches the van with her hands and starts to wipe off the snow with just her hands.\"]}, \"v_CBckvP5FR4A\": {\"duration\": 132.12, \"timestamps\": [[0, 0.66], [0.66, 130.14], [131.46, 132.12]], \"sentences\": [\"First a screen is shown, showing what song the man will be playing using the guitar.\", \" Then the man is shown sitting down playing the guitar and he never looks up at the camera.\", \" Finally the video ends and the only thing seen is darkness.\"]}, \"v_bNuRrXSjJl0\": {\"duration\": 228.76, \"timestamps\": [[0, 122.39], [110.95, 221.9]], \"sentences\": [\"A woman is seen standing ready on a diving board and leads into her holding out her arms and performing an impressive dive.\", \" The woman is seen several more times diving into the pool and coming to the surface.\"]}, \"v_dufQjqa3v6w\": {\"duration\": 55.63, \"timestamps\": [[0, 16.41], [16.97, 22.81], [23.08, 55.63]], \"sentences\": [\"A man talks in an office holding a harmonica.\", \" Then, the man opens a stand and turns on the radio.\", \" After, the man plyas the harmonica.\"]}, \"v_qRuPuzY6yiE\": {\"duration\": 84.01, \"timestamps\": [[0, 23.52], [22.68, 48.73], [48.31, 84.01]], \"sentences\": [\"A large group of army solider are seen holding a large rope on one side of each other while other soldiers watch.\", \" A man stands in the middle and the people begin pulling the rope from one another.\", \" One side pulls the others down and the rest of the team cheer while the camera pans around.\"]}, \"v_R0dqEWnDC7k\": {\"duration\": 89.82, \"timestamps\": [[17.96, 48.5], [48.5, 74.55], [74.55, 83.08]], \"sentences\": [\"The video shows two countries represented by blue and green uniforms playing the game of cricket professionally.\", \" The batsmen is batting while the bowler is doing an overhand throw.\", \" The next scene shows a team of cricketers wearing white uniforms getting ready to play as they gather in a circle with their captain.\"]}, \"v_ejMpWeFZLec\": {\"duration\": 119.62, \"timestamps\": [[0, 20.93], [22.73, 119.62]], \"sentences\": [\"A girl walks into the center of a room with a hula hoop.\", \" She does several acts and stunts with the hoop, bringing her head and arms in and out.\"]}, \"v_tLdbdQ9fVZE\": {\"duration\": 56.08, \"timestamps\": [[1.4, 21.59], [20.19, 55.24]], \"sentences\": [\"A person is seen standing next to a tree while waving and speaking to the camera.\", \" The person then holds up dirt and leads into several clips of her raking around a tree and pointing to it.\"]}, \"v_8wxFQrFEo3M\": {\"duration\": 145.98, \"timestamps\": [[0, 7.3], [7.3, 142.33], [142.33, 145.98]], \"sentences\": [\"An intro screen of clouds appear and the blue words across it say \\\"HOOKAH TRICK MONTAGE HD\\\".\", \" Various words show up in between many different clips of many different people blowing smoke out of their mouths and doing many different tricks; and when the words are put together they say \\\"ITS TIME TO MAKE IT RIGHT\\\".\", \" When the clips are done a black screen appears and blue letters appear and it say's \\\"Thanks for watching\\\".\"]}, \"v_kM7jFLYDUy0\": {\"duration\": 11.54, \"timestamps\": [[0, 2.65], [2.77, 9.75], [9.87, 11.54]], \"sentences\": [\"A boy is in a bumper car, spinning around by himself.\", \" He moves back and forward in his car.\", \" He looks lonely as he finally comes to a stop.\"]}, \"v_qumU7AgV3Mk\": {\"duration\": 131.54, \"timestamps\": [[2.63, 115.76], [7.89, 21.7], [62.48, 65.11], [92.08, 92.74], [104.58, 106.55], [116.41, 130.88]], \"sentences\": [\"People interact in a circling ice arena.\", \" A lady talks to a group of males.\", \" A guy slips, falls on the ice arena, and laughs.\", \" A man opens his mouth very wide to show his excitement.\", \" A lady stops the circling stone with a broom.\", \" The credits with two mini clips are shown.\"]}, \"v_PFYk8lhE7-0\": {\"duration\": 32.83, \"timestamps\": [[0, 1.97], [4.1, 18.72], [19.37, 32.83]], \"sentences\": [\"A man is outside with a large metal box.\", \" Another man is sanding a wall and ceiling inside a building.\", \" They then sand the floors.\"]}, \"v_aeKIYkn99_Q\": {\"duration\": 219.1, \"timestamps\": [[0, 4.38], [4.38, 7.67], [7.67, 212.53], [47.11, 51.49], [87.64, 93.12], [102.98, 115.03], [124.89, 127.08], [214.72, 218.01], [216.91, 219.1]], \"sentences\": [\"We see the title on a black screen.\", \" People are in line at a ski slope.\", \" We see people in rafts being pulled up a hill and people riding rafts down the slope.\", \" We see a man at the top of the mountain.\", \" We see writing stating the camera was dropped.\", \" The man films his face as he slides down the hill.\", \" We see a young man's face as he rides down the hill.\", \" We see people walking to their cars in the parking lot.\", \" At the end we see a kid laying on a raft.\"]}, \"v_t_2jTjX3a_o\": {\"duration\": 213.76, \"timestamps\": [[1.07, 55.58], [57.72, 156.05], [130.4, 211.63]], \"sentences\": [\"A countdown is shown followed by a woman catching balls thrown at her.\", \" The number counts down more and shows more clips of women playing dodgeball.\", \" Several more numbers and clips are shown ending with people performing impressive throws.\"]}, \"v_YnB0VW34wlY\": {\"duration\": 26.08, \"timestamps\": [[0, 26.08], [20.21, 22.17], [25.82, 26.08]], \"sentences\": [\"A boy is chopping wood in a forest.\", \"  The boy almost drops the axe.\", \"  The boy looks at the camera.\"]}, \"v_dI1GZfJ-A0E\": {\"duration\": 38.78, \"timestamps\": [[0.78, 12.6], [11.63, 31.22], [23.85, 37.61]], \"sentences\": [\"A person is seen walking back to the end of their car and putting their hands on their hips.\", \" They realize they have a flat tire and pull out a jack attempting to get it off.\", \" The woman falls and fails backwards off a bridge, landing on a truck.\"]}, \"v_9bnt6lDcF6Y\": {\"duration\": 83.62, \"timestamps\": [[5.02, 43.06], [44.32, 76.51], [53.51, 70.24], [77.34, 80.27]], \"sentences\": [\"A man in a blue polo speaks to the camera.\", \" In a different setting, the man is instructing a blonde woman on how to perform sit ups.\", \" The woman does sit ups.\", \" The man returns to speak to the camera.\"]}, \"v_Q7eK0xT6VSQ\": {\"duration\": 28.03, \"timestamps\": [[0, 28.03], [4.76, 12.61]], \"sentences\": [\"A video is shown how to change a spare tire.\", \"  The first tire is taken off and replaced, but nothing else is done.\"]}, \"v_jwd8ELi0au8\": {\"duration\": 123.93, \"timestamps\": [[0, 4.96], [6.2, 123.93], [8.67, 9.91], [22.31, 23.55], [53.91, 54.53], [88.61, 96.66]], \"sentences\": [\"We see a dart board on a wall.\", \" Two men are playing a game of darts.\", \" We see the camera operator.\", \" We see a man up close in the camera.\", \" We see a man up close.\", \"  We see a mans socks and a man close to the camera.\"]}, \"v_q4FZTmaqEx8\": {\"duration\": 203.52, \"timestamps\": [[0, 51.9], [48.85, 163.84], [125.17, 203.52]], \"sentences\": [\"A man is seen speaking to the camera and begins kneeling down on a roof.\", \" The man then use a tool to scrape off tiles on the roof as well as another tool to put them back down.\", \" The man continues taking off tiles on the roof and gluing others down and ends by smiling to the camera.\"]}, \"v_lxtG6PbeaqY\": {\"duration\": 133.79, \"timestamps\": [[0.67, 132.46], [12.04, 45.49], [48.83, 105.03], [111.72, 121.08]], \"sentences\": [\"Two dodgeball teams play against each other in an interior gym surrounded by onlookers in bleachers.\", \"  The game begins with a team of men against a team of women each taking turns throwing dodge balls at each other violently.\", \"  The teams then change sides on the gym floor with the women on the left and the men on the right.\", \"  The game ends and both teams meet in the middle of the floor and give each other high fives.\"]}, \"v_fJ45W32t6h0\": {\"duration\": 121.46, \"timestamps\": [[6.68, 18.22], [16.4, 27.33], [44.94, 61.95], [58.91, 121.46]], \"sentences\": [\"A person kicks off a tubing participant to ride down the snow slide.\", \" The camera pans to two tubers who are waiting to go down themselves.\", \" The next two people ride down the slide.\", \" Finally, The cameraman takes the ride and we get to live vicariously through them.\"]}, \"v_x3cOxXOYbwA\": {\"duration\": 37.04, \"timestamps\": [[0, 12.04], [10.37, 28.7], [27.78, 36.48]], \"sentences\": [\"A weight is seen putting put on a bar and leads into a man kneeling down.\", \" The man grabs a set of weights and begins to lift it over his head.\", \" He throws the weight up and then back on the ground.\"]}, \"v_P6t2HLPZ3Dk\": {\"duration\": 79.41, \"timestamps\": [[0, 24.62], [24.22, 48.44], [48.04, 72.27], [72.27, 79.41]], \"sentences\": [\"A boy dressed in a burgundy polo is at a bowling alley and throws the ball high up in the air and it ends up coming back in the other lane.\", \"More bowlers are shown and they begin falling onto the lanes as the attempt to throw the ball.\", \"A man then comes along and spins around on his head and ends up hitting the pins with the balls.\", \"Finally,a ball is thrown correctly and the man congratulates him.\"]}, \"v_RTbvrcdPcrs\": {\"duration\": 129.82, \"timestamps\": [[0, 129.82], [8.44, 129.82], [39.6, 46.74]], \"sentences\": [\"People are working out in a room.\", \" They are stepping up and down on a blue mat.\", \" They start raising their hands in the air.\"]}, \"v_CtooIi6Mk7U\": {\"duration\": 194.91, \"timestamps\": [[0, 62.37], [66.27, 111.1], [123.77, 130.59], [175.42, 182.24]], \"sentences\": [\"A man is standing in a yard flying a kite.\", \" A woman is standing in front of him and flies the kite after.\", \" The kite is shown in the sky.\", \" Another woman starts flying the kite outside.\"]}, \"v_UnpBbcIa3zA\": {\"duration\": 72.05, \"timestamps\": [[0, 12.61], [12.97, 19.45], [20.17, 43.59], [43.95, 72.05]], \"sentences\": [\"An athlete sets up her stance in order to throw a disc during a track and field event.\", \" The woman throws the disc far across the field.\", \" The athlete celebrates the throw and the crowd cheers.\", \" A replay is seen of the woman's throw.\"]}, \"v_RmuhtC-TCck\": {\"duration\": 176.37, \"timestamps\": [[0, 48.5], [48.5, 130.51], [131.39, 173.72]], \"sentences\": [\"A man explains while stands on a fenced court.\", \" Then, the man dance hip hop, and then explain doing hip hop demonstrations.\", \" After, the man sit on the floor and raise his body with her hands, the spins the legs to do hip hop movements.\"]}, \"v_LB1A7BobPwg\": {\"duration\": 218.48, \"timestamps\": [[0, 4.37], [4.37, 206.46], [39.33, 43.7], [74.28, 83.02], [109.24, 155.12], [159.49, 163.86], [210.83, 216.29], [217.38, 218.48]], \"sentences\": [\"We see the white title screen.\", \" We then see a bartender talking to two people in a bar.\", \" The man puts his arm behind his back.\", \" The bartender puts two cards on the bar.\", \" They push their cards and drink beer, then pull cards and drink beer.\", \" The bartender spits the beer back in the glass.\", \" The bartender looks at the camera and speaks.\", \" We see the end title screen.\"]}, \"v_yPEf9ajKwI8\": {\"duration\": 216.95, \"timestamps\": [[0, 40.13], [40.13, 105.22], [104.13, 168.13], [167.05, 216.95]], \"sentences\": [\"people are moving the furniture out of the living room, even the carpet and everything.\", \" They come in and sweep the floor and then start putting down some tarp and wood.\", \" They are remodeling the floor from carpet to wood floors.\", \" Once the floor is done they bring back all the furniture.\"]}, \"v_KcSo4p-hhBs\": {\"duration\": 90.63, \"timestamps\": [[0, 43.95], [42.14, 90.63]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her cutting a person's hair.\", \" She continues cutting and styling the hair while the man looks off into the distance.\"]}, \"v_nR7tqWpNpe8\": {\"duration\": 168.07, \"timestamps\": [[7.56, 134.45], [24.37, 130.25], [34.45, 107.56], [68.07, 104.2], [99.16, 113.45], [107.56, 132.77], [128.57, 148.74]], \"sentences\": [\"There's a group of rafters wearing yellow vests going on an adventure.\", \" They are rowing the raft through the river as the turbulent waves gush towards their raft.\", \" They continue rafting through the river as they stay afloat against the fierce waves.\", \" The rafters stay afloat despite the turbulent and agitated waves of the river.\", \" Some of the rafters are on top of a hill and one of the rafter is diving into the water.\", \" The rafters continue their journey through the turbulent waters of the river.\", \" There's a person bungee jumping from an elevated crane into the river.\"]}, \"v_lfGmSfTjnA8\": {\"duration\": 160.5, \"timestamps\": [[0, 37.72], [37.72, 87.47], [87.47, 160.5]], \"sentences\": [\"A woman is standing in a messy kitchen in front of the sink preparing to cut something.\", \"She grabs a potato and a peeler and begins taking the edges off.\", \"As she continues cutting,two young girls walk in the kitchen and begin watching her and grabbing dishes.\"]}, \"v_zfqach0dDYo\": {\"duration\": 7.11, \"timestamps\": [[0, 3.41], [3.41, 7.11]], \"sentences\": [\"wrestler is in a ring doing a head lock and a man jumps outside the ring and push the men.\", \" referee is in the ring and counts the seconds of the wreslers on the floor.\"]}, \"v__B2kFN9MfwU\": {\"duration\": 141.16, \"timestamps\": [[0, 23.29], [21.17, 38.11], [41.64, 94.57], [72.69, 141.16]], \"sentences\": [\"A woman is shown hosting a news segment when the camera pans to sunscreen news.\", \" Several people are shown on a beach and interviewed by a reporter on sunscreen.\", \" Bottles are shown containing sunscreen and people putting it on.\", \" The reporter talks to people and pans back to shirts used for sunscreen and people traveling around the world.\"]}, \"v_18QVPZgjy8w\": {\"duration\": 132.41, \"timestamps\": [[0, 2.65], [2.65, 39.06], [39.06, 58.26], [62.23, 76.8], [77.46, 108.58], [109.24, 123.15], [124.47, 132.41]], \"sentences\": [\"We see an opening title screen.\", \" A man holds a badminton racket in a gym and talks.\", \" The man leans to the left and holds the racket out.\", \" The man turns to the right and shows his back to the camera.\", \" the man talks to the camera and the man jumps back and forth across the screen.\", \" The man talks to the camera and the man leans left one more time.\", \" We see the closing title screen.\"]}, \"v_xYuqZ_RrCC0\": {\"duration\": 102.4, \"timestamps\": [[0, 10.75], [10.75, 19.97], [19.46, 35.33], [35.33, 50.18], [50.18, 59.39], [60.42, 67.58], [67.07, 71.68], [72.19, 102.4]], \"sentences\": [\"A man combs his beard in front of a mirror in his bathroom.\", \" The man reaches down to pick up sizzors then trims his mustache.\", \" The man picks up lotion which he applies to his neck.\", \" The man picks up a package of razors and assembles them into his steel razor gadget.\", \" The man uses his razor to trim his face and beard.\", \" The man picks up a package and applies a product to his face.\", \" The man uses a towel to wipe down his face.\", \" the man picks up a bottle of oil from the counter and applies it to his beard.\"]}, \"v_yLS0UuNYXOI\": {\"duration\": 132.24, \"timestamps\": [[0, 27.77], [27.77, 102.48], [102.48, 128.93]], \"sentences\": [\"A large ice glacier is shown in the water.\", \" A boat is pulling a person on skis behind the boat.\", \" The person is floating in the water.\"]}, \"v_SY5WpDrtmEE\": {\"duration\": 186.89, \"timestamps\": [[0, 15.89], [16.82, 55.13], [55.13, 96.25], [95.31, 157.92], [157.92, 186.89]], \"sentences\": [\"A man is shown performing a song at Google's London offices.\", \" They are standing inside of an office space and playing the flute.\", \" The man starts really getting into it and cheering very passionately a people look on.\", \" A close up is shown of him playing over and over.\", \" he then ends the song to a round of applause and walks out of the frame.\"]}, \"v_icjyAZ3KVBw\": {\"duration\": 63.0, \"timestamps\": [[0, 41.89], [41.89, 57.64], [57.64, 63]], \"sentences\": [\" A man in a red shirt is standing next to an exercise machine.\", \" He gets on the machine and starts working out.\", \" Words are shown on the screen.\"]}, \"v_qSXMTcGBqtY\": {\"duration\": 223.77, \"timestamps\": [[6.71, 108.53], [109.65, 214.82]], \"sentences\": [\"A woman straights the hair of a young lady using a brush and a hair dryer.\", \" The woman holds part of the the hair up, then she curves the hair with and hair iron.\"]}, \"v_J3jICOa0WCk\": {\"duration\": 213.07, \"timestamps\": [[0, 56.46], [50.07, 180.04], [165.13, 212]], \"sentences\": [\"A large group of people are seen standing around a parking lot with one holding a ball.\", \" The group then plays a game of kickball while moving around the area and throwing balls at one another.\", \" The people continue walking around while looking to one another and throwing the ball.\"]}, \"v_eg3oZ4XCEKk\": {\"duration\": 184.75, \"timestamps\": [[3.7, 109], [80.37, 177.36]], \"sentences\": [\"A large group of people are seen running around a disney resort while waving to the camera and several shots of the kingdom being shown.\", \" Many characters are shown waving to the runners as well as more shots of people running past characters and going through the finish line and celebrating.\"]}, \"v_Q-HdDcyC9d8\": {\"duration\": 65.67, \"timestamps\": [[0, 15.76], [9.52, 22.98], [21.01, 65.67]], \"sentences\": [\"The person with black apron spray a white foam on the shoes.\", \" The person brush the shoes with white foam on it.\", \" The person brushed the shoes after the foam is gone and began spraying a chemical in it and polished the metal part of the shoes.\"]}, \"v_OWEwmnZvvJE\": {\"duration\": 151.98, \"timestamps\": [[3.8, 73.71], [62.31, 149.7]], \"sentences\": [\"A young man is seen standing around a pool followed by several clips of the boy jumping in the pool and swimming around.\", \" The boy continues to swim all around the pool with a man swimming behind him and the boy smiling to the camera.\"]}, \"v_ZMG8WE3Y22k\": {\"duration\": 135.58, \"timestamps\": [[0, 13.56], [13.56, 50.84], [50.17, 84.74], [84.06, 113.21], [113.21, 135.58]], \"sentences\": [\"Several pictures of different individual are shown white water rafting as an intro for a video.\", \"Men then arrive in a field and take the rafts out before more pictures are shown.\", \"The men then stand in the field with their paddles and actually get in the raft demonstrating the proper way to row.\", \"Finally,they are in the water and all of them begin to paddle throughout the water.\", \"More people join them and they eventually get out of the water and walk back to land.\"]}, \"v_qakxXmFvFy0\": {\"duration\": 58.42, \"timestamps\": [[0, 58.42], [2.04, 58.42]], \"sentences\": [\"Three kids are making a sand castle on the beach.\", \" A man is laying next to them on a towel.\"]}, \"v_xDRvD_-fvd8\": {\"duration\": 77.3, \"timestamps\": [[0, 7.73], [12.37, 65.32], [66.48, 77.3]], \"sentences\": [\"After a Tissot ad appears, a row of fencers are shown.\", \" They high five, and are displayed in several clips fighting, then back to the row of standing on the stage.\", \" One is injured, and is carried away.\"]}, \"v_Ix2vIutdeNQ\": {\"duration\": 45.23, \"timestamps\": [[0, 3.17], [3.39, 28.72], [28.72, 31.21], [34.38, 38.22], [41.84, 45.23]], \"sentences\": [\"We see an opening title screen.\", \" A smiling man in sunglasses opens mouthwash and gargles.\", \" The man spits in a cup.\", \" A lady removes a plaque from the wall.\", \" We see a closing screen.\"]}, \"v_UgsqMLsPG0k\": {\"duration\": 157.97, \"timestamps\": [[0, 5.53], [6.32, 93.2], [93.2, 146.91], [147.7, 151.65], [152.44, 157.97]], \"sentences\": [\"We see an opening title screen.\", \" The man then puts plaster on a base and applies it to the ceiling while on stilts.\", \" The man walks back and forth smoothing the applied plaster.\", \" The man walks to and turns off the camera.\", \" We see the ending title screen.\"]}, \"v_eLQ1c2tMJls\": {\"duration\": 72.31, \"timestamps\": [[0.36, 6.15], [7.95, 36.88], [37.96, 48.81], [53.15, 57.85], [63.27, 72.31]], \"sentences\": [\"The credits of the clip are shown.\", \" A man picks up a brown boot and brushes it.\", \" A man opens an aerosol can and sprays the boot.\", \" A man rubs the products of a black tube on the boot's sole edge.\", \" The credits of the video are shown.\"]}, \"v_4a0Q-IAqO8U\": {\"duration\": 231.6, \"timestamps\": [[0, 64.85], [63.69, 74.11], [76.43, 231.6]], \"sentences\": [\"A man in a black shirt is standing outside talking.\", \" He then is inside a swimming pool.\", \" He is back outside talking to the camera.\"]}, \"v_PSUGaj7_5LI\": {\"duration\": 181.86, \"timestamps\": [[0, 18.19], [18.19, 63.65], [63.65, 112.75], [112.75, 181.86]], \"sentences\": [\"At the bowling alley, there are a lot of people.\", \" The little boy rolls for his turn and he strikes.\", \" He waits for his ball to come back and gets prepared to take his next turn, it's another strike.\", \" He takes another turn and makes another strike, everyone is congratulating and hugging him.\"]}, \"v_k3nRbFeancA\": {\"duration\": 84.78, \"timestamps\": [[0, 66.97], [0, 15.26], [23.74, 66.55], [67.4, 84.78]], \"sentences\": [\"The video shows various clips of sumo wrestlers fighting in a ring while a referee and audience looks on.\", \"  In the first clip, a much bigger wrestler wrestles a smaller man who ends up winning.\", \" The video continues with several other clips of wrestlers and how each wrestler wins the round.\", \" The video ends with a comedy commercial where a smaller sumo wrestler crawls under another very large one, and ends up stuck in his sumo outfit.\"]}, \"v_juKQ_gU42EM\": {\"duration\": 45.14, \"timestamps\": [[0, 1.13], [1.35, 45.14], [27.54, 29.12], [29.34, 34.08]], \"sentences\": [\"A anchorman in a suit sits with a laptop on his clear desk.\", \" A man is tackled by a bull.\", \" The man gets up and his mouth is bloody.\", \" People help the man out of the rodeo dirt area.\"]}, \"v_6iuD3pSgBcw\": {\"duration\": 208.21, \"timestamps\": [[0, 15.62], [16.66, 208.21], [33.31, 188.43], [92.66, 129.09], [139.5, 208.21]], \"sentences\": [\"A young man is standing on stage and eventually several other boys join in wearing kilts.\", \" They stand in front of one drum and perform a routine using only drums.\", \" The boys spin and flip their sticks constantly and continue performing their drumming routine.\", \" One stands up and begins singing a song while the others join in.\", \" They boys go back to playing the drums and finally finish by playing each other's drums and faster than other.\"]}, \"v_kI0AyrGe-NU\": {\"duration\": 37.43, \"timestamps\": [[0, 36.87], [9.92, 30.32], [14.79, 36.87]], \"sentences\": [\"Two cats are seen laying on a bed facing one another.\", \" One cat then begins to lick the other.\", \" The first cat then stops and the other licks afterwards.\"]}, \"v_NbIxjYWSURI\": {\"duration\": 231.17000000000002, \"timestamps\": [[0, 65.88], [61.26, 208.05], [209.21, 231.17]], \"sentences\": [\"A montage of athletes completing incredible stunts and races are shown as well as hundreds of people watching in the audience.\", \" The shots lead into several more athletes jumping over a pole while pausing the in the middle, finishing with the shot being shown again in slow motion.\", \" The final gymnast waves to the camera and walks away.\"]}, \"v_DWVI_N4Aeo8\": {\"duration\": 26.47, \"timestamps\": [[0.4, 13.63], [6.49, 25.94]], \"sentences\": [\"A diving is seen standing ready with his arms out to the side.\", \" The man then performs an impressive dive and is followed by several clips of other people diving.\"]}, \"v_Or7mIy83LsQ\": {\"duration\": 118.17, \"timestamps\": [[0, 44.31], [18.32, 20.09], [43.13, 86.26], [87.44, 115.21]], \"sentences\": [\"A teen stand on a track, then he runs and jumps long on a sand box, after the teen stands and walk.\", \" A person pass behind the teen.\", \" An athlete performs long jump in the sand box.\", \" Another athlete runs and jumps long over the sand box.\"]}, \"v_JNuVGc8mn54\": {\"duration\": 117.89, \"timestamps\": [[0, 17.09], [17.09, 29.47], [30.06, 69.55], [69.55, 117.89]], \"sentences\": [\"There men have chairs and are sitting int he subway way making some music.\", \" One of them is playing guitar and two of them are playing the violin.\", \" People walk by them and a kid pushing a stroller and some other children come and stop to watch them for a little by.\", \" There is a crowd that has actually stopped to watch them play, clapping and one of them leaving money in their case.\"]}, \"v_-sXrwv7C5CI\": {\"duration\": 54.15, \"timestamps\": [[0, 2.98], [3.52, 54.15], [25.99, 54.15], [49.55, 50.63], [51.98, 54.15]], \"sentences\": [\"A man jumps onto two bars.\", \" He does a gymnastics routine on the bars.\", \" A man in a white jacket watches him perform.\", \" He does a flip and lands on the mat.\", \" The crowd applauds him after he lands.\"]}, \"v_5yfDyVVkPuU\": {\"duration\": 94.67, \"timestamps\": [[0, 35.03], [31.71, 93.25]], \"sentences\": [\"Two men are seen speaking to the camera followed by several clips of people hitting a ball.\", \" More shots are shown of people holding up sticks and hitting a ball with another coach near by helping and speaking to the camera.\"]}, \"v_5gBRDguUe8U\": {\"duration\": 143.09, \"timestamps\": [[1.43, 58.67], [43.64, 140.23]], \"sentences\": [\"A person is seen sitting on a stool and piecing together several parts of a bike.\", \" The person continues piecing the bike together and pans around the finished product in the end.\"]}, \"v_F6FyJl5OQ0A\": {\"duration\": 182.98, \"timestamps\": [[0, 3.66], [3.66, 12.81], [12.81, 18.3], [18.3, 22.87], [22.87, 177.49], [177.49, 182.98]], \"sentences\": [\"A green boat with black and white accents on it is gliding on the water.\", \" A pair of blue and black shoes are on a deck while a foot is being placed the right side.\", \" A man is now standing on a waterboard that the blue shoes are attached to and he's holding a blue rope attached to a triangular handle.\", \" White words on a black screen show up and read Zucky Wakeboarding 2015 summer and then fades away.\", \" The man is shown again and now he's in motion wake boarding as he holds onto the handle connected to the rope and he is doing various tricks going from side to side, occasionally jumping, spinning and sometimes doing all at once.\", \" The video ends with white words and numbers on a black screen that read -END- editor: 05.\"]}, \"v_lpeyMIH1YqA\": {\"duration\": 24.78, \"timestamps\": [[8.55, 15.49], [15.49, 22.92], [22.92, 24.78]], \"sentences\": [\"A man is sitting on a revolving chair with his one leg folded over the other.\", \" Another man takes a cloth and begins cleaning his black leather shoes with a cloth to make it shiny.\", \" He cleans the shoe with a back and forth motion.\"]}, \"v_qfb0Qe7s9oo\": {\"duration\": 155.11, \"timestamps\": [[0, 155.11], [7.76, 12.41], [19.39, 22.49], [40.33, 60.49], [70.58, 75.23], [88.41, 100.82], [107.03, 114.01], [121.76, 125.64], [136.5, 155.11]], \"sentences\": [\"A woman with blonde hair is explaining how to make rosemary vodka lemonade.\", \" Two jars of liquid appear.\", \" The woman takes a sip of the liquid.\", \" The woman prepares the liquid with herbs and sugar in a bowl.\", \" The woman pours the liquid in a glass.\", \" The woman pours the liquid into jars with ice.\", \" The woman mixes the concoction.\", \" The woman drinks the liquid in a jar.\", \" The video ends with a view of the jars with liquid.\"]}, \"v_yTJCrP0HqEE\": {\"duration\": 147.89, \"timestamps\": [[0, 28.84], [28.84, 63.59], [63.59, 103.52], [102.78, 147.89]], \"sentences\": [\"A woman is shown speaking to the camera and showing various shots of children sitting in a chair and performing on tv.\", \" The woman speaks more to the camera and puts a contact into the girls eye.\", \" The girl smiles into a mirror and shows how she takes out the contacts and a reminder on your phone.\", \" One last woman speaks to the camera and the girl cheers and smiles again.\"]}, \"v_xfVx1-emCV8\": {\"duration\": 90.56, \"timestamps\": [[0, 5.89], [5.89, 11.77], [11.77, 20.83], [20.83, 46.64], [46.64, 51.62], [51.62, 71.99], [71.99, 90.56]], \"sentences\": [\"The video starts with a curling game being shown from overhead.\", \" The camera then shows a lady skating across the ice.\", \" Then the camera focuses back onto the curling game showing a lady about to shoot.\", \" They return to the overhead angle of the game while the lady prepares to shoot.\", \" Other players are shown watching in anticipation.\", \" The player makes the shot and the camera follows along.\", \" The crowd cheers and a replay of the shot is shown.\"]}, \"v_jWuq6clN5q4\": {\"duration\": 78.97, \"timestamps\": [[21.72, 59.23], [3.95, 59.23], [71.47, 75.81]], \"sentences\": [\"The people are shown playing the drums using wooden drumsticks.\", \" There are also people behind them playing golden cymbals.\", \" After a while they all stop playing and stand silently.\"]}, \"v_AEer099-yUM\": {\"duration\": 47.14, \"timestamps\": [[0, 47.14], [4.01, 47.14], [8.72, 47.14], [33.23, 47.14]], \"sentences\": [\"A woman stands in a red dress.\", \" She is throwing darts at a board.\", \" She throws several darts at the board.\", \" She throws darts in slow motion.\"]}, \"v_FoPNGc6Lg8k\": {\"duration\": 144.45, \"timestamps\": [[0, 144.45], [13.72, 98.23], [122.78, 144.45]], \"sentences\": [\"A woman is completing a routine in the olympics on the balance beam.\", \"  She jumps up and down gracefully and then falls for a bit of a point deduction.\", \"  She finishes her routine and gets a hug from her coach.\"]}, \"v_8HY9CPl9CqE\": {\"duration\": 32.09, \"timestamps\": [[0, 5.78], [0, 10.91], [16.53, 22.94], [22.46, 32.09]], \"sentences\": [\"A group of swimmers are getting ready to perform.\", \" The crowd watches the girls get ready.\", \" A girl dives off the diving board and people cheer.\", \" She climbs out of the pool while another swimmer gets ready to jump.\"]}, \"v_ffDlO-IrsxI\": {\"duration\": 73.53999999999999, \"timestamps\": [[0, 9.93], [9.56, 38.98], [39.34, 73.54]], \"sentences\": [\"An assortment of teams male and female are lined up outside of a building then they are let in.\", \"In the building,there are multiple pool tables and a man begins instructing them on what to do.\", \"Different people begin hitting the balls and the instructor goes over to help them.\"]}, \"v_Alv7N6Ynm1Y\": {\"duration\": 197.77, \"timestamps\": [[0, 30.65], [33.62, 112.73], [117.67, 197.77]], \"sentences\": [\"A group of people have gathered on a stage.\", \" The audience claps for the performers.\", \" They shake hands and hug as credits roll.\"]}, \"v_x0HMqVvqHJE\": {\"duration\": 183.74, \"timestamps\": [[0, 183.74], [6.43, 153.42], [7.35, 170.88], [37.67, 183.74], [81.76, 181.9], [152.5, 179.15], [157.1, 175.47]], \"sentences\": [\"Many females, some in blue shirts and some in white shirts, run around on a field playing a game.\", \" A few people watch from the bleachers in the background.\", \" Two referees runs about and down the field with the players.\", \" Other players watch from the sideline near a fence.\", \" A group of people keeping score sit at a table on the sideline.\", \" Some of the people watching from the bleachers are standing now.\", \" A man in a blue sweatshirt walks on the sideline.\"]}, \"v_H9ekrZnisUI\": {\"duration\": 22.29, \"timestamps\": [[0, 3.46], [3.34, 7.13], [7.13, 10.25], [10.25, 22.29]], \"sentences\": [\"Outside in the yard there is a lady dressed like a cupcake and she is playing a game of cricket.\", \" She hits the yellow ball but it does not move very far at all.\", \" She has a little bit of trouble trying to get a good position to hit the ball again.\", \" When she finally hits it again it does not go through the course like she was expecting so she is disappointed.\"]}, \"v_VBY8feOQgy4\": {\"duration\": 159.29, \"timestamps\": [[24.69, 74.87], [74.87, 116.28], [116.28, 152.12], [152.12, 157.7]], \"sentences\": [\"There is an indoor gym where two contestants are fencing with each other.\", \" There is a person dressed in black who is their referee.\", \" Another pair of contestants are also fencing at the same event.\", \" Two men dressed in fencing gear continue to fence in the gym.\"]}, \"v_bEniqIC5Ric\": {\"duration\": 61.91, \"timestamps\": [[0, 38.38], [38.38, 61.91]], \"sentences\": [\"A woman rides a camel holding a rode with her right hand while a man pulls the camel.\", \" Then, the camel stops and the woman gets down from the camel.\"]}, \"v_OyeXXxV3MSg\": {\"duration\": 71.15, \"timestamps\": [[0, 11.38], [0, 55.85], [38.42, 45.53]], \"sentences\": [\"Two men laugh and bow there heads watching work get done.\", \" The person paints their friends nails.\", \" The man removes his friends hand and continues working.\"]}, \"v_ytXLI-2wgaQ\": {\"duration\": 185.88, \"timestamps\": [[13.01, 170.08], [13.94, 15.8], [13.94, 79.93], [80.86, 185.88]], \"sentences\": [\"A group of children play hockey on a field with coaches coaching as they play.\", \" A coach demonstrates how to block a goal inside of a interior gym in front of a group of young people.\", \"  The children then emulate the training as the camera cuts to the coach talking to the camera.\", \"  The children continue to play hockey until the screen fades.\"]}, \"v_TN8tBV7CY6U\": {\"duration\": 112.2, \"timestamps\": [[0, 11.22], [12.34, 63.39], [67.32, 91.44], [98.74, 112.2]], \"sentences\": [\"A close up is shown of a mini pool table with cues and balls.\", \" A man uses the cue to shoot the balls into the pockets.\", \" He sits a doll on the table to show size.\", \" He also shoots a wiffle ball on the table, and a marble.\"]}, \"v_DD3MU7uM9mM\": {\"duration\": 13.28, \"timestamps\": [[0, 2.59], [2.59, 7.9], [8.04, 13.28]], \"sentences\": [\"Two men are fighting inside a wrestling ring.\", \" They flip and tumble over each other.\", \" One of the wrestlers pins the other, and the count goes to three.\"]}, \"v_25dJIdZj6Xs\": {\"duration\": 6.9, \"timestamps\": [[0, 0.93], [0.86, 3], [3, 6.9]], \"sentences\": [\"Two people wearing scuba gear are sitting at the edge of a boat with their backs to the water.\", \" The person on the right leans all the way back and splashes in the water.\", \"The next person also leans back but can't fully fall into the water because they're stuck to something on the boat, so their legs go flailing.\"]}, \"v_sTtFSpelQk4\": {\"duration\": 209.57, \"timestamps\": [[4.19, 201.19], [4.19, 18.86], [18.86, 57.63], [58.68, 202.24]], \"sentences\": [\"A man in a red life vest demonstrates how to paddle in a canoe through gestures and through talking to the camera from a canoe in a body of water.\", \"  A man in a red canoe is paddling with one oar in a small body of water while talking to the camera.\", \"  The man drifts to the side slightly while talking using the paddle as an anchor in the water and seemingly demonstrating how to paddle using the paddle and hand gestures to explain how to move the paddle and canoe in the water.\", \"  The man then pushes away from the camera with the paddle and drifts out into the water before paddling back to the camera again.\"]}, \"v_-_Ud3LXSjdE\": {\"duration\": 66.6, \"timestamps\": [[0, 66.6], [5.33, 17.98], [32.3, 66.6]], \"sentences\": [\"A young kid is smoking a cigarette.\", \" The kid flip the cigarette and tried to put the other end of the cigarette to his mouth.\", \" The young kid continue to smoke, he make faces and then smoked.\"]}, \"v_5LHIoaSvKCU\": {\"duration\": 70.15, \"timestamps\": [[2.46, 28.06], [19.99, 56.82], [49.1, 68.39]], \"sentences\": [\"A young child is seen speaking to the camera while holding up a glass and walking to a cabinet.\", \" She fills up the glass and peels lemons into the water.\", \" She then uses a spoon to drink the water as well as a straw and nodding her head waving.\"]}, \"v_II0BlR0BriI\": {\"duration\": 147.31, \"timestamps\": [[0, 13.26], [20.62, 86.91], [87.65, 147.31]], \"sentences\": [\"A man is talking inside a gym.\", \" A group of female gymnasts form a cluster, then lift a girl over their heads.\", \" They hold her up by one leg before twirling her back down and catch her in their arms.\"]}, \"v_HtuDZLsOK6M\": {\"duration\": 125.91, \"timestamps\": [[0, 30.22], [30.85, 83.1], [80.58, 125.91]], \"sentences\": [\"Various shots of scenery are shown and leads to a person scratching a dog and pulling a rope.\", \" More shots of people riding a boat are shown, seagulls flying, and people playing music.\", \" Next a person is seen drawing on a map and ends with an anchor and pictures of people.\"]}, \"v_PjSOjB7qhcA\": {\"duration\": 31.58, \"timestamps\": [[0, 31.58], [16.26, 16.74], [18, 22.26]], \"sentences\": [\"Girls are playing dodge ball outside with only one ball.\", \" A girl gets hit with the ball.\", \" The girl gets out of the game and goes and holds onto the clothing line.\"]}, \"v_4X8raZBOzvM\": {\"duration\": 97.28999999999999, \"timestamps\": [[0, 89.51], [79.29, 80.75], [90.97, 91.45], [91.94, 97.29]], \"sentences\": [\"Two old bagpipe players play towards each other.\", \"  One bagpipe player turns.\", \"  The bagpipe players finish playing.\", \"  The crowd claps for the players.\"]}, \"v_U7iNqQs1kRk\": {\"duration\": 69.75, \"timestamps\": [[0, 27.55], [31.74, 69.75]], \"sentences\": [\"A man is seated in a chair with a hand drum as another man plays bongos behind him.\", \" They play for an extended period together.\"]}, \"v_rMes9poepAI\": {\"duration\": 219.36, \"timestamps\": [[0, 3.29], [3.29, 14.26], [14.26, 53.74], [54.84, 83.36], [84.45, 104.2], [106.39, 163.42], [163.42, 166.71], [167.81, 211.68], [213.88, 216.07], [216.07, 219.36]], \"sentences\": [\"We see the title card for the product.\", \" We see a lady cleaning her floor.\", \" We see the vacuum attachment product and see the product in action.\", \" The lady shows each side, and we see her attach the product.\", \" We see the lady mopping.\", \" Then we see the ease of using the attachment.\", \" We see the lady relaxing after cleaning.\", \" We see the attachment product again.\", \" We see the lady giving a thumbs up.\", \" The title screen returns to end the video.\"]}, \"v_09Kr5TQ9DHQ\": {\"duration\": 122.25, \"timestamps\": [[0, 25.06], [23.84, 67.85], [67.85, 122.25]], \"sentences\": [\"A person is shown drawing several lines on a piece of paper that leads into several fast motion clips of snowy areas.\", \" More close ups are shown followed by a person riding down the mountain.\", \" More people riding down are shown and leads into several shots of people performing ski and snowboarding tricks down a mountain.\"]}, \"v_esQnfUcBbPE\": {\"duration\": 106.95, \"timestamps\": [[0, 36.9], [37.97, 81.28], [81.28, 106.95]], \"sentences\": [\"A black bull is taunted with a dummy hanging on a rope as the bull lunges at the dummy.\", \"A man with a green and white umbrella taunts a black bull on a rope while onlookers also taunt the bull from the side on a wall.\", \"The black bull lunges at another dummy and the dummy get caught on the bulls horn as the bull runs off after other taunting targets.\"]}, \"v_J9Sl_H-1BOA\": {\"duration\": 15.14, \"timestamps\": [[0, 8.4], [8.25, 15.14]], \"sentences\": [\"A young girl is seen sitting front of a piano and playing the instrument with her finger tips.\", \" She continues playing while the camera captures her from afar.\"]}, \"v_mnv-Qz4QDfU\": {\"duration\": 92.07, \"timestamps\": [[0, 14.27], [19.33, 44.65], [45.57, 92.07]], \"sentences\": [\"A group of girls are gathered in a room.\", \" They are shown in a series of images posing together.\", \" We also several several boys posing before playing a game of foosball.\"]}, \"v_C0OxaqCr_wk\": {\"duration\": 25.54, \"timestamps\": [[0, 25.54], [13.28, 25.54]], \"sentences\": [\"A person is seen speaking while smoking a cigarette and blowing smoke out of their mouths.\", \" The person continues speaking while smoking the cigarette and gradually blowing smoke while she speaks.\"]}, \"v_vt81bZ6_GcQ\": {\"duration\": 215.92000000000002, \"timestamps\": [[0, 201.89], [12.96, 201.89], [209.45, 215.92]], \"sentences\": [\"People are in a pool playing water polo.\", \" A man in a white shirt walks along side the pool.\", \" A woman holding a dog is standing on a dock.\"]}, \"v_bGDwE1v16HU\": {\"duration\": 185.53, \"timestamps\": [[0, 100.19], [80.7, 185.53]], \"sentences\": [\"A woman is seen speaking to the camera and leads into clips of her leading an exercise class as well as shots of the studio.\", \" The woman continues riding along on the exercise bike while teaching the class and continuing to speak to the camera.\"]}, \"v_2-xPjKzp-Kk\": {\"duration\": 220.8, \"timestamps\": [[0, 111.5], [107.09, 110.4], [112.61, 122.54], [122.54, 184.37], [184.37, 207.55], [207.55, 220.8]], \"sentences\": [\" A person moves poker cards and tokens on the table in a casino on front people.\", \" A client tap with the finger inside a square.\", \" Then, the person stacks all the cards and puts the tokens inside the squares.\", \" Then people start to gamble, while the woman distribute the cards and pick up tokens.\", \" After, the client shows with the hand, then the person make gestures with the hand showing the table.\", \" Next the woman pick up the cards.\"]}, \"v_cAmGHiqmnaw\": {\"duration\": 25.08, \"timestamps\": [[0, 6.14], [6.14, 25.08]], \"sentences\": [\"A rodeo is shown as a man charges out of the gate to throw the rope around a baby calf.\", \" he is instantly successful and hops back on his horse.\"]}, \"v_LyJxXonLzT4\": {\"duration\": 70.46000000000001, \"timestamps\": [[0, 70.46], [4.93, 7.75], [15.85, 29.95], [31.71, 51.44], [54.61, 62.71], [65.53, 70.46]], \"sentences\": [\"A man is in a bar demonstrating how to make drinks.\", \" He fills a glass with ice.\", \" Then he begins measuring various liquors into a cup, and then pours it into the glass.\", \" He shakes the drink together and then pours the mixture into shot glasses.\", \" Finally he puts another liquor into the glasses.\", \" The video ends with the man holding both glasses up.\"]}, \"v_lJRwUE12drE\": {\"duration\": 87.91, \"timestamps\": [[0, 22.42], [19.78, 72.09], [57.14, 84.83]], \"sentences\": [\"People are seen walking around a gymnasium and leads into one standing in between bars.\", \" The gymnast then moves himself around the bars and jumps down afterwards.\", \" Another man steps up to the bars and attempts to spin around.\"]}, \"v_8BAn48zfc68\": {\"duration\": 8.82, \"timestamps\": [[0, 6], [6.44, 8.82]], \"sentences\": [\"A woman wearing sweat gear and seen trying obtain a light with a lighter.\", \" She fails to do so and begins walking towards the camera.\"]}, \"v_8HdfGmQaabM\": {\"duration\": 231.9, \"timestamps\": [[0, 26.67], [34.78, 57.97], [60.29, 185.52], [198.27, 231.9]], \"sentences\": [\"A blonde woman in a green sweater is talking.\", \" She shows off a plate filled with pasta salad and vegetables.\", \" She shows how she made the pesto sauce in a blender before mixing mini tomatoes in with the pasta.\", \" She returns to the camera, continuing to talk before we see a final scene of the pasta.\"]}, \"v_bi6C3kyP4mU\": {\"duration\": 213.65, \"timestamps\": [[0, 12.82], [11.75, 89.73], [89.73, 157.03], [157.03, 213.65]], \"sentences\": [\"Several men are pictured outside in their kayaking uniforms ready to start rafting.\", \"Several people begin rafting and they are shown in bars and on buses.\", \"As they continue rafting,a clear bucket with a black circle with several lines is shown on each raft and the people walk by putting out cigarettes on it.\", \"More people began kayaking and end up flipping the rafts over until a man comes and starts to talk.\"]}, \"v_ZYrQ-TSPQfU\": {\"duration\": 147.01, \"timestamps\": [[0, 138.19], [113.19, 113.93], [143.33, 147.01]], \"sentences\": [\"People whom are wearing helmets, are paddling a inflated boat down a rocky body of water.\", \" Water splashes into the inflated boat.\", \" The people stop paddling, and the boat is still.\"]}, \"v_v1Iv-ySc2LM\": {\"duration\": 39.41, \"timestamps\": [[0, 33.3], [33.89, 39.41]], \"sentences\": [\"A child uses a mop to wash the floor of a home.\", \" The child twist the mop to turn it over.\"]}, \"v_2LzWCwYtUzs\": {\"duration\": 55.31, \"timestamps\": [[0, 1.66], [1.66, 22.12], [22.12, 27.1], [28.21, 51.44], [52.82, 55.31]], \"sentences\": [\"We see an animation on the opening title screen.\", \" A person washes and peels a potato.\", \" The person rinses the person rinses the peeled potato in a bowl.\", \" The person then dices the potato.\", \" We then see the ending title screen.\"]}, \"v_6ECElQXTBIY\": {\"duration\": 77.58, \"timestamps\": [[0, 8.53], [8.53, 77.58], [42.28, 53.14], [55.08, 60.9], [70.6, 73.31]], \"sentences\": [\"A little girl walks into a gym as her name flashes on the screen.\", \" The little girl performs a routine with a baton.\", \" The girl does a flip, throws her baton and catches it while on the ground.\", \" The girl pauses and counts.\", \" The girl does a split and lays her baton on the ground.\"]}, \"v_cd_-gvb82Bs\": {\"duration\": 183.51, \"timestamps\": [[0, 93.59], [63.31, 183.51]], \"sentences\": [\"A man is seen speaking to the camera holding a window washer and begins getting the windows wet.\", \" He then points to the window while wiping it down over and over again with various tools.\"]}, \"v_TxiLjdHoXU4\": {\"duration\": 127.13, \"timestamps\": [[0, 18.43], [19.71, 50.85], [50.22, 91.53], [90.26, 118.23]], \"sentences\": [\"A gymnast stands ready at the end then flips up onto a beam.\", \" She performs a gymnastic routine while several people on the sides watch her.\", \" She continues flipping around the beam and doing various acrobatic tricks.\", \" She jumps down and gives her coach a hug while the camera shows her movements in slow motion and she speaks to a woman.\"]}, \"v_98buk_vE_z4\": {\"duration\": 176.73, \"timestamps\": [[0, 139.62], [128.13, 176.73]], \"sentences\": [\"Two people are seen playing a set of bongo drums while singing and looking to the camera.\", \" The men continuously play and end by stopping and smiling at one another.\"]}, \"v_XGwP_Y-x-dI\": {\"duration\": 93.09, \"timestamps\": [[0, 67.02], [48.41, 50.73], [67.02, 93.09]], \"sentences\": [\"In a sped up special effect, there are 3 people who are shoveling a driveway and removing snow from a car on the right side of their driveway while neighbors and other snow plows are also moving about behind them.\", \" A person drops their shovel in the driveway, then runs to the end of the driveway to play in the snow, then goes back and picks the shovel back up to shovel again.\", \" A black car pulls int o the newly shoveled driveway and the people continue to shovel snow onto the road outside of their driveway.\"]}, \"v_13hdhdieZuc\": {\"duration\": 53.69, \"timestamps\": [[0, 53.69], [5.64, 11.01], [9.93, 17.72], [14.76, 18.25], [16.64, 20.67], [19.06, 30.87], [30.06, 36.24], [35.43, 39.73], [39.19, 46.17], [45.9, 53.69]], \"sentences\": [\"There's a woman with short brown hair doing  makeup tutorial.\", \" She begins by wearing a headband to keep her hair out of her face.\", \" Then she starts applying some foundation all over her face and blends it in.\", \" Then she takes an eyeliner and applies it with a brush under her eyes and on her eyelids.\", \" She then takes some powder compact and pats it on her face and spreads it evenly.\", \" Then with a brush she applies some eyeliner on her eyelids, followed by an eyeliner pencil which she uses on her eyelids and under her eyes.\", \" She takes a pair of eyelash curlers and curls her lashes and then applies some mascara with a brush.\", \" She finishes off the makeup with a lipstick that she puts on her upper and lower lips.\", \" Then she removes her headband and straightens her hair to finish off her look.\", \" She shows the before makeup and after makeup pictures to show the difference.\"]}, \"v_KOiRoi5_SnQ\": {\"duration\": 134.89, \"timestamps\": [[0, 11.47], [16.86, 112.63], [115.33, 134.89]], \"sentences\": [\"A man is standing on a pair of skis.\", \" He then skis quickly down a snowy embankment, accidentally hitting a skier in his path and sending her careening to the right.\", \" they stop and talk, checking to make sure she is ok.\"]}, \"v_pPGniqIBs-U\": {\"duration\": 66.92, \"timestamps\": [[0, 5.69], [5.02, 28.11], [29.11, 63.57]], \"sentences\": [\"A man is seen holding a small child while looking and smiling to the camera.\", \" The two then climb on a camel and ride around while waving to the camera.\", \" The two ride back together with the woman leading them in front.\"]}, \"v_fNPEa0Sd4hM\": {\"duration\": 105.65, \"timestamps\": [[8.45, 82.94], [11.62, 30.11], [32.22, 105.65]], \"sentences\": [\"Olympic triple jumps are shown in a stadium.\", \"  The first person in yellow goes over 17 meters.\", \"  The second person does about the same as does the third person.\"]}, \"v_oD5lGBt7U7g\": {\"duration\": 211.14, \"timestamps\": [[3.17, 99.24], [76.01, 200.58]], \"sentences\": [\"Several shots are shown of the inside of a shop followed by a person unboxing a bike.\", \" The man then brings out tools and tightens them along the bike and is shown peddling the bike with his hands and showing off the finished bike.\"]}, \"v_RoAtTRjWKEg\": {\"duration\": 6.97, \"timestamps\": [[0, 1.01], [1.08, 6.97]], \"sentences\": [\"A girl is on a low beam, preparing to flip.\", \" She flips forward, then turns backward with her arms outstretched.\"]}, \"v_8b3ZBE0n3V8\": {\"duration\": 37.8, \"timestamps\": [[0, 3.4], [3.4, 3.97], [20.79, 30.24], [31.57, 37.8]], \"sentences\": [\"A boy walk in the room from the left doorway holding a red stuffed animal sits down at the table then put animal away.\", \"  A girl walk in the room front the right doorway and sits down at the table.\", \" They begin arm wrestling and the girl wins.\", \" the girl smiles at the camera sighting her victory then they both get up to exit room from the same sides they entered in from.\"]}, \"v_Hc7A90HiA28\": {\"duration\": 147.19, \"timestamps\": [[0, 22.08], [8.1, 147.19]], \"sentences\": [\"Two teams are playing a tug of war, while the referee is at the center and on the side are people taking pictures.\", \" The referee gave a go signal for the team to start pulling, the players are pulling the rope with all of their might until the blue team won, on the other side of the lane another team are playing tug of war, and the camera pans to the audiences who are watching the game.\"]}, \"v_yduDG8EcM0A\": {\"duration\": 67.94, \"timestamps\": [[7.81, 23.44], [23.44, 54.35], [54.35, 60.81], [60.81, 63.53]], \"sentences\": [\"There's a little boy wearing a red Elmo shirt standing on a step stool in the kitchen with his grandmother.\", \" They are juicing a lemon on an electric juicer that is placed on the kitchen counter near the sink.\", \" the boy seems excited to help his grandmother juice the lemon.\", \" He puts his hand over her hand while she is juicing the lemon.\"]}, \"v_FZtIVsmpYcI\": {\"duration\": 192.82, \"timestamps\": [[0, 4.82], [11.57, 44.35], [45.31, 134.97], [111.84, 117.62], [134.01, 141.72], [141.72, 187.03], [187.03, 192.82]], \"sentences\": [\"We see a lawnmower and a persons hand.\", \" A person starts the mower and it smokes.\", \" We see the man mowing the lawn with a smoking mower.\", \"  We see the mower from the point of view of the mower.\", \" We see the boy start the lawn mower again.\", \" The boy mows the lawn.\", \"  We then see the boy walking with the mower.\"]}, \"v_2mmN96TdEdY\": {\"duration\": 218.99, \"timestamps\": [[0, 123.73], [86.5, 216.8]], \"sentences\": [\"An intro leads into several clips of people solving rubix cubes while a timer captures their speed on the side.\", \" More people continue to solve the puzzle as the camera captures them from many sides.\"]}, \"v_0YQPGAsZPgY\": {\"duration\": 166.09, \"timestamps\": [[0, 166.09], [4.15, 19.93], [9.14, 103.81], [103.81, 166.09]], \"sentences\": [\"A four piece percussion and string band play on a stage with the main focus being a man on the bongos in the center of the stage and wearing sunshades indoors.\", \"  A man plays bongos in an animated fashion while a woman next to him plays the keyboard and a man behind him plays guitar.\", \"  A man next to him begins to hit a stick against a metallic percussion instrument.\", \"  The man playing the bongos knocks one of them over at which point the man next to him sets the bongo upright again.\"]}, \"v_Deo_GsHyw8Y\": {\"duration\": 88.38, \"timestamps\": [[0, 15.91], [15.47, 40.21], [40.21, 66.72], [66.28, 88.38]], \"sentences\": [\"Al's begins his skiing tips with an iron and a sponge.\", \" Demonstrating what and how you would use it on the ski's.\", \" He shows you on the ski's how to rub it on.\", \" Then he explains a little more about the process.\"]}, \"v_eQc-8npRq18\": {\"duration\": 4.09, \"timestamps\": [[0.08, 0.92], [0.78, 2.8], [2.82, 4.09]], \"sentences\": [\"A person is seen standing before a large track holding a pole.\", \" The person begins to run down the track while still holding the pole.\", \" The man then jumps over a beam and onto a mat.\"]}, \"v_G836MDBhEpg\": {\"duration\": 61.13, \"timestamps\": [[0, 61.14], [3.97, 44.63], [47.99, 61.14]], \"sentences\": [\"A woman behind a bar explaining how to make a drink.\", \" She pours several ingredients into a shaker and shakes it.\", \"  She then pours the drink from the shaker into a shot glass and holds it up.\"]}, \"v_xm01x3C3RJo\": {\"duration\": 229.51, \"timestamps\": [[11.48, 214.59], [28.69, 102.13], [78.03, 193.93], [219.18, 229.51]], \"sentences\": [\"A dog is put into a bath tub.\", \" A girl pours water onto the dog out of a cup.\", \" She rubs shampoo on the dogs fur.\", \" She dries the dog off with a towel.\"]}, \"v_dU4sCY0kHtk\": {\"duration\": 149.95, \"timestamps\": [[0, 17.24], [19.49, 100.46], [104.96, 149.95]], \"sentences\": [\"A woman wearing pajamas is talking and standing on a star decorated stage.\", \" She demonstrates several dance steps as she speaks.\", \" She steps back and forth, turns and shakes her hips like a belly dancer.\"]}, \"v_c6ie4KwFnAs\": {\"duration\": 215.69, \"timestamps\": [[26.96, 71.18], [71.18, 112.16], [112.16, 136.96], [136.96, 198.44], [198.44, 215.69]], \"sentences\": [\"There is a team of boys dressed in blue uniforms playing soccer against another team of boys dressed in blue striped uniforms in an indoor gym.\", \" There are several spectators seated on the side watching the players play soccer.\", \" The goalie dressed in yellow tries to stop the opponent's ball.\", \" There is also another game of soccer between a team dressed in red and a team dressed inn blue.\", \" The first set of teams continue playing the game as the solid blue team scores a goal.\"]}, \"v_yNyv7Ykn5oo\": {\"duration\": 211.4, \"timestamps\": [[0, 33.82], [34.88, 45.45], [45.45, 99.36], [99.36, 125.78], [125.78, 211.4]], \"sentences\": [\"A group of people start to dig a structure close to the shore.\", \" As the digging continues more people join to dig as a pattern ensues.\", \"The digging continues and people start to add rocks in a linear fashion around the rig and dig beside the rocks and eventually cover the rocks with sand.\", \" Finally in the tide moves up and starts to destroy the structure that was created.\", \" In the end people observe the failing  structure and leave while a girl stands in the middle as the water moves up and destroys it completely.\"]}, \"v_AzUK4Nwd-sY\": {\"duration\": 90.09, \"timestamps\": [[0, 13.06], [13.96, 60.36], [59.46, 90.09]], \"sentences\": [\"Two people are seen riding around horses and leads into more people riding horses and walking around.\", \" A man leads another with a horse around a field while a dog runs around behind him.\", \" The camera interviews a man speaking to others while holding the horses.\"]}, \"v_fXgszraP2tc\": {\"duration\": 217.06, \"timestamps\": [[1.09, 64.03], [49.92, 176.9], [168.22, 211.63]], \"sentences\": [\"A man is seen speaking to the camera while holding onto a leash in different locations.\", \" The man is then seen walking around a dog and leads into him back inside still speaking to the camera.\", \" He continues to speak more while holding onto the rope and walking around with the dog.\"]}, \"v_qBvQjv1XyfQ\": {\"duration\": 77.0, \"timestamps\": [[5.77, 24.25], [23.48, 57.36], [56.21, 77]], \"sentences\": [\"A man is shown talking to the camera and leads into an athletic girl swinging around on uneven bars.\", \" She hops down while the man talks again and switches back and fourth to him talking and her performing.\", \" She puts chalk on her hands and continues flipping around on the bars and the man finishes speaking.\"]}, \"v_Tk3zk2pJ9KA\": {\"duration\": 131.19, \"timestamps\": [[0, 34.77], [35.42, 99.71], [102.33, 131.19]], \"sentences\": [\"A camera pans over several landscapes located in the desert as well as the night sky moving around.\", \" The sun rises and more shots of landscapes are shown as well as animals in the area.\", \" People are then seen riding around on a boat through a tough river and end with a plane flying over the area.\"]}, \"v_6fI4gF_2VCk\": {\"duration\": 163.21, \"timestamps\": [[1.63, 42.44], [46.52, 124.04], [88.14, 158.32]], \"sentences\": [\"A man's face is seen close up speaking and leads into him smoking a cigarette.\", \" The man continues to take drags out of the cigarette while blowing smoke off into the distance.\", \" He moves his hand up and down to smoke and blow the smoke out.\"]}, \"v_p9JNte3VMKQ\": {\"duration\": 218.12, \"timestamps\": [[0, 91.61], [93.79, 218.12]], \"sentences\": [\"A man is seen speaking to the camera while holding a knife in his hands and begins sharpening the knife along a board.\", \" The man continues sharpening the blade and then uses other boards to sharpen the knife.\"]}, \"v_hwY9jvSjC9I\": {\"duration\": 92.86, \"timestamps\": [[2.79, 92.86], [61.29, 92.86], [83.57, 92.86]], \"sentences\": [\"The woman is shown putting her feet into her shoes while they are tied.\", \" But after a few minutes of her lifting her feet off of the ground, she takes them off without using her hands.\", \"  Then she bends down to turn the camera off.\"]}, \"v_sObM6mb3hgs\": {\"duration\": 233.29, \"timestamps\": [[12.83, 225.13], [1.17, 9.33], [11.66, 110.81], [130.64, 226.29]], \"sentences\": [\"Several young men exhibit rollerblading stunts using many different pedestrian environments to showcase the stunts including, sidewalks,stairwells, stair railings, walls and parking lots.\", \"  A camera picks up several candid environment shots picking up lines of palm trees, and a vast cityscape filled with buildings and some foliage.\", \"  A group of young men are showcased one by one ,with an onscreen name template, rollerblading stunts on stairs and stair railings, jumping in the air, sliding on rails and landing.\", \"  The men showcase some mishaps in which they fall after the stunt, but then perform more stunts successfully.\"]}, \"v_iWj81FBROQQ\": {\"duration\": 222.22, \"timestamps\": [[1.11, 60], [56.66, 168.88], [121.11, 218.88]], \"sentences\": [\"A gymnast is seen looking off into the distance and leads into her hold her arms up.\", \" She jumps onto a beam and begins performing various flips and tricks.\", \" The girl jumps all around the beam and ends by jumping down and raising her arms up and smiling to the camera.\"]}, \"v_deuSw3RnNLU\": {\"duration\": 211.79, \"timestamps\": [[1.06, 210.73], [1.06, 113.31], [116.48, 130.25], [134.49, 210.73]], \"sentences\": [\"A woman makes a batch of master cleanse drink at the counter in the kitchen using lemons, water, syrup and red pepper.\", \"  A woman enters a kitchen, talks to the camera and begins to cut and juice lemons.\", \"  The woman then pours the lemon juice into a bottle of water.\", \"  The woman then adds syrup and red pepper to the mixture with blue measuring spoons and a measuring glass, after which she leans on the counter and talks to the camera some more.\"]}, \"v_77w2Am_ttbg\": {\"duration\": 21.06, \"timestamps\": [[0, 12.22], [12.43, 21.06]], \"sentences\": [\"A man is seen sitting on a piece of exercise equipment moving himself back and fourth.\", \" A dog walks around the man working and ends by the camera facing the ground.\"]}, \"v_yEFS8M4pgMU\": {\"duration\": 161.73, \"timestamps\": [[31.54, 77.63], [77.63, 110.78], [110.78, 148.79], [148.79, 155.26]], \"sentences\": [\"There two teams of men playing the game of tug of war in a gym.\", \"There are several people seated in the gym watching them play the game.\", \" The referee is standing next to the contestants as they continue to pull the rope harder.\", \" The opposing team pulls harder and the team in the white ends up falling down and losing.\"]}, \"v_IY1bVy1yZv4\": {\"duration\": 72.75, \"timestamps\": [[0, 72.75], [0, 57.84], [55.29, 57.84]], \"sentences\": [\"A man is sitting down on the ground fixing a child's bike.\", \" A kid in a yellow shirt is standing next to him watching.\", \" A boy in a blue shirt is pushing another bike behind him.\"]}, \"v_fvUQQF5S4Dg\": {\"duration\": 107.65, \"timestamps\": [[0, 18.3], [19.91, 76.97], [76.97, 103.34], [103.88, 107.65]], \"sentences\": [\"A person serves an ice cream with a stick to a man, the cone falls to the floor.\", \" The man gives another cone, then the man takes of the cone and gives back to the man.\", \" After, the man gives the cone with a napkin, but he takes the cone again, after he gives the ice cream in his mouth.\", \" Finally, the man gives the cone to the man while a crowd watch.\"]}, \"v_9mpPAwSmUmk\": {\"duration\": 127.46, \"timestamps\": [[0, 5.1], [6.37, 119.17], [8.92, 26.13], [28.68, 35.05], [47.16, 115.35], [124.27, 127.46]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy works on a roof.\", \" A guy removes nails and pieces of the roof.\", \" A guy removes dirt and twigs from the corner of the roof.\", \" A guy measures and cuts pieces for the roof.\", \" The credits of the video are shown.\"]}, \"v_-AUKiMfqga4\": {\"duration\": 198.16, \"timestamps\": [[0, 18.83], [23.78, 111.96], [114.93, 156.55], [159.52, 198.16]], \"sentences\": [\"A skillet is on a stove with ingredients on the counter alongside it.\", \" Someone puts onions in the skillet and beats eggs and other ingredients into a bowl before adding them to the skillet too.\", \" He flips the eggs, making an omelette.\", \" He flips the omelette gently onto a plate for serving.\"]}, \"v_54chD8QFKyk\": {\"duration\": 104.37, \"timestamps\": [[1.57, 11.48], [12, 22.96], [25.57, 104.37]], \"sentences\": [\"A white cat is sleeping on terra cotta tiles.\", \" White text explains how to clip the cat's nails.\", \" A woman takes the cats paws, clipping them gently with a clipper until they are finished.\"]}, \"v_D74hnUdBs04\": {\"duration\": 128.36, \"timestamps\": [[0.64, 68.03], [57.12, 126.43]], \"sentences\": [\"A large group of people are seen standing on a field playing a volleyball game with one another.\", \" The camera pans around the beach and back to the people playing with one another passing the ball around.\"]}, \"v_p4rdUt1iDkY\": {\"duration\": 37.48, \"timestamps\": [[0, 29.23], [29.8, 37.48]], \"sentences\": [\"A man kneels down on a blue mat and raises a bar above his head.\", \" He stands up and walks off.\"]}, \"v_JzLqc6MhJtc\": {\"duration\": 54.89, \"timestamps\": [[0, 52.15], [0, 51.6], [6.86, 7.96]], \"sentences\": [\"A woman is sitting in a chair.\", \" A person is painting something onto their finger.\", \" The woman looks up at the camera.\"]}, \"v_ZTtPztql5jM\": {\"duration\": 125.53, \"timestamps\": [[0, 125.53], [6.28, 125.53], [17.57, 125.53], [25.73, 125.53]], \"sentences\": [\"Rain falls on a large auditorium.\", \" Many people are in the stands.\", \" Several athletes stand in the arena.\", \" The athletes throw discs on the field.\"]}, \"v_cJYtpnf5aOM\": {\"duration\": 90.35, \"timestamps\": [[0, 85.83], [62.34, 71.83]], \"sentences\": [\"A boy in young boy drives a small tractor lawn mower around the yard of a house maneuvering around obstacles.\", \" The boy mows over some small flowers in the grass.\"]}, \"v_2hgXJR5QdkU\": {\"duration\": 197.11, \"timestamps\": [[0, 42.38], [42.38, 82.78], [82.78, 152.76], [152.76, 197.11]], \"sentences\": [\"A woman with curly hair and very thing eyebrows is sucking from a hookah.\", \" She blows out all of the smoke that she inhaled, she is laying in bed by herself relaxing.\", \" She seems like she is very bored just blowing smoke recording herself.\", \" Turns out, there is another person in the room with her feeding her, she smiles really big and continues exhaling smoke out.\"]}, \"v_LKf1eTzmK14\": {\"duration\": 196.32999999999998, \"timestamps\": [[0, 10.8], [4.91, 7.85], [9.82, 15.71], [17.67, 25.52], [25.52, 34.36], [34.36, 50.06], [51.04, 61.84], [64.79, 65.77], [68.71, 129.57], [112.89, 189.45]], \"sentences\": [\"A runner is running on a track in front of a crowd of people.\", \" A man is shown talking to the camera.\", \" Runners are running down a track with crowds on both sides and one of the runners stumbles.\", \" Another runner is shown and a man is shown talking to the camera.\", \" A runner is crawling across a finish line while other runners are running through the finish line.\", \" The distressed runner is carried away.\", \" Runners in distress are shown.\", \" A man is talking to the camera.\", \" Various runners are shown in distress and talking to the camera.\", \" More distressed runners are shown.\"]}, \"v_7pcnWE7jpQY\": {\"duration\": 85.87, \"timestamps\": [[0, 85.87], [6.87, 58.39], [64.83, 85.87]], \"sentences\": [\"A person is attempting high jumps.\", \"  The first few attempts are good.\", \"  The final attempt is not ever achieved.\"]}, \"v_EuIBTFqVOt8\": {\"duration\": 230.44, \"timestamps\": [[0, 47.24], [44.93, 230.44]], \"sentences\": [\"Two men are shown performing an arm wrestling match with many watching on the sidelines and a ref calling who the winner is.\", \" Several more men battle back and fourth with one another and more people stepping in and out of frame to watch.\"]}, \"v_We9NR-CaIgM\": {\"duration\": 180.51, \"timestamps\": [[0, 31.59], [31.59, 83.04], [83.94, 136.29], [136.29, 178.71]], \"sentences\": [\"People performs arts martial movers, standing on their heads and spinning.\", \" Then, a man and a boy jumps over, then kids stands on their head an spin around.\", \" Boys bend his body backwards until the feet reach the ground.\", \" Teens twist their bodies and bend to the other end.\"]}, \"v_W04glwJ_IYI\": {\"duration\": 96.39, \"timestamps\": [[13.49, 81.93], [15.9, 78.56], [19.28, 50.12], [52.05, 80]], \"sentences\": [\"A woman grooms an angry poodle who is collared and tethered to a pole attached to a black grooming table.\", \"  A brown poodle is being combed by a woman in a yellow walled room on a black grooming table.\", \"  The woman holds out a pink plastic toy which the dog begins to bite, snap and grab at while the woman combs the poodles fur.\", \"  The poodle continues to snap at the pink toy and also at the woman's hand and the comb.\"]}, \"v_vNMBtwYDH9E\": {\"duration\": 104.21000000000001, \"timestamps\": [[0, 19.28], [23.45, 81.29], [90.14, 104.21]], \"sentences\": [\"A gymnast mounts a low beam in a gym.\", \" She performs on the beam, doing handsprings and flips.\", \" She then dismounts with her hands in the air.\"]}, \"v_mfq5Y7S3BWs\": {\"duration\": 101.36, \"timestamps\": [[0, 19.76], [19.76, 42.06], [19.26, 42.06], [42.57, 50.68], [51.18, 75.51], [76.02, 86.15], [87.17, 96.29]], \"sentences\": [\"A woman is standing by a bathroom door talking.\", \"  The same woman is now seen on a stationary bicycle teaching a spin class.\", \" Several other people in the class can be seen on stationary bicycles in the mirror behind the instructor.\", \"  The woman is then shown on the ground demonstrating an exercise.\", \" The spin class is shown again still in progress.\", \" The instructor then does floor exercises again with the class following along.\", \"  The instructor and the class finish on the bikes again.\"]}, \"v_oWsEp7hsmZg\": {\"duration\": 98.1, \"timestamps\": [[0, 7.36], [7.85, 18.15], [19.62, 55.42], [56.4, 63.27], [71.61, 90.25], [91.23, 98.1]], \"sentences\": [\"A lady stands and talks in a gym.\", \" She points to her abdomen, then lays on a bench.\", \" The lady holds the bench and and lifts her abdomen and legs.\", \" The lady sits up and scoots to the edge.\", \" The lady performs the same exercise with her butt hanging off the bench.\", \" The lady finishes, sits upright and speaks.\"]}, \"v_1XQUDJhMcj8\": {\"duration\": 121.0, \"timestamps\": [[4.24, 71.99], [31.46, 120.4]], \"sentences\": [\"A woman is seen hosting a news segment that leads into clips of fire fighters running down a block and carrying objects over their heads.\", \" More people are seen speaking to the camera as they continue running around and women speaking to the camera.\"]}, \"v_2xQVZorob1Q\": {\"duration\": 136.02, \"timestamps\": [[0, 101.34], [100.66, 105.42], [105.42, 136.02]], \"sentences\": [\"An individual shovels snow, but only the lower legs and shovel are visible on camera.\", \" The individual sets aside the shovel and walks towards the camera.\", \" The camera once again shows the individual shoveling.\"]}, \"v_AXyRIyXqnzI\": {\"duration\": 130.22, \"timestamps\": [[0, 7.16], [7.81, 13.67], [13.67, 97.66], [97.66, 130.22]], \"sentences\": [\"a man in a grey warm up suit practices shot put behind a net.\", \" Another man in a green sweatshirt practices a shot put throw in a field behind a net gate.\", \" still photos are featured between multiple men practicing their shot put throw.\", \" A series of shot put throws are featured in consecutive tosses.\"]}, \"v_WWyGnNfcj8Q\": {\"duration\": 185.74, \"timestamps\": [[0, 38.08], [39, 108.66], [118.87, 180.16]], \"sentences\": [\"A man is seen decorating a cake blindfolded while a small group of people watch.\", \" The man adds frosting to the cake while others continue to watch as well as other ingredients.\", \" He takes off the blindfold and cheers as well as putting hawaii outfits on everyone and dancing around.\"]}, \"v_sW_iLVVMF4w\": {\"duration\": 169.0, \"timestamps\": [[0, 29.57], [29.57, 86.19], [87.03, 119.99], [120.83, 169]], \"sentences\": [\"A man is outside on the roof of his shed with a leaf blower ready to clean the leaves off the roof.\", \"  He shows a close up of the leaf blower and explains the specifics of it, primes the machine, sets the camera down and starts it.\", \"  He picks up the camera and gets a close up of the leaf blower again.\", \"  He now  blows the leaves off of the roof of his shed.\"]}, \"v_RDC4sqe8xVk\": {\"duration\": 192.59, \"timestamps\": [[0, 20.22], [21.18, 91.48], [96.29, 192.59]], \"sentences\": [\"A man is getting dressed to ski in the falling snow.\", \" He is talking to the camera about skiing.\", \" He is then seen going through the air, and down steep slopes as he skis.\"]}, \"v_H306mUUJ5BE\": {\"duration\": 213.9, \"timestamps\": [[0, 122.99], [19.25, 213.9]], \"sentences\": [\"A man is seen speaking to the camera while sitting in a chair and putting his arms up every now and then.\", \" He then plays a harmonica moving his hands around while pausing to speak to the camera and ends up speaking and pointing.\"]}, \"v_C4xYnBd7PM0\": {\"duration\": 62.99, \"timestamps\": [[0.31, 19.84], [21.1, 48.81], [41.89, 62.99]], \"sentences\": [\"A man is seen standing beside a bull and holding up a red flag.\", \" The bull is then shown attacking several men in many clips.\", \" More people are shown chasing bulls with them chasing after.\"]}, \"v_L1oWKMy5ofM\": {\"duration\": 136.44, \"timestamps\": [[0, 14.33], [15.69, 51.17], [51.17, 136.44]], \"sentences\": [\"A woman is sitting and talking in front of a laptop.\", \" She gets up in front of a room of family members.\", \" She dances, showing several moves to the people as she shimmies across the room.\"]}, \"v__rzxmgPv6Co\": {\"duration\": 192.54, \"timestamps\": [[0, 53.91], [53.91, 141.52], [141.52, 192.54]], \"sentences\": [\"A man is standing in his uniform in a desert like area talking.\", \"While he his talking,several videos of him are shown off road motorcycle racing around the course jumping over humps.\", \"However,he comes back during the segments to show how he uses techniques in certain jumps and the correct way to do it.\"]}, \"v_W2wyahjyTFc\": {\"duration\": 25.45, \"timestamps\": [[0, 5.6], [6.11, 22.65], [22.78, 25.45]], \"sentences\": [\"A little girl is standing in front of a hopscotch game in her living room.\", \" She jumps forward on each square, then turns and goes the other way.\", \" She smiles and bows for the camera.\"]}, \"v_C1YNGahOoiA\": {\"duration\": 230.16, \"timestamps\": [[10.36, 71.35], [71.35, 101.27], [101.27, 215.2], [161.11, 174.92]], \"sentences\": [\"A man fasten his legs on a pole of a sail boat an lay down on his back on the border of the boat.\", \" Then, the man sail the boat holding a rope and lay down on the border of the boat.\", \" The man falls in the water, then he gets up in the boat and continues sailing on his back.\", \" A sail board pass next to the boat.\"]}, \"v_h0p_7Q2Bucc\": {\"duration\": 81.34, \"timestamps\": [[0, 23.59], [22.78, 50.43], [50.43, 81.34]], \"sentences\": [\"A man appears treading water as he is waiting to get out of the water and walk up a set of stairs.\", \"He finally gets off the stairs and joins the others who are on the wooden diving board.\", \"First,a set of three girls jump off before he does and creates a large commotion of waves.\"]}, \"v_vOpFUVofoM4\": {\"duration\": 70.01, \"timestamps\": [[1.4, 9.1], [10.15, 63.71]], \"sentences\": [\"A picture of a coffee cup is shown as well as a spoon to relaxing music.\", \" Various title screens are shown and eventually the same picture of the coffee cup appears while soft music plays in the background.\"]}, \"v_LGj7_gw2GbQ\": {\"duration\": 163.1, \"timestamps\": [[0, 1.63], [2.45, 139.45], [4.08, 143.53], [24.46, 115.8], [26.91, 145.16], [29.36, 30.99], [30.99, 31.8], [52.19, 54.64], [55.45, 57.9], [70.13, 71.76], [76.66, 78.29], [83.99, 126.4], [94.6, 96.23], [121.51, 122.32], [149.23, 162.28]], \"sentences\": [\"The credits of a clip are shown.\", \" A person is water boarding on a body of water.\", \" People ride a boat and interact.\", \" A lady hula hoops to music.\", \" A male leaps from the rocks into the waters.\", \" People are on the shore and some are on the boat.\", \" A man jumps of a boat with his waterboard.\", \" A guy uses a hula hoop as a jump rope.\", \" Women dance to music in a social function.\", \" The individual is in the body of water.\", \" Two adults run in a wooden, hollow cylinder.\", \" An individual back flips off a boat.\", \" A female stands on waterboard that is on grass.\", \" People jump off an inflated boat.\", \" The credits of a video are shown with clips.\"]}, \"v_jhakEVLCqNM\": {\"duration\": 145.89, \"timestamps\": [[0, 16.05], [16.78, 63.46], [63.46, 88.26], [88.26, 94.83], [95.56, 102.12], [102.85, 145.89]], \"sentences\": [\"A youth talks inside a home, then he gets outside the home.\", \" A man and a teen stand on front a swimming pool talking, and a person lay down on a chair.\", \" Then, the man pushes the teen to the water who has trouble to swim.\", \" After, the man gets in the water and flip the teen.\", \" The teen gets out the swimming pool and throws chair to the man.\", \" Next, the teen walks away angry, and the men and the woman take the chairs out of the pool.\"]}, \"v_cTZw5NUK1-c\": {\"duration\": 155.78, \"timestamps\": [[0, 30.38], [31.16, 103.6], [102.82, 129.3], [128.52, 155.78]], \"sentences\": [\"Various shots of beaches are shown followed by the camera panning over several shots of waves.\", \" A person is then seen riding a surfboard through various shots in the camera.\", \" People are shown speaking to the camera when another person crashing on their board several times.\", \" More people are seen walking down as more surfers continue riding the waves.\"]}, \"v_G4D6UtJh3AU\": {\"duration\": 78.9, \"timestamps\": [[0, 36.69], [38.66, 78.9]], \"sentences\": [\"A woman is holding a baby in her lap as a woman next to her uses a plastic comb to brush his hair.\", \" She talks to the baby as she brushes, and the baby watches her intently.\"]}, \"v_AtUAYnNTniM\": {\"duration\": 72.17, \"timestamps\": [[0, 7.58], [9.74, 35], [36.08, 72.17]], \"sentences\": [\"A man lifts a girl up over his head, then over his shoulder.\", \" He stands her on his hands, balancing her in the air as other watch.\", \" He drops then lifts her again.\"]}, \"v_DEEgoxzTvdk\": {\"duration\": 140.6, \"timestamps\": [[0, 18.28], [24.6, 57.64], [70.3, 140.6]], \"sentences\": [\"A group of tall trees is surrounded by water.\", \" We see the vast ocean water around us.\", \" We then see several people as they relax on a boat.\"]}, \"v_1WSFrupQzQI\": {\"duration\": 62.46, \"timestamps\": [[0, 6.25], [6.25, 18.43], [18.74, 31.23], [31.86, 59.65], [59.96, 62.46]], \"sentences\": [\"We see the title screens flying up.\", \" A bull runs out on the field.\", \" A bull rams a wall  where the matador is standing.\", \" The matador teases the bull with a red cloth.\", \" We see the ending screen.\"]}, \"v_EX3szlLBdFM\": {\"duration\": 185.67, \"timestamps\": [[0, 43.63], [44.56, 132.75], [117.9, 181.03]], \"sentences\": [\"A person is seen moving along a large court followed by other people moving around beside him.\", \" Several people are seen running up and down the court while others watch on the side.\", \" The people continue moving around while others watch them perform drills.\"]}, \"v__ekSmyvWdRQ\": {\"duration\": 15.07, \"timestamps\": [[0, 7.31], [7.38, 9.64], [9.49, 15.07]], \"sentences\": [\"A person is putting salad into a clear bowl.\", \" They grab an orange pepper from a pile.\", \" They chop the pepper in half.\"]}, \"v_ta9cB1q4AzU\": {\"duration\": 179.03, \"timestamps\": [[0, 85.04], [85.93, 132.48], [133.37, 138.75], [139.64, 179.03]], \"sentences\": [\"A man talks and then walks in the street until to arrive to an ice cream shop.\", \" A woman shows a chocolate and vanilla ice cream cones, and a girl likes an ice cream.\", \" People purchase ice cream, and a raise child to see ice cream.\", \" The man lick an ice in the shop, then he pretends to lick an ice cream in a picture.\"]}, \"v_8jj-mhVrlGA\": {\"duration\": 71.87, \"timestamps\": [[0, 18.33], [17.61, 40.96], [41.32, 71.87]], \"sentences\": [\"A woman is shown speaking to the camera and point off into the distance.\", \" The camera pans out into another man standing on the court and two basketballs shown.\", \" The man and woman then shoot hoops with the balls and pass each other back and fourth.\"]}, \"v_BvACPvbUq1k\": {\"duration\": 29.05, \"timestamps\": [[1.45, 13.07], [10.02, 27.74]], \"sentences\": [\"A person is seen shoveling up some snow with the camera laid on his head.\", \" He shows several shots of him shoveling up the snow, a close up of his face, and panning around the area.\"]}, \"v_7KKYKIlGaXk\": {\"duration\": 195.34, \"timestamps\": [[0, 17.58], [21.49, 91.81], [96.69, 149.43], [155.29, 195.34]], \"sentences\": [\"A view is seen of an enormous pool.\", \" It stretches very long distances, with people using boats and rafts in the water.\", \" It is an extensive water park located in Indonesia.\", \" People are shown water skiing in the clear blue waters.\"]}, \"v_l-R4wiSZcRc\": {\"duration\": 169.23, \"timestamps\": [[3.38, 38.08], [25.38, 137.92], [135.38, 169.23]], \"sentences\": [\"An intro leads into several older clips of olympic performers performing incredible acts.\", \" One group of people are seen swimming while hundreds of people cheer and many people look to the camera and smile.\", \" Another man shakes the hand of an athlete and he waves while shaking the hands of others and people applauding.\"]}, \"v_fVBXRUWEyoA\": {\"duration\": 219.82, \"timestamps\": [[7.69, 219.82], [1.1, 2.2], [3.3, 86.83], [96.72, 216.53]], \"sentences\": [\"A woman sits on a couch and clips the front and back paws of an orange and a black and white cat as they sit in her lap.\", \"  An orange cat stands on a couch and sniffs the cushions.\", \"  A woman sits down on the couch and puts the orange cat in her lap and begins to clip the front and back paws of the cat.\", \"  The woman puts the orange cat down and picks up a black and white cat with whom she does the same clipping of front and black paws, after which, the black and white cat runs off away from the couch.\"]}, \"v_yST1TsQ6mgY\": {\"duration\": 183.55, \"timestamps\": [[0.92, 66.08], [57.82, 137.67], [141.34, 178.97]], \"sentences\": [\"Various pictures are shown of people close up in an area as well as people riding around on a camel.\", \" People continue riding around on the camels with one man leading them in front and the camera capturing several more people.\", \" In the end the camels are seen wandering around one another and a picture of everyone standing together.\"]}, \"v_vfLKyUMzFHg\": {\"duration\": 114.81, \"timestamps\": [[0, 63.72], [44.78, 114.81]], \"sentences\": [\"A man is seen speaking to the camera and pointing to a table and laying out cards.\", \" He then performs a game of black jack while moving the cards and dice around while still speaking to the camera.\"]}, \"v_gE1nShlv6mo\": {\"duration\": 136.73, \"timestamps\": [[0, 101.87], [102.55, 110.75], [110.75, 136.05]], \"sentences\": [\"A woman shows how to clean a shirt with a steam machine while talking.\", \" The woman finish cleaning the shirt and takes it off from a hanger and put on the iron board.\", \" After, the woman shows a container, then gabs the steam machine and shows  while talking.\"]}, \"v_fTGtoTlJyh0\": {\"duration\": 192.82, \"timestamps\": [[0, 192.82], [93.52, 115.69]], \"sentences\": [\"A person is spray painting bars that are taped together different colors.\", \" They put a sticker of words onto the bars.\"]}, \"v_6asjaqo0OHc\": {\"duration\": 158.13, \"timestamps\": [[0, 18.18], [18.18, 135.99], [136.78, 158.13]], \"sentences\": [\"A man is talking as he looks at a bicycle.\", \" He places a speed control tool on the handlebar of the bike.\", \" He continues talking until he has the bar in place.\"]}, \"v_y-87JMf_-J8\": {\"duration\": 112.97, \"timestamps\": [[1.69, 26.55], [23.72, 81.9], [69.47, 107.32]], \"sentences\": [\"A man is seen sitting on a stool while holing a guitar in his hands.\", \" The camera pans closely around the guitar while the man continues to speak.\", \" The man then plays the guitar a bit and moves his hands up and down the neck.\"]}, \"v_hrpRVbLRoJ4\": {\"duration\": 203.2, \"timestamps\": [[2.03, 75.18], [60.96, 146.3], [134.11, 196.09]], \"sentences\": [\"A person is seen riding around on a horse over jumps in slow motion while others watch.\", \" The video moves quicker as more people are seen jumping over obstacles and one speaking to the camera.\", \" Several more clips are shown of people riding around on horses as well as pictures inbetween and more close ups of horses.\"]}, \"v_hbipKjS0G7w\": {\"duration\": 122.42, \"timestamps\": [[0, 108.34], [107.11, 113.85], [119.36, 122.42]], \"sentences\": [\"A lady bents over slightly in an outdoor court.\", \" The lady rises and turns.\", \" The lady release her hand from her neck.\"]}, \"v_4BofYu8Soz8\": {\"duration\": 16.07, \"timestamps\": [[0.72, 8.68], [5.87, 15.1]], \"sentences\": [\"A man is seen swimming in a pool while passing a ball to a dog back and fourth.\", \" The man continues to pass the ball while the dog hits it right back.\"]}, \"v_Gxjfc5O6AAc\": {\"duration\": 133.98, \"timestamps\": [[4.69, 11.39], [11.39, 117.9], [117.9, 129.29]], \"sentences\": [\"Various still images of a man's hair are shown.\", \" A man is shown receiving a hair cut and styling in sped up time.\", \" Still images of the man's hair after the styling are shown.\"]}, \"v_1opIvQF0m_M\": {\"duration\": 116.15, \"timestamps\": [[0, 8.71], [8.13, 16.26], [16.84, 38.91], [36.59, 116.15]], \"sentences\": [\"A person on a skateboard moves over and ramp and up on a corner.\", \" The camera shows him doing various moves and interviewing the camera.\", \" Another man rides a wakeboard doing and tricks and eventually falls.\", \" Several other clips are shown of people kayaking doing several stunts while the camera records.\"]}, \"v_1dM62Xpm9Ns\": {\"duration\": 187.15, \"timestamps\": [[0.94, 22.46], [32.75, 63.63], [72.05, 152.53], [156.27, 187.15]], \"sentences\": [\"A man is cutting an onion with a knife on a cutting board.\", \" A woman is reading a newspaper nearby while he speaks to her and shows her something in his hand.\", \" The man sharpens his knives using an electric tool.\", \" He then continues cutting his onion.\"]}, \"v_wYIeRRTRtX8\": {\"duration\": 15.37, \"timestamps\": [[0, 9.76], [9.76, 11.68], [0, 15.37]], \"sentences\": [\"A woman is standing on a diving board.\", \" She jumps into the water.\", \" People are standing under the diving board.\"]}, \"v_3S7EwcX-Rd0\": {\"duration\": 75.12, \"timestamps\": [[0, 4.88], [6.38, 20.66], [17.28, 61.22], [68.73, 72.11]], \"sentences\": [\"A bicycling competition is about to begin and the crowd is ready.\", \" The riders start and already many fall during the first big jump.\", \" Various highlights are shown of the riders attempting the large jumps.\", \" Three winners are crowned at the end in a ceremony.\"]}, \"v_NbmseYFNIlA\": {\"duration\": 49.13, \"timestamps\": [[0, 19.9], [20.14, 49.13]], \"sentences\": [\"A man is seen holding a flag while others stand around him and a runner comes into frame.\", \" The runner takes several jumps and lands into a pit all in slow motion.\"]}, \"v_H7EmlU0wQ6g\": {\"duration\": 22.62, \"timestamps\": [[0, 2.26], [2.26, 8.93], [9.05, 18.55], [18.66, 22.62]], \"sentences\": [\"A person is using a vacuum attachment to vacuum the wood floor.\", \" The person then vacuums a rug on the floor.\", \" The person vacuums the back of a cat laying nearby.\", \" The person returns to vacuuming the wood floor.\"]}, \"v_9wpV8Gknh1E\": {\"duration\": 126.62, \"timestamps\": [[0, 22.16], [22.79, 60.14], [60.14, 93.7], [93.7, 126.62]], \"sentences\": [\"A woman and her 2 children are riding around on a camel at a fair or some event.\", \" There is a worker who is walking with them in circles walking the camel with a rope as they ride.\", \" They go around quite a few times again and again in a circle around a small gated area.\", \" When they are done they stop by a red railing, the worker taps the camel on the face while the rider get off.\"]}, \"v_bp1blshSKJU\": {\"duration\": 118.05, \"timestamps\": [[0, 17.12], [38.37, 99.75], [100.34, 118.05]], \"sentences\": [\"A woman is standing on a piano.\", \" A person is playing the piano.\", \" The piano turns and a woman is standing behind it.\"]}, \"v_KB9sqtTJTZw\": {\"duration\": 189.06, \"timestamps\": [[0, 3.78], [4.73, 15.12], [16.07, 18.91], [19.85, 172.04], [33.08, 42.54], [62.39, 65.22], [109.65, 111.54], [111.54, 116.27], [136.12, 145.57], [172.99, 189.06]], \"sentences\": [\"We see a dark opening screen.\", \" We then see people performing hip hop dances.\", \" We see a sign for the 2004 event.\", \" We see people in front of an audience dancing.\", \" We see a man do a spin the crowd clips for.\", \" We see a sign for the 2005 event.\", \" Two men take a bow.\", \" We see a screen for the 2006 event.\", \" A man in red does a bunch of moves.\", \" We see signs for the 2007 event.\"]}, \"v_qemvXlRMQgM\": {\"duration\": 98.52000000000001, \"timestamps\": [[0, 7.88], [8.87, 32.51], [33.5, 62.07], [63.05, 83.25], [85.72, 98.52]], \"sentences\": [\"A close up of a blue hookah is shown bottom to top.\", \" The bowl is shown, then the hookah is filled with water by gloves.\", \" The hose is attached to the hookah.\", \" Tobacco is packed into the bowl, then covered with tin foil and punctured with a toothpick.\", \" A piece of coal is lit, then the invisible person smokes the hookah while reading a book.\"]}, \"v_jwlYaPt2DIs\": {\"duration\": 79.16, \"timestamps\": [[0, 79.16], [1.58, 24.93], [25.33, 46.7], [47.1, 79.16]], \"sentences\": [\"We see a man at a table in a field juicing a fruit to make a juice.\", \" The man juices 2 fruit then puts sugar in in two glasses.\", \" The man then cuts and juices four more fruit.\", \" The man adds more sugar to the glasses and ice water from the bucket under the fruit.\"]}, \"v_wr_1p7obP-g\": {\"duration\": 218.66, \"timestamps\": [[0, 32.8], [31.71, 72.16], [72.16, 108.24], [110.42, 218.66]], \"sentences\": [\"Several photographs of households and objects are shown followed by a man pouring liquids into a bucket.\", \" He pours more objects into the bucket while another man swirls it around.\", \" The man opens a box full of stone and lays down some plaster on a wall.\", \" He pushes the stone into the wall over and over again to create a stone wall for a home.\"]}, \"v_TT2e7-NbUxo\": {\"duration\": 159.43, \"timestamps\": [[0, 15.94], [17.54, 131.53], [133.12, 159.43]], \"sentences\": [\"A boy is sitting in a salon chair and talking.\", \" A stylist cuts his hair into a new style.\", \" He dries and sprays the hair into a spikey look.\"]}, \"v_nvsZFU73npI\": {\"duration\": 173.76, \"timestamps\": [[0, 59.08], [59.95, 110.33], [110.33, 140.74], [140.74, 173.76]], \"sentences\": [\"man is interviewing some people who is watching two women in bikini wrestling, the woman wins and start jumping.\", \" two women in bikini are standing with a dwarf  and he is winning the fight while the interviewer is talking to people in the audience.\", \" women in bikini are preparing to wrest in the ring.\", \" some clips of youtube videos are shown.\"]}, \"v_rVcgTALWCRA\": {\"duration\": 25.75, \"timestamps\": [[0, 25.75], [12.1, 25.49]], \"sentences\": [\"A girl is playing with sand on a beach.\", \"  She then stands up and looks at other people.\"]}, \"v_at_ahUtnF9Q\": {\"duration\": 236.19, \"timestamps\": [[0, 25.98], [25.98, 79.12], [79.12, 236.19]], \"sentences\": [\"People are standing next to a ping pong table.\", \" A man is demonstrating how to play without a paddle.\", \" Two people start playing a game of ping pong.\"]}, \"v_Ly70Hwy52WA\": {\"duration\": 203.13, \"timestamps\": [[0, 21.33], [21.33, 95.47], [95.47, 203.13]], \"sentences\": [\"two men are sitting on round tables talking in microphones.\", \" men are being interviewed in a large soccer field.\", \" men are playing ping pong in themiddle of stadium while a lot of people are gathered around.\"]}, \"v_IIAaKRUze8A\": {\"duration\": 188.27, \"timestamps\": [[0, 188.27], [27.3, 44.24], [48.95, 130.85], [114.84, 188.27]], \"sentences\": [\"A man stands next to a small roof.\", \" He holds out a piece of metal.\", \" He places metal along side the roof.\", \" He attaches the pieces securely.\"]}, \"v_4b2_OpAGwW0\": {\"duration\": 238.4, \"timestamps\": [[0, 208.6], [89.4, 221.71]], \"sentences\": [\"A woman braids her hair in several braids.\", \"  She ties them behind her head.\"]}, \"v_veNIfCkd1Pw\": {\"duration\": 91.65, \"timestamps\": [[6.42, 59.11], [35.29, 42.16], [59.11, 65.53]], \"sentences\": [\"A gymnast performs uneven bars routine while people watch.\", \" The judge supervises the routine of the gymnast.\", \" Then, the gymnast spins holding the higher bar and jumps stand on the mat.\"]}, \"v_CIPSw35iF3k\": {\"duration\": 205.45, \"timestamps\": [[0, 9.25], [9.25, 31.84], [33.9, 42.12], [48.28, 53.42], [54.44, 104.78], [104.78, 113], [135.6, 143.82], [164.36, 179.77]], \"sentences\": [\"A person is slicing a potato.\", \" They stack up the potato slices and start chopping them into tiny pieces.\", \" He sets the pieces on a plate sitting in a sink.\", \" There is plates of food in the sink.\", \" He empties the plates into a pot.\", \" He stirs everything in the pot together.\", \" He then takes a scoop of that and puts it on a plate with vegetables on it.\", \" He tops it with garnishments.\"]}, \"v_CcMic7jNIuE\": {\"duration\": 60.59, \"timestamps\": [[0, 21.21], [21.21, 26.66], [28.78, 58.47], [58.17, 60.59]], \"sentences\": [\"A man in a blue shirt and shorts lifts a large weight over his head.\", \" Another man is filming it.\", \" The same man comes back and lifts the weight over his head again.\", \" He drops it on the ground and walks away.\"]}, \"v_9wMEbyzxNHI\": {\"duration\": 162.15, \"timestamps\": [[0, 9.73], [0, 101.34], [100.53, 162.15]], \"sentences\": [\"men are talking to the camera sitting in a chair.\", \" men taking off their glasses and shave the half of their faces while a woman is putting some makeup on them, doing their eyebrows and putting some eyeliner and lashes.\", \" men look at them in the mirror with the half way of the face with makeup and the oher half without makeup and are talking to the camera.\"]}, \"v_V2MlQezL1IE\": {\"duration\": 191.12, \"timestamps\": [[0, 12.42], [18.16, 191.12], [22.93, 39.18], [44.91, 177.75], [116.59, 177.75], [178.7, 191.12]], \"sentences\": [\"The video begins with a title screen.\", \" An older man is seen in a gym speaking to the camera while men play volleyball in the background.\", \" A simulated screen showing a volleyball court shows while he speaks.\", \" The video then comes back to the older man who is directing the players.\", \" The men begin tossing a volleyball back and forth.\", \" The video ends with a final title screen.\"]}, \"v_MZz0OTfvjrY\": {\"duration\": 102.42, \"timestamps\": [[0, 12.8], [12.8, 17.41], [17.41, 51.72], [51.72, 62.48], [62.99, 102.42]], \"sentences\": [\"An Asian girl sitting at a desk describes arm wrestling.\", \" the girl introduces An Asian boy who sits across from the Asian girl.\", \" The girl and boy prepare to arm wrestle as a referee stands above the girl arm wrestler uses both arms and pushes in the wrong direction.\", \" The girl and boy arm wrestlers get into position again with the referee setting them up they begin wrestling.\", \" The girl wrestler tries to wrestle using both arms and her body but falls to the floor.\"]}, \"v_Cp4a_gN4pDQ\": {\"duration\": 65.18, \"timestamps\": [[0, 31.29], [30.63, 65.18]], \"sentences\": [\"Three men are seen sitting behind a set of bongo drums playing quickly while several camera flashes are shown.\", \" The men continue playing again while laughing and smiling at one another.\"]}, \"v_owflykBauOA\": {\"duration\": 25.96, \"timestamps\": [[0, 10.38], [11.81, 22.46], [24.01, 25.96]], \"sentences\": [\"A teenaged boy jumps on a skateboard, skating across a street and up a driveway before going back onto the street.\", \" He dismounts, talking as he kicks the board.\", \" He smiles at the camera, wearing sunglasses.\"]}, \"v_Pr3iVnKpv0c\": {\"duration\": 84.23, \"timestamps\": [[0.84, 82.97], [41.69, 46.75], [82.55, 84.23]], \"sentences\": [\"A teen plays violin in a room.\", \" The teen holds the violin with the left hand moving the fingers and playing with the bow.\", \" Then, the teen end playing the violin.\"]}, \"v_YPXeQVi39nU\": {\"duration\": 137.74, \"timestamps\": [[0, 15.15], [17.91, 83.33], [84.71, 137.74]], \"sentences\": [\"A man is on the beach with a bike.\", \" He sands down his surfboard.\", \" He goes surfing in the water.\"]}, \"v_xH7qxBIz-tU\": {\"duration\": 190.66, \"timestamps\": [[0, 1.91], [1.91, 180.17], [87.7, 92.47], [110.58, 119.16], [180.17, 190.66]], \"sentences\": [\"A man in a suit shows up on the screen.\", \" The man begins to fight with another man.\", \" The man in the suit resets his stance.\", \" After fighting more the man in the suit resets his stance again.\", \" After the fighting continues another man shows up in the room and escorts the man in the suit out.\"]}, \"v_jCNaa108OhI\": {\"duration\": 137.51, \"timestamps\": [[6.19, 61.19], [61.88, 134.76]], \"sentences\": [\"People shovels the snow using a wheeled snow shovel.\", \" Then, a man demonstrates how to shovel the snow, the he uses a bag.\"]}, \"v_5c1zqvr3yKM\": {\"duration\": 80.32, \"timestamps\": [[6.02, 7.63], [7.63, 59.84], [61.04, 63.45]], \"sentences\": [\"A woman is holding a cat onto a table.\", \" She starts clipping the cats nails with a tool.\", \" She finishes and pets the cat.\"]}, \"v_aNQRlsp5yv8\": {\"duration\": 213.44, \"timestamps\": [[4.27, 71.5], [45.89, 83.24], [88.58, 120.59], [72.57, 191.03]], \"sentences\": [\"A man and a boy make a sand castle in the beach.\", \" People approach to watch the castle and start to make small house next the sand castle.\", \" A little girl is doing more houses next to the castle.\", \" The man digs a hole in the center while the boy help extend the castle.\"]}, \"v_QYb2ektVZek\": {\"duration\": 150.56, \"timestamps\": [[1.51, 8.28], [8.28, 57.21], [60.22, 136.26], [82.81, 85.07], [136.26, 147.55]], \"sentences\": [\"A woman walks on the street wearing a cap.\", \" A city is zoom in a map, then a girl performs water sky in a river pulled by a boat while flipping in the air.\", \" A road is leading to a water ski station, then a woman slides on ramps in the water holding a water ski rope.\", \" A man takes pictures to the girl.\", \" Then the girl change clothes and stand on a truck holding prizes.\"]}, \"v_UeuZeIASSPw\": {\"duration\": 129.03, \"timestamps\": [[0, 16.13], [16.13, 22.58], [22.58, 72.26], [72.26, 129.03]], \"sentences\": [\"woman is standing in a racetrack and start running to make a long jump.\", \" man stands and marks the space where the woman jumped.\", \" the long jump is repeated and a new woman is running in the race track to make the long jump too and a man sits rise a whie flag.\", \" woman is in race trakc while other men are in the background and the woman makes the long jump in the competition and then a repetition is shown along the results.\"]}, \"v_civPiYFf2vE\": {\"duration\": 103.31, \"timestamps\": [[0, 2.58], [3.1, 17.05], [18.6, 56.82], [57.85, 87.81], [90.39, 103.31]], \"sentences\": [\"We see a opening title screen.\", \" We see a man holding a vacuum and using the vacuum to hold two bowling balls.\", \" The man vacuums stairs and a car interior.\", \" We see the vacuum and the man vacuums the ceiling, couch, blinds and others.\", \" We see the man empty the canister and put the vacuum in  a closet.\"]}, \"v_Gg8Ha8OPtZ0\": {\"duration\": 21.43, \"timestamps\": [[1.5, 14.04], [14.04, 18.75], [18.75, 20.36]], \"sentences\": [\"There are two young boys, one dressed in a red shirt and the other in a striped shirt at a bowling alley.\", \" The boy in the red shirt bowls with a large green ball and hits a strike.\", \" He is ecstatic after his win and begins jumping with joy.\"]}, \"v_Ccy8WD2k4L8\": {\"duration\": 103.53999999999999, \"timestamps\": [[0, 7.25], [7.77, 39.34], [39.86, 81.28]], \"sentences\": [\"A woman is dancing on a stage.\", \" She picks up a microphone and starts singing.\", \" She begins to play a drum set in front of her.\"]}, \"v_kF6tSW-ZOFg\": {\"duration\": 15.42, \"timestamps\": [[0, 0.85], [0.77, 7.4], [7.4, 15.19]], \"sentences\": [\"A lady stands at the end of a hopscotch court.\", \" The lady then jumps across the hopscotch court towards the right.\", \" The lady then hops back where she started.\"]}, \"v_6EN1q4TmPtI\": {\"duration\": 99.28999999999999, \"timestamps\": [[0, 24.82], [25.32, 70], [70.5, 99.29]], \"sentences\": [\"Young people carry inflatable boats and get in the water.\", \" Then, the young people lie face down on the boats and sail in the river.\", \" After, the men advance in the water moving the hand to help advance.\"]}, \"v_MQ7k1wig4jk\": {\"duration\": 16.16, \"timestamps\": [[6.38, 13.74], [13.74, 15.11]], \"sentences\": [\"There are several men playing Foos ball in an indoor room that has wooden panels.\", \" They are all engrossed in the game as they hit the ball back and forth.\"]}, \"v_-zp0Sban5Wk\": {\"duration\": 186.55, \"timestamps\": [[0, 27.98], [38.24, 74.62], [77.42, 136.18], [139.91, 166.03], [169.76, 186.55]], \"sentences\": [\"A woman is standing in her kitchen in front of a counter.\", \" She shows a plate of food, and several ingredients.\", \" She boils pasta in a pot, draining it.\", \" She then mixes cheese, orzo, and vegetables, creating an orzo pasta salad.\", \" She takes a bite of the food.\"]}, \"v__HeqBIO9TgQ\": {\"duration\": 65.32, \"timestamps\": [[0, 4.57], [4.9, 9.47], [14.04, 21.55], [35.27, 40.5], [53.89, 59.11], [60.09, 65.32]], \"sentences\": [\"A lady and a child are washing dishes in the dirt.\", \" The little girl walks away.\", \" The lady rinses her dishes and puts them on a shelf.\", \" We see the boys standing behind the lady.\", \" We see the shelf and the dishes.\", \" We then see the closing credits screen.\"]}, \"v_NKNgAE07TIQ\": {\"duration\": 169.25, \"timestamps\": [[11.85, 28.77], [28.77, 44.01], [44.01, 60.93], [60.93, 71.93], [71.93, 88.86], [88.86, 123.55], [123.55, 136.25], [136.25, 144.71], [144.71, 169.25]], \"sentences\": [\"A man wearing a black shirts with a graphic design is seated near a table with liquor bottles and a shaker.\", \" He is a demonstrating how to make a seasonal alcoholic drink.\", \" He picks up the liquor bottles that he will be using for the drinks.\", \" He uses the jigger to measure and then pour the necessary ingredients into the shaker.\", \" He then adds some cream to the mixture.\", \" He adds a few cubes of ice into the shaker.\", \" Then he shakes beverage vigorously and pours into a conical glass.\", \" He then tops the drink with whipped cream from a can and puts a cherry on the top.\", \" He gives information about his Facebook page and other details.\"]}, \"v_fMVKdmMVixQ\": {\"duration\": 182.6, \"timestamps\": [[0, 8.22], [12.78, 18.26], [30.13, 182.6]], \"sentences\": [\"A group of people stand behind a master yogi.\", \" He instructs them on position before leading them in yoga.\", \" They perform several moves, slowly and gracefully.\"]}, \"v_nhW0O7NC0GM\": {\"duration\": 69.24, \"timestamps\": [[0.35, 28.74], [18.35, 53.66], [47.43, 67.51]], \"sentences\": [\"A man is seen sitting in the water in a kayak speaking to the camera.\", \" The man continues speaking while holding a paddle in his hands.\", \" He moves around a bit in the water and leads into him paddling along the water.\"]}, \"v_520b6oA9s-U\": {\"duration\": 234.29, \"timestamps\": [[2.34, 91.37], [92.54, 124.17], [124.17, 181.57], [182.75, 234.29]], \"sentences\": [\"A woman explains how to make a cake in a kitchen, then she puts four eggs and sugar in a bowl and beat with an electric mixer and add more ingredients to form a wet mix.\", \" The woman puts solids on a big bowl and then add the wet mix, oil and milk, then mix with an spatula.\", \" After, the woman puts the mix in a greased baking pan and make a syrup with orange juice in a pot.\", \" Next, she put the baking cake on a dish and put syrup on top.\"]}, \"v_nn__PD7zCcs\": {\"duration\": 41.33, \"timestamps\": [[0, 8.68], [8.68, 36.99], [36.99, 41.33]], \"sentences\": [\"An elderly man is standing in a small room and is plastering a ceiling where he starts in the middle of the room.\", \" He then moves to the left and begins to plaster in the corner of the ceiling.\", \" The man then stops plastering, and while still talking he faces towards the direction of the camera.\"]}, \"v_RKsto2FmBzM\": {\"duration\": 118.49000000000001, \"timestamps\": [[0, 33.18], [32.59, 104.87], [104.87, 118.49]], \"sentences\": [\"A man with a orange shirt and black hat with glasses are outside standing in front of a green tree.\", \"A lawn is shown and then the man begins to mow his lawn.\", \"Once the man is finished he comes back to camera and starts talking.\"]}, \"v_Sbgh1UQcG24\": {\"duration\": 196.93, \"timestamps\": [[0, 1.97], [2.95, 3.94], [3.94, 83.69], [83.69, 109.3], [109.3, 136.87], [136.87, 161.48], [161.48, 177.24], [178.22, 196.93]], \"sentences\": [\"A man standing or sitting behind a chopping board with vegetables on it equips a forearm-mounted knife.\", \" The man talks to the camera while pointing the knife at the camera.\", \" The man chops various types of items on the chopping board with the knife in sped up video.\", \" The man removes the knife and manipulates the containers of ingredients around him.\", \" The man re-equips the knife and resumes chopping.\", \" The man removes the knife and manipulates the ingredients around him again.\", \" The man re-equips the knife and resumes chopping again.\", \" The man removes the knife and cleans up his work area.\"]}, \"v_DAd-joUpMIk\": {\"duration\": 100.45, \"timestamps\": [[17.08, 35.66], [35.66, 51.73], [51.73, 60.27], [60.27, 65.79], [65.79, 77.85], [77.85, 90.91], [90.91, 100.45]], \"sentences\": [\"A woman is getting ready too bungee jump from a cable car.\", \" She is surrounded by two men in yellow shirts.\", \" One of the men is holding a phone camera in his hand to video tape her as she jumps.\", \" The men begin singing to cheer and encourage her to jump.\", \" After much hesitation, the woman finally jumps and hangs from the rope.\", \" There is another woman in the cable car getting ready to jump down.\", \" There is a huge crowd standing on the bridge, looking up at the cable car.\"]}, \"v_Hxb8D4W-G0I\": {\"duration\": 186.13, \"timestamps\": [[0, 43.74], [43.74, 162.87], [119.12, 129.36], [162.87, 186.13]], \"sentences\": [\"A boy sits on a rock before walking along a shoreline.\", \" The young man rides his skateboard down hills around a beach town.\", \" The young goes to a local restaurant for a meal.\", \" The harbor is seen and the young man walks down a train track at sunset.\"]}, \"v_TdNiQsZNJTU\": {\"duration\": 198.23, \"timestamps\": [[0, 27.75], [35.68, 130.83], [148.67, 198.23]], \"sentences\": [\"A group of people are swimming in a large indoor pool.\", \" They swim laps back and forth as they go.\", \" They try to compete, getting to the other side the fastest.\"]}, \"v_6qynXM937V0\": {\"duration\": 147.32999999999998, \"timestamps\": [[33.89, 41.99], [41.99, 125.23], [125.23, 135.54], [135.54, 140.7]], \"sentences\": [\"There's a man wearing a hat and a beige colored shirt standing on the banks of a river playing his harmonica.\", \" There is a still river behind him.\", \" He continues playing his harmonica to a soothing tune.\", \" After he stops playing, he puts his hands down.\"]}, \"v_SdbxPbXeQJ0\": {\"duration\": 171.39, \"timestamps\": [[11.14, 34.28], [34.28, 41.99], [45.42, 65.98], [63.41, 95.12], [100.26, 118.26], [113.97, 144.82], [158.53, 164.53]], \"sentences\": [\"A man is sitting on a couch drinking a beer.\", \" He stands up and walks out the door.\", \" Someone is walking into a kitchen.\", \" They open the fridge and get a beer.\", \" They bring it to the man in bed.\", \" He sits up and starts drinking the beer.\", \" A person picks up a cell phone on a bed.\"]}, \"v_aa-bFJZmcko\": {\"duration\": 181.16, \"timestamps\": [[6.34, 92.39], [79.71, 176.63]], \"sentences\": [\"Various shots of a close up of a bike and a person pointing to the bike in various spots.\", \" The person continuously adjusts the bike and pans the camera all around it in the end.\"]}, \"v_9riZioI46sM\": {\"duration\": 113.22, \"timestamps\": [[0, 10.76], [11.32, 27.17], [27.74, 97.94], [98.5, 113.22]], \"sentences\": [\"A boy is bent over in his bedroom.\", \" He is trying to put on a shoe.\", \" He sits down, playing with a broken lace.\", \" He continues working with the shoe lace until he can get it tied.\"]}, \"v_aVL9ArQS_Ag\": {\"duration\": 140.81, \"timestamps\": [[0.7, 49.99], [49.99, 137.99]], \"sentences\": [\"A man holds a pair of boots while talking and showing dirty parts.\", \" Then, the man put a clothe inside the boot and brush the shaft of the boot thoroughly.\"]}, \"v_gSeE_Ms-2TI\": {\"duration\": 158.35, \"timestamps\": [[0, 39.59], [38.8, 118.76], [120.35, 153.6]], \"sentences\": [\"A man is seen kneeling down on a roof and speaking to the camera.\", \" The camera pans all around the roof while the man is seen sitting and still speaking.\", \" The camera pans all around the roof and shows the man still sitting.\"]}, \"v_4Gs7Xyn16QI\": {\"duration\": 87.47, \"timestamps\": [[0, 7.87], [8.31, 66.91], [67.35, 87.47]], \"sentences\": [\"A woman walks, then runs with a javelin.\", \" She throws it across the field, landing near her goal.\", \" A few other teammates also perform the act, then we see the final scoreboard.\"]}, \"v_1UQYk6ohuRE\": {\"duration\": 177.07999999999998, \"timestamps\": [[0, 170.88], [54.01, 170.88], [96.51, 170.88]], \"sentences\": [\"A man talks on front a bush while other person stands on his right side.\", \" Then, the man cuts the dead flowers of the bush while talking.\", \" Also, the person cuts the dead flowers of the bush.\"]}, \"v_fBov3cwPEho\": {\"duration\": 103.4, \"timestamps\": [[0.52, 11.37], [11.89, 15.51], [15.51, 25.33], [34.12, 46.53], [46.53, 68.24], [73.93, 78.07], [86.86, 103.4]], \"sentences\": [\"We see a man and a baby decorating a Christmas tree.\", \" The baby takes a blue bulb off the tree.\", \" The dad puts it back and the baby takes it again.\", \" The child turns towards the camera and the dad walks to a counter.\", \" The child drops the blue bulb and goes for another.\", \" The child adds another blue bulb to the tree.\", \" The camera pans up to show the tree and then shows the stockings.\"]}, \"v_wvlyV067oOU\": {\"duration\": 143.27, \"timestamps\": [[0, 143.27], [12.89, 43.7], [25.79, 123.21], [80.23, 123.21]], \"sentences\": [\"The young kids are bouncing on the big trampoline.\", \" The young boy fell on his back as he avoided the ball.\", \" The kids are wearing helmet as they threw the ball and other side of the kids dodge the ball.\", \" Two adult people went up to the trampoline to watch the kids.\"]}, \"v_CtA4VynDEkI\": {\"duration\": 24.03, \"timestamps\": [[0, 2.52], [2.28, 10.69], [10.57, 24.03]], \"sentences\": [\"A bunch of young children are shown playing in a park playground.\", \" A young boy climbs back and forth on the monkey bars.\", \" Another child then joins him on the bars as well.\"]}, \"v_jbSBQL08VHA\": {\"duration\": 169.0, \"timestamps\": [[0, 84.5], [76.89, 169]], \"sentences\": [\"A man is seen speaking to the camera and working on a bike followed by him pulling chains and spinning wheels on the bike.\", \" He peddles the bike and shows the tire spinning again, ending with him tightening the tire and spinning it once more.\"]}, \"v_DpI9JtaMtec\": {\"duration\": 173.82999999999998, \"timestamps\": [[0, 25.2], [26.07, 118.2], [118.2, 168.61]], \"sentences\": [\"Sandwiches are displayed in a slideshow.\", \" A person spreads mustard sauce on slices of bread, then the person put on top Swiss cheese, jam , sauerkraut and a slice of bread on top.\", \" After, the person spreads butter on the sandwiches and put them on a hot surface, then the person cuts the sandwiches in half.\"]}, \"v_aPXqTfbtgYI\": {\"duration\": 41.19, \"timestamps\": [[0, 5.56], [5.36, 30.48], [30.69, 41.19]], \"sentences\": [\"A white middle aged man is standing in a crowd of people playing a saxophone.\", \"As he continues,the video pans out and several other people join him in playing the saxophone and it is revealed that someone else is pressing the buttons for the man as he is blowing into the instrument.\", \"Then the camera pans back out and the crowd begins clapping for the audience.\"]}, \"v_U0Q10ZdqnJo\": {\"duration\": 13.82, \"timestamps\": [[6.22, 12.85], [12.85, 13.61]], \"sentences\": [\"There's a woman in a white shirt in an indoor tennis court hitting balls across the court.\", \" She bounces the ball on the ground and then serves the ball across the net.\"]}, \"v_tS-MHCJKMgM\": {\"duration\": 40.57, \"timestamps\": [[7.71, 30.22], [30.22, 39.35]], \"sentences\": [\"A welding specialist from Tulsa Welding School is demonstrating how to weld.\", \" He explains the techniques of welding with the help of welder wearing protective gear and mask, using the blow torch.\"]}, \"v_XEqijKYIJNg\": {\"duration\": 125.5, \"timestamps\": [[0, 41.42], [42.04, 101.03], [101.03, 121.74]], \"sentences\": [\"A woman shows a dish with vegetables and display the calories, the ingredients and the preparation of a dish.\", \" Then, the woman puts vegetables on a bowl, then she fry a leave and put it in the bowl.\", \" Then, the woman mix the vegetables and serves it on a dish.\"]}, \"v_QX3pwZOJbRs\": {\"duration\": 151.74, \"timestamps\": [[0, 151.74], [23.52, 99.39], [114.57, 151.74]], \"sentences\": [\"Two women attempt to wash two dogs.\", \"  They get in the tub with the dogs and do shampoo, soap, and then rinse the dogs.\", \"  They dry the dogs and the dogs are much happier.\"]}, \"v_7n9It_jjaBg\": {\"duration\": 50.2, \"timestamps\": [[0, 15.81], [16.06, 21.08], [21.34, 50.2]], \"sentences\": [\"A man stands on a bridge guardrail with a harness while another man holds him.\", \"  The man jumps off the bridge to the river below.\", \" The man swings back and forth over the rapids.\"]}, \"v_f0CVl853HUg\": {\"duration\": 42.4, \"timestamps\": [[0, 5.51], [5.51, 18.02], [18.02, 29.89], [29.89, 42.4]], \"sentences\": [\"A woman wearing green with red hair is scrubbing some clothes vigorously.\", \" The water and soap is splashing off of it on to the wall/ She picks up the piece of cloth and hits it against the stand.\", \" Then she gets some water from a buckets and pours it over.\", \" She squeezes it out and then put the cloth into a bucket of soapy water.\"]}, \"v_SIX51vtOOek\": {\"duration\": 91.09, \"timestamps\": [[8.65, 17.31], [17.31, 50.56], [50.56, 76.97], [76.97, 87.45]], \"sentences\": [\"There's an open land area with greenery around and grassy surface area.\", \" There's a lawn trimmer lying on the ground near some over grown patches of grass.\", \" A person wearing gray pants and gloves using a lawn trimmer to trim the patches of grass.\", \" He is trimming the lawn in a back and forth motion, moving the trimmer horizontally across the grass.\"]}, \"v_IKhLjVIYisg\": {\"duration\": 194.38, \"timestamps\": [[0, 4.86], [7.78, 23.33], [44.71, 171.05], [179.8, 194.38]], \"sentences\": [\"A close up is shown of a cracked asphalt road.\", \" Then we see a man walking, carrying a pair of inline skates.\", \" The man performs stunts, going down staircases and riding medians, doing flips and riding backwards.\", \" When he is done, he rides away.\"]}, \"v_nQVJyUX8fHw\": {\"duration\": 179.28, \"timestamps\": [[0, 34.06], [35.86, 94.12], [95.02, 107.57], [106.67, 179.28]], \"sentences\": [\"A child plays tennis in a court returning balls while a boy stands next to her.\", \" The boy left the court while the child continues returning balls, then the boy returns.\", \" Then, the boy left again the court, and then he returns with a racket and a ball.\", \" The child serves the ball, and the boy helps stands next her watching.\"]}, \"v_sCCJpFKVV8g\": {\"duration\": 180.14, \"timestamps\": [[0, 78.36], [68.45, 160.33]], \"sentences\": [\"A woman is seen bending over a table with a tattoo artist rubbing her back from behind and grabbing a tattoo needle.\", \" The woman then begins tattooing the back of the woman while the camera pans around from various angles.\"]}, \"v_pibXLs9IOX8\": {\"duration\": 214.69, \"timestamps\": [[0, 90.17], [90.17, 171.75], [171.75, 214.69]], \"sentences\": [\"man is standing in a green field preparing himself to make a cricket shot, other man is watchim him and take off the hat and the sunglasses and the man is really sweaty and prepare to make the shot and to score which he did, they enjoy and hug each other and the man throw the ball.\", \" men are seating on a couch in a living room and are talking to each other and to the camera.\", \" winner and information of the video is shown.\"]}, \"v_D5vmWDHQ86I\": {\"duration\": 139.54, \"timestamps\": [[0, 128.38], [6.28, 123.49], [26.51, 32.09], [30, 35.58], [39.77, 85.12], [78.14, 98.38], [103.26, 139.54]], \"sentences\": [\"There's a man in a green shirt talking and being interviewed by another man dressed in a black jacket and gray pants.\", \" They are seated on chairs in a large room with wooden floors.\", \" The entrance of the Valqueire Tennis club is shown.\", \" The ID card of the person being interviewed is also shown.\", \" The man in green continues talking about soccer to the interviewer.\", \" Brazil versus Venezuela soccer game is shown.\", \" The man in green talks about a newspaper article related to the soccer as clips from the soccer game are shown.\"]}, \"v_im6KJzbZzKE\": {\"duration\": 135.35, \"timestamps\": [[0, 36.54], [33.16, 103.54], [89.33, 135.35]], \"sentences\": [\"An athletic woman is seen standing before a track and begins running down the side.\", \" She runs and jumps into a sand pit while a man records her score.\", \" Several more clips are shown of women running down the track and jumping into the pit.\"]}, \"v_lM3uGxHWZBA\": {\"duration\": 144.23, \"timestamps\": [[0, 40.39], [31.01, 98.8], [91.59, 142.07]], \"sentences\": [\"Several people are seen running around a field playing a game together.\", \" The players cheer and speak to one another as well as showing more highlights of the game.\", \" More clips are shown of people walking away and playing the game.\"]}, \"v_38nAdby_fTw\": {\"duration\": 148.0, \"timestamps\": [[0.74, 10.36], [13.32, 130.24], [14.06, 27.38], [133.94, 136.9], [137.64, 141.34], [142.08, 144.3]], \"sentences\": [\"The credits of the clip are shown.\", \" A person rides a dirt bike over a hill or dirt pile with help from an incline structure.\", \" A person stands, shakes their head and leaves on a dirt bike.\", \" Two guys sit on their dirt bike and discuss.\", \" One guy uses his rear tire to cause dirt to spray.\", \" The credits of the video are shown.\"]}, \"v_swId_MFHywI\": {\"duration\": 223.93, \"timestamps\": [[0, 7.84], [7.84, 14.56], [14.56, 15.68], [15.68, 19.03], [19.03, 31.35], [31.35, 35.83], [35.83, 95.17], [95.17, 118.69], [118.69, 193.7], [193.7, 203.78], [203.78, 223.93]], \"sentences\": [\"A black book called Windmills is on the screen.\", \"  The camera zooms into a dancer.\", \"  VincaniTV comes up on the screen.\", \"  the instructor is talking.\", \"  The instructor is sitting on the floor introducing the move.\", \"  A shot of the move is shown, then the instructor shows how to do it.\", \"  He pushes  himself up on his hand and does another move.\", \"  He is on one knee to show another move.\", \" The screen goes to another shot of the same move but faster this time.\", \"  The instructor is standing and talking.\", \"  The screen ends with a VincaniTV promo.\"]}, \"v_TnOdqLQPQA4\": {\"duration\": 99.00999999999999, \"timestamps\": [[0, 99.01], [50.99, 99.01]], \"sentences\": [\"A woman is standing in a camp site.\", \" She lights matches and throws them into a pile of wood.\"]}, \"v_c6BcS5NdI6E\": {\"duration\": 178.93, \"timestamps\": [[0.89, 106.47], [67.1, 169.09]], \"sentences\": [\"A large group of people are seen playing a game of volley ball with one another while moving around the beach.\", \" Several shots are shown of the people wandering around one another playing the game back and fourth over the net and helping one another.\"]}, \"v_-SYV9IB-36s\": {\"duration\": 220.17000000000002, \"timestamps\": [[0, 11.01], [17.61, 75.96], [74.86, 199.26], [199.26, 220.17]], \"sentences\": [\"An ad for Howcast is shown.\", \" It is followed by a woman in a chair who smiles for the camera, and a woman with braided hair who is speaking.\", \" The woman in red applies various makeups to the seated woman, explaining the process as she goes.\", \" When she is finished, she speaks again to the camera.\"]}, \"v_AZaSkc1gnhY\": {\"duration\": 189.87, \"timestamps\": [[2.85, 18.99], [19.94, 78.8], [79.75, 112.02], [112.97, 145.25], [145.25, 181.33]], \"sentences\": [\"A man drinks coffee and then plays guitar indoor.\", \" The man makes a pause and takes his coffee.\", \" Then, the man hols a cup of coffee and a guitar in the street.\", \" After, the man plays guitar indoor on front an audience.\", \" Next, the man plays harmonica and guitar at the same time.\"]}, \"v_hQeDWu5NOj8\": {\"duration\": 128.38, \"timestamps\": [[0, 35.31], [30.81, 96.29], [70.61, 126.46]], \"sentences\": [\"A small group of people are seen riding in a raft down a rough river.\", \" The people use paddles to move themselves along the water and under tunnels.\", \" The group continue riding down the river and end with text across the screen.\"]}, \"v_5WJL9eJ8YDw\": {\"duration\": 83.2, \"timestamps\": [[0.42, 38.69], [32.45, 79.45]], \"sentences\": [\"An intro leads into several clips of people standing in a circle and throwing an object off into the distance and ends by walking away.\", \" Several more people are seen steeping up into the circle throwing objects off into the distance and cheering with one another.\"]}, \"v_PJdE8Ui2eno\": {\"duration\": 184.11, \"timestamps\": [[0, 91.14], [51.55, 133.48], [92.98, 177.67]], \"sentences\": [\"A man is seen holding onto a rope and speaking to the camera.\", \" He holds up his belt while speaking to the camera and begins climbing up the wall.\", \" The man climbs all the way up the wall and ends by looking off from the camera.\"]}, \"v_xr0tV2KNqgI\": {\"duration\": 98.28999999999999, \"timestamps\": [[0, 98.29], [16.22, 28.01], [20.64, 22.61], [33.42, 98.29], [88.95, 98.29]], \"sentences\": [\"A crowd of people watch as two bulls fight each other in a competition.\", \" The camera pans over to show many people in the crowd watching the show.\", \" A man walks by the camera.\", \" Several people are getting close to the bull trying to catch the action.\", \" The bulls begin to chase each other around the field.\"]}, \"v_3Edxa-t4MxA\": {\"duration\": 158.5, \"timestamps\": [[0, 73.7], [45.17, 126.01], [126.8, 158.5]], \"sentences\": [\"Various shots of trophies are shown with girls interviewing the camera as well as performing gymnastics moves.\", \" An instructor then shows the girls how to perform a stunt properly and has another girl climb on top of their hands.\", \" The girl continuously perform stunts with the instructors help and another girl is shown speaking to the camera.\"]}, \"v_EWt03pUigc0\": {\"duration\": 120.98, \"timestamps\": [[11.49, 38.11], [38.11, 62.3], [62.3, 83.47], [83.47, 107.67], [107.67, 114.32]], \"sentences\": [\"There's a news reporter dressed in a pink floral dress and a white jacket giving an update on sports news.\", \" She shows events of the London Paralympics.\", \" She is showing the viewers the different events such as shoot put, swimming and running and the gold medals that were won in these events.\", \" While the news is being telecast, there are captions on the bottom about current events.\", \" She also shows the viewers all the medals that are won by all countries that participated in the Paralympics.\"]}, \"v_u10c6Nx4K0A\": {\"duration\": 5.99, \"timestamps\": [[0, 1.38], [1.47, 5.99]], \"sentences\": [\"A woman runs down a dirt path.\", \" She uses a pole to vault over a high beam.\"]}, \"v_j6S6eWSeGr0\": {\"duration\": 51.9, \"timestamps\": [[0, 48.26], [22.32, 51.9]], \"sentences\": [\"A person is shown in fast motion spraying liquid all over a fence in a back yard.\", \" The person continues spraying and ends with the camera fading to black.\"]}, \"v_xKDHIyd_tWA\": {\"duration\": 111.02000000000001, \"timestamps\": [[0, 5], [5, 86.04], [5, 85.48], [60.5, 64.94], [86.59, 111.02]], \"sentences\": [\"The video begins with a title slide.\", \" A woman and child are in a park with a jump rope.\", \" The woman begins to demonstrate how to use the jump rope while the child attempts to copy her.\", \" At one point, another woman in the background runs across the screen while jump roping.\", \"The video ends with both women speaking to the camera and a final title sequence.\"]}, \"v_-v9YLmGCYO0\": {\"duration\": 72.26, \"timestamps\": [[0, 72.26], [0, 45.89], [45.16, 72.26]], \"sentences\": [\"A baby is sitting in a swing.\", \" The baby is laughing and shaking its feet.\", \" The baby turns to the side of the swing.\"]}, \"v_5kBKAfEX7XA\": {\"duration\": 45.65, \"timestamps\": [[0, 25.79], [13.47, 43.6]], \"sentences\": [\"An athlete is seen walking up to a set of uneven bars and begins performing a gymnastics routine on the bars.\", \" He continues moving around on the bars and ends by jumping down on the side with his arms out.\"]}, \"v_8cKjwHtCGU0\": {\"duration\": 81.75, \"timestamps\": [[0, 81.75], [25.75, 81.75], [78.89, 81.75]], \"sentences\": [\"A man in a red shirt is talking to the camera.\", \" He begins to hit a ball against a wall in front of him.\", \" He stops and walks towards the camera.\"]}, \"v_sX8Rr1o4XWM\": {\"duration\": 74.78999999999999, \"timestamps\": [[0, 16.45], [15.71, 54.22], [46.37, 71.8]], \"sentences\": [\"A close up of a sign is shown followed by a person dipping paint.\", \" The person is then seen spreading paint all around the area while another smiles to the camera.\", \" The men continue to lay plaster down on the walls.\"]}, \"v_J65l9OEP3pI\": {\"duration\": 120.16, \"timestamps\": [[16.22, 21.03], [21.03, 34.25], [34.25, 57.08], [57.08, 79.31], [79.31, 106.95], [106.95, 112.35]], \"sentences\": [\"A man is cleaning snow that has fallen on his car.\", \" He is standing on the road where his car is parked.\", \" He clears off snow from the top of his car by scraping it.\", \" He then cleans the sides of his car.\", \" He gives someone a thumbs up as he cleans the car.\", \" He then moves to the front of the car to clean the windshield.\"]}, \"v_1D7iddqIIhM\": {\"duration\": 15.88, \"timestamps\": [[0.24, 7.54], [5.24, 10.96], [10.72, 15.72]], \"sentences\": [\"A close up of a hookah is seen that leads to another man.\", \" The man grabs the hose and takes a hit from the hookah.\", \" The man then blows smoke into the camera lens.\"]}, \"v_oYH-XLQzMxU\": {\"duration\": 33.3, \"timestamps\": [[0, 9.99], [10.32, 23.97], [24.14, 33.3]], \"sentences\": [\" The man bounces the ball and hits it with his racket.\", \" The man bounces the ball and hits it across the court.\", \" The man then bounces and hits one more ball.\"]}, \"v_hsUfo_jHQ60\": {\"duration\": 83.81, \"timestamps\": [[0, 39.81], [39.39, 83.81]], \"sentences\": [\"An athletic man is seen running through a street in slow motion while the camera moves around his body.\", \" The video then freezes on his feet to show text and ends with him holding his arms up into the air.\"]}, \"v_YddPa1ujWuk\": {\"duration\": 140.89, \"timestamps\": [[0, 47.9], [32.4, 102.14], [91.58, 135.25]], \"sentences\": [\"A woman is seen speaking to the camera while holding up a box and newspaper.\", \" The woman then begins cutting the news paper and place the box in the middle.\", \" The women wraps up the box with the news paper and tapes it down on the sides.\"]}, \"v_20i6YGSnt-c\": {\"duration\": 54.61, \"timestamps\": [[1.09, 24.3], [18.02, 52.7]], \"sentences\": [\"A man is seen speaking to the camera and begins shaving off his facial hair.\", \" The man continues shaving and shows off his before and after pictures.\"]}, \"v_UeMcMSTO-Yg\": {\"duration\": 128.57, \"timestamps\": [[0, 118.28], [28.29, 128.57]], \"sentences\": [\"A woman is seen speaking to the camera and showing off various tools to the camera.\", \" She explains how each tool works for cleaning a horse and ends by smiling to the camera.\"]}, \"v_II3AiNrQ1uA\": {\"duration\": 40.08, \"timestamps\": [[0, 6.41], [6.21, 34.87], [34.87, 40.08]], \"sentences\": [\"A text introduction describing the event is shown.\", \" A woman performs gymnastics on uneven bars while a number of spectators watch.\", \" The woman dismounts from the bars.\"]}, \"v_nEAypudaSFs\": {\"duration\": 126.82, \"timestamps\": [[0, 124.28], [8.24, 116.67], [69.75, 112.23], [112.87, 126.82]], \"sentences\": [\"There's a young man in a red shirt and blue beanie hat playing the harmonica.\", \" He plays rhythmically as he moves the harmonica rapidly through his mouth to play a fast tune.\", \" He continues playing the tune as he closes his eyes in deep concentration.\", \" He moves the harmonica side ways as he continues playing till he comes to an end.\"]}, \"v_02WlEYafQ9Q\": {\"duration\": 80.09, \"timestamps\": [[4.4, 74.08], [4.81, 22.82], [23.63, 43.65], [29.63, 42.05], [42.85, 73.68]], \"sentences\": [\"Several people white water raft and kayak in large inflatable rafts and kayaks on a violent, narrow,  body of water surrounded by large rocks.\", \"  A group of people on a blue water raft paddle against a violent stream/body of water.\", \"  Several lone people paddle in small kayaks against the same violent water.\", \"  A person navigates the rocky waves in a large water raft.\", \"  The rafters and kayakers continue to fight the force of the water  as the scene face to a positivity mantra and then to black.\"]}, \"v__AdJtwjeITM\": {\"duration\": 60.12, \"timestamps\": [[0, 11.12], [13.23, 33.97], [33.06, 49], [34.27, 49], [48.39, 60.12]], \"sentences\": [\"A group of older men walk into a ice rink.\", \" The group of men gather and  get ready to play curling.\", \" A younger man and an older man work as a team to move the curl.\", \" A older gentleman smiles at the camera while holding his curling stick over his head.\", \" The group of men then start to display number and have a laugh.\"]}, \"v_2DtotlMv9Gg\": {\"duration\": 65.62, \"timestamps\": [[0, 65.62], [54.46, 61.35], [57.42, 61.35]], \"sentences\": [\"People are playing lacrosse on a field.\", \" They score a point into the net.\", \" Two men high five on the field.\"]}, \"v_HGDatODUecQ\": {\"duration\": 85.31, \"timestamps\": [[0, 38.39], [29.86, 85.31]], \"sentences\": [\"A close up of water rapids is shown followed by a group of people attempting to paddle in a raft.\", \" The people riding all down the river while sticking their paddle up at one point all together.\"]}, \"v_lhH3qdh8n3g\": {\"duration\": 89.0, \"timestamps\": [[11.13, 24.03], [24.03, 53.85], [53.85, 63.64], [63.64, 81.88], [81.88, 89]], \"sentences\": [\"There are about ten or more people dressed in athletic wear doing a synchronized form of exercise.\", \" They are doing the steps rhythmically to the beats of a song that is played in the fitness center.\", \" There are disco lights flashing in the fitness center.\", \" They continue to do the steps as they clap their hands in between the steps.\", \" They also step on and step off of a step stool as they continue their steps.\"]}, \"v_bx5ZHOUG-nI\": {\"duration\": 119.85, \"timestamps\": [[1.2, 55.13], [56.93, 118.65]], \"sentences\": [\"A person is seen bending down over a bucket filled with water and washing clothes in the bucket.\", \" The boy continues washing when another person steps in to help wash the clothes and speak to the camera.\"]}, \"v_K8ivAsscK98\": {\"duration\": 205.67000000000002, \"timestamps\": [[0, 69.93], [68.9, 175.85], [173.79, 205.67]], \"sentences\": [\"A camera pans between a person and the cameraman and leads into a man sitting in front of a drum set.\", \" The man then plays the drums continuously and another man walks in and sings and dances.\", \" Another man is shown close up and pans back to the drummer then ceiling.\"]}, \"v_9E-FFtZl9qM\": {\"duration\": 97.33, \"timestamps\": [[0, 30.17], [30.66, 72.02], [68.62, 93.43]], \"sentences\": [\"A woman is seen speaking to the camera and leading into clips of her running.\", \" Close ups of her feet are shown as well as more clips of her speaking and running.\", \" She's shown packing up a car and showing off her tools as well as her gear while still running on the road.\"]}, \"v_xpA16yFuDqw\": {\"duration\": 111.06, \"timestamps\": [[0, 24.99], [26.65, 78.85], [79.41, 111.06]], \"sentences\": [\"A woman and man are shown swimming backward in the water of a pool.\", \" They demonstrate different techniques as the swim.\", \" The names of the various methods appear on the screen between examples.\"]}, \"v_lwqSz2Q2L-E\": {\"duration\": 50.99, \"timestamps\": [[1.27, 23.97], [19.63, 49.72]], \"sentences\": [\"A woman is seen sitting on a stool smoking a cigarette and looking off into the distance.\", \" The woman blows smoke into the air as the camera captures her from several angles continuously smoking.\"]}, \"v_5JkN8t5k0jU\": {\"duration\": 41.75, \"timestamps\": [[0, 6.89], [8.14, 26.09], [25.47, 41.75]], \"sentences\": [\"An intro of titles eventually leads to an athlete holding a large amount of weights over his head.\", \" The same man does another lit with his weights while another man watches in the background.\", \" He throws the weights down and throws his arms up in the air to celebrate.\"]}, \"v_LXHc1X1pKEM\": {\"duration\": 201.36, \"timestamps\": [[13.09, 24.16], [24.16, 83.57], [83.57, 118.8], [118.8, 132.9], [132.9, 169.15], [169.15, 183.24]], \"sentences\": [\"A woman with short hair and a white tank top is sitting in her bathroom talking about a cyclist who is going to shave his legs.\", \" She stands up and shows the cycling team printed on her tank top.\", \" She shows the viewers the type of razor she will be using.\", \" There's a young man sitting on the bath tub along with the woman.\", \" He washes his legs with baby soap and water and begins shaving his legs.\", \" Then the woman takes the razor and helps her husband shave his legs.\"]}, \"v_P6z57_sYXm8\": {\"duration\": 81.67, \"timestamps\": [[6.94, 14.29], [10.21, 75.54], [24.09, 25.72], [33.89, 49.82], [79.22, 79.62]], \"sentences\": [\"Windsurfer turns his sail around in a 360.\", \"  Windsurfer rides the waves slowly forward.\", \"  Man walks in front of the camera.\", \"  Windsurfer spins his sail around quickly.\", \"  Windsurfer falls into the ocean.\"]}, \"v_mb5CLhyHMvU\": {\"duration\": 136.26, \"timestamps\": [[0, 21.12], [21.8, 57.23], [57.23, 90.61], [90.61, 136.26]], \"sentences\": [\"People are skiing down a snowy slope very slowly and gracefully.\", \" A little boy is bending down trying to catch more speed, he is pretty good at skiing.\", \" They continue forward very slowly taking their time and enjoying the experience.\", \"they start to slow down a bit almost stopping but then they build back up and continue on.\"]}, \"v_XztphLXwZjU\": {\"duration\": 126.97, \"timestamps\": [[0, 63.48], [64.12, 126.97]], \"sentences\": [\"A man is indoors, quickly placing wood tiles onto a floor as the camera plays extremely fast.\", \" He uses a leveler and cutter and completes the room with grout before walking out.\"]}, \"v_KfP205pf7PU\": {\"duration\": 103.05, \"timestamps\": [[4.64, 7.21], [7.21, 14.43], [15.46, 23.19], [23.7, 36.07], [37.1, 40.71], [41.22, 46.89], [46.89, 74.71], [76.26, 87.59], [87.08, 98.93]], \"sentences\": [\"Cars drive by a sign by the road.\", \" Several women are shown around a table preparing to knit.\", \" A woman talks to the camera in an interview style.\", \" The women around the table engage in knitting-related activities.\", \" A bus is shown parked outside the building.\", \" The woman from the interview scene talks to the camera again.\", \" The women at the table are shown knitting.\", \" Several exterior shots of the building's locale are shown.\", \" The women at the table are shown knitting again.\"]}, \"v_bhAVJ2uUw0U\": {\"duration\": 63.93, \"timestamps\": [[0, 32.92], [33.88, 63.93]], \"sentences\": [\"A person is seen wiping off the face of a baby with a rag while the baby sticks it's tongue out.\", \" the woman continues cleaning the baby and is shown smiling to the camera and waving.\"]}, \"v_c1T9LbXOVUs\": {\"duration\": 105.11, \"timestamps\": [[0.53, 59.39], [43.62, 103.53]], \"sentences\": [\"Two men are seen playing rock paper scissors with one another and hitting the person who loses.\", \" The men continue playing this game back and fourth and rub each other's heads while others watch.\"]}, \"v_I7Sole68Gag\": {\"duration\": 96.43, \"timestamps\": [[0, 7.71], [7.71, 39.54], [39.06, 69.43], [69.91, 96.43]], \"sentences\": [\"Swimmers are swimming to one side of the pool and then they stop briefly.\", \" Some swimmers on the side lines are watching them.\", \" They start throwing a ball back and forth around.\", \" A man in the corner of the pool tries to catch the ball and misses it.\"]}, \"v_Sx7YgFLnwfM\": {\"duration\": 226.71, \"timestamps\": [[0, 20.4], [20.4, 41.94], [43.07, 226.71]], \"sentences\": [\"A woman is sitting in a chair talking.\", \" A persons hand is playing rock paper scissors with a robot.\", \" A man in a white shirt is talking to the woman.\"]}, \"v_0_9_HIvxNMw\": {\"duration\": 198.42000000000002, \"timestamps\": [[0, 38.69], [40.68, 198.42]], \"sentences\": [\"A group of people are dressed in ski gear, riding in a lift.\", \" They are seen going down hills, skiing and throwing snow into the air.\"]}, \"v_bqv3vCT0T5s\": {\"duration\": 132.31, \"timestamps\": [[0, 26.46], [41.68, 54.91], [123.05, 132.31]], \"sentences\": [\"A 2011 dance competition in Israel is shown with a woman in gold belly dancing solo with neon lights behind her.\", \" She turns her back to the audience to show different angles of her moves.\", \" Finally, she artfully collapses on the floor as the song ends.\"]}, \"v_5cTnHXcD7DE\": {\"duration\": 215.95, \"timestamps\": [[0, 72.34], [61.54, 154.4], [114.45, 207.31]], \"sentences\": [\"A large group of people are seen running down the street while many watch on the sides.\", \" Several people are seen speaking to the camera as more shots are shown of people running.\", \" People cheer others on on the sides as well as marching bands playing and people still running.\"]}, \"v_SCM5-6hQCGY\": {\"duration\": 120.02, \"timestamps\": [[0, 120.02], [26.41, 120.02], [28.81, 120.02], [71.41, 120.02], [100.22, 120.02]], \"sentences\": [\"The little girl who's wearing a rainbow sweater is shown sitting in the sand making a huge hill of sand.\", \" Next she looks up and says something.\", \" she then keeps adding more sand to the hill.\", \" then a little boy joins her and just touches the hill, but walks away.\", \" He then comes back again to point at the hill.\"]}, \"v_SlgBcsCTy58\": {\"duration\": 135.14, \"timestamps\": [[0, 41.22], [31.76, 110.82], [66.22, 133.79]], \"sentences\": [\"A woman is seen speaking to the camera while transitioning into shots of her grooming a dog.\", \" The girl is seen washing the dogs as well as blow drying them and trimming their fur.\", \" She continues speaking while showing off her clean dogs and others walking on the side.\"]}, \"v_wohWWAB47KM\": {\"duration\": 222.22, \"timestamps\": [[0, 222.22], [32.22, 37.78], [203.33, 222.22]], \"sentences\": [\"A man is water skiing behind a boat on a lake.\", \" Some people show up on the screen who are watching and recording.\", \" The water skier tries to do a flip and ends up crashing into the water.\"]}, \"v_BUk-fR6TAnk\": {\"duration\": 184.96, \"timestamps\": [[0, 7.4], [8.32, 61.96], [62.89, 86.01], [88.78, 118.37], [122.07, 162.76], [163.69, 184.96]], \"sentences\": [\"A blue page with white writing explains that the video is about how to wrap a present.\", \" Scissors and different types of tape are shown, as well as a roll of wrapping paper.\", \" A woman is on the floor with a box.\", \" She demonstrates how to cut and fold the paper around the present.\", \" She tapes the present shut.\", \" She then places a translucent bow on the gift.\"]}, \"v_e6Dhfn1d3ic\": {\"duration\": 99.34, \"timestamps\": [[0, 99.34], [0, 2.98], [4.97, 99.34], [31.79, 99.34]], \"sentences\": [\"Men are acting silly in a bathroom.\", \"  One man shows off his legs to the camera.\", \"  Two men are dancing and shaving their legs near the sink.\", \"  Another man joins the men near the sink to help with the shaving.\"]}, \"v_zTnRo6yABtg\": {\"duration\": 205.87, \"timestamps\": [[0, 27.79], [29.85, 132.79], [142.05, 205.87]], \"sentences\": [\"A man walks onto a field in front of his dog.\", \" He throws a frisbee, and the dog catches it.\", \" He does several tricks with the frisbees and the dog.\"]}, \"v_FUrLg7FETWo\": {\"duration\": 29.93, \"timestamps\": [[0.6, 7.33], [7.93, 20.35], [19.46, 29.18]], \"sentences\": [\"A woman is seen swinging an ax down on a log while another man watches on the side.\", \" Another woman takes off the log and the girl prepares to swing.\", \" She swings the ax again and looks back smiling to the camera.\"]}, \"v_nDRaXY5ddPs\": {\"duration\": 87.53999999999999, \"timestamps\": [[0, 41.58], [6.57, 85.79], [40.71, 87.54]], \"sentences\": [\"A person is using a mop to mop the floor.\", \" A small dog is chasing the mop.\", \" They continue to mop with the dog on the mop.\"]}, \"v_k_gjsTv-jy8\": {\"duration\": 152.23, \"timestamps\": [[0, 70.03], [70.03, 86.77], [85.25, 117.98], [118.74, 130.92]], \"sentences\": [\"A person is standing behind a counter putting food onto a tray.\", \" They put the tray into an oven.\", \" They take the tray out of the oven and lift cookies onto a plate.\", \" They wash off the mat in the sink.\"]}, \"v_0JCM9uzZafU\": {\"duration\": 228.0, \"timestamps\": [[0, 2.28], [29.64, 45.6], [58.14, 123.12], [124.26, 147.06], [163.02, 193.8], [194.94, 207.48], [210.9, 223.44], [224.58, 228]], \"sentences\": [\"We see a ladies hand on a magazine.\", \" The lady cuts slices of an article.\", \" She puts the paper in water and lays then on her white nails, she peels the paper off and the letters stick.\", \" The lady puts clear polish over the nails.\", \" The lady sticks rhinestones to her nails.\", \" The lady puts clear polish over the decorated nails.\", \" We see the lady turning pages in the magazine.\", \" We see the white ending screen.\"]}, \"v_8PkoDfbK5Bc\": {\"duration\": 157.64, \"timestamps\": [[12.61, 26.8], [11.03, 149.76], [104.04, 114.29]], \"sentences\": [\"A person is doing flips on a stage in front of people.\", \" People are standing in the corner playing the drums.\", \" A man does a hand stand on the stage.\"]}, \"v_y8OQkNk8WpY\": {\"duration\": 107.13, \"timestamps\": [[0, 107.13], [0, 106.59], [59.99, 95.34]], \"sentences\": [\"People are sliding down the ice.\", \" They are holding a curling stick and a ball.\", \" Two men in white shirts run next to the person sliding.\"]}, \"v_Jo2-IPbuapw\": {\"duration\": 110.46000000000001, \"timestamps\": [[0, 33.69], [22.64, 78.43], [57.99, 105.49]], \"sentences\": [\"A person's hands are seen places in the middle of a paper and begins drawing along the picture.\", \" The person then paints a large tree while still moving around quickly on the painting.\", \" The person finishes the painting and signs their name and shows a picture of themselves.\"]}, \"v_iNhoeDq_EBQ\": {\"duration\": 144.73, \"timestamps\": [[0, 69.47], [68.02, 144.73]], \"sentences\": [\"A large group of people are seen standing on a mat and performing a routine with one another.\", \" The people do various flips and tricks around the mat and end with a pose and waving to the audience.\"]}, \"v_Jd3D2d-RwL0\": {\"duration\": 114.53, \"timestamps\": [[0, 20.04], [19.47, 59.56], [60.13, 89.91], [88.76, 114.53]], \"sentences\": [\"A close up of a leaf blower is shown followed by the camera looking around the area.\", \" A hand is then seen starting the machine and pushing the machine around the yard.\", \" The man turns off the machine and looks around the front while pointing to the top of the machine.\", \" The camera pans around the machine and the man is shown giving a thumbs up.\"]}, \"v_sb0r71oGs3M\": {\"duration\": 62.95, \"timestamps\": [[0, 62.64], [5.04, 47.21], [16.05, 57.6]], \"sentences\": [\"A lady sits on a couch and discusses.\", \" The lady sails a boat.\", \" The lady goes water boarding.\"]}, \"v_zf4MXHeiSXs\": {\"duration\": 210.64, \"timestamps\": [[5.27, 85.31], [86.36, 102.16], [102.16, 199.06]], \"sentences\": [\"People rides horses on an unpaved road passing for the woods and on front the ocean.\", \" People arrive to a place and gets off the horse and then continue riding passing woods, river, the ocean and beautiful landscapes.\", \" Then, people arrive to a camping place, then they running on front the ocean.\"]}, \"v_N3WVKg7Q2io\": {\"duration\": 102.87, \"timestamps\": [[0, 9.26], [9.26, 68.41], [68.41, 83.32], [83.83, 102.87]], \"sentences\": [\"Some boys are in the pools playing with volleyballs.\", \" There is a large swimming team swimming and throwing the ball around to their team mates, scoring.\", \" Then, there is a team on the filed playing flag football.\", \" They are running around trying to score for their team.\"]}, \"v_ub0pmYL8i5s\": {\"duration\": 59.63, \"timestamps\": [[0, 28.03], [28.03, 59.63]], \"sentences\": [\"A silver sink is shown and a black hose with a scrubber on the bottom of it begins cleaning the sink with steam coming out of it.\", \"Once completed,the person then takes a white rag and goes into the sink and washes away the moisture from the steam.\"]}, \"v_w50et2-vEOQ\": {\"duration\": 92.24000000000001, \"timestamps\": [[0, 8.76], [8.76, 12.91], [12.91, 19.37], [19.83, 88.09], [44.74, 49.81], [58.11, 72.87], [79.79, 89.01], [88.09, 92.24]], \"sentences\": [\"We see the title and introductions screens.\", \" We see a boat with a man on it.\", \" We see people and the interior of the boat.\", \" The man wakeboards around a lake.\", \" We see the boat with people in it.\", \" The man pulls out the ladder and climbs on the boat then we see a boat take off, and in a show room.\", \" The man falls off the wakeboard 2 times.\", \" We see the ending title screen.\"]}, \"v_BoKEPRjFydk\": {\"duration\": 116.77000000000001, \"timestamps\": [[0, 116.77], [5.25, 15.76], [9.93, 15.76], [14.6, 31.53], [32.7, 57.22], [54.88, 71.23], [68.9, 89.92], [87.58, 116.77]], \"sentences\": [\"There are several athletes doing discus throw in an outdoor ring.\", \" The first athlete who is dressed in a red and white shirt begins the discus throw using a one and a half kilograms discus.\", \" He spins and rotates on the spot and throws the discus.\", \" Then another athlete throws the discus but in unsuccessful.\", \" The athlete in blue then makes his attempt at the discus throw as he swings and spins to throw the disc.\", \" Then another athlete who has won third place throws the discus successfully.\", \" Some more athletes come to the ring and throw the discus.\", \" The stadium bleachers are not filled with sufficient spectators due to security reasons.\"]}, \"v_QYU2srH753Q\": {\"duration\": 178.93, \"timestamps\": [[0, 39.37], [39.37, 43.84], [50.1, 51], [51.89, 54.57], [55.47, 161.93], [67.1, 67.99], [88.57, 89.47], [92.15, 93.94], [112.73, 115.41], [119.89, 120.78], [140.46, 141.36], [166.41, 178.04]], \"sentences\": [\"The credits of the clip is shown.\", \" A person cracks their hands.\", \" Birds flock the sky above the dirt track.\", \" A person's shadow  moves over the surface of a white trailer.\", \" A person rides a dirt bike.\", \"  A person shovels dirt.\", \" A person stands with sign at the end of the dirt race track.\", \" A person lifts a dirt bike and places on a stool.\", \" A male child runs and smiles.\", \" A helicopter hovers over the race track.\", \" A lady pulls on a rider's helmet.\", \" The credits of the video are shown.\"]}, \"v__i_ERtwvcJE\": {\"duration\": 31.72, \"timestamps\": [[0, 12.37], [13.96, 24.58], [23.95, 31.72]], \"sentences\": [\"A man is shown staring off into the distance while another holds a ball at a beer pong table.\", \" The camera shows the ball hitting the table and landing into the cup on the other side.\", \" The first man looks down at the cup and grimaces at what he sees.\"]}, \"v_4R5KDUqBPcU\": {\"duration\": 10.24, \"timestamps\": [[1.95, 5.79], [5.79, 8.81], [8.81, 9.68]], \"sentences\": [\"There's a man wearing a black athletic suit in a shot put field practicing shot put.\", \" He begins by taking the ball in his hand and holding it against his neck.\", \" Then he spins around and throws the ball far ahead.\"]}, \"v_l8aaaDY4ehA\": {\"duration\": 186.46, \"timestamps\": [[0, 78.31], [17.71, 23.31], [78.31, 126.79], [125.86, 165.01], [165.01, 186.46]], \"sentences\": [\"We see a man mowing a lawn.\", \" He stands on the stairs to mow.\", \" It switches to a woman mowing.\", \" It goes back to the man mowing.\", \"  The man puts the mower in the shed and goes into the house.\"]}, \"v_aFpWNTroghs\": {\"duration\": 93.16, \"timestamps\": [[0, 20.49], [21.43, 44.25], [44.25, 61.95], [62.42, 80.58], [80.58, 93.16]], \"sentences\": [\"An intro comes into the screen for a video about removing mulch.\", \" A man digs his heel into the base of a tree to push away the mulch.\", \" He gets down on his knees and begins to remove the mulch by hand by pushing it further from the base of the tree.\", \" He takes out some clippers and clips some of the roots.\", \" Last, the video ends with the closing captions.\"]}, \"v_nsDyItaRUXI\": {\"duration\": 82.72, \"timestamps\": [[0, 4.55], [7.03, 53.36], [56.25, 82.72]], \"sentences\": [\"A woman is knitting what appears to be a scarf while sitting in front of a computer keyboard.\", \" She is using the needles to make the scarf.\", \" She pulls the yarn through with the loop several times.\"]}, \"v_EoQgUlLb3U4\": {\"duration\": 52.11, \"timestamps\": [[0, 26.05], [26.31, 31.78], [32.05, 52.11]], \"sentences\": [\"A man turns his body around, preparing to throw his discus.\", \" The man throws the discus really hard.\", \" The man watches ahead after his discus.\"]}, \"v_MRpg1K7YWSE\": {\"duration\": 32.09, \"timestamps\": [[0, 18.13], [18.29, 32.09]], \"sentences\": [\"A person's hand is seen throwing several darts onto a board on the other side of the room.\", \" The camera then moves closer to the board and zooms in on the location of where the darts are thrown.\"]}, \"v_ESsUwNlkJoo\": {\"duration\": 69.27, \"timestamps\": [[0, 4.16], [6.93, 33.25], [37.06, 69.27]], \"sentences\": [\"The letters RPM appear on the screen.\", \" A room is filled with people riding exercise bikes.\", \" They go as fast as they can, advertising a fitness gym.\"]}, \"v_qkN9uA8izVE\": {\"duration\": 53.85, \"timestamps\": [[0, 38.77], [35.27, 53.85]], \"sentences\": [\"Two men are seen holding each other's hands and moving one to the other side arm wrestling.\", \" The men struggle a bit and ends with one slamming the other's down.\"]}, \"v_K-eZfCs8yOc\": {\"duration\": 182.46, \"timestamps\": [[0, 131.37], [145.06, 155.09]], \"sentences\": [\"A young man plays violin while wearing headsets.\", \" Then, the young man finish playing and take off the headsets.\"]}, \"v_xj-f9hzQ3Lc\": {\"duration\": 54.2, \"timestamps\": [[0, 14.36], [14.36, 35.5], [35.77, 54.2]], \"sentences\": [\"Several dirt bikers are standing under a garage behind a stand preparing to race.\", \"Someone calls a mark and they all stand up on their pedals preparing to be released.\", \"The bar is finally let down and the boys begin racing throughout the track that's covered in hills as people stand throughout it to watch them.\"]}, \"v_RTIzzeNaH2Q\": {\"duration\": 156.78, \"timestamps\": [[0, 61.14], [59.58, 148.94]], \"sentences\": [\"A bike is being shown in the narrow walkway.\", \"  An old man wearing gray shirt is putting on and screwing the black handle bars in the front of the bike, then put the front wheel of the bike, tighten the screw, and lastly he put the seat on.\"]}, \"v_A5JcwIaP30Y\": {\"duration\": 125.11, \"timestamps\": [[0, 25.02], [25.02, 57.55], [57.55, 90.08], [90.08, 125.11]], \"sentences\": [\"A man is trying to balance himself on a rope, he walks on it and does a flip off.\", \" He gets back on the rope and does another back flip off.\", \" He grips the the rope super tight with his feet while he walks across.\", \" He has trouble balancing on it, starts going backwards.\"]}, \"v_gnVupEzu59g\": {\"duration\": 193.38, \"timestamps\": [[0, 193.38], [45.44, 48.34], [147.93, 152.77]], \"sentences\": [\"People are snowboarding down a hill of snow.\", \" A man in red goggles is standing in the snow.\", \" People are riding a ski lift up the mountain.\"]}, \"v_6lIi6-Y6q10\": {\"duration\": 138.74, \"timestamps\": [[17.34, 47.17], [47.17, 86.02], [86.02, 122.09], [122.09, 133.19]], \"sentences\": [\"There's a man dressed in a formal attire with shirt and tie demonstrating how to make a cocktail called Pimms.\", \" He puts some ice cubes in a talll glass and then adds some Pimms in it.\", \" He slices some lemons and puts the lemons along with a cherry on a toothpick.\", \" Then he puts a slice of cucumber that is cut lengthwise into the cocktail.\"]}, \"v_bOULU-0Nloc\": {\"duration\": 176.31, \"timestamps\": [[0, 4.41], [4.41, 18.51], [18.51, 88.15], [88.15, 106.67], [106.67, 118.13], [118.13, 176.31]], \"sentences\": [\"In a sped up mode an elderly man walks to the front of a house and grabs a blue snow plow.\", \" Continuing in the sped up mode, the man begins to plow snow to make a path.\", \" The man then moves the camera view and plows the snow in a different area that is fenced in.\", \"The man grabs the camera, points to the plow and then pans to the different areas of the yard.\", \" The man then goes indoors to show a messy and cluttered workshop filled with tools and supplies.\", \" The man goes back outside, shows his dog and walks around his yard, puts his dog down and the dog runs back to the workshop and pushes the door open.\"]}, \"v_M_CU9guT3C0\": {\"duration\": 98.27000000000001, \"timestamps\": [[0, 34.88], [35.38, 66.82], [67.31, 98.27]], \"sentences\": [\"A woman talks in a kitchen, then she shows a brush.\", \" The woman opens the faucet and washes a dish with the brush, then she brush her hand while explaining.\", \" Then, she washes a dish with the brush, then she explains showing the brush.\"]}, \"v_jwYgWG2fqOA\": {\"duration\": 169.3, \"timestamps\": [[0, 11.85], [12.7, 166.76], [122.74, 166.76], [167.6, 169.3]], \"sentences\": [\"A dancer positions herself to begin her dance.\", \" The dancer performs her dance routine holding a wand.\", \" The woman throws her wand as part of her dance and runs to grab it and resumes her performance.\", \" The woman takes a bow, finishing her dance.\"]}, \"v_fO2fWjYEhMc\": {\"duration\": 26.22, \"timestamps\": [[0, 15.86], [13.11, 26.22]], \"sentences\": [\"A man in white shirt and white shorts is holding a croquet bat, he is bending over and swing the bat slowly in the air before hitting the blue ball.\", \" The ball went flying passing the ball in a small rectangular holes, and hit the ground.\"]}, \"v__pMQwrt-cf4\": {\"duration\": 70.52, \"timestamps\": [[0, 4.94], [5.29, 30.32], [31.38, 56.42], [56.42, 66.99], [68.4, 70.52]], \"sentences\": [\"We see the opening  title screen.\", \" We see stills of the flooring material.\", \" A man cuts and puts the superfloor on the floor.\", \" The man then unrolls carpet over the superfloor.\", \" We then see the ending screen.\"]}, \"v_tGuPkIKGIK4\": {\"duration\": 94.34, \"timestamps\": [[0, 26.89], [30.66, 92.46], [51.89, 80.19], [93.4, 94.34]], \"sentences\": [\"A woman holds a dog and take to the bathroom to take a bath in a bathtub while rubbing the body with soap.\", \" The dog waits until the woman grab a towel to dry the body of the dog.\", \" The dog looks angry and show his teeth.\", \" Then, woman give a kiss to then dog.\"]}, \"v_8ao9LZLn0Hs\": {\"duration\": 138.37, \"timestamps\": [[1.38, 129.37], [6.92, 114.85], [115.54, 137.68]], \"sentences\": [\"Four little girls , dressed in white dresses with red sashes, stand in a line, on a stage and play the violin together.\", \"  Four little girls begin to play violin on a stage on a stage with a pink backdrop.\", \"  The girl play together using both hands to play the violin before ending the performance and taking a bow together.\"]}, \"v_HGy8UgabFMw\": {\"duration\": 63.11, \"timestamps\": [[0, 18.93], [14.2, 37.55], [31.87, 63.11]], \"sentences\": [\"A man in blue shirt and jeans is wearing black gloves and trimming the hedge with an orange trimming machine, doing the side first then the front and then the other side.\", \" He climbed the blue-green ladder to trim the top of the hedge, he moved the ladder to do the middle top of the hedge.\", \" The man trimmed the round low bush, used the ladder to trim the top of the round hedge.\"]}, \"v_mGLCCohSA0A\": {\"duration\": 169.92000000000002, \"timestamps\": [[0, 15.29], [15.29, 27.19], [28.04, 35.68], [35.68, 52.68], [52.68, 150.38], [150.38, 169.92]], \"sentences\": [\"Several kitchens are shown in the backdrop as a Around the House Menards logo flashes in the middle of the screen.\", \"After, a man in blue polo is shown pasting tile on the back of the kitchen walls to renovate the home.\", \"Another man is shown sanding and painting the wall and renovating another home.\", \"A block of tile is shown again but it is flipped over to see the net on the back of it.\", \"The men continue to renovate the house, measuring the wall,fixing the lights and pasting the tile on the wall.\", \"Finally, the finished product of the wall is shown.\"]}, \"v_WEoelJQYlxk\": {\"duration\": 64.69, \"timestamps\": [[0, 21.02], [20.38, 53.37], [53.37, 64.69]], \"sentences\": [\"A picture of a man washing a car is shown and leads into several men washing the same car.\", \" The men vacuum the inside as well as clean the dashboard and entire interior and exterior.\", \" The car is shown off again in the end all clean.\"]}, \"v_h9WOFfVGeAQ\": {\"duration\": 33.96, \"timestamps\": [[0, 33.96], [7.47, 33.96]], \"sentences\": [\"A man is standing up playing bagpipes.\", \" People are sitting on a couch laughing at him.\"]}, \"v_8EDq3cjHhz0\": {\"duration\": 190.23, \"timestamps\": [[0, 9.51], [9.51, 29.49], [30.44, 60.87], [59.92, 80.85], [81.8, 109.38], [110.33, 182.62], [183.57, 190.23]], \"sentences\": [\"We see two people in a studio.\", \" We then see a man in a bowling alley speaking to the camera with a man in a bowling pin costume.\", \" The man then interviews a man in a black jacket.\", \" We see the bowling pin throw a green bowling ball.\", \" The newscaster then throws a blue ball down the lane and another ball at the bowling pin mascot who falls over.\", \" We then see a split screen with the pin running behind the newscaster and the people in the studio in the upper left corner.\", \" The pin throws a ball at the newscaster, and we return to the studio.\"]}, \"v_wBwBm7Ju9a8\": {\"duration\": 131.63, \"timestamps\": [[0, 24.35], [24.35, 44.1], [44.1, 61.21], [61.21, 76.35], [76.35, 82.27], [82.27, 113.86], [113.86, 131.63]], \"sentences\": [\"A talking and smiling man is standing in an indoor area and then motions to his right and a woman walks towards him and she begins to talk and smile with him.\", \"The woman is now jumping on a trampoline by herself and then she stands on a jumping board and simulates a jump off of a diving board and going straight down into a pool, but instead she lands on a large, soft, black landing mat.\", \" The man is now jumping on the trampoline and he does the the exact same thing as the woman just did.\", \" Now the woman is standing at an outdoor pool talking and she jumps off of the diving board first, does a few flips and then lands in the water.\", \"The man appears in front of the camera holding up a small speedo, he shakes his head in disapproval of the speedos, throws it on the camera, and they show him doing leg warm ups wearing a long pair of swimming shorts.\", \"Then man goes on the diving board, rubs his hands together, then jumps off the diving board 4 times and does various flips before he lands in the water.\", \" The man and the woman are now on the ground talking and they turn to look at the tallest diving board, and a quick shot from tallest diving board is showing high it is, then it goes back to the man and the woman still standing next to the pool and talking.\"]}, \"v_wBbSb9Ubis4\": {\"duration\": 200.29, \"timestamps\": [[2, 58.08], [57.08, 145.21], [118.17, 196.28]], \"sentences\": [\"A close up of a bull is seen as well as another laying on the ground.\", \" Another bull is seen running off into the distance and chasing a person.\", \" Several people are seen running away from a bull in many shots as they chase them down.\"]}, \"v_kZMDKbfIis0\": {\"duration\": 76.39, \"timestamps\": [[0, 10.31], [9.93, 76.39], [22.92, 25.21]], \"sentences\": [\"A man is kneeling down on ice.\", \" He begins playing a game of curling.\", \" Two people scrub the ice in front of the curling ball.\"]}, \"v_6aWTCiY3eww\": {\"duration\": 35.83, \"timestamps\": [[0.54, 15.05], [9.85, 34.75]], \"sentences\": [\"A man is seen climbing onto of a camel and begins walking around with a man in front.\", \" The man speaks to one on top and gives the camel a slap while looking back to speak to the camera.\"]}, \"v_NcEWimHnC54\": {\"duration\": 148.38, \"timestamps\": [[0, 5.19], [5.19, 13.35], [13.35, 135.02], [13.35, 35.61], [37.09, 45.25], [105.35, 106.83], [136.51, 148.38]], \"sentences\": [\"We see an opening title screen.\", \" We see snow covered ski slope and a title screen.\", \" We see people skiing and snowboarding down the hill.\", \" The names are shown in a blue bar above.\", \" We see a man holding a selfie stick as he boards down the hill.\", \" We see a person in dense woods riding a snowboard.\", \" We see the ending credits.\"]}, \"v_4CTczKzaPa4\": {\"duration\": 52.62, \"timestamps\": [[0, 10.26], [10.52, 21.05], [21.57, 52.62], [47.09, 52.62]], \"sentences\": [\"Several men stand around a pinata.\", \" A man spins a blindfolded man around.\", \" The blindfolded man takes a few swings at the pinata.\", \" A woman in red shirt laughs.\"]}, \"v_beRmfL0Uh28\": {\"duration\": 160.66, \"timestamps\": [[0, 13.66], [13.66, 44.98], [44.18, 93.18], [93.18, 120.49], [120.49, 160.66]], \"sentences\": [\"A Caucasian man wearing a red helmet is sitting in a boat in the water talking to water.\", \"The rocky water is shown and then the man comes down kayaking throughout the white waters.\", \"A flash of vacant water is shown then a group of ten people are pictured kayaking together over the rocks and water and eventually are pushed out the kayak by the large wave.\", \"The group of people continue swimming through the water trying to find land.\", \"They eventually get out and each person begins talking the camera about what they've just experienced.\"]}, \"v_X74SOIQRD4M\": {\"duration\": 16.21, \"timestamps\": [[0, 2.76], [2.43, 11.1], [9.97, 16.21]], \"sentences\": [\"The players are running in the field with their bats.\", \" The player in shirt is running with player in red shirt.\", \" The two players began walking.\"]}, \"v_RDCZQ0nWIPc\": {\"duration\": 115.59, \"timestamps\": [[0, 2.31], [2.31, 113.86], [115.01, 115.59]], \"sentences\": [\"A white screen appears and special affects reveal the words \\\"Howcast original\\\".\", \" A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on \\\"Rollerblading Basics: How to Control Speed on Rollerblades\\\", and he picks up a pair of rollerblades and points to the wheels, then more clips of him rollerblading and showing examples plays.\", \" The outro appears and it's the white screen in the intro that include the words \\\"Howcast original\\\".\"]}, \"v_7rf06_5zNJk\": {\"duration\": 237.7, \"timestamps\": [[0, 237.7], [59.43, 209.18]], \"sentences\": [\"Members of a belly dance academy do a choreographed routine in an advertisement for the school.\", \"  They move around the stage and then show their bellies.\"]}, \"v_9ku5v_hSVMw\": {\"duration\": 41.47, \"timestamps\": [[0, 39.4], [4.15, 39.4], [39.19, 39.4]], \"sentences\": [\"A man squats and holds a bar over his head several times.\", \" A man in a red shirt watches him.\", \" He drops the bar on the ground in front of him.\"]}, \"v_Y2gFwWnli4g\": {\"duration\": 116.94, \"timestamps\": [[6.43, 24.56], [25.14, 35.08], [35.67, 40.93], [41.51, 54.38], [54.96, 60.81], [61.39, 64.31], [64.9, 85.36], [85.95, 95.3], [95.89, 104.66]], \"sentences\": [\"A chef speaks as she stands by a table full of cooking ingredients.\", \" She grabs oil and salt and pours it into a mixing bowl.\", \" She stirs the ingredients with some tongs.\", \" She pours some tomatoes, zucchini and red onions into the mixing bowl.\", \" She cuts up some cilantro.\", \" She throws the cilantro into the mixing bowl.\", \" She mixes the vegetables in the mixing bowl with the tongs.\", \" She places the vegetable on top of some arugula on a plate.\", \" She shows off the salad.\"]}, \"v_6TgVNz6PATk\": {\"duration\": 35.02, \"timestamps\": [[0, 7.18], [2.8, 14.71], [12.61, 32.74]], \"sentences\": [\"A person in red jacket is standing at the side of the lane.\", \" Two people are sliding down the lane covered in snow.\", \" The woman in the tube is going further down the lane as she wave her arms.\"]}, \"v_xLRUuV1z3QA\": {\"duration\": 72.93, \"timestamps\": [[0, 12.76], [10.21, 30.27], [22.61, 72.93]], \"sentences\": [\"A woman is standing next to a camel holding the leash.\", \" The woman climbed on the camel, and the camel stood up.\", \" The camel walk around and stopped as the woman pull the leash and the camel sat down and the woman got off the camel.\"]}, \"v_SwQbnQX7LCQ\": {\"duration\": 158.27, \"timestamps\": [[3.96, 56.98], [57.77, 97.33], [97.33, 106.04], [107.62, 158.27]], \"sentences\": [\"A grey car is parked on a driveway, then a person washes the rims of the car.\", \" After, the person spreads soap on the car with a bottle joint to a hose, after he brushes the front light of the car.\", \" Then, the person cleans the hood with a cloth.\", \" Next, the person rinses and dries the car.\"]}, \"v_Lml6HGhM4yg\": {\"duration\": 44.4, \"timestamps\": [[1.78, 18.87], [14.43, 43.73]], \"sentences\": [\"A person is seen holding a tennis racket on a field and hits the ball across the field.\", \" He then smiles and walks to the camera while pointing into the distance and fist bumping.\"]}, \"v_u1grT0O81Qg\": {\"duration\": 159.34, \"timestamps\": [[0, 10.36], [14.34, 95.6], [97.19, 159.34]], \"sentences\": [\"A group of fencers pose with an instructor.\", \" The fencers are shown inside a gym, practicing.\", \" They jab and do various moves with each other during the match.\"]}, \"v_qCtoh8hxjOA\": {\"duration\": 25.59, \"timestamps\": [[0, 13.43], [14.2, 25.59]], \"sentences\": [\"A person is seen sitting a top a slide and begins riding down the slide.\", \" She meets another person at the bottom while laughing to the camera and another person running in.\"]}, \"v_n18TxTWnbFI\": {\"duration\": 54.71, \"timestamps\": [[0, 2.74], [3.01, 6.84], [18.33, 23.25], [23.52, 30.36], [30.36, 41.3], [41.58, 48.69], [48.69, 54.71]], \"sentences\": [\"A person is standing on a diving board.\", \" They jump off the diving board into the pool.\", \" He falls backward into the water.\", \" Someone is jumping into the water off the diving board.\", \" A  person jumps and goes under the water.\", \" A man is jumping high and does a flip into the water off of the diving board.\", \" A person does a black flip into the water off the diving board.\"]}, \"v_VCdZ9gfzRWo\": {\"duration\": 39.01, \"timestamps\": [[0, 5.27], [5.85, 39.01], [8.78, 39.01]], \"sentences\": [\"A large Christmas tree is sitting in a room.\", \" A man and woman are putting lights on the Christmas tree.\", \" A dog is walking around the Christmas tree.\"]}, \"v_Ok_Tjkob8IA\": {\"duration\": 197.07, \"timestamps\": [[0, 36.46], [36.46, 197.07]], \"sentences\": [\"little kid is standing in front of a counter with jars and ingedients in front of her.\", \" woman is putting sugar in a pan with water and heat it, put water and lemon juice and mixing all the ingredients in a jar.\"]}, \"v_1aRRlW0k-_4\": {\"duration\": 93.37, \"timestamps\": [[0, 20.54], [30.34, 93.37], [68.16, 83.1]], \"sentences\": [\"A boy is playing with a ball.\", \" Kids are practicing lacrosse on a field of grass.\", \" A man in a black jacket is watching them play.\"]}, \"v_DRI64Xoxy5w\": {\"duration\": 59.82, \"timestamps\": [[0, 59.82], [18.84, 21.23], [21.23, 59.82]], \"sentences\": [\"There are lots of people standing outdoors just walking around and talking.\", \" A little boy goes behind a ladder and other people keep walking around.\", \" A pinata drops from high above and he hits the pinata using a stick and then someone comes out holding a bowl filled with bags.\"]}, \"v_h7cetqsBVn0\": {\"duration\": 232.39, \"timestamps\": [[40.67, 72.04], [72.04, 102.25], [102.25, 139.43], [139.43, 164.99], [164.99, 182.42], [182.42, 211.47], [211.47, 217.28]], \"sentences\": [\"There is a line of camels sitting on the ground in the Outback area of Australia.\", \" there are tourists waiting to get onto the camels to enjoy a camel back ride.\", \" Men in red shirts and cowboy hats are helping the tourists get on the camels' backs.\", \" The camels slowly raise themselves up and begin walking around with the tourists on their backs.\", \" The tourists are happy as they wave to the camera as they enjoy the camel ride.\", \" The camels walk slowly through the dry and muddy grasslands.\", \" Then the tourists get off of the camels and walk towards an outdoor dinning area where several tables are arranged with white tablecloths and dinnerware.\"]}, \"v__9h6NBOPTy8\": {\"duration\": 88.65, \"timestamps\": [[0, 10.2], [12.41, 41.67], [43, 88.65]], \"sentences\": [\"A martini glass is being filled with vodka.\", \" A woman is shown behind a bar with different alcohol bottles.\", \" She mixes them together, then decorates the final drink.\"]}, \"v_7-5sFmNf4i4\": {\"duration\": 207.19, \"timestamps\": [[27.97, 71.48], [71.48, 118.1], [118.1, 153.32], [153.32, 187.51], [187.51, 197.87]], \"sentences\": [\"There are band members talking about their concert in Canada.\", \" They are seated on a stage as they talk about their experience about surprising a fan.\", \" They surprise a fan who is the winner of a contest.\", \" The band members go bowling with the surprised fan and play at the bowling alley.\", \" After the bowling game is over, they further surprise the fan by inviting her to their concert ans sound check party.\"]}, \"v_DmTI8y6Anvo\": {\"duration\": 37.45, \"timestamps\": [[0, 19.29], [18.54, 37.45]], \"sentences\": [\"A basketball player is seen jumping under a basketball ball net and shooting a ball continuously at the net.\", \" She continues shooting and the video ends with various text across the screen.\"]}, \"v_seScyTd2XSc\": {\"duration\": 99.31, \"timestamps\": [[22.35, 35.26], [35.26, 45.68], [48.17, 72.5], [72.99, 83.92]], \"sentences\": [\"A person holds out cleaning product and a spray bottle with the mixture over a kitchen sink.\", \" The person sprays down the stainless steel sink with detergent in a spray bottle.\", \" A sponge is used to scrub the sing with the cleaning solution.\", \" The faucet is turned on and is used to rinse out the sink.\"]}, \"v_evj6y2xZCnM\": {\"duration\": 214.69, \"timestamps\": [[0, 7.51], [7.51, 214.69], [32.2, 44.01], [55.82, 69.77]], \"sentences\": [\"a baby in a screen is shown and someone hits the screen with a hammer.\", \" man is doing skateboard and is felling of the board in different places.\", \" man is skateboarding going down a large stairs and fells.\", \"man is skateboarding down a cement rail in stairs.\"]}, \"v_FnrvqpjHe6I\": {\"duration\": 191.33, \"timestamps\": [[0, 67.92], [58.36, 137.76], [85.14, 137.76], [138.72, 191.33]], \"sentences\": [\"The young female players are running around the court throwing ball to on each other.\", \" Some of the players are avoiding the ball, so they continue to run around.\", \" The female players walked as they kicked the ball from one side to the next.\", \" The players kicked the ball to the next person on the opposite side of the court.\"]}, \"v_PXvqhB91EkA\": {\"duration\": 52.73, \"timestamps\": [[0, 27.42], [22.15, 51.68]], \"sentences\": [\"A small group of people are seen riding exercise bikes next to one another while a woman stands in the middle motivating them.\", \" The people continue spinning around on the bikes with some struggling and others continuing to peddle.\"]}, \"v_GEmuTigZlYA\": {\"duration\": 91.74, \"timestamps\": [[0, 80.73], [23.85, 90.83]], \"sentences\": [\"A woman is seen brushing copious amounts of hair off of a dog's body and collecting the fur in her hand.\", \" The dog moves his leg a bit as the woman continues brushing and looks back to watch her brush.\"]}, \"v_YAm1JXAtqh4\": {\"duration\": 27.08, \"timestamps\": [[0, 7.45], [7.99, 27.08]], \"sentences\": [\"A person runs down a track and throws a javelin.\", \" Another person runs down the track and throws a javelin.\"]}, \"v_0_ZLjaAEx5s\": {\"duration\": 163.98, \"timestamps\": [[0.82, 1.64], [3.28, 7.38], [8.2, 16.4], [18.86, 106.59], [108.23, 118.07], [150.86, 154.96], [159.88, 160.7], [162.34, 163.16]], \"sentences\": [\"The credits of the clip are shown.\", \" The lady whips her hair from side to side.\", \" The lady parts her hair.\", \" The lady brushes her hair, applies gel to her parted hair, and starts to braid her hair.\", \" The lady puts a hair ties around the two braids.\", \" The lady puts a hat on her head.\", \" The lady gives a peace sign and waves.\", \" The credits of the video are shown.\"]}, \"v_XqW8wjFpGRU\": {\"duration\": 75.06, \"timestamps\": [[0, 74.68], [34.15, 75.06]], \"sentences\": [\"People are dancing and choreographing a routine.\", \"  They jump around and clap at the end.\"]}, \"v_4hbMYlgO8_o\": {\"duration\": 3.61, \"timestamps\": [[0, 1.52], [1.32, 3.61]], \"sentences\": [\"A man is seen kneeling down in a large field around small trees and holding a stick.\", \" The man then wacks the stick along the grass and moving his arms back and fourth.\"]}, \"v_6B3qNzgqnpc\": {\"duration\": 36.25, \"timestamps\": [[0, 6.34], [6.34, 17.04], [17.94, 36.25]], \"sentences\": [\"A person sitting in a canoe is slowly streaming down a river.\", \" A shot of a bird is seen off in the distance, as well as another bird.\", \" The canoe keeps floating while various bird are shown sitting in the water as well as the trees.\"]}, \"v_d8M7yIj9jbE\": {\"duration\": 64.11, \"timestamps\": [[0, 24.04], [24.04, 48.4], [48.72, 64.11]], \"sentences\": [\"A young man is sitting down in a room talking to three other people serving as news anchors.\", \"The video then flips to a bar and shows Obama playing a game of pool.\", \"After,the four people begin talking again about the former president and his attire.\"]}, \"v_KmhzUY2ooCw\": {\"duration\": 97.39, \"timestamps\": [[0, 46.26], [50.15, 97.39]], \"sentences\": [\"A backyard seen appears with several people outside.\", \" The people are playing a game of croquette, taking turns with the bat and hitting the balls.\"]}, \"v_HKgnushHynQ\": {\"duration\": 234.7, \"timestamps\": [[61.02, 80.97], [80.97, 95.05], [96.23, 111.48], [120.87, 129.09], [134.95, 230.01]], \"sentences\": [\"People side dive into a swimming pool.\", \" People are standing in a swimming pool.\", \" Girls are dancing on the lawn in swim suits.\", \" People are jumping up and down in a swimming pool with their arms around each other.\", \" People begin playing water polo in the swimming pool.\"]}, \"v_MyPQ_e4dGDw\": {\"duration\": 217.57, \"timestamps\": [[0, 13.05], [14.14, 41.34], [40.25, 63.1], [69.62, 110.96]], \"sentences\": [\"A lemon sits on a cutting board.\", \" Someone chops the lemon and squeezes it into a glass.\", \" The other half is squeezed in.\", \" They then add sugar to the mix.\"]}, \"v_KNzFJses9jc\": {\"duration\": 151.21, \"timestamps\": [[1.51, 54.44], [52.17, 148.94]], \"sentences\": [\"A large crane is seen sitting on the ground and leads into a man using tools on a wall.\", \" The camera continues to watch the person work as he uses the tool to create sparks on the wall.\"]}, \"v_H-fl49tiqGE\": {\"duration\": 59.05, \"timestamps\": [[0, 36.91], [36.91, 59.05]], \"sentences\": [\"women are in rubbers sliding down a snowy hill.\", \" women stands and laugh and walks.\"]}, \"v_M2ntILX6VP0\": {\"duration\": 213.28, \"timestamps\": [[5.33, 83.18], [61.85, 174.89], [157.82, 205.81]], \"sentences\": [\"A baby calf is seen running around a sand pit when a man riding a horse and swinging a rope begins to chase him.\", \" The man ties up the calf and rides away while the video leads into shots of a horse kicking a rider off of it's back.\", \" More shots are shown of horses kicking riders off while people grab the horse in the end.\"]}, \"v_1GzrcmQ5Pcc\": {\"duration\": 160.31, \"timestamps\": [[0, 160.31], [28.05, 28.86], [58.51, 61.72]], \"sentences\": [\"People are running around playing dodge ball.\", \" A woman is holding a camera taking a picture.\", \" A woman in a blue shirt poses with a man for a picture.\"]}, \"v_0L959X4oxaY\": {\"duration\": 59.1, \"timestamps\": [[0, 5.61], [6.2, 26], [27.18, 59.1]], \"sentences\": [\"A man is standing on top of a hill.\", \" A woman is seated on a sled.\", \" She is then released down the hill, moving quickly.\"]}, \"v_g7l-Y_bgPkI\": {\"duration\": 27.38, \"timestamps\": [[0, 26.56], [8.9, 13.14], [13.96, 16.56], [18.21, 22.72], [22.04, 26.83]], \"sentences\": [\"Several people are watching a man in a white hat on a tennis court.\", \" The man in the white hat is holding his hand up.\", \" The ball is served and it goes outside the court.\", \" The ball is thrown to the man in the white hat.\", \" The man in the white hat prepares to serve the ball.\"]}, \"v_pmn8_4zKo7I\": {\"duration\": 74.91, \"timestamps\": [[0, 11.24], [11.24, 35.96], [35.21, 53.56], [53.93, 74.91]], \"sentences\": [\"A man is outside smoking a cigarette with his friend.\", \" They are just sitting out relaxing blowing smoke.\", \" Another man with a camera walks by while they sit chatting.\", \" Its a nice day to just relax and have a smoke outside with friends.\"]}, \"v_URzytLugoVw\": {\"duration\": 54.08, \"timestamps\": [[0, 1.62], [7.03, 10], [10.55, 12.98], [12.44, 22.71], [28.66, 54.08]], \"sentences\": [\"Two men are running on the baseball field.\", \" A ball appears and falls to the ground at home plate and a man kicks it.\", \" Another man on the field catches the ball.\", \" The man with the ball's team runs over to him.\", \" We see the play again slow motion.\"]}, \"v_GgfyTMpHfnI\": {\"duration\": 214.6, \"timestamps\": [[0, 17.17], [17.17, 186.7], [24.68, 61.16], [62.23, 179.19], [180.26, 186.7], [190.99, 214.6]], \"sentences\": [\"We see a girl with a braid then shaking  loose curls in her hair.\", \" We watch the girl as she curls and braids her hair.\", \" The girl using a curling iron and curls her hair.\", \" She then braids and twists her hair into a side braid.\", \" The girl shows us the back of her hair and then curls the bottom with a curling iron.\", \" The girl makes faces and the ending title screen then loads.\"]}, \"v_zPZGjZES31A\": {\"duration\": 110.77000000000001, \"timestamps\": [[0, 12.19], [12.74, 74.22], [75.33, 110.77]], \"sentences\": [\"The camera pans a residence's yard.\", \" A man wearing a white hoodie and black warm ups with white stripes  is mowing the yard with a push lawn mower.\", \" The camera captures a rain storm starting and raining over the yard while the man continues to mow the yard.\"]}, \"v_Ug3pM64HhK4\": {\"duration\": 174.88, \"timestamps\": [[0, 174.01], [13.12, 62.08], [62.08, 129.41], [72.58, 126.79], [140.78, 174.88]], \"sentences\": [\"A Woman is braiding her hair.\", \" She is Crossing the strands.\", \" Her braid is done on one side and she continues on the next.\", \" Crossing and adding hair to the braid.\", \" She finishes and turns around and puts the back into a  ponytail.\"]}, \"v_MoVZoCmkdjY\": {\"duration\": 160.17000000000002, \"timestamps\": [[0, 148.96], [10.41, 40.84], [46.45, 80.09], [80.09, 81.69], [136.15, 145.76]], \"sentences\": [\"A man and a woman sit behind a table.\", \" The man pours a drink into several glasses on the table.\", \" A woman is making a drink on the table.\", \" She pours a blue bottle into the drink.\", \" She pours the drink into smaller glasses on the table.\"]}, \"v_HV_yqsiFoKA\": {\"duration\": 30.79, \"timestamps\": [[0, 6.16], [6.16, 30.79], [0, 30.79], [13.39, 16.16]], \"sentences\": [\"man wearing a black vest is alone on a ring wrestling with another man who is kneeling on the floor.\", \" two other men gets in the ring and are wresting the man in the center.\", \" people are around the ring wtching the wrest.\", \" three journalists are standing wearing suits and watch the men in the ring.\"]}, \"v_Bbb8CybvMlk\": {\"duration\": 213.09, \"timestamps\": [[0, 4.26], [4.26, 43.68], [43.68, 75.65], [75.65, 117.2], [117.2, 206.7], [206.7, 213.09]], \"sentences\": [\"An introduction comes onto the screen for a video about wrapping gifts.\", \" Several different close up shots are shows of wrapped gifts and gift wrapping supplies.\", \" A person comes onto the screen and begins to wrap a gift.\", \" She decorates the gift with ribbons and attachments to embellish it.\", \" Several other gift wrapping ideas are then shown on the one after the other.\", \" The video ends with the closing credits shown on the screen.\"]}, \"v_HiEClhlj5_A\": {\"duration\": 154.74, \"timestamps\": [[0, 16.25], [18.57, 48.74], [47.2, 111.41], [116.05, 154.74]], \"sentences\": [\"A camera pans down a long list and leads into a group of men and one speaking to them all.\", \" Two men shake hands and begin rolling paint along a long paper.\", \" They race to put the paper on a long wall and photographs of men measuring the wall follow.\", \" The men fist bump another and shake hands as the men continue writing down notes and pictures of high scores shown.\"]}, \"v_IOoj4yWCoPg\": {\"duration\": 79.11, \"timestamps\": [[13.05, 34.41], [34.41, 54.59], [54.59, 74.36], [74.36, 77.92]], \"sentences\": [\"A woman is sitting outside her home and washing her clothes in a tub filled with water and soap.\", \" She removes the clothes from the tub and then soaks them in another tub filled with water.\", \" She puts the water hose into the water tub.\", \" She adds more clothes in the soapy water and continues washing the clothes.\"]}, \"v_xMQcYD044z4\": {\"duration\": 95.62, \"timestamps\": [[0, 16.73], [16.73, 49.24], [49.24, 95.62]], \"sentences\": [\"old man is standing in front of a young man talking to him.\", \" young man is in the middle of stage and its spreading white cram on his hands and walks making deep beraths.\", \" man is ready to lifting weight in middle of a white stage and people behind jim is clapping.\"]}, \"v_0-CYG7bH54A\": {\"duration\": 125.83, \"timestamps\": [[0, 25.79], [26.42, 47.19], [46.56, 101.92], [102.55, 125.83]], \"sentences\": [\"An intro leads into several shots of various ingredients laid out on a wooden board, followed by a set of hands cutting up certain ingredients.\", \" A person then grades some cheese into a bowl and breaks open the pasta.\", \" They put the pasta into a bowl as well as fry the shrimp and puts all the ingredients into one pan together.\", \" The person then serves the food onto a plate and text appears across the screen.\"]}, \"v_GwJ9DmiW8dk\": {\"duration\": 97.06, \"timestamps\": [[0, 6.31], [6.31, 10.68], [7.28, 90.27], [43.19, 46.59], [82.5, 97.06]], \"sentences\": [\"A woman in a purple bodysuit and wearing a bib on her back approaches a wooden balance beam in front of a large audience who is cheering her on.\", \" The woman jumps on the the balance beam and a man quickly grabs the ramp she used to jump onto the balance beam and removes it from the area.\", \" The woman begins her routine that includes, jumps, flips, and small dance moves.\", \" During the routine the woman flips and slightly loses her balance but quickly recovers and remains on the balance beam.\", \"The woman goes to the furthest end of the balance beam, has a very concentrated look on her face and she quickly does a series of flips off of the balance beam, lands on her feet, throws her two arms in the air and waves to the audience who is cheering wildly.\"]}, \"v_Ia3Aa4AO-_E\": {\"duration\": 99.99000000000001, \"timestamps\": [[0, 10], [10, 31], [31, 69.49], [69.49, 99.99]], \"sentences\": [\"two twins dressed in the same way and with the same hairstyle are in a room talking to the camera.\", \" the man in the back start putting some boxers above the pants and the man in front continue speaking to the camera.\", \" Man in front holds a brushteeth and put some toothpaste and clean his teeth, then the guy introduces the toothbrush into a honey pot and brush the teeth with it.\", \" man in front holds an hairbrush and the other guy drinks water, the other guy holds a toothbrush with jam and brush his teeth.\"]}, \"v_3XUxm78gjJE\": {\"duration\": 143.28, \"timestamps\": [[0, 143.28], [48, 50.86], [102.45, 121.07]], \"sentences\": [\"People are playing baseball on a field of grass.\", \" A person in a blue shirt falls down throwing the baseball.\", \" The audience is dancing on the side of the field.\"]}, \"v_RclRzty0YVE\": {\"duration\": 100.47, \"timestamps\": [[0, 29.64], [20.09, 70.83], [61.29, 97.46]], \"sentences\": [\"A person is seen standing on the beach with a soccer ball in front of him and a person standing in a goal.\", \" The person then kicks the ball several times to the goalie.\", \" The goalie attempts to block the shots that are aimed at the net.\"]}, \"v_lngs7qR5AXA\": {\"duration\": 6.61, \"timestamps\": [[0, 1.88], [1.98, 3.9], [3.9, 6.61]], \"sentences\": [\"A man lays in bed and wakes up.\", \" The man makes and drinks a cup of coffee.\", \" The man drinks from the cup and when he lowers the cup the man is dress as Captain America.\"]}, \"v_nIIFlJnOXXs\": {\"duration\": 122.81, \"timestamps\": [[0, 22.11], [17.19, 69.39], [74.3, 122.81]], \"sentences\": [\"A woman standing behind an ironing board grabs a pair of pants.\", \" She starts ironing the pants inside out.\", \" She turns the pants back the right way and continues ironing them.\"]}, \"v_n-1KBnDiWQU\": {\"duration\": 30.3, \"timestamps\": [[0, 9.55], [9.55, 30.3]], \"sentences\": [\" A man is on a canoe holding a paddle in a swimming pool.\", \" A man pivots a canoe helping with an oar.\"]}, \"v_aV5DMcsNMmk\": {\"duration\": 56.73, \"timestamps\": [[0, 1.13], [1.13, 56.73]], \"sentences\": [\"A dog holding a cup in its mouth jumps up on a couch.\", \" The dog proceeds to eat something in the cup.\"]}, \"v_9OVSvoKwa0A\": {\"duration\": 111.35, \"timestamps\": [[0, 111.35], [40.09, 41.76], [95.21, 97.99]], \"sentences\": [\"People are sitting in bumper cars.\", \" A man on the side is holding onto the side of one of the cars.\", \" He jumps off onto the side.\"]}, \"v_Z1siDLDwbiY\": {\"duration\": 239.68, \"timestamps\": [[4.79, 112.65], [127.03, 147.4], [149.8, 183.35]], \"sentences\": [\"A person begins clearing snow off of a windshield on a car.\", \" They then clean the snow off the doors of the car.\", \" They then clean the back window off of a car.\"]}, \"v_Ol2rfUv3zHI\": {\"duration\": 157.34, \"timestamps\": [[5.51, 129.02], [129.8, 157.34]], \"sentences\": [\" A man in a red shirt is playing a drum set.\", \" A man in a blue shirt is sitting down talking.\"]}, \"v_13vEnzRCKzo\": {\"duration\": 131.31, \"timestamps\": [[0, 1.97], [2.63, 82.72], [82.07, 85.35], [86.66, 131.31]], \"sentences\": [\"A woman talks to the camera.\", \" The woman irons a piece of clothing on an ironing board.\", \" The woman flips the piece of clothing.\", \" The woman continues to iron the piece of clothing.\"]}, \"v_FMXPFrZYhes\": {\"duration\": 14.4, \"timestamps\": [[0, 7.85], [7.77, 14.4]], \"sentences\": [\"A male athlete is outside in a field surrounded by people and begins to spin around and throws a shot put.\", \"The crowd begins to cheer and the man throws his hands up jumps in happiness.\"]}, \"v_29Vrl0rJbSo\": {\"duration\": 214.3, \"timestamps\": [[0, 3.21], [3.21, 10.71], [10.71, 51.43], [51.43, 174.65], [174.65, 210.01], [212.15, 214.3]], \"sentences\": [\"A lady stands in a bathroom talking.\", \" the lady shows the camera her brush and blow dryer.\", \" The lady brushes her hair.\", \" the lady blow drys her hair while she spins her hair on a brush.\", \" The lady turns the blow dryer off and talks to the camera while she adjusts her hair.\", \" The lady puts her brush down and talks to the camera.\"]}, \"v_rrTNLcPCWK8\": {\"duration\": 216.69, \"timestamps\": [[0, 44.42], [52.01, 70.42], [98.59, 216.69]], \"sentences\": [\"People are gathered on bleachers in a gym.\", \" Team mates come out waving a white flag.\", \" A basketball game commences, trying to make baskets.\"]}, \"v_6NQl2Vcf0P0\": {\"duration\": 15.33, \"timestamps\": [[0, 8.97], [0, 1.07], [0.46, 4.06], [4.06, 7.43], [10.57, 15.33]], \"sentences\": [\"A man in a rodeo owing is performing a stunt.\", \" A man is riding a horse in a rodeo ring.\", \" the man lassos a cow and throws it to the ground.\", \" the man then hog ties the cow.\", \" The man gets back on his horse and we pan up and see the scoreboard.\"]}, \"v_yWCrbhU_X_U\": {\"duration\": 117.19, \"timestamps\": [[0, 17.58], [17.58, 43.36], [43.36, 78.52], [78.52, 117.19]], \"sentences\": [\"Two little kids are eating an ice cream cone at mcdonalds.\", \" They are licking and so happy to have ice cream.\", \" The little girl is playing peek a boo with someone and both of their faces have ice cream on them.\", \" They are just enjoying the ice cream very much.\"]}, \"v_G4tUTpJV-so\": {\"duration\": 69.7, \"timestamps\": [[0, 7.67], [9.41, 14.64], [18.82, 69.7]], \"sentences\": [\"An asian woman is seen kneeling on the floor.\", \" She rises very slowly, arms first.\", \" She does several martial arts moves for the camera.\"]}, \"v_Ffi7vDa3C2I\": {\"duration\": 200.27, \"timestamps\": [[8.01, 14.02], [14.02, 26.04], [26.04, 31.04], [31.04, 39.05], [39.05, 63.09], [63.09, 70.1], [70.1, 77.11], [77.11, 83.11], [83.11, 92.13], [92.13, 106.14], [106.14, 152.21], [152.21, 159.22], [159.22, 171.23], [171.23, 186.25], [186.25, 194.26], [194.26, 198.27], [198.27, 200.27]], \"sentences\": [\"Two men are rollerblading on a sidewalk of a quiet street.\", \" There are four young men and women rollerblading on a street with lots of trees.\", \" There are some professionals rollerblading in a stadium and on a sidewalk by a fountain.\", \" One man jumps over a chained sidewalk while rollerblading.\", \" A couple is rollerblading on a sidewalk and another man is jumping over a barricade onto a sidewalk.\", \" Several people are rollerblading on the sidewalk.\", \" There are some people competing in a rollerblading competition.\", \" There are some men rollerblading through streets at very high speed.\", \" Some of them are climbing stairs with their roller blades.\", \" Some men are rollerblading through a busy city and on bridges.\", \" There is a group of young children rollerblading together.\", \" One man leaps over a wall while rollerblading.\", \" One person dives straight into water as he comes rollerblading at high speed.\", \" People are rollerblading through the city, going down the stairs and even on sidewalks.\", \" Two boys jump into an S shaped structure while rollerblading.\", \" Two people are doing figure eights on a bridge as they roller blade.\", \" One person goes steadily while rollerblading.\"]}, \"v_zBmVL3I3nFU\": {\"duration\": 129.1, \"timestamps\": [[0.65, 8.39], [10.33, 19.37], [28.4, 32.92], [39.38, 45.83], [60.03, 73.59], [68.42, 91.02], [90.37, 111.67]], \"sentences\": [\"First the woman shows us how she looks with her afro before she makes a bug bun.\", \" First she sprays her hair with water from a spray bottle.\", \" Then she adds moisturizer to her hair and ties a ponytail holder onto her hair.\", \" Then she twists the ends of her hair to make a small bun and she wraps it to make it secure.\", \" Then she lightly twists the braiding hair and uses as many bobby pins as she needs.\", \" Finally, she puts gel on her edges to lay them down and she puts a bandanna on her edges.\", \" Then she takes it off and it's all done.\"]}, \"v_fUJ88Ir7Dgc\": {\"duration\": 79.9, \"timestamps\": [[0, 29.16], [26.37, 57.53], [43.95, 77.9]], \"sentences\": [\"A person is seen walking around a track in the middle of a large audience.\", \" The athlete then sits down while another stands next to him and prepares.\", \" The man is then seen jumping over a bar followed by the same shot being shown again.\"]}, \"v_5RLeo8LymY4\": {\"duration\": 12.63, \"timestamps\": [[0, 3.6], [3.85, 11.24], [11.56, 12.63]], \"sentences\": [\"A pair is rowing on kayaks down a lazy river stream.\", \" They use paddles to move their kayaks along the water.\", \" The pair looks toward each other, as if talking.\"]}, \"v_FOF8YgUhRNA\": {\"duration\": 68.27, \"timestamps\": [[0, 18.43], [16.38, 57.69], [58.03, 68.27]], \"sentences\": [\"A shot of a glass being poured is shown and leads into a woman speaking to the camera.\", \" The woman holds a glass and mixes various liquids into the glass.\", \" The tops it off with a lemon and slides the drink closer and still speaking.\"]}, \"v_PlAVnu-ueM4\": {\"duration\": 120.02, \"timestamps\": [[0, 41.41], [41.41, 60.01], [60.01, 81.02], [81.02, 120.02]], \"sentences\": [\"Ms Smith is giving an interview talking about weight lifting, she speaks about how she started around 12.\", \" The coach briefly speaks about how gives them rest before every competition.\", \" She lifts the weight way above her head and drops it wearing her uniform.\", \" Everyone claps for her, and then you hear from her and the coach again before the interview is over.\"]}, \"v_Jm1y_W7RLSI\": {\"duration\": 163.75, \"timestamps\": [[0, 105.62], [60.59, 158.02]], \"sentences\": [\"A woman is seen standing before a camera and begins putting lotion on her hands and rubbing it round her face.\", \" The woman continuously rubs lotion all into her face and ends by looking into the camera.\"]}, \"v_KcgpoXEh44M\": {\"duration\": 98.85, \"timestamps\": [[0, 30.64], [30.15, 58.32], [58.81, 82.04], [82.04, 98.85]], \"sentences\": [\"Two women are in a room standing behind a table and one holds up a teddy bear.\", \"The two the help each other,and begin by taking out a roll of wrapping paper.\", \"After,the young girl begins to cut,fold, and tape the paper and places the bear inside.\", \"Finally,the task is complete and she holds the finished product up on the table.\"]}, \"v_0RZ5_8VD4vc\": {\"duration\": 39.94, \"timestamps\": [[3.39, 39.94], [4.99, 8.99], [8.99, 31.15]], \"sentences\": [\"This video allows viewers to hear the testimony of a customer who has used the pro roofing service.\", \" First the man tells how he heard about the service and how great it is.\", \" He also says that he chose pro roofing because the neighbors chose it and persuaded him by telling how great the service is.\"]}, \"v_bHxWHW2PGy4\": {\"duration\": 185.06, \"timestamps\": [[0, 10.18], [15.73, 31.46], [33.31, 38.86], [50.89, 59.22], [62.92, 100.86], [89.76, 108.26], [116.59, 136.02], [141.57, 166.56], [170.26, 185.06]], \"sentences\": [\"The white water polo team huddles together.\", \" The game begins and blue scores while deep in the white defense to tie the game.\", \" White answers with a powerful goal to grab the lead back.\", \" Blue moves in and after a couple of passes ties the game back up.\", \" White scores to take the lead, and blue comes right back to tie once again.\", \" A scramble for the ball results in white gaining a 2-on-1 advantage and a goal.\", \" They push their lead further late and put the game out of reach, winning 14-10.\", \" The team celebrates together in the water.\", \" The team celebrates their gold metal at the podium.\"]}, \"v_r4iurK3kOe8\": {\"duration\": 70.06, \"timestamps\": [[0, 7.36], [6.3, 54.99], [35.03, 70.06]], \"sentences\": [\"A girl and a dog is in the field.\", \" The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog walked with his two front paws up.\", \" The girl threw the frisbee and the dog chase of it and placed it on the ground.\"]}, \"v_kdjLJTGj4H0\": {\"duration\": 89.17, \"timestamps\": [[0, 89.17], [53.05, 53.94]], \"sentences\": [\"Women are playing a game of curling.\", \" The audience watching them cheers and applauds.\"]}, \"v_qvLFSqPCvn8\": {\"duration\": 158.06, \"timestamps\": [[0, 62.43], [62.43, 155.69], [155.69, 158.06]], \"sentences\": [\"A man grabs a tire from the back of the car and quickly runs to the front right of the car, drops it on the grass, then runs to the tire still on the car and begins to raise the car with a jack, and remove the lugs, rim and tire and throws them on the grass.\", \" The man then grabs the tire he pulled out from the back of the car, puts it on the car, puts the rim on it and tightens lugs onto them with his hand and then he picks up the tool and tightens the lugs with that.\", \"The man then removes the jack from under the car and tightens the lugs again with the tool and he stands up out of breath and smiles.\"]}, \"v_YWsqpINl8Ic\": {\"duration\": 72.05, \"timestamps\": [[0, 10.09], [13.33, 62.69], [63.05, 67.37], [67.37, 72.05]], \"sentences\": [\"A handyman is standing in front of a porch and talking.\", \" The man uses two squeegees to clean two windows at the same time.\", \" The man finishes and puts his tools in his tool belt.\", \" He smiles and walks away.\"]}, \"v_yVrru7t3478\": {\"duration\": 50.37, \"timestamps\": [[0, 16.37], [15.61, 37.77], [29.46, 49.61]], \"sentences\": [\"A camera is seen moving closer to a playground and shows a woman going down a slide.\", \" A dog rides down with her and another dog walks around the area.\", \" The woman rides down several more times with the small dog next to her.\"]}, \"v_g2Dv154zmMU\": {\"duration\": 107.67, \"timestamps\": [[1.62, 52.22], [53.84, 107.67]], \"sentences\": [\"Two people are seen speaking to the camera and leads into them passing a ball on sticks to one another.\", \" The woman pauses to speak to the camera several times as well as show more clips of the two hitting the ball.\"]}, \"v_yqkjHCPsdF0\": {\"duration\": 40.57, \"timestamps\": [[0.2, 40.16], [2.23, 9.33], [9.33, 13.79], [22.11, 39.35]], \"sentences\": [\"A group of people play water volleyball in a indoor pool with a few onlookers on the sidelines.\", \"  A yellow volleyball is thrown between people in a pool.\", \"  A person makes a goal with the yellow volleyball in a white net.\", \"  The ball is thrown to the other side of the pool where another goal is met in a white net on the opposite side of the pool.\"]}, \"v_kC1DyxcRHBg\": {\"duration\": 117.62, \"timestamps\": [[0, 117.62], [3.53, 17.64], [15.88, 71.16], [49.99, 74.69], [69.99, 94.69], [92.92, 117.62]], \"sentences\": [\"There's a person wearing pink gloves doing a tutorial on how to clean a white kitchen sink.\", \" The person sprays some white cleaning powder in the sink and then sprays some Clorox bleach on it.\", \" Then takes a pink scrub and begins scrubbing the sink in back and forth motion.\", \" The person makes sure that all the sides of the sink are cleaned, including the drain.\", \" Then she starts the tap to wash off the powder and bleach.\", \" She then uses a paper towel to wipe off the water and clean off any residual powder from the sink.\"]}, \"v_AnPLZtJs7zE\": {\"duration\": 95.71000000000001, \"timestamps\": [[3.83, 17.71], [5.26, 17.71], [20.1, 83.27], [42.59, 83.27], [85.18, 87.58]], \"sentences\": [\"A man is talking to the camera next to a fence.\", \" The man is holding a paintbrush.\", \" The man dips the paintbrush into a bucket of paint and starts painting the fence.\", \" The man moves along the fence painting it.\", \" The man finishes painting and steps away from the fence.\"]}, \"v_f6Nhpyq1XdU\": {\"duration\": 33.07, \"timestamps\": [[0.17, 22.65], [14.05, 33.07]], \"sentences\": [\"A woman standing in front of the white sing, turned on the faucet, got some liquid soap and wash her hand.\", \" She turned around and get some hand napkins from the wall, wiped her hands and threw the paper in the trash basket.\"]}, \"v_bGql7ldp84A\": {\"duration\": 189.66, \"timestamps\": [[0, 24.66], [24.66, 42.67], [42.67, 81.55], [81.55, 128.02], [128.02, 184.92], [184.92, 189.66]], \"sentences\": [\"A woman comes onto the screen announcing that she will do a video on how to make a cookie dessert.\", \" She begins with all the ingredients she will need for the cookies and begins to combine the dry ingredients.\", \" She then proceeds to mix the wet ingredients in a glass bowl.\", \" After she mixes all the ingredients together she begins to roll the dough into balls and place them onto a cookie sheet, and puts them into the oven.\", \" She takes them out of the oven and begins to wrap them into individual sets.\", \" The video ends with the closing credits.\"]}, \"v_RCyZgp1F06s\": {\"duration\": 36.64, \"timestamps\": [[0, 4.4], [2.75, 17.04], [14.84, 35.36]], \"sentences\": [\"A small child is seen sitting on a swing smiling at the camera.\", \" The boy moves back and fourth on the swing while another boy is seen swinging next to him.\", \" The two continue swinging back and fourth while the camera captures them from different angles.\"]}, \"v_aF0gDTbcOxE\": {\"duration\": 214.57999999999998, \"timestamps\": [[0, 42.92], [45.06, 104.07], [104.07, 209.21]], \"sentences\": [\"Several clips are shown of robots fighting one another as well as the inside and outside of a building.\", \" More robots are shown close up as well as people adjusting the robots and setting them down to fight.\", \" The people continue using the robots and end by shaking hands and bowing with another man.\"]}, \"v_STgbw-zqZJM\": {\"duration\": 27.52, \"timestamps\": [[0.41, 11.56], [11.56, 26.69]], \"sentences\": [\"A leaf blower machine blows a large pile of leaves around a parking lot.\", \" The machine continues moving through the lot and flowing the leaves into a large pile.\"]}, \"v_JXL7LxJSjzw\": {\"duration\": 142.76, \"timestamps\": [[0, 142.76], [2.86, 5.71], [42.83, 76.37], [68.52, 77.8], [109.21, 125.63], [134.91, 142.76]], \"sentences\": [\"We see a lady in the woods chopping logs of wood.\", \" The lady puts a log on a platform.\", \" We see chickens running around the background.\", \" The lady laughs as she picks up a piece of wood.\", \" We see a chicken flapping it's wings in the background.\", \" The lady finishes and throws her hands in the air.\"]}, \"v_5iIJl-wjE9U\": {\"duration\": 111.74000000000001, \"timestamps\": [[0, 111.74], [11.73, 43.02], [42.46, 68.16], [68.16, 101.13], [101.13, 111.74]], \"sentences\": [\"Girls are talking to the camera.\", \"  They are making hand motions as they talk.\", \" They are playing rock, paper scissors.\", \" A girl is laying on the ged as another girl puts her butt in her face.\", \" The girl is talking to the camera again.\"]}, \"v_c3SJUucMqJQ\": {\"duration\": 183.11, \"timestamps\": [[13.73, 17.4], [36.62, 53.1], [53.1, 122.69], [41.2, 122.69], [130.01, 157.48], [167.55, 170.3]], \"sentences\": [\"A person picks up a cat off of a chair.\", \" They lay the cat down on their lap.\", \" They begin to clip the nails of the cat.\", \" A person is sitting next to them on a laptop.\", \" The person pets the belly of the cat.\", \" They take the cat back and set it in a chair.\"]}, \"v_WSaGZOdrjtM\": {\"duration\": 211.11, \"timestamps\": [[0, 14.78], [24.28, 79.16], [83.39, 211.11]], \"sentences\": [\"a male athlete prepares to run down a track.\", \" He takes off running, vaulting himself over a bar and onto a mat.\", \" He jumps up exuberantly, celebrating as the crowd cheers.\"]}, \"v_A0H6JceDqlg\": {\"duration\": 114.15, \"timestamps\": [[0, 31.39], [31.39, 89.04], [89.04, 95.89]], \"sentences\": [\"A man serves a tennis ball with a racket while he talks.\", \" The man bounces a ball and shows how to move the body, then he serves a ball.\", \" The man continues talking in the tennis court.\"]}, \"v_3PC5_h68qkc\": {\"duration\": 193.26, \"timestamps\": [[0, 7.73], [9.66, 42.52], [43.48, 74.41], [76.34, 155.57], [157.51, 193.26]], \"sentences\": [\"We see the opening title screen.\", \" People are putting on their supplies and riding in rafts down a river.\", \" We see the location name and the resort shots of the restaurants, bathrooms and more.\", \" We see people dance and play games outdoors and in a room in groups with balloons and dancing.\", \" We see people zip lining in the jungle.\"]}, \"v_RkhSR7pz9qc\": {\"duration\": 100.57, \"timestamps\": [[0, 43.75], [14.08, 16.09], [22.63, 25.14], [30.67, 43.24], [44.25, 49.78], [55.31, 89.5], [89.5, 100.57]], \"sentences\": [\"We see two teams of men playing soccer indoors.\", \" Two men collide and fall to the ground.\", \" Three men high five and hug each other.\", \" A man throws the ball clear across the room to the other goal.\", \" Two sets of people n the crowd are interviewed.\", \" We see the crowd and a man interviewed and see some scoring shots.\", \" We see three men stand and pose for a photo and a man is interviewed before we return to the game.\"]}, \"v_FTCCoZdr5fo\": {\"duration\": 216.78, \"timestamps\": [[1.08, 8.67], [15.17, 24.93], [143.07, 159.33]], \"sentences\": [\"A man and woman are sitting on a couch talking.\", \" They are driving in a car down a street.\", \" They are rollerblading down a sidewalk.\"]}, \"v_PbZIYJxoWdY\": {\"duration\": 158.36, \"timestamps\": [[3.17, 61.76], [64.14, 120.35], [112.44, 152.03]], \"sentences\": [\"A man is seen speaking to the camera and leads into several shots of a boat on water as well as people holding a camera and wake boarding.\", \" The people are then seen climbing on a rock and walking around a forest, ending by jumping in the water.\", \" More clips are shown of them wakeboarding as well as riding in the boat and jumping into the water.\"]}, \"v_Ap7GCrt9C4w\": {\"duration\": 143.5, \"timestamps\": [[0, 25.83], [25.83, 143.5]], \"sentences\": [\"women are in the background of a gym lifting weights.\", \" man is preparing himself to lift weigh and stands in front of weight.\"]}, \"v_w-st-23ZQSs\": {\"duration\": 234.62, \"timestamps\": [[0, 34.02], [34.02, 62.17], [62.17, 129.04], [129.04, 234.62]], \"sentences\": [\"Stacy is clapping and getting pumped up and ready to perform.\", \" She gets her pole and starts running with it and jumps onto the cushion.\", \" Then, other women follow suit doing the same after her scoring differently.\", \" Next is the men's turn to take their turns one by one following the women.\"]}, \"v_xi4puZ1ulP4\": {\"duration\": 226.21, \"timestamps\": [[0, 18.1], [18.1, 73.52], [73.52, 104.06], [104.06, 149.3], [149.3, 202.46], [212.64, 226.21]], \"sentences\": [\"A woman is seen with seen wearing a tanktop with introduction text.\", \" The woman have hair tied back and applies eye make up to eyes using various brushes and colors.\", \" The woman begins to puts eye liner on with a fine pencil.\", \" The women takes cloth ties out of here hair and lets her hair down which is now curled.\", \" The woman uses a comb and hairspray to straighten parts of here hair then ties it back.\", \" Messages of tex are shown on the end of the video.\"]}, \"v_nxyENrsY4mo\": {\"duration\": 138.55, \"timestamps\": [[0, 8.31], [8.31, 37.41], [37.41, 133.01], [133.7, 138.55]], \"sentences\": [\"A small quote comes across the screen and the title pages follows.\", \"After,several people are pictured outside in a field grooming their horses.\", \"Finally,the people then get on their horses and they all begin competing with one another playing a game of Polo.\", \"As they play,a woman is shown on the side of the field taking pictures and a small logo for the photography shows on the end of the screen.\"]}, \"v_1UIhgxQXcfI\": {\"duration\": 224.91, \"timestamps\": [[0, 13.49], [23.62, 52.85], [38.23, 62.97], [115.83, 158.56]], \"sentences\": [\"This person has dried grains and is now putting them into a small blender.\", \" Then he adds an egg and salt to the grains, plus other ingredients too.\", \" Next he makes a ball of the grain and then flattens it out, he then puts a cup onto it to make little round shaped cookies.\", \" He puts them on a pan and into an oven, after they're done he eats them along with some beer.\"]}, \"v_rBsE1WGXbz0\": {\"duration\": 65.62, \"timestamps\": [[2.62, 9.19], [9.19, 25.59], [9.19, 65.62]], \"sentences\": [\"A man throws a ball onto a field.\", \" People are standing around measuring the distance.\", \" People are watching them from the sidelines.\"]}, \"v_7QA5qyCXwyg\": {\"duration\": 238.35, \"timestamps\": [[0, 48.86], [59.59, 182.34], [185.92, 238.35]], \"sentences\": [\"A man is standing in a living room.\", \" He is using his hands to beat a set of drums.\", \" He continues playing for the rest of the video.\"]}, \"v_36K1e9WgEpU\": {\"duration\": 110.67, \"timestamps\": [[0.55, 109.01], [3.87, 27.67], [27.67, 57.55], [56.99, 106.79]], \"sentences\": [\"Several people in donut shaped inflatable rafts float down a narrow stream guided by people helping them in the water and watched by a small group of people on nearby land.\", \"  A group of people, float in a line, down a narrow stream of water in donut shaped, black inflatable rafts.\", \"  One woman gets stuck on a rock in the raft and shimmies herself loose.\", \"  The people reach the end of the narrow stream where a group of people help them off of the rafts and another small group of people watches them from nearby land.\"]}, \"v_Rvsc5eymWIg\": {\"duration\": 68.59, \"timestamps\": [[0, 12.69], [12.35, 60.7], [60.36, 68.59]], \"sentences\": [\"man is holding a impact drill pulling out a car wheel.\", \" man is holding the wheel in a table and taking out the rubber from the rim and he changes it for another.\", \" car is in street next to a mountain.\"]}, \"v_U8m-9nmAfGU\": {\"duration\": 93.3, \"timestamps\": [[0, 0.47], [5.13, 26.59], [27.06, 42.92], [43.38, 50.85], [51.31, 93.3]], \"sentences\": [\"A person fixes a strap on a guy.\", \"  The guy moves closer to the edge.\", \" Two men places hooks on the guy.\", \" A man release a rope.\", \" The guy jumps of the edge or bungee jumps.\"]}, \"v_PbzmcZ_IORE\": {\"duration\": 77.37, \"timestamps\": [[0, 77.37], [23.6, 65.76], [37.52, 42.17]], \"sentences\": [\"A toy dog is walking on the floor.\", \" It stops to look around back and forth.\", \" Someone picks the dog up and puts it back down.\"]}, \"v_HvzJ-RJOF9Q\": {\"duration\": 82.8, \"timestamps\": [[0, 42.64], [41.4, 82.8]], \"sentences\": [\"A man is seen speaking to the camera while moving his arms around and others swim in a pool behind him.\", \" The man continues speaking to the camera and a person jumps off the diving board behind him.\"]}, \"v_gnZssGiQC7A\": {\"duration\": 71.12, \"timestamps\": [[0.36, 71.12], [3.2, 7.47], [9.96, 27.74], [28.45, 70.06]], \"sentences\": [\"A man at a professional sports event performs a long jump over a pit of sand in front of a stadium filled with people.\", \"  The man begins by encouraging the audience to clap by throwing his hands up at the crowd and gesturing for applause.\", \"  The man then kneels slightly to prepare for the run and begins to run down a stretch of narrow lane before catapulting in the air over the sandpit.\", \"  The man lands on the other side of the pit and gestures to the audience again for applause as men smooth sand over with long handled and wide brush brooms, the audience claps and waves flags and camera people rush around the event capturing it on film.\"]}, \"v_4dVVaDvCzn0\": {\"duration\": 11.01, \"timestamps\": [[0, 3.19], [0, 11.01], [3.14, 8.48], [8.42, 11.01]], \"sentences\": [\"Words come across the screen over an image.\", \" We see ladies dealing cards on purple tables in a casino with no customers.\", \" the dealer smiles and deals cards and points to them.\", \" The dealer finishes and waves her arms across the table as words appear on the screen.\"]}, \"v_hg8WbkmC2nU\": {\"duration\": 214.9, \"timestamps\": [[0, 83.81], [71.99, 182.67], [176.22, 206.3]], \"sentences\": [\"A man is seen speaking to the camera while walking around a kitchen and checking on food.\", \" Several shots of food are shown on tables as well as racks and the chef continues to speak to the staff behind.\", \" The man walks out front and speaks with the customers that are coming in and finished by speaking to the camera.\"]}, \"v_2Is_nJdG2to\": {\"duration\": 18.72, \"timestamps\": [[0, 14.88], [14.88, 18.72]], \"sentences\": [\"A woman brush the hair of a girl while talking sitting on a bed.\", \" Then, the woman kneel on the bed and touch the shoulders of the girl.\"]}, \"v_GHcNgllmcpM\": {\"duration\": 168.44, \"timestamps\": [[0, 76.64], [52.22, 165.07]], \"sentences\": [\"A large crowd is seen sitting before a stage and leads into a young woman hitting drums in a circle and moving around the stage.\", \" The woman continues hitting the drums while the crowd watches and ends with text scrolling across the screen.\"]}, \"v_T_CvR3zm6K8\": {\"duration\": 193.14, \"timestamps\": [[0, 184.45], [54.08, 56.98], [90.78, 91.74], [126.51, 131.34]], \"sentences\": [\"Men are playing volleyball in the sand.\", \" Cheerleaders are standing next to them watching.\", \" A woman is playing soccer on a beach.\", \"A man in a red shirt is talking to the camera.\"]}, \"v_ehO168THGqU\": {\"duration\": 218.48, \"timestamps\": [[0, 26.22], [26.22, 58.99], [58.99, 150.75], [150.75, 218.48]], \"sentences\": [\"Two men skateboarding at an indoor skate park along side each other.\", \" They stop and give other pointers, trying to perfect how to jump on the rail.\", \" One of them tries again and again and the other gets a stick out of his bag and extends it towards the rail.\", \" Then, another male comes and joins in, they play rock paper scissors and get back on board.\"]}, \"v_Tm7N2HU4noQ\": {\"duration\": 216.06, \"timestamps\": [[0, 17.28], [17.28, 216.06], [60.5, 111.27], [113.43, 159.89], [159.89, 199.86], [199.86, 216.06]], \"sentences\": [\"We see a basketball title screen.\", \" A man is coaching as a teen makes basketball shots.\", \" The man takes the ball and demonstrates a hip move the the boy tries.\", \" The man demonstrates something and the boy shoots the ball.\", \" We see the tips on the screen 1 by one.\", \" We then see the ending title screen.\"]}, \"v_jrXoqceGS-k\": {\"duration\": 202.97, \"timestamps\": [[0, 12.18], [12.18, 22.33], [23.34, 109.6], [53.79, 55.82], [111.63, 120.76], [152.22, 158.31], [193.83, 197.89], [199.92, 202.97]], \"sentences\": [\"We see an animated opening screen.\", \" A man is driving then gets out of his car.\", \" We see a man rollerblading in a plaza and a skate park.\", \" We see the man's feet in the blades then a man's face.\", \" We see the man standing on an elevated sidewalk then skating on the railing.\", \" We see the man skate across a bench then put on sunglasses.\", \" We see the man turn and click a button and a car blows up.\", \" We then see the ending title screen.\"]}, \"v_MXN34b2OUjQ\": {\"duration\": 24.85, \"timestamps\": [[0, 24.85], [3.98, 24.85]], \"sentences\": [\"two girl teams play field hockey with hockey sticks and a small ball.\", \"the team with the burgundy shirts scores three times and the other team scored none.\"]}, \"v__bSRAXNa5PY\": {\"duration\": 96.67, \"timestamps\": [[0, 4.83], [7.25, 80.72], [32.87, 36.73], [38.18, 47.85], [81.2, 84.58], [87, 96.67]], \"sentences\": [\"We see a man dive into a pool in slow motion.\", \" We see the judges giving the man his score and talking to him.\", \" We see a lady clapping.\", \" We see the diver being interviewed.\", \" We see the crowd stand and clap.\", \" we see the final score cards for all the contestants.\"]}, \"v_TeXm2KTfkzo\": {\"duration\": 73.91, \"timestamps\": [[0, 72.43], [10.72, 24.39], [20.69, 22.54], [37.32, 45.45], [48.04, 59.87], [59.5, 63.19], [71.32, 73.91]], \"sentences\": [\"Trees blow in the breeze as a man mows the lawn.\", \"  The sun peeks from behind the clouds and lights the scene up.\", \" the man stops and empties grass in the garbage.\", \" A man enters carrying a baby and leaves.\", \" The man mows along side of the bushes.\", \" The man stops and empties his bag  again.\", \" The man empties his bag and puts it back on the mower and walks away.\"]}, \"v_oDZ6refg3Ew\": {\"duration\": 205.52, \"timestamps\": [[0, 93.51], [85.29, 205.52]], \"sentences\": [\"A woman is seen performing a dance routine while moving around on the beach near the water.\", \" The woman continues moving around on the beach shaking her arms and legs and looking off into the distance.\"]}, \"v_oOnKQgQZOZ0\": {\"duration\": 31.23, \"timestamps\": [[0, 4.84], [5.31, 9.37], [10.46, 22.02], [19.83, 30.92]], \"sentences\": [\"A water polo match is happening at an enclosed swimming pool.\", \" There are a few spectators looking on from the sides of the pool, while a referee is following the actions to stay in control of the match.\", \" It is quiet other than the young kids that are involved in the game.\", \" They are having a great time and are very involved in what they are doing.\"]}, \"v_n7AaZhEOJSY\": {\"duration\": 121.05, \"timestamps\": [[1.21, 49.02], [33.29, 96.23], [66.58, 114.99]], \"sentences\": [\"The video begins with a man performing various ballet moves while the camera follows and repeats in slow motion.\", \" The man interviews the camera and leads into another dancer performing steps.\", \" Several more people are seen performing dance moves and speaking to the camera.\"]}, \"v_cQxTLj4XwuU\": {\"duration\": 15.09, \"timestamps\": [[0, 1.21], [1.21, 6.94], [7.09, 12.68], [12.9, 15.09]], \"sentences\": [\"A man is seated on a couch.\", \" He lifts up a shoe and bottle of detergent.\", \" He takes it to a sink, where he washes it.\", \" He then places two pieces of fruit on top, and eats them off with his mouth.\"]}, \"v_2Peh_gdQCjg\": {\"duration\": 141.55, \"timestamps\": [[0, 13.45], [14.86, 48.83], [49.54, 87.05], [87.76, 137.3]], \"sentences\": [\"Descriptive text is shown against a red movie curtain backdrop.\", \" A coach shows different leg stances to a student for playing badminton.\", \" The coach returns serves from the student using the racket during a practice drill.\", \" The students returns serves from the instructor for a practice drill.\"]}, \"v_4KgIfmPLuAY\": {\"duration\": 72.63, \"timestamps\": [[0, 43.22], [44.67, 60.29], [60.29, 71.91]], \"sentences\": [\"A man kneels on a mat and shows her back an front with his left hand while talking.\", \" Then, the man lift a kettlebell and put on front his chest while talking.\", \" Then, the man put the kettlebell on the floor and continues talking.\"]}, \"v_k_ZCg9tqGQo\": {\"duration\": 23.52, \"timestamps\": [[0, 9.53], [8.23, 23.52]], \"sentences\": [\"A woman is seen standing in front of mirror with a man beside her followed by her laying on a table.\", \" The man then quickly tattoos her face and transitions into her sitting up then back down again to show off her tattoo.\"]}, \"v_N_o9Qp0FLVY\": {\"duration\": 56.05, \"timestamps\": [[0, 19.06], [19.62, 45.68], [45.68, 56.05]], \"sentences\": [\"woman is in a shower spreading soap and water in her arms.\", \" woman is shaving her legs on the bathtub.\", \" someone open the curtains and is a man that is inside and runs from the bathroom with a mask on his face.\"]}, \"v_9H8OBfrm1Rw\": {\"duration\": 118.47, \"timestamps\": [[0, 30.8], [30.8, 84.71], [84.11, 118.47]], \"sentences\": [\"Rain is pouring down and a person is walking across the field pointing his finger across the field.\", \"After,he is shown in a field holding his hand up starts to play lacrosse.\", \"More games continue and the guy who was pointing begins making goals and leading his team.\"]}, \"v_3J_-uEjb8UE\": {\"duration\": 219.52, \"timestamps\": [[0, 2.2], [2.2, 7.68], [9.88, 32.93], [32.93, 38.42], [38.42, 219.52]], \"sentences\": [\"A red and blue triple-A logo is pictured on a white screen and then the screen flashes to a big snow truck.\", \"Once the truck is gone,there are various people plowing through the snow in attempt to get it off of the roads and to clear a walkway.\", \"After,a young Black male begins to talk and illustrate the snow on the cars as he represents the Public relations aspect of triple A.\", \"As the man continues to talk,a man with of bucket of water is shown and there is no longer any water on his car.\", \"After awhile, another man is pictured shoveling snow off of his car and then getting inside to adjust the radio,suddenly,the man is back outside and is scraping off snow from every aspect of the car including, windows,exhaust pipes, windshields,and tail lights then the black male comes back and continues to talk.\"]}, \"v_mz2-lgoNz1M\": {\"duration\": 143.64, \"timestamps\": [[7.18, 19.39], [19.39, 30.88], [30.88, 50.27], [50.27, 71.82], [71.82, 96.24], [96.24, 126.4], [126.4, 143.64]], \"sentences\": [\"A man wearing a white shirt and a camouflage print hat and ear and lip piercings is demonstrating how to do permanent tattoos.\", \" He shows how he shaves the client's arm with a razor and rubs some alcohol on it to prep the skin.\", \" Then he places a stencil on the client's arm to lay down the outline of the tattoo.\", \" Then he applies some cream over the skin to minimize bleeding.\", \" He begins to use the tattoo machine to draw on the tattoo over the outline.\", \" He also shows how he uses different colors to fill in the outline of the design.\", \" He then completes the tattoo as per the client's specifications.\"]}, \"v_ZgIKmwnCqr4\": {\"duration\": 17.21, \"timestamps\": [[0, 4.99], [4.99, 11.96], [11.87, 17.21]], \"sentences\": [\"A little baby is outside holding a stick attempting to hit the pinata with it.\", \"Behind her,a lady is holding up the baby and assisting her as she hits the pinata.\", \"As the pinata bounces up and down,the young baby barely hits it and then ends up turning towards the camera.\"]}, \"v_sTMbpIfI-6o\": {\"duration\": 150.23, \"timestamps\": [[0, 37.56], [39.81, 150.23]], \"sentences\": [\"A little girl is seated at a table in front of two glasses, a 7up bottle and a plate of lime slices.\", \" She adds the soda and lime slices to the glasses, squeezing the juice into the liquid before taking a drink.\"]}, \"v_hJ4ZU-FA5XA\": {\"duration\": 170.13, \"timestamps\": [[0, 170.13], [42.53, 170.13]], \"sentences\": [\"An old style television show is shown where a man cuts a woman's hair.\", \" A man then cuts her hair real short while another man looks in from outside.\"]}, \"v_po9uigsunAU\": {\"duration\": 139.67000000000002, \"timestamps\": [[0, 16.06], [16.06, 49.58], [49.58, 125], [125.7, 139.67]], \"sentences\": [\"A man is outside in a soccer field putting his equipment in a book bag.\", \"Once the things are in his bags,he secures it with his straps and begins jumping up and down.\", \"The main tasks begins and the man begins running through the woods.\", \"All of a sudden,a small body of water is shown and people are tubing and sitting down enjoying each other.\"]}, \"v_m6T68amiXjs\": {\"duration\": 234.96, \"timestamps\": [[0, 24.67], [23.5, 32.89], [30.55, 50.52], [41.12, 46.99], [48.17, 56.39], [56.39, 212.64], [220.87, 225.56]], \"sentences\": [\"A boy with a hat is seen walking and talking behind some trees.\", \" The boy sneaks out onto a field where another boy is playing field hockey.\", \" The boy in the hat takes the ball.\", \" The boy playing field hockey is seen leaping around in the background.\", \" The boy in the hat kicks the ball back to the field hockey player and another player is seen.\", \" The two field hockey players are seen running around and hitting the field hockey ball with their sticks.\", \" One of the field hockey players is seen with his arms and legs wrapped around the leg of the boy with the hat.\"]}, \"v_ExNd4o46kao\": {\"duration\": 170.2, \"timestamps\": [[0, 36.59], [40, 136.16], [139.57, 170.2]], \"sentences\": [\"A little girl uses a sweeper to hit a disc.\", \" The disc travels down the court before stopping, as do further discs.\", \" She continues playing the game, unsure how to win.\"]}, \"v_fxlTN3mCWDA\": {\"duration\": 169.9, \"timestamps\": [[22.94, 62.86], [62.86, 81.55], [81.55, 94.3], [94.3, 160.56], [160.56, 167.35], [167.35, 169.9]], \"sentences\": [\"There are several passengers traveling in a subway train.\", \" Two of the passengers are seated on folding chairs and they're playing drums on bongos.\", \" They continue to play the bongos while the other passengers are busy doing their own thing.\", \" One young boy who is seated near the players is watching them play.\", \" The players continue playing the bongos and drumming on them.\", \" After they stop playing, one person applauds them.\"]}, \"v_P6UwokP8BEg\": {\"duration\": 90.27, \"timestamps\": [[5.87, 80.79], [9.93, 23.47], [35.21, 47.39], [82.6, 83.95]], \"sentences\": [\"Three men exhibit hammer throws in an outdoor Olympic event surrounded by onlookers on the field and in bleachers.\", \"  A man stands at an outdoor Olympic game and performs a hammer throw surrounded by people and and an audience in bleachers before letting the hammer go to fly in the air.\", \"  Two more men perform a hammer throw in the same way releasing the hammer into the air to fly out into a field.\", \"  Three men stand in the middle of a field and hold up medals that hanging around their necks.\"]}, \"v_tT7ljH8GCl8\": {\"duration\": 80.11, \"timestamps\": [[0, 7.61], [8.41, 44.86], [45.66, 69.29], [70.5, 80.11]], \"sentences\": [\"A lawnmower is outside next to a line of round rocks.\", \" A person starts the mower and begins pushing it alongside the rock border.\", \" We get a first hand view of the person's lawn being mowed as they turn and push the mower all over.\", \" The man's face is shown just before he turns off the camera.\"]}, \"v_Mfk4bUp_ZC0\": {\"duration\": 80.74, \"timestamps\": [[0, 80.74], [48.04, 54.09], [73.87, 77.1]], \"sentences\": [\"Children are riding the  bumper cars at an amusement park or carnival.\", \" A Traffic jam traps the little girls in the middle of cars.\", \" the little girl in the hat smiles as she looks in her sisters face.\"]}, \"v_LwJFjFdJy5c\": {\"duration\": 33.11, \"timestamps\": [[0.33, 11.09], [9.93, 24.83], [21.19, 31.95]], \"sentences\": [\"A large group of people are seen sitting around an outdoor field.\", \" A dog is seen running up and down the field in the middle of the audience.\", \" The dog keeps running back and fourth while the camera watches from the side.\"]}, \"v_Bi3vlu17qp8\": {\"duration\": 28.45, \"timestamps\": [[0, 2.28], [2.13, 28.45], [4.12, 28.45]], \"sentences\": [\"A person in a black shirt gets hit by a ball.\", \" People standing on the beach are tossing around an orange ball.\", \" There are people swimming in the water behind them.\"]}, \"v_cdP8_KujTCE\": {\"duration\": 110.67, \"timestamps\": [[0, 9.96], [9.96, 100.71], [32.65, 36.52], [53.67, 57.55], [91.3, 95.73], [94.62, 100.71], [100.71, 110.67]], \"sentences\": [\"We see a colorful and playful title screen.\", \"We then see people in a room and outdoors at a fancy party.\", \" A woman walks through the door.\", \" The man in the suit come through the gate.\", \" A man in red walks past the camera.\", \" The lady in white sees the camera and hides.\", \" We see Colorful crystal like closing screen.\"]}, \"v_IjdTjpaPPNg\": {\"duration\": 150.26, \"timestamps\": [[0, 81.89], [82.64, 91.66], [93.91, 150.26]], \"sentences\": [\"People are riding horses along a dirt trail.\", \" They are crossing a river of water on the horses.\", \" They continue on their ride on the horses.\"]}, \"v_hKn_RK3VSAo\": {\"duration\": 120.14, \"timestamps\": [[6.61, 118.94], [6.61, 25.23], [27.03, 63.07], [63.67, 118.34]], \"sentences\": [\"Several people in a lab create a formula, and interview with a journalist,  interspersed with images of people applying sunscreen to themselves.\", \" Many people are shown on video in candid shots of them applying sunscreen to themselves while outdoors.\", \"  A woman in a lab prepares a formula of varied ingredients interspersed with talking to a camera.\", \"  More scientists are shown in the lab interviewing and talking intermixed with shots of them preparing formulas in the lab and one final shot of a man in an outdoor market handling ingredients for sale.\"]}, \"v_GCtrfXIBbwA\": {\"duration\": 108.03999999999999, \"timestamps\": [[0, 29.17], [29.17, 58.34], [58.88, 108.04]], \"sentences\": [\"young man is playing the harmonica.\", \" young man introduces his video lesson and lays out the lesson plan.\", \" Musical notes are displayed onscreen while harmonica plays.\"]}, \"v_bu7zk-YxEoY\": {\"duration\": 128.85, \"timestamps\": [[1.29, 66.36], [48.96, 123.69]], \"sentences\": [\"An athletic woman is seen stepping up to a beam and beginnings performing a gymnastics routine on it.\", \" The woman continues moving around on the beam and ends with her jumping down with her arms up and speaking to her coach as her ending is shown again in slow motion.\"]}, \"v_GHOCVoZsFHE\": {\"duration\": 116.31, \"timestamps\": [[1.74, 41.87], [50.59, 111.08]], \"sentences\": [\"A man is seen speaking to the camera an leads into clips of him demonstrating martial arts with another man.\", \" The men continue to demonstrate with one another while pausing to speak to the camera.\"]}, \"v_CXM1sXEMSWI\": {\"duration\": 95.97, \"timestamps\": [[0, 4.32], [4.32, 35.03], [35.03, 47.02], [47.02, 95.97]], \"sentences\": [\"An introduction comes onto the screen for a funny video about beer drinking.\", \" Some guys in a room prepare to do a trick with a beer can.\", \" They perform the trick and a guy begins to chug the beer.\", \" Shortly thereafter, the guy begins throwing up all the beer into a trash can while everyone laughs.\"]}, \"v_s82_J03bqwQ\": {\"duration\": 228.89, \"timestamps\": [[0, 77.82], [70.96, 169.38], [180.83, 228.89]], \"sentences\": [\"A man is seen riding in on a skateboard followed by a man drinking a beer through a hose and a man sitting in a car flipping off the camera man.\", \" More random shots are show of landscapes, dogs, people standing around, and moving along the water.\", \" The video leads into people riding along on the water kite surfing and leads into a man speaking to others outside while smoking a cigarette.\"]}, \"v_YaHTgeeDs7s\": {\"duration\": 39.66, \"timestamps\": [[0, 5.35], [5.55, 24.99], [24.79, 39.66]], \"sentences\": [\"A bunch of kids are playing on the bumpers cars at an amusement park.\", \" The crash into each other over and over and seem to be a bit confused as to what to do.\", \" They have smiles on their faces as they continue to go around the track.\"]}, \"v_0jrThYemNLs\": {\"duration\": 64.0, \"timestamps\": [[0, 11.52], [11.52, 23.36], [23.68, 28.16], [28.48, 35.84], [35.84, 64]], \"sentences\": [\"A close up of a white fencing mask and a black fencing mask.\", \" A fencing coach gives instruction to the two fencing competitors.\", \" Two competitors discus fencing strategies.\", \" More fencing scenes while a girl and boy argue on the sideline.\", \" More competition with the fencing couch watching and critiquing.\"]}, \"v_CvVqbdk6owc\": {\"duration\": 70.52, \"timestamps\": [[0, 22.21], [22.21, 33.14], [33.14, 53.95], [53.95, 70.52]], \"sentences\": [\"A groip of dancers are on stage doing a routine for the audience.\", \" The car show shows the inside of some pretty neat cars with beautiful exteriors.\", \" Another group of dancers take turns break dancing on their heads.\", \" They go one by one and are circled by and audience watching around them.\"]}, \"v_a_n3mR1iVDI\": {\"duration\": 189.13, \"timestamps\": [[0, 77.54], [71.87, 189.13]], \"sentences\": [\"A man is seen hosting a news segment that leads into several shots of people shuffling pucks along the ice in slow motion.\", \" More shots are shown of people playing the game and ends with a 3d animation across the screen.\"]}, \"v_So3EfVyUP64\": {\"duration\": 63.88, \"timestamps\": [[0, 23], [25.23, 63.88]], \"sentences\": [\"A woman with short hair is seen talking to the camera then flipping a pair of paints inside out.\", \" She folds the pants neatly on an ironing board and begins ironing the paints thoroughly.\"]}, \"v_j9ww01sQkvY\": {\"duration\": 9.64, \"timestamps\": [[0, 9.64], [7.37, 8.1]], \"sentences\": [\"The camera focuses on a smiling man seated next to others.\", \" Another individual walks through the frame foreground and briefly obscures the first man.\"]}, \"v_t3UI2gjo8X8\": {\"duration\": 65.69, \"timestamps\": [[0, 2.63], [7.55, 20.04], [19.38, 22.01], [22.01, 25.62], [28.58, 41.06], [42.04, 60.76], [62.41, 65.69]], \"sentences\": [\"We see a man in the pool with a cap on.\", \" We see a man make a goal with a ball.\", \" We see another goal scored.\", \" We see another goal being scored.\", \" We see the man score a goal and swim off.\", \" We see the man outdoors swimming and make 3 goals.\", \" We see another score and the men playing in the water.\"]}, \"v_huv327wdIU8\": {\"duration\": 115.13, \"timestamps\": [[0, 17.27], [17.84, 32.81], [32.81, 115.13]], \"sentences\": [\"A group of boys are shown running down a gym holding hands and putting their hands into the air.\", \" A woman speaks to the boys while they drink some water and transitions into them playing a game and scoring a goal.\", \" The same shot is shown again in slow motion and several more shots of the boys playing are shown.\"]}, \"v_hIQ4Lmazo4g\": {\"duration\": 67.08, \"timestamps\": [[0, 10.73], [10.06, 20.46], [21.8, 48.3], [22.81, 25.49], [49.31, 62.39], [63.39, 67.08]], \"sentences\": [\"We see two little girls in coats playing in the sand.\", \" We pan left and see the ocean.\", \" We return to the girls.\", \" The wind blows he left girls hood on to her head.\", \" We pan left to see the ocean again.\", \" The left girl moves her hair out of her face as she talks to the camera.\"]}, \"v_EfJO4zg7bYE\": {\"duration\": 229.29, \"timestamps\": [[0, 53.88], [58.47, 182.28], [183.43, 229.29]], \"sentences\": [\"A man is standing beside a counter while holding a rag.\", \" He picks up a container of polish and talks about the surface of the counter.\", \" He rubs it down with polish and the two rags, then dusts it to a shine.\"]}, \"v_qBEdCDpoeTc\": {\"duration\": 145.36, \"timestamps\": [[0, 31.25], [31.98, 82.13], [82.13, 145.36]], \"sentences\": [\"A blue screen flashes with yellow writing with a title page and several paragraphs.\", \"A man then appears in a cage with a circle in it spinning in circles before he throws a shot put.\", \"The video replays and it stops as he makes the correct steps to throw the ball beginning with the shoulder and following through with the rest of the body.\"]}, \"v_91ozOcjKl5M\": {\"duration\": 186.78, \"timestamps\": [[21.48, 54.17], [64.44, 78.45], [82.18, 93.39], [96.19, 137.28], [139.15, 141.95], [148.49, 154.1], [160.63, 169.97]], \"sentences\": [\"Ingredients are shown on a sliver platter.\", \" A man begins chopping food on a black chopping board.\", \" He adds pasta to a large pot on the stove.\", \" He starts cooking in a pan on the stove.\", \" He covers the pan with a lid.\", \" He puts the pasta into a bowl.\", \" He pours the sauce on top of the pasta.\"]}, \"v_xOTW_-tiEjY\": {\"duration\": 171.97, \"timestamps\": [[0, 171.97], [89.42, 110.06], [165.95, 171.97]], \"sentences\": [\"A baby is sitting at a table eating a Popsicle.\", \" He takes a bite out of his Popsicle.\", \" He takes something out of his bib and puts it in his mouth.\"]}, \"v_b1uGF3c3Vz4\": {\"duration\": 71.45, \"timestamps\": [[0, 15.72], [15.72, 59.3], [59.3, 71.45]], \"sentences\": [\"A young woman is sitting in a chair playing with a cat.\", \"She then takes clothes pins,grabs the nape of the hair and clips the cats nails.\", \"After awhile,the cats tries to bite her hands,once the girl is done,she removes the pins and waves at the camera.\"]}, \"v_SkytxdoXLs4\": {\"duration\": 166.84, \"timestamps\": [[0, 91.76], [91.76, 166.84]], \"sentences\": [\"A group of kids are running between orange cones on a court.\", \" They are competing to see how quickly they can jump between them as the coach claps and cheers them on.\"]}, \"v_P2H4fTMMHNE\": {\"duration\": 90.28999999999999, \"timestamps\": [[0, 79.46], [23.93, 33.41], [23.93, 88.04], [49.21, 54.18], [84.88, 90.29]], \"sentences\": [\"A woman is ironing a brown shirt on an ironing board.\", \" She looks at the tag on the shirt.\", \" She continues ironing the shirt on the ironing board.\", \" She lifts the shirt up and puts it over the ironing board.\", \" She turns the shirt inside out and holds it up.\"]}, \"v_rS8T1dAdiCs\": {\"duration\": 155.92000000000002, \"timestamps\": [[0, 3.9], [3.9, 10.13], [10.91, 27.29], [27.29, 34.3], [34.3, 109.15], [111.48, 120.84], [120.84, 155.92]], \"sentences\": [\"A girl sits a table talking.\", \" We see an intro screen.\", \" The girl sits at the table and shows a gift bag.\", \" A cat runs across the table and jumps off.\", \" We see the girl puts gifts into a gift bag with tissue paper.\", \" The girl moves the cat off the table and onto the floor.\", \" The girl adds more tissue paper to the bag.\"]}, \"v_WhOsURGm0Kg\": {\"duration\": 16.3, \"timestamps\": [[0, 4.24], [4.97, 11.25], [11.25, 15.81]], \"sentences\": [\"Several cups are shown sitting on a table with a man standing behind.\", \" The man then throws the ball into a cup and cheers.\", \" He finally walks away from the camera.\"]}, \"v_36JC5C6I4sg\": {\"duration\": 187.69, \"timestamps\": [[0, 58.18], [60.06, 118.24], [119.18, 135.13], [135.13, 180.18]], \"sentences\": [\"People wash a car with water using a hose.\", \" A man stands on the side watching the men.\", \" Then, the men put soap on the car, after they rinse the car with water.\", \" A man gets inside the car.\"]}, \"v_4KzG9JBE9V8\": {\"duration\": 25.58, \"timestamps\": [[0, 23.79], [0, 25.58]], \"sentences\": [\"A kid rides an inner tube down a big snow hill.\", \" People stand and sit on the sides of the snow hill watching.\"]}, \"v_P4Z4sQNQtJM\": {\"duration\": 209.34, \"timestamps\": [[0, 18.84], [20.93, 117.23], [121.42, 209.34]], \"sentences\": [\"A woman is standing outdoors in a pink martial arts outfit.\", \" She moves slowly, showing various martial arts moves.\", \" She continues moving slowly as the names of the moves appear onscreen.\"]}, \"v_sjE-hHKFghc\": {\"duration\": 213.46, \"timestamps\": [[0, 50.16], [50.16, 172.9], [122.74, 210.26]], \"sentences\": [\"A woman is seen wearing roller blades and speaking to the camera.\", \" She then rides around on her blades while looking over to the camera and speaking.\", \" She continues demonstrating how to properly use the blades and moving around.\"]}, \"v_wAqQ-8OxhXY\": {\"duration\": 86.08, \"timestamps\": [[3.87, 45.62], [34.43, 85.22]], \"sentences\": [\"A close up of homes are shown with a person walking with a dog and then speaking to the camera.\", \" The man continues speaking as he leads the dog around the neighborhood.\"]}, \"v_dtEs78TCOZQ\": {\"duration\": 61.19, \"timestamps\": [[0, 41.91], [41.3, 48.34], [51.09, 61.19]], \"sentences\": [\"An older gentleman is brushing a brown horse.\", \" He turns around and talks to an older lady.\", \" The horse lifts its leg up.\"]}, \"v_DXOKFXlx84M\": {\"duration\": 5.27, \"timestamps\": [[0, 1.79], [1.61, 3.98], [3.35, 5.24]], \"sentences\": [\"A dog is seen laying comfortably in a large bowl with a man beside him.\", \" The man is seen kneeling down next to the dog and begins rubbing him down.\", \" The man continues to clean off the dog in the bath.\"]}, \"v_u6FTTLK6GUg\": {\"duration\": 35.99, \"timestamps\": [[0, 35.99], [9.18, 35.99]], \"sentences\": [\"People are playing dodge ball in a gym.\", \" They start throwing the balls at each other.\"]}, \"v_a0bj_vVpK9s\": {\"duration\": 50.16, \"timestamps\": [[0, 11.29], [14.8, 41.13], [46.39, 50.16]], \"sentences\": [\"A man pushes a tube down a hill.\", \" Another person sleds down the hill on a tube.\", \" A person in a red jacket is standing at the bottom.\"]}, \"v_9QnASEwOBT4\": {\"duration\": 99.06, \"timestamps\": [[0, 35.17], [34.17, 83.21], [83.21, 99.06]], \"sentences\": [\"A man is seen speaking to a woman as she puts on a belt and then walks on stage.\", \" The woman then bends down and lifts a large weight over her head, followed by throwing it down and walking off stage.\", \" Her same lift is shown again in slow motion.\"]}, \"v_j4EFi_NoEbQ\": {\"duration\": 82.28999999999999, \"timestamps\": [[0, 28.39], [28.39, 37.03], [37.03, 39.09], [39.5, 82.29]], \"sentences\": [\"boy is skateboarding in a skate park at night.\", \" boy is skateboarding in a sidewalk with peopl walking by.\", \" man is skateboarding in street and a car almost run over.\", \" scenes of men  skteboarding in a fences and falling off.\"]}, \"v_zUPadKgtYHw\": {\"duration\": 137.82999999999998, \"timestamps\": [[0, 34.46], [34.46, 137.83]], \"sentences\": [\"a lot of people are on a marathon running in street while people is on sides.\", \" different women and men are acrossing the finish.\"]}, \"v_Kbr2nr94EB0\": {\"duration\": 88.35, \"timestamps\": [[0, 26.95], [26.06, 88.35]], \"sentences\": [\"A man in a black shirt is talking on a basketball court.\", \" A boy is playing basketball on the court.\"]}, \"v_zSWuVb-aYAA\": {\"duration\": 164.35, \"timestamps\": [[0.82, 7.4], [9.04, 135.59], [15.61, 137.23], [24.65, 30.4], [30.4, 32.05], [32.87, 41.09], [43.55, 71.49], [71.49, 74.78], [78.89, 96.97], [132.3, 133.95], [139.7, 146.27], [147.09, 151.2], [160.24, 163.53]], \"sentences\": [\"The credits of the clip are shown.\", \" A lady performance on stage with a dog(s) .\", \" The dog fetches plates that the lady tosses.\", \" A second dog joins the act on stage.\", \" The dogs fetch plates together.\", \" A dog continuously jumps over another dog and into the lady's hand.\", \" A dog jumps through hula hoops.\", \" A dog jumps from the stage onto the lady's back.\", \" A dog bites on a red plate and does not let go.\", \" A dog jumps on a lady's elevated soles.\", \" The performers take a bow and with the dog exit the stage.\", \" The stage curtains are drawn.\", \" The credits of the video are shown.\"]}, \"v_09G6PvM5q9Y\": {\"duration\": 203.22, \"timestamps\": [[0, 203.22], [23.37, 49.79], [79.26, 108.72], [144.29, 203.22]], \"sentences\": [\"A woman stands behind a table with high heels on it.\", \" She starts wiping off the shoe.\", \" She uses a q-tip to clean the side of the shoe.\", \"  She sprays the shoe with Windex and wipes it off.\"]}, \"v_3oJ62-Ce9ys\": {\"duration\": 60.3, \"timestamps\": [[0, 22.61], [23.22, 60.3]], \"sentences\": [\"A hand is seen putting weights on a bar and leads into a person lifting weights on their shoulders and walking.\", \" The person sets the weights down and walks back with the weights lunging.\"]}, \"v_JI5_cMwgnxI\": {\"duration\": 144.45, \"timestamps\": [[29.61, 53.45], [53.45, 85.95], [85.95, 110.51], [110.51, 136.51], [136.51, 144.45]], \"sentences\": [\"A guy wearing a red plaid shirt is showing a tutorial on how to trim and prune trees in a garden.\", \" He is using a pair of garden shears to chop off the excessive leaves grown on the trees.\", \" He then demonstrates how to fertile the trees and shrubs by using some fertilizer balls.\", \" He then used a liquid fertilizer on the trees and plants to fortify them.\", \" He finally waters the trees and plants with a hose to complete the process.\"]}, \"v_pPsqB3tY7hk\": {\"duration\": 98.83, \"timestamps\": [[3.95, 48.42], [41.01, 65.22], [66.21, 92.9]], \"sentences\": [\"Various shots of landscapes are shown as well as people pushing a puck to play shuffleboard.\", \" More shots of the game are shown as well as text instructions on how to play.\", \" A man keeps score and leads into more shots of the game being played.\"]}, \"v_5MfhJjbNNJE\": {\"duration\": 48.9, \"timestamps\": [[0, 11.25], [11.74, 48.9]], \"sentences\": [\"A man is holding a jump rope and talking.\", \" He starts jump roping and doing tricks.\"]}, \"v_nSgBX7D4XLA\": {\"duration\": 72.01, \"timestamps\": [[0, 3.24], [3.24, 9.72], [12.96, 71.29]], \"sentences\": [\"A small group of men are seen standing on a boat with one pushing a shuffleboard.\", \" The men then begin playing shuffleboard with one another while taking turns.\", \" They continue playing on the side of the boat.\"]}, \"v_WgJy8seQ7z4\": {\"duration\": 56.45, \"timestamps\": [[0, 55.6], [25.12, 55.6], [56.17, 56.45]], \"sentences\": [\"Two men are arm wrestling on a table.\", \" Another man walks up to the table and stands in front of them.\", \" They finish arm wrestling and they start to stand up.\"]}, \"v_loYCYGQpGRw\": {\"duration\": 168.82999999999998, \"timestamps\": [[25.32, 109.74], [108.05, 117.34], [146.88, 168.83]], \"sentences\": [\"A woman is adding ingredients to a pan on the stove.\", \" She stirs the ingredients in the pan.\", \" She pulls a large pot of pasta and dumps it into the pan.\"]}, \"v_G4kjV4ulJzo\": {\"duration\": 54.1, \"timestamps\": [[0, 5.95], [6.76, 27.32], [27.86, 44.63], [44.91, 54.1]], \"sentences\": [\"A woman is walking down the street with two dogs.\", \" The larger dog is holding a leash in his mouth.\", \" The smaller dog is attached to the leash, and is essentially being led by the larger dog on the walk.\", \" A man walks in front, leading the way.\"]}, \"v_VmwvfQDR4YQ\": {\"duration\": 231.23, \"timestamps\": [[0, 231.23], [85.55, 86.71], [195.39, 198.85]], \"sentences\": [\"A man is doing flips on the grass.\", \" A man in a white hat is standing next to the man.\", \" One of the men throws a rock into the air.\"]}, \"v_kv8lsSjfguI\": {\"duration\": 120.51, \"timestamps\": [[0, 10.24], [10.85, 41.58], [41.58, 101.83], [101.83, 120.51]], \"sentences\": [\"Families are outside in a large field standing behind an orange make shift fence listening to a woman talk into a microphone.\", \"A male then comes along dressed in the same shrit as a woman and begins to throw Frisbees to a dog.\", \"This activity continues and the dog begins jumping over the dog's head and its back.\", \"Others then join in and the boy picks up the dog and walks away.\"]}, \"v_6KG4p_pfMQc\": {\"duration\": 12.26, \"timestamps\": [[0, 12.26], [3.31, 8.71], [8.71, 12.26]], \"sentences\": [\"man wearing a red shirt is standing in a large green field behind kids.\", \" little blonde kid throw a ball and a kid kicks the ball in the field.\", \" kisd are running in the field to catch th ball.\"]}, \"v_0rDb-zfhH0E\": {\"duration\": 201.09, \"timestamps\": [[0, 69.37], [11.06, 27.15], [19.1, 43.23], [45.24, 70.38], [73.4, 156.85], [156.85, 201.09]], \"sentences\": [\"A boy and girl in a karate uniform are playing in front of a camera.\", \" They talk about how they earned their karate uniforms and what they like about karate.\", \" The girl talks about her brother and more about karate.\", \" The girl plays effects on her brother.\", \" The girl does various karate moves for the camera.\", \" Then the brother does several different karate moves for the camera.\"]}, \"v_2duxXAsCW0k\": {\"duration\": 36.67, \"timestamps\": [[0, 17.42], [18.52, 29.7]], \"sentences\": [\"A man with an umbrella is wiping his car during the rain.\", \" He smiles at the camera and begins to talk to the camera person.\"]}, \"v_V2ltLccVh_Q\": {\"duration\": 52.22, \"timestamps\": [[0, 11.75], [11.49, 37.6], [36.29, 50.13]], \"sentences\": [\"Several shots are shown of paintball gear as well as a man smoking a cigarette.\", \" This leads into people playing paintball with one another and running around.\", \" More shots are shown of people playing and speaking to one another.\"]}, \"v_Vpue9WHrcAk\": {\"duration\": 90.26, \"timestamps\": [[4.06, 8.12], [9.03, 27.98], [28.43, 88.45]], \"sentences\": [\"A woman puts a cigarette in her mouth.\", \" Then, the woman lights a cigarette and smokes.\", \" The woman blows smoke from his mouth.\"]}, \"v_ZgVmS-AhYgA\": {\"duration\": 152.74, \"timestamps\": [[22.15, 25.2], [28.26, 112.26], [114.56, 120.67], [121.43, 130.59], [132.88, 140.52]], \"sentences\": [\"A group of rafters carries a raft down a path.\", \" Groups of rafters ride down a river going over small waterfalls.\", \" The rafters climb out from there boat onto the shore and walk up the path.\", \" People jump from rocks into a swimming hole of the river.\", \" The rafters enjoy an outdoor lunch at a beach house.\"]}, \"v_uLXSOqRSa4A\": {\"duration\": 226.74, \"timestamps\": [[0, 32.88], [36.28, 179.13], [183.66, 226.74]], \"sentences\": [\"A group of people are on a lift way above the mountains.\", \" A person climbs onto it, looking down.\", \" They bungee jump, hanging and swinging above the ground.\"]}, \"v_4dw_Hk9Wpc4\": {\"duration\": 98.15, \"timestamps\": [[0, 3.93], [4.91, 10.31], [10.31, 25.03], [26.01, 30.92], [31.41, 67.23], [67.23, 74.59], [74.59, 88.83], [89.81, 98.15]], \"sentences\": [\"A large school of small fish swim in the ocean.\", \" A seal swims in the ocean.\", \" The scene switches to a dog scuba diving with humans.\", \" The dog is shown with a human on a ship, with part of its scuba equipment on.\", \" The scene returns to the dog scuba diving.\", \" The scene changes to a cat walking around.\", \" The cat is shown swimming and scuba diving.\", \" The cat and dog are shown in various quick scenes together.\"]}, \"v_SKbjRXF35Wk\": {\"duration\": 172.13, \"timestamps\": [[0, 172.13], [6.89, 172.13], [86.93, 172.13]], \"sentences\": [\"Two people are dancing on a dance floor.\", \" People are sitting and standing on the sidelines watching them dance.\", \" They continue to dance on the dance floor.\"]}, \"v_m0u1kjhlHJ4\": {\"duration\": 140.32999999999998, \"timestamps\": [[0, 5.61], [7.72, 28.77], [32.98, 124.9], [127.7, 140.33]], \"sentences\": [\"A man puts a ball on the ground, then throws a flag.\", \" He hits the ball, setting a game into motion.\", \" The players fight over the ball, getting it into the goal and the audience cheers.\", \" The game continues as the players compete.\"]}, \"v_BshSmo_rRII\": {\"duration\": 43.47, \"timestamps\": [[0.65, 35.21], [15.65, 24.56]], \"sentences\": [\"A man watch through a window two bears copulate while brushing a shoe.\", \" A girl enters the room and see the bears, then she leaves the room.\"]}, \"v_ZYAY3TEUjGI\": {\"duration\": 178.03, \"timestamps\": [[0, 30.26], [30.26, 80.11], [80.11, 111.27], [111.27, 134.41], [133.52, 178.03]], \"sentences\": [\"A man is sitting in a chair getting his hair cut by a barber.\", \"A man takes a comb and a pair of scissors and starts to cut the hair above the comb and then combs it to the front of the man's head.\", \"The male then turns and the middle of the hair begins to get trimmed.\", \"Next is the sides and the same actions are repeated until the hair is finished.\", \"Finally,razors are taken out and the barber begins to edge the man's hair and the barber goes over the hair one final time with the comb and scissors.\"]}, \"v_OTwG3OCsPoY\": {\"duration\": 102.19, \"timestamps\": [[0, 24.53], [24.53, 73.07], [64.38, 99.13]], \"sentences\": [\"A man is see speaking to the camera while sitting on a piece of exercise equipment.\", \" He adjusts the settings on the machine and begins using it back and fourth.\", \" He grabs onto the machine and moves himself ending by speaking to the camera.\"]}, \"v_YbEX3klOS3Q\": {\"duration\": 68.99, \"timestamps\": [[0, 5.86], [7.24, 25.87], [27.25, 60.36], [61.05, 68.99]], \"sentences\": [\"A male athlete prepares himself to run.\", \" He runs with a javelin over his shoulder.\", \" He throws it as hard as he can.\", \" Then others do the same shortly after.\"]}, \"v_dygVFom6V5c\": {\"duration\": 201.94, \"timestamps\": [[0, 21.2], [26.25, 78.76], [84.82, 201.94]], \"sentences\": [\"Two women are riding on the back of a four wheeler, and waving.\", \" A man is shown posing with several people, going to a field to play paintball.\", \" The people gear up and hide behind obstacles, shooting at one another.\"]}, \"v_ui_CNb4FUtQ\": {\"duration\": 238.42000000000002, \"timestamps\": [[8.34, 46.49], [46.49, 63.18], [51.26, 85.83], [63.18, 85.83], [87.02, 230.08]], \"sentences\": [\"A man plays the saxophone in various public settings while the audiences watch.\", \" The man plays while laying on the ground.\", \" A security guard accosts him and escorts him away.\", \" The man stands up and walks away while playing.\", \" More scenes of the man playing the saxophone in various public settings are shown.\"]}, \"v_xpoIzpip_TQ\": {\"duration\": 79.46000000000001, \"timestamps\": [[0.79, 78.27], [30.59, 32.18], [64.76, 79.46]], \"sentences\": [\"Players are on a court playing volley ball.\", \" A man in a black shirt dives and hits the ground.\", \" Someone scores and the crowd celebrates.\"]}, \"v_HJZj6z1dyT4\": {\"duration\": 55.96, \"timestamps\": [[1.96, 22.94], [20.99, 45.05], [38.89, 55.4]], \"sentences\": [\"A close up of a fooseball table is shown with people moving polls all around.\", \" The man bounces up and down as the people continue to play with one another.\", \" One man runs away to grab the ball and leads back into them playing.\"]}, \"v_V66cwBOS80A\": {\"duration\": 174.06, \"timestamps\": [[0, 56.57], [47.87, 120.1], [113.14, 167.97]], \"sentences\": [\"A man is seen speaking to the camera while a large group of people walk behind him.\", \" Several shots are then shown of people riding down a riving in a raft while some fall out.\", \" More clips are shown of people riding in the water as well as falling out and yelling to the camera.\"]}, \"v_LDSEEw5oUM4\": {\"duration\": 155.09, \"timestamps\": [[0, 15.51], [16.28, 103.91], [103.91, 155.09]], \"sentences\": [\"A woman is seen walking onto a large gym floor while holding a baton and striking a pose.\", \" The woman then performs a dance routine with the baton throwing it up into the air and spinning around.\", \" She continues spinning around and holds a pose in the end and walks away from the judges.\"]}, \"v_L0arB1mOuSE\": {\"duration\": 91.14, \"timestamps\": [[0.46, 29.62], [19.59, 89.77]], \"sentences\": [\"Several clips of shown of people playing kickball against one another in a large field.\", \" Several clips are shown of people running around, catching and throwing the ball, as well as partying on the side.\"]}, \"v_MAUZbZnbM_Y\": {\"duration\": 59.05, \"timestamps\": [[0, 15.06], [15.06, 20.67], [20.08, 29.52], [28.34, 39.27], [38.68, 45.76], [45.47, 59.05]], \"sentences\": [\"web page and the adress of the company.\", \" green signs on a pole.\", \" woman is talking on the phone inside a car store.\", \" man is polishing a black car while people is watching.\", \" two men are cleaning the car on the outside and the inside.\", \" three cars are parked in front of the store.\"]}, \"v__fwExctFJpg\": {\"duration\": 55.17, \"timestamps\": [[0, 26.76], [24.28, 44.69], [44.41, 55.17]], \"sentences\": [\"A person is seen riding around on a horse holding a piece of rope in his hands moving back and fourth.\", \" The man backs the horse up a bit and then takes off chasing a calf and roping him and tying him down.\", \" He throws his hands up in the air while the calf moves and then climbs back on top of the horse.\"]}, \"v_xQxT2_meU50\": {\"duration\": 2.56, \"timestamps\": [[0, 0.34], [0.28, 0.77], [0.8, 1.62], [1.55, 2.56]], \"sentences\": [\"A man is standing in a field holding an ax.\", \" The man lifts the ax above his head.\", \" The man splits a log of wood on a stump.\", \" the man then stands upright.\"]}, \"v_POhazPPwHhQ\": {\"duration\": 154.89, \"timestamps\": [[2.32, 65.05], [37.95, 125.46], [90.61, 150.24]], \"sentences\": [\"A car is seen driving along the road that leads into people tightening roads and grabbing drinks.\", \" Several clips are shown of people walking across the rope as well as bouncing on it.\", \"More close ups are shown of peoples faces as well as standing an bouncing on the rope.\"]}, \"v_j3h8Di7V3nk\": {\"duration\": 54.22, \"timestamps\": [[0, 24.67], [25.48, 54.22]], \"sentences\": [\"A man is seen bending over while taking a shoe off to wipe his feet then puts the shoe back on.\", \" He does this to his other foot and then walks along the rocks while a man records him and others walk around.\"]}, \"v_J3NhT51f0To\": {\"duration\": 193.26, \"timestamps\": [[0, 53.15], [53.15, 139.15], [139.15, 153.64], [153.64, 192.29], [192.29, 193.26]], \"sentences\": [\"A blond girl is in a residential home, smiling and talking while holding a violin in front of her.\", \"The girl briefly stops talking, and then backs up and brings the violin to her chin as she's talking and then starts playing by pulling the fiddle across the strings.\", \"The girl stops pulling the fiddle across the strings and walks closer to the camera to talk, and then resumes moving the fiddle across the strings.\", \" The girl then backs up, and turns to show her left side as she moves the fiddle across the violin strings, and then she moves to face forward again and walks closer to the camera and plays some more.\", \"The girl stops playing and pulls he violin away from her chin.\"]}, \"v_F2yh5HfIj2c\": {\"duration\": 140.89, \"timestamps\": [[0, 4.93], [5.64, 31], [31.7, 32.4], [33.11, 35.93], [37.34, 126.8], [126.1, 127.5], [128.91, 140.89]], \"sentences\": [\"A man wearing scuba gear walks along the edge of a swimming pool.\", \" The man starts talking to the camera and shows the camera various items.\", \" The camera shows the swimming pool.\", \" A tool and air compressor is shown.\", \" The man enters the swimming pool and proceeds to place a cover on the drain while under water in the scuba gear.\", \" The man gives a thumbs up.\", \" The man shows the bubbles the tool makes underwater while bobbing his head.\"]}, \"v_GyLX64aJY80\": {\"duration\": 192.26, \"timestamps\": [[0, 49.99], [49.03, 97.09], [97.09, 144.2], [145.16, 192.26]], \"sentences\": [\"Two slicess of bread,a plate,and two slices of cheese are on the counter.\", \"The person then takes one slice,spreads the butter over it and puts two slices of cheese on it and adds the other slice on top of it.\", \"The sandwich now has butter on both sides and the sandwich is placed in a skillet and is fried.\", \"Once complete,it is placed on a red plate and cut in half with a thick knife.\"]}, \"v_3C00m8lkJi0\": {\"duration\": 54.24, \"timestamps\": [[0, 8.14], [8.41, 34.99], [34.17, 54.24]], \"sentences\": [\"A man is shown holding a large bin as well as several people around him gathering leaves.\", \" More people are shown walking around scraping leaves while a woman speaks to the crowd and inspires them to work more.\", \" The people continue working and the sun shines down on a tree.\"]}, \"v_Ht2gV7oaqbo\": {\"duration\": 5.48, \"timestamps\": [[0, 1.07], [1.07, 3.51], [3.53, 5.34]], \"sentences\": [\"Two people are seen standing outside on a mat.\", \" One person then grabs the other person by the legs.\", \" The men then flip each other down on the ground.\"]}, \"v_mJZj3znhBas\": {\"duration\": 73.48, \"timestamps\": [[0, 9.92], [9.55, 10.29], [43.72, 44.46], [43.72, 73.48]], \"sentences\": [\"People are playing a game of lacrosse onto a field.\", \" A woman is talking to the camera in a gym.\", \" A train is driving on the tracks.\", \" They continue to play lacrosse on a field.\"]}, \"v_rPeQxKmIe4I\": {\"duration\": 34.25, \"timestamps\": [[0, 21.06], [19.35, 28.94], [25.52, 34.25]], \"sentences\": [\"The person is swimming under the sea.\", \" The woman is swimming forward, she looked at the camera.\", \" The woman is shaking her head while behind her another diver is swimming.\"]}, \"v_O-6zE9_S2KM\": {\"duration\": 16.6, \"timestamps\": [[0, 2.16], [3.15, 13.7], [13.86, 16.6]], \"sentences\": [\"A pair of hands are shown at a black jack table.\", \" A woman is dealing the cards and chips.\", \" The chips are shown in a stack at the end.\"]}, \"v_-2DajzzRwn0\": {\"duration\": 191.15, \"timestamps\": [[2.87, 98.44], [106.09, 188.28]], \"sentences\": [\"Several teams of people are seen playing a game of tug of war with one another with people watching on the sides.\", \" The people continue competing with one another and ends with one team winning.\"]}, \"v_boQbuyDjWnc\": {\"duration\": 207.3, \"timestamps\": [[2.07, 33.17], [30.06, 207.3]], \"sentences\": [\"An old man in black shirt and eye glasses is sitting on a green table, in front of him are book, chips with different colors and stack of cards.\", \" He placed the cards on the table, on top of the yellow stars on the table, he arrange the cards in horizontal way.\"]}, \"v_hYVFzI_kfaQ\": {\"duration\": 140.02, \"timestamps\": [[32.9, 70.01], [65.11, 87.51], [107.11, 123.92]], \"sentences\": [\"The woman is shown emptying two different foods onto the plate to make a fruit salad.\", \" She touches the strawberries and apples.\", \" Then she sprinkles little berries onto the other fruit.\"]}, \"v_mZYqH82delk\": {\"duration\": 53.57, \"timestamps\": [[3.48, 46.87], [11.25, 38.84]], \"sentences\": [\"There is a man kneeling down on a red yoga mat.\", \" The coach standing next to him make sure he is going up and down while he's kneeling and he holds his back to feel the muscle movement.\"]}, \"v_Nogr8GCIL9k\": {\"duration\": 118.38, \"timestamps\": [[0, 117.78], [28.41, 73.39], [34.33, 62.74], [117.78, 118.38]], \"sentences\": [\"A guy stands outside, gestures, and talks.\", \" A man ascends from the water, begins water boarding, and does flips.\", \" A water vehicle is pulling a man holding a rope.\", \" The guy begins to leave after making the last point.\"]}, \"v_DFOoFr2H-24\": {\"duration\": 66.69, \"timestamps\": [[0, 12.34], [12.34, 44.01], [44.35, 65.69]], \"sentences\": [\"A man is seen playing an instrument while another watches in the background.\", \" He pauses to speak to a large group of boys and continues playing the instrument, blowing wind into their smoke.\", \" The boys watch in amazement and bends down closely to another boy.\"]}, \"v_rP2MviNn52g\": {\"duration\": 49.06, \"timestamps\": [[0, 37.53], [7.6, 11.78], [28.46, 37.53], [37.78, 42.69]], \"sentences\": [\"People are playing a tag of war game.\", \" Children wave at their teammates.\", \" The children pull the adults to their side, the right side.\", \" The children let go the rope, jump up and down, plus cheer.\"]}, \"v_lxNV7FI-LQQ\": {\"duration\": 146.26, \"timestamps\": [[0, 19.75], [19.75, 146.26], [71.67, 146.26]], \"sentences\": [\"A shot of a sunset leads into a large group of people riding camels along the beach.\", \" Many people are seen riding the camels one after another on the sand.\", \" The video continues on showing more people riding the camels and others leading in the front.\"]}, \"v_6QhZNQlsGys\": {\"duration\": 85.51, \"timestamps\": [[0, 85.51], [41.47, 42.33], [77.81, 85.51]], \"sentences\": [\"People are balancing on a rope on the beach.\", \" A man in a white shirt does a hand stand on the rope.\", \" A person is swinging on a rope in the background.\"]}, \"v_F99Suh6SvD8\": {\"duration\": 126.97, \"timestamps\": [[0, 125.7], [0.63, 119.35], [119.98, 125.7]], \"sentences\": [\"Two girls practice fencing in a school gym with protective gear on and a coach against the wall watching and coaching them as they fence.\", \"  The two girls talk to the coach and then begin to fence with each other as the coach motions to where they should stand and navigate the space during the spar.\", \"  Both girls end the spar and remove their head gear as they talk to the coach.\"]}, \"v_LSvjzZHbetU\": {\"duration\": 195.86, \"timestamps\": [[39.17, 40.15], [47.99, 96.95], [61.7, 70.51], [101.85, 110.66], [130.25, 156.69]], \"sentences\": [\"A woman in a green sweater puts on a face mask.\", \" She paints a wooden fence.\", \" She puts news paper onto the fence.\", \" She pours a bucket of paint into a sprayer.\", \" She starts spraying the fence with a hose.\"]}, \"v_PGNwd5bySwI\": {\"duration\": 94.46000000000001, \"timestamps\": [[11.81, 18.42], [19.36, 57.15], [57.15, 81.23]], \"sentences\": [\"Two men are talking in front of a helicopter.\", \" A man on a wake board is being pulled by a helicopter in and out of the water.\", \" He drops from the rope and pulls a parachute and lands on the ground.\"]}, \"v_aq41GgfAlDo\": {\"duration\": 53.06, \"timestamps\": [[0, 9.55], [11.41, 35.02], [37.41, 53.06]], \"sentences\": [\"A man is seated on a bench in a park.\", \" He is playing an old accordian.\", \" He pushes it closed and open as he plays on the keyboard.\"]}, \"v_rF1AqlLjECk\": {\"duration\": 182.14, \"timestamps\": [[0, 10.93], [10.93, 167.57], [167.57, 182.14]], \"sentences\": [\"A black screen appears and it has a lot of white words on it that include the name, height, weight, years games, points phone number and email for player #23.\", \"Various clips of different hockey games play and occassionaly a yellow arrow will appear pointing out the #23 player in each different hockey game clip.\", \"A black screen appears again and it's the same as the screen that was the intro that includes the same information on player #23.\"]}, \"v_53dqgEMV5e4\": {\"duration\": 60.47, \"timestamps\": [[3.93, 7.26], [9.67, 35.37], [33.86, 50.19], [51.7, 60.47]], \"sentences\": [\"A woman pours ice into a glass.\", \" She puts shots of alcohol into the glass.\", \" She shakes it and pours it into another glass.\", \" She puts a straw in it and holds it up.\"]}, \"v_I8m878YGmU8\": {\"duration\": 192.7, \"timestamps\": [[0, 81.9], [92.5, 192.7]], \"sentences\": [\"The video leads into several shots of olympic runners completing long jumps into pits of sand.\", \" The video continues on showing several different runners completing their jumps and them cheering to the crowd afterwards.\"]}, \"v_LAD4qVnywmA\": {\"duration\": 130.57, \"timestamps\": [[28.07, 37.86], [40.48, 72.46], [83.56, 91.4]], \"sentences\": [\"A man in a red shirt is clapping his hands.\", \" He runs down a track and jumps in the sand.\", \" People rake the sand out afterwards.\"]}, \"v_WlFBWlCklm8\": {\"duration\": 161.66, \"timestamps\": [[0, 4.04], [4.04, 147.92], [147.92, 160.04], [160.04, 161.66]], \"sentences\": [\"An intro black screen appears and the word Poweriser flashes.\", \" A man named PRVNI KROKY is on metal stilts outside and he begins, walking, jumping, running and moving and doing various movements while on his stilts and people around him are either sitting or walking doing their own thing.\", \"When the man is done demonstrating what he can do on the stilts he stops in his original spot to talk some more, waves and then runs off.\", \" The outro appears and it's exactly like the intro.\"]}, \"v_Ksbk5rtqVd0\": {\"duration\": 89.28, \"timestamps\": [[10.27, 84.82], [44.19, 47.77], [49.55, 83.03]], \"sentences\": [\"A woman in a white shirt is sitting down.\", \" She pours some product into her palm.\", \" She starts wiping the product onto her face.\"]}, \"v_0PbmXOVIwGc\": {\"duration\": 120.84, \"timestamps\": [[0, 50.15], [50.15, 120.84]], \"sentences\": [\"A woman grooms the right body of a horse, she brush the neck,body and legs.\", \" Then, the woman goes to the left side of horse and kneel to groom the legs, and then she brush the other parts of the body.\"]}, \"v_LoA7h0bZmDI\": {\"duration\": 188.5, \"timestamps\": [[0, 32.05], [32.05, 51.84], [51.84, 121.58], [121.58, 188.5]], \"sentences\": [\"A chef is giving detailed instructions on how to make a dish to another man in the kitchen.\", \" The man walks around him casually and picks up a piece of one of the ingredients and eats it.\", \" Meanwhile, the chef is putting ingredients and explaining the process of what he is doing and why into the pan.\", \" Once the sauce he is creating starts to come together he mixes in spaghetti and blends it all together.\"]}, \"v_llcbN-s26vs\": {\"duration\": 30.65, \"timestamps\": [[0, 1.84], [1.84, 5.82], [5.82, 8.74], [8.74, 14.41], [14.41, 16.55], [16.86, 26.21], [26.21, 30.65]], \"sentences\": [\"A man in a red shirt walks around a ladder.\", \" He places his arm on the ladder.\", \" A woman places red wallpaper up against a wall.\", \" She smooths the red wall paper out with her hands and with a tool.\", \" She measures the wallpaper to make sure it's straight.\", \" The woman places a tool on the top and bottom of the wallpaper and removes any extra wallpaper.\", \" The man in the red shirt is talking.\"]}, \"v_sCzauf2u4dc\": {\"duration\": 116.53999999999999, \"timestamps\": [[0, 4.08], [4.08, 12.82], [13.4, 92.65], [33.8, 40.79], [53.61, 61.77], [69.34, 72.84], [93.23, 108.97], [110.13, 116.54]], \"sentences\": [\"We see the emblem on the opening screen.\", \" We switch to images of two ladies with horses.\", \" We see one lady in a sunny field with a hose.\", \" We see a small dog on the back of the horse.\", \" We see the small dog, then two ladies and the small dog.\", \" The lady is sitting playing with the dog.\", \" We see a bunch of people in a stable with a horse.\", \" We see the end credit emblem.\"]}, \"v_fdYyIOWkycU\": {\"duration\": 24.57, \"timestamps\": [[0, 12.41], [8.97, 23.58]], \"sentences\": [\"A man is seen standing ready holding a dart and looking off into the distance.\", \" The man then throws the dart in slow motion while the camera continues to follow him.\"]}, \"v_I-C_fOUaknA\": {\"duration\": 18.95, \"timestamps\": [[0, 9], [9, 14.31], [16.3, 18.1]], \"sentences\": [\"A man places a tile onto the floor and pushes it down.\", \" He smooths it out with his hands.\", \" He moves the vent that is on the floor next to the tile.\"]}, \"v_O7SljQqahy8\": {\"duration\": 37.11, \"timestamps\": [[0, 6.68], [6.68, 37.11], [23.19, 25.6]], \"sentences\": [\"A person pours vinegar in a sink on a towel.\", \" The person then uses the towel to rub the surface of the sink.\", \" The person drops the towel and picks it up.\"]}, \"v_X095EDl0-eU\": {\"duration\": 59.86, \"timestamps\": [[0, 53.88], [11.67, 13.17], [22.75, 26.64], [34.42, 35.92], [54.47, 59.86]], \"sentences\": [\"We see two men fencing in a stadium.\", \" A man throws his arms in the air.\", \" The left man falls to the ground.\", \" The left man throws his hand in the air.\", \" We see the ending title screen.\"]}, \"v_eFZufRRvIz4\": {\"duration\": 90.19, \"timestamps\": [[0, 9.47], [13.08, 50.5], [52.31, 90.19]], \"sentences\": [\"A woman is dancing and mopping in the kitchen.\", \" Another woman is recording her and laughing.\", \" The woman notices the camera and laughs, but continues dancing.\"]}, \"v_5P-Xs2v6lis\": {\"duration\": 217.85, \"timestamps\": [[0, 205.87], [58.82, 100.21], [101.3, 111.1], [122, 125.26]], \"sentences\": [\"A technician walks along a roof and sprays it using a wand attached to a hose.\", \" The man turns off his hose then walks along the peak of the roof.\", \" The man sprays around the gutters with the wand.\", \" The water comes out of the gutter onto the cement below.\"]}, \"v_DcoHV4WiHQk\": {\"duration\": 17.14, \"timestamps\": [[0, 4.46], [4.11, 12], [11.4, 17.05]], \"sentences\": [\"A woman is seen sitting on sand next to a girl.\", \" The woman looks away from the camera and looks down at the sand.\", \" The girl and woman then begin digging in the sand.\"]}, \"v_8DZj0ggPr74\": {\"duration\": 36.11, \"timestamps\": [[0, 11.74], [9.57, 27.08], [22.57, 35.57]], \"sentences\": [\"A large group of players are lined up and seen speaking to one another.\", \" They then move out onto the ice and begin skating around.\", \" One man fist bumps another and ends by walking away.\"]}, \"v_9J72KkOrAq4\": {\"duration\": 7.06, \"timestamps\": [[0, 3.18], [2.82, 7.06]], \"sentences\": [\"A person is seen running down a deck pushing a puck with a stick.\", \" She looks back and laughs to the camera while other people watch on the side.\"]}, \"v_NMBu3DIn1eg\": {\"duration\": 202.29, \"timestamps\": [[0, 6.07], [6.07, 31.36], [13.15, 17.19], [34.39, 91.03], [71.81, 91.03], [92.04, 111.26], [111.26, 126.43], [126.43, 146.66], [146.66, 156.78], [155.77, 183.08], [184.09, 202.29]], \"sentences\": [\"A black dog is shown looking into the camera.\", \" A balding man appears who is standing next to a chair that seems to be in need of restoring.\", \" The chair is shown to have scratches.\", \" The man begins to apply a substance to the chair as the man rubs the substance all over the surfaces of the chair.\", \" The man then points at a scratch on the a part of the chair and begins to wipe it clean with the substance.\", \" The man then shows a leg of the chair and wipes it down as well.\", \" The man then seems to pour a substance into a can and dips the brush into it and polishes part of the leg.\", \" The man continues to wipe the chair as it is getting cleaner and cleaner.\", \" The man returns later after the chair dries with a yellow bottle and is now wearing a hat and glasses.\", \" The man begins to wipe the chair again using whatever was in the yellow bottle.\", \" After this is complete the cushion is put back onto the chair as it is wiped down one more time.\"]}, \"v_fPbVku8Ssyw\": {\"duration\": 7.06, \"timestamps\": [[0, 2.72], [2.72, 6.92]], \"sentences\": [\"People make a hole on the shore of the beach using shovels.\", \" Then, people make a wall around the hole.\"]}, \"v_BJuL-yK-I8g\": {\"duration\": 105.87, \"timestamps\": [[0, 12.18], [13.76, 74.64], [75.7, 105.87]], \"sentences\": [\"A man is talking while standing in front of a large river.\", \" A group of wild pigs are swimming behind the boat, trying to keep up.\", \" The man gets to shore, and he and a boat mate are running on the beach, trying to escape the pigs.\"]}, \"v_x_luDzL03vw\": {\"duration\": 229.73, \"timestamps\": [[0, 8.04], [8.04, 229.73], [20.68, 26.42], [37.91, 42.5], [62.03, 66.62], [89.59, 94.19], [110.27, 114.86], [143.58, 149.32], [151.62, 156.22], [195.27, 204.46], [222.84, 225.13]], \"sentences\": [\"We see a dark opening screen.\", \" We then see two men practicing martial arts.\", \" The old man pushed the young to the ground.\", \" The older man flips the young one over.\", \" The old man pushes him forward.\", \" The young grabs the older head, and older pushes him down.\", \" Man in green is pushed across mat.\", \" Old man flip man in green.\", \" The Man in white is flipped.\", \" Older man pushes green man to ground.\", \" Older man rolls man in green.\"]}, \"v_p2C4MeV02GU\": {\"duration\": 232.85, \"timestamps\": [[0, 82.66], [83.83, 232.85]], \"sentences\": [\"woman is talking to the camera holding a big cat on her legs that is sitting in a cat cushion and its caressing his head.\", \" woman is holding a nail clipper and cut the cat's nails explaining the right way to do it.\"]}, \"v_0T1FKHx3yOk\": {\"duration\": 237.49, \"timestamps\": [[0, 15.44], [16.62, 225.62], [53.44, 74.81], [78.37, 90.25], [109.25, 140.12], [154.37, 167.43], [199.49, 224.43], [226.81, 237.49]], \"sentences\": [\"Two boys sits talking as they hold their cell phones.\", \" The boys are wrestling in Sumo costumes as two other boys films them with camera.\", \" One boy get and hits the other with a ladder and they hit each other.\", \" The boy in red grabs and hits the green boy on the ladder with a guitar.\", \" The red boy brings  an ironing board and jumps on the other boy from the ladder.\", \" The green boy runs into the other boy with a minibike.\", \" A girl in a sum suit in thrown from a  wheel barrow and the referee counts the match as finished.\", \" We see the ending title screen.\"]}, \"v__-4ngMPCA9A\": {\"duration\": 154.25, \"timestamps\": [[0, 154.25], [15.43, 154.25]], \"sentences\": [\"A woman stands in a kitchen talking.\", \" She walks over to a sink, puts on gloves and washes dishes.\"]}, \"v_pp_J6AzUu4s\": {\"duration\": 216.62, \"timestamps\": [[0, 216.62], [13, 49.82], [56.32, 114.81], [114.81, 147.3], [147.3, 153.8], [162.46, 204.7]], \"sentences\": [\"A woman is standing in a kitchen.\", \" She puts ingredients into a glass bowl and mixes it together.\", \" She starts chopping food on a block.\", \" She combines all the ingredients into the bowl and mixes it together.\", \" She grates cheese onto the top of the food.\", \" She then puts salad on top of that.\"]}, \"v_rR1R-x_UlOM\": {\"duration\": 80.2, \"timestamps\": [[0.4, 69.78], [0.4, 51.73], [52.93, 69.78]], \"sentences\": [\"A woman demonstrates from behind a standing bar counter inside of a bar, how to mix drinks using a shot glass and several bottles of alcohol.\", \"  A woman standing behind a bar talks to the camera and pours a bottle of alcohol into a shot glass along with another bottle of alcohol.\", \"  The woman then pulls a larger bottle of alcohol off of the bar top and pours that into the shot glass as well,  The woman then pushes the shot glass forward toward the camera before the scene fades to black.\"]}, \"v_CUtkQIV2eto\": {\"duration\": 206.88, \"timestamps\": [[0, 79.65], [79.65, 154.13], [154.13, 204.81], [204.81, 206.88]], \"sentences\": [\"A person water ski in the water holding a rope attached to a boat in the river.\", \" The person pass on front a boat in the river while waterskiing.\", \" Then, the person gives a thumb up while performing waterskii, after the person continues waterskiing.\", \" Then, the surfboard floats on front a metal structure.\"]}, \"v_UIrn2ziRgEM\": {\"duration\": 170.81, \"timestamps\": [[0, 2.56], [2.56, 6.83], [7.69, 10.25], [10.25, 19.64], [19.64, 21.35], [21.35, 170.81]], \"sentences\": [\"a woman lights a cigarette in front of the camera.\", \" She takes a big pull off the cigarette.\", \" She blows smoke at the camera and smiles.\", \" She takes another pull of the cigarette and blows smoke out.\", \" She plays with her hair.\", \" Then she continues to smoke the cigarette while looking around.\"]}, \"v_Kd3YFwF-2UM\": {\"duration\": 213.46, \"timestamps\": [[4.27, 148.36], [76.85, 207.06]], \"sentences\": [\"Several clips are shown of people throwing bowling balls down a lane as well as close ups of balls and pins.\", \" People continue bowling and the machine shows how the pins spin around and the balls returning to the back.\"]}, \"v_03KTIy44yTo\": {\"duration\": 96.43, \"timestamps\": [[0, 6.75], [6.75, 96.43], [0, 96.43]], \"sentences\": [\"A bunch of brown leaves on green grass are blowing away together.\", \" The end of the leaf blower is closer to the grass and is blowing an even bigger area of brown leaves.\", \" The end of the leaf blower appears and disappears from view the whole time.\"]}, \"v_zb2YYXs4gtw\": {\"duration\": 206.26, \"timestamps\": [[0, 29.91], [52.6, 158.82], [92.82, 100.04], [158.82, 202.14]], \"sentences\": [\"People are riding on the backs of camels.\", \" They get led down a trail by a person.\", \" People are standing behind a fence watching them.\", \" The camels lay down on the ground and the people step off of them.\"]}, \"v_mfK2jcMGe1Y\": {\"duration\": 95.92, \"timestamps\": [[0, 16.31], [16.31, 35.49], [35.01, 62.83], [62.83, 95.92]], \"sentences\": [\"A girl in a bra is standing in her bathroom and brushing her hair.\", \" She does this for a while and continues to fix it.\", \" She then brushes it some more as it is very long.\", \" She turns around to get the back of it.\"]}, \"v_5BYayNkmlBo\": {\"duration\": 29.98, \"timestamps\": [[0, 10.04], [10.64, 22.63], [22.18, 29.98]], \"sentences\": [\"A man is inside of a barn and is let out on a horse to catch a cow attached to the horse.\", \"As he throws his lasso,he misses the cow and runs to get something before going back to the cow.\", \"The man finally approaches the calf and another man comes out to assist him and he returns back to the horse.\"]}, \"v_6LrY7uMj8Kg\": {\"duration\": 155.95, \"timestamps\": [[0, 18.71], [14.81, 70.18], [35.87, 155.95]], \"sentences\": [\"Three men sitting by the counter are sitting watching TV and then ladies in cheerdancing outfit started dancing as the men stare at them.\", \" The ladies started dancing, raising their arms up swinging their bodies.\", \" The girls play billiards and table football with the guys and they dance.\"]}, \"v_DACWnbWrd18\": {\"duration\": 74.14, \"timestamps\": [[0, 7.04], [11.12, 38.55], [44.49, 74.14]], \"sentences\": [\"A large patch of grass is shown.\", \" A man is mowing the yard next to the bushes.\", \" He stops and talks to the camera.\"]}, \"v_D707ZMWH7jQ\": {\"duration\": 200.34, \"timestamps\": [[0, 38.06], [38.06, 96.16], [96.16, 156.27], [156.27, 200.34]], \"sentences\": [\"A man in a red shirt begins talking in front of a wall of tool consisting of wrench,screws,ax and drills.\", \"He then holds up a small silver piece and begins sticking it into the chain of the bike.\", \"Next,he takes a black utensil,moves the pedals around and takes the chain completely off.\", \"He then takes a box with a new chain in it and puts it back on the bike and begins tightening the chain.\"]}, \"v_y9xNMLhgTjY\": {\"duration\": 166.02, \"timestamps\": [[0, 39.85], [39.02, 143.61], [142.78, 166.02]], \"sentences\": [\"Several people riding skateboard are seen riding down a long hill while the camera follows them from behind.\", \" The cameraman continuously rides down a winding road past a group of trees and stops at the bottom to meet up with another.\", \" More riding is shown down the hill and ends with the camerman turning around.\"]}, \"v_pvpfRBndHh8\": {\"duration\": 8.73, \"timestamps\": [[0, 0.39], [0.52, 2.36], [2.49, 8.73]], \"sentences\": [\"A lady in a gym punches both of her arms across her chest.\", \" The lady then kicks her left leg in the air and then the right one behind her.\", \" The lady repeats that sequence over and over.\"]}, \"v_h15m87WsCHQ\": {\"duration\": 137.51, \"timestamps\": [[0, 137.51], [2.06, 137.51], [101.76, 104.51], [125.13, 137.51]], \"sentences\": [\"Hockey players are playing a hockey game on the ice.\", \" A crowd is watching them play.\", \" A man in yellow falls on the ice.\", \" A man in a suit is talking to hockey players.\"]}, \"v_dkP1In7K63Y\": {\"duration\": 174.03, \"timestamps\": [[0, 12.18], [13.05, 18.27], [20.01, 61.78], [60.04, 119.21], [119.21, 125.3], [127.91, 174.03]], \"sentences\": [\"We see an opening title screen.\", \" A man is spraying a sink with a pressure washer.\", \" The man sprays a toilet and then sprays the sink again.\", \" We see a title screen the man shows the machine and turns a dial and washer the floor, sink and toilet and mirror.\", \" The man uses a squeegee on the mirror.\", \" The man adjusts the machine and hooks up a hose and uses air to blow dry the sink and mops the floor.\"]}, \"v_lcOepzWnOO4\": {\"duration\": 180.53, \"timestamps\": [[0, 20.76], [23.47, 180.53]], \"sentences\": [\"A couple and a child are in a living room.\", \" The couple begin dancing in the middle of the room, spinning and twirling.\"]}, \"v_ZIFxB0gZ5tY\": {\"duration\": 83.08, \"timestamps\": [[0, 23.26], [23.26, 35.72], [58.16, 66.05], [66.88, 83.08]], \"sentences\": [\"We see a man swinging in a park.\", \" The man stands while holding onto the swing.\", \" The man stands again and we see a little girl.\", \" A lady tries to put the girl in the swing, but she ends up swinging alone.\"]}, \"v_djgnHazfi2Y\": {\"duration\": 46.65, \"timestamps\": [[0, 46.65], [1.4, 46.65]], \"sentences\": [\"man is standing in stage doing gymnastics in a competition.\", \" man is holding a video recorder.\"]}, \"v_9Pv2hUyODK4\": {\"duration\": 111.74000000000001, \"timestamps\": [[0, 10.06], [10.61, 29.05], [29.61, 45.25], [45.25, 86.04], [86.04, 111.74]], \"sentences\": [\"A man in a black shirt is talking outside near a track and field.\", \"He then walks over to a student athlete from Florida State University.\", \"The athlete then begins talking and showing various techniques that she uses.\", \"Once finishes,she begins doing a triple jump into the pit,she tries again, and then the man interviewing her begins doing the same jump.\", \"The two come back to the camera and finish talking,she flashes her thumbs up and then leaves.\"]}, \"v_1wiGNX_S8ZU\": {\"duration\": 109.07, \"timestamps\": [[2.73, 57.26], [48.53, 106.34]], \"sentences\": [\"Two people are seen doing flips and kicks around one another in a large circle surrounded by people.\", \" More people join in to the kicks and flips as others watch them on the side and clap.\"]}, \"v_hhoewBggtuw\": {\"duration\": 198.32, \"timestamps\": [[0, 2.97], [2.97, 13.88], [14.87, 60.49], [60.49, 98.17], [99.16, 133.87], [133.87, 179.48], [170.56, 176.51], [179.48, 198.32]], \"sentences\": [\"We see a title over an image of a car.\", \" We see a man sitting next and talking about the car.\", \" The man puts a brick behind his tire and grabs his supplies to change his tire.\", \" The man loosens the bolts and jacks the car up and removes the tire.\", \" The man puts on his spare and lowers the car to the ground.\", \" The man puts his supplies away and drives away.\", \" The man stops near the camera and speaks before driving off.\", \" We see the ending title screen.\"]}, \"v_mzxz0EQy1pY\": {\"duration\": 234.98, \"timestamps\": [[3.52, 83.42], [90.47, 192.68], [177.41, 230.28]], \"sentences\": [\"A camera pans all around a heated pool and leads into a person climbing in a kayak and moving around the pool.\", \" Several people seen riding kayaks around the pool as well as people swimming around and watching on the sidelines.\", \" The men continue moving around in various angles as well as being shown swimming underwater and playing with one another.\"]}, \"v_lIbRuIm9MxI\": {\"duration\": 135.58, \"timestamps\": [[0, 5.42], [5.42, 86.09], [86.77, 120.67], [120.67, 135.58]], \"sentences\": [\"Howcast logo is on the screen.\", \" Two men are sitting in the middle of drums and explaining about the instruments.\", \" The men begin playing the drums.\", \" The go back to talking about the drums.\"]}, \"v_awqVlr-YDM4\": {\"duration\": 132.08, \"timestamps\": [[0, 132.08], [59.43, 60.75]], \"sentences\": [\"People are skiing down a hill and keep falling down and sliding down the hill.\", \" A person crashes into a fence.\"]}, \"v_8rypSctbfjU\": {\"duration\": 226.57999999999998, \"timestamps\": [[3.4, 15.86], [16.99, 35.12], [37.39, 197.13], [200.52, 226.58]], \"sentences\": [\"A brush and two kinds of paint are on a table.\", \" A knitter's hoop is shown lying on cloth, and a woman paints a design into the cloth.\", \" She forms many leaves and flowers in orange shades.\", \" When she is done, she shows off the flower design.\"]}, \"v_bCdIcqRYJvo\": {\"duration\": 124.02, \"timestamps\": [[0, 117.82], [17.36, 21.08], [76.89, 79.37], [106.04, 119.06], [119.06, 124.02]], \"sentences\": [\"A man sits and plays a black grand piano in an empty auditorium.\", \"  We see three people in the front row watching and listening to the man as he plays and one person one row behind them.\", \" We see the three people, two women and one men.\", \" The player stands and plays.\", \" The player finishes and stands up.\"]}, \"v_nShRXseBM4Y\": {\"duration\": 71.4, \"timestamps\": [[10, 24.28], [24.28, 27.85], [38.56, 50.34], [54.62, 58.19]], \"sentences\": [\"A person is slicing bread with a knife.\", \" They mix ingredients in a bowl.\", \" They cook the bread on a grill.\", \" They add a scoop of chocolate ice cream next to the sandwich.\"]}, \"v_IFgEjS97Pmw\": {\"duration\": 83.78, \"timestamps\": [[0, 43.98], [43.98, 72.05], [72.47, 83.78]], \"sentences\": [\"A rustic static bike of wood is in a room.\", \" Then, a man pedal the bike while showing the handle.\", \" Then the man sits on the bike to pedal and then stands.\"]}, \"v_XLsuG0cNl4o\": {\"duration\": 54.17, \"timestamps\": [[0, 13.27], [14.36, 22.75], [24.38, 54.17]], \"sentences\": [\"A man uses a beard trimmer to trim his cheeks and neck.\", \" The man strokes his goatee and examines it.\", \" The man trims his chin area to make a mustache.\"]}, \"v_1iP5k9jHBRU\": {\"duration\": 50.83, \"timestamps\": [[0.25, 8.64], [2.8, 35.33], [24.65, 50.83]], \"sentences\": [\"A male is standing by the white door, he is holding rectangular wood, and on the other hand is a board that holds big chunk of brown clay.\", \"  He pointed the wall and started to spread the brown clay on the wall, she spread it by rubbing it smoothly and in half circle way.\", \" He went near the ceiling, knocked on the ceiling, pushed it, knocked on it again, smoothen it using his fingers.\"]}, \"v_PpbBWqlsbxk\": {\"duration\": 123.96, \"timestamps\": [[0, 9.3], [9.92, 13.64], [14.26, 22.93], [23.55, 104.75], [39.67, 46.49], [63.84, 72.52], [103.51, 110.95], [111.57, 123.96]], \"sentences\": [\"We see we an opening title screen.\", \" People stand in the woods holding paddles while wearing rafting gear.\", \" People walk to the lake with their rafts and get in.\", \" We see people riding rafts down a river.\", \" The people go over a small waterfall and their raft is overturned.\", \" People are plunged into the water as they go over a waterfall and a man pumps his fist.\", \" The camera pans up to show nature and fades to white.\", \" We see the ending title screen.\"]}, \"v_jsofzMPb0i4\": {\"duration\": 139.99, \"timestamps\": [[0, 139.99], [25.9, 37.8], [77, 109.9], [105, 121.79], [118.29, 130.89]], \"sentences\": [\"There's a basketball player demonstrating various types of basketball hoop shooting techniques on behalf of World of Hoops.\", \" He begins by showing the basic technique of the regular lay-up throw, he shoots the ball directly into the hoop.\", \" Then he shows another technique where he comes running and shoots the ball from very close to the hoop by jumping up high.\", \" He continues to show various other ways to shoot the basket as he runs and dunks the ball straight into the basket.\", \" He demonstrates different techniques of shooting the ball right into the hoop without missing a single basket.\"]}, \"v_sTev5fWX3T8\": {\"duration\": 15.09, \"timestamps\": [[0, 7.09], [7.09, 15.09], [0, 13.21]], \"sentences\": [\"A teen is balancing on the higher uneven bar.\", \" Then, the teen flips and a man helps her to pass to the lower uneven bar.\", \" Two A girl exercise on the uneven bars behind the teen.\"]}, \"v_IlzwpnsIRZM\": {\"duration\": 33.62, \"timestamps\": [[0, 22.86], [1.18, 22.86], [23.03, 33.62]], \"sentences\": [\"People are playing a game of ping pong.\", \" A man in a red shirt is playing with only one shoe on.\", \" Words come onto the screen at the end.\"]}, \"v_Z2wZr0Beq9c\": {\"duration\": 132.76, \"timestamps\": [[0.66, 60.41], [45.14, 130.11]], \"sentences\": [\"A woman is seen sitting behind a poker table and dealer cards while others do the same in the back.\", \" The woman continues dealing cards on the table while looking and smiling to the camera.\"]}, \"v_MxYa4WTV8Zs\": {\"duration\": 190.13, \"timestamps\": [[0, 180.62], [26.62, 28.52], [55.14, 58.94], [59.89, 67.49], [176.82, 178.72], [184.42, 190.13]], \"sentences\": [\"A man and a woman decorate a Christmas tree from decorations around the room in sped-up video.\", \" A dog walks through the camera frame.\", \" The man leaves the camera frame.\", \" The man returns to decorating wearing a Santa hat.\", \" The man stands on a chair to put a decoration at the top of the tree.\", \" The completed tree is shown by itself.\"]}, \"v_TrRsujPlt5w\": {\"duration\": 63.41, \"timestamps\": [[0, 12.68], [17.12, 63.41]], \"sentences\": [\"An elderly man is using an elliptical trainer inside a gym.\", \" He pedals and pushes back and forth as he talks to the person with the camera.\"]}, \"v_cu8TBL7msJg\": {\"duration\": 209.0, \"timestamps\": [[0, 59.57], [54.34, 149.44], [141.08, 205.87]], \"sentences\": [\"Several clips are shown of people holding tennis rackets and hitting a ball into the distance.\", \" Text is shown across the screen and more shots are shown of people demonstrating.\", \" The people continue hitting the balls around the court while the camera captures their movements.\"]}, \"v_u9oARzRT3fI\": {\"duration\": 23.38, \"timestamps\": [[0, 3.51], [4.33, 19.64], [20.81, 23.38]], \"sentences\": [\"A female gymnast mounts a high beam in a gym.\", \" She does lots of forward jumps, springs, and splits in the air.\", \" A boy in the background climbs a rope as she dismounts.\"]}, \"v_JviFZ5Cliug\": {\"duration\": 182.9, \"timestamps\": [[5.49, 22.86], [70.42, 80.48], [80.48, 92.37]], \"sentences\": [\"A woman in a white shirt is standing by an exercise machine.\", \" She begins working out on the exercise machine.\", \" Information about the machine is placed on the screen.\"]}, \"v_ZCZoL2b6euQ\": {\"duration\": 22.85, \"timestamps\": [[0, 4.34], [4.91, 11.88], [13.14, 22.85]], \"sentences\": [\"A man is throwing darts inside a room.\", \" Another man ducks so he doesn't get hit.\", \" The darts hit the dart board in slow motion.\"]}, \"v_t0YXK4W_L7o\": {\"duration\": 93.03999999999999, \"timestamps\": [[0, 47.92], [46.99, 93.04]], \"sentences\": [\"A close up of a horse is seen followed by several people riding on a horses on a beach.\", \" One person is seen standing on the horse and the camera continues to follow the people riding along on the horses.\"]}, \"v_fZzswQaICfM\": {\"duration\": 159.57, \"timestamps\": [[0, 25.53], [25.53, 86.96], [86.17, 120.47], [120.47, 159.57]], \"sentences\": [\"There is a hopscotch board drawn with chalk on the pavement.\", \" A little girl in green takes her turn and then more of her friends follow after.\", \"  All three girls stand and then drop a bottle cap to move forward  with their jumps.\", \" They play different variations of the game just having fun doing so and when its over one of the girls throws her hands in the air.\"]}, \"v_WOonpO98TdQ\": {\"duration\": 231.67000000000002, \"timestamps\": [[1.16, 228.19], [1.16, 24.32], [18.53, 94.98], [94.98, 229.35]], \"sentences\": [\" A man and a woman in a garage style weight room demonstrate how to lift a weight bar with the woman exhibiting the lifting of the weights.\", \"  A man in a black t-shirt and sandals stands next to a woman in a garage style weight room.\", \"  The woman picks up a weight bar using the knees to bend as the man talks and points to her muscle groups.\", \"  The woman hoists the bar above her head in a weight lifting move several times before lowering the bar back to the floor.\"]}, \"v_vpvhtd7CqUA\": {\"duration\": 215.06, \"timestamps\": [[0, 15.05], [15.05, 54.84], [54.84, 61.29], [62.37, 80.65], [80.65, 88.18], [90.33, 115.06], [118.29, 119.36], [119.36, 137.64], [137.64, 160.22], [169.9, 186.03], [184.96, 215.06]], \"sentences\": [\"Some texts pops up on the screen.\", \" A video of bulls being hurt by people starts playing.\", \" Text pops up on the screen again.\", \" Images of people stabbed with arrows and full of blood are shown.\", \" More text with an anti bullfighting messages appear.\", \" Images of hurts bulls are shown.\", \" Anti animal cruelty text appears.\", \" A bull fighter is shown fighting a bull.\", \" A video is played of bullfighters getting gored.\", \" A new video showing dead animals plays.\", \" Condescending text appears in the video that chastises people for eating meat ane being cruel to animals.\"]}, \"v_FfVfjZOHsl4\": {\"duration\": 78.43, \"timestamps\": [[0, 78.43], [29.02, 40], [44.31, 53.72]], \"sentences\": [\"A lawn mower is being pushed through grass.\", \" It is pushed along a sidewalk.\", \" It is pushed along a flower bed.\"]}, \"v_pIUpJihiju0\": {\"duration\": 64.0, \"timestamps\": [[4.16, 18.88], [18.88, 64]], \"sentences\": [\"A person shows the bottom of a large dust mop.\", \" Then, the person cleans a gym with the large dust mop.\"]}, \"v_HCub1SN4X20\": {\"duration\": 232.11, \"timestamps\": [[4.64, 22.05], [25.53, 61.51], [45.26, 98.65], [105.61, 125.34], [104.45, 177.56], [145.07, 204.25], [206.58, 232.11]], \"sentences\": [\"The girl in the swing is swinging and then she jumped on the ground.\", \" The camera turned around, then turned back to the girl swinging, she is twisting the chains of the swing, and she is swirling around with the swing.\", \" The girl in black shirt and black skirt and tights keeps swing so fast and high and then she jumped on the sandy ground.\", \" The girl climbed the climber, she put her feet up while her arms and hands are holding the bar.\", \" The girl fell down on the ground, she stood up, then went to the other side of the climber, reached for the bar and moved to the other next bar.\", \" The girl is sitting on blue bouncing chair while she look on her side, she stood up, continue to pull her weight forward and backward.\", \" The girl sat on top of the slide then slide down, put on her slippers then went back to the top of the slide and slide down.\"]}, \"v_Oe1tNvkhrI8\": {\"duration\": 61.91, \"timestamps\": [[0, 2.79], [3.4, 13], [13, 33.74], [33.74, 61.91]], \"sentences\": [\"A blue backdrop is pictured with white words saying titling,\\\"Mowing the Lawn May 2009\\\".\", \"A middle aged man is outside,wearing a white muscle short and red shorts pushing a lawn mower in his yard.\", \" As the man turns the lawn mower to go in a different direction he begins to struggle and gets confused because the water fountain is in his way.\", \"Once,the male has become frustrated enough,he just decided to not mow it and goes back to his original place of cutting.\"]}, \"v_OW5Tyr8MICg\": {\"duration\": 15.12, \"timestamps\": [[0, 8.01], [8.16, 15.12]], \"sentences\": [\"A close up of hands is shown followed by a girl brushing her hair and smiling to the camera.\", \" The girl continues brushing her hair and looking off into the distance.\"]}, \"v_Z0oEaM7h6jM\": {\"duration\": 196.02, \"timestamps\": [[0, 5.88], [5.88, 14.7], [14.7, 45.09], [45.09, 48.03], [48.03, 75.47], [75.47, 102.91], [102.91, 129.38], [129.38, 137.22], [136.24, 140.16], [140.16, 163.68], [163.68, 169.56], [169.56, 177.4], [177.4, 196.02]], \"sentences\": [\"A logo appears on the screen briefly.\", \" A man talks to a group while standing in a raft.\", \" A group of people are rafting down rivers with rapids.\", \" They cheer by lifting their paddles.\", \" They continue to raft down the river.\", \"It cuts to the people on the bank at a campsite.\", \" People are once again rafting down the river.\", \" A person kayaks down the river.\", \" Another person kayaks down the river.\", \" Another group rafts down the river.\", \" It shows monkeys on the bank.\", \" People get splashed by a waterfall.\", \" It cuts to the logo and information.\"]}, \"v_G4O_Ar7EO4Y\": {\"duration\": 77.81, \"timestamps\": [[0, 14.01], [14.01, 29.57], [29.57, 63.42], [63.42, 77.81]], \"sentences\": [\"A competitive sporting event is taking place in an outdoor arena and the competitors are on the ground while the spectators are in the stands.\", \"A man is now standing in a circle on the field and he's holding a ball and the banner display on the screen indicates his name is Krisztian PARS and that he's about to do a Hammer Throw M as he swings the ball that is attached to the rope, swings his body and then lets the rope go as it flies very far on the field.\", \"The man is very proud of his throw as he cheers and other competitors as well as people in the stands clap and cheer for him as well as he walks away from the area he was standing in and continues to cheer himself on a little more while giving a thumbs up to a group of camera men taking his picture.\", \"A replay of his throw starts again and then it ends with a wide angled shot of the entire arena.\"]}, \"v_Jo3R272P8eM\": {\"duration\": 128.22, \"timestamps\": [[0, 77.57], [0, 128.22], [0, 16.67]], \"sentences\": [\"A woman is holding a microphone standing outside a room.\", \" People are playing wall ball in the room.\", \" The woman is holding a piece of paper.\"]}, \"v_5qublDzEgsw\": {\"duration\": 130.85, \"timestamps\": [[0, 22.24], [20.94, 102.71], [106.64, 130.85]], \"sentences\": [\"Two men are shown playing soccer in a gym followed by a pan out showing more players.\", \" The man is white leads the ball down the gym several times and performing various tricks and goals.\", \" The game continues on with the men doing back and fourth playing with the soccer ball.\"]}, \"v_uwGcEaW3z3Q\": {\"duration\": 11.36, \"timestamps\": [[0, 1.82], [2.55, 8.86], [9.37, 11.36]], \"sentences\": [\"A man is trying to lift weights in a gym.\", \" He lifts the barbell up to his chest.\", \" He then lifts it over his head before dropping it to the ground.\"]}, \"v_60yOoxs9AFc\": {\"duration\": 74.58, \"timestamps\": [[0, 41.39], [41.02, 74.58]], \"sentences\": [\"A band is seen playing several instruments on a stage while people dance around them.\", \" The band continues playing while lights flash all around them and people continue dancing.\"]}, \"v_BY5mz30u5_8\": {\"duration\": 32.69, \"timestamps\": [[0, 6.54], [6.38, 32.69]], \"sentences\": [\"A person is seen standing on a wake board point out and moving himself around.\", \" The camera follows him gliding out into the water gradually going further and further.\"]}, \"v_jHyWtrhNTTk\": {\"duration\": 43.93, \"timestamps\": [[0, 4.17], [4.17, 12.96], [6.59, 12.96], [14.06, 21.97], [22.85, 29.22], [29.44, 39.1], [39.98, 43.93]], \"sentences\": [\"We see a black opening screen.\", \" We see a blue track with people running on it.\", \" We then see a man do a high jump at 5'9\\\".\", \" We then see the man jump at 6'.\", \" We then see the man jump at 6'2\\\" and he knocks the pole over.\", \" We see him try 6'2\\\" again and not hit the pole.\", \" The man walks to the camera and turns it off.\"]}, \"v_K9qWnvl8A1Q\": {\"duration\": 75.42, \"timestamps\": [[0, 13.58], [15.08, 53.92], [56.94, 75.42]], \"sentences\": [\"A little boy is holding a paintbrush in the yard.\", \" He is swiping a brush covered with water on the fence.\", \" He dips it in the bucket, continuing to pretend to paint.\"]}, \"v_Ocd1VWIIeVs\": {\"duration\": 64.67, \"timestamps\": [[0, 29.42], [31.36, 32.98], [35.57, 54.97]], \"sentences\": [\"A man washes a car with a brush, while three people rinse the car with hoses.\", \" A man sprays detergent on a car.\", \" A person that wears a red t-shirt sprays detergent on a car, then two men rinse the car with hoses, while other cars are covered with white detergent.\"]}, \"v_OrF46J3HmSw\": {\"duration\": 35.02, \"timestamps\": [[0, 1.4], [1.58, 15.76], [10.15, 35.02]], \"sentences\": [\"A young child is seen standing before a mat looking down at the floor.\", \" She then begins walking along the mat all the way to the end.\", \" She walks back and fourth again while looking to the camera.\"]}, \"v_QZyR7yfp8hA\": {\"duration\": 124.79, \"timestamps\": [[1.25, 48.04], [39.93, 89.22], [80.49, 122.29]], \"sentences\": [\"A man is seen speaking to the camera next to a horse and leads into clips of him riding around on the horse and close ups of other horses.\", \" The host speaks to another man while more shots of horses are shown as well as a man hitting a ball.\", \" The men then ride horses and learn to play a sport and ends with the host speaking in a uniform.\"]}, \"v_4E-RWxR6Xr0\": {\"duration\": 118.56, \"timestamps\": [[0.59, 10.08], [13.04, 111.45], [71.14, 78.25], [112.04, 116.78]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy rides an exercise bike.\", \" The guy adjusts the exercise bike seat.\", \" The credits of the video are shown.\"]}, \"v_QFWxdR_C71M\": {\"duration\": 168.51, \"timestamps\": [[0, 13.48], [17.69, 144.07], [144.92, 168.51]], \"sentences\": [\"A woman uses a piece of chalk on a canvas.\", \" She then uses several colors of paint to create an image.\", \" When she is done, we see a still life image of an orange on a counter.\"]}, \"v_mnMmGnnbvSk\": {\"duration\": 143.66, \"timestamps\": [[1.44, 12.93], [14.37, 23.7], [25.86, 51.72], [52.44, 112.77], [114.21, 142.94]], \"sentences\": [\"An array of shoe shining tools are shown including different kinds and colors of shoe polish, a polishing rag and a black shiny shoe.\", \"  A group of adult students sit in a classroom style room and look to the front of the class as if attending a class and listening intensely.\", \"  A shoe shine demonstration takes place with a man kneeling in front of a group of students and using a sample shoe as an example.\", \"  Several people in aprons, then kneel before people wearing shoes and shine the people's shoes on red buckets with polishing clothes and polish.\", \"   The shoes shiners then stand in unison, with their aprons, and bow and shake hands.\"]}, \"v_hRMSh7vUmGY\": {\"duration\": 116.57, \"timestamps\": [[0, 24.48], [24.48, 54.2], [46.63, 77.52], [77.52, 116.57]], \"sentences\": [\"A man is lifting very heavy weight above his head and dropping it .\", \" He does this multiple time for repetition, this is a workout routine.\", \" He then walks away taking a break for a little bit and walks by people sitting and chatting.\", \" Once he is done with his break he continues back to his routine.\"]}, \"v_q9T1GR6s0vI\": {\"duration\": 120.08, \"timestamps\": [[0, 4.8], [4.8, 22.82], [22.82, 40.83], [40.23, 117.08], [117.08, 120.08]], \"sentences\": [\"Two Sumo wrestlers are indoor fighting one another as the referee moves around them.\", \"One person is then thrown off of the mat and another set of people are shown.\", \"The smaller of the two then flips the big guy from in the air and then the match is over.\", \"The sequence continues and several other men are shown battling one another and giving each other wedgies.\", \"When the match is complete,two men are shown sitting at a desk with a phone number on a white board.\"]}, \"v_RVKYgN2S9KA\": {\"duration\": 79.72, \"timestamps\": [[0, 41.85], [41.45, 79.72]], \"sentences\": [\"A girl wearing a bikini on the beach is shown doing several sits up on a ball and fixing her hair.\", \" She continues performing the exercise while smiling at the camera.\"]}, \"v_HCsfxpQ8C1M\": {\"duration\": 8.96, \"timestamps\": [[0, 5.38], [5.38, 8.96]], \"sentences\": [\"A man holds a weigh on his back, then he kneels on the floor.\", \" After, he jumps from the floor to stand while the weigh is on his back.\"]}, \"v_86lJVqKyj3A\": {\"duration\": 189.38, \"timestamps\": [[0.95, 188.44], [5.68, 8.52], [10.42, 17.99], [18.94, 151.51], [151.51, 187.49]], \"sentences\": [\"A woman demonstrates how to properly wrap a gift from behind the counter of a gift shop.\", \"  A woman stands behind a sales counter in front of several wrapped gifts and gift wrapping materials.\", \"  Gift wrapping materials are shown sitting on the counter including gift wrap, scissors, and ribbon.\", \"  The woman talks to the camera and begins to wrap the box in gift wrapping paper using a pair of scissors to cut the gift wrapping paper and clear tape to tape the edges of the wrapping paper.\", \"  The woman then wraps the gift with final ribbon and the camera closes up on the finishes, wrapped, product.\"]}, \"v_57cM1GcKktw\": {\"duration\": 134.05, \"timestamps\": [[0, 5.36], [5.36, 19.44], [19.44, 77.08], [77.75, 131.37], [130.7, 134.05]], \"sentences\": [\"A heavy man in a blue shirt is playing the bag pipes.\", \"  He blows into the pipe while making the notes with his fingers.\", \"  He slightly dances as he plays.\", \" He adjusts the bag pipe and continues to play.\", \"  He finishes his song and reaches to turn off the camera.\"]}, \"v_a370DDsJtBA\": {\"duration\": 96.47999999999999, \"timestamps\": [[0, 10.61], [14.95, 83.45], [84.9, 96.48]], \"sentences\": [\"A woman is seated behind a wooden table.\", \" She quickly moves color blocks on a puzzle, trying to solve it.\", \" She solves the puzzle and shows it to the camera.\"]}, \"v_lPYV3qFuXOI\": {\"duration\": 145.5, \"timestamps\": [[0, 8], [8, 13.09], [13.82, 123.67], [124.4, 131.67], [132.4, 136.77]], \"sentences\": [\"The video's title and credits are shown.\", \" A man rides a bicycle down a path with cars in the background.\", \" The man disassembles and repairs the bicycle.\", \" The man rides the bicycle down a stone paved path.\", \" The man rides the bicycle down a road alongside parked cars.\"]}, \"v_jFp6ld_IGuY\": {\"duration\": 30.12, \"timestamps\": [[0, 2.86], [3.61, 6.17], [6.32, 11.6], [11.75, 18.67], [18.82, 24.55], [24.55, 29.97]], \"sentences\": [\"A man speaks on a microphone.\", \" Suddenly, a man jumps on the neck of a person and throw him to the floor.\", \" Other men competes wrestling, and one man jumps and land on the border of a wrestling ring.\", \" A wrestler jumps on the back of a man to stay upside down while the judge watch.\", \" A big man kicks another wrestler, then grabs his head a throw to the floor.\", \" A kid and a person jumps to celebrate.\"]}, \"v_VbhCWRXsEHQ\": {\"duration\": 184.25, \"timestamps\": [[43.3, 48.83], [53.43, 58.04], [58.96, 88.44], [79.23, 88.44], [95.81, 126.21], [127.13, 139.11], [140.03, 149.24], [150.16, 163.98], [163.98, 166.75]], \"sentences\": [\"Parchment paper is placed on the baking sheet.\", \" Softened butter is placed in a mixing bowl.\", \" The mixer then begins to cream the butter.\", \" Sugar is added to the mixing bowl to be beaten in.\", \" Flour is measured, and combined with cornstarch which is measured then mixed into the bowl.\", \" Dough is measured out by spoonful, rolled up and placed on baking sheet.\", \" The dough is flattened and baked into cookies.\", \" The cookies are then placed on a baking sheet, then rack to cool with a spatula.\", \" The cookies are cooled to be enjoyed.\"]}, \"v_wipGHu-nmNY\": {\"duration\": 128.41, \"timestamps\": [[0, 19.9], [30.18, 75.76], [78.33, 128.41]], \"sentences\": [\"A bartender is talking from behind a bar.\", \" He shows himself making several different drinks.\", \" Then he is shown making a specific red drink, shaking it before pouring it into a glass.\"]}, \"v_0Bd8Js6Pf6E\": {\"duration\": 68.15, \"timestamps\": [[0, 1.36], [2.04, 4.77], [4.77, 68.15]], \"sentences\": [\"Two tam tams are in a living room.\", \" Then, A man comes and talks on front the tam tams.\", \" After, the man plays the tam tam in a living room.\"]}, \"v_G3xayqdY0TY\": {\"duration\": 179.0, \"timestamps\": [[0, 8.06], [9.85, 174.53], [146.78, 179]], \"sentences\": [\"A man on the dock hands a rope to a water skier.\", \" A person water skis and does jumps over ramps in the water of a lake.\", \" The water skier falls but recovers then lets go of the rope and drifts over to the shoreline.\"]}, \"v_2-xMWBQA7iM\": {\"duration\": 74.78999999999999, \"timestamps\": [[0, 7.11], [10.1, 13.84], [17.2, 29.17], [33.66, 35.9], [36.27, 51.23], [54.22, 66.94], [67.69, 74.79]], \"sentences\": [\"We see a man walk over and sits on a rowing machine.\", \" The man drink from his water.\", \" The man rows fast on the machine.\", \" We see a title screen.\", \" We see the man stop rowing and walks and gets the camera.\", \"The man then shows the screen on the rowing machine.\", \" The man kisses his fingers and the camera falls to the ground.\"]}, \"v_nXVNITiaaTQ\": {\"duration\": 116.53, \"timestamps\": [[15.73, 27.97], [30.3, 84.48], [87.4, 106.04], [107.79, 116.53]], \"sentences\": [\"A man stands in front of a business logo and discusses.\", \" A rider goes around a turn and plants his foot in the dirt to stabilize.\", \" The rider accelerates out of a turn on his motorcycle.\", \" The rider goes over a jump on his motorcycle.\"]}, \"v_YU0DjX7wvRA\": {\"duration\": 114.89, \"timestamps\": [[0, 10.34], [10.34, 32.17], [32.17, 81.57], [81.57, 114.89]], \"sentences\": [\"A cat is sitting on the floor looking up as his owner tried to grab him.\", \" The owner picks him up and sits down with him and begins to clip his nails.\", \" The cat is moving his head around wagging its tail around but not giving a hard time.\", \" The owner then begins to rub its belly and play with it's feet, before putting the cat back on the ground.\"]}, \"v_Pi79Fa4YwDk\": {\"duration\": 77.11, \"timestamps\": [[0, 16.97], [0.77, 8.87], [16.97, 38.94], [38.94, 55.91], [56.29, 77.11]], \"sentences\": [\"We see men playing a game of cricket.\", \" The pitcher throws and men all start running.\", \" We see a man laying on the ground,  with medics around.\", \" We see men walking on the field and A medic puts a ice pack on the man's head.\", \" We see in slow motion the collision which hurt the man.\"]}, \"v_-YPp9kc3XDs\": {\"duration\": 167.45, \"timestamps\": [[0, 22.61], [23.44, 167.45]], \"sentences\": [\"man is sitting in a living room talking to the camera.\", \" man starts playing the flute and keep talknig.\"]}, \"v_P3oTMGfwOOs\": {\"duration\": 135.77, \"timestamps\": [[0.68, 7.47], [11.54, 29.19], [42.09, 46.84], [61.1, 117.44], [118.12, 135.77]], \"sentences\": [\"The credits of the clip are shown.\", \" Men use ladders to get on the roof to work.\", \" The men put a tarp around the house.\", \" The men are removing the roof pieces and throwing down onto the tarp.\", \" The credits of the video are shown.\"]}, \"v_YAbfhT3fhac\": {\"duration\": 75.07, \"timestamps\": [[0, 23.27], [25.52, 74.32]], \"sentences\": [\"A gymnastic teams practices routines that involve jumping and flipping.\", \"  They then switch to cheerleading outside.\"]}, \"v_swOYvotIM1Y\": {\"duration\": 69.13, \"timestamps\": [[0, 25.58], [26.27, 35.95], [36.64, 69.13]], \"sentences\": [\"A woman and a man battle each other in a game of arm wrestling.\", \" She beats him and showcases her muscles.\", \" They do it again, she wins again, and shows off her muscles.\"]}, \"v_KV0L45xelkE\": {\"duration\": 68.85, \"timestamps\": [[5.16, 61.62], [22.03, 32.36], [32.36, 37.52], [37.87, 62.31]], \"sentences\": [\"A female basketball coach is seen instructing a group of girl basketball players who are standing in line on a basketball court.\", \" The first girl passes to another coach and then runs to the net and takes a layup.\", \" The girls continue to do the drill on the right side.\", \" The girls move to the left side and perform the same drill on the left side of the court.\"]}, \"v_8miqQQJEsO0\": {\"duration\": 135.77, \"timestamps\": [[0, 87.57], [0, 89.61], [89.61, 135.77]], \"sentences\": [\"woman is standing in a roofed gym lifting weight.\", \" coach is standing next to the gril coaching her and helping her.\", \" after a few advices the woman lift the weight again.\"]}, \"v_wlYxVUJSJVI\": {\"duration\": 221.54, \"timestamps\": [[0, 21.05], [25.48, 60.92], [64.25, 87.51], [91.94, 131.82], [139.57, 187.2], [197.17, 221.54]], \"sentences\": [\"A group of kids are playing indoor soccer.\", \" The boys run, chasing the ball and fighting to get it away from each other.\", \" One boy kicks into the opposing team's goal.\", \" It is replayed in slow motion.\", \" The boys continue playing for the remainder of the game.\", \" On the final screen, an older man is shown holding a little boy in his arms.\"]}, \"v_9uHffl5yny4\": {\"duration\": 45.67, \"timestamps\": [[0.46, 42.02], [2.06, 2.74], [3.65, 15.07], [16.9, 44.99]], \"sentences\": [\"A woman talks on a cordless phone while sitting on a throne, and while another woman kneels at her feet and wipes them down with her clothes.\", \"  A woman in a purple sari kneels at the foot of another woman who is sitting on a gold throne and wearing a gold crown with red feathers in her hair.\", \"  The woman on the throne sticks her foot out in front of the kneeling woman and the kneeling woman begins to wipe the woman's feet with her sari.\", \"  The woman on the throne takes a phone call on  black cordless phone and begins to talk before the scene finally fades to a blurry image of another woman talking on a phone.\"]}, \"v_UpnFBPGFgnw\": {\"duration\": 122.29, \"timestamps\": [[0, 7.95], [12.84, 111.28], [113.73, 122.29]], \"sentences\": [\"A man is speaking while standing in front of a smart car.\", \" He gets in, continuing to talk as he shows the different component of the car, including the trunk.\", \" The man returns to the front of the vehicle, finishing with his final words.\"]}, \"v_xuEhV19bVRI\": {\"duration\": 71.82, \"timestamps\": [[0, 55.3], [55.3, 71.82]], \"sentences\": [\"A compilation of professional wrestler Kevin Owens performing power bombs on many wrestlers, in the beginning of the video he enters the building with a confident look, as he proceeds to get in he performs multiple power bombs.\", \" The ending of the video has a subscriber message.\"]}, \"v_H-yBxySDyTw\": {\"duration\": 106.67, \"timestamps\": [[0, 19.2], [19.2, 49.6], [49.6, 84.27], [84.81, 106.67]], \"sentences\": [\"A man in a office chair is sitting with some type of pen up.\", \" He talks about it for a little while and then put it in his mouth, turns out its an e-pen.\", \" It's a new technology that you can smoke like a cigarette.\", \" He holds it in his hands like a cigarette and puts it in his mouth and exhales smoke.\"]}, \"v_uBkJa679ffE\": {\"duration\": 208.41, \"timestamps\": [[1.04, 22.93], [22.93, 69.82], [69.82, 167.77], [167.77, 206.33]], \"sentences\": [\"A woman with dark hair and silver framed glasses looks around pensively until her gaze lands on the camera and she feigns surprise at the presence of the camera and begins to talk to the camera.\", \"  The woman begins to hold a pair of contact lenses and lens solution up to the camera and then proceeds to take the lenses out and talks to the camera alone again.\", \"  The woman pours solution into her hand and cleans the lens in her hand before plopping two of them in her eyes and exhibiting completely black eyes to the camera while talking.\", \"  The woman then takes the contact out of her eyes, then puts them back in on the fade out.\"]}, \"v_aFdYbgmbOeY\": {\"duration\": 75.67, \"timestamps\": [[0, 10.97], [10.59, 36.32], [36.7, 52.59], [52.59, 75.67]], \"sentences\": [\"Someone grabs a rubix cube off of their desk and begin to solve it.\", \" They are moving so fast, they put it down for a split second.\", \" They pick it back up quickly and get back to it, moving so fast again.\", \" When they finally solve the cube they show their time, it took them only 33,91 to solve the cube.\"]}, \"v_9PuaRdU6ViM\": {\"duration\": 218.85, \"timestamps\": [[0, 95.2], [74.41, 218.85]], \"sentences\": [\"Two girls are seen speaking to the camera followed by a person laying fruit out and mixing it into a blender.\", \" The girls continue to put the fruit into a blender while taking bites on the side and pushing down further into the blender.\"]}, \"v_14X-i7vqXWU\": {\"duration\": 211.14, \"timestamps\": [[0, 55.95], [55.95, 211.14]], \"sentences\": [\"A group of cheerleaders are seen yelling together all at once and leads into them performing a routine in front of a large audience.\", \" The people continue performing their routine on the mat while performing various flips and tricks and ends with them running off stage while the audience cheers.\"]}, \"v_qHU7T2LBToI\": {\"duration\": 235.78, \"timestamps\": [[0, 235.78], [21.22, 235.78]], \"sentences\": [\"A cheerleading team performs on a blue mat.\", \" They dance and tumble during their routine.\"]}, \"v_Rvqu079gCh0\": {\"duration\": 210.57, \"timestamps\": [[0, 10.53], [12.63, 207.41], [48.43, 71.59], [123.18, 130.55], [180.04, 190.57]], \"sentences\": [\"We see kids with feet on skateboards.\", \" We see the kids riding down the street from a skater pov.\", \" A kid crashes and has a hard time recovering.\", \" A boy loses his board and has to run after it.\", \" We see the person with a selfie stick fall in the grass.\"]}, \"v_aEUbl9oT_0s\": {\"duration\": 209.34, \"timestamps\": [[0, 55.47], [56.52, 170.61], [154.91, 204.1]], \"sentences\": [\"Various shots are shown of athletes holding a pole in their hands and leaning backwards.\", \" This leads into several clips of more athletes throwing javelins off into the distance.\", \" More and more people are shown throwing javelins.\"]}, \"v_FJZTNJ0LuJ4\": {\"duration\": 146.91, \"timestamps\": [[0, 2.94], [2.94, 42.6], [42.6, 55.09], [55.09, 66.11], [66.11, 92.56], [92.56, 100.64], [100.64, 138.83], [138.83, 146.91]], \"sentences\": [\"Text appears on the screen briefly.\", \" Two people stand in front of a cake and they talk.\", \"  Text appears on the screen as they talk.\", \" A woman mixes ingredients into a pot on the stove.\", \" A man pours in rum into the pot and stirs it.\", \" They poke holes in the cake with knives and pour the mixture on it.\", \" They stand in front of the cake again and talk.\", \" They eat the cake as they talk.\"]}, \"v_6GGQUpJR5qs\": {\"duration\": 133.16, \"timestamps\": [[0, 132.49], [118.51, 119.84], [121.84, 132.49]], \"sentences\": [\"A person is lathering up a dog's fur with an purple shower head attached to a green hose.\", \" The dog shakes his fur.\", \" The person continues wetting the dog.\"]}, \"v_KFk4ZpyYeuE\": {\"duration\": 96.56, \"timestamps\": [[0, 26.07], [23.17, 67.59], [61.32, 94.63]], \"sentences\": [\"A small child is seen standing on the ground and begins boxing with another.\", \" The boy uses boxing gloves to hit a man in front of him also wearing gloves.\", \" The two continue to go at it and leave with the man standing up.\"]}, \"v_jRj8deMhPrQ\": {\"duration\": 123.67, \"timestamps\": [[0, 5.57], [5.57, 30.3], [31.54, 123.67]], \"sentences\": [\"A man in a black jacket is standing outside talking.\", \" People are skating on an ice rink.\", \" A man in a red hat is playing hockey and makes several goals.\"]}, \"v_D_xht_r3n54\": {\"duration\": 21.76, \"timestamps\": [[0, 13.93], [13.93, 21.76]], \"sentences\": [\"An older man is shown cleaning off a car in front of a home with a snow scraper.\", \" The camera pans around the car while the older man continues to push snow off of it.\"]}, \"v_mL7Ipu-HJ5M\": {\"duration\": 123.74, \"timestamps\": [[0, 123.74], [6.81, 29.7], [28.46, 64.96], [63.11, 103.32], [100.23, 123.74]], \"sentences\": [\"A woman is in a kitchen making a tomato sauce in the kitchen.\", \" The woman is showing the camera her plated food.\", \" The woman then grabs a green and a box of pasta.\", \" The lady then begins to stir the tomato sauce and puts greens into it.\", \" Lastly, the lady pours the pasta into the sauce.\"]}, \"v_rFXOInUQjKo\": {\"duration\": 73.53999999999999, \"timestamps\": [[0, 25.74], [35.67, 59.57], [59.57, 69.49]], \"sentences\": [\"A window cleaner in sneakers and a beanie is hanging up and cleaning a window with a towel, with other cleaners behind him hard at work.\", \" He lowers himself down to another section of the window and wipes it with a blade.\", \" The camera person pans around the environment.\"]}, \"v_wibcfckhRyU\": {\"duration\": 56.17, \"timestamps\": [[0, 56.17], [21.34, 28.09], [47.18, 49.99], [53.64, 56.17]], \"sentences\": [\"We see small boys playing tug of war in a field.\", \" A man in black walks past the kids.\", \"The kid in the white shirt lets go of the rope and puts his hands in the air.\", \" A lady walks up and talks to the kids.\"]}, \"v_VTtRk9vvZoY\": {\"duration\": 203.8, \"timestamps\": [[0, 61.14], [67.25, 203.8]], \"sentences\": [\"A stack of sticks are shown in a pile followed by a person speaking and holding up an object.\", \" A person's hands are then seen lighting a match into the pile and creating a fire when he shows his face once more in the end.\"]}, \"v_iyGve9RCjV4\": {\"duration\": 233.54, \"timestamps\": [[2.34, 120.27], [77.07, 227.7]], \"sentences\": [\"Two people are seen performing various martial arts with one another while a large group of people watch on the sides.\", \" More people stand in the middle and perform with one another and ends with people moving around and grabbing one another.\"]}, \"v_9khzc3a4zz0\": {\"duration\": 43.93, \"timestamps\": [[0, 43.27], [15.82, 16.91], [24.82, 26.14], [41.96, 43.93]], \"sentences\": [\"A woman is doing tricks with her jump rope.\", \" She does a hand stand while jump roping.\", \" She does a front flip while jump roping.\", \" She stops and walks forward.\"]}, \"v_vnlxIMiHKRQ\": {\"duration\": 183.35, \"timestamps\": [[1.83, 7.33], [9.17, 13.75], [14.67, 178.76], [50.42, 136.59], [85.26, 175.09], [102.67, 120.09], [147.59, 178.76]], \"sentences\": [\"The credits of the clip are shown.\", \" People are loading inflated tires into the body of water.\", \" People are floating on inflated tires.\", \" People are spraying elongated water guns.\", \" People are paddling canoes down the body of water.\", \" A guy present his can of beer.\", \"  The speed of the video is accelerated.\"]}, \"v_YDwHdB6MBrE\": {\"duration\": 94.16, \"timestamps\": [[0, 94.16], [0.47, 94.16], [59.79, 94.16]], \"sentences\": [\"Kids are playing lacrosse on a field.\", \" A woman in a blue jacket is standing on the field watching them.\", \" The kids are chasing around a yellow ball.\"]}, \"v_EpLRCz5dwb0\": {\"duration\": 32.02, \"timestamps\": [[0, 9.13], [9.13, 14.41], [26.58, 32.02]], \"sentences\": [\"A woman starts running down a track.\", \" She throws a javelin onto the field.\", \" She gives someone behind her a high five.\"]}, \"v_Rx9SIyFMfcY\": {\"duration\": 160.31, \"timestamps\": [[0, 4.01], [11.22, 23.25], [38.47, 114.62]], \"sentences\": [\"These people are shown exercising on the exercise bikes.\", \" These people are pedaling using only one leg and they're standing in the middle of the bike with the other one holding their hands up.\", \" Next they do a different exercise where they put one foot on the pedal, while they have one foot out and they bounce up and down.\"]}, \"v_V-kMGMX-l2g\": {\"duration\": 90.02, \"timestamps\": [[0, 11.25], [11.7, 81.47], [81.92, 90.02]], \"sentences\": [\"A woman stands on front a young lady and talks.\", \" Then, the woman and the young lady perform fitness exercise while the woman talks.\", \" After, the woman and the young lady stop exercising, and the woman talks while making gestures with her hands.\"]}, \"v_LVG7DLzI-GM\": {\"duration\": 66.54, \"timestamps\": [[6.65, 66.54], [9.65, 19.63], [19.63, 37.59], [38.26, 52.57], [52.57, 66.54]], \"sentences\": [\"A lady that works at a casino shows you how to play black jack.\", \"the lady deals out two card each 5 times and deals her self one card.\", \"the lady then explains what you are allowed to do with the cards that you where dealt with,she also deals out two more cards one each deck.\", \"finally she deals out two more cards to her self and shows the outcome from adding chips to the areas she dealt the card from the start.\", \"the lady then scoops up all the cards on the table and the round is over.\"]}, \"v_oq54_GlzK6A\": {\"duration\": 166.66, \"timestamps\": [[0, 3.33], [5, 155], [22.5, 27.5], [34.17, 134.16], [156.66, 166.66]], \"sentences\": [\"The first clip of the video shows the title sequence.\", \" A man is then shown in a bowling store speaking to the camera.\", \"  Another title slide introduces the next clip.\", \" As the man speaks to the camera, several clips are shown of a man rolling a bowling ball down the lane.\", \" The video ends with a clip showing the title logo and website information.\"]}, \"v_M-PQajs86Bo\": {\"duration\": 48.83, \"timestamps\": [[0, 48.83], [36.38, 40.04], [40.04, 44.93]], \"sentences\": [\"A man pushes a child on the swing set of a large park area.\", \" The man holds the swing and brings the child to a stop.\", \" The man pushes the swing to get the child started again.\"]}, \"v_CiCNA-Nr1QQ\": {\"duration\": 82.01, \"timestamps\": [[0, 82.01], [46.75, 72.99], [72.99, 82.01]], \"sentences\": [\"A man is at a bowling alley dressed in bowling clothes, shoes and wearing gloves as he takes turns rolling the ball down the lane and hitting pins.\", \" The man grabs the ball from the return and holds the ball and stands there for a while staring down the lane, and when he finally rolls it he makes a strike.\", \" When the strike is over, it then replays in slow motion.\"]}, \"v_QvBG_Da97h8\": {\"duration\": 58.14, \"timestamps\": [[0, 3.78], [4.65, 18.9], [19.77, 27.04], [29.65, 45.06], [47.68, 58.14]], \"sentences\": [\"A graphic introduces the hand car wash video.\", \" The car is washed first gently with soap.\", \" Next, the tires are soaped and washed thoroughly.\", \" After that, the car's engine is steam cleaned.\", \" A final spot free rinse is applied and the car is dried.\"]}, \"v_46D3Yvu-BL8\": {\"duration\": 143.11, \"timestamps\": [[0, 67.26], [39.35, 143.11]], \"sentences\": [\"A man is seen standing inside a large room and begins hitting a ball against a wall with a tennis racket.\", \" More shots of him hitting the ball are shown in the room and the ball rolls back to him in the end.\"]}, \"v_NVeTGvwk8y0\": {\"duration\": 87.61, \"timestamps\": [[0, 5.26], [7.01, 14.46], [16.65, 56.95], [68.77, 87.61]], \"sentences\": [\"A glass of tequila sunrise is shown.\", \" A man is talking in front of a display of alcoholic drinks.\", \" He places the ingredients of alcohol and juice on a table, added the ingredients, as well as grenadine to a tall glass with ice.\", \" He displays the beautiful drink on the table.\"]}, \"v_2vOBrR0jKgY\": {\"duration\": 193.25, \"timestamps\": [[0, 17.39], [18.36, 145.9], [146.87, 193.25]], \"sentences\": [\"A boy is talking in front of a camera in his room.\", \" He smokes a cigarette, then blows the smoke from his mouth.\", \" He begins making rings as he blows the smoke.\"]}, \"v_yjUMopRteDc\": {\"duration\": 87.34, \"timestamps\": [[0, 13.54], [14.85, 69.88], [73.81, 87.34]], \"sentences\": [\"A woman is seated as a person with gloved hands inserts a hole into her tongue.\", \" The person clamps her tongue, then inserts a piercing.\", \" She is then shown smiling and showing off her stud.\"]}, \"v_NQ51aXtD6Q0\": {\"duration\": 96.99000000000001, \"timestamps\": [[0, 28.61], [24.73, 71.77], [59.65, 92.14]], \"sentences\": [\"Several wrestlers are shown lined up in a game with a person choosing his characters.\", \" The game loads into people wrestling with one another in a ring.\", \" The men continue wrestling in the game and end by looking down at a player.\"]}, \"v_EZZMYzY6Pug\": {\"duration\": 33.09, \"timestamps\": [[3.64, 6.45], [6.45, 19.36], [19.36, 29.61], [29.61, 32.43]], \"sentences\": [\"There's a man demonstrating how to melt wax and coat surfaces with wax using an iron.\", \" He melts a piece of wax against the heated surface of the iron.\", \" Then he smears the wax and coats on a surface.\", \" After the wax cools and solidifies, he scrapes it off the surface.\"]}, \"v_IJER0EpbxW4\": {\"duration\": 25.66, \"timestamps\": [[0, 4.11], [5.52, 15.91], [16.93, 25.66]], \"sentences\": [\"A group of men are running across a gym.\", \" They run out into a ring together.\", \" They then engage in a wrestling match.\"]}, \"v_RQajzyqAcQM\": {\"duration\": 177.49, \"timestamps\": [[0, 23.07], [14.2, 31.06], [23.07, 61.23], [39.93, 44.37], [61.23, 93.18], [93.18, 150.86], [150.86, 177.49]], \"sentences\": [\"A boy talks to the camera at a beach.\", \" A man walks from right to left in the background.\", \" The boy interacts with a man in front of a sand castle.\", \" A woman walks from right to left in the background.\", \" Several still images of the boy and the man, sometimes with other people, are shown in front of he sand castle at various stages of completion.\", \" The boy, now with two smaller children, interact with the man who is still working on the sand castle.\", \" More still images of various groups of people beside the sand castle are shown.\"]}, \"v_TUhitcbJ5C4\": {\"duration\": 69.92, \"timestamps\": [[0, 69.92], [23.07, 28.32], [41.6, 44.05], [53.84, 60.83], [63.97, 68.17]], \"sentences\": [\"We see kids washing their hands in a class room at kid height sinks.\", \" We watch the boy try and get soap.\", \" The boy uses the soap dispenser again.\", \" The boy looks at the camera and talks.\", \" An adult grabs his hand when he attempts to get more soap.\"]}, \"v_sFMa1EP7d2M\": {\"duration\": 221.1, \"timestamps\": [[0, 35.38], [35.38, 88.44], [89.55, 162.51], [162.51, 221.1]], \"sentences\": [\"A bicycle flipped upside down is up against the wall as an orange change is shown.\", \"A person then comes and removes the chain from the bike and places it on the ground.\", \"The man then takes out a yardstick and begins to measure certain parts of the bike.\", \"Pieces are then removed and tightened with the wrench and rings are placed inside by where the chain goes.\"]}, \"v_uO9qoK8zGQc\": {\"duration\": 189.5, \"timestamps\": [[0, 45.48], [45.48, 57.8], [57.8, 69.17], [69.17, 78.64], [78.64, 116.54], [116.54, 156.34], [156.34, 167.71], [167.71, 189.5]], \"sentences\": [\"A man is doing Tai Chi moves on a beach alone in front of the sun.\", \" A group of people all dressed in white joins the man on the beach and does the martial arts moves.\", \" The man is alone again doing the moves.\", \" The people are with the man doing Tai Chi back on the beach.\", \" The man is alone on a hill doing the moves.\", \" The man is back on the beach doing the moves as the sun begins to set.\", \" The people are doing the moves with him on the beach.\", \" Words come across the screen.\"]}, \"v_iF9jetQ7OTE\": {\"duration\": 137.57999999999998, \"timestamps\": [[0, 30.27], [28.2, 35.77], [37.15, 104.56], [106.62, 137.58]], \"sentences\": [\"A boy in a hat is talking.\", \" He smokes something and blows the smoke into the air.\", \" He continues talking to the camera.\", \" He smokes from the pipe again and blows the smoke out a few more times.\"]}, \"v_VTwQgMELGVE\": {\"duration\": 52.41, \"timestamps\": [[0, 9.96], [9.7, 25.68], [25.68, 41.66], [41.14, 52.41]], \"sentences\": [\"A woman behind the bar talking, she has a bottle of corona.\", \" She sucks on the bottle of a few times.\", \" Then, she grabs it with just her mouth and holds it up chugging the beer.\", \"She chugs and chugs until it is completely empty.\"]}, \"v_Igm1Mx4Ng1k\": {\"duration\": 139.12, \"timestamps\": [[0, 33.39], [32.69, 97.39], [92.52, 130.78]], \"sentences\": [\"A person is seen wearing gear and wandering around a grassy area.\", \" The man uses a tool to cut along the grass.\", \" He continues moving along the grass and showing off the tool in the end.\"]}, \"v_s5oN3d77e50\": {\"duration\": 71.87, \"timestamps\": [[0, 64.32], [66.48, 67.55], [71.15, 71.87]], \"sentences\": [\"A person is riding a dirt bike over a hill.\", \" Someone stands on top of a dirt hill.\", \" People are standing on the side of the hill.\"]}, \"v_ZbS9R9faBQk\": {\"duration\": 44.35, \"timestamps\": [[0, 35.92], [38.59, 41.02], [40.8, 42.36]], \"sentences\": [\"A man is stirring a pot on a stove.\", \" A plate is brought over to the stove.\", \" He dishes out what was in the pan onto the plate.\"]}, \"v_njPRhj-YgE0\": {\"duration\": 110.97, \"timestamps\": [[0, 7.21], [7.21, 25.52], [24.97, 75.46], [75.46, 110.97]], \"sentences\": [\"Many different women wearing many different shoes are walking a dog on the sidewalk, one wearing wedges walks up some stairs.\", \" A man begins to talk about what seems like a dog stylist parlor.\", \" There are many dogs being groomed and getting cute fancy hair cuts.\", \" One of them is wagging it's tails very excited enjoying the situation.\"]}, \"v_NhM6jEV08s4\": {\"duration\": 13.42, \"timestamps\": [[0, 2.28], [2.75, 5.37], [5.23, 8.05], [8.52, 13.42]], \"sentences\": [\"Outside a lumbar jack is standing with an axe, he is dressed up in a coat to stay warm.\", \" There are plenty of logs piled up to the side of him.\", \" All cut and collected most likely by him for fires to keep the house warm during winter nights.\", \" He takes his axe and  hits the branch with it.\"]}, \"v_KnHUAc20WEU\": {\"duration\": 159.73, \"timestamps\": [[0, 16.77], [16.77, 38.34], [38.34, 63.09], [63.89, 159.73]], \"sentences\": [\"A large arena is shown with a large screen showing the athletes in the field.\", \"A man is then shown in a cage spinning around throwing a shot put that people begin to measure.\", \"Another man approaches the circle,repeats the action and begins to jump up in glee.\", \"More men approach the stand and it continues on until they have completed each of their turns then they turn to the audience and wave.\"]}, \"v_wCG7f6naJsQ\": {\"duration\": 235.43, \"timestamps\": [[0, 235.43], [5.89, 37.67], [29.43, 63.57], [70.63, 87.11], [78.87, 117.71], [114.18, 174.22], [165.98, 214.24], [213.06, 235.43]], \"sentences\": [\"There's a man working a bicycle wheel with various tools.\", \" He starts off by turning the axle of the wheel with a pair of tongs to position the axle in the center.\", \" Then he fixes the center nut and uses a wrench to loosen it.\", \" Then he uses his hands to remove the axle out.\", \" He uses another tool to unscrew a washer out of the axle.\", \" Then he uses a tool with a magnetic end to remove tiny metal particles out of the axle.\", \" After that he cleans the inside rim of the greasy axle with his finger.\", \" Then he takes the washer and cleans it further to fix it back into the axle.\"]}, \"v__hzMRy2_q4g\": {\"duration\": 159.07999999999998, \"timestamps\": [[3.18, 60.45], [42.16, 105.79], [104.99, 153.51]], \"sentences\": [\"A close up of fruit is seen sitting on a plate when a person's hand places them into a container.\", \" The person then pushes the fruit around the bowl with a spoon over and over again.\", \" The person drops the spoon in the mixture and ends with text across the screen.\"]}, \"v_sNeT1WZ9UwA\": {\"duration\": 99.82, \"timestamps\": [[0, 23.96], [17.97, 99.82]], \"sentences\": [\"A small group of people are seen sitting on horses and leads into them riding down along a dirt path.\", \" The camera follows the people riding along on the horses and leads to them back at the stables.\"]}, \"v_MOOeHWuuxlo\": {\"duration\": 49.74, \"timestamps\": [[7.96, 18.9], [18.9, 36.56], [36.56, 45.26]], \"sentences\": [\"There's a man in a gym using an elliptical machine.\", \" He is wearing a pair of black track pants, black shirt and a cap.\", \" He demonstrates how to use the elliptical correctly to maintain a consistent speed.\"]}, \"v_xW1M8k9A-gk\": {\"duration\": 210.93, \"timestamps\": [[0, 35.86], [34.8, 90.7], [90.7, 152.92], [152.92, 210.93]], \"sentences\": [\"A spoon is seen spinning around various foods and liquids and leads into a hand cutting up vegetables on a cutting board.\", \" A baby is seen watching from behind and the camera zooms in on various websites and foods present.\", \" Pasta is seen sitting in a pot and the person uses a spoon to spin it around.\", \" They pour ingredients into a pot to bowl and add more vegetables, ending with all the ingredients put together on a plate to present.\"]}, \"v_RgaFRpTYYR4\": {\"duration\": 70.13, \"timestamps\": [[0, 16.13], [13.67, 51.54], [46.28, 67.67]], \"sentences\": [\"A close up of a man is seen holding an accordion and sitting in front of a camera.\", \" The man begins playing the instrument while looking to the camera.\", \" He pauses to speak for a moment then continues on playing.\"]}, \"v_oOu5vC3EB5E\": {\"duration\": 65.13, \"timestamps\": [[0, 62.53], [2.61, 4.23], [17.26, 18.24], [40.06, 41.36], [51.45, 62.53], [63.18, 65.13]], \"sentences\": [\"A man wearing a yellow shirt and a man wearing a black shirt play racket ball.\", \" The man in black serves the ball.\", \" The man in yellow serves the ball.\", \" The man in yellow serves the ball again.\", \" The man in yellow plays alone while the man in black stands by.\", \" A hand covers the camera lens.\"]}, \"v_8J_bB1vI0uE\": {\"duration\": 161.82, \"timestamps\": [[1.62, 10.52], [12.14, 144.02], [144.02, 158.58]], \"sentences\": [\"A man stands atop a rock formation.\", \" Several scenes of individuals rock climbing are shown from various angles and settings, interspersed with brief closeup shots of the climbers.\", \" Several credits are shown on a black screen.\"]}, \"v_j_e8c6tOQG8\": {\"duration\": 116.89, \"timestamps\": [[0, 11.1], [21.04, 70.13], [80.07, 116.89]], \"sentences\": [\"Water is rushing between rocks in a river.\", \" Rafters appear, paddling through the rushing currents.\", \" The rafter continues as he navigates the river.\"]}, \"v_e1TfVkNgitY\": {\"duration\": 84.28999999999999, \"timestamps\": [[0, 4.21], [4.64, 21.07], [21.07, 35.82], [35.4, 58.58], [59.42, 84.29]], \"sentences\": [\"A blue logo appears across the screen with white words in it.\", \"A young male gymnast is then shown in a room in front of a balance beam.\", \"The gymnast then begins using his hands to describe the motions he is about to do.\", \"After,the male grabs the two bars and pulls himself up and holds his body up before going into a hand stand,he comes down,and does another one.\", \"The gymnast does several more tricks and then does a flip off of the bars.\"]}, \"v_7Ql7Hw6c1-o\": {\"duration\": 175.24, \"timestamps\": [[0, 21.91], [21.03, 72.73], [71.85, 86.74], [86.74, 133.18], [133.18, 143.7], [143.7, 175.24]], \"sentences\": [\"A woman dressed in a blue shirt and black apron begins talking behind the table.\", \"On the table,she has five different kinds of paint, brushes and other supplies needed to complete the task.\", \"She then begins talking as she leans on a wooden table stand next to her.\", \"The lady begins by taking a screwdriver and removing the knob from the drawer and wiping it down with a wet cloth.\", \"Next comes the brown paint as she begins putting various strokes on it to finish it.\", \"The stand is done but then goes back and starts add a finish on it.\"]}, \"v_ImXRDdhcCgs\": {\"duration\": 213.82999999999998, \"timestamps\": [[0, 5.35], [5.35, 9.62], [13.9, 204.21], [206.35, 213.83]], \"sentences\": [\"We see logs in a pile in the woods.\", \" A man in a cowboy hat walks up and grabs an ax.\", \" The man then goes around hitting the logs with the ax and splitting them in two hits.\", \" The man drops the ax and turns off the camera.\"]}, \"v_2gc7pCOg-NE\": {\"duration\": 155.57, \"timestamps\": [[0, 7.78], [8.56, 17.11], [8.56, 21], [21, 74.68], [73.9, 151.68]], \"sentences\": [\"A person is walking around a tennis court.\", \" Another man appears swinging around a tennis racket.\", \" He bounces a tennis ball on the floor while the other man walks into frame.\", \" They talk for a bit while walking around and preparing to play.\", \" The man run back and fourth and hit the ball off the wall to each other.\"]}, \"v_ILARi15rMWI\": {\"duration\": 55.54, \"timestamps\": [[7.78, 33.88], [33.88, 49.71], [49.71, 51.93]], \"sentences\": [\"There's a man on stilts jumping and doing stunts in an indoor gym.\", \" There are several spectators and judges watching him perform.\", \" After the man finishes his stunts, he gets off the stilts and the judges write down the scores.\"]}, \"v_RgWvaKWa7YU\": {\"duration\": 164.24, \"timestamps\": [[0, 164.24], [9.85, 163.41], [159.31, 164.24]], \"sentences\": [\"A band plays drums in a circle around a lead drummer.\", \"  The female drummers spinner their sticks while playing.\", \" The drummers hold up their sticks after completing the song.\"]}, \"v_axoyB4pypWY\": {\"duration\": 138.9, \"timestamps\": [[0, 9.03], [13.2, 20.84], [25.7, 109.73], [110.43, 138.9]], \"sentences\": [\"A couple of cages are on the ground.\", \" There are dogs sleeping in each cage.\", \" A man is shown on a field performing tricks with a dog and a bunch of frisbees.\", \" The dog catches, flips, and chases the frisbees.\"]}, \"v_N1-TZnH0jy4\": {\"duration\": 15.16, \"timestamps\": [[7.66, 12.66], [12.66, 15.16]], \"sentences\": [\"There's a little baby wearing a purple bib seated on a high chair holding and sucking on a Popsicle.\", \" The baby licks the Popsicle several times and then throws it down.\"]}, \"v_xx5TLuZmjcE\": {\"duration\": 6.85, \"timestamps\": [[0, 6.85], [0, 6.75], [0.27, 6.85]], \"sentences\": [\"woman wearing black clothes is playing squash in a small wooden room.\", \" man with a stripped shirt is standing in a court room playing squash.\", \" a man and a woman are standing ni a wooden court playing squash.\"]}, \"v_CwvtmoTWNgQ\": {\"duration\": 153.81, \"timestamps\": [[4.61, 148.43], [41.53, 78.44], [134.58, 148.43]], \"sentences\": [\"A windsurfer rides along choppy water across a canal with other riders in the background.\", \" The makes a turn of direction on his windsurfing board and pumps back and forth to maneuver it.\", \" A group of windsurfers ride together around a small dingy boat.\"]}, \"v_oOURAJ7nraU\": {\"duration\": 93.11, \"timestamps\": [[0, 31.19], [31.66, 78.21], [78.21, 93.11]], \"sentences\": [\"A male athlete is standing outside on a field stretching preparing himself to run.\", \"After he is ready,the man takes off running and does several long jumps into the pit.\", \"As he ends his last jump,two people come to the pit and start to measure the distance.\"]}, \"v_Mv2L6HxB2dk\": {\"duration\": 33.25, \"timestamps\": [[4.99, 17.12], [17.12, 27.27], [27.27, 31.09]], \"sentences\": [\"There are several people skating on the main road in the downtown area of a city at night.\", \" The street is lit up with street lights and stores along the sidewalk.\", \" The people skate through the road where there are no cars driving.\"]}, \"v_b1RAYvxWawA\": {\"duration\": 181.86, \"timestamps\": [[2.73, 65.47], [70.93, 147.31], [125.48, 179.13]], \"sentences\": [\"A camera pans all around a lake showing the trees and mountains as well as the canoe sitting in front of him.\", \" Another boy is seen riding along the water in a canoe as well as several others paddling by.\", \" More shots are shown of people riding in their canoes and capturing the scenery around them.\"]}, \"v_ZOczr9WCVig\": {\"duration\": 226.19, \"timestamps\": [[0, 10.18], [32.8, 50.89], [56.55, 81.43], [56.55, 105.18], [56.55, 132.32], [56.55, 148.15], [160.59, 180.95]], \"sentences\": [\"There are many different tiles being shown and there is wooden floors being shown.\", \" First the man removes the baseboard, then he gets a drill and puts screws in the floor.\", \" Then he draws lines to put tiles on the floor.\", \" I then see him with a machine that cuts tiles in half and he puts half of a tile on the floor.\", \" Then he smears cement onto the floor and lies the tiles on top of it.\", \" He hammers the tiles a little to make them lie flat.\", \" Then floor is now finished and he wipes the tiles off making them shiny.\"]}, \"v_ZnoSOqba2HM\": {\"duration\": 14.07, \"timestamps\": [[0, 13.86], [3.17, 13.86], [9.57, 10.41]], \"sentences\": [\"A baby is standing on the carpet.\", \" A person brushes the child's teeth with a blue toothbrush.\", \" The child reaches for the camera.\"]}, \"v_q4M7SsGjFro\": {\"duration\": 168.97, \"timestamps\": [[0, 157.99], [68.43, 71.81], [84.49, 91.24], [95.47, 100.54], [152.92, 157.99], [157.99, 168.97]], \"sentences\": [\"We see a girl performing with batons.\", \" The girl throws her leg in the air and spins.\", \" The girl does a cartwheel.\", \" The girl kneels down and picks up a baton.\", \" The girls finishes and throws her arms in the air.\", \" The girl walks over and hugs her dad.\"]}, \"v_um2h6O3zjGM\": {\"duration\": 45.78, \"timestamps\": [[0, 42.35], [42.58, 45.78]], \"sentences\": [\"A man is watching a game eating an ice cream cone.\", \" People are sitting behind a desk laughing.\"]}, \"v_lGPUCwHjiK0\": {\"duration\": 179.49, \"timestamps\": [[0, 35], [50.26, 113.08], [116.67, 179.49]], \"sentences\": [\"A man is preparing to run and jump.\", \" He runs very quickly down the track.\", \" He takes a flying jump over the high bar onto a mat.\"]}, \"v_-qtdjw3MYcY\": {\"duration\": 15.42, \"timestamps\": [[0, 15.42], [0.46, 15.42], [0.46, 14.88]], \"sentences\": [\"A girl is sitting down in a chair.\", \" Another person is standing behind her.\", \" The woman behind her begins braiding her hair.\"]}, \"v_Pd9qzQ2MOE8\": {\"duration\": 123.86, \"timestamps\": [[4.95, 65.64], [50.16, 120.76]], \"sentences\": [\"Two men are seen kneeling and sitting before a wall with one speaking to the camera and beginning to lay metal down on the side.\", \" The two line it up as well as drill the metal into place while continuing to drill down more while the man speaks to the camera and shows more shots of his crew working in the end.\"]}, \"v_2jpnkf-xgf0\": {\"duration\": 161.68, \"timestamps\": [[0, 161.68], [50.12, 147.94]], \"sentences\": [\"A woman bakes cookies on a silicone mat.\", \"  The ingredients are prepared and cookies are cut.\"]}, \"v_KmJFUfqGKZA\": {\"duration\": 219.57999999999998, \"timestamps\": [[0, 187.74], [58.19, 210.8]], \"sentences\": [\"An underwater coral reef is shown.\", \"  The scuba diver rides a horse and then looks at rays.\"]}, \"v_dffUIntKlGI\": {\"duration\": 84.75, \"timestamps\": [[0, 34.32], [23.73, 75.85], [75.43, 84.75]], \"sentences\": [\"A young child is seen running up and down a bricked area while standing in front of a hop scotch game drawn out.\", \" The girl then hops along the chalk while looking at the camera and holding her hair out of her face.\", \"  In the end she gives the person holding the camera a high give.\"]}, \"v_c9A384zijnk\": {\"duration\": 175.43, \"timestamps\": [[2.63, 117.54], [52.63, 172.8]], \"sentences\": [\"Various clips are shown of food close up as well as people speaking to the camera.\", \" Shots are shown of the outside of a restaurant as well as chefs cooking the food and people eating the food.\"]}, \"v_8Tyu4-JnfDc\": {\"duration\": 178.91, \"timestamps\": [[0, 4.47], [4.47, 33.1], [33.1, 84.09], [84.09, 155.65], [155.65, 178.91]], \"sentences\": [\"A white screen appears with a green logo and green and gray words appear and it says \\\"howdini get yourself a guru\\\".\", \" A brunette woman standing in a kitchen is talking and the words on the screen say \\\"Howdini Guru Cricket Azima Chef and Author\\\", then a green screen appears quickly and it say's \\\"Cookie Exchange Recipes\\\", and goes back to the woman talking.\", \"Cookies on a plate are shown and the words on the screen say they are \\\"Peanut Butter Blossoms\\\", and begins to show the woman pouring all the ingredients into a bowl to make them, rolling them in sugar, putting them on a tray for baking, and then showing the final product when they're done baking and the website to go to to see the full recipe.\", \"The woman is talking again and the next cookie she is shown making is called \\\"cookie snowballs\\\" and it shows all the ingredients needed, a list on how long to cook it for, and she's demonstrating step by step until it's all baked and on a plate next to the other cookies.\", \"The video ends with more pictures of other cookies she wasn't shown making, then to a green screen that has white words that include a message to go to their website if you want to see more videos of their cookie recipes.\"]}, \"v_FofBEedm80o\": {\"duration\": 205.99, \"timestamps\": [[0, 6.18], [6.18, 191.57], [192.6, 205.99]], \"sentences\": [\"The words \\\"Grandmaster Huang Sheng Shyan\\\" and \\\"Taiji Push Hands\\\" appear on screen.\", \" Several students individually approach the Grandmaster attempting to fight him and are pushed back quickly.\", \" The Grandmaster taps a student on the head and he quickly falls to the ground.\"]}, \"v_F_uouNToDWo\": {\"duration\": 106.42, \"timestamps\": [[0, 8.51], [8.51, 86.2], [87.26, 106.42]], \"sentences\": [\"A lady on a rowing machine in a gym sits still.\", \" The lady leans forward and works out slowly on the machine.\", \" The lady starts to row a little faster and the screen fades to black.\"]}, \"v_D4zZErqkD6A\": {\"duration\": 135.03, \"timestamps\": [[3.38, 81.69], [52.66, 124.9]], \"sentences\": [\"Two dancers are seen holding a pose in the middle of a large gymnasium and begin performing a routine using batons.\", \" The girls continue dancing and spinning around with the sticks and end by holding a pose.\"]}, \"v_Th0SMArnWiY\": {\"duration\": 207.77, \"timestamps\": [[0, 194.27], [22.86, 27.01], [36.36, 40.52], [79.99, 85.19], [102.85, 108.04], [116.35, 119.47], [127.78, 136.09], [155.83, 159.99], [169.33, 171.41], [195.31, 207.77]], \"sentences\": [\"We see BMX racers on the field and in various locations and riding their bikes.\", \" Two men fall off their bikes.\", \" We see the races start high on a platform.\", \" A man holds a surfboard and a man carries a bike up steps.\", \" We see a laughing man holding a surfboard.\", \" A lady throws a hand sign to the camera.\", \" We see aerial shots of the fields.\", \" A man takes a photo and a man holds a New Zeland flag.\", \" A man fall off his bike hard.\", \" The video fades to black.\"]}, \"v_YCrSiqY-TVw\": {\"duration\": 203.78, \"timestamps\": [[3.06, 81.51], [66.23, 145.7], [150.8, 202.76]], \"sentences\": [\"Various clips are shown of the inside and outside of an arena as well as the camera panning out from the ice and two people speaking to one another.\", \" Several shots are then shown of people curling and close ups of the pucks.\", \" More clips are shown of people playing the game as well as team mates watching.\"]}, \"v_MldEr60j33M\": {\"duration\": 25.87, \"timestamps\": [[0, 5.04], [6.34, 17.98], [18.11, 25.87]], \"sentences\": [\"A man in a white shirt bends over and picks up a large weight.\", \" He lifts the weight up to his shoulders.\", \" He bends down and lifts the weight over his head.\"]}, \"v_LtQTtCplKz0\": {\"duration\": 194.38, \"timestamps\": [[0, 6.8], [6.8, 11.66], [11.66, 114.68], [114.68, 128.29], [128.29, 157.44], [157.44, 162.3], [162.3, 178.82], [178.82, 194.37]], \"sentences\": [\"A man by the name of ALEX AL-AMEEN is smiling and talking and the words below his name say that he has been \\\"SELECTED FOR COMMONWEALTH GAMES 2014 110 METRE HURDLES\\\".\", \"A man is then shown on the track sitting on the ground prepping his feet for his shoes as he wraps tape around his foot.\", \" Three men are now walking to a track where various people are running and taking turns doing hop, skip and jumps.\", \"A man briefly stops and talks to the camera while he appears a little out of breath.\", \"Another man is now kneeling and applying tape next to the sandy area of the jump while he talks.\", \" The man is now standing at a bar bell with very heavy weights and he slowly starts to lift it, then drops it.\", \" A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he's pulling on an exercise equipment.\", \" The white outro screen appears with their logo and the words saying to subscribe to their youtube channel.\"]}, \"v_eudqfH7Vz_c\": {\"duration\": 175.32999999999998, \"timestamps\": [[0, 164.81], [0.88, 12.27], [16.66, 28.93], [31.56, 85.04], [86.79, 172.7]], \"sentences\": [\"Three boys play a game of croquet on a large green lawn with croquet mallets and croquet balls.\", \"  The boy sit on a bench outside with a bag of croquet mallets and balls and talk to each other.\", \"  The boys then enter the field and hurt themselves trying to untangle the croquet tools.\", \"  The boys then start to play, talking to each other through it and end up chasing each other through the field and tackling each other on the ground.\", \"  The boys finally look at a cell phone together from the field and then layer their croquet mallets on top of one another in a seeming attempt to get the balls through the croquet goal by guiding them through the holes in the layered mallets.\"]}, \"v_yOFIXQCbSqc\": {\"duration\": 37.57, \"timestamps\": [[0, 14.46], [13.71, 28.18], [23.48, 36.44]], \"sentences\": [\"A large group of people are seen swimming around a pool with a man talking on the side.\", \" The group begin throwing the ball around while swimming around each other.\", \" The group continues swimming and playing ball with each other.\"]}, \"v_jqRJM8b4pgE\": {\"duration\": 78.65, \"timestamps\": [[0, 34.21], [34.21, 55.84], [55.84, 70.78], [70.78, 78.65]], \"sentences\": [\"A man is sitting at a booth surrounded by pipes, talking and gesturing.\", \" The man holds up one end of the pipe.\", \" The man demonstrates how to smoke using the pipe, as he blows ringed smoke out of his mouth.\", \" He continues to talk and gesture.\"]}, \"v_hg-wVv7XSFo\": {\"duration\": 228.04, \"timestamps\": [[7.98, 12.54], [26.23, 36.49], [41.05, 66.13], [70.69, 131.13], [150.51, 164.19], [150.51, 212.08]], \"sentences\": [\"picture of  supplies that are needed to do hairstyle .\", \"Separate hair into two parts down the middle.\", \" French braiding hair from left to right all the way to the end.\", \" French braiding hair from the back going right to left all the way to the end.\", \"  Connect the braids together using a bobby pin.\", \" Separate the braids all over to make braids look fuller to form a crown.\"]}, \"v_DF9CGVGiKXY\": {\"duration\": 90.19, \"timestamps\": [[0, 77.56], [19.84, 65.39], [78.01, 90.19]], \"sentences\": [\"Five people are jump roping on a blue mat.\", \" They do flips and tricks while jump roping.\", \" They finish and hug each other before walking off.\"]}, \"v_1fmaEo3wzxg\": {\"duration\": 193.33, \"timestamps\": [[0, 2.9], [2.9, 7.73], [7.73, 14.5], [30.93, 64.77], [65.73, 94.73], [107.3, 186.56], [186.56, 193.33]], \"sentences\": [\"We see a black opening screen.\", \" A lady sits in a tattoo chair talking.\", \" We see the camera operator.\", \" The lady has a tattoo added to her back.\", \" The other lady sits in the chair.\", \" The second lady is being tattooed.\", \" We see the finished tattoos.\"]}, \"v_pQQb2FP1ewE\": {\"duration\": 124.07, \"timestamps\": [[0.62, 10.55], [12.41, 34.12], [36.6, 91.81], [98.63, 124.07]], \"sentences\": [\"Two men push a small private helicopter out of its shed.\", \" They land on a beach, then fly it over the clear ocean water.\", \" They skydive, opening their parachutes as they get closer to the water.\", \" They then scuba dive to the bottom and put on scuba gear to explore the ocean floor.\"]}, \"v_lKCDcLEby-Y\": {\"duration\": 139.65, \"timestamps\": [[9.78, 31.42], [34.91, 79.6], [79.6, 134.06]], \"sentences\": [\"A large group of people are seen standing around an area and lead into people playing tug of war.\", \" People in costume cheer them on as they continue to play as well as showing people dancing in the city.\", \" More pictures are shown of the event as well as people speaking to one another.\"]}, \"v_6VD_qwIgTzU\": {\"duration\": 109.37, \"timestamps\": [[3.83, 64.53], [42.65, 105.54]], \"sentences\": [\"A tattoo artist is seen tattooing a girls foot and leads into a man speaking to the camera.\", \" The man continues speaking to the camera as well as pointing and looking away.\"]}, \"v_vB00ah6E5E4\": {\"duration\": 37.79, \"timestamps\": [[0, 36.28], [36.47, 37.79]], \"sentences\": [\"A young boy plays the violin.\", \" He stops playing the violin.\"]}, \"v_ElXkXNbsZac\": {\"duration\": 192.17, \"timestamps\": [[0, 25.94], [27.86, 48.04], [49, 80.71], [81.67, 102.81], [103.77, 120.11], [120.11, 147.97], [147.97, 162.38], [169.11, 192.17]], \"sentences\": [\"A man in white apron and pants stands on a ladder holding a pencil and wallpaper.\", \" The man applies a strip of wallpaper to a wall and smooths with his hand.\", \" The man uses a rag and then a brush to smooth out thee wall paper to the wall surface.\", \" The painter uses a spatula and blade to trim a straight line on the wallpapers edge along the ceiling.\", \" The man gets down from the ladder and unrolls the wallpaper to the floor.\", \" The man continues to smooth out the lower section of the wallpaper with a brush down to the floorboard.\", \" The man trims the lower edge of the wall paper with a blade against the floor board.\", \" The man trims the corner of the wall paper from the ceiling down the the floor.\"]}, \"v_AWAMhmc08Cw\": {\"duration\": 140.76, \"timestamps\": [[2.82, 73.2], [45.75, 135.13]], \"sentences\": [\"Two children are seen sitting in a tub rubbing their faces and another person's hands interacting.\", \" The boy continues to rub water all over his face as well as play with toys and smile at the cameraman.\"]}, \"v_PpC4kPd5KfA\": {\"duration\": 175.49, \"timestamps\": [[0, 7.9], [9.65, 71.95], [89.5, 175.49]], \"sentences\": [\"A man walks up to a lane in a bowling alley.\", \" He throws the ball and watches it glide down the lane multiple times.\", \" It knocks down all but two pins, which he misses the second time.\"]}, \"v_8jJdHFW-lys\": {\"duration\": 102.8, \"timestamps\": [[0, 102.8], [7.2, 102.8]], \"sentences\": [\"little girl is in stage in a competition and do a jump into a parallel to do gymnastics and somersaults.\", \" peolpe is standing behind the stage talking.\"]}, \"v_dx5VK79QWlg\": {\"duration\": 24.1, \"timestamps\": [[0, 20.13], [16.27, 17.11], [21.45, 22.78]], \"sentences\": [\"A woman is knitting in bed.\", \"  The woman puts her arms down to catch the yarn.\", \"  The woman shows what she was making.\"]}, \"v_AGDsfpZQBIs\": {\"duration\": 20.69, \"timestamps\": [[0, 20.69], [7.03, 14.07], [14.17, 20.69]], \"sentences\": [\"People are standing on a field of grass.\", \" A man holds a ball near his neck and spins around.\", \" He throws it onto the field.\"]}, \"v_t1MXansbY5s\": {\"duration\": 45.0, \"timestamps\": [[0, 3.83], [3.15, 7.2], [12.15, 27], [22.73, 31.95]], \"sentences\": [\"A woman opens a white closet door.\", \" She removes some shoes from the closet.\", \" She puts on the shoes.\", \" She then laces them up.\"]}, \"v_X4P9YA6Oabg\": {\"duration\": 231.06, \"timestamps\": [[0, 54.3], [63.54, 166.36], [173.3, 231.06]], \"sentences\": [\"A young blonde lady is talking to the camera inside her room.\", \" She separates her hair into sections.\", \" She then shows how to braid the sections and pin it in place.\"]}, \"v_NB4IBjUmrcI\": {\"duration\": 26.91, \"timestamps\": [[0, 3.36], [4.17, 26.91]], \"sentences\": [\"A man is indoors, wearing boxing gloves.\", \" He is kickboxing with a large punching bag, kicking and punching it over and over.\"]}, \"v_NzL_uQyQjIw\": {\"duration\": 183.03, \"timestamps\": [[3.66, 23.79], [24.71, 44.84], [45.76, 64.06], [64.06, 68.64], [69.55, 104.33], [104.33, 183.03]], \"sentences\": [\"People walk holding surfboards, then they board a boat.\", \" A man water ski behind the boat jumping high and spinning.\", \" Then, a woman and a man water ski doing acrobatic jumps.\", \" A boat sails empty in the river.\", \" After, men water ski jumping and turning around.\", \" Next, a person surf on the waves created by the boat, after the man water ski jumping and flipping high.\"]}, \"v_TYRDXDR5l9U\": {\"duration\": 50.2, \"timestamps\": [[0, 7.78], [8.79, 38.15], [38.15, 50.2]], \"sentences\": [\"A person is seen standing before a sink with running water and pushing their hands under the water.\", \" They then put soap into their hands, scrub for a bit, and then run their hands under the water.\", \" Finally she runs her hands under the water and dries her hand off with a paper towel.\"]}, \"v_nv22QK8brp4\": {\"duration\": 94.08, \"timestamps\": [[0, 94.08], [81.85, 88.43]], \"sentences\": [\"On a river, people gather to watch people on donuts and boats kayaking rough waters.\", \" A couple of people on a kayak are flipped over and fall into the river.\"]}, \"v_uwxuvGci98g\": {\"duration\": 151.63, \"timestamps\": [[0, 42.46], [42.46, 119.03], [119.79, 151.63]], \"sentences\": [\"A female with a long blonde pony tale begins running across a large green field throwing a ball.\", \"She then continues running across the field and begins looking at the bleachers and anticipating a softball game.\", \"As the action continues,she progresses through the bleachers and a url appears on the last screen to watch live cricket games.\"]}, \"v_VbzzcpsAPo8\": {\"duration\": 73.06, \"timestamps\": [[0, 37.99], [37.99, 65.03], [65.03, 73.06]], \"sentences\": [\"A black and white video plays and one of the men is Bruce Lee and he's very skillfully and creatively hitting the ping pong ball back and forth to another man who is holding a ping pong paddle, while Bruce Lee hits the ping pong ball with nanchucks and the man with a paddle can't keep the ball on the table.\", \" Now there are two men at the end of the table who are both holding paddles and playing against Bruce Lee as they attempt to keep the ball on the table but ultimately fail.\", \" A black screen appears with white Asian lettering in the middle, then a website that say's \\\"www lee35 come cn\\\".\"]}, \"v_S47vfJ9g3Mw\": {\"duration\": 187.34, \"timestamps\": [[0, 12.18], [0, 187.34], [14.05, 31.85], [14.05, 180.78], [161.11, 164.86], [182.66, 187.34]], \"sentences\": [\"The video begins with a title screen and an intro which shows various works of art.\", \" The topic is about Chinese paintings of waterfalls and rocks.\", \" An older Chinese man speaks to the camera.\", \" He then begins painting as the camera pans down to view how he does it.\", \" At one point, the camera focuses back to his face for a moment.\", \" The video ends with another title screen.\"]}, \"v_8qIl-0XOguM\": {\"duration\": 213.37, \"timestamps\": [[0, 37.34], [37.34, 72.55], [72.55, 86.41], [86.41, 125.89], [125.89, 134.42], [136.56, 154.69], [156.83, 213.37]], \"sentences\": [\"The camera follows several people on a walkway from a first person perspective.\", \" The camera shows sliding down a snowy slope from a first person perspective alongside others.\", \" The camera shows sliding down a snowy slope from a first person perspective looking backwards.\", \" The camera shows another slide down the slope from a first person perspective alongside others.\", \" The camera watches as multiple other people slide down the slope.\", \" The camera catches another slide down the slope from a first person perspective while spinning.\", \" The camera catches more slides down the slope from a first person perspective while looking left and right.\"]}, \"v_sg5z7jus30w\": {\"duration\": 208.01, \"timestamps\": [[0, 34.32], [34.32, 162.24], [164.32, 208.01]], \"sentences\": [\"A person is seen sitting in a chair with his arm out getting a tattoo from a male artist.\", \" The men speak back and fourth to one another and the camera zooms in on the arm being done.\", \" In the end pictures of the men standing together are shown as well as the tattoo.\"]}, \"v_gBOWkZBlc8g\": {\"duration\": 126.22, \"timestamps\": [[5.05, 71.32], [47.97, 121.18]], \"sentences\": [\"A large group of people are seen swimming around an ocean while two men pass a soccer ball back and fourth to one another on the shore.\", \" More people walk in and out of frame as the men continue to kick the ball back and fourth to one another.\"]}, \"v_kkjBLmM6KEg\": {\"duration\": 125.68, \"timestamps\": [[0, 5.66], [6.28, 119.4], [120.02, 125.68]], \"sentences\": [\"A woman speaks to the camera while holding a card.\", \" A couple appears on a professional stage under a spotlight and performs a dance routine.\", \" The pair finishes their routine, he kisses her hand and the audience applauds.\"]}, \"v_lue8XE3MEe8\": {\"duration\": 85.36, \"timestamps\": [[0.43, 85.36], [0.43, 2.13], [2.56, 32.44], [32.86, 85.36]], \"sentences\": [\"A man dressed in black shorts, t-shirt, sneakers and red baseball cap walks into an orange walled room with hardwood floors and demonstrates an arm lift exercise with two metal black dumbbells.\", \"  An orange walled room is empty except for two black dumbbells lying horizontal on the floor.\", \"  The man walks into the room  and stands in front of the dumbbells and then falls to his knees where he talks and shows his profile and then turns, on his knees, again, to face the camera head on.\", \"  The man then picks up the dumbbells and begins lifting them directly over his head, facing the camera, and then again from a profile angle, before placing the dumbbells down, vertically, and leaving the room.\"]}, \"v_Q-dFr9ZS29s\": {\"duration\": 96.92, \"timestamps\": [[0.48, 91.59], [3.39, 17.93], [14.54, 39.74], [44.1, 95.95]], \"sentences\": [\"A young girl talks to a video camera with a curler in her bangs, occasionally holding a cell phone up to her face and introducing a younger person in the room with her in the background.\", \"  The girl with curler in her bang talks to camera in a closeup angle.\", \"  The girl points to the curler in her bang and holds up a cell phone to throw light onto her face which she brings closer to the camera.\", \"  The girl laughs when a younger girl in the room with a pink wig on is shown in the background, she laughs again when the younger girl puts her pink wig in the camera.\"]}, \"v_s7HB851cCrg\": {\"duration\": 123.11, \"timestamps\": [[0, 20.31], [26.47, 102.8], [113.26, 123.11]], \"sentences\": [\"A bunch of men are inside a green colored gym.\", \" They are lobbing a tennis ball back and forth.\", \" They are engaged in a game of tennis.\"]}, \"v_-JhWjGDPHMY\": {\"duration\": 149.28, \"timestamps\": [[0, 7.46], [25.38, 132.11], [132.86, 135.85]], \"sentences\": [\"A man is sitting on a roof.\", \" He starts pulling up roofing on a roof.\", \" A man walks up a ladder onto the roof.\"]}, \"v_mo_PhyaQHh0\": {\"duration\": 59.56, \"timestamps\": [[0.6, 16.97], [17.57, 42.59], [35.14, 57.48]], \"sentences\": [\"A boy is seen kneeling down before a wall and begins using a tool on the carpet.\", \" The man rubs his hand along the carpet and continues cutting.\", \" The man continues to cut along the rug while rubbing his hand across.\"]}, \"v_Mzt-E6pxuUI\": {\"duration\": 138.46, \"timestamps\": [[0, 21.46], [21.46, 41.54], [41.54, 61.61], [61.61, 110.08], [110.08, 138.46]], \"sentences\": [\"A young blonde boy is standing at a kitchen sink with a handheld sprayer in his hand and he's spraying all the dishes.\", \" The boy then puts the sprayer in a green pot on the counter and begins spraying the water in there.\", \" The boy drops the sprayer then takes a cup from the sink, fills it with water then pours the water into the pot, fills it again and pours it into a bowl on the counter.\", \" The boy then picks up a clear glass filled with red liquid, drinks some of it, puts it under the faucet and adds water to it, drinks it a few times then dumps it out into the sink.\", \"The boy then takes a dish from the sink that has the red juice and tries to pour it into the pot on the counter but instead it spills all over the counter instead and he gets a sponge and tries to clean it up.\"]}, \"v_2qcdjyT7nDY\": {\"duration\": 225.75, \"timestamps\": [[0, 5.64], [5.64, 156.89], [39.51, 47.41], [80.14, 86.91], [144.48, 155.76], [154.64, 168.18], [172.69, 206.56], [208.81, 225.75]], \"sentences\": [\"We see cheerleaders standing on the stage.\", \" The cheerleaders perform a routine.\", \" Four girls are lifted and they hold one girl in between them laying down.\", \" Ladies hold ladies who hold and shake their pom poms.\", \" Four ladies are lifted and hold two other ladies then a seventh lady.\", \" the team finishes and hugs.\", \" We see ending credits and still shots.\", \" A quote and  website appears on the screen.\"]}, \"v_YTWXDIMEjpg\": {\"duration\": 226.16, \"timestamps\": [[0, 30.53], [12.44, 142.48], [57.67, 200.15], [199.02, 226.16]], \"sentences\": [\"Several shots of a lake are shown followed by a person climbing behind a boat on a wake board.\", \" The person rides the wake board along the water while several cameras capture his movements and jumps behind the boat.\", \" The camera captures the person driving the boat as well as following the wake boarder close behind the boat.\", \" In the end three boys are riding the boat and driving along.\"]}, \"v_I0w8zmcO_Cw\": {\"duration\": 94.53, \"timestamps\": [[0, 10.87], [14.18, 64.28], [66.17, 94.53]], \"sentences\": [\"A man stops his bike on the sidewalk.\", \" He jumps down to look at the wheel, then uses a tool to press into the rubber.\", \" He continues talking about the tool before joining in a bike race, then going back to talking on the sidewalk.\"]}, \"v_arhhcCWkAoM\": {\"duration\": 76.28, \"timestamps\": [[0, 76.28], [16.78, 22.5], [27.46, 50.72], [52.63, 62.17]], \"sentences\": [\"Men swing around with a hammer throw ball before releasing it.\", \" A man does pull ups on a bar.\", \" A man lifts a large weight on his shoulders and also shoulder presses it above his head.\", \" Two men run track together.\"]}, \"v_4o1k3KUHz6E\": {\"duration\": 37.5, \"timestamps\": [[0, 4.31], [4.5, 9], [9.56, 21], [22.5, 26.81], [26.63, 37.5]], \"sentences\": [\"A flag waves on a pole in a field.\", \" We see a mascot roll a ball to home plate and fall when its kicked back and hits him.\", \" We then see the mascot kick the ball and run a home run.\", \" The mascot runs and catches a ball in the field.\", \" The mascot high fives a line of people and chest bumps the last man knocking him over.\"]}, \"v_ahVeDMNS9ws\": {\"duration\": 208.12, \"timestamps\": [[1.04, 93.65], [86.37, 192.51]], \"sentences\": [\"A close up of sneakers is shown followed by a person holding up various objects and mixing them together in a bowl.\", \" The person then uses a tooth brush all around the shoe using the ingredients and showing off the shoe.\"]}, \"v_M2ntxFBPaug\": {\"duration\": 207.66, \"timestamps\": [[2.08, 99.68], [101.75, 126.67], [126.67, 151.59], [151.59, 186.89]], \"sentences\": [\"A person explains holding a racket and making moves with a racket in a tennis court.\", \" Then a man wearing black clothes serves a tennis ball that is returned, and he sends it back.\", \" Then, the person talks holding two ball, after the man serves again and the person talks.\", \" After, the man continues talking.\"]}, \"v_y0_lTTdKkro\": {\"duration\": 96.99000000000001, \"timestamps\": [[1.45, 43.65], [27.64, 88.75]], \"sentences\": [\"A goalie is seen in several clips running back and fourth and blocking balls from getting by.\", \" The player continues running back and fourth while another man sits in front of him.\"]}, \"v_F79Tzy2i7bI\": {\"duration\": 57.08, \"timestamps\": [[0, 57.08], [7.42, 34.82], [36.53, 51.65]], \"sentences\": [\"A baby eats bread in a high chair.\", \" A person puts something in the baby's eyes.\", \" A person messes with the baby's hair.\"]}, \"v_QLACTCzs0R0\": {\"duration\": 47.18, \"timestamps\": [[0, 47.18], [0, 4.48], [4.01, 6.61], [6.13, 19.58], [19.35, 38.69], [38.22, 47.18]], \"sentences\": [\"A large group of Navy soldiers are shown on a dock playing a game of tug of war.\", \" On one side of the rope is a team pulling as hard as they can while being cheered on.\", \" Another Navy soldier is shown taking pictures of the game.\", \" The other side of the rope is shown.\", \" One team is pulled over a red line on the ground, ending the game.\", \" The men stand up to relax.\"]}, \"v_DQXJ8OU7Ox4\": {\"duration\": 170.46, \"timestamps\": [[0, 5.11], [5.11, 131.25], [131.25, 170.46]], \"sentences\": [\"An introduction comes onto the screen for a female weight lifting competition.\", \" One of the female weight lifters is shown on the screen as she goes through several increasing levels of lifts one by one.\", \" When she finally reaches a weight that is too heavy for her to lift, she leaves the challenge.\"]}, \"v_4zFiORtQrlA\": {\"duration\": 106.37, \"timestamps\": [[0, 40.95], [40.95, 73.93], [77.65, 106.37]], \"sentences\": [\"A man in polo shirt stands with a bike on a rack and demonstrates it's different features in a bike shop.\", \" The man takes out a tool and makes an adjustment to the wheel sprocket then turns the wheel before adjusting more.\", \" The man adjusts a shifter on the handlebars.\"]}, \"v_uZCov5TG-Y8\": {\"duration\": 70.64, \"timestamps\": [[0, 69.58], [38.5, 40.97]], \"sentences\": [\"A man is ironing a shirt on an ironing board.\", \" Bags are shown sitting on the bed.\"]}, \"v_tQmsDeu1d6M\": {\"duration\": 131.91, \"timestamps\": [[1.98, 56.72], [31.66, 102.89], [106.85, 129.27]], \"sentences\": [\"A small group of people are seen swimming around the wall while the camera pans around and watches them.\", \" The kids continue to move around the water as adults walk by as well.\", \" More shots are shown of kids playing in the sand.\"]}, \"v_GPWXB0wy5dY\": {\"duration\": 23.41, \"timestamps\": [[1.64, 8.08], [8.08, 15.68], [15.68, 22.12], [22.12, 23.41]], \"sentences\": [\"The video that is shot horizontally shows several people windsurfing in the ocean on a sunny day.\", \" One of the surfers is going at very high speed against the waves.\", \" One surfer on an orange surf comes at top speed and loses control and falls into the water.\", \" The surfer with blue sails manages to stay on board as he surfs in the ocean.\"]}, \"v_NRhoHN8x_00\": {\"duration\": 84.15, \"timestamps\": [[2.95, 75.74], [16.41, 33.66]], \"sentences\": [\"An older woman is seen sitting before a drum set playing a set of drums.\", \" She spins the drums around through her finger tips and continues playing the instrument while the camera captures her.\"]}, \"v_xR9VOguQeKM\": {\"duration\": 208.35, \"timestamps\": [[14.58, 25], [26.04, 104.18], [104.18, 137.51]], \"sentences\": [\"A man performs high jump with a pole, he jumps over three horizontal lines that touches two of them.\", \" The man attempts to jumps higher than while jumping with the pole.\", \" Again, the man attempt to jump higher but he makes fall the horizontal line.\"]}, \"v_fJyxb59mA-A\": {\"duration\": 54.92, \"timestamps\": [[0, 2.47], [2.47, 51.62], [14, 19.22], [21.69, 48.88], [49.15, 54.92], [51.9, 52.72], [54.37, 54.92]], \"sentences\": [\"We see a man sitting on a couch.\", \" The man is playing the bagpipe.\", \" The man laughs and stops playing.\", \" The man starts playing the bagpipe again.\", \" The man laughs hard again.\", \" The man stops playing the bagpipe.\", \" The man waves his hand in front of the camera.\"]}, \"v_q0L4clHNIbc\": {\"duration\": 126.69, \"timestamps\": [[0, 27.87], [27.87, 60.81], [60.81, 93.12], [93.12, 126.69]], \"sentences\": [\"A woman is outside shoveling with a robohandle.\", \" It is making the process much quicker because it is a decent size and picks up a lot of the snow at once.\", \" She is making a lot of progress in such a small window of time using this snow robohandle.\", \" The handle honestly just looks like two large shovels though.\"]}, \"v_SLv4rEkiYaU\": {\"duration\": 73.63, \"timestamps\": [[0, 5.15], [5.15, 34.61], [34.61, 73.63]], \"sentences\": [\"Text appears on the screen briefly.\", \" An elephant rides past a cow.\", \" People are in a tube on a river.\"]}, \"v_WRXSn7DyaoI\": {\"duration\": 141.43, \"timestamps\": [[0, 141.43], [11.31, 105.37], [120.93, 141.43]], \"sentences\": [\"People are dancing on a dance floor at a wedding.\", \" A woman in a wedding dress is dancing with a man in a tuxedo.\", \" A man in a purple shirt is dancing with a woman.\"]}, \"v_6LX02yo9iGo\": {\"duration\": 155.62, \"timestamps\": [[0, 59.14], [87.15, 151.73]], \"sentences\": [\"People prepare for a BMX bike race.\", \"  A person lines up and then goes.\"]}, \"v_n33Uv--Lbl4\": {\"duration\": 37.18, \"timestamps\": [[0, 2.04], [3.53, 5.39], [22.12, 27.32]], \"sentences\": [\"A girl in a yellow shirt is brushing her teeth in a bathroom.\", \" A girl next to her in a blue shirt is also brushing her teeth.\", \" They are both looking in the mirror.\"]}, \"v_ybFvomdhW2Y\": {\"duration\": 183.09, \"timestamps\": [[0, 18.31], [23.8, 80.56], [82.39, 159.29], [160.2, 183.09]], \"sentences\": [\"A woman is speedily riding a recumbent bike in the kitchen.\", \" She sits by the stove, cracking eggs into a pan and making an omelet while she rides.\", \" She stirs the egg, then plates it while still riding.\", \" She then eats while she continues to ride.\"]}, \"v_1aCwFDS0j2A\": {\"duration\": 75.74, \"timestamps\": [[0, 44.69], [46.2, 75.74]], \"sentences\": [\"A woman is seen kneeling on a mat in a back yard and leads into her bending backwards using her hands.\", \" She then puts her hands all the way down on the ground while still continuing to look up.\"]}, \"v_iPHZeElXYXU\": {\"duration\": 176.46, \"timestamps\": [[0, 2.65], [3.53, 165.87], [15, 60.88], [64.41, 120.88], [164.11, 165.87], [166.76, 176.46]], \"sentences\": [\"We see a white opening screen.\", \" We see a lady ironing a shirt on an ironing board and talking to the camera.\", \" The lady irons a sleeve.\", \" The lady irons the back of the shirt.\", \" The lady finishes and holds the shirt up.\", \" We see a bright title closing screen.\"]}, \"v_3K62qZ2hGyw\": {\"duration\": 128.62, \"timestamps\": [[0, 4.5], [5.14, 19.29], [19.94, 124.11], [20.58, 24.44], [28.3, 49.52], [92.6, 96.46], [99.68, 125.4], [124.76, 126.04], [125.4, 128.62]], \"sentences\": [\"We see the title screen for Howcast.\", \" A lady is standing in a white room talking to the camera.\", \" The lady shows us how to belly dance by dancing.\", \" She shifts to her right then back and lifts her hips while belly dancing.\", \" The lady shows how to lift your hips one at a time.\", \" She pats her head and shakes her hips faster.\", \" The lady shakes her hips faster and waves her arms over her head.\", \" She stops dancing and stands still.\", \" The ending credits load on the screen.\"]}, \"v_OEBSls79Ths\": {\"duration\": 65.06, \"timestamps\": [[0, 52.7], [52.7, 65.06], [47.17, 55.95]], \"sentences\": [\"A gymnast performs on the uneven bars while spectators watch the performance.\", \"The gymnast end the performance and great the audience, and then she join her friends to wait for the score.\", \" A woman watch the gymnast and applaud.\"]}, \"v_u08gU4eQFHY\": {\"duration\": 9.45, \"timestamps\": [[0, 4.39], [4.91, 9.45]], \"sentences\": [\"A weight lifter is in a gym, and he lifts a barbell.\", \" He lifts it over his head, then drops it to the ground before walking away.\"]}, \"v_7TOw39_59xo\": {\"duration\": 112.78, \"timestamps\": [[0, 36.65], [24.81, 87.97], [64.85, 109.4]], \"sentences\": [\"A close up of several cars are seen that leads into a person cleaning the cars.\", \" The person wipes down the front of the cars with a rag including along the tires.\", \" The cars are shown lined up afterwards and shown all cleaned off.\"]}, \"v_u9JhQ0xSSJI\": {\"duration\": 30.35, \"timestamps\": [[0, 30.35], [0.15, 30.2]], \"sentences\": [\"A marching band parades down the street.\", \" People on both sides of the street watch the parade and applaud.\"]}, \"v_yeUuZ9vk5gE\": {\"duration\": 63.18, \"timestamps\": [[1.9, 25.9], [25.27, 63.18]], \"sentences\": [\"A person is seen placing dough balls onto a pan and then placing them into an oven.\", \" She then takes them out of the oven and puts the cookies onto a plate.\"]}, \"v_G_Nzm0WkGEI\": {\"duration\": 127.06, \"timestamps\": [[0, 22.24], [20.96, 56.54], [55.91, 127.06]], \"sentences\": [\"A young child is seen ironing a shirt on a table and looking into the camera.\", \" The boy continues pretending to iron the shirt and eventually puts a dress on the table to iron.\", \" He irons the dress and swings it around.\"]}, \"v_AKQqaMyZtf8\": {\"duration\": 153.89, \"timestamps\": [[0, 153.89], [8.46, 153.89], [51.55, 153.89], [124.65, 153.89]], \"sentences\": [\"A man walks with a leaf blower.\", \" He blows leaves on the ground.\", \" The leaves move against the asphalt.\", \" The man blows another man with the blower.\"]}, \"v_IAqNteMxXNk\": {\"duration\": 106.28, \"timestamps\": [[0, 49.95], [31.88, 83.43], [63.77, 102.56]], \"sentences\": [\"A man is seen standing behind a counter speaking to the camera and holding up cleaning products.\", \" He puts the products into a sink and begins scrubbing around the sides.\", \" He wipes down the counter and shows off the finished sink.\"]}, \"v_SxIJ6MjcgnY\": {\"duration\": 152.82999999999998, \"timestamps\": [[0, 30.57], [30.57, 71.83], [71.83, 116.15], [116.92, 152.83]], \"sentences\": [\"A man throwing the frisbee to his dog and the dog catches.\", \" One owner does a hand stand a throws the frisbee to his dog, who is able to catch.\", \" Many owners and dogs throwing and catching frisbees and doing tricks while doing so.\", \" A woman opens her arms and her dogs jumps into them, she catches the dog.\"]}, \"v_-YreL-4QCLg\": {\"duration\": 41.75, \"timestamps\": [[0, 2.3], [2.92, 17.12], [17.74, 41.33], [33.19, 36.95]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy holds a lacrosse stick and instructs.\", \" A guy moves a ball with the lacrosse stick.\", \" A guy tosses a ball into a goal.\"]}, \"v_0ZzKrBk1ac8\": {\"duration\": 57.31, \"timestamps\": [[0, 53.58], [43.84, 45.56], [54.44, 57.31]], \"sentences\": [\"A man and a woman are arm wrestling on a table.\", \" A woman in a white shirt walks past them.\", \" The woman wins and walks away.\"]}, \"v_lydctNDJZ5o\": {\"duration\": 96.15, \"timestamps\": [[0, 96.15], [2.88, 26.44], [25, 47.6], [42.79, 61.06], [54.81, 71.15], [65.87, 80.29], [78.85, 96.15]], \"sentences\": [\"There are two teams represented by the color green and color white playing lacrosse against each other in an outdoor field.\", \" The player from the green team begins running with his stick alongside his opponent to go towards the ball.\", \" The two team come head to head as they scramble to hit the ball in the goal.\", \" The green team players run fast to prevent the white team from getting the ball.\", \" The white team players try to keep up with their opponents and focus on hitting the ball in the goal.\", \" Two players from both team come running towards each other and fight for the ball, causing one of the green team players to fall down.\", \" They take a break to before they can restart the game as they walk towards the side of the field.\"]}, \"v_DRHW4FvSKdw\": {\"duration\": 22.04, \"timestamps\": [[0, 18.84], [18.84, 21.82]], \"sentences\": [\"A dealer at a casino table deals out to several customers while there's a constant stream of activity in the background.\", \" One of the players starts laughing.\"]}, \"v_NGvote9Y6gI\": {\"duration\": 79.76, \"timestamps\": [[0, 79.76], [21.14, 42.27], [46.26, 49.45], [62.21, 79.76]], \"sentences\": [\"We see cards sitting on table with chips.\", \" The dealer deals more cards.\", \" The dealer points at two cards.\", \" The dealer turns a card over and takes the man's chips.\"]}, \"v__wHyOKf_fhc\": {\"duration\": 173.77, \"timestamps\": [[0, 13.03], [13.03, 149.44], [149.44, 173.77]], \"sentences\": [\"An advertisement display the presentation of two dancers.\", \" The couple is dancing holding hands turning both around.\", \" The woman turns around holding the hand of the man.\"]}, \"v_lq-8Y-YLcNI\": {\"duration\": 44.98, \"timestamps\": [[0, 17.09], [17.09, 30.36], [30.36, 44.98]], \"sentences\": [\"women are walking on a lakeside and are putting their shoes and harness.\", \" women are climbing a rock wall attached to an harness.\", \" woman is going down and when is in the floor shake hands with he other woman.\"]}, \"v_5rkAMBttgPc\": {\"duration\": 77.81, \"timestamps\": [[0, 8.17], [8.56, 14.01], [16.73, 36.18], [36.96, 44.74], [46.3, 48.24], [52.91, 65.36], [69.25, 77.81]], \"sentences\": [\"A woman is standing behind a counter holding a martini glass.\", \" She dumps some ice into the glass.\", \" She puts some ice into another glass and adds shots of alcohol.\", \" She shakes the drink in a black shaker.\", \" She pours the ice out of a martini glass.\", \" She pours the drink into the martini glass.\", \" She holds up the martini glass in her hand.\"]}, \"v_UxhKb-zZoWE\": {\"duration\": 126.83, \"timestamps\": [[0, 31.71], [29.8, 89.41], [83.71, 116.68]], \"sentences\": [\"Two sumo wrestlers are seen fighting that leads into people walking in and others dancing together.\", \" More wrestlers bend down towards one another and begin wrestling while people drum on the side.\", \" More people are walked in and continue wrestling on the pit.\"]}, \"v__OY-1VtINQQ\": {\"duration\": 57.77, \"timestamps\": [[0.87, 33.8], [31.49, 57.19]], \"sentences\": [\"A man is seen sitting on a piece of exercise equipment moving back and fourth.\", \" The man continues moving at different speeds and moving back.\"]}, \"v_Cof9eHf7VCI\": {\"duration\": 219.96, \"timestamps\": [[0, 23.1], [23.1, 95.68], [95.68, 169.37], [169.37, 219.96]], \"sentences\": [\"A group of people are standing in the middle of a forest with a trail of pebbles separating them from a beautiful crystal clear body of water.\", \"The camera moves across the water and several people on boats and jet-skis are moving in the water near a large wave.\", \"More large waves begin to surface and a man begins surfing the waves.\", \"The forest is then shown and surf boards appear that are washed up against the banks of the water.\"]}, \"v_iEqyqzKSEZ4\": {\"duration\": 237.43, \"timestamps\": [[0, 29.68], [34.43, 72.41], [72.41, 170.95], [170.95, 237.43]], \"sentences\": [\"A car is driving down the highway at a fast speed, he takes an exit to park.\", \" Then, they're at the gym and it's a class full of people jumping rope.\", \" A woman coach and a child jump rope one on one together, she goes around instructing some other students in the class.\", \" The class ends with pictures of the coach and her students.\"]}, \"v_hvXMCjJcIqI\": {\"duration\": 33.69, \"timestamps\": [[0, 4.89], [4.38, 10.95], [11.12, 20.38], [17.86, 33.69]], \"sentences\": [\"A man drives a lawn mower over a lawn.\", \" The man turns to his left.\", \" A wagon behind the man is being pulled with children in tow.\", \" The man then circles the lawn.\"]}, \"v_H7k8ATbTjzs\": {\"duration\": 109.6, \"timestamps\": [[0, 13.15], [13.7, 15.34], [15.34, 38.91], [15.34, 64.66], [56.99, 72.88], [12.6, 109.6], [76.72, 105.76]], \"sentences\": [\"A woman and a young girl are each walking a dog in a grassy area.\", \" They approach another woman sitting in a chair.\", \" She pets one of the dogs.\", \" Another woman is sitting behind the woman that pets the dog.\", \" The woman with the dog walks over and takes the leash of the second dog from the young girl and walks away with both dogs and the young girl still holding part of a leash.\", \" A man is standing off to the side watching.\", \" The woman and the young girl, each with a dog again, stop in the grassy area, talk and then continue walking.\"]}, \"v_W5WfWmISKrk\": {\"duration\": 155.94, \"timestamps\": [[0, 3.9], [3.9, 8.58], [8.58, 126.31], [86.54, 119.29], [120.07, 127.09], [126.31, 130.99], [128.65, 130.99], [131.77, 155.94]], \"sentences\": [\"We see a dark title screen.\", \" We see titles in the screen and see the men.\", \" We see two men fighting MMA in a ring.\", \" The large man is losing his grip on the smaller man.\", \" The referee comes to the men and waves his arms.\", \" We see the outcome of the game on the screen.\", \" The smaller fighter hugs another man.\", \" We then see the closing ending credits.\"]}, \"v_UZPSbNS1LU0\": {\"duration\": 123.09, \"timestamps\": [[0, 24.62], [24, 41.85], [49.24, 65.85], [72.01, 89.85], [89.85, 123.09]], \"sentences\": [\"A group of people are shown rollerblading in Paris.\", \" They are moving slowly and there are a lot of them as some of them look into the camera as they pass.\", \" The procession continues as spectators look onward.\", \" The video cuts to a side angle of the rollerbladers passing by.\", \" Another side shot is shown and a cop car and several escort vehicles come into view as the video fades to black.\"]}, \"v_Vq0-j_C-kZc\": {\"duration\": 166.56, \"timestamps\": [[18.32, 44.14], [44.14, 100.77], [100.77, 142.41], [142.41, 154.9]], \"sentences\": [\"A person is video taping a bull fighting event from his television set.\", \" The bull fighting scene is in a large open arena which is filled with thousands of spectators who are cheering.\", \" The two raging bulls are butting heads constantly while the matadors are trying to contain the bulls within a specified zone.\", \" The crowd continues to cheer as the event goes on.\"]}, \"v_i3uRumyN7mg\": {\"duration\": 52.29, \"timestamps\": [[0.52, 25.62], [17.26, 49.94]], \"sentences\": [\"An intro leads into a woman holding an accordion and a woman in a wedding dress beside her.\", \" The woman then begins to play the instrument while others stand around her and watch and others play along.\"]}, \"v_b3e7PrPNb30\": {\"duration\": 144.57, \"timestamps\": [[0, 70.84], [74.45, 144.57]], \"sentences\": [\"A woman is smearing a white cream onto her forehead and cheeks.\", \" She spreads it around, smoothing it in.\"]}, \"v_GHmxFOXP1Q0\": {\"duration\": 59.82, \"timestamps\": [[0, 59.81], [24.22, 58.62]], \"sentences\": [\"A man pierces a woman's cheek.\", \"  She sticks her tongue out and then the process is completed.\"]}, \"v_55sP2yXNFxY\": {\"duration\": 199.18, \"timestamps\": [[0, 58.76], [57.76, 144.41], [140.42, 193.21]], \"sentences\": [\"A man is seen hosting a news segment that leads into him speaking with two other people.\", \" Shots are shown of a young man playing pool with his father watching on the side.\", \" The man continues to play while his father watches and speaks to the news host.\"]}, \"v_ou45_7IdWCE\": {\"duration\": 62.0, \"timestamps\": [[0.62, 25.42], [20.77, 58.28]], \"sentences\": [\"A woman is seen walking to a swingset with a small boy and putting him on the swing.\", \" Several women with their children are seen swinging back and fourth with one another as well as dads playing with their kids.\"]}, \"v_O-hUa9e9_DE\": {\"duration\": 207.66, \"timestamps\": [[1.04, 203.5], [13.5, 19.73], [20.77, 104.87], [104.87, 197.27]], \"sentences\": [\"A woman chef demonstrates, in a kitchen, in front of a kitchen counter top and ingredients, how to prepare a salad.\", \"  A woman stands in front of a kitchen counter top with greens, cheese, vegetables and oils and talks to the camera.\", \"  The woman begins to cut the greens and put them in a white bowl before turning to pull oven roasted brussel sprouts out of the oven.\", \"The woman then squeezes and orange and pours the orange juice on the salad with the brussell sprouts and oil before the scene fades out.\"]}, \"v_vSAHWgFjQAY\": {\"duration\": 158.03, \"timestamps\": [[0, 39.51], [37.93, 114.57], [106.67, 151.7]], \"sentences\": [\"A man is seen dancing in a club and grabs onto a woman.\", \" The man and woman then begin dancing around each other in the middle of the club.\", \" They continue dancing around one another while other people dance beside them.\"]}, \"v_sVk-Br0zfkA\": {\"duration\": 10.06, \"timestamps\": [[0.15, 2.66], [2.21, 7.84], [7.39, 9.65]], \"sentences\": [\"A close up of a woman is seen looking off into the distance and holding a dart.\", \" She throws the dart onto the board which is show up close.\", \" The woman then clenches her fists and her throw is shown again.\"]}, \"v_4Rto4Aa6fxw\": {\"duration\": 52.15, \"timestamps\": [[9.91, 19.82], [20.08, 42.24], [42.77, 52.15]], \"sentences\": [\"Two teams play hurling in a stadium full of people.\", \" A player serves a ball with the stick, and the teams continue playing.\", \" Two players dispute the ball in the air, then they continue playing.\"]}, \"v_cFJo7Nm2W3Y\": {\"duration\": 210.54, \"timestamps\": [[0, 62.11], [54.74, 168.43], [127.37, 200.01]], \"sentences\": [\"A large group of people are seen standing around a sand pit shaking hands and speaking with one another.\", \" The men then begin a soccer match with one another and cheering when they score a goal.\", \" The men continue to play against one another while the audience cheers and the ref stands on the side.\"]}, \"v_vzxT-k8dsVs\": {\"duration\": 51.97, \"timestamps\": [[0, 17.67], [17.67, 29.1], [29.1, 51.97]], \"sentences\": [\"man is unning wearing stilts in a skaet park.\", \" another man  is jumping along with the first man in the skate park.\", \" man in skate park is running while a car is passing in the street.\"]}, \"v_VO49rhXzhk4\": {\"duration\": 155.69, \"timestamps\": [[0, 3.89], [3.89, 11.68], [11.68, 21.02], [21.02, 43.59], [42.81, 56.83], [56.83, 139.34], [139.34, 148.68], [148.68, 155.69]], \"sentences\": [\"A woman's hands are shown wrapping something.\", \" The woman talks to the camera.\", \" Closeups of the necessary equipment for this operation are shown.\", \" The woman wraps a book with tissue paper and tape.\", \" The woman cuts paper to shape for the book.\", \" The woman wraps the book with the paper and tape.\", \" The woman talks to the camera whole holding the wrapped and ribboned book.\", \" A closeup of the wrapped and ribboned book is shown.\"]}, \"v_0DEF7Mp7ZP4\": {\"duration\": 142.34, \"timestamps\": [[0, 86.12], [24.2, 115.29], [112.45, 142.34]], \"sentences\": [\"A small group of people are seen sitting around a casino table speaking to one another and playing a game of poker.\", \" Many people watch on the sides while the dealer deals out cards and the people place their chips in the middle.\", \" More shots of the game are shown while the camera pans out to a person's face.\"]}, \"v_B39pJK4FU1o\": {\"duration\": 44.24, \"timestamps\": [[0, 2.88], [2.88, 9.07], [10.84, 25.21], [25.88, 44.24]], \"sentences\": [\"A lady is talking in an office and holding a pink item.\", \" the lady throws the pink item on a game board on the floor.\", \" She then jumps hopscotch and picks up the pink item.\", \" She throws it again and jumps again and returns picking up the pink item.\"]}, \"v_Z3noRsTXGt4\": {\"duration\": 19.09, \"timestamps\": [[0, 19.09], [5.73, 8.97], [12.69, 16.7]], \"sentences\": [\"A person is running on an excerise machine.\", \"  The camera zooms in to the feet.\", \"  The camera pans to the right slowly.\"]}, \"v_CsCbJSnAhRs\": {\"duration\": 86.94, \"timestamps\": [[3.48, 70.42], [11.3, 73.9], [65.2, 80.42]], \"sentences\": [\"A man puts a chef hat on a girl while a chef teachers her how to cook.\", \" She mixes various ingredients together following the chef's orders and paying close attention to his instructions.\", \" The girl makes a lovely batch of cookies and finds herself enjoying them in the end, as well as the company of others.\"]}, \"v_GKhuh6bha6U\": {\"duration\": 188.61, \"timestamps\": [[4.72, 11.32], [11.32, 182]], \"sentences\": [\"Several men stand together for the camera.\", \" Scenes of multiple people performing capoeira demonstrations are shown with audiences in the background and foreground.\"]}, \"v_2vy0dMXhlWI\": {\"duration\": 110.9, \"timestamps\": [[0, 15.53], [15.53, 26.62], [26.06, 33.27], [33.27, 52.12], [52.12, 69.87], [69.87, 73.75], [73.75, 110.9]], \"sentences\": [\"An older man is shown chopping at a downed tree with an axe.\", \" he is trying very hard and not making much progress.\", \" He seems to be frustrated and is trying again and again to chop of the tree.\", \" He then looks at the camera and slightly smirks before continuing trying to cut the tree up.\", \" He stops again and stares at the camera.\", \" A closeup is shown of him trying again and again before zooming out.\", \" The camera then zooms back in to his face as he continues on.\"]}, \"v_KPv8ZGrb78Y\": {\"duration\": 200.82999999999998, \"timestamps\": [[0, 51.21], [51.21, 54.22], [55.23, 61.25], [61.25, 94.39], [94.39, 104.43], [104.43, 200.83]], \"sentences\": [\"Three women show up on the screen doing a tribal dance in a workout studio.\", \" One of the women does a solo performance while the music plays in the background.\", \" The three women are shown again doing the dance on the stage while other people do the same dance in front of the stage.\", \" The trio of women come back onto the screen and continue the dance in the studio.\", \" They show up back on the stage doing the dance as the camera films them.\", \" The camera goes back and forth between them doing the dance on the stage and off the stage showing different angles.\"]}, \"v_gg_F8EtNMW0\": {\"duration\": 10.12, \"timestamps\": [[0, 2.18], [2.63, 6.93], [7.19, 10.12]], \"sentences\": [\"Two men are inside an indoor gym.\", \" They are engaged in a martial art called kickboxing.\", \" They kick and punch at each other, trying to hit each other.\"]}, \"v_lSX_yj2ohls\": {\"duration\": 237.54, \"timestamps\": [[0, 51.07], [51.07, 133.02], [134.21, 174.59], [174.59, 237.54]], \"sentences\": [\"Two dudes are talking silly into the camera with things wrapped around their heads.\", \" Then you see everyone playing beer pong having a great time outside joking and dancing.\", \" A group starts taking selfies and everyone is dressed really funny.\", \" One of the dudes flick off the camera and everyone continues to play bee pong and be wild enjoying their time.\"]}, \"v_IGcalXmWUwA\": {\"duration\": 196.26, \"timestamps\": [[0, 44.16], [42.2, 95.18], [93.22, 196.26]], \"sentences\": [\"Several shots of people playing basketball are shown and leads into two men demonstrating a move.\", \" The same move is shown again from various angles and instructor the user how to do it.\", \" More tricks are shown as well as step by step instruction on how to properly do it.\"]}, \"v_FwbnNQBzqHw\": {\"duration\": 208.77, \"timestamps\": [[0, 4.18], [5.22, 32.36], [34.45, 86.64], [87.68, 133.61], [138.83, 165.97], [167.02, 184.76], [186.85, 208.77]], \"sentences\": [\"A woman is standing behind an array of confections in a kitchen.\", \" Several different cake pops are being shown.\", \" Ingredients are displayed next to actions mixing ingredients.\", \" The woman crumbles the cake into a bowl, then adds frosting while she talks.\", \" She allows them to sit before melting candy coating, which she then dips the cake balls into.\", \" She decorates the cake ball in the final stages.\", \" A final array of cake pops are shown as she ends the segment.\"]}, \"v_cFcrXdvfxoo\": {\"duration\": 15.05, \"timestamps\": [[0, 7.22], [7.75, 15.05]], \"sentences\": [\"A woman is lifting and squatting inside a gym with a barbell on her shoulders.\", \" She lifts then sits over and over again.\"]}, \"v_ayDqRzRN8_M\": {\"duration\": 124.92, \"timestamps\": [[0, 13.74], [14.37, 25.61], [26.23, 29.36], [31.23, 79.33], [36.23, 65.59], [82.45, 98.07], [99.31, 124.92]], \"sentences\": [\"News hosts present a story seated at a desk in a news room.\", \" A news reporter interviews a man on an ice skating rink.\", \" An athlete glides a stone across the ice.\", \" The reporter and the man practice brushing the ice with brooms.\", \" A woman sits in a salon and has her hair curled.\", \" The curls are taken out of the woman's hair after the makeover.\", \" The news anchors close out the story.\"]}, \"v_nDbLtdY66dA\": {\"duration\": 94.65, \"timestamps\": [[0, 94.65], [51.58, 65.78], [66.72, 94.65]], \"sentences\": [\"A man in a black shirt is holding a saxophone.\", \" He begins playing the saxophone.\", \" He stops playing and continues talking.\"]}, \"v_dG8fhIBgx9k\": {\"duration\": 81.55, \"timestamps\": [[0, 17.94], [20.79, 66.05], [69.72, 81.55]], \"sentences\": [\"A girl with two braids going down her back is standing outside.\", \" She turns toward the camera, and her hair is now down.\", \" She lays in a stylist chair, showing how the style was done.\"]}, \"v_NJQROeaBiVE\": {\"duration\": 88.65, \"timestamps\": [[0, 7.09], [7.09, 72.25], [11.53, 19.5], [45.66, 74.47], [68.71, 74.03], [74.03, 88.65]], \"sentences\": [\"The title appears and fades out.\", \" We see a man pulling weight close to his head.\", \" Three men pass by in the mirror.\", \" The camera zooms in on the main subject.\", \" A man in gray walks past in the mirror.\", \" The screen goes black and we see the end credits.\"]}, \"v_EVfTWz5GRGw\": {\"duration\": 126.53, \"timestamps\": [[0, 18.35], [25.94, 91.1], [95.53, 126.53]], \"sentences\": [\"A bottle of deep cleansing gel is shown.\", \" A woman holds up the bottle, Then is shown using several different solutions that she lines up together on the counter.\", \" She uses each on her face, then rinses them off.\"]}, \"v_l7QlSS_li6M\": {\"duration\": 21.19, \"timestamps\": [[0, 1.91], [2.01, 6.57], [6.78, 11.23], [12.4, 15.15], [15.26, 21.08]], \"sentences\": [\"We see a blue title screen with white letters.\", \" We see two girls standing in a room, then perform a flip.\", \" We see 2 different girls do different flips.\", \" One girl does a back flip.\", \" We then see four girls do a back flip together.\"]}, \"v_vlIAZsrj6yk\": {\"duration\": 154.02, \"timestamps\": [[0, 4.62], [5.39, 50.83], [51.6, 147.09], [148.63, 154.02]], \"sentences\": [\"We see a black title screen.\", \" We see a man having his facial hair trimmed with an electric shaver.\", \" We see a man being shaved with a straight razor.\", \" We then see the closing screen.\"]}, \"v_PUqHiigzb7A\": {\"duration\": 25.22, \"timestamps\": [[0, 6.56], [7.57, 21.56], [22.57, 25.22]], \"sentences\": [\"A man walks up to a barbell and bends over, lifting at the knees.\", \" He lifts the barbell up to his chest, rests for a moment, then lifts it over his head.\", \" He holds the pose for a few seconds before dropping it to the ground.\"]}, \"v_qogdv5DWzkQ\": {\"duration\": 221.4, \"timestamps\": [[0, 27.68], [33.21, 115.13], [116.24, 221.4]], \"sentences\": [\"A shadow is seen in the smoky room.\", \" A woman is taking a shower and washing her hair.\", \" She pulls it apart in strands, putting conditioner on it.\"]}, \"v_Fp_uU-qMDSc\": {\"duration\": 120.19, \"timestamps\": [[0, 17.43], [0, 88.34], [17.43, 31.85], [31.85, 53.48], [53.48, 67.3], [67.3, 87.14], [87.14, 120.19]], \"sentences\": [\"A man dressed in all white is shown fighting different men outdoors and hitting them very hard.\", \" Tai Chi Combat along with his website and various other website icons are located on the bottom right.\", \" The man is then standing alone outdoors where he's still wearing the same white outfit and is talking very passionately using hand motions and lots of facial expressions.\", \" The man is once again shown to be fighting different men outdoors and he seems to be winning each fight.\", \" After this round of fights, the man is once again talking very passionately with a lot of hand movements and facial expressions.\", \" The man then goes back to more fighting with different men somewhere outdoors where he continues to win the fights by hitting and occasionally kicking.\", \" Lastly, the man is once again show talking very passionately with hand movements and a lot of facial expressions and around him are overlays on the screen advertising his youtube channel along with his website for TAI CHI COMBAT.\"]}, \"v_suWTtKXXkJU\": {\"duration\": 89.12, \"timestamps\": [[0, 47.23], [43.67, 89.12]], \"sentences\": [\"A woman is seen wearing a funny hat while speaking to the camera and sitting in a chair.\", \" the woman then knits in her chair while ending with another picture of her.\"]}, \"v_tM0BAYylvLA\": {\"duration\": 52.52, \"timestamps\": [[0, 52.52], [39.92, 43.59], [43.59, 45.7]], \"sentences\": [\"A young boy sits in a chair with protective gown on and gets his hair cut with electric clippers by mom at home.\", \" The mother removes clipped hairs from the boys head with fingers.\", \" A girl is seen watching in the room.\"]}, \"v_9lS5qpgrTmI\": {\"duration\": 172.66, \"timestamps\": [[0, 82.88], [50.94, 146.76], [146.76, 172.66]], \"sentences\": [\"A woman is seen speaking to the camera while holding up a bobby pin and then flips her hair down and begins braiding.\", \" The girl then puts her hair up into a pony tail and wraps her hair around to make a pun.\", \" She finally pins her hair down and then shows off her hair while pointing to the camera.\"]}, \"v_P8M00PRbI3c\": {\"duration\": 205.8, \"timestamps\": [[0, 22.64], [25.72, 62.77], [94.67, 169.78], [175.96, 205.8]], \"sentences\": [\"A female news reporter is talking in a news room.\", \" We see several people riding on horses as a crowd watches.\", \" The people are hitting bags with sticks as they ride.\", \" The people are then interviewed about the game, and a man is shown shooting arrows.\"]}, \"v_UtErhcCYBZk\": {\"duration\": 148.86, \"timestamps\": [[0, 21.59], [14.14, 37.96], [37.22, 148.86]], \"sentences\": [\"man is in roofed gym weightlifting.\", \" woman is walking behind the man watching the man.\", \" woman is lifting eights while he man sits to watch her.\"]}, \"v_WDvsx_q2h-4\": {\"duration\": 146.89, \"timestamps\": [[15.42, 22.03], [22.77, 130.73], [131.47, 146.89]], \"sentences\": [\"A man is standing outside holding a violin.\", \" He begins to play the violin.\", \" He stops and sets the violin to his side.\"]}, \"v_bXrdB5AASAM\": {\"duration\": 179.1, \"timestamps\": [[15.22, 38.51], [38.51, 84.18], [84.18, 124.47], [124.47, 135.22], [135.22, 169.25], [169.25, 179.1]], \"sentences\": [\"There are two men dressed in white shirts wearing hats doing freestyle wrestling in an indoor stadium.\", \" There are several spectators watching them, some sitting on chairs and some sitting on the ground.\", \" There are some people seated on chairs playing various hand instruments and singing to cheer the fighters.\", \" The two men continue wrestling in a non aggressive manner by taking turns to attack the opponent.\", \" They continue fighting as one man does a front flip.\", \" In the final round, they speed up the fight with faster kicks and motion.\"]}, \"v_IqRwR1a9ia0\": {\"duration\": 20.34, \"timestamps\": [[0, 16.78], [4.37, 14.44], [17.19, 20.34]], \"sentences\": [\"A man wearing a construction hard hat applies plaster to a wall using a hand held flat edge.\", \" The man pauses to explain his procedure.\", \" A Company name and slogan are seen in white text.\"]}, \"v_zBtmE0BAjGE\": {\"duration\": 65.41, \"timestamps\": [[0, 17.99], [17.33, 44.48], [44.48, 65.41]], \"sentences\": [\"A woman is shown walking around a kitchen turning on a faucet and l letting the sink fill up with water.\", \" She is shown wearing gloves, spraying cleaner around the sink and scrubbing with a brush.\", \" She smiles at the cleaning product and pans out to the label being shown.\"]}, \"v_-8FS4LbXAgE\": {\"duration\": 169.23, \"timestamps\": [[0, 49.92], [49.92, 134.54], [135.38, 169.23]], \"sentences\": [\"An intro leads into several shots of graffiti on a wall as well as people moving around and talking to one another.\", \" A rapper is then seen getting a tattoo from a man while the camera captures several angles and show art work.\", \" More people show off their tattoos and the rapper points to the camera and shows the finished tattoo and album cover.\"]}, \"v_wz8d9DKMrTc\": {\"duration\": 137.81, \"timestamps\": [[0, 137.81], [8.96, 20.67], [63.39, 67.53], [95.78, 137.81]], \"sentences\": [\"A band is practicing in a gym.\", \" People are twirling flags while standing in a line.\", \" The drummers are marching around the gym.\", \" They get into a line and dance out of the gym.\"]}, \"v_lCuMD23jOxo\": {\"duration\": 157.8, \"timestamps\": [[2.37, 60.75], [41.03, 157.8]], \"sentences\": [\"A person is seen speaking to the camera and smoking out of a hookah pipe.\", \" The camera pans around the area and continues to speak to the man and leads into a shot of a boat going by and a close fire.\"]}, \"v_HoViId2LHl8\": {\"duration\": 135.19, \"timestamps\": [[0, 22.31], [27.04, 89.9], [91.25, 123.7], [125.05, 135.19]], \"sentences\": [\"A woman starts dancing next to a man in front of a gathered crowd.\", \" They spin in circles as they dance.\", \" She goes between his legs, sliding outward and injuring her neck.\", \" She gets up laughing and gives the man a hug.\"]}, \"v_3ekMufBfUdw\": {\"duration\": 127.2, \"timestamps\": [[1.27, 57.88], [46.43, 122.75]], \"sentences\": [\"A woman is seen blow drying her hair while using a comb in various fashions and using different products.\", \" The woman continues to use the blow dryer on her hair and ends by showing off her finished hair.\"]}, \"v_DOONG5zq1Yg\": {\"duration\": 12.17, \"timestamps\": [[0, 2.68], [2.07, 12.17]], \"sentences\": [\"A woman is seen kneeling down on a yoga mat while bending forward.\", \" The woman then moves her leg out in front of her and bends down further creating a stretch.\"]}, \"v_D7ZeRbotot0\": {\"duration\": 17.07, \"timestamps\": [[0, 15.53], [15.53, 17.07], [16.04, 17.07]], \"sentences\": [\"A man in yellow and black suit welds a steel.\", \"  He stops the welding job.\", \"  Then he moves away and inspect it.\"]}, \"v_uTVjevTM6V0\": {\"duration\": 188.06, \"timestamps\": [[0, 66.76], [66.76, 116.6], [117.54, 142.92], [144.81, 177.72]], \"sentences\": [\"Three athletes of different countries compete weightlifting on front the jury, during the first round, all the athletes lift the weight successfully.\", \" In the second round, the athlete with blue uniform rise successfully and kiss the bar of the weight, also the other athletes are successful.\", \" On the third round, the Indian athlete let fall the weight.\", \" The athlete with red uniform  is congratulated, then stand on the first place of the podium and talks.\"]}, \"v_Y1Vop80R9b8\": {\"duration\": 56.29, \"timestamps\": [[5.35, 10.13], [15.76, 20.26], [25.61, 30.39], [36.02, 40.53], [46.44, 50.09]], \"sentences\": [\"A room is covered to avoid paint being splattered on objects in the room.\", \" A room is seen with blue tape on its borders and walls.\", \" The floors of the room also have bag over the carpet.\", \" The staircase of a house has bags over it to avoid paint damage.\", \" A sparkly ceiling is seen.\"]}, \"v_Fh1LR3xB3zQ\": {\"duration\": 168.04, \"timestamps\": [[0, 39.49], [44.53, 81.5], [71.42, 154.6]], \"sentences\": [\"A man is seen speaking to the camera and begins holding up knives.\", \" He pans all around his tools and shows off a kit.\", \" He then leads into sharpening a knife with various boards and sticks while still speaking to the camera.\"]}, \"v_2uMG44uNDJ8\": {\"duration\": 7.12, \"timestamps\": [[0, 2.1], [2.17, 5.34], [5.45, 7.12]], \"sentences\": [\"A woman and a man are inside a car talking, then the man turn his head.\", \" A young lady wash a car only wearing a bra and shorts, then she sprinkle water on her head a turn it.\", \" After, the man turns to see the angry woman and scream.\"]}, \"v_jalqZE5ekho\": {\"duration\": 95.39, \"timestamps\": [[0, 52.46], [51.99, 95.39]], \"sentences\": [\"little kid is in the sand doing a castle using a small toy shovel kid leaves.\", \" little girl foes into the castle in the sand and start playing while the kid bring more water from the sea.\"]}, \"v_E1-eVfnNfXI\": {\"duration\": 49.69, \"timestamps\": [[0, 3.73], [4.47, 32.55], [33.29, 49.69]], \"sentences\": [\"A woman is sitting with a baby in her arms.\", \" She takes licks of an ice cream cone, and the baby laughs hysterically each time.\", \" She offers him bites, pulling the cone away and making him laugh.\"]}, \"v_1LrEiYVd3qg\": {\"duration\": 182.77, \"timestamps\": [[17.36, 83.16], [62.14, 131.59], [105.09, 177.28]], \"sentences\": [\"A man is seen speaking to the camera in front of a large trailer in he moods.\", \" The man is then seen kneeling over a fire and begins lighting a flame into a pit.\", \" A boy is seen walking around with a tennis racket and points to the ground while the man is still sitting in front of the fire.\"]}, \"v_Fia1JynWFBA\": {\"duration\": 7.64, \"timestamps\": [[0, 7.64], [1.8, 7.64]], \"sentences\": [\"A woman uses a rolling pin to roll out dough onto the counter.\", \" Another woman is taking something off of a baking sheet.\"]}, \"v_sQZaEt-ssCs\": {\"duration\": 104.63, \"timestamps\": [[0, 25.11], [0, 104.63], [27.73, 104.63]], \"sentences\": [\"women are standing in a table doing arm wrestling in a competition.\", \" two referees on side of tables and watch each other.\", \" women are arm wrestling in the table again and at the end high each other.\"]}, \"v_YAhMxt-3ciU\": {\"duration\": 102.42, \"timestamps\": [[0, 102.42], [60.94, 73.23], [72.72, 75.28]], \"sentences\": [\"People are playing croquet on a field of grass.\", \" A map of the world is shown.\", \" Trophies are shown on the screen.\"]}, \"v_5Jo_AWt9fB0\": {\"duration\": 65.04, \"timestamps\": [[0, 65.04], [16.26, 65.04]], \"sentences\": [\"A man is wearing a hat and kneeling down on a blue mat.\", \" He starts pulling on a rope on a workout machine.\"]}, \"v_hxluAHro9bQ\": {\"duration\": 151.25, \"timestamps\": [[0, 12.1], [15.88, 43.86], [40.84, 151.25]], \"sentences\": [\"A woman in pink top is holding a hoop and talking to the camera.\", \" The woman put the hoop to her waist and start to hoop.\", \" The woman paused and turned around and start shaking her hips, she changed her hoops into smaller one, but the small one keep falling, then changed the hoops to bigger one and she began shaking her hips with the hoops.\"]}, \"v_-CS7U_XrkPI\": {\"duration\": 102.7, \"timestamps\": [[0, 5.65], [6.16, 28.24], [28.76, 93.46], [93.97, 102.7]], \"sentences\": [\"A group of men are inside a dark club.\", \" A man begins throwing darts at something off screen.\", \" He repeats this many times before giving up, shrugging, and turning the camera toward the dart board.\", \" We see that four of the darts have hit the exact same spot.\"]}, \"v_WsqMDMOjuN4\": {\"duration\": 227.77, \"timestamps\": [[0, 61.5], [60.36, 149.19], [124.13, 227.77]], \"sentences\": [\"A small group of people are seen swimming around a pool and leads into several shots of a swimmer throwing a ball into a net.\", \" The goalie blocks a few shots and then switches with another team mate while the audience cheers.\", \" The people switch out continuously and leads to one team winning and celebrating all together in the water.\"]}, \"v_4KqjBUpLQk8\": {\"duration\": 226.35, \"timestamps\": [[0, 55.46], [55.46, 226.35]], \"sentences\": [\"Several men are shown at different rodeos riding horses and capturing the calf attached to the string.\", \"As more locations are shown,more animals are captured and more people are shown watching the actions taking place.\"]}, \"v_nPTq63WtemI\": {\"duration\": 7.2, \"timestamps\": [[0, 3.42], [3.35, 7.2]], \"sentences\": [\"An older man is seen kneeling in the middle of a gym with several people around him.\", \" The man pulls on a piece of exercise equipment working his upper arms back and fourth.\"]}, \"v_extd66Y1tJ8\": {\"duration\": 88.35, \"timestamps\": [[0, 6.63], [7.07, 15.02], [15.46, 27.39], [27.83, 88.35]], \"sentences\": [\"A young lady is making faces at the camera.\", \"  She holds up a box that has barcodes and reads \\\"Sterling Gray\\\" on it.\", \" She shows a bottle of Renew and eye contact lens cases.\", \" She applies both of the contact lenses and cries.\"]}, \"v_XKuD0F-p6YA\": {\"duration\": 133.17, \"timestamps\": [[0, 77.9], [77.9, 133.17]], \"sentences\": [\"man is opening a box with scissors and take out an unarmed bike.\", \" man is arming the bike inside a room with wooden floor.\"]}, \"v_pHAIrx_cRFU\": {\"duration\": 145.27, \"timestamps\": [[0, 15.25], [18.16, 21.06], [23.97, 27.6], [32.68, 65.37], [66.1, 67.55], [71.18, 74.81], [88.61, 111.13], [124.93, 140.18]], \"sentences\": [\"The person holds a blade to sharpen it.\", \"  The person takes the belt off the machine.\", \"  The person puts a new belt on the machine.\", \"  The person sharpents the blade on the second belt.\", \"  The person takes the second belt off.\", \"  The person puts on a third belt.\", \"  The person sharpens the blade on the third belt.\", \"  The person demonstrates the blade's edge.\"]}, \"v_8rHY_Vt2FLA\": {\"duration\": 129.73, \"timestamps\": [[0, 36.32], [36.32, 93.41], [84.32, 125.19]], \"sentences\": [\"A car is seen driving around and leads into a man pumping air in the tire.\", \" The man puts a wire along the tire and continues to spin it around.\", \" He pumps more hair into the tire and takes off the jack driving it away.\"]}, \"v_yGO1YnMQNRI\": {\"duration\": 102.7, \"timestamps\": [[0, 24.65], [24.13, 66.24], [67.27, 102.7]], \"sentences\": [\"A man in a green shirt throws a disc onto a field.\", \" A man in a blue shirt throws a disc onto the field.\", \" A man in a purple shirt throws a disc onto the field.\"]}, \"v_XOUyGnr6iTM\": {\"duration\": 124.04, \"timestamps\": [[0, 38.45], [32.87, 91.79], [84.35, 121.56]], \"sentences\": [\"A small group of men are seen standing around a room holding tennis rackets.\", \" The men then begin playing tennis with one another while hitting the ball around.\", \" The men continue to hit the ball around the room and ends with several walking out.\"]}, \"v_TJ98vfFChfI\": {\"duration\": 126.76, \"timestamps\": [[0, 126.76], [50.07, 65.28], [105.21, 110.91]], \"sentences\": [\"A man in a white shirt is chopping a piece of wood with an ax.\", \" He swings at the wood and misses and hits the ground.\", \" Another  man carrying a pot walks up behind him.\"]}, \"v_KtUshVJ28us\": {\"duration\": 104.17, \"timestamps\": [[0, 11.46], [11.46, 19.79], [20.31, 93.23], [34.37, 36.98], [51.04, 54.69], [60.94, 93.23], [93.75, 104.17]], \"sentences\": [\"We see a young girl gymnast talking to the camera.\", \" We then see the title screen.\", \" We see the girl perform flips.\", \" The girl flips on a trampoline.\", \" She jumps and does a split in the air.\", \" We see the bloopers where she falls and a title screen.\", \" We then see the ending screens.\"]}, \"v_pASyH2NPOOw\": {\"duration\": 209.3, \"timestamps\": [[0, 7.33], [8.37, 209.3], [39.77, 46.04], [142.32, 148.6], [140.23, 149.65]], \"sentences\": [\"We see a blue opening screen.\", \" We see a man flipping and performing Capoeira  cut with blue title screens.\", \" The man does a spin kick.\", \" The man does a spin and duck.\", \" The man does a spin sweep on the floor.\"]}, \"v_Cz2ut3p7nw0\": {\"duration\": 232.53, \"timestamps\": [[0, 30.23], [30.23, 49.99], [49.99, 93.01], [93.01, 170.91], [170.91, 208.11], [208.11, 232.53]], \"sentences\": [\"A small toddler is in the bathroom brushing his teeth.\", \"As he frantically brushes,a  woman comes to assist him as he points to different things on the counter.\", \"The young boy keeps brushing and then they end up switching tooth brushes.\", \"Eventually,the woman puts toothpaste on the brush and the boy cleans his teeth.\", \"Once he is done,he is given a bar of soap and has to wash hands.\", \"Finally he is done and he grabs his toy and runs out of the bathroom.\"]}, \"v_9uZoTZsTwv0\": {\"duration\": 11.4, \"timestamps\": [[0, 1.65], [1.6, 3.71], [3.76, 7.41], [7.41, 11.4]], \"sentences\": [\"A teenage boy on a horse spinning a rope in the air chases after a little cow.\", \" The cow is running and the boy throws the rope around its neck.\", \" It causes the cow to fall over after being pulled back by the rope.\", \" The boy goes running off the horse after it and pins the little cow down.\"]}, \"v_StvwTXdXG2U\": {\"duration\": 183.35, \"timestamps\": [[0, 84.34], [81.59, 183.35]], \"sentences\": [\"The video leads into several shots of people riding around on skateboards and performing tricks.\", \" Many more people riding are shown and leads into a young man speaking to the camera and a picture of a t-shirt.\"]}, \"v_meAHw06Mh-Y\": {\"duration\": 117.84, \"timestamps\": [[2.36, 48.32], [43.01, 94.27], [80.13, 115.49]], \"sentences\": [\"A man is seen speaking to the camera and leads into him cutting tiles and measuring them along a wall.\", \" The man uses a saw to cut the wall as well as the tile while using various other tools to cut around the sides.\", \" More tiles are being shown cut out as the man continues to speak and lay them down on the floor.\"]}, \"v_moxpALb09zU\": {\"duration\": 168.52, \"timestamps\": [[0, 49.71], [29.49, 32.86], [40.45, 44.66], [48.87, 52.24], [50.56, 52.24], [52.24, 168.52], [74.15, 90.16], [119.65, 127.23]], \"sentences\": [\"A girl is talking to the camera while using her hands.\", \" The camera does a blurred scene change.\", \" The girl points down and wipes her hair.\", \" The girl waves at the screen.\", \" The scene changes to the girl standing in a shower.\", \" The girl shaves her legs in the shower.\", \" She shows us her shave product in the can and on her hands.\", \" The girl shows us her razor then starts shaving.\"]}, \"v_485DjSbjOV8\": {\"duration\": 148.72, \"timestamps\": [[0, 18.59], [17.85, 105.59], [111.54, 147.24]], \"sentences\": [\"Two people are seen standing up behind a set of drums looking at the camera.\", \" The two then begin playing the drums while a small girl walks in and out of frame.\", \" The two pause for a moment then continue playing with one stopping and letting the other finish.\"]}, \"v_rnPfQuWS4Rk\": {\"duration\": 31.05, \"timestamps\": [[0, 20.02], [20.18, 31.05]], \"sentences\": [\"A man in a kilt prepares himself to toss a large hammer in a competition.\", \" After his preparations he swings the hammer around in a circle and tosses it as far as he can.\"]}, \"v_snG89ed-64M\": {\"duration\": 74.17, \"timestamps\": [[0, 20.02], [18.91, 60.07], [60.44, 74.17]], \"sentences\": [\"A small group of people are seen playing lacrosse on a field running up and down the field and pushing one another.\", \" Several shots of players hitting one another is shown as well as players pushing other people.\", \" One team scores several goals and are immediately followed by teammates cheering.\"]}, \"v_DWal5PJry6k\": {\"duration\": 109.83, \"timestamps\": [[0, 21.42], [13.73, 70.84], [66.45, 109.83]], \"sentences\": [\"A doctor went inside the room, then she wash her hands, wipe her hands with paper towel.\", \" A medical practitioner is washing her hand with soap and water, while the other medical practitioner in white coat is on her phone.\", \" A man in yellow coat is washing his hands, then the man in blue shirt is giving interview.\"]}, \"v_EsOajUNpEzU\": {\"duration\": 72.91, \"timestamps\": [[0, 22.24], [22.97, 72.55], [22.97, 71.45]], \"sentences\": [\"A man talks while holding  bagpipes.\", \" He then plays the bagpipes.\", \" The man moves his fingers to change the sound while he plays.\"]}, \"v_YOLDcsX7EiA\": {\"duration\": 58.47, \"timestamps\": [[0, 58.47], [9.06, 19.88], [19.88, 27.19]], \"sentences\": [\"A person is skiing down a hill of snow.\", \" They go off of a jump and fly in the air.\", \" They land back on the snow and continue skiing down the hill.\"]}, \"v_teemFjum3oU\": {\"duration\": 72.45, \"timestamps\": [[0.72, 22.1], [24.63, 69.91]], \"sentences\": [\"A small child is seen sitting on top of a slide while looking over to another child playing.\", \" The boy rides down the slide several more times with the girl's assistance and a man standing holding a baby and watching.\"]}, \"v_gU67yCVXHnQ\": {\"duration\": 75.12, \"timestamps\": [[0, 0.38], [0.38, 75.12], [28.92, 75.12]], \"sentences\": [\"A girl is looking at the camera.\", \"  She turns around and is getting her hair brushed.\", \"  She is looking at her phone.\"]}, \"v_ifDsS6ZRsRM\": {\"duration\": 91.98, \"timestamps\": [[0, 4.6], [5.98, 66.68], [67.6, 82.78], [84.62, 91.98]], \"sentences\": [\"A woman's feet are shown as she warms up at ballet.\", \" A blonde woman is speaking to the camera, which pans out to her performing various dance moves while talking.\", \" She moves slowly at each step.\", \" She then stops and speaks her final words.\"]}, \"v_-2VNLsk1s34\": {\"duration\": 212.65, \"timestamps\": [[0, 60.6], [51.04, 132.91], [141.41, 203.08]], \"sentences\": [\"A large man is seen stepping up into a circle and throws several shot puts off into the distance.\", \" Several more men are seen stepping up to the circle throwing a shot put off into the distance.\", \" People in the audience are seen cheering to one another as their scores are shown in the end.\"]}, \"v_F_DHgp5hERs\": {\"duration\": 133.31, \"timestamps\": [[0, 119.98], [30.66, 54.66], [54.66, 129.97]], \"sentences\": [\"A man speaks to the camera while another man sits on a piece of exercise equipment behind him.\", \" The instructor continues moving around near the man and has him show how to machine works.\", \" He points to his body showing the muscles worked and walks around the man exercising.\"]}, \"v_R8-iriCwcyE\": {\"duration\": 139.09, \"timestamps\": [[0, 13.91], [13.91, 27.82], [27.82, 73.72], [38.94, 42.42], [68.85, 77.19], [85.54, 95.28], [131.44, 139.09], [98.06, 125.87]], \"sentences\": [\"A gymnasts wipes chalk on his hands while getting ready.\", \" The gymnast stands on a platforms and swings himself onto a set of double bars.\", \" The gymnast does a double bar routine during a competition.\", \" The gymnast strikes his leg accidentally on the bars bringing him to a stop.\", \" The gymnast dismounts from the double bars and lands on the mat.\", \" A female gymnasts sits in a chair and waits for her turn.\", \" The female gymnasts stretches out her arms before the routine.\", \" A replay shows the highlights of the gymnasts routine on the double bars.\"]}, \"v_mfENhAPlES8\": {\"duration\": 31.46, \"timestamps\": [[0.47, 20.45], [20.45, 28.16]], \"sentences\": [\"A man puts a black lens in his eye.\", \" Then, the man takes off the lens and after puts it again.\"]}, \"v_92kGXXfm6ok\": {\"duration\": 14.65, \"timestamps\": [[0.07, 7.4], [5.57, 14.29]], \"sentences\": [\"A man is seen bending forward grabbing a large set of weights and lifting it on his shoulders.\", \" The man then lifts it up over his head and ends by throwing it back down.\"]}, \"v_U_4goX5w_1c\": {\"duration\": 111.55, \"timestamps\": [[0, 15.06], [13.94, 59.68], [50.75, 111.55]], \"sentences\": [\"A black male athlete run in the field then hopped and jumped and landed on the sandy field.\", \" The athlete run around and cheered and kneel down and pray.\", \" The athlete run and ripped his shirt off, while he reach of the woman and give her a hug and cheered.\"]}, \"v_sGTDKZuG1vE\": {\"duration\": 214.46, \"timestamps\": [[0, 17.16], [35.39, 128.68], [129.75, 158.7], [193.01, 214.46]], \"sentences\": [\" A man is kneeling down in front of a sink.\", \" He starts scrubbing the inside of the sink with a sponge.\", \" He takes a white towel and wipes off the counter and sink.\", \" He sprays the mirror with Windex and wipes the mirror off.\"]}, \"v_1Cdqwg7Giv4\": {\"duration\": 186.36, \"timestamps\": [[12.11, 19.57], [20.5, 30.75], [30.75, 44.73], [47.52, 58.7], [68.95, 82.93], [82.93, 168.66]], \"sentences\": [\"A man is spinning in circles and throwing a discuss for a competition.\", \" The video slows down and shows the same throw but in slow motion.\", \" Another man comes up to the plate and throws the discuss.\", \" Again the video slows down and shows the same throw in slow motion.\", \" A third player steps up and throws the discuss in slow motion.\", \" Several other players step up and take their turn throwing the disk.\"]}, \"v_uatIP3FGQXk\": {\"duration\": 65.09, \"timestamps\": [[0, 21.15], [19.2, 49.79], [42.96, 63.13]], \"sentences\": [\"A large group of kids are seen standing around a field playing a game with one another.\", \" One boy throws a ball to another and the other kicks it off into the distance.\", \" The kids continue to play with one another as well as run along the field.\"]}, \"v_CQweu0ZYNHU\": {\"duration\": 96.46000000000001, \"timestamps\": [[0, 3.38], [3.38, 6.75], [6.75, 9.16], [9.65, 13.5], [13.5, 20.26], [21.22, 34.24], [34.72, 62.21], [63.66, 73.79], [78.13, 88.74], [88.26, 93.56]], \"sentences\": [\"Three men stand together wearing heavily padded clothing with suspenders.\", \" The two men on the end strike the one in the middle below the belt and he falls to the ground in pain.\", \" One of the men is seen from behind walking in a hallway.\", \" The man sits on a bmx bike on the top of a ramp getting ready.\", \" the man drops into the ramp and falls hard slamming on the bottom.\", \" The man does tricks and jumps on the ramp riding a bike.\", \" One of the men in purple rides through a skate board park wearing the padded suit.\", \" Another man in grey shirt rides a skateboard on the half pipe ramp and does tricks.\", \" The three men ride together on the large ramp in formation.\", \" The man in purple falls and is struck in the face with his skateboard.\"]}, \"v_w_OiqLfRJHI\": {\"duration\": 163.47, \"timestamps\": [[0, 25.34], [47.41, 116.06], [47.41, 124.24]], \"sentences\": [\"Two men are kneeling down holding paintball guns.\", \" They are walking down the street holding their paintball guns.\", \" They begin to play a game of paintballing.\"]}, \"v_tVIY6uyH3aA\": {\"duration\": 3.55, \"timestamps\": [[0.07, 0.99], [1.05, 2.36], [2.61, 3.41]], \"sentences\": [\"A person is seen wearing a blue shirt and standing before a fence.\", \" The person bends down in front of the fence and begins spraying it down.\", \" The person continues spraying the fence while the camera captures from behind.\"]}, \"v_caoMescJ1J4\": {\"duration\": 152.28, \"timestamps\": [[6.85, 134], [39.59, 55.58], [90.6, 97.46], [128.67, 134]], \"sentences\": [\"Three men are sitting on a couch with the man in the middle smiling, the man on the right playing a harmonica and the man on the far left holding his finger to his upper lip area and making a noise with his bottom lip by plucking it with his hand.\", \"  The man on the right taps his foot as the two men play music.\", \"  The camera pans to an onlooker standing on the side of the room watching and smiling.\", \"  The two men stop playing and the man in the middle shrugs as the other two men smile.\"]}, \"v_OKhVHhchsyI\": {\"duration\": 197.81, \"timestamps\": [[0, 38.57], [38.57, 64.29], [64.29, 75.17], [75.17, 194.84], [194.84, 197.81]], \"sentences\": [\"Three young children, 2 girls and a boy, are playing at a beach and piling sand onto a big pile as waves continue to go in and out.\", \" The camera person then pans around the beach to show the rest of the beach and various other people that are there.\", \" The camera person then focuses on two women talking and standing together.\", \" Then focuses back onto the children in the sand that are continuing to dig into the sand and pile sand into a big pile.\", \"One of the girls then runs out of the shot and the other girl and the only boy remain near their small pile of sand.\"]}, \"v_j73Ks4r5tbg\": {\"duration\": 186.35, \"timestamps\": [[0, 183.56], [65.22, 82], [82.93, 171.45], [171.45, 186.35]], \"sentences\": [\"A girl with blonde hair and red nails sits in a chair in  bedroom and talks to the camera while smoking and showing off a bottle of blue nailpolish.\", \"  The girl rolls away from the camera in the chair to get a bottle of blue nail polish and hold it up to the screen.\", \"  The girl then begins to smoke a cigarette in front of the camera while talking.\", \"  The girl, finally, takes one long inhale and leans in to exhale into the camera before falling back.\"]}, \"v_DgVo1IAVrDM\": {\"duration\": 149.17000000000002, \"timestamps\": [[0, 149.16], [36.55, 149.16], [59.67, 130.52]], \"sentences\": [\"A helmet camera is put on and then a man goes skateboarding.\", \" He zooms through the city and goes on a highway.\", \"  He passes a truck and other people.\"]}, \"v_OVRYoPA6h-Y\": {\"duration\": 197.46, \"timestamps\": [[0, 5.92], [7.9, 22.71], [23.7, 49.37], [0, 197.46], [50.35, 60.23], [61.21, 70.1], [72.07, 78.99], [90.83, 92.81], [96.76, 98.73], [99.72, 103.67], [106.63, 161.92], [163.89, 174.75], [175.74, 197.46]], \"sentences\": [\"A man stands in a field talking.\", \" He hits a bowling ball with a croquet mallet and then hold up a bowling ball with a big 8 on it.\", \" A woman with a large chalice is in the same field talking.\", \" Cars pass by and people walk around in the background.\", \" A bowling ball that is cut in half is on the ground.\", \" A couple of kids look at the half bowling ball.\", \" A man hits the \\\"8\\\" ball with a croquet mallet and does a little dance.\", \" A woman hits 1 bowling ball against another with a mallet.\", \" A different man hits a bowling ball with a mallet.\", \" A young girl hits the ball with the mallet.\", \" Another man hits a bowling ball and does a dance, The young girls play while a man dressed like a joker talks.\", \"The game ends and all of the materials for the game are gathered.\", \" The woman gives her chalice to the young girls who are very excited.\"]}, \"v_RzlX3Ai9AH4\": {\"duration\": 199.2, \"timestamps\": [[0, 16.93], [17.93, 62.75], [64.74, 100.6], [105.58, 151.4], [163.35, 199.2]], \"sentences\": [\"Text states the video will show how to chalk paint.\", \" An armoire is shown, and a woman is holding one of the drawers.\", \" She sands down the wood before applying a coat of chalk paint with a brush.\", \"She holds the cans of paint as she talks about the finished product.\", \" The painted armoire is shown a final time.\"]}, \"v_cV9xeDlKJok\": {\"duration\": 74.77, \"timestamps\": [[0.37, 24.3], [23.18, 53.83], [55.7, 72.9]], \"sentences\": [\"A show of a dumpster is shown as well as women in gear standing in front of it.\", \" The woman edges herself along the dumpster while other people walk into frame.\", \" The woman then moves herself around on roller blades while the camera follows her movements.\"]}, \"v_UpmzSgLLj-s\": {\"duration\": 169.23, \"timestamps\": [[0, 2.54], [2.54, 25.38], [25.38, 38.08], [38.92, 49.92], [74.46, 95.61], [96.46, 100.69], [100.69, 153.15], [153.15, 164.15], [165, 169.23]], \"sentences\": [\"We see a quick title screen.\", \" We then see a man working on various things in a bike factory.\", \" The man puts a bike together quick, puts it in a box, then on a conveyor belt.\", \" We then see a person putting tools on the bike box.\", \" The man begins to take the pieces part and put the bike together.\", \" We see the factory briefly.\", \" We return to the man putting the bike together.\", \" He finishes and we see the customer service phone number.\", \" We then see the end title screen.\"]}, \"v_ygHElEUxVwA\": {\"duration\": 222.68, \"timestamps\": [[0, 15.59], [21.15, 198.19], [198.19, 222.68]], \"sentences\": [\"A group of a man and three women are on a gym floor.\", \" They are dancing in unison, performing several moves.\", \" When they are done, one woman laughs and runs away.\"]}, \"v_Jdtr90RIkHk\": {\"duration\": 142.15, \"timestamps\": [[0, 5.69], [5.69, 131.49], [131.49, 142.15]], \"sentences\": [\"A man is riding a skateboard indoors and rides it onto a short standing pole on the ground.\", \"The same man is now standing outside talking and the words on the bottom of the screen say his name is \\\"Shawn Connelly\\\" and he's the Founder- San Francisco Skate Club and while he's speaking various words appear at the bottom of the screen at various times as well as clips of him skateboarding showing different moves that the words mention.\", \"The man ends the video of just him talking, no text on the screen, and no other clips showing while he's talking.\"]}, \"v_cc17BiSDn8w\": {\"duration\": 41.59, \"timestamps\": [[4.16, 13.31], [13.52, 19.34], [19.55, 22.87], [23.08, 41.59]], \"sentences\": [\"A man in a red kayak rolls into the water, and out of the water.\", \" He rolls into the water once more.\", \" He then is in a blue kayak and rolls into the water and out of the water.\", \" He does it once more.\"]}, \"v_a7FNzxXWvgU\": {\"duration\": 168.57999999999998, \"timestamps\": [[0, 21.92], [21.92, 26.97], [26.97, 36.24], [36.24, 75.02], [75.02, 105.36], [105.36, 152.56], [152.56, 168.58]], \"sentences\": [\"A man wearing a black shirt opens a bag of bread and pulls out three slices of bread.\", \" The man raises an empty bottle of Miracle Whip and tosses it backhanded.\", \" The man then opens the refrigerator and pulls out a new bottle of Miracle Whip.\", \" He then uses a knife to scoop out the miracle whip on to the bread slices.\", \" The man then opens a bag of Swiss cheese and places a slice on each bread slice.\", \" The man then gets a container of Genoa Salami from the fridge and piles slices onto the bread slices.\", \" He then puts the bread slices on top of each other and completes the sandwich.\"]}, \"v_RZurdKhOxk0\": {\"duration\": 152.21, \"timestamps\": [[0, 4.57], [4.57, 121], [38.05, 43.38], [79.15, 86.76], [110.35, 117.96], [117.96, 130.14], [140.79, 152.21]], \"sentences\": [\"We see a man and a woman standing foreheads together.\", \" The people then dance together.\", \" The lady holds her legs out at her side.\", \" The man swings the woman around.\", \" The lady shakes her hips.\", \" The lady bends down and the man wraps his arms around her.\", \" The people back up from each other.\"]}, \"v_BoK5y7jdhzA\": {\"duration\": 82.32, \"timestamps\": [[3.7, 15.23], [15.23, 43.22], [43.22, 75.32], [75.32, 82.32]], \"sentences\": [\"A lacrosse player wearing a white jersey and holding a lacrosse stick is talking about the positions of lacrosse.\", \" He is standing in a field that is next to a busy road with many cars passing by.\", \" He is demonstrating the various positions and ways of using the lacrosse stick with another man.\", \" He explains how the goals are scored in lacrosse.\"]}, \"v_uHmoFLB-PLc\": {\"duration\": 118.53999999999999, \"timestamps\": [[0, 118.54], [5.33, 118.54], [10.67, 118.54], [101.94, 118.54]], \"sentences\": [\"A boy holds a guitar in a room.\", \" He is sitting on a bed.\", \" He begins to play the guitar.\", \" Eventually he finishes the song.\"]}, \"v_aKhD_bFB7MA\": {\"duration\": 159.78, \"timestamps\": [[16.78, 48.73], [48.73, 84.68], [84.68, 111.05], [111.05, 130.22], [130.22, 143.8], [143.8, 151.79]], \"sentences\": [\"There's a person walking on stilts on a sidewalk where several cars are parked.\", \" He is demonstrating how to walk on stilts.\", \" He is joined by two other men who also join him in the tutorial.\", \" The man on stilts shows how fast he can run while on the stilts as well as jump high up.\", \" While he's running on the stilts, his friend drives alongside him in a car.\", \" The man continues to do stunts on the stilts.\"]}, \"v_eJvOgEahkys\": {\"duration\": 120.37, \"timestamps\": [[0.6, 28.29], [25.28, 85.46], [83.06, 117.97]], \"sentences\": [\"A young girl is seen standing at a ballet bar performing ballet moves.\", \" A girl is seen dancing on stage followed by a large group of girls warming up.\", \" The girls continue stretching and lead into the woman pointing her foot.\"]}, \"v_gTh9bd9yV9E\": {\"duration\": 156.85, \"timestamps\": [[8.63, 51.76], [51.76, 98.82], [99.6, 123.91], [124.7, 156.85]], \"sentences\": [\"A teen puts make up to an man on his face.\", \"Then, the teen puts mascara, lip sticks and paint the eyelid with an eyeliner.\", \" Then, the teen puts color on the cheeks, then she eyeliners the eyelids.\", \" After, the teen paint the mouth and put lipstick on the cheeks and paint the eyelids.\"]}, \"v_91Wdp_uaWrY\": {\"duration\": 72.26, \"timestamps\": [[0, 70.82], [24.93, 33.24], [71.18, 72.26]], \"sentences\": [\"Two people are fencing in a room.\", \" A person is standing next to a wall watching them.\", \" They stop fencing and walk away.\"]}, \"v_hlFJj2dT3sU\": {\"duration\": 41.68, \"timestamps\": [[0, 8.13], [8.54, 27.51], [28.34, 41.68]], \"sentences\": [\"A boy is on a tennis court outside.\", \" He serves the ball with a racquet.\", \" He serves it a few more times, hitting it each time.\"]}, \"v_LYOQ0gVySxE\": {\"duration\": 49.6, \"timestamps\": [[0, 6.7], [7.69, 26.53], [17.36, 25.05], [28.52, 47.12]], \"sentences\": [\"Coffee is ground up in an electric grinder.\", \" A cup of coffee and coffee press are set on a table.\", \" Milk is poured into the cup of coffee.\", \" The cup of coffee is picked up and set back down on the saucer.\"]}, \"v_YvIfwsbuiKI\": {\"duration\": 71.33, \"timestamps\": [[0, 69.91], [0, 64.2], [31.74, 47.44], [34.6, 70.62]], \"sentences\": [\"A male figure is seen in a gym bending on mat and carrying out instructions to the camera on how to perform an exercise.\", \" He demonstrates on how to properly do exercises on an elastic band that is attached to a fixed pole.\", \" He grabs the elastic band and pulls it towards himself.\", \" Afterwards he pushes the band away from himself as he and demonstrates the proper use of the equipment .\"]}, \"v_Vx6vP1oxiAg\": {\"duration\": 19.97, \"timestamps\": [[0, 15.48], [3.79, 19.97]], \"sentences\": [\"A woman is seen leading a camel around with two small children riding on the back.\", \" The kids waves to the camera while it pans around their ride and the camel spitting into the air.\"]}, \"v_8Nv52hFr0tg\": {\"duration\": 123.62, \"timestamps\": [[0, 15.45], [16.69, 19.16], [20.4, 109.41], [109.41, 115.59], [116.21, 119.92], [121.15, 123.62]], \"sentences\": [\"A female gymnast stands idle while being watched by a crowd.\", \" A close up of a second woman saying something is shown.\", \" The gymnast performs a routine on a beam.\", \" The female gymnast finishes her routine and dismounts.\", \" People are shown applauding the gymnast.\", \" The gymnast walks away from the beam.\"]}, \"v_kH8o0M69KGc\": {\"duration\": 32.56, \"timestamps\": [[0, 7.98], [7.32, 15.95], [15.14, 31.42]], \"sentences\": [\"A man is seen bending over a large set of weights with another walking behind him.\", \" The man lifts the bar up over his head and throws it back down.\", \" The man does this again while people watch on the sides.\"]}, \"v_arbdFQpe0fk\": {\"duration\": 128.73, \"timestamps\": [[0, 27.68], [24.46, 104.27], [92.69, 124.87]], \"sentences\": [\"A pinata is seen swinging around the middle of people followed by a girl grabbing a stick.\", \" She moves all around the room swinging at the pinata as well as another girl swinging with her dad.\", \" A young boy walks up to try to hit it as well as another boy.\"]}, \"v_k2gc3YcVjwM\": {\"duration\": 54.03, \"timestamps\": [[0, 14.86], [16.48, 19.72], [19.72, 21.07], [21.88, 28.91], [32.42, 39.98], [40.79, 50.52], [52.14, 54.03]], \"sentences\": [\"A guy waves and then speaks.\", \" A male approaches and grabs a plate.\", \" The male takes the plate to the sink.\", \" The male dips the plate into the water and uses a white rug to wash it.\", \" The male rinses the washed plate.\", \" The male soaks the white plate and then puts it on a dish drying rack.\", \" The male gives a thumbs up.\"]}, \"v_6YmZNDXap64\": {\"duration\": 142.34, \"timestamps\": [[2.85, 70.46], [46.97, 129.53]], \"sentences\": [\"A man is seen spinning a rubix cube into his hands followed by more people attempting to solve the puzzle and speak to the camera.\", \" More people are shown attempting to solve the puzzle as well as speaking to the camera and smiling.\"]}, \"v_YG_jr8Efdxk\": {\"duration\": 78.86, \"timestamps\": [[0, 16.17], [16.17, 61.11], [61.51, 78.86]], \"sentences\": [\"A large group of people are shown sitting on the sidelines as well as various shots of athletes preparing for an event.\", \" One woman is seen lifting a bar several times while her coach yells to encourage her.\", \" She finishes her set and walks away with several other people nearby.\"]}, \"v_hx0WYKDa7PM\": {\"duration\": 100.2, \"timestamps\": [[0, 16.53], [16.53, 60.62], [61.62, 85.17], [87.17, 100.2]], \"sentences\": [\"A cameraman follows a man as he walks up a diving board.\", \" The diver gets to the edge of the board and stretches before falling forwards in the water.\", \" The diver dives into the water a second time.\", \" The diver gets out of the water and walks away as a cameraman follows him.\"]}, \"v__yk7gjnHkjs\": {\"duration\": 230.13, \"timestamps\": [[0, 93.2], [39.12, 44.88], [94.35, 192.16], [153.04, 170.3], [134.63, 136.93], [194.46, 230.13]], \"sentences\": [\"A man swings and throws the hammer repeatedly.\", \" The man hops on one leg at the end and walks away.\", \" We switch to a man throwing shot put.\", \" Men on the sideline clap and jump.\", \" The man in red and blue raises a red flag.\", \" We see a man throw the hammer repeatedly.\"]}, \"v_GZiG-aSzIJI\": {\"duration\": 137.09, \"timestamps\": [[18.51, 38.39], [38.39, 56.21], [56.21, 78.83], [78.83, 86.37], [86.37, 99.39], [99.39, 106.93], [106.93, 122.7], [122.7, 128.18]], \"sentences\": [\"There are two white cars that arrive in secluded area where there are warehouses.\", \" Four men get off the car and walk towards a man wearing a mask to cover his face.\", \" There are some people hiding behind trucks with guns in their hands.\", \" One of the men comes out and opens fire.\", \" He shoots his gun in the air.\", \" That provokes the other people and a huge gun fight breaks out.\", \" The men randomly begin shooting at each other.\", \" During that time, one of the men get shot in the head and he collapses and falls down.\"]}, \"v_xgb-qIgWHw0\": {\"duration\": 68.8, \"timestamps\": [[0.34, 67.42], [0.34, 18.92], [13.76, 64.67], [60.89, 64.67]], \"sentences\": [\"A musician plays a set of drums on an elevated jumbo screen as a camera pans in and out on the performance.\", \"  A musician with a headset attached to his ears and over his mouth, begins to play a set of drums.\", \"  As the musician plays the drums the camera pans in for a closeup and then pans out.\", \"  The musician ends the performance, stands, and waives both sticks at the audience.\"]}, \"v_FrDKwP9XaOo\": {\"duration\": 99.24000000000001, \"timestamps\": [[0, 97.26], [5.95, 66], [66.49, 97.26], [97.75, 99.24]], \"sentences\": [\"Males pull a rope in a tag of war match.\", \" The males take steps to the right.\", \" The males are being pulled to the left.\", \" The males raise and let go of the rope now closer to the left.\"]}, \"v_mouMMOraPyw\": {\"duration\": 176.12, \"timestamps\": [[2.64, 98.63], [83.66, 169.08]], \"sentences\": [\"A close up of a person is seen speaking to a person behind them and paddling along the water.\", \" The people continue riding along the water as the water splashes around them and the woman stops to wipe her face off.\"]}, \"v_d3Rx-nw5Zlw\": {\"duration\": 200.64, \"timestamps\": [[54.17, 106.34], [106.34, 143.46], [143.46, 186.6], [186.6, 200.64]], \"sentences\": [\"There's a young man wearing a blue jacket and a white shirt standing near a wall with white bathroom tiles.\", \" He is smoking a cigarette.\", \" He continues taking a several puffs of the cigarette as he empties the ashes of the burned cigarette on the side.\", \" He looks a bit confused as he continues smoking the cigarette.\"]}, \"v_8dXbbJWFEJo\": {\"duration\": 38.01, \"timestamps\": [[0, 38.01], [31.17, 38.01]], \"sentences\": [\"A group of athletes row on canoes during a race in between buoys on a waterway.\", \" The men cross the final numbered buoys and glide while slowing down after the race.\"]}, \"v_JJzBlV3p1Wc\": {\"duration\": 131.93, \"timestamps\": [[0.66, 131.93], [0.66, 19.79], [23.75, 51.45], [48.81, 128.63]], \"sentences\": [\"A woman in an outdoor environment teaches a young boy and girl how to wash clothes using a washboard and a metal bucket.\", \" A young boy pulls on a metal lever protruding from a metal bucket with a washboard in it.\", \"  Two young girls watch as a woman in a white apron demonstrates to the boy and girl how to turn the lever and also hangs clothes on a clothes line.\", \"  The young girl begins to pull the lever while the boy helps the woman hang clothes, and then all of the children take turns operating different parts of the washboard mechanism.\"]}, \"v_eChLCFAGyx0\": {\"duration\": 196.93, \"timestamps\": [[0, 196.93], [2.95, 54.16], [54.16, 77.79], [78.77, 196.93], [192.01, 196.93]], \"sentences\": [\"The video takes place in a theater showing a symphony play a song.\", \"  The video shows close ups of several of the symphony members as they play their instruments.\", \" The camera then pans out to show the audience.\", \"  The symphony continues to play as the conductor leads.\", \"  The video ends showing the entire symphony.\"]}, \"v_XfF30DaqAGU\": {\"duration\": 51.67, \"timestamps\": [[0, 9.56], [6.97, 33.07], [29.19, 50.37]], \"sentences\": [\"A woman is seen standing before a bar and bends down in front of him.\", \" She grabs the weights and lifts it over her head and then back down.\", \" She continuously lifts the weight up over her head.\"]}, \"v_B4LYBLihttQ\": {\"duration\": 186.29, \"timestamps\": [[0, 186.29], [41.92, 161.14], [153.69, 186.29]], \"sentences\": [\"The young female is standing in the kitchen talking to the camera.\", \" The female put the pasta in boiling water, chopped the garlic and pour olive oil in the pan, she shredded the orange peel and put in the pan and added tomatoes and seafood.\", \" The woman drain the pasta, and put it on the sauce and put them in the white bowls.\"]}, \"v_txMaVvdALeM\": {\"duration\": 178.02, \"timestamps\": [[0, 23.14], [28.48, 97.91], [98.8, 178.02]], \"sentences\": [\"A large group of people are riding in a huge raft.\", \" They paddle down the rapids, trying to stay upright.\", \" They flip over, falling out of the raft.\"]}, \"v_MoPg7NqyhLI\": {\"duration\": 69.94, \"timestamps\": [[0, 37.42], [33.57, 69.94]], \"sentences\": [\"A large group of people are seen sitting in a floor followed by people shooting bow and arrows and running around a course.\", \" The kids continue running around one another shooting the bow and arrows and ends with a woman holding up her hand and showing a picture.\"]}, \"v_FKAlXR9NkKw\": {\"duration\": 49.6, \"timestamps\": [[0.25, 1.98], [2.23, 49.6], [2.23, 4.71], [11.41, 16.37], [20.34, 20.83]], \"sentences\": [\"A lady walks down a hall while carrying a bucket of cleaning supplies.\", \" A lady cleans a window with newspapers.\", \" The lady sprays the newspaper.\", \" The ingredients to make the spray is shown.\", \" The lady sprays the window.\"]}, \"v_DTprdtsGCts\": {\"duration\": 237.7, \"timestamps\": [[1.19, 2.38], [8.32, 9.51], [14.26, 17.83], [21.39, 26.15], [34.47, 40.41], [34.47, 237.7], [116.47, 121.23], [116.47, 229.38]], \"sentences\": [\"Pipes are being shown on a rock.\", \" A man is walking on a trail.\", \" A large structure behind a fence is shown.\", \" A boat is in the water surrounding a rock.\", \" A man sits on top of a rock.\", \" A man starts playing an instrument.\", \" A large rock wall is shown.\", \" The man continues playing the instrument.\"]}, \"v_fpIS8jWoK9w\": {\"duration\": 221.61, \"timestamps\": [[0, 62.05], [62.05, 86.43], [86.43, 107.48], [99.73, 100.83], [108.59, 135.18], [135.18, 212.75], [214.96, 221.61]], \"sentences\": [\"The camera watches a man in a hat talking with someone from a low angle.\", \" The setting changes and the man in the hat talks with another man while the two look at papers.\", \" The man in the hat sits down and talks to the camera.\", \" The man drinks from a bottle of water.\", \" A woman applies an ink pattern to the man's body.\", \" The man lays on his side as the woman tattoos over the ink pattern.\", \" Still images of the completed tattoo are shown.\"]}, \"v_VAKQMtYrl4I\": {\"duration\": 73.03, \"timestamps\": [[0, 72.66], [3.29, 72.66], [9.13, 72.66], [58.42, 72.66]], \"sentences\": [\"Several dogs walk down a street.\", \" They are on leashes held by their owners.\", \" The stream of them is endless.\", \" A woman holds her dog.\"]}, \"v_TS-p15iwQPc\": {\"duration\": 129.06, \"timestamps\": [[0, 16.13], [16.13, 36.14], [36.14, 56.14], [56.14, 87.76], [87.76, 129.06]], \"sentences\": [\"A class of children dressed in white gi's are walking, kicking and punching in a classroom while their teacher walks around them.\", \" The class stops and the instructor talks and walks around them.\", \" The class then turns around and begins to walk, kick and punch in the direction they just came from.\", \"The class turns around when they get to the end, stops, and the instructor begins talking and demonstrating a kick and a punch to them, moves out of the way and the class resumes.\", \" When they reach the end they turn around again to walk, kick and punch back in the direction they came from and once again the instructor stops them to talk and demonstrate the moves and once again the class resumes their movements and when hey get to the end of the room they turn around and end their routine with their legs apart and arms in front of them.\"]}, \"v_uMw7YplUbAM\": {\"duration\": 126.78, \"timestamps\": [[0, 24.09], [26.62, 126.78]], \"sentences\": [\"A man is seen holding an accordion while speaking to the camera and smiling.\", \" He then plays the instrument while looking at the camera and ends by speaking more to the camera.\"]}, \"v_DjyO6zWUiDw\": {\"duration\": 62.07, \"timestamps\": [[0, 62.07], [0, 48.41], [48.41, 62.07]], \"sentences\": [\"A boy is standing on a stool in front of a kitchen sink.\", \" He is washing the dishes under the water.\", \" He puts the dishes into a black strainer.\"]}, \"v_RINsqxGLQdQ\": {\"duration\": 144.36, \"timestamps\": [[0, 47.64], [46.92, 114.04], [116.93, 144.36]], \"sentences\": [\"Several shots of people riding around kite surfing are shown as well as people speaking to the camera.\", \" The kids attempt the wind surfing and are seen moving their arms and legs around and waving to the camera.\", \" Two girls are seen dancing as well as people speaking to the camera and kids looking at the camera.\"]}, \"v_uE15Mhtj9nE\": {\"duration\": 230.67000000000002, \"timestamps\": [[0, 29.99], [29.99, 36.91], [36.91, 66.89], [66.89, 80.73], [80.73, 95.73], [95.73, 182.23], [179.92, 192.61], [192.61, 204.14], [202.99, 215.67], [214.52, 221.44], [220.29, 226.05], [227.21, 230.67]], \"sentences\": [\"A woman is explaining how to remove wallpaper.\", \" She turns around and bends over to pick up a steamer.\", \"  She shows how to steam the wallpaper in sections.\", \" She steps off the ladder and continues to steam the wallpaper.\", \"  She moves the ladder out of the way then she steams more wallpaper, all the way to the bottom, across and the middle.\", \" She moves the ladder, climbs up it and peels the wallpaper from the wall, picking the pieces that stick from the wall.\", \" She pulls the residue from the wall.\", \" She walks out of camera range and comes back with a scraper to remove the left pieces.\", \" She bends down again and walks out of camera range again.\", \"  She has a sponge and is cleaning the wall.\", \" She does more scraping and scrubbing.\", \" She turns around and smiles.\"]}, \"v_nGOEmEDesPI\": {\"duration\": 208.63, \"timestamps\": [[5.22, 11.47], [12.52, 18.78], [19.82, 29.21], [21.91, 82.41], [39.64, 82.41], [65.72, 67.81], [83.45, 124.14], [125.18, 167.95], [170.03, 181.51], [180.47, 200.29]], \"sentences\": [\"There are snowflakes falling over a forest.\", \" A man in an orange jacket snowmobiles across a snowy field.\", \" The man snowboards down the mountain.\", \" Two men snowmobile through the forest.\", \" A man in a dark jacket snowboards through a route filled with trees.\", \" The man in the orange jacket looks at the camera.\", \" The man in the orange jacket snowmobiles down a very steep mountain.\", \" The man in the orange jacket snowmobiles off a jump and does tricks.\", \" The man in the orange jacket starts a fire.\", \" The man in the dark jacket continues to ski through treacherous areas filled with trees.\"]}, \"v_7wyt_-SoudU\": {\"duration\": 111.75999999999999, \"timestamps\": [[0, 108.96], [7.26, 111.76], [0, 111.76]], \"sentences\": [\"man is welding a machine in a dark room.\", \" man is welding a metal pot and smoke is spreading out of the pot.\", \" man is wearing welding mask in a dark room welding something.\"]}, \"v_5aUWT0CmJlc\": {\"duration\": 79.39, \"timestamps\": [[0, 17.07], [17.47, 79.39]], \"sentences\": [\"A close up shots of a man riding around is shown and leads into him taking off part of his shows.\", \" He shows off several objects and pushes a puck along some ice while the camera sits on the object and the man follows behind.\"]}, \"v_0cYB-WFrVxk\": {\"duration\": 224.05, \"timestamps\": [[0, 10.08], [10.08, 220.69], [222.93, 224.05]], \"sentences\": [\"A boat pulls a person out of the water.\", \" They stand up and start water skiing behind the boat.\", \" The person falls and lets go of the rope.\"]}, \"v_AUwam1VhQm0\": {\"duration\": 87.59, \"timestamps\": [[0, 24.09], [22.77, 64.38], [53.43, 84.08]], \"sentences\": [\"A large slide is shown with dozens of children climbing up and going down.\", \" Children run up and down the side and continue to ride down the slide.\", \" The camera pans all around the slides and shows the kids going down.\"]}, \"v_OJYajhN1RHs\": {\"duration\": 237.26, \"timestamps\": [[26.1, 237.26], [0, 237.26]], \"sentences\": [\"A woman does a hair dressing routine by brushing and blowdrying hair.\", \"  The woman sits and has the hairdresser work her magic in under ten minutes.\"]}, \"v_Jmip8PuILhM\": {\"duration\": 36.15, \"timestamps\": [[0, 8.68], [8.13, 32], [33.26, 36.15]], \"sentences\": [\"A woman paints a square frame with legs.\", \" She turns it and paints another side.\", \" The camera pans to flowers.\"]}, \"v_aZfNeGBMU1Y\": {\"duration\": 19.97, \"timestamps\": [[0, 19.97], [2.8, 4.79], [4.79, 14.58], [17.97, 19.97]], \"sentences\": [\"A little girl is holding a stick and is gently hitting a large pinata that is ninja turtled theme.\", \"In the background a boy on a white chair is gently tossing a ball in the air above his lap.\", \"A taller boy is standing and walking near the boy sitting on the chair and he has a green plastic bag over his left hand that he's moving back and forth with a twist of his wrist.\", \"A little girl on the side begins to jump as she's waiting for her turn.\"]}, \"v_EBdkGs_jFDw\": {\"duration\": 219.66, \"timestamps\": [[0, 99.95], [101.04, 174.63], [174.63, 219.66]], \"sentences\": [\"A person cleans a window screen, and then puts detergent on the lower part of the window and brush.\", \" Then, the person cleans the borders of the window with a cloth, and shows the dirt in the cloth.\", \" After, the person takes a bottle from the sill and continues cleaning the borders of the window screen.\"]}, \"v_L9gznB55hhE\": {\"duration\": 238.61, \"timestamps\": [[0, 25.05], [23.86, 66.81], [65.62, 79.93], [79.93, 124.08], [124.08, 238.61]], \"sentences\": [\"A young woman is sitting on a step and then a poster saying I can do it is shown.\", \"The girl comes back and continues talking about what she is about to do.\", \"She then brings up a knife and talks about it as the camera zooms in on it.\", \"She then starts cutting a stick and words are displayed at the bottom showing the steps needed to complete the fire.\", \"A pocket knife is pulled out and she begins cutting a small piece of tinder.\"]}, \"v_xWIKFgygROg\": {\"duration\": 94.09, \"timestamps\": [[0, 8.47], [12.7, 52.22], [53.16, 94.09]], \"sentences\": [\"A man wearing an earring looks to the side.\", \" He is shown holding up a bow and arrow, aiming, then shooting at his target.\", \" The scene is repeated several times.\"]}, \"v_qz47x5-R-BU\": {\"duration\": 100.5, \"timestamps\": [[2.51, 100.5], [0, 100.5]], \"sentences\": [\"band is in stage and the front man is singing.\", \" woman is playing drums wearing a black cap.\"]}, \"v_xRfSkg8j7Dg\": {\"duration\": 223.42000000000002, \"timestamps\": [[0, 30.16], [35.75, 176.5], [194.38, 223.42]], \"sentences\": [\"A garden is shown from the outside of a house.\", \" The camera turns to take in various plants and flowers.\", \" We then get a good look at the grass.\"]}, \"v_wBiRGLLjFVU\": {\"duration\": 227.67000000000002, \"timestamps\": [[0, 227.67], [14.8, 99.04], [100.18, 166.2]], \"sentences\": [\"Boys balance on slack lines and do various tricks.\", \" People balances on a slack line in a park and slowly walks across the length of the rope between two trees.\", \" Boys balance across a slack line placed over a small pond at a park.\"]}, \"v_Bnw54GNBKlU\": {\"duration\": 154.09, \"timestamps\": [[0, 45.46], [45.46, 104.78], [105.55, 154.09]], \"sentences\": [\"woman is sitting in a sidewalk talking to the camera next to a green bucket.\", \" woman is jumping on sidewalk playing trick.\", \" another woman is in the sidewalk jumping playing trick.\"]}, \"v_xcworhtkwNY\": {\"duration\": 51.32, \"timestamps\": [[0, 4.11], [4.88, 41.31], [41.57, 51.32]], \"sentences\": [\"A band is seated outside on asphalt.\", \" They are playing a series of drums with sticks and their hands.\", \" Numerous people pass by on foot and bike.\"]}, \"v_fxEcsM0EaA4\": {\"duration\": 20.3, \"timestamps\": [[0, 20.3], [5.48, 6.6], [0.3, 20.3]], \"sentences\": [\"People are jumping rope on a stage.\", \" They switch places and a different person starts jumping.\", \" A man stands and holds the jump rope.\"]}, \"v_whcxrkF2hws\": {\"duration\": 205.99, \"timestamps\": [[0, 10.3], [16.48, 57.68], [64.89, 183.33], [187.45, 205.99]], \"sentences\": [\"The Province of Albay seal is shown.\", \" Several team members are on a court outdoors, playing volleyball.\", \" They lob the ball back and forth over the net in front of an audience.\", \" Afterward, they celebrate, laughing and smiling.\"]}, \"v_LHe5cTzHB3o\": {\"duration\": 62.3, \"timestamps\": [[5.92, 46.72], [10.28, 46.72], [25.54, 46.72], [50.15, 57.63], [53.27, 57.63]], \"sentences\": [\"There are two men boxing in an indoor boxing room that has mirrors on one entire wall.\", \" There is another person standing in the same room who is video taping them fight.\", \" The boxer in the red shorts punches the boxer in the black shorts.\", \" The boxer in black falls down and lands on his back and groans.\", \" Then he stands right back up while the boxer in red walks around him.\"]}, \"v__4CLYKFzmoY\": {\"duration\": 231.78, \"timestamps\": [[0, 16.22], [22.02, 172.68], [173.84, 231.78]], \"sentences\": [\"A young man is wearing headphones and standing in front of a microphone.\", \" He begins playing the violin.\", \" He closes his eyes, listening to himself as he plays.\"]}, \"v_sYhUC2uQR7I\": {\"duration\": 230.41, \"timestamps\": [[0, 16.13], [14.98, 63.36], [63.36, 133.64], [133.64, 230.41]], \"sentences\": [\"A gym room with several large boxing bags aligned along the perimeter of the room is shown.\", \"A group of guys then come in the building and they start to run around the bags as a warm up.\", \"Once they are finished,the men pair up with one another and three groups are shown boxing one another.\", \"A bumper sticker then appears saying,\\\"Keep your Eyes on the Prize\\\" and then more pairs of men begin kick boxing.\"]}, \"v_ejzgfj6QKB8\": {\"duration\": 86.15, \"timestamps\": [[0, 10.34], [10.77, 35.75], [38.34, 86.15]], \"sentences\": [\"A man is in a yard with a cricket bat.\", \" He flips the bat over and over again.\", \" He trips, then kicks the ball into the air, hitting it.\"]}, \"v_AzNHZyeXHBM\": {\"duration\": 42.56, \"timestamps\": [[6.6, 10.64], [10.85, 12.98], [14.9, 20.64], [25.75, 26.81]], \"sentences\": [\"A woman is standing on a track talking.\", \" She jumps into a pile of sand.\", \" She is sprinting down the track.\", \" It shows her stretching and jumping into a pile of sand.\"]}, \"v_2EfjOGiEeJs\": {\"duration\": 88.19, \"timestamps\": [[0, 40.57], [34.39, 88.19]], \"sentences\": [\"The camera pans around a large group of people wandering around and leads into people playing a soccer match.\", \" The players are shown watching on the side and show more shots of the people and the city.\"]}, \"v_nHkVfEKklJA\": {\"duration\": 100.78, \"timestamps\": [[0, 6.05], [7.05, 100.78], [55.43, 100.78]], \"sentences\": [\"A young boy jokes around sitting at a drum set.\", \" A boy plays a drum set at home.\", \" The parents watch the boy play the drums.\"]}, \"v_l4YcjFl6SDc\": {\"duration\": 172.85, \"timestamps\": [[0, 34.57], [20.74, 45.81], [41.48, 152.97], [62.23, 172.85]], \"sentences\": [\"A hand is rubbing a chalk to a blue tip.\", \" The man is concentrating on the pool table, slowly hit the ball with the billiard stick.\", \" An old man with beard is giving interview.\", \" The man is arranging the ball on the table and then hit them and they all went into the holes.\"]}, \"v_GQzwzOM9db8\": {\"duration\": 75.98, \"timestamps\": [[0.38, 27.73], [26.97, 69.9]], \"sentences\": [\"The athlete who is wearing gray tights and black shirt with number 2 on it started go on the beam and started to swirl around.\", \" When he got of from the beam, he walked towards the yellow container that contains white powder, then went back to the beam and did his tricks by swirling around.\"]}, \"v_jxAZc0VgG4w\": {\"duration\": 99.89, \"timestamps\": [[0, 22.98], [21.48, 73.42], [71.42, 99.89]], \"sentences\": [\"An athletic woman is shown running down a track and jumping into a large sand pit.\", \" Her jump is then shown again several times in slow motion and another runner takes a turn at the jump.\", \" Her jump is shown again in slow motion and she waves to the audience while smiling.\"]}, \"v_-FbWTFJ3kV0\": {\"duration\": 49.0, \"timestamps\": [[0, 7.59], [7.59, 19.84], [19.84, 31.85], [31.85, 36.5], [36.5, 49]], \"sentences\": [\"A boat that has a blue sail with two people is sailing in a body of water.\", \"The person at the front of the boat is leaning off to the side and is seemingly hitting the water.\", \" The water starts to become more and more choppy.\", \" The boat makes a turn to the right.\", \" The boat begins to head to the shore.\"]}, \"v_VVezUub0ocQ\": {\"duration\": 193.14, \"timestamps\": [[0, 155.48], [155.48, 193.14]], \"sentences\": [\"cat is sleeping in a furry table and a man holds him and shows a nail clipper and starts cutting the cat nails sitting in a couch.\", \" cat is sitting in a red carpet.\"]}, \"v_ShT4biEuQDo\": {\"duration\": 22.29, \"timestamps\": [[0, 22.07], [3.12, 6.02], [7.02, 16.83], [15.05, 22.29]], \"sentences\": [\"A shirtless man is shoving snow outside at the curb.\", \" He waves his hands around and motions at the passing cars.\", \" He continues to wave and roll his hands in the air as more cars pass.\", \" He continues shoveling the snow.\"]}, \"v_hHWXldYW8rU\": {\"duration\": 8.31, \"timestamps\": [[0.17, 4.53], [3.03, 8.31]], \"sentences\": [\"A camera walks closer to a girl pointing to her eye in the mirror.\", \" She then bends down forward and sticks her face under the water rubbing it along her face.\"]}, \"v_Si4_ER4lUME\": {\"duration\": 39.43, \"timestamps\": [[0.2, 10.05], [8.87, 30.95], [24.45, 38.64]], \"sentences\": [\"A young woman is seen sitting in a kayak looking to the camera.\", \" The girl then begins moving the paddle back and fourth.\", \" She pauses her paddling to laugh off into the distance.\"]}, \"v_Z3NtsxP6w-g\": {\"duration\": 218.45, \"timestamps\": [[0, 22.94], [22.94, 55.71], [56.8, 218.45]], \"sentences\": [\"A man is seen speaking to the camera and leads into actors being interviewed about a film.\", \" Several shots of the film is shown as well as stills from other movies and appearances together.\", \" The couple is then shown performing a tango routine on a large stage and ends by posing on stage with the audience cheering.\"]}, \"v_KHOTebb8UC8\": {\"duration\": 148.14, \"timestamps\": [[10.37, 30.37], [30.37, 58.52], [58.52, 82.22], [82.22, 121.48], [121.48, 148.14]], \"sentences\": [\"A woman is talking about an elliptical exercise machine specially designed for women.\", \" Alongside her is the pro fitness expert who is demonstrating how the machine works.\", \" He shows the buttons that need to be pressed in order to start the elliptical.\", \" After he gets the machine started, the lady hops onto the machine and begins using the elliptical.\", \" She continues to exercise on the machine as the fitness trainer gives her tips on how the machine will benefit her.\"]}, \"v_dKf46wUnn-s\": {\"duration\": 65.88, \"timestamps\": [[0.66, 29.64], [27.01, 65.22]], \"sentences\": [\"Two children are seen walking around a yard play crochet with one another and laughing on the side.\", \" the kids continue to play with each other while the camera pans all around their movements.\"]}, \"v_r1x3hjFWGYM\": {\"duration\": 174.34, \"timestamps\": [[0, 4.36], [4.36, 61.89], [61.89, 114.19], [114.19, 130.75], [121.16, 164.75], [164.75, 174.34]], \"sentences\": [\"We see an intro screen with contact lenses.\", \" We see a man wash his hand and take a contact from a new package.\", \" The person holds their eye open and inserts the contact lens.\", \" The man smiles and we see his face .\", \"We are then shown how to remove the contact lens with instructions.\", \" We then see the ending screen.\"]}, \"v_Z-kXPcLsxBg\": {\"duration\": 130.33, \"timestamps\": [[0, 8.47], [12.38, 64.52], [69.73, 130.33]], \"sentences\": [\"A purple rope is attached to a blue one, which is then stretched between two trees.\", \" A man bounces and balances on the rope as three other men watch.\", \" The other men take turns, some falling and rebalancing.\"]}, \"v_hQ4xkr6VpnA\": {\"duration\": 99.53999999999999, \"timestamps\": [[0, 9.46], [10.45, 99.54], [45.79, 99.54]], \"sentences\": [\"First the woman is shown tracing her finger down her neck.\", \"  Then she moves a part of her hair out of her way and starts to braid a part of her hair.\", \" Then she braids another braid that is smaller than the first one, but she connects the hair, by using a couple of strands from the last braid.\"]}, \"v_ehO8oXanK1Y\": {\"duration\": 54.06, \"timestamps\": [[0, 18.11], [19.46, 31.35], [34.87, 54.06]], \"sentences\": [\"A woman does a karate routine with a partner and throws a bunch which is blocked twice.\", \" The woman practices a karate chops to her partner who watches and lifts hands.\", \" The woman throws a blow to her partner who catches it and throws her to the ground.\"]}, \"v_S7RWgSxlZ-M\": {\"duration\": 99.24000000000001, \"timestamps\": [[0, 10.92], [18.36, 66.49], [73.94, 99.24]], \"sentences\": [\"A couple of tools are sitting on the edge of a table.\", \" A man adjusts the position of the tools.\", \" He uses a knife in the crevices, sharpening the knife.\"]}, \"v_r8ZIHLqFPfg\": {\"duration\": 99.92, \"timestamps\": [[0, 13.99], [13.49, 35.97], [35.47, 65.94], [65.94, 99.92]], \"sentences\": [\"Vassen cloud nine red colored contacts are in the container they belong in.\", \" A blondish haired woman with brown eyes places one of them in her eye.\", \" You can see the difference of the brown and the contact very clearly and it looks pretty great.\", \" She then put the other contact in so you are able to see how both lenses look at a distance.\"]}, \"v_EzX0FZI6pCg\": {\"duration\": 4.44, \"timestamps\": [[0, 0.09], [0.11, 2.42], [2.42, 4.44]], \"sentences\": [\"A young man is standing in a netted green circular area.\", \" The man is holding a ball and begins to spin himself around and around multiple times and then throws the ball.\", \"After he throws the ball he falls hard and quickly onto the ground.\"]}, \"v_UA_RDwuO47s\": {\"duration\": 72.53999999999999, \"timestamps\": [[0, 2.9], [2.9, 63.47], [5.8, 63.47], [11.97, 26.48], [69.64, 72.54]], \"sentences\": [\"The word funkin is on the screen and underneath it says Bacardi cocktail.\", \" A man in a funkin shirt talks about and demonstrates how to make the Bacardi cocktail from behind a bar.\", \" The man is showing people how to make a drink in a martini glass.\", \" The man puts ingredients in a regular glass while showing the bottles of ingredients he is using.\", \" The word funkin is on the screen.\"]}, \"v_4j7_nh61bvo\": {\"duration\": 111.22, \"timestamps\": [[10.01, 15.02], [15.02, 29.47], [29.47, 32.81], [32.81, 58.95], [58.95, 87.31], [87.31, 102.33]], \"sentences\": [\"The video by TMZ is showing several overweight men as part of the sumo destruction event.\", \" It shows a picture of singer George Michael too.\", \" There's a panel of people sitting in a studio talking about the event.\", \" They are reading a script and laughing.\", \" There are pictures of sumo wrestlers shown too.\", \" It also shows sumo wrestlers wrestling as spectators watch the event.\"]}, \"v_mxZRW_Xy7ks\": {\"duration\": 169.46, \"timestamps\": [[0, 4.24], [4.24, 7.63], [7.63, 20.34], [20.34, 29.66], [29.66, 169.46]], \"sentences\": [\"three woman are walking next to a house in a parking lot.\", \" people are snowboarding between two fences in a small hall going down a small slope.\", \" people are standing in a snowy mountain in snowboards.\", \" people are eating sitting outside a tent.\", \" people are snwoboarding going down a snowy slope ad doing tricks in mountains.\"]}, \"v_DMw9Cb_Xy2A\": {\"duration\": 97.06, \"timestamps\": [[0, 3.88], [4.37, 12.62], [13.1, 18.44], [18.93, 24.27], [24.75, 32.52], [33, 43.68], [44.16, 49.5], [50.47, 54.84], [55.32, 62.6], [63.09, 65.52], [66.49, 97.06]], \"sentences\": [\"A man shoots an arrow with his bow.\", \" He grabs another arrow and shoots again.\", \" Once more, he shoots an arrow.\", \" He finds another arrow and shoots.\", \" He takes another shot of an arrow.\", \" Another arrow is grabbed and he shoots.\", \" He takes another one and shoots it.\", \" He grabs another arrow from his waist and shoots again.\", \" He shoots an arrow once more.\", \" He grabs a final arrow and shoots.\", \" A person walks towards the hay where the arrows have been shot.\"]}, \"v_tnXjdv_GM9g\": {\"duration\": 56.17, \"timestamps\": [[0, 5.34], [7.58, 30.33], [30.61, 56.17]], \"sentences\": [\"A man prepares to run down a track.\", \" He runs very fast down the path.\", \" He takes a giant leap, landing in the sand.\"]}, \"v_7Nj1Y-fyq_c\": {\"duration\": 98.62, \"timestamps\": [[0, 8.88], [8.88, 80.87], [80.87, 98.62]], \"sentences\": [\"A man dressed in business attire enters a kitchen with some children behind him, he shakes a woman's hand, rubs her shoulder and then introduces the children to the woman, and the whole time black text on the top of the screen reads \\\"'Lying' Ryan has a few minutes to kill before a flight\\\".\", \" More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him are appearing on the screen.\", \"The man is out of the kitchen now and walking then stops to shake hands and talk to a man, but a negative message about him still appears on the screen.\"]}, \"v_ofrkSTRhCE4\": {\"duration\": 114.24000000000001, \"timestamps\": [[0, 55.98], [51.98, 114.24]], \"sentences\": [\"A woman is seen running down a road while looking at her watch and pointing to things in front of her.\", \" She continues running down the street while other people applaud her and she keeps running.\"]}, \"v_i-LI4TpJNQ8\": {\"duration\": 161.38, \"timestamps\": [[0, 19.37], [19.37, 29.86], [29.05, 161.38]], \"sentences\": [\"man is sitting in a kayak next to the sidewalk.\", \" man is taking out the kayak from the water.\", \"  man is in the river holding the row and doing kayaking and other men are beside him.\"]}, \"v_b8S0HFHh_p0\": {\"duration\": 187.43, \"timestamps\": [[0, 121.83], [14.99, 75.91], [87.16, 107.77], [107.77, 125.58], [127.45, 187.43]], \"sentences\": [\"A man is recording himself in a lever with another man.\", \" The ride goes up higher and the man with a hat is talking to the other.\", \" The ride reaches the top and the man holds out his arms.\", \" He counts down and drops the man down to bungee jump.\", \" The man makes it to the bottom safely and the ride comes back down.\"]}, \"v_OrVgspx6Axs\": {\"duration\": 186.92, \"timestamps\": [[0, 23.37], [23.37, 87.85], [87.85, 134.58], [134.58, 186.92]], \"sentences\": [\"Outside in oak creek there is some bikers getting ready yo race down the dirt.\", \" When the gates go down they all go as fast as they can through the obstacle of dirt.\", \" There are a few people sitting by in the stands watching as the bikers go off.\", \" They even show some of the kids waiting and having a good time watching the race.\"]}, \"v_4vdclFJFrdk\": {\"duration\": 97.71000000000001, \"timestamps\": [[0.98, 8.31], [8.31, 16.61], [17.59, 23.94], [23.45, 40.06], [40.55, 49.34], [49.83, 57.16], [57.16, 62.05], [62.53, 67.91], [68.4, 81.1], [81.59, 91.85]], \"sentences\": [\"A woman practices floor gymnastics while others engage in various activities in the background.\", \" A second woman practices floor gymnastics.\", \" The two women are shown performing the same action in turn.\", \" The first woman is shown practicing more floor gymnastics, with occasional slow motion replays of her action.\", \" The second woman is shown performing some sort of pose.\", \" The first woman is shown performing gymnastics once again.\", \" The second woman is shown stretching her leg in the air.\", \" The first woman is shown performing gymnastics once more.\", \" The second woman is shown in some sort of pose once again.\", \" The first woman is shown performing gymnastics yet again.\"]}, \"v_fFWHlFZEm3M\": {\"duration\": 169.5, \"timestamps\": [[0, 93.23], [93.23, 147.47], [147.47, 169.51]], \"sentences\": [\"A humongous red, black and white ship is shown on the water, then a smaller ship is shown quickly approaching the boat that is filming and suddenly it crashes into the boat and it has black smoke coming from the top of it.\", \"A lot of people are shown on the boat with life vests moving quickly about the ship, and men are frantically pulling at rope.\", \" A man and a woman are now sweeping the area where the boat was hit and another man is helping to pick up broken pieces.\"]}, \"v_VRS48f5tj_c\": {\"duration\": 191.08, \"timestamps\": [[0, 83.12], [84.07, 136.62], [137.58, 167.19], [170.06, 191.08]], \"sentences\": [\"A lady plays the harp and another plays the flute in an orchestra and we see the conductor and return to the flute lady.\", \" We see the whole orchestra playing and return to the flute lady and the orchestra cut back and forth.\", \" We watch the conductor as he works and see the orchestra.\", \" We see the harp again and the orchestra before returning to the harp.\"]}, \"v_p2n_FtzA1gk\": {\"duration\": 87.45, \"timestamps\": [[0, 86.14], [6.56, 86.14], [83.07, 86.14]], \"sentences\": [\"A woman is sitting on the edge of a bath tub.\", \" She begins shaving her leg with a razor.\", \" She looks at the bottom of the razor.\"]}, \"v_aT5S8PcnlXo\": {\"duration\": 95.46000000000001, \"timestamps\": [[0, 94.98], [3.34, 10.5], [10.02, 17.18], [15.27, 64.91], [61.57, 94.03]], \"sentences\": [\"There's an athlete doing the hammer throw in a large stadium with some spectators and few other players watching him.\", \" He begins by swinging the hammer string in his hands while rotating his body.\", \" Two people step forward to see where the athlete's ball has landed.\", \" The athlete does another hammer throw and the distance of his throw is measured annd his statistics are shown on screen.\", \" The spectators in the bleachers watch the sporting event.\"]}, \"v_ejkGxGrEdO4\": {\"duration\": 133.89, \"timestamps\": [[2.68, 37.49], [38.83, 107.11], [76.32, 131.21]], \"sentences\": [\"A woman and dog are seen standing in a large field performing tricks with a frisbee.\", \" The woman and dog are shown in several more clips playing with the frisbee and performing tricks.\", \" The dog jumps up and down as well as chases after the frisbee while the woman watches on the side.\"]}, \"v_j5WshG7CEYY\": {\"duration\": 57.26, \"timestamps\": [[0, 27.49], [27.2, 57.26]], \"sentences\": [\"Two pairs of females are in a room playing a game of Foosball.\", \"The girls on the left make two goals and they begin to cheer.\"]}, \"v_bRXOj9Jm1_E\": {\"duration\": 188.5, \"timestamps\": [[0, 5.65], [8.48, 9.43], [6.6, 59.38], [58.44, 59.38], [59.38, 135.72], [134.78, 136.66], [138.55, 188.5]], \"sentences\": [\"A man runs and dives into the water on a beach.\", \" A man carrying a surf board walks on the beach.\", \" People are surfing in the water.\", \" A man is sitting in the sand.\", \" More people surf in the water.\", \" Two ladies in bikinis are on the beach.\", \" People are riding waves in the water surfing.\"]}, \"v_1MQkI4UafqE\": {\"duration\": 79.74, \"timestamps\": [[1.99, 46.65], [32.69, 75.35]], \"sentences\": [\"The video leads into several clips of young children practicing gymnastic moves in a large gym.\", \" The video continues on with the kids flipping and jumping around on the mats.\"]}, \"v_ByTL6_iHoIA\": {\"duration\": 161.22, \"timestamps\": [[0, 15.32], [0, 161.22], [8.06, 161.22]], \"sentences\": [\"man is scuba diving under water and saying hi to the camera.\", \" people are scuba diving watching the  fishes are swimming between rocks.\", \" people are under the sea scuba diving recording everything.\"]}, \"v_TlwJfzlZZsE\": {\"duration\": 120.51, \"timestamps\": [[13.26, 20.49], [26.51, 34.95], [101.23, 109.06]], \"sentences\": [\"A man spins and throws a ball onto the field.\", \" Another man spins and throws a ball on the field.\", \" People in the stands are huging the athlete.\"]}, \"v_kzeKQBi6Rhg\": {\"duration\": 187.12, \"timestamps\": [[0, 32.75], [32.75, 167.47], [72.04, 159.99], [95.43, 117.89], [167.47, 187.12]], \"sentences\": [\"An introduction comes onto the screen for a video about how to play different songs on the violin.\", \" A man comes onto the screen with a violin and begins to explain different techniques for playing the violin.\", \" He moves closer to the camera so that you can see the detail of what he is doing with his hands.\", \" He begins to play different notes on the violin as he moves his fingers.\", \" The video ends with the closing credits shown across the screen.\"]}, \"v_c9mrRiwmhZw\": {\"duration\": 183.72, \"timestamps\": [[0, 26.64], [27.56, 73.49], [73.49, 117.58], [117.58, 183.72]], \"sentences\": [\"A man is standing in front of the camera talking and then moves behind the table.\", \"On the table,he has wrapping paper,a yard stick,tape and a pencil and moves them to the other side of the box.\", \"The box is then picked up and placed on top of the wrapping paper and the man measures the wrapping paper.\", \"The wrapping paper is then taped and the rest is measured before it taped.\"]}, \"v_orR865dd2l4\": {\"duration\": 59.65, \"timestamps\": [[0, 59.06], [7.16, 59.06]], \"sentences\": [\"A woman and man play shuffleboard outside.\", \"  The woman goes first and then the man takes his turn.\"]}, \"v_Cx6oTdEq40w\": {\"duration\": 87.05, \"timestamps\": [[0, 41.78], [40.91, 77.48], [79.22, 87.05]], \"sentences\": [\"A man is shown wearing a helmet and climbing up on a rock wall.\", \" He continues to work his way up the rock wall while the camera captures his movements and panning around the mountains and water around them.\", \" The climber checks his rope and shakes the clip off of his rope.\"]}, \"v_pg-DMwEM3K4\": {\"duration\": 48.32, \"timestamps\": [[0.24, 4.59], [4.83, 7.25], [7.49, 14.5], [14.74, 44.21], [44.7, 47.36]], \"sentences\": [\"The credits of the clip are shown.\", \" People load into orange canoes.\", \" People row canoes on a body of water.\", \" Two guys paddle their canoe.\", \" The credits of the video are shown.\"]}, \"v_RDq85fMq41s\": {\"duration\": 175.5, \"timestamps\": [[0, 5.26], [5.26, 44.75], [44.75, 78.97], [78.97, 110.56], [110.56, 164.97], [164.97, 175.5]], \"sentences\": [\"A smiling girl wearing braces and glasses lifts a pink bag above her head as she's standing in front of the middle body of a horse, and the words \\\"Grooming with Erin\\\".\", \" Now the horse is fully visible and the girl reaches into her pink bag to grab a brush and begins brushing the horse all over its body from front to back and on each side.\", \"The girl goes back to the pink bag, grabs another brush and begins brushing the horse again from head to toe and all around its body on each side.\", \" The girl once again goes to the pink to return the brush she was using and grabs another brush where she once again begins to brush the horse from head to toe and on all sides.\", \"The girls to the bag to drop the brush and then grabs a green tool, walks over to the horses front left foot, picks it up and begins cleaning out the shoe, then walks around the horse and does the rest of its shoes.\", \"When the girl is done with cleaning out the shoes, she returns the tool back to the pink bag and grabs a brush from off camera, brushes the mane, kisses the horse, and then returns the brush back to the pink bag, walks towards the camera and smiles big into it.\"]}, \"v_mxIsgAmJHsM\": {\"duration\": 88.07, \"timestamps\": [[0, 23.78], [23.78, 54.61], [54.61, 70.9], [70.9, 88.07]], \"sentences\": [\"A woman spins a rod on the air while spinning and dancing, then she throws the rod high and spins before to catch the rod.\", \" The woman continues spinning the rod around body, also throw the rod in the air.\", \" Then, the woman rolls the rod on her arms, then she throw the rod in the air and  and does a cartwheel before catching the rod.\", \" Next, the woman rolls the rod on her neck graciously and end her performance.\"]}, \"v_HWymkBdgm1M\": {\"duration\": 144.0, \"timestamps\": [[0, 98.64], [98.64, 144]], \"sentences\": [\"First the elderly woman goes to hug the young man and then a man in a blue shirt plays the piano beautifully of different melodies.\", \" Then two little boys run outside the door while the man who's standing by the door looks tired and pitiful.\"]}, \"v_1OJa2iiFxfk\": {\"duration\": 234.34, \"timestamps\": [[0, 8.2], [8.2, 21.09], [21.09, 57.41], [57.41, 72.64], [72.64, 78.5], [78.5, 99.59], [99.59, 104.28], [104.28, 145.29], [145.29, 164.04], [164.04, 198.01], [198.01, 216.76], [216.76, 227.31], [226.13, 230.82], [226.13, 234.34]], \"sentences\": [\"A young man with a backpack is talking and walking through a station.\", \" There is a man sitting on the ground shining a shoe.\", \" He applies ointment to the shoe and resumes buffing the shoe.\", \" The customer moves his right foot down and places his left foot on the stand and the man starts polishing the shoe.\", \" Two men on either side of the shoe shiner is observing the crowd.\", \" The shiner continues to buff the left shoe.\", \" The train is moving along the station as a crowd walks by.\", \" The shiner returns to buffing the right shoe.\", \" The shiner wipes the shoe with a cloth.\", \" The man resumes buffing the left shoe.\", \" The man drops his block and resumes buffing.\", \" The man takes the cloth to shine the left shoe.\", \" The customer observes his shiny shoes.\", \" The customer steps away from the shoe shiner.\"]}, \"v_dkG9YRNJllQ\": {\"duration\": 34.02, \"timestamps\": [[0, 9.7], [8.67, 24.83], [23.3, 33.34]], \"sentences\": [\"A man is seen wearing a reef blower and blowing all around a trampoline.\", \" Kids are seen jumping on the trampoline while the man blows around them.\", \" The man continues to blow as the kids jump around.\"]}, \"v_XlR3u3bROWM\": {\"duration\": 134.58, \"timestamps\": [[0, 30.95], [34.99, 85.46], [84.79, 134.58]], \"sentences\": [\"A lacrosse team huddles and then practices.\", \"  A baby is shown and then there are people interviewed.\", \"  A helmet is shown and more interviews are conducted.\"]}, \"v_8xm7fWZ0RmE\": {\"duration\": 33.74, \"timestamps\": [[0, 5.74], [5.57, 9.28], [8.6, 28.51], [27.16, 33.74]], \"sentences\": [\"An Asian man is standing by the keyboard, he is wearing a red shirt with black top inside.\", \" Two people, one girl and one boy are sitting, the girl is wearing a white top, while the boy is wearing a white stripe sweater.\", \" The man started playing on the keyboard, he has his hands shown, he is wearing a black bead bracelet, then he continue playing while the two people in white is listening.\", \" When the man finished playing his keyboard, people cheered for him.\"]}, \"v__0IkiqDouX8\": {\"duration\": 149.97, \"timestamps\": [[0, 39.74], [34.49, 100.48], [83.98, 145.47]], \"sentences\": [\"A camera pans around a large body of water followed by people swimming in the water.\", \" Clips are shown of people surfing as well as swimming in the water and smiling to the camera.\", \" More clips are shown of people close up moving along the water.\"]}, \"v_Fe-DUewB8ok\": {\"duration\": 20.48, \"timestamps\": [[0, 5.12], [5.43, 14.95], [16.79, 18.74], [19.97, 20.48]], \"sentences\": [\"A child boxes a gloved adult kneeing on the floor.\", \" The child also practices karate kicks.\", \" The adult and child high five with gloved hands.\", \" The adult starts to get off the floor.\"]}, \"v_njsO-Nlwkmg\": {\"duration\": 36.9, \"timestamps\": [[0, 27.67], [11.44, 28.41], [27.67, 36.71]], \"sentences\": [\"A child plays with a vacuum attachment piece in a bedroom.\", \" The mother vacuums the floor of the bedroom.\", \" The child brings the vacuum attachment into the next bedroom.\"]}, \"v_VFSSZXuMmgg\": {\"duration\": 141.09, \"timestamps\": [[0, 124.15], [26.81, 31.04], [123.45, 127.68]], \"sentences\": [\"People are rollerblading and doing tricks.\", \" A person is skateboarding at a skate park.\", \" A white car is in the street.\"]}, \"v_mI7Hwk_AF-M\": {\"duration\": 120.02, \"timestamps\": [[0, 80.42], [80.42, 120.02]], \"sentences\": [\"women are in a big green field playing hurling.\", \" woman is in a small green court practicing hurling shots.\"]}, \"v_DsUbSyRX-B4\": {\"duration\": 29.51, \"timestamps\": [[0, 4.87], [4.87, 12.1], [11.95, 15.79], [15.79, 29.51]], \"sentences\": [\"Outside at the playground a boy has climbed to the top of the swing set while other children are swinging.\", \" The boy at the top is just sitting casually while another child is being pushed by a friend on the swing.\", \" She is building up a lot of speed and is going really high.\", \" She jumps off but does not land very well at all, she crashed down into the grass.\"]}, \"v_TQepyWudKYQ\": {\"duration\": 31.73, \"timestamps\": [[0, 2.7], [2.7, 8.25], [8.41, 13.8], [13.96, 22.53], [22.69, 24.59], [24.75, 31.73]], \"sentences\": [\"A man stands on a field.\", \" The crowd in the stadium cheers on.\", \" Players on the field prepare to start a game.\", \" The pitcher pitches the ball.\", \" The batter tries to hit the ball but misses.\", \" The pitchers team excitedly exits the field.\"]}, \"v_5YsdlM3Stjo\": {\"duration\": 150.32999999999998, \"timestamps\": [[3.01, 9.77], [9.77, 32.32], [32.32, 47.35], [47.35, 77.42], [77.42, 102.22], [102.22, 124.02], [124.02, 133.04]], \"sentences\": [\"There's a brown horse tied in a stable.\", \" A woman in a green shirt and brown boots walks in and begins scrubbing the horse.\", \" She continues scrubbing and cleaning the horse on his stomach.\", \" She scrubs the horse's neck area and back area thoroughly.\", \" She then walks to the horse's other side and continues scrubbing.\", \" The horse begins moving his neck and head as she continues scrubbing.\", \" Then she goes in front of the horse and cleans his mouth.\"]}, \"v_auxBRPzLiIo\": {\"duration\": 18.09, \"timestamps\": [[0, 18.09], [0, 11.12], [5.61, 7.78]], \"sentences\": [\"Three girls are riding stationary bikes.\", \" A man is standing in front of them holding a camera.\", \" Another man walks in front of them.\"]}, \"v_cukeWRPJzf8\": {\"duration\": 74.14, \"timestamps\": [[0, 19.28], [21.5, 60.8], [62.65, 74.14]], \"sentences\": [\"An underwater view is being shown as a woman dressed like a mermaid is swimming.\", \" A large nurse whale swims alongside her.\", \" Multiple pictures of the swimming mermaid are shown.\"]}, \"v_a2k-AgrAppg\": {\"duration\": 63.37, \"timestamps\": [[0, 35.17], [35.17, 63.37], [42.77, 45.62]], \"sentences\": [\"A little girl sits on front a cup of ice cream, then she takes a piece of food from the cup and eats it.\", \" Then, the girl grab the spoon and eats the ice cream.\", \" A hand takes nuts from the ice cram.\"]}, \"v_u-YaDbGZoPk\": {\"duration\": 68.73, \"timestamps\": [[0, 18.56], [18.21, 68.73]], \"sentences\": [\"A picture of a scrubber is shown followed by a man using the item on a set of windows.\", \" He then wipes down the glass with another rag and points to the window and closing it while credits roll.\"]}, \"v_W5g1IIAOZqs\": {\"duration\": 33.0, \"timestamps\": [[0, 12.04], [12.21, 19.63], [19.8, 28.38], [28.38, 31.35]], \"sentences\": [\"People gather in an indoor exhibition.\", \" A man and a robot play ping pong in the exhibition.\", \" People wears lanyards and watch around the exhibits, while a man explains a person holding two discs.\", \" Other people sits in a eating area while reading and texting.\"]}, \"v_7OcfzMIZsxA\": {\"duration\": 176.26, \"timestamps\": [[0.88, 11.46], [53.76, 55.52], [126.91, 132.2]], \"sentences\": [\"People are eating ice cream cones.\", \" A person puts ice cream into an ice cream cone.\", \" A woman in glasses talks to the camera.\"]}, \"v_jbh_K0yyJFo\": {\"duration\": 23.66, \"timestamps\": [[0, 3.31], [3.31, 9.35], [9.35, 16.45], [16.45, 23.66]], \"sentences\": [\"Two very large men are in the middle of a ring wearing sumo wrestling outfits.\", \" They are getting in position and waiting for the referee to tell them to start the match.\", \" Once the ref says to start they begin  the match both running towards one another immediately.\", \" The tan skinned man knocks the other man down tot the ground and he wins the match.\"]}, \"v__Rcb5kuhn90\": {\"duration\": 33.86, \"timestamps\": [[0, 31.99], [7.28, 9.31], [32.67, 33.86]], \"sentences\": [\"A woman manipulates a Rubik's cube while a man watches on in a competitive setting.\", \" Two men walk through the camera frame in the background.\", \" The woman puts the solved Rubik's cube on the table before her.\"]}, \"v_7IIi_92vRLo\": {\"duration\": 178.54, \"timestamps\": [[0, 39.28], [40.17, 97.3], [98.2, 145.51], [148.19, 178.54]], \"sentences\": [\"An intro leads into various pictures of girls with long hair as well as girls who have their hair braided together.\", \" A girl's hair length is measured followed by more pictures of her long hair and speaking to the camera.\", \" A set of hands is then seen cutting the girl's hair and showing her ponytail to the girl.\", \" More pictures of the girl's new hair is shown as well as old pictures of her.\"]}, \"v_Zk4Ewz3v6aQ\": {\"duration\": 124.2, \"timestamps\": [[0, 31.67], [31.67, 103.71], [103.71, 124.2]], \"sentences\": [\"A man wearing a black shirt and black shorts is standing next to an exercise machine.\", \" He sits on the exercise machine and starts working out.\", \" He stops working out and releases the bar.\"]}, \"v_jIb_BfiRsQ4\": {\"duration\": 140.97, \"timestamps\": [[0, 31.72], [31.72, 95.15], [95.15, 140.97]], \"sentences\": [\"A man fry vegetables in a pan and stir with a large spoon.\", \" Then the man brake eggs in a bowl and mix well, after the man add the eggs in the pan to do an omelette.\", \" He roll the omelette and flip it in the air, then the man serves the omelette on a dish.\"]}, \"v_SbX8KDWMhio\": {\"duration\": 68.45, \"timestamps\": [[0, 7.87], [7.87, 68.45], [19.51, 68.45], [29.78, 44.84]], \"sentences\": [\"A woman is dancing along to some music while standing in front of a television.\", \" As she is dancing she begins to smoke a hookah pipe.\", \" The camera shows two other women in the room as they dance and smoke the hookah pipe with her.\", \" the camera turns to a man that is in the room with a camera taking pictures.\"]}, \"v_IGcsVPa34Hc\": {\"duration\": 214.44, \"timestamps\": [[17.15, 36.45], [36.45, 47.18], [47.18, 65.4], [65.4, 167.26], [167.26, 181.2], [181.2, 203.72], [203.72, 211.22]], \"sentences\": [\"A small girl is making cookies with her mother in her kitchen.\", \" She wants her mom to pretend that she is Santa Claus.\", \" The laughs and rolls the cookie dough on the cutting board.\", \" The mother opens the oven and puts the tray full of cookie dough into the oven for baking.\", \" The mother then takes the cookie cutter and makes some more cookies for baking, Then both mother and daughter go through the cookie recipe as they place the cookie dough on the tray.\", \" After the cookies are baked, they decorate the cookies with sprinkles and frosting.\", \" The girl proudly shows the finished cookie after it's done.\"]}, \"v_5ohc1_X2W80\": {\"duration\": 60.49, \"timestamps\": [[0, 58.37], [2.72, 21.78], [36.9, 60.49]], \"sentences\": [\"Two people are shown pushing around a lawn mower and cutting the lawn.\", \" The bump into each other when one turns around the other follows close behind.\", \" The male walks up to the house and continues coming back around towards the woman.\"]}, \"v_n9teiB6FW84\": {\"duration\": 145.64, \"timestamps\": [[0, 67.72], [75.73, 145.64]], \"sentences\": [\"A person is seen riding along a bike trail while a person wearing a camera following from behind.\", \" More clips are shown of people riding bikes along the trail while the camera captures it from several angles.\"]}, \"v_PgfUSPHXluA\": {\"duration\": 50.78, \"timestamps\": [[0, 31.99], [0.25, 31.99], [31.74, 50.78]], \"sentences\": [\"woman wearing a red shirt is arm wretling again anothe woman laying on the floor.\", \" a blonde woman wearing grey shirt is arm wrestling with another woman on a room.\", \" the winner woman is making poses laying on the floor.\"]}, \"v_THOVGzbo8w8\": {\"duration\": 122.32, \"timestamps\": [[0, 33.03], [34.86, 122.32]], \"sentences\": [\"A close up of a lacrosse game is shown that leads into a man speaking to the camera.\", \" More shots are shown of the game with the players running up and down the field as well as many others speaking to the camera.\"]}, \"v_Gp5Vos--_0k\": {\"duration\": 38.45, \"timestamps\": [[0, 12.88], [11.15, 26.72], [23.46, 37.11]], \"sentences\": [\"A man is seen wearing a helmet and kneeling down in a large room.\", \" Uses a torch on an object while another person walks into frame.\", \" In the end he zooms in on the object he torched.\"]}, \"v_zdoGEZO5Ldc\": {\"duration\": 121.74, \"timestamps\": [[0, 10.35], [11.57, 35.31], [39.57, 108.35], [108.96, 121.74]], \"sentences\": [\"A boy sits at a table with a girl beside him.\", \" He is trying to solve a rubik's cube while she times him.\", \" A counter counts quickly as he tries his best to solve the puzzle.\", \" He finally solves the cube, and stands up from the table.\"]}, \"v_ypf6WHYpeRU\": {\"duration\": 156.71, \"timestamps\": [[0, 7.84], [35.26, 43.88], [64.25, 81.49], [112.05, 156.71]], \"sentences\": [\"A man is helping a boy fly a kite.\", \" A woman is standing next to them.\", \" The kites are flying in the sky above water.\", \" The man walks up the hill.\"]}, \"v_ok3Kpgv0PzE\": {\"duration\": 97.85, \"timestamps\": [[0, 10.76], [10.76, 83.17], [75.83, 97.85]], \"sentences\": [\"The female gymnast raised her arm as the judge raise the flag.\", \" The gymnast jump to the beam, balanced herself, did thumbling several times run and balanced herself and did thumbling.\", \" The girl jump of the beam landing to the blue mat.\"]}, \"v_ZreBacTw5Hw\": {\"duration\": 218.2, \"timestamps\": [[0, 43.64], [48, 99.28], [102.55, 218.2]], \"sentences\": [\"A highway with signs overhead are shown before we see a beach scene and a set of trophies.\", \" A bunch of volleyball players gather to start a game.\", \" The game commences, the people trying their best to win.\"]}, \"v_Tfqln6lL7q0\": {\"duration\": 122.35, \"timestamps\": [[0, 61.17], [47.71, 115.62]], \"sentences\": [\"A camera pans around person's faces on a snowy hill as well as them riding down a mountain.\", \" The people continue skiing down the snowy path moving back and fourth and ending by stopping at the bottom.\"]}, \"v_WdX_4wwtkGg\": {\"duration\": 140.85, \"timestamps\": [[0, 71.13], [55.64, 140.85]], \"sentences\": [\"A man wearing a hat is seen holding up a harmonica and begins playing with his hands.\", \" He continues playing the instrument to the camera and ends with him putting the instrument down then holding it up again.\"]}, \"v_9yktj7NCdFI\": {\"duration\": 233.55, \"timestamps\": [[0, 54.88], [60.72, 129.62], [130.79, 159.98], [156.48, 198.51], [195.01, 233.55]], \"sentences\": [\"Two small children are seen drawing with chalk on a side walk while they occasionally looking back to the camera.\", \" The girl is then seen play hop scotch jumping down the chalk while the boy watches from behind.\", \" A woman then helps the boy jump followed by the young girl helping.\", \" The boy jumps on his own and then leads into the two walking on a sidewalk beam.\", \" The girl swings her arms up and then the two jump down.\"]}, \"v_S7MZle1gPzI\": {\"duration\": 31.09, \"timestamps\": [[0, 4.51], [4.82, 13.99], [14.61, 31.09]], \"sentences\": [\"A man lays back in ocean water as he holds onto a bar.\", \" He is drug by a boat filled with people.\", \" He gains his balance, and is water skiing quickly behind the boat.\"]}, \"v_vPZf3F3bNAA\": {\"duration\": 62.79, \"timestamps\": [[0, 17.27], [17.58, 49.6], [47.4, 62.79]], \"sentences\": [\"An athletic man steps up before a track while holding a javelin ad standing ready.\", \" The man runs down, throws the javelin, and walks back while his throw is shown again several times in slow motion.\", \" In the end he is seen celebrating and running around the field.\"]}, \"v_yScYLIJ_txA\": {\"duration\": 41.26, \"timestamps\": [[1.03, 41.26], [0.21, 9.49], [9.7, 32.8], [33.83, 41.26]], \"sentences\": [\"Six people in helmets race on dirt bikes around a circular, paved track surrounded by grass, game tents and onlookers.\", \"  The people start the race behind a closed and grated fence, which then opens and allows them to start racing from an elevated platform down onto the paved raceway.\", \"  The racers pedal with one person in a white jacket in the lead.\", \"  The race ends with the same person in the white jacket remaining in the lead until they approach the end of the track and an orange, white striped cone.\"]}, \"v_GEHPJEgMm_I\": {\"duration\": 47.95, \"timestamps\": [[0, 21.82], [21.82, 47.95]], \"sentences\": [\"A young man is shown swinging a tennis racket over and over again while hitting a ball at the same time.\", \" He continues to perform this swing several times and hits the ball every time.\"]}, \"v_s3OxuR2zsZM\": {\"duration\": 112.00999999999999, \"timestamps\": [[0, 11.2], [14.56, 56.01], [61.61, 112.01]], \"sentences\": [\"A grinder machine is shown on a patio.\", \" A man talks while he shows the parts of the machine.\", \" He then demonstrates how the machine is used.\"]}, \"v_rA_RAZx2_aA\": {\"duration\": 128.26, \"timestamps\": [[0, 49.38], [50.66, 101.96], [103.25, 128.26]], \"sentences\": [\"Women from different nationalities competes long jumps is a stadium.\", \" Women continue competing long jump.\", \" An athlete runs, then skip and jumps forward to perform long jump while judges holds sticks to measure.\"]}, \"v_JWFJGkUKVfk\": {\"duration\": 116.36, \"timestamps\": [[0, 12.22], [12.22, 44.8], [44.22, 86.1], [86.69, 116.36]], \"sentences\": [\"A man is kneeling down in a garage looking at tools on the ground.\", \"He then grabs a metal mask and positions himself correctly on the floor.\", \"Once comfortable,the mask is held in position and he begins firing away at the object on the ground.\", \"Finally,he takes it off and begins to chisel the object and beating the rust off of it.\"]}, \"v_ycYPyXN0CPg\": {\"duration\": 47.09, \"timestamps\": [[0, 14.83], [13.42, 35.08], [32.49, 46.38]], \"sentences\": [\"A person is seen wearing a mask over their face and holding a hose in their hand.\", \" The person then begins spraying down the fence with the hose.\", \" The person continuously sprays along the fence while the camera captures it's movements.\"]}, \"v_NURIoQoKk1E\": {\"duration\": 192.17, \"timestamps\": [[0, 18.26], [18.26, 51.89], [51.89, 72.06], [72.06, 187.36], [187.36, 192.17]], \"sentences\": [\"An introduction comes onto the screen showing a girl who will demonstrate how she blow dries her hair.\", \" She puts some mousse into her hand and proceeds to work it through her hair.\", \" She takes out a brow dryer and begins to blow dry her hair from the back to the front.\", \" She sections her hair, takes out a brush, and begins to blow dry her hair with the brush.\", \" When she is finished, the closing credits for the video show on the screen.\"]}, \"v_N1JcXEim40g\": {\"duration\": 47.53, \"timestamps\": [[0, 4.04], [6.89, 30.9], [32.32, 47.53]], \"sentences\": [\"a woman is standing outside a beam.\", \" She mounts the beam, then does several flips and hand springs over the bar.\", \" She dismounts, raising her arms in the air.\"]}, \"v_tRatWgaZ-a0\": {\"duration\": 22.15, \"timestamps\": [[0, 7.31], [7.09, 21.82]], \"sentences\": [\"A person is shown swimming through a pool while others swim around her.\", \" The people pass a ball around in the water while another team of players play int eh background.\"]}, \"v_7_xkhnbnI7M\": {\"duration\": 235.96, \"timestamps\": [[0, 15.34], [15.34, 199.39], [55.45, 89.67], [148.66, 182.87], [213.55, 235.96]], \"sentences\": [\"A lady holds a cat in her lap on the floor.\", \" The lady then clips the cats claws.\", \" The cat tries to escape and the person calms the cat with a hair holder.\", \" The cat tries hard to escape.\", \"  The lady finishes an the cat runs off and we see another cat sitting on a bed surrounded by clutter.\"]}, \"v_5yGj9JooT_Q\": {\"duration\": 52.52, \"timestamps\": [[0, 52.52], [21.8, 23.9], [32.83, 34.67]], \"sentences\": [\"Two men are fighting with bows and arrows in a room.\", \" A man jumps off a stack of mats.\", \" Another man does a flip off the wall.\"]}, \"v_85HxidMLf5Y\": {\"duration\": 111.18, \"timestamps\": [[0.56, 47.25], [47.25, 111.18]], \"sentences\": [\"A man cleans a small board of wood with a cloth in a workshop.\", \" Then, the man uses flannel to polish the wood board thoroughly.\"]}, \"v_o8n1YnT8ZZ8\": {\"duration\": 203.85, \"timestamps\": [[0, 57.08], [64.21, 203.85]], \"sentences\": [\"Lemons are juiced one at a time and then put in a pot with sugar.\", \"  Sparkling water is added and then the mixture is added to this creating sparkling lemonade.\"]}, \"v_2eep4G5Tgho\": {\"duration\": 26.84, \"timestamps\": [[0, 3.22], [5.23, 18.39], [20.27, 26.84]], \"sentences\": [\"A man is outside of a building.\", \" He is using commercial lawn mowing equipment.\", \" He walks back and forth as he mows the grass.\"]}, \"v_8z8FprjMNbI\": {\"duration\": 332.45, \"timestamps\": [[0, 68.15], [69.82, 179.53], [182.85, 332.45]], \"sentences\": [\"An elderly woman wearing glasses is standing in front of a car.\", \" She walks over to the car, and cannot get the door open at first.\", \" She gets inside the car, then gets out and cleans the snow off the car before getting back in and driving away.\"]}, \"v_QakbOSMJ0AA\": {\"duration\": 148.66, \"timestamps\": [[1.49, 42.37], [31.22, 101.83], [105.55, 145.68]], \"sentences\": [\"A close up of a man's face is seen followed by a razor on the side and the person combing it's hair.\", \" The person continues shaving and combing the mans hair as well as shaving his beard covering in shaving cream.\", \" The man wipes off the face when he's done and showing off the clean shave.\"]}, \"v_1ezOsdHncXo\": {\"duration\": 83.36, \"timestamps\": [[0, 45.85], [37.51, 83.36]], \"sentences\": [\"Drawings of hand soap bottles and humans are shown.\", \" A little girl is standing next to a white sink, she opened the faucet, wash her hand, rub her hand with soap, rinse her hand thoroughly, turned off the water and smiled at the camera.\"]}, \"v_trV2ycq9rkU\": {\"duration\": 6.32, \"timestamps\": [[0, 0.66], [0.92, 4.42], [4.86, 6.32]], \"sentences\": [\"Two men are shown on the side of a building roof.\", \" One turns to the side, using a piece of equipment.\", \" They appear to be building a roof.\"]}, \"v_N7ppHQNikv8\": {\"duration\": 66.22, \"timestamps\": [[10.93, 25.83], [25.83, 34.77], [34.77, 34.77], [34.77, 54.3]], \"sentences\": [\"There is a boy sitting on a beach building sand castles with a water bottle and a sand bucket.\", \" Another little boy wearing a pink float comes running and joins him.\", \" The boy pours some water on the sand castle.\", \" Then a girls wearing a pink floral bathing suit joins the boys and helps them build the sand castle.\"]}, \"v_zTzF5R_VhGk\": {\"duration\": 203.8, \"timestamps\": [[0, 20.38], [25.48, 125.34], [126.36, 203.8]], \"sentences\": [\"A man in glasses and beret is talking.\", \" He is shown playing a harmonica while he also plays a keyboard.\", \" He talks about the mechanics of the hormonica in between playing.\"]}, \"v_M6sXLVNtTSA\": {\"duration\": 51.69, \"timestamps\": [[0, 51.69], [0, 51.43], [1.55, 50.14], [16.8, 31.79], [22.23, 25.07], [25.84, 28.95], [48.07, 51.69]], \"sentences\": [\"A group of men, boys and camels are in a desert area.\", \" One man is sitting on a camel.\", \" The man explains the correct way to ride a camel.\", \" A man in the background holds a video camera.\", \" Another man hands the camels reigns to the man riding and the camel starts walking.\", \" The camel turns it's head around and yells at the man riding him.\", \" The man riding kicks the camel in the side and he starts walking again.\"]}, \"v_1KKVWzCwRSA\": {\"duration\": 124.04, \"timestamps\": [[0, 111.64], [0, 124.04], [112.26, 124.04]], \"sentences\": [\"Several different men are seen trying to snow board but, falling down over and over.\", \" Many different people are in the background watching and doing different things in the snow.\", \" The man that were falling give up and stay in a sitting position.\"]}, \"v_1Dpm9kvn3M8\": {\"duration\": 84.48, \"timestamps\": [[0, 22.39], [13.94, 58.71], [57.02, 84.48]], \"sentences\": [\"A man is seen speaking to the camera while holding up a cigarette.\", \" The man takes several puffs out of the cigarette while still looking back to the camera.\", \" He continues smoking and looking back up to the camera.\"]}, \"v_3HHAEmr0Q34\": {\"duration\": 12.7, \"timestamps\": [[0, 3.81], [2.98, 9.4], [8.95, 12.51]], \"sentences\": [\"A man is seen standing on a court holding down a tennis racket.\", \" The man then bounces the racket down and hits the tennis ball balancing on top.\", \" His hit is shown again in slow motion.\"]}, \"v_QGZN8aXpXHU\": {\"duration\": 124.13, \"timestamps\": [[0, 21.1], [21.1, 29.17], [38.48, 107.38], [81.93, 101.17], [108, 111.72], [111.1, 117.31], [118.55, 124.13]], \"sentences\": [\"We see a boy in a jacket standing outside and talking.\", \" The boy goes in a building .\", \"The boy sits in a chair and test a haircut.\", \" The lady then uses scissors.\", \" We see the kid with his new hair cut.\", \" The lady give the little boy a red balloon.\", \" We see the boy as he walks to the door.\"]}, \"v_Xbk1XePzTIA\": {\"duration\": 59.93, \"timestamps\": [[0, 9.59], [20.38, 30.86], [34.76, 51.24], [53.34, 59.93]], \"sentences\": [\"A man introduces himself to the camera and says he will show how to build a fire.\", \" He begins to break his starting stick and put leaves at the bottom of his filled fire pit.\", \" He turns on the lighter and starts at the bottom with the leaves.\", \" We see the full fire at night.\"]}, \"v_8eqO6e2wWmY\": {\"duration\": 53.66, \"timestamps\": [[0, 7.51], [7.78, 35.95], [35.95, 53.66]], \"sentences\": [\"A few men and a woman are indoors playing badminton They are very into it and competing heavily.\", \" The men go back and forth in an attempt to score and are very focused.\", \" Various shots in fast motion and in slow motion are shown of the action.\"]}, \"v_5x1diXJ8gME\": {\"duration\": 72.31, \"timestamps\": [[0, 16.27], [16.27, 33.98], [33.98, 50.25], [49.53, 72.31]], \"sentences\": [\"A small group of men are seen riding around on various horses holding sticks in their hand and preparing for a game.\", \" The men then throw the ball down and all ride around on horses attempting to hit the ball and one scores a goal.\", \" A person holds up a flag and shows other people watching on the sides.\", \" A person then scores two more goals and the goalies raise their flag each time.\"]}, \"v_Rewtuc-f6wU\": {\"duration\": 46.84, \"timestamps\": [[0, 11.01], [11.71, 19.2], [22.48, 46.84]], \"sentences\": [\"a boy is holding a very long pole.\", \" The camera turns upright suddenly.\", \" the boy runs with the pole, vaulting over a bar and onto a mat.\"]}, \"v_Rl6US0JizDs\": {\"duration\": 71.52, \"timestamps\": [[0, 5.72], [5.72, 19.67], [19.67, 28.25], [28.25, 67.23], [67.23, 71.52]], \"sentences\": [\"An introduction comes onto the screen for a video about mixing a drink called the \\\"Yah Yah\\\".\", \" She goes over all the ingredients needed for the drink.\", \" She begins by taking a glass and filling it with ice.\", \" She add all the ingredients to the glass over the ice.\", \" The video ends with the closing credits.\"]}, \"v_VRiUhsafjRM\": {\"duration\": 198.07, \"timestamps\": [[0, 3.96], [4.95, 17.83], [26.74, 29.71], [33.67, 36.64], [41.59, 60.41], [60.41, 74.28], [75.27, 79.23], [88.14, 93.09], [95.07, 108.94], [108.94, 126.76], [138.65, 154.49], [166.38, 171.33], [185.19, 198.07]], \"sentences\": [\"We see a person waving something.\", \" A white screen then two boys in the kitchen.\", \" We see a counter with ingredient.\", \" The boys then mix ingredients in a bowl.\", \" We see a person shift flour in a bowl.\", \" Someone stirs the cookie dough in a bowl.\", \" The dough is put on a sheet.\", \"  A boy washes the dishes.\", \" The cookies are put in an oven.\", \" A boy plays a guitar the other boy sings.\", \" Each boy eats a cookie and we see them come out of the oven.\", \" A poked cookie breaks apart.\", \" A boy shakes his head yes and plays with a big black dog.\"]}, \"v_61W153jXL3U\": {\"duration\": 208.63, \"timestamps\": [[0, 42.77], [41.73, 104.32], [109.53, 157.52], [161.69, 208.63]], \"sentences\": [\"A man is showing washing his face with water into a sink and putting lotion into his hand.\", \" He rubs the soap together in his hands and massages into his face thoroughly.\", \" He then wipes his face off with a towel and speaking to the camera and pouring more lotion.\", \" He once again presses the lotion into his face and a recap is shown of his face.\"]}, \"v_00Dk03Jr70M\": {\"duration\": 152.35, \"timestamps\": [[0, 15.23], [15.23, 105.88], [105.12, 147.78], [147.01, 152.35]], \"sentences\": [\"A man enters a room and piles plaster onto a base.\", \" The man adds swipes the plaster on the wall then gets more and adds it.\", \" The man gets more plaster and swipes it on the wall.\", \" The man then walks and turns off the camera.\"]}, \"v_5xI8T41HejM\": {\"duration\": 87.7, \"timestamps\": [[0, 49.11], [49.55, 87.7]], \"sentences\": [\"man and woman are standing on top of a big rock jumping into a lake.\", \" wo guys are sitting on a side of the rock talking with a woman on the lake.\"]}, \"v_d3crFny-e3E\": {\"duration\": 81.28999999999999, \"timestamps\": [[0, 5.28], [6.5, 16.26], [17.88, 65.44], [66.66, 81.29]], \"sentences\": [\"A large cliff is seen near the ocean.\", \" Several boats are nearby, and people are kayaking through the area.\", \" A man is rappeling up the side of the cliff.\", \" He stands triumphantly on the back of a small boat.\"]}, \"v_ta4QlTBHTTw\": {\"duration\": 91.02, \"timestamps\": [[0, 10.01], [10.47, 47.79], [47.79, 87.84]], \"sentences\": [\"A man demonstrates Tai Chi combat with other person.\", \" The man performs Tai Chi while talking, then he shows the movements with the man.\", \" After, the man moves the body and the hands while explaining.\"]}, \"v_pIv2jZdHP0k\": {\"duration\": 448.4, \"timestamps\": [[0, 40.36], [60.53, 273.52], [282.49, 448.4]], \"sentences\": [\"A pair of shoes is on the floor, and a man wearing socks stands behind them.\", \" He takes out a shoestring and begins lacing the shoes.\", \" He then puts the shoes on, and shows how they look.\"]}, \"v_w1qa9NOiFbE\": {\"duration\": 142.76, \"timestamps\": [[0, 139.19], [13.56, 139.19], [118.49, 129.2]], \"sentences\": [\"Scenes of a small rural village under a heavy rainstorm are shown.\", \" A woman washes items by a container in the rain while other individuals stand around.\", \" A close up of a wash basin by the container is shown.\"]}, \"v_jC1He93cebg\": {\"duration\": 103.93, \"timestamps\": [[2.08, 42.09], [27.02, 77.43], [71.71, 100.3]], \"sentences\": [\"A woman is seen standing on a piece of exercise equipment and moving herself around.\", \" The woman moves her feet on the machine as well as showing how the machine works.\", \" Another man is seen exercising and ends with text on the screen.\"]}, \"v_kTSuw4T-_Nk\": {\"duration\": 118.50999999999999, \"timestamps\": [[0, 31.4], [25.48, 85.32], [71.1, 114.36]], \"sentences\": [\"A woman is seen sitting in a chair looking down with others beside her.\", \" The camera pans all around the people sitting and leads to one putting an objects on his leg.\", \" She rips off the object showing the hair as well as his leg and others laughing.\"]}, \"v_2gV2apTrRHs\": {\"duration\": 70.26, \"timestamps\": [[2.46, 8.08], [10.54, 14.76], [26, 33.73], [41.81, 49.18], [51.29, 68.86]], \"sentences\": [\"A police officer spins around while dancing.\", \" The boy does a hand stand.\", \" The police officer does a disco John Travolta dance.\", \" The police officer does a break dancing routine.\", \" The group of children walk together on the grass.\"]}, \"v_v-qFJJx0bTs\": {\"duration\": 122.58, \"timestamps\": [[1.84, 65.58], [38.61, 121.97]], \"sentences\": [\"A large group of people are seen standing on each side of a rope with many people watching on the sides.\", \" The men then begin a game of tug of war with one another with one man helping teams on the side and ends with one team falling down.\"]}, \"v_dot-t-Nen_k\": {\"duration\": 106.44, \"timestamps\": [[22.35, 42.04], [46.3, 50.56], [59.61, 106.44]], \"sentences\": [\"A man is standing in front of a net.\", \" A man is standing in front of a wood fence.\", \" Men are playing lacrosse on a field.\"]}, \"v_C53reDr47oU\": {\"duration\": 18.93, \"timestamps\": [[0, 5.68], [5.87, 18.93]], \"sentences\": [\"A young child is shown rubbing glitter all over his lips and walking over to a mirror.\", \" He continues putting the gloss on his lips and smacking his lips and finally turning towards the camera to speak.\"]}, \"v_on2DKKcvWhE\": {\"duration\": 213.72, \"timestamps\": [[0, 9.62], [9.62, 49.15], [49.15, 157.08], [157.08, 196.62], [196.62, 213.72]], \"sentences\": [\"An introduction comes onto the screen for a video that will show a demo of some janitorial products.\", \" A man on the screen begins to describe a mop and bucket set that are used for cleaning floors.\", \" He then begins to demonstrate how to use the mop and bucket set.\", \" Next he shows the buckets close up and begins to describe how to use the buckets.\", \" At the end of the video the closing credits are shown.\"]}, \"v_Qs0hIRhHPVM\": {\"duration\": 60.77, \"timestamps\": [[0.3, 22.48], [21.57, 48.61], [35.55, 60.77]], \"sentences\": [\"A still picture of a man caught in mid-air about to attack a punching bag, a black and white picture of woman kicking the punching bag, two bare chested men in a boxing position, a silhouette of a man kicking a blurry person, two men in a boxing ring, two men holding a championship belt with their hand covered with boxing gloves.\", \" One man in blue shorts is kicking the kicking pad worn by the other man in black shorts.\", \" Two men that are barechested are boxing each other outside the boxing ring.\"]}, \"v_fzwNgtDwgKQ\": {\"duration\": 83.99, \"timestamps\": [[0, 43.25], [44.09, 83.99]], \"sentences\": [\"A man drives in circles a four wheels motorcycle in a field with high weeds while dust.\", \" Then, the man goes to another place to continue driving in circles.\"]}, \"v_DPw74KWZzGY\": {\"duration\": 128.66, \"timestamps\": [[0, 59.83], [60.47, 128.66]], \"sentences\": [\"Two people are seen sitting in front of cameras playing instruments while the camera zooms in.\", \" The man then sings to the camera while playing his instrument and speaks to the camera, ending with the two playing again.\"]}, \"v_4XavNhCs-Do\": {\"duration\": 134.14, \"timestamps\": [[18.11, 106.64], [40.24, 106.64], [59.02, 126.76], [91.22, 126.76], [111.34, 118.72]], \"sentences\": [\"There is man wearing a blue shirt and another man in black seated on a rock, talking about rock climbing.\", \" They are seated at a very high altitude in the mountains.\", \" The person in blue is demonstrating how the rope is fastened from the rocks.\", \" He is also showing tight rope walking from one end to another.\", \" Then the person in black also walks on a tight rope.\"]}, \"v_Gi1N3FtCZGo\": {\"duration\": 14.86, \"timestamps\": [[0, 0.82], [1.34, 6.69], [7.43, 14.86]], \"sentences\": [\"a boy is inside a gym.\", \" He lifts a barbell up to his chest.\", \" He pauses, then lifts it over his head.\"]}, \"v_P-YyUw0iuBQ\": {\"duration\": 126.64, \"timestamps\": [[3.8, 72.19], [51.29, 123.48]], \"sentences\": [\"A group of boys are seen sitting around talking to one another and playing various games.\", \" The men hit one another while they switch places and continue to play more games.\"]}, \"v_xBO66pI09rE\": {\"duration\": 32.53, \"timestamps\": [[0, 32.53], [11.87, 32.53]], \"sentences\": [\"A family is shown doing mouthwash.\", \"  One woman tries to laugh and is successful in not spitting it up.\"]}, \"v_0hfKWxuVT5k\": {\"duration\": 236.97, \"timestamps\": [[0, 61.61], [59.24, 149.29], [149.29, 236.97]], \"sentences\": [\"Several bodies of water are shown and a man appears paddling a small boat.\", \"Several other people are then shown paddling throughout the city in a small boats,passing several trees and city buildings.\", \"As they continue there journey,they pass under bridges,restaurants and other landmarks and then there names appear across the screen.\"]}, \"v_UEtVbSLGhfY\": {\"duration\": 8.43, \"timestamps\": [[0, 1.52], [1.64, 8.43]], \"sentences\": [\"A person leads a large dog on a leash back and fourth on a hard wood floor.\", \" The dog drags the woman person around behind him and looks out the door and smiles.\"]}, \"v_wsmMniNThlI\": {\"duration\": 140.9, \"timestamps\": [[0, 140.9], [33.11, 52.84], [54.25, 140.9]], \"sentences\": [\"Two people are horseback riding on a snowy trail.\", \" As they are riding they pass a set of glass igloos planted on the estate.\", \" They reach a clearing where there is open land and several trees.\"]}, \"v_2xmu01HHhKY\": {\"duration\": 49.6, \"timestamps\": [[0, 21.58], [1.24, 1.98], [2.48, 3.97], [16.62, 20.83], [22.82, 24.3], [24.8, 35.71], [35.71, 45.63], [46.62, 49.6]], \"sentences\": [\"We see a lady slowly playing a drum.\", \" We pan right and see a man on drums.\", \" We see a person in orange enter.\", \" The lady stops drumming and shows her hands.\", \" We then see the camera operator.\", \" The lady and the boy in orange struggle over an instrument.\", \" The lady pretends to bite the boy, then laughs.\", \" We see a man enter the room.\"]}, \"v_ru7UAr2488M\": {\"duration\": 203.76, \"timestamps\": [[0, 23.43], [23.43, 54], [54, 64.18], [64.18, 203.76]], \"sentences\": [\"hockey players are getting out the dressers to a field.\", \" hockey players are skating in an ice court in a roofed gym.\", \" mani s welding something in a dark room and the players are in the court playing.\", \" men are sitting on bus looking at his phones and seeing though the window and in the dressers geting ready to play and in the field.\"]}, \"v_qXQBHaML9Xg\": {\"duration\": 8.27, \"timestamps\": [[0, 5.33], [7.48, 8.14]], \"sentences\": [\"A person flips over another person and gets thrown into the bushes.\", \" A person in a red shirt starts running towards them.\"]}, \"v_5LveCNjz_zg\": {\"duration\": 161.52, \"timestamps\": [[6.46, 24.23], [24.23, 46.03], [46.03, 59.76], [59.76, 93.68], [93.68, 131.64], [131.64, 142.94]], \"sentences\": [\"A woman is holding a black cat snuggled in a purple blanket.\", \" The cat is meowing as the woman holds her paws.\", \" there's another man with nail clippers, slipping the cat's nails.\", \" The cat meows loudly in pain and the woman kisses the cat to calm her down.\", \" The man continues to clip the cat's nails as the woman cajoles the cat and kisses the cat's ears.\", \" The man continues clipping the nails until he's done.\"]}, \"v_BmZwZLKxHCY\": {\"duration\": 199.66, \"timestamps\": [[0, 21.96], [25.96, 65.89], [69.88, 199.66]], \"sentences\": [\"A little girl is sitting in a rocking chair.\", \" She puts on compact makeup from a case.\", \" She then applies eye shadow and lipstick.\"]}, \"v_DHiFKO68gT8\": {\"duration\": 181.3, \"timestamps\": [[0, 67.08], [39.89, 157.73], [155.92, 181.3]], \"sentences\": [\"Several shots of riders standing around a sand pit are shown followed by many angles of people riding bikes over jumps.\", \" The camera captures several angles of the people riding along a bike track and interviewing them in between shots.\", \" In the end all the riders are shown on screen as well as being interviewed and jumping along one last time.\"]}, \"v_0p34rFNYj_M\": {\"duration\": 67.06, \"timestamps\": [[0, 37.22], [34.87, 53.98], [48.95, 67.06]], \"sentences\": [\"An adult female and a young female is in the beach, the adult female is dumping the sand from the pail to the ground.\", \" The woman in polka dots is sitting on the ground and showing her pants.\", \" The young girl is pointing on to something and waving at the camera.\"]}, \"v_zo8XBVxxkmo\": {\"duration\": 190.59, \"timestamps\": [[2.86, 92.44], [73.38, 189.64]], \"sentences\": [\"Three men are seen sitting on the ground speaking to one another and leading into them riding down a road.\", \" More shots are shown of people skateboarding down a road performing several tricks and walking away.\"]}, \"v_AMU1mHpR6Os\": {\"duration\": 121.79, \"timestamps\": [[3.04, 63.33], [48.72, 120.57]], \"sentences\": [\"A close up of a razor is shown an leads into several clips of dogs getting their cut trimmed.\", \" Several tools are shown are then shown on cats and them laying down being pet.\"]}, \"v_1FlnQzPzS2Q\": {\"duration\": 81.02, \"timestamps\": [[0, 81.02], [2.84, 81.02], [5.67, 81.02]], \"sentences\": [\"A man is running down a street.\", \" A white car is right behind him on the street.\", \" People are riding bicycles next to him.\"]}, \"v_GtYf9VsPHO0\": {\"duration\": 118.14, \"timestamps\": [[0, 21.86], [21.27, 90.38], [92.74, 118.14]], \"sentences\": [\"A close up of a sandwich is shown followed by ingredients and a woman speaking to the camera.\", \" Several ingredients are laid out and shown close up one by one while the woman mixes them all together in a bowl.\", \" She then pours the mixture onto a slice of break and presents it on a plate while speaking continuously.\"]}, \"v_ZSLzzrc8pro\": {\"duration\": 175.43, \"timestamps\": [[0, 73.68], [71.05, 175.43]], \"sentences\": [\"A camera shows a closet that pans into two girls seen riding on an elliptical.\", \" One girl moves up and down on the machine while the other hangs on in front, leading to them jumping and speaking to the camera hiding in the closet.\"]}, \"v_yxSBQXuOwuc\": {\"duration\": 144.01, \"timestamps\": [[0, 10.8], [14.4, 33.12], [14.4, 127.45], [127.45, 144.01]], \"sentences\": [\"A logo is shown with water drop sounds playing in the background.\", \" A man is then shown wearing scubba gear and giving various hand signals to the camera.\", \" The water sounds still play and the man shows you various moves and what they mean under water.\", \" The logo then reappears on the screen and the video ends.\"]}, \"v_40Sf-iICgzw\": {\"duration\": 37.27, \"timestamps\": [[0.75, 12.3], [13.04, 37.27]], \"sentences\": [\"A small child is shown playing drums while a group of people behind him watch and smile.\", \" The boy continues to play the drums and a baby in the arms of a man behind him climbs off his lap.\"]}, \"v_GuzLtwhxsxA\": {\"duration\": 112.36, \"timestamps\": [[0, 23.03], [24.72, 98.88], [102.81, 112.36]], \"sentences\": [\"A close up of a canoe is shown followed by a man pushing the canoe along in various areas.\", \" His paddling is slowed down to demonstrate how to properly paddle while more shots of the man paddling in fast motion are shown.\", \" The ending shows a beautiful picture of a sun set.\"]}, \"v_e5rZPT7BJas\": {\"duration\": 33.62, \"timestamps\": [[0.17, 13.79], [18.16, 33.62]], \"sentences\": [\"A person is peeling a sticker off of a white shoe.\", \" They wipe the shoe with a towel.\"]}, \"v_aVDVMN9hE8A\": {\"duration\": 53.38, \"timestamps\": [[0, 10.94], [11.21, 21.35], [21.35, 33.1], [33.63, 53.38]], \"sentences\": [\"A person takes out cheese from a box, then he takes a jar that puts on the counter with two napkins, then he opens the fridge.\", \" A man puts water on his face while holding a pail, then takes a sponge and throws over the table.\", \" The person puts two bottles and two slices of bread on the table, then he slices the cheese.\", \" After, the person puts the cheese and jam on the bread, then he eats the sandwich and drink soda from bottle.\"]}, \"v_T84iinm8-V0\": {\"duration\": 165.54, \"timestamps\": [[0, 18.21], [21.52, 71.18], [72.84, 133.26], [140.71, 165.54]], \"sentences\": [\"A fencing match is taking place inside an auditorium.\", \" Two men in full fencing gear begin fighting.\", \" They stab and swing, fencing for the crowd.\", \" Several people are shown performing various sports in the closing images.\"]}, \"v_HsfrvjsaIDU\": {\"duration\": 21.92, \"timestamps\": [[0, 2.19], [2.74, 14.69], [15.23, 21.92]], \"sentences\": [\"A man is shown holding a long trimmer.\", \" He uses the trimmer to weedeat the bushes.\", \" Leaves fall to the ground in droves as he trims.\"]}, \"v_r10jGF9lQYM\": {\"duration\": 216.57, \"timestamps\": [[0, 3.25], [4.33, 99.62], [99.62, 173.26], [174.34, 205.74], [208.99, 216.57]], \"sentences\": [\"We see an opening title screen.\", \" A man and boys standard sit on the snow and ice fish.\", \" We see a tittle screen and a plane flys overhead in the sky and we see the people on the ice and a truck in the distance.\", \" A kids walks over to the truck where a lady is cooking hot dogs in the truck bed full of food.\", \" We see a title screen and see frozen fish sitting in the snow.\"]}, \"v_jkn6uvmqwh4\": {\"duration\": 73.24, \"timestamps\": [[0, 73.24], [0, 27.1], [20.51, 38.45], [30.76, 68.48], [68.48, 73.24]], \"sentences\": [\"A parade procession walks down the street in a parade.\", \" A group of members in green uniforms walks waving flags.\", \" Members of the procession walk down the street holding small horn brass instruments.\", \" A drum line passes by walking down the street playing their instruments.\", \" Members of the procession walk down the street holding large flared horn instruments.\"]}, \"v_pSdlIsd_vZc\": {\"duration\": 43.41, \"timestamps\": [[0, 43.42], [15.85, 24.32], [24.32, 43.42]], \"sentences\": [\"The video is very poor quality and it shows a man holding the camera and he is at a park with other people that includes another adult and a small child that looks like a girl.\", \" The man climbs onto the park equipment with the little girl.\", \" The child and the man then appear on the slide and the little girl goes down the slide alone while smiling the whole time and the man remains at the top of the slide.\"]}, \"v_dN9ZPc7NMVQ\": {\"duration\": 31.49, \"timestamps\": [[0, 13.22], [13.38, 31.49]], \"sentences\": [\"A woman and young boy are shown smiling and washing their hands in the sink when the woman begins washing his face.\", \" The boy smiles with the woman washing his face and the woman dries his face off with a paper towel.\"]}, \"v_d0woFZ26Cx0\": {\"duration\": 30.09, \"timestamps\": [[0, 20.01], [20.92, 30.09]], \"sentences\": [\"A view is seen of a pool table, balls being triangled, and numerous people shooting the balls into the corner pockets during a competition.\", \" A woman walks around holding a scorecard as they play.\"]}, \"v_yvzlX5St_Ok\": {\"duration\": 30.3, \"timestamps\": [[0, 30.3], [6.67, 19.85], [25.76, 28.79]], \"sentences\": [\"People are driving bumper cars on a brown floor.\", \" The bumper cars collide with each other.\", \" A girl laughs out loud.\"]}, \"v_qJrJeICcevI\": {\"duration\": 32.44, \"timestamps\": [[0, 31.3], [14.44, 32.44]], \"sentences\": [\"A bunch of people ride camels.\", \"  The camel gets down and kneels.\"]}, \"v_1lu7Sbu3a6o\": {\"duration\": 61.72, \"timestamps\": [[0, 10.18], [29.01, 31.17], [30.24, 55.55], [58.32, 61.72]], \"sentences\": [\"We see a lady and a girl on a raft on a snowy hill.\", \" The lady and a man push people down the hill.\", \" The people slide in rafts down the hill.\", \" The little girl stands and looks behind her.\"]}, \"v_Mmdcsw_SEzc\": {\"duration\": 41.43, \"timestamps\": [[0, 41.42], [22.58, 41.42]], \"sentences\": [\"A boy is building a sandcastle near the edge of the ocean.\", \"    He forms huge circles and stands up.\"]}, \"v_j0Iv6dmSw0k\": {\"duration\": 79.38, \"timestamps\": [[0, 27.79], [27.79, 69.07], [69.07, 79.39]], \"sentences\": [\"A group of people are sitting and clapping while men standing up dressed in gi's along a mirrored wall go through different motions of karate.\", \" Elvis Presley is now dressed in his concert clothing, standing on stage doing his karate moves, and then it goes back to him standing in front of the mirrored wall and demonstrating his karate moves while he's wearing his gi.\", \" Once again Elvis Presley is back on stage in his concert clothing the video ends with him doing his karate moves on stage.\"]}, \"v_ki2kGFwczMg\": {\"duration\": 70.19, \"timestamps\": [[1.75, 20.71], [20.71, 30.53], [30.53, 43.17], [43.17, 56.51], [56.51, 66.68], [66.68, 70.19]], \"sentences\": [\"An athlete wearing a white shirt and red shorts is running with a javelin in his hand in a stadium with several spectators.\", \" There is a person seated on a white bench wearing a blue uniform, tying his shoelaces.\", \" The javelin thrower runs and throws the javelin and falls to the ground.\", \" He gets up and raises his hands up high in victory.\", \" He comes running again and throws the javelin and falls to the ground.\", \" The third time, his action is repeated in slow motion.\"]}, \"v_jE2jDJ9WHeE\": {\"duration\": 80.78, \"timestamps\": [[2.02, 18.98], [19.39, 28.68], [29.08, 40.8], [42.41, 57.36]], \"sentences\": [\"Player practice lacrosse in a field.\", \" Then, teams play lacrosse and a player score for his team.\", \" A coach takes notes, and then players train lacrosse.\", \" Then two teams play lacrosse in a field throwing the call with a stick.\"]}, \"v_xT7eQmyr1-Y\": {\"duration\": 215.04, \"timestamps\": [[0, 12.9], [15.05, 197.84], [199.99, 215.04]], \"sentences\": [\"A man walks through his yard and retrieves a push leaf blower.\", \" The man walks the blower around the yard and blows leaves to the side.\", \" The man finishes and pushes the leaf blower beside the fence with the other machinery then walks away.\"]}, \"v_-G-sh-NhYtk\": {\"duration\": 20.83, \"timestamps\": [[0, 20.83], [20.62, 20.83]], \"sentences\": [\"A person in a black coat is shoveling show from a driveway.\", \"  A man is being shown standing in a garage.\"]}, \"v_gCf7wYa4AFA\": {\"duration\": 130.2, \"timestamps\": [[5.21, 7.81], [7.81, 11.07], [18.23, 22.78], [21.48, 72.91], [76.16, 78.12], [89.83, 98.3], [95.04, 130.2]], \"sentences\": [\"Woman in pink points to the goal.\", \"  Girl in black shoots and score goal.\", \"  Teammates congratulate the girl in black for the goal.\", \"  Players get into their positions.\", \"  Girl in black runs after the ball.\", \"  Girl in black hits the ball to her teammate.\", \"  Girls run after the ball.\"]}, \"v_52tZGZGuWP4\": {\"duration\": 78.16, \"timestamps\": [[0, 11.33], [11.72, 44.55], [44.55, 78.16]], \"sentences\": [\"A man is sitting in a room with two congas in between his legs.\", \"One of them is slightly smaller than the other and he tends to play that one and only hitting the larger every couple of beats.\", \"His whole face appears in the frame and you can see him bobbing his head and focusing more on his sound.\"]}, \"v_WdNtrGxSm1Y\": {\"duration\": 109.87, \"timestamps\": [[0, 29.66], [28.02, 109.87]], \"sentences\": [\"An intro leads into a woman holding a dog and frisbee and then throwing the fribee for the dog to catch.\", \" The dog brings it back and the girl throws the object several more times, with the dog chaseing and coming back each time.\"]}, \"v_55FFh89yqVw\": {\"duration\": 211.53, \"timestamps\": [[1.06, 6.35], [7.4, 85.67], [65.58, 75.09], [90.96, 107.88], [110, 117.4], [136.44, 196.73], [197.78, 198.84], [205.19, 210.48]], \"sentences\": [\"The credits of the clip are shown.\", \" The lady puts contents of a bottle in her palms, and the lady rubs it on her face.\", \" The lady makes funny faces.\", \" The lady washes her face.\", \" The lady towel dries her face.\", \" The lady puts spots of white lotion on her face and rubs it in.\", \" The lady presents a small tube product.\", \"  The credits of the video are shown.\"]}, \"v_gOUqdgxwNPw\": {\"duration\": 224.12, \"timestamps\": [[0, 20.17], [20.17, 70.6], [70.6, 119.9], [119.9, 168.09], [168.09, 224.12]], \"sentences\": [\"A young person is holding on to a rope as he is boogie boarding through the river.\", \"The young person then does a 360 flip in the water and keeps going and shortly after,he does another trick.\", \"Then another person is shown and begins doing more rigorous tricks in the water.\", \"Next,a series of pictures are shown of other people doing tricks.\", \"Next, a snowboarder is shown and then they young person comes back with a still image of him and his awards.\"]}, \"v_19SHLOheCmo\": {\"duration\": 231.13, \"timestamps\": [[0, 231.13], [34.67, 54.32], [159.48, 175.66]], \"sentences\": [\"three women are standing in a park in a field doing yoga.\", \" man is running in the park behind the women.\", \"an old man is walking fast in the park.\"]}, \"v_2l50doS2wB4\": {\"duration\": 203.66, \"timestamps\": [[0, 76.37], [62.12, 162.93], [161.91, 203.66]], \"sentences\": [\"A man is seen holding onto a pair of shoes while speaking to the camera and spraying them down.\", \" The man scrubs the shoes down with a rag while continuing to speak to the camera.\", \" In the end he holds up the shoes while still speaking and giving the camera a thumbs up.\"]}, \"v_Y76yy0chbhU\": {\"duration\": 98.59, \"timestamps\": [[0, 9.86], [15.28, 68.03], [69.51, 98.59]], \"sentences\": [\"A couple of teams are on an open field.\", \" They are playing lacrosse together.\", \" They run around, trying to hit the ball.\"]}, \"v_uvs1pb32xZM\": {\"duration\": 101.67, \"timestamps\": [[0, 27.96], [28.98, 73.2], [70.15, 100.65]], \"sentences\": [\"A small group of children are seen running around an indoor field kicking a soccer ball.\", \" The kids move up and down in between poles while still kicking the ball.\", \" The kids are then shown kicking balls into a goal one after the other.\"]}, \"v_4DCxc6mO864\": {\"duration\": 166.21, \"timestamps\": [[0, 7.48], [7.48, 106.37], [106.37, 166.21]], \"sentences\": [\"A girl is standing in the back of a room that has paper air ballon, and she begins to dance moving her legs back and forth and slightly moving her arms.\", \" The girl then picks it up and begins to move more of her arms along with her legs and dances in a small area in the room while facing the camera.\", \"The girl then turns to her side and we see her dancing from the side, she turns to face the back and dances a bit that way, then turns again and again until we've seen her dance in all different directions.\"]}, \"v_OgaurUPiWYI\": {\"duration\": 98.08, \"timestamps\": [[0, 42.67], [39.23, 92.69]], \"sentences\": [\"Four bikers at the start of the line are wearing different colors of uniforms and helmets, they are about to get start the race.\", \" The race started, the bikers bike and race in the race track where they jumped and hopped and went to the curb, the one player, when he reached the finish line, he fell on his side and stood up and walked towards the people.\"]}, \"v_kbWQIXFOK54\": {\"duration\": 139.44, \"timestamps\": [[2.79, 47.41], [41.83, 104.58], [102.49, 133.86]], \"sentences\": [\"A camera pans around a dresser followed by several objects and ingredients being shown to the camera.\", \" A woman is then seen painting the dresser with several coats and sanding it down.\", \" She places the pieces together and ends by smiling to the camera.\"]}, \"v_qAXE_vqt56g\": {\"duration\": 25.59, \"timestamps\": [[0.13, 14.2], [14.2, 25.59]], \"sentences\": [\"The cartoon of heroes fighting with an evil character.\", \" The heroes fight and then sit on front a log.\"]}, \"v_qdMjXJTsX94\": {\"duration\": 172.8, \"timestamps\": [[0, 10.37], [10.37, 163.3]], \"sentences\": [\"A spinning logo with a purple background then text are seen on the screen.\", \" A woman in blue dress plays a drum set in a studio.\"]}, \"v_eHxRr7Zhsek\": {\"duration\": 196.51, \"timestamps\": [[0, 32.42], [33.41, 37.34], [47.16, 74.67], [78.6, 104.15], [112.01, 148.37], [151.31, 180.79], [184.72, 196.51]], \"sentences\": [\"The video opens with the host using purple nail tape to create a pattern, slowly applying and making sure it is straight.\", \" Next a matte coat is applied over the nail and tape.\", \" The tape is gently peeled off the nail, and a top coat is applied to the intersection of lines.\", \" Next, a micro bead is placed where the lines meet.\", \" The next nail project features a white painted nail and host makes two black C's to mimic the Chanel logo.\", \" Gradually the logo is made bolder with more application.\", \" Finally a matte top coat is applied to finish it off.\"]}, \"v_wrn5qM9aVeo\": {\"duration\": 168.95, \"timestamps\": [[0, 59.13], [49, 130.09], [131.78, 163.88]], \"sentences\": [\"A chef is seen speaking to the camera and leads into him holding a board followed by cutting up dough.\", \" The man peels the dough pieces with a machine and lays them flat to roll out dough.\", \" The man then rolls out the flattened dough and shows off his finished pasta.\"]}, \"v_IvkpOoeCM3A\": {\"duration\": 157.82999999999998, \"timestamps\": [[7.1, 157.83], [7.89, 157.83], [130.21, 157.83]], \"sentences\": [\"This video shows people participating in the world artistic pool championship.\", \" Smooth, but suspenseful music is playing throughout the whole video as people shoot pool balls into the holes by themselves.\", \" Not everyone is participating, some people are just watching and others are walking around for some other reasons.\"]}, \"v_RK8VF2pL72I\": {\"duration\": 34.16, \"timestamps\": [[0, 34.16], [6.83, 11.95], [6.83, 34.16]], \"sentences\": [\"A woman is sitting in a chair knitting.\", \" She looks up and talks to someone.\", \" She continues knitting in her hands.\"]}, \"v_gk6NAPqfJoY\": {\"duration\": 194.96, \"timestamps\": [[0.97, 8.77], [9.75, 187.16], [16.57, 18.52], [38.02, 190.08], [119.9, 120.87], [191.06, 193.98]], \"sentences\": [\"The credits of a clip are shown.\", \" A person skies and slides on a platform.\", \" A person falls on the ice.\", \" A person skies and does flips.\", \" A person puts their gloved hand on the camera.\", \" The credits of the video are shown.\"]}, \"v_WYjtYDyHUxY\": {\"duration\": 140.16, \"timestamps\": [[0, 65.17], [63.07, 140.16]], \"sentences\": [\"Several shots are shown of paintball are shown followed by many pictures of guns.\", \" More pictures of guns are shown and ends with text across the screen.\"]}, \"v_45ymM0irIIY\": {\"duration\": 42.7, \"timestamps\": [[0, 24.55], [22.63, 42.7]], \"sentences\": [\"A comedian is seen speaking to the camera and leads into a bull running into a pit and various clips of men fighting bulls.\", \" A close up of the bull fighting is shown and pans back to the comedian speaking to the camera.\"]}, \"v_iJahVlx_yDE\": {\"duration\": 99.57, \"timestamps\": [[0, 40.82], [35.35, 99.57]], \"sentences\": [\"Two people are seen standing at the bottom of a snowy hill speaking to one another when a person comes riding down on a tube.\", \" More people are seen flying down the mountain with one crashing into another and the person getting out to drag the tubes.\"]}, \"v_XNTy5ZTMqVU\": {\"duration\": 133.66, \"timestamps\": [[0, 12.7], [13.37, 53.46], [53.46, 111.6], [112.27, 133.66]], \"sentences\": [\"A woman is talking inside an office to the camera while displaying sign language.\", \" Two hands appear, demonstrating several signs indicating the rock, paper, scissors game.\", \" The woman continues talking about the game, then it shows several clips of various people using the game to win or make decisions.\", \" It cuts to an article regarding tricks for winning the game before concluding with the woman speaking on last time.\"]}, \"v_gN_Kq57w72s\": {\"duration\": 237.65, \"timestamps\": [[0, 14.26], [19.01, 41.59], [43.96, 85.55], [90.31, 134.27], [141.4, 216.26], [221.01, 237.65]], \"sentences\": [\"An image shows a bag of m&m's and a bag of Maltersers being suspended in midair, appearing to pour onto a cake.\", \" A woman bakes a round cake, frosting it and surrounding it by chocolate bars.\", \" She then pours maltesers and m&ms into bowls.\", \" She prepares the bags, making them look neat before sprinkling the candies onto the top of the cake, completely covering it.\", \" She then places sticks into the cake, and runs frosting up the sides of the stucks before adhering the candlies to the sticks.\", \" She then balances the bags atop the sticks.\"]}, \"v_rpDBtiySZ3o\": {\"duration\": 33.95, \"timestamps\": [[0, 15.45], [15.45, 33.95]], \"sentences\": [\"Several people are preparing to play volleyball on the beach.\", \" The camera zooms out and the people begin to play the game, tossing the ball back and forth to each other.\"]}, \"v_aHKZIUD3wPI\": {\"duration\": 28.45, \"timestamps\": [[0, 6.4], [5.97, 23.04], [20.91, 27.88]], \"sentences\": [\"A man is seen standing before a hedge holding onto a tool.\", \" The man uses the tool all along the hedge while trimming the top.\", \" He continues pushing the tool over the hedge while walking away from the camera.\"]}, \"v_MFx2omPfM2o\": {\"duration\": 108.07, \"timestamps\": [[2.7, 42.15], [34.04, 103.2]], \"sentences\": [\"A large group of people are seen riding in bumper cars and bumping into one another.\", \" The people continue crashing into one another while laughing and beginning to get out of the car.\"]}, \"v_a1ltYmbbBYI\": {\"duration\": 31.7, \"timestamps\": [[0, 12.04], [8.87, 14.26], [15.06, 21.24]], \"sentences\": [\"Two men are sumo wrestling on a ring.\", \" A man in a robe is standing behind them.\", \" A man trips and falls into the audience.\"]}, \"v_rgJ00nNS_r0\": {\"duration\": 48.95, \"timestamps\": [[0.24, 45.77], [0.73, 10.77], [10.77, 32.31], [32.31, 48.95]], \"sentences\": [\"A group of men play croquet on a large grass covered field at an outdoor social event.\", \"  The men begin playing croquet with one man making a sexual reference with the croquet stick as people walk by on the grass.\", \"  The group of men are accompanied by onlookers as they continue to maneuver the  croquet ball with their mallets.\", \"  One croquet goal is accomplished on the grass by one player in brown shoes and a blue pants in the final clip.\"]}, \"v_S-4ftlylgig\": {\"duration\": 158.36, \"timestamps\": [[0, 15.04], [17.42, 31.67], [38.01, 158.36]], \"sentences\": [\"A measuring tape is shown up close.\", \" We see a track person preparing to run.\", \" He runs, taking a huge leap into the sand, landing on the number 18.\"]}, \"v_hSq0yL5AB40\": {\"duration\": 190.54, \"timestamps\": [[0, 103.85], [98.13, 190.54]], \"sentences\": [\"Several clips of people are shown waving to the camera and watch people riding bikes.\", \" Many people are shown riding around on bikes around a long track and the camera panning around.\"]}, \"v_Cb3IonOw0bs\": {\"duration\": 72.33, \"timestamps\": [[0, 11.21], [6.87, 8.32], [11.21, 15.55], [15.91, 71.61]], \"sentences\": [\"A lady sits in a tub and rubs her legs with water while wearing an exfoliater glove.\", \" The camera zooms out and we see it's a set with camera equipment around.\", \" The lady then shaves her legs with an electric shaver.\", \" We see the lady smile and continue to shave her legs.\"]}, \"v_h-_dzZ3cCfc\": {\"duration\": 170.64, \"timestamps\": [[0, 5.12], [8.53, 95.56], [58.02, 71.67], [86.18, 135.66], [134.81, 170.64]], \"sentences\": [\"A man is shown talking to the camera while walking slowly onto the field with a group of players.\", \" Various players are shown one on one with several shots of stadium and cities are shown.\", \" The athletes prepare themselves for the match and are shown playing out on the field.\", \" The men cheer when they score a goal and sit on the bench after being tired.\", \" They run through stadiums and speak to the camera about being a professional athlete.\"]}, \"v_n50dwUENM1E\": {\"duration\": 65.41, \"timestamps\": [[8.18, 38.27], [38.27, 59.52], [59.52, 62.79]], \"sentences\": [\"There's a woman in her kitchen demonstrating how to use Astra Clean composite sink cleaner She sprays the kitchen sink with the Astra Clean quirt bottle and then uses a brush to scrub the sink.\", \" After she's done, she looks impressed at the sparkly clean kitchen sink.\", \" She puts the bottle down on the sink and walks away.\"]}, \"v_OkEqcSlWMJg\": {\"duration\": 213.41, \"timestamps\": [[1.07, 78.96], [64.02, 169.66], [181.39, 211.27]], \"sentences\": [\"A small group of people are seen swimming in a pool and leads into various clips of children learning how to swim.\", \" A man helps them practice in the water as well as jumping off a diving board.\", \" More shots are shown of kids swimming and leads into a girl grabbing objects under water and swimming with another.\"]}, \"v_QX-uieRfKgg\": {\"duration\": 195.65, \"timestamps\": [[0, 52.83], [13.7, 50.87], [44.02, 179.02]], \"sentences\": [\"The man with black apron is brushing the counter.\", \" The man in apron smoothen the ski board, then brushed off the dust.\", \" The man put polish on the board and continue to scrape and brush the board.\"]}, \"v_C8m_dPhMGbg\": {\"duration\": 128.36, \"timestamps\": [[2.57, 48.78], [39.15, 127.08]], \"sentences\": [\"An intro leads into several clips of a person riding down a snowy hill on a snowboard.\", \" The person continues riding down through the snow and falling at one point but cleaning off his goggles and speaking to others.\"]}, \"v_r0685Fhcfjs\": {\"duration\": 64.06, \"timestamps\": [[0, 24.02], [19.54, 49.97], [39.4, 63.1]], \"sentences\": [\"A large yard is shown with leaves laid out front and a man speaking to the camera.\", \" The man pushes the leaves around the yard.\", \" The man holds up the leaves and speaks to the camera.\"]}, \"v_46ac33Z6V4E\": {\"duration\": 79.9, \"timestamps\": [[0, 17.18], [17.18, 39.95], [40.35, 79.9]], \"sentences\": [\"person in a dog costome is walking in the outside of a snowy house.\", \" person in the costume and cross the street to a car.\", \" man sart cleaning he snow from the driver's window and the back window.\"]}, \"v_6E4_XOsT89k\": {\"duration\": 13.52, \"timestamps\": [[0, 10.34], [10.2, 13.52], [0, 13.52]], \"sentences\": [\" A person is standing on top of a high diving board.\", \" They jump off and do flips into the water.\", \" The crowd watches the person dive.\"]}, \"v_kN2ZNcn241g\": {\"duration\": 40.19, \"timestamps\": [[0, 9.45], [15.68, 40.19]], \"sentences\": [\"A man wearing a coach shirt is standing while a female gymnast turns flips on a beam.\", \" He spots her as she flips and dismounts before sitting down.\"]}, \"v_8qAdvUvNuts\": {\"duration\": 120.19, \"timestamps\": [[0, 43.87], [52.88, 120.19]], \"sentences\": [\"A view of the countryside is seen in multiple images, including buildings, trees, fields and flowers near the ocean.\", \" A man is shown mountain climbing up the side of a cliff.\"]}, \"v_2n6MvpNewpI\": {\"duration\": 77.09, \"timestamps\": [[0, 60.13], [60.52, 77.09]], \"sentences\": [\"man is mopping the floor in a laundry room.\", \" man squeeze out the mop in a bucket.\"]}, \"v_sFQ7AaId8zg\": {\"duration\": 45.72, \"timestamps\": [[0, 7.09], [7.09, 14.86], [14.86, 45.72]], \"sentences\": [\"A woman shows a little girl to turn a handle, then, the little girl peels an orange spinning the handle of the machine.\", \" The handle gets stuck and the woman tries to help the girl.\", \" After, the girl continues turning the handle to peel the orange.\"]}, \"v_89S-sQUWIcg\": {\"duration\": 66.08, \"timestamps\": [[1.65, 38.33], [30.4, 65.09]], \"sentences\": [\"A large group of people are seen running around a field playing a game with one another while the camera pans around the area.\", \" The games continues on as people cheer on the sides and the men continue playing with one another.\"]}, \"v_cqkcRy3k4v0\": {\"duration\": 29.65, \"timestamps\": [[0, 9.04], [9.34, 24.31], [24.31, 29.65]], \"sentences\": [\"people are riding camels in the sand, the camel kneel down and the man and the woman go down.\", \" camel in the back kneel down and people go down in the back are cars and people walking in the parking lot and taking pictures.\", \" men go on a camel and the camel stands up.\"]}, \"v_bULG65Ec5fo\": {\"duration\": 170.44, \"timestamps\": [[0, 50.28], [46.87, 83.51], [83.51, 114.19], [114.19, 170.44]], \"sentences\": [\"A man is climbing up a mountain trying to find the right spots to pull himself up.\", \" He finds a good place to hang his rope on the mountain and starts to climb up again.\", \" He decides to move it up a little bit more to a better spot.\", \" Then, he starts climbing again struggling a bit before finally making it over the tough spot.\"]}, \"v_3eQqgH3PJBo\": {\"duration\": 157.06, \"timestamps\": [[0, 32.2], [32.2, 44.76], [44.76, 73.03], [73.82, 84.81], [84.03, 117.8], [117.8, 143.71], [143.71, 157.06]], \"sentences\": [\"A man in a black shirt and white gloves places billiard balls on a pool table.\", \" A man with a light blue shirt inspects the position of the billiard balls up close.\", \" The man in the light blue shirt gets into position with the cue stick and breaks the billiards balls and the balls go in many directions.\", \"The man in the black shirt returns and inspects the table and then steps back.\", \" The man in the light blue shirt prepares for his next shot by walking from one side of the billiard table to the other looking for his next shot.\", \" He chalks the tip of the cue stick before taking his shot.\", \" He then prepares for his next shot walking around the billiard table.\"]}, \"v_hOdSTik8_nw\": {\"duration\": 166.02, \"timestamps\": [[0, 21.58], [6.64, 21.58], [22.41, 51.47], [36.53, 41.51], [53.13, 69.73], [62.26, 67.24], [67.24, 89.65], [89.65, 102.93], [102.1, 104.59], [104.59, 163.53], [151.91, 155.23]], \"sentences\": [\"The coach is coaching his team.\", \" The guy in the black in the back walks off.\", \" The coach is then speaking to the parents.\", \" two new guys arrive in the back.\", \" The coach is on the field with the teams.\", \" the yellow bus drives past.\", \" the red team is listening to the coach.\", \" The kids are playing the game.\", \" The kids are listening to the coach.\", \" The game is on again.\", \" A white bus drives past.\"]}, \"v_ekgfptN7tQk\": {\"duration\": 159.59, \"timestamps\": [[0, 3.99], [3.99, 4.79], [4.79, 5.59], [5.59, 36.71], [36.71, 38.3], [38.3, 159.59]], \"sentences\": [\"The word Surfer is on the screen.\", \"  A surfer is taking to the camera.\", \" A surfer is walking on the beach.\", \"  A man is surfing in the water while the man is taking again.\", \"  There are a crowd of surfers on the island.\", \" Several surfers are in the water and the man is still being interviewed.\"]}, \"v_HwM3ionUBsg\": {\"duration\": 27.56, \"timestamps\": [[0, 27.56], [0, 5.65], [5.65, 27.56], [22.6, 27.56]], \"sentences\": [\"The video takes place in a gymnasium of various gymnasts.\", \" A young girl stands on top of the trampoline in preparation to jump.\", \" She jumps on the bar and begins to do several flips between two bars.\", \" She then jumps to the padded area and throws up her hands, and a man gives her a hug.\"]}, \"v_03BMaaMEcNo\": {\"duration\": 186.82, \"timestamps\": [[0, 38.3], [39.23, 126.1], [125.17, 186.82]], \"sentences\": [\"Two people are seen sitting before a wave pool and one leads another out onto the water on a board.\", \" The person falls when another attempts to ride the board on the water.\", \" The person continues riding along the water and ends with the camera panning around the area and the boy falls.\"]}, \"v_5gc896my38M\": {\"duration\": 206.87, \"timestamps\": [[0, 36.2], [36.2, 75.51], [74.47, 136.53], [135.5, 206.87]], \"sentences\": [\"Several couples are shown running outside and doing various activities outside in the sun.\", \"More and more people begin talking and each of them has a bottle of sun screen and starts to squirt it on their arms in effort to protect their skin.\", \"A small blue bottle of the sun screen is then shown and several more people begin talking about the product.\", \"The website to buy the product is shown and the whole video plays again as if its looped.\"]}, \"v_EY4YIa-kNgs\": {\"duration\": 201.82, \"timestamps\": [[0, 22.2], [23.21, 39.35], [40.36, 42.38], [43.39, 80.73], [81.74, 91.83], [92.84, 117.05], [118.06, 128.15], [129.16, 157.42], [158.43, 186.68], [187.69, 189.71], [190.72, 201.82]], \"sentences\": [\"A young boy holds a dish scrub as he speaks.\", \" He turns to the sink behind him where there are dishes sitting in water.\", \" He drops the scrub into the sink and lays a glass down.\", \" He grabs a towel and cleans the glass and moves on to scrub the glass as well.\", \" He puts down the scrub and grabs the glass to place it in the right side of the sink where he wets the glass and puts it away in the dish rack.\", \" He moves to grab the towel and clean a dish.\", \" He soaks the dish in water and moves it to the dish rack.\", \" He returns to use the towel and clean a knife.\", \" He soaks the knife in the water and moves it to the dish rack, the boy goes back to clean a fork with the towel.\", \" He moves the fork to the water to rinse soap off it.\", \" The young boy stands in front of camera, speaking.\"]}, \"v_MNSDK-vCwTM\": {\"duration\": 84.15, \"timestamps\": [[0, 20.2], [20.2, 63.53], [62.69, 84.15]], \"sentences\": [\"Two girls are seen speaking to the camera while holding cups in their hands and laughing to one another.\", \" The camera zooms in on the cups and the girl continue laughing while finally drinking from the cup.\", \" They hold the liquid into their mouth and spit it out and laugh in the end.\"]}, \"v_TNVdpnrtn5A\": {\"duration\": 158.78, \"timestamps\": [[0, 48.43], [44.46, 116.7], [111.15, 151.63]], \"sentences\": [\"A man is seen speaking to the camera as well as bowing to the camera.\", \" The man kneels down on his knees several times and bows again.\", \" He turns himself around still bowing and ends by standing up.\"]}, \"v_Bg526A61c1w\": {\"duration\": 238.97, \"timestamps\": [[0, 53.77], [68.11, 107.54], [111.13, 127.85], [135.02, 238.98]], \"sentences\": [\"Before an Olympic weight lifting event, a Chinese competitor is shown preparing by working out in a gym.\", \" He then practices for the event by lifting the big Olympic sized weights.\", \" At the competition, he picks up the weights from a squatting position before rising up and then throwing the weights down on completion.\", \" Various successful lifts are shown and the competitor hugs his trainer.\"]}, \"v_lS_bztQjpGM\": {\"duration\": 161.03, \"timestamps\": [[11.27, 79.71], [79.71, 96.62], [96.62, 128.02], [128.02, 132.85], [132.85, 140.9], [140.9, 148.95]], \"sentences\": [\"A girl with long blond hair, wearing a blue robe is doing a tutorial on how to use hot rollers in her hair.\", \" There is another woman wearing white who is demonstrating how to section out her hair and start putting the rollers in the her one by one.\", \" After she's done putting the rollers all over the head, she uses a blow dryer to add some heat to the hair.\", \" Then she removes the rollers from the model's hair and starts to run her fingers through the hair.\", \" She then parts her hair gently with a brush.\", \" She shows how to finish off the look by running her fingers through her hair without using a brush.\"]}, \"v_wJOHmxQZPR4\": {\"duration\": 224.17000000000002, \"timestamps\": [[0, 38.11], [36.99, 153.55], [153.55, 224.17]], \"sentences\": [\"A woman is seen hosting a news segment speaking to the camera and transitions into a group of men walking in a straight line.\", \" The people then perform in front of a large group of people and one performer is interviewed in between.\", \" The news segment then begins talking to other people in the studio who give their opinions and ends with the host laughing and smiling.\"]}, \"v_HqxTRzf11tc\": {\"duration\": 23.59, \"timestamps\": [[0, 10.14], [10.26, 23.59]], \"sentences\": [\"A person is seen standing ready in front of a large track with people sitting and standing around watching him.\", \" The persons ticks their arms out and runs down the track into the sit pit and flips over.\"]}, \"v_Ne8UzAInivM\": {\"duration\": 120.26, \"timestamps\": [[0, 66.14], [34.87, 65.54], [66.14, 83.58], [84.18, 116.05]], \"sentences\": [\"A scuba diver is swimming through the water on a video game.\", \" They are looking through rubble of an old ship.\", \" They get in their boat and drive.\", \" They jump under the water again.\"]}, \"v_J7GJKAoU0rE\": {\"duration\": 211.63, \"timestamps\": [[0, 24.34], [26.45, 165.07], [169.3, 211.63]], \"sentences\": [\"Several people are gathered at a lake.\", \" Images are shown of the people posing with and flying kites.\", \" They are then seen flying the kites on a beach.\"]}, \"v_jl10JmELMqY\": {\"duration\": 208.01, \"timestamps\": [[0, 58.24], [55.12, 163.28], [176.8, 208.01]], \"sentences\": [\"An older woman is shown talking to the camera and begins knitting on a couch.\", \" She continues talking to the camera while the lens zoom in and out of her hands continuing to knit.\", \" She shows off her sweater and finally puts her knitting gear down.\"]}, \"v_EQK_o1qHx7M\": {\"duration\": 178.24, \"timestamps\": [[16.93, 24.06], [24.06, 43.67], [43.67, 62.38], [62.38, 93.57], [93.57, 138.13], [138.13, 155.96], [155.96, 161.3], [161.3, 170.22]], \"sentences\": [\"There's a young boy standing in his kitchen with a jug of water, some lemons and some apples behind him on the counter.\", \" He is pointing to the lemons.\", \" His mother comes and helps him squeeze the juice out of the lemons.\", \" Both the mother and son use a lemon juicer to squeeze the juice and add it to the jug of water.\", \" The mother makes sure that all the juice is properly squeezed out of the lemons, so she uses her hands.\", \" Then she adds some food coloring to the lemonade and stirs it well.\", \" She then pours the lemonade in a glass with ice and gives it to her son.\", \" He takes a sip of the lemonade and smiles.\"]}, \"v_goXkohySkU8\": {\"duration\": 26.75, \"timestamps\": [[0, 11.24], [11.5, 12.04], [12.31, 15.51], [15.38, 18.46], [18.59, 26.75]], \"sentences\": [\"A man wearing a black vest holds white disc's in his hand while a border collie stands in front of him.\", \" The man steps froward and slaps the white discs on his thigh.\", \" The man steps forward switching each foot as the boarder collie runs between the mans legs.\", \" The man taps his head with the white disc he crouches and the boarder collie jumps on his back and balances their.\", \" The man tosses the the disc over his head and the boarder collie catches it and runs off.\"]}, \"v_al_769KF6Qc\": {\"duration\": 124.65, \"timestamps\": [[0, 33.65], [45.5, 124.65]], \"sentences\": [\"A woman walks over to a flower bed and wheelbarrow as she talks.\", \" She demonstrates how to mulch, picking up the material and showing how to pack it around plants.\"]}, \"v_ac1M42uRXS8\": {\"duration\": 141.74, \"timestamps\": [[0, 21.26], [26.93, 61.65], [62.36, 141.74]], \"sentences\": [\"Two girls are on an indoor basketball court.\", \" They are performing using batons and wearing purple dresses.\", \" They spin and toss, throwing the batons into the air as they perform.\"]}, \"v_X3hQtXddMd4\": {\"duration\": 227.12, \"timestamps\": [[0, 5.68], [5.68, 221.44], [120.37, 123.78], [221.44, 227.12]], \"sentences\": [\"A camera and logo appear briefly.\", \" A person wake boards on a lake while being towed.\", \" They pass a person in the water.\", \"  They come to a stop by a dock.\"]}, \"v_sNQQ2Fpxbzw\": {\"duration\": 149.57999999999998, \"timestamps\": [[0, 17.2], [17.2, 51.61], [51.61, 91.99], [92.74, 137.62], [137.62, 149.58]], \"sentences\": [\"A black screen is shown with green words on it and then the screen moves to a white paper with black words.\", \"After, a green Lacrosse team appears and they begin to compete.\", \"Someone makes a goal and then the ball is placed back in the middle of the field.\", \"When they are finished still images from the game are shown.\", \"Finally,a black screen appears and the score is shown in blue and green writing.\"]}, \"v_C_fqFJyf5SU\": {\"duration\": 172.85, \"timestamps\": [[2.59, 50.13], [42.35, 127.91], [114.95, 166.8]], \"sentences\": [\"A woman is seen standing in front of the camera holding onto fire.\", \" Another woman steps beside the first and the two begin performing a fire routine with one another.\", \" A man hands them objects to light and the woman continue dancing and spinning around with the fire.\"]}, \"v_sYAGVE3luRo\": {\"duration\": 159.1, \"timestamps\": [[0, 31.03], [31.03, 151.94], [70.01, 112.96]], \"sentences\": [\"People are playing instruments marching down a street.\", \" They start marching in a circle in a room.\", \" A person holding a baton stands in front of the band.\"]}, \"v_nfBBazBLQFk\": {\"duration\": 207.31, \"timestamps\": [[0, 25.91], [27.99, 149.26], [151.33, 207.31]], \"sentences\": [\"A man stands on the roof of a building, and two others appear.\", \" They are flying kites in the air over the brick building.\", \" The men make the kites dip and dive as they talk and interact.\"]}, \"v_tJbScqVWPsU\": {\"duration\": 200.76, \"timestamps\": [[0, 24.09], [26.1, 133.51], [137.52, 176.67], [178.68, 200.76]], \"sentences\": [\"An outdoor scene by the beach shows a large crowd near a resort.\", \" They are cheering as several professional skateboarders perform stunts in a ramp pit.\", \" The flip and turn in the air, going up and down the ramp.\", \" The winners pose for photos with cakes when they are done.\"]}, \"v_PUI2Qrn0qbE\": {\"duration\": 37.76, \"timestamps\": [[0, 37.76], [0, 5.66], [16.24, 19.82]], \"sentences\": [\"kids are driving on bumper cars spinning and bumping.\", \" kid is wearing blue shirt and clash with the fence holding the handles with both hands.\", \" girl is wearing a leather jacket spining in the bumper car in the amusement car.\"]}, \"v_lhnhGI-rrzM\": {\"duration\": 180.77, \"timestamps\": [[11.75, 79.54], [79.54, 125.63], [125.63, 132.86], [132.86, 144.61], [144.61, 154.56], [154.56, 169.92], [169.92, 180.77]], \"sentences\": [\"There's a young man wearing a blue shirt and a black helmet skateboarding on a two way road.\", \" He is going at a steady and fast speed as he passes through a few cars and lots of trees.\", \" He also passes through some residential areas as he skateboards.\", \" He finally slows down as cameraman approaches a gray car.\", \" The cameraman gets into the car and takes the skateboard away.\", \" The skateboarder is kneeling on the side of the main road.\", \" He then gets up and walks away.\"]}, \"v_PntiXZ692xM\": {\"duration\": 187.34, \"timestamps\": [[0, 3.75], [3.75, 162.05], [38.4, 43.09], [72.13, 87.11], [116.15, 127.39], [133.01, 137.69], [157.36, 168.61], [167.67, 184.53], [184.53, 187.34]], \"sentences\": [\"We see a magazine on a black background.\", \" People begin running on country roads in a marathon.\", \" We see them get drinks at a table.\", \" A man is running and holding a camera facing himself.\", \" The man who is running is seen again.\", \" We see a person point at a lake.\", \" We cross the finish line.\", \" A man is in a lake cooling off.\", \" We see the ending screen.\"]}, \"v_2KYGAq5qQCI\": {\"duration\": 77.02, \"timestamps\": [[0, 7.32], [8.09, 32.73], [35.81, 64.7], [66.24, 77.02]], \"sentences\": [\"A close up is shown of a room with a window.\", \" a man is smoothing mud over the wall.\", \" He measures and cuts then spreads again.\", \" When he is done, the wall is completely smooth.\"]}, \"v_W0EN9JeU66A\": {\"duration\": 30.37, \"timestamps\": [[0, 16.55], [16.4, 30.37]], \"sentences\": [\"A young child is moving back and fourth on a swing while laughing and smiling to the camera.\", \" The child continues pumping their legs and then is stiff while looking off into the distance.\"]}, \"v_4w_46rTInXI\": {\"duration\": 221.89, \"timestamps\": [[0, 221.89], [66.57, 221.89], [139.79, 221.89]], \"sentences\": [\"A bunch of people are playing beer pong in different outfits.\", \"  Then people bong a beer.\", \"  A lot of dancing happens at the end.\"]}, \"v_wVahCLOq4s0\": {\"duration\": 165.47, \"timestamps\": [[0, 47.99], [47.99, 102.59], [103.42, 165.47]], \"sentences\": [\"woman is sitting in front of a white table holding a halloween pumpkin.\", \"  woman holds a knife and and cut the pumpkin head and remove all the seeds from the inside.\", \" woman daw the face with black markers and open the holes on the pumpkin.\"]}, \"v_5zCY_vezHaU\": {\"duration\": 168.69, \"timestamps\": [[0, 22.77], [13.5, 168.69]], \"sentences\": [\"A man in black shirt is stalking in front of the camera, then the calendar and then drawing is shown.\", \" The blonde man is talking in front of the camera, while behind him is an empty ramp, then the man skateboard in a wooden ramp, then is is showing how to skateboard, then he skateboard and did tricks on a wooden ramp, then he continue to talk, and then skateboard again.\"]}, \"v_QvM8SFUUvsw\": {\"duration\": 28.28, \"timestamps\": [[1.84, 11.6], [12.16, 28]], \"sentences\": [\"A man is shown solving a rubix rube at record speed while a timer is going and a man records him.\", \" Another player at a younger age is shown solving the rubix cube as well as a third patron shortly after.\"]}, \"v_grvzIljsqcI\": {\"duration\": 214.04, \"timestamps\": [[1.07, 64.21], [50.3, 163.74], [162.67, 207.62]], \"sentences\": [\"A young woman is seen looking at the camera while taking a drink and fixing her hair.\", \" The woman then holds up a pack of cigarettes and begins smoking a cigarette.\", \" The woman continuously smokes and drinks one after the other while continuing to look to the camera.\"]}, \"v_LrputIUn4oY\": {\"duration\": 84.17, \"timestamps\": [[0, 70.28], [70.28, 83.33]], \"sentences\": [\"There are different athletes in the beginning of the video, but then 2 people are shown diving into the water while a huge crowd watches them.\", \" In the end, the men's 10m synchro platform is held.\"]}, \"v_r40TuTkt9y4\": {\"duration\": 210.14, \"timestamps\": [[0, 53.59], [57.79, 141.85], [142.9, 210.14]], \"sentences\": [\"Various shots of landscapes are shown that interments with people riding in a large raft.\", \" At one point the raft flips over the men riding down the river.\", \" More shots of people riding down the river are shown as well as people speaking to the camera.\"]}, \"v_mGsenLq9yEU\": {\"duration\": 235.39, \"timestamps\": [[0, 34.13], [44.72, 156.54], [158.89, 235.39]], \"sentences\": [\"A news woman is talking in a news room.\", \" Bullfighters are shown inside a ring.\", \" They are trying to entice the bull with capes.\"]}, \"v_PRTcRz--03E\": {\"duration\": 179.4, \"timestamps\": [[0, 68.17], [66.38, 173.12]], \"sentences\": [\"A person is seen walking into frame and begins playing on a set of bongo drums.\", \" The man continues playing on the drums while the camera doesn't move and ends with him hitting them once and walking away.\"]}, \"v_VVyE6rVJEuI\": {\"duration\": 144.86, \"timestamps\": [[0, 144.86], [52.15, 55.77], [143.41, 144.86]], \"sentences\": [\"Two people are dancing in a room.\", \" They turn to the side and continue dancing.\", \" They finish and pose at the end.\"]}, \"v_kJrHvEECvEA\": {\"duration\": 70.61, \"timestamps\": [[0, 14.83], [14.83, 28.95], [28.95, 45.54], [45.54, 70.61]], \"sentences\": [\"A woman standing outside on the roof smoking a cigarette.\", \" She blows smoke and plays around with her hair.\", \" She keeps smoking and blowing smoking casually all by her lonesome.\", \" She exhales one last time and then put her cigarette out on a wall.\"]}, \"v_PDaGlIxn6Pk\": {\"duration\": 200.4, \"timestamps\": [[0, 26.05], [27.05, 91.18], [102.21, 200.4]], \"sentences\": [\"A couple of teams are playing lacrosse on an open field.\", \" A crowd watches the game intently.\", \" The players run back and forth across the field, hitting the ball into goals.\"]}, \"v_OZftVCeblMk\": {\"duration\": 6.67, \"timestamps\": [[0.13, 2.13], [1.9, 6.37]], \"sentences\": [\"A man is seen standing before a kitchen sink and washing dishes in his hands.\", \" The man then cleans the dishes and puts them away, then looking over upset to see more dishes.\"]}, \"v_YIYZHQUOtnA\": {\"duration\": 123.09, \"timestamps\": [[0, 39.39], [39.39, 56.01], [56.01, 92.93], [92.32, 105.24]], \"sentences\": [\"A groups of students  exercise and cheers on a competition, then boys wearing red t-shirt throw bowling balls and throw all the pins and celebrates.\", \" Then, young people wearing green t-shirts are successful playing bowling.\", \" After, girls play bowling who throw all the pins with the bowling bowl.\", \" The winners of the competition receive closed envelopes and trophies.\"]}, \"v_IpFsz2xc3sY\": {\"duration\": 236.22, \"timestamps\": [[0, 30.71], [30.71, 72.05], [72.05, 87.4], [87.4, 150], [150, 200.78], [200.78, 236.22]], \"sentences\": [\"A woman is speaking to a webcam in her bedroom.\", \" She begins to play with her hair, separating part of it and braiding it.\", \" She places the first braid into her mouth while creating another one.\", \" She criss crosses the braids, and places a rubberband on it.\", \" She begins to do the same process with the other side of her hair.\", \" The video finishes by cutting a still image of the same girl and panning up and down.\"]}, \"v_uHLEUps_ahs\": {\"duration\": 234.62, \"timestamps\": [[0, 22.29], [28.15, 159.54], [170.1, 234.62]], \"sentences\": [\"A man is standing in front of a white screen.\", \" He is talking about the saxophone in his hands and showing the proper hand positions.\", \" He demonstrates how to play the instrument.\"]}, \"v_tYZJ4O5Hsz4\": {\"duration\": 157.42000000000002, \"timestamps\": [[0, 110.2], [110.2, 157.42]], \"sentences\": [\"A little girl plays softly the drums holding two sticks while she is singing on a microphone.\", \" The, the girl plays more fast the drums.\"]}, \"v_qXUdnj4VN80\": {\"duration\": 150.49, \"timestamps\": [[0, 17.31], [18.06, 20.32], [19.56, 37.62], [43.64, 55.68], [55.68, 100.83], [100.08, 150.49]], \"sentences\": [\"A female seems to be doing tricks with a hula hooping while being very flexible with her body.\", \"the lady also rides a one wheel bike while hula hooping.\", \"the girl then hula hoops while standing on a mat then hula hoops with two hula hoops standing in the same spot.\", \"the girl then hula hoops hanging upside down,she also hula hoops around her hand while doing a split on a mat.\", \"the girl hula hoops a big tire hula hoop then hula hoops with three hula hoops using her two hands and one feet in the air.\", \"the girl then's try to hula hoop a lot of hula hoops at one time as other girls keep adding more to her.\"]}, \"v_exzuzQLrv7g\": {\"duration\": 196.4, \"timestamps\": [[0, 11.78], [13.75, 47.13], [51.06, 166.94], [171.85, 196.4]], \"sentences\": [\"Three men dressed in fencing gear are standing in a gym.\", \" The man in the middle is talking and the other two remain still.\", \" The two men begin making movements as the man instructs them to, showing off the different fencing techniques.\", \" They fight slowly, showing each step before culminating into the man's final words onscreen.\"]}, \"v_81F42Yyw_iY\": {\"duration\": 66.67, \"timestamps\": [[11, 55], [51.33, 58.67], [59, 66.67]], \"sentences\": [\"A woman pole vaults over a tall bar.\", \" She lands on a yellow mat under her.\", \" Words come onto the screen at the end.\"]}, \"v_LZleSe6Kovg\": {\"duration\": 27.75, \"timestamps\": [[0, 27.75], [3.47, 24.42], [24.7, 27.75]], \"sentences\": [\"A man is wearing a white robe with a black belt.\", \" He starts doing karate moves in a room.\", \" He stands up right at the end.\"]}, \"v_3cjtV-ldvto\": {\"duration\": 212.14, \"timestamps\": [[0, 16.97], [16.97, 43.49], [43.49, 59.4], [59.4, 149.56], [149.56, 169.71], [170.77, 212.14]], \"sentences\": [\"woman put an egg on a bowl and mix it with vanilla.\", \" quick oats and baking powder, cocoa powder and salt are mixed in a bowl.\", \" a chocolate bar are cut in pieces with nuts and put in a bowl.\", \" sugar and butter are mixed in a bowl till cream and put the vanilla and the powder ingredients with the chocolate and he nuts.\", \" themix is wrap and put in a refrigerator.\", \" batch is in a pan and ar ready to eat.\"]}, \"v_yaWwad6WXVY\": {\"duration\": 192.47, \"timestamps\": [[0, 163.6], [155.9, 162.64], [162.64, 190.55]], \"sentences\": [\"A person practice dribbling and shooting the ball walking or running in the court, while a man watch the training.\", \" The man stands and leave the court.\", \" After, several men practice basketball in a court.\"]}, \"v_-KjJxkFUhv4\": {\"duration\": 235.1, \"timestamps\": [[0, 12.93], [12.93, 69.36], [69.36, 148.11], [148.11, 235.1]], \"sentences\": [\"The word Happy is written in pebbles on the side of the sand.\", \"A large body of crystal blue water is shown and a large boat with people are in it.\", \"The individuals began dancing and jumping off the boat and enjoy themselves in the water.\", \"As the people continue,three or four people are in the water swimming with goggles on.\"]}, \"v_P9I3zxNUu74\": {\"duration\": 171.92000000000002, \"timestamps\": [[0, 40.4], [41.26, 140.98], [139.26, 171.92]], \"sentences\": [\"A man with two children are seen speaking to the camera with one throwing his hands up and leading into them moving quickly.\", \" The kids stand on a chair taking ornaments off a tree while moving back and fourth to the table to place the objects.\", \" The kids then sweep up the floor while dancing and having fun and end by all waving to the camera.\"]}, \"v_x08PpU3uQ6Y\": {\"duration\": 118.82, \"timestamps\": [[1.19, 16.63], [18.42, 86.14], [43.96, 73.67], [57.03, 108.72], [104.56, 118.82]], \"sentences\": [\"The woman in white shirt is standing, then kneel down next to a big plastic bag on the ground.\", \" She opened the bag, put the content of the bag in the uneven hole on the ground, and flatten it using her gloved hand.\", \" She looked at the camera and talked while she's kneeling next to the plastic bags.\", \" She put another bag on the ground, flatten them using her hand until the area is covered.\", \" She walks forward, bend sideward to flatten some more dirt.\"]}, \"v_xS-F-9E3xKk\": {\"duration\": 71.56, \"timestamps\": [[0, 17.18], [17.18, 45.09], [45.8, 71.56]], \"sentences\": [\"Two women are on a stand opposite one another at a table beginning to arm wrestle.\", \"There is a brief hold up before they begin,because their thumb positing is inaccurate.\", \"Once they finally begin,the girl on the left wins but she is quickly stopped and they have to restart and the same girl wins again.\"]}, \"v_kBDTz-dwQ2k\": {\"duration\": 82.5, \"timestamps\": [[11.55, 34.65], [34.65, 54.04], [54.04, 70.95], [70.95, 77.14]], \"sentences\": [\"There is a woman in a white blouse along with a man in a white shirt in a studio practicing ballroom dancing.\", \" They are in a room with a wall full of mirrors.\", \" The lady is explaining the steps of the dance as they both demonstrate the moves and foot work involved in the dance.\", \" They go back and forth as they take their steps while holding each other's hands.\"]}, \"v_ANB_IQfi9kA\": {\"duration\": 132.24, \"timestamps\": [[0, 6.61], [7.93, 24.46], [28.43, 54.88], [58.18, 132.24]], \"sentences\": [\"A man runs past an approaching storm.\", \" Surfers are seen in the water, and people are walking with their surfboards.\", \" A group of women gather, and a praying mantis is seen.\", \" Numerous surfers are then shown, going through and over various waves.\"]}, \"v_qF3EbR8y8go\": {\"duration\": 204.1, \"timestamps\": [[0, 45.92], [45.92, 56.13], [56.13, 93.89], [93.89, 137.77], [138.79, 204.1]], \"sentences\": [\"woman is painting in a white paper green leaves in a chinese tree.\", \" a red paint is shown and woman put a stamp on the corner of the paper.\", \" woman is painting a blue ad purple chinese flower.\", \" a red and black flowers are painted on a white paper with very detail for the same woman in a dark room.\", \" woman used some black painting for make details, put the red stamp on the corner and finished the painting with yellow and reddetails on the flowers.\"]}, \"v_gMV5Mso7758\": {\"duration\": 177.15, \"timestamps\": [[0, 56.69], [55.8, 139.95], [134.63, 177.15]], \"sentences\": [\"A close up of a man is shown followed by him asking a woman a question on the beach.\", \" He then is shown speaking to several different people holding a frisbee and playing a game.\", \" Many women laugh with the men and the man gives several of them a kiss.\"]}, \"v_tzChPctqAP4\": {\"duration\": 125.48, \"timestamps\": [[1.25, 62.74], [47.06, 122.34]], \"sentences\": [\"Two men are seen jumping and kicking around one another performing various flips and tricks.\", \" The men continue spinning around one another as well as performing gymnastics moves in different locations.\"]}, \"v_ivBgqENFmt0\": {\"duration\": 166.72, \"timestamps\": [[0, 12.5], [13.34, 22.51], [25.84, 40.85], [60.02, 75.02], [83.36, 137.54], [107.53, 130.04]], \"sentences\": [\"A planter of flowers is seen in front of a home.\", \" A roofer nails tiles into the roof beams of a home.\", \" The construction worker slides tiles into place on a roof.\", \" A crew of construction workers get tiles up onto a roof.\", \" A finished tile roof is seen when the job is done.\", \" A worker uses a spatula tool to apply grout in between tiles on the roof.\"]}, \"v_YULJjXegG1w\": {\"duration\": 116.36, \"timestamps\": [[0, 9.89], [11.05, 36.65], [41.31, 80.29], [82.03, 116.36]], \"sentences\": [\"A basketball court is shown outdoors.\", \" A man runs up, and does several consecutive lay ups.\", \" He makes a few baskets, then tries again and again.\", \" Some kids run by, waving at the camera.\"]}, \"v_Qf6gZtm9BIg\": {\"duration\": 54.15, \"timestamps\": [[0, 7.58], [14.89, 41.69], [42.24, 46.57]], \"sentences\": [\"A man is standing outside talking.\", \" He gets onto a slack line and starts to cross it.\", \" He falls off onto the grass.\"]}, \"v_lGwUq5vZGEk\": {\"duration\": 236.45, \"timestamps\": [[16.55, 30.74], [30.74, 78.03], [78.03, 99.31], [99.31, 128.86], [128.86, 167.88], [167.88, 191.52], [191.52, 230.54], [230.54, 236.45]], \"sentences\": [\"A young girl is demonstrating how to do a braid in layered hair.\", \" She begins by brushing her hair down.\", \" Then she brings all of her hair to her right side and starts braiding the hair on a single braid.\", \" She then takes a hair tie and ties it around the bottom of her braid.\", \" She takes some hair gel out of an orange container and uses it on the tips of her braid to smoothen the hair.\", \" She further braids the bottom part of her braid till the end and ties another hair tie around it.\", \" Then she takes a bobby pin and pins the short hair in the front to back of her head.\", \" She secures the pin into her hair and waves good bye.\"]}, \"v__0CqozZun3U\": {\"duration\": 294.29, \"timestamps\": [[0, 120.66], [120.66, 294.29]], \"sentences\": [\"man is standing in the botom of a stairs and is cleaning the snow hil in the street a snowplow is passing and the man is cleaning the snow and doing a path.\", \" man is standing in front of a car and is cleaning the windshield and all the windows.\"]}, \"v_FmRLElPPWV8\": {\"duration\": 178.56, \"timestamps\": [[0, 36.61], [47.32, 178.56]], \"sentences\": [\"People prepare to go canoeing and then launch their boats.\", \"  People then go down the stream.\"]}, \"v_Pp4U2Ql7bhY\": {\"duration\": 200.11, \"timestamps\": [[0, 21.01], [22.01, 107.06], [165.09, 181.1], [188.11, 200.11]], \"sentences\": [\"A man in a Batman shirt is sitting down talking.\", \" A person starts welding a piece of metal.\", \" He takes a brush and brushes off the piece of metal.\", \" He puts all the pieces in a black bag.\"]}, \"v_BdAPzcdrk9g\": {\"duration\": 55.29, \"timestamps\": [[0.83, 19.9], [14.93, 40.36], [38.15, 54.18]], \"sentences\": [\"A small group of people are seen standing on two sides of a net.\", \" The people then begin playing a game of badminton with one another.\", \" They continue to hit the birdie around while serving it to the other side and hitting it back.\"]}, \"v_fLCWIE8a4AU\": {\"duration\": 70.6, \"timestamps\": [[0, 21.18], [21.53, 46.24], [46.95, 70.6]], \"sentences\": [\"A crowd of about one thousand people are outside and in the stadium watching a bull fight.\", \"Three young men are in the center and begin to tamper with two black and white bulls.\", \"The two bulls are now fighting with one another and the crowd begins to close in on them to see the action.\"]}, \"v_VOTBtV0CQ8c\": {\"duration\": 222.37, \"timestamps\": [[0, 88.95], [52.26, 158.99], [105.62, 211.25]], \"sentences\": [\"A camera pans around a lake and shows a boat moving along the water.\", \" A person is seen riding behind the boat on a pair of skis.\", \" More shots are shown of the boat riding around with a person skiing in the back.\"]}, \"v_Lm7KLQgzQDk\": {\"duration\": 107.6, \"timestamps\": [[0, 55.95], [31.74, 107.6]], \"sentences\": [\"A large group of people are seen standing together dressed up with one man speaking into a mic and pointing.\", \" The man then busts out into song and dance with another man and pointing to the groom gradually.\"]}, \"v_PLWeVDUH_Cw\": {\"duration\": 66.46, \"timestamps\": [[0, 10.3], [15.62, 30.57], [31.57, 58.15], [59.48, 66.46]], \"sentences\": [\"Business men walk through a busy crowd.\", \" A business man plays against a table tennis professional.\", \" Two businessmen play on a team against the table tennis pro.\", \" The match ends and the business men shake hands with the athlete.\"]}, \"v_lMFp8FPeDHI\": {\"duration\": 124.48, \"timestamps\": [[0, 8.09], [8.71, 11.2], [11.2, 13.69], [13.69, 45.44], [45.44, 70.96], [70.96, 89.63], [89.63, 107.06], [107.06, 124.48]], \"sentences\": [\"A preteen boy is out in an open park filming challenges on monkey bars he points to the left.\", \"  The camera pans over to the left to show the slide in another part of the jungle gym.\", \"  The camera pans back to the monkey bars.\", \"  The boy attempts to climb the monkey bars starting from the second from the top rung of the ladder on the inside and falls, he gets up and goes to the ladder.\", \"  The boy attempts the climb again, this time from the top rung of the ladder on the inside and falls, he gets up and goes to the ladder again.\", \"  The boy attempts to climb again, from the top bar on the inside and falls again, he gets up and goes to the ladder again.\", \"  The boy attempts to climb again, this time he adjusts again standing on the second rung on the inside and falls again when he attempts to climb.\", \" The boy attempts to climb again using the same starting point and falls, he gets up and goes toward the ladder but decides he is done and says good-bye.\"]}, \"v_zfi8f5NnYaY\": {\"duration\": 45.95, \"timestamps\": [[0, 16.77], [16.31, 45.95]], \"sentences\": [\"A man is seen riding around on a horse holding a stick and then pausing to sit.\", \" He is then seen again walking with a large group of people drinking water and then shakes hands of several people while walking back.\"]}, \"v_hKezMv52Nw8\": {\"duration\": 201.94, \"timestamps\": [[0, 29.28], [29.28, 77.75], [77.75, 148.43], [149.44, 201.94]], \"sentences\": [\"A female athlete is standing in a field and takes off running and does a long jump in to the pit.\", \"After,she walks off and her jump is measures as they show her replay.\", \"After,more girls begin to jump and represent their team and their jumps are measured as well.\", \"However,for the last jump,a close up is shown of the board because her foot barely touches it and they want to give her credit for those centimeters.\"]}, \"v_kCD0iQFnHA4\": {\"duration\": 135.79, \"timestamps\": [[0, 27.84], [29.2, 95.05], [94.37, 135.79]], \"sentences\": [\"A close up of a dough is shown and leads into a person spreading frosting on a pastry.\", \" She puts the pastry onto the cake and continues putting frosting all around the cake.\", \" The camera zooms around the cake and shows the woman putting a face on the cake and showing off the finished result.\"]}, \"v_4rv1uLmbyHA\": {\"duration\": 116.05, \"timestamps\": [[0, 11.61], [16.83, 116.05], [82.98, 88.2], [99.23, 112.57]], \"sentences\": [\"Two news anchors are talking in a room.\", \" A man is making food in a kitchen.\", \" He cooks mushrooms in a pan.\", \" He adds the food into a bowl.\"]}, \"v_owLQzBg4olo\": {\"duration\": 30.33, \"timestamps\": [[0, 4.85], [6.82, 15.62], [20.02, 27.29]], \"sentences\": [\"A long colorful scarf is seen running over chairs.\", \" A woman is seen knitting the scarf in a purple dress.\", \" Three other woman sit together and knit a section of the scarf.\"]}, \"v_C7so_y5I_9s\": {\"duration\": 191.42, \"timestamps\": [[0, 7.66], [7.66, 26.8], [32.54, 186.64], [73.7, 74.65], [86.14, 89.97], [130.17, 133.04], [187.59, 191.42]], \"sentences\": [\"We see an opening title screen.\", \" We see images of a man opening blinds and carrying a boarding outside.\", \" We see a man riding jet skis and performing flips.\", \" We see a man sitting on the dock.\", \" We see the jet skier ride over a ramp.\", \" We see a shoe briefly.\", \" We see the ending title screen.\"]}, \"v_hf1JuvacaJc\": {\"duration\": 170.51, \"timestamps\": [[0.85, 169.65], [84.4, 92.93]], \"sentences\": [\"Individuals bowl at their lanes and knock down pins.\", \" A guy bowls a strike and open his mouth to express anguish.\"]}, \"v_nyEcPLZQerc\": {\"duration\": 86.38, \"timestamps\": [[0, 60.9], [25.91, 86.38]], \"sentences\": [\"Students are interviewed and then run a race.\", \"  Everyone seems happy to be involved with the College of Charleston.\"]}, \"v_VyD5Z0S9tXU\": {\"duration\": 139.74, \"timestamps\": [[0.7, 139.74], [3.49, 30.74], [30.74, 139.74]], \"sentences\": [\"A chef demonstrates how to peel a potato using a potato peeler and a potato, in a kitchen in front of cutting board.\", \"  The man talks to the camera and begins to peel the potato with the peeler peeling of slices of skin and gesturing at the table.\", \" The man peels the potato until it has no more skin on it.\"]}, \"v_UmuWttAYfco\": {\"duration\": 157.32, \"timestamps\": [[0, 10.23], [10.23, 124.28], [124.28, 157.32]], \"sentences\": [\"Two men are standing together on a table with their fist up as the referee holds their wrist.\", \"The referee then lets go and almost instantly the arm wrestling match is over and a winner is declared,the winner moves on and several more matches begin to take place and they too are ended abruptly.\", \"Near the end however,the opponents finally match and it takes forever to declare a winner as they struggle to move their hands.\"]}, \"v_XToVLTbQEm4\": {\"duration\": 182.65, \"timestamps\": [[0, 12.79], [0, 67.58], [67.58, 182.65]], \"sentences\": [\"men are playing basket in a roofed wooden court.\", \"  man is alone doing lay ups to the basket.\", \" another man arrives to the court and start playing together.\"]}, \"v_2bkQz8BcKZ4\": {\"duration\": 118.4, \"timestamps\": [[3.55, 65.71], [50.91, 114.26]], \"sentences\": [\"A small group of girls are seen walking onto a stage followed by more people following behind.\", \" More people continue walking out onto the stage with some holding signs and others watching on the side.\"]}, \"v_RA61jh8HwPI\": {\"duration\": 104.21000000000001, \"timestamps\": [[0, 36.47], [25.01, 80.24], [62.53, 103.17]], \"sentences\": [\"A woman is seen putting makeup on her face and leads into several pictures of makeup.\", \" Many more pictures of products are shown with text across the screen.\", \" More pictures of products are shown that end with more text and a woman pushing away makeup.\"]}, \"v_-6prmNqkAN8\": {\"duration\": 47.14, \"timestamps\": [[0, 22.63], [24.51, 47.14]], \"sentences\": [\"A large snowy mountain is seen as people gather on the ice.\", \" They hit several pucks, sweeping them in a game.\"]}, \"v_3sL7fLHM09c\": {\"duration\": 31.42, \"timestamps\": [[3.93, 31.1], [0, 30.63], [23.88, 24.19]], \"sentences\": [\"A female gymnast is demonstrating a gymnastics performance on bars.\", \" Other gymnasts and an instructor are watching the female gymnast perform.\", \" Another female gymnast is practicing in the background.\"]}, \"v_YAPkcWlWmYg\": {\"duration\": 222.56, \"timestamps\": [[0, 68.99], [67.88, 222.56]], \"sentences\": [\"A girl is seen listening to music and transitions into her performing a dance routine outside on a walk way.\", \" She continues dancing around while smiling to the camera and ends by walking away and giving two peace signs to the camera.\"]}, \"v_gGYje5UGLdY\": {\"duration\": 238.96, \"timestamps\": [[0, 41.82], [51.38, 182.8], [117.09, 232.98]], \"sentences\": [\"A person is seen walking into frame in front of a pair of drums.\", \" He then begins playing the drums back and fourth.\", \" He continues to play on the drums and ends by turning the camera off.\"]}, \"v_QBy64z68s0w\": {\"duration\": 97.1, \"timestamps\": [[0, 6.31], [6.31, 31.07], [31.07, 32.53], [32.53, 97.1]], \"sentences\": [\"A young girl performs her gymnastics routine on the balance beam.\", \" The young girl gets on the beam and continues her routine.\", \" The young girl falls off the beam.\", \" The young girl gets back on the beam and finishes her routine.\"]}, \"v_KSu59HUet3E\": {\"duration\": 152.82999999999998, \"timestamps\": [[8.41, 28.27], [12.23, 28.27], [17.58, 41.27], [13.76, 41.27], [23.69, 48.14], [25.22, 44.32], [25.98, 63.43], [34.39, 58.84], [45.09, 90.17], [75.65, 152.83]], \"sentences\": [\"A man with white shirt is standing in front of a machine.\", \" He turned around and pointed the machine.\", \" The machine is being shown.\", \" A man who is wearing a white shirt keeps talking, while behind him a man in gray shirt walked and reach something in the machine.\", \" The man in gray shirt put a powdery stuff in the machine.\", \" He is shaking the bag.\", \" The man in white shirt is putting cement on the wall.\", \" The man is holding a blue long tube pointing on the wall.\", \" The man in gray uniform used the tube/pump and spray the cement on the wall.\", \" An old man is smoothing the cement on the wall.\"]}, \"v_bUHE8XcPZgs\": {\"duration\": 74.68, \"timestamps\": [[0, 12.32], [11.95, 60.86], [52.27, 56.38], [58.25, 61.23], [60.86, 63.85], [63.85, 74.68]], \"sentences\": [\"We see a man walk to the parallel bars and jump on.\", \" We see the man perform a routine on the bars.\", \" The man does a handstand.\", \" The man flips and dismounts from the bars.\", \" The man raise his arms in the air.\", \" The man walks away and hugs another man.\"]}, \"v_fruimvo90vA\": {\"duration\": 36.99, \"timestamps\": [[1.11, 14.98], [15.35, 34.22]], \"sentences\": [\"A woman is seen running down a long track and jumping into a pit.\", \" The camera watches her as she walks away and sticks her tongue out to another person.\"]}, \"v_06eyqLosXjU\": {\"duration\": 227.79, \"timestamps\": [[0, 3.42], [3.42, 216.4], [215.26, 227.79]], \"sentences\": [\"A man is standing behind two inverted drums.\", \" He begins to play them with small sticks.\", \" He finishes playing and walks away.\"]}, \"v_8W-x068F4tE\": {\"duration\": 58.31, \"timestamps\": [[0, 34.69], [30.03, 58.31]], \"sentences\": [\"An athletic man is seen standing before a beam and begins performing a gymnastics routine.\", \" He swings himself around and around performing flips and tricks and ends by kissing the crowd and walking away.\"]}, \"v_Zrv8_-Y-jSM\": {\"duration\": 27.17, \"timestamps\": [[0, 1.9], [1.9, 22.41], [22.41, 27.17]], \"sentences\": [\"A special effect intro screen appears which is mainly blue and white words in the middle of the screen appear and they read \\\"ROPE SKIPPING\\\".\", \"Behind the words there are 4 girls with their own jump ropes and they're all rope skipping separately and eventually they jump in unison.\", \"White words appear on the screen that read \\\"Klasse 7c/Fr Leifels\\\", the girls drop to the ground to end their routine and they smile and look around.\"]}, \"v_VTFIAQVjHv8\": {\"duration\": 192.19, \"timestamps\": [[0, 4.8], [6.73, 18.26], [19.22, 49.97], [50.93, 183.54], [184.5, 192.19]], \"sentences\": [\"A man in a grey print hoodie is standing against a wall introducing himself and then explaining that he is going to give a tutorial for some tricks.\", \"  A stop start animation with a desk calendar is shown with flip animation drawings blending into framed animation leading to the title of the group and the skateboard tutorial they are about to explain.\", \"  Footage of a skateboarder doing a trick in front of a camera is followed by the man in the grey hoodie explaining that he is going to show how to do a frontside 180 on a skateboard and what it can be used for as well as the fundamentals befor learning the trick.\", \"  He then goes into the explanation of how to do the trick in depth as well as footage being shown while he's talking about the trick.\", \" The camera pans up and a black screen appears with white letters and a website address followed by a film company and a site channel.\"]}, \"v_rteN6_HkMkI\": {\"duration\": 121.3, \"timestamps\": [[0, 7.28], [10.31, 46.09], [50.95, 121.3]], \"sentences\": [\"A man is shown smoking a cigarette while walking several dogs attached to chains on his belt.\", \" A man is talking from behind a table.\", \" Several scenes are then shown of the actor while the news person talks about him.\"]}, \"v_rojFvhZw_z8\": {\"duration\": 161.75, \"timestamps\": [[12.94, 25.07], [25.07, 36.39], [36.39, 58.23], [58.23, 71.17], [71.17, 92.2], [92.2, 116.46], [116.46, 142.34], [142.34, 150.43]], \"sentences\": [\"A woman is getting ready to bath her dog in her front yard.\", \" She takes a hose and wets the dog first.\", \" There is another little puppy running around the dog and a little kitten too.\", \" The woman takes some liquid soap and scrubs it on the dog.\", \" After she's done washing, she wipes him dry with a towel.\", \" then she bathes the little puppy the same way with soap and water.\", \" The dog is playing on a rug after the bath is over with wet fur on his body.\", \" The little puppy is running around the dog with wet fur too.\"]}, \"v_aCSG6pfivy4\": {\"duration\": 160.61, \"timestamps\": [[0, 22.49], [28.91, 99.58], [100.38, 160.61]], \"sentences\": [\"A tray of cookies is shown, followed by butter being beaten in a bowl.\", \" Ingredients are added one at a time, mixing them all together.\", \" The dough is piped onto the tray, then baked.\"]}, \"v_DuDF7hkrjYo\": {\"duration\": 148.77, \"timestamps\": [[0, 34.96], [36.45, 52.81], [60.25, 79.59], [78.85, 85.54], [119.76, 148.77]], \"sentences\": [\"A woman is standing in a room talking.\", \" She picks up a plastic bottle.\", \" She starts dusting a dresser.\", \" She wipes it off with a towel.\", \" She dumps olive oil onto a rag and rubs it onto the dresser.\"]}, \"v_oZjx7F1doGs\": {\"duration\": 144.66, \"timestamps\": [[30.38, 142.49], [7.23, 28.21], [28.93, 55.69], [51.35, 142.49]], \"sentences\": [\"Two men exhibit and demonstrate the use of an automated tennis ball server on a tennis ball court.\", \"  An animation graphic appears exhibiting two gold cylinders inside of a metal bracket.\", \"  The animated graphic morphs into a real and actual version of the graphic, appearing on a outdoor tennis court and flanked by two men.\", \" The two men standing next to the machinery place tennis balls into the machine, which in turn spits out the balls acting as an automated tennis ball server for a player who is standing on the other side of the tennis court with a tennis racket.\"]}, \"v_ZoKZTceDTLA\": {\"duration\": 165.0, \"timestamps\": [[0, 15.68], [25.58, 37.13], [49.5, 90.75], [92.4, 153.45], [155.1, 165]], \"sentences\": [\"We see a man talking while walking through a house.\", \" We see another man working on the floor.\", \" We see a man laying tile in another room.\", \" Two men are in the same room working on different projects.\", \" We see the man talking to the camera again.\"]}, \"v_eJnSC8C3OIw\": {\"duration\": 233.8, \"timestamps\": [[0, 10.52], [17.54, 220.94], [61.96, 66.63], [100.53, 135.61], [151.97, 158.99], [225.62, 233.8]], \"sentences\": [\"A website address is typed in.\", \" Skateboards skate and do tricks down stairs and on benches throughout a city.\", \" A skateboarder rides a concrete ramp in a skate park.\", \" Skateboarders ride the banks of a drainage ditch.\", \" Different skateboarders ride in a concrete ramp doing tricks.\", \" The city lights are seen at night with passing traffic in fast motion.\"]}, \"v_vNyXwHA_k5A\": {\"duration\": 148.39, \"timestamps\": [[0, 148.39], [8.16, 148.39], [30.42, 148.39]], \"sentences\": [\"People are dancing on a stage.\", \" People in the audience are raising their hands.\", \" A man in a white shirt starts singing and dancing on the stage.\"]}, \"v_KyDS9Zg76Jg\": {\"duration\": 152.44, \"timestamps\": [[0, 151.68], [0, 1.52], [16.01, 101.37], [104.42, 150.92]], \"sentences\": [\"A chef demonstrates how to cut and chop several vegetables as he prepares an asian inspired meal.\", \"  A chef in a white chefs outfit in a kitchen, boils potatoes and onions in a pot.\", \"  The chef talks to the camera and takes a series of vegetables and chops them up on a counter.\", \"  The chef then puts the vegetables along with some oil into a bowl and sticks two large chopsticks in to showcase the finished product.\"]}, \"v_x5MPJnwJrfE\": {\"duration\": 131.1, \"timestamps\": [[1.31, 33.43], [36.71, 106.85], [68.17, 122.58]], \"sentences\": [\"A woman is seen laying down on a table with a man tattooing her from behind.\", \" A woman watches on the side as the man continues tattooing and the woman having him stop.\", \" The woman continues trying to get the tattoo but stopping and speaking to the camera because it hurt so bad.\"]}, \"v_N5J9Zb07uuQ\": {\"duration\": 176.32999999999998, \"timestamps\": [[0, 96.98], [65.24, 176.33]], \"sentences\": [\"A man is seen standing on a ladder and leads into several pictures of him on the ladder and then painting the wall with another.\", \" They're seen hanging up posters, climbing up and down ladders, and finally cutting carious foods on a large stick afterwards.\"]}, \"v_qYpb_3oAM0k\": {\"duration\": 95.32, \"timestamps\": [[0, 95.32], [3.81, 91.03], [90.55, 95.32]], \"sentences\": [\"A man is sitting down on a chair.\", \" He starts playing an accordion in his lap.\", \" He stops playing and looks at the camera.\"]}, \"v_QZCBVJHF81w\": {\"duration\": 120.21, \"timestamps\": [[0, 27.05], [26.45, 92.56], [72.13, 118.41]], \"sentences\": [\"A man is seen walking forward speaking to the camera and begins washing a car.\", \" The man scrubs all around the car while still speaking to the camera.\", \" He continues to wash the car and stops for a moment to speak to the camera.\"]}, \"v_9_wuEvN2OnQ\": {\"duration\": 184.6, \"timestamps\": [[0, 6.46], [6.46, 19.38], [19.38, 30.46], [30.46, 38.77], [38.77, 44.3], [44.3, 69.22], [69.22, 84.92], [83.99, 95.99], [95.99, 107.99], [108.91, 118.14], [117.22, 184.6]], \"sentences\": [\"A woman is trying to play bad-mitten.\", \"  She is hitting the shuttle cock.\", \"  She is walking around the court, looking around.\", \"  She is trying to play the game with not much effort.\", \"  She hands another racket to a friend.\", \" She is not really playing.\", \"  The other player is a more serious player as she serves.\", \" The game of bad-mitten continues as the first player missed again and again.\", \"  People walk in front of the camera.\", \" The camera shows the other two players.\", \"  The game goes on for a while longer before it ends.\"]}, \"v_UoGoOznvKew\": {\"duration\": 142.97, \"timestamps\": [[0, 33.6], [36.46, 97.93], [80.78, 131.53]], \"sentences\": [\"A woman is seen looking at the camera and holding up a piece of makeup.\", \" She then takes out her contacts and holds up another container.\", \" She then puts another set of contacts in and smiles to the camera.\"]}, \"v_1Uur858vdY8\": {\"duration\": 30.81, \"timestamps\": [[0.46, 16.64], [13.1, 30.35]], \"sentences\": [\"An athletic man is seen standing ready and begins running down a track and jumping into a pit.\", \" The man celebrates as his score is shown and his jump is shown again in slow motion.\"]}, \"v_4E40jmmc2N8\": {\"duration\": 9.06, \"timestamps\": [[0.14, 2.85], [2.76, 6.43], [6.34, 8.83]], \"sentences\": [\"A large man is seen sitting in the middle of a circle looking away from the camera.\", \" The man then spins himself around with a discuss in his hands.\", \" Finally he throws the object off into the distance.\"]}, \"v_XCwPsQwzfiA\": {\"duration\": 176.26, \"timestamps\": [[27.32, 140.13], [46.71, 140.13], [140.13, 155.99], [166.57, 170.09]], \"sentences\": [\"A woman is pouring ingredients into a Kitchen aid.\", \" She turns it on and mixes the ingredients together.\", \" She pours the mixture into to cake pans.\", \" A piece of cake is shown on a plate.\"]}, \"v_eECoZPqsTYI\": {\"duration\": 159.68, \"timestamps\": [[2.4, 89.42], [59.88, 156.49]], \"sentences\": [\"A man is seen playing drums on a set of buckets while several people walk past him and others record him.\", \" The man continues to play as the camera pans all around him and people continue to walk around him and show off the area.\"]}, \"v_pcrNMrBmy1I\": {\"duration\": 121.58, \"timestamps\": [[0, 114.89], [16.41, 67.48], [60.18, 66.87], [114.89, 118.54]], \"sentences\": [\"Two teams are playing lacrosse outdoors.\", \" Players score and jump and run to celebrate the scores.\", \" A player take the ball on the stick and run to the goal to score, where a player scores.\", \" The board shows the winner.\"]}, \"v_7Xl0K-revJc\": {\"duration\": 136.44, \"timestamps\": [[0, 73.68], [80.5, 136.44]], \"sentences\": [\"A man teaches the proper way to get a mouthpiece on a saxophone.\", \"  He then describes how to properly play the horn.\"]}, \"v_8M_RipfsJI8\": {\"duration\": 63.0, \"timestamps\": [[0, 7.56], [0, 63], [8.19, 19.84], [17.64, 63]], \"sentences\": [\"A man is reaching into water and washing his face.\", \" A woman is working on the otherside of the water.\", \" The man splashes the worker with water.\", \" A woman looks on and laughs at the man.\"]}, \"v_1sp7zRy1Rxo\": {\"duration\": 132.54, \"timestamps\": [[0, 61.63], [60.31, 132.54]], \"sentences\": [\"A large group of people are sitting around a table and transitions into people sitting on a ski lift.\", \" They begin taking turns riding down the snowy mountain and several shots are shown of them riding the lift and down the mountain.\"]}, \"v_ndGz8-hHSt4\": {\"duration\": 37.43, \"timestamps\": [[0, 11.23], [11.6, 34.06], [34.25, 37.43]], \"sentences\": [\"A person puts on a welding helmet.\", \" Then, the person weld a piece of metal.\", \" Then, the person finish to weld and rise his helmet but it folds down.\"]}, \"v_BfSqo9ONd6g\": {\"duration\": 115.08, \"timestamps\": [[12.66, 44.88], [44.88, 73.65], [73.65, 98.39], [98.39, 106.45]], \"sentences\": [\"There's a dirt biking event going on which is sponsored by Monster energy drink.\", \" There are several contestants participating in the event.\", \" One of the contestants falls off his bike and seems like he's injured.\", \" He gets up right away and walks to the corner.\"]}, \"v_dZMMhVx7yY4\": {\"duration\": 164.03, \"timestamps\": [[0, 40.19], [44.29, 99.24], [75.45, 118.1], [116.46, 164.03]], \"sentences\": [\"A man is seen speaking to the camera followed by him talking to random women on the beach.\", \" They play a game together and when he wins the girl gives him a kiss.\", \" When they lose the girl smacks him.\", \" Several girls laugh and play along while getting a kiss or slapping the man.\"]}, \"v_Lg-mJS-BZZo\": {\"duration\": 15.05, \"timestamps\": [[0, 3.84], [3.91, 11.74], [10.53, 14.67]], \"sentences\": [\"A person is seen wearing a funny costume while holding onto a piece of machinery.\", \" The man pushes the machinery around the lawn while looking into the camera.\", \" The man continues using the machine while looking off into the camera.\"]}, \"v_zUt53fHpqc8\": {\"duration\": 71.05, \"timestamps\": [[0, 15.63], [15.28, 20.61], [20.61, 41.92], [41.57, 71.05]], \"sentences\": [\"A group of men are shown cheering and jumping around in slow motion.\", \" Many people are present as trophies are displayed.\", \" A bunch of people gather to play beer pong and drink.\", \" Various shots of the action at different tables is shown and then the video cuts to an internet address to find out more information.\"]}, \"v_KsKUIIHiMg0\": {\"duration\": 164.91, \"timestamps\": [[22.26, 59.37], [59.37, 91.52], [91.52, 125.33], [125.33, 147.59], [147.59, 154.19]], \"sentences\": [\"There are two women in a bathroom washing clothes in blue buckets filled with foamy soap water.\", \" The women soak the clothes in the soap water and rinse them out to clean them.\", \" Then she put the clothes in a large metal drum that spins rapidly to drain off excess water.\", \" They then go on top of their building in an open terrace where ropes are tied across the walls.\", \" They begin hanging the clothes on the clothesline for drying.\"]}, \"v_UXc2y7lR5t0\": {\"duration\": 18.5, \"timestamps\": [[0.46, 3.33], [4.07, 15.17], [15.35, 16.92], [16.65, 18.5]], \"sentences\": [\"A boy hangs on monkey bars.\", \" He crosses the obstacle easily.\", \" He looks proud of himself.\", \" He smiles at the camera.\"]}, \"v_hKE7vI--XGU\": {\"duration\": 103.42, \"timestamps\": [[0, 21.72], [25.34, 29.99], [31.03, 66.19], [67.74, 100.32]], \"sentences\": [\"A woman wearing a shawl stands in front of a tropical plant outdoors.\", \" A woman presents a band on stage for a performance.\", \" A flute player plays a part of a song during the performance.\", \" The band plays a song together during the performance.\"]}, \"v_93jSVyXW5gc\": {\"duration\": 111.55, \"timestamps\": [[0, 15.06], [15.06, 26.21], [26.21, 32.91], [32.35, 46.85], [71.39, 73.62], [46.85, 69.72], [69.72, 111.55]], \"sentences\": [\"woman is standing in a shooting room holding a bow and throwing the arrow into a board.\", \" woman stands in a bg large field holding a bow and thowing arrow to baloons.\", \" woman is standing in a small court holding a bow and throwing an arow to an apple in a man's head.\", \" man is standing in a alrge green field showing a woman how to shoot an arrow and the woman pulls out a gun from the pockets and shot to the board.\", \" man is standing next to a tree holding a camera.\", \" woman is throwing arros to a watermelon.\", \" woman is throwing arrows to movie posters and talking to the camera.\"]}, \"v_oLrkd6M2WRY\": {\"duration\": 100.2, \"timestamps\": [[0, 23.04], [23.04, 70.14], [70.64, 100.2]], \"sentences\": [\"man is talking to the camera standing next to a box.\", \" man is assembling a shuffleboard court in a sidewalk.\", \" man start playing the suffleboard hitting the pucks.\"]}, \"v_CIJp-SG3sWE\": {\"duration\": 28.58, \"timestamps\": [[0.14, 14.72], [15.44, 18.87], [19.58, 21.01], [24.73, 28.58]], \"sentences\": [\"A girl walks to the edge of the diving board.\", \" The girl extends her hands.\", \" The girl dives into pool.\", \" The girl swims to the edge of the pool.\"]}, \"v_WmQC309JCAI\": {\"duration\": 181.08, \"timestamps\": [[0, 26.26], [28.07, 81.49], [81.49, 146.68], [146.68, 181.08]], \"sentences\": [\"Men in a jerseys are standing around with their arms crossed just kind of staring into space.\", \" Then, you see them on the field playing a game and later talking a little bit about it.\", \"  They each seem to recall their own memories of times they won medal and stare at their medals.\", \" they stand around in a small group talking and then you see an audience cheering and clapping.\"]}, \"v_-h3NbdE8N9M\": {\"duration\": 179.4, \"timestamps\": [[0, 22.42], [30.5, 120.2], [134.55, 179.4]], \"sentences\": [\"A team is on a field, trying to get the ball from their opponents.\", \" They are playing a game of lacrosse.\", \" They fight over the ball, trying to get it into a goal.\"]}, \"v_NfjeG6AsoJA\": {\"duration\": 55.1, \"timestamps\": [[0, 55.1], [1.1, 55.1], [27.27, 55.1]], \"sentences\": [\"kids are playing on the playground in the school ground.\", \" kids are swingin in the swing on a side.\", \" little kid stands on the edge of the slide.\"]}, \"v_rBsRSdPFOww\": {\"duration\": 77.18, \"timestamps\": [[8.49, 26.24], [26.24, 42.07], [42.07, 62.52], [62.52, 71.4]], \"sentences\": [\"A chef dressed in a white chef's outfit is demonstrating how to sharpen kitchen knives using a tool called Rada knife sharpener.\", \" He is standing in a kitchen in front of the counter that has a variety of raw vegetables displayed.\", \" He places a kitchen towel on the counter and then places the knife on top of it.\", \" He then demonstrates how to use the Rada sharpening tool to sharpen the kitchen knife by running iit back and forth in gentle and steady motion.\"]}, \"v_HfpCQGe9eA0\": {\"duration\": 42.26, \"timestamps\": [[0, 2.32], [2.32, 39.73], [10.14, 11.83], [24.93, 27.68], [40.15, 42.26]], \"sentences\": [\"A guy rises to his feet.\", \"The guy walks on a tight rope.\", \" The guy turns to walk back.\", \" The guy walks backwards on the tight rope.\", \" The guy steps off the tight rope and smiles.\"]}, \"v_hZRgO5Kd-rE\": {\"duration\": 170.9, \"timestamps\": [[10.25, 60.67], [66.65, 146.97], [135.86, 169.19]], \"sentences\": [\"A man is seen speaking to the camera and leads into various ingredients begin shown and a person slicing up cheese.\", \" The person mixes ingredients together and lays them on slices of bread to create a sandwich.\", \" The person presses the food into a presser and takes a large bite afterwards.\"]}, \"v_EML3BvJxknA\": {\"duration\": 116.45, \"timestamps\": [[0, 18.63], [19.8, 53.57], [37.85, 116.45]], \"sentences\": [\"An older man is sitting in a tube while an older woman climbs on the back.\", \" The man in the tube is wearing skiis and eventually rides behind the boat with the woman on top.\", \" The couple continue riding on top of each other on the skis while the camera zooms in and out to capture the movement.\"]}, \"v_3OGD7if0zs8\": {\"duration\": 95.16, \"timestamps\": [[0, 6.19], [7.61, 35.21], [36.64, 70.89], [73.27, 95.16]], \"sentences\": [\"A woman stands in a kitchen, staring at the camera.\", \" The person opens an oven and pulls out a tray of chocolate chip cookies.\", \" The woman stares at the cookies, and a second batch is checked.\", \" The woman scoops the cookies off the tray, loosening them.\"]}, \"v_OVpvpvmV2pg\": {\"duration\": 106.53, \"timestamps\": [[0, 11.19], [12.25, 88.96], [97.48, 106.53]], \"sentences\": [\"A little boy is smiling close to the camera.\", \" He uses a wrench to remove the bolts from a kids' bike tires.\", \" When he is done, he laughs loudly.\"]}, \"v_huI9TvxZxmM\": {\"duration\": 107.32, \"timestamps\": [[0, 15.56], [15.56, 59.03], [59.03, 86.93], [89.08, 107.32]], \"sentences\": [\"A man and woman dressed up on stage waiting to start their performance.\", \" The performance begins and the start dancing very beautifully.\", \" They work very well together, he picks her up on his shoulders.\", \" They use the chair as a prop and dance until it time to stop and then they hug.\"]}, \"v_TADJh_DZOfE\": {\"duration\": 64.17, \"timestamps\": [[0.32, 3.53], [4.17, 6.1], [16.04, 49.09], [24.38, 45.88], [30.48, 35.94], [52.62, 58.72], [59.36, 63.53]], \"sentences\": [\"The credits of the clip are shown.\", \" A female athlete claps her hands.\", \" The female athlete runs and elevates her body over a heighten hurdle.\", \" The female athlete rises and yells in joy.\", \" The female athlete dances and spins.\", \" The female athlete walks away.\", \" The credits of the video are shown.\"]}, \"v_9o2iojC7gSw\": {\"duration\": 131.24, \"timestamps\": [[5.91, 7.87], [9.84, 17.72], [18.37, 31.5], [32.81, 49.87], [51.18, 54.46], [58.4, 87.27], [76.78, 79.4], [90.56, 123.37], [129.93, 131.24]], \"sentences\": [\"A indoor course is panned with camera in a warehouse setting.\", \" An athlete runs down a track and pole vaults over a high bar and onto a cushioned landing pad.\", \" The pole vaulter discusses events and sets down some wooden pools before use.\", \" The athlete discusses more and is seen on television screens doing previous pole vaults.\", \" The athlete sits with a coach and watches a tv screen.\", \" The athlete stands and talks on the track and does a warm up run jumping on the mats.\", \" The athlete lays on a mat next to a female athlete and stretches.\", \" The athlete does multiple pole vaults during practice onto the mat.\", \" The outside of the warehouse is seen in a city setting.\"]}, \"v_x1Z_3-X49HY\": {\"duration\": 91.84, \"timestamps\": [[0, 23.42], [22.96, 61.07], [61.07, 87.7]], \"sentences\": [\"A close up of a cat is seen sitting in a person's lap.\", \" The person then grabs a pair of clippers and begins cutting the nails of the cat.\", \" He continues cutting the nails and shows off the cat paws in the end.\"]}, \"v_MCnvxOLnbsg\": {\"duration\": 53.65, \"timestamps\": [[0, 52.84], [6.17, 19.31], [21.46, 38.09], [37.02, 53.65]], \"sentences\": [\"A silver car is parked in the street.\", \" A man power washes the car in the street.\", \" He then dries it off.\", \" The car is now completely clean.\"]}, \"v_AyYpsQ4xOo8\": {\"duration\": 195.4, \"timestamps\": [[0, 45.92], [47.87, 49.83], [50.8, 55.69], [56.66, 143.62], [145.57, 180.74]], \"sentences\": [\"A woman talks to the camera in a street environment while pedestrians and cars pass by.\", \" The woman peeks out from behind a wall.\", \" The woman looks at a laptop screen with a man.\", \"The man applies a tattoo pattern to the woman's upper arm, with the video sometimes passing in accelerated time.\", \" The woman shows the completed tattoo while talking to the camera.\"]}, \"v_O0uVjGlOW8M\": {\"duration\": 220.99, \"timestamps\": [[0, 25.41], [39.78, 107.18], [111.6, 220.99]], \"sentences\": [\"A vast ocean view is shown as a wave crashes in.\", \" This is repeated from several different angles.\", \" People are then shown surfing through the waves.\"]}, \"v_ZeugCIqbsD4\": {\"duration\": 48.83, \"timestamps\": [[0, 5.62], [6.35, 23.68], [26.13, 48.83]], \"sentences\": [\"A man is standing in front of a table.\", \" He is holding a potato and peeler over a bowl.\", \" He peels the potato one strip at a time.\"]}, \"v_YpA8T0ZjRIo\": {\"duration\": 80.25, \"timestamps\": [[4.81, 52.96], [60.19, 66.21], [71.82, 80.25]], \"sentences\": [\"Cars are getting washed at a car wash.\", \" A play room in the car wash is being shown.\", \" The outside of the car wash building is shown.\"]}, \"v_bXT72HACH4I\": {\"duration\": 201.89, \"timestamps\": [[0, 4.04], [4.04, 8.08], [8.08, 29.27], [29.28, 155.46], [155.46, 201.9]], \"sentences\": [\"A black screen appears with a red and white logo on the upper left, black and white words going diagonal on the upper middle that read \\\"SOKOL DOBRIS\\\" and the bottom have purple and white words that read \\\"ROPE SKIPPING\\\".\", \"Next shown is a still shot of black shirt with the logo on the upper left of the chest and the word \\\"DOBRIS\\\" under it and a red and white jump rope is on top of it.\", \"There are 4 different people standing on an indoor court, and 3 are holding ends of 2 different jump ropes and 1 person is rope jumping.\", \"Various clips of people rope jumping play and sometimes there's just 1 person jumping alone, but most times there are between 2 and 4 and a lot of times they are alternating between jumping and holding the rope.\", \" The clips of videos ends and various still shot pictures involving rope jumping are shown on the screen and a black screen appears when the pictures are done and the purple and white letters appear on the screen that say \\\"ROPE SKIPPING\\\".\"]}, \"v_j5cmc3cnLeU\": {\"duration\": 104.14, \"timestamps\": [[0, 98.41], [0, 3.64], [91.64, 98.41]], \"sentences\": [\"A couple dances in red outfits on a stage for a large audience on a stage lit with colorful lighting.\", \" A man and a woman passionately hold each other standing still in an embrace.\", \" The  man dips his female partner down who does the splits at the end of the dance.\"]}, \"v_08uNrWxxHGY\": {\"duration\": 192.31, \"timestamps\": [[2.88, 34.62], [34.62, 75.96], [75.96, 87.5], [87.5, 106.73], [106.73, 157.69], [158.65, 186.54], [186.54, 188.46]], \"sentences\": [\"A woman with long hair paints on a large panel in time lapse video.\", \" The woman is still painting the panel, but now with a change of clothing.\", \" The woman is still painting the panel, but with yet another change of clothing.\", \" The woman paints with a fourth different set of clothing.\", \" The woman continues to paint with a fifth different set of clothing.\", \" The woman continues to paint with a sixth different set of clothing.\", \" A closeup of the completed picture is shown.\"]}, \"v_8Mdnvm8olC0\": {\"duration\": 94.97, \"timestamps\": [[0, 2.37], [2.85, 82.15], [82.62, 94.97]], \"sentences\": [\"An \\\"IAAF\\\" logo appears with the words \\\"Long Jump Men\\\".\", \" Several men run down a track and perform a long jump in a professional sports venue.\", \" A scoreboard graphic is shown for all the participating players.\"]}, \"v_-YVhOi8vt_Q\": {\"duration\": 21.97, \"timestamps\": [[0, 4.17], [5.6, 21.97]], \"sentences\": [\"A person places down a rubik's cube on a folder.\", \"  The puzzle is then solved in 11 seconds.\"]}, \"v_xoXTlNWkC7w\": {\"duration\": 181.12, \"timestamps\": [[0, 16.3], [16.3, 181.12]], \"sentences\": [\"A black screen is shown and various white words are shown.\", \"After,a Caucasian man is shown playing the hand drums and stomping his foot.\"]}, \"v_6YvF2YHee5I\": {\"duration\": 85.64, \"timestamps\": [[0, 28.26], [31.69, 74.5], [76.22, 85.64]], \"sentences\": [\"A shovel rakes along the snow covered ground of a yard.\", \" It pulls up the snow in large amounts.\", \"A man pulls up the shovel, and sets it aside.\"]}, \"v_GwLhmYF7Wdw\": {\"duration\": 191.29, \"timestamps\": [[0, 147.29], [147.29, 191.29]], \"sentences\": [\"man is standing in front of a white cloth in a studio doing exercise in an elliptical machine showing the characteristics of the bike.\", \" woman is doing the same that the man, watching the elliptical and doing exercise.\"]}, \"v_OixwThoO8z4\": {\"duration\": 170.37, \"timestamps\": [[0, 4.26], [4.26, 143.96], [143.96, 170.36]], \"sentences\": [\"A black screen appears and handwritten looking white text appears on the screen and it say's \\\"Bart Rollin\\\".\", \"A man is outdoors in a city skating with and without a shirt on in different locations, falling a few times and skating both at day and night while people look on at different locations, and sometimes he's alone.\", \"When the man is done skating the outro appears and it includes a screenshot of what looks like a bloody finger, a white screen with a male faintly drawn on it and black words scroll from bottom to top until just the white screen with the male drawing is only visible.\"]}, \"v_-Q03gEypilg\": {\"duration\": 202.9, \"timestamps\": [[0, 187.68], [179.56, 202.9]], \"sentences\": [\"This woman is walking, jumping,  and flipping on the balance beam.\", \" When she's done she walks off the stage and goes to her dad.\"]}, \"v_uA3dbKjT9rM\": {\"duration\": 166.63, \"timestamps\": [[0, 13.33], [13.33, 34.99], [34.16, 112.47], [112.47, 166.63]], \"sentences\": [\"A girl sitting int eh driver seat of a car is talking on her phone on speaker.\", \" She hangs up and starts talking out loud and then her and her friend are walking through a parking garage.\", \" The girls are walking and talking through the mall, then they go to Claires to get ears pierced.\", \" They continue walking around the mall for a while.\"]}, \"v_GsNyn-6DDJM\": {\"duration\": 33.16, \"timestamps\": [[0, 33.16], [0.66, 33.16], [9.28, 10.61]], \"sentences\": [\"A woman is sitting down in a chair.\", \" A boy is brushing her long hair.\", \" She laughs and covers her mouth with her hand.\"]}, \"v_Z_F01eV0Iqw\": {\"duration\": 228.43, \"timestamps\": [[0, 43.4], [6.85, 11.42], [23.98, 43.4], [46.83, 228.43], [55.96, 60.53], [85.66, 92.51], [183.88, 217.01], [218.15, 228.43]], \"sentences\": [\"The video begins with a little boy in a motorcycle helmet, in a restaurant.\", \" The cameraman hands him skis.\", \" A woman and baby come sit near him and he attempts to walk, only to fall.\", \"  Next are clips of the little boy skiing with his father down a snowy slope.\", \" At one point, he glides on a small ramp.\", \"  He also faces a tumble.\", \" Soon the boy and his family load their vehicle to leave.\", \" The video ends with a picture of the little boy and his dad.\"]}, \"v_zyi4NVylqB0\": {\"duration\": 100.2, \"timestamps\": [[0.5, 50.1], [37.07, 97.19]], \"sentences\": [\"A small group of people are seen shaking hands and standing together followed by a man blowing a whistle and people running around.\", \" The people then play a game of soccer with one another, running up and down the sandy field while coaches yell on the side and a goal is blocked.\"]}, \"v_YnvefOl6a7k\": {\"duration\": 145.4, \"timestamps\": [[0, 51.62], [52.35, 145.4]], \"sentences\": [\"A man is shown standing next to a tree holding christmas decorations in his hands.\", \" He then hangs the decorations all around the tree while looking back and speaking to the camera.\"]}, \"v_QvP8tPp8Wog\": {\"duration\": 64.81, \"timestamps\": [[35.64, 45.36], [45.36, 58], [58, 61.57]], \"sentences\": [\"There's a young man in a red shirt playing an acoustic guitar.\", \" He strums the guitar using his pick and moves his fingers along the chords.\", \" After he is done playing, he looks up and smiles.\"]}, \"v_QaNQrUpmmgo\": {\"duration\": 134.56, \"timestamps\": [[14.13, 117.07], [24.22, 117.07], [65.26, 71.99]], \"sentences\": [\"A woman in an orange shirt is sitting on an exercise machine.\", \" She begins working out on the exercise machine.\", \" People are walking past a window behind her.\"]}, \"v_D_zM6YmlUnw\": {\"duration\": 224.07, \"timestamps\": [[0, 17.93], [19.05, 24.65], [35.85, 48.18], [75.06, 84.03], [87.39, 90.75], [104.19, 152.37], [155.73, 177.02], [188.22, 219.59]], \"sentences\": [\"A woman wearing a tan apron is holding a knife and talking.\", \" She then shows an appliance on the table and tilts it upwards.\", \" She turns a dial on the appliance and sets it back down.\", \" She picks the knife back up and places it on the appliance.\", \" She turns the dial again on the appliance.\", \" She picks the knife back up and places it in the appliance and slowly draws it back several times.\", \" She slices a tomato on a wood block with the knife.\", \" She grabs a second knife and puts it in the appliance.\"]}, \"v_hOcP06xuKFg\": {\"duration\": 39.1, \"timestamps\": [[0, 0.59], [7.23, 27.76], [33.04, 39.1]], \"sentences\": [\"A person grabs a disk from a pile of disks.\", \" They throw it down a shuffle board.\", \" The continue to throw disks down the shuffleboard.\"]}, \"v_6jxqb8FyWnQ\": {\"duration\": 40.13, \"timestamps\": [[0, 7.42], [8.43, 19.66], [20.46, 40.13]], \"sentences\": [\"Two men are shown sitting at a table with their arms crossed one another.\", \" They grab each other's hand and begin an arm wrestling match with one yelling to the other.\", \" One almost wins but the other pulls back quickly and wins while screaming and pushing.\"]}, \"v_YZacstLO0XA\": {\"duration\": 130.17, \"timestamps\": [[11.72, 18.87], [18.87, 31.24], [31.24, 42.96], [42.96, 57.28], [57.28, 73.55], [73.55, 89.17], [89.17, 109.99], [109.99, 124.96]], \"sentences\": [\"A man is demonstrating how to make a three egg omelette in his kitchen.\", \" He starts by cracking the eggs in a clear glass bowl.\", \" He then beats the eggs well and adds some butter into the saucepan.\", \" He pours the raw egg batter into the pan.\", \" He lifts the pan and moves it around to shuffle the eggs.\", \" He then tops is off with some grated cheese.\", \" He takes a fork and slides the omelette into a white plate.\", \" He then garnishes it with some greens on top for a healthy touch.\"]}, \"v_z4qaGiWt-bo\": {\"duration\": 79.67, \"timestamps\": [[0, 11.15], [11.95, 64.13], [66.52, 79.67]], \"sentences\": [\"A team is on a field as a runner throws the ball, which the batter hits and is caught.\", \" The coach instructs the players as they continue the game.\", \" The players walk away, then a view of the ball coming at the bat is shown.\"]}, \"v_mqa1ptnQWWo\": {\"duration\": 133.61, \"timestamps\": [[0, 24.72], [28.06, 89.52], [96.87, 133.61]], \"sentences\": [\"A wall is shown, covered in hanging tools.\", \" A man is in a workshop, talking about roofing shingles.\", \" He demonstrates how to apply glue, tile, and then hammer and nail the tiles into place.\"]}, \"v_bQVMoeBK7XU\": {\"duration\": 100.06, \"timestamps\": [[0, 28.02], [28.52, 87.55], [88.05, 100.06]], \"sentences\": [\"A bottle of aging cream is shown and a woman begins to apply it on her face in her T-zone.\", \"Once it is evenly displayed,several paragraphs begin to show about the use of the product and what each week should be.\", \"After,a short sentence appears and tells you to go on their web page to get more details.\"]}, \"v_ExMpLopi9ug\": {\"duration\": 41.96, \"timestamps\": [[0, 3.57], [3.99, 8.39], [9.23, 36.92], [40.07, 41.96]], \"sentences\": [\"Gymasts are standing in a competition room.\", \" A man mounts a beam.\", \" He begins to spin, flips, and do several tricks.\", \" He dismounts, raising his arms into the air and bowing.\"]}, \"v_uzgIBU9arcU\": {\"duration\": 25.33, \"timestamps\": [[0.51, 17.23], [10.51, 24.32]], \"sentences\": [\"A baby is seen swinging back and fourth on a swing while laughing and smiling to the camera.\", \" The baby continues moving back and fourth while looking up to the camera and smiling.\"]}, \"v_8YkCDiVc7RI\": {\"duration\": 107.75999999999999, \"timestamps\": [[1.62, 64.66], [38.8, 102.38]], \"sentences\": [\"Two girls are seen speaking and waving to the camera that lead into them performing several jumps and tricks on a mat.\", \" the girls continue taking turns flipping all around the mat in the area as well as speaking to the camera and waving.\"]}, \"v_r9xmgB116dE\": {\"duration\": 205.36, \"timestamps\": [[0, 205.36], [50.31, 118.08], [74.96, 205.36]], \"sentences\": [\"An Asian woman is sitting, then she ride the skateboard and began skating on the empty road.\", \" The girl is skateboarding side to side, and while holding a selfie stick.\", \" The girl skateboard on the sidewalk, near the water, in a narrow path, and park.\"]}, \"v_feYYvRmqCgI\": {\"duration\": 33.14, \"timestamps\": [[0, 32.64], [5.8, 8.45], [8.45, 9.44], [9.28, 33.14]], \"sentences\": [\"A group of people sitting on elevated bleachers,  watch a man on a horse lasso a small black calf in a, dirt covered, indoor, rodeo ring.\", \" The man emerges into the ring from a floor level door, on a horse, chasing after a small black calf.\", \"  The man simultaneously throws a rope around the calfs neck and dismounts the horse, while the horse is in motion.\", \"  Upon landing on the ground after the dismount,  the man runs to the calf and ties the calf up in the rope, and then walks back to the horse and mounts the horse again while two men enter the ring and grab for the tied up calf.\"]}, \"v_iPXyExgGD5Q\": {\"duration\": 39.08, \"timestamps\": [[0, 9.18], [9.77, 31.65], [32.05, 39.08]], \"sentences\": [\"A man is shown in a bathroom choosing a toothbrush.\", \" He then brushes his teeth and sees blood.\", \" He uses listerine mouth wash for thirty seconds to kill the germs.\"]}, \"v_NZ5iioSnCO8\": {\"duration\": 68.71000000000001, \"timestamps\": [[0, 32.29], [29.54, 68.71]], \"sentences\": [\"A close up of a table is shown as well as a man standing around the table and pointing to the side.\", \" Two men are watching on the side as the game continues and another man records on his phone.\"]}, \"v_TlDkQ8SNG64\": {\"duration\": 25.84, \"timestamps\": [[0, 4.01], [4.01, 25.84], [20.03, 25.84]], \"sentences\": [\"A boy sits a top a camel.\", \" The camel begins to move with the help of a handler.\", \" People appear in the background.\"]}, \"v_YLT7YEwUCwI\": {\"duration\": 230.12, \"timestamps\": [[0, 44.87], [46.02, 167.99], [148.43, 220.92]], \"sentences\": [\"A man is seen speaking to the camera and leads into him sitting still in a pool.\", \" The man then begins swimming around the pool back and fourth with others.\", \" Several shots are shown of him swimming around people as well as moving in the water.\"]}, \"v_7KYj4FQUESo\": {\"duration\": 29.49, \"timestamps\": [[0.44, 28.31], [11.21, 28.02]], \"sentences\": [\"A person is shown vacuuming a large rug with a green vacuum cleaner.\", \" A caption comes up on the screen while the man continues to use the vacuum all over the rug.\"]}, \"v_6Epn-R6sg5U\": {\"duration\": 85.1, \"timestamps\": [[1.28, 22.13], [26.38, 61.7], [47.23, 82.55]], \"sentences\": [\"A close up of a pool table is shown followed by a person walking around the sides.\", \" The person then hits a pool ball continuously around the table.\", \" The man then sinks the last ball and celebrates with a group of people.\"]}, \"v_JUvqA51RX0Y\": {\"duration\": 53.87, \"timestamps\": [[5.12, 11.85], [10.77, 36.36], [0, 44.98]], \"sentences\": [\"A man throws a ball onto the sidewalk.\", \" He plays hopscotch to pick it up.\", \" A little kid runs around in front of him.\"]}, \"v_7lNAmkaMyyg\": {\"duration\": 13.65, \"timestamps\": [[0, 13.65], [3.62, 10.99]], \"sentences\": [\"A man holding an ice scraper is pushing ice off of his car while the camera zoom in.\", \" The camera shows his hands mutiple times close up gradually pushing piece by piece of ice off.\"]}, \"v_X7-1DRvX-LU\": {\"duration\": 228.35, \"timestamps\": [[0, 17.13], [18.27, 174.68], [180.39, 228.35]], \"sentences\": [\"A woman is in a living room in front of a fire.\", \" She cuts wrapping paper in strips, then wraps it neatly around a box.\", \" She tapes the box, then lays it down gently on the table.\"]}, \"v_qm1dudWLlUg\": {\"duration\": 18.3, \"timestamps\": [[0.91, 11.44], [10.16, 16.83]], \"sentences\": [\"A man is drinking a beer during a game while others look on and smile.\", \" Several people are watching the match and the man drinking a beer looks at the camera and smiles.\"]}, \"v_I5N4rwhRa0o\": {\"duration\": 182.3, \"timestamps\": [[0, 3.65], [4.56, 173.19], [47.4, 51.96], [78.39, 97.53], [110.29, 122.14], [148.57, 153.13], [172.27, 182.3]], \"sentences\": [\"The title and logo appear on the screen.\", \" A man holding a saxophone plays and talks to the camera in between.\", \" A man holds the saxophone up to show the bottom.\", \" The man takes the mouthpiece off his saxophone, and replaces it.\", \" We see a closeup of the man playing the saxophone, it zooms out and in on him again.\", \" We see a closeup of the opening of the horn.\", \"The screen goes black and we see the end screen.\"]}, \"v_ZjHIN-M-dQY\": {\"duration\": 66.29, \"timestamps\": [[0, 57.01], [20.22, 23.2], [24.2, 25.85]], \"sentences\": [\"A group of people re riding stationary bikes in a big gym.\", \" One man moves a stationary bike.\", \" A woman adjusts the top hat she is wearing.\"]}, \"v_FCFSLuCZKj4\": {\"duration\": 126.27, \"timestamps\": [[0, 125.01], [5.68, 48.61], [48.61, 125.01]], \"sentences\": [\"A person is using a large armed window washing mechanism to wash the exterior, front, glass window of a sandwich store.\", \"  The person is a man with grey hair and glasses and he uses the tool to wash the very top of the window all the way to the base of the glass.\", \"  The man continues to wash all four glass panes one by one using squiggly motions before leaving the window and walking away from the store.\"]}, \"v_84g4J1rxkQc\": {\"duration\": 174.59, \"timestamps\": [[0, 55], [73.33, 174.59]], \"sentences\": [\"A man is in the woods, balancing on a tight rope.\", \" He walks back and forth on the rope, then jumps.\"]}, \"v_MFfJ4V9Dqvg\": {\"duration\": 83.41, \"timestamps\": [[0, 28.36], [12.93, 16.26], [14.6, 16.68], [29.19, 36.7], [39.62, 45.87], [70.06, 82.57]], \"sentences\": [\"A little girl is playing in the sand.\", \"  The girl grabs a shovel.\", \"  A person walks in front of the camera.\", \"  The camera pans to the water.\", \"  The girl walks to the water.\", \"  The girl walks into the water.\"]}, \"v_0FTaJwbFdZI\": {\"duration\": 203.66, \"timestamps\": [[8.15, 203.66], [31.57, 60.08], [50.92, 107.94], [89.61, 172.1], [89.61, 197.55]], \"sentences\": [\"A woman is doing a dance routine on a stage.\", \" She twirls and kicks her legs around.\", \" She moves all around the stages and bends her body in numerous ways.\", \" She continues shaking her body for the audience to see.\", \" She shakes her hips back and fourth while moving her arms in various ways.\"]}, \"v_Z4KErmUO3gw\": {\"duration\": 202.06, \"timestamps\": [[0, 3.03], [3.03, 18.19], [19.2, 166.7], [166.7, 177.81], [178.82, 182.87], [178.82, 186.91], [188.93, 192.97], [193.98, 202.06]], \"sentences\": [\"We see an opening title screen.\", \" We see two ladies dancing in a field.\", \" We switch to ladies dancing around a bull in a rind.\", \" We see the ladies stand next to each other.\", \" We see the ladies on their knees in the field.\", \" We see three ladies on the field.\", \" We see two ladies dancing.\", \" We see the closing screens.\"]}, \"v_K-pwTH9ubkE\": {\"duration\": 150.37, \"timestamps\": [[0, 48.87], [42.86, 109.02], [106.76, 144.36]], \"sentences\": [\"A persons hands are seen playing a piano that pans away from the person playing.\", \" People are seen smiling and waving to the camera while the man continues to play the piano.\", \" The camera captures him from all over playing the piano as well as singing to the camera.\"]}, \"v_tg6HOGy0BBQ\": {\"duration\": 200.2, \"timestamps\": [[0, 200.2], [22.02, 174.18], [191.19, 200.2]], \"sentences\": [\"A man sits down with his leg on a chair.\", \" A person puts waxing strips on his leg and pulls off the hair.\", \" He puts his shirt over his face.\"]}, \"v_bay60VGnTls\": {\"duration\": 101.22, \"timestamps\": [[0, 14.17], [15.69, 51.11], [51.11, 54.66], [55.67, 66.8], [71.36, 92.11], [71.36, 101.22]], \"sentences\": [\"A woman in a tan suit is talking.\", \" A man in a green shirt is playing tennis while sitting on the ground.\", \" People walk along a sidewalk.\", \" The man in the green shirt is talking into a microphone.\", \" A man in a purple shirt then talks into the microphone.\", \" The man in green shirt continues to play tennis.\"]}, \"v_ubR7XPBJQH8\": {\"duration\": 209.14, \"timestamps\": [[0, 49.15], [47.06, 159.99], [149.54, 201.82]], \"sentences\": [\"Two men are seen performing martial arts moves against one another and leads into a man speaking.\", \" The man then demonstrates several martial arts moves with another man while still speaking to the camera.\", \" The man continues these motions while stopping to demonstrate how it's properly done.\"]}, \"v_KKEyKFmatq0\": {\"duration\": 135.88, \"timestamps\": [[0, 135.88], [39.41, 45.52], [126.37, 127.73]], \"sentences\": [\"People are playing a game of soccer in an indoor arena.\", \" A man picks up the ball and throws it someone else.\", \" People fall onto the arena floor.\"]}, \"v_KujAY-AST9M\": {\"duration\": 231.55, \"timestamps\": [[0, 8.1], [9.26, 231.55], [149.35, 150.51], [153.98, 159.77]], \"sentences\": [\"Guys stand around in an indoor court.\", \" Two guys play relay soccer, an athlete touches the hands of his opponent and a goalie before he kicks a served ball.\", \" A player kicks the ball towards the goalie from center court.\", \" The guys pause for a short while.\"]}, \"v_3X2CY79a0X8\": {\"duration\": 82.13, \"timestamps\": [[0, 82.13], [17.25, 29.57], [56.26, 63.24]], \"sentences\": [\"A man pushes a lawnmower cutting down a high patch of weeds in a yard.\", \" The man turns over the lawnmower on its side then clears out tangled grass.\", \" The man backs up and swings the lawnmower around in a circle and turns the lawnmower in the opposite direction.\"]}, \"v_9g1omTdpoYs\": {\"duration\": 125.02, \"timestamps\": [[0, 13.13], [19.38, 52.51], [50.63, 87.51], [85.64, 125.02]], \"sentences\": [\"Various cupcakes are shown sitting on a plate and lettering comes up stating how to make them.\", \" Several ingredients are shown and the person mixing the ingredients together in a bowl.\", \" The person blends all the ingredients and puts them in a pan to cook.\", \" The cupcakes are finally cooked and set out on a plate to enjoy.\"]}, \"v_s6pFNNnub80\": {\"duration\": 210.47, \"timestamps\": [[0, 56.83], [48.41, 164.16], [129.44, 207.31]], \"sentences\": [\"Several pictures are shown of nails close up and leads into a person painting text onto a nail.\", \" The person shows close ups of nail polish and continues painting on the nail.\", \" The woman finishes her design and shows off another picture of nails.\"]}, \"v_2bEr09bbqAA\": {\"duration\": 102.05, \"timestamps\": [[0, 67.35], [42.86, 63.78], [68.89, 100.01]], \"sentences\": [\"A man sits in a kayak and holds his oar in a river showing how to use it properly.\", \" The man leans back in his kayak to show balance techniques.\", \" The kayak rider paddles into the white wash below a water fall and flips over then rights himself again.\"]}, \"v_yyUmEgvq3B0\": {\"duration\": 83.3, \"timestamps\": [[0, 27.91], [27.91, 61.23], [60.81, 83.3]], \"sentences\": [\"A man is seen walking with a chair and puts it in the middle of a bowling lane.\", \" He high fives the audience and throws the ball over the chair and hits all the pins.\", \" He same shot is shown several times and he sits down in his chair laughing.\"]}, \"v_wSGrM1nrWq4\": {\"duration\": 144.94, \"timestamps\": [[0, 22.47], [23.91, 74.64], [74.64, 107.25], [109.43, 144.94]], \"sentences\": [\"A hair dryer and advertisement are shown with some info about the dryer.\", \" A woman shows how to use the dryer with different brushes.\", \" The same woman then shows how to use the dryer with different attachments for different kinds of hair.\", \" The dryer and advertising info are shown again.\"]}, \"v_6V6XB0KmYkk\": {\"duration\": 155.97, \"timestamps\": [[1.56, 44.45], [46.79, 125.56], [112.3, 155.19]], \"sentences\": [\"A large group of people are seen playing hockey around an arena performing various tricks with the puck.\", \" The men continue to hit the puck around one another as the camera captures them from several sides.\", \" The man push the puck around more over and under obstacles.\"]}, \"v_fm6UhMKF8DU\": {\"duration\": 62.28, \"timestamps\": [[2.18, 27.09], [30.52, 60.1]], \"sentences\": [\"Several shots of a bridge are shown as well as a sign and people standing on the ledge.\", \" Two men then bungee jump off the side of the bridge and are shown swinging up using their legs.\"]}, \"v_2i_rotAjuoE\": {\"duration\": 195.14, \"timestamps\": [[0, 0.98], [0.98, 195.14], [0.98, 19.51]], \"sentences\": [\"First there is a screen shown for a small amount of time letting viewers know what this video is about.\", \" Then there is a man riding different horses in different settings where people watch them.\", \" In the first one,  the horse runs with him on his back and he tries to jump over a wooden obstacle, but fails and there are many more fails.\"]}, \"v_4wiLmu1yTZI\": {\"duration\": 125.97, \"timestamps\": [[0, 34.64], [47.87, 89.44], [88.81, 125.97]], \"sentences\": [\"A man with curly hair  is seen speaking to the camera with a serious conviction.\", \" He then brushes through his hair with a dog in frame and shows off his poofy hair.\", \" He then is seen again with wet hair and closes his eyes to the camera.\"]}, \"v_-4Q_zG9EChY\": {\"duration\": 166.12, \"timestamps\": [[0, 36.55], [22.43, 120.43], [110.47, 163.62]], \"sentences\": [\"A man is seen standing on a rope and begins walking across the rope.\", \" The man continues walking while the camera captures his movements.\", \" He walks all along the rope to the end and jumps off.\"]}, \"v_hhHiBeL08-M\": {\"duration\": 39.73, \"timestamps\": [[0, 9.34], [11.32, 27.61], [26.82, 38.34]], \"sentences\": [\"A close up of a porch is shown with the camera panning all around.\", \" The camera walks to the end of the porch.\", \" The camera turns around while still looking at the porch.\"]}, \"v_ZbFyGkfGFcE\": {\"duration\": 15.12, \"timestamps\": [[0, 15.12], [6.2, 15.12], [11.19, 12.02]], \"sentences\": [\"Children are playing on the beach.\", \" They are building a sand castle.\", \" A girl dumps a bucket full of sand in front of her.\"]}, \"v_wIthr5w6RV4\": {\"duration\": 76.05, \"timestamps\": [[4.18, 8.75], [9.51, 35.36], [35.36, 40.3]], \"sentences\": [\"A man in a hat is talking to a camera.\", \" He is dressed up in a sumo wrestling outfit and playing curling.\", \" He is playing tennis on a tennis court.\"]}, \"v_uaqcvxz_5fY\": {\"duration\": 135.68, \"timestamps\": [[0, 18.32], [20.35, 62.41], [62.41, 124.82], [127.53, 135.68]], \"sentences\": [\"A city view is seen from a skyscraper.\", \" Two men are shown cleaning windows on the side of the building.\", \" They squeegee and wipe down the glass professionally.\", \" They then check their work before finishing.\"]}, \"v_ZGSi-QAkf5A\": {\"duration\": 123.35, \"timestamps\": [[3.7, 13.57], [13.57, 34.54], [34.54, 62.91], [62.91, 111.63], [111.63, 122.11]], \"sentences\": [\"There some geese flying in the sky above a park.\", \" A man is talking in his microphone as some men are playing cricket behind him in the park.\", \" It is a sunny day with geese walking around the park and people enjoying a casual game of cricket.\", \" There's a man hitting the ball with his cricket bat and another person trying to catch his ball.\", \" A squirrel is sitting on the park bench and enjoying the sunshine as well.\"]}, \"v_CB0yYGVNcOk\": {\"duration\": 143.27, \"timestamps\": [[2.87, 31.52], [32.24, 104.59], [101.72, 141.12]], \"sentences\": [\"A man is seen playing a saxophone into the camera and leads into him speaking.\", \" More shots are shown of him playing the instrument while pausing to play more.\", \" He continues playing along and ends by smiling to the camera.\"]}, \"v_fkUnZB6NTT8\": {\"duration\": 159.36, \"timestamps\": [[0, 47.81], [55.78, 127.49], [128.28, 159.36]], \"sentences\": [\"Several people are shown in photos, gathered together in winter gear in the snow.\", \" They ride in intertubes down a hill together, laughing and talking with each other.\", \" They are then shown in after even celebratory photos, posing together.\"]}, \"v_s3HhNlysFDs\": {\"duration\": 187.72, \"timestamps\": [[0, 22.53], [27.22, 93.86], [96.68, 187.72]], \"sentences\": [\"A cross appears in the style of the tile under the water in a pool.\", \" A man in a swim cap swims through the water toward the camera.\", \" He is shown swimming from numerous angles.\"]}, \"v_o4_Vi7asvxg\": {\"duration\": 88.56, \"timestamps\": [[0, 3.54], [3.54, 8.86], [8.86, 13.73], [14.17, 28.34], [28.78, 42.51], [42.07, 88.56]], \"sentences\": [\"Two people are dressed in all black riding their bicycles down the road.\", \"The two boys are then pictured on a split screen against each other putting on their helmets.\", \"The two then put on their green biking gloves and get back on the bikes.\", \"A skate park is then shown and one of the boys begin doing tricks over the bumps.\", \"Once completed,the bikes are walked over and the boys begin to shake each others hand.\", \"After the tricks continue and they keep jumping and doing tricks over the hills.\"]}, \"v_Xr8zB1aIBzg\": {\"duration\": 159.2, \"timestamps\": [[0, 5.57], [6.37, 144.87], [145.67, 159.2]], \"sentences\": [\"People wait in an indoor gym as the instructor walks out.\", \" The class starts a stepercize class using black boxes.\", \" The class finishes by waving their arms and the instructor walks away.\"]}, \"v_ZA_XYgP4fMA\": {\"duration\": 70.47, \"timestamps\": [[0, 43.69], [43.34, 70.47]], \"sentences\": [\"Two men are seen arm wrestling with one another while holding their arms down to the sides.\", \" They keep starting again until one of them eventually wins.\"]}, \"v_y3Wfx-RvTpk\": {\"duration\": 82.08, \"timestamps\": [[0, 5.75], [6.57, 18.88], [19.29, 73.46], [74.29, 82.08]], \"sentences\": [\"A man is standing under a basketball goal.\", \" A group of boys is listening to the coach.\", \" They begin warming up by doing lay ups.\", \"The boys line up, prepared to play the game.\"]}, \"v_r3dM-5cZ7e8\": {\"duration\": 67.27, \"timestamps\": [[0, 9.75], [8.07, 18.84], [19.17, 67.27]], \"sentences\": [\"A group of swimmers stand ready on a platform and bend down to their feet.\", \" Several men stand behind them when they all jump in at the same time.\", \" The men race back and fourth doing a butterfly movement back and fourth until they all reach the end.\"]}, \"v_OVpila9fAaQ\": {\"duration\": 230.06, \"timestamps\": [[0, 230.06], [1.15, 230.06], [207.06, 230.06]], \"sentences\": [\"people are in a lake wakeboarding being pulled by a boat.\", \" a lot of people are standing on a dock watching the wakeboarding competition.\", \" people are walking on the dock wearing winter clothes.\"]}, \"v_COx5Bf0PsQs\": {\"duration\": 71.89, \"timestamps\": [[5.03, 14.74], [15.1, 22.65], [23, 30.91], [31.63, 34.87], [35.59, 47.45], [47.81, 51.76], [52.12, 58.59], [59.31, 64.7]], \"sentences\": [\"A platter with lemonade drinks sits on a counter top.\", \" A woman squeezes a lemon.\", \" She adds sugar to a large pitcher.\", \" She stirs the sugar with a large wooden spoon.\", \" She proceeds to add water to the pitcher in order to dilute.\", \" Afterwards, she adds more sugar to the pitcher.\", \" She pours the finished lemonade into a cup.\", \" The steps of making lemonade are presented once more.\"]}, \"v_LOINRpWGrlw\": {\"duration\": 146.47, \"timestamps\": [[0, 21.97], [21.24, 46.14], [46.14, 85.69], [85.69, 146.47]], \"sentences\": [\"Someone is at the bowling alley on a lane with a red ball.\", \" He throws the ball, his foot goes up and the ball rolls to hit the pins.\", \" Multiple people take their turns doing the same stance and everything more or less.\", \" You never see the balls hit the pins just everyone throwing the ball.\"]}, \"v_W07hi9Y37Jg\": {\"duration\": 201.01, \"timestamps\": [[4.02, 167.84], [4.02, 40.2], [40.2, 170.85]], \"sentences\": [\"A man plays the accordion on a stage in front of a music stand while wearing a red suit jacket.\", \"  A man sits on a chair on a stage and plays the accordion in front of a music stands.\", \"  The man runs his fingers up and down the keys and pulls the accordion open and closed with a free hands before ending the performance and rubbing his hair with his hand.\"]}, \"v_nYlAXMmPWw0\": {\"duration\": 177.93, \"timestamps\": [[0, 177.93], [62.27, 72.06], [80.07, 177.93]], \"sentences\": [\"Five women are in a room dancing.\", \" They dance around in a circle.\", \" They continue dancing together in the room.\"]}, \"v_-ntEh6HpeX0\": {\"duration\": 231.12, \"timestamps\": [[0, 33.51], [43.91, 144.45], [153.7, 231.12]], \"sentences\": [\"A woman wearing gloves is in front of a sink.\", \" She sprays it down with a cleaning solution.\", \" She then scrubs the sink until it is clean.\"]}, \"v_ct3uprBbPHw\": {\"duration\": 158.62, \"timestamps\": [[3.17, 21.41], [38.86, 68.2], [88.03, 141.96]], \"sentences\": [\"A man stands in front of the camera, then starts combing his hair forward.\", \" He then focuses on the sides and back of his hair, again combing down.\", \" He brings the brush all around his hair, adding his left hand to swipe along.\"]}, \"v_NSegylr0MBg\": {\"duration\": 145.94, \"timestamps\": [[0, 9.49], [10.95, 13.13], [12.4, 57.65], [17.51, 22.62], [29.19, 32.11], [49.62, 72.24], [64.94, 67.13], [72.97, 112.37], [113.1, 121.86], [134.99, 145.94]], \"sentences\": [\"We see a man adjust the camera and shake his hair.\", \" We see commentary on the screen.\", \" The image is in color and the man blow drys his hair.\", \" The man uses a brush and instructions appear.\", \" We see more instructions on the screen.\", \" Instruction tell views to mold hair.\", \" More instructions appear on the screen.\", \" The man adds pomades  to his hair.\", \" The man brushes his hair with a brush.\", \" We see the scene go dark and the writing appears on the screen.\"]}, \"v_L-rPS8tlAy4\": {\"duration\": 108.32, \"timestamps\": [[0, 15.17], [20.58, 48.74], [50.37, 63.37], [64.45, 77.45], [82.87, 90.99], [91.53, 108.32]], \"sentences\": [\"A horse runs wild with a trainer chasing after it.\", \" A horse runs after and bucks a bull that charges it with its horns.\", \" The horse is let out of the coral by the cowboys.\", \" The horses intestines hang from its body from the injury.\", \" The horse lies on the ground having a seizure.\", \" A bull chases after a cowboy on a horse carrying a lasso.\"]}, \"v_dm5WXFiQZUQ\": {\"duration\": 159.89, \"timestamps\": [[0, 6.4], [6.4, 16.79], [16.79, 53.56], [53.56, 151.1], [151.1, 159.89]], \"sentences\": [\"A motorcyclist is in the bed and is woken up by an alarm clock.\", \" The motorcyclist gets out of bed and prepares to leave by bathing using the bathroom and reading the newspaper.\", \" He rides the motorcycle down the hall and into the elevator.\", \"He exits the building and rides the motorcycle into a casino where he performs several tricks as people watch.\", \" He exits the casino and the closing credits show up on the screen.\"]}, \"v_k7nuduqYOdQ\": {\"duration\": 195.63, \"timestamps\": [[0.98, 3.91], [9.78, 180.96], [182.91, 195.63]], \"sentences\": [\"A close up of a weight is shown.\", \" Several individuals are shown lifting barbells with weights in various ways in a gym while other individuals watch or exercise in the background.\", \" A screen with a logo and contact information is shown.\"]}, \"v_HxenZkvSkPc\": {\"duration\": 228.51, \"timestamps\": [[0, 45.7], [45.7, 50.27], [51.41, 71.98], [65.12, 71.98], [75.41, 94.83], [87.98, 145.1], [155.39, 209.08], [225.08, 228.51]], \"sentences\": [\"We see a lady walking a dog.\", \" We see a man walking the dog.\", \" We return to the lady walking the dog.\", \" The dog pulls the lady down the street.\", \" We see the lady and the man talking.\", \" The man walks the dog up the stairs and in the driveway.\", \" We see the lady put a harness son the dog and walk him as the man watches.\", \" We then see the black closing screen.\"]}, \"v_2b_hjshny54\": {\"duration\": 165.56, \"timestamps\": [[0, 3.31], [4.14, 18.21], [19.04, 165.56]], \"sentences\": [\"Female swimmer jump off into the water at a swim meet.\", \"  They quickly race down the swim lanes.\", \" The swimmers repeatedly go back and forth down the swim lanes using various swimming techniques.\"]}, \"v_RuBLAghI1vE\": {\"duration\": 132.26, \"timestamps\": [[0, 132.26], [1.98, 17.19], [11.9, 56.87], [44.97, 72.08], [68.78, 83.99], [82.66, 132.26]], \"sentences\": [\"There are some people curling in an indoor ice rink.\", \" There are some girls getting ready with the curling sticks and prepping the rink to play curling.\", \" Two girls dressed in black gear are playing the game as they go through the rink with their curling sticks pushing the rock.\", \" One of the players glides through the floor and pushes the rock to the end of the rink.\", \" The two players continue playing as they go through the rink and slide the rocks till the end of the line.\", \" Two other players wearing pink play the game as they slide the rocks through the rink.\"]}, \"v_1FMjfLRpXwM\": {\"duration\": 142.04, \"timestamps\": [[10.65, 19.89], [19.89, 27.7], [27.7, 33.38], [33.38, 46.87], [46.87, 55.39], [55.39, 68.18], [68.18, 78.83], [78.83, 105.11], [105.11, 106.53]], \"sentences\": [\"The lady in black is doing a hairstyle tutorial and demonstrating on another woman who is seated next to her.\", \" She shows the hairspray that she has used on the model.\", \" She uses the hairspray on the model's hair and sprays it.\", \" She then takes a pair of scissors and cuts the rubber band off and spray her hair again.\", \" She pulls her braid apart and rubs her fingers over it.\", \" She then twists the braid and pins it up on the model's head.\", \" She twists it again and tightens it up and secures it with a pin again.\", \" She also makes a bun out of the braid to complete the hairstyle.\", \" She shows the hairspray bottle again that she has used on the model.\"]}, \"v_jCw0kBph-v4\": {\"duration\": 187.36, \"timestamps\": [[0, 44.03], [52.46, 144.27], [148.02, 187.36]], \"sentences\": [\"A man and woman are standing in a starkly white room.\", \" They lay plastic on the ground and fill a tub with white paint.\", \" They then demonstrate how to hang a strip of wallpaper onto the wall.\"]}, \"v_6azNzt8rXAs\": {\"duration\": 202.92000000000002, \"timestamps\": [[0, 100.45], [68.99, 182.63]], \"sentences\": [\"A man is seen practicing his ping pong abilities followed by him playing the game against another person.\", \" A man watches on the side as the men continue to play with more people stopping to watch.\"]}, \"v_hKLDr9ZaDb8\": {\"duration\": 148.52, \"timestamps\": [[2.97, 135.89], [3.71, 135.89], [135.89, 148.52]], \"sentences\": [\"A woman in a bikini is standing in a room.\", \" She begins to hula hoop with a lit up hula hoop.\", \" The hula hoop is seen sitting next to a shirt.\"]}, \"v_O67GDqPk_ug\": {\"duration\": 204.35, \"timestamps\": [[0, 89.91], [34.74, 204.35]], \"sentences\": [\"A person walks into frame holding a tool and cutting a tree up and down.\", \" The person continues using the tool on the tree and uses a small one to finish out the sides, presenting a small tree in the end.\"]}, \"v_fKbrGn6c3us\": {\"duration\": 78.03999999999999, \"timestamps\": [[0, 19.9], [20.68, 39.8], [40.19, 66.73], [67.12, 78.04]], \"sentences\": [\"A woman is standing in front of an ironing board while talking.\", \" She shows off a white shirt, which she sprays with something in a can.\", \" She arranges the shirt on the ironing board, then begins to iron the shirt.\", \" After she irons the shirt, the screen goes to an advertisement for Expert Village.\"]}, \"v_I8doQJXPqwo\": {\"duration\": 63.07, \"timestamps\": [[0, 63.07], [7.57, 60.54], [15.45, 28.7], [25.54, 50.14], [50.45, 62.12]], \"sentences\": [\"Two women are at the carwash.\", \" A car is covered in soap suds.\", \" The women begin to use a water hose to clean off the soap.\", \" They work the hose and brush all over the car.\", \" They finish hosing it off.\"]}, \"v_dj_GBrR5N4E\": {\"duration\": 85.15, \"timestamps\": [[0, 8.51], [0, 66.42], [8.51, 18.31], [17.88, 22.56], [0, 65.99], [18.31, 60.03], [60.88, 65.56], [65.99, 66.42]], \"sentences\": [\"A young man prepares to complete a routine on the parallel bars.\", \" Many people are in bleachers in the background walking around, sitting and watching.\", \" The young man uses a spring board to mount the bars.\", \" A man standing nearby pulls the spring board out of the way.\", \" Several judges sit at a table in front of the bleachers watching.\", \" The young man completes his parallel bar routine.\", \" The young man then dismounts, lands and bows.\", \" He walks away as another man in the same uniform approaches.\"]}, \"v_Lg6QZST92xo\": {\"duration\": 52.32, \"timestamps\": [[0, 15.43], [15.69, 37.93], [30.08, 49.96]], \"sentences\": [\"A close up of a log is seen and a person swinging an ax up and down.\", \" The person swings the ax against the dog and cuts it in half.\", \" The person performs this several more times.\"]}, \"v_tydn-vo3DaY\": {\"duration\": 221.4, \"timestamps\": [[0, 54.24], [53.14, 156.09], [154.98, 221.4]], \"sentences\": [\"Various people are seen doing sit ups with other's help and transitions into several shots of people performing grueling tasks.\", \" One man climbs a wall and does push ups while another is interviewed by the camera and several people climb a wall.\", \" More shots of the people exercising are shown as well as climbing rock walls and several push ups.\"]}, \"v_C6OmnTWhsEc\": {\"duration\": 56.68, \"timestamps\": [[0, 1.7], [2.55, 5.1], [5.38, 52.71], [53, 56.68]], \"sentences\": [\"A man wearing a white shirt and frog pattern headgear touches his nipples while holding a recorder.\", \" The man brings the recorder to his right nostril.\", \" The man begins to play the recorder.\", \" The scene cuts to the man, having finished playing, bowing while touching his nipples.\"]}, \"v_C8hdbmjUMRc\": {\"duration\": 154.74, \"timestamps\": [[0, 10.83], [10.83, 51.84], [51.84, 154.74]], \"sentences\": [\"man is standing in a room mixing cement on a bucket.\", \" the man grabs the mix and spread it in the floor and put white tiles.\", \" the  man sweeps the floor and spread cement again to put the tiles in the remaining part of the room.\"]}, \"v_OhpILjGpQTs\": {\"duration\": 81.64, \"timestamps\": [[0, 5.31], [5.31, 76.74], [5.31, 28.57], [42.05, 61.23], [70.21, 75.11], [75.11, 81.64]], \"sentences\": [\"We see the title card fade out.\", \" We see two kids on a camel at a carnival.\", \" The man leads the camel out of the pen as he smokes a cigarette.\", \" They pass the petting zoo.\", \" We see the mom taking pictures of the kids.\", \" The ending card is shown.\"]}, \"v_5CtecK635eI\": {\"duration\": 214.07, \"timestamps\": [[5.35, 214.07], [153.06, 172.32], [178.74, 195.87], [190.52, 207.64]], \"sentences\": [\"There is one man who's in the room with two other men and he lifts up a weigh that weighs over 400 pounds.\", \" Next he lifts up a weight that is heavier than the last one.\", \" He gets, a handshake and a hug from an elderly man.\", \" Then someone gives him money and someone else who's sitting in a chair gives him a highfive.\"]}, \"v_F4ERtlGMFt4\": {\"duration\": 61.95, \"timestamps\": [[0, 3.72], [13.32, 61.95], [58.85, 61.95]], \"sentences\": [\"A person is riding a bull in an arena.\", \" People are standing in an arena around a bull.\", \"  A bull charges them and knocks them to the ground.\"]}, \"v_RO5WKh6dViA\": {\"duration\": 75.93, \"timestamps\": [[0, 74.79], [35.69, 49.35], [35.69, 50.87], [65.3, 75.17]], \"sentences\": [\"A group of children play on playground equipment watched by parents.\", \" A child swings across the monkey bars.\", \" The child gets to the other side bows and runs back to the monkey bars jumping and laughing.\", \" The child jumps around happily and falls down but get right back up.\"]}, \"v_8874vqLm958\": {\"duration\": 178.91, \"timestamps\": [[0, 12.52], [17, 110.92], [114.5, 178.91]], \"sentences\": [\"A woman is seen on an elliptical trainer in an ad.\", \" Then we see the various components and options for using the machine.\", \" A woman scrolls through a digital screen, then is seen riding the elliptical.\"]}, \"v_TSVdiNxLu50\": {\"duration\": 219.78, \"timestamps\": [[8.79, 72.53], [74.72, 204.39]], \"sentences\": [\"Several shots are shown of people walking on a beach and leads into many people surfing on the water.\", \" Dozens of people are shown in various clips riding along waves in the water as well as people sitting in the water from behind.\"]}, \"v_FrVitupq7sQ\": {\"duration\": 165.12, \"timestamps\": [[3.3, 31.37], [30.55, 94.94], [94.94, 165.12]], \"sentences\": [\"Two men are seen standing on a tennis court holding rackets and speaking to the camera.\", \" Several slow motion scenes are shown performing a correct tennis serve with the men demonstrating right after.\", \" The men do this for several turns with one slow motion of a man performing the trick done afterwards.\"]}, \"v_2FjaU9wfxaU\": {\"duration\": 161.57, \"timestamps\": [[0, 84.82], [50.09, 157.53]], \"sentences\": [\"A woman is seen hosting a news segment with a man and leads into a person bring out a dog and petting the dog.\", \" The man then demonstrates how to properly groom the dog while the host continues to speak and pet the dog.\"]}, \"v_HVmZOfkh8Pk\": {\"duration\": 56.29, \"timestamps\": [[0.28, 28.71], [28.99, 37.71], [37.71, 54.88]], \"sentences\": [\"A boy talks in a field, then he plays with a person using a stick to hit a ball.\", \" The boy throws the ball to the other boy and score.\", \" The boys talk in the field.\"]}, \"v_M1hPI8WvySo\": {\"duration\": 223.32999999999998, \"timestamps\": [[0, 29.03], [29.03, 99.38], [99.38, 148.51], [150.75, 223.33]], \"sentences\": [\"A tutorial on how to wrap a gift, first you put doe enough wrapping paper and place the gift on top of it to make sure it is a decent size.\", \" Then, You fold one of the corners of the wrapping paper into triangles and press it out repeatedly.\", \" You would then cut the edges and tape doen the outside of the wrapping so it sticks down.\", \" Finally, You put the gift inside of the paper and fold the paper around it nicely and tape it down and you have a pretty wrapped present.\"]}, \"v_rlH9RkelqHk\": {\"duration\": 18.02, \"timestamps\": [[0, 8.65], [8.74, 18.02]], \"sentences\": [\"A person's feet are show followed by a woman putting shoes over her socks and bending forward.\", \" She twirls around her feet and looking to the camera while showing her shoe completely on.\"]}, \"v_7LhgGs4TrYA\": {\"duration\": 126.55, \"timestamps\": [[0, 19.62], [20.88, 69.6], [74.03, 126.55]], \"sentences\": [\"a man is seated, talking to the camera.\", \" He is wearing a suit and tie with a colorful background.\", \" He continues talking, using his hands as he goes.\"]}, \"v_ABMVo0NDhKo\": {\"duration\": 32.53, \"timestamps\": [[0, 32.53], [18.54, 29.6], [32.04, 32.53]], \"sentences\": [\"A guy is standing on a beach flying a kite.\", \" The guy continuously looks away from the kite's position.\", \" A man approaches the guy.\"]}, \"v__Yt94ffXcCE\": {\"duration\": 80.6, \"timestamps\": [[0, 77.37], [1.21, 28.61], [29.82, 53.6], [53.6, 75.76]], \"sentences\": [\"A boy welds a piece of metal in an indoor shop while wearing a protective coat, helmet, goggles and gloves.\", \"  A boy in a shop talks to the camera while standing in front of a piece of metal and handling welding tools in preparation to weld.\", \"  The boy begins to weld creating extreme sparks of fire like reactions in front of him over the material being welded.\", \"  The boy shows a close up of the red hot tip of the tool, finishes welding, and pans the camera to another young boy dressed in the same protective welding gear behind him.\"]}, \"v__AuJBnTClQ8\": {\"duration\": 143.66, \"timestamps\": [[0, 44.54], [41.66, 106.31], [99.85, 140.07]], \"sentences\": [\"Several close ups are shown of a razor that leads into a man shaving another's face.\", \" The man shows his face again with the shaver putting cream on and beginning to shave.\", \" The man uses various tools on the other to shave as well as speaks to the camera.\"]}, \"v_iCveBOc8JzM\": {\"duration\": 11.19, \"timestamps\": [[0.06, 2.29], [2.29, 11.08]], \"sentences\": [\"A young lady shows a a beauty cream bottle.\", \" Then, the young girl puts cream on hrs finger and rubs her shoulder.\"]}, \"v_v0NEZPgjcXI\": {\"duration\": 27.08, \"timestamps\": [[0, 5.69], [7.17, 25.04]], \"sentences\": [\"A video game for WWE professional wrestling starts, showing a three on one match.\", \" The player controlling Roman Reigns hits a big move on his opponent, and his team comes in for a big coordinated attack.\"]}, \"v_S9KUHyvFuGc\": {\"duration\": 33.23, \"timestamps\": [[0, 33.23], [1.83, 33.23]], \"sentences\": [\"man is riding a horse inside a barn and with a rope catch a bull.\", \" man is standing on side of te barn.\"]}, \"v_33SI8z8PovA\": {\"duration\": 227.51, \"timestamps\": [[0, 85.32], [84.18, 154.71], [153.57, 227.51]], \"sentences\": [\"A black female is shown in a room with a black scarf around her head.\", \"Black spots on her faced are then zoomed in on and she begins to apply something on it.\", \"Next,she takes some spray and it makes her skin extremely oily and she continues to talk until the video is over.\"]}, \"v_N1c3C_Npr-E\": {\"duration\": 65.81, \"timestamps\": [[0, 9.87], [9.87, 31.59], [31.92, 49.68], [49.68, 65.81]], \"sentences\": [\"A police officer is riding a horse down the street very slowly.\", \" Many bystanders are walking by, cars are passing and casually moving along.\", \" its just a normal day riding down the street protecting serving, making sure no crimes are being committed.\", \" He rides with one of his hands on his gun and the other steering the horse.\"]}, \"v_eNq-jGrQuV0\": {\"duration\": 171.53, \"timestamps\": [[0, 44.6], [44.6, 116.64], [115.78, 171.53]], \"sentences\": [\"A small young boy is outside running across a green field,he then reappears wearing a green helmet and a stick in his hand that is shaped like a paddle.\", \"The boy then gathers with the rest of his team,they stand in a line, and begins scrimmaging against one another.\", \"As the game continues,the kids run back and forth across the field and the coaches trail behind them.\"]}, \"v_l_36uVP3LnI\": {\"duration\": 96.22, \"timestamps\": [[0, 11.55], [14.43, 24.06], [26.46, 76.5], [79.87, 96.22]], \"sentences\": [\"A screen says triple jump on it.\", \" A man is standing in a field before running and jumping into a square of dirt.\", \" He walks away from the jump and talks to the camera.\", \" It is shown again in slow motion.\"]}, \"v_-ux1hQSR1AM\": {\"duration\": 53.64, \"timestamps\": [[0, 8.31], [8.31, 49.35], [49.35, 53.64]], \"sentences\": [\"An athletic man dressed in blue approaches the gymnastic horse and stands there and stares at it for a few seconds.\", \" The man then approaches it and puts his two hands on it and begins doing various moves on it where he twists, turns and maneuvers his body very skillfully all around the gymnastic horse.\", \" The the man finishes the end of his routine and jumps off of the gymnastic horse landing on his two feet, holds his two arms up in the air, claps his hands once and then takes a bow.\"]}, \"v_x7M1yRFtnxY\": {\"duration\": 184.04, \"timestamps\": [[0, 183.12], [82.82, 97.54], [163.8, 167.48]], \"sentences\": [\"People are running around obstacles playing a game of paintball.\", \" A boy looks around a corner and gets down on the ground.\", \" An American flag is shown on the screen.\"]}, \"v_vF-XFROSmv4\": {\"duration\": 117.19, \"timestamps\": [[10.55, 32.23], [32.23, 67.39], [67.39, 83.79], [83.79, 107.23], [107.23, 111.33]], \"sentences\": [\"There's a man wearing a white colored vest and blue hard hat rowing in a yellow row boat with double sided oar.\", \" He is demonstrating the correct way to row the boat while staying afloat.\", \" He is in a water body that has some strong waves.\", \" He is showing how to do the strokes with the oars to go against the water current.\", \" He goes in circles as he demonstrates how to row against powerful waves.\"]}, \"v_7ezC4N3ArmQ\": {\"duration\": 111.71000000000001, \"timestamps\": [[0, 109.48], [1.12, 106.13], [79.87, 106.13]], \"sentences\": [\"men are at sides of table playing beerpong.\", \" a man is sitting in a chair next to the table watching the men while are playing.\", \" the men are Accommodating the cups on the table.\"]}, \"v_7Iy7Cjv2SAE\": {\"duration\": 195.47, \"timestamps\": [[0, 62.55], [58.64, 187.65]], \"sentences\": [\"An intro leads into a woman using a brush to push hair off a large dog.\", \" She continues brushing on several other dogs and giving them pets before sitting down and petting them.\"]}, \"v_6ZUHLsyJ6yo\": {\"duration\": 112.96000000000001, \"timestamps\": [[0, 10.73], [11.86, 75.12], [76.24, 112.96]], \"sentences\": [\"A line of drummers play inside a superdome.\", \" Several bass drummers appear wearing jerseys.\", \" They all play a beat as people with cameras walk between them.\"]}, \"v__gnMuU1UJnM\": {\"duration\": 214.22, \"timestamps\": [[0, 5.36], [5.36, 16.07], [16.07, 25.71], [25.71, 205.65], [205.66, 214.23]], \"sentences\": [\"A black screen appears with white words that read \\\"SPORT BEZ BARIER CURLING NA WOZKACH\\\".\", \" An ice cleaner is now riding on an ice rink, and then people on wheelchairs start wheeling onto the rink.\", \" A woman on a wheelchair begins speaking and the words on the screen say her name is \\\"Agnieszka Kachel\\\".\", \" The rink is shown again and it shows gray objects with colorful tops are being pushed on the ice with sticks that the people in wheelchairs are holding and it switches back and forth to the woman talking alone and to the people on the ice playing.\", \"A white outro screen appears with black letters that include a list of names, websites and logos.\"]}, \"v_dXLhYjRSNcs\": {\"duration\": 49.55, \"timestamps\": [[0, 19.82], [18.83, 49.55]], \"sentences\": [\"A gymnast is seen climbing onto a set of uneven bars and performing a routine while many watch on the side.\", \" He performs various flips and tricks and ends by jumping down and putting his arms up.\"]}, \"v_w_PJ9N8CMo8\": {\"duration\": 45.09, \"timestamps\": [[0, 45.09], [2.71, 8.12], [9.24, 30.21], [33.82, 45.09]], \"sentences\": [\"A man washes his face in front of a mirror.\", \" He laughs at the camera.\", \" He rubs his face some more.\", \" He bends into the sink to rinse it.\"]}, \"v_JGxSaJ7XoPQ\": {\"duration\": 79.25, \"timestamps\": [[0, 11.89], [11.1, 21], [21.79, 39.63], [39.63, 66.57], [66.57, 79.25]], \"sentences\": [\"A girl in a purple blouse sits on a fence post as she is brushing a horse who is tied to the fence.\", \" The girl stands on the fence post while reaching to brush the horses mane.\", \" The girl continues standing on the fence post leans onto the horses back and brushes the back of the horse as she smile at the camera.\", \" The girl mounts onto the horses back as she continues to brush the horses neck and mane.\", \" The girl in the purple blouse dismounts the horse and stands on the fence post brushes the horses hind quarter.\"]}, \"v_azCsE98qwus\": {\"duration\": 155.59, \"timestamps\": [[0, 24.89], [26.45, 76.24], [77.02, 155.59]], \"sentences\": [\"A woman wearing a red outfit raises her hands and feet, alternating them in a slow and methodical fashion.\", \" She puts on a show on a stage, going back and forth fluidly.\", \" The woman turns in several different directions, providing different actions before standing straight and still as her finale.\"]}, \"v_Z5lRHCRBA_E\": {\"duration\": 55.84, \"timestamps\": [[0, 3.91], [4.19, 43.56], [6.42, 40.21], [43.84, 45.51], [45.79, 55.84]], \"sentences\": [\"A black screen with white zooming text of a girls performance on the uneven bars.\", \"  A gymnast strides to the uneven bars jumps off a board and grabs on to the bars and goes through her routine.\", \"  There is text that appears on the screen describing what she has to do.\", \"  She ends her routine and lands on the mat as the crowd cheers.\", \"  A black screen with white text appears followed by the gymnasts score.\"]}, \"v_IC-Rd7ouQmE\": {\"duration\": 46.12, \"timestamps\": [[0, 7.15], [6.69, 46.12]], \"sentences\": [\"A group of people are seen sitting on bikes and waiting before a track.\", \" A bar let's go and the men ride around a long track on the bikes behind one another.\"]}, \"v_x3WVWHn3teI\": {\"duration\": 129.55, \"timestamps\": [[0, 60.89], [43.4, 129.55]], \"sentences\": [\"A man is seen standing in front of a bike speaking to the camera and leads into shots of him riding around.\", \" The man continues to speak to the camera as more shots are shown of him riding the dirt bike around a track.\"]}, \"v__gO4UzCTqhk\": {\"duration\": 32.51, \"timestamps\": [[0, 9.1], [11.87, 21.13], [23.08, 32.18]], \"sentences\": [\"A woman is seen speaking to the camera in front of a large bush.\", \" The woman then uses a shovel along some dirt.\", \" The camera pans around the plant when she is finished.\"]}, \"v_UIH5arBo3-Y\": {\"duration\": 122.0, \"timestamps\": [[0, 115.29], [72.59, 75.64], [113.46, 116.51], [116.51, 122]], \"sentences\": [\"An older man with glasses and gray hairs sits and sings as he plays the guitar.\", \" The man pauses for a second.\", \" The man finishes his song and stops.\", \" We see the ending title screen with a cat on it.\"]}, \"v_sN1MPx9hb1I\": {\"duration\": 36.83, \"timestamps\": [[0, 11.6], [7.18, 36.83]], \"sentences\": [\"An intro is shown of a woman knitting with her hands while various pictures of cats are shown in the background.\", \" Text on how to knit appears while her hands continue moving to demonstrate how to properly knit.\"]}, \"v_FutaoYIC4Ok\": {\"duration\": 26.8, \"timestamps\": [[0, 6.16], [6.16, 26.8]], \"sentences\": [\"A young lady roller skate on the road in the forest.\", \" Then she arrives pass on front of an abandoned car.\"]}, \"v_d1doBRc_hAM\": {\"duration\": 191.29, \"timestamps\": [[0, 65.99], [65.99, 191.29]], \"sentences\": [\"A man is seen riding on a treadmill followed by several images of the treadmill and a man taking pictures.\", \" A person undoes the machine and then rides on the machine and leads into more people taking pictures of the machine and people riding.\"]}, \"v_Mgy7IRETxSk\": {\"duration\": 176.26, \"timestamps\": [[0, 22.91], [18.51, 111.93], [100.47, 176.26]], \"sentences\": [\"The marching bands are in positioned in the field.\", \" Then The band started to play their instruments.\", \" The ladies with flags moved their flags up and down and rotate them as the band plays.\"]}, \"v_V8gr2EMHNwQ\": {\"duration\": 120.26, \"timestamps\": [[0.6, 36.08], [33.67, 94.4], [98.01, 118.45]], \"sentences\": [\"Various shots are shown of the ocean as well as boats riding along the water.\", \" People are seen laying on beaches as well as speaking to one another and riding behind boats.\", \" Close ups of fish are seen as well as people riding around and surfing the water.\"]}, \"v_eD2SW7ibzmM\": {\"duration\": 202.01, \"timestamps\": [[16.16, 194.94], [182.82, 194.94], [197.97, 202.01]], \"sentences\": [\"Two men start dancing on a stage.\", \" They put their hands up next to their face.\", \" An album of a woman is shown on the screen.\"]}, \"v_blCvgADz8LY\": {\"duration\": 55.54, \"timestamps\": [[8.33, 24.72], [28.88, 29.16], [29.99, 33.33]], \"sentences\": [\"A man bends down and picks up a large weight.\", \" He lifts it up over his head.\", \" He then drops it onto the ground.\"]}, \"v_3792wPKkdXI\": {\"duration\": 53.8, \"timestamps\": [[0.27, 53.26], [0, 53.26]], \"sentences\": [\"a man and a woman are arm wrestling on top of a table in middle of stage and the woman wins.\", \" people are in stands around the stage watching the competition.\"]}, \"v_tokwDYW6rS0\": {\"duration\": 128.76, \"timestamps\": [[0, 1.29], [1.29, 10.94], [10.94, 13.52], [13.52, 48.28], [48.28, 77.9], [77.9, 91.42], [91.42, 107.51], [107.51, 126.18], [126.82, 128.76]], \"sentences\": [\"A Howcast logo is the opening scene of the video.\", \" A woman is showing paintings of her work.\", \"  An instructional slide is shown.\", \"  The woman is explaining the materials used.\", \"  She then describes the brushes she uses.\", \"  She shows the paint pallet and various colors of paint.\", \"  She explains the bottles of paint.\", \" She then instructs on  how to clean the brushes with liquid and paper towels.\", \"  The video ends with the same logo it started with.\"]}, \"v_n04N7AuqZsY\": {\"duration\": 231.53, \"timestamps\": [[0, 11.58], [16.21, 17.36], [18.52, 100.71], [100.71, 230.37]], \"sentences\": [\"A group of girls in field hockey outfits walks onto a green field in a line.\", \"  The girls are then seen in front of a male coach talking to them and pointing to spots on the field.\", \"  Several girls are interviewed from the field and bleachers before  and as video of the girls practicing field hockey are shown.\", \"  The girls are then shown playing field hockey on a large green field interspersed with an interview from the coach.\"]}, \"v_tww0AR8NanU\": {\"duration\": 203.38, \"timestamps\": [[0, 13.22], [13.22, 44.74], [44.74, 203.38]], \"sentences\": [\"man is standing talking to the camera showing a big metal piece.\", \" te man in the room is playing the harmonica.\", \" the man stops playing and keeps talking to the camera in a small white room.\"]}, \"v_Scjxbdh6b54\": {\"duration\": 47.44, \"timestamps\": [[0, 13.28], [13.52, 47.44]], \"sentences\": [\"A white BMW 3 series is in a garage being cleaned by two men wearing safety jackets.\", \"Once the front is cleaned,the men move towards the back spraying the vehicle and come back to spray the rim and go back to the trunk to get all of the spots.\"]}, \"v_1P_BTFhNZFo\": {\"duration\": 140.97, \"timestamps\": [[0, 126.87], [7.75, 26.78], [22.56, 49.34], [37.36, 107.14], [74.71, 102.2], [89.52, 122.64], [108.55, 127.58], [128.28, 139.56]], \"sentences\": [\"There are two girls wearing sparkly blue tank tops and black skirts doing a coordinated dance with sticks in their hands in a gym.\", \" They begin by facing their backs to the camera and break into a dance move by raising their sticks up in the air.\", \" Then they fling their sticks in the air and catch it and turn around to face the camera.\", \" They continue dancing in coordination by going in circles and twirling their bodies simultaneously.\", \" Then they do front flips together and continue twirling their bodies in circular motion.\", \" One of the dancers does a front flip while the other throws the stick in the air and catches it.\", \" They continue dancing as they fling their sticks and catch them in their hands as they coordinate themselves.\", \" After they're finished with the dancing, they stand together and wave to the camera.\"]}, \"v_q-FOdt9a7Js\": {\"duration\": 148.75, \"timestamps\": [[0, 148.75], [9.67, 148.75], [72.89, 74.37]], \"sentences\": [\"A person is pushing a snow plow through snow.\", \" They are clearing a path down a sidewalk.\", \" A white car dives by on the street.\"]}, \"v_Flh-37A4HWY\": {\"duration\": 18.04, \"timestamps\": [[0, 12.63], [0.09, 12.9]], \"sentences\": [\"A person holds a coffee mug in a pool of koi.\", \" The koi swim towards the coffee mug.\"]}, \"v_TZ9JbvClnZA\": {\"duration\": 14.17, \"timestamps\": [[0.07, 3.61], [3.26, 10.06], [10.13, 14.17]], \"sentences\": [\"A close up of a bowling lane is seen with a man standing in front.\", \" The man throws a ball down the lane and hits several pins.\", \" He finally walks back up the lane.\"]}, \"v_m5T_w1mhWgY\": {\"duration\": 212.14, \"timestamps\": [[0, 79.55], [38.18, 150.62], [152.74, 212.14]], \"sentences\": [\"A person is seen riding down a snowy hill followed by a man working on a machine and pulling paper out.\", \" The camera zooms in on the machine and the man takes a ski and runs the ski over the machine.\", \" He shows off the ski while continuing to use them on the machine and showing off how they look.\"]}, \"v_TvlCdfubl9Y\": {\"duration\": 25.1, \"timestamps\": [[0, 25.1], [0, 12.17], [0.63, 25.1]], \"sentences\": [\"man wearing a green shirt is assembling a bicycle on the middle of a living room.\", \" another man wearing a blue sweater is helping the other man assembling the bicycles.\", \" men are assembling three bicycles on living room.\"]}, \"v_8sTJGmY-SGQ\": {\"duration\": 46.65, \"timestamps\": [[0.47, 13.53], [13.76, 34.05], [33.82, 46.42]], \"sentences\": [\"A man is seen standing with his arms up and walks in between a set of uneven bars.\", \" The man then hopes up on the bars and begins spinning himself around.\", \" He continues spinning on the bars and ends by jumping down on the sides.\"]}, \"v_-pLiSHAz4fo\": {\"duration\": 111.43, \"timestamps\": [[0, 17.27], [17.27, 39.56], [39, 79.67], [79.12, 111.43]], \"sentences\": [\"A man talking about how to work out in a certain position.\", \" He explains it and shows in detail how it should be done.\", \" Then he grabs the bar and demonstrates like that also.\", \" He begins to do it in repetition a few times before finishing up.\"]}, \"v_gY-8BUnSgf4\": {\"duration\": 205.8, \"timestamps\": [[0, 12.35], [9.26, 10.29], [10.29, 34.99], [33.96, 76.15], [76.15, 173.9], [173.9, 205.8]], \"sentences\": [\"A Man is shown throwing a bowling ball down a lane.\", \" It then intercuts to a bunch of different throws of the ball towards the pins.\", \" A woman interview the professional bowler and put on an apparatus on his wrist.\", \" He then is shown gripping the ball and makes a throw in slow motion.\", \" This is shown several times from different angles.\", \" After a series of these action shots, the video then moves to a man speaking directly into the camera, with the logo of the show appearing as it ends.\"]}, \"v_QNKjKB4k4D0\": {\"duration\": 24.61, \"timestamps\": [[0, 5.05], [6.77, 17.72], [17.85, 24.61]], \"sentences\": [\"A man on a horse goes through a rodeo fence.\", \" He dismounts, roping and tying a calf.\", \" When he is done, he walks back to his horse and gets back on.\"]}, \"v_19YCgLDhfoE\": {\"duration\": 106.21000000000001, \"timestamps\": [[1.59, 12.75], [13.81, 36.11], [37.17, 50.45], [50.98, 85.5]], \"sentences\": [\"A woman exercise sniping a stick on her hand in a filed.\", \" The woman exercise on front the ocean spinning the stick on her neck.\", \" Then, the woman throws the stick on the air.\", \" After, the woman pass the stick from hand to another on her folded arm.\"]}, \"v_DlE6Rtuo__o\": {\"duration\": 82.71000000000001, \"timestamps\": [[0, 30.6], [30.6, 82.71]], \"sentences\": [\"A close up of a tattoo artist is seen drawing along a person's leg.\", \" The artist continues drawing all over the person's leg while looking up every once in a while to the camera.\"]}, \"v_wqThk38AdEA\": {\"duration\": 23.06, \"timestamps\": [[0.81, 23.06], [0.81, 11.87], [0, 23.06]], \"sentences\": [\"woman is standing in the middle of stage playing the flute.\", \" women are standing in sage behind the woman with the flute standing holding microphones.\", \" men are standing behind the women playing different instruments.\"]}, \"v_nDggAkf1ulc\": {\"duration\": 61.42, \"timestamps\": [[14.74, 40.84], [40.84, 50.98], [50.98, 56.2], [56.2, 58.96]], \"sentences\": [\"There's a little girl in a pink shirt and black tights and pink shoes playing hop scotch in a playground.\", \" She jumps around on the colorful squares as she has fun.\", \" Then she goes around a small water fountain that is next to the hop scotch squares.\", \" She is enjoying herself running around in the playground.\"]}, \"v_Tg1G0EtWw9s\": {\"duration\": 231.39, \"timestamps\": [[0, 21.98], [34.71, 150.4], [155.03, 231.39]], \"sentences\": [\"A man is seated at a black jack table.\", \" He is talking about the game and showing the cards and chips.\", \" He shows how to deal each hand, and how to dispense the chips to the winners.\"]}, \"v_gtd2Ye-raxE\": {\"duration\": 68.06, \"timestamps\": [[0, 15.31], [15.31, 43.9], [45.6, 68.06]], \"sentences\": [\"A male gymnast hops up onto bars and begins performing a gymnastics routine.\", \" He swings around the bars over and over again while the judges watch and critique.\", \" The man eventually jumps off and the video fades away into an effect.\"]}, \"v_fQDj7pnGdVY\": {\"duration\": 164.24, \"timestamps\": [[0, 148.63], [29.56, 164.24]], \"sentences\": [\"A man wearing boxing gloves is seen hitting a bag in an empty room.\", \" He continuously hits the bag over and over again while pausing in between punches to catch his breath.\"]}, \"v_TTDruR5Vin4\": {\"duration\": 173.25, \"timestamps\": [[8.66, 45.91], [45.91, 78.83], [78.83, 121.27], [121.27, 140.33], [140.33, 162.85], [162.85, 168.05]], \"sentences\": [\"Two bikers are riding their motor bikes through rough terrain.\", \" They are dressed in biking gear with protective helmets and clothing.\", \"They are going on hilly slopes and uneven terrain on their motorbikes.\", \" They go through extremely steep and dangerous dirt roads at high speed.\", \" They also go over ramps created in the dirt road.\", \" They continue biking through the dirt at high speed as they create a cloud of dust behind them.\"]}, \"v_iGOGz6M_zcE\": {\"duration\": 41.31, \"timestamps\": [[0, 41.31], [17.76, 22.1], [17.76, 41.31]], \"sentences\": [\"A woman is washing her face in a sink.\", \" She looks in a mirror in front of her.\", \" She continues wiping her face.\"]}, \"v_h8cXVe6N6Oc\": {\"duration\": 4.41, \"timestamps\": [[2.78, 3.71], [3.71, 4.19]], \"sentences\": [\"There's a woman long black hair looking in a mirror and brushing her hair.\", \" There's another woman with blond hair that makes a face looking angry and disgusted.\"]}, \"v_EsYsshh2CyA\": {\"duration\": 68.89, \"timestamps\": [[0, 5.51], [5.86, 26.52], [26.87, 50.64], [50.64, 68.55]], \"sentences\": [\"A bartender begins speaking to the camera and pours ice into a glass.\", \" She think instructs to mix rum and lemon juice into the glass and an ounce of different rum.\", \" Finally she mixes grenadine with some sweet and sour mix with soda water.\", \" Finally she mixes all the components together and creates a nice alcoholic beverage.\"]}, \"v_Z3jo5hbPo1Q\": {\"duration\": 233.61, \"timestamps\": [[0, 19.86], [19.86, 93.44], [93.44, 107.46], [107.46, 226.6], [226.6, 233.61]], \"sentences\": [\"A young girl is standing on a stage in front of 4 judges that are sitting along a table and they are talking to her.\", \" The girl then begins her performance where she is dancing ballet and singing and when they pan to the judges and the audience they seem pleased with her performance.\", \" When the girl is done performing, she gets a standing ovation from the audience and some of the judges.\", \" The judges then take turns speaking with her expressing their approval, and the girl is very happy about it.\", \" The girl then runs off the stage and behind the curtains she gives a man who is possibly her dad, a kiss and a hug.\"]}, \"v_FC5FsugGt8o\": {\"duration\": 137.79, \"timestamps\": [[0, 53.74], [50.98, 137.79]], \"sentences\": [\"A group of women are seen walking around a sandy area and begin playing a match of volleyball with one another.\", \" The girls continue playing the match while others watch on the sidelines and walk back slowly in the end.\"]}, \"v_m210FwMsnTQ\": {\"duration\": 96.69, \"timestamps\": [[0, 94.27], [17.89, 68.65], [92.82, 96.69]], \"sentences\": [\"A girl does a balance beam routine and jumps around.\", \"  After stretching, the woman does four flips.\", \"  The woman dismounts and finishes the routine.\"]}, \"v_oFtwNVuasmU\": {\"duration\": 178.24, \"timestamps\": [[0, 44.56], [44.56, 94.47], [94.47, 133.68], [133.68, 178.24]], \"sentences\": [\"On a river outside the boys are walking down the street as cars pass by.\", \" There are many people out doing many different activities on the water.\", \" Some of the boys do jumps off the bridge and other are riding behind a boat.\", \" it's a nice summer day to be out and enjoy fun in the sun by the water.\"]}, \"v_fYQTAuBS7zw\": {\"duration\": 157.34, \"timestamps\": [[0, 19.67], [19.67, 157.34]], \"sentences\": [\"A guy shows you how to hold a small sharp ending stick in your hand and between your fingers to use as a weapon.\", \"The man shows you how to throw the sharp ended stick into the wall and make it stick from different distances.\"]}, \"v_TxLBvNWVk-4\": {\"duration\": 60.85, \"timestamps\": [[0, 54.46], [7.91, 9.74], [34.38, 39.55], [55.07, 60.85]], \"sentences\": [\"We see a series of bowling bloopers.\", \" We see a baby throw a ball and an adult fall.\", \" We see a lady fall while sitting on a bench.\", \" We see a man put a bowling ball in a cannon and shoot it across a field.\"]}, \"v_bj4nkWPdqIY\": {\"duration\": 191.59, \"timestamps\": [[0, 64.18], [63.22, 136.99], [121.66, 189.67]], \"sentences\": [\"A close up of a track is shown followed by a woman walking slowly away.\", \" Several shots are then shown of her performing long jumps in various places.\", \" She continues jumping in slow motion and ends with her landing in one last pit.\"]}, \"v_Wm1CL_g91G4\": {\"duration\": 157.22, \"timestamps\": [[7.08, 31.44], [31.44, 77.04], [77.04, 117.13], [117.13, 141.5], [141.5, 150.93]], \"sentences\": [\"There's a lady in green sanding the counter giving out tickets to people who are purchasing them for snow tubing.\", \" Several people are out snow tubing down a snow caped slope.\", \" People are going downhill on their snow tubes wearing winter gear and goggles.\", \" Some of them are snow tubing in groups of threes.\", \" They are enjoying themselves coming down the slope rapidly.\"]}, \"v_PXBcPu2_KOo\": {\"duration\": 164.47, \"timestamps\": [[3.29, 49.34], [49.34, 143.08], [143.08, 160.35]], \"sentences\": [\"An athlete climbs on the pommel horse to perform jumps and flips.\", \" The athlete flips backwards and then continues with her routine.\", \" The athlete stands on the border on the pommel horse and runs to jump, then flips and fall stand on the floor.\"]}, \"v_dN14VPSHimI\": {\"duration\": 111.0, \"timestamps\": [[0, 33.3], [33.3, 111]], \"sentences\": [\"a man is riding a horse in a rodeo and catch a bull while in stands people are watching them andother man in a hse are on side of the court.\", \" men are riding a horse in a barn and throw a rope to catch a bull.\"]}, \"v_dyLGepr7VR0\": {\"duration\": 178.7, \"timestamps\": [[4.47, 63.44], [54.5, 134.03], [138.49, 176.02]], \"sentences\": [\"Two men and a woman are seen walking up onto a stage while a group of people are seen behind them in mirrors.\", \" The three then perform a dance routine while the people in the audience follow from behind.\", \" The man pump up the crowd and continue dancing as the others follow along in the mirror.\"]}, \"v_FhWxgGQtCJY\": {\"duration\": 117.59, \"timestamps\": [[0, 15.29], [15.29, 56.44], [56.44, 89.37], [89.37, 117.59]], \"sentences\": [\"A man is shoveling up some mulch into a wheel barrel.\", \" He brings the wheel barrel over and dumps it in a pile where a woman is using a rake to spread it evenly out.\", \" They continue to bring over loads of the mulch and a man dumps over a little tractor of dirt.\", \" He rides off on the little deer john tractor while the others continue raking.\"]}, \"v_50MmJszF2XM\": {\"duration\": 149.98, \"timestamps\": [[0, 13.5], [15, 66.74], [71.99, 149.98]], \"sentences\": [\"A female coach and cheer director talks to the camera.\", \" She then spots a little girl through a backflip.\", \" She helps her do several different tasks, explaining the process as they go.\"]}, \"v_7Ozl-ud1zTo\": {\"duration\": 155.21, \"timestamps\": [[2.33, 62.86], [48.11, 110.2], [87.69, 151.33]], \"sentences\": [\"A large group of people are seen standing on a beach looking off into the distance.\", \" Several shots are shown of people riding a surf board and others watching on the side.\", \" More people are seen riding the waves in various shots.\"]}, \"v_7XGimCWcafc\": {\"duration\": 223.35, \"timestamps\": [[0, 26.8], [26.8, 58.07], [60.31, 104.98], [104.98, 140.71], [140.71, 189.85], [189.85, 196.55], [197.67, 216.65]], \"sentences\": [\"A large off-roading truck drives by along a dirt track next to a body of water and comes to a stop.\", \" Many spectators approach the vehicle, while the driver climbs out of the vehicle and attempts to remove a tire from the back of the truck.\", \" A worker and some assistants approaches the vehicle with a spare tire, and some men begin to jack up the rear of the truck to try to replace the rear passenger side tire.\", \" While the tire is being replaced, the driver climbs back into the truck, and a specator takes a picture of the vehicle.\", \" Other spectators come to the driver side to talk with the driver.\", \" The tire is replaced and the truck drives off.\", \" A detailed look at the tire that was replaced is shown.\"]}, \"v_Uw_4gKpmAhI\": {\"duration\": 48.16, \"timestamps\": [[8.67, 9.63], [9.63, 17.82], [17.82, 41.18], [41.18, 46.47]], \"sentences\": [\"There are three contractors remodeling a house that is torn down for renovation.\", \" One of the contractors is cementing a brick wall.\", \" The other contractor is breaking an existing wall in the living room.\", \" The entire house is under renovation with furniture and boxes lying around the house with dust.\"]}, \"v_5Q8ltS84BBg\": {\"duration\": 73.24, \"timestamps\": [[0, 9.89], [9.89, 73.24], [0, 73.24]], \"sentences\": [\"kid is sitting in a red room talkin to the camera.\", \" the kid grabs a guitar and start playing it and singing.\", \" kid is playing the guitar and talking to the camera in a small room.\"]}, \"v_MOH9q_3Z9zg\": {\"duration\": 154.69, \"timestamps\": [[0, 12.38], [17.02, 135.36], [142.32, 154.69]], \"sentences\": [\"A little girl is shown in several images receiving a haircut.\", \" She is then shown in video form as her long hair is cut off in the style of a ponytail, meant to be donated to a group called Locks of Love.\", \" The girl is shown in various photos, holding the hair she is going to donate.\"]}, \"v_I637SOXSbHY\": {\"duration\": 57.61, \"timestamps\": [[0, 8.07], [8.35, 49.83], [49.83, 51.27]], \"sentences\": [\"A man bends down and picks up two kettle bells.\", \" He raises and lowers the kettle bells.\", \" He puts them down on the grass in front of him.\"]}, \"v__s20ZN8WZbo\": {\"duration\": 67.5, \"timestamps\": [[0, 9.79], [11.81, 58.05], [59.06, 67.5]], \"sentences\": [\"A man stands behind a bar with several mixed drinks.\", \" He pours ice into a glass and tops it with different liquors.\", \" He then adds a small straw.\"]}, \"v_n8gFxENOyR0\": {\"duration\": 195.9, \"timestamps\": [[0, 47.02], [47.99, 70.52], [71.5, 156.72], [125.37, 137.13], [161.62, 195.9]], \"sentences\": [\"A man is wearing a contraption which holds his small son on his back as he hikes in the woods.\", \" We see the boy playing in an indoor porch at the house.\", \" The boy runs into the yard and his dad puts a helmet on him and helps him skateboard.\", \" The dad skateboards and holds the boy.\", \" We then see the ending screen and switch to the boy sitting on a rock high five his dad and we return to the close screen.\"]}, \"v_P4dx0xrr6fM\": {\"duration\": 19.78, \"timestamps\": [[0, 1.98], [2.08, 12.07], [13.26, 19.78]], \"sentences\": [\"An athlete walks onto a field.\", \" He spins in circles around a platform.\", \" He tosses a ball a great distance, and walks away.\"]}, \"v_tuhEnqKmUKg\": {\"duration\": 37.43, \"timestamps\": [[8.42, 29.2], [8.8, 14.22], [10.11, 14.04], [14.41, 25.64], [26.01, 29.2]], \"sentences\": [\"There's a teenage boy wearing a black beanie hat skateboarding through the city streets.\", \" He skateboards wearing a white shirt while jumping over a small cement wall.\", \" Then he jumps over another wall while skateboarding.\", \" Then in a green shirt, he skateboards past a school, straight into a basketball court and then jumps over a metal railing.\", \" Then back in a white shirt, he tries stunts by jumping up to a metal hand rail on his skateboard.\"]}, \"v_YAWoigyJ9sA\": {\"duration\": 9.03, \"timestamps\": [[0, 7.27], [7.45, 8.99]], \"sentences\": [\"A person is drinking from a coffee cup and looking away from the camera.\", \" His eyes pand up to the camera at the last second and he smiles.\"]}, \"v_uWJUoJyvFF0\": {\"duration\": 137.64, \"timestamps\": [[0, 14.45], [14.45, 60.56], [59.87, 137.64]], \"sentences\": [\"A woman is sitting in a living room on a couch talking to the camera explaining what she is about to do.\", \"The camera pans down and the lady begins showing important aspects of the object she is knitting.\", \"When she is done,she grabs the needle,puts the thread in it and finishes knitting.\"]}, \"v_0_GpcrCLdag\": {\"duration\": 84.1, \"timestamps\": [[0.84, 1.68], [2.94, 3.78], [4.63, 10.51], [70.65, 80.74]], \"sentences\": [\"First a boy is shown eating a thin waffle.\", \" then an elderly lady is shown drinking water from a small glass.\", \" Next there is a little boy shown dipping his hand into a parfait and then grabbing a spoon from another boy and then eating the parfait.\", \" Finally a boy is shown eating a spoonful of a milkshake from a glass that has waffles in it.\"]}, \"v_b2uAgV5n3FU\": {\"duration\": 143.48, \"timestamps\": [[0, 143.48], [66, 143.48]], \"sentences\": [\"A man splits hardwood for use in wood stoves.\", \"  There are two techniques used, one with an ax and one with a hammer and ax.\"]}, \"v_tmBTO0cA_qw\": {\"duration\": 203.66, \"timestamps\": [[0, 19.35], [23.42, 183.3], [186.35, 203.66]], \"sentences\": [\"A man stands in front of a counter with his hands down in front of equipment.\", \" He uses the surface to rub a knife blade back and forth, sharpening it.\", \" When he is done, he checks the blade before lying the knife back down.\"]}, \"v_o7z-u08tc-Y\": {\"duration\": 120.08, \"timestamps\": [[0, 42.03], [43.83, 91.86], [90.06, 118.28]], \"sentences\": [\"A small group of people are seen holding onto a rope and playing tug of war.\", \" The camera pans around the other team playing with the group while others watch on the side.\", \" The people continue playing back and fourth and end by smiling to the camera.\"]}, \"v_W0dCIs9Y8yg\": {\"duration\": 162.46, \"timestamps\": [[0, 14.62], [14.62, 160.02], [160.02, 162.46]], \"sentences\": [\"The camera follows a small child on skis as he or she maneuvers past a crowd of people.\", \" The child skis down a slope with other people at various points along the trail.\", \" The child stops as the cameraperson approaches.\"]}, \"v_R2qPyJVTUlI\": {\"duration\": 91.93, \"timestamps\": [[7.35, 87.79], [20.22, 87.79], [90.55, 91.93]], \"sentences\": [\"Women are dressed up in fancy clothing.\", \" A woman is putting something onto another woman's body.\", \" Words come up on the screen.\"]}, \"v_T8nteSe3U9Q\": {\"duration\": 145.64, \"timestamps\": [[0, 16.75], [16.02, 26.21], [26.21, 75.73], [75, 95.39], [95.39, 145.64]], \"sentences\": [\"A man and a woman stand outside while he sprays her with sunblock.\", \" They are both laughing and having a good time.\", \" She turns around so he can get her back thoroughly as they both playfully flirt with each other.\", \" He starts to spray her and she gives him directions as to where he missed applying it.\", \" She then turns around for him to get her arms, face and any of the other areas that he missed.\"]}, \"v_OLRDf3vO8lw\": {\"duration\": 39.96, \"timestamps\": [[0, 5], [5, 14.39], [14.39, 27.57], [27.57, 39.96]], \"sentences\": [\"Family day at the beach, father and son are walking around and then they start to play in the sand.\", \" They have a sand in buckets trying to build sand castles.\", \" When they take the bucket up the sand isn't very stable at all.\", \" The little boy goes and kick down all the castle parts that they were creating.\"]}, \"v_gvHQDDF7EGU\": {\"duration\": 172.94, \"timestamps\": [[0, 51.02], [47.56, 172.94]], \"sentences\": [\"A man is seen playing a saxophone and transitions from various locations of the person playing the instrument.\", \" The man is then seen side by side with himself and more shots of him playing in a room.\"]}, \"v_30y8Uy0B_uk\": {\"duration\": 172.66, \"timestamps\": [[6.91, 157.12], [16.4, 30.22], [25.04, 45.76], [46.62, 114.82], [144.17, 159.71]], \"sentences\": [\"A man is hanging on a rock wall and talking to the camera.\", \" The man swings back and fourth and how to keep your balance when rock climbing.\", \" He begins climbing up the wall and talking about keeping straight arms.\", \" He continues climbing up the wall and where to position your feet and how to push.\", \" He finally makes it to the top of the rock wall and faces the camera.\"]}, \"v_tvR1ovqyJZ8\": {\"duration\": 91.16, \"timestamps\": [[0, 17.32], [21.88, 75.21], [77.49, 91.16]], \"sentences\": [\"A person is riding inside a boat on the water.\", \" They are dragging a person on water skis.\", \" The person stays upright as they are pulled quickly through the water.\"]}, \"v_yNmV_c3rlLA\": {\"duration\": 77.32, \"timestamps\": [[0, 76.55], [11.21, 17.01], [23.58, 37.5], [37.5, 76.16], [76.16, 77.32]], \"sentences\": [\"A man is playing the hand drums in a living room.\", \" The man throws his head back.\", \" We zoom in on the man's hands.\", \" We zoom out and see the whole man.\", \" He finishes playing and takes a bow.\"]}, \"v_vBdm15wRqig\": {\"duration\": 147.03, \"timestamps\": [[1.47, 21.32], [21.32, 86.75], [87.48, 131.59], [133.06, 141.15]], \"sentences\": [\"Boys get out a train and walk in the street holding surfboards.\", \" They, the boys surf in a choppy river in a city.\", \" A boy put his surfboard on the rives,jump on and surf, then fell, also other boys surf.\", \" After, the boys are inside a train.\"]}, \"v_ysbUc6WS12k\": {\"duration\": 59.68, \"timestamps\": [[0, 59.68], [8.65, 17.31], [16.41, 59.68]], \"sentences\": [\"There's a bon fire lit in an open ground next to some tents and bikes.\", \" There's a person dressed in a biker's suit who comes up and sets fire to a pile of wood sticks.\", \" The fire begins to spread through the twigs and wood sticks and bursts into large flames.\"]}, \"v_-YjGbsbDoxs\": {\"duration\": 162.35, \"timestamps\": [[11.36, 127.45], [18.67, 127.45], [37.34, 127.45], [43.84, 127.45], [60.88, 127.45], [108.78, 127.45], [123.39, 155.86], [153.42, 155.86]], \"sentences\": [\"A lady named Linda, creator of Paint Along is demonstrating how to do an acrylic painting.\", \" She starts with a one inch flat brush and yellow and white acrylic paint.\", \" She makes X patterns across the canvas with the yellow color.\", \" She continues the same pattern on the top part of the canvas.\", \" Then she draws straight lines across the canvas with an orange color.\", \" She then takes a liner brush to do some finer detailing on the painting such as branches of a tree.\", \" She takes a flatter brush to demonstrate a dabbing technique with excess paint to show flower petals.\", \" She ends the video with the abstract painting technique.\"]}, \"v_jdAJ7cJBxnQ\": {\"duration\": 9.59, \"timestamps\": [[0, 5.27], [6.19, 7.82], [8.1, 9.59]], \"sentences\": [\"We see a man in a pool playing a game while a man in white stands on the sideline waving his arm.\", \" The ball is thrown and the goalie in front of the net jumps to stop the ball.\", \" The goalie then dips deep underwater.\"]}, \"v_hHpcr5tYWso\": {\"duration\": 41.43, \"timestamps\": [[0.62, 11.18], [8.49, 40.18]], \"sentences\": [\"An Asian woman with black hair in beige jacket and printed blouse, is talking in front of the camera.\", \" Four black and white kites with blue and yellow diamond print on them are flying from the ground, a green octopus, dragons and other shapes of kites are flying in the sky, while men in red pull the kites.\"]}, \"v_r5NqGSZsN0E\": {\"duration\": 56.26, \"timestamps\": [[0, 24.19], [25.04, 56.26]], \"sentences\": [\"A young woman is shown sitting down and speaking to the camera white holding a shirt.\", \" She ties the shirt around her arm and dips it into the water and scrubs it with her hands.\"]}, \"v_bF55ewgaJLA\": {\"duration\": 201.29, \"timestamps\": [[0, 31.2], [34.22, 178.15], [193.24, 201.29]], \"sentences\": [\"A man is seated in a chair, holding a saxophone.\", \" He stands as he plays, his fingers moving up and down the instrument.\", \" The screen cuts to black and white text.\"]}, \"v_eAIJhHmdjmk\": {\"duration\": 124.44, \"timestamps\": [[0, 7.47], [7.47, 61.6], [61.6, 67.2], [67.82, 115.1], [114.48, 115.73], [116.97, 124.44]], \"sentences\": [\"We see the green opening screens.\", \" We then see a person shovel snow with a pusher.\", \" We see an title screen.\", \" We we a man plowing an ice rink with his shovel.\", \" We then see the product screen.\", \" We see a closing title screen.\"]}, \"v_8H3Wy96BwHM\": {\"duration\": 54.66, \"timestamps\": [[0, 4.92], [6.29, 44.82], [11.75, 13.39], [14.76, 16.94], [25.96, 28.7], [32.8, 33.89], [44, 44.82], [45.09, 48.65], [50.29, 54.66]], \"sentences\": [\"We see numbers slots on asphalt.\", \" We then see kids riding BMX bikes cut with scenes of other things.\", \" We see kids talking to the camera.\", \" We see a gate open and kids start riding.\", \" We see a coach standing with kids.\", \" We see another coach standing with kids.\", \" We see kids pass the finish line.\", \" We see the emblem on the screen with kids sitting on their bikes.\", \" We then see the close screen.\"]}, \"v_OCQ9OyMKQKw\": {\"duration\": 55.8, \"timestamps\": [[0, 55.8], [39.06, 40.45], [39.06, 55.8]], \"sentences\": [\"A man wearing a hat is standing outside.\", \" He picks up a chainsaw off of the ground.\", \" He begins to chop down a bush next to him.\"]}, \"v_YKzVHb16eUk\": {\"duration\": 74.58, \"timestamps\": [[0, 16.04], [16.04, 26.48], [26.48, 74.58]], \"sentences\": [\"There are a bunch of children standing around a table and the main focus is a boy who is cutting stuff on a blue tray.\", \" The boy walks away from the tray and an adult starts cutting.\", \" The adult stops cutting and another boy begins to cut the objects very slowly,the adult interrupts the child to demonstrate how to cut and the child walks away.\"]}, \"v__f0S0vQZ9JM\": {\"duration\": 149.31, \"timestamps\": [[0, 40.31], [39.57, 111.23], [102.27, 142.59]], \"sentences\": [\"Two people are seen speaking to the camera followed by several drinks laid out.\", \" The people then begin mixing ingredients with one another and speaking to one another.\", \" The people continue mixing drinks with one another and presenting them to the camera.\"]}, \"v_e__FVkfXB-U\": {\"duration\": 131.1, \"timestamps\": [[10.49, 38.67], [38.67, 42.61], [38.67, 131.1]], \"sentences\": [\"A man is throwing a blue frisbee and a dog is chasing after it.\", \" The dog is jumping over the man kneeling down on the grass.\", \" They continue to play frisbee with the dog.\"]}, \"v_peoMXSP3VgY\": {\"duration\": 84.99, \"timestamps\": [[0, 4.25], [19.97, 39.09], [44.62, 53.12], [62.04, 66.29], [70.54, 81.16]], \"sentences\": [\"Mountains are seen in the background and a boy rides in a car.\", \" Skateboarders ride down through a parking garage together.\", \" The skateboards ride down a hill the skid at the bottom.\", \" The boy sets his board standing upright.\", \" A boy skateboards through the bleachers of a stadium.\"]}, \"v_lJeJ2LFna5o\": {\"duration\": 35.48, \"timestamps\": [[0, 35.48], [3.55, 4.97], [5.14, 5.85], [9.05, 19.34], [19.51, 20.76], [20.93, 25.01], [25.19, 25.72], [25.9, 27.32], [27.5, 28.92], [29.27, 35.48]], \"sentences\": [\"A crowd gathers watching a volleyball game.\", \" A volleyball player hits the ball.\", \" The player's teammate also hits the ball.\", \" The player hits the ball three more times.\", \" The players teammate hits the ball.\", \" The other player hits the ball over the net.\", \" The ball returns and one of the players hits the ball.\", \" The players teammate dives to hit the ball.\", \" The other player hits the ball to the other team.\", \" The ball returns and one of the players hits the ball out of bounds.\"]}, \"v_aw89asgFHbs\": {\"duration\": 15.15, \"timestamps\": [[0, 15.15], [0.68, 15.15], [7.12, 15.15], [11.9, 15.15]], \"sentences\": [\"A girl does flips across a mat.\", \" The mat is black and red.\", \" Several girls watch her and clap.\", \" She then does some backflips.\"]}, \"v_B2HIj_QWaG0\": {\"duration\": 108.78999999999999, \"timestamps\": [[0, 7.07], [7.07, 108.79]], \"sentences\": [\"A woman is playing a violin on the street while various people walk around here and behind her.\", \" She smiles into the camera while playing and continues playing the song while several people bend down to tip her and walk around her.\"]}, \"v_FMUaey1tigI\": {\"duration\": 107.02000000000001, \"timestamps\": [[0, 7.49], [7.49, 15.52], [14.45, 46.55], [44.95, 68.49], [68.49, 103.28]], \"sentences\": [\"A man adjust his camera and captures a close up of his hand and face.\", \" A young child wearing a green shirt is playing some conga percussion instruments.\", \" An older boy wearing a burgundy shirt moves into the picture behind the child who is playing the Conga's and begins to dance.\", \" The boy in the burgundy shirt walks out of the picture as the young conga player also walks away as the camera follows him.\", \" The young child returns to continue playing the conga's as a child wearing a blue shirt walks behind the young conga player.\"]}, \"v_Tv3v-UpBJ2Y\": {\"duration\": 238.3, \"timestamps\": [[0, 65.53], [66.72, 191.83], [162.04, 234.72]], \"sentences\": [\"A small group of people are seen standing on a field holding onto a rope.\", \" A man stands in front as the group begins pulling the rope to one side.\", \" The people continue pulling until one falls down afterwards.\"]}, \"v_Z6xXj6tbMCo\": {\"duration\": 162.84, \"timestamps\": [[0, 68.39], [57.81, 162.84]], \"sentences\": [\"A man is seen doing various flips and tricks on a gym floor while others practice behind him.\", \" The man continues slipping around the room while people walking him stop and watch.\"]}, \"v_8j75QYV-iCg\": {\"duration\": 154.02, \"timestamps\": [[0, 20.02], [21.56, 60.07], [63.15, 137.85], [140.16, 154.02]], \"sentences\": [\"a young girl in a yellow outfit poses with a baton.\", \" She begins to dance, twirling the baton as she goes.\", \" The girl spins, sits, slides, and twirls as she performs.\", \" She falls to the ground in a pose and smiles as she finishes.\"]}, \"v_a9ItMklOTyE\": {\"duration\": 100.15, \"timestamps\": [[0, 20.03], [20.03, 47.07], [47.07, 75.61], [76.61, 100.15]], \"sentences\": [\"It looks like this is an arabic language that is being written or something.\", \" Then on a field there is men playing a game throwing the ball.\", \" Some coaches are walking around with hats to keep the sun out of their eyes.\", \"  The game looks pretty intense, one man puts all of his might into one of the throws he make.\"]}, \"v_Yp-NJgTAOCc\": {\"duration\": 156.67000000000002, \"timestamps\": [[0, 1.57], [1.57, 3.13], [3.13, 4.7], [4.7, 69.72], [69.72, 139.43], [139.43, 156.67]], \"sentences\": [\"The scene comes into focus showing the outside of a building, with some text at the bottom that says it is a school for breakdancing.\", \" A man is doing some paperwork while some other men are standing in the background next to a projector screen.\", \" A large number of kids inside a gym are practicing breakdancing.\", \" The kids are inside a classroom watching a presentation by the man seen earlier.\", \" The kids are seen once again inside the gym practicing their breakdancing moves.\", \" The screen goes black and a graphic appears on screen showing the company's logo and youtube channel information.\"]}, \"v_qlbuekEsXL4\": {\"duration\": 27.03, \"timestamps\": [[0, 4.19], [5.27, 19.6], [19.87, 27.03]], \"sentences\": [\"A boy on a horse is released from a gate.\", \" He ropes a calf, dragging it to the ground.\", \" He dismounts, tying the calf with rope before getting back on his horse.\"]}, \"v_UAgb3FEjBN8\": {\"duration\": 234.1, \"timestamps\": [[0, 26.92], [26.92, 234.1]], \"sentences\": [\"An intro leads into a small child riding a dirt bike on a dirt path.\", \" Several shots of the boy grown up are shown followed by more footage of the boy riding a dirt bike.\"]}, \"v_iiyYRmc1YiA\": {\"duration\": 89.05, \"timestamps\": [[0, 88.16], [1.78, 17.36], [17.36, 41.41], [41.85, 79.7], [79.25, 88.6], [88.6, 89.05]], \"sentences\": [\"We see a crowd of people watching an event.\", \" The men fiddle with a metal handle.\", \" They hold hands in preparation for the match and the judge touches their hands.\", \" The men begin their arm wrestling match, and the guy on the right wins.\", \" The guys shake hands and hug.\", \" We see a shot of one of the contestants.\"]}, \"v_517rgTzIobE\": {\"duration\": 87.42, \"timestamps\": [[0, 87.42], [3.5, 87.42], [5.68, 16.17], [4.81, 11.37], [15.74, 31.91], [20.98, 34.1], [24.04, 32.78], [33.66, 73], [39.78, 81.3]], \"sentences\": [\"Two men are playing racket ball in an indoor court.\", \" The two men, one in black and the other in a red shirt playing racket ball against each other.\", \" The man in black begins the first serve and the man in the red shirt returns his serve.\", \" They continue playing racket ball.\", \" Then the same players play racket ball on a different occasion wearing black and the other wearing a yellow shirt.\", \" They continue serving and hitting the ball against the wall.\", \" They play several rounds on the game.\", \" They are back again in the red and black shirts playing racket ball.\", \" They run to hit and the ball served by the opponent as they continue to play.\"]}, \"v_pzZ4TGcMK1k\": {\"duration\": 184.37, \"timestamps\": [[9.22, 79.28], [79.28, 156.71], [156.71, 184.37]], \"sentences\": [\"People stand on the border of the diving boards and they dive while in the water.\", \" Swimmer stand on the diving boards, then they jump spinning in the air and diving in the water.\", \" Swimmers jump from the diving board, they spins three times in the air before to dive inn the water.\"]}, \"v_t04jE7d0Obw\": {\"duration\": 175.17000000000002, \"timestamps\": [[0, 12.26], [14.89, 175.17], [34.16, 42.92], [43.79, 160.28], [161.16, 175.17]], \"sentences\": [\"We see a man give a lady a rose.\", \" The man and the woman then perform a dance in front of a crowd.\", \" 35 The man spins the lady making her dress flounce and looks at her chest.\", \" The dance repeats over and over again many times.\", \" The man bends the woman forward looking at her chest two times and almost puts his hand on her neck.\"]}, \"v_bVMxBXeYMr0\": {\"duration\": 174.36, \"timestamps\": [[0, 17.44], [17.44, 107.23], [108.1, 129.03], [129.9, 174.36]], \"sentences\": [\"A black man caresses his beard and face in a loving way.\", \" The black man uses a clipper trimmer to trim his beard and face.\", \" The black man attaches an orange attachment to the clippers and continues trimming his beard.\", \" The black man washes his face and beard and displays an array of accessories and applies them to his face and beard.\"]}, \"v_Gr5jGxLEp70\": {\"duration\": 96.36, \"timestamps\": [[0.96, 36.62], [35.65, 94.92]], \"sentences\": [\"A large group of people are seen wandering around a festival with shots of people speaking are shown as well as playing crochet.\", \" More people are seen playing the game as several others watch on the sidelines and critique.\"]}, \"v_5Bo0gFXxDQk\": {\"duration\": 17.0, \"timestamps\": [[1.02, 3.06], [3.06, 6.88], [6.88, 12.24], [12.24, 12.75]], \"sentences\": [\"A person wearing a blue shirt is sitting on the floor welding.\", \" He is wearing protective gear to cover his face and eyes.\", \" He also has protective gloves on that are brown in color.\", \" He continues welding a long metal rod with welding tool directed towards the rod.\"]}, \"v_s2PFIKG5PYI\": {\"duration\": 17.53, \"timestamps\": [[0, 6.14], [5.52, 13.76], [9.55, 16.39]], \"sentences\": [\"A large piece of machinery is seen sitting in a room.\", \" A robot arm then moves into frame attempting to push things around.\", \" The robot fails and pulls it's arm back in.\"]}, \"v_iOpoR0UeJNg\": {\"duration\": 77.78999999999999, \"timestamps\": [[0, 16.72], [17.5, 32.28], [32.67, 48.62], [49.01, 77.79]], \"sentences\": [\"A man and a woman talk to the camera in a newscast setting.\", \" The scene transitions to various people training in gymnastics.\", \" Two women are interviewed on camera sequentially.\", \" The scene transitions to more gymnastic practice segments.\"]}, \"v_2U_BUV8PLtk\": {\"duration\": 89.43, \"timestamps\": [[0, 33.98], [34.43, 89.43]], \"sentences\": [\"A pair of handlebars are detached from the bike and is laying down flat on a table.\", \"The man then picks up the handlebars and sticks them back into the bike tightening them with a key.\"]}, \"v_4E89GQ2UnoQ\": {\"duration\": 174.07999999999998, \"timestamps\": [[0, 24.37], [23.5, 26.98], [27.85, 36.56], [37.43, 45.26], [76.6, 85.3], [101.84, 107.06], [129.69, 132.3], [133.17, 146.23], [156.67, 161.89], [162.76, 174.08]], \"sentences\": [\"We see a raft full of people in a rough river and see lots of stills.\", \" We see the people in shots.\", \" We see the title screen.\", \" We see a helicopter over a river.\", \" The raft turns over and a lady laughs.\", \" We see a bus driving on the street.\", \" We see the canyon from afar.\", \" We see a tunnel and a speedboat.\", \" We see still shots of the rafters.\", \" We see the ending title screen.\"]}, \"v_dm5ZnhOeBBQ\": {\"duration\": 106.71000000000001, \"timestamps\": [[0, 20.27], [20.27, 29.34], [30.95, 61.89], [62.96, 106.71]], \"sentences\": [\"A woman is standing next to a vacuum.\", \" She dumps something onto the floor.\", \" She takes the vacuum and vacuums up the mess.\", \" She takes the hose off the vacuum and starts using that on the floor.\"]}, \"v_UIZkQUo8VtA\": {\"duration\": 59.65, \"timestamps\": [[0, 14.61], [14.32, 42.95], [45.04, 59.65]], \"sentences\": [\"A truck is seen parked in front of a house with several shots of the house shown.\", \" A man is then seen standing on the roof hosing down the top and again standing in front of the house watering.\", \" The camera shows the truck parked out front again and the final product of the roof.\"]}, \"v_x_lN_QxbEjQ\": {\"duration\": 203.71, \"timestamps\": [[0, 5.09], [5.09, 198.62], [198.62, 203.71]], \"sentences\": [\"A black intro screen appears and it includes a lot of text in white, blue and green that include numbers and letters, and then a logo to the right side that's for QUICKSILVER and the clips will be from a surfing competition in PIHA, AUCKLAND NEW ZEALAND.\", \"The beach is shown and there are multiple people and tents and the people are watching and cheering on various different surfers who are surfing big and long waves.\", \"The outro appears and it's the same black screen with the logo and text as it was for the intro.\"]}, \"v_A-Oz6mBBBZQ\": {\"duration\": 25.36, \"timestamps\": [[0, 10.9], [12.17, 25.36]], \"sentences\": [\"Three girls are sitting on the beach, making a mound with sand and water.\", \" They use a bowl to form a mold.\"]}, \"v_aHzNMe-VKfE\": {\"duration\": 18.99, \"timestamps\": [[0, 3.23], [3.23, 8.36], [8.36, 13.39], [13.39, 18.99]], \"sentences\": [\"A little boy is in the house playing in his shirt and diaper.\", \" He has a little hockey stick and he is using it to swing at a rolling back.\", \" The ball keeps coming toward him and he keeps swinging trying to hit it.\", \" He is having a lot of fun and staying entertained  playing inside alone.\"]}, \"v_xgIxKDm9M38\": {\"duration\": 265.06, \"timestamps\": [[0, 45.06], [47.71, 62.29], [64.94, 157.71], [180.24, 200.12], [169.64, 241.2]], \"sentences\": [\"The man walks out from his house and opens his car door on a snowy day.\", \" The man lifts up the windshield wipers of his car.\", \" The man uses a house broom to sweep snow off of his car.\", \" The dog plays with the owners.\", \" The man gets in his car and backs it towards the house into a parking spot.\"]}, \"v_vFRSso8WQfY\": {\"duration\": 170.23, \"timestamps\": [[0, 46.81], [47.66, 123.41], [124.26, 170.23]], \"sentences\": [\"A woman is standing in a kitchen at the island in front of a blender and various ingredients.\", \" She places apples and sugar into the blender with ice, and blends them together.\", \" She then pours the mixture into two glasses while she continues talking.\"]}, \"v_USCVBB97pOc\": {\"duration\": 145.15, \"timestamps\": [[0, 29.76], [29.76, 60.96], [60.96, 103.06], [103.06, 145.15]], \"sentences\": [\"A man has a tool he uses to trim cat claws, he messes around with it a little bit and then he gets up to find his cat.\", \" He pets the cat a little bit as to not make it so suspicious and scared.\", \" He gets the kitty in a good position and starts feeling for her claws and one by one starts to clip them.\", \" Then he moves her the other arms and pets her some more, showing the difference between her clawed and declawed nails.\"]}, \"v_MhO48WnApoM\": {\"duration\": 143.69, \"timestamps\": [[0, 99.14], [99.14, 108.48], [108.48, 143.69]], \"sentences\": [\"There are people standing on a frozen body of water and are looking into a small hole that has a fishing wire in it and they watch it as it bobs up and down.\", \"The standing man pulls the pole and wire up higher and the man kneeling on the ice pulls the fish out of the ice water and puts it onto the ice.\", \" Another man takes a picture of the fish, the kneeling man unhooks it and the standing man picks it up, holds it by its gills and poses with it.\"]}, \"v_LvbM6zv8XVc\": {\"duration\": 184.25, \"timestamps\": [[0, 184.25], [42.38, 43.3], [58.04, 58.96], [179.64, 181.49]], \"sentences\": [\"People are dancing on the beach.\", \" A woman is laying down on a red towel.\", \" A man is laying on a green towel.\", \" Two dogs are next to them on the beach.\"]}, \"v_IV5llWEEfAw\": {\"duration\": 73.9, \"timestamps\": [[0, 73.9], [25.5, 59.86], [63.55, 69.47]], \"sentences\": [\"A sailboat sails through rough waters in the ocean.\", \" The skipper is seen manning the steering wheel at the back of the boat.\", \" The mast of the ship is seen in full view.\"]}, \"v_DDwBAbeGejE\": {\"duration\": 143.43, \"timestamps\": [[0, 17.93], [17.93, 26.53], [26.53, 37.29], [26.53, 114.03], [114.03, 143.43]], \"sentences\": [\"woman is sitting in studio giving the news.\", \" a person is in a yard sweeping dry leaves.\", \" old woman is being interviewed and is talking to the camera in a living room.\", \" a woman and a man are being interviewed and are talking to the camera while they are sweeping the leaves.\", \" old woman is agani alking and back in studio talking to the camera.\"]}, \"v_g6tF83rCXh0\": {\"duration\": 41.15, \"timestamps\": [[0, 5.55], [6.58, 31.89], [34.15, 41.15]], \"sentences\": [\"A female weight lifter is preparing to lift a barbell.\", \" She lifts with her knees, raising the bar to her chest.\", \" She then stands, lifting it over her head before dropping the barbell back to the ground.\"]}, \"v_okC18bPTils\": {\"duration\": 90.01, \"timestamps\": [[0, 0.45], [0, 50.86], [50.86, 90.01]], \"sentences\": [\"The man is standing above water before he goes scuba diving.\", \" He's underwater along with a few other people where there's shells and rocks in the sand.\", \" There is also wooden logs and small lobsters crawling around.\"]}, \"v_Nd209mI-wq0\": {\"duration\": 172.99, \"timestamps\": [[0, 138.39], [138.39, 172.99]], \"sentences\": [\"man is sitting in a music store playing an acoustic guitar and talking to the camera showing the ibanez guitar.\", \" man starts playing the guitar showing how the guitar sounds connected to an amplifier.\"]}, \"v_FGKdmKX1z64\": {\"duration\": 108.13, \"timestamps\": [[0.54, 53.52], [43.25, 108.13]], \"sentences\": [\"A man is seen speaking to the camera wearing a microphone and begins wiping down a window.\", \" He uses several tools and objects to clean the glass and continues wiping down while looking at the camera.\"]}, \"v_8EyYHnijfnI\": {\"duration\": 130.66, \"timestamps\": [[0, 130.66], [19.6, 75.78], [77.09, 89.5], [101.91, 130.66]], \"sentences\": [\"A woman sits in a chair.\", \" Another woman puts something up her nose.\", \" She then pierces it with a needle.\", \" She puts a piece of jewelry on it next.\"]}, \"v_yjd9UOJdes8\": {\"duration\": 123.04, \"timestamps\": [[0, 38.14], [35.07, 121.81]], \"sentences\": [\"A girl is shown speaking to the camera as well as dancing and then is seen playing the violin.\", \" She plays the instrument while dancing at the same time and ends with her speaking to the camera.\"]}, \"v_pULb9WvZwU4\": {\"duration\": 118.21000000000001, \"timestamps\": [[0, 10.05], [8.27, 39.01], [35.46, 54.38], [54.38, 79.2], [78.02, 118.21], [109.94, 118.21]], \"sentences\": [\"Multiple men are loaded onto a crane boom bucket.\", \" When three men are safely aboard, the crane begins to lift them up in the air slowly.\", \" Once they reach the top of the crane, the view switches and they can be seen looking over the landscape.\", \" The man that is preparing to bungee jump is at the edge of the boom looking around nervously.\", \" One at a time the men jump out of the boom and hang above a small body of water.\", \" There certificate of accomplishment ends the video.\"]}, \"v_DPsa28MmdoI\": {\"duration\": 198.69, \"timestamps\": [[0, 8.94], [9.93, 193.73], [193.73, 198.69]], \"sentences\": [\"The words \\\"The Shotover River In Flood\\\" appear on screen.\", \" First person video shows a raft full of people heading down and extremely rough river in-between rocky cliffs.\", \" The words \\\"Big thanks to River Guide J-Rod\\\" appear on screen.\"]}, \"v_JqFFXs0RAnI\": {\"duration\": 38.55, \"timestamps\": [[0, 11.56], [10.6, 22.55], [22.55, 35.08], [35.08, 37.78]], \"sentences\": [\"A person competes solving a cube puzzle behind a chronometer, while a woman takes notes and watch the person.\", \" The person solves the puzzle, then he stands, raise his arms and walk.\", \" The person shake hands with people in the room.\", \" Suddenly, the person runs making thumps up and pose for a picture.\"]}, \"v_eypKc4FyZ2s\": {\"duration\": 198.07, \"timestamps\": [[0, 21.79], [21.79, 56.45], [56.45, 127.75], [127.75, 198.07]], \"sentences\": [\"A boy with a gardening pot is watering her bush outside in the yard.\", \" He and another boy get together and the other boy begins to start playing croquet while he talks.\", \" Another taller boy comes and joins them and talks about the game.\", \" Then, They start to hit balls rying to make it through the obstacles.\"]}, \"v_ReOsTqcQBmY\": {\"duration\": 187.73, \"timestamps\": [[0, 23.47], [0, 178.35], [24.41, 40.36], [40.36, 45.99], [45.99, 56.32], [48.81, 55.38], [57.26, 76.97], [77.91, 108.89], [110.76, 145.49], [124.84, 144.55], [147.37, 178.35]], \"sentences\": [\"Three people are jumping rope and doing tricks.\", \" Other people sit and stand at tables in the background and watch or film the jump ropers.\", \" Four different people are now jumping rope and doing tricks.\", \" Another group of three people shows off their jump rope skills.\", \" Another group of three in red shorts jumps rope.\", \" People in the background walk around.\", \" A group of four girls jump rope.\", \" The first group of people jumps rope with a fourth person.\", \" A different group of four in red and black jump rope.\", \" A different team of jump ropers watches in the background.\", \" A team of four in black and yellow jump rope.\"]}, \"v_IKeV3kdX-_I\": {\"duration\": 35.78, \"timestamps\": [[0, 12.17], [9.48, 35.78]], \"sentences\": [\"A cowboy in a horse ran towards the field and chase a cattle.\", \" The cowboy got off the horse and chase after the cattle, when he catched the cattle he tied the cattle.\"]}, \"v_3PiN6rDgg_E\": {\"duration\": 208.4, \"timestamps\": [[0, 208.4], [0, 21.88], [14.59, 28.13], [26.05, 72.94], [72.94, 82.32], [82.32, 208.4]], \"sentences\": [\"A woman demonstrates how to use one container of powdered pigment to make many different hair,  nail, and face makeup products.\", \" A woman talks to the camera in front of a counter filled with makeup.\", \"  The camera shows different makeup pieces with accompanying descriptions cards in between cutting back to the woman talking.\", \"  The woman begins to apply some of the makeup to her face, including lips and to her nails via nail polish.\", \"  The woman uses some of the makeup to make hair streaks in another persons hair.\", \" The woman then uses the containers of powdered makeup to make foundation and eye shadow before smiling and displaying the entire line of colors and displaying a marketing graphic.\"]}, \"v_jCVi9xt3GUY\": {\"duration\": 40.59, \"timestamps\": [[10.55, 24.15], [24.15, 35.72], [35.72, 37.95]], \"sentences\": [\"A woman is washing dishes with soap and a scrub in her kitchen sink.\", \" She takes the scrub that is soaked in liquid soap and scrubs it on the bowl to thoroughly clean it.\", \" She places the plates and bowls on top of each other in the sink as she washes them.\"]}, \"v_UCOn2HkJJt8\": {\"duration\": 185.16, \"timestamps\": [[0, 15.74], [15.74, 25], [25, 64.8], [64.8, 87.02], [87.02, 91.65], [91.65, 180.53], [181.45, 185.16]], \"sentences\": [\"A man rides a four wheeler in a field.\", \" The man stands up on the four wheeler and hits his break lights to inspect a target.\", \" A man holding a bow and arrow is talking and demonstrating features on the bow he's holding.\", \" A website scrolls across the screen while the man fires the bow at a target.\", \" The camera then zooms in on the target.\", \" The website scrolls across the screen again and the man fires three more arrows.\", \" The screen changes to gray and the man shows the brand of bow is a Bowtech.\"]}, \"v_RztM-NVwV5o\": {\"duration\": 235.43, \"timestamps\": [[0, 27.07], [27.07, 90.64], [90.64, 235.43]], \"sentences\": [\"woman is in studio talking in the news holding a paintball gun and shot a wall.\", \" a man and a woman are in a field doing shots and playing with the small pain balls.\", \" they recharge the guns and are playing in a green backyard paintball practicing shots and wearing masks.\"]}, \"v_bnItfkwBogY\": {\"duration\": 73.05, \"timestamps\": [[5.84, 27.03], [27.03, 33.6], [34.33, 65.75]], \"sentences\": [\"A woman performs a dance routine with a hoop on a stage.\", \" The woman performs the routine with two hoops.\", \" The woman returns to performing with one hoop.\"]}, \"v_1V0TqgcXSVk\": {\"duration\": 104.84, \"timestamps\": [[0, 12.06], [14.68, 92.78], [93.83, 104.84]], \"sentences\": [\"A woman is standing in a room, surrounded by yoga gear.\", \" She then shows how to use a stepper to exercise, stepping on and off, side to side.\", \" She talks a little longer about the exercise.\"]}, \"v_Gba1MksaNBQ\": {\"duration\": 192.96, \"timestamps\": [[0, 83.94], [90.69, 192.96]], \"sentences\": [\"Some men are playing pool as three boxer dogs watch.\", \" The boxers stand by the pool table, trying to snap at the balls as they are shot with the cues.\"]}, \"v_o8PA6XW32oI\": {\"duration\": 31.58, \"timestamps\": [[0, 3], [3, 27.79], [27.79, 31.58]], \"sentences\": [\"a person begins to solve  a rubix cube.\", \" They start turning it in all directions.\", \" They have solved the rubix cube.\"]}, \"v_M0ygYlmTHy4\": {\"duration\": 202.57999999999998, \"timestamps\": [[3.04, 192.45], [36.47, 95.21], [131.68, 195.49]], \"sentences\": [\"A group of people play water volleyball in an outdoor pool.\", \"  The people begin to play competitively with volleyball in the water.\", \"  the camera changes angle and catches the people playing from behind with the net between the people and the camera.\"]}, \"v_wfFnIYdSjCI\": {\"duration\": 26.12, \"timestamps\": [[0.39, 14.89], [11.49, 24.82]], \"sentences\": [\"A small group of children are seen running around a lacrosse field playing a game with one another.\", \" The camera continues to follow the people around as they chase the ball and run up and down the field.\"]}, \"v_hW25ecQ1GUc\": {\"duration\": 43.07, \"timestamps\": [[0.65, 11.2], [13.57, 31.66], [31.23, 42.21]], \"sentences\": [\"A close up of a chair is seen followed by a woman walking into frame.\", \" The woman sits in the chair and begins putting a pair of shoes on.\", \" She puts both on and stands up to move her feet around.\"]}, \"v_6WlnhNQOWFA\": {\"duration\": 127.15, \"timestamps\": [[3.18, 69.93], [59.76, 122.07]], \"sentences\": [\"A man is seen standing before a game of hopscotch drawn out and begins jumping down the path while others follow.\", \" The camera continues to follow the man as he jumps down the path and captures several others doing the same as well.\"]}, \"v_w6P9JrTGRlE\": {\"duration\": 102.35, \"timestamps\": [[0, 18.94], [12.79, 32.24], [31.73, 65.51], [65.51, 81.37], [81.88, 102.35]], \"sentences\": [\"A dog is dressed in clothes and a human is behind him only showing his hands.\", \" As to look like the dog is part human and doing human like stuff.\", \" He is feeding himself breakfast and then wipes his face.\", \" After that he grabs a cup of coffee to drink.\", \" He struggles to grab another napkin to wipe his face again.\"]}, \"v_g1lqpONbOKY\": {\"duration\": 19.46, \"timestamps\": [[0, 8.17], [8.37, 10.8], [11.09, 19.46]], \"sentences\": [\"We see a girl gymnast on a balance beam performing.\", \" The girl prepares to do a flip and falls on the bar and hurts herself.\", \" The girl stands crying and a lady comes to help her.\"]}, \"v_aSPPD0fDI3g\": {\"duration\": 197.79, \"timestamps\": [[0, 11.87], [11.87, 193.83], [78.13, 93.95], [115.71, 153.29], [179.99, 189.88], [194.82, 197.79]], \"sentences\": [\"Make up is shown on a table.\", \" A woman sits on her bed and applies makeup to her face.\", \" She uses a large brush to apply powder to her face.\", \" She puts mascara on her eyelashes.\", \" She puts lipstick on her lips.\", \" She puts a backpack on and walks out the door.\"]}, \"v_0xtS7g7vZLU\": {\"duration\": 145.2, \"timestamps\": [[0, 23.23], [23.23, 99.46], [98.73, 143.74]], \"sentences\": [\"A camera pans out a wooden table with a boy with glasses showing it off.\", \" The boy pushes various pucks across the wooden board to see where it ends up.\", \" The boy pushes several more pucks and the boy holding the camera walks to the end to show the results.\"]}, \"v_Z_lah8-xYx8\": {\"duration\": 27.42, \"timestamps\": [[0, 3.7], [3.84, 7.4], [8.23, 16.87], [17.28, 27.42]], \"sentences\": [\"A man and woman walk out onto the pier of a boat.\", \" They are playing a sweeping game.\", \" The woman pushes the puck, which slides into the camera.\", \" The scene is repeated in slow motion.\"]}, \"v_RmTDHszp1v0\": {\"duration\": 127.36, \"timestamps\": [[7, 119.08], [43.3, 65.59], [66.87, 119.08]], \"sentences\": [\"A man in a white shirt is standing next to parallel bars.\", \" A boy jumps onto the parallel bars and starts swinging back and forth.\", \" The boy starts doing a routine on the parallel bars.\"]}, \"v_zNMLz9GIQLk\": {\"duration\": 138.27, \"timestamps\": [[0, 93.33], [33.18, 138.26]], \"sentences\": [\"A man is seen using a wet rag on a window and moving the cleaner all around the glass.\", \" He continuously dips the object in cleaner and cleans all around the glass while using a rag close behind.\"]}, \"v_v8jzbjQqNhE\": {\"duration\": 211.28, \"timestamps\": [[0, 16.9], [16.9, 27.47], [21.13, 26.41], [26.41, 52.82], [44.37, 45.42], [53.88, 62.33], [62.33, 79.23], [91.91, 128.88], [110.92, 211.28], [119.37, 130.99], [154.23, 211.28]], \"sentences\": [\"A man holding his kayak talk to the camera.\", \" He is in his kayak paddling downstream.\", \" Another rower passes him and does a flip.\", \" He talks to the camera again.\", \" We see the parking lot off camera.\", \" Back in the water passing a waterfall.\", \" Talking head to camera again.\", \" Point of view shots from his kayak.\", \" Talking head as he very animatedly talks to the camera.\", \" Point of view from the boat following another rower.\", \" Talking head interspersed with shots from the water illustrating the technques he talks about in his talking head shots.\"]}, \"v_Yh9eGll8fYQ\": {\"duration\": 56.01, \"timestamps\": [[0.28, 28], [20.72, 54.89]], \"sentences\": [\"Two people are seen speaking to one another and leads into a man standing on the edge and jumping.\", \" The man's jump is shown several times from different camera as he jumps off the side and back up again.\"]}, \"v_l7nsRRyzD4k\": {\"duration\": 32.56, \"timestamps\": [[0, 22.3], [2.93, 4.72], [10.74, 19.04], [22.46, 28.32], [28.49, 32.56]], \"sentences\": [\"A group of people is building sand castles on the beach.\", \" A girl waves to the camera.\", \" A man is seen digging in the sand.\", \" A girl is seen looking through a beach bag.\", \" The girl finds what she is looking for.\"]}, \"v_bTE3HEy_kVk\": {\"duration\": 56.4, \"timestamps\": [[0, 2.82], [3.1, 14.1], [14.66, 17.2], [17.2, 26.79], [27.64, 34.97], [35.25, 47.94], [48.22, 56.4]], \"sentences\": [\"We see two roof images side by side.\", \" We then see images of one roof.\", \" We see the roof up close and see moss growing on it.\", \" we see the insulation and the roof as it is being installed.\", \"A man is screwing the roof into place.\", \" We see the finished new roof.\", \" We see the ending screen credits.\"]}, \"v_XSDIekFXkv0\": {\"duration\": 78.6, \"timestamps\": [[5.11, 21.22], [22.01, 33.4], [33.4, 58.95], [60.92, 72.71]], \"sentences\": [\"A person stands on his hands on a trampoline above a swimming pool, then the boy flips in the air and dives into the water.\", \" After, the boy stands on the trampoline with the back facing the pool, then jumps, flips and dive in the water.\", \" Now, the boy stands on the trampoline facing the pool, then jumps, flips and dive in the water, then do the same but this time with the back facing the pool.\", \" At the end, the boy enters the trampoline running and flip in the air, then he stands on the trampoline and flips and end diving in the water.\"]}, \"v_QGY7zA03RkE\": {\"duration\": 76.44, \"timestamps\": [[0.38, 53.89], [0.38, 17.58], [17.96, 21.02], [47.78, 54.27], [54.66, 76.44]], \"sentences\": [\"A group of people play ping pong with automated machines and robots.\", \" One man plays ping pong with an orange machine with a red paddle attached to the end of a robotic arm.\", \"  A man and a child play ping pong across a blue ping pong table as a man appears standing next to an orange automated machine and talks.\", \"  Another man plays ping pong across a blue ping pong table with a white, metal, robot.\", \"  A man in a suit and tie talks while a hand places an orange ball into the automated two prong hand of a white robot before going to an area in a room filled with orange robotic machines.\"]}, \"v_rzomS2gZGQ4\": {\"duration\": 11.87, \"timestamps\": [[0, 2.73], [3.26, 11.87]], \"sentences\": [\"A man stands by his ice ridden car.\", \" He rakes the entire sheet onto the ground, watching it shatter.\"]}, \"v_DthkauVLag0\": {\"duration\": 52.62, \"timestamps\": [[0, 8.68], [8.68, 52.62]], \"sentences\": [\"A man is shown smiling and talking into the camera and holding a young boy up on a sink.\", \" The man holds the boys eyes open while he laughs and brushes his teeth.\"]}, \"v_zyPisOj2Tdo\": {\"duration\": 93.02000000000001, \"timestamps\": [[0, 15.81], [18.6, 85.58], [86.04, 93.02]], \"sentences\": [\"A woman peforms before a court on a basketball gym.\", \" She is a majorette, flipping and throwing her baton into the air.\", \" The crowd watches as she flips, throws, and turns.\"]}, \"v_jMQgOcM9vZA\": {\"duration\": 149.0, \"timestamps\": [[0, 9.69], [9.69, 11.92], [11.92, 28.31], [28.31, 102.07], [120.69, 142.3], [142.3, 149]], \"sentences\": [\"Multiple short clips play of different hockey moves and the names of the moves appear on the screen with it.\", \" When the clips are done in intro screen appears with a cloud and the hockey ground as backdrop, the NHL logo and the words \\\"HOCKEY SKILLS\\\".\", \" A group of people wearing all of their hockey gear are standing or kneeling on the ground while the look at a man who is standing and talking without a helmet on his head and the words on the screen say his name is \\\"KEVIN WEEKES\\\".\", \"The man begins to demonstrate multiple different moves near the goal and he continues to talk throughout all of the demonstrations as the rest of the people watch him.\", \"When the man is done talking and demonstrating other people in the group go up to the goal separately and they each do what they man was demonstrating.\", \"A screen appears with a backdrop of clouds on top and hockey rink at the bottom with the logo in the middle and the words \\\"HOCKEY SKILLS\\\".\"]}, \"v_SaBcTNvRA6g\": {\"duration\": 142.57, \"timestamps\": [[7.13, 13.54], [19.25, 22.81], [27.09, 29.94], [35.64, 45.62], [52.04, 54.18], [54.89, 63.44], [67.72, 93.38], [97.66, 124.04], [114.06, 124.04]], \"sentences\": [\"A woman is seen showing off a glass of honey.\", \" She shows off the bottle of honey as well as a bowl of water and a towel.\", \" She shows her hair pulled back.\", \" She opens the bottle of honey and lathers it all over her face.\", \" She holds up a cat.\", \" She returns to lathering her face and waits in anticipation.\", \" While she waits, she plays some instruments and with her cat.\", \" Finally, she rinses her face with water and dries her face off with a towel.\", \" She proudly shows off her bottle of honey.\"]}, \"v_V5MvrOzQWZo\": {\"duration\": 94.18, \"timestamps\": [[0, 3.77], [3.77, 89], [24.02, 28.25], [42.85, 54.15], [64.04, 72.05], [81, 90.41], [90.41, 94.18]], \"sentences\": [\"A gymnast is standing near a bar with her hands in the air.\", \" The girl gets on the bar and performs.\", \" The girl flips on the bar.\", \" The girl performs 2 flips and almost falls off the bar.\", \" The girl  does 2 perfect flips.\", \" The girls flips, then runs, flips and dismounts.\", \" The cloud claps as she walks away.\"]}, \"v_EwzkySgI6CQ\": {\"duration\": 130.6, \"timestamps\": [[0, 45.06], [53.55, 114.93], [115.58, 130.6]], \"sentences\": [\"A blonde woman is lying on a table as a tattoo artist is putting a design on her pelvis.\", \" She cringes in pain as he works.\", \"We see a temporary close up of her heaving abdomen as he continues.\"]}, \"v_WKLLTGbDI7w\": {\"duration\": 79.44, \"timestamps\": [[0, 79.44], [15.09, 51.63], [52.82, 79.44]], \"sentences\": [\"The recipe for making limeade is shown.\", \"  Limes are juiced and then combined with water and sugar.\", \"  The whole thing is stirred.\"]}, \"v_BAgUUUOGaxI\": {\"duration\": 165.19, \"timestamps\": [[2.48, 103.24], [70.2, 163.54]], \"sentences\": [\"A man is seen sitting in a busy city square playing an accordion while others watch.\", \" The man continues playing as people walk around and notice.\"]}, \"v_p6ea3QpXryw\": {\"duration\": 138.52, \"timestamps\": [[0, 9.7], [13.16, 124.67], [124.67, 138.52]], \"sentences\": [\"A dart board is shown against a wall.\", \" A man lifts his arm in slow motion, throwing darts one after another at the board.\", \" He walks up to the board and reaches for it.\"]}, \"v_P-ENnGQ_FuU\": {\"duration\": 74.17, \"timestamps\": [[0, 5.56], [6.3, 27.07], [29.67, 53.77], [55.25, 74.17]], \"sentences\": [\"A red car is shown with the words Unique Car Wash.\", \" Men are shown inside a car garage, soaping down a car with a sponge.\", \" They are then seen using a sprayer to clean the tires and spray the residue off the vehicle.\", \" They use rags to wipe it clean and detail the inside of the car.\"]}, \"v_LWJzkihZUWA\": {\"duration\": 41.77, \"timestamps\": [[0, 41.77], [24.44, 31.75], [39.48, 41.77]], \"sentences\": [\"We see a little girl putting makeup on her face at a toy vanity.\", \" She closes the makeup case and opens it back up.\", \" She rubs the tip of the brush with her finger.\"]}, \"v_jto8_gMKUjE\": {\"duration\": 109.61, \"timestamps\": [[0, 109.61], [48.23, 55.9], [55.9, 75.08], [84.95, 89.88], [89.88, 109.61]], \"sentences\": [\"The Pinta rowing team works together to make it down the whitewater.\", \"  They have a refreshing dip under a waterfall to cool off.\", \"  They pose together with other rafters.\", \"  Falling underwater can be a scary undertaking.\", \"  All in all it is a fun and relaxing time.\"]}, \"v_MiTTWddOuaM\": {\"duration\": 100.09, \"timestamps\": [[0, 15.01], [15.51, 33.03], [34.03, 42.04], [42.54, 95.08]], \"sentences\": [\"Two men walk in the street holding a box, then they assemble a soccer table.\", \" People plays soccer table in the street.\", \" After, the men carry the table and enters a train where they continue playing.\", \" After the man carry the soccer table to a park and other places where people play and paint it.\"]}, \"v_mW9iDH07j40\": {\"duration\": 106.19, \"timestamps\": [[0, 58.93], [58.93, 100.88]], \"sentences\": [\"A woman is seen putting on a jacket followed by her cutting parts of the vest off and holding up an iron.\", \" She then irons the shirts and finishes by putting the vest on.\"]}, \"v_19fGZFUE7yE\": {\"duration\": 112.18, \"timestamps\": [[0, 35.34], [15.7, 17.95], [29.17, 33.09], [35.34, 99.28], [99.28, 102.08], [102.64, 112.18]], \"sentences\": [\"A man in a black tuxedo is speaking to the camera.\", \" A person walks by in the background.\", \" A group of people walk by in the background.\", \" We see a game of poker being played.\", \" An odd man appears in front of the camera.\", \" We see the first man, then cards being dealt and we fade to a black screen.\"]}, \"v_KBfCXpgGhdw\": {\"duration\": 132.53, \"timestamps\": [[0, 13.92], [13.92, 26.51], [26.51, 40.42], [40.42, 107.35], [107.35, 132.53]], \"sentences\": [\"a lot of people are sitting on terraces in a big field and people is walking in the entrance of a big stadium.\", \" men are standing on a sandy area walking.\", \" man are talking to the camera standing on the sand.\", \"  men are standing on motorbikes getting ready for a motocross competition.\", \" man is talking to the camera and standing on a podium.\"]}, \"v_huo2ldsQHUI\": {\"duration\": 15.09, \"timestamps\": [[0, 1.81], [2.11, 12.38], [13.21, 15.09]], \"sentences\": [\"A bunch of people are inside a dimly lit gym.\", \" They are riding recumbent bikes while being led.\", \" They clap their hands and pedal quickly.\"]}, \"v_ibDWgL2D2l4\": {\"duration\": 24.6, \"timestamps\": [[0.74, 11.69], [8.24, 23.25]], \"sentences\": [\"A young child is seen holding a stick and hitting the pinata with the stick.\", \" Older women the bring hr back and have her hand the stick to another child.\"]}, \"v_JW5P5FdOrcw\": {\"duration\": 207.89, \"timestamps\": [[0, 72.76], [72.76, 97.71], [103.94, 142.4], [153.84, 193.34], [193.34, 207.89]], \"sentences\": [\"A woman is standing up talking and holding a blue mop.\", \" She is showing the bottom of the mop.\", \" A bottle of vinegar is shown on a table next to alcohol and soap.\", \" She begins mopping the hardwood floor.\", \" A dog is laying down on a bed.\"]}, \"v_5AoshxUQv0U\": {\"duration\": 16.07, \"timestamps\": [[0, 5.22], [5.46, 9.88], [10.28, 16.07]], \"sentences\": [\"A man in a blue shirt picks up a child.\", \" He lifts him up to sit on his shoulder.\", \" He throws the kid on his back onto a bed.\"]}, \"v_zLVNSgR4IoA\": {\"duration\": 60.56, \"timestamps\": [[0, 9.69], [8.48, 30.58], [28.46, 60.56]], \"sentences\": [\"The man is jumped to the two white poles and stand on his arms.\", \" The man in red shirt outside the court is watching the athlete as he swing on the pole.\", \" The athlete swing and then jumped of the pole and swing up and the air and landed on the mat.\"]}, \"v_hIjOvSJf9c0\": {\"duration\": 170.53, \"timestamps\": [[0, 43.48], [30.7, 87.82], [86.12, 146.65], [142.39, 170.53]], \"sentences\": [\"Two people are seen speaking to the camera and leads into a ruler being shown and the woman holding a sponge.\", \" She wipes down a wall while the man sands it down and then are seen measuring the length of the wall.\", \" Then they lay paper down, cut the paper, and align it onto the wall.\", \" They rub in the paper, press it along the wall, and smile back at the camera.\"]}, \"v_cudeag10U7Q\": {\"duration\": 168.52, \"timestamps\": [[0, 15.17], [22.75, 136.5], [139.03, 168.52]], \"sentences\": [\"A woman is riding a bike down the street, then others are shown as well.\", \" The people speak to the camera in between takes of riding their bikes on city roads.\", \" The bike is called an elliptico, enabling them to stand and pedal as they ride.\"]}, \"v_R7vb6cuP6GE\": {\"duration\": 79.18, \"timestamps\": [[1.98, 39.99], [30.09, 73.24]], \"sentences\": [\"A person is seen speaking to the camera while holding a snowboard and leads into him riding down a snowy hill.\", \" The man continues riding the snowboard down the hill and ends with him stopping at the bottom.\"]}, \"v_xbA294b3Z5c\": {\"duration\": 159.91, \"timestamps\": [[4, 83.15], [66.36, 157.51]], \"sentences\": [\"A woman is seen speaking to the camera while showing off her nails and leads into her holding up a contact lens.\", \" The girl then pours liquid out into a container and them demonstrates how to properly put in and take on a contact lens.\"]}, \"v_A1U24_iC6ww\": {\"duration\": 91.05, \"timestamps\": [[0, 10.02], [0, 59.64], [0, 67.83], [0, 89.23]], \"sentences\": [\"Cement is being made in the cement mixer.\", \" Three Hispanic men are laying the foundation of the pool with a cement gun.\", \" A man that is dressed in white is doing the cement finish as the other men lay the cement with a gun.\", \" Once the cement is done all the men start to do finish.\"]}, \"v_dla6qDuAXTw\": {\"duration\": 49.97, \"timestamps\": [[0, 16.74], [16.24, 49.97]], \"sentences\": [\"An older man is shown standing behind a swing set while pushing a small girl back and fourth.\", \" He grabs and holds the girl and gives her several pushes while the girl sticks her head back and smiles.\"]}, \"v_TgantuXBiJg\": {\"duration\": 129.99, \"timestamps\": [[5.2, 65.64], [37.7, 128.04]], \"sentences\": [\"A young girl is seen putting makeup on outside while other people on the side watch and also play with makeup.\", \" The girls continue to attempt to put makeup on as the camera pans back and fourth between the two.\"]}, \"v_Ggw7rtn3J-8\": {\"duration\": 61.42, \"timestamps\": [[1.84, 60.8], [6.14, 18.12], [19.35, 42.68], [48.52, 61.42]], \"sentences\": [\"A commercial exhibits a varied array of welding equipment and demonstrates how to weld using the equipment.\", \"  A welding helmet, clamps,welding kit and gloves are shown in line on a white background.\", \"  A person begins to use the welding tools to weld inside of a car producing fire sparks as the welding takes place.\", \"  a closeup of the welded area is shown before a marketing template presents across the screen.\"]}, \"v_sbvk9FNaAH0\": {\"duration\": 178.26, \"timestamps\": [[0, 47.24], [44.57, 94.48], [96.26, 159.54], [157.76, 178.26]], \"sentences\": [\"A hand is seen playing with a machine followed by shots of a beach and a young boy carrying a wind sail.\", \" Many people stand on the beach walking around and leading into a man pulling up a sail on a boat and people preparing to wind surf.\", \" Several shots are shown of people riding along the water with a kite as well as people on a boat and various landscapes.\", \" In the end a shot of a sunset is shown.\"]}, \"v_xTEXsZO-PVI\": {\"duration\": 62.62, \"timestamps\": [[0, 62.62], [2.5, 15.03], [6.89, 62.62], [25.05, 33.19]], \"sentences\": [\"A small sail boat with two men in it is pulling a water skier behind it.\", \"  A wind surfer goes by.\", \"  A man in the sail boat leans back to pull on the sail in the boat.\", \"  Another wind surfer goes by.\"]}, \"v_xAaHXwTz1Ug\": {\"duration\": 47.81, \"timestamps\": [[0, 6.69], [7.65, 12.43], [16.73, 25.82]], \"sentences\": [\"A kite is flying in the sky.\", \" A little girl is holding the string of the kite.\", \" She's walking backwards and talking to someone while watching the kite.\"]}, \"v_P7lUYSLtErY\": {\"duration\": 150.93, \"timestamps\": [[0, 147.91], [0, 150.93], [38.49, 46.03], [148.67, 150.93]], \"sentences\": [\"A man is in a dance room that has mirrors along the walls, wooden floors, and he's dancing alone.\", \" There is a woman that is standing in the corner and recording him the whole time.\", \" When he moves more to the other side of the room as he's dancing, more people watching and recording him are revealed.\", \"The man does he last dance move, smiles, takes a few steps and then takes a bow.\"]}, \"v_q7Ap96aMkZ8\": {\"duration\": 17.28, \"timestamps\": [[0, 16.41], [5.27, 13.99], [13.99, 17.28]], \"sentences\": [\"We see people jogging on a city street.\", \" We zoom in on a shirtless man juggling.\", \" We pan backwards towards the other runners.\"]}, \"v_F4GwrEQUvDc\": {\"duration\": 79.65, \"timestamps\": [[0, 23.5], [23.5, 79.65]], \"sentences\": [\"An athlete runs with a stick, then he shoot the javelin and walks away in a stadium.\", \" Then, a man holds a javelin and runs to throw the javelin, then another athlete also shoot the javelin.\"]}, \"v_lhdro5SnxU0\": {\"duration\": 227.37, \"timestamps\": [[0, 32.97], [32.97, 39.79], [50.02, 59.12], [84.13, 161.43], [161.43, 180.76], [184.17, 212.59], [212.59, 227.37]], \"sentences\": [\"A man is sitting on the stairs talking.\", \" He is standing over a sink.\", \" He sprays the sink with a cleaning agent.\", \" He takes a sponge and scrubs the inside of the sinks.\", \" He turns the water on and sprays the hose around the sink.\", \" He wipes the sink off with a towel.\", \" The man is sitting on the stairs again.\"]}, \"v_SqfB4ohs2Ro\": {\"duration\": 237.17000000000002, \"timestamps\": [[0, 26.09], [27.27, 47.43], [48.62, 54.55], [55.73, 154.16], [156.53, 160.09], [163.65, 215.82], [179.06, 195.66], [218.2, 237.17]], \"sentences\": [\"We see an opening screen a map and still images.\", \" Men hammering roof tiles on a panel of roof inside.\", \" We see a title screen.\", \" We see a man tap a hook into the wood.\", \" We see a title screen again.\", \" We see the men working on roofs.\", \" We see two screens with men working on roofs side by side.\", \" We see the ending title screens.\"]}, \"v_IsVpeZoK5FI\": {\"duration\": 70.66, \"timestamps\": [[1.77, 36.04], [32.5, 70.31]], \"sentences\": [\"A large group of people are seen exercising in a class together with a man leading them in front.\", \" The group continues to move around together over a bar and ends with text across the screen.\"]}, \"v_CbfgZlo0Ut4\": {\"duration\": 16.12, \"timestamps\": [[2.09, 6.28], [6.45, 10.39], [10.47, 13.78]], \"sentences\": [\"A man talks inside a car dealer.\", \" After, a car exits a car wash.\", \" A crew of people clean a car by hand.\"]}, \"v_5nvximBXhFI\": {\"duration\": 190.94, \"timestamps\": [[0, 19.09], [19.09, 32.46], [32.46, 92.6], [92.6, 190.94]], \"sentences\": [\"A tall garage building is shown in the dark and then several teen age boys appear skateboarding in the inside of it.\", \"As they come around the corner,they hold on to each others shirts and come down the slanted road in a single file line and a boy is shown holding a camera with a selfie stick recording the action.\", \"After,a black male appears talking in the car and the boys are then shown walking up a set of stairs.\", \"The action continues and all the boys join one another back in the garage and the male that was talking in the video is seen skating with the rest of the boys.\"]}, \"v_fVtiM88rOJI\": {\"duration\": 175.54, \"timestamps\": [[0, 27.21], [28.96, 95.67], [96.55, 144.82], [147.46, 175.54]], \"sentences\": [\"A telescopic view of multiple people dressed in biking gear is shown.\", \" The crowd spreads out, walking around with guns in hand.\", \" They aim at various objects.\", \" The men hide behind a wall, shooting at each other as they run by.\"]}, \"v__1JGrGGCY9k\": {\"duration\": 184.51, \"timestamps\": [[2.77, 59.96], [62.73, 131], [112.55, 181.74]], \"sentences\": [\"A large group of people are seen wandering around a dance studio with a man in front.\", \" The man then begins to lead a dance class in front of the group of people.\", \" The people continue dancing around following the man and moving their arms and legs around.\"]}, \"v_SID0y9y6Uk4\": {\"duration\": 140.18, \"timestamps\": [[2.8, 11.21], [2.8, 133.87], [12.62, 21.73], [12.62, 115.65], [28.74, 84.81], [72.19, 84.81], [6.31, 124.76]], \"sentences\": [\"Two men prepare for a fencing match.\", \" The video shows several highlights of people fencing each other in various matches.\", \" Some win the matches quite quickly.\", \" Two men constantly go back and fourth towards each other.\", \" The man wins over and over again.\", \" He is shown practicing for his upcoming matches against another.\", \" He seems to win over and over again.\"]}, \"v_IaRYt0J7pHI\": {\"duration\": 193.73, \"timestamps\": [[0, 193.73], [19.37, 193.73], [20.34, 193.73]], \"sentences\": [\"people are standing in a hair salon sitting on chairs.\", \" woman is standing behind anoter drying her hair combing it and talking to the camera.\", \" woman is sitting on a chair while woman behind her is drying her hair.\"]}, \"v_aR05GUXDiYg\": {\"duration\": 143.45, \"timestamps\": [[0, 63.84], [57.38, 143.45]], \"sentences\": [\"A male player in yellow and black shirt is carrying a small kid who is wearing the same shirt while they are being interviewed by the reporter who is wearing white shirt and holding a microphone.\", \" Different teams in different uniform colors are playing soccer in the table.\"]}, \"v_MERZe5qdfWc\": {\"duration\": 128.08, \"timestamps\": [[1.28, 45.47], [25.62, 84.53], [85.17, 122.96]], \"sentences\": [\"Various shots of a snowy mountain are shown as well as a person riding up a hill.\", \" The person looks to others around him and is seen riding down mountain.\", \" The person rides down several times more with people attached on the sides.\"]}, \"v_I58i4uJkHJ0\": {\"duration\": 158.73, \"timestamps\": [[0, 27.78], [27.78, 70.64], [71.43, 125.4], [126.99, 158.73]], \"sentences\": [\"A female Russian gymnast is on a mat in front of a large arena with several people watching her.\", \"The girl then starts doing a series of cartwheels and ends up jumping on the balance beam to do her routine.\", \"Once she is done,the girl ends doing several tricks and walks off to the side.\", \"People begin to cheer for her and her replay is shown,and her score of approximately 28 is shown across the bottom of the screen.\"]}, \"v_EO9ZKeBSGSw\": {\"duration\": 15.54, \"timestamps\": [[0, 2.95], [2.87, 8], [8, 13.52], [13.52, 15.07]], \"sentences\": [\"A girl in a baseball uniform is standing at the end of a hopscotch game.\", \" A girl in a red shirt is playing hopscotch.\", \"  A ball player is playing hopscotch.\", \" The girls laugh at each other.\"]}, \"v_eRh6V0bcBpU\": {\"duration\": 66.27, \"timestamps\": [[0, 7.95], [7.62, 26.18], [25.18, 45.39], [45.73, 66.27]], \"sentences\": [\"Inside a man and a woman are playing a game of raquet ball.\", \" She begins to talk about it for a little bit very causally.\", \" Then, she goes to practice hitting it by herself for a little bit.\", \" This is a game she really enjoys to play, its a hobby.\"]}, \"v_Fhk2t6beztU\": {\"duration\": 14.42, \"timestamps\": [[0, 6.63], [6.2, 14.42]], \"sentences\": [\"A girl is seen rollerblading down a long road with several people walking around her.\", \" The camera zooms in on her face and shows all the people around the area followed by the cameraman's feet.\"]}, \"v_8GJWokVCzUM\": {\"duration\": 42.68, \"timestamps\": [[0, 42.68], [1.28, 40.97]], \"sentences\": [\"This man is wearing a red tank top, black shorts, and shoes.\", \" He runs on the race track and the he does the triple jump in which he almost makes it to the end.\"]}, \"v_JH-Q5JNTgwE\": {\"duration\": 215.69, \"timestamps\": [[0, 48.53], [46.37, 165], [152.06, 209.22]], \"sentences\": [\"A camera pans around a city and leads into several clips of people playing in a casino.\", \" A man is seen speaking to the camera as well as being interviewed by the news.\", \" More men are seen being interviewed while showing off clips of the casino.\"]}, \"v_4WrU5OdkvY0\": {\"duration\": 81.13, \"timestamps\": [[0.81, 15.82], [18.66, 58.01], [56.79, 77.48]], \"sentences\": [\"A man is seen stretching on the floor followed by people fencing with one another.\", \" People move back and fourth around an arena fencing with one another and the camera capturing their movements.\", \" They continue fighting back and fourth and end by walking away.\"]}, \"v_hQIwXufRVGY\": {\"duration\": 56.87, \"timestamps\": [[0, 7.39], [7.68, 41.23], [42.08, 56.87]], \"sentences\": [\"A large black dog is walking down the street.\", \" He is holding the leash of another dog in his mouth.\", \" The second dog allows the first to lead him wherever he goes.\"]}, \"v_UGCn1zgYboQ\": {\"duration\": 23.94, \"timestamps\": [[0.36, 11.97], [8.62, 23.46]], \"sentences\": [\"One man is seen moving a fooseball table around quickly as possible while another man watches on the side.\", \" The men then play a game against one another while one continues to move the poles quickly.\"]}, \"v_xsRNDo8Upys\": {\"duration\": 204.27, \"timestamps\": [[5.11, 92.94], [89.88, 197.12]], \"sentences\": [\"A large group of dancers are seen standing on a stage and beginning to perform a routine.\", \" The girls continue dancing with one another and ending by holding a pose.\"]}, \"v_WQXoBfyUpaY\": {\"duration\": 159.34, \"timestamps\": [[0, 3.98], [11.95, 148.98], [25.49, 32.66], [48.6, 52.58], [52.58, 54.17], [68.51, 81.26], [90.82, 97.99], [97.99, 105.16], [119.5, 126.67], [149.78, 159.34]], \"sentences\": [\"We see a man and a woman enter a bar room in costumes.\", \" The man and woman perform a dance.\", \" The man flips the woman and swings her around.\", \" The man picks up the woman and puts her on his shoulders.\", \" He then flips her off and onto the ground.\", \" The man puts the lady on his shoulder and flips her two times.\", \" The man spins the lady around and around and dips the lady.\", \" The crowd claps for the people.\", \" The man spins the lady around.\", \" The dances finish and take their bows and shake hands.\"]}, \"v_w4QM4nztkkE\": {\"duration\": 131.98, \"timestamps\": [[0, 9.9], [9.24, 39.59], [39.59, 83.15], [83.15, 131.98]], \"sentences\": [\"A wrestler is in the middle of the ring waiting for his opponent.\", \" Once he comes in they grab a hold of a rope and begin to play tug of war with it, pulling each other.\", \" They struggle trying to beat the other when finally the red head wrestler makes the other fall.\", \" He gloats, jumping up and down and banging his hands against his chest.\"]}, \"v_ctHNLEOtgPY\": {\"duration\": 237.01, \"timestamps\": [[0, 7.11], [24.89, 60.44], [24.89, 71.1], [59.25, 154.05]], \"sentences\": [\"A man crouches in a dance studio.\", \" He lifts himself onto his hands.\", \" He holds his feet up in the air.\", \" He then lays on his back on the ground.\"]}, \"v_fmdG9uPnWHQ\": {\"duration\": 109.74000000000001, \"timestamps\": [[0, 15.36], [10.97, 15.91], [15.36, 29.63], [29.63, 40.6], [40.05, 51.03], [51.58, 59.81], [59.81, 69.68], [69.68, 89.99], [90.53, 109.74]], \"sentences\": [\"a blonde woman is playing with dogs, she is kissing them and giiving them a shower, the woman is holding a scissor and is cutting the dog's hair.\", \" blonde woman is with a beatiful white dog in a table a veterinarian's office.\", \" the woman is with the black dog and is styling the dog's hair.\", \" woman shows their diplomas and awards and is with a white puddle combing her hair.\", \" woman comb the black dog's hair and plays with it.\", \" woman holds the white dog paw and cut her nails.\", \" woman is with the black dog giving him a shower and styling his hair.\", \" woman is talking while in the bottom a blonde woman is combing a white puddle.\", \" blonde woman holds the white puddle and is talking to the camera giving the web adress to the dog salon white shows how comb and shower the dogs.\"]}, \"v_8_RfK2rp2To\": {\"duration\": 94.18, \"timestamps\": [[0.94, 35.32], [27.78, 75.34], [61.22, 90.88]], \"sentences\": [\"An athlete is seen standing ready holding a pole and begins running down a large track over a beam.\", \" The woman then jumps over the beam and throws her arms in the air to celebrate and run around the field.\", \" The woman does flips on the mat while celebrating and ends with her jump shown again and her sitting in front of her score.\"]}, \"v_HoybOj2Ro7o\": {\"duration\": 218.57, \"timestamps\": [[1.09, 29.51], [46.99, 135.51], [149.72, 180.32], [180.32, 215.29]], \"sentences\": [\"A camera zooms in on various foods and ingredients as well as a pan on a stove.\", \" A person wearing gloves is seen spreading food onto a plate followed by a large pastry and spreading butter on it.\", \"  The person continues making layers and then undoes the cake and shows off the solid cake.\", \" She takes tape out and then rolls out more dough and spreads it along the cake, showing off the finished result.\"]}, \"v_p1-APric9UM\": {\"duration\": 114.82, \"timestamps\": [[0, 9.19], [11.48, 50.52], [51.67, 88.41], [89.56, 114.82]], \"sentences\": [\"A slightly rotund man is shown standing in a kitchen while holding a can of drink.\", \" The man is laughing and speaking to the camera about the can in his hand.\", \" He pours the drink into a glass, and proceeds to drink it alongside a male friend.\", \" The two men drink the contents of their glasses while they talk.\"]}, \"v_5MnHirHxqkA\": {\"duration\": 198.2, \"timestamps\": [[0, 91.17], [94.14, 198.2]], \"sentences\": [\"A woman is seen speaking to the camera and laying her hands across a pair of pants on an ironing table.\", \" She begins ironing the pants and ends by showing the crease she made in the middle.\"]}, \"v_LSCQ1yqocHg\": {\"duration\": 24.59, \"timestamps\": [[2.83, 4.55], [4.55, 12.42], [12.42, 20.04], [20.04, 22.38]], \"sentences\": [\"There's a man standing in a kitchen and washing his hands in steel kitchen sink.\", \" He takes a pump from the liquid hand soap from the sink counter.\", \" He then turns on the water and and washes his hands.\", \" After he's done washing, he uses a white hand towel that is lying next to the sink on the counter.\"]}, \"v_ecVUPpBNpdA\": {\"duration\": 84.8, \"timestamps\": [[5.09, 35.19], [35.62, 53], [53.42, 65.3]], \"sentences\": [\"A man speaks holding a microphone, then the man performs arm wrestling with a person.\", \" The man grabs a weigh and practice weight lifting with his left hand.\", \" After, the man takes his watch off and performs arm wrestling with the person and wins, then he jumps happily.\"]}, \"v_-qXqnltHWtE\": {\"duration\": 213.46, \"timestamps\": [[0, 213.46], [1.07, 165.43], [170.77, 212.39]], \"sentences\": [\"Cowboys compete in a rodeo competition.\", \" Men ride horses out of a gates and ropes a bull before dismounting and tying their its legs.\", \" The winner waves his hat and is congratulated by the other riders.\"]}, \"v_nxs4o4S43oY\": {\"duration\": 172.47, \"timestamps\": [[0, 43.12], [44.84, 91.41], [89.68, 91.41], [95.72, 154.36], [151.77, 154.36], [171.61, 172.47]], \"sentences\": [\"A man is cutting his beard with scissors.\", \" He uses a shaver to shave off the beard.\", \" He collects the hair in the sink.\", \" He puts shaving cream on his face and uses a razor to finish shaving.\", \" He wipes his face with a towel.\", \" He smiles and gives a thumbs up.\"]}, \"v_mYrTrVCYSY0\": {\"duration\": 79.76, \"timestamps\": [[0.4, 79.36], [0.4, 16.35], [1.99, 34.7], [35.49, 78.96]], \"sentences\": [\"A man runs down two streets in a marathon, in a city setting,  as onlookers from the sideline cheer and clap.\", \"  A man in black shorts with a number pinned to his chest is running down a city street in a marathon.\", \"  People on the sidelines are clapping for the man and smiling as he continues to run.\", \"  The man runs down another street where he runs for a short time behind a bicycler, and as a motorcyclist comes up from behind him near the sidewalk which has a metal barrier running the length of it.\"]}, \"v_fwqDDFkOaCc\": {\"duration\": 162.98, \"timestamps\": [[0, 154.02], [6.52, 48.08], [10.59, 70.08], [14.67, 74.16], [67.64, 97.79], [95.34, 108.38], [105.94, 140.98], [138.53, 152.39]], \"sentences\": [\"A violinist, Lindsay Stirling is performing live with some other participants on a stage in front of an audience.\", \" She begins by playing the violin while the other performers dance in a choreographed fashion.\", \" The violinist dances as she plays the instrument along with five other dancers.\", \" They dance in a modern and hip hop style of dancing.\", \" Then only two of the dancers stay on the stage with the violinist and dance in a Salsa style.\", \" After they leave the stage, one of the male dancers does some modern style of dancing as he rotates on his knees.\", \" Then the entire dance team comes on stage and continues dancing in coordinated steps as the violinist plays and dances along with them.\", \" Then they leave the stage with only the violinist performing as she continues to dance and play the instrument.\"]}, \"v_58he7Xcwfws\": {\"duration\": 36.22, \"timestamps\": [[0, 4.71], [0, 36.22], [4.71, 14.31], [14.31, 18.47], [18.47, 36.22]], \"sentences\": [\"A weightlifter prepares for his first lift.\", \" Friends are watching and one films.\", \"  He squats and he lifts the bar.\", \"  He holds it for a moment, then drops it.\", \"  He starts all over again and completes a second lift.\"]}, \"v_wUg9S2xx850\": {\"duration\": 30.91, \"timestamps\": [[0, 11.74], [14.06, 30.91]], \"sentences\": [\"A group of people are seen standing on a field when a man runs towards a woman with a soccer ball.\", \" one girls swing another around while a man grabs a ball and throws it to another.\"]}, \"v_gEOVtyRAaFY\": {\"duration\": 135.4, \"timestamps\": [[0, 15.57], [17.6, 48.74], [52.8, 135.4]], \"sentences\": [\"A woman is holding a cat in her lap.\", \" The cat is slapping at the pair of trimmers in her hand.\", \" She uses the trimmers to cut the cat's nails, one at a time.\"]}, \"v_LKeQMeUZFso\": {\"duration\": 78.23, \"timestamps\": [[0, 9], [9.78, 70.8], [26.6, 39.11], [43.03, 52.41]], \"sentences\": [\"A person walks up to a vacuum cleaner and picks up the wand.\", \" The person vacuums a carpet in the hallway of a home.\", \" The person turns off the vacuum then replaces the attachment with a larger one for carpets.\", \" The person adjusts a knob on the vacuum cleaner.\"]}, \"v_ZWlh8sQE2Z4\": {\"duration\": 63.3, \"timestamps\": [[0, 61.4], [9.49, 37.35], [37.98, 63.3]], \"sentences\": [\"A man kneels on one knee in a room and talks to the camera.\", \" The man raises his right arm and reaches to the ground with his left hand.\", \" The man switches and does the other side.\"]}, \"v_BCzsVKHrN5Y\": {\"duration\": 27.35, \"timestamps\": [[0.41, 5.88], [4.1, 19.69], [13.4, 26.4]], \"sentences\": [\"A large yard is seen covered in snow with a person walking into frame.\", \" The man is seen holding a shovel and begins pushing it around the area.\", \" The man clears out all the snow and shows off a path in the end.\"]}, \"v_4BRCZaaITn0\": {\"duration\": 25.66, \"timestamps\": [[0, 4.36], [5, 21.3], [22.71, 25.66]], \"sentences\": [\"A man is mowing his lawn around a tree in front of his house.\", \" He walks back and forth, avoiding the rocks.\", \" He turns at the driveway and returns again.\"]}, \"v_UFfi0gxL6_Y\": {\"duration\": 158.99, \"timestamps\": [[0, 8.74], [9.54, 156.6], [156.6, 158.99]], \"sentences\": [\"A woman in a dress holding a violin addresses an audience.\", \"  The woman plays the violin as other musicians look on.\", \"  The woman finishes her playing and everyone applauds.\"]}, \"v_WmOTDAim7XM\": {\"duration\": 16.05, \"timestamps\": [[0, 9.87], [0, 16.05], [0.32, 16.05]], \"sentences\": [\"A man is holding a chain saw over his head.\", \" He starts clipping the top of the hedge.\", \" People are walking on the sidewalk behind him.\"]}, \"v__BJqPK0NNZU\": {\"duration\": 97.39, \"timestamps\": [[8.28, 24.35], [10.71, 24.35], [15.09, 27.27], [17.53, 37.98], [20.94, 33.11], [24.35, 38.95], [29.7, 43.82], [31.16, 43.82], [35.06, 49.67], [44.31, 55.51], [47.72, 66.22], [72.06, 97.39], [75.96, 97.39]], \"sentences\": [\"The woman in the field is standing behind the net.\", \" The woman swirl around and threw a heavy metal towards the field.\", \" The field has people in the, a man is running.\", \" The athlete in pink top is walking forward.\", \" An athlete with Barrios tag on her shirt is standing behind the net.\", \" The woman raised the circular metal and she started to swirl around and threw the metal.\", \" The metal hit the field.\", \" A man is running towards the white circle on the ground.\", \" A woman is stretching behind the net.\", \" She swirl around and threw something towards the field.\", \" Two men running towards each other.\", \" The woman gave a hug to other woman.\", \" The green field has audiences on the sides of the field.\"]}, \"v_Q_v6MdHJ7Go\": {\"duration\": 37.87, \"timestamps\": [[5.49, 11.36], [11.74, 37.87]], \"sentences\": [\"A man is seen kneeling on a floor and puts his hands behind his head.\", \" He then bends his body forward and performs several jumps onto his feet.\"]}, \"v_mQHY2uMOMP4\": {\"duration\": 115.47, \"timestamps\": [[8.08, 15.01], [15.01, 25.98], [25.98, 41.57], [41.57, 86.03], [86.03, 100.46], [100.46, 110.85], [110.85, 115.47]], \"sentences\": [\"The video instructor, Stephanie is talking about a hair tutorial.\", \" She is demonstrating how to cut long hair on men.\", \" Her model is seated in a chair next to her as she combs his wet hair.\", \" She shows how the hair is parted and sectioned before cutting the hair She uses scissors to point cut the tips of the model's hair.\", \" She continues the procedure on the model's hair.\", \" She then explains how to blow dry the hair to get the finished look on the model.\", \" She finally gives information about her website.\"]}, \"v_2NAbdlHXcTI\": {\"duration\": 21.13, \"timestamps\": [[0, 20.6], [7.08, 20.6]], \"sentences\": [\"A man does a disk throw.\", \" He spins around and throws the disk.\"]}, \"v_z8lxaUC1Shk\": {\"duration\": 75.08, \"timestamps\": [[0, 73.21], [73.58, 75.08]], \"sentences\": [\"A man walks into a room playing his bagpipes.\", \" He stops playing his bagpipes.\"]}, \"v_xICaX0kCCF4\": {\"duration\": 36.43, \"timestamps\": [[0, 4.55], [6.56, 19.13], [20.4, 31.15], [31.88, 36.43]], \"sentences\": [\"A man in Sesame Street costume is riding a recumbent bike.\", \" A man dressed as Ernie soon joins Bert.\", \" They bike together, as if in a race.\", \" They both get up and walk away.\"]}, \"v_Aq2w52hpwig\": {\"duration\": 30.93, \"timestamps\": [[0.31, 8.97], [8.51, 21.96], [21.96, 30.62]], \"sentences\": [\"A person is seen sitting along the water with a close up of a paddle is shown.\", \" The camera pans around to another group of people sitting in a canoe across from them.\", \" More people are seen sitting in the water as well as boats along the water.\"]}, \"v_yp1zqqLB57M\": {\"duration\": 180.73, \"timestamps\": [[0, 180.73], [74.1, 102.11], [155.43, 180.73]], \"sentences\": [\"A woman is belly dancing on a stage.\", \" There is a close up of her belly.\", \" She slows her dance down and turns circles.\"]}, \"v_kr4RUFi1UGs\": {\"duration\": 36.32, \"timestamps\": [[0, 7.81], [10.53, 36.32]], \"sentences\": [\"Two men are rappeling up the side of a steep rock cliff.\", \" One of the men climbs about halfway up, before letting go and releasing himself back toward the ground.\"]}, \"v_Zzcj8Eea3Mc\": {\"duration\": 84.28999999999999, \"timestamps\": [[0.42, 26.13], [24.02, 59.42], [55.63, 82.18]], \"sentences\": [\"A man is seen walking forward and speaking to the camera while two people pull an object behind him.\", \" The man is then speaking while a woman exercises next to him.\", \" The man continues speaking and text is shown across the screen.\"]}, \"v_1RMNLqb8OWI\": {\"duration\": 163.6, \"timestamps\": [[0, 163.6], [51.53, 163.6], [0, 22.9]], \"sentences\": [\"man carrying a lawn blower is blowing the dust in the sidewalk walking in street.\", \" man is cleaning the sidewalk from the dry leaves pouring out the sidewalk.\", \" man is walking in sidewalk watching the man that is carrying the blower.\"]}, \"v_G3cINUdHdGo\": {\"duration\": 52.29, \"timestamps\": [[4.71, 40.26], [6.01, 11.5], [11.77, 16.99], [17.26, 39.48]], \"sentences\": [\"A man in a red shirt speaks and demonstrates how to throw darts against a dart board while three other people in red shirts watch behind him.\", \"  A man in a red shirt faces the camera and begins to talk while holding darts in his hand and while three men behind him watch.\", \"  The man turns away from the camera, standing at a profile view and facing a dartboard attached to  a wall, he starts aiming at the dartboard with the darts in his hand.\", \"  The man then throws three darts against the dartboard, two of which stick to the board, the man goes to retrieve a dart from the board and gestures with his fist and a smile.\"]}, \"v_WSGXoKV9vLs\": {\"duration\": 130.54, \"timestamps\": [[0, 5.87], [5.87, 125.32], [39.82, 50.91], [50.91, 90.73], [90.73, 125.32], [125.32, 130.54]], \"sentences\": [\"A hand is pouring liquid into a martini glass and white words on the left of the screen appear and they say \\\"Girls Mixing Drinks dot com\\\" and \\\"Keylime Pie with Lee\\\".\", \"A blonde woman appears at a bar and the website appears at random times while the woman is grabbing cups, alcohol and ice as she makes her drink in a martini glass.\", \"The woman fills the martini glass with ice and water.\", \" The woman then moves onto a large silver silver shaker and begins putting alcohol and other liquids in it, covers it with a small clear cup and begins shaking the contents.\", \" When she's done shaking the liquids, she empties the ice and water from the martini cup, then fills it with the liquid from the shaker, puts a lime on the edge, pushes the martini glass forward and smiles.\", \" The last screen appears with a red background and the website displayed in the middle.\"]}, \"v_Sx3YbcKbuYk\": {\"duration\": 80.69, \"timestamps\": [[0, 5.24], [8.07, 33.08], [36.31, 80.69]], \"sentences\": [\"A pile of kindling flanked by rocks is shown.\", \" The kindling is lit with a torch.\", \" The fire is started, and we watch as it begins to burn.\"]}, \"v_S24MDjduWIY\": {\"duration\": 206.81, \"timestamps\": [[0, 72.38], [65.14, 159.24], [152, 199.57]], \"sentences\": [\"A man is seen speaking to the camera while people practice basketball drills intermittently.\", \" The man ties a rope around a ball and continues having him perform layups on the court.\", \" More clips are shown of them practicing while the man speaks to the camera.\"]}, \"v_10uSu442cOE\": {\"duration\": 141.2, \"timestamps\": [[0, 123.55], [125.67, 128.49]], \"sentences\": [\"A girl plays a brass flute standing on stage during a performance.\", \" The girl finishes the performance and lowers her instrument.\"]}, \"v_mtC3trP8ahY\": {\"duration\": 188.31, \"timestamps\": [[0, 43.31], [44.25, 105.46], [105.46, 143.12], [143.12, 188.31]], \"sentences\": [\"Two teams of boys are in a grass field playing a game.\", \" They have little poles with nets that they use to catch the balls in and throw.\", \" One of the boys from the red team throws the ball over to the other side.\", \" Then one of the kids int he black uniform comes running back and throws the ball.\"]}, \"v_2NITA0d4vqo\": {\"duration\": 158.52, \"timestamps\": [[0, 3.96], [10.3, 22.99], [19.82, 35.67], [36.46, 45.18], [51.52, 95.11], [69.75, 71.34], [73.71, 114.93], [121.27, 158.52]], \"sentences\": [\"Two men play pingpong using different tricks.\", \" A man shows off a camera box, and the ping pong player uses it.\", \" The box busts open so the player uses a camera part to play.\", \" He uses a battery to hit back, and then uses a different tool.\", \" Various strange objects are used to play the game.\", \" The man breaks an egg with the ball.\", \" More strange items including a bat, watch and candy bar are used.\", \" The man is filmed uploading the video to YouTube.\"]}, \"v_674t-jyyKeg\": {\"duration\": 17.53, \"timestamps\": [[0, 6.49], [6.4, 17.53], [12.62, 16.13]], \"sentences\": [\"A woman tries to eat ice cream to a child, but the child refuses to eat the ice cream, then the woman eats the ice cream in the spoon.\", \" After, the woman gives ice cream to the child, and then the woman cleans the child's mouth.\", \" An old woman feeds a boy ice cream.\"]}, \"v_74qSBsksI-E\": {\"duration\": 59.03, \"timestamps\": [[2.07, 36.01], [23.61, 58.73]], \"sentences\": [\"A man is seen speaking to the camera and begins holding a razor up to his face.\", \" The man then shaves his face around the sides and ends by still speaking to the camera.\"]}, \"v_3ArMGKnxlcU\": {\"duration\": 152.82999999999998, \"timestamps\": [[0, 152.83], [56.55, 104.69], [107.75, 114.63]], \"sentences\": [\"People are canoeing down a river of water.\", \" They are going around poles in the water.\", \" They go under a bridge.\"]}, \"v_-deoJLN27hE\": {\"duration\": 227.74, \"timestamps\": [[9.11, 222.05], [9.11, 55.8], [55.8, 182.19], [182.19, 222.05]], \"sentences\": [\"Two soccer teams play a game of soccer in front of a crowded audience in bleachers, in which the team with the blue and white uniforms makes a series of goals.\", \"  The team with the yellow and blue uniforms wins a goal on the field against the black and white team and reacts by hugging and smiling each other.\", \"  The yellow and blue team go on to make a series of goals, sometimes sliding after the final kick, with the audience standing for them each time a goal is made and wearing yellow shirts.\", \"  A digital scoreboard is shown with the score as the yellow and blue team goes on to make more goals.\"]}, \"v_h3GLEcwSvD4\": {\"duration\": 64.33, \"timestamps\": [[0, 28.31], [28.31, 58.22], [58.86, 64.33]], \"sentences\": [\"A group of men are in a room doing various hand movements and moving their feet.\", \"As they continue,the man in the back falls on the ground,gets up and continues moving in the back of the room.\", \"They finish,stand still and begin clapping and high-fiving one another.\"]}, \"v_7t666Y8cLGk\": {\"duration\": 34.99, \"timestamps\": [[0, 23.27], [5.07, 29.74], [14, 15.22], [30.62, 34.99]], \"sentences\": [\"A lady uses a Shisha pipe while sitting.\", \" The lady blows the smoke into a cut, soapy bottle half.\", \" The  bubble pops releasing the smoke.\", \" The bubble float away with the smoke still enclosed and falls to the floor.\"]}, \"v_QPKJDlQSO6c\": {\"duration\": 136.63, \"timestamps\": [[0, 40.99], [42.35, 105.89], [73.1, 135.94]], \"sentences\": [\"A camera pans all around a beer pong table as well as people talking and speaking into a microphone.\", \" More people step up to play the beer pong while a man raps into the mic and others react.\", \" Several shots are shown of people playing the game and cheering with one another.\"]}, \"v_zJquKzopJuI\": {\"duration\": 32.29, \"timestamps\": [[0, 5.97], [5.65, 15.01], [15.01, 22.76], [22.76, 32.29]], \"sentences\": [\"A group of men standing beside each other are all bent forward chugging beer through very long straws.\", \" There are people in front of them watching them and pointing at them as they chug.\", \" They made it a game they are racing to see who can finish first.\", \" They all stop around the same time and the people watching continue to be very rowdy.\"]}, \"v_IbcBQFvcS9o\": {\"duration\": 122.74, \"timestamps\": [[0, 63.21], [63.21, 108.63], [108.63, 120.29], [121.51, 122.74]], \"sentences\": [\"a white house and a backyard full of snow appears a person is cleaning the fron entrance of the house.\", \" a car covered in snow appears and the person is cleaning the snow from the car and its open the road in front of the car.\", \" a red car appears covered in snow and a person is cleaning the snow .\", \" a black car is covered in snow.\"]}, \"v_-Kmx-BCAsQc\": {\"duration\": 65.16, \"timestamps\": [[0, 3.26], [3.26, 41.7], [3.26, 41.37], [29.97, 35.18], [40.07, 43.33], [43.33, 48.54], [48.54, 65.16]], \"sentences\": [\"A man in orange waves then mounts a pommel horse.\", \" The man spins around and around on the pommel horse.\", \" A man on the right takes a photo.\", \" The man swings one leg at a time.\", \" The man does a handstand then dismounts.\", \" The man walks away as another walks to the pommel horse.\", \" The end screens are shown and the video ends.\"]}, \"v_ITVfOVR34Jo\": {\"duration\": 137.73, \"timestamps\": [[0, 92.28], [70.93, 137.73]], \"sentences\": [\"The army are lined up, they are divided into four groups, they started to do war practice by shooting by group with paint gun, they hide among the stone walls and vacant cars.\", \" The army grab their paint guns on the table and loaded them with paint balls.\"]}, \"v_Ek2OvKMdvys\": {\"duration\": 215.97, \"timestamps\": [[0, 17.28], [17.28, 59.39], [59.39, 168.46], [168.46, 215.97]], \"sentences\": [\"A girl is dressed in a pink and black outfit talking in a room laying on a blue yoga mat.\", \"The lady then lays on her back and puts her hand across her chest.\", \"Before she begins,she talks about her stomach and how to put your hands behind your neck the correct way.\", \"Finally,she does about four crunches and shows that your head should be up and as well as your body before she finishes her crunches.\"]}, \"v_TJFl99tLNWk\": {\"duration\": 216.2, \"timestamps\": [[8.65, 28.11], [33.51, 72.43], [81.08, 165.39], [142.69, 172.96], [175.12, 198.9]], \"sentences\": [\"Different shades of nail polish bottles are seen.\", \" Pieces of taper are wrapped around the tips of fingers around the nails.\", \" Different shades of nail polish are applied to a foam pad then dabbed on the finger nails.\", \" A clear coating is coating is applied onto the nails.\", \" The tape is removed and the edges are cleaned up with nail polish remover solution.\"]}, \"v_TY4-gh8DV04\": {\"duration\": 32.27, \"timestamps\": [[0, 32.27], [8.55, 11.62]], \"sentences\": [\"A woman work out in a cardio machine pulling a handle in a gym.\", \" A person enters the gym.\"]}, \"v_W40iaV960sw\": {\"duration\": 16.97, \"timestamps\": [[0, 4.41], [4.41, 9], [9.08, 16.97]], \"sentences\": [\"The camel is sitting on the ground, but then the man puts on his glasses while he's sitting on the camel as it lifts up bringing the man forward a little bit.\", \" Then someone grabs the rope on the camel to guide the camel to the right place.\", \" Finally the man pulls the camel the man is sitting on while the other 2 camels walk behind the camel in the front.\"]}, \"v_dJVTlZWqYOs\": {\"duration\": 71.89, \"timestamps\": [[0, 43.85], [45.29, 49.96], [53.92, 71.89]], \"sentences\": [\"A man picks up a bowling ball and throws it down the lane at some pins.\", \" He falls onto the ground.\", \" The audience behind him applauds him.\"]}, \"v_99KPQLxH4cw\": {\"duration\": 176.87, \"timestamps\": [[0, 44.22], [44.22, 176.87]], \"sentences\": [\"Several shots are shown of various snow boarders grinding down rails into snow with one falling and hurting himself.\", \" More shots of people wiping out in the end are shown as well as people talking to one another in a circle.\"]}, \"v_P00O62PPzNU\": {\"duration\": 136.11, \"timestamps\": [[0, 46.28], [29.94, 95.27], [76.22, 133.38]], \"sentences\": [\"A large group of people seen pulling a rope away from one another.\", \" More games are shown of people playing tug of war.\", \" People watch on the sides as the men continue to play with one another.\"]}, \"v_CB41iJu4ZVY\": {\"duration\": 95.18, \"timestamps\": [[0.95, 28.55], [26.17, 64.72], [55.68, 93.75]], \"sentences\": [\"A gymnast is seen standing ready with her arms up in the air in front of a large crowd.\", \" The girl then jumps up onto a beam and begins performing gymnastic tricks.\", \" The girl continues flipping and spinning around and ends with her jumping off to the side.\"]}, \"v_T5GVJRbvNb8\": {\"duration\": 162.19, \"timestamps\": [[0, 40.55], [4.05, 157.33], [45.41, 157.33], [98.94, 105.42]], \"sentences\": [\"A young man runs and jumps over a bar onto a mat multiple times.\", \"  People run and walk around a track in the background.\", \" The same young man then jumps over the bar using a springboard landing on the mat several times.\", \" People walk around a field house near the track.\"]}, \"v_SsW-IeF0bzE\": {\"duration\": 235.4, \"timestamps\": [[0, 197.74], [14.12, 35.31], [197.74, 207.16], [207.16, 215.39], [0, 235.4]], \"sentences\": [\"Several kids are driving bumper cars in a group at a fair.\", \" A younger girl gets stuck and a man walks over to help her.\", \" The groups time runs out and all of the kids stand up and exit the bumper car area.\", \" The kids all go down the stairs and back to the fair area.\", \" There are lots of people of all ages around doing different things at the fair.\"]}, \"v_ggDfJLB8jTk\": {\"duration\": 174.68, \"timestamps\": [[21.84, 31.44], [36.68, 41.92], [47.16, 98.7], [113.54, 136.25]], \"sentences\": [\"Shooting targets are shown on the grass.\", \" A man uses a bow and arrow to hit the targets.\", \" Words are shown on the screen.\", \" A man shoots a bow behind a pile of sticks.\"]}, \"v_B92SbWzu8yI\": {\"duration\": 213.65, \"timestamps\": [[0, 74.78], [59.82, 213.65]], \"sentences\": [\"A young child is seen standing behind a set of drums and then begins playing the drums.\", \" The boys continues playing on the drums and ends with him kissing his fingers and giving a peace sign.\"]}, \"v_Coctj-3Yzic\": {\"duration\": 43.58, \"timestamps\": [[0, 16.34], [16.34, 28.98], [28.98, 33.56], [33.56, 43.58]], \"sentences\": [\"There are people in a garage standing around a long wooden table that has a lot of red solo cups on it.\", \" They all start throwing ping pong balls in attempt to get them to land in a red solo cup.\", \" Suddenly, one of them falls backwards into the table and the table falls.\", \" All the men start laughing, pull the table off of the man, and only one of the men go to help the person up.\"]}, \"v_tOiPx5Veyd8\": {\"duration\": 104.24000000000001, \"timestamps\": [[0, 48.47], [39.61, 104.24]], \"sentences\": [\"A man is seen interviewing another man on camera and leads into several groups of people playing shuffle board.\", \" The camera pans back to the man being interviewed and ends with the host having one final word to the camera.\"]}, \"v_6iwKUJUUlaQ\": {\"duration\": 14.75, \"timestamps\": [[0, 14.75], [0.15, 14.67], [0, 12.53], [11.35, 11.94], [12.61, 13.57], [13.64, 14.75]], \"sentences\": [\"Two woman are outdoors outside of a building and are playing hopscotch on cemented ground.\", \"  There is white text on the screen.\", \" The younger woman in shorts jumps on the squares and an older woman wearing a dress also jumps on the squares.\", \"  The young girl falls over.\", \"  The older woman walks and celebrates raising her arms.\", \"  The two look at the camera and give a thumbs up.\"]}, \"v_78UikTQkGgg\": {\"duration\": 180.35, \"timestamps\": [[0, 46.89], [52.3, 146.08], [145.18, 180.35]], \"sentences\": [\"A close up of subway is seen and leads into a woman speaking to the camera and cutting up a piece of bread.\", \" The woman then lays out various ingredients on the bread and rolls it up in a wrap.\", \" Several pictures are then shown in the end of the sandwich all ready and people enjoying the sandwich.\"]}, \"v_1Xav7gMRCOQ\": {\"duration\": 44.37, \"timestamps\": [[0, 5.1], [5.77, 32.84], [33.06, 44.37]], \"sentences\": [\"A man is standing inside a gym.\", \" He jumps on and off an exercise stepper, front to back and side to side.\", \" He spins as he climbs on and off.\"]}, \"v_9ZGy24Geu5k\": {\"duration\": 114.89, \"timestamps\": [[0, 17.81], [17.81, 40.79], [36.19, 60.89], [59.74, 114.89]], \"sentences\": [\"A man is seen in the ocean on a surf board.\", \" The man glides towards an on coming wave.\", \" The man then jumps over the wave.\", \" The man then rides the inside of a new wave.\"]}, \"v_G72bQBMZmzs\": {\"duration\": 197.63, \"timestamps\": [[0, 23.72], [22.73, 197.63]], \"sentences\": [\"Two sumo wrestlers are shown on a set with hundreds of people watching in the back taking pictures.\", \" The video continues to show several different athletes fighting in a ring and pulling the other down within a matter of seconds.\"]}, \"v_xQcJ8gTPRSU\": {\"duration\": 165.7, \"timestamps\": [[0, 89.48], [82.02, 165.7]], \"sentences\": [\"Two people are seen speaking to the camera and leads into the man peel a pear and scoping out the sides.\", \" The man then cuts the fruit and presents it onto a plate while still speaking to the camera.\"]}, \"v_UOF3w4T-bBE\": {\"duration\": 32.39, \"timestamps\": [[0, 32.39], [11.66, 32.39]], \"sentences\": [\"A group of guy friends are in the bathroom talking and having fun daring on of the boys to shave his leg.\", \" The camera pans over to the boy's leg showing one of his friends shaving the hair off his leg with an electric razor.\"]}, \"v_ScWdvpS6epQ\": {\"duration\": 149.12, \"timestamps\": [[0, 149.12], [2.98, 149.12], [38.03, 41.75]], \"sentences\": [\"People are standing on a blue mat.\", \" They begin doing a cheerleading routine on the mat.\", \" They hold up signs in front of the mat.\"]}, \"v_eGA5tbX8oH0\": {\"duration\": 78.97, \"timestamps\": [[0, 73.44], [0, 13.82], [13.82, 63.18], [63.18, 73.44], [73.44, 78.97]], \"sentences\": [\"A family is in the living room I'm trying to get out after being snowed in.\", \" A man opens the door and tries to jump over the snow that is in the way.\", \" He gets stuck in the snow and his family tries to help him get out.\", \" Once he gets out he throws them a shovel to shovel the snow on the floor.\", \" The video ends with the credits shown on the screen.\"]}, \"v_Z1POv1Qeno0\": {\"duration\": 43.4, \"timestamps\": [[0, 7.81], [7.81, 14.97], [14.97, 20.83], [21.48, 33.2], [34.29, 43.4]], \"sentences\": [\"People are floating down a river in rafts.\", \" We then see people getting rafts at a building.\", \" A man is in a boat people floating in a raft.\", \" A bus sits in front of the rafting facility and men stack rafts as other men walk with their rafts.\", \" A man and a woman are floating down the river in separate rafts.\"]}, \"v_TpB_zMG3XBA\": {\"duration\": 163.05, \"timestamps\": [[0, 7.34], [7.34, 146.75], [51.36, 119.84], [87.23, 105.98], [144.3, 150.82], [158.16, 163.05]], \"sentences\": [\"We see a lady and two men standing in a lake.\", \" The lady then jet skis.\", \" We see the head of the person on the boat on the left bob in and out of the shot.\", \" The boat turns and we no longer see land in the background.\", \" The lady falls off the ski.\", \" A man walks over to help the lady in the lake.\"]}, \"v_SiqB6_9kNQU\": {\"duration\": 162.17000000000002, \"timestamps\": [[0, 29.19], [29.19, 71.35], [71.35, 111.9], [111.09, 162.17]], \"sentences\": [\"At the fair the bumper cars are being used.\", \" A bunch of different people are riding around bumping into each other.\", \" They are just driving around aimlessly in circles as they hit and get hot by other riders.\", \" This is innocent fun during summer nights when you're bored and the fair is in town.\"]}, \"v_AnRYS02tvRA\": {\"duration\": 133.31, \"timestamps\": [[0, 76.65], [76.65, 79.98], [99.98, 103.31], [122.64, 123.97]], \"sentences\": [\"A man and woman play rock paper scissors.\", \" The woman wins and smiles.\", \" The woman puts a blind fold on.\", \" The woman gives the man a hug.\"]}, \"v_k0w1lMRoqYk\": {\"duration\": 181.65, \"timestamps\": [[0, 93.55], [94.46, 159.85], [158.94, 181.65]], \"sentences\": [\"A young girl is seen talking to the camera and leads into her browsing the internet then raking up leads in a yard.\", \" The girl is then seen sitting in the leaves and transitions into speaking with her mother in the kitchen.\", \" She is shown speaking to the camera one more time and ends with various pictures of kids.\"]}, \"v_XftM9eALPy0\": {\"duration\": 68.66, \"timestamps\": [[0, 68.66], [5.84, 68.66], [13.05, 68.66], [20.26, 68.66]], \"sentences\": [\"A large arena houses many people.\", \" Poles are set up in the arena.\", \" Gymnasts perform on the poles.\", \" They do many tricks on them.\"]}, \"v_1Xt1gZfZ2Rw\": {\"duration\": 160.22, \"timestamps\": [[44.86, 46.46], [52.07, 88.12], [96.13, 114.56], [119.36, 132.98]], \"sentences\": [\"A man is brushing the bottom of a ski.\", \" He melts wax onto the bottom of the ski and irons it.\", \" He then scrapes the wax off with a tool.\", \" He uses a brush to brush the bottom of the ski.\"]}, \"v_FRag7CCTP4k\": {\"duration\": 62.35, \"timestamps\": [[0, 30.24], [30.86, 49.88], [54.86, 62.35]], \"sentences\": [\"An athlete is shown warming up in front of a pole while several others in the background run around a track.\", \" The man eventually prepares for his jump and jumps over the pole.\", \" He swings his arms up to celebrate and others around him clap for him.\"]}, \"v_3xEonDbWxTM\": {\"duration\": 108.5, \"timestamps\": [[0, 22.78], [25.5, 79.2], [79.75, 108.5]], \"sentences\": [\"A lady stands with a pot and shows an area of a wall.\", \" The wall is cleaned with a wet towel using the solution in the pot.\", \" The lady points to an area of the wall that is discolored.\"]}, \"v__gJFrtUQDLw\": {\"duration\": 226.49, \"timestamps\": [[0, 60.02], [48.69, 226.49]], \"sentences\": [\"An image is shown of an album cover that leads into a young man playing a harmonica slowly.\", \" The man rocks back and fourth to the song and interments between pictures of a band and himself playing.\"]}, \"v__wqhA-Ceqwc\": {\"duration\": 221.54, \"timestamps\": [[7.75, 221.54], [52.06, 110.77], [0, 221.54]], \"sentences\": [\"man is standing in front of a counter showing how to sharpening a knife.\", \"in the background man is cooking in the back counter.\", \" man is explaining and checking the areas of the knife.\"]}, \"v_9Hw3xvJJTy0\": {\"duration\": 38.1, \"timestamps\": [[0, 37.53], [0, 7.24], [1.91, 10.1], [10.1, 22.86], [23.05, 27.63], [28.2, 38.1]], \"sentences\": [\"Three wrestlers were in the ring and crowd iswatching intently.\", \" One wrestler named, East of Angeles, back away and climb the ladder.\", \" Another wrestler, TandumisGreat, gets up and starts climbing the other side of the ladder.\", \" They started hitting each other on top of the ladder.\", \" TandumisGreat climb on the back of East of Angeles and they both fall off the ladder, knocking East of Angeles.\", \" TandumISGReat climbs once again on the top of the ladder and holds the hanging money bank.\"]}, \"v_pZZVzBD8bZY\": {\"duration\": 136.46, \"timestamps\": [[1.36, 64.82], [58.68, 128.96]], \"sentences\": [\"Various shots are shown of large crowd celebrating in the distance and people riding motorcycles around.\", \" The people continue riding around in slow motion as the camera captures their movements.\"]}, \"v_w83HV_L4AiU\": {\"duration\": 62.56, \"timestamps\": [[0, 36.91], [15.01, 59.43]], \"sentences\": [\"A cartoon animation is shown with various hands and lobsters and demonstrating how to play rock paper scissors.\", \" More text is shown as well as hands and animals and shows steps on how to play the game.\"]}, \"v_OCT2h1kmZoA\": {\"duration\": 173.43, \"timestamps\": [[0, 12.14], [13.01, 163.89], [25.15, 32.08], [61.57, 79.78], [81.51, 84.98], [131.81, 142.21], [163.89, 173.43]], \"sentences\": [\"We see an animated opening sequence.\", \" We see men riding snowboards on a ski slope.\", \" We see a man riding on the back part of the snowboard.\", \" We see a person in a bright pink jacket .\", \" A man is snowboarding with bare arms.\", \" Another man with no coat on is snowboarding.\", \" We see the ending sequence.\"]}, \"v_5gaobaT6K1A\": {\"duration\": 66.04, \"timestamps\": [[0.99, 28.07], [18.16, 63.73]], \"sentences\": [\"A woman is seen riding off a bull when the bull knocks her off and others run in to help.\", \" Several more people are shown attempting to taunt the bull and end by getting hurt and others helping.\"]}, \"v_6koP53YFNjg\": {\"duration\": 39.94, \"timestamps\": [[0, 36.74], [4.19, 4.79], [4.99, 6.59], [6.79, 7.99], [16.57, 30.75], [37.14, 39.94]], \"sentences\": [\"People are throwing balls into plastic cups.\", \" A hand knocks over a red plastic cup and wastes the liquid inside.\", \" A male reaches for a ball that rolls under a table.\", \" A plastic cup has a white suspension inside.\", \" A man welds and machine carves a wooden board.\", \" A guy carries a lady as they gesture and cheer.\"]}, \"v__Xydl5mYkQ8\": {\"duration\": 56.98, \"timestamps\": [[0, 7.69], [7.98, 37.61], [38.18, 56.98]], \"sentences\": [\"A counter is shown with beer cans on it.\", \" A man is in a bathroom, using a toilet.\", \" He flushes, then smiles and talks to the camera.\"]}, \"v_w69pipCSlM4\": {\"duration\": 146.87, \"timestamps\": [[0, 8.81], [8.81, 27.9], [27.17, 117.49], [28.64, 48.47], [116.76, 146.87]], \"sentences\": [\"The skier adjusts the rope with his red and black skis extending in front of him over the water as he prepares to ski.\", \"  The boat pulls him off the dock and into the water as he rests upright, his skis out in front of him.\", \"  As the boat picks up speed, the skier rises, and holds onto the rope, steering left and right.\", \"  He just seems to miss a buoy as he cuts through water and the boat's wake.\", \"  The boat turns towards the land with large buildings coming into view, and slowly he is taken back to the dock.\"]}, \"v_Wi9bm9omdoM\": {\"duration\": 146.69, \"timestamps\": [[0, 75.55], [63.08, 146.69]], \"sentences\": [\"A small group of children are seen playing hand games with one another and finally hitting the loser on the head with a bottle.\", \"  The kids continue to play the hand game with one another that leads into the beating another with a bottle.\"]}, \"v_KTNJc_NVOmg\": {\"duration\": 114.64, \"timestamps\": [[0, 42.99], [42.99, 114.64], [51.01, 114.64]], \"sentences\": [\"A cat is laying on its back on the couch.\", \" A person picks up the cat and lays it on their lap.\", \" They start clipping the cats nails.\"]}, \"v_uFtP9Z_K87U\": {\"duration\": 129.78, \"timestamps\": [[5.19, 42.83], [31.8, 114.2], [115.5, 129.78]], \"sentences\": [\"Several shots of people are shown in water as well as landscapes around an island and people riding and moving around a boat.\", \" More shots of people scuba diving are shown as well as fish swimming around and people in the ocean.\", \" In the end the camera shows several shots of the boat and people moving away on a smaller boat.\"]}, \"v_B3YfGd4Wt24\": {\"duration\": 101.24000000000001, \"timestamps\": [[0, 37.96], [34.42, 101.24]], \"sentences\": [\"A group of kids are seen practicing various cheer leading moves in a gym as well as woman speaking to the camera.\", \" Several shots are shown of the girl's outfits as well as them demonstrating moves.\"]}, \"v_3UOWHwwxczI\": {\"duration\": 64.41, \"timestamps\": [[0.97, 34.78], [23.51, 62.48]], \"sentences\": [\"A man is seen speaking to the camera and leads into clips of him climbing along a wall.\", \" The man continues climbing along the rock wall and ends by looking back to the camera.\"]}, \"v_MYWnPFGvxwQ\": {\"duration\": 46.14, \"timestamps\": [[0, 14.3], [14.3, 32.76], [32.76, 46.14]], \"sentences\": [\"A backyard is shown as a man sitting on an electric lawn mower begins to cut the grass.\", \"He makes it to the other side but then starts to run into the tree.\", \"After,he back up,runs into the tree again and cuts around it.\"]}, \"v_VEXswbPrwxE\": {\"duration\": 79.05, \"timestamps\": [[0, 5.53], [10.28, 14.23], [5.93, 70.75], [67.59, 68.77], [69.17, 73.12], [70.35, 79.05]], \"sentences\": [\"A bull comes out of the gate at a rodeo and  man in the ring jumps on then off his back.\", \"  The man picks up his fallen hat in the ring.\", \" The man runs around dodging the charging bull.\", \" The man drops his hat in the ring.\", \" The man jumps on the wall to avoid the bull.\", \" Another man opens the gate and calls to the bull to enter the pin.\"]}, \"v_m2DOej6tPNs\": {\"duration\": 206.36, \"timestamps\": [[0, 206.36], [39.21, 43.33], [49.53, 57.78], [78.42, 82.54], [159.93, 165.08], [205.32, 206.36]], \"sentences\": [\"We see people doing a dance routine in a basketball court.\", \" The people wave their hands in the air.\", \" The camera pans left to show others.\", \" The camera pans right and we see others.\", \" The lades stand still and wave their arms in the air.\", \" The camera pans down to the ground.\"]}, \"v_8nj8tlvLyUo\": {\"duration\": 190.8, \"timestamps\": [[0.95, 36.25], [36.25, 62.01], [62.01, 124.02], [124.02, 190.8]], \"sentences\": [\"Someone is running on the beach towards so sand castle competitions.\", \" A dog jumps in some sand dirt and is so happy about it.\", \" There are so many awesome and different things being made out of sand, it looks like it takes a lot of time and energy.\", \" There are people walking around and looking at all of them.\"]}, \"v_wBODR3P39Nw\": {\"duration\": 134.98, \"timestamps\": [[0, 4.72], [6.07, 20.92], [13.5, 31.72], [29.7, 41.84], [68.16, 98.53], [128.23, 132.95]], \"sentences\": [\"A few pictures of a high school field hockey team are shown.\", \" Two teams of young girls are playing field hockey.\", \" The goalie is shown falling to the ground while making a save.\", \" The goalie makes another sliding save.\", \" The goalie kicks the ball away from the net.\", \" The game ends and the girls give high fives.\"]}, \"v_TLQFjTXZ58E\": {\"duration\": 127.94, \"timestamps\": [[0, 21.11], [21.11, 47.98], [47.98, 81.88], [81.88, 127.94]], \"sentences\": [\"A man is standing outside in his front lawn with his mower.\", \" He talks about different lengths of grass for a while  and then bends down to his mower.\", \" He uses a ruler to show more detailed and then moves the mower to the sidewalk to talk some more.\", \" He starts mowing his lawn finally going up and down the lawn.\"]}, \"v_UzdI8PLRiXg\": {\"duration\": 220.96, \"timestamps\": [[0, 38.67], [44.19, 66.29], [68.5, 220.96]], \"sentences\": [\"A towel and glass are on a table next to a piece of foam and metal.\", \" A tool is being shown by a man holding it.\", \" The metal is used to sharpen a knife in front of him.\"]}, \"v_xmAcpNTJUxo\": {\"duration\": 123.39, \"timestamps\": [[0, 41.34], [41.34, 86.37], [85.14, 123.39]], \"sentences\": [\"A person with a white mask and a sheet over his head walks back from the camera and grabs a pumpkin.\", \"The min then starts to carve the pumpkin and takes out the pumpkin sees.\", \"When they are all cleaned and taken out and placed in the oven as the man takes a sip of alcohol.\"]}, \"v_onW5hJXnI5s\": {\"duration\": 204.57, \"timestamps\": [[0, 204.57], [7.16, 94.1], [94.1, 171.84], [171.84, 204.57]], \"sentences\": [\"This is a documentary on horseback riding.\", \"  They explain the power, thrill, fun, grace, flying, friends, freedom, and love of horseback riding.\", \"  They then show the difficulties of training horses, the dangers of riding them, and the downside of competition.\", \"  Then they show the highlights of competitive riding.\"]}, \"v_MLU2wreEGIg\": {\"duration\": 19.88, \"timestamps\": [[0.1, 6.96], [5.96, 14.41], [14.61, 19.58]], \"sentences\": [\"A small child is seen standing before a set of monkey bars.\", \" The boy then pushes himself along across the monkey bars.\", \" He jumps down in the end and begins walking across a bridge.\"]}, \"v_f14r3tC-Y4E\": {\"duration\": 203.11, \"timestamps\": [[0, 22.34], [26.4, 138.11], [146.24, 203.11]], \"sentences\": [\"A large boat is shown sailing through ocean water.\", \" A man in scuba gear climbs over the side.\", \"  He works on pulling a large bag into the boat, trying not to capsize.\"]}, \"v_ibHRKaD5MbM\": {\"duration\": 13.82, \"timestamps\": [[0, 5.73], [6.08, 13.82]], \"sentences\": [\"A pinata is hanging from a tree, and a woman brings a girl with a stick over to it.\", \" She helps her whack the pinata several times.\"]}, \"v_L61yQxW8HVE\": {\"duration\": 105.74000000000001, \"timestamps\": [[0, 3.17], [3.17, 15.86], [15.86, 24.85], [24.85, 56.57], [56.57, 88.3], [88.3, 105.74]], \"sentences\": [\"An intro screen appears that include a logo and the words \\\"Expert Village Presents\\\".\", \" A woman is now sitting and talking while holding a clarinet.\", \" The woman then puts the clarinet to her mouth and begins playing for a few seconds.\", \" The woman stops playing and resumes talking and using a lot of hand motioning, then resumes playing.\", \" The woman once again stops playing and begins talking while using her hands a lot and holding it in front of her face and etc.\", \" The woman begins playing once more until the outro of a white screen appears and it include a logo, and information for:copyright, rights and website.\"]}, \"v_Amnp8434e90\": {\"duration\": 193.49, \"timestamps\": [[0, 79.33], [78.36, 151.89], [151.89, 193.49]], \"sentences\": [\"Various shots of windersurfers are shown on a large body of water with several people swimming off in the distance.\", \" The wake boarders ride back and fourth past each other and perform several tricks.\", \" The ride close to shore doing tricks one at a time.\"]}, \"v_fp0dd844oUU\": {\"duration\": 107.6, \"timestamps\": [[0, 9.68], [10.22, 17.75], [18.29, 80.7], [80.7, 94.15], [95.23, 107.6]], \"sentences\": [\"A man in gray long sleeves talks in a stage of Ultimate Guinness  World Records.\", \"  A young table tennis player is standing in front of  table with spectators behind her.\", \" Two players play table tennis and continue playing for a minute and record 173 hits.\", \" The play is reviewed and the young player was introduced as Ai Fukuhara, with a record of most table tennis counter hits .\", \" The man in stage talks again while walking around the stage.\"]}, \"v_s7ajQRC7w9w\": {\"duration\": 95.78, \"timestamps\": [[0, 61.3], [61.3, 74.23], [66.57, 95.78]], \"sentences\": [\"A woman is holding onto a wind surfboard in the water.\", \" She steps onto the board and starts wind surfing.\", \" She holds onto the kite of the wind surf.\"]}, \"v_jmWtHelsblo\": {\"duration\": 214.51, \"timestamps\": [[0, 95.46], [95.46, 209.14]], \"sentences\": [\"A large group of people are shown performing a dance routine together with one woman leading in front.\", \" The people continue moving their arms and legs around together to move their bodies and obtain exercise.\"]}, \"v_oNN6NE8fq0U\": {\"duration\": 196.09, \"timestamps\": [[3.92, 15.69], [16.67, 176.48], [98.05, 112.75], [177.46, 180.41]], \"sentences\": [\"A man talks to the audience while seated on stage before a performance.\", \" A man plays the keys of an accordion while opening and closing the air box.\", \" The man sings a few verses loudly with excitement.\", \" The man finishes the song and gathers up his notes from the podium.\"]}, \"v_7AtINKDyH2Q\": {\"duration\": 90.14, \"timestamps\": [[20.73, 50.48], [50.48, 77.07], [77.07, 86.08]], \"sentences\": [\"There is a team of players playing hurling in an outdoor field.\", \" A person named Donal Cusack explains what hurling is and what is comprises of.\", \" The team players are playing a game of hurling with their bats as they try to hit the ball into the goal.\"]}, \"v___c8enCfzqw\": {\"duration\": 172.8, \"timestamps\": [[0, 51.84], [24.19, 118.37], [72.58, 157.25], [132.19, 172.8]], \"sentences\": [\"A lady in black jacket is posing for the camera, then a man with medium length hair is shown, the man touched her hair to check on it, then the girl blow dry her hair.\", \" The lady sat at the center of the studio with her wet hair, she put a white cream on her hand then rub it on her hair.\", \" The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she roll the brush downwards and upwards.\", \" She styled her hair by brushing and combing it to give more volume.\"]}, \"v_tIaNvRDp0eE\": {\"duration\": 57.03, \"timestamps\": [[0, 7.7], [7.98, 19.39], [21.39, 55.32]], \"sentences\": [\"Several people are seen sitting in tubes at the top of a hill.\", \" The men speak to one another while one climbs in.\", \" The men all finally ride down the hill together while getting out in the end and laughing with one another.\"]}, \"v_u0WgmhffTyI\": {\"duration\": 224.28, \"timestamps\": [[0, 21.31], [21.31, 34.76], [34.76, 42.61], [34.76, 117.75], [117.75, 136.81], [136.81, 194], [194, 224.28]], \"sentences\": [\"A male toddler is sitting on the floor near a female toddler and they are playing miniature floor foosball.\", \" The young male takes his hand and reaches inside to grab the soccer ball.\", \"As they keep playing, a set of feet appear and hold down the end of the board.\", \"Once they are removed,the two kids continue playing the game and moving the handles on the bars.\", \"The camera then zooms in on the boy and then the girl expressing their emotions.\", \"Each of them continues to play and adjust their body position as they become more focused.\", \"A goal is finally made and the girl goes into the goal and picks the ball out.\"]}, \"v_Cul7VFkLTMc\": {\"duration\": 147.42000000000002, \"timestamps\": [[0, 147.42], [8.85, 10.32], [35.38, 40.54], [109.83, 129], [122.36, 126.05]], \"sentences\": [\"A group of surfers are on their boards surfing waves.\", \" One of the surfers is swallowed by one of the waves.\", \" Two surfers surf close to each other and are knocked down by a wave.\", \" A surfer is casually swimming when a wave crashes straight into him.\", \" A surfer attempts to surf but is quickly thrown off his board by a wave.\"]}, \"v__LKFGLH8XxI\": {\"duration\": 39.2, \"timestamps\": [[0, 8.23], [8.23, 10.39], [10.58, 31.75], [35.08, 39.2]], \"sentences\": [\"A little girl is playing with a toy hair dryer.\", \" She turns around and smiles.\", \" She continues playing with the toy hair dryer and talking.\", \" She picks up a toy curler and sets it down on the desk in front of her.\"]}, \"v_TCFDMNSYTVw\": {\"duration\": 194.26, \"timestamps\": [[0, 33.02], [0, 194.26], [33.02, 38.85], [38.85, 41.77], [41.77, 64.11], [64.11, 83.53], [83.53, 110.73], [110.73, 127.24], [127.24, 154.44], [154.44, 177.75], [177.75, 194.26]], \"sentences\": [\"Two people are skiing, holding a rope.\", \" Waves are opened in their crest.\", \" They move under a small bridge.\", \" The boy in green bends over.\", \" The boy in green zooms out to the side.\", \" The boy moves to the side of the boat and then flips over the second skier.\", \" The boy leans back on his board and flips back over the other skier.\", \" The boy in green swings out again and flips over the skier giving him a high five.\", \" The two skiers have a conversation while riding.\", \" Both skiers swing out and swing to the other side of the boat.\", \" The boys continue to wave and talk.\"]}, \"v_tEnhhhWqnWQ\": {\"duration\": 188.34, \"timestamps\": [[0, 188.34], [38.61, 188.34]], \"sentences\": [\"A woman does a dance with a hulahoop.\", \"  She throws it up, catches it, and dances around the room.\"]}, \"v_gPofktt3hUw\": {\"duration\": 76.26, \"timestamps\": [[0, 45.37], [9.53, 14.87], [45.37, 75.49]], \"sentences\": [\"A young man puts cement to the ceiling and even with a flat tool.\", \" the man wears stilts on his feet.\", \" The man puts cement on the empty spaces and strokes with the tool to even the ceiling.\"]}, \"v_dxgeEdlt7do\": {\"duration\": 130.26, \"timestamps\": [[0, 56.66], [57.32, 108.12], [108.77, 130.26]], \"sentences\": [\"Dirt bikes race across a bumpy track.\", \" A rider falls off his bike and a trailing bike hits him and knocks him back to the ground.\", \" The words \\\"2014 FIM MOTOCROSS WORLD CHAMPIONSHIP MXGP\\\" appear on screen followed by social links.\"]}, \"v_kBUDMFgWO9I\": {\"duration\": 12.61, \"timestamps\": [[0, 9.84], [7.63, 8.89], [8.83, 10.02], [10.02, 12.61]], \"sentences\": [\"A view of a very large diving platform with different heights is shown and people around the pool are walking.\", \" A person on one of the platforms dive into the pool.\", \" The diver hitting the pool causes a small splash.\", \"Video then freezes and there are no movements.\"]}, \"v_YxUNzzrgJnI\": {\"duration\": 169.01, \"timestamps\": [[0, 7.61], [15.21, 61.69], [68.45, 114.93], [123.38, 147.88], [152.11, 169.01]], \"sentences\": [\"A car is driving down a road with passengers.\", \" The men gather on a bridge, adorning equipment.\", \" A man in a gorilla costume walks along the bridge.\", \" The men take turns bungee jumping from the bridge.\", \" The people wave as they drive away, then are shown posing for a picture.\"]}, \"v_v05j8FVewPc\": {\"duration\": 147.61, \"timestamps\": [[0, 13.28], [18.45, 40.59], [47.24, 144.66]], \"sentences\": [\"A woman is talking and is excited.\", \" She pulls out a pink sweater to iron.\", \" She irons the pink sweater.\"]}, \"v_Tcf9sOzU-7M\": {\"duration\": 224.28, \"timestamps\": [[0, 50.46], [66.16, 224.28], [103.17, 224.28]], \"sentences\": [\"Several different intros eventually leads into two men pointing on a field and getting ready for paintball.\", \" Then the men run throughout the field and attack each other with paintball guns.\", \" They run through the field quickly and attack one another using the paint gun.\"]}, \"v_mwGs9TeYpM0\": {\"duration\": 52.66, \"timestamps\": [[10.27, 21.33], [21.33, 46.08]], \"sentences\": [\"A man is seen speaking to the camera in a large field while holding a lacrosse stick.\", \" He points to himself while holding up the stick and continues to speak to the camera and how to properly hold the stick.\"]}, \"v_XuwqWdp-u2M\": {\"duration\": 41.45, \"timestamps\": [[0, 38.96], [2.07, 37.92], [19.89, 37.92]], \"sentences\": [\"A girl swings her stick away at a pinata.\", \" A group of people watch her from behind and cheer her on.\", \" She continues to swing away at the pinata and the object moves back and fourth in the wind.\"]}, \"v_K8Fq9kjfK_U\": {\"duration\": 150.3, \"timestamps\": [[3.76, 85.67], [67.64, 148.05]], \"sentences\": [\"A camera pans around a large gymnasium and leads into two performers walking to the middle of the stage.\", \" The girls perform a dance routine use batons and end by holding a pose.\"]}, \"v_-Cefl3S_L-w\": {\"duration\": 82.92, \"timestamps\": [[0.83, 40.63], [30.27, 82.09]], \"sentences\": [\"A large group of people are seen playing a tug of war match with one another and pulling onto a rope against one another.\", \" The people continue playing with one another and ends with one team winning and the crowd cheering.\"]}, \"v_NKQehrewXlM\": {\"duration\": 142.55, \"timestamps\": [[1.43, 31.36], [24.23, 89.81], [66.28, 134]], \"sentences\": [\"A man is seen jogging on the side of the road as well as speaking to the camera.\", \" Clips are shown of him warming up on the side and running up along mountainsides.\", \" He continues speaking to the camera while running around a neighborhood and people showing off his movements.\"]}, \"v_LMxfRVcBrD8\": {\"duration\": 187.13, \"timestamps\": [[10.29, 28.07], [28.07, 43.98], [43.98, 77.66], [77.66, 90.76], [90.76, 100.11], [100.11, 127.25], [127.25, 145.03], [145.03, 174.97], [174.97, 187.13]], \"sentences\": [\"A woman chef is demonstrating how to make restaurant style pasta.\", \" She begins with adding spaghetti in a large pot of boiling water.\", \" She sautes chopped onions and some Italian dressing along with garlic on a saucepan.\", \" She then adds a cup of grape tomatoes.\", \" She checks the pasta for it's softness.\", \" She removes the cooked pasta off of the gas and pours it into a plate.\", \" Then she adds the cooked sauce right over the pasta.\", \" She chops fresh basil with a pair of scissors and garnishes it over the pasta along with some cheese Then she shows an Alfredo sauce recipe.\", \" She sprinkles grated Parmesan cheese over the Alfredo pasta to finish off.\"]}, \"v_sV8nkrbJIKE\": {\"duration\": 191.54, \"timestamps\": [[0, 63.21], [65.12, 191.54]], \"sentences\": [\"A close up of food is shown followed by a person putting various ingredients into a mug.\", \" They mix around the ingredients, put the mug in the microwave, and take it out in the end showing off the cake.\"]}, \"v_2PCZkpF1_wU\": {\"duration\": 169.55, \"timestamps\": [[0, 16.96], [20.35, 122.93], [127.16, 169.55]], \"sentences\": [\"A large multilayer red velvet cake is shown, along with the multitude of ingredients.\", \" A hand turns on an oven, before mixing the ingredients together in a bowl.\", \" Throughout, some random tidbits and facts are shared.\"]}, \"v_Z47Ig2AqKfg\": {\"duration\": 87.08, \"timestamps\": [[0, 9.58], [10.45, 67.48], [68.35, 87.08]], \"sentences\": [\"A man is on a stage amongst bright flashing lights and music.\", \" He is quickly playing a violin for the audience.\", \" He pauses to dance, then goes back to playing as they clap and cheer.\"]}, \"v_wbrnTczxvVw\": {\"duration\": 234.85, \"timestamps\": [[23.48, 54.01], [54.01, 83.37], [83.37, 124.47], [124.47, 157.35], [157.35, 186.7], [186.7, 214.89], [214.89, 225.45]], \"sentences\": [\"There are two women dressed in black and blue tank tops demonstrating how to use the hula hoop.\", \" They both begin spinning with blue and silver hula hoops.\", \" They are in a spacious room with little furniture and hardwood floors.\", \" The woman in the blue tank top shows how to hula hoop in fast motion.\", \" Then both the women show how to twirl the hoop by raising it high up above their heads.\", \" They bend their backs to lower themselves down as the continue to hula hoop.\", \" They talk to each other as they share tips about ways to hula hoop.\"]}, \"v_CF6Q5ojrAJo\": {\"duration\": 39.15, \"timestamps\": [[0, 39.15], [0, 36.6], [36.6, 39.15]], \"sentences\": [\"The men are taking turns chopping a log in two.\", \" The chop over and over again.\", \"  The log breaks in two.\"]}, \"v_dth916VxJUw\": {\"duration\": 141.13, \"timestamps\": [[0, 21.17], [22.58, 76.21], [90.32, 103.73], [78.33, 86.8], [129.13, 131.96]], \"sentences\": [\"A man stands in front of a set of pull up and double bars at a park.\", \" The man does shoulder dips on the set of parallel bars.\", \" The man does push ups with his feet up on the parallel bars.\", \" The man does pull ups on one of the bars.\", \" The man walks back up in front of the equipment after the routine.\"]}, \"v_pbTzltaBByk\": {\"duration\": 57.98, \"timestamps\": [[0.58, 27.54], [15.94, 57.4]], \"sentences\": [\"A close up of a hedge is shown followed by a man walking into frames with tools and beginning to cut the hedge.\", \" The man continues cutting all along the hedge while moving in and out of frame.\"]}, \"v_woLR9wHe0Vs\": {\"duration\": 84.8, \"timestamps\": [[0, 8.48], [9.33, 27.56], [30.1, 56.82], [57.66, 84.8]], \"sentences\": [\"We see a man in a yard raking with a title on the screen.\", \" We see a tree trunk and leaves falling.\", \" We see the man talking and see the yard as he rakes.\", \" We then see the man as he blows it with a leaf blower and a vacuum.\"]}, \"v_9-hrNWXnuY8\": {\"duration\": 171.78, \"timestamps\": [[0, 24.91], [24.91, 75.58], [75.58, 171.78]], \"sentences\": [\"Several images of dogs are shown outside in the field.\", \"A young woman then appears in a grassy field and play with her dog and throwing a red Frisbee to him.\", \"The girl then kneels down in the grass and holds the Frisbee over her head and congratulates her dog as the trick is completed and they continue to do it over and over again.\"]}, \"v_lpZytCK-g1M\": {\"duration\": 72.33, \"timestamps\": [[0.36, 67.27], [2.89, 12.3], [11.21, 35.08], [46.65, 71.97]], \"sentences\": [\"A young boy kneels outside and washes his face and hands from small dishes, in front of him, filled with water and soap.\", \"  A boy kneels in a corner of an outdoor patio in front of a row of bowls.\", \"  The boy splashes water on his face and lathers his hands with soapy water from the dishes.\", \"  The boy continues washing his face as a woman in a light colored dress garment walks past him.\"]}, \"v_nT1-fINd4nA\": {\"duration\": 18.72, \"timestamps\": [[0, 18.72], [1.87, 4.4], [6.27, 18.72]], \"sentences\": [\"A person uses a leaf blows and blows leafs.\", \" The dog runs to the right and out of the path.\", \" The dog runs back and fort in front of the leaf blower.\"]}, \"v_K7rfN2W0ts4\": {\"duration\": 181.72, \"timestamps\": [[0.91, 45.43], [33.62, 135.38], [119.94, 181.72]], \"sentences\": [\"A person's hands are seen at a poker table grabbing cards while another deals.\", \" The dealer continuously throws out cards while also putting chips in.\", \" The person playing does the same several times.\"]}, \"v_cufmgoo7E_k\": {\"duration\": 62.23, \"timestamps\": [[0, 29.87], [29.25, 62.23]], \"sentences\": [\"An intro leads into a horse tied up to a calf with a man roping a rope around the animal.\", \" A man is then shown being interviewed on camera as well as an other woman beside him.\"]}, \"v_oofh5aSJUSc\": {\"duration\": 78.6, \"timestamps\": [[0, 10.22], [11, 58.95], [59.74, 78.6]], \"sentences\": [\"A man wearing a ghost shirt is playing a game of beer pong.\", \" He lines up four cups, throwing the balls into the cups.\", \" He continues until all the balls have gone into the cups perfectly.\"]}, \"v_r-rNYo8ju4k\": {\"duration\": 9.78, \"timestamps\": [[0.1, 4.55], [3.18, 9.68]], \"sentences\": [\"A group of men are all seen standing around one another on a beach while speaking and laughing to one another.\", \" Then men the begin putting sunscreen on one another down a line.\"]}, \"v_p1pkFRHG7UY\": {\"duration\": 35.17, \"timestamps\": [[0, 3.87], [4.04, 35.17]], \"sentences\": [\"A tall building is shown with a tower.\", \" People are applauding for people that are jumping off of the top of the building.\"]}, \"v_n5xfkpQ8PWM\": {\"duration\": 15.23, \"timestamps\": [[0, 15.23], [1.07, 2.06], [2.13, 4.04], [4.11, 5.03], [5.18, 5.79], [5.94, 6.93], [7.01, 8], [8.07, 10.13], [10.28, 11.12], [11.2, 15.08]], \"sentences\": [\"A woman wraps several Christmas gifts.\", \" A woman smiles and cuts a wrapping paper with a scissor.\", \" The woman places a teddy bear in a bowl.\", \" A woman puts two crystal presents in a white and pink box.\", \" A woman holds up a covered gift wrapped in silver wrapping paper.\", \" A woman places a jewelry box in a box.\", \" The woman presents a gold bowl.\", \" The woman holds out stacked, wrapped gifts with her hands.\", \" The woman blows glitter papers from the palm of her hand.\", \" The sponsor of the clips is introduced and displayed on the screen.\"]}, \"v_bfZZdTPYmos\": {\"duration\": 228.21, \"timestamps\": [[25.1, 75.31], [75.31, 127.8], [127.8, 142.63], [142.63, 163.17], [163.17, 187.13], [187.13, 201.96], [201.96, 211.09]], \"sentences\": [\"There's a man wearing a white graphic shirt, sitting with bongo drums drumming a beat on the drums.\", \" He is wearing headphones as he drums a beat on the drums.\", \" He continues playing the drums.\", \" After a while he changes the beat after pausing for a little time.\", \"Then continues playing another beat on the drums.\", \" Then he stops for a little bit and rearranges the drums to play again.\", \" Another person is drumming beats on an electrical drum set that has several drums.\"]}, \"v_kHyEIbBnzYM\": {\"duration\": 132.15, \"timestamps\": [[0, 42.29], [44.93, 132.15]], \"sentences\": [\"A man is seen walking over to a young girl who stands on a stage and begins performing martial arts.\", \" She performs several flips and tricks and bows to a man in the end while everyone claps for her.\"]}, \"v_rBQO0Nf05vg\": {\"duration\": 76.72, \"timestamps\": [[0, 17.26], [14.19, 76.72]], \"sentences\": [\"The man in black shirt and blue jeans is rolling an old red carpet and vacuum the floor.\", \" He then unroll the new gray carpet, install it by cutting it and nailing the carpet on the floor, he removed the excess carpet on the wall, flattened it with a tool, then vacuum once the installation is complete.\"]}, \"v_jXARa4T2G8o\": {\"duration\": 166.65, \"timestamps\": [[0, 23.33], [25, 84.16], [96.66, 166.65]], \"sentences\": [\"An intro leads into a camera panning around various snow locations with people moving and plows moving.\", \" The camera shows several different people stretching and warming up followed by two people falling over and standing up.\", \" Several clips are shown of snow boarders doing tricks on a mountain as well as jumps and grinds.\"]}, \"v_HD4aY4ATCFY\": {\"duration\": 159.57, \"timestamps\": [[0, 5.58], [5.58, 41.49], [41.49, 159.57]], \"sentences\": [\"a big burguer is in a table.\", \" woman is talking to the camera sanding i front of a wall with a lot of wallpapers.\", \" woman grab a sandwich and spread butter in it, then put pickles, cheddar cheese, jam and pork, then se put butter on top and toast it, when the sandwich is ready is cutted in the half and its being serve in a plate.\"]}, \"v_xmGucghu2FI\": {\"duration\": 195.79, \"timestamps\": [[8.81, 105.73], [70.48, 192.85]], \"sentences\": [\"An intro of text leads into several clips of athletes throwing javelins off into the distance.\", \" The video continues with several more athletes being shown performing impressive throws with the Javelin.\"]}, \"v_zh2Thxc6NVI\": {\"duration\": 102.94, \"timestamps\": [[0, 16.98], [16.98, 102.94], [71.03, 72.57]], \"sentences\": [\"A man in a red jacket is talking on a hockey rink.\", \" Several people start playing hockey on the ice.\", \" He gives another player a hug.\"]}, \"v_3nLA8R3ULSE\": {\"duration\": 128.06, \"timestamps\": [[0, 128.06], [0, 124.86], [0, 127.42]], \"sentences\": [\"man is riding a motorbike in a dusty path inside a dome.\", \" motorbikes are riding bikes doing motocross in a field inside a dome.\", \" people are in bikes in a competition.\"]}, \"v_5sYPXv0RkiM\": {\"duration\": 50.95, \"timestamps\": [[0, 6.11], [7.13, 50.18]], \"sentences\": [\"A man stands next to a pile of wood holding tools on his shoulders.\", \" The man uses a large ax to chop logs standing upright in a grassy forested area area.\"]}, \"v_3dR4MEUDHa0\": {\"duration\": 153.76, \"timestamps\": [[0, 18.45], [18.45, 19.99], [21.53, 37.67], [37.67, 63.81], [63.04, 116.86], [114.55, 122.24], [122.24, 153.76]], \"sentences\": [\"Two men are playing ping pong together, one guy is wearing a black suit, the guy in the black suit has a unique style.\", \"  The man in the black suit spikes the ping pong ball and celebrates.\", \" The camera scene switches to show the players from another perspective, the player in the black suit makes another spike on the ball.\", \" Now two players proceed to play the player in the black suit at once, he spiked the ball on both players.\", \" The man in the black suit is using nunchucks to play ping pong, they now have 4 players playing against him, the man in the black suit taunts them by reading a book while playing, he also pauses the ping pong balls, takes a sip of water and resumes The man starts laughing at them, and the men are frustrated.\", \" A final challenger arrives and walks towards him.\", \" The challenger spikes the ball so hard it kills him.\"]}, \"v_MEwGjGcV_Ik\": {\"duration\": 40.06, \"timestamps\": [[0, 40.06], [17.82, 22.83]], \"sentences\": [\"Two people front to front push discs on the floor with a stick in a gym.\", \" A man pass on front a clock.\"]}, \"v_scapZQe6_Iw\": {\"duration\": 214.88, \"timestamps\": [[0, 24.71], [32.23, 128.93], [133.22, 214.88]], \"sentences\": [\"Two men are standing on a field behind a row of houses.\", \" One swings a bat and runs onto the field, chasing a ball.\", \" The ball is thrown back to the batter, and he continues the game of cricket with his team mates.\"]}, \"v_OUY4TkdjnyA\": {\"duration\": 173.01, \"timestamps\": [[0, 173.01], [0, 15.57], [15.57, 34.6], [34.6, 38.93], [38.93, 74.4], [80.45, 173.01], [161.77, 173.01]], \"sentences\": [\"The topic of the video shows how to play foosball.\", \"  It begins with a title screen.\", \" Then a clip is shown of a little boy who puts a ball shaped like an eyeball on a foosball table.\", \" A screen with words shows up.\", \" Then, a clip is shown of two boys playing with the foosball table, one of whom is reading a magazine while playing.\", \" Several additional clips appear showing the boys playing foosball in different ways.\", \" The video ends with one of the boys falling asleep while playing.\"]}, \"v_tuhHQ-lHIs4\": {\"duration\": 95.67, \"timestamps\": [[3.35, 6.7], [8.13, 10.52], [11, 13.39], [13.87, 16.26], [16.74, 19.13], [19.61, 20.09], [20.09, 21.52], [22, 23.44], [23.92, 25.83], [26.31, 27.74], [28.22, 29.18], [30.13, 30.61], [31.09, 33], [33.48, 34.44], [34.92, 35.87], [36.35, 36.83], [37.31, 39.7], [40.18, 41.14], [41.61, 42.09], [42.57, 45.44], [45.92, 51.18], [52.14, 53.09], [53.57, 54.05], [55.01, 59.31], [59.79, 75.1], [75.58, 85.14]], \"sentences\": [\"A group of kids poses with the arms in the air.\", \" Another group of kids poses holding up peace signs.\", \" A third group of kids poses with their arms around each other.\", \" A fourth group of kids poses with their mouths open.\", \" A fifth group of kids poses smiling.\", \" A group of kids stands on a line in a gym.\", \" A girl flips across the gym.\", \" A young boy bounces a dodge ball.\", \" A group of kids in blue all run toward the center of the gym.\", \" A young boy aims a dodge ball at a group of kids on the opposite side of the gym and throws the ball hitting one of them.\", \" A young boy in blue celebrates.\", \" Another older boy in blue throws a dodge ball.\", \" A little boy runs to the line holding two balls and throws one of them.\", \" A boy in blue throws a ball while a boy behind him runs.\", \" A boy in pink throws a ball.\", \" A young boy in white dips down and a ball flies over his head.\", \" A boy in pink and then a girl in pink throw a ball.\", \" several kids in white celebrate.\", \" A group of kids runs toward the center of the gym.\", \" The white team plays and a very young player throws the ball.\", \" A boy in green throws the ball and the blue team runs to throw several balls back.\", \" Another boy and girl run and throw a ball at the same time.\", \" A boy in white throws a ball.\", \" A group of adults stands on the line on the gym floor.\", \" The adults play do0dge ball.\", \" A group of kids and adults hold up trophy's and wave.\"]}, \"v_6Pj1Ocz8MUo\": {\"duration\": 101.4, \"timestamps\": [[7.61, 12.17], [12.68, 64.9], [24.84, 26.36], [65.4, 101.4]], \"sentences\": [\"A teen skateboard down a road while turning around and spinning.\", \" Another youth skateboard on the road while making turns.\", \" A boy holds a skateboard on his hand.\", \" A young man skateboard until a busy street, then the teen continue skateboarding.\"]}, \"v_hzU9--vcDMY\": {\"duration\": 124.55, \"timestamps\": [[0, 14.32], [14.32, 54.18], [55.43, 68.5], [69.75, 87.81], [88.43, 112.1], [112.1, 124.55]], \"sentences\": [\"A man puts on paintball gear in a mirror grabs his gun and runs through the snow.\", \" Men duck behind trees, plywood walls and  fences on a paintball field.\", \" Men shoot back and forth at each other.\", \" Men run and duck looking for a place to hide.\", \" The men sit on either side of the wall looking for each other then stand up and face each other.\", \" A man talks in front of a paintball park sign.\"]}, \"v_QBlveXzAZsY\": {\"duration\": 213.69, \"timestamps\": [[0, 34.19], [36.33, 125.01], [132.49, 213.69]], \"sentences\": [\"Several bikes are in a shop lined up.\", \" We see people looking at the bikes, and a large box containing one.\", \" A man opens the box and removes the bike, He shows the pieces to the camera.\"]}, \"v_OYMGPkucZYI\": {\"duration\": 72.56, \"timestamps\": [[0, 5.08], [5.81, 25.03], [25.4, 53.33], [53.33, 63.13], [63.13, 72.2]], \"sentences\": [\"Ehow and Style are on the screen.\", \"  A woman is standing at a table with a shoe and a can of hairspray.\", \"  The woman sprays hairspray on a scuff mark on the shoe and takes a cotton tip and rubs the scuff mark out.\", \"  The scuff mark is gone and she talks to the camera.\", \"  The video ends with a ehow promo.\"]}, \"v_cTbkhIaj_Xc\": {\"duration\": 144.43, \"timestamps\": [[0, 44.05], [44.05, 75.83], [75.83, 119.88], [119.15, 144.43]], \"sentences\": [\"A group of men are standing a field and a man rolls a red ball to the other team and it is kicked out.\", \"After,the team switches and continue to play games of kickball.\", \"Now two more teams approach and the captains play Rock,Paper,Scissor to determine who will start the game.\", \"The woman loses and the men begin to play kicking the ball and running to the bases.\"]}, \"v_xF7etZzLFbY\": {\"duration\": 47.6, \"timestamps\": [[0, 8.09], [9.76, 33.8], [35.22, 47.6]], \"sentences\": [\"A man walks alongside a boy who is mowing the lawn.\", \" He instructs the boy on how to turn the mower and go around a small tree.\", \" He continues walking and guiding the boy.\"]}, \"v_RQwgREUcreI\": {\"duration\": 217.46, \"timestamps\": [[21.75, 125.04], [126.12, 142.43], [143.52, 157.65], [158.74, 217.46]], \"sentences\": [\"A woman holding a doll undoes curlers from the dolls hair.\", \" The woman shoes off the dolls hair.\", \" The woman turns the doll around to show off the back of the dolls head.\", \" The woman continues to show off the dolls hair.\"]}, \"v_3HUoSa_3vpc\": {\"duration\": 82.43, \"timestamps\": [[0, 8.66], [8.66, 46.57], [46.99, 54.4], [56.88, 77.07], [79.13, 82.43]], \"sentences\": [\"We see a bartender behind a bar add ice to a glass.\", \" The man pours three liquors into a glass and shakes it up.\", \" The man pours it in a glass and adds soda.\", \" The man squeezes a lemon, stirs in the glass and transfers it to a smaller glass.\", \" The man adds a straw and presents the glass to us.\"]}, \"v_J5xPmg3tmtg\": {\"duration\": 125.27, \"timestamps\": [[0, 32.57], [30.07, 98.96], [95.83, 125.27]], \"sentences\": [\"A man is seen speaking to the camera while holding sponge and a sander in each hand.\", \" The man then wets the sander and uses it along a set of skis.\", \" He guides it along the ski and stops to speak to the camera and smile.\"]}, \"v_uWWo9qZh3cU\": {\"duration\": 107.32, \"timestamps\": [[0, 26.83], [30.05, 68.69], [77.27, 88.54], [89.61, 107.32]], \"sentences\": [\"News anchors introduce a clip sitting at a desk in a newsroom.\", \" President Obama introduces and interviews a band playing on stage.\", \" President Clinton plays the saxophone on stage with a band.\", \" President George Bush dances with an African drum player and other diplomats.\"]}, \"v_P62B_iDlQXM\": {\"duration\": 30.67, \"timestamps\": [[0, 5.21], [5.06, 15.34], [15.34, 30.67]], \"sentences\": [\"A circle of green grass is shown with a trail of rocks surrounding it,a brick wall,and some trees.\", \"A man then comes and starts to cut the grass going around its perimeter.\", \"After,he takes the lawn mower and starts going vertically across the grass until the whole thing has been completed.\"]}, \"v_-ucwgrxTBEg\": {\"duration\": 193.03, \"timestamps\": [[2.9, 27.02], [27.02, 67.56], [67.56, 84.93], [84.93, 140.91], [140.91, 169.86], [169.86, 181.45]], \"sentences\": [\"Two people are demonstrating Tai Chi.\", \" There is a garden with colorful flowers shown outside the Tai Chi school building.\", \" The instructors wearing blue robes are showing the basic moves used in Tai Chi.\", \" They are swaying their hands above their heads from left to right.\", \" Then the instructor demonstrates arm strength by tapping his right arm over his extended left arm.\", \" Both the instructors stand facing each other as they demonstrate slow and gradual hand movements.\"]}, \"v_FbvTQ1-FCag\": {\"duration\": 234.69, \"timestamps\": [[0, 234.69], [45.76, 48.11], [66.89, 69.23]], \"sentences\": [\"A man is shooting a bow and arrow.\", \" The dart board that they are shooting at is shown.\", \" People are celebrating and clapping hands.\"]}, \"v_j7rvKBvvvRg\": {\"duration\": 163.84, \"timestamps\": [[6.55, 40.14], [41.78, 90.93], [117.96, 163.84]], \"sentences\": [\" A man is on front a sink talking and wash a dish, then he puts it on the counter.\", \" The man put dish soap on a dish and scrub it while rinsing with water.\", \" Then the man shows his tattooed arms, then continues washing dishes.\"]}, \"v_SNuH7bpgHuY\": {\"duration\": 66.1, \"timestamps\": [[0, 41.64], [41.64, 66.1]], \"sentences\": [\"The two bulls run into each other and they bump heads fighting until they knock each other down.\", \" Then the people run over to them and some are holding rope, while one checks on it's bloody head.\"]}, \"v_16T82DHJClA\": {\"duration\": 123.3, \"timestamps\": [[0, 28.36], [28.36, 56.1], [56.72, 90.01], [88.77, 101.1]], \"sentences\": [\"Two men are arm wrestling on a table.\", \" The door opens and another man comes in and arm wrestles.\", \" They start fighting in the room.\", \" They arm wrestle again at the table.\"]}, \"v_g0ns-bQ4PjE\": {\"duration\": 180.03, \"timestamps\": [[0, 180.03], [16.2, 149.42], [69.31, 159.32]], \"sentences\": [\"The lady in pink is belly dancing on the stage.\", \" The man is playing a keyboard, while the other man is playing the drum.\", \" The lady turned around, swirling around the stage and shake her hips.\"]}, \"v_8GeLWWLIar4\": {\"duration\": 98.96000000000001, \"timestamps\": [[0, 14.84], [15.34, 27.71], [27.22, 59.87], [60.37, 75.21], [75.71, 81.65], [81.65, 88.57], [89.07, 98.96]], \"sentences\": [\"We see a dancing man on the cover of a book then on a street.\", \" We see the man sitting on the floor talking to a camera.\", \" We see the man illustrating break dance moves.\", \" The man is talking and sitting still.\", \" We see the man dance fast.\", \" We see the man perform a leg sweep move.\", \" We see an animated close scene and a subscribe page.\"]}, \"v_ys3NrLuOxMs\": {\"duration\": 54.15, \"timestamps\": [[0, 6.77], [7.04, 37.63], [39.8, 54.15]], \"sentences\": [\"Green text explains several rules of the game.\", \" A man and a boy practice lay ups together, and the coach shows his point of view.\", \" They demonstrate a couple of different moves.\"]}, \"v_xSMmdsV65Bc\": {\"duration\": 176.4, \"timestamps\": [[0, 25.58], [25.58, 55.57], [55.57, 176.4]], \"sentences\": [\"A White plastering tool is shown with a brown wooden handle on it.\", \"A person then picks it up and begins to bend it showing how the object works.\", \"After,the object is demonstrated on the corner of the walls and then the plaster is washed off in the grass.\"]}, \"v_xr64cSwpNOM\": {\"duration\": 82.66, \"timestamps\": [[0, 56.21], [56.62, 60.76], [57.04, 69.44], [65.3, 82.66]], \"sentences\": [\"A man competes in a strong man competition and stands on a log chopping it with an ax in hand.\", \" The man finally splits the log below his feet.\", \" A second man in the competition in vest picks up and drops a large spherical weight on a tire repeatedly.\", \" A A man in red steps onto a log and receives an ax by a referee.\"]}, \"v_wAt_OsQe-qM\": {\"duration\": 128.5, \"timestamps\": [[0, 13.49], [17.99, 26.34], [26.99, 128.5]], \"sentences\": [\"A man is talking inside a room in a house.\", \" He is holding a stick and violin.\", \" He then demonstrates how to play the violin.\"]}, \"v_1G3rv9ssDY4\": {\"duration\": 105.77000000000001, \"timestamps\": [[10.58, 16.39], [16.39, 23.8], [23.8, 34.37], [34.37, 43.36], [43.36, 54.47], [54.47, 76.15], [76.15, 79.33]], \"sentences\": [\"Two professional bikers are biking at the Peckham BMX Club.\", \" The bikers are going over a curbed surface at full speed.\", \" There are several other bikers doing the same activity on another curved surface.\", \" There are five bikers wearing helmets standing ready to start a race.\", \" They begin racing at high speed over a curved road.\", \" Two more batches of racers start the same race.\", \" A single biker is going through the curved road at very high speed.\"]}, \"v_hHxEBnhLsXs\": {\"duration\": 122.56, \"timestamps\": [[6.13, 20.22], [22.67, 87.01], [87.01, 102.33], [102.33, 118.27]], \"sentences\": [\"A person perform wake board holding a ski water rope.\", \" The man jumps an obstacle several times and lands in the water.\", \" Then, the man jumps the obstacle and spin around.\", \" Then, the man slides on ramps while flipping in the air.\"]}, \"v_w8gNl6HWctA\": {\"duration\": 150.98, \"timestamps\": [[0.75, 10.57], [11.32, 30.95], [31.71, 43.78], [43.03, 129.84], [129.84, 145.69]], \"sentences\": [\"A man exercises by doing animated stretches in a doorway while holding a tennis racket.\", \"  A woman approaches him and the two begin to talk.\", \"  The man and woman begin to play tennis in a closed gym room by hitting the tennis ball against a wall with their tennis racket.\", \"   The man becomes irate as he plays and begins stomping, yelling, wildly gesturing and pushing the woman down on the floor when she falls as they play the game.\", \"  When the game ends the woman leaves, looking upset and the man looks satisfied as he begins doing wild stretches in front of the doorway and talking to another person.\"]}, \"v__aEA1UuTai8\": {\"duration\": 109.17, \"timestamps\": [[0, 13.65], [20.74, 77.51], [88.43, 109.17]], \"sentences\": [\"A girl is standing on top of a balance beam.\", \" She does forward flips on the beam.\", \" She watches as other girls do the same.\"]}, \"v_bAD_-DEgubk\": {\"duration\": 58.03, \"timestamps\": [[10.15, 19.44], [19.44, 30.46], [30.46, 41.78], [41.78, 47.58], [47.58, 50.19], [50.19, 53.67]], \"sentences\": [\"There's a young boy playing lacrosse in his front yard.\", \" he is holding a yellow lacrosse stick.\", \" He is excited as he plays the game while his mother cheers him up to play.\", \"He picks up the yellow ball and throws it across to his father.\", \" When his father throws the ball to him, he catches it with the lacrosse stick.\", \" His mother gets excited and shouts out for him.\"]}, \"v_6uhLrPgbpUA\": {\"duration\": 46.16, \"timestamps\": [[0, 5.08], [5.31, 8.77], [8.77, 10.39], [10.39, 11.77], [11.77, 12.23], [12.46, 15.69], [15.93, 25.62]], \"sentences\": [\"Several bicycle racers dressed in motocross suits and wearing helmets are lined up at the start line, waiting to race.\", \" The race begins, and all bikers race down a hill, toward a jump.\", \" The bikers jump off a hill, but one of the bikers, dressed in red and black, tumbles to the ground.\", \" The biker immediately behind him, dressed in red, white and blue, tries to avoid the fallen biker, and falls to the ground as well.\", \" The other bikers race off.\", \" The biker in black and red immediately trots off the track, while the biker in red, white and blue, is clearly injured and struggles to get to his knees.\", \" Three men dressed in black jackets come to the aid of the first biker.\"]}, \"v_XFlWVBU4z9E\": {\"duration\": 87.89, \"timestamps\": [[0, 11.86], [18.46, 62.84], [70.31, 87.89]], \"sentences\": [\"A woman attempts to remove her coffee from a glove compartment, but it won't budge.\", \" She leans forward, waving away the camera man as she tries to take a drink.\", \" She finally is able to remove the cup.\"]}, \"v_yE5euaQmcXw\": {\"duration\": 100.71000000000001, \"timestamps\": [[0, 39.78], [23.67, 72], [54.88, 98.19]], \"sentences\": [\"A man is seen grabbing a puck and curling along the ice in front of others.\", \" The people push the puck down the ice and celebrate with one another.\", \" People on the sidelines cheer and the men walk away.\"]}, \"v_c7fu7RcM2iE\": {\"duration\": 179.12, \"timestamps\": [[0, 179.12], [115.53, 128.07], [138.82, 168.37], [173.75, 179.12]], \"sentences\": [\"A group of men do freestyle running jumps throughout the city.\", \" The men run together in a group.\", \" Each man does a set of multiple jumps in a continuous line.\", \" The filming is interrupted by building staff.\"]}, \"v_wiflxvRl04M\": {\"duration\": 63.29, \"timestamps\": [[0, 24.68], [16.14, 63.29]], \"sentences\": [\"A woman is seen walking into frame and nodding at the camera that leads into her pouring mouthwash out and into her mouth.\", \" She rinses the mouthwash around, gurgles the liquid into her mouth, then spits it out and smiles.\"]}, \"v_po_mfZ5LUVo\": {\"duration\": 145.92000000000002, \"timestamps\": [[6.57, 9.48], [10.21, 133.51], [134.24, 137.89]], \"sentences\": [\" A young man stands on the start line of a swimming pool.\", \" Then, the young man gets in the water and swims to the other side of the pull.\", \" After, the young man gets off the pool.\"]}, \"v_TvNNx-ZFfDA\": {\"duration\": 228.57999999999998, \"timestamps\": [[0, 48], [48, 84.57], [84.57, 164.58], [164.58, 228.58]], \"sentences\": [\"There is a facility open just for beer pong games so people can come play.\", \"  Everyone loves it and is excited to be there around other people that like to play.\", \" A lot of different groups are playing and talking about it as well as even playing rock paper scissors to see who gets to go first.\", \" Whoever is the winner gets a check at the end of the game.\"]}, \"v_fUivipdikFU\": {\"duration\": 170.13, \"timestamps\": [[0, 26.37], [35.73, 94.42], [99.53, 170.13]], \"sentences\": [\"A group of women are gathered in an indoor gym.\", \" They are being led by an instructor.\", \" They are doing zumba dances using steppers.\"]}, \"v_g_qHPA0RkAY\": {\"duration\": 101.72999999999999, \"timestamps\": [[1.02, 8.65], [9.16, 26.96], [27.47, 45.78], [46.29, 69.68], [70.19, 98.68]], \"sentences\": [\"A line of knives and cutting utensils are on a table.\", \" A woman is cutting the top off of a pumpkin and raking the seeds into a bowl.\", \" Then she begins gutting the seeds from the pumpkin.\", \" She draws a face on the outside before using a knife to begin carving out the face of her pumpkin.\", \" Finally she places the top back in place, and puts a candle inside.\"]}, \"v_fqOp0uhdEyM\": {\"duration\": 90.19, \"timestamps\": [[0, 6.31], [6.31, 13.53], [13.53, 18.94], [18.94, 29.31], [31.11, 42.84], [41.94, 55.92], [58.17, 66.29], [65.84, 76.66], [76.21, 90.19]], \"sentences\": [\"Michele Obama and another woman are hula hooping outside on a sunny day.\", \" As the camera zooms out a young boy and another woman to the side are also seen hula hooping while people behind run past.\", \" A closeup back to Michele Obama's face where she looks like she is getting quite the workout, making a smirk on her face.\", \" The camera angles down to just the two women's hips with the hula hoops as in the beginning and back up to mostly just seeing Michele's face.\", \" Michele now runs and jumps into a jumprope where she fails to successfully jump in the jump rope twice, both times looking embarrassed.\", \" The third time she prepares herself and runs towards the jump rope successfully jumping a couple times before being unable to do anymore.\", \" Now Michele is running through a foot course on the ground, while a young man trails behind.\", \" She is now going back and forth through another obstacle of sticks and runs towards the woods where she stops and points.\", \" She runs all the way back down the field, giving high fives to random people on the field at her arrival.\"]}, \"v_YFIkhFEtD8w\": {\"duration\": 87.66, \"timestamps\": [[0, 11.83], [10.96, 75.38], [74.95, 87.66]], \"sentences\": [\"A person's hands are seen close up solving a rubix cube followed by a man speaking to the camera.\", \" The man then solves a rubix cube blind folded while a timer captures his score.\", \" He finishes the cube and takes off the headpiece in the end.\"]}, \"v_-jl_v7zi17A\": {\"duration\": 214.55, \"timestamps\": [[0, 124.44], [121.22, 214.55]], \"sentences\": [\"A woman is seen riding on a piece of exercise equipment followed by several shots of her adjusting the equipment and moving it around.\", \" More shots are shown of her riding the equipment and changing the settings on the front.\"]}, \"v_Is0_Qv6NLm0\": {\"duration\": 199.2, \"timestamps\": [[0, 8.96], [9.96, 35.86], [45.82, 69.72], [69.72, 79.68], [81.67, 126.49], [124.5, 183.26]], \"sentences\": [\"Two young guys stand together and hold up money.\", \" The young guys talk to a homeless man and shake his hand.\", \" The men talk with a homeless youth sitting outside a store.\", \" The group all walks together down a street.\", \" The men hold an arm wrestling contest standing on an outside patio.\", \" The man wins and both contestants are given prize money.\"]}, \"v_99dCcB5Unmo\": {\"duration\": 181.07, \"timestamps\": [[11.77, 35.31], [28.07, 159.34], [46.17, 79.67], [85.1, 161.15]], \"sentences\": [\"A dancer's feet are shown in a classroom as well as a ballet class occurring in the background.\", \" The teacher instructs the girls how to perform proper ballet moves, as the students follow.\", \" The girls move their arms in the correct position and eventually turn to one side.\", \" Finally the instructor teaches the girls to extend their legs and perform a proper move.\"]}, \"v_V1CX5B7ih6c\": {\"duration\": 51.85, \"timestamps\": [[0, 12.44], [13.22, 45.11], [45.37, 51.85]], \"sentences\": [\"Two men are on a padded surface, fighting.\", \" They jump and kick at each other.\", \" They roll around on the mat until one of them pins the other.\"]}, \"v_-kAlrG4jS9M\": {\"duration\": 146.61, \"timestamps\": [[0, 14.66], [14.66, 20.53], [20.53, 34.45], [34.45, 43.25], [43.98, 44.72], [44.72, 96.03], [96.03, 146.61]], \"sentences\": [\"A man is shown bullfighting in front of a crowd.\", \" The man falls and is run over by the bull.\", \" The man is escorted out of the arena.\", \" The man falling over and being run over is replayed.\", \" Two people are shown reacting to the incident.\", \" Slow motion video and still images of the man's injury are shown.\", \" The video content repeats starting from the two people reacting.\"]}, \"v_b82y7f7TFbw\": {\"duration\": 167.72, \"timestamps\": [[0.84, 167.72], [15.09, 167.72]], \"sentences\": [\"A woman talks about playing pool.\", \" She explains the right way to stand and how to shoot a ball when playing pool.\"]}, \"v_y5wu5pysE14\": {\"duration\": 187.31, \"timestamps\": [[0, 187.31], [19.67, 187.31], [44.02, 46.83], [74.92, 187.31]], \"sentences\": [\"A guy runs and jumps over a pole without touching it and lands on mats,as some people in the back ground watch and others do there practices.\", \"the guy seems to be practicing how high he can jump by jumping over the pole many times,each time a person raises the pole higher and higher to see if the guy can jump over it.\", \"one jump the guy knocked the pole down when he tried to hump over it.\", \"the guy knock the pole down six time out of all his jumps.\"]}, \"v_dpU5CcFqAPU\": {\"duration\": 117.33, \"timestamps\": [[0, 82.13], [0, 13.49], [58.67, 61.6], [82.72, 110.88]], \"sentences\": [\"Players are pulling the rope in a tug of war match.\", \" A man squats on the floor and rises.\", \" Guys pulling the left side of the rope falls to the ground.\", \" The guys let go of the rope, get off the lawn, and hug in celebration.\"]}, \"v_MO8Dfz2Lp3w\": {\"duration\": 129.2, \"timestamps\": [[0.65, 122.74], [0.65, 28.42], [29.07, 84.62], [102.71, 129.2]], \"sentences\": [\"A group of young men play volleyball on a sandy beach in front of the ocean.\", \"  A group of men in swim trunks and bikini briefs play volleyball in the sand at the beach in front of a tall green volley ball net.\", \"  The men are competitive as they play using feet and head and chest to move the ball around.\", \" One man is lying on the sand and then gets up to play more volleyball.\"]}, \"v_lO2Y1vkpyNc\": {\"duration\": 138.39, \"timestamps\": [[2.77, 45.67], [43.59, 105.18], [79.57, 136.32]], \"sentences\": [\"A man is seen hosting a news segment that leads into a player standing on a field.\", \" A person hits a ball and teammates cheer followed by more people playing the game.\", \" The sport continues on with people throwing balls an hitting them as well as teammates cheering and the host finishes speaking.\"]}, \"v_iVGGeRlJekQ\": {\"duration\": 102.87, \"timestamps\": [[0, 16.97], [16.97, 70.98], [70.98, 91.04], [91.04, 102.87]], \"sentences\": [\"a stands woman by a ball and sets it in place.\", \" Another woman appears and they wrap the ball in wrapping paper.\", \" They finish wrapping and taping the ball.\", \" they take the camera and start to talk into it.\"]}, \"v_ClE77VhGQsk\": {\"duration\": 60.0, \"timestamps\": [[2.1, 26.1], [24.9, 58.5]], \"sentences\": [\"A woman is seen speaking to the camera while people use exercise equipment around her.\", \" More shots are shown of people using the machine as well as people speaking to the camera and close ups of the machine.\"]}, \"v_AJtJcV2_l1Q\": {\"duration\": 182.9, \"timestamps\": [[0, 59.44], [59.44, 75.9], [88.71, 102.43], [142.66, 182.9]], \"sentences\": [\"A construction man introduces the video and talks about placing shingles on a roof.\", \" He places some shingles down and nails them in.\", \" He nails in a metal piece that runs along the corner of the roof and building to help keep things in place.\", \" He repeats this process before closing the video.\"]}, \"v_JAO5R6VA8r4\": {\"duration\": 40.8, \"timestamps\": [[0.82, 10.61], [12.44, 30.6], [28.56, 39.37]], \"sentences\": [\"A shot of a room is shown when a man walks into frame.\", \" The man then begins jump roping over and over again.\", \" He continues to jump rope and ends by walking out of frame.\"]}, \"v_b39hqdpOn7k\": {\"duration\": 84.56, \"timestamps\": [[0, 13.11], [13.11, 46.93], [46.93, 51.16], [51.16, 84.57]], \"sentences\": [\"A still shot picture of a man appears while a lot of white words go scrolling from the bottom to the top.\", \"The man is now in an enclosed ad small racquetball court area and he's going through the motions of hitting a ball with his racquet with the words \\\"not recommended\\\" in the upper left corner.\", \" A screen quickly appears and it has white text that say \\\"please subscribe to this youtube channel\\\".\", \"The man is then shown again playing racquetball on the court until the outro screen appears and it includes a lot of white wording that is scrolling from the bottom to the top.\"]}, \"v_35Xzs3Bz1hQ\": {\"duration\": 91.56, \"timestamps\": [[0, 20.14], [20.14, 44.41], [44.41, 69.13], [69.13, 91.56]], \"sentences\": [\"A working man carried a tray of coffee to a table with guest.\", \" Another man is talking to some reporters with the microphone.\", \" Another entrepreneur talks with the the reporters about the coffee business.\", \" Then they are in the coffee shop them making coffee and working around.\"]}, \"v_ojQdrhHT_gE\": {\"duration\": 95.9, \"timestamps\": [[0, 6.23], [6.23, 95.9], [44.59, 48.43], [0, 95.9]], \"sentences\": [\"People are driving in bumper cars and bump into one another and are forced to stop.\", \" The three bumper cars break away and begin to drive in different directions as they continue to bump into one another.\", \" Two girls in a bumper car bump into a wall and briefliy have a hard time getting back to moving.\", \" People are constantly driving their bumper cars and bumping into things until the ride is over.\"]}, \"v_kC8DS6b76yI\": {\"duration\": 65.85, \"timestamps\": [[8.89, 19.43], [19.43, 39.18], [39.18, 56.3], [56.3, 65.85]], \"sentences\": [\"There's a man wearing a black shirt and a green bandana demonstrating how to spray paint a microfiber sofa.\", \" He is using a red can of spray paint to demonstrate how to paints a cream colored sofa with red paint.\", \" He continues to spray paint the back and the arm rests of the sofa.\", \" He then places one unpainted of the seat cushions back on the sofa.\"]}, \"v_coK0QVLhuj0\": {\"duration\": 92.65, \"timestamps\": [[0, 32.89], [27.33, 74.58], [74.58, 92.65]], \"sentences\": [\"Several shots of people grooming dogs are shown as well as a woman speaking to the camera in several settings.\", \" Dogs are seen being scrubbed, nails clipped, and brushed down with combs by several people and another woman showing off the collars they have in store.\", \" More shots of the store are shown as well as many dogs being groomed.\"]}, \"v_5VHqMj5iikc\": {\"duration\": 148.66, \"timestamps\": [[0, 18.58], [23.04, 91.42], [106.29, 148.66]], \"sentences\": [\"A bike is pulled up to a stop in a park.\", \" A rider takes off from a gate on the dirt bike.\", \" He takes the turns and curves sharply, going over hills.\"]}, \"v_eu3CLlQ9c2s\": {\"duration\": 22.73, \"timestamps\": [[0, 13.98], [14.32, 16.14], [16.14, 20.46], [6.25, 20.12]], \"sentences\": [\"A man replaces a tire on his bike rim using tools.\", \" The man reattaches the bicycle wheel to the frame of the bike.\", \" The sun goes down as the day gets later.\", \" The man stands up his bike and gets ready to depart.\"]}, \"v_hyv8OkQcgEA\": {\"duration\": 137.53, \"timestamps\": [[0, 32.32], [33.01, 88.02], [88.71, 136.16]], \"sentences\": [\"Men blows dead leaves pushing a leaf blower machine on the ground or holding a machine on the back.\", \" Then, a man explains how to operate a leaf blow machine while men continue blowing the leaves.\", \" Another man explains while other men vacuum and blows leaves.\"]}, \"v_U2u9JboK97A\": {\"duration\": 88.05, \"timestamps\": [[0, 3.08], [3.52, 29.94], [11.45, 15.41], [29.94, 33.9], [34.34, 36.54], [36.54, 66.04], [41.82, 47.11], [66.04, 88.05]], \"sentences\": [\"We see an image and a title card.\", \" We see a man playing basketball.\", \" The shot he made is seen in reverse.\", \" We see a gym with teenagers shooting basketball.\", \" We see a title card on black.\", \" A man is shooting basketball in a gym.\", \" We see a man dunk the ball twice.\", \" We see the ending title card on black.\"]}, \"v_9YxgMsdO9GE\": {\"duration\": 138.67000000000002, \"timestamps\": [[0, 128.27], [13.87, 138.67], [45.76, 138.67]], \"sentences\": [\"Two people are seen riding down a road with a dog.\", \" One person is riding a bike and the other a skateboard while the camera follows close behind.\", \" Several other dogs run by and the people continue riding down the road path.\"]}, \"v_tTIsHfF0UgA\": {\"duration\": 76.86, \"timestamps\": [[0, 76.86], [2.31, 76.86]], \"sentences\": [\"man is holding a pole with an ice cream and giving it to a little child.\", \" people are standing and walking behind the boy in a amusement park.\"]}, \"v_O9crPOB_9tE\": {\"duration\": 227.65, \"timestamps\": [[10.24, 220.82], [20.49, 162.77], [54.64, 163.91], [192.36, 220.82]], \"sentences\": [\"A man is surfing in rough ocean water,  riding on and against,  massive high waves while onlookers on motorboats watch and commentate.\", \" The man, in a wetsuit, is standing and riding on a yellow surfboard and a red surfboard first on a calm wave and then on a series of large and high waves.\", \"  The man rides the rough waves on the surfboard with the waves at time covering his entire body and surfboard.\", \"  The man hugs and shakes hands with people upon completing the rough surf episode and rides one last lone, high wave before fading to black.\"]}, \"v_GZsplhHXQy0\": {\"duration\": 11.03, \"timestamps\": [[0.06, 10.92], [0.66, 5.85], [6.4, 8.05], [8.6, 10.81]], \"sentences\": [\"A man performs a kettle throw in front of an outdoor stadium filled with spectators in the audience.\", \"  A man on a round dirt area on a field swings a ball around and around while standing in place.\", \"  The man lets the ball go, where it flies in the air ahead of him.\", \"  The man stops and bends with his knees as he watches the ball fly in the air.\"]}, \"v_PG3f3Wkkptk\": {\"duration\": 15.26, \"timestamps\": [[0, 15.26], [9.84, 15.26]], \"sentences\": [\"A man guides a camel with kids riding on the back along a beach shoreline.\", \" Beach goers stand and walk along the shoreline in bathing suits.\"]}, \"v_lAa8tS962Qg\": {\"duration\": 220.94, \"timestamps\": [[0, 99.42], [100.53, 133.67], [134.77, 156.87], [156.87, 191.11], [193.32, 220.94]], \"sentences\": [\"A teen explains how to flip and turn a surfboard with the feet.\", \" Then, the teen shows how to rise the tips of the surfboard.\", \" Then, the teen stands on the surfboard and demonstrates how to turn it to the side.\", \" After, the teen puts his hand in shoes on the surfboard and demonstrates a turn.\", \" Next, the teen make the turn with his feet.\"]}, \"v_Quj1J31xQFM\": {\"duration\": 30.65, \"timestamps\": [[0, 30.65], [0, 7.97], [8.12, 9.2], [15.94, 20.54]], \"sentences\": [\"People are rowing down a body of water.\", \" A guy rinses his face with water from the body of water.\", \" The guy runs his water fingers through this hair.\", \" A man with a mustache leans over, wets his hand, and whips his face.\"]}, \"v_EJr0qHpy77g\": {\"duration\": 51.97, \"timestamps\": [[0, 7.02], [9.09, 47.55], [48.07, 51.97]], \"sentences\": [\"A guy stands in a court holding a colorful stick and touches a pinata.\", \" A guy swings a stick at a pinata.\", \" The guy stops and puts the stick besides him.\"]}, \"v_gXVjjjvjVf4\": {\"duration\": 227.14, \"timestamps\": [[0, 20.44], [28.39, 169.22], [172.62, 227.14]], \"sentences\": [\"A man is seated in front of a small canvas.\", \" He uses a long pointed brush to create an image.\", \" He then fills the image with paints.\"]}, \"v_8v4NoUJMssI\": {\"duration\": 55.26, \"timestamps\": [[4.14, 9.67], [9.95, 28.18], [28.46, 35.92], [36.2, 49.46]], \"sentences\": [\"A man pours coffee into a mug.\", \" The man grabs open a beer bottle with the use of a jug.\", \" The man pours the beer into the mug.\", \" The man drinks the drink.\"]}, \"v_rWoSJ9YBy5E\": {\"duration\": 28.52, \"timestamps\": [[0, 5.42], [6.56, 13.12], [13.26, 19.25], [19.39, 20.67], [20.67, 25.09], [25.81, 28.52]], \"sentences\": [\"We see a man talking to a camera then hold a curling stone then people laughing at the man.\", \" The man throws the curling stone as people sweep brooms in front of the stone.\", \"  Three ladies throw the stone and slides down the track.\", \" We see people partying an lights flashing.\", \" Images flash of people curing again, and a group of people jump in the air.\", \" We see a title screen for curling.\"]}, \"v_DuLweixeP8I\": {\"duration\": 91.07, \"timestamps\": [[0, 91.07], [0, 35.97], [12.75, 37.79]], \"sentences\": [\"Two people are sword fighting on a stage for an audience.\", \" A guy gestures the the result of each match.\", \" The audience members look on.\"]}, \"v_JbAvSsIaI8g\": {\"duration\": 78.07, \"timestamps\": [[0, 78.07], [16, 35.91], [35.91, 58.16]], \"sentences\": [\"A man is sitting behind a laptop.\", \" He takes a contact out of his eye.\", \" He rubs his eye before putting it back in.\"]}, \"v_lxlXHOHSOlk\": {\"duration\": 103.6, \"timestamps\": [[8.29, 10.88], [10.88, 12.95], [31.08, 32.12], [87.54, 89.61]], \"sentences\": [\"Ships are shown in the water.\", \" Men are walking on a street.\", \" A man in a yellow shirt is riding on a boat.\", \" People watching the men in the boat are applauding.\"]}, \"v_SzLlB2SgtQo\": {\"duration\": 136.3, \"timestamps\": [[0, 38.16], [38.16, 116.54], [116.54, 136.3]], \"sentences\": [\"The video leads into several shots of different people riding around windsurfing while passing one another.\", \" A man is seen talking to the camera and leads into a shot of a person wind surfing and waving to the camera.\", \" More people are shown surfing and waving to the camera while moving around the ocean continuously.\"]}, \"v_LHiui4s2X1s\": {\"duration\": 69.68, \"timestamps\": [[0, 34.84], [23.34, 69.68]], \"sentences\": [\"Two people are seen standing in front of a large crowd with one cheering and shoving his arms back and fourth.\", \" The men throw the ball back and fourth and switch places with another, ending with the same man cheering and hugging another.\"]}, \"v_AjSFqqfzml0\": {\"duration\": 18.25, \"timestamps\": [[0, 1.92], [1.92, 15.79], [15.6, 18.25]], \"sentences\": [\"We see a play button on a screen.\", \" We sees a lady shave her legs with a pink razor.\", \" We then see the ending screen play button.\"]}, \"v_N7z9_g196z0\": {\"duration\": 187.25, \"timestamps\": [[0, 85.2], [0, 178.82], [50.56, 136.69], [117.03, 167.59], [168.52, 180.69]], \"sentences\": [\"Titles in bold lettering are seen on the page against still images and a dark background.\", \" Men play a game of croquet in a grassy yard.\", \" Men kneels down and hits the croquet ball like a billiard shot.\", \" The man runs holding up his stick celebrating.\", \" A man skips on the grass holding his stick smiling.\"]}, \"v_2WvbAEMG5DU\": {\"duration\": 59.71, \"timestamps\": [[0, 48.96], [11.35, 52.25], [48.07, 52.55]], \"sentences\": [\"A mother and child in swim suits build sand castles on the beach.\", \" The child destroys the sand castles.\", \" The mother throws the plastic mold frustrated.\"]}, \"v_UyThFVEvNsI\": {\"duration\": 61.12, \"timestamps\": [[2.14, 4.28], [25.36, 48.59], [51.64, 61.12]], \"sentences\": [\"Two women are playing badminton on a stage.\", \" People are playing the game of the price is right.\", \" A woman wins and walks on the stage to give the host a hug.\"]}, \"v_jDlF26-Uu2I\": {\"duration\": 75.3, \"timestamps\": [[4.89, 72.29], [31.63, 72.29], [6.02, 72.29]], \"sentences\": [\"Two girls are standing on a grass field.\", \" One of the girls starts doing cheerleading moves.\", \" The other girl stands next to her talking.\"]}, \"v__I1DKeGg_w8\": {\"duration\": 135.49, \"timestamps\": [[0, 32.52], [32.52, 69.78], [56.23, 98.91], [98.23, 135.49]], \"sentences\": [\" A man is practicing throwing darts at his dart board.\", \" He throws them all and then he has to get over to get them all off.\", \" Once he has them all off he starts to throw them again.\", \" He repeats this cycle a few times over and over again.\"]}, \"v_WV_MFi9EZeQ\": {\"duration\": 56.47, \"timestamps\": [[0, 12.42], [12.99, 42.07], [42.92, 54.49]], \"sentences\": [\"A man is seen speaking to the camera while holding a scraper.\", \" He pushes the scraper along the car while speaking to the camera.\", \" In the end he slides down into the snow.\"]}, \"v_r1ZhBGLfRWY\": {\"duration\": 14.26, \"timestamps\": [[0, 14.19], [8.7, 14.19]], \"sentences\": [\"A boy is twirled around and prepared to break a pinata.\", \"  Instead he hits a girl in the face.\"]}, \"v_kAmDOTsp5cs\": {\"duration\": 196.72, \"timestamps\": [[1.97, 6.89], [71.8, 91.47], [92.46, 118.03], [119.02, 157.38], [158.36, 180]], \"sentences\": [\"A man skip rope in a drive way, then the man jumps and skip rope.\", \" After, the man holds the rope on his left hand and skip while turning the rope.\", \" Next, the man alternate skipping rope and flip the rope side to side on front.\", \" Also, the man jump rope criss cross and jumps rope double.\", \" Then the man jumps rope doing squatting jumps and jump lunges.\"]}, \"v_Tu1oKxyfHTs\": {\"duration\": 69.43, \"timestamps\": [[0, 8.33], [8.33, 25.69], [25.69, 43.39], [43.39, 57.62], [57.62, 69.43]], \"sentences\": [\"A male is wearing black and white swimming shorts, standing at the edge of a diving board, bounces a few times and then jumps out of view and into the water.\", \" An older shirtless man wearing black shorts begins to walk on the same board of the male who previously jumped but then stops.\", \" On a shorter board a male wearing blue swim underwear walks to the edge of the board jumps a few times, stops, turns around and walks back.\", \"The male walks to the edge of the board again, jumps a few times, then once again turns around and walks back.\", \" The male tries one more time and walks to the edge of the diving board and finally jumps and does a few flips before landing in the water and then swims to the edge of the pool.\"]}, \"v_K-t4tUTq_Ik\": {\"duration\": 12.7, \"timestamps\": [[0, 12.7], [0.32, 12.7], [3.24, 3.49]], \"sentences\": [\"People are standing on a tennis court.\", \" They are playing a game of tennis.\", \" A man in a white shirt hits the tennis ball.\"]}, \"v_Nj_fvFbf56I\": {\"duration\": 32.86, \"timestamps\": [[0, 3.29], [4.11, 18.89], [20.54, 32.86]], \"sentences\": [\"A little boy runs across a hopscotch on the ground.\", \" He returns to the beginning, and tries to jump.\", \" He hops all the way to the end.\"]}, \"v_uqzy1FAUpPM\": {\"duration\": 56.61, \"timestamps\": [[0, 6.23], [6.51, 10.47], [10.47, 14.72], [14.72, 20.1], [20.1, 34.25], [34.25, 39.34], [39.34, 56.61]], \"sentences\": [\"A man gets ready to to preform an event.\", \" He begins to start running fast.\", \" He is running down the lane and the he jumps 3 times into the sand.\", \" He runs out of the pit happily.\", \" He continues to walk around cheering as it cuts to the crowd and announcers.\", \" He blows a kiss to the crowd.\", \" He goes and starts hugging fans.\"]}, \"v_Nc71GzZhAHE\": {\"duration\": 213.23, \"timestamps\": [[0, 7.46], [0, 38.38], [38.38, 75.7], [75.7, 109.81], [109.81, 213.23]], \"sentences\": [\"cars are driving in a snowy highway.\", \" a sign to a sugar mountain is shown and peolpe practicing snowboard.\", \" people is snowboarding down a snowy hill.\", \" snowy cars are riding in snowy hill.\", \" men are snowboarding in a hill.\"]}, \"v_FEGf7ejk8Fc\": {\"duration\": 58.89, \"timestamps\": [[2.36, 20.32], [21.49, 56.53]], \"sentences\": [\"A young child is seen sitting in a chair in front of a table with a large body.\", \" The hands are then seen writing a note and rubbing against the face while the child laughs and the hands continue moving.\"]}, \"v_qbUQVhjQJ48\": {\"duration\": 16.91, \"timestamps\": [[0, 3.47], [3.63, 14.12], [14.2, 16.91]], \"sentences\": [\"A man pushes a disc in front of a hopscotch game.\", \" Another person pushes a disc towards the hopscotch.\", \" The first man makes a funny face.\"]}, \"v_XzNMQl0EdEo\": {\"duration\": 175.15, \"timestamps\": [[0, 10.51], [10.51, 98.96], [98.08, 171.65]], \"sentences\": [\"A lone man in a room with a green screen backdrop performs a break dancing move on a patch of hardwood floors, using his back to spin.\", \"  The man stops dancing and stands in front of the camera talking to it before demonstrating basic break dance moves including using the hands and knees to perform spins from the floor.\", \"  The man continues to demonstrate break dance moves and talk to the camera until he gives a peace sign to the camera and the screen fades to a marketing graphic.\"]}, \"v_M6i-5nzy5Bk\": {\"duration\": 69.2, \"timestamps\": [[0, 8.3], [8.3, 65.39], [65.39, 69.2]], \"sentences\": [\"Clips of women and men are pole vaulting indoors while a lot of people are moving about around them or just watching, and a banner at the bottom reads that  it's at \\\"Texas Elite Pole Vaulting Competition Bell County Expo Center on 12 28 13\\\".\", \"As various clips of different people are pole vaulting, a man and woman are standing indoors next to one another and talking to the camera with the words at the bottom of the screen say their names are Kaitlin Petrillose & Jack Chapman Competitor & Chairman\\\".\", \"The view blurs and white words on the screen appear in the middle and say \\\"Killeen Daily Herald By Marianne Gish\\\".\"]}, \"v_sRMrtzg0nwU\": {\"duration\": 92.22999999999999, \"timestamps\": [[0, 28.13], [27.21, 92.23]], \"sentences\": [\"Various shots of strings are shown followed by knitting supplies and people knitting in a library.\", \" The woman give a small child knit wear and demonstrate how they properly knit to the young girl.\"]}, \"v_lUrHCNqVl-A\": {\"duration\": 176.54, \"timestamps\": [[0, 39.72], [52.08, 125.34], [116.52, 169.48]], \"sentences\": [\"An athletic man is seen standing in a circle followed by spinning around and throwing an object off into the distance.\", \" More people are seen stepping up throwing the object while the camera watches.\", \" Several people watch on the sidelines.\"]}, \"v_9peoWGfb9jc\": {\"duration\": 75.81, \"timestamps\": [[1.14, 26.16], [22.74, 61.03], [54.97, 73.92]], \"sentences\": [\"A man is seen putting tape on a set of skis on each end and begins rubbing wax on the ski.\", \" The man then takes a sander and runs it all along the length of the ski.\", \" The man then takes a board and rubs it along the ski and ends by taking it off.\"]}, \"v_a7DEFV0_nCE\": {\"duration\": 62.79, \"timestamps\": [[0.94, 25.43], [21.03, 47.09], [38.61, 62.16]], \"sentences\": [\"A large beach is shown as well as people standing around on the beach and looking at the sky.\", \" People are seen flying kites up in the air while people look around and watch.\", \" More people are seen flying kites up in the air with some grabbing them off the ground.\"]}, \"v_QHF28_yGOV8\": {\"duration\": 113.41, \"timestamps\": [[1.13, 10.77], [13.04, 110], [106.6, 113.41]], \"sentences\": [\"A man in a black wet suit and carrying a surfboard is talking to the camera man, about to get in the water.\", \" Dramatic music plays while showing various clips of surfers in the water, riding waves.\", \"  The video ends as the man in the black wet suit comes on shore after riding a wave and smiling.\"]}, \"v_-YMpwZkNc2A\": {\"duration\": 162.75, \"timestamps\": [[0, 44.76], [43.13, 126.13], [126.13, 162.75]], \"sentences\": [\"A man walks into frame and speaks to the camera while holding a razor and razor heads in his hands.\", \" A scene appears over the man's video and he is seen rubbing cream on his face and shaving off the hair.\", \" He leaves a bit of hair on his chin and is seen again speaking to the camera and walks away.\"]}, \"v_x7lP6GKepco\": {\"duration\": 76.09, \"timestamps\": [[0, 6.47], [6.47, 25.49], [25.49, 61.63], [61.63, 76.09]], \"sentences\": [\"Various people are shown in a workshop working while pushing objects, driving machinery, working machinery and etcetera.\", \" A woman is shown putting a long metal piece into a large machinery and the words \\\"TODAY'S TOPIC: WELDING\\\" appears on the screen followed by a person wearing a mask and welding with a torch.\", \" A woman is now standing at a machine and she is grabbing various metal objects and putting them into a machine that welds them together.\", \" The outro appears and it's a white screen with a red and blue logo, website and hashtag information.\"]}, \"v_bwcgMTHFRV8\": {\"duration\": 136.7, \"timestamps\": [[0, 46.48], [46.48, 54.68], [54.68, 136.7]], \"sentences\": [\"A large band is walking down a parade and there a lot of people walking alongside, and standing on the sidelines watching or taking photos and videos.\", \"The view changes to women carrying and swinging flags on a pole and then switches back to the large band that comes to a stop and continues to play for the crowd.\", \"The band resumes walking and so does the crowd around and behind them.\"]}, \"v_Jy9kiITFsjI\": {\"duration\": 88.77, \"timestamps\": [[5.77, 11.1], [27.96, 32.4], [59.92, 60.81]], \"sentences\": [\"People are in the stands of an arena.\", \" A bull gets drug out of the arena by horses.\", \" A woman is talking to the camera.\"]}, \"v_PtoVL69LEh4\": {\"duration\": 148.4, \"timestamps\": [[0, 144.69], [28.2, 144.69]], \"sentences\": [\"A man raps along with a song.\", \"  The guy gets a tattoo as well.\"]}, \"v_zm8gZpwZkRE\": {\"duration\": 60.88, \"timestamps\": [[0, 60.88], [4.87, 60.88], [7.61, 60.88], [10.35, 60.88]], \"sentences\": [\"A woman is in a room with chairs.\", \" She is playing the violin.\", \" Two men are playing drums with her.\", \" The camera pans between them.\"]}, \"v_dVLIfsEMD8Y\": {\"duration\": 17.14, \"timestamps\": [[0, 1.89], [1.89, 9.25], [9.17, 12.34], [12.25, 17.14]], \"sentences\": [\"A man is throwing darts on to a dart board.\", \" He throws one and makes it to the center of the board.\", \" He throws again and also makes it to the center.\", \" Every single shot makes it right in the center of the board.\"]}, \"v_-cwPzzcNpGs\": {\"duration\": 131.89, \"timestamps\": [[0, 48.8], [65.94, 116.06], [114.74, 128.59]], \"sentences\": [\"Two men sit together at a booth and compete in an arm wrestling match.\", \" The friends gathered around watching make challenges with the arm wrestlers after the match.\", \" The men shake hands and talk after the match.\"]}, \"v_8dhDEj0Dd5s\": {\"duration\": 157.34, \"timestamps\": [[0, 30.68], [30.68, 72.38], [72.38, 112.5], [112.5, 157.34]], \"sentences\": [\"A gymnast is standing at a pose waiting to begin her performance.\", \" She starts to twirl her baton and move her body a long with it doing flips and everything.\", \" She begins to do one handed cartwheels and swinging the baton around her neck.\", \" She does a stunning performance and once it is over she freezes in place.\"]}, \"v_uYLYJABDubw\": {\"duration\": 21.36, \"timestamps\": [[0, 17.73], [3.42, 4.81], [17.94, 18.69], [19.01, 19.87], [19.12, 21.36]], \"sentences\": [\"We see two ladies arm wrestling.\", \" The right lady looks at the camera.\", \" The right lady wins the match.\", \" The left lady drops her head to the table.\", \" The right lady throws her arms in the air and talks to the camera.\"]}, \"v_wqM6TdjBCfs\": {\"duration\": 212.39, \"timestamps\": [[5.31, 14.87], [13.81, 48.85], [16.99, 25.49], [48.85, 153.98], [153.98, 202.84]], \"sentences\": [\"A man chops wood with an ax on the snow.\", \" A person stands behind the man.\", \" A person handles the spliced firewood to a man.\", \" The man continues chopping firewood with the ax.\", \" The ax gets stack in a piece of wood, but the man get it off  and continues cutting the firewood.\"]}, \"v_ZksAXEVmFrg\": {\"duration\": 88.33, \"timestamps\": [[0, 15.02], [15.46, 88.33]], \"sentences\": [\"An elderly white woman with short blonde hair and glasses begins talking in the corner of the gymnasium.\", \"The small girls then enter the gym and a male coach begins assisting them as they walk across the balance beam.\"]}, \"v_bjYah4IvnII\": {\"duration\": 62.81, \"timestamps\": [[0, 17.27], [16.96, 48.05], [49.31, 62.81]], \"sentences\": [\"A camera with a caption is shown and leads into several people jumping off a bridge.\", \" Another shot of people riding down a river on tubes is shown followed by large groups of people on the sandbars.\", \" The cameraman grabs another tube an jumps in the water while still floating down and catching a popped balloon.\"]}, \"v_4aiE_-yQWZE\": {\"duration\": 182.0, \"timestamps\": [[0, 24.57], [24.57, 58.24], [58.24, 99.19], [98.28, 116.48], [116.48, 153.79], [154.7, 182]], \"sentences\": [\"Several people are dressed in sweatsuits rolling out mats in a large gym.\", \"After the mats are rolled out,other individuals begin walking across the floor dressed in fencing uniforms.\", \"The athletes then begin walking around and talking to each other as a small mascot walks across the mat.\", \"Finally,a match begins and once it is over about five of the individuals pose for a picture.\", \"The camera then speeds up and shows several teams and people entering and leaving the gym.\", \"Next,fencing matches are shown between about 12 pairs of people and they line up and give each other a high five before huddling up and having a talk with their coach.\"]}, \"v_W8eqlIPRWCk\": {\"duration\": 99.36, \"timestamps\": [[0, 6.46], [6.46, 93.89], [93.89, 99.36]], \"sentences\": [\"A black screen appears with blue letters that say \\\"Jayne Clarke Field Hockey Clips 2009\\\".\", \"The clips begin to play and there are a series of small clips put together of the girl playing with a team, practicing alone, and practicing on a course.\", \" The video ends with the girl practicing alone on a empty and large blue indoor court.\"]}, \"v_6tdIiKzMVcg\": {\"duration\": 202.11, \"timestamps\": [[0, 189.98], [0, 8.08], [32.34, 48.51], [53.56, 85.9], [99.03, 104.09], [176.84, 188.97], [189.98, 202.11]], \"sentences\": [\"We see strong men arm wrestling.\", \" We see two men hug after the match.\", \" A host in a white suit narrates.\", \" We see a camera man right behind the table.\", \" A person walks in front of the camera.\", \" The final match starts and ends very quickly and the men hug.\", \" We see a mirage of images.\"]}, \"v_sd2MhdKdQTo\": {\"duration\": 222.94, \"timestamps\": [[8.92, 193.95], [89.17, 222.94]], \"sentences\": [\"A woman is seen sitting on stage while singing into a microphone and people sitting behind her playing instruments.\", \" The girl continues singing with the band and ending by speaking to the audience.\"]}, \"v_iODCh_DsGak\": {\"duration\": 171.62, \"timestamps\": [[0, 10.3], [9.44, 157.03], [157.03, 171.62]], \"sentences\": [\"A man in a suit and a woman in a dress are standing in front of an audience.\", \" They begin to dance on the floor.\", \" They finish dancing and the audience claps.\"]}, \"v_WreRcthWXv8\": {\"duration\": 155.67000000000002, \"timestamps\": [[0, 14.01], [129.2, 129.98], [0, 155.67]], \"sentences\": [\"A person is holding onto a motorcycle wearing roller blades and being dug along a street.\", \" A man is standing by a fountain of water.\", \" People are doing roller skating tricks.\"]}, \"v_7FtSO6hPcxU\": {\"duration\": 222.52, \"timestamps\": [[0, 8.9], [8.9, 21.14], [21.14, 134.62], [134.62, 157.99], [156.87, 222.52]], \"sentences\": [\"A man talks to the camera in a close up view.\", \" Scenes of the man's daily activities are shown.\", \" Scenes of the man getting serviced at a hair salon is shown, usually with other individuals in the background.\", \" Scenes of the man talking to the camera with various others are shown.\", \" More scenes from the hair salon are shown.\"]}, \"v_47SHPAe0s0k\": {\"duration\": 170.07999999999998, \"timestamps\": [[0, 23.81], [23.81, 123.31], [125.86, 170.08]], \"sentences\": [\"Three men are seen riding on top of horses around one another and leads into a bull running in and chasing  a man on a horse.\", \" The man rides around the bull and shows several more shots of the riders riding around the bull.\", \" At one point more men run into the pit and the bull lays down on it's side while the audience cheers and the man holds his arms up.\"]}, \"v_CAa74sedG9A\": {\"duration\": 80.55, \"timestamps\": [[0, 17.32], [18.53, 32.62], [34.64, 58.8], [60.82, 80.55]], \"sentences\": [\"Kids are on a field, kicking a ball back and forth.\", \" A girl runs up and kicks at the boy.\", \" She runs down the sideline and tries to take the ball while other girls watch from the sidelines.\", \" The kids continue playing until the clip ends.\"]}, \"v_WlsVDIIo2dk\": {\"duration\": 236.31, \"timestamps\": [[0, 126.43], [67.35, 236.31]], \"sentences\": [\"Several couples of men and women are shown performing a tango routine in front of a group of people.\", \" Many people watch on the sides and one couple laughs and walk away in the end.\"]}, \"v_Ib1xMq2aUl0\": {\"duration\": 193.12, \"timestamps\": [[10.62, 16.42], [62.76, 179.6]], \"sentences\": [\"These 3 men are shown rollerblading outdoors in the middle of the street.\", \" They are dancing, going in circles, and spinning around.\"]}, \"v__7JooVc_sCQ\": {\"duration\": 207.91, \"timestamps\": [[5.2, 11.44], [10.4, 50.94], [53.02, 83.16], [85.24, 198.56]], \"sentences\": [\"A group of bike riders are awaiting to start a race, eventually all falling down when the gate open.\", \" A close up shot of a bike is done while a man puts his gear on to ride.\", \" One rider is shown riding around while another does various tricks.\", \" Several different bikers are shown riding up and down tracks and flying through at record speeds.\"]}, \"v__vVKdZM5Cy8\": {\"duration\": 107.02000000000001, \"timestamps\": [[0, 29.97], [29.43, 107.02]], \"sentences\": [\"A man is shown holding a volleyball talking to the camera and leads into showing various jumps.\", \" He continues talking to the camera and moving around the gym hitting the ball.\"]}, \"v_gsfIHiBB6xE\": {\"duration\": 85.9, \"timestamps\": [[0, 0.86], [0.86, 85.9], [7.3, 9.88], [48.54, 50.25], [50.25, 59.27], [51.54, 55.41], [55.84, 85.9]], \"sentences\": [\"The  men on the field grab their tools.\", \" We see men in a field cutting tall grass as other watch.\", \" The left man uses a sickle and takes the lead over the man with the weed wacker.\", \" The man with the sickle finishes.\", \" The crowd claps for the man.\", \" The shirtless man walks away.\", \"  The camera pans right to show the other man working on the grass.\"]}, \"v_xrbKvttgcMA\": {\"duration\": 38.82, \"timestamps\": [[0, 6.6], [6.6, 34.55], [34.55, 38.82]], \"sentences\": [\"A boy is standing on a court holding a racquet in his right hand, a ball comes his way and he hits it very hard.\", \"The boy walks towards the left and a man is there hitting the ball and he and the boy go back and forth taking turns hitting the ball very hard against the wall in front of them.\", \"The ball rolls on the ground, the boy picks it up and hits it to the wall and once more the man hits the ball and the camera points to the ground.\"]}, \"v_WC3GCmEqCBc\": {\"duration\": 106.0, \"timestamps\": [[3.18, 40.28], [24.91, 77.38], [74.2, 104.94]], \"sentences\": [\"A chef is seen standing behind a counter speaking to the camera.\", \" The man is then seen holding up several tools and presenting them to the camera.\", \" The man then uses the tool in a bowl of salad and presents it to the camera.\"]}, \"v_anO5Xhewrsw\": {\"duration\": 72.77, \"timestamps\": [[0, 6.55], [8.73, 41.48], [45.48, 72.77]], \"sentences\": [\"A little girl is sitting at a drum set with headphones on.\", \" She plays the drums and cymbals, keeping a fast beat.\", \" She bangs her head back and forth as she plays.\"]}, \"v_RUv9YPd_0Zc\": {\"duration\": 210.47, \"timestamps\": [[0, 35.78], [35.78, 54.72], [54.72, 131.54], [131.54, 184.16], [184.16, 210.47]], \"sentences\": [\"An introduction comes onto the screen for a presentation about auto repair.\", \" The video displays several different parts of the car that is being worked on.\", \" The a dent fixing mechanism is attached to the cars to show how it works to repair one wheel.\", \" Then it shows another wheel being repaired by the same mechanism.\", \" Next, the closing credits for the video appear on the screen.\"]}, \"v_mnS-nMZne3I\": {\"duration\": 9.22, \"timestamps\": [[0, 2.86], [2.72, 5.35], [8.94, 9.22]], \"sentences\": [\"A man walks onto a diving board.\", \" He jumps on the diving board several times and jumps into a pool.\", \" The man surfaces and stands up in the pool.\"]}, \"v_3Vj0GcB_qh4\": {\"duration\": 66.08, \"timestamps\": [[0, 4.3], [4.63, 63.77], [64.1, 66.08]], \"sentences\": [\"Two young girls stand in front of a fireplace holding violins.\", \"  The girls begin playing a piece of music on the violins and then bow at the end.\", \" Two younger children appear outdoors with a website address overlaid.\"]}, \"v_BTtMoBOHrlQ\": {\"duration\": 190.03, \"timestamps\": [[0, 14.25], [17.1, 33.26], [37.06, 172.93], [175.78, 190.03]], \"sentences\": [\"Two men are posing in a photo for martial arts.\", \" A group is gathered inside a room, shown in various martial arts poses.\", \" They change movements, text on the screen showing what they are doing.\", \" It ends with an ad for the school.\"]}, \"v_mwndGBRpOPg\": {\"duration\": 6.59, \"timestamps\": [[0, 2.3], [2.04, 4.38], [4.54, 6.49]], \"sentences\": [\"A person is seen riding a surfboard with a kite on top along the water.\", \" The person pushes themselves up into the air and flips back down.\", \" He continues riding along the water.\"]}, \"v_CrCtYGvG9Uw\": {\"duration\": 99.5, \"timestamps\": [[0, 6.96], [6.47, 22.39], [22.39, 54.72], [54.23, 78.11], [78.6, 99.5]], \"sentences\": [\"A man is talking to a camera about his hair.\", \" Another man comes in and begins cutting the first boy's fair.\", \" He brushes his hair and cuts through it with a fine comb.\", \" The stylist performs various styles and techniques on the hair.\", \" The stylist puts gel in the hair and the boy is finished with his cut.\"]}, \"v_fYuJdh9gqr0\": {\"duration\": 63.79, \"timestamps\": [[0, 2.55], [2.55, 10.84], [10.84, 15.95], [15.95, 36.68], [36.68, 41.46], [41.46, 52.3], [52.3, 63.79]], \"sentences\": [\"A man in a hard hat is looking at a building.\", \" A second man walks up and shakes the first mans hand.\", \" Both men acknowledge the building and discuss.\", \" Three men are spackling the wall as two comparisons are shown.\", \" The two men inspect the wall.\", \" Another man walks up and is introduced to the other man.\", \" The man walks away as the first two continue talking.\"]}, \"v_vMdSEzQkRTg\": {\"duration\": 8.08, \"timestamps\": [[0, 3.68], [3.72, 8.08]], \"sentences\": [\"A person stands on front a wood fire in the woods.\", \" Then, the person light a match and throw it in the wood fire, then a fire lit.\"]}, \"v_WsHzMciP5X8\": {\"duration\": 106.16, \"timestamps\": [[0, 21.23], [15.39, 67.41], [59.45, 101.92]], \"sentences\": [\"A large audience is seen watching a sports game and leads into a coin toss.\", \" The audience cheers more and leads into people throwing a ball and others hitting it.\", \" More shots of the game being played are shown as well as others watching on the sides.\"]}, \"v_QBJelFFVJu0\": {\"duration\": 77.14, \"timestamps\": [[0, 2.31], [4.63, 74.82], [74.44, 77.14]], \"sentences\": [\"The harmonica is held up and shown.\", \" A person holds a harmonica between his hands a plays a song.\", \" The person finishes the song and holds up the harmonica.\"]}, \"v_XgaEYidtX6E\": {\"duration\": 192.29, \"timestamps\": [[0, 25.96], [25, 101.92], [101.92, 148.07], [148.07, 192.29]], \"sentences\": [\"Walking down the street holding onto a skate board the boy puts his board down and begins to skate.\", \" Then three friends join him and they skate down the road.\", \" While on the board they bend down with their hands behind their backs to build up some more momentum.\", \" They ride around all over from one area to another enjoying their free time boarding.\"]}, \"v_wqZzLAPmr9k\": {\"duration\": 184.53, \"timestamps\": [[0, 12.92], [17.53, 119.94], [122.71, 184.53]], \"sentences\": [\"An image is shown of a plate of sardine pasta, along with a list of ingredients.\", \" Water is salted and boiled for the pasta, and vegetables are sauteed in olive oil.\", \" Sardines are added, then mixed with the spaghetti noodles, creating a finished dish.\"]}, \"v_YcxPoVlukf4\": {\"duration\": 107.3, \"timestamps\": [[0, 9.12], [14.49, 50.43], [54.19, 107.3]], \"sentences\": [\"A hockey player talks in an interview on tv.\", \" Several stills of him playing ice hockey are shown as he talks.\", \" He continues talking as the pictures flash across the screen.\"]}, \"v_Y-1QkIGm81w\": {\"duration\": 56.87, \"timestamps\": [[0, 15.07], [8.81, 24.74], [22.75, 56.87]], \"sentences\": [\"The man wearing gray sweater is playing guitar.\", \" The man looked on the guitar.\", \" The man in blue shirt play his guitar, then poke the threads.\"]}, \"v_rWfi4xN3XQI\": {\"duration\": 225.25, \"timestamps\": [[0, 1.13], [1.13, 4.5], [5.63, 90.1], [91.23, 131.77], [132.9, 225.25]], \"sentences\": [\"A woman stands next to a horse in a field.\", \" \\\"HJCTV presents: Grooming your horse 101\\\" is overlaid.\", \" A woman stands in a stall with a horse with a grooming brush, she starts brushing it.\", \" Two girls stand outdoors with another horse and brush it.\", \" The first woman returns with a new brush and allows children to help brush the horse.\"]}, \"v_cRBnLFujD3g\": {\"duration\": 111.34, \"timestamps\": [[0, 111.34], [0, 7.79], [17.26, 29.51], [36.74, 77.38], [77.94, 80.72], [82.95, 87.4], [87.4, 89.07], [101.32, 107.44]], \"sentences\": [\"Performers sings and dancers on a concert stage.\", \" A performer climbs down the stairs.\", \" Several performers pose, gesture, and point towards the audience.\", \" A performer break dances on stage.\", \" The break dancer lays on the stage floor.\", \" A performer raises the standing break dancer's hand in the air.\", \" The break dancer gives a performer five.\", \" A performer squats and gestures.\"]}, \"v_M8aDrPK7D94\": {\"duration\": 82.39, \"timestamps\": [[0, 41.19], [45.31, 48.61], [58.49, 82.39]], \"sentences\": [\"A man jumps off of a bridge and bungee jumps.\", \" It shows him climbing back up onto the ledge.\", \" He jumps again off the bridge.\"]}, \"v_b-p57jzkrQI\": {\"duration\": 25.33, \"timestamps\": [[0, 25.33], [13.43, 15.07], [16.59, 17.73]], \"sentences\": [\"A man in a chefs outfit is standing in a kitchen.\", \" He flips something that is in a pan.\", \" He uses a spoon to stir what is in the pan.\"]}, \"v_gCxLSh-cgng\": {\"duration\": 151.63, \"timestamps\": [[0, 2.27], [0, 131.92], [28.81, 67.47], [67.47, 88.7], [131.92, 151.63]], \"sentences\": [\"An introduction comes onto the screen for a video about playing tennis.\", \" And man comes on to talk about the lessons that he will be teaching in the video.\", \" He swings the racket several times to demonstrate a good form for swinging the tennis racket.\", \" Another man comes onto the screen and performs the several tennis wings while the other man narrates.\", \" As the video ends the closing credits are displayed on the screen.\"]}, \"v_nuqxJvTbG9w\": {\"duration\": 30.65, \"timestamps\": [[0, 17.32], [17.32, 30.65]], \"sentences\": [\"A woman is seen kicking a ball out into a field of people and then running back to the home plate.\", \" She then kicks the ball again while others around her run and grab the ball from the field.\"]}, \"v_2j-DRUk2yCs\": {\"duration\": 81.03999999999999, \"timestamps\": [[0, 6.48], [8.1, 23.5], [24.72, 81.04]], \"sentences\": [\"A close up is shown of an image on a cell phone.\", \" A male gymnast runs, flipping back and forth across a mat.\", \" He is then shown flipping far into the air before standing before the cheering crowd.\"]}, \"v_tV_1whw_S4g\": {\"duration\": 40.36, \"timestamps\": [[0, 40.36], [0, 9.28], [7.47, 40.36]], \"sentences\": [\"Two people are wrestling in a ring.\", \" A referee is standing on the side of the ring watching them.\", \" The crowd behind them is cheering.\"]}, \"v_BMzspHz04Q8\": {\"duration\": 100.6, \"timestamps\": [[0, 11.07], [11.07, 25.65], [16.6, 83.5], [29.68, 65.39], [77.46, 85.51], [78.97, 98.59]], \"sentences\": [\"A gymnast in a pink outfit stretches before starting routine.\", \" She jumps on the balance beam and balances herself.\", \" She begins her balance beam routine.\", \" She does several flips and somersaults.\", \" She is getting ready to dismount.\", \" She flips several times in the air during her dismount and lands perfectly.\"]}, \"v_Y1kCMRoDjWk\": {\"duration\": 164.06, \"timestamps\": [[0, 21.33], [17.23, 77.93], [54.14, 103.36], [101.72, 164.06]], \"sentences\": [\"A man stands by a row of hedges.\", \" He then begins to trim them with sheers.\", \" He trims the top of a bush.\", \" Several different groomed bushes are shown.\"]}, \"v_8XB_0x_erho\": {\"duration\": 59.12, \"timestamps\": [[0, 8.87], [8.87, 59.12], [20.4, 59.12]], \"sentences\": [\"A little chinese boy sits in a room on the floor with books and toys around him while he looks into the camera.\", \"the little chinese boy then goes outside and start playing in a park,having fun by his self while the camera man record him.\", \" the boy little slides down the slide,climb steps while smiling and having fun.\"]}, \"v_Ib3XqmBqy10\": {\"duration\": 201.88, \"timestamps\": [[0, 27.25], [24.23, 101.95], [105.98, 201.88]], \"sentences\": [\"Various shots of people are shown followed by several shots of kids jumping rope.\", \" A man then speakers to various kids on a court and shows more shots of the kids jumping rope together.\", \" The man then jumps rope while more kids perform tricks with their jump ropes and ends with the man speaking to one more jumper.\"]}, \"v_PZjWkB_q2lE\": {\"duration\": 225.16, \"timestamps\": [[0, 166.62], [50.66, 69.8], [77.68, 88.94], [106.95, 118.21], [201.52, 225.16]], \"sentences\": [\"Cars are being washed at a car wash.\", \" A man in a red shirt talks to a man in a black shirt.\", \" The car is going through an automatic car wash.\", \" Someone is now scrubbing a car to wash it.\", \" They walk into a garage and inspect the cars.\"]}, \"v_yNwdhK5UKec\": {\"duration\": 151.51, \"timestamps\": [[0, 151.51], [9.85, 141.66], [14.39, 46.97], [34.85, 132.57], [87.88, 151.51]], \"sentences\": [\"Four men in the studio are playing different instrument.\", \" The man with big guitar is singing while playing his guitar.\", \" The man playing harmonica stopped playing and looked at the man singing, then he continue to play his harmonica.\", \" Two men behind the four men are playing instruments.\", \" The man with guitar pull out a white cloth and wave it.\"]}, \"v_WUTHTWQb-5g\": {\"duration\": 15.09, \"timestamps\": [[0, 1.81], [1.81, 10.57], [10.41, 15.09]], \"sentences\": [\"A young girl is standing in a room with a grey sweater,black tights,and pink shoes.\", \"In her hand she has a croquet stick and is fiddling with the small ball.\", \"She does it for quite some times keeping it still until eventually walking with the ball and ending the video.\"]}, \"v_nFfMY4CQq50\": {\"duration\": 234.15, \"timestamps\": [[1.17, 2.34], [4.68, 222.44], [15.22, 173.27], [114.73, 119.42], [149.86, 155.71], [203.71, 215.42], [224.78, 234.15]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy standing in a bathroom speaks and gestures.\", \" A person shaving his chin is shown.\", \" A guy puts cream from a blue tube in his palm and applies it to his chin.\", \" A guy puts gel from a blue tube in his palm and applies it to his chin.\", \" A guy washes his face.\", \" The credits of the video are shown.\"]}, \"v_Eh0OoXQDLVc\": {\"duration\": 111.61, \"timestamps\": [[5.58, 15.63], [15.63, 78.68], [78.13, 102.68], [102.68, 110.49]], \"sentences\": [\"A woman talks to the camera while young girls stand behind her.\", \" The woman continues to talk to the camera while demonstrating individual dance movements, as the young girls follow along.\", \" The woman leads the girls in practicing the entire sequence.\", \" The girls perform the sequence on their own.\"]}, \"v_jsu65VwKf74\": {\"duration\": 145.98, \"timestamps\": [[0, 29.93], [29.93, 65.69], [65.69, 123.36], [123.36, 145.98]], \"sentences\": [\"A player of a read team performs a free shot on front a soccer goal, and the players scores.\", \" Again a player wearing red t-shirt scores, and the players jumps and hug to celebrate.\", \" Then, a player with white t-shirt scores, and the teams continue playing.\", \" The red team scores again, and people celebrate.\"]}, \"v_7LmSZAoD6-c\": {\"duration\": 109.58, \"timestamps\": [[0, 95.33], [95.88, 109.58]], \"sentences\": [\"woman is running to make a high jump and start walking and the woman makes the same high jump 3 times.\", \" woman loose the hair sits on the floor and untie the shoes.\"]}, \"v_n913aoCh1IQ\": {\"duration\": 78.97, \"timestamps\": [[0, 78.97], [20.14, 20.53], [48.57, 51.73], [48.57, 78.97]], \"sentences\": [\"People stand on a slack rope and cross it on a beach.\", \" A man falls off into the dirt.\", \" A man takes his shirt off and throws it on the sand.\", \" A man continues doing tricks on the slack rope.\"]}, \"v_xhyCKLKaG0c\": {\"duration\": 47.49, \"timestamps\": [[0, 6.65], [6.65, 20.66], [20.66, 33.95], [33.71, 47.49]], \"sentences\": [\"Dragon ball z characters are yelling at one another standing in front of each other.\", \" They start to play paper scissors rock to see who will win.\", \" They have watchers standing by very stressed about how it will end up.\", \"  They just keep playing and one of the other characters starts to get really angry.\"]}, \"v_xbWAmySRE88\": {\"duration\": 145.31, \"timestamps\": [[0, 9.45], [10.17, 37.78], [37.05, 43.59], [43.59, 118.43], [118.43, 145.31]], \"sentences\": [\"Two women are standing behind a young woman who is sitting in a chair getting her hair done.\", \"The video begins with a title page showing that a video of a versatile sew-in is about to be done.\", \"First image,the braid pattern is shown on the individuals head as some of her hair is left out around the perimeter of her head.\", \"A lady then grabs weave, a needle and begins to sew in the hair.\", \"Once she shows how the sew-in is secured,the finished product is shown and the girl now has long curly hair.\"]}, \"v_CEQqdt0vV0o\": {\"duration\": 219.45, \"timestamps\": [[0, 31.82], [52.67, 148.13], [155.81, 219.45]], \"sentences\": [\"A man is standing and talking inside a gym to the camera.\", \" He stands on the open surface, dancing back and forth.\", \" He demonstrates several moves as he goes.\"]}, \"v_SSldR9yOJq8\": {\"duration\": 236.22, \"timestamps\": [[0, 112.2], [99.21, 236.22]], \"sentences\": [\"A person wearing a costume is seen standing and posing inside a canoe and eventually pushes themselves down the river.\", \" The person moves in the canoe slowly and the camera follows him moving along the water in the canoe.\"]}, \"v_6ciZ58xAV9I\": {\"duration\": 50.11, \"timestamps\": [[0, 6.51], [6.51, 13.28], [13.53, 36.33], [36.33, 39.34], [39.34, 50.11]], \"sentences\": [\"A gymnast wearing a red and white uniform prepares to mount a pommel horse for his exercise.\", \" The gymnast jumps onto the pommel horse and starts with scissor moves.\", \" The gymnast moves into a spinning exercise while on the pommel horse.\", \" The gymnast moves into a hand stand while walking with his hands.\", \" The gymnast goes from the hand stand to his dismount.\"]}, \"v_ErEr4Sxdprw\": {\"duration\": 142.15, \"timestamps\": [[0, 29.14], [29.14, 70.37], [70.37, 101.64], [101.64, 142.15]], \"sentences\": [\"A man is in the gym in tight he bends over picks up a weight over his head and drops it back down.\", \" He walks back and loosens up before walking back up and doing it again adding more weight.\", \" He does this multiple times adding more and more weight to the rack.\", \" He finally lifts 374 pounds and calls it quits.\"]}, \"v_8oI4xGqkzSE\": {\"duration\": 205.01, \"timestamps\": [[7.18, 195.78], [25.63, 152.73], [67.65, 78.93], [93.28, 173.23], [190.66, 205.01]], \"sentences\": [\"A man kicks a Frisbee to a dog.\", \" The dog does various tricks while catching the Frisbee.\", \" The dog jumps off the man to catch the toy.\", \" Several other dogs also do a tricks to catch the toy.\", \" A man swings a dog around on a toy.\"]}, \"v_rYrO0KnZ7F0\": {\"duration\": 143.71, \"timestamps\": [[0, 5.75], [5.75, 15.09], [16.53, 41.68], [42.39, 104.91], [105.63, 132.93], [133.65, 143.71]], \"sentences\": [\"We see an opening title screen.\", \" We see steps to carve a pumpkin.\", \" A person cleans a pumpkin.\", \" We see step and a person carves the pumpkin.\", \" We see another step and person uses carved bits to make cat ears.\", \" We see the ending title screen.\"]}, \"v_Tu9QF2ALd2s\": {\"duration\": 19.23, \"timestamps\": [[0, 7.98], [7.02, 19.23]], \"sentences\": [\"A close up of a blender is seen with various ingredients on the inside.\", \" A person's hand then blends the mixture together and moves their hand away from the camera.\"]}, \"v_MEU83dUao4g\": {\"duration\": 63.29, \"timestamps\": [[1.9, 31.33], [29.75, 59.81]], \"sentences\": [\"A woman is seen with markings on her tongue and a person placing paper towels on her tongue.\", \" The man then pierces the girls tongue and she looks at the camera smiling.\"]}, \"v_5TV-V6Cxero\": {\"duration\": 142.41, \"timestamps\": [[6.41, 11.39], [11.39, 22.07], [22.07, 39.16], [39.16, 44.86], [44.86, 53.4], [53.4, 67.64], [67.64, 96.13], [96.13, 106.81]], \"sentences\": [\"A shirtless man is standing on porch while instructing how to build a redneck fire.\", \" He shows a beer bottle and some other alcohol cans.\", \" He demonstrates a campfire that he has set up in a pit.\", \" There are three men standing near the campfire pit to demonstrate step three.\", \" One of the men picks up a gasoline can and ours some of it into the campfire pit.\", \" Another man lights the bonfire up to start the fire.\", \" The bonfire continues burning as the fireworks crackle in the pit.\", \" One of the instructors comes back and point to the redneck campfire.\"]}, \"v_q2JRY6-riYA\": {\"duration\": 42.05, \"timestamps\": [[0, 42.05], [0.63, 42.05], [30.91, 35.53]], \"sentences\": [\"People are sitting in blue bumper cars.\", \" They drive around and bump into each other.\", \" A little boy in a hat waves at the camera.\"]}, \"v_WE9Md637nbc\": {\"duration\": 82.11, \"timestamps\": [[0, 9.03], [9.85, 51.32], [52.14, 82.11]], \"sentences\": [\"A pair of dirty nike sneakers are seen on a counter.\", \" A man fills a bowl with water, then adds a cleaning solution.\", \" He uses a brush to scrub the shoes clean.\"]}, \"v_6180cMhkWJA\": {\"duration\": 66.83, \"timestamps\": [[3.01, 8.69], [3.01, 18.04], [17.71, 60.15], [50.79, 53.46]], \"sentences\": [\"A man is seated in front of some video monitors and related equipment.\", \"  He reminds us that when we were young we weren't afraid to try because we liked it.\", \"  We then see some kids playing soccer along with some older players, obviously enjoying themselves.\", \"  We see the man once again, who advises us not to ever grow up.\"]}, \"v_t1s7ST4FRJc\": {\"duration\": 192.1, \"timestamps\": [[28.81, 65.31], [65.31, 107.58], [107.58, 172.89], [172.89, 192.1]], \"sentences\": [\"There are four women dancing to a choreographed dance to some Hip Hop music in a studio.\", \" They follow a synchronized and rhythmic beat to follow the same steps as the rest of the dancers.\", \" They continue following the steps one after the other in a structured manner where everybody is shaking their hands and legs rhythmically.\", \" Their dance moves change as the music changes and they slow down or move faster according to the beat of the song.\"]}, \"v_IcfWEKjl_AY\": {\"duration\": 21.97, \"timestamps\": [[0, 1.76], [3.73, 5.05], [5.49, 21.97]], \"sentences\": [\"A boy stands from the bottom of a slide and walk away.\", \" Other kids slide on another slide in the playground.\", \" A toddler climbs a jungle gym, and then go down the slide.\"]}, \"v_D-y_N4u0uRQ\": {\"duration\": 73.06, \"timestamps\": [[8.77, 21.19], [21.19, 54.43], [54.8, 68.68]], \"sentences\": [\"A man enters a car holding a briefcase.\", \" Then, the man smokes a cigarette in office, and a nurse gives him papers.\", \" After, an elegant woman smokes and then smile.\"]}, \"v_UbVTGLlR0L8\": {\"duration\": 181.97, \"timestamps\": [[5.46, 92.8], [22.75, 33.66], [92.8, 181.97]], \"sentences\": [\"People raft down a stony river on inflatable boats.\", \" Two men are in the water and other men help get in the boat.\", \" The men pass between high mountains.\"]}, \"v_yslzj3NGuLU\": {\"duration\": 232.99, \"timestamps\": [[10.48, 133.97], [133.97, 232.99]], \"sentences\": [\"A woman removes the snow on the top of a car using a brush, also removes snow on the side windows and back window.\", \" After, the woman continues taking snow from the hood of the car and the front window that has a lot of snow.\"]}, \"v_Eaq95CTpfZI\": {\"duration\": 66.39, \"timestamps\": [[11.95, 17.92], [31.2, 62.07], [61.41, 66.39]], \"sentences\": [\"A person is mixing drinks behind a bar.\", \" A person is playing a game of shuffleboard.\", \" Words are shown on the screen.\"]}, \"v_7x5oY2Myd7I\": {\"duration\": 209.1, \"timestamps\": [[0, 21.96], [25.09, 52.27], [55.41, 209.1]], \"sentences\": [\"A team is playing ice hockey in front of a crowded stadium.\", \" The players are shown crashing into each other.\", \" A countdown of ten is being shown as we see bloopers from different sporting events, from hockey, to baseball, to football and basketball as people fall down and make mistakes.\"]}, \"v_l5HNvNpRTpk\": {\"duration\": 172.46, \"timestamps\": [[0, 6.04], [6.9, 34.49], [36.22, 172.46]], \"sentences\": [\"Words are being displayed across the screen that read how to make the perfect sandwich.\", \" The ingredients you will need are bread, cheese, ham, turkey sub kit deli meat, kraft real mayo, spicy brown mustard, seasoning and a knife.\", \" Spread mayo on both slices of bread then put on mustard and cheese on both slices of bread put ham then turkey meat and add other seasoning to your taste.\"]}, \"v_T98RJsOiQWc\": {\"duration\": 88.65, \"timestamps\": [[1.33, 23.05], [20.39, 65.6], [58.51, 84.66]], \"sentences\": [\"A small child is seen holding a stick and swinging at a pinata.\", \" A girl is seen blindfolding another while a man plays with the camera on the side.\", \" The man holds the stick and gestures to the girl on the side.\"]}, \"v_uY0ngQlbIZc\": {\"duration\": 59.56, \"timestamps\": [[0, 15.49], [15.19, 31.27], [30.97, 42.29], [42.88, 59.26]], \"sentences\": [\"Two men that are matching each other are playing a game of racket ball.\", \" They are in an indoor enclosed court area playing the game.\", \" They are moving around all over the court trying to hit the ball.\", \" The bald man begins to walk out of the court smiling.\"]}, \"v_mIi5fkvHDAo\": {\"duration\": 75.78, \"timestamps\": [[0, 11.75], [12.12, 21.22], [21.6, 37.51], [37.89, 40.54], [40.92, 62.9], [45.09, 54.56], [55.7, 63.66], [64.03, 75.78]], \"sentences\": [\"A female news anchor is talking about a clip that will be shown.\", \"  Monkeys are skiing behind a boat in the water.\", \" Another monkey is seen driving a speed boat pulling a skiing monkey.\", \" Several people watch and take photos and video from the shore.\", \"\\nThe monkey driving the speed boat is shown again.\", \" The monkey circles the steering wheel with the boat moving.\", \"  The monkey then drives the boat to a set of buoys where three people are waiting for him.\", \"  Three news anchors discuss the monkeys.\"]}, \"v_XRb38sJzuY4\": {\"duration\": 31.7, \"timestamps\": [[0, 7.45], [6.66, 18.86], [16.16, 29.95]], \"sentences\": [\"A young boy is seen grabbing a ball and walking forward speaking to the camera.\", \" He is then seen in a shot holding on a stick and hitting a ball.\", \" He continues hitting the ball into a goal wile looking back to the camera.\"]}, \"v_RI-l0tK8Ok0\": {\"duration\": 74.68, \"timestamps\": [[0, 9.33], [9.71, 43.31], [43.69, 50.41], [50.78, 59.37], [59.74, 67.96], [68.33, 74.68]], \"sentences\": [\"A man and a woman are standing by a piano.\", \" The man and the woman play the piano together.\", \" They switch places and continue playing the piano.\", \" They switch places again, rapidly.\", \" They do it again, laughing away together.\", \" Finally they finish and walk away together happily.\"]}, \"v_Xpb1Lup1GAU\": {\"duration\": 143.73, \"timestamps\": [[0, 26.59], [27.31, 53.9], [54.62, 104.92], [105.64, 143.73]], \"sentences\": [\"A woman sits by a window knitting a white piece.\", \" The woman holds up a pattern book with an image of the piece she is working on.\", \"  The woman continues her knitting.\", \" The woman shows off her work so far and continues knitting.\"]}, \"v_aK0238Rz6UA\": {\"duration\": 215.67000000000002, \"timestamps\": [[0, 18.33], [20.49, 112.15], [119.7, 215.67]], \"sentences\": [\"A large bow is laying on a table.\", \" The close up details of the archery set are being shown.\", \" A man is shown pulling back and arrow and letting it go.\"]}, \"v_Q6XjxUlbP2M\": {\"duration\": 37.45, \"timestamps\": [[0, 11.42], [11.42, 20.04], [20.79, 37.45]], \"sentences\": [\"A group of people ride in bumper cars in a huge bumper car ride at an amusement park.\", \" Two yellow bumper cars are stuck in the middle of the track until they get bumped by another car.\", \" The rest of the bumper car drivers continue to follow the course.\"]}, \"v_X6IoTFqaegc\": {\"duration\": 71.77, \"timestamps\": [[0, 14], [14, 38.76], [38.4, 71.77]], \"sentences\": [\"A woman's hand is shown wiping a glass screen followed by various objects sitting on a table.\", \" The woman sprays the glass and follows the object down the glass.\", \" She does this several times and shows where to plug in and how to use the tool.\"]}, \"v_xcSWHI3K0KA\": {\"duration\": 44.47, \"timestamps\": [[0, 5.56], [5.56, 7.56], [9.12, 44.02]], \"sentences\": [\"A man is running on a track with a javelin.\", \" He throws it as hard as he can.\", \" We see him throw again in slow motion.\"]}, \"v_ZGnnFIDJjaY\": {\"duration\": 142.27, \"timestamps\": [[0, 26.32], [26.32, 32.72], [34.86, 58.33], [59.75, 65.44], [66.87, 127.33], [128.04, 135.16]], \"sentences\": [\"A man is sitting in a chair on the beach and is approached by another man, the first man gets up and applies lotion to the second man.\", \"  A woman and a man are sitting on a towel at the beach and a man approaches.\", \"  The sitting man gets up and puts lotion on the man who approached.\", \"  Five guys are laying on the beach when a woman approaches them.\", \"  One man gets up and applies lotion to the womans back.\", \"  Five guys are laying on towels at the beach and a man approaches them.\"]}, \"v_YkqO2oi9SIk\": {\"duration\": 84.23, \"timestamps\": [[2.53, 73.28], [7.58, 49.7], [50.96, 59.8], [68.65, 80.02]], \"sentences\": [\"A group of swimmers cliff dive into a body of water surrounded by onlookers, large rocks, buildings and boats, in a judged competition.\", \"  The swimmers jump off a man made metal cliff wrapped in sponsored advertisement art and graphics.\", \"  A group of judges hold up scorecards with numbers on them as car drive by on a nearby street and onlookers sit side by side on a raised wall watching.\", \" Two swimmers hug while one swimmer jumps up and down and three more hold up trophies.\"]}, \"v_XB139ATiXuk\": {\"duration\": 207.32999999999998, \"timestamps\": [[0, 3.11], [4.15, 15.55], [27.99, 33.17], [58.05, 65.31], [73.6, 102.63], [103.67, 117.14], [160.68, 168.97], [189.71, 198], [192.82, 207.33]], \"sentences\": [\"A well attended classical concert is shown.\", \" The composer speaks to the audience about music.\", \" The crowd applauds and smiles.\", \" The composer talks about music and the orchestra behind him.\", \" One member comes out to play the saxophone for a solo as the crowd claps along.\", \" The orchestra gradually joins in for a full performance.\", \" The song slows and builds as the crowd joins back in with claps.\", \" The song ends and the crowd applauds thunderously.\", \" The saxophonist bows and returns to her seat.\"]}, \"v_Vg5Vfb16Kb8\": {\"duration\": 98.36, \"timestamps\": [[0, 9.34], [9.34, 46.72], [47.21, 98.36]], \"sentences\": [\"A little girl wearing a pink blouse sits on a bed squinting her eyes.\", \" The little girl then puts on purple lipstick on her lips.\", \" The little girl continues putting on lipstick while speaking to the camera man about putting on makeup.\"]}, \"v_J98U-PGh1bQ\": {\"duration\": 27.8, \"timestamps\": [[0, 11.26], [11.67, 27.8]], \"sentences\": [\"A man is mopping a dirty public bathroom floor.\", \" He pushes the mop back and forth, making the floor clean and shiny.\"]}, \"v_KZ-6u3MUp44\": {\"duration\": 68.47, \"timestamps\": [[0, 8.22], [9.24, 60.25], [61.62, 68.47]], \"sentences\": [\"A game is in progress in front of a crowd.\", \" A man spins, throwing a disc through the air.\", \" He walks around the field afterward.\"]}, \"v_J5wZTdD4XeU\": {\"duration\": 180.19, \"timestamps\": [[0, 27.93], [30.63, 140.55], [142.35, 180.19]], \"sentences\": [\"Two men are on a platform, fencing.\", \" They jab at each other with their swords.\", \" A woman watches as they parlay back and forth.\"]}, \"v_uyp6t45rOD8\": {\"duration\": 117.68, \"timestamps\": [[0, 21.77], [21.77, 39.42], [39.42, 59.43], [59.43, 88.85], [88.85, 117.68]], \"sentences\": [\"An athlete performs high jump and lands on the mat while person takes notes.\", \" Then, the athlete performs high jump successfully.\", \" After, the man perform high jump but drops the horizontal pole.\", \" The athlete perform high jumps successfully.\", \" The athlete perform a high jump, but the pole falls.\"]}, \"v_7A7XJLhRVVE\": {\"duration\": 184.69, \"timestamps\": [[0, 55.41], [55.41, 184.69]], \"sentences\": [\"A large pontoon boat is sailing across an ocean and runs into a large wave that covers the people as well as the boat in water.\", \"The people on the boat continue walking around but the water knocks them over and they start to hold onto the wheels to steer the boat back in the right direction.\"]}, \"v_Dutm5TiFBqQ\": {\"duration\": 184.18, \"timestamps\": [[0, 11.05], [11.05, 47.89], [46.97, 98.54], [98.54, 184.18]], \"sentences\": [\"A very muscular shirtless man is about to arm wrestle with a man in an orange hoodie.\", \" Another man in a yellow hoodie comes over.\", \" They begin the match, the man in the orange hoodie looks to be struggling.\", \" The shirtless man wins and then wrestles the man in the yellow, he wins and they all stand around talking.\"]}, \"v_p4cQt5On74M\": {\"duration\": 92.1, \"timestamps\": [[0, 27.63], [27.63, 62.63], [62.63, 92.1]], \"sentences\": [\"Several people are outside in a large field on segways playing a game.\", \"They continue to move around and hitting the ball with a long racket.\", \"As they game goes on,the referee walks on the field and watches them.\"]}, \"v_dcmfRooP6dg\": {\"duration\": 237.87, \"timestamps\": [[0, 28.54], [45.19, 195.05], [202.19, 237.87]], \"sentences\": [\"A close up of a strawberry is shown.\", \" A woman is talking with an array of watercolors.\", \" She demonstrates how to use the watercolors to create art on a canvas.\"]}, \"v_OG7-gtjRaEg\": {\"duration\": 135.14, \"timestamps\": [[0, 135.14], [19.6, 135.14], [57.43, 125.01], [107.44, 135.14]], \"sentences\": [\"Several children stand in front of a cage.\", \" A women is inside with a tiger.\", \" The children pull on a rope that against the tiger.\", \" They let go of the rope at the end.\"]}, \"v_SGdhHAZHwmI\": {\"duration\": 137.97, \"timestamps\": [[0, 18.63], [25.53, 30.35], [55.88, 68.99], [115.9, 137.97]], \"sentences\": [\"A woman in a suit is talking to a camera.\", \" A woman is putting contact lenses into her eyes.\", \" Contact lenses are shown on a hand.\", \" The woman in the suit continues talking to the camera.\"]}, \"v_te1znGPS_Vw\": {\"duration\": 159.0, \"timestamps\": [[7.16, 27.03], [27.83, 159]], \"sentences\": [\"guys are having a paint ball fight with each other.\", \"A guy explain how to hide and protect yourself when in the filed,How to crawl ,where to place your foot and hands when crawling.\"]}, \"v_5Z5DAI4Grb0\": {\"duration\": 139.32, \"timestamps\": [[0, 23.68], [28.56, 87.77], [89.86, 139.32]], \"sentences\": [\"A title page pans into hands holding a paint brush with a portrait in the background.\", \" She holds another picture beside her and pushes the brush into paint.\", \" She then begins painting the picture and adding more color to the portrait.\"]}, \"v_lHVn-5OwXMw\": {\"duration\": 184.41, \"timestamps\": [[0, 12.91], [0, 184.41]], \"sentences\": [\"man is in a big stadium waking in the field.\", \" men are playing criquet in a field rnning on side to side with a lot of audience sitting on stands.\"]}, \"v_hjtGItcwkQA\": {\"duration\": 78.65, \"timestamps\": [[0, 17.3], [11.8, 76.29], [52.69, 76.29]], \"sentences\": [\"A group of sail boats sail together through choppy water on a windy day.\", \" Two men pull on the rigging seated on the small sailboat.\", \" The sail boat makes a turn in front of the bow of another boat only partly seen.\"]}, \"v_kzm9ckZ5gU0\": {\"duration\": 58.61, \"timestamps\": [[0, 9.96], [10.55, 19.05], [24.32, 30.77], [30.77, 43.37], [45.71, 56.56]], \"sentences\": [\"Two men on a ladder fight in a professional wrestling match.\", \" The men flip off the ladder on to the mat.\", \" The referee kneels near by.\", \" The man in red crawls to the man in blue and pins him winning the match.\", \" We see a replay of the match.\"]}, \"v_CSk99DHanfg\": {\"duration\": 197.16, \"timestamps\": [[9.86, 26.62], [35.49, 70.98], [71.96, 74.92], [102.52, 116.32], [76.89, 143.93], [145.9, 186.32]], \"sentences\": [\"People on a boat suit up in scuba gear then jump into the water.\", \" Scuba divers swim through a cave area.\", \" A tropical beach is seen.\", \" Sea turtles graze and swim in the ocean.\", \" Various fish are seen swimming through the reef.\", \" A manta ray swims in the ocean over a reef.\"]}, \"v_d3VVwwVkJBs\": {\"duration\": 15.19, \"timestamps\": [[0, 15.19], [0.08, 1.97], [1.97, 15.19]], \"sentences\": [\"This elderly man is blowing the leaves out of the way using a leaf blower.\", \" First the camera is giving viewers a close up view only showing the man's face.\", \" Then the camera zooms out and shows the man blowing the leaves using a machine and when he's done half doing his job, he turns the leaf blower off.\"]}, \"v_bV_vdBbOubE\": {\"duration\": 154.11, \"timestamps\": [[0.77, 116.35], [0.77, 124.06], [124.06, 154.11]], \"sentences\": [\"little kid is holding a red tennis racket close to her face but then put it on the floor and jump on top.\", \" little kid is standing in a small room playing in a Hopscotch.\", \" the girl is grabing toys from the floor.\"]}, \"v_Xm23RMCpDd8\": {\"duration\": 49.53, \"timestamps\": [[0.25, 48.54], [1.98, 11.14], [26.25, 49.53]], \"sentences\": [\"A man stands on a field in an outdoor game surrounded by bleachers with people in them and performs a hammer throw.\", \"  The man spins the hammer around many times and then lets the hammer go to fly into the hair and land in the field.\", \"  A slow motion video of the hammer landing appears as the man looks happy with the score and dries off with a towel.\"]}, \"v_IkXuooaGnCc\": {\"duration\": 188.69, \"timestamps\": [[0, 32.08], [32.08, 70.76], [74.53, 154.72], [154.72, 175.48]], \"sentences\": [\"Letters are shown on a screen.\", \" A blue bucket is put into a sink.\", \" A man starts mopping the hardwood floors.\", \" He mops the tile in the bathroom.\"]}, \"v_d83YCo6xLkk\": {\"duration\": 25.33, \"timestamps\": [[0.51, 6.84], [7.6, 19.76], [17.48, 25.08]], \"sentences\": [\"A person is seen standing on a beach looking down at sand.\", \" The person then begins building a large sand castle in front of them.\", \" The person continues working around the sand and ends by walking out of frame.\"]}, \"v_gNFrILoB8LY\": {\"duration\": 16.46, \"timestamps\": [[0, 16.46], [0.25, 8.07], [8.81, 12.02], [12.18, 16.46]], \"sentences\": [\"A man dances and pulls his pants, which are falling down, back up, as he sweeps a cafe floor.\", \"  A man, with his back to an elevated camera, begins to dance while sweeping a coffee shop floor.\", \"  The man begins to pulls his pants up as his blue underwear shows from the twisting of the dance, which has pulled down his pants.\", \"  The man then turns to face the camera and smiles while pulling his pants up.\"]}, \"v_SlT6OBmQqpc\": {\"duration\": 52.32, \"timestamps\": [[0, 16.74], [14.65, 52.32]], \"sentences\": [\"A young man is seen standing in front of the camera and begins spinning in circles.\", \" He continues spinning and then does several kicks and punches while also throwing darts.\"]}, \"v_3DDo37BcChI\": {\"duration\": 162.61, \"timestamps\": [[0, 19.51], [21.14, 143.1], [144.72, 162.61]], \"sentences\": [\"An ax rests in a fallen tree.\", \" A man picks up the ax, and chops the trunk of the tree.\", \" He continues chopping until the log is in half, then walks away.\"]}, \"v_QdTUPBtxAV0\": {\"duration\": 7.06, \"timestamps\": [[0, 1.76], [1.76, 3.25], [3.25, 7.06]], \"sentences\": [\"A smiling young boy slides down a red slide that has netting on each side and a brand name, website, email and telephone appear on the screen when he reaches the bottom.\", \"Then two other children behind him that are little girls slide down.\", \"Just as the girls are reaching the bottom of the slide boy gets up and leaves the slide and the girls follow right behind him.\"]}, \"v_6BKkSQ7uGco\": {\"duration\": 61.96, \"timestamps\": [[0, 5.58], [5.89, 16.73], [17.04, 31.6], [32.84, 44.92], [45.23, 61.96]], \"sentences\": [\"We see the title card on black.\", \" We see a lady riding slowly on an elliptical machine and pulling the handles.\", \" We switch to the lady riding without holding the handles.\", \" We then see the bike in stair stepper mode and using the handles.\", \" We then see her using the bike in stair stepper mode without the handles.\"]}, \"v_p-lwebxSYyo\": {\"duration\": 57.31, \"timestamps\": [[1.43, 27.22], [27.22, 28.08], [28.65, 57.31]], \"sentences\": [\"People are painting a wooden fence in a yard.\", \" A dog walks behind them.\", \" They continue painting the fence.\"]}, \"v_cau489T9DLE\": {\"duration\": 30.4, \"timestamps\": [[0, 24.16], [0, 1.98], [20.82, 24.92]], \"sentences\": [\"woman is standing in a small room doing tricks with a baton.\", \" men are running on a side of the woman.\", \" women enter to a room.\"]}, \"v_xbEI98IA-XU\": {\"duration\": 111.2, \"timestamps\": [[0, 12.23], [12.79, 30.02], [32.25, 79.51], [79.51, 84.51], [85.07, 111.2]], \"sentences\": [\"Title credits are shown on the screen.\", \"  A woman talks to the camera in a gym.\", \"  The woman demonstrates a lifting exercise.\", \"  The woman turns back to the camera and talks again.\", \"  End credits roll on the screen.\"]}, \"v_uFMlVrTUoR8\": {\"duration\": 96.78, \"timestamps\": [[0, 11.13], [14.03, 30.49], [29.52, 78.39]], \"sentences\": [\"A man dumps a wheelbarrow of mulch on the lawn.\", \" He rakes it out over the ground.\", \" He brings another wheelbarrow full of mulch and rakes it out over the lawn.\"]}, \"v_LE05u6TR9MI\": {\"duration\": 42.63, \"timestamps\": [[0, 19.18], [14.92, 41.78]], \"sentences\": [\"A large group of people are seen standing in a crowd yelling and playing a game of volleyball.\", \" The group of girls continue to play while people cheer on the sides as well as cheerleaders.\"]}, \"v_1Y3BV0Awjuo\": {\"duration\": 111.28999999999999, \"timestamps\": [[0, 5.56], [5.56, 17.81], [17.81, 36.73], [37.28, 65.66], [77.35, 87.92], [88.48, 111.29]], \"sentences\": [\"We see an Asian script on the title screen.\", \" We see food on a table and a lady picking at a potato.\", \" The potato is cut, then dropped in a pot.\", \" It's transferred to cold water and the skin just slides off when pulled.\", \" We see a red illustration on a potato and a potato is mashed.\", \" Two more potatoes are peeled easily, Another potato is boiled and dropped in cold water.\"]}, \"v_-ap649M020k\": {\"duration\": 212.93, \"timestamps\": [[3.19, 59.62], [56.43, 161.82], [154.37, 199.09]], \"sentences\": [\"Several clips are shown of people wandering around areas, looking to the camera, and skateboarding down a hill.\", \" Several more people are shown skateboarding own various areas as well as swimming, rolling joints, and and surfing on the water.\", \" The men perform tricks, get naked, swim underwater, cut open a watermelon, as well as various other activities that lead back into skateboarding.\"]}, \"v_PfNtxlM1QHw\": {\"duration\": 92.56, \"timestamps\": [[0, 4.16], [4.63, 17.12], [17.12, 33.78], [33.78, 68.49], [68.03, 92.56]], \"sentences\": [\"A crowd of people are at a stadium watching a bull fight.\", \"A petite man is standing in front of the bull with a red cloth and taunting the bull.\", \"Once the bull moves,three more men come out with pink cloths and begin taunting the bulls and he hits them with his horns.\", \"The men finally leave the bull alone and he lays down on his side and they begin giving him something in the mouth.\", \"Once laid to rest, another man comes and wraps something around his mouth to secure him as another set of men walk out guiding horses.\"]}, \"v_DpoIgaZ1m_U\": {\"duration\": 216.57, \"timestamps\": [[0, 216.57], [23.82, 33.57], [110.45, 142.94], [145.1, 204.66]], \"sentences\": [\"Two men spar in a karate practice match inside a gym studio.\", \" The instructor trips the student after catching the punches.\", \" The instructor does a sliding kick on the student.\", \" The instructor catches the kicks of the student.\"]}, \"v_LpTVTiu8oro\": {\"duration\": 89.17, \"timestamps\": [[0, 12.48], [12.48, 29.87], [28.98, 74.45], [74.01, 89.17]], \"sentences\": [\"A shirtless man with a machete walks out into the front yard.\", \" He starts hitting the grass repeatedly over and over cutting the grass.\", \" Instead of using a lawnmower he is cutting the grass with a machete.\", \" He stands right up and walks up to a patch and then starts to use the machete towards it also.\"]}, \"v_zlXvqnBqVvI\": {\"duration\": 22.64, \"timestamps\": [[0, 13.24], [15.62, 21.06], [16.75, 19.02], [0.34, 22.64]], \"sentences\": [\"The two people take shots with their pucks down the board.\", \" The person changes the score on the board posted on a pole.\", \" A player walks down the board to retrieve the pucks.\", \" Two people play a leisurely game of shuffle board on an outdoor court.\"]}, \"v_F6BJoTLozoc\": {\"duration\": 232.55, \"timestamps\": [[0, 61.63], [62.79, 145.34], [145.34, 232.55]], \"sentences\": [\"An empty stage with four lights are shown as a crowd of people stand waiting for something to happen.\", \"A lady with a orange and yellow cape and skirt then comes out from the side and starts to belly dance.\", \"The woman then drops the cape and begins walking towards the crowd moving her chest and smiling at the people.\"]}, \"v_B4zPg1ftxf4\": {\"duration\": 213.41, \"timestamps\": [[0, 201.67], [38.41, 40.55], [72.56, 85.36], [102.43, 106.7], [126.98, 130.18], [165.39, 169.66], [191, 213.41]], \"sentences\": [\"We see people playing paintball on a football field.\", \" The people take off and head out into the field.\", \" The man is crawling on the ground.\", \" He fills his gun with orange balls.\", \" A person walks up to the bag near the man.\", \" The man reloads his gun with blue balls.\", \" We see a man behind a fence and the man is walking.\"]}, \"v_4FGdbFzq-8I\": {\"duration\": 74.3, \"timestamps\": [[7.06, 31.95], [30.09, 74.3]], \"sentences\": [\"A man is seen sitting in the back of a car waxing down a surf board and another man speaking to the camera.\", \" Slow motion shots of a man surfing are shown and the man continues speaking.\"]}, \"v_GKpeX_lWMgg\": {\"duration\": 38.57, \"timestamps\": [[0, 18.51], [21.41, 38.57]], \"sentences\": [\"People are riding in sailboats from the view of a large ocean liner.\", \" A woman leans against the edge, watching the boats.\"]}, \"v_krUhklOpyQU\": {\"duration\": 74.07, \"timestamps\": [[0, 74.07], [9.63, 18.52], [33.7, 65.55], [65.55, 70], [70, 74.07]], \"sentences\": [\"A man is filming inside of am apartment looking around at several different things.\", \" A little boy comes into the scene and quickly exits out of the view of the camera.\", \" The boy comes onto the camera again doing karate moves with a stick.\", \" The man gets a close up of the boy while he talks to the boy in another language.\", \" the boy does a bow and the video ends.\"]}, \"v_iFTYM1Ez5ZM\": {\"duration\": 156.97, \"timestamps\": [[0, 3.92], [3.92, 12.56], [12.56, 26.68], [26.68, 156.97]], \"sentences\": [\"An athlete in a white and blue uniform prepares to compete in a Triple Jump competition in a track and field tournament.\", \" The competitor gradually begins by running slowly then picking up speed to a sprint and landing one foot on the white marker line and two more hops on each foot and then jumps over the sand course.\", \" The competitor skips and runs off of the track and goes to the spectator stands and celebrates his jump.\", \"  A close up of the competitors foot position landing on the white marker line is shown on a close up and the jump is shown in slow motion and at regular speed multiple times.\"]}, \"v_xGpaEqbVgBI\": {\"duration\": 80.39, \"timestamps\": [[0, 25.32], [22.51, 64.31], [61.9, 80.39]], \"sentences\": [\"The camera pans around a large group of people playing a soccer match on a field with many people watching on the sides.\", \" The players walk around the field a bit and lead into them playing the game.\", \" A person's hand then covers the camera and moves all around the area.\"]}, \"v_SvM0twHYsus\": {\"duration\": 49.25, \"timestamps\": [[0.25, 16.01], [16.5, 49.25]], \"sentences\": [\"A woman looks through a large pile of clothing and begins throwing at the camera man.\", \" She miles his direction while talking and irons some clothes on the table.\"]}, \"v_uXPm6SMQH1M\": {\"duration\": 35.87, \"timestamps\": [[0, 12.73], [12.37, 24.03], [24.03, 35.87]], \"sentences\": [\"A black horse is standing in a stable with several yellow things on his hair.\", \"A woman then appears and begin shaving off all of the horse's hair.\", \"The side is completely gone and when she moves from the back she goes underneath his body to remove that hair as well.\"]}, \"v_tgnyGoKM2tM\": {\"duration\": 130.4, \"timestamps\": [[0, 130.4], [2.61, 11.74], [18.91, 48.25], [61.29, 126.49]], \"sentences\": [\"We see a man talking in a bike shop.\", \" The man touches the handle bars of a bike then grabs a wire off a table.\", \" The man strings the wire through the bikes brake system.\", \" The man adds a black plastic sheath over the wire and attaches it to the wheel brace.\"]}, \"v_diZvvLb46O8\": {\"duration\": 201.17000000000002, \"timestamps\": [[10.06, 33.19], [23.13, 164.96], [82.48, 201.17]], \"sentences\": [\"The team in white and red uniform danced in the court.\", \" The team individually do jumping rope, danced on the ground.\", \" The team do jumping ropes where two females hold the end of the jumping rope, rotating them as the other team member jumped inside the rope and dance.\"]}, \"v_6ITE3hona-4\": {\"duration\": 208.42000000000002, \"timestamps\": [[0, 68.78], [69.82, 72.95], [72.95, 117.76], [117.76, 158.4], [161.53, 168.82], [200.09, 208.42]], \"sentences\": [\"a person is assembling a vacuum on the carpet.\", \" They plug the vacuum in.\", \" They turn the vacuum on and begin vacuuming the floor.\", \" They take the attachment hose off and vacuum the base boards and stairs.\", \" They take the filter out and empty it.\", \" They unplug the vacuum and put it in the closet.\"]}, \"v_nTsXn3oHf_8\": {\"duration\": 44.79, \"timestamps\": [[0, 44.79], [30.46, 40.98], [41.21, 44.79]], \"sentences\": [\"A small boy plays on a stair stepper in a store.\", \" We back up and see the boys legs.\", \" The camera zooms in on the boy again.\"]}, \"v_E4AoMNfsuaw\": {\"duration\": 92.95, \"timestamps\": [[0, 12.08], [13.94, 69.71], [71.11, 92.95]], \"sentences\": [\"A little girl in a diaper uses a small vacuum.\", \" She is vacuuming dirt out from under a chair in a living room.\", \" She uses the brush to suck up dirt on the floor.\"]}, \"v_xfyoEDb6kVg\": {\"duration\": 130.89, \"timestamps\": [[0, 130.89], [16.36, 38.61], [50.39, 85.73]], \"sentences\": [\"A boy spins around a gym with a tennis racket and pushes a ball around to another boy.\", \" The boys run back and fourth bouncing balls against a wall with their hands and a tennis racket.\", \" They slide around the floor pushing the ball and continue hitting the ball back and fourth across the gym.\"]}, \"v_bMRx3vSVZUQ\": {\"duration\": 175.61, \"timestamps\": [[0.88, 37.76], [35.12, 140.49], [120.29, 172.1]], \"sentences\": [\"A man is seen in several shots looking off into the distance followed by others riding around on boards.\", \" The men gear up on the sides while speaking to the camera and ride around on the water.\", \" The people continue to ride around while others watch on the side.\"]}, \"v_xs4MvE_uAtU\": {\"duration\": 216.11, \"timestamps\": [[7.56, 166.4], [157.76, 186.93], [189.1, 216.11]], \"sentences\": [\"A person uses a brush to scrub a shoe over a sink.\", \" They wipe the shoe off with a white towel.\", \" He lifts up the shoe to show the camera.\"]}, \"v_q_eRxmeGJBY\": {\"duration\": 98.03999999999999, \"timestamps\": [[0, 3.92], [3.92, 14.71], [14.71, 62.74], [62.74, 83.82], [83.82, 90.19], [90.19, 98.04]], \"sentences\": [\"We see an image of a male gymnast in mid swing.\", \" We see a title card with a family on it.\", \" A man swings around on a pommel horse.\", \" A man in blue plan swing his legs back and forth.\", \" The man in red shorts is spinning wildly.\", \" He then spins on a round device.\"]}, \"v_C2KzNljiTIU\": {\"duration\": 52.34, \"timestamps\": [[0, 17.01], [18.32, 42.39], [43.18, 52.34]], \"sentences\": [\"A woman is seated, brushing her hair with her back to the camera.\", \" She continues brushing with long strokes.\", \" She leans her head to one side, continuing to brush.\"]}, \"v_vXOT_VXWOqo\": {\"duration\": 207.4, \"timestamps\": [[0, 25.93], [60.15, 160.74], [143.11, 201.18]], \"sentences\": [\"Several shots are shown of large groups of people running around a field.\", \" Audience members are seen cheering while people play soccer on the side.\", \" People continue playing up and down the field while others watch them play.\"]}, \"v_UlddctIswqo\": {\"duration\": 159.19, \"timestamps\": [[0, 19.9], [20.69, 46.96], [46.16, 66.86], [66.86, 95.51], [96.31, 132.92], [135.31, 141.68], [140.08, 159.19]], \"sentences\": [\"A girl wearing an orange hoodie and a girl wearing a black blouse enter a home and go into the kitchen.\", \" The girls are preparing to bake cookies.\", \"The cell phone rings and both girls get excited.\", \" Some one is at the front door and the girl in the orange hoodie runs through the house to go answer the door.\", \" The girl in the black blouse is at the door disguised as a man.\", \" The girl in the orange hoodie squeezes a bar of butter and it falls to the floor and slams the door shut.\", \" The girl in the black blouse turns and walks away dejected.\"]}, \"v_zCND0HJq6Iw\": {\"duration\": 75.63, \"timestamps\": [[0, 14.75], [14.75, 40.08], [40.08, 75.63]], \"sentences\": [\"A white man is on the stage with long dreads throwing up the piece sign to the audience.\", \"After their interaction,the man begins to play the wind pipes on his back as he walks back and forth across the stage.\", \"The crowd is shown and the camera goes back to the stage and several lights come on as the guitarist begins to play.\"]}, \"v_3boxQwSpv-8\": {\"duration\": 30.09, \"timestamps\": [[0, 3.46], [3.31, 25.43], [25.58, 30.09]], \"sentences\": [\"A little girl smiles and talks to the camera.\", \" She and other children are then shown washing their hands at sinks.\", \" They talk about singing the birthday song or counting to know how long they should wash their hands.\"]}, \"v_xM5OQYON59w\": {\"duration\": 46.69, \"timestamps\": [[0, 14.94], [15.17, 17.74], [17.51, 24.98], [24.98, 32.21], [33.15, 46.69]], \"sentences\": [\"We see a man with a ball he is preparing to throw shotput.\", \" The man lifts his arm.\", \" The man spins and throws the ball.\", \" We see men in the distance measure.\", \" We see the thrower grab his jacket and walk away.\"]}, \"v_G-giwt-TN8A\": {\"duration\": 93.02000000000001, \"timestamps\": [[0, 5.12], [0, 79.53], [31.16, 51.63], [79.53, 82.79], [83.25, 93.02]], \"sentences\": [\"We see a tractor and a title screen.\", \" We see a tractor blowing leaves.\", \" We see the tractor up close.\", \" We see the closing title screen.\", \" We then see flowers on trees.\"]}, \"v_7tdlcmbuLOA\": {\"duration\": 204.22, \"timestamps\": [[0, 51.06], [51.06, 153.17], [141.93, 200.14]], \"sentences\": [\"A man is seen speaking to the camera that leads into several clips of people wake boarding.\", \" The man then speaks to a woman and helps demonstrate how to properly ride the wake board.\", \" The boat then takes off and helps the girl ride along while she falls the first time then successfully rides.\"]}, \"v_nxNJNn8blDw\": {\"duration\": 67.62, \"timestamps\": [[2.03, 7.78], [7.1, 24.34], [10.14, 24.34], [12.51, 56.8], [52.07, 63.56], [55.45, 63.56]], \"sentences\": [\"An old man with eyeglasses is standing in front of model tiles talking to the camera.\", \" A group of men in black started to removed the first half of the carpet in the living room, then replaced it with lighter, newer carpet.\", \" The group of men in black shirts moved the couch from the wall to other side and removed the other half of the carpet, exposing the green floor.\", \" The group of men put the carpet on the floor, they measure it, cut it and taped it.\", \" When the new carpet is properly installed, the men vacuum the carpet while the lady walked in the living room.\", \" The men and the old man and the woman removed the TV from the wall and installed a wooden TV set furniture, while the other men and the lady arranged the couch and put the pillows on it.\"]}, \"v_XBbSLB3Ov0w\": {\"duration\": 120.19, \"timestamps\": [[0, 46.87], [46.27, 118.99], [119.59, 120.19]], \"sentences\": [\"A group of eight people are white rafting in somewhat calm water as the two people in the back paddle them down the water.\", \"The two people in the back continue paddling and the camera zooms in on them but the water is too calm for them to get the full experience and nothing is happening.\", \"Lastly, a blue screen flashes and white words appear.\"]}, \"v_2VYQ4q24D-4\": {\"duration\": 92.95, \"timestamps\": [[0, 38.57], [38.11, 92.95]], \"sentences\": [\"Two cars are parked on the side of the road as train passes by.\", \"All of a sudden,the angle shifts and a boy begins skateboarding down the hill and throughout the city.\"]}, \"v_vOI3hJ45lag\": {\"duration\": 58.77, \"timestamps\": [[0, 6.76], [7.35, 58.77]], \"sentences\": [\"A man sits on a table with accordions.\", \"Then the man holds an accordion while touching the buttons and talking.\"]}, \"v_iOgmO3MMeH4\": {\"duration\": 104.89, \"timestamps\": [[27.27, 62.41], [62.41, 104.89]], \"sentences\": [\" A woman plays piano in a room decorated with candles.\", \" Katty Perry walks with a man in street, they she plays the piano, then she talks with the man.\"]}, \"v_U2td95KJU7Y\": {\"duration\": 104.31, \"timestamps\": [[0, 32.33], [32.86, 46.42], [46.94, 55.8], [55.8, 70.93], [70.93, 104.31]], \"sentences\": [\"A boy stand on a pool diving board in an Olympic competition.\", \" Then, the boy jumps and does four flips in the air and falls into the water.\", \" The crowd applaud the boy holding British flags.\", \" A man hugs the boy who looks happy, and the boy walks around.\", \" The boy jumps from a diving board and does four flips in the air before gets into the water.\"]}, \"v_uR-o9wILN6U\": {\"duration\": 191.47, \"timestamps\": [[0, 16.28], [12.45, 49.78], [31.59, 191.47]], \"sentences\": [\"The man in blue shirt with cap is hitting the thick rope.\", \" The man get on the rope and the crowd applauded.\", \" The man in blue shirt started to bounced on the rope doing some tricks like sitting on the rope, bouncing on his chest, cartwheel and walking on the rope.\"]}, \"v_Jk3oA2mhPD8\": {\"duration\": 170.2, \"timestamps\": [[0, 96.16], [57.02, 71.49], [120.84, 124.25]], \"sentences\": [\"A young girl is doing gymnastics on a blue mat.\", \" She does several back flips on a trampoline.\", \" She does a flip into a pile of foam pieces.\"]}, \"v_MduMjuxuIac\": {\"duration\": 180.81, \"timestamps\": [[0, 18.08], [18.99, 169.06], [83.17, 125.67], [127.47, 145.56], [162.73, 168.16], [169.06, 180.81], [179.01, 180.81]], \"sentences\": [\"Men walk out on a stage clap and high five.\", \" The men perform a cheerleader routine.\", \" They hold five men in the air and flip them and flip four men in groups.\", \" One man is lifted high and swings two men on his arms to the other side then five men make a star like shape.\", \" the men kneel and dance and pose for the finish.\", \" The men jump and cheer as they leave the stage.\", \" A person in the front row stands in front of the camera.\"]}, \"v_Ga-204sSRoc\": {\"duration\": 46.37, \"timestamps\": [[0, 12.06], [12.52, 38.49], [29.68, 44.28]], \"sentences\": [\"A man is seen kneeling of a roof while holding a piece of wood.\", \" He begins hammering down the piece of wood while the camera pans around.\", \" He continues hammering around and looks back at the camera.\"]}, \"v_KeTYxQkYfQw\": {\"duration\": 170.49, \"timestamps\": [[0, 52.85], [45.18, 120.2], [111.67, 166.23]], \"sentences\": [\"A man is seen looking to the camera and snapping his fingers.\", \" This leads into a man playing an instrument while the camera watches.\", \" The man continues to play moving his hands up and down and looking back to the camera.\"]}, \"v_rtJTJ10ppRc\": {\"duration\": 20.48, \"timestamps\": [[0, 4.4], [4.4, 11.78], [11.78, 20.48]], \"sentences\": [\"A group of people are outside at the beach playing sand volley ball.\", \"The ball falls and a fat boy with yellow shirts takes the ball and tries to serve it.\", \"However,the ball doesn't make it over the net,rolls back and he goes to get it.\"]}, \"v_Cx1614E1Mgk\": {\"duration\": 122.25, \"timestamps\": [[0, 14.06], [14.67, 71.52], [72.74, 122.25]], \"sentences\": [\"A man is talking and playing drums in a split screen.\", \" As he explains the process, he uses his hands to beat out a tune.\", \" He continues talking and playing until it switches exclusively to him playing the drums.\"]}, \"v_LlhgIOYsxsE\": {\"duration\": 74.98, \"timestamps\": [[4.12, 50.61], [6.75, 50.61], [56.23, 65.61]], \"sentences\": [\"People are sitting work out machines.\", \" They begin pulling a rope to work out.\", \" A woman is standing next to a work out machine.\"]}, \"v_yRD0WDE5IG0\": {\"duration\": 218.27, \"timestamps\": [[0, 218.27], [20.74, 218.27], [48.02, 218.27], [88.4, 218.27]], \"sentences\": [\"Several people exercise in a room.\", \" The step on and off of a platform in rhythm.\", \" They are very dancing intensely.\", \" Some of them spin in circles.\"]}, \"v__tPDUYSu1IQ\": {\"duration\": 181.23, \"timestamps\": [[25.37, 47.12], [47.12, 77.02], [77.02, 110.55], [110.55, 130.49], [130.49, 165.83], [165.83, 170.36]], \"sentences\": [\"There are two men elbow wrestling on a table.\", \" There are several people are watching them wrestle.\", \" In another scene, there are two more men elbow wrestling.\", \" There are a series of elbow wrestling events shown in the video where one man is more forceful than the other and ends up winning the wrestling game.\", \" There are some over dramatized scenes where people are elbow wrestling and over reacting to the game.\", \" There are also some referees seen acting as moderators in the elbow wrestling match.\"]}, \"v_MO37MVz4uuA\": {\"duration\": 91.78999999999999, \"timestamps\": [[0, 1.84], [1.84, 38.09], [38.09, 45.89], [45.89, 51.4], [51.4, 71.14], [71.14, 91.79]], \"sentences\": [\"A brunette woman is sitting in a room and has her left arm raised and is looking at her armpit.\", \" The woman puts her arm down and talks into the camera and a black cat climbs on furniture behind her while she's still talking.\", \" The woman is now standing in her shower fully clothed and she's applying a lot of shaving cream to her right leg that's propped on a wall.\", \"The woman is now standing upright and has a lot of shaving cream on her left armpit and falls, then she's standing with shaving cream all over her and then claps her hands.\", \" The woman is back in the room talking, then appears back in the shower with a razor and shaving her legs.\", \"The woman is talking in the room again and her black cat goes up to her and the woman continues to talk and ends with a clip of her carefully getting out of the bathtub.\"]}, \"v_MFvdMVCzfB0\": {\"duration\": 190.64, \"timestamps\": [[18.11, 63.86], [63.86, 106.76], [106.76, 142.98], [142.98, 169.67], [169.67, 178.24]], \"sentences\": [\"A girl wearing a red shirt and white shorts is standing in her bathroom at the sink with a toothbrush in her hand.\", \" She takes some toothpaste and puts it on her brush and begins brushing.\", \" She starts to dance as she brushes her teeth and wiggles her body too.\", \" She continues brushing and dances faster and laughs.\", \" Then she realizes that her mouth is full of toothpaste foam and that it is coming out, she spits it out in the sink.\"]}, \"v_DZVJtWJrWTU\": {\"duration\": 209.61, \"timestamps\": [[0, 26.2], [32.49, 167.69], [168.73, 209.61]], \"sentences\": [\"A young woman with red and black hair is shown using a hair dryer.\", \" She uses a large round brush to brush her hair straight as it dries.\", \" When she is done, she rakes her hand through her hair and brushes it into place.\"]}, \"v_sfeUXTuKMs8\": {\"duration\": 160.02, \"timestamps\": [[0, 12.8], [12.8, 57.61], [58.41, 108.01], [108.81, 160.02]], \"sentences\": [\"Photos of horses are shown followed by the \\\"Equestrian Life\\\" logo.\", \" A woman stands outside with a brown horse and puts on a helmet.\", \" The woman talks to the camera and mounts the horse.\", \" She continues to speak to the camera and then walks the horse in a circle.\"]}, \"v_e9R62cyqW4A\": {\"duration\": 67.66, \"timestamps\": [[0, 29.1], [30.79, 67.66]], \"sentences\": [\"A person is seen riding a bike down a long road followed by a large camel off in the distance.\", \" The animal moves closer while the camera zooms in the three people riding on the top the camel and passing by more riding camels.\"]}, \"v_tqanHyXTFFw\": {\"duration\": 81.67, \"timestamps\": [[0.82, 27.36], [23.68, 60.43], [42.87, 80.03]], \"sentences\": [\"A woman is seen speaking to the camera that leads into a man speaking to a group.\", \" Another man speaks to the camera while the demonstrator points to a bike and takes off a wheel.\", \" More people speak to the camera while the man demonstrates how to put air in a tire and well as taking it apart.\"]}, \"v_XCejO7RyWdA\": {\"duration\": 54.1, \"timestamps\": [[0, 54.1], [7.03, 54.1], [16.77, 18.4]], \"sentences\": [\"A woman in a pink shirt is standing outside.\", \" A brown dog is playing with a frisbee.\", \" The dog is standing on the woman's back.\"]}, \"v_l12QfUhRLLc\": {\"duration\": 45.87, \"timestamps\": [[0, 45.87], [13.3, 18.12]], \"sentences\": [\"stadium is shown with a lot of people in the audience sitting on stands watching a criquet game.\", \" men are being interviewed in the field.\"]}, \"v_aQAAzVQ_gSA\": {\"duration\": 170.16, \"timestamps\": [[0, 18.72], [19.57, 102.94], [108.05, 135.27], [137.83, 170.16]], \"sentences\": [\"A man is standing at a toy machine before he looks up and runs, jumping over a counter.\", \" He grabs a bowling ball and begins bowling.\", \" The men do backflips and slide as they bowl, sometimes rolling the balls under each other.\", \" One is blindfolded before making a strike, then the other does hand stands on the equipment.\"]}, \"v_5yqHTGQm2B0\": {\"duration\": 84.87, \"timestamps\": [[0, 20.37], [20.37, 41.16], [41.16, 68.32], [68.32, 84.87]], \"sentences\": [\"Men on these robotic looking pogo sticks are playing basketball inside of a court.\", \"  They are walking on the pogo sticks and jumping a bit too.\", \" They try to get the ball in the hoop and continue bouncing around the court.\", \" A man in green does a flip in the air and shoots the ball into the hoop.\"]}, \"v_kTJDylL6pCU\": {\"duration\": 181.21, \"timestamps\": [[9.06, 59.8], [58.89, 132.28], [131.38, 181.21]], \"sentences\": [\"A dog is seen standing in a bath tub chained to a tub and a woman walks into frame and grabs the dog.\", \" She hold up a bottle and sprays it around the dog, rubbing it into it's fur while speaking to the camera.\", \"  She then takes a hose and sprays the dog with water and ends by looking back to the camera.\"]}, \"v_czh5nNO_Eow\": {\"duration\": 215.25, \"timestamps\": [[0, 2.15], [2.15, 30.13], [30.13, 205.56], [205.56, 212.02], [212.02, 215.25]], \"sentences\": [\"A black screen appears with white words that read \\\"How to Paint a Paneled Door\\\".\", \" A man then appears in front of a red door that is leaning up against a wall that has plastic on it, and he's talking and touching the door.\", \"The man then grabs a paint brush and begins painting on paints various parts of the door while continuing to talk.\", \"The man stops painting, and begins talking as he points at a few things on the door.\", \" A black screen appears with white words that include a website if someone wants more information.\"]}, \"v_fBbjlXgtd50\": {\"duration\": 29.12, \"timestamps\": [[0, 29.12], [5.53, 8.01], [26.64, 29.12]], \"sentences\": [\"A woman wearing classes dances in front of the camera.\", \" The woman turns around while raising an arm.\", \" The woman turns around again.\"]}, \"v_VLg5XqBRorY\": {\"duration\": 185.9, \"timestamps\": [[0, 5.58], [5.58, 153.37], [54.84, 72.5], [100.39, 127.34], [134.78, 154.3], [155.23, 167.31], [167.31, 185.9]], \"sentences\": [\"We see an opening title screen.\", \" We see a chef at an omelette bar making multiple omelets at the same time.\", \" We see the man pour more egg into the pans.\", \" The man sprinkles seasonings on the omelets.\", \" The man pours the omelettes on plates.\", \" We then see the ending screen.\", \" We see photos of the chef.\"]}, \"v_zaPxNw11llc\": {\"duration\": 21.85, \"timestamps\": [[0, 8.3], [8.3, 18.03], [18.03, 21.85]], \"sentences\": [\"An individual stands behind a netted area.\", \" The individual begins to swing for a hammer throw.\", \" The individual releases the weight.\"]}, \"v_QjKmQO_9TaA\": {\"duration\": 164.0, \"timestamps\": [[3.28, 94.3], [4.1, 94.3], [95.12, 164]], \"sentences\": [\"A man is dancing in a room.\", \" He steps up and down on a small black stepping stool.\", \" He then dances with a woman in the room.\"]}, \"v_54VcTlhF2H8\": {\"duration\": 70.64, \"timestamps\": [[3.18, 70.28], [0, 70.28], [62.16, 70.28]], \"sentences\": [\"man is standing on a race track ready to make gymnastics in parallels in the midle of a stadium.\", \" a lot of people are sitting or walking on stands.\", \" the man lands in the floor, greets and people applauds.\"]}, \"v_0vCynjlkM5A\": {\"duration\": 13.14, \"timestamps\": [[0, 13.14], [1.18, 2.43], [2.17, 10.38], [10.45, 13.14]], \"sentences\": [\"A green race car comes into a pit stop.\", \" The man with the jack lifts the car up.\", \" The pit crew begins to work on the car by changing the front and rear tires of the car.\", \" The jack man then takes the jack out as a man in a pink shirt comes in front of the camera.\"]}, \"v_wOwWidUOaxc\": {\"duration\": 73.32, \"timestamps\": [[0, 39.59], [34.83, 73.32]], \"sentences\": [\"A man is seen kneeling down in a picture followed by two men bending down towards one another.\", \" They begin wrestling and one man pushes the other down and their clip is shown again.\"]}, \"v_ZX8sFpq471A\": {\"duration\": 111.83, \"timestamps\": [[0, 35.23], [35.23, 84.43], [84.99, 111.83]], \"sentences\": [\"A man and a woman are in a room with several targets behind them talking.\", \"The lady is then shown in another room demonstrating the proper technique to be efficient in archery.\", \"Two pattern continues and then the girl comes back and is shown with bows behind her back before shooting at a target on the wall.\"]}, \"v_W5jswt09V3s\": {\"duration\": 192.98, \"timestamps\": [[0, 20.26], [25.09, 47.28], [51.14, 192.98]], \"sentences\": [\"A group of men are playing instruments outside a building.\", \" Two men crouch in front of each other as they play.\", \" The men jump up, and begin doing martial arts moves around each other, simulating kicks and flips.\"]}, \"v__n0cR3Oshxg\": {\"duration\": 218.45, \"timestamps\": [[5.46, 32.77], [33.86, 206.44], [206.44, 212.99]], \"sentences\": [\"A man sits on front a bowl, then a woman shows cookie dough in bowls, then review a cookbook.\", \" Then, the woman make dough balls and putsion a baking pan, also a teen makes dough balls and puts in baking pan.\", \" After, the man put the cookies in the oven.\"]}, \"v_R2cL7miVEwA\": {\"duration\": 196.05, \"timestamps\": [[1.96, 110.77], [89.2, 190.17]], \"sentences\": [\"A large group of people are seen running along a field and leads into them playing a field hockey game.\", \" The game continues on with arrows pointing to various players as well as shots of people falling down.\"]}, \"v_lx83HHNNrlc\": {\"duration\": 131.44, \"timestamps\": [[0.66, 9.86], [11.17, 85.44], [37.46, 55.86], [63.75, 67.69], [72.95, 76.23], [82.15, 84.12], [93.98, 97.26], [97.92, 108.44], [121.58, 122.9], [123.55, 125.52], [126.18, 128.81], [128.81, 131.44]], \"sentences\": [\"A man holds the handle of a cleaning tool.\", \" The man cleans the kitchen floor.\", \" A lady discusses with the man.\", \" The man takes the mop out of the red bucket and moves the bucket aside.\", \" The lady stands next to a male.\", \" The lady gestures with her hands.\", \" The man hands the mop to the lady and empties the red bucket in the sink.\", \" The male grabs alcohol, while the lady mops.\", \" The man hands the bucket and mop to the male.\", \"  The man waves and salutes.\", \" The lady laughs out loud.\", \" The man washes his hand.\"]}, \"v_uOmCwWVJnLQ\": {\"duration\": 107.13, \"timestamps\": [[0, 19.82], [20.35, 73.92], [76.06, 107.13]], \"sentences\": [\"A bar of exercise equipment is shown in a living room.\", \" The different details of the equipment are being shown.\", \" The man holds on to the bar of the machine as he talks about it.\"]}, \"v_U6KrVIJSeDo\": {\"duration\": 66.22, \"timestamps\": [[0, 36.42], [39.73, 66.22]], \"sentences\": [\"A close up of an exercise equipment is shown followed by a man walking into frame and begins using the machine.\", \" The man moves back and fourth on the machine while the camera continues to capture his movements.\"]}, \"v_UmU8dx36O9w\": {\"duration\": 85.96000000000001, \"timestamps\": [[1.29, 31.38], [20.2, 59.74], [60.17, 81.23]], \"sentences\": [\"A woman is seen sitting in front of the camera and begins putting a contact lens in her eyes.\", \" The woman keeps attempting to put the lens in her eye while looking around trying again.\", \" She succeeds the last time and is seen cheering to the camera.\"]}, \"v_BsSZDCHPjtY\": {\"duration\": 51.1, \"timestamps\": [[0.26, 19.16], [15.33, 48.8]], \"sentences\": [\"A large lake is seen with a man sitting in a tube as well as others looking around the area.\", \" The men crash with one hitting up against a log and leads into the tube being moved around and the person sitting back on.\"]}, \"v_5Ra6milBrOM\": {\"duration\": 234.96, \"timestamps\": [[0, 12.92], [12.92, 101.03], [55.22, 125.71], [105.73, 125.71], [117.48, 124.53], [128.05, 148.03], [148.03, 219.69], [184.45, 193.84], [224.39, 234.96]], \"sentences\": [\"An introduction animation is shown with the title of video.\", \" A female coach in sweats gives instructions to a group of students in a gym for a physical activity by acting out the routine.\", \" The students mimic the instructors motions.\", \" The coach points to different areas of the gym and individual groups of students.\", \" A student in black shorts runs across the gym.\", \" A group of students plays rock paper sissor.\", \" Students run around the perimeter of the gym to different stations.\", \" A student wearing a hat sits on the bench and looks sick.\", \" A animated page shows credits for the video.\"]}, \"v_Bvry1S-bYXU\": {\"duration\": 158.15, \"timestamps\": [[0, 103.59], [103.59, 125.73], [125.73, 158.15]], \"sentences\": [\"A girl competes vault gymnastic in front the judges while spectators observe from the bleachers.\", \" The gymnast approach to her coaches to talk and then they leave.\", \" After, the a flashback of the performance of the gymnast is show.\"]}, \"v_uThAYmmxBFk\": {\"duration\": 91.63, \"timestamps\": [[0, 27.95], [22.45, 71.01], [65.51, 87.96]], \"sentences\": [\"A large group of people are seen moving around a room performing an exercise routine.\", \" The people move up and down on beams while moving their arms around and a woman leading in front.\", \" The group continue dancing with one another and end by holding a pose.\"]}, \"v_OyV4eki18GE\": {\"duration\": 77.58, \"timestamps\": [[0, 9.31], [9.7, 76.03], [76.41, 77.58]], \"sentences\": [\"A baby in a hat is sitting on a chair.\", \" A man is holding the baby playing with a ball.\", \" A baby is sleeping on a couch.\"]}, \"v_D-XCWhvStd4\": {\"duration\": 130.43, \"timestamps\": [[0, 3.26], [3.26, 11.09], [11.74, 33.26], [33.26, 43.69], [43.69, 60.65], [60.65, 73.69], [74.34, 102.39], [103.04, 119.99], [119.99, 130.43]], \"sentences\": [\"We see the title screens for the video.\", \" We see a person skiing.\", \" We switch to a workshop and a list of tools.\", \" We see a man adds a band on a ski and the ski sits on a contraption.\", \" A man brushes and rubs the ski.\", \" We see colorful wax and a man turning a dial.\", \" The man pours wax and we get instructions before he irons the wax on the ski.\", \" The man scrapes the wax and brushes the ski.\", \" We get a ski fact and the video end card shows.\"]}, \"v_SXwCedd4MKg\": {\"duration\": 173.82999999999998, \"timestamps\": [[0, 43.46], [46.93, 121.68], [98.21, 164.26]], \"sentences\": [\"A person is seen throwing a frisbee off into the distance and a dog chasing after it.\", \" Several shots are shown of dogs running after frisbees after their owner throws them.\", \" More dogs are seen chasing after the frisbees while the owner watches from behind.\"]}, \"v__zR5wVbz3xU\": {\"duration\": 59.1, \"timestamps\": [[0, 55.25], [55.84, 59.1]], \"sentences\": [\"A man jumps onto bars and starts swinging on them.\", \" He does a flip off them and lands on a mat.\"]}, \"v_uXX2lSVAXq8\": {\"duration\": 162.61, \"timestamps\": [[0, 99.19], [56.91, 117.89], [106.51, 162.61]], \"sentences\": [\"A medical processional puts a device and needle in someones face.\", \"  It is actually a piercing.\", \"  He cleans it and then she gets up.\"]}, \"v_YK5n3YTf8pI\": {\"duration\": 60.14, \"timestamps\": [[0, 11.43], [12.93, 39.09], [39.09, 60.14]], \"sentences\": [\"A group of photographers take pictures as a weight lifter shows up on stage and prepares his hands.\", \" He lifts a barbell at the knees, then pauses at his chest.\", \" He lifts the barbell over his head before dropping it back to the ground.\"]}, \"v_ZXEc0cahpuw\": {\"duration\": 30.37, \"timestamps\": [[0.3, 30.37], [0, 29.92]], \"sentences\": [\"There is a woman whose wearing nothing but shorts and a tshirt.\", \" She is shown sitting on a rock while washing the little bit of clothes she has in the river.\"]}, \"v_VFUk9WX8y5w\": {\"duration\": 157.57999999999998, \"timestamps\": [[0, 33.88], [33.88, 48.06], [48.06, 70.12], [70.12, 74.06], [74.85, 144.98], [145.77, 157.58]], \"sentences\": [\"A group of people holding skateboards stand on the start line, then people skateboard down the road.\", \" They get in a school bus, then, they skateboard on the road.\", \" A boy falls on the ground, and other people continue skateboarding.\", \" Two, people fall on the road.\", \" After, a man gives the start to people who skateboard on the road until reach the finish line to receive their trophies.\", \" A person skateboard jumping on a ramp.\"]}, \"v_Rh2UGc42X0M\": {\"duration\": 166.16, \"timestamps\": [[0, 22.43], [25.76, 128.78], [131.27, 166.16]], \"sentences\": [\"A woman smiles before sledding down a hill on an intertube.\", \" She laughs and waves at the camera on the way down the hill.\", \" Several people are then shown sledding together before coming to a stop on a snowy slope.\"]}, \"v_M0UsJ31h64U\": {\"duration\": 224.93, \"timestamps\": [[0, 224.93], [118.09, 224.93]], \"sentences\": [\"A large group of people are shown swimming around in a pool playing water polo.\", \" The match continues on with people passing the ball around the pool while many sit along the sidelines and watch.\"]}, \"v_Ej_a4iCd45I\": {\"duration\": 174.94, \"timestamps\": [[0, 4.37], [4.37, 163.57], [15.74, 56.86], [67.35, 71.73], [96.22, 103.21], [121.58, 124.21], [135.58, 141.7], [150.45, 154.82], [159.2, 163.57], [163.57, 174.94]], \"sentences\": [\"We see the title cards on blue.\", \" We see men playing beach volleyball.\", \" We see an interview with a man.\", \" Two men high five each other the men all trade sides.\", \" The ball lands on the ground.\", \" A man kicks the ball to the other side.\", \" A man jumps and spins in the air.\", \"  The man in gray daces as the other men jump around.\", \" The men pose for a photo.\", \" The title card is shown and we fade out.\"]}, \"v_-1IlTIWPNs4\": {\"duration\": 86.05, \"timestamps\": [[0, 21.08], [21.94, 86.05]], \"sentences\": [\"A cameraman walks down a snowy driveway to capture a young child shoveling up snow.\", \" The boy speaks into the camera and continues pushing the snow around with a shovel.\"]}, \"v_tJSF2GAp9TU\": {\"duration\": 80.85, \"timestamps\": [[0, 60.23], [0.81, 60.23], [55.38, 60.23]], \"sentences\": [\"A man jumps on parallel bars and does a gymnastics routine.\", \" The audience is watching him in the stands.\", \" He jumps off and lands on the mat with his hands raised.\"]}, \"v_QePg4GKh3rw\": {\"duration\": 65.9, \"timestamps\": [[0, 6.92], [10.54, 52.39], [53.71, 65.9]], \"sentences\": [\"A gymnast is seen standing ready and waves one arm into the air.\", \" She jumps onto a set of uneven bars and performs a gymnastics routine consisting on flips and tricks.\", \" She jumps off the bars in the end and waves her arms in the air while her coach claps for her.\"]}, \"v_CEEJ1gzdmAk\": {\"duration\": 171.55, \"timestamps\": [[0, 169.83], [3.43, 168.12], [39.46, 42.89], [47.18, 50.61], [152.68, 153.54]], \"sentences\": [\"Guys are playing hockey on an ice arena.\", \" Some players are laid out.\", \" A pile of players lay on a fallen athlete.\", \" A player gets knocked to the ice and his helmet too.\", \" A guy has a head injury and is blooding on the ice after he falls.\"]}, \"v_6yD5jZn6SEs\": {\"duration\": 13.21, \"timestamps\": [[0.2, 4.16], [3.9, 9.18], [8.85, 12.68]], \"sentences\": [\"A gymnast is seen leaning over a long bar with a person standing next to her on the ground.\", \" The girl then hops herself up on the beam.\", \" Finally the girl begins to swing down around.\"]}, \"v_UaiKJ_7mKIA\": {\"duration\": 30.12, \"timestamps\": [[0, 1.2], [1.96, 9.49], [9.94, 13.1], [15.51, 17.47], [17.62, 21.38], [21.83, 26.35]], \"sentences\": [\"A group stands at a train station.\", \" A man shovels snow from the sidewalk.\", \" A man in a wheelchair goes down a sidewalk on a cold winter day.\", \" A woman in snow jacket shovels snow from a sidewalk.\", \" A man breaks up ice with a spade.\", \" A man shovels snow from a sidewalk into a tree lined planter.\"]}, \"v_mhqfGS59FG0\": {\"duration\": 79.55, \"timestamps\": [[0.4, 36.2], [35.8, 78.76]], \"sentences\": [\"Two people are seen holding tennis rackets and hitting a ball around in a small room.\", \" The men continue to hit the ball back and fourth to one another and run around the hit the ball.\"]}, \"v_rIqITS6qMB0\": {\"duration\": 27.93, \"timestamps\": [[0, 6.42], [6.84, 7.54], [7.68, 27.93], [23.46, 27.93]], \"sentences\": [\"A guy stands in the fields and lights a piece of paper.\", \" A guy tosses the piece of paper towards stack wood and then runs.\", \" The wood catches on fire.\", \" The guy walks towards a man.\"]}, \"v_HPv-d6qybdE\": {\"duration\": 214.51, \"timestamps\": [[0, 35.39], [32.18, 139.43], [132.99, 213.43]], \"sentences\": [\"A camera pans all around an indoor gym and leads into clips of people pole volting over a bar.\", \" Several people are shown running with a pole over a beam and onto a mat one after the other.\", \" More people take their turns while others walk around the gym and watch them on the sides.\"]}, \"v_lRRBeGRTpdc\": {\"duration\": 200.66, \"timestamps\": [[0, 14.05], [14.05, 16.05], [16.05, 18.06], [18.06, 19.06], [19.06, 128.42], [128.42, 200.66]], \"sentences\": [\"the word BRENMAR is in the center of the screen going around, then change to the word UNiiQU3 and Hoola Hoop.\", \" three women wearing all black are standing holding a white hoola hoope on her hands.\", \" a man is bending on the floor srronded by hoola hoops.\", \" woman wearing black pants and white shirt starts dancing with a hoola hoop arond his neck.\", \" second woman with yellow hair starts dancing two people appears and a set of dancing women appears doing tricks with a hoola hoop while the man is watching them, woman with green jacket is singing the song.\", \" women appears in a dark room with brilliant hoola hoops dancing and doing tricks, woman with yellow hair keeps dancing alone.\"]}, \"v_m6w3Skrc89s\": {\"duration\": 27.89, \"timestamps\": [[0, 3.9], [1.81, 18.27], [13.94, 27.89]], \"sentences\": [\"The man in black shirt is kneeling and reached for his back leg.\", \" The man slightly moved forward.\", \" The man paused forward while he is holding his ankle.\"]}, \"v_NSi8DorB6L0\": {\"duration\": 39.73, \"timestamps\": [[0, 35.16], [35.16, 39.73]], \"sentences\": [\"This man is water skiing and he does it sitting down and standing up, except he's holding onto the handle bars backwards.\", \" While he's skiing he tries to around to stand forward like normal, but he goes flying when he tries to turn around.\"]}, \"v_voaGOm-rl9Y\": {\"duration\": 51.8, \"timestamps\": [[0, 43.77], [9.58, 43.77], [45.07, 51.8]], \"sentences\": [\"A person is shoveling snow off their sidewalk.\", \" A dog is jumping in the snow he is throwing.\", \" Words come onto the screen.\"]}, \"v_nQjxgOz1WYo\": {\"duration\": 33.02, \"timestamps\": [[0, 9.25], [5.94, 28.56], [28.07, 33.02]], \"sentences\": [\"A man is seen acting crazy towards a camera while sitting at a poker table with another man.\", \" The men stick their tongues out at the camera and the camera moves in on another table with people playing.\", \" In the end he faces the camera towards himself.\"]}, \"v_4EQYvkfMUWw\": {\"duration\": 58.93, \"timestamps\": [[0, 58.34], [8.55, 26.81], [47.74, 58.93]], \"sentences\": [\"A teen holds a violin and then plays on front of other teens that talk and laugh.\", \" Teens talk and make comments and a woman laugh.\", \" Then people in the room applauds.\"]}, \"v_rWHm1-o_zL0\": {\"duration\": 162.38, \"timestamps\": [[0, 10.55], [12.18, 31.66], [33.29, 50.34], [51.15, 116.1], [116.91, 140.46], [141.27, 162.38]], \"sentences\": [\"A shiny mopped floor is shown.\", \" A janitor is shown rolling rugs, scraping gum, putting out signs, and mopping floors.\", \" He goes into a closet and picks out the cleaner he uses while he talks about it.\", \" He sprays water and the cleaning solution into his mop cart.\", \" He is then shown mopping the floor with the solution.\", \" He takes everything apart and puts it away before washing his hands for the day.\"]}, \"v_rDlPcW_2nG0\": {\"duration\": 143.34, \"timestamps\": [[0, 29.38], [25.8, 103.92], [57.33, 143.34]], \"sentences\": [\"Two women standing in the kitchen, one girl is wearing a black top and the other one is wearing a beige top.\", \" The woman in beige showed a sandwich on the kitchen counter, then started peeing the green cucumber using a peeler, then start slicing the cucumber.\", \" She then spread butter on the bread, placed the sliced cucumber on the bread, sprinkle some salt, cut the edges of the bread then sliced it into triangle, then placed in on the white plate, then both of the women ate the sandwich.\"]}, \"v_6w4OWjY6k_k\": {\"duration\": 53.73, \"timestamps\": [[0, 22.57], [19.07, 42.72], [42.72, 53.73]], \"sentences\": [\"A young child is seen walking forward with a stick in his hand and pushing a puck down a track.\", \" He walks back while another boy hits the puck and several people watch on the sidelines.\", \" The young boy continues to walk back and fourth.\"]}, \"v_qJYp25ni6tg\": {\"duration\": 193.19, \"timestamps\": [[0.97, 53.13], [44.43, 129.44], [109.15, 188.36]], \"sentences\": [\"A man is seen speaking to the camera followed by various ingredients laid out and him chopping up vegetables.\", \" The man continues cutting and mixes the ingredients into a bowl.\", \" He pours liquid into the bowl and ends by presenting it on a plate.\"]}, \"v_-rJVr9sQ1h8\": {\"duration\": 107.41, \"timestamps\": [[3.22, 53.7], [49.41, 105.79]], \"sentences\": [\"The video leads into several shots of dogs walking around and leads into a woman petting a dogs fur.\", \" The woman continues brushing and shows clips of the dog running along a park.\"]}, \"v_Q8Y9pmhvJqE\": {\"duration\": 53.52, \"timestamps\": [[0, 37.73], [38.54, 47.63], [47.9, 53.52]], \"sentences\": [\"Two adult men in helmets are teaching little boys how to play ice hockey.\", \" The boys gather in a circle, hitting their sticks on the ground.\", \" They then cheer and skate away.\"]}, \"v_F1-PnXa9SwQ\": {\"duration\": 33.07, \"timestamps\": [[0, 11.57], [11.74, 23.81], [23.48, 33.07]], \"sentences\": [\"A woman in a white dress starts a lawn mower.\", \" She starts mowing the lawn.\", \" She turns around and goes back the other way.\"]}, \"v_QQfH0FDsYPc\": {\"duration\": 11.56, \"timestamps\": [[0, 5.32], [5.38, 11.56]], \"sentences\": [\"A man is seen standing on a field and begins swinging an object around and around.\", \" He continues swinging and finishes by standing on the field.\"]}, \"v_o1DCCTev0CQ\": {\"duration\": 215.09, \"timestamps\": [[0, 38.72], [39.79, 168.84], [173.15, 215.09]], \"sentences\": [\"A sign says superfresco easy on the screen.\", \" A man is shown painting a wall with grey paint.\", \" He uses broad sweeps to completely cover the wall.\"]}, \"v_96krk6Ka9Vc\": {\"duration\": 115.75, \"timestamps\": [[0, 13.89], [15.05, 71.77], [73.5, 115.75]], \"sentences\": [\"Several views are seen from the inside of a stadium.\", \" A group of teams walk onto the field, cheering.\", \" The crowd cheers as the teams make goals during the game.\"]}, \"v_pi4p4zdoqmw\": {\"duration\": 142.76, \"timestamps\": [[0, 6.42], [6.42, 142.76], [10.71, 142.76], [57.82, 59.24], [77.09, 80.66]], \"sentences\": [\"A man in surfing attire is featured with his name and size of his board.\", \" The video cuts to the beach and the man begins to surf.\", \" He catches waves but wipes out early on most of them.\", \" A bird appears to divebomb into the ocean.\", \" Other surfers further out appear.\"]}, \"v_jwyLw2n_YVw\": {\"duration\": 171.88, \"timestamps\": [[0, 1.72], [1.72, 19.77], [19.77, 33.52], [33.52, 42.11], [42.11, 116.88], [116.02, 146.95], [146.09, 171.88]], \"sentences\": [\"A woman walks into the kitchen and turns the knobs on the oven.\", \"A blender is then put on the counter and the lever is pulled down followed by a tea bag being placed in a cup.\", \"The lady then moves to a counter and adds a piece of baking paper over two large racks.\", \"She then grabs the boiling hot water and pours it into the mug.\", \"She returns back to the counter and begins placing rolls of cookie dough on the racks.\", \"Its finally time for the cookies to be in put in the oven and she sets the timer on her phone so she won't burn them.\", \"After the time is up,she takes them out of the oven adds one on a plate and takes it to a girl down the hall.\"]}, \"v_bNR0MmJ9d8I\": {\"duration\": 152.42000000000002, \"timestamps\": [[0, 4.57], [5.33, 32.01], [32.77, 37.34], [38.87, 41.15], [41.91, 99.07], [51.06, 54.11], [99.83, 125.74], [126.51, 129.55], [130.32, 138.7]], \"sentences\": [\"A man speaks to the camera.\", \" He rolls a big box into the room and proceeds to open a box where a bicycle sits inside.\", \" From the inside of the box, he takes out a small box full of tools for the use of assembling the bicycle.\", \" He's seen speaking to the camera again.\", \" He removes all of the boxes sitting around the bicycle and assembles the bike.\", \" Again, he speaks to the camera.\", \" He removes two pedals from bags and attaches both pedals onto the bicycle.\", \" He takes the bicycle for a ride.\", \"  Briefly, he speaks to the camera.\"]}, \"v_28GYivx4lyk\": {\"duration\": 11.05, \"timestamps\": [[0, 11.05], [0, 3.59], [9.34, 11.05]], \"sentences\": [\"We see two people playing foosball.\", \" A man in a black shirt leave the room and turns before leaving.\", \" A man puts his face in front of the camera.\"]}, \"v_uAKyRSEaY1s\": {\"duration\": 41.82, \"timestamps\": [[0, 5.02], [5.02, 31.57], [31.57, 41.82]], \"sentences\": [\"A man wearing a grey t-shirt stands at a desk with a computer monitor displaying a timer.\", \" The man holds a Rubik's Cube and starts the timer as he starts to solve the Rubik's Cube.\", \" As the man completes the Rubik's Cube he drops the puzzle and stops the timer at 26 seconds.\"]}, \"v_fU2mbWwVSXU\": {\"duration\": 162.61, \"timestamps\": [[0, 162.61], [17.89, 42.28], [33.34, 89.44], [78.05, 162.61]], \"sentences\": [\"A man in white uniform is standing at the kitchen counter.\", \" The man pull out a knife and sharpener, he touched the edge of the knife.\", \" The man hold the metal knife sharpener and slowly sharpen the knife from side to side.\", \" The man use different types of tools to sharpen the knife such as machine and water stone.\"]}, \"v_QWXzDdMjZOw\": {\"duration\": 151.95, \"timestamps\": [[6.08, 75.22], [75.22, 123.08], [123.08, 144.35]], \"sentences\": [\"A man holds a saxophone, then he takes out the neck and blows the mouthpiece while talking.\", \" Then, the man puts on the neck in the saxophone and shows the keys while talking.\", \" Then, the man plays the saxophone while explaining.\"]}, \"v_TKGjHAmCaRo\": {\"duration\": 136.88, \"timestamps\": [[0, 11.63], [8.21, 32.85], [32.85, 57.49], [57.49, 88.97], [90.34, 117.03], [117.72, 136.88]], \"sentences\": [\"A man is playing with a dog on the grass.\", \" he then flips and throws a Frisbee.\", \" The dog runs side to side and chases it.\", \" He grabs two other Frisbees and tosses them around while the dog jumps.\", \" He throws the Frisbee some more while the dog runs.\", \" The dog continues jumping side to side and running in all directions as they get thrown.\"]}, \"v_q23IYtwNOkE\": {\"duration\": 61.32, \"timestamps\": [[0, 41.7], [42.31, 60.1]], \"sentences\": [\" A man and an woman sip a blue liquid and rinse his mouth.\", \" Then, the woman bend and throw the liquid while the man continues rinsing his mouth.\"]}, \"v__nBOWe_VhXg\": {\"duration\": 185.11, \"timestamps\": [[0, 36.1], [32.39, 185.11]], \"sentences\": [\"A woman is shown talking to the camera and leads into her beginning to paint a picture.\", \" She moves her brush back and fourth on the canvas and putting various colors and swirls around the sides.\"]}, \"v_0wwx4wnHv-U\": {\"duration\": 8.78, \"timestamps\": [[0, 1.84], [1.89, 6.93], [6.19, 8.56]], \"sentences\": [\"A person is seen standing on a tennis court bouncing a ball.\", \" Another man is seen standing ready on the other side in front of a large audience.\", \" The man then hits the ball over the net and bounces back on the other side.\"]}, \"v__kG3DxvGnnQ\": {\"duration\": 208.68, \"timestamps\": [[0, 93.91], [91.82, 208.68]], \"sentences\": [\"A girl is seen sitting in a chair with another person wiping her face and handing her a mirror to look in.\", \" He then pierces the girl's cheeks and the camera zooms in on the girl's face when he's done.\"]}, \"v_9LraB2HBC0g\": {\"duration\": 184.02, \"timestamps\": [[2.76, 94.77], [68.09, 179.42]], \"sentences\": [\"A woman is seen speaking to the camera while standing in a shower and holding various objects.\", \" The woman then rubs lotions all over her legs and begins shaving her legs and ending by speaking to the camera.\"]}, \"v__g2D5oXLCZI\": {\"duration\": 54.31, \"timestamps\": [[0, 15.48], [15.48, 40.73], [38.83, 53.5]], \"sentences\": [\"A man is seen speaking to the camera holding a basketball.\", \" The man then begins throwing the ball in the hoop several times.\", \" He walks back to the camera and continues speaking while moving his hands.\"]}, \"v_2OPk79DNQdM\": {\"duration\": 119.68, \"timestamps\": [[0, 28.12], [29.32, 119.68]], \"sentences\": [\"A young woman is seen speaking to the camera and transitions into her with her hair in front of her face.\", \" She slowly brushes and parts her hair and flips her hair back in the end.\"]}, \"v_3gc3nddr8TE\": {\"duration\": 58.14, \"timestamps\": [[0, 12.21], [11.63, 42.15], [35.76, 55.24]], \"sentences\": [\"A small group of girls are seen huddled up and begin moving around the field.\", \" More women are seen running around the large field playing field hockey.\", \"  The girls continue to play against one another and end by waling away.\"]}, \"v_6iTymXuGFhg\": {\"duration\": 121.6, \"timestamps\": [[0, 26.75], [17.63, 99.11], [96.07, 121.6]], \"sentences\": [\"A close up is shown of a young child moving around on a swing and people standing around him to push.\", \" The camera continues to follow the boy around the yard while the mom lays in the grass and then the daughter swinging around.\", \" The parents play with the kids more, give them a kiss, and the dad walks away with the daughter.\"]}, \"v_jG1kgKJkf8c\": {\"duration\": 191.45, \"timestamps\": [[0, 61.26], [67.01, 85.19], [86.15, 154.12], [155.07, 191.45]], \"sentences\": [\"A street performer is sitting down on a crate and drumming on buckets and pans with drum sticks.\", \" He busts on of the buckets and in frustration, stabs it with the stick.\", \" He replaces the bucket and starts over in his beat as a crowd gathers.\", \" He rearranges the buckets once again and continues drumming.\"]}, \"v_29k1TypoU4w\": {\"duration\": 86.7, \"timestamps\": [[0.87, 39.45], [23.41, 83.67]], \"sentences\": [\"A man is seen kneeling on a mat and demonstrating how to do a proper exercise but moving his arms and legs.\", \" The man moves back and fourth while moving his arms and legs and speaking to the camera.\"]}, \"v_22n4w0uferc\": {\"duration\": 189.48, \"timestamps\": [[0, 5.68], [5.68, 124.11], [124.11, 184.74], [184.74, 189.47]], \"sentences\": [\"A screen appears with a snowy mountain with pine trees and an overlay on the screen of a logo and words that say \\\"Efficient Hot Waxing Tips Reduces time material waste, cost and mess\\\".\", \" A pair of skis are in a workshop and a man is doing some work on them that included rounds rubbing wax on the skis, ironing the skis, scraping skis while words on the bottom appear throughout the entire process as it explains what is being done.\", \"The man is now sharpening the edges of a file then begins to scrape the skis, then finishes up by ironing it with different clothes between the iron and skis.\", \" The outro screen appears and it's the exact picture like the intro but the words now say \\\"Checkout our video Scraping & Brushing\\\" and it also includes the company logo.\"]}, \"v_9K97gmkVbyQ\": {\"duration\": 175.96, \"timestamps\": [[0, 42.23], [36.07, 86.22], [92.38, 170.68]], \"sentences\": [\"A woman is seen speaking to the camera while grabbing various bags and laying them out.\", \" She puts and object into a bag while pointing to a box next to her.\", \" She stuffs paper into the bag and ends by tying a bow on top.\"]}, \"v_r3H_75-lRjE\": {\"duration\": 184.46, \"timestamps\": [[11.99, 170.63], [172.47, 183.54]], \"sentences\": [\"A man plays the harmonica on front a microphone, then he ends and say goodbye.\", \" Then, a girl steps on the stage and speaks with the microphone.\"]}, \"v_jzGsvw5Douk\": {\"duration\": 194.35, \"timestamps\": [[0, 24.29], [26.24, 49.56], [49.56, 66.08], [66.08, 95.23], [89.4, 93.29], [117.58, 122.44], [139.93, 149.65], [175.89, 194.35]], \"sentences\": [\"We see rafts and people in a building.\", \" People board a bus and exit at a water park.\", \" People grab rafts,and people on rafts fill a river.\", \" We see an artificial waterfall and people sliding through it.\", \" A person falls out of their raft.\", \" A man holding a selfie stick is riding a raft.\", \"  Another man holding a selfie stick.\", \" We see the phone number and credits for the video.\"]}, \"v_V2PhVadSbpQ\": {\"duration\": 72.75, \"timestamps\": [[5.09, 66.93], [37.47, 39.65]], \"sentences\": [\"A man talks to the camera while intermittently raking leaves.\", \" A closeup of a pile of leaves is shown.\"]}, \"v_IB068eD8A7Y\": {\"duration\": 225.79, \"timestamps\": [[0, 10.16], [10.16, 63.22], [63.22, 104.99], [106.12, 200.95], [202.08, 225.79]], \"sentences\": [\"We see a man and a small boy holding a bow and arrow in a field.\", \" The boy shoots the arrow stretches and shoots more arrows.\", \" We see the man shoot three arrows and see the target.\", \" We see the boy as he tries to shoot balloons on the target and misses them all.\", \" The boy walks away and we see lady shoot two arrows and turn and kiss her hand.\"]}, \"v_vWEbHvnkogA\": {\"duration\": 190.92, \"timestamps\": [[0, 33.41], [33.41, 74.46], [74.46, 134.6], [134.6, 190.92]], \"sentences\": [\"A jazz musicians is teaching how to play the saxophone.\", \" He is giving instructions and talking about music and scales.\", \" Then he starts to play some for a little before going back to lecturing.\", \" He talks about the notes he has written on the chalk board and goes back to lecturing more about it all.\"]}, \"v_omuYi2Vhgjo\": {\"duration\": 233.68, \"timestamps\": [[0, 25.7], [24.54, 179.93], [205.63, 233.68]], \"sentences\": [\"A young boy is seen smiling and laughing into the camera and beginning to play piano.\", \" The boy plays furiously on the piano at a fast pace and leads into him wearing a different shirt and still playing.\", \" He finishes by putting his body onto the piano and then smiling into the camera.\"]}, \"v_8UJ5PGzu1PE\": {\"duration\": 59.22, \"timestamps\": [[1.18, 15.69], [29.91, 36.42], [51.52, 59.22]], \"sentences\": [\"A man lays a Coca Cola bottle on a bundle of hay.\", \" The man shots an arrow from a bow.\", \" The arrow uncaps the bottle.\"]}, \"v_8qODQbBVsus\": {\"duration\": 140.5, \"timestamps\": [[0, 31.61], [31.61, 47.07], [47.07, 53.39], [53.39, 68.85], [68.85, 140.5]], \"sentences\": [\"A man and woman are standing at a counter with a pineapple.\", \" The man ripped the top of the pineapple.\", \"  The man sliced the top off the pineapple.\", \" The man cut the pineapple in half.\", \" The man cut the skin off the pineapple.\"]}, \"v_mCdKLZGnKxk\": {\"duration\": 75.05, \"timestamps\": [[0, 75.05], [50.28, 56.66]], \"sentences\": [\"Someone is placing a vent on the roof of a house.\", \" They seal the vent with glue.\"]}, \"v_jKPgBtesr74\": {\"duration\": 110.74000000000001, \"timestamps\": [[0, 110.74], [23.81, 32.67], [45.4, 67.55], [71.98, 81.94], [85.27, 88.04]], \"sentences\": [\"Two boys are standing behind a table.\", \" They have a glass and a lemon on the table.\", \" They pour it into a pitcher of water and make a drink.\", \" They pour the drink into two glasses.\", \" They both take a drink out of the straw.\"]}, \"v_74MEdLMrXAQ\": {\"duration\": 202.76, \"timestamps\": [[4.06, 40.55], [40.55, 95.3], [95.3, 181.47], [181.47, 201.74]], \"sentences\": [\"Boys play indoor soccer while kicking the ball and passing it to playmates, then the referee enter to the center and gives instructions.\", \" Then, the referee puts the ball on the goal area and a boy kick the ball, but the goalkeeper stop the ball.\", \" The boys play shooting the ball to the goalkeeper stops the ball.\", \" After, a player scores and the teams continue playing.\"]}, \"v_bpfak_VIJ8o\": {\"duration\": 235.13, \"timestamps\": [[5.88, 70.54], [61.13, 169.29], [148.13, 230.42]], \"sentences\": [\"Several shots of landscapes are shown that leads into a man and woman speaking to the camera.\", \" The couple walk onto a sandy pit and pan around a group of players.\", \" More people are seen speaking to the camera that shows shots of them playing volleyball and ending with the couple.\"]}, \"v_NVnjzpoY1O8\": {\"duration\": 59.56, \"timestamps\": [[0, 45.56], [45.56, 51.82], [51.82, 59.56]], \"sentences\": [\"An elderly priest is sitting down in his chair indoors in a large building and 3 different men break dance on the ground in front of him as the people around him start clapping and lights go off from all the flashes.\", \" When the men are done dancing they stand up together in front of the people and the priest, and they take their bow to the priest and to the people.\", \" The men then walk over to the priest and each kiss his hand and white words appear on the screen and say \\\"Bilder: Reuters Redigering: Malin Lagerlof\\\".\"]}, \"v_AU3_oU1_rfA\": {\"duration\": 103.59, \"timestamps\": [[0, 5.18], [5.18, 93.23], [17.09, 81.31], [93.23, 103.59]], \"sentences\": [\"An eHow intro comes onto the screen with music in the background.\", \" I man appears on the screen narrating the video about how to shave.\", \" A man is shown getting his skin moisturized and having shaving cream buffed onto his face.\", \" The video ends with the eHow closing credits.\"]}, \"v_rzZutQSmyJo\": {\"duration\": 139.46, \"timestamps\": [[0, 71.12], [79.49, 139.46]], \"sentences\": [\"A woman is playing a set of bagpipes in a room.\", \" She laughs as a man helps her adjust the pipes, and continues to play.\"]}, \"v_-0NfmccuL9Q\": {\"duration\": 215.69, \"timestamps\": [[0, 33.43], [33.43, 80.88], [80.88, 145.59], [145.59, 215.69]], \"sentences\": [\"A man has a few tools and is pumping his car up some so he can take off the tire.\", \" He uses the tool to take off all of the nuts one by one.\", \" Then he grabs the tire off and moves it over and he puts on another tire.\", \" He does everything he did before but the opposite, putting the nuts back on in place to tighten the tire on, he then brings the car back down.\"]}, \"v_sFKOnFMJF2Q\": {\"duration\": 119.32, \"timestamps\": [[1.79, 31.02], [25.65, 26.85], [31.62, 42.95], [38.78, 41.76], [42.95, 83.52], [83.52, 112.76]], \"sentences\": [\"A teen skateboards in a road, then he walks with a friend holding his skateboard, then they skateboard.\", \" A car enters the street where the teen skateboard.\", \" A youth wearing a pink t-shirt skateboard on the street.\", \" The teen walks holding his skateboard.\", \" Teens skateboard in the street making tricks and turn.\", \" After, two teens walk in the street, and then they skateboard.\"]}, \"v_l6a56j87obQ\": {\"duration\": 126.87, \"timestamps\": [[0, 88.18], [88.18, 106.57], [106.57, 126.87]], \"sentences\": [\"A man is standing on a stage at night time with a lot of stage lights, a band behind him, and a crowd in front of him and he's playing a bag pipe.\", \"Another man comes onto the stage playing the guitar and the lights go flashing.\", \"When the man is done playing the bagpipe another man runs on the stage to grab it from him, and the man who was playing the bagpipe gets something to drink, then grabs a mic and starts singing and waving his right arm in the air.\"]}, \"v_EMgWolnolDg\": {\"duration\": 143.87, \"timestamps\": [[0, 59.71], [58.99, 99.27], [99.99, 125.17], [125.17, 143.87]], \"sentences\": [\"Two men outside in the woods while one man wearing a knit cap balances on a rope tied across two trees while one man with a black beard supports the man with the knit cap.\", \" The man with the beard releases the man on the rope and moves away.\", \" A man in a green hoodie balances on the rope while the man in the beard supports the man on the rope.\", \" A Man in a grey  shirt pushes off of a man wearing a black shirt and performs a back somersault and lands firmly on the leaf covered ground.\"]}, \"v_wlx5YuEHsO8\": {\"duration\": 197.72, \"timestamps\": [[0, 8.9], [8.9, 174.98], [174.98, 188.82], [188.82, 197.72]], \"sentences\": [\"A white intro screen appears with special effects and a lot of coloring that include words, numbers, and logos.\", \" Men are then shown in a dark room filled with people as they put on shirts, shakes hands with others, pose and then they begin a game of Foosball while images of their flag briefly show up on the screen and a lot of people around them watch as different men team up against one another.\", \"When they are done playing a man and a woman are standing and talking at a mic while one man hands over a box to another man and they walk off the stage.\", \"The same white screen from the beginning appears with special effects and lot of colored words then it fades to black.\"]}, \"v_v79nh_3vpVk\": {\"duration\": 102.49000000000001, \"timestamps\": [[0, 6.66], [12.81, 28.19], [31.26, 37.92], [42.53, 44.07], [70.72, 84.04]], \"sentences\": [\"People are playing lacrosse on a field of grass.\", \" A man in a white shirt is talking to the camera.\", \" A girl then talks to the camera.\", \" Pink water bottles are in a box.\", \" They walk onto the field and start playing.\"]}, \"v_mFSdzT5gXQs\": {\"duration\": 221.75, \"timestamps\": [[0, 34.37], [34.37, 83.16], [64.31, 148.57], [148.57, 221.75]], \"sentences\": [\"A computer generated game of a man, he starts spinning.\", \" He turns around quickly and lets go of the frisbee and the refs run up to mark where it lands.\", \" The man starts to do it again, he spins and throws again.\", \" The score shows up on the screen before he spins and throws again and then he cheers in excitment.\"]}, \"v_Vp63nbOfxgs\": {\"duration\": 162.01, \"timestamps\": [[0, 17.01], [17.01, 79.38], [79.38, 123.12], [123.12, 162.01]], \"sentences\": [\"Some is carrying an instrument case walking around outside, they put the case down on the ground and take out a violin.\", \" The woman plays the violin everywhere she goes and she dances while she plays too.\", \" She does some movements of her body making her back bend down almost touching the ground while still jamming out on the violin.\", \" She is very intense about it, she plays and plays and when she is done she walks away casually.\"]}, \"v_8729_qnILMM\": {\"duration\": 85.61, \"timestamps\": [[3.42, 81.33], [81.33, 85.61]], \"sentences\": [\"A woman plays flute sit on a piano while moving her feet.\", \" The woman finish playing bow and smiles.\"]}, \"v_Ie7DREiXp08\": {\"duration\": 161.01, \"timestamps\": [[0, 55.55], [54.74, 111.9], [116.73, 161.01]], \"sentences\": [\"A woman is seen speaking to the camera and pouring out liquids into a case.\", \" She then pulls contacts into the case and then places one in each eye.\", \" She holds up the case in the end followed by her putting the contacts back into the case.\"]}, \"v_AXA-G5DdNrU\": {\"duration\": 90.05, \"timestamps\": [[0, 12.16], [12.61, 23.41], [23.41, 64.38], [65.73, 72.49], [72.94, 81.04], [81.49, 90.05]], \"sentences\": [\"People raft down a rocky river.\", \" Suddenly, the boat turn over and all men fall in the water.\", \" Then, people  reach the shore, while a man climbs a rock.\", \" After, persons in a boat rescue a man in the water and recover the boat.\", \" two men stand in the shore next to a ladder.\", \" Rafters are still in the water waiting.\"]}, \"v_K-rEA43wOS0\": {\"duration\": 152.02, \"timestamps\": [[16.72, 128.46], [43.33, 66.13], [66.89, 76.01], [115.54, 128.46]], \"sentences\": [\"People play beer pong while other persons watch.\", \" People get happy when the ball get inside a cup.\", \" Then, a man throw a ball inside a cup, and a person drink the liquid in the cup.\", \" A man throw a ball inside a cup and people congratulates and hug the man.\"]}, \"v_6VNFwlzQiuc\": {\"duration\": 219.45, \"timestamps\": [[0, 55.96], [54.86, 219.45]], \"sentences\": [\"A person is seen speaking to the camera and walking into a tattoo shop, followed by a person getting tattooed by an artist.\", \" The man continues speaking to the camera while another is being tattooed in the background and continues speaking to the camera.\"]}, \"v_JKCwcCMAnxg\": {\"duration\": 207.98, \"timestamps\": [[0, 4.16], [4.16, 186.14], [60.31, 76.95], [93.59, 97.75], [110.23, 117.51], [141.43, 145.59], [160.15, 164.31], [186.14, 195.5], [195.5, 207.98]], \"sentences\": [\"We see a blue title card.\", \" A man and a woman begin dancing in a ballroom.\", \" They pause and the lady sweeps her leg.\", \" The man dips the lady.\", \" The lady slides to the ground.\", \" The lady does the splits.\", \" The man lifts the lady in the air.\", \" We switch and see people dancing in different locations.\", \" We see the blue ending screen.\"]}, \"v_fhXVqPPDjN8\": {\"duration\": 156.41, \"timestamps\": [[0, 68.82], [35.19, 117.31], [35.19, 156.41]], \"sentences\": [\"A man is seen dancing in a nightclub with two women around him.\", \" The three continue dancing with one another while others dance on the side.\", \" The people dance around one another while the camera captures their movements.\"]}, \"v_5RKzXZ-0xQ8\": {\"duration\": 14.4, \"timestamps\": [[0, 9.21], [9.21, 14.4]], \"sentences\": [\"A person paint nails to a woman using purple nail polish.\", \" A woman is looking down.\"]}, \"v_PQgydNnSggw\": {\"duration\": 169.48, \"timestamps\": [[0, 92.37], [93.22, 147.45], [147.45, 169.48]], \"sentences\": [\"A woman is seen sitting in a chair speaking and waving to the camera and looks into a mirror showing her and the camera man.\", \" A tattoo artist then steps into frame and begins tattooing a symbol on the girl's neck.\", \" In the end pictures of the girl's tattoo are shown.\"]}, \"v_ulJxGEx2r7o\": {\"duration\": 217.71, \"timestamps\": [[0, 41.37], [44.63, 217.71]], \"sentences\": [\"An intro leads to a small group of small children standing on a stage holding instruments.\", \" They begin playing the instruments while the camera zooms in out of each of them playing.\"]}, \"v_BZK8b0xCkB0\": {\"duration\": 218.87, \"timestamps\": [[0, 218.87], [30.64, 43.77], [43.77, 62.38], [62.38, 91.93], [91.93, 183.85], [182.76, 190.42], [194.8, 196.98], [200.27, 202.46], [201.36, 203.55], [214.49, 218.87]], \"sentences\": [\"A woman wearing a santa hat is talking.\", \" She puts Christmas lights onto the tree.\", \" She puts ribbon around the tree.\", \" She strings decorations around the tree.\", \" She puts bulbs on the Christmas tree.\", \" She puts small stuffed animals on the tree.\", \" She puts candy canes on the tree.\", \" She puts a star on the tree.\", \" The star falls off the tree.\", \" She puts cotton underneath the tree.\"]}, \"v_rkgeHZjFskY\": {\"duration\": 173.43, \"timestamps\": [[0, 10.41], [10.41, 24.28], [24.28, 97.12], [138.74, 173.43], [97.12, 138.74]], \"sentences\": [\"A young girl in a room talks to a camera and shows off her hair style.\", \" She then goes back to before it was braided and combs it out, sectioning it off.\", \" She then takes two sections and intertwines them, and grabs more lengths of hair as she goes down the braid.\", \" She then tucks the braid to the side and grabs lengths of hair to secure it to the side and incorporates lengths from the back of her hair.\", \" Her hair is succesfully braided and she shows off the finished look.\"]}, \"v_pbeQcGC3nXY\": {\"duration\": 121.23, \"timestamps\": [[0, 24.25], [24.25, 57.59], [56.98, 82.44], [82.44, 121.23]], \"sentences\": [\"A man in fencing gear begins to talk about fencing gear getting ready to talk about his fencing experiences.\", \" He gets dressed in his gear and goes to the studio for practice.\", \" He and another man practice with one another  while a timer is running.\", \" There is a certain stance and way you move your feet when you fence that helps with moving towards and from the opponet .\"]}, \"v_uCLUexLKpnU\": {\"duration\": 14.98, \"timestamps\": [[0, 3.52], [3.15, 9.36], [8.16, 14.38]], \"sentences\": [\"A camera pans all around a sky showing kites in the air.\", \" A person is then seen riding a kite board on the water.\", \" The person continues to ride around while the camera watches.\"]}, \"v_eeD2_hKG7zE\": {\"duration\": 74.33, \"timestamps\": [[0, 10.03], [10.41, 51.29], [50.91, 74.33]], \"sentences\": [\"A young girl is seen standing before a set of monkey bars and smiling while speaking to the camera.\", \" She then carries herself along the set of monkey bars and moves back and fourth on the play set.\", \" She makes her way back to the start and climbs down the ladder finally looking at the camera.\"]}, \"v_TXq9MO-dYhI\": {\"duration\": 121.48, \"timestamps\": [[0, 10.33], [10.93, 120.26], [120.26, 121.48]], \"sentences\": [\"A woman talks on front the blinds.\", \" Then, the woman plays four tam-tams, she mainly plays the tam-tam on front her.\", \" Then, the woman stops playing and smile.\"]}, \"v_28QW8P1x_LE\": {\"duration\": 192.56, \"timestamps\": [[0, 20.22], [21.18, 163.68], [164.64, 192.56]], \"sentences\": [\"A man and two women are doing an aerobic dance inside a building.\", \" They perform several moves, speeding up with time.\", \" They stop, clapping and wiping the hair out of their faces when they are done.\"]}, \"v_tSR4Pj_muN0\": {\"duration\": 47.97, \"timestamps\": [[0, 5.52], [1.92, 9.11], [9.35, 17.75], [17.99, 46.53], [46.77, 47.97]], \"sentences\": [\"A man is walking in a field.\", \" We see his back and see blood and a harness in his skin and another two men one who has the skin harness.\", \" We see the men climbing and standing on a crane high in the sky.\", \" The men with the skin harness jump off a crane high above a forest.\", \" We see the ground below.\"]}, \"v_Relgb880pRI\": {\"duration\": 127.46, \"timestamps\": [[0, 32.5], [33.14, 91.13], [91.13, 127.46]], \"sentences\": [\"A cartoon of an archway is shown and leads into a man placing tomatoes onto a plate.\", \" He puts onions and other ingredients onto a plate and cuts up several more ingredients.\", \" He places the final ingredients into the bowl while talking to the camera and pans out on the meal he made.\"]}, \"v_cKFTf1vZQOw\": {\"duration\": 127.73, \"timestamps\": [[0, 32.57], [33.21, 98.35], [98.35, 127.73]], \"sentences\": [\"Two male kids are outside on a driveway talking to one another.\", \"Once they have finished their conversation,they begin skateboarding down the road into an open park.\", \"The two boys arrive at their destination stop and talk then one takes off and the other boy follows him and they keep rollerblading.\"]}, \"v_WXMb7XF6k8o\": {\"duration\": 236.47, \"timestamps\": [[0, 16.55], [17.74, 87.5], [92.22, 203.37], [205.73, 236.47]], \"sentences\": [\"A series of women are shown in close up of their faces.\", \" A stylist is standing beside a girl seated in his chair.\", \" He gives instructions on how to style her hair.\", \" He uses a dryer to blow her hair, then clips it.\"]}, \"v_v13d7g_uUXM\": {\"duration\": 167.49, \"timestamps\": [[0, 82.07], [73.69, 167.49]], \"sentences\": [\"A man is seen walking into frame bending down to grab a set of weights and begins to lift himself upward.\", \" He then lifts the weight up over his shoulder several times while jumping to give himself momentum.\"]}, \"v_FBqtQ3HCk48\": {\"duration\": 181.02, \"timestamps\": [[0, 31.68], [32.58, 44.35], [44.35, 175.59], [175.59, 181.02]], \"sentences\": [\"A man carves a pumpkin and a piece of ice,  then the man holds a carved pumpkin and put it on a bench.\", \" A young man takes pictures of artistic ice sculptures, while a person carves a piece of ice in the street.\", \" The man shows how to carve a pumpkin using carving tools to make faces.\", \" The carved pumpkins with scary faces and an ice sculptures are displayed in a room.\"]}, \"v_EDEFxLnf_Wk\": {\"duration\": 32.63, \"timestamps\": [[0.16, 1.79], [2.12, 29.2], [29.53, 32.63]], \"sentences\": [\"The credits of the clip are shown.\", \" People are spinning on exercise bikes.\", \" The credits of the video are shown.\"]}, \"v_OOKHi7EBNKk\": {\"duration\": 173.52, \"timestamps\": [[0, 32.97], [32.1, 51.19], [51.19, 62.47], [62.47, 96.31], [96.31, 151.83], [151.83, 173.52]], \"sentences\": [\"An individual wearing face covering drags an inner tube type device along the snow, surrounded by other people doing the same thing.\", \" The individual walks towards another individual wearing a red jacket.\", \" The individual hands the rein for the device to the person in the red jacket and sits on the device.\", \" The person in the red jacket pulls the device downhill and the first individual rides down the slope.\", \" The first individual dismounts and resumes pulling the device.\", \" The individual pulls the device along some sort of covered walkway with a moving floor.\"]}, \"v_ryZuSiZNN2o\": {\"duration\": 80.11, \"timestamps\": [[0, 3.6], [3.2, 38.05], [38.45, 80.11]], \"sentences\": [\"A field of two teams are shown fighting over a lacrosse ball in the middle of a large green field.\", \"They then get up and continue playing across the large field.\", \"Shortly after,a small brawl begins in the middle of the pool and a man in a black uniform nose begins to bleed and the game is at a halt and replays are shown.\"]}, \"v_Zgiq5MK8fQ8\": {\"duration\": 30.05, \"timestamps\": [[0.15, 9.77], [8.86, 22.23], [16.98, 29.3]], \"sentences\": [\"A woman is seen standing next to a frozen car while looking away from the camera.\", \" The woman then begins using a scraper to scrape off the sides.\", \" The woman continues scraping the car and looking off into the distance.\"]}, \"v__IlyE43ZUH8\": {\"duration\": 230.34, \"timestamps\": [[0, 9.21], [10.37, 71.41], [73.71, 160.09], [163.54, 230.34]], \"sentences\": [\"An ad for Beckon Call services appears.\", \" A man is standing in a backyard speaking.\", \" He picks up several window screens while he talks about them.\", \" He adds them to the stack and walks away.\"]}, \"v_ll4HKY9ZBOA\": {\"duration\": 125.46, \"timestamps\": [[0, 3.14], [3.76, 125.46], [13.8, 125.46]], \"sentences\": [\"A marching band stands ready on a street while an audience watches.\", \" The conductor conducts the band.\", \" The band plays on the street while the audience watches.\"]}, \"v_Tb875ldI6AY\": {\"duration\": 154.95, \"timestamps\": [[0, 40.29], [42.61, 116.21], [105.36, 148.75]], \"sentences\": [\"A young man is seen speaking to the camera and begins holding a cigarette.\", \" The man takes a puff from the cigarette while still speaking to the camera.\", \" The man continues smoking while looking off and speaking to the camera.\"]}, \"v_AHXcJCpvkAQ\": {\"duration\": 81.34, \"timestamps\": [[0, 21.96], [20.74, 65.48], [61.01, 81.34]], \"sentences\": [\"A title screen leads into two women stepping up and down on a block.\", \" They perform several different exercises on the beam and move together in a synchronized motion.\", \" The girls spin round and round then hope back up and then down on the beam.\"]}, \"v_VmD2k_dtddc\": {\"duration\": 80.91, \"timestamps\": [[0, 11.33], [14.16, 36.41], [37.22, 80.91]], \"sentences\": [\"Two teams are on a field with referees.\", \" They are involved in a game of lacrosse.\", \" They run across the field, trying to keep the ball out of the opponent's goal.\"]}, \"v_p-JFdMUWVvU\": {\"duration\": 36.29, \"timestamps\": [[0, 8.71], [8.17, 36.29]], \"sentences\": [\"An older man is seen standing before two pucks while another person pushes them along the ice.\", \" The man bends down several times and then glides along the ice with the pucks.\"]}, \"v_53tCYiyAyf0\": {\"duration\": 28.21, \"timestamps\": [[0, 7.9], [8.04, 21.58], [20.88, 26.94]], \"sentences\": [\"An intro leads into a man throwing darts onto a board.\", \" He looks closely off into the distance and continues throwing darts.\", \" The camera shows the board in the end and the man throwing it.\"]}, \"v_xfThpRE6bLc\": {\"duration\": 207.56, \"timestamps\": [[0, 204.45], [174.35, 204.45]], \"sentences\": [\"A few people attempt to surf in an ocean.\", \"  Sometimes they fall, but often the surfers do a great job.\"]}, \"v_38qpTblXDTw\": {\"duration\": 15.95, \"timestamps\": [[0, 0.48], [0.56, 14.52], [14.6, 15.95]], \"sentences\": [\"A woman sits on a riding lawnmower in the distance.\", \"  The woman drives the lawnmower towards the camera.\", \"  The woman begins to turn the mower at a fence corner.\"]}, \"v_cMndipw7_As\": {\"duration\": 109.97, \"timestamps\": [[0.55, 7.7], [7.7, 102.82], [23.09, 26.39], [36.84, 40.69], [41.24, 45.64], [77.53, 80.28], [80.83, 86.88], [104.47, 109.97]], \"sentences\": [\"The credits of the clip is shown.\", \" A person mends steel with a welding equipment.\", \" A person uses a hammer and a flat equipment to remove debris.\", \"  A person uses a flat equipment to remove melted steel debris.\", \" The person places two dumbbell shaped steel in opening that he is welding.\", \" A person uses a flat equipment to clean the welded opening.\", \" A person uses a flat equipment to move the dumbbell shaped steels and then removes them with his hand.\", \" The credits of the video is shown.\"]}, \"v_gmPoDbH-odg\": {\"duration\": 15.7, \"timestamps\": [[0, 11.3], [11.69, 12.17], [12.56, 15.7]], \"sentences\": [\"A woman hands from a red bar and does several arm pull ups.\", \" She then uncrosses her legs and jumps down with her hands at her side.\", \" A Life Fitness logo then flashes on the screen.\"]}, \"v_LxwKUIJdt_4\": {\"duration\": 86.56, \"timestamps\": [[0, 85.27], [3.46, 86.56]], \"sentences\": [\"A person is seen blow leaves around a yard using a leaf blower sitting on his back.\", \" The camera follows him as the man moves up and down the yard blowing leaves all around the area.\"]}, \"v_gOKkjA2yvGo\": {\"duration\": 54.15, \"timestamps\": [[3.52, 49.28], [3.52, 48.73], [49.82, 54.15]], \"sentences\": [\"A man is sitting on a cycle bike working out.\", \" A man is standing up next to him talking.\", \" A black and white logo comes onto the screen.\"]}, \"v_j0FMv4RDpEk\": {\"duration\": 195.23, \"timestamps\": [[0, 18.55], [21.48, 186.45], [21.48, 40.02], [87.86, 134.71], [187.42, 195.23]], \"sentences\": [\"The credits of the clip are shown.\", \" Men are working on a roof.\", \" A man is spraying the paste on the roof, a male is handing off the pieces, and a guy is adding the pieces to the pasted area on the roof.\", \" A person is spraying the paste on the roof pieces.\", \" The credits of the video are shown.\"]}, \"v_KX-vl2o8U1w\": {\"duration\": 180.58, \"timestamps\": [[0, 16.25], [9.93, 35.21], [29.8, 67.72], [61.4, 102.93], [96.61, 136.34], [131.82, 180.58]], \"sentences\": [\"A drummer is drumming, then the stick broke.\", \" A boy in blue shirt hit the drum, but the big drum keeps moving, then it fell.\", \" A boy with earphones is drumming and the stick got stuck in the instrument.\", \" The band is playing, while the man is singing, the drummer fell off the his chair.\", \" The marching band play their drums, then one of the drummers fell on the ground, a person came to help him.\", \" A drummer on stage fell of the stage.\"]}, \"v_lzQwtmUrSK4\": {\"duration\": 209.12, \"timestamps\": [[0, 15.68], [15.68, 209.12], [200.75, 209.12]], \"sentences\": [\"People are running around on dirt playing soccer.\", \" People are in an indoor arena playing soccer.\", \" People in the stands are applauding for them.\"]}, \"v_3am00ii0n-o\": {\"duration\": 213.13, \"timestamps\": [[0, 212.06], [39.43, 41.56], [50.08, 112.96], [57.54, 108.69], [118.28, 134.27], [149.19, 151.32], [154.52, 165.17], [190.75, 197.14], [206.73, 207.8], [209.93, 212.06]], \"sentences\": [\"A guy and a lady interact.\", \" The lady holds up papers and books.\", \" The guy claps and cheers.\", \" The lady plays a flute while looking down a the notes on the papers.\", \" The lady stops playing the flute and presents it.\", \" The guy plays a harmonica.\", \" The guy looks angry, and the lady look apologetic.\", \" The guy puts his head down.\", \" The guy and lady wave bye.\", \" The guy takes the flute from the lady and pretends to hit her on her chin.\"]}, \"v_u7dfBgc_SqU\": {\"duration\": 177.47, \"timestamps\": [[0, 30.17], [32.83, 177.47]], \"sentences\": [\"A woman is standing in the sunlight, posing and modeling for the camera.\", \" She shows off her natural hair, then demonstrates how to style it using a blow out.\"]}, \"v_xcDAjcRX93A\": {\"duration\": 85.96000000000001, \"timestamps\": [[0, 27.94], [27.08, 65.76], [68.34, 85.96]], \"sentences\": [\"A man is seen standing with his arms up and then begins a gymnasts routine.\", \" The man continues swinging around on the uneven bars and jumping off to finish.\", \" The man walks away while his score is shown and his routine is shown again in slow motion.\"]}, \"v_a_EkYuPdaJ0\": {\"duration\": 232.82999999999998, \"timestamps\": [[17.46, 33.76], [33.76, 68.68], [68.68, 126.89], [128.05, 132.71], [132.71, 169.96], [169.96, 221.19]], \"sentences\": [\"A man talks stand on front a fence of a backyard.\", \" Then, the man talks a person in a paint shop, and the person shows him tools in a showcase.\", \" After, the man shows the buttons of the painting machine in the backyard.\", \" After, the man puts blue tape on the side of the fence and covers a rail.\", \" Then, the man paint the fence with the hose of the machine while wearing a mask.\", \" The man continues explaining on front the machine and buckets of paint.\"]}, \"v_DjY-7jEpxZ0\": {\"duration\": 24.06, \"timestamps\": [[0, 11.19], [11.19, 24.06]], \"sentences\": [\"A group of kids are in a classroom like setting standing in a circle.\", \"In the middle of the circle,a woman is hitting a pinata wrapped in blue wall paper.\"]}, \"v_q8mReXud6fE\": {\"duration\": 29.05, \"timestamps\": [[0, 19.17], [0, 21.06], [18.01, 29.05]], \"sentences\": [\"little kid is jumping on dry leaves.\", \" woman is raking dry leaves on a yard.\", \" kid kneels and grabs a dry leaf to put it in the trash bin.\"]}, \"v_pKV8lrvbX6Q\": {\"duration\": 38.15, \"timestamps\": [[0, 5.53], [5.72, 30.14], [31.28, 38.15]], \"sentences\": [\"A little girl swings across the monkey bars on a play ground.\", \" She goes across each bar before jumping to the ground.\", \" She goes back to the beginning, and swings across the bars again.\"]}, \"v_pVehZjbud_M\": {\"duration\": 97.06, \"timestamps\": [[0, 10.19], [10.19, 92.69], [78.13, 97.06]], \"sentences\": [\"A lady plays with her hair.\", \" The lady brushes her hair.\", \" The lady brushes the bottom of her hair by stretching her arm upwards she brushes the top then the ends and finishes.\"]}, \"v_X-xQLFHZIOU\": {\"duration\": 139.0, \"timestamps\": [[0, 63.94], [63.24, 139]], \"sentences\": [\"a lot of people are sitting on stands on a bullring.\", \" bullfighters are holding red cloth nad running to a bull.\"]}, \"v_Ly21QMQ4kGA\": {\"duration\": 37.04, \"timestamps\": [[0, 9.44], [9.07, 22.04], [22.59, 37.04]], \"sentences\": [\"Several awards are pictured over a fire place and then moves to the wall on the left.\", \"A table of food is shown and the person recording grabs a cookie and leaves the room.\", \"The next room he enters,there are several people standing around playing beer pong and he proceeds to walk through the house.\"]}, \"v_yyvc2OSPx1Y\": {\"duration\": 181.51, \"timestamps\": [[0, 21.78], [28.13, 155.19], [159.73, 181.51]], \"sentences\": [\"A woman is shown in wal-mart, laughing and choosing earrings from a rack.\", \" She sits in a chair, and an employee shoots an earring into her lobe with a piercing gun.\", \" She cringes in pain as it enters her ear.\"]}, \"v_6TxGVSw6Ayw\": {\"duration\": 70.14, \"timestamps\": [[0, 7.72], [8.42, 70.14], [10.17, 70.14], [28.41, 46.29], [47.69, 70.14]], \"sentences\": [\"We see three separate intro screens.\", \" We see a man making shots in hockey with title screens in between.\", \" A man shoots a shot at hockey and makes it and we see a slow motion recap.\", \" The man takes another shot and makes it and we see a recap of that as well.\", \" We see the shot from above, and a recap.\"]}, \"v_FqlXey9KFZA\": {\"duration\": 49.55, \"timestamps\": [[0, 49.55], [28.24, 49.55], [42.12, 47.57]], \"sentences\": [\"A guy is operating a electric presser.\", \"  A man is whipping with a dark rug.\", \" The guy is gesturing at the machine's work.\"]}, \"v_xeFS0RuvVGA\": {\"duration\": 78.6, \"timestamps\": [[0, 77.42], [1.97, 33.4], [33.8, 77.42]], \"sentences\": [\"A group of boys play water catch with a yellow ball in an outdoor pool surrounded by a fence and tall trees and foliage.\", \"  A group of boys play catch in an outdoor pool with a yellow ball , throwing the ball to each other and and then throwing the ball out of the pool to an unseen party.\", \"  The ball is thrown back into the pool and the boys proceed to throw it back out again.\"]}, \"v_mi6wetIKq2w\": {\"duration\": 139.99, \"timestamps\": [[0, 8.4], [8.4, 21], [21, 63], [63, 92.4], [92.4, 105], [105.7, 116.2], [116.2, 130.19], [130.19, 139.99]], \"sentences\": [\"An intro filled with special effects of different screens coming together appear and the end result is a square sign that reads \\\"GETITSWEET GET IT SWEET 2014\\\" and the color them is white, pink, dark pink, and brown with the effect of chocolate dripping from the top portion of the sign.\", \" A batch of cinnamon roll cookies on a tray appear and a quick list of the ingredients appear along with the actual ingredients in different bowls.\", \" The ingredients are now shown being poured into a large clear bowl getting mixed up with a hand mixer, and instructions occasionally pop up on the screen.\", \"When the ingredients are thoroughly mixed the person flattens it between plastic, cools it, then puts it on a cutting board to roll it out, then adds sugar and cinnamon to the flat surface.\", \" The person then rolls it and puts it on a piece of saran wrap that's next to the cutting board then wraps the saran wrap around it, rolls it a little where the instructions say to cool it for 30 minutes.\", \" Once it's done being cooled it's removed,sliced on the cutting board, placed on a cooking sheet, and then cooked.\", \" The cooked products are then shown on white plates with a cup of coffee and the person picks it up and bites it.\", \"The last screen is a youtube promotion of the person's channel that has 2 small videos you can click on, and wording encouraging you to subscribe.\"]}, \"v_CzXF0CQn2Fk\": {\"duration\": 219.71, \"timestamps\": [[1.1, 219.71], [142.81, 143.91], [0, 219.71]], \"sentences\": [\"people are in a small room dancing doing a choreography.\", \" the man stops dancing and keep doing the choreography.\", \" man wearing red shorts and grey shirt leading the choreography in front of the people in the room.\"]}, \"v_Z-gDuGMpClo\": {\"duration\": 187.57, \"timestamps\": [[0, 5.63], [5.63, 173.5], [6.56, 20.63], [58.15, 60.02], [75.03, 79.72], [128.49, 135.99], [147.24, 165.06], [173.5, 187.57]], \"sentences\": [\"A window on a car is tolled down and a shirtless man walks to the are.\", \" We see shirtless men in small tight underwear washing cars.\", \" The men walk in the parking lot in a line with only underwear on.\", \"  A man shakes his wet hair.\", \"  A man washes another man's butt.\", \" A man wipes the water back and looks at the camera.\", \" Men do dances in a line and scenes of washing the car.\", \" We see the ending title screen.\"]}, \"v_Rc_pWU_3WLk\": {\"duration\": 31.53, \"timestamps\": [[0, 31.53], [12.46, 24.12], [19.55, 24.12], [24.12, 31.53]], \"sentences\": [\"Two sumo wrestlers stand in an arena.\", \" One knocks the other one out.\", \" The winner stands tall on the arena.\", \" The crowd looks at the winner.\"]}, \"v_WwDGutCfElc\": {\"duration\": 106.16, \"timestamps\": [[13.27, 49.37], [49.37, 95.55], [95.55, 101.92]], \"sentences\": [\"The video shows a man in glasses and headphones, wearing a brown hat and shirt doing a tutorial on how to play a PVC flute.\", \" He takes the flute in his hands and begins playing by moving his fingers along the holes as he blows into the flute.\", \" He continues playing the flute till he finishes the tune.\"]}, \"v_BlfFKVGQbi8\": {\"duration\": 66.29, \"timestamps\": [[7.96, 58.01], [9.61, 21.21], [20.88, 27.18], [27.51, 59]], \"sentences\": [\"A man plays many games of shuffleboard in a room occupied by other people and many other shuffle boards.\", \"  A man in a collared shirt and glasses plays shuffleboard with metal pucks and a long wooden shuffleboard in front of a lit scoreboard in a room.\", \"  The man puts paper towels over his eyes and under his glasses to absorb sweat from the intensity of the shuffleboard game.\", \"  The man continues to play shuffleboard with a few onlookers in a room with a final visual shot of all but one of the pucks off of the shuffleboard.\"]}, \"v_OzjjQ4SZ8PY\": {\"duration\": 154.18, \"timestamps\": [[0, 12.33], [16.19, 134.91], [137.99, 154.18]], \"sentences\": [\"A woman wearing scuba diving gear is under the water.\", \" She explores the ocean floor, looking at the fish and wildlife as a man swims behind her.\", \"They give ok signals to the person with the camera.\"]}, \"v_Yr6Oyltj6Eo\": {\"duration\": 52.2, \"timestamps\": [[0, 20.62], [18.79, 52.2]], \"sentences\": [\"An athletic woman is shown jumping in slow motion over a pole, followed by several more women attempting the same jump.\", \" Several more women follow behind performing the jump while the camera captures them in slow motion.\"]}, \"v_0tJ7eW6TKKM\": {\"duration\": 159.24, \"timestamps\": [[1.59, 152.87], [3.98, 152.87], [117.84, 152.87]], \"sentences\": [\"The people are shown slowly jogging in this marathon.\", \" There is only one man who juggles white balls in his hands while jogging backwards throughout the whole thing.\", \" In the end, the number of people lessens and there is just one person running and the man who juggles balls.\"]}, \"v_SLfZUqfyfjs\": {\"duration\": 158.39, \"timestamps\": [[0, 10.3], [11.09, 30.89], [30.89, 158.39]], \"sentences\": [\"A man is outside trying to shovel off snow off of their windshield.\", \"The man then goes inside and starts talking.\", \"Once finished,he walks outside from his garage and test the product of the IceScreen.\"]}, \"v_uy7WAwrrNiA\": {\"duration\": 164.1, \"timestamps\": [[0, 164.1], [84.51, 149.33], [150.97, 164.1]], \"sentences\": [\"People are standing on a field looking up at kites in the sky.\", \" A kite is shown in the sky by a tree.\", \" A boy chases after the kite and catches is.\"]}, \"v_KxWvKN_kGMY\": {\"duration\": 106.67, \"timestamps\": [[0.53, 45.87], [27.73, 99.74]], \"sentences\": [\"Various pictures show people bring canoes off a truck and loading them into the water.\", \" The people are then seen fishing as well as riding down the river shown in several pictures.\"]}, \"v_WTOTYZOu3MQ\": {\"duration\": 128.76, \"timestamps\": [[0, 33.48], [17.38, 57.3], [52.15, 128.76]], \"sentences\": [\"The barefoot man serve the ball but missed it.\", \" The man served the ball and hit the wall but it just bounced so low that the man can't hit it.\", \" The man chase after the ball picke it up and hit, then a shirtless man came up to him and teach him how to serve the ball.\"]}, \"v_eS445rQ9SBo\": {\"duration\": 120.09, \"timestamps\": [[0, 2.4], [2.4, 27.62], [27.62, 34.23], [34.23, 57.64], [57.64, 59.45], [59.45, 87.07], [87.07, 115.89], [115.29, 120.09]], \"sentences\": [\"A woman is smiling at the camera.\", \" The woman takes an iron and starts ironing a white shirt in small circular patterns.\", \" The woman uses both hands to push the iron.\", \" She resumes ironing with one hand in the same spot.\", \" The woman inspects the star on the shirt.\", \" The woman then resumes ironing the pattern.\", \" The woman peels the paper away from the pattern and then resumes ironing.\", \" The woman holds up the the shirt after she is done.\"]}, \"v_Gl8HTsP7Jfk\": {\"duration\": 150.09, \"timestamps\": [[0, 34.52], [32.27, 150.09]], \"sentences\": [\"A boy speaks to a camera while holding a lacrosse stick and hitting balls into a net.\", \" The boy throws several balls into the net over and over again hitting directly into the net.\"]}, \"v_I9HV59QQkNw\": {\"duration\": 6.39, \"timestamps\": [[0, 3.93], [4.02, 6.39]], \"sentences\": [\"A man is sitting on a couch, drinking a beer from a bottle.\", \" He drops the bottle from his mouth, smiling.\"]}, \"v_pG0uYjcjBR8\": {\"duration\": 175.21, \"timestamps\": [[20.15, 69.21], [20.15, 67.46], [73.59, 78.84], [80.6, 91.11], [91.11, 96.36], [99.87, 125.27]], \"sentences\": [\"People are standing around in a circle.\", \" Two people begin fighting in the circle.\", \" A man is doing flips outside on the grass.\", \" They continue to flight inside the circle.\", \" A man is standing outside talking in front of a street.\", \" A man does several back flips on the grass.\"]}, \"v_u4nL6NXfsak\": {\"duration\": 60.63, \"timestamps\": [[6.97, 53.35], [6.97, 21.22], [25.46, 53.05]], \"sentences\": [\"A woman stands talking to the camera, with a dog in front of her.\", \"  The woman holds the dog's front leg as she talks.\", \"  The woman brushes the dog with a blue brush.\"]}, \"v_B_NQ_U2JEp4\": {\"duration\": 142.13, \"timestamps\": [[0, 9.95], [12.08, 33.4], [34.82, 142.13]], \"sentences\": [\"A ad for premier packaging appears.\", \" A woman is standing in an office in front of a basket filled with small gifts.\", \" She shows how she used cellophane and a hair dryer to shrink wrap the gifts in the basket and keep the safe and presentable.\"]}, \"v_r1v5fEOypSM\": {\"duration\": 86.63, \"timestamps\": [[1.3, 17.33], [18.63, 83.17], [79.7, 86.63]], \"sentences\": [\"A person rides a wake board behind a boat through the choppy water.\", \" The wake boarder jumps over the wake of the boat and does flips.\", \" The wake boarder does a final jump and falls into the water.\"]}, \"v_L35c6QI1l_0\": {\"duration\": 105.37, \"timestamps\": [[0, 9.48], [8.43, 16.86], [16.86, 23.71], [23.71, 33.19], [33.72, 87.46], [87.46, 105.37]], \"sentences\": [\"A scene of sand dunes leading to a beach shoreline.\", \" A girl in a blue blouse walks and poses in the sand.\", \" A man wearing a safari hat leads a group of camels with riders in a single file.\", \" The camera pans a close up of the camels lying in the sand with their riding saddles on.\", \" A rider captures the view of the sand dunes leading to the ocean.\", \" The camel caravan arrives to a camp on the beach.\"]}, \"v_9N1525JmqZQ\": {\"duration\": 144.26, \"timestamps\": [[3.61, 51.21], [44, 98.82], [87.27, 139.93]], \"sentences\": [\"A close up of a fireplace is seen with the camera moving around the front.\", \" The camera zooms in on the pit and shows a man kneeling own in front.\", \" The man lays plaster out on the front and begins putting tiling down over the plaster.\"]}, \"v_q7Pp1TAgv3I\": {\"duration\": 226.4, \"timestamps\": [[0, 101.88], [90.56, 226.4]], \"sentences\": [\"The video pans into several shots of people performing arm wrestling matches and screaming afterwards.\", \" Many people are seen playing with one another and screaming to the crowd after their performance.\"]}, \"v_TwQQPCjT_A4\": {\"duration\": 53.5, \"timestamps\": [[0, 3.21], [3.74, 52.16], [34.51, 52.43]], \"sentences\": [\"A man and a woman are sitting behind a table.\", \" Players are playing soccer on dirt, outside.\", \" Fans and players cheer or celebrate.\"]}, \"v_Uru0CastJqU\": {\"duration\": 54.61, \"timestamps\": [[0, 10.38], [10.38, 54.61]], \"sentences\": [\"A person is seen walking forward and jumping up and down and diving in a pool.\", \" The same person is shown several more times performing various dives off a high board while the camera captures him from several angles.\"]}, \"v_1GXQLnTalcg\": {\"duration\": 110.03999999999999, \"timestamps\": [[1.65, 99.59], [14.31, 22.56], [25.86, 33.01], [34.66, 72.08], [92.98, 101.24]], \"sentences\": [\"A video tutorial plays with a woman talking in the background about how to brush your teeth.\", \" She lists out the tools you need and steps to brush.\", \" A man opens a bottle and puts toothpaste on it.\", \" He begins brushing his teeth following the woman's instructions.\", \" The man rinses his mouth out with water and smiles with the woman's voice.\"]}, \"v_d1JA5V3hO3Q\": {\"duration\": 120.0, \"timestamps\": [[0, 14.4], [14.4, 58.2], [58.8, 91.8], [90.6, 101.4], [102, 113.4], [113.4, 120]], \"sentences\": [\"A man talks in a blue room then sprays a toy car and pretends to wash it.\", \" We see a title screen and people in suits wash cars as a joke.\", \" A man and a small boy with high powered hoses wash cars followed by cheerleaders.\", \" We see a black van with people getting out and a man in a top hat touch the car.\", \"  The people get in the black van and drive away adn teh car owners stand on the street.\", \" We then see the ending scene.\"]}, \"v_FsQWaEejutU\": {\"duration\": 19.95, \"timestamps\": [[0, 13.76], [13.66, 16.95], [16.95, 19.95]], \"sentences\": [\"A man is smoking a pipe and blowing smoke rings.\", \"  The man uses profanity and flips the camera off.\", \"  Another man is standing by watching him.\"]}, \"v_ZwDfAhQVKLQ\": {\"duration\": 55.82, \"timestamps\": [[0.84, 20.1], [16.19, 38.8], [39.35, 53.31]], \"sentences\": [\"A person is seen walking into frame in a dark room and walks down a long set of stairs.\", \" A man is seen in the corner moving back and fourth on exercise equipment.\", \" A woman then speaks to the man as he continues rowing and showing a close up of the machine.\"]}, \"v_aEyTdUOp-qs\": {\"duration\": 29.1, \"timestamps\": [[0, 3.64], [3.64, 14.84], [14.84, 29.1]], \"sentences\": [\"A man walks up with a mop and bucket.\", \" He takes them up out of the bucket and begins to mop the floor.\", \" After a moment she begins to pretend that he is dancing with the mop.\"]}, \"v_jfnFrt9nfSo\": {\"duration\": 170.6, \"timestamps\": [[11.09, 32.41], [56.3, 71.65], [145.01, 170.6]], \"sentences\": [\"A man in a blue shirt is playing basketball on a court.\", \" He shoots at the hoop and misses it.\", \"  A person in a white shirt is standing behind them on a tennis court.\"]}, \"v_CCL8kqQMCRw\": {\"duration\": 37.06, \"timestamps\": [[0, 12.04], [12.97, 16.31], [18.71, 37.06]], \"sentences\": [\"A young boy attempts to break open a pinata at his birthday party inside a garage.\", \" Another boy nearly walks into the range of the boy's stick but is saved by an adult.\", \" The boy continues bashing the pinata before taking a break and handing the stick to another boy.\"]}, \"v_M-IRMq2DmY0\": {\"duration\": 15.67, \"timestamps\": [[0, 15.67], [0, 4.08], [4.08, 15.05]], \"sentences\": [\"A brunette woman is sitting in a bubble bath with one leg out shaving it with a pink razor.\", \" The woman goes up one stroke of the razor and begins again.\", \" She repeats this process shaving up the leg and beginning again a few times around her leg.\"]}, \"v__4wEUsTft44\": {\"duration\": 113.89, \"timestamps\": [[0, 14.81], [14.81, 46.13], [46.13, 80.86], [80.86, 113.89]], \"sentences\": [\"In a blue room two men are using tools and fixing up the carpet.\", \" It seems like they just put in new carpet and now they are making sure it is held down correctly.\", \" They use a nail gun of some type to nail the ends of the corner.\", \" One of the men walks around checking to see if anything is missed.\"]}, \"v_ZLXhlWhrkno\": {\"duration\": 235.22, \"timestamps\": [[0, 7.06], [7.06, 50.57], [50.57, 54.1], [75.27, 87.03], [88.21, 149.36], [147.01, 164.65], [162.3, 223.46], [225.81, 235.22]], \"sentences\": [\"We see a clearing in the woods.\", \" We zoom in on a buck walking in the woods.\", \" The buck stops and looks left, then right.\", \" The buck is drinking from a puddle the runs off startled.\", \" The buck stands in the clearing.\", \" A man is working with a bow while another films the animal.\", \" The hunter shoots the animal with a bow and it dies slowly.\", \" The hunter is photographed with the dead animal.\"]}, \"v_eCd8x8KqxKQ\": {\"duration\": 56.1, \"timestamps\": [[0.56, 22.16], [17.67, 53.3]], \"sentences\": [\"Several shots of a casino are shown as well as people getting passes and walking around the inside.\", \" The camera pans around several tables of games being played as well as slot machines and people playing with one another.\"]}, \"v_ISJodiRZ_uo\": {\"duration\": 130.85, \"timestamps\": [[0, 3.93], [8.5, 30.75], [32.71, 47.76], [50.38, 69.35], [64.11, 100.75], [105.33, 130.84]], \"sentences\": [\"A girl with braided hair asks a worker at an equestrian center some questions.\", \" The woman responds and talks about horse care.\", \" The girl brushes the horse's mane.\", \" The two continue going over horse care.\", \" The girl and woman both work on brushing techniques.\", \" The woman brushes the horses tail is lots of care as the girl watches.\"]}, \"v_QPxiOzXkUFM\": {\"duration\": 210.07, \"timestamps\": [[0, 6.3], [6.3, 28.36], [28.36, 60.92], [60.92, 209.02]], \"sentences\": [\"man is sitting on a boat in a calm lake.\", \" car is being driven in a highway with cars standing on the sides.\", \" photo of a iver is shown and he car going through the haighway and arriving to a lake.\", \" people are in boat paddling in the river and arriving to a camp on pier.\"]}, \"v_AjohJX4RedM\": {\"duration\": 61.35, \"timestamps\": [[5.52, 13.5], [13.8, 19.02], [19.32, 43.25], [43.56, 47.85], [48.16, 55.52], [55.83, 60.43]], \"sentences\": [\"A woman is sitting on a rowing machine.\", \" The woman places her feet into the straps of the rowing machine.\", \" The woman holds onto the rowing cables and rows.\", \" The woman stops and demonstrates the motor area of the machine.\", \" Back sitting on the rowing machine, she rows one more time and places the cables down.\", \" The woman removes her feet from the straps.\"]}, \"v_C4QrTmNDADY\": {\"duration\": 235.68, \"timestamps\": [[5.89, 108.41], [87.2, 232.15]], \"sentences\": [\"A man is seen laying on the floor and begins demonstrating how to properly perform dance moves as well as the wrong way to perform them.\", \" The man continues moving all around the floor and leads into several clips of people performing the move.\"]}, \"v_dXTfrVz9A9o\": {\"duration\": 110.75999999999999, \"timestamps\": [[6.09, 24.92], [25.47, 37.1], [37.66, 70.89], [73.1, 97.47]], \"sentences\": [\"A man cleans the snow with a self lifted shovel that has a rod to impulse up the shovel.\", \" The man puts the shovel in the snow and it lifts and throws snow.\", \" The man shovel heavy hardened snow from the ground effortlessly.\", \" The person shows the shovel that has behind a weight lifter.\"]}, \"v_ZG4ApSk5iKw\": {\"duration\": 147.75, \"timestamps\": [[0, 147.75], [36.2, 49.5], [57.62, 147.75], [115.98, 147.75]], \"sentences\": [\"A man is doing various tasks while doing crunches.\", \" He stops and talks to the camera.\", \" He raises the back on his work out machine and starts doing crunches again.\", \" He sits up and continues talking to the camera.\"]}, \"v_MMnTMB6AmuU\": {\"duration\": 179.44, \"timestamps\": [[3.59, 7.18], [7.18, 164.19], [25.12, 26.92]], \"sentences\": [\"A woman stands up and starts jump roping.\", \" The rest of the women stand up and join her jump roping.\", \" They do a hand stand on the ground in front of them.\"]}, \"v_Lv6ypQZWIEg\": {\"duration\": 118.05, \"timestamps\": [[0, 3.54], [4.72, 8.26], [9.44, 40.73], [41.91, 47.81], [48.99, 64.34], [70.24, 85], [85.59, 95.62], [96.8, 118.05]], \"sentences\": [\"A young child walks across some sand carrying equipment around her waist.\", \" While on a school field, she throws a stick.\", \" Back on the sand, she continues walking with the equipment attached to her waist.\", \" She throws a pebble into the beach.\", \" On a school track, she throws a stick.\", \" She throws another stick in a grassy field, where her coaches watch on.\", \" A man gives her a medal.\", \" In a grassy field, she throws a stick.\"]}, \"v_MXbwIfqSq_Q\": {\"duration\": 227.02, \"timestamps\": [[0, 45.4], [44.27, 163.46], [157.78, 227.02]], \"sentences\": [\"A picture of a man is shown and then drawings of human vertebrae.\", \" The man in gray out is standing in a room and started to rotate his hands forward and backward.\", \" The man is swaying side to side and move his arms in front of him.\"]}, \"v_V9ktV85lA9E\": {\"duration\": 88.96000000000001, \"timestamps\": [[0, 12.01], [13.34, 39.59], [40.47, 80.06], [80.06, 88.96]], \"sentences\": [\"A man is standing in front of a cat who keeps walking on his wrapping paper.\", \" The man pushes the cat down on the paper and folds it around the cat.\", \" He then tapes the paper onto the cat, leaving only the head sticking out.\", \" He then places a bow on the cat's head.\"]}, \"v_S1bEYnNyLZE\": {\"duration\": 57.38, \"timestamps\": [[0, 55.08], [11.19, 45.61], [22.66, 56.23]], \"sentences\": [\"A mother tries to brush a baby's teeth.\", \"  The baby takes the toothbrush and tries herself.\", \"  The baby spits out some of this toothpaste but keeps trying.\"]}, \"v_2O-TyeSMueg\": {\"duration\": 221.39, \"timestamps\": [[0, 13.28], [13.28, 19.93], [21.03, 24.35], [24.35, 46.49], [46.49, 116.23], [116.23, 178.22], [178.22, 212.54], [212.54, 221.39]], \"sentences\": [\"A group of people ride on a boat to Catalina Island.\", \" A man wearing a grey t-shirt films himself using a selfie stick while riding on a boat.\", \" The group of people on the boat are dressed in scuba diving gear.\", \" A man in scuba gear enters the water while filming himself while holding a selfie stick.\", \" The diver films himself while diving underwater.\", \" The ddiver films a school of fish a nd bright yellow tropical fish.\", \"The diver cameraman walks backwards onto steps leading out of the water.\", \" A group of divers dressed in street clothes ride in a golf cart.\"]}, \"v_kq7KVmvkYPc\": {\"duration\": 149.89, \"timestamps\": [[0, 14.24], [19.49, 90.68], [92.93, 127.4], [129.65, 149.89]], \"sentences\": [\"A black screen advertises the video.\", \" A man is shown lying down while someone shaves his beard.\", \" The blade is shown very close to the skin as the man shaves him carefully, rinsing between scrapings.\", \" The screen fades to black as the man finishes the shaving.\"]}, \"v_sI7qq85QaA0\": {\"duration\": 78.28, \"timestamps\": [[3.52, 74.75], [5.87, 8.22]], \"sentences\": [\"Two males play table tennis in a small room.\", \" Another man walks in the background.\"]}, \"v_kbK-9Me0BnA\": {\"duration\": 90.88, \"timestamps\": [[0, 1.82], [1.36, 16.81], [16.81, 35.44], [35.9, 51.35], [51.8, 74.52], [74.52, 90.88]], \"sentences\": [\"A group of women are standing around as one of them is on a camel .\", \"The camel lifts up an the trainers and other friends stare on.\", \" They seem to be having a great time as the camera pulls back to show them all.\", \" They move ahead with the camel very slowly an the lady riding it waves.\", \" The video then cuts, showing the camel come to a stop before dropping down to the ground to let the woman off.\", \" She pets it and the video ends.\"]}, \"v_U-ApHGUtLMA\": {\"duration\": 67.62, \"timestamps\": [[0, 22.65], [23.33, 24.34], [24.68, 33.13], [52.07, 64.24], [65.25, 66.6]], \"sentences\": [\"Guys are standing around near a stall.\", \" A guy horseback riding chases a cattle.\", \" The guy lassoes the cattle and gets off his horse to tie up the cattle's legs.\", \" Two men remove the rope around the cattle's neck and legs.\", \" The cattle rises and runs away.\"]}, \"v_8xYzQMbI5fM\": {\"duration\": 90.74, \"timestamps\": [[3.18, 20.42], [20.87, 46.73], [47.64, 80.76], [80.76, 90.74]], \"sentences\": [\"A person is seen making marks on a paper using a tool as well as a pencil.\", \" He then screws the tools in place of the holes and the camera pans down the finished area.\", \" He then wipes down the area, measures out more area, and then rolling the paper down over a tool.\", \" Finally he takes a sharp object and runs it all along the paper.\"]}, \"v_kRMskyrrRcA\": {\"duration\": 49.09, \"timestamps\": [[0, 6.38], [6.63, 29.21], [29.21, 30.19], [37.06, 41.72], [43.44, 46.14]], \"sentences\": [\"A person in a holding a Rubik's Cube.\", \" The person starts to solve the Rubik's Cube.\", \" The person places the solved Rubik's Cube on the desk and hurriedly click something.\", \" The person shows his computer screen.\", \"  The person picks up the Rubik's Cube and shows each face of the solved Rubik's Cube.\"]}, \"v_rC24UspQv14\": {\"duration\": 228.56, \"timestamps\": [[0, 49.14], [16, 49.14], [40, 86.85], [77.71, 228.56]], \"sentences\": [\"The boy is standing under the tree with blindfold thing to hit the pinata but missed it.\", \" A man came up to him and assist him, the boy hit the pinata once.\", \" The man rotate the little girl and then let walk a little and the girl hit the pinata.\", \" A young man hit the pinata ad the kids are lined up to take their turns to hit the pinata.\"]}, \"v_qcaaF0SqVss\": {\"duration\": 48.93, \"timestamps\": [[0, 11.74], [3.67, 19.81], [13.7, 48.93]], \"sentences\": [\"A wrestler in maroon brief is  provoking the black man.\", \" The black man attacked the other wrestler but he was knocked down.\", \" The wrestler with maroon brief carried the black man and slam him on the floor.\"]}, \"v_KNpeiKm3xyM\": {\"duration\": 78.16, \"timestamps\": [[0, 11.33], [10.16, 17.98], [17.59, 70.34], [22.28, 50.02], [43.38, 61.35], [59.4, 78.16]], \"sentences\": [\"There's a man sitting with the Olympics logo behind him, talking about sports.\", \"  A group photograph of a many people of different age groups is shown.\", \" There are some people playing beach volley ball in the sand on a sunny day with several people watching them.\", \" One of the players hits the ball to his opponent by punching it with his fist.\", \" Another player returns the ball by kicking it across the net.\", \" The players continue playing the game by punching the ball across the net.\"]}, \"v_8KxL1itwI3Q\": {\"duration\": 188.87, \"timestamps\": [[0, 10.39], [10.39, 28.33], [28.33, 60.44], [60.44, 91.6], [91.6, 107.66], [107.66, 117.1], [117.1, 129.38], [130.32, 160.54], [160.54, 188.87]], \"sentences\": [\"An open field is covered in snow and then suddenly a large bear appears on a table and is then put in a box.\", \"Martha Stewart then begins taping the box.\", \"The box is then placed on top of the counter and wrapping paper is put on both ends to about six inches up the box.\", \"More wrapping paper is then pulled out and wrapped around the now covered box in the center.\", \"After being taped,several red glitter bows are placed on top of the wrapping paper.\", \"On the counter,appears several more rows of rapping paper and tubes.\", \"The socks are then placed in a tube and covered in the silver wrapping paper.\", \"The woman then takes a circular shaped object and traces it with a pencil and makes squiggles in the middle of it.\", \"After they are cut out,they are placed on the end of the tubes and stacked together to give the illusion of fire wood.\"]}, \"v_bKEvJveN6k4\": {\"duration\": 95.13, \"timestamps\": [[0, 94.66], [2.38, 44.24], [44.24, 93.71]], \"sentences\": [\"A group of kids are throwing balls at one another in a bouncy room where the floors are inflatable bounce platforms.\", \"  The children on the right side of the room throw balls at the children on the left side of the room as balls come flying onto their side of the mat in an effort to hit them.\", \"  The children hurl and dodge with one child in a blue t-shirt retreating into the far right corner of the bounce room to try to avoid a ball which comes hurling at him from the other side.\"]}, \"v_zW_8T8w7304\": {\"duration\": 199.55, \"timestamps\": [[0, 107.76], [83.81, 199.55]], \"sentences\": [\"A young child is seen mopping a floor with a mop and moving around all areas of the room.\", \" He stops to play with the mop a bit and pushes a box back under a stand.\"]}, \"v_a68k87VXX1c\": {\"duration\": 126.71, \"timestamps\": [[0, 126.71], [65.89, 70.33], [122.91, 126.71]], \"sentences\": [\"A woman in a black shirt is dancing in a room.\", \" A small dog on the floor next to her watches.\", \" She claps her hands together at the end.\"]}, \"v_45Bscg4Qe-I\": {\"duration\": 226.07, \"timestamps\": [[0, 53.13], [92.69, 226.07]], \"sentences\": [\"A group of people go to a bowling alley and fail hilariously.\", \"  A woman talks to the pins and figures out how the pins are set up and replaced.\"]}, \"v_XptFota2__4\": {\"duration\": 194.89, \"timestamps\": [[0, 113.03], [121.8, 194.89]], \"sentences\": [\"A small group of people are seen sitting around a table speaking to one another while using a hookah and vapor pen at the same time.\", \" The men continue smoking and looking into the camera when one starts showing off his body and panning around the room.\"]}, \"v_AItKK-a8eEI\": {\"duration\": 237.38, \"timestamps\": [[0, 4.75], [7.12, 46.29], [47.48, 58.16], [58.16, 110.38], [111.57, 118.69], [118.69, 192.28], [192.28, 197.02], [230.26, 237.38]], \"sentences\": [\"We see a black opening screen.\", \" We see people surfing in the ocean Two men are taking images.\", \" We see a title screen then two men stand on the beach with a camera.\", \" We see the surfers in the ocean.\", \" We see the third title screen and two men on the beach with a camera.\", \" We then see the surfers in the ocean.\", \" We see a man on a boat with a camera.\", \" We then see the closing title screen.\"]}, \"v__cZD6JN-SYg\": {\"duration\": 130.25, \"timestamps\": [[0, 46.24], [50.15, 130.25]], \"sentences\": [\"Various pictures of men are shown in the beginning of the video followed by several lines of text shown.\", \" The men are then seen kicking soccer balls into a goal while they save some and the goalie blocks.\"]}, \"v_W4XaqnwD6gU\": {\"duration\": 187.0, \"timestamps\": [[4.68, 84.15], [80.41, 180.46]], \"sentences\": [\"A man is seen playing a violin while the camera pans all around him moving his arms up and down.\", \" The man continues to play while others play behind him and the violinist playing and looking at the audience.\"]}, \"v_kl_JsmJ84PI\": {\"duration\": 91.58, \"timestamps\": [[0, 40.75], [43.5, 91.58]], \"sentences\": [\"A group of people are seen playing a game of soccer in an indoor field while a group of people watch on the sides.\", \" People shown fighting in the stands and players walk around watching the fight and the paramedics take a man away.\"]}, \"v_L2MfC4jcRo0\": {\"duration\": 38.45, \"timestamps\": [[0, 8.27], [15.77, 21.73], [11.34, 35.18], [27.11, 37.3]], \"sentences\": [\"A screen with text gives details of an event.\", \" Boys faces are seen up close in an intense facial expression.\", \" Two boys play an intense game of table soccer.\", \" The boy wins the game and the other strikes him with a handle of the table tennis game.\"]}, \"v_DfpUMDpSbS4\": {\"duration\": 235.8, \"timestamps\": [[3.54, 53.05], [69.56, 167.42], [169.78, 232.26]], \"sentences\": [\"A man is seen speaking to the camera while standing behind a set of weights and pointing to his body.\", \" The man then bends down and grabs the bar while still speaking to the camera.\", \" The man lifts the bar up then back down again while still speaking to the camera.\"]}, \"v_yCPeF59MOEk\": {\"duration\": 119.96000000000001, \"timestamps\": [[0, 16.19], [20.99, 119.96]], \"sentences\": [\"A man in a white tuxedo is led to a pinata by a woman in a wedding dress.\", \" He hits at the pinata that keeps moving up and down.\"]}, \"v_1RQOgX36Z2E\": {\"duration\": 218.66, \"timestamps\": [[0, 28.43], [39.36, 136.66], [144.32, 218.66]], \"sentences\": [\"A man is working inside a shop.\", \" He rolls a tire over to a piece of equipment.\", \" He shows how to mount the tire onto the equipment.\"]}, \"v_xlPpP0eVL9A\": {\"duration\": 194.17, \"timestamps\": [[0, 17.47], [25.24, 73.78], [77.67, 194.17]], \"sentences\": [\"A woman is talking inside an office.\", \" She is shown giving a facial treatment to an older woman.\", \" She wipes her face down with substances and lotions.\"]}, \"v_q53Ajkll_kw\": {\"duration\": 208.1, \"timestamps\": [[0, 203.94], [18.73, 21.85], [124.86, 137.34], [169.6, 173.76], [173.76, 181.05], [186.25, 199.77], [202.9, 208.1]], \"sentences\": [\"A woman in a black dress is playing a bag pipe on stage.\", \" The word \\\"Ilbo\\\" is in a red font and scrolls down on the left hand side of the screen.\", \" The camera zooms into the woman's fingers.\", \" The camera shifts to somebody playing a piano.\", \" A band is also playing musical instruments in the background.\", \" The camera zooms into the face of the woman playing the bag pipe.\", \" The woman finishes playing and the audience applause.\"]}, \"v_LB2P_KH0W2I\": {\"duration\": 10.1, \"timestamps\": [[0, 10.1], [1.36, 6.46], [1.36, 10]], \"sentences\": [\"Two women are washing dishes in the kitchen.\", \"  They go back and forth over the kitchen.\", \" The scene is in very fast motion.\"]}, \"v_T3XGYHEFVIQ\": {\"duration\": 26.1, \"timestamps\": [[0, 2.87], [3.39, 24.01], [24.27, 26.1]], \"sentences\": [\"A man is wearing protective gear.\", \" He is using a welder and creating a bright light as he works on metal.\", \" When he is done, he stops and looks at the camera, showing off the completed welding.\"]}, \"v_It2fslENHXs\": {\"duration\": 46.65, \"timestamps\": [[0, 0.7], [0.93, 33.12], [31.95, 46.65]], \"sentences\": [\"An large outdoor sports field is shown.\", \" A man runs and does a successful pole vault.\", \" He stands up from the pad and picks up the pole.\"]}, \"v_FT_34R0dZnA\": {\"duration\": 152.95, \"timestamps\": [[1.53, 52], [42.06, 110.89], [79.53, 142.24]], \"sentences\": [\"A camera pans around a park as well as a lake and a man speaking to the camera.\", \" The camera pans around a canoe filled with objects and leads into the man padding down and speaking to the camera.\", \" More shots are shown of animals nearby as well as a man and woman speaking to the camera.\"]}, \"v_b02GzZM5iGI\": {\"duration\": 84.94, \"timestamps\": [[0, 84.94], [28.88, 33.13], [59.46, 61.58]], \"sentences\": [\"People are playing volleyball on a beach.\", \" A girl falls down onto the sand.\", \" A girl raises her hands in the air.\"]}, \"v_IjKWgD0y4rc\": {\"duration\": 147.38, \"timestamps\": [[0, 10.32], [11.05, 25.79], [26.53, 123.06], [40.53, 94.32], [123.8, 139.27], [140.01, 147.38]], \"sentences\": [\"A white screen appears with black text that comes in twice on the screen and then scrolls off screen while fading out.\", \"   Three children in life vests and two supervising adults are on a raft waiting to go rafting.\", \"  The group rafting down a river with all it's bumps and water splashing.\", \" There is a yellow text that comes on screen showing the locations they are at.\", \"  The children are at the destination as one young girl comes close to the cam and waves at it.\", \"  A white screen appears and two words appear one in yellow at the top of the sceeen and one in blue at the bottom on the screen and both then move off screen.\"]}, \"v_dQs2-z3TIes\": {\"duration\": 58.75, \"timestamps\": [[0, 5.87], [6.17, 14.39], [15.27, 48.76], [50.23, 58.75]], \"sentences\": [\"A woman is on stage speaking to a little girl while holding a microphone.\", \" The girl speaks into the microphone, then performs a ballet piece.\", \" She dances around the stage for the audience.\", \" She falls onto one knee as she completes her performance.\"]}, \"v_uug0bhnLgHs\": {\"duration\": 184.86, \"timestamps\": [[1.85, 3.7], [31.43, 42.52], [46.21, 61], [67.47, 125.7], [128.47, 132.17]], \"sentences\": [\"A person stirs a large bowl of lemonade.\", \" A woman is chopping up a potato.\", \" She adds the potato to a large pot of water.\", \" She adds lemons and lettuce and cucumbers to the bowl.\", \" She mixes it all together in a bowl.\"]}, \"v_bM7Tgb1mJfc\": {\"duration\": 65.34, \"timestamps\": [[0, 24.5], [3.92, 11.43], [11.43, 19.28], [25.48, 36.26], [35.94, 41.16], [41.16, 60.44], [60.44, 65.34]], \"sentences\": [\"We see a man instructing another man on shooting arrow.\", \" The mans first arrow misses.\", \" The man loads another arrow.\", \" We see the targets in front of a backdrop.\", \" The man hits the backdrop and it collapses.\", \" The people all stand around laughing.\", \" The instructor walks over to the targets.\"]}, \"v_rJKrXQ4v-9s\": {\"duration\": 77.67, \"timestamps\": [[0, 10.87], [11.26, 49.32], [50.87, 77.67]], \"sentences\": [\"A plume of smoke is shown going across a pair of skis.\", \" A man is carving designs, burning them into the wood.\", \" He then rakes an iron across the boards, setting the image.\"]}, \"v_yATxB9giT34\": {\"duration\": 168.92000000000002, \"timestamps\": [[8.45, 45.61], [25.34, 90.37], [69.26, 133.44], [109.8, 168.92]], \"sentences\": [\"A man is seen speaking into a mike that transitions into a close up of a beer pong table as well as people playing.\", \" Shots of beer are poured, people playing rock, paper, scissors, dealing money, and computer screens for music.\", \" More people are shown playing beer pong while being interviewed on camera and walking around a room.\", \" Several more shots are shown of people dancing, playing pong, fighting, and speaking to one another.\"]}, \"v_veaxOUe_8HE\": {\"duration\": 205.89, \"timestamps\": [[2.06, 114.27], [50.44, 198.69]], \"sentences\": [\"Two people are seen speaking to the camera and leads into several clips of people playing volleyball with one another.\", \" The people continue to play the sport while others speak to the camera as well as watch on the sides and high five each other.\"]}, \"v_WaWkDf6b_j4\": {\"duration\": 85.2, \"timestamps\": [[0, 7.67], [6.39, 20.02], [20.02, 85.19]], \"sentences\": [\"A man walks along a bare field while a woman walks around beside him.\", \" He walks back and fourth preparing to jump and eventually jumps over a pole.\", \" A girl claps for him and the same move is shown again in slow motion.\"]}, \"v_DVZCBD8-y2I\": {\"duration\": 110.11, \"timestamps\": [[0, 6.06], [8.81, 36.34], [38.54, 95.25], [96.35, 110.11]], \"sentences\": [\"A video shows how to clean snow off a car.\", \" A person folds a blue cloth, wrapping it around a snow brush neatly.\", \" He then uses the brush to gently wipe snow off a vehicle.\", \" The video ends with an advertisement for an auto shop.\"]}, \"v_IFmtu3Sd7iI\": {\"duration\": 114.22, \"timestamps\": [[1.14, 45.69], [38.26, 110.79]], \"sentences\": [\"Several scuba divers are seen swimming around the ocean while sharks move around them underneath.\", \" The camera continuously follows the sharks around the water and the scuba divers interact with one another while they move.\"]}, \"v_aINlF3UDJ7s\": {\"duration\": 79.88, \"timestamps\": [[0, 5.99], [5.99, 29.95], [29.95, 73.09], [73.09, 79.88]], \"sentences\": [\"A blue screen appears and on the left side a clear bottle is pouring liquid into a clear martini glass and white words appear on the left side of the screen that say \\\"Girls Mixing Drinks dot com Notre Dame Pick-Me-Up with Stacey\\\".\", \"A brunette woman wearing all black is standing in a bar talking, she picks up a clear drinking glass, puts ice in it and touches all the ingredients she's going to use while talking about them.\", \" The woman then begins to measure out each alcohol into a shot glass, pours them into the cup, squirts liquid from a clear bottle into the cup, pours some soda from a can into the cup, pours juice from a box into the cup, then adds a straw to the cup and pushes the cup to the front of the counter.\", \" Throughout the whole time she's making the drink the website pops up from time to time at the bottom of the screen, then the outro screen appears with a two tone red diagonal background of thick stripes and the website in the middle reads www dot GirlsMakingDrinks dot com.\"]}, \"v_1SQAnbh_lcM\": {\"duration\": 224.12, \"timestamps\": [[0, 224.12], [88.53, 94.13], [136.71, 169.21]], \"sentences\": [\"A woman is standing behind a counter sharpening a knife.\", \" She pours water on the knife sharpener and continues sharpening the knife.\", \" She picks up a knife sharpener and sharpens the knife.\"]}, \"v_sCTmSj_tsDQ\": {\"duration\": 132.45, \"timestamps\": [[0, 5.3], [5.96, 38.41], [38.96, 132.08]], \"sentences\": [\"Men appear in a field with bulls and the words \\\"Bullfight Laos\\\" appear on screen.\", \" The men gather around the field where two bulls are.\", \" The bulls are encouraged to fight with their horns while the people watch.\"]}, \"v_NK0WynwKc34\": {\"duration\": 19.71, \"timestamps\": [[0, 8.87], [8.97, 14.69], [14.98, 19.71]], \"sentences\": [\"A small baby hits a bongo in a room.\", \" The baby stops and takes something off his hand.\", \" The baby goes back to playing the drum.\"]}, \"v_jGoW5WVAtX4\": {\"duration\": 97.15, \"timestamps\": [[0, 8.26], [8.26, 24.77], [24.29, 45.18], [45.18, 81.12], [81.61, 91.81], [92.3, 95.7], [96.67, 97.15]], \"sentences\": [\"We see the outside of a restaurant with a snow like graphic on the bottom.\", \" We see men inside the bar and one man speaking into a microphone.\", \" We then see ladies playing beer pong against a team of men.\", \" Two teams of men play beer pong together as a man stands behind them holding a camera in the air.\", \" We switch and see other teams in the room playing and see two ladies talking.\", \" We then see a lady toss a ball across a table.\", \" We see the ending screen.\"]}, \"v_uavao6fYoMM\": {\"duration\": 184.02, \"timestamps\": [[0, 13.8], [21.16, 66.25], [69.01, 138.01], [139.85, 184.02]], \"sentences\": [\"A drawing of a court is shown on the screen.\", \" We see a game of soccer in progress on an outdoor field.\", \" The men are kicking the ball away from each other.\", \" They try to get the ball into the opposing goals.\"]}, \"v_8C6iIFY47Kc\": {\"duration\": 220.94, \"timestamps\": [[0, 14.36], [18.78, 60.76], [62.97, 123.73], [127.04, 185.59], [187.8, 220.94]], \"sentences\": [\"Two wrestlers meet at a table inside a wrestling ring.\", \" They sit at the table and hold each other's hands, prepared to arm wrestle.\", \" The men try hard to beat each other, pushing hard on each side.\", \" One wins, then they get up and start fighting inside the ring.\", \" One is kicked out of the ring, leaving the giant as the victor.\"]}, \"v_4bw6ocN0jGU\": {\"duration\": 162.82, \"timestamps\": [[0, 4.88], [17.91, 162.82], [91.18, 94.44]], \"sentences\": [\"A dog is running by a lake.\", \" A man is wake boarding behind a boat.\", \" A person is sitting in the water.\"]}, \"v_k2vkwy2vdP4\": {\"duration\": 89.67, \"timestamps\": [[0, 12.55], [14.35, 60.08], [61.42, 89.67]], \"sentences\": [\"A man is riding a water motorboat in the ocean.\", \" Beside him appears a man on a surfboard.\", \" The man on the surfboard speeds past, leaving him in his wake.\"]}, \"v_aS6Qv9N5mG0\": {\"duration\": 26.7, \"timestamps\": [[0, 20.83], [2.67, 26.7]], \"sentences\": [\"A small group of people are seen playing games with one another in a large gymnasium.\", \" Many people watch on the sidelines an the people pass a bad mitten back and fourth to one another.\"]}, \"v_gCx-ucvPhDY\": {\"duration\": 5.6, \"timestamps\": [[0, 1.96], [2.01, 4.34], [4.37, 5.6]], \"sentences\": [\"A man in a black Speedo is standing on a diving board with his hand down on his sides.\", \"He then begins running and does two hops to get to the end of the board.\", \"Finally,he is at the end of the diving board and does a flip into the water as the crowd on the side watches.\"]}, \"v_6dJrQV3Jzbw\": {\"duration\": 162.75, \"timestamps\": [[0, 36.62], [37.43, 118.81], [101.72, 158.68]], \"sentences\": [\"A large group of people are seen running down a field playing a game of lacrosse.\", \" The people hit the ball all along the field while a ref watches them on the side.\", \" The group continue to play together while the camera moves back and fourth.\"]}, \"v_BNa85xIhNqA\": {\"duration\": 109.03999999999999, \"timestamps\": [[0, 33.8], [33.8, 80.69], [76.87, 107.95]], \"sentences\": [\"A large kite is seen flying over a beach with people wandering around on the sides.\", \" A man is seen flying the large kite while others watch him on the side.\", \" Another kite is shown flying beside his and leads into a show of the ocean.\"]}, \"v_ZN9kbYULUtw\": {\"duration\": 97.72999999999999, \"timestamps\": [[0.49, 25.9], [23.94, 69.88], [58.15, 96.76]], \"sentences\": [\"A young boy is seen stretching in a circle while taking his shirt off and looking off into the distance.\", \" The boy then begins performing various martial arts in front of a large crowd.\", \" The boy continues kicking and spinning around while ending to bow to the camera.\"]}, \"v_YZhNtSJMzq8\": {\"duration\": 49.34, \"timestamps\": [[0, 28.13], [28.13, 49.34]], \"sentences\": [\"A boy mows a backyard using a mower that has a collecting bag on back.\", \" The boy pass the sidewalk and turn to the yard to continue cutting the grass.\"]}, \"v_Gi9aPJOgn6M\": {\"duration\": 30.12, \"timestamps\": [[0, 21.99], [22.29, 25.15], [25.3, 30.12]], \"sentences\": [\"A car commercial begins with numerous people washing a vehicle as it goes through a professional car wash.\", \" The people stand in a group, waving their rags in the air at the camera, as if to say goodbye.\", \" Then it cuts to a final screen advertising the name of the service.\"]}, \"v_z60D7p37Lws\": {\"duration\": 80.8, \"timestamps\": [[0, 21.82], [0, 75.15], [22.22, 25.45], [29.9, 33.13], [34.34, 75.15], [75.15, 77.17], [77.57, 80.81]], \"sentences\": [\"A woman spins a young boy in circles.\", \" The boy is holding a long stick and wearing a blindfold.\", \" The woman stops spinning the boy and aims him at a pinata hanging from the ceiling.\", \" The boy swings and hits the pinata once.\", \" He then swings and misses many times.\", \" The boy finally gives up and takes the blindfold off.\", \" A different woman walks in and stops near the pinata.\"]}, \"v_vjVtKL3xd8w\": {\"duration\": 141.53, \"timestamps\": [[0, 3.54], [4.25, 9.2], [9.91, 40.33], [41.04, 136.57], [136.57, 141.53]], \"sentences\": [\"We see a green opening screen.\", \" We see a ladies hair in a close up.\", \" A lady speaks while sitting on a couch.\", \" We see a lady putting a roller in her hair.\", \" We then see the finished product.\"]}, \"v_yeQDfh6K6Sc\": {\"duration\": 41.4, \"timestamps\": [[0, 2.28], [2.9, 41.4], [13.25, 17.6], [24.43, 27.12], [38.71, 40.37], [39.75, 41.4]], \"sentences\": [\"A man turns on a camera.\", \" A man in a black shirt is squatting on a couch and smoking hookah.\", \" The man attempts to blow smoke rings.\", \" The man blows smoke directly at the camera.\", \" The man again proceeds to blow smoke directly at the camera.\", \" The man reaches to turn the camera off.\"]}, \"v_QJmoA3byOzo\": {\"duration\": 189.5, \"timestamps\": [[1.89, 18], [18, 46.43], [29.37, 64.43], [112.75, 189.5]], \"sentences\": [\"The camera zooms in to show the car's front right wheel.\", \" The camera zooms out to show the man spraying the car with soap.\", \" The camera zooms in again to show the soap running down the back of the car, then the camera moves to show the left side of the car.\", \"  Then two men spray water on the car to wash the soap off.\"]}, \"v_J_SD_hhGET8\": {\"duration\": 234.92000000000002, \"timestamps\": [[0, 14.1], [15.27, 231.39], [233.74, 234.92]], \"sentences\": [\"A woman walks to the middle of the room.\", \" She performs belly dancing moves.\", \" She extends her fingers out and finishes her dancing.\"]}, \"v_Us795clHJmw\": {\"duration\": 30.95, \"timestamps\": [[0, 5.73], [5.88, 28.94], [28.94, 30.95]], \"sentences\": [\"A woman spins a blindfold person holding a stick on front a pi\\u00f1ata.\", \" Then, the person hits the strong, while the pi\\u00f1ata is moving.\", \" The person laugh and the woman approach her.\"]}, \"v_4QqoWbK2ELc\": {\"duration\": 90.28999999999999, \"timestamps\": [[0.45, 90.29], [0.9, 9.03], [10.84, 18.06], [25.73, 90.29]], \"sentences\": [\"A person prepares to bungee jump over a body of water while onlookers watch from the ground.\", \"  The person is sitting down, first, strapped into bungee jumping gear.\", \"  The person stands at the edge of a wooden jumping surface as onlookers watch from the ground.\", \"  The person jumps off of the edge and falls down as the camera follows and reveals that this is a man who has jumped, and the man is smiling and laughing as he flails in the air just above the water.\"]}, \"v_k5vE0ehf5TA\": {\"duration\": 67.66, \"timestamps\": [[0, 67.66], [3.38, 15.9], [15.56, 67.66]], \"sentences\": [\"An individual uses a vacuum cleaner hose to play with a dog.\", \" The camera switches to a more side view of the dog.\", \" The camera switches to a more top down view of the dog.\"]}, \"v_cvuSpqwxRYE\": {\"duration\": 50.5, \"timestamps\": [[0, 2.78], [7.83, 24.49], [29.54, 43.94], [45.96, 50.5]], \"sentences\": [\"A man dips a sponge into a bucket.\", \" He uses the sponge to wipe black mud all over a boy.\", \" Other people are covering people in paint.\", \" They are preparing for the running of the bulls in spain.\"]}, \"v_8ycO15nH8YM\": {\"duration\": 186.68, \"timestamps\": [[0, 2.8], [3.73, 21.47], [21.47, 81.21], [79.34, 151.21], [151.21, 181.08], [182.01, 186.68]], \"sentences\": [\"We see a title screen on white.\", \" A lady has a cake turned upside down she puts back in the tray.\", \" The lady slices parts of the cake and flips it again.\", \" The lady cuts the edges off the cake.\", \" The lady moves everything and brings it back.\", \" We then see the ending credits.\"]}, \"v_4EoFt8F3_nw\": {\"duration\": 5.06, \"timestamps\": [[0.13, 2.71], [1.97, 4.91]], \"sentences\": [\"A man is seen walking beside a hedge in a public area with a dog beside him.\", \" The dog is seen walking on it's two legs and hops down in the end.\"]}, \"v_ckzLOLHjP44\": {\"duration\": 32.46, \"timestamps\": [[0, 32.46], [1.3, 7.79], [8.76, 13.15]], \"sentences\": [\"We see men on a lacrosse field playing a game.\", \" A man hits the ball and the men run on the field.\", \" We see a man in red run on the screen and walk back.\"]}, \"v_r8RJSDKy9iA\": {\"duration\": 98.92, \"timestamps\": [[0, 24.73], [26.21, 78.64], [79.13, 98.92]], \"sentences\": [\"A young girl has several people holding her eye open while another tries to put in a contact lens.\", \" They cannot get the lens in at the eye at first and try over and over again.\", \" They eventually succeed in getting the lens in but the girl stands up as thers laugh.\"]}, \"v_4mRdgV8t4KY\": {\"duration\": 189.31, \"timestamps\": [[0, 189.31], [49.22, 51.11], [186.47, 189.31]], \"sentences\": [\"People are riding horses in an indoor arena.\", \" People are sitting outside the arena watching them.\", \" They stop the horses and the girl turns around.\"]}, \"v_H8aW-6HhMBA\": {\"duration\": 137.09, \"timestamps\": [[0, 16.45], [16.45, 30.85], [30.16, 103.5], [103.5, 137.09]], \"sentences\": [\"A man and a woman are sitting in Hooters the restaurant,the female is an employee and the guy is a regular customer.\", \"He grabs a beer and then kisses the girls.\", \"He tries three more times and he is successful but the third girl was by accident and she hits the guy and becomes extremely upset by it.\", \"The male does it again and more girls in the restaurant begins to kiss him.\"]}, \"v_hANXaoStVR0\": {\"duration\": 25.03, \"timestamps\": [[3.13, 12.77], [12.77, 21.15], [21.15, 23.91]], \"sentences\": [\"There's a man in the swimming pool playing water polo.\", \" He is in the pool playing water polo with a yellow ball and two other people.\", \" He throws the ball across and the people sitting by the pool and watching him play cheer loudly.\"]}, \"v_6mrjcnKVJyY\": {\"duration\": 166.98, \"timestamps\": [[6.68, 70.96], [102.69, 156.12]], \"sentences\": [\"Two men are seen wearing boxing gloves and punching and kicking one another.\", \"The men continue going back and fourth with each other and a text appears at the end of the video.\"]}, \"v_VshQp9mHeh4\": {\"duration\": 106.86, \"timestamps\": [[0, 16.03], [16.03, 19.23], [19.23, 30.99], [30.99, 52.36], [51.83, 106.86]], \"sentences\": [\"A boy runs into the shot and kicks a soccer ball.\", \" The ball lobs toward a crowd in a park.\", \" Few other boys try to catch the moving ball.\", \" One boy eventually kicks the ball back toward the camera.\", \" A girl comes in from the sidelines and kicks the ball back toward the crowd of boys and the kids continue this cycle of kicking.\"]}, \"v_SOkS5d8GjZ4\": {\"duration\": 20.96, \"timestamps\": [[0, 9.64], [9.12, 20.96]], \"sentences\": [\"A man and a woman are shown sitting at a table with a cigarette in her mouth and their arms crossed at one another.\", \" They begin arm wrestles and the girl with the cigarette beats the man.\"]}, \"v_ZVKUKjVYwF8\": {\"duration\": 116.38, \"timestamps\": [[0, 40.15], [36.08, 90.78], [83.21, 109.4]], \"sentences\": [\"A person is seen moving down a set of stairs and holding out various measuring items.\", \" The man kneels down and begins putting carpeting down on the floor as well as on the stairs.\", \" The man finishes putting the carpet down and the camera zooming in on his work.\"]}, \"v_jNGa0jPAMjI\": {\"duration\": 61.7, \"timestamps\": [[3.08, 6.48], [6.48, 58.3], [14.5, 35.78], [35.17, 57.99]], \"sentences\": [\"A seated man looks at a clipboard.\", \" The man begins smoking from a large pipe.\", \" The camera pans down to show the various items on the table before him.\", \" The camera pans back up to the man.\"]}, \"v_aEWVDbV76_Q\": {\"duration\": 157.69, \"timestamps\": [[0, 25.23], [26.02, 56.77], [56.77, 121.42], [94.61, 130.88], [134.82, 157.69]], \"sentences\": [\"People sail in a boat in a river, and a man pulls a string of a person that sets up to perform water ski.\", \" Then, the person water ski behind the boat while people watch.\", \" The person falls in the water, but stands again and continues doing water ski.\", \" A boat appears in the river behind the person, while the person water ski.\", \" The person falls again in the water, the people in the boat laugh and a man does thumbs up.\"]}, \"v_N6HUPyM5m2o\": {\"duration\": 8.71, \"timestamps\": [[0, 8.1], [0.22, 8.71], [0, 8.71]], \"sentences\": [\"woman is wearing a purple shit lifting weight.\", \" woman is sitting in stairs tying the laces.\", \" two women are in a gym room doing exercise.\"]}, \"v_1TWdrO8cCxA\": {\"duration\": 82.97, \"timestamps\": [[0, 3.32], [3.32, 47.29], [48.95, 50.19], [0, 82.97]], \"sentences\": [\"A girl with a jump rope is in athletic shorts and a t-shirt, holding a jump-rope.\", \"  She begins to preform complicated stunts, such as hand-stands, flips, and the splits while jumping rope.\", \" She has a brief mishap as she drops the jump rope and then picks it up to resume her performance.\", \"  Many people are sitting on the sidelines, some watching as an audience, some are judges, some are filming the event.\"]}, \"v_p3LvCbxC_ZE\": {\"duration\": 113.2, \"timestamps\": [[0, 27.17], [25.47, 87.16], [72.45, 109.24]], \"sentences\": [\"A camera pans around a large yard to show two people moving a wooden bar.\", \" One man then steps on the bar and begins using a tool to cut down hedges.\", \" The man looks back to the speak to the camera and the men move the bar.\"]}, \"v_cWU5059m_1Q\": {\"duration\": 95.11, \"timestamps\": [[0, 9.51], [9.51, 88.93], [14.27, 17.6], [31.39, 37.09], [44.23, 45.65], [66.1, 68.48], [82.74, 89.4], [90.35, 95.11]], \"sentences\": [\"We see a guy in a gym holding a jump rope.\", \" The guy does a jump rope routine.\", \" The guy  does a flip with the rope.\", \" The guy  does two push ups.\", \" The guys leg gets caught on the rope.\", \" The guy  jumps high and the rope gets tangled again.\", \" The guy finishes and lays on the ground.\", \" The guy gets up and walks away.\"]}, \"v_Qz_PtO18pXE\": {\"duration\": 8.73, \"timestamps\": [[0, 5.19], [5.37, 8.73]], \"sentences\": [\"A woman is posing on a diving board.\", \" She springs backward into the water in front of a watching group.\"]}, \"v_IIAg_MFuCoY\": {\"duration\": 200.46, \"timestamps\": [[0, 200.46], [66.15, 75.17], [103.24, 116.27], [138.32, 152.35], [193.44, 200.46]], \"sentences\": [\"We see a couple dance on a dance floor in a club.\", \" We see a man looks in the camera and opens his mouth as a group of people walk past.\", \" A man in a black shirt walks past the camera and stands their for a moment.\", \" The lady shimmy's and bends down to the ground and back up.\", \" The man dips the woman and the smile at the camera.\"]}, \"v_wEgt41AJaU4\": {\"duration\": 28.64, \"timestamps\": [[0.29, 14.32], [9.45, 27.78]], \"sentences\": [\"A small group of people are seen running around an outdoor arena and playing paintball with one another.\", \" One man runs forward and a large cloud of smoke spins around and a man waves his arms in the air while another helps.\"]}, \"v_UaCSf-kW2Ho\": {\"duration\": 95.13, \"timestamps\": [[0, 95.13], [5.71, 95.13], [11.89, 37.1]], \"sentences\": [\"People are sitting down in chairs playing drums.\", \" People are walking past on the sidewalk.\", \" A person pushing a stroller walks behind them.\"]}, \"v_SwXGVQXyXkQ\": {\"duration\": 148.98, \"timestamps\": [[0, 148.98], [45.44, 148.98], [70.02, 148.98], [102.05, 148.98]], \"sentences\": [\"A man sits in a barber chair.\", \" The barber begins to shave his head.\", \" He shaves stars into his head.\", \" The design is intricately done.\"]}, \"v_cM67XJS7yM8\": {\"duration\": 41.7, \"timestamps\": [[0, 9.59], [9.59, 33.15], [34.82, 41.7]], \"sentences\": [\"A woman is seen looking at the camera then crying and hugging a group of people.\", \" Shots of people playing shuffle board are shown followed by people celebrating and the woman speaking to the camera.\", \" More shots of celebrating are shown and the team mates all hug one another.\"]}, \"v_s4pnHlWlt5k\": {\"duration\": 53.45, \"timestamps\": [[0, 39.56], [0, 53.45], [40.36, 53.45]], \"sentences\": [\"A young boy is standing in the grass swinging a bat at a pinata.\", \" People are watching the boy.\", \" A girl in a blue swimsuit takes the bat and starts swinging at the pinata.\"]}, \"v_fEsTL9tYOVc\": {\"duration\": 213.51, \"timestamps\": [[0, 3.2], [7.47, 34.16], [34.16, 197.49], [48.04, 79], [64.05, 68.32], [86.47, 96.08], [96.08, 123.83], [121.7, 129.17], [136.65, 165.47], [180.41, 187.89], [196.43, 213.51]], \"sentences\": [\"We see a GoPro and the title card.\", \" We see the water and a boat full of people riding on the water and put on wet suits and enter the water.\", \" We see the people underwater swimming around.\", \" A person is swimming in a crevasse.\", \"  We see an animal on a rock.\", \" We see part of a ship.\", \" We are shown various sea life.\", \"  We see the people near the ship.\", \" People are holding a large sea-slug.\", \" We see a large underwater turtle on the ground.\", \" Bubble float to the surface and the video ends.\"]}, \"v_9WmsYbZl1pw\": {\"duration\": 237.19, \"timestamps\": [[0, 3.56], [1.19, 14.23], [15.42, 20.16], [20.16, 29.65], [29.65, 45.07], [45.07, 54.55], [45.07, 66.41], [66.41, 83.02], [83.02, 115.04], [115.04, 119.78], [119.78, 139.94], [139.94, 143.5], [147.06, 162.48], [162.48, 181.45], [181.45, 237.19]], \"sentences\": [\"There's a sandwich that is still whole and has been cut in half into a triangular shape and white words pop up on the screen noting that it's a \\\"Reuben sandwich\\\".\", \" A man in the kitchen appears and he's putting seasonings into a pan and he starts swishing the pan around.\", \" An introduction of 6 different small videos of foods appear and there's text below that say's \\\"Steve's cooking\\\".\", \" A large piece of raw meat appears on a white plate and the word Reuben flashes a few times on it as it's shown in various different angles.\", \" The man then places the meat into a large pot and pours liquids onto it until it's fully covered and begins to season it with various seasonings and at the same time the names of the seasonings appear on the screen as each seasonings fall.\", \" Then there's a close up shot of a large knife that is crushing a bunch of garlic cloves that also get thrown into the pot and the seasonings and meat are gently stirred then quickly shows that the water is now boiling and text shows up that say's \\\"About one hour per pound\\\", and a lid gets put onto the pot.\", \" A pair of tongs pull out a piece of meat from the pot and is placed onto a white square plate where it gets put onto a cutting board and gets thinly sliced with a large serrated knife.\", \" An empty large clear bowl is shown and mayonnaise, ketchup, relish, worcesterchire sauce, and hot sauce get spooned into the bowl.\", \" A purple onion, celery and parsley then get chopped up individually and each individually gets thrown into the bowl where it begins to get mixed by a whisk and then seasoned with salt and pepper and mixed some more.\", \" A finger dips into the bowl to get a sample out and mixing continues for a bit longer.\", \" A small brush with melted butter begins to butter bread on both sides which gets put onto a flat grill and flipped until both sides are grilled.\", \" Some white shredded food gets thrown onto the grill and is stirred around by a black spatula.\", \" Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food is scooped up and put onto the meat and cheese.\", \" The mixed sauce from the clear bowl is then shown being spread onto the bread with a spoon and the meat,cheese and shredded white food is put onto the bread, topped with the other bread, and then sliced in half diagonally.\", \" The sandwich is then spread apart and a hand picks up one half to show it at different angles, it gets bitten a few times and then put back on the plate where the rest of the video just shows it at differently angles and short previous seen clip of the meat being sliced.\"]}, \"v_2NAs35b7fck\": {\"duration\": 158.62, \"timestamps\": [[0, 42.83], [45.21, 136.41], [138, 158.62]], \"sentences\": [\"A group of men are playing soccer.\", \" One player kicks the ball into the goal before going for the opposing goal.\", \" They continue fighting over the ball for an extended period.\"]}, \"v_DzCk5xjSF9o\": {\"duration\": 42.68, \"timestamps\": [[0, 30.3], [26.89, 42.68]], \"sentences\": [\"A lady in white stripes shirt is standing next to a young boy, they are standing at the counter, they cut the side of the bread, put spread on it, roll the bread in a plastic, cut the side of the bread, put meat on the bread, shredded the cheese, roll the bread in the plastic.\", \" The woman sliced the plastic with bread in it then put it in a rectangle plate.\"]}, \"v_VOnP9N7FAT8\": {\"duration\": 190.1, \"timestamps\": [[0, 175.84], [165.39, 170.14], [172.04, 190.1]], \"sentences\": [\"A woman is sitting down in a chair playing an accordion.\", \" She stops playing and puts her arm down.\", \" Words flash onto the screen.\"]}, \"v_ORVjNqVSLe0\": {\"duration\": 187.11, \"timestamps\": [[0, 111.33], [113.2, 168.4], [169.33, 176.82]], \"sentences\": [\"A person shaves the back legs of a man using a shaver while he is lying face down.\", \" Then the man turns face up, and the person starts to shave the legs.\", \" After, the person uses a machine on the legs, and then a picture shows the legs before and after shave.\"]}, \"v_Tp4g0ErB2oQ\": {\"duration\": 21.48, \"timestamps\": [[0, 21.48], [0.75, 3.87], [12.99, 19.33]], \"sentences\": [\"A woman behind a fence watch a group of players in a field.\", \" An old lady pass behind the woman.\", \" People play hurling in a field.\"]}, \"v_nxFbmoV3Idk\": {\"duration\": 229.54, \"timestamps\": [[6.89, 78.04], [81.49, 142.32], [143.46, 222.66]], \"sentences\": [\"A man puts a tire over a machine and rotates the rime.\", \" Then,the man uses a tool to loose the rime, then the machine removes the rubber tire.\", \" After, the man takes glue and brush the tire, and then using the machine he puts the rubber tire in the rim.\"]}, \"v_YDz0pyc26Ss\": {\"duration\": 208.1, \"timestamps\": [[0, 21.85], [23.93, 59.31], [62.43, 178.96], [184.17, 208.1]], \"sentences\": [\"Several people are outdoors, one of which is riding and performing tricks on a skateboard.\", \" The man goes into a group of people before another man, then another are shown going downhill on the street riding their skateboards.\", \" They perform several tricks and flips as they go.\", \"The people clap as the winner is announced.\"]}, \"v_7NMds32-lMc\": {\"duration\": 237.49, \"timestamps\": [[0, 237.49], [52.25, 57], [98.56, 102.12]], \"sentences\": [\"Men are lifting heavy weights over their head several times.\", \" A man in a blue shirt is watching one of the men.\", \" A man in a gray shirt is mimicking the person lifting the weight.\"]}, \"v_lGRZ3F7tW2c\": {\"duration\": 140.76, \"timestamps\": [[0, 35.89], [35.19, 105.57], [102.05, 140.76]], \"sentences\": [\"A large group of kids are seen practicing basketball drills on a court and passing the ball quickly to one another.\", \" Several boys make baskets while still speaking to one another an the coach moves in and speaks to the boys.\", \" He walks away and more drills are shown with the boys.\"]}, \"v_Tz3OXEWBSVA\": {\"duration\": 122.9, \"timestamps\": [[2.46, 42.4], [41.17, 97.09], [87.26, 119.22]], \"sentences\": [\"Several close ups of plants are shown with a man walking into frame and speaking to the camera.\", \" The man continues to speak while pointing to the camera and begins laying out mulch to put all over the plants.\", \" The man continues pushing dirt around and ends by watering all the plants.\"]}, \"v_YoXZfvf5Teg\": {\"duration\": 231.11, \"timestamps\": [[0, 5.78], [5.78, 27.73], [27.73, 33.51], [33.51, 227.64], [5.78, 228.8], [228.8, 231.11]], \"sentences\": [\"The intro is a white screen, the website on the top left,the words \\\"Howcast original\\\" appear and afterwards another set of words describing the lesson appear and it reads \\\"Vibrato Beginner Violin Lessons\\\".\", \" A woman named Julie Artzt Becker is holding her violin is sitting and talking in front of a blue screen.\", \" The woman puts the violin up to her chin and continues to talk.\", \" The woman then puts her fingers onto the strings and with her other hand she touches and points on her fingers on the strings as well as taking the bow to her strings every now and then.\", \" The woman talks throughout the entire video as she's demonstrating her movements or pointing towards her finger motions.\", \" Eventually the woman stops talking and ends with a smile and the words \\\"Howcast original\\\" appear on the white screen.\"]}, \"v_nUghBtcrTPA\": {\"duration\": 128.68, \"timestamps\": [[0, 67.55], [70.77, 128.68]], \"sentences\": [\"Two men are fighting in an asian art form outside.\", \" They are taking swings and hits as well as kicks at each other throughout.\"]}, \"v_9IIcG8AiUnA\": {\"duration\": 132.45, \"timestamps\": [[0, 14.57], [30.46, 90.06], [100, 132.45]], \"sentences\": [\"A man is standing inside a kitchen in front of a small table.\", \" He shows and talks about olive oil and lemon juice.\", \" He uses the items to clean and polish the table of scratches.\"]}, \"v_Marb8CMxPV0\": {\"duration\": 175.94, \"timestamps\": [[0, 155.71], [10.56, 171.54], [52.78, 171.54]], \"sentences\": [\"Various people are seen standing in an open area performing several tricks with their dogs.\", \" Many people watch on the sidelines and more people continue to show tricks with their dogs.\", \" Several people are interviewed by the camera and leads into even more tricks being shown.\"]}, \"v_GAEavSUmQRk\": {\"duration\": 216.34, \"timestamps\": [[0, 216.34], [19.47, 28.12], [30.29, 216.34]], \"sentences\": [\"A man in glasses speaks to the camera.\", \" He demonstrates a key around his neck and points to his trumpet.\", \" He attaches the key to the trumpet and continues to speak and demonstrate important features of the trumpet.\"]}, \"v_vu-3Zi94F0M\": {\"duration\": 18.25, \"timestamps\": [[0, 4.93], [4.56, 14.05], [11.13, 17.06]], \"sentences\": [\"A man is seen sitting in a kayak looking to the camera.\", \" He then sticks his paddle in the water and begins moving along.\", \" He continues riding around an area while moving the paddle.\"]}, \"v_tPZYyaX63yE\": {\"duration\": 31.42, \"timestamps\": [[2.98, 8.01], [8.17, 27.8], [28.9, 31.42]], \"sentences\": [\"A person is holding a red leaf blower.\", \" They begin to blow the leaves in the yard.\", \" They show the leaf blower again.\"]}, \"v_6lyXvR5VtTQ\": {\"duration\": 80.9, \"timestamps\": [[0, 24.67], [25.48, 63.91], [61.89, 80.9]], \"sentences\": [\"An older man and young woman are seen spinning around a stick while the girl is blindfolded and people sitting around her watch.\", \" The girl then swings the stick around the air aiming for the pinata and hitting the object several times.\", \" She continues to swing around the air until the end when she finally hits it.\"]}, \"v_qZvP5BvVbcg\": {\"duration\": 227.05, \"timestamps\": [[0, 207.75], [80.6, 227.04]], \"sentences\": [\"Some people are skiing down a mountain and following each other.\", \"  They finish by going faster and faster until they finish.\"]}, \"v_RWir3muDHg0\": {\"duration\": 81.06, \"timestamps\": [[0, 2.03], [2.03, 32.42], [32.42, 77.01], [77.01, 81.06]], \"sentences\": [\"A lot of men are standing outdoors on a dirt field and there are two teams standing along a rope while a lot of people are standing around watching them.\", \"The men wearing yellow and blue shirts pick up the rope and are getting in position to play tug o war.\", \" Suddenly the men start pulling on the rope as other men are instructing them and the spectators are cheering.\", \"The men in the yellow and blue shirts are easily pulling the rope and they have won while the people around them cheer.\"]}, \"v_S-VSs8o98Ho\": {\"duration\": 49.78, \"timestamps\": [[0, 13.44], [9.71, 33.6], [27.13, 33.6], [30.37, 49.78]], \"sentences\": [\"Cigarettes are placed down on a table.\", \" Someone shuffles cards onto the table.\", \" A man pushes a broom behind them.\", \" They continue playing cards at the table.\"]}, \"v_tCkHrK6mRME\": {\"duration\": 124.11, \"timestamps\": [[4.34, 47.16], [43.44, 120.39]], \"sentences\": [\"A video leads into several clips of a man performing tricks with a dog.\", \" The man continues performing tricks with the dog as the camera captures him from several angles as well as others doing tricks with their dogs.\"]}, \"v_Jy8JurvYlH4\": {\"duration\": 141.84, \"timestamps\": [[0, 20.57], [20.57, 32.62], [32.62, 50.35], [50.35, 55.32], [55.32, 141.84]], \"sentences\": [\"A little girl walks into a bathroom and starts talking to the camera.\", \" The bathroom transforms into a factory.\", \" The girl picks up a toothbrush and continues to talk.\", \" Toothpaste is applied to a tooth brush.\", \" The girl brushes her teeth and the factory changes back to a bathroom.\"]}, \"v_HadTAlDM5YM\": {\"duration\": 131.19, \"timestamps\": [[0, 5.25], [6.56, 24.27], [24.27, 33.45], [40.01, 49.2], [49.85, 60.35], [59.69, 87.9], [97.74, 108.23], [110.2, 114.79]], \"sentences\": [\"A man is speaking into a microphone.\", \" A man wearing a black cape is getting his beard shaved.\", \" A person puts a white towel over the man's face.\", \" He puts shaving cream on the man's face.\", \" He then puts a towel over the mans face again.\", \" He then shaves the mans beard with a razor.\", \" The man puts a towel on the other man's face again.\", \" He takes the cape off and stands up.\"]}, \"v_4L0mci9CTPg\": {\"duration\": 43.72, \"timestamps\": [[0, 13.12], [13.77, 38.91], [39.13, 43.72]], \"sentences\": [\"A couple dances on a ballroom floor with people seated at tables nearby.\", \" People nearby take photos of the couple.\", \" The couple finishes and leaves the dance floor.\"]}, \"v_CbQPrRwG2BM\": {\"duration\": 96.71000000000001, \"timestamps\": [[0, 9.67], [14.51, 47.87], [47.87, 96.71]], \"sentences\": [\"A young girl shows his long hair until the waist.\", \" Then, a hairdresser cuts short the hair of the the young girl.\", \" After, the girl shows her short and long hair and two braids.\"]}, \"v_IjBMVPd2Rcs\": {\"duration\": 84.24, \"timestamps\": [[0, 82.56], [3.79, 16.85], [14.32, 62.76], [54.76, 78.35], [75.4, 82.14]], \"sentences\": [\"There's a person dressed in a blue track suit demonstrating how to use a rowing machine.\", \" He sits on the bar of the machine and secures his feet into the foot rest.\", \" Then he begins by pulling the rope towards his chest while straightening his legs.\", \" Then he continues to use the machine in back and forth motion.\", \" Then comes to a rest by releasing the rope and leaning backwards.\"]}, \"v_uqlErIm56Jg\": {\"duration\": 230.69, \"timestamps\": [[0, 61.13], [50.75, 177.63], [161.48, 220.31]], \"sentences\": [\"A close up of a sneaker is shown followed by a person turning on a faucet and letting the water run over the shoe.\", \" The person then takes show polish and begins scrubbing the shoe with a toothbrush while still running it under the water.\", \" The person turns off the water and presents the shoe in the sink.\"]}, \"v_ZwIu2pPxB3Y\": {\"duration\": 39.1, \"timestamps\": [[0, 20.33], [14.47, 38.52]], \"sentences\": [\"A camera pans away from a set of exercise equipment and leads into a woman's feet moving along.\", \" The woman is then seen using the machine as well as adjusting the settings and continuing to run.\"]}, \"v_8ohisLftwZ4\": {\"duration\": 83.28999999999999, \"timestamps\": [[1.25, 15.41], [15.83, 21.66], [21.66, 44.56], [44.98, 83.29]], \"sentences\": [\"Two men play squash in a room.\", \" A player goes to find the ball and throw it to his partner.\", \" Then, the two men continues playing squash.\", \" A man pick up a ball from the floor and continues squash.\"]}, \"v__ucD-3rUWWE\": {\"duration\": 107.81, \"timestamps\": [[0, 10.24], [10.24, 39.35], [39.35, 76.01], [76.01, 98.11], [99.19, 107.81]], \"sentences\": [\"Two sets of people are in the middle of the woods kayaking,in vibrant white water surrounded by large rocks.\", \"They begin to move to their left and fall over the first hill of large rocks and meet in the corner and begin talking.\", \"The second person begins to kayak and goes ferociously down the next steep hill of rocks and waits.\", \"Shortly after,the man  in the blue jacket follows suit and comes behind them.\", \"Lastly,they take two pictures with the forest as back drop near a brown sign with white words reading Great Falls Overlook.\"]}, \"v_W8ILh7ickB4\": {\"duration\": 86.6, \"timestamps\": [[0, 26.41], [22.52, 56.72], [54.13, 86.6]], \"sentences\": [\"The person is squeezing the lemons in the squeezer.\", \" The person pour the lemon into the white spray bottle and added water.\", \" The person spray the lemon juice in a bow and rub the bowl with sponge.\"]}, \"v_0xxl3iG3VKY\": {\"duration\": 46.86, \"timestamps\": [[0, 2.34], [2.58, 7.03], [7.26, 17.57], [15.23, 16.63], [18.04, 46.86]], \"sentences\": [\"An sportsman launch a javelin in a stadium.\", \" The javelin flies in the air and lands in the green track, then a man runs toward it.\", \" The sportsman walk raising his hands and clap his hands.\", \" A cameraman film the athlete.\", \" The gymnast launch a javelin in the stadium.\"]}, \"v_ir759AX1EYY\": {\"duration\": 108.09, \"timestamps\": [[0.54, 50.26], [50.26, 107.01]], \"sentences\": [\"Several pictures are shown of people shining shoes for others in various locations using rags and brushes on their shoes.\", \" The video continues with many more pictures being shown of people shining shoes and a man standing with an apron in the end.\"]}, \"v_keFBEoBy0zY\": {\"duration\": 212.6, \"timestamps\": [[0, 19.13], [36.14, 88.23], [97.8, 212.6]], \"sentences\": [\"A door with red signs are covering it.\", \" A fireman runs outside carrying a board.\", \" He sleds down the road behind a car, going around turns and falling down a few times.\"]}, \"v_iBpyYbLv1WU\": {\"duration\": 95.09, \"timestamps\": [[0, 18.07], [18.54, 48.97], [49.44, 78.45], [78.45, 95.09]], \"sentences\": [\"A man is strumming away on his guitar aggressively.\", \" Another man with a blue guitar is playing and knocking around all over his guitar.\", \" A man in a red shirt who has an electric guitar is tapping his foot keeping tempo and playing a tune.\", \" He plays up and down a scale or tune.\"]}, \"v_bf3ac4bkIIo\": {\"duration\": 84.92, \"timestamps\": [[0, 14.44], [14.44, 31.42], [30.15, 60.29], [61.14, 84.92]], \"sentences\": [\"Various pictures of ingredients are shown with text across the screen and leads into a woman washing and peeling lemons.\", \" She rolls the lemons on a table and cut them into halves.\", \" Then she juices the lemon and pours the mixture into a large pot with sugar.\", \" She boils the pot and pours the final result into several glasses, enjoying a sip in the end.\"]}, \"v_uvnrLngXHh8\": {\"duration\": 199.0, \"timestamps\": [[0, 8.95], [9.95, 129.35], [133.33, 185.07], [186.06, 199]], \"sentences\": [\"A boar bristle brush is shown, then a video dvd of how to shave.\", \" A man is lying down, lather on his face while a barber shaves his beard.\", \" The man then lathers his head and shaves it with a straight razor as well.\", \" An image of the dvd is shown again.\"]}, \"v_xv6h1JNMX8g\": {\"duration\": 155.25, \"timestamps\": [[0, 31.05], [30.27, 80.73], [80.73, 155.25]], \"sentences\": [\"A man and a dog are standing in a field surrounded by a group of people.\", \"The dog goes on and then the man is seen walking off of the field.\", \"However,a lady remains and her and her dog begin doing Frisbee and tricks at the Purina Dog challenge.\"]}, \"v_bFm6E4cz5tM\": {\"duration\": 179.77, \"timestamps\": [[5.39, 17.08], [17.98, 28.76], [29.66, 77.3], [77.3, 106.96], [112.36, 114.15], [107.86, 140.22], [140.22, 167.19]], \"sentences\": [\"A man water ski on front a glacier.\", \" The man watch a seal and a whale in the cold water.\", \" The man water ski in the water holding a rope pulled by a boat.\", \" The man bends to pass a glacier, then he pass over an iceberg.\", \" A whale swim in the ocean.\", \" After, the man passes over an iceberg and spins, then snowboard over a big iceberg.\", \" The man slide from an iceberg and falls in the water, and people stand to watch an iceberg falls.\"]}, \"v_8rimo9x4qqw\": {\"duration\": 145.71, \"timestamps\": [[0, 136.96], [47.35, 145.71]], \"sentences\": [\"A snowboarder gives a tutorial for how to hit a jump.\", \"  A few techniques are shown in four parts.\"]}, \"v_jVM8v6uJx8c\": {\"duration\": 85.96000000000001, \"timestamps\": [[0, 4.73], [5.16, 85.96], [24.93, 45.56], [45.99, 51.15], [55.02, 60.17], [61.03, 71.78], [80.37, 85.96]], \"sentences\": [\"The intro comes onto the screen introducing a video about ho to climb rocks.\", \" A man appears on the screen hanging from a harness to give some instructions.\", \" The video cuts to him climbing the wall while he continues his narration.\", \" The video cuts to another person in a green shirt getting help to try to climb the wall.\", \" The video shows a split screen with two views of a man climbing the wall.\", \" Then, a woman is shown trying to climb the wall.\", \" A warning is displayed on the screen at the end of the video.\"]}, \"v_8hrRE3_sWXo\": {\"duration\": 228.56, \"timestamps\": [[0, 11.43], [12.57, 121.13], [41.14, 74.28], [75.42, 113.13], [114.28, 117.71], [118.85, 214.84], [213.7, 228.56]], \"sentences\": [\"We see the opening credits on a black screen.\", \" We then see a man coaching a man in a garage and talking to the camera.\", \" The man in gray gets on his knee on the blue mat.\", \"The man stands and gets on both of his knees.\", \" The kneeling man stands up again.\", \" We see a title screen and see the kneeling man holding a machine which he pulls down and out.\", \" He releases the cord, The credits on the video run.\"]}, \"v_rBCf1qjOwCc\": {\"duration\": 147.05, \"timestamps\": [[0, 27.94], [27.94, 147.05]], \"sentences\": [\"litle kids are standing in front of a ouse talking to the camera and making lemonade.\", \" the kid opens a pot and grab sugar and poured into a cup of water, lemon juice and mix it with a spoon.\"]}, \"v_XgbTh1BCciA\": {\"duration\": 64.95, \"timestamps\": [[0.32, 37.99], [37.99, 64.95]], \"sentences\": [\"A man is seen standing ready with a set of bagpipes and begins playing them for the camera.\", \" The man continues playing and then stops to look at the camera.\"]}, \"v_XqxJsWQqKRk\": {\"duration\": 173.29, \"timestamps\": [[0, 14.73], [14.73, 23.39], [25.13, 33.79], [33.79, 55.45], [52.85, 57.19], [57.19, 64.98], [64.98, 71.92], [71.92, 122.17], [122.17, 123.04], [123.04, 135.17], [135.17, 173.29]], \"sentences\": [\"A white screen with blue and white shapes and black words flash across the screen.\", \" A smiling black man is in a residential kitchen and he's wearing a santa hat and pouring ingredients into a large bowl.\", \" A hand pushes a clear bowl filled with dark figs and a cutting board appears immediately afterwards and the instructions on the screen say to cut the stems off of 1lb of figs and quarter them.\", \" While the list of ingredients are shown that include: 1lb Figs, 1lb Raisins, 1lb Cherries, 1lb Currants, 1lb Prunes, Port Wine and Angostura Bitters; they are all poured into a white bucket.\", \" Stirring begins immediately and the instructions on the screen say to let it soak for at least two weeks to up to 30 days.\", \" 30 days later the contents are stirred and put into a food processor and turned into a paste.\", \" The man greases a 10x3 round cake pan and covers it with parchment paper.\", \" A list and bowls of more ingredients are prepared and poured into a large metal pot and stirred vigorously.\", \" A large rectangular metal pan appears with instructions that say to fill it with a pan of hot water.\", \" The circular cake pan that was previous greased appears, and the stirred contents are poured into it and placed into the pan of hot water where they're all placed into the oven.\", \" When it's done baking and cooled the cake is put on a plate where it's glazed, cut and a slice is put on another plate.\"]}, \"v_e_X0K2t8API\": {\"duration\": 82.32, \"timestamps\": [[0, 58.86], [58.03, 62.56], [62.97, 82.32]], \"sentences\": [\"A blindfolded man swings at a pinata with a bat while others look on from nearby seats.\", \" The man succeeds in breaking the pinata.\", \" The man removes his blindfold as some of the others approach him.\"]}, \"v_WUSEdPfHPoY\": {\"duration\": 211.74, \"timestamps\": [[0, 18], [18, 28.59], [28.59, 147.16], [148.22, 167.28], [167.28, 211.74]], \"sentences\": [\"two men enter a squash court to compete in a game of squash.\", \" One man is wearing a white shirt and the other man is wearing a dark shirt.\", \" The men begin playing while the game progresses each man serves from the serving box.\", \" The game finishes with a hand shake and a wave to the crowd.\", \" A girl in a pink blouse enters the squash court as another man enters the court.\"]}, \"v_AAQp3iEJxJc\": {\"duration\": 237.22, \"timestamps\": [[0, 56.93], [52.19, 148.26], [122.17, 231.29]], \"sentences\": [\"Several pictures lead into clips of people riding down a river on canoes and kayaks.\", \" Several people are shown riding along the rough rivers while paddling themselves along.\", \" The people continue to push themselves along the water while the camera follows their movements.\"]}, \"v_X1pGJqP89Nk\": {\"duration\": 212.49, \"timestamps\": [[0, 210.36], [51, 183.8], [198.67, 212.49]], \"sentences\": [\"Women sit outside in small chairs and hand wash clothes in plastic tubs.\", \" The lady scrubs a garment on a wooden board.\", \" The lady rings out the water from a garment then tosses it aside when done washing it.\"]}, \"v_18k_K9cFFJg\": {\"duration\": 192.35, \"timestamps\": [[0, 21.16], [26.93, 138.49], [138.49, 192.35]], \"sentences\": [\"A boy is skating in a parking lot.\", \" He does several moves, dancing and talking.\", \" The boy skates around the parking lot on inline skates.\"]}, \"v_MKLwNTbEK4E\": {\"duration\": 134.54, \"timestamps\": [[2.02, 50.45], [41.71, 104.94], [84.76, 129.16]], \"sentences\": [\"A close up of a poker table is shown followed by the camera panning around to other tables in the area as well as people playing.\", \" Several clips are shown of people sitting at tables gambling as well as laughing to the camera.\", \" More pictures are shown of people at the casino as well as video of them wandering around the area.\"]}, \"v_l7EktV5FYGk\": {\"duration\": 197.02, \"timestamps\": [[4.93, 193.08], [104.42, 110.33], [109.35, 115.26]], \"sentences\": [\"The camera focuses on a man piloting a sailboat in a harbor environment.\", \" The boat's sail dips into the water.\", \" The man rights the sailboat and continues.\"]}, \"v_AdnLY0a6yn0\": {\"duration\": 84.38, \"timestamps\": [[0, 12.24], [12.24, 36.28], [36.28, 62.44], [62.86, 84.38]], \"sentences\": [\"A man is practicing indoors, he is doing intervals of jumping while running.\", \" Once he lands in the sand he goes back to start again.\", \" He does this over and over each time starting farther back.\", \" Then the practice is over and it's done.\"]}, \"v_qRmaZNDyDhA\": {\"duration\": 199.9, \"timestamps\": [[4, 16.99], [17.99, 27.99], [28.99, 58.97], [61.97, 97.95], [98.95, 123.94], [124.94, 137.93], [142.93, 167.92], [164.92, 185.91]], \"sentences\": [\"A van drives down a country road and pulls to the side of the road with a flat tire.\", \" The driver fumbles with a hand jack and is frustrated.\", \" The driver then uses an electric car jack to lift the car wheel up instead.\", \" The woman plugs in a an electric hand drill that and uses it to remove the lug nuts.\", \" The woman puts a new tire on the car and bolts it in place.\", \" The woman lowers the car wheel off of the jack.\", \" A man points to the different tools in a tool box.\", \" The man hooks a charger up to the car battery.\"]}, \"v_iKH8FgONbVw\": {\"duration\": 25.63, \"timestamps\": [[0, 0.9], [1.02, 14.35], [14.48, 25.63]], \"sentences\": [\"A man kneel on a ball and holds a rod.\", \" The man push her body forward pushing the rod.\", \" Then, the man bring his body to a straight position, then again bring his body forward.\"]}, \"v_5sdUW55eS4M\": {\"duration\": 95.47999999999999, \"timestamps\": [[0, 13.84], [11.94, 95.48]], \"sentences\": [\"A woman is mopping the white tiled floor with a mop.\", \" The woman put the mop in a green bucket, and put it in a strainer to squeeze out the excess water, then she pushed the floor map handle as she squeeze out the water and began mopping the floor, and under the chairs, side of the couch, the liquid on the floor.\"]}, \"v_56sQMnSUWaI\": {\"duration\": 95.59, \"timestamps\": [[0, 95.59], [6.69, 73.6], [53.05, 95.59]], \"sentences\": [\"A black woman does a routine on the balance beam.\", \"  She spins, jumps, twirls, and flips.\", \"  She falls off, finishes her routine, and them dismounts to a clapping audience.\"]}, \"v_jml_hnhjltg\": {\"duration\": 129.24, \"timestamps\": [[0.65, 40.71], [34.9, 98.22], [79.48, 127.95]], \"sentences\": [\"A woman is seen carrying a snow blower and pushing it along a path.\", \" The woman continues pushing the snow blowing along the snow with the camera following her movements.\", \" She moves back and fourth while stopping to speak to the camera and continue moving.\"]}, \"v_nYxjWwJrHwk\": {\"duration\": 71.98, \"timestamps\": [[0, 11.52], [11.88, 38.51], [39.95, 71.98]], \"sentences\": [\"A group of people are gathered on a snowy hill.\", \" They are walking around with intertubes.\", \" They ride the intertubes down the snowy mountainside.\"]}, \"v_zqqiiZCmPLw\": {\"duration\": 181.77, \"timestamps\": [[0, 23.63], [29.99, 122.69], [120.87, 181.77]], \"sentences\": [\"A young ballerina wearing a tutu is seen standing at a ballet barr performing various ballet moves and moving to the floor.\", \" She continues moving around the floor dancing and leads to her holding a razor and putting lotion on her legs.\", \" She shaves her legs while moving her legs around and continues dancing with the razor in sight.\"]}, \"v_vZVnMzH4pkc\": {\"duration\": 70.1, \"timestamps\": [[0, 13.67], [25.94, 35.4], [57.83, 64.84]], \"sentences\": [\"A man throws a ball into a cup.\", \" Another man throws a ball into a cup.\", \" The two men pick up a cup and drink it.\"]}, \"v_yacDrjVTUak\": {\"duration\": 234.15, \"timestamps\": [[0, 30.44], [30.44, 100.68], [100.68, 125.27], [125.27, 202.54], [202.54, 217.76], [217.76, 234.15]], \"sentences\": [\"A man is standing in front of wires and puts on a welding helmet.\", \" He starts to weld the corner of the room.\", \"  The man sands the corner where he was welding.\", \" He continues to weld in the same corner.\", \" The man pushes his helmet up and replaces the wires and sands the same area again.\", \" He places his gloves down and shows the weld he finished.\"]}, \"v_4YGuIycW_IA\": {\"duration\": 100.36, \"timestamps\": [[0, 57.71], [56.2, 100.36]], \"sentences\": [\"A man stands outside holding a bottle of sun screen and talking.\", \" He sprays the sun screen on his arm and rubs it in.\"]}, \"v_pZsHrSHAOqs\": {\"duration\": 12.47, \"timestamps\": [[0, 3.55], [3.55, 6.67], [6.73, 10.54], [10.6, 12.47]], \"sentences\": [\"A man wearing a blue shirt throws a bowling ball down a bowling alley.\", \"  The ball strikes both pins and bounces into the adjoining alley striking the pin down there too.\", \"  A seated man in a red shirt shakes his head.\", \"  The man in the blue shirt walks back.\"]}, \"v_sOL5ksIFX50\": {\"duration\": 53.82, \"timestamps\": [[0, 8.61], [8.61, 47.9], [47.9, 53.82]], \"sentences\": [\"An introduction comes onto the screen for a video about the winter sport curling.\", \" Curlers ar shown as they take different shot and sweep down the ice.\", \" The video ends with the closing credits and graphics.\"]}, \"v_UO9bRJmfMzI\": {\"duration\": 215.64, \"timestamps\": [[0, 15.1], [16.17, 61.46], [77.63, 164.97], [177.91, 215.64]], \"sentences\": [\"A man scrapes snow off of the side of a car.\", \" He then scrapes snow off the hood.\", \" He then moves to the other side to remove more snow.\", \" Finally he finishes clearing the car.\"]}, \"v_qlP8qKtGE7U\": {\"duration\": 42.75, \"timestamps\": [[0, 16.24], [16.24, 33.34], [33.77, 42.75]], \"sentences\": [\"A little baby boy is sitting in his high chair dipping a fork into a glass of chocolate milk being held by an adult.\", \"The adult takes several turn dipping the fork in the cup and licking it.\", \"Then he pauses for a minute and starts to play with the fork.\"]}, \"v_aVHmi3Kjr_Q\": {\"duration\": 56.21, \"timestamps\": [[0, 20.8], [12.65, 56.21]], \"sentences\": [\"A christmas tree is shown followed by several people moving in fast motion hanging up a set of lights.\", \" The people move all around the house up and down the ladder and end by turning off the lights to see.\"]}, \"v_x75wqBUD3zo\": {\"duration\": 144.57, \"timestamps\": [[0, 46.26], [40.48, 102.64], [104.09, 138.79]], \"sentences\": [\"A man is seen speaking to the camera while holding up a harmonica.\", \" The man blows into the instrument while pausing to speak to the camera.\", \" He continues playing the instrument and stopping to speak to the camera.\"]}, \"v_kI6maggAugg\": {\"duration\": 119.99000000000001, \"timestamps\": [[0, 3], [3, 103.8], [103.8, 120]], \"sentences\": [\"A very slow playing video of a very strong man is shown as he picks up a barbell that has a lot of heavy weights on it, and he squats for a little bit with it at his chest.\", \" The man then stands up and holds the barbell to his chest.\", \"The man then tries to hold the barbell above his head while he squats but he ends up dropping the barbell and then looks at his hands as if they failed him.\"]}, \"v_e1bHYT-G__8\": {\"duration\": 168.62, \"timestamps\": [[0, 1.69], [1.69, 7.59], [7.59, 9.27], [9.27, 139.96], [139.96, 146.7], [146.7, 168.62]], \"sentences\": [\"A special effect bowling theme intro appears and the text in the middle read \\\"CHRIS HARDWICK'S ALL STAR Celebrity Bowling\\\".\", \"There are four men posing in a bowling alley, all are wearing yellow shirts and their team name text say's \\\"nerdist\\\".\", \"A group of 4 people appear next and there are 3 men and 1 woman and the team name text say's \\\"WWE Superstars\\\".\", \"Clips begin to play and it includes various people bowling, talking, demonstrating bowling, giving interviews, hanging out, laughing, playing around, shaving facial hair, doing pushups, eating, feeding one another and etcetera.\", \" Large yellow words on the screen appear and it say's \\\"Team Nerdist Wins!\\\" and the entire team gets up and celebrates.\", \" A nerdist team member happily speaks into the camera, and then unhappy member from another team unhappily speaks to the camera.\"]}, \"v_q-mpNUe0JNo\": {\"duration\": 137.02, \"timestamps\": [[0, 7.54], [7.54, 134.97], [7.54, 12.33], [24.66, 29.46], [39.05, 45.9], [91.12, 94.54], [120.58, 126.06], [126.06, 137.02]], \"sentences\": [\"We see a title card on a black screen.\", \" It changes to skateboarding performing tricks.\", \"We see a photographer taking pictures.\", \" A man jumps a fire hydrant.\", \" We see a man jump over stairs up close.\", \"  A man rides with lots of cameras flashing.\", \" The camera slows down and the scene ends.\", \" We see a black screen and credits.\"]}, \"v_U6Xnw2RGjsI\": {\"duration\": 17.07, \"timestamps\": [[0, 14.08], [14.17, 17.07]], \"sentences\": [\"A young man pumps up and down kneeling on both legs.\", \" The student jumps up from the kneeling position and lands on top of a stack of mat then lands on the ground.\"]}, \"v_HIIUd1osd_I\": {\"duration\": 235.52, \"timestamps\": [[0, 37.68], [47.1, 54.17], [58.88, 235.52]], \"sentences\": [\"People and dogs are walking down a trail.\", \" Pink flowers on a bush are shown.\", \" People are walking dogs on leashes down a street.\"]}, \"v_ojVY8I3GPa4\": {\"duration\": 166.02, \"timestamps\": [[0, 31.54], [32.37, 102.1], [102.93, 166.02]], \"sentences\": [\"A bull is in a ring, looking at the bullfighters on the outside.\", \" A bunch of fighters walk up behind it.\", \" They begin to fight with the bull, sometimes pulling his tail and waving the cape in front of him to make him charge.\"]}, \"v_EsGpVb1-W0E\": {\"duration\": 86.67, \"timestamps\": [[0, 45.07], [29.03, 86.67]], \"sentences\": [\"A man is seen speaking to the camera while holding a tennis racket and begins hitting the ball against the wall.\", \" He continues speaking to the camera and transitions to him hitting the ball.\"]}, \"v_eQ9cmxPKvT8\": {\"duration\": 225.16, \"timestamps\": [[0, 13.51], [14.64, 225.16], [212.78, 213.91]], \"sentences\": [\"A man in a gray sweat shirt is standing at a bus stop.\", \" He starts roller blading down a street and doing tricks.\", \" The man is skating backwards.\"]}, \"v_r7E7cVoJ0JE\": {\"duration\": 56.17, \"timestamps\": [[0, 4.21], [4.21, 19.1], [34.26, 56.17]], \"sentences\": [\"A man in black pants is standing on a roof and nailing a long shingle onto the roof.\", \"A man in blue shorts appears on the right and is also nailing long shingles on the roof.\", \"The zoom goes in on the an wearing long black pants and he's nailing shingles onto the outside perimeter of the roof.\"]}, \"v_AYhduTuI_zM\": {\"duration\": 229.3, \"timestamps\": [[5.73, 102.04], [84.84, 177.71], [174.27, 225.86]], \"sentences\": [\"A woman is seen playing a flute while a man speaks into a microphone and two people play the piano behind her.\", \" The woman pauses to speak to the man and the man takes the flute from her and plays.\", \" The man hands her back the flute to play and ends by still speaking to her.\"]}, \"v_UCZGbQFg6io\": {\"duration\": 117.82, \"timestamps\": [[0, 10.01], [12.37, 58.91], [50.66, 116.05]], \"sentences\": [\"An athletic man is seen running down a track into a pit.\", \" Several more people are seen running down the track into a pit.\", \" One after another more people jump.\"]}, \"v_9bFevj6bomQ\": {\"duration\": 58.21, \"timestamps\": [[0, 10.77], [10.77, 28.82], [16.88, 47.73], [43.37, 55.59]], \"sentences\": [\"A news anchor in white coat is talking in front of the camera.\", \" The player kicked the ball and hit the goal.\", \" Two players in the court started to argue and pushed each other and fight, one of the player threw the ball to the other person, the players started to chase and pushed each other, then team in blue uniforms walked away.\", \" Team in white uniforms stayed at the court and cheered.\"]}, \"v_cNCrFL2l83o\": {\"duration\": 148.86, \"timestamps\": [[4.47, 69.97], [69.22, 146.63]], \"sentences\": [\"A bald man is standing next to the counter with glass and stirrer in front of him.\", \" The man put ice in the glass, put clear liquid in the glass, added orange juice, he mix the contents as he pour the orange juice, then add red liquid that fell under the orange juice.\"]}, \"v_SH0t2-GgwiQ\": {\"duration\": 118.75, \"timestamps\": [[1.19, 58.19], [58.19, 85.5], [86.09, 116.37]], \"sentences\": [\"A woman talks and lie down on the floor, then she bend her legs and lift both.\", \" Then, the woman lifts the two legs straight.\", \" After, the woman lifts only one leg and the other leg rest bend on the floor.\"]}, \"v_JY-H1u1hJZw\": {\"duration\": 81.91, \"timestamps\": [[0, 11.47], [11.47, 81.91], [43.82, 81.91]], \"sentences\": [\"The little boy sits in the blue kayak holding paddles.\", \" Then someone else is shown paddling in the water and there are people standing on shore.\", \"  The camera turns around a few times to show the trees and the sky.\"]}, \"v_nJMS8jN3uU4\": {\"duration\": 51.39, \"timestamps\": [[7.96, 24.41], [24.41, 40.08], [40.08, 49.33]], \"sentences\": [\"There are four kids of varying ages playing kick ball in their backyard.\", \" The girl in pink kicks the ball to her brother in the orange shirt while the little kids run around and play.\", \" There's a little baby sitting on the ground in a baby bouncer watching them play.\"]}, \"v_lmYmYYXs1mo\": {\"duration\": 193.42, \"timestamps\": [[0, 10.64], [10.64, 60.93], [60.93, 183.75], [183.75, 193.42]], \"sentences\": [\"A man is standing at a counter with a Smith knife.\", \"  He demonstrates how to sharpen the knife.\", \" He pours oil on the sharpening tool and runs the knife over it.\", \" He cleans the tool and puts it away.\"]}, \"v_YnFDzvuDJSQ\": {\"duration\": 204.22, \"timestamps\": [[0, 32.68], [33.7, 86.79], [88.84, 148.06], [148.06, 204.22]], \"sentences\": [\"A woman in red is standing beside a table explaining some things.\", \" she puts her hand on the christmas tree and talks some more about it.\", \" She grabs some red ribbon and begins to tie into a bow.\", \" She then goes to place it on to the christmas tree and continues to speak about it.\"]}, \"v_MIAhrxkYadk\": {\"duration\": 155.6, \"timestamps\": [[3.11, 12.45], [12.45, 20.23], [20.23, 100.36], [69.24, 96.47], [100.36, 143.93], [143.93, 152.49], [154.04, 155.6]], \"sentences\": [\"Hair styling tools are shown in closeup.\", \" A woman walks down a street an into a salon.\", \" The woman interacts with a man in the salon.\", \" The man and woman look at pictures of hairstyles together.\", \" Scenes of the woman with her hair being cut and styled are shown.\", \" The man and woman interact as they examine her new style.\", \" A closeup of hair on the floor is shown.\"]}, \"v_e5e16U5hnzY\": {\"duration\": 151.28, \"timestamps\": [[0, 37.06], [37.06, 67.32], [68.08, 108.16], [106.65, 151.28]], \"sentences\": [\"A man and women are talking to a camera and the girl demonstrates on how to properly hold a discuss.\", \" Secondly she shows the proper stance of throwing the item and throws the discuss how into the air.\", \" She demonstrates bending down and spinning with the disk and does one throw full out.\", \" The man then tries to throw how the woman did and attempts to throw more and get better.\"]}, \"v_Epl3pExUuNs\": {\"duration\": 136.02, \"timestamps\": [[0, 125.14], [125.14, 128.54], [131.26, 136.02]], \"sentences\": [\"People are sitting in bumper cars crashing into each other.\", \" They stop and get out of the cars.\", \" A boy in a white shirt walks out with a boy in a blue shirt.\"]}, \"v_sUrqd6Qn8Qw\": {\"duration\": 44.24, \"timestamps\": [[0, 11.94], [11.06, 31.19], [27.43, 43.79]], \"sentences\": [\"A woman is seen sitting on a piece of exercise equipment with her arms and legs strapped in.\", \" The woman is seen moving back and fourth on the machine while looking forward.\", \" The woman continues to move on the machine while the camera watches her movements.\"]}, \"v_u0PEB9bXWpY\": {\"duration\": 167.56, \"timestamps\": [[0, 3.35], [4.19, 23.46], [24.3, 87.13], [86.29, 111.42], [119.8, 149.96], [152.48, 167.56]], \"sentences\": [\"We see an opening title screen.\", \" A lady shows off her fingernails.\", \" The lady puts drops of white paint on her finger nails.\", \" The lady uses a toothpick and drags it through the white paint.\", \" She doe another fingernail with the same process.\", \" The lady shows us the flower designs on her nails.\"]}, \"v_LAU_pVRs9RQ\": {\"duration\": 25.87, \"timestamps\": [[0, 8.28], [5.3, 11.77], [10.99, 25.87]], \"sentences\": [\"Two men are sitting at the table with their arms on the table, they are positioned for arm wrestling.\", \" A in blue shirt is standing at the center holding both hands of the player.\", \" The man with the bear broke his arm after the other man push it down.\"]}, \"v_Djlmto9iibw\": {\"duration\": 88.63, \"timestamps\": [[0, 15.51], [15.51, 38.11], [38.11, 46.97], [46.97, 70.9], [71.35, 88.63]], \"sentences\": [\"A dog is swimming in a small pool.\", \" He is being rubbed with shampoo.\", \" He is back in the water getting cleaned.\", \" A person is spraying the dog with a hose.\", \" The dog is then put in a metal pen.\"]}, \"v_sWEbq5Ry63Q\": {\"duration\": 234.2, \"timestamps\": [[0, 39.81], [38.64, 120.61], [118.27, 158.08], [163.94, 234.2]], \"sentences\": [\"A man is shown point to a bicycle tire and cutting a piece of wire using pliers.\", \" He then moves to bars around and spinning the wheel followed by a stick pressing against the tire.\", \" He pushes a tube into the tire and adjusts the wires using a device.\", \" He tests the wheel out thoroughly and assures the bike is ready to go.\"]}, \"v_HKkzII7ap7E\": {\"duration\": 209.34, \"timestamps\": [[0, 38.73], [38.73, 86.88], [87.92, 123.51], [124.56, 163.29], [163.29, 174.8], [174.8, 209.34]], \"sentences\": [\"A woman is talking to a camera.\", \" She picks up a flute and starts playing.\", \" She puts the flue down on her lap and continues talking.\", \" She puts the flute back up to her mouth and continues to play.\", \" She puts the flute back down and nods her head.\", \" She puts the flute back up to her lips and plays.\"]}, \"v_8UvKQnfXnCk\": {\"duration\": 78.02, \"timestamps\": [[0, 78.02], [2.34, 5.07], [22.63, 78.02]], \"sentences\": [\"A person is water skiing behind a boat.\", \" Another boat is seen in the water behind them.\", \" They are going around yellow cones in the water.\"]}, \"v_l0aksT_7wKo\": {\"duration\": 30.95, \"timestamps\": [[0, 11.61], [10.37, 30.95]], \"sentences\": [\"A man is seen laying on the floor while speaking out loud and crossing his arms overs his chest.\", \" The man then does several crunches in various ways and ends by speaking to the camera.\"]}, \"v_M0cKfbLMlSA\": {\"duration\": 209.77, \"timestamps\": [[0, 4.2], [4.2, 183.55], [33.56, 138.45], [148.94, 153.13], [183.55, 209.77], [187.74, 206.62]], \"sentences\": [\"Two pairs of men are getting ready to box.\", \" Both pairs of men are seen boxing.\", \" Another pair of men are seen talking and gesturing about boxing in the distance.\", \" The main pair of boxers take a short break.\", \" All groups stop boxing and begin to talk.\", \" One of the men begins hanging on a rope and swinging forwards and backwards.\"]}, \"v_bCtiTOEf9KI\": {\"duration\": 14.3, \"timestamps\": [[4.15, 8.65], [8.65, 12.73], [12.73, 13.23]], \"sentences\": [\"A woman dressed in a black tank top and black tights is doing stomach crunches on a mat.\", \" She is exercising on a hardwood floor in the gym.\", \" She continues doing her stomach crunches.\"]}, \"v_bW4AfWvteIo\": {\"duration\": 56.98, \"timestamps\": [[1.14, 24.79], [24.22, 55.84]], \"sentences\": [\"An intro leads into a close up of a fooseball table and panning around several specs of the table.\", \" Two people are seen playing with one another while the camera shows the table in several spots and the boys high fiving one another.\"]}, \"v_NNuIaUFYGCE\": {\"duration\": 52.08, \"timestamps\": [[0, 26.04], [18.49, 52.08]], \"sentences\": [\"Various pictures of people painting are shown using several tools on hard walls.\", \" More pictures are shown of people plastering with various text images shown inside.\"]}, \"v_YCHmXwLhs3A\": {\"duration\": 213.76, \"timestamps\": [[0, 213.76], [54.51, 69.47], [96.19, 107.95], [127.19, 133.6], [160.32, 167.8], [171.01, 177.42]], \"sentences\": [\"A man is assembling a bike on a table.\", \" He is putting training wheels on the back wheel of the bike.\", \" He puts the front tire on the bike.\", \" He puts the handlebars on the bike.\", \" He puts the pedals onto the bike.\", \" He puts the seat onto the bike.\"]}, \"v_kYrztBFfaZ8\": {\"duration\": 33.76, \"timestamps\": [[0, 1.69], [3.21, 8.27], [18.74, 20.93]], \"sentences\": [\"A man swings a baseball bat.\", \" He hits a ball and it goes onto a roof.\", \" A man is running and throwing a ball.\"]}, \"v_XZ1IuZjsk8A\": {\"duration\": 62.72, \"timestamps\": [[0, 41.08], [41.08, 47.67], [52.68, 58.01], [59.27, 62.72]], \"sentences\": [\"A woman is pouring shots of alcohol into a glass of ice.\", \" She shakes the glass and sets it down.\", \" She then pours it into another glass and sticks a straw in it.\", \" She holds up the drink while talking.\"]}, \"v_p8uTRV3u3JM\": {\"duration\": 79.87, \"timestamps\": [[0, 79.88], [13.98, 16.77], [63.9, 79.88]], \"sentences\": [\"Two groups of men wearing uniforms, one with dark shirts and one with white shirts, are playing on an indoor volleyball court.\", \" The man in the darker jersey wearing number 17 dives to the ground to save the ball.\", \" A team member wearing a dark shirt spikes the ball but it goes out of bounds and the team with the lighter shirts cheer on while the guy who spiked the ball out of bounds bends over in disappointment.\"]}, \"v_QuU6I9w1btI\": {\"duration\": 82.94, \"timestamps\": [[0, 11.61], [10.37, 59.3], [22.81, 70.92], [60.13, 82.53], [68.84, 82.53]], \"sentences\": [\"Two vacuums one taller and one is shorter is show.\", \" The vacuum is being use on the carpet, wooden floor, on the corner, under the table and on the side of the trash can and then the carpet.\", \" A hand is pulling out a tube, used the tube to vacuum the stairs and the corner of the ceiling, then a hand took out the tube and threw away the dust from the transparent tube.\", \" A woman is carrying the vacuum and put it in the storage.\", \" A woman is walking at the factory, then a person is drawing the vacuum in a white sheet.\"]}, \"v_Cdiv-IzHcjQ\": {\"duration\": 151.91, \"timestamps\": [[0, 135.2], [53.93, 55.45], [97.22, 125.32], [150.39, 151.91]], \"sentences\": [\"A person irons a brown paper.\", \" The person flips the iron around and continues ironing.\", \" The peels the ironed paper off and lays it down.\", \" The person leaves the iron on a new brown paper.\"]}, \"v_SbY68ygmuEA\": {\"duration\": 119.05, \"timestamps\": [[0, 73.22], [76.79, 119.05]], \"sentences\": [\"A crowd watches as several runners in a race jog past.\", \" They all keep jogging, coming in at the end of the race.\"]}, \"v_m7cHlmcFk9Y\": {\"duration\": 181.63, \"timestamps\": [[0, 29.06], [36.33, 133.5], [138.94, 181.63]], \"sentences\": [\"A cat is in a woman's lap in the bathroom.\", \" She pulls a towel over the cat's head.\", \" She then gently tries to clip his claws one at a time.\"]}, \"v_D9EQ6jCH0_M\": {\"duration\": 210.48, \"timestamps\": [[35.78, 45.25], [46.31, 69.46], [93.66, 169.44], [186.27, 195.75]], \"sentences\": [\"A woman is scrubbing a white chair with a yellow sponge.\", \" She is now pouring something onto a rag and washing a white table.\", \" She is spray painting the chair and table she just washed.\", \" The finished furniture is shown.\"]}, \"v_Exu0qsz42fQ\": {\"duration\": 197.39, \"timestamps\": [[0, 40.47], [40.47, 69.09], [69.09, 117.45], [117.45, 197.39]], \"sentences\": [\"A young child is sitting playing on a drum set.\", \" Using his foot for the base and drumming on the snare like a natural.\", \" A woman is on a piano playing along with the child.\", \" They have a small audience sitting and watching them perform.\"]}, \"v_Fdjw9ld-hbA\": {\"duration\": 6.08, \"timestamps\": [[0, 0.97], [0.85, 2.98], [2.95, 6.08]], \"sentences\": [\"A man dressed in a blue uniform is fighting against a male dressed in an all red uniform.\", \"The man in the red,picks him up and drops him down on the wrestling match.\", \"After,the referee drops down and pounds the mat counting down the end of the match.\"]}, \"v_FLbTQGyoEMk\": {\"duration\": 41.11, \"timestamps\": [[0, 6.99], [7.19, 25.08], [25.9, 40.5]], \"sentences\": [\"A young woman speaks as she smiles.\", \" She squeezes the side of her right eye and pokes out a contact lens.\", \" She moves on to her left eye and pokes out a contact lens.\"]}, \"v_rDADR0Lg4U8\": {\"duration\": 101.05, \"timestamps\": [[0, 21.73], [22.23, 84.89], [85.39, 101.05]], \"sentences\": [\"A group of female players walk onto a court behind their coach.\", \" They engage in a lacrosse game, fighting over the ball with their bats.\", \" The girls celebrate their win with flowers and hugs.\"]}, \"v_YwUW6Qh_5TA\": {\"duration\": 87.91, \"timestamps\": [[0, 17.14], [17.58, 55.38], [48.35, 82.2]], \"sentences\": [\"A gymnast is seen standing with his arms out and hops on a board.\", \" He then begins spinning himself around while judges watch on the sides.\", \" He continues his routine and jumps down with his arms up.\"]}, \"v_ZREM_AcXHX8\": {\"duration\": 227.63, \"timestamps\": [[0, 64.87], [68.29, 168.44], [157.06, 225.35]], \"sentences\": [\"A new segment leads into clips of a woman speaking to the camera and holding up a bow and arrow.\", \" The girl shoots the bow while still speaking to the camera and bending the bow.\", \" She continues speaking while using her hands and showing off pictures to the camera.\"]}, \"v_XGj9lakgSic\": {\"duration\": 128.57, \"timestamps\": [[0, 17.36], [20.57, 120.21], [36.64, 112.5], [82.28, 87.43], [124.71, 128.57]], \"sentences\": [\"A girl dances as she sits in a booth.\", \" The girl mixes ingredients together in a pot.\", \" The girl adds dried ingredients to the pot.\", \" The girl adds tomato and eggs from a plate to the pot.\", \" The girls waves goodbye and leans back on the booth.\"]}, \"v_iXLXRHHFp60\": {\"duration\": 172.46, \"timestamps\": [[8.62, 161.25], [43.98, 161.25], [85.37, 161.25], [103.47, 161.25], [109.51, 161.25], [162.97, 169.01], [167.28, 169.01]], \"sentences\": [\"There's a brown horse tied outside a polo club.\", \" There are several jockeys playing polo on the field in an event.\", \" There are also several spectators standing and watching the event.\", \" One of the polo players is trotting on the horse across the field.\", \" Another game of polo takes place where several spectators are watching.\", \" After the event is over, the judge hands awards to the winners.\", \" There's a British flag flying high in the field.\"]}, \"v_OsiES8BiRac\": {\"duration\": 226.14, \"timestamps\": [[0, 5.65], [5.65, 217.09], [140.21, 146.99], [62.19, 193.35], [208.05, 223.88]], \"sentences\": [\"A belly dancer walks onto the stage from behind the curtains.\", \" The belly dancer dances on stage shaking her hips and body.\", \" The belly dancer spins in circles during the performance.\", \" The dancers turns with her back to the audience and dances.\", \" The dancer bows at the end of the performance.\"]}, \"v_aXXes0e-eM0\": {\"duration\": 46.93, \"timestamps\": [[0, 46.93], [10.09, 46.93]], \"sentences\": [\"two kids are in a litle car watching a little kid holding a pole hitting a lightning mcqueen pi\\u00f1ata.\", \" people are gathered around the little kid.\"]}, \"v_tDG8VoRQTuM\": {\"duration\": 174.2, \"timestamps\": [[27.87, 53.13], [53.13, 74.9], [74.9, 104.52], [104.52, 128.91], [128.91, 165.49], [165.49, 174.2]], \"sentences\": [\"There are two people talking about stilts used by stunt men.\", \" They are standing on a street near several clubs and restaurants.\", \" One of the men is demonstrating how the stilts are used in stunts.\", \" Henry, the guy dressed in the white shirt is showing how high he can jump with the stilts and perform stunts.\", \" He shows numerous tricks on how he jumps up high and over benches and tables.\", \" He shows how he uses the Power Riser jumping skills on the streets and in the park.\"]}, \"v_l7rzaG3aDyw\": {\"duration\": 229.37, \"timestamps\": [[0, 193.82], [57.34, 229.37]], \"sentences\": [\"A woman is seen performing a belly dancing routine on a stage with flowers hanging in the background.\", \" She continues performing her routine and ends by spinning around and posing.\"]}, \"v_0rX2f0H3AaA\": {\"duration\": 83.36, \"timestamps\": [[0, 5.84], [6.25, 42.51], [42.1, 83.36]], \"sentences\": [\"A white screen is shown and several words are shown on the screen.\", \"Then a blue mat is shown and an individual begins sweeping and laying the blue mat against the mat.\", \"The man takes out a measuring tape and cuts off a piece of the blue mat and continues covering the floor.\"]}, \"v_drjYCuezfA8\": {\"duration\": 95.55, \"timestamps\": [[1.43, 18.15], [11.47, 54.46], [45.39, 95.55]], \"sentences\": [\"A woman in white shirt is standing next to a metal sink, she take out two white plates, silver container, strainer, spoons, and placed it on the metal container next to the sink.\", \" She then take a pan in the sink, put water, put liquid soap in a sponge, rub it on the plates, lid, container, spoons.\", \" She wiped the counter with her hand, then placed a green basket, rinse the plates, lid, container, pan, and put them in the basket.\"]}, \"v_Aqx7rM9gZgg\": {\"duration\": 102.35, \"timestamps\": [[0, 102.35], [0, 1.02], [16.89, 25.08], [25.08, 35.31], [34.8, 56.29], [61.92, 83.42], [87, 100.31]], \"sentences\": [\"A woman in a blue shirt stands next to a brown horse.\", \" She holds onto the horses red lead.\", \" She is brushing the side of the horse.\", \" She steps away from the horse and bends down.\", \" She picks up a larger brush and begins brushing the horse again.\", \" She is brushing the horses face and neck.\", \" She is brushing the horses front leg in a downward motion.\"]}, \"v_SXRSA62VbZg\": {\"duration\": 197.7, \"timestamps\": [[25.7, 42.5], [42.5, 69.19], [69.19, 82.04], [82.04, 87.97], [87.97, 104.78], [104.78, 162.11], [162.11, 183.86], [183.86, 189.79]], \"sentences\": [\"A tattoo salon has displayed a metallic blue motor cycle.\", \" there's a person sitting on the counter of the salon.\", \" A customer walks in and gives a child's picture to the tattoo artist.\", \" The tattoo artist traces the child's picture on a paper.\", \" Then he cleans the client's arms with alcohol.\", \" The artist wears a pair of latex gloves and begins tattooing the client's arm.\", \" He replicates the image traced from the picture on the client's arm along with some additional designs.\", \" He then takes a picture of the client's tattooed arm on a cellphone.\"]}, \"v_kLflIBGCNrc\": {\"duration\": 122.32, \"timestamps\": [[0.61, 62.38], [49.54, 117.43]], \"sentences\": [\"A large group of people are seen swimming around a pool playing a game while the video pauses to show off players.\", \" The camera continues to pan around the players swimming all around the pool throwing a ball and others reacting on the sidelines.\"]}, \"v_qAMf2UUH1xI\": {\"duration\": 144.71, \"timestamps\": [[0, 18.09], [18.09, 133.13], [42.69, 57.88], [75.97, 99.12], [116.49, 124.45], [133.13, 144.71]], \"sentences\": [\"A person jumps in the ocean and we see them being pulled on a line.\", \" We see divers underwater and see sealife and people on boats.\", \" A person with a camera on their head jumps from the boat into the water.\", \" Two men wave and we see sealife including a dolphin swimming next to the boat.\", \" A lady pretends to beat a man up by hitting him in the head while underwater.\", \" We see the ending title screen.\"]}, \"v_3CO7fRiJOy4\": {\"duration\": 24.2, \"timestamps\": [[0, 3.75], [3.99, 16.94], [17.18, 24.2]], \"sentences\": [\"Several small children drive around in bumper cars.\", \" One of them continuously spins in circles.\", \" She rides alone after the others have left.\"]}, \"v_Fde_qSwXRzY\": {\"duration\": 97.69, \"timestamps\": [[0, 52.26], [53.73, 97.69]], \"sentences\": [\"Two boy scouts are seen standing and speaking to a large group of people and attempting to light a match.\", \" One cups his hands and creates a flame using oxygen and puts the flame into a pit.\"]}, \"v_oZgyW8Yca_M\": {\"duration\": 97.00999999999999, \"timestamps\": [[0, 97.01], [4.85, 22.8], [23.77, 36.38], [40.26, 72.27], [74.7, 89.25]], \"sentences\": [\"A woman at a beach talks to the camera.\", \" The camera pans back and forth to show activity other beachgoers' activity around the woman.\", \" The woman dumps a bucket of sand on the beach.\", \" The woman combines sand and water in a bucket.\", \" The woman dumps the mixture out on the beach.\"]}, \"v_-wcSkAAeOK8\": {\"duration\": 224.85, \"timestamps\": [[2.25, 51.72], [37.1, 85.44], [91.07, 212.49]], \"sentences\": [\"A woman is seen speaking to the camera while standing in front of an exercise bike.\", \" The woman continues speaking and begins climbing onto the bike.\", \" She spins herself around on the bike while sitting and standing and the camera panning around the girl.\"]}, \"v_tLxv2E7gj5c\": {\"duration\": 30.72, \"timestamps\": [[0, 17.66], [9.98, 30.72]], \"sentences\": [\"Two people are seen running inside an indoor closed room and hitting a tennis ball around with rackets.\", \" The men continue running around hitting the ball off the wall.\"]}, \"v_rmMCA60HqZ0\": {\"duration\": 128.52, \"timestamps\": [[0, 112.46], [38.56, 76.47], [113.1, 115.67]], \"sentences\": [\"A fat women and a thin woman talk face to face in a beauty salon.\", \" The fat woman talks and the thin woman wash and puts cream to her face.\", \" Then, the fat woman pass a device over the face of the thin woman.\"]}, \"v_72PUOTjZpQU\": {\"duration\": 74.77, \"timestamps\": [[0, 15.7], [12.71, 59.07], [51.22, 69.91]], \"sentences\": [\"A large group of people are seen standing in a gymnasium with two people in front.\", \" The group then begins dancing with one another and leads into another large group of people.\", \" People are seen speaking to the camera and leads into them jumping up in the end.\"]}, \"v_fqWjjWqsJPU\": {\"duration\": 179.77, \"timestamps\": [[0, 26.97], [27.86, 179.77]], \"sentences\": [\"A man speaks to the camera which follows an intro screen to him skating.\", \" He continues talking to the camera and performing various tricks on his board throughout the area.\"]}, \"v_jEGTpBJrD4s\": {\"duration\": 188.11, \"timestamps\": [[0, 15.05], [41.38, 62.07], [65.84, 133.55]], \"sentences\": [\"This man is shown playing one drum in the beginning of the video and he says a few words.\", \" Then a man sits next to him and starts to play his guitar and the other man slowly joins to start playing the drums.\", \" The man who is sitting next to the man playing the drums is not only playing the guitar, but he's singing too.\"]}, \"v_8eMjzrhxv2U\": {\"duration\": 76.38, \"timestamps\": [[0, 7.26], [7.26, 53.85], [53.09, 57.29], [63.4, 72.18], [72.18, 76.38]], \"sentences\": [\"We see a man walking on the ice.\", \" He moves a stick and pulls a fishing line out of a hole.\", \" The man pulls a fish out of the hole.\", \" He picks the fish up and shows us the fish.\", \" The man then throws the fish back into the hole.\"]}, \"v_tzsgg_o6xHo\": {\"duration\": 98.2, \"timestamps\": [[0, 33.39], [33.88, 54.01], [54.5, 98.2]], \"sentences\": [\"A woman in man in black clothing stand in together and discuss a routine.\", \" The woman begins dancing and goes in a circle a few times while the man watches.\", \" The woman continues discussing the routine then holds hands with her partner and they begin dancing together.\"]}, \"v_8ATFQNEWHL0\": {\"duration\": 59.42, \"timestamps\": [[0, 9.21], [9.21, 59.42]], \"sentences\": [\"A woman is talking about how to make a salad.\", \"  She breaks up the lettuce into smaller parts.\"]}, \"v_XxM72xEvsjE\": {\"duration\": 83.92, \"timestamps\": [[0.42, 45.32], [27.69, 80.56]], \"sentences\": [\"A man and young child are seen pushing a lawn mower across the yard while the boy smiles to the camera.\", \" The man and boy continue to push the lawn mower along the yard while stopping to look at the camera.\"]}, \"v_XThYcZoFMMs\": {\"duration\": 217.99, \"timestamps\": [[0, 57.77], [57.77, 82.84], [82.84, 156.95], [156.95, 217.99]], \"sentences\": [\"All the ingredients you need to make butter cake are on the counter, someone is pointing at each ingredient and starts grabbing them.\", \" They use a mixer to mix some of the ingredients together.\", \" They add the eggs in one by one while the mixer is still mixing and then they turn it off and add some more in.\", \" They use a pan and and put a bottom in it and scoop out the mixture into it before finally getting ready to put it into the oven to bake.\"]}, \"v_lfuNoeRYWz4\": {\"duration\": 104.97999999999999, \"timestamps\": [[0, 5.25], [8.4, 30.97], [32.02, 87.66], [88.18, 104.98]], \"sentences\": [\"Text is shown from the centers for disease control regarding proper handwashing.\", \" A woman is shown soaping her hands while water is running in a sink.\", \" She reaches for a towel and then turns the faucet one with one hand.\", \" She soaps her hands, then rinses with the water before grabbing another towel to turn off the faucet, and discarding the towel.\"]}, \"v_ZUZ7EVzHS5E\": {\"duration\": 51.41, \"timestamps\": [[0, 12.85], [12.08, 38.04], [38.3, 51.41]], \"sentences\": [\"A group of men are outside in a large field on horses playing a game of polo.\", \"Player number three takes the ball all the way to the end of the field and he is then trailed by four other people.\", \"Once they leave the end of the field,they all begin trotting back to the middle by the referee on a horse.\"]}, \"v_RAmQyeaBu-k\": {\"duration\": 172.9, \"timestamps\": [[0, 45.82], [42.36, 131.4], [129.67, 162.52]], \"sentences\": [\"Several shots are shown of signs and landscapes and leads into a person tying a rope.\", \" Several people are seen wandering around and smiling to the camera as well as climbing up a rock.\", \" More people are seen climbing up the rock as well as a man climbing down.\"]}, \"v_QLbWA54l1Sg\": {\"duration\": 94.22999999999999, \"timestamps\": [[0, 11.78], [11.78, 65.49], [18.85, 39.58], [54.18, 65.96], [77.27, 90.46]], \"sentences\": [\"The two people hold out hands to begin an arm wrestling match.\", \" The women compete in an arm wrestling match seated at a table.\", \" The women switch hands and and arm wrestle with their left hands.\", \" The women have a rematch with their dominate hands.\", \" The two athletes flex their arms.\"]}, \"v_j1oB2NAlYsQ\": {\"duration\": 202.29, \"timestamps\": [[25.29, 55.63], [55.63, 94.07], [94.07, 137.56], [137.56, 156.78], [156.78, 183.08], [183.08, 194.2]], \"sentences\": [\"There is a diver wearing yellow swim trunks is diving from a diving board in an indoor swimming pool.\", \" He jumps off of the diving board several times as some other people are leisurely swimming in the pool.\", \" He does the backward and forward diving moves as another young man watches him dive right into the pool.\", \" Then another young man dives from the same diving board.\", \" They both do the forward diving move.\", \" Another diver goes up much higher and dives right into to pool.\"]}, \"v_HPyLSmDjsHY\": {\"duration\": 171.52, \"timestamps\": [[0, 140.64], [140.64, 171.52]], \"sentences\": [\"A young girl is seen sitting in front of a camera and presents various nail objects to the camera.\", \" She then begins painting all her nails thoroughly and ends the video with various pictures of her and her nails.\"]}, \"v_2Vf8yqNHaGM\": {\"duration\": 29.0, \"timestamps\": [[0.87, 27.41], [4.93, 26.97]], \"sentences\": [\"A little boy in a yellow shirt is holding a yellow ruffled stick.\", \" He tries to hit the Batman pinata hanging, he missed then he hit him, he go around the pinata to hit it.\"]}, \"v_4WNso9fVJG8\": {\"duration\": 110.9, \"timestamps\": [[9.98, 41.03], [27.17, 99.25]], \"sentences\": [\"A woman with short hair is wearing an earphone and eyeglasses is showing two clips, then she clipped both sides of her hair, showed her blue and white contact lenses containers and removed her eyeglasses.\", \" She showed her hand, then showed a sclera lenses, and put it on her right eye pupil, went closer to the camera to show her eye, then removed the contact lens from her eye by pinching it.\"]}, \"v_0fNBm46reNg\": {\"duration\": 89.07, \"timestamps\": [[1.78, 46.32], [14.7, 66.8], [69.03, 89.07]], \"sentences\": [\"A small group of people are seen pulling mulch into a bin when another is seen raking around the tree.\", \" They continue to scrape out of the mulch while measuring out the area and leads into one cutting the grass around the tree.\", \" They lay out more dirt evenly while some are grabbing bags behind them.\"]}, \"v_pT2fO9vlVn0\": {\"duration\": 82.5, \"timestamps\": [[0, 14.85], [14.03, 35.06], [35.48, 77.55], [77.14, 82.5]], \"sentences\": [\"A man is shown in a gym class leading at as the people step up and down on thier steppers.\", \" The man is very enthusiastically jumping up and down trying to keep the motivation going.\", \" He is very into it as is the class and they are dancing in sync with each other.\", \" They conclude the routine by clapping and celebrating their hard work.\"]}, \"v_IZCzbslH8jo\": {\"duration\": 163.17000000000002, \"timestamps\": [[0, 14.69], [17.13, 96.27], [99.53, 163.17]], \"sentences\": [\"A woman is on a court playing with a stick.\", \" She hits a ball on the court.\", \" She demonstrates how to swing and hit the ball.\"]}, \"v_UYFDYX4i2EY\": {\"duration\": 121.37, \"timestamps\": [[0, 110.45], [110.45, 121.37]], \"sentences\": [\"A man is standing on a stage performing different moves.\", \" He walks off the stage and someone else walks onto the stage.\"]}, \"v_TPu-vPWJtIA\": {\"duration\": 101.72999999999999, \"timestamps\": [[0, 31.03], [31.54, 35.6], [35.6, 79.35], [52.9, 54.42], [57.98, 58.49], [75.79, 84.43], [72.23, 101.22]], \"sentences\": [\"Women in leotards dance together in a line.\", \"  Women jump into the pool.\", \"  Women synchronize dance in the pool.\", \"  Announcers talk to the camera.\", \"  Men in the side of pool talk.\", \"  Man in yellow talks to the camera.\", \"  Man in pink leotard jumps out of the pool.\"]}, \"v_cRTsarldNlc\": {\"duration\": 25.54, \"timestamps\": [[0, 4.34], [3.96, 9.71], [8.05, 16.35], [16.73, 25.54]], \"sentences\": [\"a boy stands on a field with a shot put in hand.\", \" The boy begins to spin around.\", \" The boy throws the shot put.\", \" The spins and throws another shot put.\"]}, \"v_Ou24uqaFRPg\": {\"duration\": 50.48, \"timestamps\": [[0, 50.48], [9.84, 12.87], [15.4, 17.42], [17.67, 25.49], [25.75, 37.1], [31.05, 37.1], [37.36, 41.14], [41.65, 50.48]], \"sentences\": [\"A furniture renovation company advertises their services by showing several homes and tools they have worked on and use and what type of work they do.\", \" A man in an apron carefully puts a colored substance on a plate.\", \" The man mixes two of the different colored substances with a paint brush.\", \" The man carefully touches the paint brush to an old table coloring portions of the table that have been damaged.\", \" A different man in an apron and face mask sands an old table.\", \" The man then puts polish on a rag and polishes the table.\", \" The man polishes a different old table.\", \" Information on how to reach the restoration company is displayed.\"]}, \"v_p74gAY-kWaY\": {\"duration\": 59.63, \"timestamps\": [[0.6, 19.98], [18.19, 41.14], [37.27, 58.44]], \"sentences\": [\"A woman is seen standing beside a girl sitting down brushing her hair.\", \" A boy watches on the side as the woman continues to brush the hair.\", \" The woman speaks to the girl while running the brush all over her hair.\"]}, \"v_LG7p5JrgMfE\": {\"duration\": 161.32999999999998, \"timestamps\": [[10.49, 37.11], [37.11, 49.21], [49.21, 66.95], [66.95, 82.28], [82.28, 114.55], [114.55, 155.69], [155.69, 159.72], [159.72, 161.33]], \"sentences\": [\"A man dressed in a black suit and woman dressed in a black dress are dancing together to Latino music.\", \" They are doing a combination of ball room dancing and waltz.\", \" They are dancing on the sidewalk of a city where there are several bystanders observing and watching them dance.\", \" They continue dancing hand in hand to the music.\", \" A group of people standing on the right begin to applaud them.\", \" The couple continues to swirl and twirl as the music plays and more people in the crowd applaud.\", \" The lady finally jumps into the man's arms as the music comes to an end.\", \" The crowd cheers and applaud's loudly at the couple.\"]}, \"v_TtrDWeSW3mg\": {\"duration\": 204.22, \"timestamps\": [[12.25, 47.99], [47.99, 87.81], [87.81, 107.22], [107.22, 135.81], [135.81, 151.12], [151.12, 167.46], [167.46, 188.9], [188.9, 201.16]], \"sentences\": [\"How To Expo is demonstrating how to make a three bean salad with black beans, garbanzo beans and kidney beans.\", \" The presenter shows minced garlic, chopped onions and chopped red bell pepper, along with chopped parsley and one teaspoon of cumin.\", \" She also shows the dressing ingredients like olive oil, red wine vinegar and salt.\", \" Then she takes a large bowl and begins mixing all the ingredients together.\", \" She mixes everything with the three types of beans.\", \" She takes large spatula and mixes everything well.\", \" then she takes some olive oil and vinegar and mixes it together for the dressing.\", \" She pours the salad into a plate and tops is with the salad dressing.\"]}, \"v_Vx4ZW7Xseyg\": {\"duration\": 164.4, \"timestamps\": [[0, 164.4], [33.7, 164.4], [43.57, 164.4]], \"sentences\": [\"A guy is diving off a diving board doing flips in the air and lands in a pool of water,the guy dives and do different flips many different times.\", \"the man seems to be practicing his dives and flips of the diving board.\", \"the guy is trying to jump his highest to get a better diving flip.\"]}, \"v_KJQi_5e72lM\": {\"duration\": 217.57, \"timestamps\": [[0, 44.6], [45.69, 121.84], [121.84, 165.35], [170.79, 213.22]], \"sentences\": [\"A man is seen talking to the camera as he sets up a ski on a work bench inside of a Ski shop.\", \" After lining up the ski and securing it on the bench he uses a plastic card and goes over the bottom of the ski three times.\", \" Afterwards he uses a bristled brush and scrubs the bottom of the ski.\", \" Finally he uses a soft brush and runs it over the ski once more .\"]}, \"v_H5kerJ_FoBU\": {\"duration\": 60.05, \"timestamps\": [[0, 3.3], [7.51, 60.05], [3.6, 60.05], [54.34, 60.05]], \"sentences\": [\"The video starts with a title screen shot.\", \" A man in a white shirt is showing applying plaster to a room.\", \" As he applies the plaster, a voice is describing the techniques used by the company.\", \" The video ends as the man reaches the end of the room.\"]}, \"v_aIvWwX--xKw\": {\"duration\": 83.62, \"timestamps\": [[0, 9.2], [7.94, 12.54], [12.96, 35.95], [33.03, 39.3], [43.9, 61.46], [65.22, 71.49]], \"sentences\": [\"A woman is standing behind a counter in a kitchen.\", \" She takes the lid off of a pot of salad.\", \" She moves the salad into a new bowl.\", \" She takes the towel and puts it over the lettuce.\", \" She takes the lettuce and puts it in a wooden bowl.\", \" She tosses the salad with two spoons.\"]}, \"v_zHzKPtrgv1k\": {\"duration\": 101.94, \"timestamps\": [[0, 25.48], [25.48, 101.94]], \"sentences\": [\"A set of kids are in bumper cars and begin driving and hitting each other.\", \"One of the young kids runs into wall and the males who are operating the ride assist the child.\"]}, \"v_o8EOFXW5GJo\": {\"duration\": 185.34, \"timestamps\": [[0, 32.43], [38.92, 116.77], [101.94, 183.49]], \"sentences\": [\"Several shots of plates are shown with food leading into a man preparing food.\", \" The man then puts more food into a plate and spinning around ingredients.\", \" He continues to put food onto a plate and ends by presenting it to the camera.\"]}, \"v_saMBbZcDAjM\": {\"duration\": 22.08, \"timestamps\": [[0.11, 11.26], [9.05, 21.97]], \"sentences\": [\"Two people are seen hitting a ping pong table back and fourth in the middle of an outdoor park.\", \" They drop the ball and pick it up and then continue playing again.\"]}, \"v_u2hzK9YyIXY\": {\"duration\": 43.82, \"timestamps\": [[0, 34.83], [33.96, 43.82]], \"sentences\": [\"A person's shoe is seen sitting in a sink and the person scrubs the outside of the shoe with water running.\", \" The person turns the water off and let's the dirt from the shoe run down the sink.\"]}, \"v_GdEKSyad_rk\": {\"duration\": 72.26, \"timestamps\": [[0, 10.84], [11.56, 49.86], [56, 72.26]], \"sentences\": [\"A man is water skiing on a river.\", \" He leans backward, still holding on.\", \" He also turns and lifts one foot in the air.\"]}, \"v_j30ZbXEi8sc\": {\"duration\": 207.52, \"timestamps\": [[0, 61.22], [48.77, 130.74], [113.1, 199.22]], \"sentences\": [\"A large marching band are seen standing in the middle of a lawn.\", \" The middle of the group begin to play followed by the rest around them.\", \" The group take turns playing back and fourth and end by standing still.\"]}, \"v_Lfj9JC7uWmE\": {\"duration\": 81.06, \"timestamps\": [[0, 64.04], [0, 53.91], [64.44, 81.06]], \"sentences\": [\"man are playing war of a tug in an open field in font of a lake.\", \" men are standing in sidewalk watching the men playing and taking pictures.\", \"men reunite and pose to a picture and a lot of camcorders are taking pictures.\"]}, \"v_AuS32BoK0Bg\": {\"duration\": 213.57999999999998, \"timestamps\": [[0, 22.43], [23.49, 46.99], [53.39, 213.58]], \"sentences\": [\"A man is putting on a pair of shoes.\", \" He grabs his skies and boards a lift.\", \" He is then shown skiing down various hills and mountains.\"]}, \"v_5Chl3x_mx40\": {\"duration\": 208.1, \"timestamps\": [[0, 208.1], [19.77, 195.61], [162.32, 206.02]], \"sentences\": [\"The players are playing curling in an ice court.\", \" The players pushed the stone and two people are brushing the front of the stone until it reached the target.\", \" An Asian girl pushed the stone and the other girl is brushing the front of the stone until it hit other stones.\"]}, \"v_k4WHaby5jd8\": {\"duration\": 133.05, \"timestamps\": [[0, 13.97], [13.97, 33.26], [33.26, 62.53], [62.53, 133.05]], \"sentences\": [\"A man is in the garbage and he brings out a suitcase and takes a bike out of it.\", \" He begins to unravel the bike and start putting it all together.\", \"He screws in some pieces and put the hand bars on using a a pocket knife.\", \" He inflates the tires with air and finishes putting the rest together, and then he rides off.\"]}, \"v_8ZyBER6U9Wc\": {\"duration\": 85.59, \"timestamps\": [[0, 14.55], [14.12, 35.95], [35.95, 56.92], [59.06, 85.59]], \"sentences\": [\"Three girls that are matching clothes are jumping rope at a competition.\", \" They start to switch places between jumpers, doing tricks while jumping.\", \" They move up and down the floor while never stopping.\", \" Then they drop their rope and bow.\"]}, \"v_RrgUFU70PNQ\": {\"duration\": 98.64, \"timestamps\": [[0, 8.88], [11.34, 82.36], [82.86, 98.64]], \"sentences\": [\"A group of men are in a ring around a mat.\", \" Two crouch in front of each other before springing onto the mat, fighting and kicking.\", \" They are performing a type of martial arts, fighting their oponent as cameras flash.\"]}, \"v_Q6SooTA1os4\": {\"duration\": 32.14, \"timestamps\": [[0, 4.5], [4.66, 7.55], [4.66, 22.17], [4.66, 24.91], [22.82, 24.58], [25.39, 32.14]], \"sentences\": [\"A dog runs around a house from room to room.\", \" Two men take the dog into the bathroom and get him in the bath tub.\", \" One of the men washes the dog.\", \" The other man records what is happening.\", \" The dog hops out of the tub and one of the men dries him off.\", \" One man holds the dogs mouth open while the other man brushes the dogs teeth.\"]}, \"v_Jvxk68D3F2w\": {\"duration\": 183.45, \"timestamps\": [[0, 44.95], [34.86, 141.26], [132.08, 180.7]], \"sentences\": [\"A camera pans all around a paintball course and shows a closeup of a person speaking.\", \" Several clips are seen of people running around the course and shooting paintball at one another.\", \" More close ups are shown of a gun as well as a man speaking to the camera and others socializing with one another.\"]}, \"v_WMxQ5hc4s78\": {\"duration\": 184.74, \"timestamps\": [[0, 184.74], [1.85, 12.93], [13.86, 32.33], [66.51, 184.74]], \"sentences\": [\"A small table sits atop another table.\", \" A man enters wearing a black hoodie.\", \" He opens a jar and pulls out something.\", \" He then varnishes the table.\"]}, \"v_PT18KK_6jmU\": {\"duration\": 177.89, \"timestamps\": [[0, 6.23], [6.23, 9.78], [9.78, 78.27], [78.27, 97.84], [97.84, 142.31], [142.31, 164.55], [164.55, 177.89]], \"sentences\": [\"An intro of a black screen with a logo and the words CAMERON HANSEN GALLERY appear along with the website at the bottom right.\", \"A school of fish swimming in the ocean appears and the location and the description of the video is displayed.\", \"A series of many different videos begin and it includes footage from underwater with a snorkeler, many different sea life swimming and even an elephant swimming.\", \"The next set of clips include various different footage of people who are above water and the scenery around them.\", \"It then switches to caves and it shows the outside, inside, and then the snorkeler back under water holding a flashlight to see as it's very dark.\", \"The focus goes back to other clips where the elephant is swimming again, a still shot picture of the beach is displayed, and more clips from the water above.\", \" It ends with a picture of a large tree branch near the water and the words The Andaman Islands appear at the top and fades to an all black screen.\"]}, \"v_-Pa52Pf_Raw\": {\"duration\": 221.1, \"timestamps\": [[0, 45.33], [56.38, 172.46], [177.99, 221.1]], \"sentences\": [\"A young woman is sitting in the doorway of a building.\", \" She is staring at the camera.\", \" She keeps taking puffs from a cigarette as she sits.\"]}, \"v_wZ-teiWX4mg\": {\"duration\": 115.5, \"timestamps\": [[0, 115.5], [7.51, 30.61]], \"sentences\": [\"man is standing in an ice rink practicing hockey.\", \" man is putting hockey uniform.\"]}, \"v_fkmYC91-biI\": {\"duration\": 43.98, \"timestamps\": [[0, 8.8], [8.8, 19.79], [19.79, 33.42], [33.64, 43.98]], \"sentences\": [\"Two little kids are sitting indian style on the carpet inside the house,they have a hookah and are smoking it.\", \" They take turns inhaling and exhaling the smoke.\", \" They exhale from their nose like they do it often and have been trained like little pros.\", \" It is very sad these children are allowed to do this like its normal, they seem to enjoy it too.\"]}, \"v_TFkI_wKMypE\": {\"duration\": 15.88, \"timestamps\": [[0, 4.76], [4.69, 15.88]], \"sentences\": [\"Two girls are seen speaking to the camera with one giving a thumbs up.\", \" The girls then play a game of hop scotch with each other and high giving one another in the end.\"]}, \"v_K757XUwinrc\": {\"duration\": 28.56, \"timestamps\": [[0, 6], [5.57, 20.56], [16.57, 26.7]], \"sentences\": [\"A woman is seen holding onto a brush and grabbing a brush.\", \" Another girl brushes through her hair while the camera pans her movements.\", \" She continues brushing the other's hair while looking to the camera.\"]}, \"v_VeU_EBE-YPE\": {\"duration\": 144.41, \"timestamps\": [[32.49, 72.92], [72.92, 119.13], [119.13, 134.3]], \"sentences\": [\"There are several Seagull brand acoustic guitars are shown displayed in a store.\", \" A man dressed in black, seated on a stool is playing the acoustic guitar in the store where the guitars are displayed.\", \" The man continues playing the guitar.\"]}, \"v_oeSyeZqlC1g\": {\"duration\": 81.46000000000001, \"timestamps\": [[0, 11], [11.4, 26.07], [26.88, 53.76], [53.76, 80.64]], \"sentences\": [\"People sits on steps, after people are on boats in a river.\", \" An adult and several teen in canoes holds paddles.\", \" The man shows the teens how to move the oars.\", \" The teens follow the instructions of the man and row the oars.\"]}, \"v_sax2PjbeLdk\": {\"duration\": 23.13, \"timestamps\": [[0, 1.85], [2.08, 6.24], [6.24, 11.91], [11.91, 23.13]], \"sentences\": [\"There are shoes placed on the floor just lying there.\", \" Someone puts their feet into one of their shoes very slowly.\", \" They begin to buckle the straps on the left shoe.\", \" Then they put their foot more securely into the right shoe, finally bucking the straps on that shoe too.\"]}, \"v_f-r9g_-5huM\": {\"duration\": 39.71, \"timestamps\": [[0, 5.56], [5.76, 7.74], [23.03, 29.18]], \"sentences\": [\"A man and woman are talking.\", \" A man starts playing a harmonica.\", \" The crowd watches him play.\"]}, \"v_GwmpYLRpJQw\": {\"duration\": 183.3, \"timestamps\": [[0, 125.56], [125.56, 130.14], [130.14, 140.22], [140.22, 170.47]], \"sentences\": [\"snowy mountins are shown and people is doing snowboard  going down the hill holding poles.\", \" a snow house with kids playing is shown.\", \" ma is playing with a toy airplane.\", \" people doing snowboarding are going down the mountain with red lighes and fireworks are in sky.\"]}, \"v_DOfpOkDHe_8\": {\"duration\": 111.94, \"timestamps\": [[0, 12.31], [12.31, 100.75], [100.75, 109.71], [109.71, 111.94]], \"sentences\": [\"A girl is standing in her home with her hands behind her back and her legs shoulder width apart.\", \" The girl then firmly drops her hands to her side, brings her feet together and does a bow and continues to do a routine of various karate moves.\", \" The girl ends her routing a little further from the point she started and firmly drops her hands to her side and does a little bow, then opens her legs shoulder length apart and goes back into the same position as she was in when she started.\", \" After she is done holding the position for a while the girl relaxes and then walks away.\"]}, \"v_DxtISmKol2I\": {\"duration\": 128.42, \"timestamps\": [[0, 37.24], [37.24, 97.6], [71.91, 127.13]], \"sentences\": [\"Two people are seen kneeling down before a board and pushing down objects.\", \" Other people watch on the side as the two robots begin to attack one another.\", \" One pushes the other off the side and the men put the robots back to battle several more.\"]}, \"v_JMrfe-UVA0Y\": {\"duration\": 72.93, \"timestamps\": [[4.38, 72.93], [20.79, 72.93]], \"sentences\": [\"man is standing in front of a screen talking to the camera.\", \" a woman is playing with a cat and its in table with a nail clipper cutting the cat's nails.\"]}, \"v_-BVpaPkee2I\": {\"duration\": 96.39, \"timestamps\": [[0, 38.55], [38.07, 96.39]], \"sentences\": [\"An athletic woman is seen talking to the camera and leads into her teaching a cycling class with others.\", \" More shots of her leading are shown in different areas.\"]}, \"v_VsFHNZHhNwI\": {\"duration\": 23.62, \"timestamps\": [[0, 23.62], [17.71, 23.62]], \"sentences\": [\"A lady sits in the shower washing a fluffy dog.\", \" The lady leans over the dog and washes his front paw on the left.\"]}, \"v_SI0GumzxYt4\": {\"duration\": 133.59, \"timestamps\": [[2.67, 63.45], [41.41, 129.58]], \"sentences\": [\"A camera follows around a small boat that is moving along the water as well as landscapes.\", \" The camera zooms in on the boat and shows people riding inside.\"]}, \"v_QHd9bJOuvIU\": {\"duration\": 86.24, \"timestamps\": [[0, 6.9], [19.4, 26.3], [19.4, 86.24]], \"sentences\": [\"A man is walking up a ladder to a roof.\", \" He is standing in front of a house talking.\", \" Men are putting new shingles onto a roof.\"]}, \"v_uG2sRzp5Bk4\": {\"duration\": 192.05, \"timestamps\": [[14.4, 34.57], [34.57, 61.46], [61.46, 94.11], [94.11, 119.07], [119.07, 137.32], [137.32, 160.36], [160.36, 177.65], [177.65, 185.33]], \"sentences\": [\"Information about Blackjack site iis provided.\", \" There are two people shown playing in a casino.\", \" A representative from Blackjack is showing a casino gambling game.\", \" He lays playing cards on the table against tokens.\", \" There are several tokens stacked up on the table.\", \" He is explaining how to play the gambling game to maximize one's money.\", \" He puts more cards on the table and takes a hand to earn more tokens.\", \" Information on how to download the app is provided on the screen.\"]}, \"v_7c5vvEn3uLk\": {\"duration\": 145.31, \"timestamps\": [[0, 5.09], [5.09, 21.07], [21.07, 38.51], [38.51, 49.41], [49.41, 134.41], [134.41, 145.31]], \"sentences\": [\"A cowboy is riding on a horse in a large arena and is swinging his rope.\", \"The view changes to show a group of men with their horses and they're each holding onto their ropes and doing various things with them like tying and swinging them.\", \"The focus switches to a man talking whose name is Trevor Brazile and it flashes from him talking and then to clips of him riding his horse in different arenas as he is also wrangling a small calf.\", \"Another man by the name of Stran Smith is now talking and clips of him riding his horse in different arenas as he wrangles a calf also plays.\", \" Clips of both of men talking and clips of them riding horses and wrangling calves play and rotate between the two of them.\", \"The outro video begins and it shows a hanging banner at the arena that reads \\\"CALGARY STAMPEDE\\\", a woman riding a horse and holding a red flag that say's \\\"1912-2012 Calgary Stampede\\\",and a calf is running across a dirt field.\"]}, \"v_xNiYjTyCTtg\": {\"duration\": 104.72, \"timestamps\": [[0, 13.09], [13.09, 14.14], [14.14, 32.46], [32.46, 67.55], [67.55, 85.87], [85.87, 91.63], [91.63, 104.72]], \"sentences\": [\"Two girls are standing in a shop and hug each other.\", \" The two girls acknowledge the girl holding the camera.\", \" They each show their ears that they are wanting to be pierced.\", \" The woman working in the shop straightens the girls head and marks her ear and pierces her right ear, as the girl makes faces.\", \" The woman looks shocked as the worker talks to her and holds the mirror for h er to see the ear.\", \" To be continued is shown on the screen.\", \" The girl shows her ear as she sits in the chair and tries not to cry as the camera zooms in on her ear.\"]}, \"v_HrWr7FmBYn4\": {\"duration\": 182.28, \"timestamps\": [[0, 41.92], [41.92, 98.43], [98.43, 182.28]], \"sentences\": [\"A woman is seen speaking to a camera and leads into herself with wet hair and brushing it through.\", \" Her hair is snow dry and she puts clips into her hair and begins curling.\", \" She continues curling the ends of her hair and runs her fingers through in the end and smiles at the camera while giving a thumbs up.\"]}, \"v_4S5ethZhgqs\": {\"duration\": 17.03, \"timestamps\": [[0, 8.26], [7.07, 17.03]], \"sentences\": [\"A big green garbage can is pushed up against a brick wall and a reindeer jumps out drinking from a coffee cup.\", \"The reindeer continues to drink out of the coffee cup and eventually falls out of over the garbage can.\"]}, \"v_DJ5tenTs0A0\": {\"duration\": 80.73, \"timestamps\": [[0, 24.62], [19.37, 32.29], [24.62, 80.73]], \"sentences\": [\"A child ski on the snow holding two poles and wearing skies.\", \" Adults ski behind the child.\", \" Then the child stops, then start to walk until start sliding on the hill.\"]}, \"v_2Mw-3jScc0M\": {\"duration\": 226.21, \"timestamps\": [[0, 19.23], [20.36, 40.72], [44.11, 205.85], [208.11, 226.21]], \"sentences\": [\"An aerial view of a field and animals is shown.\", \"  People mill around a dartboard and then start doing lumberjack things with logs.\", \"  A boat is prepared and the group starts water skiing, wakeboarding, and the like.\", \"  At the end, people relax on the boat.\"]}, \"v_yJ5zO0T9jgk\": {\"duration\": 152.21, \"timestamps\": [[0, 121.77], [20.55, 23.59], [39.57, 47.18], [140.79, 152.21]], \"sentences\": [\"People are playing badminton on a court.\", \" An audience is watching them play.\", \"  A cartoon of people playing the game is shown.\", \" A man in a blue sweater is talking to the camera.\"]}, \"v_m0_F34CgAco\": {\"duration\": 122.44, \"timestamps\": [[0, 15.3], [6.73, 29.39], [20.81, 33.06], [24.49, 57.55], [42.24, 122.44]], \"sentences\": [\"The baker is putting a safe ring on a silicone molder.\", \" The baker pour the batter in the purple molder, then he place a silicone tray in the oven and put the cake in the oven.\", \" The baker turn over the cake in the plate and put icing and fruits on top.\", \" The baker put safety ling on the molder, put jelly in it, then he put the jelly off the molder.\", \"  The baker made popsicles and cake decorations and chocolates using the molder.\"]}, \"v_Lh-cI4M0dNw\": {\"duration\": 51.06, \"timestamps\": [[0, 18.38], [12.25, 51.06]], \"sentences\": [\"A man is seen riding along on a horse and then ropes a calf while others watch.\", \" The man then ties up the calf and climbs up on the horse and others step into the ring.\"]}, \"v_ZZVrH3Hv1fM\": {\"duration\": 58.98, \"timestamps\": [[2.36, 31.55], [23.3, 56.62]], \"sentences\": [\"A woman is seen walking into frame and speaking to the camera while holding various objects in her hands.\", \" She continues to pull out more objects while still speaking to the camera.\"]}, \"v_2_tzemKY72E\": {\"duration\": 82.36, \"timestamps\": [[0, 9.88], [14.41, 67.95], [68.77, 72.89], [74.54, 82.36]], \"sentences\": [\"A female gymnast is shown in a photograph.\", \" She is then shown preparing and then mounting a high beam.\", \" She flips and turns on the beam, changing between two beams.\", \" She dismounts, throwing her arms into the air triumphantly.\"]}, \"v_Hg1tl2hFWGc\": {\"duration\": 29.56, \"timestamps\": [[0, 5.03], [6.65, 23.65], [23.79, 29.56]], \"sentences\": [\"a child is sitting on a counter with a container of water colors.\", \" She is using a paint brush to apply the paints to her face.\", \" She then starts putting the paint all over her chest.\"]}, \"v_U2-GFZxIufw\": {\"duration\": 65.88, \"timestamps\": [[0, 9.88], [8.89, 19.1], [14.82, 40.18], [41.17, 65.88]], \"sentences\": [\"A boat goes on to a lake with a rope behind it.\", \" A boy grabs the rope and goes in the water after the boat.\", \" The boat begins to speed up.\", \" The boy is brought to his feet and begins to water ski.\"]}, \"v_3MqnXsnEAkM\": {\"duration\": 154.91, \"timestamps\": [[1.55, 13.17], [44.15, 54.22], [78.23, 89.85], [125.48, 139.42]], \"sentences\": [\"A man walks onto a mat and lifts a large weight over his head.\", \" A man in a red shirt is sitting down.\", \" A man walks up and lifts a large weight over his head and drops it on the ground.\", \" Another man comes onto the mat and lifts a weight over their head.\"]}, \"v_7VvcQNSAd24\": {\"duration\": 48.97, \"timestamps\": [[0.73, 10.04], [11.02, 36.48], [33.79, 47.99]], \"sentences\": [\"A man is seen standing in front of a mirror holding a razor.\", \" He then begins shaving his face while still looking in the mirror.\", \" He finishes shaving his face and looks back smiling at the camera.\"]}, \"v_7ftCKS5SCCk\": {\"duration\": 184.37, \"timestamps\": [[0, 91.26], [92.18, 125.37], [125.37, 184.37]], \"sentences\": [\"little girl with long hair is dancing in a living room with a lot of boots and shoes on the floor, she put them on and take it off.\", \" girl is on skateboard in the living room and to the room again.\", \" little girl is in library and grab something and then starts dancing in the room.\"]}, \"v_DxNIzbD6uD4\": {\"duration\": 91.98, \"timestamps\": [[2.3, 49.21], [30.81, 86.46]], \"sentences\": [\"A woman is seen speaking to the camera in front of a large exercise bar and begins standing on the equipment while speaking and using her hands.\", \" The woman continues to demonstrate how to properly execute the exercises while moving her arms and legs back and fourth.\"]}, \"v_p8_hwwgyoZE\": {\"duration\": 159.15, \"timestamps\": [[0, 11.94], [14.32, 114.59], [115.38, 159.15]], \"sentences\": [\"A man and woman are on a stage together.\", \" They quickly play drums before a crowd.\", \" An older man is then seen also playing drums.\"]}, \"v_vgO3mzJGbSI\": {\"duration\": 203.22, \"timestamps\": [[0, 21.34], [22.35, 57.92], [57.92, 121.93], [127.01, 159.53], [158.51, 203.22]], \"sentences\": [\"A camera pans around a shop and pans back to a girl talking.\", \" She points to her face multiple times and gives a little tour of her room.\", \" She continues talking to the camera and eventually shows footage of her getting her nose pierced.\", \" She apears back in the room with the pierced nose and shows off a drink and sushi.\", \" Finally she shows a book as well as a bag with white powder and herself in a pony tail.\"]}, \"v__jT57LdAHUs\": {\"duration\": 208.17000000000002, \"timestamps\": [[0, 98.88], [98.88, 202.96]], \"sentences\": [\"A man talks on front the drummer and holding two sticks.\", \" The man pretends to play the drums, and then continues talking.\"]}, \"v_hXGE1GGTHzM\": {\"duration\": 73.38, \"timestamps\": [[0, 40.72], [40.72, 61.64], [61.64, 73.38]], \"sentences\": [\"This man is trying to shoot the white ball on the pool table backwards.\", \" He keeps trying to shoot it backwards, but he just can't so he decided to do it the regular way and shoot forwards.\", \" When he does it,  he puts the cue stick down and walks away.\"]}, \"v_Bdpqtvdx2T8\": {\"duration\": 107.39, \"timestamps\": [[0, 107.39], [23.09, 27.39], [52.09, 57.46], [59.07, 81.08], [99.88, 107.39]], \"sentences\": [\"We see a little girl painting a fence red.\", \" The girl puts more paint on her brush.\", \" The girl fills her brush again.\", \" We see the fence and an adult shows her how to paint.\", \" The adult points at a missed spot.\"]}, \"v_qfCqVXhNPE8\": {\"duration\": 218.38, \"timestamps\": [[0, 218.38], [12.01, 22.93], [30.57, 33.85], [32.76, 124.48], [124.48, 146.32], [156.14, 183.44]], \"sentences\": [\"A woman with black hair is explaining something.\", \" The woman pulls out a container with hair rolls.\", \" The woman pulls out a bottle of shampoo.\", \" The woman rolls her hair and pins it in place and leaves it for ten minutes.\", \" The women removes the rolls from her hair.\", \" The woman takes out hair spray and sprays it on her hair.\"]}, \"v_0IxId05Eo6k\": {\"duration\": 85.17, \"timestamps\": [[0, 8.94], [8.94, 13.2], [13.2, 33.22], [33.22, 49.4], [49.4, 85.17]], \"sentences\": [\"There are a lot of people indoors in a large building walking, or hanging out, and the banner below say's \\\"WHAT IN THE WORLD? China's National Tug-of-War Championships\\\" and he logo on the right say's \\\"east SPORTS WEST\\\".\", \" There are two sets of people along a rope and they are separated in the middle by referees.\", \" They take a bow, pick up the rope, and each team begins to tug on the rope until a winner is called.\", \" A woman referee is now standing with her two arms up and she lets them down to indicate that the two teams can start tugging on the rope, and they do until she blows a whistle to indicate the winner.\", \"Two short clips play and it shows a womens tug-of-war match, then a mens but it doesn't show much and then it goes straight to outdoor shots of the city and text on the screen appear with the network logo, website, and rights of the video.\"]}, \"v_cqHWqXRkUfU\": {\"duration\": 81.34, \"timestamps\": [[0, 23.59], [23.59, 60.19], [60.19, 81.34]], \"sentences\": [\"Several people are standing outside in a snow with tubes in front of them.\", \"Two people then get in the tubes and are pushed down the slopes.\", \"They go down the snow slide and once they reach the bottom they get off.\"]}, \"v_6I1aP4O04R8\": {\"duration\": 235.46, \"timestamps\": [[0, 104.78], [109.49, 220.16]], \"sentences\": [\"A large pile of leaves are seen blowing around a yard as a person uses a tool to push them along.\", \" The camera continues to capture the man blowing the leaves and uses several camera effects on the frames.\"]}, \"v_6qghJRLpHpo\": {\"duration\": 35.09, \"timestamps\": [[0, 18.6], [18.07, 35.09]], \"sentences\": [\"A small group of people are seen riding kayaks down a rough river with one person performing a flip in the water.\", \" The person performs several more flips with the camera captures him from far away.\"]}, \"v_lZ2X-e33E0A\": {\"duration\": 157.15, \"timestamps\": [[0, 6.29], [7.07, 20.43], [20.43, 157.15], [107.65, 113.15]], \"sentences\": [\"We see the opening title screens.\", \" A man walks into a room and grabs a bucket and returns with it.\", \" We see a man in a bright shirt mix plaster in a bucket and spread it on a wall.\", \" The man adds more plaster to his base and spreads it on the wall.\"]}, \"v_E4yf1mz4ij0\": {\"duration\": 89.49, \"timestamps\": [[0, 29.98], [31.32, 88.15]], \"sentences\": [\"An athlete is seen walking into a circle and preparing himself to throw a shot put.\", \" The man throws the object several times after spinning around and several people watching on the sidelines.\"]}, \"v_iTc3UCWgUF0\": {\"duration\": 83.81, \"timestamps\": [[0, 33.94], [31.85, 83.81]], \"sentences\": [\"A man sits down in a chair putting his sneakers on and points to a fox running in.\", \" The fox stands by the man and jumps up and down on his lap while he continues to put his shoes on.\"]}, \"v__rs8dhCdI1w\": {\"duration\": 229.51, \"timestamps\": [[12.62, 72.29], [73.44, 100.98], [102.13, 120.49], [120.49, 213.44]], \"sentences\": [\"A person puts tape on a leather sofa to form a square.\", \" Then, the person apply foam to a sponge and cleans inside the square.\", \" After, the person clean with a cloth and peels the tape.\", \" Next, the person cleans all the sofa putting foam on a cloth and rubbing the sofa.\"]}, \"v_9xtYwXpaiZ0\": {\"duration\": 121.02, \"timestamps\": [[0, 9.68], [9.68, 12.1], [12.1, 33.89], [33.89, 72.61], [72.61, 92.58], [92.58, 121.02]], \"sentences\": [\"A shoe polishing machine sits in a living room.\", \" A man walks up to the shoe polishing machine a turns it on.\", \" The man wearing blue jeans begins bushing his black shoes.\", \" The man then begins brushing and polishing his brown shoes.\", \" The man approaches the shoe polishing machine and brushes his grey sneakers.\", \" The man crouches down and pulls out a dust bin from under the polishing machine.\"]}, \"v_fJMVz_TBWU0\": {\"duration\": 76.78999999999999, \"timestamps\": [[0, 19.97], [18.81, 76.79]], \"sentences\": [\"A large group of people are seen standing in a crowd when a man holding a set of bag pipes walks up and gives everyone the devil horns.\", \" They give the horns back and the man plays while walking up and down the stage.\"]}, \"v_NVWk38z7f4U\": {\"duration\": 226.15, \"timestamps\": [[0, 29.4], [31.66, 81.42], [82.55, 143.61], [144.74, 178.66], [183.18, 226.15]], \"sentences\": [\"Several signs for tattoo shops are shown, along with a girl speaking to the camera.\", \" She shows off the tattoo she wants to get.\", \" The woman sits in a chair as a tattoo artist makes a snowflake on her arm.\", \" She talks to the camera the entire time as he inks her.\", \" Afterward, she shows off her completed tattoo and speaks about it.\"]}, \"v_c-TD6-GESQk\": {\"duration\": 52.15, \"timestamps\": [[0, 52.15], [25.03, 28.16], [45.11, 48.76]], \"sentences\": [\"A man is standing in a gym.\", \" He bends down and picks up a large weight.\", \" He sets it down and talks to the camera.\"]}, \"v_z93quI8Gxx4\": {\"duration\": 59.42, \"timestamps\": [[0, 14.56], [5.94, 30.9], [10.99, 51.7]], \"sentences\": [\"The woman is riding a camel as she talks to the camera.\", \" A man is guiding the camel and giving the camel food.\", \" The woman is reporting while she is on the back of the camel.\"]}, \"v_rrNJt73BG_8\": {\"duration\": 57.1, \"timestamps\": [[0.86, 6.57], [6.57, 17.7], [17.99, 40.54], [40.54, 47.68]], \"sentences\": [\"A person opens a faucet and wet the hands.\", \" The person uses soap to rub vigorously the hands.\", \" After, the person rinse the hand thoroughly with plenty water.\", \" After the person dry the hands with a clean towel, and turns the the sink using the towel.\"]}, \"v_q2-2jIQGfvg\": {\"duration\": 76.49, \"timestamps\": [[0, 1.91], [2.29, 54.69], [55.07, 76.49]], \"sentences\": [\"The words \\\"speed cubing 53 sec\\\" appear on a black screen.\", \" A young man sits at a table and starts playing with a Rubik's Cube.\", \" The man solves the puzzle completing all sides of the cube and the screen goes black.\"]}, \"v_SFDvkbDZTjA\": {\"duration\": 143.8, \"timestamps\": [[11.5, 13.66], [46.74, 73.34], [125.11, 125.83]], \"sentences\": [\"A cat is scratching its paws on the carpet.\", \" A man holds the cats paw and starts clipping its nails.\", \" He holds the cat outside.\"]}, \"v_TFdv2VQ8-Hg\": {\"duration\": 154.67000000000002, \"timestamps\": [[0, 7.73], [8.51, 45.63], [50.27, 91.25], [92.03, 136.88], [137.66, 154.67]], \"sentences\": [\"A group of people gather on a tarmac.\", \" They board the plane before taking off, showing the runway and clouds in the sky.\", \" They are in an airport, then driving down the road.\", \" Finally they are riding a boat in the coean, looking at a map and chartering the waters.\", \" They go surfing in the large waves.\"]}, \"v_n7ED3zaQqws\": {\"duration\": 56.9, \"timestamps\": [[0.57, 11.95], [11.66, 38.69], [40.12, 54.34]], \"sentences\": [\"A person is seen moving along a pool while the camera watches from behind.\", \" A man is then seen speaking to the camera and moving his arms around.\", \" More clips are shown of the person swimming along the water.\"]}, \"v_Y_QRRCIujIc\": {\"duration\": 169.46, \"timestamps\": [[0, 169.46], [27.96, 30.5], [30.5, 169.46], [166.92, 169.46]], \"sentences\": [\"A young man is shown in a room playing ping pong.\", \" At one point he shrugs his shoulders while waiting for his opponent to start.\", \" The video continues to show the man playing ping pong, and at times stopping due to the ball leaving the table.\", \" The video ends as the man comes up to the camera to turn it off.\"]}, \"v_FBtrv1Vg8hU\": {\"duration\": 80.71000000000001, \"timestamps\": [[0, 17.76], [17.35, 39.15], [39.95, 63.36], [63.76, 80.71]], \"sentences\": [\"A young woman on a white horse is shown riding through the field.\", \"The lady is then shown exercising on a blue mat doing several yoga stretches.\", \"After,she is pictured in her home talking while sitting on the couch.\", \"Finally,the screen returns and she is shown in horseback riding in the field going through the stable.\"]}, \"v_clUgEizjVkM\": {\"duration\": 23.17, \"timestamps\": [[0.12, 12.86], [8.92, 20.97]], \"sentences\": [\"A small group of people are seen skating around the ice playing a game of hockey against one another.\", \" One member scores as the camera pans around them and a man watching.\"]}, \"v_G4XDVF_hYZc\": {\"duration\": 32.6, \"timestamps\": [[0, 7.66], [7.99, 19.89], [19.72, 32.6]], \"sentences\": [\"A boy is sitting at a table fiddling with a Rubik's cube and then places it on the table.\", \"The boy then picks it up and begins competing with four other males to solve it.\", \"Once solved,the boy slams his arms against a black bar that stops the timer and the judge times him at 20 seconds.\"]}, \"v_PZ4miMXdjHE\": {\"duration\": 78.62, \"timestamps\": [[0, 48.75], [40.88, 78.62]], \"sentences\": [\"A man is seen standing in a large pit with a group of children and teaching them how to stand.\", \" The kids then get powder on their hands and the man chases them around and has fun.\"]}, \"v_8NcRuVMSQLs\": {\"duration\": 221.64, \"timestamps\": [[0, 68.71], [69.82, 181.74], [177.31, 221.64]], \"sentences\": [\"The camera pans around an athletic woman standing ready and others watching her on the side.\", \" She jumps high over a pole and walks away as her jump is shown again in slow motion and another runner steps up.\", \" Several more women are shown jumping over the beam while their scores are shown immediately afterwards.\"]}, \"v_nEv28s46Kvo\": {\"duration\": 226.14, \"timestamps\": [[0, 18.09], [19.22, 39.57], [39.57, 223.88], [89.33, 223.88], [99.5, 108.55], [180.91, 223.88], [219.36, 226.14]], \"sentences\": [\"We see an opening screen as a black and white film.\", \" We then see people putting on fencing gear.\", \" The two men fence in between title screens.\", \" The men switch from outdoors to indoors.\", \" We see a man's helmet.\", \" We see a men fighting in slow motion.\", \" The men finish and walk away from each other.\"]}, \"v_HRjSOacCdWI\": {\"duration\": 19.9, \"timestamps\": [[0, 11.94], [12.04, 13.53]], \"sentences\": [\"A man picks up a heavy weight.\", \" He drops it to the ground.\"]}, \"v_rX2tRvv2ZfU\": {\"duration\": 217.64, \"timestamps\": [[0, 217.64], [13.06, 169.76], [19.59, 83.79], [84.88, 94.67], [94.67, 113.17], [101.2, 116.44], [114.26, 127.32], [119.7, 133.85], [136.03, 158.88], [154.53, 184.99], [183.91, 212.2]], \"sentences\": [\"There's a woman dressed in a brown dress standing next to another lady in blue who is demonstrating a recipe.\", \" They are standing next to the kitchen counter that has several bowls filled with various ingredient in it.\", \" The chef is talking about the recipes that the ingredients are used for.\", \" There's a white plate with shredded meat on the kitchen counter.\", \" The chef then picks up the meat plate and gives it to the lady in brown.\", \" The presenter then empties the meat into a blue bowl.\", \" The chef continues to explain the recipe.\", \" Then they add some chopped cucumber to the blue bowl and mix it with a spoon.\", \" The chef shows the cucumbers she has used in the salad.\", \" Then they add chopped cherry tomatoes, followed by sliced white onions and some leafy greens.\", \" Then they add some more garnishing on top of the salad.\"]}, \"v_ilE77hVgjjo\": {\"duration\": 109.92, \"timestamps\": [[0, 109.92], [20.89, 109.92], [51.66, 52.21]], \"sentences\": [\"A girl moves around an indoor playground.\", \" The girl slides down and climbs up a slide with boy.\", \" A finger touches the girls hair and head.\"]}, \"v_VLQQVNIZQqo\": {\"duration\": 52.8, \"timestamps\": [[5.28, 19.27], [19.27, 43.3], [43.03, 49.37]], \"sentences\": [\"A man holds a hummer sits on the ground.\", \" Then, the man spins the hammer several times and throw it far.\", \" Other man perform the hammer throw while people watch.\"]}, \"v_uWnlmM2uOs4\": {\"duration\": 30.4, \"timestamps\": [[4.56, 11.85], [11.85, 26.29], [26.29, 29.33]], \"sentences\": [\"There are many people in bathing suits standing in a lake with motor boats behind them.\", \" One girl wearing a bikini and holding a Coke can in her hand is rubbing sunscreen on another woman's chest.\", \" There are some men standing in swim trunks behind them, talking to each other.\"]}, \"v_ZuHwSBCjfds\": {\"duration\": 228.25, \"timestamps\": [[0, 55.92], [61.63, 209.99], [211.13, 228.25]], \"sentences\": [\"News clippings of a water polo player are shown, as well as images and stills.\", \" We then see the water polo games in video, as the players try to lob the ball into a net.\", \" The people fight over the ball, and a small crowd claps and cheers.\"]}, \"v_eXK0iVPl1j8\": {\"duration\": 97.8, \"timestamps\": [[0, 97.8], [0, 12.23], [16.63, 77.75], [82.15, 97.8]], \"sentences\": [\"A crowd is gathered around a black tiled area.\", \" A man in black does some breakdance moves.\", \" He then trades off with a man in white, Several breakdancers trade off displaying moves as the crowd looks on.\", \" Finally, the last breakdancer finishes his routine.\"]}, \"v_MewROhYmQP0\": {\"duration\": 62.04, \"timestamps\": [[0, 4.65], [4.96, 45.91], [46.22, 62.04]], \"sentences\": [\"A polo match is being held outdoors in a field.\", \"  A player on a horse hits the ball.\", \"  A wide shot of the polo field action is shown.\"]}, \"v_Mu8-AwcMqaw\": {\"duration\": 146.31, \"timestamps\": [[0, 49.01], [50.48, 113.39], [109.73, 146.31]], \"sentences\": [\"A young woman is seen speaking to the camera and leads into her showing off her hair then tying it into a ponytail.\", \" She sprays down her hair and then braids her bangs followed by pushing the braid back into a ponytail.\", \" She puts a bow in her hair in the end and smiles off to the camera.\"]}, \"v_uzXbaoWOm5o\": {\"duration\": 58.7, \"timestamps\": [[0, 8.51], [8.51, 35.51], [35.51, 41.38], [41.38, 58.7]], \"sentences\": [\"A white screen appears and happy faces are displayed and black text words read \\\"happyface Entertainment\\\".\", \"There are two Asian women standing face to face very close to one another and talking about a can while subtitles show up at the bottom.\", \"The woman holding the bottle on the right tries to unscrew the bottle open and has a hard time so someone reaches in and opens it for her and hands it back.\", \" The women laugh, smell the contents in the bottle and the brunette tastes a little bit of it and they both laugh.\"]}, \"v_li16LYa7us8\": {\"duration\": 211.05, \"timestamps\": [[0, 4.22], [4.22, 8.44], [8.44, 75.98], [75.98, 182.56], [182.56, 211.05]], \"sentences\": [\"A black screen appears with the white letters and numbers that say EXAM 2012.\", \"An outdoor of a two story older building is shown and the white letters on the screen say Bolshoi Ballet Academy.\", \"A blonde woman is shown sitting at a piano and as she begins to play a bunch of young women are shown dressed in their ballet gear and are dancing ballet on a stage while people watch them.\", \"Some of the girls are shown putting on tutus that stick straight out, they walk onto the stage and begin dancing as their tutus that stick straight out bounce with them.\", \"The women end their ballet routine, and they all walk to the side of the stage to grab the hand of the woman, they all routine to the stage, take a bow, and all the ballet dances celebrate their performance and give on another hugs.\"]}, \"v_u024Wa07GNs\": {\"duration\": 17.79, \"timestamps\": [[0, 16.72], [0.44, 16.72], [0.98, 16.72]], \"sentences\": [\"A sandwich is sitting on a counter.\", \" There are many vegetables around the sandwich.\", \" A person puts cucumbers on top of the sandwich.\"]}, \"v_en6lOb4wRUU\": {\"duration\": 181.16, \"timestamps\": [[0, 66.12], [67.03, 136.78], [138.59, 181.16]], \"sentences\": [\"A man is shown smoking a cigarette continuously blowing smoke out of his mouth and looking into the camera.\", \" He puts sunglasses on and continues taking puffs off the cigarette.\", \" He pans the camera to a crack in the floor and back to his face smoking outside.\"]}, \"v_KCxa27MM7Cg\": {\"duration\": 37.59, \"timestamps\": [[0, 10.15], [12.22, 28.2], [21.8, 36.47]], \"sentences\": [\"Two small children as seen sitting at a table laughing with one another.\", \" One girl is seen painting another's nails while she looks off into the distance.\", \" The girl continues painting the others' nails while she laughs into the camera.\"]}, \"v_fCE3Eo7_Nmw\": {\"duration\": 60.4, \"timestamps\": [[5.44, 12.99], [12.99, 57.07]], \"sentences\": [\"A person takes a knife and cut the ends of a potato, then the person peels the potato.\", \" After, the person cut the potato in squares.\"]}, \"v_LnqAgjTpi0k\": {\"duration\": 129.73, \"timestamps\": [[0, 10.38], [10.38, 31.14], [31.78, 37.62], [38.27, 100.54], [53.19, 57.73], [72, 77.84], [90.81, 100.54], [106.38, 114.16], [114.81, 124.54], [125.84, 129.73]], \"sentences\": [\"We see a pink opening scene.\", \" A lady walks up stairs and people are gathered in a plaza outdoors.\", \" We see a race banner and people moving under the banner.\", \" Runners are running down a city street in a marathon.\", \" We see a stadium like structure a km 8.\", \" We see a fountain spraying water.\", \" A mariachi band sits on the sidewalk playing music followed by drummers.\", \" We see the end and a cup of coffee and a medal.\", \" A lady photo shops her picture in with the mariachi band.\", \" The ending title screen is shown.\"]}, \"v_exPOJAoyG7Q\": {\"duration\": 88.59, \"timestamps\": [[9.3, 25.25], [25.25, 53.59], [53.59, 77.95], [77.95, 84.6]], \"sentences\": [\"There's a girl talking about cheer leading, gymnastics and tumbling.\", \" She is demonstrating how to do somersaults, cartwheels, round off and back and front walkover.\", \" She also shows various other moves like aerial, tic- toc and back handspring.\", \" She continues to demonstrate several other gymnastic moves by swiftly moving her body through front flips.\"]}, \"v_E29kZvEtOUA\": {\"duration\": 237.67000000000002, \"timestamps\": [[0, 137.85], [43.97, 112.89], [135.47, 185.38], [150.92, 237.67]], \"sentences\": [\"A child helps push a lawn mower with an adult to cut the grass.\", \" A man mows the lawn of a large yard along with a child watching nearby.\", \" The man empties out the collection hopper bag on the lawn mower and empties it into a trash bin and wheels it away.\", \" The child plays with the lawn mower while turned off.\"]}, \"v_5j6j4NJkUXA\": {\"duration\": 67.92, \"timestamps\": [[0, 28.53], [28.87, 61.81]], \"sentences\": [\"A boy is shown swinging on a piece of gymnastic equipment with others training in the background.\", \" The camera shows several shots of different boys swinging on the equipment around and around with the camera panning to different angles.\"]}, \"v_dtT0BzjTStw\": {\"duration\": 88.96000000000001, \"timestamps\": [[5.34, 22.68], [22.68, 32.91], [32.91, 58.27], [62.27, 81.39]], \"sentences\": [\"A coach gives instructions to boys in a basketball court.\", \" Then, two young men demonstrate the boys how to pass and shoot the ball in the basket.\", \" After, the young man helps the boys throw the ball in the basket, while by two run passing the ball to shoot in a basket.\", \" Then, the boys practice basketball defense taking turns while running to the other side of the court.\"]}, \"v_5c1jHhHUwPI\": {\"duration\": 42.17, \"timestamps\": [[0, 8.86], [17.29, 42.17], [8.86, 42.17]], \"sentences\": [\"pitcher throw the ball to the batter playing criquet.\", \" the batter is fighing with the man and other people trye to calm him down.\", \"a lo of people wearing black unifroms are running in the field fighting.\"]}, \"v_oEZToisRw4w\": {\"duration\": 214.14, \"timestamps\": [[0, 79.23], [89.94, 198.07]], \"sentences\": [\"Various women are seen walking around with shot puts in their hands followed by more shots of athletes walking around, throwing the ball, and waving to the crowd.\", \" The video continues on with several different shots of female athletes throwing shot puts as well as cheering to the crowd and moving around.\"]}, \"v_KnI7IWbLWmE\": {\"duration\": 161.87, \"timestamps\": [[0.81, 160.25], [0.81, 55.84], [108.45, 127.07], [131.11, 161.06]], \"sentences\": [\"Two men play bagpipes, while being photographed at an outdoor military and police ceremony with a speaker at a podium surrounded by men in uniform and in front of a formally seated audience.\", \"  Two men play bagpipes in front of a row of police officers and a man in a military uniform, all as a photographer takes their photo from below.\", \"  The camera pans to a man in a suit standing at a podium in front of a group of people who are standing along with the rows of people in uniform behind the speaker.\", \"  The camera then pans to three military planes flying overhead as part of the ceremony before returning to the people, who are standing, in front of the man at the podium.\"]}, \"v_LnEed8TnWwk\": {\"duration\": 178.77, \"timestamps\": [[3.58, 111.73], [55.42, 169.83]], \"sentences\": [\"Shots of people standing on the sides are shown as well as a group of girls playing tug of war with one another.\", \" Several more shots are shown of girls playing tug of war against one another while people celebrate on the sides as well as with their team mates.\"]}, \"v_SMhW9V-cJsQ\": {\"duration\": 27.49, \"timestamps\": [[0, 12.92], [12.65, 27.49]], \"sentences\": [\"A man wearing gloves is on his hands and knees using a power tool that is creating sparks.\", \" He continues using the object as the camera man watches and finishes burning the object.\"]}, \"v_p31a9wkiSHA\": {\"duration\": 206.22, \"timestamps\": [[0, 9.28], [9.28, 18.56], [18.56, 206.22], [156.72, 179.41]], \"sentences\": [\"boy is standing in front of a door talking with other boys in front of a kitchen.\", \" man walks to the living room in front of a ping pong table.\", \"man are putting the shoes, grabs a skateboard and is skateboarding by a sidewalk with her friends.\", \" man is hanging from lianas on a tree on a park.\"]}, \"v_lIb8_YksZyg\": {\"duration\": 213.44, \"timestamps\": [[0, 14.94], [22.41, 115.26], [117.39, 177.15], [179.29, 213.44]], \"sentences\": [\"A kid is standing with some men at a chair lift, dressed in ski gear.\", \" The boy skis down a hill, but falls down.\", \" He then is shown doing a flip in the air, followed by several ramp and flipping tricks.\", \" When they are done, they go inside a building.\"]}, \"v_zIvC3Yytcv0\": {\"duration\": 188.13, \"timestamps\": [[0, 82.78], [76.19, 188.13]], \"sentences\": [\"Various groups of men are shown that leads into a man wearing a uniform and speaking to the camera.\", \" He then leads a group of people to play an instrument all together while the camera pans around.\"]}, \"v_DIF8qouivIU\": {\"duration\": 222.7, \"timestamps\": [[0, 40.09], [18.93, 43.43], [80.17, 135.85], [135.85, 169.25], [165.91, 222.7]], \"sentences\": [\"A man wearing a white fencing outfit walks over to a woman in leather with her hands tied together.\", \" He holds her waist and speaks to her while watching the men fence behind them.\", \" They speak to another couple defiantly and the men prepare to fight.\", \" The men fence back and fourth when the older gentleman pinches his eyes and fight again.\", \" The men become agitated and one leaves with shirt off.\"]}, \"v_ynda_PQe_CM\": {\"duration\": 211.23, \"timestamps\": [[0, 149.97], [0, 211.23], [12.67, 25.35], [26.4, 42.25], [43.3, 62.31], [63.37, 87.66], [88.72, 99.28], [100.34, 111.95], [100.34, 118.29], [126.74, 146.81], [147.86, 156.31], [157.37, 168.99], [172.15, 211.23]], \"sentences\": [\"Several men are playing indoor soccer.\", \" A large crowd watches from the stands.\", \" A man wearing yellow kicks the ball into the goal and celebrates with his team before a replay of his goal is shown.\", \" The game continues and two men knock each other down before the red team scores a goal and a replay is shown.\", \" The yellow team tries to score and is blocked multiple times before finally scoring and a replay of this goal is shown twice.\", \" The game continues until the red team scores.\", \" A man from each team kicks the ball at the goal, each man gets the ball in the net and it flies back out.\", \" The same thing happens for one more man from each team.\", \" When the next red team member kicks, the goalie blocks the ball.\", \" Another man from each team scores before the goalie blocks a ball kicked by a man in yellow.\", \" Another ball from thew red team is blocked and two men from the sidelines in suits jump up and run on to the court and shake hands with a few players.\", \" The players celebrate some being followed by a camera.\", \" Men in suits hand a trophy to a man in yellow and he holds it over his head with everyone in the background celebrating.\"]}, \"v_YW3mCNKVaa4\": {\"duration\": 43.14, \"timestamps\": [[0, 6.04], [7.77, 23.51], [23.94, 43.14]], \"sentences\": [\"A view is shown of steep mountain snow.\", \" Skiers are traveling on a lift.\", \" They are sledding on the snow down a steep hill.\"]}, \"v_8NfYYT8d3EQ\": {\"duration\": 200.74, \"timestamps\": [[0, 6.02], [6.02, 25.09], [25.09, 68.25], [69.25, 127.47], [127.47, 175.64], [175.64, 194.71], [195.72, 200.74]], \"sentences\": [\"A text that reads \\\"Deeba's Recipe\\\" appears on the screen.\", \" The video then cuts to a woman standing behind a table filled with cooking ingredients.\", \" She speaks to the camera while showing some of what she has prepped for the dish.\", \" She places the various ingredients into a bowl and garnishes it very precisely.\", \" She then pours a sauce all over it.\", \" She then speaks to the camera some more to offer tips on how to make the dish.\", \" Another set of text showing \\\"Deeba's\\\" recipe is shown again.\"]}, \"v_Me3ykrZobJE\": {\"duration\": 134.61, \"timestamps\": [[0, 40.38], [36.34, 98.26], [94.22, 133.26]], \"sentences\": [\"A person is seen holding a wrapped gift and begins wrapping paper around a box.\", \" The girl pushes it down on the sides and begins tapping the box.\", \" She finishes tapping all around the box and ends by presenting it to the camera.\"]}, \"v_IQp6JF5v1qc\": {\"duration\": 62.07, \"timestamps\": [[0, 4.97], [4.97, 8.38], [8.38, 54.62], [54.62, 62.07]], \"sentences\": [\"The screen opens up with an ACDC promo.\", \"  A little boy is speaking to the camera.\", \"  The little boy begins to break dance and does many flips.\", \" He stands up and begins to rap.\"]}, \"v_dHzX9NqyBZw\": {\"duration\": 12.8, \"timestamps\": [[0, 12.8], [0, 10.36], [10.3, 12.8]], \"sentences\": [\"man is standing behind a counte behind the pool.\", \" two men are standing on top of trampolines and make a Synchronized jump into the pool.\", \" man is going up the stairs to the trampoline.\"]}, \"v_B0jASjqZl7s\": {\"duration\": 157.62, \"timestamps\": [[0, 47.29], [50.44, 114.27], [99.3, 154.47]], \"sentences\": [\"A man is seen speaking to the camera and leads of a clip of people riding down a snowy hill on tubes.\", \" More people are seen riding down the hill while pointing to one another.\", \" The group continues riding down the hill while also stopping to talk to the camera.\"]}, \"v_a_sm5Hv7HNw\": {\"duration\": 149.12, \"timestamps\": [[0, 24.6], [24.6, 46.23], [46.23, 96.18], [96.93, 149.12]], \"sentences\": [\"Three kids are climbing up a mountain with out any rope.\", \" Then, they are hanging out in their room laughing and having fun.\", \" They're just three best friend doing everything together, walking, shopping, relaxing and climbing mountains.\", \" When they get to the top of the mountain they hug each other.\"]}, \"v__-M4xNBhSEI\": {\"duration\": 6.47, \"timestamps\": [[0, 2.4], [2.75, 5.7], [5.76, 6.47]], \"sentences\": [\"A group is playing football on a large field.\", \" A green ball suddenly bounces across the fifty yard line.\", \" It comes to a stop, and the people back away.\"]}, \"v_mc5XVTo5PVk\": {\"duration\": 16.09, \"timestamps\": [[0, 2.09], [2.49, 12.87], [13.36, 16.09]], \"sentences\": [\"A female gymnast mounts a high beam in front of her coach.\", \" She does several flips forward and backward.\", \" She dismounts, and he claps as she walks away.\"]}, \"v_reit7blyxIo\": {\"duration\": 72.08, \"timestamps\": [[0, 8.65], [9.37, 25.23], [26.31, 59.46], [60.54, 72.08]], \"sentences\": [\"A man is lying in bed under the covers.\", \" He sits up on the edge of the bed, scratching his beard.\", \" He then stares at the shaver on his table, picking it up.\", \" The man shaves his bear, making it much shorter before lying down in bed, cuddling with the bag filled with his beard hair.\"]}, \"v_z5bc9KKiAGI\": {\"duration\": 40.59, \"timestamps\": [[0, 40.59], [0, 35.92], [38.36, 40.59]], \"sentences\": [\"A boy is standing behind a counter.\", \" He is throwing darts at a wall.\", \" A woman is standing next to him.\"]}, \"v_Ayix_aDOrzs\": {\"duration\": 135.47, \"timestamps\": [[0, 12.87], [13.55, 33.87], [26.42, 60.96], [60.28, 100.92], [116.5, 135.47]], \"sentences\": [\"A girl is shown looking at several pictures of hairstyle and leads into another cutting one's hair.\", \" The kids sits patiently with a towel on her head and speaking to the camera.\", \" A goldfish is shown followed by a man cutting and styling her hair.\", \" The man cuts the girl's hair and styles it into an adorable look.\", \" The girl smiles and leaves the hair salon looking happy.\"]}, \"v_4q7LmVSgIPk\": {\"duration\": 203.31, \"timestamps\": [[1.02, 28.46], [26.43, 42.7], [51.85, 91.49], [95.56, 165.7], [165.7, 197.21]], \"sentences\": [\"A person is talking on camera while showing various tools on the ground.\", \" A person is putting objects in front of a tire to move the car.\", \" A person drives the car over the object to move it.\", \" The tire is now sitting on top of an object and they take it off.\", \" A person brings out an old bike and talk about what needs to be done.\"]}, \"v_W0RYvQUUNe0\": {\"duration\": 11.58, \"timestamps\": [[0, 11.58], [1.27, 3.42], [2.95, 11.58]], \"sentences\": [\"The person is parasailing the water.\", \" As the person sail, he started to bounce on the water.\", \" The person maneuver the sail to turn around.\"]}, \"v_SvMIG1JlcMk\": {\"duration\": 169.85, \"timestamps\": [[0, 169.85], [16.14, 169.85], [160.51, 166.46]], \"sentences\": [\"Women are dancing on a stage.\", \" Women are waving flags around behind them.\", \" A woman is doing a belly dance in the middle of the stage.\"]}, \"v_IeqBzYDyHGQ\": {\"duration\": 168.81, \"timestamps\": [[0, 81.03], [60.77, 168.81]], \"sentences\": [\"The video begins with shots of people cheering as well as several shots of players standing on a sand pit.\", \" The crowd is seen doing the wave and continues to cheer as the camera shows various clips of a soccer match going on.\"]}, \"v_soDdkeamoMM\": {\"duration\": 10.58, \"timestamps\": [[0, 7.09], [7.46, 10.47]], \"sentences\": [\"A boy is swinging back and forth.\", \"  The boy then falls on his face and cries.\"]}, \"v_H2-rEH9TXR4\": {\"duration\": 10.06, \"timestamps\": [[0, 1.76], [1.81, 5.73], [5.68, 10]], \"sentences\": [\"A woman in blue shorts hands a man a dart.\", \" A man in a white hat throws a dart at a board.\", \" The woman walks up to the board.\"]}, \"v_ztogHoQpE4A\": {\"duration\": 52.94, \"timestamps\": [[0, 8.74], [10.59, 34.41], [35.47, 52.94]], \"sentences\": [\"A man is working over the back of a trailer.\", \" He is welding the metal between two pieces of wood.\", \" Sparks fly as he works, crouching down on the sidewalk.\"]}, \"v_rHWOESWciSc\": {\"duration\": 38.2, \"timestamps\": [[0, 7.26], [8.4, 15.85], [17, 38.2]], \"sentences\": [\"A man in a chef's outfit is talking in a kitchen while holding a potato.\", \" A man is working behind him as he peels the potato with a tool.\", \" He peels extremely fast, finishing in seconds.\"]}, \"v_ZjbBmS8Q8kM\": {\"duration\": 135.26, \"timestamps\": [[0.68, 20.29], [20.96, 135.26]], \"sentences\": [\"First different kinds  pool balls are shown lined up.\", \" Then the boy starts to play pool all by himself with the balls.\"]}, \"v_kdQfR6oqJ_M\": {\"duration\": 80.06, \"timestamps\": [[12.41, 27.22], [27.22, 47.64], [47.64, 54.04], [54.04, 73.66], [73.66, 80.06]], \"sentences\": [\"There are several jockey riding brown horses in a stadium during a derby event.\", \" There crowd is cheering loudly as they stand with straw hats and umbrellas.\", \" The jockeys are getting ready to play polo as they move around with their sticks.\", \" A woman cheers loudly in the camera.\", \" The jockeys ride slowly around the field.\"]}, \"v_fX3tcnTdAN4\": {\"duration\": 117.08, \"timestamps\": [[0, 9.95], [10.54, 27.51], [29.85, 32.78], [40.39, 111.81], [113.56, 117.08]], \"sentences\": [\"The boys lacrosse team is shown working out.\", \" They are then running drills on the gravel.\", \" Next, the team is in a scrimmage on the field.\", \" After that they were shown playing an actual game, running back and forth.\", \" Lastly a few members are at a professional game.\"]}, \"v_1gradpCDbPU\": {\"duration\": 60.21, \"timestamps\": [[0, 12.34], [12.95, 41.24], [37.03, 57.8]], \"sentences\": [\"A woman is seen bending over a sink with a small child next to her.\", \" The woman and child stick their hands under a sink to wash them off.\", \" The woman dries the girls hands in the end and shows her putting lotion on.\"]}, \"v_vT6bb2y34UE\": {\"duration\": 57.75, \"timestamps\": [[0, 16.17], [10.11, 43.02], [37.25, 55.44]], \"sentences\": [\"Two wires are seen laid across and table with a person putting a box on top.\", \" The person wraps the box with wires and tying a bow on top.\", \" The person ties a candy cane with the box and shows it off to the camera.\"]}, \"v_aRurjtzwmS8\": {\"duration\": 65.62, \"timestamps\": [[0.98, 22.97], [17.39, 46.92], [41.67, 62.34]], \"sentences\": [\"A shot of a building leads into a 3d game of men sumo wrestling.\", \" The game continues on with the characters fighting and a ref watching on the side.\", \" The game ends and shows more pictures of men sumo wrestling and pointing.\"]}, \"v_JMIvoKPtxRA\": {\"duration\": 107.78999999999999, \"timestamps\": [[0, 2.69], [2.69, 69.52], [69.52, 78.68], [78.68, 95.39], [95.39, 107.79]], \"sentences\": [\"A red, white and black intro has a logo and the words and letter W2K15.\", \" The video game begins and there are 3 characters against 1 character and they are wrestling in a rink performing numerous tricks like strangling, hitting, running into the character to make them fall, or picking them up and then slamming them down to the ground while the referee is standing in the corner.\", \" A new round begins with different characters wrestling and the referee tries to stop them but one of the characters picks the referee up and then slams him to the ground where he lays there for a few seconds.\", \" The referee gets up and then kicks one of the characters out of the rink then he drops on the ground to bang his hand on the rink to end the wresting round.\", \"The outro video begins and it's the same as the intro video.\"]}, \"v_Zest0gXEWEc\": {\"duration\": 56.82, \"timestamps\": [[0, 2.56], [3.13, 56.54], [3.13, 12.22], [12.22, 40.06], [40.06, 52.84], [52.84, 56.82]], \"sentences\": [\"A logo for \\\"The Galley\\\" with the tagline \\\"Reinventing the Kitchen\\\" briefly appears.\", \"  The scene is narrated by a female speaker.\", \"  A woman with blond hair prepares a sink dishwashing station with a hanging sink and drying bars above a metal channel.\", \"  The woman washes glasses, plates and knives and then places each on the racks to dry.\", \"  The woman finishes by pulling the plug on the hanging sink allowing the water to flow away in the channel underneath.\", \"  \\\"The Galley\\\" logo appears again.\"]}, \"v_tETVZtWqdDs\": {\"duration\": 93.16, \"timestamps\": [[0, 31.67], [31.67, 93.16]], \"sentences\": [\"woman is in the news talking to the camera about a hand sunscreen.\", \" woman is holding a sunscreen tube and put it in her arms, hands and face and the woman in studio keeps talkin about the natural sunscreen.\"]}, \"v_LmEUkoYh0nQ\": {\"duration\": 138.16, \"timestamps\": [[0, 44.9], [41.45, 113.98], [98.09, 136.78]], \"sentences\": [\"A text intro leads into several shots of a pumpkin as well as tools followed by a man carving the pumpkin.\", \" The man draws and cuts away all around the front of the pumpkin while moving in fast motion.\", \" The man finishes his pumpkin and the camera pans all around the side.\"]}, \"v_KqOLTkf5ujs\": {\"duration\": 134.26, \"timestamps\": [[0, 24.84], [27.52, 77.2], [80.55, 109.42], [110.76, 134.26]], \"sentences\": [\"a man is standing outside with a paint pan.\", \" He talks as he demonstrates how to paint outdoor wood.\", \" He shows off a paint roller.\", \" He continues talking about the process as he stands there.\"]}, \"v_1DvNkSGk-JA\": {\"duration\": 67.47, \"timestamps\": [[0, 9.78], [13.83, 50.94], [51.28, 67.47]], \"sentences\": [\"A man is holding onto a bar as he is standing on a water ski.\", \" He is being pulled through the water by a motor boat.\", \" He is water skiing over a long lake, trying to remain upright.\"]}, \"v_WUYSGCwm6OM\": {\"duration\": 156.29, \"timestamps\": [[10.16, 28.13], [28.13, 64.08], [37.51, 39.07], [64.86, 82.05], [83.62, 92.21], [95.34, 101.59], [103.94, 115.66], [116.44, 134.41], [135.98, 145.35], [147.7, 150.82]], \"sentences\": [\"A woman in a bathrobe facing a mirror cleans her hands.\", \" The camera cuts to closeup scenes of her fingers picking up a contact lens and holding it up.\", \" The camera briefly cuts to the woman's face before returning.\", \" The woman puts the contact lens on her eye.\", \" The woman applies contact lens solution into her lens carrying case.\", \" The woman washes her hands.\", \" The woman removes the contact lens from her eye.\", \" The woman places the lens on her palm and, using solution, cleans it.\", \" The woman places the lens into the case and adds solution.\", \" The woman begins to leave the camera frame.\"]}, \"v_XPN_PSadJ_A\": {\"duration\": 82.9, \"timestamps\": [[0, 27.77], [25.28, 60.93], [60.51, 81.24]], \"sentences\": [\"A person is seen sitting on a bike before a track looking down.\", \" The man then begins riding down the track with several others riding in front.\", \" The person rides all around the area and ends with a go pro logo.\"]}, \"v_8TNzCiy8iaY\": {\"duration\": 159.12, \"timestamps\": [[0, 48.53], [48.53, 138.43], [134.45, 159.12]], \"sentences\": [\"A man wearing a suit in the city walks down the streets of new york and meets up with another man who likes just like him.\", \" The men compare items and then perform a dance routine in the center.\", \" The men grabs hands to end the routine then walk away from one another.\"]}, \"v_MmYNcmba_Ps\": {\"duration\": 30.51, \"timestamps\": [[1.53, 18.31], [12.97, 29.6]], \"sentences\": [\"An athlete is seen walking forward while shaking her arms and legs around and adjusting her swim suit.\", \" The girl bends forward and performs a dive into the pool while the camera pans back to a scoreboard.\"]}, \"v__5UtmlGMIUc\": {\"duration\": 182.65, \"timestamps\": [[0, 26.48], [25.57, 83.11], [83.11, 131.51]], \"sentences\": [\"A man has his foot up on the toilet.\", \" He starts shaving his leg with a shaver.\", \" He pulls up his pants and starts shaving his other leg.\"]}, \"v_ShozMaLUS20\": {\"duration\": 14.07, \"timestamps\": [[0, 13.58], [0, 14.07], [5.63, 8.94]], \"sentences\": [\"Old man is raking leaves outside his home in the fall.\", \"  Man is narrating the action.\", \"  There is a bike parked next to the house.\"]}, \"v_pKOwZrmQan4\": {\"duration\": 118.07, \"timestamps\": [[0, 17.71], [18.3, 85.6], [84.42, 118.07]], \"sentences\": [\"A person is seen walking around a field followed by several shots off the field and people watching on the sides.\", \" The video transitions into several shots of trainers doing tricks with their dogs using frisbees.\", \" The people continuously throw the frisbee around the field while the dog chases afterwards and runs around the field.\"]}, \"v_Fu46pdVz4qY\": {\"duration\": 106.39, \"timestamps\": [[0, 29.79], [30.32, 37.24], [39.37, 55.86], [55.86, 81.39], [81.39, 102.14], [102.14, 106.39]], \"sentences\": [\"We see a lady in a pink shirt talking to the camera.\", \" We see the lady pick up a basket of laundry and put it down.\", \" the lady shakes out a dress and puts it on an ironing board.\", \" The lady rubs the dress and straitens it out.\", \" The lady puts a shirt on the board then puts it back in the basket.\", \" The lady folds the dress, smiles and the scene ends.\"]}, \"v_qi_6u0mMJQM\": {\"duration\": 172.13, \"timestamps\": [[0, 12.05], [12.91, 84.34], [84.34, 170.41]], \"sentences\": [\"A person shows a piece of furniture.\", \" Then, the person covers a wood box with carpet and cuts the leftovers.\", \" Then, the person fold the carpet on the borders and cut the parts not needed.\"]}, \"v_MOBJ_kpzHc0\": {\"duration\": 189.55, \"timestamps\": [[0, 11.37], [12.32, 43.6], [44.54, 72.03], [72.97, 120.36], [121.31, 162.06], [161.11, 189.55]], \"sentences\": [\"A caucasion woman is standing in the kitchen talking to a toddler and they begin banging their fist on the island.\", \"A red screen appears with a picture of lemonade and the two reappear.\", \"The lady begins talking extremely energetic to the camera.\", \"The two then begin dumping ingredients into a blender,beginning with strawberries and ending with syrup.\", \"Lastly,the toddler dumps a cup of ice in the blender and the lady blends the ingredients.\", \"Once done,the lady grabs two cups and fills them up and the two of them enjoy a drink together.\"]}, \"v_F54PZypvzCc\": {\"duration\": 80.1, \"timestamps\": [[0, 11.61], [14.42, 64.08], [64.48, 80.1]], \"sentences\": [\"A little boy is standing in a living room.\", \" He is throwing darts at a target.\", \" He walks over and removes the darts before trying again.\"]}, \"v_GvRPOGpObyU\": {\"duration\": 62.65, \"timestamps\": [[1.57, 28.19], [24.12, 59.83]], \"sentences\": [\"Alcohol is shown being poured into a glass and leads into a woman holding up a glass and pouring ice into it.\", \" The woman then pours various alcohol mixes into the glass and ends by presenting the glass to the camera.\"]}, \"v_p4KNKI2UZLc\": {\"duration\": 187.2, \"timestamps\": [[0.94, 34.63], [34.63, 73.94], [74.88, 92.66], [94.54, 101.09], [101.09, 127.3], [128.23, 187.2]], \"sentences\": [\"An American gymnast climbs the balance beam, the she performs four flips backwards and one flip forward.\", \" Then, the gymnast spins backward  one time on her side, then she jumps and flips two times backwards.\", \" After the gymnast jumps,  spins and turns.\", \" The gymnast stands on the end of the beam, then she runs and flips to times and end stand on the mat.\", \" After, the gymnast raise her arms and she is congratulated by people.\", \" The routine of the gymnast is repeated again.\"]}, \"v_cqxrPBGP4nU\": {\"duration\": 62.25, \"timestamps\": [[0, 6.85], [9.03, 47.62], [47.93, 62.25]], \"sentences\": [\"A before and after picture of a sink is shown.\", \" A person is then shown putting cleaner on a sponge and scrubbing a sink.\", \" The cleaning products and the clean sink are then shown.\"]}, \"v_JBnHqQjeVMk\": {\"duration\": 34.53, \"timestamps\": [[3.28, 6.73], [6.91, 7.94], [8.11, 9.5], [12.78, 16.92], [17.26, 18.82], [19.16, 20.37], [20.72, 21.75], [22.27, 24], [24.34, 25.9]], \"sentences\": [\"Cars and RV's sit outside a rodeo center.\", \" Cowboys practice their lasso work.\", \" People shop inside the store of the rodeo center.\", \" A young kid catches a calf.\", \" A cowboy jumps off his horse to control the calf he has caught.\", \" Another cowboy in a black shirt jumps off his horse.\", \" A man in a pink shirt lassos a calf.\", \" A woman on a horse catches a calf.\", \" Another man jumps off his brown horse to control the calf he has caught.\"]}, \"v_9ntzCNcFTKM\": {\"duration\": 92.56, \"timestamps\": [[0, 92.56], [0, 16.2], [16.2, 20.36], [20.36, 32.86], [33.32, 51.37], [51.37, 68.49], [68.49, 87], [87, 92.56]], \"sentences\": [\"Six children wearing white clothing and orange belts are in a room with others watching.\", \" A man yells an order and the children demonstrate their Taekwondo.\", \" The man yells again and the children line up and bow.\", \" The children demonstrate poses as the man orders them.\", \" They then perform more martial arts moves.\", \" They return to the line they were standing in previously.\", \" They demonstrate additional moves including kicks and punches.\", \" They line up again and bow for a second time.\"]}, \"v_K5X_ytiMuqc\": {\"duration\": 111.27000000000001, \"timestamps\": [[0, 13.35], [15.02, 34.49], [33.94, 111.27]], \"sentences\": [\"A girl talks to a camera shes holding on followed by shots of a store and her dog in a car.\", \" She records several items shown around the store and then herself in a bikini.\", \" She puts the lotion on herself standing in front of a lake and smiling into the camera.\"]}, \"v_Mg8y0rgD16M\": {\"duration\": 185.69, \"timestamps\": [[0, 38.99], [38.99, 127.2], [128.13, 185.69]], \"sentences\": [\"Several pictures of various foods are shown and leads into a person cutting foods on a cutting board.\", \" More pictures are shown while the man cuts up vegetables and mixes them into a bowl.\", \" He stirs around the ingredients and more pictures of the foods are shown.\"]}, \"v_yjQ-0AGqFS4\": {\"duration\": 202.34, \"timestamps\": [[0, 19.22], [20.23, 25.29], [25.29, 33.39], [33.39, 199.3], [105.22, 111.29], [148.72, 156.81], [167.94, 189.19], [200.32, 202.34]], \"sentences\": [\"We see a boy playing drums in an instrument store.\", \" We see a man across the room playing drums.\", \" We see a girl, another boy, and the dad.\", \" We see the man across the room, then the boy.\", \" The boy in stripes touches something on the drums.\", \" We see the boy and the man at the same time.\", \" The boy in the stripes shirt rocks back and forth.\", \" The boy finishes and looks at the camera.\"]}, \"v_V3dTp7_NyiE\": {\"duration\": 63.79, \"timestamps\": [[0, 12.12], [11.48, 47.2], [53.26, 63.79]], \"sentences\": [\"a man is working outside in a garden.\", \" He uses trimmers to cut pieces of a plant.\", \" When he is done, the plant is fully trimmed.\"]}, \"v_dfex2oZYqmU\": {\"duration\": 80.64, \"timestamps\": [[0, 3.63], [7.26, 19.35], [19.35, 39.52], [43.95, 72.58]], \"sentences\": [\"A soccer match is occurring on a field and a player is shown falling down.\", \" The man is able to get up and the video shows the fall again in slow motion.\", \" The players continue playing and one of them even scores a goal.\", \" The goal is shown over and over in low motion to show the significance of the play.\"]}, \"v_kQoGS3YjBXk\": {\"duration\": 139.32, \"timestamps\": [[0, 39.01], [32.04, 96.13], [91.25, 138.62]], \"sentences\": [\"A man is shown speaking to the camera and leads into him standing in front of a bike frame.\", \" He points to the frame while speaking to the camera and leads into him screwing objects into place.\", \" The person continues to screw the frame as well as the chain while turning and speaking to the camera.\"]}, \"v_rFx-j3NhSgI\": {\"duration\": 69.92, \"timestamps\": [[0, 11.54], [11.19, 46.84], [47.19, 69.22]], \"sentences\": [\"An empty gymnasium is shown when a girl hits a button the computer and begins starting a routine.\", \" She twirls around the gym floor with a baton and moves her arms around.\", \" She kicks her legs continuously with her arms.\"]}, \"v_gIzsM5cv7XM\": {\"duration\": 181.79, \"timestamps\": [[0, 18.18], [18.18, 105.44], [105.44, 152.7], [152.7, 181.79]], \"sentences\": [\"A young girl is standing in the room in a black cami and black and white legs preparing talking.\", \"She is then shown talking to a young girl with a pink sweater and black skirt and multiple games of rock paper scissors are being played between her and two other girls.\", \"The girl with the pink sweater wins and she sits on the girls face.\", \"Afterwards,the three girls stand together and start talking to the camera.\"]}, \"v_L2J_QI2_qms\": {\"duration\": 142.57, \"timestamps\": [[0, 11.41], [11.41, 109.78], [109.07, 126.89], [126.89, 142.57]], \"sentences\": [\"women are making some gymnasic jumps in a hallway.\", \" men and women are in department stores doing gymnastics jumps.\", \" woman is making a hand stand ni a parking lot and on stores.\", \" man is sanding in a fence in a mall looking o the first floor.\"]}, \"v_flfLCoLHm2k\": {\"duration\": 212.93, \"timestamps\": [[0, 31.94], [38.33, 67.07], [67.07, 179.92], [178.86, 212.93]], \"sentences\": [\"A girl waves to the camera and begins speaking followed by various ingredients laid out.\", \" The girl then puts the ingredients on a plate and puts saran wrap over the food.\", \" She mixes up the food with other ingredients followed by bread on top and cut into pieces.\", \" She takes a bite of the food and eventually leads to pictures of her food next to a cup of tea.\"]}, \"v_LeSq1XE93mE\": {\"duration\": 228.04, \"timestamps\": [[0, 52.45], [60.43, 171.03], [176.73, 228.04]], \"sentences\": [\"A band is shown on a stage.\", \" A man is playing guitar, and the man to his right is playing the drums.\", \" The person in front of them is dancing and singing.\"]}, \"v_l5xW6UZWwBs\": {\"duration\": 87.82, \"timestamps\": [[7.9, 12.29], [12.29, 16.69], [16.69, 27.22], [27.22, 62.35], [62.35, 75.52], [75.52, 87.82]], \"sentences\": [\"There two old men wearing straw hats, dressed in t-shirts and shorts getting ready to play shuffleboard.\", \" There two other men standing a few yards away with their cue sticks.\", \" A woman with gray hair and a yellow shirt is seen playing shuffleboard.\", \" There are two discs on the ground that get hit by another disc.\", \" Several spectators are watching a shuffleboard event where various people are competing and playing.\", \" One of the players adjusts his discs before hitting it with the cue stick.\"]}, \"v_vJyJG6Lvy9Q\": {\"duration\": 179.77, \"timestamps\": [[0, 18.88], [26.97, 103.37], [105.16, 179.77]], \"sentences\": [\"White text appears on a blue background.\", \" A girl in makeup and cheerleading outfit is shown at a game.\", \" Then we see a gymnast doing flips across a mat before doing a back handspring in several different styles.\"]}, \"v_j8bfR_d_TlM\": {\"duration\": 97.15, \"timestamps\": [[0, 97.15], [10.2, 33.03], [33.52, 42.26], [43.23, 71.89], [72.38, 78.69], [80.15, 87.44], [87.92, 97.15]], \"sentences\": [\"A person makes a jack o lantern.\", \" First they cut the top off of a green pumpkin and scoop the seeds and other stuff out.\", \" The remaining insides are cut and scraped off with an ice cream scoop.\", \" A design is drawn on the pumpkin and then cut out.\", \" The inside of the pumpkin gets sprayed with mold remover and patted dry.\", \" A candle is placed inside and lit and the lid is put back on.\", \" With the lights turned down the jack o lantern can be viewed.\"]}, \"v_gCxLG4hinNw\": {\"duration\": 88.1, \"timestamps\": [[0, 15.86], [15.86, 55.94], [55.5, 65.63], [66.07, 88.1]], \"sentences\": [\"A man is standing on a show playing bagpipes while other around him watch in amazement.\", \" The man continues to play and the audience claps when he finishes.\", \" He hands the instrument to a man walking in and gives the host a handshake.\", \" He talks to the host a bit and strikes a pose before the host finishes with the guest.\"]}, \"v_kIjYdddY3Xk\": {\"duration\": 59.35, \"timestamps\": [[0, 59.35], [2.08, 46.29], [55.49, 59.35]], \"sentences\": [\"A boy stands at a sink in a kitchen.\", \" He is wiping his shoe down.\", \" He turns around and smiles at the camera.\"]}, \"v_8B3qhnSB7U8\": {\"duration\": 48.4, \"timestamps\": [[0.24, 14.28], [12.59, 38.72], [36.79, 45.26]], \"sentences\": [\"A woman is seen sitting in a chair laughing while a man points in front of her.\", \" The man then holds a gun up to her nose and pierces her nose.\", \" A woman plays with the girls hair while speaking to the girl and showing off her nose piercing.\"]}, \"v_1ZuUq5rVwPs\": {\"duration\": 126.48, \"timestamps\": [[4.43, 20.24], [20.87, 26.56], [27.19, 39.21], [39.84, 56.92], [57.55, 73.36], [73.99, 92.33]], \"sentences\": [\"A carpenter sprays a ceiling with paint.\", \" A second carpenter smooths out the paint on the ceiling.\", \" The first carpenter sprays paint all over the ceiling.\", \" A couple of carpenters smooth out the paint on the ceiling.\", \" One of the carpenters is seen spraying the ceiling and stops for a second to move a light.\", \" The painting continues as well as the smoothing out of the paint.\"]}, \"v_kWh_zSLpZuQ\": {\"duration\": 109.25, \"timestamps\": [[0, 20.76], [22.4, 80.3], [80.85, 109.25]], \"sentences\": [\"Kids are shown playing basketball on a court.\", \" The coach is talking to them and trying to tell them how to play.\", \" The kids perform lay ups.\"]}, \"v_Tm1ebIrDyz0\": {\"duration\": 52.62, \"timestamps\": [[0, 4.74], [5, 11.05], [11.05, 46.83], [46.83, 52.62]], \"sentences\": [\"We see an opening title screen.\", \" We see a girl run and perform a high jump and make it over the bar.\", \" We then see a replay and and slow motion replay.\", \" We see the ending title screen.\"]}, \"v_agX22QLvOcU\": {\"duration\": 57.77, \"timestamps\": [[5.2, 11.27], [10.98, 15.02], [55.75, 57.77]], \"sentences\": [\"A man is dribbling a basketball.\", \" He jumps and shoots the basketball into the hoop.\", \" Words are shown on the screen at the end.\"]}, \"v_G4mX4StOvQE\": {\"duration\": 122.97, \"timestamps\": [[0, 105.76], [0, 105.14], [47.34, 105.14]], \"sentences\": [\"A woman is kneeling down on a blue mat.\", \" A man stands behind her talking.\", \" The woman starts moving her legs and arms.\"]}, \"v_u_RzyIJi8qc\": {\"duration\": 163.05, \"timestamps\": [[0, 40.76], [41.58, 109.24], [109.24, 163.05]], \"sentences\": [\"Two men are standing outside with a crowd of people lifting weights and exercising.\", \"Many people begin to film the guys on their phone,the weight lifting continues and several people come back to do interviews.\", \"More people are shown and then a logo comes that is sponsored by Reebok.\"]}, \"v_5zPTTiJiXUY\": {\"duration\": 14.21, \"timestamps\": [[0, 6.68], [8.1, 14.21]], \"sentences\": [\"A woman is sitting in a car barefoot, trying to drive.\", \" She lights a cigarette as she drives.\"]}, \"v_EgPk-mmJyS8\": {\"duration\": 81.19, \"timestamps\": [[0, 19.08], [19.49, 81.19]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her laying out a paid of shorts.\", \" She then demonstrates how to properly iron the clothing items.\"]}, \"v_0dgmG3h9RLA\": {\"duration\": 78.41, \"timestamps\": [[1.18, 9.41], [6.67, 14.9], [16.07, 78.41]], \"sentences\": [\"A person is playing bagpipes out in a park.\", \" A man and two boys watching from a far.\", \" The camera shoots areas all around the park while the bagpipes play.\"]}, \"v_8im-T1bsyHs\": {\"duration\": 107.1, \"timestamps\": [[0, 50.34], [36.42, 103.36]], \"sentences\": [\"An athlete is seen running down a large track and throwing a javelin into the air.\", \" Her throw is shown again in slow motion followed by several more athletes who take their turns.\"]}, \"v_81w6SClSFMU\": {\"duration\": 115.38, \"timestamps\": [[0, 10.38], [13.85, 62.88], [54.81, 62.88], [65.19, 81.92], [82.5, 98.07], [100.38, 115.38]], \"sentences\": [\"We see an opening title screens.\", \" People are working on cameras in a workshop.\", \" We see them mount it to a tube.\", \" the lady then dances the hula hoop with the tube.\", \" We see a blonde man making adjustments to the tube.\", \" We see the closing end screen.\"]}, \"v_NxnEKnqWLCI\": {\"duration\": 183.13, \"timestamps\": [[0, 48.53], [50.36, 134.6], [126.36, 177.63]], \"sentences\": [\"A camera pans around a group of people sitting at a table followed by a man holding a surf board.\", \" The man carries the board out onto the water and begins riding the water.\", \" The person continues to ride around following behind another person on the water.\"]}, \"v_Sh8JODtAMhc\": {\"duration\": 182.97, \"timestamps\": [[0, 43], [39.34, 133.57], [132.66, 182.97]], \"sentences\": [\"Various shots of a theme park are shown including rides moving, people playing games, and other people interacting with one another.\", \" Two men are then shown driving around an area on bumper cars while laughing to the camera and others speaking to the camera.\", \" The men continue riding around and ends with a woman pulling down a cover for the game.\"]}, \"v_2FKWKDEg5KE\": {\"duration\": 204.48, \"timestamps\": [[0, 2.04], [10.22, 19.43], [20.45, 131.89], [137, 187.09], [187.09, 204.48]], \"sentences\": [\"We see the opening title screen.\", \" We see a man working on a piece of equipment.\", \" The man heats the caulk and scrapes it off.\", \" The screen flashes and the man puts on new caulk.\", \" The man stops and points at the caulk The end scene is seen.\"]}, \"v_lHnSteuHdZ4\": {\"duration\": 226.57999999999998, \"timestamps\": [[0, 226.58], [13.59, 226.58], [44.18, 57.78], [57.78, 158.61], [158.61, 164.27], [164.27, 226.58]], \"sentences\": [\"A person is walking slow on ice,trying to to crack it.\", \"the person made many mid size hole in the ice and have fishing line hanging deep in the water underneath.\", \"the person walking to one of the hole and checks the fishing line to see if he caught nay fish.\", \"the guy then pulls hard on the fishing line and drags it in.\", \"finally he uses a long metal hook to hook the fish he caught and brings it out the hole.\", \"he then unhooks the long hook and use his tools to unhook the small fishing hook the the fish mouth leaving the fish bloody.\"]}, \"v__nvQDglPcmc\": {\"duration\": 237.11, \"timestamps\": [[0, 27.27], [26.08, 237.11]], \"sentences\": [\"water polo team is standing by the pool talking to the camera.\", \" man jumps in the water and is holding a ball and sart playing in the pool.\"]}, \"v_J8Ziy8QR8WQ\": {\"duration\": 51.74, \"timestamps\": [[0, 3.88], [4.14, 35.44], [10.09, 23.02], [15, 23.02], [23.28, 27.16], [35.7, 50.18], [50.44, 51.74]], \"sentences\": [\"The credits of the clip are shown.\", \" Guys throw balls on a field.\", \" A guy holds a few balls and talks.\", \" A man holding a flat bat walks across the field followed by a male holding one ball in each hand.\", \" Two men sit with one man holding a flat bat.\", \" Guys hit balls with the flat bat.\", \" The credits of the video are shown.\"]}, \"v__9v34KLET0g\": {\"duration\": 192.98, \"timestamps\": [[0, 55], [55.96, 119.65], [118.68, 157.28], [157.28, 192.98]], \"sentences\": [\"A man is seen speaking to the camera behind a table with various ingredients and glasses laid out.\", \" The man mixes the ingredients into a glass together and juices a lime into the glass.\", \" He then pushes the ingredients around and pours liquids into the glass, creating an alcoholic drink.\", \" He presents the glass while the ingredients list is laid out and he walks away from the frame.\"]}, \"v_RlC3n0VSGOU\": {\"duration\": 217.9, \"timestamps\": [[3.27, 71.91], [54.47, 165.6], [148.17, 212.45]], \"sentences\": [\"An intro leads into clips of people riding surfboards on the water as well as jet skis.\", \" The camera pans around the area and continues to show more clips of people surfing.\", \" A close up of a surf board is shown followed by many more people surfing on the water.\"]}, \"v_HfjvlIAEsJY\": {\"duration\": 192.52, \"timestamps\": [[0, 7.7], [7.7, 179.04], [179.04, 192.52]], \"sentences\": [\"A screen appears with bike spokes as the background and red words that read \\\"Overhauling & Adjusting Cup & Cone Hubs\\\" and a website in gray right under the red words.\", \"A man then enters and from behind he uses tools on the hub to take it apart, clean it thoroughly, grease it, then he puts it all back together and makes sure everything is secured tight.\", \"The outro is a spinning wheel with fast scrolling words going from the bottom to the top then it quickly fades to a black screen.\"]}, \"v_ObU5as8-u-s\": {\"duration\": 32.79, \"timestamps\": [[0, 32.79], [13.44, 26.39], [13.93, 17.21]], \"sentences\": [\"To teams play hurling in a field while holding stick.\", \" A woman stand and a lady walk on front a bench.\", \" The referee extend his left arm.\"]}, \"v_gK71Ut9XQ-Y\": {\"duration\": 69.59, \"timestamps\": [[0, 20.53], [20.18, 52.54], [50.11, 67.16]], \"sentences\": [\"Various shots of tools are shown that lead into a man sitting down holding a guitar.\", \" The man then strums the guitar for a bit and pauses.\", \" He is then shown playing again as well as more tools being shown.\"]}, \"v_wfy5UXaAVnQ\": {\"duration\": 76.09, \"timestamps\": [[7.23, 12.94], [15.22, 18.64], [19.02, 22.45], [24.73, 47.18], [49.46, 55.17], [57.45, 66.58]], \"sentences\": [\"Multiple groups of people in boats are out exploring a river.\", \" Wind blows the trees in the Grand Canyon.\", \" A group of people on a white boat paddle away at the waters in the river.\", \" Multiple groups battle high violent waters.\", \" At one point, the violent waters seem to almost topple one of the groups.\", \" A brave, single kayaker paddles away at the waters.\"]}, \"v_pExl_cwmT8M\": {\"duration\": 52.32, \"timestamps\": [[0, 13.08], [13.34, 36.36], [36.62, 52.32]], \"sentences\": [\"A middle aged man is standing in the street wearing rollerblades.\", \"  The man precisely skates in-between a tight row of small cones.\", \" The man does a handstand after completing the course and goes back to the beginning.\"]}, \"v_iH8eHkIHrg4\": {\"duration\": 188.22, \"timestamps\": [[0, 0.94], [2.82, 30.12], [33.88, 88.46], [93.17, 101.64], [106.34, 188.22]], \"sentences\": [\"Two men walk along the beach with their surfboards.\", \" They enter the water and the surfer with the white board catches a wave.\", \"White board catches another wave as the blue board opts out, more waves taken by white board are shown.\", \" The surfer on the blue board catches a few waves.\", \" The white board surfer is shown gliding across more waves, clearly like an expert.\"]}, \"v_Bl2Hqx3h9Fw\": {\"duration\": 110.22999999999999, \"timestamps\": [[0, 47.4], [47.95, 101.41], [101.41, 110.23]], \"sentences\": [\"A series of screens appear with white and purple words in paragraph form.\", \"A person is then shown walking out to the car with a utensil taking the snow off of the glass.\", \"Then another screen appears with white words and displays a sentence and the location.\"]}, \"v_iUOCQ9sE2_A\": {\"duration\": 65.9, \"timestamps\": [[0.66, 14.83], [16.47, 48.11], [44.48, 65.9]], \"sentences\": [\"Two people are seen standing on a mat and begin fighting one another.\", \" The men pause for a moment and continue fighting on while people watch on the side.\", \" The boys continue fighting and stop in the end.\"]}, \"v_brrf2inGs7E\": {\"duration\": 27.45, \"timestamps\": [[0, 11.25], [10.98, 27.45]], \"sentences\": [\"A person is seen turning on a faucet and rubbing their hands under the water.\", \" The person pushes soap into their hands, watching the soap drip down, and then scrubs their hands.\"]}, \"v_-ApIBtH_pVc\": {\"duration\": 114.31, \"timestamps\": [[20, 57.16], [57.16, 78.3], [78.3, 100.59], [100.59, 107.45]], \"sentences\": [\"There's a woman with a hand tattoo and red painted nails attaching and screwing a parts in the trunk of a car to attach the spare tire.\", \" Then she places the spare tire into the metal case.\", \" She takes the plastic dial and screws it in securely to fit the spare tire in the trunk.\", \" She places the cover over the tire inside the trunk.\"]}, \"v_pON-g7IJKEY\": {\"duration\": 26.38, \"timestamps\": [[3.3, 9.89], [9.89, 13.85], [13.85, 19.12], [19.12, 23.61], [23.61, 25.06]], \"sentences\": [\"There are many kids ranging from toddlers to teenagers enjoying themselves at a backyard birthday party.\", \" There is a Disney princess pi\\u00f1ata hanging from a tree.\", \" The kids are enjoying hitting the pi\\u00f1ata with a blue stick.\", \" they kids take turns to hit the pi\\u00f1ata.\", \" A little girl dressed in a purple skirt tries to tear the pi\\u00f1ata by hitting it hard with the stick.\"]}, \"v_Mil3AyFfjX4\": {\"duration\": 6.97, \"timestamps\": [[0.07, 2.33], [2.33, 5.19], [4.53, 6.9]], \"sentences\": [\"A young child is seen standing before a shuffleboard table holding a stick.\", \" The boy then pushes the puck across the game.\", \" The camera follows the pucks movements and leads back to the boy.\"]}, \"v_4xmQoAK3QNc\": {\"duration\": 90.88, \"timestamps\": [[0, 12.72], [7.27, 20.45], [12.27, 20.45], [17.27, 29.54]], \"sentences\": [\"A man hits a ball with a bat.\", \" Three men stand on a field.\", \" One man throws a ball on the field.\", \" Three men flip a coin.\"]}, \"v_0PnAEoMx-v0\": {\"duration\": 95.75999999999999, \"timestamps\": [[0, 69.43], [0, 68.47], [69.43, 95.76]], \"sentences\": [\"A person is playing an acoustic guitar.\", \" There is a Christmas tree behind him.\", \" A logo with words comes onto the screen.\"]}, \"v_uINj6L2EEUs\": {\"duration\": 200.53, \"timestamps\": [[0, 5.01], [6.02, 25.07], [30.08, 58.15], [61.16, 80.21], [81.21, 86.23], [87.23, 99.26], [100.26, 113.3], [115.3, 130.34], [131.35, 142.37], [144.38, 175.46], [176.46, 197.52]], \"sentences\": [\"Different views around a city are seen.\", \" A large crowd is seen cheering inside a large auditorium.\", \" Athletes walk together through a hallway then stand on logs and chop through them in a competition.\", \" Two athletes walk through wearing green and orange jerseys then saw through large logs in a competition.\", \" The judge inspects the log and declares a winner to the crowds delight.\", \" Two athletes walk through a hallway then chop an upright log in a competition.\", \" Cheerleaders enter through a hallway then dance on stage.\", \" Two athletes enter through a hallway then use a hand saw to cut through a log.\", \" Two athletes enter through a hallway then place boards into a log to stand on while chopping it down.\", \" Athletes compete in a chainsaw competition and saw through large logs before congratulating each other.\", \" The winner is seen holding a trophy along with runners up and the crowd cheers.\"]}, \"v_Xv2-EY_zKNM\": {\"duration\": 49.81, \"timestamps\": [[0, 49.81], [6.97, 19.67], [49.31, 49.81]], \"sentences\": [\"These 2 different teams are running on the field because they're playing shinty.\", \" Only half of the crowd is filled with people, while the other side is empty with no one there to watch anything.\", \" In the end, someone wins and people in the crowd clap and cheer.\"]}, \"v_T3CHT7rQQVc\": {\"duration\": 116.61, \"timestamps\": [[0, 7.58], [8.16, 83.96], [84.54, 116.61]], \"sentences\": [\"A man is seated with an electric guitar.\", \" He is speaking to the camera, then he starts playing.\", \" Another man plays the chords on a table.\"]}, \"v_P_b6_k2ocYw\": {\"duration\": 87.89, \"timestamps\": [[0, 87.89], [2.64, 87.89], [50.54, 57.57], [75.58, 87.89]], \"sentences\": [\"A woman in a hat and a vest stands buy a cart.\", \" She is crocheting something black and white.\", \" A car drives by the cart.\", \" Another person reaches into the car.\"]}, \"v_OSw73cXwjR4\": {\"duration\": 159.71, \"timestamps\": [[0, 159.71], [35.93, 117.38], [114.99, 142.94]], \"sentences\": [\"A person wearing a hat is sitting no a couch.\", \" They begin playing an accordion.\", \" They are pointing at buttons on the accordion with a screwdriver.\"]}, \"v_P5lLZ_jsA2o\": {\"duration\": 62.86, \"timestamps\": [[0, 21.69], [21.37, 44], [43.69, 62.86]], \"sentences\": [\"A gymnast is seen swinging around on a bar doing various flips and tricks across two sets of beams.\", \" She continues spinning around and ends with her hands up and her coach clapping.\", \" People watch on the sides and her scores are shown in the end.\"]}, \"v_Zk4EvGw7cAw\": {\"duration\": 23.81, \"timestamps\": [[0.83, 23.34], [2.26, 9.41], [8.93, 10.24], [10, 23.1]], \"sentences\": [\"There are two high school students in the high school cafeteria standing next to a table where some students are sitting.\", \" One of the students is undressing and changing his shorts while the other student in a red shirt is watching him.\", \" After the student finishes changing, the boy in the red shirt makes fun of him.\", \" The student gets provoked and punches the boy in the red shirt on his face, causing him to fall on the ground on his head.\"]}, \"v_ueKSGag6w4Q\": {\"duration\": 102.19, \"timestamps\": [[0, 41.39], [41.39, 56.21], [56.21, 83.8], [83.8, 102.19]], \"sentences\": [\"A woman walks around a stage holding a saxophone.\", \" She starts to play the saxophone as she dances.\", \" She stops and talks to the crowd again.\", \" She starts to play and dance again.\"]}, \"v_GdrutQ4RrDs\": {\"duration\": 209.77, \"timestamps\": [[0, 13.64], [14.68, 36.71], [41.95, 209.77]], \"sentences\": [\"A woman is seated in front of a camera.\", \" Her hair is in spiral curlers.\", \" She demonstrates how to remove them, showing the final result.\"]}, \"v_96HJ_LqNdkg\": {\"duration\": 167.0, \"timestamps\": [[0, 15.03], [42.58, 53.44], [49.26, 60.95], [49.26, 68.47], [49.26, 94.35], [49.26, 126.08], [49.26, 129.42]], \"sentences\": [\"This girl is doing a video of how to make your white shoes become sparkly clean.\", \"  You will need a toothbrush, baby powder, a glass cup or bowl, bleach, and q-tips, blowdryer, and water.\", \"First she adds water  pours a little bit of baby powder into the small bowl and she mixes it up using the toothbrush.\", \" She puts the baby powder soaked toothbrush onto the shoe and starts to rub it there.\", \" Then she grabs the blowdryer and blowdrys the shoe and scrubs them again.\", \" Then she pours bleach into the small bowl that has baby powder in it and she puts the toothbrush in the bowl and rubs it on the shoe again.\", \" Finally she wets a cloth with water and wipes the shoe off.\"]}, \"v_cA2ZLOZcCyc\": {\"duration\": 20.23, \"timestamps\": [[0, 20.23], [3.94, 13.96], [13.05, 20.23]], \"sentences\": [\"A person is riding the bike on the dirt road.\", \" The biker jumped into high ramps.\", \" The biker drove to the curve path then drive over the high ramp.\"]}, \"v_AFnEr0_wStU\": {\"duration\": 180.08, \"timestamps\": [[0, 10.81], [11.71, 24.31], [25.21, 45.02], [46.82, 54.93], [55.83, 56.73], [57.63, 72.93], [73.83, 92.74], [92.74, 99.95], [100.85, 146.77], [147.67, 152.17], [153.07, 172.88], [173.78, 180.08]], \"sentences\": [\"A piercing artist removes a tissue from a woman's nose and wipes part of the nose.\", \" The woman holds piercing pliers up against a woman's nose.\", \" She pierces a needle through the nose and holds the pliers in place.\", \" She removes the pliers from the woman's nose.\", \" The woman sitting down speaks.\", \" The piercing artist touches the needle and the nose as she screws a nose ring on.\", \" The piercing artists arranges the piercing inside the nose with some pliers.\", \" The piercing artist touches the piercing.\", \" The piercing artists uses a tissue to collect blood around the piercing.\", \" A collection of artwork is seen on the wall.\", \" The piercing artist continually uses a tissue to wipe blood from the woman's nose.\", \" The woman stands up and waves.\"]}, \"v_SX075xQ0j6c\": {\"duration\": 44.37, \"timestamps\": [[0, 3.99], [3.99, 40.6], [3.99, 9.1], [15.09, 19.08], [32.61, 39.94], [40.82, 44.37]], \"sentences\": [\"We see a book on a table.\", \" We see image in the book with videos of people knitting.\", \" We see a lady teaching two girls.\", \" We see a teacher teaching a boy to knit.\", \" We see a lady teaching a group of children to knit.\", \" We then see the closing screen.\"]}, \"v_RPKcM8q74FE\": {\"duration\": 75.26, \"timestamps\": [[0, 6.02], [7.53, 48.54], [49.29, 75.26]], \"sentences\": [\"A group of kids are in bumper cars.\", \" They ride around, trying to hit each other.\", \" They bump into the other cars as they go.\"]}, \"v_WmPkqkqAxyc\": {\"duration\": 39.36, \"timestamps\": [[0, 2.36], [2.56, 14.56], [11.41, 37.59]], \"sentences\": [\"A man is seen standing in a large field holding onto a tool.\", \" The man then uses the tool on the grass in font of him quickly.\", \"  The man continues to cut the grass while the camera captures his movement.\"]}, \"v_Ygt3z-K-ZMQ\": {\"duration\": 99.06, \"timestamps\": [[0, 99.06], [34.17, 99.06]], \"sentences\": [\"Women mix a variety of alcoholic drinks for consumption.\", \"  Steps are shown for a beautiful whiskey sour.\"]}, \"v_0EDEA8dZeGo\": {\"duration\": 134.21, \"timestamps\": [[0, 10.74], [10.74, 121.46], [121.46, 134.21]], \"sentences\": [\"First the man sets his timer that's attached to his chest and he sits down and puts his leg onto the ski.\", \" Next he stands up while holding onto something and he starts water skiing as he gets pulled by the boat.\", \" But, he eventually falls off and is seen standing in the water.\"]}, \"v_G6LjkB0xv2k\": {\"duration\": 101.91, \"timestamps\": [[0, 79.49], [25.48, 78.47], [78.98, 87.65], [87.65, 100.89]], \"sentences\": [\"A woman exercises at a machine.\", \" The camera focuses on and features specific parts of the machine.\", \" The woman demonstrates folding the machine for storage.\", \" The woman continues to exercise on the machine.\"]}, \"v_0Zg9UgCp4a4\": {\"duration\": 109.85, \"timestamps\": [[0, 13.18], [13.73, 26.36], [26.36, 43.39], [43.39, 71.41], [71.41, 109.85]], \"sentences\": [\"A group of men are outside sitting around a fountain playing a game of oddly drawn hopscotch.\", \"One boy takes his turn and then they all begin talking again.\", \"Next,a boy tries to jump over the bricks but ends up falling.\", \"Another boy jumps after him and he is successful.\", \"However,the next boy jumps and has to stand on one foot and collect all of the pieces thrown behind him.\"]}, \"v_MzqovHjEKE4\": {\"duration\": 62.66, \"timestamps\": [[0, 33.52], [28.82, 62.66]], \"sentences\": [\"A man is seen speaking to the camera and leads into him holding up a tool and pointing to several bushes.\", \" The man then trims along the bush while stopping to speak to the camera and holding up the tool.\"]}, \"v_xMImWgn3owc\": {\"duration\": 95.09, \"timestamps\": [[0, 18.07], [19.02, 66.08], [67.51, 91.76]], \"sentences\": [\"A gymnast is seen standing on a beam and begins performing gymnastic moves on the beam.\", \" The girl spins and flips all along the beam while the camera captures her movements.\", \" She ends her routine but jumping down off the side with her arms up and walking away.\"]}, \"v_kH50-giCeDM\": {\"duration\": 30.09, \"timestamps\": [[0, 10.23], [10.68, 22.27], [22.72, 26.18], [26.33, 30.09]], \"sentences\": [\"Two men walk to the barrel in a yard at a barbecue and the men both reach for the last beer in the barrel.\", \" The men do rock paper scissors and the right man hits the left with a rock, takes the beer and walks off.\", \"  We see a beer poured in a glass.\", \" We see the injured man with his hand up and a man walks past and gives him a high five.\"]}, \"v_sQtT9sUyUwE\": {\"duration\": 9.71, \"timestamps\": [[0, 9.71], [0.53, 9.71], [1.31, 9.71], [7.67, 9.71]], \"sentences\": [\"A man rows a canoe down a river.\", \" Several other people are rowing too.\", \" His canoe is colored red.\", \" He finally passes the point.\"]}, \"v_hniQpwn3Ob4\": {\"duration\": 157.76, \"timestamps\": [[0.79, 79.67], [51.27, 156.18]], \"sentences\": [\"An intro leads into several clips of different athletes performing shotput throws in a circle.\", \" More men continue to step up and throw the object while many watch on the sidelines.\"]}, \"v_soHEsBIljbI\": {\"duration\": 17.0, \"timestamps\": [[0, 3.31], [4.08, 14.36], [14.7, 17]], \"sentences\": [\"A teen girl sits on the floor holding a shoe.\", \" She is then shown wiping the shoe down with a cleaning solution.\", \" She shows the shoe close up after she is done.\"]}, \"v_gSOUhz7yQ-s\": {\"duration\": 70.36, \"timestamps\": [[0, 7.74], [7.39, 35.53], [35.88, 70.36]], \"sentences\": [\"A man is standing outside of a large window and begins to clean it with a long stick.\", \"One the window is wet,he takes the razor like stick and drags it up and down getting the water off.\", \"After the two top windows are complete,he leaves the other two untouched and walks away.\"]}, \"v_0T7yANM5I5Y\": {\"duration\": 22.22, \"timestamps\": [[0, 2], [2.11, 13.89], [15.22, 22.22]], \"sentences\": [\"A man bends at the knees in front of a barbell.\", \" He lifts it slowly, bringing it to his chest.\", \" He pauses, then lifts it over his head before dropping it back to the ground.\"]}, \"v_lAZIxuxjogI\": {\"duration\": 156.32, \"timestamps\": [[0, 100.04], [100.82, 156.32], [137.56, 156.32]], \"sentences\": [\"A man is standing on a ledge of a tower.\", \" He jumps off and bungee jumps.\", \" It is shown in slow motion.\"]}, \"v_Wd8Kz1XRpdg\": {\"duration\": 145.07999999999998, \"timestamps\": [[0, 61.66], [58.03, 145.08]], \"sentences\": [\"The camera pans around several men drinking  a large container of alcohol and the camera panning back to the beginning.\", \" The camera continues capturing the men drinking as well as talking to one another and one rubbing his eyes in the end.\"]}, \"v_-aWU5Yj_OPw\": {\"duration\": 15.09, \"timestamps\": [[0, 2.11], [2.72, 7.92], [8.3, 15.09]], \"sentences\": [\"A young man is seated in a living room.\", \" He is playing an electronic keyboard.\", \" The keyboard is printing a document as he goes.\"]}, \"v_R4M90w2zPVU\": {\"duration\": 84.24, \"timestamps\": [[0, 3.79], [3.79, 75.82], [75.82, 83.4]], \"sentences\": [\"A man in a red hockey helmet and with a long curling mustache is seen in a still shot standing next to a woman while leaning on a glass barrier in front of a hockey skate rink.\", \" The man is then shown entering a live hockey game and playing hockey with a floor filled with other players.\", \"  Another man is shown sitting next to a snoopy doll before the camera changes back to the man in the mustache again in another still shot.\"]}, \"v_tkmoslnsmwY\": {\"duration\": 188.72, \"timestamps\": [[0, 13.21], [24.53, 117.95], [122.67, 188.72]], \"sentences\": [\"A rapid river is running past a tree.\", \" A group of rafters don their gear, pushing their raft into the water.\", \" The paddle through the rapids, trying to stay upright and together.\"]}, \"v_rKTpKq7bh_U\": {\"duration\": 150.14, \"timestamps\": [[0, 3.75], [3.75, 143.38], [41.29, 52.55], [53.3, 55.55], [63.06, 72.82], [85.58, 93.84], [114.11, 150.14], [147.14, 150.14]], \"sentences\": [\"We see an image of a lady and a child.\", \" The lady fades, the child plays a flute and we see a man.\", \" The man is crying as the child plays, We see the people in the sky.\", \" We see a man and woman embracing in the sky.\", \" We see images of nature.\", \" The people in the sky bow and dance.\", \" The man lays down in a prayer position.\", \" The child finishes playing the flute.\"]}, \"v_5YVN5d8DkSk\": {\"duration\": 137.86, \"timestamps\": [[0, 79.96], [50.32, 137.86]], \"sentences\": [\"The camera pans around several pitting sitting at a bar as well as bartenders attending to people's needs.\", \" More shots are shown of people interacting in the restaurant and finally people speaking to the camera.\"]}, \"v_eS1USHkyb2U\": {\"duration\": 192.8, \"timestamps\": [[0.96, 125.32], [35.67, 125.32], [87.72, 186.05]], \"sentences\": [\"A young woman is seen brushing her hair that leads into her speaking to the camera.\", \" She holds up several brushes while speaking to the camera as well as various objects.\", \" She uses scissors to get hair out of a brush as well as a toothbrush and bowl to clean out her brushes.\"]}, \"v_Oi-atN4-Oqk\": {\"duration\": 29.7, \"timestamps\": [[0, 26.14], [26.14, 29.7], [2.97, 8.91]], \"sentences\": [\"A young man dance in a room moving his hands and putting behind his back.\", \" Then, the man put his hand behind his head.\", \" The reflection of the man is in the mirror.\"]}, \"v_C1vhQIJtLsw\": {\"duration\": 36.57, \"timestamps\": [[0, 16.82], [16.64, 36.57]], \"sentences\": [\"A man is seen standing on stilts in a city square while other people around him roller blade.\", \" The man takes off running down the block and then runs back to where he started.\"]}, \"v_f0JySdrM_l8\": {\"duration\": 78.9, \"timestamps\": [[0, 25.64], [26.04, 78.9], [0, 78.9]], \"sentences\": [\"A woman in a blue shirt spins around and throws a ball onto the field.\", \" Another person comes and throws a disk onto the field.\", \" People are standing at the side of the field is watching.\"]}, \"v_x7yOoVf5-Do\": {\"duration\": 96.9, \"timestamps\": [[0, 4.84], [4.84, 14.53], [14.53, 81.39], [81.39, 96.9]], \"sentences\": [\"A business and the area around it is shown and the name on the business say's \\\"LUMBERJACK NATIONALS\\\" carved in a wooden sign, and the white text below say's \\\"Columbia Basin BMX RICHLAND, WA\\\".\", \"A boy dressed in biking gear is putting on a helmet while standing and text on the right side of the screen appear and say \\\"@BryceBetts13Z CHASE STAYSTRONG\\\" as the boy gets on his bike and pushes it out of screen.\", \" The boy is now on the curvy and twisty dirt bike track riding around very fast and occasionally other people are shown riding on the track, too.\", \"A special effect outro appears with the boy still riding around the track and other text and logos appear on the screen until it fades to a white screen that end with a clip art on the left and large words that read MENDO MEDIA on the right.\"]}, \"v_hBT_SN8IGsQ\": {\"duration\": 121.65, \"timestamps\": [[0, 121.65], [24.33, 58.39], [52.31, 58.39], [105.84, 115.57]], \"sentences\": [\"Players on a field are running around playing a game.\", \" They get into a big fight on the field.\", \" The ref comes and breaks the fight up.\", \" A man in a yellow striped shirt is talking to the referee.\"]}, \"v_wG0OD99mjdY\": {\"duration\": 119.24000000000001, \"timestamps\": [[1.19, 70.35], [48.89, 117.45]], \"sentences\": [\"Several clips are shown of people climbing up and down rock walls while many others speak to the camera.\", \" Several more people are shown climbing on the rocks while speaking to the camera and making their way up and down.\"]}, \"v_s6oXeM9OluM\": {\"duration\": 170.23, \"timestamps\": [[16.17, 45.11], [41.71, 59.58], [56.17, 103.84], [107.24, 160.01]], \"sentences\": [\"A woman is shown holding a cat while a dog stands by her feet.\", \" She talks to the camera and shows off her cat nails.\", \" She grabs a tool and begins cutting the cat's claws.\", \" She adjusts the cat a bit but finishes her nails and lets her go.\"]}, \"v_4qONyTNaPOI\": {\"duration\": 204.47, \"timestamps\": [[0, 6.13], [6.13, 24.54], [24.54, 38.85], [38.85, 185.05], [185.05, 194.25], [194.25, 204.47]], \"sentences\": [\"A still shot picture of a body of water appears and yellow words appear on the screen and read \\\"AMERICAN DISK\\\" and include the website.\", \" A brunette woman is now speaking next to the water and she's smiling the whole time.\", \" Various clips of people play and they are all standing next to or in the water as well and they all appear happy.\", \"People are now on the water and doing various different things, with a large circular board that they're either standing, sitting, squatting, kneeling, riding or doing tricks on while they sometimes are getting pulled by a fast moving boat.\", \"A black screen appears and the yellow words are displayed on the screen and read \\\"The Disk\\\", and once again the brunette woman is speaking while standing by the water.\", \" The screen then goes to black and displays their website in yellow letters.\"]}, \"v_b2YyPJ02NNQ\": {\"duration\": 133.74, \"timestamps\": [[0, 30.76], [37.45, 42.13], [59.51, 62.86], [68.87, 73.56], [85.59, 90.27], [119.03, 123.04], [127.05, 133.74]], \"sentences\": [\"We see a babies and kids playing.\", \" Kids walk on silts in circles.\", \" The kids walk in lines on their stilts.\", \" A man helps a girl walk on slits.\", \" A kid on stilts falls to their knees.\", \" Kids walk in a circle on their stilts.\", \" I see a closing screen and it fade to black.\"]}, \"v_gXUm7nobsfU\": {\"duration\": 153.97, \"timestamps\": [[0, 18.48], [24.64, 120.1], [123.18, 133.19], [140.11, 153.97]], \"sentences\": [\"A woman in a sparkling green dress talks on a stage.\", \" A couple is shown dancing, kicking and swirling creatively.\", \" When they are done, they hold hands as the crowd cheers.\", \" They walk over to the woman in a green dress, hugging her before leaving the stage.\"]}, \"v_mAfp5ABlKyM\": {\"duration\": 42.89, \"timestamps\": [[0, 6.65], [8.15, 19.3], [20.37, 39.24], [40.1, 42.89]], \"sentences\": [\"Two men are playing table tennis while two judges sit at either end.\", \" The men hit the ball back and forth.\", \" The winner raises his hands  as the crowd cheers.\", \" The scene is replayed of his successful hit.\"]}, \"v_cQ3pZhIBPHI\": {\"duration\": 55.94, \"timestamps\": [[0, 18.46], [18.46, 39.44], [39.72, 55.94]], \"sentences\": [\"A man is in a gym kneeling down holding a medium sized medicine ball.\", \"He then sits up and starts to throw the ball back and forth against the wall.\", \"After,a list of cues appear before showing off the venue and their youtube page.\"]}, \"v_uLhOFVNmRu8\": {\"duration\": 87.96000000000001, \"timestamps\": [[0, 15.39], [10.55, 87.96]], \"sentences\": [\"A man in green sitting at the end of the sand  square taking video, on the sides of the square are three men.\", \" The young athlete in blue uniform run in a narrow lane, hopped and jump on the sandy ground.\"]}, \"v_7KT-z20qxI4\": {\"duration\": 228.46, \"timestamps\": [[0, 18.28], [20.56, 125.65], [125.65, 201.05], [205.62, 228.46]], \"sentences\": [\"Three people are in a news room, talking to the camera.\", \" A team is playing ice hockey, and celebrating as they win a game.\", \" The happy teammates smile for interviews in the locker room after.\", \" The news casters are shown holding number sticks and laughing.\"]}, \"v_MWn4qozlaMs\": {\"duration\": 41.22, \"timestamps\": [[0.82, 10.72], [11.95, 28.03], [30.09, 40.19]], \"sentences\": [\"A woman is seen pulling food out of a fridge and speaking to a girl who walks downstairs.\", \" They women continue speaking when a man also walks down the stairs.\", \" The woman and man then speak and the other woman walks upstairs.\"]}, \"v_wtQQ5I0QRuw\": {\"duration\": 180.05, \"timestamps\": [[0, 14.4], [15.3, 36.01], [36.91, 76.52], [76.52, 95.43], [96.33, 180.05]], \"sentences\": [\"A young women in her bra and underwear sits on a bed.\", \" She then applies lotion to her legs and hands.\", \" She is very thorough in her work making sure not to miss anything.\", \" She then starts the process of shaving her legs very intently.\", \" She continues this process with her other leg being very good at attention to detail.\"]}, \"v_EqhnCfb5vEc\": {\"duration\": 186.16, \"timestamps\": [[0, 37.23], [37.23, 88.42], [71.67, 123.79], [123.79, 186.16]], \"sentences\": [\"A woman is on stage doing a belly dance routine, she is very passionate about it.\", \" She starts to spin in circles, her dress twirling along with her.\", \"  Her dress comes up over head and then down to her shoulders, she continues to spin in circles and takes the dress off and holds it like a baby.\", \" She goes back to spinning around until her dance is over and then she drops to the floor.\"]}, \"v_4rmo35vpG00\": {\"duration\": 60.49, \"timestamps\": [[0, 9.98], [12.7, 25.71], [28.13, 60.49]], \"sentences\": [\"A woman and girl are trying to get a dog into a shower.\", \" The dog keeps jumping back out.\", \" They finally give the dog a bath outdoors with a hose.\"]}, \"v_2glmVDTPY44\": {\"duration\": 226.19, \"timestamps\": [[7.92, 223.92], [27.14, 78.03], [143.63, 192.26], [162.85, 222.79]], \"sentences\": [\"A man snowboards over snow covered slopes and hills and several other objects like railings, roofs, garages and tree stumps.\", \"  A man snowboards over snow covered hill.\", \"  The man then continues to snowboard off of a garage roof, a stair railing and several other places.\", \"  The man does a complete spin in the snow in the final shot.\"]}, \"v_0bbL30qENMg\": {\"duration\": 201.99, \"timestamps\": [[0, 24.24], [25.25, 54.54], [59.59, 133.31], [141.39, 162.6], [179.77, 197.95]], \"sentences\": [\"A boy rinses his face with water in a bathroom sink.\", \" The boys laugh and joke together in the bathroom.\", \" A boy rubs soap on his hands and then onto his face.\", \" The boy rinses the soap off from his face in the sink.\", \" The boy rolls up the towel and throws it in the corner of the room.\"]}, \"v_VbWomrZXIus\": {\"duration\": 129.66, \"timestamps\": [[12.97, 58.35], [58.35, 70.02], [61.59, 68.07], [70.67, 116.05]], \"sentences\": [\"An old man flips an skateboard with his feet, then take it and throw to the floor and skate.\", \" After, the man hit the skateboard with his foot and it raise high, the man tries to catch the skateboard but he miss it.\", \" A boy almost get hit with a skateboard.\", \" Then the man skate on the park and then goes to a skateboard track.\"]}, \"v_UJiQEkByWcM\": {\"duration\": 15.3, \"timestamps\": [[0, 5.43], [5.51, 10.48], [10.41, 15.3]], \"sentences\": [\"A young boy in a blue sweater jumps out from the side and stands in front of a dart board.\", \"Once he calms down,he turns around and begins throwing darts on the board.\", \"After all of the darts are thrown,the camera zooms in on the darts to show what he had done.\"]}, \"v_4E8rMLHIpag\": {\"duration\": 125.33, \"timestamps\": [[0, 11.28], [11.91, 98.38], [98.38, 125.33]], \"sentences\": [\"A man in a black hat is talking to the camera.\", \" He starts playing a violin on his shoulder.\", \" He stops playing and puts the violin down to his side.\"]}, \"v_Yd98o-oEGvI\": {\"duration\": 164.31, \"timestamps\": [[0, 34.5], [34.5, 117.48], [117.48, 164.31]], \"sentences\": [\"A man and a dog is out in a field and the dog holds the frisbee between his legs and the dog jumps over the person's back and fetches the frisbee.\", \"The game continues and the two continues to play with the frisbee while the owner puts his legs up for the dog to get.\", \"Now,the human has four or five frisbees and starts to throw them rapidly for the dog to get.\"]}, \"v_2YE_8XDuDBI\": {\"duration\": 135.68, \"timestamps\": [[0, 6.78], [6.78, 135.67], [14.25, 22.39]], \"sentences\": [\"A view of a home is briefly shown.\", \" It pans to another room and it shows a small child sitting at a drum set, sucking on a pacifier and holding two drumsticks and hitting the drums.\", \" The child hits the cymbals a few times with his left hand then he grabs the drumsticks and starts hitting all of the drums.\"]}, \"v_4ELWxQw0PPE\": {\"duration\": 226.77, \"timestamps\": [[0, 58.96], [56.69, 226.77]], \"sentences\": [\"Two men are seen holding hands with a ref holding them together and leads into an arm wrestling match.\", \" One man wins and then goes on to arm wrestle several more people.\"]}, \"v_90cHokbZy6A\": {\"duration\": 170.74, \"timestamps\": [[0, 12.81], [20.49, 94.76], [110.98, 170.74]], \"sentences\": [\"a man is talking outside in a garden.\", \" He is holding a pocket knife in his hand.\", \" He uses a stone to sharpen the knife for the camera.\"]}, \"v_83a5nOzZU1g\": {\"duration\": 92.22999999999999, \"timestamps\": [[0.46, 25.36], [25.36, 92.23]], \"sentences\": [\"A drink is being poured into a glass followed by a woman grabbing a glass and pouring mixtures into it.\", \" She creates an alcoholic drink by pouring several different mixes together and the camera zooming in on the drink.\"]}, \"v_v9vc_d-qFnk\": {\"duration\": 48.65, \"timestamps\": [[0.49, 16.54], [11.68, 36.48], [34.78, 47.43]], \"sentences\": [\"An athletic man is seen steeping up to a set of uneven bars and puts his arms up to present he's ready.\", \" The man continues to spin himself around performing flips and tricks on the uneven bars.\", \" The man continues to flip around and ends by wobbling but putts his hands up to finish.\"]}, \"v_jJ5t3ZUxP7Y\": {\"duration\": 36.43, \"timestamps\": [[0, 6.01], [6.56, 16.94], [17.85, 36.43]], \"sentences\": [\"A man walks over to the end of a table that has a bunch of red cups arranged in a triangle.\", \" He begins to toss a ball into the cups.\", \" The video goes to black and a graphic appears to close the clip.\"]}, \"v_GK_DCUGw5lM\": {\"duration\": 41.68, \"timestamps\": [[0, 41.68], [5.84, 41.68], [24.8, 30.63]], \"sentences\": [\"A woman in a black shirt is dancing.\", \" She is twirling a baton.\", \" She catches the baton and twirls.\"]}, \"v_zuqNxHmtBD8\": {\"duration\": 54.73, \"timestamps\": [[0, 2.74], [3.01, 17.24], [17.51, 18.61], [17.51, 36.94], [37.49, 54.73]], \"sentences\": [\"We see a man's face up close with his name imposed over it as the man prepares to run on a track.\", \" The man runs down the track and performs a long jump and throws his arms in the air.\", \" We see another man stretching his arms.\", \" The jumper waits for the scores to appear on the screen and the man who jumped throws his hands in the air and runs away.\", \" A reply of the jump is played.\"]}, \"v_mX3gbTBdbKY\": {\"duration\": 219.66, \"timestamps\": [[0, 41.74], [48.33, 104.34], [107.63, 219.66]], \"sentences\": [\"A group of men are on camera, singing in a video and talking.\", \" They are wearing sunglasses as they change from a lot to a paint covered warehouse.\", \" A man is covered in paint and wearing boxing gloves as he gloats to the camera.\"]}, \"v_TiiSh9R89vM\": {\"duration\": 209.79, \"timestamps\": [[36.71, 79.72], [79.72, 117.48], [117.48, 158.39], [158.39, 190.91], [190.91, 201.4]], \"sentences\": [\"There are two people out on a snow tubing slope where one of them is video taping his experience of snow tubing with his friend.\", \" There's a woman who picks up some ice that's fallen o the ground.\", \" There are several people waiting in line to go snow tubing.\", \" After they reach the top of the slope, they get into their tubes and begin sliding downhill.\", \" They go down the snow covered slopes till they reach the bottom.\"]}, \"v_3fAVDJyrSQs\": {\"duration\": 75.93, \"timestamps\": [[0, 75.93], [0, 12.15], [15.19, 20.88], [26.96, 29.61], [38.34, 45.56], [45.56, 75.93]], \"sentences\": [\"People are standing around a camp site chopping wood.\", \" A boy stands holding a stick.\", \" A man throws pieces of wood into a pile.\", \" Chairs at the camp site are shown.\", \" A man walks towards the camera talking.\", \" They continue chopping wood at the camp site.\"]}, \"v_Jxhz1ln7UXk\": {\"duration\": 204.89, \"timestamps\": [[1.02, 50.2], [68.64, 164.94], [130.11, 199.77]], \"sentences\": [\"A person is seen walking around a yard as well as many people standing.\", \" The people then beginning playing a game with one another and running around the yard.\", \" The people huddle up together while leading into more shots of people playing the game and speaking to the camera.\"]}, \"v_3gpgeAMy6a8\": {\"duration\": 36.83, \"timestamps\": [[0, 36.83], [20.44, 36.83], [21.18, 36.83]], \"sentences\": [\"kids are standing in a green grassy field flying kites.\", \" man wearing white shirt is flying the kite in a lage field.\", \"litle kid wearing an orange shirt is watching the man.\"]}, \"v_KvscV2XxyTE\": {\"duration\": 103.19, \"timestamps\": [[0, 16.51], [16.51, 29.93], [32.5, 46.44], [58.3, 63.98], [64.49, 90.29], [91.32, 103.19]], \"sentences\": [\"Gymnast Micah Ross mounts the balance beam before a celebrated audience as the crowd cheers and shouts her name.\", \" Her routine begins with a flip, split, and summersault.\", \" She then performs two backwards flips and a pirouette.\", \" A forward flip and jump follows along with a sideways flip.\", \" After briefly wobbling on the bar, Micah regains her composure and performs a forward summersault.\", \" Ross successfully dismounts with a double flip to the applause of the audience.\"]}, \"v_YED3l3gkrk4\": {\"duration\": 159.94, \"timestamps\": [[0, 146.34], [147.94, 159.94]], \"sentences\": [\"A tutorial is given on how to make a perfect french manicure.\", \"  An advertisement is shown at the end.\"]}, \"v_9vzbohxkIKA\": {\"duration\": 50.12, \"timestamps\": [[0.75, 29.07], [18.55, 48.87]], \"sentences\": [\"A person's hand are seen dealing cards onto a table as well as several clips of a casino being shown.\", \" More shots are shown of people dealing cards to others as well as people cheering and continuing to deal cards.\"]}, \"v_DXIHbnyfNGA\": {\"duration\": 220.68, \"timestamps\": [[0, 16.55], [28.69, 32], [36.41, 50.76], [47.45, 220.68]], \"sentences\": [\"A computer monitor sits on a desk.\", \" A boy puts on gloves.\", \" He then puts on a helmet.\", \" He then rides a longboard.\"]}, \"v_nK7XMj4gYJs\": {\"duration\": 45.65, \"timestamps\": [[2.51, 40.86], [0.23, 44.05], [7.3, 39.03], [39.26, 45.65]], \"sentences\": [\"A man is demonstrating a gymnastics performance on two bars.\", \" There are spectators watching the performance.\", \" A person is photographing the performance.\", \" The gymnast jumps off the bars and another gymnast is running towards them.\"]}, \"v_RGVDeXqN1ao\": {\"duration\": 164.42000000000002, \"timestamps\": [[18.91, 48.5], [48.5, 98.65], [98.65, 137.29], [137.29, 152.09]], \"sentences\": [\"A woman dressed in a black shirt representing the company Bents is standing in a garden and demonstrating how to use Cellophane to wrap a plant for gift purposes.\", \" She cuts a rectangular piece of the Cellophane and place the pot over it in the center.\", \" Then she brings to together the edges of the Cellophane towards the top of the plant.\", \" She takes a decorate piece of ribbon to tie the scrunched up cellophane together to make it look like a bow on top.\"]}, \"v__nTjmHQ0-gQ\": {\"duration\": 43.1, \"timestamps\": [[0, 4.53], [4.96, 9.48], [9.7, 23.06], [23.27, 42.24], [42.45, 43.1]], \"sentences\": [\"A man springs on a track and jumps onto a dirt area.\", \" A second man does the same.\", \" A third man follows him.\", \" A fourth man goes after him.\", \" A fifth man starts to sprint as he holds a long bar.\"]}, \"v_WLpjci5dN8s\": {\"duration\": 109.55, \"timestamps\": [[0, 12.05], [12.05, 55.32], [57.51, 84.36], [84.36, 95.31], [95.86, 109.55]], \"sentences\": [\"Words are written on the screen.\", \" A knife is put into a sharpener and moved back and forth and used on a circular sharpener.\", \" A pair of scissors is sharpened on the sharpener.\", \" The scissors cut a purple towel and a piece of paper.\", \" Words are shown on the screen again.\"]}, \"v_UgrOTFBD7tA\": {\"duration\": 202.55, \"timestamps\": [[0, 9.11], [15.19, 188.37], [97.22, 124.57], [191.41, 202.55]], \"sentences\": [\"Mountains are seen in the distance with clouds moving over top during the afternoon.\", \" Mountain climbers use ropes and hooks to metal clips up along cracks in a sheer rock face.\", \" The climber sets a metal round clips into the crack of the rock face.\", \" Clouds move over a mountain range at sunset.\"]}, \"v_L-A8RECKhtQ\": {\"duration\": 118.59, \"timestamps\": [[4.74, 39.13], [40.91, 92.5], [90.72, 118.59]], \"sentences\": [\"A picture of a man is seen and leads into a man bending down on a lawn and performing various dance moves.\", \" The man sings along while performing his routine and is then seen running across the yard with a lawn mower.\", \" More dancing and singing is seen, a picture of holding cards is shown, and ends with him cutting the grass and holding down with a friend.\"]}, \"v_inw7wXFL9dw\": {\"duration\": 204.87, \"timestamps\": [[7.17, 113.7], [74.78, 201.8]], \"sentences\": [\"Various clips are shown of young people dancing and partying with one another as well as drinking and playing beer pong.\", \" More shots are shown of people looking and speaking to the camera while playing pong and drinking beer with one another.\"]}, \"v_RpItv2ztook\": {\"duration\": 223.59, \"timestamps\": [[0, 223.59], [19, 45.83], [46.95, 223.59]], \"sentences\": [\"A video of skier on a snowy hill shoots video of themselves as skiing as other skiers go past.\", \"  The skier goes past the ski lifts as they go around a corner and go past the lifts again.\", \"  They then turn back around and go under the lift and travel further down hill on a path passing blue fences, a trail marker sign and ending at a lodge.\"]}, \"v_zrXTMcKFa5E\": {\"duration\": 237.13, \"timestamps\": [[0, 234.77], [59.28, 237.13]], \"sentences\": [\"A child goes and plays in a playplace.\", \"  She climbs, goes down slides, rocks back and forth, and has general merriment.\"]}, \"v_cS19K2310Lc\": {\"duration\": 205.47, \"timestamps\": [[0, 6.16], [8.22, 31.85], [33.9, 183.9], [185.95, 205.47]], \"sentences\": [\"A picture is shown of a baby juxtaposed beside a little girl.\", \" A woman is seen with a young girl as she speaks.\", \" She then has the girl sit down as she proceeds to braid her hair in long, thick pieces.\", \" She pins the hair in place, then waves goodbye to the camera.\"]}, \"v_Po6tK3rYE8E\": {\"duration\": 106.95, \"timestamps\": [[0, 18.18], [21.39, 91.44], [91.98, 106.95]], \"sentences\": [\"A man rolls out a sheet of wallpaper from a tube, then a large photo.\", \" He applies the sheet and photos to the wall, creating a real life photography mural.\", \" He wipes the images onto the wall cleanly.\"]}, \"v_kee3-2cw7-E\": {\"duration\": 24.45, \"timestamps\": [[0, 9.17], [8.8, 24.45]], \"sentences\": [\"A man is seen blindfolded while holding a stick and two others around him.\", \" The man then swings violently at the pinata as someone moves it higher and then drops the pinata right above his head.\"]}, \"v_eil9mWGJB8E\": {\"duration\": 29.44, \"timestamps\": [[0, 29.44], [2.06, 12.51], [12.66, 21.35], [22.08, 29.44]], \"sentences\": [\"A crowd is gathered around two women who are arm wrestling.\", \" The women grab each others hands and push as hard as they can until one of them loses.\", \" They redo the arm wrestling.\", \" One of the girls lets her hand loose and the other girl opens her mouth in shock.\"]}, \"v_XM3SktXBbHU\": {\"duration\": 7.8, \"timestamps\": [[0.04, 4.56], [3.39, 7.61]], \"sentences\": [\"A person is seen in the middle of a large gymnasium jumping around with another man in the middle raising his arms up.\", \" The person on silts then jumps over the person with their arms up as well as another.\"]}, \"v_1nXLVjfupto\": {\"duration\": 229.37, \"timestamps\": [[0, 74.54], [75.69, 229.37]], \"sentences\": [\"Two men are seen standing behind a table speaking to the camera and then hold up various objects to the camera.\", \" They use tools on a tin can and then are seen sitting outside holding up more tools.\"]}, \"v_YSO5CGeeTmE\": {\"duration\": 106.97999999999999, \"timestamps\": [[0, 106.98], [0, 43.86], [55.63, 106.98]], \"sentences\": [\"A band is marching down a street playing drums.\", \" A woman in a black hat is standing on the street watching them.\", \" People are standing up watching the band.\"]}, \"v_Vm07Uu4_iCE\": {\"duration\": 68.31, \"timestamps\": [[2.39, 31.08], [23.91, 67.63]], \"sentences\": [\"A man is seen kneeling down to a tire an then places it on a machine.\", \" He continues to use the machine to take the rubber off of the tire and ends by placing it back down.\"]}, \"v_zxzBoK5t0XY\": {\"duration\": 232.34, \"timestamps\": [[2.32, 104.55], [69.7, 189.36], [178.9, 228.85]], \"sentences\": [\"A horse is seen off in the distance followed by a man speaking to the camera in front of a large group of horses.\", \" Various people are then seen riding around on horses through different landscapes and being led by people.\", \" The men continue to lead people around on the horses through a large body of water.\"]}, \"v_pyeTqpj2EPo\": {\"duration\": 133.66, \"timestamps\": [[0, 12.7], [16.04, 103.58], [108.26, 133.66]], \"sentences\": [\"A chef is working in a kitchen.\", \" He presses buttons on a digital screen.\", \" He prepares a large dish of pasta, which he cooks in the machine.\"]}, \"v_BIL1t2eQrDU\": {\"duration\": 151.35, \"timestamps\": [[0, 24.22], [23.46, 60.54], [61.3, 151.35]], \"sentences\": [\"A man is shown talking to a camera followed by him and another woman standing near a volleyball net.\", \" The man throws the ball to the girl who bounces it back to him.\", \" He continues to speak and demonstrate various volleyball moves to do appropriately.\"]}, \"v_Da9uVKDLwVY\": {\"duration\": 238.4, \"timestamps\": [[0, 14.3], [23.84, 146.62], [160.92, 238.4]], \"sentences\": [\"A small collie is standing on top of a table.\", \" He is tied in place, and a man begins brushing him all over.\", \" He stands still as he is being groomed.\"]}, \"v_UcnzlGqUEyA\": {\"duration\": 59.61, \"timestamps\": [[8.94, 12.52], [15.2, 18.78], [22.65, 27.72]], \"sentences\": [\"A person picks up a piece of fruit.\", \" A brush is shown on the screen.\", \" A man is shaving his beard.\"]}, \"v_c2ejr7Lci8s\": {\"duration\": 27.73, \"timestamps\": [[0, 13.59], [13.17, 27.73]], \"sentences\": [\"A person is seen riding a unicycle in the middle of a forest while holding an instrument.\", \" The man continues riding down the path as the camera follows his movements.\"]}, \"v_vr0Wi359kWM\": {\"duration\": 172.69, \"timestamps\": [[0, 6.91], [18.13, 46.63], [56.12, 112.25], [116.56, 163.19], [166.64, 172.69]], \"sentences\": [\"An intro shows off the products of the video.\", \" The host shows off each product and how they help clean a shoe.\", \" First we see the sneaker get cleaned.\", \" A basketball shoe is cleaned next.\", \" Some ads play to close the video.\"]}, \"v_9MGnF59gZfM\": {\"duration\": 107.78, \"timestamps\": [[0, 18.32], [18.32, 44.73], [44.73, 77.6], [77.6, 107.78]], \"sentences\": [\"A man with a bow and arrow is practicing his aim and form.\", \" He shoots an arrow and grabs another one from behind hm and gets ready to shoot again.\", \" He pulls back the string on the bow and releases it along with the arrow.\", \"  He continues this routine over and over, practicing for perfection.\"]}, \"v_fGDVlbI90pw\": {\"duration\": 10.89, \"timestamps\": [[1.2, 8.99], [8.99, 10.62], [10.62, 10.89]], \"sentences\": [\"A young girl wearing a gray sweater with long red colored hair is brushing her hair.\", \" She is using a silver paddle brush to remove the knots from her hair and de-tangle it as she brushes it through.\", \" She suddenly begins to scream as she brushes her hair.\"]}, \"v_OkMH4AlF8hQ\": {\"duration\": 50.25, \"timestamps\": [[0, 39.44], [39.7, 50.25]], \"sentences\": [\"A young child is seen holding an ice cream cone and speaking to the camera while smiling.\", \" She speaks to the camera man holding a doll in the other hand, then sits down on the ground.\"]}, \"v_BUhpWV98EjM\": {\"duration\": 112.18, \"timestamps\": [[0, 25.8], [25.8, 59.45], [59.45, 80.21], [80.21, 112.18]], \"sentences\": [\"A woman and a man are standing outside doing some interesting techniques with one another.\", \" They seem to work well with one another moving in sync of or less never hitting the other.\", \" They are doing some type of karate or something.\", \" The one grabs the man intensely and hugs him it looked they wanted to kiss but they didn't.\"]}, \"v_EE2nFMHRacg\": {\"duration\": 136.42000000000002, \"timestamps\": [[0, 22.51], [23.19, 113.91], [114.59, 136.42]], \"sentences\": [\"A group of elderly people are seated on chairs outside.\", \" A man is playing a tune using a stick and a saw.\", \" The men next to him are holding instruments, waiting their turn.\"]}, \"v_xeOHoiH-dmo\": {\"duration\": 186.36, \"timestamps\": [[0, 19.57], [17.7, 110.89], [117.41, 186.36]], \"sentences\": [\"A playground is shown and a back yard as the camera pans over to a window on a roof.\", \" The video shows various pictures on how to fix a roof and the man pans over the window again with material.\", \" He places various objects around the window and shows more pictures of the roof with the finished product.\"]}, \"v_NnW_1eQV9GU\": {\"duration\": 145.92000000000002, \"timestamps\": [[13.13, 111.62], [19.7, 111.62], [19.7, 29.91], [19.7, 36.48], [19.7, 49.61]], \"sentences\": [\"A rodeo rider comes out of the gate on a bull and gets thrown off.\", \"The rodeo clowns distract the bull as the rider gets to safety.\", \"A clown gets hurt and goes for treatment from a pretty lady.\", \"A group of men on horses talk and as they ride away, the clown restarts his job in the ring.\", \"The clown gets injured again as he jumps over a bulls head and the other clowns help him up.\"]}, \"v_WWhL75t7p8A\": {\"duration\": 100.66, \"timestamps\": [[0, 53.35], [52.34, 100.66]], \"sentences\": [\"A large group of people are seen holding a rope while two more walk into frame and the camera closes in on the people.\", \" The camera continues to pan around the people and leads into a match of tug of war and the women celebrating.\"]}, \"v_sn1OtmEJxng\": {\"duration\": 155.37, \"timestamps\": [[0, 22.53], [23.3, 51.27], [69.91, 155.37]], \"sentences\": [\"A long line of bikers are shown in the dark at an event.\", \" A man is speaking onstage to the people as they prepare for the main event.\", \" The people run and jog past the cheering crowd, until the reach the finish line, where they stop to talk and hold up the rope they tore down.\"]}, \"v_lzb6HHN59K4\": {\"duration\": 150.81, \"timestamps\": [[5.28, 98.78], [6.03, 18.85], [18.85, 71.64], [36.95, 124.42]], \"sentences\": [\"A dog owner takes three dogs to a dog cleaning service and company where the dogs are washed and dried.\", \"  Three dogs  are shown getting dirty by waking in mud puddles and through dirt and grass.\", \"  The dogs are then loaded in a vehicle and taken to a dog washing company where they are placed in wash sinks.\", \"  All three dogs are washed and dried by people after which the people are shown cleaning the area where the dogs were washed.\"]}, \"v_UomiLRs--C8\": {\"duration\": 53.73, \"timestamps\": [[0, 8.06], [8.06, 47.01], [47.01, 53.73]], \"sentences\": [\"A man is begining to weld.\", \" He starts to weld a piece of metal onto a frame.\", \" He finishes his weld and backs away.\"]}, \"v_Sfdj_kMDUh8\": {\"duration\": 151.35, \"timestamps\": [[9.84, 12.11], [15.13, 32.54], [51.46, 65.08], [65.84, 126.38], [124.11, 131.67]], \"sentences\": [\"A man is unrolling carpet onto the floor.\", \" He is on his knees cutting the carpet.\", \" He is putting glue onto the floor.\", \" He then lays the carpet down on top of it and smooths it out.\", \" He then vacuums the carpet when he is finished.\"]}, \"v_gC4B1Az2Mk0\": {\"duration\": 96.92, \"timestamps\": [[0, 8.72], [11.15, 69.3], [65.42, 96.92]], \"sentences\": [\"A little boy is seated on the floor with a cup and a spoon.\", \" He is eating a white substance as his mother comes to check on him.\", \" He continues eating slowly as she walks past.\"]}, \"v_iBEUNOMTr8M\": {\"duration\": 182.53, \"timestamps\": [[0, 15.52], [17.34, 39.24], [43.81, 127.77], [131.42, 182.53]], \"sentences\": [\"A couple of women are talking as they stand in a backyard.\", \" They are holding moss killer attached to hoses.\", \" The women spray the moss killer onto the roof of a shed, killing the growth with the liquid.\", \" They then hold up the moss killer strips in a box.\"]}, \"v_a0hFDXB1RgY\": {\"duration\": 114.17, \"timestamps\": [[1.71, 105.04], [20.55, 33.68], [77.07, 97.05]], \"sentences\": [\"A man is sitting in a kayak in the river while speaking to the camera about his trip.\", \" He moves slowly in the water while giving instructions on how to properly move the kayak.\", \" He begins paddling up the stream and showing what to do if you get stuck.\"]}, \"v_YDIRaWzfyYY\": {\"duration\": 195.98, \"timestamps\": [[0, 29.4], [29.4, 41.16], [41.16, 146], [146, 195.98]], \"sentences\": [\"man is talking to a camera and holding a knife and some magazines.\", \" man holds the knife and shavea small piece of his arm.\", \" man grabs some rocks from a cup of water and sharp the knife.\", \" man use the knife to cut the magazine.\"]}, \"v_b7fs8OAJzQk\": {\"duration\": 31.39, \"timestamps\": [[0, 5.65], [7.22, 23.23], [24.17, 31.39]], \"sentences\": [\"A man is seen in the ocean waters.\", \" He is riding a pair of water skis.\", \" He is being drug by a boat as he skis through the waves.\"]}, \"v_RMrL2txm79c\": {\"duration\": 102.77000000000001, \"timestamps\": [[0, 3.08], [3.08, 28.26], [28.78, 50.36], [50.36, 89.93], [90.95, 102.77]], \"sentences\": [\"We see the opening title  screens.\", \" A person washes and cuts open a pumpkin.\", \" The person cleans to the insides and draws a face on the pumpkin.\", \" They carve the face to make a jackolantern.\", \" We then see the carved pumpkin with a candle inside and the closing screen.\"]}, \"v_zKYqEsVfEnU\": {\"duration\": 122.63, \"timestamps\": [[0, 49.66], [51.5, 122.63]], \"sentences\": [\"Two men are seen standing together with one speaking to the camera and the other laying on the floor.\", \" The man kneels behind him and points to his body while the man laying door moves his arms and legs to demonstrate proper exercises.\"]}, \"v_0gm_g4rYCic\": {\"duration\": 143.61, \"timestamps\": [[0, 21.54], [28.72, 104.83], [109.86, 143.61]], \"sentences\": [\"A large group is inside a raft on a river.\", \" A man in a kayak is next to them.\", \" They float into the rapids, trying to go through them.\"]}, \"v_tL90IPP3hbA\": {\"duration\": 92.6, \"timestamps\": [[0, 8.8], [6.95, 27.32], [27.78, 78.25], [48.62, 78.25], [79.17, 91.21]], \"sentences\": [\"A logo is seen and captions are shown on the screen.\", \" Trees and mulch are shown with a slight breeze.\", \" Several people are shown planting a tree.\", \" The people are spreading mulch around the tree.\", \" Several logos are shown on the screen.\"]}, \"v_bghOBRA0z-Y\": {\"duration\": 204.29, \"timestamps\": [[0, 204.29], [62.31, 204.29]], \"sentences\": [\"A man gives a harmonica lesson with closeups and basically a way to tell about how to play the harmonica.\", \"  The man introduces other types of harmonicas as well.\"]}, \"v_NtX9Q0QX3sw\": {\"duration\": 183.79, \"timestamps\": [[0, 79.03], [80.87, 142.43], [143.35, 183.79]], \"sentences\": [\"A man cleans a window using a soft squeegee with detergent while explaining, then the man takes a steel wiper to clean the detergent on the window.\", \" Then, the man applies more detergent with the soft squeegee, then clean with the steep wiper.\", \" After, the man wash again the window using the soft squeegee and the steel wipe while explaining the procedure.\"]}, \"v_Lh50gF5l0dw\": {\"duration\": 15.02, \"timestamps\": [[1.65, 6.84], [6.84, 7.81], [7.81, 13.37], [13.37, 15.02]], \"sentences\": [\"A man wearing a blue shirt is throwing the shot put.\", \" He is going in a circular motion on a red circle painted on the ground.\", \" He throws the shot put into the air.\", \" Another man is swinging in circular motion, ready to throw the shot put.\"]}, \"v_I9wra8bj2sg\": {\"duration\": 23.08, \"timestamps\": [[0, 4.85], [4.96, 15.23], [18.35, 20.89], [15.46, 22.62]], \"sentences\": [\"A horseman throws a rope to catch a calf while people watch.\", \" Intermediately, the man get down the horse and tie the calf.\", \" Men walks behind the horse.\", \" After, the man get in the horse.\"]}, \"v_0-kEI13BtcY\": {\"duration\": 158.24, \"timestamps\": [[8.7, 12.66], [15.03, 28.48], [28.48, 39.56], [40.35, 62.51], [64.88, 109.19], [64.88, 158.24]], \"sentences\": [\"Ducks are swimming in the water.\", \" People are moving dirt around in a park.\", \" A woman in a black shirt and glasses talks to the camera.\", \" People are raking the dirt around.\", \" Different people are talking to the camera.\", \" The people continue to landscape at the park.\"]}, \"v_C1kmoJttp4M\": {\"duration\": 128.5, \"timestamps\": [[0.64, 1.29], [1.29, 3.86], [3.86, 53.33], [53.33, 78.39], [78.39, 104.73], [104.73, 125.29], [125.29, 128.5]], \"sentences\": [\"A still shot picture of an omelette being poured out of a pan and onto a white plate appears and the white text on it say's \\\"How to make an omelette\\\".\", \" A white screen with a clipart of red lion wearing a crown appears and the blue words \\\"British Lion Quality are around he lion.\", \"A woman is now in the kitchen standing in front of a pan on a stove, she turns the oven on, grabs a large measuring cup and begins cracking eggs into it then adds various other ingredients to the eggs, and then whisks it all up.\", \" The woman then puts butter in the pan, melts it all around, then pours her egg mix into the pan.\", \"The woman grabs her wooden spatula and starts manipulating the eggs in the pan making sure it doesn't stick and that it cooks thoroughly.\", \" The woman then takes the egg to the white plate and folds it onto it then adds a handful of greens next to it.\", \" A white screen appears with the red clipart lion in the middle and the blue words \\\"British Lion Quality\\\" going around it.\"]}, \"v_OeIQ0P0FCCg\": {\"duration\": 227.49, \"timestamps\": [[4.55, 110.33], [87.58, 208.15]], \"sentences\": [\"A person sitting on a bicycle is seen sitting before a track start with others and leads into him completing a race.\", \" Several more shots are shown of people racing all together as well as the man riding around and others recording him.\"]}, \"v_ez9uLqGV7AA\": {\"duration\": 154.9, \"timestamps\": [[0, 151.8], [68.16, 75.13], [128.57, 130.89]], \"sentences\": [\"A man is skateboarding down a sidewalk.\", \" He does a flip on the skateboard.\", \" He falls off the skateboard onto the ground.\"]}, \"v_tD30qafrkhM\": {\"duration\": 162.11, \"timestamps\": [[0, 12.97], [12.97, 17.83], [18.64, 21.89], [21.89, 36.48], [36.48, 45.39], [45.39, 49.44], [49.44, 60.79], [60.79, 83.49], [83.49, 99.7], [102.94, 123.21], [123.21, 130.5], [136.17, 147.52], [145.09, 152.39], [157.25, 162.11]], \"sentences\": [\"A man and woman are having sex and kissing inside a shower.\", \" She pushes him away and starts crying.\", \" A couple is having sex on a bed.\", \" The woman pulls out a feather and licks it.\", \" She rubs it on the mans face.\", \" She has a knife and rubs it down his chest.\", \" She looks up at him and lights a cigarette.\", \" She lays on her back and laughs.\", \" The woman is talking and laughing while holding a snake.\", \" The woman is talking to someone.\", \" A table with food on it is shown.\", \" A wine glass is given to a man by the woman.\", \" He denies the drink and she takes a sip.\", \" They begin to kiss each other.\"]}, \"v_ZeUNeRiU6YY\": {\"duration\": 121.26, \"timestamps\": [[0, 100.64], [46.68, 52.14], [100.64, 121.26]], \"sentences\": [\"The camera follows a person in red pants snowboarding down a slope.\", \" The camera briefly pans away from the woman to focus on the slope.\", \" The camera pans away from the woman to focus on the slope.\"]}, \"v_-K_cgWfJxiU\": {\"duration\": 101.07, \"timestamps\": [[0, 39.42], [39.42, 101.07]], \"sentences\": [\"A man is seen speaking to the camera holding a paddle and sitting in a kayak.\", \" The man then paddles himself around the area on the kayak flipping around and looking to the camera.\"]}, \"v_injaml6fr7s\": {\"duration\": 224.31, \"timestamps\": [[6.73, 214.21], [13.46, 54.95], [54.95, 150.28], [150.28, 224.31]], \"sentences\": [\"A woman rides a horse in an indoor barn while playing a game of solo polo.\", \"  A woman rides a horse in an indoor barn and plays polo while holding a polo stick and chasing a red ball in the indoor setting.\", \"  The woman hits at the ball while riding the horse in circles.\", \" the woman rides the horse until the sun begins to set and the scene gets darker and darker.\"]}, \"v_CUJJViubZ9c\": {\"duration\": 147.24, \"timestamps\": [[0, 147.24], [16.2, 23.56], [134.72, 139.14]], \"sentences\": [\"Wrestlers are fighting in a ring.\", \" A man is picked up and thrown down by other men.\", \" A man falls on a table and breaks it.\"]}, \"v_8fLHaW3YvJY\": {\"duration\": 213.81, \"timestamps\": [[0, 19.24], [19.24, 47.04], [47.04, 116.53], [116.53, 153.94], [153.94, 213.81]], \"sentences\": [\"A man wearing glasses is standing outside in the snow with some gadgets talking.\", \" He brings forward the blue large shovel looking gadget, still talking and then grabs another shovel.\", \" He throws the shovel and then walks to demonstrate how to shovel up the snow.\", \" He continues to talk and then starts using the shovel gadget again.\", \" He shovels piles out some piles of snow.\"]}, \"v_WkWCbz54JSU\": {\"duration\": 143.27, \"timestamps\": [[0, 143.27], [25.79, 131.81], [121.06, 130.37]], \"sentences\": [\"People are standing in a bull ring.\", \" A bull starts chasing a man holding a colorful blanket.\", \" Two horses are dragging a bull off the arena.\"]}, \"v_JBnL0T2XzGs\": {\"duration\": 114.43, \"timestamps\": [[0, 52.06], [53.78, 114.43]], \"sentences\": [\"A group is playing ice hockey for fun in an indoor rink as a man speaks to the camera.\", \" Two women sweep, fighting over the puck, as a woman talks to the camera.\"]}, \"v_vmFfa1yv72k\": {\"duration\": 219.99, \"timestamps\": [[0, 27.5], [27.5, 100.09], [97.89, 134.19], [135.29, 151.79], [150.69, 219.99]], \"sentences\": [\"Several peoples outfits are being panned from the bottom up.\", \"Then a group of cups are on the table and they begin playing beer pong with a group of people.\", \"Several rooms and couples are shown and the ball is thrown in a cup.\", \"Once done,the camera pans out and you can see the couples are competing against each other in a room together.\", \"Couples come back and more beer pong games come back.\"]}, \"v_2gc5VDx2xY8\": {\"duration\": 19.27, \"timestamps\": [[0, 2.31], [2.31, 4.43], [4.34, 12.14], [12.43, 19.27]], \"sentences\": [\"There is a man on a horse waiting for the time to get going to start.\", \" Once the gates open a cow starts running and the man on the horse chases after it with a tassel.\", \"  He swings the tassel in the air a few times and throws it catching the cow and then tying him down.\", \" There is an audience in the stands watching the man do this and there is another man on a different horse at the side waiting.\"]}, \"v_hJI5PEg2UuA\": {\"duration\": 92.7, \"timestamps\": [[0, 92.7], [51.91, 71.38], [71.38, 92.7]], \"sentences\": [\"This elderly man is standing up cutting the red tomato into slices.\", \" He is in the kitchen cutting the tomato using a cheap knife.\", \" It looks hard for him trying to use a knife that barely does anything to try and cut the tomato, but the difference shows in good products.\"]}, \"v_DLlooZTLPdI\": {\"duration\": 173.11, \"timestamps\": [[0, 3.46], [3.46, 12.12], [12.12, 160.99], [42.41, 155.79], [160.99, 162.72], [162.72, 173.11]], \"sentences\": [\"Several bikers are riding back and for the at a festival in the dessert.\", \" A man dressed in women's clothing comes onto the screen and begins to hula hoop while a camera is attached to the hula hoop.\", \" Several other people perform inside the hula hoop camera while the music plays.\", \" Then several people are shown waling up to the hula hoop camera getting ready to hula hoop.\", \" The man that is dressed as a woman gives some one a hug.\", \" The video ends with people riding on a bicycle while the camera is attached to the bike.\"]}, \"v_mTlReluteEQ\": {\"duration\": 106.97999999999999, \"timestamps\": [[0, 54.02], [13.37, 32.63], [62.58, 80.77], [81.3, 106.97]], \"sentences\": [\"A man throws an object in a track and field event at the Olympics.\", \" This is then shown in slow motion and then sped up.\", \" The coach reacts and cheers.\", \"  The athlete receives a medal and waves to the crowd.\"]}, \"v_lIqAkmaXnXg\": {\"duration\": 183.86, \"timestamps\": [[0, 79.06], [79.06, 126.86], [126.86, 183.86]], \"sentences\": [\"A woman is sitting on a chair while she pulls thin art foil pieces from a small table in front of her, and applies it to a small dresser that is also in front of her.\", \" The woman then takes her brush and begins brushing all of the pieces of foils on the top drawer while holding a hand under it to catch all the pieces that fall.\", \" The woman then closes the drawer and brushes it some more.\"]}, \"v_ALjodjboELk\": {\"duration\": 200.2, \"timestamps\": [[0, 55.06], [46.05, 163.17], [131.13, 189.19]], \"sentences\": [\"A group of people are seen swimming around a pool with one man sitting on his head.\", \" More shots are shown of people close up swimming up the water as well as kneeling.\", \" A woman takes off her tank as well as putting it back and leads into them swimming more.\"]}, \"v_N8nv95D4-pw\": {\"duration\": 66.94, \"timestamps\": [[3.35, 66.94], [16.07, 65.94]], \"sentences\": [\"A woman is in a gym talking.\", \"  the woman demonstrates how to do an exercise with a step.\"]}, \"v_j5Fq7Y8EJk8\": {\"duration\": 197.88, \"timestamps\": [[0, 28.69], [28.69, 68.27], [79.15, 177.1], [178.09, 189.97]], \"sentences\": [\"A man rides a jetski on a river with the camera at a distance.\", \" The man jetskis while holding the camera at arm's length.\", \" The man is shown waterskiing while pulled by the jetski.\", \" The man falls and is briefly submerged.\"]}, \"v_9qgO4EQiQzI\": {\"duration\": 158.5, \"timestamps\": [[0, 54.68], [56.27, 150.57]], \"sentences\": [\"A person is seen placing a mat down on a floor with various tools laid out around him.\", \" He measures the floor with a ruler followed by him putting plaster down on the floor and putting the mat back down.\"]}, \"v_RJ5U2y6ccvA\": {\"duration\": 52.22, \"timestamps\": [[0, 10.71], [10.97, 33.42], [33.42, 52.22]], \"sentences\": [\"A young baby is outside in murky water holding on to a white bar.\", \"Two men push him and he is shown riding a water vehicle being pulled by some type of thing.\", \"As he moves,a woman is on the side of him following him and stopping him along the way making sure he is okay.\"]}, \"v_R6INcHHxlNs\": {\"duration\": 42.05, \"timestamps\": [[0, 16.4], [11.98, 33.64], [29.44, 41.21]], \"sentences\": [\"A person is seen shirtless standing in a kitchen and holding a mop.\", \" The man looks back and laughs to the camera while holding the mop.\", \" He continues to laugh and dance around while pushing the mop around.\"]}, \"v_3xUAyMuqBrQ\": {\"duration\": 29.44, \"timestamps\": [[3.39, 9.57], [9.42, 18.99], [21.79, 25.91]], \"sentences\": [\"A man is putting ingredients into a pan.\", \" He stirs it together over a stove.\", \" He puts it on a plate and shows the camera.\"]}, \"v_a6lCnOqNaMY\": {\"duration\": 37.94, \"timestamps\": [[0, 3.79], [2.09, 5.69], [17.64, 21.44]], \"sentences\": [\"A man is running down the track.\", \" He throws a javelin onto the field.\", \" The audience is behind him in the stands watching.\"]}, \"v_eZ_IOp638kQ\": {\"duration\": 222.15, \"timestamps\": [[2.22, 62.2], [44.43, 216.59]], \"sentences\": [\"An athletic man is seen running to throw a ball and another person hits it into the audience.\", \" More clips are shown of people playing the game on the field with the audience cheers and players move around the field.\"]}, \"v_FXb8rBMvol4\": {\"duration\": 139.95, \"timestamps\": [[0, 12.6], [12.6, 16.09], [16.79, 25.89], [26.59, 30.09], [34.29, 36.39], [37.09, 56.68], [56.68, 57.38], [58.78, 82.57], [83.27, 85.37], [85.37, 105.66], [105.66, 109.86], [137.15, 139.95]], \"sentences\": [\"People are coming off of a van holding snowboards.\", \" A man straps his snowboard on.\", \" Several people are snowboarding down a hill.\", \" A man in goggles talks.\", \" A woman holds a child up to kiss a man.\", \" People are snowboarding down a hill.\", \" A man talks to the camera.\", \" Several people do tricks on their snowboards.\", \" A man talks to the camera again.\", \" Several more people are snowboarding and talking.\", \" A man with a beard talks to the camera.\", \"  A man takes off his snowboard.\"]}, \"v_qV8hycDJWto\": {\"duration\": 81.64, \"timestamps\": [[0, 3.67], [4.08, 7.76], [8.16, 26.94], [27.35, 66.13], [66.54, 71.84], [72.25, 81.64]], \"sentences\": [\"A man steps away from a desk.\", \" The man applies his glove to his left hand.\", \" The man taps a metal with a soldering iron.\", \" The man soldiers on the piece of metal.\", \" The man stops soldering the metal.\", \" The man removes his glove and blows smoke away from the metal piece.\"]}, \"v_e2fXKrG2BkY\": {\"duration\": 148.24, \"timestamps\": [[0, 65.22], [65.22, 103.77], [103.77, 141.57], [141.57, 148.24]], \"sentences\": [\"Two boys in blue karate suits and red belts are standing on a stage in a school cafeteria and they are doing a karate routine in unison.\", \" When they are done, they turn to one another, bow, and do some karate matches that involve gently throwing one another to ground and when done with the matches they each take a bow facing the crowd.\", \"The boys then start another karate routine and they are doing various moves with their arms and legs while doing them in unison as much as possible.\", \" When done they both take a bow facing the crowd and they both run off the school stage.\"]}, \"v_L_fvvmvV-Tc\": {\"duration\": 58.17, \"timestamps\": [[0, 11.63], [13.38, 52.06], [52.93, 58.17]], \"sentences\": [\"A man and a little boy are mowing a lawn.\", \" The man pushes the real mower back and forth.\", \" The little boy follows him with a toy mower.\"]}, \"v_N_FbnDY_2j8\": {\"duration\": 30.19, \"timestamps\": [[0, 25.81], [25.81, 30.19]], \"sentences\": [\"A person ski on the pent of a hill covered with snow.\", \" Then, the person arrives to a flat area where there are four people.\"]}, \"v_nmUJ2GfVkKY\": {\"duration\": 147.17000000000002, \"timestamps\": [[0, 133.92], [5.15, 18.4], [19.87, 35.32], [33.85, 134.66], [134.66, 145.7]], \"sentences\": [\"An athlete performs a long jump at a professional sports event as onlookers watch and clap.\", \"  A man in an athletic outfit and a paper number pinned to his chest paces on a sports field.\", \"  The man runs a distance and performs a long jump.\", \"  The man smiles and paces after the long jump as a British flag waves in the background and a template of his score goes across the screen along with slow motion re-inactments.\", \"  The man takes his shoes off while sitting on a bench.\"]}, \"v_Fp8e9dbWeSg\": {\"duration\": 161.5, \"timestamps\": [[0, 88.82], [76.71, 161.5]], \"sentences\": [\"A group of people are seen riding in bumper cars and running into one another.\", \" The people keep bumping into each other and driving around and then stop to climb out of the cars.\"]}, \"v_hXBeu7o9uUM\": {\"duration\": 219.57, \"timestamps\": [[4.39, 200.9], [37.33, 200.9], [203.1, 208.59]], \"sentences\": [\"A man is standing in a room holding a large instrument.\", \" He begins to play the instrument behind a microphone.\", \" A man in a green shirt is talking into a microphone.\"]}, \"v_TmA7xnrULME\": {\"duration\": 64.13, \"timestamps\": [[0, 23.09], [22.45, 64.13]], \"sentences\": [\"A small group of kids are seen playing with two adults on a beach pushing sand into a pile.\", \" The kids continue grabbing water while the camera pans around the other people swimming in the area.\"]}, \"v_OIA7lPraPSM\": {\"duration\": 218.42000000000002, \"timestamps\": [[0, 85.18], [85.18, 90.64], [90.64, 218.42]], \"sentences\": [\"Three people are riding skateboards on a road in a city and the text on the bottom left screen say \\\"Three regulars Justice - New Jack\\\" and they are skating fast going forward, turning, curving, bending down and doing other various tricks all throughout the city and not wearing any helmets or other safety gear.\", \" Two of the guys are stopped on a road and then all of a sudden one of them picks up a skateboard and throws it very hard against the wall.\", \"The guys are shown skateboarding again and this time they are wearing helmets as they skateboard down the roads in this city going very fast and doing multiple various tricks.\"]}, \"v_9cD-Z6Aw7bE\": {\"duration\": 149.89, \"timestamps\": [[0, 7.49], [7.49, 41.22], [29.23, 32.23], [68.2, 70.45], [70.45, 134.9], [117.66, 123.66], [141.64, 149.89]], \"sentences\": [\"We see young ladies hug each other on a track.\", \" We then see replay from their run.\", \" A lady swings her arms as she finishes.\", \" We see a title screen.\", \" We see a 4 ladies throwing the hammer.\", \" A lady hugs someone after her thrown.\", \" A lady hugs a woman and a man.\"]}, \"v__dp7ZH3Upuw\": {\"duration\": 55.43, \"timestamps\": [[0, 7.76], [10.25, 30.76], [34.36, 55.43]], \"sentences\": [\"A small boy swings out off a large piece of playground equipment.\", \" He swings across the bars, trying to hold on.\", \" He makes it all the way to the end before jumping off.\"]}, \"v_rSTXxDLYxTQ\": {\"duration\": 214.74, \"timestamps\": [[0, 60.13], [61.2, 182.53], [183.6, 214.74]], \"sentences\": [\"A close up of shoes are shown followed by a person holding the shoes and rubbing polish around the shoes.\", \" The man then rubs polish into the other shoe on the table as well as back to the one he started on.\", \" He takes a brush and uses it on the shoe, ending with him grabbing the camera.\"]}, \"v_tYV23sjRgt8\": {\"duration\": 84.48, \"timestamps\": [[5.49, 84.48], [19.43, 46.46], [46.46, 60.4]], \"sentences\": [\"This woman is showing viewers how to make a whiskey sour.\", \"  First she pours one ounce of whiskey over ice into the ross glass.\", \" Then she pours citrus into the glass and puts a straw into it.\"]}, \"v_y47RXYfefvQ\": {\"duration\": 12.56, \"timestamps\": [[0, 1.7], [2.26, 10.11], [10.3, 12.56]], \"sentences\": [\"A man is in a snowy parking lot.\", \" He is using a brush to wipe snow off the back windshielf of his car.\", \" He glances at the camera, then keeps wiping.\"]}, \"v_PIGH5p2iMoI\": {\"duration\": 192.05, \"timestamps\": [[0, 11.52], [11.52, 42.25], [42.25, 192.05]], \"sentences\": [\"A marching band is playing on a field.\", \" A man in a trench coat is talking into a microphone.\", \" A team is playing lacrosse on a field of grass.\"]}, \"v_JhiX65Okpt0\": {\"duration\": 182.07, \"timestamps\": [[0, 25.49], [28.22, 101.05], [104.69, 182.07]], \"sentences\": [\"A woman is performing partial arts moves with a man on a stage.\", \" A band plays instruments in the background.\", \" The two spin, flip, and kick, taking turns.\"]}, \"v_rxwmIyvVVUU\": {\"duration\": 16.65, \"timestamps\": [[0, 16.65], [8.66, 8.74], [13.49, 14.9]], \"sentences\": [\"A lady plays pool alone indoors.\", \" The white ball falls off the pool table.\", \" The lady picks up the white ball from the floor.\"]}, \"v_ilX9ntIzaoQ\": {\"duration\": 32.56, \"timestamps\": [[0, 22.3], [21.97, 30.93], [31.09, 32.56]], \"sentences\": [\"We see a man run and jump on a raft as it slides down a long snowy hill.\", \" The raft stops and the cameraman gets up and walks around while filming the ground.\", \" A hand then covers the camera.\"]}, \"v_Q_Rufuciohg\": {\"duration\": 63.48, \"timestamps\": [[1.9, 50.47], [50.15, 63.48]], \"sentences\": [\"An older woman peels a potato over a table.\", \" She sets the knife down on the table.\"]}, \"v_3VoIt9XkPEM\": {\"duration\": 168.35, \"timestamps\": [[26.09, 162.45], [67.34, 69.02], [97.64, 98.48]], \"sentences\": [\"People are floating down a river in tubes.\", \" A person's feet are shown on a tube.\", \" People are standing on the short next to their tubes.\"]}, \"v_bdKB3QYNFbc\": {\"duration\": 232.15, \"timestamps\": [[0, 24.38], [24.38, 232.15]], \"sentences\": [\"men are in a dust racetrack riding bikes doing tricks.\", \" little kids are going down a slide in a dust pathway.\"]}, \"v_wV2c3sdctbs\": {\"duration\": 50.7, \"timestamps\": [[0, 31.18], [31.44, 50.7]], \"sentences\": [\"A boy is explaining how to put on toes shoes on his left foot.\", \" Then, the boy raise the right foot and take out the toe shoe and continue explaining.\"]}, \"v_9xOUoTQLea4\": {\"duration\": 226.74, \"timestamps\": [[0, 34.01], [35.15, 109.97], [119.04, 226.74]], \"sentences\": [\"A person makes a pot of coffee.\", \"  The person then adds a bunch of sugary products to it.\", \" The man drinks it and then calls people from a smart phone.\"]}, \"v_5iQsKA84vWo\": {\"duration\": 155.64, \"timestamps\": [[7.78, 20.23], [20.23, 30.35], [30.35, 38.91], [38.91, 50.58], [50.58, 65.37], [65.37, 84.05], [84.05, 99.61], [99.61, 112.84], [112.84, 116.73]], \"sentences\": [\"There two women boxers competing in kickboxing against each other in a boxing event.\", \" The referee is standing next to them.\", \" There are several spectators watching the boxers compete.\", \" After the referee gives a go, the contestants begin the match.\", \" The crowd cheers for them as they compete.\", \" The boxer in the black uniform punches the boxer in red and makes her fall down.\", \" The boxer in red kicks her opponent.\", \" The boxer in black strikes back at her opponent and the boxer in red punches her face.\", \" The referee declares the boxer in black as the winner and crowd applauds her victory.\"]}, \"v_8B4M8AsGZmQ\": {\"duration\": 35.06, \"timestamps\": [[0.18, 9.12], [7.89, 17.18], [17.36, 34.71]], \"sentences\": [\"A camera pans around a person standing and leads into him looking off into the distance and carrying gear.\", \" The man suits up as the camera shows close ups of his board.\", \" The man is then seen doing numerous tricks over the water while following behind a boat.\"]}, \"v_0ufZs4e24Xs\": {\"duration\": 174.06, \"timestamps\": [[0, 22.63], [27.85, 116.62], [118.36, 174.06]], \"sentences\": [\"Two men are boxing inside a gym.\", \" They are engaged in a martial art called kickboxing.\", \" The two men kick and alternate blows with punches.\"]}, \"v_dXdhOe0DPC4\": {\"duration\": 198.16, \"timestamps\": [[38.64, 143.67], [145.65, 165.46], [165.46, 198.16]], \"sentences\": [\"A woman is sanding a book shelf with a sander.\", \" She touches the sanded portion with her hand.\", \" She stands next to the shelf talking.\"]}, \"v_LZ1142kuCnI\": {\"duration\": 14.75, \"timestamps\": [[0, 3.17], [3.17, 9.95], [9.58, 14.52]], \"sentences\": [\"A person is seen walking around a room carrying a broom.\", \" She pushes it along the wall beside her.\", \" In the end she turns around and pushes it back.\"]}, \"v_SLPD1U5iDjY\": {\"duration\": 129.41, \"timestamps\": [[0, 22.65], [22.65, 62.11], [62.76, 129.41]], \"sentences\": [\"A woman is seen outside playing a game of beach volley ball serving it over the net in slow motion.\", \"It makes it over the net and the other team of two balls is able to hit it back over the net.\", \"Both pairs of people continue to play the game and eventually the side with the man and woman on the team end up winning.\"]}, \"v_kMHMdqkGRB4\": {\"duration\": 43.14, \"timestamps\": [[0.22, 14.67], [15.1, 41.2]], \"sentences\": [\"A gymnast is seen standing before a large beam and putting his hands up in the air.\", \" He then performs a gymnasts routine while swinging himself all around the bar and ends by jumping down.\"]}, \"v_cJyl4yqFuK0\": {\"duration\": 95.85, \"timestamps\": [[0, 26.84], [22.05, 73.81], [62.78, 91.06]], \"sentences\": [\"A young child is seen sitting next to a tub and bending over the side.\", \" A person speaks to her on the side while she looks back to the camera.\", \" She bends further into the sink then moves back to the camera to look.\"]}, \"v_66BGqvwHbUw\": {\"duration\": 30.26, \"timestamps\": [[0, 7.56], [5.29, 30.26]], \"sentences\": [\"A camera zooms in on a person playing guitar and leads into a man speaking.\", \" Several more shots of people playing guitar and guitars on walls are shown as well as the same man speaking to the camera.\"]}, \"v_erxnWYOO1ew\": {\"duration\": 6.94, \"timestamps\": [[0.07, 5.8], [1.74, 6.94], [6.11, 6.94]], \"sentences\": [\"We see a man jumping on jump stilts.\", \" We see a person sitting in the yard.\", \" The man on the stilts stops and turns around towards the camera.\"]}, \"v_wO9DGYTAX70\": {\"duration\": 150.32, \"timestamps\": [[0, 54.87], [53.36, 123.26], [123.26, 150.32]], \"sentences\": [\"Slow motion shows of people riding horses over jumps are shown that lead into a woman speaking to the camera with a horse behind her.\", \" The woman then wears a glove and brushes the horse all over while the capture captures her movements and the horse.\", \" She brushes the back of it's tail and finishes around it's belly.\"]}, \"v_Q2PC60uwjdY\": {\"duration\": 169.55, \"timestamps\": [[30.52, 59.34], [59.34, 68.67], [70.36, 87.32], [86.47, 101.73], [104.28, 110.21], [127.16, 135.64], [137.34, 155.99], [158.53, 159.38]], \"sentences\": [\"Beets are being chopped up on a chopping block.\", \" They are put in a pan and covered with water.\", \" Kale is being chopped up on a cutting board.\", \" It is tossed in salt for a few minutes.\", \" Carrots are grated over the kale.\", \" A tomato is diced and mixed with dressing.\", \" This is then poured over the kale.\", \" A man takes a bite of the salad.\"]}, \"v_mgEX5A1o2jg\": {\"duration\": 121.44, \"timestamps\": [[0, 29.75], [25.5, 121.44]], \"sentences\": [\"A person is seen moving in fast motion unpacking a bag and piecing together parts of a tire.\", \" Many people stop to watch on the sidelines while the man continues to build the bike  and finishes by packing everything up and holding his arms out while smiling.\"]}, \"v_7pYrfYFoxdc\": {\"duration\": 189.22, \"timestamps\": [[0, 8.51], [9.46, 30.28], [32.17, 170.3], [171.24, 189.22]], \"sentences\": [\"A woman climbs into the back of a van with other people.\", \" Several men are standing together in a line before we see a person in a gorilla suit.\", \" Many people are dancing, falling off skateboards, and performing various tricks like tightrope walking and flips.\", \" The group walks out of the building together, making signs and faces at the camera.\"]}, \"v_vWsPUB8dQMU\": {\"duration\": 178.72, \"timestamps\": [[0, 17.87], [23.23, 37.53], [40.21, 82.21], [84, 152.81], [153.7, 178.72]], \"sentences\": [\"A train goes by on a track, and several cars are seen driving on a wet road.\", \" A woman gets out, and crouches by a flat tire.\", \" She uses equipment to lift the car from the ground, then removes the tire.\", \" She replaces the bad tire with a spare.\", \" she then puts away her equipment and gives a thumbs up before driving safely away.\"]}, \"v_ekzUyQo2R9Y\": {\"duration\": 20.06, \"timestamps\": [[4.01, 9.83], [9.83, 16.75], [16.75, 18.46]], \"sentences\": [\"There's a person wakeboarding in a lake.\", \" He is being pulled by a red rope that is fastened to a steamboat.\", \" He is going at a steady speed behind the steamboat.\"]}, \"v_i7L1KNGeEqU\": {\"duration\": 158.3, \"timestamps\": [[0, 19], [19, 120.31], [120.31, 158.3]], \"sentences\": [\"snowboarder is in big field in white snow.\", \" a cubicle in the mountain and slip down the mountain in snowboard.\", \" people is in cubicle and moving down the mountain in snowboard and pass by a parking lot.\"]}, \"v_JuC7EY32Spg\": {\"duration\": 26.63, \"timestamps\": [[0, 14.12], [13.58, 26.63]], \"sentences\": [\"An older women is shown sitting on a front step putting socks on with a small dog standing near her.\", \" She then puts her shoe on the foot and the dog looks off into the distance.\"]}, \"v_GvDu_0ktsJ0\": {\"duration\": 188.87, \"timestamps\": [[9.44, 60.44], [61.38, 105.77], [105.77, 152.99], [153.93, 180.37]], \"sentences\": [\"A cooker shows ingredients to make salad pasta while talking.\", \" The cooker puts pasta on a square container and adds vegetables.\", \" Then, the cooker adds cheese, broth, white cream, salt and then he mix it.\", \" The man serves the pasta with a piece of tomato and he taste the salad.\"]}, \"v_CZRkT9Lno3k\": {\"duration\": 51.15, \"timestamps\": [[0, 23.02], [22.51, 39.39], [39.13, 51.15]], \"sentences\": [\"An athletic woman is seen standing ready holding a pole in her hands and looking down and back.\", \" She then holds the stick up and pole volts herself onto a mat.\", \" She waves to the crowd and then walks away with others getting ready around her.\"]}, \"v_rDYeRbucGt4\": {\"duration\": 82.8, \"timestamps\": [[0, 12.01], [12.83, 43.89], [47.61, 82.8]], \"sentences\": [\"A man is seated cross legged watching a show.\", \" A man is kneeling in front of the crowd, talking.\", \" He continues talking as the crowd is enraptured, listening to his every word.\"]}, \"v_UjG_uHlFf3s\": {\"duration\": 136.07, \"timestamps\": [[0, 25.85], [24.49, 49.67], [48.3, 97.29], [96.61, 136.07]], \"sentences\": [\"A clip of the show top Gear is shown with one man sitting in a car speaking to the camera, and another speaking to the camera in a different car.\", \" Two men speak on walkie talkies on the side and the men drive the cars into one another.\", \" One pushes the car back and the men all get out and speak to one another.\", \" Another car is test with the men speaking to the camera and pushes the car back while others look in disbelief.\"]}, \"v_QTfz_zprGcQ\": {\"duration\": 181.6, \"timestamps\": [[3.63, 173.43], [3.63, 69.92], [78.09, 153.46], [154.36, 172.52]], \"sentences\": [\"A BTRtv reporter visits a soul cycle studio and store, interviews a soul cycle instructor and takes a sample soul cycle class.\", \"  A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and then enters the store and interviews a soul cycle instructor.\", \"   The reporter then changes clothes and takes a soul cycle class interspersed with video of instructor led soul cycle classes.\", \"  The reporter returns to interviewing the soul cycle instructor with a final shot of rows of clothing hanging in the soul cycle store.\"]}, \"v_Zk3JXtS2fOY\": {\"duration\": 189.15, \"timestamps\": [[0, 189.15], [48.23, 185.37]], \"sentences\": [\"An olympic fencing match is shown.\", \"  Each side scores points and then a new match is shown.\"]}, \"v_9sbiZgFefA4\": {\"duration\": 131.29, \"timestamps\": [[0, 3.94], [8.53, 15.75], [15.75, 28.23], [37.42, 43.32], [43.32, 53.83], [80.74, 88.62], [120.78, 131.29]], \"sentences\": [\"We see a title screen on black.\", \" We then see a woman skating down a street in a city.\", \" Cars begin to pass the lady.\", \" The lady passes parked cars.\", \" The lady talks as she stands in front of a building door.\", \" She talks near a highway.\", \" We see the ending screen on black.\"]}, \"v_QQQ7jSVSG3A\": {\"duration\": 209.44, \"timestamps\": [[0, 32.46], [36.65, 188.5], [192.69, 209.44]], \"sentences\": [\"A group of belly dancers are posing onstage.\", \" They begin to dance, swirling their scarves around their bodies as they dance.\", \" They drop the scarves, focusing solely on the dance before dropping to the ground, then rising and dancing off stage.\"]}, \"v_itlF0DEBetk\": {\"duration\": 54.1, \"timestamps\": [[0, 6.76], [8.66, 30.84], [33, 54.1]], \"sentences\": [\"A man is raking leaves in his yard.\", \" He has bagged several leaves as he rakes them out of a bird bath.\", \" He continues raking, then opens a bag to pour rocks around the bird bath.\"]}, \"v_5pPQc85IXtU\": {\"duration\": 175.54, \"timestamps\": [[7.02, 14.92], [20.19, 144.82], [140.43, 145.7], [145.7, 158.87]], \"sentences\": [\"People competes bike cross in a field.\", \"  People bike on a bumpy track where a crowd gather to watch the bike cross competition.\", \" A biker falls on the ground.\", \" The bikers arrive to the finish line.\"]}, \"v_ZmoSxXei954\": {\"duration\": 210.65, \"timestamps\": [[1.05, 53.72], [65.3, 162.2], [122.18, 205.39]], \"sentences\": [\"A man is seen standing in a gym holding a racket while the camera pans out to show two men.\", \" The men move around one another in the gym hitting a ball off the wall.\", \" The two continue hitting the ball around and walking around to hit it.\"]}, \"v_zB8kwWJqQ8Q\": {\"duration\": 159.24, \"timestamps\": [[0, 159.24], [5.57, 158.45], [3.98, 159.24]], \"sentences\": [\"men and women are in team playing foosball in a table in a basket court.\", \" referee is standing in front of table watching the game.\", \" people is sitting in terraces behind the court watching the game.\"]}, \"v_crfrKqFp0Zg\": {\"duration\": 129.43, \"timestamps\": [[2.59, 111.31], [42.06, 126.19]], \"sentences\": [\"A man is seen standing in a black room and proceeds to play a flute while the camera captures him.\", \" The man continues to lay the instrument while moving his hands up and down and moving his head to the beat.\"]}, \"v_rq-Xyoo5Rs0\": {\"duration\": 130.64, \"timestamps\": [[5.23, 16.98], [16.98, 110.39], [97.32, 116.92], [118.88, 122.8]], \"sentences\": [\"People are doing flips by running and jumping to the wall.\", \"boys do back flips on a blue mat.\", \" A kid jumps over several other kids laying on the mat.\", \" Two guys body roll with each other on the mat.\"]}, \"v_o7O6XJYVDRE\": {\"duration\": 151.57999999999998, \"timestamps\": [[0.76, 31.07], [42.44, 81.85], [87.16, 117.47], [128.84, 131.87], [150.82, 151.58]], \"sentences\": [\"Supplies to wrap a gift is laying on a wooden table.\", \" A gift wrapped present is wrapped with a clear plastic and taped in place.\", \" Red ribbons are tied at each end.\", \" A scissor is used to cut off the excess clear plastic at each end.\", \" The final wrapped product is laying on the table.\"]}, \"v_tnWmUCOEdFY\": {\"duration\": 15.14, \"timestamps\": [[0, 7.42], [5.15, 15.14]], \"sentences\": [\"A woman with long hair is seen looking deep into the camera and stroking her face.\", \" She then brushes her hair and ends the video by smiling.\"]}, \"v_e9p0xmsU3h0\": {\"duration\": 228.51, \"timestamps\": [[0, 43.42], [45.7, 59.41], [60.55, 82.26], [83.41, 94.83], [97.12, 111.97], [114.25, 118.82], [118.82, 134.82], [135.96, 155.39], [157.67, 178.24], [179.38, 185.09], [191.95, 194.23], [197.66, 214.8]], \"sentences\": [\"A girl plays in a indoor plastic ball pool with a slide.\", \" The girl climbs up the stair case then slides down the slide.\", \" The girl climbs up a staircase then crawls through a tunnel.\", \" The girl slides down into a ball pool then climbs back up the slide.\", \" The girl plays with the tick-tack-toe board before sliding back down.\", \" The child swings on a swing set.\", \" The child walks into a trampoline room then jumps up and down.\", \" The child walks over a suspension bridge then then over a bridge with nets.\", \" The girl slides into the ball pool then climbs up onto the wall and jumps back in.\", \" the girl climbs up the slide railing.\", \" The girl slides down a steep orange slide.\", \" Balls are thrown at the girl and she throws them back laughing.\"]}, \"v_0bXzFAKRoBU\": {\"duration\": 31.19, \"timestamps\": [[0, 15.75], [14.97, 23.08], [24.01, 31.19]], \"sentences\": [\"A man is seen playing the drums with another man beside him with several lights flash around his face.\", \" Another man is seen holding a guitar and several shots of a stage are shown.\", \" The musician grabs a microphone and the guitarist jumps on stage with a cigarette in his mouth.\"]}, \"v_9lX18LyTuAQ\": {\"duration\": 205.31, \"timestamps\": [[0, 58.51], [56.46, 155.01], [156.04, 205.31]], \"sentences\": [\"A man holding a violin is speaking to the camera with a young boy who is also holding a violin.\", \" The boys talk back and fourth for a while and the man shows the boy how to properly play the violin.\", \" The boy then does exactly what the instructor taught him while the instructor corrects his playing.\"]}, \"v_C7rGK81C7SU\": {\"duration\": 238.96, \"timestamps\": [[0, 80.05], [69.3, 179.22], [138.6, 227.01]], \"sentences\": [\"A persons hands are seen laying clay out onto a cake and begins painting objects on the side.\", \" The woman puts the decorations around the cake and continues decorating more objects on the side.\", \" She finishes the cake by adding the final decorations and presenting it to the camera.\"]}, \"v_9dqz5ojw-ys\": {\"duration\": 8.87, \"timestamps\": [[0, 8.87], [0, 3.86], [7.81, 8.87]], \"sentences\": [\"People are in stands watching two teams in a pool play pool soccer.\", \"  The players are yelling and then the ball is hit towards the goal and deflected as the crowd cheers them on.\", \"  The ball is then thrown back into the pool.\"]}, \"v_FsXl6whrCWk\": {\"duration\": 35.25, \"timestamps\": [[0, 1.94], [2.29, 5.46], [5.64, 9.87], [16.57, 21.68]], \"sentences\": [\"A woman in a black shirt is sitting on a bench.\", \"  A man sits behind a desk.\", \" Two people are sitting on a bean bag chair.\", \" A man is drinking from a mug.\"]}, \"v_GWJw2jR2mTY\": {\"duration\": 4.6, \"timestamps\": [[0, 0.28], [0.25, 2.39], [2.37, 4.6]], \"sentences\": [\"A man wearing a white shirt stands in a kitchen with a mop.\", \" The man begins mopping the floor while standing in front of washing machines.\", \" The man mopping takes a few steps and slips as his left leg slides on the floor and he falls to the floor.\"]}, \"v_9mL3eC5iizc\": {\"duration\": 65.76, \"timestamps\": [[0, 2.96], [2.63, 16.44], [16.44, 19.73], [19.4, 22.36], [22.36, 49.65], [49.65, 55.9], [55.9, 65.76]], \"sentences\": [\"Two trains drive along an elevated rail in a city.\", \" The camera pans to show a man playing a harmonica while sitting on a log beside a river.\", \" A woman walks near the train tracks while a train drives by.\", \" The woman sees the harmonica playing man in the distance.\", \" She watches him and listens to him playing.\", \" She walks away leaving the man.\", \" The man finishes playing and remains seated.\"]}, \"v_o2mqzjWJJNw\": {\"duration\": 72.7, \"timestamps\": [[0, 4.36], [4.36, 29.44], [19.63, 29.44], [30.53, 34.17], [34.53, 45.08], [45.44, 53.07], [53.44, 59.62], [60.71, 65.8], [66.16, 72.7]], \"sentences\": [\"A man wearing a heavy apron, heavy gloves and large plastic mask over his face walks over to a tool sitting on a wooden table.\", \" The man picks up the tool and touches it to something on the table making sparks fly.\", \" A continuous spray of sparks shoots off of the tool.\", \" The man stops and and takes a step back while pulling his face mask up and looking at the item on the table.\", \" The man pulls his face mask back down and begins to use the tool again sending sparks flying again.\", \" The man pauses and backs away looking at the item on the table.\", \" He touches the tool to the item one more time.\", \" The man then looks at the tool he is using and shakes it a little before sitting it down on the table.\", \" The man then removes one of his gloves and walks away.\"]}, \"v_PqrexMJ5ohk\": {\"duration\": 129.95, \"timestamps\": [[0, 69.52], [40.93, 129.95]], \"sentences\": [\"A close up of balls moving around a pool table are shown followed by a person walking around the table.\", \" Two men then hit the balls around the table back and fourth while many watch and react around them.\"]}, \"v_qZIJRg7hJ0o\": {\"duration\": 124.37, \"timestamps\": [[0, 25.5], [24.87, 67.16], [60.32, 121.88]], \"sentences\": [\"A small group of people are seen sitting in bumper cars playing a game with one another.\", \" The people driving around in the cars while others watch on the sides.\", \" Another shot is shown of people playing bumper cars and crashing into one another.\"]}, \"v_uIl5Tj74sLw\": {\"duration\": 38.57, \"timestamps\": [[0, 5.21], [3.28, 12.34], [9.64, 24.11], [22.37, 38.57]], \"sentences\": [\"a girl stands in front of a bathroom mirror and vigorously rubs her face.\", \" The girl turns on the faucet.\", \" The girl then splashes water on her face several times.\", \" The girl wipes her face with a towel.\"]}, \"v_e5VrEH2X8LI\": {\"duration\": 93.95, \"timestamps\": [[0, 46.5], [46.03, 93.95]], \"sentences\": [\"An intro leads into a bearded man talking to the camera and presenting an object to the screen.\", \" He uses the tool to push a carpet area over and continues talking to the camera.\"]}, \"v_GRGBMJG1Koc\": {\"duration\": 201.82999999999998, \"timestamps\": [[2.02, 196.78], [10.09, 56.51], [57.52, 125.13], [126.14, 195.77]], \"sentences\": [\"Several multi colored and shaped kites fly high in the air above a beach setting interspersed with images of people preparing to fly kites and onlookers.\", \"  Several kites fly in the air, in a bright blue sky, over a sandy area.\", \"  A man is seen kneeling over some equipment in the sand.\", \"  More kites fly as people watch the varied styles of kite, including one kite shaped like a dog.\"]}, \"v_otrk9uW9UjU\": {\"duration\": 101.1, \"timestamps\": [[0, 95.54], [98.57, 100.09], [100.09, 101.1]], \"sentences\": [\"A lady lays on a yoga mat in a carpeted room and does sit ups while talking.\", \" A finger enters the screen.\", \" The lady finishes and stops.\"]}, \"v_BLmAF2wbTz8\": {\"duration\": 169.99, \"timestamps\": [[0, 42.5], [42.5, 112.2], [112.2, 169.99]], \"sentences\": [\"A bartender is shown speaking to the camera while pouring ice into a glass and various liquids into a blender.\", \" He pours more ice into the blender and mixes up the liquids all together.\", \" He pours out the liquid and places a straw into the glass while the camera pans around.\"]}, \"v_ERVK6vQbor4\": {\"duration\": 164.21, \"timestamps\": [[0, 16.42], [18.88, 146.97], [148.61, 164.21]], \"sentences\": [\"A man in a gym is donning a pair of boxing gloves.\", \" He begins punching the bag, going around in circles as he does so.\", \"  He continues punching, then we see a slight view of a man jumping rope.\"]}, \"v_puwMWETdvL0\": {\"duration\": 103.59, \"timestamps\": [[0, 3.11], [3.11, 24.34], [24.34, 84.94], [84.94, 98.92], [99.96, 103.59]], \"sentences\": [\"We see a black opening logo.\", \" A man etches a pumpkin with a knife like tool.\", \" The man then carves a logo into the pumpkin.\", \" We see the pumpkin with a light inside of it.\", \" We then see the same logo as the open.\"]}, \"v_waTjpd7yDkc\": {\"duration\": 71.53999999999999, \"timestamps\": [[0, 8.23], [3.93, 10.37], [8.23, 12.16], [12.88, 60.81], [61.88, 71.54]], \"sentences\": [\"A man and a woman wearing roller blades kneel facing each other on a basketball court.\", \" A dog runs by the man and woman.\", \" the man and woman rise together.\", \" The man and woman perform a paired roller blade routine.\", \" The man and woman finish the routine and move towards the camera.\"]}, \"v_AElVyfjSHIo\": {\"duration\": 150.81, \"timestamps\": [[0, 60.33], [46.75, 150.81]], \"sentences\": [\"A man is seen speaking to the camera and leads into him playing on a set of drums.\", \" The man continues speaking to the camera with his hands and moving the sticks while looking around.\"]}, \"v_drfE5oASHaU\": {\"duration\": 201.36, \"timestamps\": [[0, 10.07], [11.08, 21.14], [22.15, 96.65], [96.65, 104.71]], \"sentences\": [\"The host enters a gun store and dances around.\", \" Afterward the into plays for the show.\", \" He then goes on to talk for a while in the store and plays around with a gun on a few cuts.\", \" Afterward a outro for the segment plays with credits.\"]}, \"v_NW42KGlKi_c\": {\"duration\": 60.88, \"timestamps\": [[0, 20.7], [17.96, 47.18], [52.66, 60.88]], \"sentences\": [\"A camera pans out away from a beach followed by hundreds of people rowing canoes.\", \" The people are seen running along the beach as well as rowing the canoes and a man sitting at a table.\", \" The man checks his phone and looks off into the distance and another shot of people canoeing are shown.\"]}, \"v_nN1u9BVysQs\": {\"duration\": 140.9, \"timestamps\": [[0, 4.23], [4.23, 11.98], [11.27, 22.54], [21.84, 33.82], [33.82, 77.49], [78.2, 135.26], [135.26, 140.9]], \"sentences\": [\"We see the title on the black screen.\", \" We see instruments and the wall with the school name.\", \" People are shown warming up.\", \" We are then shown Capoeira technique.\", \" People are practicing Capoeira moves.\", \" The ladies are explaining why they chose Capoeira.\", \" We are shown the end card for the website.\"]}, \"v_78WY5lXk42A\": {\"duration\": 205.45, \"timestamps\": [[0, 28.76], [39.04, 118.13], [121.22, 205.45]], \"sentences\": [\"A man spreads a white sheet onto a wall.\", \" He then presses a sheet with a photo printed onto it onto the white background.\", \" When he is finished, there is a photo of a yellow motorbike parked against a brick wall on a living room wall.\"]}, \"v_SQiIQDKhnh0\": {\"duration\": 155.31, \"timestamps\": [[0, 12.42], [16.31, 55.91], [56.69, 105.61], [106.39, 122.69], [122.69, 135.9], [136.67, 155.31]], \"sentences\": [\"A man is standing in front of an armoire as he talks.\", \" There is a close up of the armoire, spanning up its length.\", \" The man touches several cracks and chips in the wood, talking about them.\", \" Several household items are individually shown on the screen.\", \" The man uses the items to scrape, clean, and cover the cracks and scratches.\", \" The finished product, free of cracks and scratches, is shown as the man says his final words to the camera.\"]}, \"v_Q6tYENILn40\": {\"duration\": 31.56, \"timestamps\": [[0, 6.94], [7.73, 28.24], [28.56, 31.56]], \"sentences\": [\"a man is seated at a piano.\", \" He starts playing a tune, looking back and forth at the keys as he plays.\", \" He stops, turning his head and speaking.\"]}, \"v_wxoe1M2L4Qo\": {\"duration\": 216.39, \"timestamps\": [[6.49, 15.15], [15.15, 49.77], [49.77, 100.62], [100.62, 144.98], [146.06, 209.9]], \"sentences\": [\"A camera records a shop with two people standing inside, eventually leading over to a group of people standing by docks.\", \" A man walks down the docks while another holds a bucket and the camera pans to a woman talking.\", \" The woman puts on a vest and goggles and walks down into a boat.\", \" She talks to the camera while adjusting her goggles and is led over to the water wearing a tank.\", \" She hops in the water with the man and climbs back into the boat talking to the camera.\"]}, \"v_rZ8tVgFyY84\": {\"duration\": 150.81, \"timestamps\": [[0, 24.88], [24.88, 55.05], [55.05, 64.85], [64.1, 73.9], [73.14, 83.7], [83.7, 94.26], [92, 98.03], [100.29, 150.81]], \"sentences\": [\"A man wearing surgical clothes demonstrates the proper way to wash hands for surgical procedures and first removes jewelry.\", \" The surgeon then wets his hands and ads soap.\", \" The surgeon then rubs the palms together and builds a lather.\", \" He then rubs back of hand with palm.\", \" The surgeon then rubs the back of fingers with hands.\", \" He then rubs the thumbs with the palm clasping thumb.\", \" Then he rubs the tips of the fingers into palm.\", \" Then he rubs the wrists and rinses the hands in wter and fully dries his hands.\"]}, \"v_RG0wtfLnNrE\": {\"duration\": 52.22, \"timestamps\": [[0.52, 25.85], [19.84, 50.13]], \"sentences\": [\"A large group of people are seen sitting inside a raft and paddling themselves along a rough river.\", \" The camera pans all around to people sitting in the raft and continuing to move along and move under a bridge.\"]}, \"v_5HEunlL4nF0\": {\"duration\": 62.32, \"timestamps\": [[0, 30.23], [20.25, 47.05], [35.52, 60.14]], \"sentences\": [\"A young woman is seen walking into frame hitting a ball around a room.\", \" The girl walks around the room back and fourth while holding a tennis racket and hitting a ball.\", \" The girl continues to hit the ball around while the camera watches.\"]}, \"v_9voJIuym_f8\": {\"duration\": 59.61, \"timestamps\": [[0, 4.47], [4.47, 13.71], [13.71, 22.35], [22.35, 59.61]], \"sentences\": [\"There are two brown hot dog dogs standing at a gate that's at the end of a staircase.\", \"One of the dogs closest to the gate gets the gate open and both of the dogs go running up the stairs at a very fast pace while the camera person runs after them.\", \" The dogs are so fast that the camera person can't keep up with them and when they find them, the dogs are trying very hard to get into a bath tub that has water in it.\", \"The first dog succeeds in jumping in and starts swimming in the water, and the other dog can't get in and continues to jump and struggle until the camera person puts the dog in the tub and now both dogs are playing and swimming happily in the water.\"]}, \"v_T8mTuW85NNo\": {\"duration\": 32.09, \"timestamps\": [[0, 5.62], [6.42, 31.45], [31.93, 32.09]], \"sentences\": [\"A tv news anchor reports on a story.\", \" A variety of people are shown watching their hands, as the report speaks on germs.\", \" A tv news anchor appears.\"]}, \"v_V2QIntSKqhA\": {\"duration\": 39.73, \"timestamps\": [[0, 39.73], [14.5, 39.73], [25.03, 39.73]], \"sentences\": [\"People ride camels through the desert.\", \" A person carrying a camera or luggage walks with one of the groups.\", \"  The first camel group begins walking back to the camera.\"]}, \"v_r-GVVgxtoMk\": {\"duration\": 34.76, \"timestamps\": [[0, 3.3], [4, 29.37], [30.42, 34.76]], \"sentences\": [\"A group of little girls and boys are dressed like princesses and princes.\", \" One of the girls begins tapping a pinata with a baseball bat.\", \" She taps it over and over again, but doesn't break the pinata.\"]}, \"v_TnYCazY5WEM\": {\"duration\": 13.49, \"timestamps\": [[0, 4.25], [4.52, 11.94], [12.48, 13.49]], \"sentences\": [\"A group is playing volleyball on a beach.\", \" The men volley ball back and forth over the net.\", \" One of the players falls on the sand.\"]}, \"v_C4td7rprQGM\": {\"duration\": 54.67, \"timestamps\": [[0, 17.77], [17.77, 30.34], [30.62, 54.67]], \"sentences\": [\"A woman talks on front a hopscotch.\", \"Then, the woman hops n the hopscotch while talking.\", \" The woman turns when arrives to the end of the hopscotch and continues hopping.\"]}, \"v_hXjxOvlNxQM\": {\"duration\": 7.13, \"timestamps\": [[0, 2.07], [2.17, 5.17], [5.31, 7.13]], \"sentences\": [\"A wrestler picks up another wrestler from the ground.\", \" The wrestler lifts him up into the air.\", \" Lastly, the wrestler drops him hard onto the floor.\"]}, \"v_a25vC5zsf6A\": {\"duration\": 176.49, \"timestamps\": [[0, 30], [31.77, 125.3], [127.95, 176.49]], \"sentences\": [\"A large wheel is spinning nonstop on a stand.\", \" We get a close up of the truing stand, and the spokes.\", \" The bike wheel is then adjusted and fixed.\"]}, \"v_nypZiLC1_Z8\": {\"duration\": 153.95, \"timestamps\": [[0, 40.8], [43.11, 116.23], [85.44, 147.79]], \"sentences\": [\"A close up of bicycle handlebars are shown as well as a person adjusting the handlebars.\", \" The camera zooms in on the bars and the person pours liquid into the side.\", \" The man continues working and ends by putting the handlebars back and riding away.\"]}, \"v_JGRpVcxltKE\": {\"duration\": 172.41, \"timestamps\": [[0, 22.41], [27.59, 65.52], [68.96, 77.58], [86.2, 122.41], [123.27, 147.41], [155.17, 166.37]], \"sentences\": [\"A woman on screen talks about lemonade.\", \" She juices her lemons on a cutting board, with a knife and bowl.\", \" She strains her juice into a bigger cup.\", \" At an oven, she prepares simple sugar with water and sugar.\", \" She mixes all of her ingredients in a pitcher to make lemonade.\", \" She shows other lemonade recipes.\"]}, \"v_cJiwi-wB1FY\": {\"duration\": 79.53, \"timestamps\": [[13.92, 18.29], [29.43, 75.95], [77.14, 79.53]], \"sentences\": [\"A man in a blue shirt lifts a kid onto a counter.\", \" The kid starts throwing darts at balloons on the wall.\", \" The woman behind the counter hands the boy a toy.\"]}, \"v_S7ktlGGweeA\": {\"duration\": 122.28, \"timestamps\": [[1.83, 56.86], [47.69, 111.27]], \"sentences\": [\"Two women are seen speaking to one another and lead into a game of volleyball played by a large group of people.\", \" The people continue playing back and fourth while the audience cheers and stops to speak to one another.\"]}, \"v_ZmVy3gSaKv0\": {\"duration\": 105.63, \"timestamps\": [[0, 3.7], [3.7, 99.29], [4.23, 84.5], [83.97, 97.71], [99.29, 105.63]], \"sentences\": [\"We see an opening title screen.\", \" A man dives into a large pool repeatedly.\", \" A man sitting on the side middle takes photos while sitting.\", \" The sitting man stands and takes photos of the diver.\", \" The diver swims to the edge of the pool.\"]}, \"v_fqoEZaCd7hU\": {\"duration\": 79.83, \"timestamps\": [[3.19, 37.92], [36.72, 78.23]], \"sentences\": [\"A person with no arms is seen sitting in a chair and playing the guitar with his feet.\", \" He continues playing while singing along and moving his feet up and down the guitar.\"]}, \"v_yrvV4Ncqyf0\": {\"duration\": 120.72, \"timestamps\": [[0, 22.94], [22.94, 45.87], [45.27, 76.05], [76.05, 120.72]], \"sentences\": [\"A woman in a white dress walks into her house all happy only to be very disappointed when she see's the dishes in the sink.\", \" She changes out of her dress in to some comfortable clothing and gets in the kitchen ready to do the dishes.\", \" She is very childishly blowing bubbles with the soap and dancing around.\", \" She dries some of the dishes with a rag and put the rest in the dishwasher, once the dishes are done in the dish washer she takes them out and puts them all away.\"]}, \"v_PHIZza_xVog\": {\"duration\": 69.15, \"timestamps\": [[0, 11.06], [13.48, 43.22], [43.91, 69.15]], \"sentences\": [\"A woman puts some lotion on her hand.\", \" She rubs the lotion onto her face.\", \" A cartoon demonstration is shown on the screen.\"]}, \"v_WnLYDJ8Jwv8\": {\"duration\": 134.33, \"timestamps\": [[0, 79.25], [96.04, 134.33]], \"sentences\": [\"A girl is shown washing and scrubbing her face several times while speaking into the camera.\", \" She finishes by turning on the faucet and rinsing water through her face.\"]}, \"v_LAkaYds-8X0\": {\"duration\": 118.68, \"timestamps\": [[0, 59.93], [22.55, 24.33], [38.57, 39.76], [61.71, 112.74]], \"sentences\": [\"A young man plays bowling with other man while throwing balls and pins.\", \" A ball exit form a container.\", \" A man holds a bowling ball on his hands.\", \" The young man goes to a room of the bowling facility, they he continues playing.\"]}, \"v_w6Avae5on_0\": {\"duration\": 37.85, \"timestamps\": [[0, 3.78], [4.54, 25.74], [26.68, 37.85]], \"sentences\": [\"A child is hitting a ball over a net in a gym.\", \" A man stands on the other side, lobbing the ball back to him.\", \" They continue hitting the ball back and forth.\"]}, \"v_z0vMpInrDqM\": {\"duration\": 24.82, \"timestamps\": [[0.12, 12.41], [8.44, 23.95]], \"sentences\": [\"A person is seen sitting before a camera and leads into him looking and holding up a contact lens.\", \" The person then holds their eye open and putting the lens in followed by looking back to the camera.\"]}, \"v_-rx6D1uBsUU\": {\"duration\": 220.86, \"timestamps\": [[0, 13.25], [16.56, 24.29], [26.5, 35.34], [32.02, 36.44], [36.44, 206.5], [46.38, 140.25], [59.63, 152.39], [82.82, 160.12], [96.07, 204.29], [207.61, 220.86]], \"sentences\": [\"There are several workers packing many rafts in a truck to be hauled away.\", \" There's a fast flowing turbulent river flowing under a bridge.\", \" The scenic mountain view shows clouds blowing in the wind.\", \" There are many rafters outside a log cabin packing and getting ready for their rafting trip.\", \" The rafters begin their adventure in the wild and turbulent river water as they try to stay afloat.\", \" The river waves are so turbulent that it causes the raft to overturn and drown the rafters in the strong waves.\", \" The rafters try hard to stay in the raft as they fight the fierce waves of the river to stay afloat.\", \" The waves are so strong that it becomes hard for the rafters to in the raft.\", \" They are forcefully thrown out in the river as the raft overturns on them.\", \" One of the rafters smiles and talks about his experience as he walks back with his fellow rafters.\"]}, \"v_XzbvKQ-o5Ow\": {\"duration\": 44.37, \"timestamps\": [[0, 23.3], [19.75, 44.37]], \"sentences\": [\"A large group of people are seen sitting around a gym when a girl runs in and performs a routine on the uneven bars.\", \" The girl continues swinging around and ends with her jumping off the side and waving to the audience.\"]}, \"v_oYhVH1vIXFM\": {\"duration\": 134.42, \"timestamps\": [[0, 134.42], [41, 42.34], [46.38, 59.15], [63.18, 78.64], [73.26, 98.13], [73.26, 134.42]], \"sentences\": [\"This video shows you how to make spaghetti with sausage with a simple tomato sauce.\", \" First she puts the sausage on a baking sheet that has aluminum foil on it and she puts it in the oven.\", \" Next she pours tomatoes into a small blender and she blends them up.\", \" Then she pours crushed red peppers and garlic into the skillet and she pours the tomato sauce into it.\", \" Then she stirs it up and takes the sausage out to cut them into tiny pieces and she lets them cook some more.\", \" Finally she puts them into the skillet with the pasta and cooks everything together creating a nice meal.\"]}, \"v_kGLMybXl5Kk\": {\"duration\": 115.68, \"timestamps\": [[0, 30.66], [17.93, 85.6], [62.47, 115.68]], \"sentences\": [\"A man is seen walking into frame and begins bending down in front of a set of weights.\", \" The man then lifts the weights up and down over his shoulders while the camera watches form behind.\", \" The man walks in and out of frame walking back towards the weights and another man coming into frame to lift.\"]}, \"v_nEcOF04KK0g\": {\"duration\": 37.48, \"timestamps\": [[4.12, 6.93], [7.12, 12.56], [12.74, 15.74], [15.93, 27.17]], \"sentences\": [\"A man stirs shoe shine crafting materials into a jar.\", \" He prepares the shoe for shining.\", \" He explains his method of shoe shining.\", \" The man shines the top of a shoe and finishes by fixing the laces of the shoe.\"]}, \"v_wWOH-b4PTq4\": {\"duration\": 148.14, \"timestamps\": [[2.96, 74.81], [57.78, 144.44]], \"sentences\": [\"A large group of people are seen sitting on a beach that leads into several people sitting on sail boats and riding along.\", \" The various boats continue riding all along the water with the winner jumping in the water and standing proudly on the podium.\"]}, \"v_zdaD55zVNdQ\": {\"duration\": 51.85, \"timestamps\": [[0.26, 51.07], [0.26, 7.78], [8.81, 14.78], [17.11, 22.3], [24.63, 51.07]], \"sentences\": [\"A man throws a hammer throw in a judged sports performance, outside, on a grass covered field with a group of onlookers on the side lines.\", \"  A man approaches a square, paved,white surface surrounded by black netting .\", \"  The man spins in place to gain momentum and releases/throws the hammer ball.\", \"  Two people emerge with  a long tape measure to measure the distance the hammer ball was thrown.\", \"  The athlete runs off jumping and smiling and chest bumps another player.\"]}, \"v_u1ZFiwJJXSQ\": {\"duration\": 108.57, \"timestamps\": [[0, 24.43], [24.97, 78.17], [79.8, 108.02]], \"sentences\": [\"A woman stands talking on a yoga mat in a driveway area.\", \" The woman does an aerobic workout stepping back and forth and lifting arms on the mat.\", \" The woman jumps back and forth in a doing a more vigorous workout.\"]}, \"v_yvTmIulkl7c\": {\"duration\": 26.66, \"timestamps\": [[0, 6.66], [7.86, 20.53], [21.06, 26.66]], \"sentences\": [\"A little girl is inside a covered porch.\", \" She swings a baton at a small pinata.\", \" She is blindfolded as she continues to swing again and again.\"]}, \"v_EfQtRtIFGVo\": {\"duration\": 163.52, \"timestamps\": [[0, 62.95], [61.32, 124.27], [127.54, 163.52]], \"sentences\": [\"A woman shows off her nails followed by several clips of nails being painted by a brush.\", \" The brush makes several lines on the nails and shows celebrities with fashionable nails.\", \" The video speeds up and shows off several different designs for nail polish and examples.\"]}, \"v_mt3G8TrI-uY\": {\"duration\": 153.57999999999998, \"timestamps\": [[0, 49.91], [36.86, 119.02], [101.36, 145.9]], \"sentences\": [\"A close up of a person's nails are shown followed by a person filing the nails of another.\", \" Several products are shown close up as well as a person's nails being painted and put under heat.\", \" The person continues painting the nails and puts on a gem in the end.\"]}, \"v_r4oAhRg4H14\": {\"duration\": 159.31, \"timestamps\": [[0, 7.97], [8.76, 159.31], [58.95, 66.91], [119.48, 128.25]], \"sentences\": [\"We see an opening title screen.\", \" We see shots of people playing soccer in an indoor arena.\", \" We see a man hop and deflect  a ball from the net in slow motion.\", \" We see two men collide in slow motion.\"]}, \"v_KoCjfxd302Q\": {\"duration\": 121.95, \"timestamps\": [[0, 18.9], [16.46, 96.34], [93.29, 121.95]], \"sentences\": [\"The little boy is at the sink brushing the pot.\", \" The boy lift the brush from the pot and brush the sink instead, then he put it in the pot.\", \" The boy brushes the lid of the pot, and an adult put  plates in the pot and the boy took it out and dip the fork.\"]}, \"v_FrvK75jGdjE\": {\"duration\": 140.34, \"timestamps\": [[0, 139.64], [17.54, 23.86], [101.75, 112.98], [137.54, 140.34]], \"sentences\": [\"A child plays a violin on stage during a solo performance.\", \" A man watches with interest from the side of the stage.\", \" The girl pauses briefly then begins playing again.\", \" The girl lowers her violin and wand at the end of the performance.\"]}, \"v_xh8qQfCYDBY\": {\"duration\": 42.17, \"timestamps\": [[0, 16.87], [18.13, 39.85], [40.06, 42.17]], \"sentences\": [\"A person wearing safety gear holds a metal rod with a clamp.\", \" Then, the person weld on a surface.\", \" Smoke comes form the clamp.\"]}, \"v_gc04Okw4DTs\": {\"duration\": 170.32, \"timestamps\": [[0, 21.29], [24.7, 52.8], [53.65, 110.71], [113.26, 170.32]], \"sentences\": [\"A painting of a cloudy sky over mountains is displayed on a canvas.\", \" A brush begins painting blue onto the canvas.\", \" A complete image is shown in brilliant colors of a beach before going back to the brush strokes in progress.\", \" The ocean is completed in the final scene.\"]}, \"v_pleP5-tuJ_Q\": {\"duration\": 142.55, \"timestamps\": [[0, 13.54], [17.11, 103.35], [106.91, 142.55]], \"sentences\": [\"An old woman is knitting on a bed.\", \" A little girl is sitting on the floor knitting as well.\", \" She talks to the camera as she learns to knit.\"]}, \"v_RnZ-icC6xbQ\": {\"duration\": 29.98, \"timestamps\": [[0, 0.6], [0.6, 4.95], [4.95, 7.49], [7.49, 13.04], [13.04, 19.49], [19.78, 20.98], [21.13, 29.98]], \"sentences\": [\"A young man is standing in an open doorway with his hands over his head palms facing towards him on a bar secured at the top of the doorway.\", \"  The young man lifts himself up and places his feet in the gap between the bar and the top of the door frame.\", \"  The young man lowers his body, extending himself the full length of the doorway, hands behind his head, elbows out.\", \"  The young man does two sit ups.\", \"  The camera shows the top of the doorway focusing on the bar and the young man's feet secured at the top of the doorway.\", \"  The camera returns to the full view of the young man doing sit ups in the doorway.\", \"  The young man does three more sit ups.\"]}, \"v_CE93IieQkAg\": {\"duration\": 148.0, \"timestamps\": [[0, 148], [7.4, 148], [133.2, 148]], \"sentences\": [\"A man is driving a riding lawn mower.\", \" He starts mowing the lawn on the lawn mower.\", \" He raises his hand and continues mowing the lawn.\"]}, \"v_0A-p1Q0rseE\": {\"duration\": 102.52000000000001, \"timestamps\": [[2.05, 15.38], [10.25, 25.12], [23.07, 39.98], [43.57, 64.07], [70.74, 102.52]], \"sentences\": [\"A mixologist is talking about how to make alcoholic drinks.\", \" She talks about the drinks she makes a lot of favorites.\", \" She starts with a voda soda and how to make one.\", \" The next drink she makes is vodka seven.\", \" Then she makes a screwdriver, a greyhound, and then mixed with cranberry juice.\"]}, \"v_spAlIMm8jSg\": {\"duration\": 101.36, \"timestamps\": [[0, 84.13], [0, 81.59], [39.02, 40.04], [42.57, 81.08], [85.14, 101.36]], \"sentences\": [\"A woman jumps onto two bars and does a gymnastics routine.\", \" The audience is watching her perform.\", \" She jumps off the bars and lands on the mat with her hands in the air.\", \" A replay of her performance is shown.\", \" Words are then shown on the screen.\"]}, \"v_JAEMwQqh51c\": {\"duration\": 76.44, \"timestamps\": [[0, 12.23], [12.23, 30.19], [30.96, 76.44]], \"sentences\": [\"A man dressed for cold weather is outside in the snow fumbling with a chain in his hands.\", \"The chain is then placed around a tree stump and the man picks up an ax.\", \"The man hits the stumps continuously until the stump is broken up into pieces and then he unchains it in the back of his truck.\"]}, \"v_n0Az4cLruf4\": {\"duration\": 148.52, \"timestamps\": [[0, 18.56], [23.02, 28.96], [46.04, 148.51]], \"sentences\": [\"A man is inside a gym while speaking to the camera.\", \" Other men are working out behind him.\", \" He demonstrates via volunteer how to use a rowing machine.\"]}, \"v_flneQOXwGxw\": {\"duration\": 31.66, \"timestamps\": [[0, 4.59], [16.62, 17.26], [18.84, 23.11]], \"sentences\": [\"Men are standing on a field talking.\", \" A man kicks another man.\", \" That man swings a bat at him.\"]}, \"v_I5setZ8js9I\": {\"duration\": 113.5, \"timestamps\": [[0, 19.3], [29.51, 89.1], [94.21, 113.5]], \"sentences\": [\"A man is riding a surfboard in the ocean.\", \" He stands up on the board during a wave.\", \" He surfs through the wave, weaving in and out.\"]}, \"v_hjaUbrqPe-w\": {\"duration\": 223.56, \"timestamps\": [[0, 191.15], [192.26, 193.38], [209.03, 223.56]], \"sentences\": [\"People are sitting in rafts going down a river.\", \" A man is standing on the side of a river taking a picture.\", \" People are getting out of the raft onto land.\"]}, \"v_fjGqWAxenL0\": {\"duration\": 39.17, \"timestamps\": [[0, 36.43], [36.63, 36.82], [37.61, 39.17]], \"sentences\": [\"A person is welding a metal outside.\", \" The person stops welding the metal on the floor.\", \" The person moves the welding tool behind.\"]}, \"v_vZmDiMGYCo0\": {\"duration\": 134.0, \"timestamps\": [[0, 14.74], [14.74, 42.88], [42.88, 58.96], [60.3, 102.51], [102.51, 115.24], [118.59, 134]], \"sentences\": [\"Two small kids sit in a box at the top of slide in an indoor play area.\", \" A little girl joins and plays on the slide.\", \" The girls leaves and the boys take turns going down the slide.\", \"  The boys connect a slide to the first one and try out the new slide.\", \" Two kids run over and away.\", \" The last boy runs off and we see the slide ladder.\"]}, \"v_9d8ttpHu3cc\": {\"duration\": 23.36, \"timestamps\": [[0, 7.48], [7.48, 19.04], [19.04, 23.36]], \"sentences\": [\"Two people are kayaking down a rough river.\", \" Now only one person can be seen going by the rocks.\", \" There is an edge of a porch with a pair of shoes and a pair of legs up on the edge of the porch.\"]}, \"v_UciHec7xncc\": {\"duration\": 18.23, \"timestamps\": [[0, 10.48], [11.21, 18.23]], \"sentences\": [\"A young child is seen speaking to the camera and begins climbing across a set of monkey bars.\", \" She makes it to the other side smiling to the camera and then climbs down afterwards.\"]}, \"v_nQM5LT1-ZRU\": {\"duration\": 217.78, \"timestamps\": [[0, 7.62], [7.62, 8.71], [13.07, 63.16], [66.42, 106.71], [119.78, 155.71], [155.71, 190.56], [190.56, 217.78]], \"sentences\": [\"We see a man in a room talking about a bike.\", \" We see a title screen.\", \" We then see the man adjusting the handle bar of the bike.\", \" The man demonstrates how the levers sit and adjusts the brake levers.\", \" The man demonstrates the sitting positions and braking and screws them tight.\", \" The man then, and adjusts the shifter lever.\", \" We see a recap and the closing scene of the video.\"]}, \"v_nwttSIR1qvs\": {\"duration\": 198.97, \"timestamps\": [[0, 4.97], [4.97, 190.02], [32.83, 145.25], [145.25, 190.02], [190.02, 198.97]], \"sentences\": [\"An introduction comes onto the screen for a video about how to fix a stinky sink.\", \"  A man comes onto the screen and explain several days ago about getting the smell out of your sink.\", \" He first explain how you can use different chemicals and core them down the drain to get the smell out.\", \" Then he shows you how to remove bottom of the sink to clean it out which may help with the smell.\", \" The video it's with the closing credits shown on the screen.\"]}, \"v_hCFCYe_Jp-k\": {\"duration\": 99.06, \"timestamps\": [[41.11, 84.69], [84.69, 94.6]], \"sentences\": [\"There's a woman in a gray shirt and black tights and very short hair performing tricks with a small stick in her backyard by the swing.\", \" She is juggling between two sticks in her hand and trying to catch one stick while throwing the other in the air.\"]}, \"v_9AzESzqOtb0\": {\"duration\": 68.03999999999999, \"timestamps\": [[0, 9.87], [0, 12.59], [8.16, 19.05], [22.11, 53.75]], \"sentences\": [\"A man runs down a track outside.\", \" He is holding a long javelin.\", \" He pole vaults over a bar.\", \" He does the same thing again indoors.\"]}, \"v_hY73M6hJqgU\": {\"duration\": 198.32, \"timestamps\": [[0, 31.73], [32.72, 108.09], [108.09, 198.32]], \"sentences\": [\"A person is seen beating eggs and mixing them into a bowl while separating the shells from the eggs.\", \"They mix the eggs around a bowl and place butter and milk into another bowl and mix them all together.\", \" They add several more ingredients to the mixture and show the end result of cookies sitting on a plate.\"]}, \"v_4efxBizoKyQ\": {\"duration\": 26.87, \"timestamps\": [[0, 3.76], [4.3, 21.49], [22.7, 26.87]], \"sentences\": [\"A man is close up to the camera introducing the video.\", \" His wife is cleaning off a piece of white bedframe quickly.\", \" The man again shows his face and goes back to his wife.\"]}, \"v_hWZ3B28_fAs\": {\"duration\": 103.47, \"timestamps\": [[0, 103.47], [59.49, 103.47]], \"sentences\": [\"The leads into a man playing a long guitar in front of a home while moving his fingers up and down.\", \" The man continues playing and the video leads out to text above his head.\"]}, \"v_VvbWwNDHJf4\": {\"duration\": 123.79, \"timestamps\": [[1.24, 46.42], [39.61, 92.84], [85.41, 118.83]], \"sentences\": [\"A woman is seen wearing roller blades and looking back to the camera.\", \" She attempts to ride around while another person beside her tries to help.\", \" Another person is seen holding sticks in the distance and walking towards the camera.\"]}, \"v_tI87cD7sv-Y\": {\"duration\": 32.83, \"timestamps\": [[0, 13.46], [13.95, 22.82], [22.98, 32.83]], \"sentences\": [\"A teen talks, then he takes off a contact lens from the right eye.\", \" Then, teen puts the contact lens on the index finger and then puts again it in his right aye.\", \" After, the teen continues talking.\"]}, \"v_sxZTPWMnyFY\": {\"duration\": 198.46, \"timestamps\": [[0, 19.85], [20.84, 43.66], [44.65, 198.46]], \"sentences\": [\"A person putting weights on is shown followed by a woman lifting weights on her back.\", \" She puts the weights down and another woman is shown lifting a heavy set of weights.\", \" Several more people are shown performing their lifting talents and ends with a logo of the gym shown.\"]}, \"v_Ai6RYjJ97Zg\": {\"duration\": 208.37, \"timestamps\": [[0, 38.55], [39.59, 103.14], [104.18, 208.37]], \"sentences\": [\"A woman talks, then she puts slices of bread on a hot baking pan on the stove.\", \" Then, the woman puts cream cheese on the bread and cooks meat.\", \" When the meat is done, the woman puts sauerkraut and cheese on top, then cover it and make sandwiches.\"]}, \"v_kVzojOj5_Zg\": {\"duration\": 75.78999999999999, \"timestamps\": [[0, 7.96], [7.58, 18.19], [18.19, 40.93], [40.93, 75.03]], \"sentences\": [\"A volleyball instructor is giving information about his volleyball skills in salt lake city.\", \" He plays with another instructor on the court.\", \" He just talks and talks for a while about all about it.\", \" You see the the volley ball net and then the coach continues to talk.\"]}, \"v_OSjsVUg_wXA\": {\"duration\": 108.07, \"timestamps\": [[2.7, 108.07], [6.48, 41.07], [13.51, 17.29], [70.78, 74.03], [87.53, 92.4]], \"sentences\": [\"A marching band plays in a stadium while the cheerleaders perform on side.\", \" A team of football players gather behind the marching band.\", \" A cheerleader pass behind the marching band.\", \" The cheerleaders in the bleachers perform with pom poms.\", \" Then, the cheerleaders next to the band performs jumping and moving around.\"]}, \"v_zGT6EplIOHY\": {\"duration\": 164.54, \"timestamps\": [[0.82, 9.87], [5.76, 162.07], [10.69, 13.16], [130.81, 155.49]], \"sentences\": [\"The credits of the clip are shown.\", \" People kick a ball indoor between yellow cones on fake grass.\", \" A player kicks a ball over a guy's head.\", \" Players kick a ball that knocks down a yellow cone which they pick up.\"]}, \"v_Tssba1kYoo4\": {\"duration\": 140.41, \"timestamps\": [[0, 22.47], [22.47, 140.41]], \"sentences\": [\"A person sits holding a laptop while a woman curls her hair.\", \" The woman takes a lock of hair and puts above the head, then she curls the hair with a curling iron.\"]}, \"v_B0enQXEBfKk\": {\"duration\": 99.59, \"timestamps\": [[0, 10.46], [10.46, 98.6], [98.1, 99.59]], \"sentences\": [\"A man and a woman set up to dance before an audience.\", \" The man and woman dance before the audience.\", \" The camera shows three judges of the event standing and clapping or pointing.\"]}, \"v_nhky9RGjzwc\": {\"duration\": 26.89, \"timestamps\": [[0, 25.01], [0.81, 25.01], [26.22, 26.89]], \"sentences\": [\"Two women are arm wrestling on a table.\", \" A woman in a referee uniform is standing behind them.\", \" One of the girls walks away.\"]}, \"v_O36pn7cHNVc\": {\"duration\": 227.25, \"timestamps\": [[0, 21.59], [21.59, 74.99], [77.27, 198.85], [204.53, 227.25]], \"sentences\": [\"A group of elderly people are meeting in a park.\", \" They talk and do yoga together.\", \" They perform several yoga moves with the help of an instructor.\", \" They then say goodbye and go on their way.\"]}, \"v_ZKo1lM6TJTY\": {\"duration\": 12.03, \"timestamps\": [[0, 8.66], [8.72, 12.03]], \"sentences\": [\"A gymnast holds a ball attached with a string and then spins holding the ball.\", \" Then, the gymnast throw the ball while spinning in the field.\"]}, \"v_fsoAdigH0X4\": {\"duration\": 16.86, \"timestamps\": [[0, 2.61], [2.61, 6.57], [6.24, 16.69]], \"sentences\": [\"A man is mowing the lawn.\", \" He looks up and speaks to someone.\", \"The man continues to mow the lawn.\"]}, \"v_-2dxp-mv2zo\": {\"duration\": 126.46, \"timestamps\": [[3.16, 30.35], [30.98, 37.3], [37.3, 51.21], [51.21, 62.6], [63.86, 69.55], [70.82, 91.05], [91.68, 121.4]], \"sentences\": [\"A female chef in white uniform shows a stack of baking pans in a large kitchen presenting them.\", \" The pans are filled with pastries and loaded into the oven.\", \" A knife is used to cut cylinder shaped dough into rounds.\", \" A tray of potatoes is loaded into the oven and removed.\", \" A large tray of cake is flipped over and placed on counter.\", \" A large tray of meat is prepared then it is removed from the oven by a helper when done.\", \" The woman chef stands behind the stack of tins and picks one up.\"]}, \"v_HF_a81qOmVQ\": {\"duration\": 65.84, \"timestamps\": [[0, 10.86], [5.27, 20.41], [17.12, 52.67]], \"sentences\": [\"The man in yellow shirt is bouncing the ball on the paddle.\", \" The player almost hit the ball with the paddle.\", \" Two player as pushing each other.\"]}, \"v_ZXm8ed-ZHRs\": {\"duration\": 169.23, \"timestamps\": [[2.54, 88.84], [65.15, 159.07]], \"sentences\": [\"A woman is seen speaking in the middle of a large gymnasium and leads into several different gymnasts performing one after the another on uneven bars.\", \" The gymnasts continue to move all around the bars and ends with one girl going over and over and everyone waving in the end.\"]}, \"v_PVJK-r4pNg8\": {\"duration\": 75.61, \"timestamps\": [[0, 12.47], [13.23, 20.41], [21.93, 61.62], [62.75, 75.61]], \"sentences\": [\"We see a smiling man with credits running on the screen.\", \" We see an instructional screen.\", \" We see two men playing a game of squash.\", \" We then see the ending title screen.\"]}, \"v_pn1XDTlNMso\": {\"duration\": 140.95, \"timestamps\": [[0.7, 88.09], [52.85, 133.19]], \"sentences\": [\"Two women are seen speaking to the camera and lead into rubbing down furniture as well as showing off polish.\", \" The women continue speaking as they show off how the polish works as well as the scenery in the area and another woman speaking to the camera.\"]}, \"v_h3uTJ7HknzA\": {\"duration\": 83.45, \"timestamps\": [[0, 1.67], [1.67, 23.37], [23.37, 65.93]], \"sentences\": [\"A person dance and flips Capoeira while a band play music.\", \" Then, a woman talks with the man, after the man dance in group with other people.\", \" After, the man dance in group and with a partner, then all say bye.\"]}, \"v_hwP4uLVR-uc\": {\"duration\": 110.3, \"timestamps\": [[0, 16.54], [15.99, 43.57], [43.57, 72.24], [72.79, 110.3]], \"sentences\": [\"A band is on stage and a girl with a trumpet and boy beating the drums are playing.\", \" They have a little duet while the saxophones int he bank are paused.\", \" The trumpet player walks over and picks up a bell.\", \" Then it's just the drummer banging on the drums.\"]}, \"v_QMFtjdg6d2A\": {\"duration\": 42.45, \"timestamps\": [[0, 9.13], [9.55, 10.82], [9.55, 42.45]], \"sentences\": [\"A man in a green shirt is waving a red towel.\", \" A brown bull knocks a person to the ground.\", \" People are standing on the sides watching.\"]}, \"v_0MyaFtXcTKI\": {\"duration\": 217.93, \"timestamps\": [[0, 46.85], [32.69, 156.91], [154.73, 215.75]], \"sentences\": [\"A small child is seen wandering around a playground while the camera follows closely behind.\", \" The boy plays with several other kids on the playground and is seen climbing around the sides and going down the slide.\", \" More clips are shown of the kids playing with one another and laughing to the camera.\"]}, \"v_sFQ343Qq4TE\": {\"duration\": 105.42, \"timestamps\": [[0, 32.68], [46.91, 105.42]], \"sentences\": [\"A man is seen walking away from the camera and begins an exercise routine while speaking to the camera.\", \" The man moves up and down a bar while swinging his arms around and walks to the camera in the end.\"]}, \"v_HtZ0bvriAvQ\": {\"duration\": 64.44, \"timestamps\": [[2.58, 21.91], [21.91, 43.49], [43.49, 58.96], [58.96, 64.44]], \"sentences\": [\"A gymnast wearing a red and black uniform jumps on the horse bar.\", \" She comes running again and jumps on the horse bar and does a front flip.\", \" The the third time she jumps again on the horse bar and raises her left foot, does a front flip and gets off the bar.\", \" She repeats the same steps again and jumps off the horse bar.\"]}, \"v_EVcn8N-YxtI\": {\"duration\": 175.2, \"timestamps\": [[0, 29.78], [29.78, 102.49], [102.49, 175.2]], \"sentences\": [\"Two people are seen performing tango moves slowly while text appears on the screen.\", \" The woman then does the same moves by herself while the man and woman's silhouette is shown beside them.\", \" Then the man performs his moves alone and leads into the couple performing again.\"]}, \"v_fppEk17hs8M\": {\"duration\": 36.85, \"timestamps\": [[0, 7.74], [8.29, 32.24], [33.72, 36.85]], \"sentences\": [\"A team is on the ice, playing a game of hockey.\", \" They slide around, hitting the puck and trying to keep it away from their opponents.\", \" The goalie attemps to keep the puck from going into the goal.\"]}, \"v_bqBJ1tcHCHk\": {\"duration\": 80.88, \"timestamps\": [[0, 18.2], [19.41, 80.88]], \"sentences\": [\"An intro leads into various pictures of horse tools and a woman speaking to the camera holding a brush.\", \" She then brushes the horse's mane thoroughly while still looking to the camera and speaking.\"]}, \"v_mrqSaH_FIcs\": {\"duration\": 232.29, \"timestamps\": [[8.13, 66.2], [67.36, 220.68]], \"sentences\": [\"A man talks with a saleswoman who trims a plant in a pot, then the man put away the plant.\", \" After, the man puts a bush on front the saleswoman who trim it while the man points the plant and talks with the woman.\"]}, \"v_-PbWrGLuHT8\": {\"duration\": 53.13, \"timestamps\": [[0, 13.81], [13.28, 35.6], [35.6, 51]], \"sentences\": [\"A person is seen riding a board along the water with a kite on top.\", \" More clips are shown of the person riding back and fourth on the board.\", \" The person continues to ride the board along the water.\"]}, \"v_c8GFfLcwFrE\": {\"duration\": 122.55, \"timestamps\": [[0, 52.08], [52.69, 56.37], [57.6, 122.55]], \"sentences\": [\"A man is surfing on a large wave in the water.\", \" The water and the sky is red.\", \" Several people are surfing on the water.\"]}, \"v_BSl22Hx2WGM\": {\"duration\": 195.75, \"timestamps\": [[0, 105.7], [80.26, 192.81]], \"sentences\": [\"Several shots are shown of close ups of cheerleaders leading into clips of them performing tricks and flips with one another.\", \" The video continues with many shots of the cheerleaders performing together in slow motion and doing tricks with one another.\"]}, \"v_2cYfV33Qw4Y\": {\"duration\": 165.42000000000002, \"timestamps\": [[0, 30.6], [31.43, 57.9], [62.03, 129.85], [149.7, 165.42]], \"sentences\": [\"A man talks to the camera as people begin going down a man made white water river on kayaks.\", \" The people get slightly stuck, then unstuck as they go down small waterfalls.\", \" A woman falls out, and is pulled back in by another person.\", \" We then see several images of people in kayaks on the rapids.\"]}, \"v_vWULU8NttX8\": {\"duration\": 116.7, \"timestamps\": [[4.08, 53.1], [49.6, 115.54]], \"sentences\": [\"A group of bike riders are seen standing ready side by side with one another and speaking to a man in front.\", \" The camera continues to pan around the riders getting ready and finally jumping down and racing along the dirt path.\"]}, \"v_6dc-fQCzOiw\": {\"duration\": 174.29, \"timestamps\": [[0.87, 24.4], [24.4, 48.8], [48.8, 97.6], [97.6, 167.32]], \"sentences\": [\"A person talks in the street, then the person skateboard on the road.\", \" Then, the person kicks the skateboard back.\", \" After the person jumps off it and the skateboard slides on the road.\", \" Next , the person practice skateboard dragging a foot, after the person use the grass to do tricks.\"]}, \"v_K7oJNZsI1Cc\": {\"duration\": 163.39, \"timestamps\": [[0, 163.39], [98.85, 163.39], [151.95, 163.39]], \"sentences\": [\"woman is standing in a big room holding an \\u00e9p\\u00e9e and aman walks in and holds other \\u00e9p\\u00e9e and start fighting with the woman.\", \" kids enters in a room and run to the man and woman.\", \" man gives a black mask to the woman and wear it.\"]}, \"v_Ocvdvqvu7I8\": {\"duration\": 114.61, \"timestamps\": [[0, 64.18], [64.18, 114.61]], \"sentences\": [\"A child  in a stable brushing a horse hair.\", \" the child walks away from the horse while speaking to get a bottle of liquid then returns to brushing the horse hair.\"]}, \"v_NuSM8LfLR90\": {\"duration\": 162.05, \"timestamps\": [[0, 71.3], [68.06, 162.05]], \"sentences\": [\"A camera zooms in on a person performing a routine on a large stage spinning a baton into the air.\", \" The person continues the routine and ends with a split and the audience applauding.\"]}, \"v__akwfjIbsUA\": {\"duration\": 26.22, \"timestamps\": [[0.66, 13.37], [10.49, 25.43]], \"sentences\": [\"A young boy is seen standing on top of a slide and edging his way down.\", \" The boy rides all down the slide and the camera follows him walking around afterwards.\"]}, \"v_ZDlw4L7oNfs\": {\"duration\": 122.86, \"timestamps\": [[0, 25.19], [22.11, 122.86]], \"sentences\": [\"Two people are chilling out on their skateboards.\", \"  They fix some of the parts and then go skating around.\"]}, \"v_PV6OCwbp6nQ\": {\"duration\": 119.75, \"timestamps\": [[0, 25.75], [25.75, 69.45], [69.45, 91.61], [91.61, 119.75]], \"sentences\": [\"A woman is speaking to her class about jump roping.\", \" She puts the rope under her feet and starts demonstrating a little bit.\", \" She begins to jump rope going very quickly.\", \" She stops and continue to talk more before starting to jump again.\"]}, \"v_xxvBR4zdV48\": {\"duration\": 142.11, \"timestamps\": [[7.82, 30.55], [33.4, 49.03], [51.87, 61.82], [70.34, 110.13]], \"sentences\": [\"A man in the tuxedo starts explaining black jack.\", \" A dealer deals cards to four players.\", \" Several close ups of cards are shown.\", \" The man in the tuxedo continues to explain the rules of blackjack.\"]}, \"v_BHQasKzBDQU\": {\"duration\": 94.72, \"timestamps\": [[2.37, 26.99], [2.37, 26.52], [26.52, 56.83], [56.83, 94.72]], \"sentences\": [\"two women are standing no a table arm wrestling in the middle of stage.\", \" referee wearing black and white shirt is standing behind the girls.\", \" two hot women are arm wrestling on a table and referees are standing in front or sitting in the back.\", \" women are in a bar arm wrestling and a lot of people are around them watching them.\"]}, \"v_EwoxOKwqUPI\": {\"duration\": 142.2, \"timestamps\": [[0, 111.63], [33.42, 133.67], [109.49, 115.18], [116.6, 142.2]], \"sentences\": [\"A woman plays a game of beer pong with a short man dressed as a leprechaun.\", \" A DJ plays spins a pair of turntables on stage for the crowd.\", \" The woman scores a shot and celebrates.\", \" The two players hug each other and raise the woman's arm in victory.\"]}, \"v_fTQYGNJpSUk\": {\"duration\": 182.21, \"timestamps\": [[0, 6.38], [6.38, 21.86], [21.86, 42.82], [42.82, 64.68], [64.68, 136.66], [136.66, 182.21]], \"sentences\": [\"An animated new paper clipping is shown and the video consists of a bunch of letters in black block letters giving the title.\", \"Shortly after, a young female begins talking while and throws down a curling object.\", \"The young woman then walks over to a male dressed in all black and begins asking him questions about the game.\", \"While they are talking, a game is being played and the two watches them.\", \"After,the man begins teaching her various techniques used in the game and they begin to glide across the floor.\", \"Once they are finished,the woman comes back to the camera and begins talking about the sport.\"]}, \"v_tkQK_2celDY\": {\"duration\": 203.5, \"timestamps\": [[0, 55.96], [55.96, 60.03], [60.03, 124.13], [124.13, 189.25], [189.25, 203.5]], \"sentences\": [\"A gray dog is walking outdoors, and the owner is young white male who is walking along with the dog outdoors and talking to the camera.\", \"A screen appears that displays two logos in the middel and the text above the logos read \\\"BEHIND THE SCENES\\\" and under the logo words read \\\"PRESENTED BY:GEICO\\\".\", \"A man is now dressed in protective gear and he is joined by many others who are dressed the same and clips of them playing paintball guns in an open area and on a course.\", \"A man is now standing on a very high platform looking down at a large group of people, and the words \\\"COMIC-CON SAN DIEGO CA\\\" are at the bottom right, and the man jumps onto a very large air mattress, he gets up and begins running along a very long obstacle course requiring him to do various different things and the view is from a camera that his is wearing around his neck.\", \"He completes the obstacle course and an outro screen appears with 3 small different video screens playing over the main screen and the top words on the screen say \\\"PRESENTED BY GEICO\\\".\"]}, \"v_S2MHi_oC3Lg\": {\"duration\": 217.29, \"timestamps\": [[0, 18.47], [20.64, 48.89], [49.98, 94.52], [95.61, 211.86]], \"sentences\": [\"A girl is shown talking to the camera and showing various paints.\", \" She zooms in on products she owns and puts paint on a pallet.\", \" She dabs a brush in the paint and begins painting her nails.\", \" She performs several different styles on the nails and several pictures of finished nails.\"]}, \"v_-EKpX0t44pQ\": {\"duration\": 132.82, \"timestamps\": [[0, 16.6], [17.93, 97.62], [33.87, 97.62], [98.95, 132.82]], \"sentences\": [\"A wrestler is walking out and gets into the ring.\", \" Someone is laying on their stomach getting a tattoo on their back.\", \" A man in a red shirt is tattooing the man laying down.\", \" The wrestler is shown again.\"]}, \"v_vX0fg06e9co\": {\"duration\": 195.44, \"timestamps\": [[2.93, 93.81], [53.75, 179.81]], \"sentences\": [\"A woman is seen bending down to take a sip of water and leads into her spinning a hula hoop around herself.\", \" The woman continues spinning the hula hoop around while grabbing several more and performing tricks in the city center.\"]}, \"v_n2sTs3k9G-U\": {\"duration\": 133.59, \"timestamps\": [[0, 48.76], [33.4, 94.18], [76.81, 124.23]], \"sentences\": [\"A man is seen hanging up a bicycle wheel and speaking to the camera.\", \" He begins adjusting the bike and unscrewing the settings on the back.\", \" He then puts on a pair of training wheels and showing how it moves.\"]}, \"v_qp9OcGPufEc\": {\"duration\": 185.74, \"timestamps\": [[0, 48.29], [34.36, 140.23], [118.87, 182.95]], \"sentences\": [\"A dog is seen running around a man in the middle of an open field.\", \" The man performs tricks with the dog while the dog jumps on his back.\", \" He continues to roam around with the dog performing tricks with the dog and frisbee.\"]}, \"v_4_3m_-SGzXw\": {\"duration\": 167.81, \"timestamps\": [[0, 53.7], [53.7, 98.17], [98.17, 167.81]], \"sentences\": [\"graphic about how to do digital wallpaper is shown.\", \" man is in a room with a digital paper machine and the machine is printing a sign.\", \" men are sticking the wallpaper to a white wall.\"]}, \"v__0mR06FcftE\": {\"duration\": 124.51, \"timestamps\": [[13.7, 29.26], [29.26, 51.67], [51.67, 78.44], [78.44, 89.02], [89.02, 113.3], [113.3, 117.04]], \"sentences\": [\"A woman is doing a tutorial on how to clean a kitchen sink with baking soda, a toothbrush and cloth rag.\", \" She first takes some baking soda on the rag and scrubs it on the sink.\", \" Then she takes the toothbrush and dips it in the baking soda.\", \" she brushes the toothbrush on the sink edges to clean it.\", \" She turns on the tap and washes the baking soda off of the sink.\", \" Then she takes some vinegar on the wash cloth and wipes the sink down with it.\"]}, \"v_pPn5f_ked3s\": {\"duration\": 9.82, \"timestamps\": [[0, 1.62], [1.57, 4.27], [4.22, 6.04], [6.43, 9.82]], \"sentences\": [\"A woman clapping in the sidelines, cheering someone on.\", \" Coaches standing on the other side of the fence watching to rate.\", \" The runner runs down the turf super fast.\", \" He jumps at the end and lands smoothly into the sand, while one of the coaches pulls a string over.\"]}, \"v_vZzl0RbIQPM\": {\"duration\": 178.52, \"timestamps\": [[0, 14.28], [16.96, 39.27], [42.84, 67.84], [71.41, 82.12], [83.9, 99.08], [101.75, 132.99], [148.17, 178.52]], \"sentences\": [\"The host greets the video and introduces her recipe.\", \" The ingredients list appears and the host talks about them.\", \" The host begins to make the drink by starting a syrup.\", \" Next lemons are sliced on a cutting board.\", \" The many lemons are juiced one by one.\", \" The host fills the container with ice and pours in the liquid ingredients, followed by basil and lemon slices.\", \" The host decorates some straws and finishes her drink.\"]}, \"v_7EEpIeXhO54\": {\"duration\": 140.27, \"timestamps\": [[2.1, 46.99], [35.77, 101.7], [67.33, 138.17]], \"sentences\": [\"A large pool is seen followed by a person walking in and falling off a board.\", \" Another person is seen walking off a diving board and jumping into the water.\", \" Several more clips are shown of people attempting to dive in the water but failing.\"]}, \"v_wlAnWPxnQ8k\": {\"duration\": 93.21000000000001, \"timestamps\": [[0, 5.13], [0, 82.49], [0, 93.21], [82.49, 93.21]], \"sentences\": [\"girlwearnig a purple body is in fornt of a balance pole and make a jump to stands on top.\", \" the girl is doing gymnastics on top of balance beam.\", \" people in the stands around the court are watching the kid doing gymnastics.\", \" the girl make a big somersault and lands on the floor.\"]}, \"v_LvkqCFRC5Vk\": {\"duration\": 117.05, \"timestamps\": [[7.02, 9.95], [7.02, 117.05]], \"sentences\": [\" A man in a brown suit is talking.\", \" People are running around on a field playing lacrosse.\"]}, \"v_KfX3APC8lp4\": {\"duration\": 15.81, \"timestamps\": [[0, 1.82], [1.82, 14.31], [14.31, 15.81]], \"sentences\": [\"A woman comes onto the screen kneeling down holding a stick.\", \" She begins to stretch deeper into the position while holding the stick for balance.\", \" She stops right before the video ends.\"]}, \"v_Cdmd9VB8tJI\": {\"duration\": 59.1, \"timestamps\": [[0, 57.03], [2.66, 26.3], [24.52, 57.91]], \"sentences\": [\"A man is shown washing a dog with a water hose in a backyard with several flowers.\", \" The camera pans around the wet dog as the man continues to wash him and he shakes off.\", \" He pours more shampoo on the dog and rubs the shampoo into it's fur.\"]}, \"v_SHzmpIt0Euw\": {\"duration\": 179.25, \"timestamps\": [[26.89, 28.68], [34.95, 36.75], [43.92, 50.19], [73.49, 76.18], [91.42, 95], [101.28, 103.07], [114.72, 118.3], [135.33, 147.88], [166.7, 169.39]], \"sentences\": [\"Man begins to rip up carpet underlay.\", \"  He measures the slat to put between the door opening.\", \"  Then he places materials underneath the carpet underlay.\", \"  He puts a wooden slat in the door entrance.\", \"  He picks the slat up.\", \"  He cuts the slat.\", \"  He lays the slat down again.\", \"  He drills it into place.\", \"  He then lays his hands on the top of the slat.\"]}, \"v_9tks__Y0mqI\": {\"duration\": 204.75, \"timestamps\": [[0, 71.66], [75.76, 164.83], [98.28, 102.38], [119.78, 127.97], [161.76, 186.33], [186.33, 204.75]], \"sentences\": [\"A lady is feeding a baby ice cream in a car.\", \" The lady hands the ice cream to the lady next to her and feed the baby something else.\", \" The baby reaches for the food.\", \" The baby reaches for the food again.\", \" The lady wipes the babies face and stands her up.\", \" We see the ladies talking.\"]}, \"v_YS3Q47uz3HI\": {\"duration\": 159.78, \"timestamps\": [[13.58, 28.76], [28.76, 47.93], [47.93, 61.51], [61.51, 79.89], [79.89, 94.27], [94.27, 106.25], [106.25, 119.03], [119.03, 131.02], [131.02, 142.2], [142.2, 149.39]], \"sentences\": [\"There's a lady doing a tutorial on how to make a cotton soft Ogura cake.\", \" She begins by mixing the ingredients in a large bowl placed on her kitchen counter.\", \" She adds some eggs to the flour along with vanilla essence.\", \" Then she uses a hand mixer to blend the ingredients together.\", \" She then whips up some cream and sugar to make frosting.\", \" She adds the frosting to the cake batter and mixes it well.\", \" Then she pours the mixture in a baking bowl.\", \" She places the bowl in a cookie sheet and places it on the oven rack.\", \" She bakes the cake and pulls it out when it's done.\", \" She also shows some other baked goodies that she has prepared.\"]}, \"v_beejEQ04nkY\": {\"duration\": 30.93, \"timestamps\": [[0.31, 7.73], [7.58, 20.72], [15.77, 29.38]], \"sentences\": [\"A woman is seen hosting a news segment that leads into a clip of a dog jumping.\", \" People are shown doing tricks with their dogs and running all across a field.\", \" More clips are shown of people throwing frisbees and dogs following after.\"]}, \"v_k-071peyck4\": {\"duration\": 40.38, \"timestamps\": [[0, 19.79], [23.22, 40.38]], \"sentences\": [\"Several people are outdoors, washing laundry in open basins.\", \" The women use a pump to bring in water into the basins.\"]}, \"v_dxvKVBrNMDw\": {\"duration\": 117.53999999999999, \"timestamps\": [[13.52, 64.06], [57.01, 105.2]], \"sentences\": [\"A woman is seen speaking to the camera while holding a hula hoop and then proceeds to spin the object around her.\", \" She continues hula hooping over and over again and leads into pictures of people hula hooping in the end.\"]}, \"v_WVJEFQpO5jg\": {\"duration\": 205.17000000000002, \"timestamps\": [[14.36, 27.7], [36.93, 41.03], [49.24, 68.73], [87.2, 105.66], [114.9, 148.75], [155.93, 174.4], [182.6, 196.97]], \"sentences\": [\"A man lifts a ball in the air and holds it against his neck and throws the ball far.\", \" The man holds the ball against his neck and twists his back and throws it.\", \" The man grabs the ball and takes a big step behind him and throws the ball.\", \" The man twists his body a few times as he holds the ball against his neck.\", \" The man does a 90 degree move around as he holds the ball against his neck.\", \" The man holds the ball against his neck as he does a full 180 degree rotation with his body.\", \" He pretends to hold the ball as he rotates his body into a 270 degree movement.\"]}, \"v_SpwOzrXw9JU\": {\"duration\": 169.69, \"timestamps\": [[7.64, 87.39], [61.94, 156.97]], \"sentences\": [\"A man is seen speaking to the camera and leads into him holding several objects out on a table.\", \" The man then sharpens an object on a board and finishes by brushing off the board.\"]}, \"v_YqB7UEdhKug\": {\"duration\": 76.01, \"timestamps\": [[6.84, 71.45], [23.56, 25.46], [71.45, 76.01]], \"sentences\": [\"A man is standing up playing a saxophone.\", \" A band is playing behind him.\", \" Blue and white words come onto the screen.\"]}, \"v_CteuM2BUmHo\": {\"duration\": 106.0, \"timestamps\": [[0, 3.71], [3.71, 100.7], [26.5, 30.74], [62.01, 66.78], [102.82, 106]], \"sentences\": [\"We see the opening screen on gray.\", \" We then see a man on discs smoothing a concrete floor.\", \" The man removes concrete from his trowel.\", \" The man uses his hand to remove concrete.\", \" We then see the ending credits.\"]}, \"v_o00AfbAIOlA\": {\"duration\": 101.8, \"timestamps\": [[0, 5.09], [5.09, 13.74], [13.74, 46.32], [46.32, 78.89], [79.4, 87.04], [87.55, 101.8]], \"sentences\": [\"The boy is opening the box.\", \" He then removes the bike.\", \" He is removing the packaging.\", \" He is assembling the bike.\", \" We see images of the bike.\", \" The Subscribe page shows up.\"]}, \"v_pMXz0BKQOLQ\": {\"duration\": 206.66, \"timestamps\": [[15.5, 40.3], [9.3, 44.43], [48.56, 171.53], [177.73, 182.89]], \"sentences\": [\"A food attendant prepares an ice cream cone from a frozen yogurt dispenser.\", \" The man happily watches his ice cream being prepared.\", \" The man enjoys is ice cream eating it as fast as he can.\", \" The man rubs his head and is relieved.\"]}, \"v_5iIlhXLDsf8\": {\"duration\": 122.44, \"timestamps\": [[0, 9.8], [15.3, 74.08], [80.81, 122.44]], \"sentences\": [\"A man is speaking inside a gym.\", \" He lies on the ground to do sit ups, talking about the mechanics of the act.\", \" The man demonstrates how to do sit ups over and over again.\"]}, \"v_nSsll1A6Gxw\": {\"duration\": 226.76, \"timestamps\": [[0, 34.01], [32.88, 96.37], [95.24, 179.14], [172.33, 226.76]], \"sentences\": [\"A woman with long hair is seen sitting behind a piano and speaking to the camera.\", \" She places her hands around the piano and begins playing a song.\", \" She continues playing the instrument and pauses to speak to the camera a bit.\", \" She plays some more and ends with her still speaking to the camera.\"]}, \"v_c8ntlBKuVmc\": {\"duration\": 142.85, \"timestamps\": [[0, 13.57], [20, 87.85], [88.57, 142.85]], \"sentences\": [\"A bench is shown in a backyard in front of bushes.\", \" A man is using a ladder to trim the hedges.\", \" He moves the bench, and walks around with the ladder, continuing to trim hedges.\"]}, \"v_0Qed9-9yp9Q\": {\"duration\": 209.63, \"timestamps\": [[0, 47.17], [47.17, 164.56], [147.79, 206.49]], \"sentences\": [\"A man is seen hopping over bars as well as throwing an object in different locations.\", \" The men is then seen lifting weights as well as throwing the object around more and walking away from the camera.\", \" He continues practicing by throwing the object around and the camera following his movements.\"]}, \"v_aZQWCEejbk8\": {\"duration\": 21.85, \"timestamps\": [[0, 17.7], [18.46, 21.85]], \"sentences\": [\"A girl walks up to a slide, sits down, then goes down the slide.\", \"  She walks back to do it again.\"]}, \"v_K1EW6wZDnOs\": {\"duration\": 56.19, \"timestamps\": [[0, 17.42], [17.42, 40.18], [40.18, 56.19]], \"sentences\": [\"A small horse is outside in a field  being held by a rope that is attached to a belt wrapped around the horse's neck.\", \"The person with the rope in his hand has a torch like item in his right hand but it appears to only have air in it and begins moving it back and forth across the horses face and mouth.\", \"However,the horse doesn't seem to please and begins moving his lip trying to avoid the treatment.\"]}, \"v_l9jSJaV0DA0\": {\"duration\": 197.6, \"timestamps\": [[0.99, 197.6], [0.99, 22.72], [23.71, 114.61], [89.91, 146.23], [145.24, 192.66]], \"sentences\": [\"A boy demonstrates how to ride a skateboard in the street through example.\", \"  A boy stands, outdoors,  holding a skateboard in his arms and then puts the board down and begins to step on it.\", \"  The boy  then stands on the board rocking back and forth on it.\", \"  The boy then exhibits upper body twists while standing on the skateboard and eventually pushes off and rides into the street on the skateboard.\", \"The boy then returns to the curbside and puts one foot on the board and the other on the ground as he stands still.\"]}, \"v_BIy2GQjWUsA\": {\"duration\": 53.55, \"timestamps\": [[0, 2.14], [2.14, 27.31], [29.18, 31.06], [31.06, 36.68], [48.19, 53.55]], \"sentences\": [\"We see a rubber glove on the floor.\", \" A person cuts the glove in half and puts a hole in the end.\", \" The person puts the glove on a dog with it's claw sticking through the hole.\", \"  A person shows a clipping tool.\", \" The person then sands the dogs claw with an electric sander.\"]}, \"v_yUSo_xjyGhM\": {\"duration\": 120.05, \"timestamps\": [[0, 120.05], [6.6, 120.05], [13.21, 120.05], [23.41, 120.05]], \"sentences\": [\"Two young boys are at a sink.\", \" One of the boys has no hands.\", \" He is washing the dishes.\", \" The other boy helps him clean.\"]}, \"v_4qstg-tiRvQ\": {\"duration\": 23.66, \"timestamps\": [[0, 3.9], [4.26, 22.6], [9.7, 13.25], [22.01, 23.54]], \"sentences\": [\"Cheerleaders stand in a gym in the group.\", \" the girls then perform a routine.\", \" The girls break into three groups and the two on the sides kneel while the middle group squats.\", \" They kneel and throw their hands in the air at the finish.\"]}, \"v_9wukG78Z0u8\": {\"duration\": 85.85, \"timestamps\": [[0, 6.01], [10.73, 35.2], [36.05, 85.85]], \"sentences\": [\"A man is kneeling inside a gym.\", \" He has a barbell resting on his shoulders as he hops up.\", \" He stands fully, then drops the weights.\"]}, \"v_DfiPwDSjjHE\": {\"duration\": 203.06, \"timestamps\": [[0, 203.06], [31.47, 45.69], [72.09, 81.22], [86.3, 103.56], [102.54, 127.93], [130.97, 203.06]], \"sentences\": [\"A woman in a pink shirt is talking.\", \" She picks up a clear box and opens it.\", \" She closes the box and puts it away.\", \" She picks up a large stuffed animal.\", \" She then picks up a small red bag.\", \" She picks up some different fabrics and ribbons.\"]}, \"v_j4YrzUjxAp8\": {\"duration\": 38.48, \"timestamps\": [[0, 6.35], [6.73, 13.08], [13.85, 17.89], [18.08, 20.78], [21.16, 28.47], [28.66, 30.78], [30.97, 38.48]], \"sentences\": [\"Vacuum parts are displayed on the floor.\", \" A person vacuums the carpet.\", \" A person wets and vacuums the carpet.\", \" A person vacuums or soaks up coffee from the carpet.\", \" A person scrubs and dries a tiled floor with a vacuum.\", \" A person empties the contents of the vacuum in a white sink.\", \" Ways a vacuum can be used are showed in split screens.\"]}, \"v_5MJmwr1cmnU\": {\"duration\": 124.3, \"timestamps\": [[3.11, 71.47], [55.31, 122.43]], \"sentences\": [\"A large wave is seen moving on the water followed by several people carrying surf boards and surfing along the water.\", \" The people continue riding along the water on surf boards and walking around on the beach.\"]}, \"v_hXrNCak63u0\": {\"duration\": 82.71000000000001, \"timestamps\": [[0, 80.23], [10.75, 80.23]], \"sentences\": [\"A robot is sitting behind a piano in a room.\", \" Its hands are lighting up no the piano keys.\"]}, \"v_2DvMNOas7jY\": {\"duration\": 170.22, \"timestamps\": [[0, 41.7], [32.34, 154.9], [152.34, 170.22]], \"sentences\": [\"A person is seen riding down a long street on a skateboard while the camera follows from behind.\", \" The person continues riding down the hill with the camera capturing scenery and cars as well as placing his hand on the boarder in front of him.\", \" In the end he passes by the boarder and makes a stop by the car.\"]}, \"v_g-l5CI29DPQ\": {\"duration\": 114.55, \"timestamps\": [[0, 86.48], [0, 85.34], [87.63, 114.55]], \"sentences\": [\"A girl is playing hopscotch on a back porch.\", \" A person is sitting down on a picnic table watching them.\", \" The other person gets up and starts playing.\"]}, \"v_bQa8S4Z-1cE\": {\"duration\": 43.86, \"timestamps\": [[0, 16.67], [16.23, 43.86]], \"sentences\": [\"A person is seen pulling items out of a box and present them to the camera.\", \" The man then rubs down a shoe with a rag and presents more items to the camera as it pans around.\"]}, \"v_Wgr9YpWni30\": {\"duration\": 163.86, \"timestamps\": [[0, 75.38], [58.17, 163.86]], \"sentences\": [\"A person is seen tying their shoes and leads into several shots of people jumping and moving around on rope.\", \" Several shots of landscapes are shown as well as more people attempting jumps and tricks on a long rope tied to trees.\"]}, \"v_nsdB1r31-70\": {\"duration\": 73.05, \"timestamps\": [[0, 73.05], [5.11, 18.26], [71.95, 73.05]], \"sentences\": [\"A woman and a little a boy are swinging on a tire swing.\", \" A person pushing a stroller is behind them.\", \" The boy turns away from the camera.\"]}, \"v_xYW64moSLKg\": {\"duration\": 151.81, \"timestamps\": [[0, 37.95], [37.95, 81.22], [81.22, 110.82], [110.82, 151.81]], \"sentences\": [\"A woman is under water and she gracefully come up from underneath.\", \" She later is swimming with tom and jerry very pretty and oddly.\", \"Then a she is hanging from a hoop up above and jumps down into the water.\", \" She does a lot of different shows involving her dancing and swimming around in the water.\"]}, \"v_Xueo66Jb8T4\": {\"duration\": 165.32999999999998, \"timestamps\": [[0, 9.92], [9.92, 62], [62, 66.13], [66.13, 122.34], [122.34, 128.96], [128.96, 165.33]], \"sentences\": [\"A white screen appears with a black brand name that say's \\\"THE SHINGLE HOG\\\" and it has a picture of a hog in the o of the word HOG.\", \"A quick picture of a red and black tool is shown, then a man is talking and clips of people removing shingles play in between moments shown when the man talks.\", \" The tool is now shown on its own and the brand and logo is displayed on the screen to the upper right.\", \"Now there are clips of people on the roof using the tool to remove shingles and once again the man appears talking in between clips.\", \" A black screen appears and it has a list with a lot of white words on it and the title is \\\"Shingle Hog Savings\\\".\", \"The man talking and the clips of the man using the shingle machine play until a white outro screen appears that include the brand name, logo, product info and website.\"]}, \"v_WVM8itzRVjs\": {\"duration\": 105.7, \"timestamps\": [[0, 15.85], [16.38, 17.44], [17.97, 19.55], [20.08, 21.14], [21.67, 25.37], [25.9, 41.75], [42.28, 58.13], [59.19, 71.35], [72.93, 85.61], [86.14, 89.31], [89.84, 95.13], [95.66, 105.7]], \"sentences\": [\"Four men in sports uniforms are shown along with information about AIB.\", \" The first man introduces himself.\", \" The second man introduces himself.\", \" the third man introduces himself.\", \" Finally, the fourth man introduces himself.\", \" The first man is then shown practicing by trying to hit targets on the wall.\", \" The second man to introduce himself takes a turn trying to hit the targets on the wall.\", \" The man wearing white shorts then tries the practice wall out.\", \" And finally the man with red hair gives it a try.\", \" The first man to practice gives a comment on his performance.\", \" The last man to practice with red hair talks.\", \" Info about the AIB and the upcoming game are shown.\"]}, \"v_MjHlAvy2qVY\": {\"duration\": 120.14, \"timestamps\": [[0, 49.86], [24.03, 105.72], [107.53, 120.14]], \"sentences\": [\"A large group of people are seen sitting on a beach with several putting sunscreen all over their bodies.\", \" Shots of scientists are shown making the sun screen while interacting with one another and speaking to the camera.\", \" Finally a man is seen packing up a fish in a shop.\"]}, \"v_1fyxOUEihAQ\": {\"duration\": 109.99000000000001, \"timestamps\": [[0, 34.1], [34.1, 109.99], [36.3, 109.99]], \"sentences\": [\"kid is holding a blower and is blowing leaves from the street.\", \" the kid walks in a sidewalk and cleans the dry leaves with the blower and a man help him.\", \"old man is holding a rake raking the dry leaves.\"]}, \"v_pc_QYeZG9GA\": {\"duration\": 21.78, \"timestamps\": [[0, 3.38], [4.25, 14.38], [16.01, 21.78]], \"sentences\": [\"a little boy is in a messy living room.\", \" He is using an electric toothbrush.\", \" He scrubs his teeth with the toothbrush while he smiles.\"]}, \"v_pcFn1KBwn6Y\": {\"duration\": 163.59, \"timestamps\": [[0, 18.81], [17.99, 58.89], [58.89, 109.6], [109.6, 163.59]], \"sentences\": [\"A man in a light blue shirt breaks the pool balls to start the game.\", \" He walks around the table looking for a good spot to hit.\", \" Then he moves around the table again and makes it in again.\", \"He finally hits the black ball in and ends the game.\"]}, \"v_9uitA8tmSfE\": {\"duration\": 206.63, \"timestamps\": [[0, 21.7], [39.26, 41.33], [56.82, 206.63]], \"sentences\": [\"A woman jumps into a pool.\", \" A woman is holding a large camera laughing.\", \" Several more women dive off diving boards into the water.\"]}, \"v_Sw4QZTF7sOI\": {\"duration\": 78.09, \"timestamps\": [[0, 13.28], [13.67, 56.22], [56.61, 78.09]], \"sentences\": [\"A chef speaks to the camera.\", \" She moves on to cut a lot of mushrooms.\", \" She moves around the mushrooms she just cut up.\"]}, \"v_rNQbSptv1cM\": {\"duration\": 72.52, \"timestamps\": [[0, 3.26], [3.99, 61.64], [17.77, 32.63], [34.45, 37.71], [42.42, 50.76], [62, 72.52]], \"sentences\": [\"We see the starting title card.\", \" A cheerleader jumps and a boy walks up and talks.\", \" We see the girl perform cheerleader jumps and arm maneuvers.\", \" We see her feet up close.\", \" The girl stretches by bending to the ground, and sits on the ground stretching.\", \" We see the ending title screen.\"]}, \"v_ICzctKJ6nqc\": {\"duration\": 209.35, \"timestamps\": [[17.79, 48.15], [48.15, 84.79], [84.79, 125.61], [125.61, 148.64], [148.64, 167.48], [167.48, 187.37], [187.37, 195.74]], \"sentences\": [\"The young woman with long blonde hair is showing her wrist that has a few scars from a surgery.\", \" Then she takes a neon green colored hula hoop and spins it around her body.\", \" She demonstrates how to effectively use the hula hoop by holding the hoop up towards her chest.\", \" Then she begins spinning with the hoop on her chest.\", \" She shows how to spin the hoop and rotate the hoop around her body without dropping it down.\", \" She continues showing how to properly rotate and spin the the hoop with her hands lowered next to her body.\", \" Then she stops and twirls the hoop in her hand.\"]}, \"v_-vPshfXc1fc\": {\"duration\": 46.95, \"timestamps\": [[0, 12.21], [12.44, 19.95], [21.36, 46.95]], \"sentences\": [\"A man is welding a circular metal piece.\", \" A green light appears out of no where.\", \" The man continues welding the circular metal piece.\"]}, \"v_a2Xwx37YbhE\": {\"duration\": 43.84, \"timestamps\": [[0, 3.95], [3.95, 10.96], [10.96, 43.84]], \"sentences\": [\"A black and white dog is at a dog park and the owner is bending down and moving in front of the dog as it watches him.\", \" The owner then walks more into the grass holding onto frisbees and is not only joined by the black and white dog but another dog that is brown and white.\", \"The man begins to throw the frisbees in the air and the dogs take turn catching them and doing tricks to get them that even include jumping on the man's back.\"]}, \"v_Paj9y9YMSg0\": {\"duration\": 91.53, \"timestamps\": [[0, 91.53], [1.83, 91.53], [71.85, 74.6]], \"sentences\": [\"People are riding horses in a field.\", \" They are playing polo on horses.\", \" A person standing on the sidelines waves a white flag.\"]}, \"v_j59UZGZtuNg\": {\"duration\": 13.49, \"timestamps\": [[0, 7.55], [7.69, 13.49]], \"sentences\": [\"Two girls walk up to a pool, ready to dive.\", \" One of them raises her arms into the air, then dives into the water before surfacing.\"]}, \"v_SWbUJh4XuMQ\": {\"duration\": 73.72, \"timestamps\": [[6.27, 72.99], [18.8, 19.91], [25.07, 27.28]], \"sentences\": [\"A welding tool is applied to a surface.\", \" A guy that is holding a welding tool is wearing a helmet.\", \" Two gloved hands are using a welding gun and stick on an object.\"]}, \"v_8d8juWOKb0c\": {\"duration\": 157.07999999999998, \"timestamps\": [[3.14, 7.85], [9.42, 86.4], [86.4, 99.75], [100.53, 128.02], [128.81, 146.87], [147.66, 157.08]], \"sentences\": [\"A man is dressed in dark medieval armor.\", \" Several instances of men dressed in different kinds of armor and holding various shields are showing jousting against one another.\", \" Ultimately, the man with the round shield is defeated when he tumbles to the ground and stabbed in the back.\", \" The winner now jousts against a man carrying a blue diamond shaped shield.\", \" They joust several times but the man with the blue shield is defeated when he is hit in the head and chest and falls on his back onto the other warrior's knees.\", \" A close up of the surviving warrior is shown, clearly satisfied with his victories.\"]}, \"v_7DY1vm9RiIk\": {\"duration\": 197.28, \"timestamps\": [[0, 4.93], [4.93, 197.28], [4.93, 17.75], [18.74, 38.47], [45.37, 147.96], [148.94, 197.28]], \"sentences\": [\"The video begins with a title sequence and logo.\", \" Several clips begin playing of volleyball fields with spectators.\", \" The first clip shows the players celebrating.\", \" The video moves on to members of a band.\", \" It then continues to show clips of men playing volleyball.\", \" The video ends with a closeup of the audience and a title sequence.\"]}, \"v_gRqvh21b8Hw\": {\"duration\": 156.34, \"timestamps\": [[0, 14.07], [19.54, 59.41], [59.41, 105.53], [105.53, 156.34]], \"sentences\": [\"People begin to dive into an empty pool and you see them underneath the water.\", \" Then, above from the dive board two swimmers are standing by and one of them dives in.\", \" A group of kids holding the camera film themselves diving in and doing cool tricks and flips into the pool.\", \" From very high above they record their view from the top to the water and the swim once they're in.\"]}, \"v_ZbAfEWdGBzQ\": {\"duration\": 12.8, \"timestamps\": [[0, 8], [9.4, 12.8]], \"sentences\": [\"Two wrestling women are fighting in a ring.\", \" They do a suplex, and the referee counts to three as the dark haired woman wins.\"]}, \"v_06ofnvq2Hjs\": {\"duration\": 203.5, \"timestamps\": [[0, 5.09], [5.09, 28.49], [27.47, 34.6], [41.72, 192.31], [56.98, 64.1], [75.3, 78.35], [92.59, 96.66], [99.72, 111.93], [147.54, 151.61], [194.34, 203.5]], \"sentences\": [\"We see images which were  shot around DC.\", \" We see a man talking and shots of skateboards as people assemble in a room.\", \" We see Tony Hawk who points to other people.\", \" We see people skateboarding in the street, and around DC.\", \" We see a skater named Shaun Gregoirie.\", \" A lady holds up a USA Flag and talks.\", \" We see a cop car on the street.\", \" We see Anthony Shetler sitting and talking before skating on the street.\", \" A man jumps stairs and falls.\", \" We see the ending credits for the video.\"]}, \"v_Pf8eE_zup_k\": {\"duration\": 62.83, \"timestamps\": [[0, 3.46], [5.97, 17.91], [17.91, 49.32], [49.32, 58.12]], \"sentences\": [\"A hand fills a cup with water.\", \" A woman puts two glasses on the counter.\", \" The woman puts beer and orange juice in a big glass, then she pours liquor in the small glass.\", \" After, the woman puts the small glass inside the big glass.\"]}, \"v_M4DcibAnW_E\": {\"duration\": 84.99, \"timestamps\": [[0.85, 25.92], [27.62, 63.74], [62.04, 81.59]], \"sentences\": [\"A large wave is shown followed by a person standing up on a surf board.\", \" The person is shown surfing all along the water while the camera films from behind.\", \" The man continues surfing and paddles himself towards a boat.\"]}, \"v_32-Bxdbf3mQ\": {\"duration\": 35.41, \"timestamps\": [[0, 19.48], [1.42, 3.01], [19.65, 35.41]], \"sentences\": [\"A man in a red shirt drives an orange tractor around the lawn.\", \" A dog runs around the yard.\", \" A woman drives the orange tractor.\"]}, \"v_UiK3kYsvvQ8\": {\"duration\": 217.71, \"timestamps\": [[0, 40.28], [41.37, 132.8], [130.63, 207.91]], \"sentences\": [\"Two women are seen walking on stage and lead into them performing a belly dancing routine.\", \" The women dance all around the stage while lights flash around them.\", \" The women continue to dance around one another and end by laughing with one another.\"]}, \"v_DJNmAoSQu6k\": {\"duration\": 147.91, \"timestamps\": [[0, 17.75], [28.1, 93.92], [99.84, 147.91]], \"sentences\": [\"A news woman is talking to a camera.\", \" She has a conversation with a man who is also a newscaster.\", \" Images of hand molds are shown in the background.\"]}, \"v_XP5Oqr1giQ4\": {\"duration\": 146.54, \"timestamps\": [[0, 50.56], [50.56, 82.8], [82.06, 114.3], [114.3, 146.54]], \"sentences\": [\"A man is bull fighting =, he has a pink sheet and is running away backwards from the bull that is coming toward him.\", \" There are three men now and one of them gets completely trampled by the bull.\", \" Then about six more men stand in a line messing with the bull.\", \" It's very dangerous messing with a bull and teasing him, these people can seriously get hurt.\"]}, \"v_6YtaXJJKUKM\": {\"duration\": 58.75, \"timestamps\": [[0.59, 22.62], [20.27, 56.98]], \"sentences\": [\"A woman is seen speaking to the camera while a small fooseball table sits before her.\", \" The woman continues speaking as she spins around the game occasionally and leads into her playing with another girl.\"]}, \"v_C3K-OgdK8FY\": {\"duration\": 192.75, \"timestamps\": [[0, 25.06], [29.88, 112.76], [118.54, 192.75]], \"sentences\": [\"A man is wearing sunglasses inside a building.\", \" We see a group of people in the building as they dance aerobically.\", \" They shake in unison, going back and forth and side to side.\"]}, \"v_jsfPXYQuikQ\": {\"duration\": 41.12, \"timestamps\": [[0, 5.76], [7.2, 29.2], [32.28, 41.12]], \"sentences\": [\"A boy is balanced on the end of a diving board.\", \" He dives, flipping backwards as he goes.\", \" He lands gracefully in the water.\"]}, \"v_Z7BPvGPizYE\": {\"duration\": 171.34, \"timestamps\": [[1.71, 12.85], [18.85, 84.81], [89.95, 155.06], [157.63, 170.48]], \"sentences\": [\"A man uses a course brush and hand towel to prepare the ski to be worked on while it sits on a rack.\", \" The man melts a wax bar across the ski surface with an iron then uses it to blend in the wax.\", \" A man sharpens a flat edge then scrapes the outer layer of wax from the skis surface.\", \" The man uses a course brush then a towel to finish preparing the skis surface.\"]}, \"v_74HRnmwIhfM\": {\"duration\": 213.79, \"timestamps\": [[0, 35.27], [35.27, 62], [62, 136.82], [136.82, 179.58], [179.58, 212.72], [212.72, 213.79]], \"sentences\": [\"A plate of creamy cabonara is shown and the ingredients appear in small clear dishes.\", \"Salt is then added to a pan and the spaghetti begins to boil.\", \"A bit of oil is then placed in a skillet and Canadian bacon and onions are being fried.\", \"Next,more ingredients are added with pasta and egg yolks.\", \"Finally,the sauce is done and all of the ingredients are compiled and cheese is added to the dish as it is positioned on the plate.\", \"After,more entrees are shown and the screen ends on the url of Ulampinoy's website.\"]}, \"v_G7zChU3ma0M\": {\"duration\": 62.23, \"timestamps\": [[0, 2.8], [2.8, 9.02], [9.02, 51.96], [51.96, 62.23]], \"sentences\": [\"A man is standing in front of a lane with his legs spread apart, and then another man goes to roll a bowling ball between his legs and he does so, but he accidentally hits his fist into the man's private parts and they both begin to laugh.\", \"A blue screen appears and text on the screen appears and say's \\\"Bowling Fails FailCorporation\\\".\", \"Various clips of various different people falling while trying to roll the ball, laughing, and even accidentally throwing the ball into the ceiling plays.\", \"A blue screen appears with logos, and text that say \\\"FailCorporation Subscribe Next video\\\" appear.\"]}, \"v_Bs3OMhhUlY4\": {\"duration\": 15.19, \"timestamps\": [[0, 8.43], [6.07, 15.19]], \"sentences\": [\"A small group of boys are seen standing on the edge of a pool and grab one another by the sides.\", \" The boys then all jump into the pool together at once with some looking at the camera.\"]}, \"v_GLsIq3P-J3A\": {\"duration\": 92.93, \"timestamps\": [[0, 53.43], [27.88, 92.93]], \"sentences\": [\"A man is seen speaking to the camera while the camera pans out to a card table and the man dealing cards.\", \" The man lays out several cards while flipping over more and pointing to objects laid out on the table.\"]}, \"v_PG-AK5fawJI\": {\"duration\": 232.13, \"timestamps\": [[0, 204.27], [54.55, 148.56], [148.56, 203.11], [203.11, 232.13]], \"sentences\": [\"A TV presenter and an actress are putting googles to play rock, paper and scissors pie on front a pie with white cream.\", \" After playing a while, the woman turn a handle that raise the pie that lands on the face of the actress.\", \" Then, the pie lands for the second time on the face of the actress, as well on the face of the TV presenter.\", \" The TV presenter stands holding ducks on both hands, then he pretends eats the duck on the right hand.\"]}, \"v_c8LevTVQ5nk\": {\"duration\": 72.15, \"timestamps\": [[0, 18.4], [18.04, 50.86], [52.31, 72.15]], \"sentences\": [\"A young boy is seen opening up presents with another's help and various shots of him playing a drum he received.\", \" The mother is interviewed and shows more shots of the boy playing several different instruments.\", \" It finally shows the boy grown up and ends with information for a movie trailer.\"]}, \"v_nTNkGOtp7aQ\": {\"duration\": 34.67, \"timestamps\": [[0, 19.07], [0, 32.93], [26.52, 34.67], [0.35, 34.67]], \"sentences\": [\"man is standing in a trampoline and make a vig somersault into the pool.\", \" two men are sitting in the first floor of the trampoline watching the jump.\", \" man get outs the pool, grab a towel and dry his face.\", \" people are walking around the pool carrying bags.\"]}, \"v_zc-RT9tpoBA\": {\"duration\": 218.7, \"timestamps\": [[0, 34.99], [42.65, 88.57], [94.04, 218.7]], \"sentences\": [\"A man is sitting inside a room.\", \" He is talking to the camera animatedly.\", \" He is talking about and demonstrating how to play a harmonica.\"]}, \"v_WXQol1TisqE\": {\"duration\": 60.58, \"timestamps\": [[0, 17.27], [17.57, 27.87], [27.56, 54.22], [54.83, 60.58]], \"sentences\": [\"Several walking or horseriding individuals walk by the foreground while the camera focuses on a group of people in the background.\", \" A gate opens and a horseriding man chases a cow.\", \" The man lassos and secures the cow.\", \" Others run up to help with the cow.\"]}, \"v_Zq9jr2S5wGM\": {\"duration\": 145.32999999999998, \"timestamps\": [[0, 18.17], [16.71, 65.4], [29.07, 145.33]], \"sentences\": [\"A woman in white and gray shirt is talking, then a glass and pitcher of lemonade with straw is shown.\", \" Two lemons is in small bowl, then the blonde woman talks in the camera, a hand cut the lemon, squeeze the lemon in the bowl, pour the lemon in the pitcher using a strainer.\", \" The woman talks then the pot is placed in the stove, added water, then added the sugar, added the zest of lemon and mixed the pot, the woman added yellow liquid in the pitcher, added the ice and sliced lemons and pour the juice in the glass.\"]}, \"v_dXSlCw8AXv0\": {\"duration\": 206.17000000000002, \"timestamps\": [[0, 46.39], [41.23, 149.47], [143.29, 204.11]], \"sentences\": [\"A person is seen riding along the water on a surfboard as well as others speaking to one another.\", \" A man is seen speaking to the camera as well as more clips of people riding on the water.\", \" More people speak to one another as well as into the camera and end by riding away on the boards.\"]}, \"v_-DaX_1bBNAo\": {\"duration\": 22.87, \"timestamps\": [[0, 20.24], [3.2, 16.24], [20.58, 22.87]], \"sentences\": [\"A woman wearing a bra is standing in a room.\", \" She throws a dart across the room.\", \" A man with a hat stands next to her.\"]}, \"v_cgfJnog1WLE\": {\"duration\": 184.25, \"timestamps\": [[0, 7.37], [7.37, 35.01], [35.93, 65.41], [65.41, 105.94], [105.02, 124.37], [85.68, 124.37], [124.37, 137.27], [137.27, 148.32], [148.32, 184.25]], \"sentences\": [\"A young lady with broad shoulders and pig tails approaches a stage in prepares her mind.\", \"The lady cracks her knuckles and then bends  down and tries to lift the weights.\", \"Too much weight is on the bar and the girls ends up twisting her arm in a circle,drops the bar and cries out in agony.\", \"Another girl then walks up and lifts the bar half way,realizes shes incapable and drops it.\", \"After she walks off she brushes her self off and attempts again and raises it over her head,drops it, and walks away congratulating herself.\", \"A screen of scores are then shown and a different girl attempts the weight.\", \"The second young lady comes back and does the same thing as well as the female who came after her.\", \"The girl comes back but realizes the weight is too heavy and gives up lifting it.\", \"However,the original girl comes back and continues to lift more and more weight with ease until the last time,she then bows and they walk up to an Olympic stage and receive their metal.\"]}, \"v_LZ-Cy0GqCiU\": {\"duration\": 96.12, \"timestamps\": [[0, 4.81], [4.81, 21.63], [21.63, 23.07], [23.55, 35.56], [35.56, 57.67], [57.67, 68.25], [68.25, 77.86], [77.86, 96.12]], \"sentences\": [\"A photo is zoomed in on of a man being gored by a bull.\", \" A bull charges a man and knocks him around until people come out and distract him.\", \" It cuts to the man again being charged by the bull.\", \" He gets knocked around again until people come out to distract the bull.\", \" He is carried off out of the ring.\", \" Once again the bull charges the man and knocks him down.\", \" People come out and distract the bull.\", \" He is carried out for a last time.\"]}, \"v_l_cjSGt5j40\": {\"duration\": 221.1, \"timestamps\": [[0, 82.91], [60.8, 152.56], [126.03, 212.26]], \"sentences\": [\"An older man is seen sitting on a log in a public space in front of a piano.\", \" The man then plays the piano while the camera captures him playing.\", \" The man sings to the camera while continuing to play and the camera moving around his movements.\"]}, \"v_Mh-qSztuLtE\": {\"duration\": 23.34, \"timestamps\": [[0, 9.8], [10.03, 23.34]], \"sentences\": [\"A huge crowd is gathered outside.\", \" They are all performing an exercise dance known as zumba.\"]}, \"v_LZ4dINjqX5U\": {\"duration\": 49.13, \"timestamps\": [[0, 24.32], [23.09, 49.13]], \"sentences\": [\"An athletic man is seen standing with his arms a up and begins performing a gymnastics routine.\", \" He spins himself round and round on the bar performing several flips and tricks and ends with him sticking his arms up into the air.\"]}, \"v_Xd_xJnlUHm0\": {\"duration\": 185.02, \"timestamps\": [[0, 26.83], [27.75, 136.91], [139.69, 185.02]], \"sentences\": [\"A young boy is talking to the camera in his bedroom.\", \" He removes things from drawers, like lip gloss and puts it on for the camera.\", \" He applies messy makeup and poses for the camera.\"]}, \"v_I5YCAQXHoFw\": {\"duration\": 114.8, \"timestamps\": [[0, 29.85], [31.57, 87.82], [86.67, 110.78]], \"sentences\": [\"A camera pans all around a beach showing water crashing on the waves.\", \" A person is then seen wearing gloves and painting down an arm chair.\", \" The person continues painting down the chair and showing it off in the end.\"]}, \"v_jcX2QAiqP9U\": {\"duration\": 26.11, \"timestamps\": [[0, 2.22], [2.09, 17.23], [17.5, 26.11]], \"sentences\": [\"Kids are shown in side of a gym playing indoor soccer.\", \" One of the kids makes a great move to get around a defender and almost scores.\", \" He is then shown scoring on a different occasion before the video ends.\"]}, \"v_v5O_Yfeqza4\": {\"duration\": 31.79, \"timestamps\": [[0, 13.03], [15.58, 31.79]], \"sentences\": [\"A young man is seen speaking to the camera and leads into him throwing darts onto a board.\", \" He holds his hands up in excitement as the camera zooms in on the darts.\"]}, \"v_7AkyOhKkT6g\": {\"duration\": 190.15, \"timestamps\": [[0, 19.97], [19.01, 67.5], [67.5, 125.5], [125.5, 188.25]], \"sentences\": [\" Mj's mommy is playing around with her hair smoothing it out.\", \" She goes to the bathroom with clips in her hair and gets out treatments and shampoos.\", \" She begins to apply the hair things to her hair and combing it out, she starts to part her hair and put in curlers.\", \" She begins to talk about what she is doing with her hair while she waits to take out the curlers, when she takes them out her hair is perfectly curled.\"]}, \"v_-tvhSol-wTs\": {\"duration\": 126.09, \"timestamps\": [[3.78, 61.15], [52.33, 112.85]], \"sentences\": [\"A man is seen talking to the camera while holding a tennis racket and begins demonstrating how to hit the ball.\", \" The man continues to speak and hit the ball while moving around the gym and gesturing to the camera.\"]}, \"v_LublNVXGH5I\": {\"duration\": 217.13, \"timestamps\": [[0, 42.34], [45.6, 49.94], [66.22, 73.82], [74.91, 99.88], [106.39, 207.36]], \"sentences\": [\"A man points to and picks up a pressurized spray can to display it.\", \" The man then picks up a roll of paper towels.\", \" The man shakes the pressurized spray can.\", \" The man sprays the window where the stain is and wipes the area with a paper towel.\", \" sprays the glass cleaner on the middle of the window in multiple spots and wipes them off.\"]}, \"v_1YGz5CQBflM\": {\"duration\": 82.38, \"timestamps\": [[1.65, 23.89], [27.18, 62.19], [56.43, 79.9]], \"sentences\": [\"A man is seen blowing a kiss as well as taking off his jacket and interacting with another man.\", \" The man prepares his arm as the other grabs his hand and he pretends to kick his head.\", \" More people step up to arm wrestle this man while food is being shown and the loser gets food all over him.\"]}, \"v_fI12XNNqldA\": {\"duration\": 220.99, \"timestamps\": [[8.84, 127.07], [64.09, 204.41]], \"sentences\": [\"Two people are seen kneeling before a plant sitting on the ground and speaking to one another.\", \" The men continue to move dirt around the plant and end by standing next to the tree and pulling roots away and dumping more soil around it.\"]}, \"v_xFqGY-y4OUg\": {\"duration\": 186.75, \"timestamps\": [[0, 35.48], [43.89, 149.4], [152.2, 186.75]], \"sentences\": [\"A close up is shown of a pool room.\", \" A man and woman enter the room, grabbing cues.\", \" They engage in a game of pool together, hitting the balls into the pockets.\"]}, \"v_9i7ABIB99Ow\": {\"duration\": 171.29, \"timestamps\": [[0, 37.68], [37.68, 81.36], [81.36, 112.2], [112.2, 167.87]], \"sentences\": [\"Step by step instructions to make creamy pasta, first putting the pasta into boiling water and stirring it.\", \" Then in another pan adding sausage and onions and stirring it all together.\", \" Adding tomatoes and heavy cream to make it pasty.\", \" Finally adding the pasta to it, along with some cheese and parsley flakes and mixing it all together.\"]}, \"v_7hDCO9fJb90\": {\"duration\": 113.45, \"timestamps\": [[9.08, 18.72], [19.85, 102.11], [103.24, 108.35]], \"sentences\": [\"A man stands next to a young girl dressed in a gymnastic outfit in a gym and talks to the camera.\", \"  The man then coaches the girl on the gym bars in a gymnastic practice session as the girl swings on the bars in a gym filled with other children practicing gymnastics.\", \"  The man then closes standing next to the girl again and talking into the camera.\"]}, \"v_srR0M_HL3Ao\": {\"duration\": 154.67000000000002, \"timestamps\": [[6.96, 9.28], [11.6, 59.55], [60.32, 107.49], [107.49, 140.75]], \"sentences\": [\"A person surfboard in the choppy water of the ocean.\", \" A woman stands on front a swimming pool talking, then a slide show of pictures and a man talking in an event is shown.\", \" Then, the prince Harry of England sits in an event while people dance and perform.\", \" After, people play polo in a field riding horse an throwing a ball with a pole, also the woman and the man talks.\"]}, \"v_n_CMnVD7kCg\": {\"duration\": 145.85, \"timestamps\": [[3.65, 61.25], [41.57, 131.26]], \"sentences\": [\"Several shots are shown of people performing impressive gymnastics flips in a large gymnasium.\", \" The people continuously perform flips and tricks onto the mats with some being shown in slow motion and in pictures.\"]}, \"v_6d9z33GFEGo\": {\"duration\": 165.79, \"timestamps\": [[0, 12.43], [12.43, 18.24], [23.21, 29.84], [33.99, 56.37], [56.37, 75.43], [79.58, 88.7], [88.7, 106.94], [108.59, 144.24], [142.58, 153.36], [161.65, 165.79]], \"sentences\": [\"A man is holding a wine glass and talking.\", \" He takes a drink of the wine and sets the glass down.\", \" He shows bottles that are sitting on a counter.\", \" He pours oil into a pan on a stove.\", \" He adds seasonings to the pan.\", \" He stirs a pot that is on the stove.\", \" He takes a scoop of what's in the pot and adds it to the pan.\", \" He begins to stir the pasta that is in the pan.\", \" He scoops the pasta out of the pan onto a plate.\", \" He picks up his wine glass again.\"]}, \"v_f4983HmCNiM\": {\"duration\": 119.72, \"timestamps\": [[0, 24.54], [27.54, 82.61], [85, 105.36], [110.15, 119.72]], \"sentences\": [\"A group of dirt bikers are waiting on a ramp.\", \" They take off when it opens, going around in circles on the track, racing each other.\", \" Some fall off their bikes.\", \" They make it through the finish line, ending the race.\"]}, \"v_HjVQNiy4uuw\": {\"duration\": 23.55, \"timestamps\": [[0, 4.24], [4.47, 23.55]], \"sentences\": [\"A man is seen riding on a long river with another person riding behind.\", \" The camera transitions into several people riding in tubes and pushing themselves down a river.\"]}, \"v_DzCVpvVJCo8\": {\"duration\": 50.83, \"timestamps\": [[0, 23.89], [21.6, 50.83]], \"sentences\": [\"A girl is seen laying down on a table while a man wearing gloves holds scissors to her belly button.\", \" He then pierces the girl's stomach and she sits up and walks away in the end smiling.\"]}, \"v_cp4n_xpbBDs\": {\"duration\": 81.43, \"timestamps\": [[0, 4.07], [4.07, 11.81], [11.81, 59.85], [59.85, 81.43]], \"sentences\": [\"A black screen appears and the white words on it read \\\"Rob Lane is the MillionaireMaintenance Man\\\".\", \" A man wearing glasses appears outdoors in front of a fence and he's holding an air brush machine and talking.\", \" The man then turns around and walks to the fence and begins airbrushing onto it.\", \"The man stops airbrushing and starts talking again while hand motioning to the fence and to this airbrush machine.\"]}, \"v_oijpI0s_R04\": {\"duration\": 170.3, \"timestamps\": [[0, 5.11], [5.11, 46.83], [47.68, 84.3], [85.15, 117.5], [118.36, 146.45], [146.45, 170.3]], \"sentences\": [\"The colorful title screen is seen.\", \" Two people in a room dance slowly to the back.\", \" A title screen loads and we see the man dance alone.\", \" We see a title and the lady in the green room dancing alone.\", \" A title loads and we see the man's feet as he dances.\", \"  A title loads and we see the ladies feet as she dances.\"]}, \"v_aXm3sPITCKM\": {\"duration\": 180.84, \"timestamps\": [[1.81, 75.05], [66.01, 139.25], [103.98, 177.22]], \"sentences\": [\"A man is seen speaking to the camera while brushing his hair and looking around a bathroom.\", \" The man continues brushing his hair and begins playing with his facial hair.\", \" The man points the camera around his head showing off his hair and smiling to the camera.\"]}, \"v_X5gh32tHdsc\": {\"duration\": 158.92000000000002, \"timestamps\": [[0, 26.22], [28.61, 124.75], [126.34, 158.92]], \"sentences\": [\"Men are playing indoor tennis inside a building while soccer is on the tv in the background.\", \" They hit the ball back and forth for a while.\", \" Other men in the room occasionally look up.\"]}, \"v_Mo9-1cuMVtQ\": {\"duration\": 95.34, \"timestamps\": [[0, 12.39], [12.39, 42.43], [42.9, 49.1], [49.58, 61.5], [61.97, 83.42], [83.9, 94.87], [94.39, 95.34]], \"sentences\": [\"We see a newscaster in a studio talking.\", \" We then see a soccer game indoors.\", \" A man talks in front of the camera and we see the crowd.\", \"  We see the game in progress.\", \" The man talks again and we see the game again.\", \" The man talks one more time and we return to the game.\", \" We see the newscaster in the studio again.\"]}, \"v_nOvrsb0XyGk\": {\"duration\": 135.42, \"timestamps\": [[0, 135.42], [10.83, 17.6], [18.28, 31.82], [31.82, 42.66], [46.04, 59.58], [59.58, 72.45], [73.8, 85.31], [85.31, 94.12], [94.79, 107.66], [111.04, 135.42]], \"sentences\": [\"We see a number of men throwing darts and a woman keeping score.\", \" The man grabs the darts off the board and walks away.\", \" Another man shoots, grabs his darts and goes.\", \" A third guy shoots darts and goes.\", \" The fourth guy shoots and goes.\", \" the first guy returns for another chance.\", \" the second guy goes again.\", \" the third guy plays again.\", \" The fourth guy takes his turn.\", \" And we see them repeat.\"]}, \"v_ERcMdKNF_pc\": {\"duration\": 40.15, \"timestamps\": [[0, 3.81], [4.62, 28.51], [31.72, 40.15]], \"sentences\": [\"A gymnast prepares to mount a beam.\", \" He mounts, then spins and flips several times.\", \" He dismounts, raising his arms into the air.\"]}, \"v_mpj1rR1wXKU\": {\"duration\": 195.81, \"timestamps\": [[0, 2.94], [2.94, 60.7], [19.58, 29.37], [66.58, 136.09], [137.07, 186.02], [187, 195.81]], \"sentences\": [\"We see a couple of opening screens.\", \" We see a man in a blue shirt bowling talking in a bowling alley.\", \" The man picks  purple ball from the dispenser and talks to the camera.\", \" The man holds the ball out then we see him putting his fingers in the ball and talks to the camera.\", \" The man puts the ball down and grabs another, then another and talks.\", \" We then see the man roll the ball down the aisle.\"]}, \"v_PN99KIY7jRY\": {\"duration\": 5.13, \"timestamps\": [[0, 4.57], [4.72, 5.13]], \"sentences\": [\"A man serves a tennis ball with his racket.\", \" He brings the racket down to his side.\"]}, \"v_3tfGg2rVv6o\": {\"duration\": 187.2, \"timestamps\": [[0, 134.78], [134.78, 187.2]], \"sentences\": [\"little girl is doing gymnastics in the middle of the court holding batons.\", \" pictures of woman are shown.\"]}, \"v_0pGXfomqurw\": {\"duration\": 156.67000000000002, \"timestamps\": [[0, 39.95], [39.17, 156.67]], \"sentences\": [\"woman wearing sport clothing is climbing stairs and talking to the camera.\", \"  woman is in gym talking on the camera and with other man while a woman is making exercise in an orbitrek.\"]}, \"v_Jtlvh2w1aUM\": {\"duration\": 78.55, \"timestamps\": [[0.39, 78.16], [3.93, 17.67], [15.32, 69.91], [39.67, 76.59]], \"sentences\": [\"A person blows leaf off of a lawn and walkway using a leaf blower.\", \"  The person begins by pointing the leaf blower towards leaves around a bush and near grass.\", \"  The person blows leaves out of a tight corner and then progresses to a walkway.\", \"  The person blows leaves from a walkway and across a lawn.\"]}, \"v_XxbuqeqOGaM\": {\"duration\": 86.5, \"timestamps\": [[0, 15.14], [15.57, 47.14], [47.57, 66.6], [66.6, 86.5]], \"sentences\": [\"A chef in the kitchen wearing a chef hat is giving instructions on how to sharpen a knife.\", \" He brings the knife to a sharpener and begins slowly to demonstrate.\", \" He picks up the sharpening tool and talks about what he will do next and begins to sharpen again.\", \" Then he shows all of the pieces that come with the kit and talks about it all.\"]}, \"v_U-mwyUsNOMU\": {\"duration\": 204.85, \"timestamps\": [[0, 79.89], [72.72, 169], [142.37, 199.73]], \"sentences\": [\"A person is seen kneeling down next to a hole of ice and reeling in a fish.\", \" The person continues reeling in on the rod while the camera zooms in on the hole.\", \" Finally the person grabs the fish and presents it to the camera.\"]}, \"v_WUcjqCvYfQ0\": {\"duration\": 150.54, \"timestamps\": [[0, 15.81], [18.06, 37.63], [38.39, 115.91], [117.42, 140.75], [140.75, 150.54]], \"sentences\": [\"A couple is sitting outside talking.\", \" They go in the house and gather supplies for shaving, which are listed on the screen.\", \" The woman lathers the man up, Then shaves his beard and mustache using a beaver boar brush and razor.\", \" She then rinses him clean, and applies aftershave.\", \" He is then shown giving her a shoulder rub.\"]}, \"v_4MKbQ816r9A\": {\"duration\": 86.82, \"timestamps\": [[0, 2.6], [2.6, 32.56], [31.69, 38.2], [38.63, 53.83], [52.96, 78.57], [78.57, 86.82]], \"sentences\": [\"A tall thin male is standing in a bar surrounded by liquor.\", \"The male has a cup of ice in front of him that he pours into a regular glass that he then adds liquor into.\", \"Followed by two more shots of different clear liquors.\", \"He then takes two syrup like liquor and pour them in the cup.\", \"Once everything is in the glass,he puts the mixer on top of it and shakes it up.\", \"Finally,the drink is complete and he pours it into another glass and adds a straw for it to be served.\"]}, \"v_Qtj7QFDjH1A\": {\"duration\": 59.44, \"timestamps\": [[1.78, 30.91], [23.78, 57.36]], \"sentences\": [\"A young man is seen standing in front of the camera  playing a set of bagpipes.\", \" He continues playing the instrument and ends by holding it in his hands and a picture of him playing guitar.\"]}, \"v_2ptdloHcTcs\": {\"duration\": 235.34, \"timestamps\": [[0, 48.24], [47.07, 235.34]], \"sentences\": [\"A person is seen riding a surf board through a wave and leads into several more people riding waves and sitting along the water.\", \" More shots of people surfing incredible waves are shown with some wiping out but overall riding along.\"]}, \"v_rfWlK9njyzg\": {\"duration\": 45.49, \"timestamps\": [[0, 3.87], [4.32, 12.96], [13.42, 15.24], [15.24, 45.49]], \"sentences\": [\"The floor has a hopscotch on it.\", \"  Someone is sitting with a lap top.\", \"  There is a trashcan in the corner.\", \"  A boy is playing hopscotch.\"]}, \"v_fgP3D3Gqn6U\": {\"duration\": 105.53999999999999, \"timestamps\": [[0, 2.64], [2.64, 3.17], [2.64, 51.71], [60.68, 84.96], [89.7, 96.56], [97.62, 104.48], [104.48, 105.54]], \"sentences\": [\"People sit on a bench at a rodeo.\", \" We see people standing around a fence.\", \" The gate open and calf and a man come out we see four men hogtie calf's.\", \" We see a calf running in the ring and another calf being hogtied.\", \" A man and a little boy are walking and holding the reins of a horse.\", \" We see an older man  holding the reins of a horse.\", \" The camera points to the ground and the video ends.\"]}, \"v_-cApkmTI3F8\": {\"duration\": 19.04, \"timestamps\": [[0, 9.23], [8.09, 19.04]], \"sentences\": [\"A man is seen drinking out of a cup held by a woman who is also drinking from a bottle.\", \" The two continue drinking as others record them and then stop immediately.\"]}, \"v_3jt4XE6ilIQ\": {\"duration\": 54.61, \"timestamps\": [[0, 18.3], [6.01, 50.24], [29.76, 48.61]], \"sentences\": [\"There's a man in a white shirt being interviewed in the 60 Minutes program by the host of the show.\", \" He is talking about his participation as a matador in a bull fighting event where there are several spectators watching him.\", \" During the event, he gets injured and is taken on a stretcher by the paramedics for first aid treatment.\"]}, \"v_EbqurNRxneE\": {\"duration\": 34.32, \"timestamps\": [[0, 3.6], [4.8, 16.82], [17.33, 34.32]], \"sentences\": [\"A woman is kneeling on the sandy beach.\", \" She is helping a baby with suntan lotion.\", \" She rubs the lotion on the baby's skin.\"]}, \"v_d4B9z_WJAKs\": {\"duration\": 238.49, \"timestamps\": [[0, 16.69], [16.69, 230.15], [153.83, 186.02], [186.02, 211.07], [232.53, 238.49]], \"sentences\": [\"Four  men are playing bad mitten.\", \" There are clips of great shots from teams.\", \" The yellow team makes several points in a row.\", \" Denmark's team made several points.\", \" The clip ends with the yellow team holding trophies.\"]}, \"v_ArT40PO05h8\": {\"duration\": 152.44, \"timestamps\": [[0, 16.01], [16.01, 136.43], [136.43, 152.44]], \"sentences\": [\"A man is playing a ukulele for a woman while a man watches from behind a curtain.\", \" Suddenly, the video cuts to several different people doing window washing tricks.\", \" The video ends with a man on the phone doing a comedy skit about windows.\"]}, \"v_PRkEpM8ffak\": {\"duration\": 50.18, \"timestamps\": [[0.5, 19.07], [16.06, 49.68]], \"sentences\": [\"A person is seen using a piece of exercise equipment moving up and down on the machine.\", \" The camera pans all around the man using the machine and zooms all around the man moving around.\"]}, \"v_mB0MeZjjCmU\": {\"duration\": 214.37, \"timestamps\": [[0, 2.14], [2.14, 15.01], [15.01, 58.95], [58.95, 99.68], [99.68, 168.28], [163.99, 214.37]], \"sentences\": [\"A vanilla sponge cake is shown on the title screen.\", \"A white plate is then placed on a brown table alongside four brown eggs.\", \"They are then put in a silver bowl and they are whisked at a rapid pace as sugar is gradually added it and the whipping continues.\", \"After,milk,butter,flour,banana pudding,salt and vanilla extract are shown on a table.\", \"The milk and butter are heated up then added in a large bowl with the cake batter to be whisked.\", \"The vanilla is then added and poured into another bowl before the final product is shown.\"]}, \"v_srARxP_ocyg\": {\"duration\": 30.86, \"timestamps\": [[0, 6.48], [7.1, 21.91], [16.97, 30.55]], \"sentences\": [\"A woman is seen kicking a man wearing gloves in his hands.\", \" The man then walks around the circle while people take turns hitting the man.\", \" The man continues walking around while they hit him.\"]}, \"v_8NRv-75RlPI\": {\"duration\": 81.13, \"timestamps\": [[0, 10.95], [11.36, 60.44], [62.88, 81.13]], \"sentences\": [\"An elliptical trainer is shown, as well as its components.\", \" A woman is shown working out on the elliptical.\", \" She pedals and demonstrates the mechanics of the programming screen.\"]}, \"v_TPqgLJpxyvY\": {\"duration\": 221.45, \"timestamps\": [[0, 23.25], [28.79, 45.4], [58.68, 66.43], [58.68, 221.45]], \"sentences\": [\"A person rolls over in bed and looks at their phone.\", \" They sit up on their bed and rub their face.\", \" They wash their hands and face.\", \" They start rollerblading and doing tricks.\"]}, \"v_lO1r4df9uUc\": {\"duration\": 95.13, \"timestamps\": [[0, 13.79], [16.17, 61.36], [63.74, 95.13]], \"sentences\": [\"A man is seen skiing behind a boat.\", \" He holds on tight as he is pulled through the water.\", \" The man is water skiing until the end of the clip.\"]}, \"v_xE9anOqq2XQ\": {\"duration\": 153.51, \"timestamps\": [[0, 28.4], [29.17, 49.89], [47.59, 153.51]], \"sentences\": [\"An athletic man is seen standing ready while holding a javelin and then runs down the track and throws the pole into a field.\", \" He walks away with his hands on his hips and his same throw is shown again.\", \" Several more athletes step up to throw the javelin into the field followed by their same throw shown again and them laughing to the camera.\"]}, \"v_lUw8OA9R4mQ\": {\"duration\": 219.22, \"timestamps\": [[3.29, 101.94], [60.29, 155.65], [128.24, 218.12]], \"sentences\": [\"A large group of people are seen standing around a room with a woman in front grabbing a drink.\", \" The woman puts her drink down and begins leading a group of people dancing around.\", \" The group continues to dance around while the camera captures their movements.\"]}, \"v_BryW4niZT9Y\": {\"duration\": 111.81, \"timestamps\": [[0, 45.28], [45.28, 67.64], [67.64, 92.8]], \"sentences\": [\"A man serves a tennis ball when playing tennis with a person in a tennis court.\", \" Then, the man serves again to a person behind the net, while a player stands next to him.\", \" After, the man serves a ball but nobody is behind the net.\"]}, \"v_-NndIs9BaS4\": {\"duration\": 106.58, \"timestamps\": [[0, 24.51], [25.05, 106.58]], \"sentences\": [\"man is standing in a gren field and start jumping the rope.\", \" man drops the rope and explain how to jump and holds the rope again.\"]}, \"v_Ti3z17QofU8\": {\"duration\": 24.13, \"timestamps\": [[0, 5.43], [5.79, 14.23], [14.84, 17.01], [17.13, 24.13]], \"sentences\": [\"We see an opening scene on a black background.\", \" We see a man hammer a nail.\", \" The man shows us some bolts.\", \" We see the man screw a screw in.\"]}, \"v_xpmXZBpYrM0\": {\"duration\": 47.07, \"timestamps\": [[0.24, 46.83], [0.24, 19.3], [20, 35.54], [36.48, 45.89]], \"sentences\": [\"A person applies leg lube to their leg and then proceeds to shave the leg and then wipe their leg down with a wet rag.\", \"  A person in a bathroom, with one foot on top of a toilet cover rubs leg lube on their leg.\", \"  The person then begins to shave the length of their leg with a blue razor.\", \"  The person wipes their leg down with wet rag after holding the rag under the bathroom sink tap before holding a bottle of leg lube in their hand in a closeup view.\"]}, \"v_bOp6pObPeZ4\": {\"duration\": 154.37, \"timestamps\": [[0, 143.56], [19.3, 43.22], [146.65, 148.96]], \"sentences\": [\"A woman and a man are dancing on a stage.\", \" There is a band playing behind them.\", \" There is an audience sitting in chairs clapping for them.\"]}, \"v_C1djGYqkhYI\": {\"duration\": 107.18, \"timestamps\": [[0, 12.86], [12.33, 40.73], [40.19, 77.17], [74.49, 107.18]], \"sentences\": [\"A young girl in a green leotard begins twirling a baton and doing tricks.\", \"The girl begins to incorporate her arms and does a flip and continues to flip the baton over her hands and arms.\", \"As the young lady continues her performance, she twirls the baton between her legs and over her head,catches it and does a gallop.\", \"The rest of the young girl's performance is a set of twirls and twist and then she runs off the floor to finish her performance.\"]}, \"v_lkCpF06uEmE\": {\"duration\": 46.59, \"timestamps\": [[0, 8.62], [10.48, 29.35], [29.35, 46.59]], \"sentences\": [\"A person lifts a 90 kg weight until the shoulder and then above the head, then the man drops the weight to the floor.\", \" Then, the man lifts 95 kg weight above his head.\", \" After, the man lifts a weight of 101 kg successfully.\"]}, \"v_LSkcoamI3gw\": {\"duration\": 134.4, \"timestamps\": [[4.03, 110.88], [114.91, 134.4], [118.27, 134.4]], \"sentences\": [\"A man comes outside and starts shoveling the snow with his black shovel and many people drive past while he's doing it.\", \" In the end the camera zooms in to show what is written in the big pile of snow.\", \" The letters create this world known holiday phrase and that is Merry Christmas including the year 2013.\"]}, \"v_Tp6MFA0SbFU\": {\"duration\": 21.55, \"timestamps\": [[0, 13.58], [14.01, 21.55]], \"sentences\": [\"A female wrestler is holding another wrestler upside down.\", \" She slams her down onto the mat, on her back.\"]}, \"v_tMheZSxPl3Q\": {\"duration\": 91.07, \"timestamps\": [[0, 72.4], [45.08, 53.28], [62.84, 71.49]], \"sentences\": [\"Pieces of furniture are seen including cabinets and tables.\", \" A person sands down a piece of wood with an electric sander.\", \" A person sands down a piece of wood by hand.\"]}, \"v_aorWXCqqyJs\": {\"duration\": 141.93, \"timestamps\": [[0, 20.58], [22.71, 104.32], [118.51, 141.93]], \"sentences\": [\"Some people are surfing in rough ocean waves.\", \" They lay down on their boards, disappearing into the water.\", \" The girl just rides the surf with her father helping.\"]}, \"v_y1CzJvvItrM\": {\"duration\": 90.4, \"timestamps\": [[19.44, 52.43], [19.44, 65.09], [62.37, 90.4]], \"sentences\": [\"A man is standing on a ladder wiping down a wall.\", \" A black bucket is sitting next to him.\", \" A man is standing up throwing mud at the wall.\"]}, \"v_qD52CX0CSBs\": {\"duration\": 42.26, \"timestamps\": [[0.63, 25.15], [18.59, 41.84]], \"sentences\": [\"A woman is seen speaking to the camera while standing next to a horse and petting the horse on the side.\", \" The horse sniffs all around the woman while she pets him down and turns his head in the end.\"]}, \"v_UvIS1-hwgaQ\": {\"duration\": 156.2, \"timestamps\": [[9.37, 149.17], [12.5, 31.24], [17.18, 21.87], [30.46, 149.17]], \"sentences\": [\"A man approaches a large mountain, with friends, and climbs it while attached to a green rope until he reaches the top.\", \"  A group of young people approach the base of a mountain and set down their things where they smile and prepare to climb the mountain.\", \"  A long green rope is shown on a large rock after which a man in glasses begins to climb a mountain using metal hooks in the mountain and his feet to climb the mountain.\", \"  The man smiles and gives the camera a thumbs up when he gets to the top of the mountain.\"]}, \"v_BOqca4eckEs\": {\"duration\": 81.9, \"timestamps\": [[0, 3.28], [3.28, 39.31], [39.31, 81.9]], \"sentences\": [\"A girl is standing with a group of people on a long platform made of wood.\", \"She is attached to a rope and with several people behind her then she is pushed off of the stand participating in a free fall.\", \"The female falls then hangs down over the water for a long period of time.\"]}, \"v_hFzMCWZ3Jps\": {\"duration\": 103.91, \"timestamps\": [[0.52, 55.59], [45.72, 99.75]], \"sentences\": [\"A woman is seen looking into the camera while brushing her hair and leads into her putting her hair into a ponytail.\", \" The girl then braids more hair into her and ends by waving to the camera.\"]}, \"v_ULBhK8jXNws\": {\"duration\": 184.62, \"timestamps\": [[4.62, 8.31], [48, 184.62]], \"sentences\": [\"There is a truck being driven on the road in the beginning of the video.\", \" Then a man is shown sitting by the poolside, surfing in the water with other people.\"]}, \"v_jAlYwQevBxA\": {\"duration\": 219.9, \"timestamps\": [[0, 74.77], [71.47, 175.92], [127.54, 214.4]], \"sentences\": [\"People are seen walking around a snowy area carrying boards in their hands and riding along the trail.\", \" The people ride down the snowy mountain continuously while looking back to the camera.\", \" The people continue to ride around while zooming in on their feet.\"]}, \"v_EdJgTx0iFeE\": {\"duration\": 160.8, \"timestamps\": [[2.41, 82.81], [69.95, 154.37]], \"sentences\": [\"A woman is seen speaking to the camera holding a hula hoop and leads into her spinning around the hula hoop.\", \" The woman continues to push the object around her waist while spinning herself around as well as dancing in place.\"]}, \"v_9u-wH-UBuRc\": {\"duration\": 72.1, \"timestamps\": [[0, 52.27], [52.27, 72.1]], \"sentences\": [\"A thin man and a fat man perform arm wrestling while a cameraman film them.\", \" The thin man win the arm wrestling competition.\"]}, \"v_b_DY76Y6ekg\": {\"duration\": 210.26, \"timestamps\": [[0, 9.46], [10.51, 62.03], [48.36, 52.56], [77.8, 105.13], [118.8, 179.77], [182.92, 210.26]], \"sentences\": [\"People in harnesses walk on a platform with trees far below in the background.\", \" The man sits on a bench and is hooked to a large white rope.\", \" The man shakes a lady's hand.\", \" The man stands and walks to the edge of the platform assisted by two people.\", \" The lady then pushes the man off the edge and the camera pans down to watch the mans' bungee jump.\", \" A man with stick holds it out and the man catches it and they release the man from the rope.\"]}, \"v_I-1UKECfQko\": {\"duration\": 88.14, \"timestamps\": [[0, 28.65], [0, 15.43], [33.94, 88.14], [76.68, 88.14]], \"sentences\": [\"Several people lay in tubes in the snow.\", \" More people are standing around them.\", \" Eventually some of them go down the hill.\", \" They reach the bottom of the hill.\"]}, \"v_kxUkqmzS2wc\": {\"duration\": 92.18, \"timestamps\": [[9.22, 16.13], [16.13, 66.83], [68.68, 71.9]], \"sentences\": [\"A man puts shaving cream on his face.\", \" He starts shaving his face with a razor.\", \" He dries his face off with a towel.\"]}, \"v_KjXvBqmh5C4\": {\"duration\": 217.39, \"timestamps\": [[0, 71.74], [72.82, 154.34], [141.3, 211.95]], \"sentences\": [\"A shot of a gym is shown followed by several clips of a person attempting to pole volt and others socializing.\", \" Several people speak to the camera and lead into them pole volting.\", \" More people are seen speaking to one another as well as the camera and using a pole to get over a bar.\"]}, \"v_-b2lkhdJXf4\": {\"duration\": 107.67, \"timestamps\": [[0, 7.54], [7.54, 12.38], [12.38, 21.53], [21.53, 96.37], [95.29, 107.67]], \"sentences\": [\"A small white ball dashed out into the court and hits a player smack dab in the head.\", \" Another player then steals the ball and starts kicking it until its more into his control, and kicks it straight into the goal.\", \" A small replay shows how he managed to kick it in there.\", \" A short montage of similar moves, the player kicking a ball straight into the goal.\", \" A short amount of footage shows how the player reacts to his own shot.\"]}, \"v_1oyWMusaDTI\": {\"duration\": 61.76, \"timestamps\": [[0, 61.76], [16.06, 21.31], [22.23, 46.32], [44.15, 60.83]], \"sentences\": [\"A man is kite surfing on the edge of the board.\", \" The camera zoom in and shows the board then zooms back out.\", \" We see the road in the distance and see cars driving.\", \"  We see a second person kitesurfing.\"]}, \"v_W06Ojnv-Wxg\": {\"duration\": 44.14, \"timestamps\": [[0, 20.08], [20.31, 44.14]], \"sentences\": [\"A gymnast is seen jumping onto a set of uneven bars and performing a gymnastics routine in front of others.\", \" The man continues flipping around the bars and ends with him jumping down and bowing to the crowd.\"]}, \"v_IuntoXkEWPI\": {\"duration\": 29.51, \"timestamps\": [[0, 21.54], [19.48, 29.51]], \"sentences\": [\"A small child is seen climbing up a slide at a playground very slowly.\", \" She edges her way up to the top and then slides down the slide.\"]}, \"v_wsrSku74OpM\": {\"duration\": 169.81, \"timestamps\": [[0, 35.66], [31.41, 132.45], [108.68, 165.56]], \"sentences\": [\"A close up of solo cups are shown followed by a man throwing balls.\", \" A person moves the cups alongside the table while the person continues throwing and the men switch place.\", \" The two continue taking turns while the camera captures their movements.\"]}, \"v_cdb7VSVuUl8\": {\"duration\": 207.75, \"timestamps\": [[0, 196.32], [0, 33.24], [33.24, 205.67]], \"sentences\": [\"Two men in inflatable sumo wrestler costumes entertain the public by street performing in a public square.\", \"  Two men in inflatable sumo wrestler outfits talk to the camera and begin to entertain the people passing by as they stand in a paved public square.\", \"  The two men show a little boy how to use an automated scooter, perform mock sumo wrestling matches, and take pictures with the audience as well as dancing with the audience before ending the performance and speaking again to the camera.\"]}, \"v_NmmFlMtvE68\": {\"duration\": 77.97, \"timestamps\": [[0, 7.8], [9.36, 13.65], [13.65, 58.48], [49.9, 53.41], [60.04, 69.01], [69.01, 77.97]], \"sentences\": [\"We see a person bring a dog into a shelter.\", \" We see a black screen with writing.\", \" We then see a lady use an electric shaver then scissors to groom a dog.\", \" The groomer kisses the puppy.\", \" We see shot of the dog after the grooming.\", \" We then see a black title screen.\"]}, \"v_oghT33khlYQ\": {\"duration\": 166.4, \"timestamps\": [[0, 11.65], [13.31, 36.61], [38.27, 74.88], [76.54, 166.4]], \"sentences\": [\"Many trees and deep water from a river is shown.\", \" A man is standing on the back of a speedboat.\", \" He places his board in the water and begins to water ski.\", \" He performs several tricks as he skis.\"]}, \"v_uowNtTu74nA\": {\"duration\": 226.02, \"timestamps\": [[0, 100.58], [97.19, 226.02]], \"sentences\": [\"The video leads into several shots of surfers moving along the water and riding waves past other people.\", \"  Several shots are shown on how to properly surf and is followed by more shots shown in slow motion.\"]}, \"v_t6iq95QPZIg\": {\"duration\": 108.75999999999999, \"timestamps\": [[0, 26.1], [26.65, 108.76]], \"sentences\": [\"The back of a speed boat is shown followed by feet jumping into water and looking around underwater.\", \" A person holds a stick out and grabs a fish and pokes at sharks.\"]}, \"v_7YOV0kZQIAo\": {\"duration\": 84.38, \"timestamps\": [[0, 81.85], [82.27, 84.38]], \"sentences\": [\"A man plays a saxophone while facing the camera.\", \" The man finishes playing and smiles at his instrument.\"]}, \"v_cCYLiE1fiEo\": {\"duration\": 203.45, \"timestamps\": [[0, 57.98], [59, 85.45], [87.49, 179.04], [179.04, 203.45]], \"sentences\": [\"A person steps on a tan mat several times.\", \" They take their shoes off and put a different pair of shoes on.\", \" They continue stepping on the mat in the new shoes.\", \" They take those shoes off and walk away.\"]}, \"v_Bs3TR80BRco\": {\"duration\": 144.64, \"timestamps\": [[0, 13.02], [15.91, 86.06], [88.23, 144.64]], \"sentences\": [\"A man is in a forest, and his feet are shown with and without shoes.\", \" He mounts a tightrope and balances on it.\", \" He uses the tightrope to walk, showing the proper positions to maintain balance.\"]}, \"v_MvKhjWRNTvI\": {\"duration\": 166.19, \"timestamps\": [[0, 17.45], [19.11, 44.04], [47.36, 98.05], [105.53, 166.19]], \"sentences\": [\"A woman pics up a bottle filled with red bullets.\", \" The cotton pad is removed, then a gun is loaded.\", \" She shoots the paint bullets at a target, spattering it red.\", \" Several targets are shown getting spattered.\"]}, \"v_LqBp5qgcwLY\": {\"duration\": 130.94, \"timestamps\": [[0, 27.5], [30.77, 97.55], [80.53, 124.39]], \"sentences\": [\"Several shots of a city are shown as well as people walking around and speaking to one another.\", \" People are then seen paving along walls as well as handing out pamphlets and speaking to one another.\", \" The people touch the materials on the walls and ends by speaking to the camera.\"]}, \"v_jWzLhOqcGtE\": {\"duration\": 22.99, \"timestamps\": [[0, 7.36], [4.02, 14.83], [10.23, 11.95]], \"sentences\": [\"A man is dribbling a basketball.\", \" They run on the court and continue to dribble the ball.\", \" They jump up and make a basket.\"]}, \"v_H8MY7XGrN6Q\": {\"duration\": 53.27, \"timestamps\": [[9.06, 27.17], [27.43, 53.27]], \"sentences\": [\"A person is seen roller balding around a street while many people are seen walking around him.\", \" A man is then being interviewed by reporters and ends with the camera panning away.\"]}, \"v_hs81dVKvvdw\": {\"duration\": 115.75, \"timestamps\": [[0, 71.77], [72.92, 115.75]], \"sentences\": [\"A person is sitting down getting their arm tattooed.\", \" They stand up and show the tattoo.\"]}, \"v_5bZ2FdbAKiQ\": {\"duration\": 110.18, \"timestamps\": [[0, 2.75], [3.31, 51.78], [51.23, 107.42]], \"sentences\": [\"A gymnast is seen standing ready with her arms up and turns to face the beam.\", \" Just jumps up on the beam and begins perform a gymnastic routine until she falls off.\", \" She climbs back up on the beam and ends by flipping off the beam.\"]}, \"v_ymEh5T11kSQ\": {\"duration\": 35.25, \"timestamps\": [[0, 21.5], [8.11, 35.07]], \"sentences\": [\"Two people are seen standing on a sandy beach with one kicking the ball and passing it to another.\", \" The boys continue passing the ball back and fourth while many people are seen walking around and playing in the water.\"]}, \"v_FSfxYKauc9w\": {\"duration\": 117.97999999999999, \"timestamps\": [[0, 18.88], [18.88, 60.17], [60.76, 98.51], [98.51, 117.98]], \"sentences\": [\"Two teams of hockey players are inside of the rink playing a game.\", \"The puck is hit behind the goal and the team hits it back out and the game continues.\", \"After fighting for it,the players hit the puck down on the other end and it is blocked by the goalie.\", \"Each team rallies back and forth with the puck but neither of them are successful and they are blocked on both ends of the rink.\"]}, \"v_7gRbYNWSUjk\": {\"duration\": 100.61, \"timestamps\": [[4.02, 20.12], [20.63, 42.26], [43.26, 74.45], [74.96, 90.55]], \"sentences\": [\"A man practice martial arts in a gym turning and spinning around.\", \" Then, the man leans on her hands to spin his body and make turns.\", \" After, the man stands on his hands and tilt his body to the sides and front.\", \" Next, the stands on his hands and rotates his body.\"]}, \"v_Q43BuVI2r-s\": {\"duration\": 83.92, \"timestamps\": [[0, 18.46], [18.88, 52.45], [59.16, 83.92]], \"sentences\": [\"Two men are walking down planks with one rolling out paper and putting tape across.\", \" Other men lay down a green sheet of paper and continue taping down the paper.\", \" One last set of paper is laid across with tape and the men continue working.\"]}, \"v_ACnOpQNrhqs\": {\"duration\": 189.29, \"timestamps\": [[0, 189.29], [73.82, 82.34], [87.07, 92.75], [123.98, 126.82], [140.07, 146.7], [169.41, 174.15], [178.88, 185.5]], \"sentences\": [\"We see a college volleyball game being played by women.\", \" A group of ladies passes.\", \" A lady falls and slides across the ground.\", \"  Two ladies high five each other.\", \"  Three ladies fall into the crowd on the left.\", \" A lady misses and falls.\", \" A person dangles a set of keys.\"]}, \"v_vcl8rFSCH4w\": {\"duration\": 70.47, \"timestamps\": [[1.76, 36.29], [33.12, 69.42]], \"sentences\": [\"A close up of people are shown sitting on a snowy hill and looking to the camera.\", \" The people then all ride in tubes down the snowy trail with one moving around at the bottom.\"]}, \"v_P3q6n0ZjumU\": {\"duration\": 48.25, \"timestamps\": [[0, 5.79], [7.24, 31.12], [33.05, 48.25]], \"sentences\": [\"A teen boy has a bunch of darts in his hands.\", \" He throws each dart, trying to hit his target on the wall.\", \" A cell phone camera above the dart board records as he throws, then gets hit by a dart before falling onto the carpet.\"]}, \"v_6G1wS1p1ig0\": {\"duration\": 222.94, \"timestamps\": [[6.69, 103.66], [89.17, 205.1]], \"sentences\": [\"A large group of kids are seen dancing in a room followed by men moving around and laughing.\", \" More clips are shown of people jump roping in different rooms and laughing with one another.\"]}, \"v_p377oL-EM_E\": {\"duration\": 39.47, \"timestamps\": [[0, 7.3], [7.11, 39.47]], \"sentences\": [\"A black screen appears with yellow writing on it.\", \"Once gone,a field is shown and a buff females throws a shot put into the field and a replay is shown.\"]}, \"v_lGAK_3Jp2I8\": {\"duration\": 40.44, \"timestamps\": [[14.15, 15.97], [16.78, 20.22], [22.24, 25.68]], \"sentences\": [\"A man body slams another man on a ring.\", \" A referee taps on the ground several times.\", \" The crowd cheers for the people.\"]}, \"v_QNsonWAaFk4\": {\"duration\": 186.41, \"timestamps\": [[0, 0.93], [0.93, 186.41], [35.42, 36.35], [71.77, 84.82], [89.48, 127.69], [130.49, 143.54], [168.7, 178.02]], \"sentences\": [\"We see an opening title screen.\", \" Men snarl and we see the crowd and shots of volleyball play.\", \" We see ladies on the sidelines.\", \"  A tall man is shown from the legs up as he jumps.\", \" A man misses a shot and looks behind him and two men look behind them.\", \" We see men cheer and jump.\", \" A shot is made and team hugs.\"]}, \"v_Vc4NSwtI5jM\": {\"duration\": 30.12, \"timestamps\": [[1.2, 15.66], [15.66, 20.78], [20.78, 29.67]], \"sentences\": [\"A man cleans the rim of a wheel with a brush, then the man rinse the car with a hose.\", \" After, the man applies detergent with a washing scrub brush.\", \" Next, the car enters inside an automatic car wash machine.\"]}, \"v_f98FHTGx64Q\": {\"duration\": 173.48, \"timestamps\": [[2.6, 33.83], [24.29, 173.48], [95.41, 109.29]], \"sentences\": [\"Two people arm wrestle and take off clothes.\", \"  They get dressed up and go extreme kite flying in a hurricane.\", \"  The kites crash into the people once.\"]}, \"v_OUPEzXXawCs\": {\"duration\": 83.24, \"timestamps\": [[13.32, 83.24], [31.63, 38.71], [31.63, 83.24]], \"sentences\": [\"People are riding horses on a field.\", \" A dog and a person cross in front of the camera.\", \" The horses are running around on the field.\"]}, \"v_J6T9pokWX1E\": {\"duration\": 101.25999999999999, \"timestamps\": [[0, 6.58], [6.58, 94.68], [94.68, 101.26]], \"sentences\": [\"The exterior of a business is shown and the blue and white sign on it say's \\\"BORONIA DOG GROOMING & PET SUPPLIES\\\" with a picture of a dog in water and covered with suds and paw prints on the sides of it, and the word \\\"DOG GROOMING\\\" is along the front facing of the ledge that sticks out.\", \"A woman is talking and in between there are clips playing of groomers grooming dogs, customers, dogs walking in the store, products and dogs walking in the store.\", \"The same clip of the exterior of the building that was shown in the beginning, is the same exterior view that is shown at the end.\"]}, \"v_roTIeCtx94Q\": {\"duration\": 104.33, \"timestamps\": [[0, 64.16], [64.16, 104.33]], \"sentences\": [\"woman puts butter in a bowl with sugar, and flour and mix it in a kitchen aid, adding eggs, vanilla and flour, when the mix is homogenous add chocolate chips.\", \" the dough is molded in balls and in a tray to the oven.\"]}, \"v_FOlMVTmAeaQ\": {\"duration\": 129.61, \"timestamps\": [[0, 19.44], [19.44, 57.68], [58.33, 129.61]], \"sentences\": [\"A male athlete is shown and he spins around and throws the discus.\", \"Once complete,two people rush out to measure the distance.\", \"The sequence is then continued and other men are shown throwing the discus.\"]}, \"v_nHafujMomWg\": {\"duration\": 120.05, \"timestamps\": [[0, 16.81], [17.41, 88.24], [85.83, 120.05]], \"sentences\": [\"A man is in front of a cutting board covered in potatoes.\", \" He uses a peeler to peel the skin from a potato.\", \" He moves quickly, peeling until all the potatoes are bare.\"]}, \"v_YPFk9ftkzl4\": {\"duration\": 20.99, \"timestamps\": [[0, 2.73], [3.04, 15.32], [16.06, 20.99]], \"sentences\": [\"A boy is sitting at a wooden table in a cafe.\", \" He lights a hookah, then pulls a drag on the smoke.\", \" He sits back, blowing smoke out of his mouth.\"]}, \"v_ePqfnkzAQjQ\": {\"duration\": 136.36, \"timestamps\": [[0, 136.36], [29.32, 65.45], [65.45, 136.36]], \"sentences\": [\"A girl sits and endures pain as she gets a traditional Polynesian tattoo.\", \" The artists stop for a moment and clean off the area.\", \" They begin to continue tattooing her hand as she endures visibly the pain.\"]}, \"v_6dNh6AxVLx8\": {\"duration\": 117.52000000000001, \"timestamps\": [[0, 29.38], [29.97, 94.6], [71.1, 117.52]], \"sentences\": [\"The video starts with several shots of bmx riders riding along a track with one taking a hard fall.\", \" Several more shots of people riding on a track are shown with many standing on the sidelines to watch.\", \" More falls are shown with a slow motion affect and more people continue to ride around.\"]}, \"v_1bcm3LHTI_w\": {\"duration\": 129.55, \"timestamps\": [[0, 12.95], [12.95, 45.34], [45.34, 73.19], [73.19, 129.54]], \"sentences\": [\"A black screen appears with white,red,green and blue words that say \\\"membrillo films\\\" on one screen,  \\\"Mateo Bervelillo\\\" ,and \\\"Trillizos\\\".\", \"A man is now outdoors, sits on a wooden box, and begins tapping his fingers onto the box and bouncing his feet on the ground.\", \" Another man who looks like the first man comes out of a door and sits on the chair outdoor near the first man and he begins hitting a bongo.\", \" A third man who looks like the two previous men before him, come out of a door and sit on the last chair and he plays on his bongo.\"]}, \"v_OJJMEEsOdPQ\": {\"duration\": 12.38, \"timestamps\": [[0, 11.26], [0, 12.38], [0, 6.87]], \"sentences\": [\"girl us hanging from a pole in a roofed gym and make a jump to the land pool.\", \" woman wwearing a red shirt is standing in front of the pole.\", \" little girl is walking in front of he girl doing gymnastics.\"]}, \"v_Qn61vl2khuo\": {\"duration\": 155.04, \"timestamps\": [[0, 11.63], [11.63, 23.26], [23.26, 68.99], [67.44, 73.64], [73.64, 110.85], [110.08, 133.33], [134.88, 141.09], [138.76, 155.04]], \"sentences\": [\"We see the black title screen.\", \"  We see a lady and a man working on a machine.\", \" We see the people standing and talking about the product with shots of the machine.\", \" We see the display on the machine.\", \" The lady gets on, sets the time, and runs on the machine.\", \" We see just the man talking then using the machine.\", \" We return to the people talking together.\", \" We see the closing title screens.\"]}, \"v_FMmrxy3OanA\": {\"duration\": 213.28, \"timestamps\": [[0, 7.46], [9.6, 53.32], [51.19, 53.32], [67.18, 95.97], [95.97, 123.7], [153.56, 213.28]], \"sentences\": [\"The video begins with a title sequence showing a girl throwing clothing at a man, and a title screen.\", \" The man and his family are in a backyard speaking to the camera.\", \" After he speaks, they cheer.\", \"  The man and woman put on a tutu and blindfolds.\", \"  They then begin to hula hoop until the woman loses.\", \" Afterward, they speak to the camera and wave goodbye.\"]}, \"v_z-94IUxC4Xc\": {\"duration\": 139.6, \"timestamps\": [[0, 48.86], [39.09, 108.89], [110.28, 139.6]], \"sentences\": [\"Several shots of scenery are shown followed by a person performing a trick on a skateboard and others riding down a hill.\", \" Several shots are shown of people riding down the street on skateboards and doing several tricks while the camera zooms in.\", \" One man falls in the end and his board crashes along the side.\"]}, \"v_2Ua6E2a6kT4\": {\"duration\": 44.68, \"timestamps\": [[0.22, 11.84], [9.83, 33.73], [27.48, 43.34]], \"sentences\": [\"A man is seen speaking to the camera while standing out in a back yard.\", \" He pans to a man spraying down a fence with a hose and another man watching on the side.\", \" The man continues to spray down the hose while another watches on the side and pans back to the camera man.\"]}, \"v_ZsqjU0X3mxY\": {\"duration\": 229.62, \"timestamps\": [[0, 14.93], [14.93, 27.55], [27.55, 43.63], [45.92, 47.07], [47.07, 50.52], [51.67, 90.7], [90.7, 110.22], [110.22, 227.33], [112.52, 229.62], [228.47, 229.62]], \"sentences\": [\"A pale young woman in a white dress is standing in the forest with long curly brownish-reddish hair and begins skipping.\", \"Then she is shown with a black shirt and long hair and begins talking in a dark staircase.\", \"She stands up,flips her pony tail and the camera pans her outfit and she has on a black shirt and blue shorts and begins walking up the stairs.\", \"Next,she goes into a room and begins talking to a woman with a black shirt and blonde hair.\", \"The lady holds up a white index card with sketches of two heads.\", \"The lady washes her hairs and begins cutting it with a pair of shears to a very short length.\", \"The girl sits in the chair and begins shaking her ear length hair and holding up the cut off hair in her hands.\", \"The hairdresser begins blow drying her hair,cutting it and styling it.\", \"She continues to get her hair down while her hair is panned over on the counter and the floor.\", \"Then she sits on a bench and smiles at the thought of her short hair cut.\"]}, \"v_1XicledQXng\": {\"duration\": 121.05, \"timestamps\": [[1.21, 33.29], [36.31, 89.57], [70.81, 114.99]], \"sentences\": [\"A person is seen walking into frame in front of a large closet.\", \" The woman then lets her hair down along her back.\", \" She brushes her hair continuously and ends by walking out of frame.\"]}, \"v_2Tm_2wgv2Zs\": {\"duration\": 70.17, \"timestamps\": [[0, 19.3], [17.54, 57.19], [57.19, 68.42]], \"sentences\": [\"A small group of people are seen standing before a fooseball table grabbing onto poles.\", \" The men play against one another while taking breaks to get a drink and speak with team mates.\", \" The people shake hands with one another and hug friends and family.\"]}, \"v_r4QPhlrqqP4\": {\"duration\": 141.42000000000002, \"timestamps\": [[0.71, 139.3], [15.56, 38.18], [19.8, 99.7], [100.41, 140.01]], \"sentences\": [\"A woman stands and talks  in a garden next to a bed of herbs and plants  and a wheelbarrow filled with mulch.\", \"  A herb garden appears with a woman standing next to it in a large garden next to a wheelbarrow filled with mulch.\", \"  The woman begins to talk to the camera while gesturing to the flowerbed and the mulch, before eventually picking up a handful of the mulch.\", \"  The woman continues talking before the scene morphs into video of a small red potatoes on the ground pulled up by the root.\"]}, \"v_dbLtukGqkhI\": {\"duration\": 64.62, \"timestamps\": [[0, 64.62], [12.28, 15.51], [18.74, 56.54], [45.56, 64.3]], \"sentences\": [\"People are standing on a roof top looking up.\", \" A woman in a green shirt eats chips.\", \" A man in a blue shirt is pointing to the sky and moving his hand in circles.\", \" There are many kites in the sky around them.\"]}, \"v_ATBbNtNlBnY\": {\"duration\": 156.77, \"timestamps\": [[0, 25.08], [26.65, 47.82], [54.87, 80.74], [81.52, 109.74], [108.96, 119.15], [124.63, 138.74], [149.72, 156.77]], \"sentences\": [\"We see a man using an electric sander to sharpen a variety of things.\", \" He uses a caliper and ruler on a item.\", \" We see him sharpening more things and beveling a tool.\", \" The man adjust some screws and moves an arm.\", \" We see the item comes with a 7 year warranty.\", \" The man adds an oil to the item, and we see the packaging.\", \" We see the ending credits for the video.\"]}, \"v_smJtFktW640\": {\"duration\": 207.31, \"timestamps\": [[0, 199.02], [66.34, 199.02]], \"sentences\": [\"A small group of women are seen dancing together doing choreography with one leading the group in the front.\", \" the woman continue dancing with one another and ends with a zumba logo shown in the background.\"]}, \"v_epZjMuRRXLo\": {\"duration\": 155.25, \"timestamps\": [[0, 74.52], [48.13, 155.25]], \"sentences\": [\"A woman is seen standing in front of a mirror and begins jumping rope while smiling at the camera.\", \" She continues jumping over and over again swinging her arms and ends by stopping to smile at the camera.\"]}, \"v_jaRSbVCkxlU\": {\"duration\": 237.24, \"timestamps\": [[0, 11.86], [11.86, 37.96], [37.96, 58.12], [58.12, 99.64], [99.64, 237.24]], \"sentences\": [\"woman is standing in a kitchen in front of a camera holding a door.\", \" woman cuts the door and spread chocolate cream on he top and put another layer of cake.\", \" the woman spread the chocolate cream again in the top and put another layer of cake and spread the cream on top and at sides.\", \" woman flatten the cream and varnish it.\", \" thw woman grabs white fondant and kneads it and then cover the cake with it with her hands and cuts the remaining, adds ornamens on top.\"]}, \"v_kW_2ihjROgw\": {\"duration\": 117.38, \"timestamps\": [[0, 12.32], [13.5, 62.8], [64.56, 117.38]], \"sentences\": [\"A baby is sitting at a tiny table outside.\", \" He is smoking a cigarette and waving at adults.\", \" He high fives a woman, then continues to smoke.\"]}, \"v_zkR_t6p3lto\": {\"duration\": 193.49, \"timestamps\": [[0, 94.81], [85.14, 187.69]], \"sentences\": [\"A person's skis are shown close up as they move continuously down a snowy hill moving quickly past trees.\", \" The person continues moving down the trail at a fast pace and meeting up with others at the bottom.\"]}, \"v_UcQ63-sQ9bI\": {\"duration\": 225.77, \"timestamps\": [[0, 48.54], [46.28, 149.01], [128.69, 206.58]], \"sentences\": [\"A close up of a guitar is seen followed by a person strumming the back.\", \" The person moves their hands up and down the neck of the guitar while moving it to play.\", \" The man continues to play the instrument and stops in the end.\"]}, \"v_Vshvpb9eecg\": {\"duration\": 108.97, \"timestamps\": [[0, 38.69], [36.51, 78.46], [82.27, 108.97]], \"sentences\": [\"A woman is seen walking into frame while speaking to the camera and putting her face in cream.\", \" The woman then rubs the cream on her face while still speaking to the camera.\", \" The camera pans around the kitchen while the woman continues to rub her hands in the lotion.\"]}, \"v_SA2GomtZkvE\": {\"duration\": 161.54, \"timestamps\": [[0, 161.54], [13.73, 161.54], [19.39, 161.54], [88.04, 161.54]], \"sentences\": [\"A man plays an accordion in the street.\", \" He is wearing a hoodie.\", \" He is sitting next to his bike.\", \" A man walks in the background.\"]}, \"v_Y5qDKbTkCaY\": {\"duration\": 107.21000000000001, \"timestamps\": [[0, 8.04], [8.58, 98.63], [99.17, 107.21]], \"sentences\": [\"The words \\\"The Shot Put\\\" appear on screen over an athlete.\", \" \\\"The Shot Put Introduction\\\" appears on screen followed by several athletes performing the sport.\", \" The words \\\"Thank you for Watching\\\" appears on the screen.\"]}, \"v_CqAJxW84FkU\": {\"duration\": 220.31, \"timestamps\": [[0, 64.99], [66.09, 201.58], [202.69, 220.31]], \"sentences\": [\"A man in a green shirt and green hat is holding a large knife.\", \" He starts cutting a piece of wood with the knife.\", \"He cuts the piece of wood in half.\"]}, \"v_rsJUOsr1u3o\": {\"duration\": 98.36, \"timestamps\": [[0, 98.36], [16.23, 20.66], [22.62, 27.54], [42.79, 48.2], [57.54, 63.44], [75.25, 80.66]], \"sentences\": [\"A man is standing over an oven cooking something in a pan.\", \" He bends down to check the flame.\", \" He tosses the pan a few times.\", \" He is adding seasonings to the pan.\", \" He pours a liquid into the pan.\", \" He shakes the pan again.\"]}, \"v_Cq7Myyfbtn0\": {\"duration\": 117.4, \"timestamps\": [[0, 53.42], [53.42, 103.9], [103.31, 117.4]], \"sentences\": [\"A person helps another person walk on stilts on the sidewalk.\", \" The person walks by themselves.\", \" The man sits down in a chair.\"]}, \"v_CXb3Ce7s6G0\": {\"duration\": 125.59, \"timestamps\": [[0, 10.67], [11.93, 54.63], [58.4, 99.21], [93.56, 111.77], [112.4, 125.59]], \"sentences\": [\"Several screens are shown of bright orange lettering on a black background.\", \" A man and a woman are standing upright in a pool, and the man is showing the woman swimming techniques.\", \" The woman begins to emulate the man's actions, moving her arms and dipping her head under the water.\", \" The man shows her how to swim outward by doing so himself.\", \" The woman watches as he swims away.\"]}, \"v_RRIGf87R6jc\": {\"duration\": 113.8, \"timestamps\": [[0, 47.23], [53.49, 73.97], [92.18, 113.8]], \"sentences\": [\"A girl is pouring ingredients into a bowl and mixing them together.\", \" She uses a cookie cutter to cut shapes out of the dough.\", \" She is dipping the dough into a white glaze.\"]}, \"v_12sz7NMvyfI\": {\"duration\": 68.62, \"timestamps\": [[0, 68.61], [17.15, 68.61]], \"sentences\": [\"A person is blowing leaves in the back of their yard.\", \"  The kid is having some trouble but is generally doing an ok job.\"]}, \"v_XSNenkxgryQ\": {\"duration\": 188.18, \"timestamps\": [[0, 7.53], [8.47, 130.78], [31.05, 171.24], [87.5, 116.67], [175, 188.18]], \"sentences\": [\"A news anchor presents a story behind a desk in a large newsroom.\", \" People are seen smoking regular cigarettes and electric cigarettes.\", \" The news anchor talks with a guest in the newsroom.\", \" Professionals are seen in there offices discussing the subject.\", \" Text is seen against a red background with a website and information.\"]}, \"v_YIb8sArOPww\": {\"duration\": 79.67, \"timestamps\": [[0, 78.47], [0, 19.52], [19.52, 78.47]], \"sentences\": [\"A gymnast performs a balance beam gymnastic routine in a professional sports event with an audience in the bleachers.\", \"  A girl stands in front of a balance beam in a gymnast outfit and jumps on the beam where she begins to execute a gymnastic routine on the balance beam.\", \"  The girl stands on the beam and performs back flips on the beam before landing one final back flip off of the beam where she lands on a mat and exits the area in front of an audience in bleachers.\"]}, \"v_GA8XzZTETPE\": {\"duration\": 158.29, \"timestamps\": [[3.17, 133.76], [50.65, 65.69], [86.27, 99.72], [136.13, 140.88]], \"sentences\": [\"A ballerina starts dancing on a stage.\", \" She does several spins on the stage.\", \" She does a leap on the stage.\", \" She lays down on the stage.\"]}, \"v_-t_Zhm1b0FI\": {\"duration\": 139.55, \"timestamps\": [[0, 25.12], [23.72, 42.56], [43.26, 139.55]], \"sentences\": [\"People playing instruments are on the stage.\", \" A man in a suit walks on the stage and starts talking.\", \" The band keeps playing in the background.\"]}, \"v_65rZgGe7Zr4\": {\"duration\": 26.36, \"timestamps\": [[0, 10.28], [10.01, 26.36]], \"sentences\": [\"man is walking in a backyard shake the tree holds a broom and sweep the dry leaves on the floor.\", \" man go for a dustpan and a bag and pick up the leaves from the floor.\"]}, \"v_g5-CU3qfSWY\": {\"duration\": 70.71000000000001, \"timestamps\": [[1.41, 24.75], [23.69, 53.03], [45.96, 68.23]], \"sentences\": [\"A person is seen running down a long track with a pole and attempting to push herself forward.\", \" Her run is shown again in slow motion as another person attempts to push over the pole and fails.\", \" More clips are shown of people attempting to jump over the wall and not making it high enough.\"]}, \"v_dLLvpM-gB8Q\": {\"duration\": 166.44, \"timestamps\": [[0, 43.27], [44.94, 57.42], [67.41, 113.18]], \"sentences\": [\"Two kids are playing in the back of a truck.\", \" People are standing around a yellow ice cream truck.\", \" Two kids are sitting down on a sidewalk eating ice cream.\"]}, \"v_Vq2mQvMp_c4\": {\"duration\": 109.37, \"timestamps\": [[0, 14.22], [14.76, 37.73], [37.73, 100.07], [100.62, 108.82]], \"sentences\": [\"Someone is riding a horse across a grassy field and comes upon other people on horseback.\", \" We soon see the riders are part of a group, and we follow the group across a parking lot and into a stream.\", \" Celebratory cheers are heard as the group is enjoying riding across the stream.\", \" Then we see a couple of riders, one of them standing up in his saddle.\"]}, \"v_aQHGZzqZLxs\": {\"duration\": 120.37, \"timestamps\": [[0, 109.54], [0, 6.62], [8.43, 22.27], [21.07, 42.73], [45.14, 76.44], [93.89, 101.71]], \"sentences\": [\"A man is demonstrating how to kindle a small pit of fire.\", \" First, the man shows off the flint he has for the fire.\", \" He then puts the flint into a pile of wood.\", \" The man then lights the fire, which slowly spreads throughout the wood.\", \" The man then pokes the fire with pieces of flat wood to spread the fire.\", \" The man then shakes the twigs on the wood to further spread the fire.\"]}, \"v_mOVPZhGyUrs\": {\"duration\": 67.87, \"timestamps\": [[3.73, 9.16], [9.16, 11.88], [11.88, 31.22], [31.22, 43.78], [43.78, 46.83], [46.83, 55.99], [55.99, 64.82], [64.82, 67.87]], \"sentences\": [\"There are two men playing ping pong in a basement.\", \" One of the players is wearing a black shirt and the other is a blue shirt.\", \" There is a mattress leaning against the basement wall.\", \" The players continue playing a smooth rally.\", \" Then the person in black misses the shot.\", \" They continue playing ping pong for a few more rounds.\", \" The person in blue hits the ball in the net.\", \" They continue playing more till the person in blue drops the ball on the ground.\"]}, \"v_FZix27qFZTc\": {\"duration\": 20.74, \"timestamps\": [[4.46, 5.7], [5.7, 17]], \"sentences\": [\"A man paints a hose on front a fence in a backyard.\", \" The man paint the fence from up to down.\"]}, \"v_m22vOf2fw1M\": {\"duration\": 139.19, \"timestamps\": [[0, 103.7], [103.7, 139.19]], \"sentences\": [\"A person trims the top of a pink hedge using a hedge trimmer.\", \" Then, the man trim the sides of the pink hedge on front a house.\"]}, \"v_-KbDXeEoQ1E\": {\"duration\": 207.1, \"timestamps\": [[0, 55.92], [46.6, 182.25], [187.42, 207.1]], \"sentences\": [\"Various pictures of shown of a girl and a horse and leads into a person riding a horse over jumps.\", \" More pictures are shown off the horse and person together followed by more clips of the girl riding the horse.\", \" In the end the horse is seen tied up to the stables and the girl wanders around him.\"]}, \"v_p0_buoe9M7I\": {\"duration\": 24.75, \"timestamps\": [[0, 8.54], [8.66, 16.83], [16.58, 24.75]], \"sentences\": [\"A young woman is sitting on a red lounge chair as a tattoo artist begins doing his job.\", \"As he applies the needle,the girl fringes in her face but stays as still as possible.\", \"The tattoo is finally finished and the man dabs the rest of the tattoo on her foot.\"]}, \"v_LNK_yYs6UOA\": {\"duration\": 14.13, \"timestamps\": [[0, 1.98], [2.12, 5.23], [5.58, 14.13]], \"sentences\": [\"A man walks into a circle on a field.\", \" He spins while holding a disc.\", \" He lets go of the disc, letting it fly through the air.\"]}, \"v_r9X01daYa5o\": {\"duration\": 35.66, \"timestamps\": [[0, 35.66], [0.18, 35.66], [0.71, 35.66]], \"sentences\": [\"A man is sitting down in a chair.\", \" He is wearing a mask on his face.\", \" He is welding something in front of him.\"]}, \"v_FuaxI8PkeHQ\": {\"duration\": 24.94, \"timestamps\": [[0.12, 12.84], [11.1, 23.44]], \"sentences\": [\"A young boy is seen sitting in a chair looking away with others walking by.\", \" The man then takes a sip of a drink and makes a funny face.\"]}, \"v_F6cNWYlfUs8\": {\"duration\": 47.11, \"timestamps\": [[0, 18.14], [17.43, 47.11]], \"sentences\": [\"A large group of people are seen walking in the snow with several being interviewed on the camera.\", \" They're seen inside a shop sharpening skiis and laughing with one another.\"]}, \"v_Zm32ORZly10\": {\"duration\": 74.77, \"timestamps\": [[0, 20.56], [20.19, 49.35], [49.35, 74.77]], \"sentences\": [\"A small group of people are seen standing around with one woman holding signs and leads into people playing tug of war.\", \" Several shots of the games are shown as well as a girl dancing and kids warming up.\", \" the kids play more tug of a war and a close up of a person's face is seen in slow motion.\"]}, \"v_Tko7eefi1BI\": {\"duration\": 62.72, \"timestamps\": [[0, 62.72], [0, 24.46]], \"sentences\": [\"A woman is sitting outside on a white chair playing at accordion.\", \" There is a music stand sitting in front of her.\"]}, \"v_5wchVLM0f5Y\": {\"duration\": 40.91, \"timestamps\": [[0, 28.84], [28.03, 40.91]], \"sentences\": [\"A man is seen solving a rubix cube was another sits beside him and watches.\", \" He solves the puzzle and puts it down on the table then smiles at the camera.\"]}, \"v_TdAfqkmTrf0\": {\"duration\": 115.89, \"timestamps\": [[0, 115.89], [67.22, 69.53]], \"sentences\": [\"Players are running around playing lacrosse on a field of grass.\", \" The audience is watching and applauding for them.\"]}, \"v_W4aPcuQSxFI\": {\"duration\": 111.53, \"timestamps\": [[1.67, 39.03], [30.11, 84.2], [75.28, 107.06]], \"sentences\": [\"A close up of a sink is shown followed by a person turning on a faucet and grabbing the camera.\", \" She faces a table and sprays down a rag followed by pushing the rag along the floor.\", \" The woman continues cleaning the floor and walks back to the camera.\"]}, \"v_ZpuZEui-Bu0\": {\"duration\": 151.16, \"timestamps\": [[13.6, 50.64], [50.64, 80.12], [80.12, 108.84], [108.84, 139.82], [139.82, 149.65]], \"sentences\": [\"There are two little girls standing in an indoor court learning to play squash.\", \" They are standing with their racquets and trying to hit the ball against the wall.\", \" They attempt to hit the ball but end up brushing it on the floor.\", \" They run around the court trying to catch the ball with their racquets.\", \" they run around smiling with their oversized racquets and run to follow the ball around the court.\"]}, \"v_VDX1IQnUMgo\": {\"duration\": 52.15, \"timestamps\": [[0, 20.08], [20.34, 35.99], [36.77, 52.15]], \"sentences\": [\"A news anchor is standing behind a table with papers on it talking as a man is picture swimming on the television screen behind him.\", \"After,a group of people are in a pool playing a game of water polo making goals.\", \"A coach is then shown in a hallway as the people come back and continue playing the game before a football game then shows.\"]}, \"v_55ziFpzx5oc\": {\"duration\": 68.71000000000001, \"timestamps\": [[0, 68.71], [5.15, 56.68], [48.1, 68.71]], \"sentences\": [\"Four young women and a man are on the stage, while one girl is playing the guitar.\", \" The lady in yellow began singing, then the lady in pink shirt.\", \" When the girls are finished singing the crowd cheered.\"]}, \"v_PzNpPDd-VWE\": {\"duration\": 99.1, \"timestamps\": [[0, 6.44], [6.44, 73.83], [30.23, 55], [55, 72.84], [74.33, 84.73], [85.72, 95.14], [95.14, 99.1]], \"sentences\": [\"We see a man fall in the water in reverse.\", \" We watch people walk on a slackline over a body of water.\", \" We see a series of falls.\", \"   A man makes it across.\", \" We see a man climb a tree and get a coconut.\", \" The pan puts a tap in the coconut and pours it in his mouth as he lays on the ground.\", \" The man sits up and smiles.\"]}, \"v_AS1nLh3xfxI\": {\"duration\": 31.39, \"timestamps\": [[0, 10.67], [10.2, 22.13], [21.66, 30.45]], \"sentences\": [\"A close up of boots are seen as well as person digging a hole.\", \" The person lays out dirt and cut a hole into it while also putting a plant inside.\", \" The person waters the plant and ends by laying out more dirt.\"]}, \"v_ZNsX4KYJlVQ\": {\"duration\": 10.57, \"timestamps\": [[0.21, 1.58], [1.53, 3.49], [3.43, 6.55], [6.5, 10.57]], \"sentences\": [\"A boy is standing at the counter facing backwards from the dart board.\", \" His mom is standing beside him and he is getting ready to throw his dart.\", \" He throws it and completely misses the dart board all together.\", \" He hits the top of the wall and he goes over to reach for it and take it out.\"]}, \"v_8wNsOZHTsj0\": {\"duration\": 70.08, \"timestamps\": [[0, 22.78], [24.88, 55.01], [64.12, 70.08]], \"sentences\": [\"A man splits logs into using an ax in a grassy yard while his wife retrieves the pieces.\", \" A man splits logs in the yard by himself.\", \" The man sets his ax blade into the log and takes a brake.\"]}, \"v_r4kC4AHDIH8\": {\"duration\": 206.15, \"timestamps\": [[0, 91.74], [54.63, 56.69], [56.69, 169.04], [169.04, 193.78]], \"sentences\": [\"People on a river bank get on inflated boats and raft in a river with choppy waters.\", \" Two men are on a red canoe.\", \" A group of rafters go down the river while, also people in canoes raft.\", \" The rafters arrive to calm waters, then a team celebrates a victory.\"]}, \"v_wv2baWJtSoc\": {\"duration\": 34.46, \"timestamps\": [[0, 34.46], [17.92, 34.46]], \"sentences\": [\"A man in a blue shirt is sitting down holding a bar on an exercise machine.\", \" He pushes off and uses the exercise machine.\"]}, \"v_4Mo-IYfNKBo\": {\"duration\": 37.57, \"timestamps\": [[0, 37.57], [0, 11.83], [11.83, 19.54], [20.48, 37.57]], \"sentences\": [\"We see a man mopping a floor under women's feet.\", \"  The middle lady uses her foot to move the mop.\", \" The left lady then moves the mop with her foot.\", \" The middle lady does it again then the man finishes mopping the floor.\"]}, \"v_L6BxxvCbwpQ\": {\"duration\": 41.43, \"timestamps\": [[0, 30.45], [0, 25.89], [26.3, 27.13], [8.08, 41.43]], \"sentences\": [\"A guy is crawling on the ground.\", \" The guy is using a box knife to cut the carpet.\", \" The guy looks behind him.\", \" There are a lot of papers on the wall.\"]}, \"v_4gQpW3zR-Aw\": {\"duration\": 116.03, \"timestamps\": [[0, 32.49], [26.69, 81.8], [78.9, 116.03]], \"sentences\": [\"A group of men are seen leading a camel around while a person rides on top of the camel.\", \" One man leads the camera around with the person on top and people recording them from the sides.\", \" The man lays the camel down for the person to climb off and the rider smiles and waves to the camera.\"]}, \"v_F03y7m3Nwuw\": {\"duration\": 50.03, \"timestamps\": [[0, 18.51], [17.26, 30.52], [30.02, 50.04]], \"sentences\": [\"A German man is throwing a discus in competition.\", \"  He drops the discus and then walks away.\", \"  A replay is shown and he looks sad.\"]}, \"v_eCzDH6PdtlE\": {\"duration\": 95.69, \"timestamps\": [[0, 85.64], [86.12, 95.69]], \"sentences\": [\"A gymnast performs on a pommel horse on front a crowd in the bleachers.\", \" Then, she flips backwards and lands stand on the foam mat.\"]}, \"v_YufXlj-WpEw\": {\"duration\": 144.73, \"timestamps\": [[2.89, 78.88], [77.43, 143.28]], \"sentences\": [\"The video leads into several shots of people running down a long track and jumping into a sand pit.\", \" More women are shown running down the track and landing into the sand pit as others watch.\"]}, \"v_wDlbcTFI90o\": {\"duration\": 94.58, \"timestamps\": [[10.4, 42.09], [42.09, 62.89], [62.89, 83.7], [83.7, 90.79]], \"sentences\": [\"The video is a tutorial about installing deck tiles.\", \" There's a contractor working on a deck.\", \" He begins installing the interlocking wooden tiles on a concrete deck surface.\", \" He covers the entire deck with the wooden tiles to evenly cover the surface area.\"]}, \"v_HbXNXmCRFh4\": {\"duration\": 4.06, \"timestamps\": [[0, 0.65], [0.65, 2.68], [2.68, 4.06]], \"sentences\": [\"An older man is in a pool and he's holding a yellow ball in front of his face.\", \" The man throws it to a dog who is balancing on a blue floating device and the dog hits it back to the man using his nose.\", \" The man throws it back to the dog and the dog hits it back and then he slips off the floating device and splashes into the water.\"]}, \"v_QbhMOqg9Tmg\": {\"duration\": 226.93, \"timestamps\": [[0, 200.83], [200.83, 226.93]], \"sentences\": [\"women are insisde a bathtub shving her legs with ceam and water.\", \"  women are laughing in front of a mirror.\"]}, \"v_T3rh5gQVFKA\": {\"duration\": 196.19, \"timestamps\": [[0, 8.83], [19.62, 33.35], [34.33, 190.3], [83.38, 96.13], [95.15, 107.9], [113.79, 121.64], [155.97, 162.83], [164.8, 196.19]], \"sentences\": [\"We see a wolf fall in the title screen.\", \" We see the landscape of a small town.\", \" A boy rides down a street on a skateboard.\", \" Four boys on skateboards ride past.\", \" We see a boy almost fall two times.\", \" We See the board on the curb.\", \" A group of boys walking up a hill.\", \" The end credits play and we see a boy on a bus.\"]}, \"v_n9MONPwq7x0\": {\"duration\": 170.41, \"timestamps\": [[15.34, 28.12], [28.12, 31.53], [31.53, 46.01], [46.01, 95.43], [95.43, 163.6], [163.6, 170.41]], \"sentences\": [\"A man dressed in a black sweatshirt and black shorts, along with another person dressed in white athletic wear are standing in a tennis court near the net.\", \" They are both holding tennis rackets.\", \" The person in black is giving a tutorial on how to return a serve in tennis.\", \" There is a player demonstrating the serve as the coach explains.\", \" Then the person in white begins taking about more about the tennis serve and how to play effectively.\", \" The player continues to demonstrate the serves.\"]}, \"v_SsAmEJvdpyU\": {\"duration\": 82.85, \"timestamps\": [[0, 82.85], [73.32, 74.98], [77.88, 79.54]], \"sentences\": [\"People are doing tricks on roller blades.\", \" A man jumps down a flight of stairs on roller blades.\", \" A man in a white shirt jumps down a flight of stairs.\"]}, \"v_smGijLg8Cho\": {\"duration\": 124.27, \"timestamps\": [[0, 2.49], [2.49, 11.18], [11.18, 18.64], [18.64, 51.57], [51.57, 52.82], [52.82, 62.14], [62.14, 68.35], [68.35, 88.23], [88.23, 95.69], [95.69, 124.27]], \"sentences\": [\"Three men are set up to play darts.\", \" The man in the peach shirts throws a dart at the dart board.\", \" A man in blue hits a cue ball.\", \" The man in peach lines back up and shoots three darts at the dart board and removes them.\", \" He lines back up in front of the board and throws one more dart.\", \" More people gather around as two men remove the darts from the dartboards and walk back a distance.\", \" Both men throw a dart at the dartboard.\", \" The man in peach walks to remove the darts.\", \" A woman stands by the dart board and smiles.\", \" The man in peach throws three darts at the board again and smiles as he removes them.\"]}, \"v_eqWQOAjF4-k\": {\"duration\": 23.66, \"timestamps\": [[0, 2.96], [2.96, 19.17], [20.59, 23.66]], \"sentences\": [\"We see a little boy standing on a platform on a jungle gym.\", \" The boy climbs across on the monkey bars.\", \" The boy reaches the other platform and turns and smiles for the camera.\"]}, \"v_xlCOq0ryx-Y\": {\"duration\": 180.79, \"timestamps\": [[0, 178.08], [127.46, 132.88], [137.4, 142.82], [175.37, 180.79]], \"sentences\": [\"Two men sit in a room smoking cigarettes one playing guitar the other on keyboard.\", \" The man on guitar on the right takes his cigarette out of his mouth and puts it down.\", \" The man on the left takes his cigarette out and wipes mouth on his arm.\", \" They finish and the man on the left wipes his mouth and the right takes his cigarette out and blows smoke.\"]}, \"v_XbSQ_7vh7yc\": {\"duration\": 215.06, \"timestamps\": [[0, 200.01], [122.59, 215.06]], \"sentences\": [\"An older woman and young child are seen washing dishes  in a sink and speaking to one another.\", \" The people play in the water and the girl blows bubbles while the woman washes dishes.\"]}, \"v_548xC74c6MQ\": {\"duration\": 14.37, \"timestamps\": [[2.37, 12.43], [12.43, 13.94]], \"sentences\": [\"A colorful hexagonal shaped kite is flying high in the air.\", \" The clear blue skies and the bright sun shinning make the kite look very colorful and radiant.\"]}, \"v_0WVkoTBmhA0\": {\"duration\": 153.9, \"timestamps\": [[1.54, 72.33], [75.41, 152.36]], \"sentences\": [\"A cartoon animation video is shown with people wandering around and rockets being shot.\", \" Two men fight robots of evil and ends with a to be continued.\"]}, \"v_xmb7j1e0wts\": {\"duration\": 199.69, \"timestamps\": [[0, 70.89], [59.91, 155.76], [149.77, 199.69]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her laying out various food items and mixing ingredients into a blender.\", \" She pours more out more flours into the mixer and shows several shots of cookies being made.\", \" She lays out more ingredients, pours of spoonfuls of dough onto a pan, and then breaks apart a cooked cookie.\"]}, \"v_ouEWLFNLLos\": {\"duration\": 69.24, \"timestamps\": [[0, 4.5], [4.5, 7.96], [7.96, 21.12], [21.12, 69.24]], \"sentences\": [\"An elderly man is walking and  a large white bird is biting at his right foot.\", \"The man turns around and points and scolds the bird and continues to walk.\", \"The man then bends down near some stairs, wipes the outside of the building and the bird continues to attack the man.\", \" The man scolds the bird again and motions to the small dog that's also there that the dog and bird should interact but the bird keeps messing with the man and the dog stays out of it.\"]}, \"v_FRX4LTw9650\": {\"duration\": 162.87, \"timestamps\": [[0.81, 43.97], [39.09, 107.49], [94.46, 160.42]], \"sentences\": [\"Various women are seen looking at the camera followed by a man speaking to the camera.\", \" Several tools are shown that lea into one woman brushing out her hair.\", \" Another woman brushes her hair and leads into more clips of women smiling and looking to the camera.\"]}, \"v_4llkVfMzsN4\": {\"duration\": 200.37, \"timestamps\": [[6.01, 200.37], [60.11, 62.11], [99.18, 108.2]], \"sentences\": [\"Two people are playing wall ball in a room.\", \" A boy falls down diving for the ball.\", \" A person walks in front of the room.\"]}, \"v_k1WnO7UeBJ8\": {\"duration\": 82.08, \"timestamps\": [[0, 19.29], [18.88, 39.4], [39.81, 82.08]], \"sentences\": [\"Two people are shown walking around with a rug over their shoulders and walk inside a building.\", \" They open the rug then pull out measuring tape and hammer down the rug.\", \" They then put plaster all over the floor and present the finished product of the rug by shaking hands with the owners and smiling for pictures.\"]}, \"v_6iBXtHrJ4gc\": {\"duration\": 145.47, \"timestamps\": [[0, 52.37], [42.19, 109.83], [103.29, 143.29]], \"sentences\": [\"An older man is seen walking towards the camera and points to various plants around him.\", \" The camera pans around the area with all the plants growing and shows the man holding a tool.\", \" The man then uses the tool along a hedge of bushes while looking back and smiling to the camera.\"]}, \"v_ajYA9O6R-AY\": {\"duration\": 52.77, \"timestamps\": [[1.58, 27.18], [24.01, 50.92]], \"sentences\": [\"A young girl is seen speaking to the camera standing before a game of hop scotch drawn out.\", \" The girl then throws a rock and  hops to end while grabbing it and hopping back.\"]}, \"v_qVy_WDpLHRM\": {\"duration\": 176.87, \"timestamps\": [[13.27, 16.8], [19.46, 87.55], [87.55, 116.73], [145.03, 156.53]], \"sentences\": [\"A woman is standing behind a vacuum.\", \" She begins vacuuming the carpet.\", \" She takes off the hose attachment and cleans a lamp and the stairs.\", \" She empties the filter of the vacuum into the trash can.\"]}, \"v_g_KbloQigw8\": {\"duration\": 17.9, \"timestamps\": [[0, 6.89], [5.19, 12.35], [10.74, 16.92]], \"sentences\": [\"Text is shown across the screen followed by a man kneeling down in dirt.\", \" The man using a torch to light a spark on the machine in front of him.\", \" He stops to look back at the camera.\"]}, \"v_IkjulgI7gzg\": {\"duration\": 143.18, \"timestamps\": [[13.6, 40.8], [40.8, 82.33], [82.33, 125.28], [125.28, 133.87]], \"sentences\": [\"There are two body builders dressed in a black shirts demonstrating weightlifting in a gym.\", \" One of the bodybuilders is lifting the weights while the other is explaining the correct method of doing it.\", \" He bodybuilder lifts the weight gradually at first and then swiftly picks himself up to raise the weights.\", \" The other bodybuilder continues to explain the weightlifting strategies that is used professionally.\"]}, \"v_Z-syOvXCc20\": {\"duration\": 29.86, \"timestamps\": [[0, 11.2], [10.3, 29.86]], \"sentences\": [\"A young child is seen sitting on a swing set when an older man steps behind him and pushes.\", \" The boy moves back and fourth on the swing and leads to the boy jumping off and the man looking surprised.\"]}, \"v_WttP_X-aCEA\": {\"duration\": 23.67, \"timestamps\": [[0, 3.43], [3.67, 8.17], [8.05, 23.67]], \"sentences\": [\"A man is shown outside in a kid park with grey shorts on a a pair of black and white Puma sneakers.\", \"He then pulls him self up on top of the monkey bars and stands on top of them and goes into a hand stand.\", \"Once he has got his balance,he travels across is and jumps off one he has gotten to the end.\"]}, \"v_oHDeMg1ZFp8\": {\"duration\": 111.55, \"timestamps\": [[0, 13.39], [13.94, 22.87], [22.87, 111.55]], \"sentences\": [\"A man is talking and standing in a kitchen wearing a white robe and a lot of colorful vegetables in front of him.\", \" Now the vegetables are gone and the man is now scooping something from a little bowl onto a white plate that is sitting on a wooden cutting board.\", \" The man then begins to break the contents up with his utensil and then his hands until they are into separate pieces.\"]}, \"v_knY08LrNyHg\": {\"duration\": 224.75, \"timestamps\": [[0, 75.29], [74.17, 176.43], [192.16, 224.75]], \"sentences\": [\"Several shots are shown of people pushing sail boats into the water as well as riding them around one another.\", \" People are seen riding around on jet skis following the boat as well as close ups of the boats being shown as well as underwater.\", \" More people are seen riding on smaller boats and end by dragging a boat back to shore.\"]}, \"v_5QZpCDyXNx4\": {\"duration\": 88.47, \"timestamps\": [[0, 88.47], [13.27, 13.71], [13.27, 47.33], [47.77, 51.31]], \"sentences\": [\"Kids are riding bicycles around a dirt track.\", \" One of them tips over and falls.\", \" They continue to go around the track.\", \" Another person crashes and falls.\"]}, \"v_RcDEaYPwI6I\": {\"duration\": 120.98, \"timestamps\": [[0, 4.23], [4.23, 15.73], [16.94, 28.43], [22.38, 26.01], [27.82, 42.95], [35.69, 57.46], [58.67, 113.72]], \"sentences\": [\"A group of dancers in red outfits dance on stage.\", \" A group of cheerleaders in pink stand on a field while a group in white walk up to great the coach.\", \" A solo woman in a red blouse discusses the events in a room with lit up letters in the background.\", \" Both teams of women line up on the field together.\", \" Both groups of women dance together in unison with the coach leading in front.\", \" The women in pink uniforms dance on the field.\", \" The women in white uniforms dance on the field.\"]}, \"v_Uot4XZns2b4\": {\"duration\": 236.26, \"timestamps\": [[0, 2.36], [2.36, 41.35], [41.35, 66.15], [67.34, 205.55], [206.73, 233.9], [233.9, 236.26]], \"sentences\": [\"We see an opening title screen.\", \" We see a man prying shingles up around a pipe.\", \" The man then pushes the pipe down and nails it.\", \" The man add tar to the pipe base and nails shingles down around it.\", \" The man then puts tar under the top shingle.\", \" We see the house and a truck parked in the driveway.\"]}, \"v_9PvtW0Uvnl0\": {\"duration\": 64.18, \"timestamps\": [[0.96, 15.08], [16.05, 44.61], [42.68, 62.58]], \"sentences\": [\"A camera pans away from a road and shows a person's feet moving around.\", \" Several shots are shown of people tying their shoes, hitting a button, and checking a watch.\", \" People are then seen running down the road one at a time followed by many more following.\"]}, \"v_v7o9uSu9AVI\": {\"duration\": 202.78, \"timestamps\": [[0, 14.19], [15.21, 20.28], [20.28, 27.38], [27.38, 34.47], [34.47, 41.57], [42.58, 50.7], [51.71, 60.83], [59.82, 65.9], [65.9, 76.04], [76.04, 86.18], [87.2, 96.32], [97.33, 106.46], [107.47, 117.61], [118.63, 127.75], [128.77, 137.89], [138.9, 143.97], [144.99, 154.11], [155.13, 166.28], [167.29, 174.39], [175.4, 183.52]], \"sentences\": [\"A strong man is lifting his legs up and down across parallel bars.\", \" He begins to do shrugs on the bars.\", \" He starts to walk his body across with his hands.\", \" He circles around on the edge of the bars with his arms.\", \" He swings his legs and leaps with his arms across the parallel bars.\", \" A man does dips on the parallel bars.\", \" Another man does dips down to his elbows on the parallel bars.\", \" He then starts to do dips down to his armpits on the parallel bars called Russian Dips, while keeping his legs in the air.\", \" A man does dips with his body in front of the bar and legs swoops underneath the bar.\", \" He then does pushups on the parallel bars, by going down, pushing forward, then up.\", \" He begins to do pushups, with his knees tucked, with the parallel bars.\", \" A different man does leg dips, swings his legs up and around each parallel bar and pushes forward across the parallel bars.\", \" When he reaches the end, he tucks in his knees and lifts his body up and perpendicular to the bars.\", \"He then does knee and leg raises.\", \" A different man keeps his legs straight out and moves them across each bar.\", \" A different man brings his legs straight up into a V-shape on the bars.\", \" He then rests his elbows on the bars and swings his body perpendicular to the bars then parallel to the bars.\", \" He begins to do shoulder stands on the bars.\", \" He switches to doing a head stand and holds.\", \" A different man starts to swing his body from under the bars and presses himself up and over the bars.\"]}, \"v_Tbo7I63oIms\": {\"duration\": 191.01, \"timestamps\": [[6.69, 52.53], [51.57, 106.01], [106.96, 139.44], [140.39, 186.23]], \"sentences\": [\"A person ski over a ski rail and spins in the air, then land stand on the snow.\", \" The person ski over a ramp and fly in the air very high.\", \"  Then, the person ski over the rails of a home turning ans spinning and then land on the street.\", \" Then, a person ski over the fence of a walking bridge and also ski on the stairs.\"]}, \"v_3j52keiQuiw\": {\"duration\": 99.71000000000001, \"timestamps\": [[0, 17.95], [20.94, 61.32], [63.31, 99.71]], \"sentences\": [\"A gymnast mounts a low beam in front of a crowd.\", \" She does bends, handsprings, and forward and back flips on the beam.\", \" She dismounts proudly, lifting her arms into the air.\"]}, \"v_2OEa00knM9E\": {\"duration\": 51.5, \"timestamps\": [[0, 8.76], [9.53, 29.61], [30.39, 49.7]], \"sentences\": [\"A man is seen sitting on a horse with a rope in his hands.\", \" He then rides in on a horse and ropes up a calf with the rope.\", \" Several people are shown riding in and roping up cattle while others watch on the side.\"]}, \"v_6h-WE-0eBlA\": {\"duration\": 194.72, \"timestamps\": [[0, 17.53], [23.37, 116.83], [119.75, 194.72]], \"sentences\": [\"A man is leaning over a pool table, hitting the ball with his cue.\", \" A woman in a pink bikini spins her cue as she waits her turn.\", \" Then she takes a shot at the ball, knocking them into the holes.\"]}, \"v_1RJgvoFfbkI\": {\"duration\": 96.74000000000001, \"timestamps\": [[0, 19.35], [19.35, 45.47], [45.47, 69.65], [69.65, 96.74]], \"sentences\": [\"Two men are in the middle of the court fighting one another.\", \" They are practicing their moves while others stand by and watch.\", \" It's like a culture practiced by many who actually enjoy it and think it is a fun sport.\", \" They take it very seriously, some fight and some enjoy watching.\"]}, \"v_O2Vd29Slt7g\": {\"duration\": 70.59, \"timestamps\": [[0.35, 60.35], [0.35, 3.18], [3.53, 34.59], [35.29, 67.41]], \"sentences\": [\"A young man on the roof of a tall building, with the backdrop of a city skyline, performs a series of dance moves, gymnastics moves, tumbling moves and high kicks.\", \"  The man begins with his back to the camera and stands facing the city skyline from the roof top.\", \"  The man then begins a series of high kicks, handless back flips, and breakdance moves.\", \"  The dance moves end with more high kicks, head stands and semi martial art moves, as the camera circles the man, as the man finishes, and walks, with back to camera, to the edge of the roof again.\"]}, \"v_hRIXXCe0Hi0\": {\"duration\": 133.04, \"timestamps\": [[0, 9.98], [10.64, 21.95], [25.28, 114.42], [29.93, 31.93], [43.9, 45.9], [101.78, 103.77], [115.08, 121.73], [122.4, 133.04]], \"sentences\": [\"We see a man talking to a camera.\", \" We see shots of men and  a crowd of people.\", \" The men play rock paper scissors.\", \" A lady in the crowd jumps up and down.\", \" We see the man high five each other.\", \" We see a lady in front a person in costume.\", \" The man in red raises his hands in triumph.\", \" Ladies bring a big check to the man in red.\"]}, \"v_poERMbR_nY4\": {\"duration\": 186.62, \"timestamps\": [[3.73, 45.72], [45.72, 80.25], [80.25, 105.44], [106.37, 142.76]], \"sentences\": [\"People slides on inflatable sleds down the hill.\", \" People take turns to sled down the hills.\", \" Then people get together to sled on group.\", \" Also, people sled on on a line down the hill.\"]}, \"v_q0P0EvJOfRQ\": {\"duration\": 68.22, \"timestamps\": [[1.02, 39.91], [24.9, 66.52]], \"sentences\": [\"A woman is seen dancing in the street placing an instrument while others watch on the side.\", \" The woman continues to play the instrument while moving her leg up and down and the people clap for her on the side.\"]}, \"v_zacXKdNZHrI\": {\"duration\": 157.34, \"timestamps\": [[0, 40.12], [36.97, 114.86], [103.06, 154.98]], \"sentences\": [\"A text intro leads into a boy sitting on a stool holding an accordion.\", \" The boy then begins playing the instrument while looking away from the camera.\", \" The boy continues to play while looking around the room and pulling the accordion around.\"]}, \"v_Zg7J_rLXbuk\": {\"duration\": 99.71000000000001, \"timestamps\": [[0, 5.48], [5.48, 95.72], [10.47, 14.46], [22.43, 28.42], [90.23, 95.22], [95.72, 99.71]], \"sentences\": [\"A girl lifts her arm and prepares to mount the balance beam in an arena.\", \" The girl get on and performs a routine on the balance beam.\", \" The girl is laying on the beam and does a flip to the standing position.\", \" The girl flips across the beam.\", \" The girl runs flips and dismounts the beam.\", \" The crowd cheers and claps for the girl as she lifts her hands.\"]}, \"v_4taBobzpYNU\": {\"duration\": 120.12, \"timestamps\": [[0, 85.88], [86.48, 120.12]], \"sentences\": [\"A woman is seen speaking to the camera holding a sharpening tool in her hands.\", \" She then demonstrates how to properly cut the knife and placing the object down while speaking.\"]}, \"v_e0-lO2jb8vo\": {\"duration\": 188.76, \"timestamps\": [[0, 9.44], [9.44, 33.98], [33.98, 37.75], [37.75, 51.91], [51.91, 68.9], [68.9, 73.61], [73.61, 91.55], [91.55, 97.21], [97.21, 150.06], [150.06, 155.72], [156.67, 188.76]], \"sentences\": [\"A baton twirler is standing on the gym floor.\", \"  She begins her routine.\", \"  She tosses the baton in the air.\", \"  She does flips and twists.\", \"  She continues to twirl the baton and dance.\", \"  She drops her baton and goes after it.\", \" She is twirling, dancing and flipping again.\", \" She drops the baton again.\", \"  She now has two batons and is twirling and dancing and throwing them in the air.\", \"  She dropped it a third time.\", \"  She picked it up and added a third baton and finished her routine.\"]}, \"v_z9MMLl1isUk\": {\"duration\": 41.05, \"timestamps\": [[0, 36.74], [3.08, 36.74], [36.74, 41.05]], \"sentences\": [\"old man is holding a green pole hitting a pi\\u00f1ata in the middle of a room.\", \" little kids are dancin and jumpin behind the man.\", \"man givs the pole to a kid and other kids stands behind him.\"]}, \"v_ynpvos7UFZo\": {\"duration\": 200.62, \"timestamps\": [[0, 176.55], [11.03, 16.05], [13.04, 18.06], [16.05, 28.09], [24.07, 37.11], [34.11, 65.2], [59.18, 107.33], [102.32, 133.41], [121.38, 179.56], [175.54, 200.62]], \"sentences\": [\"There are some people knitting with yarn and knitting needles at a cultural center.\", \" A rack of knitted hats and sweaters is stacked up against the wall.\", \" A finished gray sweater with black embroidery is shown.\", \" A women representing The Daily news channel is talking about the sweater and then she wears it.\", \" There are people sitting and knitting with yarn and needles.\", \" There's a man named John George talking about his knitting experience in the class.\", \" He along with his other fellow knitters demonstrates how they knit.\", \" Another person named Charles Henry is talking about his knitting experience at the cultural center.\", \" Several people are seen at the cultural center sitting together and knitting as one of the organizers talks.\", \" The news reporter wears the gray sweater and looks very happy in it.\"]}, \"v_J4WbF-bJ1T8\": {\"duration\": 177.01, \"timestamps\": [[1.77, 17.7], [17.7, 53.99], [61.95, 115.05], [115.94, 177.01]], \"sentences\": [\"Two people are fencing in a polka dot walled room, while dressed in fencing gear and fencing masks including a fencing weapon.\", \"  An animated graphic populates displaying the physique of the two fencers in a grid pattern with the two animated figures exhibiting some fence/weapon movement.\", \" A cut away appears of several people interviewing and talking to the camera in front of an extreme fencing sign along with still images of people preparing to fence.\", \"  The two people dressed in fencing outfits begin to fence in a demonstration.\"]}, \"v_sx4zAnVDV9Y\": {\"duration\": 150.23, \"timestamps\": [[0, 18.78], [19.53, 34.55], [35.3, 86.38], [87.89, 150.23]], \"sentences\": [\"A CBS NEWS anchor reports on a story.\", \" A marching band appears on a large field performing.\", \" A student of the marching band gives an interview along with the marching band instructor.\", \" The marching band practices their performance.\"]}, \"v_uXcCES4BsQ0\": {\"duration\": 50.57, \"timestamps\": [[0, 16.69], [16.44, 43.75], [44.51, 50.57]], \"sentences\": [\"Two people are seen sitting behind a counter when one moves back and fourth and prepares himself.\", \" The man then solves a rubix cube while a timer is going and he puts a blindfold over his eyes and a person puts paper in front.\", \" He solves the sube and then slams his hands down on the table.\"]}, \"v_i0jy3fjw8xQ\": {\"duration\": 206.84, \"timestamps\": [[0, 14.48], [23.79, 70.33], [74.46, 206.84]], \"sentences\": [\"A group of people are standing on an outdoor bridge.\", \" They are putting equipment around each other's bodies to protect them.\", \" The person jumps off the side of the bridge on a bungee cord, swinging over the water below.\"]}, \"v_VIQG4W0vYxw\": {\"duration\": 148.12, \"timestamps\": [[0, 14.81], [15.55, 148.12]], \"sentences\": [\"a lot of people are gathered in a square.\", \" people start to run in the street and by the bay.\"]}, \"v_bWquUXC2Te8\": {\"duration\": 62.76, \"timestamps\": [[0, 14.75], [10.36, 37.03], [33.58, 58.37]], \"sentences\": [\"A man is seen looking to the camera wile holding a razor.\", \" He begins shaving his face while looking into the mirror.\", \" He points to the razor and continues shaving his face and looking to the camera.\"]}, \"v_smfBAiFujmE\": {\"duration\": 28.24, \"timestamps\": [[0, 12.57], [12, 28.24]], \"sentences\": [\"A person is seen sitting in the water with a pair of skis attached to his feet.\", \" The man then gets up on the skis and rides along the water behind a boat.\"]}, \"v_5eM2Hcvj6R8\": {\"duration\": 189.41, \"timestamps\": [[0, 8.52], [9.47, 21.78], [22.73, 118.38], [121.22, 160.05], [165.73, 189.41]], \"sentences\": [\"A view of a wide berth of trees in a forest is shown.\", \" A woman walks out holding a hula hoop.\", \" She begins using the hoop seductively while dancing.\", \" She spins, flips, and does cartwheels while using the hoop.\", \" She finishes her performance with a frozen, upward staring pose.\"]}, \"v_pRGlbeqRfM0\": {\"duration\": 206.5, \"timestamps\": [[0, 206.5], [0, 121.83], [33.04, 40.27], [121.83, 206.5]], \"sentences\": [\"man weaing a green shirt is standing next to a little girl.\", \" girl wearing glasses is talking to the camera.\", \" the man and the girl are drinking from a white cup.\", \" the girl holds the drink in her mouth and spit it on the grass and the man do the same.\"]}, \"v_tSk1GWyofaU\": {\"duration\": 37.13, \"timestamps\": [[0, 14.29], [14.29, 28.22], [28.59, 37.13]], \"sentences\": [\"A girl walks to the end of a diving board and lifts her hands.\", \" The girl jumps on the diving board to prepare herself.\", \" The girl then does a backwards flipping dive into the pool.\"]}, \"v_78je-JBAqxQ\": {\"duration\": 118.52000000000001, \"timestamps\": [[0, 12.44], [19.55, 91.85], [98.96, 118.52]], \"sentences\": [\"A man is blowing a whislet in front of a room filled with people.\", \" They are playing beer pong with several red solo cups, drinking in between plays.\", \" A blonde woman watches as a man wins the game, hugging the woman next to him.\"]}, \"v_qPZwXF1Xcpw\": {\"duration\": 109.45, \"timestamps\": [[0, 15.87], [15.87, 28.46], [29, 36.12], [36.67, 59.1], [60.2, 109.45]], \"sentences\": [\"The camera pans over a grass field surrounded by a track, with people doing indistinct things in the background.\", \" A man is shown engaging in shot put.\", \" Judges measure the man's throw.\", \" The audience is shown clapping as the man receives congratulations from people nearby.\", \" A replay of the throw is shown.\"]}, \"v_X1vyuNazaIc\": {\"duration\": 13.45, \"timestamps\": [[0, 7.46], [7.66, 13.45]], \"sentences\": [\"Two children in pajamas hang Christmas ornaments  from a tree.\", \" A fake bat bursts out of the Christmas tree and scares the children.\"]}, \"v_ThWgMXhkS2E\": {\"duration\": 85.87, \"timestamps\": [[0, 9.87], [9.87, 33.06], [33.49, 69.55], [69.98, 85.87]], \"sentences\": [\"A man standing outside of a building window cleaning with a large squeegee.\", \" He goes over the door window and then uses another gadget after to wipe down the soap.\", \" He starts all  the way at the top making sure to get in the corners of the window.\", \" The window looks very clean and nice once he is down doing all of that.\"]}, \"v_IhuwmiSPx0w\": {\"duration\": 183.65, \"timestamps\": [[0, 27.55], [28.47, 88.15], [88.15, 128.55], [128.55, 176.3], [177.22, 183.65]], \"sentences\": [\"A group of cheerleaders perform on stage while people watch.\", \" Then, the cheerleaders make a tower and then jump, then they do cartwheels.\", \" Two cheerleaders get up in a tower and then flips and fall on the arms of people.\", \" The girls do again a tower and then spin and jump.\", \" The cheerleaders raise the girls up and then flip down, then they continue performing.\"]}, \"v__dFzOHyZSNk\": {\"duration\": 201.18, \"timestamps\": [[22.13, 37.22], [41.24, 46.27], [78.46, 113.67], [116.68, 117.69]], \"sentences\": [\"Two men are long boarding down a hill.\", \" He stops and puts his foot down on the ground.\", \" He is standing on his board upside down.\", \" A man in a green shirt is sitting on the ground with his long board in front of him.\"]}, \"v_uqd8A4iJ6Bo\": {\"duration\": 114.08, \"timestamps\": [[10.84, 108.38], [51.34, 108.38], [81, 108.38], [87.27, 108.38], [96.97, 108.38]], \"sentences\": [\"The person is shown mixing the ingredients.\", \" The person rolls the dough and cuts it into little pieces and flattens the tiny balls out using their hands.\", \" The person uses a fork to put lines in the dough.\", \" Then the person puts the cookies on a baking sheet in a pan and bakes them for 15 minutes.\", \" Then takes the cookies out when they're done.\"]}, \"v_rLlm6h0Nfvo\": {\"duration\": 216.9, \"timestamps\": [[0, 118.21], [118.21, 164.84], [164.84, 198.46]], \"sentences\": [\"A person flips and throw to the air a hula ring, then the woman pass the hula ring through her body.\", \" After, the woman pass the hula ring around her waist fast.\", \" Then, the woman does an exercise with her feet and body.\"]}, \"v_MwkRK7A46P4\": {\"duration\": 187.58, \"timestamps\": [[0, 57.21], [57.21, 135.06], [135.06, 187.58]], \"sentences\": [\"Several news logos are shown and then a male reporter shows up talking behind his desk.\", \"The camera then flips to a woman and she begins doing interviews with men who were playing a game of soccer.\", \"Many quarters are being played and after the goals are made,the players start to jump on each other's back and jump for joy and show their happiness.\"]}, \"v_VzR7cskYnng\": {\"duration\": 127.8, \"timestamps\": [[0, 127.8], [81.15, 120.13], [58.15, 61.35], [65.82, 127.8]], \"sentences\": [\"Two men perform kick box in a room while a man supervise the moves.\", \" A person leans on the wall behind the men.\", \" A little child pass on front the men.\", \" A woman walks and stand on front the men.\"]}, \"v_1hTqfvjis9E\": {\"duration\": 39.92, \"timestamps\": [[0, 2.79], [3.79, 4.99], [5.99, 25.55], [26.74, 39.92]], \"sentences\": [\"A large man is standing on a circular dome in a field.\", \" He holds a steel ball on a rope as he talks.\", \" He then shows how to stand before swinging the ball around his head in circles.\", \" He lets go, and the ball flies far across the field as he walks away.\"]}, \"v_Nn4sVR3__DQ\": {\"duration\": 39.13, \"timestamps\": [[0, 5.28], [5.28, 12.32], [12.32, 26.41], [26.41, 39.13]], \"sentences\": [\"A mom is sitting at the top of a slide with her little baby.\", \" She is contemplating going down for a while.\", \" She finally slides down it with baby.\", \" When they reach the bottom she lets him go and he starts to walk around.\"]}, \"v_YXl4cEB7E3Y\": {\"duration\": 19.2, \"timestamps\": [[0, 4.42], [4.8, 7.3], [7.87, 19.2]], \"sentences\": [\"A boy is standing in the middle of a parking lot.\", \" He is wearing a hat with a feather in it and sunglasses.\", \" He is playing a bagpipe.\"]}, \"v_E3KLk-55yC0\": {\"duration\": 61.35, \"timestamps\": [[0, 52.45], [10.74, 61.35]], \"sentences\": [\"A man is seen kicking a soccer ball on his feet and gradually passing it to a wall.\", \" The man continues kicking the ball off of his foot and against the wall while the camera captures him.\"]}, \"v_g0jF_Gh8c8g\": {\"duration\": 183.81, \"timestamps\": [[0, 183.81], [114.88, 183.81]], \"sentences\": [\"men are standing on ice fishing in a large ice region.\", \" man grabbed a fish from the ice and lay on the floor.\"]}, \"v_Wg0xG-eRTho\": {\"duration\": 159.61, \"timestamps\": [[0, 3.99], [3.99, 27.13], [27.13, 111.73], [111.73, 131.68], [131.68, 159.61]], \"sentences\": [\"A standing pair of legs appear and the words \\\"Summer Leg Routine\\\" are displayed on the screen.\", \" The legs are now bent with the knee up from the ground and the girl rubs the mango scrub all over her legs, then wipes the excess off with a towel.\", \" On the upper right hand of the screen a small video plays and shows a VEET product while the girl takes two VEET wax strips and puts them on her leg, then removes them in the order they were put on.\", \" The girl then takes another VEET product which turns out to be wiping strips and wipes her legs down, then takes a towel to her legs.\", \" After she's done wiping her legs she takes Nivea lotion and rubs them all over her legs, stands up and then shows her legs to the camera at various angles.\"]}, \"v_pJEOK1DbTfU\": {\"duration\": 16.11, \"timestamps\": [[0, 1.85], [2.42, 11.19], [11.6, 16.11]], \"sentences\": [\"A gymnast is doing flips and handsprings on a high bar.\", \" She goes forward and backward several times.\", \" The screen stops as she goes to the top of the beam.\"]}, \"v_ipYVfTYZze8\": {\"duration\": 180.09, \"timestamps\": [[2.7, 108.06], [80.14, 176.49]], \"sentences\": [\"A camera pans around a large snowy hill as well as people sitting on a ski lift and riding around a mountain.\", \" The people do flips and tricks as well as follow one another down a hill and catch each other skiing from several angles.\"]}, \"v_BMa9v2uZBp8\": {\"duration\": 199.53, \"timestamps\": [[0, 19.95], [19.95, 118.72], [119.72, 123.71], [129.69, 199.53]], \"sentences\": [\"A man in a coat is pulling a board up a hill of snow.\", \" He starts snowboarding down the hill.\", \" The man lifts the goggles off of his face and smiles.\", \" People are snowboarding down a hill together.\"]}, \"v_Ar3eaYtLlKI\": {\"duration\": 56.45, \"timestamps\": [[0, 5.93], [7.34, 56.45], [47.42, 49.11]], \"sentences\": [\"A man puts dog treats into another man's hand.\", \" The man is walking a dog down the sidewalk.\", \" Someone else is walking behind them.\"]}, \"v_INmaUkmVK24\": {\"duration\": 22.01, \"timestamps\": [[0.33, 11.23], [8.48, 21.35]], \"sentences\": [\"A man is seen kneeling down with a razor and looking up towards the camera.\", \" The man shaves off part of his leg and holds up an object while walking away.\"]}, \"v_E0DbrJVJUho\": {\"duration\": 184.62, \"timestamps\": [[0, 5.54], [5.54, 10.15], [10.15, 14.77], [14.77, 21.23], [21.23, 42.46], [42.46, 147.7], [147.7, 165.24], [165.24, 180.01], [180.01, 184.62]], \"sentences\": [\"A black screen with a white banner at the bottom has various information that include a website, state, phone number and logo.\", \"A white screen follows and it includes a logo, name of the products and indicates that this is an \\\"INSTRUCTIONAL VIDEO\\\".\", \"Another white screen appears and a content list appears and there 1-5.\", \"On the next white screen a cardboard box is shown and then it begins to show the many different contents that come in the box, along with the names of them next to it.\", \"A woman is now standing in a hallway as she puts together her cleaning tool by screwing the top portion onto her pole and applying a cloth to the end, then she straps her spray bottle onto her hip.\", \" The woman then begins to spray the cloth on the cleaning tool and starts cleaning various different areas in the office including windows, elevator doors, TVs and changing out the clothes in between to suit the surface she is working on.\", \"The woman is now seen at a double glass door as she's now holding a cloth in her hand to clean the doors and other surfaces.\", \"The woman is then shown putting the different clothes into the washer and then hanging her cleaning tool up on the wall.\", \" A black screen appears and it includes the same white banner as it did in the very beginning.\"]}, \"v_bTC_MdhURLg\": {\"duration\": 68.34, \"timestamps\": [[0, 20.5], [20.16, 53.3], [53.3, 68.34]], \"sentences\": [\"A man is rubbing his hands in a frantic manner as he stands next to a female.\", \"The camera shifts and you can see he is in a casino playing a game of Black Jack.\", \"Once the dealer has flipped over all of the cards,the two are shown again talking and smiling.\"]}, \"v_HoQQlRzybmA\": {\"duration\": 217.2, \"timestamps\": [[1.09, 38.01], [41.27, 42.35], [89.05, 91.22]], \"sentences\": [\"A large choppy waterfall is shown.\", \" A man is laying on a slack line over the water.\", \" A person is playing the guitar sitting on a rock.\"]}, \"v_m4ef0fCA2WU\": {\"duration\": 31.72, \"timestamps\": [[0, 30.77], [2.85, 4.92], [0.48, 7.3], [7.45, 10.78], [7.45, 10.94], [11.1, 30.93]], \"sentences\": [\"Children of different ages are playing on a playground.\", \" A couple of women are in the playground area talking.\", \"  A young woman holding a baby walks to a swing and puts the baby in the swing.\", \" She then walks in front of the baby and sits in the adult seat attached to the baby swing.\", \" Another woman walks past with a few kids.\", \" The woman on the swing swings the baby while talking to him and making faces at him.\"]}, \"v_C_bwHYiX-Vw\": {\"duration\": 216.62, \"timestamps\": [[0, 216.62], [45.49, 191.71]], \"sentences\": [\"A man shows how to change a tube in a tire.\", \"  He takes the old tube out, puts the new one in, then pumps it up.\"]}, \"v_mrT7FqQ0lCs\": {\"duration\": 136.66, \"timestamps\": [[1.37, 49.88], [39.63, 107.96], [94.3, 133.93]], \"sentences\": [\"Several shots of text are shown followed by a person walking into frame.\", \" The person then walks in and out of frame performing various dance moves on the ground.\", \" The person continues moving around on the ground and demonstrating how to perform moves.\"]}, \"v_Vbkq1ldn3A8\": {\"duration\": 72.35, \"timestamps\": [[0, 8.68], [8.32, 54.99], [55.35, 72.35]], \"sentences\": [\"People are seen sitting at a table while a man stands beside them and taking a puff from a hookah.\", \" He hands the hose to a girl sitting who takes a few rips and the man is shown speaking to the camera.\", \" the girls hands the hose to other one sitting while she takes a few hits and passes it back to the other person.\"]}, \"v_UAAk2SxqSvs\": {\"duration\": 218.0, \"timestamps\": [[2.18, 212.55], [23.98, 197.29], [199.47, 216.91]], \"sentences\": [\"Two boys skateboard through the streets at different times wearing helmets.\", \"  A skateboarder in a blue t-shirt and black helmet skateboards through streets bordering countrysides and residential neighborhoods.\", \"  A skateboarder wearing all black falls off of the skateboard onto the paved street, gets up and walks off.\"]}, \"v_XbvlEwmvLko\": {\"duration\": 72.35, \"timestamps\": [[0, 14.83], [9.41, 72.35]], \"sentences\": [\"A man is seen with a rope in his mouth and rides in on a horse immediately roping a calf.\", \" He throws the calf down and ties him up, followed by several other men performing the same trick at different speeds.\"]}, \"v_kzBTJEMgoj0\": {\"duration\": 176.98, \"timestamps\": [[0, 30.09], [30.09, 62.83], [62.83, 176.98], [99.11, 176.98], [116.81, 176.98]], \"sentences\": [\"A woman cleans a cafeteria floor with a mop while occasionally talking to the camera.\", \" The woman walks to and cleans a different part of the cafeteria floor.\", \" The woman plunges the mop head into a bucket.\", \" A number of people walk by in the background.\", \" The woman talks to the camera.\"]}, \"v_vrWcBuRPDBw\": {\"duration\": 132.77, \"timestamps\": [[9.96, 13.94], [13.94, 132.77], [49.13, 55.76], [56.43, 130.12], [125.47, 130.12]], \"sentences\": [\"A man is standing next a brown horse.\", \" People are riding horses along a dirt trail.\", \"The horses are getting a drink of water.\", \" They continue walking along the trail on the horses.\", \" A picture of a brown house is shown.\"]}, \"v__ENXbB6aaa4\": {\"duration\": 136.37, \"timestamps\": [[0, 20.46], [20.46, 113.19], [114.55, 136.37]], \"sentences\": [\"An intro begins for DX sports and shows two men skating down a road.\", \" The continue riding down the road while the camera follows them close behind down the winding road.\", \" The men eventually get to a car and their ride down the long road.\"]}, \"v_3mymOHc5-Gs\": {\"duration\": 83.31, \"timestamps\": [[2.92, 20], [29.99, 37.91], [37.91, 49.99], [49.99, 78.32]], \"sentences\": [\"A man shows a boot and shining tools.\", \" Then, the man cleans the shoe with a cloth.\", \" After, the man points the tip of the shoe and applies black paint and shows insoles .\", \" Then, the man polish the shoes using a cream, after spray the shoes.\"]}, \"v_fGA7nlbGmHU\": {\"duration\": 69.13, \"timestamps\": [[0, 61.18], [9.33, 61.18], [61.87, 69.13]], \"sentences\": [\"A kid is sitting behind a drum set.\", \" He starts playing the drums in front of him.\", \" He stands up and waves at the crowd.\"]}, \"v_jfIcmcE320Q\": {\"duration\": 25.66, \"timestamps\": [[0, 25.66], [0, 1.41], [0.13, 25.66]], \"sentences\": [\"man is playing with a ball making balance with a lacrosse pole.\", \" little kid grab the ball from the floor with the pole.\", \" kid is playing with a ball in a green grassy field.\"]}, \"v__Mz7KEe_mz0\": {\"duration\": 179.21, \"timestamps\": [[0, 10.75], [10.75, 86.92], [86.92, 179.21]], \"sentences\": [\"A forested area is seen and young men walk up the street.\", \" Groups of skateboarders race each other down a forested road and are pulled by trolley cars back to the top.\", \" Skateboarders ride down a forested street one after the other doing skids and hard turns as friends watch along the side.\"]}, \"v_GQ1eaxmDlzQ\": {\"duration\": 106.67, \"timestamps\": [[0.53, 38.4], [27.2, 84.27], [77.87, 104.01]], \"sentences\": [\"A large group of people are seen sitting around a stage and leads into a man and woman hosting.\", \" The hosts lead into a large group of people on the stage performing a dance routine with one another.\", \" The people continue dancing around one another and end with the judges clapping and the host leading them off.\"]}, \"v_zWA4Fb4fVmE\": {\"duration\": 60.77, \"timestamps\": [[0, 60.77], [0, 58.94], [26.74, 31.9]], \"sentences\": [\"little kid is playing saxophone in front of a wall.\", \" people are passing in front of the kid.\", \" old man kneels and put some coins in he hat of the kid.\"]}, \"v_U9Ofeof4rlA\": {\"duration\": 22.04, \"timestamps\": [[0, 5.51], [5.51, 14.32], [14.32, 21.26]], \"sentences\": [\"An athletic man is seen standing in a circle with his arms out to the side.\", \" The man then begins swinging around an object around and around.\", \" The man continues to spin and ends by throwing it off into the distance.\"]}, \"v_IJV7CwRhFvw\": {\"duration\": 168.44, \"timestamps\": [[0, 168.44], [0, 9.26], [17.69, 19.37]], \"sentences\": [\"There are three people playing racquetball on the enclosed court and the view is from the person wearing the camera.\", \"The camera person picks the ball up with racquet balances it on the racquet, rolls it off and then hits to the wall.\", \"The view changes to the door and there are two men standing at the door waiting to hit the ball.\"]}, \"v_TVbPV7X49tw\": {\"duration\": 94.0, \"timestamps\": [[0, 7.52], [7.05, 12.22], [12.22, 92.12], [21.15, 23.97], [30.55, 38.54], [39.95, 41.36], [49.35, 50.29], [61.1, 65.33], [64.39, 67.21], [75.67, 79.9], [81.31, 84.6], [91.18, 94]], \"sentences\": [\"We see flashing images of motorcycle riding.\", \" We see a man talk standing high above a city.\", \" We then see motorcycle stunts.\", \" A bike jumps a group of people in a plaza.\", \" We see four bikes jump a ramp one after another.\", \" We see a man in red talking.\", \" A man jumps off his bike.\", \" A man kisses a woman on his bike.\", \" We see boy is talking.\", \" A bike is kicking up smoke.\", \" A man puts his arm in the air.\", \" We see a bike smash a bottle stop.\"]}, \"v_1VAugQRO05g\": {\"duration\": 110.09, \"timestamps\": [[0, 25.87], [25.32, 52.84], [52.29, 92.47], [92.47, 110.09]], \"sentences\": [\"A black and white video is shown of a young marching band walking down the street in a parade.\", \"Several people in the band walk by then a close up of a boy playing the trumpet is shown and he is highlighted.\", \"The video continues and the majorette girls begin dancing.\", \"Now they are at a stand still and playing without marching as the little kids begin to watch them.\"]}, \"v_x0tjkH_zfXA\": {\"duration\": 45.07, \"timestamps\": [[0, 13.75], [14.2, 39.66], [39.66, 45.07]], \"sentences\": [\"Two boys are raking leaves in a yard using large green and red rakes.\", \" A dog continuously runs through the leaves, messing them up.\", \" The boys laugh and keep trying to rake the leaves.\"]}, \"v_KlxUgvLHP7M\": {\"duration\": 169.0, \"timestamps\": [[0, 82.81], [65.91, 169]], \"sentences\": [\"A large stage is seen that transitions to various angles of people performing jump roping tricks on a stage in slow motion.\", \" More shots are shown of various people performing incredible jump roping skills and ends with one group holding their arms up.\"]}, \"v_AA1wvSZ4Mno\": {\"duration\": 78.93, \"timestamps\": [[0, 20.13], [17.76, 55.64], [56.83, 74.58]], \"sentences\": [\"A camera pans all around a yard and shows two dogs on leashes.\", \" The dogs move with the person as cars move in and out of frame.\", \" The camera pans around the sky in the end.\"]}, \"v_P-6ITEpg0mw\": {\"duration\": 27.15, \"timestamps\": [[0, 2.44], [2.58, 27.14]], \"sentences\": [\"1 The opening of the video.\", \" 2 a girl does a lot of flips on the bars.\"]}, \"v_WMx0-3GZGUI\": {\"duration\": 182.51, \"timestamps\": [[0, 182.51], [6.39, 34.68], [35.59, 40.15], [49.28, 71.18], [89.43, 129.58], [89.43, 170.65], [130.49, 165.17]], \"sentences\": [\"A little girl is in a kitchen talking.\", \" The girl mixes several things from small bowls in a bigger bowl.\", \"  An adult helps the girl spray her baking pans.\", \" The girl puts her mixture into the pans and puts them in an easy bake oven.\", \" The girl then removes what she made from the oven.\", \" A younger boy watches while eating a cupcake.\", \"  The young girls cuts the desert she made and eats it.\"]}, \"v_cfKMu6aeMwU\": {\"duration\": 124.32, \"timestamps\": [[1.24, 65.89], [32.94, 113.75]], \"sentences\": [\"A man is seen speaking to the camera while a woman works out on a machine in front of him and adjusts the settings.\", \" The man continues moving on the machine showing off it's different settings while the man continues to speak to the camera.\"]}, \"v_x1Mb7cN8WgU\": {\"duration\": 233.48, \"timestamps\": [[0, 147.09], [149.43, 233.48]], \"sentences\": [\"A person is hammering nails into a roof.\", \" She slide tiles onto the roof and nail them into place.\"]}, \"v_LTmYxVYBa90\": {\"duration\": 35.55, \"timestamps\": [[0, 9.95], [9.95, 22.4], [22.4, 31.11], [31.11, 35.55]], \"sentences\": [\"A group of people are sitting on camels in the sand beside a hill.\", \" A man reaches for the chain on the camels mouth as the camel sits.\", \" The man in light blue assists the man in dark blue to untie.\", \" The second camel holding the next couple starts to sit on the ground.\"]}, \"v_vB2qMaP_JaI\": {\"duration\": 217.78, \"timestamps\": [[0, 77.31], [113.25, 217.78]], \"sentences\": [\"A woman braids her hair slowly.\", \"  She then ties the braids together and ties the end together.\"]}, \"v_K68iNoSnZMg\": {\"duration\": 77.9, \"timestamps\": [[0, 27.66], [27.66, 40.51], [40.9, 74.79]], \"sentences\": [\"A woman and a boy peel potatoes on front a trash can.\", \" Then, the boy puts the potato and the peeler over the counter, but again he takes it.\", \" The woman finishes to cut the potato.\"]}, \"v_sJFgo9H6zNo\": {\"duration\": 139.04, \"timestamps\": [[3.48, 17.38], [3.48, 13.9], [9.04, 18.77], [19.47, 27.11], [27.11, 38.24], [33.37, 45.19], [45.88, 51.45], [65.35, 78.56], [84.82, 98.02], [111.93, 130.7]], \"sentences\": [\"A little boy playing on a jungle gym.\", \" He is climbing up a set of stairs.\", \" Now is sliding fast down a slide.\", \" Another boy is shown playing in the grass.\", \" Now the first boy is being picked up by a woman.\", \" Now he is going to go down the slide once again.\", \" The boy likes playing with a large wheel on the playground.\", \" Once again he goes down the slide, but with dad right behind him.\", \" He goes down the slide a 4th time but with another little boy.\", \" He goes down the slide several more times.\"]}, \"v_ciIaZrpHqgs\": {\"duration\": 173.78, \"timestamps\": [[0, 6.95], [7.82, 110.35], [110.35, 173.78]], \"sentences\": [\"A group of teams are shown doing various sports events involving snow.\", \"The camera then shows handicap individuals playing a game where they are sitting in a wheelchair pushing puck like objects with handles.\", \"A man is then shown and begins talking describing the game that is taking place.\"]}, \"v_HwYZEZYgeBI\": {\"duration\": 72.53999999999999, \"timestamps\": [[0, 16.32], [15.96, 35.18], [35.54, 51.14], [50.05, 72.54]], \"sentences\": [\"An intro leads into several tools laid out on a table and a women walking in an removing a plant.\", \" The woman then pulls out a rag and wipes off the table.\", \" She tend holds the rag again, sprays down the table, and wipes down the table in a proper motion.\", \" She is then shown again dusting over various areas and places the plant back on the table and pushing the chairs in.\"]}, \"v_ekn9AFX2XX8\": {\"duration\": 67.06, \"timestamps\": [[7.71, 24.81], [38.89, 41.58], [41.91, 44.59], [44.93, 47.61], [47.95, 50.63], [50.97, 53.65]], \"sentences\": [\"A woman sits by the beach applying sunscreen to the top of her back.\", \" An air balloon flies through the air.\", \" A dj is seen spinning a disc.\", \" A woman walks her suitcase.\", \" Some graphic cars crash into each other.\", \" High orange flames are seen.\"]}, \"v_U7OZcgwLRcc\": {\"duration\": 199.64, \"timestamps\": [[0, 15.97], [23.96, 132.76], [137.75, 199.64]], \"sentences\": [\"Three different women are shown in succession.\", \" Each woman is seated, playing drums and cymbals.\", \" They are  billed as the top three female drummers in the world as they play continuously.\"]}, \"v_C3BBG_9Vo48\": {\"duration\": 210.14, \"timestamps\": [[0, 3.15], [5.25, 7.35], [5.25, 10.51], [22.06, 24.17], [22.06, 37.83], [22.06, 129.24], [22.06, 142.9]], \"sentences\": [\"This video shows how to make a microwaved cake using Ganache frosting.\", \" First the woman adds 1 cup of sugar to 1/4 cup of vegetable oil and she puts it in a mixing bowl.\", \" then she mixes the sugar until it dissolves and he adds 1 whole cup of milk along with two teaspoons of lemon juice.\", \"  Next she adds 1 teaspoon of vanilla extract and she mixes everything up, then she adds 1 1/4 cups of all purpose flour along with 1/4 cup of unsweetened cocoa powder and salt.\", \" Then she adds baking powder and baking soda and she whisks it until smooth.\", \" Finally, she pours the mix into a microwavable safe dish and it's done.\", \" She then let's the cake stand for 15 minutes.\"]}, \"v_xZEl3yh0Cos\": {\"duration\": 159.15, \"timestamps\": [[0, 13.53], [18.3, 56.5], [58.89, 135.28], [135.28, 159.15]], \"sentences\": [\"A man wearing sunglasses is talking to the camera.\", \" He displays how to cut the strings on the front of a bike, and remove part of the tire.\", \" He replaces the part, explaining how the process is done as he goes.\", \" He then speaks to the camera further.\"]}, \"v_WzAGE-xKDpw\": {\"duration\": 56.12, \"timestamps\": [[0, 56.12], [4.49, 16.56], [9.82, 30.87], [27.5, 56.12]], \"sentences\": [\"A man sitting on an exercise equipment.\", \" He put his feet on a holder, and put the strap on.\", \" He pull the bar, at the same time pushed his legs.\", \" He repeat the process several times.\"]}, \"v_6KXVjADefBY\": {\"duration\": 133.42, \"timestamps\": [[24.68, 30.69], [36.69, 74.05], [79.39, 128.09]], \"sentences\": [\"A person vacuum dirt from a couch with a hand vacuum with a brush nozzle.\", \" Then, the person vacuum the crevasses of the couch using a crevasse noodle Then, the person uses a handle held vacuum to clean the top of the couch and the floor.\", \" After, the woman shows the battery of the vacuum and then she keeps it.\"]}, \"v_ILeNuidJc00\": {\"duration\": 76.91, \"timestamps\": [[11.15, 23.84], [23.84, 44.99], [44.99, 53.45], [53.45, 71.14], [71.14, 73.83]], \"sentences\": [\"There's an outdoor swimming pool with a very high diving board.\", \" There's a woman in a green swim suit who dives down into the pool.\", \" She is doing various diving moves such as backward, forward and pike.\", \" She also does the hand stand before diving swiftly into the pool.\", \" She repeats her steps and dives several times into the pool.\"]}, \"v_wVCDyGGog4I\": {\"duration\": 233.27, \"timestamps\": [[2.33, 67.65], [58.32, 178.45], [145.79, 222.77]], \"sentences\": [\"A small group of people are seen standing ready in a park with their arms and legs by their sides.\", \" The group then begins moving around with fans in their hands moving their arms and legs.\", \" The group continues moving around together and ends with them standing together and looking off into the distance.\"]}, \"v_eT9oCTQUMhA\": {\"duration\": 178.86, \"timestamps\": [[0, 14.31], [14.31, 29.51], [30.41, 178.86]], \"sentences\": [\"A diver stretches out on a high dive platform bending at the waist.\", \" The diver towels off then tosses down her towel and approaches the end of the diving board for a first attempt.\", \" The diver makes multiple dives doing flips in the air before landing in the water.\"]}, \"v_T4g31MwZ2ds\": {\"duration\": 150.14, \"timestamps\": [[0, 150.14], [14.26, 33.78], [45.04, 150.14], [75.07, 100.59]], \"sentences\": [\"Broken glass sits on the ground.\", \" A young man stretches in front of it.\", \" He then does break dancing moves.\", \" He puts his legs behind his head.\"]}, \"v_zMrUSfQ_mzo\": {\"duration\": 22.06, \"timestamps\": [[0, 2.76], [3.53, 16.54], [17.1, 22.06]], \"sentences\": [\"A boy is seated at a table in a crowded room.\", \" He has a rubik's cube, and tries to solve the puzzle.\", \" He times himself as he finishes the cube, tossing it down on the table.\"]}, \"v_KA6YYIl2z4E\": {\"duration\": 105.0, \"timestamps\": [[0, 14.18], [14.18, 26.78], [26.78, 48.3], [48.3, 78.75], [78.23, 97.13], [97.65, 105]], \"sentences\": [\"The video begins with various words and instructions on how to insert & remove Halloween contact lenses.\", \" A contact lens container is then filled with contact solution and the contacts into both sides of the container.\", \" The woman then puts her thumb and finger into the left side and pulls out a white contact lens and inserts it into her right eye and blinks a few times as the words \\\"featuring White Out contact lens\\\" on the bottom of the screen.\", \" The woman reaches into the right side of the contact lens container and pulls out the other contact lens and inserts it into her left eye and then blinks multiple times.\", \" The woman then reaches back into her left eye first, then into her right to remove the contact lenses and a shot of them sitting in the contact lens container appears.\", \" Video ends with a screen telling you to subscribe to their YouTube channel for more helpful videos.\"]}, \"v__8-4M5XVuwI\": {\"duration\": 25.64, \"timestamps\": [[0, 17.56], [18.2, 25.64]], \"sentences\": [\"A woman and man are raking leaves outside their home.\", \" They move the leaves into a firepit, burning them.\"]}, \"v_jRnJRqvmZvk\": {\"duration\": 115.36, \"timestamps\": [[0, 108.44], [9.23, 22.49], [110.17, 115.36]], \"sentences\": [\"Boys arm wrestle in a match for a large crowd.\", \" The crowd congratulates the winner.\", \" The two boys shake hands after the match.\"]}, \"v_Lme4KL45gwk\": {\"duration\": 199.2, \"timestamps\": [[3.98, 74.7], [65.74, 139.44], [147.41, 191.24]], \"sentences\": [\"A young boy is seen wearing a helmet, speaking to the camera, and holding up pads.\", \" The boy is then shown in various clips riding around on the board while also speaking to the camera.\", \" The boy demonstrates how to perform proper skating moves while bending down and grabbing his board.\"]}, \"v_3zPoB-_JxEc\": {\"duration\": 42.16, \"timestamps\": [[0, 38.15], [5.27, 8.01], [9.7, 11.8], [14.76, 38.15]], \"sentences\": [\"A man talks on a telephone.\", \" The man puts a cigarette in his mouth.\", \" The man lights the cigarette.\", \" The man removes the cigarette from his mouth and holds it in his hand.\"]}, \"v_K8W0PtyPlD4\": {\"duration\": 113.43, \"timestamps\": [[8.51, 40.83], [41.4, 64.09], [45.37, 64.09], [65.79, 83.94], [85.07, 108.33]], \"sentences\": [\"A group of adults plays a game of beach volleyball.\", \" Groups of children of kids play a game of beach volleyball.\", \" Rules are shown for the game.\", \" A group of girls play a volley ball game.\", \" A group of adults play a volleyball game on an overcast day.\"]}, \"v_Le6fNx5IWRI\": {\"duration\": 161.59, \"timestamps\": [[0, 21.01], [23.43, 97.76], [109.07, 124.42], [126.85, 160.78]], \"sentences\": [\"A stadium is seen from above with a large audience.\", \" Gymnasts compete in an event and do stationary platform routine with hand grips.\", \" The medalists of the competition receive their awards and stand together waving.\", \" Athletes give interviews after the competition.\"]}, \"v_I4B52tt3mNM\": {\"duration\": 62.28, \"timestamps\": [[0, 23.98], [23.98, 62.28]], \"sentences\": [\"woman is in front of a mirror make a yawn and drinks mouthwash and spit it in the handwash and smils at the camera.\", \" man stands in front of the mirror try to open the mouthwash bottle and drinks from it and is disgusted by it.\"]}, \"v_SB08N4L6Ujw\": {\"duration\": 133.17, \"timestamps\": [[2.66, 48.61], [41.28, 113.19], [112.53, 133.17]], \"sentences\": [\"Several women are seen moving around a gym performing various exercises on a beam.\", \" The woman continue jumping up and down and leads into one moving a tire around as well as jumping up and down a punching a bag.\", \" The coach then speaks to the camera.\"]}, \"v_D9eo9NfFhkg\": {\"duration\": 120.61, \"timestamps\": [[0, 3.02], [3.02, 11.46], [11.46, 16.88], [16.88, 21.71], [21.71, 34.37], [34.98, 120.61]], \"sentences\": [\"A bald man and a woman wearing handkerchief in her hair stand and wave next to a customized bus.\", \"The lady ads a scoop of ice cream to a sugar cone.\", \"The bald headed man places a menu on the side of the bus.\", \"The lady from the ice cream parlour bus hands an ice cream cone to a client.\", \" Multiple images and clips of many different people eating and showing their ice cream.\", \"The bald man and the lady inside of the ice cream parlour bus are shown working and picking up supplies as more images of patrons eat and show their ice cream treats.\"]}, \"v_ttsZ4M-AKgY\": {\"duration\": 128.34, \"timestamps\": [[0, 11.55], [14.12, 112.29], [112.94, 128.34]], \"sentences\": [\"A group of bikers are going down a busy street filled with cars.\", \" They are seen with cameras mounted on skateboards before they start boarding in traffic.\", \" The man dismounts his board and takes off his helmet before running.\"]}, \"v_JNr0oI927ng\": {\"duration\": 12.68, \"timestamps\": [[0.13, 5.64], [5.64, 12.36]], \"sentences\": [\"A woman is seen standing at the end of a diving board with her arms down and facing forward.\", \" The woman then begins jumping up and down on the board and diving back into the water.\"]}, \"v_XeC4nqBB5BM\": {\"duration\": 139.57999999999998, \"timestamps\": [[0, 39.08], [36.99, 78.16], [76.77, 139.58]], \"sentences\": [\"A close up on the inside of a space ship is shown followed by a woman with crazy hair speaking into the microphone.\", \" She then plays a song on a flute with shots of another man in a different location playing a flute.\", \" The camera pans back and fourth between the two and ends with the man speaking to the camera, the woman waving back, and the man soluting.\"]}, \"v_No2adeap68I\": {\"duration\": 108.37, \"timestamps\": [[0, 40.64], [38.47, 108.37]], \"sentences\": [\"A man is seen wiping down a door and then puts a large poster over the door.\", \" He puts the paper down and trims around the edges, ending with several pictures of posters shown and how to buy.\"]}, \"v_rMX2KeJa8qI\": {\"duration\": 111.09, \"timestamps\": [[0, 26.66], [27.22, 93.87], [93.87, 111.09]], \"sentences\": [\"A group of shirtless men are seen standing around the outside of a home when one grabs various tools and hands more to another.\", \" The men then hit a ball all around the yard through stands sticking out and speak to one another while drinking water.\", \" The men hit the ball a few more times and continue to speak to one another.\"]}, \"v_HDHS_7pOiDk\": {\"duration\": 23.85, \"timestamps\": [[0, 13.59], [13.83, 23.85]], \"sentences\": [\"A woman is shown outside high five two kids that are playing near her.\", \" The woman helps the girl down and jumps along the ground until she falls.\"]}, \"v_UdBFm97tOJs\": {\"duration\": 15.14, \"timestamps\": [[0, 1.21], [1.67, 4.24], [4.47, 8.18], [11.88, 15.14]], \"sentences\": [\"A woman stares blankly at the camera.\", \" She takes a drink of tea.\", \" She repeats the same action exactly.\", \" She then takes another drink and makes a menacing face.\"]}, \"v_F3tKnLz9YyE\": {\"duration\": 23.0, \"timestamps\": [[0, 18.98], [18.86, 23]], \"sentences\": [\"A boy and his dog are seen swimming under water in a large bowl.\", \" The two come above the surface and the dog runs around while the boy rubs his eyes.\"]}, \"v_xijxN7XB4d8\": {\"duration\": 234.82, \"timestamps\": [[0, 31.7], [31.7, 103.32], [103.32, 189.03], [189.03, 234.82]], \"sentences\": [\"A man is standing in a bedroom practicing his violin.\", \"Another day passes by and it is now sunlight outside as the boy practices playing his instrument once more.\", \"The practicing continues on for several more days in the same room and finishes on until day 7.\", \"Finally,the man takes a set in the room and begins talking and demonstrating effective ways to hold the violin and play it efficiently.\"]}, \"v_SOyOank50IY\": {\"duration\": 61.77, \"timestamps\": [[0, 1.24], [1.54, 61.46], [11.43, 12.35], [18.84, 21], [29.03, 31.19], [38.91, 41.07], [55.9, 60.84]], \"sentences\": [\"We see an opening screen on black.\", \" We see a man and woman washing dishes and talking.\", \" An image of a lady pops up on the screen.\", \" We see the ladies image again.\", \" The lady pops up in the subtitles.\", \" We see them from a darker, higher camera.\", \" We see them from the higher camera again.\"]}, \"v_xH8l5rCWrMU\": {\"duration\": 94.07, \"timestamps\": [[0, 9.88], [10.35, 38.1], [38.1, 78.54], [78.54, 94.07]], \"sentences\": [\"woman is posing to the camera in a white game in a presentation.\", \" woman is standing in a kitchen talking to the camera and showing a plate of pasta and the ingedients.\", \" woman is chopping vegetables and saute vegetables in a pan.\", \" hen mix the vegetables with pasta.\"]}, \"v_wz_kM0oBW5g\": {\"duration\": 72.93, \"timestamps\": [[0, 25.53], [0, 5.47], [4.38, 14.22], [12.03, 17.14], [25.53, 38.66], [38.29, 58.35], [58.71, 60.54], [71.11, 72.93]], \"sentences\": [\"We see a shuffle curling court.\", \" Arrows point to stones on the court.\", \" A lady walks off and returns.\", \" Arrows appear to point to the stones.\", \"  We see two ladies, a different lady, then others.\", \" We see a team of player throw the stones.\", \" We see the crowd clap.\", \" We see the score appear on the screen.\"]}, \"v_IRj0d3cLi6g\": {\"duration\": 30.91, \"timestamps\": [[0, 2.78], [2.78, 12.21], [12.05, 26.27], [26.12, 30.91]], \"sentences\": [\"A young child plays a bagpipe next to an adult bagpiper.\", \" The young bagpiper marches in place while playing his bagpipe while onlookers watch from behind.\", \" The adult bagpiper and the child stand next to each other while performing.\", \" The child finishes playing and walks forward to the camera.\"]}, \"v_y80Jbcb5GWA\": {\"duration\": 56.89, \"timestamps\": [[0, 5.4], [5.97, 49.21], [50.63, 56.89]], \"sentences\": [\"A little boy is shown swinging on a swing on the public playground.\", \" He swings high into the air as someone pushes him.\", \" The boy smiles and talks to the person with the camera.\"]}, \"v_7IW2BELXDHA\": {\"duration\": 50.27, \"timestamps\": [[0, 50.27], [20.11, 50.27]], \"sentences\": [\"Men are playing a sport n the sand.\", \" A man sits on the sand injured.\"]}, \"v_nd5l829R8mw\": {\"duration\": 13.07, \"timestamps\": [[0.33, 11.7], [9.15, 11.24], [11.77, 13.07]], \"sentences\": [\"A marching band plays in the street.\", \" People walks behind the marching band.\", \" People pass on front a large window of a store.\"]}, \"v_klqHoK_8ar8\": {\"duration\": 125.18, \"timestamps\": [[0, 24.41], [24.41, 48.82], [48.19, 83.87], [83.87, 125.18]], \"sentences\": [\"A man is painting the something on the floor green.\", \" She stroke up and down repeatedly trying to make sure he doesn't miss any spots in the area.\", \" He stands up a bit and looks at the piece for a little before dunking his brush back in the paint and starting again.\", \" He moves along to parts he hasn't yet gone over to paint.\"]}, \"v_ewTlNriXY3c\": {\"duration\": 218.62, \"timestamps\": [[26.23, 206.59], [65.58, 206.59], [90.73, 206.59], [113.68, 206.59], [145.38, 206.59], [158.5, 206.59], [170.52, 206.59], [180.36, 206.59], [196.75, 214.24], [213.15, 214.24]], \"sentences\": [\"There is a competitive game of tug of war going on in an open field.\", \" Where a team wearing blue is competing against another team.\", \" The coach is giving directions to the team on how to pull the rope.\", \" He is encouraging them to not give and continue their efforts.\", \"There are spectators watching the event and cheering for the participants.\", \"There are few more rounds of tug of war played s the spectators watch and cheer for the players.\", \" The coach continues to encourage the players.\", \" After they win the tug of war, all the spectators run out and hug the players.\", \" A cameraman takes their pictures.\", \" The entire team poses for a team picture after their win.\"]}, \"v__p0eoCHZ8BA\": {\"duration\": 190.99, \"timestamps\": [[8.59, 48.7], [48.7, 87.85], [87.85, 120.32], [128.91, 170.93], [172.84, 190.99]], \"sentences\": [\"A woman starts brushing a horse.\", \" She gets a pink brush and starts brushing the horse again.\", \" She gets a black brush and continues brushing the horse.\", \" She starts brushing the legs on the horse.\", \" She lifts up the horses foot and cleans the bottom of the foot.\"]}, \"v_otGlbzsPIi0\": {\"duration\": 66.86, \"timestamps\": [[0, 17.72], [17.38, 51.15], [54.16, 66.86]], \"sentences\": [\"A man is seen speaking to the camera and leads into him holding a cooking pan out a hot stove.\", \" The man mixes ingredients together into a bowl and pours it into a pan while continuously stirring.\", \" He pours the food onto a plate and still holds the pan in his hand.\"]}, \"v_HSEnmPWF5GY\": {\"duration\": 33.58, \"timestamps\": [[0, 30.05], [11.42, 31.56]], \"sentences\": [\"A montage of a priest is giving communion to people.\", \"  Jesus and Mother Teresa are shown as a montage continues.\"]}, \"v_DHfiz3MNbcc\": {\"duration\": 70.87, \"timestamps\": [[0, 26.22], [26.93, 46.42], [46.42, 70.87]], \"sentences\": [\"A young lady with burnette hair is standing behind a black counter in a bar with several alcohol on it.\", \"She then grabs a clear glass and puts ice in it.\", \"Next comes the liquor and she pours,orange juice and syrup in it and the drink is complete.\"]}, \"v_FBL7iWMmTHU\": {\"duration\": 215.41, \"timestamps\": [[0, 34.47], [20.46, 70.01], [48.47, 98.01], [80.78, 138.94], [132.48, 215.41]], \"sentences\": [\"four men are standing on racquetball court.\", \" one man serves the ball.\", \" The men then begin to volley.\", \" One team scores a point.\", \" They all repeat the process.\"]}, \"v_no9vPN7D-1s\": {\"duration\": 149.86, \"timestamps\": [[1.5, 146.12], [9.74, 32.22], [50.95, 149.86]], \"sentences\": [\"A person in an orange protective suit and a metal black mask solders something in an industrial setting.\", \"  A person stands next to a black box in a metal helmet as fire sparks erupt from a wired box on the right.\", \"  A large grey wheel spins behind the worker in the midst of the fire sparks and another worker walking by in a blue protective suit.\"]}, \"v_Ch_qHjUtOpE\": {\"duration\": 22.06, \"timestamps\": [[0, 2.98], [3.2, 17.65], [18.2, 22.06]], \"sentences\": [\"Two women are standing on others' shoulders.\", \" They lift another woman into the air, balancing her between them before dropping her to be caught.\", \" However, the girls below are knocked to the ground.\"]}, \"v_jIKAVLlyXIQ\": {\"duration\": 13.86, \"timestamps\": [[0, 2.43], [2.5, 7.42], [7.49, 13.86]], \"sentences\": [\"A man cuts into a piece of wood with an ax.\", \" Then, his action is replayed in slow motion.\", \" Next he takes a piece of the wood he cut an throws it into a pile.\"]}, \"v_CZp3ZPTQrds\": {\"duration\": 121.98, \"timestamps\": [[0, 30.49], [37.2, 91.48], [86.6, 120.76]], \"sentences\": [\"A man is seen speaking to the camera followed by several pictures of bearded men.\", \" The man then begins using scissors on his face while holding up pieces of paper.\", \" The man continues to shave his face and ends by waving to the camera.\"]}, \"v_jXORdfzz4oE\": {\"duration\": 75.61, \"timestamps\": [[0, 7.94], [7.94, 71.82]], \"sentences\": [\"man is standing in the court with a net behind he.\", \" men are playing volyball in a oofed court gym.\"]}, \"v_lkSkFmHYdtI\": {\"duration\": 21.64, \"timestamps\": [[0, 4.87], [4.76, 13.96], [13.96, 21.64]], \"sentences\": [\"A young male athlete is standing in a field and turns backwards in a small circle.\", \"He then extends his arms and begins moving them back and forth.\", \"Once ready,he spins around and throws the discus out in the field,walks away and looks back at the distance.\"]}, \"v_cvFFwMKFg7Q\": {\"duration\": 7.62, \"timestamps\": [[0, 7.62], [5.22, 7.05], [6.7, 7.62]], \"sentences\": [\"Two people are raking leaves in a park.\", \" The man in the rear turns his back to the camera.\", \" The lady on the left turns to the right.\"]}, \"v_R6MnhM2omiE\": {\"duration\": 51.15, \"timestamps\": [[0, 3.33], [3.33, 49.88], [50.64, 51.15]], \"sentences\": [\"The man uses his match to set fire to the wooden logs.\", \" The fire is really small at first, but then it grows and gets bigger.\", \" After a while the video ends still showing the fire created by matches and tree branches.\"]}, \"v_Y6UKk3t8Hj8\": {\"duration\": 37.9, \"timestamps\": [[7.77, 17.05], [17.05, 27.28], [27.28, 36]], \"sentences\": [\"The Livestrong website is showing a video on boxing.\", \" A woman boxer, Jolie Glassman is demonstrating how to properly punch and box the punching bag.\", \" She is in a gym demonstrating kicking and punching techniques.\"]}, \"v_zrR9hGDeQhg\": {\"duration\": 236.89, \"timestamps\": [[0, 110.15], [111.34, 236.89]], \"sentences\": [\"A person is seen riding down a snowy hill close up as well as another person and child riding down the mountain.\", \" Several more clips are shown of people riding down the mountain from various angles with people yelling and cheering.\"]}, \"v_QkqsI11OtC8\": {\"duration\": 14.86, \"timestamps\": [[0, 2.53], [3.12, 5.72], [6.76, 9.81], [11.89, 14.86]], \"sentences\": [\"We see a child playing hopscotch in a yard.\", \" An older girl the jumps.\", \" The first girl jumps back to the start location.\", \" The older girl then goes again.\"]}, \"v_WnoJmKZC_qg\": {\"duration\": 144.68, \"timestamps\": [[7.23, 139.62], [7.23, 44.85], [44.85, 110.68], [110.68, 137.45]], \"sentences\": [\"A man demonstrates, through example how to play the recorder.\", \"  A man stands in front of two windows covered in closed beige blinds, holding a wooden recorder instrument with both hands in front of him, while talking to the camera.\", \"  The camera closes up on the body of the wooden recorder as the man begins to play lifting his fingers off of the various hole to make noise.\", \"  The camera stays in a close up shot of just the man\\u2019s hands and the bottom of the recorder for the rest of the clip.\"]}, \"v_qgQVbGtIn0M\": {\"duration\": 169.0, \"timestamps\": [[0, 26.19], [26.19, 36.33], [36.33, 39.71], [39.71, 52.39], [52.39, 105.62], [105.62, 169]], \"sentences\": [\"A group of rocks are shown washed up against the banks of a large blue river.\", \"The camera continues to span the river and a mountain range is shown.\", \"Another angle is shown and a small circle appears on the screen.\", \"Two hikers wearing backpacks are visible and show a rope.\", \"One man then gets in the water and tightens the ropes around a tree from one side of the water to another and sits on the rope.\", \"The man then stands up and attempts to tight rope across the water but falls into the water.\"]}, \"v_U7SRRMoCGks\": {\"duration\": 150.35, \"timestamps\": [[5.26, 84.95], [50.37, 141.33]], \"sentences\": [\"A man is seen standing before an exercise beam and begins moving himself on the bars while others practice around him.\", \" The man continues to workout on the beam and pauses to speak to the camera while using his hands.\"]}, \"v_brZ1m2qNUzc\": {\"duration\": 175.8, \"timestamps\": [[27.25, 44.83], [46.59, 141.52], [143.28, 175.8]], \"sentences\": [\"A person is seen wiping down a rag followed by several ingredients attached to her hip.\", \" She sprays down the rag and is then seen again washing various windows around an office.\", \"  She wipes down door handles as well and then puts the rags into a washing machine, hanging up the pole in the end.\"]}, \"v_z4B1JZQnHl4\": {\"duration\": 231.23, \"timestamps\": [[0, 26.59], [32.37, 91.33], [92.49, 157.23], [163.01, 231.23]], \"sentences\": [\"A group of skaters are going quickly around an outdoor track.\", \" A man who curls in a wheelchair speaks to the camera.\", \" A man is shown with a puck, performing.\", \" Several people alternate playing with talking to the camera.\"]}, \"v_uc1RbyLfuSs\": {\"duration\": 7.76, \"timestamps\": [[0, 7.76], [0, 2.13], [4.03, 7.76]], \"sentences\": [\"A person is wind sailing through a body of water.\", \"  The person passes someone swimming.\", \" The person turns on their board.\"]}, \"v_xqYII12ta4E\": {\"duration\": 154.25, \"timestamps\": [[0, 1.54], [1.54, 146.54], [146.54, 154.25]], \"sentences\": [\"A group of cheerleaders are wearing dark red, white and black uniforms standing in formation getting ready to do their routine, and the words below on the screen say \\\"Mill Creek HS Class AAAAA\\\".\", \"The cheerleaders begin their routine and it includes a lot of jumping, cheering, flipping, either in sync or separetly, throwing and catching other cheerleaders, and many other moves.\", \"They end their routine, cheer themselves on and 2 women from the audience run up and hug some of the cheerleaders.\"]}, \"v_zp86ztwZEKk\": {\"duration\": 88.42, \"timestamps\": [[0, 13.26], [13.26, 19.45], [13.26, 88.42]], \"sentences\": [\"A talking man dressed in athletic gear is standing on a very green field and the words on the bottom left say his name is Neil Macmillan and his title is Head Coach.\", \"A large group of girls dressed in athletic gear are shown playing land hockey, and the people not playing are dressed for cold weather.\", \" Clips of the man continue to play and rotate from showing the man and the girls playing land hockey until they are done playing.\"]}, \"v_cNCkHqOnJV0\": {\"duration\": 234.26, \"timestamps\": [[0, 78.48], [49.19, 179.21], [122.98, 223.71]], \"sentences\": [\"The sky is shown that leads into a man speaking to the camera with his friend.\", \" Several people are then seen sitting in tubes riding down a river past one another.\", \" The people continuing riding down the river through tunnels and paths while the man still speaks to the camera.\"]}, \"v_FwV1XbjLJHY\": {\"duration\": 113.36, \"timestamps\": [[5.67, 41.94], [42.51, 73.68], [73.68, 108.26]], \"sentences\": [\"A woman talks in a bar, then she puts ice in a stainless steel glass.\", \" Then the woman adds to the cup two measures of liquor, juice and sugar.\", \" After, the woman puts a cup on top and shake it, and serves in a cup with a slice of lemon.\"]}, \"v_4CRacVTadPQ\": {\"duration\": 101.87, \"timestamps\": [[0, 15.79], [15.79, 31.07], [43.29, 77.42], [78.95, 82.51], [84.04, 99.32]], \"sentences\": [\"A woman in a yellow shirt is holding a bottle in her hand.\", \" She opens the bottle and pours it into a bucket on the ground.\", \" She puts a mop rag into the bucket and puts it on her mop.\", \" She then lifts the bucket out of the room.\", \" She starts mopping the tile on the floor.\"]}, \"v_DU36SNYN-rw\": {\"duration\": 110.39, \"timestamps\": [[0, 12.14], [12.69, 27.6], [27.6, 64.03], [64.03, 70.1], [70.1, 110.39]], \"sentences\": [\"The tile screen plays with a picture of a long field.\", \" A man walks up with a disk and a dog hold onto it as he passes a few people.\", \" The man starts playing with the dog by throwing the think and having him bring it back.\", \" He then claps for the dog.\", \" The credits roll at the end.\"]}, \"v_68m6uCPwwNo\": {\"duration\": 9.82, \"timestamps\": [[0, 9.58], [0, 6.53], [0, 9.82], [7.32, 8.15]], \"sentences\": [\"A red ball sits between two poles.\", \" A cricket bat begins swinging.\", \" Two shoes sit on either side.\", \" The bat strikes the ball.\"]}, \"v_aWKZSqbOi2Q\": {\"duration\": 191.22, \"timestamps\": [[0, 53.54], [53.54, 120.47], [120.47, 132.9], [132.9, 191.22]], \"sentences\": [\"A large group of girls dressed in cheerleading outfits are standing in formation and at the same exact moment the girls do a flip in sync and they begin their very detailed routine that includes, jumps, flips, hand claps and etcetera.\", \" They break off into 5 different groups where all the girls huddle in each group and throw one girl in the air and hold her up, but suddenly the front group is unstable and the girl they are holding up drops, and the girls below all catch her and they just wait until the girls are done to resume their routine in sync.\", \"They are all standing still in formation when suddenly one of the girls pulls off her left shoe and throws it to the side and they all remain still for a few seconds.\", \" The girls resume their cheer and break up in 5 sections once again to hold a girl up in the air, but once again, the middle group loses the balance of the girl on top and they fail and she falls in their catch and they resume their routine that now include multiple flips from each girl until the finish.\"]}, \"v_sz0GhFkkXYI\": {\"duration\": 118.14, \"timestamps\": [[0, 53.76], [58.48, 118.14]], \"sentences\": [\"A man leans forward as a baby in a swing tries to grab and chew on his hair.\", \" The baby laughs, swinging back and forth, then tries to grab the camera.\"]}, \"v_xyZ87TEcDSI\": {\"duration\": 63.18, \"timestamps\": [[4.11, 63.18], [17.37, 63.18]], \"sentences\": [\"A few people go surfing on waves.\", \"  They fall sometimes but are ok.\"]}, \"v_KkBMOQOGTdk\": {\"duration\": 24.06, \"timestamps\": [[0, 1.56], [3.01, 19.24], [19.73, 24.06]], \"sentences\": [\"Band members in full dress stand in a yard.\", \" They are using a rake to rake leaves.\", \" A man walks by as they rake.\"]}, \"v_VnBZR-yBLXA\": {\"duration\": 117.59, \"timestamps\": [[0, 57.03], [46.45, 117.59]], \"sentences\": [\"A woman is seen standing behind a counter speaking to the camera and then beginning to peel a potato.\", \" She continues to peel potatoes while pausing to speak to the camera and smile.\"]}, \"v_EHVkkRI7mBQ\": {\"duration\": 203.31, \"timestamps\": [[0, 41.68], [42.7, 175.87], [169.77, 175.87], [176.88, 193.15], [187.05, 193.15], [194.16, 203.31]], \"sentences\": [\"Young men an a car talk and play around before arriving at the ski slope.\", \" We see men snowboarding over obstacles and ramps on the ski slope.\", \" A man jumps a ramp and falls to the ground.\", \" We see the boys standing in the parking lot and are shown their names.\", \" The last boy removes his helmet, shakes his hair and smiles at the camera.\", \" We then see the ending credits.\"]}, \"v_QjFioni0uCM\": {\"duration\": 145.75, \"timestamps\": [[5.83, 126.08], [16.03, 53.93], [53.93, 83.81], [83.08, 107.86]], \"sentences\": [\"A man is standing behind a woman sitting in a chair.\", \" He is putting a product into her hair.\", \" He begins to blow dry her hair.\", \" She starts to blow dry her hair herself.\"]}, \"v_gJydcG-d1cs\": {\"duration\": 238.01, \"timestamps\": [[13.09, 44.03], [20.23, 114.24], [115.43, 121.38], [167.79, 197.54], [159.46, 160.65], [186.83, 189.21]], \"sentences\": [\"A woman holds a flute and practices the keys while lying down.\", \" A woman in a formal dress holds up a flute and gestures while talking.\", \" A woman plays the flute with exaggerated blowing.\", \" A woman plays a flute in a room with other instruments hanging in the background.\", \" The two women play flutes together.\", \" The woman shake their hands with a cramp.\"]}, \"v_HK9tOFFF5II\": {\"duration\": 141.31, \"timestamps\": [[0, 68.53], [68.53, 141.31]], \"sentences\": [\"a scene from th big bang theory is shown and the man is lying down in a table in a tattoo room and a tattoo artist is standing by him.\", \" man in the bed stands and talk to a woman and remove the fake tattoo sleeves.\"]}, \"v_rfxXEgc9RTQ\": {\"duration\": 66.64, \"timestamps\": [[0, 22.33], [20.33, 66.64]], \"sentences\": [\"A close up of a person's feet are shown followed by two men seen in an open room holding tennis rackets and hitting a ball.\", \" Then men hit the ball all around the room while running to each side to hit the ball.\"]}, \"v_zQ4HbFGX7t0\": {\"duration\": 59.03, \"timestamps\": [[0, 5.31], [5.31, 20.36], [20.36, 47.22], [47.22, 59.03]], \"sentences\": [\"A man closing his house door and then opening his car door.\", \" He gets in the car and puts the keys in the ignition and starts driving down the highway to his shop.\", \" He gets some boards and starts sanding them down smoothing them out.\", \" When the day is over he turns the lights off and gets ready for work.\"]}, \"v_ptlSMte8xz0\": {\"duration\": 112.87, \"timestamps\": [[0, 48.54], [47.41, 88.04], [88.04, 112.87]], \"sentences\": [\"A guy is skiing with a camera on his helmet to show us what he is seeing as he ski.\", \"the guy ski down the hill and passes a guy that was in front of him.\", \"As the guy skis he start to come cross other skiers also skiing,finally the skier makes it to the end of down hill slop and comes to a stop.\"]}, \"v_-0i3BpAQAgE\": {\"duration\": 64.83, \"timestamps\": [[0, 11.02], [11.35, 28.2], [27.88, 38.9], [54.78, 55.75]], \"sentences\": [\"A man and a woman are playing rock paper scissors.\", \" The man gets on his knee and pulls out a ring.\", \" They hug next to the swimming pool.\", \" They give each other a kiss.\"]}, \"v_jwv7eQpeGW4\": {\"duration\": 180.95, \"timestamps\": [[0, 23.52], [23.52, 166.48], [168.29, 180.95]], \"sentences\": [\"A man is running down a track he jumps into a pile of sand.\", \" He runs down the track again and jumps into the sand several times.\", \" Scores are shown on the screen.\"]}, \"v_-vKXPND_mD8\": {\"duration\": 8.08, \"timestamps\": [[0, 3.72], [1.25, 8.08], [7.27, 8.08]], \"sentences\": [\"A man wearing a green outfit is leading a camel.\", \" Two people are sitting on top of the camel.\", \" A man is walking next to the camel.\"]}, \"v_4kriQ6h6ymI\": {\"duration\": 157.62, \"timestamps\": [[0, 15.76], [17.34, 63.05], [84.33, 96.93], [100.87, 135.55], [139.49, 157.62]], \"sentences\": [\"A graphic shows and then photos follow of a girl growing up with horseback riding.\", \" Three years after those photos the girl moves and she is shown riding horses.\", \" The girl is shown with other girls posing with some awards for horseback riding.\", \" Another video is shown of the girl riding the horse indoors.\", \" Photos of the girl taking care of her horses close out the video.\"]}, \"v_RfsugL4sLso\": {\"duration\": 107.74000000000001, \"timestamps\": [[0, 28.55], [24.78, 75.96], [75.42, 107.74]], \"sentences\": [\"A woman is seen brushing her teeth and leads into toothpaste being spread on a toothbrush.\", \" Another girl brushes her teeth and shows several stills on how to properly brush teeth.\", \" More clips are shown of people brushing their teeth.\"]}, \"v_sQo4gMcgfT4\": {\"duration\": 193.03, \"timestamps\": [[0, 45.36], [45.36, 114.85], [114.85, 193.03]], \"sentences\": [\"Several people are in bumper scooters moving around in a small entrapment.\", \"Finally,they get out of the big clump and start to move around the gym easier.\", \"The ride finally ends,and all of the people get out and a girl and boy walk up to the camera giving a thumbs up.\"]}, \"v_09MaNbzc2TA\": {\"duration\": 143.62, \"timestamps\": [[0, 61.04], [52.42, 112.74], [113.46, 143.62]], \"sentences\": [\"A large group of people are seen wandering around a beached area followed by people dancing and enjoying the beach.\", \" Several clips are shown of a soccer match going on as well as fans celebrating to the camera.\", \" In the end the team all celebrates together while confetti falls from the sky.\"]}, \"v_amCD-2TIKw0\": {\"duration\": 124.18, \"timestamps\": [[9.93, 15.52], [15.52, 19.87], [19.87, 24.22], [24.22, 29.18], [29.18, 31.05], [31.05, 35.39], [35.39, 42.84], [42.84, 57.74], [57.74, 120.46], [120.46, 124.18]], \"sentences\": [\"A woman is playing music on a stereo in a busy city.\", \" Another woman is standing on the sidewalk with headphones.\", \" They both smile at each other as they groove to the music.\", \" The woman picks up the stereo and starts walking.\", \" The other woman follows her on the same sidewalk.\", \" They walk together holding the stereo.\", \" A man in a red shirt starts dancing next to a car with another woman.\", \" They join the woman walking with the stereo in her hand.\", \" Several other people join them as they walk and dance to the music.\", \" All the people break into a synchronized dance right on the street.\"]}, \"v_vH9gqDUaBQ0\": {\"duration\": 213.69, \"timestamps\": [[3.21, 47.01], [47.01, 117.53], [118.6, 164.54], [166.68, 191.26], [191.26, 207.28]], \"sentences\": [\"An old man talks next a sailboat in the shore, then the man carry the sailboat to the ocean.\", \" The old man sails the boat sitting on the border of the boat and pulling a handle.\", \" Then, the old man sits for awhile, and then continues sailing and stops when he talks.\", \" After, the old man stops and the boat turn over, then he pulls the boat to the shore.\", \" After, the old man continues sailing in the ocean.\"]}, \"v_QKIkAfzncFc\": {\"duration\": 55.29, \"timestamps\": [[0, 34.55], [36.77, 55.29]], \"sentences\": [\"A person's hands are seen playing a set of bongo drums and pausing to talk to the camera.\", \" He presses a button on his phone and plays the drums again and ending with one final smack on the drum.\"]}, \"v_dnJJWt0SBTc\": {\"duration\": 210.92000000000002, \"timestamps\": [[0, 32.69], [76.99, 99.13], [147.64, 181.39]], \"sentences\": [\"People are standing in a line holding swords.\", \" A man in a white jacket is talking into a microphone.\", \" Another older gentlemen is talking into a microphone.\"]}, \"v_dGHCQVdC27c\": {\"duration\": 67.97, \"timestamps\": [[0.34, 50.29], [25.83, 26.85], [50.97, 67.97]], \"sentences\": [\"A man covers a wall with cement using a hose.\", \" A person works behind the wall.\", \" The person is covering the last section of the wall.\"]}, \"v_UzmnkYD5YTA\": {\"duration\": 101.22, \"timestamps\": [[0, 33.4], [27.33, 101.22]], \"sentences\": [\"A person is seen walking into frame holding an instrument in front of a piano.\", \" He plays the instrument in front of the piano and walks back to the camera.\"]}, \"v_CX5QUmM97DI\": {\"duration\": 219.27, \"timestamps\": [[0, 12.06], [12.06, 26.31], [26.31, 77.84], [78.94, 219.27]], \"sentences\": [\"The logo \\\"FAB\\\" appears with two crossed swords.\", \" The words \\\"Meyerco Machete Cut Test\\\" follow on screen.\", \" A man is trimming a damaged bush using a machette.\", \" The man continues chopping the cut branch on a deck.\"]}, \"v_cpeevuvJKjE\": {\"duration\": 90.77, \"timestamps\": [[0, 86.23], [3.63, 6.35], [73.07, 77.61], [87.14, 90.77]], \"sentences\": [\"A group of ballet of dancers compete with a group of hip hop dancers.\", \" A boy dance hip hop, spins and make a flip.\", \" After, the boy climbs on a column to make a flip backward and stand on his hands, then a ballet dancer is raised by her friends.\", \" Then, a boy runs and break a door to enter to the other side where a girl is surprised.\"]}, \"v_5OhIRnEFMyw\": {\"duration\": 217.5, \"timestamps\": [[0, 33.71], [31.54, 85.91], [73.95, 127.24], [123.98, 217.5]], \"sentences\": [\"A girl smiles at a camera holding a violin and pulls her hair behind her head.\", \" She continues talking to the camera followed by her playing the violin.\", \" She takes her hair down and continues talking to the camera and showing various violin moves while singing.\", \" She once again puts her hair up and continues with her playing.\"]}, \"v_0kfJ7Lu4tvo\": {\"duration\": 221.59, \"timestamps\": [[6.65, 50.97], [50.97, 70.91], [72.02, 88.64], [88.64, 178.38], [178.38, 213.83]], \"sentences\": [\"A person turns on the emergency lights of a car and takes out the emergency tire.\", \" Then, the man loose the  lug nuts of the tire, and then reads the manual.\", \" After, the man puts a jack below the car to raise it.\", \" Next, the man puts the emergency tire and tight the lug nuts.\", \" At the end, the man keeps the jack and the flat tire.\"]}, \"v_Lou-YFz3kb0\": {\"duration\": 148.64, \"timestamps\": [[0, 32.7], [30.47, 118.92], [104.05, 146.41]], \"sentences\": [\"A woman is seen speaking to the camera while holding a violin.\", \" The woman continues speaking and them begins demonstrating how to play a song.\", \" She finishes playing the song and smiles to the camera.\"]}, \"v_CV3pIbE8BnE\": {\"duration\": 217.11, \"timestamps\": [[0, 73.82], [59.7, 162.83], [144.38, 214.94]], \"sentences\": [\"A person is seen bending over his legs with a person putting shaving cream all over his leg.\", \" The person then grabs a razor and begins shaving the man's leg while dipping it into a sink.\", \" The woman continues shaving his leg while panning back to the sink and him having a drink.\"]}, \"v_D32TzYSHM08\": {\"duration\": 63.09, \"timestamps\": [[0, 63.09], [14.2, 27.76], [34.38, 38.17], [55.52, 63.09]], \"sentences\": [\"A man ball rolls across a baseball field and a small boy in a green shirt kicks the ball and runs around the bases.\", \" The boy stops and looks at the camera then starts running again.\", \" A person runs in front of the camera.\", \" The boy makes it to home as a lady chases a ball to the fence.\"]}, \"v_YmhbwAv0Xbc\": {\"duration\": 125.55, \"timestamps\": [[3.77, 15.69], [15.69, 33.27], [28.88, 42.06], [65.29, 72.82], [38.92, 82.86], [69.68, 81.61], [107.97, 111.11]], \"sentences\": [\"The boy in the red hat and the blue coat is being pulled in a red tube by a rope over some icy roads.\", \" A man in a black hat has his turn with the tube.\", \" A man in a grey hat hits a snow embankment with the tube.\", \" A man goes up a snow hill in the tube.\", \" More people begin sliding but this time it is with a small sled, not a tube.\", \" A man lets go of the rope and hits an embankment of snow.\", \" A group of friends sit on a couch together.\"]}, \"v_OZpxc1X8Bsc\": {\"duration\": 71.03, \"timestamps\": [[0.36, 70.67], [1.42, 3.91], [4.26, 34.45], [36.58, 70.32]], \"sentences\": [\"A man wearing only black shorts, sandals and a gear belt, climbs a rock using a rope in a natural environment filled with trees and foliage.\", \"  The man in the black shorts stands at the bottom of the rock and begins to climb the rock.\", \"  The man climbs from the bottom using knees to gain balance and a rope to steady when losing grip with the rocks.\", \"  The man reaches the top of the rock as the tan rope, behind, dangles.\"]}, \"v_6gzU9P-5tqE\": {\"duration\": 90.87, \"timestamps\": [[4.09, 10.45], [32.71, 36.35], [63.61, 65.88], [80.88, 90.87]], \"sentences\": [\"A man falls down while trying bowl down a lane.\", \" A woman falls down trying to bowl.\", \" A man throws a bowling ball and it hits the ceiling.\", \" A man slips and falls as he's trying to bowl.\"]}, \"v_v1ukgczEA5A\": {\"duration\": 96.02000000000001, \"timestamps\": [[0, 17.76], [31.68, 38.41], [40.81, 87.37]], \"sentences\": [\"A person flips a ski upside down.\", \" They melt onto onto the bottom of the ski.\", \" They run the iron over the top of the was on the ski.\"]}, \"v_PSAfQ1qjtOA\": {\"duration\": 111.5, \"timestamps\": [[0, 15.61], [17.28, 20.63], [22.86, 105.93], [84.74, 99.24], [100.35, 108.16]], \"sentences\": [\"A gymnast stands and waves her arms before a performance.\", \" The gymnast hops up and mounts the balance beam.\", \" The gymnast does a routine on the balance beam doing flips and hand springs.\", \" The gymnast jump and does the splits in the air.\", \" The gymnast dismounts the balance beam onto the mat.\"]}, \"v_kmtuO9Xdp-Y\": {\"duration\": 207.12, \"timestamps\": [[0, 207.12], [22.78, 109.77], [109.77, 129.45], [129.45, 200.91], [198.84, 207.12]], \"sentences\": [\"A woman plays guitar on stage.\", \" The lady sings in the microphone.\", \" The lady takes a break from singing.\", \" The lady begins to sing again.\", \" The lady stops singing then steps back to the microphone.\"]}, \"v_wQHMoyzJx_w\": {\"duration\": 88.48, \"timestamps\": [[0, 5.31], [5.31, 72.11], [34.51, 50.43], [56.19, 68.57], [70.34, 81.85], [81.85, 88.48]], \"sentences\": [\"We see a white opening scene.\", \" We see a lady in a kitchen talking and cooking.\", \" The lady cuts a potato and puts it in the water.\", \" The lady puts the potato in cold water.\", \" The lady peels the skin off the potato easily.\", \" We see the closing screen.\"]}, \"v_sx_npA4wRrw\": {\"duration\": 203.66, \"timestamps\": [[11.2, 25.46], [25.46, 47.86], [47.86, 80.45], [80.45, 98.78], [98.78, 115.07], [115.07, 142.56], [142.56, 179.22], [179.22, 189.41]], \"sentences\": [\"A chef is mixing water and vinegar in a glass bowl and adding dried chilies to it.\", \" Then in a blender, the chef mixes capers, garlic, anchovies and black olives along with some olive oil.\", \" The chef mashes the ingredients into a paste.\", \" The chef adds some garlic to oil in a saute pan and sautes it with some sun dried tomatoes.\", \" Then adds in the olive tapenade to the pan.\", \" The chef then chops some parsley and garlic together.\", \" Then he adds some spaghetti to boiling salt water and cooks it.\", \" He adds the chopped parsley to the spaghetti and mixes it well along with the olive tapenade.\"]}, \"v_7yndv2xOmn0\": {\"duration\": 106.07, \"timestamps\": [[0, 21.21], [21.21, 50.91], [50.91, 106.07]], \"sentences\": [\"A person is putting black icing on a cake.\", \" They pour icing on the top out of a pot.\", \" They put strawberries, blueberries, raspberries and black berries on top of the cake.\"]}, \"v_8Kj5Whf2JyA\": {\"duration\": 60.19, \"timestamps\": [[1.2, 39.42], [20.46, 57.18]], \"sentences\": [\"A large group of people are see bouncing around on trampolines throwing dodgeballs to one another.\", \" The camera pans around to the people on the outside and back onto the kids playing.\"]}, \"v_ezugU3qibVQ\": {\"duration\": 220.79, \"timestamps\": [[0, 36.43], [36.43, 56.3], [56.3, 91.63], [91.63, 189.89], [189.89, 193.2], [193.2, 213.07], [213.07, 220.8]], \"sentences\": [\"A pink screen appears that have black numbers and words that read \\\"handbagbuyer 82\\\", then hearts appear to fade out the intro screen and a smiling blonde woman wearing green appears talking straight to the camera.\", \"The woman then picks up a tray with a cover that includes colorful curlers of different sizes and she continues talking while pointing at them.\", \"The woman then picks up a black bag and grabs a silver clip from it, puts it back in the bag and puts the bag on the side and continues to talk.\", \"The woman is now standing in a bathroom wearing a red sweater with hello kitty on the front and she's brushing her hair, rolling it in curlers and clipping each one individually with the silver clip and curlers she showed earlier.\", \" When she completes putting all the curlers that can fit on her entire head, she smiles to the camera and turns her head from side to side.\", \" The woman is now standing in the bathroom wearing green again and she has her hair down and she's talking and using her hands to move her hair around to show the curls.\", \" The outro screan is pink and ends with black words and then a black screen that has a clip art red pair of lips on it.\"]}, \"v_xfOs5nRsSuQ\": {\"duration\": 135.72, \"timestamps\": [[0, 57.68], [57.68, 135.72], [0, 135.72]], \"sentences\": [\"woman is standing in a green field practicing balance a ball in a golf club.\", \" another woman is in the court and its practicing with the girl passing the ball from a golf club to another.\", \" in the background cars are parked in a parking lot.\"]}, \"v_CrnNXizH0IQ\": {\"duration\": 102.49000000000001, \"timestamps\": [[2.05, 37.92], [27.16, 64.57], [57.4, 97.88]], \"sentences\": [\"A man is seen speaking to the camera while pointing to various tools and wooden objects in front of him.\", \" The man unhooks the side followed by sanding it down on the side.\", \" The man then takes a screwdriver and drills in holes while stopping to sand it and show it to the camera.\"]}, \"v_Ufki4AjZHFI\": {\"duration\": 12.18, \"timestamps\": [[0, 11.21], [0, 1.64], [1.83, 9.62], [10.66, 12.18]], \"sentences\": [\"A young man is shown on a road wearing stilts.\", \" He walks over to the side of the road.\", \" He then lifts his feet up and down as if in preparation of running.\", \" The video ends as the person recording tilts the camera and covers the lens.\"]}, \"v_vUuC72xikqw\": {\"duration\": 214.6, \"timestamps\": [[0, 33.26], [38.63, 152.37], [149.15, 211.38]], \"sentences\": [\"A close up of a pumpkin is seen followed by a child scouping out the middle.\", \" Another child next to her is seen cutting out the pumpkin when an adults walks into frame.\", \" The adults helps the children with one smiling to the camera and holding up seeds while the camera pans around the room.\"]}, \"v_zkLld95_bhg\": {\"duration\": 112.34, \"timestamps\": [[0, 89.31], [89.31, 106.72], [106.72, 112.34]], \"sentences\": [\"Between clips of a man on a catamaran moving in the ocean, black screens appear and different times with different words describing each movement the catamaran makes.\", \"The man is now standing on the boat and is pulling on ropes that move on the boat and then is shown once again as the boat is moving.\", \" The outro appears and it's a white screen with a picture of the boat and the words \\\"MULTIHULL CENTRAL\\\".\"]}, \"v_FAPMunnTNsE\": {\"duration\": 92.97, \"timestamps\": [[1.39, 55.78], [33.94, 90.65]], \"sentences\": [\"Two people are seen riding in a canoe pushing a paddle along the water and looking into the camera.\", \" More clips are shown of the scenery as well as the people riding around and meeting up with others.\"]}, \"v_7MWDmMh3zyA\": {\"duration\": 36.53, \"timestamps\": [[0, 18.81], [18.63, 36.53]], \"sentences\": [\"A group of people are in tubes floating on top of murky water with huge rocks in it.\", \"The camera scans the crowd and people continuously paddle their way across the water.\"]}, \"v_L3X8OmIbj2c\": {\"duration\": 222.63, \"timestamps\": [[0, 222.63], [18.92, 219.29], [21.15, 221.52]], \"sentences\": [\"Guys arm wrestle indoors in the presence of two referees.\", \" The referees point in the direction of the winner.\", \" The players give a dab handshake.\"]}, \"v_83WXP5z80Y0\": {\"duration\": 140.67000000000002, \"timestamps\": [[0, 9.14], [11.96, 127.3], [55.56, 75.26], [128.71, 131.52], [135.74, 140.67]], \"sentences\": [\"Title screens are shown on the video.\", \"  The woman demonstrates using a hula hoop in a large room while another person talks.\", \"  Another person looks in through the window of the door.\", \"  The woman stops hula hooping and takes a bow.\", \"  The ending credits roll.\"]}, \"v_X_9NiZmR2tQ\": {\"duration\": 45.19, \"timestamps\": [[0, 45.19], [40.44, 43.15]], \"sentences\": [\"Two people are playing tennis on a court.\", \" One person falls back on their back.\"]}, \"v_cBCi-pOE5NQ\": {\"duration\": 165.95, \"timestamps\": [[0, 58.91], [58.08, 101.23], [101.23, 119.49], [119.49, 165.95]], \"sentences\": [\"A man has his sax around his neck and he is explaining about reeds and mouth pieces and how you should put your mouth on it or what nor.\", \" He talks for a while about this, demonstrates how you would move your tongue to make sound.\", \" He blows into the sax to demonstrate a little more.\", \" He even briefly puts his finger in mouth to try to explain a little better as well.\"]}, \"v_rjgu0ucCW7U\": {\"duration\": 123.86, \"timestamps\": [[4.95, 91.03], [98.47, 117.66], [118.28, 123.86]], \"sentences\": [\"A man pushes a lawn mower around a grass lawn area with tents cutting the grass.\", \" The man cuts the tall grass around a tree.\", \" The man shuts down the lawnmower and takes a break.\"]}, \"v_0Z_mhRoqG2E\": {\"duration\": 108.35, \"timestamps\": [[0, 20.04], [19.5, 108.35]], \"sentences\": [\"A close up of a landscape is shown followed by a woman climbing up a rock on it's side.\", \" The woman continues climbing and ends with her reaching the top and throwing her arms up.\"]}, \"v_KDPa4AvVt0s\": {\"duration\": 191.57, \"timestamps\": [[0, 191.56], [90.04, 188.69]], \"sentences\": [\"A group of people is playing dodge ball in a court.\", \"  People joke to the camera.\"]}, \"v_fY2IeYSxY4U\": {\"duration\": 185.95, \"timestamps\": [[0, 66.94], [66.01, 137.6], [137.6, 185.95]], \"sentences\": [\"A white wall is shown with pegs poking out and strips of tape hanging down and a girl begins cliff climbing the wall as a man in a blue shirt begins to talk.\", \"The young lady continues progressing up the wall as the man continues to talk in a split screen.\", \"The man lifts his foot up to talk about a certain position and the girl demonstrates it as she begins getting off the plate.\"]}, \"v_lC12SCZ_-1o\": {\"duration\": 102.77000000000001, \"timestamps\": [[0, 15.93], [19.53, 40.59], [41.11, 102.77]], \"sentences\": [\"A small car is covered in a thick layer of snow.\", \" A man appears with a sweeper.\", \" He uses it to rake all the snow off the vehicle.\"]}, \"v_ggNmtMAdqe0\": {\"duration\": 135.47, \"timestamps\": [[6.77, 41.32], [48.09, 50.8], [55.54, 109.73], [114.47, 132.08]], \"sentences\": [\"A man welds a section of a steel beam in a workshop.\", \" The tip of the welding gun is adjusted using pliers.\", \" The man marks and measures pieces of plate metal in between making welds on it.\", \" The man demonstrates the angle to make a weld on the piece of plate metal.\"]}, \"v_ZIBWRRBft8g\": {\"duration\": 170.37, \"timestamps\": [[0, 26.41], [26.41, 133.74], [133.74, 170.37]], \"sentences\": [\"man is kneeling on the floor talking to the camera and showing the tiles above the wooden floor.\", \" man is showing a place without the wooden floor and its putting the wooden pole in the floor measuring the space.\", \" the man puts a wood sheet in space and put floor tiles.\"]}, \"v_pAAGm-KEFW0\": {\"duration\": 229.07, \"timestamps\": [[0, 34.36], [34.36, 40.09], [40.09, 46.96], [46.96, 57.27], [57.27, 64.14], [64.14, 69.86], [69.86, 83.61], [83.61, 90.48], [90.48, 107.66], [107.66, 229.07], [197, 207.3]], \"sentences\": [\"There is a boy sitting on the bed showing off his sunburn and putting cream on it.\", \" A friend is shaking his head because of the other guy's sunburn.\", \" The friend lifts his shirt to show his sunburn as well.\", \" The camera pans around room and back to the first guy.\", \" A girl walks by carrying a plate, puts it on the table and does a dance.\", \" The camera pans to a mirror with two men standing in it with a phone and waving.\", \" The camera looks over the balcony of the room.\", \" A woman puts a plate of food on a table and a man walks back inside.\", \" The sunburned man is taking his shirt off and laying it on the bed.\", \" His friends help him with cream on his sunburn.\", \" The woman is sitting at the table eating.\"]}, \"v_BJM1rUjXvkQ\": {\"duration\": 223.32999999999998, \"timestamps\": [[0, 40.2], [36.85, 128.41], [115.01, 161.91], [156.33, 223.33]], \"sentences\": [\"The candied fruits are in the bowl, then the woman pour liqueur in it and mixed them.\", \" The woman added brown sugar on the butter, then added eggs one by one and mixed and then cream, then flour, baking soda, cinnamon powder and mixed them well.\", \" The dried fruit mixture is added in the batter, and then shredded nuts and they were mixed well together.\", \" The batter is pour into the pan, smooth the batter and making sure that its evenly distributed.\"]}, \"v_-qGmUrF_7v4\": {\"duration\": 204.96, \"timestamps\": [[0, 28.69], [28.69, 67.64], [67.64, 105.56], [105.56, 204.96]], \"sentences\": [\"A little girl in a room standing in front of some chairs is hitting a dora pinata.\", \" She hits it a few times and then its someone else's turn.\", \" An older girl hits it so hard that it doesn't break but the whole pinata falls down and the adults have to put it back up.\", \" After everyone takes their tun the little girl gets to go again, when hitting doesn't work they all grab a piece of string and pull it.\"]}, \"v_I3WRp3QB8eg\": {\"duration\": 123.93, \"timestamps\": [[0, 17.97], [17.97, 49.57], [48.95, 95.42], [95.42, 123.93]], \"sentences\": [\"A girl is seen speaking to the camera and walks into a hair salon and shakes hands with an stylist.\", \" Several shots of an artist are shown and the man then begins cutting the girl's hair.\", \" He hands her the hair and washes her hair followed by more cuts and looking into a mirror.\", \" In the end her hair looks just like the artist and she is seen smiling and hugs a person, ending with a side by side picture of the artist and her.\"]}, \"v__DiTdY1Mtj4\": {\"duration\": 146.15, \"timestamps\": [[0, 54.81], [54.07, 115.46], [114.73, 146.15]], \"sentences\": [\"A person is seen bending over near a crowd and begins playing a game of shuffleboard.\", \" The people continue playing back and fourth on the mat while other people playing around them and walk into frame.\", \" A man and woman are seen speaking to one another and is again shown pushing the pucks.\"]}, \"v_RLdlDewtKbE\": {\"duration\": 100.94, \"timestamps\": [[0, 1.51], [1.51, 76.71], [26.24, 27.76], [77.22, 98.92], [97.41, 100.94]], \"sentences\": [\"An intro is shown for a cricket game.\", \" Several players begin to play a cricket game on a field.\", \" A man stumbles over one of the cricket posts.\", \" The players shake hands as the game ends.\", \" The results of the game a then shown on the screen.\"]}, \"v_0EbXjHsMBmM\": {\"duration\": 208.14, \"timestamps\": [[0, 34.34], [34.34, 98.87], [98.87, 149.86], [149.86, 208.14]], \"sentences\": [\"At a store by the name of skinny ski's there is a table set up with things needed to saw down skis.\", \" A man uses some equipment to melt some wax over a ski, going over it a few times.\", \" He then directly uses the iron right on the ski too smoothen out the wax he just melted over it, going over it a few times.\", \" He then shows a package of dibloc low fluoro hot wax and information on how to contact for services.\"]}, \"v_HVU5EmblAP8\": {\"duration\": 174.36, \"timestamps\": [[0, 8.72], [8.72, 48.82], [48.82, 102], [102.87, 166.51]], \"sentences\": [\"We see the title card on black.\", \" A man is playing the drums with is hands.\", \" The man pauses then plays again.\", \" The man pauses then plays slower.\"]}, \"v_kliGNOFLJSk\": {\"duration\": 163.52, \"timestamps\": [[0, 31.89], [31.89, 163.52]], \"sentences\": [\"people is in a court stretching and making exercise, jumping the rope and weightlifting.\", \" man is talking to the camera and the people practicing capoeira, doing suicides and weightlifting are training.\"]}, \"v_MleQSQt6Utw\": {\"duration\": 180.98, \"timestamps\": [[0, 180.98], [16.29, 180.98], [28.96, 180.98]], \"sentences\": [\"A boy in a blue shirt is playing in the sand on the beach.\", \" A man in a white shirt is standing behind him helping him.\", \" A man in blue shorts is also helping the boy make the sand castle.\"]}, \"v_GFQuGc1yY8o\": {\"duration\": 106.14, \"timestamps\": [[0, 19.11], [19.11, 37.15], [37.68, 62.09], [62.09, 80.13], [80.13, 106.14]], \"sentences\": [\"A man is shown with a woman dancing in front of a large crowd on a tv show.\", \" The woman spins around as the man leads her through the routine.\", \" She then is lifted up and spun around again.\", \" They dance very romantically and she is spun around various times before being tipped backwards by the man as they continue to dance.\", \" The two dancers reach out to one another and the routine ends.\"]}, \"v_rML1aj5XW0M\": {\"duration\": 17.86, \"timestamps\": [[0, 5.62], [5.62, 10.36], [13.04, 14.91], [15.09, 17.86]], \"sentences\": [\"A wrestler is hoisted on a man's shoulders.\", \" The man throws the wrestler on a table.\", \" The other man hollers out loud.\", \" One of the other men stands over the injured man.\"]}, \"v_1C0Ur7fen8s\": {\"duration\": 71.26, \"timestamps\": [[0, 17.1], [20.67, 52.02], [53.45, 71.26]], \"sentences\": [\"A group of boys are playing a game of foosball with girls.\", \" The two groups stand on either side of the machine.\", \" They use the little men to hit the ball back and forth.\"]}, \"v_LlgGMRw16UY\": {\"duration\": 182.49, \"timestamps\": [[7.3, 100.37], [101.28, 104.02], [107.67, 117.7], [117.7, 176.1]], \"sentences\": [\"Teen compete skateboard down the road very fast.\", \" A teen falls face down from his skateboard on the ground.\", \" Another teen falls on the road.\", \" Other teens continue skating and some on them falls while skating.\"]}, \"v_XxMzH75Bhr8\": {\"duration\": 157.46, \"timestamps\": [[0, 81.88], [80.3, 124.39], [125.96, 157.46]], \"sentences\": [\"A large group of men are seen running around an indoor field when one scores a goal and the audience cheers.\", \" Several more shots of goals are shown followed by slowed down shots of each goal.\", \" Close up of players are shown and ends with a group of players all hugging and cheering with one another.\"]}, \"v_aFlumCYsZgM\": {\"duration\": 54.85, \"timestamps\": [[0, 9.6], [10.69, 54.85], [35.38, 45.52], [47.99, 54.85]], \"sentences\": [\"A boy enjoys an ice cream cone.\", \" A girl eats licks and eats an ice cream cone.\", \" The boy finishes the ice cream cone.\", \" The girl lightly licks the ice cream cone.\"]}, \"v_CkC1wxAaDjM\": {\"duration\": 121.88, \"timestamps\": [[2.44, 62.77], [90.8, 96.29]], \"sentences\": [\"An archery tournament begins and the montage shows the players hiding behind shields and firing back and forth.\", \" The parents of the children are shown watching the battle.\"]}, \"v_gaNiULmtQg8\": {\"duration\": 109.72, \"timestamps\": [[10.97, 15.36], [15.36, 104.23], [104.23, 109.72]], \"sentences\": [\"A girl jumps onto a balance beam.\", \" She begins to do a routine on the balance beam.\", \" She dismounts and lands on the mat with her hands in the air.\"]}, \"v_9XanCE5nX2Q\": {\"duration\": 168.82999999999998, \"timestamps\": [[0.84, 1.69], [3.38, 162.08]], \"sentences\": [\"There is a woman dancing on stage in front of a man in the beginning.\", \" There are many different women doing hip hop moves.\"]}, \"v_Qg3Lih9PTBM\": {\"duration\": 62.93, \"timestamps\": [[0.63, 14.79], [15.1, 16.05], [16.36, 48.14], [48.45, 62.3]], \"sentences\": [\"Two sumos wrestle fiercely while a judge watch them.\", \" Then, the sumo wearing black slip pushed out of the ring the other sumo.\", \" Then, two sumo wrestle and trip with the judge, one of them falls.\", \" After, the sumosn continue wrestling and the sumo with black slip falls out the ring.\"]}, \"v_QEfXMtnI6rw\": {\"duration\": 78.3, \"timestamps\": [[0, 27.01], [22.71, 63.42], [53.63, 76.73]], \"sentences\": [\"A man is seen speaking to the camera while holding up a piece of paper.\", \" The man also holds up a razor and begins writing on the paper.\", \" The man is then seen shaving his face and ending with credits.\"]}, \"v_zyh16NahocQ\": {\"duration\": 199.14, \"timestamps\": [[0, 199.14], [11.95, 35.84], [65.71, 78.66], [95.58, 97.58], [101.56, 127.45], [129.44, 175.24]], \"sentences\": [\"We see a lady talking in the bathroom.\", \" She shows us her blow dryer box.\", \" She brings the blow dryer box back into view.\", \" The lady grabs and lifts her hair.\", \" The lady shows us dryer attachments and the dryer.\", \" The lady brushes hear hair and adds blow drys her hair.\"]}, \"v_x9BN93AXNTQ\": {\"duration\": 196.26, \"timestamps\": [[8.83, 104.02], [87.33, 183.5]], \"sentences\": [\"A close up of a computer is shown followed by a man stepping into frame and singing into the microphone.\", \" The man continues singing while the camera captures him and fades to black in the end.\"]}, \"v_5vlGKyxl22M\": {\"duration\": 90.91, \"timestamps\": [[0, 65.45], [65.45, 71.36], [65.91, 90.91], [76.82, 79.54]], \"sentences\": [\"An old woman talks before run in a marathon where there is a lot of people participate.\", \" Then, the woman cross the finish line and people help her.\", \" A cameraman films on front the finish line while people is arriving.\", \" A woman raise her arms when cross the finish line.\"]}, \"v_3Z4b34lBnyU\": {\"duration\": 20.32, \"timestamps\": [[0, 1.42], [1.42, 10.97], [10.97, 20.32]], \"sentences\": [\"A very large man wearing a black speedo is standing in a wrestling rink huffing and puffing.\", \"A referee walks past the man, a man from the ground stands up and the very large man kicks him, picks him up, then slams him onto the rink.\", \" The man just lays there writhing in pain.\"]}, \"v_memk6ryZCjE\": {\"duration\": 182.81, \"timestamps\": [[4.57, 105.12], [77.69, 176.41]], \"sentences\": [\"Two women are seen speaking to one another and leads into them performing martial arts against one another.\", \" The girls continue to fight and leads into one sitting down while the other continues to perform moves.\"]}, \"v_qPZBSTNEl78\": {\"duration\": 31.09, \"timestamps\": [[0, 4.51], [5.44, 27.98], [28.6, 31.09]], \"sentences\": [\"A girl in red outfit serves the ball to her friend on an outdoor tennis match.\", \" The friend returns the ball and the two play a round of tennis.\", \" The ball is deflected by the net and the partner loses the round.\"]}, \"v_IdEcXDZ4Cos\": {\"duration\": 215.01, \"timestamps\": [[0, 32.25], [6.45, 32.25], [21.5, 50.53], [66.65, 215.01]], \"sentences\": [\"Several men stand on a pier.\", \" One of the men is shirtless.\", \" They bring out some raw meat.\", \" One of the men gets on a board and does tricks.\"]}, \"v_2zwUExKXw9s\": {\"duration\": 42.9, \"timestamps\": [[0, 3.22], [3.22, 40.76]], \"sentences\": [\"A group sits on horses as the stand and take a rest.\", \" The group rides on the horses along a trail.\"]}, \"v_s24-UW2mnjM\": {\"duration\": 215.77, \"timestamps\": [[0, 43.15], [43.15, 91.7], [91.7, 156.44], [156.44, 215.77]], \"sentences\": [\"This man is roller blading through the streets extremely fast.\", \"  He jumps over a closed off area and keeps on skating passed people into the streets.\", \" He is skating in the streets of paris along with another skater, still skating past people and going down into the subway.\", \" He hold on to the back of someones motorcycle and uses it to catch speed and then continues back out of the subway back on to the sidewalks.\"]}, \"v_zChDaAcfc2o\": {\"duration\": 75.61, \"timestamps\": [[0, 1.89], [1.89, 9.07], [12.47, 17.01], [12.47, 74.85], [50.28, 68.8], [68.8, 75.61]], \"sentences\": [\"We see water flowing over a river.\", \" A title appears on the screen.\", \" A person in a canoe goes over the waterfall.\", \" The person rides the rapids of the river.\", \" We see people on a rock on the riverbank watching the canoer.\", \" The person in the canoe smiles and talks to the camera.\"]}, \"v_dL--vW-AJJo\": {\"duration\": 213.23, \"timestamps\": [[0, 60.77], [58.64, 153.52], [162.05, 213.23]], \"sentences\": [\"A close up of tires are shown followed by a man working on a tire as well as being interviewed on camera.\", \" The camera captures the tool on the tires from several angles as well as lifting up the car to work underneath.\", \" More shots of the men working as shown as one speaks to the camera and ends by fading to white.\"]}, \"v_Qfi8dqC4E4s\": {\"duration\": 181.93, \"timestamps\": [[6.37, 37.3], [10.01, 50.03], [19.1, 90.05], [60.95, 127.35], [82.78, 181.93], [161.01, 181.93]], \"sentences\": [\"A man and woman wearing red jackets, the man was cheering, while the woman is taking video using her iPad, she has very serious look on her face, the woman handed the iPad to the man.\", \" A woman is picking up a pole, putting it inside the bigger pole, a man in blue jacket looked up from the ground.\", \" A male athlete wearing red and blue top, blue shorts ran, hopped and jumped, he fell on the #18 sand then got up walked around the grass and field towards the group of people.\", \" A male athlete wearing blue top ran to the lane, started hopping after passing the white line and jumped to the sand, hit the  sandy ground then stood up, then walked to the track field.\", \" A male athlete in red and blue uniform started to run to the field, hopped when passed the white line then jumped towards bed of sandy ground, he hit the ground, fell on his side and stood up and walked towards the field.\", \" A woman in red top is shown.\"]}, \"v_IKTYMYu8FFs\": {\"duration\": 107.09, \"timestamps\": [[0, 10.17], [14.99, 56.22], [58.9, 107.09]], \"sentences\": [\"A container of hair styling cream is shown by a stylist.\", \" She applies it to a seated brunette's skin.\", \" She then demonstrates how it works.\"]}, \"v_BnAG37ecNbA\": {\"duration\": 70.59, \"timestamps\": [[0, 15.18], [15.18, 31.41], [31.41, 43.41], [43.41, 70.59]], \"sentences\": [\"A woman is sitting on a hospital bed with a razor handle in her mouth and people around her are moving her hair out of her face.\", \" The woman then starts to pull the razor up and down the part of her left leg that she can reach with her bend.\", \"The woman then grabs the razor from her mouth with her right hand and starts shaving her left leg.\", \"The woman puts the razor handle back in her mouth and tries to shave again but it falls out of her mouth and she drops her head in frustration then leans back on the bed, laughs, and then crosses her arms.\"]}, \"v_Et8xkGzQOTA\": {\"duration\": 42.12, \"timestamps\": [[0, 7.16], [14.32, 16.43], [21.27, 42.12]], \"sentences\": [\"A man in a black hat is standing on the street.\", \" A person starts dancing on the street.\", \" A man starts break dancing in front of a car.\"]}, \"v_ghFOHoBiyD8\": {\"duration\": 214.53, \"timestamps\": [[0, 20.38], [21.45, 53.63], [54.71, 166.26], [167.33, 214.53]], \"sentences\": [\"A man wearing glasses is holding a book and talking.\", \" He is shown entering a bowling alley.\", \" The man interviews players and joins them in a game of bowling.\", \" A player explains the techniques he uses.\"]}, \"v_rhfoyYzp93Q\": {\"duration\": 67.06, \"timestamps\": [[0, 63.71], [64.38, 67.06]], \"sentences\": [\"A person is paddling down a river in a canoe.\", \" The person turns and looks back.\"]}, \"v_dUvZ6-IVo34\": {\"duration\": 80.09, \"timestamps\": [[0, 19.22], [22.82, 65.67], [46.05, 78.48]], \"sentences\": [\"A man is seen speaking to the camera while holding up an instrument.\", \" The man then begins playing the instrument in front of the camera.\", \" The man continues to play the instrument and stops to look at the camera.\"]}, \"v_Cu8kOOnAjaw\": {\"duration\": 121.63, \"timestamps\": [[0, 14.6], [22.5, 102.17], [105.21, 121.63]], \"sentences\": [\"A dog is close to the camera, play fighting with another dog.\", \" They jump off a man's lap, then back on again as they continue to play.\", \"The man puts his glasses back on as the dogs calm down and lie down on his lap.\"]}, \"v_D-BRqQhL74Q\": {\"duration\": 44.0, \"timestamps\": [[0, 10.34], [10.34, 44]], \"sentences\": [\"Three girls are seen holding a rope with one walking away and two playing tug of war.\", \" Two girls switch places and the final two compete against one another playing tug of war back and fourth.\"]}, \"v_X1bmeq4u6YE\": {\"duration\": 171.46, \"timestamps\": [[0, 9.43], [10.29, 15.43], [24.86, 134.59], [142.31, 171.46]], \"sentences\": [\"A video shows how to make curry toast.\", \" The curry is in a pan and the bread and butter are on a tray.\", \" The man applies the butter, then the curry to the bread before toasting it.\", \" A cartoon charicature of a stick person dances at the end.\"]}, \"v_nuEK3POl9jA\": {\"duration\": 40.01, \"timestamps\": [[0, 7.6], [8.4, 28.21], [28.81, 29.41], [29.81, 40.01]], \"sentences\": [\"At the 2008 Olympics, a man prepares to lift a loaded barbell.\", \" He bends down and works his way up with great effort, finally lifting the barbell over his head.\", \" He drops the weights and they crash to the ground.\", \" He celebrates and we see that the Olympian has set a record.\"]}, \"v_tp0L6sR1qts\": {\"duration\": 62.32, \"timestamps\": [[0, 25.86], [23.37, 62.32]], \"sentences\": [\"A man is seen rolling out a bike and begins checking the tires with another man.\", \" One man cuts a wire and checks more tires  and another man spins the tires once more.\"]}, \"v_JU_o9ZtH-VM\": {\"duration\": 220.57, \"timestamps\": [[0, 68.38], [67.27, 220.57]], \"sentences\": [\"A balded man is seen speaking to the camera with a head sitting behind him with a head full of hair.\", \" He then cuts the hair on the dummy in a certain fashion and the camera zooms in on the finished result in the end.\"]}, \"v_5k0KMrksf8c\": {\"duration\": 9.68, \"timestamps\": [[0, 0.82], [0.82, 5.91], [5.91, 9.68]], \"sentences\": [\"Two teams are standing at the scrimmage line together waiting to play the game.\", \"The game begins and the two teams fight each ferociously in a game of Lacrosse.\", \"One person gets hit so bad,he is out and remains laying down on the field as the rest of the players take off down the field.\"]}, \"v_z6IsPWucZnU\": {\"duration\": 103.53999999999999, \"timestamps\": [[0, 13.46], [14.5, 54.36], [57.46, 103.54]], \"sentences\": [\"A baby is shown floating upside down in a pool.\", \" Trainers are teaching the child how to stay afloat.\", \" He is learning how to swim, keeping himself above water.\"]}, \"v__O6ONcIPR_s\": {\"duration\": 40.15, \"timestamps\": [[0, 1.81], [3.81, 40.15], [18.47, 40.15]], \"sentences\": [\"A wind kite is shown in the air.\", \" A man in a black shirt is controlling the wind kite and falls on the ground.\", \" Dogs are running around on the grass.\"]}, \"v_qYN_YrwUCBs\": {\"duration\": 164.51, \"timestamps\": [[0, 4.94], [4.94, 16.45], [16.45, 158.76], [58.4, 115.98], [129.14, 134.08], [158.76, 164.51]], \"sentences\": [\"An introduction graphic comes onto the screen presenting a volleyball championship.\", \" A man comes onto the screen announcing the competition before it begins.\", \" Different girls are shown playing beach volley ball as the narrator tells the story of their road to the championship.\", \" Many of the team members are shown talking on the court and strategizing for the win.\", \" The video cuts to a conference room where there is a discussion about the volleyball players.\", \" The video ends with the graphics for the c losing credits.\"]}, \"v_NKZzGiS5hv0\": {\"duration\": 131.77, \"timestamps\": [[0, 30.97], [29.65, 89.61], [89.61, 131.77]], \"sentences\": [\"men are siting in a dark room talking to the camera.\", \" sumo wrestlers are standing in stage ready to fight and people are gathered around them and sitting in he terraces.\", \" men are talking in the dark room and explaining their point of view.\"]}, \"v_RQO61KXeBos\": {\"duration\": 238.77, \"timestamps\": [[0, 39.4], [39.4, 82.38], [82.38, 133.71], [133.71, 238.77]], \"sentences\": [\"A man starts running down with a stick he places it down and jumps over a really high obstacle, he lands and gloats.\", \" The next man takes his turn and he does the same using the stick to get over the obstacle and jumping up with excitement after landing.\", \" Then another man takes his turn and when he lands he throws off his helmet and yells and jumps for joy like the previous men.\", \" The audience is very thrilled too, they all take more turns trying to get the best score.\"]}, \"v__nup1BwPnXc\": {\"duration\": 106.72, \"timestamps\": [[0, 3.74], [4.27, 8], [8.54, 30.42], [30.95, 55.5], [56.03, 69.9], [70.44, 81.64], [81.11, 96.58], [97.12, 106.72]], \"sentences\": [\"We see an opening title screen.\", \" We see kids in purple pose for a photo.\", \" The kids then play tug of war as two girls stand nearby cheering.\", \" We switch to a girl and a boy cheering.\", \" We see two different kids cheering.\", \"  We switch the cheering kids again.\", \" The kids win and an jump and cheer as one girl talks to a teacher.\", \" We see the ending credits.\"]}, \"v_sA8fmJulHMs\": {\"duration\": 103.32, \"timestamps\": [[0, 12.4], [27.38, 68.71], [73.36, 97.13]], \"sentences\": [\"Several shirtless men are gathered in a room, one smokes a cigarette as the rest cheer him on.\", \" He sucks down the cigarette all the way down to the bud.\", \" He coughs a bit and then inhales it in his nose, pointing to the camera afterwards.\"]}, \"v_eM-l2d8e-CA\": {\"duration\": 186.6, \"timestamps\": [[0, 63.44], [51.31, 140.88], [130.62, 179.13]], \"sentences\": [\"Pucks are seen sitting along the ice as well as a man speaking to the camera and people walking around.\", \" More clips are shown of people curling on the ice while also speaking to the camera.\", \" The people continue to push the puck along the ice while looking back to the camera as well as speaking to the camera.\"]}, \"v_PgoRelvwBUI\": {\"duration\": 45.88, \"timestamps\": [[0, 45.88], [13.08, 17.89], [24.32, 45.88]], \"sentences\": [\"We see a tire well on a table in a clamp.\", \" A man puts a vice grip on the well.\", \" The man pushes and spins a tire over the wheel well.\"]}, \"v_V3ZDyR7mVpc\": {\"duration\": 213.53, \"timestamps\": [[0, 17.08], [19.22, 25.62], [25.62, 29.89], [30.96, 70.47], [74.74, 80.07], [81.14, 87.55], [92.89, 97.16], [116.37, 152.67], [152.67, 177.23], [185.77, 191.11]], \"sentences\": [\"We see waterski and the side of a boat.\", \" We see a boy standing on a dock, people gas their boat then board.\", \" We see two boys playing.\", \" We see a person water skiing on a lake.\", \" We see the cars in the parking lot near the lake and a dog sniffs the camera.\", \" We see a shop then a person paddling on a kayak.\", \" A person jumps into the water and we see the water skier again.\", \" A boy on a trampoline in a shop, people on a raft and a boy jumps in the water.\", \" We see a boy on a toy bike, the water skier falls.\", \" A person on skis jumps a ramp.\"]}, \"v_otWcr0Rxy5g\": {\"duration\": 202.62, \"timestamps\": [[0, 33.43], [36.47, 158.04], [169.19, 202.62]], \"sentences\": [\"a group of performers are standing on a stage.\", \" They turn, and begin playing the drums.\", \" They put on sunglasses while they play for the audience.\"]}, \"v_uqAFtPVzEEs\": {\"duration\": 112.47999999999999, \"timestamps\": [[0, 25.31], [29.24, 112.48]], \"sentences\": [\"A news man is standing in front of a screen talking as it displays a volleyball game on the beach.\", \" Then we see the players, fighting over and kicking the ball, alternating with speaking to the camera individually before going back to scenes from the game.\"]}, \"v_qpdREcmjhUw\": {\"duration\": 44.47, \"timestamps\": [[0, 14.23], [14.23, 35.35], [35.8, 44.47]], \"sentences\": [\"A young boy has a long stick in had and is pushing a puck across a white triangle with numbers in it.\", \"The puck goes to far down the board and the toddler chases after it.\", \"Once the puck is back on the board,he takes off running back down the board.\"]}, \"v_9x7FyIJdVsI\": {\"duration\": 99.27000000000001, \"timestamps\": [[0, 43.18], [43.68, 99.27]], \"sentences\": [\"A male is shown deep underwater in a pool doing a breast stroke.\", \"As he is swimming,a man in an orange polo is standing on the outside describing his technique.\"]}, \"v_DsnVkCHbEVM\": {\"duration\": 65.9, \"timestamps\": [[0, 12.52], [12.85, 39.54], [39.21, 65.9]], \"sentences\": [\"A series of screen flashes and it shows statistics about driving drunk and when to take breaks driving.\", \"After, a group of about forty individuals are in a large pool playing water polo.\", \"The people take turns going back and forth throwing the ball and a person finally makes a goal.\"]}, \"v_wj0D-wiqEb0\": {\"duration\": 86.63, \"timestamps\": [[0, 9.96], [17.76, 70.61], [73.64, 86.63]], \"sentences\": [\"A man is playing a wooden instrument inext to another man, sitting inside a small room.\", \" When he is done, he lowers his instrument and smiles broadly.\", \" They appear to be riding inside a train.\"]}, \"v_sbvdGKpHy2M\": {\"duration\": 56.75, \"timestamps\": [[0.57, 7.38], [8.51, 14.76], [15.04, 22.98], [23.27, 45.97], [45.97, 51.36], [52.49, 56.75]], \"sentences\": [\"The interior and supplies of an old fashioned barber shop are shown.\", \" A man sharpens a razor strap.\", \" He shows off the cream as he puts it on his client.\", \" He then gently and professionally gives the man a beard shave.\", \" The man lies still as he applies a cloth, then aftershave.\", \" A close up is shown of the clean shaven face.\"]}, \"v_dUBkspFNj-E\": {\"duration\": 159.57, \"timestamps\": [[1.6, 158.77], [29.52, 31.12], [48.67, 63.83], [59.04, 63.83], [79.78, 95.74]], \"sentences\": [\"Guys are playing pool in front of an audience.\", \" A guy changes his pool stick.\", \" The two men stand close together and give an interview.\", \" A man puts his arm around his partner's shoulders, and his partner dances.\", \" A man sits on his pool game partner's lap after he makes his shot, .\"]}, \"v_e51NGAPMp1s\": {\"duration\": 105.91, \"timestamps\": [[4.77, 37.07], [38.66, 102.2], [102.73, 105.91]], \"sentences\": [\"A man sinks underwater in a pool.\", \" The man sinks underwater in a pool backwards.\", \" Text is shown on a black screen.\"]}, \"v_vLJz4a4NvRI\": {\"duration\": 104.7, \"timestamps\": [[0, 10.47], [10.47, 50.26], [50.26, 53.4], [54.44, 98.94], [98.94, 104.7]], \"sentences\": [\"We see an opening title screen and a man and lady look happy and the lady throws her hands in the air.\", \" We see a man dealing blackjack in front of a screen.\", \" We see a C emblem screen.\", \" We see the man continue to deal cards.\", \" We see the ending screen.\"]}, \"v_v-mNvC8zVhE\": {\"duration\": 141.46, \"timestamps\": [[0, 26.88], [29, 60.83], [60.83, 103.97], [102.56, 141.46]], \"sentences\": [\"A young lady is in a room rolling down a piece of grey and white wallpaper on a wall.\", \"She is now on another wall and is using a utensil to smooth out the paper.\", \"Then,she is shown cutting the grey wallpaper and brushing it.\", \"Finally,she moves to another flower piece and begins to cut off the excess paper ensuring it is measured correctly.\"]}, \"v_PzERiygIpkg\": {\"duration\": 72.24, \"timestamps\": [[0, 19.5], [16.61, 56.71], [49.84, 71.15]], \"sentences\": [\"A person is seen sticking their hands under a dink and rubbing soap on their hands.\", \" The person scrubs their hands thoroughly and then runs them under a faucet.\", \" She then grabs a paper towel to dry her hands and show them off.\"]}, \"v_AHd87Cn-NkU\": {\"duration\": 83.62, \"timestamps\": [[0, 41.81], [41.39, 83.62]], \"sentences\": [\"A close up of a sink is seen with cleaner on top while the camera zooms in on the sink.\", \" A woman is then seen rubbing down the sink with a rag and shows off the sink in the end.\"]}, \"v_h2HRRkwHoKw\": {\"duration\": 111.47999999999999, \"timestamps\": [[3.9, 18.39], [18.39, 34.56], [34.56, 72.46], [72.46, 85.84], [85.84, 98.1], [98.1, 104.23]], \"sentences\": [\"There is a busy restaurant by the lakeside where nearly all the tables are occupied by guests dining there.\", \" The server fills in ice in the glasses and barista makes coffee.\", \" The customers are busy eating their food that is served.\", \" The bartender is mixing drinks to make various cocktails.\", \" The barista is making latte and cappuccino.\", \" A lady customer is seen enjoying her drinks.\"]}, \"v_3_Gha8keu-A\": {\"duration\": 212.7, \"timestamps\": [[0, 1.06], [1.06, 7.44], [7.44, 212.7]], \"sentences\": [\"A group of women stand facing the camera.\", \" An older woman walks to the head of the group.\", \" The group dance together facing the camera.\"]}, \"v_gHYcZYkrxxQ\": {\"duration\": 137.76, \"timestamps\": [[0.69, 137.76], [0.69, 24.8], [26.18, 96.43], [97.81, 137.76]], \"sentences\": [\"A man in a snow covered parking lot lined with tall street lamps scrapes hardened snow and ice off of his maroon sports car at night.\", \"  The man begins by scraping ice and snow off of the bottom of his windshield and the hood of his car and front grill.\", \"  The man then scrapes and kicks at ice chunks surrounding the area around the front passenger tire.\", \" Lastly, the man scrapes ice off of the trunk of the car and the rear passenger tire area before waiving and walking toward the camera.\"]}, \"v_-s1MQAiOMeY\": {\"duration\": 125.9, \"timestamps\": [[0.63, 14.48], [48.47, 91.91], [93.17, 124.01]], \"sentences\": [\"A black template with scrolling print with white lettering goes across the screen in an upward motion.\", \"  A motor boat with two canoe like hulls on either side  of the sail, sails across an ocean, in daylight,  with two people hanging on to the side.\", \"  The image of the boat on the water changes to night vision with only green and white colors reflecting before the credits roll.\"]}, \"v_MuOkEmd4Gp0\": {\"duration\": 223.38, \"timestamps\": [[23.45, 62.55], [62.55, 101.64], [101.64, 125.09], [125.09, 144.08], [144.08, 163.06], [163.06, 179.82], [179.82, 198.8], [198.8, 208.86]], \"sentences\": [\"There are four people participating the BMX dirt biking competition.\", \" They are doing incredible stunts on their bikes by jumping up high over ditches and steep terrain.\", \" One of the bikers takes a fall after he leaps over a hilly road.\", \" Several other bikers go in full speed over hilly terrain and steep hills.\", \" People are gathered to watch and participate in the BMX event.\", \" The bikers continue doing their stunts as they go over hilly terrain and hilltops.\", \" The winners of the race are awarded trophies and certificates.\", \" They proudly raise their trophies high up to show their accomplishment.\"]}, \"v_xUHXFXela-0\": {\"duration\": 132.03, \"timestamps\": [[0, 23.77], [23.77, 31.03], [31.03, 132.03]], \"sentences\": [\"man is climbong a rock wall atached to harness.\", \" a group of friends are standing on the field and above them the man is climbing the rock wall.\", \" man is climbong the rock wall holding it and the other people on the floor is attached to harness ready to climb the wall too.\"]}, \"v_wEwp63lUsrE\": {\"duration\": 158.06, \"timestamps\": [[0, 56.11], [56.11, 158.06]], \"sentences\": [\"A man wearing gloves is seen speaking to the camera while holding up various objects to the camera.\", \" He then puts the objects together to create a large flame and hammers down a tool in the end and shows the results.\"]}, \"v_oYmE833AO2w\": {\"duration\": 178.32999999999998, \"timestamps\": [[0, 41.02], [41.91, 50.82], [52.61, 83.82], [83.82, 115.91], [116.81, 126.61], [126.61, 150.69], [150.69, 178.33]], \"sentences\": [\"A man in grey shirt applies plaster with a handheld spatula to the interior wall of a building.\", \" The main points to the corners of the room to show the line he is working.\", \" The man in applies more plaster the the wall and covers more area.\", \" The man in grey stops to discuss with his partner.\", \" The man in grey along with his partner begin to apply a coating on the wall together.\", \" The man in grey watches and gives tips to his friend.\", \" The man in grey and the friend both apply plaster together higher up on the wall and ceiling.\"]}, \"v_R_HDifqMHSY\": {\"duration\": 161.75, \"timestamps\": [[0, 16.18], [16.98, 54.19], [52.57, 121.31], [124.55, 161.75]], \"sentences\": [\"A singer is shown standing on a piano on a large stage and talking into the mic while a drummer plays in the background.\", \" He continues singing to the audience followed by jumping off the piano and dancing around the stage.\", \" The drums continue to play and the lights flicker behind him while people shuffle other drums around the set.\", \" The two men then begin playing the drums back to back with each other while switching between drum kits and movements.\"]}, \"v_l_R7AbA-d04\": {\"duration\": 62.0, \"timestamps\": [[0, 16.74], [16.43, 62]], \"sentences\": [\"A camera pans in on a television set that leads into a man holding a stick in front of a large crowd.\", \" He speaks to a woman and a shot of people playing shuffle board is shown in slow motion.\"]}, \"v_ni6VySdH0XY\": {\"duration\": 69.45, \"timestamps\": [[0, 13.54], [17.71, 45.84], [55.56, 69.45]], \"sentences\": [\"A person is sharpening a knife behind a table.\", \" People are standing in front of the table watching.\", \" He picks up the knife sharpener and uses it to sharpen the knife.\"]}, \"v_bXCOtMuaJf4\": {\"duration\": 147.63, \"timestamps\": [[0.74, 60.53], [43.55, 141.73]], \"sentences\": [\"A woman is seen washing dishes in a sink while a man speaks to the camera and zooms in on the dishes.\", \" The man continues to speak to the camera and demonstrate how to properly wash dishes.\"]}, \"v_sbT8DfccM7I\": {\"duration\": 182.31, \"timestamps\": [[0, 72.01], [72.01, 145.85], [144.94, 182.31]], \"sentences\": [\"A person is seen standing in front of a picnic table speaking to the camera while holding a bike wheel.\", \" He then puts the tire on the ground, moving his hands around the make sure the tire is properly inflated.\", \" He paces the tire back onto the table then pulls out a rope to tie it with.\"]}, \"v_Oheg1qwrESg\": {\"duration\": 65.62, \"timestamps\": [[1.64, 38.06], [31.83, 64.64]], \"sentences\": [\"Two people are seen moving back and fourth on a large mat while fencing with one another.\", \" The audience cheers as they finish and ends by showing the match again in slow motion.\"]}, \"v_afL6f_pwgMs\": {\"duration\": 120.93, \"timestamps\": [[4.23, 64.09], [47.16, 120.93]], \"sentences\": [\"A person is seen sitting in a tube drinking a beer while other people are seen siting off in the distance.\", \" More shots are shown of the people riding along in tubes while drinking beers and speaking to one another.\"]}, \"v_gLsHOCeeVUM\": {\"duration\": 215.6, \"timestamps\": [[0, 91.63], [95.94, 215.6]], \"sentences\": [\"A girl is seen speaking to the camera and leads into her holding bottles and washing her face.\", \" She wipes her face down with a towel and then puts lotion all over her face.\"]}, \"v_4r0qYLCucEI\": {\"duration\": 214.0, \"timestamps\": [[22.47, 38.52], [38.52, 63.13], [63.13, 95.23], [95.23, 136.96], [136.96, 161.57], [161.57, 175.48], [175.48, 194.74], [194.74, 205.44]], \"sentences\": [\"A man dressed inn a black shirt and camouflage print shorts is demonstrating how to fix the rubber tires on a car wheel rim.\", \" He shows all the tools that are required to do the process.\", \" He takes the rubber tire and sprays it with a liquid.\", \" Then he fits the inner rim of the wheel into the tire.\", \" He uses a mallet to secure it in tightly.\", \" He then uses a tool to tighten the various screws that run across the entire diameter of the inner circle of the tire.\", \" Then he uses a torque wrench to tighten the screws further.\", \" He fills in air and checks the tire pressure.\"]}, \"v_yEn-5y95DI0\": {\"duration\": 56.61, \"timestamps\": [[0, 3.68], [3.96, 15.85], [16.42, 40.19], [40.76, 51.23], [52.08, 56.61]], \"sentences\": [\"A group of girls are posing for a picture.\", \" They are then shown playing volleyall on a field in front of several tents.\", \" They lob the ball back and forth.\", \" A boy makes a hand gesture in front of the camera as he smiles.\", \" Again we are shown the group of girls posing in the photograph.\"]}, \"v_lrM8LSnXmSw\": {\"duration\": 75.72, \"timestamps\": [[0, 25.37], [20.07, 55.28], [47.33, 72.31]], \"sentences\": [\"A woman is seen speaking to the camera while standing in front of a board.\", \" She begins moving up and down the board while spinning herself around and moving her body.\", \" She continues to move and stops to face the camera in the end.\"]}, \"v_7lUaR1veDJU\": {\"duration\": 13.52, \"timestamps\": [[0, 13.52], [0, 2.64], [10, 11.49], [12.03, 13.52]], \"sentences\": [\"We see people playing water polo in a pool.\", \" A man in the rear on the right throws the ball to a player closer to the goal.\", \" That player then throws the ball across to a man on the left.\", \" A man grabs the ball and throws it in the goal.\"]}, \"v_j_IJQAywTuU\": {\"duration\": 72.8, \"timestamps\": [[0, 24.39], [12.38, 72.8]], \"sentences\": [\"A young boy is seen riding along a skateboard followed by several more shots of people riding on boards.\", \" The boys perform several tricks while the camera pans into the sky and move up and down the track.\"]}, \"v_KRz3aBw_TlQ\": {\"duration\": 188.34, \"timestamps\": [[0, 188.34], [54.62, 55.56], [179.86, 180.8]], \"sentences\": [\"Men take turns throwing darts at a dart board.\", \" A woman in the crowd claps for them.\", \" A man takes a drink out of a glass.\"]}, \"v_MlkXsUDCoww\": {\"duration\": 51.39, \"timestamps\": [[0.77, 16.44], [11.56, 34.17], [30.83, 48.3]], \"sentences\": [\"A person is seen pushing a lawn mower all across the yard.\", \" The person pushes the mower along the edge of the grass and throughout the rest of the grass.\", \" The man then grabs a weed wacker and cuts the weeds along the edge.\"]}, \"v_afORRx0QZgI\": {\"duration\": 131.96, \"timestamps\": [[0, 9.24], [8.58, 129.98], [19.79, 129.98], [86.43, 110.19], [129.32, 131.96]], \"sentences\": [\"A woman lays on the floor in a room.\", \" Music starts to play and she gets up and begins belly dancing.\", \" As she dances, others watch.\", \" In the background, a child gives a woman a hug as they watch on.\", \" The music stops and the dancer walks off stage.\"]}, \"v_izSjI7hH1-Y\": {\"duration\": 103.22999999999999, \"timestamps\": [[0, 26.32], [26.32, 55.74], [55.74, 103.23]], \"sentences\": [\"A young woman is sitting a chair extremely still as a pair of scissors are being put up her nose.\", \"The person who is piercing her septum continues to hold it and grabs the needle with the other hand.\", \"Once he pierces it,a drop of snot flies from her nose and the girl begins talking until the balls are on the end of the ring.\"]}, \"v_iwHZqcYwZYU\": {\"duration\": 11.59, \"timestamps\": [[0, 4.81], [4.87, 8.52]], \"sentences\": [\"A man steps on a diving board and jumps.\", \" Then, the man flips three times and and dive in the pool.\"]}, \"v_hR1HPLOmR1I\": {\"duration\": 43.86, \"timestamps\": [[0, 43.86], [15.79, 43.86], [0, 43.42]], \"sentences\": [\"A pinata is hanging from the ceiling.\", \" A boy is hitting the pinata with a stick.\", \" People are standing behind him watching.\"]}, \"v_ThYidZUtnuo\": {\"duration\": 53.69, \"timestamps\": [[4.03, 31.14], [31.67, 41.87], [43.48, 48.05]], \"sentences\": [\"A worker removes moss from the top of a roof.\", \" Another worker sprays water all over the roof.\", \" The roof is then really clean.\"]}, \"v_eC90hOqQ0yk\": {\"duration\": 38.06, \"timestamps\": [[0, 11.42], [8.94, 29.11], [22.64, 37.49]], \"sentences\": [\"Two men are seen kneeling before one another and begin wrestling one another.\", \" A large group of people are seen watching on the side while the men fight.\", \" The men continue fighting with one pushing the other out into the ring.\"]}, \"v_--mFXNrRZ5E\": {\"duration\": 97.8, \"timestamps\": [[0, 11.25], [14.18, 48.41], [49.39, 88.02], [90.96, 97.8]], \"sentences\": [\"Two men are dressed in fencing gear.\", \" They are battling on a court with their swords.\", \" Green lines occasionally indicate the moves they are making.\", \" They stab at each other with the swords and jump about the stage.\"]}, \"v_3IdaN49b9xg\": {\"duration\": 36.99, \"timestamps\": [[0, 27], [27.19, 36.99]], \"sentences\": [\"A person put objects in a pumpkin on a desk while looking inside it.\", \" When the man walks away, the pumpkin blast and turn on an light to see the a mouth and two eyes.\"]}, \"v_894d9_pty3o\": {\"duration\": 60.35, \"timestamps\": [[0, 7.85], [11.16, 44.36], [44.36, 60.35]], \"sentences\": [\"A group of people are skiing down the side of a mountain.\", \" A group of moose are baying between scenes of lifts and helicopters overhead.\", \" People give each other high fives as they ski.\"]}, \"v_6QImnhUemH0\": {\"duration\": 62.16, \"timestamps\": [[0.93, 1.86], [9.32, 13.36], [24.55, 32.32], [36.36, 44.44]], \"sentences\": [\"The man puts the mop into the blue mop bucket first and then he starts mopping.\", \" First he mops near the stove and the counter.\", \" Then  he mops on the floor that between the refrigerator and another counter.\", \" Then he mops the center of the kitchen floor.\"]}, \"v_7LvEI5zhENk\": {\"duration\": 232.13, \"timestamps\": [[0, 3.48], [0, 38.3], [39.46, 78.92], [80.08, 112.58], [114.9, 145.08], [146.24, 176.42], [177.58, 220.52], [222.84, 232.13]], \"sentences\": [\"We see a shot of a track and field arena.\", \" A lady in a blue shirt from Uzbekistan runs and performs a high jump and we see her score.\", \" We see a lady from china run and perform a high jump and see her score and we see her manager and a slow motion.\", \" An different lady from Uzbekistan performs a high jump and we see her score.\", \" The first lady performs again and knocks the bar over and looks disappointed.\", \" The lady from China has  a second turn and also knocks over the bar and looks mad.\", \" The second lady from Uzbekistan performs and clears the bar and almost cries.\", \" We see the arena and scoreboard on the screen.\"]}, \"v_UZNw4utsywI\": {\"duration\": 170.05, \"timestamps\": [[4.25, 57.82], [53.57, 121.59], [120.74, 165.8]], \"sentences\": [\"Several clips are shown of people riding around on skateboards in a park while looking back and smiling to the camera.\", \" The video continues with many more shots of people performing grinds and tricks on their skateboards and speaking to the camera.\", \" In the end they are seen driving around together in a car and laughing with one another.\"]}, \"v_nxDAt9SkPoA\": {\"duration\": 182.81, \"timestamps\": [[0, 97.8], [98.72, 148.99], [156.3, 182.81]], \"sentences\": [\"A group of men and women are doing jump rope for aerobic exercise.\", \" They run in a circle, jumping as they run.\", \" They then lay out mats, and do several yoga cool down moves.\"]}, \"v_9qOfesI3bGE\": {\"duration\": 115.66, \"timestamps\": [[0, 10.99], [12.14, 72.29], [73.44, 115.66]], \"sentences\": [\"A man is seated with an accordian on his lap.\", \" He pulls it in and out as he plays the keyboard with his other hand.\", \" He is shown with two different accordians as he continues to play.\"]}, \"v_S5Aj9b5T284\": {\"duration\": 185.74, \"timestamps\": [[0, 178.31], [52.94, 55.72], [96.58, 98.44], [143.02, 144.87], [179.24, 185.74]], \"sentences\": [\"Several men play table football while an audience watches on.\", \" A bald individual retrieves the ball and reinserts it into play.\", \" The bald individual reaches for the table for some reason.\", \" The bald individual retrieves the ball and reinserts it into play again.\", \" The players shake hands as the match ends.\"]}, \"v_ursegSrjG1M\": {\"duration\": 115.25999999999999, \"timestamps\": [[0, 56.48], [54.75, 114.69]], \"sentences\": [\"A man is seen speaking to the camera and leads into clips of him moving dirt.\", \" Other men help plant the areas while moving around wheel barrows and planting plants while still speaking to the camera.\"]}, \"v_IBte7CKOLSs\": {\"duration\": 161.07999999999998, \"timestamps\": [[24.16, 84.57], [84.57, 145.77], [146.58, 152.22]], \"sentences\": [\"A man throws a bowling balls and throws all the pins every time.\", \" Then, the man continues playing bowling successfully.\", \" The man miss one pin in the last play.\"]}, \"v_LkA7hS3FBkQ\": {\"duration\": 55.57, \"timestamps\": [[0, 10.56], [11.67, 37.78], [38.06, 54.73]], \"sentences\": [\"A rests underneath a car in place but not lifting it off the ground.\", \" A man uses an electric drill to wind up the floor jack and lift the car tire off the ground.\", \" The man uses the electric drill again to mind down the floor jack and lower the car.\"]}, \"v_PUHGXI6N0DA\": {\"duration\": 57.17, \"timestamps\": [[0, 9.15], [11.15, 51.17], [52.59, 57.17]], \"sentences\": [\"A male gymnast walks up to a beam, powdering his hands.\", \" He mounts the beam, then spins around it several times, changing between bars.\", \" He dismounts, then raises his arms into the air.\"]}, \"v_a-6lVnhqU4w\": {\"duration\": 127.32, \"timestamps\": [[10.19, 38.83], [37.56, 47.11], [46.47, 56.66], [51.56, 73.21], [73.21, 86.57], [84.66, 103.76], [106.94, 118.4], [118.4, 127.32]], \"sentences\": [\"A young woman is holding a tablet to record a video of people running in a race and she is standing in the stands at a track filled with people.\", \" A man is running across the grass field with an orange shirt and a flag on the grass in the middle of the track.\", \" Another man in a black shirt runs towards the man in the orange shirt.\", \" The young woman continues to video the track with her tablet.\", \" The man in the orange shirt is running across the grass again.\", \" The young woman puts her tablet down after trying to video the game and looks off into the distance at the people on the track.\", \" Everyone starts clapping together in the stands.\", \"  There is a photo with a guy wearing a track uniform.\"]}, \"v_TjDlEonao3s\": {\"duration\": 106.12, \"timestamps\": [[12.2, 92.32], [18.57, 54.12], [45.63, 85.95], [87.02, 101.34]], \"sentences\": [\"There's a woman doing a tutorial on how to use a curling iron on a model's hair.\", \" She takes sections of the model's hair one at time and puts it into the curling iron and then releases it gradually to pull out the curls.\", \" She continues the process till the entire head of hair is curled with the iron.\", \" The model then smiles and takes a selfie while looking in the mirror.\"]}, \"v_dzpsJQN4o-Y\": {\"duration\": 174.27, \"timestamps\": [[0, 3.49], [3.49, 6.97], [6.97, 12.2], [13.07, 16.56], [18.3, 21.78], [26.14, 28.75], [28.75, 52.28], [52.28, 67.09], [67.09, 88.88], [88.88, 147.25], [147.25, 155.1], [155.97, 159.45], [159.45, 165.55]], \"sentences\": [\"The door opens and two people wearing slippers enter the room.\", \" A logo briefly appears on the screen.\", \" Two men standing in front of a pair of bathroom sinks and mirrors remove the robes they're wearing to reveal spandex clothing, then turn to face the camera to speak.\", \" A large group of people ride bicycles down the road.\", \" A barefoot man stands in a bathroom.\", \" The title \\\"How to Shave Your Legs\\\" appears over a man performing that action.\", \" The men discuss and demonstrate using an electric razor to shave your legs.\", \" One then discusses how high your legs should be shaved.\", \" The man demonstrates how to lather up your legs.\", \" The two men demonstrate how to use a razor to shave your legs.\", \" They then demonstrate how to rinse your legs off.\", \" A man rides a bike down the road.\", \" The two men shave their other leg.\"]}, \"v_Ye6_xb7h7jc\": {\"duration\": 103.75, \"timestamps\": [[0, 42.54], [42.54, 77.29], [77.29, 103.75]], \"sentences\": [\"two kids are standing in front of a christmas tree showing purple boots that are on the christmas tree hanging.\", \" the kids are pointing out the balls and the ornamens.\", \" the kids stands next to the three and say goodbye to the camera.\"]}, \"v_bQ0L24YbGGI\": {\"duration\": 80.91, \"timestamps\": [[8.9, 29.13], [29.53, 30.34], [64.33, 69.18]], \"sentences\": [\"A woman is dancing on a stage.\", \" A person lifts them up in the air over them.\", \" Ballerinas are dancing on a stage.\"]}, \"v_U7x4eGLBITE\": {\"duration\": 154.97, \"timestamps\": [[0, 21.7], [22.47, 30.22], [34.09, 65.09], [66.64, 90.66], [91.43, 141.8]], \"sentences\": [\"People are pulled up a hill on a tug rope sitting on inter tubes.\", \" A family pulls their inter tubes along by hand and the top of the hill.\", \" A person sits in an inter tube at the top of a hill then rides down the slope laughing.\", \" The family straps together the inter tubes in a circular grouping with the kids sitting in them.\", \" The family rides in a large grouping of inter tubes down a snowy slope.\"]}, \"v_3kcGcDv0NOw\": {\"duration\": 73.65, \"timestamps\": [[0, 18.41], [17.31, 73.65]], \"sentences\": [\"An athletic man is seen spinning in circles and throwing a discuss long across a field.\", \" He steps up and throws several more balls in a circle while in the end wiping sweat off his face with his shirt.\"]}, \"v_UNPQdg_tWh4\": {\"duration\": 132.1, \"timestamps\": [[1.32, 44.25], [30.38, 93.13], [73.31, 127.48]], \"sentences\": [\"A man is seen walking across a yard while holding a stick in his hand.\", \" The man is then seen playing a game of crochet while others watch on the side.\", \" The man continues to hit the ball around as well as bend down and measure out his shots.\"]}, \"v_yHXZZEucV1I\": {\"duration\": 201.34, \"timestamps\": [[0, 7.05], [8.05, 49.33], [56.38, 100.67], [131.88, 142.95], [193.29, 200.33]], \"sentences\": [\"The credits of clip are shown.\", \" Limes are cut into pieces on a white cutting board.\", \" The cut limes are placed in a blender with a liquid and blended.\", \" The liquid is added to a pitcher with a strainer.\", \" The credits of video are shown.\"]}, \"v_GLHsjvmOXRs\": {\"duration\": 163.14, \"timestamps\": [[0, 10.6], [13.87, 61.18], [73.41, 163.14]], \"sentences\": [\"A news woman sits at a desk, talking.\", \" We see numerous people running into water with kayaks, racing down a river of rapids.\", \"When they are done, several of the competitors are interviewed on camera, and others walk in the water on fake kayaks.\"]}, \"v_eXUcFgDxslw\": {\"duration\": 24.87, \"timestamps\": [[0, 21.01], [17.66, 20.64], [19.02, 24.87], [20.14, 24.87]], \"sentences\": [\"We see a pregnant lady doing ballet in a studio.\", \" The lady spins and does a pliea.\", \" The people in the background clap for the lady.\", \" The lady then walks off camera while laughing.\"]}, \"v_cht49ZCSDmY\": {\"duration\": 19.39, \"timestamps\": [[0, 8.82], [8.43, 19.39]], \"sentences\": [\"Two water faucets are running and show a persons hands under the sink.\", \" The man moves his hands around and then ends with him wiping his hands through his hair.\"]}, \"v_PWriIL3pTWY\": {\"duration\": 98.52000000000001, \"timestamps\": [[0, 14.78], [14.78, 21.18], [23.15, 27.09], [36.45, 49.75], [49.75, 51.72], [51.72, 52.71], [64.04, 76.36], [74.88, 82.76], [85.22, 86.21]], \"sentences\": [\"A man in a pink suit talks to a man in a red suit and man not wearing a shirt.\", \" They play rock paper scissors.\", \" The man in the pink suit celebrates.\", \" The man not wearing a shirt chases the man in the pink suit.\", \" The man in the pink suit falls down.\", \" The man not wearing a shirt throws a white barrel at the man on the ground.\", \" A man in a black suit comes out from the bushes.\", \" He fights the man in the red suit.\", \" The man with out a shirt throws a barrel on the man in the black suit.\"]}, \"v_uaIu2yDmhNU\": {\"duration\": 43.65, \"timestamps\": [[0, 3.71], [4.8, 19.21], [20.08, 36.67], [37.54, 43.65]], \"sentences\": [\"A jump runner warms up before going in for a long jump.\", \" He does the long jump, then immediately hops up and runs back, cheering and celebrating with the crowd.\", \" He beats his chest and hugs people.\", \" He then poses in front of a scoreboard while people take photographs.\"]}, \"v_ODblEia5mcI\": {\"duration\": 119.24000000000001, \"timestamps\": [[0.6, 119.24], [0.6, 13.12], [13.71, 64.39], [64.39, 116.85]], \"sentences\": [\"A man makes repairs to a bicycle on the hardwood floors of a bedroom while two cats look on.\", \"  A man enters a bedroom and takes a part a bicycle on his bedroom floor.\", \"  The man then makes repairs using tools while two cats walk around the periphery watching and moving around.\", \"The man produces a lot of black dust while making the repairs to the bicycle, and he eventually leaves the room, comes back and then leaves again as one cat approaches the area the man was working from.\"]}, \"v_Jt-DIHv8YK8\": {\"duration\": 72.66, \"timestamps\": [[0, 72.66], [25.43, 25.79], [25.43, 72.66]], \"sentences\": [\"A kid in a blue shirt is long boarding.\", \" He falls off and onto the street.\", \" He keeps going down the street on his long board.\"]}, \"v_FjZKKAEEHbY\": {\"duration\": 179.07, \"timestamps\": [[0, 68.94], [50.14, 127.14], [111.92, 175.49]], \"sentences\": [\"A young woman is seen standing next to a horse and speaking to a small group.\", \" She pushes the horse a bit and begins brushing it's tail while still speaking to the group.\", \" She stops brushing while speaking to the group and walking away.\"]}, \"v_12IrPzohRSw\": {\"duration\": 113.59, \"timestamps\": [[0, 113.59], [16.47, 24.42], [30.67, 38.62], [65.32, 69.86]], \"sentences\": [\"We see people in bumper cars at a carnival.\", \" The camera pans left and we see the driving court.\", \" A person in purple drives past the camera.\", \" A girl smiles at the camera as she drives past.\"]}, \"v_c21Y_pi3-Gg\": {\"duration\": 168.11, \"timestamps\": [[0, 40.35], [39.51, 126.93], [114.32, 163.07]], \"sentences\": [\"Several close ups of sandwiches are seen as well as a person cutting up meat and vegetables.\", \" The person cuts up bread following by laying various ingredients on the bread.\", \" The person closes the bread to make sandwiches followed by putting them in a french press and presenting them to the camera.\"]}, \"v_xBtOxEIETtk\": {\"duration\": 38.22, \"timestamps\": [[1.15, 21.79], [15.67, 37.27]], \"sentences\": [\"A man is seen performing break dancing moves in the middle of a city square while people walk in and out of frame.\", \" The man continues to dance around and hold poses while looking back to the camera.\"]}, \"v_12qgT1JASV4\": {\"duration\": 159.31, \"timestamps\": [[0, 159.31], [57.35, 66.91], [139.4, 143.38]], \"sentences\": [\"Two people does kick box in a boxing ring on front a crowd, while the referee turns around the boxers.\", \" The referee fix the helmet of the boxer.\", \" A stick fly and lands on the boxing ring.\"]}, \"v_DyVqsDJYXdM\": {\"duration\": 212.18, \"timestamps\": [[0, 4.24], [4.24, 11.67], [11.67, 43.5], [43.5, 114.58], [114.58, 143.22], [143.22, 180.36], [180.36, 212.18]], \"sentences\": [\"A play the is part of a cricket game is shown on the screen.\", \" They players in the cricket game are shown celebrating and interacting with one another.\", \" A replay is shown and stats are then shown on the screen.\", \" The game continues with another play and a replay is shown of that play.\", \" Another play is shown and a replay of that play is shown as well.\", \" The next play is shown an the team begins to celebrate before a replay of that play is shown.\", \" The next play is shown and then the video ends.\"]}, \"v_AdXXy6WTVi0\": {\"duration\": 114.95, \"timestamps\": [[2.3, 46.56], [21.84, 103.46]], \"sentences\": [\"A camera pans around a beach area followed by people walking with a surf board and proceeding to do tricks on the water.\", \" The camera captures the men performing different tricks as well as swimming in the ocean and moving in slow motion.\"]}, \"v_M2pxaQiBbXA\": {\"duration\": 79.51, \"timestamps\": [[0, 78.71], [10.34, 79.51], [17.49, 36.97]], \"sentences\": [\"A water polo game is shown, with one player highlighted.\", \" A man dressed in white walks back and forth by the poolside in the background.\", \" A man dressed in white is shown standing in the foreground and gesturing.\"]}, \"v_9yiXv7Hu5Lw\": {\"duration\": 63.07, \"timestamps\": [[0, 5.99], [5.99, 50.14], [50.45, 62.12]], \"sentences\": [\"A man dressed in yellow and black winter clothes ice fishes on a a frozen lake.\", \" The man is reeling in a fish for a long time.\", \" The mans catch finally reaches the surface.\"]}, \"v_2cc7BoZHEJI\": {\"duration\": 88.38, \"timestamps\": [[0, 18.56], [18.56, 68.05], [77.77, 82.19]], \"sentences\": [\"People are playing a game of water polo in a swimming pool.\", \" A woman standing on the side of the pool is talking to the camera.\", \" A man blows a whistle on the side of the swimming pool.\"]}, \"v_Oj_PLXsWxL4\": {\"duration\": 171.36, \"timestamps\": [[0.86, 167.94], [7.71, 42.84], [42.84, 151.66], [154.23, 165.37]], \"sentences\": [\"A weightlifter stands on a wooden platform in a gym room and lifts heavily weighted bar bells above his head, several times while surrounded by onlookers.\", \"  A weightlifter lifts over three bar bells above his head squatting under the weight as other gym attendees look on as he hoists the weight above his head and then allows the bell to fall to the floor.\", \"  The man performs several more lifts of the bell bending at the knees first and then hoisting the bell to the shoulders before throwing the weight on the floor.\", \"  The man shakes  hands and hugs the onlookers when through with the demonstration.\"]}, \"v_cYLIJC6QjQA\": {\"duration\": 236.73, \"timestamps\": [[39.06, 71.02], [71.02, 112.45], [112.45, 133.75], [133.75, 164.53], [164.53, 181.1], [181.1, 224.89], [224.89, 236.73]], \"sentences\": [\"There are several people in a park participating in outdoor activities.\", \" There is a person biking on a tight rope, trying to balance as he falls off towards the end of the rope.\", \" There are children running around on the ground.\", \" There's another man walking on the tight rope.\", \" There are also many people sitting on the ground as they watch the activities.\", \" One man continues to walk and jump and bounce on the tight rope, doing stunts as the people watch him.\", \" There is a bicycle fallen on the ground with its wheels turning fast.\"]}, \"v_yqOW5LBA81w\": {\"duration\": 67.19, \"timestamps\": [[0, 27.21], [27.21, 67.19]], \"sentences\": [\"A man cuts the hedge of a house using a trimmer.\", \" The man stops cutting and pulls the wire of the trimmer and continues cutting.\"]}, \"v_agIcVWDyeH0\": {\"duration\": 86.94, \"timestamps\": [[0, 82.59], [17.82, 64.33], [68.24, 86.94]], \"sentences\": [\"A young boy is seen sitting on a chair talking to the camera.\", \" He shows that his arm is in a cast and putting on his socks and shoes.\", \" He finally ties his shoes and looks back at the camera.\"]}, \"v_9_7Z6Nhkzx8\": {\"duration\": 196.55, \"timestamps\": [[0, 51.1], [52.09, 151.35], [159.21, 196.56]], \"sentences\": [\"A few children are dressed up to go out on dirtbikes.\", \"  The children do jumps and make fast turns.\", \"  An onboard camera captures all of the fun.\"]}, \"v_jCyrQzXK4eI\": {\"duration\": 53.22, \"timestamps\": [[0, 53.22], [0.8, 16.23], [15.7, 53.22]], \"sentences\": [\"A young man is painting the fence.\", \" A man in white shirt came up to the man in stripes and talk to him.\", \"The man in stripes painted the bread, then he is talking in his cellphone.\"]}, \"v_MeGHSbUpM-U\": {\"duration\": 229.39, \"timestamps\": [[0, 229.39], [14.91, 204.16], [79.14, 158.28], [96.34, 200.72], [160.57, 229.39]], \"sentences\": [\"There are two people sailing on a speed boat through the ocean on a sunny day.\", \" They go through the ocean water steadily and at high speed.\", \" One of the sailors pulls a red rope as he wake boards on the steam boat.\", \" They speed through the water to catch up with another boat that is ahead of them.\", \" Several other steam boats pass by them as they sail through the ocean.\"]}, \"v_a073aSPGTIw\": {\"duration\": 194.65, \"timestamps\": [[0, 17.52], [27.25, 155.72], [158.64, 194.65]], \"sentences\": [\"A woman is in a home gym, talking to the camera.\", \" She demonstrates how to use exercise equipment, pedalling and pulling ropes, even while sitting at a computer.\", \" She talks to the camera for an extended period, peppered with training on the equipment.\"]}, \"v_rmGvgGOkqyk\": {\"duration\": 49.3, \"timestamps\": [[0, 0.25], [0.99, 34.01], [15.53, 17.5], [35.49, 40.42], [40.92, 49.3]], \"sentences\": [\"The audience look on at the games.\", \" A guy run with a thin, elongated stick and throws the stick.\", \" The guy sticks out his tongue.\", \" The guy holds his lips together and raises his hand.\", \" The guy smiles and puts a cloth down.\"]}, \"v_k5lyc7zsox8\": {\"duration\": 128.57, \"timestamps\": [[26.36, 68.78], [68.78, 111.86], [111.86, 120.21]], \"sentences\": [\"The Scottish Archery Association has gathered in their range with several people ready to participate in an event.\", \" the participants take turns to use their bow and arrow to aim art the target board placed several feet away from them.\", \" The archers aim their arrows and shoot at the target to aim for the bulls eye.\"]}, \"v_uJbM9KQBXak\": {\"duration\": 190.99, \"timestamps\": [[0, 190.99], [88.81, 99.31], [144.19, 171.89]], \"sentences\": [\"A person is walking along a slack line.\", \" They are moving back and forth on the slack line.\", \" He turns around and starts walking in the other direction.\"]}, \"v_eAFFf5cSX5c\": {\"duration\": 85.71000000000001, \"timestamps\": [[1.29, 68.56], [40.71, 85.71]], \"sentences\": [\"A man and a woman perform various dance moves back and fourth in an empty room.\", \" The couple continue to spin and perform the tango routine while the man spins her around behind him.\"]}, \"v_i3u27-oJzBY\": {\"duration\": 124.04, \"timestamps\": [[0.62, 27.91], [29.77, 89.31], [73.18, 114.74]], \"sentences\": [\"A man is seen speaking to the camera while holding a wire in his hands.\", \" He continues to speak while using his hands and stepping around a carpeted area.\", \" He then uses a vacuum on the floors while still speaking to the camera.\"]}, \"v_bNGldPjMYHc\": {\"duration\": 204.5, \"timestamps\": [[0, 48.06], [48.06, 56.24], [56.24, 76.69], [76.69, 84.87], [84.87, 193.25], [193.25, 204.5]], \"sentences\": [\"A clip is shown of a bunch of people white water rafting down some pretty tough river streams.\", \" They work in unison and it is very rough.\", \" They almost hit a rock as they all paddle very hard.\", \" A still show of them after making it through is shown with them cheering.\", \" A shot of them in slow motion of the most difficult parts is then shown.\", \" The video shows some more slow motion and fast motion before coming to an end and showing ending credits and a youtube channel name.\"]}, \"v_fpVaXCwccNk\": {\"duration\": 39.1, \"timestamps\": [[0, 0.2], [3.91, 22.48], [36.17, 39.1]], \"sentences\": [\"A lady is standing and holding a hammer.\", \" The lady spins with the hammer and throws the hammer.\", \" The lady leaves after releasing the hammer.\"]}, \"v_ap2XL5wma4c\": {\"duration\": 100.64, \"timestamps\": [[0, 15.1], [15.1, 100.64]], \"sentences\": [\"children are playing in an olimpic pool and a woman is talking to camera.\", \" kid is using sunscreen and a woman is talking about coppertone sunscreen recommended for kids.\"]}, \"v_lgWH94ea3-U\": {\"duration\": 73.61, \"timestamps\": [[0, 9.94], [12.15, 37.17], [41.22, 73.61]], \"sentences\": [\"A man is using a hookah inside a room.\", \" He turns and blows a pillar of smoke.\", \" Another man takes the hookah and takes a hit as well.\"]}, \"v_nlHN3bO_MOQ\": {\"duration\": 126.25, \"timestamps\": [[0, 126.25], [31.56, 126.25]], \"sentences\": [\"A drum line is happening on a city street.\", \"  They get in formation then start marching down the street.\"]}, \"v_oL1gGyMz79s\": {\"duration\": 137.39, \"timestamps\": [[20.61, 24.04], [25.42, 50.84], [61.83, 86.56], [92.05, 99.61], [105.79, 121.59]], \"sentences\": [\"A man is bowling and misses one pin with his first ball.\", \" He gets all strikes for the next six rounds.\", \" The man switches balls and bowls several more rounds getting mostly strikes.\", \" He changes his ball again and bowls two more strikes.\", \" A replay of the man bowling with each ball is shown.\"]}, \"v_w2fsq9BOoZo\": {\"duration\": 149.9, \"timestamps\": [[3.75, 32.98], [33.73, 80.94], [81.69, 149.9]], \"sentences\": [\"People are in a city walking, talking and doing activities.\", \" Two men play in the street paper, scissors and stone on front other people.\", \" A man talks with people watching him.\"]}, \"v_qnDHR-jYWf0\": {\"duration\": 24.99, \"timestamps\": [[0, 4.75], [5.25, 17.86], [18.99, 24.99]], \"sentences\": [\"a man is shown inside a swimming pool.\", \" He tosses a ball over and over to his dog.\", \" The dog continuously bounces the ball back with his nose.\"]}, \"v_HbF6UM4jUDk\": {\"duration\": 231.6, \"timestamps\": [[5.79, 231.6], [54.43, 231.6], [223.49, 231.6]], \"sentences\": [\"A woman in a green shirt is standing outside holding a hula hoop.\", \" She starts hula hooping with the hula hoop.\", \" Words come up onto the screen at the end.\"]}, \"v_l9mvKfKACio\": {\"duration\": 154.65, \"timestamps\": [[0, 44.07], [44.07, 115.98], [115.21, 154.65]], \"sentences\": [\"A group of people are outside a ski resort entitled Boulder ridge and they begin to wait in line with their tubes.\", \"As they are waiting,they can see several people going down the hill and tubing before it is finally their turn.\", \"Once they reach the bottom,they grab their tube and begin to walk off the slope.\"]}, \"v_2vixXUJiNhk\": {\"duration\": 223.01, \"timestamps\": [[0, 21.19], [21.19, 34.57], [34.57, 136.03], [136.03, 147.18], [147.18, 199.59], [199.59, 223.01]], \"sentences\": [\"An intro video with a blue screen that has a picture of a drawn ship is in the background while yellow words scroll from the bottom to the top.\", \"A view from the water begins and a few houses and a lot of trees are shown on land.\", \"A person underwater in snorkeling gear is now swimming around the bottom of the water and meets up with another snorkeler and they both go into a ship that is underwater as they both hold their flashlights and cameras to explore the ship and everything else at the bottom of the water.\", \"A school of fishes appear and they're swimming and hanging around the boat.\", \"The focus goes back to the snorkelers as they continue to explore the area with their flashlights.\", \"The outro video appears and it's the same blue picture as the intro and includes some contact information on the video and the credits begin to roll with the text scrolling from bottom to top.\"]}, \"v_CTmXCO7ha-Y\": {\"duration\": 186.6, \"timestamps\": [[0, 48.51], [53.18, 186.6]], \"sentences\": [\"A man is seated, playing a guitar.\", \" Close ups are occasionally shown of the instrument, then back to the man playing.\"]}, \"v_PU6f-DcDngM\": {\"duration\": 186.57, \"timestamps\": [[5.6, 182.84], [0, 186.57], [10.26, 186.57]], \"sentences\": [\"People are playing a polo match in a field.\", \"  The focus is on one man and horse who chase the ball.\", \"  The camera stays on number 2 the whole time.\"]}, \"v_XkTWEDKtP1A\": {\"duration\": 46.74, \"timestamps\": [[0, 7.71], [7.25, 19.87], [19.87, 32.02], [32.02, 46.74]], \"sentences\": [\"A man named bob is running and does a long jump.\", \" He does it again landing into some sand.\", \" He continues to do this run and jump again landing like a pro.\", \" Then another man named ralph is going to take his own turn next.\"]}, \"v_vjCKf3el7pM\": {\"duration\": 218.27, \"timestamps\": [[0, 115.68], [102.59, 218.27]], \"sentences\": [\"A man is seen looking closely into the camera followed by a person wake boarding and performing various tricks.\", \" Several shots are shown of people doing tricks along the water while the boat pulls them from the front.\"]}, \"v_q4jeW0iSA9Y\": {\"duration\": 82.27, \"timestamps\": [[0.82, 27.15], [25.91, 55.53], [62.94, 79.39]], \"sentences\": [\"Various text intros lead into several people running down a long track.\", \" The camera captures the runners from several angles and leads into them performing jumps.\", \"  The runners continuously jump into the pit and end with text across the screen.\"]}, \"v_WP8YccCA2Jc\": {\"duration\": 73.83, \"timestamps\": [[3.32, 11.81], [23.99, 27.32], [57.96, 63.12]], \"sentences\": [\"Man scraps the ice from his windshield.\", \"  The man in black puts a piece of cardboard on his windshield.\", \"  Man pours hot water mixture on his cold windshield.\"]}, \"v_oxcUr-Nlldo\": {\"duration\": 200.71, \"timestamps\": [[0, 8.03], [8.03, 26.09], [26.09, 139.5], [34.12, 40.14], [78.28, 86.31], [118.42, 130.46], [140.5, 168.6], [170.61, 200.71]], \"sentences\": [\"We see men walking down the street and a skateboarder fall.\", \" We see club kids and skateboarders with title screens.\", \" We see men skateboard down a street and stand around in groups.\", \" A man jumps over stairs and runs into the camera.\", \" A man falls and another runs into the camera.\", \" We see a man wave and another on a bull horn.\", \" The club lights flash and a band plays music as people dance.\", \" We see the credits and more skating.\"]}, \"v_JRg3W4xKvJI\": {\"duration\": 181.73, \"timestamps\": [[0, 5.45], [5.45, 159.02], [159.02, 177.2], [177.2, 181.74]], \"sentences\": [\"An intro clip appears and it's an animation of a gray rocking chair rocking on a very light gray screen that have orange words that say \\\"THE Strippers!\\\" and the white letters M&R in a dark blue oval.\", \"Clips of the shop exterior and interior are shown and it includes a person in an office, people in the shop working on the wood pieces, people being interviewed, wood supplies, and the finished wood pieces themselves.\", \" The outro appears and it's the video clip of the workers working on the wood pieces, and text appear on the screen that include the shops address, email, website and phone number, the exterior shop is shown again.\", \"The last screen is the light gray screen first shown and include the company name, number and the website.\"]}, \"v_SOpFjnAT_SE\": {\"duration\": 132.53, \"timestamps\": [[0, 6.63], [9.28, 58.31], [60.96, 95.42], [98.73, 132.53]], \"sentences\": [\"A girl sits in front of a lap top.\", \" She is smoking a hookah with a red tip, and blowing the smoke out of her mouth.\", \" She laughs, then shares the hookah with  another woman, who changes the tip and smokes as well.\", \" The women talk and smoke at the table for a long time.\"]}, \"v_76RoR_LbIzQ\": {\"duration\": 96.69, \"timestamps\": [[0, 14.99], [14.5, 16.92], [14.5, 96.69]], \"sentences\": [\"Pictures of an office is shown.\", \" A woman is doing another woman's hair.\", \" People are doing hair in a hair salon.\"]}, \"v_R7QwxoVTtE0\": {\"duration\": 72.77, \"timestamps\": [[1.46, 29.47], [32.75, 67.68]], \"sentences\": [\"A woman is seen speaking to the camera while holding various objects in her hands and begins spraying down a window in front of her.\", \" The woman wipes down the window with a rag as well as a scraper and continues to look back and speak to the camera.\"]}, \"v_BetFWvm92nM\": {\"duration\": 166.53, \"timestamps\": [[0, 86.6], [86.6, 118.24], [118.24, 166.53]], \"sentences\": [\"A girl pours liquid from a bottle to a cup that holds a young lady, then they rinse their mouths while making gestures and laughing.\", \" After, the young lady spits the liquid and then she pock the cheek of the girl who spits.\", \" Next, the girl turns on the faucet of the bathtub and bend, after the girl turns off the faucet and clean her hands while speaking.\"]}, \"v_YgrWck47C-g\": {\"duration\": 86.31, \"timestamps\": [[0, 19.85], [20.28, 23.3], [24.17, 33.23], [36.68, 50.06], [52.65, 57.4], [57.4, 69.91], [69.91, 86.31]], \"sentences\": [\"We see an opening title screen.\", \" We see a man talking.\", \" The man wets his hands and adds soap.\", \" We see the man wash his hands.\", \" The man rinses his hands.\", \" The man drys his hands and turns the water off with the paper towel.\", \" We then see the ending credits.\"]}, \"v_xIAq1OdWQM0\": {\"duration\": 151.44, \"timestamps\": [[3.03, 143.11], [6.81, 61.33], [42.4, 105.25], [86.32, 146.14]], \"sentences\": [\"Several young men practice long jumps, and backward jumps inside of a gym with an American Flag hanging on the wall.\", \"  A man practices a long jump inside of an indoor gym using a interior sandbox  for landing and a drawn race track isle.\", \"  Another man practices hurling himself backward over a pole onto a gym mat inside of the gym.\", \"  Several more men practice long jumps and backward jumps inside of the gym using the sandbox and gym mats as landing tools.\"]}, \"v_PziLzNjG2bI\": {\"duration\": 21.11, \"timestamps\": [[4.75, 6.86], [6.86, 11.93], [11.93, 20.37], [20.37, 21.11]], \"sentences\": [\"There are two contestants participating in the athletic jump competition.\", \" There are several spectators and judges watching them as they jump over the bar in a large indoor stadium.\", \" Both the contestants successfully jump over the bar.\", \" There is a slow motion video of the contestant jumping over the bar.\"]}, \"v_3vs3ofTw1vY\": {\"duration\": 220.92000000000002, \"timestamps\": [[30.93, 70.69], [70.69, 109.35], [109.35, 152.43], [152.43, 167.9], [167.9, 198.82], [198.82, 208.76]], \"sentences\": [\"There are several people getting ready to ski.\", \" There's a person skiing downhill with full speed whose shadow can be seen.\", \" There are people sitting and waiting on top of a mountain waiting to start skiing.\", \" The skier going fast downhill is demonstrating how to turn and manage speed while going downhill.\", \" There are some people walking toward the ski mountain on a escalator.\", \" The skier continues to ski downhill steadily on steep and winding slopes.\"]}, \"v_QrsOyEw4_7k\": {\"duration\": 164.51, \"timestamps\": [[25.5, 34.55], [34.55, 46.89], [46.89, 59.23], [59.23, 71.56], [71.56, 131.61], [131.61, 156.29]], \"sentences\": [\"There's a girl with light eyes and dark brown hair talking about a colored eye lenses.\", \" She is doing a tutorial on how to wear colored lenses in your eyes.\", \" She opens a small glass bottle that contains the colored lenses.\", \" She removes the lens out and places it on her finger.\", \" Then she gently wears the lens in her right eye first and then in her left eye.\", \" She shows the yellow colored lens that she has worn.\"]}, \"v_L7Gt1NO1nx8\": {\"duration\": 73.03, \"timestamps\": [[0, 2.92], [0, 73.03], [17.53, 21.91], [68.28, 73.03]], \"sentences\": [\"We see the title over the scene.\", \" We see the reverse of a man is mowing his lawn with an electric mower.\", \" The man goes halfway up the yard and turns around.\", \" The ending title returns to the screen.\"]}, \"v_nARkYpOZWyg\": {\"duration\": 59.86, \"timestamps\": [[0, 59.86], [40.41, 59.86]], \"sentences\": [\"A man rides on a small rail cart blowing leaves with a leaf blower.\", \" The man goes right on a fork in the tracks on a cart and around a bend.\"]}, \"v_0zXTrkgUj0U\": {\"duration\": 56.8, \"timestamps\": [[0, 56.8], [36.07, 56.8]], \"sentences\": [\"A young child uses a toy vacuum cleaner on a wood floor.\", \"  The mom comes and helps the child.\"]}, \"v_EZZzVXqxG6U\": {\"duration\": 192.12, \"timestamps\": [[0, 51.87], [51.87, 104.71], [104.71, 149.86], [149.86, 192.12]], \"sentences\": [\"Multiple men begin to start turning their bodies as quickly as they possibly can.\", \" They each in different situations but all playing the same sport.\", \" They build up as much speed as possible so they can throw as far as possible.\", \" There are even audience for this sport that actually come to watch it.\"]}, \"v_8klHUzPHtQw\": {\"duration\": 179.65, \"timestamps\": [[0, 22.46], [22.46, 34.13], [35.93, 62.88], [84.44, 93.42], [94.32, 106], [107.79, 175.16], [178.75, 179.65]], \"sentences\": [\"We see a BMX biker as he prepares to to ride.\", \" We see the gate open and see the field.\", \" The rider takes off down the course.\", \" We see riders perform jumps and people riding bikes.\", \" We see another start and a group of people take off in an indoor track.\", \" We see shots of men riding outdoors and another gate opens.\", \" We see a bike laying on it's side.\"]}, \"v_7xLL5okHSIU\": {\"duration\": 127.48, \"timestamps\": [[0, 14.66], [17.21, 74.57], [45.25, 61.83], [66.93, 96.88], [96.25, 127.48]], \"sentences\": [\"A intro begins and shows a man holding a shovel and talking to the camera.\", \" He gradually rakes leaves and talks to the camera and shows several people also helping picking up leaves.\", \" Different people are interviewed on camera while several others are shown raking up the leaves.\", \" A man is seen sitting in his car and another puts his gloves on.\", \" The camera pans over the raked up leaves while several others discuss their hard work.\"]}, \"v_kTStFRAp99E\": {\"duration\": 10.75, \"timestamps\": [[0, 2.04], [1.99, 3.49], [3.49, 10.75]], \"sentences\": [\"We see two girls one sitting the other bending over.\", \" The bending girl stands up.\", \" We see a person painting the sitting girls toe nails.\"]}, \"v_QTD0vCdofTE\": {\"duration\": 32.18, \"timestamps\": [[0, 31.54], [8.21, 31.54], [0, 32.18]], \"sentences\": [\"little kid is in a parking playing hopscotch next to cars.\", \" man wearing shorts is standing next to the hopscotch game.\", \" litle blond kid is standing in street playing in font of a man.\"]}, \"v_MyqWp3ipXxA\": {\"duration\": 219.07999999999998, \"timestamps\": [[4.38, 78.87], [83.25, 166.5], [156.64, 211.41]], \"sentences\": [\"A large rock is shown followed by people moving around objects and leading into a new segment.\", \" A man is then seen cutting up a pumpkin while a woman speaks and leads into a weather report.\", \" The man then shows the pumpkin around a group of people as well as close up.\"]}, \"v_RX8YG2zlyUo\": {\"duration\": 85.47, \"timestamps\": [[0, 25.64], [26.92, 85.47]], \"sentences\": [\"There are horses, and they are getting off a trailer.\", \" They go to ride through the desert, through different portions of the desert.\"]}, \"v_vfJnUQ9Tax0\": {\"duration\": 32.28, \"timestamps\": [[0, 14.2], [9.84, 28.89]], \"sentences\": [\"A woman is seen washing her hands under a sink with a light appearing in the water for temperature.\", \" The person continues scrubbing their hands and shakes them off in the end.\"]}, \"v_4wIqgWw53XE\": {\"duration\": 163.86, \"timestamps\": [[7.37, 44.24], [45.88, 141.74], [25.4, 39.33], [142.56, 149.12]], \"sentences\": [\"People sail on sailboards in the ocean.\", \" A man sails on a sailboard passing on front other sailors.\", \" A plane fly above the beach where people sail.\", \" A woman takes picture of the city from a hill.\"]}, \"v_BxyOAXTWkzk\": {\"duration\": 132.61, \"timestamps\": [[0, 19.89], [22.54, 101.45], [111.39, 132.61]], \"sentences\": [\"Several people are seen in different scenes, walking in public.\", \" A man helps a woman mount a horse in the woods.\", \" She feeds the horse apples as they ride through the wooded paths.\"]}, \"v_BVzW_OoUmnU\": {\"duration\": 84.27, \"timestamps\": [[0, 12.64], [10.95, 42.13], [41.29, 65.73], [66.57, 84.27]], \"sentences\": [\"A boy is standing out in the woods holding a piece of bark and talking to the camera.\", \" A woman is seen making a stack of logs while the boy walks into frame.\", \" She continues lighting the stick until a flame begins and puts it into the fire.\", \" The fire gradually gets bigger and the woman puts more and more bark into it.\"]}, \"v_aj2cioE_yG0\": {\"duration\": 226.09, \"timestamps\": [[0, 57.65], [59.91, 162.79], [157.13, 218.18]], \"sentences\": [\"A man is seen wearing a red shirt and standing next to a fooseball table.\", \" The man plays a bit followed by holding up a beer can and presenting it to the camera.\", \" The man then continues to play while the camera zooms in on the table.\"]}, \"v_Zhfm2dWtnpc\": {\"duration\": 89.86, \"timestamps\": [[0, 82.67], [8.54, 17.07], [84.47, 89.86]], \"sentences\": [\"A man runs all around doing jump rope while the crowd cheers.\", \"  Some people are crawling around in the background on the floor.\", \"  The man finishes the routine and then runs over to hug a woman.\"]}, \"v_t2wawfMaTzM\": {\"duration\": 66.2, \"timestamps\": [[0.33, 15.89], [15.89, 46.34], [46.67, 62.89]], \"sentences\": [\"Two kids are seen standing around in indoor room holding tennis rackets.\", \" The camera pans around to children hitting the ball holding tennis rackets.\", \" The kids continue to hit the ball around one another.\"]}, \"v_Chj1_JbBc4A\": {\"duration\": 169.91, \"timestamps\": [[3.4, 68.82], [45.03, 144.43], [144.43, 168.21]], \"sentences\": [\"A small group of people are seen standing with one another and leads into them running and playing a game of paintball.\", \" The cameraman aims all around him from capturing others and shooting several times off into the distance.\", \" The game continues on with the man running around and stopping in the end.\"]}, \"v_88Mt7VfUQBU\": {\"duration\": 172.26, \"timestamps\": [[0, 172.26], [21.53, 172.26], [31.87, 164.51]], \"sentences\": [\"A man is kneeling down on a blue mat.\", \" Another man kneels down on the ground next to him.\", \" The man lifts up one end of a weight and lifts it over his head.\"]}, \"v_2DTwoKZsLMo\": {\"duration\": 163.63, \"timestamps\": [[16.36, 38.45], [38.45, 45.82], [45.82, 70.36], [70.36, 89.18], [89.18, 110.45], [110.45, 139.9], [139.9, 150.54]], \"sentences\": [\"A man wearing black socks is shown putting his black leather shoes on and tying his laces.\", \" There's another person wearing brown leather shoes on black socks.\", \" He ties the laces tightly to secure them.\", \" Then another scene shows a person wearing leather slip on shoes over black socks.\", \" Followed by several scenes showing the person wearing brown leather shoes with laces.\", \" He wears the shoes over black socks and ties the shoe laces securely.\", \" He then stands up after he's done wearing the brown leather shoes.\"]}, \"v_3HUvtWSu4mA\": {\"duration\": 122.82, \"timestamps\": [[0, 54.04], [37.46, 121.6]], \"sentences\": [\"A person's hands are seen clipping the nails of a cat while the cat struggles a bit.\", \" More shots of her clipping the cat are shown and at one point he moves and she grabs him by the neck.\"]}, \"v_yEBiJguscMY\": {\"duration\": 74.05, \"timestamps\": [[0, 74.05], [4.44, 5.92], [27.77, 28.88]], \"sentences\": [\"Two men are playing wall ball in a room.\", \" There is an audience watching them play.\", \"  The man pretends his racket is a guitar.\"]}, \"v_i9t0zZzzbhE\": {\"duration\": 156.18, \"timestamps\": [[7.81, 27.33], [27.33, 44.51], [44.51, 63.25], [63.25, 73.4], [73.4, 156.18]], \"sentences\": [\"men are in a stadium cleaning te snow from the stands.\", \" men are riding horses in snowy field.\", \" men are puting boots and polo uniforms.\", \" women are standing in a field walking and sitting on stands.\", \" men are playing polo in snowy field while people is around watching them.\"]}, \"v_GejFc4J2mfc\": {\"duration\": 181.63, \"timestamps\": [[0, 46.31], [45.41, 128.96], [129.86, 181.63]], \"sentences\": [\"A young man wearing a tie die shirt is seen speaking to the camera and then shows him picking out some clothes.\", \" He shows off his legs and then runs an electric razor down his legs shaving off the hair.\", \" He then puts shaving cream on his legs and shaves them, finally showing off his bare legs in the end and speaking to the camera.\"]}, \"v_A9uBPwP7DQc\": {\"duration\": 161.1, \"timestamps\": [[0, 161.1], [6.44, 8.86], [54.77, 75.72], [82.16, 126.46], [76.52, 161.1]], \"sentences\": [\"We see astronauts floating in a ship.\", \" The man hands the lady the microphone.\", \" The middle man crosses his hands and has the microphone.\", \" The lady gets the microphone back and talks.\", \" The lady grabs flute and plays.\"]}, \"v_bXp_reTHyHY\": {\"duration\": 101.94, \"timestamps\": [[0, 15.8], [14.78, 101.94]], \"sentences\": [\"A woman is seen walking with a horse and pans around to another girl walking away.\", \" More girls are seen holding a product and speaking to the camera and leads into the girls showing how to clean the horse and brushing the horse.\"]}, \"v_PhioVMXx0yY\": {\"duration\": 63.88, \"timestamps\": [[0, 8.3], [8.3, 20.76], [20.76, 41.84], [42.48, 63.88]], \"sentences\": [\"A man is using an elliptical trainer while standing.\", \" Then a woman sits on it as she uses it in another fashion.\", \" It switches between the two as they exercise.\", \" A close up is shown as to how the machine works, and folds up for easy storage.\"]}, \"v_AUSqTMtjD0Y\": {\"duration\": 44.68, \"timestamps\": [[0, 7.82], [8.94, 37.75], [39.76, 44.68]], \"sentences\": [\"A man and boy are outside on a driveway.\", \" They are competing to see how fast they can shovel snow off the driveway.\", \" They run back and forth as fast as they can.\"]}, \"v_kgPvfYhmn54\": {\"duration\": 183.06, \"timestamps\": [[0, 41.19], [46.68, 128.14], [135.46, 183.06]], \"sentences\": [\"A group of people are floating on rafts on a river.\", \" They are paddling the rafts through harsh white water rapids.\", \" The people fall out, and are pulled back in by other rafters before continuing on their way.\"]}, \"v_o9LZZeQZ-Zc\": {\"duration\": 66.6, \"timestamps\": [[1.66, 33.96], [35.96, 62.27]], \"sentences\": [\"A man is seen speaking to the camera while sitting in a kayak and holding a toy person on a kayak around in his lap.\", \" The man continues to speak to the camera while holding the object and leads into him riding around in the kayak.\"]}, \"v_NT0dXbWzt7w\": {\"duration\": 50.55, \"timestamps\": [[0, 30.84], [33.11, 39.68], [48.02, 50.55]], \"sentences\": [\"A little boy is filling an ice cream cone with ice cream.\", \" He licks the ice cream cone.\", \" He lifts the ice cream cone up to show the camera.\"]}, \"v_iDofsMwceTo\": {\"duration\": 126.06, \"timestamps\": [[0, 14.5], [14.5, 97.07], [95.18, 102.74], [102.74, 126.06]], \"sentences\": [\"A man is wearing a suit and speaking and the words on the screen say that his name is Rich Noonan and that he's the host of Best of The Best Television.\", \"A series still shot pictures of homes, people, stucco work being done on a home, a list of stucco information begin to play and the opening words before the pictures start say \\\"BEST OF THE BEST TELEVISION\\\".\", \"When the pictures are done a dark gray screen appears that include the name of the stucco company, their phone number and their website.\", \"The host appears talking once again and it ends with the words a screen saying BEST OF THE BEST TELEVISION and then a screen naming the producer and his website.\"]}, \"v_Yojuicji624\": {\"duration\": 146.98, \"timestamps\": [[0, 3.67], [3.67, 6.61], [6.61, 56.59], [56.59, 63.2], [63.2, 138.16], [138.16, 146.98]], \"sentences\": [\"Some white text on a black background explains that no humans were injured during this video.\", \" A young man is making some faces to the camera while standing in front of a rock.\", \" Some footage plays of other people tight rope walking and doing other tricks on the tight rope.\", \" An older man is riding a tiny bicycle inside a store.\", \" More footage is shown of tight rope walkers tripping and falling.\", \" Some graphics from the organizations who made the video are shown.\"]}, \"v_1pOmOTz-bzk\": {\"duration\": 63.53, \"timestamps\": [[0, 12.07], [8.58, 48.28], [44.79, 59.72]], \"sentences\": [\"A person is seen riding along the water in a kayak.\", \" The person uses a paddle to push themselves around the water while looking off into the distance.\", \" The person continues riding around flipping in the water and moving away from the camera.\"]}, \"v_QN2wHsiBEC0\": {\"duration\": 163.42000000000002, \"timestamps\": [[1.63, 162.61], [1.63, 58.02], [58.02, 108.68], [108.68, 161.79]], \"sentences\": [\"A man, with a saxophone around his neck,  demonstrates how to play the saxophone in front of a green chalkboard and next to a brown piano.\", \"  The man points to different sections of the saxophone as he talks to the camera.\", \" The man begins to play the saxophone briefly and then turns to the chalkboard and begins to write notes on it as he talks to the camera.\", \"  The man points to notes written on the chalkboard before beginning to play as he reads the notes from the board, before returning to talking and playing in front of the camera.\"]}, \"v_fljxcvQe_Mo\": {\"duration\": 84.43, \"timestamps\": [[0, 28.28], [28.71, 84.43]], \"sentences\": [\"The top shingle of a roof dangles unsecured.\", \" A man on a roof hammers a nail into the shingle, securing the shingle.\"]}, \"v_iKuBIzUHxYc\": {\"duration\": 154.02, \"timestamps\": [[0, 15.4], [16.17, 41.58], [43.9, 76.24], [78.55, 139.39], [139.39, 154.02]], \"sentences\": [\"A seated man is talking to a room full of soccer players.\", \" They kick the ball around in their locker room.\", \" The man talks to the camera about the game.\", \" He walks out, and a game is shown in progress as he discusses it longer.\", \" Men are shown talking, playing the game, and posing for a team photograph at the end.\"]}, \"v_akMN3uX51Ws\": {\"duration\": 92.83, \"timestamps\": [[0, 27.85], [28.31, 46.88], [46.88, 69.16], [69.16, 84.94]], \"sentences\": [\"Teens skateboard on the road and a parking lot during the day.\", \" The teens skateboard in the street day and night.\", \" Teens skateboard  in a busy street, then they skateboard on the rails of a building.\", \" After, the teens skateboard day and night in the street.\"]}, \"v_NM4nBojCSwQ\": {\"duration\": 74.93, \"timestamps\": [[3, 25.1], [23.98, 52.08], [49.83, 73.81]], \"sentences\": [\"A man is seen holding up a shirt to the camera while the cameraman speaks and pans back to the man with the shirt.\", \" The man holding speaking and points to an iron near him.\", \" He picks up the iron waiting for it to get hot, then proceeds to iron his shirt while looking at the camera.\"]}, \"v_2PAVJbmj2lQ\": {\"duration\": 57.85, \"timestamps\": [[0.58, 17.93], [15.62, 42.81], [43.39, 57.28]], \"sentences\": [\"A small group of people are seen standing around a gymnasium with one running down and shooting a basket.\", \" Several more people are seen running down the lane and shooting a basket above them.\", \" More girls run down to shoot a basket and end by walking back together.\"]}, \"v_vdYFwqfqgJA\": {\"duration\": 118.28, \"timestamps\": [[0, 30.16], [30.16, 73.93], [73.34, 118.28]], \"sentences\": [\"A still image of a hockey team is shown and a number seven is shown across the screen.\", \"A circle then highlights the player and the game begins.\", \"As the game keeps going,the athlete is pictured several times when he does something spectacular.\"]}, \"v_NwfosNrFnwk\": {\"duration\": 127.62, \"timestamps\": [[0, 14.68], [17.23, 71.47], [39.56, 127.62]], \"sentences\": [\"A man holding a pole runs quickly towards the finish line and throws it quite far.\", \" The athlete seems proud of his throw and his moment is shown again in slow motion.\", \" The commentator continues to discuss his technique while replaying the throw several times.\"]}, \"v_C5KcdwGSvbw\": {\"duration\": 109.16, \"timestamps\": [[0, 8.19], [7.1, 14.19], [15.83, 36.57], [31.66, 41.48], [44.75, 62.22], [70.41, 81.32], [83.51, 93.33], [96.06, 109.16]], \"sentences\": [\"A person is pressing buttons on an oven.\", \" A girl pours ingredients into a bowl together.\", \" She mixes the ingredients using a mixer then puts more ingredients in the bowl.\", \"The mixes again and finally puts another small amount of ingredients in the bowl.\", \" She mixes a third time and adds chocolate chips, finally mixing one more time.\", \" The oven peeps and she prepares a pan with cookie dough.\", \" She puts the dough into the oven and presses bake options.\", \" After several minutes she takes out the pan and spread the cookies out.\"]}, \"v_e1tC-0BSwV4\": {\"duration\": 87.4, \"timestamps\": [[0, 11.36], [10.93, 45.01], [45.01, 87.4]], \"sentences\": [\"Lemonade is seen being poured into a glass and a woman pouring out water.\", \" She mixes ingredients into a container and pours out more water.\", \" In the she she shows off her lemonade.\"]}, \"v_G7kqlq8WhRo\": {\"duration\": 171.11, \"timestamps\": [[4.28, 5.99], [10.27, 16.26], [17.11, 24.81], [24.81, 33.37], [33.37, 39.35], [40.21, 47.05], [47.91, 52.19], [53.04, 66.73], [67.59, 73.58], [74.43, 80.42], [81.28, 87.27], [88.12, 94.96], [94.96, 99.24], [100.1, 106.94], [107.8, 113.79], [114.64, 119.78], [120.63, 157.42], [153.14, 157.42], [161.7, 165.97]], \"sentences\": [\"A large group of people is seen standing around several men holding a rope preparing to play tug of war.\", \" Another group of men is seen with pulling the rope while a crowd standing around cheers them on.\", \" A third group of men are seen playing tug of war with a crowd around them.\", \" A forth group of men is shown also playing tug of war in a crowd.\", \" A fifth group of men is shown playing tug of war in a crowd of people and dogs.\", \" A different group of men plays tug of war with a crowd watching.\", \" A seventh group of men is playing tug of war in a crowd.\", \" A different group of men is playing tug if war and appear to be winning while being cheered on by the crowd.\", \" Yet, another group of men is playing tug of war while a crowd watches on.\", \" Another group of men is shown playing tug if war up close while a crowd watches.\", \" Another group of men plays while people sit and stand in the background.\", \" A different group of men is seen playing while people sit and stand around them.\", \" A different group of men is shown up close while people sit and stand in the background.\", \" A group of men is shown up close playing tug of war with people around them.\", \" Another group of men is seen playing while people stand on the sidewalk watching.\", \" A group of men in all black plays tug of war while people stand around them.\", \" A different group of men plays tug of war among a large crowd cheering for them.\", \" Some of the men fall down as they win the game.\", \" Another group is seen up close with a crowd of people and a young girl screaming.\"]}, \"v_sLtQvJXnrOE\": {\"duration\": 21.32, \"timestamps\": [[4.16, 12.79], [12.79, 17.91], [17.91, 19.82]], \"sentences\": [\"There's a guy wearing yellow rubber gloves demonstrating how to fix a tire on a car wheel.\", \" He is unscrewing the screws that hold the plates of the wheel.\", \" He loosens the screws to remove the tire.\"]}, \"v_gY-TqRhcWY8\": {\"duration\": 34.09, \"timestamps\": [[0, 5.28], [6.48, 24.54], [27.27, 34.09]], \"sentences\": [\"A group of young men are inside a room.\", \" They are engaged in a game of foosball together.\", \" They laugh and kick the people back and forth.\"]}, \"v_QRn9v8F8Nn0\": {\"duration\": 375.54, \"timestamps\": [[0, 75.11], [75.11, 375.54]], \"sentences\": [\"a sreet woth houses and cars covered by snow are shown.\", \" man is removing a thick layer of snow from a car.\"]}, \"v_DfYDYCWkB-o\": {\"duration\": 73.63, \"timestamps\": [[0, 14.36], [13.99, 54.49], [60.38, 73.63]], \"sentences\": [\"A woman is seen speaking to the camera while sitting in a chair and leads to hear sitting in a shower holding a dog.\", \" She scrubs the dog down with soap and then rinses the dog off while speaking to the camera.\", \" She is then seen playing with the dog outside and intermittently speaking to the camera.\"]}, \"v_rBEQh8V2TI8\": {\"duration\": 137.97, \"timestamps\": [[0, 6.21], [6.9, 78.64], [78.64, 137.97]], \"sentences\": [\"The words \\\"Conga The Entertainers Dance Company Flemington New Jersey\\\" appears on screen.\", \" Four young girls perform on stage at the \\\"American Dance Championships.\", \"\\\" The girls fall to the floor as part of the routine and continue to dance.\"]}, \"v_rE2IiY5E8LQ\": {\"duration\": 40.59, \"timestamps\": [[0.2, 11.97], [12.18, 20.9], [21.11, 29.43], [29.63, 35.92], [36.12, 40.59]], \"sentences\": [\"A man stands around a giant ball.\", \" The man kneels down and takes hold of a ball.\", \" The man slides out with the ball, sliding the ball in front of him.\", \" A man is hit by the ball and falls down to the floor.\", \" The man stands up and starts walking.\"]}, \"v_dNUZyM1gF1E\": {\"duration\": 33.07, \"timestamps\": [[0, 33.07], [22.65, 29.76], [29.76, 33.07]], \"sentences\": [\"Two teen boys are standing at a school playing rock, paper & scissors and are surrounded by a large group of teens who are watching.\", \" A woman walks towards them to look at what they're doing then walks back out of the circle.\", \" A man then walks to the boys and stops them by putting his hands on each boy and walking them off.\"]}, \"v_xI_XIVYtERk\": {\"duration\": 123.81, \"timestamps\": [[0, 5.57], [8.67, 89.14], [92.24, 110.81], [112.05, 123.81]], \"sentences\": [\"A moving cloudy sky with lightning appears before we see white text.\", \" Several people are shown close up, smoking cigarettes.\", \" Some talk to the camera.\", \" The video ends with the words South Beach Smoke.\"]}, \"v_BFXSk5F0E_w\": {\"duration\": 199.9, \"timestamps\": [[0, 16.99], [20.99, 176.91], [177.91, 199.9]], \"sentences\": [\"A woman speaks to the camera, then it cuts to a little boy using a hula hoop.\", \" The woman shows colored tape used to wrap a hose around and create the tube herself.\", \" She shows off the final product, then the boy using the hula hoop again.\"]}, \"v_9xC9rVAJHm8\": {\"duration\": 115.1, \"timestamps\": [[0, 9.21], [17.27, 83.45], [84.02, 115.1]], \"sentences\": [\"A woman is adjusting a camera in a bedroom.\", \" She is smoking a cigarette and ashing it into a tray.\", \" She grinds the cigarette into the tray when she is finished.\"]}, \"v_UeH0TCDAbSU\": {\"duration\": 139.18, \"timestamps\": [[0, 139.18], [9.74, 39.67], [36.88, 45.93], [49.41, 61.94], [61.94, 82.12], [82.12, 94.64], [97.43, 112.04], [112.04, 119.7], [119.7, 139.18]], \"sentences\": [\"A woman doing a presentation on how to iron a shirt.\", \" She is discussing the shirt and brings out a startch spray.\", \" She begins to to use the spray on the shirt.\", \" She then rearranges the shirt.\", \" Next she demonstrates how to iron the shirt.\", \" She then shows how to get the harder creases out.\", \" Next she flips over the shirt and places the sleeve down.\", \" She then shows how to iron the sleeve.\", \" She then flips the shirt over.\"]}, \"v_JLdp1Kz0naI\": {\"duration\": 198.18, \"timestamps\": [[0, 16.85], [16.85, 40.63], [40.63, 189.26], [189.26, 198.18]], \"sentences\": [\"A person is riding on  a dirt bike.\", \" He sets up for a race.\", \" He starts racing on his dirt bike.\", \" Text appears on the screen as it fades.\"]}, \"v_Iib8Qt_9HQc\": {\"duration\": 113.83, \"timestamps\": [[0, 29.03], [29.03, 106.43], [108.13, 113.83]], \"sentences\": [\"A man in a white shirt is standing in a gym.\", \" He sits on an exercise machine and starts working out.\", \" He finishes and puts the bar down.\"]}, \"v__uTNqQhQA9w\": {\"duration\": 92.81, \"timestamps\": [[0, 1.86], [2.32, 33.88], [2.32, 81.21], [83.07, 92.35]], \"sentences\": [\"A lady dances and speaks indoors.\", \" The lady mixes all the ingredients and bakes colorful layers for a cake.\", \" The lady added a lot of colorful embellishment to the layered cake.\", \" The lady goes outside to a rabbit cage.\"]}, \"v_B_-jPPr2RLA\": {\"duration\": 29.63, \"timestamps\": [[0, 0.89], [1.04, 15.56], [15.7, 29.63]], \"sentences\": [\"Two young boys stand on a residential driveway.\", \" The little boy plays hopscotch twice on the driveway.\", \" A little girl plays the game too and then follows the other children away from the driveway.\"]}, \"v_7edBQl3VD1o\": {\"duration\": 205.66, \"timestamps\": [[0, 20.57], [20.57, 39.08], [39.08, 43.19], [39.08, 47.3], [39.08, 180.98], [150.13, 180.98], [183.04, 199.49], [188.18, 197.43], [199.49, 205.66]], \"sentences\": [\"A man in an orange jacket holding skis is walking on the snow to a hill.\", \"The person holding the camera puts their skis down and holds the poles.\", \" The man in the orange jacket skis down the hill.\", \" The man holding the camera follows.\", \" They ski down the snowy hill.\", \" The man in the orange jacket can be seen in front of him skiing.\", \" They both stop and talk to a lady at the bottom of the hill.\", \" He takes off his glove and pulls his cell phone out.\", \" A man in a blue coat walks up to them and talks to them.\"]}, \"v_lgXtDr9pNAk\": {\"duration\": 64.0, \"timestamps\": [[0, 25.28], [24.96, 42.88], [42.56, 56.32], [56, 64]], \"sentences\": [\"A man up on the roof putting up some metal pieces through the shingles.\", \" He's putting little metal pieces on the metal to keep them held.\", \" He talks about it a little bit jokingly.\", \" Then he tried to adjust it a little more.\"]}, \"v_s-kFpQRPcyE\": {\"duration\": 163.56, \"timestamps\": [[2.45, 17.99], [16.36, 30.26], [31.08, 154.57], [155.38, 157.84]], \"sentences\": [\"The credits of the clip are shown.\", \" Hair products and hair tools  are displayed.\", \" The male stylist is does a client's hair with products, a clipper, and hair dryer.\", \" The credits of the video are shown.\"]}, \"v_e6Ti5g_zQ_4\": {\"duration\": 90.84, \"timestamps\": [[0, 18.62], [18.62, 45.42], [44.96, 64.49], [64.95, 90.84]], \"sentences\": [\"At a pool place people are all gathered around some pool tables waiting for players to take their turns.\", \" A male takes hie turn and then another in red takes his hitting but bot making it in.\", \"  No one makes it on their turn so they continue on to the next player.\", \" The game continues waiting for someone to make some shots.\"]}, \"v_mvomkmq32vU\": {\"duration\": 78.81, \"timestamps\": [[7.49, 11.82], [11.43, 44.92], [48.47, 73.29]], \"sentences\": [\"A track athlete prepares and stretches out on a starting line.\", \" A track athlete runs down a track and high jumps over bar onto a mat.\", \" The athlete makes attempts at jumping over the bar but is unsuccessful knocking it down on the mat.\"]}, \"v_ouqYXdtEuCI\": {\"duration\": 100.15, \"timestamps\": [[0, 28.54], [28.54, 36.55], [37.56, 48.07], [49.57, 68.6], [68.1, 100.15]], \"sentences\": [\"A girl is doing flips on a trampoline in a gymnasium.\", \" We then see a child dive backward into  pool.\", \" We see the kid on the trampoline.\", \" We then see the kids diving again.\", \" We return to the kids practicing on the trampoline and back to them diving again.\"]}, \"v_KYjWkaXVnbw\": {\"duration\": 169.76, \"timestamps\": [[0, 4.24], [4.24, 9.34], [33.1, 87.43], [89.97, 101.01], [104.4, 111.19], [156.18, 169.76]], \"sentences\": [\"A man is standing at a bar.\", \" We see the title screen on how to make a drink.\", \" The man pours three liquors and some lime soda in a glass.\", \" He stirs the glass with a metal tool.\", \" The man then drinks from the glass.\", \" The man points at the camera, we see the end sequence.\"]}, \"v_9bUNAiuRXyo\": {\"duration\": 17.25, \"timestamps\": [[0, 2.07], [1.98, 4.57], [4.49, 11.3], [11.3, 17.25]], \"sentences\": [\"A boy walks up to a post on a very large indoor court.\", \" He gets himself ready, moving his arms around.\", \"He begins to spin around very quickly.\", \" Finally letting go and throwing the ball.\"]}, \"v_JK1Wn9sORbs\": {\"duration\": 85.68, \"timestamps\": [[0, 24.85], [23.56, 65.12], [60.83, 81.4]], \"sentences\": [\"A man is seen speaking to the camera outside while various objects and tools sit around him.\", \" The man continues speaking and leads into clips of him pushing around a low mower.\", \" He continues cutting the grass and leads into more clips of him speaking.\"]}, \"v_Ke5MPiv-wrY\": {\"duration\": 136.37, \"timestamps\": [[0, 2.73], [3.41, 8.18], [8.86, 15.68], [16.36, 21.82], [17.73, 20.46], [22.5, 27.27], [27.27, 30], [29.32, 31.37], [33.41, 52.5], [39.55, 50.46], [53.18, 57.28], [56.59, 68.19], [64.78, 78.41], [72.96, 77.73], [82.5, 95.46], [94.1, 98.19], [99.55, 109.78], [110.46, 119.32], [120.69, 128.19]], \"sentences\": [\"The Awesomeness TV Network Logo Animation plays.\", \" A man is flipping and tumbling across a mat.\", \" The same man flips across the mat again, this time not wearing a shirt.\", \" The man is talking to the camera.\", \" A woman with a blue bow in hair walks across the screen behind the man and begins talking to another woman who exits the screen.\", \"  The shirtless man is shown flipping and tumbling across the screen again, this time he does not land his final flip and he falls onto his side.\", \" He then starts walking towards a man on the side of the mat.\", \" The bystander points to his head and the gymnast also does the same to his own head.\", \" The gymnast is talking to the camera again explaining what happened during that routine.\", \" A small video pops up in the lower right replaying the moment he falls.\", \" He starts flipping across the mat again.\", \" The man is standing next to a couple of other guys, he jumps up in the air and does some kicks.\", \" Now he is doing back flips across the mat.\", \" He goes from a forward flip to back-flipping.\", \" Now he is standing on the side line getting ready to do flips.\", \" He is doing some more flips and landing on the red mat.\", \" Now he is flipping again and reverses and starts flipping the other way.\", \" This time he is wearing a yellow shirt and starts by doing a kick, then starts flipping backwards.\", \" Now he is walking across the mat slowly.\"]}, \"v_UfrztSg9gf0\": {\"duration\": 118.38, \"timestamps\": [[2.37, 58], [47.94, 111.87]], \"sentences\": [\"A man is seen standing in on a large field performing various dog tricks with a dog.\", \" Another person watches in the distance as the man and dog continue to perform tricks and the dog running all around.\"]}, \"v_3mlxwa9Ve5I\": {\"duration\": 110.27000000000001, \"timestamps\": [[4.96, 11.03], [11.58, 17.64], [18.19, 25.36], [26.47, 35.29], [37.49, 41.35], [43.56, 59], [60.65, 63.41], [63.96, 68.92], [69.47, 79.95], [80.5, 86.01], [87.11, 93.18]], \"sentences\": [\"A man looks around and grabs his face.\", \" He places a towel over his face.\", \" The man showcases a shaving unit and a balm.\", \" He shows a bowl and swivels the shaving brush around it.\", \" The man places shaving cream all over his face with the use of his shaving brush.\", \" He takes a razor and shaves.\", \" He grabs the bowl again and swivels the shaving brush around the inside.\", \" He smothers shaving cream over his face face.\", \" He shaves his face once more.\", \" He splashes his face and dries it with a purple towel.\", \" He rubs an oil over his face and excitedly shows off his muscles.\"]}, \"v_AwoZxz8M8Jg\": {\"duration\": 179.61, \"timestamps\": [[0, 164.34], [44.9, 70.94], [55.68, 85.31], [158.05, 179.61]], \"sentences\": [\"A man in red turban stands in a kitchen.\", \" He pours some ingredients into a glass.\", \" He explains his methods holding a spoon.\", \" He then finishes the drink with a garnish.\"]}, \"v_e0E2EVuhYu0\": {\"duration\": 168.85, \"timestamps\": [[0, 43.06], [43.06, 125.79], [114.82, 168.85]], \"sentences\": [\"A close up of an ocean floor is shown as well as a scuba diver and fish swimming around.\", \" The camera continues to capture the bottom of the floor as well as several fish and bottom feeders on the ground.\", \" The scuba diver moves a flashlight around to capture the bottom and watches the wildlife move around.\"]}, \"v_NLTd7qCLT7o\": {\"duration\": 155.55, \"timestamps\": [[0, 47.44], [45.89, 49.78], [51.33, 155.55]], \"sentences\": [\"A man is walking on the grass wearing stilts.\", \" People are watching him next to a pond.\", \" He continues walking on the grass toward the people.\"]}, \"v_xAPz4YOcIX0\": {\"duration\": 169.09, \"timestamps\": [[0, 59.18], [53.26, 169.09]], \"sentences\": [\"A close up of a painting is shown followed by a brush dipping into paint and moving all along the picture.\", \" The person continues painting bushes in the picture and ends with credits rolling above the screen.\"]}, \"v_IAZV246DKis\": {\"duration\": 81.97, \"timestamps\": [[1.23, 21.31], [23.36, 54.92], [42.21, 78.69]], \"sentences\": [\"A close up of potatoes are shown followed by a woman speaking to the camera.\", \" The woman points to a pot and then begins peeling the potatoes and putting them into a pot.\", \" She mixes it with salt and dips the potatoes into ice water, watching them finish peeling.\"]}, \"v_44htu_ovvLs\": {\"duration\": 56.96, \"timestamps\": [[0.57, 35.88], [27.34, 56.96]], \"sentences\": [\"A woman is seen looking off into the distance followed by shots of her riding a horse and looking off into the distance.\", \" The woman continues riding around on the horse and ends with her walking away and waving to the camera.\"]}, \"v_bLpeUxij7YY\": {\"duration\": 66.68, \"timestamps\": [[0, 5.67], [7.33, 15.34], [15.67, 56.34], [57.68, 66.68]], \"sentences\": [\"A female weightlifter is attempting to lift a set of weights.\", \" She lifts at the knees slowly.\", \" She raises the bar to her chest, pausing.\", \" She then lifts it over her head before crouching beneath it.\"]}, \"v_ytvIoI5uwFA\": {\"duration\": 98.41, \"timestamps\": [[0, 13.78], [16.73, 36.41], [38.38, 45.27], [50.19, 88.57], [91.52, 98.41]], \"sentences\": [\"A man is standing in front of another man while someone adjusts the table between them.\", \" The men lock arms, and begin to arm wrestle.\", \" They push and pull hard, trying to win.\", \" They suddenly begin punching each other, breaking out in a fight.\", \" One begins to fall after a punch.\"]}, \"v_TiQ6P1NkPHU\": {\"duration\": 135.51, \"timestamps\": [[0, 135.51], [27.1, 53.53], [53.53, 135.51]], \"sentences\": [\"Two people are dancing in a dance studio.\", \" First the woman sways her hips a little bit and moves one foot behind the other.\", \" She also tells viewers to make eye contact with the person to make sure they're comfortable and at some point, the man spins her around in a circle and she comes back around for them to start dancing normal again.\"]}, \"v_bMWWSk_YFY8\": {\"duration\": 121.95, \"timestamps\": [[12.2, 22.56], [23.78, 93.9], [94.51, 101.22], [102.44, 121.95]], \"sentences\": [\"An ox is held by a trainer in a city plaza.\", \" Two ox duel with horns in a corral while trainers guide them.\", \" The ox charge at the trainers lined up against the wall.\", \" Spectators watch and walk in the stands during the event.\"]}, \"v_5vm6bjMeEN8\": {\"duration\": 219.38, \"timestamps\": [[0, 219.38], [9.87, 215], [216.09, 219.38]], \"sentences\": [\"People are working out in a room stepping on a step stools.\", \"  A man in a white shirt is leading the group.\", \" He then walks off behind the camera.\"]}, \"v_wQbVxdVTN-I\": {\"duration\": 50.34, \"timestamps\": [[0, 50.34], [3.78, 50.34], [23.16, 50.34], [34.74, 50.34]], \"sentences\": [\"A boy holds an axe outside.\", \" He swings the axe at a stump.\", \" Another boy is shown doing the same thing.\", \" They continue to try to split the wood.\"]}, \"v_C0F-xroK_Eg\": {\"duration\": 205.36, \"timestamps\": [[0, 205.36], [19.51, 36.96], [50.31, 56.47], [68.79, 82.14], [87.28, 105.76], [124.24, 130.4], [131.43, 149.91], [151.96, 205.36]], \"sentences\": [\"A man is talking about making a spicy pasta dish.\", \" The man takes sausage and cooks it in a pan.\", \" Parsley is added to the sausage.\", \" White wine is added to the mixture.\", \" Heavy cream is added to the meat along with a jar of marinara sauce.\", \" Water is shown boiling in the pot.\", \" Pasta and sauce are mixed together in the pot.\", \" The final pasta is added to a bowl and Parmesan cheese is added.\"]}, \"v_F-jZv4hqYds\": {\"duration\": 37.64, \"timestamps\": [[0, 11.67], [11.67, 25.22], [25.41, 35.01]], \"sentences\": [\"A large group of people are sitting on horses near gated areas.\", \" The people are looking around in amazement as one horse riding catches a calf almost instantly.\", \" The man ropes of the calf and the crowd cheers him on as the announcer gives him his time.\"]}, \"v_GqCS5MNl6a4\": {\"duration\": 194.79, \"timestamps\": [[0, 26.3], [30.19, 194.79]], \"sentences\": [\"Pictures of a town covered n snow is shown.\", \" A person is chipping the ice off of their car.\"]}, \"v_tN8mcdcwCwc\": {\"duration\": 46.91, \"timestamps\": [[0, 45.73], [9.15, 45.73], [44.33, 45.73]], \"sentences\": [\"A cat is laying on its back in someone's lap.\", \" The person starts clipping the cats nails with a nail clipper.\", \" They finish and pet the cat's foot.\"]}, \"v_hS7VEMlJ4N0\": {\"duration\": 70.19, \"timestamps\": [[0, 22.46], [22.11, 40.01], [40.01, 54.05], [55.8, 70.19]], \"sentences\": [\"A female is outside in a sports bra and bikini bottoms walking around prepping.\", \" She take her hair down and puts it back up in a ponytail.\", \" She spanks her butt and stands there getting ready to start her run.\", \" She starts her run and she jumps over the course and lands.\"]}, \"v_U2aNQHCnVfI\": {\"duration\": 171.62, \"timestamps\": [[0, 159.61], [9.44, 45.48], [44.62, 63.5], [51.49, 90.96], [60.07, 126.14], [119.28, 162.18]], \"sentences\": [\"There are two young girls holding violins in their hands, standing with a music stand and a book with music notes behind them.\", \" The older girl is helping and teaching her younger sister to properly hold the violin by changing her head position.\", \" Then the older sister grabs her violin and tunes the strings of the violin.\", \" Then older sister begins playing the violin while the younger sister watches her.\", \" The older girl shows her sister how to play the violin.\", \" Then they both begin to play the violin together.\"]}, \"v_aXnllTmgeqg\": {\"duration\": 88.05, \"timestamps\": [[0, 12.77], [16.73, 70.44], [72.64, 88.05]], \"sentences\": [\"A man is shown on a stage, playing drums.\", \" He beats the cymbals and drums very fast.\", \" He continues, making faces as he goes.\"]}, \"v_E-bv464MTsQ\": {\"duration\": 27.38, \"timestamps\": [[0, 5.2], [5.06, 27.38]], \"sentences\": [\"A large group of people riding horses are walking around each other on a large field.\", \" One of them throws a ball onto the field and the people begin playing a game on their horses.\"]}, \"v_hgTgOjkcvpc\": {\"duration\": 15.7, \"timestamps\": [[3.53, 8.71], [8.71, 10.52], [10.52, 13.73], [13.73, 14.99]], \"sentences\": [\"There's a man dressed in all white playing croquet in an open field.\", \" there are several chairs arranged in the field.\", \" He takes the mallet in his hand and hits the croquet ball to the hoop.\", \" He hits the ball and it lands straight into the hoop.\"]}, \"v_NXFnVeZen1U\": {\"duration\": 52.08, \"timestamps\": [[0, 1.82], [2.08, 4.69], [4.95, 17.97], [18.75, 19.01], [19.27, 32.29], [32.55, 33.33], [33.85, 52.08]], \"sentences\": [\"A man picks up a ball with his racquet and swings it to his opponent over the net.\", \" The opponent serves the ball.\", \" The teams engage in rapid back and forth hitting of the ball.\", \" The game stops for a second and resumes with one of the teams serving the ball.\", \" They battle each other on the court, sending the ball back and forth over the net.\", \" The ball goes out of bounds.\", \" A man serves the ball and they engage in a brief back and forth of the ball before the ball falls to the ground.\"]}, \"v_YVSD611Zpvo\": {\"duration\": 123.42, \"timestamps\": [[0, 2.47], [2.47, 33.32], [33.94, 65.41], [45.05, 65.41], [67.26, 108.61], [108.61, 123.42]], \"sentences\": [\"We see a black title screen.\", \" A man walks to a brick wall with a squeegee and shows us a bottle of windex.\", \" The man washes the window.\", \" The man sprays windex and washes off with squeegee.\", \" The man uses leaf blower to dry the window.\", \" The man finishes and talks about the window before walking off.\"]}, \"v_88wc2an-eC4\": {\"duration\": 123.58, \"timestamps\": [[0, 94.54], [34.6, 122.96]], \"sentences\": [\"TWo children are doing mixed martial arts in front of a television.\", \"  They are punching and kicking each other for sport.\"]}, \"v_5HW6mjZZvtY\": {\"duration\": 85.84, \"timestamps\": [[0, 27.04], [27.9, 63.52], [45.92, 84.55]], \"sentences\": [\"A man is seen in several shots on a skateboard in a dark warehouse.\", \" The man then begins jumping on his board to demonstrate moves.\", \" He continues jumping around the room while the camera captures his movements.\"]}, \"v_pbZVsdQNWNU\": {\"duration\": 211.74, \"timestamps\": [[0, 10.59], [10.59, 211.74], [99.52, 107.99], [136.57, 139.75], [135.52, 138.69]], \"sentences\": [\"We see a hockey goalie skating on the ice.\", \" The goalie blocks shots repeatedly.\", \" We see the goalie laying on the ice.\", \" A shot makes it past and the goalie has a tantrum.\", \" The goalie sits on the ground as a person makes their shot.\"]}, \"v_j15g2ZTig1k\": {\"duration\": 170.23, \"timestamps\": [[30.64, 73.2], [73.2, 120.01], [120.01, 158.31], [158.31, 170.23]], \"sentences\": [\"A man wearing a black shirt and blue jeans is playing an acoustic guitar.\", \" He plays a riff as he moves his legs rhythmically.\", \" He continues playing the guitar as the camera focuses on his hands and the guitar only.\", \"He plays several different tunes one after the other as he strums the guitar with his pick.\"]}, \"v_yslrb52Di5w\": {\"duration\": 51.29, \"timestamps\": [[0.77, 26.16], [21.54, 50.78]], \"sentences\": [\"A man is seen laughing and smiling to himself and leads into him playing a piano before him.\", \" The man pauses and looks off into the distance to see another man speaking to him as well as into a microphone.\"]}, \"v_AKoregkLJgc\": {\"duration\": 84.15, \"timestamps\": [[0, 8.42], [14.31, 53.44], [59.75, 84.15]], \"sentences\": [\"A line of players are on a court together.\", \" They begin jumping rope in unison.\", \" They move alike, dancing and flipping through the ropes.\"]}, \"v_czCM6ZNwHK8\": {\"duration\": 231.95, \"timestamps\": [[3.48, 5.8], [6.96, 221.51], [222.67, 224.99]], \"sentences\": [\"A guy prepares to play an instrument.\", \" The guy plays a saxophone and uses a microphone.\", \" The guy takes the saxophone out of his mouth and bents over.\"]}, \"v_9-xf_gylOR0\": {\"duration\": 38.13, \"timestamps\": [[0, 8.77], [8.77, 38.13], [20.02, 29.55]], \"sentences\": [\"A person is painting a wooden fence.\", \" A cat's paws can be seen coming out from under the fence.\", \" A dog is looking at the cat's paws.\"]}, \"v_IKrnz_OzqT8\": {\"duration\": 89.35, \"timestamps\": [[0, 84.44], [27.25, 51.38], [54.95, 82.2]], \"sentences\": [\"A man watches a performance on tv while playing a set of hand drums at home.\", \" The man looks forward and focuses while playing the drums.\", \" The man leans back and plays vigorously on the drums.\"]}, \"v_JZDTcGPKw2w\": {\"duration\": 195.33, \"timestamps\": [[0, 25.39], [25.39, 37.11], [37.11, 56.64], [37.11, 58.6], [58.6, 103.52], [103.52, 159.19], [159.19, 195.33]], \"sentences\": [\"woman is riding a horse in a barn and another woman is leading the horse with a rope.\", \" photos of various people riding horses are shown.\", \" woma is riding a horse in a barn and pictures of people riding horses.\", \" woman is riding a horse in a riding track.\", \" and a girl is jumping in the tracks too.\", \" childs are in a living room playing in front of a tv and pictues of theirs on the mood are shown.\", \" childs are in a bridge dancing and jumping into the pool.\"]}, \"v_ac1DjqY4xHs\": {\"duration\": 30.6, \"timestamps\": [[0, 26.47], [13.47, 19.28], [26.63, 30.6]], \"sentences\": [\"A young boy swings at a pinata without getting a good hit on it.\", \" The boy dodges the pinata that is swinging at him.\", \" The boy gives up and walks away.\"]}, \"v_9YnYdsmjkIY\": {\"duration\": 115.13, \"timestamps\": [[0.58, 111.67], [4.03, 47.78], [50.66, 113.97]], \"sentences\": [\"A man sits in a chair and talks while holding a harmonica and occasionally playing it while sitting in a front of green cloth backdrop.\", \"  A bald man sits in a wooden chair and talks to the camera while holding, pointing to and occasionally playing a harmonica in his hands.\", \"  The camera zooms in for a tighter shot of the man as he talks and before the man pulls the harmonica directly up to his face and plays the harmonica briefly before pulling the harmonica away and looking into the camera.\"]}, \"v_FCKkV9mYuI4\": {\"duration\": 140.81, \"timestamps\": [[0, 12.67], [26.75, 104.9], [109.12, 140.81]], \"sentences\": [\"A group of men are talking in a room.\", \" Several fighting scenes are shown from a martial arts movie.\", \" They move quickly, pretending to fight for the camera.\"]}, \"v_N84ci0Imc30\": {\"duration\": 67.2, \"timestamps\": [[1.68, 34.61], [29.57, 60.48]], \"sentences\": [\"A man is seen speaking to the camera and leads into shots of him walking down a hallway and getting a coffee.\", \" He grabs sugar, puts a lid over his coffee and then smiles off in the distance while walking away.\"]}, \"v_Z8yKTJeRMOE\": {\"duration\": 65.83, \"timestamps\": [[11.19, 55.95], [11.85, 24.69], [26.99, 38.84], [39.5, 55.95]], \"sentences\": [\"A man professionally paints several pieces of furniture using a spray painter in a paint shop while wearing overalls, a denim shirt and a paint mask.\", \"  The man begins by painting a wooden armchair metallic gray with a gold spray paint can.\", \"  The man then paints a side table black with lights shining off of the black painted wood.\", \"  The man ends with painting a dresser drawer pink before the scene fades to a black marketing graphic.\"]}, \"v_SSLcbqaBiRM\": {\"duration\": 208.93, \"timestamps\": [[0, 17.76], [16.71, 208.93]], \"sentences\": [\"A man starts out riding a dirt bike and immediately crashes into the ground behind him.\", \" The video follows several more people attempting to race a dirt bike and instantly crashing on the path in front of them.\"]}, \"v_5-ydqbn30kA\": {\"duration\": 30.49, \"timestamps\": [[3.66, 8.54], [8.54, 19.51], [19.51, 27.59], [27.59, 29.27]], \"sentences\": [\"A boy and a girl are sitting in their living room with colorful yarn and demonstrating how to knit.\", \" The boy is wearing a blue hoodie and the girl is wearing a white sweater with blue horizontal stripes.\", \" The mother who is not pictured in the video is taping them demonstrate.\", \" The boy holds the needles up and shows how he uses the yarn to knit.\"]}, \"v_x164DXmWtRM\": {\"duration\": 135.49, \"timestamps\": [[8.13, 109.75], [18.97, 54.2], [76.55, 81.97], [82.65, 111.1]], \"sentences\": [\"A group of masked people, wearing all black, play an animated graphic game of paintball in a war field.\", \"  An animated person runs through a field of black masked soldiers with a paint gun and begins shooting people, several people are wounded among a war field littered with empty stone shacks and abandoned cars.\", \"  The fighting soldiers pass an animated dog on a leash with a person dressed in a black and white referee uniform holding the leash.\", \"  The shooting continues among the masked soldiers until a \\\"red team wins\\\" letter box appears and the soldiers head to the right and thin out in numbers.\"]}, \"v_4_MR2Tpc7SM\": {\"duration\": 11.98, \"timestamps\": [[0.6, 5.81], [5.27, 11.86]], \"sentences\": [\"A man is seen bending down while holding a crochet bat and hitting a ball through a hole.\", \" The man then holds his hands up and looks back to the camera and smiles.\"]}, \"v_j_tKuqWYV-A\": {\"duration\": 138.04, \"timestamps\": [[3.45, 131.14], [13.11, 131.83], [93.18, 107.67]], \"sentences\": [\"Divers take turns diving from high dive platforms into a swimming pool.\", \" The crowd claps and watches the divers performance.\", \" A diver does a handstand dive from the highest platform into the swimming pool.\"]}, \"v_ouv2veXexVw\": {\"duration\": 42.05, \"timestamps\": [[0, 10.3], [10.51, 15.56], [15.77, 17.87], [18.08, 25.44], [25.65, 29.23], [29.44, 42.05]], \"sentences\": [\"A group of soccer players await the return of a soccer ball to the field.\", \" One soccer player kicks the ball into the field.\", \" Another soccer player takes hold of the ball and passes it to another soccer player.\", \" The soccer players kicks it to the goalie.\", \" The goalie kicks it to a nearby soccer player.\", \" The soccer player kicks it to another soccer player.\"]}, \"v_qS7TStZg_5c\": {\"duration\": 11.66, \"timestamps\": [[0.17, 5.07], [5.07, 10.2]], \"sentences\": [\"A man is showing playing guitar with a title screen shown on the left.\", \" The man strums over and over again while gradually banging his head to the beat.\"]}, \"v_Wu3wa5Rc_Qw\": {\"duration\": 17.62, \"timestamps\": [[0, 3.08], [3.08, 10.13], [10.13, 17.62]], \"sentences\": [\"A large waterfall is shown outside near a rocky trail of water.\", \"All of a sudden,a person on a long raft comes paddling down the water and goes over the fall with ease.\", \"Once over,they continue paddling and sailing through the water as the people on the side watches.\"]}, \"v_J7Q3b1uFHyc\": {\"duration\": 115.09, \"timestamps\": [[0, 27.62], [27.62, 58.12], [58.12, 112.79]], \"sentences\": [\"First the camera shows the three people who are snow tubing down the slippery snowy slide.\", \" Then one person is shown wearing glasses and other snow gear in the snow tubes.\", \"  Then a great amount of other people are shown snow tubing next to each other.\"]}, \"v_8K4cX9GfaII\": {\"duration\": 68.28999999999999, \"timestamps\": [[0, 36.88], [26.97, 65.56]], \"sentences\": [\"A person is seen painting a wall while the camera captures him moving quickly and others walking in and out of frame.\", \" The person continues painting along the wall with other people standing around and helping.\"]}, \"v_2-h36nfbFK8\": {\"duration\": 180.68, \"timestamps\": [[0, 17.16], [16.26, 25.29], [25.29, 37.94], [37.94, 50.59], [51.49, 84.01], [84.01, 108.41], [108.41, 129.18], [129.18, 180.68]], \"sentences\": [\"A man is snowboarding down a very steep hill at a fast pace.\", \" The video intercuts with various angles showing this trip down the mountain in a very exciting way.\", \" The kid jumps off of a log intended for this purpose and continues down the hill.\", \" Another man in yellow does back-flips off of a small snow ramp while going down the mountain.\", \" Another man in blue does the same and there are various cuts going back and forth between the three of them.\", \" They are highly skilled and going down every obstacle they can find.\", \" The video then shows multiple people hiking up a very rocky mountain as they speak to the camera.\", \" The people who climbed is then snowboard down it in a daredevil like stunt.\"]}, \"v_Z3bPr9odxpw\": {\"duration\": 203.45, \"timestamps\": [[2.03, 80.36], [82.4, 197.35]], \"sentences\": [\"A large group of people are seen walking on a stage with a man speaking to the crowd and leads into the group dancing with one another.\", \" The people continue dancing together as the camera captures them from several angles.\"]}, \"v_liK3LME0gNY\": {\"duration\": 236.57, \"timestamps\": [[0, 8.28], [8.28, 18.93], [18.93, 31.94], [31.94, 41.4], [46.13, 53.23], [53.23, 126.56], [128.93, 134.84], [160.86, 214.09], [214.09, 235.38]], \"sentences\": [\"A young girls is using a trowel on a wall and siting on the floor.\", \" She stands and wipes her trowel clean with a brush.\", \" She returns to the wall work.\", \" She stands and points and the wall.\", \" She she wipes the brush on the trowel again.\", \" She smooths the wall again.\", \" The girls uses a the brush to clean her tool.\", \" She wipes the wall again, then cleans her brush again twice.\", \" We are show the top of the wall and the girl as she works.\"]}, \"v_mSPUMHD4F-E\": {\"duration\": 169.55, \"timestamps\": [[0, 3.39], [3.39, 10.17], [10.17, 17.8], [17.8, 34.76], [34.76, 70.36], [70.36, 102.58], [102.58, 164.47], [164.47, 169.55]], \"sentences\": [\"An intro screen appears with logos, company names and website.\", \" A woman bends down in front of 3 boxes and begins to pull out tiled carpet pieces from the top box.\", \" A bunch of tools appear on a tiled floor and they include: Carpet Tape,Knife, Sticky Tabs and a T-Square.\", \" The woman is on a tiled floor with a pile of tiled carpets in front of her and she begins to dust off the excess carpet pieces off of the front and back of the pieces.\", \"A screen appears with the words \\\"Methods of Installation\\\" and includes 3 different diagrams of layouts, and then shows different tiled carpets in each layout.\", \"A woman is now kneeling on a tiled piece of carpet and she's pulling double sided sticky tapes off of a sheet and places them onto the tiled carpets and sticks them onto the floor.\", \"A different woman appears near a wall and she's demonstrating how to cut tiles once a wall is reached and uses a long ruler to measure, cut, and break apart the carpet tile and places it back onto the floor.\", \"The outro is a white screen with the logos, company names, and website.\"]}, \"v_S-mMmPO6a9s\": {\"duration\": 122.49, \"timestamps\": [[0, 122.49], [13.47, 122.49], [23.88, 122.49], [72.88, 122.49]], \"sentences\": [\"A man pushes a lawnmower on a lawn.\", \" Two children help him push it.\", \" They make several passes on the lawn.\", \" Several cars drive by them.\"]}, \"v_b4KrsFjcj-o\": {\"duration\": 148.7, \"timestamps\": [[0, 31.23], [37.92, 148.7], [69.15, 74.35]], \"sentences\": [\"People stand around in a room.\", \" People do karate while some play the drums.\", \" The karate opponents shake hands and hug.\"]}, \"v_N6y3yXiVo24\": {\"duration\": 35.06, \"timestamps\": [[0.53, 34.71], [1.4, 5.61], [4.03, 19.99], [31.56, 34.89]], \"sentences\": [\"A little girl/toddler stands outside, on a grass covered field, and hits, repeatedly, a pink pinata hanging from a tree.\", \"  A little girl/toddler in a lime green hair bow and tutu stands outside under a tree and hits a pinata with a stick.\", \"  The pinata flings around, and the girl hits the pinata again.\", \"  The little girl turns to look at the camera in between hitting the pinata.\"]}, \"v_5rtrGkZNfLo\": {\"duration\": 70.44, \"timestamps\": [[0, 65.16], [65.16, 70.44]], \"sentences\": [\"A standing man talks to the camera with two women seated beside him.\", \" The camera pans to focus on the two women.\"]}, \"v_2syOa4jpZDU\": {\"duration\": 114.28999999999999, \"timestamps\": [[0, 61.72], [61.72, 114.29]], \"sentences\": [\"A person cuts the nails of the front legs of a cat.\", \" Then, the person cuts the nails of the back legs of a car.\"]}, \"v_idACyRv-Sqk\": {\"duration\": 35.43, \"timestamps\": [[0, 7.8], [8.33, 28.7], [29.41, 35.43]], \"sentences\": [\"A man attempts to walk across a rope spread between two homemade pieces of wood.\", \" He balances on the rope, swinging back and forth.\", \" He loses his balance and jumps off the rope.\"]}, \"v_FFUh8Fx4FsA\": {\"duration\": 59.26, \"timestamps\": [[0, 14.81], [14.52, 29.04], [29.33, 49.48], [49.48, 59.26]], \"sentences\": [\"There are two cars in the car wash and one parked in a spot.\", \" The owners of the cars are soaping them down and cleaning the tires very well.\", \" Inside of the car wash it it completely empty, no one is inside of it.\", \" One of the other car owners is rinsing his car off.\"]}, \"v_OnfvTk_DECY\": {\"duration\": 218.85, \"timestamps\": [[0, 65.65], [49.24, 171.8], [147.72, 218.85]], \"sentences\": [\"A man is seen speaking to the camera followed by several shots of a celebrity and a dummy.\", \" The man then begins coming the dummy's hair and using scissors along the side.\", \" He continues cutting the dummy's hair and using hair gel in the end to spike it up.\"]}, \"v_AH-3mF6wWhU\": {\"duration\": 122.3, \"timestamps\": [[0, 122.3], [26.29, 122.3]], \"sentences\": [\"A video on how to make a kite is shown.\", \"  Materials are gathered and then the kite is assembled.\"]}, \"v__7a80bvsbk8\": {\"duration\": 53.15, \"timestamps\": [[0, 15.15], [14.35, 48.37], [48.9, 53.15]], \"sentences\": [\"A few people are seen standing in a large pit with a bull inside and many watching on the sides.\", \" The man walks closer to the bull and the bull attacks several people while they also try to pull him down by his head and tail.\", \" They finally all break away at once.\"]}, \"v_rqraLuIBvyg\": {\"duration\": 90.84, \"timestamps\": [[0, 4.09], [4.54, 15.9], [17.26, 69.94], [70.4, 81.3], [81.3, 85.84], [85.84, 89.93]], \"sentences\": [\"The credits of the clips is shown.\", \" A woman is outside next to a pile of snow.\", \" A guy picks up a shovel land shovels snow off to the side.\", \" The guy puts down the shovel and stretches his back backwards twice.\", \" The guy picks up the shovel and continues to shovel snow.\", \" The credits of the clips is shown.\"]}, \"v_F_EHrfbYsRE\": {\"duration\": 226.88, \"timestamps\": [[0, 6.81], [6.81, 11.34], [11.34, 226.88]], \"sentences\": [\"A graphic with some keywords forming the number '2' is shown.\", \" The scene switches to a black screen with some text about an upcoming marathon.\", \" A man is shown jogging through a city on some sidewalks, a bridge, some paths in a park, etc, with a counter on the side showing his progress in kilometers as he goes.\"]}, \"v_Ym_hy49DaS4\": {\"duration\": 220.01, \"timestamps\": [[0, 66], [66, 220.01], [189.21, 194.71]], \"sentences\": [\"A person is covering her legs with soap  while she is standing on the bathtub.\", \" Then, the person takes a blade to shave her legs while washing the blade under the faucet.\", \" After, the person, takes off the underwear and put it on the bathtub.\"]}, \"v_8wKBvYGGldQ\": {\"duration\": 82.2, \"timestamps\": [[15.21, 42.74], [42.74, 72.34], [72.34, 78.5]], \"sentences\": [\"There is a fast motion video showing a family carving four pumpkins to make jack o lanterns in their kitchen.\", \" There is a little baby sitting on the dinning table watching the others carve the pumpkins.\", \"The two other girls are helping their parents carve the pumpkins and remove the seeds and pulp out of the pumpkin.\"]}, \"v_UPZm0tx77Vw\": {\"duration\": 120.21, \"timestamps\": [[0, 13.82], [13.82, 21.04], [28.85, 34.86], [34.86, 120.21]], \"sentences\": [\"A man seated in front of a tennis net turns around and faces his opponent, with a coach and camera man looking on.\", \" As they both rise we see that they are actually heading to a table tennis game, the table on an actual tennis court.\", \" They being their match, one in a white tank top and green shorts, the other in an orange shirt and white shorts.\", \" They hit back and forth for some time, the enjoyment of the game seeming more important the winning, and they slap hands at the conclusion.\"]}, \"v_h-A3CAx_eyU\": {\"duration\": 157.07999999999998, \"timestamps\": [[3.14, 84.04], [41.63, 147.66]], \"sentences\": [\"Two men are seen speaking to one another in front of the camera while moving their hands around to their voices.\", \" The men continue speaking with one another while acting crazy on the couch and pointing to one another.\"]}, \"v_jw8yJ6tJXrA\": {\"duration\": 14.93, \"timestamps\": [[0, 3.06], [3.51, 10.08], [9.85, 14.41]], \"sentences\": [\"A man is seen kneeling down before a track while others watch on the sides.\", \" A person runs in on the side and jumps into a pit.\", \" The man sitting tracks his score and several more people are seen running in.\"]}, \"v_Q5qIsUsM_-A\": {\"duration\": 49.81, \"timestamps\": [[0.75, 49.31], [1.99, 8.22], [8.97, 19.42], [8.97, 48.56]], \"sentences\": [\"A young man solves a rubix cube quickly in a digitally timed session.\", \"  A man in a yellow shirt with a graphic of a man's face on it talks to the camera and holds up an unsolved rubix cube.\", \"  A black digital timer appears on the screen in the lower right hand corner and begins to run time.\", \"  The man begins to solve the rubix cube when the timer starts, and then solves the rubix cube with 00:34:08 time, at which point he holds the solved rubix cube in the air as demonstration.\"]}, \"v_8uP35-qttBo\": {\"duration\": 165.47, \"timestamps\": [[0, 33.92], [29.78, 127.41], [128.24, 157.19]], \"sentences\": [\"Two men are seen speaking to the camera while each hold a bow and arrow.\", \" One man shows off his while clips are shown of people shooting the bow and shown in between.\", \" The other man shows off his bow while still showing off his specs.\"]}, \"v_nqmw4BCi6io\": {\"duration\": 153.62, \"timestamps\": [[13.06, 43.01], [43.01, 140.57], [62.99, 73.74], [76.04, 99.86], [99.86, 100.62]], \"sentences\": [\"A mop's attributes are demonstrated through computer graphics close-ups of various parts.\", \" The mop is demonstrated in actual use.\", \" The preparation of the mop head is shown.\", \" More component closeups are shown.\", \" The mop head is demonstrated again.\"]}, \"v__wo35butdOc\": {\"duration\": 19.85, \"timestamps\": [[0, 1.99], [2.48, 3.47], [3.57, 8.24], [16.08, 19.75]], \"sentences\": [\"The credits of the clip are shown.\", \" A lady stands raising a metal disk in one hand.\", \" The lady spins with the disk and releases the disk.\", \" The lady places a towel around her back.\"]}, \"v_PaPR1XQU0_A\": {\"duration\": 202.04, \"timestamps\": [[0, 30.31], [32.33, 39.4], [41.42, 59.6], [63.64, 110.11], [112.13, 118.19], [123.24, 150.52], [152.54, 183.85]], \"sentences\": [\"A person sets a piece of wall paper in place and lines it op with the other pieces.\", \" The wall paper is cut with sheers to the proper size.\", \" The man checks the wall paper then peels off an adhesive strip on the back.\", \" The wall paper is attached to the wall and smoothed down by hand.\", \" The person uses a towel to flatten out the wall paper.\", \" The wallpaper is cut at the bottom and creased against the floorboard.\", \" The wall paper is cut and creased along the ceiling.\"]}, \"v_ul9kg5QdvJo\": {\"duration\": 72.98, \"timestamps\": [[0, 27.37], [27.73, 61.3], [61.3, 72.98]], \"sentences\": [\"A group of people are shown at a festival serving food and interacting with their crowd.\", \"The male continues,to play with the crowd and makes them work for their ice cream cone.\", \"Finally,the video ends,the man smiles,and the credits begin to roll.\"]}, \"v_eMQ5sazq-q0\": {\"duration\": 140.85, \"timestamps\": [[0, 15.49], [16.2, 57.05], [58.45, 101.41], [102.12, 140.85]], \"sentences\": [\"People picks up piles of grass on a front yard.\", \" A dog walks in the yard where people pile  grass.\", \" A man cut the grass using a hand cutter.\", \" The dogs smells on the ground.\"]}, \"v_Vtnn6yJqHqM\": {\"duration\": 32.68, \"timestamps\": [[4.09, 8.99], [8.99, 15.36], [15.36, 17.16], [17.32, 30.89], [31.05, 32.68]], \"sentences\": [\"A pair of hands are shown playing piano.\", \" The piano player is shown playing with another person seated beside him.\", \" The playing is seen from a hand close up view again.\", \" The second man imitates the first man.\", \" The first man claps at the second man's imitation.\"]}, \"v_8iQ_ZjJGQkE\": {\"duration\": 60.05, \"timestamps\": [[0, 15.61], [15.31, 40.53], [40.53, 60.05]], \"sentences\": [\"A man stands in front of the camera and then takes a puff of his cigarette.\", \"After,he appears with roller blades on and starts to jump on different blocks and boulders in the city.\", \"The man continues making his way through the city,passing cars,and jumping over rocks.\"]}, \"v_nmMs1pWkiAU\": {\"duration\": 55.06, \"timestamps\": [[0, 48.17], [48.17, 53.4]], \"sentences\": [\"A woman and a man salute, and then they demonstrate karate moves in a gym.\", \" After, the woman and the man stand and salute.\"]}, \"v_gee7iCW34_E\": {\"duration\": 116.25999999999999, \"timestamps\": [[0, 8.14], [9.88, 15.11], [15.11, 27.9], [27.32, 36.04], [37.2, 61.04], [62.78, 69.18], [69.76, 95.92], [97.08, 116.26]], \"sentences\": [\"A graphic is seen with drawings of mushrooms and plants.\", \" A tall pine tree is seen.\", \" A match is lit and a young man holds up another lit match along with sticks then blows it out.\", \" The young man builds a ring of rocks near a tent.\", \" The camper then shows various sized sticks in his hands and others that he breaks in two.\", \" The young man breaks sticks with his foot and carries them to the campsite.\", \" The young man builds a fire with the various sized sticks in the fire ring and lights it.\", \" The fire burns into the night.\"]}, \"v_3N1tbv5Z6Kk\": {\"duration\": 146.24, \"timestamps\": [[0, 140.39], [140.39, 146.24]], \"sentences\": [\"A man in tuxedo and woman in party dress dance the tango in a ballroom surrounded by crowd in chairs during performance.\", \" The crowd cheers at the end and claps hands.\"]}, \"v_rcqXzX-7ULg\": {\"duration\": 210.61, \"timestamps\": [[0, 22.11], [31.59, 133.73], [137.95, 210.61]], \"sentences\": [\"A woman is standing in front of a washer and dryer in a laundry room.\", \" Step by step instructions are given for ironing clothes.\", \" She shows how to prepare and iron clothing using a rag and steam.\"]}, \"v_8GxWehFZVRE\": {\"duration\": 32.81, \"timestamps\": [[0, 1.8], [2.3, 14.44], [16.24, 32.81]], \"sentences\": [\"A woman is sitting next to a baby in a high chair.\", \" She is playing an accordian for the baby.\", \" The baby rocks back and forth, dancing to the music.\"]}, \"v_iUIfmMljiOg\": {\"duration\": 190.15, \"timestamps\": [[0, 32.33], [32.33, 58], [59.9, 87.47], [87.47, 190.15]], \"sentences\": [\"A woman is giving instructions on how to make her lemonade.\", \" She shows all of the ingredients that she uses and starts to boil them and mix them on a pot on the stove.\", \" In a blender she blends some strawberries and lemon juice.\", \" She then starts to do more or less all of those steps again for all different types of other lemonades that she makes.\"]}, \"v_6d7oOG3dS-Y\": {\"duration\": 60.3, \"timestamps\": [[0, 32.87], [21.11, 60.3]], \"sentences\": [\"A man is seen pushing a board down into the floor to push the carpet down.\", \" He continues cutting around the carpet and pushing it down with a large beam.\"]}, \"v_Nn9qwOB-g34\": {\"duration\": 126.64, \"timestamps\": [[0, 37.36], [37.36, 89.92], [87.38, 126.64]], \"sentences\": [\"A small group of people are seen standing along an indoor with one player kicking the ball and scoring a goal.\", \" The audience cheers and the same shot is shown again several times and the player walking away.\", \" Many more shots of goals are shown during the game followed by the same shot shown again in slow motion.\"]}, \"v_fHXgxSFDmJc\": {\"duration\": 38.92, \"timestamps\": [[0, 38.92], [7.2, 10.7], [18.49, 32.88], [32.69, 38.92]], \"sentences\": [\"We see  man teasing a bull with a flag.\", \" The bull charges at the flag.\", \" The bull charges and goes after the flag.\", \" The bullfighter moves left and the bull follows him.\"]}, \"v_uE3YXkZoV5c\": {\"duration\": 89.4, \"timestamps\": [[0, 22.35], [23.24, 43.8], [44.25, 49.62], [50.51, 55.87], [56.32, 63.92], [50.06, 55.87], [70.62, 83.14], [84.93, 89.4]], \"sentences\": [\"Two men walk holding sticks out in front of them.\", \" They arrange discs onto some numbers.\", \" One of the men throws a disc with his stick.\", \" The man in red throws his disc.\", \" The first man throws another disc.\", \" The man in the red shirt follows.\", \" The first man throws another disc and the man in the red shirt follows.\", \" They high five each other.\"]}, \"v_vLEz1mHahdM\": {\"duration\": 49.32, \"timestamps\": [[0, 9.37], [9.37, 20.47], [19.97, 33.54], [34.03, 49.32]], \"sentences\": [\"A man in military uniform is standing in front of a group of soldiers.\", \" He is playing the bagpipes while the other soldiers stand and watch him.\", \" It may be a parade they are practicing for because they are standing and watching him on top of trailer.\", \" Once the soldier is done with his song on the bagpipe all the soldiers clap and cheer for him.\"]}, \"v_yrf93aLQXBE\": {\"duration\": 130.85, \"timestamps\": [[0, 120.38], [43.18, 120.38]], \"sentences\": [\"An old video of people surfing is shown.\", \"  People catch waves and the fat guy does a pretty good job.\"]}, \"v_Jj7Xcisw62E\": {\"duration\": 99.72, \"timestamps\": [[0, 10.97], [9.97, 29.42], [29.42, 80.27], [80.27, 99.72]], \"sentences\": [\"A large black male and John Cena are in a wrestling ring arm wrestling.\", \"The black male is beginning to win but John Cena uses all of his might to not give in and gains enough strength to push the hand back the other way.\", \"After a certain amount of time,John Cena wins and someone jumps on his back and begins wrestling him and picks the black man up and drops him.\", \"As John Cena continues to celebrate the other guy begins talking trash and John Cena looks at him then talks back to the crowd.\"]}, \"v_VqTyewe2R1A\": {\"duration\": 166.44, \"timestamps\": [[0, 84.88], [84.88, 158.95], [99.03, 101.53], [99.86, 111.52], [149.8, 153.13]], \"sentences\": [\"A marching band plays in a gym and people watch.\", \" Then, the marching band stops playing for a little bit, then it resumes.\", \" A woman pass on side the marching band.\", \" A young man drinks from a can.\", \" After, a child pass on front the Marching band.\"]}, \"v_f6NpnKJZJE0\": {\"duration\": 118.63, \"timestamps\": [[0.59, 6.52], [7.71, 10.68], [84.82, 91.94]], \"sentences\": [\"A woman is working out an elliptical machine.\", \" A man is working out on an elliptical machine.\", \" A person plugs a cell phone into the machine.\"]}, \"v_UYzgXZIRUR8\": {\"duration\": 193.75, \"timestamps\": [[0.97, 142.4], [61.03, 63.94], [141.44, 193.75]], \"sentences\": [\"A boy skateboard on a road jumping and flipping the skateboard in the street.\", \" A skateboard leans on a tree.\", \" Then, the boy skateboard on small ramps and then continues skateboarding in the street.\"]}, \"v_YJTz7mpI-mY\": {\"duration\": 47.51, \"timestamps\": [[3.09, 8.08], [5.7, 5.94], [11.88, 13.3], [14.49, 46.32], [37.06, 42.05]], \"sentences\": [\"A man places shaving cream on his face.\", \" A man spits some liquid out of his mouth.\", \" A man sharpens his razor blade.\", \" The man shaves his face with the razor.\", \" The man puts more shaving cream on his face.\"]}, \"v_n6k21NjvqXE\": {\"duration\": 94.34, \"timestamps\": [[0, 8.96], [8.96, 19.34], [19.34, 33.49], [33.49, 76.42], [76.42, 78.3], [78.3, 94.34]], \"sentences\": [\"An intro appears and it has a logo and the words \\\"outdoor interlaken +\\\", and then yellow words and roman numerals appear.\", \"The outdoor shop appears and it quickly changes to the inside of the shop where people are all gathered to get instructions, get dressed in helmets and safety gear, and prepare for white water rafting.\", \" The people are then going outdoors where they practice on land on how to sit in the raft, paddle and etc.\", \" When they are done practicing the all walk to the water with their rafts and they are all seen in the very rough waters going down and paddling and in their rafts where they end up in calm waters and jump out of their rafts to celebrate their success.\", \"When they're done celebrating the people walk out of the water holding their raft and they end up in a vehicle where they are smiling and happy.\", \"The outro appears with contact information, website,logos and credits.\"]}, \"v_0LebHO3TvzE\": {\"duration\": 18.55, \"timestamps\": [[0, 7.14], [6.31, 18.55]], \"sentences\": [\"Two people are seen sitting on shore while sitting in kayaks.\", \" One person inches himself closer to the water and begins riding along down the river.\"]}, \"v_8J_erRJya-k\": {\"duration\": 118.78, \"timestamps\": [[0, 65.33], [66.52, 71.27], [71.86, 102.15], [103.34, 118.78]], \"sentences\": [\"Young men ride skateboards and do skidding turns in a city plaza.\", \" The skateboarder does a wheelie.\", \" The skateboarders ride along a sidewalk going somewhere.\", \" The boys walk around and go into a transportation station.\"]}, \"v_JksdZ0YMkoQ\": {\"duration\": 127.22, \"timestamps\": [[0, 40.71], [40.71, 71.88], [71.24, 91.6], [90.96, 126.59]], \"sentences\": [\"A man in red in outside screwing in his rotors and putting his tire back on his truck.\", \" He grabs pieces to tighten it and begins to make sure they are on super tight.\", \" He does it repeatedly to make sure they all stay on well.\", \" Otherwise it would be dangerous to drive on if they are loose.\"]}, \"v_XHuKkrKjnhQ\": {\"duration\": 228.3, \"timestamps\": [[0, 17.12], [17.12, 105.02], [105.02, 228.3]], \"sentences\": [\"city with buildings and skyscrapers are in the back and a woman holding a cake is walking and is written how to wrap gifts.\", \" wmoan is sitting in a table and have a box and a a gift wrap on top and its showing how to wrap the gift and talking about it.\", \" decoative tapes are used to make a ribbon aound the gift and is showing how to make ribbons with diferents clothes.\"]}, \"v_svZ7DPi7rLI\": {\"duration\": 53.92, \"timestamps\": [[0, 24.26], [23.72, 29.92], [45.83, 47.72]], \"sentences\": [\"A man is running throws a javelin.\", \" He puts his hands in the air and waves at the crowd.\", \" He grabs a towel and puts his hands in the air.\"]}, \"v_xUDwlT5fw_o\": {\"duration\": 75.16, \"timestamps\": [[0, 37.96], [37.96, 51.11], [51.11, 65.77], [65.77, 75.16]], \"sentences\": [\"A man is standing at a bar and he begins pouring ice into a tall cup along with blue liquid, dark liquid, and a red liquid.\", \" The man then pours it into a shaker and shakes it until thoroughly mixed.\", \" When the man is finished shaking the drink he removes the cup from the shaker, pours the liquids into a smaller cup, and sticks a white straw in it.\", \"All while talking the man then picks up the cup, smells it, smiles and holds the drink up.\"]}, \"v_2DCeEAz8iO8\": {\"duration\": 164.12, \"timestamps\": [[0, 58.26], [54.98, 164.12]], \"sentences\": [\"A camera pans around a person riding around on a horse.\", \" The person continues riding around the area and pauses to speak to the woman while she laughs and speaks to the camera.\"]}, \"v_4-Xe_9Ywvd8\": {\"duration\": 171.57, \"timestamps\": [[0, 12.01], [13.73, 112.38], [113.24, 171.57]], \"sentences\": [\"A group of cheerleaders gather on a football field.\", \" They cheer and flip as they jog across the field.\", \" They then put on a performance, flipping and jumping.\"]}, \"v_qhsK94t7x7w\": {\"duration\": 235.99, \"timestamps\": [[0, 235.99], [10.62, 235.99], [40.12, 43.66], [87.31, 206.49], [206.49, 235.99]], \"sentences\": [\"People in stands watch as two bulls walk around in a bullfighting ring, other people walk around in the ring taking pictures.\", \" The bulls lock horns, and are aggressive toward one another.\", \" One bull walks away from the other one, and then quickly turns to reengage in the fight.\", \" The bulls circle one another.\", \" The bulls  begin to fight.\"]}, \"v_w8PqH7bltJQ\": {\"duration\": 165.05, \"timestamps\": [[0, 28.06], [28.06, 30.53], [30.53, 118.01], [118.01, 165.05]], \"sentences\": [\"man is standing in a workshop standing in front of a bicycle talking to the camera.\", \" list of materials is shown in the screen.\", \" man is putting red tape on bicycle bars.\", \" the man is wrapping all the bar in the red tape.\"]}, \"v_kM6v-XN8Ixo\": {\"duration\": 110.53, \"timestamps\": [[0, 3.87], [4.97, 8.29], [41.45, 47.53], [72.4, 76.26], [99.47, 110.53]], \"sentences\": [\"A man throws a frisbee on a field.\", \" A dog jumps and grabs the frisbee in the air.\", \" The man lays on his back and the dog stands on his feet.\", \" The man bends down and the dog jumps on his back.\", \" The dog runs and jumps into the mans arms and the man carries him.\"]}, \"v_539ByIcbUPs\": {\"duration\": 116.24000000000001, \"timestamps\": [[0, 4.65], [12.21, 16.85], [17.44, 24.41], [24.99, 41.85], [42.43, 45.33], [45.91, 55.8], [56.38, 62.77], [63.35, 72.65], [73.23, 81.37], [81.95, 91.83], [92.41, 96.48], [97.06, 104.62], [105.2, 108.1]], \"sentences\": [\"A woman speaks to the camera.\", \" Many lemons fall onto a counter.\", \" The woman grabs a wooden bowl and pours brown sugar into it.\", \" She grabs a lemon and rubs brown sugar all over the lemon.\", \" She proceeds to rub two lemons onto the counter.\", \" With a knife, she cuts a lemon in half.\", \" She squeezes lemon juice into a bowl.\", \" She pours the squeezed lemon juice into a pitcher.\", \" She pours boiling water into the bowl with brown sugar in it.\", \" Shes pours the watered brown sugar into the pitcher and stirs.\", \" She breaks ice cubes by hitting them with a spoon.\", \" She places the ice into a glass and adds the lemonade.\", \" Lastly, she takes a sip of the lemonade she just made.\"]}, \"v_047dUA_39x8\": {\"duration\": 81.13, \"timestamps\": [[0, 26.37], [27.18, 59.63], [59.63, 79.1]], \"sentences\": [\"A cowboy rides a horse out of a corral and enters into a fenced off area.\", \" The man rides his horse out of the fenced are and throws a rope around a cattle.\", \" The man is helped by other cowboys while tying up the cattle.\"]}, \"v_cdHBwzbNI5Y\": {\"duration\": 26.54, \"timestamps\": [[0, 2.92], [5.18, 20.44], [22.96, 26.54]], \"sentences\": [\"A girl in a sparkling outfit marches onto the court followed by other girls.\", \" They are holding batons as they march.\", \" They then walk away, off the court.\"]}, \"v_8eGaK2mVEhY\": {\"duration\": 78.46000000000001, \"timestamps\": [[0, 16.87], [17.26, 27.46], [27.85, 78.46]], \"sentences\": [\"An indoor track is shown as a male begins running with a pole vault but he isn't successful in his jump.\", \"Another person then comes behind the camera and begins talking.\", \"The athlete then does his jump several more times but he isn't successful.\"]}, \"v_ZIbrxshdMu0\": {\"duration\": 139.79, \"timestamps\": [[4.89, 139.78], [32.85, 113.92], [64.3, 139.78]], \"sentences\": [\"Older people play croquet near the ocean.\", \"  A group of people come and walk by in the background.\", \"  The two groups play and interact with each other.\"]}, \"v_Pw0ANcAM-zc\": {\"duration\": 156.97, \"timestamps\": [[7.85, 49.44], [49.44, 147.55]], \"sentences\": [\"A man l dead lifts a weight bar from the ground over his head in a gym.\", \" The man does repetitions lifting a weight bar up off the ground to waist level.\"]}, \"v_r9vcB6tc1mM\": {\"duration\": 183.13, \"timestamps\": [[28.38, 137.34], [33.88, 137.34], [172.14, 173.97]], \"sentences\": [\"There are two men using defense techniques as a way of dance moves.\", \" They are in the middle of a circle of people, who are clapping.\", \" Two other men come in from the crowd to try and dance, but the video ends.\"]}, \"v_REOP3JWB0yc\": {\"duration\": 149.96, \"timestamps\": [[0, 65.23], [50.98, 116.96], [101.22, 141.71]], \"sentences\": [\"A man is seen wearing sunglasses and speaking to the camera while holding a lacrosse stick.\", \" The man continues to speak to the camera while moving the stick all around.\", \" In the end is seen still speaking while moving his legs as well as showing how to properly throw the ball.\"]}, \"v_xXRKrdnuZBQ\": {\"duration\": 96.18, \"timestamps\": [[0, 53.86], [22.6, 96.18]], \"sentences\": [\"A man is seen speaking to the camera and leads into clips of him hitting a ball around with a stick.\", \" The man continues speaking to the camera in several spots and as well as hitting the ball around an indoor area.\"]}, \"v_jSxu2GOiBO0\": {\"duration\": 218.94, \"timestamps\": [[0, 5.47], [5.47, 200.33], [84.29, 209.09], [107.28, 126.99], [209.09, 218.94]], \"sentences\": [\"An introduction comes onto the screen for a video about how to ski.\", \" A man begins to talk about some key components of skiing and how to go about learning how to ski.\", \" The video then goes to video of people skiing down a slope while twisting and turning from side to side.\", \" A scene is shown of three men talking while riding up the ski lift.\", \" The closing credits and graphics are shown at the end.\"]}, \"v_tSUzEX6ps0s\": {\"duration\": 132.89, \"timestamps\": [[0, 4.65], [3.99, 25.91], [25.25, 41.2], [41.2, 63.12], [63.79, 109.63], [109.63, 132.89]], \"sentences\": [\"A Subway employee is standing in the kitchen preparing sub.\", \"On a white piece is of paper is a foot long piece of bread and a row of ham,pepperoni,salami then cheese are added on the sub.\", \"Next,the man puts the sub in the oven to be toasted and moves a tray of cookies to the other side of the counter.\", \"As he waits,he begins talking to his friend and checking the cookies.\", \"Now,the sub is toasted a lettuce and tomatoes are added along with cucumbers,anchovies,oil,vinegar and mayo.\", \"The sub is finally finished cut in half,rolled in paper, and then totaled out on the register.\"]}, \"v_MysxDDxgHNo\": {\"duration\": 13.82, \"timestamps\": [[0, 13.82], [0, 4.14], [2.14, 7.39], [9.33, 13.82]], \"sentences\": [\"Several boys are interacting in an ice rink.\", \" Two boys that are sliding on their knees towards each other collide and fall back.\", \" A boy releases a curling stone.\", \" Three boys walk together across on the ice.\"]}, \"v_RhsCYNiAaV8\": {\"duration\": 206.56, \"timestamps\": [[0, 6.2], [6.2, 18.59], [21.69, 30.98], [30.98, 41.31], [30.98, 160.08], [58.87, 64.03], [105.34, 120.83], [162.15, 189], [189, 198.29], [198.29, 206.56]], \"sentences\": [\"Title cards flash across the screen.\", \" Images of rafts are shown.\", \" We see people sitting in their raft then start rowing.\", \" A waterfall spills into the raft.\", \" Two boats of rafters raft down a river.\", \" The first boat splashes the rear boat.\", \" The rafters splash each other.\", \" A raft turns over in the water and rafters float to the river bank.\", \" A van is then driving down the road.\", \" The end title card appears on the screen.\"]}, \"v_aTl4KzTuJoU\": {\"duration\": 41.4, \"timestamps\": [[0, 4.14], [6, 19.25], [21.12, 41.4]], \"sentences\": [\"A man is in the ocean water, holding a rope.\", \" He is attached to a boat while he is on water skis.\", \" He lifts himself up, skiing in the waves.\"]}, \"v_36lphp9tnMk\": {\"duration\": 151.35, \"timestamps\": [[0, 127.13], [127.13, 127.89], [143.02, 151.35]], \"sentences\": [\"A man is standing outside drinking beer.\", \" People are standing around watching him.\", \" He sets the beer glass down on a table.\"]}, \"v_1y9s_l_DIEk\": {\"duration\": 20.78, \"timestamps\": [[0, 19.22], [19.12, 20.78], [5.09, 13.3]], \"sentences\": [\"A woman holds two big gloves where two little girls tap with both hands.\", \" Then, the woman puts the globes on front her chest.\", \" People practice karate in a room.\"]}, \"v_PVAV7PdHhgE\": {\"duration\": 143.86, \"timestamps\": [[0, 9.35], [7.19, 117.25], [117.25, 143.86], [135.23, 138.83]], \"sentences\": [\"A person holds a boy that is on a swing rod, and then push the rod.\", \" Then, the boy swings on the rod to impulse his body to swing in circles until the rod loss force.\", \" After, a man helps stop the swing rod, while other people are fixing something.\", \" A young man wearing yellow t-shirt move his arms.\"]}, \"v_npzRJiGHc9c\": {\"duration\": 35.5, \"timestamps\": [[9.94, 29.65], [10.3, 16.69], [16.69, 30.18]], \"sentences\": [\"A field hockey game is being played.\", \"As a team is trying to score,a player in a white shirt ducks as the puck flies over her head.\", \"After the puck goes through the goalie,the young lady smiles as she goes over to the sideline and  is given a high five from her coach.\"]}, \"v_R7uL6BvULN8\": {\"duration\": 69.13, \"timestamps\": [[0, 6.91], [7.26, 18.32], [18.32, 26.96], [27.3, 37.33], [37.67, 55.99], [55.99, 61.52], [61.87, 69.13]], \"sentences\": [\"We see an opening title screen.\", \" Two people are carrying kite surf boards to the water and we see people riding them in the water.\", \" We see the board up close.\", \" We see a man riding and come to a stop.\", \" We see the board up close again.\", \" We see the man riding the board in the water again.\", \" We see the ending title screen.\"]}, \"v_XZCmkuDKltY\": {\"duration\": 29.21, \"timestamps\": [[0, 2.34], [2.63, 29.21]], \"sentences\": [\"A man is seen sitting before a table with a rubix cube on it and his hands on a platform.\", \" He then solves the rubix cube in a matter of seconds and shows off his time to the camera.\"]}, \"v_UaZcqOngDzo\": {\"duration\": 142.25, \"timestamps\": [[1.42, 61.17], [44.81, 139.41]], \"sentences\": [\"Two kids are seen riding in a truck moving down a road as well as shots of landscapes and the kids sitting on bikes.\", \" Several shots are shown of the kids riding around a dirt track with one another while the camera captures them all over.\"]}, \"v_h5fX5z-unJc\": {\"duration\": 21.85, \"timestamps\": [[5.35, 9.61], [9.61, 15.73], [15.73, 16.39]], \"sentences\": [\"A man wearing a white shirt is playing pool in a recreation room.\", \" There are some other players standing besides the pool table.\", \" The man playing pool hits the balls as he continues playing the game.\"]}, \"v_bFHpaULTwsE\": {\"duration\": 74.89, \"timestamps\": [[0, 38.94], [38.94, 74.89]], \"sentences\": [\"A tree and mulching materials are show, then a man prepares the area around the tree.\", \" Then the man put mulch around the tree and gives form with a rack.\"]}, \"v_K-E0UXNscjU\": {\"duration\": 44.4, \"timestamps\": [[0, 20.87], [20.42, 44.4]], \"sentences\": [\"A woman is seen throwing a dart to the board and looking back laughing while another watches from far away.\", \" She throws more darts onto the board while stopping to grab them and a man bending down beside her.\"]}, \"v_9Tip00S7cFY\": {\"duration\": 60.85, \"timestamps\": [[0, 5.48], [7.61, 52.33], [53.55, 60.85]], \"sentences\": [\"A man is in an indoor racquetball court, talking as he holds a ball and racquet.\", \" He lobs the ball back and forth against the wall, interspersed with talking about the game.\", \" He speaks for a while longer before the video ends.\"]}, \"v_tdHQb9Uwc4A\": {\"duration\": 186.36, \"timestamps\": [[0, 5.59], [5.59, 37.27], [37.27, 68.95], [68.95, 89.45], [89.45, 150.95], [150.95, 186.36]], \"sentences\": [\"Two men are standing on an indoor gym and in sync they both start jumping on their metal bouncy stits and they both do a backflip.\", \"Various clips of various different people also wearing the bouncy stilts play and they're all running, flipping and doing various tricks while landing onto blue mats in an indoor gym.\", \"Now there are a lot of people outdoors, both men and women, and they are all running, hopping, jumping, and doing flips outdoors.\", \" A large group of them all line up and a view from above show that they have formed the number 7.\", \" Various still shot pictures show and clips of more people outdoors in a different area play and they're all also jumping over poles, doing flips, jumps, running and etcetera.\", \"Now there are people jumping into the water with their bouncy stilts, then back in a large grassy area until a black screen appears and a lot of white words and websites scroll quickly from bottom to top.\"]}, \"v_zxm4KYn7r8c\": {\"duration\": 195.05, \"timestamps\": [[0, 66.32], [57.54, 195.05]], \"sentences\": [\"A man is seen speaking to the camera in various clips as well as shooting a bow and arrow.\", \" The man demonstrates several times how to properly shoot a bow in different locations while looking back to speak to the camera.\"]}, \"v_-ROljbRVlos\": {\"duration\": 7.22, \"timestamps\": [[0.07, 2.42], [1.77, 5.24], [3.94, 6.79]], \"sentences\": [\"A person is seen standing on a court wearing stilts on his feet.\", \" The boy then begins running down the court on the stilts.\", \" The boy dunks a small ball into the basket and walks back to grab it.\"]}, \"v_h_Kt_rqmODs\": {\"duration\": 72.49, \"timestamps\": [[0, 17.76], [18.12, 70.32], [69.96, 72.49]], \"sentences\": [\"A person is walking along the street that has chalk on it.\", \" A person in a red shirt is hopping along the street with the chalk on it.\", \"  They finish and smile at the camera.\"]}, \"v_G4fSvtn1HAw\": {\"duration\": 193.77, \"timestamps\": [[0, 193.77], [12.6, 28.1], [33.91, 62.98], [63.94, 134.67], [128.86, 190.86]], \"sentences\": [\"This is a recipe for making chocolate chip cookies.\", \"  Chocolate bars are cut up with a knife.\", \"  Butter is microwaved and prepared with sugar and other ingredients.\", \"  Everything is stirred and the chocolate is put in.\", \"  The cookies are shaped and put in an oven.\"]}, \"v_LIaNG_UliKk\": {\"duration\": 206.73, \"timestamps\": [[0, 7.24], [7.24, 206.73]], \"sentences\": [\"man is sitting in the driver's seat.\", \" people are in snowy mountain snowboarding.\"]}, \"v_5laHmakSAAg\": {\"duration\": 182.77, \"timestamps\": [[1.83, 92.3], [84.99, 178.2]], \"sentences\": [\"The video leads into several shots of people throwing impressive shots of balls landing into cups.\", \" Several people are shown throwing balls into a cup and the camera showing a close up.\"]}, \"v_306mYrvdzIk\": {\"duration\": 229.43, \"timestamps\": [[0, 19.5], [19.5, 103.24], [103.24, 161.75], [161.75, 229.43]], \"sentences\": [\"Four people are in a pool hitting the ball back and forth over the net.\", \"As they play,someone walks across the camera and then a set of boys are zoomed in on as they serve the ball.\", \"The ball goes out on both sides and they are forced to get out and go and get it.\", \"They get the large beach ball back and continue to hit it over the net to one another.\"]}, \"v_PJvOR4ue3tU\": {\"duration\": 100.75, \"timestamps\": [[0, 16.62], [14.61, 47.86], [44.83, 100.75]], \"sentences\": [\"The man in black shirt is walking and then raised the ball up.\", \" The man put the ball on his neck and started to turn around and threw the ball.\", \" The man cheered and gave a high five to other man, then he is so happy he went to the ground on his stomach and he continue to cheer.\"]}, \"v_MVVhOW7t3u0\": {\"duration\": 34.85, \"timestamps\": [[0, 3.66], [4.71, 7.32], [7.49, 20.22], [21.26, 34.85]], \"sentences\": [\"A track athlete walks down the path.\", \" A female participant prepares to run.\", \" She runs with a javelin over her shoulder, throwing it as far as she can.\", \" She then runs away from the spot on the track.\"]}, \"v_6fjc0Brqa7A\": {\"duration\": 126.69, \"timestamps\": [[0.63, 50.68], [44.34, 101.35], [101.35, 121.62]], \"sentences\": [\"Various shots of landscapes are shown followed by a woman speaking to the camera, gearing up, and riding behind a vehicle.\", \" The person walks around and interacts with the driver and leads into more clips of the person riding a board behind a car.\", \" A man speaks into a walkie talkie and showing the speed of the car as well as people celebrating and the man receiving a plaque.\"]}, \"v_BD4i-g3U5Kw\": {\"duration\": 181.6, \"timestamps\": [[0, 25.42], [25.42, 33.6], [33.6, 62.65], [63.56, 98.97], [100.79, 114.41], [119.86, 138.02], [138.93, 181.6]], \"sentences\": [\"An ice rink is shown with a hockey game in progress with the first long shot goal is made followed by a replay.\", \" A goal by the other team in red shows twice.\", \" A heated battle of two teams ends with an orange team player scoring.\", \" Two more teams make long scoring shots from left to right.\", \" A white teams scores after a player falls on the ice rink.\", \" Another few games and a second player falls before a goal.\", \" A higher aerial view is seen of the last game to show.\"]}, \"v_aBr9bdWrl0I\": {\"duration\": 166.3, \"timestamps\": [[0, 39.08], [39.08, 166.3]], \"sentences\": [\"blonde woman is raking dry leaves in a backyard and dog is playing with them running.\", \" dog is unning in the backyard and is drinkin water from a smal fountain and keep running through the field playing with the leaves while the woman keep raking.\"]}, \"v_tnavaGow7BI\": {\"duration\": 5.9, \"timestamps\": [[0, 5.9], [0, 2.06], [1.98, 5.9]], \"sentences\": [\"Two people are standing behind a counter.\", \" One person is adding peppers to a salad.\", \" Another person is chopping the pepper on a board.\"]}, \"v_LW8UDBQ1yJc\": {\"duration\": 184.98, \"timestamps\": [[0, 21.27], [25.9, 148.91], [152.61, 184.98]], \"sentences\": [\"The opening credits for a film appears on the screen.\", \" Several young men are shown performing various stunts on skateboards.\", \" They jump on tables, over fountains, and down stairs.\"]}, \"v_-kky8-yaEPg\": {\"duration\": 37.8, \"timestamps\": [[0, 5.1], [5.29, 26.65], [15.88, 17.01], [26.84, 37.8]], \"sentences\": [\"A man is stirring something in a pot.\", \" The first man leaves the scene as a second man enters and stirs something in a bowl.\", \" The first man walks into and out of frame.\", \" The camera pans left to watch the first man working at an oven.\"]}, \"v_hK3E6njydQA\": {\"duration\": 85.66, \"timestamps\": [[0, 22.27], [22.7, 68.53], [68.53, 85.66]], \"sentences\": [\"People in uniforms of various characters are shown running around a green field.\", \"Then, a lacrosse game begins and they compete against one another.\", \"The large yellow character attempts to get a goal but isn't successful and he falls to his knee in disappointment.\"]}, \"v_ivivR6ZdgRM\": {\"duration\": 49.78, \"timestamps\": [[0.25, 49.78], [0.25, 7.47], [22.4, 24.64], [25.14, 49.78]], \"sentences\": [\"A man in a denim shirt and black baseball cap plays the harmonica at the beach in front of a sandy shore, ocean water and a grass and flower covered knoll.\", \"  The man is standing at the top of a short wooden staircase, and, leaning against the railing the man begins to play the harmonica covering the entire instrument with both hands while playing.\", \"  A beach goer in shorts walks past him in the distance on the wet sand of the beach.\", \"  The man continues to play the harmonica ending by pulling the harmonica away from the mouth and wriggling a large, puffy, mustache dramatically.\"]}, \"v_B6W_0AvgGTY\": {\"duration\": 23.2, \"timestamps\": [[0.23, 6.61], [7.08, 18.56], [16.12, 22.39]], \"sentences\": [\"A man and dog are seen standing in a field with the dog looking to the owner.\", \" The man throws a frisbee off into the distance and the dog chases after it.\", \" The dog grabs the frisbee and runs back to the man.\"]}, \"v_XuFiQCgRsRo\": {\"duration\": 67.69, \"timestamps\": [[0, 67.69], [0, 12.52], [14.55, 67.69], [13.54, 67.69], [66.33, 67.69]], \"sentences\": [\"A young woman is in a gym.\", \" She sits on an exercise machine while speaking to the camera.\", \" Three other people are near her, also on exercise machines.\", \" The woman then begins to use the exercise machine.\", \" The video ends with the woman stopping the machine and smiling at the camera.\"]}, \"v_6SWx37_Byzs\": {\"duration\": 33.86, \"timestamps\": [[0, 10.16], [11, 33.86]], \"sentences\": [\"A man and woman are seen performing a dancing routine on a floor with one another.\", \" The man and woman are also seen in shots dancing by themselves and leads into them dancing together again.\"]}, \"v_ZREEgMgSz_o\": {\"duration\": 43.65, \"timestamps\": [[0, 8.08], [2.62, 24.01], [24.45, 37.76], [37.98, 43.65]], \"sentences\": [\"A girl stands in a bathroom talking to the camera as a man films her.\", \" The lady wipes her eye makeup off and washes her face.\", \" the lady rinses the soap off her face.\", \" The lady stands upright and wipes her face with her hands while smiling.\"]}, \"v_cfwJd80WCZU\": {\"duration\": 17.88, \"timestamps\": [[0, 4.83], [4.83, 16.81], [16.81, 17.88]], \"sentences\": [\"A man walking on metal stilts is bouncing a basketball with his right hand as a man passes him on rollerblades in the opposite direction.\", \" The man on stilts turns around while still bouncing the ball, loses control for a little bit, but steps it up and bounces is again.\", \" The man then grabs the basketball with two hands and pretends that he's going to throw it towards the camera.\"]}, \"v_7g3YO0-R4qk\": {\"duration\": 209.86, \"timestamps\": [[0, 22.04], [22.04, 209.86]], \"sentences\": [\"A swimming pool is shown in a room.\", \" Men are shown jumping into the pool and swimming laps.\"]}, \"v_SZqwvjwqwK4\": {\"duration\": 222.6, \"timestamps\": [[0, 5.57], [6.68, 212.58], [57.88, 60.1], [67.89, 69.01], [125.77, 130.22], [153.59, 155.82], [176.97, 180.31], [217.04, 222.6]], \"sentences\": [\"We see an opening title screen.\", \" A man is playing the drums while wearing earphones.\", \" We see the man's feet in the upper corner.\", \" the mans' feet return in the corner.\", \" We see a game being played before returning to the drummer.\", \" We see another scene from the game.\", \" The man throws and catches one of his drumsticks.\", \" We see a closing screen with a website on it.\"]}, \"v_g9sYWTE6LTg\": {\"duration\": 216.9, \"timestamps\": [[0, 21.69], [22.77, 164.84], [164.84, 216.9]], \"sentences\": [\"A large group of people are sitting around while two men bring out a table and a man and woman stand on it.\", \" The man and woman speak to the crowd and perform a tango routine while standing on the table the entire time.\", \" The people step off the table and bow to the audience clapping and the camera panning around.\"]}, \"v_w--HmpjK-s8\": {\"duration\": 90.19, \"timestamps\": [[0, 20.29], [20.74, 53.66], [53.21, 68.99], [68.99, 90.19]], \"sentences\": [\"A man with dreads is talking and getting his instruments together to make some music.\", \" he is jamming out in the car very happily.\", \" There is a lot of traffic and and ambulence driving by too.\", \" He records all of the music on a laptop.\"]}, \"v_xcI2e5T_BL0\": {\"duration\": 89.86, \"timestamps\": [[0, 25.61], [26.06, 26.96], [30.55, 44.48], [45.83, 52.57], [53.92, 57.06], [58.41, 73.69], [75.03, 78.18], [80.43, 89.86]], \"sentences\": [\"A man is scooping out the inside of a watermelon.\", \" He eats a piece of the watermelon.\", \" He draws on the side of the watermelon.\", \" He starts cutting out portions of the watermelon to carve it.\", \" He pulls out a piece of the watermelon skin.\", \" He continues drawing and cutting the watermelon.\", \" He shows the carved watermelon.\", \" The lights turn off and he shows the carved watermelon.\"]}, \"v_k67UWfSt-iE\": {\"duration\": 86.31, \"timestamps\": [[0.86, 31.5], [27.19, 61.71], [56.1, 82.86]], \"sentences\": [\"A small group of people are seen playing a game of volleyball while people watch along the sidelines.\", \" The players hit the ball several times over the net as well as chasing after the ball.\", \" The continue to play the game while others cheer and high five one another after.\"]}, \"v_Isx1Q5wyJZg\": {\"duration\": 215.82999999999998, \"timestamps\": [[0, 28.06], [28.06, 53.96], [53.96, 139.21], [139.21, 215.83]], \"sentences\": [\"Two girls spin double jump ropes while a girl in a black skirt jumps and a crowd of spectators watches on.\", \" A girl in jeans enters the ropes and performs different jumping moves.\", \" A girl in a blue shirt enters the jump ropes and performs different moves while jumping.\", \" A girl enters the jump ropes going extra fast speed and performs fast jumps.\"]}, \"v_wC-k0Zfx-cM\": {\"duration\": 87.7, \"timestamps\": [[0, 24.56], [24.12, 26.75], [35.52, 70.6]], \"sentences\": [\"People are sumo wrestling on a mat.\", \" People are playing the drums.\", \" Sumo wrestlers are talking to the camera.\"]}, \"v_nOm1JLcBD30\": {\"duration\": 178.66, \"timestamps\": [[0.89, 72.36], [67, 139.35], [118.81, 176.87]], \"sentences\": [\"A small group of people are seen riding around bumper cars and crashing into one another.\", \" The group continues driving around and passing one another.\", \" The people continue driving the cars and passing one another.\"]}, \"v_BuaWU70q7cE\": {\"duration\": 147.91, \"timestamps\": [[0, 19.23], [19.23, 49.55], [49.55, 102.06], [102.06, 147.91]], \"sentences\": [\"A teenaged boy and his mother are sitting in bed dressed very relaxed and talking about how to wrap gifts.\", \" He gets side tracked on his phone and then gets back to business, they start cutting the wrapping paper.\", \" They put the presents in the middle of the paper and try to start wrapping.\", \" They seems to have different techniques as the son finishes much faster and mom's comes out looking a little bit better.\"]}, \"v_mS7SAG1nW1o\": {\"duration\": 61.26, \"timestamps\": [[0, 6.43], [7.35, 32.77], [33.69, 50.54], [50.84, 61.26]], \"sentences\": [\"A woman is in a stable with a white horse.\", \" She shows a collection of brushes and grooming supplies.\", \" She pets the horse as she talks, and tries to keep him calm.\", \" She uses the brushes to groom him thoroughly, then cleans his hooves.\"]}, \"v_cy3a8BJJ-YQ\": {\"duration\": 141.09, \"timestamps\": [[0, 65.6], [45.85, 100.88], [81.83, 138.97]], \"sentences\": [\"A small group of people are seen sitting around a poker table with a woman dealing cards in front.\", \" The woman deals cards to the people while they put their cards and chips in the middle.\", \" The dealer continues playing with the people and looking off into the distance.\"]}, \"v_JZK-HJ-Tdw4\": {\"duration\": 221.75, \"timestamps\": [[0, 7.76], [0, 181.84], [18.85, 25.5], [27.72, 54.33], [62.09, 67.63], [67.63, 75.4], [87.59, 221.75], [119.75, 134.16], [216.21, 221.75]], \"sentences\": [\"We see an animated opening scene.\", \" We see see man run with a pole and perform a high jump.\", \" The man knocks the pole down and lays down in disappointment.\", \" We see the man holding his pole and make his 2nd attempt knocking over the pole.\", \" The  man tries a third time and the poles stays up.\", \" The man raises his arms in the air.\", \" We then see attempt 1,2 and 3 again.\", \" The man raises his arms in the air for the crowd.\", \" The man throws his arms in the air and falls to the ground.\"]}, \"v_cwVZNpqc-mQ\": {\"duration\": 236.31, \"timestamps\": [[0, 216.22], [216.22, 236.31]], \"sentences\": [\"A man in a black shirt is sitting down playing a drum set.\", \" He stops playing and starts talking into a microphone.\"]}, \"v_hHiPEAiYKv0\": {\"duration\": 83.06, \"timestamps\": [[29.49, 33.64], [33.64, 46.1], [46.1, 59.39], [59.39, 62.29]], \"sentences\": [\"A man is shoveling snow off his driveway in a heavy snow storm.\", \" He is wearing winter clothing and his fully covered.\", \" Another man is also shoveling snow off of he walkway of the house is not wearing any winter gear.\", \" They both continue to shovel and clean the snow in the heavy snow storm.\"]}, \"v_vbyMT7bdUX4\": {\"duration\": 108.46000000000001, \"timestamps\": [[0, 9.76], [11.39, 18.98], [20.61, 84.6], [86.77, 108.46]], \"sentences\": [\"A woman is sitting in front of a table covered in wrapping supplies.\", \" She shows off a mug filled with gifts.\", \" She places it in cut cellophane, the wraps it around the present.\", \" She then ties it off with colorful ribbons.\"]}, \"v_NS8qkB39x9U\": {\"duration\": 64.04, \"timestamps\": [[0, 21.45], [11.85, 51.87], [51.23, 64.04]], \"sentences\": [\"A camera pans around a dark kitchen and leads to the person walking down a set of stairs.\", \" Clothes are seen on the floor followed by a woman in curlers smoking a cigarette and playing on the computer.\", \" She speaks to the camera and gets a shot of her and the camera man together.\"]}, \"v_k3MFZmhXynI\": {\"duration\": 29.0, \"timestamps\": [[0.58, 15.08], [12.33, 26.68]], \"sentences\": [\"A person is seen pushing a lawn mower all around a yard while moving around in fast motion.\", \" The person continues moving around to cut the grass and the camera captures his movements.\"]}, \"v_3vVhq-v5-wM\": {\"duration\": 30.35, \"timestamps\": [[0, 10.32], [9.1, 30.35]], \"sentences\": [\"A person is seen grabbing a bowling ball and winding his arm while other people bowl around him.\", \" The man throws the ball and hits several pins while running back and cheering to the camera.\"]}, \"v_14AnvDNV5BI\": {\"duration\": 22.34, \"timestamps\": [[0.45, 4.02], [4.36, 6.92], [5.92, 22.34]], \"sentences\": [\"A young man sits on a cardio machine.\", \" Then, the man grans the handle of the machine.\", \" After, the man pulls the handle of la machine to do abs.\"]}, \"v_soE6TfvOiIo\": {\"duration\": 117.89, \"timestamps\": [[0, 11.79], [13.56, 56], [58.94, 90.77], [93.72, 106.69], [106.69, 117.89]], \"sentences\": [\"A news man is talking in front of an image of a bulldog puppy.\", \" Doors open to a store, with various images of people working on different projects.\", \" A man shows how he received prostetic legs for the dog.\", \" The dog is shown with his new legs as they heal.\", \" In the final scene, the dog is walking along with a leashed pet pig.\"]}, \"v_WYyqptHdgkk\": {\"duration\": 139.97, \"timestamps\": [[0, 4.2], [4.2, 7.7], [7, 139.97]], \"sentences\": [\"The man is on his feet bouncing towards the camera while standing on a tight flat ribbon that is connected to two very tall rock walls.\", \" The man then turns around and starts bouncing on his backside then back and forth onto his feet and backside while holding and letting go of the ribbon.\", \" The man continues to do tricks on the tight ribbon until he gets off of the ribbon and walks away smiling.\"]}, \"v_YaIuavIbk6A\": {\"duration\": 171.32, \"timestamps\": [[0, 4.28], [4.28, 166.18], [23.13, 162.75], [167.03, 171.32]], \"sentences\": [\"An introduction comes onto the screen for a video about a sporting competition.\", \" A woman is interviewing another woman about the competition and all the events.\", \" Several clips are shown of people enjoying different sports and activities.\", \" After the interview ends, the closing credits are shown with graphics.\"]}, \"v_O8tsM_ilGx4\": {\"duration\": 30.09, \"timestamps\": [[0, 4.36], [6.62, 24.98], [25.88, 30.09]], \"sentences\": [\"A cowboy riding a horse exits a gate.\", \" He ropes a little calf with a lasso.\", \" He jumps down and ties up the calf.\"]}, \"v_poI4vU4k1sY\": {\"duration\": 231.04, \"timestamps\": [[0, 10.4], [11.55, 206.78], [30.04, 159.42]], \"sentences\": [\"A cue ball rolls on a table slowly away from the pocket.\", \" A man stands holding a touch screen discussing.\", \" Men compete and play a games of billiards.\"]}, \"v__79Qlv1SQ9k\": {\"duration\": 120.09, \"timestamps\": [[4.8, 98.48], [39.03, 98.48]], \"sentences\": [\"A leg wearing a blue pants with red and white lines is shown, it moves on the snow,  the legs were crossed as the lifebuoy moves on the snow.\", \"  A person from afar is on a lifebuoy sliding on the snow.\"]}, \"v_0lYwrXV1R3A\": {\"duration\": 146.19, \"timestamps\": [[0, 19.01], [19.01, 53.36], [55.55, 75.29], [82.6, 98.68], [107.45, 146.19]], \"sentences\": [\"A hockey player is injured and is helped up from the ice by the coach.\", \" The hockey player is escorted from the ice by the coach.\", \" A replay shows the hockey player being hit in the face by the puck and he falls to the ice.\", \" The teams stand together around a circle and face off to start the match.\", \" Hockey player play a game and skate around the ice passing back and forth.\"]}, \"v_8ErMpNsK3_c\": {\"duration\": 33.0, \"timestamps\": [[0, 16.99], [17.16, 33]], \"sentences\": [\"A little girl swings across the monkey bars on a playground.\", \" Her mother talks as she watches her slide to the ground and start again.\"]}, \"v_UZIs0_W2Akw\": {\"duration\": 99.75, \"timestamps\": [[0, 42.89], [38.9, 99.75]], \"sentences\": [\"A close up of a horse is shown followed by a woman walking into frame and brushing the horse.\", \" She continues brushing the horse in various spots and ends with her feeding the horse.\"]}, \"v_AJ_QqCET1iY\": {\"duration\": 63.14, \"timestamps\": [[6.63, 15.15], [14.84, 53.35], [53.35, 55.24], [55.88, 63.14]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He does a gymnastics routine on the balance beam.\", \" He dismounts and lands on a blue mat.\", \" He waves at the crowd and walks off.\"]}, \"v_TxxUmibEy9Q\": {\"duration\": 189.24, \"timestamps\": [[0, 18.92], [23.66, 62.45], [63.4, 132.47], [135.31, 162.75], [163.7, 189.24]], \"sentences\": [\"A woman is standing and walking inside a store.\", \" She walks up to a man and shakes his hand.\", \" She walks away, perusing the items on the shelves before leaning onto the counter, flexing her biceps.\", \" The woman shows the man her biceps before engaging in arm wrestling with him.\", \" She sits beside the counter, continuing to talk with him for a while.\"]}, \"v_qZTAv1s_eBQ\": {\"duration\": 84.27, \"timestamps\": [[0, 84.27], [0, 83.42], [63.62, 84.27]], \"sentences\": [\"man is running wearing stilts in a green grassy field.\", \" cars are parked on side of a street in the background.\", \"man get ous the grass and runs into a street.\"]}, \"v_Nr49JFixNE4\": {\"duration\": 172.82999999999998, \"timestamps\": [[0, 44.07], [45.8, 172.83]], \"sentences\": [\"People are standing in a gymnasium talking.\", \" They start running and throwing balls at each other.\"]}, \"v_XJ-knBky6S0\": {\"duration\": 142.71, \"timestamps\": [[1.43, 35.68], [29.26, 103.46], [77.78, 139.14]], \"sentences\": [\"A man is seen standing at the end of a dock and looking back to people partying.\", \" The man walks up and sees two people performing martial arts in the middle of a circle.\", \" The people continuing moving around while others watch on the side and the soldier joining in as well.\"]}, \"v_EMOfWVKMqDM\": {\"duration\": 96.43, \"timestamps\": [[11.09, 23.14], [23.14, 33.75], [33.75, 48.22], [48.22, 85.34], [85.34, 92.09]], \"sentences\": [\"There's a young woman who is curling in a curling rink.\", \" There are several other players who are also curling.\", \" Various pictures of that same woman are being shown posing for some sort of photo shoot.\", \" The woman seems a bit distressed about the game.\", \" She is posing for a photo shoot with a curling rock.\"]}, \"v_abWGVKYPffM\": {\"duration\": 22.04, \"timestamps\": [[0, 4.63], [4.85, 22.04]], \"sentences\": [\"A man is using a weed whacker to trim bushes.\", \" He turns away from the bushes and cuts weeds on the ground.\"]}, \"v_c3lo99rni-o\": {\"duration\": 208.42000000000002, \"timestamps\": [[0, 28.14], [28.14, 103.17], [103.17, 152.15], [152.15, 208.42]], \"sentences\": [\"woman is standing in a kitchen talking to the camera holding a bag of pasta.\", \" woman grab some pasta and put them in boiled water.\", \" woman grab one spaghetti and eats it to see if is cooked and explain how to know it.\", \" throw the water in the sink and grate cheese in pasta and a little oegano and serve it in a white plate.\"]}, \"v_cWdWucjUhks\": {\"duration\": 69.64, \"timestamps\": [[0, 38.3], [33.77, 69.64]], \"sentences\": [\"A person does a routine on parallel bars.\", \"  He does his routine and then dismounts.\"]}, \"v_cUEGoRjraxM\": {\"duration\": 166.65, \"timestamps\": [[3.33, 151.65], [41.66, 71.66], [81.66, 83.33]], \"sentences\": [\"Dog owner stand with and hold their dogs.\", \" People play with their dogs in a park with obstacles.\", \" A group holds signs with a dog on a city sidewalk.\"]}, \"v_Q3cc0HlO7so\": {\"duration\": 143.57, \"timestamps\": [[1.44, 59.58], [33.74, 107.68], [66.76, 139.26]], \"sentences\": [\"A man and woman are seen standing on a stage with a spotlight shown on them.\", \" The duo begin playing instruments together while looking at one another as well as the camera.\", \" The two continue playing with one another and pause to look at the camera.\"]}, \"v_Vi2gzCrS-fE\": {\"duration\": 75.65, \"timestamps\": [[0, 44.63], [51.06, 75.65]], \"sentences\": [\"A person is seen cutting up a tomato and demonstrating how the knife works on a piece of paper.\", \" The person then sharpens the blade on a coffee mug and cuts through the paper.\"]}, \"v_IVHmmp3Nsd4\": {\"duration\": 202.46, \"timestamps\": [[0, 2.02], [2.02, 170.06], [171.07, 202.46]], \"sentences\": [\"The words \\\"Abstract Birds/Oil Painting Katy Jade Dobson\\\" appear on screen.\", \" Dobson sketches out a design on white canvas and starts painting it.\", \" She stands by her finished work as paint drips in lines down the canvas.\"]}, \"v_SfiAcQAPpQ8\": {\"duration\": 82.27, \"timestamps\": [[0, 82.27], [21.39, 43.6], [43.6, 49.36]], \"sentences\": [\"A man is standing behind a bar.\", \" He puts ice into the glass and pours drinks into it.\", \" He stirs it with a straw.\"]}, \"v_23ApAC123aQ\": {\"duration\": 133.75, \"timestamps\": [[0, 8.02], [8.02, 15.38], [15.38, 57.51], [57.51, 75.57], [75.57, 88.94], [88.94, 111.68], [111.68, 133.75]], \"sentences\": [\"The scene opens up with a carwash and and advertisement.\", \" Two men are talking while one is sitting in his car.\", \"  A man is cleaning a car and talking to the camera.\", \" The car is dried and vacuumed, then on to the next car.\", \" The customer is handed his keys and he is on his way with a clean car.\", \"  Two men are messing around while cleaning the car.\", \" A sign shows the services they offer.\"]}, \"v_Tm0jUAQf6zY\": {\"duration\": 131.05, \"timestamps\": [[0, 15.73], [15.73, 42.59], [42.59, 131.05]], \"sentences\": [\"A young girl is standing in her living room holding a baton horizontal to her neck while a cat on the ground is moving about.\", \" The girl then unbends her arm, lets the baton roll to her hands then begins to do a series of twirling the baton.\", \"The cat below  walks in and out of the screen while she's twirling the baton and even throws it up in the air, catches it then continues to twirl it.\"]}, \"v_6YmUCNIMpB4\": {\"duration\": 27.86, \"timestamps\": [[0, 1.25], [1.25, 17.69], [17.55, 27.59]], \"sentences\": [\"A man bends on front a hedge holding an electric cutter.\", \" The man cuts a long hedge of a garden using an electric cutter.\", \" Then, the man removes leaves on top the hedge with his hand.\"]}, \"v_GhvNhbL2ivg\": {\"duration\": 150.65, \"timestamps\": [[0, 150.65], [0, 146.13], [4.52, 150.65]], \"sentences\": [\"man is sitting in a room playing congas.\", \"keyboard is behind the man playing congsa in a room.\", \" man is playing salsa in congas in a music room.\"]}, \"v_Vcxv3nyZpSs\": {\"duration\": 37.39, \"timestamps\": [[0, 3.36], [3.36, 14.21], [14.21, 19.81], [19.81, 37.38]], \"sentences\": [\"A girl is riding on a yellow riding lawn mower on a very large yard filled with green grass.\", \" When the girl reaches the end of the yard she makes a turn and drives up in the same direction she just came from.\", \"When she reaches that end, she makes a turn but it's too tight and she reverses a little.\", \"The girl then makes her turn in the opposite direction once again and when she reaches half way down the yard she turns once again and heads up the direction she just came from.\"]}, \"v_bNh4SQ2nR80\": {\"duration\": 166.26, \"timestamps\": [[0.83, 153.79], [0, 77.31], [92.27, 166.25]], \"sentences\": [\"A video is shown for how to do a frizz free blowout.\", \"  After washing and conditioning, product is applied and blow dried.\", \"  Then the rest of the procedure is completed.\"]}, \"v_eMkBTRYwBAU\": {\"duration\": 195.93, \"timestamps\": [[0, 19.59], [20.57, 35.27], [35.27, 160.66], [161.64, 195.93]], \"sentences\": [\"A man in ski jacket on a snowboard holds onto a rope attached to a truck.\", \" The truck starts driving and the man is pulled behind on the tow rope.\", \" The man maneuvers to pull up parallel with the truck and alternates going back and forth behind the truck.\", \" The man slows down before he lets go of the tow rope and comes to a stop.\"]}, \"v_xFDQTAemadA\": {\"duration\": 114.5, \"timestamps\": [[0, 31.49], [31.49, 33.78], [34.35, 35.49], [36.64, 56.68], [62.4, 114.5]], \"sentences\": [\"A guy is on a horse with a white long rope that has a big circle tied at the end and seems to be waiting for some blue gates to open.\", \"The blue gates open and a little bull runs out and the guy on the horse chase it down.\", \"the guy the tosses the rope and catch the bull around the neck while the or end of the rope is tied to the horse.\", \"The guy then jumps off the horse,runs to the bull and flip it on his back then tie the bulls legs together.\", \"the guy then gets back on his horse while two other guys free the bull from the rope tie and take it away.\"]}, \"v_pmbHoeudjKc\": {\"duration\": 15.12, \"timestamps\": [[0, 5.82], [2.42, 5.14], [0, 2.8], [3.02, 9.15], [9.83, 15.12]], \"sentences\": [\"A lady is walking across a lawn.\", \" A guy runs and stops on the lawn.\", \" A man is standing on a track.\", \" The man runs on the track, jumps, and lands in a sand box.\", \" The man gets up, falls to the ground, and lays there.\"]}, \"v_UnZtNrtvSPA\": {\"duration\": 93.32, \"timestamps\": [[0, 8.4], [8.4, 93.32]], \"sentences\": [\"woman is standing in front of the camera in a white room playing with her hair.\", \" woman is sitting in a shair and a woman behind her start grabbing a small section of he hair doing a braid and anchoring it with a bobby pin and decorating it with hair pins.\"]}, \"v_9029wVyGkvg\": {\"duration\": 112.15, \"timestamps\": [[0, 96.45], [98.69, 112.15]], \"sentences\": [\"A man stands in front of the camera before being shown playing a game of basketball while punching a man with a pair of boxing gloves.\", \" The two men shake hands.\"]}, \"v_NWbWuVtgt9Y\": {\"duration\": 223.19, \"timestamps\": [[0, 81.46], [73.65, 162.93], [117.18, 209.8]], \"sentences\": [\"A man is seen sitting on a bench holding a guitar and speaking to the camera.\", \" He points to microphones in front of him and begins strumming the guitar.\", \" The man continues to play while moving his hands all around and stopping to look at the camera.\"]}, \"v_Oz4q98BhqKo\": {\"duration\": 203.9, \"timestamps\": [[0, 5.1], [8.16, 200.84], [69.32, 72.38], [148.84, 151.9], [195.74, 201.86], [195.74, 200.84], [199.82, 203.9]], \"sentences\": [\"We see people standing in an aerobics class.\", \" The teacher starts and the class follows.\", \" While standing on the step the people swing their hands.\", \" The class swings their arms again.\", \" The man in red walks off to the left.\", \" The class finishes and stop dancing.\", \" The teacher walks to turn off the camera.\"]}, \"v_OW_iCiS_U4Y\": {\"duration\": 166.16, \"timestamps\": [[0, 15.79], [14.95, 47.36], [47.36, 113.82], [113.82, 166.16]], \"sentences\": [\"A female swimmer is standing on a diving board in a black swim suit and she jumps off doing multiple flips.\", \"She is then shown on ground level talking and wiping her face with a towel.\", \"All of a sudden,she returns back to the diving board and does a crazy flip where her knees are tucked in and she's doing several flips and then men applaud her and there's an instant replay.\", \"The routine continues and the girl attempts to do more flips and the people react the same way and she puts her hand up to her mouth in awe.\"]}, \"v_mlUg8iMtew0\": {\"duration\": 203.62, \"timestamps\": [[2.04, 54.98], [37.67, 125.22], [107.92, 190.38]], \"sentences\": [\"Various text intros lead into pictures of a girl and paint close up.\", \" A person is then seen painting on a piece of paper using different colors.\", \" The person continues painting with text shown and blending in the paint.\"]}, \"v_xUKQWr2aLTU\": {\"duration\": 194.33, \"timestamps\": [[16.52, 25.26], [25.26, 70.93], [70.93, 112.71], [112.71, 137], [137, 170.04], [170.04, 184.61]], \"sentences\": [\"The video is about Bristol BMX Club holding a biking event.\", \" There's a man drawing a white starting line on the ground for the race.\", \" The bikers get ready to begin their race.\", \" They start the race and go through ramps and bumps.\", \" The bikers are from various age groups ranging from teenagers to adults.\", \" The races continue as the bikers make their way through the obstacle course of going over ramps and bumps.\"]}, \"v_NogC2IkaaAI\": {\"duration\": 14.54, \"timestamps\": [[0, 2.11], [3.2, 9.67], [10.97, 14.54]], \"sentences\": [\"A couple of sumo wrestlers are on a stage.\", \" They engage in a wrestling match together.\", \" A please stand by sign appears as technical problems are encountered.\"]}, \"v_bz62JE0qMSk\": {\"duration\": 192.36, \"timestamps\": [[0, 9.62], [9.62, 24.04], [24.04, 59.63], [59.63, 192.36]], \"sentences\": [\"little kid is standing in a pool poining out a yellow bucket in the water and other peolpe is sitting in benches around the pool.\", \" woman is carrying the child on his back and then she is with a man and the kid riding bikes in the park.\", \" kid is running inside a roofed basket court.\", \" kid is laying with a tennis racket.\"]}, \"v_joehK-w2bCc\": {\"duration\": 74.05, \"timestamps\": [[0, 13.33], [13.33, 63.31], [71.09, 74.05]], \"sentences\": [\"A man is walking in a room.\", \" A girl is dancing in front of a mirror in the room.\", \" He watches her from outside the room.\"]}, \"v_woRQ2JxcVHA\": {\"duration\": 29.49, \"timestamps\": [[0, 20.64], [20.64, 26.69], [27.13, 29.49]], \"sentences\": [\"A man dressed in black plays a saxophone on a pool patio.\", \" The saxophone player glances over to his keyboard player.\", \"The camera pans over to the keyboard player playing a Korg electric piano.\"]}, \"v_ofrX4WyAM-0\": {\"duration\": 77.81, \"timestamps\": [[0, 11.67], [11.67, 14.78], [15.17, 19.06], [19.06, 23.34], [23.73, 27.23], [27.23, 30.74], [30.74, 36.18], [36.57, 42.8], [43.19, 49.41], [49.41, 64.58], [70.03, 75.48]], \"sentences\": [\"The lady talks to the camera.\", \" We then see a pot.\", \" We see spaghetti in a box.\", \" We see salt in a cup.\", \" The water is boiling in the bot.\", \" She adds salt to the pot.\", \" She adds pasta to the water.\", \" We see the pasta box up close.\", \" We see the lady set the timer.\", \" She takes the pasta out of the pot.\", \" She talks and waves bye to the camera.\"]}, \"v_biAQgXDFskw\": {\"duration\": 93.64, \"timestamps\": [[0.94, 40.73], [27.62, 91.76]], \"sentences\": [\"A man and woman are seen standing in the middle of a floor with a woman speaking to the camera and leading into her dancing with the man.\", \" The two spin and dance around one another and ends by walking away from each other.\"]}, \"v_PcGzPNEnVD0\": {\"duration\": 202.34, \"timestamps\": [[1.01, 50.58], [45.53, 95.1], [94.09, 163.89], [161.87, 200.32]], \"sentences\": [\"A man is seen speaking to the camera while standing next to a car with an open trunk.\", \" The man then unscrews a tire and lifts the car with a jack.\", \" The man takes the tire off and puts a new one on, ending by screwing it into place.\", \" He takes off the jack and finishes by speaking to the camera.\"]}, \"v_p6jip892RdM\": {\"duration\": 206.71, \"timestamps\": [[0, 13.44], [13.44, 206.71], [40.31, 206.71]], \"sentences\": [\"a bicycle is shown in a dark room.\", \" man is wearing motobike clothes and is riding a motorbike in a field.\", \" man is doing high jumps on the motorbike practicig motocross in a dusty field.\"]}, \"v_opCMfcAl7yw\": {\"duration\": 211.2, \"timestamps\": [[0, 9.5], [13.73, 116.16], [122.5, 211.2]], \"sentences\": [\"A large group of flags is shown.\", \" Several swimmers are swimming in the pool.\", \" They swim competitively, shown from underneath.\"]}, \"v_b2eonKWCocE\": {\"duration\": 156.78, \"timestamps\": [[0, 16.46], [22.73, 60.36], [61.93, 97.99], [101.12, 130.91], [130.91, 137.18], [138.75, 156.78]], \"sentences\": [\"A man is shown speedily raking leaves in his front yard.\", \" Several cars go by as he continues raking.\", \" He rakes around the bushes and tree in his yard.\", \" A woman appears and helps him rake and bag the leaves.\", \" They take the bags away when they are done.\", \" They stand in front of the camera and pose with the rake.\"]}, \"v_RJus6sogyiM\": {\"duration\": 85.59, \"timestamps\": [[0, 6.85], [6.85, 85.59]], \"sentences\": [\"A person is walking in a yard while recording it with a camera.\", \" The person gets a tray of white paint and paints a fence.\"]}, \"v_HdOylJP08Lk\": {\"duration\": 183.51, \"timestamps\": [[0, 39.45], [13.76, 19.27], [22.02, 34.87], [39.45, 183.51]], \"sentences\": [\"man is walking in a casino watching the pople and the machines.\", \" woman is sitting in a black jack table and is talking to men.\", \" woman is smiling and stretching her arm behind her back.\", \" man sits in a table and start playing black jack in a casino.\"]}, \"v_nd50oUKdygI\": {\"duration\": 128.06, \"timestamps\": [[0, 26.25], [26.25, 62.75], [62.75, 86.44], [74.27, 80.04], [86.44, 112.05], [112.69, 119.74]], \"sentences\": [\"A man talks to the camera from a kitchen.\", \" The man demonstrates sharpening a knife with several sharpening tools.\", \" The man talks to the camera again.\", \" The man sharpens and then holds up a knife.\", \" Several types of knife storage options are displayed.\", \" The man talks to the camera some more.\"]}, \"v_OKTxSQMS560\": {\"duration\": 207.7, \"timestamps\": [[0, 5.19], [5.19, 87.24], [88.27, 125.66], [125.66, 148.51], [149.55, 171.35], [174.47, 194.2], [194.2, 207.7]], \"sentences\": [\"We see an opening screen with a dog.\", \" We see a lady in a nurse shirt talking and two dogs in a kitchen.\", \" The lady has a small wet dog she is vacuuming on table and is brushing the dog.\", \" We see the dogs running around on the kitchen floor.\", \" We see the lady shave a dogs fur and brush the dog.\", \" We then see the dogs on the floor again.\", \" We see the lady and her contact info over her face.\"]}, \"v_eQnwUWfah9w\": {\"duration\": 168.29, \"timestamps\": [[0, 22.72], [24.4, 115.28], [118.64, 168.29]], \"sentences\": [\"An ad for football appears on the screen.\", \" Several men are playing football indoors.\", \" They kick the ball back and forth while some people watch on the sidelines.\"]}, \"v_xCplsH6deic\": {\"duration\": 73.19, \"timestamps\": [[0, 16.1], [18.3, 73.19], [47.21, 53.06], [54.53, 59.28]], \"sentences\": [\"A baseball player hits a run on a sporting field and runs the bases making a home run.\", \" Players kick a ball and run the bases on a baseball field.\", \" The catcher has fun while dancing.\", \" A kick is caught midair by the baseman and the player is out.\"]}, \"v_P7kSJ8SRNHQ\": {\"duration\": 40.89, \"timestamps\": [[0.41, 37.62], [7.16, 27.6], [19.01, 39.66]], \"sentences\": [\"A small child is seen sitting in a swing.\", \" The child moves back and fourth on the swing while a laughing.\", \" A person's hand is seen pushing the child as she moves back and fourth.\"]}, \"v_6gZuc4umTPk\": {\"duration\": 233.13, \"timestamps\": [[0, 67.61], [51.29, 155.03], [129.39, 219.14]], \"sentences\": [\"Two young girls are seen speaking to the camera and playing with one another.\", \" One girl then pulls out a bottle of nail polish while the other waves to the camera.\", \" More clips are shown of one girl attempting to paint the nails of the other and ends by waving to the camera.\"]}, \"v_CCMtNNSzHw8\": {\"duration\": 122.53, \"timestamps\": [[0, 60.65], [3.06, 63.1], [71.68, 89.45], [90.06, 108.44], [113.95, 122.53]], \"sentences\": [\"A lady is wiping her face.\", \" A little girl is applying makeup to her face.\", \" The mother does the girls makeup.\", \" The girls admires her reflection.\", \" The girl grabs her toothbrush.\"]}, \"v_VToS7Ma-V4g\": {\"duration\": 49.23, \"timestamps\": [[0, 3.94], [3.94, 15.51], [15.51, 49.23]], \"sentences\": [\"The woman is positioned to take off on the race track and the man moves out of the way for her to go.\", \" Then she speeds off and does the triple jump into the sand making it all the way to the end of the 16 inch ruler.\", \" Next she is shown standing off the track smiling with her arms raised in the air filled with joy.\"]}, \"v_kCOMyIb7f0Q\": {\"duration\": 182.44, \"timestamps\": [[0, 25.54], [19.16, 35.58], [29.19, 52.91], [40.14, 95.78], [103.99, 182.44]], \"sentences\": [\"People are skiing in doors in between each other.\", \" A button is pushed on a machine.\", \" People walk into a cabin.\", \" A person is trying on skis.\", \" Other people are practicing skiing on a motor belt.\"]}, \"v_KBxE7NIOkf8\": {\"duration\": 67.25, \"timestamps\": [[2.02, 25.22], [25.55, 35.64], [33.29, 67.25]], \"sentences\": [\"Men stand on a steel platform high in the area and an instructor talks.\", \" A man is seated on the edge of the platform and holds onto large ropes.\", \" A patron runs and jumps from the platform wearing a budgie cord and he bounces on it as he reaches the bottom.\"]}, \"v_mdv8UW_871g\": {\"duration\": 123.35, \"timestamps\": [[0, 8.02], [8.63, 28.99], [28.99, 44.41], [44.41, 74.01], [53.04, 56.74], [74.01, 91.89], [91.89, 107.31], [107.31, 118.41], [119.03, 123.35]], \"sentences\": [\"We see a boat pulling out of the dock.\", \" We see the boat driving as a person jet skis behind it.\", \" We see the skier without the boat.\", \" We see the boat from above again.\", \" The skier falls into the water.\", \" We see the skier ski and perform 4 flips.\", \" We see the skier ski.\", \" We see the skier swim towards the boat.\", \" A person in the boat raises their hands in the air.\"]}, \"v_MPolPBO-K-Y\": {\"duration\": 170.51, \"timestamps\": [[0, 170.51], [23.87, 165.39], [43.48, 165.39]], \"sentences\": [\"The man in black shirt is playing guitar in the studio.\", \" The man is strumming the guitar.\", \" The man is pressing the thread on the guitar keys as he strum the guitar.\"]}, \"v_XsCND4lDiqA\": {\"duration\": 154.41, \"timestamps\": [[0, 51.73], [43.24, 110.41], [73.35, 154.41]], \"sentences\": [\"An old man threw the yellow ball in the cup and it bounced back on the table.\", \" The old man in black shirt threw the ball and landed on the table.\", \" A man threw the ball back and the man in black shirt take the ball from the cup and threw it but landed outside the table.\"]}, \"v_84uYA9rFoSw\": {\"duration\": 87.25, \"timestamps\": [[0, 3.49], [4.8, 13.09], [13.09, 87.25], [73.29, 87.25]], \"sentences\": [\"A woman bends over in a ballet pose.\", \" She then faces the camera talking.\", \" She displays more ballet moves.\", \" She finishes with the low fifth position.\"]}, \"v_uj0UBMgR2gk\": {\"duration\": 109.53, \"timestamps\": [[0, 10.41], [10.41, 31.76], [31.76, 37.24], [44.91, 64.62], [64.07, 87.62], [87.62, 105.7], [106.79, 109.53]], \"sentences\": [\"We see a man in an orchestra making faces.\", \" The man then stands and plays the violin.\", \" We see people at lockers.\", \" We go back to the man playing the violin.\", \" We see the people in the locker.\", \" We see the playing man and then the crowd stands and claps.\", \" The man smiles and waves.\"]}, \"v_WiGOn6O-S1g\": {\"duration\": 15.67, \"timestamps\": [[3.61, 8.07], [8.07, 14.03], [14.03, 15.2]], \"sentences\": [\"There are several swimmers standing on the tallest diving board of a swimming pool.\", \" The divers are getting ready to dive into the pool.\", \" One of the divers dives and jumps into the pool from a great height.\"]}, \"v_bDTQVC0ASbE\": {\"duration\": 193.73, \"timestamps\": [[8.72, 25.18], [27.12, 133.67], [133.67, 193.73]], \"sentences\": [\"A man in a red apron is talking.\", \" He is rubbing something on a board and ironing it.\", \" He's scraping the top of the board he ironed.\"]}, \"v_m7wfcL6YSMY\": {\"duration\": 43.4, \"timestamps\": [[0, 7.38], [8.03, 20.18], [16.71, 41.01]], \"sentences\": [\"A woman is seen riding on a camel behind another man on a camel.\", \" She looks back and smiles to the camera while it pans around the area.\", \" Another person is seen riding from behind while people hold onto the camels.\"]}, \"v_-xQvJmC2jhk\": {\"duration\": 95.09, \"timestamps\": [[6.18, 13.79], [13.79, 49.92], [40.89, 49.92], [48.97, 66.08], [66.56, 95.09]], \"sentences\": [\"Two women in a child are shown in a canoe while a man pulls the canoe while standing in the water, with other individuals visible in the background.\", \" The child and a different man sit in a canoe while the man paddles.\", \" The camera pans to show the first man in the foreground.\", \" The child and the first man are in a canoe while the first man paddles.\", \" A series of still images of the various people shown during the video are shown.\"]}, \"v_cqVvHj1oC-8\": {\"duration\": 224.77, \"timestamps\": [[3.37, 92.16], [80.92, 170.83], [161.83, 220.27]], \"sentences\": [\"Two people are seen hosting a news segment that leads into clips of people scraping off their cars.\", \" A woman is seen speaking to the camera while scraping off her car and holding up products to help.\", \" More people are seen speaking to the camera and showing off their methods of melting ice and leading back to the two reporters.\"]}, \"v_NiaE7amNW7s\": {\"duration\": 189.89, \"timestamps\": [[0, 5.7], [5.7, 8.55], [0, 84.5], [0, 81.65], [7.6, 13.29], [28.48, 30.38], [13.29, 83.55], [37.03, 38.93], [85.45, 87.35], [87.35, 90.2], [90.2, 92.1], [89.25, 92.1], [93.05, 95.9], [95.9, 100.64], [101.59, 117.73], [119.63, 159.51], [162.36, 167.11], [169, 182.3], [179.45, 187.04], [184.2, 189.89]], \"sentences\": [\"A young female gymnast wearing red prepares for her balance beam routine in the Olympics.\", \" The female gymnast runs to the springboard and jumps from it to the balance beam.\", \" The female gymnast then does her tumbling routine on the balance beam while commentators explain what she is doing and how difficult it is.\", \" A huge crowd watches and cheers the gymnast on.\", \" An Asian man walks to the balance beam and pulls the springboard away from the beam.\", \" The gymnast performs a difficult tumbling sequence and the crowd cheers louder than before.\", \" People in the crowd that is watching the gymnast enter the gym and find seats while others stand up and exit the gym.\", \" Another female gymnast walks past the balance beam in the background.\", \" The female gymnast prepares for her dismount.\", \" The female gymnast runs and completes a tumbling sequence to exit the balance beam.\", \" The female gymnast lands perfectly and throws her arms straight up in the air with a huge smile on her face Other gymnasts in the background watch and clap.\", \" A large group of photographers watch and take photographs of the gymnast.\", \" The gymnast waves while spinning in a circle and then runs to the side of the gym floor.\", \" Three Asian gymnasts in yellow watch and clap without smiling.\", \" The gymnast in red hugs and talks to her other teammates and her coach while several photographers take photos of her.\", \" The commentators replay several of the gymnasts more difficult tumbling sequences and her dismount in slow motion while explaining what she is doing.\", \" The female gymnast hugs another coach and another one of her teammates while a man films them with a large camera.\", \" All of the gymnasts on the United States team and their coaches walk through the gym while the crowd cheers very loudly.\", \" Several gymnasts from other teams also walk past.\", \" The female gymnast talks with her team while waiting for her score to be displayed.\"]}, \"v_cSCskKqO7CE\": {\"duration\": 172.31, \"timestamps\": [[0, 170.58], [0, 10.34], [11.2, 58.58], [58.58, 141.29], [143.01, 171.44]], \"sentences\": [\" A little girl demonstrates how to apply make up using a mini makeup kit as a makeup source, all while talking to the camera.\", \"  A little girl talks to the camera and then leans into the camera in a close up shot.\", \"  The little girl pulls out a colorful make up palette and shows the camera the inside of the palette before beginning to apply some of the make up to her eyes.\", \"  The girl then applies black mascara to her eyelashes and some eyeshadow and lip gloss taking breaks after the applications to talk to the camera.\", \"  The little girl gives a final thumbs up and blows kisses to the camera before talking more and smiling as the scene fades out.\"]}, \"v_RpyRgnHdUXc\": {\"duration\": 171.85, \"timestamps\": [[1.72, 169.27], [27.5, 122.87], [123.73, 169.27]], \"sentences\": [\"A man sits on a rowing machine in a gym and talks to the camera while demonstrating how to use a rowing exercise machine.\", \" The man begins to exercise on the machine slowly , all while talking to the camera, eventually building up to a more fast paced work out on the same machine.\", \"   The man begins to demonstrate how to use the digital panel on the exercise machine by pointing at it and talking to the camera.\"]}, \"v_8QbHeaXOJOA\": {\"duration\": 210.56, \"timestamps\": [[0, 16.84], [23.16, 121.07], [125.28, 210.56]], \"sentences\": [\"A kite is shown high in the air.\", \" A man is holding the kite before letting it go.\", \" It spins high into the air and flips in circles and angles, bouncing off the ground.\"]}, \"v_9YYypM0JvUM\": {\"duration\": 116.38, \"timestamps\": [[0, 33.17], [33.75, 69.25], [69.25, 116.38]], \"sentences\": [\"A man is standing in a gym holding up a large bicycle wheel moving his hands along the tube inside the rubber.\", \"The man continuously performs the action as he moves the circle around on his knee.\", \"After, the man picks up a yellow object and starts to tighten the spokes on the wheel and sealing the lifting the rubber up.\"]}, \"v_IRz9PYgpb8U\": {\"duration\": 10.17, \"timestamps\": [[0, 1.93], [3.31, 10.17]], \"sentences\": [\"A man uses a trimmer to trim the leaves on a tree in a backyard, starting in the middle.\", \" He moves to his left to continue trimming the tree.\"]}, \"v__Y4czVoIxvE\": {\"duration\": 189.13, \"timestamps\": [[0, 13.24], [15.13, 19.86], [33.1, 133.33], [143.74, 189.13]], \"sentences\": [\"Two women are standing inside a house.\", \" They show off a canvas tile.\", \" They then show how they made the tile and laid it out on the ground, piecing it together like a puzzle.\", \" They sit on top talking about it before moving the furniture back in place on top of it.\"]}, \"v_ZNVhz7ctTq0\": {\"duration\": 14.05, \"timestamps\": [[0, 1.97], [1.9, 14.05]], \"sentences\": [\"A fluffy dog is standing on a sidewalk with a child behind it.\", \" The dog begins walking on the sidewalk and closely behind him a child is riding on a scooter as the dog walks.\"]}, \"v_V7C34-4tBok\": {\"duration\": 109.36, \"timestamps\": [[0, 33.35], [28.43, 82.56], [74.36, 108.26]], \"sentences\": [\"A sink is shown full of dirty dishes and leads into various products shown off.\", \" A person then scrubs the dishes and begins putting some of them into a bucket.\", \" They wash the dishes continuously while stacking them in a rack off to the side.\"]}, \"v_ze6Bu0bcNbg\": {\"duration\": 233.59, \"timestamps\": [[0, 49.05], [50.22, 103.95], [103.95, 175.19], [175.19, 233.59]], \"sentences\": [\"A Phillips three headed razor is shown and then un-boxed on a red table.\", \"Next,the razor is assembled and place on its charge to charge once it is plugged in.\", \"Once fully charged,the man rinses the razors,applies shaving cream to this beard area and start to shave.\", \"As he is shaving,the man continues to talk and his face begins to turn a little big razor and the razor is then placed back on the charger.\"]}, \"v_uRcVktMzlUc\": {\"duration\": 232.97, \"timestamps\": [[0, 16.31], [20.97, 75.71], [78.04, 202.68], [207.34, 232.97]], \"sentences\": [\"A man is standing on a stage in front of an american flag while reading into a microphone from a piece of paper.\", \" He then is shown in front of a crowd as they scream behind him.\", \" The men walk out, and begin competing in a dart throwing challenge.\", \" The winner is interviewed afterward.\"]}, \"v_b_v5uGSheEw\": {\"duration\": 34.51, \"timestamps\": [[0, 1.21], [0.86, 3.8], [4.14, 31.92], [21.05, 22.43], [23.12, 25.53], [24.15, 28.98], [28.81, 34.51]], \"sentences\": [\"The Bali River tubing information is shown on the screen.\", \" There's a yellow and red tube shown with the name Bali River printed on it.\", \" There are several people wearing protective helmets tubing in the river.\", \" There's a man standing under a pipe with fast flowing water.\", \" There are some tubers paddling through the water with their hands.\", \" There's a man relaxing in his tube giving a thumbs up.\", \" The tubers continue tubing through the river.\"]}, \"v_KlmlCbJup5A\": {\"duration\": 48.88, \"timestamps\": [[0.98, 16.37], [14.17, 37.88], [34.46, 47.41]], \"sentences\": [\"A man is seen wearing a mask and pushing an object along a wall.\", \" The man is then seen laying out paper across a table.\", \" He shortly after puts wallpaper up on the wall.\"]}, \"v_buhaBimF4M0\": {\"duration\": 209.63, \"timestamps\": [[0, 12.58], [9.43, 20.96], [15.72, 29.35], [35.64, 199.15], [201.24, 209.63]], \"sentences\": [\"A woman on roller blades moves backwards, falls on the grass and laughs.\", \" A friend is talking with the fallen woman as she tries to get up.\", \" A friend talks to her while holding the camera and offers her a hand to get up.\", \" Two women hold hand and start rollerblading, while the girl in the red shirt learns how.\", \" The girl in the red shirt falls and they all laugh.\"]}, \"v_7UrJuhFvlQ4\": {\"duration\": 90.99, \"timestamps\": [[0, 90.08], [1.82, 85.98], [87.35, 90.53]], \"sentences\": [\"A leaf blower is shown blowing a large pile of leaves across a green lawn in front of residential houses.\", \"  The leaves fly up in the air but stick largely together as the the leaf blower wipes the ground clean of brown leaves and starts to form piles on the lawn.\", \"  The camera occasionally and finally settles on a yellow riding lawn mower sitting in the yard beyond the piles of leaves.\"]}, \"v_vxJlOKF1VB4\": {\"duration\": 229.82999999999998, \"timestamps\": [[0, 229.83], [14.94, 28.73], [29.88, 44.82], [45.97, 63.2], [75.84, 86.19], [78.14, 83.89], [156.29, 160.88], [198.8, 201.1]], \"sentences\": [\"We see  a girl with purple hair talking to the camera.\", \" We see the girl looking down at the camera.\", \" We see the girl pretend to brush and spray her hair.\", \" She holds 2 bottle to the camera.\", \" The girl brushes her hair and puts it in a ponytail.\", \" The girl adds products to her hair.\", \" The girl points at the camera.\", \" The girl gives the camera a thumbs up.\"]}, \"v_rAL6jEy54Tk\": {\"duration\": 32.09, \"timestamps\": [[0, 32.09], [0, 9.95], [17.01, 32.09]], \"sentences\": [\"man is standing on a room playing dart.\", \" man is throwing darts into a dartboard.\", \" the man grabs the darts from the board and talks to the camera.\"]}, \"v_pMCPCsvxRBw\": {\"duration\": 55.75, \"timestamps\": [[0, 55.75], [13.94, 54.64], [36.24, 55.75]], \"sentences\": [\"There are people working in a drink food stand filling cups, shaking cups, holding cups or just walking around.\", \" A young man fills a clear cup with liquid, puts it on the counter, covers it with a paper cup, shakes it vigorously, and when he's done he puts the paper cup down and pours all the contents into it, puts a yellow straw into it and hands it to the person waiting.\", \"Next to him another boy was also shaking a cup, and then preparing to transfer the contents to a paper cup.\"]}, \"v_cmzEDurFcwI\": {\"duration\": 119.63, \"timestamps\": [[11.36, 118.43], [14.95, 28.71], [29.91, 42.47], [43.66, 116.04]], \"sentences\": [\"A man in a blue shirt talks next to a air hockey table game in a showcase room, interspersed with video of four men demonstrating a game of air table hockey.\", \"  A man begins speaking from a showroom, while standing in front of a air hockey table game.\", \"  The camera cuts away to show four men playing a game of air hockey with the table game.\", \"  The man speaks again, next to the table game, until the camera pans away again to the men playing air hockey until the scene fades to an elaborate Gold Standard Games marketing graphic.\"]}, \"v_AoRk69eieek\": {\"duration\": 111.13, \"timestamps\": [[0, 111.13], [27.23, 28.89], [89.46, 99.46]], \"sentences\": [\"A man stands by a pole vault rig while a series of vaulters is shown attempting the vault with varying degrees of success.\", \" A group of people wearing white uniforms walk by in the background.\", \" Two people walk by in the background.\"]}, \"v_yinXvETACC4\": {\"duration\": 126.76, \"timestamps\": [[0, 53.87], [53.87, 126.76]], \"sentences\": [\"A host is seen speaking to the camera and leads into a trainer speaking with others exercising behind her.\", \" More shots of people exercising on bikes are shown and ends with the trainer walking through and talking.\"]}, \"v_PPXrVuZAb74\": {\"duration\": 10.08, \"timestamps\": [[0, 3.48], [3.43, 7.46], [7.66, 10.08]], \"sentences\": [\"A woman is closing her eyes standing on a diving board.\", \" She does a flip and dives into the water.\", \" She swims to the surface.\"]}, \"v_54K2F3zAZ0o\": {\"duration\": 37.79, \"timestamps\": [[0, 37.79], [27.78, 30.99], [0.57, 37.79]], \"sentences\": [\"A band is playing on a stage.\", \" A man and woman kiss.\", \" A man in a yellow shirt plays the saxophone.\"]}, \"v_i-G50GikqTg\": {\"duration\": 129.75, \"timestamps\": [[0, 10.38], [10.38, 24], [24, 54.5], [54.5, 78.5], [78.5, 117.43], [117.43, 129.75]], \"sentences\": [\"A young man sits down and pulls a drum close to him.\", \" He picks up his sticks and hits them together.\", \" He starts to count and drum.\", \" He drums faster as he looks away and then stops to adjust a few drums.\", \" He gets up and moves the camera to show a lever he moves and then he taps on the top of a drum over and over.\", \" He gives a thumbs up and peace sign.\"]}, \"v_GqWH2IYPw6U\": {\"duration\": 97.56, \"timestamps\": [[0, 19.51], [19.02, 72.68], [73.66, 97.56]], \"sentences\": [\"Various shots of a city are shown followed by a girl playing violin and many other watching.\", \" Another girl steps in and joins her by singing and several others join in to sing as well.\", \" A mime walks in with fireworks while the group still sings and many around are seen laughing and smiling.\"]}, \"v_MlbM7Mew0Ys\": {\"duration\": 233.55, \"timestamps\": [[3.5, 35.03], [36.2, 46.71], [46.71, 112.1], [112.1, 155.31], [156.48, 192.68], [192.68, 218.37]], \"sentences\": [\"Two men exercise inside a gym, then a man jumps rope crossing his arms and also the moving the rope on front.\", \" The man moves the rope with his right hand, then he moves both hands while skipping.\", \" Then, the man jumps crossing the arms, after he jumps normal for long time.\", \" Next, the a young man jumps rope raising the feet high, then he cross his the arms jumping.\", \" After, the young man moves the rope with the right hand, then he moves it with both hands and also moves the rope on front.\", \" After, the young man jumps alternate crossing the arms, skipping and moving the rope on front.\"]}, \"v_0VHUSC4YFT4\": {\"duration\": 86.52, \"timestamps\": [[0, 55.37], [40.23, 86.52]], \"sentences\": [\"A person is seen hanging on the side of a beam going down while another man holds him.\", \" He then pulls the other man up and watches him jump off on the side on a bungee cord.\"]}, \"v_JhqQGe0TkBU\": {\"duration\": 133.93, \"timestamps\": [[0, 119.2], [14.06, 15.4], [119.2, 133.93]], \"sentences\": [\"People stands on top of a diving board, the a man jumps in the swimming pool.\", \" Suddenly a girl runs on a lower dining board and jumps in the swimming pool.\", \" People sit around the pool.\"]}, \"v_qq1wRySmDTc\": {\"duration\": 97.06, \"timestamps\": [[0, 8.74], [16.99, 66.49], [67.46, 97.06]], \"sentences\": [\"a man is crouching in the woods next to a pile of stones.\", \" He is explaining the building of a fire.\", \" He lights the wood, creating a fire.\"]}, \"v_8AP2he781Cw\": {\"duration\": 51.26, \"timestamps\": [[0, 51.26], [4.1, 6.41], [13.07, 14.35], [30.24, 31.52]], \"sentences\": [\"People are playing hockey on an ice rink.\", \" A person falls over onto the ice.\", \" A person runs after a puck and falls over again.\", \" He begins hitting the puck and falls again.\"]}, \"v_wNwwiK6znIE\": {\"duration\": 46.35, \"timestamps\": [[0, 2.32], [2.55, 6.95], [7.18, 33.14], [33.6, 35.46], [35.46, 46.35]], \"sentences\": [\"We see an opening title screen.\", \" We see a man in a shop holding a ski.\", \" The man shows us a can of product he this sprays on and wipes down a ski.\", \" The man then holds the ski for us to see.\", \" We see two ski products and an ending screen.\"]}, \"v_-kmomJph-6E\": {\"duration\": 18.34, \"timestamps\": [[0, 0.83], [0.83, 6.79], [6.7, 18.34]], \"sentences\": [\"Two kids with extremly long hair are outside near a group of sheds.\", \"The shorter boy begins pulling the other guys hair and pulling him by it.\", \"However,the boy lets the guys hair go and the guy begins to knee him in the private area,pick him up over his head and drop him on a piece of wood.\"]}, \"v_YnsusYE6i_0\": {\"duration\": 224.19, \"timestamps\": [[0, 8.97], [7.85, 14.57], [7.85, 195.04], [195.04, 224.19]], \"sentences\": [\"There are a lot of dressed up people sitting in a large dining area at a reception.\", \" A brunette woman taps a blonde woman on her back, points to something on the ground, and the women smile with the blonde woman leans over and picks up her sweater that was on the ground.\", \"A woman dressed in a blue flowing dress with a blue bodysuit underneath is standing up, and she begins to do a ballet dance routine in the middle of the large dancing floor while the people in the reception area are watching her every move, taking picture and videoing her.\", \"When the woman is done dancing she stands there with her arms crossed on her chest and the crowds applauds, and gives her a standing ovation while she takes a few bows.\"]}, \"v_aKJKZHvP53E\": {\"duration\": 142.55, \"timestamps\": [[0, 31.36], [31.36, 60.58], [60.58, 100.5], [101.21, 142.55]], \"sentences\": [\"woman is standing in front of a poker tokens and cards.\", \" she turn around the cards and mixing it.\", \" cards are in a stack and split them in 4 and mixing it.\", \" cards are in a stack and other person split it in two and put them in a transparent box.\"]}, \"v_7dx3MobORY0\": {\"duration\": 203.07999999999998, \"timestamps\": [[0, 203.08], [39.6, 203.08]], \"sentences\": [\"A girl shows how to bake cookies from scratch.\", \"  Ingredients are added, stirred, and then the mixture is put in the oven.\"]}, \"v_rzsp_r9fq_A\": {\"duration\": 201.09, \"timestamps\": [[7.04, 19.1], [19.1, 25.14], [25.14, 56.3], [56.3, 109.59], [109.59, 118.64], [118.64, 134.73], [134.73, 159.86], [159.86, 177.96], [177.96, 187.01]], \"sentences\": [\"There's a woman in a black raincoat standing next to a wooden fence.\", \" She is joined by a little girl wearing a polka dotted jacket who brings her some green paint.\", \" The woman begins painting the fence with a bush.\", \" There are several other people in the neighborhood who are seen volunteering to paint the fence with green paint.\", \" The volunteers are being interviewed.\", \" There are two boys dressed in Batman costumes standing there.\", \" The volunteers continue to paint the fence.\", \" Some people from the community gather around the parking lot.\", \" The people continue painting the fence.\"]}, \"v_EPCb-f6yQxA\": {\"duration\": 77.51, \"timestamps\": [[3.1, 13.18], [13.56, 74.8]], \"sentences\": [\"Various mountain scenery is shown from different angles.\", \" A soldier plays a bagpipe in a mountain scene.\"]}, \"v_YmAIoN4uuz0\": {\"duration\": 146.94, \"timestamps\": [[0, 24.24], [24.24, 76.41], [74.94, 114.61], [109.47, 146.94]], \"sentences\": [\"Various clips are shown of landscapes as well as people riding along on boats and a man speaking to the camera.\", \" The man dives into the water and is shown in several clips swimming around and fish moving along as well.\", \" The man gives hand gestures to the camera and swims to the surface when another man grabs his gear and he speaks to the camera.\", \" More men speak to the camera as he jumps in.\"]}, \"v_-C9mAKWi9Ho\": {\"duration\": 92.02000000000001, \"timestamps\": [[0, 35.43], [31.29, 66.26], [64.41, 89.72]], \"sentences\": [\"An intro leads into two men fencing in a field.\", \" Several shots are shown of the men sticking swords to one another and the other blocking.\", \" In between clips are shown of the men boxing.\"]}, \"v_Ba3uRADSg50\": {\"duration\": 145.96, \"timestamps\": [[0, 45.25], [43.06, 86.85], [88.31, 145.96]], \"sentences\": [\"A few older men are shown standing in front of monkey bars talking to one another.\", \" One begins climbing along the bars with several other people coming from behind.\", \" One woman falls in the water and many more climb across the monkey bars.\"]}, \"v_x2ztI3YNu9o\": {\"duration\": 140.98, \"timestamps\": [[3.52, 75.43], [43.7, 132.52]], \"sentences\": [\"A camera pans around a snowy area and leads into a man holding an accordion and beginning to play.\", \" The man continues to play the instrument while the camera shows off more scenery of snowy areas and the man continuing to play.\"]}, \"v_BRApK7rWSAk\": {\"duration\": 187.71, \"timestamps\": [[0, 29.1], [30.03, 91.04], [95.73, 109.81], [109.81, 115.44], [116.38, 187.71]], \"sentences\": [\"A Capri Sun wrapper in a pile of rocks on the ground with a pile of sawdust on it.\", \" We see a pile of sticks to the left and see a flint.\", \" The person strikes the flint and a flame sits on he sawdust.\", \" The person then puts a handful of twigs on the fire.\", \" The fire grows and the cameraman backs up to show the rocks surrounding the fire.\"]}, \"v_UWusSRe8Whg\": {\"duration\": 98.27000000000001, \"timestamps\": [[0, 22.6], [22.6, 48.64], [48.64, 98.27]], \"sentences\": [\"Two men are sitting in a room with four congos in front of them playing.\", \"They are both in unison and they're using their body parts as part of their routine to make different sounds.\", \"The men take an extremely brief pause before rapidly hitting the congo and end by pointing their finger at each other.\"]}, \"v_GNzaxjYL0TM\": {\"duration\": 89.49, \"timestamps\": [[0, 44.3], [39.38, 89.49]], \"sentences\": [\"Two people are seen sitting on dirt bikes speaking to the camera with one shoveling dirt and the other riding along.\", \" Several shots are then shown of the two riding dirt bikes along a trail while stopping to gesture to the camera every now and then.\"]}, \"v_G8-soqkFiI8\": {\"duration\": 24.78, \"timestamps\": [[0, 1.98], [1.98, 24.78], [0.74, 23.29]], \"sentences\": [\"A woman on a beach begins to build a sand castle.\", \" A man comes over and begins to build the sand castle with her.\", \" Several people walk by as they continue to build the castle.\"]}, \"v_eaR8oEBlYWk\": {\"duration\": 133.98, \"timestamps\": [[0, 133.98], [23.45, 25.46], [31.49, 42.2], [46.89, 49.57], [50.24, 93.12], [95.8, 114.55], [126.61, 131.97]], \"sentences\": [\"A woman in a jacket is washing clothes in a sink.\", \" She pours water into a blue bowl.\", \" She puts clothes into the buckets of water that are in the sink.\", \" A white washing machine that is unplugged is shown.\", \" The woman continues to wash the clothes in the sink.\", \" She walks over and takes the lid off of a large bucket of water on the ground.\", \" She dips a pot into the bucket and dumps the water into the sink.\"]}, \"v_qgJzdtHCebM\": {\"duration\": 122.63, \"timestamps\": [[0, 122.63], [74.19, 76.64], [77.25, 84.61], [114.65, 117.72]], \"sentences\": [\"A bull runs around a pen and tries to hit the clown with their horns.\", \" A guy jumps over a fence to get away from the bull.\", \" A clown is hiding behind a red barrel.\", \" The man falls onto the ground being chased by the bull.\"]}, \"v_BzhREL6ncq4\": {\"duration\": 34.67, \"timestamps\": [[0, 25.13], [25.31, 34.67]], \"sentences\": [\"A gymnast exercise on the parallel bars while the coach give directions and fix a mat.\", \" Then, the gymnast spins on the high bar , then flip and fall stand on the mat.\"]}, \"v_Kd_qpMbvRtI\": {\"duration\": 152.81, \"timestamps\": [[0, 9.93], [22.92, 25.98], [34.38, 45.08], [34.38, 146.7], [111.55, 113.84], [122.25, 138.29], [148.23, 152.81]], \"sentences\": [\"We see a title on a dark gray screen, We see a boat on a lake from different angles.\", \" A person riding a surfboard behind the boat does a flip.\", \", We are shown the interior of the the boat.\", \" We see the interior then the outside of the boat intermittently.\", \" We see people on a raft being pulled by the boat.\", \" A girl grabs something form a cabinet then jumps in the water.\", \" We see the end credit scenes.\"]}, \"v_qOi_E_uYCIo\": {\"duration\": 85.36, \"timestamps\": [[0, 4.27], [11.95, 18.78], [23.05, 85.36]], \"sentences\": [\"Vodka is shown being poured into a martini glass.\", \" A woman is behind a bar, showing off bottles of alcohol.\", \" She mixes the ingredients together, then shakes them up before pouring into a glass filled with ice.\"]}, \"v_jdfe-CV_cpE\": {\"duration\": 226.32999999999998, \"timestamps\": [[0, 61.11], [59.98, 76.95], [76.95, 130.14], [123.35, 156.16], [155.03, 162.95], [168.61, 179.93], [185.59, 203.69], [203.69, 226.33]], \"sentences\": [\"Three men sit together on a couch.\", \" A man gets up and walks into a barber shop.\", \" He sits down and gets his hair cut.\", \" He is sleeping in the chair.\", \" He wakes up and looks in a mirror.\", \" Him and the man start fighting.\", \" The man pulls a gun and points it at the other man.\", \" He runs into another mans arms and they walk out the door.\"]}, \"v_gCku1WVr608\": {\"duration\": 147.96, \"timestamps\": [[20.71, 30.33], [77.68, 147.96]], \"sentences\": [\"The video shows how to get discounts on amazon for a category of dog supplies.\", \" Then it shows a woman shaving a dog.\"]}, \"v_Bg_CMSihJl0\": {\"duration\": 38.36, \"timestamps\": [[3.84, 13.62], [13.62, 18.03], [18.41, 24.74]], \"sentences\": [\"A woman with glasses on is knitting.\", \" A girl in a black shirt is sitting down talking.\", \" The woman knitting talks back to the girl.\"]}, \"v_CneLYCPg7Es\": {\"duration\": 40.14, \"timestamps\": [[0, 2.81], [2.81, 35.12], [35.12, 37.33], [37.53, 40.14]], \"sentences\": [\"A lady holds a toothbrush as a child sits on a counter.\", \" The lady brushes the boys teeth.\", \" She finishes and the little boy smiles.\", \" the lady backs away and the child puts a pacifier in his mouth.\"]}, \"v_uDqnGmLJyao\": {\"duration\": 76.13, \"timestamps\": [[0, 15.23], [20.55, 66.99], [68.14, 76.13]], \"sentences\": [\"A woman is talking to the camera.\", \" She shows how to hang a border along a wall in a living room.\", \" She then goes back to talking to the camera.\"]}, \"v_o4zmTkyTu8g\": {\"duration\": 78.71000000000001, \"timestamps\": [[0, 31.88], [36.6, 78.71]], \"sentences\": [\"A group is playing volleyball in a swimmming pool.\", \" They bounce the ball back and forth over the net as a golden retriever joins it, hitting the ball with his nose.\"]}, \"v_6OLIr7E0eHA\": {\"duration\": 56.29, \"timestamps\": [[0, 56.29], [10.41, 15.2], [34.33, 35.46]], \"sentences\": [\"A boy plays the drums on front people.\", \" A man sings holding a microphone next to the drummer.\", \" A person pass on front the boy.\"]}, \"v_assDWZW6zTA\": {\"duration\": 99.15, \"timestamps\": [[0, 47.1], [32.72, 97.66]], \"sentences\": [\"A boy is seen speaking to the camera holding two basketballs and leads into him holding them up to his face.\", \" The boy then moves up and down the court while dribbling the balls and shoots a basket off in the end.\"]}, \"v_UVxXr_mh5BM\": {\"duration\": 196.51, \"timestamps\": [[0, 10.81], [10.81, 94.33], [94.33, 176.86], [176.86, 196.51]], \"sentences\": [\"A picture of a young lady's bun is shown and then the lady then appears.\", \"She begins by braiding one side of her hair and then twists it down and does the same thing on the other side.\", \"With one twist,she pulls it up and bobby pins it together with the other side following.\", \"The hair style is then complete and she more pictures are shown again of the finish product.\"]}, \"v_7coVNZXiU6U\": {\"duration\": 189.77, \"timestamps\": [[68.32, 162.25], [0, 65.47], [69.26, 92.04], [95.83, 160.35], [166.99, 186.92]], \"sentences\": [\"A woman gets her hair cut very short in a kitchen by a woman with a pair of scissors.\", \"  A man, wearing glasses, talks into the camera in a close up shot before the camera pans to a woman seated in a soft chair and focuses on her upper arm.\", \"  The camera pans into a kitchen area and a seated woman holding up a lock of her own hair while another woman behind her ( the woman who was formerly seated) begins to cut her hair with  a pair of scissors.\", \"  The camera pans to a close up of the woman in the kitchen chair who has had most of her hair cut off  and now how a very short haircut.\", \" The camera cuts again to the man who first appears in the film and a shot of a digital clock displaying the time.\"]}, \"v_5P_Scs7Vo2c\": {\"duration\": 193.79, \"timestamps\": [[0.97, 49.42], [45.54, 140.5], [132.75, 188.95]], \"sentences\": [\"A young woman is seen kneeling in a tub with clothes all around her.\", \" She steps on the clothes and bends down again to scrub them while the camera pans around her.\", \" She holds up the clothes and continues to wash them as well as a man stepping into frame to help.\"]}, \"v__TeU8A-CGbU\": {\"duration\": 64.32, \"timestamps\": [[2.57, 29.59], [29.91, 43.74], [44.06, 64.32]], \"sentences\": [\"A person install a carpet using a machine.\", \" The person cuts a piece of stained carpet.\", \" Then, the person replace with a new piece and bush.\"]}, \"v_2jHMUtvWP_0\": {\"duration\": 23.36, \"timestamps\": [[0, 14.48], [13.2, 23.36]], \"sentences\": [\"A camera pans around a room with a freshly painted wall and a man painting the wall on a stool is seen.\", \" The camera pans over the skylight and finishes by looking behind the area.\"]}, \"v_OPqqbxGKp6E\": {\"duration\": 138.79, \"timestamps\": [[0, 89.52], [4.16, 28.45], [34.7, 45.8], [64.54, 82.58], [93.68, 97.84], [100.62, 136.01], [136.01, 138.79]], \"sentences\": [\"We see a person in a kitchen cooking on the stove.\", \" The person has  skillet with butter they add eggs to.\", \" The person flips the eggs.\", \" A fire starts on the eye the person blow it out.\", \" The person flips the eggs with a spatula.\", \" The eggs are poured into a plate and salt and pepper are added.\", \" The person walks away from the stove.\"]}, \"v_Ve0Ufrv-T0s\": {\"duration\": 76.3, \"timestamps\": [[0.76, 75.16], [0.76, 3.82], [8.39, 58.75], [48.83, 73.63]], \"sentences\": [\"A dog urinates consistently, without stopping, and while walking on its forelegs only, down and around a paved sidewalk all while a person is walking them on a yellow leash.\", \"  The pug dog starts urinating on a stone curb along a low stone mini wall, lands on all four legs to  turn around, and then proceeds to start walking on its two forelegs only.\", \"  The dog begins urinating while walking on its forelegs only with the yellow leash following behind as an unseen person walks the dog from the background.\", \"  The dog continues to urinate in this way, past more sidewalk and grass, and finally starts using three legs, stops and urinates more while stationary on three legs.\"]}, \"v_VZ2CPdIPa30\": {\"duration\": 230.78, \"timestamps\": [[0, 18.46], [18.46, 32.31], [32.31, 57.7], [57.7, 66.93], [66.93, 136.16], [136.16, 169.63], [169.63, 222.71]], \"sentences\": [\"A man secures a seated woman in a bungee harness while others stand by.\", \" The woman talks to the camera in a close up view.\", \" Several shots of the scenery are shown interspersed with the woman waiting.\", \" The man finishes with the equipment.\", \" The woman  carefully walks out to the jumping platform while one of the men stands behind her and an audience watches.\", \" The woman bungees off the platform.\", \" A replay of the woman bungeeing off the platform is shown.\"]}, \"v_wBij_rEXdCk\": {\"duration\": 183.58, \"timestamps\": [[0, 9.18], [12.85, 22.95], [22.95, 49.57], [50.48, 138.6], [140.44, 173.48], [174.4, 183.58]], \"sentences\": [\"We see a table covered with papers and a laptop as a man works.\", \" The man leaves and goes to a graffiti covered garage and turns on a boombox.\", \" The man break dances then sees there is a man across the room.\", \" The men then take turns break dancing.\", \" The men stand face to face and break dance together.\", \" We then see the ending title screen.\"]}, \"v_x2uByejBIiY\": {\"duration\": 228.57999999999998, \"timestamps\": [[0, 70.86], [62.86, 165.72], [169.15, 218.29]], \"sentences\": [\"A woman is seen holding ingredients in their hands while speaking to the camera and boiling water.\", \" She fries nuts on a pan and pours them on a plate while mixing more ingredients into a pan and pouring it over the nuts.\", \" She mixes them all together and shows off several plates in the end.\"]}, \"v_H-PhEsI9njQ\": {\"duration\": 60.09, \"timestamps\": [[0, 44.47], [44.47, 60.09]], \"sentences\": [\"people are standing in a court playing shufleboard while people is in the terraces are watching the game.\", \" a lot of people wearing red uniforms are walking and sitting around the court.\"]}, \"v_KEWlDtEt2cQ\": {\"duration\": 97.18, \"timestamps\": [[0, 7.29], [7.29, 92.8], [64.62, 67.54], [86, 89.89], [92.8, 97.18]], \"sentences\": [\"A man in a suit and a lady in a sparking dress stand on stage.\", \" The people then ballroom dance as people watch.\", \" The man spins the woman in the air in front of him.\", \" The man dips the lady and she kicks her feet in the air.\", \" They finish and the crowd claps as they walk off stage.\"]}, \"v_BUmS918SyLA\": {\"duration\": 133.47, \"timestamps\": [[0, 26.69], [28.03, 106.78], [96.77, 133.47]], \"sentences\": [\"Two girls are seen holding a pose in the middle of a large gymnasium while others watch around them.\", \" The girls begin performing a dance routine while using batons.\", \" The girls continue to dance around and end by holding a pose.\"]}, \"v_oAyygdg493M\": {\"duration\": 107.28, \"timestamps\": [[0, 6.97], [6.97, 107.28]], \"sentences\": [\"A woman is walking on the beach carrying a surfboard.\", \" She starts surfing in the water.\"]}, \"v_sY7m7E-sAYc\": {\"duration\": 136.37, \"timestamps\": [[0, 32.05], [32.73, 60.69], [60.69, 135.69]], \"sentences\": [\"A woman is washing in a sink and shows a little bottle.\", \" Then, the woman add several potatoes in a steaming pot.\", \" After, the woman put the potatoes in a bowl and then peel a potatoes easily.\"]}, \"v_5DhbyYavYp4\": {\"duration\": 234.52, \"timestamps\": [[12.9, 35.18], [35.18, 48.08], [48.08, 87.95], [87.95, 107.88], [107.88, 120.78], [120.78, 143.06], [143.06, 170.03], [170.03, 175.89]], \"sentences\": [\"There is a garden with many trees and shrubs.\", \" There is a man using a hedging and trimming equipment trimming the bushes.\", \" Another man is giving instructions on lawn and garden care.\", \" The man climbs up a tall ladder to trim the trees and bushes several times.\", \" He goes around the entire side to trim the hedges.\", \" The instructor continues talking about the gardening process, The man trims the hedges that form a barrier near a house.\", \" The instructor explains the process again to the viewers.\", \" The scene changes to a strange looking statue in a busy city and ends with a thank you for watching message.\"]}, \"v_YizcSEo0bTo\": {\"duration\": 60.86, \"timestamps\": [[0, 3.35], [4.87, 31.65], [32.56, 60.86]], \"sentences\": [\"A group of kids are inside a building.\", \" They are all riding bumper cars around a track.\", \" They bump and slam into each other.\"]}, \"v_PI1ZaFQ28Ao\": {\"duration\": 68.17, \"timestamps\": [[0, 68.17], [0, 3.41], [38.18, 53.86]], \"sentences\": [\"A lady discusses while standing in a kitchen adjacent to a sink.\", \" The lady is holding a sponge while the sink water is running.\", \" The lady is soaking dishes in soapy water.\"]}, \"v_4-BW75h1D1A\": {\"duration\": 216.85, \"timestamps\": [[0, 210.35], [74.81, 210.35], [204.93, 210.35]], \"sentences\": [\"A woman in a white dress belly dances outside near columns and trees.\", \"  The woman shakes her hips as she dances.\", \"  Credits appear on the screen.\"]}, \"v_aA6Bchzww4Y\": {\"duration\": 187.27, \"timestamps\": [[0, 186.33], [0, 39.33], [39.33, 80.53], [81.46, 125.47], [136.71, 186.33]], \"sentences\": [\"A man uses a mallet to chip ice off of a car while it is snowing outside and a man videos him from behind.\", \"  A man in a black winter coat and gloves uses a mallet to chip ice off of an ice covered car in the snow.\", \"  The man then takes his car keys and tries to open the trunk which is frozen and requires tugging to open.\", \"  The man continues to slam at the ice on the car with the mallet as the ice chips off in chunks.\", \"  The man tries to open his trunk again, this time the opening is easier and the man climbs into the trunk of the car to the front of the car to open the drivers door from the inside drivers seat.\"]}, \"v_jmmOBfS3JIg\": {\"duration\": 105.07, \"timestamps\": [[0, 3.68], [3.15, 13.66], [13.66, 15.24], [15.24, 77.23], [78.8, 79.85], [80.38, 105.07]], \"sentences\": [\"A man in dress shirt taps his cloth on the spout of a glass container to get it damp.\", \" The man uses his cloth wrapped around his index and middle finer to polish a shoe.\", \" The man rubs his cloth in a shoe polish tin for more of the substance.\", \" The man continues to polish the show around the toe of the shoe.\", \" The man again rubs his cloth in the tin for more polish.\", \" The man continues to polish the show around the toe of the shoe near the toe in a circular motion.\"]}, \"v_by8QQWbyimw\": {\"duration\": 191.38, \"timestamps\": [[0, 8.61], [11.48, 79.42], [87.08, 191.38]], \"sentences\": [\"Two girls are acting silly and throwing signs at a camera.\", \" They then take turns doing cartwheels across the lawn.\", \" They do front and back flips, then run toward the camera.\"]}, \"v_OhgsnOwo4b4\": {\"duration\": 190.29, \"timestamps\": [[0, 18.08], [19.03, 37.11], [43.77, 94.19], [97.05, 190.29]], \"sentences\": [\"A man is standing inside a kitchen in front of ingredients and tools for cooking.\", \" He shows dressing being poured onto a cabbage salad.\", \" He explains how to cut a melon, creating slices that go into his salad.\", \"Then he shreds a carrot, and moves the salad into a bowl before drizzling it with dressing.\"]}, \"v_7TgvbmIn03A\": {\"duration\": 122.21, \"timestamps\": [[0, 10.39], [10.39, 14.05], [14.05, 69.05], [69.05, 122.21]], \"sentences\": [\"A black screen appears with white words that read \\\"GoPro Hero3+Black Making everyday tasks fun 'Mowing The Lawn' Resolution: 1080p superwide.\", \"A view from the top of a lawn mower shows a woman pulling onto the pull handle of the lawn mower.\", \" The view change to the view of the lawn mower and the mower is moving along a yard filled with green grass.\", \"The view changes back and forth from lawn mower view and the view of the whole woman mowing the lawn.\"]}, \"v_tgPjcWP7Vig\": {\"duration\": 174.36, \"timestamps\": [[0, 48.82], [53.18, 129.9], [121.18, 169.13]], \"sentences\": [\"A large group of people are seen sitting on bicycles exercising with one another.\", \" A woman speaks to the camera while more shots are shown of people riding.\", \" A woman leads the class as well as speaks to the camera and others riding around.\"]}, \"v_j4vMVBSfyu0\": {\"duration\": 81.55, \"timestamps\": [[0, 29.36], [28.13, 81.55]], \"sentences\": [\"A hand is showing a curved blade knife, and then he showed an ice pick with white paper at the end of it.\", \" The man threw the blade on the plywood, then he threw the ice pick.\"]}, \"v_vctal2m9Zvg\": {\"duration\": 20.43, \"timestamps\": [[0, 1.02], [1.12, 7.15], [7.15, 20.43]], \"sentences\": [\"An indoor barn is shown and a man is sitting on a horse.\", \"The gates open and the man flies out with is lasso chasing after a black and white calf.\", \"The man throws the rope and catches the calf,gets off,ties the cow up and returns back on top of the horse.\"]}, \"v_KxY2z_xDsO8\": {\"duration\": 41.1, \"timestamps\": [[0, 26.51], [25.28, 41.1]], \"sentences\": [\"A person's hand is seen pushing various marbles down a long track and watching where they land.\", \" They push several more marbles while the camera moves up and down to catch the action.\"]}, \"v_5XiBb9XGsg8\": {\"duration\": 125.83, \"timestamps\": [[3.15, 62.91], [55.36, 120.8]], \"sentences\": [\"A young man is seen speaking to the camera and leads into him trying to solve a rubix cube.\", \" The boy then solves the cube and pans the camera back to show his time.\"]}, \"v_c-3ed17J3F8\": {\"duration\": 224.0, \"timestamps\": [[0, 38.08], [38.08, 95.2], [95.2, 169.12], [169.12, 224]], \"sentences\": [\"A man is standing in a shed behind a crafts table talking to the camera.\", \"Next,a man in a navy uniform begins walking down the road and ends up in the room with the man.\", \"The two of them begin polishing a pair of boots together with a white cloth and a green brush.\", \"As they finish,the man in the green shirt is given a patch and a screen of tips come on the screen for properly caring for your boots.\"]}, \"v_8SMXK2uOvk0\": {\"duration\": 42.93, \"timestamps\": [[0.21, 2.79], [5.58, 8.8], [12.88, 14.6], [15.89, 39.5], [39.71, 42.93]], \"sentences\": [\"The credits of the clip are shown.\", \" People are biking down a path.\", \" A person is trying to start a fire.\", \" The person feeds the fire and moves it to a hole.\", \" The credits of the video are shown.\"]}, \"v_HqGWA16ECWE\": {\"duration\": 10.46, \"timestamps\": [[0, 8.53], [8.63, 10.41], [7.59, 10.41]], \"sentences\": [\"A girl in a dress is crossing monkey bars.\", \" She gets to the end and steps on a rock.\", \" A boy in a blue shirt stands behind her.\"]}, \"v_OtMNVvCSxVo\": {\"duration\": 71.19, \"timestamps\": [[0, 4.63], [5.7, 7.48], [7.83, 66.92], [66.92, 71.19]], \"sentences\": [\"A man stands on front a sink.\", \" Then, the man puts soap on a cloth.\", \" After, the man wash the pot outside and inside.\", \" Next, the man turns and dry his hands.\"]}, \"v_FjMeS0FCvas\": {\"duration\": 46.16, \"timestamps\": [[0, 12.93], [14.54, 18], [18.46, 26.77], [29.08, 35.54], [37.39, 41.55]], \"sentences\": [\"A man lifts up a large pitcher of beer and starts drinking it.\", \" People sitting around a table cheer him on.\", \" The man puts his hands in the air and laughs.\", \" The people around the table start pumping their hands in the air.\", \" The man claps his hands.\"]}, \"v_SQs7o8LeU6A\": {\"duration\": 131.29, \"timestamps\": [[0, 129.32], [64.33, 103.06], [104.37, 126.03], [128.66, 131.29]], \"sentences\": [\"A man stands in a rustic living room and plays a bagpipe in his socks.\", \" We see a man tapping his foot as he plays.\", \" The man switches to his other foot tapping.\", \" the man finishes playing and wipes his face.\"]}, \"v_ZKtjyZhRB6E\": {\"duration\": 42.87, \"timestamps\": [[0.86, 15.43], [13.07, 29.36], [24.86, 41.79]], \"sentences\": [\"A group of older people are seen sitting on a bus speaking to one another.\", \" The camera pans around the bus to show more people sitting and speaking.\", \" A woman is seen speaking to a man next to her while he knits.\"]}, \"v_8IlwMnM_n38\": {\"duration\": 144.98, \"timestamps\": [[0.72, 2.17], [2.9, 139.9], [138.45, 139.9], [142.08, 143.53]], \"sentences\": [\"The credits of the clip are shown.\", \" Guys are break dancing on a stage in front of an audience.\", \" A guy breaks dance right off the stage and exits.\", \" The credits of the video are shown.\"]}, \"v_64JprLAtnzg\": {\"duration\": 15.07, \"timestamps\": [[0, 2.56], [2.94, 12.58], [13.26, 15.07]], \"sentences\": [\"A group of girls are dancing along a ledge.\", \" Each girl dances on the ledge gracefully.\", \" The screen fades away to black.\"]}, \"v_2YeImloBCA8\": {\"duration\": 167.79, \"timestamps\": [[0, 167.79], [1.68, 4.19], [12.58, 21.81], [45.3, 62.92], [97.32, 99.83], [150.17, 167.79]], \"sentences\": [\"We see people working out on exercise steps in an aerobics class.\", \" The leader puts her hand in the air.\", \" The lady in back left gets lost and stops.\", \" Rear right gets lost and throws out her arms.\", \" The instructors arm is in the air again.\", \" The lady second on right stops trying.\"]}, \"v_hpU50i4WBK8\": {\"duration\": 231.09, \"timestamps\": [[0, 28.89], [28.89, 60.08], [60.08, 140.96], [140.96, 231.09]], \"sentences\": [\"Two people are on a boat getting ready to dive into the ocean.\", \" They dive in and are able to look at all the beautiful corals and see fish and other things.\", \" They find a cockpit that they begin to observe and look around also running into a jelly fish.\", \" They begin to explore the outside of the plane where they are also able to see more fish and other marine life around it.\"]}, \"v_Eeq-noKrGwY\": {\"duration\": 45.95, \"timestamps\": [[0, 2.99], [2.99, 45.95]], \"sentences\": [\"A girl in an orange shirt takes a drink of mouth wash.\", \" She swishes it around in her mouth and spits it out into a sink.\"]}, \"v_sYKtWOfH6VQ\": {\"duration\": 115.77000000000001, \"timestamps\": [[0, 115.77], [5.21, 9.26], [8.68, 64.25], [18.52, 75.83], [75.25, 81.04], [79.88, 86.24], [84.51, 109.98]], \"sentences\": [\"There's a lady doing a tutorial on how to wash hands in her kitchen.\", \" She walks towards the sink and turns on the tap.\", \" Then she takes some liquid soap in her hands and rubs her hands on the top, the palms and in between her fingers.\", \" She demonstrates how to properly rub the palms and the wrist area to ensure a clean wash.\", \" Then she turns the tap back on to wash off the soap.\", \" Then she uses her right elbow to turn off the tap to avoid touching it directly.\", \" Then she takes a paper towel from the window sill and wipes her hands dry.\"]}, \"v__gDw8q2sRLk\": {\"duration\": 75.08, \"timestamps\": [[0.38, 32.66], [25.9, 72.83]], \"sentences\": [\"Three people are seen walking out onto a large gymnasium floor and lead into the three performing a jump roping routine.\", \" The three continue to jump around the floor while many watch and end with their arms up.\"]}, \"v_bDf_xpUpdmU\": {\"duration\": 143.57, \"timestamps\": [[0, 18.66], [20.1, 124.19], [125.62, 143.57]], \"sentences\": [\"A falls off a skateboard in an awkward way.\", \" Then we see several other boys as they trip and fall.\", \" They take sharp turns on suburban roads, trying to stay on their boards.\"]}, \"v_gKkk82LG8H0\": {\"duration\": 121.53, \"timestamps\": [[0, 121.53], [26.13, 32.21], [36.46, 40.71], [53.47, 68.06], [81.43, 111.2], [111.2, 121.53]], \"sentences\": [\"Group play the bongos while a young woman dances.\", \" A couple walks past the group.\", \" The drummer gives the camera a thumbs up gesture.\", \" Lots of people pass in the background.\", \" A small group are looking on at the musicians.\", \" The dancer poses with 2 other women.\"]}, \"v_sjpWwjzCbrw\": {\"duration\": 161.43, \"timestamps\": [[0, 121.88], [87.17, 114.61], [124.3, 146.09], [152.55, 161.43], [146.9, 150.93]], \"sentences\": [\"A health professional washers her hands with soap in a sink.\", \" The woman scrubs between the fingers thoroughly.\", \" The hands are dried with a paper towel in between the fingers thoroughly.\", \" The woman throws the paper towel in a designated waste bin.\", \" The medical professional shuts off the water faucet using her elbow and also the paper towel.\"]}, \"v_Mnhg-VEP69U\": {\"duration\": 61.32, \"timestamps\": [[0, 23.92], [23.61, 61.32]], \"sentences\": [\"A man is seen assembling a tire on a lift and taking the rubber off using a machine.\", \" He then puts the rubber back on using the machine and ends by moving back from the tire.\"]}, \"v_3xoIXUMqmqA\": {\"duration\": 159.61, \"timestamps\": [[10.37, 147.64], [18.36, 45.49], [79.81, 137.27]], \"sentences\": [\"A man is kneeling down on a blue mat.\", \" He pulls down on a rope and works out.\", \" He lowers the bar and starts pulling the rope in the other direction.\"]}, \"v_gIFI03m-ATM\": {\"duration\": 54.5, \"timestamps\": [[0, 19.62], [15.53, 38.69], [30.79, 52.05]], \"sentences\": [\"A large paint ball arena is shown with a group of people standing off to the side.\", \" The people then begin running around the course shooting guns at one another.\", \" The people continue running around and stop i the end to speak to one another.\"]}, \"v_KWeZbXoX8Ys\": {\"duration\": 10.15, \"timestamps\": [[1.47, 2.59], [2.59, 5.23], [5.23, 7.05], [7.05, 7.61]], \"sentences\": [\"There is a very tall and steep slide running through some trees in a large open ground.\", \" There is a rubber surface running lengthwise at the bottom end of the slide to protect people from getting hurt as they land down.\", \" A young boy wearing black shorts and a shirt comes sliding down in full force.\", \" He lands far from the slide as he tumbles down and off of the slide.\"]}, \"v_HCZpS7mhvrE\": {\"duration\": 220.22, \"timestamps\": [[0, 12.11], [15.42, 31.93], [33.03, 114.51], [115.61, 122.22], [123.32, 126.63], [127.73, 216.92], [218.02, 220.22]], \"sentences\": [\"A man in a hat talks at a press conference.\", \" We see cabins and trailers in a snowy area.\", \" Three men re waxing skis in a workshop and we see the man at the press conference.\", \" A man runs behind trailers and two men walk on the snow before we see the press conference again.\", \" We see the men skiing.\", \" The man at the press conference and a men puts a mask on in the workshop and a machine sits in the field.\", \" Two men pose holding rifles in the snow.\"]}, \"v_iHzyX1djHU4\": {\"duration\": 177.24, \"timestamps\": [[0, 99.25], [76.21, 177.24]], \"sentences\": [\"A man is seen sitting in a chair as well as shots of people riding wake boards and clips of a dock.\", \" The man continues speaking to the camera while more shots of people wake boarding are shown as well as doing flips and tricks.\"]}, \"v_XJQlO4G5Fns\": {\"duration\": 34.97, \"timestamps\": [[0, 7.17], [7.17, 28.68], [28.68, 34.97]], \"sentences\": [\"We see a lady holding the camera and blow drying her hair.\", \" The lady sits the camera on the floor, and continues blow drying her hair.\", \" The lady throws her hair back and picks up the phone.\"]}, \"v_jqEpQ-cRGFk\": {\"duration\": 95.9, \"timestamps\": [[0, 2.4], [2.4, 95.9], [29.73, 48.43], [48.91, 95.9]], \"sentences\": [\"We see a sleeping lady in a hospital.\", \" A person begins combing the hair of a sleeping elderly lady in a hospital.\", \" The camera moves to the top of the ladies head.\", \" The camera then moves to the front of the ladies face.\"]}, \"v_1mksQqxFtv4\": {\"duration\": 14.02, \"timestamps\": [[0, 14.02], [0.84, 14.02], [6.24, 14.02], [0.49, 14.02]], \"sentences\": [\"A man in shorts is in a gym.\", \" He is jumping rope in there.\", \" He speeds up his jumping.\", \" He is doing it in front of a mirror.\"]}, \"v_FRFjdn_pjYk\": {\"duration\": 58.35, \"timestamps\": [[0, 58.06], [13.42, 58.06]], \"sentences\": [\"An older man is shown standing on a piece of exercise equipment.\", \" He talks to the camera and holds a remote up and continues moving on the machine.\"]}, \"v_5MpJCKOxRVs\": {\"duration\": 60.65, \"timestamps\": [[8.79, 13.65], [22.74, 27.9], [28.51, 33.66], [41.24, 46.4]], \"sentences\": [\"First, the person is seen unscrewing the handle bars.\", \" Then he unscrews the base to level it out to his liking.\", \" Then he sits on the bike seat to achieve the best results.\", \" Then he adjusts the handle bars again and makes sure they are firmly in place.\"]}, \"v_Qm-XTJ-uG5s\": {\"duration\": 70.36, \"timestamps\": [[0, 33.07], [33.07, 70.36]], \"sentences\": [\"Two men are in a room with three walls and a set of glass doors behind them hitting a ball back and fourth against the wall with tennis rackets.\", \"As they continue,one boy falls to the ground and they have to start over.\"]}, \"v_kUlwaBYvyBI\": {\"duration\": 107.14, \"timestamps\": [[0, 107.14], [2.14, 34.82], [39.64, 96.42], [100.17, 104.99]], \"sentences\": [\"We see a man standing in front of a workbench in a workshop and talking.\", \" The man shows a piece of wood and a sander.\", \" The man wipes a substance from a jug on the wood and the sander and sands the wood.\", \" The man shows us the finished product.\"]}, \"v_JHFjlLtpIcU\": {\"duration\": 42.17, \"timestamps\": [[0, 42.17], [0, 37.32], [38.16, 42.17], [40.48, 42.17]], \"sentences\": [\"A crowd watches a gymnastics show.\", \" A gymnast runs up to a high bar and alternates between the high and low bar, performing various gymnastics moves and flips.\", \" She flips off the bar and lands on her feet.\", \" Her fellow gymnasts run up to her in excitement.\"]}, \"v_B-nlhZ0RR4A\": {\"duration\": 109.74000000000001, \"timestamps\": [[17.01, 20.3], [28.53, 32.37], [35.66, 71.88], [72.43, 80.66], [101.51, 104.8]], \"sentences\": [\"A man in a blue outfit puts chalk on his hands.\", \" A man in a yellow shirt is watching.\", \" The man in the blue outfit picks up a large weight and lifts it over his head.\", \" The crowd cheers for him.\", \" He gives a man in a suit a hug.\"]}, \"v_UoO7VCPs8Jw\": {\"duration\": 12.49, \"timestamps\": [[0, 1.25], [1.19, 9.06], [9.06, 12.49]], \"sentences\": [\"A man holding a shot put stands on a base.\", \" The man turns his back to the camera and prepares to throw.\", \" The man throws the ball and and spins around.\"]}, \"v_zogfsf4O3Vg\": {\"duration\": 100.8, \"timestamps\": [[0, 1.01], [3.02, 28.22], [28.22, 85.68], [85.17, 94.75], [96.77, 100.8]], \"sentences\": [\"A man in yellow opens a beer.\", \" A man in gray grabs the beer, adjusts his clothes then sits on the floor holding the beer.\", \" The man puts one arm behind his back and adjusts himself to try and pick the bottle up with his mouth.\", \" The man then quickly drinks and puts the bottle down.\", \" We see a countdown clock.\"]}, \"v_hrcSCXaNhmY\": {\"duration\": 40.96, \"timestamps\": [[0, 13.11], [13.11, 29.9], [29.08, 40.96]], \"sentences\": [\"A man is in a field with Frisbees in his hand and throws it to his black and white husky dog.\", \"The two continue to do tricks and the dog jumps on the mans back.\", \"More Frisbee are thrown and the dog catches the Frisbee and the man hugs the dog.\"]}, \"v_6O8QXbjvYKs\": {\"duration\": 75.84, \"timestamps\": [[10.62, 34.89], [35.26, 41.33], [59.15, 75.84]], \"sentences\": [\"A little boy picks up a bowling ball.\", \" He sets it on a rail and pushes it down a lane.\", \" A woman with a baby strapped to her chest bowls a ball down a lane.\"]}, \"v_G_kJ-Af89ew\": {\"duration\": 165.88, \"timestamps\": [[0, 21.56], [20.74, 78.79], [59.72, 165.88]], \"sentences\": [\"A man in plaid shirt hit the ball with stick, the ball scattered on the table.\", \" The man in gray sweater lean on the table and look at the ball, he then hit the white ball and hit the yellow ball, while the man in plaid shirt sat on the chair.\", \" The man in gray sweater continue to play the billiard, making the balls shoot in the holes.\"]}, \"v_mTDRTiTnsjQ\": {\"duration\": 33.86, \"timestamps\": [[0, 33.86], [4.74, 28.95], [19.64, 33.86]], \"sentences\": [\"A hand is pushing a grass blower machine.\", \" The machine spit out dry leaves from a black pole.\", \" The machine turned in a curve towards the house.\"]}, \"v_Z56Xq8Ud4I0\": {\"duration\": 162.68, \"timestamps\": [[0, 44.74], [43.11, 113.06], [112.25, 162.68]], \"sentences\": [\"A woman is seen speaking to the camera and then takes her ring off to run her hands under some water.\", \" She scrubs her hands with soap and then runs her fingers under the water.\", \" In the end people perform a little dance with showing how to properly wash your hands.\"]}, \"v_G_npKjzxQLk\": {\"duration\": 95.8, \"timestamps\": [[0, 95.8], [8.62, 10.54], [38.32, 42.63], [56.04, 60.83], [65.14, 88.61], [89.57, 95.8]], \"sentences\": [\"We see people deep sea diving.\", \" We see the surface of the ocean.\", \" We see people holding hands underwater.\", \" People are throwing up hand signs.\", \" We see a man throw a hand sign and we see people standing in the water.\", \" A man goes under the water slowly.\"]}, \"v_7qjiHcYuq2Y\": {\"duration\": 23.08, \"timestamps\": [[0.35, 5.65], [6.92, 16.5], [14.08, 22.16]], \"sentences\": [\"A small group of people are seen standing on a beach playing a game of volleyball.\", \" One person hits it to the other and they hit the ball game.\", \" The game continues on while people are seen watching on the sides.\"]}, \"v_RkCSfz8GeNg\": {\"duration\": 154.02, \"timestamps\": [[0, 66.23], [68.54, 107.04], [107.81, 154.02]], \"sentences\": [\"A man is seen playing with her hair in front of the camera and leads into her brushing her hair.\", \" She then ties her hair up and proceeds to blow dry her hair while a comb.\", \" Then takes her hair down and runs lotion through her hair while still looking to the camera.\"]}, \"v_2fp9Ni7Ms6A\": {\"duration\": 45.98, \"timestamps\": [[0, 18.16], [18.62, 45.98]], \"sentences\": [\"A shot of a board is shown followed by various groomers grooming dogs on tables.\", \" The people continue grooming the dogs on tables and the video ends with text across the screen.\"]}, \"v_R4ouBBtg-B4\": {\"duration\": 121.3, \"timestamps\": [[0, 30.93], [31.54, 121.3]], \"sentences\": [\"Various people are shown smiling into a camera and being interviewed about a question.\", \" Several other questions are asked to the same people as well as shots of people doing activities around the beach on a string.\"]}, \"v_DVlDRG0SxG8\": {\"duration\": 26.88, \"timestamps\": [[0, 20.97], [22.44, 26.88]], \"sentences\": [\"The front of a yellow kayak is seen as the boat floats through turbulent white waters of a river.\", \" It passes a rock and numerous trees before slowing down.\"]}, \"v_JvP1O8ZIL3A\": {\"duration\": 228.49, \"timestamps\": [[8, 89.11], [74.26, 159.94], [163.37, 221.63]], \"sentences\": [\"A woman is seen standing behind another woman sitting in a chair and begins styling her hair.\", \" The woman brushes and parts her hair ad begins braiding the hair and pinning it in several locations.\", \" The woman shows off her finished hair do while looking and smiling to the camera.\"]}, \"v_41xqneu4_RA\": {\"duration\": 100.96000000000001, \"timestamps\": [[0, 11.61], [12.12, 89.35], [92.38, 100.96]], \"sentences\": [\"A man is inside a room in a house.\", \" He is using a racquet to hit a tennis ball back and forth against a wall.\", \" He continues hitting the ball until he is finished playing the game.\"]}, \"v_VA8SXILXTj0\": {\"duration\": 222.75, \"timestamps\": [[0, 74.62], [66.83, 178.2], [168.18, 221.64]], \"sentences\": [\"A couple of lemons are seen sitting on a table with glasses and plates and leads into a person putting the lemons in a container.\", \" He mixes ingredients with the lemons and shakes them up in another glass.\", \" He finishes the lemonade and presents it to the camera while also taking a sip.\"]}, \"v_73n-KuFkH94\": {\"duration\": 179.7, \"timestamps\": [[0, 30.55], [31.45, 121.3], [120.4, 179.7]], \"sentences\": [\"Several shots of athletic runners are shown followed by slow motion shots of an athlete running a long jump and celebrating.\", \" The camera pans into scenes of men stretching and watching followed by one running down the long jump and cheering to the crowd.\", \" His jump is shown several more times followed by other's jumping performing their jump in front of the large crowd.\"]}, \"v_O9qI26TB3R0\": {\"duration\": 157.9, \"timestamps\": [[0, 86.05], [86.05, 112.11], [112.11, 157.9]], \"sentences\": [\"A toddler wash a dog in a bathtub pouring water with the shower hose.\", \" The toddler rise the tail of the horse and wash the butt.\", \" After, the toddler, grab a brush and scrub and wash the dog.\"]}, \"v_ql7I6qtyhBU\": {\"duration\": 187.78, \"timestamps\": [[5.63, 8.45], [8.45, 9.39], [9.39, 15.96], [15.96, 25.35], [25.35, 32.86], [32.86, 46.01], [46.01, 128.63], [128.63, 148.35], [148.35, 153.98], [153.98, 171.82], [171.82, 187.78]], \"sentences\": [\"The screen shows company sponsors for a winter club event.\", \" A blue convertible drives past the North shore Winter Club.\", \" A couple enters the club while a silver mini van is parked outside.\", \" Several people are entering the Curling room inside the club.\", \" The coach representing the Brasil team, wearing a green jersey is giving instructions to the players.\", \" The coach talks to the players while they prepare themselves.\", \" The players begin playing with their sticks as they push the rocks through the floor, Several other players are practicing curling on the floor as they glide through the slippery surface.\", \" Players continue to play and exchange high fives as they practice.\", \" About nine of the contestants receive medals of victory from the judge.\", \" They applaud themselves and each other high fives to express their victory.\", \" The video ends with details about all the sponsors responsible for the event.\"]}, \"v_GehJuCIJ7AI\": {\"duration\": 136.02, \"timestamps\": [[3.4, 38.77], [38.77, 87.05], [88.41, 136.02]], \"sentences\": [\" five different people tosses a freebie in the air and a dog jumps and catch the freebie in his mouth, the dog then moves on to the next person and do the same thing as many people watch from a distances.\", \"there are two dogs now that are jumping the air catching freebies while doing tricks.\", \"Now there is one lady with one dog doing tricks and the dog catches the freebie as the lady toss it in the air.\"]}, \"v_adz3kDJLCF4\": {\"duration\": 68.85, \"timestamps\": [[0, 2.41], [0, 9.98], [0, 12.05], [0, 13.43], [0, 15.15], [0, 24.79], [0, 32.7], [0, 40.28], [0, 44.75], [0, 47.85], [0, 53.36], [0, 54.73], [0, 64.37], [0, 68.85]], \"sentences\": [\"A woman is using a pink brush to brush her teeth.\", \" She is brushing very fast and vigorously.\", \" She is brushing her upper and lower teeth.\", \" She sticks her tongue out to clean the toothpaste.\", \" She checks her teeth to see if they're clean enough.\", \" While she continues brushing, she opens her mouth.\", \" Some of the toothpaste falls down.\", \" She starts brushing her tongue thoroughly.\", \" Then she continues brushing her upper and lower teeth again.\", \" She then sticks her tongue out and scrapes it against her teeth.\", \" She spits out some toothpaste.\", \" Some of the toothpaste falls on her chin making it look like a white beard.\", \" She pretends to be Santa Claus and says, ho, ho, Merry Christmas.\", \" Then she laughs as she shows her teeth with a wide smile.\"]}, \"v_b0bM4vKxoXQ\": {\"duration\": 129.85, \"timestamps\": [[0.65, 60.38], [48.04, 127.9]], \"sentences\": [\"A large group of people are seen sitting around in a circle and 2 bulls standing in the pit.\", \" The animals and people continue to walk around one another and lead into the bulls fighting one another.\"]}, \"v_bp1wsvCaiB0\": {\"duration\": 109.27000000000001, \"timestamps\": [[0, 3.28], [3.28, 12.57], [3.28, 109.27]], \"sentences\": [\"A logo appears then the word fencing.\", \" People begin to fence together.\", \" People gear up to fence and are shown fencing in a variety of ways.\"]}, \"v_0Yb2EQlAEYM\": {\"duration\": 70.94, \"timestamps\": [[0, 5.67], [5.67, 31.57], [30.5, 45.75], [45.75, 70.94]], \"sentences\": [\"The bottom of a murky river is shown and then it flashes to the name of the springs.\", \"A group of people are shown and they begin to get floats and play and float throughout the springs.\", \"Two kids are on the rocks together and they catch a dragonfly.\", \"After,various group of people are shown and a couple floats together with a dog sitting on the male's lap.\"]}, \"v_jcqRPdvb18w\": {\"duration\": 61.07, \"timestamps\": [[1.22, 20.76], [37.25, 60.76]], \"sentences\": [\"First the man pushes a tire and he steps inside of it.\", \" He then starts hula hooping inside of the tire with it around his waist.\"]}, \"v_TVeIcQOvMZI\": {\"duration\": 93.81, \"timestamps\": [[0.47, 23.92], [16.89, 68.01], [66.6, 90.53]], \"sentences\": [\"A man is seen speaking to the camera that leads into a person playing crochet.\", \" Several shots are shown of children hitting the balls as well as speaking to the camera.\", \" More kids and adults speak to the camera while showing how they hit the ball.\"]}, \"v_59nQKYriHQc\": {\"duration\": 50.55, \"timestamps\": [[0.76, 33.62], [16.18, 46]], \"sentences\": [\"A woman is seen kneeling down on the floor speaking to the camera while a dog lays next to her.\", \" The woman is then seen running soap and water all over a dog in the sink and ending by cleaning him off and watching him run around and be excited.\"]}, \"v_D5hsFA2ZrIQ\": {\"duration\": 13.0, \"timestamps\": [[0, 1.43], [2.15, 7.41], [7.54, 13]], \"sentences\": [\"A man is shown working in an outdoor garden.\", \" He is using tools as he works.\", \" He trims a long row of hedges, then cleans up the debris.\"]}, \"v_Kmk0IVi2Xu4\": {\"duration\": 178.14, \"timestamps\": [[0, 20.49], [20.49, 24.94], [25.83, 67.69], [68.59, 102.43], [104.21, 122.92], [125.59, 160.33], [163.89, 178.14]], \"sentences\": [\"We see a set of drums and a man standing behind the drums talking and holding a drink.\", \" the man drinks from the drink and puts it down.\", \" the man plays the drums with his hands.\", \" The man stops and talks before playing the drums again.\", \" The man stands on the drums and dances.\", \" We see two men sitting and the first man is clapping his hands.\", \" We see the man playing the maracas as a lady dances nearby the man stops and the lady turns away.\"]}, \"v_HWkGANOfqQE\": {\"duration\": 225.4, \"timestamps\": [[1.13, 125.1], [129.6, 225.4]], \"sentences\": [\"The man is showing how he plays the guitar.\", \" Then he shows us how he plays flute.\"]}, \"v_Yr2unlRQZa0\": {\"duration\": 118.61, \"timestamps\": [[0.59, 62.86], [62.86, 73.54], [74.13, 116.24]], \"sentences\": [\"A woman and a man performs cardiovascular fitness holding handles of a machine while running.\", \" A person adjust the angle of the pedal and continues running.\", \" The screen of the machine shows relevant information, and is show the audio input jack of the machine and the muscle profile while the man and the woman continues exercising.\"]}, \"v_6_uxd3nj2d0\": {\"duration\": 189.98, \"timestamps\": [[0, 31.35], [37.05, 135.83], [144.38, 189.98]], \"sentences\": [\"A woman leans over a boy, dabbing his face with a substance.\", \" He laughs and struggles as she continues.\", \" He grabs her by the hair, eating the piece of food she had been rubbing on him.\"]}, \"v_qwJhmfZKdNQ\": {\"duration\": 45.19, \"timestamps\": [[5.42, 23.27], [23.27, 38.41], [38.41, 41.8]], \"sentences\": [\"A man wearing a purple sweater is demonstrating how to use garden shears.\", \" He is trimming the hedges and bushes in the yard.\", \" He shows how the shears can be used effectively in hard to reach places.\"]}, \"v_BaJwohtZMtA\": {\"duration\": 197.16, \"timestamps\": [[0, 18.73], [18.73, 160.69], [160.69, 197.16]], \"sentences\": [\"A person shows up on a stage dancing in the dark with an LED hula hoop.\", \" As the person dances the LED lights on the hula hoop begin to change colors.\", \" The closing credits show up on the screen as the video ends.\"]}, \"v_EZsumzBA68I\": {\"duration\": 127.73, \"timestamps\": [[3.19, 35.77], [30.66, 88.14], [76.64, 126.46]], \"sentences\": [\"A man is seen standing before a large fence holding a spray hose in his hand.\", \" The man sprays paint all along the wall while the camera captures his movements.\", \" The man continues to spray the wall while the camera follows him from behind.\"]}, \"v_znIFzXChO1M\": {\"duration\": 7.76, \"timestamps\": [[0, 7.76], [0.16, 7.76], [0, 7.72]], \"sentences\": [\"A girl in a white dress is hitting a pinata with a bat.\", \" A man is standing behind her watching.\", \" Two girls are standing by the house watching.\"]}, \"v_G6qOkn-K6aw\": {\"duration\": 208.21, \"timestamps\": [[0, 208.21], [43.72, 53.09], [54.13, 208.21]], \"sentences\": [\"People are dancing on a dance floor at a wedding.\", \" It is dark in the room and colorful lights come on.\", \" People continue dancing on the dance floor.\"]}, \"v_knHJztfWFrA\": {\"duration\": 166.63, \"timestamps\": [[0, 148.3], [10.83, 148.3], [147.46, 166.63]], \"sentences\": [\"Two men are shown standing in a recording studio playing instruments.\", \" One is playing the guitar while the other plays the flute together.\", \" They finish their song and one gives a hand gesture to the camera while the other smiles.\"]}, \"v_d-cxJQcmBzA\": {\"duration\": 63.39, \"timestamps\": [[0, 63.39], [0, 8.24], [2.54, 63.39]], \"sentences\": [\"A man is buffing the floor with a blue buffer.\", \" Another man stands next to him watching.\", \" He goes over the tile with the buffer.\"]}, \"v_jX26w60MxmU\": {\"duration\": 67.92, \"timestamps\": [[0, 33.28], [22.41, 67.92]], \"sentences\": [\"Two men are seen sitting in a canoe in low motion and then tips the canoe a bit with a paddle.\", \" The men do this several times followed by instructions and locations written in text.\"]}, \"v_2NyOIsFJ3Tw\": {\"duration\": 105.0, \"timestamps\": [[0, 2.63], [3.15, 7.35], [7.35, 73.5], [74.03, 105]], \"sentences\": [\"We see an opening title screen.\", \" We then see a girl run and fall on a slip and slide.\", \" We see another title screen and watch the kids slide down  slide and across their slip and slide.\", \" A kid slides down the slide on a raft.\"]}, \"v_Kb8SPjD121k\": {\"duration\": 58.05, \"timestamps\": [[0, 27.28], [27.28, 29.03], [29.03, 58.05]], \"sentences\": [\"two guys beginning a arm wrestling match,the guy in the back shirt wins the first match.\", \"the men switched hands and starts a new match.\", \"the finally match was won by the same guy with the back shirt.\"]}, \"v_Oh83skxSJkQ\": {\"duration\": 152.79, \"timestamps\": [[0, 45.07], [41.25, 111.54], [100.84, 146.68]], \"sentences\": [\"A close up of a piano is seen followed by a person walking into frame.\", \" The person then stretches out their nails and begins playing the piano.\", \" The person continues playing on the instrument and stops to turn off the camera.\"]}, \"v_0rDLcTmgzGQ\": {\"duration\": 134.1, \"timestamps\": [[0, 29.5], [20.11, 98.56], [65.04, 134.1]], \"sentences\": [\"The men riding the horses are playing polo in the field.\", \" The men are chasing the ball and hitting with mallet.\", \" A player hit the ball and then ran after it, behind him are other players.\"]}, \"v_RIaNmXzBQnE\": {\"duration\": 168.62, \"timestamps\": [[0, 150.08], [44.69, 60.7], [60.7, 86], [129.84, 167.78], [148.39, 166.09]], \"sentences\": [\"There is a woman eating ice cream from a tub and talking to the camera man.\", \" And he tries to look into the tub, but she pulls it away.\", \" The camera person sits down to continue talking to the woman.\", \" She gets up and he follows her through the house as she walks into the kitchen.\", \" She puts the rest of the ice cream in the freezer and rinses the spoon.\"]}, \"v_sHRajZw7A8g\": {\"duration\": 90.78999999999999, \"timestamps\": [[0, 4.54], [4.99, 56.29], [17.7, 35.86], [39.04, 43.13], [44.49, 51.75], [51.75, 56.29], [59.01, 90.79]], \"sentences\": [\"We see a blue opening screen with a drink.\", \" We see  a lady mixing drinks behind a bar.\", \" The lady add ice and three shots liquor to a glass.\", \" The lady pours something red in the glass.\", \" The lady adds something form the dispenser and a can.\", \" The lady stirs then pushes the drink forward.\", \" We see a red closing screen and a long black screen.\"]}, \"v_1JeK3U_nUUc\": {\"duration\": 141.97, \"timestamps\": [[6.39, 82.34], [53.24, 141.26]], \"sentences\": [\"Several shots are shown of people wandering on a beach that lead into clips of a soccer match and people celebrating.\", \" More people are seen dancing around as well as playing soccer and gesturing to the camera.\"]}, \"v_VE-zu8cdL44\": {\"duration\": 73.05, \"timestamps\": [[0, 13.15], [14.98, 56.98], [60.27, 73.05]], \"sentences\": [\"A dog who is missing his front legs is walking across a lawn.\", \" He is following the camera man, then breaks into a hopping run.\", \" He returns, and does the same again.\"]}, \"v_-IkL9Kq9zfQ\": {\"duration\": 41.52, \"timestamps\": [[0, 4.36], [5.81, 29.89], [32.18, 41.52]], \"sentences\": [\"A man in cold weather clothing is kayaking on a river.\", \" The shot pans out to show several kayaks, and the man stuck on a small waterfall.\", \" He finally gets himself unstuck, pulling away from the falls.\"]}, \"v_KnF56TCKPYw\": {\"duration\": 226.72, \"timestamps\": [[0, 32.87], [32.87, 113.36], [113.36, 226.72]], \"sentences\": [\"A dog sniffs the feet of a man and a woman.\", \" The couple walk the dog down to a lake.\", \" There are other owners and dogs, and they play at the water's edge.\"]}, \"v_BtGrWzfvmP0\": {\"duration\": 122.63, \"timestamps\": [[0, 25.75], [30.66, 99.94], [103.01, 122.63]], \"sentences\": [\"A girl is seen smiling and waving to the camera followed by her holding up a contact lens and cleanser.\", \" She mixes the two together followed by putting the contact lens in her eyes.\", \" She finally shows off her eyes in the end and gives the camera a thumbs up.\"]}, \"v_hnwZmUR1FUw\": {\"duration\": 83.89, \"timestamps\": [[0, 64.6], [64.6, 66.7], [66.7, 83.89]], \"sentences\": [\"There are two men indoors and playing racquetball in an indoor court as they quickly hit the ball against the wall and take turns.\", \"One of the men wearing a green shirt looks angrily at the camera and throws the racquet at the camera.\", \" The camera person turns the camera to himself and he is running and laughing while looking in the camera.\"]}, \"v_Y97KgwAmdrU\": {\"duration\": 143.36, \"timestamps\": [[0, 46.59], [47.31, 100.35], [98.92, 143.36]], \"sentences\": [\"Various ingredients are laid out on a counter and are all mixed together in a bowl.\", \" The person is then shown placing dough balls into the oven and pressing a button.\", \" Then person then takes the cookies out and they disappear, all in stop animation.\"]}, \"v_EKyV_WFsJH0\": {\"duration\": 129.08, \"timestamps\": [[3.23, 54.86], [39.37, 93.58], [89.07, 123.92]], \"sentences\": [\"A man is seen speaking to the camera while a shot of a person playing basketball shows behind.\", \" The man continues speaking as more shots are shown of the boy playing basketball.\", \" The man continues speaking and ends with text across the screen.\"]}, \"v_E5uAH7_WTFs\": {\"duration\": 9.46, \"timestamps\": [[0, 1.99], [2.41, 9.46]], \"sentences\": [\"A professional swimmer wipes his eyes before engaging in the competition.\", \" He takes off, swimming as he tries to beat the two competitors on either side of him.\"]}, \"v_DEVD2oszH48\": {\"duration\": 86.98, \"timestamps\": [[0, 20.88], [21.31, 33.49], [34.79, 37.4], [38.27, 40.01], [43.93, 70.89], [72.63, 84.81]], \"sentences\": [\"A gymnast gets ready and stretches out before an event.\", \" The gymnast runs then tumbles down a platform during an Olympic game finally landing on a padded mat.\", \" A large crowd applauds the performance.\", \" Other gymnast look on and nod with approval.\", \" A replay shows the gymnasts performance in slow motion.\", \" The gymnast sits with her coach and is congratulated.\"]}, \"v_-lV2zo5XsCg\": {\"duration\": 30.67, \"timestamps\": [[0.46, 7.98], [8.13, 22.85], [22.24, 29.29]], \"sentences\": [\"A close up of a horse is seen standing in a fenced in area.\", \" A person is then seen brushing the horse from the side.\", \" The person continues brushing as a close up of the horse is shown.\"]}, \"v_NbTlXQLScRo\": {\"duration\": 180.16, \"timestamps\": [[5.4, 82.88], [85.58, 177.46]], \"sentences\": [\"A man is seen speaking to the camera followed by him laying several ingredients out and boiling them in some water.\", \" He then pours more food items under water and into a pot filled with water.\"]}, \"v_rWVpotNVeyM\": {\"duration\": 209.7, \"timestamps\": [[0, 8.39], [9.44, 36.7], [34.6, 118.48], [117.43, 209.7]], \"sentences\": [\"A black screen appears with with white words reading, Winter Sedona,AZ.\", \"A man begins walking through a field of trees and shrubs,wearing a yellow hat,cardigan,boots,and a bag.\", \"He then stops and begins playing a wooden recorder.\", \"The camera zooms in and he continues playing the recorder and various forms of the surrounding landscape is shown.\"]}, \"v_7IfBJgi3WCE\": {\"duration\": 47.07, \"timestamps\": [[0, 24.71], [15.06, 47.07]], \"sentences\": [\"The camera moves in on two cars parked on the street facing one another.\", \" A young man is then seen riding a tractor along the lawn to cut the grass and moves all around the camera man.\"]}, \"v_ikHGZpkhfNc\": {\"duration\": 213.06, \"timestamps\": [[0, 21.31], [18.11, 93.75], [53.26, 213.06]], \"sentences\": [\"Five people carrying skateboards are walking towards the light.\", \" The young people are skateboarding in a subdivision while sitting down using their hands as a break.\", \" The young people skateboard in a ramp, then to the parking lot, then to the subdivision, one of the skateboarders fell off their skateboards.\"]}, \"v_JO_CW4PR3I8\": {\"duration\": 40.5, \"timestamps\": [[2.23, 13.97], [13.97, 23.49], [24.7, 40.5]], \"sentences\": [\"A man is holding a wooden case.\", \" He puts a towel through the case.\", \" He begins to shine his shoe with the towel.\"]}, \"v_cxFt88Cs-fs\": {\"duration\": 183.0, \"timestamps\": [[0, 71.37], [71.37, 148.23], [148.23, 183]], \"sentences\": [\"Two men are outside on the side of a bridge talking to each other as several people are walking by talking to them and shaking their hands.\", \"After,the man that is in the harness grabs on to the shoulders of two men as they help him stand up on top of the bridge.\", \"Finally,the man does a free fall off of the bridge and a orange ball is thrown to him.\"]}, \"v_rBnygEUFOvE\": {\"duration\": 54.15, \"timestamps\": [[7.58, 28.97], [28.97, 41.42], [41.42, 50.09]], \"sentences\": [\"A gymnast wearing red leotards is performing gymnastics on uneven bars in a large stadium with a several spectators.\", \" She is doing front flips and back flips with swift motion without falling down.\", \" After she's done, she gets off the uneven bars and walks off as she gives a high five to her coach.\"]}, \"v_5jaIcPomOuM\": {\"duration\": 59.12, \"timestamps\": [[0, 26.6], [24.83, 59.12]], \"sentences\": [\"Two women are seen speaking to the camera with one holding a cat in her lap.\", \" The woman then proceeds to hold the cat's claws and cut the nails while pointing to the cat and looking to the camera.\"]}, \"v_eOsASILOUZM\": {\"duration\": 12.68, \"timestamps\": [[0, 1.78], [2.6, 5.39], [5.01, 8.18], [8.43, 12.36]], \"sentences\": [\"A woman stands on a diving board.\", \" She jumps off of the diving board.\", \" She dives into the pool of water.\", \" She swims under the water.\"]}, \"v_nOxKfRwdf2w\": {\"duration\": 228.07, \"timestamps\": [[0, 30.79], [30.79, 33.07], [79.82, 103.77]], \"sentences\": [\"People are dancing on a stage.\", \" Two people are talking to a camera outside.\", \" A ballerina does several twirls on stage.\"]}, \"v_HqpflYNEI7o\": {\"duration\": 68.96000000000001, \"timestamps\": [[5.17, 48.96], [15.52, 48.62], [49.31, 56.55]], \"sentences\": [\"A pumpkin is sitting on a counter.\", \" A knife is carving a face into the pumpkin.\", \" The lights are turned off and the pumpkin is lit up.\"]}, \"v_oZnbAhzN3jg\": {\"duration\": 172.66, \"timestamps\": [[0, 172.66], [17.27, 44.89], [55.25, 158.85]], \"sentences\": [\"A person shows how to clean large windows.\", \"  First the soap is applied then it is scraped away.\", \"  The process is repeated and finished.\"]}, \"v_f5Ja983oTMw\": {\"duration\": 36.02, \"timestamps\": [[0, 30.25], [12.97, 15.13], [29.71, 30.43], [31.87, 36.02]], \"sentences\": [\"A man mounts a pommel horse and starts spinning.\", \" A gymnast in the background falls mid performance.\", \" The main performer dismounts and throws his arms in the air.\", \" The main performer walks away.\"]}, \"v_ljxNDSS_AcA\": {\"duration\": 179.28, \"timestamps\": [[0, 14.34], [7.17, 163.15], [164.04, 170.32]], \"sentences\": [\"A man is standing in a room talking.\", \" Another man is painting the walls of the room.\", \" The man sets his paint can and his towel down next to him.\"]}, \"v_toeGFZLoeHU\": {\"duration\": 40.54, \"timestamps\": [[0.41, 39.73], [8.11, 14.19], [17.84, 29.39], [34.06, 40.54]], \"sentences\": [\"A man, wearing a kilt and white t-shirt plays the bagpipes while standing outside of a shopping strip parking lot, as cars pass by.\", \"  A man stands outside next to a yellow fire hydrant and plays the bagpipes as cars pass.\", \"  The man moves closer to the cars or the edge of the sidewalk as he plays.\", \"  The man continues to play bagpipes on the sidewalk until the scene fades to black.\"]}, \"v_KFIxTdJtXAE\": {\"duration\": 238.54, \"timestamps\": [[0, 94.22], [60.83, 135.97], [110.92, 238.54]], \"sentences\": [\"One group of adults are in a raft, paddling through the water with big waves.\", \" The group hit each other's paddle like a high five and then continue to paddle through the river.\", \" Other group of people are riding the rafts and stopped at the side of the river.\"]}, \"v_nypn_gYS8Ik\": {\"duration\": 61.12, \"timestamps\": [[0, 7.33], [7.64, 33.31], [34.84, 61.12]], \"sentences\": [\"A woman is combing her hair while looking into the camera.\", \" She then brushes her bangs straight.\", \" She continues brushing with the comb and her hand.\"]}, \"v_lu7viu9nf6g\": {\"duration\": 84.17, \"timestamps\": [[0, 38.72], [30.3, 84.17]], \"sentences\": [\"Various clips of a large group of people are seen standing together leading into clips of people shooting bows and arrows.\", \" More clips are shown of people speaking to the camera are shown as well as people celebrating and shooting more bows and dancing.\"]}, \"v_aKLKf4Qd_4U\": {\"duration\": 21.94, \"timestamps\": [[0.33, 6.03], [6.03, 15.03], [12.29, 21.72]], \"sentences\": [\"A close up of a house is seen when a person walks into frame.\", \" The person is seen grabbing lawn mower and pulling it to the side.\", \" The person then pushes the lawn mower all around the house.\"]}, \"v_FSU0YVLCoSc\": {\"duration\": 163.72, \"timestamps\": [[0, 152.26], [54.85, 163.72]], \"sentences\": [\"A person's hands are seen close up on a tool and begins moving the handle around and taking the tool apart.\", \" The person unscrews some items and tightens the inside and moves the screwdriver around while holding the tool.\"]}, \"v_ot7hBY4lQ2c\": {\"duration\": 164.34, \"timestamps\": [[0, 13.97], [14.79, 19.72], [24.65, 61.63], [65.74, 150.37], [151.19, 164.34]], \"sentences\": [\"A group of men have gathered indoors.\", \" Two of them crouch in the center.\", \" They flip to the center of the circle, doing ornate kickboxing stunts.\", \" Several more clips of other fighters are shown, flipping, rolling, and kicking.\", \" The two men hug at the end.\"]}, \"v_mHe2twk5BDE\": {\"duration\": 237.82, \"timestamps\": [[0, 39.24], [39.24, 44], [44, 110.59], [110.59, 219.98], [219.98, 237.82]], \"sentences\": [\"Various still shot pictures of different men, different ages, different races and different sizes appear with white text names appearing over each of their faces.\", \" A blue screen then appears and white text words appear and say \\\"WAIT!! SO WHAT IS WATER POLO??\\\".\", \"Various clips of many men playing water polo in a pool start to play and it shows them splashing in the water, fighting for the ball, swimming, and trying to make a goal at the net that's at the end of a pool.\", \"Another blue screen appears and it has white text that say's \\\"OK then so heres us in action\\\" and numerous still shot pictures display of people playing water polo in the pool, or just hanging out are displayed.\", \" When the pictures are done a blue screen appears with a lot of white words on it that basically say that if you're interested in what you just saw, you just need to contact one of them.\"]}, \"v_Xj--zKhm6k4\": {\"duration\": 29.72, \"timestamps\": [[0, 4.76], [6.09, 9.96], [10.85, 29.72]], \"sentences\": [\"A large man is dancing inside a dark room.\", \" People behind him laugh and clap.\", \" He is throwing darts at a target in the distance.\"]}, \"v_UoX2xhYPD38\": {\"duration\": 81.15, \"timestamps\": [[0, 81.15], [0, 34.49], [33.68, 53.16], [53.56, 81.15]], \"sentences\": [\"A young man is washing clothes inside a bathroom sink as he talks to the camera.\", \" Initially he starts to wash the clothes with both hands.\", \" Afterwards  he adds more soap using two different bottles to the sink.\", \" Subsequently he keeps washing the clothes as he talks to the camera.\"]}, \"v_NQyAC1aweec\": {\"duration\": 77.42, \"timestamps\": [[2.71, 41.42], [30.97, 71.22]], \"sentences\": [\"A cat is shown close up with a person's hand cutting the nails on the cat.\", \" The person continues cutting the claws while the cat attempts to get up several times.\"]}, \"v_opGZh9nUlWA\": {\"duration\": 170.34, \"timestamps\": [[0, 13.63], [13.63, 170.34], [53.66, 68.14], [103.91, 114.98], [168.64, 170.34]], \"sentences\": [\"A lady stands in a dance studio.\", \" the lady performs a ballet dance.\", \" The lady lifts her leg up behind her and moves it to the front and rests it on her leg.\", \" The lady stands in front of the camera facing the mirror.\", \" We see a person sitting on the left side of the room.\"]}, \"v_gS4dNLjHouo\": {\"duration\": 186.78, \"timestamps\": [[0, 186.78], [0.93, 185.85]], \"sentences\": [\"A marching band parades down the street, playing drums and other instruments.\", \" People on both sides of the street watch the band perform.\"]}, \"v_Pl4zAGveukQ\": {\"duration\": 129.1, \"timestamps\": [[0, 14.85], [18.07, 30.34], [33.57, 106.51], [107.8, 129.1]], \"sentences\": [\"A woman with long hair speaks to the camera.\", \" She holds up a long brush.\", \" She demonstrates how to use the brush to scrape snow off a car.\", \" When she is done, she continues talking about the brush.\"]}, \"v__EKqIcXdW04\": {\"duration\": 54.08, \"timestamps\": [[0, 54.08], [9.19, 54.08]], \"sentences\": [\"A lady knees, while a guy walks and instructs.\", \" The lady places both hands behind her head.\"]}, \"v_gDhfInESf_E\": {\"duration\": 104.86, \"timestamps\": [[0, 76.02], [33.03, 39.32], [76.02, 102.76], [102.76, 104.86]], \"sentences\": [\"A lady is brushing her hair.\", \" The lady brushes her hair from underneath.\", \" 115 The lady runs her hand through her hair.\", \" The lady finishes and sits upright.\"]}, \"v_7Lkcan0X5VA\": {\"duration\": 146.59, \"timestamps\": [[0, 8.8], [9.53, 49.84], [48.37, 58.64], [58.64, 85.02], [85.75, 115.07], [115.8, 146.59]], \"sentences\": [\"A person's hands are shown playing piano.\", \" A close up of a trumpet shows a man playing.\", \" The video fades to the people playing on stage.\", \" The camera zooms in on the trumpet player.\", \" A girl is shown playing piano.\", \" The duo continue playing until the song ends.\"]}, \"v_rI-Iq496Sgk\": {\"duration\": 62.76, \"timestamps\": [[0, 10.67], [12.55, 49.9], [54.29, 62.76]], \"sentences\": [\"A man has climbed a large ladder outside.\", \" He is using trimmers to cut and trim large trees.\", \" He reaches up, cutting the branches and twigs.\"]}, \"v_HdgVytIzu4s\": {\"duration\": 152.25, \"timestamps\": [[0, 23.6], [19.79, 70.8], [74.6, 148.45]], \"sentences\": [\"A man is seen holding a tennis racket and begins hitting a ball around a room.\", \" Another man is in frame also holding a tennis racket and hitting a ball around.\", \" The men continue to play with one another around the room while the camera follows their movements.\"]}, \"v_RNqJj9tt3F0\": {\"duration\": 214.76, \"timestamps\": [[0, 2.15], [2.15, 16.11], [16.11, 35.44], [35.44, 214.76]], \"sentences\": [\"Several NHL players are playing a hockey game in a hockey stadium.\", \" One of the player is shown expressing his anger at the game.\", \" A news caster comes onto the screen to announce a a segment about hockey meltdowns.\", \" The top ten hockey melt downs are then shown.\"]}, \"v_Ka0Rtjfi9fI\": {\"duration\": 100.78, \"timestamps\": [[0, 21.67], [22.17, 35.78], [69.53, 80.12], [82.13, 100.78]], \"sentences\": [\"A man trims a large hedge with a pole trimmer.\", \" There are several close ups of the tool in action.\", \" Several extensions are shown for it.\", \" The man trims a tree with it.\"]}, \"v_VFOpGMVouVg\": {\"duration\": 203.52, \"timestamps\": [[2.04, 45.79], [45.79, 149.59], [149.59, 197.42]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her playing with her hair and pining it up.\", \" She ten begins braiding her hair in various places while speaking to the camera.\", \" She ties her hair back around her head and ends by speaking to the camera.\"]}, \"v_eQMT-WmxKM8\": {\"duration\": 67.13, \"timestamps\": [[0, 9.73], [10.4, 47.33], [51.02, 67.13]], \"sentences\": [\"a girl is holding a baton her hand.\", \" She tosses it to a boy beside her.\", \" They take turns throwing it into the air and catching it.\"]}, \"v_a42c_maArv4\": {\"duration\": 10.89, \"timestamps\": [[0, 3.21], [3.27, 6.21], [6.26, 10.89]], \"sentences\": [\"The camera shakes on an image of an indoor volleyball court.\", \" A woman races back from the net to hit the incoming volleyball.\", \" A fellow team member also hits the ball and sends it across the net.\"]}, \"v_e60HGAzBOvo\": {\"duration\": 156.22, \"timestamps\": [[0, 14.84], [14.84, 92.17], [92.17, 132.79], [132.79, 146.85], [146.85, 156.22]], \"sentences\": [\"The man is wearing an apron as he walks into the works space and the words \\\"Conti Ski-Boots Service Presents Race Operation\\\" is overlayed onto the screen as he grabs a ski pole and picks up a drill and uses it on the top of the ski.\", \" The man then grabs the ski and puts it into the green machinery that is located behind him and runs it through the machine a few times then removes it and stars to work on the backside of the ski which appears to look like he is sanding, taping and pouring some type of clear finish onto it.\", \" The man then runs a device over the sky that looks like an iron, and continues to sand it, clear it off, scrape it, and use the ironing device again.\", \"The man then removes the tape and turns the ski onto it's side to scrape at it.\", \" When he's finished he grabs the ski and puts it into a compartment that is located above the green machine.\"]}, \"v_woiigfrANUM\": {\"duration\": 141.71, \"timestamps\": [[0, 38.26], [39.68, 70.86], [70.86, 74.4], [75.82, 132.5], [133.21, 141.71]], \"sentences\": [\"A man stands in an arena preparing to skateboard.\", \" The man skates down a halfpipe and goes back and forth from one end to the other.\", \" The man loses his skateboard and comes down the wall on his knees.\", \" We see the man's disappointment as another man prepares to skate.\", \" The man walks away and hops on his skateboard behind the stage.\"]}, \"v_MzYA5oo-mzk\": {\"duration\": 7.06, \"timestamps\": [[0, 0.42], [0.42, 4.91], [4.91, 7.06]], \"sentences\": [\"A man is in a screened area standing on a concrete circle and swings a ball on a rope around two times above his head.\", \"The man then quickly starts spinning himself along with swinging the ball on the rope.\", \" After numerous and quick swings and spins the man lets the rope go and the ball goes flying.\"]}, \"v_DsqNpc9JChY\": {\"duration\": 222.89, \"timestamps\": [[0, 88.04], [89.16, 139.31], [141.53, 222.89]], \"sentences\": [\"A person wash the dishes using a brush in a sink.\", \" Then, the person wash the utensils while cleaning with the brush.\", \" After, the person pours dishwasher in a glass and a cup, then brush and rinse.\"]}, \"v__HQTWGmXXsc\": {\"duration\": 104.25999999999999, \"timestamps\": [[0, 14.07], [14.07, 44.31], [44.83, 70.37], [70.9, 104.26]], \"sentences\": [\"A young woman with a black dress and red cardigan on is standing in the corner of a kitchen cutting fruits.\", \"After awhile,she grabs six strawberries and leaves them on the cutting board as she begins to cut grapes.\", \"In front of her,there are two large white bowls full of fruit and she begins putting the cut up fruit in those bowls.\", \"The camera then moves and the person zooms in on the contents of the fruit bowls,showing pineapples,strawberries and grapes.\"]}, \"v_g-KEU43sCt4\": {\"duration\": 224.03, \"timestamps\": [[0, 219.55], [48.17, 81.77], [86.25, 95.21], [114.25, 127.7], [133.3, 168.02], [192.66, 204.98], [220.67, 224.03]], \"sentences\": [\"Children perform martial arts moves in a dojo as adults watch.\", \" A girl flips and takes her turn then flips out of the center.\", \" A teen does a flip to the other side of the room.\", \"  One of the teachers moves to the middle of the floor.\", \" The teen talks to another one of the children and send the boy in when it's his turn.\", \" the teen attempts to have a scared boy take a turn but the boy refuses.\", \" The children all run to the floor.\"]}, \"v_2SnFlGUHKnc\": {\"duration\": 83.03999999999999, \"timestamps\": [[0, 7.89], [9.55, 49.82], [54.39, 83.04]], \"sentences\": [\"A woman is dancing in the middle of the street with a baton.\", \" She twirls and throws the baton while a small crowd watches.\", \" She continues down the road, performing with the baton.\"]}, \"v_KRfdZgxLZPY\": {\"duration\": 143.92000000000002, \"timestamps\": [[2.16, 138.88], [7.2, 11.51], [12.23, 19.43], [30.22, 35.98], [68.36, 77], [130.25, 136.72]], \"sentences\": [\"In the snow, various young men perform snowboard tricks before the camera.\", \" A man in a blue sweatshirt jumps down a staircase.\", \" A young man in a black outfit performs a double trick by grinding down one railing and jumping down a staircase.\", \" A man in a purple sweatshirt grinds down a staircase railing.\", \" A man in a purple and black striped sweatshirt jumps down a staircase.\", \" The man in the blue sweatshirt grinds down a railing and lands stylishly on the floor.\"]}, \"v_07GFy_Z7Nuc\": {\"duration\": 60.16, \"timestamps\": [[0, 10.23], [8.72, 11.13], [0, 60.16], [9.33, 55.95], [6.02, 60.16], [57.76, 60.16]], \"sentences\": [\"A male gymnast walks up to the parallel bars and uses a spring board to jump up.\", \" Another man pulls the spring board out of the way.\", \" A large crowd watches from the stands in the gym.\", \" The gymnast does a parallel bar routine.\", \" Several other male gymnasts walk around in the background.\", \" The male gymnast completes his routine and runs off of the gym floor.\"]}, \"v_zCijq4G1B3Q\": {\"duration\": 172.78, \"timestamps\": [[12.96, 58.75], [38.88, 120.08], [105.4, 172.78]], \"sentences\": [\"A man is painting the wood with brush, the wood is being shown.\", \" The man is painting the fence with brown paint, then painting the table.\", \" The man mixed the paint and then began painting the wooden table, then he clean up the floor and brush it.\"]}, \"v_4XX5rcqpOXA\": {\"duration\": 171.27, \"timestamps\": [[5.99, 96.77], [80.5, 168.7]], \"sentences\": [\"A person is seen sitting at a table followed by two people dancing with one another and others sitting around watch.\", \" The people continue dancing around one another and end by stopping and having other two dancing beside them.\"]}, \"v_J80e9M4AQ5w\": {\"duration\": 189.59, \"timestamps\": [[0, 5.69], [6.64, 176.32], [43.61, 54.03], [67.3, 72.04], [86.26, 100.48], [100.48, 132.71], [132.71, 154.52], [152.62, 164.94], [178.22, 189.59]], \"sentences\": [\"We see an opening screen with a black background.\", \" We see a lot of people moving snow with shovel, brooms, pots, and bowls.\", \" A man is shoveling with a dist pan followed by ladies with a hoe and plate.\", \" A man throws snow on a lady.\", \" A man throws snow on people.\", \" A person is stuck in the snow is buried by others.\", \"  A lady talks to the camera and it goes black and white.\", \" People are mainge snow angels.\", \" We see the closing credits of the video.\"]}, \"v___dXUJsj3yo\": {\"duration\": 29.98, \"timestamps\": [[0, 11.84], [11.69, 29.98]], \"sentences\": [\"A middle age woman is shown squatting down picking up snow and dumping it in pile.\", \"She then walks towards the camera and sticks her tongue out.\"]}, \"v_QY-2lN9zwho\": {\"duration\": 140.69, \"timestamps\": [[0, 20.4], [23.92, 83.01], [83.71, 140.69]], \"sentences\": [\"A young boy laughs while holding two toothbrushes.\", \" He uses an electric brush to brush his teeth.\", \" He shakes the brush, occasionally pouring water on it and putting it back in his mouth.\"]}, \"v_N0mNYZaCJoQ\": {\"duration\": 32.0, \"timestamps\": [[0, 1.76], [1.76, 32], [0.96, 1.6], [20.32, 32]], \"sentences\": [\"A person pulls the rope of a camel that a man sits on.\", \" A man pulls a camel with two people in the desert.\", \" Two women are close to the camels.\", \" A car pass behind the camels.\"]}, \"v_oGwn4NUeoy8\": {\"duration\": 153.09, \"timestamps\": [[0, 43.63], [32.15, 117.11], [81.9, 146.97]], \"sentences\": [\"A small group of people are seen on a stage getting their instruments ready.\", \" A woman begins playing the drums while another plays piano and the others watch.\", \" The two continue to play their instruments and others on the side watch.\"]}, \"v_dukaFaotZGc\": {\"duration\": 117.4, \"timestamps\": [[0, 16.44], [69.27, 78.07], [95.09, 102.73]], \"sentences\": [\"Two men quickly dismantle a red chimney.\", \"  One man puts wood over the gaping hole.\", \"  The man then covers the wood with shingles.\"]}, \"v_nIpT_lGpjck\": {\"duration\": 24.73, \"timestamps\": [[0, 1.48], [1.36, 3.09], [3.09, 9.77], [10.02, 11.25], [11.75, 22.01], [23, 24.73]], \"sentences\": [\"We see a person chopping a fruit.\", \" The person then cuts off the chopped portion.\", \" The person chops the fruit again and cuts off the chopped bit.\", \" The person picks up a slice from the bowl and cuts it.\", \" We then see the person chop and cut more.\", \" The person picks up bits off their pants.\"]}, \"v_P17kaxPrbdc\": {\"duration\": 136.77, \"timestamps\": [[0, 26.67], [26.67, 136.77]], \"sentences\": [\"A boy is seen holding a stick while other people watch and clap on the sidelines.\", \" The boy holding the stick performs a martial arts routine in front of the people and ends with a pose while everyone around him claps.\"]}, \"v_S2VKbwm0uE8\": {\"duration\": 137.65, \"timestamps\": [[2.06, 75.02], [31.66, 135.58]], \"sentences\": [\"A man is seen giving the camera a piece sign while others around him talk and gear up.\", \" One man is then seen stepping up on a platform and jumping off the side.\"]}, \"v_QF7wNOCJpMU\": {\"duration\": 87.73, \"timestamps\": [[0, 40.35], [40.35, 87.73]], \"sentences\": [\"A man competes in a canoe in a river moving the oar very fast.\", \" Then, the man pass turbulent waters.\"]}, \"v_SXlSHYVNcvM\": {\"duration\": 238.52, \"timestamps\": [[0, 5.96], [9.54, 31.01], [34.58, 91.83], [97.79, 236.13]], \"sentences\": [\"The word ehow appears on the screen.\", \" We see a woman dressed in red standing in a room of a house.\", \" She is talking about a table in front of her.\", \" She picks up some furniture polish, and applies it to the wood, polishing it with a sock she has put over her hand.\"]}, \"v_HEfOp_pz_j4\": {\"duration\": 41.12, \"timestamps\": [[0, 5.96], [5.96, 40.3], [27.96, 37.63]], \"sentences\": [\"In a dark crystal ball, an alien looking thing is looking at the characters inside.\", \" Three men are playing paper, scissor, stick and stone while creatures with different colors are watching them with shock.\", \" One character won by using scissor, he then talked to the people around him.\"]}, \"v_8JKK6JayDeA\": {\"duration\": 220.66, \"timestamps\": [[9.93, 17.65], [24.27, 204.11], [37.51, 204.11]], \"sentences\": [\"A woman bends down and lifts a heavy weight over her head.\", \" People are sitting behind them on benches.\", \" Several more people keep lifting the weights.\"]}, \"v_cb5Xy7k7z1w\": {\"duration\": 108.02000000000001, \"timestamps\": [[0.54, 107.48], [0.54, 30.25], [30.79, 108.02]], \"sentences\": [\"A young girl and gymnast performs a gymnastic exercise on the balancing beam at a professional sports event in front of many photographers and an audience in the stands.\", \"  A young gymnast in a blue outfit stands in front of a balance beam, jumps on it and begins to perform a routine involving flips.\", \"  The girl performs several flips on the balance beam and high jumps using her arms to balance her stance before performing one final flip off of the beam and sticking the landing after which she walks hugs a coach before looking at the scoreboard and talking briefly with a man seated in a white chair.\"]}, \"v_R2izNBHhctM\": {\"duration\": 71.22, \"timestamps\": [[0, 16.38], [16.38, 49.85], [49.14, 68.01], [63.03, 68.01]], \"sentences\": [\"A woman in pink dress is clipping the right paw of a white cat who is sitting on her lap.\", \" She took the left paw to clip, the cat looked up and the woman looked down and gave her a quick kiss on the head.\", \" The cat looked up while the woman is clipping the right back paw of the cat.\", \" While the woman is clipping the left back paw, the cat was blinking to the camera.\"]}, \"v_GN0TdqHETvc\": {\"duration\": 165.32999999999998, \"timestamps\": [[0, 56.21], [43.81, 165.33]], \"sentences\": [\"Two men are seen standing in a room and speaking to the camera while holding rackets.\", \" The two then continuously hit the ball around the closed area back and fourth and point to the camera with a racket and run around.\"]}, \"v_l866oFamRY4\": {\"duration\": 18.11, \"timestamps\": [[0, 1.9], [2.08, 10.78], [12.14, 18.11]], \"sentences\": [\"A group of numerous people are walking down a public street.\", \" One couple is walking a pit bull on a leash.\", \" We see smoke billowing from a building as the people walk away.\"]}, \"v_G02h5bFOpCE\": {\"duration\": 102.47, \"timestamps\": [[15.37, 19.98], [19.98, 22.54], [23.57, 46.11], [46.11, 46.62], [47.65, 74.29], [74.29, 75.83]], \"sentences\": [\"A man is holding a surf board.\", \" Birds fly into the sky above the water.\", \" He surfs the waves in the water.\", \" He is in the car talking.\", \" He surfs in the water some more.\", \" The birds are flying over the water again.\"]}, \"v_JjUQ6dWZIL0\": {\"duration\": 189.41, \"timestamps\": [[0, 18.94], [33.15, 139.21], [143, 189.41]], \"sentences\": [\"A large flag is flowing in the wind.\", \" A man is on a street, hitting a stick with another stick.\", \" Two men engage in martial arts kick boxing, kicking and swinging and flipping.\"]}, \"v_Xfu6WQuFEks\": {\"duration\": 7.01, \"timestamps\": [[0, 6.77], [0.39, 6.77], [2.81, 6.77]], \"sentences\": [\"A man is chopping wood in a snowy yard.\", \"  There is a pile of snow behind him.\", \"  The log split in two with one strike.\"]}, \"v_cqgecSy943o\": {\"duration\": 218.69, \"timestamps\": [[0, 18.59], [19.68, 209.94], [59.05, 65.61], [139.96, 147.61], [148.71, 151.99], [179.32, 185.88], [209.94, 218.69]], \"sentences\": [\"A man bends over to talk to the camera.\", \" The man then skateboards on a ramp.\", \" He tries to run up the ramp without a skateboard.\", \" A child slides down the ramp on her butt.\", \" The man's skateboard gets away from him.\", \" The man chases his skareboard.\", \" The man talks to the camera.\"]}, \"v_1WR4jgFCqRw\": {\"duration\": 81.28999999999999, \"timestamps\": [[0, 56.09], [56.91, 81.29]], \"sentences\": [\"An older gentleman in a blue shirt is painting a wooden fence.\", \" He picks up the paint bucket and walks up the sidewalk.\"]}, \"v_6tzQ5-VBgVU\": {\"duration\": 159.59, \"timestamps\": [[0, 21.54], [21.54, 135.65], [135.65, 159.59]], \"sentences\": [\"A man is seen riding around on roller blades in a park and performs a grind while the camera slows down.\", \" Several more roller bladers are shown grinding around a park in various locations as well as showing several more tricks.\", \" The camera man holds the camera close to his face and zooms in on a man sitting and smoking.\"]}, \"v_a2Y7AK4VD0o\": {\"duration\": 30.19, \"timestamps\": [[0, 13.89], [14.19, 30.19]], \"sentences\": [\"A girl plays a wind box instrument inside of a house.\", \" The woman laughs then resumes playing the song on the instrument.\"]}, \"v_sHxzQu_4edY\": {\"duration\": 165.26, \"timestamps\": [[0, 19.83], [21.48, 114.03], [116.51, 165.26]], \"sentences\": [\"A woman is shown in a yard, talking to the camera.\", \" She is then on horseback, and a woman is shown in several scenes talking about technique.\", \" The girl rides the horse alone, then with other people down trails.\"]}, \"v_FDTkn9SFPfs\": {\"duration\": 37.18, \"timestamps\": [[0, 3.72], [4.28, 37.18], [5.58, 34.2]], \"sentences\": [\"A person holding a cat straightens the cat's paw.\", \" The person cuts the cat's claws with a scissor shape clipper.\", \" The cat attacks the the cutter.\"]}, \"v_Cw5NDI8NnZU\": {\"duration\": 67.01, \"timestamps\": [[0, 67.01], [18.43, 30.16], [58.3, 67.01]], \"sentences\": [\"People are surfing on a large wave in the water.\", \" A boat is in the water.\", \" A large wave crashes in the water.\"]}, \"v_s0Pw7vKtqpo\": {\"duration\": 204.48, \"timestamps\": [[0, 53.16], [53.16, 127.8], [127.8, 204.48]], \"sentences\": [\"Two people are shown and then several boats are advertised.\", \" After,the two people in the water surfing over large huge waves together.\", \"Next,people on the boat comes into the water as well as on jet skis as a man stands on top of a large cliff over the water.\"]}, \"v_BJGACTBaU_Y\": {\"duration\": 14.58, \"timestamps\": [[0, 9.04], [5.83, 13.85]], \"sentences\": [\"A man is seen walking closer to a pinata while a large group of people stand around him.\", \" The man misses the pinata and hits a person behind him, shown again in slow motion.\"]}, \"v_Sma-ydx49eQ\": {\"duration\": 78.62, \"timestamps\": [[0, 78.62], [0, 57.79], [47.17, 78.62]], \"sentences\": [\"A man starts jump roping on a stage.\", \" People are in the audience watching him.\", \" Two men stand behind cameras filming him.\"]}, \"v_snPtOKtIEA4\": {\"duration\": 72.62, \"timestamps\": [[0, 13.8], [13.44, 43.94], [43.94, 72.62]], \"sentences\": [\"A team of basketball players are shown on the right side of the court doing lay-ups.\", \"After several turns,they move to the left side of the court and begin practicing the lay ups once more.\", \"As they are going,a chair sits in front of them to serve as the marker and a man walks back and forth watching them go.\"]}, \"v_Zhf052cWrv8\": {\"duration\": 98.64, \"timestamps\": [[0, 10.85], [7.89, 35.51], [31.07, 98.64]], \"sentences\": [\"A man is standing and walking in the gym.\", \" The man sat on the rowing machine and put his feet on the pedal.\", \" The man began to pull the belt.\"]}, \"v_6SHSstpZN1I\": {\"duration\": 108.58, \"timestamps\": [[0, 21.17], [21.72, 88.49], [32.03, 37.46], [47.23, 52.12], [88.49, 108.58]], \"sentences\": [\"We see kids on dirt bikes on a dirt field with adults standing over them.\", \" The kids take off and start down the dirk track.\", \" The kids have a hard time turning to come up the dirt track.\", \" One of the boys has fallen and dropped his bike.\", \" We see the kids high fiveing men and women on the sidelines.\"]}, \"v_i5kuZ8zlhMg\": {\"duration\": 203.06, \"timestamps\": [[17.26, 32.49], [32.49, 40.61], [40.61, 70.06], [70.06, 95.44], [95.44, 104.58], [104.58, 135.03], [135.03, 176.66], [176.66, 189.86]], \"sentences\": [\"The video is about girls varsity water polo.\", \" There are several girls getting ready to go to a water polo sport event.\", \" They are holding their backpacks and gear.\", \" They are traveling to the event together and check into a hotel.\", \" The entire team spends time together before the event.\", \" Two of the team members talk about their experience with the water polo event.\", \" The team members talk about the competition and how they fared in the sport.\", \" The screen shows all the final wins and loses in the girls varsity water polo.\"]}, \"v_apPeChgjzs4\": {\"duration\": 25.89, \"timestamps\": [[0, 25.89], [0, 24.73], [1.55, 25.89]], \"sentences\": [\"A shirtless man is playing bongo drums in front of a microphone.\", \" There are other sets of drums to his left.\", \" To his right is a green bag and a hat situated on a table.\"]}, \"v_0WJX2A6PSnA\": {\"duration\": 22.04, \"timestamps\": [[0, 2.64], [2.64, 13.77], [13.77, 17.74], [17.74, 22.04]], \"sentences\": [\"Cleaning supplies (and the list of names appear on the screen) are on an island in a kitchen.\", \" A woman walks in, grabs the supplies, starts spraying the sink and begins scrubbing with a sponge.\", \" The woman then starts rinsing the sink with the hand held sprayer until it's all clean.\", \" The cleaning spray is on the edge of the counter and text on the screen below it read \\\"For tough stains repeat as necessary.\"]}, \"v_g2GZd1160m4\": {\"duration\": 52.92, \"timestamps\": [[12.7, 50.54], [12.7, 52.92], [12.7, 52.65], [50.27, 52.92]], \"sentences\": [\"Two young boys perform martial arts dances.\", \" A group of boys around them watches on.\", \" Behind the performs sits a group of men playing music for the performance.\", \" The performers return to their seats.\"]}, \"v_dB4SbhaQQV8\": {\"duration\": 22.57, \"timestamps\": [[0, 2.48], [1.92, 5.64], [6.43, 11.74], [9.82, 14.9], [17.49, 22.57]], \"sentences\": [\"A bunch of kids are standing on a soccer field and a girl is talking.\", \" The girl is ready to kick a red ball rolled on the ground.\", \" The young woman wearing blue shorts and a t-shirt runs and kicks the ball.\", \" The young girl slides into the first water slide.\", \" The girl then gets up and then slides into the second water slide.\"]}, \"v_6diEN8nUqsI\": {\"duration\": 121.65, \"timestamps\": [[0.61, 60.83], [60.83, 89.41], [89.41, 121.65]], \"sentences\": [\"A man catch a fish from a hole in the ice.\", \" Then, the man holds the fish that moves on the ice.\", \" After, the man put a metal rod on the mouth of the fish.\"]}, \"v_5SzzJMuyC_M\": {\"duration\": 91.56, \"timestamps\": [[0, 30.21], [29.3, 91.56]], \"sentences\": [\"A person is seen throwing plaster onto a wall while the camera follows the person close behind.\", \" The person gradually throws more and more onto the wall and the camera pans over the finished product.\"]}, \"v_2pJTak2Qz8Q\": {\"duration\": 237.66, \"timestamps\": [[1.19, 10.69], [26.14, 237.66]], \"sentences\": [\"Lots of people are seen walking by in the beginning of the video.\", \"Then different people are shown skiing up ramps to do cool tricks.\"]}, \"v_r2oMItb5EVM\": {\"duration\": 109.16, \"timestamps\": [[0, 46.94], [48.03, 82.96], [84.05, 109.16]], \"sentences\": [\"A young man puts in a pan oil, onions, tomatoes, green leaves and salt, then mix to cook the vegetables.\", \" After, the man puts aside the vegetables, and cooks an omelette in the pan.\", \" After, the man puts the vegetables over the omelette and folds it, then he serves the omelette.\"]}, \"v_sYphlW-m1pU\": {\"duration\": 195.7, \"timestamps\": [[0, 89.04], [90.02, 91.98], [91.98, 152.64], [153.62, 195.7]], \"sentences\": [\"A young boy is sitting in front of a desktop as he plays with a Rubik cube.\", \"He finishes the cube and sets it on the desk and quickly stops a timer.\", \" He grabs the cube again and begins to complete it.\", \" He finishes again and starts another game of the cube.\"]}, \"v_DYahQgHG1Gk\": {\"duration\": 112.8, \"timestamps\": [[0, 15.79], [15.79, 108.85], [55.27, 65.43], [83.47, 89.11], [100.96, 106.03], [108.85, 112.8]], \"sentences\": [\"An intro appears on the screen for a video bout a man who will be playing the rums.\", \" The man begins to play the drums as the camera records him.\", \" He pauses and people are laughing and enjoying the music.\", \" He pauses again and waits for a reaction from the crowd.\", \" the camera turns to show the people that are enjoying the music.\", \" The video ends with the closing credits.\"]}, \"v_bzHSF5GJc8o\": {\"duration\": 72.73, \"timestamps\": [[0, 4.73], [4.73, 43.64], [43.64, 51.27], [51.27, 72.73]], \"sentences\": [\"A group of women are wearing volleyball team uniforms standing in an indoor gym, and a young woman that has a number 10 on her shirt is bouncing the volleyball and getting ready to serve.\", \" The woman serves the ball and a game ensues as all the women keep the ball in the area and hit it over the net multiple times trying to keep it in bounds.\", \"The same woman that served the ball spikes the ball very hard ,the other team misses it and her team mates cheer.\", \"The same woman that served earlier serves the volleyball once again and the other team quickly spikes the ball that sends the opposing team member rolling on the ground in an attempt to save the ball from hitting the ground.\"]}, \"v_9A0BwCxAKAg\": {\"duration\": 230.95, \"timestamps\": [[0, 34.64], [34.64, 205.54], [204.39, 230.95]], \"sentences\": [\"A man is seen talking to the camera and leads into him rubbing down a window.\", \" He streaks the window with cleaner and shows several methods on how to use a wiper properly.\", \" The window is all clean in the end and he is still seen talking to the camera.\"]}, \"v_L6Uf3epn3zA\": {\"duration\": 187.57, \"timestamps\": [[0.94, 53.46], [55.33, 150.06], [131.3, 178.19]], \"sentences\": [\"Several canoes are sen laid out that leads into shots of people riding in the canoes.\", \" A man is seen speaking to the camera as well as riding in a canoe with another woman.\", \" More people are seen riding down the river in canoes while the man continues to speak.\"]}, \"v_eoOzE3cpqVg\": {\"duration\": 51.74, \"timestamps\": [[0, 4.4], [5.17, 29.75], [30.26, 51.74]], \"sentences\": [\"A man in gear is shown pointing two guns.\", \" He is hiding behind rocks, sneaking up on other paintball players.\", \" They shoot at each other as he goes back behind the rocks to hide.\"]}, \"v_YYpeT1sH_m0\": {\"duration\": 142.76, \"timestamps\": [[0, 7.14], [7.85, 142.76], [22.13, 135.62], [52.82, 56.39]], \"sentences\": [\"Fit guys stand on a bleach.\", \" The guys play beach soccer.\", \" A man gives an interview.\", \" A player juggles two soccer balls.\"]}, \"v_Ox51OBhM5Ak\": {\"duration\": 32.16, \"timestamps\": [[2.89, 24.6], [5.79, 10.45], [19.62, 19.94]], \"sentences\": [\"A girl in a yellow shirt is eating an ice cream cone.\", \" A boy in a striped shirt is sitting across from her eating an ice cream cone.\", \" A man next to him looks back at her.\"]}, \"v_rHMMgJBUWh8\": {\"duration\": 26.98, \"timestamps\": [[0.94, 6.21], [6.34, 7.15], [7.42, 25.36]], \"sentences\": [\"A guy spins a ball attached to a rope.\", \" The guy releases the ball and rope attachment to the area behind him.\", \" The guy spins the ball attached to a rope and falls to the ground.\"]}, \"v_9A9wnSoXs48\": {\"duration\": 107.78, \"timestamps\": [[0, 63.05], [52.81, 107.78]], \"sentences\": [\"A man in white shirt and white lifevest is sitting in a single orange raft.\", \" The man in a raft is going against the water waves, he paddles and the raft is turning in circle.\"]}, \"v_ZpwXqrCxcGg\": {\"duration\": 50.67, \"timestamps\": [[0, 16.97], [15.96, 24.32], [45.85, 50.67]], \"sentences\": [\"An empty room is shown with yellow tile.\", \" A man in a white shirt is painting a wall.\", \" He turns around and looks at the camera.\"]}, \"v_-9B2XtqICFw\": {\"duration\": 184.3, \"timestamps\": [[0, 11.06], [11.06, 23.04], [23.96, 33.17], [34.09, 152.97], [78.33, 140.07], [121.64, 130.85], [153.89, 164.02], [164.02, 184.3]], \"sentences\": [\"We see a series of title screens.\", \" We then see a badminton match.\", \" We see a illustration of badminton.\", \" We then see a lady and a man playing indoors.\", \" We see animations as the man hits the ball.\", \" We see a illustration of the man.\", \" We then see the ending screen.\", \" A man is talking in a green room.\"]}, \"v_zGDecqEw9AU\": {\"duration\": 63.04, \"timestamps\": [[0.95, 31.52], [30.26, 61.78]], \"sentences\": [\"Two people are seen playing a fooseball table and cheering with one another.\", \" The people continue playing and pausing to cheer ending with a handshake.\"]}, \"v_w4CiGbHLTBg\": {\"duration\": 139.72, \"timestamps\": [[6.29, 21.66], [21.66, 30.04], [30.04, 51.69], [51.69, 60.78], [61.47, 67.76], [68.46, 139.72], [124.35, 132.03]], \"sentences\": [\"A green paint brush holder is shown.\", \" The brush of the paint brush is being shown on a person's finger.\", \" They are painting with the brush.\", \" They are dropping thinner into the paint with a dropper.\", \" There is a model airplane sitting on the table.\", \" The airplane is being painted a gold color.\", \" A green paint brush is being shown and turned around.\"]}, \"v_ZTwmb1d44bc\": {\"duration\": 50.69, \"timestamps\": [[0, 5.83], [6.08, 8.11], [8.36, 10.64], [10.9, 14.19], [16.22, 38.02], [38.27, 43.09], [43.59, 50.69]], \"sentences\": [\"A curling stone slides down the ice.\", \" The blue team discuss their strategy.\", \" The white team high five each other.\", \" The blue team discuss while a member points.\", \" A blue team player takes his turn and curls his stone into the center.\", \" The blue team comes and hugs the player as they celebrate.\", \" The credits of the video are shown.\"]}, \"v_73zt29iKyL4\": {\"duration\": 201.92000000000002, \"timestamps\": [[0, 58.56], [58.56, 154.47], [116.1, 197.88]], \"sentences\": [\"A person is seen walking along the snow and pulling a sled behind him.\", \" The person cuts a hole in the ice as well as bait and finally catches a fish.\", \" The man cuts the fish, cooks it, and is then seen eating it and walking away.\"]}, \"v_y76trNI6U0Y\": {\"duration\": 171.36, \"timestamps\": [[0, 71.12], [16.28, 47.98], [52.27, 71.12], [71.97, 125.1], [125.1, 166.22], [167.94, 171.36]], \"sentences\": [\"A lady is washing a small dog in a sink.\", \" The lady puts shampoo on the dog.\", \" The lady picks the dog up again.\", \" The lady takes the dog over to a table and stands him up.\", \" She drapes the dog over a rolled up towel.\", \" She then picks up the dog.\"]}, \"v_UJebyFqxDXI\": {\"duration\": 141.29, \"timestamps\": [[0, 65], [65.7, 141.29]], \"sentences\": [\"A man is seen speaking to the camera holding various objects and transitions into him cutting the edge of a lawn.\", \" He is then shown mowing lawns and trimming hedges while speaking to the camera as well as blowing leaves out of a yard.\"]}, \"v_9pJZsi04xBk\": {\"duration\": 95.97, \"timestamps\": [[0, 95.97], [4.32, 91.17], [62.86, 82.05]], \"sentences\": [\"Two teams play a game of indoor field hockey.\", \" Teams take shots on a goal keeper that are blocked.\", \" The referee starts and stops the game.\"]}, \"v_iKnRiVXMMGg\": {\"duration\": 87.35, \"timestamps\": [[0.44, 55.03], [29.7, 35.38], [55.03, 62.89], [62.46, 83.42], [84.3, 87.35]], \"sentences\": [\"Scenes of women using various methods to curl their hair are shown.\", \" A computer graphics sequence shows one particular device's functionality.\", \" Several women display their curled hair.\", \" The curling product is once again demonstrated by several women.\", \" One woman's before and after pictures are shown.\"]}, \"v_Zts8FynhoJs\": {\"duration\": 20.09, \"timestamps\": [[0, 20.09], [4.32, 6.03], [14.16, 15.16]], \"sentences\": [\"A woman is brushing her teeth in a bathroom.\", \" Someone is filming her behind her.\", \" She spits the toothpaste out into the sink in front of her.\"]}, \"v_RsHk6sq_9IY\": {\"duration\": 115.53999999999999, \"timestamps\": [[0, 6.93], [8.09, 52.57], [53.15, 83.77], [85.5, 115.54]], \"sentences\": [\"An advertising screen appears momentarily as the video begins.\", \" A group of men are shown kicking a ball back and forth in a stadium.\", \" The men run after the ball, attempting to capture it from the opposing team.\", \" A yellow circle is shown around a particular player.\"]}, \"v_YJ4ynq5Adg0\": {\"duration\": 120.81, \"timestamps\": [[1.81, 7.25], [7.25, 24.16], [24.16, 58.59], [58.59, 93.03], [93.03, 120.21]], \"sentences\": [\"A group of kids are standing around wearing lifejackets as the camera pans around a lake.\", \" A man is seen sitting in a boat and the camera continues panning around the area.\", \" The kids wander into the boats and beginning paddling down the river.\", \" The water becomes more furious and the kids splash the camera man playfully.\", \" The continue riding down the treacherous waves as the camera watches them from afar.\"]}, \"v_Te1d8H4VWYw\": {\"duration\": 15.47, \"timestamps\": [[0.39, 7.19], [5.49, 14.92]], \"sentences\": [\"A small group of people are seen swimming around a pool grabbing a ball and throwing it back and fourth.\", \" The people continue playing with one another and throw the ball around.\"]}, \"v_JgHubY5Vw3Y\": {\"duration\": 143.64, \"timestamps\": [[0.72, 5.75], [6.46, 10.05], [17.95, 19.39], [24.42, 39.5], [70.38, 72.54], [97.67, 112.76]], \"sentences\": [\"A man and woman are talking in a room.\", \" A person is riding a bike down the street.\", \" Someone falls over after riding a bike.\", \" The man and woman are talking in a room.\", \" A bike is leaning against a fence.\", \" A man puts a lock around the tire of his bike.\"]}, \"v_HW9c7WFW6q8\": {\"duration\": 225.16, \"timestamps\": [[10.13, 54.04], [52.91, 158.74], [167.75, 225.16]], \"sentences\": [\"A shot of a sunset set is shown followed by peaking smoking and walking around a paint ball pit.\", \" The men speak to one another and lead into running around and playing paint ball.\", \" They pauses for a few moments to speak to one another and the camera captures the shooters from different angles.\"]}, \"v_W01QffZYsxQ\": {\"duration\": 18.39, \"timestamps\": [[0, 18.39], [3.13, 14.53], [15.26, 18.39]], \"sentences\": [\"A small child is seen laying down on a rug while the camera records them.\", \" The child then covers their eyes with their hands and moves their head up and down.\", \" Finally they smile to the camera in the end.\"]}, \"v_hYgheCsbtco\": {\"duration\": 48.07, \"timestamps\": [[0, 3.36], [3.85, 35.81], [36.77, 48.07]], \"sentences\": [\"A close up is seen of chords and numbers scrolling next to the top of a guitar.\", \" Instructions are being given for playing the instrument.\", \" The person's fingers move up and down on the chords as they are shown.\"]}, \"v_k6pU9VaFsZ8\": {\"duration\": 95.67, \"timestamps\": [[0, 43.53], [43.53, 95.67]], \"sentences\": [\"man is wearing stils and is making high jumps above a trasher bin in a parking lot.\", \" man is doing high jumps inf ront of the las vegas sign in the street and above a stoned wall in the street.\"]}, \"v_XQ0_P0LpCFM\": {\"duration\": 165.27, \"timestamps\": [[0, 60.32], [61.15, 115.69], [115.69, 165.27]], \"sentences\": [\"Two teams are shown on a field and the man is running playing lacrosse and runs directly into the other opponent.\", \"Another play starts and this time another person is ran into except it is more fragrant and the person lays on the ground hurt for quite some time.\", \"After consulting with the referee and seeking help,the male finally gets up and the rest of the game continues.\"]}, \"v_m_ST2LDe5lA\": {\"duration\": 17.09, \"timestamps\": [[0, 4.19], [4.87, 14.78], [15.55, 17.09]], \"sentences\": [\"Two people wearing scuba gear are underwater.\", \" They look at each other, remove their mouth pieces, then kiss.\", \" The man places his mouth piece back in.\"]}, \"v_R3YoG3Hi4iI\": {\"duration\": 169.09, \"timestamps\": [[12.68, 18.6], [20.29, 76.94], [45.65, 47.34], [143.72, 169.09]], \"sentences\": [\"A person jumps off a boat into the water.\", \" A boy is long boarding down a street.\", \" They stop and sit on a park bench.\", \" A person is riding an escalator up.\"]}, \"v_eZdao9O8jrw\": {\"duration\": 227.28, \"timestamps\": [[0, 227.28], [38.64, 65.91], [98.87, 143.18], [170.46, 227.28]], \"sentences\": [\"A woman is standing in a room talking.\", \" She shows a bottle in her hand.\", \" She pours some of the lotion onto her hands and rubs it on her face.\", \" She uses a towel to dry her face.\"]}, \"v_FjfWqx-NL_w\": {\"duration\": 100.28999999999999, \"timestamps\": [[0, 17.55], [18.05, 72.71], [76.72, 100.29]], \"sentences\": [\"A little boy is in an outdoor parking lot.\", \" He is trying to roll around on a pair of inline skates.\", \" He tries to balance on a small piece of wood.\"]}, \"v_gusezUdYfNA\": {\"duration\": 139.59, \"timestamps\": [[4.19, 75.38], [58.63, 134.01]], \"sentences\": [\"A man is seen speaking to the camera while holding a toilet paper roll and begins blowing smoke into the roll.\", \" The man continues to take several drags off a pipe and blow it out into the toilet paper roll.\"]}, \"v__3lgJ6yp7o8\": {\"duration\": 22.9, \"timestamps\": [[0.11, 10.99], [8.01, 22.32]], \"sentences\": [\"A person is seen sitting in a kayak and moving himself down a rough river.\", \" The person continues riding down the river while another people watches on the side.\"]}, \"v_XSu5dteR2Ko\": {\"duration\": 98.06, \"timestamps\": [[6.86, 26.48], [60.8, 95.12], [71.09, 77.96]], \"sentences\": [\"A man in a black shirt is playing a harmonica.\", \" Another man sits on a porch of a house.\", \" A woman in a white scarf turns a lantern off.\"]}, \"v_-fLJHBqizNM\": {\"duration\": 72.7, \"timestamps\": [[0, 9.45], [9.45, 19.99], [19.99, 26.9], [26.9, 72.7]], \"sentences\": [\"A man is shown on parallel bars doing a routine on them.\", \" He is very focused and flipping and rocking back and forth.\", \"The athlete then dismounts the bars and lands on his feet.\", \" Various shots of the same routine are shown with pauses in between and notes as to proper technique are shown.\"]}, \"v_yJN4jnk_S1U\": {\"duration\": 177.42000000000002, \"timestamps\": [[0, 87.82], [65.65, 177.42]], \"sentences\": [\"A woman is seen walking onto a stage performing a belly dancing routine in front of an audience.\", \" The woman continues dancing around the stage and ends with her posing.\"]}, \"v_CIQ-mnURg9E\": {\"duration\": 176.07999999999998, \"timestamps\": [[0, 7.04], [7.92, 176.08]], \"sentences\": [\"woman is standing in front of a screenboard.\", \" man is cooking chopping carrots and sautee the vegetables in a fying pan and serving it in bowls abd out the dressing and cheese while pople behind him are watching him cook.\"]}, \"v_rRoRvt4p2LU\": {\"duration\": 168.32, \"timestamps\": [[1.68, 78.27], [54.7, 161.59]], \"sentences\": [\"A small group of people are seen riding down a rough river past others while many watch on the side.\", \" The group continues to paddle along and meeting up with other groups at the bottom.\"]}, \"v_xbWSMxwcP_8\": {\"duration\": 12.12, \"timestamps\": [[0, 6.97], [1.21, 12.12]], \"sentences\": [\"A young girl is seen sitting on a couch next to an adult looking down at their feet.\", \" The girl plays with a toy iron and moves the item up and down on a shirt.\"]}, \"v_xlOc6r6E08w\": {\"duration\": 48.44, \"timestamps\": [[0, 19.13], [19.37, 35.84], [35.6, 48.44]], \"sentences\": [\"A man is running down a pathway in the field in slow motion preparing to throw a javelin.\", \"As he comes closer,he begins to turn and run sideways and throws the javelin.\", \"Once it is released,he stumbles and has difficulty trying to catch his balance as the rest of the people surrounding him look to see his distance.\"]}, \"v_YdfWewUrcTw\": {\"duration\": 186.55, \"timestamps\": [[0, 34.51], [36.38, 140.85], [87.68, 127.79], [127.79, 138.05], [140.85, 160.43], [160.43, 186.55]], \"sentences\": [\"We see a man talking to two other men outside a warehouse.\", \" Inside the warehouse we see a box the men ride their skateboards over.\", \" The man falls off his skateboard repeatedly.\", \" He flips the skateboard, and we see it in slow motion.\", \" The man gets a hat, and we see the end screen.\", \" A man jumps on a pile of boxes and we see the end screen again.\"]}, \"v_gYBIX_tGaXo\": {\"duration\": 33.3, \"timestamps\": [[0, 13.98], [0, 6.66], [3, 14.15], [14.15, 19.98], [21.14, 32.96]], \"sentences\": [\"Betty Heidler competes in the Olimpic games in the women's hammer category.\", \" Betty Haidler seems really focused and determined to go home with a prize.\", \" Betty Heidler starts spinning and then with all the momentum tossed the hammer really far away.\", \" Betty Heidler classified to the next round as the toss was successfull.\", \" Someone interviews Betty Heidler and she's really happy about qualifying to the next rounds of the game.\"]}, \"v_o8wdvkauJQQ\": {\"duration\": 45.81, \"timestamps\": [[0.69, 19.93], [19.93, 22.45], [22.45, 26.34]], \"sentences\": [\"People workout on a fitness machine pulling a strings on a rod and going back and forth.\", \" A man folds a fitness machine in a gym.\", \" Then, a man make workouts in a fitness machine.\"]}, \"v_IPehEfMBLM0\": {\"duration\": 174.02, \"timestamps\": [[0, 87.88], [87.01, 174.02]], \"sentences\": [\"A woman in blue shirt is chopping the wood, when she chopped the wood in half, she put them aside then she take another log and chopped it in half.\", \" The woman try to chop the wood in half but it won't get chopped in half, then it fell on ground and she put it back on the chopping board, and she continue to chop the wood, after several attempts she finally chopped the wood in half.\"]}, \"v_uy9Z2i8AmyY\": {\"duration\": 184.74, \"timestamps\": [[0, 72.05], [58.19, 134.86], [125.62, 184.74]], \"sentences\": [\"Various picnic tables are shown on a field followed by a man putting on gear and others running through the forest.\", \" Several people are seen playing a paintball match with one another and continuously moving around the forest and holding up a gun.\", \" The person then runs through an area holding his gun up and shooting when a person arrives.\"]}, \"v_rQc7UhpiDU8\": {\"duration\": 126.74, \"timestamps\": [[0, 21.54], [20.91, 86.18], [86.81, 126.74]], \"sentences\": [\"A man is seen shooting a bow and arrow followed by another man taking a bow and aiming.\", \" Another man is seen kneeling down before bows and speaking to the camera.\", \" He points to various boxes and continues looking into the camera and speaking.\"]}, \"v_xmvwhxB1q30\": {\"duration\": 192.26, \"timestamps\": [[0, 192.26], [4.81, 192.26], [51.91, 192.26], [61.52, 192.26]], \"sentences\": [\"A man and two children paddle down a river.\", \" Two canoes are tied together.\", \" The water gets choppier as they go on.\", \" The river is lined with many trees.\"]}, \"v_iC1C5wfb0iU\": {\"duration\": 25.1, \"timestamps\": [[0, 2.13], [2.51, 12.3], [12.17, 20.46], [18.45, 20.21], [22.97, 25.1]], \"sentences\": [\"We see an opening title screen.\", \" A group of men play foosball outdoors.\", \" The men on the right win and shake hands and hung.\", \" One man high fives a child held up by a lady behind them.\", \" We see a closing screen.\"]}, \"v_79gvzh0wn0Q\": {\"duration\": 90.77, \"timestamps\": [[0, 58.54], [58.54, 62.63], [63.08, 75.79], [76.24, 90.77]], \"sentences\": [\"A woman in white karate uniform does a demonstration of a routine on the mat for judges during event.\", \" The woman bows and walks off the mat.\", \" A woman in black uniform shakes hands with judges.\", \" A woman in white uniform walks up and greets judges shaking their hands.\"]}, \"v_ihMn28mft2s\": {\"duration\": 126.11, \"timestamps\": [[13.24, 25.85], [25.85, 67.47], [67.47, 91.43], [91.43, 110.98], [110.98, 126.11]], \"sentences\": [\"A man sporting a beard and mustache and wearing a white shirt is giving a tutorial on volleyball safety.\", \" He then wears a black sweatshirt and demonstrates how to do stretching exercises.\", \" He continues to explain what gear to wear while playing and warming up for volleyball.\", \" There are some athletes playing volleyball as he talks.\", \" There is a game of volleyball shown where players are in an indoor gym.\"]}, \"v_Sk1RSHPavBU\": {\"duration\": 9.87, \"timestamps\": [[0, 9.87], [2.57, 4.44], [4.39, 5.63], [7.3, 9.52]], \"sentences\": [\"We see men playing soccer in the sand.\", \" The ball enters and everyone runs towards the ball.\", \" A man on the right kicks the ball into the goal.\", \" The men in red all high five.\"]}, \"v_zM1-aiWdPvY\": {\"duration\": 72.63, \"timestamps\": [[0, 26.87], [18.16, 53.75], [41.04, 70.82]], \"sentences\": [\"A woman is seen speaking to the camera while standing next to a horse and holding a brush.\", \" She begins brushing all along the horse while still speaking to the camera.\", \" She pauses for a moment to end while speaking to the camera.\"]}, \"v_8WJWtfmEipI\": {\"duration\": 15.95, \"timestamps\": [[0, 1.99], [1.99, 11.65], [11.65, 15.95]], \"sentences\": [\"A car is stopped at a red light and there's a view of a small town that has some snow on the ground.\", \"The light turns green and the car drives down the street and there's no people walking on the sidewalk and just one truck parked.\", \" On the right side there's someone shoveling ice from the road and the car passes him.\"]}, \"v_uxsZFuXKs3A\": {\"duration\": 12.93, \"timestamps\": [[0, 1.68], [1.68, 12.35], [12.35, 12.93]], \"sentences\": [\"A man is outdoors standing on a 4 step tool and swipes his hedge cutter to the right.\", \" The man then lifts the cutters up and begins cutting more towards his left side.\", \"The man stops cutting and begins to step down from the ladder.\"]}, \"v_fvUckFYBQks\": {\"duration\": 106.46000000000001, \"timestamps\": [[19.16, 55.36], [55.36, 86.24], [92.09, 93.16]], \"sentences\": [\"A woman starts braiding her hair.\", \" Directions come up on the side of the screen.\", \" The woman turns to the side to show her braid.\"]}, \"v_T3ngvDyxYiE\": {\"duration\": 122.49, \"timestamps\": [[0, 15.31], [17.76, 50.83], [52.06, 94.93], [96.76, 122.49]], \"sentences\": [\"Two teams are on either side of a field.\", \" They are holding a rope, getting ready to pull.\", \" The two teams begin pulling, trying to win the competition as a crowd watches.\", \" The yellow group begin to be pulled forward against their will.\"]}, \"v_EM0N4dzewIg\": {\"duration\": 206.54, \"timestamps\": [[0, 25.82], [25.82, 173.5], [178.66, 206.54]], \"sentences\": [\"The front of a building called Giant is seen.\", \" Technicians are shown inside, working on bicycles.\", \" They work in teams, trying to build and repair.\"]}, \"v_ETZOazHvdZg\": {\"duration\": 102.6, \"timestamps\": [[0, 4.1], [4.1, 32.32], [32.83, 53.86], [53.86, 62.07], [67.72, 87.21], [88.24, 101.57], [101.57, 102.6]], \"sentences\": [\"We see a bowler in front of a crowd stand and hold the ball.\", \" the bowler throws a strike and the crowd claps, a lady holds her hands in front of her face and the bowler wipes his hands.\", \"The man throws another strike and falls.\", \" He rises from the ground as the crowd claps.\", \"  the man throws a third strike and is seen laying on the ground.\", \" He gets up and shakes the hand of men around and we see a lady holding her hands in front of her face.\", \" We then see an older man talking alone in a room.\"]}, \"v_2bnO6YWXCiU\": {\"duration\": 55.29, \"timestamps\": [[14.93, 21.01], [21.29, 22.39], [49.76, 52.25]], \"sentences\": [\"A man is spreading mulch around plants.\", \" A man is sitting at a table reading a newspaper.\", \" A well manicured yard is shown.\"]}, \"v_8LB2tdMOZ6g\": {\"duration\": 41.0, \"timestamps\": [[0, 7.58], [6.97, 39.36], [39.56, 41]], \"sentences\": [\"a football game is showing and a man in the news is talking about a voleyball game.\", \" the set is shown with the voleyball game and some women in bikini playing white the spectators are on the grades clapping.\", \" back to the studio are three commentators talking.\"]}, \"v_-rKS00dzFxQ\": {\"duration\": 231.43, \"timestamps\": [[8.1, 23.14], [24.3, 39.34], [40.5, 53.23], [54.39, 60.17], [61.33, 62.49], [63.64, 72.9], [78.69, 82.16], [83.32, 84.47], [85.63, 91.42], [92.57, 102.99], [104.15, 105.3], [114.56, 123.82], [124.97, 131.92], [133.07, 136.55], [137.7, 152.75], [153.9, 160.85], [162, 167.79], [168.95, 177.05], [178.2, 180.52], [181.68, 196.72], [197.88, 210.6], [211.76, 217.55]], \"sentences\": [\"A man and a woman stand by a table speaking to the camera.\", \" A recipe of mashed potatoes sits on the table.\", \" The man peels and cuts potatoes before throwing them into a yellow pot.\", \" The man throws in three handfuls of salt into the yellow pot.\", \" The man cuts up some garlic.\", \" Into the pot, the man throws the garlic along with two leaves.\", \" The woman joins the man at the table and she cuts butter in half.\", \" The woman throws the butter into a saucepan.\", \" The man speaks to her briefly and the woman proceeds to pour some milk into the saucepan.\", \" The man places the yellow pot and the saucepan on the stove.\", \" The man grabs the pot's lid and covers the pot.\", \" Back at the table, the man removes the lid from the pot and removes the leaves.\", \" The man mashes the potatoes.\", \" The man throws in a pinch of salt onto the potatoes.\", \" The man resumes mashing the potatoes.\", \" The man pours in the milk from the saucepan into the pot.\", \" The man mashes the potatoes some more.\", \" The man grabs some pepper and throws it onto the potatoes.\", \" The man adds some more milk.\", \" The man returns to mashing the potatoes and stirring them as they have thoroughly become soft.\", \" The man pauses for a second to throw in some water and resumes to stirring the potatoes.\", \" The finished mashed potatoes dish is left on a counter.\"]}, \"v_45v95EtrJX0\": {\"duration\": 8.34, \"timestamps\": [[0, 4.63], [3.75, 8.34]], \"sentences\": [\"A close up of a board with shown with several pucks sitting around the side.\", \" Suddenly another puck is pushed down and knocked into others while people watch.\"]}, \"v_iPc-u9aU_SQ\": {\"duration\": 157.78, \"timestamps\": [[0, 32.34], [33.92, 122.28], [124.65, 157.78]], \"sentences\": [\"Two men are crouched beside a car, and a third stands.\", \" They remove the tire while another man takes pictures.\", \" The two men change the tire, putting on a spare.\"]}, \"v_RmwaWeIPX70\": {\"duration\": 37.29, \"timestamps\": [[1.12, 13.05], [13.24, 21.63], [21.63, 32.82]], \"sentences\": [\"A woman carry a heavy ball and stands on a circle.\", \" Then, the woman spins the weight.\", \" Then, the woman throw the weight.\"]}, \"v_hog7gGdk4i4\": {\"duration\": 13.07, \"timestamps\": [[0, 13.07], [0.98, 3.99], [4.97, 7.97]], \"sentences\": [\"the kids are on the swing while one kid stand and push a little dog on the swing.\", \"three bikers are riding there bike in the parking lot passing the swing area.\", \"A women then jogs on the sidewalk passing the swing area as well.\"]}, \"v_WL4iqWa_1Z0\": {\"duration\": 40.06, \"timestamps\": [[0, 0.8], [0.8, 10.21], [10.21, 30.84], [30.84, 40.06]], \"sentences\": [\"Two young males are sitting at a desk behind two microphones and two computers.\", \"One boy leaves and the other guys stays to gather his belongings.\", \"As he is packing up,a young woman walks in and begins shutting off the equipment and cleaning up around the radio station.\", \"Once everything is packed up,the boy leaves and begins blowing kisses to the camera.\"]}, \"v_jzl0Ar3H5f8\": {\"duration\": 170.48, \"timestamps\": [[0, 14.49], [14.49, 46.88], [46.88, 86.95], [86.95, 121.89], [123.6, 170.48]], \"sentences\": [\"A man dressed in black walks through a long hall in a palace.\", \"Two men in dressed in white practice stretching and prepare for a fencing match while a coach dressed in black looks on with a butler in the rear stands by.\", \"The two men dressed in white put on their fencing masks and begin a fencing match.\", \"The coach dressed in black begins critiquing the two fencers and holds the tips of the swords in his hand.\", \"The coach turns and walks to the butler and begins conversing.\"]}, \"v_R58R070r2GE\": {\"duration\": 84.66, \"timestamps\": [[0, 4.23], [4.23, 77.89], [77.04, 84.66]], \"sentences\": [\"A girl jumps onto a balance beam.\", \" She does a gymnastics routine on the balance beam.\", \" She dismounts and lands on the mat with her arms up.\"]}, \"v_fM4pJeHb8hQ\": {\"duration\": 185.41, \"timestamps\": [[0, 185.41], [19.47, 83.44], [82.51, 185.41]], \"sentences\": [\"A woman is sitting down in a chair with a woman standing behind her.\", \" The woman begins to brush the woman's hair.\", \" She starts to braid the hair.\"]}, \"v_iM8ZD2PwKDg\": {\"duration\": 127.52, \"timestamps\": [[15.94, 34.43], [34.43, 60.57], [60.57, 87.99], [87.99, 112.86], [112.86, 122.42]], \"sentences\": [\"There is a group of ladies in a gym dressed in workout tops and tights.\", \" They are all participating in a structured aerobics class.\", \" They are coordinating their steps and synchronizing their moves as they step on and off of the platform.\", \" They are dancing as they exercise to music.\", \" After they're done, they stop and raise remove the platforms.\"]}, \"v_L9cxYlPkUYs\": {\"duration\": 182.65, \"timestamps\": [[0, 26.48], [26.48, 94.06], [94.06, 149.77], [149.77, 182.65]], \"sentences\": [\"An d for About dot com starts with a man in white speaking to the camera in front of a white background.\", \" The video then shows a series of professionals working hard and then cuts to two women running on the beach.\", \" A shot of a cyclist is shown and then it cuts back to the same man in white speaking.\", \" A woman is shown running and the man continues speaking about fitness tips.\"]}, \"v_ymwMEUuXygs\": {\"duration\": 178.4, \"timestamps\": [[0, 12.49], [12.49, 48.17], [48.17, 97.23], [97.23, 144.5], [144.5, 178.4]], \"sentences\": [\"A man with a blue shirt is outside walking up a stair case into a building.\", \"As he walks in ,he walks down a row of several bicycles and sets up a camera.\", \"The man then enters another room with three other males and they begin to unbox and assemble several bicycles together.\", \"Once they are secured,the men get on them,testing them out and making the final touches on them.\", \"The bikes are finally finished and the man lifts it up to the camera and begins riding it down the sidewalk.\"]}, \"v_fFu37ig0pkY\": {\"duration\": 139.69, \"timestamps\": [[0, 139.69], [30.03, 111.06], [113.15, 120.83], [135.5, 139.69]], \"sentences\": [\"A woman is dancing outside on the sidewalk.\", \" She grabs a baton and starts twirling it around.\", \" She starts juggling the batons in the air.\", \" She does a back flip and goes into the splits.\"]}, \"v_EOvotFy4YX0\": {\"duration\": 44.68, \"timestamps\": [[0, 8.04], [9.83, 39.09], [40.21, 44.68]], \"sentences\": [\"A man is seen riding a camel that has a cart attached to the back with two passengers.\", \" The people in the back have a conversation while riding through several people watching on the sidelines.\", \" The man riding the camel smiles and waves to the camera.\"]}, \"v_wZEf-Bs__sU\": {\"duration\": 82.78, \"timestamps\": [[0, 26.9], [28.56, 65.4], [68.29, 82.78]], \"sentences\": [\"A group of athletes are on a track outside.\", \" A man walks down the path, then runs.\", \" He takes a giant leap into a sand pit.\"]}, \"v_pI-rY6fLM1Q\": {\"duration\": 126.55, \"timestamps\": [[10.12, 114.53], [10.12, 64.54], [69.6, 91.12], [96.18, 115.16]], \"sentences\": [\"A group of people ice fish on an ice covered lake on an overcast day.\", \"  A man walks on a snow covered lake and pulls a fish out of a fishing hole.\", \"  A woman and a man then run on the ice and pull another fish out of another hole in the lake.\", \"  A third fish is pulled out of another hole in the ice and then thrown back into the hole.\"]}, \"v_BN3ejP3RbkQ\": {\"duration\": 55.47, \"timestamps\": [[0, 55.47], [1.11, 55.47], [0, 54.92]], \"sentences\": [\"A man is sitting on a street.\", \" He is playing an instrument next to an open instrument case.\", \" People are passing on the sidewalk in front of him.\"]}, \"v_D4LoDBsIFjw\": {\"duration\": 156.09, \"timestamps\": [[0, 14.05], [37.46, 45.26], [53.07, 147.5], [64.78, 70.24], [92.87, 106.92], [139.7, 142.82]], \"sentences\": [\"A boy watches as a semi truck drives through the desert.\", \" A man puts on his helmet and pushes off into the river on a kayak.\", \" A man paddles on rapids and down a river on a kayak.\", \" A man fishes from a beach on the shore of a river.\", \" A group prepares a picnic on the shore.\", \" A man flips over on his kayak from being turned over in the water.\"]}, \"v_B7Q1egUKmZg\": {\"duration\": 83.2, \"timestamps\": [[0.42, 83.2], [0.42, 25.38], [25.79, 81.95]], \"sentences\": [\"A group of children play and practice basketball throws and techniques in an interior gym in front of coaches and other children.\", \"  A group of children take turns throwing orange and white balls in the net and running up to the net as well.\", \"  The coaches trail them as they play, at time, trying to block the throws using the hands.\"]}, \"v_7LkHBg_eAfU\": {\"duration\": 200.81, \"timestamps\": [[0, 28.11], [31.13, 103.42], [107.43, 200.81]], \"sentences\": [\"A man and woman are standing in a dance position.\", \" They then shift, showing different steps slowly.\", \" They continue dancing, showing how to perform different moves.\"]}, \"v_p2RMXdo5avw\": {\"duration\": 34.85, \"timestamps\": [[0, 34.85], [5.05, 17.43], [17.6, 34.85]], \"sentences\": [\"A shuffleboard is sitting against a wall.\", \" Someone throws a ball down it.\", \" A green ball gets through down after it.\"]}, \"v_dh4bxvmrCNs\": {\"duration\": 85.01, \"timestamps\": [[0, 12.75], [7.65, 41.65], [32.73, 85.01]], \"sentences\": [\"The girl is shoot the arrow.\", \" Five young people are shooting arrows.\", \" The young people removed the arrows from the target boards.\"]}, \"v_vb1CG5i1lEs\": {\"duration\": 183.08, \"timestamps\": [[0, 183.08], [63.16, 183.08]], \"sentences\": [\"A person wearing a large, white suit is shown spraying down a fence with water.\", \" The person is shown from various angles performing the task and makes the fence look brand new.\"]}, \"v_WBRQ4vHBFMY\": {\"duration\": 29.98, \"timestamps\": [[0, 2.4], [3, 20.68], [22.03, 29.98]], \"sentences\": [\"A woman is laying down in a chair as a man with gloves works.\", \" He places clamps on various parts of her nose.\", \" He then inserts a rod before creating a piercing.\"]}, \"v_xZOzVaTezm8\": {\"duration\": 80.97, \"timestamps\": [[0, 15.79], [5.26, 23.89], [32.39, 43.72], [68.01, 80.97]], \"sentences\": [\"A person in a green jacket walks around on the snow.\", \" A young girl lays in a tube on the snow.\", \" She is then pushed down the ramp.\", \" Eventually she comes to a stop.\"]}, \"v_VCg6_fuipp8\": {\"duration\": 98.59, \"timestamps\": [[0, 47.32], [46.34, 98.59]], \"sentences\": [\"An athletic man is seen standing ready in front of a large crowd and then runs down the track and jumps over a beam.\", \" The man celebrates with other people and his same jump is shown several times in slow motion.\"]}, \"v_y-OZ45FQZ0g\": {\"duration\": 60.98, \"timestamps\": [[0, 55.18], [55.18, 56.4], [56.4, 60.98]], \"sentences\": [\"A man is sitting on the couch wearing jeans a shirt, and he's holding a guitar on his lap, strumming with his right hand and tapping the upper strings with his left hand.\", \"The man slows down and stops strumming and tapping on his guitar.\", \"A colorful screen appears and it displays a cartoon picture of a Pokemon standing outdoors near a tree while it's snowing, and red words read \\\"Pokemon-Pallet-Town\\\".\"]}, \"v_Xc2CUi0Rnpw\": {\"duration\": 214.25, \"timestamps\": [[0, 84.63], [70.7, 214.25]], \"sentences\": [\"The camera zooms in on several players and leads into a small group of people playing soccer against one another.\", \" Coaches and audience members react as they watch the game and the players continue kicking the ball up and down the field.\"]}, \"v_VEDRmPt_-Ms\": {\"duration\": 232.07999999999998, \"timestamps\": [[0, 205.39], [205.39, 232.08]], \"sentences\": [\"women are in a gymnastics competition doing high jumps in a roofed gym with a lot of people gathered around them watching them.\", \" participants are on the podium receiveng thei medals.\"]}, \"v_ggGw9EGSMs8\": {\"duration\": 19.32, \"timestamps\": [[2.99, 5.02], [5.12, 5.99], [6.09, 6.96], [7.05, 10.14], [10.24, 19.32]], \"sentences\": [\"A man paints a fence as the man next to him waters the fence.\", \" Both of them go over the fence a second time.\", \" They do it  a third time.\", \" And they do it a fourth time.\", \" They do it a fifth time.\"]}, \"v_ZEgmWaMa9PU\": {\"duration\": 229.5, \"timestamps\": [[3.44, 61.97], [51.64, 190.49], [158.36, 227.21]], \"sentences\": [\"Several shots of landscapes are shown that pan back from people standing on a bridge.\", \" Shots are shown of people jumping off the side of the bridge while the camera captures more landscapes.\", \" Several more people are seen lined up watching that lead into more people jumping off the side.\"]}, \"v_R4aCl2dLS1w\": {\"duration\": 163.72, \"timestamps\": [[0, 25.38], [25.38, 129.34], [143.26, 163.72]], \"sentences\": [\"A man is seen wearing boxing gloves and hitting a bag in the middle of a large room.\", \" The man continues to hit the bag while several others are seen hitting bags in the background.\", \" He kicks and punches the bag and ends by walking towards the camera.\"]}, \"v_O2vrVwjqktg\": {\"duration\": 146.18, \"timestamps\": [[0, 18.27], [24.12, 146.18]], \"sentences\": [\"A volleyball is spinning on a ledge.\", \" We then see a game being played of table tennis, the players showing the mechanics of the paddle, ball, and table as they play.\"]}, \"v_byO53jHoAwI\": {\"duration\": 135.63, \"timestamps\": [[0, 11.53], [11.53, 135.63]], \"sentences\": [\"A man standing in a yard and playing bagpipes.\", \" The man is taking deep breaths and moving the keys.\"]}, \"v_vrMWYB0UuGM\": {\"duration\": 33.07, \"timestamps\": [[0, 33.07], [2.48, 10.25], [18.85, 24.63]], \"sentences\": [\"Two individuals play squash together in an indoor court.\", \" One of the individuals recovers the ball and serves.\", \" The same individual recovers the ball and serves again.\"]}, \"v_cB5ozEChN5Q\": {\"duration\": 113.00999999999999, \"timestamps\": [[0, 11.87], [12.43, 44.64], [45.77, 77.98], [79.11, 109.62], [110.19, 113.01]], \"sentences\": [\"People ride a line up a hill in a tubing resort.\", \" A person rides a tube down a hill.\", \" We watch the people walking up the hill holding their tubes and watch people go down the hill.\", \" We watch as the camera man goes down the hill.\", \" We see the ending screen.\"]}, \"v_u3nOmvgcs84\": {\"duration\": 173.06, \"timestamps\": [[1.73, 139.31], [23.36, 43.26], [45.86, 103.83], [105.57, 173.06]], \"sentences\": [\"A girl stands by a counter with various food items placed out on the counter.\", \" She holds up the ingredients and instructs what you'll need to make a sandwich.\", \" She begins chopping the vegetables and putting the dressing on the bread.\", \" She spreads around the dressing and puts the other ingredients on the sandwich to finish.\"]}, \"v_Irmh66trRY4\": {\"duration\": 238.47, \"timestamps\": [[0, 2.38], [0, 16.69], [16.69, 31], [31, 88.23], [88.23, 132.35], [135.93, 203.89], [209.85, 238.47]], \"sentences\": [\"We see the title go across the screen.\", \" We see baking supplies and ingredients.\", \" Someone stirs cookie dough and puts cookies on a sheet.\", \" The cookies go into the oven and bake for 9 minutes, and a new batch is put in the oven.\", \" The warm cookies are put on a cooling rack.\", \" The person washes, and drys the silicone baking sheet.\", \" They roll the baking sheet up and show us the finished cooling cookies.\"]}, \"v_MfSdXqOC-f0\": {\"duration\": 91.81, \"timestamps\": [[0, 11.02], [11.94, 57.38], [58.3, 91.81]], \"sentences\": [\"A man is standing on an open field outdoors.\", \" He uses an archery set to pull back and arrow at a flying disc.\", \" He hits the discs with the arrow every time.\"]}, \"v_Ft3SzVtUsKA\": {\"duration\": 75.09, \"timestamps\": [[0, 20.65], [19.52, 52.57], [49.19, 71.71]], \"sentences\": [\"A camera is shown sitting on the side of a pool capturing bubble underneath.\", \" More bubbles are shown followed by a man jumping in.\", \" The man jumps all the way into the pool and the camera captures his movements.\"]}, \"v_u3qNB8GDOzY\": {\"duration\": 108.14, \"timestamps\": [[0, 108.14], [55.15, 108.14]], \"sentences\": [\"A ladder is leaning against a house.\", \" A piece of wood goes up and down the ladder.\"]}, \"v__zAfwnDt4VE\": {\"duration\": 5.83, \"timestamps\": [[0, 1.84], [1.89, 4.34], [4.37, 5.83]], \"sentences\": [\"A man is kneeling down in the dirt over a a silver bowl that is full of soap.\", \"In the large bowl,he begins to move a white shirt as if he is washing it.\", \"Finally,he stops and takes a hose to finish rinsing the water.\"]}, \"v_XoCvj2IbVGE\": {\"duration\": 221.73, \"timestamps\": [[7.76, 63.19], [53.21, 151.88], [124.17, 212.86]], \"sentences\": [\"A person;s hand is seen turning a knob followed by their foot stepping on a button and a man holding up an iron.\", \" He adjusts more settings While testing the iron and begins ironing a shirt on a table.\", \" The men continues to flip around the shirt and iron and en by showing off the ironing machine to the camera.\"]}, \"v_ItFq_6cIByw\": {\"duration\": 27.54, \"timestamps\": [[0, 27.54], [1.24, 27.54], [19.28, 27.54]], \"sentences\": [\"A man sits behind a drum set.\", \" The man starts playing the drum set.\", \" The man keeps playing the drums.\"]}, \"v_N-92_rikI8U\": {\"duration\": 123.39, \"timestamps\": [[12.96, 29.61], [29.61, 62.93], [62.93, 88.84], [88.84, 115.99], [115.99, 123.39]], \"sentences\": [\"There's a man skiing down a very steep mountain slope.\", \" The man is going down very fast and steadily while fully dressed in ski gear and goggles.\", \" He then falls down to the ground as he reaches the bottom of the slope.\", \" He gets right back up and dusts off the snow from his clothes.\", \" He talks to another person through a hands free device attached on his coat to let him know he's okay.\"]}, \"v_mcS9LX_P4BA\": {\"duration\": 159.31, \"timestamps\": [[0, 4.78], [5.58, 36.64], [36.64, 88.42], [88.42, 159.31]], \"sentences\": [\"an image of a girl with her vlog asking people to subscribe.\", \"a girl wearing red hirt with her face is sitting on a living room and is reading tweets and talking about them.\", \" girl holds a small pumpkin and a knife and cut the pumpkin while talking.\", \"the pumkkin is slice in two and is shown the inside while the girl keps talking and reading tweets.\"]}, \"v_8ltNqT5N-xs\": {\"duration\": 180.14, \"timestamps\": [[1.8, 56.74], [53.14, 137.81], [117.09, 175.64]], \"sentences\": [\"A woman is seen belly dancing on a large stage while people watch her on the side.\", \" She moves her hips all around while a band plays instruments behind her.\", \" The woman continues dancing and ends by holding a pose and flipping back her hair.\"]}, \"v_k4a5XXRYKK4\": {\"duration\": 45.09, \"timestamps\": [[0, 20.52], [14.2, 45.09]], \"sentences\": [\"A game of lacrosse of being shown with a large group of people running around a field.\", \" Several people watch on the sidelines  as the game continues and a ref steps in to make a call.\"]}, \"v_q_DajTs5gIA\": {\"duration\": 135.49, \"timestamps\": [[0, 16.26], [16.26, 123.29]], \"sentences\": [\"A person holds and pet a hairless cat.\", \" The person cleans and cuts the nails of the front legs of the cat.\"]}, \"v_Fi_ja3Urdtg\": {\"duration\": 55.66, \"timestamps\": [[0, 10.3], [11.13, 34.23], [36.46, 55.66]], \"sentences\": [\"A man is talking from behind a bar.\", \" He shows off several kinds of bottles and taps.\", \" He shows how to mix a drink which he serves to a woman.\"]}, \"v_XFZ5_uNU7jE\": {\"duration\": 96.13, \"timestamps\": [[0, 12.02], [12.5, 32.2], [32.68, 74.02], [74.5, 89.4]], \"sentences\": [\"A person peels potatoes in a sink, suddenly a cat jumps to the bench to watch the woman.\", \" The cat touch the sink with his mouth and intend to pass to the other side of the sink but the woman prevents it.\", \" Then, the cat drinks water from the sink and cat continues watching the woman.\", \" After, the cat touch the potato peeler with a leg while the person continue peeling the potatoes.\"]}, \"v_86S2O0fpX4g\": {\"duration\": 18.04, \"timestamps\": [[0, 3.07], [3.88, 10.46], [11.46, 18.04]], \"sentences\": [\"A woman is lying on equipment in a gym.\", \" She has her feet tied with chain to a machine.\", \" She holds her head as she pulls her feet back and forth.\"]}, \"v_JrRtv8puAZI\": {\"duration\": 183.62, \"timestamps\": [[0, 37.64], [25.71, 37.64], [38.56, 44.07], [47.74, 56.01], [66.1, 121.19], [44.99, 53.25], [122.11, 157], [157.92, 183.62]], \"sentences\": [\"A guy holds a light cloth.\", \" A guy gets a white basin from beneath the sink and fills it with water in a sink.\", \" The guy puts down the light cloth and adds dish soap to the basin.\", \" The guy gets a rack from beneath the sink and places it on the counter top.\", \" The guy adds utensils and a dish to the white basin and washes them with a red rug.\", \" A boy watches from behind.\", \" The guy rinses the dishes and puts them in a rack.\", \" The guy dries the dish with the light cloth.\"]}, \"v_vSpl69BWMKI\": {\"duration\": 82.81, \"timestamps\": [[0, 71.63], [64.18, 82.81]], \"sentences\": [\"A man in gray shirt and jeans with orange helmet is trimming the hedges, he is standing in a ladder to reach the top of the hedge and trim it, the man continue to trim the hedge.\", \" A man in white shirt and orange helmet is trimming the burned hedges.\"]}, \"v_2u1gdf_53C0\": {\"duration\": 73.56, \"timestamps\": [[6.62, 64.73], [9.56, 52.23], [54.44, 65.84]], \"sentences\": [\"A person in a protective white suit and goggles sprays a surface with purple paint using a spray gun in a room with white walls and floors.\", \"  The person then spins the surface around on a spinning table and paints the sides.\", \"  The finishes matte product is shown, dried, in the plain white room where the painting happened.\"]}, \"v_bqA-WmqF19E\": {\"duration\": 80.69, \"timestamps\": [[0, 80.69], [37.52, 45.59], [37.52, 80.69]], \"sentences\": [\"People are playing pool in a room.\", \" A man shoots at the ball and makes it into the pocket.\", \" People are standing behind him playing pool on another table.\"]}, \"v_uX-UwKfRvJY\": {\"duration\": 124.99, \"timestamps\": [[13.12, 36.25], [36.25, 80], [80, 113.12], [113.12, 120.62]], \"sentences\": [\"The video begins with four pictures of contracted human abdomens.\", \" There's a young girl dressed in a blue tank top and black tights demonstrating the proper way to do planks and crunches.\", \" She is laying on a blue Yoga mat as she does crunches.\", \" Then she lays on her stomach by raising herself up on her elbows to show how to do planks.\"]}, \"v_6kUeZVukTEI\": {\"duration\": 125.18, \"timestamps\": [[0.63, 36.3], [35.68, 97.01], [90.75, 123.3]], \"sentences\": [\"Several clips are shown of people lifting heavy weights as well as jumping on a track.\", \" People are seen jumping over poles, squatting with weights, as well as performing various other exercises.\", \" In the end more people are seen jumping over a pole.\"]}, \"v_P0N68OQDhNs\": {\"duration\": 228.37, \"timestamps\": [[0, 31.97], [31.97, 85.64], [87.92, 106.19], [103.91, 110.76], [110.76, 137.02], [137.02, 181.55], [180.41, 214.67], [215.81, 228.37]], \"sentences\": [\"An athlete in black shirt gives instructions for a practice drill while standing on a large sporting field.\", \" The man sets up for an exercise and squats up and down for practice.\", \" The man jumps multiple times and goes further each jump.\", \" The man bends down and touches the ground while twisting.\", \" The man gives more instructions on a practice run while giving hand gestures.\", \" The man sets up on the edge of a line and jumps with one foot, then repeats.\", \" The man gives a final set of instructions while breathing heavy.\", \" A set of text is seen with information.\"]}, \"v_OdLcbH2H_zI\": {\"duration\": 111.53, \"timestamps\": [[0, 3.9], [5.58, 107.62], [27.88, 57.99], [59.67, 101.49], [102.05, 104.83]], \"sentences\": [\"An arrow graphic is seen and title text.\", \" A woman stands on a dark lit room holding an accordion and demonstrating how to play it.\", \" The woman begins to play a song pressing in the keys.\", \" The woman pauses to discuss then plays more of the song.\", \" The woman finishes and closes the accordion.\"]}, \"v_Mgvj2B6MyjI\": {\"duration\": 17.67, \"timestamps\": [[0, 17.67], [9.28, 17.67]], \"sentences\": [\"A girl is nervous on the edge of a diviing board.\", \"  She falls in after standing up and then squatting again.\"]}, \"v_eWG5T3TC_cg\": {\"duration\": 108.02000000000001, \"timestamps\": [[0, 76.69], [0, 46.99], [77.23, 108.02]], \"sentences\": [\"A marching band walk in the street playing instruments while a woman on front holds a flag.\", \" A boy on front the band holds a rode and raise and spin around.\", \" Then, band arrives and pass a traffic light.\"]}, \"v_lMbDEY-CVwE\": {\"duration\": 176.26, \"timestamps\": [[0, 18.51], [24.68, 88.13], [91.66, 144.54], [154.23, 176.26]], \"sentences\": [\"A man is indoors, as he picks a frisbee off the ground.\", \" He then uses several frisbees to train and display the stunts of a medium sized collie dog.\", \" The dog runs off screen and brings back the frisbees.\", \"The scene ends with the dog trying desperately to remove a frisbee from the seated man's hand.\"]}, \"v_AffS41W1Jgg\": {\"duration\": 58.21, \"timestamps\": [[0, 25.03], [18.92, 58.21]], \"sentences\": [\"A man is seen speaking to the camera and leads into him laying up wallpaper on the wall.\", \" He continues speaking to the camera while still spreading paper on the wall.\"]}, \"v_WlYhEPyLcBc\": {\"duration\": 90.0, \"timestamps\": [[0, 90], [21.6, 49.05]], \"sentences\": [\"Two couples play badminton in a court.\", \" A man enter in the court and goes to sit left the court with other person.\"]}, \"v_LYrqEz_vttQ\": {\"duration\": 142.69, \"timestamps\": [[2.14, 22.83], [26.4, 72.06], [78.48, 99.88], [109.87, 111.3]], \"sentences\": [\"A dog is sitting on an orange couch.\", \" A dog is sitting in a bath tub getting a bath.\", \" A person is drying the dog with a towel.\", \" The dog is getting blow dried with a hair dryer.\"]}, \"v_h61C_KfvG0Y\": {\"duration\": 125.99, \"timestamps\": [[0, 4.41], [4.41, 17.01], [17.64, 121.58], [122.21, 125.99]], \"sentences\": [\"The logo \\\"Weldy\\\" appears over a photo of welding tools.\", \" The words \\\"energy 1600\\\" and the Weldy website address appears.\", \" A man is working on a white rooftop with one of the Weldy tools.\", \" \\\"energy 1600\\\" and the website appears on screen again.\"]}, \"v_PeMJjLrDjhQ\": {\"duration\": 189.87, \"timestamps\": [[0, 52.21], [56.96, 134.81], [56.96, 122.47]], \"sentences\": [\"A woman is seen speaking to the camera while turning on a faucet.\", \" She then pumps soap off and scrubs her hands.\", \" She runs her hands under the sink and ends by drying her hands and walking out to put hand sanitizor on.\"]}, \"v_uOxKf-kNEyg\": {\"duration\": 72.7, \"timestamps\": [[0, 15.27], [17.45, 54.16], [55.62, 72.7]], \"sentences\": [\"A woman is using polish in a container to polish a black shoe.\", \" She talks to the camera as she works.\", \" Black polish is shown dripping onto her legs.\"]}, \"v_JyjONoyBr4Q\": {\"duration\": 172.34, \"timestamps\": [[20.68, 49.12], [49.12, 71.52], [71.52, 88.75], [88.75, 105.99], [105.99, 119.78], [119.78, 130.98], [130.98, 160.27], [160.27, 172.34]], \"sentences\": [\"There is a lady dog trainer dressed in a blue hoodie playing with a black and white dog in a park.\", \" She is throwing a Frisbee to the dog and makes the dog fetch it for her.\", \" The dog runs every time she throws the Frisbee at a distance and fetches it for her.\", \" The doh jumps high up to grab the Frisbee off her hand.\", \" He dog even jumps over the lady when she is laying on the ground.\", \" He continues to run and fetch the Frisbee for the lady as she throws multiple Frisbee.\", \" The same lady is now wearing an orange shirt and is throwing the Frisbee to the dog.\", \" The dog continues to jump and catch the Frisbee in his mouth.\"]}, \"v_qmOYKPkURiw\": {\"duration\": 34.16, \"timestamps\": [[0, 23.74], [23.06, 34.16]], \"sentences\": [\"A young boy is standing outside watching another person play their bag pipes.\", \"Several people walk by and a lady stops and throws money into the person's case.\"]}, \"v_35DlDj_hzvg\": {\"duration\": 10.73, \"timestamps\": [[0.27, 6.28], [4.61, 10.57]], \"sentences\": [\"A man is seen bending forward and holding onto a set of weights while gripping tightly.\", \" The man then lifts the weight over his end and throws it down in the end.\"]}, \"v_6-P9SRNbwac\": {\"duration\": 116.22, \"timestamps\": [[0, 116.22], [0, 13.36], [12.2, 13.95], [14.53, 90.65], [91.23, 116.22]], \"sentences\": [\"Two young friends are together on a sandy beach.\", \"  First the girl on the right speaks, and then her friend in a purple t-shirt speaks next.\", \"  She finishes by turning to her friend and they get up, grabbing hands, and exit the scene to the right.\", \"  Next we see them again seated on the sand facing each other as they begin to build something in the sand.\", \"  The focus is shifted to one girl, who speaks, and finishes by writing something in the sand.\"]}, \"v_1Om21fCH1sI\": {\"duration\": 30.35, \"timestamps\": [[0, 14.87], [11.68, 30.35]], \"sentences\": [\"Various clips are shown of people riding around on bikes as well as sitting on bikes ready to race.\", \" Several clips are shown of people up close as well as them riding around on bikes.\"]}, \"v_yiFKPKXevOU\": {\"duration\": 49.25, \"timestamps\": [[1.97, 13.79], [14.04, 44.08], [29.3, 37.68], [46.05, 49]], \"sentences\": [\"A man puts a wood upright on a tree stump.\", \" A guy is splitting wood into halves.\", \" A guy repeatedly tries to cut a wood.\", \" The credits of the video are shown.\"]}, \"v_zqXJkZgKmSk\": {\"duration\": 10.45, \"timestamps\": [[0, 2.56], [1.93, 5.8], [5.9, 7.42], [7.47, 10.45]], \"sentences\": [\"A ball flies through he air on a baseball field.\", \" The person with the camera takes off running.\", \" The runner stops on the home base and turns around.\", \" We see the people at the back of the field.\"]}, \"v_3pBldeB3uaE\": {\"duration\": 124.74, \"timestamps\": [[1.25, 53.01], [42.41, 95.42], [92.31, 120.37]], \"sentences\": [\"A large group of people are seen standing around a pool as well as people writing on paper and speaking to one another.\", \" More people are seen diving on a board and jumping off onto the side.\", \" Several people are seen watching on the side as the kids continue to dive.\"]}, \"v_O_bDLIcx5k0\": {\"duration\": 145.96, \"timestamps\": [[0, 27], [21.89, 145.96]], \"sentences\": [\"A drawing of airplanes and machineries are being use, then pictures of men and a woman.\", \" A man in blue shirt is brushing a paint to an airplane model, then he paint a different color to make the plane looks like a camouflage.\"]}, \"v_pOIJeK3YZr8\": {\"duration\": 238.7, \"timestamps\": [[0, 238.7], [19.1, 25.06], [75.19, 238.7]], \"sentences\": [\"A man is sitting next to several small trees.\", \" He pulls some leaves off of the trees.\", \" He takes scissors and cuts some leaves off the tree.\"]}, \"v_S5kuckj4Ud4\": {\"duration\": 230.04, \"timestamps\": [[0, 2.3], [2.3, 14.95], [14.95, 43.71], [44.86, 60.96], [63.26, 123.07], [125.37, 169.08], [138.02, 143.78], [172.53, 195.53], [196.69, 203.59], [207.04, 227.74], [227.74, 230.04]], \"sentences\": [\"We see a black title screen.\", \" We see are driving down the street then we see the man in the car.\", \" The man gets out and grabs flat tire supplies.\", \" The man sits in the car and thinks about how to change a tire.\", \" The guy loosens bolts, jacks the car up and takes off the flat.\", \" The guy then puts the spare tire on the car.\", \" We see the bolts up close in a line.\", \" The man puts the spare tire in the car and gets in the car.\", \" He makes a call and turns on the radio.\", \" The man makes a u-turn and leaves.\", \" We see the ending title.\"]}, \"v_LdAT5MEBkuQ\": {\"duration\": 143.5, \"timestamps\": [[4.31, 10.05], [10.76, 17.22], [17.94, 25.83], [27.27, 30.14], [30.85, 59.55], [60.27, 99.73], [100.45, 139.91]], \"sentences\": [\"A man water skiis at a river.\", \" A long haired man operates a boat and the boat drags a man water skiing across the water.\", \" A man in glasses speaks to the camera.\", \" A guy holding onto a rope attached to a boat water skiis.\", \" The man in the glasses appears again, speaking to the camera and points to a man water skiing on the river.\", \" The water skiier glides back and forth on the water of the river.\", \" The man in glasses talks about the water skiis.\"]}, \"v_0ys4fnsu9Jc\": {\"duration\": 64.53, \"timestamps\": [[0, 18.71], [14.52, 40.33], [40.01, 62.92]], \"sentences\": [\"A small child is seen standing on a trampoline and throwing a ball off into the distance.\", \" More kids are seen picking up balls and throwing them to the other side.\", \" More kids are seen throwing balls and playing dodgeball with one another.\"]}, \"v_VqZr2oZk4z4\": {\"duration\": 30.12, \"timestamps\": [[1.2, 16.41], [12.95, 29.06]], \"sentences\": [\"Various shots are shown of scuba divers moving along the water as well as people riding and riding boats.\", \" More clips are shown of people getting ready on land as well as swimming around the ocean.\"]}, \"v_mU3ujj4Z7lE\": {\"duration\": 56.43, \"timestamps\": [[0, 33.57], [25.39, 56.43]], \"sentences\": [\"A small dog is seen standing in snow and a person pushing snow with a shovel.\", \" The dog follows the person shoveling while biting at the shovel and barking at the camera man.\"]}, \"v_uEaxyzKonCY\": {\"duration\": 163.47, \"timestamps\": [[0, 163.47], [55.58, 163.47]], \"sentences\": [\"A group of people are seen on a tennis court with 4 men playing together.\", \" They continue playing the game back and fourth with each other whiles others play in the background.\"]}, \"v_krqxyYFHzBI\": {\"duration\": 63.69, \"timestamps\": [[0, 28.66], [28.66, 33.76], [56.05, 61.15]], \"sentences\": [\"People start fighting outside on the ground.\", \" They knock a man onto the ground.\", \" They lift him up in the air and slam him back on the ground.\"]}, \"v_ivkkCEynzPs\": {\"duration\": 76.39, \"timestamps\": [[0, 13.37], [13.37, 76.39]], \"sentences\": [\"A man wears a welding helmet and holds a rod.\", \" Then, the man use the road to held a piece of metal on the floor.\"]}, \"v_afrMWrFkgDg\": {\"duration\": 80.74, \"timestamps\": [[0, 6.86], [10.09, 68.63], [29.47, 45.21], [60.15, 66.2], [74.68, 76.7]], \"sentences\": [\"We see a girl kick and sit down.\", \" A boy joins her and they eat ice cream.\", \" The boy puts his cone in front of the camera.\", \" The boy licks his ice cream wildly.\", \" A boy throws something at the boy with ice cream.\"]}, \"v_V-6nF6U6rfI\": {\"duration\": 93.21000000000001, \"timestamps\": [[0.93, 47.53], [33.55, 88.54]], \"sentences\": [\"A gymnast is seen standing ready and holding her arms up that lead into her climbing on a beam and performing a gymnastics routine on the beam.\", \" The girl performs several jumps and tricks that ends with her jumping into a mat and holding her arms up.\"]}, \"v_HJws_Cwu3qE\": {\"duration\": 22.83, \"timestamps\": [[0.68, 12.1], [6.51, 21.91]], \"sentences\": [\"Two men are seen standing around a room and begin hitting a ball while others watch.\", \" More men appear in the room and are seen chasing around a tennis ball and hitting it.\"]}, \"v_7VWp-Dfvqkg\": {\"duration\": 186.42, \"timestamps\": [[1.86, 38.22], [51.27, 137.95], [129.56, 178.03]], \"sentences\": [\"A man is seen speaking into a microphone with another man on stage.\", \" One man then leads into playing harmonica on the stage while others watch on the side.\", \" The man continues playing while others walk in and out of frame as well as play.\"]}, \"v_dgXPoqHrKRM\": {\"duration\": 153.0, \"timestamps\": [[5.35, 21.42], [22.95, 100.98], [86.44, 139.99], [143.05, 153]], \"sentences\": [\"Skiers walk and stand on skis at the bottom of the hill at of a ski resort.\", \" Kids ride on inflatable tubes down lanes on a ski slope.\", \" Snowboarders and skiers ride down ski runs while other groups sit on the ski lift.\", \" A group hangs onto a tow rope on inter tubes and throws snowballs.\"]}, \"v_Zsaa3XXIAhk\": {\"duration\": 52.85, \"timestamps\": [[0, 52.06], [29.86, 52.06]], \"sentences\": [\"A man plays a song on an acoustic guitar in a studio.\", \" The man resets his hands and finishes the song.\"]}, \"v_Nb87GFizCB8\": {\"duration\": 483.41, \"timestamps\": [[0, 77.35], [82.18, 374.64], [389.14, 483.41]], \"sentences\": [\"A woman walks through a snowy parking lot, looking for her car.\", \" She is seen using a mop in an attempt to wipe the snow off her car.\", \" Snow begins to fall as she continues cleaning.\"]}, \"v_OqoUemFpetc\": {\"duration\": 140.27, \"timestamps\": [[0, 44.19], [44.19, 89.07], [90.48, 138.17]], \"sentences\": [\"Two teams playing throwing balls to hit an opponent.\", \" The players hold two balls and throw each other to hit and opponent.\", \" A boy holding a ball throw to another player and the opponents also throws ball.\"]}, \"v_oXPgInpuHDA\": {\"duration\": 82.55, \"timestamps\": [[0, 73.47], [57.78, 61.08], [73.47, 82.55]], \"sentences\": [\"A group of cheerleaders perform in the middle of a basketball court while an audience watches.\", \" A man walks through the bottom of the frame.\", \" The cheerleaders finish, and a group of younger cheerleaders replace them.\"]}, \"v_8gKV8f3qSOg\": {\"duration\": 86.05, \"timestamps\": [[0, 44.75], [45.18, 71.42], [72.72, 86.05]], \"sentences\": [\"A woman in a purple dress is seated, speaking to the camera.\", \" She is shown massaging cream into her face, then rinsing it off with water and patting dry with a towel.\", \" She then speaks to the camera again.\"]}, \"v_RJpWgi0EaUE\": {\"duration\": 210.03, \"timestamps\": [[0, 207.92], [8.4, 27.3], [16.8, 19.95], [28.35, 33.6], [40.95, 45.16], [74.56, 82.96], [82.96, 91.36], [124.96, 128.12], [128.12, 131.27], [151.22, 153.32], [154.37, 155.42], [156.47, 158.57], [158.57, 159.62], [159.62, 161.72], [159.62, 164.87], [169.07, 172.22], [172.22, 177.47], [172.22, 175.37], [198.47, 199.52], [203.72, 207.92]], \"sentences\": [\"Three individuals sit on stage and have a conversation.\", \" Two boys dance in the same fashion.\", \"  An image of a man is incorporated into the screen with the dancers.\", \" The man cover his face with his hand.\", \" The man and woman gesture the dancers hand movements.\", \" This man gets off his seat and knees.\", \" The man gets of his knees and sits back down.\", \" The man and female touch hands while sitting.\", \" The man claps his hands together.\", \" The man waves at a man backstage to join them.\", \" A standing man who is backstage claps.\", \" The two boy dancers are shown extending one hand.\", \" A man walks from backstage.\", \" The man shake hands and hugs one of the man on stage.\", \" The female stands and also hugs the man.\", \" A man stand and then sits.\", \" The man in a black suit dances and then sits.\", \" The man in a brown suit returns to the backstage area.\", \" The man is shown while backstage.\", \" The show's name is shown.\"]}, \"v_4Y94njisJd0\": {\"duration\": 48.76, \"timestamps\": [[0, 1.95], [1.95, 3.66], [3.66, 6.1], [6.1, 25.11], [25.11, 27.31], [27.31, 29.99], [29.99, 48.76]], \"sentences\": [\"A young man in a black shirt hits a small ball against the wall.\", \" A man in a red shirt hands the ball to him with his racket.\", \" The young man hits the ball against the wall again.\", \" A group of men walk around trying to hit the ball.\", \" The young man in the black shirt hands the ball to the man in the red shirt.\", \" The man in the red shirt hits the ball against the wall.\", \" The group of men run around the court, swinging their rackets and trying to catch the ball.\"]}, \"v_whwserG3XGc\": {\"duration\": 128.71, \"timestamps\": [[0, 9.01], [9.01, 15.45], [15.45, 100.39]], \"sentences\": [\"team wearing yellow uniform are running in a field.\", \" photographers are standing in he ield taking pictures of the yellow and blue team.\", \" teams start to pla lacrosse in a big gren grassy field.\"]}, \"v_bXEG4X7pRds\": {\"duration\": 129.73, \"timestamps\": [[1.3, 5.84], [5.84, 12.32], [17.51, 25.3], [35.68, 47.35], [53.19, 58.38], [58.38, 78.49], [80.43, 83.68], [83.68, 100.54], [99.24, 110.27], [111.57, 119.35], [120, 129.73]], \"sentences\": [\"The lady picks up a brush and scissors.\", \" She sweeps the base of the stand.\", \" She brushes the dogs right leg.\", \" She then clips the hair on this paw.\", \" She brushes the fur upwards.\", \" She then clips the fur on the paw again.\", \" She brushes his paw again.\", \" She then clips the fur on the paw another time.\", \" She then combs the cut hair off the paw.\", \" She clips the hair off the back of the paw.\", \" Fade to black, and the credits occur.\"]}, \"v_fRLDhkPqrTE\": {\"duration\": 36.14, \"timestamps\": [[0, 0.54], [0, 36.14], [16.26, 32.53]], \"sentences\": [\"A lady looks behind her with delight.\", \" The lady plays a black piano.\", \" The lady looks to her side.\"]}, \"v_qwBFQf5STBA\": {\"duration\": 229.46, \"timestamps\": [[0, 13.77], [13.77, 16.06], [16.06, 47.04], [47.04, 59.66], [59.66, 114.73], [114.73, 118.17], [118.17, 136.53], [136.53, 229.46]], \"sentences\": [\"Colorful zebra nails are shown and a colorful screen appears with colorful text that say's \\\"Acid Zebra Nail Art by professionalDQ\\\", and then followed by a lot of other words that include a list of supplies needed.\", \" A still shot of six different solid colors of nail polish are shown and some are rounded bottles and some are square bottles.\", \"The demonstration begins and it shows someone is sponge painting various colors onto a long white painted nail.\", \"A colorful screen briefly appears with colorful text and it say's \\\"Then added a coat of sparkle flakes Awesome\\\",shows the bottle of sparkle nail polish, then more text appears on a colorful screen.\", \" A black paint bottle is shown then the person paints a thin black line unto the sparkly and multi colored nail and paints them in the pattern of zebra stripes.\", \" A colorful screen along with colorful text appears and it has instructions to \\\"Finish with topcoat And now you're an invincible Nyan Zebra!!\\\".\", \"The finished nails are modeled and shown at different angles and a colorful screen with colorful letters appear and it say's \\\"Don't forget your tail!\\\" and then it shows the person holding a furry pink and black, long tail.\", \" A colorful screen with colorful text appears and it say's \\\"Thanks for watching SWOOSH!\\\" and more still shots of the finished colorful zebra nails are displayed in different positions and angles.\"]}, \"v_uZk7ciOa5aE\": {\"duration\": 126.8, \"timestamps\": [[0, 25.99], [26.63, 83.05], [83.05, 126.8]], \"sentences\": [\"A male and female dance duo are in the middle of a ballroom floor surrounded by people preparing to dance; however,the music doesn't start and they are delayed.\", \"They then begin to dance and shuffle their feet across the tile and spin each other around.\", \"The both then do a split,finish the routine and go out to mingle with the crowd.\"]}, \"v_wHxB-5jKjbQ\": {\"duration\": 196.76, \"timestamps\": [[3.94, 36.4], [37.38, 73.78], [73.78, 81.65], [81.65, 132.81], [132.81, 172.16], [66.9, 67.88], [172.16, 191.84]], \"sentences\": [\"People sail in canoes rowing with a paddle in a choppy river.\", \" Two men in a canoe sail near the bank of the river, but then sail in the river.\", \" The men spins the canoe an pass near an arch of the canoe course.\", \" The two men cross a person alone in a canoe.\", \" The men continue sailing down the river passing between arches.\", \" Men in a canoes are on the border of the river.\", \" After, continue sailing straight in the river.\"]}, \"v_PLvg8riZZVw\": {\"duration\": 159.03, \"timestamps\": [[0, 21.47], [21.47, 40.55], [40.55, 42.14], [42.14, 70.77], [70.77, 120.07], [120.07, 159.03]], \"sentences\": [\"A man is holding a fishing pole over an ice fishing hole.\", \" He gently tries to pull up and then reel the fishing line out of the hole.\", \" He dips and lowers while taking a break.\", \" He tries to reel the line out again.\", \" He removes his gloves and gets to his knees and back up as he tries to pull the line out of the hole repeatedly.\", \" He steps around the hole and continually gently pulls the line from the water as another man pulls the fish out of the water.\"]}, \"v_Ktxr4ZiqO3o\": {\"duration\": 121.53, \"timestamps\": [[4.25, 41.93], [40.71, 113.63], [113.63, 121.53]], \"sentences\": [\"A person is shaving their beard with an electric shaver.\", \" They are slowly moving the shaver up their chin.\", \" Words are shown on the screen.\"]}, \"v_hjDGz9OhwvM\": {\"duration\": 129.45, \"timestamps\": [[1.94, 34.3], [27.18, 106.15], [107.45, 129.45]], \"sentences\": [\"A young girl is showing sitting on a floor talking to the camera and pretending to iron.\", \" She prays the bottle of water onto the clothes and irons doing this several times.\", \" She flips over the shirt to continue ironing and looks off into the distance.\"]}, \"v_oXqzXQRqAhI\": {\"duration\": 55.33, \"timestamps\": [[0, 50.91], [3.87, 44.82], [44.82, 55.33]], \"sentences\": [\"Two kids are seen sitting in a bath tub with one holding a bucket and the holding smiling and laughing.\", \" The boy pours the bucket over his face and a hand gives him a towel while the girl also splashes her face.\", \" The sprays water again with the bucket and rubs his eyes.\"]}, \"v_HaprTZfP4sQ\": {\"duration\": 117.31, \"timestamps\": [[0, 6.45], [9.38, 22.29], [24.05, 104.4], [105.58, 117.31]], \"sentences\": [\"A gold ornament is shown hanging from a christmas tree.\", \" Two women are on the floor, wrapping presents.\", \" They cut the paper and tape it around boxes before adding bows.\", \" We then see the completed tree, adorned with a ring of wrapped presents at the base.\"]}, \"v_sanasW2azw4\": {\"duration\": 125.44, \"timestamps\": [[0, 42.65], [41.39, 109.13], [117.28, 125.44]], \"sentences\": [\"A young boy wearing sunglasses is shown pushing a long a lawn mower across a lawn.\", \" The camera continuously follows him as he moves back and fourth with the mower on the lawn.\", \" Finally a picture of him sleeping on the couch is shown.\"]}, \"v_zxOcSuLSrU4\": {\"duration\": 39.36, \"timestamps\": [[0, 39.36], [21.45, 39.36]], \"sentences\": [\"A woman is seen pushing a lawn mower along some tall grass while moving back and fourth.\", \" The woman continues pushing the machine around the yard and turns her back towards the camera to mow the back.\"]}, \"v_qcV3JtJDoV8\": {\"duration\": 209.16, \"timestamps\": [[4.18, 189.29], [60.66, 77.39], [179.87, 203.93]], \"sentences\": [\"A person is skiing down a hill of snow.\", \" They pass a group of people snowboarding.\", \" They get to the bottom of the hill and stop in front of a small building.\"]}, \"v_73ZdOEJcsUw\": {\"duration\": 103.75, \"timestamps\": [[0, 102.19], [75.22, 93.37], [97, 103.75]], \"sentences\": [\"An old lady knits with a red needle and red wool.\", \"  An old lady stops knitting and talks continuously.\", \"  The old lady knits again and examines her creation.\"]}, \"v_WSpfyZuoi3A\": {\"duration\": 89.68, \"timestamps\": [[0, 32.28], [32.28, 55.15], [55.6, 89.68]], \"sentences\": [\"A little girl sled in an inflatable boat hold to a string on front a man, suddenly she falls in a hollow.\", \" People carry sled boats and the little girl is in a sled boat.\", \" After a group of people sled do down the hill until meet other persons.\"]}, \"v_fevlUD03yCM\": {\"duration\": 87.35, \"timestamps\": [[0, 6.11], [6.55, 25.33], [25.77, 42.37], [42.8, 87.35]], \"sentences\": [\"A young girl is applying sunscreen to her face.\", \" A beach is crowded with people while a motoroboat speeds across the water.\", \"  A doctor from the Cleveland Clinic named Jennifer Lucas speaks.\", \" People apply sunblock to each other outdoors.\"]}, \"v_aEopPs2eY-Q\": {\"duration\": 217.97, \"timestamps\": [[0, 33.78], [33.78, 86.1], [86.1, 154.76], [154.76, 217.97]], \"sentences\": [\"A girl names Ashley dressed in all purple walks up slowly, then it turns to nature view of dirt and flowers.\", \" Ashley comes out getting dressed in her motor cross gear and slowly walks her bike out.\", \" She goes out and starts riding through the dirt, catching some air really high after hitting little mountain hills.\", \" She speaks in sign language with another rider for a little but before returning toe the dirt to ride some more.\"]}, \"v_YMsyF-g2TqE\": {\"duration\": 193.98, \"timestamps\": [[0, 4.85], [4.85, 7.76], [7.76, 169.73], [150.33, 153.24], [154.21, 160.03], [170.7, 187.19], [188.16, 193.98]], \"sentences\": [\"We see a carved pumpkin and a title screen.\", \" A man draws a face on a pumpkin.\", \" A man then carves a pumpkin into a snarling old man.\", \" The man takes an image of the pumpkin with a phone.\", \" The man tilts the pumpkin back into the light.\", \" We see still shots of the carved pumpkin.\", \" We see the ending screen with a website.\"]}, \"v_drarkco9LfQ\": {\"duration\": 71.56, \"timestamps\": [[1.43, 9.66], [9.66, 32.2], [32.2, 50.81], [50.45, 71.56]], \"sentences\": [\"A man is about to do an arm wrestling match with an older gentlemen.\", \" The older man is struggling from the faces that he is making.\", \" The camera's are getting all in their faces basically.\", \" The older man wins the match and the referees and everyone start to talk.\"]}, \"v_2Dlfwnvz76Q\": {\"duration\": 77.53, \"timestamps\": [[0, 77.53], [1.16, 77.53], [64.74, 77.53]], \"sentences\": [\"A woman is sitting at a desk.\", \" A man sitting in front of her is playing a harmonica.\", \" The woman is playing with her hair.\"]}, \"v_USwMjvs45MU\": {\"duration\": 122.37, \"timestamps\": [[0, 22.03], [21.41, 99.73], [100.34, 122.37]], \"sentences\": [\"A large group of people are seen in various areas of a building while some are signing up for a race.\", \" People sit around a track and leads into small children performing several long jumps.\", \" An older man announces awards in the end and the winners stand by and get their ribbons.\"]}, \"v_Z7zc7zs5Zj8\": {\"duration\": 236.86, \"timestamps\": [[0, 116.06], [65.14, 236.86]], \"sentences\": [\"A woman is seen walking down a set of stairs and begins performing a routine in front of a large audience.\", \" The woman continues dancing around the stage while a group of people play instruments behind her.\"]}, \"v_j5SX_9JKtfs\": {\"duration\": 196.47, \"timestamps\": [[0, 63.85], [64.83, 108.06], [109.04, 196.47]], \"sentences\": [\"cleaning materials sit next to a double sink, then a person puts a bottle with blue liquid next to the cleaning materials.\", \" After, the person pours a little bit of blue liquid in the sink and scrubs the sinks with a sponge.\", \" After, the person rinse the sinks with water and dries with a cloth.\"]}, \"v_CaDoaqs_5jE\": {\"duration\": 222.98, \"timestamps\": [[2.23, 108.15], [59.09, 209.6]], \"sentences\": [\"A camera pans all around a frozen lake with trees and leads into a group of people fishing around a hole.\", \" The men continue to sit around the holes with a pole speaking to one another and wandering around the ice.\"]}, \"v_cMeMbnjX-pg\": {\"duration\": 28.14, \"timestamps\": [[0, 3.38], [3.38, 14.63], [16.6, 28.14]], \"sentences\": [\"A man is skating on an indoor rink with a sweeper as people watch.\", \" He cleans the floor as people try to talk to him.\", \" A man falls and slides, and another grabs him in a fight.\"]}, \"v_JFupxdGxgPQ\": {\"duration\": 45.51, \"timestamps\": [[0, 45.51], [0.23, 45.51], [6.37, 8.87], [9.1, 12.06], [11.38, 17.75], [17.75, 29.13], [40.96, 45.51]], \"sentences\": [\"Several men stand in a dirt arena.\", \" Several other men sit on horses.\", \" A gate opens and a calf runs out closely followed by a man on a horse.\", \" The man on the horse throws a lasso around the calf's neck yanking the calf back to land on it's back.\", \" The man jumps from his horse and runs over and ties up the calf.\", \" The man gets up and walks back to get on his horse.\", \" Several men run over to free the calf as it gets up and runs away.\"]}, \"v_8L1xXJvKuv4\": {\"duration\": 76.7, \"timestamps\": [[0.77, 73.24], [16.49, 19.94], [20.71, 73.24]], \"sentences\": [\"A group of people are swimming in an indoor pool with other swimmers standing on the side of the pool watching.\", \"  The children on the sidelines are jumping up and down with swim caps and swimsuits on as they watch the people who are already in the pool swim.\", \"  A person walks by the camera as the shaky camera focuses on the people who are already in the pool swimming.\"]}, \"v_AkeJ-lJLNkw\": {\"duration\": 193.38, \"timestamps\": [[0, 85.09], [61.88, 184.67]], \"sentences\": [\"Two people are seen performing various kicks and tricks around one another while a large group of people watch on the sides.\", \" More continue kicking around one another in the middle of the circle while others watch and react on the side.\"]}, \"v_f00gW6PbWDE\": {\"duration\": 48.02, \"timestamps\": [[0, 1.44], [1.44, 10.56], [10.56, 48.02]], \"sentences\": [\"A young man wearing blue jeans and a blue and white plaid long sleeved button up shirt is sitting on the ground with his legs wide opened on a board that has numbers on it in a triangular shape.\", \"There are two elderly women holding sticks, and they are getting ready to hit the disks across the board into the man's crotch while 5 men are standing alongside the board watching and cringing.\", \"The woman shoves the disk across the board and it hits the man in the crotch, the second woman shoves the disc across the board and it hits the man in the crotch very hard and the guys all laugh and gringe then help the guy up.\"]}, \"v_NfVL1o5HMEo\": {\"duration\": 66.67, \"timestamps\": [[0, 11], [10.67, 54.67], [53.33, 66.67]], \"sentences\": [\"A gymnast is seen rubbing his hands together and walks over to a set of uneven bars and raises his hands up.\", \" The man performs a routine on the bars while hundreds of people watch on the sidelines.\", \" He jumps down, waves his arms in the air, and walks over to high five his coach afterwards.\"]}, \"v_x0cSfzhQRAs\": {\"duration\": 28.91, \"timestamps\": [[0.14, 28.19], [0.87, 19.08], [19.8, 28.19]], \"sentences\": [\"A man walks across a rope suspended between two mountains high in the air using his arms for balance.\", \"   A man walks across a suspended rope high in the air, losing balance at one point and holding on to the rope with his hands and feet wrapped around the rope.\", \"  The man then is able to hoist himself back enough on the rope to sit on it with the rope between his legs.\"]}, \"v_NqYEX8tUjYg\": {\"duration\": 216.53, \"timestamps\": [[0, 53.05], [51.97, 156.98], [153.73, 208.95]], \"sentences\": [\"A person is seen performing a trick on a snowboard followed by more a woman speaking to the camera.\", \" Several more clips are shown of people riding snowboards and performing tricks on a board.\", \" More people are seen riding on a board and speaking to the camera.\"]}, \"v_DzdNjXensv0\": {\"duration\": 136.65, \"timestamps\": [[0, 41], [46.46, 119.57], [123.67, 136.65]], \"sentences\": [\"A group of people are gathered outdoors at a market.\", \" People walk by looking at all the wares.\", \" A dog appears, as people continue to bustle.\"]}, \"v_6S9NCdsUxfE\": {\"duration\": 49.97, \"timestamps\": [[0, 19.74], [18.99, 49.97]], \"sentences\": [\"A man is seen waxing a set of skis while looking back to speak to the camera.\", \" The man continues moving his arms up and down the skis while looking up to speak at the camera every once and a while.\"]}, \"v_uM6ErLnAGW4\": {\"duration\": 193.26, \"timestamps\": [[0, 2.9], [3.87, 44.45], [45.42, 88.9], [90.83, 103.39], [104.36, 123.69], [125.62, 155.57], [156.54, 172.97], [174.9, 177.8], [179.73, 193.26]], \"sentences\": [\"Carved pepper jack-o-lanterns are seen prepared.\", \" A woman uses a knife to carve out the center and facial features of a bell pepper then places in a dish.\", \" The woman adds chopped vegetables, salsa, and eggs to a large bowl.\", \" The woman uses a spatula to mix everything together.\", \" A spoon is used to add ingredients into the hollow bell peppers.\", \" Cheese is added to the tops of the bell peppers and the tops are placed back on them.\", \" The bell peppers are removed from the dish and put on a plate.\", \" the finished bell peppers are seen on the cutting board.\", \" A woman adds ingredients to a casserole dish.\"]}, \"v_Kz6I9Zx5E_0\": {\"duration\": 177.54, \"timestamps\": [[0, 18.64], [18.64, 46.16], [46.16, 123.39], [123.39, 149.13], [154.46, 177.54]], \"sentences\": [\"A team of young cheerleaders are in a gym doing toss ups and flips.\", \"The owner then comes along and begins to talk as the video goes over the materials each person will need.\", \"After,three girls are shown standing in a straddle position and begins to clap and lunge with their right hand to the side and go down.\", \"The girls continue to do the cheer and when they are done, the owner joins in.\", \"Once the coach disappears,the girls continue the cheer and the video ends.\"]}, \"v_fkgojk18K0E\": {\"duration\": 96.09, \"timestamps\": [[0, 6.25], [10.09, 16.81], [24.02, 32.19], [31.71, 59.57], [59.57, 92.72], [92.24, 96.09]], \"sentences\": [\"We see a lady in a dancing costume.\", \" She points at her hips and waist.\", \" She begins to belly dance slowly.\", \" She picks up speed and spins her hands.\", \" She goes slower then goes fast again.\", \" The lady finishes her dance, stops and bows.\"]}, \"v_8slE1UskRS4\": {\"duration\": 216.41, \"timestamps\": [[0, 10.82], [10.82, 30.3], [30.3, 216.41]], \"sentences\": [\"Three people are standing outside under a very large concrete gazebo and briefly the white word \\\"MARANHAO\\\" is on the right side of the screen.\", \"A man with an instrument starts walking towards the three people and he begins to adjust his instrument.\", \" Two of the people start dancing, the woman starts singing, then all the people are now holding instruments and are smiling as they start playing their instruments, dancing, and singing together.\"]}, \"v_zwQYVBQnn4o\": {\"duration\": 162.22, \"timestamps\": [[0, 22.71], [41.36, 59.21], [41.36, 108.68], [41.36, 146.8]], \"sentences\": [\"This man is shown lifting a very heavy weight in the beginning of the video.\", \" Then another man does the same thing and he lifts it successfully.\", \" When he's done, someone comes on stage and gives him a hug.\", \" He is then given a medal.\"]}, \"v_v8Dqgro-f-U\": {\"duration\": 159.29, \"timestamps\": [[0, 27.88], [28.67, 93.98], [94.78, 109.11], [110.71, 145.75], [146.55, 156.1], [156.9, 159.29]], \"sentences\": [\"We see a gym filled with people watching as people jump rope.\", \" We see the outside of the building and a man is interviewed with shots of the inside cut in.\", \" We watch  girl perform see ladies serving snacks and watch another person perform.\", \" We see girls interviewed outside the main room and scenes from inside the gym.\", \" We see people on bleachers and kids jumping.\", \" We then see the blue ending screen.\"]}, \"v_DCKwTvFrA6Q\": {\"duration\": 185.48, \"timestamps\": [[0, 19.48], [19.48, 185.48]], \"sentences\": [\"The woman introduces herself in the beginning of the video and then different pictures are shown.\", \" She also talks about the fun you can have in Chicago and her big production of being the black widow.\"]}, \"v_5Qav3tLfiZA\": {\"duration\": 6.69, \"timestamps\": [[0, 6.69], [1.71, 6.25], [2.34, 6.25]], \"sentences\": [\"The man in dark blue shirt is kneeling with one knee.\", \" The man is dribbling the blue ball.\", \" The man is dribbling the ball on his side.\"]}, \"v_5sUctxaAFrw\": {\"duration\": 60.14, \"timestamps\": [[0.6, 30.97], [19.55, 58.04]], \"sentences\": [\"Several pictures are shown in the beginning of old roofs as well as new roofs and people working on top of these roofs.\", \" More shots are shown of people spraying down the roofs and looking away from the camera.\"]}, \"v_ZL7xefcDWYc\": {\"duration\": 51.41, \"timestamps\": [[0, 33.67], [33.67, 51.41]], \"sentences\": [\"A gymnast is performing on the bars while a crowds is watching.\", \" At the end, the gymnast flips around the bars and jump on the mattress.\"]}, \"v_R8RrOgz9hj8\": {\"duration\": 186.85, \"timestamps\": [[3.74, 86.89], [71.94, 174.71]], \"sentences\": [\"A large group of people are seen riding down multiple rafts down a rigorous river while paddling continuously.\", \"  Several shots are shown of the people riding down while holding their sticks up into the air and ends with people stopping to eat.\"]}, \"v_zVMDHCnT-d4\": {\"duration\": 61.6, \"timestamps\": [[0, 4.62], [5.54, 17.86], [19.1, 52.05], [52.36, 61.6]], \"sentences\": [\"Two men are seated in a room in front of a robotic arm.\", \" One of the men is using a controller to make the arm pick up a bottle.\", \" The arm brings the bottle to the man's face, so he can take a drink.\", \" Then the robot returns the bottle to the table.\"]}, \"v_0PLaN0hmMDY\": {\"duration\": 234.73, \"timestamps\": [[1.17, 18.78], [19.95, 66.9], [66.9, 137.32], [138.49, 226.52]], \"sentences\": [\"A person holds a ring in a small box.\", \" Then, the man wraps the box with gift paper.\", \" After, the man tries to find the end of a scotch tape roll, but he can not find it.\", \" The man cuts the excess of paper and put take on the gift.\"]}, \"v_l3k_7ydV74A\": {\"duration\": 8.96, \"timestamps\": [[0.09, 8.96], [0.22, 0.85], [0.9, 3.63], [3.41, 8.47]], \"sentences\": [\"Four men perform a wrestling stunt in costume while standing on an elevated, lit, stage in front of a seated audience.\", \" Two men in black lift one man in a blue shiny outfit, up, on their shoulders.\", \"  The two men in black place the man in blue's legs around the neck of another man, the biggest man on the stage, who is also dressed in black.\", \"  The large man in black then takes the man in blue and slams him down, off the stage and  onto a table next to the stage, at which point the man lands with a force that breaks the table in two causing the man to fall to the floor under the table.\"]}, \"v_j82E082KJSw\": {\"duration\": 231.11, \"timestamps\": [[0, 226.49], [16.18, 54.31], [25.42, 54.31], [55.47, 68.18], [72.8, 83.2], [85.51, 139.82], [137.51, 221.86]], \"sentences\": [\"There are two teams playing volley ball in an indoor stadium in front of a large number of spectators.\", \" The green and yellow team is playing against the red team.\", \" The players dive up high to throw the ball across the net to their opposing team.\", \" Then the green and yellow team plays against the blue team.\", \" The red team is back to play with the green and yellow team.\", \" Then the blue team returns to play against the green and yellow team.\", \" The volley ball game continues as the red team and blue team alternately play with their opponents.\"]}, \"v_d6uMS_ZgMg4\": {\"duration\": 110.67, \"timestamps\": [[1.11, 40.95], [21.58, 85.21], [80.79, 106.79]], \"sentences\": [\"A camera pans all around a piece of exercise equipment followed by a woman riding on it.\", \" A person is seen adjusting the settings of the bike as well as riding around and drinking water.\", \" More shots are shown of the woman adjusting the machine as well as rolling it away and continuing to ride.\"]}, \"v_QESBvmN1hcM\": {\"duration\": 114.6, \"timestamps\": [[1.15, 64.18], [28.65, 109.45]], \"sentences\": [\"A small group of people are seen swimming around a pool and lead into several clips of people playing the game as well as celebrating.\", \" Various people are then seen speaking to the camera followed by more clips of the game being shown and people celebrating.\"]}, \"v_yzmPtZyuo4s\": {\"duration\": 68.56, \"timestamps\": [[0, 16.8], [16.11, 43.88], [43.19, 68.56]], \"sentences\": [\"An African American male athlete is walking  preparing himself to run.\", \"The male then  begins to run from an angle towards the mat and does a high jump clearing the bar.\", \"A replay is shown and the crowd begins to cheer for him.\"]}, \"v_Z9pWpZK4k2M\": {\"duration\": 228.44, \"timestamps\": [[0, 70.82], [71.96, 161.05], [161.05, 228.44]], \"sentences\": [\"Two men, a woman, and a toddler are walking down the road but all of the adults have on Kangaroo shoes.\", \"People continue to walk pass them and the two males begin jumping extremely high as the lady walks away with the child.\", \"The four individuals then move in front of a building and start hoping around then eventually to a set of steps in what looks to be a court yard.\"]}, \"v_-V00wKlFJA0\": {\"duration\": 92.72, \"timestamps\": [[0.46, 30.13], [31.99, 89.47]], \"sentences\": [\"A man is seen standing in a garage and proceeds to play a set of bagpipes.\", \" The man continues playing the instrument while moving his hands around and stops in the end to turn off the camera.\"]}, \"v_bVOD0M4LCEY\": {\"duration\": 122.33, \"timestamps\": [[0, 55.05], [54.44, 93.58], [94.81, 122.33]], \"sentences\": [\"Several pairs of people are out in the desert holding a selfie stick as they travel around on camels.\", \"As they continue,some people come around and begin to film the people with their own camera.\", \"Now,a line of people are in the sand just standing around watching them as the people on the camel begin to talk back to them.\"]}, \"v_9-XGzUTSsuI\": {\"duration\": 91.02, \"timestamps\": [[0, 5.01], [5.01, 19.11], [19.11, 83.29], [83.29, 91.02]], \"sentences\": [\"A white screen appears and green letters appear in the middle of the screen and read \\\"eHow\\\"and changes to a blue screen that has a large white word that reads \\\"health\\\" under a small white square that contains the green eHow.\", \"A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he's a Personal Trainer.\", \"While talking the man is also doing arm and leg movements and the camera is zoomed out to show his whole body.\", \"When the man is done the same blue screen from the beginning appears and ends with the same white screen with the green eHow written in the middle.\"]}, \"v_paY7wXmzcTQ\": {\"duration\": 53.96, \"timestamps\": [[0, 13.49], [11.6, 41.55], [33.73, 52.08]], \"sentences\": [\"A person is seen standing on a pair of skis while others move around an area.\", \" One person sits on a tube while others walk from behind.\", \" A person then kicks the person n the tube down the hill.\"]}, \"v_aeEMrTpNUss\": {\"duration\": 56.15, \"timestamps\": [[1.4, 30.32], [20.49, 54.74]], \"sentences\": [\"A man steps up to a set of uneven bars while a man does flips behind him and begins performing a gymnastics routine.\", \" The man flips and spins himself around on the bars and ends by jumping down and waving his hands up.\"]}, \"v_FFZOmzFc_us\": {\"duration\": 12.68, \"timestamps\": [[0.19, 3.49], [3.61, 8.88], [7.73, 12.49]], \"sentences\": [\"A man is seen wearing an apron in front of sink stacked with many dishes.\", \" The man begins washing the dishes in a quick motion and throwing them into a pile.\", \" The man continues washing the dishes while looking back to the camera.\"]}, \"v_n1LmL6_vxKs\": {\"duration\": 21.41, \"timestamps\": [[0, 5.99], [5.03, 14.77], [15.52, 20.77]], \"sentences\": [\"A man is seen bending down before a large weight while looking off into the distance.\", \" He then picks the weight up over his head.\", \" Finally he throws the weight down on the floor.\"]}, \"v_PAF5AIQNXhs\": {\"duration\": 68.8, \"timestamps\": [[0, 7.22], [9.98, 52.63], [53.67, 68.8]], \"sentences\": [\"A baby is seated in a swing, rocking gently.\", \" A little girl is seen swinging herself back and forth.\", \" Then a toddler and baby look at each other as they continue to lightly swing.\"]}, \"v_2L9pp85KvbQ\": {\"duration\": 73.96000000000001, \"timestamps\": [[0, 9.61], [9.61, 35.13], [35.13, 55.84], [55.84, 73.96]], \"sentences\": [\"A man has a hookah in his mouth and he is inhaling smoke for a while.\", \" He takes the hookah out of his mouth and exhales letting out a bunch of smoke.\", \" I think he is trying to make O's with the smoke but he doesn't know how.\", \" He keeps inhaling and continues to try blowing out the smoke.\"]}, \"v_Wzpyu5NEqZ4\": {\"duration\": 202.32, \"timestamps\": [[33.38, 54.63], [56.65, 67.78], [75.87, 103.18], [109.25, 114.31], [122.4, 139.6], [167.92, 177.03], [180.06, 181.07]], \"sentences\": [\"Men are playing wall ball in a room against each other.\", \" A man in a red shirt and glasses is talking.\", \" A man in a black shirt talks to a man in a red shirt.\", \" Papers are being shown on the screen.\", \" The man continues to talk to the microphone.\", \" A man in a black shirt is talking.\", \" The men are playing more wall ball.\"]}, \"v_UCBAyJpXuCw\": {\"duration\": 144.73, \"timestamps\": [[0, 144.73], [11.58, 68.02], [71.64, 78.15]], \"sentences\": [\"People are on a stage playing instruments.\", \" A man in a black shirt is playing a drum set.\", \" A man in a green shirt plays a guitar at the front of the stage.\"]}, \"v_xq7Gr0FUwpo\": {\"duration\": 223.19, \"timestamps\": [[5.58, 24.55], [25.67, 73.65], [73.65, 101.55], [102.67, 118.29], [118.29, 162.93], [162.93, 223.19]], \"sentences\": [\"Two scientist throws stones in the water while talking.\", \" Scientist writes a formula on a board, then the scientists run and jumps in the water.\", \" Then, people water ski in the water pulling by a boat.\", \" A woman water ski while two men explains the movements made by the girl.\", \" After, a man water ski holding a water sky rope tie to a pole while a person watch, then he falls in the water.\", \" After, a person water ski and then falls in the water.\"]}, \"v_5HLW2AI1Ink\": {\"duration\": 146.9, \"timestamps\": [[0, 27.18], [27.91, 60.96], [61.7, 146.9]], \"sentences\": [\"A swimmer is shown putting on his goggles and spreading his hands out before he dives into a pool.\", \"A side view of the man is shown as he does the side stroke underneath the water.\", \"The male continues to swim and several techniques of his are highlighted such as the way his hand is cuffed and the position of his legs.\"]}, \"v_I4mFeQwqjnE\": {\"duration\": 51.92, \"timestamps\": [[0.26, 4.67], [5.19, 51.92], [16.87, 17.39]], \"sentences\": [\"The credits of the clips are shown.\", \" People in black play dodge ball on a court.\", \" A guy dives to the ground to prevent ball from hitting him.\"]}, \"v_UsqhZb0co6o\": {\"duration\": 38.57, \"timestamps\": [[0, 3.09], [3.66, 12.53], [12.15, 29.7], [29.7, 38.57]], \"sentences\": [\"A man is laying in bed and looks at his phone.\", \" He runs into a room and gets dressed.\", \" He sits down on his bed and puts shoes on.\", \" He stands up and runs out the door.\"]}, \"v_U0mKdo2-Gfc\": {\"duration\": 104.77000000000001, \"timestamps\": [[0, 15.19], [16.24, 26.72], [28.81, 34.57], [44, 104.77]], \"sentences\": [\"A weather map is shown for a second, then two news women sitting at a desk.\", \" Several people are shown warming up for a race.\", \" A gun is fired, and the race begins.\", \" We go back to the women in the news room, talking.\"]}, \"v_eL4Ce4WPI0Y\": {\"duration\": 39.1, \"timestamps\": [[0.78, 17.6], [15.25, 37.73]], \"sentences\": [\"A woman is seen wiping off her feet and stepping into a circle pit.\", \" The woman then spins around and throws a discuss off into the air while the camera follows her.\"]}, \"v_80spFFIdnC4\": {\"duration\": 119.37, \"timestamps\": [[0, 81.77], [81.77, 106.24], [106.24, 119.37]], \"sentences\": [\"A view of a wide ocean taken from a boat appears and various men are shown doing different things on the boat on both the inside and the outside and include steering the wheel up deck, or sitting at computers monitoring things.\", \"A man sitting on the deck of the boat is talking to the camera while a man behind him is standing and the man beside that standing man is controlling the steering wheel of the boat.\", \"The focus change to another man on the boat and he is talking to the camera as well.\"]}, \"v_ItpDcSURusI\": {\"duration\": 54.43, \"timestamps\": [[6.26, 24.49], [24.49, 35.11], [35.11, 47.62], [47.62, 52.25]], \"sentences\": [\"A professional diver named Pandelela Rinong is getting ready to dive in a competition.\", \" She goes forward on the diving board and does a backward dive into the pool from several feet.\", \" She twists her body as she dives down into the pool.\", \" After she's done, she smiles and walks out of the pool.\"]}, \"v_JGStyHrlN2U\": {\"duration\": 40.33, \"timestamps\": [[0, 40.33], [7.87, 22.79], [22.59, 36.3], [36.3, 40.33]], \"sentences\": [\"Several player on horseback are playing cricket on a field.\", \" All players ride their horses to one side of the field.\", \" The ride around and around as the try to hit the cricket ball.\", \" The ball is hit into the middle of the field away from all the players.\"]}, \"v_CJCONq_i1cQ\": {\"duration\": 238.63, \"timestamps\": [[0, 151.53], [73.98, 81.13], [139.6, 143.18], [153.92, 171.82], [169.43, 202.84], [210, 238.63]], \"sentences\": [\"We see a man in a driveway cleaning snow from his car.\", \" The man cleans the snow under his windshield wipers.\", \" We see the building behind the car.\", \" We do a 360 spin to see the parking lot.\", \" The man opens the doors on his car and gets in.\", \" The man backs out and and gets out of the car.\"]}, \"v_ZluOmpTPdWw\": {\"duration\": 29.61, \"timestamps\": [[0, 13.17], [12.58, 29.61]], \"sentences\": [\"A group of people seen running around a sandy field playing a soccer match in front of a large crowd.\", \" The people continue kick the ball around with several more balls being thrown in as well.\"]}, \"v_E2KlBkQJyzU\": {\"duration\": 197.74, \"timestamps\": [[14.83, 81.07], [67.23, 156.22], [156.22, 187.85]], \"sentences\": [\"Two people are seen sitting on a ski bench putting on gear and leads into people pushing a puck around a hockey rink.\", \" Several shots are shown of the players skating around the ice and playing the sport of hockey.\", \" In the end they all kneel down next to one another and skate away.\"]}, \"v_tlNpR7CkM-4\": {\"duration\": 100.25999999999999, \"timestamps\": [[0, 16.04], [18.55, 71.69], [78.21, 100.26]], \"sentences\": [\"A man is shown inside a church.\", \" He is playing a set of bagpipes while wearing a kilt.\", \"He continues to play, not moving.\"]}, \"v_az-UGTdlbaA\": {\"duration\": 117.38, \"timestamps\": [[0, 84.51], [5.28, 84.51], [13.5, 39.32], [49.89, 117.38]], \"sentences\": [\"A woman in a black top and shorts wears boxing gloves.\", \" She spares with a man  in black.\", \" She kicks and hits at him.\", \" She does several different exercises.\"]}, \"v_K0XdsHfUpco\": {\"duration\": 148.28, \"timestamps\": [[0.74, 3.71], [5.19, 140.13], [25.95, 30.4], [140.87, 143.83], [143.83, 145.32], [146.8, 147.54]], \"sentences\": [\"The credits of the clip are shown.\", \" Players play croquet in a lawn.\", \" A guy plays a bag pipe on the croquet field.\", \" Players shake hands to demonstrate sportsmanship.\", \" Players carry a huge check.\", \" A guy steps out of a line and charges at the camera.\"]}, \"v_wlO7PcigY-s\": {\"duration\": 63.53, \"timestamps\": [[0, 27.95], [29.22, 63.53]], \"sentences\": [\"A man drops a tennis racquet with ball then hits the ball.\", \"  Another person does the same trick and then shows that he is from Serbia.\"]}, \"v_4KgCkxpsN2g\": {\"duration\": 190.85, \"timestamps\": [[0, 190.85], [23.86, 28.63], [30.54, 119.28], [56.3, 139.32]], \"sentences\": [\"People are in a large yellow raft going down a water fall.\", \" A man in a boat is going down the river.\", \" Several pictures of rafters are displayed on the screen.\", \" Rafters are going down a rough hill and hitting the rocks.\"]}, \"v_rHD_vDxPpDA\": {\"duration\": 131.43, \"timestamps\": [[4.6, 95.28], [95.28, 97.91], [97.91, 128.14]], \"sentences\": [\"A shoe is cleaned with a toothbrush by a sink.\", \" The counter is wiped with a towel.\", \" The shoe is cleaned more with the toothbrush and a towel.\"]}, \"v_yDCZNNI3tDo\": {\"duration\": 111.4, \"timestamps\": [[0, 16.71], [16.71, 44.56], [44.56, 105.28], [105.28, 111.41]], \"sentences\": [\"A lady is talking to the camera then she laughs and looks down and the camera focuses elsewhere.\", \" The camera is back to the lady and a man is now cutting her hair as her mouth is open in disbelief and the  man is laughing as he cuts her hair in one quick motion around her head.\", \"The lady is so in shock and drops hair from her lap and looks down at the ground at all the hair, touches her hair, stands up to look in the mirror, screams, cries, starts freaking out, sits back down and stands back up to look in the mirror.\", \" The lady looks in the mirror and is smiling but you can tell she's not happy.\"]}, \"v_M_hfBH8xEig\": {\"duration\": 64.72, \"timestamps\": [[0, 4.21], [7.12, 44.33], [45.95, 64.72]], \"sentences\": [\"Blue text talks about the description of the video.\", \" Some boys are shown performing backetball layups, one after the other.\", \" One boy continuously does layups until the end.\"]}, \"v_G-EDozcMT_4\": {\"duration\": 206.17000000000002, \"timestamps\": [[0, 54.64], [52.57, 164.94], [163.91, 206.17]], \"sentences\": [\"An intro leads into several shots of skateboarders riding around on rails in a large city.\", \" The camera follows these borders closely as they perform tricks up stairs and over benches.\", \" The men continue skating on and ends with a police woman smiling and giving a thumbs up to the camera.\"]}, \"v_ZzarNWOJnro\": {\"duration\": 79.25, \"timestamps\": [[0, 6.34], [6.74, 43.59], [35.27, 63.4]], \"sentences\": [\"A man picks up an ax.\", \" He swings it at a piece of wood on a stump.\", \" He picks another one up and chops it.\"]}, \"v_17ODXa4CEmI\": {\"duration\": 112.34, \"timestamps\": [[0.56, 10.67], [11.23, 23.59], [24.15, 44.37], [44.37, 90.43], [90.99, 103.91]], \"sentences\": [\"A person puts slices of lemon over two glasses of lemonade with ice.\", \" Then, the person pours water and adds sugar in a pot to make syrup.\", \" The person press hard a lemon, and then cuts the lemmons and squeeze them using an electric citrus juicer.\", \" next, the person pours a glass of water in a jar, then adds the syrup, the lemon juice, slices of lemon and ice.\", \" Then the person serves the lemonade.\"]}, \"v_P49Ci0Ph8eU\": {\"duration\": 54.64, \"timestamps\": [[0, 5.46], [5.46, 31.14], [31.96, 38.79], [33.87, 45.9], [46.17, 54.64]], \"sentences\": [\"A gymnast stands before a large crowd in an arena and puts his hands up.\", \" He begins his routine that involves many flips and rotations.\", \" The crowd sits silently while he does this.\", \" He does a handstand and a series of more rotations and flips before dismounting.\", \" He claps as the crowd cheers him on after his routine is over.\"]}, \"v_GYh4XH7jUL4\": {\"duration\": 7.99, \"timestamps\": [[0, 5.11], [5.31, 7.87]], \"sentences\": [\"A person dives off a board into a pool.\", \" They come up from under the water.\"]}, \"v_xH_1O0mckTU\": {\"duration\": 191.08, \"timestamps\": [[0, 19.11], [0, 129.93]], \"sentences\": [\"man is standing in street holding a board and skateboarding through the street.\", \" man is walking in a yard and doing jumps and talking to a microphone.\"]}, \"v_U01xasUtlvw\": {\"duration\": 188.9, \"timestamps\": [[0, 22.67], [29.28, 50.06], [55.72, 188.9]], \"sentences\": [\"a man is outside wearing a superman shirt.\", \" He spins in circles, looking around.\", \" He finds a broken bike, and repairs it while an angry man yells at him.\"]}, \"v_6LOfAoP4Mg8\": {\"duration\": 106.50999999999999, \"timestamps\": [[0, 59.11], [55.39, 106.51]], \"sentences\": [\"A man is shown sanding a wall and laying out a large piece of water paper across the wall.\", \" He continues pushing the paper into the wall and sanding it from behind.\"]}, \"v_XQ4owd3yQ_4\": {\"duration\": 30.35, \"timestamps\": [[0, 4.7], [5.46, 14.11], [15.33, 23.82], [25.34, 30.35]], \"sentences\": [\"A man pushes a table into the sand.\", \" He is then shown surfing on the bottom of the table in the ocean, gliding across a wave.\", \" Another angle is shown with the surfer effortlessly riding a wave on a table.\", \" He crashes along with the wave.\"]}, \"v_x_BIktHkEc4\": {\"duration\": 69.48, \"timestamps\": [[0, 11.81], [12.85, 58.01], [58.71, 69.47]], \"sentences\": [\"A man wearing headphones is in a studio, speaking into a microphone.\", \" Other men are shown, one of which begins playing a harmonica.\", \" He stops playing and says something that makes the DJ laugh.\"]}, \"v_pv6CNBFhgCU\": {\"duration\": 115.5, \"timestamps\": [[0, 101.64], [101.64, 109.14], [109.14, 115.5]], \"sentences\": [\"A machine draws a face on a pumpkin.\", \" The lights turn off and it shows the carved pumpkin turned on.\", \" It shows the pumpkin in the light.\"]}, \"v_HVhLOYGU9E4\": {\"duration\": 85.1, \"timestamps\": [[0, 9.36], [9.79, 56.17], [57.44, 85.1]], \"sentences\": [\"A large semi truck is driving in the rain.\", \" Then we see boys riding skateboards outside a house.\", \" They perform several stunts on a board in the driveway.\"]}, \"v_JxN0fchWCNI\": {\"duration\": 105.37, \"timestamps\": [[0, 25.82], [25.29, 75.34], [75.87, 105.37]], \"sentences\": [\"A man and a woman are standing in a kitchen behind an island with fruits on them.\", \"Once the male finishes talking,the woman begins grating a vegetable and cutting an orange in half.\", \"She then squeezes the orange into a clear glass bowl and seasoning it and mixing it together with the previously cut up ingredients.\"]}, \"v_6AwS8vWMwSA\": {\"duration\": 53.96, \"timestamps\": [[0, 41.28], [33.73, 34.54], [43.44, 46.95], [46.95, 48.3], [49.65, 53.96]], \"sentences\": [\"We see a man and a woman playing competitive rock paper scissors cut with scenes of the crowd.\", \" We see a man with a mustache clapping.\", \" The lady wins and the man in the suit raises her hand.\", \" The man and the woman shake each others hands.\", \" The man in the game shakes his head as he turns around.\"]}, \"v_jBKlpn2mE8I\": {\"duration\": 209.47, \"timestamps\": [[0, 23.04], [29.33, 163.39], [167.57, 182.24], [191.66, 209.47]], \"sentences\": [\"A woman walks into a backyard, and flips her hair forward.\", \" She brushes her hair for a long time, smoothing and tossing it.\", \" She then walks away from the camera, continuing to brush.\", \" She stands upright, then bends over to brush some more.\"]}, \"v_icOO9whIgX8\": {\"duration\": 207.63, \"timestamps\": [[0, 7.27], [7.27, 180.64], [180.64, 207.63]], \"sentences\": [\"A yellow frame with girls playing Lacross opens up the video.\", \" A game of girls Lacross is going on as different slides are shown.\", \" The game ends with a penalty shot.\"]}, \"v_E2sbaDQabkA\": {\"duration\": 165.54, \"timestamps\": [[0, 2.48], [3.31, 7.45], [8.28, 13.24], [14.07, 158.91], [159.74, 163.88]], \"sentences\": [\"A black and yellow jump rope lies on the floor while three people are in the background.\", \"The title, \\\"Jump Rope Steffisburg\\\", appears on the screen while several people in green shirts run behind.\", \" Two young women perform a somersault.\", \" A large group of people in green shirts perform various jump rope stunts in a large gymnasium.\", \" Someone picks up a yellow and black jump rope from the floor and walks off with it.\"]}, \"v_r7Z5Pm3pKMA\": {\"duration\": 45.63, \"timestamps\": [[0, 5.48], [5.48, 22.13], [22.13, 30.34], [30.57, 40.61], [43.35, 45.63]], \"sentences\": [\"We see a man and people entering a stadium.\", \" We switch to people on teams, and military marching in a yard.\", \" People are playing a game with sticks.\", \" We see a group of people on a team standing in a a circle.\", \" We see a man walking down the street then a person sitting on the sidewalk.\"]}, \"v_BdKxwCdax_w\": {\"duration\": 146.24, \"timestamps\": [[0, 40.95], [40.22, 80.43], [81.16, 146.24]], \"sentences\": [\"A man is standing in a room in front of a mirror talking.\", \" He gets down on his knees and stands on his head.\", \" He moves around in a circle on his head and spins.\"]}, \"v_fgEMvRrOCRI\": {\"duration\": 97.52000000000001, \"timestamps\": [[4.39, 12.19], [12.19, 26.33], [26.33, 42.91], [42.91, 69.73], [69.73, 85.33], [85.33, 93.14]], \"sentences\": [\"There are players, one in yellow and the other in red hurling in an open air stadium.\", \" They are part of a team that is playing in the large stadium with several spectators.\", \" The video is demonstrating how to catch the ball and scoop it up with the stick.\", \" It also demonstrates how to balance the ball on the stick as the player runs.\", \" The players are showing all the steps in the tutorial where the one of the player shoots the ball bravely for a point.\", \" There's a player in a blue and white uniform shooting the ball for a point and scoring a goal.\"]}, \"v_x2CZHFxoZaM\": {\"duration\": 167.9, \"timestamps\": [[10.91, 12.59], [22.67, 25.19], [22.67, 167.9]], \"sentences\": [\"A man is crossing the finish line of a race.\", \" Lots of people are running in a race.\", \" People are running down a dirt road.\"]}, \"v_EEaLID3z9tM\": {\"duration\": 46.12, \"timestamps\": [[0, 8.07], [8.76, 17.06], [17.52, 30.44], [30.44, 44.73]], \"sentences\": [\"A group of four young girls are standing beside each other in the bathroom and they chug something.\", \" They are swishing it in their mouths and almost all of them have their hands over their mouths.\", \" One of them spits it out in the sink and the other three are trying to carry on.\", \" They are having a really hard time and eventually they all spit out and one girl wins.\"]}, \"v_jvQU6RyhY7I\": {\"duration\": 47.86, \"timestamps\": [[0, 5.98], [7.9, 28.71], [29.19, 47.86]], \"sentences\": [\"A woman has a bandana tied around her eyes.\", \" She uses a stick to swing at a pinata.\", \" She hits the pinata numerous times.\"]}, \"v_TMnmi7WJr_o\": {\"duration\": 154.55, \"timestamps\": [[0, 10.82], [13.14, 77.28], [79.59, 132.92], [136.78, 154.55]], \"sentences\": [\"A man is standing outside a tattoo and piercing parlor.\", \" He lies down on a bench while a tattoo artist works on a tattoo on his back.\", \" He shows a close up of his work, which says thuglife.\", \" The man looks at the work in the mirror.\"]}, \"v_MhWIIdVyWVs\": {\"duration\": 238.6, \"timestamps\": [[0, 194.46], [195.65, 238.6]], \"sentences\": [\"A martial arts artists performs slow moves with her arms and legs simultaneously.\", \" A man speaks to the camera after the woman finishes her martial arts routine.\"]}, \"v_piKE8obU4JY\": {\"duration\": 69.5, \"timestamps\": [[0, 4.17], [14.94, 41], [55.25, 69.5]], \"sentences\": [\"A drum line gets in formation at an outdoor event.\", \" They begin their routine, each section moving in their own set way before coming together and spreading out again.\", \" They form into two rows and finish the song.\"]}, \"v_N88-LuWK_K0\": {\"duration\": 149.65, \"timestamps\": [[1.5, 64.35], [44.9, 145.91]], \"sentences\": [\"An intro leads into several clips of people riding in on horses throwing a rope and grabbing calf's in the middle of a pit.\", \" More clips are shown of people roping calf's in the pit and ending with pictures of people performing.\"]}, \"v_jkmbAc9BWaE\": {\"duration\": 205.78, \"timestamps\": [[1.03, 8.23], [8.23, 40.13], [40.13, 84.37], [84.37, 112.15], [112.15, 148.16], [148.16, 186.23], [186.23, 197.54]], \"sentences\": [\"There's a man in a red shirt and a checked shirt over it, standing in a park.\", \" He throws a rubber tire on the ground.\", \" He is standing near a park bench with a skateboard in his hand.\", \" He is demonstrating how to do stunts on the skateboard by jumping up on the park bench.\", \" He repeats the same stunt over and over again.\", \" He falls off the skateboard a couple times but is successful most of the time.\", \" Then he holds the skateboard in his hand as he talks while pointing to the bench.\"]}, \"v_D8dHEAYIawg\": {\"duration\": 59.56, \"timestamps\": [[0, 16.68], [17.27, 54.2], [54.8, 59.56]], \"sentences\": [\"A group of women and a man are playing volleyball in the sand on a beach.\", \" They lob the pink ball back and forth over the net.\", \" A woman goes behind a piece of equipment to grab the ball.\"]}, \"v_BPpq8m93LSI\": {\"duration\": 102.86, \"timestamps\": [[0, 1.54], [1.54, 18.51], [18.51, 23.66], [23.66, 100.28], [101.31, 102.86]], \"sentences\": [\"We see an opening title screen.\", \" We see balls and paddle and a blue table then a man talks and two men playing table tennis.\", \" We see an instructional title screen.\", \" The man demonstrates hitting a ball and we see him in play hitting the ball.\", \" We see the ending title screen.\"]}, \"v_sjyZWmvTGA4\": {\"duration\": 35.97, \"timestamps\": [[0.54, 27.34], [3.06, 27.34], [5.75, 25.18], [10.07, 12.95], [27.34, 35.25]], \"sentences\": [\"Several men are blowing leaves in front of a home.\", \" One man is going all throughout the yard to blow the leaves.\", \" He clears out in front of the home.\", \" He also clears out by the shed.\", \" Another man is shown wandering through the yard.\"]}, \"v_cjFHlsWZY4c\": {\"duration\": 105.35, \"timestamps\": [[10.53, 15.8], [27.92, 38.98], [47.93, 67.42], [73.22, 83.75]], \"sentences\": [\"Someone is drawing on tape and cutting it out.\", \" They dip a paint brush in paint and paint it put it on a sponge.\", \" They put that on their nail and put a top coat on.\", \" They put glitter over the heart on the nail.\"]}, \"v_smk2WJV1Zmo\": {\"duration\": 126.06, \"timestamps\": [[0, 5.04], [5.04, 19.54], [19.54, 100.85], [100.85, 126.06]], \"sentences\": [\"woman is in a gym doing leg exercise and abs.\", \" thw woman is sitting in a terrace talking to the camera.\", \" woman is walking in a sidewalk with a white small dog and enters in a house.\", \" the woman is again in the terrace talking to the camera.\"]}, \"v_xxXspvK4tEY\": {\"duration\": 95.75999999999999, \"timestamps\": [[0, 36.87], [42.61, 95.76]], \"sentences\": [\"An elderly woman is sitting on the couch with a young girl, showing her how to thread yard onto a knitting hook.\", \" The girl smiles and laughs as she figures out how to handle it.\"]}, \"v_Ac_8KQGAe0c\": {\"duration\": 306.62, \"timestamps\": [[0, 61.32], [68.99, 197.77], [197.77, 271.36], [271.36, 306.62]], \"sentences\": [\"A cat is standing on a table getting petted.\", \" A person takes the cats paw and starts clipping its nails.\", \" The person picks the cat up to clip their back paws.\", \" The person pets the cat after clipping its nails.\"]}, \"v_S2jbh7QMrKc\": {\"duration\": 227.37, \"timestamps\": [[4.55, 28.42], [28.42, 138.7], [138.7, 210.32], [210.32, 222.82]], \"sentences\": [\"People surf in the choppy waters of the ocean while a cat sits on a rock.\", \" One person surfs on a big wave going to the right, while other surfer gets in a wave to surf and falls but get on the surfboard again.\", \" A man surfs on a wave going to the left while other people surfs in the ocean.\", \" Suddenly, a man appears rowing a canoe.\"]}, \"v_legHHtPK5fA\": {\"duration\": 36.73, \"timestamps\": [[0, 6.8], [9.92, 31.04], [31.41, 36.73]], \"sentences\": [\"A group of men are standing in a row.\", \" They are throwing darts at targets.\", \" The people converse as they try to hit their targets.\"]}, \"v_QV2QXt6eDdI\": {\"duration\": 30.79, \"timestamps\": [[0, 16.93], [13.86, 30.79]], \"sentences\": [\"A young child is seen washing various dishes in a sink while wearing gloves and running them under water.\", \" The boy continues to stick a bowl under the water while the camera pans around his movements.\"]}, \"v_0_BvBpwDMpU\": {\"duration\": 57.17, \"timestamps\": [[0, 9.43], [7.43, 57.17]], \"sentences\": [\"A gymnast is seen raising his arm in the air and climbing on top a gymnastics beam.\", \" He spins himself around performing various tricks on the beam and finishes by jumping down and smiling to the applauding audience.\"]}, \"v_RAQs7EkXLtE\": {\"duration\": 215.71, \"timestamps\": [[0, 89.52], [83.05, 215.71]], \"sentences\": [\"A large group of women are seen moving around a stage and begin with two women performing a belly dancing routine.\", \" The women continue dancing around the stage and end by holding a pose and bumping into one another.\"]}, \"v_E4PIKUW4v0k\": {\"duration\": 48.58, \"timestamps\": [[0, 48.58], [3.16, 4.86], [32.3, 46.63]], \"sentences\": [\"A man and a woman stand on a street talking on front a window.\", \" A person passes on front the man and the woman.\", \" People pass on front the woman and the man.\"]}, \"v_MbCAiWBhAjo\": {\"duration\": 135.35, \"timestamps\": [[0, 9.47], [9.47, 26.39], [26.39, 39.93], [39.93, 64.97], [64.97, 92.04], [92.04, 135.35]], \"sentences\": [\"Lemons are thrown onto a counter and glasses of lemon-aid appear with ice in mason jars on the counter as well.\", \" Lemons are then rolled around against the counter back and forth evenly with the palm of a hand using firm pressure.\", \" The lemons are scraped back and forth against a metal food grater to get the zest off of them leaving the skin of the lemon in a bowl.\", \" Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder is added to the water as well.\", \" The lemons are cut and juiced over a glass bowl and then the juice is poured through a strainer along with the sugar water with zest that was previously mixed in the saucepan.\", \" The mixture is stirred with added water and ice is then added.\"]}, \"v_FzdLe1mjk7c\": {\"duration\": 48.23, \"timestamps\": [[0, 5.06], [5.55, 10.13], [10.85, 30.87], [30.87, 37.62], [37.62, 40.99], [40.99, 46.3], [46.06, 48.23]], \"sentences\": [\"There is a wall of paintings then the scene fades out.\", \"  People are standing on a balcony over looking a soccer event and the screen says Wuzler Cup Finale.\", \" Two rows of people are playing table soccer.\", \"  The ball jumped off the table and a woman put it back into play and a goal was made.\", \"  There are cheerleaders for this event.\", \" The red team won and are showing off their tshirts.\", \"The scene changes to a reported behind a desk.\"]}, \"v_PxEu0AAH9LI\": {\"duration\": 233.11, \"timestamps\": [[0, 9.32], [9.32, 231.94], [230.77, 233.11]], \"sentences\": [\"A group of women wearing blue dresses are dancing on a stage in sync they dropped to the ground and the screen fades to black.\", \"A woman alone then appears on the stage with white words on the bottom left that say \\\"BALLET D'ORIENT\\\",and a special effect background and she begins to belly dance, then other women join her.\", \"The spotlight fades as the routine ends and the screen fades to black.\"]}, \"v_f0lxilPpXeM\": {\"duration\": 101.1, \"timestamps\": [[0, 16.18], [40.44, 43.98], [72.29, 80.37], [98.57, 101.1]], \"sentences\": [\"A man and woman are sitting behind a desk talking.\", \" A doctor is performing surgery in a room.\", \" A woman in a red shirt is standing at a counter talking.\", \" A woman wipes her mouth with a napkin.\"]}, \"v_YeNlYRWhFzE\": {\"duration\": 211.51, \"timestamps\": [[0, 39.13], [40.19, 136.42], [134.31, 211.51]], \"sentences\": [\"An intro leads into several shots of a man riding a large wave of a surf board from various angles.\", \" One man is then interviewed by the cameraman and is shown again riding large waves in the ocean.\", \" Another man is interviewed by the camera and shows off his surfing skills on his board.\"]}, \"v_k8ZXFB6xqZs\": {\"duration\": 216.06, \"timestamps\": [[0, 39.97], [39.97, 108.03], [108.03, 157.73], [157.73, 216.06]], \"sentences\": [\"A man is outside in a tennis court talking while he is holding a tennis racket.\", \" He goes on the court and with the racket and a ball from his pocket and hits it.\", \" He gives some very detailed information a for a while, tennis seems to be something he knows about very well.\", \" He shows how you should hit the ball properly and goes on talking some more.\"]}, \"v_tkHJgKq3jTs\": {\"duration\": 107.02000000000001, \"timestamps\": [[0, 37.99], [37.99, 59.4], [59.4, 77.06], [77.06, 107.02]], \"sentences\": [\"woman is in an offece talking to a men that are decorating a christmas tree.\", \"man talks to the one who was standing by the tree and gives him a barbie.\", \"man walks to a woman and start talking in te corner of the room.\", \" man is holding a ball next to the christmas tree putting the balls.\"]}, \"v_0IN40z63WAU\": {\"duration\": 232.01, \"timestamps\": [[4.64, 71.92], [77.72, 175.17], [124.13, 221.57]], \"sentences\": [\"A man is shown working out on several different pieces of exercise equipment as well as adjusting the settings.\", \" The man puts in a USB and continues to ride around on the machines.\", \" He adjusts more settings as well as watches tv when he works out and close ups of his feet and body shown.\"]}, \"v_Scv939uhNCc\": {\"duration\": 43.58, \"timestamps\": [[0, 11.99], [12.86, 27.68], [27.24, 43.58]], \"sentences\": [\"A group of young men are sitting at a table with Rubik cubes in front of them.\", \"The two boys to the right have already started and the two boys on the left are at a delay.\", \"In eight seconds,the boy solves his cube and the boys behind them jump up and begins to congratulate him as the others continue to solve their.\"]}, \"v_etWdTMJ9_To\": {\"duration\": 40.71, \"timestamps\": [[0.81, 20.96], [15.47, 39.28]], \"sentences\": [\"A man is seen walking down a field followed by several people running back and fourth.\", \" The men throw the ball around the yard and continue to run up and down on the grass.\"]}, \"v_VcyO9tZ3NkY\": {\"duration\": 124.02, \"timestamps\": [[0, 124.02], [36.59, 119.68]], \"sentences\": [\"A roof is repaired by PVC.\", \"  The roof is cleaned and the seal is made again.\"]}, \"v_q59X9izcjQc\": {\"duration\": 224.65, \"timestamps\": [[2.25, 155.01], [101.09, 215.67]], \"sentences\": [\"Various clips are shown of a woman standing and pointing on a beach that lead into her dragging along a board and and adjusting it on the water.\", \" The woman then grabs onto the board and moves around the water while demonstrating proper moves and the camera moving all around others.\"]}, \"v_2rA5pyel_NE\": {\"duration\": 115.06, \"timestamps\": [[0, 8.63], [8.05, 56.95], [47.75, 94.92], [96.07, 115.06]], \"sentences\": [\"Children bring desert out for their family member.\", \" The family enjoys eating the desert together.\", \" The people in the restaurant laugh at the man and he wonders what they are doing.\", \" The man gets up and walks away to the other room.\"]}, \"v_nDGhaYCgRiI\": {\"duration\": 211.74, \"timestamps\": [[0, 16.94], [16.94, 39.17], [39.17, 116.46], [118.58, 211.74]], \"sentences\": [\"people is in a gym doing exercise some push ups and stretching.\", \" men start settle the gym and bring some mats and strings to ge gym.\", \" people are balancing on the srings on the gym and jumping in the elastic bed in gym class.\", \" men and women are balancing on th string and doing tricks making jumps.\"]}, \"v_PKdQIdYuXo8\": {\"duration\": 116.4, \"timestamps\": [[0, 21.53], [21.53, 116.4]], \"sentences\": [\"man is standing holding an harmonica while is playing the guitar and its reading the music sheet.\", \" man is teaching how to play the harmonica in the key of A and its talking and playing the guitar.\"]}, \"v_ha40KZvmcEo\": {\"duration\": 106.62, \"timestamps\": [[2.13, 34.65], [34.65, 82.63], [66.64, 106.08]], \"sentences\": [\"Several clips are shown of people riding in water on kayaks.\", \" The people perform flips in the water while text is shown.\", \" More clips are shown of people riding in the water and doing flips in the kayaks.\"]}, \"v_YApgx2YL9wM\": {\"duration\": 49.0, \"timestamps\": [[0, 11.76], [11.51, 49]], \"sentences\": [\"A firefighter is shown walking on a tight rope in his gear very slowly.\", \" He moves along the rope towards the end and walks back to the start until he fails.\"]}, \"v_7vXt9RxeXWY\": {\"duration\": 79.62, \"timestamps\": [[3.58, 72.46], [5.97, 72.46], [65.29, 71.26]], \"sentences\": [\"A man is kneeling down on a blue mat.\", \" A man is standing up behind him talking.\", \" The man on the mat has a brown belt around his waist.\"]}, \"v_16Mq9vM7Nck\": {\"duration\": 77.46000000000001, \"timestamps\": [[1.16, 30.98], [22.08, 64.29], [61.97, 76.3]], \"sentences\": [\"Two people are seen walking out of a building and leads into them playing crochet with one another.\", \" The men continue hitting the ball around the yard while speaking to one another and measuring out the ball.\", \" The men continue playing and one holding out his arm and end by walking away.\"]}, \"v_j6Kf_y7k-yU\": {\"duration\": 156.82, \"timestamps\": [[0, 27.44], [27.44, 70.57], [70.57, 73.7], [74.49, 83.11], [83.11, 142.7], [143.49, 156.82]], \"sentences\": [\"People watch competitors get ready near a red stage.\", \"  The competitors put their robots down in the circle as the judge instructs them.\", \"  The judge signals the beginning of the competition.\", \"  The robots begin to move, and one of the robots is pushed out of the circle.\", \"  The competitors walk back up to the stage and replace their robots.\", \"  The judge signals for the competition to begin again and everyone applauds when one of them wins.\"]}, \"v_w5J3Gt5WLwU\": {\"duration\": 142.99, \"timestamps\": [[11.44, 142.99], [35.75, 142.99]], \"sentences\": [\"A water polo match is shown and a person scores goals.\", \"  This is a recruiting video.\"]}, \"v_HCraAphAW1A\": {\"duration\": 28.56, \"timestamps\": [[0.14, 25.85], [0.14, 3], [4.57, 20.71], [21.42, 25.7]], \"sentences\": [\"A person in a black t-shirt clips the nails on the front paws of a brown and tan speckled cat.\", \"  A brown and tan speckled cat is lying on a white cushion when a person walks in holding a pair of red handled nail clippers.\", \"  The person cuts the forepaws of the cat as the cat watches on.\", \"  The person finishes cutting the cat's nails and pets the cats head and shows the clippers close to the camera before walking away.\"]}, \"v_f0Z-qud2N74\": {\"duration\": 17.25, \"timestamps\": [[0, 14.06], [5.95, 14.15], [14.15, 17.25]], \"sentences\": [\"Two boys are wrestling in a bedroom.\", \"  One boy is picked up and thrown on the bed.\", \"  The boy turns off the camera.\"]}, \"v_rrXdhD3WDy4\": {\"duration\": 94.5, \"timestamps\": [[0, 72.29], [45.36, 72.29], [76.54, 94.5]], \"sentences\": [\"A piercing artist inserts a bar into a woman's nipple.\", \" The man screws on hardware to the end of the piercing.\", \" The woman wearing a costume sits up and shows her new piercings.\"]}, \"v_Sn8IRyUFNac\": {\"duration\": 37.2, \"timestamps\": [[1.49, 16.55], [15.81, 26.97]], \"sentences\": [\"A woman smoking a cigarette speaks to another about how much they need smoking.\", \" They continue talking about their smoking habit and what they can do to continue smoking if they please.\"]}, \"v_aVDyPmUgHU0\": {\"duration\": 76.09, \"timestamps\": [[0, 11.41], [11.41, 23.59], [23.59, 65.44], [65.44, 76.09]], \"sentences\": [\"A man comes onto the screen to introduce a video about him trimming trees.\", \" He picks up a trimming saw and starts the engine.\", \" He climbs the ladder and begins trimming the tree.\", \" He looks back to the camera and smiles.\"]}, \"v_FYv-2ehoGWo\": {\"duration\": 128.94, \"timestamps\": [[0, 128.94], [27.72, 128.94]], \"sentences\": [\"A blonde woman wearing a dress has two, side by side shots of her playing a violin.\", \" She plays two different melodies on the violin and finishes together at the same time, smiling at the camera.\"]}, \"v_UIZN2F8pjzE\": {\"duration\": 30.05, \"timestamps\": [[0, 6.31], [6.16, 30.05]], \"sentences\": [\"A man is standing outside in the dark smoking a cigarette in front of a green garage.\", \"After,an image of a lung is shown and shows how cigarettes affect your organs.\"]}, \"v_KKbfCtmIE0o\": {\"duration\": 122.62, \"timestamps\": [[18.39, 66.21], [66.83, 112.81], [98.71, 112.81]], \"sentences\": [\"A woman demonstrates how to do Tai Chi outside on the grass.\", \" The same woman demonstrates Tai Chi indoors on a stage.\", \"\\nA second woman joins the first woman to help demonstrate.\"]}, \"v_luDywPbDOEQ\": {\"duration\": 133.24, \"timestamps\": [[0, 2.66], [2.66, 10.66], [10.66, 19.32], [24.65, 27.98], [45.3, 74.61], [74.61, 105.92], [107.92, 133.24]], \"sentences\": [\"We see a white title screen.\", \" We then see a lady moping and wringing the mop by hand.\", \" We see a bucket which rings a round mop without touching it.\", \" A lady changes the mop head with her foot.\", \" Three ladies give endorsements and we see them using the mop.\", \" We then see more of the mop in action.\", \" We see the ending title screen.\"]}, \"v_n96adnrNnno\": {\"duration\": 144.85, \"timestamps\": [[0, 52.14], [52.14, 101.39], [101.39, 144.85]], \"sentences\": [\"Two Asians a man and a female are sitting down at a table before going to the inside of a gym.\", \"In the gym,several young girls begin doing gymnastics and performing before coming back and doing an interview with the reporter.\", \"Next,a young man approaches the bars,does his routine,and then comes back to to his interview.\"]}, \"v_DDZFQKi1v2U\": {\"duration\": 112.34, \"timestamps\": [[0, 28.08], [30.89, 82.57], [79.2, 108.97]], \"sentences\": [\"A woman is seen laying on the couch with another girl sitting above her.\", \" The girl is then shown piercing the nipple of the girl laying down.\", \" She finishes the piercing and ends by smiling to the camera.\"]}, \"v_FXN6qiDsClw\": {\"duration\": 87.38, \"timestamps\": [[0, 20.1], [20.1, 31.02], [31.46, 44.13], [44.13, 74.27], [74.27, 80.39], [79.95, 87.38]], \"sentences\": [\"An animation demonstrating the arc length of a welding type tool emitting heat.\", \" A demonstration of the tool emitting heat in real time.\", \" A graph illustrating the Long Arc of the tool documenting Voltage and Amperage.\", \" The tool is shown in real time emitting heat with a photo of a welded material.\", \" A graph illustrates Short Arc with the Voltage and Amperage documented.\", \" A man in a blue coat and orange gloves uses the arc tool.\"]}, \"v_hS4L3PMfYqA\": {\"duration\": 111.32, \"timestamps\": [[11.13, 17.81], [17.81, 111.32], [90.17, 92.95]], \"sentences\": [\"A person sings on front a crowd dressed on hip hop clothes.\", \" A man dance hip hop doing acrobatics moves with his hands and legs on the floor on front a crowd.\", \" People takes pictures and film the man who are behind the man.\"]}, \"v_-5xWaBSwnjY\": {\"duration\": 143.34, \"timestamps\": [[0, 143.34], [1.43, 143.34], [0, 142.62]], \"sentences\": [\"woman is in a large green field holding a yellow frisbee and playing with a dog.\", \"a lot of acrs are parked in the street behind the alrge field.\", \" woman is throwing the frisbee to the dog.\"]}, \"v_LGku-onF4VI\": {\"duration\": 64.23, \"timestamps\": [[0, 64.23], [2.57, 64.23], [4.82, 64.23], [47.21, 64.23]], \"sentences\": [\"People are sitting behind large drums.\", \" They start playing the drums with their hands.\", \" People stand on the street watching them.\", \" A man picks up his chair and turns it upside down on the drums.\"]}, \"v_S4ppfXBp5o0\": {\"duration\": 140.19, \"timestamps\": [[0, 140.19], [3.5, 51.17], [49.77, 82.01], [79.21, 114.95], [109.35, 140.19]], \"sentences\": [\"There are three body builders exercising and working out in a small gym with weightlifting equipment.\", \" One of the body builders lifts the weight bar several times and then drops it down while the other two body builders watch him.\", \" Then he goes and wipes off his sweat with a towel and lifts the weight bar again and drops it.\", \" He then wears an abdominal belt and lifts the weight bar again and drops it.\", \" He struggles to lift the weight bar, lifts it slightly and then drops it down.\"]}, \"v_Hujj6Q1Et3k\": {\"duration\": 136.26, \"timestamps\": [[2.73, 3.41], [3.41, 133.53], [133.53, 135.57]], \"sentences\": [\"A man wearing headphones stands behind a pair of large drums.\", \" The man plays drums with his palms.\", \" The man ceases playing the drums and turns away.\"]}, \"v_Mcutz37Bowg\": {\"duration\": 72.05, \"timestamps\": [[0, 15.49], [15.49, 33.5], [33.5, 59.8], [59.08, 72.05]], \"sentences\": [\"A man lays out a scarf and puts some accessories in the middle of it.\", \" He ties the end and folds it into double knots.\", \" He opens it again and puts something else into the middle of it.\", \" Then pulls it together and it closes, he made a little bag out of a scarf.\"]}, \"v_Lbdp-HCjWw8\": {\"duration\": 73.17, \"timestamps\": [[0, 5.12], [0, 73.17], [10.61, 16.1], [20.49, 38.41], [40.97, 59.27], [66.95, 73.17]], \"sentences\": [\"An introduction comes onto the screen for a video about how to play squash.\", \" Two men are shown on a squash court playing a game of squash.\", \" Text shows up on the screen showing the things you will need for the game.\", \" An indication shows on the screen letting you know the different lines.\", \" Tips for the game also show up on the screen.\", \" At the end of the video a text box shows up with a fun fact about squash.\"]}, \"v_Vvco5y9PUFM\": {\"duration\": 14.35, \"timestamps\": [[0, 14.35], [8.83, 12.7]], \"sentences\": [\"A man cross a parking lot bouncing with bouncing shoes.\", \" There are car in the paring lot.\"]}, \"v_YpXe04ALJw4\": {\"duration\": 15.47, \"timestamps\": [[0, 2.86], [2.94, 9.2], [9.2, 15.47]], \"sentences\": [\"Several people are outdoors enjoying the beach.\", \"In the middle of the sand however,there are a group of men playing a game of beach volley ball.\", \"After several hits,one man decides to kick the ball over the net and another man takes off running from the other side and tackles him in the dirt.\"]}, \"v_Se7eQXlW-BA\": {\"duration\": 64.53, \"timestamps\": [[0, 10.97], [10.97, 23.88], [23.23, 64.53]], \"sentences\": [\"A man and woman are seen standing on a bowling lane with another reading in the distance.\", \" A woman walks in and speaks to the blonde woman and hands her some bowling shoes.\", \" The man speaks over and the girl throws the bowling ball with her heels on.\"]}, \"v_5t_hQVg9NsE\": {\"duration\": 75.13, \"timestamps\": [[1.88, 36.81], [21.04, 74.38]], \"sentences\": [\"Old clips are shown of a man drawing a picture and two children watching.\", \" The kids are then shown in several clips performing dives off a board and walk along the sides climbing back to the top.\"]}, \"v_P14X14uarj0\": {\"duration\": 69.56, \"timestamps\": [[1.39, 33.74], [28.17, 67.12]], \"sentences\": [\"A person is seen passing a basketball all around a court to others and ending by shooting a basket.\", \" The group continues to pass the ball around to one another performing drills while the coach instructs.\"]}, \"v_So4BX0I1VRI\": {\"duration\": 70.66, \"timestamps\": [[38.16, 68.54], [51.58, 70.66]], \"sentences\": [\"The person is shown knocking down 9 of the bowling pins, which means he has a spare.\", \" Next he knocks all of the pins down and gets a strike.\"]}, \"v_qiw2I1oQIVQ\": {\"duration\": 135.11, \"timestamps\": [[0, 6.76], [11.48, 106.06], [106.73, 135.11]], \"sentences\": [\"Several black and white photos are being shown of people who played drums.\", \" A group of drum players gather, playing in a room.\", \" Their playing is interspersed with images of sheet music, then returns to their performance.\"]}, \"v_Y5puaQ9oNVw\": {\"duration\": 48.74, \"timestamps\": [[0, 21.93], [13.4, 38.75], [35.58, 48.74]], \"sentences\": [\"The gymnasts run to and then did cartwheel and thumbling as he go through the end of the mat.\", \" The player jumped and cartwheel high.\", \" The male gymnast rotate up in the air and then he landed on the end of the mat.\"]}, \"v_CBDFNn15G90\": {\"duration\": 217.43, \"timestamps\": [[0, 51.1], [46.75, 181.56], [152.2, 214.17]], \"sentences\": [\"Several shots are shown of forests that lead into a person gearing up and riding in a kayak.\", \" The person paddles themselves along the rough river as well as showing other people riding along.\", \" They move past rough waters along the river and end by sitting near one another.\"]}, \"v_aJsAuChVmlY\": {\"duration\": 21.02, \"timestamps\": [[0, 2.73], [3.05, 16.08], [16.5, 21.02]], \"sentences\": [\"A woman is seen inside a bathroom.\", \" She is using a dryer to blow dry her hair.\", \" She occasionally uses a brush to help speed the process.\"]}, \"v_C-M4L_WDzK8\": {\"duration\": 209.56, \"timestamps\": [[1.05, 205.37], [10.48, 64.96], [64.96, 207.47]], \"sentences\": [\"A group of women play  field hockey on an outdoor field covered in grass .\", \"  The women run after a white ball on the field while holding hockey sticks.\", \"  The red team and blue team continue to play field hockey while a referee watches on and a guard guards the goal.\"]}, \"v_mJQS2T-IVWc\": {\"duration\": 146.01, \"timestamps\": [[0, 10.95], [10.95, 83.22], [82.49, 103.67], [105.86, 146.01]], \"sentences\": [\"A man in a hard hat walks across a yard to a metal structure.\", \"  He adjusts a ladder and leans it up against the structure, walks back to look, and adjusts it a couple more times.\", \"  When satisfied, he tightens a strap, and grabs a second ladder.\", \"  He climbs up, taking this one with him.\"]}, \"v_LLD4SapVrgQ\": {\"duration\": 206.5, \"timestamps\": [[0, 24.78], [24.78, 75.37], [75.37, 144.55], [144.55, 206.5]], \"sentences\": [\"BMX waiting at the gate for the gate to come down and the race to begin.\", \" They take off on the track going really fast through it really fast.\", \" Florida has several locations for BMXing if you love to do it and don't know where to go, they have 1500 licensed riders and 30 sponsored teams.\", \"They even have some bikes for mini riders that want to be like their daddy's.\"]}, \"v_8leZKBY0B6I\": {\"duration\": 114.2, \"timestamps\": [[0, 66.23], [30.83, 84.51], [67.38, 112.48]], \"sentences\": [\"A person is seen turning her neck to the side and a person wearing gloves holding a needle.\", \" The person then pierces the ear of the girl sitting down.\", \" He puts an earring through the piercing and makes sure it's in place.\"]}, \"v_osLHgm_yuMc\": {\"duration\": 132.05, \"timestamps\": [[0, 132.05], [22.45, 25.09], [66.03, 68.67]], \"sentences\": [\"People are running around playing paintball.\", \" A man falls into a large puddle of mud.\", \" A man falls down and another man runs up to check on him.\"]}, \"v_mQCFphhDFw8\": {\"duration\": 140.27, \"timestamps\": [[2.1, 24.55], [11.22, 117.13], [99.59, 136.77]], \"sentences\": [\"A man in yellow shirt and black tights, walked towards the bike, bend over and unscrew the screw.\", \" The man in yellow shirt took out his tools from his pocket, he took off the bike wheel from the bike, pull out a yellow tool, insert it between the rubber and metal, removed the rubber inside the tire, tried to find the hole, took a square cloth, wipe the tire, then put the sticker, he pumped the rubber then put it back in the tire.\", \" The person screw the wheel back to the bike.\"]}, \"v_WWip1_lFvGg\": {\"duration\": 20.39, \"timestamps\": [[0, 1.53], [1.83, 7.34], [10.19, 18.25]], \"sentences\": [\"A person holds their eye open.\", \" They put a contact lens in the eye.\", \" They then take the contact lens out of their eye.\"]}, \"v_c4GQ3WTOeAA\": {\"duration\": 105.72, \"timestamps\": [[1.59, 30.13], [28.54, 77.18], [70.3, 102.55]], \"sentences\": [\"A small child is seen sitting on a coach opening a present.\", \" The camera pans all around her while she opens the present and smiles to the camera.\", \" She continues to try to open the box while looking and smiling.\"]}, \"v_k_z03d9w_Mk\": {\"duration\": 50.06, \"timestamps\": [[0, 50.06], [23.28, 50.06], [2.5, 22.53]], \"sentences\": [\"A woman and man wearing matching green color dance on stage during a performance.\", \" The man spins his partner during the dance.\", \" The dancers kick up there feet while dancing.\"]}, \"v_63lmoqLxB8c\": {\"duration\": 237.03, \"timestamps\": [[0, 237.03], [0, 235.84], [225.18, 231.1]], \"sentences\": [\"People are playing a game of volleyball on a court.\", \" People are sitting along the benches against a wall watching.\", \" A boy serves the volleyball.\"]}, \"v_qknJO39WUGk\": {\"duration\": 33.23, \"timestamps\": [[0, 2.99], [2.99, 33.23], [11.96, 12.46]], \"sentences\": [\"A boy talks to the camera.\", \" The boy scrubs a metal sink with a brush.\", \" The boy switches his grip on the brush.\"]}, \"v_aaMrQi25WHc\": {\"duration\": 74.1, \"timestamps\": [[5.93, 10], [10.74, 43.72], [18.52, 20.01], [44.09, 68.17], [64.83, 65.94]], \"sentences\": [\"Three people sit on front the ocean.\", \" A man surfs on a small wave, then fly in the air and lands on the shore.\", \" A person takes picture to the surfer.\", \" The man continues surfing, spinning and jumping, after he takes his surfboard and walks on the beach.\", \" A surfer turn over in a wave.\"]}, \"v_8K_gkiWH5EI\": {\"duration\": 224.78, \"timestamps\": [[0, 39.34], [55.07, 171.96], [179.83, 224.78]], \"sentences\": [\"A surfer is standing in the ocean current.\", \" A couple of other surfers join him as they surf into the waves.\", \" They rides the waves to the shore together.\"]}, \"v_kIIAJsYMjyc\": {\"duration\": 52.11, \"timestamps\": [[7.29, 11.98], [12.24, 17.98], [18.24, 32.31]], \"sentences\": [\"A man is seen sitting on the floor and jumping to a standing position.\", \" he then goes back in to a kneeling position and jumps to his feet again.\", \" The same man does this two more times.\"]}, \"v_MRt7pz2OY5M\": {\"duration\": 45.07, \"timestamps\": [[0, 2.93], [2.93, 12.39], [12.39, 41.69], [41.69, 45.07]], \"sentences\": [\"A black intro screen appears and it has the words SUPER WASH in the middle.\", \" A red car and a car behind it is at a car wash and both of them are being worked on by two sets of people at each car.\", \" Now there are 3 cars visible and the same men are working on washing the red car while another man starts working on the 3rd car that's to the side of the red car and all the cars continue to get washed.\", \"The red car is parked outside of the building and it's clean, dry and very shiny.\"]}, \"v_i69NhEDno_M\": {\"duration\": 114.38, \"timestamps\": [[4, 14.3], [14.87, 107.52], [63.48, 66.34]], \"sentences\": [\"People are driving a car down a street.\", \" They are paddling in a boat down a river.\", \" A man is standing in the water holding an oar.\"]}, \"v_rwUlqI6HWyY\": {\"duration\": 201.66, \"timestamps\": [[1.01, 200.65], [1.01, 40.33], [40.33, 131.08], [131.08, 200.65]], \"sentences\": [\"A chef in a white chef\\u2019s uniform stands in an empty commercial kitchen and demonstrates how to make an omelette.\", \"  A chef stands in a kitchen talks to the camera before taking an egg and pouring it into a mini black skillet.\", \"  The chef maneuvers the egg over the stove with a fork gently prodding it.\", \"  The chef then fold the egg in half in the skillet and plates it on a white plate before turning to the camera and talking again.\"]}, \"v_RWTLd_0BeAg\": {\"duration\": 220.22, \"timestamps\": [[0, 69.37], [70.47, 150.85], [150.85, 184.98], [184.98, 220.22]], \"sentences\": [\"Two girls are dancing and twirling batons on a gym floor.\", \" One of the girls leaves and the other girl continues dancing alone.\", \" She starts throwing the batons in the air.\", \" The second girl joins her again and they finish dancing.\"]}, \"v_iKJB-RU_PKY\": {\"duration\": 175.13, \"timestamps\": [[0.88, 90.19], [68.3, 170.75]], \"sentences\": [\"A close up of a table is shown that leads into several clip of a puck moving along the table from various angles.\", \" People push and look down towards the pucks as they move along and continue to play the game with one another back and fourth.\"]}, \"v_jJNDLjhemaE\": {\"duration\": 78.24, \"timestamps\": [[0, 78.24], [14.47, 26.6], [40.69, 43.42], [73.16, 78.24]], \"sentences\": [\"We see an indoor hockey game.\", \" The goalie blocks a shot and a handful of players fight over the puck.\", \" The puck hits the referee and knocks him over.\", \" The goalie blocks a shot.\"]}, \"v_BahcBS2r0es\": {\"duration\": 200.44, \"timestamps\": [[0, 13.03], [9.02, 21.05], [19.04, 35.08], [49.11, 200.44]], \"sentences\": [\"Several children sit along a pool.\", \" They are all wearing flippers.\", \" A girl is underwater wearing scuba gear.\", \" Several children practice wearing scuba gear.\"]}, \"v_j-FGgYaQVio\": {\"duration\": 152.57, \"timestamps\": [[2.29, 146.47], [14.49, 70.94], [70.94, 97.64], [97.64, 150.28]], \"sentences\": [\"A woman in an office is holding a pair of grooming clippers while standing next to a black dog  who is standing on a table next to her while tethered to a metal pole on the table.\", \"  The woman begins to groom the dogs face with the clippers.\", \"  The woman then begins to groom under the dogs front legs.\", \"  Finally, the woman grooms the dogs back legs and tail before a blue and white advertising sign populates.\"]}, \"v_WJ4tCIdAgVo\": {\"duration\": 44.65, \"timestamps\": [[0, 5.13], [16.07, 22.55], [22.77, 44.65]], \"sentences\": [\"A girl is tying a blind fold around another while several children on look and an adult holds the girl in place.\", \" The girl is then handed a bat and attempts to break open a pinata.\", \" The girl succeeds in breaking the pinata and the children get very excited.\"]}, \"v_MDdCBN1o2sE\": {\"duration\": 43.42, \"timestamps\": [[0, 13.46], [13.46, 32.78], [28.22, 41.47]], \"sentences\": [\"A camera pans all around the sky and shows a close up of a kite.\", \" A person is seen standing on the ground and pans back to the kite.\", \" The kite continues to move in the air while a person continue flying it.\"]}, \"v_fZ729TTJq8g\": {\"duration\": 165.49, \"timestamps\": [[0, 46.34], [47.16, 57.09], [57.92, 127.43], [89.36, 93.5], [120.81, 128.25], [128.25, 165.49]], \"sentences\": [\"We see a bike tire and a man interviews BMX bike riders.\", \" We see the riders names and countries.\", \" The men wait then take off riding around the track.\", \"A man falls off his bike and the bike slides.\", \"  Another man falls off his bike and is almost run over.\", \" The man interviews two men after the race and the screen goes green.\"]}, \"v_zEyFuCsJh3Y\": {\"duration\": 61.07, \"timestamps\": [[0, 53.44], [29.92, 33.59], [57.71, 61.07]], \"sentences\": [\"People are working out on cycle bikes in a gym.\", \" A woman in the front stands up and pedals on the bike.\", \" A banner hanging on the wall is shown.\"]}, \"v_3nvVkcxxaJ4\": {\"duration\": 10.96, \"timestamps\": [[0, 10.96], [3.34, 9.48], [4.93, 9.26], [8.93, 10.96]], \"sentences\": [\"A man in black is sitting and playing at a piano while a man in red is standing near drums.\", \" As the man in black plays, the man in red is rolling up a wire.\", \" The man in red begins bobbing his head to the beat of the piano music.\", \" The man then places the wire down.\"]}, \"v_N6vpa6BarX4\": {\"duration\": 184.65, \"timestamps\": [[2.77, 60.93], [57.24, 141.25], [115.4, 179.11]], \"sentences\": [\"A boat is seen riding along the water with people sitting on the sides and watching.\", \" A young boy is then seen swimming underwater that leads into people riding the boat and driving around a city.\", \" The camera continues to pan around the city as well as the nightlife.\"]}, \"v_ujWG6rjlN3s\": {\"duration\": 46.81, \"timestamps\": [[0, 37.45], [38.15, 46.81]], \"sentences\": [\"woman are practicing jumps in a cheerlading team.\", \" woman is laying down in a bed and a man is assisting her.\"]}, \"v_0gkxTQGR6zI\": {\"duration\": 38.21, \"timestamps\": [[0, 38.21], [1.91, 25.41], [21.4, 29.23], [22.16, 27.32], [25.41, 30.38], [29.23, 38.21]], \"sentences\": [\"There are two people dressed in red shirts and blue shorts playing ping pong in a large stadium with lots of spectators watching them.\", \" The players play a long round of ping pong as they continue to maintain a great rally.\", \" The player on the right slices the ball across the ping pong table as he returns the ball to his opponent.\", \" The opponent manages to return the ball without missing it.\", \" They continue to play a great rally as one of the players literally jumps on the ping pong table to return the ball.\", \" The other player falls down on the ground trying to hit the ball back to his opponent.\"]}, \"v_KuAVv3uS4zc\": {\"duration\": 172.55, \"timestamps\": [[0, 28.47], [28.47, 104.39], [106.98, 172.55]], \"sentences\": [\"Several intros lead into a bike race between 3 men on bikes.\", \" One crashes hard while the others pass and continue the race.\", \" All men continue to ride through the track until one eventually wins while one chases him.\"]}, \"v_Va3NsrY1DJ8\": {\"duration\": 85.61, \"timestamps\": [[0, 9.85], [11.99, 75.34], [75.77, 85.61]], \"sentences\": [\"A man is on a tighrope in the snowy woods.\", \" He bounches high into the air, off the rope and back on.\", \" He continues this action throughout the video.\"]}, \"v_GVn7MSMHXxk\": {\"duration\": 56.5, \"timestamps\": [[0, 7.06], [8.19, 23.16], [24.01, 56.5]], \"sentences\": [\"A teen boy is running on the beach.\", \" A dog is chasing him, trying to catch his frisbee.\", \" He throws the frisbee, and the dog jumps into the air to catch it.\"]}, \"v__0sDAdyMtnk\": {\"duration\": 126.33, \"timestamps\": [[0, 4.42], [5.05, 16.42], [38.53, 39.79], [56.22, 57.48], [101.06, 102.96], [124.43, 126.33]], \"sentences\": [\"We see a man conducting an orchestra.\", \" We see a lady in a blue dress is playing in front of the other players.\", \" We see the lady from the back, and we see the other players.\", \" We see a shot of the whole orchestra.\", \" We see the basoon players playing.\", \" We fade to black and the video ends.\"]}, \"v_bd3Df5_QMNw\": {\"duration\": 60.51, \"timestamps\": [[0, 16.64], [14.83, 46.29], [47.2, 60.51]], \"sentences\": [\"A picture of a dog in shown in a tub and leads into hands holding tools and a dog wandering around a tub.\", \" The person puts toothpaste onto a brush and brushes the dog's teeth back and fourth.\", \" Finally she puts gel in the dog's mouth and the dog is seen sitting on a bed waving to the camera.\"]}, \"v_X5_KlfVvi6E\": {\"duration\": 146.47, \"timestamps\": [[11.72, 123.77], [22.7, 146.47]], \"sentences\": [\"Two woman are seen performing on a stage with one playing a flute and the other playing the piano.\", \" The women play a song while the camera zooms in on the flute player and them bowing and leaving in the end.\"]}, \"v_yUHN5TIprwk\": {\"duration\": 56.31, \"timestamps\": [[0, 21.68], [19.43, 44.2], [40.54, 53.78]], \"sentences\": [\"A text intro leads into a person seen sitting on an exercise bike.\", \" The person speaks to a class she is speaking while peddling her feet.\", \" The woman continues moving her feet as well as others in the class.\"]}, \"v_TfFVoogTDJY\": {\"duration\": 60.16, \"timestamps\": [[0, 21.96], [16.54, 43.02], [36.4, 60.16]], \"sentences\": [\"The bikers are biking on the ramp, while on the starting line the group of bikers are  in positioned.\", \" The small fence was put down the the bikers went bike racing over the big ramps.\", \" The spectators are on the side of the tracks.\"]}, \"v_a6Wwa7qvlrA\": {\"duration\": 153.67000000000002, \"timestamps\": [[5.38, 15.37], [15.37, 72.99], [72.99, 87.59], [87.59, 153.67]], \"sentences\": [\"A man holds an iron that pass on top a painting.\", \" A man snowboard down a hill holding a stick.\", \" Snow flying in the air lands on the face of the man, then the man continue snowboarding.\", \" After, the man arrives to the ski station.\"]}, \"v_cyJAifECfH0\": {\"duration\": 17.6, \"timestamps\": [[0, 3.52], [3.17, 12.67], [12.58, 17.16]], \"sentences\": [\"A man is seen bending down before a heavy set of weights.\", \" The man then bends down and lifts the weights over his head.\", \" He continues to hold the weights up and throws them down in the end while walking away.\"]}, \"v_2QeU2xYPdWE\": {\"duration\": 76.23, \"timestamps\": [[0, 38.5], [40.4, 76.23]], \"sentences\": [\"A woman prepares for a shot put throw swinging her arms on a sporting field.\", \" The athlete winds back her shoulders than spins her body throwing a shot put.\"]}, \"v_Paus1tL8KjE\": {\"duration\": 199.14, \"timestamps\": [[0, 15.93], [15.93, 27.88], [27.88, 38.83], [38.83, 48.79], [48.79, 62.73], [52.77, 73.68], [79.65, 88.62], [88.62, 113.51], [113.51, 178.23], [181.21, 199.14]], \"sentences\": [\"Several young men board a small powered boat on a very nice and sunny day.\", \" The slowly back the boat out to go water skiing.\", \" The boat leaves the dock and they're off.\", \" After picking up speed on the powered boat, their friends jump off and have a great time.\", \" A line of rope is thrown out for them to grab onto and it begins.\", \" They pick up speed and a young woman is skiing on the water at a very brisk pace.\", \" She goes back and forth and side to side in slow motion.\", \" The friends look back to see how she is doing.\", \" A young man is shown skiing on the water and is doing a great job.\", \" After he is done he lets go of the line and continues to ski on the water, only to fall back.\"]}, \"v_kF7p6irju1Q\": {\"duration\": 109.99000000000001, \"timestamps\": [[0, 19.25], [23.1, 83.59], [84.69, 109.99]], \"sentences\": [\"A couple of women are shown inside a gym.\", \" One woman talks to the camera while another shows off dance moves.\", \" She demonstrates different ballet moves and positions.\"]}, \"v_NrKBxbZXXg4\": {\"duration\": 92.78999999999999, \"timestamps\": [[0, 76.09], [77.48, 79.33], [82.12, 92.79]], \"sentences\": [\"People are rafting down a choppy river.\", \" A blue raft goes down a high waterfall.\", \" Words are shown on the screen.\"]}, \"v_VkJ03vm8FJk\": {\"duration\": 91.09, \"timestamps\": [[2.28, 91.09], [23.23, 33.25], [56.93, 91.09]], \"sentences\": [\"Two men are holding a flute while one blows and the other moves his hands.\", \" An orchestra shows behind the men while they continue playing on the same instrument.\", \" The men continue playing until the song is finished and take a bow as the band claps.\"]}, \"v_43OU5XCzLzo\": {\"duration\": 36.08, \"timestamps\": [[0.72, 9.38], [9.38, 28.51], [28.69, 36.08]], \"sentences\": [\"People sails in a rocky river on inflatable individual boats.\", \" The boats pass with difficulty between the rocks.\", \" Then, people enters in more troubled waters.\"]}, \"v_NAl-SP-92dI\": {\"duration\": 229.64, \"timestamps\": [[0, 3.44], [4.59, 218.15], [219.3, 229.64]], \"sentences\": [\"A \\\"Monkeysee com\\\" logo appears on screen with the tagline \\\"See how the experts do it.\", \"\\\" A young man stands in the foreground speaking while a female cheerleader stands behind him performing routines.\", \"  The copyright and logo screen appears on a black screen.\"]}, \"v_e4ZTZDDFtYY\": {\"duration\": 204.38, \"timestamps\": [[0, 14.31], [14.31, 60.29], [60.29, 204.38]], \"sentences\": [\"kids are standing in the opening of a cartoon.\", \" woman is talking in front of a micropone in front of a big audience.\", \" mmen are in the middle of an arena in a big stadium fighting between them.\"]}, \"v_ck05xSh9-ig\": {\"duration\": 22.45, \"timestamps\": [[2.25, 22.45], [3.14, 22.23], [12.91, 13.14], [14.93, 21.67]], \"sentences\": [\"A guy is wiping a car tire.\", \" A female walks from driver side lightly rubbing a black cloth on the join the guy.\", \" The female throws the black cloth on a car directly above the tire the man is cleaning.\", \" The man picks up the black cloth, drops the rug on the sidewalk, and uses it to wipe the tire.\"]}, \"v_zE1l4avJZaU\": {\"duration\": 148.28, \"timestamps\": [[0, 69.69], [68.95, 126.04], [126.78, 136.42]], \"sentences\": [\"A person is making a bow out of ribbon.\", \"They tie the ribbon onto a wrapped package.\", \" They tape the bow they made onto the package.\"]}, \"v_y3Ll1puxM8c\": {\"duration\": 231.62, \"timestamps\": [[0, 2.32], [2.32, 211.93], [211.93, 222.36], [222.36, 231.62]], \"sentences\": [\"A black screen appears and the white words read \\\"Nevena & Goran Rodry-Go! El Mambo del Tra\\\".\", \" A man and woman appear outdoors on a concrete brick deck and they begin dancing a routine in unison that include arm movements, steps, spins and various other dance moves.\", \"They stop dancing and the woman walks closer to the camera and sings to it while the man behind her dances along.\", \" She stops singing and they both laugh and walk away.\"]}, \"v_5o9iv0wC59g\": {\"duration\": 45.4, \"timestamps\": [[5.22, 21.79], [21.79, 25.65], [25.65, 32.91], [32.91, 34.05]], \"sentences\": [\"A man wearing a dark blue shirt and sporting a braid begins playing the bongos.\", \" He begins drumming on the bongos to a beat as he shakes his head rhythmically.\", \" He continues drumming on the bongos alternating between the two drums.\", \" He plays for some time and then stops drumming on the bongos.\"]}, \"v_Z8yNbpjUSLc\": {\"duration\": 166.51, \"timestamps\": [[6.66, 116.56], [24.14, 51.62], [81.59, 119.06], [123.22, 149.03]], \"sentences\": [\"A woman is in a kitchen talking about how to make lemonde.\", \" She presents various ingredients that you need to have.\", \" She blends all the juices together into a grinder to make a mixture.\", \" She then pours the mixture into a glass and drinks the juice.\"]}, \"v_3zT7x5jZEfI\": {\"duration\": 230.57999999999998, \"timestamps\": [[0, 76.09], [74.94, 230.58]], \"sentences\": [\"Several shots of an audience cheering are shown as well as many clips of impressive sports events happening.\", \" People hit volleyballs back and fourth to one another while also showing clips of the people celebrating with their team mates.\"]}, \"v_DXG4djsPk7s\": {\"duration\": 19.48, \"timestamps\": [[0, 19.48], [7.89, 12.18]], \"sentences\": [\"A person is wind surfing out on a lake.\", \" Other windsurfers pass behind him.\"]}, \"v_lrxLP-R_ILw\": {\"duration\": 344.46, \"timestamps\": [[0, 80.95], [103.34, 344.46]], \"sentences\": [\"A girl does a tutorial on how to pack a bag.\", \"  She then gives ballerina tips, especially on how to treat one's feet right.\"]}, \"v_gjyT6Rt985k\": {\"duration\": 223.59, \"timestamps\": [[0, 23.48], [23.48, 101.73], [101.73, 157.63], [157.63, 223.59]], \"sentences\": [\"A man walking very slowly toward a woman as she walks slowly towards him.\", \" They meet up and begin their dance, it is very intense and very well done, they work very well together,when they are done they bow and high five each other while the audience cheers for them.\", \" Then one of the judges stands up and speaks to them, causing them to smile and be more ecstatic.\", \" Another female judge critics them and  the woman dancer runs up and hugs them, then the final judge tells them what he thinks of their performance.\"]}, \"v_7PSicg5Q2ZI\": {\"duration\": 229.37, \"timestamps\": [[0, 229.37], [21.79, 53.9], [47.02, 88.31], [47.02, 229.37]], \"sentences\": [\"A woman in a green shirt stands in a kitchen.\", \" She stands in front of several ingredients.\", \" She cuts a lemon in half.\", \" She laughs a lot throughout the video.\"]}, \"v_ze4292jVUcQ\": {\"duration\": 33.37, \"timestamps\": [[0.17, 33.37], [0.17, 33.2], [12.01, 18.69], [23.36, 33.2]], \"sentences\": [\"A group of people in swim caps are playing volleyball in an outdoor pool, surrounded by a spattering of onlookers,  and an upright digital scoreboard.\", \"  A yellow ball flies into the right side of the pool and the people in the pool swim and move it to the left side of the pool, while a man in all white tracks them from the side of the pool on a raised cement border.\", \"  A person in the front spikes the yellow ball against a blue goal and past a goal blocker in the pool.\", \"  A person on the far left of the pool throws the ball into the right side of the pool where all of the players swim to follow it.\"]}, \"v_A7PBp9PDW80\": {\"duration\": 32.02, \"timestamps\": [[0.48, 9.77], [8.17, 21.77], [18.89, 30.9]], \"sentences\": [\"A young boy is seen looking off into the distance as well as a girl.\", \" People are seen walking inside followed by clips of people fencing.\", \" More shots are shown of people practicing and a girl bumping into an older man.\"]}, \"v_X2LI_I_qw-A\": {\"duration\": 32.65, \"timestamps\": [[0, 32.65], [0, 24], [0, 32.48]], \"sentences\": [\"A group of kids are hanging out by a picnic table.\", \" A young girl peels potatoes.\", \" A young boy cuts the potatoes.\"]}, \"v_7uumfT4aGLU\": {\"duration\": 43.68, \"timestamps\": [[0, 11.36], [11.36, 43.68]], \"sentences\": [\"A male gymnast is in an arena full of people and grabs two bars to begin his routine.\", \"After he is on the bars,he does several flips and turns before landing his performance and leaving the mat.\"]}, \"v_MfFM_a26bR8\": {\"duration\": 107.88, \"timestamps\": [[0, 107.88], [32.9, 107.88]], \"sentences\": [\"A person is seen riding around on the horse in a closed in area.\", \" The camera continues to follow him riding around the area galloping around.\"]}, \"v_R586XlFT7Go\": {\"duration\": 69.1, \"timestamps\": [[0, 22.46], [20.04, 69.1]], \"sentences\": [\"A woman is seen speaking to the camera and leads into a woman running and interviewing other runners.\", \" She interviews two twins while running and the news shows off other runners in the area.\"]}, \"v_CIcVR4m7nOc\": {\"duration\": 87.56, \"timestamps\": [[0, 5.25], [11.38, 17.51], [24.96, 39.4], [48.6, 67.86]], \"sentences\": [\"Several people stand outside of cars.\", \" They get in a river on tubes.\", \" They float near a large bridge.\", \" The water gets a little choppy.\"]}, \"v_M96TST6CN4M\": {\"duration\": 87.73, \"timestamps\": [[0.88, 48.25], [36.41, 86.85]], \"sentences\": [\"A large man is seen bending down on his knees moving his arms around and looking off into the distance.\", \" The man continues moving all around on the mat performing various martial arts moves and moving back and fourth to the camera.\"]}, \"v_7QvvqWJRwNo\": {\"duration\": 22.43, \"timestamps\": [[0, 10.43], [12.45, 13.57], [17.05, 22.43]], \"sentences\": [\"People are sliding down a snowy slope with inflated tires.\", \" A child stands in the tire and jumps for joy.\", \" An adult gets up and pulls both tires.\"]}, \"v_3VkqckKyshc\": {\"duration\": 66.71, \"timestamps\": [[0, 40.69], [0, 66.71], [40.69, 66.71]], \"sentences\": [\"A man dressed in a camouflaged suit is standing in a large grassy field with other people and he's pulling on a string we can barely see.\", \"There are a lot of other people moving around on the field doing their own thing.\", \"The camera angles are changing and when we get a close up of the man we can finally see the string he is pulling on.\"]}, \"v_V90aT-d_FKo\": {\"duration\": 77.83, \"timestamps\": [[19.85, 53.32], [53.32, 60.71], [60.71, 75.89], [75.89, 77.06]], \"sentences\": [\"A woman is bathing two white colored puppies in an orange tub filled with water.\", \" She is joined by a man wearing a wrist watch, who helps the woman bathe the two puppies.\", \" One of the puppies tries to step out of the tub and the man holds him and puts him back in.\", \" The woman continues washing the puppies.\"]}, \"v_OM0jqPYx700\": {\"duration\": 30.09, \"timestamps\": [[0, 6.17], [3.61, 23.02], [20.61, 30.09]], \"sentences\": [\"A man in black shirt wipe the table with white cloth.\", \" The white lights are reflected on the table.\", \" The man wipe the edge of the table with white rag.\"]}, \"v_gYvYh9aMohY\": {\"duration\": 201.23, \"timestamps\": [[0, 29.18], [26.16, 51.31], [50.31, 89.55], [89.55, 201.23]], \"sentences\": [\"A boy is jumping rope and doing tricks around in circles.\", \" Then, Another boy is jumping rope as well and swirling it around and he eventually throws his rope.\", \" There is a larger group of 5 that jump rope in sync and do a lot of cool tricks.\", \" Followed by a lot of videos of many different people jumping and in groups together doing it in competitions and for fun or practice.\"]}, \"v__BWSmg81iMM\": {\"duration\": 34.3, \"timestamps\": [[0, 29.32], [0, 28.64], [29.84, 34.12]], \"sentences\": [\"A band wearing Scottish kilts plays bagpipes and other instruments in the front University auditorium.\", \" The crowd looks around and anticipates the event.\", \" The school sign is seen hanging above the podium.\"]}, \"v_jEN2smSwZ-o\": {\"duration\": 178.35, \"timestamps\": [[0, 11.59], [12.48, 16.05], [16.94, 147.14], [148.03, 163.19], [164.08, 178.35]], \"sentences\": [\"A man with tattoed arms swabs the ear of young lady with an ear swab.\", \"  The lady stand up and looks at herself in the mirror.\", \"  She lays down on a black medical chair and the man pierces her ear's tragus with medical tools.\", \"  The lady looks at herself and her new piercing in the mirror, smiles and gives two thumbs up.\", \"  The words \\\"If you want to know anything else about piercing just comment or message me:) New beauty videos along with a makeup collection will be up soon Bveeees<3\\\" appear on screen.\"]}, \"v_RW7LEc-Ykh8\": {\"duration\": 50.5, \"timestamps\": [[0, 4.04], [8.33, 44.19], [45.45, 50.5]], \"sentences\": [\"A gymnast walks up to a beam, preparing himself.\", \" He mounts the beam, then does several acts around it, including spinning and flipping.\", \" He dismounts and walks away.\"]}, \"v_SthTqCtPg7s\": {\"duration\": 216.81, \"timestamps\": [[0, 63.96], [62.87, 137.67], [134.42, 216.81]], \"sentences\": [\"A camera captures a net in front of the sky and shows two people preparing ropes for bungee jumping.\", \" The camera man jumps off the ledge and shows his feet while spinning around.\", \" Another camera captured his jump from the bottom and leads into several people waiting at the bottom and driving away.\"]}, \"v_uC27rJLCn70\": {\"duration\": 67.36, \"timestamps\": [[0, 31.32], [31.66, 38.73], [39.07, 67.36]], \"sentences\": [\"A young boy in a blue jacket pulls onto a donut snow tube.\", \" Two young kids watch him.\", \" The whole group goes down the snow.\"]}, \"v_Izr9-P7YIKw\": {\"duration\": 49.34, \"timestamps\": [[0, 4.93], [5.18, 16.53], [16.78, 28.62], [28.87, 39.47], [40.21, 49.34]], \"sentences\": [\"A woman removes a bolt from a tire.\", \" The woman removes a second bolt.\", \" The woman removes a third bolt.\", \" Lastly, the woman removes a fourth bolt.\", \" The woman takes the tire off the car.\"]}, \"v_ObqrS-ZONKM\": {\"duration\": 127.22, \"timestamps\": [[0, 80.15], [43.26, 127.22]], \"sentences\": [\"A couple is seen performing a tango routine with one another in a small room.\", \" The people continue spinning and dancing all around the room and ends with them stopping and facing the camera.\"]}, \"v_s3JuGKwna6o\": {\"duration\": 47.35, \"timestamps\": [[3.31, 27.7], [7.34, 24.62], [28.88, 45.93]], \"sentences\": [\"A group sits at a cafe table and enjoys cafe and pastries.\", \" The women pass condiments to each other.\", \" A small group sits on a balcony and talk.\"]}, \"v_VEzhpSPnBrY\": {\"duration\": 77.76, \"timestamps\": [[0, 77.76], [1.56, 77.76], [61.82, 77.76]], \"sentences\": [\"A man is kneeling down on the ground.\", \" He is pulling on a cord that is attached to the wall.\", \" He continues pulling on the cord and working out.\"]}, \"v_M4IUb6kp2yo\": {\"duration\": 70.43, \"timestamps\": [[0, 7.39], [9.51, 48.59], [48.59, 70.43]], \"sentences\": [\"A man walks up to a hedge carrying a large pair of hedge trimmers.\", \" He shows how to trim the hedges neatly, going down them a little at a time.\", \"He stops, talking to the camera as he goes.\"]}, \"v_tnk1skdLN0Q\": {\"duration\": 113.24000000000001, \"timestamps\": [[0, 7.93], [7.93, 36.24], [36.24, 90.6], [90.03, 113.24]], \"sentences\": [\"A strong young man is standing in a large open green field preparing to throw a shot put.\", \"Once he throws the ball,a man runs out to mark the distance and he walks to the tent and takes the tape off of his wrist.\", \"Another man who is slightly shorter and larger approaches the circle and does the same thing followed by another person.\", \"All three of the men are finished and there scores shown.\"]}, \"v_wuZkli4TSZQ\": {\"duration\": 59.93, \"timestamps\": [[0, 20.98], [17.08, 43.45], [32.36, 56.34]], \"sentences\": [\"A woman is seen standing before pinata and swinging a bat.\", \" People watch on the side as the woman continue to hit the object.\", \" The woman swings over and over and a man comes into frame to kick it.\"]}, \"v_DlJPKOVd0bA\": {\"duration\": 126.29, \"timestamps\": [[0, 11.37], [14.52, 83.99], [85.25, 126.29]], \"sentences\": [\"A group of children are standing outside a building.\", \" Adults supervise them as an officer walks by.\", \" The kids perform various exercises led by the adults.\"]}, \"v_AS0hqTk_mIs\": {\"duration\": 41.89, \"timestamps\": [[0, 3.35], [5.03, 6.91], [9.43, 30.58], [31.42, 41.89]], \"sentences\": [\"In 2009, a man is shown sitting at a table.\", \" He has two rubik's cubes in front of him.\", \" As a timer runs, he solves the puzzle using only one hand.\", \" He jumps up in victory after only 17 seconds.\"]}, \"v_DrigU09Wf7k\": {\"duration\": 150.98, \"timestamps\": [[0, 107.95], [40.01, 107.95], [85.3, 145.69]], \"sentences\": [\"The person is climbing on the stairs as the waves hit them, the surfers are surfing over the strong waves.\", \" Two people carrying their surfboards are climbing on the stairs.\", \" The people  behind fence are watching the surfers as the run before the big wave hit them.\"]}, \"v_o_Davs3OrOw\": {\"duration\": 29.79, \"timestamps\": [[0, 2.38], [3.13, 25.17], [25.32, 29.79]], \"sentences\": [\"A little boy wearing goggles jumps into a pool.\", \" He dives down to the bottom and picks something up off the bottom of the pool.\", \" He swims back to the top and above water.\"]}, \"v_wZgSzWl5Hgg\": {\"duration\": 103.83, \"timestamps\": [[0, 39.97], [40.49, 84.1], [84.62, 103.83]], \"sentences\": [\"A line of people pick up a rope.\", \" They begin playing a game of tug of war.\", \" One side falls over and the crowd cheers.\"]}, \"v_VIjOP5ZBvHg\": {\"duration\": 71.22, \"timestamps\": [[0, 6.41], [6.05, 23.86], [23.5, 55.19], [55.9, 71.22]], \"sentences\": [\"A black screen appears with the words,\\\"Ticas Grooming Purse\\\" along with their url.\", \"A dog is then shown hanging from a silver pole with two straps on him.\", \"A human then begins grabbing the dogs paws as the little dog tries to bite her.\", \"The grooming continues and then the dog is eventually put back down on the ground.\"]}, \"v_OMYnLCWTdEA\": {\"duration\": 143.01, \"timestamps\": [[0, 138.01], [38.61, 106.54], [107.97, 143.01]], \"sentences\": [\"A man is squatting down in a big open room talking.\", \"  The man demonstrates how to do a dance move.\", \"  He then does the move several times and hops up to his feet.\"]}, \"v_8JgckTuL1WA\": {\"duration\": 124.18, \"timestamps\": [[0, 124.18], [1.24, 124.18], [91.27, 122.32]], \"sentences\": [\"People are playing a game of badminton on a court.\", \" People are sitting behind them watching the game.\", \" A girl in a pink shirt picks up the ball.\"]}, \"v_Ouy1exEw_dI\": {\"duration\": 129.27, \"timestamps\": [[0, 14.87], [20.68, 40.72], [38.78, 92.42], [106.64, 129.27]], \"sentences\": [\"A man prepares himself on a dock to go water skiing.\", \" He launches into the water as the boat guns off.\", \" The man holds onto the rope while gliding through the water, looking very confident and skilled.\", \" The boat is tied up on the dock and the man is finished for the day.\"]}, \"v_gQLH5G88ClE\": {\"duration\": 177.26, \"timestamps\": [[0, 37.23], [38.11, 101.93], [78.88, 144.47], [112.56, 175.49]], \"sentences\": [\"A close up of a christmas tree is shown followed by close ups of ornaments.\", \" Two people are then seen moving around the tree decorating as well as turning the lights off.\", \" They finish decorating the tree and playing with one another and laughing.\", \" In the end close ups of the trees are shown as well as a bear.\"]}, \"v_rZmNsUX-7SU\": {\"duration\": 16.42, \"timestamps\": [[0, 16.33], [0, 4.84], [9.69, 15.43]], \"sentences\": [\"A girl and a dog are on the swing set.\", \" They swing up and back down.\", \" They swing up and back down again.\"]}, \"v_0xJPQ1I8-e0\": {\"duration\": 27.98, \"timestamps\": [[0, 15.95], [14.13, 23.78], [14.13, 27.98]], \"sentences\": [\"The man in blue helmet is paddling through the water current.\", \" Two rafts are stuck in running water.\", \" The people are paddling through the water but they are stuck in one spot.\"]}, \"v_6Bm-_hI5A9A\": {\"duration\": 171.94, \"timestamps\": [[2.58, 92.85], [92.85, 171.94]], \"sentences\": [\"A man is shown playing a violin in front of a video game being played on tv.\", \" The man continues playing the instrument while the tv in the background shows a game being played.\"]}, \"v_pF-r_m8LVPs\": {\"duration\": 216.02, \"timestamps\": [[0, 66.96], [59.4, 166.33], [131.77, 210.62]], \"sentences\": [\"A large group of people are seen standing at the bottom of a snowy hill speaking to one another.\", \" The people are then seen riding in tubes and going down a snowy trail.\", \" Several shots are shown of people riding down the mountain while looking and smiling to the camera.\"]}, \"v_HnM44lX65cQ\": {\"duration\": 58.96, \"timestamps\": [[0.29, 21.52], [22.4, 58.96]], \"sentences\": [\"A seated man is using a sharpener to sharpen a large knife.\", \" He scrapes it along the surface and underbelly of the knife, sharpening it.\"]}, \"v_L1XpfS1RCzE\": {\"duration\": 25.08, \"timestamps\": [[0, 13.92], [10.78, 15.67], [14.92, 25.08]], \"sentences\": [\"The person is riding a blue single raft.\", \" The man is paddling through the strong current of water.\", \" The man fell in the small falls.\"]}, \"v_34cQhizPKfc\": {\"duration\": 183.46, \"timestamps\": [[0, 144.02], [20.18, 99.99], [125.67, 179.79]], \"sentences\": [\"A video of back country skiing is shown.\", \"  The group prepares its equipment and then looks at its yurt.\", \"  They then show skiing videos.\"]}, \"v_2SMmL6kIx-w\": {\"duration\": 231.97, \"timestamps\": [[0, 10.44], [10.44, 90.47], [90.47, 231.97]], \"sentences\": [\"Several performers walk out of a box and it ends up being one male and one female.\", \"The lady then begins moving in strange ways and continuing telling a story in ballerina form.\", \"After a few minutes,the male joins them and they continue dancing together with strong legs and firm arms.\"]}, \"v_HM3Rd5ZcME8\": {\"duration\": 225.76, \"timestamps\": [[0, 28.22], [28.22, 44.02], [44.02, 130.94], [130.94, 225.76]], \"sentences\": [\"A girl wearing a white ski jacket runs along the ski slope pulling an orange inner tube.\", \" A tubing attendant assists a group of kids load up on their inner tubes.\", \"The kids slide down the slope together in their inner tubes.\", \"The kids climb back up the tubing slope and slide down on their inner tubes once again.\"]}, \"v_27e4y89XeyI\": {\"duration\": 20.09, \"timestamps\": [[0, 14.06], [14.56, 20.09]], \"sentences\": [\"An older black male is standing in the kitchen ironing a dark grey t-shirt.\", \"The man then pauses his ironing and looks at the person who is filming him and continues to put on his shirt.\"]}, \"v__il2j9UtSe4\": {\"duration\": 8.82, \"timestamps\": [[0.09, 1.68], [1.63, 6.27], [4.94, 8.74]], \"sentences\": [\"A man is seen with messy hair and looking off in the distance.\", \" He holds up a coffee cup and turns towards the camera.\", \" He then gives a big smile while looking to the camera.\"]}, \"v_jIQFVSymHQs\": {\"duration\": 11.73, \"timestamps\": [[0, 2.52], [2.46, 11.73]], \"sentences\": [\"An inflatable ball bounces on the grass as kids watch playing a game.\", \" A young boy in blue shirt and jeans retrieves the ball and runs towards the group.\"]}, \"v_cP2LVnGxiww\": {\"duration\": 223.93, \"timestamps\": [[5.6, 10.08], [19.03, 91.81], [117.57, 223.93]], \"sentences\": [\"This man is shown holding a pumpkin in the beginning of the video then he carves the top off and gets the seeds and everything else out of the pumpkin.\", \" Someone gives one of the snow dogs a piece of the pumpkin.\", \" Then he puts the stencil on the pumpkin and carves a snow dog into the pumpkin.\"]}, \"v_rBVbsbJJcyM\": {\"duration\": 132.73, \"timestamps\": [[0, 1.33], [1.33, 41.81], [41.81, 90.25], [90.25, 126.09], [126.09, 132.73]], \"sentences\": [\"An introduction comes onto the screen for a fine linen company.\", \" A woman explains that she will describe how to fold cloth napkins.\", \" She starts by pressing the napkin with a hot iron.\", \" She folds the napkin and continues to press it some more.\", \" The video ends with the closing credits.\"]}, \"v_Wr7YbcQ_Q9g\": {\"duration\": 40.19, \"timestamps\": [[0.2, 40.19], [0.2, 30.95], [30.95, 40.19]], \"sentences\": [\"A young boy mows the front lawn in a suburban residential neighborhood.\", \"  A young boy in t-shirt and shorts maneuvers a lawn moves back and forth across a small patch of lawn as he mows the lawn.\", \"  The boy then walks the mower down a longer stretch of lawn near the corner across from a stop sign.\"]}, \"v_R_ffZ9kGeTI\": {\"duration\": 168.9, \"timestamps\": [[0, 5.91], [5.91, 82.76], [35.47, 39.69], [82.76, 92.05], [92.05, 105.56], [105.56, 132.59], [132.59, 166.37]], \"sentences\": [\"A large open outdoor area is shown by a moving camera.\", \" A man wearing a helmet is shown riding a skateboard with a long wooden plan base in various outdoors locations.\", \" A second rider joins the first rider on the skateboard.\", \" A clip of a man not wearing a helmet and riding another skateboard is shown.\", \" The helmeted man with the plank as a skateboard is shown again.\", \" Several other individuals riding other skateboards are shown.\", \" The original skateboarder is shown again.\"]}, \"v_QjaqFPDoImc\": {\"duration\": 27.17, \"timestamps\": [[0, 11], [11, 27.17]], \"sentences\": [\"A man is running through a concrete sidewalk with steps in his Kangaroo shoes.\", \"More people appear and they too begin to jump throughout crowds of people.\"]}, \"v_H0gSWEElh6A\": {\"duration\": 145.75, \"timestamps\": [[13.85, 42.27], [42.27, 75.79], [75.79, 92.55], [92.55, 126.8], [126.8, 138.46]], \"sentences\": [\"There's a man demonstrating how to use a hand setting tool.\", \" He is hammering nails into a wooden bar.\", \" He uses the tool to properly align the nails before hammering it in.\", \"He then demonstrates how the hammering process would look without using the alignment tool.\", \" Then he uses the alignment tool to show thew difference it makes to hammer a nail into wood when the tool is used.\"]}, \"v_0-auIBOTx9E\": {\"duration\": 151.65, \"timestamps\": [[0, 18.96], [19.71, 84.17], [84.92, 151.65]], \"sentences\": [\"A skinny man,is talking on the phone bowling and knocks down all the bowling pins.\", \"Next,he has to go through several obstacles to roll the ball down and he ends up making it anyways.\", \"Some of them include,bowling with pins in the lane,standing from behind a chart,and even doing it with his eyes covered.\"]}, \"v_dsCJ4xdRq-Q\": {\"duration\": 28.86, \"timestamps\": [[0, 5.63], [7.65, 23.23], [24.24, 28.86]], \"sentences\": [\"A group of four boys are at a table.\", \" As a timer counts, a boy is trying to solve a rubik's cube.\", \" He solves the cube, and shakes hands with the other boys.\"]}, \"v_Q711Ki5aFHw\": {\"duration\": 126.2, \"timestamps\": [[13.88, 111.06], [42.91, 46.69], [50.48, 56.79], [92.76, 99.7], [104.12, 111.06]], \"sentences\": [\"A group dances in a spotlight wearing traditional chines robes and hats.\", \" The men pretend to pull imaginary ropes.\", \" The men crouch down one after the other and thrust there hips.\", \" The men stand back to back in a partial circle and dance.\", \" The men hold up there arms like a Hindu goddess.\"]}, \"v_WwcbpTANbeU\": {\"duration\": 77.83, \"timestamps\": [[0, 6.62], [8.95, 43.2], [43.59, 77.83]], \"sentences\": [\"A view is seen of a deep canyon with a lift above it.\", \" A man is dressed in bungee gear by another man.\", \" He jumps out, then swings back and forth over the thin waters.\"]}, \"v_bV4xdc71azY\": {\"duration\": 211.88, \"timestamps\": [[0, 75.22], [75.22, 211.88]], \"sentences\": [\"man is in a kichen holding a pan on stove and preparing an omelette.\", \" man is holding a bag and holds the pan, grab some cheese fom he bag and bend the omelette.\"]}, \"v_PTkNBVyhUuo\": {\"duration\": 140.5, \"timestamps\": [[0, 26.7], [27.4, 115.92], [107.49, 140.5]], \"sentences\": [\"A group of people are seen standing around bow and arrows then the camera camera down a long line of people shooting bows.\", \" A man is then seen speaking to the camera followed by Several shots of random people shooting the arrows to a target.\", \" Many people watch on the sidelines and is followed by more shots of people shooting bows.\"]}, \"v_JlgDwIT9KLI\": {\"duration\": 109.82, \"timestamps\": [[0, 14.83], [23.61, 73.03], [75.23, 109.82]], \"sentences\": [\"A red bowl contains a spoon and tuna fish in chunks.\", \" Someone pours mayonnaise into the tuna, as well as seasoning.\", \" The substance is mixed together, then spread onto the bread to make a sandwich.\"]}, \"v_PUGP8PSlJEA\": {\"duration\": 176.87, \"timestamps\": [[0, 176.87], [174.21, 176.87]], \"sentences\": [\"A man is rock climbing on a wall next to a rock.\", \" He gets to the top and releases himself to fall to the bottom.\"]}, \"v_LHu41OIGw7Q\": {\"duration\": 99.88, \"timestamps\": [[0, 33.96], [26.47, 75.91], [55.93, 98.38]], \"sentences\": [\"A camera pans around a lake area and leads into a person climbing into a kayak.\", \" The person then begins paddling along the water while moving underneath bridges.\", \" The person continues paddling all along the water and looking up to the camera.\"]}, \"v_5kXIZCs22l8\": {\"duration\": 105.7, \"timestamps\": [[0, 17.44], [17.44, 105.7]], \"sentences\": [\"woman is posing to a camera in a white room.\", \" man is standing behind the wmoan cutting her hair with a scissor and the model is posing.\"]}, \"v_YamDoDK71Ds\": {\"duration\": 211.85, \"timestamps\": [[0, 46.61], [46.61, 97.45], [97.45, 153.59], [153.59, 211.85]], \"sentences\": [\"A woman in a belly dancing outfit is dancing moving her body very strategically.\", \" She has her hands up in the air moving as she moves her hips very quickly.\", \" She talks about her love for belly dancing and stuff.\", \" Then you see her a different purple belly dancing outfit dancing outside.\"]}, \"v_IvkpJMxlRKc\": {\"duration\": 29.35, \"timestamps\": [[0, 28.76], [23.04, 28.76], [28.76, 29.35]], \"sentences\": [\"A man was peeling a potato using a green peeler.\", \" He peeled the middle part one more time.\", \" Thrown it in the container.\"]}, \"v_JguB9cLEXGY\": {\"duration\": 83.17, \"timestamps\": [[0, 21.21], [20.38, 83.17]], \"sentences\": [\"A person is seen holding up a stick followed by several clips of people throwing a javelin.\", \" More shots are shown of athletes throwing the javelin great distances while screaming each time after their throw.\"]}, \"v_lBfyQsXSvUk\": {\"duration\": 126.2, \"timestamps\": [[27.76, 99.7], [34.71, 99.7], [52.37, 53.64], [89.6, 99.7]], \"sentences\": [\"A man is sitting in a chair.\", \" He is getting a tattoo on his arm.\", \" A man watches him get the tattoo.\", \" He gets his tattoo wraps with saran wrap.\"]}, \"v_5aTek77vxBA\": {\"duration\": 43.45, \"timestamps\": [[0, 7.6], [8.47, 28.02], [30.41, 42.58]], \"sentences\": [\"A woman kneels outdoors on a concrete ground and rinses clothes out and washes them using a metal bucket for the rinsing and the ground as a washboard for the clothes.\", \"  A little girl walks up to the woman and pours more water in the woman\\u2019s metal bucket then walks away to stand next to a well where another woman is kneeling and washing clothes in the same way.\", \"  The first woman is shown again this time washing a large white sheet against the ground using the metal bucket again for the water supply.\"]}, \"v_pRzFL4_I-cE\": {\"duration\": 134.33, \"timestamps\": [[1.34, 69.85], [53.06, 128.28]], \"sentences\": [\"Several shots of a casino is shown that includes close ups of poker tables and people sitting at a table playing.\", \" Many shots are shown of the dealer dealing cards while turning them around and the audience reacting.\"]}, \"v_UyqM2sglj1s\": {\"duration\": 237.87, \"timestamps\": [[0, 13.08], [16.65, 47.57], [48.76, 237.87]], \"sentences\": [\"A person is snowboarding on a mountain.\", \"  There is a montage of roads leading to a mountain and a chairlift.\", \"  People jump on ramps and halfpipes.\"]}, \"v_sZbkKa2iKrM\": {\"duration\": 59.99, \"timestamps\": [[0.6, 17.1], [16.5, 45.89], [42.59, 59.39]], \"sentences\": [\"A text intro leads into a wrestler slamming down another wrestler in a ring.\", \" The video continues with more shots of the man pinning down wrestlers.\", \" Several more shots are shown and ends with a subscribe option.\"]}, \"v_vY77rUOOgwg\": {\"duration\": 54.52, \"timestamps\": [[0.82, 23.17], [17.72, 32.99], [31.35, 54.52]], \"sentences\": [\"The man in brown shirt is talking to the camera.\", \" The man placed a tool on the carpet with long pole.\", \" The man used the stretcher to flatten the carpet on the floor.\"]}, \"v_AY2usHrPYL0\": {\"duration\": 226.49, \"timestamps\": [[0, 16.99], [16.99, 20.38], [20.38, 217.43], [65.68, 78.14], [116.64, 142.69], [156.28, 171], [218.56, 226.49]], \"sentences\": [\"We see a store, maps, and people on a bus.\", \" We see people at the beach.\", \" We see people in the lake and in rafts.\", \" We see a dog on the raft.\", \" We see a person paddling a raft.\", \" We see a dog swimming in the river.\", \" We see the ending screen in blue.\"]}, \"v_GMwV9roiBYo\": {\"duration\": 166.49, \"timestamps\": [[0, 14.15], [14.15, 14.98], [14.98, 23.31], [23.31, 36.63], [36.63, 51.61], [51.61, 59.94], [59.94, 79.08], [80.75, 114.88], [147.34, 166.49]], \"sentences\": [\"A man is skating on a hockey rink and goes to make a goal.\", \" He shoots and makes a point and the crowd cheers.\", \" He makes another point and the crowd cheers.\", \" A team of yellow jerseys rushes onto the ice to congratulate him.\", \" They are lined up on the court while a man in a suit walks away from them.\", \" The man in the suit stops and talks to another man.\", \" He waves and walks back towards the players.\", \" The team beings skating towards the people.\", \" They skate across the ice and a man stands on the stands and holds up a trophy.\"]}, \"v_eC4l8AuAmKw\": {\"duration\": 165.0, \"timestamps\": [[0, 165], [0, 164.18], [2.48, 165]], \"sentences\": [\"A large group of people are dancing in pairs on a dance floor.\", \" People watch from tables all around the dance floor.\", \" A man with a microphone stands on the dance floor.\"]}, \"v_tRAntV9Om2o\": {\"duration\": 127.76, \"timestamps\": [[0, 22.36], [23, 97.1], [96.46, 127.76]], \"sentences\": [\"A man wearing a hat is seen putting on gloves and starting up a machine in some tall grass.\", \" The man then moves the machine all along the grass to cut it down.\", \" He pauses for a moment to speak to the camera and raises his hands up.\"]}, \"v_9S9hPRDwi24\": {\"duration\": 8.31, \"timestamps\": [[0, 2.12], [2.37, 8.31]], \"sentences\": [\"A stick is being held from the ground.\", \" A man uses the croquette bat to hit a ball, then places it back to the ground.\"]}, \"v_-t2ikmhg9_w\": {\"duration\": 194.58, \"timestamps\": [[0, 20.43], [24.32, 134.26], [137.18, 194.58]], \"sentences\": [\"A woman is seated on the floor, talking about a vacuum cleaner.\", \" She demonstrates how to apply powder to the carpet, and vacuum it up.\", \" She then shows how to clean the vacuum out, and the mechanics of the machine.\"]}, \"v_KaGXQh-UHVU\": {\"duration\": 121.79, \"timestamps\": [[0, 8.53], [10.35, 59.68], [59.68, 73.68], [74.29, 92.56], [93.17, 101.08], [101.69, 119.35]], \"sentences\": [\"A group of people are in a house.\", \" A man is mopping the floor with a mop.\", \" Another boy attempts to walk through where he is mopping.\", \" The man takes a drink of beer and complains to the camera.\", \" He mops through the room in between the people.\", \" He stops mopping and speaks to the camera.\"]}, \"v_1LdbczjQPII\": {\"duration\": 163.32999999999998, \"timestamps\": [[0, 13.88], [13.88, 21.23], [22.05, 26.95], [39.2, 41.65], [44.1, 47.37], [52.27, 55.53], [62.07, 65.33], [66.97, 71.05], [78.4, 89.01], [98, 102.08], [106.16, 107.8], [127.4, 132.3], [139.65, 140.46], [142.1, 152.71]], \"sentences\": [\"A globe is turning with writing in front of it.\", \" A man throws a bowling ball into various pins.\", \" He bounces it off of  trampoline and knocks pins down.\", \" The throws a bowling ball off a bridge.\", \" A woman throws the ball down at pins.\", \" A man catches the bowling ball and throws it to pins.\", \" A man bounces it off a car and hits pins.\", \" Another trampoline trick is shown.\", \" A man throws a bowling ball down a slide and a person catches it at the bottom.\", \" A man throws a bowling ball up a hill and it rolls back down and hits pins.\", \" Two men bounce balls off trampolines to hit pins.\", \" A remote control car drives the bowling ball to hit pins.\", \" Two men high five after knocking pins down.\", \" A man standing on top of a building throws a ball down and hits pins.\"]}, \"v_57J-q04z1Hs\": {\"duration\": 22.24, \"timestamps\": [[0, 22.24], [0.11, 22.01], [6.34, 22.24]], \"sentences\": [\"Two  dancers dance in the center of the floor where there aren't many people watching.\", \" They're both wearing black decor and they're turning the batons in many different ways and music is playing.\", \" Many people are cheering, some are standing and others are sitting.\"]}, \"v_k_bvz0NHKBo\": {\"duration\": 169.04, \"timestamps\": [[3.38, 11.83], [11.83, 126.78], [126.78, 161.44]], \"sentences\": [\"Two boys and two girls compete beer pong while other persons watch.\", \" Almost all the balls throw by the boys land in the cups, only one ball is missed.\", \" The girls talk each other while looking the boys.\"]}, \"v_mBHsAuDJmj4\": {\"duration\": 176.43, \"timestamps\": [[0, 22.05], [23.82, 132.32], [137.61, 176.43]], \"sentences\": [\"a man in overalls sits in front of a large wheel of metal.\", \" He picks up a torch, and begins welding.\", \" Sparks fly as he wears his mask, welding the equipment.\"]}, \"v_YUN8d87DNNY\": {\"duration\": 176.1, \"timestamps\": [[0, 26.42], [9.69, 26.42], [27.3, 50.19], [62.52, 65.16], [75.72, 88.93]], \"sentences\": [\"A woman is sweeping in front of a barn.\", \" Chickens are on the ground behind her.\", \" She is shoveling dirt into a wheel barrow.\", \" Men are sweeping in front of the barn.\", \" A woman is brushing a horse with a brush.\"]}, \"v_SzCK4QuEG3c\": {\"duration\": 105.21000000000001, \"timestamps\": [[0, 5.79], [7.89, 25.25], [26.3, 69.96], [71.02, 83.12], [84.17, 105.21]], \"sentences\": [\"A set of knifes rest on top of pin cones.\", \" A pocket knife is taken from wooden box and held with a clamp.\", \" The man uses sharpening stones on the blade of the knife.\", \"The man cuts through pieces of paper to show the knifes sharpness.\", \" A still shot of a hot open fire pit is seen.\"]}, \"v_f0rWFvJ7uTk\": {\"duration\": 41.22, \"timestamps\": [[0, 10.51], [1.03, 18.75], [10.1, 15.87], [20.2, 27.82], [28.03, 35.24], [33.8, 40.8]], \"sentences\": [\"A group of boys line up in a baseball field then run to chase the ball.\", \" A woman rolls a kick ball on the field.\", \" The ball is returned to the field by someone on the sideline.\", \" A boy runs around the bases on the field.\", \" The group of boys point and signal to other players on the field.\", \" A boy kicks the ball and the other players run around the bases.\"]}, \"v_NDvp3JeVWcM\": {\"duration\": 125.81, \"timestamps\": [[14.47, 42.77], [42.77, 63.53], [63.53, 78.63], [78.63, 98.13], [98.13, 105.68], [105.68, 118.89], [118.89, 120.77]], \"sentences\": [\"There is large indoor gym where a gymnastic event is being held.\", \" There is a girl gymnast who is performing on the bars.\", \" There are spectators watching her as she swings swiftly.\", \" She gets off the bars and is congratulated by her coach.\", \" The awards are then presented to the winners of the competition.\", \" the winners stand on stage to receive their medals of victory.\", \" The score board shows the names of all the winners.\"]}, \"v_0-igBOtXYeE\": {\"duration\": 154.34, \"timestamps\": [[0.77, 152.03], [43.22, 91.06], [91.83, 131.96], [137.37, 145.86]], \"sentences\": [\"Several different wrestling battles are shown with many different wrestlers showcased.\", \"  A man is hoisted onto the shoulders of another man and is then thrown down onto a table, which breaks in half with the force of his weight.\", \"  Several more wrestlers are thrown violently onto ring floors and flat surfaces and tables, with one dark and long haired man appearing several times throughout the clip screaming in an animated way.\", \"  A red haired man talks to a camera near the end of the clip.\"]}, \"v_asyXgaH1Sro\": {\"duration\": 61.63, \"timestamps\": [[0, 61.63], [0, 15.1], [14.79, 54.54], [51.46, 61.01]], \"sentences\": [\"Two men are talking on the sidewalk.\", \" An orange fork lift goes by behind them.\", \" One of the men is brushing the other mans hair.\", \"  The man in the red shirt plays with his hair.\"]}, \"v_-L-LiCO1v-s\": {\"duration\": 162.49, \"timestamps\": [[0, 30.87], [31.69, 37.37], [39, 40.62], [42.25, 49.56], [51.19, 128.37], [51.19, 99.12], [88.56, 91], [103.18, 127.56], [134.87, 162.49]], \"sentences\": [\"A man standing in front of orange flowers talks.\", \" A small dog is laying on the ground.\", \" A shower head is shown.\", \" A woman is sitting on a bed with the dog.\", \" Her and the dog are in the shower.\", \" She is spraying the dog with water.\", \" A bottle is being held up to be shown.\", \" She dries the dog off with a white towel.\", \" A robot is dancing on the screen.\"]}, \"v_LjfF72Hwpyg\": {\"duration\": 238.73, \"timestamps\": [[0, 28.65], [33.42, 205.3], [214.85, 238.73]], \"sentences\": [\"A snow piled lawn is shown.\", \" A man on a tractor is pulling a kid on a tube over mounds of snow over and over.\", \" It ends with the boy close up, and another eating cereal from the top of a staircase.\"]}, \"v_V3uCGRAWG2M\": {\"duration\": 104.21000000000001, \"timestamps\": [[13.55, 30.22], [30.22, 46.37], [46.37, 67.22], [67.22, 77.12], [77.12, 93.79], [93.79, 99]], \"sentences\": [\"A representative of the GCN Network is talking and demonstrating how to use tools to fix bike wheels.\", \" He is standing near an elevated blue bike with several tools displayed on a wall behind him.\", \" He is using an Allen key to lever the bike tire.\", \" He rotates the bike tire and then uses the Allen key to adjust the screws.\", \" Then he resets the pistons of the wheel to realign them.\", \" Then he precisely fits in the attachment into the wheel.\"]}, \"v_Sb2SPX38lyQ\": {\"duration\": 167.46, \"timestamps\": [[0, 30.98], [31.82, 74.52], [74.52, 110.53], [110.53, 147.37], [148.2, 167.46]], \"sentences\": [\"A dark sky with a moon and cloud is shown in between trail so dirt.\", \"After,A man wearing a hat is shown walking down the trail and several dirt bikers racing are shown.\", \"The man then puts on a helmet,the bar is let down and he begins jumping over a hill.\", \"As the video continues,you are following the man racing through the trail and doing tricks and riding at side angles to ensure that the tricks are landed and he doesn't fall off.\", \"The man then reappears and the reflection of racing is shown in his eye before he walks off.\"]}, \"v_ifmHO5lQq18\": {\"duration\": 150.6, \"timestamps\": [[0, 150.6], [0, 9.04], [60.24, 66.26], [83.58, 87.35], [147.58, 150.6]], \"sentences\": [\"A blonde woman runs and does a high jump repeatedly.\", \" A woman in white in the background does a high jump.\", \" A black lady walks past the camera.\", \" The black lady appears again and adjusts something on the ground.\", \" A man raises a red flag.\"]}, \"v_tjUuEqmLGeI\": {\"duration\": 161.03, \"timestamps\": [[0, 16.1], [16.1, 60.39], [60.39, 115.14], [115.14, 161.03]], \"sentences\": [\"A girl in her dance uniform is standing with her mom talking waiting for her turn to come up, when it's her turn she and her partner walk on stage.\", \" They begin to do their routine with their batons.\", \" They work well together and one of the girls does a flip while the other girl holds her, they continue on with the rest of their routine.\", \" They end their routine, one of them kneeling and the other behind her and get up and walk off the stage.\"]}, \"v_x1wy8QmHZL8\": {\"duration\": 120.12, \"timestamps\": [[0, 10.21], [10.21, 109.91], [15.01, 118.92], [109.91, 120.12]], \"sentences\": [\"A girl in a blue and sparkly costume is standing on a court while holding two batons.\", \"The girl begins her baton routine and starts  her routine and twirls the batons and her body.\", \" Judges at a table watch her the whole time while they also write on a piece of paper.\", \"The girl drops her baton, picks it up and then continues on with her routine.\"]}, \"v_7iuU-zsauOY\": {\"duration\": 143.85, \"timestamps\": [[0, 36.68], [36.68, 94.94], [94.94, 143.85]], \"sentences\": [\"A man is deep water scuba diving with some type of machine as if he is searching for something.\", \"In the midst,he begins playing with a small fish before continuing on his search.\", \"The man continues traveling through the water at a slow pace but he isn't finding anything.\"]}, \"v_dI6TWaB6tls\": {\"duration\": 110.67, \"timestamps\": [[0, 110.67], [5.53, 103.47], [6.09, 87.43], [49.25, 109.56]], \"sentences\": [\" Two dancers engage in a ballroom dance in front of a live band and a full televised audience.\", \"    A woman in a ballroom outfit approaches a man in a ballroom dance, when the two meet they begin to dance across the floor using elaborate footwork during the dance.\", \"  A phone number inviting people to call in and vote for them appears on the screen along with the network logo.\", \"  The two continue to dance exhibiting slides, pickups, a last kiss and slides on the dance floor as the people in the audience clap.\"]}, \"v_55bimE5eU9E\": {\"duration\": 113.88, \"timestamps\": [[0, 113.88], [44.98, 51.82], [51.82, 64.91], [65.48, 71.75], [71.75, 88.83], [88.83, 93.95]], \"sentences\": [\"A man and a woman stand by each other as the man speaks.\", \" The woman reaches down and lifts a bar.\", \" She makes small lifts against her thighs.\", \" She continues the small lifts and adds a variance of big lifts.\", \" She lifts the bar over her head and brings it down to her thigh area to continue the small lifts.\", \" She brings the bar back over her head and drops it down to the ground.\"]}, \"v_3HP2E_a9xrU\": {\"duration\": 213.32, \"timestamps\": [[0, 56.53], [50.13, 164.26], [149.33, 207.99]], \"sentences\": [\"A small child is seen swinging at a pinata with a large group of children behind them.\", \" More kids stand up to take a swing at the pinata as parents walk around the kids.\", \" One last girl attempts to break the pinata in the end.\"]}, \"v_t_D9MYkEPEo\": {\"duration\": 182.59, \"timestamps\": [[0, 17.35], [31.04, 133.29], [136.94, 182.59]], \"sentences\": [\"an audience claps as a couple appears on stage.\", \" They dance gracefully, spinning and twirling.\", \" The couple bow as they finish their routine.\"]}, \"v__BHoMDR2ZVg\": {\"duration\": 31.51, \"timestamps\": [[0, 9.77], [11.19, 23.63], [23, 29.93]], \"sentences\": [\"A man wearing glasses is seen speaking to the camera in a tattoo shop.\", \" The man is laying on a table and waving to the camera.\", \" He shows his outline and a man begins tattooing his leg.\"]}, \"v_X1WExPnfJjE\": {\"duration\": 32.21, \"timestamps\": [[0, 18.84], [18.36, 32.21]], \"sentences\": [\"A young girl is seen sitting in front of the camera running a brush down her long hair.\", \" She suddenly jumps and screams towards the camera while smiling and setting the brush down.\"]}, \"v_aFVthcfDK9Q\": {\"duration\": 31.46, \"timestamps\": [[0, 7.87], [8.18, 30.05], [8.81, 24.38]], \"sentences\": [\"A city next a river is displayed on a screen.\", \" Reporters talk in a TV set where other people are working.\", \" A man wearing white shirt clean his face while looking a mirror.\"]}, \"v_pD-zyfLtC6w\": {\"duration\": 93.1, \"timestamps\": [[0.93, 1.4], [2.33, 4.19], [4.66, 91.24]], \"sentences\": [\"A biker seated on a bike revs the engine.\", \" Another biker is shown seated on a bike, making a gesture with both arms.\", \" Scenes of various bikers failing stunt jumps are shown, with occasional crowd reaction and aftermath shots.\"]}, \"v_G1LGXWN_9v4\": {\"duration\": 129.45, \"timestamps\": [[0, 125.57], [21.36, 129.45]], \"sentences\": [\"A man is seen playing a bongo drum quickly moving his hands all around the instrument.\", \" He continuously plays the drum while closing his eyes in concentration and ends by hitting his hands faster.\"]}, \"v_28P5f3p_32g\": {\"duration\": 139.53, \"timestamps\": [[0, 16.05], [16.74, 85.81], [85.11, 139.53]], \"sentences\": [\"A man is shown holding a knife while taking to the camera and smiling.\", \" He begins cutting the tomato laid out on the table in various sections.\", \" He then sharpens the knife on the machine next to the vegetable and shows how much better it works.\"]}, \"v_3AWvyAJv20g\": {\"duration\": 135.91, \"timestamps\": [[0, 135.91], [33.3, 59.12], [61.84, 106.01], [107.37, 114.16]], \"sentences\": [\"A woman folds towels on an ironing board at home.\", \" Different clothing items are seen such as shirts, socks, and ties.\", \" The woman adds a tag to a piece of clothing and irons it in place.\", \" The tag is shown close up.\"]}, \"v_HddRC-twMLc\": {\"duration\": 14.12, \"timestamps\": [[5.93, 12], [12, 13.2]], \"sentences\": [\"There's man dressed in a blue shirt and blue shorts shooting darts in a room that has beige walls.\", \" He has two darts in his hands which he aims and shoots at a target.\"]}, \"v_-yn3D1fOfr0\": {\"duration\": 80.74, \"timestamps\": [[0, 15.34], [16.15, 54.5], [54.5, 61.36], [78.31, 79.52]], \"sentences\": [\"A woman in a black shirt is talking in front of a Christmas tree.\", \" She begins putting decorations on the Christmas tree.\", \" She places a gold bow on the top of the tree.\", \" Three women are talking in front of the tree.\"]}, \"v_nO2tXrQDD8I\": {\"duration\": 55.33, \"timestamps\": [[0, 53.4], [8.58, 12.45], [35.69, 39.56]], \"sentences\": [\"Several individuals play against each other in a table football match.\", \" Two individuals walk by in the background.\", \" Another two individuals walk by in the background.\"]}, \"v_JVfhBvlv0IY\": {\"duration\": 125.39, \"timestamps\": [[0, 25.7], [15.67, 76.49], [57.05, 121.63]], \"sentences\": [\"An athletic man is seen standing ready and runs down a long track into a sand pit.\", \" The man walks away while looking into the audience followed by another man running into the pit.\", \" Several more men take turns running down with their run showed again afterwards.\"]}, \"v_efaYmJsTDJc\": {\"duration\": 74.03, \"timestamps\": [[0.74, 25.17], [19.62, 59.22], [48.12, 73.29]], \"sentences\": [\"A camera ia seen showing the outside of a home followed by a girl sitting in a tub.\", \" She looks to the mirror and has a friend hand her a solo cup.\", \" She runs throughout the house outside and shows a close up of mouth wash.\"]}, \"v_gLPJ7_VhWVU\": {\"duration\": 216.76, \"timestamps\": [[0, 85.62], [86.7, 146.31], [147.4, 185.33], [186.41, 211.34]], \"sentences\": [\"A young lady explains how to put makeup on the eye lid using a brush.\", \" The young lady use an eyeliner to paint the border of the top lid.\", \" Then, she puts mascara to her eyelashes, and paint the the lower lid.\", \" After, she brush her cheek and put lipstick on the lips.\"]}, \"v_xC5RVs9mXyM\": {\"duration\": 57.33, \"timestamps\": [[0, 22.07], [16.91, 44.14], [28.67, 54.18]], \"sentences\": [\"A large marching band are seen standing in the middle of a big crowd.\", \" The band then begins playing with one another in the circle.\", \" The people continuing playing with one another while people watch on the sides.\"]}, \"v_zFb7PKk_-vA\": {\"duration\": 94.28999999999999, \"timestamps\": [[0, 16.97], [12.26, 70.72], [59.87, 90.99]], \"sentences\": [\"A woman is seen speaking to the camera while a group of people sit in tubes around her.\", \" The other people smile and wave to the camera while showing off the other tubes.\", \" The people continue to ride around the water while the camera pans all around their movements.\"]}, \"v_Ni7Lqloy5Qc\": {\"duration\": 217.94, \"timestamps\": [[0, 42.5], [42.5, 89.36], [89.36, 171.09], [171.09, 217.94]], \"sentences\": [\"A woman is seen speaking to the camera as well as other people in a car wit her.\", \" Shots of her and her friend are shown through a frame and leads into them looking at tattoos.\", \" They're shown singing in the car and waiting to get a tattoo down while still speaking to the camera.\", \" The girls are then each shown getting tattoos done and ends with pictures of their tattoos being shown off.\"]}, \"v_U_Pb3Wm_pb4\": {\"duration\": 99.08, \"timestamps\": [[0, 3.47], [5.45, 15.36], [18.83, 41.12], [63.41, 79.76], [88.68, 96.11], [97.59, 99.08]], \"sentences\": [\"An orange rope is tied to a tree and dangling in the wind.\", \" A man steps up on the rope and begins to walk across it.\", \" The man jumps down off of the rope and starts at the beginning to walk across it.\", \" The man jumps off again and gets back on the rope and jumps off.\", \" The man tightens the rope.\", \" The camera shows the ground.\"]}, \"v_Uo9q4riquHM\": {\"duration\": 102.87, \"timestamps\": [[0, 26.74], [17.49, 18.52], [26.74, 33.95], [34.97, 102.86], [78.18, 85.38], [85.89, 94.64], [94.64, 102.86]], \"sentences\": [\"It is raining outside while a man is on a lawn mower mowing his lawn.\", \" The camera focuses on water dripping down.\", \" The man rearranges himself on the mower.\", \" He continues to mow the lawn.\", \" The camera focuses on the running water again.\", \" It goes back to the man mowing.\", \" Then switches back to the running water.\"]}, \"v_QosVN26lb1g\": {\"duration\": 33.46, \"timestamps\": [[0, 25.43], [8.53, 13.38], [21.58, 24.76], [25.1, 32.46]], \"sentences\": [\"We see a woman hitting a pinata.\", \" The lady pauses to line up her shot.\", \" The lady holds the pinata as she hits it.\", \" A man takes the bat from the ladies hands.\"]}, \"v_ivmBrbO32Qo\": {\"duration\": 67.94, \"timestamps\": [[0, 10.53], [11.55, 56.39], [56.73, 67.94]], \"sentences\": [\"a man in a lab coat uses a swiffer broom.\", \" He rakes it across a floor with cleaning solution.\", \" The floor shines as it comes clean beneath his feet.\"]}, \"v_HzmT-lvHrpM\": {\"duration\": 210.51, \"timestamps\": [[7.37, 206.3], [77.89, 97.89], [119.99, 143.15], [68.42, 75.78]], \"sentences\": [\"A man stands with a bicycle on a rack and shows its different parts and features including the wheels.\", \" The man turns the crank and the wheel spins on the bike.\", \" The man spins the front wheel by hand.\", \" The man tightens a screw with his hand tool.\"]}, \"v_WhEdTfs7U5E\": {\"duration\": 142.36, \"timestamps\": [[11.39, 67.62], [50.54, 141.65]], \"sentences\": [\"At beach, several volleyball nets in different colors are set up, while people are standing or sitting on the side off the nets.\", \" Different teams, with combination of males and females played the beach volleyballs in the nets assigned to them.\"]}, \"v_PMy2EyktRmo\": {\"duration\": 84.99, \"timestamps\": [[0, 84.99], [3.4, 84.99]], \"sentences\": [\"People are working out on exercise bikes.\", \" A man in a blue shirt is standing in front of them running around.\"]}, \"v_lj-VovhJcPA\": {\"duration\": 213.02, \"timestamps\": [[0, 17.04], [61.78, 84.14], [87.34, 112.9], [145.92, 157.63], [158.7, 213.02]], \"sentences\": [\"A reporter talks in a TV set, then a reporter talks in a park, then a map of London is shown.\", \" A man shows a bag with a cigarette and then it is show next of papers.\", \" After, the man is in a backyard explaining to the reporter.\", \" People are in a park walking, a person with a pet and mother with a child.\", \" A man and a woman talk with the reporter.\"]}, \"v_LFOlEafI35c\": {\"duration\": 16.07, \"timestamps\": [[0.16, 15.02], [0.72, 2.09], [2.81, 7.95], [8.36, 15.83]], \"sentences\": [\"Two young men arm wrestle in a kitchen using a standing cat chair as an table.\", \"  A young man in a white tank top places his elbow on a elevated cat chair along with another young man in a black shirt.\", \"  The two young men begin to arm wrestle.\", \"  The man in the black shirt wins the arm wrestling match at which point the man in the white tank top backs away and stands in front of a refrigerator next to a girl drinking a canned beverage.\"]}, \"v_avxSMcGBdG8\": {\"duration\": 91.33, \"timestamps\": [[0.91, 13.24], [13.24, 21], [21, 32.42], [32.88, 35.16], [35.16, 63.93], [63.93, 68.95], [68.95, 79.45], [79.45, 91.33]], \"sentences\": [\"Individuals play croquet, with the camera only showing their lower legs an the balls and mallets.\", \" A group of people in witch costumes stand together as one talks.\", \" More small videos of people playing croquet are shown.\", \" The group of people in witch costumes are shown again.\", \" A series of croquet teams are shown, with some of them wearing costumes.\", \" The group of people in witch costumes is shown once more.\", \" Yet more small videos of people playing croquet are shown.\", \" And ending title screen is shown.\"]}, \"v_n9P4ltD0g2k\": {\"duration\": 213.37, \"timestamps\": [[0, 213.37], [43.74, 75.75], [92.82, 117.35], [131.22, 136.56], [148.29, 158.96], [158.96, 198.43]], \"sentences\": [\"A man is standing behind a bar.\", \" He starts cutting up fruit and putting it in the glass.\", \" He starts mashing the fruit with a stick.\", \" He adds ice to the glass and pours alcohol in.\", \" He shakes the drink and pours it into a tall glass.\", \" He adds some liquid and stirs it with a straw.\"]}, \"v_tEAEFVJGGG0\": {\"duration\": 147.4, \"timestamps\": [[0, 2.21], [2.21, 139.29], [140.03, 147.4]], \"sentences\": [\"The credits of the clip are shown.\", \" A man trims the bush on the lawn with a electric cutter.\", \" The credits of the video are shown.\"]}, \"v_I9ZeyASdgTk\": {\"duration\": 48.95, \"timestamps\": [[0, 35.24], [35.49, 48.95]], \"sentences\": [\"A person turn on a button of a device with a long road next to a wood box.\", \" Then, the man put the rod in a hole and sparks come out, after the man end doing sparkles.\"]}, \"v_iMF8-iDLl6U\": {\"duration\": 219.66, \"timestamps\": [[0, 10.98], [14.28, 70.29], [70.29, 140.58], [51.62, 142.78], [142.78, 188.91], [188.91, 210.87], [210.87, 219.66]], \"sentences\": [\"An intro featuring the text \\\"how to change a tire\\\" plays.\", \" A woman has a tool that allows you put the tire on to a rim while a man holds the tool.\", \" The woman then uses the same tool to remove the tire from the rim.\", \" The person filming shows an iPhone's timer at various points to show how long a step should take.\", \" The tool that removes the tier from the rim is shown and how it works.\", \" A man opens a Bridgestone locker or machine to show the inside.\", \" The video ends with an image of a solar powered vehicle.\"]}, \"v_nnWON1EzK0o\": {\"duration\": 20.16, \"timestamps\": [[0, 7.86], [7.26, 20.16]], \"sentences\": [\"A person is seen riding on a horse into a pit chasing down a baby calf.\", \" The man ropes the calf and jumps off the horse to tie him up then walks back to the horse.\"]}, \"v_MM5mreexkI8\": {\"duration\": 77.72, \"timestamps\": [[0, 8.55], [8.94, 38.47], [38.86, 50.52], [50.91, 54.79], [55.18, 60.23], [64.12, 67.61]], \"sentences\": [\"A young girl runs through the living room dropping flowers and dirt around.\", \" A woman grabs a vacuum and vacuums the floor.\", \" She inserts a tool into the vacuum and vacuums along the baseboards.\", \" She uses a special tool of the vacuum to vacuum around the sofa and the stair carpet.\", \" She uses another tool of the vacuum to vacuum around windows.\", \" She pulls a tray out of the vacuum.\"]}, \"v_maXU1lGguxs\": {\"duration\": 85.22, \"timestamps\": [[0, 9.8], [9.8, 76.7], [76.7, 85.22]], \"sentences\": [\"A beautiful young woman holding a violin in hand begins to motion back and forth against the strings with the bow to play a song that she has practiced.\", \" The nicely dressed woman in black with white sleeves continues playing and smiling intermittently while eloquently holding down different chords and notes in the corner of the room next to a piano dancing back and forth as she plays.\", \" The woman stops playing and smiles once more before walking out of view of the camera putting the violin down and ending the song.\"]}, \"v_EfJIu_moZaE\": {\"duration\": 191.8, \"timestamps\": [[0, 16.3], [24.93, 135.22], [141.93, 191.8]], \"sentences\": [\"A person goes sailing by another boat in the water.\", \" Several scenes are shown of people sailing on the boats.\", \" A man is standing and talking to the camera.\"]}, \"v_TjMdEjgAKLw\": {\"duration\": 51.87, \"timestamps\": [[0, 47.98], [15.82, 20.75], [36.05, 40.2], [49.02, 51.87]], \"sentences\": [\"A man stands on metal stilts an pulls a large straight edge over a ceiling to flatten out the plaster.\", \" The man reaches the nearest side and then turns around to continue.\", \" The man reaches the far side of the room and turns around to continue.\", \" The man finishes and lowers the straight edge tool smiling.\"]}, \"v_ykcLgz3DlYg\": {\"duration\": 133.17, \"timestamps\": [[0, 17.31], [17.98, 55.26], [60.59, 108.53], [109.86, 129.84]], \"sentences\": [\"We see half a cake on a form with a person hand pointing to things.\", \" We see the person spins the cake with the cardboard above it.\", \"  A person scrapes wax paper over the cake.\", \" We see a whole globe covered in chocolate.\"]}, \"v_eyfUkLbsixg\": {\"duration\": 197.65, \"timestamps\": [[0, 20.75], [23.72, 25.69], [28.66, 37.55], [39.53, 41.51], [49.41, 52.38], [177.88, 179.86]], \"sentences\": [\"A woman in a red suit is talking behind a desk.\", \" A man is standing up holding his foot behind is back.\", \" People are running down the sidewalk.\", \" A man in a blue shirt is talking to the camera.\", \" A woman in a black shirt is talking to the camera.\", \" People are running down a trail.\"]}, \"v_iJ6rHJf_Hgo\": {\"duration\": 134.17, \"timestamps\": [[0, 10.73], [10.06, 120.08], [94.59, 103.31], [116.72, 122.76], [122.76, 134.17]], \"sentences\": [\"We see a skateboarder walk with his board.\", \" the man then skateboards down a busy street.\", \"  The boarder has his hand on the ground as he skates.\", \" The boarder takes a right turn.\", \" The cars drive by and the scene ends.\"]}, \"v_eEfvYiuGULM\": {\"duration\": 163.54, \"timestamps\": [[0, 148.82], [58.87, 86.68], [103.85, 129.2], [157.82, 163.54]], \"sentences\": [\"Athletes throw a javelin across the field during a competition in a stadium.\", \" The athlete is not pleased with his throw and slaps his legs in frustration.\", \" The athlete is moderately pleased with his throw and claps his hands walking away and nods his head.\", \" A scoreboard is seen with the results of the competition.\"]}, \"v_S4GiCywMi38\": {\"duration\": 199.62, \"timestamps\": [[2, 199.62], [9.98, 25.95], [38.93, 85.84], [78.85, 126.76], [127.76, 188.64]], \"sentences\": [\"A man demonstrates how to apply make up to a face by applying make up to his own face in the camera.\", \"  A man talks to the camera, close up, while standing in front of a mirror.\", \"  The man begins to put on makeup blush using a brush and brushing across the apples of his cheeks.\", \"  The man then runs a crayon like makeup tool across his cheeks before returning to apply blush to his cheeks and forehead.\", \"  the man then uses a narrow and wide brush across his cheeks and then back to the regular brush for the same areas of his face.\"]}, \"v_ZKo3_ifK2tQ\": {\"duration\": 33.79, \"timestamps\": [[0, 8.11], [8.11, 15.71], [15.71, 33.79]], \"sentences\": [\"A toy bear wearing red and white overalls pours a cup of coffee into a yellow coffee cup.\", \" The camera man zooms in on the toy bear from a side view to a front view.\", \" The camera man pans out and moves to a side view of the toy bear and zooms out.\"]}, \"v_D_GSISuQw3Y\": {\"duration\": 201.9, \"timestamps\": [[25.24, 60.57], [60.57, 95.9], [95.9, 127.2], [127.2, 175.65], [175.65, 201.9]], \"sentences\": [\"There's a girl wearing a brown Cheers shirt doing a demonstration on how to paint her nails.\", \" She shows a bottle of magenta nail polish that she has already used on her nails.\", \" Then she takes a strip of rhinestones that she meticulously places and glues on her painted fingernails.\", \" Then she coats her nails and the rhinestones with a layer of neutral polish to secure the rhinestones.\", \" She talks in the camera as two boys stand behind her trying to participating in the video tutorial.\"]}, \"v_m8SFyH4vhik\": {\"duration\": 105.77000000000001, \"timestamps\": [[5.29, 6.87], [7.4, 89.37], [89.37, 93.6]], \"sentences\": [\"A girl jumps onto a balance beam.\", \" She does a gymnastics routine on the balance beam.\", \" She dismounts and lands on the mat next to the beam.\"]}, \"v_9WXl-2sINno\": {\"duration\": 119.35, \"timestamps\": [[0, 13.13], [13.73, 47.74], [47.74, 87.72], [87.13, 119.35]], \"sentences\": [\"A young girl giving a make up tutorial.\", \" She begins with the eye shadow.\", \" She gets a little bit distracted and starts talking to someone else in the room.\", \" She then finishes her other eye and laughs a little bit.\"]}, \"v_U4ua-VD7hNM\": {\"duration\": 127.64, \"timestamps\": [[0, 14.68], [10.85, 29.36], [25.53, 45.95], [45.95, 127.64]], \"sentences\": [\"A person is seen laying on a long wire and walks his way all the way to end.\", \" He attempts to flip across the string again but fails and hurts himself.\", \" Several more men are seen watching from the sides when one slides across again.\", \" Another man is seen doing a flip on a rock and more shots people walking and jumping onto the string are shown.\"]}, \"v_1gM0xfKN-Kc\": {\"duration\": 220.99, \"timestamps\": [[0, 59.67], [59.67, 117.12], [117.12, 220.99]], \"sentences\": [\"Several men and women are outside on a silver adult monkey bars climbing across it.\", \"After they all finish,the people get off and run back to do another set on the monkey bars.\", \"In the distance,more people are coming from the trail and a young boy is shown going across the bars before a group of images of them doing different activities are shown.\"]}, \"v_2ErgL7-MXHw\": {\"duration\": 11.09, \"timestamps\": [[0, 0.33], [0.33, 10.98], [8.43, 10.59]], \"sentences\": [\"Two men stands on front a tall hedge holding trimmers.\", \" The men cuts the top of the hedge.\", \" Leaves falls from the top of the hedge.\"]}, \"v_lsvZBtYMXZM\": {\"duration\": 102.97999999999999, \"timestamps\": [[0, 9.27], [9.27, 10.3], [10.3, 30.38], [25.75, 30.38], [30.38, 67.97], [67.97, 73.63], [73.63, 102.98]], \"sentences\": [\"Two people are standing face to face under a spotlight.\", \" The man wearing a black and white suit simulates a slap to the woman wearing a dress on the right.\", \" A man wearing a black tank top immediately runs into the spotlight to stand between the two and they all begin to dance as the room is lit up to show a large dancing area with people in the audience watching them.\", \" The three continue to dance until the man in the black tank top picks the woman up and throws her to the ground and leaves the dance floor.\", \" The man in the suit and the woman continue to dance alone.\", \" The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit dodges the punch and pushes the man in the tank top out of the dance floor.\", \" The man in the suit and the woman in the dress continue to dance alone and they end dramatically in a pose with her back on the ground and the man hovering above her.\"]}, \"v_M5UrBI13R3s\": {\"duration\": 40.54, \"timestamps\": [[0, 16.01], [16.01, 21.49], [21.49, 26.96], [26.96, 38.11], [38.11, 40.54]], \"sentences\": [\"A white intro screen appears and red letters in a foreign language appear flashing on the screen.\", \"A white bowl filled with water and 3 potatoes appear in one bowl, and ice cubes are in another white bowl.\", \"A hand then grabs the top potato, the bowl of ice cubes and pours the cubes into a bigger white bowl that already has water in it.\", \"The two hands now drop the potato into the larger bowl with the ice cubes and water and the fingers begin to peel off all of the skin under the water and when all the peels are gone the potato is placed onto a clean white plate.\", \"The white outro screen appears and more foreign red letters appear.\"]}, \"v_VFVAkH9zPIM\": {\"duration\": 205.34, \"timestamps\": [[0, 5.13], [5.13, 23.61], [23.61, 26.69], [26.69, 163.24], [163.24, 174.53], [174.53, 200.2], [200.2, 205.34]], \"sentences\": [\"We see the title introducing us to Jesse.\", \" Jesse the dog runs and catches Frisbee.\", \" We see Jesse close up in the camera.\", \" Jesse is running around catching the Frisbee the lady throws.\", \" We see five still shots of Jesse jumping in the air.\", \" Jesse continues to run around with his Frisbee.\", \" We see the end credits on a black screen.\"]}, \"v_We0DJIKCBOw\": {\"duration\": 24.96, \"timestamps\": [[0, 6.24], [6.24, 15.73], [15.6, 17.6], [17.72, 22.09], [22.09, 24.96]], \"sentences\": [\"A woman is shown preparing to lift a barbell into the air.\", \" She lifts it into the air and above her head.\", \" She drops the barbell to the ground.\", \" She bows for the crowd and blows them a kiss.\", \" She then walks off stage.\"]}, \"v_zBg0FEtpC-o\": {\"duration\": 223.07999999999998, \"timestamps\": [[3.35, 223.08], [59.11, 108.19], [105.96, 169.54], [153.92, 219.73]], \"sentences\": [\"A man in a black knit hat talks to the camera while standing in front of a table with items on it and in front of a yellow truck with a black star on the door.\", \"  The man picks up an orange packet from the table and later a smaller yellow packet and an orange device, all while talking.\", \"  The man then places the yellow packet and orange device on the table next to each other on a metal table.\", \"  The man then takes a metal plate, puts it upside down and starts a fire on top of it using the materials in the packet, before returning to talk to the camera again.\"]}, \"v_6RxF2UHMYQM\": {\"duration\": 210.62, \"timestamps\": [[0, 9.48], [9.48, 208.51]], \"sentences\": [\"A person picks up a paint brush and can of varnish on an outside lawn.\", \" The person paints a coat various boards leaning up against an exterior wall of home.\"]}, \"v_yWvyLG3kq2I\": {\"duration\": 45.54, \"timestamps\": [[0, 6.83], [6.83, 22.08], [44.17, 45.54]], \"sentences\": [\"A large water fall is shown.\", \" A person goes over the water fall in a green kayak.\", \" People are standing on the rocks above the water watching.\"]}, \"v_KkpQ347Ceak\": {\"duration\": 51.99, \"timestamps\": [[0, 51.99], [20.54, 30.93], [50.43, 51.99]], \"sentences\": [\"A person is putting food into a bowl.\", \" They crack a nut and put that into the bowl.\", \" They crack another nut over a black tray.\"]}, \"v_-HKsU_uFUWo\": {\"duration\": 119.32, \"timestamps\": [[0, 119.32], [0, 15.51], [27.44, 75.17]], \"sentences\": [\"woman is kneeling down in the floor talking to the camera holding a bend slide and opens it  in the living room.\", \" dog is walking behind th woman.\", \" baby is walking to the woman and climb to the slide.\"]}, \"v_Q9UovyMsTLc\": {\"duration\": 154.32, \"timestamps\": [[0, 28.55], [29.32, 96.45], [96.45, 131.94], [130.4, 154.32]], \"sentences\": [\"Three girls are seen standing behind a counter speaking to the camera with one spreading butter around a pan.\", \" Another mixes ingredients into a bowl with another girl's help and the girls lick the spoon used afterwards.\", \" They pour the mixture into a pan, put it in the oven, then shortly take it out some time after.\", \" Frosting is then seen all over the cake and the girl's spread it around and serve pieces onto a plate, followed by them eating on in a living room.\"]}, \"v_7CNEttu-t7g\": {\"duration\": 88.42, \"timestamps\": [[0, 38.46], [38.02, 88.42]], \"sentences\": [\"A large exercise machine is shown.\", \" A man sits down and starts working out on the exercise machine.\"]}, \"v_weeD4A7gl2A\": {\"duration\": 27.55, \"timestamps\": [[0, 6.75], [6.47, 27.55]], \"sentences\": [\"A car is seen sitting inside a car wash on a security camera with rags moving up and down the vehicle.\", \" A man then opens his door which is followed by the machine taking off the door and the car driving away.\"]}, \"v_jx7_0MRlScw\": {\"duration\": 91.16, \"timestamps\": [[0, 91.16], [17.32, 29.17]], \"sentences\": [\"People are driving around playing bumper cars.\", \"  A man has to help get cars unstuck.\"]}, \"v_G0g7vEwI0z8\": {\"duration\": 106.05, \"timestamps\": [[39.24, 56.73], [60.98, 89.08], [90.67, 106.05]], \"sentences\": [\"Two people are cooking in pans on the oven.\", \" Two plates of food are on the counter.\", \" Words come onto the screen.\"]}, \"v_hQl2eeYX3IY\": {\"duration\": 76.91, \"timestamps\": [[0, 76.91], [2.31, 26.92], [26.92, 44.22], [43.45, 54.22], [53.83, 76.91]], \"sentences\": [\"There's a man in a red shirt and brown hat blowing leaves off his driveway with a leaf blower.\", \" He begins by blowing the leaves off from near the front lawn.\", \" Then he moves towards where his white van is parked.\", \" He walks all around the driveway and blow the leaves, making sure he covers the entire driveway.\", \" Then he goes towards the corner of the garage and blow off a large pile of leaves that is lying there in a heap.\"]}, \"v_yBjsQN4fzVY\": {\"duration\": 164.79, \"timestamps\": [[15.66, 31.31], [31.31, 41.2], [41.2, 56.85], [56.85, 72.51], [72.51, 99.7], [99.7, 102.17], [102.17, 133.48], [133.48, 153.26], [153.26, 156.55]], \"sentences\": [\"There's a woman in a pink dress sitting with a man in a gray shirt.\", \" They are talking about brushing teeth in underwear and how it is banned by Metacafe.\", \" The man has a script in his hand that he's reading.\", \" A man in folded pants is walking on the beach.\", \" He picks up a toothbrush from the sand and begins brushing his teeth.\", \" The woman in the bathroom is brushing her teeth and is attacked by a man with a knife.\", \" There is blood splattered all over the bathroom.\", \" The injured woman gets up and looks in the mirror only find out that she has the face of the man from the beach.\", \" The same man is now back on the beach, walking along the shore.\"]}, \"v_zYN_cbLO3MU\": {\"duration\": 202.97, \"timestamps\": [[1.01, 188.76], [6.09, 32.47], [32.47, 64.95], [64.95, 186.73]], \"sentences\": [\"Several people surf with paddles in ocean water navigating rough waves as onlookers watch from boats and kayaks.\", \"  A man is paddle rowing on a surfboard in a body of water, when he begins to surf the ocean waves using the paddle to navigate and guide the surfboard.\", \"  Another man is shown in a red outfit performing the same feat with the paddle along with yet another man in a green shirt.\", \"  Another man in is paddle surfboarding  in a clear blue type of water before the scene switches again to another several more people navigating large and rough waves with surfboard and paddles.\"]}, \"v_lzcVvTHZlQo\": {\"duration\": 61.27, \"timestamps\": [[0, 26.65], [22.06, 47.79], [47.48, 59.12]], \"sentences\": [\"A shot is seen of two men performing an arm wrestling match together while the audience cheers.\", \" One man beats the other and the two hold up their arms to cheer and everybody celebrates.\", \" One man in the audience looks disappointing and the winner holds up a boy.\"]}, \"v_kt_sGN-1prU\": {\"duration\": 197.25, \"timestamps\": [[0.99, 51.29], [60.16, 154.84], [135.12, 192.32]], \"sentences\": [\"Various text shown leads into several clips of people swinging around on uneven bars.\", \" More and more gymnasts are shown jumping off of a beam and onto uneven bars.\", \" Several woman are shown back to back performing these tricks.\"]}, \"v_x06fLYM58wM\": {\"duration\": 143.04, \"timestamps\": [[0, 51.49], [51.49, 115.86], [115.14, 143.04]], \"sentences\": [\"A female ballet dancer is in a studio room by herself wearing a purple leotard with a skirt attached to it.\", \"She begins gracefully dancing throughout the room doing a series of turns and kicks all while on the tip of her toes.\", \"Finally,she begins doing a series of tiny backward steps and finishes in the position she started in.\"]}, \"v_cXw6os9Xk5c\": {\"duration\": 34.09, \"timestamps\": [[0, 4.26], [4.26, 11.59], [11.59, 19.6], [20.11, 34.09]], \"sentences\": [\"A man on the side of the street drumming away on an actual drum set.\", \" People are standing around waiting an watching him.\", \" Cars are passing by and he just continues to drum like it's normal.\", \" He jams out using the cymbals and everything.\"]}, \"v_6x3qs7jQQko\": {\"duration\": 205.22, \"timestamps\": [[0, 205.22], [44.12, 131.34], [131.34, 205.22]], \"sentences\": [\"A woman is styling the hair of a mannequin.\", \" She rolls the hair into curlers on top of the head of the mannequin.\", \" She takes the curlers out of the hair and styles it.\"]}, \"v_x7PDVqDFw6c\": {\"duration\": 176.61, \"timestamps\": [[0, 9.71], [12.36, 43.27], [46.8, 163.37], [164.25, 176.61]], \"sentences\": [\"Film strips appear to roll across the screen.\", \" A man is using a telescoping pole by the side of a building.\", \" He stretches it upward, then cleans the side of the building with it.\", \" He uses it to clean the windows tha are highest.\"]}, \"v_U9b8U-EymNw\": {\"duration\": 160.94, \"timestamps\": [[0, 5.63], [5.63, 23.34], [23.34, 32.19], [22.53, 32.19], [32.99, 45.87], [45.87, 51.5], [52.3, 61.16], [61.16, 75.64], [75.64, 87.71], [87.71, 152.89], [152.89, 160.94]], \"sentences\": [\"A company log is on the screen.\", \"  A boat is floating on the water.\", \"  A tube has water running through it and there are floats on the water.\", \" The camera is scanning the boat.\", \"  Two women are sitting on the boat, one is poking the other.\", \"  A plastic seat is inflated then a board is put into the water.\", \"  A woman is on the board and holding on to a line attached to the boat.\", \"  A woman is driving the boat while the other woman is boarding behind her.\", \" A woman is taking a selfie while on the boat.\", \" The woman is doing tricks with the board on the water.\", \" She let go of the line and floated freely.\"]}, \"v_dIlpPraDc-I\": {\"duration\": 96.6, \"timestamps\": [[2.9, 31.88], [29.46, 69.55], [66.65, 96.6]], \"sentences\": [\"The man in red jacket is skiing on the slope.\", \" The man in is skiing down slope with is knees bend down.\", \" The man is skiing down the mountain.\"]}, \"v_mhHoL-9mY1E\": {\"duration\": 123.4, \"timestamps\": [[0, 25.3], [30.85, 42.57], [43.19, 50.6], [74.04, 80.83], [119.08, 123.4]], \"sentences\": [\"We see a person sitting in front of a shoe holding a can with brush.\", \" The man takes the top off and sprays the shoes.\", \" The man uses the brush on the shoe to rub the shoe.\", \" The man puts the top back on the can.\", \" The man gets up and grabs the camera.\"]}, \"v_VEihQG2UWKE\": {\"duration\": 125.2, \"timestamps\": [[0, 15.02], [15.02, 70.11], [70.11, 73.24], [117.06, 125.2]], \"sentences\": [\"People are flying kites on grass.\", \" The kites are shown in the sky.\", \" A woman is holding a purple umbrella.\", \" People are walking around in a park.\"]}, \"v_hpoReoD1vD0\": {\"duration\": 163.82999999999998, \"timestamps\": [[0, 19.66], [21.3, 108.13], [108.95, 144.17], [144.99, 163.83]], \"sentences\": [\"A white plate is sitting on a white table in a kitchen.\", \" A child places turkey slices on two pieces of  white bread, then adds a slice of cheese.\", \" Finally, she adds a layer of miracle whip.\", \" She leans forward, taking a large bite of the sandwich.\"]}, \"v_8fqxUtHLyoE\": {\"duration\": 79.65, \"timestamps\": [[0, 11.15], [11.15, 62.12], [62.52, 79.65]], \"sentences\": [\"Two women are on a court with jump ropes.\", \" They do several stunts while jumping the ropes.\", \" They flip forward, backward and sideways in unison.\"]}, \"v_IjmeHBgFb3g\": {\"duration\": 66.56, \"timestamps\": [[0, 32.28], [28.29, 62.57]], \"sentences\": [\"A gymnast is seen sitting before a beam and begins performing a routine with another person attached to his lower half.\", \" The two present to be one gymnast on a bar and end with them jumping off with their arms up.\"]}, \"v_h9YbUJuYzLk\": {\"duration\": 121.67, \"timestamps\": [[0, 13.38], [18.25, 97.95], [99.16, 121.67]], \"sentences\": [\"A male stylist talks as he smooths a woman's hair.\", \" He then demonstrates how to cut and style her hair, clipping it as he goes.\", \" When he is done, he blows her hair dry and gives it it's final styling.\"]}, \"v_4fw4nswO748\": {\"duration\": 64.09, \"timestamps\": [[0, 5.45], [9.93, 50.63], [5.45, 58], [58, 64.09]], \"sentences\": [\"An introduction comes onto the screen for a video about snowboarding.\", \" A snowboarder begins to make some commentary about his snowboarding techniques.\", \" Several clips of snowboarders are shown performing the technique as he explains.\", \" The video ends with the closing credits shown on the screen.\"]}, \"v_deU1mGcNh1Q\": {\"duration\": 33.53, \"timestamps\": [[1.17, 18.78], [13.41, 32.86]], \"sentences\": [\"A young child is seen sitting on the floor grabbing ice cream with it's hands.\", \" The child then grabs a spoon and continues to use his hands to eat.\"]}, \"v_wEI_iPEfLNk\": {\"duration\": 214.76, \"timestamps\": [[3.22, 131], [125.64, 181.47], [176.1, 210.47]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her holing up a jar of honey.\", \" She continues speaking and leads into her rubbing honey on her face.\", \" She dries off the mask and continues speaking while smiling to the camera.\"]}, \"v_085A7Iv6xzA\": {\"duration\": 160.96, \"timestamps\": [[0, 14.49], [19.32, 32.19], [45.87, 160.96]], \"sentences\": [\"A view is shown of a man removing a paddle from a fence.\", \" We see his face as he speaks, before he kayaks down a very thin stream into open waters.\", \" He uses his phone as another person arrives, then videos others shooting down the passageway.\"]}, \"v_FtAQcl1h7O8\": {\"duration\": 115.5, \"timestamps\": [[0, 82], [56.59, 58.9], [83.16, 115.5]], \"sentences\": [\"People are riding spin bikes in a gym.\", \" Two women are working out on exercise bikes.\", \" Yellow words come on the screen.\"]}, \"v_v1hQ0vf66QY\": {\"duration\": 212.05, \"timestamps\": [[3.18, 118.75], [79.52, 203.56]], \"sentences\": [\"A countdown of text is shown that leads into clips of sumo wrestlers performing impressive throws.\", \" The video continues counting down as more shots are shown of sumo wrestlers fighting one another and people watching on the side.\"]}, \"v_FGAlwzRvAHg\": {\"duration\": 183.49, \"timestamps\": [[8.26, 14.68], [14.68, 28.44], [28.44, 39.45], [39.45, 46.79], [46.79, 62.38], [62.38, 77.98], [77.98, 90.83], [90.83, 105.5], [105.5, 119.27], [119.27, 136.7], [136.7, 164.22], [164.22, 183.49]], \"sentences\": [\"The screen shows Transworld Snowboarding at Keystone, Colorado.\", \" It displays the fundamentals of snowboarding by Jack Mitrani.\", \" A person wearing a green hoodie and a hat is talking about the essentials required for snowboarding.\", \" He is demonstrating his tutorial with a snowboard placed in front of him.\", \" He is holding an iron in his hand as he is explaining how to wax the board.\", \" He has a piece of hard wax in his hand and an iron too.\", \" He begins melting the wax with the heated iron and drops it on the board.\", \" He drops the melted wax all over the board.\", \" He then drags the melted wax all through the board.\", \" He continues the same process throughout the entire board.\", \" Then uses a scraper to scrape the wax off and clean the board.\", \" He also uses a brush to brush off the wax and blows the wax shavings off of the board.\"]}, \"v_ILwwD00q1ZY\": {\"duration\": 46.23, \"timestamps\": [[8.32, 31.9], [31.9, 43.23], [43.23, 45.54]], \"sentences\": [\"A person in a furniture store is talking about popular furniture made from reclaimed wood.\", \" He shows rustic, contemporary and traditional type of furniture that is in his store.\", \" He shows the high quality reclaimed wood and the different furniture made from it.\"]}, \"v_jkWqhnD8hyQ\": {\"duration\": 170.51, \"timestamps\": [[0, 20.46], [0, 36.66], [36.66, 65.64], [66.5, 75.87], [89.52, 148.34], [148.34, 166.24], [161.98, 170.51]], \"sentences\": [\"We see a title in the upper left corner.\", \" A man is talking to the camera.\", \" The man drills the cabinets apart and wipes and paints them.\", \" The cabinets dry and the man wipes them.\", \" We see a person applying a product over the paint.\", \" We see the cabinet faces put back on the cabinets.\", \" We see the end credits on a black screen.\"]}, \"v_5BAvlsHfTLk\": {\"duration\": 151.77, \"timestamps\": [[12.14, 30.35], [30.35, 60.71], [60.71, 75.12], [75.12, 100.92], [100.92, 121.41], [121.41, 141.9], [141.9, 147.21]], \"sentences\": [\"Santa Cruz Nomad Bike company is demonstrating how to install a bike.\", \" The company representative is putting together the bike parts piece by piece.\", \" He starts with the main body and then goes to attach the wheels, the handle and the pedals.\", \" Then he goes ahead and attaches the rubber tires.\", \" After that he fixes the handles of the bike with black rubber tops.\", \" He finally reinforces all the parts and ensures the bike is ready for use.\", \" when he's done, he gets on the bike and rides it.\"]}, \"v_q0buJ1CKj-Y\": {\"duration\": 48.58, \"timestamps\": [[0.73, 15.3], [12.39, 35.46], [32.06, 46.88]], \"sentences\": [\"A person is seen sitting in front of a desk holding a guitar in his hands.\", \" The man then begins playing the instrument moving his hands up and down.\", \" The person continues playing on the guitar and looking off into the distance.\"]}, \"v_D0dyvNTI7yU\": {\"duration\": 127.08, \"timestamps\": [[7.62, 115.65], [7.62, 34.95], [37.49, 66.08], [64.18, 118.19]], \"sentences\": [\"A man in a bare studio showcases a series of martial arts moves by himself in front of a camera.\", \"  A man appears in a white t-shirt and black pants, barefoot and begins to showcase martial arts moves.\", \"  The man begins using moves that exhibit floor work and light tumbles along with a headstand.\", \"  The man progresses into controlled somersaults and side to side work along with high kicks.\"]}, \"v_KEUJ7ulD-_A\": {\"duration\": 230.18, \"timestamps\": [[0, 11.51], [12.66, 46.04], [47.19, 154.22], [155.37, 230.18]], \"sentences\": [\"The video opens up with an intro segment for a BMX race.\", \" The racers are shown at the gate getting ready for the race.\", \" Several racers are introduced with their names shown on the screen.\", \" The race starts and the racers race around the track.\"]}, \"v_Mvw0hvMeM-w\": {\"duration\": 216.13, \"timestamps\": [[35.66, 67], [67, 99.42], [99.42, 138.32], [138.32, 178.31], [178.31, 196.68]], \"sentences\": [\"The video begins with the annual BMX biking event where several participants are gathered to begin their competitive event.\", \" Several bikers begin biking on their bikes on curved slopes in the open air arena.\", \" The bikers go over bumpy and hilly slopes in their gears and helmets.\", \" There are several bikers beginning a race from the top of the biking slope.\", \" They show off their stunts and skills as they speed through the obstacle course of the biking arena.\"]}, \"v_ggw-70xi0dA\": {\"duration\": 7.59, \"timestamps\": [[0, 2.96], [3, 6.3], [6.3, 7.59]], \"sentences\": [\"A man with a red jacket and grey pants is walking across a slack line in the middle of the mountains.\", \"As he is trying to tight rope,he falls over and is never able to stand up.\", \"Although he isn't able to get up,he holds on and starts bouncing up and down upside down.\"]}, \"v_bUCMSDMB7MU\": {\"duration\": 210.95, \"timestamps\": [[0, 73.83], [71.72, 210.95]], \"sentences\": [\"Two side by side videos are shown of a man in slow motion playing frisbee and doing tricks with a dog.\", \" The same man is shown again performing various tricks with his dog that are shown in real time as well as slow motion.\"]}, \"v_diBZlwUO8rc\": {\"duration\": 119.97999999999999, \"timestamps\": [[0, 5.4], [6.6, 109.18], [29.39, 34.79], [54.59, 57.59], [58.19, 89.38], [94.18, 97.18], [99.58, 100.78], [111.58, 119.98]], \"sentences\": [\"We see an opening title screen.\", \" We see a lady in a chefs coat in a kitchen talking.\", \" A lady sharpens a knife on a rod.\", \" The lady puts water on a black sharpener block.\", \" The lady then sharpens the knife.\", \" She then returns to the rod.\", \" Then back to the black block.\", \" We see a closing title screen.\"]}, \"v_8UyB9XigBXM\": {\"duration\": 239.02, \"timestamps\": [[0, 29.88], [31.07, 120.7], [118.31, 239.02]], \"sentences\": [\"A young girl is seen brushing her hair as well as spraying product into her hair.\", \" She takes her hair in parts and begins braiding her hair.\", \" She finishes braiding her hair and ends by a picture of the braid.\"]}, \"v_VmjCJxgPSiE\": {\"duration\": 44.76, \"timestamps\": [[0, 1.57], [2.24, 5.15], [24.62, 25.51], [25.96, 27.53], [28.65, 30.44]], \"sentences\": [\"A campfire is surrounded by stones.\", \" A person adds browned leafs to the campfire.\", \" A person uses a stick to move the leaves inside the fire.\", \" A person moves backwards away from the fire.\", \" A person moves forward towards the fire.\"]}, \"v_kLpYpfT5bok\": {\"duration\": 215.04, \"timestamps\": [[0, 215.04], [37.63, 215.04], [4.3, 215.04]], \"sentences\": [\"Two people are fighting on the ground.\", \" People are sitting around them watching.\", \" People are sitting on chairs playing drums.\"]}, \"v_9jFyJhik9VM\": {\"duration\": 15.51, \"timestamps\": [[0, 15.51], [10, 14.04]], \"sentences\": [\"A person goes windsurfing on a lime green board in a body of water.\", \" The person does a few spins.\"]}, \"v_do_AQlxV9SI\": {\"duration\": 73.7, \"timestamps\": [[0, 12.53], [12.16, 25.43], [25.06, 43.48], [43.85, 73.33]], \"sentences\": [\"A large man is doing behind the neck shoulder presses.\", \" He is holding his breath doing them and then he stands up and starts to walk.\", \" He gets back on the bench and does a few more pf the shoulder presses again.\", \" Then, he goes outside and practices spinning and throwing.\"]}, \"v_yUC6HXP9S8A\": {\"duration\": 231.48, \"timestamps\": [[0, 62.5], [62.5, 107.64], [108.8, 188.66], [187.5, 231.48]], \"sentences\": [\"A boy is standing outside on top of ice fishing out of a small hole in the ice.\", \"The boy struggles to get the fish out and someone comes and takes it out for him.\", \"Now there are four men visible and they all begin to fish out of the ice pond.\", \"Eventually,a man grabs a chair and starts fishing and taking his fish off of his line.\"]}, \"v_1zyyumIi0iQ\": {\"duration\": 232.21, \"timestamps\": [[0, 88.24], [84.76, 169.52], [181.13, 232.21]], \"sentences\": [\"An intro leads into a group of cheerleaders performing several moves as a team and girls being interviewed on camera.\", \" They perform a routine shown by several videos and pictures and continue showing various tricks backstage and on stage.\", \" The girls speak to one another back stage with their coach and many people interact with them in the audience.\"]}, \"v_i3H8cucgXEc\": {\"duration\": 112.97, \"timestamps\": [[0.56, 53.66], [41.8, 105.62]], \"sentences\": [\"A person is seen riding around on roller blades and performing a grind on a bar.\", \" Several more clips are shown of the person performing grinds with roller blades as well as other flips and tricks.\"]}, \"v_XN7mRI1qGlQ\": {\"duration\": 62.07, \"timestamps\": [[0, 62.07], [13.34, 62.07]], \"sentences\": [\"woman is holding a hairdryer and dying a little kid hair.\", \" little kid in the back is standing and laughing.\"]}, \"v_UeN7XgwLkOU\": {\"duration\": 192.53, \"timestamps\": [[0, 45.24], [45.24, 192.53]], \"sentences\": [\"man is standing in a room opening the blinds.\", \" men are skating on sidewalks by the street with a lot of people around.\"]}, \"v_aMexiSP5Vjc\": {\"duration\": 91.19, \"timestamps\": [[0, 72.04], [37.84, 91.19]], \"sentences\": [\"A young child is seen using an elliptical while watching a computer video in front of her.\", \" The girl controls the moves on the video using the machine while the camera zooms in and out of the area.\"]}, \"v_TIfAkOBMf5A\": {\"duration\": 221.68, \"timestamps\": [[0, 8.87], [13.3, 218.36], [29.93, 32.14]], \"sentences\": [\"People run out onto a stage.\", \" They begin to dance and work out on the stage.\", \" An audience is watching them perform.\"]}, \"v_MTC0fs4QyEY\": {\"duration\": 225.26, \"timestamps\": [[18.02, 92.36], [92.36, 186.96], [186.96, 217.37], [217.37, 225.26]], \"sentences\": [\"There is an old man doing Tai Chi on a sidewalk while pedestrians walk by.\", \" The man continues doing Tai Chi on the sidewalk as several people walk by him.\", \" He then stands next to some well pruned shrubs and continues his exercise in the open while it rains heavily.\", \" He then takes his shirt and walks away after he is done with his Tai Chi exercise.\"]}, \"v_g9bIJ1MIvPk\": {\"duration\": 214.23, \"timestamps\": [[0, 12.85], [15, 28.92], [31.06, 214.23]], \"sentences\": [\"A roll of shingles is shown lying on a roof.\", \" A man holds up a sheet of the shingles.\", \" He uses pliers to remove damaged shingles before replacing them with new ones.\"]}, \"v_e34P8tr-Mi4\": {\"duration\": 64.06, \"timestamps\": [[0, 64.06], [2.56, 4.16], [43.56, 46.45], [48.05, 55.1]], \"sentences\": [\"Three men are applying plaster to the ceiling of an unfinished room while another man watches.\", \" One of the men climbs a ladder to reach the ceiling.\", \" One man performs a short dance.\", \" The camera moves to reveal that the man dancing and another one of the men are using stilts to reach the ceiling.\"]}, \"v_e-44ig51evc\": {\"duration\": 197.02, \"timestamps\": [[0, 1.97], [2.96, 197.02], [24.63, 26.6], [77.82, 81.76], [94.57, 104.42], [183.23, 193.08]], \"sentences\": [\"We see a title screen for the video.\", \" We then see little boys playing soccer in a couple of gymnasiums.\", \" We watch the boy in the white shirt score a goal.\", \" We see a boy kick a goal and the goalie reaches to stop the ball but misses.\", \" We see the boy in white score a goal and his Teammates hug him.\", \" 3:10 The white ream number 10 scores and a teammate gives him a high five.\"]}, \"v_zVOj9aaq4L0\": {\"duration\": 169.55, \"timestamps\": [[0, 8.48], [9.33, 29.67], [32.22, 145.82], [148.36, 169.55]], \"sentences\": [\"A woman is shown, playing with her hair.\", \" A salon artist appears, and his tools are shown on a table.\", \" The woman blows her hair dry before posing, and is shown step by step creating curls in her hair with his tools.\", \" She adjusts and brushes her hair, then shows off the final result.\"]}, \"v__CYdiU1sMwc\": {\"duration\": 24.06, \"timestamps\": [[0, 6.98], [6.98, 14.55], [14.43, 19.24], [19.24, 24.06]], \"sentences\": [\"A man is using a leaf blower to blow the leaves off the grass.\", \" A car drives by on the road at a decent speed.\", \" He continues to blow the leaves mindlessly.\", \" The leaves are all falling on the road making the grass look so much better.\"]}, \"v_cDV1vDdAT1w\": {\"duration\": 60.16, \"timestamps\": [[0, 19.55], [43.32, 56.25], [18.35, 56.25]], \"sentences\": [\"Several people are seen riding around on surf board with kites on the top.\", \" They continue riding around and a small child is seen up close.\", \" More shots are shown of them riding around one another and riding along the water.\"]}, \"v_CiryRTSYkC4\": {\"duration\": 172.22, \"timestamps\": [[0, 56.83], [50.81, 130.89], [111.08, 170.5]], \"sentences\": [\"A person is seen gearing up while speaking to the camera and leads into him doing push ups.\", \" The man walks down a hallway with a women being introduced and leads into the two playing ping pong.\", \" The two continue playing and leads into the man holding up a basketball and the woman shocked.\"]}, \"v_W2Wjbhsuacw\": {\"duration\": 20.62, \"timestamps\": [[0, 1.65], [1.55, 5.57], [5.67, 11.24], [11.34, 20.62]], \"sentences\": [\"Outside in a bucket there is some wood and someone come out and starts to blow something on it.\", \" He is blowing fire on to it with some kind of fire contraption that looks like a gardening tool.\", \" It is catching nicely and the woods is burning quick.\", \" The fire dies down a little but is still burning.\"]}, \"v_rkDuiu5H8JY\": {\"duration\": 107.03999999999999, \"timestamps\": [[1.07, 102.76], [7.49, 42.82], [42.82, 82.42], [71.72, 102.76]], \"sentences\": [\"A woman demonstrates how to create a braided hairstyle using a young woman as a model for the style in a hands on tutorial.\", \"  The hairstylist begins by parting the hair in four sections with a comb before braiding each section and clipping a hairpin on the ends of each braid.\", \"  The woman then pulls each braid across the front of the models hairline.\", \"  The model showcases the look while sitting in the chair and the camera captures her hairstyle from different angles before and image of three women on a sofa with a fly away helium balloon appears.\"]}, \"v_3kEAg-JtDBY\": {\"duration\": 29.17, \"timestamps\": [[0, 29.17], [0.87, 29.17], [9.04, 23.19], [24.64, 29.17]], \"sentences\": [\"A woman is wearing a white robe and a black belt.\", \" She does karate moves in her room.\", \" She kicks her legs up several times.\", \" She finishes and stands up right with her arms by her side and bows.\"]}, \"v_HdNOiIdGqvE\": {\"duration\": 71.5, \"timestamps\": [[8.94, 21.45], [20.38, 29.31], [50.05, 56.12], [59.34, 71.14]], \"sentences\": [\"A man in a white lab coat is seen talking to the camera and showing various tools in a laboratory.\", \" Towel are seen sitting in a sink and the man shows the proper hand washing tools.\", \" He puts his hands under the sink with soap and washes his hand thoroughly.\", \" He dries his hands and continues talking to the camera how why this is important.\"]}, \"v_FyxltEKCfZ0\": {\"duration\": 68.43, \"timestamps\": [[0, 11.63], [12.32, 26.69], [27.03, 43.45], [44.48, 48.24], [48.24, 50.64], [50.98, 68.43]], \"sentences\": [\"We see nurses giving children shots.\", \" We see a laboratory with a scientist.\", \" We see a person in an MRI and we see a doctor looking at the results.\", \" Coffee is poured into a white mug.\", \" Coffee beans are spilling on each other.\", \" We see people making coffee in a coffee shop.\"]}, \"v__NwkwvaC7Bg\": {\"duration\": 62.02, \"timestamps\": [[0, 2.79], [3.1, 14.57], [16.75, 29.46], [31.01, 49.31], [33.18, 50.86], [54.58, 57.06], [58.61, 62.02]], \"sentences\": [\"A woman in a black shirt is talking to the camera.\", \" The scene transitions into a bunch of young people carrying pieces of wood to an open area outdoors.\", \" They begin to attempt to chop the wood, but have trouble getting the axe out at first.\", \" A woman finally gets the axe out and they start chopping the wood.\", \" The camera pans around to the spectators as a woman in a bandanna successfully chops the wood and takes a bow.\", \" The scene returns to the woman at that was at the beginning of the video.\", \" The video ends with the women around the wood startled as something falls.\"]}, \"v_lQP65cm11FA\": {\"duration\": 115.59, \"timestamps\": [[9.25, 17.92], [19.07, 31.21], [31.79, 49.13], [49.7, 110.97]], \"sentences\": [\"A person puts on safety glasses and walks through a gate into a courtyard.\", \" The person blows the leaves from a driveway using an electric blower.\", \" The person blows the leaves from a grass area using the blower.\", \" The blower is seen up close with different attachments and settings featured.\"]}, \"v_Qm7AL0RjHxI\": {\"duration\": 82.97, \"timestamps\": [[0, 32.36], [32.77, 77.99]], \"sentences\": [\"A man step on a square drawn in the beach and turns the body back and forth.\", \" Then, the man step on the triangle and does hand movements, after the man joint the hands.\"]}, \"v_alcSAjjsH9w\": {\"duration\": 162.97, \"timestamps\": [[0, 9.78], [15.48, 44], [44.82, 137.71], [138.53, 162.97]], \"sentences\": [\"a man wearing an apron is laughing over a table.\", \" He is shown with a large bowl and several cracked eggs.\", \" He talks to a group of people about what to do with the eggs.\", \" He creates an omelette, then plates it.\"]}, \"v_nt9tMdFVQ1c\": {\"duration\": 14.93, \"timestamps\": [[0, 0.9], [0.97, 2.84], [7.09, 14.93]], \"sentences\": [\"A group of men are playing volleyball on the beach, 3 on one side, and 2 on the other side.\", \" One team attempts to serve and it crashes into the net.\", \" The other (shorthanded) team sends its own serve, a simple lob, but the opposing team knock their return out of bounds.\"]}, \"v_f2W1Mt04CIM\": {\"duration\": 58.75, \"timestamps\": [[0, 47.59], [8.52, 45.53], [20.86, 28.2], [48.47, 58.45]], \"sentences\": [\"People rides bumper cars in a carnival.\", \" An old man rides a small bumper car.\", \" Several people get stuck with other bumper cars.\", \" There are a lot of people in the carnival.\"]}, \"v_9UGNhbRWM14\": {\"duration\": 116.63, \"timestamps\": [[0, 116.63], [29.16, 116.63], [1.17, 116.63]], \"sentences\": [\"A girl and a man are practicing boxing in a gym.\", \" There is a punching bag swinging in the background.\", \" The girl and man move around the floor swinging at each other.\"]}, \"v_wyARf3xHOgs\": {\"duration\": 60.16, \"timestamps\": [[0, 60.16], [10.53, 18.35], [17.75, 34.29], [39.71, 60.16]], \"sentences\": [\"Children practice gymnastics in a room.\", \" A woman helps a child do a flip.\", \" Some children kick off of a wall.\", \" Some other kids do more flips.\"]}, \"v_VcthLhKIntA\": {\"duration\": 234.9, \"timestamps\": [[0, 32.89], [39.93, 164.43], [166.78, 234.9]], \"sentences\": [\"A man wearing a hat is talking on a stage.\", \" A woman enters, and she begins to dance.\", \" The woman lights a hula hoop on fire, dancing with the hoop.\"]}, \"v_9XyrLUWZl40\": {\"duration\": 20.13, \"timestamps\": [[0, 1.91], [1.21, 4.83], [4.93, 11.07], [11.78, 20.13]], \"sentences\": [\"A boy puts together a rubix cube and excitedly drops it.\", \" He jumps up and claps his hands together so happy about it.\", \" Another boy is doing it with only his feet.\", \" It's a competition, the audience is watching as the people competing are being timed.\"]}, \"v_BG4QxmqBaS4\": {\"duration\": 182.18, \"timestamps\": [[0, 6.38], [8.2, 10.93], [16.4, 121.15], [120.24, 182.18]], \"sentences\": [\"Screens begin to appear with white words on them describing events that are about to take place.\", \"A still image is then shown before a guy attempts to do several pole vault jumps.\", \"Another black screen appears and a different person tries to do the jump but he too hits the pole.\", \"Once he is done, a different man attempts to do it but he isn't successful either.\"]}, \"v_Pi5fonaOYTI\": {\"duration\": 210.84, \"timestamps\": [[0, 29.52], [31.63, 53.76], [59.03, 210.84]], \"sentences\": [\"A woman is talking to the camera while standing against a white background.\", \" She holds up a hula hoop while she talks.\", \" She then shows how to utilize the hula hoop while doing exercises and yoga poses, sometimes inserting parts of her body into the hoop.\"]}, \"v_CXP20cVQN30\": {\"duration\": 175.54, \"timestamps\": [[0, 0.88], [28.96, 73.73], [20.19, 85.14], [58.81, 100.94], [69.34, 154.48]], \"sentences\": [\"People walk past the camera .\", \" The camera zooms in to show people swimming in the pool and some playing volleyball in the pool.\", \" One person gets out of the pool and walks away.\", \" A person throws the ball at someones face.\", \" People throw the balls so far that they go out of the pool.\"]}, \"v_zDBpa2miW8A\": {\"duration\": 52.39, \"timestamps\": [[0, 3.93], [4.19, 18.86], [21.74, 45.57]], \"sentences\": [\"An intro starts entitled how to cut the grass.\", \" A man walks out wearing funny attire and showing off to the camera with a lawn mower.\", \" The man then walks around and blows the leaves off still wearing the funny outfit.\"]}, \"v_Q3FkUH9kImU\": {\"duration\": 59.93, \"timestamps\": [[0, 6.89], [8.09, 26.37], [26.37, 39.85], [39.55, 52.74]], \"sentences\": [\"A man is standing in a room talking.\", \" He is showing a shuffleboard.\", \" He walks to the end of the shuffleboard and another man is on the other side.\", \" He begins playing by throwing one down the board.\"]}, \"v_TfIGKODkpPY\": {\"duration\": 122.88, \"timestamps\": [[22.12, 71.88], [71.88, 109.36], [109.36, 122.88]], \"sentences\": [\"There are people flying kites collectively in a huge parking lot where several cars and mini vans are parked.\", \" There's a man in a blue striped shirt standing with another man in a brown shirt, both getting ready to fly their orange kite.\", \" They pull the strings out of the spool and begin flying the kite.\"]}, \"v_Y5VEl3e9Hbo\": {\"duration\": 107.49000000000001, \"timestamps\": [[9.14, 35.47], [34.4, 55.36], [56.43, 81.69], [82.76, 93.51]], \"sentences\": [\"Two boys are polishing shoes with brushes.\", \" Then, one boy takes a shoe up to play.\", \" A little boy put his leg in a big shoe and polish with a brush.\", \" Then, the other boy put his hand in the shoe to polish it.\"]}, \"v_5rO2DwFhdwo\": {\"duration\": 199.07, \"timestamps\": [[0, 41.8], [50.76, 158.26], [161.24, 199.07]], \"sentences\": [\"Two men are on an indoor racquetball court.\", \" They hit the ball back and forth against the wall.\", \" They pick the ball up and continue competing.\"]}, \"v_3GgQdXjJfEU\": {\"duration\": 7.2, \"timestamps\": [[0, 7.2], [3.28, 7.2], [6.55, 7.2], [3.89, 7.2], [0, 7.06]], \"sentences\": [\"man wearing black shorts is running on race track and make a javelin throw.\", \" men are sitting on a side of the race track.\", \" man is standing in a dusty diamond behind green net.\", \" thee men are standing next to a green net watching the javelin throw.\", \" referees wearing green shirts are standing on the field.\"]}, \"v_c6wINALtTvs\": {\"duration\": 217.01, \"timestamps\": [[0, 34.72], [34.72, 217.01]], \"sentences\": [\"woman is in a kitchen talking to the camera and showing how to prepare cookies.\", \" woman is mixing ingredients ni a kitchen aid and making balls and putnig them in a pan and on the oven.\"]}, \"v_2QO41PbOUJ0\": {\"duration\": 85.56, \"timestamps\": [[0, 22.67], [19.68, 69.73], [66.73, 84.7]], \"sentences\": [\"A woman is seen looking off into the distance while smoking a cigarette.\", \" She speaks to someone out of frame while taking puffs from her cigarette.\", \" She continues smoking while the camera captures her movements.\"]}, \"v_7jGKlEvH_uw\": {\"duration\": 149.44, \"timestamps\": [[5.23, 83.69], [68, 145.71]], \"sentences\": [\"A woman is seen spinning two hoops around her hands while looking back to the camera and speaking.\", \" She continues spinning around the hoops while pausing inbetween to hold them and speak.\"]}, \"v_31KEa5VhvPs\": {\"duration\": 212.67000000000002, \"timestamps\": [[0, 47.85], [56.36, 166.95], [179.71, 212.67]], \"sentences\": [\"A group of spectators are gathered in a gym.\", \" A man and his teammates are pushing a puck.\", \" They are engaged in a game of curling on the ice.\"]}, \"v_JYh2Oejg_lQ\": {\"duration\": 39.71, \"timestamps\": [[0, 8.74], [7.54, 26.01], [26.4, 39.71]], \"sentences\": [\"A person with long hair shows a rubik's cube.\", \"  The person begins to solve it .\", \"  They toss it up and it is magically solved.\"]}, \"v_nt8MurhX7HY\": {\"duration\": 91.07, \"timestamps\": [[0, 26.41], [25.95, 64.2], [67.39, 89.7]], \"sentences\": [\"A small group of people are seen standing on each side of a rope wile putting their hands up.\", \" The men then grab onto the rope and pull against one another.\", \" Men watch on the side as one team wins.\"]}, \"v_YH3571KWDpM\": {\"duration\": 202.76, \"timestamps\": [[2.03, 55.76], [56.77, 141.93], [115.57, 197.69]], \"sentences\": [\"A large group of people are seen standing around an indoor gym behind one another.\", \" The group then begins dancing with one another performing the same moves.\", \" The people continue to dance around the room while the camera records their movements.\"]}, \"v_ZmUk9OQ1zfk\": {\"duration\": 124.23, \"timestamps\": [[0, 5.59], [11.8, 97.52], [99.38, 124.23]], \"sentences\": [\"A man is talking to the camera.\", \" Several team members from a volleyball games are interviewed.\", \" They are shown playing on the beach, kicking the ball.\"]}, \"v_hN9diyaOK4E\": {\"duration\": 94.22999999999999, \"timestamps\": [[0, 93.28], [4.24, 7.54], [55.59, 57.01], [89.52, 94.23]], \"sentences\": [\"A man competes solving a puzzle cube.\", \" A person pass behind the man.\", \" A hand extends a sheet on front the player.\", \" After finish, the man puts on his glasses.\"]}, \"v_tB_B3HVdO2I\": {\"duration\": 9.47, \"timestamps\": [[0, 1.42], [1.47, 4.5], [5.07, 9.47]], \"sentences\": [\"A boy is swinging across monkey bars in a park.\", \" A man is doing something behind him.\", \" The boy makes his way all the way across.\"]}, \"v_ghWwS5ev6xk\": {\"duration\": 95.52000000000001, \"timestamps\": [[0.48, 30.57], [20.54, 71.64], [66.38, 94.56]], \"sentences\": [\"A man is seen sitting in a kayak while speaking to the camera and holding a paddle.\", \" The man then moves himself around on the kayak while demonstrating how to properly move.\", \" He continues to spin around while looking up at the camera.\"]}, \"v_HVD8N0bbPVo\": {\"duration\": 148.82999999999998, \"timestamps\": [[0, 25.3], [32.74, 111.62], [116.09, 148.83]], \"sentences\": [\"A man in sunglasses is standing outside a building.\", \" He is then seen inside an elevator, acting strangely as he punches the air with different people riding.\", \" He is intentionally trying to scare and worry them.\"]}, \"v_Ogx1hUoOSrE\": {\"duration\": 176.59, \"timestamps\": [[0, 21.19], [12.36, 48.56], [35.32, 72.4], [75.05, 176.59]], \"sentences\": [\"Four girls are shown looking into the camera.\", \" A girl up front begins waving a bottle of mouthwash.\", \" The girl then takes a cup of the mouthwash and drinks it.\", \" The cup of mouthwash is passed around until all the girls drink from it.\"]}, \"v_PofMK_beoR8\": {\"duration\": 161.52, \"timestamps\": [[0, 75.91], [75.11, 161.52]], \"sentences\": [\"Several people begin walking into a room wearing Kangaroo shoes and bouncing around.\", \"On the left side of the room,there is a bar on two poles that is about five feet high that each person takes turns jumping over.\"]}, \"v_qt-0mo_8ufU\": {\"duration\": 161.73, \"timestamps\": [[0, 18.6], [25.07, 33.15], [34.77, 110.78], [94.61, 161.73]], \"sentences\": [\"Skiers ride up a ski lift.\", \" A man in yellow skis down a slope.\", \" Several tricks are done by skiers.\", \" They jump over several ramps.\"]}, \"v_kcB7HQPxzDM\": {\"duration\": 77.18, \"timestamps\": [[1.93, 19.68], [21.61, 39.75], [41.29, 68.69]], \"sentences\": [\"Lithuanian Zinaida Sendriute throws the discus 64 meters to lead out for her third throw, waving to the camera as she walks off.\", \" Cuban Yarelis Barrios is next and unleashes a mighty 67 meter toss with a thunderous scream.\", \" Croatian Sandra Perkovic out distances both of the previous throwers with a 69 meter toss to claim the lead.\"]}, \"v_p35FXT4drA0\": {\"duration\": 82.94, \"timestamps\": [[0, 28.61], [20.74, 64.28], [60.96, 80.04]], \"sentences\": [\"An athletic man is seen stepping up to a circle and throwing an object off into the distance.\", \" His throw is shown again while others measure his throw on the side.\", \" The man grabs a flag and walks around the arena.\"]}, \"v_Y_ITwC4_pEY\": {\"duration\": 124.07, \"timestamps\": [[0, 52.11], [34.12, 83.74], [68.86, 117.24]], \"sentences\": [\"A large screen is shown followed by a band playing on stage.\", \" A man wearing a mickey costume and playing the drums.\", \" The man continues playing the drums and ends with the curtain closing.\"]}, \"v_tn8YmTHinZc\": {\"duration\": 237.31, \"timestamps\": [[0, 14.24], [14.24, 70.01], [70.01, 237.31]], \"sentences\": [\"woman is standing in kitchen talking to the camera and showing ingredients that are on top of a counter.\", \" woman holds a lemon and squeeze it in a plastic water jar and mix it with sugar.\", \" woman holds a knife and chop the lemons in small pieces and add soda to the jar and the chopped lemons along with strawberries.\"]}, \"v_KPfKLVV-HCQ\": {\"duration\": 135.47, \"timestamps\": [[2.03, 39.29], [39.29, 101.6], [90.08, 130.05]], \"sentences\": [\"A large group of people are seen moving around together in a large gymnasium.\", \" The people move up and down on a beam kicking their legs up and moving around.\", \" The people continue moving all around the board while the camera captures their movements.\"]}, \"v_FRsHew2Pcko\": {\"duration\": 61.67, \"timestamps\": [[0, 8.33], [11.72, 42.86], [44.71, 61.67]], \"sentences\": [\"A young boy is seated in front of a drum set.\", \" He is rapidly playing the drums in front of him.\", \" He also hits the cymbals several times.\"]}, \"v_w24Pub_hNSw\": {\"duration\": 48.14, \"timestamps\": [[0, 4.57], [7.7, 42.84], [43.08, 48.14]], \"sentences\": [\"A woman is seated, a man is standing, and a little girl is climbing on playground equipment.\", \" She drops down, hanging from the monkey bars as she pretends to kick the man.\", \" She swings to the end, and lands in another man's arms.\"]}, \"v_c5Io6wg8D60\": {\"duration\": 34.52, \"timestamps\": [[0, 6.39], [6.21, 16.74], [17.09, 25.89], [25.89, 34.52]], \"sentences\": [\"A man is standing by a desk talking with some coaches about something.\", \" He begins to walk backwards and get himself ready to start running.\", \" He starts running and builds up speed pretty quickly.\", \" He lands into the sand and when he is done and man come behind him to smooth the sand out.\"]}, \"v_88qqQjRPFUQ\": {\"duration\": 30.95, \"timestamps\": [[0, 8.2], [7.58, 30.95]], \"sentences\": [\"A camera shows a young child walking up a playground set with a dog wandering in the back.\", \" The child climbs up a set of stairs and slides down a slide.\"]}, \"v_wdecG9VSAl0\": {\"duration\": 139.76, \"timestamps\": [[0, 21.66], [27.25, 55.21], [60.1, 139.76]], \"sentences\": [\"A young man is seen paddling a canoe down a river.\", \" He talks to the camera as he approaches.\", \" He gets out, continuing to talk about canoeing.\"]}, \"v_V50vtrHboIE\": {\"duration\": 219.6, \"timestamps\": [[0, 54.9], [60.39, 140.55], [125.17, 215.21]], \"sentences\": [\"A woman is seen moving a hula hoop close up in front of the camera.\", \" The girl then speaks to the camera and leads into her spinning a hula hoop around.\", \" The woman continues speaking to the camera while spinning the hoop and demonstrating how to perform proper moves.\"]}, \"v_BJWL_X79HRc\": {\"duration\": 170.9, \"timestamps\": [[0, 30.76], [32.47, 170.9]], \"sentences\": [\"Several men dreassed in lacrosse gear run onto a field.\", \" The opposing teams are shown in several clips, fighting and hitting the ball into each other's goals.\"]}, \"v_ROvaMfVEMSw\": {\"duration\": 14.07, \"timestamps\": [[0.07, 4.08], [3.94, 10.13], [10.55, 13.51]], \"sentences\": [\"A man is seen sitting on a horse and riding into a pit swinging a rope.\", \" The man throws the rope onto a calf and jumps off the horse.\", \" He ties up the calf and ends by running back to the horse.\"]}, \"v_fzHg9PhhlAg\": {\"duration\": 235.17000000000002, \"timestamps\": [[0, 49.39], [49.39, 114.06], [114.06, 206.95], [206.95, 235.17]], \"sentences\": [\"Several men from different places are outside on a large field playing cricket.\", \"Men come to the middle of the field and stand around a small rectangle and begin hitting the ball extremely far.\", \"As the ball goes to the outfield,the teammates begin jumping up and down and cheering for their team.\", \"Finally,a man is shown holding up a large silver award.\"]}, \"v_SHT08nPhIb4\": {\"duration\": 44.93, \"timestamps\": [[1.57, 15.95], [15.95, 44.93], [20.89, 44.93]], \"sentences\": [\"A man is shooting a basketball into a hoop.\", \" Another man starts shooting a basketball into the hoop.\", \" The first man watches the second man.\"]}, \"v_btMVEIvr0oc\": {\"duration\": 34.53, \"timestamps\": [[0, 33.49], [4.14, 8.98], [9.84, 13.47], [20.03, 26.41], [30.73, 33.32], [33.15, 34.53]], \"sentences\": [\"We see kids playing dodge ball in a trampoline park.\", \" We see a boy hit with the ball and throw it back.\", \" We see a boy in green throw the ball hard.\", \" The boy in striped shirt joins the game and the boy in red is out.\", \" A girl walks past the camera waving her hand.\", \" A boy in a yellow shirt walks towards the camera.\"]}, \"v_xaMEGQCxddY\": {\"duration\": 46.58, \"timestamps\": [[0, 1.16], [6.52, 28.65], [29.58, 46.58]], \"sentences\": [\"Old videos are shown of track meets.\", \" A man is shown multiple times as he throws a discus.\", \" He spins in circles, then throws the disc as far as he can.\"]}, \"v_f1HMhfSlPSw\": {\"duration\": 202.06, \"timestamps\": [[0, 192.97], [60.62, 126.29], [83.86, 105.07], [156.6, 202.06]], \"sentences\": [\"Gymnasts do tumbling routines with flips and spins on a mat inside of a gym.\", \" Men swings on hand rings as part of his tumbling routine.\", \" The man falls on the ground while swinging on the rings.\", \" The gymnast plays around a bit batting his ear and waiting for another person to clear the mat.\"]}, \"v_ptY-0n53uq0\": {\"duration\": 103.53999999999999, \"timestamps\": [[0, 26.4], [30.54, 80.24], [84.9, 103.54]], \"sentences\": [\"A little boy is inside a garage room.\", \" He is playing a large drum set while wearing headphones.\", \" He hits the cymbals and drums hard with the sticks.\"]}, \"v_iZg4cUU6Hkc\": {\"duration\": 102.08, \"timestamps\": [[0, 8.68], [11.74, 65.84], [67.37, 102.08]], \"sentences\": [\"A group of teen boys are outside in a yard.\", \" They gather supplies, then light a fire.\", \" They begin kicking a flaming ball back and forth.\"]}, \"v_qWdjYyFfrTM\": {\"duration\": 184.41, \"timestamps\": [[0, 14.75], [19.36, 32.27], [36.88, 48.87], [57.17, 82.06], [87.6, 184.41]], \"sentences\": [\"A production graphic is shown along with a link for more media.\", \" This fades into a man starting to play the saxophone in his living room up to a microphone.\", \" The man is now wearing sunglasses while playing, grooving to the music.\", \" The man is shown back without the sunglasses.\", \" Another window displaying the performer is shown in the corner of the video.\"]}, \"v_KaGGtAhiH64\": {\"duration\": 213.11, \"timestamps\": [[3.2, 213.11], [3.2, 45.82], [47.95, 88.44], [58.61, 82.05], [89.51, 127.87], [128.93, 209.92]], \"sentences\": [\"A group of young men are seated at tables at a rubiks cube competition.\", \" An official removes a slip of paper from a rubiks cube sitting in front of a young man at the end of a table after which the competitor solves the cube and celebrates by banging his hands on the table.\", \" An official lifts a cup to reveal a rubiks cube that the same man then solves.\", \" A young man wearing a beige shirt solves a cube and presses his hands to his face before standing up.\", \" An official removes a piece of paper from on top of a cube as the young man in the black sweatshirt solves another cube.\", \" The young man solves two more cubes in front of an official before moving to get up.\"]}, \"v_Lr0Vm9zBXKE\": {\"duration\": 193.26, \"timestamps\": [[0, 193.26], [64.74, 82.14], [91.8, 100.5], [100.5, 173.93], [174.9, 193.26]], \"sentences\": [\"snowy mountain range is shown and people are doing snowboarding.\", \" helicopter is in the air landing in a mountain leaving people in the top of the mountain.\", \" people are inside the helicopter talking between them.\", \" people start going down the slope snowboarding in the mountain.\", \" peolpe inside the helicopter are talking and puting the winter clothes and talking to the camera.\"]}, \"v_Jz2xJx1ICCM\": {\"duration\": 29.19, \"timestamps\": [[0, 9.34], [9.34, 15.62], [15.62, 21.89], [21.89, 29.19]], \"sentences\": [\"Some kids in class are about to start arm wrestling, they get their arms in place to start.\", \" The other kid on the side feels on one of the wrestlers muscles.\", \" He's writing things down keeping score and what not.\", \" The female arm wrestler wins bringing down the other guys arm.\"]}, \"v_n7dHbqoEiek\": {\"duration\": 224.61, \"timestamps\": [[1.12, 223.48], [111.18, 175.19], [177.44, 221.24]], \"sentences\": [\"A man trims a wall of foliage outdoors, while wearing shorts and a pair of noise canceling headphones with a tree trimming motorized tool.\", \"  The man takes a break and then climbs a ladder and uses the tool with an extended arm to trim the top of the wall from the top of the ladder.\", \"  The man then moves the ladder down the length of the wall to continue trimming the foliage.\"]}, \"v_mXb1tduBEj8\": {\"duration\": 83.2, \"timestamps\": [[0, 38.69], [38.69, 83.2]], \"sentences\": [\"A man is seen speaking to the camera holding a volleyball and leads into shots of him hitting the ball.\", \" He continues speaking to the camera while holding the ball and looking off into the distance.\"]}, \"v_6iA4RXGAR_k\": {\"duration\": 64.06, \"timestamps\": [[0, 61.5], [5.45, 21.46], [35.56, 58.94], [51.89, 64.06]], \"sentences\": [\"Two ballroom dances are shown performing a routine in a large auditorium.\", \" The couple spin multiple times while the audience cheers them on loudly.\", \" They continue performing their dance routine and several people on look using phones and cameras.\", \" The couple does one last spin and eventually takes a bow.\"]}, \"v_xIB7VSLKvaM\": {\"duration\": 198.41, \"timestamps\": [[0, 28.77], [33.73, 128.96], [136.9, 198.41]], \"sentences\": [\"A man is shown mowing his lawn with a push mower.\", \" He turns and goes back and forth, leaving marks on the lawn.\", \" A man talks in the corner of the screen about the process.\"]}, \"v__j5JUQzOCtc\": {\"duration\": 129.89, \"timestamps\": [[0, 9.09], [9.09, 31.82], [32.47, 51.31], [51.31, 119.5]], \"sentences\": [\"An Olympic logo is seen with the 5 rings.\", \" A young boy wearing striped shirt in a gym lifts a weight bar over his head.\", \" A young man in blue shorts lifts a weight bar over his head in a crowded gym.\", \" Professional athletes in competitions lift large heavily weighted bars overhead for judging.\"]}, \"v_r-xtiGmrKxA\": {\"duration\": 221.32999999999998, \"timestamps\": [[0, 32.09], [32.09, 105.13], [105.13, 172.64], [171.53, 221.33]], \"sentences\": [\"A man is standing in the gym alone and begins talking to the camera.\", \"He then puts his fist up and begins shadow boxing as he moves around the room.\", \"Next,he adds his feet and starts to kick the air and does twist as if someone is there hitting him.\", \"Finally,he comes back to the screen slightly out of breath to end the video.\"]}, \"v_RZFU1gXLqDs\": {\"duration\": 139.2, \"timestamps\": [[1.39, 74.47], [55.68, 135.72]], \"sentences\": [\"A small group of people are seen sitting in bumper car and begin driving around crashing into one another.\", \" The camera follows around a woman he cannot seem to move the car and others on the side instruct her on how to drive as others crash into her.\"]}, \"v_TbFqsEFrCB4\": {\"duration\": 197.86, \"timestamps\": [[1.98, 91.01], [71.23, 193.9]], \"sentences\": [\"A man is seen speaking to the camera in front of a large pool while using his hands with enthusiasm.\", \" The man continues to speak while using his hands and pans to the man swimming around the pool and back to talking.\"]}, \"v_Kj2SF5bCxJ8\": {\"duration\": 114.28999999999999, \"timestamps\": [[0, 61.14], [61.72, 102.29], [102.29, 114.29]], \"sentences\": [\"A kid spreads peanut butter in two slices of bread.\", \" Then, the kid adds on top jelly.\", \" After, the kid gives a bite to the peanut butter and jelly sandwich.\"]}, \"v_zq621OgpFFk\": {\"duration\": 5.11, \"timestamps\": [[0, 2.99], [2.94, 5.11]], \"sentences\": [\"A man services a tennis ball across the court.\", \" The man turns to talk to the camera.\"]}, \"v_XWG_-4VMTcA\": {\"duration\": 55.58, \"timestamps\": [[6.39, 52.52], [6.39, 6.67], [6.67, 42.8]], \"sentences\": [\"A wrestler, standing at the top of a ladder, with another man on the ladder with him, but in front of him, jumps off the ladder from the top and takes the other person with him.\", \"  A man in a wrestling costumer stands at the top of a ladder in the middle of a ring with a referee and people in the audience.\", \"  The man jumps off the ladder as people in the audience clap for him and the other man falls off as well.\"]}, \"v_eCNng1eGQ_0\": {\"duration\": 230.39, \"timestamps\": [[0, 3.46], [3.46, 131.32], [74.88, 96.76], [131.32, 150.9], [150.9, 184.31], [184.31, 221.17], [221.17, 230.39]], \"sentences\": [\"We see the title screen on a red background.\", \" We see women  playing lacrosse.\", \" We see the players through the net of a goal.\", \" We see a lady in pink talking to the camera.\", \" We then see a lady in a blue shirt talking.\", \" A lady in a backpack talks to the camera.\", \" We then see the ending screen and black.\"]}, \"v_VOxaxr5LPiQ\": {\"duration\": 226.6, \"timestamps\": [[28.33, 55.52], [55.52, 71.38], [71.38, 128.03], [121.23, 173.35], [105.37, 128.03], [174.49, 184.68]], \"sentences\": [\"A shop attendant holds up the hula hoop and shows how to grip it.\", \" The woman drops the hoop and lets it spin around her body to the ground.\", \" The woman drops the hula hoop and lets it spin around her body then catches it.\", \" The woman practices swinging the hoop between two legs.\", \" The woman catches the spinning hula hoop as it falls between her legs.\", \" The woman spins the hoop upwards around her body.\"]}, \"v_99A2KqvfBLI\": {\"duration\": 126.42, \"timestamps\": [[0, 6.95], [6.95, 126.42], [58.15, 73.33], [117.57, 122]], \"sentences\": [\"A man walks onto the stage to join a band.\", \" A man plays up front of a band with a harmonica.\", \" The keyboardist plays a spirited solo during the song.\", \" The man congratulates and gives a high five to the keyboardist at the end of the song.\"]}, \"v_jgHYzuDU2Iw\": {\"duration\": 38.76, \"timestamps\": [[0.19, 38.17], [1.36, 8.72], [9.69, 16.86], [17.05, 37.98]], \"sentences\": [\"A man in tan khakis and a button down shirt sweeps a floor with a wide broom.\", \"  A man walks and sweeps a floor walking to the left of the room pushing the wide broom in front of him.\", \"  The man then walks to the right side of the room with the same wide broom.\", \"  The man then finishes sweeping, lleans the broom in the corner of the room and stands against the wall in front of a window.\"]}, \"v_sqEsAtdFfrg\": {\"duration\": 76.63, \"timestamps\": [[0, 22.99], [21.46, 59.77], [59, 76.63]], \"sentences\": [\"A young child is seen standing ready holding a pole and then runs down a long track and throws the pole.\", \" He walks back around the track when another person is seen running down and throwing the stick.\", \" Finally one last boy steps up to the track to throw the javelin and then walks back to the others.\"]}, \"v_KIOvUY8S2pQ\": {\"duration\": 15.09, \"timestamps\": [[0.3, 5.43], [5.13, 11.17], [11.24, 14.79]], \"sentences\": [\"An intro with text is shown across the screen followed by two cartoon characters.\", \" The characters speak to one another and lead into them playing a game.\", \" One character loses the game and then disappears.\"]}, \"v_DRK5oUhjwTg\": {\"duration\": 102.42, \"timestamps\": [[0, 38.41], [38.41, 74.77], [74.77, 102.42]], \"sentences\": [\"A pilates instructor on skates explains how to strap your risk protectors tight and shows that you need knee pads to protect your knees.\", \"The lady then explains the skates movement and how to use the breaks that is in the back of the skates.\", \"finally the lady shows you the right way to skate to have fun.\"]}, \"v_E5bRptEXtq8\": {\"duration\": 156.76, \"timestamps\": [[0, 156.76], [6.27, 156.76], [155.19, 156.76]], \"sentences\": [\"Kids are sitting in bumper cars.\", \" They begin crashing into each other.\", \" They stop and start getting out of their cars.\"]}, \"v_gzuLIo5ZR9A\": {\"duration\": 50.46, \"timestamps\": [[0, 50.46], [14.13, 19.93], [20.18, 32.04], [32.8, 50.46]], \"sentences\": [\"We see a little girl holding the leash for a big dog.\", \" The little girl falls and drops the leash.\", \" The little girl then follows the dog to get the leash.\", \" She gets the leash and walks the dog.\"]}, \"v_G0vkQmcalvk\": {\"duration\": 43.86, \"timestamps\": [[0, 36.63], [36.84, 42.11], [42.55, 43.86]], \"sentences\": [\"A woman plays the drums and sings on stage.\", \" The camera pulls back on the scene.\", \" The woman finishes and stands up.\"]}, \"v_3HEJb83Wm_I\": {\"duration\": 105.02000000000001, \"timestamps\": [[0, 3.68], [4.2, 36.23], [36.76, 84.54], [85.07, 105.02]], \"sentences\": [\"We see a green title screen.\", \" A lady in a bathroom talks to the camera.\", \" We see her pour baking soda and vinegar on her sink drain and talks and moves her hands while the solution foams.\", \" The lady turns the water on to rinse the solution down the drain.\"]}, \"v_Kq115s7yL3I\": {\"duration\": 141.9, \"timestamps\": [[0.71, 140.48], [7.8, 12.06], [14.19, 53.21], [54.63, 141.9]], \"sentences\": [\"A window cleaning commercial demonstrates all the materials and techniques need to clean a house window.\", \"  The commercial begins with a closeup up a two story house and the interior of the house including a line of large windows.\", \"  Images of a person cleaning a window, soap, a bucket and sponge are showed along with a chalkboard with ingredients needed to clean a window.\", \"  A person cleans a window using all of the tools, including removing screens to clean them and removing stickers on windows.\"]}, \"v_u0p_dBCEDs4\": {\"duration\": 140.39, \"timestamps\": [[0, 4.21], [4.21, 135.47], [36.5, 63.17], [80.72, 83.53], [86.34, 129.16], [131.26, 136.18], [136.88, 140.39]], \"sentences\": [\"We see an intro screen with arrows.\", \" A chef is talking while standing in front of a bow as she cooks spaghetti.\", \" The lady adds salt, and spaghetti to boiling water.\", \" The lady grabs a noodle to show how it should look when cooked.\", \" The lady drains the water, adds sauce, and adds some of the cook water.\", \" She puts it on a plate.\", \" We then see the black credits rolling.\"]}, \"v_oqX-n2KHWAM\": {\"duration\": 213.09, \"timestamps\": [[0, 191.78], [30.9, 101.22], [102.28, 158.75], [159.82, 185.39], [192.85, 210.96], [212.02, 213.09]], \"sentences\": [\"A man is talking as he stands in a kitchen.\", \" The man boils milk and adds fresh vanilla and pours the solution into a bowl with other ingredients.\", \" The man cooks the custard and pours into a  bowl and freezes to make ice cream.\", \" The man cuts and cooks rubarb in sugar on the stove.\", \" He eats the ice cream over the cooked rubarb.\", \" We see a shot of London and fade out.\"]}, \"v_uMAjCPUZfp0\": {\"duration\": 153.76, \"timestamps\": [[0, 69.96], [48.44, 153.76]], \"sentences\": [\"Several clips are shown of various people fencing with one another.\", \" The people continue moving back and fourth while the camera zooms in on the people playing.\"]}, \"v_CV9n0jgThLY\": {\"duration\": 58.05, \"timestamps\": [[0, 31.93], [24.96, 26.41], [31.93, 57.18]], \"sentences\": [\"A person is in the basket of crane on a roof of a barn, while a man stands on the truck holding a rope.\", \" Smoke comes near a table.\", \" People stand on front the barn watching, also two women and two children stand on front the barn.\"]}, \"v_exxji9vqjSw\": {\"duration\": 185.62, \"timestamps\": [[0, 88.17], [77.96, 176.34]], \"sentences\": [\"Various shots are shown of snowy mountains that transition in between shots of people skiing and snowboarding down the mountain.\", \" The people are seen performing various flips and tricks down the mountain while the camera captures them from many angles as well as the mountain.\"]}, \"v_RZkwDTyxMZI\": {\"duration\": 109.37, \"timestamps\": [[0, 23.51], [24.61, 72.73], [73.28, 78.74], [77.65, 86.4], [87.49, 109.37]], \"sentences\": [\"We enter a room and see a boy putting a shirt on an ironing board.\", \" The boy begins ironing the tank top with an unplugged iron.\", \"  The little boy irons a gray shirt and sits the iron on the board next to it.\", \" The little boy walks away smiling.\", \" The boy shows two fingers and walks around the room with the iron.\"]}, \"v_EeGunBjmpFw\": {\"duration\": 70.8, \"timestamps\": [[0, 37.88], [8.14, 9.91], [16.64, 32.57], [37.52, 70.8], [63.36, 70.8]], \"sentences\": [\"A man in a jacket talks in front of  house as men stand on the roof.\", \" A man throws shingles off the roof in the background.\", \" The men continue to throw the shingles off the roof.\", \" The man holding the camera turns and climbs the ladder and stands on the rooftop.\", \" The man turns the camera on himself and continues to talk.\"]}, \"v_-5K3KZ6fHuI\": {\"duration\": 39.59, \"timestamps\": [[0, 15.44], [15.44, 32.66], [33.45, 39.59]], \"sentences\": [\"A group of friends are seated on sleds at the top of the hill.\", \" The two friends are pushed down the hill and they slide to the bottom.\", \" The two friends are stopped by rubber mats at the bottom of the hill.\"]}, \"v_Yg6jFRYIyXw\": {\"duration\": 102.35, \"timestamps\": [[0, 5.63], [20.98, 47.59], [48.62, 91.1], [92.63, 101.33]], \"sentences\": [\"An Aurora Borealis is seen over a northern landscape.\", \" A man shovels snow from his porch with a snow shovel.\", \" The man shovels snow from  a stair case with a snow shovel.\", \" The man finishes the job and shows his muscles.\"]}, \"v_zQFC5vNZ_Qs\": {\"duration\": 31.16, \"timestamps\": [[0, 28.82], [2.34, 31.16], [29.14, 31.16]], \"sentences\": [\"A little girl is crossing the monkey bars.\", \" A woman is helping her standing under her.\", \" The girl drops and the woman catches her.\"]}, \"v_y3LlQBDXAHI\": {\"duration\": 37.94, \"timestamps\": [[0.38, 9.3], [8.73, 28.27], [23.33, 36.99]], \"sentences\": [\"An athlete is seen standing in a circle and spinning herself around and around.\", \" She throws an object off in the distance and is shown again in slow motion.\", \" She walks back while cheering and others hold up a flag.\"]}, \"v_eFq3gsEi9yI\": {\"duration\": 147.84, \"timestamps\": [[0, 32.53], [33.26, 107.92], [107.19, 147.84]], \"sentences\": [\"Two white pegs are shown in the wall with a red bed on the side and someone hitting it with a large block of wood.\", \"Another angle is shown and the person takes 21 shots at the balls.\", \"For the 22nd shot,a man is standing in a large field of white pegs and begins to hit all three balls at the same time in different directions.\"]}, \"v_tr8JRPrfAN0\": {\"duration\": 168.48, \"timestamps\": [[0, 34.54], [34.54, 105.3], [106.14, 124.68], [124.68, 158.37]], \"sentences\": [\"A woman cleans the carpet and the floor with a vacuum, after the vacuum picks up dirt from the carpet.\", \" Then, the woman takes out the canister of the vacuum and continues cleaning the floor, the wall, the sofa and the floor.\", \" After, the woman cleans the frames of picture and pick up hair from a pillow.\", \" Next, the woman rewinds the wire of the canister and drops the trash in the trash can.\"]}, \"v_drVqGhjI558\": {\"duration\": 128.77, \"timestamps\": [[0, 57.3], [55.37, 128.77]], \"sentences\": [\"A man is seen sitting at several tables and peeling potatoes while the camera looks around in fast motion.\", \" Another person is seen peeling potatoes and the man walks back over to the table to continue peeling.\"]}, \"v_zu960Glpzo4\": {\"duration\": 100.08, \"timestamps\": [[0, 100.08], [0, 21.02], [22.02, 39.03], [39.53, 51.04], [52.04, 68.55], [69.05, 100.08], [88.07, 91.57]], \"sentences\": [\"Two men film themselves in an arm wrestling match that someone asked them to make.\", \"  Two men are sitting in a room next to each other while one man reads off a laptop then they both grab one another's hand to motion what is about to happen.\", \"  One man sets up the camera to film the match.\", \"   The men get prepared at the corner of a table, grab hands and then countdown from three.\", \"  The two men arm wrestle as the make jokes and laugh while doing it.\", \"  One man gives up and both of the men talk and laugh about the match.\", \"  One man grunts and throws his hands up in victory.\"]}, \"v_YrS64TBX798\": {\"duration\": 22.27, \"timestamps\": [[0, 7.01], [6.9, 17.15], [16.48, 21.93]], \"sentences\": [\"A young girl is seen moving quickly around a horse brushing it's sides.\", \" She brushes all over the horse while another horse walks in and out of frame.\", \" She continues to brush the horse while the camera captures her movements.\"]}, \"v_6B7fKzdJAbo\": {\"duration\": 28.42, \"timestamps\": [[0, 28.42], [16.91, 28.42]], \"sentences\": [\"women are standing in a wooden court in a roofed gym playing voleyball while public is in teraces watching the game.\", \" the ball hits a woman for the red team and people run to her.\"]}, \"v_aEnq40UPxJ0\": {\"duration\": 61.81, \"timestamps\": [[0, 61.81], [0.31, 61.81], [52.85, 61.81]], \"sentences\": [\"People are standing in a swimming pool.\", \" They are playing a game of water polo.\", \" A woman throws the ball into the net and it's caught by the goalie.\"]}, \"v_LITdMW0xh7o\": {\"duration\": 107.86, \"timestamps\": [[0, 80.35], [80.35, 107.86]], \"sentences\": [\"A man is outside in the good with an ax attempting to cut down a tree.\", \"Finally,the tree comes down and the man begins to hit the tree with the ax.\"]}, \"v_L9MTwigRhmk\": {\"duration\": 174.57, \"timestamps\": [[0, 39.28], [38.4, 75.06], [74.19, 101.25], [101.25, 174.57]], \"sentences\": [\"BMX biker going down a track practicing in his lane by himself.\", \" Then there is another biker too, they're probably racing, They're going super fast down the track turning and hitting high bumps that make them go high up in the air.\", \" The track opens again and they start another race.\", \" Two bikers are dancing around before getting back on their bikes to get back on the track for another little race.\"]}, \"v_IgEc5mY9L44\": {\"duration\": 91.67, \"timestamps\": [[8.25, 50.88], [50.88, 85.26], [85.26, 89.38], [89.38, 90.3]], \"sentences\": [\"A foreman wear blue colored gloves before he begins welding metal.\", \" He continues welding the metal with his torch and protective gear on.\", \" He welds the metal for a very long time.\", \" Then switches off the welding torch and puts the equipment away.\"]}, \"v_tD-wp39rjnE\": {\"duration\": 33.81, \"timestamps\": [[0, 4.9], [4.9, 6.25], [6.25, 7.44], [7.78, 10.14], [9.8, 11.66], [11.66, 17.58], [17.58, 33.81]], \"sentences\": [\"A man holding a javelin runs down a track.\", \" The man throws the javelin.\", \" The man falls to the ground.\", \" We see the javelin flying through the air.\", \" We see people run to measure the distance of the javelin.\", \" The man pumps his arms and we see happy people in the crowd.\", \" we then see a reply of the man's toss.\"]}, \"v_9z_ylV5c9HA\": {\"duration\": 125.13, \"timestamps\": [[8.76, 122], [0.63, 5.01], [8.13, 122.63]], \"sentences\": [\"A girl demonstrates applying contact lenses to her eyes in an extreme close up video.\", \"  A pink slide appears advising that the a person is not good at applying contact lenses.\", \"  A girl with blonde hair and long pink nails proceeds to apply contact lenses to her eyes in a close up video which capture the lens and the eye before and after.\"]}, \"v_OOcsprnRCQQ\": {\"duration\": 183.53, \"timestamps\": [[0, 18.35], [18.35, 37.62], [37.62, 156.92], [129.39, 156], [155.08, 183.53]], \"sentences\": [\"Three people are walking on a bridge on a lagoon.\", \" We see a man on a boat and a lady putting on scuba gear.\", \" The man and the woman are underwater looking at sea life.\", \" We see a man holding an underwater animal he hands to a lady.\", \"  We see a man and a lady on a tropical patio talking and laughing.\"]}, \"v_y2MSbfOsukM\": {\"duration\": 135.76, \"timestamps\": [[0, 31.9], [29.19, 84.85], [86.88, 126.93]], \"sentences\": [\"A woman is seen bending forward while sitting on a bed and holding a brush in her hands.\", \" She then runs the brush through her hair over and over again.\", \" She continues to run the brush through her hair and ends by smiling to the camera.\"]}, \"v_ziJaskA3588\": {\"duration\": 190.06, \"timestamps\": [[0, 9.5], [9.5, 15.2], [15.2, 190.06]], \"sentences\": [\"People are in a boat while a person is attached to the back and waterboarding.\", \" As a large splash of water flies into the air white words appear in the middle of the screen that say \\\"Wipeout Bay of Plenty\\\".\", \" The person is shown from different angles waterboarding and then falling hard into the water multiple times.\"]}, \"v_j_YetAlzwbk\": {\"duration\": 74.49, \"timestamps\": [[0, 74.49], [40.97, 70.77], [70.02, 74.49]], \"sentences\": [\"A child is standing on a stool filling a cup up with water in the sink.\", \" The child puts purple gloves on.\", \" They take the gloves off and set them in the sink.\"]}, \"v_RtbfdVDciWQ\": {\"duration\": 126.62, \"timestamps\": [[0, 14.56], [14.56, 50.65], [52.55, 125.35]], \"sentences\": [\"A man wiggles his toes while seated in a room barefoot.\", \" The man puts on his shoes and ties the laces.\", \" The man dances his feet around while seated.\"]}, \"v_-JqLjPz-07E\": {\"duration\": 222.59, \"timestamps\": [[10.02, 17.81], [17.81, 20.03], [20.03, 24.48], [24.48, 27.82], [27.82, 34.5], [34.5, 47.86], [47.86, 60.1], [60.1, 74.57], [74.57, 120.2], [120.2, 166.94], [166.94, 174.73]], \"sentences\": [\"Three men are presenting an instructional video for Slikhaar Studios.\", \" The man in the center is demonstrating a hairstyle on the person wearing the blue shirt.\", \" The man in the blue shirt sits on the chair next to the sink.\", \" The other man begins washing his hair.\", \" He scrubs in the shampoo and then washes it off.\", \" He then combs it and blow dries his hair after styling it with gel.\", \" He uses an electric clipper to groom the sideburns and the temples.\", \" He also trims the back and sides of his head with the clippers.\", \" He uses scissors to trim the hair and give it a finished look.\", \" The model uses some hair gel to style his hair after the haircut.\", \" The host of the show then explains how the hair was cut and styled and gives information about his website.\"]}, \"v_gF0ymMmpS_M\": {\"duration\": 137.74, \"timestamps\": [[0, 8.95], [10.33, 33.75], [34.44, 82.64], [83.33, 108.13], [108.82, 118.46], [119.15, 137.74]], \"sentences\": [\"A woman is shown standing in front of an elliptical trainer, talking.\", \" She flips through a booklet before walking over to the trainer.\", \" She begins to demonstrate how to prepare the trainer for use.\", \" She climbs onto the trainer and shows how it is used by pedaling with her feet.\", \" A close up of the display screen is then shown.\", \" The trainer is folded to show compaction and ease of storage.\"]}, \"v_hThdSxhMhDo\": {\"duration\": 42.26, \"timestamps\": [[0, 16.48], [16.69, 30.85], [30.01, 42.26]], \"sentences\": [\"A grey bunny is standing on a bed on a black towel eating something in his hand.\", \"As he eats,the bunny begins to grabs his ears and shakes its head.\", \"Struggling more,the bunny bends down and keeps eating something before looking out.\"]}, \"v_fhEvf47Jqi8\": {\"duration\": 196.26, \"timestamps\": [[0, 105.98], [108.92, 180.56]], \"sentences\": [\"A man is seen speaking to the camera and leads into him holding a set of tools and presenting them to the camera.\", \" He then uses the tools on bushes nearby while still looking to the camera to speak.\"]}, \"v_PmWF-HawRw0\": {\"duration\": 92.25, \"timestamps\": [[0, 49.36], [12.45, 59.5], [62.73, 86.26]], \"sentences\": [\"Athletes run down a track and throw a javelins across the field.\", \" A referees runs out to check the javelin position.\", \" A leader board is shows scores of athletes.\"]}, \"v_5sl-E-AwptI\": {\"duration\": 95.36, \"timestamps\": [[1.91, 11.44], [18.59, 27.65], [11.92, 59.6], [71.52, 95.36]], \"sentences\": [\"A field hockey player dribbles a ball on the field between his legs.\", \" Th field hockey play dribble the ball back and forth in front of him.\", \" The field hockey player hits up while juggling the ball in the air and balances on his stick.\", \" The players dribble through a set of cones and takes shots on the goal.\"]}, \"v_hrN0hOmQrD4\": {\"duration\": 99.52000000000001, \"timestamps\": [[0, 13.44], [14.93, 80.61], [80.11, 86.09], [87.58, 99.52]], \"sentences\": [\"People are driving a car with rafts on the back.\", \" They get in the rafts and are rafting down a river.\", \" They go to a hot dog stand and get food.\", \" They continue rafting down the river.\"]}, \"v_ILgkiTHnGVI\": {\"duration\": 60.26, \"timestamps\": [[0, 60.26], [1.51, 17.47], [17.47, 25.01], [25.01, 35.85], [35.85, 60.26]], \"sentences\": [\"A man shows up on the screen wearing a martial arts uniform showing people how to do a side kick.\", \" He sways from side to side to show how to control your balance.\", \" He lifts his knees, one after alternating from left to right to show how to begin the kick.\", \" He continues to show how to finish the side kick with a follow through.\", \" Then he demonstrates how to do the kick from several angles.\"]}, \"v_mGgidUE8drE\": {\"duration\": 153.92000000000002, \"timestamps\": [[0, 4.62], [5.39, 61.57], [61.57, 112.36], [112.36, 143.91], [144.68, 148.53], [149.3, 153.92]], \"sentences\": [\"We see an opening white screen.\", \" We then see a man pushing a bike brake and adjusting it.\", \" The man pulls a cord on the bike near the tire.\", \" The men then adjusts the bake lever again.\", \" We then see the man talking to the camera.\", \" We see the ending title screen.\"]}, \"v_KKAPxOMogDE\": {\"duration\": 6.99, \"timestamps\": [[0, 6.99], [0.21, 6.99], [0, 6.85]], \"sentences\": [\"woman that is sitting in a chair is holding a cup in the dog's mouth so the fog can lick the cup.\", \" black dog is standing in a living oom licking water from a cup.\", \" a woman is standing in a living with a black dog in a white carpet.\"]}, \"v_l-YtPYZ_534\": {\"duration\": 104.33, \"timestamps\": [[0, 6.26], [5.74, 9.39], [9.91, 36.51], [37.04, 42.77], [42.77, 54.77], [55.29, 57.9], [71.46, 73.55], [85.55, 94.42], [94.94, 104.33]], \"sentences\": [\"We see a white opening screen.\", \" We see two men sitting then shaking their heads.\", \" We see tools and tips for croquet.\", \" The two men argue about the game.\", \" We see the men playing croquet.\", \" We see a diagram on the screen.\", \" The man has his foot on a red ball.\", \" We see a man laugh and dance while another is upset.\", \" We see the ending title screen.\"]}, \"v_OkCu0QymO10\": {\"duration\": 35.9, \"timestamps\": [[0.54, 11.13], [14.72, 35.9]], \"sentences\": [\"A man is seen standing on a ladder and working on a roof while the camera captures his movements.\", \" The man then sprays down the roof and moves back and fourth.\"]}, \"v_OhXBMlKOHMI\": {\"duration\": 42.28, \"timestamps\": [[0.42, 42.28], [3.81, 13.95], [13.95, 42.28]], \"sentences\": [\"There are a lot of people in an opened court area and they look to be mostly elderly people playing some kind of sport.\", \" A man and a woman begin to walk across the court together and they stop to watch a man with a stick who hits something across the court using his stick.\", \" Another man then walks up to the court to take his turn while the man who just had a turn moves out of his way.\"]}, \"v_mpyN1mrMl3U\": {\"duration\": 65.39, \"timestamps\": [[0, 7.19], [13.4, 28.77], [29.42, 37.93]], \"sentences\": [\"A woman is pouring ingredients into a mixer.\", \" She then makes the dough into balls and puts them on a cookie sheet.\", \" She places them in the oven.\"]}, \"v_xAxax-pfZsk\": {\"duration\": 148.26, \"timestamps\": [[0, 42.25], [42.25, 76.35], [76.35, 102.3], [102.3, 148.26]], \"sentences\": [\"A man is sitting down on the ground and has a skate show on one foot and a prosthetic leg for the other.\", \"The man then puts the roller blade over his prosthetic and then follows with the other foot.\", \"Once they are both on,he scoots to the grass and someone assists him as he gets up.\", \"After he is steady,he gets up and goes rollerblading down the sidewalk before coming back and sitting on the pavement.\"]}, \"v_ZjuM-Xv_jqY\": {\"duration\": 100.59, \"timestamps\": [[0, 30.68], [30.68, 60.35], [59.85, 87.51], [81.98, 100.59]], \"sentences\": [\"Several items are seen laid out on a table followed by a person presenting each item to the camera.\", \" The person dips a brush into water followed by a cleaner and rubbing a rag across the brush.\", \" The person scrubs down the shoes with the brush and wipes off the side with a rag.\", \" He waits a certain amount of time and rubs the shoes again and presents them.\"]}, \"v_eyWerZITH1Y\": {\"duration\": 39.43, \"timestamps\": [[0, 6.51], [6.7, 36.67], [36.27, 39.43]], \"sentences\": [\"A man jumps onto a balance beam.\", \" They begin to do a gymnastics routine on the balance beam.\", \" They jump off onto a mat next to it.\"]}, \"v_YoJxVl_hUWg\": {\"duration\": 56.38, \"timestamps\": [[0, 23.12], [23.12, 40.31], [40.03, 56.38]], \"sentences\": [\"A man is underneath an RV trying to fix the wheel as a man stands on the outside helping.\", \"The wheel is then taken off and the other group of people crowd around to find the problem.\", \"As they are talking,the man remains underneath the RV and begins smiling as he holds the rig.\"]}, \"v_O4LdjwlsGKI\": {\"duration\": 94.83, \"timestamps\": [[0, 10.43], [10.91, 45.52], [40.78, 47.42], [47.89, 77.76], [76.81, 94.83]], \"sentences\": [\"A young man in a brown hoodie and cargo pants is standing on a road in a forested area, instructing viewers as he holds onto the end of a skateboard.\", \"  After demonstrating a stance on the board, he picks it up and walks back several yards, and places the skateboard on the ground, tiling it up with one foot on the end.\", \" He puts it down flat, and begins to skate forward on the board.\", \" He flips around on the board, doing a tricky move, and then heads back to where he began to skate.\", \" 60  After speaking for a little longer, and gesturing to the board, he repeats the move again, heading back once again to the spot he started from.\"]}, \"v_yWfTd8pRLgM\": {\"duration\": 110.47999999999999, \"timestamps\": [[0, 96.12], [26.52, 27.62], [89.49, 91.15], [96.12, 110.48]], \"sentences\": [\"A girl is doing back flips on a blue mat.\", \" A girl does the splits in the air.\", \" People are laying down on the mat next to her.\", \" She does several flips on a trampoline.\"]}, \"v_Imui46JTe7s\": {\"duration\": 122.37, \"timestamps\": [[0, 2.45], [2.45, 26.31], [48.34, 110.74], [109.52, 119.31], [119.31, 122.37]], \"sentences\": [\"We see a fitness center sign.\", \" We then see a man talking to the camera and sitting and laying on a exercise ball.\", \" The man performs sits ups while on the ball and talking.\", \" The man sits up and talks to the camera.\", \" The end screen is seen on a black background.\"]}, \"v_aCiN9mqkXoA\": {\"duration\": 163.28, \"timestamps\": [[1.63, 6.53], [16.33, 48.17], [55.52, 68.58], [72.66, 83.27], [84.91, 97.15], [97.97, 99.6], [102.87, 113.48], [114.3, 120.01], [124.1, 125.73], [130.63, 139.61], [155.12, 163.28]], \"sentences\": [\"Ingredients are prepared and poured into a large mixing bowl.\", \" A woman washes a bowl in a kitchen sink with a sponge.\", \" The woman smells the bowl to make sure it is clean.\", \" The woman places the bowl into a dish washer and shows the proper placement.\", \" A woman washes a plate in a kitchen sink with a sponge.\", \" The woman smells the plate to make sure it is clean.\", \" The woman places the plate into a dish washer and shows the proper placement.\", \" A woman washes glass cups in a kitchen sink with a sponge.\", \" The woman smells the glass cups to make sure they are clean.\", \" The woman places the glass cups into a dish washer and shows the proper placement.\", \" End credits are seen for the film.\"]}, \"v_aMQVH3dF0QM\": {\"duration\": 147.17000000000002, \"timestamps\": [[0, 14.72], [14.72, 36.06], [36.79, 55.19], [55.19, 122.89], [122.89, 147.17]], \"sentences\": [\"An introduction appears on the screen for a video about galloping along the beach.\", \" Several images are shown of people riding on horseback along the beach.\", \" The images turn into a video of several people going along the sand dunes.\", \" The video then alternates between images and video of people enjoying the beach ride.\", \" The video ends with text displayed showing more information about the trip.\"]}, \"v_xmK2kbPSGUs\": {\"duration\": 88.52, \"timestamps\": [[5.31, 88.52], [5.31, 15.93], [15.93, 77.01], [77.45, 82.76]], \"sentences\": [\"A woman demonstrates how to make a mixed drink in a bar at a bar countertop in front of a countertop filled with alcohol.\", \" The woman begins by talking to the camera and pulling out a bottle of alcohol next to a mason jar prepped with a slice of lemon and mint in it.\", \"  The woman pours ice in the glass and a few shots of alcohol and then pours lemonade in the glass with a mint sprig and lemon wedge on the rim.\", \"  The woman takes a sip of the drink before the scene fades.\"]}, \"v_iZImXrduFlA\": {\"duration\": 133.17, \"timestamps\": [[0, 7.99], [11.99, 92.55], [94.55, 133.17]], \"sentences\": [\"a man is outside in his yard.\", \" He is using a pressure washer to wash the leaves off his lawn.\", \" He sprays them up and down, pushing them down an incline.\"]}, \"v_UYhKDweME3A\": {\"duration\": 91.86, \"timestamps\": [[0, 25.72], [24.8, 50.06], [50.52, 67.98], [67.98, 81.75]], \"sentences\": [\"A man fills a pot with water and adds salt and oil, and then boil the water while talking.\", \" Then, the man puts the spaghetti in the bowling pot.\", \" After, the man taste the spaghetti and drain it.\", \" Next, the man adds grated cheese and oil on the spaghetti.\"]}, \"v_f1YrGAkQd0U\": {\"duration\": 166.76, \"timestamps\": [[19.18, 23.35], [38.35, 155.08]], \"sentences\": [\"There are 3 men and 1 woman.\", \" Each of them show and tell you their way of bowling to earn strikes and get perfect scores on the high scoreboard.\"]}, \"v_K9cQxJ37xzA\": {\"duration\": 106.7, \"timestamps\": [[0, 36.81], [36.81, 45.35], [45.88, 72.55], [73.62, 83.76], [83.76, 106.7]], \"sentences\": [\"A woman in a white tank top is riding an exercise bike in a room.\", \" She is doing push ups on a black mat.\", \" She is back to riding the exercise bike.\", \" She is lifting weights up and down at her sides.\", \" She is riding on the exercise bike again.\"]}, \"v_jafEh82XETQ\": {\"duration\": 111.6, \"timestamps\": [[9.49, 16.74], [16.74, 21.2], [21.2, 26.23], [26.23, 55.8], [55.8, 66.4], [66.4, 94.86], [94.86, 104.34]], \"sentences\": [\"A man is demonstrating how to cook a friend bologna sandwich in his kitchen.\", \" He takes two slices of sandwich bread and puts them in the toaster.\", \" Then he takes a little butter and bologna in a frying pan and fries it.\", \" He flips the bologna to fry it on both sides.\", \" Then he takes two slices of American cheese.\", \" He takes the bologna out of the pan and places it on the toast along with the cheese slices.\", \" He shows the finished sandwich with the bologna and cheese.\"]}, \"v_yfeKtTU0aOE\": {\"duration\": 41.1, \"timestamps\": [[6.78, 38.22], [11.92, 36.78], [22.81, 36.78]], \"sentences\": [\"A man is sitting on a weight machine and grabbing onto handle bars.\", \" He pulls the handlebars back and fourth as the seat he's moving on continuously moves.\", \" He performs this set several times and eventually pauses to let the instruction end.\"]}, \"v_5l2_BVOqQX8\": {\"duration\": 219.34, \"timestamps\": [[0, 141.47], [92.12, 219.34]], \"sentences\": [\"A bald man in gray shirt is standing at the playground, he walked towards the monkey bars and started to pull himself up and down, he walked towards a lower pole and started to pull himself up while his legs are stretched down.\", \" He walked back to the monkey bar and pull himself up and down, his legs are moves from side to side then pull him up and down.\"]}, \"v_hiz0rH1bO7k\": {\"duration\": 192.26, \"timestamps\": [[0, 172.07], [161.5, 169.19], [172.07, 192.26]], \"sentences\": [\"kids are playing hurling in a large green field.\", \" kids are sanding al in front of the goal to make a free shot.\", \" kids are posing for a picture in the green field.\"]}, \"v_9Ds9DvdPQkM\": {\"duration\": 59.18, \"timestamps\": [[0, 36.1], [36.39, 59.18]], \"sentences\": [\"A woman is talking while holding a saxophone.\", \" She begins to play the saxophone.\"]}, \"v_fULvroAfMAo\": {\"duration\": 118.25999999999999, \"timestamps\": [[0.59, 1.77], [4.73, 84.56], [39.03, 86.92], [102.29, 111.76]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy raises a metal ball above his head, spins with a metal ball, and releases the metal ball.\", \" A guy cheers after releasing the metal ball.\", \" The score board is shown.\"]}, \"v_dDYQNtOtb-Q\": {\"duration\": 33.48, \"timestamps\": [[0, 9.88], [9.88, 33.48]], \"sentences\": [\"A little boy is riding in a car drinking a drink and playing with his phone.\", \" He begins to have a conversation with an older man who is recording him in the car.\"]}, \"v_VOLBBe1br3Q\": {\"duration\": 12.28, \"timestamps\": [[0, 3.19], [3.26, 6.63], [6.69, 9.46], [9.58, 12.28]], \"sentences\": [\"A man runs out on a professional stadium and throws a ball at a batter.\", \"  Two women watching the game cheer after the batter hits the ball with his plank.\", \" One of the women exposes her bare chest to the camera, a black bar is overlaid.\", \" The camera returns to action on the field.\"]}, \"v_WjX-xi2Ocbo\": {\"duration\": 23.36, \"timestamps\": [[0, 2.69], [2.92, 17.17], [18.34, 23.36]], \"sentences\": [\"A dirt clodden rodea is shown, as a man on a horse is released from a gate.\", \" He ropes a calf, dismounted to tie it up.\", \" Another man rides on screen momentarily.\"]}, \"v_PPJ6gSuk33o\": {\"duration\": 69.96000000000001, \"timestamps\": [[0, 45.48], [30.78, 69.26]], \"sentences\": [\"A man is seen standing in a bathroom with a woman and looking back to speak to the camera.\", \" The man then moves all around the bathroom while continuing to speak and the camera zooms in.\"]}, \"v_AuVL_nkYXw0\": {\"duration\": 227.0, \"timestamps\": [[0, 64.69], [55.61, 162.3], [122.58, 219.05]], \"sentences\": [\"A man is seen speaking to the camera while standing in front of exercise equipment.\", \" He continues speaking and leads into clips of a person's feet moving on the machine.\", \" The man the uses the machine continuously while pointing to his body and showing off his legs.\"]}, \"v_daSrmaPxaZA\": {\"duration\": 76.39, \"timestamps\": [[0, 19.48], [19.1, 60.73], [60.73, 76.39]], \"sentences\": [\"A set of black boots are shown on a small table along with a bottle oil and a rag in front of a woman.\", \"The woman then grabs the rag and puts olive oil on it and begins polishing the boots.\", \"She then pauses with the rags and starts talking.\"]}, \"v_352jrqIWSFY\": {\"duration\": 7.79, \"timestamps\": [[0, 3.35], [3.35, 7.79]], \"sentences\": [\"Two wrestlers are seen hunches over in a ring with one running over to the other.\", \" One wrestler grabs the other and flips him over his shoulders, then a ref hits the side to tap out.\"]}, \"v_J9OSz5iCwNU\": {\"duration\": 48.12, \"timestamps\": [[0, 3.61], [5.29, 12.51], [12.75, 15.4], [15.64, 29.59], [29.83, 36.81], [37.05, 45.95]], \"sentences\": [\"A young boy roller blades off a ramp and onto another ramp.\", \" The boy speeds off onto a ramp and jumps off it, landing on the cement.\", \" Later, the boy roller blades onto another ramp.\", \" The young boy is seen in another outfit, performing spins at the end of his roller blading.\", \" The boy roller blades criss cross style around some orange cones.\", \" The boy does it again, this time weaving in and out of the cones.\"]}, \"v_5Z-78AmLjFo\": {\"duration\": 95.3, \"timestamps\": [[0, 13.34], [20.49, 80.05], [81.48, 95.3]], \"sentences\": [\"A man is using a welding tool on a pile of random metal indoors.\", \" Another man is holding up a shield to protect himself.\", \" The man holds up a shield to his face as he welds.\"]}, \"v_oyljZJZJ7IA\": {\"duration\": 177.49, \"timestamps\": [[0.89, 165.96], [0.89, 13.31], [16.86, 77.21], [78.98, 165.96]], \"sentences\": [\"A man demonstrates how to use a special dog collar and harness on a dog using both a stuffed toy dog and real dogs.\", \"  A man standing in front of a wooden fence holds a stuffed dog with a red collar/harness and holds the dog up while talking and demonstrating features of the collar harness.\", \"  Two hands are showcased holding the red collar by itself and demonstrating the features of the collar harness with still graphics to accompany the hand showcase.\", \"  The man stands, now,  with a real dog and demonstrates how to put the harness on the real dog, then goes back to demonstrating with the stuffed dog before finally ending with petting the collared, real, tan, dog as a black Labrador Retriever wanders into the final shot.\"]}, \"v_OMGTFZ9csg0\": {\"duration\": 31.37, \"timestamps\": [[0, 5.18], [5.18, 27.29], [28.55, 31.37]], \"sentences\": [\"A camera zooms in on a backyard that contains a volkswagon and other various items.\", \" A man is shown putting skis together at a rapid pace.\", \" The man finishes up the skis and leaves his hat on top of the skis.\"]}, \"v_JA-B3KK9A-I\": {\"duration\": 238.03, \"timestamps\": [[0, 5.95], [3.57, 8.33], [3.57, 228.51], [92.83, 129.73], [218.99, 238.03], [228.51, 238.03]], \"sentences\": [\"An underwater view of blue water appear at the deep end of the pool.\", \"In slow motion someone splashes into the water.\", \"Various clips of men appear doing different dives into the pool and from different heights.\", \" A man goes into the water feet first, lands at the bottom of the deep pool, then drops to do a push up and then quickly shoots up.\", \"One guys jumps on the diving board but instead of diving he loses his footing and falls into the water.\", \" A boy is standing at a wall pressing a button and talking into an intercom then stops and laughs.\"]}, \"v_3zMCxmdkcRY\": {\"duration\": 202.48, \"timestamps\": [[0, 189.32], [170.08, 189.32], [194.38, 200.45]], \"sentences\": [\"A man and woman are dancing on a roof top of a building in a city.\", \" He lifts the woman up into the air.\", \" The camera pans up to a tall building in the background.\"]}, \"v_Qlh-VSBxcJs\": {\"duration\": 222.47, \"timestamps\": [[0, 40.04], [38.93, 185.76], [183.54, 222.47]], \"sentences\": [\"An intro leads into a belly dancer performing a routine in front of a mirror.\", \" She continues dancing around while moving all around the floor whipping her hair and grabbing her skirt.\", \" She finishes by sitting down on the floor and looking into the mirror.\"]}, \"v_tzbJ_CETeG8\": {\"duration\": 193.42, \"timestamps\": [[0, 9.67], [14.51, 65.76], [68.67, 193.42]], \"sentences\": [\"A group of men are in a sandy desert.\", \" They climb on top of camels and ride them.\", \" They ride the camels toward a set of pyramids.\"]}, \"v_JYRVSy54UUY\": {\"duration\": 134.72, \"timestamps\": [[0, 28.29], [31.66, 93.63], [69.38, 123.27]], \"sentences\": [\"A woman is seen speaking to the camera while holding onto an accordion.\", \"  She begins moving the instrument slowly while looking to the camera.\", \" She continues playing the accordion while speaking and looking away.\"]}, \"v_NoVa1C5KBno\": {\"duration\": 151.84, \"timestamps\": [[1.52, 27.33], [27.33, 71.36], [71.36, 112.36], [112.36, 149.56]], \"sentences\": [\"A young teenaged boy is standing outside of the house with a tennis ball and racket.\", \" He goes to the tennis court and begins to talk about the game of tennis.\", \" He does some stretches for a little but and then gets ready to hit the ball over to the other side of the court.\", \" He talks about it on the court and then he leaves to go home.\"]}, \"v_ersl2OEJ-eI\": {\"duration\": 138.5, \"timestamps\": [[0, 47.09], [47.09, 97.64], [97.64, 138.5]], \"sentences\": [\"A man is concentrating extremely hard as he is throwing darts on to a board at a tournament.\", \"People cheer and screen for him as another man approaches the board and hives him competition.\", \"The two go back and forth,however the first guy appears to be the fan's favorite and ends up winning the game.\"]}, \"v_SlogVhfmTVs\": {\"duration\": 169.53, \"timestamps\": [[6.78, 11.87], [12.71, 26.28], [27.12, 95.78], [102.57, 112.74], [118.67, 125.45], [130.54, 169.53]], \"sentences\": [\"A boy sprays shaving cream into his hand from a can in his bathroom.\", \" The boy applies the shaving cream to his face.\", \" A man has shaving cream on his face and reads a label on a pressurized can and discusses it.\", \" A man rubs his smooth face.\", \" The man holds up a metal oil can.\", \" The man applies a medicine dropper with liquid to a razor and demonstrates how to use it.\"]}, \"v_G9m5zxl2f08\": {\"duration\": 98.15, \"timestamps\": [[0, 34.35], [26.99, 98.15]], \"sentences\": [\"A person is seen putting their hands in a sink full of dirty water and pressing his face up against the water.\", \" The man continues wiping the mud off of his face as the mud drips down into the sink.\"]}, \"v_J3qC2hqRhPc\": {\"duration\": 84.68, \"timestamps\": [[0, 84.68], [2.54, 29.22], [25.41, 60.97], [57.59, 84.68]], \"sentences\": [\"Elmo from Sesame Street is presenting how to brush teeth along with singer Bruno Mars.\", \" Elmo pulls out a toothbrush and begins dancing while Bruno Mars appears brushing his teeth on the mirror.\", \" Elmo is singing along as Bruno Mars continues to brush his teeth and the multicolored lights on the mirror flicker.\", \" Elmo and Bruno Mars continue to dance along as they teach little kids the importance of brushing teeth.\"]}, \"v_pmIJcJiydpk\": {\"duration\": 12.54, \"timestamps\": [[0, 7.21], [6.71, 12.54]], \"sentences\": [\"A small child is seen standing with her hands on her hips and between jumping down a hop scotch outline.\", \" She jumps all the way down and speaks to the camera in the end.\"]}, \"v_QdvC8Xt-ym0\": {\"duration\": 65.25, \"timestamps\": [[0, 65.25], [0, 44.7], [44.04, 47.31], [48.28, 65.25]], \"sentences\": [\"Two teams on horses ride around on a field.\", \" Using cricket bats they hit a ball back and forth.\", \" A team finally makes a goal.\", \" The scoring team then rides around in victory.\"]}, \"v_rBmFxH3BUOw\": {\"duration\": 127.22, \"timestamps\": [[9.54, 25.44], [26.08, 36.26], [36.89, 73.15], [73.79, 113.86]], \"sentences\": [\"A man points to some products for the usage of waxing skis.\", \" The man cleans the ski with a towel.\", \" The man grabs one of the products and rubs it all over the ski, letting the product sit there for a while.\", \" After some time has passed, the man grabs another product and rubs it all over the ski.\"]}, \"v_UU8a7vp6tgY\": {\"duration\": 33.93, \"timestamps\": [[0, 5.09], [5.09, 7.8], [10.01, 21.88], [23.24, 28.67], [29.35, 33.93]], \"sentences\": [\"A woman is puts a rod in a base.\", \" She then puts a skirt over the rod on the floor.\", \" She puts a fake Christmas tree up on the rod.\", \" A close up of the bow of the Christmas tree is shown.\", \" She fixes the bow on the tree.\"]}, \"v_Rte9HqaQ1tw\": {\"duration\": 80.9, \"timestamps\": [[0, 5.26], [8.09, 20.22], [26.29, 80.9]], \"sentences\": [\"A white wall on the interior of a room is shown.\", \" A hand holding a lit match lights a candle.\", \" A man sets the candle beside a sink and begins to wash dishes.\"]}, \"v_u713piB4VWk\": {\"duration\": 110.5, \"timestamps\": [[1.11, 24.86], [22.1, 90.61], [87.3, 109.4]], \"sentences\": [\"A close up of people sweeping is shown followed by people walking around an arena.\", \" Two wrestlers then bend down and walk around the pit a bit followed by wrestling one another.\", \" One man throws the other down and leads into clips of the city.\"]}, \"v_Wh-Q13ZAffE\": {\"duration\": 123.07, \"timestamps\": [[4.31, 59.07], [28.92, 121.22]], \"sentences\": [\"A person is seen riding a sled down a hill followed by several people climbing up the hill and sliding back down again.\", \" An adult and child ride down as the person pulls the child out of the sled followed by more people riding down and walking up again.\"]}, \"v_MxZtYALqIrE\": {\"duration\": 233.03, \"timestamps\": [[0, 32.62], [40.78, 210.89], [217.88, 233.03]], \"sentences\": [\"A man is engaged in a pool competition.\", \" He shoots the stick at the balls, making them go into the corner pockets.\", \" When he wins, he high fives another man.\"]}, \"v_KVaTsulE5Z0\": {\"duration\": 110.92, \"timestamps\": [[0, 98.72], [21.63, 22.74], [99.28, 102.6]], \"sentences\": [\"A man is crossing a slack line.\", \" He puts something in the trunk of a car.\", \" He crosses the slack line onto the other side.\"]}, \"v_ZdgWC6Jk2Nk\": {\"duration\": 47.65, \"timestamps\": [[0.24, 11.67], [10.72, 38.83], [35.26, 47.17]], \"sentences\": [\"A close up of a lawn mower is seen with a person's shoes walking behind.\", \" A camera pans out of a dirt hole and shows a man placing it down next to a tree.\", \" The camera pans around the tree and shows the man checking up on the dirt.\"]}, \"v_dSOVaLk3ZmU\": {\"duration\": 8.36, \"timestamps\": [[0, 3.85], [3.85, 7.82]], \"sentences\": [\"A man sitting in a kayak pushing himself around swirling water using his paddles for support.\", \" The man flips several times in the water attempting to break free and he eventually does.\"]}, \"v_Po6rrhjsS8g\": {\"duration\": 168.25, \"timestamps\": [[4.21, 66.46], [33.65, 98.43], [39.54, 101.79], [87.49, 164.05], [130.4, 164.05]], \"sentences\": [\"A man is talking in the camera, while another man with scarf is behind him, then they went in the building and sat on two couches, a woman came over to give them water.\", \" The man in sweater checked his phone then get two rackets in the bag, handed one to the guy, the guy standing bounced the ball on the racket.\", \" The two men started playing tennis while they are sitting.\", \" Then they moved the couches and started playing on the wall, then play in the area where people where working.\", \" A bald man went down on the stairs and went to the two men who were playing tennis on the wall.\"]}, \"v_XpFkoI5hz7s\": {\"duration\": 98.92, \"timestamps\": [[0, 26.21], [26.21, 51.44], [50.94, 98.92]], \"sentences\": [\"A woman is seen working out with a man and leads into her speaking to the camera.\", \" She then steps back and fourth on a board moving her legs around and continuing to speak to the camera.\", \" She then hops around the camera and bit and ends by still speaking to the camera.\"]}, \"v_0vIFg1eE7Tw\": {\"duration\": 203.73, \"timestamps\": [[0, 28.52], [29.54, 59.08], [59.08, 90.66], [90.66, 202.71]], \"sentences\": [\"A woman blowing kisses at the camera, then inserting her contact lenses.\", \" She begins to put eye shadow on her eyelids and rubbing it in.\", \" She adds eyelash extensions on her eyes.\", \" Then, she begins to contour her entire face little by little patting it down as she goes along.\"]}, \"v_ECjumI_otNw\": {\"duration\": 160.59, \"timestamps\": [[9.64, 29.71], [29.71, 69.86], [69.86, 158.98]], \"sentences\": [\"A group of cheerleaders perform doing a tower, then the cheerleaders jump down.\", \" After, the cheerleaders jump, flip and does cartwheels.\", \" Next, the cheerleaders form human towers and dance together.\"]}, \"v_pA8QJ2ZoeBM\": {\"duration\": 44.19, \"timestamps\": [[0, 11.27], [20.99, 24.08], [24.3, 24.75]], \"sentences\": [\"A woman is working out on an elliptical machine.\", \" The woman is sitting on a couch in heels.\", \" She continues to work out on the machine.\"]}, \"v_JAZu9CWEVbQ\": {\"duration\": 200.25, \"timestamps\": [[0, 4], [4, 176.22], [176.22, 196.24], [196.24, 200.25]], \"sentences\": [\"There are two men in the water wearing wetsuits and laying on their surfboards as they ride a wave.\", \"The camera man is in a fast moving boat and he continues to video the surfers who are still riding the wave but now they are standing up.\", \" The surfer who is in front is happy to riding the wave for so long that he raises his two arms up in the air and then lowers it back down.\", \" The surfer in the back begins to lose balance and falls off of his board while the man in the front is still standing up.\"]}, \"v_LlpV8R-EaDQ\": {\"duration\": 17.32, \"timestamps\": [[0, 17.32], [0.78, 17.32], [3.98, 11.61]], \"sentences\": [\"A girl is sitting in the sand.\", \" She is putting sand in a blue bucket in front of her.\", \" Two people walk along the beach in front of her.\"]}, \"v_lnieKUxnxuY\": {\"duration\": 25.54, \"timestamps\": [[0, 4.6], [4.73, 11.49], [11.62, 16.99], [17.11, 19.92], [20.18, 25.54]], \"sentences\": [\"A man walks into a room and puts his hand on a ladder while talking.\", \" We see a man putting orange tiles on a floor.\", \" We see  aa man tiling a shower.\", \" We see the man putting the tiles on a floor again.\", \" We return to the man talking near the ladder and a website appears on the screen.\"]}, \"v_kbRciA51ouY\": {\"duration\": 122.88, \"timestamps\": [[0, 12.9], [13.52, 122.88]], \"sentences\": [\" A newsman in a suit is talking.\", \" Older women are behind sewing machines sewing blankets.\"]}, \"v_kZXVFSjRt5g\": {\"duration\": 141.78, \"timestamps\": [[0, 17.01], [17.72, 52.46], [52.46, 88.61], [88.61, 141.78]], \"sentences\": [\"A few people are sitting down indian style with life vest on watching a man inside of a float boat talk.\", \" They get ins the boat with paddles and some others next to them in a kayak.\", \" They use the paddle to try to control the boat, but get splashed by the very brown water.\", \" Another little boat comes and bumps into them, they paddle until they are about to reach back to land.\"]}, \"v_N4Z9eYSu2uM\": {\"duration\": 128.92, \"timestamps\": [[0, 128.92], [15.47, 18.69], [3.22, 128.92]], \"sentences\": [\"People are playing tug of war on a field.\", \" People fall into a pile of muddy water.\", \" People are standing next to them watching.\"]}, \"v_blMN_9ZtxsY\": {\"duration\": 184.44, \"timestamps\": [[0, 184.44], [0.92, 184.44], [167.84, 174.29]], \"sentences\": [\"People are dressed up playing ping pong.\", \" People are standing next to the table watching.\", \" They continue to play and two of the men high five.\"]}, \"v_2VvCuSFicyA\": {\"duration\": 103.19, \"timestamps\": [[0, 24.77], [23.22, 72.23], [71.2, 100.09]], \"sentences\": [\"A person is seen riding on a bicycle down a street with a dog tied next to him.\", \" The camera is shown in various angles the man riding the bike with the dog.\", \" The man continues riding around with the dog.\"]}, \"v_0X34KkUlCAI\": {\"duration\": 101.61, \"timestamps\": [[0, 5.08], [5.08, 19.81], [19.81, 28.96], [28.96, 33.02], [33.02, 36.58], [36.58, 44.2], [44.2, 53.35], [53.35, 70.11], [70.11, 85.35], [85.35, 87.89], [87.89, 95.01], [95.51, 101.61]], \"sentences\": [\"A man with a whistle holds the middle of the rope.\", \" Two men are at each end of the rope pulling in their own direction over the mud.\", \" The red rope is leaning toward the man in blue as he nearly sits on the ground.\", \" The referee is on his knee observing.\", \" The competitor is taking short breaths as he stares.\", \" A man with a beard gives a wink and grins.\", \" Each man continues to pull as they lean back in the mud.\", \" It shows 6 minutes has passed as they continue to pull.\", \"  It shows 8 minutes and 30 seconds have passed.\", \" The man in red stands up and runs backwards pulling the other man across the line.\", \"  The two men shake hands and hug and walk away.\", \" The man in blue puts his arms around two men and walk away.\"]}, \"v_Nkcc9kLDQz8\": {\"duration\": 161.53, \"timestamps\": [[0, 6.46], [6.46, 70.27], [70.27, 151.84], [151.03, 161.53]], \"sentences\": [\"People are standing on a hill of snow.\", \" People are snowboarding down a hill of snow.\", \" People are skiing down a hill.\", \" The skiiers stop at the bottom and talk.\"]}, \"v_p1yEPOr467M\": {\"duration\": 72.2, \"timestamps\": [[0, 4.69], [5.42, 64.98], [42.96, 44.4], [45.13, 48.37], [65.7, 71.48]], \"sentences\": [\"A group of men are pulled on an inflatable hot dog which make a swift turn causing them to fall of.\", \" People on water skis and inter tubes have comical crashes while being pulled along in the water.\", \" A boy on skis holds onto a tug rope on a dock and is pulled over falling in the water.\", \" A large group on inter tubes are pulled on tug ropes in the water then hit a large wave and flip into the air.\", \" A man on a boat jumps ship after an item with the boat still moving.\"]}, \"v_EcQ7DcVefdw\": {\"duration\": 151.57999999999998, \"timestamps\": [[0, 5.31], [5.31, 37.9], [38.65, 46.23], [46.99, 93.22], [93.98, 151.58]], \"sentences\": [\"A middle eastern news caster is talking about a recent event in another language.\", \" The scene switches to show group of people at an event of some kind.\", \" The people at the event are shown polishing shoes.\", \" A man in a red shirt is being interviewed while it shows others at the event on the split screen.\", \" The scene switches back to just the event with the newscaster talking over the footage.\"]}, \"v_mG8h5rX3OnU\": {\"duration\": 66.36, \"timestamps\": [[0.33, 65.7], [0.33, 1.33], [4.31, 27.54], [28.87, 48.78], [50.1, 65.7]], \"sentences\": [\"Several people are captured decorating a Christmas tree in a living room in a fast forward, speed motion video.\", \"  A Christmas tree stands undecorated in a living room.\", \" Two people decorate the tree with a light cord.\", \"  Three people decorate the tree with blue and silver balls.\", \"  The tree lights are turned on and wrapped gifts are placed under the tree as people start to sit under the tree and a dog casually walks by the tree.\"]}, \"v_PdNb0g36a6U\": {\"duration\": 69.06, \"timestamps\": [[0, 4.49], [4.83, 66.99], [39.36, 60.77], [61.46, 61.81], [67.33, 69.06]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy is standing, gesturing, and instructing in a gym.\", \" A man demonstrates a gymnastic stunt on a hand platform.\", \" The man poses with his hands extended in the air.\", \" The credits of the video are shown.\"]}, \"v_96kej9yK8To\": {\"duration\": 129.24, \"timestamps\": [[18.74, 32.96], [32.96, 63.97], [63.97, 91.76], [91.76, 113.73], [113.73, 122.13]], \"sentences\": [\"There's man dressed in a black sweater playing the violin in a church.\", \" There's a woman standing next to him, also dressed on black holding a violin in her hands.\", \" There's a statue of Jesus Christ right behind them.\", \" After the man stops playing the violin, the woman joins in and begins playing her violin.\", \" there are a few people seated in the front row, watching the woman play.\"]}, \"v_IrO7Fgr102M\": {\"duration\": 51.66, \"timestamps\": [[0, 19.89], [20.15, 26.86], [27.12, 51.66]], \"sentences\": [\"A group of men on donkeys play a form of polo on a dirt field.\", \"  The camera pans to people watching the game.\", \"  The camera returns to the people riding the donkeys.\"]}, \"v_1sA-lEbrgak\": {\"duration\": 70.17, \"timestamps\": [[0, 14.74], [16.14, 42.45], [36.84, 66.66]], \"sentences\": [\"A close up of a score board is shown followed by a man lifting a heavy set of weights.\", \" The man lifts it over his head and his score his shown afterwards.\", \" He does this several more times.\"]}, \"v_uPyciwjOz3E\": {\"duration\": 183.58, \"timestamps\": [[0, 183.58], [14.69, 180.82], [27.54, 180.82], [104.64, 180.82]], \"sentences\": [\"Several dogs are at a park.\", \" Their owners talk about the.\", \" Several vendors are set up in tents.\", \" The ownders walk the dogs around.\"]}, \"v_AWPlbtK7afY\": {\"duration\": 188.71, \"timestamps\": [[0, 188.71], [63.22, 163.24]], \"sentences\": [\"A group of people is learning how to rollerblade.\", \"  Some peeople go in groups, but generally they are slow and awkward.\"]}, \"v_Bc0_vvpfMAE\": {\"duration\": 226.79, \"timestamps\": [[0, 37.42], [49.89, 123.6], [127, 226.79]], \"sentences\": [\"A woman is shown talking in her kitchen.\", \" She fills a bowl with butter, flour and sugar, and adds eggs.\", \" She creates a dough, and then makes and bakes a batch of cookies.\"]}, \"v__bj64aqyIyk\": {\"duration\": 8.13, \"timestamps\": [[0, 8.13], [0.24, 8.13], [7.44, 8.13]], \"sentences\": [\"A girl is crossing the monkey bars.\", \" A girl in a yellow shirt is standing on the ground watching.\", \" A girl on a blue shirt is standing on a playground.\"]}, \"v_Il0IelOoXa4\": {\"duration\": 107.36, \"timestamps\": [[0.54, 25.23], [24.69, 83.2], [75.15, 106.29]], \"sentences\": [\"A woman is seen sitting in a canoe when a man pushes her along and climbs in back.\", \" The man is seen riding around and looking at her surroundings while the man behind paddles.\", \" The woman continues sitting and looking around her at the trees and sights.\"]}, \"v_jSHcj_pXiI4\": {\"duration\": 164.56, \"timestamps\": [[0, 70.76], [70.76, 78.99], [78.99, 97.91], [97.91, 164.56]], \"sentences\": [\"A man is getting his ear pierced by another individual who only has his or her hands in frame.\", \" The second individual pushes a cart behind the first individual.\", \" The camera focus on the first individual.\", \" The second individual pierces the first man's other ear.\"]}, \"v_AG2g8djPKV0\": {\"duration\": 44.44, \"timestamps\": [[0, 4], [4.89, 38.89], [14.67, 16.89], [18.44, 22.67], [27.11, 30], [39.11, 44.44]], \"sentences\": [\"We see an opening title screen.\", \" We see a lady washing clothes by hand outdoors.\", \" The lady pours water on the clothes from a bowl.\", \" The lady pushes her hair back.\", \" The lady pours more water on the clothes.\", \" We see the closing title screen.\"]}, \"v_A49K-WtIzsY\": {\"duration\": 52.85, \"timestamps\": [[0, 43.34], [43.07, 52.85]], \"sentences\": [\"A man is outside scraping the ice off of the windows of his car.\", \"Once he is finished,he puts the tool in the back of his seat and gets in the car.\"]}, \"v_T9jiC2SRLJQ\": {\"duration\": 70.64, \"timestamps\": [[0.71, 22.96], [22.25, 54.04], [49.09, 68.87]], \"sentences\": [\"A person is seen making a drink close up followed by him speaking to others on a mountain.\", \" More shots are shown of the man having a drink as well as speaking to others.\", \" The man has another drink and plays pool followed by a picture of them.\"]}, \"v_RVOBQBamjDA\": {\"duration\": 209.65, \"timestamps\": [[0, 7.34], [8.39, 36.69], [38.79, 206.51], [206.51, 208.6]], \"sentences\": [\"A lady is sitting and playing the piano.\", \" A guy is standing and playing a saxophone.\", \" The lady and guy are performing on the same stage, together.\", \" The lady and guy stop playing.\"]}, \"v_z31xpHUGgO0\": {\"duration\": 113.57, \"timestamps\": [[0, 40.88], [40.88, 91.99], [92.56, 110.16]], \"sentences\": [\"A man and a little boy play badminton in an indoor court.\", \" The little boy serves and returns the ball well.\", \" The little boy miss a ball that ends in the net, then the man recovers the ball and they continue playing.\"]}, \"v_KCOzA0Suy5U\": {\"duration\": 66.67, \"timestamps\": [[7, 9.33], [10.33, 63], [25.33, 28], [36.33, 44.67]], \"sentences\": [\"Two young motorcycle riders sit on the bikes and wave on a dirt trail.\", \" The boys ride their bikes over jumps on the trails.\", \" A young rider jumps a ramp and clutches the handlebars with his feet.\", \" The boy does heal clicks and kicks his feet to the side of the motor bike in mid air.\"]}, \"v_x9VlxLDK-VM\": {\"duration\": 121.39, \"timestamps\": [[0, 34.6], [34.6, 88.62], [88.01, 121.39]], \"sentences\": [\"A young girl with messy curly hair is standing in front of the sink cleaning a dish with a blue sponge.\", \"She then rinses the top of the plate and hands it to somebody standing behind her.\", \"As she grabs the next dish,someone comes along and puts another dish in the sink as she continues to dump water in and out of the container.\"]}, \"v_XklHV0q3w40\": {\"duration\": 236.19, \"timestamps\": [[12.99, 27.16], [27.16, 42.51], [43.7, 236.19]], \"sentences\": [\"A man is sitting down playing a saxophone.\", \" He stops playing the saxophone and talks.\", \" He stands up and continues playing the saxophone.\"]}, \"v_VOyKKN3NdXM\": {\"duration\": 227.19, \"timestamps\": [[0, 9.09], [9.09, 30.67], [30.67, 44.3], [44.3, 209.01], [209.01, 215.82], [216.96, 227.18]], \"sentences\": [\"A colorful intro with a lot of flashing words flash across the screen along with a logo and a banner with foreign language written on it.\", \" A woman dressed in an orange and red dress and scarf is standing and talking has she hold white paper in her hands.\", \" The woman is no longer shown and there are various pictures flashing that seem to be about SPEED CAR WASH.\", \" A few short video clips begin and they all take place at the SPEED CAR WASH company where cars are driving, products are shown, a man is washing a car and various people are talking either together or alone.\", \" The woman from before who is dressed in an orange and red dress appears again and is still holding the white paper as she talks.\", \" Flashing words appear after the woman is talking and continues to the end.\"]}, \"v_q8TBL7DBgXY\": {\"duration\": 144.57, \"timestamps\": [[0, 12.29], [13.01, 40.48], [41.92, 76.62], [79.51, 144.57]], \"sentences\": [\"A pier is shown at a beach, with people walking alongside it.\", \" Many pictures are shown of a woman tying up a pair of skates.\", \" She skates and we see bikes, people riding them, palm trees, and ferris wheels.\", \" We follow the woman as she skates alongside surfboards and other people.\"]}, \"v_4gEDonpfTeY\": {\"duration\": 175.46, \"timestamps\": [[0, 80.71], [80.71, 103.52], [86.85, 88.61], [92.12, 95.63], [105.28, 173.71]], \"sentences\": [\"A man and a woman dance in a restaurant full of people.\", \" The woman approaches a young male and touch his face, then the man gets angry and push the woman who ends on his arms and they continues dancing.\", \" A fire appears on the floor.\", \" A man puts two bread sticks on the nose while a woman watch with surprise.\", \" The man helps a woman light a cigarette, then he flips and takes as red table cloth to make tricks, the the man and the woman continues dancing until they kiss while liquid come out of bottles and appears the moon at the end.\"]}, \"v_HeMpg3SAUUs\": {\"duration\": 27.66, \"timestamps\": [[0, 4.29], [4.29, 25.03], [25.3, 27.66]], \"sentences\": [\"A little girl is wiping water all over her face.\", \" She looks at the camera and smiles as she continues to wash her face.\", \" She sticks her tongue out slightly at the camera.\"]}, \"v_d_z2CA-o13U\": {\"duration\": 182.07, \"timestamps\": [[6.37, 182.07], [21.85, 182.07], [84.66, 87.39], [134.73, 141.1], [147.48, 182.07]], \"sentences\": [\"people are having fun playing with paint ball guns in interesting ways,some are riding in cars and other are on the ground shooting paint balls at each other.\", \"there are people on motorcycles as well as up in the air in parachutes just have a big fun day.\", \"One guy seems to have a paint ball rocket launcher and shoots a guy with it.\", \"there are people on motor skate boards also.\", \"they show that a group of people made it to the top of a small hill to plant there flag and many of there team mates were defeated.\"]}, \"v_DVsLkoQijV4\": {\"duration\": 16.42, \"timestamps\": [[0, 5.58], [5.58, 13.22], [13.13, 16.42]], \"sentences\": [\"Two girls dressed in a red shirt and black spanxs are bending over preparing for a volley ball game.\", \"The other team is shown on the other side of the net and they serve the ball.\", \"Both of the girls begin to play,hits the ball back over and the girl cheers as they gain a point.\"]}, \"v_L9ons75VGCg\": {\"duration\": 184.86, \"timestamps\": [[0, 48.99], [48.99, 90.58], [90.58, 154.35], [154.35, 167.29], [167.29, 184.86]], \"sentences\": [\"There are a lot of different teams rowing very fast in a very large body of water that is outdoors, surrounded by a lot of trees and a lot of buildings.\", \"Now the focus is on canoes that only have one woman in it and they are racing on another just like the teams did but they are alone and they have numbers behind them.\", \"Now they are showing canoes with two men racing and they are also rowing very fast, and then teams of 4 men begin to race.\", \"When they are done racing they are now shown walking up to a man and a woman who are placing medals on ribbons around men and women that walk up to him.\", \"When the medals have all been given out the list of winners begin to display on different screens.\"]}, \"v_Hcoc9euI0tk\": {\"duration\": 69.24, \"timestamps\": [[0, 19.04], [19.04, 28.39], [28.04, 43.28], [43.62, 69.24]], \"sentences\": [\"Two people are skiing down a very cold and snowy mountain slope during winter.\", \" Going left and right and starting to build up some more speed as they go.\", \" One of them falls and still moving down the slope ends up running into another skier causing him to fall down also.\", \" They try to grab hands and they end up finally at a halt.\"]}, \"v_zuNQFkkyBNo\": {\"duration\": 41.01, \"timestamps\": [[0, 2.05], [3.08, 37.32], [10.66, 13.33], [24.4, 37.11], [37.73, 41.01]], \"sentences\": [\"We see green writing on a black title screen.\", \" A lady in a lacy black and white bra sits in a black room under bright spot lights smoking a cigarette.\", \" The lady pushes her hair back.\", \" The lady adjusts her position in the chair and looks down.\", \" We then see the ending title screen.\"]}, \"v_UusDcf16TVQ\": {\"duration\": 116.66, \"timestamps\": [[0, 111.99], [37.91, 39.08]], \"sentences\": [\"A person wearing a mask plays the accordion.\", \" A woman waves to the person with the camera.\"]}, \"v_Xk3KngL2ZH0\": {\"duration\": 62.6, \"timestamps\": [[0, 11.89], [14.09, 45.39], [36.62, 59.47]], \"sentences\": [\"A close up of snow is shown that leads into a man playing drums.\", \" The man leans over a set of drums in the snow while the camera pans around.\", \" The man still plays the drums and stops to walk away and look at the camera.\"]}, \"v_dtYofkPozXM\": {\"duration\": 145.4, \"timestamps\": [[5.82, 131.59], [10.18, 127.23], [137.41, 139.59]], \"sentences\": [\"A man is painting a room.\", \" He stands on many ladders to reach the walls.\", \" He poses in front of a fireplace.\"]}, \"v_8WFB_LUOx4k\": {\"duration\": 153.75, \"timestamps\": [[0, 33.06], [32.29, 54.58], [54.58, 96.86], [100.71, 153.75]], \"sentences\": [\"A camera captures several shots of sites as well as people standing outside drinking and celebrating.\", \" One man pulls out a weed and a drone is seen flying in the distance.\", \" The people attempt to hit the drone and then are seen driving around on a golf cart around other people.\", \" A man shows up in a guerrilla suit and the drone flies over people playing games and riding around.\"]}, \"v_Q1mh4F0L8Ec\": {\"duration\": 222.77, \"timestamps\": [[0, 88], [82.43, 222.77]], \"sentences\": [\"A girl in white top and blue jeans is brushing the fur of the horse on one side then she moved on the other side and then brushed his leg.\", \" The lady picked up a black bottle and spray the body of the horse, then brushed off the dirt off the horse shoes then put polished on the horse's feet.\"]}, \"v_2ESPauwYUnQ\": {\"duration\": 30.3, \"timestamps\": [[0, 15.15], [15.3, 23.03], [23.33, 30.3]], \"sentences\": [\"A young boy arranges a shirt on the floor.\", \" He grabs and iron and irons the shirt.\", \" He places the iron down and looks around the room.\"]}, \"v_UD4RnQp5tPY\": {\"duration\": 220.38, \"timestamps\": [[13.22, 22.04], [23.14, 35.26], [40.77, 99.17], [98.07, 146.55]], \"sentences\": [\"A young man stands in a dark room holding two maraca's and speaking to the camera.\", \" Another man walks in scolding him and then eventually take off their shirts.\", \" They walk to the bathroom and rub shaving cream all over their legs.\", \" They begin shaving their legs and hold up a razor smiling at the camera.\"]}, \"v_4ksF9BUdQJM\": {\"duration\": 61.6, \"timestamps\": [[0, 7.39], [7.39, 23.1], [23.41, 39.43], [39.73, 61.6]], \"sentences\": [\"A man walks outside plugs his lawn mower in and gets ready to mow.\", \" He starts mowing his lawn casually going over all the grass.\", \" His dog comes outside and starts to follow him a little while he's closer to the house.\", \" The yard is slowly starting to look really really nice, once he is completely finished the yard looks great, nice and smooth.\"]}, \"v_L0K-WJuI1-I\": {\"duration\": 136.49, \"timestamps\": [[0, 11.6], [11.6, 34.12], [25.93, 45.04], [47.77, 136.49]], \"sentences\": [\"A man is standing in a kitchen talking.\", \" He uses a vacuum to clean the floor.\", \" He removes the filter from the vacuum.\", \" He talks some more after this.\"]}, \"v_syy0FVZ7SkQ\": {\"duration\": 192.31, \"timestamps\": [[0, 12.5], [21.15, 25.96], [25.96, 86.54], [87.5, 91.35], [92.31, 105.77], [106.73, 115.38], [116.35, 188.46]], \"sentences\": [\"A middle aged man talks while holding a mop.\", \" The man throws a mop pad on the floor and puts the mop on it picking up the pad.\", \" The man goes around the room mopping the floor.\", \" The same man is standing in a kitchen.\", \" The man runs water over the mop pad and then wrings it out.\", \" The man throws the mop pad on the floor again and picks it up with the mop.\", \" The man mops the floor going around the furniture.\"]}, \"v_sByOncVAMqg\": {\"duration\": 99.71000000000001, \"timestamps\": [[0, 14.46], [29.41, 80.76], [88.24, 99.71]], \"sentences\": [\"A gymnast mounts a low beam in a gym.\", \" She stands on the beam, then does several hand springs and flips.\", \" She dismounts, raising her arms in the air.\"]}, \"v_wtA-5-6DRcY\": {\"duration\": 87.66, \"timestamps\": [[0, 17.97], [19.72, 62.24], [70.56, 87.66]], \"sentences\": [\"A group is lazily floating on intertubes in a river.\", \" The people are holding hands so they stay together.\", \" They float down the water in the rain, through the rapids.\"]}, \"v_aDsRltSdQak\": {\"duration\": 147.77, \"timestamps\": [[0, 5.17], [5.17, 30.29], [30.29, 107.87], [72.41, 87.19], [88.66, 107.13], [108.61, 114.52], [114.52, 137.43], [138.17, 147.77]], \"sentences\": [\"We see the opening title screen.\", \" We see the ocean and an island in the water.\", \" We see a person kitesurfing in the water.\", \" We then see two people kitesurfing.\", \" We go back to just one person surfing.\", \" We see the island from above.\", \" We return to the surfer in the water.\", \" We then see the closing title screen.\"]}, \"v_v0mUPr68x2U\": {\"duration\": 204.19, \"timestamps\": [[9.19, 40.84], [40.84, 86.78], [86.78, 163.35], [172.54, 179.68], [180.71, 203.17]], \"sentences\": [\"A man get out a home while a dog follows him.\", \" Then a toddler get out the home, stand on the border of the swimming pool an falls in the water.\", \" The baby floats face up, then a man comes and take the baby.\", \" A woman puts a baby in the swimming pool, and the baby swims fast to reach the border of the swimming pool.\", \" A woman puts the baby in the swimming pool who swings and floats.\"]}, \"v_0-ReTddxkhg\": {\"duration\": 74.96000000000001, \"timestamps\": [[0, 7.12], [7.12, 10.12], [18.74, 36.35], [22.86, 24.36], [32.23, 50.97], [55.84, 74.96], [62.96, 74.96]], \"sentences\": [\"Two women are in front of a camera, the woman in the red shirt is speaking.\", \" The women both put something from a cup in there mouths.\", \" The woman in red begins to dance.\", \" The woman in black makes a face to the camera.\", \" Both girls bend over a bit in front of the camera.\", \" The woman in red stops dancing and begins to laugh and the woman in black does this as well.\", \" It appears that both women either swallow or spit out whatever was in their mouths.\"]}, \"v_yhWPzE-kmk4\": {\"duration\": 45.21, \"timestamps\": [[0, 3.62], [3.39, 27.58], [28.48, 45.21]], \"sentences\": [\"A young child is seen talking to the camera while wearing oven mits and holding a stick.\", \" The boy then opens and oven door and pulls out a plate of cookies.\", \" He uses the stick to push the rack back and closes the oven while waves to the camera.\"]}, \"v_QT2l100KJe0\": {\"duration\": 34.05, \"timestamps\": [[0, 5.45], [5.62, 12.77], [13.11, 14.81], [17.54, 34.05]], \"sentences\": [\"A man in a yellow shirt has his hands behind his head.\", \" He is running down a track and throwing a javelin.\", \" He trips and falls forward.\", \" A shot of the field is shows with many people walking on it.\"]}, \"v_W34A9wUi-4g\": {\"duration\": 136.19, \"timestamps\": [[0, 76.26], [80.35, 98.73], [99.42, 136.19]], \"sentences\": [\"team is in a court playing futsal, running through the court, while people is siting on stands watchin the game.\", \" team are standing on sides charging a penalty.\", \" people are in a roofed gym playing and waching the game.\"]}, \"v_0OxOI3sAIrM\": {\"duration\": 80.55, \"timestamps\": [[0, 11.68], [11.68, 57.59], [59.2, 80.55]], \"sentences\": [\"A woman is sitting on a mat on the floor.\", \" A man is talking about how to use a bowflex.\", \" She lies down, doing sit ups as he continues to talk.\"]}, \"v_iAWXaWo82u4\": {\"duration\": 43.89, \"timestamps\": [[0, 7.24], [9.87, 40.38], [19.53, 22.16], [40.81, 43.89]], \"sentences\": [\"A person is holding a dog covered in suds and holding a bottle of shampoo in a yard.\", \" We see the person standing next to the dog and washing him with the shampoo.\", \" A person waves their hand in front of the dog.\", \" The camera pans and we see another dog laying on the ground.\"]}, \"v_1FFbrlvDQ7c\": {\"duration\": 196.28, \"timestamps\": [[0, 14.72], [14.72, 46.13], [46.13, 152.12], [152.12, 163.89], [163.89, 196.28]], \"sentences\": [\"A white screen appears with a picture of a globe and a banner around it with yellow words that say \\\"ABADA-CAPOEIRA\\\"and is followed with various white screens that have black writing on each individual screen.\", \" People that include both children and adults are gathered in a room and are watching a film being projected on a large wall.\", \"Now there are people that are dressed in white and are in a room with blue mats on the ground and various different people including both adults and children are all dancing capoeira style either together, or separately while some people play instruments and some people just watch them.\", \" When they're done dancing a lot of the children pile onto and around an adult man and they take a group picture.\", \" Outro appears and it's the globe, white screens with black words on each one, and then logos.\"]}, \"v_J3TwVc0v89A\": {\"duration\": 204.48, \"timestamps\": [[0, 173.8], [7.16, 27.6], [48.05, 132.91], [71.57, 89.97], [129.84, 132.91], [173.8, 204.48]], \"sentences\": [\"Two sister toddlers enter in a kitchen, then one toddler wash the dishes in the sink.\", \" The mother puts dishes on the sink and open the dishwasher.\", \" The toddler sister helps with the dishwasher and then climbs the high chair and help wash the dishes and the toddler loads the dishwasher.\", \" The mother stands near the refrigerator drinking tea and texting.\", \" The sister toddler go down the chair and leave the kitchen.\", \" Then, the toddler go down the chair, then she close and turn on the dishwasher.\"]}, \"v_QFz-keqof9g\": {\"duration\": 43.91, \"timestamps\": [[0, 43.91], [3.51, 43.91], [10.54, 19.32], [26.56, 43.91]], \"sentences\": [\"A rope is strung between two trees.\", \" A man walks on the rope.\", \" He falls several times off the rope.\", \" Eventually he is able to balance and walks back and forth.\"]}, \"v_JKVOi9DE8Hs\": {\"duration\": 73.78999999999999, \"timestamps\": [[0, 35.05], [43.91, 73.79]], \"sentences\": [\"A little boy is throwing darts at a board.\", \" He walks over to the target, looking at where the darts hit.\"]}, \"v_1o9RGnujlkI\": {\"duration\": 130.5, \"timestamps\": [[0, 28.06], [28.06, 90.7], [90.7, 130.5]], \"sentences\": [\"A girl is standing in a room taking out several arrows out of her pack and using her arrow to release them.\", \"She then moves around the gym,takes a deep breath and continues going.\", \"After she moves again,two carpets are shown hanging from the wall and she continues to aim at her target until all of her bows are gone.\"]}, \"v_K1G84xfLr9s\": {\"duration\": 126.97, \"timestamps\": [[0, 17.14], [20.95, 111.1], [114.27, 126.97]], \"sentences\": [\"A girl walks onto a mat, bowing before the judges.\", \" She performs several martial arts moves using a large wooden stick.\", \" When she is done, a man blows a whistle.\"]}, \"v_bKec2fA5RZ8\": {\"duration\": 181.51, \"timestamps\": [[0, 66.25], [67.16, 180.6]], \"sentences\": [\"A woman is shown talking to the camera holding a vacuum and followed by her vacuuming up her floor at a fast pace.\", \" She vacuums all around the area while still talking to the camera and eventually transitioning to a close up of the vacuum.\"]}, \"v_gMaakjqhNmM\": {\"duration\": 19.99, \"timestamps\": [[0, 19.99], [0.8, 6.8], [0.7, 8], [8.7, 19.49]], \"sentences\": [\"There are some men playing darts in a basement where two dart boards are hung on the wall.\", \" One of the men wearing a green shirt aims the dart board with a dart to hit the bull's eye on one board.\", \" Another man also hits the dart on the other dart board.\", \" The man in green shoots another dart and then goes to remove it from the dart board.\"]}, \"v_8kkKxLpiMus\": {\"duration\": 34.06, \"timestamps\": [[0, 4.43], [5.28, 28.44], [29.47, 34.06]], \"sentences\": [\"a group of people are gathered inside a room.\", \" They are walking back and forward together.\", \" They are dancing as a form of aerobics.\"]}, \"v_kp-mNHSU5Rc\": {\"duration\": 172.01, \"timestamps\": [[0, 28.38], [29.24, 134.17], [135.89, 172.01]], \"sentences\": [\"Several shots of people leading around horses are shown and one ties a horse to pole and wets down a razor.\", \" The woman then cuts the horses mane and rubs down the horses coat while the camera pans around.\", \" The woman unties the horse and finishes by speaking to the camera.\"]}, \"v_IcDadC2tw5c\": {\"duration\": 30.26, \"timestamps\": [[0.3, 30.1], [1.06, 7.87], [9.53, 26.47], [14.07, 29.95]], \"sentences\": [\"A person watches another person using a leaf blower in a yard from an elevated window.\", \"  A person in dark clothing blows leaves on a piece of property in front of two open garage doors.\", \"  Another person moves with the camera as they watch from a window in an elevated room against a white window sill.\", \"  The person blowing the leaves moves around the yard and continues to do lawn maintenance.\"]}, \"v_k3rWocPJ428\": {\"duration\": 70.24, \"timestamps\": [[0, 11.24], [11.59, 22.48], [24.23, 54.09], [50.22, 54.79], [57.95, 62.87]], \"sentences\": [\"A table soccer set is seen without players that is built out of Lego type blocks.\", \" A ball is dispensed from an enclosure.\", \" Two boys play a game of table soccer.\", \" A boy scores a goal and the ball is retrieved from the slot.\", \" A ball falls down a square chute.\"]}, \"v_KoP6ZgL6fMY\": {\"duration\": 172.64, \"timestamps\": [[0, 35.39], [35.39, 82.87], [82.87, 140.7], [140.7, 172.64]], \"sentences\": [\"A woman in red is practicing to jump in the sand, She runs a little and jumps in the sand again.\", \" Then she starts to try from further back, sprinting and jumping into the sand.\", \" She starts to jump over little stands next and then another man joins in to practice with her.\", \" Then, an actual race begins and everyone is racing along.\"]}, \"v_hKa9wV1orM8\": {\"duration\": 100.05, \"timestamps\": [[0, 6], [6, 9], [10, 29.51], [29.51, 69.03], [69.53, 100.05]], \"sentences\": [\"People rides bumper cars in a carnival.\", \" A teen wearing red cup gets hit by other cars.\", \" People spin around and then continue riding and bumping.\", \" Then, people spin without hitting and then continue riding and bumping cars.\", \" A boy wearing white shirt spins around and get hit by several cars.\"]}, \"v_CZISTSKNsSk\": {\"duration\": 103.49000000000001, \"timestamps\": [[0, 4.14], [4.14, 93.66], [10.87, 93.66], [93.66, 103.49]], \"sentences\": [\"An introduction comes onto the screen for a video about how to ski.\", \" A man presents the videos with the topics he will cover as well as the equipment that will be needed to ski.\", \" Throughout the video, several people are shown demonstrating some key concepts of the skiing lesson.\", \" The video ends with the closing credits for the segment.\"]}, \"v__kdhjXHUfes\": {\"duration\": 113.99000000000001, \"timestamps\": [[1.14, 27.36], [25.65, 92.9], [69.53, 110.57]], \"sentences\": [\"A woman is seen holding a pose on a stage and leads into another man walking on stage.\", \" The man and woman then perform a dance routine together around the stage while looking at one another.\", \" The two continue dancing and end with a bow and the audience applauding.\"]}, \"v_rmaHl5HTcwE\": {\"duration\": 73.42, \"timestamps\": [[0, 11.75], [14.32, 37.45], [38.91, 72.32]], \"sentences\": [\"A close up of a dart board is seen that leads into darts appearing.\", \" A person's hand takes off the darts and more darts are shown hitting the board.\", \" This happens several more times while the camera captures it's movements.\"]}, \"v_yJgC3-t_ciw\": {\"duration\": 61.26, \"timestamps\": [[9.19, 22.66], [22.66, 34.92], [34.92, 43.8], [43.8, 53.9], [53.9, 57.27]], \"sentences\": [\"There are two men playing Foos ball with two young boys in a living room.\", \" There is a large decorated Christmas tree behind them.\", \" There is a woman sitting in the living room with a little girl.\", \" The boys play Foos ball with the men.\", \" They laugh and enjoy themselves as they continue to play.\"]}, \"v_BK8yiRJkfcU\": {\"duration\": 46.93, \"timestamps\": [[0.7, 14.55], [15.72, 35.43], [32.38, 46.69]], \"sentences\": [\"A large arena is seen with a person running by and pointing to the camera.\", \" Several shots are shown of the athlete playing football and leads into him standing.\", \" The man then runs down the field and long jumps into a sand pit and his jump is shown again.\"]}, \"v_asWvAGhlbdQ\": {\"duration\": 180.93, \"timestamps\": [[0, 71.47], [56.09, 148.36], [157.41, 166.46]], \"sentences\": [\"A man is seen holding a sharp knife in his hands while the camera zooms in and the man points to two boxes.\", \" He then glides the knife along the boxes and shows off the sharpened knife to the camera.\", \" He ends by holding the knife and smiling to the camera.\"]}, \"v_8aYk3so14fE\": {\"duration\": 198.76, \"timestamps\": [[0, 64.6], [66.59, 143.11], [149.07, 194.79]], \"sentences\": [\"A man is seen looking off into the distance and leads into him speaking to the camera.\", \" The man continues to speak to the camera and then walks behind a set of drums.\", \" The man plays the drums continuously and ends by speaking to the camera.\"]}, \"v_hDV6wQKvKCg\": {\"duration\": 44.42, \"timestamps\": [[0, 14.44], [14.44, 44.42]], \"sentences\": [\"A young girl is shown swinging back and fourth on a swingset and smiling into the camera.\", \" She continues going back and fourth while the camera captures her yelling at the camera.\"]}, \"v_vBCnsp-NEAg\": {\"duration\": 121.42, \"timestamps\": [[0, 29.75], [29.75, 53.42], [54.03, 106.85], [106.85, 117.17]], \"sentences\": [\"A person slices and ground garlic and chop parsley.\", \" Then, the person adds the garlic in the hot oil in a pan.\", \" The person cooks and drain the pasta, then put the pasta in the pot and add chicken broth, the cooked garlic, parsley, salt, pepper and cheese on top.\", \" Next, the person make fried chicken, then serves the pasta with the chicken.\"]}, \"v_1f_EQl4C700\": {\"duration\": 204.2, \"timestamps\": [[6.13, 18.38], [34.71, 52.07], [66.36, 76.57], [78.62, 90.87], [94.95, 124.56], [124.56, 134.77], [137.83, 152.13], [153.15, 171.53], [173.57, 190.92]], \"sentences\": [\"Different people enjoy having a cup of tea together.\", \" A woman blends the holds up a greased pan then adds a yellow butter to a bowl.\", \" Flour is added to the bowl and everything is blended together.\", \" Eggs are added to the mixture and blended in with a blender.\", \" The woman adds a liquid extracts as well as additional powdered flour to the dish.\", \" The woman adds cubed fruit to the mixture and stirs it with a spatula.\", \" The host pours the ingredients into a pan then cooks them in an oven.\", \" The women enjoy a bite of the dish together.\", \" The host pours a cup of tea to enjoy.\"]}, \"v_kS_wMOFfMDk\": {\"duration\": 23.69, \"timestamps\": [[0, 5.57], [5.57, 23.69]], \"sentences\": [\"A woman rubs her hand very well.\", \" Then, the woman rinse her hands with water.\"]}, \"v_2ehPAKS6Gpo\": {\"duration\": 30.23, \"timestamps\": [[0, 30.23], [8.01, 13.76], [13.76, 30.23]], \"sentences\": [\"People are playing hockey on a rink of ice.\", \" A referee skates over to the people.\", \" They continue playing the game of hockey.\"]}, \"v_Z4OyG8ZzUpg\": {\"duration\": 176.36, \"timestamps\": [[0, 40.56], [8.82, 40.56], [7.05, 45.85], [29.98, 37.03], [43.21, 84.65], [84.65, 125.21], [126.98, 175.47]], \"sentences\": [\"Two boys are out in the yard playing ball.\", \" One stands in front of the net and passes to the other with lacrosse sticks.\", \" The boys continue passing the ball bath and fourth to each other.\", \" One boy throws the ball out into the road while the other runs after it.\", \" Another boy comes in with a wig and the boys start wrestling each other.\", \" The boys then pretend the beat the boy with the wig up.\", \" The boys all continue wrestling each other while grabbing the objects and running away.\"]}, \"v_E8r9-dSKLwc\": {\"duration\": 49.34, \"timestamps\": [[0, 49.34], [23.19, 42.68], [2.22, 49.34]], \"sentences\": [\"People are riding bikes around a dirt trail.\", \" They go over a hill several times.\", \" The boy is wearing a helmet.\"]}, \"v_pv73L2pQX1s\": {\"duration\": 66.02, \"timestamps\": [[0.33, 26.08], [27.07, 45.88], [45.88, 66.02]], \"sentences\": [\"A person is welding a small square metal object.\", \" A flame exit a tube and a light sparkles form the welding machine.\", \" Two men weld to join to big cylinders.\"]}, \"v_-1IBHYS3L-Y\": {\"duration\": 252.82, \"timestamps\": [[0, 190.88], [190.88, 241.44], [241.44, 252.82]], \"sentences\": [\"A man removes snow on a car using a snowbrush.\", \" Then, the man writes over the snow covering the window of a car, and a woman wearing winter clothes smiles.\", \" Then, the man continues removing the snow on his car.\"]}, \"v_OYPyiUC4h68\": {\"duration\": 135.95, \"timestamps\": [[0, 6.8], [7.48, 33.99], [33.99, 119.64], [127.8, 135.95]], \"sentences\": [\"A man in bathing suit and his wife float down a river on intertubes.\", \" The man falls from his intertube and walks over to the waters edge.\", \" The man, now wearing life jacket, with his wife float down a river in the middle of a large group.\", \" A group from behind floats next to the man and woman as they slow down near the side of the river.\"]}, \"v_oB6h3DscMUw\": {\"duration\": 30.86, \"timestamps\": [[1.85, 8.49], [8.49, 27.93]], \"sentences\": [\"A woman cuts the ends off a sweet potato on a cutting board with a knife.\", \" The woman uses a peeling tool to skin a sweet potato over the cutting board.\"]}, \"v_L4ZhAK04yjg\": {\"duration\": 128.15, \"timestamps\": [[0, 121.1], [19.22, 57.67], [28.19, 48.06], [59.59, 64.72], [61.51, 85.86], [73.05, 87.78], [82.02, 121.1], [92.91, 99.96], [122.38, 128.15], [121.74, 128.15]], \"sentences\": [\"We see a man and a a woman dancing together.\", \" The man spins the woman back and forth.\", \" The screen turns a green shade.\", \" The lady takes her hair out of a pony tail.\", \" The screen turns a blue shade.\", \" A person enter the room then leaves.\", \" The people start spining again.\", \" The person returns and moves to the left.\", \" The color becomes normal again.\", \" The man stops and the woman is upset.\"]}, \"v_ZWHFbIjh0N8\": {\"duration\": 187.94, \"timestamps\": [[0, 8.46], [8.46, 178.55], [178.55, 187.94]], \"sentences\": [\"An intro appears on a dark screen with red and white special effects and the words \\\"MILWAUKEE OPEN\\\" and \\\"BEST PLAYS\\\" show up on separate screens.\", \"Clips of various people, both men and women are outdoors at beaches, wearing beach attire as they play sand volleyball during different matches while a lot of spectators watching them and cheering them on.\", \"The clips end and the outro appears and looks just like the intro and ends with the words \\\"BEST PLAYS\\\" and \\\"MILWAUKEE OPEN\\\" on two different screens.\"]}, \"v_tO1VJnsd8sg\": {\"duration\": 99.66, \"timestamps\": [[0, 80.23], [1, 80.23], [80.73, 99.66]], \"sentences\": [\"Two people are playing tennis on a court.\", \" A person in a yellow shirt stands outside watching.\", \" A woman opens the door and walks out.\"]}, \"v_3AZgr5HkSDY\": {\"duration\": 226.79, \"timestamps\": [[3.4, 124.73], [92.98, 217.72]], \"sentences\": [\"A large group of people are seen performing a routine together in an exercise class while moving up and down on a beam.\", \" The people continue moving around one another while moving their arms up and down on the beam and end by holding onto one another and walking around the room.\"]}, \"v_9Ht1yvo936I\": {\"duration\": 79.65, \"timestamps\": [[0, 78.05], [0, 67.7], [40.22, 78.05]], \"sentences\": [\"people is playing black jack around a table.\", \" dealer is dealnig the cards and the tokens to the women.\", \" man stands from a table and walks in a room.\"]}, \"v_hYj38k-VOFM\": {\"duration\": 41.24, \"timestamps\": [[0, 9.48], [9.9, 25.77], [25.36, 41.24]], \"sentences\": [\"A person is seen raking a yard and pauses to put his hand in his pocket.\", \" Another man comes walking in with a leaf blower pushing the leaves around.\", \" The man rakes more leaves and the leaf blower man comes in again.\"]}, \"v_Ho0eNR4jvEg\": {\"duration\": 141.1, \"timestamps\": [[0, 141.1], [7.05, 16.23], [23.99, 29.63], [47.27, 51.5], [67.73, 141.1], [98.06, 105.82], [112.17, 119.23]], \"sentences\": [\"We see the underwater sea floor.\", \" Two people swim in front of the camera.\", \" We see a man holding a camera.\", \" We see a fin enter the camera.\", \" The camera is spinning wildly.\", \" Bubbles rise out of a tube.\", \" A man hands another person the mouthpiece.\"]}, \"v_4S09Z8HRtdo\": {\"duration\": 175.17000000000002, \"timestamps\": [[1.75, 56.93], [56.93, 134.01], [107.73, 170.79]], \"sentences\": [\"Two people are seen walking around a yard in front of a board.\", \" Another man walks in and the group are seen laying up a fence.\", \" The men continue to put boards up on the fence and end by presenting it to the camera.\"]}, \"v_f3Mse2A5edA\": {\"duration\": 116.97999999999999, \"timestamps\": [[0, 114.64], [50.89, 60.83], [81.89, 84.81], [93.59, 94.17]], \"sentences\": [\"A man is sitting behind a table completing a Rubik's cube.\", \" A person in a blue shirt is standing next to the table holding a stop watch.\", \" The man completes the Rubik's cube and sets it down.\", \" He hugs a person that walks up next to him.\"]}, \"v_STR26rN9GcA\": {\"duration\": 27.84, \"timestamps\": [[0, 20.32], [21.72, 27.84]], \"sentences\": [\"Two men are outdoors on a sidewalk, playing drums with their bare hands.\", \" A large crowd crosses the sidewalk as they complete the show, and the man on the left stands upright.\"]}, \"v_VNMj5YKHEsY\": {\"duration\": 190.01, \"timestamps\": [[0, 110.21], [110.21, 156.76], [156.76, 190.01]], \"sentences\": [\"woman is talking to a man in an icerink skating and holding hockey poles playing pulling the disc.\", \" woman is in an hospital talking to a man.\", \" man and woman looked the man that have bandage in his head.\"]}, \"v_n1sWb2K6hBM\": {\"duration\": 167.35, \"timestamps\": [[0, 17.57], [18.41, 59.41], [57.73, 84.51], [88.69, 91.2], [91.2, 120.49], [121.33, 167.35]], \"sentences\": [\"We see a lady bring a horse into a stable turns the horse around and ties him up.\", \" The lady then brushes the horse and cleans the hooves on the horse on the right.\", \" The lady then sprays a product in the mane and comes it.\", \" The lady moves to the front of the horse and brushes his mane.\", \" the lady brushes the left side of the horse and cleans his hooves.\", \" The lady then brushes the tail and the horse and the lady leave.\"]}, \"v_oeFUzyNgxQU\": {\"duration\": 145.71, \"timestamps\": [[0, 126.04], [60.47, 83.78], [84.51, 96.89], [94.71, 96.89], [96.89, 110.74], [110.74, 127.49], [126.04, 145.71]], \"sentences\": [\"We see men on a stage walking on a slack line as two other men film the event.\", \" They switch and a different man then walks the slackline who flips off the slackline.\", \" The men switch again and the first man is on the slackline.\", \" The man fall off the slackline onto his butt.\", \" The second man bounces and flips off.\", \" The first man bounces and flips off.\", \" the men clap and take the slackline off stage.\"]}, \"v_p8C7govzEPw\": {\"duration\": 163.61, \"timestamps\": [[9, 80.99], [60.53, 124.34], [111.25, 158.7]], \"sentences\": [\"A close up of a clock is shown followed by a person making and pouring out coffee as well as the outside of a building.\", \" A women sets up her keys, writes on a board, and leads into her grooming and petting the dogs.\", \" Several clips are shown of the woman grooming the animals from various views and the animals shown afterwards.\"]}, \"v_CZGDWYYkO-U\": {\"duration\": 232.46, \"timestamps\": [[0, 53.46], [53.46, 232.46]], \"sentences\": [\"A girl wearing glasses is seen speaking to the camera that leads into her taking them off and holding them to her camera.\", \" She then holds up various items and holds her eye open to put in contact lens for both eyes.\"]}, \"v_Ygy-zufAejI\": {\"duration\": 58.21, \"timestamps\": [[0, 2.04], [2.33, 41.91], [24.16, 28.82], [27.65, 32.02], [39.58, 41.91], [41.91, 58.21]], \"sentences\": [\"We see an opening title screen.\", \" We see a man walking a tightrope high above a mountain range.\", \" We see a picture in picture in the upper left corner.\", \" We see the man holding a selfie stick.\", \" The man reaches the other side and turns around.\", \" the ending title screen loads.\"]}, \"v_enESbo2pA9U\": {\"duration\": 124.32, \"timestamps\": [[0, 62.16], [44.76, 124.32]], \"sentences\": [\"Several shots are shown of a celebrity walking the red carpet as well as a woman hosting a news segment and pictures being shown beside her.\", \" More pictures are shown as well as the celebrity skiing and snowboarding and ends with men escorting the celebrity into a building and more pictures as the woman speaks.\"]}, \"v_JhoGvKrhs8s\": {\"duration\": 96.74000000000001, \"timestamps\": [[0.97, 42.08], [35.79, 95.77]], \"sentences\": [\"A large marching band is seen standing together in front of a large building with others standing around.\", \" More shots are shown of the group standing around one another while the camera pans around.\"]}, \"v_7hxCoi0XU6I\": {\"duration\": 116.31, \"timestamps\": [[0, 28.5], [28.5, 82.58], [83.74, 116.31]], \"sentences\": [\"An intro leads into two women in front of the camera, one standing and speaking, and the other sitting and watching.\", \" The woman standing holds up a brush and begins brushing the woman's hair.\", \" She finishes brushing the woman's hair and looks back to the camera smiling.\"]}, \"v_vlBzrnOuW9U\": {\"duration\": 28.49, \"timestamps\": [[0, 14.53], [15.67, 28.49]], \"sentences\": [\"A woman helps a little boy kick a ball during a kickball game.\", \" Each time the ball reaches base, another kid has a turn to kick.\"]}, \"v_bqsWU8HqpxE\": {\"duration\": 232.8, \"timestamps\": [[0, 46.56], [0, 81.48], [81.48, 142.01], [142.01, 213.02]], \"sentences\": [\"A man runs with a pole and a jumps high, then people jumps several times.\", \" Two men are boxing, then people gather, men parachute and a man dive in the water.\", \" People dressed with military clothes, then they are doing other activities.\", \" People practice pole vault, climbing and other activities.\"]}, \"v_P5Sg_kACPRM\": {\"duration\": 15.63, \"timestamps\": [[0, 15.63], [4.22, 5.78], [2.42, 13.6], [15.08, 15.63], [14.14, 15.63]], \"sentences\": [\"Two men run on a track while a large crowd of spectators and press watch.\", \" A man in the grass in the background runs with the men for a moment.\", \" The man on the inside lane of the track starts running very fast and then jumps into a sand pit.\", \" the other man runs past the sand pit.\", \" The man that jumped steps out of the sand pit and walks to the side.\"]}, \"v_xXGc5_0_2QI\": {\"duration\": 42.19, \"timestamps\": [[0, 14.56], [14.56, 18.35], [18.14, 27.64], [27.64, 42.19]], \"sentences\": [\"Inside of a fence men are sitting upon horses waiting.\", \" One of the men starts to chase after a bull on his horse.\", \" He gets off of his horse and brings the bull down and starts walking back to his horse.\", \" He gets back on the horse as the bull just lays on the ground defeated.\"]}, \"v_v26OP6f29Qc\": {\"duration\": 145.43, \"timestamps\": [[0, 145.43], [13.82, 59.63], [95.25, 109.07]], \"sentences\": [\"The men discuss a project sitting at the table.\", \" Two men sit at a table together and read from a document.\", \" The two men play a game of rock paper scissors.\"]}, \"v_1Z3mjpu1I2A\": {\"duration\": 152.6, \"timestamps\": [[12.97, 40.44], [40.44, 91.56], [91.56, 134.29], [134.29, 143.45]], \"sentences\": [\"There's a little girl washing dishes and spoons in the kitchen sink.\", \" She uses a blue dish scrub and plenty of dish soap and washes the glass and spoons while keeping the tap running.\", \" She has her hands covered with soap foam as she washes the spoons and knives under the tap.\", \" She then washes a pizza cutter and spoon thoroughly with the soap and water.\"]}, \"v_VyQ4ZbgqMXk\": {\"duration\": 77.56, \"timestamps\": [[0, 22.49], [36.84, 42.27], [59.33, 67.09]], \"sentences\": [\"A man is playing a game of shuffleboard.\", \" A man falls down onto the shuffleboard.\", \" A disc is dropped onto the ground.\"]}, \"v_pieT6K771WQ\": {\"duration\": 65.13, \"timestamps\": [[0, 14.33], [14.65, 65.13]], \"sentences\": [\"A girl talks stand on the sidewalk, then she walks to a hopscotch.\", \" The girl stands on the hopscotch, then she jumps hopscotch while talking.\"]}, \"v_FLL06mU-ua8\": {\"duration\": 141.32, \"timestamps\": [[0, 141.32], [42.39, 141.32]], \"sentences\": [\"A man gives tips on outdoor physical training.\", \"  He demonstrates on the monkey bars going back and forth with upper body strength.\"]}, \"v_QgklQUCQcV4\": {\"duration\": 209.72, \"timestamps\": [[0, 209.72], [25.17, 209.72]], \"sentences\": [\"A news report on physical fitness is given.\", \"  A few people discuss the benefits of hulahooping and then do a demonstration.\"]}, \"v_vcRCId1-xdA\": {\"duration\": 145.71, \"timestamps\": [[0, 24.77], [29.87, 121.66], [120.21, 145.71]], \"sentences\": [\"A woman is seen holding a drink on stage speaking into a mic as well as the audience.\", \" The woman continues speaking and looking around the audience while taking sips of her drink and putting it down.\", \" Finally she picks up a guitar and grabs a pic from the front and steps away.\"]}, \"v__W8m7v1Ir5I\": {\"duration\": 119.05, \"timestamps\": [[1.19, 72.62], [46.43, 117.26]], \"sentences\": [\"A large group of people are seen standing behind one another with others watching on the sides and leads into the group running down a road.\", \" The large group of kids continue running down the road after one another while people still watch on the sides.\"]}, \"v_mtF0AFNSFnI\": {\"duration\": 149.49, \"timestamps\": [[0, 31.39], [36.63, 94.93], [77.74, 148]], \"sentences\": [\"A man is seen sitting in front of a woman who begins playing a piano.\", \" Another man is seen sitting next to her playing an accordion.\", \" The man and woman play together while smiling and nodding and end by stopping and the man applauding.\"]}, \"v_VlfnvORj6KY\": {\"duration\": 145.1, \"timestamps\": [[0, 2.18], [2.18, 137.12], [138.57, 145.1]], \"sentences\": [\"A man is sitting behind three drums.\", \" He begins playing the drums in front of him.\", \" He finishes playing and pictures are shown on the screen.\"]}, \"v_-bzI8_hCbWk\": {\"duration\": 219.41, \"timestamps\": [[2.19, 108.61], [100.93, 213.92]], \"sentences\": [\"A large group of people are seen standing around a large gymnasium playing a game of dodge ball with one another.\", \" One man performs an impressive flip that leads to a man speaking to the camera and showing more shots of impressive dodgeball play.\"]}, \"v_Il2jGm3L0-0\": {\"duration\": 74.61, \"timestamps\": [[0, 12.31], [16.79, 51.85], [58.57, 74.61]], \"sentences\": [\"A male athlete puts powder on his hands.\", \" He mounts a high beam in the gym.\", \" He spins and flips several times before dismounting.\"]}, \"v_IeMeu-7QihI\": {\"duration\": 76.32, \"timestamps\": [[0, 37.4], [36.64, 76.32]], \"sentences\": [\"A shot of people are shown from several angles and leads into various shots of people riding skis and doing tricks.\", \" More close up of water skiers are shown while the boat trails around the area.\"]}, \"v_hV9sBYo342M\": {\"duration\": 37.35, \"timestamps\": [[0, 4.67], [4.11, 5.04], [15.69, 20.36]], \"sentences\": [\"A man is running down a track.\", \" He jumps onto a blue mat.\", \" He jumps over a high bar and lands on the blue mat.\"]}, \"v_Zfo0XXcWXiU\": {\"duration\": 65.6, \"timestamps\": [[0.66, 61], [61, 65.6]], \"sentences\": [\"A woman brushes and dries her hair.\", \" The woman puts the blow dryer down and brushes her hair again.\"]}, \"v_O_IrzZbXiCc\": {\"duration\": 98.08, \"timestamps\": [[0, 2.45], [2.94, 95.63], [95.63, 98.08]], \"sentences\": [\"A child smiles at the camera.\", \" The child practices field hockey with obstacles on the ground.\", \" The child walks away from the camera.\"]}, \"v_2-hF-v79XyQ\": {\"duration\": 118.97999999999999, \"timestamps\": [[0, 18.44], [19.63, 114.22], [47, 49.38], [64.84, 67.82], [84.48, 88.05], [107.68, 109.46], [114.82, 118.98]], \"sentences\": [\"We see two men in a TV studio talking.\", \" We see people playing an indoor soccer game.\", \" A man in black is running with his arms in the air.\", \" A man in yellow slides on the ground.\", \"  The 10 in yellow throws a tantrum.\", \" The yellow team all hug each other.\", \"  We return to the men in the studio.\"]}, \"v_FNX7CeuIvIQ\": {\"duration\": 184.6, \"timestamps\": [[0, 14.77], [22.15, 103.38], [105.22, 184.6]], \"sentences\": [\"A man is outside with two dogs on leashes.\", \" He puts on a show with the trained dogs.\", \" He throws frisbees, and the small crowd claps for the performing dogs.\"]}, \"v_eWP99kNayuU\": {\"duration\": 38.99, \"timestamps\": [[0, 1.95], [1.95, 17.15], [16.96, 34.7]], \"sentences\": [\"A man stands over a roof of a house and puts a took on the roof.\", \" Then, the man holds the handle of a tool with one hand.\", \" The man holds the handle with two hands, then he continues holding the tool with one hand.\"]}, \"v_vKShqwBJrME\": {\"duration\": 82.9, \"timestamps\": [[0, 59.27], [46.42, 82.9]], \"sentences\": [\"A person's hands are seen attempting to solve a rubix cube while the end of a table is shown.\", \" The person continues until they finish the cube and then shows his time on the screen.\"]}, \"v_4_CcDjbCXBQ\": {\"duration\": 172.55, \"timestamps\": [[0, 82.82], [46.59, 172.55]], \"sentences\": [\"A woman is seen hosting a news segment and leads into shots of people playing soccer and audience members watching.\", \" More highlights of the game are shown as well as team mates celebrating and hugging one another.\"]}, \"v_JxEnKQ7iXUI\": {\"duration\": 129.75, \"timestamps\": [[0, 16.22], [16.22, 60.98], [60.98, 115.48], [115.48, 129.75]], \"sentences\": [\"A group of young girls are dressed in pink tutus, standing on a stage and doing their ballerina routine.\", \"One of the girls goes out of sync from the rest and starts moving her feet as she's doing her routine and everything other girl is just standing on their feet and moving just their arms.\", \"The girls are now starting to sing as they continue to dance and the same girl that was doing her own thing out of sync continues to do her own dancing different from the majority of the young girls.\", \"The dance ends and some of the girls do a curtsy and then they all walk off the stage.\"]}, \"v_oq8DE3Cbar0\": {\"duration\": 59.75, \"timestamps\": [[0, 10.75], [11.05, 48.39], [49.59, 59.75]], \"sentences\": [\"A man in a movie mask is seated by a flight of stairs.\", \" He is playing an accordian for the people passing by.\", \" A few pause to listen, then continue on their way.\"]}, \"v_34eCEU2Y4T0\": {\"duration\": 154.62, \"timestamps\": [[4.64, 154.62], [4.64, 9.28], [14.69, 48.71], [135.29, 142.25]], \"sentences\": [\"A woman demonstrates, on a toy baby,  how to swaddle a baby and wash a baby\\u2019s face using cotton balls and wet towels.\", \" A woman stands in front of a toy baby and talks to the camera.\", \"  The woman swaddles the baby in a white blanket and then begins to apply water soaked cotton balls, from a nearby water filled container,  to the baby\\u2019s eyes and nose and face.\", \"  The woman finishes and talks to the camera again.\"]}, \"v_s789WxU8PFY\": {\"duration\": 167.42000000000002, \"timestamps\": [[0, 35.16], [35.16, 84.55], [82.87, 140.63], [140.63, 167.42]], \"sentences\": [\"A woman is seen speaking to the camera and begins unboxing an item.\", \" She pulls out the panels as well as putting sunglasses on and presents a pan of objects to the camera.\", \" She continues speaking to the camera and pulls the objects out to present baked cookies.\", \" The cookies are seen again on a tray and she breaks them open to see.\"]}, \"v_7845vSLQoG8\": {\"duration\": 28.77, \"timestamps\": [[0, 15.68], [15.1, 20.86], [22.01, 28.77]], \"sentences\": [\"A little boy is bending over dipping a paint brush into a blue bucket.\", \" He paints the fence in front of him.\", \" He walks towards the camera.\"]}, \"v_3G3Zear4vog\": {\"duration\": 15.26, \"timestamps\": [[0.61, 7.93], [6.94, 14.65]], \"sentences\": [\"Two girls are seen moving quickly around the room while switching places and looking into a camera.\", \" The younger girl laughs to the camera while putting on makeup and the other moves around quick.\"]}, \"v_yB35e1u3pJs\": {\"duration\": 176.76, \"timestamps\": [[4.42, 96.34], [54.8, 173.23]], \"sentences\": [\"A young girl is seen speaking to the camera while sitting at a table and leads into her holding up a contacts case.\", \" The girl then holds her eye open and takes out the contact, followed by her dipping it in liquid and putting it back in while still speaking.\"]}, \"v_JRr3BruqS2Y\": {\"duration\": 222.59, \"timestamps\": [[0, 18.92], [18.92, 25.6], [25.6, 36.73], [37.84, 47.86], [48.97, 58.99], [63.44, 70.11], [72.34, 77.91], [81.24, 91.26], [91.26, 105.73], [106.84, 119.08], [120.2, 122.42], [122.42, 152.47], [152.47, 163.6], [164.71, 185.86], [185.86, 213.68], [214.8, 222.59]], \"sentences\": [\"A woman is rollerskating across a street with people crossing behind her.\", \" She goes back across the street alone.\", \" A woman in a grey sweater talks to the camera on the sidewalk.\", \" A man in a black hat talks to the camera in front of a blue building.\", \" A man in a black shirt is sitting down and talking.\", \" It goes back to the man in a black hat talking.\", \" It goes back to the man in the black shirt talking.\", \" The girl is bent over on roller blades pulling something out of a bench.\", \" She does tricks on the bench.\", \" A woman in a brown hat is talking.\", \" A man with a mohawk talks.\", \" The girl does more tricks on her roller blades.\", \" A woman in a pink shirt is talking.\", \" Three kids are sitting on a bench in roller skates talking.\", \" The girl on roller blades does another trick.\", \" An older woman is talking to the camera.\"]}, \"v_Er88I-NQkG4\": {\"duration\": 180.88, \"timestamps\": [[0, 5.43], [5.43, 180.88]], \"sentences\": [\"spanish letters are shown in the video.\", \"baby kid is dancing in the top of a table wearing a white diaper in the kitchen and a woman is filming it.\"]}, \"v_qisMX7KNi7s\": {\"duration\": 149.44, \"timestamps\": [[0, 138.98], [42.59, 54.55], [64.26, 94.9], [99.38, 100.87]], \"sentences\": [\"A woman is standing behind a table.\", \" She opens a white bin and pours water and soap into it.\", \" She then closes it and turns the top.\", \" She hangs the clothes from a wood rack to dry.\"]}, \"v_60CCYfec2vQ\": {\"duration\": 61.53, \"timestamps\": [[7.69, 29.54], [29.54, 48], [48, 54.46]], \"sentences\": [\"There are several workers on top of a roof working on repairing the roof.\", \" They are removing the old shingles with the help of a roof jacks.\", \" They continue removing the shingles while standing on top of the roof.\"]}, \"v_xoETvVbyiBA\": {\"duration\": 58.65, \"timestamps\": [[0, 3.23], [3.52, 52.2], [52.5, 58.65]], \"sentences\": [\"A man walks up to a set of parallel bars.\", \"  The man performs acrobatics on the bars in a professional venue.\", \" The man successfully jumps of the bars and lands on his feet.\"]}, \"v_3Rc2pPAQ-Cs\": {\"duration\": 129.24, \"timestamps\": [[0, 42], [25.85, 69.15], [62.68, 129.24]], \"sentences\": [\"The man in white shirt is strumming the bongo drum.\", \" At the counter the man is sitting behind the counter.\", \" The man playing bongo hit one drum then the next, then he beat the drums fast.\"]}, \"v_CsaeiOFuij0\": {\"duration\": 51.9, \"timestamps\": [[0, 19.72], [19.46, 37.88], [37.63, 51.9]], \"sentences\": [\"A man is positioning a camera and then walks into a room through a wall of glass with three walls in them.\", \"When he enters the room,another man appears with a racket in his hand and they begin hitting the ball up against the wall.\", \"The two go back and forth hitting the ball and they eventually stop when neither of the men are able to get to the ball.\"]}, \"v_KHxBqZmSaJU\": {\"duration\": 158.9, \"timestamps\": [[0, 3.97], [3.97, 26.22], [26.22, 38.93], [38.93, 158.9]], \"sentences\": [\"people is sitting on a studio talking to each other.\", \" man is in the beach doing tricks with a little kid and people in the studio is talking about the video.\", \" page of a cheerleaders is shown in the screen and the video of the girl in the beach doing tricks.\", \" man is in a living room with a little girl and is doing tricks with her and on the beach, then a video of the man and the girl talking to a camera is shown while people in the stuio keep talking and showing their videos.\"]}, \"v_UgtzVS_oeq0\": {\"duration\": 41.14, \"timestamps\": [[0, 41.14], [9.26, 11.93], [15.84, 18.1], [19.54, 22.21], [25.92, 30.85], [31.26, 34.35]], \"sentences\": [\"People are shown interacting in a dance hall.\", \" A woman smokes and exhales black smoke.\", \" A man approaches a table and places food on it.\", \" Two children eat under the table.\", \" Two individuals dancing together kiss.\", \" The woman smokes and the black smoke disappears.\"]}, \"v_Gd6YooP1_CU\": {\"duration\": 31.63, \"timestamps\": [[0.63, 9.8], [8.54, 23.72], [20.87, 30.04]], \"sentences\": [\"A close up of a coffee drink is shown followed by a man drinking out of the cup.\", \" The camera pans around to more people with drinks in their hands.\", \" A ma looks down at his lap with the drink still in front of him.\"]}, \"v_n5RVQbgz1Rs\": {\"duration\": 214.41, \"timestamps\": [[0, 28.95], [28.95, 46.1], [46.1, 83.62], [83.62, 214.41]], \"sentences\": [\"A large green field is shown as two teams begin rushing towards a ball hitting it with a stick that has a net at the end of it.\", \"As the game progresses,a player runs into two other people and flips over their shoulders ultimately getting injured.\", \"He lays on the ground and several replays of the incident are shown.\", \"Next,several still images of other teams walking and preparing to start are shown of them playing games in various locations.\"]}, \"v_PFn7a6eEhb4\": {\"duration\": 111.99000000000001, \"timestamps\": [[4.48, 21.84], [28, 39.76], [35.84, 45.92], [46.48, 88.47], [91.83, 111.99]], \"sentences\": [\"The camera zooms in on a baby cow with various title pages shown across the screen.\", \" A group of men run around a calf while others hold him down.\", \" A drunk man attempts to interact with a bull and is flipped into the air.\", \" Several men drag him out while a tourist attempts to draw the bull in.\", \" The bull nearly grabs him but the boy makes it on the fence and throws the red blanket on the bull.\"]}, \"v_uUzmPV8Vgqg\": {\"duration\": 116.03, \"timestamps\": [[0, 59.76], [60.92, 112.55]], \"sentences\": [\"A woman in track pants and her daughters wash a small dog with soap and water in a bucket on a patio.\", \" A woman uses a cup to pour water on the dog to remove the soap.\"]}, \"v_qtfFFPKya3Y\": {\"duration\": 210.05, \"timestamps\": [[0, 33.61], [33.61, 136.53], [136.53, 210.05]], \"sentences\": [\"A field is shown with about ten men standing in the middle and a man takes off running and throws a ball at a man holding a paddle.\", \"More games are shown and the same exact actions are repeated throughout various teams.\", \"A man with short black hair is then shown and his teammates begin congratulating him and more teams are shown playing the game.\"]}, \"v_Pt4BlfBqduE\": {\"duration\": 109.83, \"timestamps\": [[0, 30.75], [30.2, 109.83]], \"sentences\": [\"man is holding a hammer fixing the roof of a garage.\", \" man is standing in the rooftop adding a black mix.\"]}, \"v_ean7ZR6XmG4\": {\"duration\": 121.6, \"timestamps\": [[0, 38.3], [8.51, 38.3], [38.3, 69.92], [69.31, 76], [76, 100.32], [97.28, 102.75], [102.75, 121.6]], \"sentences\": [\"man is sitting on a table eating a sandwich in a rstaurant talking to other man.\", \" man is watching the man while eats and talking to him.\", \" both men stands and play rock paper scissors and man hits the man sand this falls to the floor.\", \" man is sitting on the chair and talks to the man on thefloor and throw him the sandwich.\", \" man walks to a desk and sits in front of te computer drinking water and the other man is laying on the floor trying to talk.\", \" anoher man siting in front talk to the man in the desk.\", \" man stands and talk to the man on the floor and hits him again and the man spit blood.\"]}, \"v_FmugQfHQ4p0\": {\"duration\": 82.13, \"timestamps\": [[0, 3.7], [3.7, 6.98], [7.8, 58.72], [58.31, 71.04], [71.86, 78.43], [78.84, 82.13]], \"sentences\": [\"Two vacuums appear in a gray room.\", \" One of the vacuums disappears.\", \" A lady vacuums her house then empties the vacuum.\", \" The lady puts the vacuum in a closet.\", \" We see a room full of  desks and engineers designing products.\", \" Three Dyson fans swivel toward the camera.\"]}, \"v_bJahexpTlr8\": {\"duration\": 208.59, \"timestamps\": [[0, 208.59], [79.26, 82.39], [147.05, 154.35], [164.78, 182.51], [197.11, 208.59]], \"sentences\": [\"A man in a silver jacket is fixing a spoke on the tire of his bicycle.\", \" He spins the wheel of the tire.\", \" He takes the tire off the bike and lays it against the building.\", \" He uses a tool to fix the spoke of the tire.\", \" He puts the tire back on the bike and spins it.\"]}, \"v_67NwPB79MTo\": {\"duration\": 34.44, \"timestamps\": [[0, 23.24], [9.3, 34.44]], \"sentences\": [\"A small group of people are seen moving around a gym kicking a ball around.\", \" The boys yell to one another with their hands up and continue walking around the gym.\"]}, \"v_ERmsX91_7V4\": {\"duration\": 94.55, \"timestamps\": [[0, 22.69], [23.17, 69.5], [60.04, 93.61]], \"sentences\": [\"A person is seen running onto a court and shooting a basketball.\", \" The man is shown in several clips running down and scoring a basket.\", \" The man continues to shoot hoops over and over again.\"]}, \"v_hLnVjkmioH8\": {\"duration\": 98.31, \"timestamps\": [[0, 2.95], [12.78, 18.19], [19.17, 92.91], [94.87, 98.31]], \"sentences\": [\"A boy sits at a kitchen counter and adjusts the camera.\", \" His friend moves the camera back so they are more visible.\", \" The two boys then arm wrestle and the left boy wins both times.\", \" The right boy walks away and the left boy reaches for the camera.\"]}, \"v_SQM-heGm8iU\": {\"duration\": 184.41, \"timestamps\": [[0, 46.1], [57.17, 142.92], [103.27, 179.8]], \"sentences\": [\"Two women are seen running around a room and leads into one speaking to the camera.\", \" The people hit a tennis ball around the room while dancing and cheering with one another.\", \" The people continue hitting the ball around while playing with one another.\"]}, \"v_Lvia-mF_Hnk\": {\"duration\": 76.12, \"timestamps\": [[0, 75.74], [2.28, 6.85], [6.85, 61.65], [61.65, 76.12]], \"sentences\": [\"A man in welding attire welds a piece of metal to another piece of metal on camera.\", \"  A man wearing protective clothing and a metal welding hat stands in front of a piece of metal missing a long strip on the face of it.\", \"  The man begins to weld creating large sparks of white light.\", \" When the welding stop the finished product reveals a strip has been welded onto the formerly bare spot and the welder tests it with a hard instrument.\"]}, \"v_WhYyvKiwLc8\": {\"duration\": 64.34, \"timestamps\": [[0, 4.18], [3.54, 11.26], [23.16, 42.14], [33.78, 47.61]], \"sentences\": [\"A woman rides a bike outside.\", \" She is then shown playing a violin.\", \" She then roller blades outside.\", \" And then she does push ups on a roof.\"]}, \"v_DEt_Xgg8dzc\": {\"duration\": 153.35, \"timestamps\": [[1.53, 5.37], [4.6, 61.34], [62.87, 93.54], [93.54, 131.88], [131.88, 151.81]], \"sentences\": [\"A person jumps and land on the sand.\", \" A man runs fast and jumps high to land on the sand, then stand and goes skiping to his sit, while people walk in the stadium.\", \" A man talks sitting in an elegant room.\", \" A man pass on front the crowd, then jumps and bend on the floor to celebrate.\", \" Three athletes stand on the podium, then a man runs and jumps to land on the sand.\"]}, \"v_taO9hPOvMz0\": {\"duration\": 196.84, \"timestamps\": [[5.91, 9.84], [9.84, 109.24], [110.23, 111.21], [110.23, 196.84]], \"sentences\": [\"People are sitting on the sand on a beach.\", \" People are surfing on large waves in the water.\", \" A boy lays a towel out onto the sand of the beach.\", \" People continue to surf on the large waves of the water.\"]}, \"v_BKRKHkkZq6g\": {\"duration\": 38.99, \"timestamps\": [[0, 17.54], [16.96, 36.84]], \"sentences\": [\"A man wearing a black shirt holds an exercise ball over another man wearing a light blue shirt performs sit-ups on an inclined bench.\", \" The man wearing the black shirt drops the ball on the floor and crouches down and high fives the man performing the sit-ups.\"]}, \"v_j_ImkPKoA-U\": {\"duration\": 23.31, \"timestamps\": [[1.05, 12.12], [12.12, 18.42], [18.42, 21.33], [21.33, 21.8]], \"sentences\": [\"A man is sitting on a rock by a fast flowing river.\", \" Another man sails past him in a raft trying to keep up with the strong current and waves.\", \" There are several other people sitting on the rocks watching the rafter go by.\", \" They are sitting on the rocks with their life vests besides them.\"]}, \"v_MlxMV7WH9-g\": {\"duration\": 101.94, \"timestamps\": [[0.51, 29.56], [35.17, 81.55], [82.57, 97.35]], \"sentences\": [\"A camera pans out of chocolate chip cookies and milk and leads into a woman speaking.\", \" The woman mixes various ingredients together in a bowl and leads into her putting clumps of dough onto a pan.\", \" She puts the pan in the oven then takes it out to show off her chocolate ship cookies.\"]}, \"v_0acEl97ZBME\": {\"duration\": 102.75, \"timestamps\": [[0, 8.73], [7.19, 19.52], [16.44, 102.75]], \"sentences\": [\"A camera pans up to a man sitting and smoking a cigarette.\", \" Another man walks over with a cart and begins digging through trash.\", \" The man smoking cigarettes begins talking to the homeless man about how life sucks and how he can relate to the homeless man.\"]}, \"v_f4s1ngeK5P4\": {\"duration\": 31.39, \"timestamps\": [[0, 9.26], [8.79, 25.12], [19.15, 30.77]], \"sentences\": [\"A person is seen wearing slippers and holding a stick in their hands.\", \" The person then begins walking around a room pushing the ball around with the stick.\", \" The person continues hitting the ball while walking around the room.\"]}, \"v_gmFioIDX4X0\": {\"duration\": 111.53, \"timestamps\": [[0, 51.86], [50.74, 111.53]], \"sentences\": [\"A person is seen climbing into the back of a kayak with another man and paddling alone the water.\", \" The camera pans around the area and zooms back and fourth along the water and pans to people on the beach.\"]}, \"v_vycd0CJTwoA\": {\"duration\": 111.81, \"timestamps\": [[0, 17.89], [19.57, 88.88], [92.8, 111.81]], \"sentences\": [\"A parking lot is shown, and a man on roller blades takes off down the hill.\", \" He goes around sharp curves on his skates.\", \" He takes several country and wooded roads before rolling to a stop in a parking lot.\"]}, \"v_TcxOTZ4xnQ4\": {\"duration\": 39.61, \"timestamps\": [[6.14, 38.82], [6.14, 14.26], [14.46, 39.61]], \"sentences\": [\"A girl demonstrates several gymnastic and tumbler moves in a living room and  on a green lawn with a line of residential houses as a backdrop.\", \"  A girl demonstrates a somersault move in the living room in front of two couches.\", \"  The girl then demonstrates more advanced backflip gymnastic moves in a field of grass with houses in a residential neighborhood as the backdrop.\"]}, \"v_dUa0E0ASviM\": {\"duration\": 92.22999999999999, \"timestamps\": [[0, 6.92], [6.46, 92.23], [15.68, 88.54]], \"sentences\": [\"A girl is warming up and stretching and grabs 2 large ropes.\", \" Two women are holding each rope and the girl tries to pull both ropes at once.\", \" She continues pulling the rope and succeeds at pulling the two women closer to her.\"]}, \"v_EL47wkhiOq8\": {\"duration\": 43.52, \"timestamps\": [[0, 6.09], [5.22, 22.19], [20.89, 43.52]], \"sentences\": [\"The young boy serve the shuttlecock but it hit the net.\", \" The older man serve the ball and the kid missed it.\", \" An older woman in gray shirt serve the ball and the girl in red hit it.\"]}, \"v_Jv7AjsdOk2I\": {\"duration\": 190.4, \"timestamps\": [[0, 34.27], [34.27, 72.35], [72.35, 124.71], [124.71, 183.74]], \"sentences\": [\"A man is skateboarding, he jumps up on higher levels.\", \" He kicks to build up some speed and does some cool tricks .\", \" He gets off and then jumps back on the board and does more tricks all around.\", \" He jumps up on a rail and then gets back down and sits on the board and waves.\"]}, \"v_taHfD8TFfX4\": {\"duration\": 5.53, \"timestamps\": [[0.06, 2.1], [1.88, 3.87], [3.7, 5.28]], \"sentences\": [\"A baseball player is seen standing on a patch of dirt with another behind him.\", \" The man then begins to hit a ball.\", \" The man hits the ball in slow motion.\"]}, \"v_X3Nr9Gj6JR0\": {\"duration\": 105.78999999999999, \"timestamps\": [[2.12, 98.91], [2.64, 18.51], [19.04, 46.02], [47.61, 98.39]], \"sentences\": [\"A person makes spaghetti from scratch using flour, eggs, a blender and a pasta press.\", \"  A hand mixes flour in a bowl, adds eggs and mixes both ingredients with a mixer.\", \"  The hands then take the resulting ball of dough and kneads it, covers it in saran wrap and cuts it in pieces before rolling it flat with a rolling pin.\", \"  The person then takes the flattened dough and puts it in a presser, dusts it with flour, and puts it into a container and then a spaghetti press which produces many strands of spaghetti.\"]}, \"v_YRp5nE0Hlsc\": {\"duration\": 161.04, \"timestamps\": [[0, 104.68], [63.61, 68.44], [93.41, 146.55], [119.98, 125.61], [139.3, 161.04]], \"sentences\": [\"The screen is black and we see a ballerina dance across the stage spilling feathers.\", \" The person moves it's head like a chicken.\", \" The person does a shuffle and dance then falls to the ground before getting up and dancing more.\", \" The person puts their hands in a prayer pose.\", \" The person picks up feathers off the ground and sprinkles them around then dances and falls to the ground and the scene ends.\"]}, \"v_mbmMY04yMUA\": {\"duration\": 135.0, \"timestamps\": [[8.1, 22.28], [22.28, 38.48], [38.48, 65.48], [65.48, 95.18], [95.18, 122.85], [122.85, 135]], \"sentences\": [\"There is some script shown on fear of singing on stage.\", \" A woman in a green shirt is singing while doing the dishes in her kitchen sink.\", \" She continues to wash the spoons and forks with a blue scrub and soap as she sings in a high pitch and tone.\", \" She continues to wash a large knife and then places the wet utensils on a drying rack.\", \" She washes some glasses and scrubs them thoroughly with the same sponge.\", \" Then places the glass on the drying rack.\"]}, \"v_etqiXPKlthk\": {\"duration\": 199.9, \"timestamps\": [[0, 119.94], [119.94, 122.94], [122.94, 199.9]], \"sentences\": [\"A young man drinks six bottles of beer while a person stand on front him holding a chronometer.\", \" Then, the young man spits beer on the person who fall on the ground.\", \" After, the person stand sand take off his pants and t-shirt, then he crowls on the grass.\"]}, \"v_dpUDMvzlwmI\": {\"duration\": 111.74000000000001, \"timestamps\": [[0, 111.74], [7.82, 103.91], [58.66, 111.74]], \"sentences\": [\"A large group of people are seen playing a soccer match on a large, sandy beach.\", \" Many people watch on the sidelines as the kids pass the ball back and fourth to one another.\", \" The game continues on as the kids move up and down the field and attempt several goals that end up missed.\"]}, \"v__EZnGbfMqsc\": {\"duration\": 94.36, \"timestamps\": [[14.63, 15.1], [25.48, 28.31], [35.38, 37.74], [41.99, 43.4], [50.48, 51.9], [55.2, 57.09], [64.16, 65.11], [68.41, 69.82], [76.9, 79.26], [83.03, 84.92]], \"sentences\": [\"A young blonde girl jumps outside.\", \" She holds a jump rope and turns the jump rope in front of her.\", \" She performs the same thing again.\", \" She turns the jump rope once more and catches it with her feet.\", \" She does it once more.\", \" She turns the jump rope and completes a full jump.\", \" She goes and does it again.\", \" She jump ropes multiple times.\", \" She does it again, jump roping over and over again.\", \" She speaks to the camera.\"]}, \"v_-3baQGb2zIY\": {\"duration\": 104.53999999999999, \"timestamps\": [[0, 16.2], [16.2, 52.79], [52.79, 104.54]], \"sentences\": [\"A black male majorette begins walking through the drum line with his baton.\", \"As he makes his way to the front of the band,he bgeins to twirl the baton and move across the field and takes his pants off.\", \"Underneath his pants is a pair of sparkly shorts and he continues to dance, doing turns,tricks,kicks,splits,and popping as the band plays.\"]}, \"v_jwOZsKS25oc\": {\"duration\": 56.19, \"timestamps\": [[9.55, 25.85], [25.85, 34.28], [34.28, 49.73], [49.73, 56.19]], \"sentences\": [\"A woman dressed in a pink tank top and gray tights is demonstrating spinning in a fitness gym.\", \" She shows the various exercises using the bicycle.\", \" She also shows stomach crunches and stretches while laying down on the floor.\", \" She motivates her team to continue biking as she encourages them to go faster.\"]}, \"v_--veKG73Di4\": {\"duration\": 115.45, \"timestamps\": [[0, 24.82], [24.82, 26.55], [26.55, 98.13], [35.21, 45.03], [102.75, 115.45]], \"sentences\": [\"A man and a women introduce themselves to the camera and start to talk to each other while the man is sitting behind a four set bongo set and the women is on the other side holding a water bottle.\", \" As the conversation ensues another woman approaches the woman and takes away her water bottle.\", \" Afterwards the man starts to play the bongos and woman starts to dance.\", \" As the woman dances on a man on a bike passes by and starts to observe what's going on.\", \" In the end while the woman stops dancing and starts to clap and the man playing the bongos stops playing and does a final clap.\"]}, \"v_bxxSc2m08Sk\": {\"duration\": 44.93, \"timestamps\": [[0, 5.39], [5.39, 22.91], [23.59, 33.02], [33.02, 36.84], [37.52, 44.93]], \"sentences\": [\"We see a man performing Capoiera in a plaza.\", \" The man is joined by a second man and the practice together.\", \" The first man leaves and another man jumps in.\", \" The two men finish and shake hands and hug.\", \" Both men back out of the ring and a new man enters.\"]}, \"v_HB11MXjwvVo\": {\"duration\": 125.44, \"timestamps\": [[0, 89.69], [37.63, 83.41], [90.31, 122.93]], \"sentences\": [\"A young boy pushes a vacuum cleaner in the kitchen of a home.\", \" The mother points underneath the furniture with her hand then foot directing the boy.\", \" The boy pushes the vacuum cleaner into the hallway and vacuums the area.\"]}, \"v_Ue2EbbpegkE\": {\"duration\": 160.15, \"timestamps\": [[3.2, 46.44], [46.44, 93.69], [93.69, 145.74], [115.31, 123.31]], \"sentences\": [\"A man explains and shows how to do snow surfboard hillside turn.\", \" Then, the man performs toeside using a snow skateboard.\", \" The man continues explaining and performs a turn.\", \" A toddler ski on the snow.\"]}, \"v_dsYLNeumBig\": {\"duration\": 79.02, \"timestamps\": [[0, 10.67], [11.85, 48.6], [51.76, 79.02]], \"sentences\": [\"A woman is standing and talking in a kitchen.\", \" She is using a small vacuum cleaner.\", \" She demonstrates how to use the vacuum as she talks.\"]}, \"v_GaxyzK2mHqw\": {\"duration\": 156.99, \"timestamps\": [[0, 69.86], [69.86, 141.29], [141.29, 156.99]], \"sentences\": [\"woman is in a kitchen talking and slicing cheddar cheese into thick pieces, cutting the bread, then she put butter in a pan and the bread loaf on the pan with the cheese on top so the cheese can be melted in the pan, woman says this is wrong.\", \" woman shows a clean pan, put the butter on the bread and grate the cheese, then put it as a sandwich and in the pan with a lid till the bread is tasty.\", \" woman serve the bread in a blue dish and slice in two.\"]}, \"v_hsIudyKGz6A\": {\"duration\": 66.85, \"timestamps\": [[0.67, 32.09], [25.4, 63.51]], \"sentences\": [\"A man is seen standing before a fire holding up an ax and begins cutting a piece of wood.\", \" Another man holds up the pieces of wood as the man continues to cut the wood and the other man moving the wood.\"]}, \"v_T-vwsIOVNTw\": {\"duration\": 6.55, \"timestamps\": [[0, 3.44], [3.54, 6.55]], \"sentences\": [\"A person in white runs towards first base playing kickball.\", \"  The man is tagged out by a woman wearing red.\"]}, \"v_P_sjOVZiv6A\": {\"duration\": 57.28, \"timestamps\": [[0, 12.6], [12.03, 47.26], [19.76, 23.2], [32.94, 40.96], [46.97, 51.56], [51.84, 57.28]], \"sentences\": [\"We see an opening screen and a man drinks from a cup.\", \" the man paints a lady's nails in a dining room.\", \"The lady shows us her finger nails.\", \" The man drinks from his cup.\", \" The man leans back and laughs.\", \" we see a ending credit screen.\"]}, \"v_lz2FMoj9tpo\": {\"duration\": 69.13, \"timestamps\": [[0, 21.08], [20.05, 69.13]], \"sentences\": [\"An athletic man is seen holding a discuss and begins spinning himself around in slow motion.\", \" The man then throws the object off into the distance and slow walks back while moving in slow motion.\"]}, \"v_xg0OCQW8t2s\": {\"duration\": 67.13, \"timestamps\": [[0, 67.13], [12.75, 67.13]], \"sentences\": [\"A lawn mower is tied to a white rope.\", \" It is turned on and starts going in circles around the rope mowing the lawn.\"]}, \"v_sRTDDlI1-Yo\": {\"duration\": 167.23, \"timestamps\": [[8.36, 68.56], [59.37, 142.15]], \"sentences\": [\"A shot of a playground is shown with various kids playing on the playground and riding down a slide.\", \" More shots are shown of kids swinging and hanging up side down as well as moving a steering wheel and climbing to the top.\"]}, \"v_RfbEuBH1Pow\": {\"duration\": 85.4, \"timestamps\": [[6.41, 7.26], [13.66, 24.34], [24.34, 76.86], [29.46, 79.85]], \"sentences\": [\"A team of swimmers are huddled in.\", \" The team gets in the pool.\", \" Two teams play water polo against each other.\", \" A crowd looks on from the stands.\"]}, \"v_5E42nKwv1xY\": {\"duration\": 187.63, \"timestamps\": [[0, 16.89], [17.82, 27.21], [27.21, 187.63], [53.47, 58.17], [122.9, 128.53], [137.91, 143.54], [180.13, 187.63]], \"sentences\": [\"We see a scoreboard in a game.\", \"  Girls run onto the field and shake hands with the other team.\", \" We see girls playing volleyball indoors.\", \" The girls on the left make a shot and the team hugs.\", \" We see the scoreboard and people on the sidelines talking.\", \" We see a shot in slow motion and the girls hug.\", \" The game is over and the girls all shake hands.\"]}, \"v_vuXsKQKbAfE\": {\"duration\": 214.97, \"timestamps\": [[0, 210.67], [39.77, 61.27], [94.59, 106.41], [128.98, 162.3], [210.67, 214.97]], \"sentences\": [\"Two men are in a pool putting on diving gear.\", \" The man in red puts the breather in his mouth then floats backward on his back.\", \" We see the man in red and blue putting a solution on their goggles before trying them on.\", \" The man in red puts the tube in his mouth then the breather before going under water.\", \" We then see a sign upside down floating in the water.\"]}, \"v_3ROld-bSgPQ\": {\"duration\": 84.57, \"timestamps\": [[0, 29.6], [29.18, 38.9], [38.9, 58.35], [58.35, 84.57]], \"sentences\": [\"A baby girl is sitting next to all of her toys eating an ice cream very messily.\", \" Her mom takes the ice cream away from her and she starts to cry .\", \" Her mom gives her back the ice cream and she is happy again, back to eating it.\", \" She plays with her toys with her sticky ice cream fingers and her ice cream in the other hand.\"]}, \"v_vwaQwo_5X-k\": {\"duration\": 127.52, \"timestamps\": [[0, 3.83], [4.46, 109.03], [105.84, 110.31], [109.67, 113.5], [113.5, 127.52]], \"sentences\": [\"We see a man break dancing in an office plaza.\", \" We switch and see different men break dancing in office plazas and lobbies.\", \" We see man do a handstand.\", \" We see a man take off and throw his jacket on the camera.\", \" We see the black closing screen.\"]}, \"v_TBFAAb62ou4\": {\"duration\": 54.38, \"timestamps\": [[16.31, 37.25], [37.25, 51.39], [51.39, 54.38]], \"sentences\": [\"A man wearing a black baseball hat and a black shirt is playing an acoustic guitar.\", \" He is playing the Beatles song Yesterday on his guitar.\", \" He plays till the entire song is over and then stops and smiles at the camera.\"]}, \"v_6GYdu5G61g8\": {\"duration\": 121.9, \"timestamps\": [[7.31, 8.53], [8.53, 12.8], [12.8, 51.81], [51.81, 73.14], [73.14, 121.9]], \"sentences\": [\"A group of people transport a boat on their heads.\", \" People jumps backwards on the river and floats on their backs.\", \" Then, people in a boat raft down the choppy waters of a river while paddling.\", \" People in two boats meet and start to throw water each other using the oars, then some rafters jump into the water.\", \" Persons jump from a balcony on the rocks to the water while other people continues rafting.\"]}, \"v_TNwMZhQ7SFc\": {\"duration\": 163.1, \"timestamps\": [[0, 10.6], [10.6, 48.11], [48.11, 163.1]], \"sentences\": [\"A small girl is standing behind a man in a bathroom who is standing at a sink.\", \"The man turns around, grabs the towel and begins drying himself while the girl is still standing on the ground, and then puts the towel back when he's done.\", \"The man then picks up the small girl and begins to wash her face off and while the little girl brushes her teeth as she's getting her face cleaned.\"]}, \"v_JNFUZz1bqmg\": {\"duration\": 213.37, \"timestamps\": [[0, 11.74], [13.87, 20.27], [27.74, 48.01], [57.61, 62.94], [73.61, 77.88], [78.95, 88.55], [100.28, 108.82], [109.89, 116.29], [124.82, 150.43], [170.7, 174.96], [178.16, 213.37]], \"sentences\": [\"A man is talking in front of two large windows.\", \" Two men are kneeling down on the ground.\", \" The man is back to talking in front of the windows.\", \" Two men are sitting on a train talking.\", \" A man in a black coat is walking down the street.\", \" He is holding a white paper in his hand and writing on it.\", \" He is then walking up some stairs on an bridge with other people.\", \" He is getting harnessed on top of the bridge.\", \" He jumps off the bridge and bungee jumps.\", \" A man in an orange vest puts him into the boat.\", \" A man holding a camera is standing on the sidewalk and watches another man trip and fall and runs over to help him.\"]}, \"v_QnATCZ_P9DE\": {\"duration\": 94.8, \"timestamps\": [[0, 9.48], [12.32, 37.92], [39.34, 94.8]], \"sentences\": [\"A man is shown in the water, wearing a helmet, holding a paddle and sitting in a kayak.\", \" He is talking to the camera about how to use the kayak.\", \" He shows several rocking and paddling motions, and flips the kayak once at the end.\"]}, \"v_ZRnCnUeqKv4\": {\"duration\": 164.31, \"timestamps\": [[0, 81.33], [84.62, 164.31]], \"sentences\": [\"a group is playing soccer on a field.\", \" The girls chase the ball, hitting it with sticks, trying to get it into the goal.\"]}, \"v_ZGzXbvRHNAE\": {\"duration\": 58.98, \"timestamps\": [[0.59, 58.39], [0.59, 12.39], [13.57, 18.28], [20.35, 58.68]], \"sentences\": [\"A man cleans a spot in the kitchen sink with a sponge and bottle of clorox cleaner, in a black and white commercial.\", \"  A shot of a suburban town is shown with a close up of the city name on a town sign.\", \"  A man in an apron stands in front of a kitchen sink putting dishes away in a drainer.\", \"  The man cleans a spot in the sink with a bottle of clorox and a sponge, before a marketing template appears with lettering and closeup of the bottle of clorox.\"]}, \"v_eSQnn2RFxeY\": {\"duration\": 124.64, \"timestamps\": [[0, 34.9], [34.9, 65.43], [66.68, 104.69], [105.94, 124.01]], \"sentences\": [\"A woman holds the wheel of the yacht that sails in the ocean, and a dolphin swims near the yacht.\", \"  Then, a young men talks, and from time ti time shows the sunset.\", \" Four people start to dance in the yacht, and one boy dance against the sail.\", \" The four people holds a big fish with both hands while the yacht continues to sail.\"]}, \"v_XbN3TvLEm2A\": {\"duration\": 20.09, \"timestamps\": [[0, 2.51], [2.51, 7.83], [7.83, 18.28], [18.18, 20.09]], \"sentences\": [\"A woman dressed very comfortably is doing an exercise down on one knee.\", \" She puts her arm in the air and stares off into the distance holding it into place.\", \" After holding that on place for a few minutes she puts her arm down and then faces forward.\", \" She continues to just stay in that position.\"]}, \"v_VOGF4tBFEuw\": {\"duration\": 30.08, \"timestamps\": [[0, 3.31], [4.21, 20.15], [21.21, 30.08]], \"sentences\": [\"A first person view is seen of a man riding a riding lawn mower.\", \" He takes turns quickly, mowing the lawn.\", \" He continues until the entire yard is mown.\"]}, \"v_ooadlJjyibo\": {\"duration\": 75.42, \"timestamps\": [[0, 72.4], [15.46, 22.25], [26.77, 31.68], [41.86, 50.15], [67.5, 72.03], [72.03, 75.42]], \"sentences\": [\"A girl performs on a balance beam.\", \" The girl stands and performs two flips.\", \" The girl jumps in the air two times.\", \" The girl sits down then gets back on her feet.\", \" The girl flips across the beam two times and dismounts the beam.\", \" The girl raises her arms and turns to high five and hug a lady standing nearby.\"]}, \"v_uo1ERV8LZeU\": {\"duration\": 120.54, \"timestamps\": [[4.22, 45.8], [43.39, 118.12]], \"sentences\": [\"Pictures of a drink are shown followed by an empty bowl and a person putting ingredients in the bowl.\", \" The person stirs the ingredients all around and pours the mixture into a glass with ice to serve.\"]}, \"v_yKdvz5dgro4\": {\"duration\": 10.54, \"timestamps\": [[0.69, 10.54], [0, 10.54], [0.42, 3.85]], \"sentences\": [\"A young man dry a pot lid while dancing.\", \" Also, a teen wash a cup of steel and dancing.\", \" A woman enters and then leave the kitchen.\"]}, \"v_R3CGHNqunGA\": {\"duration\": 182.0, \"timestamps\": [[0, 7.28], [12.74, 21.84], [25.48, 163.8], [84.63, 90.09], [113.75, 124.67]], \"sentences\": [\"A young man sits on a a planter in front of a brick building.\", \" A graphic is seen with cartoons.\", \" The young man sits on a planter with a skateboard on his lap the young man spins his board and does skateboard tricks riding on asphalt.\", \" The young man does tricks over an orange safety cone.\", \" The skateboarder stands up from the ledge and stands on his skateboard.\"]}, \"v_qpVPY6w9Fp0\": {\"duration\": 234.34, \"timestamps\": [[0, 57.41], [60.93, 155.83], [110.14, 206.22], [208.56, 231.99]], \"sentences\": [\"A man is seen speaking to the camera while standing on a beach next to a shovel.\", \" The man then begins shoveling a pile of dirt and walking to the water to fill up buckets.\", \" The man stacks the buckets and begins putting sand around it and sculpting it into a castle.\", \" He walks away in the end and shows off the castle he's made.\"]}, \"v_9g-5J05BIiQ\": {\"duration\": 126.34, \"timestamps\": [[0, 25.27], [24.64, 99.81], [102.97, 126.34]], \"sentences\": [\"An intro leads into several shots of people riding a skateboard around various areas and ending in a corn field.\", \" They end up at a house and swim into the pool doing tricks on their boards underwater.\", \" They are then seen riding down a road again in the end and one boarder scuffs dirt into the camera.\"]}, \"v_GhwvPy4_2KE\": {\"duration\": 57.8, \"timestamps\": [[0, 57.8], [43.35, 57.8]], \"sentences\": [\"A young child is pushed on a swing set of an outdoor playground at a park.\", \" The child reaches out her hand.\"]}, \"v_BLLeQHgNmYc\": {\"duration\": 92.21000000000001, \"timestamps\": [[0, 23.51], [22.13, 70.54], [62.24, 89.9]], \"sentences\": [\"Three people are seen standing on a lawn beginning to perform martial arts moves.\", \" The group moves around at the same time while looking away from the camera.\", \" They continue to move their arms and legs around together and end by holding s pose.\"]}, \"v_suwVnxHZtI8\": {\"duration\": 103.65, \"timestamps\": [[0, 41.98], [41.98, 42.5], [43.02, 66.34], [67.38, 103.65]], \"sentences\": [\"People are sledding down a snowy hill on an inner tube.\", \" They stop at the bottom of the hill.\", \" Several tubes are on a rope going up a hill.\", \" People are sledding down a hill on an inner tube again.\"]}, \"v_51XRujaBAbE\": {\"duration\": 159.41, \"timestamps\": [[0.8, 34.27], [35.07, 54.99], [55.79, 58.98], [59.78, 105.21], [106, 157.81]], \"sentences\": [\"Children sit on motorcycles and parents are next to them.\", \" A man carry a child, a woman applaud and a man takes pictures.\", \" A toddler stands on the hay and grabs the leg of a woman.\", \" Then, men push the motorcycles with the children while a man takes notes.\", \" Then, the children line on the start line and then run.\"]}, \"v_FjY3eKNvzug\": {\"duration\": 163.24, \"timestamps\": [[0, 163.24], [31.02, 115.9], [44.89, 130.59]], \"sentences\": [\"People are sitting on exercise machines in a room.\", \" They all begin working out and pulling on a rope.\", \" People are standing in front of them cheering them on.\"]}, \"v_2Ot4ZPYpNwI\": {\"duration\": 207.52, \"timestamps\": [[0, 191.95], [196.1, 207.52]], \"sentences\": [\"A man is seated on a couch, playing a harmonica.\", \" He lowers it from his mouth when he is done.\"]}, \"v_8cH0mAgsuAc\": {\"duration\": 176.24, \"timestamps\": [[13.22, 57.28], [13.22, 176.24]], \"sentences\": [\"A man in a black shirt is talking.\", \" Several people are kneeling down on a red mat doing stretches.\"]}, \"v_enx7eEDrYcc\": {\"duration\": 14.13, \"timestamps\": [[0, 2.33], [2.47, 8.13], [8.76, 14.13]], \"sentences\": [\"A girl is kneeling on a pad, arms in the air.\", \" She leans back, letting her arms touch the wall.\", \" She repeats the action one more time.\"]}, \"v_2zFmooC8gUg\": {\"duration\": 218.38, \"timestamps\": [[4.37, 95], [96.09, 210.74]], \"sentences\": [\"A person is seen kneeling down on top of a roof and holding objects in place to hammer down.\", \" The man then lays down more tile while hammering the sides and presenting the tiles to the camera.\"]}, \"v_BFrsZmuj4Ns\": {\"duration\": 205.26, \"timestamps\": [[6.16, 92.36], [85.18, 199.1]], \"sentences\": [\"Two men are seen running around a circle surrounded by people and performing martial arts moves.\", \" More people come in the circle and the people continue spinning around one another and fighting with each other.\"]}, \"v_FCzT4Knfhqs\": {\"duration\": 142.66, \"timestamps\": [[0, 44.23], [45.65, 64.2], [64.2, 104.14], [102, 142.66]], \"sentences\": [\"A camera pans around a group of people standing around each other with one spinning in circles.\", \" A man pushing the spinning girl around and around and zooms in on a pinata.\", \" The girl swings at the pinata blindfolded and a man jumps down to grab a piece of fallen candy.\", \" The girl breaks open the pinata and several people run down to grab the candy.\"]}, \"v_fRUoSevi63M\": {\"duration\": 132.17, \"timestamps\": [[5.29, 128.2], [24.45, 27.76], [35.02, 125.56]], \"sentences\": [\"A woman is painting a picture on a canvas.\", \" She has orange and yellow paint on a board in front of her.\", \" She paints two flowers onto the canvas.\"]}, \"v_Ci9WKE6wkOQ\": {\"duration\": 155.16, \"timestamps\": [[10.86, 33.36], [34.91, 81.46], [82.23, 142.74]], \"sentences\": [\"A man and woman are talking to a camera on exercises.\", \" The girl talks about equipment and how to use it.\", \" She prepares the equipment and helps the man perform the exercise.\"]}, \"v_KrLVIvCoW90\": {\"duration\": 213.73, \"timestamps\": [[0, 50.23], [50.23, 193.43], [193.43, 213.73]], \"sentences\": [\"people standing on side of the road on skateboards and with parked cars in a side.\", \" boys are doing tricks riding skateboards in the wet asphalt going down a hill.\", \" boys are gathered under a tent in the sidewalk and doing tricks in skateboard showing the wey asphalt and the wet grass.\"]}, \"v_Yxsw5nTf4Dg\": {\"duration\": 95.02000000000001, \"timestamps\": [[0, 16.15], [15.68, 24.23], [24.7, 34.21], [35.16, 50.36], [49.88, 95.02]], \"sentences\": [\"A girl in a bikini is doing hula hoop on a patio.\", \" She spins around several times and seems to be having a lot of fun.\", \" The came moves up and down to keep her in the frame.\", \" It then jumps to another girl only showing her bottom half as a hula hoop spins around her.\", \" Another girls is shown dancing inside of a house several times.\"]}, \"v_82s4QeuHioo\": {\"duration\": 182.02, \"timestamps\": [[0, 39.13], [39.13, 46.42], [46.42, 144.71], [144.71, 182.02]], \"sentences\": [\"man is sitting on akayak holding a row and showing the corect way of rowing.\", \" people are in a kayak on lakeside.\", \" people are on rapids kayaking.\", \" men are swimming on the lake by the kayak and walking in the lakeside holding kayaks.\"]}, \"v_3cmHM1Yu92s\": {\"duration\": 75.44, \"timestamps\": [[1.13, 75.44], [15.84, 55.45], [56.2, 75.44]], \"sentences\": [\"A woman is shown working out on an elliptical and smiling off into the distance.\", \" The video shows several different perks the machine can do while the woman continues to work.\", \" She eventually steps on the machine again and continues to work out on the machine.\"]}, \"v_c2VcfB3YTBo\": {\"duration\": 147.42000000000002, \"timestamps\": [[0, 4.42], [4.42, 39.07], [39.07, 136.37], [44.23, 45.7], [90.67, 93.61], [108.36, 111.31], [131.94, 140.79], [141.53, 147.42]], \"sentences\": [\"We see a lady walking down stairs.\", \" She enters a room with kids in it, takes off her coat and starts dancing.\", \" A man enters and the lady and  man perform a fancy dance as the kids watch.\", \" The man throws his coat across the room.\", \" The lady hugs the man from behind.\", \" The lady tries to leave and the man grabs her and pulls her back.\", \" They finish and the man shakes the hands of the kids.\", \" The lady puts on her coat  as a girl talks to her and leaves the room.\"]}, \"v_lBXRkMZfIXk\": {\"duration\": 191.79, \"timestamps\": [[6.71, 71.92], [72.88, 146.72], [138.09, 177.4]], \"sentences\": [\"A man is seen speaking to the camera and leads into him holding a piece of paper and two objects.\", \" He puts the objects on a board and sharpens a knife along the object.\", \" He continues speaking to the camera while sharpening the blade and pointing to the object.\"]}, \"v_CG-7jcSB5_c\": {\"duration\": 36.92, \"timestamps\": [[0, 4.25], [4.43, 17.35], [17.35, 29.91], [29.91, 36.37]], \"sentences\": [\"A toddler holds a lacrosse stick, then he catches a ball with the lacrosse stick and throws to the floor.\", \" Then, the toddler try to catch another ball, but it rolls under a chair.\", \" Next, the toddler catch a ball and throw to the floor and the ball bounce.\", \" After, the toddler catch the bouncing ball and throw to the backyard, then the toddler steps down a step.\"]}, \"v_Geh_BZchxFY\": {\"duration\": 58.05, \"timestamps\": [[0, 57.76], [10.74, 19.16], [20.32, 28.44], [28.73, 33.38], [33.96, 58.05]], \"sentences\": [\"We see a lady peeling small potatoes.\", \" The lady peels her second potato.\", \" The lady moves on to her third potatoes.\", \" We zoom out and see the ladies face.\", \" The lady peels her fourth and fifth potato.\"]}, \"v_tl3wQEusmj8\": {\"duration\": 107.21000000000001, \"timestamps\": [[0, 3.75], [3.75, 13.94], [12.33, 103.99], [50.92, 68.08], [73.97, 77.19], [95.95, 103.45], [103.45, 107.21]], \"sentences\": [\"We see an opening scene with an image.\", \" We then see a lake with ducks and rocks.\", \" People are paddling in the lake in a canoe.\", \" We see a bridge and the people pass under the bridge.\", \" We see tall grass blowing in the breeze as the boaters ride past.\", \" The boaters arrives at the shore.\", \" We then see the closing title screen.\"]}, \"v_XXIDYn4H_1A\": {\"duration\": 78.55, \"timestamps\": [[0, 19.64], [20.03, 35.35], [35.74, 78.55]], \"sentences\": [\"A scoreboard and large video screen are shown.\", \" Bikers launch down a very tall ramp onto a dirt bike track.\", \"  The bikers race around the bumpy track.\"]}, \"v_EiPofuIoUic\": {\"duration\": 61.28, \"timestamps\": [[0.61, 18.38], [17.46, 47.8], [48.41, 60.67]], \"sentences\": [\"A close up of a person's feet are seen riding along the river in a tube.\", \" Several more people are seen riding in tubes down the river while others watch on the side.\", \" The person continues riding down the river past others.\"]}, \"v_ZqkJAD0CGBU\": {\"duration\": 71.43, \"timestamps\": [[0.36, 16.07], [19.64, 53.57], [41.78, 69.64]], \"sentences\": [\"A man is seen standing behind a small child who is blindfolded.\", \" Several clips are then shown of people swinging around at pinatas and failing miserably.\", \" More clips are shown of people swinging around at pinatas and ends with them hitting other people.\"]}, \"v_v5peBgLKWL8\": {\"duration\": 191.7, \"timestamps\": [[0, 37.38], [37.38, 43.13], [43.13, 52.72], [52.72, 65.18], [65.18, 81.47], [81.47, 94.89], [94.89, 108.31], [108.31, 191.7]], \"sentences\": [\"bright sun is in the sky and shows a snowy mountain and a lot of pine trees covered in snow.\", \" an snowboarder is walking in the snow holding two poles.\", \" cubicles is hanging on wires and a snowboarder is going down the snowy slope with other snowboarders standing behind.\", \" men are walking in a snowy slope holding the poles and other snowboarders are sliding behind.\", \" women are in a hanging chair and under the kids are going down slope riding snowboards and playing in a snow castle.\", \" people is walking in snowy mountain and snowboarding.\", \" wmoan enters in a cave with a man and are serving wine and a elderly couple are toasting.\", \" a lot of people is waiting and sitting on their bags with the snowboards on a side, people is going down the mountain while the days goes by.\"]}, \"v_jpGyplACWUg\": {\"duration\": 45.21, \"timestamps\": [[0, 7.01], [7.23, 30.97], [31.87, 45.21]], \"sentences\": [\"a man is celebrating with his arms in the air.\", \" He is shown spinning on a field.\", \" He then throws the ball far away and it is measured.\"]}, \"v_e-Z9xiEQqPQ\": {\"duration\": 153.35, \"timestamps\": [[4.6, 12.27], [13.03, 20.7], [22.24, 34.5], [34.5, 38.34], [43.7, 93.54], [95.07, 132.64], [133.41, 137.24], [138.78, 153.35]], \"sentences\": [\"A military procession carries a coffin and goes through a funeral ceremony.\", \" A news anchor talks in a newsroom.\", \" A coffin and is carried by a wagon along with military personell.\", \" A military man presents a flag to a guest.\", \" A man with a prosthetic leg and a woman ride horses with trainers with a trainer alongside.\", \" A journalist rides with a man in football jersey along a sidewalk.\", \" A horse trainer talks near a forested area.\", \" The man in a jersey stops on the horse as he approaches the funeral procession.\"]}, \"v_6l0tenUYS-w\": {\"duration\": 112.15, \"timestamps\": [[0, 0.56], [7.29, 112.15]], \"sentences\": [\"There is man speaking on the microphone to announce who's coming up.\", \" Next many different people go up on stage to dance.\"]}, \"v_LtdO87DWEHM\": {\"duration\": 15.09, \"timestamps\": [[0, 6.49], [7.02, 15.09]], \"sentences\": [\"Several clips of shown of a person riding down city streets on roller blades.\", \" The person continues riding along the streets and then text appears across the screen.\"]}, \"v_GjHanmMGvuw\": {\"duration\": 129.2, \"timestamps\": [[0, 69.77], [36.17, 69.77], [70.41, 129.2]], \"sentences\": [\"A young girl is shown on a large gym floor doing flips and tricks with a baton and several judges watching her.\", \" She continues moving along the floor while along girl practices behind her.\", \" She finishes her routine and stands in front of the judges and hears her results.\"]}, \"v_97McCuWAynA\": {\"duration\": 127.32, \"timestamps\": [[0, 5.73], [6.37, 112.67], [113.31, 127.32]], \"sentences\": [\"A surfer wearing a wet suit takes off and rides a wave in the ocean.\", \" Two surfers is greeted by a seal in the ocean that jumps on his board and plays with them.\", \" The surfer wearing a wet suit takes off on a wave leaving the seal behind.\"]}, \"v_-x1twrM_ABM\": {\"duration\": 174.49, \"timestamps\": [[0, 27.05], [30.54, 157.91], [162.27, 174.49]], \"sentences\": [\"A man is in a room, pointing and talking about tiles.\", \" He is placing the tiles into the wall one at a time.\", \" The man completes the construction, then turns off the camera.\"]}, \"v_Y-UOZRZ01hI\": {\"duration\": 42.19, \"timestamps\": [[0.63, 10.34], [10.13, 29.32], [29.53, 31.85], [32.91, 41.77]], \"sentences\": [\"A page with a video structured to look similar to Youtube is shown.\", \" A seated woman talks to the camera, interspersed by scenes of individuals shown welding.\", \" A man talks to the camera.\", \" The Youtube lookalike page with a video is shown again.\"]}, \"v_IfYiYObrUlY\": {\"duration\": 208.42000000000002, \"timestamps\": [[7.29, 92.75], [92.75, 132.35], [133.39, 190.71]], \"sentences\": [\"A woman talks in kitchen, then come two boys and talk whiles showing the fruits on the counter.\", \" Then, a man comes and puts all the fruits in a large bowl while explaining.\", \" After, the man adds on top the fruits yogurt, chocolate and cereal.\"]}, \"v_moMisK3nGuY\": {\"duration\": 85.45, \"timestamps\": [[0, 58.96], [71.78, 85.45], [64.09, 85.45]], \"sentences\": [\"woman is standing next to a horse holding a brush combing the horse's hair.\", \" litle kid is caressing the horse.\", \" woman walks to the track.\"]}, \"v_ksPQdczmNKs\": {\"duration\": 225.37, \"timestamps\": [[0, 43.95], [48.46, 225.37]], \"sentences\": [\"A girl is seen crossing her arms and hula hooping over and over again.\", \" She continuously hula hoops while moving her legs all around and doing various jumps and tricks.\"]}, \"v_n1dboqahvZU\": {\"duration\": 63.87, \"timestamps\": [[11.5, 19.8], [17.88, 21.4], [28.1, 32.25], [31.61, 42.47], [42.15, 45.67], [60.04, 63.87]], \"sentences\": [\"A man named Andrei approaches the stage.\", \" He powders his hands in preperation.\", \" He puts his hands on the weight.\", \" He prepares his body for lifting the heavy weight.\", \" He pulls up but drops the weight and falls down.\", \" The other competitor rejoices at their win.\"]}, \"v_kO_4QDNExkY\": {\"duration\": 70.36, \"timestamps\": [[0, 3.17], [3.17, 11.61], [11.61, 39.05], [39.4, 70.36]], \"sentences\": [\"A hand is shown flipping a switch.\", \" A the hose of a leaf blower is shown.\", \" The hose begins forcefully blowing leaves away from the camera.\", \" The person holding the leaf blower repeatedly swings the hose left to ring blowing leaves into a pile.\"]}, \"v_phDLuo6dYrk\": {\"duration\": 206.11, \"timestamps\": [[0, 51.53], [51.53, 120.58], [120.58, 206.11]], \"sentences\": [\"The clear sky is shown before a group of girls appear playing a game of field hockey.\", \"The two teams compete against each other in the building as still images are shown in between the plays.\", \"As one team gets close to making a goal,a male photographer is shown on the corner of the goal and then a girl appears at the end of the video making a funny face.\"]}, \"v_yHtapvYRcMw\": {\"duration\": 146.57999999999998, \"timestamps\": [[0, 31.51], [30.05, 83.55], [84.28, 109.93], [109.2, 129.72], [131.19, 146.58]], \"sentences\": [\"Two men are performaing capoeria in the middle of a circle of people.\", \" They are performing while everyone claps.\", \" They take a short break and walk around a bit before starting their performance again.\", \" People are clapping to a set rhythm.\", \" This lasts for a long while.\"]}, \"v_1xQTlp0hscs\": {\"duration\": 234.66, \"timestamps\": [[0, 8.21], [10.56, 89.17], [92.69, 198.29], [211.19, 234.66]], \"sentences\": [\"Bright text appears on the screen.\", \" An art piece is displayed on the wall, and we are shown several close ups of the paint.\", \" Perusers of art walk through the gallery, looking at the painting.\", \" We then conclude with someone taking a photo and walking away.\"]}, \"v_ZMopjyYvcqw\": {\"duration\": 172.73, \"timestamps\": [[2.59, 14.68], [29.36, 36.27], [36.27, 78.59], [78.59, 128.69], [128.69, 168.42]], \"sentences\": [\"A man is showing a crossbow and a knife and other hunting gear.\", \" The man is talking to the camera showing a hunting bow.\", \" The bow is shown in detail.\", \"  Another man is shown outdoors using the hunting bow to shoot a target.\", \" The man is talking to the camera again indoors showing the hunting bow.\"]}, \"v_0ERgbWePjWk\": {\"duration\": 4.16, \"timestamps\": [[0, 1.52], [1.52, 2.51], [1.95, 2.45], [2.66, 4.16]], \"sentences\": [\"A man is on a diving board and begins to jump on the board once.\", \" The man goes into the air and does a forward roll in the air.\", \" The man then starts descending into the water from the top of his jump.\", \" The man lands into the water as it splashes and makes the move to come back to the surface.\"]}, \"v_ZQs-OWTZA6o\": {\"duration\": 31.65, \"timestamps\": [[0, 5.86], [2.85, 29.75]], \"sentences\": [\"The woman with sunglasses, blue jacket pushed the round lifebuoy on the snow and jumped on it.\", \" The lifebuoy continue to slide on the snow, the woman is looking a the camera, she passed the orange flags, and several people that are standing on the side of the trail.\"]}, \"v_NSavdMErlYA\": {\"duration\": 104.50999999999999, \"timestamps\": [[0.52, 4.18], [4.7, 34.49], [17.77, 22.99], [35.01, 62.19], [64.8, 93.54], [101.38, 104.51]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy talks while gesturing.\", \" The ingredients to make a dish is shown.\", \" The guy puts butter, oil and dry ingredients into a pan.\", \" The guy adds pasta to the pan.\", \" The credits of the video are shown.\"]}, \"v_fgkiHZ0nENg\": {\"duration\": 44.65, \"timestamps\": [[0, 23], [19.87, 44.65]], \"sentences\": [\"A group of people are seen standing around a yard when one hits a ball and another watches closely.\", \" Another man walks into frame hitting the ball and the other people behind him continue playing.\"]}, \"v_NDWJOqVUGeA\": {\"duration\": 149.7, \"timestamps\": [[0, 47.9], [46.41, 111.53], [113.77, 149.7]], \"sentences\": [\"A camera pans over a roof and shows several people working and a man being interviewed.\", \" A man sprays down a roof and shows the product used several times and the top of the roof.\", \" Another man is interviewed and shows more men working on the roof.\"]}, \"v_dAP7xalPRHo\": {\"duration\": 116.52000000000001, \"timestamps\": [[2.91, 20.97], [24.47, 78.65], [79.23, 115.35]], \"sentences\": [\"A person puts a garment in a pail, then he adds detergent and water.\", \" Then, the man washes the cloth with his hand, and then pours water and rinse several times.\", \" Next, the person carry the the garment to hang on a rope and dry.\"]}, \"v_fKFcbNM89MA\": {\"duration\": 30.04, \"timestamps\": [[0, 6.16], [7.51, 18.47], [19.07, 28.23]], \"sentences\": [\"A large river is seen followed by a person riding down in a tube.\", \" Another person is also seen riding in a tube.\", \" The two ride down the river together and pass other people sitting alongside the river.\"]}, \"v_-nskwoky7vk\": {\"duration\": 160.43, \"timestamps\": [[4.01, 71.39], [44.92, 154.81]], \"sentences\": [\"A man is seen speaking to the camera while holding a large accordion in his hands.\", \" The man then demonstrates how to properly play the instrument while moving his hands up and down.\"]}, \"v_RiQdIJNDTo4\": {\"duration\": 209.03, \"timestamps\": [[0, 150.5], [152.59, 209.03]], \"sentences\": [\"A white haired man sits at an upright piano and begins to play in a lobby while people walk by.\", \" The cameraman zooms in on the mans hands as he's playing and zooms back out.\"]}, \"v_HPJuOvOmEW8\": {\"duration\": 211.06, \"timestamps\": [[0, 37.99], [36.94, 211.06]], \"sentences\": [\"An intro leads into a tall man wearing a santa costume and skating down a long street in between people.\", \" The camera follows him riding around the city and performing various tricks and maneuvers around cars and people.\"]}, \"v_3baH1vI0Cxk\": {\"duration\": 94.74000000000001, \"timestamps\": [[0, 11.37], [9, 73.42], [58.26, 88.58]], \"sentences\": [\"Two men walked over the football table, one man counted the dice on the side.\", \" The players twist and push and pull the poles as they play on the table.\", \" The camera men are taking pictures behind them.\"]}, \"v_Dys_KC7uIzs\": {\"duration\": 234.27, \"timestamps\": [[2.34, 11.71], [11.71, 231.92], [74.97, 87.85]], \"sentences\": [\"Several men are shown bowling while an audience watches on.\", \" The bowlers bowl in turn, one at a time.\", \" The players and audience cheer one of the players.\"]}, \"v_i-8vfNV-klk\": {\"duration\": 100.25999999999999, \"timestamps\": [[0, 14.54], [14.54, 71.69], [72.69, 100.26]], \"sentences\": [\"A man is using a pair of hedge trimmers on trees.\", \" He is talking to the camera as he goes.\", \" He trims the trees with the shears.\"]}, \"v_Z-2Gwqt_GCQ\": {\"duration\": 164.79, \"timestamps\": [[15.66, 40.37], [41.2, 58.5], [60.15, 121.95], [122.77, 157.38]], \"sentences\": [\"A person gather mops and cleaning materials on a hard floor.\", \" The person cleans the hard floor using a dust mop.\", \" Then, the person puts a cup of detergent in a litter of water, then wet a cloth and attaches to a handle to mop the floor.\", \" The person removes stains on the floor using a cloth with a special solution.\"]}, \"v_qlvW6jW2mfQ\": {\"duration\": 123.21, \"timestamps\": [[0, 21.56], [22.18, 41.89], [41.89, 67.15], [67.76, 94.87], [94.87, 123.21]], \"sentences\": [\"A person take two sticks on the drums, one stick holds with a hand and the other with his foot, then the person plays with one hand and the drums falls.\", \" The person plays with a hand and feet, and the face of, a gorilla appears.\", \" Then, the person puts mustard in one drum and one egg on other drum, and drums.\", \" After, the person puts a tortilla and drums over,  then fried and egg.\", \" Next , the person destroys the drums.\"]}, \"v_rcMv32d1QkI\": {\"duration\": 121.65, \"timestamps\": [[0, 65.08], [63.26, 121.65]], \"sentences\": [\"The video begins with several shots of a person doing tricks on a skateboard while many people watch him on the sides.\", \" He attempts many more tricks that fail to have him land on the board and he walks around the bowl each time afterwards.\"]}, \"v_Az7bzVcLMSM\": {\"duration\": 184.48, \"timestamps\": [[0, 56.27], [36.9, 151.28], [160.5, 184.48]], \"sentences\": [\"A woman is seen standing on a stage stage with a single light shown and begins performing a dance routine.\", \" The light is seen on the woman is leads into her on a lit stage performing a belly dancing routine.\", \" The stage becomes dark again and the woman continues dancing all on the stage and holding a pose.\"]}, \"v_doNSg6PuKDM\": {\"duration\": 48.0, \"timestamps\": [[0, 38.88], [39.12, 40.56], [40.8, 48]], \"sentences\": [\"A child shovels the snow in a yard and throws it into the driveway.\", \" The girl drops her shovel and shovel in the snow.\", \" The child walks over to her family in the yard.\"]}, \"v_G98dfNXqu4Q\": {\"duration\": 26.91, \"timestamps\": [[0, 2.42], [3.5, 11.03], [12.38, 22.07], [23.28, 26.91]], \"sentences\": [\"Several people are on horses at a rodeo.\", \" One man comes out of the gate and ropes a calf.\", \" The calf falls to the ground as he is roped into place.\", \" He tries to stand, but another man grabs him.\"]}, \"v_5FSdOfvJnek\": {\"duration\": 96.35, \"timestamps\": [[0, 35.65], [35.17, 96.35]], \"sentences\": [\"a lot of people wearing red life jackets and are in a bus and holding rafts.\", \" people are in water paddling in the river.\"]}, \"v_fxxeCpqgRfk\": {\"duration\": 64.67, \"timestamps\": [[0, 5.5], [4.53, 58.85], [50.76, 64.67]], \"sentences\": [\"The male athlete bow then raised his arms then walked to the poles.\", \" The athlete jumped onto the poles and balanced on the two poles, standing on his arms then falling and rotating.\", \" When the athlete is done with his number he jumped from the pole and landed on his feet on the mat.\"]}, \"v_xpxxH2V7Fe8\": {\"duration\": 151.51, \"timestamps\": [[0, 17.42], [7.58, 28.79], [25, 68.18], [68.18, 151.51]], \"sentences\": [\"A row of drummers are standing in front of an orchestra.\", \" The drummers hold their drumsticks in front of their face.\", \" They each beat their drums.\", \" After each note the drummers raise their drumsticks back in front of their faces.\"]}, \"v_pA5W1NYnmyY\": {\"duration\": 91.86, \"timestamps\": [[0.92, 30.77], [25.26, 67.52], [57.87, 85.43]], \"sentences\": [\"A man is seen standing on a ladder and speaking to the camera.\", \" He holds up various tools and begins piecing them together.\", \" He then cleans off a window using the tools and tightening up the ladder.\"]}, \"v_4rKTw99bM8g\": {\"duration\": 9.57, \"timestamps\": [[1.1, 4.97], [4.97, 4.97], [4.97, 7.61]], \"sentences\": [\"A person wearing a blue jacket and orange helmet is on an overturned raft in the water.\", \" The raft completely overturns as he tries to make his way up.\", \" Then the man straightens the raft and sits up straight in the raft.\"]}, \"v__hdjRMpleWs\": {\"duration\": 58.68, \"timestamps\": [[0, 34.03], [29.34, 58.68]], \"sentences\": [\"A man is seen riding in on a horse while swinging a rope and grabbing a calf.\", \" The person ties up the calf while others ride in on horses and the men untie the animal.\"]}, \"v_R-lGXNY19wE\": {\"duration\": 77.18, \"timestamps\": [[0, 9.65], [9.65, 65.22], [65.99, 77.18]], \"sentences\": [\"A woman is holding a baby on the beach.\", \" She sets the baby on a towel and starts rubbing sunscreen on the baby.\", \" She picks the baby up and gives it a kiss.\"]}, \"v_yfPa5IKWTvU\": {\"duration\": 225.35, \"timestamps\": [[0, 12.39], [13.52, 33.8], [28.17, 34.93], [52.96, 206.2], [205.07, 212.96], [219.72, 225.35]], \"sentences\": [\"A billboard is shown on a wall.\", \" Kids run out onto the stage and get in formation.\", \" A banner is placed at the front of the stage.\", \" The kids start cheerleading on the stage.\", \" The kids in the front hold up the banner.\", \" They run off of the stage.\"]}, \"v_1PpVSeE2BJ8\": {\"duration\": 48.25, \"timestamps\": [[0, 5.07], [6.03, 16.16], [16.41, 48.25]], \"sentences\": [\"A baby boy is seated at a restaurant table.\", \" He is eating a vanilla ice cream cone.\", \" He takes a napkin and wipes his mouth before handing the napkin back and continuing to eat.\"]}, \"v_SHfFrzy_fKM\": {\"duration\": 78.32, \"timestamps\": [[0, 13.71], [15.66, 45.43], [47.78, 78.32]], \"sentences\": [\"A little girl is guided as she mounts a camel at a station.\", \" A man helps her as he leads the camel around.\", \" The girl smiles as she rides the camel around the pen.\"]}, \"v_Q2OOxx3RWhY\": {\"duration\": 209.84, \"timestamps\": [[10.49, 35.67], [47.21, 81.84], [93.38, 142.69], [168.92, 201.45]], \"sentences\": [\"The young girl is speaking to the camera.\", \" The girl is holding a hair curler.\", \" The young woman is providing tips to other girls on how to curl their hair.\", \" At the end of the video, the girl asks to like the video.\"]}, \"v_RNxHKDlWAGQ\": {\"duration\": 192.72, \"timestamps\": [[1.93, 84.8], [57.81, 184.04]], \"sentences\": [\"A camera shows a person riding around a dirt track on a bike moving at a quick speed.\", \" Several more shots are shown of people riding the dirt track on bikes while the camera captures them from several angles.\"]}, \"v_5P-4_nS8euM\": {\"duration\": 111.22, \"timestamps\": [[0, 32.81], [32.25, 91.2], [92.87, 111.22]], \"sentences\": [\"A young man is seen talking to the camera from various angles and then using a razor to cut his hair.\", \" He continues cutting his hair while speaking to the camera and laughing.\", \" He finishes his hair while looking into the camera then has his reflection shown behind a shower curtain.\"]}, \"v_gF14lRI0HUM\": {\"duration\": 19.13, \"timestamps\": [[0, 19.13], [0.48, 19.13], [1.15, 19.13]], \"sentences\": [\"Two people are boxing in a ring.\", \" A man in a black shirt is refereeing the fight.\", \" A woman is holding a camera taking pictures of them fighting.\"]}, \"v_HDhG0WkwGaU\": {\"duration\": 221.12, \"timestamps\": [[0, 140.41], [135.99, 221.12]], \"sentences\": [\"The videos transitions into a countdown of various people getting hurt on the streets from bull attacks.\", \" many different people are seen running down streets while a bull flips them over and hurt them.\"]}, \"v_fOGXvBAmTsY\": {\"duration\": 199.92000000000002, \"timestamps\": [[0, 199.92], [30.99, 47.98], [59.98, 92.96], [83.97, 98.96], [92.96, 165.94], [156.94, 199.92]], \"sentences\": [\"There's a woman talking about being the first woman to participate in a marathon in 1967.\", \" A picture of the participant when she was young is shown.\", \" She talks about how different the marathons used to be back in the day where she shows clips of participants from a marathon at least 50 years ago.\", \" There are pictures of male participants shown dominating the scene where she was the only female participant.\", \" She talks about her experience as she shows more pictures of her participation against all odds.\", \" She also shares information on how things changed later when she was finally allowed to participate freely.\"]}, \"v_DLFerdBxdxQ\": {\"duration\": 150.7, \"timestamps\": [[0, 7.53], [10.55, 64.8], [66.31, 125.83], [126.59, 135.63], [137.89, 150.7]], \"sentences\": [\"A woman is standing at a table, putting food into a large pita on a plate.\", \" An older woman demonstrates how to cut onions, peppers, lettuce, carrots, tomatoes, etc into chunks.\", \" The vegetables are places in a processor and pureed into a bowl.\", \" The mix is blended and put on the table to be served on the tortillas.\", \" The women sit at the table and talk as they eat.\"]}, \"v_qVgsPJeQYMY\": {\"duration\": 128.92, \"timestamps\": [[3.87, 24.49], [26.43, 42.54], [49.63, 101.2]], \"sentences\": [\"A group of students stretch out in gym class.\", \" A group of band students practice inside a classroom and gym.\", \" The school band  plays during outdoor events and sporting games.\"]}, \"v_F-WmsfI8HG0\": {\"duration\": 235.94, \"timestamps\": [[0, 12.98], [28.31, 38.93], [40.11, 67.24], [76.68, 92.02], [92.02, 128.59], [128.59, 142.74], [143.92, 155.72], [178.13, 194.65], [195.83, 199.37], [209.98, 235.94]], \"sentences\": [\"We see a newscaster in a studio.\", \" We see a man operating 2 manual vacuum cleaners.\", \" We see some old style vacuums.\", \" We see a black and white TV clip.\", \" We see the man vacuum and still from the museum.\", \" We see a lady in black and white and in color.\", \" We then see a factory and a man talking.\", \" We see the man talking and see him near a vacuum.\", \" We see an old print ad.\", \" We return to the newscaster in the studio.\"]}, \"v_9wH6BIpe9X4\": {\"duration\": 92.3, \"timestamps\": [[1.38, 40.61], [39.69, 88.61]], \"sentences\": [\"A woman is seen speaking to the camera and leads into clips of her and another riding horses in a forest and beach.\", \" The women then run the horses along the beach while the camera captures them from several angles.\"]}, \"v_aDhbXceBwHw\": {\"duration\": 72.31, \"timestamps\": [[0.72, 20.97], [14.46, 50.61], [48.81, 72.31]], \"sentences\": [\"Two men are seen doing a sumo move in a large circle surrounded by others.\", \" One man pretends to fight a sumo wrestler and is pushed to the side very easily.\", \" The other man tries with his shot shown again in slow motion and stand all together with their arms up.\"]}, \"v_MqQ9mgUb664\": {\"duration\": 114.45, \"timestamps\": [[0, 23.46], [16.02, 114.45]], \"sentences\": [\"A man and woman is standing on the counter while the man talks in the camera.\", \" A plate of cut pineapple is on a plate on the table, as the man get some grapes and put it on the chopping board and cut them into half, then placed them on top of the pineapple cuts, then he wiped his hands and showed the plate to the camera.\"]}, \"v_bY0vSkxH0PE\": {\"duration\": 20.2, \"timestamps\": [[0, 9.29], [9.39, 20.2]], \"sentences\": [\"A child watches at a window while a man outdoors is shoveling snow.\", \" He moves back and forth, picking up snow and moving it away from the door.\"]}, \"v_-tv6laq1ic0\": {\"duration\": 54.99, \"timestamps\": [[0, 1.65], [2.2, 54.99], [12.37, 29.42], [19.24, 54.99], [47.01, 53.89]], \"sentences\": [\"We see blinds down on a window.\", \" A person is laying in a tattoo parlor being tattooed.\", \" We back up and see the tattoo artist.\", \" The lady looks in her phone and smiles at the camera.\", \" We pan down and see the tattoo artist work.\"]}, \"v_LgUCZHYBBEc\": {\"duration\": 65.11, \"timestamps\": [[0.33, 13.35], [11.39, 40.37], [40.04, 62.5]], \"sentences\": [\"A large group of people are seen riding on horses and begin moving around.\", \" The people play a game on the horses while chasing a ball.\", \" The men continue to play and end by one jumping off the horse.\"]}, \"v_FkWlzk8CrxA\": {\"duration\": 83.62, \"timestamps\": [[0, 7.11], [7.53, 83.62], [62.71, 83.62]], \"sentences\": [\"A woman in a white shirt is talking to the camera.\", \" A man and the woman start to dance together.\", \" She raises her arm and he twists her around.\"]}, \"v_dWUEAavKWmI\": {\"duration\": 124.9, \"timestamps\": [[0, 26.23], [26.23, 57.45], [57.45, 93.05], [93.05, 124.9]], \"sentences\": [\"Two men wearing blue are inside playing a game of ping ping.\", \" They are hitting the ball back and forth pretty quickly  without stopping.\", \" One of them hits the ball up and stops their progress, they have to start again.\", \" they get back to playing and hitting it barely missing a beat.\"]}, \"v_jLwUrFMRGzY\": {\"duration\": 78.62, \"timestamps\": [[0, 10.61], [10.22, 48.75], [47.57, 78.62]], \"sentences\": [\"An intro is shown followed by two people and a man talking to the camera.\", \" The camera pans out to more people and shows them performing an exercise that swings their legs back and fourth.\", \" The people continue following the instructor through various movements while he leads them in the exercise.\"]}, \"v_cBMi-cIbI2c\": {\"duration\": 20.76, \"timestamps\": [[0, 4.98], [5.09, 12.66], [12.56, 20.76]], \"sentences\": [\"A man is dressed in a black uniform and approaches a small circle that is in the middle of the field surrounded by green nets.\", \"The crowd is panned and then the man is shown throwing his discus as multiple people run out to track his distance.\", \"An instant replay is played and the front of the man's face is visible.\"]}, \"v_nDG3MsnLE20\": {\"duration\": 60.72, \"timestamps\": [[0, 17.31], [17.31, 23.68], [23.98, 33.09], [33.7, 39.47], [39.77, 60.72]], \"sentences\": [\"We see a series of title screens.\", \" We see a curling stone and a graph.\", \" We see a person pushing the stone.\", \"  We see the stone on another graph.\", \" We see a man push the stone and people sweep in front of it.\"]}, \"v_vPh9o_BuJaU\": {\"duration\": 18.37, \"timestamps\": [[0, 2.57], [2.66, 11.39], [11.11, 18.09]], \"sentences\": [\"A close up of a person's feet are shown sitting in a chair.\", \" The person then bends forward and begins putting shoes on.\", \" He finishes putting shoes on and gets up to walk away.\"]}, \"v_HnEvJUr8DEM\": {\"duration\": 8.22, \"timestamps\": [[0, 8.22], [1.07, 3.49], [6.37, 8.22]], \"sentences\": [\"A man is standing on a field.\", \" He kicks a ball into the air.\", \" He runs to first base.\"]}, \"v_a7QrIgqkyao\": {\"duration\": 180.51, \"timestamps\": [[0, 31.59], [33.39, 60.47], [63.18, 148.02], [149.82, 180.51]], \"sentences\": [\"A woman is standing behind a table with several pumpkin carving kits.\", \" She shows the contents of the books.\", \" The woman chooses a design, carving it into the pumpkin.\", \" She then places batteries in tea light to go inside, and paints the pumpkin black.\"]}, \"v_UVJ0mQndDhE\": {\"duration\": 138.16, \"timestamps\": [[0, 138.16], [15.89, 23.49], [26.94, 134.71], [95.33, 99.47], [127.11, 138.16]], \"sentences\": [\"We see a person sliding blue discs down a wooden table.\", \" The man moves to the other end of the table and the camera moves to see them from the end.\", \" We wee the person slide all their blue then the red discs down the table.\", \" We see a hand appear and point.\", \" The person grabs a blue disc and slides it two times.\"]}, \"v_iOnlcEk50CM\": {\"duration\": 83.24, \"timestamps\": [[0, 5.83], [5.83, 28.3], [28.3, 59.1], [59.52, 83.24]], \"sentences\": [\"A male is standing on side on a road in front of a forest with his foot on a skateboard.\", \"The male then gets on the skateboard and start balancing himself on it.\", \"After,he picks up the skateboard and moves a few feet back and starts skateboarding.\", \"Once done,he picks up the skateboard and holds it back down to his side.\"]}, \"v_CIAZbDkD0TE\": {\"duration\": 118.53999999999999, \"timestamps\": [[0, 16.6], [17.78, 91.27], [96.02, 118.54]], \"sentences\": [\"A woman walks out of a kitchen and over to a steamer with her daughter behind her.\", \" She picks up her iron and begins to iron a pair of pants as the girl plays with a dress, and the woman has left the iron resting on the clothing.\", \" She irons the dress for the girl as she watches.\"]}, \"v__HIJu_hNweY\": {\"duration\": 150.05, \"timestamps\": [[0, 48.02], [46.51, 107.28], [103.53, 144.05]], \"sentences\": [\"Three girls are seen standing on a cliff hitting a birdie to one another.\", \" The camera pans around their movements as they hit the birdie around.\", \" The girls continue to hit the birdie around and showing off their butts in the end.\"]}, \"v_H_xL4tssqEU\": {\"duration\": 116.82, \"timestamps\": [[0, 11.1], [11.1, 114.48], [22.2, 27.45]], \"sentences\": [\"A woman knits and shows her work.\", \" Women are knitting while sitting in a circle and talking each other.\", \" A reporter talks in the room where the women knits.\"]}, \"v_K_0DLTcFy-8\": {\"duration\": 180.47, \"timestamps\": [[0, 32.48], [32.48, 127.23], [127.23, 180.47]], \"sentences\": [\"A man with a thick mustache is dressed in winter clothing is sitting on a white bucket turned upside down on a frozen body of water as he drinks a beer from a blue can and talking.\", \"The man then picks up his fishing pole and pulls on the fishing wire that's in the fishing hole in front of him,holds the wire up, then puts it back in the hole while he's still talking.\", \"The man then gets off of his bucket and while on his two knees he puts his fingers in and out of the fishing hole and keeps talking.\"]}, \"v_bJkemB0CcKo\": {\"duration\": 110.13, \"timestamps\": [[0, 17.07], [17.07, 62.23], [69.38, 110.13]], \"sentences\": [\"A man talks to the camera smiling and transitions to him holding a pan and spreading butter into it.\", \" He pours egg into the pan and pushes it around with several vegetables.\", \" He finishes by putting the omelet onto a plate and eating one big bite.\"]}, \"v_EeUkryzfwYk\": {\"duration\": 139.67000000000002, \"timestamps\": [[0, 5.59], [5.59, 10.48], [10.48, 51.68], [51.68, 98.47], [98.47, 120.81], [120.81, 139.67]], \"sentences\": [\"An animated intro screen has a lot of little Christmas pictures moving on it and white words appear that say \\\"Decorating The Christmas Tree\\\".\", \" The same animation continues to play and the white words now appearing are \\\"With Me,  My Sis, Mom & Chris\\\".\", \" In fast motion, there are people in a residential home and they are winding strings of white Christmas tree lights around a very full and grown tree.\", \"When they are done with the lights, the begin to decorate the tree with ornaments until it's all filled with ornaments.\", \"The camera is picked up and the man is now attempting to put a white star on the top of the tree while children are hanging around and talking.\", \"The star is now on the tree, the camera is put back down, one of the girl hugs the tree.\"]}, \"v_ceDvPX6hP_U\": {\"duration\": 142.39, \"timestamps\": [[0, 13.53], [18.51, 111.06], [116.04, 142.39]], \"sentences\": [\"A man is standing inside a gym as he speaks to the camera.\", \" He indicated a blue block on the ground before stepping over it and kneeling on top of it.\", \" He begins pulling the cord on the equipment, showing how it is used.\"]}, \"v_lvlVfgZ53NQ\": {\"duration\": 67.29, \"timestamps\": [[0, 7.74], [8.75, 51.14], [53.16, 67.29]], \"sentences\": [\"A man is talking behind a bar, standing in front of numerous alcohol bottles.\", \" He pours liquids over a glass filled with ice.\", \" He then garnishes the final product for serving.\"]}, \"v_z-1HUIQFGIg\": {\"duration\": 175.03, \"timestamps\": [[9.63, 19.25], [21, 70.01], [72.64, 89.27], [112.9, 136.53], [130.4, 142.65], [143.53, 170.66]], \"sentences\": [\"Karate students play standing and hand held drums in a studio.\", \" Karate students jump over the top of a rope held by other students on a mat.\", \" The group of karate students practices punches standing in a line.\", \" A group of younger student practice sparring against opponents.\", \" The groups spin each other in circles holding each others hands.\", \" The group stands in a circle and jump up and down together while watching the instructor.\"]}, \"v_q2TF-3bWZuU\": {\"duration\": 134.26, \"timestamps\": [[0, 20.81], [24.84, 51.02], [53.7, 109.42], [112.11, 134.26]], \"sentences\": [\"A woman is talking as she stands outside horse stables.\", \" She talks as a client is riding one of her horses in a dirt field.\", \" She discusses the form and positioning of the rider.\", \" The rider takes the horse around for a trot while the woman watches.\"]}, \"v_wdsZn1Yu_5M\": {\"duration\": 119.21000000000001, \"timestamps\": [[0, 9.54], [10.13, 68.55], [72.72, 119.21]], \"sentences\": [\"A blonde woman is speaking in a news room in front of a large screen.\", \" Boats are seen pulling people on water skis.\", \" A man is shown preparing and then skiing through the water.\"]}, \"v_rBMQFpHspmo\": {\"duration\": 144.31, \"timestamps\": [[0, 17.32], [15.15, 93.8], [85.14, 125.55]], \"sentences\": [\"Several people are seen wandering around an indoor field with one pole volting over a bar.\", \" The same shot is shown again in slow motion as well as several other attempts the boy makes.\", \" He attempts the jump several more times while people watch him on the sides.\"]}, \"v_V1AqyQ3qaQY\": {\"duration\": 197.02, \"timestamps\": [[0, 8.87], [14.78, 39.4], [43.34, 197.02]], \"sentences\": [\"A man is standing next to a pond.\", \" He loads an arrow in the bow.\", \" He shoots the arrow at a ceramic cat, knocking it into the water before moving on to other targets.\"]}, \"v_4Dj7wOTfyH4\": {\"duration\": 192.17, \"timestamps\": [[0, 102.81], [69.18, 146.05], [95.12, 190.25]], \"sentences\": [\"A woman is seen walking into frame and speaking to the camera.\", \" She sits down on boxes while holding others up and begins laying tiles down on the floor.\", \" She picks others up while speaking to the camera followed by vacuuming the floor and a child playing along.\"]}, \"v_1G5cu1NvDFw\": {\"duration\": 43.19, \"timestamps\": [[1.51, 22.89], [17.92, 41.68]], \"sentences\": [\"A young child is seen running around a back yard on a large set of stilts.\", \" The boy continues bouncing around as the camera captures him as well as running.\"]}, \"v_LHjmL7Pg_80\": {\"duration\": 230.97, \"timestamps\": [[0, 34.65], [34.65, 105.09], [105.09, 167.45], [167.45, 230.97]], \"sentences\": [\"Boys are running on a field playing a game of soccer.\", \" Then they are are playing professional on an indoor court while an audience watches.\", \" They show many different clips from many different games, like a memoir of videos.\", \"Number 12 is the basis of them all, he seems to be a very great soccer player.\"]}, \"v_eGl_I8h832w\": {\"duration\": 73.23, \"timestamps\": [[0.37, 17.21], [17.57, 51.26], [48.7, 71.4]], \"sentences\": [\"A young girl is seen speaking to the camera and looking off into the distance.\", \" She continues speaking and leads into a woman cutting her hair.\", \" She hands the girl her hair and shows off her cut in the end.\"]}, \"v_dD3eR9Sb1x0\": {\"duration\": 208.07999999999998, \"timestamps\": [[0, 10.4], [14.57, 60.34], [78.03, 208.08]], \"sentences\": [\"Multiple colors and designs flash across the screen.\", \" Women gather onstage as they are about to perform.\", \" The women dance and jump, leading a zumba routine.\"]}, \"v_fJEXzQ0L1uU\": {\"duration\": 185.02, \"timestamps\": [[0, 52.73], [43.48, 147.09], [146.16, 185.02]], \"sentences\": [\"Various shots of signs are shown as well as people walking around a field and getting ready for events.\", \" Many people are interviewed for the camera and show people waving and getting ready on the sides.\", \" People wave to the camera and stand around holding signs while more speak to the camera and show games of hopscotch.\"]}, \"v_E_6XYa_WO8I\": {\"duration\": 131.46, \"timestamps\": [[0, 59.16], [59.82, 69.67], [69.67, 131.46]], \"sentences\": [\"A man starts chopping a piece of wood with an ax.\", \" He picks the wood back up and throws it into a pile.\", \" He picks up a new piece of wood and chops that one.\"]}, \"v_WjEh7acrr5o\": {\"duration\": 12.48, \"timestamps\": [[0.25, 5.99], [4.43, 12.05]], \"sentences\": [\"A woman is seen sitting in a chair knitting thread while the camera watches her.\", \" The woman continues to knit while stopping to look at the camera and make faces.\"]}, \"v_GhVERbQMZWQ\": {\"duration\": 142.78, \"timestamps\": [[19.99, 24.27], [34.27, 37.12], [60.68, 66.39]], \"sentences\": [\"A hummer backs a boat down a ramp.\", \" A person is wake boarding behind the boat.\", \" People are sitting on the boat.\"]}, \"v_80pIiAmVa5Q\": {\"duration\": 43.84, \"timestamps\": [[0, 6.14], [7.23, 13.37], [14.25, 43.84]], \"sentences\": [\"A woman is seated at the bottom of a slide.\", \" She is adjusting her camera.\", \" A child slides down the slide, running into her from behind.\"]}, \"v_GZjNt2TsChs\": {\"duration\": 64.55, \"timestamps\": [[0, 23.24], [24.85, 64.55]], \"sentences\": [\"A young child is seen climbing up a playground and then going down a slide.\", \" She goes back to the top again followed by another go down the slide and back to the stairs again.\"]}, \"v_yRswMXWCcrI\": {\"duration\": 131.03, \"timestamps\": [[0, 25.55], [25.55, 53.07], [53.07, 93.03], [93.69, 129.72]], \"sentences\": [\"A person stands on a hill covered wit snow, then the person ski down the hill and fall.\", \" A skier comes down a hill makes a jump over stones and falls and rolls on the snow.\", \" Then, other man skies on the hill and flat areas covered with snow.\", \" Also, skiers makes a flip  from in the air while other people watch.\"]}, \"v_fYIr-1aIHmA\": {\"duration\": 117.03, \"timestamps\": [[0, 2.93], [2.93, 14.63], [14.63, 44.47], [43.3, 53.83], [53.25, 105.33], [105.33, 117.03]], \"sentences\": [\"We see a black screen and the title.\", \" We see a boy holding onto to a pole being pulled by a boat.\", \" He gets on his feet and skis.\", \" The boy loses his balance and fall off the pole entirely.\", \" A girl is next to hold onto the bar of the boat.\", \" The girls looks at the camera before she looses her footing and falls off the bar.\"]}, \"v_2EQMXueAmCA\": {\"duration\": 27.28, \"timestamps\": [[0, 27.28], [6, 12.14], [24.42, 27.28]], \"sentences\": [\"Two men play squash on an indoor court.\", \" The left man in the white shirt misses the ball and the start over.\", \" We see the man in the gray shirt miss the ball land stands up and pumps his fist while looking disappointed.\"]}, \"v_5Owjrx-YjjM\": {\"duration\": 72.89, \"timestamps\": [[6.92, 17.13], [17.13, 39.72], [39.72, 61.23], [61.23, 69.97]], \"sentences\": [\"A little girl is sitting on the porch floor with her dad as he puts together a blue butterfly kite for her.\", \" After he's done completing the kite, they go out in the open to fly the kite.\", \" The father is holding the kite in his hand as the wind blows strongly.\", \" The girl holds the string of the kite and begins flying the kite high up in the air.\"]}, \"v_JXvPFMjtbcw\": {\"duration\": 227.19, \"timestamps\": [[0, 227.19], [61.34, 72.7], [13.63, 54.52], [184.02, 186.29]], \"sentences\": [\"A chef explains how to cook an omelette with vegetables and spices, Then, the chef take a dish and serves the omelette with  lettuce and lemon.\", \" A man and a woman pass behind the chef in the restaurant.\", \" Another man sit in a table, stand and walk away.\", \" Another person enters the restaurant and turns left.\"]}, \"v_FhGOGbL-A84\": {\"duration\": 47.95, \"timestamps\": [[0, 24.93], [26.13, 47.95]], \"sentences\": [\"A little boy is in a yard, using a leaf blower.\", \" A little girl soon joins him, raking leaves.\"]}, \"v_MIE0KbGIXjM\": {\"duration\": 119.28, \"timestamps\": [[0, 26.24], [24.45, 79.32], [63.22, 113.32]], \"sentences\": [\"A man is seen bent over washing his hands when another man walks out and speaks to him.\", \" The other man then begins washing his hands with soap under the faucet while the other man watches.\", \" He finishes washing while the other man leaves and cues to a third man walking out of the stall.\"]}, \"v_5Qj8hHmZbiI\": {\"duration\": 94.97, \"timestamps\": [[0, 94.97], [46.54, 94.97], [83.57, 84.52]], \"sentences\": [\"People are playing beer pong at a party.\", \" People are drinking drinks from the table.\", \" A glass of beer is shown.\"]}, \"v_Ck5i8CVEkJI\": {\"duration\": 131.66, \"timestamps\": [[0, 23.7], [23.7, 80.97], [79.65, 123.76]], \"sentences\": [\"A man is seen throwing a dart onto a board and leads into a woman speaking.\", \" The man throws several more darts while taking the time to speak to the woman.\", \" More people are shown throwing dart while the two continue to speak and the man points to the board.\"]}, \"v_oMegp6a547Q\": {\"duration\": 117.7, \"timestamps\": [[1.18, 45.9], [39.43, 97.1], [64.15, 115.35]], \"sentences\": [\"The camera pans around several groups of people are seen performing martial arts around one another as well as people walking around and watching.\", \" Many shots are shown of people dancing and singing as well as performing martial arts in the streets and helping one another.\", \" People are seen playing instruments, reading the the news, and performing martial arts all around the street.\"]}, \"v_j1QaZ7YWcJ8\": {\"duration\": 155.07999999999998, \"timestamps\": [[0, 152.75], [72.89, 75.21], [153.53, 155.08]], \"sentences\": [\"A person plays tam-tam inside a room, the man mainly plays on the tam- tam on front hum.\", \" A hand pass on front the screen.\", \" The person extend her arm over the tam-tam.\"]}, \"v_0RUs80IYF38\": {\"duration\": 29.63, \"timestamps\": [[0, 7.56], [7.56, 26.67], [26.67, 29.63]], \"sentences\": [\"A man jumps off of the brown horse and he lassos the bull to the ground in the beginning.\", \" Then he gets on another horse and he lassos a bull bigger than the last one to the ground.\", \" When he's done tying the bull's legs together, he gets up and walks away.\"]}, \"v_Rn_frSrkkbM\": {\"duration\": 61.39, \"timestamps\": [[0, 61.39], [0, 27.63], [27.63, 49.42], [49.42, 61.39]], \"sentences\": [\"A cricket game is being played between two teams in front of a crowd of people.\", \" The first play is made and the commentators narrate the play.\", \" Then, a replay of the previous play is started while the commentators narrate it.\", \" The camera cuts to a man laughing at a mistake made in the play.\"]}, \"v_ahY7nqwwJEg\": {\"duration\": 140.81, \"timestamps\": [[3.52, 67.59], [47.87, 137.99]], \"sentences\": [\"The video leads into several clips of people performing skateboarding tricks out in public places.\", \" Many more clips are shown of people riding around on skateboards doing flips and tricks.\"]}, \"v_wS_T-RMSSCE\": {\"duration\": 60.28, \"timestamps\": [[0, 12.36], [12.36, 42.5], [42.5, 60.28]], \"sentences\": [\"elephant is walking in a small water well playing with a ball.\", \" woman is talking in the camera and the elephant is again in the water well playing with the ball.\", \"  little elephant is playing with a big blue ball.\"]}, \"v_1izVZnE0l7k\": {\"duration\": 208.37, \"timestamps\": [[0, 30.21], [38.55, 183.36], [190.65, 208.37]], \"sentences\": [\"A girl is standing at a sink, washing dishes and playing in the water.\", \" She smiles as she rinses a plastic bowl.\", \" She walks over to the camera talking and laughing before leaving the room with her brother.\"]}, \"v_nHuu6aInr1w\": {\"duration\": 190.13, \"timestamps\": [[0, 3.8], [4.75, 11.41], [15.21, 176.82], [44.68, 81.75], [81.75, 125.48], [143.54, 168.26], [181.57, 190.13]], \"sentences\": [\"We see an opening title screen.\", \" A man puts a pile of marshmallows in his mouth.\", \" A man make a campfire and tips flash on the screen.\", \" The man digs a hole put rocks around it and gather firewood.\", \" He puts the wood in a triangle in the pit and logs on the outside.\", \" The man lights the fire and adds a few more pieces of wood.\", \" We see the ending title screen.\"]}, \"v_BYLxSOPFOuc\": {\"duration\": 489.38, \"timestamps\": [[0, 2.45], [2.45, 19.58], [19.58, 78.3], [78.3, 107.66], [107.66, 168.84], [107.66, 261.82], [261.82, 278.95], [278.95, 489.38]], \"sentences\": [\"man is standing in front of a mirror holding a camera.\", \" woman enters in the bathroom carying a white cat and the man kneels so the cat can stands on his back.\", \" the woman leaves the bathroom and the man keeps recording himself making poses in front of the camera and talking to himself in the mirror.\", \" the man enters in the bedroom and the woman is sitting in the bed holding the cat.\", \" man is in the bathroom again holding a knife and the woman enters in the room with a back scarf around her head.\", \" they are driving the car and are parked in snowy parking lot.\", \" they eners in a restaurant and leaves and walks to the car again.\", \" the woman gets into the car and the man opens the door and grabs a little brush and cleans the windshield and the woman do the same and plays with the man.\"]}, \"v_NaTBiY3G3zc\": {\"duration\": 212.14, \"timestamps\": [[0, 103.95], [82.73, 212.14]], \"sentences\": [\"A woman is seen pushing a puck along the ice with others followed by a man speaking to the camera.\", \" More clips are shown of people curling on the ice while the man continues to speak to the camera and the game is shown in slow motion.\"]}, \"v_m_sBF4vLRRc\": {\"duration\": 91.78, \"timestamps\": [[0, 14.68], [14.68, 28.45], [28.45, 91.78]], \"sentences\": [\"woman is wearing a red shirt and is standing talking to the camera in a white room.\", \" woman start dancing salsa steps on a wooden court.\", \" the woman is doing samba steps shaking her body side to side.\"]}, \"v_XkOO6lc5vxw\": {\"duration\": 70.43, \"timestamps\": [[0, 5.28], [7.39, 13.73], [14.79, 29.58], [30.28, 39.44], [39.44, 47.19], [47.89, 52.82], [53.17, 70.43]], \"sentences\": [\"An intro shows off a hedge trimmer.\", \" A woman beings to speak about the hedge trimmer.\", \" The product is shown in action, trimming a bush.\", \" The woman shows off the blade, and charger.\", \" We see the product in use again.\", \" The woman shows the comfort grip.\", \" The woman talks about how to order the product.\"]}, \"v_O0nOzufJ_OM\": {\"duration\": 181.21, \"timestamps\": [[0, 19.93], [20.84, 39.87], [41.68, 51.64], [52.55, 91.51], [92.42, 115.97], [116.88, 135.91], [136.81, 167.62], [169.43, 178.49]], \"sentences\": [\"A compilation/tribute video for a Hungarian discus throwing Olympian begins with some pictures of him in action.\", \" An attempt with him twirling rapidly begins and the discus launches.\", \" More photos play, showing the competitor in different positions.\", \" Two straight attempts featuring a powerful spin result in the the discus flying far both times.\", \" This is followed by more photos.\", \" Another attempt plays, followed by another slate of photos.\", \" The next attempt occurs in front of a large green net, the discus is launched like a rocket and the thrower celebrates.\", \" Another set of photos close the montage.\"]}, \"v_IZXFAoiSj0c\": {\"duration\": 72.42, \"timestamps\": [[0, 17.38], [17.02, 72.42]], \"sentences\": [\"A female athlete is in a field and she begins to throw a shot put.\", \"The lady spins and spins in slow motion as words are shown at the top describing each phase needed to throw a shot put successfully.\"]}, \"v_AXDa8WmY2og\": {\"duration\": 228.92000000000002, \"timestamps\": [[0, 48.07], [48.07, 86.99], [86.99, 117.89], [117.89, 228.92]], \"sentences\": [\"A Shih Tzu dog is standing on a table being groomed by an elderly Asian woman.\", \"Once she is done with the top,the lady the grabs the dog front left paw and takes a pair of scissors and begins trimming underneath his body.\", \"Once the belly is done,the goes to the top of the dogs head and cuts the hair around the face and clips the rest of the hair behind him.\", \"The next step consist of her trimming the hair under the dog's mouth.\"]}, \"v_PWw-DAcSszM\": {\"duration\": 159.77, \"timestamps\": [[0, 157.37], [14.38, 85.48], [76.69, 100.65], [156.57, 159.77]], \"sentences\": [\"We see a man slowly performing Tai Chi.\", \" A white banner streams across the bottom.\", \" The man lifts his legs up in front of him then kicks out.\", \" The man stops and stands still.\"]}, \"v_bsl3oM4svdQ\": {\"duration\": 49.27, \"timestamps\": [[0, 14.29], [15.27, 49.27]], \"sentences\": [\"A woman is seen pulling a piece of exercise equipment while struggling to get it to move.\", \" She moves the mat underneath her and then is able to pull the bar back and fourth towards her.\"]}, \"v_lXTcGMN9I8g\": {\"duration\": 29.75, \"timestamps\": [[0, 29.75], [0, 23.05], [23.05, 29.75]], \"sentences\": [\"A young man at an outdoor festival is doing tightrope tricks in front of a crowd.\", \"  The young man does various bouncing and balancing tricks on a tight rope a few feet above black mats.\", \" The gets off the rope and walks on the mats off the floor and towards his group.\"]}, \"v_Jbl0E75cx8o\": {\"duration\": 128.01, \"timestamps\": [[0, 74.89], [46.08, 117.13]], \"sentences\": [\"A woman is seen sitting in a chair while a man uses various tools to pierce her ear.\", \" The man finishes the piercing and the girl begins to turn in the end.\"]}, \"v_cnFw7hjmqJY\": {\"duration\": 120.51, \"timestamps\": [[0, 19.88], [19.88, 28.92], [28.92, 54.83], [54.83, 120.51]], \"sentences\": [\"man is standing in a court in front of kids and is walking showing how to score a basket.\", \" man throw the ball with someone in the other side of the court and make a lay up and the kids behind him in the court do the same.\", \" the coach os hlping the girl to catch the ball and run.\", \"the kid make a throw and then score a basket adn the kids behind her keeps doing the same.\"]}, \"v_84x9A9xyLcE\": {\"duration\": 111.46000000000001, \"timestamps\": [[2.79, 7.24], [7.8, 11.7], [12.26, 18.39], [19.5, 111.46]], \"sentences\": [\"The sun rises over the hills.\", \" A man in shorts walks around.\", \"  He grabs his board and places it into the water.\", \" The man climbs the board and surfs.\"]}, \"v__AaSNARQPfE\": {\"duration\": 200.74, \"timestamps\": [[0, 12.04], [13.05, 94.35], [13.05, 200.74], [99.36, 167.62]], \"sentences\": [\"A man picks up a weight over his head and drops it on the ground.\", \" A man picks up a bar and raises it several times.\", \" A man in a black shirt is standing next to him.\", \" Another man stands next to him and lifts a bar with him.\"]}, \"v_3sAcnQxBchE\": {\"duration\": 67.52, \"timestamps\": [[0, 22.28], [23.63, 67.52]], \"sentences\": [\"A camera pans around a woman sitting in a chair smoking a cigarette.\", \" She speaks to the camera while continuing to smoke and ends by spreading her legs.\"]}, \"v_6k5m4u5AchQ\": {\"duration\": 157.66, \"timestamps\": [[0, 115.88], [3.94, 10.25], [11.04, 88.29], [15.77, 68.58], [79.62, 108], [103.27, 116.67], [115.09, 120.61], [127.71, 145.05], [141.11, 155.3]], \"sentences\": [\"There are two camping out in the winter for an ice fishing trip.\", \" One of the men comes out of his camping tent with a fish in his hand.\", \" The two men are sitting in their make shift tent, fishing through a hole in the frozen lake.\", \" They are patiently sitting with their fishing rods till they fish out mid size fish from the holes.\", \" They show the kind of fish they have found as they lay it out on the frozen ground.\", \" One of the men cleans the fish scales.\", \" Then they cut the fish into small pieces and clean them up outside their garage.\", \" They sharpen the knife to slice the fish to prepare batter covered fried fish.\", \" The entire family sits together on a large dinning table and enjoy a delicious fried fish meal.\"]}, \"v_7OZHg_OOfxw\": {\"duration\": 175.01, \"timestamps\": [[0, 9.63], [9.63, 175.01]], \"sentences\": [\"boys and girls are stading in a court practicing cheerleaders choreography and a woman is talking in a studio on news.\", \" high scoo musical scene is show and a man practicing is being interviewed and scenes of bring it on is showed.\"]}, \"v_jzBR9ihZBbI\": {\"duration\": 223.79, \"timestamps\": [[0, 15.67], [16.78, 85.04], [97.35, 196.94], [198.06, 205.89], [210.37, 223.79]], \"sentences\": [\"A man is talking in front of a couple of graphs.\", \" She demonstrates the technique with his racquet.\", \" He then goes into a room, and plays a game of racquetball with a man.\", \" They hit the ball back and forth against the wall.\", \" When they are done, he walks out and discusses it some more.\"]}, \"v_b3bawTEPLtA\": {\"duration\": 187.43, \"timestamps\": [[9.37, 44.05], [40.3, 149.01], [119.96, 187.43]], \"sentences\": [\"A ballerina is seen swirling in a room and leads into the woman speaking to the camera and performing several ballet moves.\", \" She stands at the barre and then on her own to demonstrate how to properly perform ballet moves.\", \" She moves her arms up and down as well as her legs and continuously speaking to the camera.\"]}, \"v_K-kJ-0nkKZk\": {\"duration\": 130.15, \"timestamps\": [[0, 29.28], [29.93, 89.15], [89.15, 130.15]], \"sentences\": [\"A set of hands are seen putting brush into a stack of sticks and then places cotton in the pile.\", \" He then lights a match and creates a fire and then bends over the fire to put more in.\", \" The camera closes in on the pit and is seen placing logs around the side.\"]}, \"v_cvatsuUhqhk\": {\"duration\": 212.3, \"timestamps\": [[3.18, 212.3], [9.55, 212.3], [50.95, 210.18], [50.95, 212.3]], \"sentences\": [\"Two men are playing Foosball in a dark room.\", \" They compete intensely at a fast pace.\", \" The man of the red team wins all four times.\", \" Every time when he wins, he does a little cheering dance.\"]}, \"v_ZOeQh2-ci3M\": {\"duration\": 138.07, \"timestamps\": [[10.35, 24.85], [24.85, 29.68], [42.8, 51.77], [55.23, 62.13], [68.34, 95.27], [96.65, 109.07], [120.12, 128.4]], \"sentences\": [\"A person uses the toilet in a stall.\", \" The man leaves the bathroom without washing his hands.\", \" The man eats from food dishes using his hands.\", \" A woman plays with the dogs.\", \" A person washes their hands in a sink using foam soap.\", \" The person uses a paper towel to dry off his hands.\", \" A person washes their hands in a stainless steel sink.\"]}, \"v_76tyabobb_0\": {\"duration\": 60.51, \"timestamps\": [[0, 18.46], [18.15, 21.78], [40.24, 44.48], [58.09, 60.51]], \"sentences\": [\" A messy kid is eating an ice cream cone.\", \" He bites the parents ice cream cone.\", \" The parent adjusts the cone for the child.\", \" The parent wipes ice cream from the child's face.\"]}, \"v_QJm_B5Hx4DI\": {\"duration\": 200.82999999999998, \"timestamps\": [[0, 200.83], [0, 34.14], [33.14, 46.19], [46.19, 84.35], [84.35, 108.45], [108.45, 148.61], [148.61, 157.65], [157.65, 167.69], [166.69, 200.83]], \"sentences\": [\"An employee of the beach patrol is talking about how to have a safe day at the beach.\", \" Sunscreen is addressed and he overviews how and why to apply sunscreen properly.\", \" Sunscreen SPF value is addressed with a slide on how to pay attention to the proper SPF.\", \" He addresses the negative impacts of sunburns, especially with children.\", \" He then talks about different types of specialty sunscreen to ensure you are safely covered.\", \" Children sunscreen safety is then talked about and how to properly protect your kids.\", \" He then discusses what to do when a sunburn does occur, how to handle it to take care of your skin.\", \" A slide is shown to make us aware of when a sunburn is bad and needs medical attention.\", \" He then takes another overview of how to use sunscreen to make your day enjoyable.\"]}, \"v_EJxWhTE_ZeE\": {\"duration\": 205.88, \"timestamps\": [[0, 70], [57.65, 165.74], [162.65, 205.88]], \"sentences\": [\"Several clips of boxes are shown as well as people moving around a stage and an audience watching.\", \" The video leads into several people washing windows as quickly as they can while many watch them on the side.\", \" Many men speak to the camera as well as people announcing the scores and more window washing taking place.\"]}, \"v_mgmwdQixDXY\": {\"duration\": 177.61, \"timestamps\": [[0, 15.1], [15.1, 39.07], [39.07, 71.93], [71.93, 111.01], [111.01, 177.61]], \"sentences\": [\"woman is showing her nails with a cute manicure and some polishes behind her hand.\", \" woman is holding a pink polish and start painting her nail.\", \" and with a little sponge and a little pin paint the nail with white blue and purple paint.\", \" with a small bush put som wwhite dots and clean the nail.\", \" woman cut a red paper and paint with frosty gray polish.\"]}, \"v_tPiuksisb4E\": {\"duration\": 165.23, \"timestamps\": [[3.3, 43.79], [43.79, 92.53], [92.53, 125.58], [125.58, 154.49], [154.49, 165.23]], \"sentences\": [\"There is a hookah placed on a kitchen counter.\", \" A man wearing a black sleeveless shirt comes there and kneels down to begins smoking the hookah.\", \" He smokes the hookah and blows out smoke.\", \" He takes a few puffs of the hookah and exhales the smoke out.\", \" He continues smoking by taking long puffs of the hookah and then leaves.\"]}, \"v_Qv0fN5A1vp4\": {\"duration\": 28.49, \"timestamps\": [[0.43, 8.69], [8.83, 20.37], [21.37, 26.92]], \"sentences\": [\"A close up of a bag is seen followed by a woman looking in the camera.\", \" She holds up a phone and speaks into the mirror.\", \" Finally she jumps up and down a bit and ends by turning off the camera.\"]}, \"v_9mF5s6_dTlk\": {\"duration\": 130.39, \"timestamps\": [[0, 19.56], [20.21, 41.73], [42.38, 69.11], [71.06, 124.53], [125.18, 125.83], [127.13, 130.39]], \"sentences\": [\"A man in a crowded garage with lots of tools speaks to the camera as he holds a piece of paper.\", \" He taps a paper, continuously, on a iron type tool and brushes the paper against a long piece of wood.\", \" He puts down the piece of paper and takes the iron tool straight to the piece of wood.\", \" He picks up a paper towel and presses the iron against the piece of wood with one hand while using the other hand to drag a paper towel over the ironed areas of the board.\", \" He places the iron down.\", \" He takes the paper towel and quickly cleans the piece of wood.\"]}, \"v_5Fq-ln3yC38\": {\"duration\": 127.71, \"timestamps\": [[0, 17.24], [17.88, 24.9], [25.54, 47.89], [48.53, 69.6], [70.24, 87.48], [88.12, 99.61], [102.81, 125.79]], \"sentences\": [\"A man pours a liquid onto a table.\", \" With the use of a paintbrush, he covers the table with the liquid.\", \" He removes varnish from the top of the table.\", \" Afterwards, he does a light sanding of the table.\", \" With a tack rug, he removes the dust.\", \" Wearing gloves, he applies a stain to the table.\", \" Finally, he polishes the table and shows off his end result.\"]}, \"v_E4oP6Ex9IPo\": {\"duration\": 161.61, \"timestamps\": [[0, 25.86], [26.67, 56.56], [58.18, 151.91], [151.91, 161.61]], \"sentences\": [\"A man is holding a yellow iron sitting on top of a box.\", \" He melts a bar of was on the bottom of the hot iron.\", \"He then irons over the wax that dripped down onto a ski.\", \" He finishes and sets the iron down.\"]}, \"v_5Y4YkCkgShc\": {\"duration\": 193.89, \"timestamps\": [[0, 5.82], [7.76, 18.42], [13.57, 15.51], [19.39, 42.66], [19.39, 87.25], [88.22, 89.19], [93.07, 104.7], [102.76, 122.15], [131.84, 141.54], [141.54, 161.9], [163.83, 186.13], [187.1, 191.95]], \"sentences\": [\"A nighttime view of a city is shown through a window.\", \" A man in a chef's coat is standing in a kitchen talking to the camera.\", \" A pancake is shown with syrup being poured on it.\", \" Ingredients are placed in a bowl.\", \" The man cracks an egg and whisks the ingredients in a bowl.\", \" A ladle is shown next to the bowl.\", \" The man ladles the pancake batter onto the griddle.\", \" The man flips the pancakes.\", \" The pancake is placed on a plate and syrup is poured on it.\", \" The man is shown eating a piece of the pancake.\", \" The man continues talking to the camera while holding a piece of pancake.\", \" A television studio is shown.\"]}, \"v_aSYCOvkN5uk\": {\"duration\": 108.95, \"timestamps\": [[0, 77.35], [77.9, 98.05], [98.6, 108.95]], \"sentences\": [\"A young man with Downs Syndrome bowls.\", \"  Another young man throws a bowling ball.\", \"  The first young man celebrates after a successful throw.\"]}, \"v_ruHRz56XGE4\": {\"duration\": 43.63, \"timestamps\": [[0, 5.24], [5.45, 22.25], [22.25, 43.63]], \"sentences\": [\"A man mows the grass around a tree.\", \" The man gets stuck and the mower turns off, and the man has to pull the igniter.\", \" Then, the man continues cutting the grass around the tree.\"]}, \"v_COIwJdDOmcc\": {\"duration\": 199.25, \"timestamps\": [[0, 39.85], [39.85, 149.44], [149.44, 199.25]], \"sentences\": [\"man is standing in front of a gray car in a workshop changing a car wheel and talking to te camera.\", \" first the man grab an hiyraulic jack and put it under the car, unscrew the bolts wit a wheel brace and pulls out the wheel and mount the new one, put the screws back again with the wheel brace and tightens.\", \" man talking in front of the car and giving recomendations.\"]}, \"v_Kv-A_H9TXug\": {\"duration\": 91.63, \"timestamps\": [[0.92, 12.37], [13.29, 19.24], [19.7, 75.59], [76.51, 83.38], [84.3, 90.25]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy sits on the floor and speaks.\", \" The guy lays down and does sit ups.\", \" The guy goes back to the sitting position.\", \" The credits of the video and an image are shown.\"]}, \"v_MeHEDK_Y8sE\": {\"duration\": 149.31, \"timestamps\": [[0, 10.45], [11.2, 50.76], [50.02, 74.65], [74.65, 115.71], [115.71, 123.92], [123.92, 149.31]], \"sentences\": [\"A female Caucasian is sitting in a chair spinning around showing off her long blonde hair style,it is pinned to the right and has curls in the bottom.\", \"On the next screen,a woman begins grabbing the bottom and rolling it from the bottom up to about three inches and seals it with a piece of foil.\", \"Once the hair is folded up in a the foil,the lady takes a flat iron and runs it over the foil.\", \"As the next scene comes,the lady is pictured with eight foiled curls in her head that are sealed with long hair pins.\", \"The next step is to then remove the pins  followed by the foil and release the curls.\", \"Finally,the style is completed and she is spun around once more to show the finished product.\"]}, \"v_AahkhvTAXwg\": {\"duration\": 106.16, \"timestamps\": [[0, 31.85], [36.1, 82.28], [84.93, 106.16]], \"sentences\": [\"a woman walks onto a blue lit stage.\", \" She starts flipping back and forth on the stage.\", \" She is spinning and twirling a baton while she performs before disappearing.\"]}, \"v_ZT_gv2W65Zc\": {\"duration\": 28.79, \"timestamps\": [[0, 4.32], [4.32, 18.14], [18.14, 28.79]], \"sentences\": [\"A woman brushes her hair with her hand.\", \" The woman combs her hair with a comb.\", \" The combing is shown in slow motion.\"]}, \"v_IC61TQ-sd8o\": {\"duration\": 159.45, \"timestamps\": [[0, 159.45], [1.59, 159.45]], \"sentences\": [\"boys and girls are in stage doing a cheerleader choreography in a competiion while people in stands are watching them.\", \" men wearing black uniforms are standing behind the cheer team.\"]}, \"v_n637bl2-DDo\": {\"duration\": 61.09, \"timestamps\": [[0, 12.52], [13.75, 27.49], [29.32, 39.4], [40.93, 60.48]], \"sentences\": [\"A man talks in front of an office building.\", \" The man enters the building and walks up the staircase.\", \" The man enters the gym room.\", \" People ride on stationary bikes and watch a television in the gym.\"]}, \"v_byVhCu3KH1g\": {\"duration\": 78.41, \"timestamps\": [[3.92, 12.15], [12.55, 33.33], [34.5, 38.42], [22.35, 30.19], [39.21, 72.93]], \"sentences\": [\"Shoe polish supplies in a store, then people in a classroom get instructions about shoe polish.\", \" The teacher demonstrates to polish a boot using a tissue.\", \" Then, a girl polish the shoe of a woman using a cloth.\", \" A person takes pictures and a cameraman film.\", \" After, people practice shoe polish in group.\"]}, \"v_oHOR69nFt-4\": {\"duration\": 214.18, \"timestamps\": [[0, 6.43], [6.43, 192.76], [16.06, 108.16], [112.45, 178.84], [182.05, 195.98], [195.98, 214.18]], \"sentences\": [\"We see the opening screen on orange.\", \" A lady is cooking in a kitchen.\", \" The lady pours ingredients into a bowl and stirs.\", \" The lady stirs an egg mixture and mixes it in with her original bow.\", \" She puts it in a glass pan and puts the pan in the oven.\", \" We then see the finished product.\"]}, \"v__-_SwG4EnRU\": {\"duration\": 23.85, \"timestamps\": [[0, 23.85], [2.62, 23.85], [4.05, 23.85]], \"sentences\": [\"A woman is standing in a kitchen.\", \" She begins dancing in the kitchen.\", \" She starts mopping the floor while she's dancing.\"]}, \"v_0Q9RHSEFeMI\": {\"duration\": 166.57999999999998, \"timestamps\": [[0, 166.58], [2.5, 166.58], [164.08, 166.58]], \"sentences\": [\"People are working out in a gym.\", \" They are stepping up and down off of black step stools.\", \" They raise their hands and stop dancing.\"]}, \"v_m3SlyuAh1Wk\": {\"duration\": 184.74, \"timestamps\": [[0, 44.34], [44.34, 149.64], [112.69, 177.35]], \"sentences\": [\"A close up of leaves are shown followed by a woman raking them and speaking to the camera.\", \" The woman continues raking while speaking to the camera back and fourth.\", \" She shows her piles as well as the clean lawn while still speaking to the camera.\"]}, \"v_Pmt3R5olRP0\": {\"duration\": 32.69, \"timestamps\": [[0, 8.17], [9.15, 26.65], [25.83, 32.69]], \"sentences\": [\"A middle aged woman wearing a headpiece speaks to the camera while stiring with a spoon.\", \" She takes a couple sips from a cup while still speaking to the camera.\", \" She does this one more time before turning the camera off.\"]}, \"v_UQXB3JOoxYE\": {\"duration\": 197.93, \"timestamps\": [[0, 15.83], [17.81, 34.64], [35.63, 50.47], [50.47, 126.67], [164.28, 197.93], [0, 197.93]], \"sentences\": [\"A boy sits in the water, his skis out in front of him, while he holds the handle of the rope between his legs.\", \"   We see a short flashback as we then see him in the boat in then in the water being assisted with his skis.\", \"  Once again he is in the water, and the boat slowly picks up speed, pulling the young man upright until he is skiing full-speed behind the boat.\", \"  A man comes up beside him, his arms outstretched as he holds a camera, and then a show of him with several other men in the boat.\", \"  We soon see the man again in the water with his arm around the boy's shoulders, the boy triumphant after his successful ride.\", \"  All in all everyone seemed to enjoy a great day outdoors whether in the boat or skiing or both.\"]}, \"v_5HqegO_ayw8\": {\"duration\": 119.78999999999999, \"timestamps\": [[1.2, 43.13], [37.73, 94.64], [88.05, 118]], \"sentences\": [\"A large group of people are seen standing around a square with people playing volleyball.\", \" The people continuously hit the ball around the sandy field as the camera pans around them playing.\", \" The camera pans around the group as they keep playing.\"]}, \"v_HAEyXtEdERI\": {\"duration\": 194.98, \"timestamps\": [[0, 31.2], [30.22, 95.54], [95.54, 155.98], [155.01, 194.98]], \"sentences\": [\"A camera pans around the outside of a building and surrounding areas and leads into several shots of people riding bikes on a track.\", \" Many people watch the race on the sidelines as the people continue going around the track and others record their time.\", \" Many people sit around speaking with one man speaking to a large group.\", \" More shots of people speaking and riding are shown and the audience cheers them on in the stands.\"]}, \"v_sPEed6XrTZA\": {\"duration\": 124.85, \"timestamps\": [[0, 20.6], [21.23, 48.07], [48.69, 124.85]], \"sentences\": [\"An older man in a yellow t-shirt stands by an opened garage and white car parked outside.\", \"  The man pours water and solution into a bucket and wand sprayer tank.\", \"  The man begins washing the Nissan Leaf car with the sprayer and wipes it down with a cloth.\"]}, \"v_CGz-ghbUXvk\": {\"duration\": 79.09, \"timestamps\": [[0, 7.12], [7.51, 30.45], [31.64, 64.85], [66.43, 79.09]], \"sentences\": [\"A wedding party is standing at the front of an aisle.\", \" A pair of men playing bagpipes enter the room before the bride makes her entrance with her father.\", \" Everyone stands to watch the procession.\", \" The man shakes hands with the groom, and we see the couple standing at the altar, facing each other.\"]}, \"v_G3TPqsLNlrw\": {\"duration\": 138.93, \"timestamps\": [[0, 12.5], [6.95, 21.53], [48.62, 84.05], [97.25, 130.59]], \"sentences\": [\"A young man is water skiing and falls.\", \" Watching video of the lake and driving.\", \"You can see a man skiing from several different angles.\", \" Winter of Water skiing at Stoney Park.\"]}, \"v_o6Xr1PiL-Jg\": {\"duration\": 59.61, \"timestamps\": [[0, 37.55], [37.55, 59.61]], \"sentences\": [\"The woman attempts to rake leaves, but then she falls and gets back up holding the rake and a man takes it from her.\", \" Then she walks away and comes back again and he rakes the leaves on top of her.\"]}, \"v_2w7Fxoeo_Qk\": {\"duration\": 40.15, \"timestamps\": [[0, 11.04], [12.25, 14.65], [14.85, 27.3], [14.85, 23.49], [28.3, 30.91], [36.53, 40.15]], \"sentences\": [\"A man wearing a helmet and carrying a skateboard lays on a skateboard and goes down a bowling lane to knock over pins.\", \" People look to watch him go down the lane.\", \" Someone pushes someone laying on a skateboard down a bowling lane.\", \" People throw bowling balls after the person.\", \" Two men laugh watching the man.\", \" Someone pushes another person laying on a skateboard down a bowling lane.\"]}, \"v_yVJGQI5MBIk\": {\"duration\": 95.47999999999999, \"timestamps\": [[0, 95.48], [24.83, 95.48]], \"sentences\": [\"Two people are seen doing various martial arts moves to one another while a crowd of people cheer and applaud.\", \" The men continue kicking around one another and ends with them grabbing hands and smiling.\"]}, \"v_TwJvPxAq9_o\": {\"duration\": 149.31, \"timestamps\": [[0.75, 4.48], [3.73, 4.48], [5.97, 144.08], [33.59, 34.34], [144.83, 149.31]], \"sentences\": [\"A girl is smoking a cigarette.\", \" A girl blows out smoke.\", \" A guy sits, gestures, and discusses.\", \" The guy gestures smoking a cigarette.\", \" The credits of the clip are shown.\"]}, \"v_XHQLkc06XIc\": {\"duration\": 189.43, \"timestamps\": [[0, 14.21], [14.21, 141.12], [85.24, 142.07], [139.23, 189.43]], \"sentences\": [\"A little girl does an introduction for a video of herself playing the violin.\", \" She begins to play the violin in a joyful and professional manner.\", \" She begins to pick up the speed of the song.\", \" When she is done playing she explains that the piece she just played.\"]}, \"v_MNpV9WvVPSA\": {\"duration\": 77.51, \"timestamps\": [[0, 30.23], [30.23, 77.51], [0, 77.51]], \"sentences\": [\"instructions of how to play chords on the violin are shown.\", \" woman is in a room playing the violin.\", \" woman is showing how to play chords on wooden violin.\"]}, \"v_lWFGSRpuopM\": {\"duration\": 154.02, \"timestamps\": [[0.77, 154.02], [11.55, 154.02], [107.04, 109.35]], \"sentences\": [\"Kids are driving around in bumper cars.\", \" The cars crash into each other.\", \" The kid in the green car crashes into the wall.\"]}, \"v_Igpy_o0h3Cs\": {\"duration\": 150.88, \"timestamps\": [[8.3, 26.4], [27.16, 127.5], [80.72, 141.83]], \"sentences\": [\"A woman wear curls shows how to wrap pieces of fabric on  a roller.\", \" The woman unrolls the curls from her hair.\", \" The woman combs out her hair using her hands.\"]}, \"v_mEsW__Np9Xo\": {\"duration\": 54.1, \"timestamps\": [[0, 33], [33.81, 54.1], [44.63, 54.1]], \"sentences\": [\"People are riding horses around an arena.\", \" People are standing outside the arena watching them.\", \" The people watching turn around and look behind them.\"]}, \"v_v2iIR1YLdz4\": {\"duration\": 53.62, \"timestamps\": [[0, 6.43], [8.85, 41.02], [42.09, 53.62]], \"sentences\": [\"A man is doing gymnastics in a living room.\", \" He is doing hand stands on a couple of bars on the ground.\", \" The bars are made from pvc pipes.\"]}, \"v_LbGr5TjfTBY\": {\"duration\": 225.57999999999998, \"timestamps\": [[5.64, 128.58], [128.58, 170.31], [170.31, 192.87]], \"sentences\": [\"A cooker talks in a kitchen and shows the inside of a sharpener knife that has discs inside.\", \" Then, the man puts a knife in the sharpener knife to sharpen.\", \" After, the man wash and dry the knife.\"]}, \"v_kF-J9mKwA8A\": {\"duration\": 140.39, \"timestamps\": [[0, 140.39], [10.53, 91.25], [120.73, 140.39]], \"sentences\": [\"A young boy playing a large drum game concentrates while the camera watches him play.\", \" Other people walk in and out of frame from the boy while he continuously plays the game on the drum.\", \" Another boy holding a drink walks into frame and watches the boy play the game.\"]}, \"v_gR9qUDlytF8\": {\"duration\": 16.05, \"timestamps\": [[0, 4.09], [4.09, 10.67], [10.67, 16.04]], \"sentences\": [\"A large group of people are walking towards the camera and they look like they're in a small village.\", \" As the people get closer we see a man and a child are holding onto a saddle attached to a camel and riding on it while another man holds the leash and guides the camel.\", \"The camel passes the camera person and we get a view of the camel walking away and a view of a different side of the area that looks like a village.\"]}, \"v_4w7sVSMbjyM\": {\"duration\": 190.02, \"timestamps\": [[1.9, 76.96], [50.36, 190.02]], \"sentences\": [\"A shot of a snowy area is shown followed by two people hoping along the area and speaking to the camera.\", \" More shots are shown of the men hopping around on snowboards in various locations as well as speaking to the camera and showing pictures of the people as well as footage of them riding around.\"]}, \"v_cGEhbEHCQyE\": {\"duration\": 235.82, \"timestamps\": [[0, 35.37], [35.37, 120.27], [119.09, 235.82]], \"sentences\": [\"Many men are in a building playing a group of ice hockey against each other.\", \"As they continue to play,the referee begins to skate back and forth on the side in circles.\", \"After several starts and finishes,the games keeps going and the goalie is successful in blocking the puck each and every time.\"]}, \"v_zwx1Kig4nXg\": {\"duration\": 185.16, \"timestamps\": [[0, 26.85], [25.92, 48.14], [97.21, 99.98], [97.21, 99.06], [113.87, 116.65], [144.42, 172.2], [174.05, 185.16]], \"sentences\": [\"We see a baby spining in a room with adults watching.\", \" An adult dances with the baby.\", \" Two adults hold the babies hands and dance.\", \" The baby is twirled in a circle.\", \" The baby is twirled again.\", \" The baby dances alone again.\", \" The baby picks up a toy dog and dances with it.\"]}, \"v_n0meVEbpXak\": {\"duration\": 25.08, \"timestamps\": [[0, 25.08], [13.67, 25.08]], \"sentences\": [\"Kids are riding small dirt bikes around a track.\", \" A kid falls over and people help them up.\"]}, \"v_jIsGq431gBs\": {\"duration\": 230.67000000000002, \"timestamps\": [[0, 14.99], [16.15, 26.53], [27.68, 50.75], [59.97, 133.79], [133.79, 198.37], [199.53, 230.67]], \"sentences\": [\"A bunch of people are meeting in a raft shop.\", \" They all meet in a room to put on helmets and get together their equipment.\", \" They all go for a long walk together, including down a large flight of stairs.\", \" They reach a long line of rafts by the water, where they get in and begin rafting.\", \" The people are white water rafting down a turbulent river, using their paddles in unison, going down small waterfalls together.\", \" They all stop to have lunch under an outdoor pavilion at the end of their adventure.\"]}, \"v_bmf7otW5TQo\": {\"duration\": 84.17, \"timestamps\": [[0, 43.35], [44.19, 76.6], [15.57, 53.45], [76.6, 84.17]], \"sentences\": [\"A teen performs pommel horse spinning around, then jumps on the floor and goes to get power from a container.\", \" After, the teen gets again on the pommel horse and spins many times, while the jury observes.\", \" People walk behind the jury.\", \" Next, the teen stands on his hands and jumps to the mat.\"]}, \"v_nyjtOdSyHn4\": {\"duration\": 115.97999999999999, \"timestamps\": [[1.16, 37.69], [33.64, 92.21], [85.25, 113.08]], \"sentences\": [\"A woman wearing a wig is seen blindfolding another girl while others watch on the sides.\", \" Kids are playing on the bouncehouse and a woman spins around the blindfolded girl.\", \" The girl swings around at a pinata and hits then walks away.\"]}, \"v_-ceM4HHukhE\": {\"duration\": 210.98, \"timestamps\": [[0, 210.98], [14.77, 210.98], [7.38, 210.98]], \"sentences\": [\"A man sits down on an exercise machine.\", \" He begins working out on the machine.\", \" A man in a tan shirt stands behind him.\"]}, \"v_DK271OQnNRA\": {\"duration\": 31.21, \"timestamps\": [[0, 31.21], [7.49, 31.21]], \"sentences\": [\"Three people go tubing down a rapid.\", \"  They get stuck on the rocks, then push off and continue floating.\"]}, \"v_4DFKpHF2aq4\": {\"duration\": 60.09, \"timestamps\": [[3.91, 6.31], [6.31, 14.42], [14.42, 48.68], [48.68, 56.79]], \"sentences\": [\"There's a young man wearing a black hoodie and hat out in the wilderness.\", \" He takes an umbrella in his hand and then tosses it behind him.\", \" Then he walks on a tight rope and tries to balance himself.\", \" There are some other men doing the same thing out in the wilderness, trying to balance themselves and walk on tight ropes.\"]}, \"v_omLZQlz1PAo\": {\"duration\": 172.36, \"timestamps\": [[0, 83.6], [86.18, 172.36]], \"sentences\": [\"An elderly couple are dancing alone on a gymnasium floor while a line of people at a table watch.\", \" They spin and dance happily, and the crowd claps as they finish and walk away.\"]}, \"v_c0Cn3HFXpLs\": {\"duration\": 139.57999999999998, \"timestamps\": [[0, 25.82], [38.38, 69.79], [72.58, 139.58]], \"sentences\": [\"Three men playing a game of racquetball are in a court surrounded by white walls.\", \" The man in white serves, followed by the man in the hat scoring on his serve.\", \" The man in the yellow shorts is next and manages to take the game over, serving several times to close the video.\"]}, \"v_jsxrJJkUl2E\": {\"duration\": 223.86, \"timestamps\": [[0, 6.72], [6.72, 16.79], [16.79, 42.53], [42.53, 50.37], [50.37, 59.32], [59.32, 72.76], [72.76, 85.07], [86.19, 90.66], [90.66, 114.17], [114.17, 139.92], [139.92, 148.87], [148.87, 157.82], [157.82, 160.06], [160.06, 173.49], [173.49, 212.67], [212.67, 223.86]], \"sentences\": [\"A group of four men talk in front of a camera.\", \" There is an animated sequence.\", \" They continue to talk in front of the camera.\", \" Two of them stand holding a rake and they play rock paper scissors.\", \" One loses the game and jumps on the rake.\", \" Replays of him jumping on the rake.\", \" The other two hold the rake and play rock paper scissors.\", \" A different person loses and jumps on the rake.\", \" They show replays again of him jumping on it.\", \" A different set of guys hold the rake and play rock paper scissors again.\", \" One loses and jumps on the rake again.\", \" They show replays of him jumping on the rake.\", \"The other guy then jumps on the rake.\", \" They once again show replays.\", \" All four are once again talking in front of the camera.\", \" It ends with other videos of their you tube channel.\"]}, \"v_8wDm37sdBCI\": {\"duration\": 20.6, \"timestamps\": [[0, 20.6], [0, 4.84], [4.84, 20.6]], \"sentences\": [\"A person is down below and is swinging a fabric and hitting it onto something.\", \" A wide shot of a city is shown from the from above.\", \"The view pans to other parts of the city and then zooms on other people hitting fabric onto an object as well.\"]}, \"v_zzxYEZkahBU\": {\"duration\": 56.08, \"timestamps\": [[0, 12.06], [13.46, 15.98], [30, 34.49], [34.77, 38.97], [51.87, 53.83]], \"sentences\": [\"A person is throwing a disk down a strip of land.\", \" A woman in a brown shirt is holding a red cup.\", \" A boy pushes a ball with a stick.\", \" A man in a black shirt is holding a stick.\", \" A boy in a white shirt smiles at the camera.\"]}, \"v_bX-PSFlwV5s\": {\"duration\": 142.73, \"timestamps\": [[0, 44.96], [35.68, 104.2], [95.63, 139.88]], \"sentences\": [\"A man is seen speaking to the camera while holding up a tool.\", \"  A person is then seen peeling off a roof using the roof and speaking out loud.\", \" The man continues to take apart the roof.\"]}, \"v_UCmycSotoy4\": {\"duration\": 38.08, \"timestamps\": [[0, 38.08], [2.48, 6.66], [6.28, 13.9], [17.52, 38.08]], \"sentences\": [\"A group of people are playing in white water kayaks.\", \"  The person in the red tries to flip.\", \"  A person in green attempts the same thing.\", \"  The person in the red then has their front in the air for a long time.\"]}, \"v_qoSn8oUMBSE\": {\"duration\": 171.99, \"timestamps\": [[6.88, 53.32], [48.16, 137.59], [107.49, 165.97]], \"sentences\": [\"A large group of people are seen walking out onto a field with a crowd cheering behind them.\", \" The men then begin playing a game of soccer and kicking the ball around the field.\", \" Several shots are shown of people scoring goals as well as others celebrating and holding one another.\"]}, \"v_-vqefJDOxkw\": {\"duration\": 6.04, \"timestamps\": [[0, 6.04], [0, 2.08], [2.08, 4.68], [3.41, 4.77], [4.8, 6.04]], \"sentences\": [\"Several spectators watch as a man does track and field.\", \" The video with a man who begins running down the track.\", \" As he reaches the dirt section, he he does three jumps.\", \" On his final jump, he extends his legs to try and jump as far as possible.\", \" The video ends after he lands and he is shown smacking the ground.\"]}, \"v_ahOnhEvMgq0\": {\"duration\": 78.39, \"timestamps\": [[0, 54.48], [52.91, 69.38]], \"sentences\": [\"The camera pans around a man standing in front of a ping pong table and begins playing a match with another man.\", \" The men continue hitting the ball back and fourth while various people watch him on the side.\"]}, \"v_6XINT0LDdz8\": {\"duration\": 39.59, \"timestamps\": [[0.59, 13.86], [11.88, 29.3], [21.18, 38.01]], \"sentences\": [\"A gymnast is seen looking off into the distance and standing before a set of uneven bars.\", \" The man then jumps up onto the bars and begins swinging himself back and fourth.\", \" The man continues to swing around and ends by jumping down.\"]}, \"v_rlWN8PZMbfY\": {\"duration\": 171.34, \"timestamps\": [[5.14, 11.14], [11.14, 14.56], [15.42, 21.42], [21.42, 28.27], [28.27, 47.12], [47.12, 63.4], [68.54, 72.82], [72.82, 92.52], [92.52, 111.37], [124.22, 143.07], [143.93, 153.35]], \"sentences\": [\"A woman washes her hands at a sink.\", \" The woman towels her hands dry.\", \" The camera shows a closeup of her dropping liquid into a contact lens.\", \" The contact lens is held up for inspection.\", \" The woman rubs the contact lens with the fluid.\", \" The woman puts the lens on.\", \" The woman removes the lens.\", \" The lens is held up for inspection.\", \" The woman removes the lens from her eye again.\", \" The woman cleans the lens with solution.\", \" The woman places the lens into a container.\"]}, \"v_7n1L0evoi34\": {\"duration\": 83.62, \"timestamps\": [[24.67, 72.33], [72.33, 79.85]], \"sentences\": [\"In Home Pet Groomers demonstrate how to groom a pet.\", \" The person is demonstrating how the dog's hair is trimmed with electric shears at their grooming salon.\"]}, \"v_aVJRaXUjsEE\": {\"duration\": 6.6, \"timestamps\": [[0, 6.6], [1.02, 1.35], [3.53, 4.72], [4.75, 6.6]], \"sentences\": [\"Two men stand on the far left of a beer pong table.\", \" One of the men throws a beer pong ball across the table, into a cup.\", \" The other man with him throws a ball across the table, too.\", \" Two other men stand on the far right side of the beer pong table, and one of the men reaches to grab the cup where the ball fell into, and the other man bends down to catch a ball that has fallen on the floor.\"]}, \"v_4Fxj9ObTMw8\": {\"duration\": 17.3, \"timestamps\": [[0, 1.9], [2.08, 14.36], [14.7, 17.3]], \"sentences\": [\"A girl leans over a sink, and a boy walks up to talk to her.\", \" She starts laughing and jumping up and down.\", \" The boy seems equally excited, and she smiles at the camera.\"]}, \"v_rt3t2n6K_ww\": {\"duration\": 210.84, \"timestamps\": [[0, 13.7], [14.76, 24.25], [25.3, 210.84]], \"sentences\": [\"A young girl with a ponytail plays a drumkit, she appears to a trained musician.\", \"  The girl focuses on one particular drum.\", \"  The girl continues to play different parts of the drumkit.\"]}, \"v_3DQTz4Ke50Q\": {\"duration\": 126.26, \"timestamps\": [[0, 40.4], [34.72, 126.26]], \"sentences\": [\"A truck is seen backing up and blowing leaves around while the camera captures the area around the truck.\", \" The truck is seen again in several locations backing up and pushing leaves back away from the truck.\"]}, \"v_8ofNg0y8w60\": {\"duration\": 81.69, \"timestamps\": [[0, 15.52], [15.52, 36.35], [36.35, 55.55], [55.55, 59.22], [71.89, 80.05]], \"sentences\": [\"Two people are playing a tennis match on a blue court.\", \" The man in the blue shirt misses the ball and walks away to talk to someone.\", \" They replay the video of him missing the ball.\", \" A man in a white shirt sits on a chair with a microphone.\", \" They restart another tennis match.\"]}, \"v_IpCYVZ-sMTc\": {\"duration\": 110.13, \"timestamps\": [[4.41, 45.15], [42.4, 109.03]], \"sentences\": [\"A man is seen speaking to the camera while holding a ski and pointing around it in various locations.\", \" The man continues speaking while rubbing down the ski with lotion and ending by presenting it to the screen.\"]}, \"v_thvpt_lUxTI\": {\"duration\": 52.99, \"timestamps\": [[0, 30.47], [7.95, 36.3], [18.28, 33.38]], \"sentences\": [\"Two buses are parked in a parking lot.\", \" People are walking in front of it in the snow.\", \" A person is shoveling the snow in front of them.\"]}, \"v_G5HZX5i26us\": {\"duration\": 22.04, \"timestamps\": [[0, 7.38], [6.83, 16.31], [15.54, 20.82]], \"sentences\": [\"An older woman is seen sitting in a chair with a needle in her hands.\", \" The woman then begins sowing while the camera captures her movements.\", \" The woman continues sowing and the camera watches from the side.\"]}, \"v_06dIgOEgYp0\": {\"duration\": 237.7, \"timestamps\": [[0, 13.07], [14.26, 30.9], [32.09, 237.7]], \"sentences\": [\"A woman stands in snow with the words \\\"Fat Girl Snowboarding\\\" overlaid.\", \" A long typed message about her reason of wanting to snowboard.\", \" She makes several attempts down the snowy hill and falls many times.\"]}, \"v_42i3phJnY4M\": {\"duration\": 51.8, \"timestamps\": [[0, 51.8], [1.3, 51.8], [0, 49.99]], \"sentences\": [\"a bullfighter holding a red cloth is in field.\", \" a bull is running to the red cloth of the bullfighter.\", \" a lot of people are sitting on stands watching the bullfighter.\"]}, \"v_FDIYymZEFi0\": {\"duration\": 24.99, \"timestamps\": [[0, 14.74], [14.74, 24.99]], \"sentences\": [\"A young boy is seen pouring soap into his hands and scrubbing his hands above a sink.\", \" He then grabs a paper towel and dries off his hands.\"]}, \"v_siMXfU6NPlE\": {\"duration\": 51.67, \"timestamps\": [[0, 51.67], [19.63, 35.13], [13.43, 49.34]], \"sentences\": [\"Couples dance on a dance floor during a party in front of a stage.\", \" The man spins his partner around while dancing.\", \" A man on the right dances swinging his arms back and fourth.\"]}, \"v_LAbzDJZtSvQ\": {\"duration\": 98.72999999999999, \"timestamps\": [[0, 13.33], [14.81, 62.2], [66.15, 98.73]], \"sentences\": [\"A man is standing in the woods, talking.\", \" He uses an ax to hit a large piece of wood.\", \" He splits the wood into logs with the ax.\"]}, \"v_dcARAWmvWSo\": {\"duration\": 215.68, \"timestamps\": [[0, 215.68], [53.92, 56.08], [66.86, 215.68], [83.04, 86.27], [118.62, 129.41], [138.04, 141.27], [175.78, 196.27]], \"sentences\": [\"We see men working on a roof on a ranch style house.\", \" We see the supplies on the ground.\", \" We see the men on the front part of the roof.\", \" We see a man throwing shingles into a trailer on the ground.\", \" We see the rolls of roofing materials.\", \" We see a man throwing shingles into a trailer.\", \" Three men throw shingles off the roof.\"]}, \"v_GqrEVe0c6PQ\": {\"duration\": 109.88, \"timestamps\": [[0, 8.79], [9.34, 64.83], [67.57, 80.21], [82.41, 95.59], [96.69, 109.88]], \"sentences\": [\"A setting of glasses with lemon water are set on a place mat with a whole lemon.\", \" Lemon slices are scooped from a jar and placed into drinking glasses on a steel counter top.\", \" Steaming hot water is poured over the lemons in the glasses.\", \" The glasses are stirred with a stirring rod.\", \" The glasses are seen set on the table and are slowly panned over from right to left.\"]}, \"v_1F_CSpL_4Dg\": {\"duration\": 124.13, \"timestamps\": [[0, 20.48], [27.93, 96.82], [98.69, 124.13]], \"sentences\": [\"A couple is seen with a crowd, going up a snow covered hill.\", \" They tube down the snowy hills.\", \" The people slide down steep fast curves on the intertubes.\"]}, \"v_DXu_aHrZaUs\": {\"duration\": 119.91, \"timestamps\": [[0, 10.19], [11.39, 43.77], [41.97, 54.56], [55.16, 94.73], [95.93, 102.52], [103.12, 114.51]], \"sentences\": [\"A sign board is seen with a company logo and contact information.\", \" A construction worker screws down floor baseboards.\", \" A construction worker uses a handheld scraper to apply plaster to the bare floor.\", \" A worker places tiles onto the floor and uses plastic cross spacers in the groves.\", \" A heavy weight roller is rolled over the newly placed tiles.\", \" The finished floor is seen after the job is done.\"]}, \"v_9fh_ray_B80\": {\"duration\": 56.17, \"timestamps\": [[0, 56.17], [0, 53.92], [54.48, 56.17]], \"sentences\": [\"A few guys are sitting near a cliff.\", \" A man is climbing a cliff with all limbs.\", \" The man that is climbing falls and begins to laugh.\"]}, \"v_4M4MXPP9oRY\": {\"duration\": 181.3, \"timestamps\": [[22.66, 51.67], [51.67, 88.84], [88.84, 134.16], [134.16, 147.76], [147.76, 166.8], [166.8, 175.86]], \"sentences\": [\"There are several people gathered to watch a competitive game of water polo on a sunny day.\", \" There are two teams in an outdoor swimming pool playing against each other.\", \" The spectators are watching and cheering for the players.\", \" the players are playing with a yellow colored ball.\", \" After one of the team scores a point, the fellow teammates cheer for them.\", \" The winning team scores more points and receives applause from the crowd.\"]}, \"v_Hfd5sxW8Clg\": {\"duration\": 187.25, \"timestamps\": [[0, 36.51], [37.45, 78.64], [78.64, 111.41], [111.41, 140.43], [140.43, 153.54], [153.54, 187.25]], \"sentences\": [\"Several contestants are on a stage standing behind a podium made to look like a Rubik cube.\", \"A boy then places a blind fold on his forehead as a man stand to his left examining his every move.\", \"The cube is then picked up off the counter and the timer begins as he attempts to solve the puzzle.\", \"After thirty five seconds,he pulls the blind fold down over his eyes and continues to try and solve the cube.\", \"A minute and fifteen seconds has passed and the boy puts the cube down and the timer stops.\", \"Everybody is extremely happy for him and begin and congratulates him as the other opponents are still attempting to solve theirs.\"]}, \"v_QuaoqO4JgKY\": {\"duration\": 17.83, \"timestamps\": [[0, 9.9], [9.27, 17.83]], \"sentences\": [\"A young boy is seen walking to the end of a diving board and jumping off the side.\", \" The boy comes up from the surface and another boy is seen walking to the end of the board.\"]}, \"v_KlIAmoVrptA\": {\"duration\": 113.07, \"timestamps\": [[0, 6.22], [6.22, 18.09], [18.09, 86.5], [86.5, 97.24], [97.24, 108.55], [108.55, 113.07]], \"sentences\": [\"A brunette woman is smiling and talking while standing in a bathroom with just her chest up visible and a quick banner on the bottom of the screen say's her name is \\\"Aubrey Morgan\\\".\", \"The woman is now standing up and with just her legs visible and wearing shorts, she's holding a razor up and showing it in different angles, and close ups, the text on the screen reads \\\"Good Quality Razor\\\".\", \"The woman begins to wash her legs while still standing up, exfoliates, and then applies a thick layer of shaving cream all over her leg, fans her leg, and then begins shaving her legs from the ankle and the knee and then rinses her razor.\", \"The woman holds up a disposable razor, then holds up a reusable razor and shows that the razor can be popped up.\", \" The woman is standing again and is now applying lotion to her leg.\", \" The woman is now standing with just her upper body showing and is smiling and talking.\"]}, \"v_tl2RLYJUu3k\": {\"duration\": 45.79, \"timestamps\": [[0, 45.79], [21.75, 45.79]], \"sentences\": [\"Three martial artists with black belts do a demonstration for younger children.\", \"  They jump and kick then bow to each other.\"]}, \"v_nGsRDNIsc2o\": {\"duration\": 134.28, \"timestamps\": [[0, 22.16], [42.3, 57.74], [124.88, 132.27]], \"sentences\": [\"People are sitting on exercise bikes and working out.\", \" A woman puts something on the side of the leg of a man working out.\", \" A man in a black suit talks in front of a television.\"]}, \"v_AjiCJiOIDtI\": {\"duration\": 37.13, \"timestamps\": [[0, 18.19], [16.52, 37.13]], \"sentences\": [\"A man is seen speaking to the camera while holding up a foam rubber mat.\", \" The camera pans around more mats laying out while the man still speaks to the camera.\"]}, \"v_Gdf7ZWhh9Nw\": {\"duration\": 128.11, \"timestamps\": [[0, 18.58], [18.58, 85.83], [87.75, 128.1]], \"sentences\": [\"A person is seen scrubbing down the mane of a horse's fur and leads into washing him and spray him.\", \" The camera shows shots of the liquid and then shows the woman scrubbing down and washing the horse.\", \" She walks the horse away and shakes the bottle, showing more shots of her cleaning the horse with the bottle shown intermittent.\"]}, \"v_BV4zqyN8hLs\": {\"duration\": 161.52, \"timestamps\": [[0, 37.15], [37.15, 100.95], [107.41, 161.52]], \"sentences\": [\"Various clips are shown of a man wake boarding and doing flips followed by him sitting on a boat and speaking to the camera.\", \" Several more shots of him riding and speaking are shown as well as a blonde woman also wake boarding.\", \" The two ride along the water together while the man continues to speak to the camera.\"]}, \"v_stkWKPWbQpE\": {\"duration\": 158.24, \"timestamps\": [[0, 158.24], [142.42, 147.96], [147.96, 154.29], [154.29, 158.24]], \"sentences\": [\"A man holding a baton and wearing glittery tights is standing on a basketball court and is doing a routine of baton twirling, flips, and dramatic dances.\", \" The man twirls the baton very quickly and unexpectedly drops it.\", \" The man quickly recovers and picks up the baton and continues his routine like he's never dropped it in the first place and throws the baton high up into the air and does numerous spins and quickly catches the baton before it hits the ground.\", \"The man ends his routine in a sitting position with his legs spread apart, his head thrown back and the baton resting on his right and between his legs.\"]}, \"v_NgBfcoVZ254\": {\"duration\": 111.57, \"timestamps\": [[0, 19.53], [13.39, 54.11], [49.09, 111.57]], \"sentences\": [\"The building is being shown then the clock tower.\", \" The young people are walking on the walkway in front of the building.\", \" A young man is skateboarding on the road, going side to side moving his feet on the board.\"]}, \"v_IxrncvpPWV8\": {\"duration\": 23.85, \"timestamps\": [[0, 12.28], [13.71, 23.85]], \"sentences\": [\"A group of several teen boys are playing a game of tug of war.\", \" They pull hard until the rope gives, and they win the game.\"]}, \"v_Acogo5mgX4Q\": {\"duration\": 86.28999999999999, \"timestamps\": [[0, 10.35], [10.79, 86.29], [44.01, 47.89]], \"sentences\": [\"The scene is of a neighborhood surrounded by tall trees and a pile of dead leaves next to a leaf catcher.\", \" A man holding a rattle puts leaves in bags attached to a leaf catcher.\", \" Also, the man use the leaf catcher to collect trash in a bag.\"]}, \"v_kYZSCs-ILNQ\": {\"duration\": 112.84, \"timestamps\": [[0, 33.29], [33.85, 78.99], [78.42, 95.35]], \"sentences\": [\"A man wearing a white shirt is holding a tennis racket.\", \" He starts hitting tennis balls with his tennis racket.\", \" He stops and talks to the camera.\"]}, \"v_GycRQhoHnXw\": {\"duration\": 235.01, \"timestamps\": [[0, 43.48], [50.53, 193.88], [178.61, 230.31]], \"sentences\": [\"A large group of women are seen standing in a room and begin belly dancing.\", \" The woman dance with one another performing the same routine and one woman dancing in front.\", \" The women continue dancing with one another and end by walking around.\"]}, \"v_E9hFBWDR12A\": {\"duration\": 129.45, \"timestamps\": [[0, 9.06], [9.06, 19.42], [19.42, 48.54], [47.9, 109.39], [110.03, 129.45]], \"sentences\": [\"person is walking inside a house to an open field holding a baseball bat.\", \" perso is walking with a handle stick behind some men running around the field.\", \" some papers are shown and women selling lacrosse tshirts, in a game, people are gathered around the field.\", \" players walks from the dressing rooms and are in the field playig.\", \"players are stading in line clapping at the end of the game, results are shown in the end.\"]}, \"v_jIYRVlrXJgc\": {\"duration\": 10.03, \"timestamps\": [[0, 9.83], [1.71, 2.91], [3.06, 4.66], [4.36, 10.03]], \"sentences\": [\"Two players are playing a game of racket ball.\", \" One female takes a swing at the ball and hits it.\", \" The other female takes a swing at the ball and misses and hits herself instead.\", \" She then sits down on the floor while the other person comes to turn the camera off.\"]}, \"v_P3BkKdkf43I\": {\"duration\": 72.75, \"timestamps\": [[0, 23.28], [20.01, 50.56], [50.56, 67.66]], \"sentences\": [\"A young man is seen standing in the middle of a room and holding a tennis racket up in the air.\", \" Himself and a man are then seen hitting the tennis ball around while running around the room.\", \" The boy runs away from the man and towards the camera in the end.\"]}, \"v_WMdeqUyHWSo\": {\"duration\": 130.17, \"timestamps\": [[0, 9.11], [9.76, 25.38], [22.13, 52.07], [16.27, 113.25], [96.98, 123.01]], \"sentences\": [\"A large group of people are standing together while a women in a beautiful dress speaks.\", \" Various people in costume are shown and a girl runs around playing with a kite.\", \" Several kites are shown up in the air while other children play with them.\", \" Hundreds of kites are shown in the air for a festival and a man interviews his experience with the kites.\", \" Several people stop and look around and the city pans over the night.\"]}, \"v_3CJW0qBwwx4\": {\"duration\": 126.6, \"timestamps\": [[0, 7.6], [7.6, 87.35], [78.49, 124.7]], \"sentences\": [\"A man is seen kneeling down beside a car spraying a hose on the car.\", \" He uses a sponge to clean around the car while others clean around the sides.\", \" More shots are shown of them cleaning the inside as well as under the hood while the camera pans around.\"]}, \"v_s07U8_fkUWU\": {\"duration\": 141.69, \"timestamps\": [[0, 141.69], [0, 139.56], [6.38, 141.69]], \"sentences\": [\"women are playing voleyball in a wooden court.\", \" peolpe are siting in chairs around the court watching the girls.\", \" referees are standing on sides of the court holding flags and watching the game no stairs.\"]}, \"v_jN-FG9yxNvE\": {\"duration\": 40.8, \"timestamps\": [[0, 3.88], [3.88, 18.97], [19.18, 37.33], [37.74, 40.8]], \"sentences\": [\"\\\"Fitness for Life 365\\\" appears on the screen.\", \" A panning up of the inside of a gym is shown as there is a man climbing monkey bars going backwards.\", \" He then goes back and forth to continue his workout.\", \" The video then fades to a black screen and asks you to subscribe to their youtube channel.\"]}, \"v_Pt0CjFgzpxM\": {\"duration\": 173.48, \"timestamps\": [[0, 173.48], [6.94, 157.86], [12.14, 151.79], [6.94, 32.96], [25.15, 132.71], [34.7, 147.46], [108.42, 173.48]], \"sentences\": [\"The video shows a tutorial on how to install ceramic tiles using concrete.\", \" A person wearing an orange vest and black pants is working on tiling a room in a house.\", \" He is kneeling down next to a pile of white square ceramic tiles and a bucket filled with grout and cement.\", \" He is smearing the floor with cement with a trowel.\", \" Then he places the square tiles next to each other in a straight line, making sure they are fitted tightly together.\", \" He removes more tiles from the box to places them on the wet cement, making sure they are properly aligned with each other.\", \" He continues placing the tiles to fill in all the gaps until the entire room is fully covered with the white tiles.\"]}, \"v_z9uVyf0D8eM\": {\"duration\": 176.7, \"timestamps\": [[0, 120.16], [106.02, 176.7]], \"sentences\": [\"A man is seen playing a set of bag pipes to the camera while moving his hands up and down.\", \" The man continues playing the instrument in the room and ends by moving his hands down.\"]}, \"v_WSKx2EK_Bqc\": {\"duration\": 177.54, \"timestamps\": [[0, 52.37], [52.37, 96.76], [96.76, 138.48], [138.48, 177.54]], \"sentences\": [\"A man is sitting down with a microphone attached to his ears and starts to talk about the congas in front of him.\", \"Once he is done talking,the man begins to play and hits the congas back and forth.\", \"In between his performance,he takes briefs breaks and talks before continuing playing.\", \"Now,he has on head phones and starts to play the congas straight through with no interruptions.\"]}, \"v__uPVFvEQocU\": {\"duration\": 114.8, \"timestamps\": [[0, 114.8], [45.92, 47.07], [88.4, 93.56], [98.73, 99.3]], \"sentences\": [\"I woman talks to the camera while holding a ping pong ball and standing by a ping pong table, interspersed with closeups of short demonstrations of technique.\", \" The woman retrieves a new ball.\", \" The woman retrieves two balls, then gets rid of one.\", \" The woman retrieves another ball.\"]}, \"v_WbZpWiPCHVU\": {\"duration\": 35.13, \"timestamps\": [[0, 2.28], [4.92, 8.96], [9.49, 12.47], [15.99, 22.66], [24.94, 26], [29.51, 34.25]], \"sentences\": [\"Coffee is spilled on the carpet.\", \" A person carpet cleans the carpet.\", \" They then clean seats of a car.\", \" They empty the water into the sink.\", \" They empty the bucket into another bucket.\", \" They vacuum up sprinkles off of the carpet.\"]}, \"v_rVxxAI6wlXk\": {\"duration\": 224.17000000000002, \"timestamps\": [[14.57, 26.9], [34.75, 39.23], [53.8, 197.27], [206.23, 207.35]], \"sentences\": [\"A man grabs a suitcase out of a car.\", \" He lays down in a barber chair.\", \" A man starts shaving his beard with a razor.\", \" He wraps a towel around his face.\"]}, \"v_OtcRXishIxw\": {\"duration\": 84.1, \"timestamps\": [[0, 7.57], [7.57, 37.85], [27.75, 55.09], [43.73, 48.78], [58.87, 66.44], [74.01, 79.9]], \"sentences\": [\"A young man is helping a young woman swing at a soccer pinata.\", \" They are on an outdoor green field at a school or community center.\", \" She keeps missing the pinata while her friends try to help her out.\", \" An adult is controlling the pinata trying to keep her from hitting it.\", \" She finally ends up finding where it generally is while her friends laugh at her and continue to try to help.\", \" She gets hit by the pinata and ends up being unsuccessful.\"]}, \"v_pmix_U52VWk\": {\"duration\": 74.26, \"timestamps\": [[0, 67.2], [67.57, 74.26]], \"sentences\": [\"A boy is standing behind a music stand playing a flute.\", \" He stops playing and smiles before walking away.\"]}, \"v_lipavQnHm_g\": {\"duration\": 74.94, \"timestamps\": [[0, 47.59], [47.59, 52.84], [52.84, 74.94]], \"sentences\": [\"A man is standing on an indoor court with his racket in his right hand the racket ball in the left hand and is talking and motioning a lot.\", \" The man then drops the ball on the court, hits it, then catches it when it returns to him.\", \" The man continues to talk as he holds the ball and racket in his hands and the screen fades to black.\"]}, \"v_yXzLQU_jS44\": {\"duration\": 182.56, \"timestamps\": [[0, 182.56], [7.3, 8.22], [74.85, 81.24], [96.75, 112.27], [133.27, 142.39], [149.7, 159.74]], \"sentences\": [\"A man is looking down and talking into the camera.\", \" The man removes his glasses and shows us how to insert contact lenses.\", \"  The man shows the contact lens to the camera.\", \" The man inserts the contact and moves his eye around.\", \" The man shows his other contact.\", \" The man inserts the contact on the right and moves his eye around.\"]}, \"v_J6-rLsT975U\": {\"duration\": 215.06, \"timestamps\": [[0, 215.06], [50.54, 195.71]], \"sentences\": [\"A man shovels snow in the winter.\", \"  A timelapse photo is made and a path is cleared so a car can drive out.\"]}, \"v_sOUNe30PXY4\": {\"duration\": 4.6, \"timestamps\": [[0, 1.06], [1.03, 4.6], [0, 4.6]], \"sentences\": [\"Two men are on top a ladder in a wrestling ring, a man is bend on the ladder.\", \" Then, the wrestler jumps over the man, and the man and the wrestler fall to the ring.\", \" The judge watch the men.\"]}, \"v_Qwj7f4vqveo\": {\"duration\": 83.36, \"timestamps\": [[0, 19.59], [20.01, 21.67], [28.34, 29.59], [35.84, 45.85], [46.26, 57.52], [59.6, 67.52], [80.44, 83.36]], \"sentences\": [\"A kid takes a drink and swishes it around in their mouth.\", \" They spit it out into a sink.\", \" They take another drink out of a cup.\", \" They put their mouth on a towel.\", \" They take another drink and dump it out in the sink.\", \" They pick up the towel and wipe their face.\", \" They grab a cup and turn the sink on.\"]}, \"v_Gc1Mk5UyECQ\": {\"duration\": 113.52000000000001, \"timestamps\": [[0, 113.52], [36.89, 110.12]], \"sentences\": [\"A lacrosse team goes to play a game.\", \"  other highlights are shown.\"]}, \"v_sLq6p6NKApk\": {\"duration\": 74.89, \"timestamps\": [[0, 74.89], [13.48, 43.06], [43.81, 46.8], [58.78, 74.89]], \"sentences\": [\"We see a man with a croquet mallet talking.\", \" The man lines up his shot of the red ball.\", \" The man hits the red ball.\", \" The man points at the blue ball the kneels in the grass.\"]}, \"v_c-3fceLb7n4\": {\"duration\": 76.07, \"timestamps\": [[0, 76.07], [4.56, 76.07]], \"sentences\": [\"A group of friends play shuffle board on an indoor court.\", \" The group takes turns shooting pucks onto the shuffleboard court.\"]}, \"v_g9b-kCC79kQ\": {\"duration\": 133.66, \"timestamps\": [[0, 14.03], [10.69, 133.66], [86.88, 90.22], [86.88, 133.66]], \"sentences\": [\"People are talking in a room.\", \" People are playing blackjack in a crowded casino.\", \" A man claps his hands and signs a paper.\", \" People continue to play blackjack.\"]}, \"v_gPtpPiea0iQ\": {\"duration\": 47.87, \"timestamps\": [[0, 6.7], [6.94, 16.99], [16.75, 24.89], [24.65, 29.2], [29.92, 33.75], [33.75, 47.87], [47.39, 47.87]], \"sentences\": [\"A woman walks into a partially netted area.\", \" The woman stands preparing to hammer throw.\", \" The woman performs the hammer throw.\", \" The hammer is seen landing with judges walking towards it.\", \" The woman raises her arm.\", \" The woman walks out of the netted area.\", \" The woman raises her arm again.\"]}, \"v_V8UMJTrfXdw\": {\"duration\": 7.9, \"timestamps\": [[0, 7.86], [3.04, 7.89]], \"sentences\": [\"Two people play foosball with a woman behind.\", \"  One person scores and claps.\"]}, \"v_o4uymxrCKeo\": {\"duration\": 13.35, \"timestamps\": [[0, 6.14], [6.74, 13.35]], \"sentences\": [\"A boy swings on a swing outdoors.\", \" He swings as high as he can with his legs out.\"]}, \"v_cXVWUEcSx20\": {\"duration\": 114.96000000000001, \"timestamps\": [[0, 73], [73.58, 114.96]], \"sentences\": [\"A woman is seen sitting on a couch holding a hat and leads into her cutting the cat's claws.\", \" She then holds up a piece of paper as the cat runs away and she points to the paper.\"]}, \"v_ULPw4uZcx5I\": {\"duration\": 81.13, \"timestamps\": [[0, 28.8], [27.18, 81.13]], \"sentences\": [\"A person is sitting in a tube with other people standing around and pushing the person down a snowy trail.\", \" The person flies down the trail in the tube with another person following down afterwards.\"]}, \"v_c3vEqTcKPsU\": {\"duration\": 79.78, \"timestamps\": [[0, 79.78], [20.34, 31.12]], \"sentences\": [\"a journalist is interviewing a basketball player in a court.\", \" man is polishing the wooden floor.\"]}, \"v_y1jyeWW-G4E\": {\"duration\": 104.56, \"timestamps\": [[0, 39.73], [43.39, 104.56]], \"sentences\": [\"a little girl is sitting in sand where she has been trying to make a sand castle.\", \" Adults and another girl laugh as they try to build something in the sand.\"]}, \"v_-wFNUGYf298\": {\"duration\": 224.1, \"timestamps\": [[14.57, 22.41], [23.53, 203.93], [203.93, 209.53]], \"sentences\": [\"A young adult male punches and kicks a suspended punching bag.\", \" The young male then starts to move around the punching bag while still punching and kicking it.\", \" The young male then walks away while removing his gloves.\"]}, \"v_2WzsyEvhPPI\": {\"duration\": 223.05, \"timestamps\": [[0, 17.84], [17.84, 37.92], [40.15, 88.11], [88.11, 131.6], [131.6, 210.78]], \"sentences\": [\"A man talking to the camera while holding a poster.\", \" He grabs various objects off the table and explains his instructions.\", \" He wraps a box with tin foil then writes on the box with a marker.\", \" He lays out more tin foil and wraps another object with it.\", \" He finishes wrapping all objects with tin foil and showing how.\"]}, \"v_FujUrbL1qc0\": {\"duration\": 161.05, \"timestamps\": [[0, 33.82], [33.82, 108.71], [108.71, 161.05]], \"sentences\": [\"A man is sitting on a workout bench.\", \" He lays back and starts doing crunches.\", \" He sits back up on the machine and continues talking.\"]}, \"v_sx5Q-JsaAAs\": {\"duration\": 164.1, \"timestamps\": [[9.03, 78.77], [78.77, 134.56], [134.56, 154.25], [140.3, 143.58]], \"sentences\": [\"Two men play ping pong on front a crowd.\", \" When the person with black jacket serves, the ball lands on net, also the young man fails to serve well and the ball lands outside the table.\", \" The young man wins and raise his hands, while his opponent hug him.\", \" People take picture to the men.\"]}, \"v_WRv7Kpf1KT0\": {\"duration\": 30.19, \"timestamps\": [[0, 10.11], [11.32, 30.19]], \"sentences\": [\"Two men are putting suntan lotion on each other at the beach.\", \" They rub it on each other's backs before turning around.\"]}, \"v_3Y46yorcd5Q\": {\"duration\": 234.03, \"timestamps\": [[0, 19.89], [24.57, 32.76], [33.93, 205.95], [205.95, 234.03]], \"sentences\": [\"A large wave breaks in the ocean as surfers and surfers paddle over it.\", \" A large wave crashes in the ocean and a man rides down the face on body board.\", \" surfers ride waves in the ocean.\", \" A large wave breaks on shore and spectators run.\"]}, \"v_CcBPELJaRlk\": {\"duration\": 220.09, \"timestamps\": [[0, 33.01], [33.01, 80.33], [77.03, 112.25], [112.25, 220.09]], \"sentences\": [\"Several people are divided up into groups on rafts kayaking through murky water.\", \"The first group of eight people paddle themselves near a cliff and go down the hill and the others trail behind them with the same actions.\", \"For the fifth group, an aerial view is provided and the others way for them to come.\", \"After, each group does the same thing as they maneuver throughout various parts of the water and hitting rocks.\"]}, \"v_JLipYEVwKTg\": {\"duration\": 28.54, \"timestamps\": [[4.42, 7.99], [7.99, 16.84], [16.84, 25.54], [25.54, 28.54]], \"sentences\": [\"A woman wearing a leopard print jacket is sitting with a man in a hookah bar.\", \" The man kisses her as he leans forward.\", \" She is holding the hookah in her hand ready to take her first puff.\", \" After she inhales the hookah, she puffs out some smoke and coughs in discomfort.\"]}, \"v_eEBiomp_9tQ\": {\"duration\": 30.05, \"timestamps\": [[0, 5.41], [5.41, 30.05], [7.21, 30.05]], \"sentences\": [\"A woman in a dress is walking up stairs.\", \" She takes her dress off and starts dancing.\", \" She is working out with other people on a step stool.\"]}, \"v_XOEQfCu6KsE\": {\"duration\": 143.13, \"timestamps\": [[0, 26.48], [27.91, 105.91], [95.18, 137.4]], \"sentences\": [\"A man is seen walking around a field with a dog next to him.\", \" The man then grabs a frisbee and begins performing tricks with the dog.\", \" The man continues to throw around a frisbee with the dog while others watch on the side.\"]}, \"v_f7qFnCkFIuQ\": {\"duration\": 34.55, \"timestamps\": [[0, 33.17], [8.47, 26.09], [27.81, 34.55]], \"sentences\": [\"A person is walking towards three people who are painting a fence black.\", \" The man asks the boy to see his work and pans the camera over to his wife.\", \" The man makes a joke to his wife and laughs off camera.\"]}, \"v_BrnUW2LSJDI\": {\"duration\": 42.77, \"timestamps\": [[0, 19.89], [19.46, 42.77]], \"sentences\": [\"Two men are seen standing around a shuffleboard table followed by the men hitting pucks across the board.\", \" The men continue hitting the pucks and zoom in on their faces in the end.\"]}, \"v_VuGLqAda2hE\": {\"duration\": 59.05, \"timestamps\": [[0.89, 26.57], [26.28, 38.09], [38.38, 59.05]], \"sentences\": [\"A woman talks in a gym, then she drives a static bike.\", \" Then,the woman and other people lift weight.\", \" Then, the woman continues riding the bike and then lift weigh.\"]}, \"v_qp3OfC0dCOs\": {\"duration\": 138.42000000000002, \"timestamps\": [[0, 24.91], [24.91, 53.98], [53.29, 96.2], [96.89, 138.42]], \"sentences\": [\"Outside in the backyard two little boys in matching swim suits are playing with nets trying to catch a ball.\", \" They are both trying to get the ball in their own net basically playfully fighting over whose going to get it.\", \" The dad comes and throws the ball over and the boys run after it.\", \" They continue to play and one of the little boys gets it in his net and trows it and when it lands they both go after it again.\"]}, \"v_6cha8sVi65k\": {\"duration\": 161.01, \"timestamps\": [[0, 18.52], [23.35, 99.82], [103.05, 128], [131.22, 161.01]], \"sentences\": [\"Several hockey players leave a group, skating across the ice.\", \" They begin playing, shooting the puck back and forth, trying to get it to go into the enemy's goal.\", \" A goalie stands alone at his goal.\", \" Everyone gathers again as the referee signals them to play.\"]}, \"v_CJKwvmOuhJk\": {\"duration\": 36.27, \"timestamps\": [[0.18, 7.44], [9.79, 29.02], [25.03, 34.64]], \"sentences\": [\"A person is seen standing before a sink wearing gloves.\", \" The woman looks back to the camera and smiles while holding a toothbrush.\", \" She then turns back to the sink full of dirty dishes.\"]}, \"v_Szze8i9UsRo\": {\"duration\": 225.19, \"timestamps\": [[0, 38.28], [38.28, 190.28], [190.28, 216.18]], \"sentences\": [\"A person opens a round box and take off a bottle of nail polish and puts on holder.\", \" Then, the person puts a nail on a round support on the box, then paint her nails.\", \" After, the woman close the nail polish bottle.\"]}, \"v_sWaU9O4xzFE\": {\"duration\": 172.73, \"timestamps\": [[6.91, 14.68], [15.55, 23.32], [24.18, 33.68], [34.55, 55.27], [56.14, 57.87], [58.73, 61.32], [62.18, 69.96], [70.82, 95.87], [96.73, 107.1], [107.96, 139.05], [139.91, 144.23], [145.1, 145.96], [146.82, 147.69], [149.41, 150.28], [151.14, 152.01], [152.87, 153.73], [154.6, 155.46], [156.32, 159.78]], \"sentences\": [\"A man and a woman get ready to play darts.\", \" Instructions on needed materials to play darts are displayed.\", \" The man and the woman walk to the dart board.\", \" They joke around getting ready to play darts.\", \" The man throws a dart.\", \" The woman follows after him.\", \" The woman throws three more darts.\", \" The man shows off his dart and demonstrates how to step.\", \" He throws the dart from afar.\", \" The position of the darts on the boars are shown.\", \" The man grabs the darts from the board.\", \" The woman throws some darts.\", \" The man follows after the woman.\", \" The woman does it again.\", \" The man returns to do the same.\", \" The woman throws them again.\", \" The man goes after her again.\", \" The woman goes once more and triumphantly wins.\"]}, \"v_Mg3_BN9t9JY\": {\"duration\": 133.42, \"timestamps\": [[0.67, 28.69], [28.69, 67.38], [74.05, 129.42]], \"sentences\": [\"A woman is seen hosting a news segment and that leads into people riding around on horses.\", \" People are seen walking around an area with dogs stomping their feet as well as another man speaking to the camera.\", \" More shots are shown of the people playing the game on a horse as well as others speaking to the camera and getting a trophy.\"]}, \"v_Hc--KcdMkEA\": {\"duration\": 82.39, \"timestamps\": [[0, 42.02], [0.41, 42.02], [42.84, 65.5], [66.73, 75.38]], \"sentences\": [\"A man stands in front of a podium talking.\", \" Two other men stand next to him.\", \" One of the two men digs in a fire pit where there was a fire and then pours water on it.\", \" The same man digs around in the pit with his hand looking for burning embers.\"]}, \"v_n-i9nC6vxu0\": {\"duration\": 94.81, \"timestamps\": [[0, 94.81], [21.81, 94.81], [90.07, 94.81]], \"sentences\": [\"A body of water is shown below the trees.\", \" A person is walking on a slack line over the water.\", \" They get to the end of the slack line.\"]}, \"v_ncTkaZcDcTo\": {\"duration\": 89.91, \"timestamps\": [[0, 2.7], [7.19, 17.98], [17.98, 25.62], [26.07, 79.12]], \"sentences\": [\"A skater girl in a white t-shirt and shorts tries to jump with her skateboard and falls backwards hitting her head.\", \"  Two more skaters head around a curve, but one plows straight into a hay-stack, though luckily helmet-first.\", \"  Another helmeted skater tries a hand-stop, and does stop, though unfortunately his skateboard does not.\", \"  After a few more skating mishaps, the last performance is by a skater who doesn't feel the need for safety equipment and while headed straight down a hill, he flips off of his skateboard and spends several minutes checking on his various road-rashes.\"]}, \"v_A1k7CSI7aRs\": {\"duration\": 15.42, \"timestamps\": [[0, 4.32], [4.39, 8.09], [8.79, 15.42]], \"sentences\": [\"Outside as a group looks on, a man lifts a guy onto his shoulder and throws him on a table which breaks.\", \" Outside, a male back flips on a trampoline and lands on his face.\", \"  Two men lay the male down and look at his face, and another person moves a laying individual to look at the male's face.\"]}, \"v_mtQUYdj2Ecg\": {\"duration\": 23.59, \"timestamps\": [[0, 2.36], [5.43, 16.75], [17.46, 23.59]], \"sentences\": [\"A man attempts to lift a barbell.\", \" He bends at the knees, lifting it to his chest.\", \" He hits himself in the throat, falling backward.\"]}, \"v_pJRUkudK6iE\": {\"duration\": 197.7, \"timestamps\": [[0, 10.87], [10.87, 15.82], [15.82, 116.64], [116.64, 150.25], [150.25, 171.01], [171.01, 187.81], [187.81, 197.69]], \"sentences\": [\"A textured intro screen appears and a logo of a shoe is displayed along with green words that say \\\"VICKERMANN und STOYA\\\".\", \"Two groups of supplies are shown and they include products from the company name in the intro screen that include brushes, a cloth, shoe shaper, shoelaces and a couple of small tin containers.\", \"A man wearing a green apron is untying shoelaces from a brown high shoe, then brushes it with a large brush, then he takes a smaller brush, dips it into a small container, then brushes it onto the shoe and the shoe looks very polished on any surface that he brushes.\", \"The man then picks up a white cloth and rubs it all over the shoe.\", \"The man puts the white cloth down, picks up a thick brush and brushes the shoe all over.\", \" Then he puts the shoe and the brush down, picks up the shoelace and laces the shoe.\", \"The man then picks up the polished shoe and unpolished shoe and puts them closer to the camera for a comparison then the same textured screen from the intro appears with the shoe log and the company name of \\\"VICKERMANN und STOYA\\\".\"]}, \"v_CD8FFj8AJE0\": {\"duration\": 119.05, \"timestamps\": [[0, 25], [22.62, 85.72], [91.07, 116.67]], \"sentences\": [\"A man is seen speaking to the camera and leads into him wiping down another man's back.\", \" He rubs in lotion and then stands up with the man.\", \" The man holds a mirror up to his back and smiles back to the artist.\"]}, \"v_Qxquum8p8S8\": {\"duration\": 40.64, \"timestamps\": [[0, 40.23], [1.22, 11.17], [11.38, 23.37], [21.74, 40.43]], \"sentences\": [\"There are some kids using a water pump to wash their hands at the Plumpton Park Zoo.\", \" There's a young boy in a black and white hoodie helping pump out water for another boy to wash his hands.\", \" Then he goes on help another young boy wearing a black hoodie to wash his hands.\", \" The three kids are having fun in the water as they wash their hands clean.\"]}, \"v_1P_y_DLlg-E\": {\"duration\": 26.29, \"timestamps\": [[0, 4.07], [4.21, 13.01], [13.14, 16.17], [16.3, 26.29]], \"sentences\": [\"A lady stands in a yard holding a leaf blower before stepping over the cord.\", \" The lady blows the leafs as she walks around the yard.\", \" The lady points the tool at the camera and laugh.\", \" The lady continues to blow the leaves.\"]}, \"v_QHJTOHgjDMw\": {\"duration\": 96.13, \"timestamps\": [[0, 11.06], [11.54, 55.76], [57.68, 96.13]], \"sentences\": [\"A girl walks into a room, seeing sheet music at a piano.\", \" She opens the piano and begins to play.\", \" She thinks about a couple while she is playing.\"]}, \"v_bLqd98mmu3w\": {\"duration\": 94.65, \"timestamps\": [[0, 8.52], [8.52, 14.2], [15.14, 22.24], [24.61, 60.1], [70.98, 94.65]], \"sentences\": [\"A woman is scared of going in the water and says she cant do this.\", \" A group of people are sitting in a pool of water that is precariously close to the edge of a waterfall.\", \" The woman jumps in the water and everyone cheers.\", \" The group of people are laughing and talking while more people jump in the water.\", \" Scenes of the waterfall are viewed.\"]}, \"v_MEuGzNPI1pw\": {\"duration\": 79.6, \"timestamps\": [[0, 18.71], [33.43, 79.6]], \"sentences\": [\"A man prepares for a gymnastics routine on the parallel bars.\", \"  The crowd seems to approve when he flips and catches himself before then dismounting.\"]}, \"v_qU_605hliNw\": {\"duration\": 172.39, \"timestamps\": [[0, 67.23], [48.27, 131.01], [124.12, 171.52]], \"sentences\": [\"A camera pans all around a wooded area and leads into two people riding around on skis.\", \" Several shots are shown of various people riding behind a boat on skis and performing tricks.\", \" The people continue riding as well as hanging on the side on a large pole.\"]}, \"v_hyW_cjYi8P4\": {\"duration\": 189.45, \"timestamps\": [[4.74, 107.04], [30.31, 143.04], [91.88, 186.61]], \"sentences\": [\"A man is seen speaking to the camera while presenting various objects in front of him.\", \" The man then uses a marker to dig up the side of a table and fill it in.\", \" He shows how to use the pen on several objects while filling it in and sanding it afterwards.\"]}, \"v_BC1ZIeZvFXw\": {\"duration\": 117.45, \"timestamps\": [[0, 86.32], [46.39, 55.2], [62.25, 73.99], [88.67, 117.45]], \"sentences\": [\"A boy is riding a long board down various road ways.\", \" He does a flip trick riding down one of the road ways.\", \" He winds back and fourth down the snowy road.\", \" He skateboards at night and the logo is shown.\"]}, \"v_LxntXVcMxtc\": {\"duration\": 38.08, \"timestamps\": [[0, 6.09], [9.14, 10.66], [22.85, 30.27], [12.38, 16.18]], \"sentences\": [\"Two girls in karate class bow forward and then to each other before practice.\", \" The girl dodges an attack by taking a knee while blocking a hit.\", \" The karate students punch and block with their wrists.\", \" The girl does a standing spinning kicks.\"]}, \"v_TqO-bmGQGiY\": {\"duration\": 108.88, \"timestamps\": [[0, 9.8], [9.8, 92], [92.55, 108.88]], \"sentences\": [\"Two dogs wearing clothing run together up stairs.\", \" The two dogs are shown running together amidst crowds in several different locations while following a man.\", \" The man teaches one dog to pull another by the leash.\"]}, \"v_TXSNkjjTzdE\": {\"duration\": 225.32999999999998, \"timestamps\": [[0, 45.07], [45.07, 193.78], [193.78, 206.17], [207.3, 225.33]], \"sentences\": [\"A woman talks and fix her wet hair, also she shows a brush and a dry hair.\", \" The woman brush her hair on different directions using a hair dryer.\", \" Then, the woman stops and shows her hairstyle while talking.\", \" After, the woman shows the direction to comb hair, then uses a hair iron to straight the hair.\"]}, \"v_gY5akj1YcMk\": {\"duration\": 33.46, \"timestamps\": [[6.69, 27.44], [10.54, 15.06], [17.9, 26.6]], \"sentences\": [\"A man does wave wheels in a canoe.\", \" He is shown doing downstream momentum, rolling over in his canoe.\", \" Now we see set edge and plant blade as he moves upstream.\"]}, \"v_j_Xr8nLEjLQ\": {\"duration\": 141.99, \"timestamps\": [[3.55, 51.83], [51.83, 121.4]], \"sentences\": [\"A person stands on a rope, and then he jumps over a rope.\", \" The person jumps on his feet, as well on this butt and body.\"]}, \"v_5QDwobEnN3g\": {\"duration\": 84.36, \"timestamps\": [[0, 37.12], [24.04, 81.41]], \"sentences\": [\"A family is seen sitting on the beach making sand castles with a object.\", \" People stand around to watch them work and the camera pans around the kids playing in the sand.\"]}, \"v_iM8rmKLJnt8\": {\"duration\": 56.05, \"timestamps\": [[0, 11.21], [11.21, 42.04]], \"sentences\": [\"woman is painting the fence with white paint.\", \" man is painting a green bench in the park.\"]}, \"v_0ysVELHeEyc\": {\"duration\": 165.44, \"timestamps\": [[0, 3.31], [3.31, 30.61], [30.61, 32.26], [32.26, 53.77], [53.77, 61.21], [61.21, 94.3], [94.3, 99.27], [99.27, 126.56], [126.56, 132.35], [132.35, 165.44]], \"sentences\": [\"Text appears on the screen briefly.\", \" The camera pans down the side of a fence.\", \" It stops at a broken section.\", \" It continues to pan down the fence.\", \" Nails are hammered into the fence.\", \" They continue down the fence and remove some dead plants.\", \" They show a product used to clean the fence.\", \" A man sprays the fence with the product.\", \" He drops it and gets some paint.\", \" A painted section of the fence is shown.\"]}, \"v_PWrVWeH45Zo\": {\"duration\": 44.44, \"timestamps\": [[0, 44.44], [2, 5.33], [32.67, 36.89]], \"sentences\": [\"Boys are moping the tiled floor.\", \" A boy in short places his mop in a yellow bucket.\", \" A lady walks away with a long clear object in her hand.\"]}, \"v_agr3ZKq1Iso\": {\"duration\": 90.3, \"timestamps\": [[0, 90.3], [13.09, 17.16], [26.64, 36.12], [36.57, 40.64], [70.89, 76.31]], \"sentences\": [\"Children ride in bumper cars on an amusement ride.\", \" One person follows close behind a car in front of him riding his bumper.\", \" The group gets stuck in a a large traffic jam after bumping each other.\", \" The cars turn around and get out of the traffic jam.\", \" A boy crashes into the back of a stopped car.\"]}, \"v_39FIjDeot-s\": {\"duration\": 105.84, \"timestamps\": [[0, 59.27], [59.27, 105.84], [61.91, 105.84]], \"sentences\": [\"a lot of kids ar standing ni a basket court doing boxing movements.\", \" little girls are standing in the middle of a court practicing boxing.\", \" people are sitting on chairs in a wooden court.\"]}, \"v_rVLkm3MLzns\": {\"duration\": 218.07999999999998, \"timestamps\": [[0, 98.14], [101.41, 218.08]], \"sentences\": [\"A man in ski gear is standing on a snowy hill.\", \" He and others begin skiing down the slopes, kicking up snow and traveling through tunnels.\"]}, \"v_H8f7pTaBFKk\": {\"duration\": 169.3, \"timestamps\": [[0, 92.27], [92.27, 169.3]], \"sentences\": [\"A man is seen scraping off a car that is covered with snow and speaking to the camera.\", \" The camera follows the man around as he continues to scrap off the car and speaking to the camera.\"]}, \"v_0-F3q8Aj9Zk\": {\"duration\": 207.4, \"timestamps\": [[0, 6.22], [20.74, 25.93], [26.96, 28], [29.04, 30.07], [31.11, 34.22], [46.67, 71.55], [72.59, 85.03], [99.55, 140], [143.11, 150.37], [162.81, 207.4]], \"sentences\": [\"A teenage boy dances around in the background while another teenage boy wearing practices high jump in a school cafeteria.\", \" A teenage boy completes a high jump landing on his back on the mat.\", \" Several adults and teenagers are standing and sitting around the high jump mat while a boy in black does the high jump.\", \" The boy in black does another high jump while another teenage boy watches in the background.\", \" The same boy in black does a high jump while a taller boy in white walks past.\", \" The same high jump is shown slowly to point out mistakes the boy is making.\", \" A different boy wearing white does the high jump while other people stand and sit nearby.\", \" The high jump from the boy wearing white is replayed to point out mistakes.\", \" A third boy wearing blue does the high jump three times in a row with others in the background.\", \" A replay of the boy in blue is played to point out mistakes he is making.\"]}, \"v_7kQ3JRkEQr0\": {\"duration\": 66.55, \"timestamps\": [[0, 63.89], [2.33, 63.89], [2.33, 66.55]], \"sentences\": [\"Two girls are standing up doing karate.\", \" People are sitting down watching them.\", \" A woman in a black robe is standing up next to them.\"]}, \"v_R0sADQPdso8\": {\"duration\": 114.34, \"timestamps\": [[0, 4], [4, 18.29], [18.29, 80.61], [80.61, 83.47], [84.04, 98.9], [98.33, 114.34]], \"sentences\": [\"We see an opening title screen.\", \" A lady speaks in front of a plaza.\", \" the lady hula hoops in short shorts and a tight shirt in a plaza and we see a timer in the upper right corner periodically.\", \" The timer reads The lady hula hoops for 2 minutes and seventeen seconds.\", \" The lady speaks to the camera again.\", \" We see the ending YouTube screen.\"]}, \"v_DLfOiuxMstg\": {\"duration\": 56.05, \"timestamps\": [[0, 7.85], [7.85, 12.61], [14.57, 23.54], [24.1, 24.94], [32.79, 48.77], [49.61, 51.57]], \"sentences\": [\"A envelope with a key on it is shown.\", \" A woman wraps a book in brown paper.\", \" A woman in a gray sweater is talking.\", \" A woman waves at the camera.\", \" They finish wrapping the book and put the envelope on the front of the package.\", \" The words thank you is stamped inside a book.\"]}, \"v_X7f-hwiYZ1Q\": {\"duration\": 167.77, \"timestamps\": [[0, 87.24], [65.43, 165.25]], \"sentences\": [\"A woman is seen speaking and laughing to the camera and leads into her holding up a magazine and presenting pages to the camera.\", \" The woman presents more objects to the camera and then uses one to brush her teeth while still speaking to the camera.\"]}, \"v_rVYuVW9tB3U\": {\"duration\": 80.13, \"timestamps\": [[0, 10.02], [0, 80.13], [10.42, 27.25], [27.65, 34.06], [34.46, 42.07], [42.47, 80.13]], \"sentences\": [\"Two suma wrestlers walk to a ring.\", \" A crowd watches the fight.\", \" The suma wrestlers prepare themselves.\", \" A referee calls them into position.\", \" The suma wrestlers begin fighting, with one of them immediately throwing the other to the ground.\", \" The winning suma wrestler is applauded and cheered on by the crowd as he walks off the stage.\"]}, \"v_dH_gpSfaA6E\": {\"duration\": 194.33, \"timestamps\": [[0, 30.12], [30.12, 194.33]], \"sentences\": [\"To wrap a circular gift you will need ribbon scissors, paper scissors, ribbons, tape, Japenese using paper because its soft and strong and the color doesn't come off.\", \" First measure the paper correctly by measuring at the sides then fold paper in the middle holding the paper the same way on the other side then close paper in the middle of the joint to make a crease then repeat until crease is all around then put tape on top then tie on the ribbon.\"]}, \"v_c-aDlEaZmFk\": {\"duration\": 58.91, \"timestamps\": [[8.54, 20.91], [20.91, 41.53], [41.53, 49.78], [49.78, 58.91]], \"sentences\": [\"A lady gymnast dressed in black leotards is performing gymnastics on bars.\", \" She flawlessly jumps on the bar and swings back and forth from one bar to another without falling off.\", \" She successfully completes her round and jumps off of the bars.\", \" The crowd cheers loudly as they applaud for the gymnast.\"]}, \"v_3TwqeiVbpS8\": {\"duration\": 151.4, \"timestamps\": [[14.38, 134.74], [58.29, 62.83], [62.83, 86.3], [90.08, 96.89]], \"sentences\": [\"A series of people violently falling off of water skis while water skiing exhibits.\", \"  A person crashing into a family on the beach from going full speed on a water ski occurs.\", \" Several more people are shown crashing while on water skis with one man crashing and the water turning red at the point of impact and crashing.\", \"  A last clip shows someone going  up a ramp on water skis and then crashing into the water.\"]}, \"v_at2XbuHG5WQ\": {\"duration\": 91.7, \"timestamps\": [[0, 6.88], [10.55, 57.31], [58.69, 91.7]], \"sentences\": [\"A white fence is shown outside a house.\", \" A man is holding a scraper and brush.\", \" He scrapes the paint off the fence, then repaints it with fresh paint.\"]}, \"v_Ed08LA1pjIg\": {\"duration\": 185.48, \"timestamps\": [[0, 65.85], [27.82, 96.45], [46.37, 185.48]], \"sentences\": [\"The person is skiing down the high snow covered mountains.\", \" A red helicopter is flying around as the skiers are climbing the top mountain.\", \" The skiers ski down the slope, ride their motorcycles, went fishing , and ski.\"]}, \"v_boqZwv68BiM\": {\"duration\": 21.15, \"timestamps\": [[0, 9.73], [8.78, 21.15]], \"sentences\": [\"A close up of a tool is shown followed by a person cutting along a rug.\", \" The person continues using the tool along the sides and the camera fades to black shortly after.\"]}, \"v_Bg9hw5K-m6Q\": {\"duration\": 59.24, \"timestamps\": [[0, 5.92], [6.22, 37.91], [41.46, 59.24]], \"sentences\": [\"A man is standing in his yard.\", \" He uses a brush to brush his very long hair.\", \" He brushes it from several different angles.\"]}, \"v_MyMYuXh8E0Y\": {\"duration\": 226.35, \"timestamps\": [[1.13, 3.4], [2.26, 28.29], [4.53, 29.43], [4.53, 30.56], [29.43, 70.17], [74.69, 82.62], [86.01, 218.43], [107.52, 115.44], [117.7, 212.77], [211.64, 216.16], [218.43, 226.35]], \"sentences\": [\"A man in a black hoodie talks to the camera.\", \" A second man in a blue hoodie walks in and talks to the camera.\", \" The man in the black hoodie shows off a bottle of mouth wash.\", \" The two men talk to each other.\", \" The man in the blue hoodie pours the mouthwash in two glasses.\", \" The two men take classes and \\\"cheers\\\" each other.\", \" The two men keep the mouthwash in their mouths.\", \" The man in the black hoodie shows off his t-shirt.\", \" The two men show off signs that insult each other and try to make each other laugh.\", \" The man in the blue hoodie laughs first.\", \" The men both spit the mouthwash in the sink.\"]}, \"v_DvtfiPvPhZ8\": {\"duration\": 108.3, \"timestamps\": [[2.17, 38.45], [35.74, 75.81], [58.48, 106.13]], \"sentences\": [\"A man and woman is seen walking onto a large stage away from one another.\", \" The two then begin performing a tango routine with one another.\", \" The man lifts the woman all around while they continue dancing and end by holing a pose.\"]}, \"v_-HaFSqzE4Nc\": {\"duration\": 53.52, \"timestamps\": [[0, 53.52], [4.01, 52.72]], \"sentences\": [\"A teenage boy and girl are sitting in s car smoking from a hose.\", \" The girl and boy take turns blowing smoke rings.\"]}, \"v_aM9WZ1_8yC0\": {\"duration\": 172.07999999999998, \"timestamps\": [[0, 172.08], [69.69, 74], [116.16, 137.67], [141.11, 172.08]], \"sentences\": [\"A man is throwing darts at a dart board.\", \" He points to the words on his shirt.\", \" He shows the darts in the dart board.\", \" He shows his hand while throwing the dart.\"]}, \"v_hShYj_OGFtc\": {\"duration\": 191.86, \"timestamps\": [[1.92, 66.19], [48.92, 143.89], [124.71, 190.9]], \"sentences\": [\"A person is seen kneeling down in a large hole rubbing plaster along a wall.\", \" The man rubs plaster using a tool and stands up to grab paper.\", \" He rubs the paper along the wall and ends by looking up to the camera.\"]}, \"v_2tpwfPdSEVo\": {\"duration\": 204.75, \"timestamps\": [[0, 11.26], [13.31, 55.28], [58.35, 204.75]], \"sentences\": [\"A woman talks as she is seated on the ground.\", \" She shows off a pair of clipping scissors.\", \" She then uses them to gently but quickly trim a cat's nails while another woman assists her.\"]}, \"v_uxRBnIWE79s\": {\"duration\": 63.79, \"timestamps\": [[0, 7.97], [7.97, 54.86], [54.86, 59.64], [59.64, 63.79]], \"sentences\": [\"People are indoors and the focus is on various clips of various different people fencing one another.\", \" A fencing match between two women begin and the wording on the screen say's their names are Michelle Li & Cindy Gao, and they are shown fighting from various different angles doing many fencing moves.\", \"When they are done fighting the women are shown standing close together, smiling, and the woman on the left has her arm resting on the shoulder of the woman on the right.\", \" The outro is a white screen with multiple colors on it that include logos, website and the name of the event.\"]}, \"v_at3YFTd6nEw\": {\"duration\": 222.93, \"timestamps\": [[0, 37.9], [37.9, 94.74], [94.74, 156.05], [156.05, 222.93]], \"sentences\": [\"A woman is smiling sitting in a tattoo sitting on the chair waiting patiently, smiling and being over friendly.\", \" He is wearing gloves and grabs a clamp then hr puts it in her mouth and clamps her lip with it.\", \" Then grabs a needle and sticks it through her lip, he gets a piercing and puts it on for her.\", \" After that she gets up off the chair and walks to the mirror to check it out for herself.\"]}, \"v_qI_Bo0D6p7I\": {\"duration\": 221.32, \"timestamps\": [[0, 33.2], [33.2, 141.65], [138.33, 212.47], [211.36, 221.32]], \"sentences\": [\"A small girl is seen hula hooping over and over again with her hands on her hips.\", \" The girl spins around with the hula hoop moving from her feet to her knees as well as the rest of her body.\", \" At one point she throws the hula hoop accidentally but picks it back up and continues spinning with it.\", \" In the end she falls to the ground with the hoop still in her hands.\"]}, \"v_IN8-B39kq_k\": {\"duration\": 66.76, \"timestamps\": [[0, 21.7], [21.7, 66.76], [25.7, 32.38], [35.38, 58.75]], \"sentences\": [\"Two men introduce themselves in the beginning of the video and tell the viewers that they will be talking about tattoos.\", \" One of the guys comes on the screen and gives some tips about how to prepare to give a tattoo.\", \" A close up of a man is shown giving a tattoo to someone.\", \" Several clients are shown close up on the screen while they are in the process of a tattoo.\"]}, \"v_iEGYd3DJ3Wo\": {\"duration\": 17.55, \"timestamps\": [[0, 0.7], [0.96, 14.47], [14.65, 17.55]], \"sentences\": [\"A man dressed as a referee is shown in a hockey rink.\", \" A number of men play are shown playing hockey.\", \" Several of the hockey players start a fight.\"]}, \"v_02V8Hz-M6BM\": {\"duration\": 55.43, \"timestamps\": [[0, 55.43], [7.76, 36.58], [26.05, 44.62]], \"sentences\": [\"The people are walking in the street with marching band.\", \" The men in green vest are walking on both sides of the parade.\", \" The man in neon green jacket is taking picture of the parade.\"]}, \"v_oSyBkE3gYMM\": {\"duration\": 90.33, \"timestamps\": [[0, 60.97], [2.71, 54.65], [10.39, 48.32], [49.23, 69.55], [66.39, 82.2], [79.04, 88.52]], \"sentences\": [\"There's a young man skateboarding through a two lane empty road that has trees on both sides.\", \" He goes steadily through the long and winding road without stopping.\", \" He passes through curves and turns around to adjust his speed.\", \" Then as he approaches a steep curve, he tries to turn but ends up falling down and bruising himself.\", \" He gets up immediately and shows his friends his scraped and injured elbow.\", \" Another friend of his also shows his injuries that he's had from skateboarding.\"]}, \"v_h9LI_6eBzw4\": {\"duration\": 184.37, \"timestamps\": [[0, 182.52], [79.28, 182.52]], \"sentences\": [\"A montage of canoe sprinting is shown.\", \"  The winners celebrate and both men's and women's are shown.\"]}, \"v_w_X7cLnFCYw\": {\"duration\": 104.96000000000001, \"timestamps\": [[0, 5.77], [5.77, 16.27], [16.27, 88.69], [88.69, 104.96]], \"sentences\": [\"An introduction comes onto the screen about a video showing how to triple jump.\", \" A guy is shown running down a track making a jump.\", \" The jump is shown again in slow motion for better understanding.\", \" The guy is then shown exiting the track.\"]}, \"v_q0o0k2uD0co\": {\"duration\": 29.09, \"timestamps\": [[0, 29.09], [20.5, 29.09], [26.9, 29.09]], \"sentences\": [\"A person is washing a car.\", \" The person changes hands and washes with their other hand.\", \" They then use both hands.\"]}, \"v_FKphYO14qhw\": {\"duration\": 230.76, \"timestamps\": [[0, 48.46], [61.15, 162.69], [166.15, 230.76]], \"sentences\": [\"A man is leaning over a large pool table.\", \" He uses a cue to shoot the ball toward the pocket.\", \" He tries again and again until they go into the pockets.\"]}, \"v_mRyXubjYWEo\": {\"duration\": 104.0, \"timestamps\": [[1.56, 24.96], [25.48, 60.84], [61.36, 91], [91, 102.96]], \"sentences\": [\"A man first salutes and then does karate inside a room while spinning on one leg, next he makes salute.\", \" A male makes the cross signal in a squatting position, then he spins his body.\", \" Then, the man and the male fight while jumping and kicking.\", \" After, the male kick the face of the man with his feet and does a spin with a hand on the floor while the man lands on a foamy mat.\"]}, \"v_43hQNmW-6_k\": {\"duration\": 170.37, \"timestamps\": [[0, 23.85], [29.81, 105.63], [110.74, 170.37]], \"sentences\": [\"A man is doing the splits inside a gym.\", \" He talks to the camera about the procedure.\", \" He leans forward, stretching his legs.\"]}, \"v_6yVhTyPaaLQ\": {\"duration\": 160.43, \"timestamps\": [[0, 5.61], [6.42, 86.63], [86.63, 115.51], [116.31, 151.6]], \"sentences\": [\"A woman stands on front a paint holding a bottle, and then paintings on canvas are shown in a slideshow.\", \" Then, the woman paints two canvas using a bottle, when it is necessary the woman rotates the canvas.\", \" Then, the woman puts the canvas on the floor and continues painting with the bottle.\", \" After, the woman hangs the paintings on the, then she puts the paintings on the floor and then hang on the wall to continues painting.\"]}, \"v_Xg_MSiPhJns\": {\"duration\": 93.39, \"timestamps\": [[17.28, 32.22], [52.77, 57.9], [63.51, 78.45]], \"sentences\": [\"A person is spreading something green on bread.\", \" They put the sandwich into a grill.\", \" They take the sandwich off the grill and put it onto a plate.\"]}, \"v_HjRevGoqqz0\": {\"duration\": 176.84, \"timestamps\": [[0, 2.65], [3.54, 175.96], [3.54, 7.96], [7.96, 175.96], [87.54, 101.69]], \"sentences\": [\"The credits of the clip are shown.\", \" People are interacting in an inside court.\", \" People run to pick up balls from the center of the court.\", \" Two teams are playing dodge-ball.\", \" A red team member runs up and throws a ball directly at an opponent.\"]}, \"v_SgkdciuEuKs\": {\"duration\": 68.5, \"timestamps\": [[0, 68.5], [0, 18.15], [18.49, 31.51], [31.51, 60.62], [60.62, 68.5]], \"sentences\": [\"A woman demonstrates how to dry a counter top and sink of water splashed from a sink faucet with a paper towel.\", \"  A woman stands in a kitchen next to a sink and talks to the camera.\", \"  the woman points to a water splash on the counter next to the sink after turning on the water at the sink.\", \"  The woman then grabs a paper towel and wipes down the sink counter, the inside of the sink and the faucet spout.\", \"  The woman then returns to talking to the camera.\"]}, \"v_SfYJTxMRKDE\": {\"duration\": 230.06, \"timestamps\": [[0, 32.21], [32.21, 39.11], [40.26, 67.87], [69.02, 126.54], [128.84, 162.2], [163.35, 227.76]], \"sentences\": [\"A man hold a dish with food while talking, then, two girls run in the field were other people are walking.\", \" People play throwing balls on the ground.\", \" After, a band plays and people dance including a bride.\", \" The people get in boats and sail in the river while other people rest.\", \" People pass a small waterfall with choppy water, and then they go down the river.\", \" People dive in the river, and then rest while drinking, then go sail in the river.\"]}, \"v_I71OenniCZI\": {\"duration\": 56.45, \"timestamps\": [[0, 3.39], [6.21, 29.64], [32.74, 56.45]], \"sentences\": [\"A group of senior citizens are gathered at a court.\", \" They are engaged in a game of curling.\", \" They hit the puck, pushing it forward.\"]}, \"v_tJiYIajy41Q\": {\"duration\": 15.02, \"timestamps\": [[0, 3.91], [4.06, 11.42], [11.04, 14.5]], \"sentences\": [\"A man is seen close up standing on a field.\", \" A person then passes the man a ball to move up the field.\", \" The people then begin kicking the ball around.\"]}, \"v_Kt1JpqwDvl8\": {\"duration\": 46.51, \"timestamps\": [[1.63, 9.53], [9.53, 13.72], [13.95, 19.77], [19.77, 36.74]], \"sentences\": [\"A person vacuum the inside of a car, while other men clean by hand the car with detergent and water.\", \" Then, a man dry the car with clothes.\", \" Other cars are washed in a automatic car machine.\", \" After, people cleans the car with cloths inside and outside by hand.\"]}, \"v_PhJVHb-J7zM\": {\"duration\": 96.92, \"timestamps\": [[0.97, 27.62], [26.65, 72.21], [66.88, 94.01]], \"sentences\": [\"A close up of a floor is seen followed by a young child kneeling before another.\", \" A person is seen sitting on a bed with the young child shines the shoes of another.\", \" The kids continues to shine the shoes of another.\"]}, \"v_134sVNOzn_w\": {\"duration\": 125.37, \"timestamps\": [[11.91, 50.15], [52.65, 118.47]], \"sentences\": [\"A man is seen using a hammer and tool to knock off pieces of a roof.\", \" The man then lays a bar down and continues placing roof shingles on while the camera pans around.\"]}, \"v_dQyZheN0Fw0\": {\"duration\": 149.18, \"timestamps\": [[7.46, 45.5], [60.42, 118.6], [118.6, 147.69]], \"sentences\": [\"An animated image of a curling brush is shown.\", \"  A woman bends down and puts something on a scale.\", \" She then slides across the ice.\"]}, \"v_QwLiAkfSa9A\": {\"duration\": 115.00999999999999, \"timestamps\": [[0, 37.95], [37.38, 76.48], [76.48, 112.71]], \"sentences\": [\"A larger woman is seen sitting on a chair while a man wipes down her lip and puts a mark onto it.\", \" The woman lies down and the man puts a needle into her lip creating a piercing.\", \" The woman sits up and smiles while the man wipes down her lip and she continues speaking.\"]}, \"v_ma0HmFqdFqg\": {\"duration\": 107.37, \"timestamps\": [[0, 34.9], [32.75, 105.76]], \"sentences\": [\"A woman is seen wiping down a mirror that leads into her standing behind a counter.\", \" She pours ingredients into a buckets, soaks the sponge in the bucket, then wipes down a mirror with a wiper.\"]}, \"v_rOeNl9qIoVI\": {\"duration\": 16.84, \"timestamps\": [[0, 9.18], [9.18, 16.84]], \"sentences\": [\"A person is seen riding along the water in a kayak while another man watches him on the side.\", \" He continues riding along the water in the kayak and doing flips in the water.\"]}, \"v_mvWKOkRzfos\": {\"duration\": 80.27, \"timestamps\": [[3.61, 76.66], [9.63, 11.24], [36.12, 52.18], [59.8, 69.44]], \"sentences\": [\"People are playing volleyball in the sand.\", \" A person falls into the sand.\", \" A woman in a blue shirt is talking to the camera.\", \"A woman in a black shirt is talking to the camera.\"]}, \"v_oj6czGQ830c\": {\"duration\": 222.73, \"timestamps\": [[0, 61.25], [61.25, 73.5], [73.5, 82.41], [83.52, 181.52], [181.52, 206.02], [206.02, 222.73]], \"sentences\": [\"Men and woman posing and smiling at the camera.\", \" A groups men and woman dressed in cold water diving gear arrive in a van.\", \" The divers march in single file on a dock to the water and pose with their diving gear on.\", \" The divers are under water performing different sunken vehicles and playing around and posing.\", \"The divers are featured in some trick photography.\", \" The divers relax at a restaurant with their regular close on seated at a round picnic table.\"]}, \"v_efkbBgZ2Mzo\": {\"duration\": 60.26, \"timestamps\": [[0, 60.26], [11.75, 59.95]], \"sentences\": [\"A person does a tutorial on how to use an elliptical most efficiently.\", \"  A woman does the backwards elliptical while smiling sometimes.\"]}, \"v_8-muYZwFf9c\": {\"duration\": 198.11, \"timestamps\": [[0, 69.34], [65.38, 198.11]], \"sentences\": [\"The video leads into various shots of people kite surfing all along the ocean.\", \" The person continues riding all along the water while the camera follows him from a bird's eye view.\"]}, \"v_nSR-JSqGoWQ\": {\"duration\": 143.07999999999998, \"timestamps\": [[0, 17.89], [23.61, 40.06], [42.21, 62.96], [65.1, 77.98], [79.41, 105.88], [107.31, 131.63], [133.78, 143.08]], \"sentences\": [\"A video recap of a beach soccer game begins with an Argentinian goal off a deep pass.\", \" The Brazilians follow up with a goal on a penalty kick, taken by an exuberant keeper.\", \" The Argentinians steal a pass halfway across the sand field and take it down for a goal in the tight corner.\", \" This is immediately followed by another goal from Argentina on a penalty kick.\", \" Brazil finds itself down even more on another Argentinian goal on a beautiful pass and shot across the field.\", \" To make matters worse, Argentina scores on a deep uncontested shot after that.\", \" This game is far too easy for them, and they win by a large score.\"]}, \"v_oW2v7KlfmJk\": {\"duration\": 7.59, \"timestamps\": [[0, 5.81], [5.81, 7.59]], \"sentences\": [\"A man is playing shuffleboard on a ship.\", \"  He turns to the camera and says something.\"]}, \"v_F2x2fynkbAQ\": {\"duration\": 102.35, \"timestamps\": [[9.72, 24.05], [24.56, 56.81], [63.97, 102.35]], \"sentences\": [\"A man dips a rag into a black container.\", \" He begins wiping a shoe with the rag.\", \" He picks up a brush and begins using that to brush the shoe.\"]}, \"v_vMYPNyBR3d0\": {\"duration\": 12.19, \"timestamps\": [[0, 12.19], [8.05, 11.4], [9.02, 12.19]], \"sentences\": [\"We see three men on a boat in a lake.\", \" The left man holds his nears near his chest.\", \" A man acts weird and sprays himself.\"]}, \"v_SXZjg8ap1Uk\": {\"duration\": 186.18, \"timestamps\": [[0, 24.2], [30.72, 132.19], [94.95, 181.52]], \"sentences\": [\"A large group of cheerleaders are seen running through a hole and onto a stage.\", \" The group then begins performing with one another while lifting one another into the air.\", \" The group continue to lift and jump around one another and end by walking off stage.\"]}, \"v_O8jThut7tAQ\": {\"duration\": 155.3, \"timestamps\": [[3.88, 88.52], [88.52, 138.99]], \"sentences\": [\"A person talks and throws a bowling ball on the bowling lane.\", \" The man holds a ball and shows his left leg forward, then throws the bowling ball on the lane while talking.\"]}, \"v_GyOLWizKXaE\": {\"duration\": 123.25, \"timestamps\": [[0, 24.65], [24.03, 88.74], [87.51, 123.25]], \"sentences\": [\"A man is outside with a lawn utensil and he begins cutting the yard.\", \"He moves a knob and then continues to cut the grass and another woman is shown cutting the yard.\", \"Finally,the man comes back and shows how his the object works to cut the grass.\"]}, \"v_vSExyDlV9JA\": {\"duration\": 46.0, \"timestamps\": [[0, 36.57], [20.7, 46]], \"sentences\": [\"A small group of people are seen standing on a sandy beach and leads into a game of volleyball.\", \" The people play back and fourth with one of them spiking the ball and the camera panning around to people watching and celebrating.\"]}, \"v_anfZnOQGPk0\": {\"duration\": 122.28, \"timestamps\": [[0, 28.74], [28.12, 92.93], [80.09, 116.16]], \"sentences\": [\"A young child is seen standing on a stage with others and one begins dancing in the middle.\", \" The young boy then moves in the middle taking turns with others dancing around.\", \" Another man moves to the middle to dance while others watch on the side.\"]}, \"v_DmaPpBMsuXg\": {\"duration\": 25.71, \"timestamps\": [[0.13, 9.38], [8.61, 17.99], [15.04, 24.81]], \"sentences\": [\"A person is seen standing in the middle of a gym holding a tennis racket.\", \" The person then begins hitting a birdie across the gym.\", \" The person continuously hits the object back and fourth while looking to the camera.\"]}, \"v_GG3JgE6hy4g\": {\"duration\": 106.09, \"timestamps\": [[0, 50.39], [49.33, 106.09]], \"sentences\": [\"A man is seen standing on a roof pushing pieces of debris up with a stick.\", \" The man continues pushing the debris off the roof while digging deeper and deeper into the mess.\"]}, \"v_k25ECDpOD0E\": {\"duration\": 183.09, \"timestamps\": [[4.58, 51.27], [51.27, 84.22], [84.22, 173.02], [173.02, 178.51]], \"sentences\": [\"A person brush the teeth of a dog while holding the back neck.\", \" After, she taps the chest of the dog and put toothpaste on the brush and continue brushing the dog's teeth.\", \" After, the person tap again the the chest, put toothpaste on the brush and brush the dog's teeth.\", \" When the person finish to brush, she kiss the dog.\"]}, \"v_4HC2-Unzuu4\": {\"duration\": 71.38, \"timestamps\": [[0, 71.38], [8.57, 47.47], [48.54, 66.74], [67.45, 71.38]], \"sentences\": [\"A woman is talking to the camera surrounded by alcohol bottles.\", \" The woman begins pouring different alcohols and lemon juice into a glass of ice.\", \" The woman shakes the drink mixture and strains it into another glass.\", \" The woman puts a small straw into the drink and holds it up and smiles.\"]}, \"v_dE1NAofn3ks\": {\"duration\": 46.23, \"timestamps\": [[0, 4.39], [4.39, 18.95], [18.95, 33.29], [33.29, 46.23]], \"sentences\": [\"A curler prepares to make a curling shot while being watch be other people in the arena.\", \" She makes the shot and lets go of the puck as the other team members chase it and sweep the ice.\", \" Another shot is made, and team members proceed to follow the shot and sweep the ice.\", \" A third shot is then made and the curlers allow the shot to knock out another puck.\"]}, \"v_3ZUy7h-dN38\": {\"duration\": 190.92, \"timestamps\": [[1.91, 175.64], [86.87, 190.92]], \"sentences\": [\"A man wearing a black hat plays guitar for the camera to see.\", \" He continues strumming his fingers and moving his hands around the instrument until the song ends as well as the video.\"]}, \"v_aEG-_-m49mY\": {\"duration\": 220.64, \"timestamps\": [[0, 220.64], [15.44, 29.79], [24.27, 69.5], [75.02, 123.56], [124.66, 220.64], [179.82, 220.64]], \"sentences\": [\"A woman is recording a video of a little boy who is painting a fence.\", \" The camera pans to the rest of the backyard and fence.\", \" Another little boy is painting the other end of the fence, and the camera goes up to him.\", \" The video then cuts to show that the fence is mostly completed.\", \" The video then shows the two boys working together to complete the final panel of the fencing.\", \" The video ends as the camera pans out to show the house and the freshly painted fence.\"]}, \"v_ui7LIgAF8-E\": {\"duration\": 20.36, \"timestamps\": [[0, 9.16], [9.77, 20.36]], \"sentences\": [\"A woman is seen performing a jump off of a high dive and landing into a pool.\", \" More shots of her diving are shown again shortly after in slow motion.\"]}, \"v_y1F_Hzpux48\": {\"duration\": 107.25, \"timestamps\": [[0, 11.26], [11.26, 79.9], [81.51, 107.25]], \"sentences\": [\"A large fish is seen swimming under frozen water.\", \" A man creates a hole in the ice to catch the fish.\", \" He catches it on a line, and pulls until He is able to get it through the hole.\"]}, \"v_kuyuhXuMPX4\": {\"duration\": 133.28, \"timestamps\": [[0, 13.33], [13.33, 16.66], [17.99, 31.32], [31.32, 47.98], [49.98, 97.3], [97.96, 103.29], [106.63, 122.62], [123.95, 133.28]], \"sentences\": [\"We see the intro and intro scenes.\", \" A man stands in a garage with two shovels.\", \" We then see his shoveling supplies.\", \" The man stretches and puts on his winter clothes.\", \" He sprays his shovel with nonstick spray and shovels his driveway.\", \" The man lays down and had a hard time breathing.\", \" After putting down sand he drinks a warm beverage.\", \" We see the ending credits screen.\"]}, \"v_yOcWUk9cOws\": {\"duration\": 30.3, \"timestamps\": [[0, 13.79], [13.64, 30.3]], \"sentences\": [\"Several girls are outside in a large green field playing a game.\", \"The girl in front of the camera is dressed in a yellow shirt and black shorts hit the ball with the stick and begins jumping in the air.\"]}, \"v_15Yf7NIDLtM\": {\"duration\": 155.3, \"timestamps\": [[0, 39.6], [38.05, 110.26], [102.5, 148.31]], \"sentences\": [\"A shot of a christmas tree is shown followed by a man walking into frame.\", \" The man then begins decorating the tree as well as others.\", \" People continuously decorate the tree moving quickly around one another and end by presenting it to the camera.\"]}, \"v_0KwSF8NdEug\": {\"duration\": 217.78, \"timestamps\": [[0, 100.18], [101.27, 147], [141.56, 211.25]], \"sentences\": [\"A woman is seen speaking to the camera while holding up a bag of cookies as well as a plate.\", \" Various ingredients are then see laid out in bowls.\", \" The woman mixes all the ingredients together and squishes them into tiny balls to plate in the end.\"]}, \"v_-X7fBYN5fBc\": {\"duration\": 25.54, \"timestamps\": [[0, 4.21], [4.21, 7.66], [7.66, 14.81], [14.81, 25.54]], \"sentences\": [\"Men are standing against the fence, the gates are up and a rider is waiting to start.\", \" Once the gate opens a little cow comes running out and the horse chases after.\", \" The rider throws a rope at the cow trying to catch it and then jumps off the horse.\", \" After he jumps off the horse he starts to pin the cow down and tie the rope around its legs very roughly.\"]}, \"v_8OSnT8UvJkU\": {\"duration\": 161.93, \"timestamps\": [[0, 48.58], [48.58, 128.73], [127.92, 161.93]], \"sentences\": [\"A woman with a nose ring is seen speaking to the camera and leads into someone cutting her hair.\", \" The person cuts around the sides and the woman is seen wearing glasses and posing with her new style.\", \" More shots of a person cutting is shown while the woman speaks to the camera.\"]}, \"v_pw0A0Uv2TZM\": {\"duration\": 58.07, \"timestamps\": [[0, 5.81], [6.39, 29.33], [29.91, 58.07]], \"sentences\": [\"A young girl is inside a bathroom with her dad.\", \" He rubs water up and down her face.\", \" She giggles and smiles as he does so.\"]}, \"v_cIN4HNSRoAg\": {\"duration\": 66.6, \"timestamps\": [[1.33, 61.27], [6.66, 66.6]], \"sentences\": [\"A close up shot of a fooseball game is shown as the plastic people push around a ball.\", \" Hands are seen moving the ball around as well as grabbing the poles to play.\"]}, \"v_lIXHKxbq59c\": {\"duration\": 71.63, \"timestamps\": [[0, 46.92], [46.92, 63.75], [63.75, 71.63]], \"sentences\": [\"Some people are shown as they prepare to tube down a long snow slope.\", \" They begin to head down the slope until they reach the end and are able to stop themselves.\", \" After that, they get out of their tubes and begin to exit.\"]}, \"v_-fBxVUu0KcQ\": {\"duration\": 145.17000000000002, \"timestamps\": [[0, 145.17], [57.34, 67.5], [76.94, 79.84]], \"sentences\": [\"People are playing a sport on sand.\", \" A man in a green uniform gives a high five to someone on the sidelines.\", \" A man falls down into the sand.\"]}, \"v_ZyOPt4sgsbs\": {\"duration\": 106.67, \"timestamps\": [[0, 9.07], [11.2, 20.8], [21.33, 103.47]], \"sentences\": [\"A young woman is seen holding onto a cat and smiling towards the camera.\", \" The cat begins to fuss around and the woman continues to smile.\", \" The woman then cuts the cats claws while the cat still moves around and she holds up the cat.\"]}, \"v_OD5rJOPicoM\": {\"duration\": 30.58, \"timestamps\": [[0, 17.74], [18.35, 30.58]], \"sentences\": [\"Two people are sailing on boards out on a lake.\", \" One person is seen sailing on their board until they fall off the board and into the water.\"]}, \"v_1qi8ZXUH_wY\": {\"duration\": 82.57, \"timestamps\": [[2.06, 75.97], [7.84, 72.66], [15.69, 57.39], [33.44, 69.36], [62.75, 82.57]], \"sentences\": [\"A group of men are wrapping boxes on a table.\", \" Several people are walking around the area.\", \" A man is getting very in depth on his wrapping and wraps the box tightly.\", \" Another man appears and grabs paper then walks away.\", \" The man wrapping finishes his box.\"]}, \"v_PgZ2e0H1ZVE\": {\"duration\": 186.16, \"timestamps\": [[0, 70.74], [58.64, 134.96], [101.45, 183.36]], \"sentences\": [\"A young man wearing a hat is seen speaking to the camera and holding up a chart.\", \" He continues speaking and begins playing a harmonica.\", \" He holds up the sign more while continuing to play and speak to the camera.\"]}, \"v_ntJk6Rj-lRA\": {\"duration\": 179.7, \"timestamps\": [[3.59, 32.35], [33.24, 75.47], [75.47, 101.53], [101.53, 175.21]], \"sentences\": [\"A person goes upstairs supporting on a crutch, then sits on the last step while a man follows him.\", \" The man lifts up the carpet, then the person gives the man a carpet runner with nails while talking both men.\", \" After, the man puts the carpet runner on the wood step and hummers the loosed nails.\", \" Next, the man put on the carpet and uses a machine and a hammer to fix the loosed carpet.\"]}, \"v_CHaTWk6uqd8\": {\"duration\": 230.76, \"timestamps\": [[1.15, 48.46], [48.46, 163.84], [126.92, 219.22]], \"sentences\": [\"A man is seen speaking to the camera while pointing to a bike frame and spinning around the tire.\", \" The man then uses tools to adjust the tire wheel and continues spinning it.\", \" He is still seen working on the back of the bike while the camera zooms in.\"]}, \"v_NkJA_0tErGY\": {\"duration\": 194.72, \"timestamps\": [[0, 28.23], [28.23, 73.99], [73.99, 136.31], [136.31, 194.72]], \"sentences\": [\"A man is speaking, he had a china cabinet behind him filled with glass product.\", \" He begins to start to show step by step instructions on how to make a sauce .\", \" Then in another frying pan he adds some meat and cheese while his bread is toasting.\", \" He then adds all the ingredients on the bread and cuts it in halves and begins to eat.\"]}, \"v_uMCyo89mK_E\": {\"duration\": 104.75, \"timestamps\": [[0, 32.47], [26.19, 74.37], [72.27, 101.08]], \"sentences\": [\"A large christmas is shown is shown followed by a woman standing beside it.\", \" The girl begins decorating the tree while jumping up and down in place.\", \" She continues bouncing around while decorating the tree and looking off into the distance.\"]}, \"v_3xmgPNrmUYM\": {\"duration\": 56.43, \"timestamps\": [[0.85, 4.8], [3.39, 25.67], [25.96, 50.5]], \"sentences\": [\"A camera zooms in on a weight with a person standing nearby.\", \" A woman is then standing with weights in her hands and doing lunges.\", \" A second woman comes in as well as a man doing various weight lifting moves.\"]}, \"v_QE80ROTC_fI\": {\"duration\": 146.05, \"timestamps\": [[0, 38.7], [34.32, 103.7], [96.4, 141.67]], \"sentences\": [\"A man and dog are seen standing outside in a field with a man playing fetch with a dog.\", \" The man throws the frisbee around with the dog while the animal brings it back.\", \" The man performs several more tricks with the dog using several frisbees.\"]}, \"v_toS-_4Ik5us\": {\"duration\": 113.72999999999999, \"timestamps\": [[0, 39.81], [35.26, 89.85], [96.67, 113.73]], \"sentences\": [\"A person is seen dealing cards as well as several shots of a casino table and poker chips being dealt.\", \" A band is playing, a person is seen smoking a cigarette, as well as people bartending and speaking to one another.\", \" In the end more people are seen enjoying the casino and moving around.\"]}, \"v_NPt1niJMbvE\": {\"duration\": 16.86, \"timestamps\": [[0, 9.95], [2.02, 3.96], [10.03, 16.86], [15, 16.86]], \"sentences\": [\"A gymnast runs fast, then he jumps long in a stadium full of people.\", \" Two men walk holding javelins.\", \" After, the gymnast jumps happily.\", \" People take pictures of the gymnast.\"]}, \"v_vlwOSDuiKQA\": {\"duration\": 201.97, \"timestamps\": [[0, 65.64], [57.56, 154.51], [144.41, 196.92]], \"sentences\": [\"A man is seen standing in a large room holding up a tennis racket.\", \" Two more people walk into frame and begin hitting the ball around the area.\", \" The men continue to hit the ball around with tennis rackets and chase it around the room.\"]}, \"v_dJVWRkiRXHM\": {\"duration\": 72.6, \"timestamps\": [[0, 72.6], [27.95, 30.85], [44.65, 49.73], [50.82, 72.6]], \"sentences\": [\"A man holding a racket stands in a squash court talking to the camera.\", \" The man bounces and catches a blue ball.\", \" The man then hits the ball off the back wall and catches it.\", \" The man then stands and talks to the camera.\"]}, \"v_5IwVWA2HY5M\": {\"duration\": 140.44, \"timestamps\": [[0, 16.85], [25.98, 63.9], [79.35, 140.44]], \"sentences\": [\"A woman is in a kitchen, talking.\", \" She is showing off an array of sandwich toppings.\", \" She places meat and cheese on bread, then closes the sandwich.\"]}, \"v_0m63LNVHP1U\": {\"duration\": 136.77, \"timestamps\": [[3.42, 61.54], [62.23, 130.61]], \"sentences\": [\"An older woman is seen talking to the camera and leads into her swinging back and fourth with another child.\", \" The child pushes the woman in a swing and continues playing with her on the swing set.\"]}, \"v_bWBcYdYEup4\": {\"duration\": 146.45, \"timestamps\": [[0, 32.95], [33.68, 100.32], [98.12, 146.45]], \"sentences\": [\"Two people are seen performing a fencing match back and fourth while other people practice in the background.\", \" Several shots of people fencing are shown as well as a fencer being interviewed on camera.\", \" More shots of people fencing are shown and ends with many standing around and two shaking hands.\"]}, \"v_Q4UF7Z0ozCw\": {\"duration\": 160.7, \"timestamps\": [[0, 18.48], [22.5, 65.89], [79.54, 160.7]], \"sentences\": [\"A pile of clothing is shown on a bench in a house.\", \" A sweater hangs from a rack.\", \" The sweater is shown from several angles as a vacuum is used to pick up hair and lint.\"]}, \"v_H1FKtaktOEc\": {\"duration\": 206.17000000000002, \"timestamps\": [[0, 64.94], [54.64, 151.53], [134.01, 198.95]], \"sentences\": [\"A large building is seen with cars driving by and people walking around an arena.\", \" Several people are then seen shooting bow and arrows at a target and waving their hands in the air.\", \" The people continue to shoot the bow and arrow at the target while others watch on the side.\"]}, \"v_YCdPa5gJYmc\": {\"duration\": 30.88, \"timestamps\": [[0, 19.77], [0, 0.77], [19.77, 20.38], [24.71, 26.56], [27.02, 30.57]], \"sentences\": [\"A shirtless guy spins a ball attached to a pole.\", \" The guy lifts this item from the grass at the pole end.\", \" The guy releases the item.\", \" A guy moves away from the descending item.\", \" The website address of the group is shown.\"]}, \"v_bnkO0slLSyw\": {\"duration\": 221.52, \"timestamps\": [[0, 23.26], [23.26, 71.99], [71.99, 188.29], [188.29, 221.52]], \"sentences\": [\"A woman talks to the camera while a man stands beside her.\", \" The man turns and walks away while the woman demonstrates the female perspective of the dance sequence by herself.\", \" The man rejoins the woman and talks to the camera while demonstrating the sequence of steps from the male perspective.\", \" The two demonstrate the dance together without commentary.\"]}, \"v_0Mn0gxECBLA\": {\"duration\": 63.07, \"timestamps\": [[0, 63.07], [3.15, 3.47], [10.09, 11.98], [22.7, 26.49], [49.51, 50.45]], \"sentences\": [\"A male mows a lawn using a red riding mower.\", \" A man whips grass of his foot.\", \" A large, black dog runs across the lawn.\", \" The man stops and reverses the riding mower.\", \" The man rubs his ear.\"]}, \"v_P0j0bBKsNAo\": {\"duration\": 204.38, \"timestamps\": [[0, 38.83], [43.94, 134.89], [143.07, 197.23]], \"sentences\": [\"A man is seen beginning to climb up a rock wall while looking back and speaking to the camera.\", \" He continues to climb up and down while showing off to the properly climb with his feet.\", \" He does this a few more times while the camera shows text instructions.\"]}, \"v_ABB755sPZfY\": {\"duration\": 12.82, \"timestamps\": [[0, 12.82], [0, 11.66], [0.13, 12.82]], \"sentences\": [\"Inside a gym, two men hold two jump ropes.\", \" A guy in a ponytail jumps the jump ropes with hand stands.\", \" A man in a black shirt watches.\"]}, \"v_iiQ6t0p9lik\": {\"duration\": 224.72, \"timestamps\": [[0, 224.72], [0, 40.45], [34.83, 40.45], [42.7, 224.72], [61.8, 224.72], [61.8, 86.52], [101.13, 142.7], [217.98, 224.72]], \"sentences\": [\"The video takes place in the pool of a backyard.\", \" A tight rope is strung across the length of the pool and a woman is attempting to walk across, She falls several times.\", \" The last time she falls, the camera rewinds and shows her falling backwards.\", \" The video then cuts to a man who is also using a tight rope to cross a pool.\", \" The video shows several clips of the man falling.\", \" At one point, he is holding a camera while falling in.\", \" He also attempts to stand with one leg on the rope, as well as balancing.\", \" The video ends showing him in a final fall into a tube.\"]}, \"v_2SBTnunPQrQ\": {\"duration\": 229.9, \"timestamps\": [[5.75, 162.08], [162.08, 164.38], [166.68, 218.41]], \"sentences\": [\"A little boy shines the shoes of a person using black shoe polish and make shine with a brush and a cloth.\", \" Then, the man pays the little boy.\", \" A boy cleans the tennis shows of a person putting white painting.\"]}, \"v_o1WPnnvs00I\": {\"duration\": 229.86, \"timestamps\": [[0, 16.09], [18.39, 83.9], [86.2, 168.94], [172.39, 211.47], [212.62, 229.86]], \"sentences\": [\"A man is playing a flute in front of a microphone.\", \" A few other men are shown playing guitars as they sit.\", \" The group plays for the audience, occasionally zooming in on individuals.\", \" One man is playing drums while the others are on flute and guitar.\", \" The lights move fluidly as they crescendo, and they screen goes black.\"]}, \"v_RYv3eIxMouY\": {\"duration\": 9.71, \"timestamps\": [[0, 2.38], [2.43, 6.84], [6.84, 9.71]], \"sentences\": [\"A yellow and brown animal is attached to the wall swaying from left to right.\", \"While it is there,a boy is wrapped up in a bandanna and he is holding the stick on the left side of the pinata.\", \"He then moves it to the right side and begins to hit the pinata ferociously.\"]}, \"v_fm9mf-VuWxI\": {\"duration\": 108.22999999999999, \"timestamps\": [[0, 79.55], [81.71, 82.25], [81.71, 108.23]], \"sentences\": [\"People are playing lacrosse on a field.\", \" A woman in a blue shirt is holding a lacrosse stick.\", \" They continue to play lacrosse.\"]}, \"v_ucEqZtmQS-0\": {\"duration\": 78.67, \"timestamps\": [[5.51, 31.86], [31.47, 53.89], [56.64, 59.4]], \"sentences\": [\"A man in a black shirt is standing in a salon.\", \" He starts shaving a man's beard that is laying down.\", \" He towels off the man's face.\"]}, \"v_vygPNS-eAYM\": {\"duration\": 49.37, \"timestamps\": [[5.68, 17.28], [17.28, 25.42], [25.42, 32.83], [32.83, 38.75], [38.75, 46.16], [46.16, 47.89]], \"sentences\": [\"A father and daughter are playing hop scotch on their tiled porch.\", \" The girl is wearing a blue sleeveless shirt and shorts and the father is wearing a gray shirt and shorts.\", \" They take turns to jump on the squares.\", \" Then she little girl is joined by her mother who begins hopping on the squares.\", \" She gives the daughter a high five.\", \" then the girl begins to hop and jump across the squares.\"]}, \"v_uVcyJg_3Fj8\": {\"duration\": 81.13, \"timestamps\": [[0, 8.52], [8.52, 80.32], [24.34, 32.05], [32.05, 66.12], [66.12, 81.13]], \"sentences\": [\"A time lapse video is shown of people walking around a house.\", \" Later, they begin to put up a Christmas tree with two people involved in the process.\", \" They put lights on the tree and light them up.\", \" Next, they begin to put several different ornaments on the tree.\", \" Lastly, they put the skirt under the tree and end the video with a kiss.\"]}, \"v_A9TcWJnbcWs\": {\"duration\": 7.06, \"timestamps\": [[3.11, 6], [6, 6.64]], \"sentences\": [\"There are two boys playing squash in an indoor squash court.\", \" They are playing randomly in an unstructured game where they often miss the ball.\"]}, \"v_Tc8L-74Ilck\": {\"duration\": 233.37, \"timestamps\": [[3.5, 66.51], [58.34, 170.36], [130.69, 224.04]], \"sentences\": [\"A man is seen standing at the bottom of a hole while a man records him.\", \" Two men are seen climbing along the hill and looking up to the camera.\", \" One man pulls the other out and climbs down while they and others speak to the camera.\"]}, \"v_eL0LrJio1XE\": {\"duration\": 135.33, \"timestamps\": [[0, 25.71], [25.71, 131.94], [56.84, 59.54]], \"sentences\": [\"A bike stands on a bumpy unpaved road.\", \" People rides bikes very fast in the road and giving high jumps when passing the bumpy part of the road.\", \" The shadows of a biker cast on the bumpy road.\"]}, \"v_ZdUUBA1czgY\": {\"duration\": 18.48, \"timestamps\": [[0, 18.48], [1.39, 4.62], [0, 17.28]], \"sentences\": [\"man is standing in a large field wlking and practicing a shot put.\", \" man wearing red shirt is standing on a side.\", \" men are pacticing in a large green grassy field.\"]}, \"v_7HKWppcWgeY\": {\"duration\": 238.4, \"timestamps\": [[0, 238.4], [34.57, 39.34], [57.22, 64.37], [132.31, 140.66], [201.45, 213.37]], \"sentences\": [\"A man is standing next to a bicycle.\", \" He is holding a new tube for a tire.\", \" He grabs an air pump and attaches it to the tire.\", \" He pumps the tire with air.\", \" He attaches the pump to the flat tire and pumps it up.\"]}, \"v_z_ojmuWzMWo\": {\"duration\": 140.67000000000002, \"timestamps\": [[0, 30.24], [5.63, 30.24], [30.95, 45.72], [39.39, 60.49], [57.67, 68.93], [69.63, 139.96]], \"sentences\": [\"A dog is being bathed by a woman.\", \" The woman is spraying water on the small dog with a hose.\", \" She is now blow drying the dog.\", \" The dog is placed in the kennel next to a woman's feet.\", \" A dog plays behind and with the groomed dog.\", \" The dog now is getting a haircut.\"]}, \"v_R547-iOgb6g\": {\"duration\": 141.85, \"timestamps\": [[0, 6.38], [6.38, 90.78], [90.78, 101.42], [101.42, 120.57], [120.57, 141.85]], \"sentences\": [\"Intro screen appears and includes an illustration of a man wiping the floor with a mop in a bathroom, a brand name and some other words.\", \"A woman is now in the bathroom using an advanced bucket that is tall and includes a handle for squeezing the flat mop and a storage compartment, and she mops the floor with the mop, then demonstrates how to squeeze it in the bucket and goes back to moping the rest of the bathroom.\", \"A top view of the bucket is shown and it shows the bucket has two water compartments and the clean water is in the front and the dirty water is kept in the back.\", \"A white screen appears and it displays the logo brand, different pictures of the mop sleeves and numbers next to it.\", \"The woman walks to the entrance of the bathroom, removes the wet floor sign, puts it in her cart, starts pushing the cart, and the focus goes back to the clean bathroom she just cleaned.\"]}, \"v_c8HFew22GnI\": {\"duration\": 165.05, \"timestamps\": [[0, 7.43], [11.55, 31.36], [31.36, 132.04], [136.16, 165.05]], \"sentences\": [\"A man is acting as a dj with headphones on.\", \" Another man takes off on a pair of water skis.\", \" He skis as people gather and leave on a pier.\", \" Several people join in on a curling event, holding signs and smiling.\"]}, \"v_Launtf-qjDM\": {\"duration\": 20.18, \"timestamps\": [[0, 6.05], [6.46, 16.65], [17.35, 20.18]], \"sentences\": [\"A man with a orange shirt and blue gloves is shown operating a fire torch machine.\", \"Two more people are shown and and a close up is pictured.\", \"Lastly,the camera pans out on a man standing up torching away at a machine.\"]}, \"v_oY1y_UONCGg\": {\"duration\": 161.36, \"timestamps\": [[0, 54.86], [60.51, 161.36]], \"sentences\": [\"A little boy is sitting on the floor, touching a vacuum cleaner and talking.\", \" He also picks up another vacuum, and starts rolling it across the room, back and forth.\"]}, \"v_8i2lkdpB2w0\": {\"duration\": 183.32, \"timestamps\": [[0, 26.58], [26.58, 36.66], [152.16, 170.49], [173.24, 177.82]], \"sentences\": [\"People are sitting in row boats in the water.\", \" A man is standing up in a red row boat.\", \" A boat flips over and the camera goes into the water.\", \" Two people standing on a dock lift their boat out of the water.\"]}, \"v_8fVB8gAjTO4\": {\"duration\": 75.7, \"timestamps\": [[0, 6.06], [6.06, 74.94], [27.25, 42.01], [68.51, 70.4], [70.78, 75.7]], \"sentences\": [\"We see two opening title screens.\", \" we see a man in a room playing a set of drums.\", \" The man plays the drums on the left side primarily.\", \" The man pauses while playing.\", \" The man hits a few drums then stops.\"]}, \"v_2UjVfKEcj4g\": {\"duration\": 152.95, \"timestamps\": [[0, 15.3], [18.35, 35.18], [40.53, 113.18], [114.71, 133.83], [138.42, 150.66]], \"sentences\": [\"A man is holding two extremely dirty high heeled women's shoes.\", \" He uses a ruler to scrape off the dried dirt.\", \" He then uses a brush to polish up the suede material before spraying a white substance onto the shoe.\", \" He scrapes it clean, then applies a new sole and spike to the heel.\", \" He shows off the renovator can.\"]}, \"v_WkiBckpLXfU\": {\"duration\": 65.02, \"timestamps\": [[0, 6.83], [6.83, 17.55], [17.23, 65.02]], \"sentences\": [\"a man and a woman are talking in front of the camera.\", \" players are in a court playing hockey.\", \" a man and a woman are being interviewed.\"]}, \"v_c0qbyRWSptg\": {\"duration\": 134.91, \"timestamps\": [[0, 31.7], [32.38, 35.75], [40.47, 130.19]], \"sentences\": [\"Boats are going through the water.\", \" A storm hits and a man is crying.\", \" The boats continue to go through the water.\"]}, \"v_gpmrwsV9skQ\": {\"duration\": 31.07, \"timestamps\": [[0, 6.68], [11.96, 15.07], [24.23, 26.72]], \"sentences\": [\"A man in a suit is reading a newspaper.\", \" He puts a dissolving tablet into a glass of water.\", \" Someone runs in front of a car on stilts.\"]}, \"v_5jfQNanBKAM\": {\"duration\": 69.13, \"timestamps\": [[0, 69.13], [15.9, 32.83], [51.5, 69.13]], \"sentences\": [\"A large group of boys paddle around on a lake in red canoes.\", \" Other groups of boys on a dock prepare boats for use.\", \" Two boys on a canoe back paddle to get away from the reeds on the edge on the lake.\"]}, \"v_aB5xErksFkI\": {\"duration\": 15.07, \"timestamps\": [[0.3, 7.54], [4.14, 14.39]], \"sentences\": [\"A person is seen kneeling down on the floor laying out plaster as well as onto a tile.\", \" The person then flips over the tiles and places them down on the floor.\"]}, \"v_OHwE8aA90IE\": {\"duration\": 3.83, \"timestamps\": [[0, 0.8], [0.9, 2.49], [2.32, 3.68]], \"sentences\": [\"A young man is seen standing before a lawn mower and looking at the camera.\", \" The boy then pulls a string on the lawn mower.\", \" He finally pushes forward on the lawn mower.\"]}, \"v_9hR1MHvXGv8\": {\"duration\": 112.52000000000001, \"timestamps\": [[0, 3.94], [3.94, 19.69], [20.82, 30.94], [32.63, 42.2], [45.57, 105.77], [70.89, 73.14], [74.27, 80.45], [82.14, 84.96], [95.08, 105.77], [106.34, 112.52]], \"sentences\": [\"We see a man putting items in his car.\", \" The man gets in the car and drives down the street.\", \" We see men climbing indoors on a climbing wall, and outdoors in the woods.\", \"  We see two men outdoors at night then day.\", \" We see men climbing a cliff.\", \"  A man waves from the top.\", \" We see the men on the top of the cliff.\", \"  A man drills holes in a wall.\", \" We see a man fall repeatedly.\", \" We see three men in a boat on a river.\"]}, \"v_Z6WJ0A9VvxQ\": {\"duration\": 218.66, \"timestamps\": [[0, 12.03], [12.03, 218.66]], \"sentences\": [\"peolpe are running in street under a bridge.\", \" people are standing and running through the bridge and street.\"]}, \"v_uPqh5uA1mhA\": {\"duration\": 118.14, \"timestamps\": [[0, 2.95], [2.95, 13], [13.59, 18.31], [18.31, 33.67], [33.67, 42.53], [41.35, 48.44], [48.44, 60.25], [60.25, 90.97], [92.15, 103.97], [103.97, 118.14]], \"sentences\": [\"The screen shows the words Shot Put Men.\", \" Kurt Roberts, in a yellow top, throws the ball and a man rushes to measure the throw.\", \" Kurt drinks from a Gatorade bottle.\", \" Reese Hoffa steps up and throws the ball and a man rushes to measure the throw.\", \" Reese adjusts his shirt and waits for his score.\", \" Davis Storl sits and is featured on the screen.\", \" He then throws the ball and the man rushes to measure the distance.\", \" He is shown standing with his team and an instant replay of the throw is shown.\", \" The score is shown on the screen.\", \" Fans are shown doing the wave.\"]}, \"v_YtKUxxMo6Cs\": {\"duration\": 66.96, \"timestamps\": [[0, 7.03], [8.04, 35.16], [36.5, 66.96]], \"sentences\": [\"A man is riding a pair of water skis while attached to a boat.\", \" He swerves from side to side in the water, holding on.\", \" He jumps into the air as a stunt, then loses his balance and falls into the water.\"]}, \"v_8SCg3toperM\": {\"duration\": 88.38, \"timestamps\": [[0.88, 22.54], [15.02, 60.54], [59.21, 86.17]], \"sentences\": [\"A large group of people are seen running around a field playing lacrosse while others watch.\", \" The game continues on as people still watch them on the sides.\", \" They stop various times to speak to one another and continue playing the game.\"]}, \"v_eSyrFLhr3b0\": {\"duration\": 127.99, \"timestamps\": [[1.92, 64.63], [39.04, 118.39]], \"sentences\": [\"A man is seen speaking to the camera while showing a plate of food and pouring out ingredients onto a plate.\", \" He continues to mix ingredients together onto a plate and ends with a close up of the dish and him speaking more.\"]}, \"v_xXDNNCl1m6c\": {\"duration\": 54.71, \"timestamps\": [[0, 8.75], [8.75, 13.4], [13.68, 54.71]], \"sentences\": [\"The Department of Transportation demonstrates ice and snow safety tips with a white car covered in snow.\", \" A lady in a red winter jacket places the keys in the ignition and starts the car.\", \" The lady in the red jacket opens the trunk of the car and removes a snow brush and brushes the snow off of the car body, windshields, head lights, front grill and license tag.\"]}, \"v_XTErpg4IdiE\": {\"duration\": 201.55, \"timestamps\": [[0, 39.3], [39.3, 92.71], [91.71, 146.12], [146.12, 201.55]], \"sentences\": [\"A man is on the floor with some gadget looking at it and messing around with it.\", \" He puts a hose in one sde of it and starts ro mess around with it some more.\", \" He then moves it to the corer of the carpet and starts working on it.\", \" He moves it down more and pushing the carpet down, he does this to basically the entire room.\"]}, \"v_rx_WRuQ-X14\": {\"duration\": 63.32, \"timestamps\": [[0, 10.13], [11.08, 60.79]], \"sentences\": [\"A wall is painted by two men.\", \"  They then hang up wall decorations that are wallpaperlike in appearance.\"]}, \"v_jqrLD8zs7R4\": {\"duration\": 173.8, \"timestamps\": [[0, 10.43], [13.9, 60.83], [66.91, 131.22], [134.7, 173.8]], \"sentences\": [\"A couple appears on the screen, talking about dancing the tango.\", \" They begin showing different steps of the dance as they talk.\", \" They move forward and back and forth, demonstrating the tango.\", \" They then dance together for the camera.\"]}, \"v_SN_YS2w3JhE\": {\"duration\": 114.43, \"timestamps\": [[6.29, 18.31], [19.45, 27.46], [27.46, 84.1], [87.54, 101.84]], \"sentences\": [\"Players stand on the sideline before a volleyball match on the beach.\", \" Players walk onto the court and take positions for the match.\", \" Teams play a game of beach volleyball.\", \" The players shake hands and congratulate each other.\"]}, \"v_p4pj27t5B6g\": {\"duration\": 154.16, \"timestamps\": [[0, 66.29], [66.29, 85.56], [86.33, 90.18], [90.18, 152.62]], \"sentences\": [\"A young man talks while showing a saxophone.\", \" The young man points the keys of the saxophone while talking.\", \" Then, the young man fasten the saxophone with a blue ribbon on his neck.\", \" After, the young man puts his mouth on the mouthpiece of the saxophone, then he continues explaining.\"]}, \"v_hPQEkPZmNsU\": {\"duration\": 154.48, \"timestamps\": [[0, 10.04], [11.59, 95.01], [95.01, 105.82], [105.82, 138.26], [139.03, 154.48]], \"sentences\": [\"A hair stylist explains how to cut a mans haircut.\", \" The hair sylist prepares the hair into sections with some clips and begins cutting the hair with a feather razor and puts a clip in the hair on top of the head and proceeds to cut the hair with scissors making layers.\", \" The hair stylist then uses a hair blower dryer to fluff up the hair using her fingers.\", \" The hair stylist then uses only her fingers to fluff up the hair.\", \" A close up of theman and the final cut and a close up of the hair stylist.\"]}, \"v_r4F2X_MlL-U\": {\"duration\": 179.24, \"timestamps\": [[1.79, 7.17], [16.13, 43.02], [49.29, 51.08], [62.73, 162.21], [145.18, 147.87]], \"sentences\": [\"A hand lines the loose area of the wallpaper.\", \" The hand puts paste from a bowl on the back of the loose wallpaper.\", \" The hand runs a scrub on the loose wallpaper.\", \" The hand holds a blow dryer and the other hand rolls a device to mend the loose wallpaper.\", \" The hand runs a scrub quickly through the mended wallpaper.\"]}, \"v_iuVi8QAWfCI\": {\"duration\": 152.51, \"timestamps\": [[0, 9.91], [14.49, 26.69], [28.98, 38.13], [51.09, 80.83], [88.46, 152.51]], \"sentences\": [\"A woman introduces her home decor video, standing next to a chair.\", \" She first scrubs the dirt from the chair with a sponge.\", \" Next, she applies a silver paint to the chair.\", \" She then dips her brush in a blue paint to cover the chair's seat, back, and then arms/legs.\", \" Lastly, she places stencils on the chair and paints the insides white to decorate.\"]}, \"v_SjfrdNchlqw\": {\"duration\": 121.46, \"timestamps\": [[0, 71.06], [16.4, 56.48], [71.06, 100.21], [100.82, 121.46]], \"sentences\": [\"men are sitting in a black jack table in a casino and the dealer is spreading the cards to players.\", \" man is talking to the camera.\", \" the dealer woman is standing talking in front of the camera.\", \" man is standing in front of slot machine talking to the camera.\"]}, \"v_E5SWUUNrHDU\": {\"duration\": 146.89, \"timestamps\": [[0, 22.77], [22.77, 118.98], [117.51, 146.89]], \"sentences\": [\"Various tools and products are laid out on a table and transitions into a man walking in front of a mirror and putting lotion on his face.\", \" He then puts cream on his face and shaves all around his face.\", \" He then wipes his face down with a rag and walks away from the mirror.\"]}, \"v_qbDQNRf-EUI\": {\"duration\": 71.36, \"timestamps\": [[0, 19.27], [19.62, 42.46], [42.81, 71.36]], \"sentences\": [\"A man speaks to camera in front of bicycles.\", \"  The man places a part on a bicycle being worked on.\", \" The man tightens the part on the bicycle.\"]}, \"v_h4N22DApP_Y\": {\"duration\": 213.07, \"timestamps\": [[0, 90.55], [90.55, 213.07]], \"sentences\": [\"Crowd are sitting on chair, kids and young people are sitting at the table with timer solving the rubik's cubes, while a man with big beard is talking in front of the camera.\", \" The boys are solving the rubik's cube one is blind folded, one is solving it with one hand, others are solving with with both hands.\"]}, \"v_yW76UI8lnNc\": {\"duration\": 78.41, \"timestamps\": [[0, 78.41], [20.39, 50.18]], \"sentences\": [\"Black and yellow tokens slides on the floor while people holding sticks arrange the tokens on a painted triangle.\", \" Toddlers walk on the sidewalk and cross the road stepping on the tokens.\"]}, \"v_2zl0O1VRDC4\": {\"duration\": 132.94, \"timestamps\": [[0, 63.14], [64.47, 132.94]], \"sentences\": [\"A person puts sealing material around steel planks and a roof.\", \" Then, the man paints a roof with black paint.\"]}, \"v__86X1xtj67w\": {\"duration\": 209.31, \"timestamps\": [[0, 55.47], [55.47, 80.58], [80.58, 120.35], [120.35, 166.4], [166.4, 209.31]], \"sentences\": [\"Two teams plays throwing balls to hit an opponent.\", \" Two boys advance to the center and throw the balls, then they return to his place.\", \" After, the other team advance throwing balls and hit one player wearing purple t-shirt.\", \" They continue playing taking turns to hit the balls.\", \" People handle balls to players, then they go to the center to hit other team with the balls.\"]}, \"v_msGQHfIRLhE\": {\"duration\": 84.45, \"timestamps\": [[0, 17.73], [17.73, 73.05], [69.25, 84.45]], \"sentences\": [\"A young woman is seen performing several martial arts moves in the middle of a large mat.\", \" The girl continues moving around  and then leads into her fighting a boy.\", \" More pictures of her are shown as well as her fighting.\"]}, \"v_3Wjig_NRlnU\": {\"duration\": 110.97, \"timestamps\": [[1.11, 26.08], [26.63, 33.29], [33.85, 54.93], [56.59, 104.31]], \"sentences\": [\"A man performs martial arts fighting with people in a film, then a big door close and a woman helps the man fight.\", \" The man and the woman are on front a river fighting, and then hung his legs from a tree.\", \" Cannons fires a home and a village, after an army fight in a field and cannons destroy homes in a village.\", \" A man gives to the man a big gold coin, after the man fights with people.\"]}, \"v_JowsnupmNd0\": {\"duration\": 19.06, \"timestamps\": [[0, 15.82], [6.1, 10.29], [16.4, 19.06]], \"sentences\": [\"A little girl is crossing the monkey bars.\", \" She swings her leg up.\", \" She drops down to the ground.\"]}, \"v_U6M5hbiHn5Q\": {\"duration\": 70.78, \"timestamps\": [[0, 15.22], [6.72, 10.62], [16.28, 39.99], [39.99, 44.94], [44.94, 59.45], [59.45, 70.78]], \"sentences\": [\"Man does acrobatic moves down a mat.\", \" Another man is running down a mat in the background.\", \" Several replays of acrobatic moves occurs.\", \" Young man runs and hugs what looks to be his coach.\", \" Another set of replays occur.\", \" Words go across the screen directing people to social media and websites.\"]}, \"v_YJcjkeVD0qk\": {\"duration\": 115.89, \"timestamps\": [[2.32, 60.26], [52.73, 108.94]], \"sentences\": [\"A close up of food is laid out on the table and leads into a man taking puffs out of a hookah pipe.\", \" The man blows smoke rings as well as several other drinks while speaking to the camera and moving to various spots in the house.\"]}, \"v_kHSCvFav1p4\": {\"duration\": 180.12, \"timestamps\": [[0, 51.33], [58.54, 129.68], [109.87, 172.91]], \"sentences\": [\"Two people are seen standing around a gym hitting a birdie to one another.\", \" The men hit the object back and fourth while others watch on the side.\", \" The people continue to watch the two play and one off the side takes his shirt off.\"]}, \"v_slUvIngXl4g\": {\"duration\": 85.5, \"timestamps\": [[0, 47.88], [47.88, 85.5]], \"sentences\": [\"two sumos are on sides of a ring and the refeee is in the middle while people is in sands sitting arpund them watching them.\", \" sumo start wrestling and fell out the ring.\"]}, \"v_6wTk8QqWxuo\": {\"duration\": 49.13, \"timestamps\": [[0, 46.68], [13.02, 18.18], [30.22, 49.13]], \"sentences\": [\"A boy is helping his father push a mower.\", \"  They turn back to the camera.\", \"  A person goes stand near the fence.\"]}, \"v_l9LHfuoU8js\": {\"duration\": 107.13, \"timestamps\": [[0, 39.64], [40.17, 107.13]], \"sentences\": [\"A person is seen cutting a piece of roof tiling and hammering down the tile for a roof.\", \" He walks through hamming down the fabric and nailing a long board across.\"]}, \"v__Boy9qJLibI\": {\"duration\": 171.11, \"timestamps\": [[0, 8.56], [14.54, 17.97], [30.8, 51.33], [53.9, 65.02], [67.59, 74.43], [92.4, 95.82], [88.12, 112.08], [154.85, 159.13]], \"sentences\": [\"A graphic is seen with logo title.\", \" A Google map shows different city locations.\", \" Teammates in jumpsuits run navigate through a course of wooden crate obstacles aiming paintball guns.\", \" The men receive gear from a rental shop including clothes and weapons.\", \" The two teams walk in a line together entering the course to play.\", \" The men fill their gun hoppers with ammo.\", \" The teammates navigate through a course with inflatable obstacles aiming for opponents.\", \" A man is hit in the face mask to end the game.\"]}, \"v_S_CnkpTkjYQ\": {\"duration\": 160.27, \"timestamps\": [[0, 10.42], [12.82, 60.1], [60.9, 121.8], [122.6, 160.26]], \"sentences\": [\"A man is seated while playing the drums, with a woman instructing him standing next to him.\", \" He hits the drums back and forth as they talk.\", \" He then talks extensively about how to play the congas.\", \" He demonstrates by playing further while talking.\"]}, \"v_IbYlWVA8Dh8\": {\"duration\": 86.19, \"timestamps\": [[0, 6.46], [8.19, 61.2], [62.06, 86.19]], \"sentences\": [\"a hand is shown on a table with different supplies.\", \" A man is seen taking all the parts of a bicycle out of a box.\", \" He assembles the bicycle in the yard.\"]}, \"v_7dlkshlM4nk\": {\"duration\": 24.01, \"timestamps\": [[0, 4.2], [5.28, 18.97], [19.81, 24.01]], \"sentences\": [\"A tree is seen by the side of a road.\", \" A man shows how to mulch around the bottom of the tree.\", \" He spreads the mulch evenly as he gives directions.\"]}, \"v_Gp2bIEiDWTI\": {\"duration\": 186.16, \"timestamps\": [[0, 18.62], [26.99, 60.5], [63.29, 84.7], [85.63, 120.07], [128.45, 151.72], [161.02, 163.82], [181.5, 186.16]], \"sentences\": [\"A girl plays with her braided pony tail.\", \" The girl twists her hair together in two sections.\", \" The girl braids the end of the twisted hair.\", \" The girl separates the braids and loosens them.\", \" The girl pulls the braids up her hair to make them more fluffy.\", \" The girl uses a flat iron on her hair.\", \" The girl holds two dogs and dances.\"]}, \"v_iH659QSrcDc\": {\"duration\": 23.41, \"timestamps\": [[0, 17.09], [5.73, 11.35], [19.31, 23.41]], \"sentences\": [\"A text graphic is seen with a title and description.\", \" A man stands on a roof and drills pieces of wood down.\", \" Credits are seen for the video with a website.\"]}, \"v_xi1oCOBPAzQ\": {\"duration\": 230.68, \"timestamps\": [[23.07, 69.2], [57.67, 171.86], [146.48, 227.22]], \"sentences\": [\"A close up of a fishing hole is shown with a person using objects to fish and another stands off in the distance.\", \" The man uses the objects to capture a fish and zooms in on a hole.\", \" They finally pack up a tent and carry it with them as they drive along.\"]}, \"v_V9LQVhq2ePE\": {\"duration\": 117.72, \"timestamps\": [[1.18, 32.37], [29.43, 82.4], [76.52, 115.36]], \"sentences\": [\"A camera pans away from a sign and leads into people pushing material around a floor.\", \" A bend bends down around a floor and pushes the material around the room.\", \" In the end the camera pans around the finished floor.\"]}, \"v_zcDA0s8eWU4\": {\"duration\": 137.57999999999998, \"timestamps\": [[0, 21.32], [26.14, 74.98], [74.98, 127.26], [127.26, 137.58]], \"sentences\": [\"A woman chops wood on a block with an ax.\", \" She has a hard time getting the ax out of the wood.\", \" Someone else comes and tries to get it out but they can't.\", \" The first girl comes back and continues trying to pull the ax out of the wood.\"]}, \"v_AQQT21DBT_E\": {\"duration\": 120.37, \"timestamps\": [[3.01, 39.12], [39.72, 73.43], [74.03, 102.32], [102.92, 118.57]], \"sentences\": [\"People are grooming and brushing dogs in a public facility.\", \" Women take cares of dogs that have long hair.\", \" A woman take cares of a poodle, while other woman pets a big dog.\", \" A woman talks on front a dog while petting.\"]}, \"v_NpsOCOnQS6c\": {\"duration\": 49.11, \"timestamps\": [[0, 8.84], [8.84, 22.84], [22.1, 33.15], [33.15, 49.11]], \"sentences\": [\"A man spraying a fence grey using a powerful spray gun.\", \" A man in casually standing behind him watching with his hands crossed, yawning.\", \"  The man spraying sprays up and down making good time.\", \" He makes sure to go over all the spots so he doesn't miss any.\"]}, \"v_RNrxxPOyHo4\": {\"duration\": 20.25, \"timestamps\": [[0, 5.67], [4.86, 14.68], [12.25, 19.64]], \"sentences\": [\"A man is seen kneeling on the floor while holding an iron in his hands.\", \" He bends down with the iron to iron the shirt and puts it down.\", \" Afterwards he covers his ears and looks away in pain.\"]}, \"v_0wpStx2JuS4\": {\"duration\": 69.2, \"timestamps\": [[0, 69.2], [1.38, 69.2], [68.5, 69.2]], \"sentences\": [\"A man in a white shirt and hat is sitting down.\", \" He is playing two drums in front of him.\", \" He stops playing them and sits up straight.\"]}, \"v_5BVcwR8hEo0\": {\"duration\": 11.94, \"timestamps\": [[0, 0.24], [0.42, 10.03], [10.5, 11.94]], \"sentences\": [\"A boy serves a tennis ball.\", \" He then serves two more.\", \" The boy turns and walks away.\"]}, \"v_NNKEE-015ZY\": {\"duration\": 91.14, \"timestamps\": [[9.11, 30.99], [31.44, 45.11], [38.73, 45.11], [46.03, 74.28], [74.28, 81.11]], \"sentences\": [\"A teen talks and hold a leash of a dog while a young man pets a dog on a couch.\", \" Then, the teen runs with the dog were other youth play frisbee, after the teen talks.\", \" A woman reads a book lean on a dispenser soda machine.\", \" A man walks a dog in a parking lot and the street.\", \" After, the teen and the young man are indoors.\"]}, \"v_0gvD2pktxxw\": {\"duration\": 176.77, \"timestamps\": [[0, 9.72], [11.49, 20.33], [23.86, 106.06], [106.95, 160.86], [161.75, 176.77]], \"sentences\": [\"a boy is sitting in front of a timer on a computer monitor.\", \" He has several rubik's cubes in a row.\", \" He is timing himself as he attempts to solve the cube.\", \" He moves quickly, solving them in short time.\", \" He clenches his fists with joy.\"]}, \"v_9n_cwQLpo_c\": {\"duration\": 61.63, \"timestamps\": [[0.31, 61.63], [1.23, 60.39], [60.7, 61.32]], \"sentences\": [\"A person is snowboarding indoors alone.\", \" The person is zig-zagging with his board down a slope.\", \" The person turns around at the end of the slope with arms extended.\"]}, \"v_s3DoV1L9zAM\": {\"duration\": 134.82, \"timestamps\": [[0, 38.42], [32.36, 105.83], [90.33, 130.77]], \"sentences\": [\"A young man is seen sitting behind a drum set holding sticks.\", \" The man begins playing the drums continuously while the camera captures his movements.\", \" He is still seen playing the drums and ends with his hands up.\"]}, \"v_xmStXpxlG_I\": {\"duration\": 9.13, \"timestamps\": [[0, 9.13], [0.82, 2.14]], \"sentences\": [\"A toddler hits a pi\\u00f1ata with a bat while it is spinning.\", \" A person is near the boy showing an arm.\"]}, \"v_nxNir9CE3zI\": {\"duration\": 62.32, \"timestamps\": [[0, 2.18], [2.18, 54.22], [54.22, 62.32]], \"sentences\": [\"The scene says River Scum with a black background.\", \"  A kayak is going down a river while a person is paddling.\", \" A screen comes with words.\"]}, \"v_Ip1EWQCXvRM\": {\"duration\": 130.32, \"timestamps\": [[0.65, 39.1], [32.58, 97.09], [96.44, 125.76]], \"sentences\": [\"A small group of people are seen sitting in a raft with close ups of their feet and paddles are shown.\", \" A man speaks to the group and leads into them paddling down a river.\", \" The group continues riding down the river showing close ups of them working and ending with a logo across the screen.\"]}, \"v_UCFV1JYhq18\": {\"duration\": 86.53999999999999, \"timestamps\": [[0, 1.73], [2.16, 73.99], [49.76, 75.72], [75.72, 86.54]], \"sentences\": [\"An advertisement is on the screen first.\", \" A girl is jumping rope as people are watching.\", \" She is doing tricks and flips as she jumps.\", \" The video ends with credits of the ones who put the video together.\"]}, \"v_-Q9WotFs1MI\": {\"duration\": 56.68, \"timestamps\": [[0, 7.37], [10.49, 30.61], [31.17, 56.68]], \"sentences\": [\"A man is holding an ax in the forest.\", \" He is talking and adjusting a large stump.\", \" He uses the ax to split the wood.\"]}, \"v_TPsMocKBQU0\": {\"duration\": 147.68, \"timestamps\": [[0, 60.55], [26.58, 43.57], [41.35, 46.52], [59.07, 63.5], [63.5, 88.61], [89.35, 147.68], [112.97, 116.67], [121.84, 124.79], [137.34, 141.03]], \"sentences\": [\"We see a lady bouncing on a slack line.\", \" The lady sits on her knees.\", \" The man in the background picks up snow.\", \" The lady falls of the slack line.\", \" We see a man bouncing on the slack line.\", \" We go back to the first lady bouncing.\", \" The lady jumps off the slack line and gets back on.\", \" The lady spins while bouncing.\", \" The lady jumps off then is back on.\"]}, \"v_NE6SEdnVUh4\": {\"duration\": 76.39, \"timestamps\": [[0, 6.88], [6.88, 24.06], [24.06, 50.8], [50.8, 76.39]], \"sentences\": [\"A group of men are sitting outside playing instruments together.\", \" One of the men hand another a stick made into a flute and he sits done and begins to start playing on it.\", \" The man starts playing saxophone along with him.\", \" The other men all join in and they all make music together, having a nice time.\"]}, \"v_aXCAudMzN2o\": {\"duration\": 117.53999999999999, \"timestamps\": [[0, 52.31], [48.78, 117.54]], \"sentences\": [\"A man is seen jumping up and down on a pair of stilts while a few others move around on stilts with help.\", \" More shots are shown of people jumping around on the stilts and others still needing help from others.\"]}, \"v_OsB_uEj1PRM\": {\"duration\": 125.03, \"timestamps\": [[0, 28.13], [25.01, 85.65], [90.65, 123.15]], \"sentences\": [\"A man is seen laying on the ground holding onto his stomach.\", \" He begins moving himself up and down on the ground while holding onto his waist.\", \" He continues moving up and down while the camera captures his movements.\"]}, \"v_HI_lWd3JhII\": {\"duration\": 71.59, \"timestamps\": [[0, 15.03], [15.75, 54.41], [54.76, 71.59]], \"sentences\": [\"A close up of a person holding a bag is shown and follows with the person taking out the items.\", \" He lays the items out and runs a board across a ski.\", \" He finally rubs the ski again and places the cap on the bar.\"]}, \"v_BcflqWdlBjI\": {\"duration\": 4.64, \"timestamps\": [[0, 2], [2.09, 4.64]], \"sentences\": [\"A  man chops a large notch into a lox with an ax.\", \" The man uses his gloved hand to brush away splintered wood from the log.\"]}, \"v_xafFWMX7ZeY\": {\"duration\": 228.62, \"timestamps\": [[6.86, 106.31], [99.45, 220.62]], \"sentences\": [\"An intro leads into a woman performing several different tricks with a dog and showing text for how to perform the trick.\", \" The woman continues performing tricks with the dog and end by walking to the camera.\"]}, \"v_XwrF8edyJz0\": {\"duration\": 214.79, \"timestamps\": [[0, 45.1], [51.55, 161.09], [143.91, 209.42]], \"sentences\": [\"A camera pans around glasses of lemonade followed by a person squeezing juice out of lemons.\", \" The person mixes various ingredients together into a bowl and pours it into a glass.\", \" Several shots are shown of the glasses being poured as well as presented to the camera.\"]}, \"v_XG6ar8yc2pM\": {\"duration\": 144.03, \"timestamps\": [[0, 2.16], [2.16, 144.03], [0, 144.03]], \"sentences\": [\"The words \\\"My Horseback Riding Fails\\\" appears.\", \" A girl riding a white horse fails to make her horse do jumps around a track.\", \"  A song plays over the video.\"]}, \"v_gN27GB5txG8\": {\"duration\": 89.14, \"timestamps\": [[0, 8.47], [8.47, 48.58], [48.14, 89.14]], \"sentences\": [\"A black screen with three rows of Arabic writing is shown.\", \"A young girl then comes into the bathroom and begins to wash her hands.\", \"As she continues,she begins talking and describing the process and then more writing appears.\"]}, \"v_Z2GWtB7MGVs\": {\"duration\": 223.68, \"timestamps\": [[0, 14.54], [14.54, 26.84], [33.55, 40.26], [49.21, 71.58], [71.58, 76.05], [77.17, 219.2], [170, 177.82]], \"sentences\": [\"The camera pans back to show a hotel with red lanterns in the air and crows of people standing and looking out over the beach.\", \" A man rides a jetski in front of a large wave of dirty water.\", \" A sailboat is being swayed by a large wave.\", \" A lady is surfing on a large wave as a boat rides next to her filming it.\", \" We see the boat in the water swaying again.\", \" We see people surfing the large waves of the river.\", \" A man does a handstand on a surfboard while surfing.\"]}, \"v_YiMOKwzEf1k\": {\"duration\": 18.21, \"timestamps\": [[0, 18.21], [0, 16.38], [16.48, 18.21]], \"sentences\": [\"A kneeing man runs a small grass cutter over the surface of the lawn.\", \" The man mows the shaded green grass.\", \" The man mows the sun lit grass.\"]}, \"v_JNBWPj42n-g\": {\"duration\": 180.4, \"timestamps\": [[0, 13.53], [18.94, 90.2], [92, 116.36], [117.26, 141.61], [142.51, 160.55], [161.45, 180.4]], \"sentences\": [\"A man's hands are shown at a table.\", \" He places a cardboard box over wrapping paper.\", \" He begins to wrap the box, demonstrating how to properly wrap a present.\", \" He tapes the wrapping paper around the box.\", \" The man ties a bow around the box as the camera slows down the motion.\", \" He cuts the excess bow away, and we see a sticker with a woman's face.\"]}, \"v_DJyfOeZc2lI\": {\"duration\": 41.24, \"timestamps\": [[9.48, 17.11], [17.11, 27.42], [27.01, 37.73], [37.32, 41.24]], \"sentences\": [\"A woman is throwing darts at a dart board.\", \" The dart board is shown on the wall.\", \" She continues to throw darts at the dart board.\", \" She pulls the darts out of the dart board.\"]}, \"v_tTBbFGv9emI\": {\"duration\": 231.9, \"timestamps\": [[0, 86.96], [88.12, 102.04], [104.35, 224.94], [226.1, 231.9]], \"sentences\": [\"A man cuts the center of a log with an ax while standing on the log.\", \" The man stands on the log holding the ax with the right hand.\", \" Then, the man continues cutting the log.\", \" After, two people walk on front the man, and one takes loosed wood from the log.\"]}, \"v_Y5hT9Sk5EY4\": {\"duration\": 121.3, \"timestamps\": [[0, 100.07], [27.9, 40.03], [62.47, 94.01], [53.37, 61.26]], \"sentences\": [\"A dog groomer brushes the coat of a dog with a brush that is sitting on a table.\", \" The brushes are seen by themselves up close.\", \" The groomer holds up the brush to view it close up.\", \" The groomer removes hair from the brush and puts it into a pile.\"]}, \"v_sxf0x55Cvb4\": {\"duration\": 11.66, \"timestamps\": [[0, 10.26], [0, 11.66], [0, 3.38], [3.67, 7.52], [6.18, 11.66]], \"sentences\": [\"We see a swiftly-moving, white water stream.\", \"  A man in blue rafting equipment and a helmet is watching from a bed of rocks.\", \" We notice a man in a kayak and a yellow helmet coming in from the left.\", \"  As he approaches, his kayak flips upside-down.\", \" As the view follows him, we notice another man seated on the rocks to the right in red with a white helmet.\"]}, \"v_S_ONutgLuV8\": {\"duration\": 97.65, \"timestamps\": [[4.88, 44.92], [43.46, 97.16]], \"sentences\": [\"A close up of a person's face is shown as well as driving and laying out a surf board toy.\", \" The man controls the machine along the water doing jumps and tricks and speaking to the camera.\"]}, \"v_H0puoztHMY8\": {\"duration\": 39.15, \"timestamps\": [[0.78, 4.89], [9.59, 14.29], [14.29, 18.01], [23.49, 27.21]], \"sentences\": [\"A fire place in a room is shown.\", \" Windows on a house is shown.\", \" A hardwood flooring in a house is shown.\", \" There are paint cans sitting on the floor.\"]}, \"v_Svr-YN9ujkA\": {\"duration\": 225.12, \"timestamps\": [[0, 20.26], [20.26, 67.54], [67.54, 169.96], [168.84, 225.12]], \"sentences\": [\"A woman puts her hands down on a table with some wash cloths to get a manicure.\", \" The manicurist puts some glass clear nail polish on her nails and then picks up a little bag of red glitter.\", \" The manicurist starts to put little fun decorations to make the nail look pretty.\", \" Then she gets the gooey stuff and goes over the nails with it to prevent them from coming off.\"]}, \"v_1xcFq3SkTKk\": {\"duration\": 175.8, \"timestamps\": [[0, 86.14], [80.87, 175.8]], \"sentences\": [\"A large crowd of girls walk into frame holding bars then put the bars down on the ground.\", \" The girls then perform a dance routine moving the bars all around and end with them holding a pose and walking off stage.\"]}, \"v_kDurnkUZCXs\": {\"duration\": 29.95, \"timestamps\": [[0, 8.99], [8.84, 11.98], [12.13, 29.95]], \"sentences\": [\"An individual uses a hose and a thin instrument to clean a shoe.\", \" The individual sets aside the shoe and turns over the other shoe.\", \" The individual uses the thin implement to dig between the patterns of the shoe bottom.\"]}, \"v_YYUm4o1aDmY\": {\"duration\": 299.61, \"timestamps\": [[4.49, 64.42], [65.91, 145.31], [146.81, 197.74], [200.74, 293.62]], \"sentences\": [\"A woman untie a pair of shoes until half and raise the tongues.\", \" Then, the woman put on a foot and tie the shoe behind the tongue.\", \" Then, the person put the other feet and tie the shoe, then she puts the tongues up.\", \" The woman talks and  shows her shoes and skinny pants.\"]}, \"v_zjbxaEVgzyE\": {\"duration\": 51.22, \"timestamps\": [[0, 19.98], [15.88, 42], [41.24, 51.22]], \"sentences\": [\"A woman is seen stepping into a pit with a large man and then begins running around one another.\", \" The woman then climbs on top of the man while he spins her around and she gets him in a head lock.\", \" The two bow to one another and the woman stands next to the host shaking his hands.\"]}, \"v_VCldTcZi0aE\": {\"duration\": 92.44, \"timestamps\": [[12.02, 30.04], [30.04, 67.94], [67.94, 88.74], [88.74, 91.51]], \"sentences\": [\"There are several people gathered in an outdoor gymnasium.\", \" There are people standing and seated in the bleachers watching about twelve band students performing.\", \" Most of the players are drumming on the percussion instruments in a rhythmic tune.\", \" The percussion players begin going round in a circle as they play the instruments.\"]}, \"v_IIKwRyf4Oyg\": {\"duration\": 142.03, \"timestamps\": [[1.42, 27.7], [21.3, 88.06], [83.09, 142.03]], \"sentences\": [\"A close up of a guitar is seen with a hand plucking the strings.\", \" A man is then seen singing into a microphone while still playing the guitar.\", \" The man moves his fingers up and down the guitar while still singing into the microphone.\"]}, \"v_MN0YWduOEHk\": {\"duration\": 234.71, \"timestamps\": [[0, 59.85], [59.85, 180.73], [180.73, 234.71]], \"sentences\": [\"men are standing in big field pulling a thick rope.\", \" men are walking on sides of the rope and preparing themselves to pull the rope.\", \" men start pullnig the rope in both sides.\"]}, \"v_5K6oT9zBjVE\": {\"duration\": 144.78, \"timestamps\": [[0, 18.82], [18.82, 49.22], [48.5, 102.07], [101.34, 144.78]], \"sentences\": [\"A person is showing off a scrubbing brush and cleaner and pouring the clearing into a sink.\", \" He scrubs the sink with the brush creating suds in the water while the facet runs.\", \" He continues scrubbing the sink with the brush until the sink is clean.\", \" He wipes a paper towel around the sink with the water continues to run.\"]}, \"v_3VYPdypGB_Q\": {\"duration\": 44.68, \"timestamps\": [[0, 3.13], [0.45, 14.74], [15.41, 41.77], [19.21, 22.78], [19.21, 29.26]], \"sentences\": [\"A guy is outside playing a guitar.\", \" A boy rides a scooter.\", \" A child slides down a slide.\", \" Children and an adult stand in line.\", \" The boy walks towards the line.\"]}, \"v_DbF6oI705UA\": {\"duration\": 90.28, \"timestamps\": [[15.35, 44.69], [44.69, 80.35], [80.35, 90.28]], \"sentences\": [\"A lady wearing a UCA jersey is giving a tutorial on the different moves of cheer leading.\", \" As she talks, several cheerleaders show the different poses and stretches that are often done by cheerleaders to improve flexibility.\", \" The lady continues to explain how certain poses help in improving general flexibility in cheerleaders.\"]}, \"v_rEDbnmvTblI\": {\"duration\": 58.58, \"timestamps\": [[0, 58.58], [0, 7.62], [7.62, 35.74], [38.67, 44.82], [50.09, 58.58]], \"sentences\": [\"The video is shot in first person view along a snowy slope.\", \" The person starts at the top of the slope, riding a tube.\", \" They quickly slide down and travel through the snowy path.\", \" At the bottom, a large pile of tubes stops the person from sliding further.\", \" The camera pans to another group of people who have also finished sliding down the slope.\"]}, \"v_fSA-eTz3GkU\": {\"duration\": 126.69, \"timestamps\": [[3.17, 17.1], [51.94, 53.21], [59.54, 68.41]], \"sentences\": [\"A man in a black shirt spins around and throws a ball onto the field.\", \" A man in the stands claps for him.\", \" Another man spins and throws a ball onto the field.\"]}, \"v_HrBa_UraJvc\": {\"duration\": 146.1, \"timestamps\": [[0, 73.78], [79.62, 146.1]], \"sentences\": [\"A man is seen using a hookah and blowing smoke out into the air and leads into him scraping tobacco and driving around.\", \" He speaks to the camera and pans back to a hookah and begins smoking out of it.\"]}, \"v_FbPUX8cWmeU\": {\"duration\": 131.68, \"timestamps\": [[0, 39.5], [39.5, 98.76], [98.1, 131.68]], \"sentences\": [\"A young lady dressed in a pink leotard and tuto begins prancing around a large stage.\", \"As she continues her routine,she continues doing ballet leaps and swinging her arms and twisting like a ballerina.\", \"Behind,her a castle appears cast on the wall as the girl smiles and looks out to the crowd.\"]}, \"v_M6O-QNDUdwU\": {\"duration\": 80.57, \"timestamps\": [[0, 14.5], [17.32, 53.18], [55.6, 80.57]], \"sentences\": [\"Several swimmers walk past each other, shaking hands.\", \" They gather in the pool, then engage in a game of water polo.\", \" They hit the ball back and forth, trying to get it into the net.\"]}, \"v_Jz9ZxenBLa8\": {\"duration\": 117.15, \"timestamps\": [[0, 117.15], [59.16, 88.44], [88.44, 117.15]], \"sentences\": [\"There are a lot of people riding in small bumper cars that can fit either 1 or 2 people.\", \"A woman in a blue bumper car bumps into the middle metal part and she seems stuck and can't move but suddenly she begins to move again.\", \"Everyone keeps riding their bumper cars after the woman gets herself going again and eventually they all come to a stop.\"]}, \"v_eufCY8KHuMA\": {\"duration\": 145.59, \"timestamps\": [[0, 9.46], [14.56, 133.94], [138.31, 145.59]], \"sentences\": [\"A man is riding a black horse in slow motion.\", \" People are shown trying to jump fences in several scenes, falling over or breaking through them at break neck speeds.\", \" As the rider walks away, the words Do you think it's easy? Appear on the screen.\"]}, \"v_uDNLf3ty9ao\": {\"duration\": 174.52, \"timestamps\": [[0, 174.52], [78.53, 123.91], [123.03, 130.89], [147.47, 158.81]], \"sentences\": [\"A man in a brown sweater is sitting down and talking.\", \" A woman in a black and white sweater sits behind him.\", \" She takes off her sweater and puts it on the chair behind him.\", \" A boy in a blue shirt hits behind him.\"]}, \"v_t-xIv68Ac4c\": {\"duration\": 233.85, \"timestamps\": [[0, 64.31], [64.31, 154.34], [154.34, 233.85]], \"sentences\": [\"Several people are in a dance room and an instructor comes as they begin to dance.\", \"The six people continue to dance from side to side making arrows like a Jamaican dance.\", \"As it continues,steps are repeated and throws fist punts in the air.\"]}, \"v_KyMDXMXZLyM\": {\"duration\": 110.97, \"timestamps\": [[0, 12.76], [13.87, 75.46], [84.34, 110.97]], \"sentences\": [\"A person is talking while looking at their icy car.\", \" He uses a tool to scrape the ice off the windshield.\", \" He continues scraping until he can see to drive.\"]}, \"v_Nf-7lKa387k\": {\"duration\": 63.72, \"timestamps\": [[0, 7.01], [7.01, 14.34], [14.34, 18.8], [18.8, 34.41], [34.41, 41.42], [41.42, 53.2], [53.2, 63.72]], \"sentences\": [\"There is smoke and lights and words on the screen.\", \"  The smoke is rolling around a hat.\", \" A person is blowing smoke out of their nose and smoke rings.\", \" The camera reverses and he continues to blow smoke.\", \" The words everything is purple.\", \" The smoke continues to blow and the words Edits by Jarron Jones comes up.\", \" The man keeps blowing smoke into the air.\"]}, \"v_rBgMeunuviE\": {\"duration\": 92.37, \"timestamps\": [[0, 92.37], [2.77, 89.6], [0.46, 89.6]], \"sentences\": [\"There are 5 different people sitting in chairs playing accordions that has pianos attached to them.\", \" There are 2 women, and 3 men and all of them, look very serious about what they're doing.\", \"  They all press different keys to make blending sounds and not all of them use the accordion much.\"]}, \"v_JOYduGqZSRc\": {\"duration\": 183.67, \"timestamps\": [[18.37, 63.37], [55.1, 57.86], [63.37, 135.92], [120.3, 167.14], [152.45, 154.28]], \"sentences\": [\"Men explains the game beer pong, while people compete in the tournament.\", \" Two person wears funny clothes and white wigs.\", \" Several people compete beer pong in a table full of cups with beer, then one person wins and people congratulates the winner.\", \" Then, people plays beer pong unsuccessful, and then a man throw the ball in the far cup, then people hug the winner who receives a price.\", \" A person takes pictures to the winner.\"]}, \"v_KIIcgQyr0-Y\": {\"duration\": 219.52, \"timestamps\": [[0, 3.29], [3.29, 7.68], [7.68, 217.33], [98.78, 141.59], [211.84, 216.23], [217.33, 219.52]], \"sentences\": [\"We see a guitar illustration on the opening scene.\", \" We see a man hitting the guitar like  drum.\", \" The man plays a song on the guitar and we briefly see the song and artist name on the screen.\", \" We focus on the mans left hand on the guitar neck.\", \" The man finishes and stops playing.\", \" We see the illustration again.\"]}, \"v_APCbvR0SBl0\": {\"duration\": 33.41, \"timestamps\": [[0, 33.41], [1.17, 33.41], [1.5, 2]], \"sentences\": [\"A person runs and throws a javelin.\", \" There are people watching them behind a fence.\", \" A green umbrella sits next to the track.\"]}, \"v_0pxONuRdIAY\": {\"duration\": 147.07999999999998, \"timestamps\": [[0, 147.08], [76.48, 107.36], [113.25, 147.08]], \"sentences\": [\"Two people give a news report about the importance of wearing sunscreen and talk with each other.\", \"  People are shown outside putting sunscreen on.\", \"  The newscasters then talk at the end with each other.\"]}, \"v_KoMKIJ6QbpY\": {\"duration\": 23.85, \"timestamps\": [[0, 17.41], [17.41, 19.44], [20.51, 23.85]], \"sentences\": [\"A man in a white shirt is putting a tile on the floor.\", \" The man points beside the tile then stands.\", \" The camera zooms in on the tile.\"]}, \"v_4ivePL3RW0Q\": {\"duration\": 163.84, \"timestamps\": [[0, 3.28], [3.28, 28.67], [31.95, 126.98], [126.98, 146.64], [149.91, 163.84]], \"sentences\": [\"The video begins with a close up of two young boys.\", \" A title slide is then shown, and then shows several ingredients used in a recipe for cookies.\", \"  The video then shows the two boys mixing ingredients together.\", \" They roll the dough into balls and place them into an oven.\", \" The boys take the cookies out of the oven and begin eating them.\"]}, \"v_I6riV09yqm8\": {\"duration\": 60.07, \"timestamps\": [[0, 9.31], [12.92, 46.56]], \"sentences\": [\"An intro leads into a woman preparing to jump and flips around and around on bars.\", \" She continues her gymnastic routine flipping through the bars with a bar spotting her and she finishes by putting her arms up.\"]}, \"v_dS9TsX_zyPg\": {\"duration\": 11.45, \"timestamps\": [[0.11, 3.72], [4.12, 11.45]], \"sentences\": [\"A man wearing an apron is seen rubbing down several dishes while throwing them in a sink.\", \" The man continues rubbing down dishes while immediately throwing them into a sink of water.\"]}, \"v_SIeV0DPSpHQ\": {\"duration\": 175.8, \"timestamps\": [[0, 5.27], [5.27, 25.49], [27.25, 40.43], [50.1, 59.77], [116.03, 122.18], [141.52, 154.7], [169.65, 175.8]], \"sentences\": [\"We see an opening sequence with flashes.\", \" We see two men in a yard pushing an item in the grass.\", \" We see a dirt patch in the grass.\", \" We see the monitor on the device.\", \" We see a tree in a round of dirt.\", \" We see a root in the yard.\", \" We see the ending credits and the screen fades.\"]}, \"v_wjD2BdbSb1o\": {\"duration\": 91.49, \"timestamps\": [[0, 63.13], [65.87, 91.49]], \"sentences\": [\"A girl in a black shirt and pink shorts is painting a wooden fence.\", \" Words come onto the screen.\"]}, \"v_s84BStnbfK8\": {\"duration\": 169.09, \"timestamps\": [[0, 169.09], [4.23, 169.09], [8.45, 169.09]], \"sentences\": [\"Two people are standing in a room.\", \" They begin to play a game of wall ball.\", \" They are swinging their rackets hitting the ball.\"]}, \"v_xkKjgwIPEuM\": {\"duration\": 171.9, \"timestamps\": [[0, 171.9], [110.87, 113.45], [170.18, 171.9]], \"sentences\": [\"People are running around on  field playing lacrosse.\", \" The crowd is watching them play.\", \" A black and white logo is shown on the screen.\"]}, \"v_0jBwj0bfZ3Y\": {\"duration\": 29.91, \"timestamps\": [[0.45, 28.71], [12.11, 26.77]], \"sentences\": [\"A small ground of people are seen standing around a baseball field looking around to one another.\", \" Suddenly a few begin dancing around and one holds the ball in the middle.\"]}, \"v_K4cNyYu2LLg\": {\"duration\": 190.85, \"timestamps\": [[0, 95.42], [95.42, 190.85]], \"sentences\": [\"A set of toddler boys are standing up against the wall talking and playing with toothbrushes.\", \"They both begin to brush their teeth ferociously without any toothpaste or water.\"]}, \"v_B5s4uYNIM24\": {\"duration\": 146.31, \"timestamps\": [[0, 13.17], [13.17, 21.21], [23.41, 146.31], [68.77, 76.81], [76.81, 123.63], [123.63, 146.31]], \"sentences\": [\"An intro comes onto the screen showing a high rise building.\", \" Then, a man is shown gearing up and putting on several contraptions that he can connect to a belt.\", \" He is then shown washing the windows of the very tall building.\", \" He uses a scrapper the scrape of a sticker from one of the windows.\", \" He is shows dipping a washer in a bucket and washing the windows of the ground floor.\", \" Several of the window washing supplies are shown again before the video ends.\"]}, \"v_uE6_kwnfDCQ\": {\"duration\": 190.57, \"timestamps\": [[4.76, 59.08], [59.08, 106.72], [106.72, 173.42]], \"sentences\": [\"A woman shows tango steps moving and turning around while talking.\", \" Then, the man moves around showing tango steps.\", \" After, the woman and the man dance tango together while the man talks.\"]}, \"v_ThRbaI4pGIs\": {\"duration\": 125.5, \"timestamps\": [[0, 8.79], [8.79, 37.02], [37.65, 111.07], [111.7, 125.5]], \"sentences\": [\"A picture of an island coast is shown with calm blue waves washing up against the rocks.\", \"A male suddenly appears and begins running towards the water with a surf board.\", \"The man begins surfing on the waves as several people sit on the beach watching him.\", \"After awhile,the male leaves the water and sits on the hill with the surfboard and then walks away.\"]}, \"v_AmW-O5MmJHk\": {\"duration\": 70.1, \"timestamps\": [[0, 12.27], [12.97, 35.05], [33.3, 70.1]], \"sentences\": [\"A woman hands a young boy a stick with a little girl grabbing for her attention.\", \" The pinata is lifted and the boy begins swinging at the object.\", \" The camera pans around people watching while he hits the pinata and a little boy is seen clapping behind him.\"]}, \"v__7l3OxQodF0\": {\"duration\": 179.17000000000002, \"timestamps\": [[5.37, 43.9], [43.9, 144.23], [144.23, 179.17]], \"sentences\": [\"A man in a purple shirt is talking to the camera.\", \" He starts climbing wood planks up a wall.\", \" He gets down off the wall and continues talking.\"]}, \"v_B3ZL18f1x4Y\": {\"duration\": 238.68, \"timestamps\": [[0, 82.34], [83.54, 174.23], [174.23, 238.68]], \"sentences\": [\"Various pictures of food are shown followed by a person cutting up vegetables and mixing various ingredients into a pot.\", \" He then cuts up a piece of bread, scoops out the insides, and fries up some meat.\", \" Finally he pours all the ingredients into the break bowl, wraps it up in aluminum foil, and shows more pictures of the sandwich.\"]}, \"v_0RUMAGGab1k\": {\"duration\": 124.52, \"timestamps\": [[0.62, 18.68], [33.62, 102.11], [107.09, 124.52]], \"sentences\": [\"a man is standing in front of a camera.\", \" He starts playing a harmonica for the camera.\", \" He rocks back and forth to the music as he goes.\"]}, \"v_04LdesS7Pxk\": {\"duration\": 185.13, \"timestamps\": [[0, 177.73], [37.03, 74.98], [74.98, 121.26], [122.19, 142.55], [154.59, 168.47], [170.32, 185.13]], \"sentences\": [\"A man is closing his eyes while getting his beard trimmed and combed.\", \" The man now has a nearly shaven beard and is getting his neck shaved.\", \" The man has shaving cream on his neck and side and is getting his beard closely shaven with a razor in a downward motion.\", \" His face is getting toweled off after being shaven.\", \" A man rubs something on his hands and pats it on the other mans face.\", \" His face gets patted with the towel at the end.\"]}, \"v_qyssgQ2xq2M\": {\"duration\": 195.57, \"timestamps\": [[0, 39.11], [39.11, 110.5], [110.5, 155.48], [155.48, 195.57]], \"sentences\": [\"Inside of the house on the couch two men are sitting, one of them is talking casually awhile the other is holding his arm out on a pillow.\", \" The man is painting his friends finger nails, he seems to have done someone else's nails also and made little red heart.\", \" The man is talking and pretty excited her able to do this, he keeps putting the top of the polish back to get more paint on it.\", \" He jokingly rubs the other mans face, and continues to take his time painting his nails.\"]}, \"v_jQU4NYJzxco\": {\"duration\": 71.91, \"timestamps\": [[0, 71.91], [0, 66.88], [66.88, 71.91]], \"sentences\": [\"There are two children standing at a double stainless steel sink in a residential home.\", \"The taller child moves dishes from the right side of the sink to the left side of the sink one by one while the smaller child holds onto an orange bottle brush and doesn't move any dishes.\", \" Both of the children turn to the camera behind them and the older gives a big smile while the little one gives a very small smile.\"]}, \"v_8TDYCXqSHCw\": {\"duration\": 22.71, \"timestamps\": [[0, 17.37], [17.37, 22.37]], \"sentences\": [\"A gymnast lift a weight until his shoulders, then lift it above his head.\", \" The man left the weight fall on the floor.\"]}, \"v_bDD56LnztiQ\": {\"duration\": 144.84, \"timestamps\": [[10.14, 132.52], [31.14, 144.84]], \"sentences\": [\"A man is seen speaking to the camera behind a desk and leads into shows of people riding on skateboards.\", \" More shots of him talking are shown as well as people do tricks on the skateboards.\"]}, \"v_T9JSNxOyUQA\": {\"duration\": 228.09, \"timestamps\": [[0, 19.39], [19.39, 21.67], [22.81, 38.78], [41.06, 50.18], [52.46, 58.16], [59.3, 70.71], [59.3, 228.09], [94.66, 182.47], [143.7, 151.68], [166.51, 212.12]], \"sentences\": [\"A large group of people is standing and walking around several stacks of inner-tubes and a bus.\", \" Two young children are sitting in one of the bus seats.\", \" A group of adults is riding in the bus talking.\", \" Several kids are in their inner-tubes in the water among other people floating on inner-tubes in the water.\", \" Several people are shown in canoes with people in inner-tubes in the background.\", \" A young girl sinks down in the middle of her inner-tube and jumps back up with her head soaked.\", \" Someone shows a first person view floating down the river.\", \" Various other people are shown in inner-tubes and canoes in the water.\", \" A few people are seen buying food from two women at a a concession stand.\", \" A man holds a young boy in a life vest who looks like he is sleeping.\"]}, \"v_l5uaH-Qydxk\": {\"duration\": 96.02000000000001, \"timestamps\": [[0, 7.2], [9.12, 84.49], [85.45, 96.02]], \"sentences\": [\"A young girl is climbing across the monkey bars outside a building.\", \" She is swinging from each rung, moving her body forward one at a time.\", \" When she reaches the other end, she turns and starts making her way back to the beginning.\"]}, \"v_iJPPWotXvV0\": {\"duration\": 35.46, \"timestamps\": [[0, 3.72], [3.72, 18.79], [18.79, 21.45], [21.1, 24.11], [25.35, 28.54], [28.9, 35.46]], \"sentences\": [\"A man in a gym walks over to a barbell.\", \" The man lifts the barbell to his chest, then over his head.\", \" The man drops the weight.\", \" The man hugs the men behind him.\", \" A man in red runs and jumps on the weight lifting man.\", \" The man in red walks away laughing.\"]}, \"v_lxMSX0Y0b8I\": {\"duration\": 201.62, \"timestamps\": [[0, 19.15], [19.15, 193.55], [65.53, 76.62], [139.12, 147.18], [175.41, 181.46], [193.55, 201.62]], \"sentences\": [\"We see a couple of title screens.\", \" We see a man perform a series of Capoeira moves with the names before the move.\", \" We see a man shift and roundhouse kick.\", \" The man does a handstand on one hand and kicks his legs in the air.\", \"  The man does a flip from a handstands.\", \" We see the ending credits.\"]}, \"v_ZSoPIyVJWWk\": {\"duration\": 131.87, \"timestamps\": [[0.66, 23.74], [23.74, 73.85], [73.85, 131.21]], \"sentences\": [\"A clear package of soft flexible hair curlers is shown on a black table as a hand picks up an unwrapped purple curler and fidgets with it.\", \"  The hand turns the bag around so that the contents are shown through the mouth of the bag before handling both the loose purple and pink curlers.\", \"  The hand continues to go back and forth between handling the two loose curlers and the full back of curlers before the video ends.\"]}, \"v_SIHG_BRgn2E\": {\"duration\": 187.75, \"timestamps\": [[0, 18.77], [18.77, 177.42], [177.42, 182.11], [182.11, 187.75]], \"sentences\": [\"A black and white video intro appears with special effects of asian lettering showing up while different pictures of people are displayed.\", \"An Asian man is now smiling and talking to the camera as he sits in front of a microphone in a studio, and he then sings as he plays on a black piano as he reads music from music sheets on the piano.\", \"When the man is done singing and playing he turns to the camera and gives a big smile.\", \" A black screen appears and white lettering appears at the bottom right.\"]}, \"v_QR2BmWR5FGM\": {\"duration\": 51.22, \"timestamps\": [[0, 16.14], [15.11, 40.98], [40.47, 51.22]], \"sentences\": [\"A small playground is seen followed by a man and his dog walking into frame.\", \" The man pushes it dog up and the dog rides down the slide.\", \" The man does this again with the dog in another playground.\"]}, \"v_iAwNYgA6mkc\": {\"duration\": 203.85, \"timestamps\": [[0, 19.37], [25.48, 118.23], [124.35, 203.85]], \"sentences\": [\"A man kneels in his fencing gear.\", \" A man walks up to him with his back turned as they talk.\", \" The man stands, and engages in fencing with an opponent, both attached to cables behind them.\"]}, \"v_M9og58TMAm0\": {\"duration\": 142.48, \"timestamps\": [[4.99, 68.39], [64.12, 134.64]], \"sentences\": [\"A woman is seen moving up and down on an exercise bar while several shots are shown of her exercising.\", \" She's shown again holding weights and doing exercises while standing on the beam as well as laying.\"]}, \"v_nQgmUkyblgc\": {\"duration\": 47.65, \"timestamps\": [[0, 34.07], [0.71, 2.38], [2.38, 30.97], [30.73, 47.41]], \"sentences\": [\"A barefoot woman in a purple outfit and beige headscarf is kneeling and washing dishes in an outdoor body of water in front of grass and a wooden platform.\", \"  The woman rinses a bronze platter in the narrow body of water and proceeds to place it in an orange plastic bucket.\", \"  The woman continues to wash other dishes and place them in the orange basket.\", \"  The camera pans out a great distance and turns  to show a yellow bannister on an outdoor deck with a brown leather chaise like seating area over looking a large lake.\"]}, \"v_4XGQR2VmWpw\": {\"duration\": 188.94, \"timestamps\": [[0, 2.83], [2.83, 13.23], [13.23, 40.62], [40.62, 44.4], [40.62, 168.16], [72.74, 76.52], [95.42, 103.92], [103.92, 107.7], [107.7, 156.82], [156.82, 168.16], [167.21, 173.83], [174.77, 188.94]], \"sentences\": [\"We see a red light then the title.\", \" A man's biker gear is shown.\", \" We are shown the terrain.\", \" The riders take off on their bikes.\", \" We see them ride over all types of terrain.\", \" We see an Aerial shot of the bikers.\", \" We see a lake, and a dog followed by a bike on a street.\", \" A man uses a knife to open a coconut.\", \" We go back to the dirt bikers performing stunts.\", \" We see two bikers flying through the sky.\", \" We then see three bikers sitting still on their bikes.\", \" We see the end title card.\"]}, \"v_vWGkTOLx57s\": {\"duration\": 66.15, \"timestamps\": [[0, 9.59], [9.59, 19.18], [19.52, 48.95], [49.95, 66.15]], \"sentences\": [\"A young gymnastic boy gets on a bar and starts doing flips and other things.\", \" It seems like he is being judged for a tournament.\", \" He is on the bars doing excellent, looking awesome and having fun while doing it.\", \" Then, he lands and poses and the audience is shown.\"]}, \"v_XDFJFhaG_p0\": {\"duration\": 189.08, \"timestamps\": [[0, 56.72], [59.56, 87.92], [93.6, 124.79], [126.68, 189.08]], \"sentences\": [\"A man stands holding a violin and bow discussing its features.\", \" The man sets the instrument under his chin and tightens the bow.\", \" The man undoes the bow strings and raps them around the violin.\", \" The man plays a song on the violin.\"]}, \"v_crSMHcUkPcA\": {\"duration\": 90.33, \"timestamps\": [[0, 4.97], [5.42, 35.23], [35.68, 41.1], [41.55, 72.71], [72.71, 81.29], [82.2, 90.33]], \"sentences\": [\"A green splash appears against a white back drown.\", \"Then a series of words appear across the screen and showing various pictures describing the terms.\", \" A man is then shown standing on a ladder laying wall paper.\", \"After,the man cuts the wall paper and gains assistance while putting the paper on the roof.\", \"The two finish and give each a high five.\", \"Finally,several rooms are shown displaying the work they've done.\"]}, \"v_Hj_YKQiU-8Y\": {\"duration\": 121.79, \"timestamps\": [[2.44, 54.2], [44.45, 114.48]], \"sentences\": [\"A young girl is seen speaking to the camera while playing with her hair.\", \" She points to her shirt and leads into her brushing her hair while speaking to the camera.\"]}, \"v_iVVatZsgnGo\": {\"duration\": 160.45, \"timestamps\": [[12.03, 68.99], [68.99, 125.15], [123.55, 154.03]], \"sentences\": [\"A person is seen swimming under water using scuba gear and pulling a rope by her side.\", \" She then catches a fish and is seen again in a bikini swimming around a whale.\", \" More shots of a dolphin are shown jumping through the water and ends with text across the screen.\"]}, \"v_5OGNGIF22SY\": {\"duration\": 207.26, \"timestamps\": [[0, 45.6], [45.6, 98.45], [98.45, 167.88], [167.88, 207.26]], \"sentences\": [\"A buff young man is sitting on a machine with a sliding seat demonstrating weight lifting techniques.\", \"He then slides back,puts his feet in the ropes and starts to tie his shoes.\", \"Once complete,the man grabs the rope and moves back and forth while pulling out the rope to exercise.\", \"Now he is done,he drops the ropes and starts to talk again.\"]}, \"v_dgbGv3G4k5M\": {\"duration\": 119.77000000000001, \"timestamps\": [[0, 9.58], [8.98, 119.77], [50.9, 119.77], [82.04, 119.77], [116.18, 119.77]], \"sentences\": [\"A family is rearranging furniture in a living room.\", \" They set up a Christmas tree in the corner of the room.\", \" They put lights on the tree.\", \" They put bulbs onto the tree.\", \" A little girl does a spin in front of the tree.\"]}, \"v__icW_MAe7Po\": {\"duration\": 62.32, \"timestamps\": [[0, 12.46], [14.02, 53.6], [54.22, 62.32]], \"sentences\": [\"A man is inside a gym with a ball.\", \" He joins a team, playing a game of soccer.\", \" They kick the ball back and forth on the court.\"]}, \"v_huKjjvCG0EE\": {\"duration\": 130.61, \"timestamps\": [[1.31, 130.61], [0, 130.61], [27.43, 34.61], [69.88, 77.06]], \"sentences\": [\"men are standing in a geen grssy field playing croquet.\", \" people are sitting on the field around the croquet game.\", \" man wearing white uniform is talking to the camera in the field.\", \" a man and a woman are talking to the camera.\"]}, \"v_aiTAx3oo97U\": {\"duration\": 24.2, \"timestamps\": [[0, 24.2], [1.09, 2.18], [3.02, 24.2], [7.98, 10.89]], \"sentences\": [\"We see a person standing on a stair stepper.\", \" The person moves a cord out of the way.\", \" The man begins to walk on the stepper.\", \"  The person lifts their right hand.\"]}, \"v_tt5-QtDwm3Y\": {\"duration\": 77.88, \"timestamps\": [[1.17, 40.11], [27.26, 75.15]], \"sentences\": [\"A man is seen speaking to the camera and leads into him helping a man shoot several baskets.\", \" The coach is then seen instructing a large group of children as they shoot baskets over and over.\"]}, \"v_GTOP7XXi_vI\": {\"duration\": 218.06, \"timestamps\": [[0, 22.9], [23.99, 85.04], [86.13, 199.52], [201.7, 218.06]], \"sentences\": [\"Smoke fills an empty dark room.\", \" Words appear on the screen, followed by the appearance of men who are kickboxing.\", \" A group plays instruments behind them while they fight.\", \" The two men end the fight with a hug.\"]}, \"v_ldjIg23Rofw\": {\"duration\": 206.12, \"timestamps\": [[0, 35.04], [35.04, 63.9], [63.9, 71.11], [71.11, 89.66], [90.69, 206.12]], \"sentences\": [\"two man are in a room playing row row row your boat.\", \" two men are playing taking a selfie in a living room.\", \" man is standing in living room playing beer pong and taking out his shirt.\", \" man is standing in the living room holding a tennis racket and hiting a ball.\", \" two men are standing in the living oom playing beer pong and doing other shot games with a bottle of whiskey.\"]}, \"v_zyh1cftKtQM\": {\"duration\": 233.59, \"timestamps\": [[1.17, 115.63], [63.07, 218.41]], \"sentences\": [\"A woman is seen speaking to the camera while holding up various objects and begins brushing her hair.\", \" She ties her hair up while still speaking and holding up several brushes at the sign time.\"]}, \"v_WdC6dVbfTvs\": {\"duration\": 146.45, \"timestamps\": [[0, 65.17], [0, 21.97], [24.16, 66.63], [66.63, 115.69], [115.69, 131.07], [140.59, 146.45]], \"sentences\": [\"A body piercing artist is seen piercing the belly button of a female.\", \" Initially he uses a piercing tool to make the incision on the belly button.\", \" Afterwards he inserts the piercing and makes sure its secure.\", \" Than he uses a wipe and cleans the area.\", \" Afterwards the girl stands up talks to he friend and looks in the mirror.\", \" In the end the camera man turns around and speaks to the camera with authority .\"]}, \"v_yrCBN0tYjPE\": {\"duration\": 52.15, \"timestamps\": [[0, 4.43], [4.43, 9.65], [17.99, 29.47], [37.29, 52.15]], \"sentences\": [\"A man stands in a large room.\", \" He then jumps up on beams.\", \" He then balances himself on the beam.\", \" He does several flips and tricks.\"]}, \"v_5fgJ5vWTcSQ\": {\"duration\": 180.09, \"timestamps\": [[0, 36.92], [45.92, 154.88], [154.88, 180.09]], \"sentences\": [\"A man is riding a skateboard down a suburban road.\", \" Two more are shown as the camera man is spotting them from behind.\", \" He pushes them, keeping them at a fast pace.\"]}, \"v_a_v_1fL2VyM\": {\"duration\": 20.99, \"timestamps\": [[0, 5.56], [5.77, 19.63]], \"sentences\": [\"An athlete jumps with a pole to pass the horizontal bar, then he falls on the foamy mat.\", \" Then, there is a flash back of the vault pole jump.\"]}, \"v_EO_BnsrWMnI\": {\"duration\": 212.89, \"timestamps\": [[3.19, 105.38], [91.54, 203.31]], \"sentences\": [\"A man is seen wearing a funny uniform and walking out onto a large stage while intervening to speak to the camera.\", \" The man performs gymnastics moves around a beam in a silly manner and ends with the audience clapping and the man waving.\"]}, \"v_xtmxgih0yIk\": {\"duration\": 232.62, \"timestamps\": [[0, 23.26], [24.42, 62.81], [63.97, 107], [108.17, 129.1], [130.27, 157.02], [158.18, 195.4], [196.56, 217.5], [218.66, 232.62]], \"sentences\": [\"A horse stands alone, attached to a wooden trunk.\", \" A man approaches the horse holding two brushes in his hands and speaks for a bit.\", \" He goes up to the horse and brushes the hair of the horse, removing the hair of the horse that attaches onto the brush.\", \" He pauses for a bit to speak.\", \" He goes back to removing the excess hair off the horse.\", \" He pauses again and speaks for a while.\", \" He returns to brushing the horse.\", \" He stops brushing the hair and speaks.\"]}, \"v_I5RVQUYA1w4\": {\"duration\": 33.72, \"timestamps\": [[17.36, 19.05], [23.1, 31.86]], \"sentences\": [\"The two girls hug each other and the girl who's wearing the blue dress slightly pushes past the other girl.\", \" Then she runs back to her and hugs her and runs away from her again.\"]}, \"v_6Eh7B3GnQWI\": {\"duration\": 69.1, \"timestamps\": [[0, 6.22], [6.22, 58.05], [50.45, 54.59], [56.66, 69.1]], \"sentences\": [\"We see a man talking to the camera while holding an accordion.\", \" The man then plays the accordion and  we see it up close.\", \" The man holds a note and his hands shake.\", \" We zoom out and the man stops playing.\"]}, \"v_mvl6wff267o\": {\"duration\": 150.09, \"timestamps\": [[0, 33.77], [36.02, 108.82], [106.57, 150.09]], \"sentences\": [\"A large group of people are seen running down a track and transitions into several more people running.\", \" Two girls check their wrists while one speaks to the camera and several shots of a wristband are shown.\", \" More people are interviewed while wearing the wrist bands and show how they work while many run around.\"]}, \"v_vkk-sOo8Hqw\": {\"duration\": 200.1, \"timestamps\": [[0, 27.01], [30.01, 147.07], [147.07, 179.09], [180.09, 200.1]], \"sentences\": [\"We see men on a boat, a saw appears then a man in a hammock.\", \" the man gets up and goes to his mower and creates something on a wheel well and ties it to the mower and the shed door.\", \" The man allows the mower to spin around the object and cut the grass.\", \" It then pulls the object into the shed on the line and the door pulls closed.\"]}, \"v_A6CBFa22oJc\": {\"duration\": 112.8, \"timestamps\": [[0, 11.84], [12.41, 36.1], [36.66, 74.45], [75.01, 108.29]], \"sentences\": [\"An add displays a web site about a business called happydogz.\", \" Then, a man appears pulled by a dog, then adds display information about a retractable dog leash.\", \" After,  a couple pulls two dogs from leashes.\", \" After, adds display information about the leash.\"]}, \"v_8LI3rnG6kMA\": {\"duration\": 91.77, \"timestamps\": [[0, 10.55], [11.01, 15.6], [16.52, 28.91], [32.12, 56.89], [63.32, 91.77]], \"sentences\": [\"A carved pumpking with a light in it glows on a counter.\", \" Supplies for carving are then shown.\", \" A woman cuts the top off the pumpkin, emptying the seeds.\", \" She then carves the traced lines to cut out the design.\", \" When she is done, a tea light is placed inside the pumpkin and lit.\"]}, \"v_JK8pYBpatAY\": {\"duration\": 28.47, \"timestamps\": [[0, 28.47], [0.71, 28.47], [1.99, 28.47]], \"sentences\": [\"A woman is kneeling down on a blue mat.\", \" She has a metal weight bar on her shoulders.\", \" She moves up and down lifting the weight.\"]}, \"v_2iBb6ArHweI\": {\"duration\": 101.4, \"timestamps\": [[3.04, 42.59], [37.01, 76.56], [62.36, 99.88]], \"sentences\": [\"A woman is seen speaking to the camera while holding a bottle of sunscreen.\", \" She then opens the bottle and uses a holder on the side.\", \" She shows off the holder while still speaking to the camera.\"]}, \"v_TpURw9nc8ks\": {\"duration\": 52.06, \"timestamps\": [[0, 34.1], [21.87, 52.06]], \"sentences\": [\"Several people are seen standing around one another holding sticks and looking around.\", \" The people hit a ball across a lawn one at a time and are seen laughing and smiling at one another.\"]}, \"v_IHPb-JPIhg8\": {\"duration\": 48.09, \"timestamps\": [[6.01, 13.22], [11.54, 15.63], [16.83, 30.54]], \"sentences\": [\"A man is swinging on a balance beam.\", \" He jumps off and puts his hands in the air.\", \" He gets back on the balance beam.\"]}, \"v_MZ4yIxM6snw\": {\"duration\": 115.71000000000001, \"timestamps\": [[0, 18.51], [18.51, 52.65], [52.65, 84.47], [84.47, 115.71]], \"sentences\": [\"A man in a yellow construction top is inside painting the wall beige.\", \" He goes from the bottom up and grabs more paint on his tool.\", \" He is making progress across the wall pretty quickly the way he is doing it.\", \" He makes it half way across the wall but the bottom of the wall is still white.\"]}, \"v_QtiqvB4uw2Y\": {\"duration\": 36.99, \"timestamps\": [[0, 5.73], [5.73, 31.81], [31.81, 36.99]], \"sentences\": [\"A view of a top of a roof with pine straws shown strewn all over it appears and a banner at the bottom say's \\\"If you got pine straw on your roof, call us 678-887-9479.\", \" A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he's walking along the roof blowing off all of the pine straws.\", \" The last view is of the cleaned off roof and the website is shown at the bottom of the screen.\"]}, \"v_Y76wuHBZgdU\": {\"duration\": 47.49, \"timestamps\": [[5.46, 14.96], [14.96, 28.97], [30.39, 47.49]], \"sentences\": [\"A man is is laying carpet in a room.\", \" A woman is looking at carpet samples in a shop.\", \" Men are on their knees installing hardwood flooring.\"]}, \"v_VdeYnCIbRJ4\": {\"duration\": 7.97, \"timestamps\": [[0, 4.34], [4.46, 7.97]], \"sentences\": [\"An athletic man is seen standing at the beginning of a long track with several people standing on the sidelines.\", \" He begins running down the track and jumping with a few others walk around him in the distance.\"]}, \"v__UPD2IvdQ_M\": {\"duration\": 49.74, \"timestamps\": [[0, 49.74], [0, 12.43], [12.19, 19.9], [20.14, 48.74]], \"sentences\": [\"An audience is gathered in a gymnasium to watch the gymnast on the pommel horse.\", \"  He concentrates, and then mounts to begin his routine.\", \"  He performs first one, and then a second impressive handstand while gripping one handle with both hands.\", \"  He completes his routine, and then finishes with a flawless dismount to cheering.\"]}, \"v_nn-ASL9KZUo\": {\"duration\": 128.96, \"timestamps\": [[0, 22.57], [22.57, 88.34], [91.56, 127.03]], \"sentences\": [\"A man is seen throwing a dart up over the camera while looking into the distance.\", \" Several shots are shown of him throwing as well as text going across the screen.\", \" The man continues throwing over and over again.\"]}, \"v_0YPfoB84Fes\": {\"duration\": 86.23, \"timestamps\": [[0, 75.02], [75.45, 86.23]], \"sentences\": [\"A woman shows how to cover a cake with frosting using a spatula.\", \" Then, she explains how to cleans the border of the cake using a cloth.\"]}, \"v_hG2kfPRWjO0\": {\"duration\": 213.53, \"timestamps\": [[0, 33.1], [28.83, 165.49], [151.61, 207.13]], \"sentences\": [\"A close up of a phone is shown as well as a person waking up, brushing their teeth, and walking out the door.\", \" Close ups are shown of people riding up a ski lift as well as down a mountain.\", \" The people to zoom in on the camera looking closely and waving to one another.\"]}, \"v_AF6tasHTW-8\": {\"duration\": 72.72, \"timestamps\": [[6.91, 9.09], [10.18, 15.63], [49.08, 49.81], [51.99, 54.9]], \"sentences\": [\"Two kids are jump roping outside.\", \" Two adults are kneeling down on the ground holding a jump rope for a kid.\", \" The woman is talking to the camera.\", \" A boy spills a glass on his face while jump roping.\"]}, \"v_f4mDKdD0z3U\": {\"duration\": 81.64, \"timestamps\": [[0, 40.82], [40.82, 71.84], [71.84, 81.64]], \"sentences\": [\"woman is wearing harness and get in a helicopter above and are flying above a volcano.\", \" a man and a woman are hanging from the helicopter's door holds to a rope and make a jump.\", \" the man and the woman are in the land talking to a couple.\"]}, \"v_H6g8SsxL8RU\": {\"duration\": 55.57, \"timestamps\": [[0, 25], [25.28, 55.57]], \"sentences\": [\"man in in front of a car with the hood open.\", \" man walks through the woods and ty to light a woodfire.\"]}, \"v_pVkwQOp1xZo\": {\"duration\": 45.63, \"timestamps\": [[0, 9.58], [9.35, 19.39], [19.39, 28.06], [28.52, 45.63]], \"sentences\": [\"Someone is stroking blue paint up and down on a fence.\", \" They put the paint brush in the paint again to gather more paint.\", \" Then continue to proceed with painting the fence.\", \" They do that multiple times trying to cover all of the brown.\"]}, \"v_jqW7r60gOzE\": {\"duration\": 13.14, \"timestamps\": [[0.46, 6.44], [5.59, 12.55]], \"sentences\": [\"A man is seen standing before a hold child holding up a pinata while others stand around and watch.\", \" The blind folded boy then takes multiple swings at the pinata while the kids sit around and watch.\"]}, \"v_lk2niPrG3y8\": {\"duration\": 28.72, \"timestamps\": [[8.9, 16.95], [16.95, 24.99], [24.99, 26.57]], \"sentences\": [\"There's a woman in a yellow tank top and black tights doing jump rope in a gym.\", \" She jumps in a rhythmic manner without stopping on the hardwood floor surface.\", \" After she's done, a person standing in front of her gives her a thumbs up and cheers for her.\"]}, \"v_W3KCFRADoX8\": {\"duration\": 177.84, \"timestamps\": [[0, 177.84], [15.12, 177.84], [92.48, 146.72], [166.28, 177.84]], \"sentences\": [\"A woman is sitting in a room talking.\", \" There is a white cat on the bed behind her.\", \" She starts braiding her hair to the side.\", \" She continues talking and blows a kiss to the camera.\"]}, \"v_cKHdMUfKsQ8\": {\"duration\": 237.66, \"timestamps\": [[0, 54.66], [49.91, 139.03], [120.02, 234.09]], \"sentences\": [\"A woman is seen speaking to the camera while holding up a paintbrush and bucket.\", \" She paints a piece of furniture next to her while also holding up a brush.\", \" She holds up more objects while dipping the brushes into them as well as uses it on the furniture.\"]}, \"v_FeXBmKYV8HY\": {\"duration\": 160.8, \"timestamps\": [[0, 24.12], [23.32, 49.85], [40.2, 79.6], [102.11, 160.8]], \"sentences\": [\"A woman reporting is speaking to a camera with a serious demeanor.\", \" A man unzips his violin from the bag and plays a little bit for the camera while the reporter commentates.\", \" He begins to struggle playing with his condition, and shows surgery on how to fix him.\", \" The reporter claims that the man is better than ever and shows his progress playing a violin in a show.\"]}, \"v_cwQQj3VZLC8\": {\"duration\": 73.93, \"timestamps\": [[0, 4.07], [4.07, 14.05], [14.05, 18.11], [18.11, 29.94], [30.31, 35.86], [35.12, 41.77], [41.77, 57.67], [57.3, 73.93]], \"sentences\": [\"A man is standing at the start line clapping his hands, people look on.\", \" He takes off running and does a long jump.\", \" He salutes the large applauding audience.\", \" Another man waits on the start line before accelerating into the long jump.\", \" He looks to the crowd who are subdued.\", \" He walk away looking at the ground.\", \" Another man waits on the start line before running into a longjump.\", \" He waves to the appreciative crowd and runs away smiling and celebrating.\"]}, \"v_uu4_cV49pMI\": {\"duration\": 18.25, \"timestamps\": [[0.46, 8.85], [6.75, 17.06]], \"sentences\": [\"A person is seen lying on the ground with another person running from behind.\", \" The person running then falls and others around them help and drink water.\"]}, \"v_n2fFj1mBjhQ\": {\"duration\": 16.65, \"timestamps\": [[0, 8.91], [8.24, 16.65], [16.23, 16.65]], \"sentences\": [\"Players are playing lacrosse in a hockey arena.\", \" The players leaves the arena.\", \" A green team player runs towards the clear window.\"]}, \"v_dVCAykynRzs\": {\"duration\": 70.47, \"timestamps\": [[0.35, 19.03], [20.79, 50.39], [48.63, 67.65]], \"sentences\": [\"A camera pans around a mcdonalds and leads into a man speaking to a cashier.\", \" Several shots are then shown of people playing rock paper scissors with employees.\", \" When people win the game, they get a free ice cream.\"]}, \"v_E7OCzz_XuiI\": {\"duration\": 165.91, \"timestamps\": [[0, 30.69], [41.48, 121.94], [108.67, 165.08]], \"sentences\": [\"A fridge is seen opening with two people grabbing onto a piece of cheese.\", \" The two men fight then begin playing a game of rock paper scissors.\", \" They use various tools and objects to play as well as smaller versions of themselves that keep panning backwards.\"]}, \"v_50oy8wP2Wo8\": {\"duration\": 95.9, \"timestamps\": [[0, 5.27], [8.15, 33.09], [37.88, 41.24], [50.35, 61.38], [61.85, 77.2], [77.2, 88.71], [88.71, 92.06], [93.02, 95.9]], \"sentences\": [\"We see an opening screen then a sitting lady.\", \" We see a person cutting the ladies long hair with a level.\", \" The person then brushes her blunt hair.\", \" The lady turns around and smiles.\", \" We see a before and after.\", \" We then see scenes of people using the tool.\", \" We see the tool in white and blue.\", \" The closing screen is seen.\"]}, \"v_VFKUKX9ToNI\": {\"duration\": 11.51, \"timestamps\": [[0, 1.96], [2.3, 7.54], [8.17, 11.51]], \"sentences\": [\"a group of swimmers are on a diving board.\", \" A man falls off the board very suddenly.\", \" He hits other levels on his way down into the water.\"]}, \"v_insSTTMSC38\": {\"duration\": 177.59, \"timestamps\": [[0, 35.52], [35.52, 92.35], [93.23, 133.19], [133.19, 177.59]], \"sentences\": [\"A woman is doing some exercise on a machine.\", \" She is going at a pretty fast speed, you can see her get off and then get back on again.\", \" She places her hands around a piece and it allows her to she her stride and speed as well as her heartbeat and stuff.\", \" She changes the her speed and drink some water and keeps on going.\"]}, \"v_1Ao43T5yRjI\": {\"duration\": 182.09, \"timestamps\": [[0, 49.16], [48.25, 148.4], [147.49, 182.09]], \"sentences\": [\"A rusty ball is shown rolling down some type of man made ramp.\", \"Several Olympic athletes are then shown putting the shotput by their neck and throwing it and getting their distance measured.\", \"A black scoreboard is finally shown and they begin to give the winner the medal and show the flag of the country the person is representing.\"]}, \"v_lcUtnIptSjM\": {\"duration\": 228.88, \"timestamps\": [[0, 41.2], [42.34, 155.64], [161.36, 228.88]], \"sentences\": [\"A woman in a lab coat is in a hospital recovery room.\", \" She soaps up her hands well with soap.\", \" She then rinses and dries them thoroughly.\"]}, \"v_zcvbHJ1BZ9s\": {\"duration\": 77.63, \"timestamps\": [[0, 13.97], [9.32, 25.23], [26.78, 57.44], [56.67, 76.07]], \"sentences\": [\"A man pulls a boot onto his foot seated in a chair inside.\", \" The man fastens the straps on the boat.\", \" A person shows the man how to fasten the straps on the boot.\", \" The man shakes while trying to finish putting on the shoes.\"]}, \"v_29kX1NaPGP0\": {\"duration\": 99.61, \"timestamps\": [[0, 23.41], [23.91, 70.73], [71.72, 99.61]], \"sentences\": [\"An older man is seen speaking to the camera while holding a tennis ball and racket in his hand.\", \" He moves the racket and ball up to demonstrate how to properly serve the ball, followed by him actually serving the ball in slow motion.\", \" The same shot is shown several more times to demonstrate how to properly perform this serve.\"]}, \"v_aEAmMKa8iuM\": {\"duration\": 40.61, \"timestamps\": [[0, 40.61], [4.67, 38.38]], \"sentences\": [\"An indoor BMX bike race happens.\", \"  After the start, everyone goes around the track as quick as possible.\"]}, \"v_TIue1jR51j8\": {\"duration\": 238.07, \"timestamps\": [[0, 238.07], [16.66, 47.61], [54.75, 105.94], [164.26, 221.4]], \"sentences\": [\"Man in purple talks to the camera.\", \"  Man in purple walks forward in slow steps.\", \"  Man in gray demonstrates how to walk.\", \"  Man in gray demonstrates different jumps.\"]}, \"v_arfBwR8qgPw\": {\"duration\": 5.46, \"timestamps\": [[0, 2.54], [2.54, 5.46]], \"sentences\": [\"a camera shows a group of people sitting around a gymnasium floor with a few standing and one crossing his arms.\", \" Suddenly a student comes into frame and jumps over a pole into a mat.\"]}, \"v_wRKFbuczjsw\": {\"duration\": 143.78, \"timestamps\": [[12.22, 30.91], [30.91, 54.64], [54.64, 109.27], [109.27, 129.4], [129.4, 139.46]], \"sentences\": [\"There's a woman in a pink shirt and black shorts training a dog on a large open lawn.\", \" she is throwing pink colored Frisbee discs for the dog to run and fetch.\", \" Every time she throws the disc, the dog gets excited and runs and fetches the disc for her.\", \" The dog is well trained to catch the disc in its mouth almost every time without missing it.\", \" there are are few people standing and watching the trainer and the dog.\"]}, \"v_yAa24V7sXJM\": {\"duration\": 203.06, \"timestamps\": [[0, 17.26], [18.28, 30.46], [35.54, 54.83], [57.87, 59.9], [72.09, 82.24], [83.25, 120.82], [121.84, 133], [135.03, 145.19], [146.2, 151.28], [156.36, 181.74], [185.8, 203.06]], \"sentences\": [\"An emblem appears on the screen.\", \" A view of the sun is seen between the clouds.\", \" A woman walks up to a young boy who has his pants down, crouching in front of a bucket.\", \" She yells at him, and drags him away.\", \" She shows him how to lather his hands with soap.\", \" Then the group of gathered women talk as the boy watches and listens.\", \" The women look sad as she walks away.\", \" A boy and woman walk up to talk to another woman, and she looks upset.\", \" A doctor is shown talking about dirty hands to the women.\", \" They are then shown outside, washing their hands and doctoring the boy as they show how not to be dirty.\", \" The group jumps into the air in celebration.\"]}, \"v_Kdf1HhynNx8\": {\"duration\": 204.64, \"timestamps\": [[0, 85.95], [65.48, 204.64]], \"sentences\": [\"Two girls are seen waving to the camera while one holds up a drink and the other plays with her hair.\", \" The girls walk around a bit followed by drinking out of a glass and making funny faces to the camera.\"]}, \"v_jYphKtLFIUk\": {\"duration\": 139.0, \"timestamps\": [[0.69, 139], [24.32, 41.7], [41.7, 139]], \"sentences\": [\"A group of boys chisel a name in sand on the beach with their hands.\", \"  The boys leave the art piece leaving just one boy in a red t-shirt to work on it alone.\", \"  Two boys returns with two balls of sand in circles  and sit next to the art piece as they work on rounding out the balls of sand they have gathered while a group of children gather around to watch.\"]}, \"v_45WfFPM5yvw\": {\"duration\": 170.19, \"timestamps\": [[0, 30.63], [31.49, 109.77], [109.77, 152.32], [155.73, 170.19]], \"sentences\": [\"a man in swimming trunks is outdoors, fastening himself into equipment.\", \" He gets on a parasailer, and gets into the water.\", \" He begins sailing on a surfboard, holding on tightly as he speeds up.\", \"  He then stops in the water, leaning onto his side.\"]}, \"v_r-XQMXUJBqk\": {\"duration\": 87.89, \"timestamps\": [[0, 87.89], [0, 86.57], [87.01, 87.89]], \"sentences\": [\"A kid is playing hopscotch on the ground.\", \" They go back and forth on the hopscotch board.\", \" They bend down to pick something up.\"]}, \"v_5K-soRkdGDs\": {\"duration\": 225.19, \"timestamps\": [[0, 15.76], [18.02, 65.3], [69.81, 113.72], [141.87, 225.19]], \"sentences\": [\"A dog is shown running up steps to a building.\", \" They go inside, and it's a dog grooming salon.\", \" Several signs in another language are shown before the equipment is turned on.\", \" The dog is rinsed, soaped, bathed and clipped on the machine.\"]}, \"v_oO6jZR9Aijc\": {\"duration\": 159.13, \"timestamps\": [[3.18, 7.16], [2.39, 154.35], [9.55, 100.25], [101.84, 151.17]], \"sentences\": [\"A store front is seen from the outside.\", \"A store owner stands behind a display wall and discusses.\", \" Paintball players run through a grassy court with obstacles and aim their weapons.\", \" The store owner displays different face masks for the sport.\"]}, \"v_DKnvOGEDUyQ\": {\"duration\": 179.89, \"timestamps\": [[0, 108.83], [99.84, 179.89]], \"sentences\": [\"A group of people are seen standing around a Foosball table playing a game with one another using the poles to play.\", \" The men continue playing game and fourth while the camera captures them from above and two walk away in the end.\"]}, \"v_37Q3so6ERxs\": {\"duration\": 8.26, \"timestamps\": [[0, 7.39], [3.55, 8.26], [5.95, 8.26]], \"sentences\": [\"A man in blue shirt drink a big glass of beer.\", \" The blonde man beside him is cheering.\", \" The man in blue shirt finished his drink and put it down, and the blonde man cheered.\"]}, \"v_CRKA3xPEKm8\": {\"duration\": 50.95, \"timestamps\": [[0, 49.67], [2.55, 49.67]], \"sentences\": [\"man is standing in parallels doing gymnastics in a roofed gym.\", \" people is in teraces watching the man.\"]}, \"v_rV9RzL8o7tk\": {\"duration\": 47.93, \"timestamps\": [[0, 7.67], [7.67, 30.43], [30.43, 46.97], [39.06, 40.02]], \"sentences\": [\"A girl wearing a white coat with hood is next to man and a woman on side of a pool table.\", \" Then, the girl walks and takes off the coat, then she takes a cue stick and bend on front two men.\", \" After, the girl turns and grabs the boy shirt while making a sexy gesture, then she turns to play again.\", \" A man wants to touch the butt of a girl.\"]}, \"v_nw8MpBwL508\": {\"duration\": 100.68, \"timestamps\": [[0, 9.06], [9.06, 96.15], [96.15, 100.68]], \"sentences\": [\"A girl in a purple outfit gets onto a balance beam.\", \" She does a gymnastics routine on the balance beam.\", \" She dismounts and lands on the mat with her hands in the air.\"]}, \"v_QCcueK6xiZ4\": {\"duration\": 73.12, \"timestamps\": [[0, 8.04], [10.24, 55.94], [57.76, 73.12]], \"sentences\": [\"A man is crouching on the ground, cleaning something.\", \" Several cars are parked in a parking lot.\", \" People are seeing washing the cars with soap and water.\"]}, \"v_gtzg66XV6E0\": {\"duration\": 156.24, \"timestamps\": [[0, 13.28], [16.4, 81.24], [88.27, 156.24]], \"sentences\": [\"a woman is in front of a table, holding a cat.\", \" She pets the cat to calm him down.\", \" She then gently clips his toenails.\"]}, \"v_0J55EGFLglQ\": {\"duration\": 19.85, \"timestamps\": [[0, 5.06], [4.96, 8.34], [8.34, 13.3], [13.4, 19.85]], \"sentences\": [\"it seems like they are watching on tv a game of soccer.\", \" The station shows for what channel it is that is being watched.\", \" The women on the court are running around trying to get the ball.\", \" One of the women runs all the way into the goal.\"]}, \"v_ezx7z-kx2v4\": {\"duration\": 111.21000000000001, \"timestamps\": [[22.24, 33.92], [36.14, 43.37], [74.51, 86.19]], \"sentences\": [\"A man is standing up and throws a rock.\", \" People are standing and watching him.\", \"  A man gets into a horse carriage and rides away.\"]}, \"v_7univ6G4RXA\": {\"duration\": 83.62, \"timestamps\": [[0, 8.36], [8.78, 13.8], [14.21, 83.62], [57.28, 58.53], [66.89, 72.75]], \"sentences\": [\"We see a boy brushing his teeth and dancing in the bathroom.\", \" The boy pauses and looks at the brush.\", \" The boy returns to brushing and dancing.\", \" The boy holds on the the sink for a moment.\", \" The boy holds onto the sink again.\"]}, \"v_veKNTB-N9EQ\": {\"duration\": 151.35, \"timestamps\": [[0.76, 57.51], [47.67, 149.83]], \"sentences\": [\"A close up of a wall is shown with water spraying down the sides that leads into several pictures as well as people spraying down the ground.\", \" More people are seen spraying down a truck as well as cars being lifted up on a machine while more pictures are shown.\"]}, \"v_6sorAV7KJxA\": {\"duration\": 201.23, \"timestamps\": [[0, 59.36], [69.42, 119.73], [128.78, 183.11]], \"sentences\": [\"This man is shown standing on the roof saying a few words.\", \" Then he starts removing some parts of wood from the roof and he piles all of the tiles up.\", \" Then he puts them where they should go to make a full part on the roof.\"]}, \"v_MJZjSHG6tBY\": {\"duration\": 224.16, \"timestamps\": [[3.36, 69.49], [71.73, 173.72], [106.47, 114.32], [106.47, 110.96], [175.96, 218.55]], \"sentences\": [\"A man does a  barbecue in a yard while singing with people showing drinks in cans and cups.\", \" Then people walk to a bar  and sing inside drinking beer.\", \" Women serves drinks from a fountain.\", \" A man talks on front a microphone and people continue singing and showing beer.\", \" Then, people are again singing, drinking and dancing outdoors.\"]}, \"v_M6yAoJJQvGY\": {\"duration\": 113.75999999999999, \"timestamps\": [[2.28, 56.88], [38.11, 112.62]], \"sentences\": [\"A woman is seen speaking to the camera and leads into clips of her performing ab exercises wile speaking to the camera.\", \" The woman demonstrates how to do a proper sit up by moving her arms in different places and speaking to the camera.\"]}, \"v_4XEowfJ-1W0\": {\"duration\": 193.14, \"timestamps\": [[3.86, 69.53], [70.5, 174.8], [93.67, 107.19], [108.16, 177.69]], \"sentences\": [\"A person shows a bowl of ice cream at Disneyland.\", \" The person enjoys the bowl of ice cream.\", \" A trolley rolls along a street with a conductor hanging out of the window.\", \" A busy street is seen with many people walking along and looking at a parked trolley car.\"]}, \"v_mHbsKzezfFQ\": {\"duration\": 179.63, \"timestamps\": [[0, 5.39], [7.19, 173.34], [52.99, 173.34], [68.26, 77.24], [86.22, 88.02], [128.44, 173.34], [141.01, 153.58], [174.24, 179.63]], \"sentences\": [\"We see a black screen and the credits.\", \" A person is cutting a man's hair.\", \" They switch to an electric razor on the back.\", \" The person uses the shaver on their hand.\", \" The screen changes to black for a moment.\", \" We see the screen change again and the person lines the back of the man's head.\", \" The barber touches the shaver edge.\", \" The screen fades to black and the ending credits roll.\"]}, \"v_p4YTDxTASBI\": {\"duration\": 33.76, \"timestamps\": [[0, 33.42], [2.19, 20.43], [20.59, 33.76]], \"sentences\": [\"A group of people are riding in various canoes down a river.\", \" A man shoots a flame up into the air followed by several others as well.\", \" The camera pans around the group of people dressed as pirates and in other various costumes.\"]}, \"v_vHejQlbAL78\": {\"duration\": 189.87, \"timestamps\": [[1.9, 80.69], [54.11, 146.2], [133.86, 183.22]], \"sentences\": [\"Several people are seen grabbing skis as well as cars lined up and people speaking to one another.\", \" This leads into several clips of skiers riding down mountains one after the other.\", \" People are shown riding together as well as a solo and ends with a man kicking at the camera.\"]}, \"v_o_AftOrP4zI\": {\"duration\": 158.29, \"timestamps\": [[3.17, 46.7], [30.87, 132.96], [112.39, 151.17]], \"sentences\": [\"The athlete is putting on his red sneakers, then he talked to the camera, and then run in the indoor tracking field.\", \" He rested for a bit, then his coach is having interview, then the scene change where the athlete started to practice, running around, then did some pole jumped.\", \" He did some exercises and stretches.\"]}, \"v_jTMdMnbW9OI\": {\"duration\": 123.9, \"timestamps\": [[0, 2.48], [2.48, 6.81], [6.81, 10.53], [10.53, 13.01], [13.01, 17.97], [17.97, 22.3], [22.3, 25.4], [25.4, 32.21], [32.21, 37.79], [37.79, 42.13], [42.75, 47.08], [47.08, 70], [70, 87.35], [87.35, 89.83], [90.45, 102.84], [102.22, 105.32], [105.32, 107.18], [107.18, 117.09], [117.09, 123.9]], \"sentences\": [\"A boy in an orange shirt is playing a video game.\", \"  The scene changes to the game itself.\", \" The scene changes back to the boy.\", \" The camera zooms in on the controller.\", \"  The scene goes back to the game.\", \" There is a close up of the boy's face.\", \"  The camera shows the TV with the back of the boy's head.\", \" The game is playing until the end.\", \"  The boy says something and TV has numbers on it.\", \"  The boy is talking again.\", \" The boy gets up and leaves the room.\", \" He goes to the bathroom and is rubbing his eyes.\", \" He looks in the mirror then reaches for the face wash and puts some in his hand.\", \" He throws the face wash on the washing machine.\", \"  He puts his head in the sink and washes his face angrily.\", \"  When he looks in the mirror again, it is an old man.\", \" He falls to the floor.\", \"  He washes his face again and this time it turn to a skull.\", \"  He rubs his face and the skull falls into the sink.\"]}, \"v_q5thIuCSTkk\": {\"duration\": 74.03, \"timestamps\": [[0, 1.85], [4.07, 42.19], [42.19, 56.26], [49.97, 74.03]], \"sentences\": [\"A person has their hand over the lens.\", \" We then see a child in gray skiing in front of the camera operator.\", \" the child falls off their skis and lays in the snow.\", \" The camera person stops and wipes snow from the kids goggles and turns off the camera.\"]}, \"v_ArGF2CfOxkY\": {\"duration\": 57.93, \"timestamps\": [[0, 10.14], [10.14, 31.86], [31.28, 48.95], [49.82, 57.93]], \"sentences\": [\"A horse is behind a yellow gate as a man sits on top holding a rope.\", \"The gate is opened,and a black calf comes running out into the field of dirt.\", \"Almost instantly,the man throws his lasso and jumps off to secure the cow.\", \"Once he is finished,the man gets back on the horse and other individuals come out to take the calf out.\"]}, \"v_XU8FzYcRat4\": {\"duration\": 106.25999999999999, \"timestamps\": [[0, 27.1], [20.72, 65.88], [70.13, 104.66]], \"sentences\": [\"A small group of men are seen standing on a sandy field hitting a ball back and fourth.\", \" The men begin a game of volleyball and hit the ball all around the area.\", \" The men continue playing while the camera captures them moving around.\"]}, \"v_ciEBsDNryN8\": {\"duration\": 119.56, \"timestamps\": [[0, 37.66], [35.87, 89.07], [68.15, 114.18]], \"sentences\": [\"A woman is seen holding an accordion while shaking her fists into the air.\", \" A band is seen walking in behind her and begins playing while she does.\", \" The girl continues to play with the band and ends by looking to the camera.\"]}, \"v_WGHXYbCWvyU\": {\"duration\": 200.3, \"timestamps\": [[3, 52.08], [57.08, 141.21], [141.21, 191.28]], \"sentences\": [\"A man is seen standing in a field with his eye closed and standing still.\", \" The man then begins moving his arms and legs around his body.\", \" He continues moving his body around with his eyes closed.\"]}, \"v_bXLa6zLsJ50\": {\"duration\": 119.19, \"timestamps\": [[6.56, 13.11], [13.71, 40.52], [39.93, 50.66], [51.85, 73.3], [73.9, 95.35], [106.08, 109.06]], \"sentences\": [\"A woman lays on a table being prepped for ear piercing.\", \" The person in charge of the operation pierces her ear in two places with a small rod.\", \" The person applies a cork to one end of the rod.\", \" The person pushes a different rod through the holes created by the initial piercing.\", \" The person caps the new rod on both ends.\", \" The woman shows off her new piercing and smiles.\"]}, \"v_rosZj4ZcPBA\": {\"duration\": 74.51, \"timestamps\": [[0, 14.53], [14.16, 35.39], [36.51, 50.67], [50.67, 74.51]], \"sentences\": [\"Outside a man is using a leaf blower using it to blow a pile of leaves.\", \" He seems to be at a park or something in the parking lot.\", \" He is wearing a hat and jeans and just out there by himself.\", \" He continues to keep blowing the pile of leaves  when a dog runs by out of nowhere.\"]}, \"v_S2V2TgLAMKg\": {\"duration\": 40.06, \"timestamps\": [[0, 5.81], [6.41, 40.06], [6.61, 13.22], [14.42, 18.83]], \"sentences\": [\"A person holds small objects in their hands.\", \" The person applies objects continuously to a wooden surface.\", \" When the person rubs on the smaller object, it puts a white residue on the surface.\", \" When the person rubs on the brown object, it removes the residue.\"]}, \"v_79LyHiS908U\": {\"duration\": 87.93, \"timestamps\": [[3.08, 12.75], [13.63, 28.14], [28.58, 80.02]], \"sentences\": [\"A man is shown sitting in front of several drums and banging to a rhythm.\", \" He talks to the camera about his song and what he is planning on playing.\", \" The man continues playing while the camera pans in and out on him playing the drums.\"]}, \"v_UBqFQKI1YW8\": {\"duration\": 78.16, \"timestamps\": [[0, 13.68], [13.68, 20.32], [20.32, 78.16]], \"sentences\": [\"A black man gymnast prepares to perform on a parallel bar exhibition.\", \" The man mounts the parallel bar and goes into a handstand and performs a series of spins and moves.\", \" The gymnast goes into his dismount and lands a perfect landing on the mat.\"]}, \"v_TH1kq-KBr9Y\": {\"duration\": 38.09, \"timestamps\": [[0, 19.62], [2.1, 3.43], [5.33, 6.86], [21.9, 26.28], [27.62, 35.05]], \"sentences\": [\"A man is hanging up wallpaper.\", \"  He looks back at the camera.\", \" He steps down from the step ladder.\", \"  A chair appears with the wallpaper.\", \"  The man is taking down the paper.\"]}, \"v_eVwRbDXyBbc\": {\"duration\": 7.55, \"timestamps\": [[0, 7.28], [0.68, 1.25], [1.17, 4.11]], \"sentences\": [\"There is a pool table with billiard balls on it.\", \"  A person has a pool cue in their hand.\", \"  They hit the cue ball into the other balls.\"]}, \"v_AWXdK-ix3gQ\": {\"duration\": 47.16, \"timestamps\": [[0, 13.44], [12.26, 38.2], [37.49, 47.16]], \"sentences\": [\"A gymaist stands holding is arm up and jumping onto a beam.\", \" He moves his arms and spins himself round and round on a set of bars.\", \" He does handstands and flips and jumps off to finish his routine.\"]}, \"v_2RfasAe0-tA\": {\"duration\": 85.75, \"timestamps\": [[0, 19.29], [19.29, 56.17], [56.6, 85.75]], \"sentences\": [\"A girl dressed as a tomboy and a boy dressed in a red shirt are standing in a room across from each other in a messy room.\", \"The two begin to grab each other and they begin salsa dancing.\", \"They continue dancing and spin each other around and doing a some type of salsa dancing.\"]}, \"v_KPJJfGK5NCw\": {\"duration\": 128.52, \"timestamps\": [[0, 10.92], [14.14, 24.42], [89.32, 100.25]], \"sentences\": [\"This woman is shown standing in one spot for a little while.\", \" Then she moves to throw the ball into the air and she goes back to the position she was in.\", \" Then she jumps back and turns around to throw the ball at a small distance, except she is not positioned quite right this time.\"]}, \"v_6URUyopL8qM\": {\"duration\": 79.73, \"timestamps\": [[0, 28.3], [28.3, 49.43], [49.03, 79.73]], \"sentences\": [\"A sign appears in a yard and a red van comes traveling down the road.\", \"After,a man appears tubing in a trail of water underneath the bridge.\", \"As he continues down the river,he hits a few rocks along the way and begins to bobble up and down before returning back in front of the red van.\"]}, \"v_Hh7aXAtWsXg\": {\"duration\": 33.28, \"timestamps\": [[0.33, 9.15], [6.49, 25.79], [16.47, 32.44]], \"sentences\": [\"A woman is see laughing with a group of people and one man hitting the other.\", \" A person hands a man a set of darts who then throws them off into the distance.\", \" The people continue speaking while the camera pans all around them.\"]}, \"v_1VDNFR3vQR4\": {\"duration\": 53.22, \"timestamps\": [[0, 2.39], [2.39, 42.58], [42.58, 53.22]], \"sentences\": [\"There are two guys standing on a large blue mat in a gym and they are both wearing shorts and a pair of boxing gloves.\", \" The men square up and they begin hitting and kicking at one another with brief moments of stopping in between their punches and their kicks.\", \" One of the guys kicks the other one too hard and the one who got kicked gets mad, rips his gloves off of his hands, walks away and angrily throws his gloves.\"]}, \"v_ih3LAZtQM50\": {\"duration\": 52.06, \"timestamps\": [[3.38, 4.16], [4.69, 37.22], [37.48, 49.2], [49.2, 49.46]], \"sentences\": [\"A guy bows while standing outside.\", \" The guy start doing karate outside.\", \" The guy does karate indoors and then leaves.\", \" A dog stands with a sweater.\"]}, \"v_qywEvklc1kM\": {\"duration\": 109.47999999999999, \"timestamps\": [[0, 36.68], [34.49, 76.09], [67.33, 109.48]], \"sentences\": [\"Two people are seen speaking to the camera with one holding a pot and the other handing him ingredients.\", \" The other then mixes the ingredients into a bowl and pouts it into a pan.\", \" More people come in to take a bite as well as a young boy helping and the man continuing to cook.\"]}, \"v_q-ID2mgEIow\": {\"duration\": 89.58, \"timestamps\": [[0, 38.52], [25.98, 89.58]], \"sentences\": [\"A man wearing glasses is seen stepping into frame and playing an accordion.\", \" The man continues to play while looking off into the distance and stops by smiling to the camera.\"]}, \"v_l5qCvYE1-tA\": {\"duration\": 27.4, \"timestamps\": [[0, 11.78], [11.1, 27.4]], \"sentences\": [\"Two young girls are in a gym and they do a side ways hurtles over a bar in the middle of the gym.\", \"The video is then replayed in slow motion and once again in a faster speed.\"]}, \"v_zwm-v9MLOFY\": {\"duration\": 224.7, \"timestamps\": [[0, 208.97], [210.09, 224.7]], \"sentences\": [\"4 men are in a square doing break dance while people is gathered around them watching them dance and do tricks in front of a lot of stores.\", \" names of the break dancers are shown in the screen.\"]}, \"v_9qUbxwjh-4A\": {\"duration\": 14.95, \"timestamps\": [[0, 2.77], [2.92, 7.93], [7.85, 11.96]], \"sentences\": [\"We see a young girl light a cigarette.\", \" She then takes the cigarette out of her mouth and talks.\", \" She hands the lighter to another person and puts her hand on her hip.\"]}, \"v_d7-tFV0RSCk\": {\"duration\": 116.03, \"timestamps\": [[0, 24.95], [24.37, 83.54], [82.96, 116.03]], \"sentences\": [\"A man is standing outside of a home talking with a large silver pole in his hand that has a yellow rope attached to it.\", \"The man begins cleaning the inside of a sliding glass door with his pole and brush and washes around the base and the inside of the window.\", \"The man then stops and begins talking to the camera and pointing to the window before he waves bye.\"]}, \"v_CTIVIXvCI3c\": {\"duration\": 187.33, \"timestamps\": [[0, 67.44], [59.01, 150.8], [104.9, 184.52]], \"sentences\": [\"A small child is seen hoping along the floor when a woman leads in more young dancers.\", \" She lines up the girls in front of a large crowd and the kids begin dancing on the stage.\", \" The little ones continue to dance and twirl on stage and walk off stage.\"]}, \"v_48xSiJdaH2g\": {\"duration\": 173.29, \"timestamps\": [[7.8, 16.46], [16.46, 40.72], [40.72, 66.72], [66.72, 80.58], [80.58, 100.51], [100.51, 122.17], [122.17, 147.3], [147.3, 159.43]], \"sentences\": [\"The video is about Wallwik and wallpaper removal system.\", \" It shows a woman removing wallpaper off the wall in a convenient and easy manner.\", \" She is using a a scouring tool to scratch off the wallpaper from the wall.\", \" Then she uses a soap solution and dips the sheet in the solution.\", \" There's a man hanging the wet sheets on the wall.\", \" A woman uses a sprayer on the moist sheets and sprays it on.\", \" Then a man and woman begin peeling off the old wallpaper off of the wall.\", \" The video shows instructions on how to use the Wallwik products.\"]}, \"v_r3lN8kgtgw4\": {\"duration\": 200.55, \"timestamps\": [[0, 12.03], [21.06, 183.5], [185.51, 200.55]], \"sentences\": [\"A group travels to a river, getting into inflatable rafts.\", \" They paddle quickly down the river through the raging white rapids and over small waterfalls.\", \"They float slowly back as water sprays down on them from a fall.\"]}, \"v_tPHfkxAwyp8\": {\"duration\": 230.06, \"timestamps\": [[0, 9.2], [4.6, 224.31], [225.46, 230.06]], \"sentences\": [\"A title screen appears in red letters and then fades out in a martial arts classroom.\", \" In a small martial arts classroom the students are gathered around, singing, clapping and playing instruments around a small circle for 5 capoeira matches where the fighters dancing and swinging their legs and arms and at the end of each match the fighters shake hands, hug and touch the musicians.\", \" Then a closing screen with a logo for the Capoeira school.\"]}, \"v_yxZ4ouqcld4\": {\"duration\": 137.3, \"timestamps\": [[0, 73.46], [19.22, 72.77], [15.79, 30.21], [24.03, 38.44], [22.65, 32.27], [36.38, 48.06], [43.94, 62.47], [57.67, 118.76], [70.02, 81.69], [78.26, 129.75]], \"sentences\": [\"A camera shoots various shots all around a city and shoe store.\", \" Hundreds of people are walking around an area and checking out shoes.\", \" A man talks to a woman about what shoes she likes to wear.\", \" People are dancing and enjoying the event together.\", \" There is food being eaten at the event by many.\", \" Several runners are getting ready to start a race.\", \" The race begins and people run very fast.\", \" Several people get interviewed during the race.\", \" The man who wins the race comes across the finish line.\", \" Several more people are shown finishing.\"]}, \"v_UKhH_iEifrU\": {\"duration\": 187.85, \"timestamps\": [[0, 8.45], [8.45, 187.85]], \"sentences\": [\"a list of ingredients is shown and the items are in a white table.\", \"  fist a bag of tea is sumerge in boiled water and added some syrup into a starbucks cup.\"]}, \"v_EA58Fo2e0CI\": {\"duration\": 78.81, \"timestamps\": [[0, 5.12], [8.27, 41.37], [42.95, 48.47], [53.2, 78.81]], \"sentences\": [\"A news station ad appears on the screen.\", \" We see two reporters outdoors, talking with members of a running team.\", \" They are preparing for a race, one of which is pregnant.\", \" The crowd is shown walking to where the race will begin.\"]}, \"v_LlI1IJEkW5E\": {\"duration\": 74.98, \"timestamps\": [[0, 12], [13.12, 49.11], [50.61, 67.48], [68.6, 74.98]], \"sentences\": [\"A woman is in a kitchen, talking in front of an array of sandwich fixings.\", \" She opens the bread, and applies meat, cheese, pickles, and mustard.\", \" She closes the sandwiches, and puts them in a heated panini press.\", \" She removes the sandwiches as they are toasted, and plates them.\"]}, \"v_QXZkejzunpk\": {\"duration\": 71.33, \"timestamps\": [[0, 63.13], [63.13, 71.33]], \"sentences\": [\"People ride bikes on a bumpy track circuit.\", \" Then, they arrive to the finish line where people is washing the competition.\"]}, \"v_xPDjkE7llg4\": {\"duration\": 119.89, \"timestamps\": [[0, 25.78], [26.37, 65.34], [66.54, 117.49], [112.69, 119.89]], \"sentences\": [\" A woman cuts the nails of the back legs of a cat with a nail trimmer, while a person restraints the cat.\", \" Then, the woman stands on front the cat, and the person holds the cat from a neck.\", \" After, the woman cuts the nails of the front legs, but the cat kicks.\", \" A person wearing black clothes enters the room.\"]}, \"v_f119wB0sj0w\": {\"duration\": 114.67, \"timestamps\": [[0, 3.44], [3.44, 114.67], [75.68, 91.17], [110.66, 114.67]], \"sentences\": [\"The video begins with a title sequence.\", \"  Several clips of baseball players are shown playing the game.\", \"  At one point it shows a player arguing with a referee.\", \" The video ends with another title sequence.\"]}, \"v_H1_5M9mQ79w\": {\"duration\": 166.63, \"timestamps\": [[0, 130.8], [130.8, 166.63]], \"sentences\": [\"A man wearing headphones is seen speaking into a microphone and begins playing a harmonica into the mic.\", \" The man continues  playing and the camera ends with a close up of the instrument.\"]}, \"v_hHmn5tf5d5I\": {\"duration\": 181.65, \"timestamps\": [[0, 14.53], [13.62, 107.17], [94.46, 178.02]], \"sentences\": [\"A small group of people are seen standing in a room with a woman standing in front.\", \" The woman then begins dancing around with the women while following her around.\", \" The women switch places with men and then begin following the woman dancing around.\"]}, \"v_Krh4m6nxZWE\": {\"duration\": 9.17, \"timestamps\": [[0, 7.75], [7.8, 9.17]], \"sentences\": [\"A woman in a blue shirt is walking along a slack line.\", \" She falls off and grabs the rope.\"]}, \"v_GrqBqKMW4ps\": {\"duration\": 61.49, \"timestamps\": [[0, 42.43], [42.12, 44.58], [48.88, 58.41]], \"sentences\": [\"A man is doing a gymnastics routine on parallel bars.\", \" He dismounts and lands on a mat.\", \" He gives several people high fives as he walks off the mat.\"]}, \"v_qCZhlIBr8_Q\": {\"duration\": 67.33, \"timestamps\": [[0, 16.16], [16.5, 67.33]], \"sentences\": [\"An assortment of drum lines are shown practicing in various locations.\", \"Several schools are shown and the SB4TS is in the bottom right corner as a group in blue shirts and black pants begin to perform and make various formations.\"]}, \"v_u0SpXGr_elM\": {\"duration\": 195.93, \"timestamps\": [[0, 14.69], [20.57, 66.62], [68.58, 128.33], [134.21, 166.54], [172.42, 183.19], [184.17, 195.93]], \"sentences\": [\"A gyros restaurant is shown from the outside.\", \" We enter, and the chef begins talking to the camera.\", \" He demonstrates how to make a gyro sandwich.\", \" He places all the ingredients on the counter, shaves the meat, and begins to stack them inside the pita.\", \" He continues talking for the camera, then serves the camera man a gyro.\", \" The man eats it, nodding in approval.\"]}, \"v_QkX8GFbwN7c\": {\"duration\": 32.69, \"timestamps\": [[0, 20.76], [19.78, 32.69]], \"sentences\": [\"A man is seen creating sparks onto a metal pole while moving it along the side.\", \" He then puts the torch down and zooms in on the bar.\"]}, \"v_rGuOU8U5Bvk\": {\"duration\": 169.9, \"timestamps\": [[5.1, 17.84], [23.79, 110.44], [112.98, 116.38], [126.58, 129.12]], \"sentences\": [\"A person is walking a horse in an arena.\", \" They begin to brush the horse's fur.\", \" They brush the ear of the horse.\", \" They brush the face of the horse.\"]}, \"v_XnctHnlJB4g\": {\"duration\": 17.04, \"timestamps\": [[0, 17.04], [5.03, 15.25], [14.83, 15.94], [16.53, 17.04]], \"sentences\": [\"A man in red stands on a stage.\", \" He lifts a barbell over his head.\", \" He drops the barbell on the ground.\", \" Several people cheer him on.\"]}, \"v_zJKedNWsZKY\": {\"duration\": 119.47, \"timestamps\": [[3.58, 49.58], [43.01, 112.9]], \"sentences\": [\"A man is seen sitting on a piece of exercise equipment and begins moving himself back and fourth on the machine.\", \" The man continues moving back an fourth while pulling his body back and ends by unhooking himself and moving his feet.\"]}, \"v_xa-zOtV3uPU\": {\"duration\": 42.96, \"timestamps\": [[0, 4.08], [2.36, 42.96], [35.22, 42.96]], \"sentences\": [\"A dealer is dealing cards at a blackjack table.\", \" People are sitting around the table playing.\", \" A man in a white shirt is standing up next to the table.\"]}, \"v_Lan3mtnCmlw\": {\"duration\": 53.27, \"timestamps\": [[0, 53.27], [10.92, 20.51], [26.63, 27.7], [42.88, 48.21]], \"sentences\": [\"We see a Santa clause underwater in the ocean.\", \" We see white and yellow fish swimming around the man.\", \" We sit above the man seeing his bubbles.\", \" The man swims under a rock arch.\"]}, \"v_mA4wEXlASpc\": {\"duration\": 42.82, \"timestamps\": [[0, 17.56], [17.56, 42.82]], \"sentences\": [\"Two people are seen standing ready with one running down a track and into a sand pit.\", \" The man lays down while another raises a flag and walks away from the track.\"]}, \"v_w9M6GUCtoQQ\": {\"duration\": 232.71, \"timestamps\": [[0, 47.71], [47.71, 129.15], [129.15, 182.68], [185.01, 232.71]], \"sentences\": [\"An girl is seen sitting at a table holding various objects in her hands and pushing them all together.\", \" She then rubs a needle on a cotton ball then pushing it onto a pencil and wrapping thread around it.\", \" She then holds up a box of a product and then pouring several liquids into a bowl.\", \" She then dips the needle in ink and using the pencil to draw a design on her leg, rubbing it off with a rag in the end.\"]}, \"v_fpWOf1DR1oA\": {\"duration\": 9.13, \"timestamps\": [[0, 0.96], [2.05, 5.43], [5.89, 9.13]], \"sentences\": [\"A predominately dark dart board is empty.\", \" A guy throws a dart at the dart board.\", \" The dart hits the bullseye.\"]}, \"v_dAdCETrsDQw\": {\"duration\": 207.68, \"timestamps\": [[1.04, 68.53], [56.07, 170.3], [150.57, 205.6]], \"sentences\": [\"A small group of people are seen walking the red carpet and speaking to one another.\", \" An athlete is then seen speaking with a new host and several shots of him playing and riding a horse are shown.\", \" More clips are shown of him playing a sport and speaking to the host and shaking his hand.\"]}, \"v_Gn651vGKC2I\": {\"duration\": 99.94, \"timestamps\": [[0, 70.96], [70.96, 99.94]], \"sentences\": [\"A woman makes a tattoo in the arm of a girl while cleaning with a tissue.\", \" The girl makes pain gestures in the face.\"]}, \"v_WUOiJOqrHlI\": {\"duration\": 175.56, \"timestamps\": [[0, 60.57], [43.01, 136.93], [129.91, 175.56]], \"sentences\": [\"A shot of the movie Forest Gump is shown with the man playing ping pong in several shots and him laughing in the end.\", \" More clips are shown of the actors playing with one another and a man showing the footage on a computer while speaking to the camera.\", \" Tom Hanks is interviewed several times about the event and then sits down in the end while playing.\"]}, \"v_4y8mMJkvAR4\": {\"duration\": 170.41, \"timestamps\": [[0, 41.75], [40.05, 77.54], [77.54, 120.99], [120.99, 154.22], [154.22, 170.41]], \"sentences\": [\"A woman dressed in all black with a visor and sunglasses is talking holding a paddle.\", \"Once she is done talking,she begins kayaking with her white dog between her legs.\", \"Now the woman is out of the water and begins doing arm exercises with the paddle behind her head lifting it up and down.\", \"She then adds the legs and begins doing lunges in the grass before she continues to do curls with her hands.\", \"The lady has now moved to a patio an is laying down flat on her back doing leg exercises.\"]}, \"v_485Wn1DXt5U\": {\"duration\": 119.21000000000001, \"timestamps\": [[0, 25.03], [25.03, 67.95], [67.35, 95.97], [95.37, 119.21]], \"sentences\": [\"A girl is standing outside in a field talking and hula hooping.\", \"Another girl then tries to do the same thing but she isn't successful.\", \"The first girl comes back and does it effortlessly as the second girl still struggles.\", \"For the last round,the girl begins to hula hoop and drinks soda and runs across the grass.\"]}, \"v_Damu3T2Yy0M\": {\"duration\": 99.08, \"timestamps\": [[0, 50.04], [51.03, 71.34], [71.34, 99.08]], \"sentences\": [\"Two men are seen speaking to the camera when another walks into frame laughing and walks away.\", \" The men continue speaking then lead into an arm wrestling match between the two.\", \" One beats the other and flexes his arms to the camera while smiling.\"]}, \"v_Y1f_NXMfD98\": {\"duration\": 181.35, \"timestamps\": [[0, 68.91], [68.91, 133.29], [134.2, 154.15], [154.15, 181.35]], \"sentences\": [\"A black and brown down is standing up against the wall as a person moves a vacuum like machine back and forth over his fur.\", \"After his back is done,the person does the legs then lifts his tail up and does the but hole and the dog begins to walk away.\", \"The women then has to grab the dog and hold him to finish her task.\", \"Once complete,she takes the hair out of the vacuum and dumps it into a big black trash bag.\"]}, \"v_yj7YkvTZ4zw\": {\"duration\": 31.16, \"timestamps\": [[0, 5.76], [5.76, 12.93], [12.93, 19.79], [19.79, 31.16]], \"sentences\": [\"A blonde women runs jumps and twist a lands on the padding.\", \" Another woman runs and jumps and she doesn't make it she falls onto the grass.\", \" She completely missed the jump altogether and hits the pole down when she falls.\", \" She is laughing down on the ground and a man comes up to help her up.\"]}, \"v_Q8EoKJNm4mc\": {\"duration\": 65.09, \"timestamps\": [[0, 10.09], [6.83, 15.3], [13.34, 27.34], [29.29, 44.26], [46.54, 61.18]], \"sentences\": [\"a group of people are sitting in a sauna fully clothed.\", \" One guy stands up with a violin.\", \" The guy begins playing the violin and dancing.\", \" The guy kicks his shoe off while dancing.\", \" The guy sits down and plays the violin.\"]}, \"v_YUFPWt0VQ1Y\": {\"duration\": 88.91, \"timestamps\": [[14.67, 30.23], [30.23, 57.79], [57.79, 77.8], [77.8, 83.13]], \"sentences\": [\"There is a group of marching band students playing the trumpets.\", \" They are dressed in maroon and yellow colored uniforms and white hats.\", \" There are some students playing the drums and some students playing the trumpet.\", \" They continue playing the band as they march along the streets.\"]}, \"v_rABAqfLcssA\": {\"duration\": 30.7, \"timestamps\": [[0, 13.66], [12.74, 30.7]], \"sentences\": [\"A person is seen riding a board with a kite along the ocean moving at a fast pace.\", \" The person continues riding along and eventually crashes while the camera zooms in on the rider.\"]}, \"v_5wkGeYBS7hQ\": {\"duration\": 189.31, \"timestamps\": [[0.95, 46.38], [46.38, 60.58], [61.53, 91.82], [91.82, 187.42]], \"sentences\": [\"A group of boys are standing in a room with many clear cups of beer on a table they are all standing around.\", \"  The boys talk, laugh and tease each other before beginning a game of beer pong across a long table using a triangle shaped array of clear cups.\", \" One of the ping pongs lands in the cup and one of the boys begins to drink the beer.\", \" The group continue to play beer pong when one final player is able to throw and land a ping pong ball while standing with his back to the cups at which point the boys celebrate, and laugh.\"]}, \"v_3JNNjd9fv7U\": {\"duration\": 156.22, \"timestamps\": [[0, 62.49], [61.71, 156.22]], \"sentences\": [\"A woman is seen kneeling down next to a vacuum followed by several pictures of her vacuuming and moving around the carpet.\", \" More pictures are shown of the carpet as well as her kneeling down and she empties out a vacuum while still speaking to the camera.\"]}, \"v_gDexNGeZln0\": {\"duration\": 59.95, \"timestamps\": [[0.9, 28.48], [29.38, 58.46]], \"sentences\": [\"A person is seen speaking to the camera and leads into a close up of the ground and another person sitting on the side.\", \" More shots are shown of logs and sticks as well as a fire pit and a boy cutting a stick.\"]}, \"v_OxPzQ4yqfwg\": {\"duration\": 51.71, \"timestamps\": [[0, 2.33], [2.33, 12.41], [12.41, 35.68], [35.68, 51.71]], \"sentences\": [\"An older woman sitting at the table reading her paper work.\", \" Her husband comes up behind her and reads through it with her.\", \" Roofers are on the roof fixing some issues, putting in some new shingles.\", \" A woman on the phone with the company walks up and hands the phone to her husband.\"]}, \"v_b5SYTLjp6HI\": {\"duration\": 149.07, \"timestamps\": [[0, 10.44], [11.93, 25.34], [26.09, 57.39], [58.88, 89.44], [90.93, 120], [121.49, 149.07]], \"sentences\": [\"A man walks into a gym and bends in front of  a weight.\", \" the man tries to lift the weight two times and drops it.\", \" The man lifts the weight three times and walks away.\", \" The man lifts the weight two times.\", \" the man lifts the weight three times and walks away.\", \" The man lifts the weight two tines and removes his weight lifting belt.\"]}, \"v__JE5T2RKZvo\": {\"duration\": 118.21000000000001, \"timestamps\": [[7.68, 33.1], [33.69, 80.38], [78.02, 109.94]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her sanding down a board in several locations.\", \" She then sands more objects and shows off a large selection of tools she has.\", \" She hammers down the sides of the board and ends with her painting the board.\"]}, \"v_gHhgZ0Bd4H4\": {\"duration\": 215.02, \"timestamps\": [[0, 6.45], [7.53, 210.72], [24.73, 40.85], [65.58, 82.78], [87.08, 93.53], [126.86, 137.61], [187.06, 210.72], [210.72, 215.02]], \"sentences\": [\"We see rolling credits rise up the screen.\", \" We see three people riding stationary bikes in a gym.\", \" The camera moves closer to the bikers.\", \" The lady stop and adjusts something on her bike.\", \" We wee the fourth rider in the scene.\", \" The lady is riding her bike slower.\", \" The lady is riding her bike slowly.\", \" We see the closing screen on a blue background.\"]}, \"v_6kBo1TR--dk\": {\"duration\": 148.74, \"timestamps\": [[0, 59.49], [35.7, 114.53], [108.58, 145.76]], \"sentences\": [\"A large group of people are seen wandering around an area with a woman running past them.\", \" The woman is seen speaking to the camera and continues to run around the beach area.\", \" She runs along the boardwalk as well as past people and ends with her running a race and being interviewed.\"]}, \"v_r8MwPAJWPDk\": {\"duration\": 132.45, \"timestamps\": [[0, 132.45], [125.82, 132.45]], \"sentences\": [\"People are rock climbing up rocks.\", \" A person falls off of the rock into the water below.\"]}, \"v_IlD4gfHmWIg\": {\"duration\": 93.69, \"timestamps\": [[5.15, 11.71], [11.71, 43.1], [43.1, 66.52], [66.52, 85.26], [85.26, 90.41], [90.41, 92.29]], \"sentences\": [\"A gymnast wearing a magenta leotard is performing on the horse bar.\", \" There is a panel of judges sitting across from her and evaluating her.\", \" She stands up straight on the bar and does a twist and pummel.\", \" She continues to successfully do front flips on the horse bar.\", \" She completes her round after she jumps off of the horse bar doing a back flip.\", \" Then the gymnast walks away from the performing area.\"]}, \"v_hJiaSHwOkcs\": {\"duration\": 82.66, \"timestamps\": [[0, 82.66], [14.88, 47.95], [63.24, 82.66]], \"sentences\": [\"A man is sitting on top of a horse.\", \" He begins getting chased around the arena by a man pushing a wheelbarrow.\", \" The horse runs from bull in the pen.\"]}, \"v_sEvP3GFbLdw\": {\"duration\": 151.05, \"timestamps\": [[3.02, 37.76], [37.76, 117.82], [100.45, 147.27]], \"sentences\": [\"A close up of a couch is seen followed by a person walking in and out of frame.\", \" The person then sits down and holds their feet up.\", \" The person then puts a pair of shoes on and walks out of frame.\"]}, \"v_5MuLI6Plf-Y\": {\"duration\": 180.63, \"timestamps\": [[0, 180.63], [0, 61.41], [61.41, 102.06], [102.06, 180.63]], \"sentences\": [\"A man wearing a black shirt is sitting and playing the guitar in front of a black backdrop.\", \" Initially he starts to play the guitar slowly to find the proper rhythm.\", \" Than he starts to play the notes faster and faster.\", \" In the end he looks at the guitar and adjusts his fingers as he finishes playing the song .\"]}, \"v_HppLOtjJY_Q\": {\"duration\": 166.84, \"timestamps\": [[0, 26.69], [34.2, 106.78], [110.95, 166.84]], \"sentences\": [\"A large group of people are standing on a bridge.\", \" They are looking into the rapid waters below.\", \" Several people on canoes come through the bridge, which is the finish line.\"]}, \"v_OmE9IhdWFa0\": {\"duration\": 147.75, \"timestamps\": [[8.13, 24.38], [28.07, 37.68], [45.8, 48.02], [50.97, 141.1], [57.62, 129.28]], \"sentences\": [\"A model wearing a bikini opens directs the scene and talks behind an I-Pad screen.\", \" A meal is cooked in a frying pan.\", \" People ride on a boat and catch fish.\", \" Surfers ride large waves in the ocean.\", \" Jet skis pull surfers towards waves in the ocean.\"]}, \"v_XiG7rgPoKKI\": {\"duration\": 184.51, \"timestamps\": [[0, 184.51], [53.51, 184.51], [74.72, 79.34], [99.63, 105.17], [108.86, 113.47], [133.77, 141.15], [166.98, 169.75], [178.97, 184.51]], \"sentences\": [\"We see team of boaters in a competition in the sea.\", \" We see the race start and the boaters take off.\", \" They pass a small boat in the water.\", \" We see one team up close.\", \" We see a score board on the screen.\", \" The racers pass a banner and we see the green team again.\", \" The race is finished and we see the crowd clapping.\", \" We  see the final scores and the scene ends.\"]}, \"v_eUvvxpAK3_8\": {\"duration\": 75.47, \"timestamps\": [[0, 44.9], [43.77, 75.47]], \"sentences\": [\"A man is seen speaking to the camera and begins polishing a black shoe with a brush.\", \" He points around the shoe and flips the shoe around with his hands.\"]}, \"v_Ckkf840HZE4\": {\"duration\": 220.39, \"timestamps\": [[0, 49.59], [47.38, 169.7], [139.95, 218.19]], \"sentences\": [\"A man is seen riding around on the water wake boarding behind a boat.\", \" The man is shown in several clips performing a trick with camera affects point to his movements.\", \" The man continues to ride around on the board while text appears to give instructions.\"]}, \"v_GKy0MNJZxDc\": {\"duration\": 37.64, \"timestamps\": [[0, 36.51], [1.51, 19.2], [6.02, 19.38], [16.56, 22.96], [22.77, 34.06]], \"sentences\": [\"There is a large gymnasium where three gymnasts are performing gymnastics.\", \" There's one gymnast in orange leotards swinging on the rod and another gymnast next to him also swinging on the bars.\", \" They both swing upside down and stand on their hands for a few seconds before swinging back down.\", \" The third gymnast is performing behind them, doing front and back flips.\", \" The gymnast in the orange leotards does another front swing and then gets off the bars and walks away.\"]}, \"v_v7OW60YncY4\": {\"duration\": 136.97, \"timestamps\": [[0, 73.96], [76.7, 136.97]], \"sentences\": [\"A man is seen speaking to a camera and leads into he pouring liquid into a bowl and rubbing it into a wooden object.\", \" He then paints down the area with a brush and nails fabric to the back, creating a chair and having the camera pan down.\"]}, \"v_vcCwvRYqU2I\": {\"duration\": 156.21, \"timestamps\": [[0, 9.37], [9.37, 49.99], [45.3, 49.99], [50.77, 60.14], [69.52, 81.23], [82.79, 86.7], [98.41, 102.32], [146.06, 156.21]], \"sentences\": [\"We see a tree with leaves blowing int he wind.\", \" A man rakes his yard and talks to the camera.\", \" The man chooses a rake from four.\", \" The man throws some grass in the garbage.\", \" The man picks up and smells a twig with leaves.\", \" The man throws his rake into the yard.\", \" The man sprinkles leaves into the yard and rakes them up.\", \" We then see the twigs and leaves again.\"]}, \"v_k8C1Jb_xvh0\": {\"duration\": 129.68, \"timestamps\": [[0, 10.37], [12.32, 25.94], [26.59, 129.68]], \"sentences\": [\"A male worker walks up to an elephant.\", \" He gives the elephant a dart.\", \" The elephant and a woman take turns throwing darts at their targets.\"]}, \"v_Dv2T0R7HVBQ\": {\"duration\": 17.18, \"timestamps\": [[0, 1.29], [0.77, 13.14], [12.46, 16.58]], \"sentences\": [\"A young man is seen sitting at the bottom of a pool.\", \" He begins moving closer to the camera while smiling.\", \" He then bumps into the wall and moves upwards.\"]}, \"v_iPPfX25MUQ0\": {\"duration\": 112.99000000000001, \"timestamps\": [[0, 71.75], [71.75, 112.99]], \"sentences\": [\"Tourists rides camels while people pull the camels with a rope.\", \" Men helps a couple to unload the camels and feed them.\"]}, \"v__--nxrRXdPg\": {\"duration\": 208.68, \"timestamps\": [[8.35, 74.08], [74.08, 148.16], [148.16, 201.37]], \"sentences\": [\"Athletes performs high jump successfully in a stadium full of people.\", \" An athlete jumps, but touch the horizontal rod.\", \" Other athletes perform high jump in a competition on front a crow.\"]}, \"v_wBgU5jXb_V4\": {\"duration\": 76.81, \"timestamps\": [[0, 11.52], [11.14, 21.51], [21.51, 41.09], [41.86, 76.81]], \"sentences\": [\"A woman is walking her horse out to a field to ride.\", \" The horses tail is braided back and she is wearing pink.\", \" The lady gets on the horse and ride it around hitting a ball around.\", \" The horses tail is no longer braided as they ride around in the sand.\"]}, \"v_JaBA8V-nuDg\": {\"duration\": 177.94, \"timestamps\": [[0, 55.16], [55.16, 133.45], [133.45, 177.94]], \"sentences\": [\"Three women are sitting in a room behind the table knitting scarves and hats before a logo appears.\", \"They all reappear and begin knitting a purple scarf as they talk.\", \"Next,each lady begins to talk and show pictures of who they are making the special garment for.\"]}, \"v_Yp9WuBrgbI4\": {\"duration\": 64.85, \"timestamps\": [[0, 8.11], [7.13, 24.64], [20.1, 43.78], [41.51, 64.85]], \"sentences\": [\"The shirtless man is doing crunches.\", \" The woman is doing crunches while her legs is on a machine.\", \" The woman is holding the man's feet as he crunches.\", \" The man is moving his legs while he has big yoga ball under his legs.\"]}, \"v_4P0zJEfqCoM\": {\"duration\": 112.00999999999999, \"timestamps\": [[0, 19.6], [20.16, 57.69], [57.13, 78.97], [88.49, 96.89]], \"sentences\": [\"A woman gets her eyebrow clamped.\", \" A person pushes a needle through her eyebrow.\", \" They twist an earring into the eyebrow.\", \" They clean around the earring with a qtip.\"]}, \"v_UYcpD3r6Ol0\": {\"duration\": 233.43, \"timestamps\": [[0, 9.34], [9.34, 17.51], [17.51, 53.69], [53.69, 163.4], [163.4, 190.25], [190.25, 233.43]], \"sentences\": [\"A black screen appears and a black triangle with blue and green lights illuminating from it appear in the middle and red fancy lettering appear in the middle and read \\\"Lovey's Nails\\\".\", \"More lettering appear on different black screens and together they read \\\"MALEFICENT NAILS\\\"and \\\"FOR EASIER USE RED NAIL TIPS IF YOU HAVE USA PUNTAS ROJAS SI TIENES\\\".\", \"The woman is now removing nail polish from her nails on her left hand ,applies oil, then super glues fake nails onto her left hand and cuts the fake tipped nails into a pointed shape.\", \"The woman then opens up a small container of red thick liquid, takes a paint brush and applies it to her fake pointy tipped nails and applies a few coats onto each fake tipped nail, then once the red is dried she then applies flesh colored thick liquid over the entire nail include the red tips, shapes them, files,sands them down, then brushes off the powder with a brush.\", \"The woman then paints the top of the nails with a clear coat, then turns the nails over and paints the underside as well and puts her two hands together to show how it looks on the underside as well as the topside.\", \" The woman is now showing a close up of her face as she shows the near her face, then holds up a MAC lipstick that's named \\\"Russian Red\\\" and she applies it to her lips then smiles and shows of her newly done nails and lips by showing it at a few angles, and then finishing with still shot pictures and the word Shio on the last still shot.\"]}, \"v_tAleUKVZCD8\": {\"duration\": 136.46, \"timestamps\": [[0, 53.9], [54.59, 64.82], [64.82, 71.64], [72.33, 73.69], [74.37, 133.73]], \"sentences\": [\"Two teams play ice hockey the white team scores, and people in the bleaches cheers, then the red teams scores for his team, then they continue playing.\", \" The white team scores and players hug each other, the crowd applauds.\", \" After the red team score.\", \" The players go to dressing rooms in the half time.\", \" Then, the players continue playing and the red team scores and wins the competition.\"]}, \"v_iGXUvIRX77c\": {\"duration\": 91.53, \"timestamps\": [[0, 91.53], [2.75, 91.53], [36.16, 37.07]], \"sentences\": [\"People are playing the drums in a room.\", \" They begin marching back and forth in the room.\", \" A person in the back is playing the symbols.\"]}, \"v_DRWMUsADKFM\": {\"duration\": 183.02, \"timestamps\": [[0.92, 56.74], [54.91, 128.11], [127.2, 181.19]], \"sentences\": [\"A camera pans around a room and leads into a room rubbing paper down and putting a box in the middle.\", \" The woman wraps the box up in paper and pushing in the sides.\", \" She tapes up the sides and uses a ribbon to tie the box up and ends by unwrapping it and showing what's inside.\"]}, \"v_kPbae85fofk\": {\"duration\": 111.97, \"timestamps\": [[0, 107.49], [21.83, 91.81], [81.18, 88.45], [105.25, 111.97]], \"sentences\": [\"People including security guards are standing  behind a fence in a mall.\", \" We see a young man in a fancy jacket talk and throw darts across the room.\", \" The man stops throwing and ducks down for a moment then continues to throw.\", \" A lady wipes something off the mans face and the man and his entourage begin to leave the area.\"]}, \"v_-ySxFjhhK4Y\": {\"duration\": 152.37, \"timestamps\": [[0, 152.37], [8.38, 11.43], [73.9, 77.71], [85.33, 88.37], [143.99, 147.8], [149.32, 152.37]], \"sentences\": [\"We see a man preparing and throwing shotput.\", \" We see a man running to measure the distance.\", \" We see a man standing and measure.\", \" We see people in the crowd cheering.\", \" We see the people in the bleachers again.\", \" We zoom in as the player walks away.\"]}, \"v_pQof_-tUNtY\": {\"duration\": 150.3, \"timestamps\": [[0, 2.25], [2.25, 49.6], [48.85, 88.68], [89.43, 135.27], [136.78, 150.3]], \"sentences\": [\"We see a box on fabric.\", \" A person wraps the box in the fabric and ties it up.\", \" We see the person wrap to bottles in the fabric together.\", \" They then put two bottles in a bag and tie it.\", \" We then see the ending credits.\"]}, \"v_hZD-CjWt0Rg\": {\"duration\": 167.09, \"timestamps\": [[0, 5.85], [5.85, 161.24], [161.24, 167.09]], \"sentences\": [\"A player's stats show on the screen.\", \"  Montages of several indoor soccer games show.\", \"  The stats of the player are shown again.\"]}, \"v_5kCv4zwc7-I\": {\"duration\": 166.46, \"timestamps\": [[11.65, 12.48], [39.95, 53.27], [135.67, 142.33]], \"sentences\": [\"A girl in a blue shirt holds up a pack of fake finger nails.\", \" She sticks them onto her finger nails.\", \" She is showing her finger nails to the camera.\"]}, \"v_kgmcYBRYkAk\": {\"duration\": 16.18, \"timestamps\": [[0, 14.4], [1.13, 14.4], [15.37, 16.18]], \"sentences\": [\"A boy in red overalls is playing hopscotch.\", \" A woman walks behind him and sits down.\", \" The boy finishes and reaches for the person filming.\"]}, \"v_yfikZ4E_uko\": {\"duration\": 125.85, \"timestamps\": [[0, 60.41], [44.68, 125.85]], \"sentences\": [\"Liquid is shown being poured into a bowl, followed by a person slicing up a pineapple and apple and mixing them into a bowl.\", \" The person then cuts up more fruits and adds it to the bowl and mixes it all around together to create a fruit bowl.\"]}, \"v_lb-TlBtrKcU\": {\"duration\": 204.82, \"timestamps\": [[0, 68.62], [68.62, 114.7], [114.7, 157.71], [157.71, 204.82]], \"sentences\": [\"A woman is outside in a large green field talking,holding up a bow and arrow in front of a white paper with a large target.\", \"Before she begins,she assembles the bow in the arrow and hits the board.\", \"She then demonstrates the proper way to put the bow in their again and how you should hold the arrow before releasing it.\", \"After,a row of people are shown and they all begin to shoot their bows and arrows.\"]}, \"v_KwY8nf4MqR4\": {\"duration\": 33.93, \"timestamps\": [[1.02, 2.88], [2.88, 10.35], [10.35, 19.17], [19.17, 26.29], [26.29, 31.55], [31.55, 33.92]], \"sentences\": [\"A small boy wearing a blue and yellow hoodie and gray sweat pants in standing in an outdoor tennis court.\", \" He is holding a blue racket as he bounces the yellow and orange tennis ball on the court.\", \" He starts with his first serve where the ball hits the net.\", \" Then he takes another ball, bounces it and serves again.\", \" The ball goes over the net and falls on the other side of the court.\", \" He gets another ball for the third time and drops it off his hands while trying to serve.\"]}, \"v_oTsTx2BhtgY\": {\"duration\": 184.65, \"timestamps\": [[0, 9.23], [9.23, 40.62], [43.39, 69.24], [71.09, 121.87], [125.56, 174.49], [175.41, 184.65]], \"sentences\": [\"We see the title on a black background.\", \" We see a knife and sharpener and a man holding them.\", \" We see the man cut a tomato and paper.\", \"  The person uses a sharpens and then cuts the tomato, and paper easily.\", \" Sharpen a different knife and cuts a tomato and shows us the sharpener.\", \" We see the ending credits for the video.\"]}, \"v_sY8TfKQHe5w\": {\"duration\": 28.17, \"timestamps\": [[0.56, 26.34], [3.24, 7.04], [11.41, 13.8], [13.8, 23.1]], \"sentences\": [\"A commercial advertising a pumpkin cutter, a pumpkin knife, and a pumpkin light is shown using a family of two boys and one mother preparing pumpkins for the demonstration.\", \"  A little boy is shown using a pumpkin cutter to cut faces into a pumpkin.\", \" The boy is then shown scooping out a pumpkin using a pumpkin scoop.\", \"  A boy is then shown placing a pumpkin light inside of a pumpkin as the mother leans in and smiles between the two boys and the finished pumpkins which now have carved faces with glowing lights inside.\"]}, \"v_K1z2fiB9pUM\": {\"duration\": 202.12, \"timestamps\": [[1.01, 119.25], [108.13, 202.12]], \"sentences\": [\"Dozens of people are seen riding up a large, dusty hill while the camera pans around people riding on dirt bikes.\", \" The people ride all along the path while several others watch on the side and follow the riders as the continue riding along the track.\"]}, \"v__sgg_QEjcEE\": {\"duration\": 108.41, \"timestamps\": [[0, 4.34], [4.34, 21.68], [21.68, 52.04], [52.04, 62.88], [62.88, 75.35], [75.35, 79.68], [79.68, 92.69], [92.69, 104.62], [104.62, 108.41]], \"sentences\": [\"A black screen appears with red and white letters on it that say \\\"DISCUS THROW Example of CORRECTION of a DELIVERY PROBLEM for a beginner\\\".\", \" A young lady is now standing on a concrete circle and she begins swinging her red discus, then swings her body and then throws it.\", \"A black screen appears with white letters that say \\\"Out of several faults we select ONE problem\\\", and the video continues to show the problem and words appear on the screen to explain them.\", \"The same young lady is now standing in a different area holding a hand towel as she practices her swings and words on the screen give tips.\", \"The girl is back on the concrete circle swinging her disc and she then throws the disc.\", \" A black screen appears again with red and white words that say \\\"OTHER SIMILAR EXERCISES ON THE SAME IDEA: FOCUS ON THE LOW POINT OF THE IMPLEMENT TRAJECTORY.\", \" A boy is now standing on the concrete circle and he's practicing his swings with a shirt.\", \" A man is now indoors and he's practicing his swings with a golf club.\", \" The outro screen is mainly white with a black design on it and the name of the company and a person.\"]}, \"v_5WCgpt2bEJw\": {\"duration\": 16.07, \"timestamps\": [[0, 1.53], [1.93, 13.1], [13.42, 16.07]], \"sentences\": [\"A man sets a timer on a table.\", \" He then tries to solver a color block puzzle.\", \" He finishes the puzzle in only slightly over 8 seconds.\"]}, \"v_aKvCtSitxJY\": {\"duration\": 96.06, \"timestamps\": [[0, 13.45], [9.61, 27.38], [21.61, 52.35], [49.47, 96.06]], \"sentences\": [\"A girl is standing with a hula hoop in her hand.\", \" The girl talks to the camera.\", \" The girl demonstrates the hula hoop.\", \" The girl drops the hula hoop and poses.\"]}, \"v_1AEZ9fDDkz4\": {\"duration\": 94.62, \"timestamps\": [[0, 51.1], [51.57, 94.62]], \"sentences\": [\"A line of bikers prepare for a dirt bike race.\", \" They take off, racing over hills and around sharp corners, some falling off their bikes and kicking it angrily.\"]}, \"v_DbuQn8EOJx0\": {\"duration\": 104.35, \"timestamps\": [[1.04, 100.18], [12.52, 26.61], [26.61, 102.26]], \"sentences\": [\"A boy sits in a room and talks to a camera while holding a demonstrating how to use an electronic cigarette.\", \"  The boy unscrews the cigarette to reveal the inside mechanism.\", \"  The boy puts the cigarette back together and begins to smoke it as a woman walks by in the background, and then he continues to talk to the camera.\"]}, \"v_Zso0ZBs2y6E\": {\"duration\": 180.44, \"timestamps\": [[0, 55.04], [51.43, 136.23], [134.43, 180.44]], \"sentences\": [\"Close ups of fabric are shown and leads to a man putting them on a wall and a woman speaking to a great of men.\", \" A person lays out paper on a table and shows the men how to properly put wallpaper on.\", \" A man then speaks to the camera and ends with information being presented and the man putting down more paper.\"]}, \"v_0K1SrDmREzs\": {\"duration\": 52.62, \"timestamps\": [[0, 30.25], [27.89, 52.62]], \"sentences\": [\"An athletic woman is seen standing in a circle moving in a slow motion holding a discuss.\", \" She then spins herself around while holding the object and then throwing it off the distance.\"]}, \"v_BOckSaGr-uI\": {\"duration\": 135.51, \"timestamps\": [[0, 31.17], [18.97, 115.19], [91.47, 135.51]], \"sentences\": [\"A man in gray shirt is sitting on a chair.\", \"The man is pointing an empty canvas with his brush as he continue to talk.\", \" The man hold out his brush, dip the brush on the colors and began painting on the bigger canvas.\"]}, \"v_7WfF6FrZEuU\": {\"duration\": 36.2, \"timestamps\": [[0, 5.97], [6.34, 25.88], [22.99, 35.11]], \"sentences\": [\"A woman is seen smiling and speaking to the camera.\", \" Another man is seen sitting behind her with another man in front.\", \" The woman continues speaking while the man in front cleans the other's shoes.\"]}, \"v_RfXFS9fy-mI\": {\"duration\": 50.05, \"timestamps\": [[0, 50.05], [21.52, 25.03], [23.78, 28.03]], \"sentences\": [\"People are playing soccer in an indoor arena.\", \" They shoot and make a goal into the net.\", \" The players hug on the court.\"]}, \"v_7uE2pMuAM8I\": {\"duration\": 59.05, \"timestamps\": [[0, 11.22], [11.51, 39.56], [39.86, 59.05]], \"sentences\": [\"A person polish a shoe with a wrapped finger.\", \" Then, the person grabs polish paste and water to polish the shoe.\", \" After, the person put a drop of water on the shoe and continues polishing.\"]}, \"v_0h45uztur-o\": {\"duration\": 171.94, \"timestamps\": [[0, 10.32], [12.04, 19.77], [19.77, 23.21], [23.21, 35.25], [32.67, 35.25], [36.11, 49.86], [48.14, 49.86], [79.09, 104.03], [109.18, 133.26], [138.41, 146.15], [148.73, 162.49]], \"sentences\": [\"Wrapped presents are being shown lined up.\", \" A person is rolling out wrapping paper and using a ruler to hold it down.\", \" A box is set on top of the wrapping paper.\", \" The person begins wrapping the present.\", \" They are cutting the paper.\", \" They continue wrapping the present.\", \" They use tape to hold the paper on.\", \" They fold tissue paper to wrap around the middle of the box.\", \" They wrap curling ribbon around the box and tie it into a bow.\", \" The use the scissors to curl the ends of the bow.\", \" They stick a silver flower into the present.\"]}, \"v_w6kBE7BHHeU\": {\"duration\": 186.11, \"timestamps\": [[0, 176.8], [0, 6.51], [6.51, 127.48], [127.48, 131.21], [132.14, 153.54], [157.26, 159.12], [160.05, 176.8], [177.73, 186.11]], \"sentences\": [\"This is a video for arm wrestling tips.\", \"  A screen with caption is shown describing the video.\", \"  There are two men at an arm wrestling table a man in a white t-shirt and glasses is informing on how to properly prepare for an arm wrestling match with stance, arm position, finger position, wrist placement, body position, body and arm movement.\", \"  Another black screen appears with captions.\", \"   The man in the white t-shirt shows several ways to stand during an arm wrestling match with both feet on the ground and  wrapping one leg around the arm wrestling table.\", \"  Another black screen appears with caption about finding arm wrestling clubs.\", \"  The man in the glasses while still at the arm wrestling table with the other man gives a website address and social media sites.\", \"  The screen goes black and there are credits rolling followed by a company name.\"]}, \"v_sBx1HvNjs6s\": {\"duration\": 154.3, \"timestamps\": [[0, 14.66], [14.66, 147.35], [147.35, 154.3]], \"sentences\": [\"A bald man is talking and two pictures of a young male with nice hair flashes on the screen.\", \" The man then begins to work with a mannequin head that has a similar hairstyle as the boy in the pictures and he shows how the haircut was achieved while buzzing, cutting, combing and finger combing the hair.\", \" A black screen with white letters appear and they read \\\"Thanks for wathing! Please subscribe!!\\\".\"]}, \"v_y-HkIwa-jWM\": {\"duration\": 41.75, \"timestamps\": [[1.04, 8.98], [9.39, 28.6], [28.18, 34.44], [34.65, 41.75]], \"sentences\": [\"An older man passes a ball to a group of small kids and eventually kicks the ball.\", \" The man runs as other kids run and runs all the way to home plate.\", \" A woman runs in front of the base with the ball and the man trips over her.\", \" He helps her up as they both.\"]}, \"v_oN_5o1t_Lvk\": {\"duration\": 217.53, \"timestamps\": [[2.18, 203.39], [10.88, 64.17], [64.17, 138.13], [94.63, 185.99], [185.99, 215.36]], \"sentences\": [\"A girl demonstrates several advanced dance, and gymnastic moves in many different locations throughout a city.\", \"  A girl stands on a grass covered field and paved sidewalk and performs several gymnastic flips and cheerleading moves.\", \"  The girl then returns to the grass and does several more advanced backflips.\", \"  The girl advances to a wooden walkway and performs dance moves and performs a walking handstand in another location.\", \"  The video finally ends with the girl performing dance moves in a tunnel and sidewalk.\"]}, \"v_GlvfqDfvbKA\": {\"duration\": 77.86, \"timestamps\": [[0, 10.51], [12.46, 75.52], [76.69, 77.86]], \"sentences\": [\"A man talks to the camera while seated at a drum set while another man plays drums in the background.\", \" The first man plays the drums.\", \" The first man stops playing and turns to the camera.\"]}, \"v_OUfVZuWyqJQ\": {\"duration\": 47.51, \"timestamps\": [[0, 1.9], [2.14, 7.36], [9.26, 26.13], [12.11, 14.25], [14.25, 17.58], [18.77, 25.89], [26.37, 36.82], [37.06, 43.47], [43.47, 47.51]], \"sentences\": [\"We see the white opening screen.\", \" A man in jump stilts throws a bag over his shoulder and leaves a bank.\", \" The man in jump stilts runs from the cops on a city street.\", \" The man pushes through a market.\", \" The man jumps over a stroller being pushed by a lady.\", \" The man jumps over a truck and over a fence losing the cops.\", \" The man runs through a skate park down a city street and up stairs.\", \" The man opens the bag and counts his cash.\", \" We see a closing title screen.\"]}, \"v_9FaSaHgQSO8\": {\"duration\": 228.49, \"timestamps\": [[0, 181.65], [60.55, 228.49]], \"sentences\": [\"A large group of people are all seen riding around in bumper cars and driving around a track, bumping into one another.\", \" The people continue riding around and ends with a man and two children walking out.\"]}, \"v_xE5KichXWrA\": {\"duration\": 110.81, \"timestamps\": [[0, 9.97], [9.97, 34.9], [34.9, 51.52], [51.52, 67.04], [67.04, 86.43], [86.43, 104.16], [104.16, 110.81]], \"sentences\": [\"An intro shows on the screen introducing a winter throwing video.\", \" A man does spins around in a circle and completes the throw celebrating his distance.\", \" He prepares for another throw by getting himself into position.\", \" He completes the throw and prepares for another.\", \" He completes the next throw and prepares for the next.\", \" He completes the last throw and again celebrates a good distance.\", \" The video ends with text displayed on the screen.\"]}, \"v_Xi68dag0iGo\": {\"duration\": 143.22, \"timestamps\": [[0, 138.21], [29.36, 39.39], [138.21, 143.22]], \"sentences\": [\"A man dressed in army fatigues is playing bagpipes while other people watch.\", \" A woman is shown in the background dancing around as he plays.\", \" When he is finished claim he laughs and jokes with the other people.\"]}, \"v_k5wY4N61bzU\": {\"duration\": 160.15, \"timestamps\": [[0, 6.41], [6.41, 26.42], [26.42, 56.85], [56.05, 65.66], [65.66, 137.73], [137.73, 160.15]], \"sentences\": [\"A still image is pictured with the words Dog Walk Across America shown over it.\", \"A middle aged couple is then shown siting on logs talking with their dogs roaming behind them and another man sitting on a big boulder rock.\", \"Then several images of dogs are shown and then the woman reappears alone.\", \"Then another set of images are shown where the dogs are being helped by vets.\", \"The man then reappears with the lady and they begin to talk again.\", \"Lastly,the man walks off and a black screen appears showing multiple websites.\"]}, \"v_wZeV6W1VEoM\": {\"duration\": 88.23, \"timestamps\": [[0, 7.94], [8.38, 40.58], [42.79, 88.23]], \"sentences\": [\"Some boys are inside a gym.\", \" They take turns stacking a pile of tires.\", \" After each addition, one of them jumps and stands at the top.\"]}, \"v_FGdCWm4gI3M\": {\"duration\": 228.11, \"timestamps\": [[0, 5.7], [5.7, 19.39], [19.39, 54.75], [54.75, 55.89], [57.03, 61.59], [60.45, 228.11]], \"sentences\": [\"A collection of skateboards lined up on a street in the upward position on their wheels and upside down on the platform.\", \" A skateboarder wearing a white helmet skates by followed by another skateboarder while the camera pans a group of skateboarder spectators watching from the street curb.\", \" A group of skateboarders perform tricks and maneuvers up and down the street.\", \" A view of a vehicle loaded with skateboards and skateboarding equipment.\", \" Another view of the skateboards lined up on the street in the upright position.\", \" Spectators watch from the street curb while a group of skateboarders take turns skating down hill and making a sharp spin stop at a designated spot.\"]}, \"v_s_hQSJVIN3c\": {\"duration\": 70.59, \"timestamps\": [[0, 51.18], [51.88, 70.59]], \"sentences\": [\"man is in a oofed gym stretching his leg and doing exercise in front of a chair.\", \" the man bend the other leg and stretch it.\"]}, \"v_m5YvKrjGtPM\": {\"duration\": 25.38, \"timestamps\": [[0, 4.7], [0, 18.4], [3.43, 6.98], [6.85, 13.58], [13.58, 25.38]], \"sentences\": [\"A man kneels to grab a weight while a man watch him.\", \" A topless fat man practice weight lift behind the man.\", \" A person lift a weight on back.\", \" Then, the man lifts the weight, after he drops the weight to the floor.\", \" Again, the man kneels again and lift the weight above his head and then drop it.\"]}, \"v_n9xULD7oYXc\": {\"duration\": 52.36, \"timestamps\": [[0, 51.31], [0, 52.36], [41.37, 43.46]], \"sentences\": [\"Two man sit at a table.\", \" The man closest to camera crochets.\", \" The man closest to camera scratches his ear.\"]}, \"v_7GSCDxBSFsw\": {\"duration\": 49.48, \"timestamps\": [[0, 18.06], [18.8, 48.74]], \"sentences\": [\"A person holds a javelin and prepares to launch it.\", \" Then, the man runs and launch the javelin.\"]}, \"v_htBt3oP9zuo\": {\"duration\": 165.4, \"timestamps\": [[5.79, 157.95], [5.79, 27.29], [27.29, 53.75], [53.75, 165.4]], \"sentences\": [\"A woman demonstrates how to apply wallpaper to a wall.\", \"  A woman holds up the various tools needed to apply wallpaper.\", \"  The woman demonstrates the process before applying the paper in short demonstration segments.\", \"  The woman then begins to apply the wallpaper to a wall step by step.\"]}, \"v_bqDxblFvgro\": {\"duration\": 185.6, \"timestamps\": [[0, 28.77], [28.77, 160.54], [167.04, 185.6]], \"sentences\": [\"A person's bare feet are shown walking up a flight of stairs.\", \" Then different men are shown diving in slow motion off the diving board into the water.\", \" Women and boys are also jumping, each landing in an outdoor pool.\"]}, \"v_vbWdGj1sfO8\": {\"duration\": 11.08, \"timestamps\": [[0, 2.1], [2.1, 4.15], [4.1, 7.14], [7.14, 11.08]], \"sentences\": [\"A female is laying on her back exercising inside of a gym.\", \" She is wearing black and pink and just looks very comfortable while she works out.\", \" She brings her arms up and her legs up to the center of her body.\", \" She does that repeatedly for a little while.\"]}, \"v_ruHObln9mwI\": {\"duration\": 131.87, \"timestamps\": [[0, 131.87], [5.93, 40.88], [27.03, 33.63], [42.2, 67.91], [69.23, 87.03], [100.88, 131.87]], \"sentences\": [\"We see a game of hockey being played.\", \" the players rush the field and start fighting.\", \" A person punches someone in the head.\", \" The coach is trying to fight another coach.\", \" A man climbs over the balcony to try and fight.\", \" The red team gathers and hugs each other.\"]}, \"v_BZQb9uWULOc\": {\"duration\": 161.98, \"timestamps\": [[0, 10.53], [10.53, 21.87], [21.87, 32.4], [32.4, 146.59], [147.4, 152.26], [152.26, 161.98]], \"sentences\": [\"People are sitting bored in a lounge.\", \" A man walks in holding a portable beer pong table.\", \" The people get excited for him.\", \" They play a few rounds of beer pong.\", \" A man holds up a ping pong ball in front of a group of people.\", \" Text appears on the screen.\"]}, \"v_5pqVrMgiMcs\": {\"duration\": 190.78, \"timestamps\": [[0, 8.58], [9.54, 166.93], [167.88, 190.78]], \"sentences\": [\"A skateboarder come rolling down a steep road.\", \"  Skateboarders roll down the middle of public streets.\", \" The words \\\"Fair Oaks Longboarding\\\" along with credits appear over the skaters.\"]}, \"v_RatbnDSuY7w\": {\"duration\": 52.29, \"timestamps\": [[0, 9.15], [9.67, 44.71], [45.76, 52.29]], \"sentences\": [\"A man claps after performing a high jump on the field.\", \" We are shown the instant replay in slow motion a couple of times.\", \" He walks onto the field, shaking hands with his competitors.\"]}, \"v_jaaWdcA_COY\": {\"duration\": 169.02, \"timestamps\": [[0, 12.68], [12.68, 49.86], [49.02, 115.78], [115.78, 169.02]], \"sentences\": [\"There is a woman in a bikini walking past people with hula hoops.\", \" She goes to the grass and she begins hooping in circles, she is having a really good time dancing and hooping.\", \" Then, other people are dancing around and hooping also, doing tricks and just enjoying the day.\", \" Everyone is watching as the two girls hoop around outside of the store.\"]}, \"v_m0ZPQ8q4Qq4\": {\"duration\": 11.75, \"timestamps\": [[0, 2], [2.11, 9.17], [9.69, 11.75]], \"sentences\": [\"A little girl is outside on a snowy day.\", \" She is playing hopscotch which is drawn on the driveway.\", \" She hops along each square, then turns and goes back to the beginning.\"]}, \"v_ae-aDWHvAGc\": {\"duration\": 127.5, \"timestamps\": [[0, 31.24], [24.23, 72.04], [76.5, 127.5]], \"sentences\": [\"Two women are shown standing behind a shuffle board table when one pushes a puck across the board.\", \" The other woman prepares her push and send it to a man standing on the other side.\", \" They push the puck several more times while the camera follows their movements.\"]}, \"v_MbEoZXWVc-I\": {\"duration\": 114.71000000000001, \"timestamps\": [[0, 78.57], [79.72, 114.71]], \"sentences\": [\"A group of people are seen hanging out around an area with several standing around a beer pong match.\", \" The people play beer pong back and fourth and a woman takes a drink in the end that is gross.\"]}, \"v_ZuuY0xffLYE\": {\"duration\": 194.93, \"timestamps\": [[0, 5.85], [7.8, 184.21], [6.82, 9.75], [9.75, 17.54], [17.54, 42.89], [42.89, 58.48], [63.35, 110.14], [131.58, 143.28], [148.15, 156.92], [159.84, 179.34], [179.34, 185.19], [187.13, 194.93]], \"sentences\": [\"The image and label of the presenter or stylist is shown.\", \" The presenter styles a female client's hair.\", \" The presenter speaks directly into the camera.\", \" The client spins slowly on a chair to present her hair.\", \" The  stylist wets the client's hair.\", \" The stylist parts the clients hair.\", \" The stylist uses a brush and a blow dryer to add volume, texture and curl to the client's hair.\", \" The stylist sprays the clients hair.\", \" The stylist uses his hand to position the bangs.\", \" The stylist use his hand to add a gel product to the client hair.\", \" The client spins slowly on the chair  to show of her hair style.\", \" The stylist name and credits are shown.\"]}, \"v_iYH0Ol3xIZU\": {\"duration\": 141.25, \"timestamps\": [[0.71, 139.13], [0.71, 2.12], [2.82, 55.79], [55.79, 138.42]], \"sentences\": [\"A man in a white asian inspired outfit stands outdoors, surrounded by trees, on the grass, and performs several slow martial arts and meditation moves.\", \"  The scene begins with a bare green patch of cut grass surrounded by tall trees and a building in the background beyond the foliage.\", \"  The man runs into the frame into the center of the grass, centers himself and does a leg lift followed by several slow hand movements up and down and around.\", \"  The man continues to perform slow martial arts moves using feet, hands, knees, and shoulders moving around the grass patch and sometime stomping his feet on the ground.\"]}, \"v_kK9k01CtXnE\": {\"duration\": 80.41, \"timestamps\": [[0, 80.41], [8.44, 80.41], [55.48, 80.41]], \"sentences\": [\"This is a how to film on how to apply a seal to a roof.\", \"  Black things are put on the side of the roof.\", \"  The roof is sealed up.\"]}, \"v_MF3VcmCCgzY\": {\"duration\": 206.81, \"timestamps\": [[7.24, 206.81], [7.24, 22.75], [23.78, 52.74], [53.77, 206.81]], \"sentences\": [\"One woman and two men, wearing white pants, white shirt and black and white belts demonstrate martial arts moves, barefoot,  on a large patch of grass in front of a body of water and a city scape of buildings.\", \"  A woman with blonde hair in a ponytail and a black belt, demonstrates martial arts moves first exhibiting shoulder and arm moves and footwork.\", \"  A man in a white belt demonstrates martial arts moves using knee bends.\", \"  A third man in a black belt demonstrates martial arts moves exhibiting floor work, leg swipes and high kicks.\"]}, \"v_YcDlkZkPb6g\": {\"duration\": 208.14, \"timestamps\": [[0, 9.37], [9.37, 19.77], [19.77, 198.78], [198.78, 208.14]], \"sentences\": [\"A graphic shows on the screen for a website about basketball drills.\", \" Some young men on an indoor basketball court are shown doing some of the basketball drills.\", \" An older man begins explaining the drills while more footage is shown of the players demonstrating them.\", \" The screen goes black and more text reminds the viewer to visit the website for more information.\"]}, \"v_C26UfwZbHE0\": {\"duration\": 83.69, \"timestamps\": [[0, 34.73], [34.73, 63.6], [63.6, 73.64], [73.64, 83.69]], \"sentences\": [\"woman is talking to another standing in front of green lockers in a hallway, a man walks to the girls holding yellow roses on his hand.\", \" a woman walks in the hall holding a mouthwash and talking to the camera about it.\", \" woman is in front of a handwash cleaning his mouth with mouthwash.\", \" the woman is in the hall and talk to the boys and they seem impressed by her fresh breath.\"]}, \"v_OmlzSz6AKfI\": {\"duration\": 67.8, \"timestamps\": [[0, 4.07], [7.8, 16.61], [12.2, 67.8], [64.75, 67.8]], \"sentences\": [\"A child in a helmet is shown.\", \" Several other children in helmets on bikes ride off of a ramp.\", \" A man runs along side them.\", \" The cross a finish line.\"]}, \"v_PIr3WhkKB1o\": {\"duration\": 137.44, \"timestamps\": [[0, 4.81], [4.81, 27.49], [27.49, 57.04], [57.04, 75.59], [75.59, 118.2], [118.2, 137.44]], \"sentences\": [\"A special effect video clip appears with someone running on a treadmill and white words on the middle of the screen that read \\\"CityNews HEALTH\\\".\", \"A man and woman newscaster appear sitting on stools, both dressed in work attire and talking to the camera and to one another.\", \" The newscaster woman is now shown outdoors and talking to people on a beach, and clips of people sunbathing, applying suntan lotion, and different types of suntan lotions are show.\", \" The newscaster woman is now sitting on the beach, holding a bottle of suntan lotion and begins to apply lotion all over her arm.\", \" A new clip appears with the newscaster woman interviewing a Doctor, then a woman is shown sitting in a chair while the Doctor is standing up talking to her, and the banner below say's his name is \\\"DR PAUL COHEN DERMATOLOGIST\\\" and various clips of people playing in the sun play in between him talking.\", \"The newscaster woman is back indoors with the man she was shown with earlier and they end with a smile.\"]}, \"v_QtCNHRtycmg\": {\"duration\": 110.97, \"timestamps\": [[0, 38.84], [30.52, 83.23], [79.9, 108.75]], \"sentences\": [\"Several clips are shown of men speaking to one another as well as riding on a dirt bike.\", \" More clips are shown of people riding around and cheering with one another.\", \" The riders continue to go around the track as well as show off jumps in the end.\"]}, \"v_8Yfm6gbKRho\": {\"duration\": 92.11, \"timestamps\": [[0, 5.53], [7.37, 58.49], [46.52, 58.03], [64.48, 74.61], [75.07, 92.11]], \"sentences\": [\"A man runs onto the field of a sporting game.\", \" Cricket players are pitched balls during a game in a large stadium.\", \" The cricket player hits a high pop fly that is caught.\", \" The cricket players pose for photos.\", \" The players all line up for a race on the adjacent track.\"]}, \"v_DBGsPnuwdnU\": {\"duration\": 29.0, \"timestamps\": [[0, 29], [3.91, 8.84], [15.51, 15.95], [21.46, 21.6], [27.11, 29]], \"sentences\": [\"People are riding bumper cars on a brown floor.\", \" A boy's red bumper car gets stuck on the column.\", \" A lady in a black jilbab waves.\", \" The lady bumper car collides with a man's.\", \" A guy walks across the brown floor.\"]}, \"v_PDEUAMa8aOU\": {\"duration\": 125.41, \"timestamps\": [[0, 60.82], [45.78, 125.41]], \"sentences\": [\"A man is seen putting products into a woman's hair followed by blow drying her hair and brushing it down.\", \" The person then cuts the woman's hair several inches while moving slower in the end.\"]}, \"v_Z-6dR4H2dns\": {\"duration\": 159.68, \"timestamps\": [[0, 19.16], [22.36, 99.8], [113.38, 159.68]], \"sentences\": [\"a group of models are gathered at a car wash.\", \" Cars pull in, and the woman are using soap to soap down the cars.\", \" They then rinse and wipe the cars clean.\"]}, \"v_e8w3gmiv-mM\": {\"duration\": 148.55, \"timestamps\": [[0, 133.7], [4.46, 133.7], [133.7, 148.55]], \"sentences\": [\"A little boy is playing on the jungle gym while a man talks to him and records.\", \" He goes up the stairs and slides down the slide several times.\", \" When he is done he goes over and hugs a lady in a wheelchair.\"]}, \"v_2Mj26IwwEiY\": {\"duration\": 211.07, \"timestamps\": [[11.61, 16.89], [16.89, 26.38], [26.38, 37.99], [37.99, 45.38], [45.38, 55.93], [55.93, 63.32], [63.32, 83.37], [83.37, 109.76], [109.76, 132.97], [132.97, 155.14], [155.14, 169.91], [169.91, 186.8], [186.8, 194.18]], \"sentences\": [\"There's a home improvement specialist demonstrating how to remove wallpaper from walls.\", \" He starts of by preparing the space by moving furniture away from the walls and covering the furniture with plastic sheets for protection.\", \" He also removes the window treatments from windows.\", \" He shows how to take precautionary measures with respect to electrical wiring and switches and circuits.\", \" Then he shows how to use fans to ventilate the room.\", \" He takes a scour and begins to scour the wall paper.\", \" He uses a paint roller to soak the wall paper for easy removal.\", \" He then demonstrates how steam can be used too to loosen the wall paper.\", \" Then he begins to slowly peel off the paper from the wall.\", \" He re-wets the surface and uses a flat tool to remove any stubborn wall paper.\", \" He finally uses a sponge and soap water to clean the wall to remove any residual wall paper.\", \" He shows how to apply primer to prep the wall for painting.\", \" Information on how to use these techniques is provided on the Lowe's company website.\"]}, \"v_EFtxSXp1pck\": {\"duration\": 220.34, \"timestamps\": [[0, 55.08], [55.08, 220.34], [0, 220.34]], \"sentences\": [\"chef is sanding in front of a coutner with chopped ingredients in different plates and talking to the camera.\", \" man spray oil on the pan and add the mix of the eggs and the vegetables.\", \" man is standing in the kitchen talking to the camera giving a recipe.\"]}, \"v_tl2hDYGBfqU\": {\"duration\": 227.51, \"timestamps\": [[0, 6.83], [7.96, 152.43], [153.57, 227.51]], \"sentences\": [\"A \\\"Finale Coppa Italia\\\" beach soccer title screen appears featuring Sambenedettese and Catania.\", \" Men play professional soccer on a beach near the water.\", \"  Players on the field celebrate a victory and pose for a photo.\"]}, \"v_ZdwkA72VMKE\": {\"duration\": 16.12, \"timestamps\": [[0, 10.31], [1.21, 11.76], [14.1, 16.12]], \"sentences\": [\"Two men are shuffling brooms across a floor with another pulling it on a string.\", \" One man follows behind and the two shuffling eventually move the puck into a hole.\", \" The three men cheer with each other and give each other big hugs.\"]}, \"v_K1_g97xCqKg\": {\"duration\": 100.49000000000001, \"timestamps\": [[0, 11.56], [11.05, 33.16], [35.67, 57.78], [57.28, 75.36], [80.39, 100.49]], \"sentences\": [\"The video begins with a closeup of a tire in an auto shop.\", \"  The cameraman uses his hand to show a specific spot on the tire and zooms in closer.\", \" The man puts down the camera and begins working on the tire.\", \" He grabs the camera again to show different screws.\", \" The video ends showing both sides of the tire.\"]}, \"v_fT7dpRY0DTo\": {\"duration\": 138.48, \"timestamps\": [[5.54, 17.31], [18, 45.7], [45.01, 72.01], [72.7, 86.55], [86.55, 102.48], [102.48, 119.79], [120.48, 138.48]], \"sentences\": [\"The camera pans over the walls of a shower stall.\", \" A man plasters and installs tiles on the wall.\", \" The man talks to the camera.\", \" The man applies grout to the gaps between the tiles.\", \" The man measures and cuts a tile for installation in the shower.\", \" The man installs the soap dish.\", \" Scrolling text is shown on a blue screen.\"]}, \"v_wfUKi83iJCU\": {\"duration\": 116.31, \"timestamps\": [[0, 25.01], [25.59, 95.95], [96.54, 116.31]], \"sentences\": [\"Two men are showering in an outside shower.\", \" People are playing water polo in the water.\", \" They get out of the water and are walking next to the pool.\"]}, \"v_zrwpgILg7VI\": {\"duration\": 159.79, \"timestamps\": [[0, 29.56], [29.56, 155.01], [155.01, 159.8]], \"sentences\": [\"A large group of people are in a mall and are watching people set up an area with a large black floor and a large black wall.\", \" Suddenly there are lit up people wearing light suits that are dancing on the black area and they change from 1-7 people, and alternate suit colors from white, then to red and then back to white again.\", \"Their light suits go out and the dance is over.\"]}, \"v_1oaJBEdY6ao\": {\"duration\": 39.29, \"timestamps\": [[0, 8.84], [8.05, 28.29], [28.68, 39.29]], \"sentences\": [\"A man driving a moving tractor steps around and looks towards the front.\", \" He begins moving again on the machine cutting the grass and steering the instrument.\", \" A man on a bike looks onward and laughs and the man eventually steps off.\"]}, \"v_nLddpveoSHE\": {\"duration\": 72.89, \"timestamps\": [[0, 34.62], [37.54, 72.89]], \"sentences\": [\"A tattooo artist is shown, interspersed with the artists speaking to the camera, giving tattoos.\", \" They show various images of their finished work coupled with actiively injecting ink and making designs.\"]}, \"v_g3InHLh678M\": {\"duration\": 112.59, \"timestamps\": [[0, 11.82], [11.82, 15.76], [15.76, 23.08], [23.08, 27.02], [27.02, 43.35], [43.35, 56.86], [56.86, 69.25], [69.25, 90.07], [90.07, 103.02], [103.02, 112.59]], \"sentences\": [\"A boy is walking across the stage with helmet and sword.\", \" The boy meets another boy where baby faces are shown on their faces.\", \" A man showing I'm bald words is above his head.\", \" The boys separate as question marks appear over their heads.\", \" A description of the video is shown.\", \" The boy s continue to spar across the stage.\", \" Pretend quotes are shown over their head and they continue to spar.\", \" The boy on the left turns into flames and they set back up and continue to spar.\", \" The stage lights up green and they separate and come back to spar.\", \" The stage lights up blue as silly quotes appear over the boy on the rights head.\"]}, \"v__B3Q8bTJWG4\": {\"duration\": 56.68, \"timestamps\": [[0, 13.6], [13.6, 23.52], [22.67, 36.56], [44.21, 56.68]], \"sentences\": [\"A man rides a horse into an arena.\", \" He jumps off the horse and ties a calf.\", \" He stands up and gets back on his horse.\", \" Two people come and lay the calf down on the arena.\"]}, \"v_H5TETCI731k\": {\"duration\": 121.21, \"timestamps\": [[3.03, 18.79], [18.79, 57.57], [57.57, 119.39]], \"sentences\": [\"A man talks indoors, then a lady talks in a field while girls runs on her side.\", \" The lady talks with girls who plays a game hitting a ball with a stick.\", \" Girls take turns to talk, while other players practice shooting balls to the goal and display the city of Baltimore, the players of the Ravens and the roads of the city.\"]}, \"v_8Ztw2YrUHRE\": {\"duration\": 161.8, \"timestamps\": [[0, 9.71], [9.71, 28.31], [28.31, 58.25], [58.25, 107.6], [107.6, 161.8]], \"sentences\": [\"A group of individuals are performing at a Holiday Baton Recital.\", \"The girls continue dancing,moving up and down and twirling the baton.\", \"The lights begin to flicker and the girls form a straight line in the back of the stage.\", \"During the recital,the girls do the same routine but instead of a horizontal line form a vertical one.\", \"Once they are done,they move towards the back of the stage and dance off behind the curtains.\"]}, \"v_pwPid8YHHpU\": {\"duration\": 188.85, \"timestamps\": [[0, 7.55], [12.28, 188.85], [50.04, 64.21], [94.42, 115.2], [162.41, 169.02], [185.07, 188.85]], \"sentences\": [\"A man puts on a matador outfit in a room.\", \" A matador fights with a bowl using a red cape in a stadium.\", \" Boys practice using the red cape together in the arena.\", \" People get autographs from the matador and are seen on the street interviewing about the event.\", \" The bull runs and charges aft the matador from a distance.\", \" The matador cheers to the crowd with his back facing the bull.\"]}, \"v_fxyqt18d-jo\": {\"duration\": 105.02000000000001, \"timestamps\": [[0.53, 103.45], [8.4, 33.08], [43.06, 76.14], [87.7, 104.5]], \"sentences\": [\"A man, in black t-shirt, stands alone in a kitchen, talks to a camera in an animated way and prepares a peanut butter and jelly sandwich.\", \"  The man holds up a jar of peanut butter and a bottle of jelly after pulling out two pieces of bread while standing in front of a kitchen countertop.\", \"  The man puts jelly and peanut butter on the bread.\", \"  The man bites into the sandwich, begins talking again, slams the sandwich down on a plate and walks off.\"]}, \"v_RZ8r5B69CLY\": {\"duration\": 104.72, \"timestamps\": [[0, 28.27], [34.56, 57.6], [59.17, 104.72]], \"sentences\": [\"People are shown on a volleyball court as they warm up.\", \" The girls volley the ball back and forth over the net.\", \" They try to keep the ball from their opponents as the game truly begins.\"]}, \"v_c1Gby2EHBzs\": {\"duration\": 20.92, \"timestamps\": [[0.31, 10.25], [7.43, 20.4]], \"sentences\": [\"A man is seen holding a stick in his hands and speaking to the camera.\", \" The man attempts several times to hit the ball followed by him picking it up and hitting it off into the distance.\"]}, \"v_V9xuy-rVj9w\": {\"duration\": 193.68, \"timestamps\": [[0, 17.43], [18.4, 149.13], [150.1, 193.68]], \"sentences\": [\"A group of men and boys are on a snow capped hill.\", \" They lob snowballs and ride the cars, then they ski down the hill.\", \" They are shown skiing and performing many tricks, spinning and flipping as they go.\"]}, \"v_Z9o_h64qVeo\": {\"duration\": 165.49, \"timestamps\": [[0, 165.49], [53.78, 58.75], [145.63, 163.83], [163.01, 165.49]], \"sentences\": [\"We see a boy playing an accordion.\", \" The boy slides his hand across the keys.\", \" A piece of paper enters the scene on the lower right.\", \" The boy finishes and the screen goes black.\"]}, \"v_Y_slRMRs18I\": {\"duration\": 39.06, \"timestamps\": [[0, 8.98], [9.37, 18.94], [19.33, 31.05], [34.17, 35.35]], \"sentences\": [\"The credits of the clips are shown.\", \" The hand drills a hole with an electric tool.\", \" The hand screws two nail into holes with an electric tool.\", \" The person leaves with the electric tool.\"]}, \"v_U0jlI70N_DQ\": {\"duration\": 103.78999999999999, \"timestamps\": [[0, 103.79], [3.11, 20.76], [20.76, 103.79]], \"sentences\": [\"Several kids are in a pool playing a game of water polo.\", \" One of the girls gets the ball and makes a shot into the net as the crowd cheers.\", \" The game resets and the teams begin to play again.\"]}, \"v_yqBRp0txs-c\": {\"duration\": 59.82, \"timestamps\": [[0, 17.94], [17.65, 59.82]], \"sentences\": [\"Two men are shown speaking at a party playing pong with two other men.\", \" The men keep getting the balls into the cups back and fourth and one jumps on the back of the other.\"]}, \"v_crz2vi_dguk\": {\"duration\": 172.48, \"timestamps\": [[0, 102.62], [15.52, 27.6], [31.91, 50.02], [44.84, 172.48]], \"sentences\": [\"A sink is covered in filth.\", \" A bottle is held up to the camera.\", \" The water runs over a sponge.\", \" The solution is poured on the sponge and the sink is cleaned.\"]}, \"v_LLLuBjEVHI8\": {\"duration\": 45.07, \"timestamps\": [[4.28, 18.03], [18.03, 32.9], [32.9, 41.46], [41.46, 45.07]], \"sentences\": [\"A teenage boy wearing a white shirt and black track pants is shooting hoops in an outdoor basketball court.\", \" There are a few cones arranged around the court.\", \" The boy continues running, dribbling and shooting hoops with the basketball.\", \" He hits a shot and makes a basket and then stops playing.\"]}, \"v_f9eW4rFQG-A\": {\"duration\": 195.35, \"timestamps\": [[0, 1.95], [1.95, 44.93], [42.98, 89.86], [89.86, 119.16], [119.16, 158.23], [157.26, 195.35]], \"sentences\": [\"A map is shown and then two large fish are shown in the water as a bird floats across the water.\", \"Two men are on a boat and they are sailing across the water over fish.\", \"An underwater view is then shown and you can see the bottom of the ducks body.\", \"Several men and boats are then shown and one mail catches a fish.\", \"After, a man dressed in all black is underwater and a water helicopter is shown then the man goes back under water holding the camera and playing with large fish.\", \"More are shown and males continue to jump off the boat, and show their findings underwater and dumping water on themselves and another map is shown.\"]}, \"v_lvd2InghJOo\": {\"duration\": 131.61, \"timestamps\": [[0, 16.45], [16.45, 19.08], [19.08, 26.98], [26.98, 28.3], [28.3, 70.41], [70.41, 76.33], [76.33, 101.34], [101.34, 107.92], [107.92, 131.61]], \"sentences\": [\"Two people are playing racquetball .\", \" The ball comes around behind the players.\", \" They resume playing and jumping.\", \" The ball again gets by the players.\", \" The man in yellow restarts a new match.\", \" The man in blue walks to the window and messes with a sticker.\", \" The man in yellow tries to restart a new match.\", \" The man in blue hits the ball in the corner and it rolls back.\", \" They start another round of racquetball.\"]}, \"v_rLCRgksVNE8\": {\"duration\": 113.55, \"timestamps\": [[0, 113.55], [0, 6.25], [39.17, 44.85], [44.28, 113.55]], \"sentences\": [\"A girl is getting her nose pierced.\", \"  The nose is cleaned before the piercing.\", \" She talks to the camera.\", \"  The man pierces her nose.\"]}, \"v_Ha5KU-pp4gk\": {\"duration\": 80.46000000000001, \"timestamps\": [[0, 3.22], [3.22, 32.18], [32.18, 80.46]], \"sentences\": [\"A scenery of a residence is shown.\", \" A man appears from behind a hedge and he's holding a lime green hedge cutter and he begins to go around his hedges and starts cutting away at them first at the top, then he concentrates on the sides and towards the bottom.\", \"The man then moves his hedge cutter and concentrates on the top of the hedges.\"]}, \"v_i7rJN34TruM\": {\"duration\": 45.98, \"timestamps\": [[0.69, 22.76], [18.85, 44.37]], \"sentences\": [\"Four people are seen hitting a ball around a gymnasium back and fourth off the wall with a tennis racket.\", \" The men continue playing with one another and end by shaking hands with each other.\"]}, \"v_ODW0I_ITug0\": {\"duration\": 191.73, \"timestamps\": [[0, 52.73], [62.31, 148.59], [138.04, 188.85]], \"sentences\": [\"A man is seen standing in front of the camera holding onto a set of bagpipes.\", \" The man then begins playing the instrument in front of the camera.\", \" The man continues to play while taking breaks here and there and showing text in the end.\"]}, \"v_L2jO-evVIRE\": {\"duration\": 62.22, \"timestamps\": [[0, 28.31], [21.78, 60.36]], \"sentences\": [\"A woman is seen raking leaves around a lawn while three dogs stand near her and hold toys.\", \" The woman continues raking as the dog roam around her with toys and she gradually picks them up and throws them for the dogs.\"]}, \"v_HafSt7EDin0\": {\"duration\": 178.75, \"timestamps\": [[0, 2.68], [2.68, 22.34], [22.34, 178.75]], \"sentences\": [\"A basketball is focused on as it sits on a grass.\", \" Then it zooms out and a small girl is standing at the beginning of a hopscotch written in chalk, and a man is standing at the end and he throws a piece of chalk her way, it breaks, he hops to pick it up, she picks up the other piece and returns it to the chalk container off to the side.\", \" The girl returns to the beginning of the hopscotch and takes her turn, and they go back and forth and play taking turns jumping up and down the hopscotch.\"]}, \"v_b_iUgvzb1-0\": {\"duration\": 44.1, \"timestamps\": [[0, 27.56], [27.56, 44.1]], \"sentences\": [\"A woman bends forward extending her left left arm on front and raising her leg up while having the right hand over her shoulder.\", \" Then, the woman turns to the left and throw a ball and spin her body.\"]}, \"v_4kNx9rVwmAg\": {\"duration\": 191.91, \"timestamps\": [[0, 28.79], [29.75, 81.56], [82.52, 171.76], [175.6, 191.91]], \"sentences\": [\"A woman leads a class of boys and girl in exercise.\", \" They use steppers to jump up and down, and side to side.\", \" Then they run in place, hopping on and off the steppers.\", \" They slow down, cooling off before clapping.\"]}, \"v_qHu0fz_anTQ\": {\"duration\": 123.62, \"timestamps\": [[0, 26.58], [30.29, 113.73], [114.97, 123.62]], \"sentences\": [\"A woman is standing at a table with a pile of scissors and supplies.\", \" She demonstrates how to cut cellophane and wrap it around a gift.\", \" She ties a string around the gift, showing off the final product.\"]}, \"v_CikGafc6H_8\": {\"duration\": 190.66, \"timestamps\": [[0, 43.85], [49.57, 163.01], [167.78, 190.66]], \"sentences\": [\"A group of boys are lined up, playing the drums.\", \" A couple of teams are inside the pool.\", \" They are playing a game of water polo.\"]}, \"v_asM7fbK_F-U\": {\"duration\": 126.6, \"timestamps\": [[0, 47.47], [27.85, 91.78], [86.72, 126.6]], \"sentences\": [\"A woman is seen speaking to someone off camera and leads into herself playing the drums.\", \" Another man steps into frame and begins playing the drums with a woman.\", \" A small child appears in front a bit grabbing onto the woman while she and the man still play drums.\"]}, \"v_wOZdXVdiB04\": {\"duration\": 134.49, \"timestamps\": [[0, 109.61], [34.29, 134.49]], \"sentences\": [\"A large group of people are seen playing dodgeball against one another and throwing the ball back and fourth.\", \" Many people watch the game on the sidelines as people continue to play while some fall and walk in and out of frame.\"]}, \"v_9LhMNDcFW_k\": {\"duration\": 85.64, \"timestamps\": [[0, 5.14], [5.14, 83.07], [83.07, 85.64]], \"sentences\": [\"An Asian woman is standing while holding a card that has gold BYN letters on the back of it.\", \"  A clip begins to play and it shows various men in a large field playing croquet while spectators look on.\", \" A young man is then presented with a large silver cup that is handed to him by an older man.\"]}, \"v_goH-zdx5urM\": {\"duration\": 22.76, \"timestamps\": [[0.46, 18.89], [6.14, 7.74], [19.23, 22.76]], \"sentences\": [\"A woman lies on her back doing abs.\", \" The woman raises her kneed to the chest and pull the head with her hands.\", \" Then, the woman stops and a dog approach to her.\"]}, \"v__LAABOgXU1s\": {\"duration\": 129.68, \"timestamps\": [[0, 69.38], [70.03, 129.68]], \"sentences\": [\"A man is taking a tire off a hub with a tool.\", \" He then puts the tire on top of the tool to finish taking it off.\"]}, \"v_BiIIco4EC2U\": {\"duration\": 180.07, \"timestamps\": [[0, 90.04], [90.94, 114.35], [118.85, 180.07]], \"sentences\": [\"A blindfolded man is seen sitting at a table with a timer coming on next to him attempting to solve a rubix cube.\", \" The man finishes the cube and timer stops while a person standing next to him records his time.\", \" Another man is seen walking around in the background while the camera pans around to more people solving cubes.\"]}, \"v_uGVkH6PjXLs\": {\"duration\": 32.3, \"timestamps\": [[0, 17.12], [17.93, 32.3]], \"sentences\": [\"A young lady is standing in a field of dirt with an ax in her hand attempting to cut down a log.\", \"The girl is not successful in her first attempt so she picks the log back up and tries again.\"]}, \"v_9hYyE1gofFQ\": {\"duration\": 167.65, \"timestamps\": [[0, 42.75], [42.75, 161.78], [161.78, 167.65]], \"sentences\": [\"A girl is shown on the gymnastics floor preparing to do a baton routine.\", \" The routine begins as she starts to dance around the floor and twirl her batons.\", \" The routine ends an she runs off the stage as the crowd cheers.\"]}, \"v_IucYlH_gAic\": {\"duration\": 64.06, \"timestamps\": [[1.92, 26.27], [16.02, 43.56], [35.24, 61.82]], \"sentences\": [\"A person is seen moving themselves along the water while also being shown in slow motion.\", \" The person pushes themselves under the water and continues moving underneath.\", \" The camera captures the man from several angles.\"]}, \"v_b7_ok8iTlT8\": {\"duration\": 167.18, \"timestamps\": [[0, 5.85], [8.36, 29.26], [30.09, 53.5], [30.09, 65.2], [65.2, 106.16], [109.51, 114.52], [114.52, 117.03], [117.86, 123.72], [125.39, 130.4], [133.75, 142.94], [143.78, 149.63], [152.97, 167.18]], \"sentences\": [\"There are distant view shots of areas around Los Angeles, Hollywood, and surrounding areas.\", \" A man then talks behind a table full of ingredients and cooking utensils.\", \" The man then shows off some of his vegetables and ingredients and smells them.\", \" He starts cooking by squeezing a lemon into a bowl of soaked vegetables.\", \" Then, he puts onions, lemon juice, pepper, oil, which he smells, and some other vegetables on a plate.\", \" He then shreds cheese onto a place with a shredder.\", \" He puts the shredded cheese onto the original plate.\", \" After, he picks some herbs and places them on a plate.\", \" He then adds salt and more pepper to the original plate.\", \" He then talks about a bottle of oil and adds some to the original plate.\", \" He also adds a different type of oil to the plate.\", \" There are then different clips and angles of the finished food plate.\"]}, \"v_bJ1vEQKX-hE\": {\"duration\": 215.32, \"timestamps\": [[0, 17.23], [22.61, 29.07], [30.14, 47.37], [87.2, 123.81], [161.49, 174.41], [177.64, 207.78]], \"sentences\": [\"A man completes a large set of push-ups and then introduces the concepts of dodgeball.\", \" A graphic is shown of the court.\", \" The two teams line up to play against one another.\", \" The concepts of ruling people out and blocking the ball are introduced.\", \" The teams congratulate each other, showing sportsmanship.\", \" More rules are shown on the screen, highlighting player safety.\"]}, \"v_pxfc6AIPrig\": {\"duration\": 94.44, \"timestamps\": [[0, 53.36], [48.16, 94.44]], \"sentences\": [\"A person is seen in several different shots performing tricks along the water while others ride around him.\", \" The man continues to perform tricks along the water and ends with the video fading to black.\"]}, \"v_twQbAuWVxlU\": {\"duration\": 19.67, \"timestamps\": [[0, 19.67], [0.49, 19.67], [1.67, 19.67], [2.26, 19.67]], \"sentences\": [\"A green figures walks down the street.\", \" An endless stream of other green figures appear.\", \" Each of the figures is walking a dog.\", \" The clip seems to be a loop.\"]}, \"v_icGrJ2XBxa0\": {\"duration\": 59.54, \"timestamps\": [[0, 41.68], [21.43, 41.68], [43.16, 59.54]], \"sentences\": [\"People are sitting in kayaks on a river.\", \" They are rowing their oars.\", \" People are standing on the beach with medals around their necks.\"]}, \"v_Nq6cd5Xue9Q\": {\"duration\": 121.05, \"timestamps\": [[0, 13.32], [12.71, 13.92], [13.92, 121.05], [95.63, 101.07]], \"sentences\": [\"We see a man running on a track.\", \" The man uses a long stick to perform a long jump.\", \" We then see the man attempt and fail the long jump repeatedly.\", \" We see the man's shirt get stuck on the pole.\"]}, \"v_NfTfLk1D-tI\": {\"duration\": 228.86, \"timestamps\": [[0, 59.5], [57.21, 163.63], [114.43, 217.41]], \"sentences\": [\"A close up of drums are seen followed by a person walking into frame.\", \" The person sits down in front of the drums and begins playing them continuously.\", \" The man continues playing the drums faster and faster while the camera captures his movements.\"]}, \"v_NjFxN3xQqeY\": {\"duration\": 72.53999999999999, \"timestamps\": [[0, 27.93], [26.84, 69.64]], \"sentences\": [\"A man is seen pushing a lawn mower along a yard and moving the machine all around the yard.\", \" Another man is seen grabbing a machine out of a truck as the other man continues to mow the lawn.\"]}, \"v_8VYre-lXqIo\": {\"duration\": 177.38, \"timestamps\": [[0, 33.7], [36.36, 103.77], [105.54, 177.38]], \"sentences\": [\"A pregnant woman is slowly moving in a room.\", \" She moves side to side as she goes.\", \" She lifts her feet and arms, doing several martial arts moves.\"]}, \"v_jQ2UoAENwlw\": {\"duration\": 64.44, \"timestamps\": [[0, 32.86], [25.13, 64.44]], \"sentences\": [\"A man is seen sitting on a chair look nervously at the camera while another man sits behind him.\", \" The man then begins tattooins the man's chest and the man looks up into the camera every now and then.\"]}, \"v_W74AfHdwWhM\": {\"duration\": 107.75999999999999, \"timestamps\": [[16.7, 45.8], [80.28, 94.83]], \"sentences\": [\"There is a woman shown throwing knives into wood and taking them out.\", \" In the end the other people who are there all sit down and eat popsicles.\"]}, \"v_bkRQgwbP0WM\": {\"duration\": 34.62, \"timestamps\": [[0, 29.6], [1.73, 31.68], [0.69, 31.68], [29.25, 33.58]], \"sentences\": [\"A man is showing a boy trying to solve a rubix cube.\", \" A timer is going to time the boy and other people around him are trying as well.\", \" On lookers are going from table to table to watch.\", \" A boy grabs a pen and the man solves the puzzle.\"]}, \"v_gOe72cTd0IA\": {\"duration\": 187.15, \"timestamps\": [[0, 0.94], [0.94, 14.97], [17.78, 165.63], [72.05, 97.32], [102, 116.03], [133.81, 141.3], [165.63, 181.54], [184.35, 187.15]], \"sentences\": [\"We see a black opening title screen.\", \" We see a boat floating in the ocean and people sitting on the boat.\", \" Three people are underwater in diving gear looking at the sealife.\", \" We see a man and a woman swimming together and the lady waves at the camera.\", \" The lady makes an explosion sign with her hands and waves.\", \" The lady takes her mouth piece out and shrugs her shoulders.\", \" We see the people back on the boat and the man and the girl hug each other.\", \" We see a balloon high in the sky.\"]}, \"v_H3pQJc8d8H8\": {\"duration\": 160.06, \"timestamps\": [[20.81, 160.06], [65.62, 68.82], [99.23, 136.85]], \"sentences\": [\"Three men in white are doing karate moves in a room.\", \"They do a few kicks in the air.\", \" Two of the men start fighting each other.\"]}, \"v_leJM3mgm_gU\": {\"duration\": 3.6, \"timestamps\": [[0, 0.07], [1.21, 2.09], [2.23, 3.6]], \"sentences\": [\"A large, blue ball is tossed in the air.\", \" A child runs to catch a blue, large ball.\", \" The child falls on the lawn.\"]}, \"v_UsexiHSzIQI\": {\"duration\": 91.35, \"timestamps\": [[0, 10.51], [10.51, 85.41], [32.89, 66.68], [85.41, 91.35]], \"sentences\": [\"A woman comes onto the screen to introduce a video about working out.\", \" The same woman is shown as she teaches a spin class with several participants.\", \" She takes a break from the bike and does tome abdominal exercises on the floor.\", \" The video ends with the closing credit shown at the end.\"]}, \"v_0w2XFd-Q9Eg\": {\"duration\": 18.58, \"timestamps\": [[0, 4.18], [4.27, 17], [17.28, 18.48]], \"sentences\": [\"A person sits on front a laptop and a cube puzzle.\", \" Then, the person solves a cube puzzle.\", \" After, the person solves the cube puzzle puts it on the laptop.\"]}, \"v_FNB1BMEtIvw\": {\"duration\": 183.95, \"timestamps\": [[0, 9.2], [9.2, 20.23], [21.15, 171.07], [41.39, 45.07], [50.59, 63.46], [137.96, 142.56], [154.52, 183.95]], \"sentences\": [\"We see the opening screen and we see landscapes and a sword.\", \" We see a lady talking, then a man.\", \" We see lots of people snowboarding.\", \" Two people shake hands on the landing.\", \" A man in a black room is interviewed then we see a man outside talking.\", \" People high five and we see a lady talking.\", \" A lady throws her arms in the air, people being sprayed, and a man with a sword.\"]}, \"v_AWryNQMbcd8\": {\"duration\": 3.25, \"timestamps\": [[0.02, 2.49], [0.78, 2.49], [1.53, 3.17]], \"sentences\": [\"Two small children are seen outside by a swingset.\", \" One swings back and fourth while the other stands on the side.\", \" One man kicks the other boy and he bends over.\"]}, \"v_ZW46Rcuhqac\": {\"duration\": 33.58, \"timestamps\": [[0, 5.37], [6.38, 20.48], [20.48, 33.58]], \"sentences\": [\"Beer and other alcohol is shown on a counter in a kitchen.\", \" A man takes a pitcher of beer and begins talking to the camera.\", \" The man proceeds to drink the entire pitcher of beer.\"]}, \"v_oNc2lJ9hV9E\": {\"duration\": 190.8, \"timestamps\": [[0, 19.08], [0.95, 175.54], [25.76, 63.92], [63.92, 112.57], [111.62, 166.95], [170.77, 190.8]], \"sentences\": [\"A lady speaks in a kitchen with a medal on the screen and we see shots of cake and cooking.\", \" We see the lady make  a cake and give instructions.\", \" The lady takes and prepares her cake pans.\", \" The lady mixes her dry ingredients then mixes them in the mixer with red food coloring and pours them into cake pans cooks and cools them on racks.\", \" The lady makes frosting in the mixer and puts frosting in between the layers of cake and on top.\", \" The lady cuts the cake and we see the ending title screen.\"]}, \"v_fghAmraOM9A\": {\"duration\": 131.5, \"timestamps\": [[0, 5.92], [6.57, 24.33], [24.98, 131.5]], \"sentences\": [\"A woman wearing a protective helmet speaks to the camera while standing outdoors next to a palm tree.\", \" The woman is standing on a sidewalk wearing rollerblades and protective gear.\", \" The woman speaks to the camera and demonstrates different techniques of skating down the sidewalk.\"]}, \"v_g5rkuDdjRVI\": {\"duration\": 157.76, \"timestamps\": [[0, 19.72], [17.35, 19.72], [18.14, 20.51], [20.51, 157.76], [45.75, 50.48], [138.04, 142.77], [150.66, 154.6], [155.39, 157.76]], \"sentences\": [\"We see two boys on a train talking.\", \" It gets dark in a tunnel.\", \" Someone throws something at a boy.\", \" We see the boys riding skateboards down a residential street.\", \" A man rides downhill backwards.\", \" We see a boy fall off his skateboard.\", \" We see a number three on a wall.\", \" We see a person jump off their skateboard.\"]}, \"v_7iTrw4kr8e0\": {\"duration\": 81.74, \"timestamps\": [[0, 40.05], [42.91, 60.08], [59.67, 79.69]], \"sentences\": [\"An intro leads into a woman looking into the mirror and putting makeup on.\", \" She puts glasses and looks down at the mirror.\", \" She turns herself away and ends with a logo shown.\"]}, \"v_5SyvdU5LWPk\": {\"duration\": 73.86, \"timestamps\": [[0, 9.97], [11.45, 57.24], [61.31, 73.86]], \"sentences\": [\"A group of lacrosse players are shown on a field.\", \" They run around, trying to get the ball away from each other.\", \" They are shown playing in slow motion.\"]}, \"v_9qJbSz-eCq0\": {\"duration\": 87.45, \"timestamps\": [[0, 5.25], [9.18, 58.15], [58.15, 79.14], [80.45, 87.45]], \"sentences\": [\"A man wearing a plastic head covering is shown eating ice cream.\", \" We see the inside of a plant, where cookies are crushed and put into containers of vanilla ice cream, then sorted.\", \" Ice cream fills the pints, and is mixed in a giant vault before other ingredients are added and the pints filled.\", \" We then see popsicles being created, before a man and woman are shown eating the treats.\"]}, \"v_goLVOzKw4U8\": {\"duration\": 131.38, \"timestamps\": [[0, 28.25], [28.9, 82.77], [83.43, 131.38]], \"sentences\": [\"A man wearing gloves holds a pair of pliers and putting an object in between.\", \" He sparks the object to create a flame and puts his mask on to protect himself.\", \" He continues flaming the object and shows off what he has burned.\"]}, \"v__pYDg0B6_tw\": {\"duration\": 19.85, \"timestamps\": [[3.97, 6.55], [6.55, 19.75]], \"sentences\": [\"A boy jumps on a diving board high.\", \" Then, the boy jumps and flips three time, but falls on his back making a big splash.\"]}, \"v_MD6p1s-N9rM\": {\"duration\": 69.99, \"timestamps\": [[0, 16.1], [16.45, 65.09], [65.09, 69.99]], \"sentences\": [\"A young man irons a shirt on an ironing board in a hallway.\", \"  The man adjusts the camera and returns to ironing.\", \" The man finishes ironing and turns the camera away.\"]}, \"v_cWrOETjOOTc\": {\"duration\": 4.55, \"timestamps\": [[0, 4.55], [0.11, 4.55], [0.48, 4.55]], \"sentences\": [\"A man in a red shirt is kneeling down.\", \" Another man in a black shirt is standing up in front of him.\", \" They are fixing something on a bike.\"]}, \"v_CpxGRgJgRPA\": {\"duration\": 185.76, \"timestamps\": [[0, 39.94], [39.94, 117.96], [117.03, 185.76]], \"sentences\": [\"A woman explains how to wrap a box with gift paper.\", \" Then, the woman cuts the paper and wraps around the box using tape.\", \" After, the woman folds the sides of the paper and cutting a piece to fit the box, then put tape to joint the ends while explaining.\"]}, \"v_U-VzZQGWOqA\": {\"duration\": 59.85, \"timestamps\": [[1.2, 32.92], [25.44, 57.76]], \"sentences\": [\"A young girl is seen licking an ice cream cone while the camera watching her eat.\", \" She continues eating the ice cream cone and looking off into the distance.\"]}, \"v_Ck0IhZZI5CA\": {\"duration\": 80.67, \"timestamps\": [[0, 3.23], [4.03, 56.47], [56.47, 61.31], [62.52, 80.67]], \"sentences\": [\"A man in jeans and tshirt rolls a paint roller in the tray.\", \" The man applies more paint to the fence with a roller and getting more paint until he lifts the roller and is pleased.\", \" The man gets more paint on his brush from the tray.\", \" The man finishes painting the section of fence and then sets down his roller.\"]}, \"v_B2_qciB7U1Q\": {\"duration\": 184.36, \"timestamps\": [[0, 176.98], [131.82, 145.64], [178.83, 184.36]], \"sentences\": [\"Several people are longboarding and biking down a hill.\", \"  A person has a white glove and is holding onto the person in front of them.\", \" Words go on the screen at the end.\"]}, \"v_Ga-6wy0Nboo\": {\"duration\": 194.58, \"timestamps\": [[0, 17.51], [17.51, 19.46], [19.46, 194.58]], \"sentences\": [\"man is snowboarding going down a hill sliding in zigzags passing small flags.\", \" man is talking to the camera in a dark room.\", \" man is snowboarding on the snowy slope and a video is showing the right position of the body when going side to side.\"]}, \"v_peaOnHl5YS8\": {\"duration\": 46.3, \"timestamps\": [[0.69, 11.58], [9.72, 31.95], [30.79, 45.14]], \"sentences\": [\"A man and daughter are seen sliding into frame wearing only socks and a long shirt.\", \" The two are seen holding mops and begin singing with one another.\", \" The two continue to dance around and sing with each other.\"]}, \"v_kvqX0QOgYDc\": {\"duration\": 99.28, \"timestamps\": [[0, 97.29], [32.76, 54.11], [61.55, 93.82]], \"sentences\": [\"Scuba diver swim and glide underwater in the ocean near a rock face.\", \" The scuba divers make hand gestures and joke.\", \" The men swim up close into view.\"]}, \"v_SnFWB9NLFjY\": {\"duration\": 216.78, \"timestamps\": [[3.25, 105.14], [57.45, 211.36]], \"sentences\": [\"A close up of skis are shown followed by a person pushing themselves along using sticks and skiing down the mountain.\", \" The person continuously riding down on the mountain using the skis and zooming past people and stopping at the bottom.\"]}, \"v_5pzCqex6S48\": {\"duration\": 61.84, \"timestamps\": [[0.93, 19.79], [18.55, 44.83], [38.03, 58.74]], \"sentences\": [\"A man is seen standing ready and putting his arms up by his sides.\", \" The man then jumps onto a set of uneven bars and begins performing a gymnastics routine.\", \" The man spins himself all around and ends by jumping off the side with his arms up.\"]}, \"v_sfPGQnxbJ3U\": {\"duration\": 30.05, \"timestamps\": [[0, 30.05], [3, 30.05], [0, 29.9]], \"sentences\": [\"men are in front of a mirror in a room.\", \" man is alone practicing kicks and punches.\", \" man wearing white shirt is stretching her legs bind the other man.\"]}, \"v_hYBctolxeqQ\": {\"duration\": 130.64, \"timestamps\": [[0, 7.18], [15.02, 60.75], [64.66, 130.64]], \"sentences\": [\"a boy sits in his room behind a large drum set.\", \" He plays the drums and cymbals gently.\", \" He speeds up his tempo and strength as he builds confidence.\"]}, \"v_Zf3RcqHO82M\": {\"duration\": 211.57999999999998, \"timestamps\": [[0, 31.74], [41.26, 171.38], [173.5, 211.58]], \"sentences\": [\"A man and woman are sitting on a stage together.\", \" They are talking about the tango dance.\", \" They spin and twirl before an audience.\"]}, \"v_XPwpA67qHjA\": {\"duration\": 220.1, \"timestamps\": [[0, 19.81], [24.21, 173.88], [167.28, 220.1]], \"sentences\": [\"A news story is given about walking a slackline.\", \"  People of all levels walk, lie, and meditate on the rope.\", \"  Some people walk over oncoming canoers.\"]}, \"v_rdszlTqxBXs\": {\"duration\": 15.93, \"timestamps\": [[0, 10.43], [10.43, 15.93]], \"sentences\": [\"A woman put lipstick on her lips on front a mirror.\", \" Then She laugh with other teens next to her.\"]}, \"v_QU5R75IyQow\": {\"duration\": 143.51, \"timestamps\": [[0, 7.89], [9.33, 80.37], [94, 143.51]], \"sentences\": [\" A man is talking to a camera in his bathroom.\", \" He is then shown brushing, spraying, and styling a woman's hair before braiding it.\", \" she poses for the camera when he is finished.\"]}, \"v_Mkljhl3D9-Q\": {\"duration\": 148.1, \"timestamps\": [[2.96, 80.71], [2.96, 18.51], [19.25, 25.18], [28.14, 33.32], [34.8, 45.17], [45.17, 49.61], [49.61, 62.2], [64.42, 70.35], [72.57, 79.23], [80.71, 88.86], [88.12, 93.3], [99.97, 101.45], [101.45, 147.36], [105.15, 146.62], [112.55, 142.91], [144.39, 148.1]], \"sentences\": [\"The man instructs four women on cooking.\", \" The man adds oil, onions, garlic, and peppers to a pot.\", \" The man adds clams to the pot.\", \" The man adds broth to the pot.\", \" The man boils pasta in a separate pot.\", \" The women gather around a pot to see the pasta.\", \" The man finishes the sauce and pours it in a pot.\", \" The man adds the pasta.\", \" The man adds the pasta to the plate.\", \" The women try the pasta dish.\", \" Everyone laughs and seems happy.\", \" The man starts calling out tickets.\", \" The women cook the dish that the man had just taught them to make.\", \" The man helps them and gives them pointers.\", \" The women look anxious as they try to cook.\", \" The waiters start serving the plates.\"]}, \"v_aYC7F72n924\": {\"duration\": 84.03, \"timestamps\": [[0, 7.14], [8.82, 63.45], [67.23, 84.03]], \"sentences\": [\"A construction worker is standing in a building, holding a mop and bucket.\", \" He shows off the bucket and solution, then mops the floor in a demonstration.\", \" He gets the floor completely clean and shiny before standing to one side.\"]}, \"v_wM7FmqEj4PY\": {\"duration\": 20.06, \"timestamps\": [[0, 18.86], [0, 20.06], [0.8, 20.06]], \"sentences\": [\"woman is standing in a living room holding an iron.\", \" woman wearing a pink shirt is ironing a blue shirt.\", \" quiet living room is with old furnitures.\"]}, \"v_f0cxC1B5cbw\": {\"duration\": 228.74, \"timestamps\": [[0, 54.9], [54.9, 171.56], [170.41, 228.74]], \"sentences\": [\"A woman is raking leaves into a large pile.\", \" A man is running a lawn mower over leaves.\", \" He puts some of the leaves into a garden bed.\"]}, \"v_TSIz-6s4OeY\": {\"duration\": 60.74, \"timestamps\": [[0, 27.03], [27.03, 60.74]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her ironing a pair of pants.\", \" The woman continues ironing the pants while moving the iron up and down.\"]}, \"v_daDd48y4x0g\": {\"duration\": 19.39, \"timestamps\": [[0, 0.78], [0.68, 3.3], [3.97, 8.14], [9.4, 19.39]], \"sentences\": [\"We see lots of plate of fancy food.\", \" We then zoom in on the plates.\", \" We see a shadow on the plates.\", \" A man on the right picks up a few plates.\"]}, \"v_t6trrsdhMEc\": {\"duration\": 26.12, \"timestamps\": [[0, 3.79], [3.79, 8.75], [8.75, 22.86], [22.86, 26.12]], \"sentences\": [\"A woman wearing workout gear is standing upright and hanging onto a very long punching bag.\", \" Suddenly the woman jumps up and straddles the bag.\", \" Slowly, the woman drops her upper half of her body while still straddling the bag, and does 5 sit ups while the bag swings with her.\", \" The woman holds onto the bag, smiles, then jumps off.\"]}, \"v_4UIAc9irBLs\": {\"duration\": 63.35, \"timestamps\": [[0, 59.23], [0, 4.75], [4.75, 44.97], [45.61, 54.16], [54.48, 58.91]], \"sentences\": [\"A woman and a young girl swim in a pool.\", \"  The young girl holds on to the woman as she swims.\", \" The young girl lets go and swims near the woman.\", \" The young girl and the woman hold hands and swim to the surface of the pool.\", \" The woman holds on to the girl.\"]}, \"v_dRiIYsAmNAc\": {\"duration\": 64.76, \"timestamps\": [[0.97, 32.38], [31.41, 63.14]], \"sentences\": [\"A large group of people are seen running around a sandy pit kicking a soccer ball around.\", \" The people continue playing soccer with one another and wait for a call in the end.\"]}, \"v_ZIHD-3iWCrE\": {\"duration\": 57.91, \"timestamps\": [[0, 57.91], [2.32, 57.91]], \"sentences\": [\"A woman is holding a kitten in her lap.\", \" A guy is clipping the nails on the cat.\"]}, \"v_-QuFk_ThRNg\": {\"duration\": 135.37, \"timestamps\": [[0, 10.83], [17.6, 119.13], [122.51, 135.37]], \"sentences\": [\"Two bodybuilder women are seated at a table.\", \" They are arm wrestling, vieing to win.\", \" When there is a victor, the two women shake hands.\"]}, \"v_S3OJBVHL9y8\": {\"duration\": 176.22, \"timestamps\": [[0, 0.88], [0, 139.21], [140.97, 143.62], [151.55, 175.34], [175.34, 176.22]], \"sentences\": [\"The green and white team gets off the floor.\", \" The green and white team are pulling the rope in a tug of war contest.\", \" The red and black team are pulling the rope in a tug of war contest.\", \" The green and white team are repeatedly taking steps and the audience is cheering.\", \" The green and white team are standing holding the rope.\"]}, \"v_7hEUl8lziZs\": {\"duration\": 23.06, \"timestamps\": [[0, 10.03], [10.03, 13.6], [13.72, 23.06]], \"sentences\": [\"A man in a yellow shirt is on his knees layering cement on the floor.\", \" He stops for a second and looks up.\", \" The man goes back to layering the floor with cement.\"]}, \"v_259K1wC2IMk\": {\"duration\": 119.05, \"timestamps\": [[0, 57.74], [47.02, 119.05]], \"sentences\": [\"A young boy is seen pulling a mop out of a bucket followed by him pushing the mop across the floor.\", \" The camera pans to a woman in the distance and the boy continuing to push the mop along the floor.\"]}, \"v_CTxuJBTp_CQ\": {\"duration\": 179.93, \"timestamps\": [[0, 7.2], [7.2, 25.19], [26.99, 167.34], [106.16, 163.74], [169.14, 174.53]], \"sentences\": [\"A person spreads out the branches on a Christmas tree.\", \" The person drapes shiny tinsel strands around the tree.\", \" The person hangs Christmas bulbs on the tree.\", \" A child comes and watches the person decorating the tree then runs around playing.\", \" The person rolls up a sheer piece of fabric to put away.\"]}, \"v_9qFwSM8QLIE\": {\"duration\": 190.01, \"timestamps\": [[0, 17.1], [17.1, 36.1], [38, 39.9], [39.9, 143.46], [143.46, 176.71], [176.71, 190.01]], \"sentences\": [\"Various crowd scenes at a bullfight arena are shown.\", \" Matadors walk out into the ring area.\", \" A parade of horses and riders is shown.\", \" Scenes of matadors interacting with bulls are shown.\", \" The crowd cheers for a matador.\", \" Matadors are hoisted on people's shoulders and paraded.\"]}, \"v_l_Y_Xns6SpE\": {\"duration\": 54.72, \"timestamps\": [[0, 18.06], [25.44, 39.12], [35.02, 54.72]], \"sentences\": [\"The woman is leaning on the pool table focusing on the ball.\", \" The woman hit the ball and cheered .\", \" The woman hit the ball again and started jumping.\"]}, \"v_Lyi8-hf1rCw\": {\"duration\": 53.24, \"timestamps\": [[0, 6.39], [6.39, 18.64], [18.37, 34.61], [34.87, 53.24]], \"sentences\": [\"A man in a a leotard is blowing in his hands getting himself warmed up to start running.\", \" Once he starts he goes super fast  jumping up and into the sand.\", \" They show a replay of his run and land in slow motion.\", \"When he is done he walks around the arena while being followed by a camera.\"]}, \"v_NOXPH0_y4Ww\": {\"duration\": 208.78, \"timestamps\": [[0, 25.05], [26.1, 46.98], [46.98, 82.47], [82.47, 172.25], [172.25, 208.78]], \"sentences\": [\"a little girl is standing in a kitchen and starts squeeze a lemon into a water bowl, a person is standing by her side.\", \" lttle girl suck her finger and smile while a woman walks throug kitchen and puts something in the counter.\", \" little girl is standing in the kitchen with her mouth open and play with her hair.\", \" the girl starts walking an sit in fronts of a counter with a bowl of fruits and talk to the camera, walks again in the kitchen and keep aqueezing lemons in the water bowl, woman starts helping her.\", \" woman clean her hands in the sink and the girl walks in the kitchen and keep squeezing the lemons.\"]}, \"v_XI6sjZg9Yeg\": {\"duration\": 236.98, \"timestamps\": [[5.92, 88.87], [54.51, 161.15], [154.04, 228.69]], \"sentences\": [\"A man is seen laying floor down on the ground using a machine and others helping.\", \" Several shots are shown of the men pushing down the floor and using a torch underneath to keep it in place.\", \" The man continue working while showing the steam on the hot mats and the finished roof with done.\"]}, \"v_liNIRD7YwFQ\": {\"duration\": 195.19, \"timestamps\": [[0, 26.35], [33.18, 62.46], [79.05, 195.19]], \"sentences\": [\"A large wave is crashing toward the shore.\", \" A surfer is shown tearing through the water.\", \" A rainbow appears, then we see boats on the beach and more surfers in the waves.\"]}, \"v_p800u2wCKbE\": {\"duration\": 40.47, \"timestamps\": [[3.84, 8.7], [8.7, 13.96], [13.96, 33.19], [33.19, 36.83], [36.83, 39.46], [39.46, 40.47]], \"sentences\": [\"A news reporter is talking about a local fund raiser held by a nursery school.\", \" There are several people gathered to support the cause.\", \" There is a lemonade stand set up where people are purchasing lemonade to donate money for a cause.\", \" One of the parents is talking to the news reporter about the fund raiser.\", \" Three more parents are standing are chatting as they sip lemonade.\", \" A picture the girl, Hannah is shown for whom the fund raiser was held.\"]}, \"v_bR62246z9qA\": {\"duration\": 199.81, \"timestamps\": [[0, 2], [2, 29.97], [29.97, 199.81], [35.97, 47.95], [69.93, 82.92], [115.89, 131.87], [146.86, 151.85], [177.83, 194.81]], \"sentences\": [\"Cheerleaders with their hands in do a cheer.\", \" They go on the floor and stand still.\", \" They perform a cheer leading routine.\", \" Four girls are lifted and hold their legs.\", \" Two girls are lifted in the air and two girls are flipped then two girls lift the two girls.\", \" Four girls are lifted and hold two other girls up and a third is added.\", \" Two girls in the front held up a red sign.\", \" Three girls are lifted and they each hold another girl on their shoulders.\"]}, \"v_rcrhyi2EzZc\": {\"duration\": 90.05, \"timestamps\": [[0, 13.96], [13.51, 40.07], [40.52, 90.05]], \"sentences\": [\"Two young kids are his mother are standing in a kitchen washing dishes.\", \"The little girl takes a blue sponge cleans her dish and then gets down and begins walking around.\", \"Both the mother and son are still at the sink and she stands besides him and helps him clean his dish as well.\"]}, \"v_Y9wrTRY3mUI\": {\"duration\": 228.72, \"timestamps\": [[1.14, 217.28], [9.15, 44.6], [12.58, 90.34], [45.74, 216.14]], \"sentences\": [\"A group of people, children and families live, travel, and ice fish on a vast ice and snow covered piece of land.\", \"  A group of men and a woman talk to a camera while showcasing fish caught and live fishing in ice holes on a snow and ice covered terrain.\", \"  Several people fish in ice holes with children nearby while other drive across the ice terrain.\", \"   Fish are shown , local animals native to the area, toilets, cars on the ice, children, people holding fish just caught and ice holes where the fish are coming from along with dogs pulling snow sleds.\"]}, \"v_mhPpeG3LrUk\": {\"duration\": 90.4, \"timestamps\": [[0, 38.42], [44.29, 86.33]], \"sentences\": [\"A girl is seen sitting outdoors and holding up a bottle of sunscreen while speaking to the camera.\", \" The girl then shakes up the bottle, pours it into her hands, and rubs it all over her body.\"]}, \"v_x4qwV0Ti1Og\": {\"duration\": 57.75, \"timestamps\": [[0, 12.99], [11.84, 28.59], [27.72, 48.8]], \"sentences\": [\"A large track is shown with several people riding down on tubes at once.\", \" A man records a close up of a tube and pushing it into a woman standing in the snow.\", \" She begins talking on her phone and the same clip is shown again in slow motion.\"]}, \"v_8bX1g0mefzM\": {\"duration\": 140.5, \"timestamps\": [[0.7, 78.68], [80.79, 119.43], [121.54, 139.1]], \"sentences\": [\"A woman talks showing a shoe, then she cleans it with a cloth.\", \" The woman puts oil in a cloth and polish the shoe.\", \" Then, the woman takes shoe polish and apply to the shoe.\"]}, \"v_QrKWO2uNNJ0\": {\"duration\": 194.21, \"timestamps\": [[0, 58.26], [31.07, 146.63], [145.66, 188.39]], \"sentences\": [\"A woman with a hat on stands and talks.\", \" She is playing with her hair and talking.\", \" Pictures of her hair are inserted.\"]}, \"v_o-S8I8lhQpo\": {\"duration\": 212.23, \"timestamps\": [[0, 19.1], [29.71, 188.89], [195.25, 212.23]], \"sentences\": [\"A woman is parasailing in the ocean.\", \" She goes through tough waves.\", \" She goes over a large wave, which knocks her over.\"]}, \"v_hiEVVSgAhls\": {\"duration\": 85.45, \"timestamps\": [[0, 71.78], [6.84, 9.83], [11.54, 14.53], [72.63, 82.46]], \"sentences\": [\"Two people are playing a game of ping pong.\", \" People are playing basketball behind them.\", \" The man grabs the ball again and serves it across the table.\", \" The man is holding a phone and taking a picture with the girl.\"]}, \"v_U20a95sHi8E\": {\"duration\": 86.12, \"timestamps\": [[1.72, 20.24], [18.95, 62.87], [43.92, 82.25]], \"sentences\": [\"A close up of a car is seen followed by people walking into frame and washing the car.\", \" The people clean the exterior as well as interior and roll the car outside.\", \" They park the car and continue to wipe it down followed by drying it off in the end.\"]}, \"v_oFku30m99do\": {\"duration\": 15.07, \"timestamps\": [[0.38, 7.01], [5.27, 14.32]], \"sentences\": [\"A woman is seen standing in a bathroom wrapped up in a towel.\", \" The girl holds her hair up with one hand and rubs makeup on with the other.\"]}, \"v_InA8Xbg-hvo\": {\"duration\": 165.51, \"timestamps\": [[0, 8.28], [9.93, 40.55], [45.52, 70.34], [75.31, 165.51]], \"sentences\": [\"The words how to apply mascara appear.\", \" A woman with long black hair is talking to the camera.\", \" She holds up a wand of mascara.\", \" She then shows how to apply it, one eye at a time.\"]}, \"v_jcaOoRM6J80\": {\"duration\": 215.27, \"timestamps\": [[0, 11.84], [11.84, 15.07], [35.52, 85.03], [85.03, 111.94], [125.93, 190.52], [194.82, 208.81], [210.97, 212.04], [214.2, 215.27]], \"sentences\": [\"We see outdoor images then a man in a kitchen.\", \" We see ingredients on a table.\", \" The man mixes the ingredients in a mixer bowl.\", \" The man stirs the mix then turns the mixer back on.\", \" The man mixes the mix and pours it into cake pans.\", \" The man taps the pans then puts the cake in the oven.\", \" We see cookware, cupcakes, and the man cooking.\", \" Then see the bright end screen.\"]}, \"v_InwY966XXBY\": {\"duration\": 166.46, \"timestamps\": [[0, 21.64], [21.64, 70.75], [71.58, 80.74], [82.4, 166.46]], \"sentences\": [\"people are in a camp with a lot of camels sitting on the floor.\", \" a men is riding a camel and starts walking in the dessert passing by the piramids while a man is leading them with a rope.\", \" the camels stops and a man is taking a picture.\", \" men are riding camels in the dessert.\"]}, \"v_CLbEvGHmK8k\": {\"duration\": 175.03, \"timestamps\": [[7, 85.77], [86.64, 125.15], [126.02, 167.16]], \"sentences\": [\"A group of people perform simple step aerobics out on a sunny day.\", \" The aerobics instructor has the class switch to a new aerobics move in which the group dances their arms out in front of them and incorporate clapping as they take steps.\", \" Their next move is placing their hands up towards the sky as they take a step.\"]}, \"v_ig8RaXkocJ0\": {\"duration\": 215.9, \"timestamps\": [[0, 14.03], [37.78, 111.19], [124.14, 215.9]], \"sentences\": [\"A man has his hands in the air.\", \" Two wrestlers are shown jumping into the ring.\", \" They collapse as different people do the same jump.\"]}, \"v_bNvAqFcKzqU\": {\"duration\": 233.48, \"timestamps\": [[0, 78.21], [64.21, 159.93], [128.41, 232.31]], \"sentences\": [\"A large group of people are seen wandering around a city square with a young child in the middle playing an instrument.\", \" The boy plays a saxophone while people walk past him and put money down.\", \" The boy continues playing while the camera captures his movements and others stop to watch.\"]}, \"v_BxzOUJbq28s\": {\"duration\": 225.42000000000002, \"timestamps\": [[0, 49.59], [49.59, 181.46], [181.46, 225.42]], \"sentences\": [\"A man with a beard is playing on a green drum.\", \" The man starts adding in a second drum to the mix.\", \" A third drum is added to the drumming mix.\"]}, \"v_P6ijX0vabJs\": {\"duration\": 218.99, \"timestamps\": [[0, 61.32], [52.56, 167.53], [163.15, 218.99]], \"sentences\": [\"A close up of an instrument is shown followed by a woman sitting into frame and speaking to the camera.\", \" She then picks up the flute and begins playing it and pausing to speak in between.\", \" She plays the instrument again and pauses to put it down and speak to the camera.\"]}, \"v__m8WprCWHF4\": {\"duration\": 106.84, \"timestamps\": [[0, 3.21], [3.21, 7.48], [7.48, 14.96], [14.96, 84.93], [84.93, 106.84]], \"sentences\": [\"A black screen appears and quickly white words fly across it and they say \\\"Here it comes Set for full Screen\\\".\", \" A picture of a snowcapped mountain appears and white words on the screen say \\\"HARTEL PRODUCTIONS\\\".\", \"A wooden board appears at an outdoor area an it say's \\\"CLAM BEACH COUNTY PARK WELCOME NORTH DAY USE PARKING\\\", then in yellow some text appears that say \\\"THE DOG WALK\\\".\", \"Various still shots of people walking with dogs or walking alone along a road appear along with various shots of the area and titles of what they are.\", \"At the end there are still shots of dogs getting loaded into a car, the dogs in the car, a man loading the car with his walker, a closing sign and then yellow words appear that say \\\"THE END\\\" and it fades to black.\"]}, \"v_v8u8BiprYKs\": {\"duration\": 80.06, \"timestamps\": [[0, 14.01], [14.01, 44.84], [45.24, 65.65], [66.05, 79.26]], \"sentences\": [\"A lady kneels in front of bushes and talks.\", \" The lady uses gardening shears to trim the bush.\", \" The lady stands and trims the bushes.\", \" The lady kneels down again and continues to talk to the camera.\"]}, \"v_4o4Vh49v-q4\": {\"duration\": 89.35, \"timestamps\": [[9.38, 26.81], [26.81, 56.74], [56.74, 80.42], [80.42, 85.78]], \"sentences\": [\"A little girl is standing in her bathroom and demonstrating how she rinses her mouth with mouth wash.\", \" She takes a sip of Listerine mouth was from her cup and holds it in her mouth for several seconds while her older brother video tapes her.\", \" Another little girl walks behind her and watches her rinse.\", \" She holds the mouth wash in her mouth for a long time and then spits it out in the sink.\"]}, \"v_Gms3Yt6RrV4\": {\"duration\": 149.03, \"timestamps\": [[0, 14.16], [14.9, 21.61], [22.35, 29.06], [29.81, 35.02], [35.02, 105.06], [105.81, 111.02], [35.02, 122.95], [120.71, 136.36], [137.85, 149.03]], \"sentences\": [\"A man is seen talking with a camera very close to his face.\", \" Another man with a helmet on is standing near by.\", \" A third man is seen in a car next to the man talking.\", \" The man wearing the helmet starts down the street on a skateboard.\", \" The man goes down a few very steep hills on his skateboard.\", \" The man rides past a stop sign.\", \" The man with the camera and the man in the car follow filming the man on the skateboard.\", \" After the stop sign, the car passes the man on the skateboard.\", \" The car stops and the man on the skateboard stops just past them and picks up his skateboard.\"]}, \"v_qlq13iS0nEA\": {\"duration\": 212.23, \"timestamps\": [[4.24, 207.99], [0, 3.18], [207.99, 212.23]], \"sentences\": [\"A man with a guitar and a microphone performs a piece of music.\", \"  A black screen with a graphic of a white guitar and a website appear.\", \"  The man stops playing then the black screen with white guitar and website appear again.\"]}, \"v_teZ99ahe1zY\": {\"duration\": 40.82, \"timestamps\": [[0, 40.82], [2.25, 37.96]], \"sentences\": [\"Various people are shown riding around on horses holding sticks in the air and riding around one another.\", \" People walk in and out of frame and the people continue moving around on horses.\"]}, \"v_XwW5p80hYCg\": {\"duration\": 207.47, \"timestamps\": [[0, 10.37], [10.37, 120.33], [120.33, 124.48], [124.48, 139.01], [139.01, 172.2], [172.2, 176.35], [176.35, 199.17], [199.17, 207.47]], \"sentences\": [\"A logo and the words Master Lube TV show up on a black screen.\", \" A young man is standing and talking in a business while other young men are cleaning and detailing the inside and outside of a silver vehicle.\", \" The now cleaned vehicle pulls out of the garage and drives away from the business.\", \" The vehicle is now parked and two young men are wiping it down with a a dry cloth.\", \" More clips of the young man talking solo and all the cleaning they did previously replays.\", \" A red, white and blue flag with the words \\\"HAND CAR WASH\\\" blows in the wind.\", \" More clips of the young man talking solo and replays of the cleaning loops as words below the man show up and read \\\"MasterLube Hand Car Wash 750 Broadwater Ave (406) 294-5530.\", \" Flags are show again and it fades to a black screen with a logo and the words MasterLube.\"]}, \"v_Q5kU3DUXXZg\": {\"duration\": 133.86, \"timestamps\": [[0, 3.35], [3.35, 123.15], [123.15, 133.86]], \"sentences\": [\"Numerous different pictures of fitness people flash on the screen and the logo LA MUSCLE flashes quickly.\", \"A group of people appear and they are on bicycles pedaling and are doing a cardio workshop while the man in front wearing a headband is talking the whole time.\", \" The outro screen appears and it's a white screen that shoes the LA MUSCLE logo like it did in the beginning and the words \\\"For More Visit LAMUSCLE dot TV\\\".\"]}, \"v_1kMPW5huHWQ\": {\"duration\": 56.31, \"timestamps\": [[10.7, 21.12], [28.15, 28.72], [48.43, 48.99]], \"sentences\": [\"A man is completing a rubiks cube.\", \" A timer is sitting on the table next to him.\", \" He sets the completed rubiks cube down on the table.\"]}, \"v_cvEOK7xAPSs\": {\"duration\": 67.13, \"timestamps\": [[0, 6.38], [6.04, 13.09], [13.43, 38.26], [38.6, 67.13]], \"sentences\": [\"People running up the beach very quickly.\", \" Then they start to make strange faces towards the camera.\", \" They start bouncing and doing tricks on some kind of bouncy rope.\", \" Some of the the tricks look like they are very extreme.\"]}, \"v_RHfjDkr6mcc\": {\"duration\": 135.22, \"timestamps\": [[0, 103.45], [29.07, 135.22]], \"sentences\": [\"A woman is seen standing behind an ironing board ironing a shirt while speaking to the camera every now and then.\", \" The moves the shirt all around the table ironing it and holding it up in the end to present.\"]}, \"v_-fMxoShIXiM\": {\"duration\": 117.17, \"timestamps\": [[0, 5.27], [5.27, 19.92], [19.92, 30.46], [30.46, 43.35], [43.35, 60.93], [60.93, 99.01], [99.01, 111.9], [111.9, 117.17]], \"sentences\": [\"A woman with long, black, curly hair is wearing casual wear, talking, and squatting on a roof.\", \" The woman then stands up and walks to a part of the roof where she lifts up a black shingle on the roof.\", \"The woman is now on standing on the ground in front of the house smiling and talking.\", \" A large truck pulls up to the house and a man begins to unload shingles onto the roof.\", \" The woman is back on the roof with a shovel and is shoveling off all of the old shingles then she dumps them in a large dumpster.\", \" Men are now laying out long pieces of black material and nailing them into the roof, as well as nailing the shingles down.\", \"The roof is done and a view of the entire house is shown to show off the finished roof.\", \" The woman is standing in front of the home, smiling while talking.\"]}, \"v_wNvLv7PtvQg\": {\"duration\": 18.95, \"timestamps\": [[0, 6.35], [6.82, 18.95]], \"sentences\": [\"A camera zooms in out two people riding in a canoe together.\", \" The camera moves in closer and captures the people paddling further down the river.\"]}, \"v_jFqY3M37F-g\": {\"duration\": 129.43, \"timestamps\": [[0, 1.29], [1.29, 128.13], [67.95, 71.83], [87.36, 93.84], [127.49, 129.43]], \"sentences\": [\"We see a man siting and holding a drum.\", \" We then see the man playing on the drum.\", \" The man hits a drum off camera left.\", \"  The man shuffles his hands on the drum.\", \" The man stops paying the drums.\"]}, \"v_4Xvn1xXvYdU\": {\"duration\": 213.21, \"timestamps\": [[0, 170.56], [165.23, 213.21]], \"sentences\": [\"A man in brown jacket is pulling out an arrow from the target board, then he was talking to the camera, then he pull out his bow and started to use it with his bow to hit the target board, he fired his bows several times.\", \" The man went to the target board and talked to the camera.\"]}, \"v_nt4Ag91306U\": {\"duration\": 123.11, \"timestamps\": [[7.39, 20.31], [16, 116.34], [33.86, 54.79], [56.63, 123.11]], \"sentences\": [\"A person is throwing a tennis ball up in the air and hits the ball.\", \" Two men begin talking about this tennis move and how you should properly hold your racket.\", \" The man demonstrates how to throw the ball up and how to swing.\", \" The man continues to discuss when to hit the ball for this move and how to execute it properly.\"]}, \"v_bESksIhdEvo\": {\"duration\": 23.59, \"timestamps\": [[0, 15.45], [6.96, 23.59]], \"sentences\": [\"A man is seen standing in front of a sink scrubbing it down with a sponge.\", \" The man continues wiping down the counter while occasionally looking at the camera.\"]}, \"v_W7JxYa-PiB8\": {\"duration\": 45.86, \"timestamps\": [[0, 16.51], [13.76, 33.02], [30.04, 43.57]], \"sentences\": [\"A man wearing a hat is seen holding a tennis racket and bouncing a ball up and down.\", \" The man then serves the ball and leads into a tennis match between four people.\", \" The announcer laughs as the other team mates speak to each other and showing his hit again in slow motion.\"]}, \"v_gnKpguqHfag\": {\"duration\": 217.5, \"timestamps\": [[0, 11.96], [11.96, 33.71], [33.71, 46.76], [33.71, 140.29], [141.38, 217.5]], \"sentences\": [\"A green and yellow team Hockey team is pictured and there location is shown on a map.\", \"The video then reverts back to the game and shows the venue that the teams are playing in.\", \"After,several players are shown skating around the rink and then a bald Caucasian male is shown dressed in a black polo begins talking to the camera.\", \"Once finished,the bench is panned and the game begins with the referee standing in between the two teams and they begin playing.\", \"As they continue,the bald man is shows and continues talking and they continue to flash between him,the players, and the games.\"]}, \"v_BERvPz1e_AU\": {\"duration\": 133.82, \"timestamps\": [[6.69, 70.92], [51.52, 127.13]], \"sentences\": [\"Various athletes are seen standing together in the middle of a large stadium and leads into a woman throwing a shot put and then walking away.\", \" Several more people are seen walking up and throwing the object with a woman running with the american flag and standing on a podium with others.\"]}, \"v_B1u-Er4jXFA\": {\"duration\": 83.13, \"timestamps\": [[0, 19.54], [23.69, 83.13]], \"sentences\": [\"The camera zooms in on a chef spinning around a spatula in a pan and putting more ingredients into the pan.\", \" He stirs around the mixture and presses it to the side while setting down the spatula.\"]}, \"v_5BuDj1xkpiI\": {\"duration\": 126.81, \"timestamps\": [[0, 2.54], [3.8, 58.33], [58.96, 114.76], [116.03, 122.37], [122.37, 126.81]], \"sentences\": [\"We see a bottle of face wash.\", \" We see a person holding face wash then putting it on their face.\", \" They rinse the face and add the face wash with a brush.\", \" We see an illustration on how to add the wash using a brush.\", \" We see the ending credits.\"]}, \"v_LW5lcM_rKBY\": {\"duration\": 10.08, \"timestamps\": [[0, 4.74], [4.43, 10.08]], \"sentences\": [\"A man is seen holding a power drill with a potato on the end and people peeling around him.\", \" The man turns on the drill and peels the potato with another person pointing on the side.\"]}, \"v_7S7THbo8uds\": {\"duration\": 78.27, \"timestamps\": [[0.39, 46.57], [35.61, 78.27]], \"sentences\": [\"Two men are seen holding each other's arms and leads into the men performing an arm wrestling match.\", \" One man smokes a cigarette while they continue to play and that man winds while holding his arms up.\"]}, \"v_GU_8hjy79VQ\": {\"duration\": 24.17, \"timestamps\": [[2.3, 3.26], [2.3, 24.17], [3.26, 9.79], [9.91, 13.05], [12.57, 14.38], [14.5, 15.83], [16.2, 21.75], [16.2, 21.63], [22.24, 24.17]], \"sentences\": [\"A man is seen with a large pole.\", \" A large crowd is in the stands in the background.\", \" The man with the pole runs and throws it and then hits the ground.\", \" The pole flies through the air and lands just past the number 85 on a field.\", \" Several man run out to the pole.\", \" Men are seen in the stands clapping.\", \" The man that threw the pole is seen putting a jacket on.\", \" Many people walk around and sit on the field.\", \" The man is seen throwing the pole again.\"]}, \"v_QhDPo3amF6o\": {\"duration\": 113.99000000000001, \"timestamps\": [[0, 11.4], [33.06, 45.02], [45.59, 61.55], [83.78, 94.61], [90.62, 106.01]], \"sentences\": [\"The bumper car ride is packed with people, already many are crashing.\", \" A man flashes the peace sign at the camera, having a good time.\", \" Car 9 has finally gotten going but he is crashing left and right.\", \" A man reverses into another car behind him.\", \" A large pile-up occurs in the middle of the track.\"]}, \"v_69SYd5feEBQ\": {\"duration\": 92.93, \"timestamps\": [[0, 92.93], [37.64, 41.82], [78.52, 83.17]], \"sentences\": [\"An elderly lady sits in a chair knitting and talking to the camera.\", \" The lady shakes her head slightly while looking at the camera.\", \" The lady pauses and looks out the window.\"]}, \"v_8ZjUZbykp4U\": {\"duration\": 77.14, \"timestamps\": [[0, 21.21], [18.13, 58.62], [40.5, 75.98]], \"sentences\": [\"A man is seen sitting behind a drum set playing on the drums.\", \" The camera pans all around his movements while he speaks to the camera.\", \" More shots are shown of him playing as well as singing and other people playing instruments around him.\"]}, \"v_BxEnhkx2srY\": {\"duration\": 16.3, \"timestamps\": [[0, 6.68], [6.68, 9.13], [9.13, 16.3]], \"sentences\": [\"A boy prepares to do a high jump in a gym.\", \" He takes off running with the high jump stick.\", \" he makes the jump and lands on the  safety pads.\"]}, \"v_kkEjwEXkz3w\": {\"duration\": 78.23, \"timestamps\": [[0.39, 14.47], [16.43, 78.23]], \"sentences\": [\"A person's hands with nails are shown followed by two women talking to the camera.\", \" Several objects on paper are shown while the women continue to speak and one start making designs on the nails.\"]}, \"v_MleVjHU-wI8\": {\"duration\": 232.32, \"timestamps\": [[0, 3.48], [3.48, 34.85], [18.59, 226.51], [34.85, 42.98], [58.08, 89.44], [90.6, 119.64], [118.48, 203.28], [204.44, 206.76], [216.05, 226.51], [226.51, 232.32]], \"sentences\": [\"We see a white opening screen.\", \" We then see a man holding something wrapped in a plastic bag.\", \" A woman joins the man.\", \" The man opens the plastic bag.\", \" The lady gift wraps the box for the man.\", \" The man takes a shot at the gift wrapping.\", \" The lady finishes wrapping the gift.\", \" The man folds an edge, and the lady tapes it.\", \" The man presents the box to the camera and talks.\", \" the closing screen is then seen and it goes black.\"]}, \"v_9ZnJyY_-Hzw\": {\"duration\": 126.92, \"timestamps\": [[0, 8.25], [10.79, 27.29], [31.73, 86.94], [88.84, 126.92]], \"sentences\": [\"A man walks across a tightrope, as seen from the view of the underside of the rope.\", \" A pan out of the river and a ferry is seen in Hong Kong.\", \" A man puts on a show as he balances in several different positions on a tightrope for a small crowd.\", \" Another man joins him,and they balance,walk, and do push ups.\"]}, \"v_3SL_Au0H0cw\": {\"duration\": 120.09, \"timestamps\": [[0, 120.09], [3, 120.09], [0, 118.89]], \"sentences\": [\"man is wearing a black kimono and isdoing yoga movements.\", \" man is standing in a large green grassy field.\", \" man is slowly walking practicing boxing movements.\"]}, \"v_r1dvt537JQU\": {\"duration\": 178.66, \"timestamps\": [[0, 74.14], [74.14, 114.34], [114.34, 178.66]], \"sentences\": [\"The man is kneeled down to the floor, but he stands up to raise his arm and get on the bars to perform his act.\", \" When he's done he flips off and bows, next a girl is shown sitting in the chair and then he is shown performing again but in slow motion.\", \"  Next, a girl is shown swinging on the uneven bars and when she's done she goes to sit down and talk about what she does.\"]}, \"v_UCndppz9rWc\": {\"duration\": 11.52, \"timestamps\": [[0, 11.52], [0, 4.2], [0, 3.69]], \"sentences\": [\"manis wearing a white shirt and is walking in a green grass carrying a lawnmower.\", \"  kid is standing in the field watching the man with the lawnmower.\", \" man stands and extends the hand to hold the kid.\"]}, \"v_7iPb7mLURVc\": {\"duration\": 111.28999999999999, \"timestamps\": [[0, 27.27], [27.27, 84.58], [74.01, 109.07]], \"sentences\": [\"A woman is seen speaking to the camera while holing a baton in her hands.\", \" She continues speaking to the camera while spinning around the baton.\", \" She continues to spin around the baton and demonstrate how to properly twirl it.\"]}, \"v_oJ9BFy1KNlY\": {\"duration\": 42.08, \"timestamps\": [[0, 41.65], [0.84, 11.15], [11.99, 28.19], [28.61, 41.86]], \"sentences\": [\"A man stands indoors, on a platform, in front of three onlookers, and lifts a heavily weighted bar bell.\", \"  A man approaches a barbell on the floor and stands before it preparing to lift it.\", \" The man then bends at the knees and puts his hands on the bar portion of the weight.\", \"  The man then lifts the bell above his head and then lets the bell fall to the floor where it bounces a bit upon landing as the man turns and walks away from the weight.\"]}, \"v_q4rVY3sLQqA\": {\"duration\": 145.38, \"timestamps\": [[0.73, 36.35], [36.35, 105.4], [105.4, 132.3], [133.02, 136.66], [137.39, 145.38]], \"sentences\": [\"Two men describe lead climbing while one man in a bright green shirt climbs a climbing wall the other man wearing a dark green shirt holds the lead line and explains the process.\", \" The man in the dark green shirt places a strap and link to the climbing wall and loops a rope through the clip.\", \" The man reverses the strap position and loops the rope through the strap eye link.\", \" The man in the bright green shirt continue climbing to the top of the wall.\", \" The man in the dark green shirt continues talking to the camera.\"]}, \"v_MLfEz9HPElE\": {\"duration\": 9.27, \"timestamps\": [[0, 3.06], [3.66, 9.26]], \"sentences\": [\"One woman throws something at another.\", \"  Then, the two women play hopscotch.\"]}, \"v_0uh3HP895OA\": {\"duration\": 131.63, \"timestamps\": [[0, 18.43], [11.85, 35.54], [31.59, 71.08], [61.87, 120.45]], \"sentences\": [\"a woman is sitting behind a desk talking to the camera.\", \" A woman walks into a room and sits in a pew.\", \" The woman begins to knit.\", \" The woman then talks to the camera.\"]}, \"v_FMlWHXByLL0\": {\"duration\": 69.43, \"timestamps\": [[0, 69.43], [37.14, 40.96], [68.39, 69.43]], \"sentences\": [\"Kids are jump roping in a gym.\", \" They do flips over each other.\", \" People in the audience clap for them at the end.\"]}, \"v_DqT3NrqisLk\": {\"duration\": 161.31, \"timestamps\": [[1.61, 43.55], [44.36, 91.14], [79.85, 130.66], [125.02, 157.28]], \"sentences\": [\"A close up of a person's feet are seen as well as text on the screen.\", \" The person is seen taking the laces off and running the shoes under water.\", \" The person mixes ingredients into a bowl and scrubs the shoes using the tooth brush.\", \" She then sticks the shoes in the wash and shows them off afterwards.\"]}, \"v_7oBW5W6Fdok\": {\"duration\": 44.56, \"timestamps\": [[0, 27.4], [27.4, 32.08], [32.97, 41.22], [43, 44.56]], \"sentences\": [\"We see a man preparing to throw a hammer in track and field.\", \" The man shakes his legs and walks to the field.\", \" The man spins hard and throws the hammer.\", \" We see the hammer as it flies across the track.\"]}, \"v_xEnnIWce1ok\": {\"duration\": 13.77, \"timestamps\": [[0.07, 5.03], [5.23, 13.08]], \"sentences\": [\"Two men perform a flip move on a playground that leads to one being dropped on the ground.\", \" The camera zooms in on the fallen man while they all laugh together.\"]}, \"v_rA7qVOp47Qg\": {\"duration\": 154.82999999999998, \"timestamps\": [[0, 48.77], [48.77, 143.22], [143.22, 154.83]], \"sentences\": [\"A girl is riding on a white horse that is in an enclosed obstacle course, but it's just walking, trotting and running around the perimeter doing laps.\", \"Another girl is now the focus and she's riding on a taller brown horse who begins walking, trotting and they also stay on the perimeter of the area.\", \" When the brown horse is done going around in laps, it walks over to the white horse who is now in the middle of the area and it stops.\"]}, \"v_jmPV_y8YntQ\": {\"duration\": 160.98, \"timestamps\": [[24.15, 49.91], [49.91, 87.74], [87.74, 103.03], [103.03, 127.18], [127.18, 134.42], [134.42, 152.93], [152.93, 160.98]], \"sentences\": [\"There are several girls standing ready with their jump ropes in an indoor gym.\", \" They are ready to compete in competition.\", \" There are several people seated and standing that are watching the girls as they jump rope.\", \" The girls take turns and jump rope in a relay manner.\", \" They switch between the contestants and move from fast skipping to slower and steadier skipping.\", \"They take turns as they skip.\", \" After they stop, the crowd claps and cheers.\"]}, \"v__UlKLq9w_nw\": {\"duration\": 167.16, \"timestamps\": [[0, 13.37], [20.9, 72.72], [93.61, 167.16]], \"sentences\": [\"A group of people have gathered at an outdoor court.\", \" They are involved in a game of curling.\", \" Each person uses the stick to push the puck as a girl talks to the camera.\"]}, \"v_-gZjpAPEhR4\": {\"duration\": 68.13, \"timestamps\": [[0.34, 16.01], [17.03, 50.07], [44.96, 67.45]], \"sentences\": [\"A close up of a person's roller blades are shown with a man standing in frame.\", \" The person then lights up his blades and jumps in place.\", \" The person continues riding around and kicking his feet up while the sparks fly.\"]}, \"v_5mxY_p7N_Yw\": {\"duration\": 189.01, \"timestamps\": [[3.78, 69.93], [49.14, 170.11]], \"sentences\": [\"The video leads into several clips of a hockey player moving around the ice and players speaking to the camera.\", \" The people continuing skating on the ice while practicing as players intervene to speak to the camera.\"]}, \"v_jBvGvVw3R-Q\": {\"duration\": 218.62, \"timestamps\": [[0, 27.33], [27.33, 78.7], [78.7, 137.73], [137.73, 210.96], [210.96, 218.62]], \"sentences\": [\"A man is standing in a gym preparing to lift a set of weights placed on a bar.\", \"Next the screen  flashes to a younger male jerking and then drops the bar on the ground.\", \"Several more people are shown lifting weights and dropping them on the ground.\", \"The man begins to dance as he lifts and drops the bar and the continuation of weightlifting is repeated.\", \"After,the men continue walking around the gym eating a protein bar.\"]}, \"v_U697zTxxDHM\": {\"duration\": 95.75999999999999, \"timestamps\": [[0, 11.49], [15.32, 20.59], [21.55, 42.61], [43.57, 62.24], [68.47, 87.62]], \"sentences\": [\"A group of friends sit together against a fence at a skate park.\", \" People on roller blades do tricks on a ramp over steps.\", \" People on roller blades do tricks on a bench at the skate park.\", \" People do trucks on a railing down a ramp at the skate park.\", \" The roller skates ride on half pipe ramps.\"]}, \"v_lcVkXTsnR7A\": {\"duration\": 228.25, \"timestamps\": [[1.14, 7.99], [9.13, 11.41], [17.12, 221.41], [29.67, 195.16], [122.12, 127.82], [224.83, 227.11]], \"sentences\": [\"A guy climbs up the stairs carrying a black amplifier.\", \" The guy walks through a door he opened.\", \" The guy plays a harmonica with a microphone in one hand.\", \" The guy plays the guitar.\", \" The black amplifier is displayed on a table.\", \" The amplifier is displayed on a table.\"]}, \"v_im-nQ-KEzaQ\": {\"duration\": 129.38, \"timestamps\": [[3.23, 43.99], [32.99, 71.16], [78.92, 108.68], [93.8, 126.79]], \"sentences\": [\"A woman is seen speaking to the camera with various ingredients laid out as well as her cleaning.\", \" She lays out a newspaper and mixes various ingredients together into a spray bottle.\", \" She puts on gloves and using the newspaper to wipe down a window after she has sprayed it.\", \" She continues wiping down the window while speaking to the camera.\"]}, \"v_cYMweZa5J1I\": {\"duration\": 236.16, \"timestamps\": [[1.18, 225.53], [12.99, 232.62], [86.2, 88.56]], \"sentences\": [\"Guys stand or sit around their dirt bikes.\", \" Guys are riding their dirt bikes.\", \" A guy takes off his upper body armor while sitting on his dirt bike.\"]}, \"v_ouc67LyENuw\": {\"duration\": 131.73, \"timestamps\": [[1.98, 83.65], [29.64, 42.81], [15.15, 59.28], [73.11, 96.82], [108.02, 129.75], [108.67, 129.75]], \"sentences\": [\"Cows are running through fields with men chasing after them with sticks.\", \" The men are agitating the cows and causing them to fight with one another.\", \" The men are singing and dancing around the cows.\", \" The media interviews men from the crowd.\", \" A female reporter is holding a microphone while doing a news report.\", \" A large crowd of men are following her.\"]}, \"v_EjaS2rW81S4\": {\"duration\": 172.62, \"timestamps\": [[6.9, 76.82], [75.95, 169.17]], \"sentences\": [\"Several people are seen kneeling on a beach helping a small child make sand castles.\", \" Many people are seen walking around the beach as the boy and older woman continue to make sand castles.\"]}, \"v_dEUFGAwRhEM\": {\"duration\": 213.29, \"timestamps\": [[0, 29.86], [41.59, 156.77], [165.3, 213.29]], \"sentences\": [\"A couple of large balloons are floating over the ocean water.\", \" Competitor boaters are shown racing in the water.\", \" They paddle quickly toward the finish mark.\"]}, \"v_J3coWVRd5do\": {\"duration\": 44.14, \"timestamps\": [[0, 8.17], [8.39, 20.08], [21.85, 44.14]], \"sentences\": [\"A girl runs down a track in slow motion.\", \" She takes a huge jump, hurling herself over a bar.\", \" She is shown performing the act again in slow motion.\"]}, \"v_kG7inHibWLU\": {\"duration\": 171.06, \"timestamps\": [[0, 17.11], [9.41, 37.63], [33.36, 65]], \"sentences\": [\"A girl knocks on a door but nobody answers.\", \"  She dances and prepares food in front of the stove with another woman.\", \"  She fights and then both girls separate.\"]}, \"v_gzyu1S2LNIw\": {\"duration\": 90.53999999999999, \"timestamps\": [[0, 52.96], [32.14, 90.54]], \"sentences\": [\"A small group of girls are seen standing ready holding flags and lead into them performing a routine.\", \" A man sits in front of them playing an instrument while they continue spinning and many on the sides watch.\"]}, \"v_e0Qj2F3V6fM\": {\"duration\": 214.62, \"timestamps\": [[0, 23.61], [23.61, 60.09], [62.24, 151.31], [152.38, 189.94], [191.01, 214.62]], \"sentences\": [\"The video stats explaining how to make Omelette muffins.\", \" She shows the ingredients and tell what to set the oven to.\", \" She mixes everything together and stirs it up with seasoning.\", \" She then puts it into the tray and into the oven to bake.\", \" Afterward she takes it out and shows the finished product.\"]}, \"v_FIzlf7jdsUY\": {\"duration\": 149.61, \"timestamps\": [[0, 149.61], [92.76, 131.65], [134.65, 149.61]], \"sentences\": [\"Pictures of people's hair is shown.\", \" A woman in a pink shirt has pictures of her hair.\", \" Words come on the screen at the end.\"]}, \"v_wFmczV8lv-I\": {\"duration\": 154.07, \"timestamps\": [[0, 17.72], [17.72, 28.5], [28.5, 58.54], [58.54, 92.44], [92.44, 132.5], [131.73, 154.07]], \"sentences\": [\"A group of gymnast enter front a side of a stadium.\", \"Next, a gymnast is shown on the bar and does multiple tricks consisting of flips and handstands then flips off to land and walks off.\", \"As a man runs near him,a replay is shown of the instances where he messed up and then his score is shown.\", \"Another man is shown doing various tricks and flips but instead of being above the bar,he starts out below the bar and comes on the top to do a hand stand before finally flipping off.\", \"Several other teams approach the bar and they too begin doing the same tricks in their competition.\", \"The winner then begins waving his flag and waving his hand to the crowd.\"]}, \"v_TDWbRqIEcts\": {\"duration\": 127.48, \"timestamps\": [[0, 12.75], [10.84, 13.39], [18.48, 21.03], [22.31, 30.59], [30.59, 33.14], [33.78, 72.03], [72.66, 75.21], [76.49, 84.77], [85.41, 99.43], [100.71, 104.53], [104.53, 114.73], [115.37, 127.48]], \"sentences\": [\"We see a man in a room in front of a bookshelf with a cookie.\", \" The cookie is snatched from the man.\", \" We see the face of a young boy.\", \" We see ingredients added to a bowl.\", \" We switch and see a cat.\", \" We see ingredients in a mixer, then poured into a bowl then refrigerated.\", \" We see the cat appear again.\", \" A person shapes balls and coats them in powdered sugar.\", \"  The cookies are baked.\", \" We see the man talking with a girl.\", \" We see the cookies and two mugs.\", \" We see the man with two kids.\"]}, \"v_gkhgAlVSKTI\": {\"duration\": 124.88, \"timestamps\": [[1.87, 57.44], [48.7, 123]], \"sentences\": [\"A woman is seen playing a set of bagpipes while people sit around her and watch.\", \" The girl continues playing as the camera watches her move her hands along the instrument and a man standing next to her to pose and throw change.\"]}, \"v_ybhc3-s7aYo\": {\"duration\": 19.62, \"timestamps\": [[0.49, 5.89], [5.2, 15.89], [12.75, 19.23]], \"sentences\": [\"A man is seen standing before a large log holding an ax in his hands.\", \" He holds the ax up over his head while still looking down at the log.\", \" He swing the ax down and chops the log in half.\"]}, \"v_WidcZbpPEC0\": {\"duration\": 92.22999999999999, \"timestamps\": [[8.76, 26.75], [26.75, 82.55], [61.79, 63.18]], \"sentences\": [\"People are in a room talk to each other.\", \" Then, the men compete arm wrestling and the winner looks happy, while people \\napplaud.\", \" A man drinks beer from a bottle.\"]}, \"v_XhqFJNRt-5g\": {\"duration\": 30.95, \"timestamps\": [[0, 5.11], [5.26, 13.31], [13.31, 18.88], [16.56, 18.26], [19.5, 30.95]], \"sentences\": [\"People are walking in front of a white fence.\", \" Behind the fence a man is riding a horse.\", \" He ropes a calf and throws it down onto the ground.\", \" He ties the legs of the calf and stands up.\", \" He gets back on his horse.\"]}, \"v_l8TsSm4Yh4M\": {\"duration\": 163.85, \"timestamps\": [[1.64, 83.57], [60.63, 159.76]], \"sentences\": [\"A person is seen walking around a paintball course and leads into clips of people playing paintball and speaking to one another.\", \" A man points to the camera and leads into more shots of people playing and working with one another.\"]}, \"v_UlGX-5x0Mak\": {\"duration\": 25.15, \"timestamps\": [[0, 18.74], [18.74, 25.15]], \"sentences\": [\"A boy holds an ice cream cone to a baby sitting in a high chair seat.\", \" The baby enjoys the ice cream cone.\"]}, \"v_rVmNL8rzHnU\": {\"duration\": 199.88, \"timestamps\": [[0, 34.98], [33.98, 113.93], [113.93, 161.9], [161.9, 199.88]], \"sentences\": [\"A man is putting wall paper on the wall, he is trying to measure it just right so that it is even with the rest.\", \" He cuts some of the paper and takes the plastic part off of the back so that it is sticky and begins pressing the adhesive side down on the wall.\", \" He starts to add pressure to it so that any bubbles get out and it looks nice and even.\", \" He stands back to look at the wall and make sure it look good, then shows a before and after photo.\"]}, \"v_znoMrA2qCbA\": {\"duration\": 20.6, \"timestamps\": [[0, 2.06], [3.91, 18.13], [18.54, 20.6]], \"sentences\": [\"A man is kneeling on a field.\", \" He picks up a heavy ball, and uses it to perform numerous exercise techniques.\", \" He then sets it back down on the grass.\"]}, \"v_a7oaRcmRZ5k\": {\"duration\": 129.2, \"timestamps\": [[0, 41.99], [33.59, 103.36], [98.83, 129.2]], \"sentences\": [\"A boat is seen riding along the water with a man driving others around.\", \" A person is seen riding on the back doing several flips and tricks on his board.\", \" The people watch the man as well as the camera as he continues flipping around and looking back to the camera.\"]}, \"v_NJuf9o45A8U\": {\"duration\": 67.54, \"timestamps\": [[0, 67.54], [8.1, 67.54]], \"sentences\": [\"A man is snowboarding down a hill of snow.\", \" He is jumping in the air and doing tricks off of pipes.\"]}, \"v_LOhacn4jdT4\": {\"duration\": 102.94, \"timestamps\": [[0, 13.38], [13.38, 20.59], [20.07, 28.31], [28.31, 35.51], [35.51, 63.31], [64.33, 71.03], [71.54, 86.47], [86.47, 102.94]], \"sentences\": [\"A man walks around while adjusting a belt, with many other people in the room.\", \" The man walks through a tunnel flanked by several other men.\", \" The man gets on a stage and powders his hands.\", \" The man walks before a barbell with weights.\", \" The man lifts the weights.\", \" The man drops the weights.\", \" The man walks off stage as attendants move to the weight on stage.\", \" A replay of the lift is shown from a different angle.\"]}, \"v_S633fHu_NrU\": {\"duration\": 159.24, \"timestamps\": [[0, 36.63], [20.7, 119.43], [67.68, 159.24]], \"sentences\": [\"A lady is standing at the table with ingredients on the table.\", \" The woman pointed the ingredients such as red bell peppers, celery, carrots, chicken breast, olives, pickled gherkins, olive oil in the bottle, white wine in the bottle, mayonnaise, mustard and gruyere, salt and pepper.\", \" The lady touched the ingredients in the plates, then she sliced the chicken, put the mustard, mayonnaise and olive oil in a bowl, then added the vegetables, and then the plate is shown with the chicken salad.\"]}, \"v_GBTpVjwLxe0\": {\"duration\": 23.22, \"timestamps\": [[0, 22.76], [1.86, 6.62]], \"sentences\": [\"A kayak rider paddles against the current and maneuvers back and forth with his hips and paddle.\", \" The kayak rider dips into the water and recovers.\"]}, \"v_wMDyshGO2og\": {\"duration\": 173.77, \"timestamps\": [[0, 10.43], [15.64, 105.13], [110.34, 161.6], [165.08, 173.77]], \"sentences\": [\"A game is taking place between argentina and peru.\", \" People in the crowded stands gather and disperse.\", \" The men are shown on the court, playing the game and kicking the ball.\", \" The scoreboard is shown for comparison as the game ends.\"]}, \"v_ecWUNT_HcN8\": {\"duration\": 233.92000000000002, \"timestamps\": [[5.85, 85.38], [71.34, 177.78], [167.25, 221.05]], \"sentences\": [\"A large roof is seen close up followed by a person standing on a ladder and pushing down tiles.\", \" More people are seen working on the roof hammering down tiles as well as pushing them off and speaking to the camera.\", \" The camera continues to pan all around the roof as well as buildings around them and the men continuing to work.\"]}, \"v_f5xSylPY_bQ\": {\"duration\": 202.41, \"timestamps\": [[0, 18.22], [17.2, 36.43], [17.2, 202.41]], \"sentences\": [\"A girl is sitting down in front of a couch.\", \" She starts playing a flute.\", \" She continues playing the flute white looking down.\"]}, \"v_ynxngsa-IHU\": {\"duration\": 206.96, \"timestamps\": [[2.07, 10.35], [11.38, 21.73], [22.77, 39.32], [40.36, 107.62], [108.65, 131.42], [133.49, 198.68]], \"sentences\": [\"A man stands in front of a wall filled with hair  products.\", \" Various scissors and combs are laid out on a mat.\", \" The salon stylist towels off then rubs hair products through the man's hair with his hands.\", \" The stylist combs out the persons hair and cuts it with scissors.\", \" The stylist trims the sideburns and around the ears.\", \" The stylist uses his hands to style the hair and blow drys it when finished cutting for the person to see.\"]}, \"v_ktfxYSZjJyM\": {\"duration\": 18.74, \"timestamps\": [[0.09, 18.74], [0, 18.74], [0, 2.44]], \"sentences\": [\"woman is in a lake windsurfing with a red windsurf.\", \" other people are in the back windsurfing in the lake.\", \" sailboat is standing in the back of people windsurfing.\"]}, \"v_1_PiNdPt6RU\": {\"duration\": 15.07, \"timestamps\": [[0, 4.9], [5.05, 15.07]], \"sentences\": [\"woman is eating bran flakes and putting some mascara, washing her teeth and cleaning her mouth with mouthwash.\", \" journalists are talking in the news.\"]}, \"v_HYYQ56oZSDM\": {\"duration\": 214.25, \"timestamps\": [[0, 39.64], [39.64, 71.77], [71.77, 112.48], [112.48, 214.25]], \"sentences\": [\"A woman and man dancing provocatively outside of a restaurant.\", \" She is wearing a very sexy short dress and kicking her legs up and down in heels.\", \" People are walking out od the restaurant.\", \" One of the workers is sitting on a stool smoking until they end their dance on the ground.\"]}, \"v_zPGc84TC74A\": {\"duration\": 60.0, \"timestamps\": [[0, 3], [3.6, 54], [14.7, 16.8], [35.4, 36.6], [51.9, 53.7], [54.3, 60]], \"sentences\": [\"We see the title screen on gray.\", \" Two men are playing squash.\", \" We see a transition urging practice.\", \" A transition starts but doesn't change to anything.\", \" The man in white wipes his brow with his sleeve.\", \" The end credits run up the screen.\"]}, \"v_zL_WLS1gPNw\": {\"duration\": 108.41, \"timestamps\": [[0, 35.78], [35.78, 62.34], [85.65, 94.86]], \"sentences\": [\"A woman is kneeling down on the ground next to a desk.\", \" She starts painting the desk white with a paint brush.\", \" She then starts painting two of the drawers orange.\"]}, \"v_-boJqGIgV9I\": {\"duration\": 67.41, \"timestamps\": [[0, 20.22], [20.56, 34.04], [34.72, 67.41]], \"sentences\": [\"A small girl is at an amusement park dart rewards game.\", \" A lady who is working at the stand comes and asks her how many darts she would like to use, she gives the girl the darts.\", \" The girl starts throwing darts, she is only able to hit one balloon, she asks for help but does not get it.\"]}, \"v_Ru18FF0tcuA\": {\"duration\": 70.68, \"timestamps\": [[0, 40.64], [45.59, 47.36], [48.06, 65.38]], \"sentences\": [\"A person is rowing at the edge of a boat.\", \" The person takes out a fishing hook.\", \" The person starts fishing at his edge.\"]}, \"v_iqmpDgATXbU\": {\"duration\": 185.76, \"timestamps\": [[0, 86.38], [87.31, 185.76]], \"sentences\": [\"A woman is seen performing a belly dancing routine on a large stage with other people watching on the sides.\", \" The woman continues dancing and spinning around the stage and ends with her posing and walking off.\"]}, \"v_drMXYzlmJQU\": {\"duration\": 101.52000000000001, \"timestamps\": [[0, 52.28], [52.28, 101.52]], \"sentences\": [\"grandma is talking with a little blond child sitting in a coach while is knitting in a red thread in a liing room.\", \" child holds the thread and run in the room pulling it and the woman is talking to him, the child grabs the thread from the floor and run in the living room.\"]}, \"v_ik8uSCSBv1U\": {\"duration\": 9.73, \"timestamps\": [[0, 0.29], [0.29, 3.99], [3.99, 7.1], [7.1, 9.73]], \"sentences\": [\"A man stands on a tennis court preparing to serve the ball.\", \" The man hits the tennis ball across the court.\", \" The man turns and walks back to his basket and grabs a ball from his pocket.\", \" The man bounces the ball on the ground.\"]}, \"v_86sxvTk3YEY\": {\"duration\": 225.63, \"timestamps\": [[0, 42.87], [42.87, 99.28], [99.28, 197.43], [197.43, 225.63]], \"sentences\": [\"An actor,Jason Stathom,is sitting in a blue reclining chair talking a late night tv host by the name of Jimmy Fallon who is sitting behind a desk.\", \"The two continue to speak then they both stand up in a joking manner and walk over to a table.\", \"They both stand at the ends of the table and begin arm wrestling and talking.\", \"After a long period of time passes,the actor wins and starts cheering for himself.\"]}, \"v_AntmYynwbhQ\": {\"duration\": 122.81, \"timestamps\": [[0, 28.25], [25.79, 122.81]], \"sentences\": [\"A woman in white shirt is posing with her short hair.\", \" A man in white shirt is cutting the hair of the girl in  a studio with white background, then he braided the back of her hair, then continue to cut and style the girl's hair.\"]}, \"v_VXiaPftjWqQ\": {\"duration\": 220.2, \"timestamps\": [[0, 107.9], [105.69, 220.2]], \"sentences\": [\"A man is seen kneeling down on a floor followed by shots of him putting plaster and tiles down are shown.\", \" He then drills into a bucket and lays plaster down, as well as placing tiles on the floor yet again and showing more shots of him working in the end.\"]}, \"v_osaJxzwVt6Q\": {\"duration\": 98.85, \"timestamps\": [[0.99, 98.85], [0, 98.85], [0, 98.35]], \"sentences\": [\"kid is standing in front of stage playing congas.\", \" behind him is a girl playing the tambourine and a boy playing the triangle.\", \" in the background kids standing on stage are playing drums.\"]}, \"v_4_yy5vswBn4\": {\"duration\": 116.36, \"timestamps\": [[0, 4.65], [7.56, 18.62], [18.04, 20.94], [22.69, 116.36]], \"sentences\": [\"A man is sitting at a table.\", \" A woman steps onto the table and falls into his arms.\", \" She does a back flip off of him onto the floor.\", \" They begin dancing on the dance floor.\"]}, \"v_LkwkGj27pP8\": {\"duration\": 27.91, \"timestamps\": [[0.42, 13.12], [9.35, 26.24]], \"sentences\": [\"A man is seen leaning onto a fence and continuously bending down to dip paint into a bucket.\", \" The woman brushes the fence continuously in front of her while the camera captures her from behind.\"]}, \"v_rKnQNI9PNFI\": {\"duration\": 159.55, \"timestamps\": [[0, 2.39], [2.39, 14.36], [15.16, 125.24], [125.24, 151.57], [151.57, 159.55]], \"sentences\": [\"We see an opening title screen.\", \" We see a newscaster speak.\", \" We see a man in a room then a fight and men in an office before more fighting in an action movie.\", \" We return to the newscaster as she discusses a superhero movie.\", \" Her screen changes to the title screen.\"]}, \"v_8tI9IsSpgeI\": {\"duration\": 21.69, \"timestamps\": [[0, 14.53], [15.4, 21.69]], \"sentences\": [\"A man lifts  large weight off the ground.\", \" He pushes it over his head before dropping it on the ground.\"]}, \"v_D99jYbtGO38\": {\"duration\": 8.8, \"timestamps\": [[0, 3.43], [4.66, 7.61]], \"sentences\": [\"A man throws a ball to his son, who catches it with a lacrosse stick.\", \" The boy flings it back and it sails to the right of the man.\"]}, \"v_sV6JEbmqDUw\": {\"duration\": 57.56, \"timestamps\": [[0, 12.66], [12.09, 22.45], [23.31, 57.56]], \"sentences\": [\"A woman is shown from various angles moving on an exercise machine and leads into the earth revolving.\", \" She places an item on the machine and several pictures of health are shown.\", \" She is again on the machine riding and finally folds up the machine in the end.\"]}, \"v_rvkVdD2u_yA\": {\"duration\": 36.53, \"timestamps\": [[0, 4.02], [6.03, 12.97], [14.79, 36.53]], \"sentences\": [\"A man is talking in front of a net.\", \" He crouches down to the floor, crossing his ankles.\", \" He then goes forward and back several times, stretching.\"]}, \"v_fsz79uPkUSs\": {\"duration\": 199.18, \"timestamps\": [[0, 16.93], [16.93, 62.74], [62.74, 139.43], [139.43, 199.18]], \"sentences\": [\"A toddler is sitting down in front of a table,with her play make up laid out on the table.\", \"She then takes her foundation and puts it around her face.\", \"Next comes her eye shadow,then her lips but she ends up dropping it on the floor and has to go under the table to get it.\", \"Finally,she comes back and adds the finishing touches on her lips,she finishes off her lips and adds more color to her cheeks.\"]}, \"v_UOswYEzeJ-M\": {\"duration\": 85.33, \"timestamps\": [[0, 20.48], [22.19, 60.16], [61.87, 85.33]], \"sentences\": [\"A group of boys are playing ball on a court.\", \" They are being guided by their coach.\", \" They run with the balls, trying to make baskets.\"]}, \"v_oKdzcTnENks\": {\"duration\": 32.16, \"timestamps\": [[0, 7.56], [7.4, 11.26], [11.26, 17.21], [17.04, 22.19], [22.03, 32.16]], \"sentences\": [\"A little boy is playing hop scotch on the pavement.\", \" There is a truck behind him.\", \" He doesn't really play it right.\", \" He jumps on all of the numbers.\", \" He kind of runs through the game.\"]}, \"v_PQBeNLSdugw\": {\"duration\": 96.32, \"timestamps\": [[0, 17.34], [17.34, 24.08], [24.08, 34.67], [34.67, 70.31], [70.79, 96.32]], \"sentences\": [\"Young boys are shown doing a karate demo in front of the judges.\", \" They move back and forth and front to back performing various punches.\", \" They then relax and take a bow while the people behind them clap.\", \" They then continue on with their routine of play fighting.\", \" This continues on until the boy finish their routine to applause and then sit down.\"]}, \"v_ARkMGkD2RDs\": {\"duration\": 41.43, \"timestamps\": [[0, 9.11], [9.32, 17.81], [18.02, 27.75], [27.75, 41.43]], \"sentences\": [\"A dumbell appears on screen with the words \\\"Catalyst Athletics\\\" overlaid.\", \" A man lifts weights over his head in a gym.\", \"  A woman then lifts weights over her head.\", \" A \\\"Catalyst Athletics\\\" logo appears with social media links.\"]}, \"v_E0xXymnjDkc\": {\"duration\": 56.12, \"timestamps\": [[0, 56.12], [0, 4.49], [8.14, 9.54]], \"sentences\": [\"People are standing outside playing volleyball.\", \" A man in a black shirt is talking to someone.\", \" A man in a gray shirt has his hands on his hips.\"]}, \"v_ujiWstJ3tt0\": {\"duration\": 58.38, \"timestamps\": [[0, 17.51], [17.22, 44.95], [44.95, 58.38]], \"sentences\": [\"A man is kneeling down on the ground sanding a wall with a silver utensil.\", \"The man stands up,looks back at the camera and continues doing his task.\", \"Now the man is back on his knees and continues to do what he was doing in the beginning.\"]}, \"v_r34VM4v0ShI\": {\"duration\": 136.4, \"timestamps\": [[0, 8.87], [8.87, 67.52], [67.52, 76.38], [77.06, 92.07], [92.07, 95.48], [98.2, 132.98], [126.16, 131.62]], \"sentences\": [\"Some supplies needed to shine shoes are shown.\", \" An older man shines a shoe and talks about how he shines shoes and how he learned to shine shoes as a child.\", \" The same man is shown shining another mans shoes.\", \" The same man shines shoes in a shop while other people sit or walk around.\", \" An old black and white photo is shown of a barber shop.\", \" The older man shines another shoe and talks about shining shoes.\", \" A different man is seen in the background walking away.\"]}, \"v_ABmZdlZEZOY\": {\"duration\": 187.54, \"timestamps\": [[0, 137.84], [135.03, 187.54]], \"sentences\": [\"An intro leads into several shots of divers moving around the ocean and passing various fish and items under water.\", \" The diver comes above the water holding a tank and spins around while the camera follows.\"]}, \"v_8Qg395HjqFg\": {\"duration\": 165.86, \"timestamps\": [[0, 24.05], [33.17, 48.93], [48.1, 71.32], [72.98, 113.61], [112.79, 134.35], [153.42, 160.89]], \"sentences\": [\"A man in a white jacket picks up an iron.\", \" He places tin foil down onto a table.\", \" He puts bread on the tin foil with butter and cheese.\", \" He puts the iron on the sandwich.\", \" He opens the tin foil and cuts the sandwich in half.\", \" He takes a bit of the sandwich.\"]}, \"v_zSCZphJS2vA\": {\"duration\": 96.94, \"timestamps\": [[1.45, 55.74], [32.96, 96.46]], \"sentences\": [\"An athlete is seen walking up to a platform and begins spinning himself around and throwing an object off into the distance.\", \" His throw is shown again in slow motion and another man is seen spinning around then throwing the object with his hands up afterwards.\"]}, \"v_Z7gECmnHeKk\": {\"duration\": 69.66, \"timestamps\": [[0, 32.39], [27.52, 69.66]], \"sentences\": [\"A man is seen sitting on a piece of exercise equipment and rowing himself back and fourth on a machine.\", \" The man continues moving himself back and fourth as the camera captures him from several angles.\"]}, \"v_-C1nnsyw7R0\": {\"duration\": 133.56, \"timestamps\": [[0, 21.37], [21.37, 24.71], [24.04, 60.77], [60.77, 79.47], [79.47, 133.56]], \"sentences\": [\"man is standing in a racetrack and is running to make a jump and people is standing around him.\", \" man is sitting in a room talking to the camera.\", \" man is running in a racetrack and jumping in the dust and man is sitting in a room talking.\", \" players are running playing american football and spectators are in the terraces.\", \" old man is talking in the room and the man in the race track is running and practicing the jump.\"]}, \"v_zUuT2FBf-Oc\": {\"duration\": 35.99, \"timestamps\": [[0, 20.87], [21.95, 35.99]], \"sentences\": [\"Two large pieces of decorated construction paper are shown with the words Happy Birthday all over them.\", \"  We then see presents wrapped with the same wording.\"]}, \"v_TSVDMiy_FC4\": {\"duration\": 113.43, \"timestamps\": [[0, 56.72], [30.06, 113.43]], \"sentences\": [\"A close up pair of shoes is shown followed by various text instructions and tools laid out.\", \" A person is then seen rubbing down the show with a rag using several ingredients and zooming in on the clean pair of shoes.\"]}, \"v_iPU4muYW14Y\": {\"duration\": 180.26, \"timestamps\": [[0, 28.84], [34.25, 115.36], [118.07, 180.26]], \"sentences\": [\"A woman is standing on a wooden floor.\", \" She is raising and lowering her arms, changing to different positions.\", \" She is displaying acts of tai chai for the camera.\"]}, \"v_mEjU4uJZccw\": {\"duration\": 69.45, \"timestamps\": [[0, 3.82], [5.21, 23.27], [35.07, 69.45]], \"sentences\": [\"a man is shown on a stage, playing a set of drums.\", \" The woman to one side is playing maracas.\", \" The man on the other side is playing an electric guitar.\"]}, \"v_kXCtmH4V0TI\": {\"duration\": 12.59, \"timestamps\": [[0, 3.27], [3.21, 7.93], [7.99, 10.01], [10.07, 12.59]], \"sentences\": [\"A man is shown entering a circular caged area with one side open.\", \" The man begins rotating a ball that is attached to a string around him.\", \" The man begins spinning his body quickly in circles.\", \" The man lets go of the string and the ball flies through the air.\"]}, \"v_uqT5jtfx8x0\": {\"duration\": 69.94, \"timestamps\": [[0, 45.81], [46.16, 48.26], [48.26, 68.19]], \"sentences\": [\"Two teams play polo holding poles to kick a ball on front a crowd in a field.\", \" People stand next to the scores boards.\", \" Then, a player get up the stage to receives a trophy, after a woman kiss the winner and other players on stage, and all rise the trophy.\"]}, \"v_HXn5ZpSEMqg\": {\"duration\": 111.31, \"timestamps\": [[0, 6.12], [6.12, 33.39], [33.39, 57.32], [62.33, 79.03], [80.14, 95.72], [95.72, 111.31]], \"sentences\": [\"We see the opening title screen.\", \" A man hold up a bench and opens the parts so he can set it up.\", \" He sticks a pin in and snaps his ski in.\", \" He then waxes the ski and removes the pin.\", \" He adjusts the parts of the bench.\", \" We see the bench in shots with the end credits.\"]}, \"v_x--RoqrwiLI\": {\"duration\": 132.15, \"timestamps\": [[9.91, 132.15], [10.57, 29.07], [30.39, 113.64]], \"sentences\": [\"A man in a large green field practices over seven hammer throws in the field with a measuring tape in front of him stretched along the ground.\", \"  A bare chested man in black track pants spins a hammer throw around and around until he releases into a field in front of him.\", \"  The man then goes on to perform at least six more hammer throws in the same way in the same location.\"]}, \"v_JgfVp6Estgw\": {\"duration\": 186.29, \"timestamps\": [[0, 56.82], [51.23, 139.72], [145.31, 186.29]], \"sentences\": [\"Various shots of landscapes are shown including deer heads and tree houses and leads into a man shooting a bow and arrow.\", \" He hits the stuffed animal and leads into more shots of him and another using the bow and arrow.\", \" The camera pans around areas that they hit and shows one man walking away.\"]}, \"v_Y34oqcxYmWc\": {\"duration\": 219.57, \"timestamps\": [[14.27, 169.07], [170.17, 194.32], [191.02, 211.88]], \"sentences\": [\"A man and a woman are dancing on a dance floor in front of a crowd of people.\", \" The crowd applauds for them.\", \" The couple hugs and bows for the crowd.\"]}, \"v_X1E7i3ocxKY\": {\"duration\": 213.72, \"timestamps\": [[0, 26.71], [34.19, 161.36], [174.18, 213.72]], \"sentences\": [\"A tattoo parlor is shown from the outside then inside.\", \" An array of tattoo choices are shown on a wall.\", \" An artist is shown drawing and coloring in tattoos on a piece of paper.\"]}, \"v_JkcoGLKl_0A\": {\"duration\": 30.05, \"timestamps\": [[0, 30.05], [1.5, 15.62], [25.54, 29.3]], \"sentences\": [\"A baby is riding a swing in the playground.\", \" A hand pushs her while she enjoys the ride.\", \" The man starts to play with her.\"]}, \"v_6okx-34bDEg\": {\"duration\": 49.78, \"timestamps\": [[0, 12.69], [13.19, 35.6], [35.84, 39.08]], \"sentences\": [\"People run in a marathon in the street.\", \" A man head the race and run alone in the street.\", \" Suddenly, the man crashes into the car and falls.\"]}, \"v_CmS2nSm5n2Q\": {\"duration\": 232.36, \"timestamps\": [[0, 17.43], [22.07, 46.47], [44.15, 61.58], [36.02, 58.09], [58.09, 133.61], [84.81, 177.76], [159.17, 183.57], [182.4, 219.58]], \"sentences\": [\"There's a man in a blue shirt walking into a tall building where there's an indoor fencing arena.\", \" He walks into the arena and talks with two fencers.\", \" One of the fencers puts on a fencing suit on the man.\", \" The fencer then demonstrates and gives the man a lesson in fencing.\", \" He shows the man the various skills involved in fencing.\", \" The man is able to miss and evade every move of the fencer as he goes untouched by the sword.\", \" Then both the fencers remove their masks and shake hands.\", \" The fencer talks about his experience with the master fencer.\"]}, \"v_sJUUm0n4cXA\": {\"duration\": 201.06, \"timestamps\": [[0, 86.46], [86.46, 178.95], [178.95, 201.06]], \"sentences\": [\"A game of lacrosse begins and a boy by the name of Chase Madrid is highlights making scenes throughout the game.\", \"Several different games begin and a yellow circle is drawn around him for each play when he is running back and forth.\", \"When the highlight reel is finished,a black screen appears and shows the High School as well as the name for the player.\"]}, \"v_8v2sAylgkgc\": {\"duration\": 63.41, \"timestamps\": [[0, 32.34], [39, 63.41]], \"sentences\": [\"A man is at a park, where he and his wife, who is holding a baby, push two small children on the swings.\", \" The woman disappears as the man continues to push.\"]}, \"v_Kcy0A0DuckE\": {\"duration\": 118.56, \"timestamps\": [[0, 39.13], [36.16, 84.77], [68.17, 114.41]], \"sentences\": [\"A small group of kids are seen moving around a gymnasium throwing balls around.\", \" The kids throw the balls to one another while playing a game.\", \" The game continues on while the kids jump and down.\"]}, \"v_A0F6uT95xhA\": {\"duration\": 76.65, \"timestamps\": [[16.48, 76.65], [16.48, 75.5]], \"sentences\": [\"A man dances in in a big room.\", \" As he does the dance he explains how to do it.\"]}, \"v_3S_aifr5rG4\": {\"duration\": 148.98, \"timestamps\": [[0, 5.96], [26.82, 29.05], [26.82, 148.98]], \"sentences\": [\"These horses are walking in a grassy area by themselves and then a woman is shown brushing the horse's hair.\", \" The camera zooms in to shows the horse' nose and then the woman climbs onto the horse's saddle to ride it somewhere.\", \" Then two other people are hsown riding the horse's in different settings.\"]}, \"v_DIATqGGmG2g\": {\"duration\": 187.46, \"timestamps\": [[0, 36.55], [36.55, 85.29], [85.29, 135.9], [135.9, 187.46]], \"sentences\": [\"Two girls are siting outside talking with there feet crossed.\", \" One of the girls hands the other a container which she pulls a little paper out of that tells her what to do.\", \" She reads it and then does what the paper says to do.\", \" They take turns doing this, picking a note and then doing the task it says to do and they are having fun while doing so.\"]}, \"v_FRoL-CpfbJ4\": {\"duration\": 209.54, \"timestamps\": [[0, 8.38], [8.38, 24.1], [25.14, 209.54]], \"sentences\": [\"Water splashing on a watch tower.\", \" People sitting on the beach in a boat.\", \" music plays in the background as different people are sailing during different clips.\"]}, \"v_RBkieLmOUlQ\": {\"duration\": 36.78, \"timestamps\": [[0, 2.39], [1.47, 35.13], [24.46, 29.24]], \"sentences\": [\"Two boys in karate pants wrestle one another in the background.\", \" The group forms a circle and two of the boys begin to spar in a martial arts practice.\", \" the boy in pink top does a spinning kick.\"]}, \"v_-l5e1zVzQOQ\": {\"duration\": 138.79, \"timestamps\": [[0, 138.79], [9.72, 138.79], [23.59, 138.79], [54.82, 138.79]], \"sentences\": [\"A band plays music on stage.\", \" A man plays the drums intensely.\", \" A large screen shows the band above.\", \" People play the guitar on the stage.\"]}, \"v_vr7iD3pjmSU\": {\"duration\": 79.37, \"timestamps\": [[0, 64.68], [65.87, 75]], \"sentences\": [\"An archery competition montage video shows pitched battles taking place in fields, convention halls of hotels, indoor arenas, and warehouses.\", \" A logo for Archery Tag appears and an ad plays for another video and subscription.\"]}, \"v_ZVMGA4oF6xo\": {\"duration\": 107.14, \"timestamps\": [[0, 31.61], [27.32, 107.14]], \"sentences\": [\"A balded man is seen talking to a camera while rubbing his head and making grimace faces.\", \" He continues speaking to the camera and the video ends with him waving and shutting the camera off.\"]}, \"v_t6Hc2tHRrs4\": {\"duration\": 120.42, \"timestamps\": [[0, 6.62], [9.63, 98.74], [102.36, 120.42]], \"sentences\": [\"A group is shown together and racing on bmx bikes in a series of photos.\", \" Then we see people on bikes, performing stunts, going around a ring and jumping hills.\", \" A biker flies through the air, then we see a final photo of the winners with their medals.\"]}, \"v_HmqRZ4HPu1U\": {\"duration\": 32.86, \"timestamps\": [[0, 2.96], [2.96, 32.86], [23.33, 27.44]], \"sentences\": [\"A man in a yard starts his lawn mower.\", \" The man mows his lawn with headphones on his ears as his dog walks around the yard.\", \" the dog runs to get out of the way of the lawn mower and leaves the scene.\"]}, \"v_fVzpG-QQ1n8\": {\"duration\": 179.93, \"timestamps\": [[0, 62.08], [32.39, 132.25], [128.65, 179.93]], \"sentences\": [\"A cat is seen licking itself on a bed while a person continuously attempts to cut it's claws.\", \" The person scratches the cat while it continues to lick itself and attempts again to cut it's claws.\", \" Finally the person plays with the cat and the car continues licking.\"]}, \"v_KgfKmcsEMK0\": {\"duration\": 21.2, \"timestamps\": [[0, 21.2], [4.03, 6.68], [2.97, 13.78]], \"sentences\": [\"A guy is shaving a male's leg.\", \" The male laughs and messes with his shorts.\", \" The guy rinses the razor in a blue bowl full with soapy liquid.\"]}, \"v_BadeHG8y4PQ\": {\"duration\": 126.48, \"timestamps\": [[0, 49.33], [51.22, 126.48]], \"sentences\": [\"A man is holding a volleyball while standing on a court and speaking.\", \" Female players train and practice behind him while he speaks.\"]}, \"v_X2GUUIGudxs\": {\"duration\": 188.04, \"timestamps\": [[0, 188.04], [7.52, 188.04], [35.73, 110], [78.03, 111.88]], \"sentences\": [\"A man stands in a room wearing blue.\", \" He is applying a picture to the wall.\", \" He uses a tool to smooth it out.\", \" He cuts the paper at the bottom.\"]}, \"v_rVqeQ9D7EWo\": {\"duration\": 232.5, \"timestamps\": [[5.81, 222.04], [20.93, 165.08], [161.59, 222.04]], \"sentences\": [\"A man is standing outside a trailer.\", \" He begins to shovel snow in front of the trailer.\", \" He puts the snow shovel in the snow and continues talking.\"]}, \"v_PlUAKvaRd8s\": {\"duration\": 29.12, \"timestamps\": [[0, 8.44], [8.74, 21.69], [20.09, 27.66]], \"sentences\": [\"A small child is seen sitting in a tube while others stand around him.\", \" The boy then begins riding down a snowy hill in the tube.\", \" The boy continues to ride until he reaches the bottom.\"]}, \"v_TV8putYbiCU\": {\"duration\": 123.55, \"timestamps\": [[0, 33.98], [34.6, 42.01], [43.24, 53.13], [53.75, 89.58], [90.19, 107.49], [107.49, 117.99], [118.61, 123.55]], \"sentences\": [\"A woman stands by a sink as she speaks.\", \" She turns on the faucet and wets the sink.\", \" She sprays the sink with a cleaner.\", \" She grabs a paper towel and wipes the sink.\", \" She turns on the water and wets the sink.\", \" She grabs another paper towel and wipes the sink.\", \" She finishes wiping the sink and speaks.\"]}, \"v_JFGJYIZ7ONE\": {\"duration\": 156.26, \"timestamps\": [[0, 32.03], [33.6, 90.63], [93.76, 156.26]], \"sentences\": [\"A team is playing basketball against another team.\", \" They chase the ball all over the court.\", \" They try to keep the ball away from their opponent, making baskets as they go.\"]}, \"v_5I5xXW25OXs\": {\"duration\": 23.85, \"timestamps\": [[0, 4.05], [4.53, 23.85]], \"sentences\": [\"Two men getting ready for a contest by doing paper scissors rocks to see who goes first.\", \" The men cross their arms and began drinking the liquids during the contest.\"]}, \"v_vl7OBBTv7KY\": {\"duration\": 235.15, \"timestamps\": [[0, 21.16], [21.16, 78.77], [78.77, 105.82], [105.82, 235.15]], \"sentences\": [\"an oreo cheesecake is on top of a table.\", \" oreos are in a bowl and the cooker is crushing them and melted butter and mixing and put it in a pan.\", \" whipping cream is meled in a bowl and beat until double its volume.\", \" in other bowl a cream cheese is mixed with sugar and vanilla and break oreo cookies in a bowl and mix it together and then drop it in the pan and top it off with oreo cookies.\"]}, \"v_J_CqwWJZTh4\": {\"duration\": 202.57999999999998, \"timestamps\": [[3.04, 88.12], [55.71, 161.05], [174.22, 199.55]], \"sentences\": [\"A woman is seen speaking into a microphone and leads into her throwing darts at a person's head after spinning.\", \" The person wears a pumpkin head and more people are seen attempting to throw darts.\", \" In the end the man takes the pumpkin off of his head.\"]}, \"v_AR-VPPtV7ag\": {\"duration\": 18.02, \"timestamps\": [[0, 6.49], [6.22, 16.67]], \"sentences\": [\"A man is shown sitting down in front of a tree shuffling cards when someone hands him a drink.\", \" He then chugs the drink very quickly and points to the one who threw the drink.\"]}, \"v_FaiSWZFSHSE\": {\"duration\": 180.51, \"timestamps\": [[0, 49.64], [49.64, 137.19], [137.19, 180.51]], \"sentences\": [\"Several images of a bakery and a chef are shown and then a little animate guy comes along showing what the video will be about.\", \"A real chef then appears and begins cutting small layers of cakes and adding them together.\", \"Once all the layers of the cake are cut out and iced together,the fondant is placed on the cake as well as the icing and the desert is complete.\"]}, \"v_KzK4sf7RmRM\": {\"duration\": 147.24, \"timestamps\": [[0, 27.24], [27.98, 80.24], [80.98, 117.79], [117.05, 147.24]], \"sentences\": [\"Bags of icing are sitting on a counter.\", \" Someone puts the icing in cake and muffin pans.\", \" They bake them in the oven.\", \" They put them on a plate and start to ice them.\"]}, \"v_brSp5DB7OLs\": {\"duration\": 67.52, \"timestamps\": [[0, 10.13], [10.8, 18.57], [18.23, 25.32], [25.32, 33.76], [33.42, 49.63], [49.63, 67.52]], \"sentences\": [\"A young girl is shown taking wet clothes our of a bucket.\", \" Several people are around her washing clothes and tending to them.\", \" She looks back at the camera and seems to be having fun.\", \" A young boy jumps in front of the camera and is smiling.\", \" The little girls continue rinsing the clothes in the bucket as the young boy turns his back to the camera.\", \" The young girl continues on with her work and is shown being very focused in her task.\"]}, \"v_t2zLJ5mKTT8\": {\"duration\": 85.31, \"timestamps\": [[0, 3.41], [4.69, 78.49], [73.37, 77.21], [78.06, 85.31]], \"sentences\": [\"Water falls as a man stand on a jet ski.\", \" We see the man jet skiing and performing jumps on a lake.\", \" The man skis with his hand in the water as he bends down.\", \" We see the boat pass us with the skier in the air.\"]}, \"v_Np43Q2E8GCE\": {\"duration\": 15.58, \"timestamps\": [[0.08, 3.19], [2.88, 15.58]], \"sentences\": [\"Two women and a man are walking in the hallway looking at the carpets on display.\", \" A red van driven by a man passed, then a man walked towards the house, then a man is crouching on the carpeted floor cutting a piece or brown carpet, iron the carpet, press the carpet with heavy metal.\"]}, \"v_0XRZ2F5B7fQ\": {\"duration\": 61.53, \"timestamps\": [[0.31, 60.92], [0.62, 28.31], [28.92, 32.61], [32.3, 60.92]], \"sentences\": [\"A man and a woman scrape frost off of a parked car's windows, windshield and wiper blades while a second woman talks to them from the side of the car in the snow.\", \" A man in a long black wool coat scrapes ice off of a blue car's windshield while a woman in a black fur collared coat talks to him from the side of the car.\", \"  A second woman begins wiping snow off of the car's windshield wipers while talking to the woman in the fur hooded coat.\", \"  The man gets in the back seat of the car and shuts the door behind him while the woman in the fur hooded coat waves at the other woman who is moving towards the drivers side car door.\"]}, \"v_juP0cn5B60Y\": {\"duration\": 71.1, \"timestamps\": [[0.71, 27.73], [24.89, 50.48], [43.02, 67.9]], \"sentences\": [\"A woman is seen speaking to the camera while shots of homes are shown.\", \" People are then seen grooming dogs and holding up awards.\", \" The woman continues speaking to the camera while the dogs continue to be groomed behind her.\"]}, \"v_HGK_K2XqhTA\": {\"duration\": 95.89, \"timestamps\": [[0, 7.19], [7.19, 32.12], [33.08, 54.18], [54.18, 95.89]], \"sentences\": [\"A teen shakes his hand on front a glass of water while a youth watch him.\", \" Then, the teen takes the glass shaking his hand and drinks the water while the laugh.\", \" After, the youth takes the glass, then holds a cup while the teen fold his right hand.\", \" Next, the teen takes a cup and pretend to drink while making gestures of pain.\"]}, \"v_FK73jqIGUzE\": {\"duration\": 17.3, \"timestamps\": [[0, 13.41], [13.49, 17.3]], \"sentences\": [\"A boy welds on a piece of metal making sparkles.\", \" Then, the boy raise his helmet and talks.\"]}, \"v_AhWkUdag6NA\": {\"duration\": 136.32999999999998, \"timestamps\": [[0, 10.22], [16.36, 91.34], [94.06, 136.32]], \"sentences\": [\"A woman opens her mouth and smiles at the camera.\", \" People are going by, water sailing.\", \" They spin and turn in the water as they sail.\"]}, \"v_Cl0lsFUR5HE\": {\"duration\": 188.29, \"timestamps\": [[0, 10.36], [10.36, 60.25], [60.25, 147.81], [147.81, 188.29]], \"sentences\": [\"A vacant beach is visible and people began to pull their cars up against the coast.\", \"The sidewalk then appears and a boy begins to skateboard down the road near the beach.\", \"He continues doing tricks and skateboarding through the city passing people and cars.\", \"After a while,he sits down a takes a break and begins talking to another guy before he eventually gets back up to continue skateboarding.\"]}, \"v_GwIHO7HpGkY\": {\"duration\": 117.08, \"timestamps\": [[0, 16.39], [16.39, 56.2], [56.2, 63.81], [63.81, 70.25], [70.25, 117.08]], \"sentences\": [\"\\nA man is standing on ice holding a fishing pole in his right hand and there's a very small hole in the ice in front of him and he drops his hook into the hole and tugs on his pole.\", \" The man then pulls on the fishing wire a few times and stands there holding his fishing pole, moving it, and winding it from time to time.\", \"The end of the pole begins to bend and the man starts pulling the pole and winding it up and he pulls a fish out of the hole and it lands onto the ice.\", \" The man grabs the fish from the ice and puts it right back into the hole he just pulled it out from while it's still attached to the hook and his wire.\", \"The man then begins to pull on the fishing wire, pulls his pole up and and down a few times, and then adjusts the camera.\"]}, \"v_M2OoQFcDflU\": {\"duration\": 30.19, \"timestamps\": [[4.23, 6.34], [5.74, 11.62], [18.56, 21.43]], \"sentences\": [\"A tray of chips are shown on a table.\", \" A person is dealing cards onto the table.\", \" People sitting at the table give each other high fives.\"]}, \"v_dWBnXy2nauU\": {\"duration\": 30.3, \"timestamps\": [[0, 3.79], [3.94, 12.27], [12.42, 20.61], [20.76, 30.3]], \"sentences\": [\"The tile screen shows up with some names.\", \" A man starts throwing a shot-put several different times as names scroll at the bottom.\", \" A group can be seen behind watch him.\", \" A man is behind the last one thrown.\"]}, \"v_bmc11KqVbEE\": {\"duration\": 98.03, \"timestamps\": [[0, 7.35], [7.35, 32.35], [32.84, 88.22], [88.71, 98.03]], \"sentences\": [\"Words appear on the screen before it goes black.\", \" A man appears, using squeegees to wash a window in front of him while he speaks.\", \" He applies soap liberally before swiping it off with the rake.\", \" He stops cleaning the window, and says a few words in closing.\"]}, \"v_4fgIHu_Se3Q\": {\"duration\": 50.97, \"timestamps\": [[0, 11.98], [12.49, 45.62], [46.13, 50.97]], \"sentences\": [\"An athlete walks up to a beam.\", \" He mounts quickly, spinning and turning around it and jumping between the two bars several times.\", \" He finally dismounts, throwing his arms into the air before walking away.\"]}, \"v_fXdw7jwiP8g\": {\"duration\": 57.6, \"timestamps\": [[0, 6.91], [9.22, 39.17], [41.47, 57.6]], \"sentences\": [\"A woman in a black leotard is talking on a stage.\", \" She starts dancing for the camera.\", \" She shows several dance moves as she does them.\"]}, \"v_vULLe2qogZU\": {\"duration\": 8.34, \"timestamps\": [[0, 8.34], [4.04, 8.34]], \"sentences\": [\"Two people are playing a lacrosse game.\", \" They shoot at the goal and make the point.\"]}, \"v_Y39LnzOipck\": {\"duration\": 20.13, \"timestamps\": [[0.6, 8.35], [8.15, 19.53]], \"sentences\": [\"A man is seen standing and looking around and then cleans off a bowling ball and stands before a lane.\", \" The man throws the ball down and hits several pins.\"]}, \"v_qb_5_9xDYqc\": {\"duration\": 139.82, \"timestamps\": [[0, 13.28], [13.28, 58.03], [57.33, 139.82]], \"sentences\": [\"An African American male is standing outside next to a tall rock wall.\", \"The man continues touching the rock and begins stretching.\", \"After, he begins to actively and ferociously climb the wall and come down on the other side but he does it without any ropes attached to him.\"]}, \"v_0WRxp0X0edY\": {\"duration\": 159.24, \"timestamps\": [[0, 3.98], [3.98, 26.28], [26.28, 65.29], [65.29, 85.99], [86.79, 136.15], [136.95, 159.24]], \"sentences\": [\"A man and a woman anchor are talking behind a desk and several television.\", \"The woman is then shown alone and she begins talking.\", \"An ice rink then appears and a woman begins coaching a man about specific techniques for a game.\", \"She has a brief interview and continues coaching people on Curling.\", \"More people are in the gym and they continue curling and more instructors begin having interviews.\", \"Clips are shown from a real curling game and the people begin to wait against the wall.\"]}, \"v_r_n1PfHvKI4\": {\"duration\": 176.47, \"timestamps\": [[0, 10.59], [10.59, 43.24], [43.24, 176.47]], \"sentences\": [\"There is a field with a kite laying in it.\", \"  A man is preparing to fly the kite.\", \" The kite gets airborne and soars.\"]}, \"v_BUqr7or97JA\": {\"duration\": 52.96, \"timestamps\": [[0, 31.51], [32.04, 34.69], [20.39, 24.89], [34.69, 52.96]], \"sentences\": [\"A woman and a man performs arm wrestling.\", \" The man raise his t-shirt sleeve until the shoulder.\", \" A man walks in a room behind the wrestlers.\", \" The man bend the woman's arm, but the woman straight her arm and bend the arm of the man and win.\"]}, \"v_YL3MvJVk6u0\": {\"duration\": 45.91, \"timestamps\": [[0.23, 45.22], [0.23, 7.12], [36.04, 44.99]], \"sentences\": [\"A man prunes dead branches from fruit  bearing plant stems in the winter.\", \"  A man, in a field of dirt and fruit crops with bare branches from the winter, begins to prune dead branches from the fruit plants with a pruning tool and a hatchet.\", \"  An image of the plants in fruit bearing months appears before returning to the man in the field pruning the dead branches.\"]}, \"v_edbczrXeEOk\": {\"duration\": 86.53999999999999, \"timestamps\": [[0, 21.2], [22.07, 86.54]], \"sentences\": [\"A person is shown performing a dive off of a board while a couple people watch on the sidelines and clap.\", \" The person performs several more tricks off of the high dive while more people watch on the sides.\"]}, \"v_EZdnNs-5tlo\": {\"duration\": 156.94, \"timestamps\": [[10.99, 141.25], [15.69, 36.1], [56.5, 109.86]], \"sentences\": [\"Children drives bumper cars in a carnival.\", \" A little girl bumps on the wall and gets stuck with other cars, then the girl gets free and continues riding.\", \" The little girl get stuck with other children, then she gets free and then rides the bumper car.\"]}, \"v_1BWF1U1dJ_w\": {\"duration\": 105.91, \"timestamps\": [[1.06, 105.91], [0, 5.3], [5.82, 19.06], [19.59, 65.66], [65.66, 105.91]], \"sentences\": [\"A person demonstrates how to make a mini meat and cheese sandwich platter with garnish.\", \"  A large platter of prepared sandwiches displays.\", \" A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients include rolls and lunch meat.\", \"  A person is then seen putting a sandwich of cheese and meat together on white bread rolls with lettuce on a counter top.\", \" The person cuts the rolls apart to make individual sandwiches and then adds toothpicks and strawberries along with lettuce garnish to the platter which is then focused on by the camera as the finished product.\"]}, \"v_zruHn4r6_CY\": {\"duration\": 113.94, \"timestamps\": [[0, 0.57], [0, 113.94], [36.46, 46.72], [76.91, 79.76], [97.42, 101.41], [113.37, 113.94]], \"sentences\": [\"We see a sign with a mans' name.\", \" We see a man run and do a long jump on different tracks repeatedly with his name on a sign occasionally.\", \" We see the man on a blue track with ad signs.\", \" The man tumbles on his landing.\", \" The man lands on his back.\", \" The screen fades to black.\"]}, \"v_kqVIHq94kgs\": {\"duration\": 76.95, \"timestamps\": [[23.85, 32.32], [33.09, 38.48], [63.1, 63.87]], \"sentences\": [\"A woman mixes items together in a bowl.\", \" She rubs that onto a wooden table.\", \" She laughs and puts her hands in the air.\"]}, \"v_yDrTpm9c7MY\": {\"duration\": 80.43, \"timestamps\": [[0, 9.25], [9.25, 65.15], [65.55, 80.43]], \"sentences\": [\"woman is sitting on a wooden bench talking to the camera.\", \" woman is doing somersaults on a large green grassy field.\", \" woman is making a jump and slide and fell into the grass.\"]}, \"v_Ta70WnVT6Lc\": {\"duration\": 172.69, \"timestamps\": [[0, 172.69], [47.49, 172.69]], \"sentences\": [\"A video is shown of skateboarders at an outdoor skatepark.\", \"  Interviews are shown and then a few races are shown.\"]}, \"v_TEkIJQljABs\": {\"duration\": 56.82, \"timestamps\": [[0, 27.56], [19.6, 20.74], [26.99, 36.93], [36.36, 51.99], [51.42, 56.82]], \"sentences\": [\"A small child seated at a table eats ice cream with a spoon while people walk by in the background.\", \" A pair of adult hands briefly enter the camera frame in the foreground.\", \" The child inserts her spoon into her ice cream container on the table.\", \" The child complains about something.\", \" The camera zooms in on the ice cream.\"]}, \"v_RNA9HtKreug\": {\"duration\": 91.12, \"timestamps\": [[0, 30.07], [30.98, 48.29], [50.11, 91.12]], \"sentences\": [\"We see people putting electronics on a foosball table.\", \" We see the bars moving and then see two men sitting at the table.\", \" We see a group of people playing foosball in a narrow room.\"]}, \"v_Wgm-mYzdnxc\": {\"duration\": 32.69, \"timestamps\": [[0, 16.35], [16.84, 32.69]], \"sentences\": [\"A man is seen using a power drill in a large bowl filled with chocolate.\", \" Another person hands him a blender but the man continues using the drill in the bowl.\"]}, \"v_oLEagb_RGq8\": {\"duration\": 18.3, \"timestamps\": [[0, 4.3], [5.31, 14], [13.08, 17.57]], \"sentences\": [\"A young woman is seen standing behind a lawn mower in a yard.\", \" She begins pushing the lawn mower along the yard.\", \" She moves herself back on the lawn and looks into the camera.\"]}, \"v_i5K-DXt9djA\": {\"duration\": 164.9, \"timestamps\": [[0, 39.58], [42.05, 84.1], [86.57, 146.76], [147.58, 164.9]], \"sentences\": [\"A man and woman are riding bikes quickly down a paved street.\", \" they stop, pumping air into their tires.\", \" they then replace the tubes and get back on their bikes.\", \" They continue riding down the road.\"]}, \"v_bdDzTqaiB3E\": {\"duration\": 67.06, \"timestamps\": [[0, 9.39], [9.39, 34.87], [34.54, 50.97], [50.97, 67.06]], \"sentences\": [\"A woman is standing in the bathtub using the shower to wash her clothes.\", \" She kicks the clothes around and steps around and kind of dances on them.\", \" Her boyfriend is recording her and himself in the mirror.\", \" He continues to watch her as she steps on the clothed, and then he turns the camera to his mother.\"]}, \"v_1SouLWwpbvU\": {\"duration\": 130.82, \"timestamps\": [[0, 31.4], [31.4, 65.41], [65.41, 104.66], [105.31, 130.82]], \"sentences\": [\"Several people are in a small room dressed in work out clothes going up and and on the stair step.\", \"They then turn around and start to dance on the stair step and intensifying the workout.\", \"Midway through,the instructor gets off and walks around while the rest of the class continues.\", \"After,the grab the stair step,place it against the wall and come back to their spots for the remainder of the workout.\"]}, \"v_9ddD5Ob93J0\": {\"duration\": 112.46000000000001, \"timestamps\": [[0, 112.46], [12.93, 82.09], [82.09, 104.58], [104.58, 112.46]], \"sentences\": [\"Steven Richardson, a store manager, discusses the topic of tire care for vehicles with 4 wheel drive.\", \" He explains that mismatched tires on 4 wheel drive vehicles cause wear and tear.\", \" He recommend that all 4 tires should be replaced at the same time.\", \" He advertises the website belletire dot com and says to use it to find a location near you.\"]}, \"v_sNnNDCx6RRA\": {\"duration\": 178.01, \"timestamps\": [[0, 49.84], [51.62, 145.07], [114.81, 169.1]], \"sentences\": [\"A ballerina is seen walking out onto a stage and leads into her performing a ballet routine.\", \" The girl spins herself around on her shoes while the audience watches her.\", \" She continues spinning and twirling around and ends by holding a pose and bowing.\"]}, \"v_cJcr6kWylI8\": {\"duration\": 145.5, \"timestamps\": [[0, 29.83], [39.28, 94.57], [110.58, 134.58]], \"sentences\": [\"A barefoot man is touching up a piece of wood furniture with a brush.\", \" He then moves the piece around to show the scuffs and buffs them out with a brush.\", \" The man shows the cleaned edges with his fingers.\"]}, \"v_Wir90-9HmAI\": {\"duration\": 122.38, \"timestamps\": [[0, 18.97], [17.13, 100.97], [100.35, 122.38]], \"sentences\": [\"Two people are seen sitting at a table speaking with cups of coffees on the table in front of them.\", \" The man is then seen sitting alone in various locations and then begins dancing on a wall.\", \" He then is shown waking up in his bed assuming it was all a dream.\"]}, \"v_YptHsVTHquc\": {\"duration\": 170.48, \"timestamps\": [[1.7, 170.48], [14.49, 155.99], [49.44, 126.16], [118.48, 170.48]], \"sentences\": [\"A group of people are dancing around each other.\", \" A girl moves around with a hula hoop doing various movements.\", \" The People continuing dancing around her in various motions.\", \" The girl spins her hula hoop around her head.\"]}, \"v_rs7er4e67ec\": {\"duration\": 107.67, \"timestamps\": [[18.84, 32.84], [32.84, 49.53], [49.53, 64.6], [64.6, 97.98], [97.98, 107.67]], \"sentences\": [\"The video begins with details of a field hockey team's victory in the final championship game.\", \" The stadium shows the two teams competing in the game hockey.\", \" The crowd is loudly cheering as one team becomes victorious.\", \" The players jump on each other with joy as they celebrate.\", \" There is a stage of singers performing live music as they celebrate the victory of the winning team.\"]}, \"v_YcAs1-6SYb4\": {\"duration\": 233.9, \"timestamps\": [[0, 38.59], [46.78, 166.07], [168.4, 233.9]], \"sentences\": [\"A woman is standing with a ball on a string.\", \" She is in a competition for athletics.\", \" She swings the ball around numerous times, then legs go and cheers as it lands far into the field.\"]}, \"v_zvAlL20-K4w\": {\"duration\": 88.78999999999999, \"timestamps\": [[0.89, 30.19], [28.86, 68.82], [68.37, 87.02]], \"sentences\": [\"An athlete is seen standing ready in the middle of a small circle and then throws a shot put off into the distance.\", \" The man walks away shaking his arms and his throw is shown again several times.\", \" Several more athletes are shown stepping up to the platform throwing the shot put and ending with a man in a hat speaking to the audience.\"]}, \"v_XSfG1M-Ik_A\": {\"duration\": 51.99, \"timestamps\": [[0, 26.51], [26.51, 30.93], [31.71, 38.99], [39.25, 46.53], [47.05, 51.99]], \"sentences\": [\"A lady in a bra and panties grabs and throws a shotput.\", \" IT goes through a window on a house and a cat runs.\", \" The man looks outside and sees the lady.\", \" the lady uses a pole to pole vault into the second story window and jump on the man.\", \" We see the title screen and the man's pants fly out the window.\"]}, \"v_d6lajCxMhPE\": {\"duration\": 38.08, \"timestamps\": [[0, 30.66], [30.66, 37.89]], \"sentences\": [\"A person holding a broom cleans the floor back and forth.\", \" The person turn the broom to collect the dust.\"]}, \"v_SfFjpnTKG7s\": {\"duration\": 207.68, \"timestamps\": [[0, 201.45], [22.84, 85.15], [105.92, 185.87]], \"sentences\": [\"Athletes runs on an outdoors track of a field and pole vault during practice.\", \" An athlete runs and pole vaults during an Olympic competition in a stadium.\", \" Athletes make a practice jumps and dive under the rope and onto the mat.\"]}, \"v_mXM5FOi_OoM\": {\"duration\": 40.96, \"timestamps\": [[0, 22.94], [25.8, 40.96]], \"sentences\": [\"A man is seen outside in front of a porch pushing a mower back and fourth.\", \" He runs the mower along the grass and moves up and down the lawn.\"]}, \"v_yDWOqabreoU\": {\"duration\": 63.58, \"timestamps\": [[0, 6.04], [6.36, 16.21], [16.21, 22.89], [22.89, 28.61], [28.61, 44.82], [44.82, 63.58]], \"sentences\": [\"A girls has a pole and she is blindfolded.\", \"  She swings at a pinata and misses.\", \"  She steps closer and tries again, hitting it this time.\", \" She backs up as a dog comes into the picture.\", \" She keeps swinging at missing.\", \"  She stops for moment, takes a hard swing and hits it.\"]}, \"v_C1TWr5XH8b0\": {\"duration\": 92.22999999999999, \"timestamps\": [[0, 27.67], [19.83, 92.23]], \"sentences\": [\"Various text is shown across the screen and leads into a man speaking and more tools being shown.\", \" The man rubs the tools along his skin and points back and fourth to the vacuum while speaking.\"]}, \"v_A_SU2jjfMJk\": {\"duration\": 62.97, \"timestamps\": [[0, 1.89], [1.89, 60.14], [60.14, 62.97]], \"sentences\": [\"A person walks into the view of the camera where there is an orange toy laying on the floor.\", \" The person begins to wipe their feet vigorously on the toy.\", \" The person kicks the toy away as the they finish wiping their feet on the toy.\"]}, \"v_hj88A5tvA0Y\": {\"duration\": 192.52, \"timestamps\": [[5.78, 101.07], [61.61, 168.45]], \"sentences\": [\"Various people are seen walking around a beach leading into men tightening up a rope and bouncing on the rope.\", \" Several people perform many tricks and jumps on the rope while others stand and watch on the side.\"]}, \"v_tYyTrDyzB6o\": {\"duration\": 26.08, \"timestamps\": [[0, 9.52], [8.48, 20.73], [18.65, 25.43]], \"sentences\": [\"A person is seen riding in a tube down a river while the camera zooms in on a persons feet.\", \" The people in tubes ride past others in the water.\", \" More people are seen riding down the river in tubes.\"]}, \"v_yuYqFaAnTxI\": {\"duration\": 106.0, \"timestamps\": [[0.53, 100.7], [2.65, 19.61], [20.14, 105.47]], \"sentences\": [\"A series of clips of the same woman performing pole vaults at different professional athletic events plays.\", \" A woman holding a pole runs on a track toward a goal line and performs a pole vault in front of event onlookers and supporters.\", \" The woman is then shown at two more event performing the same pole vault surrounded by onlookers and score takers.\"]}, \"v_o8RIoxL9FDE\": {\"duration\": 23.41, \"timestamps\": [[4.1, 16.97], [4.1, 10.18], [10.18, 16.74]], \"sentences\": [\"A woman stands in front of a mirror and rinses her mouth before pulling her face close to the mirror and looking at her teeth from a close up angle.\", \"  A woman sits in front of a bathroom mirror squishing water in her mouth, as if rinsing her mouth.\", \"  The woman then spits the water into the sink and looks at her teeth very close in the mirror before the scene fades out.\"]}, \"v_mBsIWxXJPY0\": {\"duration\": 209.38, \"timestamps\": [[0, 209.38], [50.25, 54.44], [74.33, 81.66], [131.91, 151.8], [172.73, 209.38]], \"sentences\": [\"We see people on skis falling hard.\", \" We see a person fly into a snow pile.\", \" A person skis and falls as they jump across a street.\", \" A person on skis is holding a line and falls then a person in white crashes into another and they both fall.\", \" A snowboarder can't hold the line and knocks over a person helping and falls himself.\"]}, \"v_dJAZplo9ke0\": {\"duration\": 30.7, \"timestamps\": [[0, 4.45], [5.53, 25.48], [26.09, 30.7]], \"sentences\": [\"A river surrounded by rocks apperas.\", \" Several people are floating through it in intertubes.\", \" They float down the river together through the rapids.\"]}, \"v_f025sQGYfJM\": {\"duration\": 200.06, \"timestamps\": [[1, 56.02], [41.01, 139.04], [94.03, 195.06], [135.04, 195.06]], \"sentences\": [\"A man and a man in green shirt is decorating the Christmas tree with his kid in gray shirt, they are putting the decorations while the woman is sitting on a chair by the tree and put the decors on the blue table.\", \" The lady helped the man and child to hang the decor in the Christmas tree, the man handed some decorations to the lady and she put it on the tree.\", \" The woman sat on the chair to arrange the christmas ball on the table, and helped them with the decorations.\", \" A lady in black top put more decorations to the christmas tree.\"]}, \"v_WEohpavjsIY\": {\"duration\": 136.37, \"timestamps\": [[0, 27.96], [27.27, 36.14], [40.23, 99.55], [98.87, 118.64], [120.69, 136.37]], \"sentences\": [\"A pair of dancer begins preforming at the latin dance cup.\", \" The woman shows off cleavage.\", \" The dancers begin spinning around each other.\", \" The dancers begin to preform seperately.\", \" The dancers begins moving again together for a big finish.\"]}, \"v_XSnPmf41ToA\": {\"duration\": 78.41, \"timestamps\": [[0, 10.98], [12.15, 24.7], [27.84, 78.41]], \"sentences\": [\"A woman slaps her cheek as she prepares on a field.\", \" She swings a ball around several times.\", \" She lets go, letting the ball fly through the air.\"]}, \"v_Po3-9ktM5Do\": {\"duration\": 148.68, \"timestamps\": [[15.61, 47.58], [47.58, 75.83], [75.83, 124.15], [124.15, 133.81], [133.81, 141.24]], \"sentences\": [\"A woman wearing a black top and with curly brown hair and bronze highlights is demonstrating how to use a diffuser to dry hair.\", \" She is using the blow dryer on medium heat to dry her hair.\", \" She blow dries the curls till the moisture from the hair is gone.\", \" After she's done using the blow dryer, she uses a wide tooth comb to comb through her curls.\", \" She then poofs up her hair and shows off her luscious curls.\"]}, \"v_3EuY86B4uTo\": {\"duration\": 204.84, \"timestamps\": [[0, 57.35], [91.15, 204.84]], \"sentences\": [\"A helicopter flies in some people who then start playing paintball.\", \"  They run around obstacles and have a great time.\"]}, \"v_cgWhl3ZDuTQ\": {\"duration\": 139.01, \"timestamps\": [[2.09, 77.84], [77.84, 91.05], [91.05, 95.92], [98, 111.9], [111.21, 116.77], [120.24, 136.92], [136.92, 139.01]], \"sentences\": [\"A series of athletes are shown participating in a discus throw competition before a crowd.\", \" The crowd applauds the athletes as a man hands out prizes to the athletes.\", \" Journalists surround the athletes with cameras.\", \" More discus throw performances are shown.\", \" A camera crew focuses on a sweaty seated athlete.\", \" Yet another performance of discus throw is shown.\", \" Three people sit talking in front of an audience.\"]}, \"v_nnUYbsoLNqo\": {\"duration\": 195.03, \"timestamps\": [[3.9, 195.02], [42.91, 195.02]], \"sentences\": [\"The start of a race is shown as people run by and the finish is also shown.\", \"  People in costumes are shown and people are generally having a great time.\"]}, \"v_NEthbdTgx-M\": {\"duration\": 237.52, \"timestamps\": [[0, 54.63], [48.69, 193.58], [198.33, 237.52]], \"sentences\": [\"An intro leads into several shots of people riding down snowy hills and climbing up the side.\", \" Two people speak to the camera and show more shots of them climbing a mountain and various shots of the mountain.\", \" The people then ride around on skis while still speaking to the camera and show several shots of them riding down the snowy mountain.\"]}, \"v_aJsDVKt5Igs\": {\"duration\": 42.61, \"timestamps\": [[0, 8.1], [10.23, 34.73], [35.58, 42.61]], \"sentences\": [\"Two women and a little girl are walking outdoors, showing the little girl a group of boys in the distance.\", \" They throw a ball, and the girl kicks it before being led to a base.\", \" The group gathers together to congratulate her.\"]}, \"v_E50d5qFvzOI\": {\"duration\": 164.28, \"timestamps\": [[0, 38.61], [35.32, 84.61], [84.61, 156.07]], \"sentences\": [\"A video begins showing a man and woman holding each other and moving back and fourth.\", \" The couple moves their feet back and fourth while the man speaks to the camera.\", \" The woman eventually speaks the camera while performing several different dance moves for the camera to see.\"]}, \"v_8kjYbv52EcI\": {\"duration\": 43.0, \"timestamps\": [[0, 2.58], [2.8, 43]], \"sentences\": [\"Several canoes are shown in idle in murky water.\", \"Then a set of boys begin kayaking in the water and jumping off the trees.\"]}, \"v__L8VrJYsOAQ\": {\"duration\": 70.52, \"timestamps\": [[14.1, 29.62], [29.62, 31.73], [38.08, 70.52]], \"sentences\": [\"A person is washing their hands in a sink.\", \" Two women are standing by the sink washing their hands.\", \" Words come onto the screen.\"]}, \"v_vQ8NJRCSyb4\": {\"duration\": 185.97, \"timestamps\": [[0, 29.76], [29.76, 125.53], [125.53, 185.97]], \"sentences\": [\"Two men on one knee demonstrate a hip flexxer stretch in a therapy gym.\", \" The man wearing a black t-shirt uses the man wearing a green t-shirt as a model to demonstrate the hip flexxer stretch.\", \" The man in the black t-shirt adjusts the man in the green -t shirt a into different positions by slight positioning of the foot, leg, hips and arms.\"]}, \"v_wqlEUeJzNVc\": {\"duration\": 138.76, \"timestamps\": [[0, 41.63], [34.69, 138.76]], \"sentences\": [\"A man is sitting in a gym with friends who make stupid signs at the camera.\", \"  Then some dodgeball is played.\"]}, \"v_JGKjMJm0HRI\": {\"duration\": 41.24, \"timestamps\": [[0, 9.07], [8.66, 41.24]], \"sentences\": [\"A close up shot of children are seen riding around a bumper car game and running into one another.\", \" Two boys are seen bumping in to one another with several other kids riding around and hitting each other.\"]}, \"v_ORL5yMppl8E\": {\"duration\": 165.98, \"timestamps\": [[19.09, 28.22], [29.05, 47.3], [47.3, 82.16], [82.99, 90.46], [87.14, 131.12], [134.44, 139.42], [141.91, 149.38]], \"sentences\": [\"A kid fills a pot with water.\", \" He puts the pot on a stove and puts a lid on it.\", \" He adds salt and pasta to the pot.\", \" He puts the lid back on the pot.\", \" He stirs the pot and pours the pasta into a strainer.\", \" He pours the pasta back into the pan.\", \" He adds sauce and stirs it together.\"]}, \"v_0CTnYEE7rdo\": {\"duration\": 148.34, \"timestamps\": [[0, 10.38], [11.13, 51.92], [60.82, 148.34]], \"sentences\": [\"A man is skateboarding down a city street.\", \" He is seen talking to the camera in the middle of the road.\", \" Then we see him doing several different stunts as he winds in and out of traffic.\"]}, \"v_2YSsqivrvR4\": {\"duration\": 74.61, \"timestamps\": [[0.75, 19.4], [21.26, 55.21], [39.54, 68.26]], \"sentences\": [\"A person is seen sitting on the edge of a bed carrying a guitar.\", \" The person begins playing the guitar while looking over to the camera.\", \" The man continues playing and stops moving his hand out of frame.\"]}, \"v_P9jIpcRGeOk\": {\"duration\": 65.62, \"timestamps\": [[0, 8.86], [10.17, 38.39], [39.7, 65.62]], \"sentences\": [\"Several people are shown in images gathered outside a building.\", \" Two cartoon sumo wrestlers are engaged in a fight.\", \" They body slam each other as a referee watches.\"]}, \"v_MAXfslyf7Dw\": {\"duration\": 153.84, \"timestamps\": [[0, 103.07], [103.07, 153.84]], \"sentences\": [\"Sumos are standing in front of each other in a dust court and a referee dress in white suit is watching them.\", \" men stat wrestling and one of them if taking off the court.\"]}, \"v_nh1GBPeyyMo\": {\"duration\": 136.87, \"timestamps\": [[0, 44.48], [45.17, 136.87]], \"sentences\": [\"A person's hands are seen cutting a piece of paper with scissors and then wrapping a box with paper.\", \" She tapes down the present and ties it in a bowl, finishes by cutting the excess string and placing a tag on top.\"]}, \"v_McFsP60TqH4\": {\"duration\": 62.88, \"timestamps\": [[0.63, 28.3], [22.64, 61.31]], \"sentences\": [\"A young child is seen sitting on the floor brushing her hair in front of a mirror.\", \" The girl continues to brush her hair and ends with her watching a video and speaking to the camera.\"]}, \"v_FGtoyNOi6gg\": {\"duration\": 105.2, \"timestamps\": [[0, 61.02], [63.12, 105.2]], \"sentences\": [\"An intro leads into several shots of a wooded area and several people bungee jumping off a bridge.\", \" Several shots of people jumping off the side and shown and many standing on the side and close ups of the jumpers.\"]}, \"v_W1Cp1UyY8S8\": {\"duration\": 186.99, \"timestamps\": [[0, 6.54], [6.54, 92.56], [92.56, 174.84], [174.84, 186.99]], \"sentences\": [\"Text appears on the screen briefly.\", \" A man is power washing a fence.\", \" It cuts to him power washing a different section.\", \" It fades to an open shot of the fence.\"]}, \"v_YoDlwg4eAEA\": {\"duration\": 125.6, \"timestamps\": [[0, 14.44], [14.44, 23.24], [30.77, 72.22], [74.1, 125.6]], \"sentences\": [\"Several alternating images of dishes of food appear.\", \" A recipe for greek dressing begins.\", \" The ingredients made from oilsand powders are mixed together and shaken in a jar, and poured onto a salad.\", \" It is then topped with blocks of cheese.\"]}, \"v_jqLwYHwYYPM\": {\"duration\": 210.23, \"timestamps\": [[0, 2.1], [2.1, 4.2], [4.2, 29.43], [29.43, 70.43], [70.43, 94.61], [94.61, 100.91], [101.96, 138.75], [138.75, 159.78], [159.78, 204.98], [204.98, 210.23]], \"sentences\": [\"A black screen appears and the yellow words appear on them read \\\"Extreme How-To presents\\\".\", \" The second black screen has yellow words that read \\\"Installing Heated Floor Tile\\\".\", \" A man is now standing and talking in the corner of a residential home, dressed in a long sleeved button up black shirt, brown long pants, shoes and wearing a hat.\", \" The man walks away from the corner and the next view is of a kneeling man using a tool to remove base molding from a wall, using a drill gun, measuring with a long ruler, then laying on the ground gray pieces of fabric with some wires attached to it.\", \" The man is then shown pressing buttons on a little white box and the man is now pointing to those wires attached to those gray pieces of fabric and the man starts putting wires into a gray pipe that is now shown on the wall.\", \" The man is back on the ground with a long tape measure and measuring the ground.\", \" The man is now holding a tile with ridges on all four sides and he takes a mallet and a tool to gently pound the pieces together.\", \" When the man reaches the wall he uses a pencil to measure the tile, takes it to a wet tile cutter and cuts it.\", \" The man is back in the house and piecing a small tile near some cabinets, then the man begins to grout, and uses a large,wet, yellow sponge to clean up the excess grout.\", \"The talking man from earlier appears back in the corner talking and yellow words appear on the screen that contain websites.\"]}, \"v_-wWtZjqIH9o\": {\"duration\": 19.32, \"timestamps\": [[1.93, 18.06], [1.93, 5.6], [6.86, 14.78], [15.17, 18.06]], \"sentences\": [\"A group of children of varying ages slide down a blue slide in a theme park.\", \"  A group of children appear at the top of high slide.\", \"  The children then slide down the slide, with one girl's headband coming down over her eyes.\", \"  The children land and get up and run off.\"]}, \"v_pEr9p5-qUsU\": {\"duration\": 119.86, \"timestamps\": [[0, 118.06], [25.77, 118.06], [29.97, 118.06], [34.76, 118.06]], \"sentences\": [\"Several tables are set up in a large room.\", \" Several groups are playing beer pong.\", \" Some people are cheering about winning.\", \" Others look upset about losing.\"]}, \"v_2qN85UKyL2s\": {\"duration\": 77.16, \"timestamps\": [[0, 63.66], [10.8, 63.66], [11.57, 20.45], [23.92, 37.42], [65.2, 72.14], [71.76, 77.16]], \"sentences\": [\"We see a man and a woman playing pool.\", \" The lady takes her turn shooting the ball.\", \" We see bright camera flashes.\", \" We see the lady taking the photos.\", \" The lady hands her pool stick to a man and shakes his hand.\", \" She shakes another man's hand and leaves.\"]}, \"v_A5-gsreb2zY\": {\"duration\": 157.91, \"timestamps\": [[0, 45.79], [26.05, 57.64], [44.21, 57.64], [105.8, 108.96], [138.17, 157.91]], \"sentences\": [\"A woman gets her nose clamped by a man sitting behind her head.\", \" He pierces through her septum.\", \" He cuts it and removes the clamp.\", \" The man puts an earring through the hole.\", \" He puts qtips in her nose to catch the blood.\"]}, \"v_dmiLuqRB09U\": {\"duration\": 68.19, \"timestamps\": [[0, 68.19], [3.07, 68.19], [66.14, 68.19]], \"sentences\": [\"A woman is sitting on a chair.\", \" She gets a dermal piercing in her cheek.\", \" The girl shows the piercing and smiles.\"]}, \"v_PRLlYhneNMk\": {\"duration\": 112.94, \"timestamps\": [[0, 40.66], [37.84, 76.24], [77.37, 112.94]], \"sentences\": [\"Two people are seen wearing funny hates and standing behind a table speaking to the camera.\", \" They then quickly wrap a present and show off a better present underneath.\", \" More shots are shown of them wrapping as they quickly move around and speaking to the camera.\"]}, \"v_s3EHHOAkQYE\": {\"duration\": 238.37, \"timestamps\": [[0, 67.93], [64.36, 170.43], [143.02, 225.26]], \"sentences\": [\"A person is seen riding in a car panning to others while following behind a large group of people on bikes.\", \" The driver hands people water on the side as well as pulling them in to fix a bike.\", \" The car continues to follow and help the man as well as stopping to change a wheel and climbing back in the car.\"]}, \"v_s1E6EKs1MZw\": {\"duration\": 152.74, \"timestamps\": [[0, 19.09], [19.09, 32.84], [32.08, 39.71], [39.71, 72.55], [72.55, 105.39], [105.39, 152.74]], \"sentences\": [\"A man in a gorilla suit is playing a saxophone in the middle of a store.\", \" The employees look on and laugh at the person playing and use their phones to take pictures.\", \" The gorillas reaches out to grab one of the employees hands and the man is very embarrassed by it.\", \" They talk to each other a bit and the other employees begin to clap excitedly.\", \" The Gorilla suit man plays the sax some more as everyone is still laughing.\", \" He plays and plays to the camera as the video comes to an end.\"]}, \"v_0fw8it7Gj7k\": {\"duration\": 163.19, \"timestamps\": [[1.63, 87.31], [44.88, 158.29]], \"sentences\": [\"A man is seen holding up a piece of wood and rubbing it down while speaking to the camera and spraying down polish.\", \" The man wipes down the polish with a rag while continuing to speak to the camera and holding up the piece of wood in the end.\"]}, \"v_IV47aK7qJdY\": {\"duration\": 54.57, \"timestamps\": [[0, 14.46], [8.46, 26.46], [18.01, 50.75]], \"sentences\": [\"The dry brown and yellow leaves are on the ground, on top of green grass.\", \" A man with a leaf blower on his hand started to blew the leaves towards the center of the field.\", \" The man blew the leaves from the side of the road towards the tree, while another man with leaf blower walks on other side of the walkway.\"]}, \"v_7Sfl-Fmr_3E\": {\"duration\": 71.22, \"timestamps\": [[2.14, 14.96], [17.45, 59.11], [53.06, 65.16]], \"sentences\": [\"A man is shown working on a fence in the backyard.\", \"  The man wears a blue outfit as he paints the wooden fence a red color.\", \"  The man cleans the paint off of boards.\"]}, \"v_Ux4brKS0Sac\": {\"duration\": 119.27000000000001, \"timestamps\": [[0.6, 33.99], [33.4, 90.05], [82.3, 117.48]], \"sentences\": [\"A man is seen speaking to the camera while putting a box around some paper.\", \" He wraps the box in paper while using scissors to cut around the sides.\", \" The man tapes up the box and presents it to the camera.\"]}, \"v_Mvl-TR0rDdA\": {\"duration\": 63.09, \"timestamps\": [[0, 2.84], [2.84, 4.1], [4.1, 7.26], [10.41, 15.46], [18.93, 34.38], [34.7, 45.74], [45.74, 53.31], [53.63, 63.09]], \"sentences\": [\"We see the title for Kyla Ross on the parallel bars.\", \" The girls lifts, then lowers her arms.\", \" Kyla then jumps onto the short bar.\", \" She transfers to the tall bar, then back to the short one.\", \" She spins back to the tall one and spins.\", \" She flips to the short bar, then back to the tall and flips.\", \" She dismounts and hugs her coach.\", \" We see her final score on a black screen.\"]}, \"v_sEENChh3zno\": {\"duration\": 69.89, \"timestamps\": [[0, 27.26], [26.21, 69.89]], \"sentences\": [\"A girl is seen jumping items into water and scrubbing a pan with a brush.\", \" She continues speaking to the camera as well as into the pan and demonstrating how to properly clean a pan.\"]}, \"v_jpvgI6bNO1g\": {\"duration\": 199.41, \"timestamps\": [[0, 30.91], [24.93, 48.86], [61.82, 190.44]], \"sentences\": [\"A camera pans all around a forest and leads into a rope tied to a tree.\", \" A person is seen tightening the rope followed by walking along the rope.\", \" Several people are seen walking on the rope as well as bouncing and performing tricks.\"]}, \"v_doAvtD_jgiY\": {\"duration\": 37.9, \"timestamps\": [[0, 36.57], [1.52, 3.22], [4.93, 9.85], [24.44, 31.26], [30.51, 37.9]], \"sentences\": [\"We see a girl in gold doing a baton routine.\", \" The girl does a flip.\", \" the girls spins repeatedly and catches her baton.\", \" The girl spins and two batons roll in and she grabs each.\", \" The girl spins, catches her baton and poses for her finish as the crowd claps.\"]}, \"v_h4phcAYe0aE\": {\"duration\": 29.7, \"timestamps\": [[0, 29.7], [1.34, 18.12], [17.97, 29.7]], \"sentences\": [\"A person is raking leaves into a pile.\", \" A little boy is picking up the leaves and playing in the pile.\", \" The boy picks up a rake and starts raking the leaves.\"]}, \"v_XsqslHC79FQ\": {\"duration\": 238.05, \"timestamps\": [[0, 235.67], [5.95, 229.72], [7.14, 220.2], [13.09, 226.15], [236.86, 238.05]], \"sentences\": [\"There's a young girl wearing a brown sweater playing the violin.\", \" She strings the violin with her left hand while she uses the bow stick with her right hand.\", \" She continues playing her tune on the violin with full concentration without pausing.\", \" She constantly looks down at the violin as she plays the notes.\", \" After she finishes playing the violin, she smiles and walks away.\"]}, \"v_EJiyr-6l3ps\": {\"duration\": 79.06, \"timestamps\": [[6.72, 69.97], [31.63, 49.02], [0, 79.06]], \"sentences\": [\"A video of clipping a cats toenails is shown.\", \"  Each paw is grabbed and the nail is pushed out and trimmed.\", \"  The cat is oddly calm the whole time.\"]}, \"v_qnozppP4rm0\": {\"duration\": 163.12, \"timestamps\": [[0, 17.94], [17.13, 33.44], [33.44, 51.38], [51.38, 79.93], [79.93, 106.84], [106.84, 129.68], [128.87, 163.12]], \"sentences\": [\"A young girl is outside at the park talking to what appears to be her older brother.\", \"The two begin a face off and they drop down to the sidewalk drawing a long game of hopscotch.\", \"Once complete,they stand up,throw their chalk and the girl moves to the right of the game.\", \"The boy starts the game off and the girl begins her turn moving forward and backwards down the game.\", \"To show her up,the boy begins to dance across the pavement and the girl returns it by flipping down the game.\", \"Now its the boy's turn and he tries to flip but ends up falling and the girl starts to laugh at him.\", \"The young girl wins and the boy gives her his Xbox as a result.\"]}, \"v_MCsGSMze_6Q\": {\"duration\": 172.25, \"timestamps\": [[0, 4.31], [5.17, 68.9], [70.62, 76.65], [77.51, 135.21], [136.07, 140.38], [141.24, 144.69], [145.55, 172.25]], \"sentences\": [\"We see an opening title screen.\", \" There is a black and white TV show with two men on a stage talking and laughing.\", \" The right man gets up and walks to a piano.\", \" The man plays a grand piano.\", \" The man finishes and stands up.\", \" We see the crowd clapping.\", \" The men shake hands and the piano player walks away and the host talks and shimmies a bit.\"]}, \"v_8KPk9pH4wWw\": {\"duration\": 87.93, \"timestamps\": [[1.32, 36.93], [47.92, 85.74]], \"sentences\": [\"An athlete is seen waving his hands to the crowd and clapping followed by him running over a beam.\", \" His same shot is shown again in slow motion and hes seen speaking to a man.\"]}, \"v_yaK-giAk4e8\": {\"duration\": 25.5, \"timestamps\": [[0, 7.39], [7.78, 22.05], [22.82, 25.5]], \"sentences\": [\"A group of young men are in a kitchen, playing a game of beer pong.\", \" They cheer as they get the ball into a cup.\", \" A woman appears, and picks up one of the cups.\"]}, \"v_mWj6lO9PZCs\": {\"duration\": 145.1, \"timestamps\": [[0, 42.08], [42.08, 126.96], [129.14, 145.1]], \"sentences\": [\"A woman is seen pushing a lawn mower across some grass while speaking to the camera.\", \" The camera zooms in on plants in the yard and continues to follow the woman around as she cuts the grass.\", \" The camera wanders through a bunch of plants and trees in the end.\"]}, \"v_C7UEAqu1KtY\": {\"duration\": 192.1, \"timestamps\": [[2.88, 57.63], [47.06, 146.96], [129.67, 177.69]], \"sentences\": [\"A camera pans around a yard leading to a rake sitting up against a trash can.\", \" A man is seen stretching off into the distance and begins raking the leaves.\", \" He picks the leaves up and throws them in the trash as well as onto a blanket and handing it to a girl.\"]}, \"v_8lhODyltF2Q\": {\"duration\": 121.51, \"timestamps\": [[0, 121.51], [13.97, 15.19], [94.17, 102.07]], \"sentences\": [\"A person is riding a lawnmower with an umbrella through the rain.\", \"  A light colored sedan passes on the road.\", \"  The person on the mower drives up to the roadway.\"]}, \"v_yGPzIGJ_2B8\": {\"duration\": 100.13, \"timestamps\": [[0, 5.51], [6.01, 26.53], [26.53, 78.1], [79.1, 100.13]], \"sentences\": [\"woman is walking in a green grassy backyard.\", \" man is standing in a bacyard in front of a fence with a machine in front of him.\", \" woman is in the backyard and a man is behind her using a lawn mower to cut the grass.\", \" man is walking  with some white plastic bags on the cloth.\"]}, \"v_AlLg4ZaxDoQ\": {\"duration\": 179.91, \"timestamps\": [[0, 18.89], [19.79, 70.16], [71.06, 118.74], [118.74, 139.43]], \"sentences\": [\"A person cooks on a wood cooker, then a person rafts in a river.\", \"  Young men unpack a car and then carry raft boats in the jungle and pass a rope bridge.\", \"  Young men raft in a narrow choppy river on individual boats.\", \" The young men falls from small cascades in the rocky river.\"]}, \"v_N3UOyPU2t0E\": {\"duration\": 196.98, \"timestamps\": [[6.89, 64.02], [51.21, 116.22], [91.59, 173.34], [167.43, 196.98]], \"sentences\": [\"Several pairs of shoes are shown as well as a large group of people socializing and pouring alcohol into glasses.\", \" The glasses are laid out on a table and several shots are shown of people playing beer pong.\", \" More shots are shown of people speaking to one another as well as playing beer pong in several locations and partying with one another.\", \" In the end medals are handed out and people wear them while celebrating in different spots.\"]}, \"v_mNq0NksbsZ4\": {\"duration\": 157.82999999999998, \"timestamps\": [[0, 157.83], [22.88, 27.62], [52.87, 56.03]], \"sentences\": [\"People are long boarding down a hill.\", \" A silver truck is parked next to the hill.\", \" A person falls off the long board onto the pavement.\"]}, \"v_FkMk9TZdea0\": {\"duration\": 210.3, \"timestamps\": [[0, 6.31], [9.46, 117.77], [121.98, 210.3]], \"sentences\": [\"White text says in memory of Paul Walker.\", \" A person is shown using a small brush to create an image of Paul Walker.\", \" Each detail is drawn one at a time, producing the final completed image.\"]}, \"v_NEKcJ0whvkg\": {\"duration\": 144.2, \"timestamps\": [[0, 12.26], [12.26, 25.96], [25.96, 45.42], [46.14, 85.8], [85.8, 113.91], [114.64, 144.2]], \"sentences\": [\"A person rolls in the grass after a fall and gets up to join a game of lacrosse.\", \" We see gear in the grass and a man speaking to the camera.\", \" Men play lacrosse and ladies cheer on the side.\", \" We see a man interviewed and a team huddle and see men play.\", \" A man in interviewed and we see the men play lacrosse.\", \" A man in red is interviewed and the teams shake hands, hold up their trophy and pose for photos.\"]}, \"v_ubgCjUUmP9I\": {\"duration\": 107.16, \"timestamps\": [[9.64, 23.04], [23.04, 50.37], [50.37, 70.73], [70.73, 80.91], [80.91, 100.73], [100.73, 103.95]], \"sentences\": [\"A male gymnast dressed red and white leotards is performing on a horse bar.\", \" He climbs up the horse bar and does backhand springs.\", \" He continues swiftly over the horse bar as he raises his body by pushing his body weight on his arms.\", \" He continues doing front and back hand springs.\", \" After he's done, he gets off the bar and walks towards the judges and other contestants.\", \" The spectators cheer for him and the judges shake hands with the gymnast.\"]}, \"v_2P555wnyj_8\": {\"duration\": 48.72, \"timestamps\": [[0, 20.95], [20.22, 48.72]], \"sentences\": [\"A man is standing in a room melting down an object with a utensil that is creating several sparks.\", \"Another male then walks behind the person and puts on a helmet for protection as he watches the man in front of him.\"]}, \"v_jVp2BsFOIVA\": {\"duration\": 115.31, \"timestamps\": [[0, 31.71], [31.13, 64.57], [64, 93.4], [93.98, 115.31]], \"sentences\": [\"Three kids swinging on the play set in the back yard.\", \" One of the boys climb and slides down the slide.\", \" More kids join and and they go down the slide together and move around the set very quickly.\", \" They start to swing on their tummies and just overall having a great time playing.\"]}, \"v_98SSjNuSxvM\": {\"duration\": 193.45, \"timestamps\": [[0, 37.72], [37.72, 91.89], [91.89, 126.71], [126.71, 193.45]], \"sentences\": [\"A series of words appear across the screen and they inform us that the men are attempting to row across the Atlantic.\", \"A man is then shown outside on his patio rowing and words indicate that it has been two hours and 1600 calories burned.\", \"After the man is shown again but this time he is exhausted and is forced to take a breath so he can breathe.\", \"Now the man is standing up and is taking to the camera and holds up his hand to show the blisters he has on his hands.\"]}, \"v_ADbp9ObJVxE\": {\"duration\": 120.88, \"timestamps\": [[0, 51.98], [55.61, 120.88]], \"sentences\": [\"A man is in a worship, talking in front of a piece of wood.\", \" He sands the piece of wood down, then wipes sealant or stain onto the wood.\"]}, \"v_U7MAQwyFeDQ\": {\"duration\": 236.23, \"timestamps\": [[0, 29.53], [40.16, 62.6], [62.6, 164.18], [164.18, 236.23]], \"sentences\": [\"Walking through the airport, flying on a plane and driving down the highway they get to where they are going.\", \" A man in a white mask is getting ready to go bungee jumping off a very high cliff, he stands with his arms out like they are wings on the edge.\", \" Then he jumps down, falling from a very high height, another man follows after him, and then the camera man himself takes the leap recording the entire fall.\", \" They all take turns jumping, one of them even goes down backwards.\"]}, \"v_gh5di42-RJo\": {\"duration\": 62.32, \"timestamps\": [[3.43, 7.79], [7.79, 10.91], [10.91, 31.16], [31.16, 55.16], [55.16, 60.14], [60.14, 62.32]], \"sentences\": [\"A small boy wearing a black and red striped shirt is sitting with a drum set and playing drums.\", \" A man wearing a pink shirt and black trousers is standing next to him.\", \" Another person wearing a denim shirt walks past the boy.\", \" the boy continues to drum the cymbals and the hi-hat in a rhythmic way as the people cheer for him.\", \" He alternately hits the cymbals and the snare drums with the sticks.\", \" He ends by hitting the cymbals.\"]}, \"v_RxuL7k7-hYQ\": {\"duration\": 235.43, \"timestamps\": [[20.01, 229.54], [20.01, 151.85]], \"sentences\": [\"Gymnasts swing on double bars during Olympic competition.\", \" Gymnast swings on double bars during practice in a gym.\"]}, \"v_hyk4wNZwwxc\": {\"duration\": 224.31, \"timestamps\": [[0, 224.31], [19.07, 213.09], [25.8, 29.16], [206.36, 224.31]], \"sentences\": [\"Several adults are a doing a stepping exercise onto platforms.\", \" They step on and of and spin around.\", \" They do a cart wheel off the platform.\", \" They end their exercise and step off.\"]}, \"v_i9DlXuEewE8\": {\"duration\": 153.68, \"timestamps\": [[0, 33.04], [33.81, 85.29], [85.29, 153.68]], \"sentences\": [\"A young teen age girl is sitting in a large chair talking on the phone and making faces.\", \"Two other females then begin dancing out front in the yard on a sidewalk.\", \"The girl then grabs her sweat pants and begins teaching her counterpart different dance steps and the first female reappears on the phone.\"]}, \"v_1uC0xzyx4Bc\": {\"duration\": 211.98, \"timestamps\": [[18.02, 48.75], [48.75, 76.31], [76.31, 101.75], [101.75, 125.07], [125.07, 142.02], [142.02, 163.22], [163.22, 186.54], [186.54, 195.02]], \"sentences\": [\"A person is showing how to install rubber tiles in a gym.\", \" The video shows several people working out in a gym on the flooring.\", \" The person shows how to prep the floor surface before installing the tiles.\", \" He demonstrates how to lay the tiles on the floor in a criss-cross manner.\", \" The video shows a simulation how the tiles can measured up and laid down one by one in order to get a perfect wall to to wall fit.\", \" A person also shows how to trim tiles to fit flush edge to edge without leaving a gap between tiles.\", \" Finally he shows how to use a vinegar solution to clean the tiles in order to maintain the quality of the tiles.\", \" The video ends with the information of the tile company.\"]}, \"v_C6DH4l7fop0\": {\"duration\": 29.35, \"timestamps\": [[0, 29.35], [26.56, 29.35]], \"sentences\": [\"A boy puts freshly baked cookies on a cooling rack.\", \" One gets stuck and he licks the spatula.\"]}, \"v_o0O-CwwSaGw\": {\"duration\": 144.73, \"timestamps\": [[0, 33.29], [32.56, 63.68], [62.96, 98.42], [101.31, 144.73]], \"sentences\": [\"A girl with long hair is shown speaking to the camera and leads into her spraying water all over a dog in the tub.\", \" She scrubs the dog with shampoo and runs again runs the water over the dog.\", \" She holds the dog with a towel and then blow dries the dog in her lap while combing him.\", \" The dog is shown again all dried off and shakes himself while looking at the camera and the girl speaks more.\"]}, \"v_ocvKEzb7OaE\": {\"duration\": 53.27, \"timestamps\": [[0, 1.6], [1.6, 46.08], [46.34, 53.27]], \"sentences\": [\"A man in a black shirt setting up a camera while sitting in front of a rub-ix cube and a electronic stop clock.\", \" Once the clock starts another man off camera and the man sitting in front of the cube starts to figure out the puzzle.\", \" Once the clock reaches 43 seconds both the men finish the puzzle and congratulate each other on completing the puzzle.\"]}, \"v_qkHBMmMlEr8\": {\"duration\": 71.31, \"timestamps\": [[0, 24.96], [4.28, 6.77], [6.77, 8.56], [25.31, 71.31]], \"sentences\": [\"We see a man talking in a basketball gym.\", \" The man points at the boy.\", \" The man points to the right.\", \" We see a man making shots in a basketball hoop.\"]}, \"v_VD3kzQGuQnc\": {\"duration\": 63.93, \"timestamps\": [[0, 21.73], [17.58, 48.58], [43.79, 62.65]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her pouring ice into a glass.\", \" She then mixes various ingredients into the glass and mixes them up in a shaker.\", \" The woman then puts the glass down and pours the mixture into glass presenting it to the camera.\"]}, \"v_ko9efCldvgs\": {\"duration\": 14.88, \"timestamps\": [[0, 3.94], [3.8, 11.24], [11.24, 14.88]], \"sentences\": [\"A wooden outdoors stair case is shown outside of a white and brown horse.\", \"All of a sudden,a black dog comes around the corner and trots up the stairs and multiple replays are shown.\", \"Once the dog actually makes it to the top,he begins licking the person'a behind the camera shoe.\"]}, \"v_5rftu62ML_c\": {\"duration\": 105.53999999999999, \"timestamps\": [[0, 29.55], [23.75, 79.15], [76.51, 103.42]], \"sentences\": [\"A large group of people are shown in various shots riding around in canoes.\", \" A man speaks to the camera while people walk around with the canoes and show off pictures.\", \" More people are seen using them as well as walking around.\"]}, \"v_escpZEdyNTI\": {\"duration\": 20.74, \"timestamps\": [[0, 10.78], [10.47, 20.74]], \"sentences\": [\"A person is seen running hold a surf board, and is shown again looking at his phone and laughing.\", \" More people are seen in various locations checking their phone and ends with a woman riding an exercise bike.\"]}, \"v_7yg2zbiTJJ4\": {\"duration\": 80.3, \"timestamps\": [[0, 2.81], [4.42, 8.03], [12.04, 14.05], [15.26, 25.29], [28.1, 36.94], [39.34, 50.59], [52.59, 63.83], [64.64, 73.47], [74.27, 80.3]], \"sentences\": [\"A woman's hand picks up a stuffed animal surrounded by gifts.\", \" Gift wrapping accessories are shown.\", \" A woman lays out tissue paper and places a stuffed toy in the center.\", \" The woman wraps the toy in the tissue paper and tapes it shut.\", \" The woman lays out cellophane and places the wrapped toy on it.\", \" The woman cuts the cellophane and then proceeds to roll up the tissue paper covered toy.\", \" The woman twists the ends of the cellophane and tapes the package shut.\", \" Ribbon is placed around the ends of the package.\", \" The woman shows the package to the camera and sets it on a counter.\"]}, \"v_oxp7V1AKJWk\": {\"duration\": 136.62, \"timestamps\": [[0, 136.62], [27.32, 40.99], [124.32, 127.74]], \"sentences\": [\"A little boy is playing an arcade game.\", \" He picks up a ball and throws it at the pins.\", \" He turns around and walks away.\"]}, \"v_ijnNP7P5m28\": {\"duration\": 143.36, \"timestamps\": [[0, 35.84], [34.41, 128.31]], \"sentences\": [\"Men and women and kids are roasting marshmallow in the bonfire while others are skiing or resting on the chairs.\", \" A woman slide down the slope and the little girl came up to her and give her a kiss, then the woman help the little girl slide down the slope.\"]}, \"v_i7NKJhCdKx0\": {\"duration\": 195.12, \"timestamps\": [[0, 39.02], [39.02, 115.12], [115.12, 195.12]], \"sentences\": [\"A man is outside in the snow holding a rope that is attached to a snow mobile.\", \"The snow mobile starts to move and the person begins snowboarding throughout the field.\", \"They continue to move through the snow and the forest of trees into a parking lot by a cabin.\"]}, \"v_wHRHS7_4J_s\": {\"duration\": 67.04, \"timestamps\": [[1.68, 21.12], [15.75, 51.28], [51.62, 65.7]], \"sentences\": [\"A young girl is seen standing ready looking down at a violin.\", \" The girl is then seen playing the violin while moving her hands up and down.\", \" The girl continues playing the instrument and ends by looking to the camera.\"]}, \"v_bDiwuABU45I\": {\"duration\": 35.16, \"timestamps\": [[0, 13.18], [0, 14.94], [26.54, 34.1]], \"sentences\": [\"A man is rubbing sunscreen on his back.\", \" A girl is laying down on a towel on the beach behind him.\", \" A person in an orange shirt walks behind him.\"]}, \"v_yGCklVOLgk8\": {\"duration\": 62.39, \"timestamps\": [[0, 14.97], [16.22, 42.12], [41.49, 60.52]], \"sentences\": [\"A person is seen falling into the water in front of a jump.\", \" Another person is seen riding along on skis past him.\", \" The man continues to ride as the camera zooms in on the water.\"]}, \"v_IiG80Vp4WyY\": {\"duration\": 202.27, \"timestamps\": [[0, 57.65], [57.65, 202.27]], \"sentences\": [\"A man is seen holding an instrument in front of a large stack of instruments and speaking to the camera.\", \" The man then plays the instrument continuously and ends with him pausing and holding the instrument.\"]}, \"v_WOkHZ33CgAs\": {\"duration\": 20.92, \"timestamps\": [[0, 20.92], [9.94, 20.92]], \"sentences\": [\"Two men start fighting standing outside.\", \" One man throws the other man onto a table.\"]}, \"v_RZr2KLNE6qE\": {\"duration\": 6.11, \"timestamps\": [[0.06, 6.11], [3.21, 6.11]], \"sentences\": [\"A camera zooms in on a baby wearing a baseball hat riding back and fourth on a swing set.\", \" The baby continuously rides back and fourth while another child rides a swing next to him.\"]}, \"v_4mfnfTpcfck\": {\"duration\": 112.00999999999999, \"timestamps\": [[0, 22.4], [24.64, 69.45], [69.45, 109.77]], \"sentences\": [\"A group of girls are sitting in an old car while a large group of cars behind them move around.\", \" Other people are shown wearing christmas attire and dancing in the streets of the car.\", \" A band is playing by a group of kids while the parade follows them full of people dancing.\"]}, \"v_qY8t0S0WWoA\": {\"duration\": 45.65, \"timestamps\": [[0, 45.65], [39.03, 40.63]], \"sentences\": [\"A man and a child paint a fence with brushes.\", \" A baby watches the man and the toddler painting.\"]}, \"v_iPiP-7UwAa4\": {\"duration\": 227.09, \"timestamps\": [[0, 57.91], [47.69, 174.86], [170.32, 225.96]], \"sentences\": [\"A large group of people are seen standing on a stage while others watch on the side.\", \" The cheerleaders then begin performing a routine while throwing others up and flipping around.\", \" The group continues to perform on the stage and end by holding a pose and walking away.\"]}, \"v_uN8lcRwsBno\": {\"duration\": 165.56, \"timestamps\": [[0, 2.48], [3.31, 151.49], [156.45, 161.42], [163.9, 165.56]], \"sentences\": [\"A guy sits with his legs close to his chest.\", \" The guy is exercising by pulling a handle.\", \" The guy stops exercising fixes his reading glasses and touches his beard.\", \" The guy removes his legs from the exercise machine and touches the knob.\"]}, \"v_yPpKYckLbdI\": {\"duration\": 153.67000000000002, \"timestamps\": [[0, 6.15], [3.84, 5.38], [24.59, 29.97], [35.34, 49.17], [58.39, 70.69], [115.25, 119.09], [140.61, 153.67]], \"sentences\": [\"We see a girl jumping on a trampoline in doors.\", \" We see the girl spin in the air.\", \" The girl does a series of flips.\", \" The girl flips into blue boxes.\", \" The girl does a series of flips and a spin.\", \" We see a title screen and then see the girls bloopers.\", \" We see the ending screen.\"]}, \"v_SZXscHYG26Y\": {\"duration\": 80.64, \"timestamps\": [[0, 80.64], [2.82, 75.8], [11.69, 75.8]], \"sentences\": [\"The person is parasailing, he is holding the sail.\", \" The man is moving forwards towards the island.\", \" The person has his feet on the parasail board.\"]}, \"v_OqLrsVv44MY\": {\"duration\": 38.27, \"timestamps\": [[0, 38.27], [3.06, 35.59]], \"sentences\": [\"A woman smiling at the camera is shown scraping off her car with a scraper.\", \" She talks to the camera man while smiling at the camera and continuing to scrape.\"]}, \"v_lwo7fssfLiw\": {\"duration\": 67.19, \"timestamps\": [[2.35, 40.31], [27.55, 65.51]], \"sentences\": [\"A woman is seen speaking to the camera while holding onto a piece of exercise equipment with her arms.\", \" She moves the machine back and fourth while still laughing and smiling to the camera.\"]}, \"v_IVnPfvBZxKE\": {\"duration\": 115.59, \"timestamps\": [[0, 26.01], [19.65, 64.15], [65.31, 101.14], [107.5, 115.59]], \"sentences\": [\"Various pictures of ingredients are shown followed by pictures of the ingredients laid out on a cutting board.\", \" The pictures transition into more ingredients with hands covering them up and squeezing them into a ball.\", \" Pictures and video of the food being cooked in a pan are shown followed by a person taking it out and cutting it with a knife.\", \" Finally, a picture of the finished food product is shown.\"]}, \"v_ExcXXMZYGs0\": {\"duration\": 187.69, \"timestamps\": [[0, 7.51], [8.45, 187.69], [23.46, 30.97], [81.64, 106.04], [170.8, 182.99], [182.99, 187.69]], \"sentences\": [\"We see a opening title screen.\", \" We see people rafting down a river in a yellow raft.\", \" The raft is overturned and the people fall into the river.\", \" The people duck under  branch of a low hanging tree and the right front man stands and dances.\", \" A man in the back of the raft walks forward.\", \" We see the ending title screen.\"]}, \"v_MFeI2mRg6Ho\": {\"duration\": 192.94, \"timestamps\": [[0, 30.87], [30.87, 77.17], [77.17, 136.98], [136.98, 192.94]], \"sentences\": [\"Some team is playing a game on the field, one of them scores.\", \" The audience goes crazy and then the teams are back to trying to score into the goal.\", \" The guy from the yellow team has the ball on the stick, he's running quickly with it and he scores.\", \" They put the trophy in the air and yell with excitement.\"]}, \"v_VWmSZPIoBlw\": {\"duration\": 18.65, \"timestamps\": [[0, 2.61], [2.61, 18.65], [3.92, 18.65]], \"sentences\": [\"A man wearing a black coat is standing on the sidewalk.\", \" He walks up to a car and starts scraping the snow off the windows.\", \" The snow falls onto the ground in front of the car.\"]}, \"v_H2l7GraYFhI\": {\"duration\": 189.14, \"timestamps\": [[0, 189.14], [14.19, 189.14]], \"sentences\": [\"A band plays on a stage.\", \" A man in a suit plays the saxophone up front wearing sunglasses.\"]}, \"v_gRzHp84ptgE\": {\"duration\": 99.34, \"timestamps\": [[0, 17.88], [18.38, 23.34], [31.79, 75.99]], \"sentences\": [\"A man and a little girl are standing on a beach.\", \" The man picks up the girl and picks up a surf board.\", \" He goes surfing in the water with her on his back.\"]}, \"v_pF7z3Z_JSGk\": {\"duration\": 119.35, \"timestamps\": [[0, 36.4], [37, 62.06], [68.03, 119.35], [101.45, 106.22]], \"sentences\": [\"A man holds the back paws of a cat and clips its nails sitting on the floor.\", \" The man finishes one paw then wrestles with the cat.\", \" The man pets that cats stomach.\", \" The man examines the cats after the job is done.\"]}, \"v_P06Slwn3JG0\": {\"duration\": 65.67, \"timestamps\": [[0, 8.54], [8.54, 22.66], [23.31, 36.77], [37.76, 49.58], [49.91, 65.67]], \"sentences\": [\"A girl stands in a yard holding a rake.\", \" The girl rakes the leaves in a pile.\", \" the girl walks to a trampoline and gets a different rake and rakes the leaves in a circle.\", \" the girl put the rake back on the trampoline and talks to the camera.\", \" the girl jumps in, rolls around and throws the leaves around before standing and talking to the camera.\"]}, \"v_I62kL8H81XA\": {\"duration\": 92.3, \"timestamps\": [[1.38, 13.38], [14.31, 24], [24.92, 47.07], [48.46, 72.92]], \"sentences\": [\"A cup with lemonade is next a jar with a lemonade.\", \" A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar are on  at table.\", \" Then, a person adds sugar, and lemon to pot with water to  warm.\", \" Then, the person adds  the lemonade to a jar and serves in a cup.\"]}, \"v_wIK83guBfM0\": {\"duration\": 44.42, \"timestamps\": [[0, 6], [7.11, 17.77], [18.66, 44.42]], \"sentences\": [\"A man is in a garage with newspaper on a table.\", \" He shows how to cut the top off a pumpkin, and removes the insides.\", \" Then he carves a design into the pumpkin, creating a novelty jackolantern.\"]}, \"v_R52e9UAE60k\": {\"duration\": 77.58, \"timestamps\": [[1.16, 76.8], [4.27, 23.66], [23.27, 77.58]], \"sentences\": [\"A group of people are shown riding on horses in the desert.\", \" A man talks to the camera while riding the horse and giving various shots of the land.\", \" He shows off the several other people on horses and continues talking about his adventure close up to the camera.\"]}, \"v_5HCYb6qfkdk\": {\"duration\": 30.7, \"timestamps\": [[0.31, 4.76], [4.76, 30.7]], \"sentences\": [\"A person opens a door and walks inside a kitchen.\", \" A woman sits on a kitchen counter shaving her legs in a sink.\"]}, \"v_zwX7e_5Koh0\": {\"duration\": 192.59, \"timestamps\": [[0, 72.22], [73.18, 192.59]], \"sentences\": [\"An intro leads into a group of women standing on a wood floor behind a piece of exercise equipment.\", \" The women then begin moving back and fourth and up and down on the equipment while the woman in front speaks out loud.\"]}, \"v_RKUEXxnXrm8\": {\"duration\": 148.14, \"timestamps\": [[0, 124.44], [0, 12.59], [12.59, 24.44], [25.18, 48.89], [54.81, 148.14]], \"sentences\": [\"A man demonstrates how to make an egg salad sandwich.\", \"  A man starts talking to the camera in close up angle and then takes a bite of a sandwich.\", \"  A grop of sandwich making materials is shown.\", \"  An eggs is boiled in a pan, and then the eggs are run under cold water.\", \"  Celery is chopped into bits along with other vegetables and then the eggs are mixed with this and a finished sandwich is shown.\"]}, \"v_pF8jt67vTDY\": {\"duration\": 82.06, \"timestamps\": [[0, 82.06], [5.74, 82.06]], \"sentences\": [\"Adults are playing a game of volley ball on a court.\", \" A crowd is watching them play.\"]}, \"v_O337_rGYZPc\": {\"duration\": 155.25, \"timestamps\": [[0, 28.72], [32.6, 98.58], [97.03, 155.25]], \"sentences\": [\"A close up of various objects in shown in a circle of dirt and leads into a person holding a bag.\", \" The person then opens the bag and points to the objects in dirt and lights a match.\", \" The objects catch fire and the camera zooms in on the objects burning.\"]}, \"v_NnLjEbG31ZE\": {\"duration\": 46.51, \"timestamps\": [[0, 46.51], [31.16, 36.74]], \"sentences\": [\"A group of friends ride inter tubes through small rapids in a tropical jungle.\", \" The group goes past large boulders popping up out of the water.\"]}, \"v_QRLye5j54ic\": {\"duration\": 218.59, \"timestamps\": [[0, 56.83], [64.48, 177.06], [194.55, 218.59]], \"sentences\": [\"A boy is standing in the tall grass of a field.\", \" He is holding onto a kite in the air.\", \" He leans way back, being drug by the force of the wind.\"]}, \"v_mRe2xY_amWw\": {\"duration\": 180.58, \"timestamps\": [[0, 80.36], [55.98, 180.58]], \"sentences\": [\"The video leads into various text shown across the screen followed by cheerleaders performing a routine.\", \" Several shots of cheer leading performers are shown completing impressive stunts and moving across a stage while others watch.\"]}, \"v_ZBG-KhSyVgQ\": {\"duration\": 111.11, \"timestamps\": [[0, 28.89], [28.33, 41.67], [100.55, 107.22]], \"sentences\": [\"People are standing on the backs of horses.\", \" Three girls are talking to a camera.\", \" The horses are walking across a dirt road.\"]}, \"v_Io1OF2OkTWY\": {\"duration\": 78.95, \"timestamps\": [[0.39, 18.95], [17.37, 60.4], [33.16, 76.58]], \"sentences\": [\"A man is seen speaking to the camera while holding onto a dog in a plane.\", \" Several clips are shown of the man in a plane with the dog as well as underwater.\", \" The man performs several activities with his dog in hand while a woman speaks to the camera.\"]}, \"v_9GP266ETAuE\": {\"duration\": 145.32999999999998, \"timestamps\": [[0, 13.08], [13.81, 34.15], [34.88, 81.39], [82.11, 145.33]], \"sentences\": [\"A ball is shown swinging around followed by shots of scenery and people getting ready.\", \" A man records an athlete holding the ball and sitting on a bench.\", \" Various people are shown getting ready to perform followed by several people swinging the balls.\", \" Eventually several different women are shown performing the task while also warming up their throws.\"]}, \"v_i5jZVSzLbYQ\": {\"duration\": 150.0, \"timestamps\": [[0, 43.5], [40.5, 128.25], [132.75, 150]], \"sentences\": [\"A person is seen performing various flips and tricks in front of audience and leads into a young boy standing in the middle.\", \" The boy and man then battle against one another doing several tricks and ends with the an holding the boy's arm.\", \" He then claps to the boy and several people on the side clap.\"]}, \"v_8Uyi1KXdS50\": {\"duration\": 109.55, \"timestamps\": [[0, 13.15], [15.34, 69.57], [73.95, 109.55]], \"sentences\": [\"An elderly woman is seated in a chair.\", \" She is knitting with red yarn.\", \" She talks to the person with the camera as she knits.\"]}, \"v_98wL6zakU9o\": {\"duration\": 139.2, \"timestamps\": [[0, 61.25], [34.8, 137.12]], \"sentences\": [\"A person is seen pushing a sander along a ski and leads into another person tightening down a ski and spraying wax along the top.\", \" The person wipes it down and then uses a bar of wax on the sander along the ski.\"]}, \"v_TkNCytAQ5cw\": {\"duration\": 100.53999999999999, \"timestamps\": [[0, 42.73], [47.26, 100.54]], \"sentences\": [\"A woman is hosting a news segment that leads into clips of people working on the streets and protesting.\", \" Several women are interviewed by the camera and shows more clips of people working and protesting.\"]}, \"v_frWLB7ZxMNI\": {\"duration\": 76.12, \"timestamps\": [[0, 68.12], [68.88, 70.79], [71.17, 76.12]], \"sentences\": [\"We see a man shooting pool on a blue table.\", \" The man finishes and smiles as his friend claps his hands.\", \" We see the closing screen.\"]}, \"v_xJNqBSJ7rqU\": {\"duration\": 177.87, \"timestamps\": [[0, 28.46], [28.46, 177.87]], \"sentences\": [\"A senior picture of a female is shown and then a screen flashes indicating that her highlights are about to be shown.\", \"Several videos of her are then shown running up against girls from other teams defending her territory and stripping the ball from the other opponents.\"]}, \"v__vbwjI1QA7g\": {\"duration\": 108.74000000000001, \"timestamps\": [[0, 8.7], [8.16, 35.34], [35.34, 56], [56, 70.14], [69.59, 108.74]], \"sentences\": [\"man is standing in a room with dart game haging on the wall.\", \" he took one of the dart from the board and keeps talking, approaches to the camera and shows the sharp dart.\", \" he throw the dart to the board and lean on the wall.\", \" man open his arms and swings side to side, kneel on the floor.\", \" he take other dart into the board and with the head down starts yelling at the camera.\"]}, \"v_GXEuuWhEMCY\": {\"duration\": 181.84, \"timestamps\": [[0, 6.36], [10, 35.46], [36.37, 79.1], [79.1, 149.11], [154.56, 181.84]], \"sentences\": [\"A man stands, screaming loudly as he lifts a barbell.\", \" He lifts a weight above his head.\", \" Another man is shown lifting a weight as a crowd watches.\", \" Several weight lifters continue lifting barbells.\", \" A man is shown lying down as he is injured.\"]}, \"v_8kC5L_Iu3KY\": {\"duration\": 6.32, \"timestamps\": [[0.09, 2.87], [2.75, 6.25]], \"sentences\": [\"A person is seen sitting behind a set of drums playing them consistently.\", \" She continues to play the drums while the camera zooms in on her hands.\"]}, \"v_08ItAtlb60Q\": {\"duration\": 80.18, \"timestamps\": [[0, 16.84], [16.44, 35.28], [35.28, 61.34], [61.34, 80.18]], \"sentences\": [\"There are many trophies on display that you can win for doing a good job.\", \" Men on their bikes are waiting to start a race .\", \" Two men hit their knuckles together before the race begins.\", \" The audience is cheering and the riders are off going super fast trying to win.\"]}, \"v_9PGFsuE3Ye0\": {\"duration\": 143.78, \"timestamps\": [[9.35, 43.85], [45.29, 101.36], [107.83, 122.21], [130.84, 143.78]], \"sentences\": [\"A man is seen doing karate in front of another with a knife and leads into a shot of a man bowling and text across his face.\", \" The man celebrates as people watch and clipart is shown as well as more shots of the man celebrating and bowling.\", \" The man holds a trophy in the end and screams to the camera and the audience.\", \" The camera then zooms in on a photo on a poster.\"]}, \"v_H9FxfosWRTE\": {\"duration\": 155.95, \"timestamps\": [[0, 70.18], [36.65, 155.95]], \"sentences\": [\"A woman is seen kneeling down before a large weight and speaking to the camera continuously.\", \" She moves her body around the weight and pointing around to demonstrate how to properly hold the weight.\"]}, \"v_jETKNHeojN8\": {\"duration\": 111.03999999999999, \"timestamps\": [[4.44, 13.88], [18.32, 28.87], [30.54, 41.64], [47.75, 51.63], [62.74, 103.82]], \"sentences\": [\"The woman says a few words in the beginning while the dancer stands silently.\", \" First the dancer makes sure her legs are positioned correctly.\", \" Then the ballet dancer brings one foot into a coupe.\", \" Next she straightens both legs and puts one leg in the front and brings it back down.\", \" She then repeats those 3 steps over again.\"]}, \"v_AyWXuUCDSjw\": {\"duration\": 74.35, \"timestamps\": [[0, 0.74], [1.49, 28.63], [15.99, 18.59], [19.33, 21.93], [27.88, 34.2], [40.89, 46.47], [54.65, 62.45], [63.2, 69.15], [69.15, 74.35]], \"sentences\": [\"We see an opening title screen.\", \" We see 5 men walking down the street sides by side.\", \" A man looks at the men.\", \" A lady looks at the men.\", \" Two men turn and look at each other.\", \" One man buys drinks as everyone stares at them.\", \" The five men drink their beers in one gulp.\", \" The men leave the bar drunk.\", \" We see a gray closing screen.\"]}, \"v_7LhKz7863kg\": {\"duration\": 20.57, \"timestamps\": [[0, 20.57], [0, 20.47], [0.62, 20.57]], \"sentences\": [\"woman wearing black clothes is laying down in the floor doing abs.\", \" woman doing abs in the floor have her fet tied to elastics.\", \" woman is doing exercise in a roofed gym.\"]}, \"v_AvjExlAl18I\": {\"duration\": 148.82999999999998, \"timestamps\": [[0, 38.7], [35.72, 127.25], [123.53, 148.83]], \"sentences\": [\"A man is seen performing a dance routine on a stage while an orchestra plays behind him.\", \" A woman then steps in and dances with the man while spinning his hat around and twirling on the stage.\", \" The two end by making a funny gesture and then walk off the stage to the side.\"]}, \"v_W0M9tXQV3Xg\": {\"duration\": 191.75, \"timestamps\": [[10.55, 76.7], [76.7, 132.31], [132.31, 191.75]], \"sentences\": [\"A man is talking in next to several exercise bikes.\", \" He starts working out on one of the bikes.\", \" People are working out in the dark.\"]}, \"v_rdZ0TZcP0NU\": {\"duration\": 39.13, \"timestamps\": [[1.37, 38.73], [1.37, 4.7], [10.96, 12.72], [13.5, 38.73]], \"sentences\": [\"A group of people play polo on horses on  a grass covered, fenced in field surrounded by onlookers and spectators.\", \"   A man on a horse walks down the center of a line of people on a horse while holding a long mallet pole.\", \"  A group of spectators standing and sitting on the grass look on from the side of the field.\", \"  The game of polo begins and the people on the horses begin to swing their mallet poles across the ground.\"]}, \"v_h1bdAd1cXSw\": {\"duration\": 27.08, \"timestamps\": [[0.54, 8.53], [6.36, 26.13]], \"sentences\": [\"A young child is seen walking to the end of a diving board and looking off into the camera.\", \" The boy then dives into the water and the camera captures him moving from underwater.\"]}, \"v_fg_R9Vrr1KI\": {\"duration\": 50.64, \"timestamps\": [[0, 7.34], [7.85, 33.68], [34.18, 50.64]], \"sentences\": [\"A gymnast mounts a high beam in a gym.\", \" He flips and does several springs.\", \" He then dismounts, throwing his arms up as he does so.\"]}, \"v_7-uMJ_5WsZM\": {\"duration\": 133.7, \"timestamps\": [[0, 76.21], [76.21, 133.7]], \"sentences\": [\"A large orange machine is shown moving down a road with a claw like arm and razor cutting down the grass.\", \"The cutting continues and the machine is being operated in different areas such as highways.\"]}, \"v_pHU2Ie4VQBg\": {\"duration\": 211.3, \"timestamps\": [[2.11, 185.95], [20.07, 211.3]], \"sentences\": [\"A girl is seen performing a belly dancing routine on a small stage.\", \" She continues dancing and performing around the stage and finishes her dance with a posing, bowing, and walking off.\"]}, \"v_e9l3PzP4uGQ\": {\"duration\": 145.07999999999998, \"timestamps\": [[0, 71.09], [61.66, 126.94], [129.12, 145.08]], \"sentences\": [\"Various clip are shown of ingredients being laid out in bowls followed by a person mixing them all together.\", \" The person rolls them into balls and sets them on a plate, finally sticking them into the oven.\", \" She then pulls out the made cookies and gives the camera a thumbs up.\"]}, \"v_tQ9yPS_BJHQ\": {\"duration\": 60.72, \"timestamps\": [[0, 60.72], [24.29, 29.45], [48.88, 51.61]], \"sentences\": [\"People are driving bumper cars and crashing into each other.\", \" A green car crashes into a gold car.\", \" A blue car crashes into a gold car.\"]}, \"v_3UgGvKnelfY\": {\"duration\": 115.57, \"timestamps\": [[0.58, 42.18], [37.56, 90.14], [65.29, 114.99]], \"sentences\": [\"A camera pans around a large warehouse and shows clips of materials being made and men working.\", \" Machinery is shown pushing materials along while people watch on the sides.\", \"  More products for homes are being pushed out and a machinery is shown carrying them away.\"]}, \"v_airowj9k5ro\": {\"duration\": 60.58, \"timestamps\": [[0.3, 29.99], [29.99, 60.28]], \"sentences\": [\"A close up of a slide is seen followed by an adult and a young child riding down the slide.\", \" The woman laughs with the baby and picks her up at the bottom.\"]}, \"v_5ZmZr2bguy0\": {\"duration\": 43.63, \"timestamps\": [[0, 21.38], [13.96, 32.94], [29.89, 42.76]], \"sentences\": [\"A woman is seen standing in a large circle and bending herself forward.\", \" The woman then spins herself around and throws an object off into the distance.\", \" The woman does this several times afterwards.\"]}, \"v_O8TIRkB99Lo\": {\"duration\": 125.99, \"timestamps\": [[0, 8.82], [10.08, 51.66], [52.29, 82.52], [83.78, 125.99]], \"sentences\": [\"A man stands in a doorway talking.\", \" The man climbs a ladder and adds a piece of wallpaper to the wall.\", \" The man uses a tool before turning to speak then smooths it out.\", \" The man speaks and uses another tool to cut a piece off then wipes the ceiling.\"]}, \"v_-kuXhOsHAc4\": {\"duration\": 232.6, \"timestamps\": [[0, 3.49], [3.49, 56.99], [58.15, 160.49], [124.44, 130.25], [131.42, 138.39], [159.33, 165.14], [165.14, 222.13], [227.94, 232.6]], \"sentences\": [\"We see an opening title screen.\", \" A person walks up stairs into a room and sees beer poured from a keg and people talking.\", \" People stand and play beer pong while others watch.\", \" A man tries to blow a ball out of a cup.\", \" A man hits the ball away from the cup.\", \" The left team jumps and cheers.\", \" We see peoples faces up close and plates of food on a table.\", \" We see a lighted sign and end.\"]}, \"v_mXbrIyhXbQo\": {\"duration\": 31.23, \"timestamps\": [[0, 8.43], [8.59, 23.42], [21.55, 29.98]], \"sentences\": [\"A man is seen standing around a neighborhood on a pair of stilts.\", \" The man walks up the street and turns towards the back.\", \" He then begins jumping down the road and looking back to the camera.\"]}, \"v_M_Jib8gkQpg\": {\"duration\": 8.62, \"timestamps\": [[0.09, 4.52], [4.52, 8.31]], \"sentences\": [\"A man jumps of a diving board backwards into a swimming pool.\", \" There is a big splash and the man surfaces smiling.\"]}, \"v_Q7R3ajucvyE\": {\"duration\": 239.31, \"timestamps\": [[0, 198.62], [187.85, 204.61], [209.39, 230.93]], \"sentences\": [\"The boy holds open his eyelids and places in a contact lens.\", \" The man tilts back his head and closes his eyes to adjust the contact lens.\", \" The man rubs his eyes then opens them wide to show the contacts.\"]}, \"v_w28ML-KpYdI\": {\"duration\": 7.01, \"timestamps\": [[0, 1.4], [1.82, 5.22], [5.36, 7.01]], \"sentences\": [\"a man is standing in his back yard.\", \" He is laughing as he paits the side of a shed.\", \" He uses a sprayer to apply the red paint.\"]}, \"v_Ww2_b9f6Kh0\": {\"duration\": 44.21, \"timestamps\": [[0, 4.2], [4.42, 17.24], [18.35, 27.63], [28.74, 44.21]], \"sentences\": [\"We see a man on a diving board high in the air.\", \" The man does a handstand and fall from the handstand into the water.\", \" The next man simply runs and dives while flipping into the water.\", \" The final man does a more traditional  dive.\"]}, \"v_c-X500da7JU\": {\"duration\": 57.26, \"timestamps\": [[8.02, 25.19], [25.19, 30.92], [30.92, 50.68]], \"sentences\": [\"A person shows how to warp a gift like a professional and do fancy ornaments and ribbons on gifts.\", \" The woman arrange a gift basket and shows a pile of nice gifts.\", \" Then, the woman wraps gifts with different shapes and ornaments.\"]}, \"v_c81l0bAPiFo\": {\"duration\": 57.47, \"timestamps\": [[0, 7.18], [7.18, 24.71], [26.44, 46.55], [47.13, 49.71], [49.42, 57.47]], \"sentences\": [\"A lady kneels in a canoe as she rows on a lake.\", \" A lady attempts to stand on one foot in the boat and falls into the lake.\", \" A lady has one foot in the water and one in the boat and she starts doing push-ups on the boat.\", \" The lady finishes and shows her muscle to the camera.\", \" We see an emblem on the screen.\"]}, \"v_OhPSVjVQZ8o\": {\"duration\": 9.96, \"timestamps\": [[0, 9.81], [0.3, 9.36]], \"sentences\": [\"A young child wearing a helmet is climbing on monkey bars on a playground with a small boy underneath her.\", \" A person riding a bike goes around the young girl and she climbs until the last bar.\"]}, \"v_w6ofRgXA0xc\": {\"duration\": 124.51, \"timestamps\": [[0, 29.88], [28.64, 37.97], [42.95, 78.44], [79.06, 124.51]], \"sentences\": [\"A man in red short is pouring a bottle onto some wood.\", \" The man throws some paper on top of the wood.\", \" The man throws matches at the pile of wood.\", \" A fire begins to burn.\"]}, \"v_BEA4YVQv7Wk\": {\"duration\": 157.15, \"timestamps\": [[0, 23.57], [22, 132.01], [18.86, 157.15]], \"sentences\": [\"A camera pans around a large indoor pool and shows a man jumping off a diving board into the water.\", \" Several people are shown warming up and followed up by many jumping into the pool.\", \" A man instructs them on how to properly land in the water followed by several people jumping one at a time into the pool, including the camera man.\"]}, \"v_YbD0P8dH6Oc\": {\"duration\": 86.36, \"timestamps\": [[0.43, 44.47], [44.91, 64.34], [64.77, 78.15], [78.15, 86.36]], \"sentences\": [\"Two sumos prepares to wrestle in a ring while a judge stands in middle of them.\", \" Then the sumos wrestle, and the thin sumo throws the fat sumo to the floor.\", \" After, the fat sumo stands up and left the ring.\", \" The crow applaud, then men broom the ring.\"]}, \"v_JxBFSll-mDE\": {\"duration\": 78.39, \"timestamps\": [[0, 40.76], [38.41, 78.39]], \"sentences\": [\"A man is seen speaking to the camera holding a hockey stick and leads into him instructing other players.\", \" The man continue playing around one another while the man yells to them and the others continue playing.\"]}, \"v_46l7dmH8pCg\": {\"duration\": 105.09, \"timestamps\": [[0, 21.02], [21.54, 57.28], [62.53, 86.7], [92.48, 105.09]], \"sentences\": [\"A group of people are in the backyard of a house, playing croquette.\", \" A woman uses the mallet to hit the ball, then others join in.\", \" A man holding a mallet and ball talks about the process of how to play the game, playing and hitting the ball and he explains it.\", \" He then puts his arms out at his sides.\"]}, \"v_V6lFpCjRKC8\": {\"duration\": 64.23, \"timestamps\": [[0.64, 29.22], [28.58, 61.98]], \"sentences\": [\"A small group of men are seen standing around a court with many people sitting and watching on the sides.\", \" A person runs down with a pole vault and throws it off into the distance while the same clip is shown again in slow motion and another goes after.\"]}, \"v_9FAPy8NVDgY\": {\"duration\": 158.73, \"timestamps\": [[0, 8.73], [8.73, 19.84], [20.64, 35.71], [36.51, 59.52], [59.52, 73.81], [64.29, 96.03], [73.02, 101.59], [102.38, 119.84], [120.64, 138.1], [138.1, 153.18], [153.18, 158.73]], \"sentences\": [\"The video begins with an introduction to Recipes in Motion about quick spaghetti sauce.\", \" The video transitions into showing a ladle pouring the sauce onto noodles.\", \" Someone begins to cut various vegetable with a knife, this includes a green vegetable and onions.\", \" Next an empty metallic pan is shown as someone pours oil and the vegetables into it.\", \" They then begin stirring the vegetables with the oil.\", \" After this what other ingredients are added include tomatoes, spices and some type of liquid.\", \" Everything is being stirred together.\", \" The pan is removed and the stirred ingredients are blended.\", \" The blended ingredients are put back onto the man and a red substance from a can is poured onto the pan and mixed in.\", \" The sauce is completed and poured onto the noodles.\", \" The video ends with with an orange background with information on where to watch more videos.\"]}, \"v_ngE2y5ExVqw\": {\"duration\": 60.81, \"timestamps\": [[20.07, 31.02], [27.67, 44.7], [52.91, 60.81]], \"sentences\": [\"A teenager boy hits a Sponge Bob pi\\u00f1ata covered his eyes with a cloth while woman takes pictures.\", \" A boy hits the pi\\u00f1ata until it falls while the boy cover his eyes with a blue cloth.\", \" A man rubs his face with his hand and then he sticks his tong out.\"]}, \"v_hSnTYQ9osIg\": {\"duration\": 129.92, \"timestamps\": [[0, 64.31], [63.66, 129.92]], \"sentences\": [\"Two people are outside in ball dancing in a plaza as a group of people surround them and watch.\", \"People come and go to watch the two people dance and then they finally stop dancing,bow and grabs a cloth to wash their face.\"]}, \"v_3C4Nry679BA\": {\"duration\": 14.49, \"timestamps\": [[0, 14.49], [1.3, 8.77], [4.35, 14.49]], \"sentences\": [\"A woman places vegetable leaves in a bow.\", \" The camera pans right to show a man standing beside the woman.\", \" The man slices a cucumber on a plate.\"]}, \"v_2X4-yp_EFVE\": {\"duration\": 28.26, \"timestamps\": [[0, 5.09], [5.79, 28.26]], \"sentences\": [\"Two men are seen leading over the hood of the car while grabbing onto each other's hands.\", \" They then begin a game of arm wrestling and ends with one man winning and both looking at the camera and one holding his wrist.\"]}, \"v_fc3yCFrmkCU\": {\"duration\": 202.82999999999998, \"timestamps\": [[1.01, 2.03], [3.04, 4.06], [4.06, 199.78], [200.8, 201.81]], \"sentences\": [\"Video title or label are shown.\", \" A guy gestures the peace sign.\", \" A guy is snow board down a slope.\", \" A group in a row wave goodbye.\"]}, \"v_Z57GknpXOBg\": {\"duration\": 106.55, \"timestamps\": [[0, 5.86], [5.86, 71.39], [71.39, 84.17], [84.7, 94.83], [94.83, 106.55]], \"sentences\": [\"A man is getting ready to waterboard, there's a boat waiting for him to his right, and the white words on the right bottom corner say \\\"Spray Lake Watersports & Activity Centre\\\".\", \"The man goes in the water and as he's holding onto the bar connected to the rope and the boat, he is quickly waterboarding on the lake, sometimes using both hands to hold onto the bar and sometimes alternating hands.\", \"The man lets go of the bar and begins to slow towards a dock.\", \"A pair of hands are now holding a waterboard that has black and silver pair of shoes attached to it.\", \"A person is briefly shown waterboarding and the view goes to bubbling underwater.\"]}, \"v_RAaRFD5M8h4\": {\"duration\": 106.65, \"timestamps\": [[0, 29.33], [27.73, 80.52], [76.79, 105.58]], \"sentences\": [\"A close up of a dog is seen with a person holding a razor.\", \" The person then holds up the dogs face and begins trimming around it's eyes.\", \" The person continues shaving and ends by combing it's face.\"]}, \"v_s_gb6Xi_J5g\": {\"duration\": 12.59, \"timestamps\": [[0, 7.17], [5.66, 11.2], [10.95, 12.59]], \"sentences\": [\"The little girl is on top of the monkey bar.\", \" A little kid in colorful shirt is crossing the monkey bar.\", \" The little girl fell from monkey bar and went back to the monkey bar.\"]}, \"v_ognXkeWL7h8\": {\"duration\": 189.41, \"timestamps\": [[0, 15.15], [15.15, 42.62], [42.62, 189.41]], \"sentences\": [\"A toddler paint her lips with a lipstick.\", \" Then, the toddler applies make up to her eyelids on front a blue mirror.\", \" Next, the toddle takes more make up from a palette to continues applying to her eyelids.\"]}, \"v__7AyUgKv3kU\": {\"duration\": 71.87, \"timestamps\": [[0, 34.86], [34.14, 65.04], [63.96, 71.87]], \"sentences\": [\"A kid is seen speaking to the camera and pans over to an older woman blowing leaves in yard.\", \" The woman speaks to the boy and he walks over to her while she still blows leaves around.\", \" In the end she's seen walking away past a fence.\"]}, \"v_uiG7A8lEdEg\": {\"duration\": 45.83, \"timestamps\": [[0, 45.83], [0.69, 4.12], [29.56, 30.47], [37.58, 45.83], [42.39, 43.54]], \"sentences\": [\"Players are playing lacrosse outdoors in front of an audience.\", \"  A player is laying on the field.\", \" The player hits the ball into the goal.\", \" The audience and teammates celebrate the goal, and teammates pat each other on the shoulder.\", \" A guy removes his helmet.\"]}, \"v_mzXRehGBEOg\": {\"duration\": 94.15, \"timestamps\": [[0, 5.18], [5.65, 8.47], [11.3, 14.12], [16, 79.55], [27.3, 29.66], [80.02, 81.44], [82.85, 86.14]], \"sentences\": [\"A woman smiles at the camera.\", \" The woman rinses a toothbrush under water.\", \" The woman applies toothpaste to the toothbrush.\", \" The woman demonstrates brushing her teeth.\", \" The woman rinses the toothbrush under water again.\", \" The woman rinses her mouth with a glass of water.\", \" The woman towels her mouth and shows her teeth.\"]}, \"v_-eCMRApm6n4\": {\"duration\": 197.01, \"timestamps\": [[6.9, 191.11], [87.67, 195.05]], \"sentences\": [\"A girl shows how to make lemonade.\", \"  She then rakes in the cash her parents helped her.\"]}, \"v_TrhOt1WyU7Y\": {\"duration\": 62.74, \"timestamps\": [[0, 16.31], [19.14, 44.86], [34.51, 59.29]], \"sentences\": [\"A camera pans to a kite flying around in the sky as well as people in a field.\", \" A man is seen off to the site controlling the kite with his hands.\", \" He continues flying the object around the sky with the camera following.\"]}, \"v_d-sWAcDYsbc\": {\"duration\": 212.87, \"timestamps\": [[0, 3.19], [3.19, 212.87], [209.68, 211.81], [210.74, 212.87]], \"sentences\": [\"A young man sits down on a chair in front of a drum set.\", \"  He begins playing the drums, which are located inside of a living room.\", \"  The playing continues until he puts down the drum sticks and looks at the camera with a shocked look.\", \" The video ends with the man getting up to turn off the camera.\"]}, \"v_cdO-xmdjM7Q\": {\"duration\": 180.09, \"timestamps\": [[0, 45.02], [45.02, 113.46], [114.36, 180.09]], \"sentences\": [\"A group of people walk holding inflatable boats and arrive to a lake, then the people sail in the lake.\", \" After, the people take the boats to sail on a narrow choppy river.\", \" The rafters arrive to a cascade and the boats fold when descend the cascade, then they continue rafting in the river.\"]}, \"v_zlAwW2Pxc1A\": {\"duration\": 149.05, \"timestamps\": [[0, 5.96], [5.96, 89.43], [89.43, 96.14]], \"sentences\": [\"A man is standing on a ladder.\", \" He is hanging wall paper onto a wall in front of him.\", \" He uses a tool to smooth out the wall paper once it's on the wall.\"]}, \"v_MSiXlMKPGKs\": {\"duration\": 234.01, \"timestamps\": [[0, 102.96], [80.73, 234.01]], \"sentences\": [\"Various shots of people standing together and moving around ice are shown as well as people playing shuffle board and yelling to one another.\", \" Several people are interviewed on the camera that intervenes with shots of shuffleboard and people rubbing their necks and speaking to one another.\"]}, \"v_3W92sMbvoaE\": {\"duration\": 29.7, \"timestamps\": [[0, 10.84], [11.43, 24.95], [26.28, 29.7]], \"sentences\": [\"A woman is riding an intertube down a snowy hill.\", \" She spins as she goes down, running into another person.\", \" She is knocked out of her intertube.\"]}, \"v_68oJj9QktGg\": {\"duration\": 181.88, \"timestamps\": [[0, 90.94], [62.75, 181.88]], \"sentences\": [\"Several shots are shown of bulls running into people in busy streets and people becoming hurt by the bulls.\", \" Many more shots are shown of bulls hurting people in various locations while others try to help them on the side.\"]}, \"v_JtQSDGSKnsY\": {\"duration\": 167.35, \"timestamps\": [[20.08, 127.18], [68.61, 76.14], [109.61, 126.35], [132.2, 146.43]], \"sentences\": [\"A person uses a vacuum cleaner the clean the carpet of debris in a room sweeping it back and forth.\", \"  The vacuum cleaner collecting bucket is moved in order to reach a new area of carpet.\", \" The person vacuums the carpet area around the couch.\", \" The person lifts up the head of the vacuum and examines the wheels underneath.\"]}, \"v_ZvVnXvKlKbQ\": {\"duration\": 143.66, \"timestamps\": [[10.06, 15.8], [28.01, 33.76], [117.08, 118.52]], \"sentences\": [\"Bowling pins are getting hit with bowling ball.\", \" A crowd cheers sitting behind the bowling alley.\", \" A man kisses a trophy in his hands.\"]}, \"v_wmmOt79-Azo\": {\"duration\": 87.87, \"timestamps\": [[0, 87.87], [60.63, 62.38], [86.11, 87.87]], \"sentences\": [\"People are standing in a room playing tennis.\", \" A woman picks up a ball that falls onto the ground.\", \" The girl walks up to the net.\"]}, \"v_yNHc-xADBm8\": {\"duration\": 83.13, \"timestamps\": [[0, 83.13], [3.74, 83.13], [11.64, 83.13], [21.2, 83.13]], \"sentences\": [\"A camp fire burns brightly in the night.\", \" The fire slowly grows in size.\", \" The scene becomes brighter and better lit.\", \" There are trees in the background.\"]}, \"v_EPql2nTJb9I\": {\"duration\": 73.31, \"timestamps\": [[0, 73.31], [9.53, 73.31]], \"sentences\": [\"A man and woman are standing an a kitchen.\", \" The woman is chopping up various vegetables on a white tray.\"]}, \"v_-fjUWhSM6Hc\": {\"duration\": 198.14, \"timestamps\": [[0, 198.14], [8.92, 16.84], [1.98, 198.14], [20.8, 21.79], [22.79, 23.78], [24.77, 26.75], [0.99, 198.14], [30.71, 31.7], [32.69, 35.66], [36.66, 40.62], [43.59, 44.58], [45.57, 47.55], [48.54, 52.51], [55.48, 57.46], [58.45, 62.41], [63.4, 74.3], [90.15, 97.09], [98.08, 105.01], [106, 109.97], [111.95, 115.91], [116.9, 165.44], [166.43, 198.14]], \"sentences\": [\"A huge crowd is in the stands in an arena.\", \"  A man throws a javelin.\", \" Photographers take pictures in the background.\", \" Several men run to where the javelin lands.\", \" The man that threw the javelin celebrates.\", \" Another man throws a javelin.\", \" People walk all around doing different things.\", \" Several men run out to where the javelin lands again.\", \"  The second man to throw the javelin and a man in the stands celebrate.\", \" A third man throws a javelin so hard that he falls.\", \" The same men run to the the javelin's landing spot.\", \" The third man walks away looking disappointed.\", \" A fourth man throws a javelin.\", \" Again, the men run to where the javelin lands.\", \" The fourth man looks disappointed looking for his jacket.\", \" The first man to throw a javelin runs around celebrating and hugs another man.\", \" A man puts a gold medal around the neck of the first javelin thrower and shakes his hand.\", \" He puts a silver medal on the second thrower.\", \" He puts a bronze medal on the third thrower.\", \" All of the men shake hands.\", \" The gold medal winner talks to a news person.\", \" The silver medalist talks to a news person.\"]}, \"v_TsPh4-BsCYk\": {\"duration\": 161.32999999999998, \"timestamps\": [[0, 79.86], [79.86, 156.49]], \"sentences\": [\"A woman is shown holding a shot put and talking to the camera while standing in a large gym.\", \" She demonstrates how to properly throw the tool and performs several throws to show how it's one correctly.\"]}, \"v_1d6FGbM4FRM\": {\"duration\": 105.49000000000001, \"timestamps\": [[0, 8.97], [8.97, 105.49]], \"sentences\": [\"One person covers the floor with tiles.\", \" Then, another man come and help cover the floor with tiles.\"]}, \"v_zoSNO_k9RoM\": {\"duration\": 45.0, \"timestamps\": [[0, 18.68], [18.9, 45]], \"sentences\": [\"A person puts a contact lens in his right eye.\", \" Then, the person puts a contact lens in his left eye.\"]}, \"v_jXZ6WVxXgLA\": {\"duration\": 12.91, \"timestamps\": [[0, 1.55], [2.07, 7.49], [7.94, 12.91]], \"sentences\": [\"A man is using a large broom in a parking lot.\", \" He spins the broom in circles around him.\", \" The spinning brushes the piles of leaves out of the parking lot.\"]}, \"v_bFRqNqyVznA\": {\"duration\": 151.98, \"timestamps\": [[2.28, 94.98], [72.95, 149.7]], \"sentences\": [\"A woman is seen speaking to the camera while holding a rag and cleaner and leads into her spraying down the gloves and moving them along a piano.\", \" The woman continues wiping all around the piano and ends by speaking to the camera.\"]}, \"v_p2P5g7HTJeY\": {\"duration\": 163.32999999999998, \"timestamps\": [[0, 3.27], [3.27, 157.61], [24.5, 30.22], [57.17, 60.43], [89.01, 97.18], [120.05, 127.4], [151.08, 154.35], [158.43, 163.33]], \"sentences\": [\"We see a green title screen.\", \" People are running around on a field playing a  game of lacrosse.\", \" A man in white shorts sits down in front of the camera.\", \" A man knocks over one of his team mates.\", \" Two men almost crash into the camera.\", \" A group of players fight over the ball.\", \"  A man hits the ball far across the field.\", \" The screen fades to green.\"]}, \"v_-KWToNMY1Lc\": {\"duration\": 86.38, \"timestamps\": [[0, 16.41], [17.28, 18.14], [18.14, 44.05], [27.64, 29.37], [44.92, 53.12], [53.55, 55.28], [55.28, 79.04], [79.9, 86.38]], \"sentences\": [\"A man is seated on a horse and holding a lasso while assistants stand by and an audience watches.\", \" A cow is released and the man chases after it.\", \" The man lassos and ties it up.\", \" A man briefly enters the camera frame.\", \" Another man is seated on a horse and holding a lasso in the same setting.\", \" A cow is released and the second man chases after it.\", \" The second man lassos and ties it up.\", \" Two riders and two assistants enter the frame.\"]}, \"v_ZQU0p5OKC04\": {\"duration\": 22.13, \"timestamps\": [[0.33, 21.24], [0.33, 2.54], [2.54, 12.39], [12.39, 21.24]], \"sentences\": [\"A man bungee jumps from an elevated capsule into a body of water beneath him in a forest like environment.\", \"   A man in a blue shirt is strapped into a bungee jumping harness.\", \"  The man is then lifted into the air in a yellow capsule with a guide, high above a body of water.\", \"  The man then jumps out of the capsule and falls the distance between the capsule and the water and plops into the water.\"]}, \"v_niHEMszTMBU\": {\"duration\": 100.75, \"timestamps\": [[0, 31.23], [31.23, 43.83], [43.32, 46.35], [46.35, 62.97], [62.47, 67.5], [67.5, 83.12], [83.12, 100.75]], \"sentences\": [\"A man in a blue shirt is standing in the woods explaining something.\", \" He then shows how to set up wood for a fire.\", \"  The camera goes back to him standing.\", \" The camera goes to the fire being started.\", \"  the camera goes back to him standing.\", \"  The camera goes back to him building a different kind of campfire.\", \"  He is standing in the woods again talking.\"]}, \"v_PzAjZbCEbLU\": {\"duration\": 207.19, \"timestamps\": [[0, 121.21], [121.21, 207.19]], \"sentences\": [\"a video of how to prevent RV roof leaks is shown, there is a roof of an RV and a man cleaning the glue around the leak.\", \" man is putting white glue around the leak.\"]}, \"v_XNzQVEmoJrY\": {\"duration\": 81.78, \"timestamps\": [[0, 3.68], [5.72, 17.17], [10.63, 16.77], [17.58, 80.15], [80.55, 81.78]], \"sentences\": [\"We see finger in front of the camera.\", \" A man in green walks unto a squash court.\", \" The light goes out and the room is dark.\", \"The man in green walks to the middle of the court and hits the ball back and forth.\", \" The man finishes and walks towards the camera.\"]}, \"v_6q7LQZLC_N8\": {\"duration\": 151.19, \"timestamps\": [[0, 151.19], [77.86, 108.85], [111.12, 130.02], [143.63, 151.19]], \"sentences\": [\"A sailboat with dark red plum colored sails is riding on the ocean.\", \" The boat turns and we see it from behind as we move to the left side.\", \" The camera zoom in and out then flashes to another angle.\", \" We see the credits run over the video.\"]}, \"v_7qeiQKbWpLM\": {\"duration\": 34.92, \"timestamps\": [[0, 34.92], [0, 1.92], [5.59, 13.1], [16.76, 22.35], [32.3, 34.92]], \"sentences\": [\"A female gymnast goes through her routine as her coach supervises.\", \"  Graphics appear at the bottom of the screen that gives the girl's name and country she represents.\", \"  Her coach walks to the uneven bars to position himself in case she falls.\", \"  The coach walks up to the uneven bars a second time to position himself to catch her if needed and then walks across to the other side of the mats.\", \"  She gets off the uneven bars and lands on the mat and poses.\"]}, \"v_8VPiqCCOPWg\": {\"duration\": 198.69, \"timestamps\": [[0, 12.92], [14.9, 19.87], [25.83, 57.62], [61.6, 180.81], [181.81, 198.69]], \"sentences\": [\"A woman is seen diving through colorful banners.\", \" The outside of a building is shown.\", \" We see a scoreboard, then women being prepped for swimming by their coaches.\", \" The women take turns diving off the high board, flipping as they go.\", \" The winner poses with a medal as everyone claps.\"]}, \"v_vijDPbwU6vA\": {\"duration\": 93.09, \"timestamps\": [[0, 93.09], [16.29, 93.09], [87.5, 93.09]], \"sentences\": [\"People are sitting around a campfire.\", \" A man in a hat stands up and chops wood.\", \" He gives a thumbs up and puts the ax over his shoulder.\"]}, \"v_ZKSORB5ygRM\": {\"duration\": 168.9, \"timestamps\": [[0, 8.45], [7.6, 12.67], [26.18, 130.9], [136.81, 168.9]], \"sentences\": [\"A man drives his car to the beach.\", \" He gears up for the surf.\", \" He then surfs across a large wave.\", \" He finishes and stands on the beach.\"]}, \"v_h0R04AFnor4\": {\"duration\": 53.34, \"timestamps\": [[0, 17.87], [17.87, 19.2], [19.47, 53.34]], \"sentences\": [\"A person touches the skin with a green light while cleaning the area.\", \" The person clean the leg with cotton.\", \" The person continues applying the green light.\"]}, \"v_9a6C5rvS56A\": {\"duration\": 78.74, \"timestamps\": [[0.39, 59.84], [0.39, 77.95], [66.93, 77.95]], \"sentences\": [\"There are 4 african american children skipping around on the concrete ground.\", \" 3 are wearing dresses and 1 of them is wearing a shirt and pants.\", \" After they're done skipping, they go to pick vegetables on the side of a building and put them into a blue bowl.\"]}, \"v_etG65un_AiQ\": {\"duration\": 190.51, \"timestamps\": [[0, 9.53], [10.48, 84.78], [85.73, 89.54], [95.26, 137.17], [138.12, 171.46], [147.65, 152.41], [172.41, 190.51]], \"sentences\": [\"A jet ski is parked and a man is riding one.\", \" We see a man's name on the screen and a man behind a boat and a man jet skiing  and flipping around.\", \" Two men on a jet ski shake their hair.\", \" A person name is on the screen and we see a man jet ski.\", \" Another name and another man on the jet ski.\", \" We see the man as he prepares to ski riding behind the boat.\", \" We see the lake and then the closing credits.\"]}, \"v_UBtVJ-w9O28\": {\"duration\": 236.17000000000002, \"timestamps\": [[0, 54.32], [54.32, 120.45], [120.45, 236.17]], \"sentences\": [\"A group of men are outside standing in a circle hitting sticks as two males begin fighting.\", \"Next,two more men begin dancing around the circle making fighting movements.\", \"After,the men come into the circle in pairs and begin to dance around each other as if they are fighting each other.\"]}, \"v_3jb0w48ACkU\": {\"duration\": 42.96, \"timestamps\": [[1.93, 35.01], [24.49, 41.24]], \"sentences\": [\"A girl video records a man throwing lighting the end of a stick on fire.\", \" The man blows the stick of fire into a pile of wood and eventually creates a fire.\"]}, \"v_bL0bXUG2QWI\": {\"duration\": 107.16, \"timestamps\": [[0, 107.16], [23.58, 77.16], [0, 77.16], [77.69, 107.16]], \"sentences\": [\"Two men are standing on a gym.\", \" A man gets on his knees and lifts two weights.\", \" A man stands behind him and talks.\", \" The man stands up and kneels back down several times.\"]}, \"v_hEabp9fbqtw\": {\"duration\": 200.09, \"timestamps\": [[0, 15.01], [36.02, 123.05], [129.06, 200.09]], \"sentences\": [\"A man is wearing white in front of a building.\", \" He is doing several martial arts moves.\", \" He moves very slowly as he demonstrates the moves.\"]}, \"v_iksziMLKsBQ\": {\"duration\": 43.05, \"timestamps\": [[0, 0.86], [1.08, 27.55], [27.34, 29.7], [29.7, 35.73], [35.73, 43.05]], \"sentences\": [\"We see a black intro screen.\", \" We see princess Diana and a man playing pool.\", \" Photographers stand up at the end of her table.\", \" The princess and her people exit the room.\", \" We go back to the black screen.\"]}, \"v_18qVzfQ9VAs\": {\"duration\": 70.87, \"timestamps\": [[0, 7.8], [8.15, 36.5], [37.21, 56.69], [57.05, 70.87]], \"sentences\": [\"A woman is standing while wearing a pair of black boots.\", \" Her boots begin to move and kick as she starts dancing.\", \" She moves side to side, kicking in and out.\", \" The woman is fully shown as she stops dancing and begins to speak to the camera.\"]}, \"v_ZIvekQVbCZ4\": {\"duration\": 174.66, \"timestamps\": [[0, 152.83], [112.66, 115.28], [123.14, 151.08]], \"sentences\": [\"A man is jumping rope in a room.\", \" A man behind him is stretching.\", \" A man behind him starts doing push ups.\"]}, \"v_zahB34blHyk\": {\"duration\": 40.17, \"timestamps\": [[10.85, 21.89], [21.89, 35.95], [35.95, 37.56]], \"sentences\": [\"There is a man wearing a blue hazmat suit spray painting a tall fence.\", \" He is using a spray paint hose to paint the wooden fence.\", \" He moves the hose back and forth to ensure he covers the entire surface area of the fence.\"]}, \"v_d-NsZZkxTa0\": {\"duration\": 52.11, \"timestamps\": [[0, 51.58], [0, 34.39], [34.39, 52.11]], \"sentences\": [\"A little girl is running around with a stick pushing and object, playing and having a lot of fun.\", \" The little girl goes forward playing for around 10 meters and then she goes back running.\", \" She touches a red plate and positions it and then runs again to the other side.\"]}, \"v_8Zgys8Vn-4Y\": {\"duration\": 178.17000000000002, \"timestamps\": [[1.78, 91.76], [93.54, 171.93]], \"sentences\": [\"A person is shown on skis riding behind a boat on water performing various tricks.\", \" The man continues doing several different tricks on the skis and the boat moving a lot faster.\"]}, \"v_71vVRQ4l8OI\": {\"duration\": 49.13, \"timestamps\": [[0, 13.02], [13.76, 38.32], [39.06, 49.13]], \"sentences\": [\"A gymnist is seen pushing himself up onto a set of uneven bars while several other people watch on the sidelines as well as perform.\", \" Several older men man runs into frame to check on the gymnast in back while the man on the bars continues his routine.\", \" The athlete does a back flip and finishes his routine while several others run into frame.\"]}, \"v_rduaWxRvcw0\": {\"duration\": 236.18, \"timestamps\": [[0, 33.07], [38.97, 179.5], [185.4, 236.18]], \"sentences\": [\"A woman wearing a head scarf is seated, talking to the camera.\", \" She takes rollers out of her hair, one at a time.\", \" She then styles her hair and displays it to the camera.\"]}, \"v_vEiQlqCy-rI\": {\"duration\": 106.35, \"timestamps\": [[0, 26.59], [26.59, 85.61], [86.67, 106.35]], \"sentences\": [\"A goalie is shown saving several balls and being interviewed by a reporter.\", \" Many shots are shown of boys playing soccer and being interviewed and leads into the coach being interviewed.\", \" Many people enjoy watching the game and finish with more players being interviewed.\"]}, \"v_F_-w_z4B3bg\": {\"duration\": 85.89, \"timestamps\": [[0, 20.61], [19.33, 55.83], [54.97, 85.03]], \"sentences\": [\"A young man is seen sitting before an instrument with another sitting on a drum set.\", \" The man moves sticks around while looking off into the distance and begins to play.\", \" Another boy walks in and out of frame and begins singing into a microphone.\"]}, \"v_44M2Ov9JzUE\": {\"duration\": 55.82, \"timestamps\": [[0, 34.61], [20.37, 55.82]], \"sentences\": [\"The camera pans in on a volleyball player while she plays a game with others.\", \" The camera pauses every now and then to capture her movements and pans around the other people playing.\"]}, \"v_jBnNbI48KjQ\": {\"duration\": 174.34, \"timestamps\": [[0, 30.51], [30.51, 135.11], [143.83, 174.34]], \"sentences\": [\"A host speaks to the camera with various musicians sitting behind him and leads into several shots of landscapes.\", \" The same man speaks to the camera and is shown riding on a surf board with several other surfers.\", \" The man is seen once again in the studio and is interviewed by a woman and another man.\"]}, \"v_PV8QJ4QJgtY\": {\"duration\": 231.97, \"timestamps\": [[6.96, 47.55], [31.32, 155.42], [134.54, 231.97]], \"sentences\": [\"A woman is standing and talking to the camera, as she pointed to the horse next to her.\", \" A woman in yellow is sitting on the horse, the horse walked around the ramp.\", \" The horse began running in circles as the older woman is watching.\"]}, \"v_5_UEjPqtnE0\": {\"duration\": 71.01, \"timestamps\": [[1.42, 36.57], [23.79, 69.23]], \"sentences\": [\"A young child is seen sitting before a fooseball table when one hands her the ball and she puts it into the game.\", \" The man then helps the girl play on the table by moving the poles all around and pushing the people.\"]}, \"v_5QBRDpzedoI\": {\"duration\": 117.87, \"timestamps\": [[0, 17.09], [19.45, 117.87]], \"sentences\": [\"A man is running down a track in slow motion doing several jumps and landing into a pit.\", \" The same man is shown several times through various clips in slow motion performing the long jump on a track field.\"]}, \"v_GSXP6BYeS-o\": {\"duration\": 182.77, \"timestamps\": [[0, 35.64], [35.64, 57.57], [58.48, 166.32], [166.32, 182.76]], \"sentences\": [\"1 A guy shows the tools to clip his cats nails.\", \" 2 The guy wraps up the cat.\", \" 3 The Guy cut the cats nails and the cat tries to bite him a few times.\", \" 4 The guy lets the cat go.\"]}, \"v_nwBb-WkaCYU\": {\"duration\": 55.08, \"timestamps\": [[0, 52.6], [1.1, 52.6], [52.32, 55.08]], \"sentences\": [\"A person is sitting behind a table doing a rubiks cube blind folded.\", \" A timer is on the desk in front of them.\", \" The person completes the rubiks cube and sets it down on the table.\"]}, \"v_MaYV3jnGr6g\": {\"duration\": 160.96, \"timestamps\": [[0, 98.19], [98.19, 160.96]], \"sentences\": [\"person is watching her hands with soap in a handwasher, put some solution into the pots, holds an eye contact with the index finger and with the other hands open her eye and put the contact in her eye, grab the other contact and with the other hands open the eye ad put it in the eye.\", \"now the person wash her hands and opens the eye and with the fingers grab the contact from the eye and put it into a pot, then she do the same with the other eye, open the eye and grab the contact from the eye and put it in the pot.\"]}, \"v_qRT0Z6Sz_Ck\": {\"duration\": 218.71, \"timestamps\": [[0, 20.78], [25.15, 218.71], [173.87, 218.71]], \"sentences\": [\"A person gets off a plane.\", \"  A person is rollerblading through a city and hanging out with friends.\", \"  This happens in many different places, but it basically the same thing.\"]}, \"v__xtOX9UCWmU\": {\"duration\": 89.65, \"timestamps\": [[0, 17.03], [23.76, 55.14], [62.31, 89.65]], \"sentences\": [\"A man is shown against a white background.\", \" He is playing a guitar with his hands.\", \" The chords and words appear at the bottom of the screen as he plays.\"]}, \"v_DozJpP2cClI\": {\"duration\": 118.68, \"timestamps\": [[0, 49.25], [21.36, 49.25], [49.25, 118.68], [71.21, 78.92]], \"sentences\": [\"Two people are playing badminton as someone records them with a video camera.\", \" A guy hurts himself as the other people watching him laugh at him.\", \" The people that were playing badminton go over and talk to other people that are sitting in lawn chairs.\", \" The boy goes into the house as the people continue to laugh.\"]}, \"v_G9ZEi6eRhi0\": {\"duration\": 132.89, \"timestamps\": [[35.88, 95.01], [95.01, 126.24], [126.24, 132.89]], \"sentences\": [\"There are about five to six young boys bouncing and jumping in an enclosed bouncy house with basketballs in their hands.\", \" The coach is guiding them by blowing the whistle as the children continue to bounce and jump.\", \" They take turns to throw the orange balls as instructed by their coach.\"]}, \"v_ZHVzukkU9sk\": {\"duration\": 111.75999999999999, \"timestamps\": [[0, 10.06], [10.62, 46.38], [50.29, 91.08], [91.64, 111.76]], \"sentences\": [\"Two cookies are shown on a plate.\", \" The ingredients are mixed into a bowl one at a time, adding eggs, sugar, and butter.\", \" The cookies are cut out of the dough.\", \" They are then baked and assembled.\"]}, \"v_dexjr5WGeqQ\": {\"duration\": 175.52, \"timestamps\": [[14.92, 86.88], [89.52, 93.9], [95.66, 115.84], [116.72, 141.29], [146.56, 175.52]], \"sentences\": [\"The woman shows the square mats and points to the different materials and features.\", \" The woman sweeps the floor to prep for a project.\", \" The woman uses a chalk line then tape to mark the floor.\", \" The woman sets in the square carpet pieces in place to cover the floor.\", \" The woman shows the finished floor off.\"]}, \"v_9AqHhUuE9bE\": {\"duration\": 33.67, \"timestamps\": [[0, 5.89], [0, 33.67], [4.38, 6.9], [5.89, 33.67]], \"sentences\": [\"A man is sitting along side a road polishing a shoe.\", \" Some other people are seated nearby, and many individuals walk past him.\", \" A motorcycle drives by on the road.\", \" The man puts the shoe down and picks up another one to polish.\"]}, \"v_PMDpnLURLp8\": {\"duration\": 91.3, \"timestamps\": [[0, 15.98], [16.89, 33.32], [33.32, 58.89], [58.43, 91.3]], \"sentences\": [\"He grabs the long pole and begins to walk with it to the other side of the field.\", \" Then he positions himself and does a jump and lands.\", \" Everyone else begins to take their turns and start to run and jump also.\", \" They practice for a while and do it for a few more times.\"]}, \"v_kpnGg2lOBLM\": {\"duration\": 182.7, \"timestamps\": [[0, 79.47], [43.85, 144.33], [130.63, 174.47]], \"sentences\": [\"A large group of people are seen jumping rope in a gymnasium while moving back and fourth with the camera.\", \" A woman stands in front to instruct the group and continue jumping rope and then stopping.\", \" The people then do a warm up with one another and stretch with the woman leading in front.\"]}, \"v_HUzoMRdSrZo\": {\"duration\": 85.94, \"timestamps\": [[0, 3.87], [3.01, 4.73], [4.73, 74.77], [42.54, 45.55], [48.98, 61.45], [72.62, 74.34], [74.77, 85.94]], \"sentences\": [\"We see an opening title screen.\", \" We see a city scene at night.\", \" We see people playing soccer outdoors at night.\", \" A man falls on the ground.\", \" We see a man shifting the ball with his feet.\", \" We see two men high five each other.\", \" We see the closing tile screen.\"]}, \"v_MbCIH5bay4Q\": {\"duration\": 31.63, \"timestamps\": [[0.63, 16.6], [13.12, 30.52]], \"sentences\": [\"A man is seen standing ready outside a track and begins running towards a bar.\", \" The man then jumps over the bar and is shown again in slow motion.\"]}, \"v_eepvgF5Fi_Q\": {\"duration\": 139.07, \"timestamps\": [[0, 139.07], [4.87, 139.07], [98.04, 101.52]], \"sentences\": [\"People sit at a black jack table.\", \" A man sits behind the table dealing the cards.\", \" A man cashes in chips with the dealer.\"]}, \"v_XLspZ5bof7o\": {\"duration\": 169.44, \"timestamps\": [[0, 15.25], [15.25, 28.8], [28.8, 138.09], [138.94, 149.95], [149.95, 169.44]], \"sentences\": [\"A lady is talking to the camera in a light room.\", \" She turns around and grabs a handful of hair.\", \" The lady starts braiding her hair adding more hair as she braids.\", \" The lady pulls her braid in front of her and adds a hair tie.\", \" She pulls her hair to loosen the braid and turns to the camera and smiles.\"]}, \"v_Io0_nTofT7w\": {\"duration\": 196.72, \"timestamps\": [[0, 28.52], [35.41, 93.44], [96.39, 196.72]], \"sentences\": [\"A row of teenaged boys are playing snare drums.\", \" A large bass drum and player appear.\", \" A girl playing a drum joins in.\"]}, \"v_OvSf6kk07uE\": {\"duration\": 210.14, \"timestamps\": [[0, 26.27], [52.54, 191.23]], \"sentences\": [\"Gymnasts stretch and prepare for a routine.\", \"  They do a bunch of things with their shirts off.\"]}, \"v_zL0L9Faa5CA\": {\"duration\": 90.51, \"timestamps\": [[0, 9.96], [14.48, 90.51]], \"sentences\": [\"White text explains the process of knee injury.\", \" A man is shown doing athletic acts, including jumping on a mattress, and stretches for his knees before jumping again and again.\"]}, \"v_DLJFoRluYx4\": {\"duration\": 178.41, \"timestamps\": [[0, 178.41], [0, 72.26], [72.26, 132.92], [132.02, 178.41], [165.03, 171.28], [172.17, 178.41]], \"sentences\": [\"A man stands in a bathroom in front of a mirror, holding a razor.\", \" The man begins speaking to the camera while showing the razor and its various parts.\", \" Soon he begins shaving his face while looking in the mirror.\", \" Afterward, he resumes speaking to the camera and showing how the razor performed.\", \" The man places the razor on a charging stand which shows a light illuminating, and then picks it back up.\", \" The video ends with the man touching his face to demonstrate the smooth job.\"]}, \"v__5by7Is4JEU\": {\"duration\": 82.43, \"timestamps\": [[0.41, 82.02], [0.82, 15.25], [12.36, 21.02], [67.59, 80.78]], \"sentences\": [\"Two men demonstrate jump rope stunts, tricks and techniques in an auditorium in front of a group of students.\", \"  A man in a grey track suit performs jump rope tricks in front of a group of students.\", \"  The man in the grey track suit finishes and the children clap.\", \"   A second man walks beside the man and the two men begin to perform more tricks and stunts including backflips and dance moves during the demonstration.\"]}, \"v_hTx_y1ils70\": {\"duration\": 218.18, \"timestamps\": [[3.27, 112.36], [85.09, 207.27]], \"sentences\": [\"Two people are seen hosting a news segment speaking to one another and showing several clips on the interior of a gym.\", \" The woman then climbs on the treadmill and gives it a try while still speaking to the man.\"]}, \"v_y7R4iEhqx9A\": {\"duration\": 58.17, \"timestamps\": [[0, 36.35], [36.94, 58.17]], \"sentences\": [\"A woman is seen speaking to the camera holding a beer and leads into her drinking from the glass.\", \" She continues drinking the beer while laughing to the camera and nodding in agreement.\"]}, \"v_fIG7aXzSyMU\": {\"duration\": 91.49, \"timestamps\": [[1.83, 28.36], [11.89, 24.24], [49.86, 64.04], [68.62, 74.1], [75.02, 91.03]], \"sentences\": [\"A volunteer rakes leaves in a front yard.\", \" Volunteers carry and set up yard tools and cleaning products.\", \" A group of volunteers rake the leaves together in front of a house.\", \" Volunteers all eat together in a cafeteria.\", \" A man loads up bags of leaves and drops them off at a collection yard.\"]}, \"v_Iwgbi95VjXU\": {\"duration\": 150.88, \"timestamps\": [[0, 150.88], [12.07, 150.88], [82.23, 92.04]], \"sentences\": [\"A girl in a bathing suit is sitting on the beach.\", \" She is putting sand into a cup and building a sand castle.\", \" Another girl walks up and talks to her.\"]}, \"v_RRFC2NrZSf4\": {\"duration\": 52.85, \"timestamps\": [[0, 51.26], [51.26, 52.85], [52.32, 52.85]], \"sentences\": [\"A man wearing a black shirt that has white words that say \\\"Plays well with self\\\" is sitting in a home and playing on two different bongos that are different in size, design and color.\", \"The man stops hitting the bongos and rests his left hand on the lighter colored bongo.\", \"Then the man moves his right leg as if he is going to stand up and the bongo moves without his leg support.\"]}, \"v_duGxOdcqg3I\": {\"duration\": 198.16, \"timestamps\": [[0, 29.72], [28.73, 65.39], [65.39, 178.34], [178.34, 198.16]], \"sentences\": [\"Stone cold steve austin in the ring sweating profusely.\", \" He looks over at the other wrestler breathing and sweating, they just look at each other for a while.\", \" They open beers and bump the together, then they start throwing beers to the audience.\", \" Then, austin rolls out of the ring and starts walking to the back.\"]}, \"v_Y1j_e1DXW6I\": {\"duration\": 39.61, \"timestamps\": [[0, 3.96], [3.96, 8.91], [8.91, 39.61], [20.01, 22.98]], \"sentences\": [\"A group of people line up against a wall in front of a set of balls at the start of a game in a gym.\", \" The group runs up to retrieve the balls.\", \" The group trows balls back and forth with an opposing team in a dodge ball game.\", \" A man gets hit multiple times as he runs forward on the court and retrieves balls.\"]}, \"v_oD45QIOK4z0\": {\"duration\": 212.74, \"timestamps\": [[0, 49.99], [49.99, 122.33], [124.45, 161.68], [162.75, 204.23], [204.23, 212.74]], \"sentences\": [\"The players from Brasil scores while people in the bleaches celebrate.\", \" A Brazilian player pass the ball to his playmate who scores and runs to celebrate, other Brazilian players scores many times.\", \" After, Brasil plays with other teems and scores many times.\", \" Then Brasil plays with players from other countries and scores.\", \" At the end, Brasil win the competition.\"]}, \"v_RYyGvn4MOr0\": {\"duration\": 12.98, \"timestamps\": [[0, 12.98], [2.6, 6.43], [6.55, 12.98]], \"sentences\": [\"People drive bumper cars in a carnival.\", \" A little girl follows a boy in a yellow bumper car.\", \" Then, the  boy and the girl hit other bumper cars.\"]}, \"v_L4mSCZwXelk\": {\"duration\": 148.66, \"timestamps\": [[0, 148.66], [102.57, 104.06], [146.43, 148.66]], \"sentences\": [\"People are playing indoor soccer in an arena.\", \" People are sitting in the stands watching.\", \" Words come up on the screen.\"]}, \"v_bhRHD3bBNZY\": {\"duration\": 188.78, \"timestamps\": [[0, 19.82], [23.6, 144.42], [145.36, 188.78]], \"sentences\": [\"A woman stands in a room holding a hula hoop.\", \" She demonstrates how to use the hula hoop.\", \" She spins it using her hips and talking to the camera.\"]}, \"v_hjsu3SGAdLs\": {\"duration\": 131.38, \"timestamps\": [[25.62, 45.33], [45.33, 52.55], [52.55, 67.66], [67.66, 93.28], [93.28, 98.53]], \"sentences\": [\"A man wearing a blue shirt is playing the piano in a yard.\", \" There are two elephants standing behind him.\", \" One of the elephant is trying to play the piano with his trunk.\", \" The man continues to play the piano in a fast pace using various keys on the piano.\", \" He gives a big finish with the tune and then pats the elephant's trunk.\"]}, \"v_BqjNfptu17Q\": {\"duration\": 93.25, \"timestamps\": [[0, 3.73], [4.66, 7.93], [8.39, 89.06], [12.12, 81.6], [82.53, 89.06], [82.53, 92.79]], \"sentences\": [\"A guy stands on the shore of a beach holding a hockey stick balancing a ball.\", \" A hockey stick and a white ball lay on fake grass outside.\", \"  A person moves a white ball with a hockey stick.\", \" A person demonstrates ten field hockey techniques.\", \" A guy uses a hockey stick to bounce a ball in the air.\", \" Greetings and credits are shown.\"]}, \"v_unz00-r84NY\": {\"duration\": 49.67, \"timestamps\": [[0, 14.65], [14.4, 16.14], [16.14, 18.63], [19.37, 35.02], [35.51, 49.67]], \"sentences\": [\"A boy plays with a ball in a yard.\", \" A boy swings and hits the ball out of the yard.\", \" The boy walks to retrieve the ball.\", \" The boy plays a game where he hits the ball and knocks down trash can lids.\", \" The boy swings a stick at the balls to hit them through a goal.\"]}, \"v_tb8KKdC7r-A\": {\"duration\": 55.64, \"timestamps\": [[3.89, 52.58], [11.41, 13.91], [22.25, 27.26], [43.95, 46.73]], \"sentences\": [\"People play shuffleboard in a gym.\", \" A woman throws a black puck, then she talks and continue playing.\", \" Old man wearing a cap talks in the gym .\", \" Two women talks side by side, one of the woman holds a pole.\"]}, \"v_TrFoFWXLMFg\": {\"duration\": 54.61, \"timestamps\": [[0.82, 26.21], [20.48, 53.52]], \"sentences\": [\"An infomercial shows a person using a razor on their leg while speaking to the camera.\", \" The woman continues shaving her legs and a close up of the tool is shown.\"]}, \"v_LNd1TrbshXM\": {\"duration\": 151.44, \"timestamps\": [[0, 65.88], [55.28, 151.44]], \"sentences\": [\"A woman walks into frame playing with her hair and parting it behind her.\", \" The woman continues braiding up her hair and shows off the end result while looking to the camera then away.\"]}, \"v_uqixFWxAQSA\": {\"duration\": 209.54, \"timestamps\": [[0, 209.54], [134.1, 151.91]], \"sentences\": [\"cars covered by a thick snow is shown and a man is cleaning the snow with a shovel in the windshield and all the car.\", \" car is going in street.\"]}, \"v_rua32XjJh54\": {\"duration\": 185.88, \"timestamps\": [[0, 12.08], [12.08, 63.2], [63.2, 80.86], [80.86, 83.64], [84.57, 92.01], [92.01, 118.03], [118.96, 152.42], [153.35, 185.88]], \"sentences\": [\"We see a man throwing a curling stone.\", \" We see a man, 2 girls, then an older man interviewed.\", \" We see a man throwing the stone.\", \" We see the older man interviewed.\", \" We see two boys talking in the rink.\", \" We see a young man with longer hair being interviewed followed by two girls.\", \" We see the boy curl, then be interviewed and a girl interviewed.\", \" We see the people curling, a girl speaks, and a group of girls talks before they walk away.\"]}, \"v_h3H6TzHC8Cc\": {\"duration\": 124.39, \"timestamps\": [[0, 3.11], [3.11, 18.04], [18.04, 42.29], [42.29, 88.32], [88.32, 124.39]], \"sentences\": [\"A referee wearing a white shirt in a boxing match starts a boxing match.\", \" Two girl boxers approach each other and start kick boxing.\", \" The taller boxer approaches the shorter boxer and hits the shorter boxer with a straight kick.\", \" Both boxers exchange punches and kicks in the center of the ring.\", \" The referee manages the fight while following and watching the fighters  closely.\"]}, \"v_3bTGq7QDjUg\": {\"duration\": 63.53, \"timestamps\": [[0, 20.65], [20.33, 63.53]], \"sentences\": [\"Two people are tubing in a stream with lush water and huge rocks through out it.\", \"Once the two get around the curve,they hit two small hills and wade in the calmer part of the water.\"]}, \"v_Huz41aVo5eo\": {\"duration\": 157.15, \"timestamps\": [[0, 9.43], [9.43, 157.15]], \"sentences\": [\"man is waxing a woman's leg.\", \" woman is talking to the camera and showing how to wax the leg.\"]}, \"v_kkXSGwesZ0U\": {\"duration\": 214.99, \"timestamps\": [[0, 153.72], [98.9, 214.99]], \"sentences\": [\"Two people have their legs tied together and then receive instructions.\", \"  They walk out to a ledge and then go bungee jumping over the edge.\"]}, \"v_vP-wI1egoHA\": {\"duration\": 120.61, \"timestamps\": [[0, 27.14], [22.91, 86.23], [80.2, 113.37]], \"sentences\": [\"A small group of children are seen riding around in bumper cars crashing into one another.\", \" The kids move all around the game hitting into one another.\", \" The game continues on with the kids playing and crashing into each other.\"]}, \"v_zH-fOiPLLxA\": {\"duration\": 39.57, \"timestamps\": [[0, 22.75], [7.72, 22.75], [28.09, 39.57]], \"sentences\": [\"A brush is attached to a power drill for scrubbing.\", \"  The top of the sink is scrubbed then the bowl.\", \"  It is wiped with a towel to finish.\"]}, \"v_o0d1PXKkJqM\": {\"duration\": 96.02000000000001, \"timestamps\": [[7.2, 32.17], [32.17, 74.41], [74.41, 88.33], [88.33, 92.17]], \"sentences\": [\"There's a man in a pink shirt and a lady in a white tank top holding bagpipes in her hand.\", \" They are standing in a parking lot near a silver car.\", \" The lady begins playing her bagpipes as the man watches her play.\", \" She continues playing and after she's done, the man claps for her and gives her a hug.\"]}, \"v_3NFWgG4_6NI\": {\"duration\": 190.15, \"timestamps\": [[2.85, 80.81], [84.62, 179.69]], \"sentences\": [\"A man is seen dancing with a hula hoop in a crowded area while people wander around behind her.\", \" The woman continues spinning the hoop around herself as people watch her spin around.\"]}, \"v__mupI51ie9A\": {\"duration\": 69.15, \"timestamps\": [[0, 11.06], [11.06, 28.01], [28.35, 44.26], [44.26, 69.15]], \"sentences\": [\"three kids are hitting a ball with a racket.\", \" They are ducking so it doesn't hit them in their heads.\", \" They are each taking turns hitting the ball.\", \" Moving around all over the court trying to catch it.\"]}, \"v_X6BHwIJKl-Q\": {\"duration\": 69.73, \"timestamps\": [[3.14, 49.51], [49.51, 69.73]], \"sentences\": [\"A person talks while sit in a boat holding a paddle.\", \" Then, the person sails in choppy waters, suddenly he pivote the boat away helping with the oar.\"]}, \"v__Wq1OGf0MHM\": {\"duration\": 143.18, \"timestamps\": [[0, 17.9], [18.61, 66.58], [80.18, 143.18]], \"sentences\": [\"A group of kids and adults are by a river.\", \" They get into rafts and float down stream.\", \" They paddle through the rapids and falls.\"]}, \"v_-Sp-gOEGy2o\": {\"duration\": 229.34, \"timestamps\": [[0, 5.73], [6.88, 13.76], [14.91, 219.02], [220.17, 229.34]], \"sentences\": [\"\\\"How to start a campfire with FiAir\\\" appears on screen.\", \" Wildlife Biologist Bryon Shissler sits outside by a campfire pit and speaks to the camera.\", \" He builds and lights a fire in the pit using the FiAir device.\", \" \\\"FiAir The handly little blower to feed your fires\\\" appears on screen.\"]}, \"v_XKA2W2735WM\": {\"duration\": 131.73, \"timestamps\": [[7.9, 104.06], [22.39, 26.35], [103.41, 131.73], [126.46, 131.73]], \"sentences\": [\"People watch a parade where people walk on front a marching band holding a banner and waving the viewers.\", \" A man cross the street holding a small flag and extend his hand.\", \" A group of soldiers holds rifles and flags on front a black car.\", \" A veteran make the military salute.\"]}, \"v_fZc3tkvUJe0\": {\"duration\": 107.07, \"timestamps\": [[1.07, 54.6], [42.29, 106.53]], \"sentences\": [\"A chef is seen speaking to a woman and leads into him holding knives and sharpening the sides.\", \" He then wipes the knife with a rag and continues sharpening the knives.\"]}, \"v_sra0ywgWITo\": {\"duration\": 187.29, \"timestamps\": [[5.62, 17.79], [16.86, 42.14], [42.14, 95.52], [96.46, 119.87], [119.87, 161.07], [161.07, 174.18], [175.12, 183.55]], \"sentences\": [\"A man walks over to another man upset and suggests an arm wrestling match.\", \" The men begin to hold hands and quickly move away while two women walk into scene.\", \" The men continue the match while look calm and the other looks struggled.\", \" The match continues as the men discuss their issues and the women watching yell at the men.\", \" The women then help the men arm wrestle and one punches the other to help one man win.\", \" The punched woman pulls the arms up and stabs them while the other man also stabs them.\", \" The women pull out duct tape and stuff one body into a bag.\"]}, \"v_mBAlD4A8swo\": {\"duration\": 13.49, \"timestamps\": [[0, 13.49], [0.61, 13.49], [1.21, 13.49]], \"sentences\": [\"A man is sitting on an exercise bike.\", \" He is working out on the bike.\", \" He is talking to the camera while working out.\"]}, \"v_QFxe74w7aNc\": {\"duration\": 118.77000000000001, \"timestamps\": [[0, 118.77], [6.53, 75.42], [4.16, 96.2], [90.27, 96.2]], \"sentences\": [\"A group of martial artists and drummers perform in a street competition.\", \" The martial artists in red pants and black shirts do kicks and flips.\", \" Drummers wearing all black and red hats play the drums.\", \" The performers finish their piece and the crowd applauds.\"]}, \"v_3HBAcaU552I\": {\"duration\": 123.93, \"timestamps\": [[1.86, 114.63], [8.67, 34.08], [28.5, 67.54], [30.98, 74.97], [60.72, 101], [87.99, 117.11]], \"sentences\": [\"A young boy and girl are standing over a sink with their mother talking.\", \" The mother instructs them on how to brush their teeth while laughing.\", \" The boy helps his younger sister brush his teeth.\", \" She gets them some water to gargle in their mouths.\", \" The boy and girl begin playing in the sink.\", \" The woman laughs at the children dribbling water.\"]}, \"v_eNE8O5cgYuE\": {\"duration\": 173.99, \"timestamps\": [[0, 37.41], [37.41, 84.38], [84.38, 126.14], [126.14, 173.99]], \"sentences\": [\"A woman is outside wind blowing a little bit through her hair, the view is outstanding.\", \" There is ia group of runners starting a marathon taking their time.\", \" It was scenic and beautiful out there, flowers blossoming and everything.\", \" A few of the runners talk about their experience to reporters.\"]}, \"v_ufgYKCfK2Vk\": {\"duration\": 180.56, \"timestamps\": [[4.51, 33.4], [33.4, 92.99], [92.09, 125.49], [125.49, 180.56]], \"sentences\": [\"She is dancing with a baton very gracefully all around the stage for her performance.\", \" She does handstands and all kinds of different intriguing moves.\", \" She throws the baton up and does a few cartwheels and lands in time to catch it.\", \" She accidentally drops the baton and picks its up and continues on and on until the end of her dance.\"]}, \"v_HcPhIfhQLmA\": {\"duration\": 31.86, \"timestamps\": [[0, 5.73], [5.58, 26.6], [26.6, 31.86]], \"sentences\": [\"kid is sanding in a room talking to the camera.\", \" anoher man appears on the room and is practicing a head lock.\", \" man throw the the kid in the bed and stands.\"]}, \"v_Y-dpHbPGQWE\": {\"duration\": 233.92000000000002, \"timestamps\": [[0, 3.51], [3.51, 224.56], [224.56, 233.92]], \"sentences\": [\"An opening screen with the title of a song is shown.\", \" We see a man playing a guitar in a recording studio.\", \" We see a ending screen with the man's youtube channel address on it.\"]}, \"v_F4FpAZJSV1g\": {\"duration\": 94.16, \"timestamps\": [[0, 22.6], [48.96, 54.61], [48.96, 69.21]], \"sentences\": [\"man is in a racetrack running to make a high jump into the dust.\", \" woman is putting numbers in a scoeboard.\", \" man is running in the middle of the field.\"]}, \"v_Iphl3YB-yYQ\": {\"duration\": 96.94, \"timestamps\": [[0, 43.62], [44.11, 96.94]], \"sentences\": [\"A man is seen speaking to the camera and pans over to a roof that is breaking apart.\", \" He points all over the roof and shows a man working on the roof while panning around again.\"]}, \"v_NtUIIxVvDsA\": {\"duration\": 167.2, \"timestamps\": [[6.69, 13.38], [15.05, 28.42], [31.77, 167.2]], \"sentences\": [\"People are sitting in a car.\", \" They are standing around a large inflatable raft.\", \" They are rafting in choppy water of a river.\"]}, \"v_q8lLTxHen0I\": {\"duration\": 75.42, \"timestamps\": [[0, 43.37], [45.63, 72.4]], \"sentences\": [\"Various pictures are shown of people huddled up together as well as people playing soccer on a beach.\", \" More pictures are shown of people playing as well as one man receiving a trophy and celebrating with others.\"]}, \"v_JM7YQFgxu2I\": {\"duration\": 38.18, \"timestamps\": [[0.76, 15.85], [23.48, 36.08]], \"sentences\": [\"There is a little girl slowly sliding down the side with the comfort of holding her mother's hand, the first time she went down.\", \" The second time she went down on her belly without help.\"]}, \"v_Kwhp0DNop9I\": {\"duration\": 195.47, \"timestamps\": [[0, 6.84], [6.84, 195.47]], \"sentences\": [\"woman is ni seashore wearing a big hat and smiling.\", \" peolpe are scuba diving in the sea next to the pier with bags on their backs and showing the fishes and rocks on the floor.\"]}, \"v_R-VaPP7ToKQ\": {\"duration\": 6.6, \"timestamps\": [[0, 4.25], [2.01, 3.86], [3.66, 6.6]], \"sentences\": [\"A boy is sitting behind a table.\", \" He picks up a beer and takes a drink quickly.\", \" A woman grabs it away from him.\"]}, \"v_mc-1msYF8Xo\": {\"duration\": 114.34, \"timestamps\": [[7.43, 72.03], [42.88, 114.34]], \"sentences\": [\"Various shots of plated food are shown followed by a sandwich sitting on a table and a woman holding up pans.\", \" The woman then puts ingredients onto sandwich bread and mixes the two together and takes multiple bites.\"]}, \"v_xm7pETlJrwA\": {\"duration\": 217.53, \"timestamps\": [[1.09, 36.98], [18.49, 100.06], [105.5, 166.41], [145.74, 212.09]], \"sentences\": [\"A woman is seen speaking to the camera while holding up a bucket and pot.\", \" She pours water out of the pot into the bucket as well as some detergent.\", \" She then washing clothes in the bucket using water continuously as well as a toothbrush.\", \" She lays out the clothes in the end as well as hangs them up.\"]}, \"v_RK1L77bNTxg\": {\"duration\": 190.54, \"timestamps\": [[0, 21.91], [20.96, 178.16], [179.11, 190.54]], \"sentences\": [\"three people is in studio talking about news.\", \" a history about curling sport and the kids team playing in the field and scoring is shown in the screen.\", \" back to the studio reporters keep talking about the history.\"]}, \"v_-4VuHlphgL4\": {\"duration\": 157.53, \"timestamps\": [[0, 13.39], [14.18, 128.38], [129.96, 157.53]], \"sentences\": [\"A man is standing behind a couch, wearing a protective head covering.\", \" He is covering a couch with plastic, and tapes it in place.\", \" He speaks to the camera about what he did a little longer.\"]}, \"v_TQ22icNBoSI\": {\"duration\": 66.52, \"timestamps\": [[0, 8.98], [8.98, 19.95], [20.29, 54.21], [54.21, 62.19], [62.19, 66.52]], \"sentences\": [\"We see blue letters on a black screen and see a roof.\", \" Then we switch to more letters and roof has been sprayed with a solution.\", \" We are informed the roof has been cleaned and shown shots of the clean roof.\", \" We then see the front of the house.\", \" We are provided the phone number of the pressure washers.\"]}, \"v_T0wmRC8Ka2Y\": {\"duration\": 49.34, \"timestamps\": [[0, 49.34], [46.38, 49.1], [49.1, 49.34]], \"sentences\": [\"People are playing volleyball on a beach.\", \" The ball falls onto the ground and a guy in red shorts picks it up.\", \" A man in a black hat serves the ball.\"]}, \"v_TdFvHyfq97o\": {\"duration\": 59.26, \"timestamps\": [[0, 19.26], [19.85, 40.3], [40.89, 59.26]], \"sentences\": [\"A man is standing outside in a field of grass that is relatively low.\", \"However,in his hand he has a scythe and begins swinging it back and forth cutting the grass down further.\", \"As he cuts,several texts appear across the screen with white words about what he is doing and explaining the activity.\"]}, \"v_0S0fNrI4oVs\": {\"duration\": 85.82, \"timestamps\": [[0.43, 81.96], [7.72, 18.02], [25.75, 27.46], [32.18, 83.25]], \"sentences\": [\"A group of USA olympic fencing champions are shown competing in fencing interspersed with images and graphics advertising an upcoming fencing tournament in NYC.\", \"  Several images of fencers are shows interspersed with video of the fencers walking.\", \"  An image of a girl holding an American flag behind her appears.\", \"  More still images of fencing and a slow motion video of a fencing competition appear before a final marketing graphic with a website on it.\"]}, \"v_iyGv338SnrQ\": {\"duration\": 70.06, \"timestamps\": [[0, 70.06], [0, 57.8], [34.68, 40.98], [62.7, 70.06]], \"sentences\": [\"An elderly woman lays on down against a brown pillow.\", \" She holds a harmonica to her mouth and plays it.\", \" The light in the room brightens.\", \" She finishes playing and laughs.\"]}, \"v_Iuk7PNmG3tQ\": {\"duration\": 115.03, \"timestamps\": [[6.33, 12.08], [12.08, 18.98], [18.98, 33.36], [33.36, 44.86], [44.86, 77.65], [77.65, 81.1], [81.1, 83.97], [83.97, 85.7], [85.7, 86.27]], \"sentences\": [\"Several players from the black and white team are playing ice hockey in the arena.\", \" One of the players from the black team hits the puck away from his opponent.\", \" The players from the white team try to prevent him from hitting a goal.\", \" An animated version of the game is shown on screen.\", \" Then the focus is back on the real game where a black team player is highlighted as he takes a shot on the goal.\", \" Again, another animated example is shown to explain how the game works.\", \" The black team player hits the puck on the opposite corner of the ice.\", \" As the black moves fast and towards the goal, it cause the goalie to fall down.\", \" The black team wins the goal and gets the victory in the game.\"]}, \"v_1f8iBakydSI\": {\"duration\": 13.77, \"timestamps\": [[0, 9.29], [1.93, 13.77]], \"sentences\": [\"A camera pans over a weight room and shows various people working on a machines.\", \" One man is seen running on an elliptical while another using a rowing machine in the back.\"]}, \"v_gfwSnetklbE\": {\"duration\": 118.96000000000001, \"timestamps\": [[0, 101.71], [101.71, 118.96]], \"sentences\": [\"A man is shoveling snow off of the top of a car.\", \" He walks around the car and starts shoveling the ground.\"]}, \"v_TXgzRTa2C38\": {\"duration\": 62.9, \"timestamps\": [[6.92, 15.73], [12.9, 15.1], [23.27, 31.45]], \"sentences\": [\"A person throws a bowling ball down a lane.\", \" They knock the pins down.\", \" They throw the ball at a spare and knock all the rest of the pins down.\"]}, \"v__CFadTE9L4I\": {\"duration\": 125.37, \"timestamps\": [[0, 41.37], [48.89, 71.46], [70.83, 125.36]], \"sentences\": [\"A woman washes clothes in a bucket with soap.\", \"  The woman wrings out a towel.\", \"  Someone is folding in the background while the woman continues washing the clothes.\"]}, \"v_HQFey_iCEw8\": {\"duration\": 12.93, \"timestamps\": [[0.19, 12.35], [0.19, 2.07], [2.65, 12.35]], \"sentences\": [\"A man in a baseball cap, shorts and a blue short sleeved shirt serves three tennis balls across a tennis net on a tennis court by himself.\", \"  A man on a tennis court by himself serves a tennis ball with a tennis racket across a net.\", \"  The man then serves two more balls across the net, the ball just land on the other side.\"]}, \"v_R3ffxWaI9QU\": {\"duration\": 26.96, \"timestamps\": [[0, 3.5], [4.04, 5.26], [5.26, 7.41], [8.9, 26.96]], \"sentences\": [\"A male athlete is running on a track.\", \" He jumps high into the air.\", \" He vaults backwards over a high beam.\", \" This is shown repeated in slow motion numerous times.\"]}, \"v_MZiBlBhpq-Y\": {\"duration\": 163.72, \"timestamps\": [[0, 2.46], [2.46, 159.63], [19.65, 159.63], [157.99, 163.72]], \"sentences\": [\"A man sits down with a guitar.\", \" The man begins playing the guitar.\", \" The man starts singing while playing the guitar.\", \" The man stops playing the guitar and stands up and walks toward the camera.\"]}, \"v_yZLwR5EJ7Wc\": {\"duration\": 23.27, \"timestamps\": [[0, 23.27], [18.73, 23.27]], \"sentences\": [\"A man plays bagpipes in a city square while nobody pays attention.\", \"  A cop tells him to stop.\"]}, \"v_BbFCkDdq3S0\": {\"duration\": 87.96000000000001, \"timestamps\": [[0, 16.71], [17.59, 64.65], [65.97, 87.96]], \"sentences\": [\"A boy runs slowly down a path.\", \" He takes a huge leap into the air.\", \" He lands in a giant sand pit.\"]}, \"v_ER0UPx6-VcM\": {\"duration\": 78.07, \"timestamps\": [[0, 9.76], [10.15, 53.48], [54.65, 78.07]], \"sentences\": [\"A man and woman are playing inside a racquetball court.\", \" They are using racquets, balls, special shoes and protective glasses.\", \" They show how to stand and hit the ball.\"]}, \"v_Wiu7FVCc6DA\": {\"duration\": 106.77000000000001, \"timestamps\": [[0, 24.56], [24.56, 55.52], [55.52, 82.74], [82.21, 106.77]], \"sentences\": [\"A few men are in the woods running playing paintball.\", \" They are looking for the other to try to shoot them out, while staying close to their team mates.\", \" One of the men checks his gun and readjust his it and then keeps moving forward.\", \" He moves along to continue playing the game.\"]}, \"v_jIVP2bEWmJE\": {\"duration\": 175.45, \"timestamps\": [[0, 8.77], [14.91, 80.71], [81.58, 123.69], [125.45, 158.78], [159.66, 175.45]], \"sentences\": [\"A boy is standing in a kitchen with two pieces of bread.\", \" He opens the fridge and takes out sandwich ingredients.\", \" He squirts mustard and mayo onto the sandwich.\", \" He then adds meat and cheese.\", \" Afterward, he puts the ingredients back into the fridge, zeroing in on the sandwich on the counter.\"]}, \"v_y4PXBhxpZHk\": {\"duration\": 139.32, \"timestamps\": [[6.27, 59.91], [55.03, 105.19], [106.58, 139.32]], \"sentences\": [\"A large group of people are shown in several shots playing a sport's game while hundreds of people watch on the sides.\", \" The men continue running around the field while close ups of coaches are shown and one scores a goal.\", \" One man kneels down and the others shake hands with players.\"]}, \"v_QElXIVBV-gk\": {\"duration\": 213.86, \"timestamps\": [[0, 31.01], [31.01, 87.68], [87.68, 213.86]], \"sentences\": [\"A lady chef wearing a stripe blouse talks in a kitchen.\", \" The lady chef describes the ingredients needed and the preparation for the creamy seafood pasta.\", \" The lady chef shows a step by step process for preparing the creamy seafood pasta dish and shows the final product.\"]}, \"v_2w3FSD235TY\": {\"duration\": 205.77, \"timestamps\": [[0, 23.66], [28.81, 102.88], [104.94, 186.22], [188.28, 205.77]], \"sentences\": [\"A man is talking in a stable as he feeds a horse beside him.\", \" He talks extensively about the benefits of horse riding.\", \" He mounts a saddle onto the horse.\", \" He then leads the horse out, feeding him an apple as he continues to speak.\"]}, \"v_r96PJ548pn8\": {\"duration\": 143.04, \"timestamps\": [[0, 29.32], [29.32, 75.81], [75.09, 106.56], [106.56, 143.04]], \"sentences\": [\"A woman wearing exercise equipment is shown talking to the camera and pointing to several areas on her body.\", \" She continues talking to the camera while performing several ab crunches to work your core.\", \" She then grabs a weight in both hands as well as a cat to use as a weight for the exercise.\", \" She bends forward and continues talking to the camera.\"]}, \"v_QyYbyFXmd-g\": {\"duration\": 205.78, \"timestamps\": [[3.09, 73.05], [79.22, 165.65], [137.87, 202.69]], \"sentences\": [\"A man is sen standing in front of a large group of people holding onto a rope.\", \" The man raises his arms and the two team begin a game of tug of war.\", \" Another game of tug of war occurs on the side and ends with the men standing straight.\"]}, \"v_uTc2-oAxgbc\": {\"duration\": 176.79, \"timestamps\": [[0, 33.59], [33.59, 74.25], [83.09, 170.6]], \"sentences\": [\"We see a girl sitting in a piercing parlor with a lady standing near her.\", \" The lady puts a clip on the girls lip and sticks a large needle through her lip.\", \" The lady slides the earring through the girls lip and puts a disinfectant on it.\"]}, \"v__qzzQdKJ7F0\": {\"duration\": 97.11, \"timestamps\": [[0, 16.99], [15.05, 83.51], [57.29, 94.19]], \"sentences\": [\"A young girl is seen speaking to the camera and holds up a bottle to the camera.\", \" The girl then begins painting her nails and showing them off to the camera.\", \" She continues to paint her nails as well as make funny faces to the camera.\"]}, \"v_ZQs0S7WwYiM\": {\"duration\": 159.34, \"timestamps\": [[3.98, 19.12], [19.12, 68.51], [68.51, 142.61]], \"sentences\": [\"A person puts carpets shims on the floor.\", \" The man measures the shims to fit in the corners.\", \" After, the person puts stripes on the border of the shims, then put the carpet.\"]}, \"v_7EPzlmJ25dA\": {\"duration\": 191.54, \"timestamps\": [[0, 190.58], [97.69, 190.58]], \"sentences\": [\"A man takes videos of him skiing and snowboarding down a mountain.\", \"  He also goes through a forest.\"]}, \"v_W_scepAxfPA\": {\"duration\": 12.4, \"timestamps\": [[0, 4.65], [4.65, 12.4]], \"sentences\": [\"Two swimmers stand bow forward on a high dive platform.\", \" The divers dive from the platform into the water.\"]}, \"v_SEZvtGus0HU\": {\"duration\": 206.05, \"timestamps\": [[0, 10.3], [10.3, 31.94], [31.94, 114.36], [114.36, 194.72], [194.72, 206.05]], \"sentences\": [\"There are surfers riding on a very large wave.\", \"A white wave crashes down and the surfer below it disappears as the large white foam of the wave spreads to a very large area on the water.\", \" Men on water jets quickly go to the area where the surfers could be and they recover them from the water and quickly drive away from the wave as they pass other surfers and water jet drivers as they all continue to ride on the waves.\", \"Now the view changes to the view from a helicopter above and it shows the people on the water driving their water jets.\", \"A black screen appears and it includes white lettering that say's \\\"Shot on Red One by Mike Waltze\\\" and includes a website then the word \\\"Courtesy NanoGreensHawaii dot com Instant Organic Nutrition\\\".\"]}, \"v_Eq0Ibnq9sYA\": {\"duration\": 39.27, \"timestamps\": [[0, 16.69], [16.88, 39.27]], \"sentences\": [\"A woman is seen pushing a puck along some ice followed by people brushing ice with brooms in front of the puck.\", \" They continuously brush and end the puck in a circle and ends with the woman speaking to the others.\"]}, \"v_EWSMeiZqUHQ\": {\"duration\": 222.4, \"timestamps\": [[0, 5.56], [5.56, 219.06], [219.06, 222.4]], \"sentences\": [\"A class room is filled with students either sitting or standing.\", \" Suddenly, a group of boys begin to run around the classroom smiling, marching in place, and doing some dancing and exercises while the rest of the sitting class look on.\", \"The boys spread apart and end their routine then they walk towards one another while smiling.\"]}, \"v_XQWebGbAjxU\": {\"duration\": 33.14, \"timestamps\": [[0, 14.25], [12.59, 33.14]], \"sentences\": [\"A close up of a mat is shown surrounded by pucks and a stick sitting in the middle.\", \" The camera pans to people pushing the puck along the ice followed by a person pushing the puck into the middle.\"]}, \"v_XPctbL-V1ww\": {\"duration\": 120.72, \"timestamps\": [[0, 20.52], [19.32, 36.22], [36.82, 78.47], [78.47, 120.72]], \"sentences\": [\"A little boy in his pajamma's standing in the mirror watching himself brush his teeth.\", \" He moves forward a little and spits out some toothpaste.\", \" Then continues to brush, he puts the tooth brush down and grabs a cup of water gargles a bit and spits it out.\", \" He finds this very amusing, and does it over and over until the cup of water is empty and then he gets down off his stool and cleans his face with a towel.\"]}, \"v_f0hh9bwVfV0\": {\"duration\": 170.6, \"timestamps\": [[0, 6.82], [6.82, 34.97], [34.97, 93.83], [93.83, 103.21], [103.21, 121.98], [121.98, 139.89], [139.89, 170.6]], \"sentences\": [\"Some text appears on screen asking a question about a topic in SCUBA diving safety.\", \" The scene changes to show a lot of SCUBA air tanks and some more text explaining more about the question.\", \" A man is SCUBA diving underwater while holding his air tank in his hands and the text continues to explain.\", \" The air tank is seen floating on it's own on the sea bed.\", \" Another man is SCUBA diving and he lets go of his tank to demonstrate the buoyancy.\", \" The scene switches back to the group of air tanks with more text explaining.\", \" Another scene is shown with 2 tanks and a bag next to some trees.\"]}, \"v_0bosp4-pyTM\": {\"duration\": 115.64, \"timestamps\": [[0, 28.91], [28.91, 41.63], [41.63, 61.29], [61.29, 60.71], [60.71, 70.54], [70.54, 76.9], [76.9, 85.57], [85.57, 94.24], [94.24, 114.48], [114.48, 115.64]], \"sentences\": [\"A man is holding a pocket knife while sitting on some rocks in the wilderness.\", \" Then he takes a small stone from the flowing river and smashes it on another stone.\", \" He starts to crush the small stone to smaller pieces.\", \" He grind it hard to make the pieces smaller.\", \" Then he takes a piece of bark and rubs the powered stone pieces onto it.\", \" The stone particles stick to the wet piece of wood.\", \" He then takes the knife and sharpens it against the wood piece.\", \" He then notices a little black and green poisonous frog sitting next to him.\", \" The frog then escapes and jumps away.\", \" He explains how the frog secretes a poisonous fluid that can be extremely harmful.\"]}, \"v_1tEJRzqqalM\": {\"duration\": 231.23, \"timestamps\": [[0, 6.94], [6.94, 57.81], [56.65, 93.65], [94.8, 137.58], [141.05, 178.04], [203.48, 206.95], [208.1, 212.73], [213.88, 224.29], [226.6, 231.23]], \"sentences\": [\"We see a pink opening screen.\", \" We see a lady brushing two miniature horses.\", \" The lady cleans the brown horses hooves.\", \" The lady cleans the hooves on the white and tan horse.\", \" The lady brushes the mane on both horses.\", \" The lady puts her supplies down.\", \" We see the ending title screen.\", \" We see black and white still images of the horses.\", \" We see the lady brush the brown horse again.\"]}, \"v_fwU91k-Vmb8\": {\"duration\": 117.96000000000001, \"timestamps\": [[0, 13.56], [18.87, 86.7], [90.24, 117.96]], \"sentences\": [\"A bunch of children are riding around in bumper cars.\", \" They go back and forth on the track.\", \" They bump into each other, smiling and laughing.\"]}, \"v_93bg_XU3OTg\": {\"duration\": 174.35, \"timestamps\": [[0.87, 10.46], [13.95, 18.31], [22.66, 52.3], [56.66, 60.15], [78.46, 139.48], [156.04, 173.47]], \"sentences\": [\"The credits of the clip are shown.\", \" The product's varying sizes are displayed.\", \" The guy pours product in a container and uses a brush to put the liquid on the surface of a metal object.\", \" The guy puts a white cloth on the edge.\", \" The guy runs the metal object repeatedly across the white cloth.\", \" The credits of the video are shown.\"]}, \"v_DbZ0ns9s2X0\": {\"duration\": 181.02, \"timestamps\": [[0, 20.82], [20.82, 148.44], [148.44, 181.02]], \"sentences\": [\"A painting is shown followed by several pictures of painting tools and supplies.\", \" A person's hand then begins putting marks on the painting and dipping her brush continuously in the paint.\", \" The camera pans down the finished picture and a text is shown across the screen.\"]}, \"v_ygkcjkVqxAA\": {\"duration\": 45.05, \"timestamps\": [[0, 23.2], [22.3, 45.05]], \"sentences\": [\"A woman is seen playing Frisbee out in a back yard with a dog and performs several tricks with the dog.\", \" She continuously plays with several toys with the dog when another person watches on the side.\"]}, \"v_8P0N5psQrEI\": {\"duration\": 110.18, \"timestamps\": [[2.75, 10.47], [10.47, 41.87], [41.87, 60.05], [60.05, 95.3], [95.86, 105.22]], \"sentences\": [\"A Caucasian woman in late maternity is shown seated on a living room sofa.\", \" She puts on a sock on her left foot while crossing her leg and then proceeds to put on a tennis shoe on her left foot.\", \" She is cleary in discomfort as she proceeds to tie her shoe, which she rests on an ottoman.\", \" She takes a small break and then proceeds to put on her right shoe, She rests her right foot on the ottoman while she ties the shoe.\", \" The satisfied and exhausted woman sits back on the sofa and holds her large belly as she completes the task of putting her right shoe on.\"]}, \"v_0QDPpdms08g\": {\"duration\": 119.65, \"timestamps\": [[0, 36.49], [23.33, 96.32], [87.35, 119.05]], \"sentences\": [\"Two people are seen standing in a gymnasium wearing boxing gloves.\", \" The men then go back and fourth with one another kicking and punching.\", \" The two continue to fight while the camera captures their movements.\"]}, \"v_2KsL5MBiZcc\": {\"duration\": 32.14, \"timestamps\": [[0, 19.12], [18.32, 32.14]], \"sentences\": [\"A small group of people are seen standing around a field with a ref speaking to the people.\", \" The players then begin a match of lacrosse with one another and run up and down the field playing.\"]}, \"v_HNIs8lFvKkA\": {\"duration\": 221.07999999999998, \"timestamps\": [[8.84, 24.32], [24.32, 36.48], [36.48, 55.27], [55.27, 71.85], [71.85, 106.12], [106.12, 141.49], [141.49, 163.6], [163.6, 174.65], [174.65, 185.71], [185.71, 214.45], [214.45, 221.08]], \"sentences\": [\"There are two people dressed in yellow shirts playing table tennis in a finished basement.\", \" There are three people seated on sofas next to them watching soccer television.\", \" Another person seated on the sofa is playing on his phone.\", \" The two players continue playing table tennis.\", \" The player on the right hits the ball which is opponent returns in a fast manner.\", \" The ball falls off the table.\", \" The person on the right runs to pick up the ball.\", \" They continue playing and serving the ball.\", \" A guy dressed in a black hoodie walks by.\", \" One of the player pauses to adjust the table.\", \" They continue playing table tennis as they talk to each other.\"]}, \"v_2bS6JfPF1mk\": {\"duration\": 23.45, \"timestamps\": [[0, 4.57], [5.51, 23.45]], \"sentences\": [\"Two young children are shown when one climbs across a set of monkey bars and the other steps out of frame.\", \" The girl makes it to the end of the bars and looks to the camera speaking and smiling.\"]}, \"v_H8K1E49607E\": {\"duration\": 97.39, \"timestamps\": [[0.97, 94.46], [8.28, 91.05], [40.41, 77.42], [57.46, 68.66]], \"sentences\": [\"A person wearing a vest has several buckets on the street he is drumming with.\", \" Many people are standing around in amazement watching this man play, while some are recording with a camera.\", \" The man continues drumming faster and the crowd continues to cheer him on.\", \" Many people walk past and don't seem to notice the drummer.\"]}, \"v_O8JVA-scYlM\": {\"duration\": 135.26, \"timestamps\": [[0, 5.41], [5.41, 16.91], [16.23, 24.35], [24.35, 29.76], [29.76, 37.2], [37.2, 39.9], [39.9, 46.66], [46.66, 62.22], [62.22, 66.95], [67.63, 87.92], [89.27, 98.06], [98.74, 118.35], [119.03, 135.26]], \"sentences\": [\"A boy stands behind a table of food.\", \" He begins spreading mayonnaise on slices of bread.\", \" He puts lettuce on the bread.\", \" He stacks tomatoes on top of the lettuce on the bread.\", \" He puts chicken on top of the tomato.\", \" He puts one piece of bread on top of the other.\", \" He puts mayonnaise on top of the top piece of bread.\", \" He stacks the food up on the bread again.\", \" He tops it with a final piece of bread.\", \" He cuts the sandwich into four slices on a board.\", \" He puts a toothpick in each section of the sandwich.\", \" He moves the sandwich from the board onto a plate.\", \" He adds fries to the plate with the sandwich on it.\"]}, \"v_63Zt34YuyRk\": {\"duration\": 169.16, \"timestamps\": [[10.15, 115.03], [115.03, 153.93], [153.93, 162.39]], \"sentences\": [\"There's a NBC news reporter wearing a red sweater and white shirt talking about dog grooming by Scissor Wizard a grooming company.\", \" The representative from the company is talking about the services they offer and how those dogs participate in dog shows.\", \" A groomer is seen using shears to creatively trim the dog's hair and even dye it in colorful shades of red, green, yellow and blue.\"]}, \"v_z6GHmDSskgY\": {\"duration\": 189.73, \"timestamps\": [[0, 189.73], [172.66, 178.35], [178.35, 181.19], [181.19, 184.04]], \"sentences\": [\"Multiple people are in an exercise class in a room with lot of mirrors at a gym, and they are dancing as well as spinning around and stepping up onto a platform.\", \" A woman walks by the exercise room holding weights.\", \" A woman places the weights down on the rack.\", \" A woman walks by without holding any weights.\"]}, \"v_iZtie23nW_A\": {\"duration\": 52.25, \"timestamps\": [[0, 5.75], [7.84, 13.32], [17.5, 35.53], [39.71, 52.24]], \"sentences\": [\"A red mustang is being hosed down.\", \" Next, the workers rub soap over the car.\", \" After that, they both work on washing the soap off before applying another soap over the vehicle.\", \" They then use hoses to wash the car clean.\"]}, \"v_XKOeu8n7R7s\": {\"duration\": 75.3, \"timestamps\": [[0, 32.76], [18.07, 55.72], [56.85, 67.02]], \"sentences\": [\"A small group of men are seen running around a basketball court playing a game of basketball.\", \" One player moves all around the net holding the ball and demonstrates how to properly shoot a hoop.\", \" He bounces the ball around a bit and more shots of the people playing are shown.\"]}, \"v_2zvN1cL1uik\": {\"duration\": 191.64, \"timestamps\": [[0, 10.54], [10.54, 89.11], [22.04, 39.29], [32.58, 77.61], [84.32, 99.65], [84.32, 174.39]], \"sentences\": [\"An intro starts with music player and foreign letter are presented across the screen.\", \" A man sits down in front of a hookah and begins talking to the camera.\", \" The man takes a hit of the hookah and coughs a bit.\", \" The man shows how to avoid coughing with a hookah by moving the tobacco around on the bowl.\", \" He sits down and takes another puff off the hookah.\", \" He then continues taking puffs off the device and talking about how to get clear hits.\"]}, \"v_sJ0Tc4nthOA\": {\"duration\": 61.91, \"timestamps\": [[0, 21.98], [22.29, 61.91]], \"sentences\": [\"Two people are shown holding fencing sticks and pointing towards each other.\", \" They move back and fourth and match with each other.\"]}, \"v_89rUyq2rCJ8\": {\"duration\": 41.45, \"timestamps\": [[0, 7.05], [9.74, 34.61], [35.44, 41.45]], \"sentences\": [\"A man is riding on a surfboard in the ocean.\", \" He does a big flip, landing back in the wave.\", \" The flip is repeated in slow motion.\"]}, \"v_nlYl30Dqfc0\": {\"duration\": 158.36, \"timestamps\": [[0.79, 72.85], [72.85, 158.36], [0, 158.36]], \"sentences\": [\"woman is standing in middle of stage talking to the camera and showing in slow motion dance moves.\", \" woman is making the movements quickly and showing the position of the hands.\", \" woman is showing salsa movements in a room.\"]}, \"v_KoeytdNfQ_M\": {\"duration\": 73.68, \"timestamps\": [[0, 13.63], [15.1, 44.57], [49, 73.68]], \"sentences\": [\"A man is standing on a dark field.\", \" He throws a frisbee through the air, and a dog catches it.\", \" The dog chases and does tricks to get the frisbee.\"]}, \"v_8qzR38WgsS8\": {\"duration\": 126.74, \"timestamps\": [[0, 44.99], [45.62, 99.49], [98.22, 126.74]], \"sentences\": [\"A group of young boys are on bicycles behind a sand preparing to take off and race down the course.\", \"The latch is let down and they all take off into the dirt and start to race in the dirt.\", \"Many of the boys keep going around the track and people are spread throughout the course holding up sticks.\"]}, \"v_rhOtqArO-3Y\": {\"duration\": 231.25, \"timestamps\": [[0, 12.72], [12.72, 37], [37, 76.31], [76.31, 137.59], [137.59, 173.44], [173.44, 150.31], [150.31, 172.28], [172.28, 223.15], [223.15, 231.25]], \"sentences\": [\"The video shows a canopy representing the Eastern Mountain Sports event.\", \" Several players are getting ready for the sporting event in an outdoor setting on a bright sunny day.\", \" There is a boy balancing on a tight rope.\", \" There are several other contestants walking on the tight rope.\", \" Several people watch the contestants perform.\", \" Two people are playing with a Frisbee as one person walks on the rope.\", \" A girl and boy try the tight rope together.\", \" There are people enjoying themselves on a hammock.\", \" The end credits thank the people and organizers of the event.\"]}, \"v_Dx9wjBdbZ1M\": {\"duration\": 43.21, \"timestamps\": [[6.7, 11.24], [10.16, 26.36], [25.06, 38.24]], \"sentences\": [\"The man is kicking the tile of the roof until it moved.\", \" The man pull out one tire of the roof and pointed on the sides of the tiles.\", \" He put back the tile, move it to its original place.\"]}, \"v_Fvc0-yNMFyE\": {\"duration\": 118.03, \"timestamps\": [[0, 102.09], [8.85, 118.03]], \"sentences\": [\"A small group of people are seen riding around on bumper cars while bumping into one another.\", \" The kids continue driving the cars around when a man walks in and out of frame making sure the kids and parents are safe.\"]}, \"v_kXfYuIx31Bo\": {\"duration\": 169.44, \"timestamps\": [[0, 38.97], [32.19, 138.94], [141.48, 169.44]], \"sentences\": [\"A close up of a machine is shown followed by a man shoveling dirt around a floor.\", \" The man then uses the machine around the dirt and waters down the area afterwards.\", \" Another man is seen pouring water down on the ground and pasting white paper down.\"]}, \"v_aGu-FfGDdVI\": {\"duration\": 197.9, \"timestamps\": [[0, 26.72], [28.7, 117.75], [118.74, 197.9]], \"sentences\": [\"A man is in the murky waters, using a paddle.\", \" He is kayaking toward the camera and past other kayakers.\", \" He goes through the water faster, trying to keep up with the current.\"]}, \"v_nFhBmNJ9zN0\": {\"duration\": 193.77, \"timestamps\": [[0, 56.19], [56.19, 193.77], [101.73, 124.98], [135.64, 152.11]], \"sentences\": [\"A person rides a horse in a field  kicking a ball with a curved stick.\", \" People play polo in the field riding horses.\", \" The man with the curved stick runs behind the other players and dispute the ball and scores.\", \" After, the person runs behind a player with blue t-shirt to hit the ball and score.\"]}, \"v_qNxA4UTadGo\": {\"duration\": 180.09, \"timestamps\": [[0, 95.45], [65.73, 180.09]], \"sentences\": [\"The camera pans around a pool and audience and leads into a group of swimmers standing ready on the side.\", \" Afterwards several men are seen performing impressive dives into a pool that include flips and tricks and the divers receiving medals in the end.\"]}, \"v_NouHsmaE-xA\": {\"duration\": 50.27, \"timestamps\": [[0, 18.1], [18.1, 38.46], [38.96, 50.27]], \"sentences\": [\"People are in a rodeo arena while a man on a horse prepares a rope with a loop.\", \" Then,the man spins the loop and throw to catch a calf, then run and tie the calf.\", \" A young man enters the arena and untie the calf.\"]}, \"v_UOL8oxziVwU\": {\"duration\": 42.52, \"timestamps\": [[0, 42.52], [4.68, 42.52], [20.83, 34.86], [37.63, 42.52]], \"sentences\": [\"A bald man inside of a home is holding a camera and videotaping a woman on stilts.\", \" The camera pans to the woman, who is walking around the living room in the stilts.\", \" The man asks the woman to act like a movie character, and she agrees.\", \" The woman then grabs the camera, and the view is obscured by her hand.\"]}, \"v_AbVuOBhG634\": {\"duration\": 155.04, \"timestamps\": [[0, 48.06], [48.84, 137.21], [140.31, 155.04]], \"sentences\": [\"A woman is standing outside, talking to the camera.\", \" She speaks extensively in her new york city location.\", \" At the end, a screen appears with contact information.\"]}, \"v_0je8CeAJABY\": {\"duration\": 65.1, \"timestamps\": [[0, 6.18], [6.84, 12.69], [12.69, 43.62], [43.62, 65.1]], \"sentences\": [\"First the man walks onto the stage in the beginning and shakes his head roughly.\", \" Then he wrestles a bald man in a wrestling match.\", \" Next he wrestles a man who has long short blonde hair and he wrestles a man who has a low haircut and he wins.\", \" The crowd starts cheering and roaring because of how many times he'd won.\"]}, \"v_NOGtIoZbEVg\": {\"duration\": 136.3, \"timestamps\": [[0, 0.68], [0.68, 131.53], [11.59, 131.53], [117.22, 119.95], [130.85, 136.3]], \"sentences\": [\"A young man sits on a bed.\", \" The man starts playing an acoustic guitar.\", \" The man starts singing while playing.\", \" The man pauses and rolls is eyes.\", \" The man finishes and looks up, then at the ground.\"]}, \"v_t19uSLVQGWA\": {\"duration\": 63.18, \"timestamps\": [[0.32, 26.85], [14.22, 60.65]], \"sentences\": [\"A man is seen sitting behind a drum set beginning to play while others watch him on the side.\", \" The man continues to play the drum set faster and faster and ends by stopping to speak to the camera.\"]}, \"v_T6TgMYLrPII\": {\"duration\": 113.78, \"timestamps\": [[0, 12.52], [11.95, 77.37], [49.49, 113.78]], \"sentences\": [\"The woman is adjusting the matt, while the man is raising the pole.\", \" The woman is running with a pole, then she jumped over the yellow rope.\", \" The woman jumped over the rope while her coach is on the side of the tract watching and assisting her as she jumped over the pole.\"]}, \"v_plZs-3GtoOo\": {\"duration\": 65.2, \"timestamps\": [[3.91, 5.87], [5.87, 10.11], [10.11, 14.34], [14.34, 18.91], [18.91, 34.56], [34.56, 61.29], [61.29, 65.2]], \"sentences\": [\"A barber is shown using clippers on his client's head in a hair salon.\", \" He is shaving a man's head with shaving cream and a razor.\", \" He is also styling a boy's hair with gel and a comb.\", \" He is shaving a man's beard with shaving gel and a razor.\", \" He is also cutting a man's hair with scissors to give him a Mohawk.\", \" He is using clippers on a young man.\", \" The website is advertised on the screen with pictures of the website.\"]}, \"v_FRzN9ApCxW8\": {\"duration\": 67.71, \"timestamps\": [[0, 5.76], [5.42, 44.01], [43.33, 67.71]], \"sentences\": [\"A man is outside in a field of grass pushing a lawn mower back and forth.\", \"Once he makes it to the other side of the strip,the person with the camera walks closer to him and starts to talk to them.\", \"After,the guy with the lawn mower begins to laugh and continues cutting the yard.\"]}, \"v_3hSPAtKORgk\": {\"duration\": 81.13, \"timestamps\": [[0, 39.75], [20.28, 39.75], [42.19, 81.13]], \"sentences\": [\"A graphic of a boy kicking a soccer ball with 3 defender is seen.\", \" The ball is deflected by the defenders in the graphic.\", \" A soccer player kicks a ball that is blocked by a series of defenders and a goalie on and indoor field.\"]}, \"v_tHhdS8t9ytI\": {\"duration\": 106.21000000000001, \"timestamps\": [[0, 57.88], [57.88, 106.21]], \"sentences\": [\"docto is talking in a consulting room and mixing liquids into a test tube preparing coffee and talking to the camera about benefis of the coffee.\", \" coffe is being served in a cup and is shown the benefits of the coffee in the body.\"]}, \"v_Zob68l3snFo\": {\"duration\": 155.88, \"timestamps\": [[0, 17.93], [17.15, 30.4], [31.18, 155.88]], \"sentences\": [\"a man is in a boat in the water.\", \" a loaf of bread is thrown to fishes and their are fighting to eat it.\", \" man is diving ni deep sea through the shoals and corals.\"]}, \"v_--0edUL8zmA\": {\"duration\": 92.18, \"timestamps\": [[6.91, 69.14], [11.06, 69.14], [16.13, 69.14], [21.2, 69.14], [27.19, 69.14], [33.19, 72.36], [41.48, 72.36], [58.08, 72.36], [71.9, 72.36]], \"sentences\": [\"Four men are playing dodge ball in an indoor court.\", \" They start running towards the red balls after the coach blows the whistle.\", \" One of the players hits the ball on his opponent.\", \" The opponent strikes back at the other player, but he manages to dodge the ball.\", \" Next, the player hits another ball directly at his opponent standing opposite him.\", \" The player hits the ball hard on his opponent's leg.\", \" They continue playing several rounds of dodge ball.\", \" The player aims directly at one of his opponents and hits him on his leg.\", \" The game ends after the coach blows the whistle.\"]}, \"v_ABCRXwB5-JQ\": {\"duration\": 49.69, \"timestamps\": [[0, 49.69], [31.31, 40.5], [31.31, 37.27]], \"sentences\": [\"People sail in canoes in a river rowing oars.\", \" A young man plays the guitar in a boat, while a youth smoke a cigarette.\", \"  Two young ladies sail a boat behind the men.\"]}, \"v_qxQWNu_MN94\": {\"duration\": 6.97, \"timestamps\": [[0, 1.99], [2.37, 5.68], [4.18, 4.53]], \"sentences\": [\"A man walks onto a diving board.\", \" He jumps off into the pool below him.\", \" Another person steps onto the diving board.\"]}, \"v_tIAdhrfT70I\": {\"duration\": 153.65, \"timestamps\": [[0, 6.15], [6.91, 19.21], [20.74, 56.85], [57.62, 99.1], [99.87, 139.82], [140.59, 153.65]], \"sentences\": [\"A fox news icon appears on the screen.\", \" A group of people are in a building, playing a game called beer pong.\", \" The news reporters gather in their studio to play beer pong.\", \" A male and female reporter attempt to throw the balls at the cups.\", \" The woman walks away laughing as the other reporters continue to talk.\", \" They resume playing before the fox news icon again appears onscreen.\"]}, \"v_cHSGL-OcMak\": {\"duration\": 54.24, \"timestamps\": [[0.27, 30.1], [21.97, 53.7]], \"sentences\": [\"Two people are seen walking around on stilts in the middle of a street and sidewalk.\", \" The walk continue walking up and down the streets on stilts passing by people and speaking.\"]}, \"v_HlFnWOx53XU\": {\"duration\": 77.39, \"timestamps\": [[0, 75.07], [0, 77.39], [3.48, 77.39]], \"sentences\": [\"woman is standing in a field playing bagpipes.\", \" woman is standing in the middle of a parking lot playing bag pipes.\", \" a blue house is behind the woman that is playing bagpipes.\"]}, \"v_bw96D55q2FI\": {\"duration\": 130.31, \"timestamps\": [[0, 1.95], [1.95, 25.41], [25.41, 60.59], [60.59, 100.34], [100.34, 130.31]], \"sentences\": [\"A skateboarder comes by and rolls in a patch of dirt by the side walk.\", \"A man then begins to ride his skateboard from the top of the roof down an inclined road.\", \"The man then begins moving and skateboarding throughout the neighborhood and interacting with the people.\", \"All of a sudden,the man walks through the subway and gets off his skateboard until he gets to his destination.\", \"He then proceeds to skate through the city,jumping over the poles and the credits begin to roll.\"]}, \"v_6iSqTbL5WXY\": {\"duration\": 21.85, \"timestamps\": [[0, 1.97], [1.97, 11.14], [12.56, 19.12], [19.23, 21.85]], \"sentences\": [\"We see a white opening screen.\", \" We see a man dunk a basketball wearing jump stilts.\", \" We see another man bounce the ball and the jump stilt man dunks again.\", \" We then see the opening screen for the closing.\"]}, \"v_75u6o4tXGC0\": {\"duration\": 225.97, \"timestamps\": [[0, 61.01], [61.01, 225.97]], \"sentences\": [\"man is standing in front of a kitchen cooking and showing the ingredients to a cook.\", \" man put the ingredients in a pan and cook the chicken with the salad and serve it in a plate.\"]}, \"v_LrmtSSUVRaQ\": {\"duration\": 107.9, \"timestamps\": [[0, 2.7], [2.7, 21.58], [21.58, 101.43], [101.43, 107.9]], \"sentences\": [\"An introduction comes onto the screen for a video about casino dealing.\", \" A man explains that they are at a casino dealing school where they will teach people how to deal.\", \" Another man begins to tell and about the basics for casino dealing.\", \"  The video ends with the closing credits shown on the screen.\"]}, \"v_xPnNcv7ErXk\": {\"duration\": 19.48, \"timestamps\": [[0, 10.42], [9.64, 19.48]], \"sentences\": [\"A young child is seen smiling to the camera and beginning to climb across monkey bars.\", \" She makes it to the other side and then waves to the camera.\"]}, \"v_zcdJNPYkIE0\": {\"duration\": 66.08, \"timestamps\": [[0, 57.82], [21.81, 23.13], [45.93, 53.86], [57.82, 66.08]], \"sentences\": [\"A scuba-diving man interacts underwater with a large fish.\", \" The man makes a pushing gesture towards the camera.\", \" The man makes several gestures towards the camera.\", \" The fish rams into the man and swims away.\"]}, \"v_yVbzejdydrw\": {\"duration\": 110.09, \"timestamps\": [[0, 11.01], [12.11, 22.57], [23.12, 60], [33.58, 75.41], [88.62, 103.48]], \"sentences\": [\"A man holds two swords out and pretends to hit another people holding swords.\", \" He demonstrates again and hands the swords to another man.\", \" He commentates on his ability while continuing to show several sword movements.\", \" Other men begin to fight with the swords.\", \" One man falls down and acts hurt to portray a role in the play Hamlet.\"]}, \"v_rMdojBVP-aM\": {\"duration\": 29.35, \"timestamps\": [[0.44, 5.58], [5.58, 19.96], [18.2, 27.74]], \"sentences\": [\"A camera pans around a woman standing in front of a dog balancing on a fence.\", \" The dog continues balancing on the fence while the camera pans around.\", \" The dog then jumps off the fence in the end.\"]}, \"v_liI1E_ZZV5w\": {\"duration\": 12.69, \"timestamps\": [[0, 1.91], [1.91, 4.89], [4.89, 9.97], [9.97, 12.7]], \"sentences\": [\"A man is holding a white shoe and puts it on the ground.\", \"The man already has a shoe on his right foot and it tightens itself when he touches it.\", \"The man's face is shown and he's looking down at the shoes and then it shows the left shoe on the foot and it's tightening itself .\", \" The man stands up from the car and the scene reveals that it's Michael J Fox in the movie Back to the Future.\"]}, \"v_Oya9LWABkf4\": {\"duration\": 100.4, \"timestamps\": [[0, 8.53], [8.53, 74.8], [74.3, 100.4]], \"sentences\": [\"A girl is outside on a boat dock holding a three hula hoops in her hands.\", \"She starts swinging them in her hand,around her legs,wrist,and neck and stops briefly to adjust the camera.\", \"The young lady then appears again with twenty to thirty hula hoops around her body swinging them back and forth before advising you to subscribe to a channel.\"]}, \"v__WPcOFgi5vU\": {\"duration\": 138.82999999999998, \"timestamps\": [[0.69, 138.83], [72.89, 138.83]], \"sentences\": [\"Two men are seen standing in an enclosed room holding tennis rackets and begin hitting the ball off the wall to one another.\", \" The men continue walking back and fourth with the ball and hitting it off the wall as well as bumping into the wall.\"]}, \"v_8zfA20hcc0o\": {\"duration\": 130.57, \"timestamps\": [[0, 45.05], [41.13, 100.54], [90.74, 129.26]], \"sentences\": [\"Two men are seen passing a ball to one another and leads into a group of people playing soccer.\", \" The people move up and down the court while the camera follows their movements.\", \" Many people watch on the sides as the group continues to play.\"]}, \"v_pYYA4rARL1Y\": {\"duration\": 192.38, \"timestamps\": [[0, 7.7], [7.7, 174.1], [7.7, 12.5], [30.78, 34.63], [55.79, 65.41], [152.94, 156.79], [157.75, 192.38]], \"sentences\": [\"We see the opening title screens.\", \" We then see men spinning on the pommel horse with title screens clipped in between.\", \"  We see a man throwing his legs over the pommel horse.\", \" We see a man in red spinning himself around the pommel horse quickly.\", \" A man in red and yellow spins fast on the pommel.\", \" We see a man dismount the pommel and throw his arms in the air.\", \" We then see the closing scenes.\"]}, \"v_R4ES1QLRvtg\": {\"duration\": 187.39, \"timestamps\": [[23.42, 53.41], [53.41, 113.37], [113.37, 149.91], [149.91, 177.08], [177.08, 187.39]], \"sentences\": [\"A person in dark winter gear is using a shovel to shovel the walkway of a parking garage.\", \" It is night time and the street is dimly lit with the street lights.\", \" He continues shoveling the entire pathway while several cars drive by on the main road nearby.\", \"He picks up the up snow and piles it up on the corner.\", \" After he finishes, he walks away.\"]}, \"v_ZO8ValsY3rE\": {\"duration\": 107.39, \"timestamps\": [[6.98, 52.62], [53.16, 66.58], [66.58, 91.82]], \"sentences\": [\"A woman holds a box with UV light to light the handle of the refrigerator, her hand, the microwave oven and utensils.\", \" Then, the woman wash and dry her hands and light a hand with the UV light.\", \" After, the woman takes off her ring and wash and wash her hands with soap and rinse with water.\"]}, \"v_cGqmHplppAU\": {\"duration\": 209.03, \"timestamps\": [[0, 88.84], [65.84, 209.03]], \"sentences\": [\"Various clips are shown of people playing on the beach as well putting sunscreen on and carrying objects.\", \" A large explosion is shown followed by kids fishing with a man and more clips of people playing on the beach.\"]}, \"v_a50gTER-FsQ\": {\"duration\": 211.49, \"timestamps\": [[0, 19.03], [19.03, 211.49], [19.03, 210.43], [86.71, 93.05], [195.63, 211.49]], \"sentences\": [\"Three men walk into a building.\", \" They begin to play a game of curling.\", \" People are shown enjoying themselves at the curling hall and the trophies are shown that have been won.\", \" The men are shown in the locker preparing to curl.\", \" The men are shown all together posing on the ice.\"]}, \"v_FkSf3pxra3M\": {\"duration\": 16.09, \"timestamps\": [[0, 16.09], [1.13, 8.69], [8.77, 16.09]], \"sentences\": [\"Many judges sit around a field, waiting the performance of an athlete.\", \" An athlete approaches the field area.\", \" The athlete spins his body around and tosses a disc with maximum force.\"]}, \"v_cRDXBF2RcYI\": {\"duration\": 30.65, \"timestamps\": [[0, 30.65], [0.77, 6.59], [6.28, 30.65]], \"sentences\": [\"A person is laying back on a bed.\", \" A person puts wax on their leg.\", \" They put paper on it and rip off the hair.\"]}, \"v_ResZdSbk9kE\": {\"duration\": 96.99000000000001, \"timestamps\": [[0, 96.99], [2.91, 96.99], [47.04, 96.99]], \"sentences\": [\"man wearing a blue helmet is kayaking in river showing how to use a row.\", \" man in river is sitting in yellow kayak holding a row.\", \" man is fighting against the current in a kayak.\"]}, \"v_K-Jzu2AmuW4\": {\"duration\": 170.04, \"timestamps\": [[0, 72.27], [72.27, 170.04]], \"sentences\": [\"Two women and a man dance pop music while doing different steps.\", \" The women and the man rise the arms while dancing, then they continue dancing and turning.\"]}, \"v_3H7ZS0E90pY\": {\"duration\": 107.93, \"timestamps\": [[0, 10.79], [10.79, 96.59], [96.59, 98.21], [100.91, 107.93]], \"sentences\": [\"A girl jumps onto a balance beam.\", \" She does a gymnastic routine on the balance beam.\", \" She jumps off the beam and lands on the mat with her hands up.\", \" A woman in a blue shirt comes over and hugs her.\"]}, \"v_Wr_Eu2M7U9E\": {\"duration\": 219.06, \"timestamps\": [[0, 9.86], [8.76, 15.33], [15.33, 41.62], [41.62, 51.48], [51.48, 88.72], [88.72, 104.05], [104.05, 143.48], [143.48, 173.06], [173.06, 219.06]], \"sentences\": [\"A woman walks into a garage with a rolled up paper in her hand.\", \"Once she leaves,a black cat is shown and it begins to crawl over everything and then the lady comes and pets it.\", \"The female leaves and walks into a room and starts covering the room in wall paper.\", \"She forgets the scissors and walks out to grab them and comes back to apply more paper on the wall.\", \"A break is needed and the woman get a drink from the kitchen.\", \"Shortly after,the lady continues her tasks and then walks outside to take her cat out.\", \"The wall still isn't finished and she goes back to the room to finish it rolling the outside of it to ensure its smoothness.\", \"As she finishes,the cat comes in the room and starts playing with a ball before returning back outside.\", \"The women reappears in another set of clothes to finish the wall,she finally finishes and begins to throw her hands up and collapses on the bed.\"]}, \"v_ctFlPn4EfkU\": {\"duration\": 76.51, \"timestamps\": [[0, 76.51], [59.3, 61.21], [61.21, 61.59]], \"sentences\": [\"People are playing golf on the grass.\", \" A man hits the ball with a club.\", \" A man in a white hat walks behind him.\"]}, \"v_OK84hJx9daQ\": {\"duration\": 121.86, \"timestamps\": [[0, 6.09], [6.7, 50.57], [51.18, 65.19], [65.8, 105.41], [106.02, 116.38], [116.98, 121.86]], \"sentences\": [\"The final product and credits are shown.\", \" Ingredients are mixed and sauteed.\", \" Pasta is added to the fry pan.\", \" Tomato paste and dry ingredients is added to the pan.\", \" The final product is taken from the fry pan and placed on a white plate.\", \" The final product and credits of the clip are shown.\"]}, \"v_q66BG9h_7XI\": {\"duration\": 182.35, \"timestamps\": [[0, 31], [31, 64.73], [64.73, 114.88], [114.88, 182.35]], \"sentences\": [\"People are strapping on these Qloja machines to their feet.\", \" It takes a pretty long time to get them on and then they start to walk.\", \" They build up a little speed and start kind of running in a line.\", \" A line of about 15 people wearing these contraceptions are running on them, then a smaller group of three are bouncing up and down  all around.\"]}, \"v_XumLmNQiRjk\": {\"duration\": 97.03999999999999, \"timestamps\": [[0, 10.19], [10.67, 97.04]], \"sentences\": [\"A man in a white shirt is talking to the camera.\", \" People are playing a game of volleyball against each other.\"]}, \"v_V_rril47Z5Q\": {\"duration\": 164.82, \"timestamps\": [[0, 162.34], [47.8, 77.46], [132.68, 162.34]], \"sentences\": [\"Two people choreograph a routine with nunchucks.\", \"  The girls drop the nunchucks then dance around.\", \"  A third person joins and then leaves.\"]}, \"v_q3DzEgYmIV0\": {\"duration\": 34.22, \"timestamps\": [[0, 34.22], [2.22, 34.22], [4.11, 34.22], [28.91, 34.22]], \"sentences\": [\"A hand saw sits on top of a roof.\", \" A ladder leans on it.\", \" The roof is old and dilapidated.\", \" The camera then pans down.\"]}, \"v_Kq8g8jjodvc\": {\"duration\": 49.75, \"timestamps\": [[0, 5.47], [7.46, 33.58], [35.07, 49.75]], \"sentences\": [\"A weight lifter opens his mouth wide.\", \" He lifts a giant barbell with all his might.\", \" He lifts it to his chest, then over his head.\"]}, \"v_B0sXYJeZ8Xk\": {\"duration\": 50.78, \"timestamps\": [[0.76, 16.76], [16.76, 35.29], [34.28, 47.99]], \"sentences\": [\"A woman is seen standing in a yard with a lawn mower in front of her.\", \" The girl then pushes the lawn mower along the yard.\", \" The camera moves in closer of the woman still pushing the mower and speaking to the camera.\"]}, \"v_2R_TVXvocQs\": {\"duration\": 169.23, \"timestamps\": [[0, 5.08], [5.92, 169.23], [0, 169.23]], \"sentences\": [\"a man and a woman are dancing doing a zumba choreogaphy in the middle of stage.\", \" man wearing a grey shirts approach to stage and keeps dancing.\", \" woman wearing a pink shirt is in the background holding a white cellphone and taking pictures.\"]}, \"v_W_5Mx-mfNmU\": {\"duration\": 87.15, \"timestamps\": [[8.28, 13.94], [17.86, 33.55], [33.99, 49.24], [53.16, 57.95], [57.95, 65.36], [66.67, 76.25]], \"sentences\": [\"A couple wheels a small wagon and cooler in a park area.\", \" Sticks are collected then a ring of stones is construct with the sticks stacked together with twigs inside.\", \" The bundle of woods is lit on fire and more sticks are added to keep it going.\", \" The man sits down in a lawn chair and enjoys the day.\", \" The man screws a nozzle onto a propane tank and fuels the fire with it.\", \" The fire is put out with a bucket of water and covered in earth.\"]}, \"v_gyCXP8w8GRA\": {\"duration\": 122.21, \"timestamps\": [[0, 4.28], [4.28, 34.22], [34.22, 47.66], [47.66, 51.33], [51.33, 75.16], [75.77, 122.21]], \"sentences\": [\"A young team of boys are in a gym at a karate match.\", \"A woman walks her son out to the mat and begins fixing his mat and preparing him to face his opponent.\", \"The two individuals walk up to the mat and the referee gives them the signal to begin.\", \"As the boy is being approached,he kicks his opponent in the head.\", \"The boy that is kicked falls out on the ground and his mother rushes out to make sure he is okay as the other boy takes a knee.\", \"Once the boy is okay,the referee begins making several hand gestures and they conclude the match,the young boy goes to his mother and makes his way to who ever is holding the camera.\"]}, \"v_f4k-dKaEZog\": {\"duration\": 9.03, \"timestamps\": [[0, 9.03], [0.95, 9.03], [3.03, 7.27], [6.82, 8.58]], \"sentences\": [\"A team of players run on a field.\", \" They are holding some sort of rackets.\", \" The swing them at each other.\", \" Some players run past a yellow line.\"]}, \"v_8olnQLX0hO8\": {\"duration\": 117.7, \"timestamps\": [[0, 65.32], [60.62, 117.7]], \"sentences\": [\"A small group of men are seen walking down a dirt road followed by several shots of them riding in tubes and laughing to the camera.\", \" They continue riding down the river under trees and has more people holding the camera.\"]}, \"v_ral5Oaib_vk\": {\"duration\": 207.15, \"timestamps\": [[0, 24.86], [24.86, 34.18], [34.18, 133.61], [133.61, 150.18], [150.18, 190.57], [190.57, 207.15]], \"sentences\": [\"Opening credits show the upcoming activities.\", \" A man in plaid is standing at a microphone acknowledging the crowd.\", \" He begins playing the harmonica.\", \" The man stops playing and dances in place.\", \" The man continues to play his harmonica.\", \" The man stop splaying and thanks the crowd as the closing credits appear.\"]}, \"v_sR0hZeYm06I\": {\"duration\": 72.1, \"timestamps\": [[7.57, 16.58], [16.58, 34.61], [34.61, 48.67], [48.67, 56.24], [56.24, 63.45], [63.45, 67.05]], \"sentences\": [\"There's a little boy dressed in a red shirt and blue jeans seated on a black leather recliner.\", \" He is sitting with his hands stretched out.\", \" A man standing next to him with a small stick is tickling the boy's hand with the stick.\", \" The boy seems to like it and asks him to do it on his other hand too.\", \" The man tickles the little boy's other hand too.\", \" The boy smiles and asks for more.\"]}, \"v_mWOa-0w0Bls\": {\"duration\": 125.48, \"timestamps\": [[0, 43.29], [38.9, 89.72], [70.9, 119.83]], \"sentences\": [\"A camera pans around grass and leads to a fence.\", \" The camera pans all around the fence with flowers on the side.\", \" The camera continues to pan around the fence and the different colors.\"]}, \"v_nobV1wL__iY\": {\"duration\": 157.73, \"timestamps\": [[0, 33.12], [34.7, 125.4], [134.86, 157.73]], \"sentences\": [\"A gun is seen moving around several corners and hitting people in various places.\", \" More shots of a person running around a paintball field as shown as well as pointing to others, shooting others, and hiding behind objects.\", \" The men group together in the end, give a thumbs up, and show more shots of people shooting.\"]}, \"v_NLkJgnrKaKM\": {\"duration\": 17.93, \"timestamps\": [[0.09, 9.32], [9.32, 17.93]], \"sentences\": [\"A man takes a hookah and exhales smoke rings.\", \"  He inhales and does it again.\"]}, \"v_5fMtHNSIOAE\": {\"duration\": 206.45, \"timestamps\": [[0, 7.23], [7.23, 70.19], [70.19, 139.35], [139.35, 206.45]], \"sentences\": [\"Eight middle aged white men are on one of a rope attempting to win a game of tug-of-war outside in a field at what looks to be a tournament.\", \"As the game begins,the men all fall into a slanted position as they struggle to pull the rope.\", \"Suddenly, a man from the sides begins to talk to the man in the front and gets in his face as if he's giving him a pep talk to stay strong,win,and not let the other team get the best of him.\", \"The game continues and you can see that the team is being drug but they suddenly gain strength and pull the rope back to their side,then they all stand up as the game is finished.\"]}, \"v_2I9xymLVssI\": {\"duration\": 215.13, \"timestamps\": [[0, 18.29], [18.29, 30.12], [34.42, 41.95], [43.03, 44.1], [50.56, 61.31], [58.09, 61.31], [81.75, 110.79], [111.87, 130.16], [132.31, 162.43], [162.43, 172.11]], \"sentences\": [\"Two people get into an truck.\", \" They drive onto the street.\", \" A man carrying a ladder sets it against a house.\", \" The woman watches the man.\", \" The man looks at the roof of the house on the ladder.\", \" He shows her something and she holds it in her hand.\", \" A man talks in front of a house.\", \" A man climbs a ladder and looks at a roof.\", \" A man goes through a stack of papers.\", \" It shows the papers on the screen.\"]}, \"v_xYM6h31PrM0\": {\"duration\": 115.17, \"timestamps\": [[0, 29.37], [29.94, 89.26], [88.11, 111.14]], \"sentences\": [\"A gymnast is seen standing before a beam raising her arms up and others watching on the side.\", \" The woman then performs a gymnasts routine in front of a large group of people.\", \" She falls off at one point and jumps back on to finish her routine and ends by jumping off the side.\"]}, \"v_qsTCTQo-wI8\": {\"duration\": 196.23, \"timestamps\": [[10.79, 36.3], [36.3, 72.61], [72.61, 118.72], [118.72, 187.4], [187.4, 196.23]], \"sentences\": [\"A man is explaining how to play the drums on bongos.\", \" He demonstrates how he alternates between three bongos.\", \" He later switches to a much slower beat and rhythm by drumming on the bongos.\", \" He explains how the beats on the drum changes as the rhythm changes.\", \" He then switches back to a faster beat and rhythm on the drums by alternating between two drums.\"]}, \"v_8lw8uAimUXI\": {\"duration\": 9.66, \"timestamps\": [[0, 0.92], [1.01, 2.99], [3.19, 9.66]], \"sentences\": [\"A woman stands at the end of a diving board.\", \" She lightly bounces up and down.\", \" She then does a backflip into the water.\"]}, \"v_2IRQ5fPwHV8\": {\"duration\": 164.84, \"timestamps\": [[0, 37.91], [42.86, 131.05], [132.7, 164.84]], \"sentences\": [\"A group of women are gathered in a room, then go to the beach.\", \" A woman photographs the others under the pier.\", \" They talk to the camera between shoots.\"]}, \"v_Fg_VZJAtByk\": {\"duration\": 198.21, \"timestamps\": [[0, 24.78], [25.77, 193.25], [194.24, 198.21]], \"sentences\": [\"A man takes a moment to himself before he starts playing the guitar.\", \" The man plays the guitar.\", \" The man quits playing the guitar.\"]}, \"v_7ToBC5eGg38\": {\"duration\": 9.08, \"timestamps\": [[0, 5.54], [3.22, 6.99], [5.08, 8.72]], \"sentences\": [\"A young woman is seen standing on a court wearing a hat and holding a tennis racket.\", \" The girl then throws the ball up into the air and hits it off into the distance.\", \" She looks back and smiles to the camera.\"]}, \"v_B0rorWq-j44\": {\"duration\": 47.65, \"timestamps\": [[0, 18.11], [18.34, 28.35], [28.35, 29.54], [30.97, 44.07], [45.03, 47.65]], \"sentences\": [\"An elderly lady in a neck brace yells at the camera in a grocery store.\", \" The lady vacuums the floor in the store.\", \" The lady dances to the music and pretends to play a guitar.\", \" The lady takes off her sunglasses and talks to the camera.\", \" We end seeing her standing in an aisle.\"]}, \"v_4A49mkP6HsM\": {\"duration\": 129.2, \"timestamps\": [[16.15, 39.4], [39.4, 56.85], [56.85, 69.77], [69.77, 104], [104, 116.92], [116.92, 122.09]], \"sentences\": [\"There is a group of Korean Pop singers performing on a stage.\", \" One of the singers is playing the violin while the audience cheers and claps for him.\", \" Then another singer grabs the mic and talks to the audience.\", \" The audience applaud and smile as they watch.\", \" The performer sings as he plays the violin and then bows down in front of the audience.\", \" The crowd cheers and claps for him.\"]}, \"v_TPzxIqu1JJg\": {\"duration\": 225.07, \"timestamps\": [[0, 52.89], [45.01, 167.68], [110.29, 217.19]], \"sentences\": [\"A text intro leads into several shots of a warehouse and people working with torches.\", \" People are seen using computers as well as magnets that leads into people making cakes.\", \" People use several tools and materials to make a large cake that moves around and brings it into an exhibit in the end.\"]}, \"v_HsklqPvsMEQ\": {\"duration\": 54.8, \"timestamps\": [[0, 14.52], [16.71, 39.18], [39.46, 53.43]], \"sentences\": [\"A person is seen aiming a paintball gun off into the distance in a large field.\", \" Many people watch on the side as the man aims.\", \" Suddenly another person comes into frame and plays with the man.\"]}, \"v_N3rFdrfE3q8\": {\"duration\": 34.51, \"timestamps\": [[0, 5], [5.52, 14.84], [14.84, 15.87]], \"sentences\": [\"A boy picks up a rake off the ground and carries it.\", \" A man goes down a slide wearing a blue helmet.\", \" He falls onto the ground after going down the slide.\"]}, \"v_7ZX3NHDmMZY\": {\"duration\": 218.97, \"timestamps\": [[0, 218.97], [68.97, 71.16], [185.03, 218.97]], \"sentences\": [\"People are in a swimming pool playing water polo.\", \" A woman is walking outside the pool.\", \" A man rubs his face while in the water before getting out of the water.\"]}, \"v_jgNeMnPVfkQ\": {\"duration\": 70.61, \"timestamps\": [[0, 9.18], [5.3, 16.95], [15.89, 16.95], [16.95, 23.3], [22.6, 42.72], [43.07, 43.78], [43.43, 67.08]], \"sentences\": [\"A player on the orange team skates with the puck until he is tripped up and falls.\", \" Player 18 on the grey team retrieves the puck and makes a break down the ice perused by defenders.\", \" Player 18 takes a shot on the goal.\", \" The goalie on the orange team blocks the shot and puts the puck back into play.\", \" Player 4 on the orange team takes the puck down the ice passing once to himself passed defenders.\", \" Player 4 takes a shot on the goal and scores.\", \" Player 4 and teammates celebrate and the win and skate off the ice.\"]}, \"v_9WDvq8LXrxU\": {\"duration\": 20.11, \"timestamps\": [[0, 20.11], [7.34, 9.45], [19.51, 20.11]], \"sentences\": [\"A seated man cleans a shoe in a classroom setting with other individuals.\", \" The man turns to the camera and smiles.\", \" The man laughs as he holds the shoe downwards.\"]}, \"v_fLvPz8W00l4\": {\"duration\": 67.15, \"timestamps\": [[0, 66.82], [54.06, 58.42]], \"sentences\": [\"A man shows the proper way to lift a kettlebell.\", \"  He shows with his hips how not to do it.\"]}, \"v_c9bvuUO9Q0Q\": {\"duration\": 43.2, \"timestamps\": [[1.73, 18.36], [11.45, 27.87], [31.54, 40.83]], \"sentences\": [\"A small group of people are seen standing outside with one being blindfolded and holding a bat.\", \" A person then pulls up a pinata and begins swinging at the object.\", \" The boy moves his hands around and continues to swing at the object.\"]}, \"v_uqiooW1OAXU\": {\"duration\": 158.27, \"timestamps\": [[0, 22.16], [22.95, 47.48], [47.48, 109.2], [47.48, 65.68], [110, 138.48], [138.48, 155.89]], \"sentences\": [\"People gather in a tour facility in the dessert.\", \" Then, people rides camels pulled by men.\", \" The caravan advance in the desert, while the camels walk in line.\", \" A white car parks behind the camels.\", \" Then, the man makes kneel the camels and people get down the camels.\", \" After, a group of tourists rides camels and pass on front the tour facility.\"]}, \"v_F1RpG1Vwi28\": {\"duration\": 130.33, \"timestamps\": [[13.69, 27.37], [27.37, 56.04], [56.04, 74.29], [74.29, 97.1], [97.1, 116.65], [116.65, 124.47]], \"sentences\": [\"There's a bald man with a goatee beard standing in his bathroom in front of a large mirror with an electric shaver in his hand.\", \" He is demonstrating how to shave off his beard and maintain it.\", \" Then he begins showing how to use the trimmer for his beard by adjusting the clipper size.\", \" He completely shaves his beard off.\", \" He then touches his skin to see how clean the shave is.\", \" He removes the hair off of the shaver and cleans it.\"]}, \"v_hPOtGLv1GzM\": {\"duration\": 191.16, \"timestamps\": [[0, 191.16], [34.41, 35.36], [54.48, 57.35], [54.48, 191.16]], \"sentences\": [\"People are riding bicycles on a track.\", \" A man crashes and lands on the track.\", \" A man in a hat is talking to the camera.\", \" People continue to ride bikes on the track and crashing.\"]}, \"v_p1yiPvIkRec\": {\"duration\": 6.76, \"timestamps\": [[0.1, 6.76], [0.74, 4.16], [4.63, 6.76]], \"sentences\": [\"A person is seen sitting on a bench holding a rubix cube.\", \" The person then begins moving their hands around the solve the cube.\", \" The person solves the cube then turns the camera off.\"]}, \"v_HGtfDm5EOtc\": {\"duration\": 150.14, \"timestamps\": [[0, 107.35], [45.79, 150.14]], \"sentences\": [\"Two men are seen swinging their arms and legs around one another while a group of people stand around and watch them.\", \" The men continue spinning around wile people clap and end with them shaking each other's hands.\"]}, \"v_n--fgqwuTTI\": {\"duration\": 170.57, \"timestamps\": [[11.09, 34.11], [63.11, 75.05], [133.9, 144.99]], \"sentences\": [\"A person is putting something on a chain of a bike.\", \" They use a blue tool to take the chain apart.\", \" They put it back together using a tool.\"]}, \"v_fRmHJKlQmmw\": {\"duration\": 23.89, \"timestamps\": [[0, 12.07], [12.19, 13.74], [14.34, 23.89]], \"sentences\": [\"A man is doing a gymnastic routine on a balance beam.\", \" He jumps off the beam onto a mat.\", \" Another man jumps onto a balance beam and does a routine.\"]}, \"v_EP9Ul7UdzYI\": {\"duration\": 211.65, \"timestamps\": [[0, 26.46], [28.57, 40.21], [69.84, 211.65]], \"sentences\": [\"Several men dressed for the cold are waiting in a room outside the snow.\", \" They go outside, prepared to ski.\", \" They begin skiing, going down a steep hill, moving side to side and angling through the snow covered trees.\"]}, \"v_ksk7okDk_wY\": {\"duration\": 50.88, \"timestamps\": [[0, 4.07], [7.89, 32.31], [33.07, 50.88]], \"sentences\": [\"A group of people are on an outdoor court on the beach.\", \" They are playing a game of volleyball.\", \" They kick and hit the ball back and forth, celebrating when they win as the crowd claps and cheers.\"]}, \"v_mdXSm8Yr6aU\": {\"duration\": 120.07, \"timestamps\": [[0, 27.62], [30.62, 120.07]], \"sentences\": [\"A little girl is on a swing set next to her baby brother.\", \" They are being pushed as they swing back and forth.\"]}, \"v_svSM-UqjNWE\": {\"duration\": 48.11, \"timestamps\": [[0, 11.31], [11.07, 48.11]], \"sentences\": [\"A woman is seen sitting under an umbrella with a hookah stick in her mouth.\", \" She takes a couple puffs from the stick while blowing it into the camera and speaking to the camera.\"]}, \"v_FxGXQIH3-RQ\": {\"duration\": 159.8, \"timestamps\": [[0, 159.8], [0, 26.37], [26.37, 40.75], [40.75, 47.14], [47.94, 150.21], [151.81, 159.8]], \"sentences\": [\"People walk around cars and tents and sit in chairs in the background doing different things.\", \" A man and a dog are in the middle of a field preparing to play frisbee.\", \" The man throws a frisbee and the dog runs, catches it and brings it back.\", \" The dog is very excited preparing for his next trick.\", \" The man kneels down and throws frisbees for the dog as he rolls, flips and walks around.\", \" A second man joins the first man on the field and they both raise an arm and then turn to walk away together.\"]}, \"v_6_NquDQUFm0\": {\"duration\": 97.32, \"timestamps\": [[0, 31.63], [29.19, 73.96], [68.12, 93.91]], \"sentences\": [\"A woman is seen running back and fourth on a small track and leads into her putting a helmet on.\", \" She grabs a pole and runs down the track jumping over a bar and onto a mat.\", \" She jumps up and walks over to a group of people keeping her score.\"]}, \"v_c1eUdyyT4zg\": {\"duration\": 32.25, \"timestamps\": [[0, 32.25], [0.97, 32.25], [0.97, 30.8]], \"sentences\": [\"kids are driving bumper cars in an amusement park.\", \" parents are sitting on bumper cars with his children.\", \" man wearing a yellow vest is sitting on the background.\"]}, \"v_ffGPrFNbQkA\": {\"duration\": 153.97, \"timestamps\": [[0, 43.11], [41.57, 109.32], [116.25, 151.66]], \"sentences\": [\"A large group of people are seen wearing protective hear and wandering around an area speaking to one another.\", \" Another person runs in and speaks to the others while holding a gun and others aiming over the sides.\", \" A woman grabs a toy giraffe while others react and others watch in the distance.\"]}, \"v_PBxI7l0AqAY\": {\"duration\": 154.0, \"timestamps\": [[0, 26.95], [26.18, 70.07], [70.84, 119.35], [119.35, 154]], \"sentences\": [\"A man is speaking about how things works while a woman works on a horse.\", \" As he speaks he washes his hands with some hand sanitizer.\", \" Then he gets soap and starts to wash his hands very throughly.\", \" He grabs a napkin and dries his hands off still continuing to speak.\"]}, \"v_j5D5FR6Xtps\": {\"duration\": 36.99, \"timestamps\": [[0.55, 20.34], [18.86, 35.7]], \"sentences\": [\"A person is seen holding a woman's long hair as well as a brush in his hands.\", \" The man continues playing with the hair and leads into him brushing the hair and braiding it.\"]}, \"v_E1Xsc4kfFRE\": {\"duration\": 138.71, \"timestamps\": [[0, 15.95], [18.73, 70.74], [74.9, 138.71]], \"sentences\": [\"A couple of kids are cheering at a bowling alley.\", \" They join other children, arguing over a bowling ball.\", \" They pick a ball, then bowl it down the lane.\"]}, \"v_UyORfPxpaGo\": {\"duration\": 12.05, \"timestamps\": [[0, 2.05], [2.05, 4.82], [4.82, 12.05]], \"sentences\": [\"A boy sitting on a bunk bed.\", \" Another boy approaches as he wraps his legs around his neck.\", \" The second boy spins him around and slams him to the ground.\"]}, \"v_M6xFXdXOzzc\": {\"duration\": 209.12, \"timestamps\": [[0, 2.09], [11.5, 39.73], [17.78, 92.01]], \"sentences\": [\"There are 4 people who are all playing badminton and the boy in the white shirt is the first one to serve to the man in the black shirt.\", \" Then the man wearing the black shirt serves to the boy whose wearing the gold shirt.\", \" Then the boy who's wearing the white shirt hits the shuttlecock and serves to the girl who's wearing the pink shirt and the game goes on and everyone keeps serving to each other and they all use different shuttlecocks.\"]}, \"v_br8Ao_UBEZA\": {\"duration\": 82.48, \"timestamps\": [[0, 8.66], [12.78, 71.76], [75.05, 78.35]], \"sentences\": [\"Two men enter the racquetball room.\", \" The two men start playing racquetball, running around the room trying to hit the ball.\", \" A man leaved the room and looks into the camera.\"]}, \"v_ptukoEe5jvI\": {\"duration\": 180.05, \"timestamps\": [[0, 172.85], [84.62, 108.93], [124.23, 142.24], [173.75, 180.05]], \"sentences\": [\"A group of beach goers play a game of volley ball on a busy beach wearing swimsuits.\", \" A woman dances after making a serve and hugs her friend.\", \" A player scores a point and gives teammate a high five.\", \" Beach goers are seen playing in the water.\"]}, \"v_HpQrpwNgCjc\": {\"duration\": 11.15, \"timestamps\": [[0, 5.57], [5.24, 11.15]], \"sentences\": [\"A close up of a high dive is shown followed by people walking up the steps.\", \" Suddenly a person is seen jumping off of the high dive and into the pool.\"]}, \"v_j_q_MOjw80Q\": {\"duration\": 139.76, \"timestamps\": [[0, 39.83], [37.74, 103.42], [75.47, 131.38]], \"sentences\": [\"A close up of ingredients are shown followed by a man licking the spoon and mixing ingredients into a pot.\", \" He mixes more ingredients in a blender and squishes them all into balls to put in the oven.\", \" He takes them out and finishes by decorating them.\"]}, \"v_bxRZ-Lvjgzk\": {\"duration\": 236.84, \"timestamps\": [[0, 39.08], [36.71, 236.84]], \"sentences\": [\"An intro leads into A close up of a painting and a paintbrush swirling around and around.\", \" The hand holding the brush begins painting grass into the painting slowly down the picture.\"]}, \"v_F7V-FqgG3T8\": {\"duration\": 51.18, \"timestamps\": [[0, 14.59], [14.59, 33.78], [33.78, 51.18]], \"sentences\": [\"Two men are standing in a room playing a game of tennis.\", \"Behind the man,there is a row of kids sitting against the wall where a row of kids are watching them play.\", \"The game continues,the child holds his own until the adult ends up hitting it and the kid is not able to return the ball.\"]}, \"v_5R3h6lxne90\": {\"duration\": 197.65, \"timestamps\": [[0, 34.59], [12.85, 33.6], [36.57, 89.93], [64.24, 89.93], [89.93, 131.44], [133.41, 168.99], [168.99, 181.84], [182.83, 197.65]], \"sentences\": [\"There are two news anchors, a lady and a gentleman both dressed in black presenting a news section.\", \" The lady is holding two small cards in her hands as she talks about the product to the viewers.\", \" There is another lady seated on a table along with two other women, demonstrating how to wear colored lenses in eyes.\", \" They are talking and discussing about the lenses and how it works.\", \" There's a commercial shown where the same lenses are worn by several people to show how it can be used.\", \" a doctor in a lab coat talks about the lenses too, while people are showing how to use them.\", \" Another news anchor also talks about the same lenses and how it has become a dangerous trend among teenagers.\", \" The lady news anchor comes back with the male news anchor to continue the program.\"]}, \"v_0lzqfDIWXtw\": {\"duration\": 84.31, \"timestamps\": [[0, 10.12], [13.07, 60.7], [62.39, 84.31]], \"sentences\": [\"Several players are shown on an ice rink.\", \" They are engaged in different games of curling.\", \" They use their bats to move the puck, high fiving when they are done.\"]}, \"v_BC0cgv8YgTg\": {\"duration\": 72.49, \"timestamps\": [[0, 68.51], [32.98, 68.51]], \"sentences\": [\"A cartoon network show is played.\", \"  A blue character chops a block but fails several times.\"]}, \"v_lVMMPkvnid8\": {\"duration\": 158.18, \"timestamps\": [[0, 28.47], [28.47, 77.51], [77.51, 100.44], [101.23, 117.84], [129.7, 143.94], [143.94, 158.18]], \"sentences\": [\"Team of Bolivian bowlers get ready to start bowling by practicing a technique taught by Jason Belmont by putting two fingers in the holes and using two hands to spin the ball.\", \" The young amateur players begin to bowl using the two handed technique.\", \" The president of the Bowling Federation Marcelo Garafulic is introduced.\", \" The announcer begins explaining how the team of Bolivian bowlers are training and more practice is shown.\", \" Garafulic starts to explain clinics and the medals they have won breaking perfect games.\", \" The bowlers are shown practicing once again.\"]}, \"v_8GqAgX-kseE\": {\"duration\": 21.39, \"timestamps\": [[0, 8.45], [8.77, 21.39]], \"sentences\": [\"A boy is barefoot, pushing a lawn mower in his yard.\", \" A little girl runs by as he mows.\"]}, \"v_uaGy1W-EYWU\": {\"duration\": 76.02, \"timestamps\": [[0, 14.82], [14.82, 34.59], [34.21, 50.56], [50.56, 76.02]], \"sentences\": [\"A man is in a room with a crowd of people watching him as he prepares to perform.\", \"The male stands up right and puts a blue plastic chair between his legs and starts spinning around his head.\", \"Once he is done,another person comes up and he begins spinning around on his head as a colorful hula hoop begins spinning around his waist.\", \"He completes his performance and the crowd jumps up and congratulates the man.\"]}, \"v_gaILpaBa7M8\": {\"duration\": 79.41, \"timestamps\": [[0, 9.93], [9.53, 46.85], [46.46, 79.41]], \"sentences\": [\"A electric machine is attached to the end of a ping pong table and is moving with the motion senses of a person's hand.\", \"After,several balls are then thrown towards the paddle and returned by the machine.\", \"The person then walks across the table and begins hitting the balls faster and the machine speeds up to hit the ball.\"]}, \"v_CHkT4As5jZI\": {\"duration\": 66.6, \"timestamps\": [[5.66, 18.65], [17.98, 27.64], [27.64, 45.62], [45.95, 56.27]], \"sentences\": [\"A bartender talks about how to make a proper cocktail.\", \" He grabs a glass and puts ice in the glass.\", \" He then mixes vodka and soda together in the glass.\", \" He grabs a lemon and puts it in the glass to finish.\"]}, \"v_FV2TzKt9MdI\": {\"duration\": 198.18, \"timestamps\": [[0, 16.85], [17.84, 140.71], [142.69, 152.6], [157.56, 198.18]], \"sentences\": [\"People are working out in a gym.\", \" People are working out on spin bikes.\", \" A woman in a yellow tank top talks to the camera.\", \" A woman in a green tank top talks to the camera.\"]}, \"v_mZxvYV53uf0\": {\"duration\": 225.49, \"timestamps\": [[18.04, 39.46], [39.46, 68.77], [68.77, 120.64], [120.64, 166.86], [166.86, 210.83], [210.83, 225.49]], \"sentences\": [\"Two girls are practicing dance moves in front of their television set in their living room.\", \" One of the girls is wearing a red shirt and the other is wearing a dark blue shirt.\", \" They are practicing ball room dancing.\", \" they take turns to swing and twirl around each other's hands as they go around in circles.\", \" They also follow a pattern of their leg movements as they follow the steps rhythmically.\", \" After they finish, they both giggle and walk away.\"]}, \"v_IwSUfrzxFnU\": {\"duration\": 180.3, \"timestamps\": [[0, 4.51], [5.41, 180.3], [17.13, 180.3]], \"sentences\": [\"Two boys walk down a sidewalk near a pool.\", \" There are lots of people doing different things in and around the pool.\", \" Some boys jump off of the diving boards doing flips and other tricks.\"]}, \"v_AonniE_CsPY\": {\"duration\": 28.1, \"timestamps\": [[0.84, 3.93], [4.78, 19.95], [20.93, 28.1]], \"sentences\": [\"The credits of the clip are shown.\", \" People have their hands on a casino table.\", \" The credits of the video are shown.\"]}, \"v_iazhs1cz_1Q\": {\"duration\": 216.88, \"timestamps\": [[26.03, 28.19], [36.87, 96.51], [181.09, 216.88]], \"sentences\": [\"A woman is sitting behind a piano.\", \" A child is sitting behind a keyboard playing it.\", \" Pictures of pianos are shown at the end.\"]}, \"v_TexMXN2yegk\": {\"duration\": 143.04, \"timestamps\": [[0, 133.02], [51.49, 53.64], [55.07, 134.45], [137.31, 143.04]], \"sentences\": [\"A man is carving a pumpkin.\", \" A man in a batman costume is shown.\", \" The man continues carving the pumpkin.\", \" A dog is chewing on a blue ball.\"]}, \"v_qcA3mFHfo84\": {\"duration\": 60.02, \"timestamps\": [[0, 9], [11.4, 40.82], [42.92, 60.02]], \"sentences\": [\"A girl is shown several times running on a track.\", \" She uses a pole to vault over a bar.\", \" She lands on a mat on the other side.\"]}, \"v_lVXgy-JU14Q\": {\"duration\": 111.55, \"timestamps\": [[0, 15.06], [8.92, 30.68], [19.52, 41.27], [36.81, 111.55]], \"sentences\": [\"The woman in black uniform threw the javelin ball.\", \" The small woman with yellow shirt and black sleeves threw the ball.\", \" The woman in white shirt and black pants stretched for a bit then threw the ball.\", \" The athletes one by one threw the javelin ball while on the sides are people who measures how far the it was thrown.\"]}, \"v_rbnlUn4UNSk\": {\"duration\": 199.62, \"timestamps\": [[0, 195.63], [9.98, 17.97], [33.94, 199.62], [76.85, 82.84], [86.84, 156.7], [177.66, 199.62]], \"sentences\": [\"We see two people under water in a pool.\", \" The people exchange one flipper.\", \" The men start to share a breather.\", \" The exchange their other flippers.\", \" The men change their air equipment.\", \" The right man is unable to find the arm hole.\"]}, \"v_rse-MW1helQ\": {\"duration\": 129.41, \"timestamps\": [[13.59, 97.05], [38.17, 97.05]], \"sentences\": [\"First the people are shown swimming backwards.\", \" Then they are shown playing volleyball in the water.\"]}, \"v_bru03d1k6DY\": {\"duration\": 220.43, \"timestamps\": [[0, 7.71], [12.12, 38.57], [40.78, 171.93], [173.04, 198.39], [202.79, 220.43]], \"sentences\": [\"A woman is talking in front of an image of two deer on a plain.\", \" We thensee a man talking as they drill holes in the ice.\", \" Some booth serve hot dogs to the people as they ice fish.\", \" A little boy and girl attempt to catch a fish.\", \" They are interviewed as they fish.\"]}, \"v_sjHCZWdopsQ\": {\"duration\": 193.07, \"timestamps\": [[2.9, 76.26], [30.89, 83.02], [77.23, 193.07]], \"sentences\": [\"The fingers are pressing the black keys.\", \" One finger is pressing one key.\", \" The fingers are moving to different keys and pressing them.\"]}, \"v_B8WIh6PUjE0\": {\"duration\": 107.72, \"timestamps\": [[0, 44.7], [42.55, 107.72]], \"sentences\": [\"A woman is seen speaking to the camera using her hands and leads into her kneeling down dumping a bucket.\", \" She then uses a rake to rub it all the dirt around the tree while still stopping to speak to the camera.\"]}, \"v_d44RiNHK6KA\": {\"duration\": 95.44, \"timestamps\": [[0, 95.44], [39.13, 40.56], [65.37, 68.24]], \"sentences\": [\"Two people are working out on exercise bikes.\", \" The one wearing a blue wig puts their hands in the air.\", \" People are in front of them also on exercise bikes.\"]}, \"v_Zi2Pah5-BXI\": {\"duration\": 156.34, \"timestamps\": [[0, 9.38], [11.73, 27.36], [28.92, 136.8], [75.82, 132.89], [136.02, 138.36], [138.36, 156.34]], \"sentences\": [\"The exterior a store is seen from the parking lot.\", \" A man sits on a wooden bench up against a window with trophies.\", \" The man talks while a seated with a tattoo artist working on his shoulder.\", \" The tattoo artist wipes the area that he is working on and continues drawing.\", \" The tattoo artist turns off the light and stops his work.\", \" The man stands up and shows off his tattoo.\"]}, \"v_6LADh__9LUI\": {\"duration\": 65.32, \"timestamps\": [[3.59, 65.32], [0, 65.32], [1.96, 65.32]], \"sentences\": [\"men are on sides of a car polishing a blue car in a hand car wash.\", \" blue car is inside a blue car wash and men are polishing it.\", \" men are holding clothes on them hands cleaning the car.\"]}, \"v_uyBGDfYo0qE\": {\"duration\": 133.66, \"timestamps\": [[0, 14.7], [15.37, 62.82], [63.49, 99.57], [98.24, 133.66]], \"sentences\": [\"A person is vacuuming in a hallway.\", \" A toddler in pajamas runs past frantically, running into other rooms and jumping excitedly because he wants to be picked up.\", \" He is angry when his mother goes into the bathroom with the vacuum.\", \" The woman gives the boy the vacuum, and he vacuums the floors.\"]}, \"v_FpxVS1Xpl1U\": {\"duration\": 237.05, \"timestamps\": [[0, 3.56], [3.56, 64], [64, 84.15], [84.15, 122.08], [123.27, 128.01], [128.01, 208.61], [200.31, 202.68], [216.9, 237.05]], \"sentences\": [\"people are sitting in chairs in pool.\", \" man and woman are talking and presenting the man that walks by the pool.\", \" man is weightlifting and doing a big jump from a trampoline and talking to the camera.\", \" a big platfom is shown and a man is being interviewed by a woman in top of trampoline.\", \" woman in audience is screaming and throwing kisses.\", \" man is on the 10 m trampoline and make a hand stand to make the jump to the pool.\", \" woman is impressed siting by the pool and have her hands on her face.\", \" presentator is interviewing the man.\"]}, \"v_dcclQadR-L0\": {\"duration\": 46.39, \"timestamps\": [[0, 6.73], [8.81, 26.44], [31.08, 46.39]], \"sentences\": [\"A group of people are riding on horses on a field.\", \" They start a game of polo.\", \" They race their horses, trying to get the ball.\"]}, \"v_r0P0egQt-jU\": {\"duration\": 185.27, \"timestamps\": [[0, 25.01], [25.01, 62.07], [62.07, 102.83], [102.83, 185.27]], \"sentences\": [\"Women are standing on the sand watching while some other women surf.\", \"  A few of them are out there in the ocean riding on the waves enjoying the ride.\", \" One of them only has one arm and she surfs so well, its amazing.\", \" They carry her over and then 4 girls stand while they get gifts for their performance and the one handed girl gets to talk about it.\"]}, \"v_KrHpGJBzjJk\": {\"duration\": 76.32, \"timestamps\": [[0, 3.05], [3.43, 69.84], [25.95, 46.18], [50.76, 56.48], [69.84, 76.32]], \"sentences\": [\"We see an opening title screen.\", \" A woman in a dark room plays the drums with his hand.\", \" The camera tilts on it's side then goes back upright.\", \" We see the room around the lady.\", \" We see the ending title screen.\"]}, \"v_ORI5ZNZARw8\": {\"duration\": 23.94, \"timestamps\": [[0.36, 4.31], [5.03, 15.56], [12.81, 23.34]], \"sentences\": [\"A woman is seen sitting on a piece of exercise equipment looking forward.\", \" She then grabs the lever in front and begins pulling herself.\", \" The girl then pulls herself back and fourth on the machine while the camera captures her movements.\"]}, \"v_7Zd7KlliqQw\": {\"duration\": 125.97, \"timestamps\": [[0, 36.53], [35.9, 91.96], [93.22, 125.97]], \"sentences\": [\"A man is seen moving around in slow motion while the camera captures him from several angles.\", \" A pair of scissors and a comb is then seen close up and leads into a person cutting the man's hair.\", \" He finally blow dries the man's hair and is shown once again smiling and laughing to the camera.\"]}, \"v_XtqTatsTGNY\": {\"duration\": 106.67, \"timestamps\": [[1.07, 73.6], [99.74, 102.94]], \"sentences\": [\"The boy stands at the bottom of a small staircase and then he walks up to slide down the blue slide.\", \" When he's done sliding down he runs away and tries to go out the gate.\"]}, \"v_1stYB5_yR5k\": {\"duration\": 181.93, \"timestamps\": [[0, 109.16], [108.25, 138.27], [138.27, 181.93]], \"sentences\": [\"man is talking to the camera cleaning a wooden shed and start painting it.\", \" the man mix the paint and with a brush varnish all the shed.\", \" at the end the man talks to the camera and shows the materials list.\"]}, \"v_7V1ZHZRHFrg\": {\"duration\": 103.96000000000001, \"timestamps\": [[7.28, 92.52], [64.97, 95.64]], \"sentences\": [\"A treadmill is shown, then a woman, using the treadmill in the living room is shown, she is wearing blue top and black shorts.\", \" She adjusted the monitor, then a treadmill adjustments and meters are shown with numbers on it.\"]}, \"v_pwoy7UXdnAE\": {\"duration\": 82.39, \"timestamps\": [[0, 2.47], [2.47, 19.77], [20.18, 78.27], [46.14, 58.91], [76.21, 80.33], [78.27, 82.39]], \"sentences\": [\"We see a title screen fade in and out.\", \" A man and a dog walk in a training room.\", \" The man throws Frisbees for the dog to catch.\", \" The dog stands to catch the Frisbee the leans on the man.\", \" The dog jumps into the man's arms.\", \" We see the ending title screen.\"]}, \"v_Y9EIH-A_ePo\": {\"duration\": 54.13, \"timestamps\": [[0, 4.33], [5.41, 15.97], [15.97, 34.1], [36.26, 54.13]], \"sentences\": [\"Two girls are outside in a yard.\", \" They are bouncing and throwing a ball to each other.\", \" They chase each other with the ball playfully.\", \" They run up to the camera and talk for a while.\"]}, \"v_E7rhlhVA0SY\": {\"duration\": 234.01, \"timestamps\": [[0, 4.68], [4.68, 8.19], [11.7, 200.08], [43.29, 49.14], [52.65, 69.03], [71.37, 117.01], [120.52, 138.07], [142.75, 174.34], [175.51, 200.08], [201.25, 223.48], [224.65, 234.01]], \"sentences\": [\"We see a Gelato store outside.\", \" We see a title screen for a cake.\", \" We then see a lady cooking.\", \" The lady puts gelato in a bowl.\", \" The lady puts rice crispies on it.\", \" The lady puts a dome in a chocolate dome and puts a crispies circle on it.\", \"The lady  puts holes in a chocolate dome.\", \" The lady sprays the domes.\", \" The lady puts the red dome on top of a black one and put the dome with holes on top of it.\", \" The lady puts the cake in a display case.\", \" We see the closing screen.\"]}, \"v_LaWCwEG6n3w\": {\"duration\": 185.09, \"timestamps\": [[0, 48.12], [57.38, 139.74], [124.01, 179.53]], \"sentences\": [\"A person is seen standing off in the distance with another standing around a hole.\", \" The person uses a fishing pole on the hole and attempts to pull out a fish.\", \" The person continues pulling while the other watches on the side.\"]}, \"v_padyJHC5Y5Y\": {\"duration\": 148.84, \"timestamps\": [[0, 35.72], [34.98, 68.47], [69.21, 116.1], [114.61, 148.84]], \"sentences\": [\"A woman is seen brushing wet hair and rubbing lotion all throughout her hair.\", \" She then blow dries her hair and is seen again with her hair pinned up around the top.\", \" She blow dries the bottom of her hair and is then seen again with all of her hair pinned up.\", \" She undoes the pins to show off her new hair.\"]}, \"v_w30TFlJiRKA\": {\"duration\": 233.72, \"timestamps\": [[0, 95.83], [95.83, 151.92], [153.09, 233.72]], \"sentences\": [\"A little boy plays piano in a home, then, he bends to the left and talks.\", \" After, the boy continues playing the piano, then he takes a rest.\", \" The boy change clothes and continues playing the piano.\"]}, \"v_CsyHOM8ngZA\": {\"duration\": 238.38, \"timestamps\": [[4.77, 67.94], [71.51, 134.68], [138.26, 171.63], [164.48, 232.42]], \"sentences\": [\"A shaggy dog is getting a bath from a veterinarian.\", \" The veterinarian is blow drying the dog after washing it.\", \" A different vet is petting and brushing the dog.\", \" A video montage of the dog plays and then credits roll.\"]}, \"v_I4_jFA46Uio\": {\"duration\": 35.78, \"timestamps\": [[0, 8.05], [12.88, 26.3], [27.19, 35.78]], \"sentences\": [\"A little girl is standing in front of a kitchen sink.\", \" She has a bowl and a knife in her hand.\", \" She is peeling potatoes with the knife.\"]}, \"v_ufxyjYMKe7c\": {\"duration\": 125.68, \"timestamps\": [[0.63, 123.18], [38.96, 60.96], [60.33, 86.73], [104.32, 110.61]], \"sentences\": [\"Two boys in matching shirts sit on a sofa and talk with a candy toy in their hands as they hold the candy up to the camera, play with the candy toy buttons and talk.\", \"  The two boys mock fight with the toy candy, which is shaped like a hand with retractable fingers, and the camera speeds up when they do this.\", \"  The boys then switch toys and open the toy candy at which point they begin to eat the candy and talk while chewing.\", \" A closeup of the toy candy is then shown, with the candy lying on a maroon backdrop and posed.\"]}, \"v_GiHxeCLGNy8\": {\"duration\": 37.06, \"timestamps\": [[0, 37.06], [7.04, 9.64], [9.64, 37.06]], \"sentences\": [\"A person is at a camp fire poking around at the wood.\", \" The camera moves over to a little boy as he is talking to the camera person.\", \" The camera person continues to narrate the situation as he records the fire.\"]}, \"v_yL7tvoBkkkI\": {\"duration\": 26.05, \"timestamps\": [[0, 10.55], [10.16, 26.05]], \"sentences\": [\"Various people are seen from a bird's eye view working in rough conditions out in the open.\", \" They are scrubbing clothes and hanging them up while the camera pans around and watches.\"]}, \"v_FXl3qRRs9jw\": {\"duration\": 96.39, \"timestamps\": [[0, 10.12], [10.12, 35.66], [36.15, 48.68], [36.15, 84.82], [85.78, 88.68], [94.46, 96.39]], \"sentences\": [\"People are walking next to a bull.\", \" There is a large group walking behind the bull.\", \" There is another bull and they start fighting.\", \" The crowd is rallying around the bulls.\", \" A man in a red shirt is talking into a microphone.\", \" A man is putting a black shirt on.\"]}, \"v_fSVDG4h0lzM\": {\"duration\": 32.35, \"timestamps\": [[0, 5.34], [5.34, 32.35]], \"sentences\": [\"A middle age man is standing in the field preparing to hit a ball.\", \"Once the man hits the ball it is caught and the other teams jumps and cheers in excitement and there is  replay.\"]}, \"v_RI8IORq_BbY\": {\"duration\": 114.33, \"timestamps\": [[0, 50.31], [60.6, 113.76]], \"sentences\": [\"A man shows how to sharpen a knife with a machine.\", \"  Then, he sharpens knives against each other.\"]}, \"v_oezddremlnE\": {\"duration\": 152.14, \"timestamps\": [[6.09, 85.2], [50.21, 136.92]], \"sentences\": [\"A close up of a girl's hair is shown followed by a person braiding her hair.\", \" The person continues braiding the hair and the camera pans away from her face.\"]}, \"v_9PFlQcBl_jU\": {\"duration\": 72.87, \"timestamps\": [[0, 13.84], [13.12, 37.53], [37.89, 56.47], [56.11, 72.87]], \"sentences\": [\"Several people are outside watching a about four men bullfighting with a cape.\", \"Once the bull is caught,they start to move it and they have difficulty because the crowd is on their back.\", \"Next,a shirtless man lays down on the dirt,gets trampled by the bull and jumps up happy about what just happened.\", \"Another bull comes along,runs over a person and the person remains on the ground and a crowd of people come running over to him laying a blanket across his body.\"]}, \"v_p0-BGit7WAo\": {\"duration\": 56.05, \"timestamps\": [[0.28, 28.03], [20.18, 55.21]], \"sentences\": [\"A young boy is seen speaking with others while wrapping ballet shoes around him and walking past others.\", \" The man then steps into ballet class and interacts with the dancers and ends by drinking a beer.\"]}, \"v_oQ_PwsBgozM\": {\"duration\": 162.26, \"timestamps\": [[0, 12.17], [12.17, 46.24], [47.06, 162.26], [97.36, 104.66]], \"sentences\": [\"a lady and a young girl are in room with a Christmas tree.\", \" The lights are turned on on the tree an the little girl dances in front of it.\", \" A young boy plays with and takes ornaments off the tree and shows them to the camera.\", \" The man take it and shows it to the camera then puts it back.\"]}, \"v_ngwH6Zy5vb8\": {\"duration\": 234.89, \"timestamps\": [[29.36, 65.77], [19.97, 22.31], [180.87, 234.89]], \"sentences\": [\"A man in a suit is playing a piano.\", \" The audience stands up and claps for him.\", \" People are hugging and mingling on a stage.\"]}, \"v_pYbOylWZx-s\": {\"duration\": 140.85, \"timestamps\": [[0, 84.51], [84.51, 119.02], [119.73, 140.85]], \"sentences\": [\"A man in a black tank top describes cardio workout on a spin bike.\", \" The man in the black tank top mounts the spinning bike in intervals of 45 second cruise speed tension, the 15 seconds hard with tension up.\", \" Then cool down with cruise speed tension.\"]}, \"v_UojTppgtyCE\": {\"duration\": 171.53, \"timestamps\": [[0, 13.72], [15.44, 33.45], [36.88, 84.91], [85.76, 143.22], [147.51, 160.38], [162.09, 171.53]], \"sentences\": [\"An outdoor garden is seen and a man in tshirt stands in it holding a pair of sheers.\", \" Mellons are seen throughout the garden.\", \" The man points to the melons up against the wall and begins trimming them with his sheers throwing them to the side.\", \" The man walks over to the outer edge of the melon plants and picks up a large vine in one hand then trims off leafs with the other hand.\", \" The man does circular motions with his hands around his waste to demonstrate size.\", \" A garden website is seen.\"]}, \"v_yjOriMHCSdw\": {\"duration\": 154.6, \"timestamps\": [[9.28, 35.56], [36.33, 49.47], [50.24, 69.57], [71.89, 87.35], [88.89, 103.58], [106.67, 135.27]], \"sentences\": [\"A painted construction paper piece sits on a table along with a suitcase of supplies.\", \" I person cuts up a piece of construction paper.\", \" Designs are drawn on the paper with markers.\", \" The construction paper is folded over an item and a piece of tape secures the construction paper in the middle.\", \" The corners are folded like a present and peices of tape are used to secure the folded ends of the package.\", \" A ribbon is slid under the package and tied in a bow.\"]}, \"v_JiZCjH6ePq0\": {\"duration\": 230.16, \"timestamps\": [[1.15, 13.81], [17.26, 19.56], [20.71, 42.58], [20.71, 223.25], [20.71, 230.16]], \"sentences\": [\"A group of people are in a gym playing dodgeball.\", \" A logo appears on the screen.\", \" A man is talking to the camera while people play dodgeball behind him.\", \" The man and players demonstrate dodgeball techniques.\", \" Captions appear on the screen periodically that explain dodgeball.\"]}, \"v__cLb2ZRS_4M\": {\"duration\": 227.86, \"timestamps\": [[0, 96.84], [96.84, 184.56], [184.56, 227.86]], \"sentences\": [\"many guys in all black stands on a grassy area with music instruments and does a sync performance in front of other people sitting on the grass watching.\", \"the guys play the drums and do movements back and forth as they play the drums that is connected to there body.\", \"the guys do hand movements and stomps there feet lightly as part of the performance.\"]}, \"v_pxt1-L_-H74\": {\"duration\": 224.26, \"timestamps\": [[7.85, 87.46], [108.77, 223.14]], \"sentences\": [\"Two people are seen standing next to one another speaking to the camera and leads into the two performing a dance routine with one another.\", \" The people continue dancing around on the side of a road and ends with them posing and laughing.\"]}, \"v_eDm8bUVWxAM\": {\"duration\": 50.81, \"timestamps\": [[0, 6.1], [6.1, 40.14], [40.64, 46.74]], \"sentences\": [\"A man in a white shirt is talking.\", \" A bow and arrow is set up in the grass.\", \" A man shoots a bow and arrow while in the water.\"]}, \"v_5ytocb1ypRU\": {\"duration\": 78.8, \"timestamps\": [[0, 52.01], [52.4, 78.8]], \"sentences\": [\"A person using a chain saw is cutting down limbs off of a tree.\", \" The man uses an extension to cut a limb off the top of the tree.\"]}, \"v_ienRkMdn_OM\": {\"duration\": 117.35, \"timestamps\": [[0, 34.03], [34.62, 83.32], [83.32, 117.35]], \"sentences\": [\"A hand is put into a brush and moves the hair to be piled up and vaccumed with the other hand.\", \"The middle section is done and the horse stands still while being cut down.\", \"Now,the middle is done and the person moves to the back of the horse until all of the horse's body is cut down.\"]}, \"v_Ncfysce-svA\": {\"duration\": 34.95, \"timestamps\": [[0.52, 33.55], [0.52, 5.77], [5.94, 8.04], [8.56, 33.55]], \"sentences\": [\"A person plays an acoustic guitar while sitting on a beige sofa in jeans and a t-shirt.\", \"  A room is shown with an acoustic guitar lying across a beige sofa and a stone art piece in front of the sofa with rocks in it.\", \"  A person, face unseen, approaches the sofa and picks up the guitar.\", \"  The person then sits down and plays the acoustic guitar, which has a capo on the neck, and plays until the scene fades to a Spanish subtitle.\"]}, \"v_H5Z__A99EG4\": {\"duration\": 118.49000000000001, \"timestamps\": [[8.89, 39.69], [39.69, 68.13], [68.13, 106.05], [106.05, 112.57]], \"sentences\": [\"There's a man doing a science experiment in his kitchen using a on liter Pepsi bottle that is filled with foam.\", \" There's a boy laying down on the floor with his legs stretched up against the cabinet.\", \" The man is holding a hose in one hand and blowing air into the bottle simultaneously.\", \" Then he drops the huge bubble from the bottle onto the boy's face.\"]}, \"v_j1IYrdjnY6M\": {\"duration\": 26.22, \"timestamps\": [[0, 4.06], [4.19, 7.08], [8, 11.67], [11.8, 14.03], [14.42, 18.48], [18.61, 26.22]], \"sentences\": [\"A web address is displayed on the slide.\", \" The name of a sunscreen is shown.\", \" The sunscreen bottle is shown.\", \" The price of the sunscreen is shown.\", \" The sunscreen bottle is presented.\", \" An information guideline is shown.\"]}, \"v_YJOoLvwqWCw\": {\"duration\": 41.31, \"timestamps\": [[0, 41.31], [0.41, 41.31], [0.41, 40.9]], \"sentences\": [\"two women are standing on a gym arm wrestling.\", \" in te background people are standingin the gym doing exercise.\", \" strong women are sitting in a chair arm wrestling.\"]}, \"v_ry-AEtNb4c0\": {\"duration\": 188.68, \"timestamps\": [[0, 5.66], [5.66, 21.7], [21.7, 26.41], [26.41, 35.85], [35.85, 59.43], [59.43, 70.75], [71.7, 83.96], [83.96, 93.39], [93.39, 102.83], [102.83, 121.7], [121.7, 127.36], [127.36, 133.02], [137.73, 166.98], [172.64, 181.13], [182.07, 188.68]], \"sentences\": [\"The title is on the screen.\", \" The screen switches to the man explaining his art.\", \" We see the man's artwork.\", \" We see the man talking again.\", \" He grabs paint on his brush.\", \" He discusses his painting technique.\", \" He is painting on the art.\", \" He cleans his brush on paper.\", \" He adds more paint to the brush.\", \" He is painting on the art again.\", \" He cleans his brush on the paper again.\", \" He adds white paint to the brush.\", \" He paints white on the artwork.\", \" He crosses his arms and talks.\", \" We see the title card.\"]}, \"v_6Kbv1OpIpaA\": {\"duration\": 195.47, \"timestamps\": [[0, 56.69], [56.69, 195.47]], \"sentences\": [\"A boy is sitting in the room with three guitars and begins to play all three of them with a violin bow.\", \"The man then begins to play the one guitar that is on his lap with his fingers and finishes the song.\"]}, \"v_3zDw5mwGIW0\": {\"duration\": 126.71, \"timestamps\": [[0, 18.37], [18.37, 125.44]], \"sentences\": [\"A person pours different colors of paint on a surface.\", \" Then, the woman paints flowers on the headboard of a bed.\"]}, \"v_0p3JN4KJsUs\": {\"duration\": 97.32, \"timestamps\": [[7.79, 32.6], [32.6, 63.25], [63.25, 90.02]], \"sentences\": [\"People practice ballet in a studio alone and in couples.\", \" Then, a boy and a girl dance ballet, then a man enter and dance with the girl.\", \" After, several couples dance ballet while other people observe.\"]}, \"v_WD40PRo1quM\": {\"duration\": 161.5, \"timestamps\": [[0, 149.38], [22.61, 161.5]], \"sentences\": [\"A man and a woman are seen dancing around a living room performing a tango routine.\", \" They spin each other round and round and ends with credits rolling.\"]}, \"v_wIcK3bQNqcA\": {\"duration\": 140.5, \"timestamps\": [[2.11, 35.13], [40.75, 92.03], [92.73, 133.48], [139.1, 140.5]], \"sentences\": [\"A person moves their fingers around the center of a bike's wheel.\", \" The person takes a black part and adds it.\", \" The person adds a smaller black part and fastens it.\", \" The person removes their hands from the center of the bike's wheel.\"]}, \"v_p771liKjycc\": {\"duration\": 46.22, \"timestamps\": [[0, 16.41], [16.41, 32.59], [32.35, 46.22]], \"sentences\": [\"Two kids are outside playing together at a playground.\", \"One boy jumps off and walks to the other side as the other one begins to do the monkey bars.\", \"After he makes it to the other side,he climbs off and runs to another set of monkey bars and follows through those as well.\"]}, \"v_qGf6earGAOc\": {\"duration\": 87.4, \"timestamps\": [[0, 10.05], [17.48, 77.35], [81.28, 86.09]], \"sentences\": [\"People are driving in a car down the street.\", \" A man is wake boarding in water full of berries.\", \" A van is driving on a road by the water.\"]}, \"v_zi_TdMQffkU\": {\"duration\": 43.1, \"timestamps\": [[0.65, 10.34], [11.64, 32.97], [29.31, 42.88]], \"sentences\": [\"A person is seen sitting on a horse in front of a large crowd.\", \" The man then rides in on the horse and ropes up a calf.\", \" He ties up the calf while others ride in on horses to help.\"]}, \"v_0UR4hXxt68E\": {\"duration\": 207.84, \"timestamps\": [[4.16, 9.35], [9.35, 82.1], [82.1, 87.29], [88.33, 190.18], [191.21, 203.69]], \"sentences\": [\"A group of cheerleaders stand in a line in a large auditorium in preparation.\", \" The group of cheerleaders does a dance routine in all dancing in unison.\", \" Half of the group kneels on the floor and the other standing group exits to the sides.\", \" The remaining group stands back up and does a second dance routine together.\", \" The group of cheerleader end their routine and jump up and down before bowing to the crowd.\"]}, \"v_eGTZNTfgg24\": {\"duration\": 94.34, \"timestamps\": [[0, 29.72], [28.77, 42.93], [43.87, 94.34]], \"sentences\": [\"Various athletes are seen standing ready while one jumps in place and prepares himself.\", \" He then runs down a long track into a sand pit and sticks his hands in the air.\", \" A man holds a white fag up while the athlete celebrates and his jump and people's reactions in the audience are shown again.\"]}, \"v_5FM_xJGb-Tk\": {\"duration\": 34.67, \"timestamps\": [[0, 5.72], [5.72, 16.12], [16.12, 23.57], [23.57, 34.67]], \"sentences\": [\"A man in a little kayak type of of boat is paddling the boat.\", \" He is sitting by himself in it because it's so small it only fits one person really.\", \" He uses a lot of energy into paddling, going really fast.\", \" I believe he is probably practicing for an event late in the future.\"]}, \"v_2DMOP9Fy91U\": {\"duration\": 132.65, \"timestamps\": [[0, 132.65], [1.99, 132.65], [126.68, 132.65]], \"sentences\": [\"A woman is standing outside in front of a building.\", \" She begins dancing with hula hoops.\", \" She finishes and words come on the screen.\"]}, \"v_bPkk-z5n8MY\": {\"duration\": 62.67, \"timestamps\": [[0.31, 21.62], [20.99, 45.44], [41.36, 60.16]], \"sentences\": [\"A large group of people are seen spinning and twirling batons in the city.\", \" A large group of people are seen sitting around the group watching.\", \" The group continues to dance around the city block while the camera pans around and watches them walk away.\"]}, \"v_jOUwMAGYImE\": {\"duration\": 149.1, \"timestamps\": [[3.73, 137.91], [80.51, 82.75], [140.9, 142.39]], \"sentences\": [\"A man sits on a stationary bike on a stage and starts working out.\", \" He sticks one leg up to the side.\", \" He gets off and does a hand stand.\"]}, \"v_MSfIKwQhLFk\": {\"duration\": 103.7, \"timestamps\": [[0, 9.33], [68.96, 72.07], [74.66, 79.33], [79.33, 103.7]], \"sentences\": [\"People dive into the pool and start swimming.\", \" A person reaches the end and takes their goggles off.\", \" They wave at the camera and smile.\", \" The other swimmers get to the finish line.\"]}, \"v_ivjnwAR91Sk\": {\"duration\": 119.72, \"timestamps\": [[0, 44.3], [38.91, 95.18], [64.65, 113.74]], \"sentences\": [\"A large group of people are seen standing on a stage with people watching on the sidelines.\", \" People take turns jumping onto a large mat over a beam and cheering with teammates.\", \" More shots are shown of kids fooling around while looking and laughing to the camera.\"]}, \"v_26qGsfI9tZ8\": {\"duration\": 49.23, \"timestamps\": [[0, 33.72], [33.72, 49.23]], \"sentences\": [\"A toddler climbs the steps of a playground.\", \" Then, the boy slides down until to reach the ground.\"]}, \"v_t6FuJ4L8sHY\": {\"duration\": 86.33, \"timestamps\": [[0, 25.47], [25.04, 51.37], [50.07, 86.33]], \"sentences\": [\"A group of people are seen standing on a soccer field and leads into one falling down and being helped back up.\", \" The same shot is shown again in slow motion and leads into one scoring a goal with others not paying attention.\", \" The same shot is shown again in slow motion several times and pans back to all the players.\"]}, \"v_L0QdLXym4F4\": {\"duration\": 30.7, \"timestamps\": [[0, 30.7], [0.61, 17.19], [19.65, 21.03], [20.87, 30.7]], \"sentences\": [\"A lady is filming a girl and a boy who are outdoors at a park playground.\", \"  The young girl hangs an goes across the monkey bars using her arms while the young boy stands behind rails and watches.\", \"  The jumps down at the end of the monkey bars and then jumps up and down and gives a high five to the excited woman filming her.\", \"  The lady behind the camera then walks over and pans to the little boy who is now at the monkey bars and holds a conversation with him.\"]}, \"v_7MAADmeogHo\": {\"duration\": 214.0, \"timestamps\": [[0, 28.89], [29.96, 142.31], [148.73, 214]], \"sentences\": [\"A bike is seen upside down in a shop.\", \" A man shows how to remove a tire.\", \" He then replaces it and tightens it back into place.\"]}, \"v_Bhc8INrOToY\": {\"duration\": 234.73, \"timestamps\": [[0, 64.55], [51.64, 172.53], [165.49, 228.86]], \"sentences\": [\"A man is seen speaking to the camera and leads into clips of them skiing.\", \" The men move down all along the mountain while others are shown skiing next to them.\", \" The people continue riding down the hill and end by stopping at the bottom.\"]}, \"v_ie9PgZt9svA\": {\"duration\": 207.05, \"timestamps\": [[0, 207.05], [8.28, 19.67], [22.78, 55.9], [57.97, 74.54], [108.7, 207.05]], \"sentences\": [\"A group of girls on a rope jumping team do a routine in a large music hall.\", \" A group of girls jump rope individually.\", \" Three girls jump rope with two holding a single rope on each end.\", \" Three girls jump together inside of a single rope.\", \" A group of girls hold two ropes and take turns doing double dutch while members run through and jump the rope.\"]}, \"v_fcSJAHXHDvM\": {\"duration\": 73.37, \"timestamps\": [[0, 28.98], [27.15, 73.36]], \"sentences\": [\"A man is seen moving in slow motion holding a tennis racket and throwing a ball up into the air.\", \" Arrows point around his body and show him hitting the ball while pausing to show off his body movements.\"]}, \"v_kUwCHpiuCuA\": {\"duration\": 153.42000000000002, \"timestamps\": [[0, 21.48], [21.48, 56.76], [56, 153.42]], \"sentences\": [\"A bicycle  elliptical machine is sitting in living room by a couch.\", \"A dog appears on the couch and suddenly a person sits on the machine and turns it on.\", \"Once the machine is on,it begins to flash 30 minutes several times and the person begins to exercise on the machine pushing the bars back and forth.\"]}, \"v_sgPkVKPp1dU\": {\"duration\": 63.78, \"timestamps\": [[0.96, 58.36], [10.2, 58.36]], \"sentences\": [\"A man in black shirt lifted the barbel and started to carry it up and down for few times, while behind him, two men are removing the metal plates on another barbel.\", \" The man in black shirt added more weight on the barbel by adding yellow plates on both side, then continue weight lifting.\"]}, \"v_Ox16PeB954Q\": {\"duration\": 44.65, \"timestamps\": [[0, 6.7], [8.04, 16.74], [16.52, 33.49], [33.49, 44.65]], \"sentences\": [\"A man and child are sitting on a couch while the adult smokes hookah tobacco.\", \" The child grabs it as if to smoke only to have it pulled away.\", \" The child is then able to stick it in his own mouth but doesn't know what to do.\", \" He ends up sticking it back into the adults mouth and the adult continues to smoke from the hookah pipe.\"]}, \"v_7bUu05RIksU\": {\"duration\": 199.23, \"timestamps\": [[0, 18.93], [21.92, 43.83], [44.83, 76.7], [79.69, 110.57], [116.55, 199.23]], \"sentences\": [\"Business details are written in white text on a black background.\", \" Men wearing jackets pressure wash a white car in a parking lot.\", \" Two men wash a black SUV with a pressure washing hose.\", \" Men wash a white car using hand towels.\", \" The business details are seen before end credits for the video are shown.\"]}, \"v_iUe1t0sN4Jo\": {\"duration\": 54.1, \"timestamps\": [[0, 43.01], [43.01, 54.1]], \"sentences\": [\"A man bowls several times down a lane.\", \" The screen of the score board is shown.\"]}, \"v_4w3QwJdzwsE\": {\"duration\": 69.66, \"timestamps\": [[0, 27.17], [27.17, 69.66]], \"sentences\": [\"A large boat with a wind sail on it is seen riding along a big storm with people on board.\", \" The boat tips over at one point when another boat comes by and falls over as well.\"]}, \"v_6pY2zz2_CCU\": {\"duration\": 76.42, \"timestamps\": [[0, 31.71], [31.71, 64.19], [64.57, 76.42]], \"sentences\": [\"woman is sitting on a couch with a cat on her legs, he grab a scisoors from the table next to her and starts cutting the front cat nails.\", \"she looks his back paws and gave her cat some cat food.\", \" the girl congratlate the cat and put him on the floor.\"]}, \"v_k74CgBa46bA\": {\"duration\": 42.15, \"timestamps\": [[0, 26.97], [30.98, 37.72]], \"sentences\": [\" A man without a shirt on sits outside by the trees and drinks out of a coffee cup.\", \" A person is seen petting a cat.\"]}, \"v_rob5gIT_pAw\": {\"duration\": 60.98, \"timestamps\": [[0, 4.88], [4.88, 60.98]], \"sentences\": [\"man is welding a metal machine in a room.\", \" man is talknig to the camera and is holding an emery in a machine room.\"]}, \"v_rliYO1sEYts\": {\"duration\": 196.23, \"timestamps\": [[21.59, 23.55], [0, 196.23], [121.66, 128.53]], \"sentences\": [\"A man kisses a girl on the beach.\", \" People are playing rock paper scissors on the beach.\", \" A man in a black shirt is standing on the beach.\"]}, \"v_7vECSCWxbDk\": {\"duration\": 139.13, \"timestamps\": [[4.17, 6.96], [7.65, 28.52], [29.22, 34.09], [34.78, 38.26], [38.96, 43.13], [43.83, 126.61], [127.31, 131.48]], \"sentences\": [\"A man plugs a cable into his guitar.\", \" He begins playing the guitar.\", \" He looks up and speaks.\", \" He goes back to playing his guitar.\", \" He looks up again and speaks as he makes hand gestures.\", \" He begins playing his guitar again.\", \" He glides his finger along his guitar.\"]}, \"v_UW1wC80VNd8\": {\"duration\": 123.35, \"timestamps\": [[0, 19.74], [22.82, 93.74], [94.98, 123.35]], \"sentences\": [\"A woman is in a kitchen, stirring food in a pot.\", \" She adds her gathered ingredients one a time as she talks, showing the pasta she is using.\", \" She then adds a bowlful of vegetables she has mixed.\"]}, \"v_rZMiqPMOpzA\": {\"duration\": 218.15, \"timestamps\": [[0, 76.35], [63.26, 166.89], [131.98, 210.52]], \"sentences\": [\"A person is seen sitting in front of the camera holding an instrument.\", \" The man then begins playing the instrument while the camera captures is movements.\", \" The man continues to play moving his hands all along the instrument and finally turning the camera off.\"]}, \"v_KK7g7udEPuo\": {\"duration\": 137.35, \"timestamps\": [[0, 4.81], [4.81, 14.42], [15.79, 57], [57, 66.61], [15.79, 137.35]], \"sentences\": [\"A man is looking all over for his dog.\", \"  He said he paid his dog 10 dollars to cut the grass and now he's gone.\", \"  He finally finds the dog who is driving the riding lawn mower.\", \" According to the owner, the dog is asking for a raise.\", \" He continues mowing in not very straight lines as the other dogs watch.\"]}, \"v_OM_n35Vcw30\": {\"duration\": 228.39, \"timestamps\": [[3.43, 121.05], [78.8, 228.39]], \"sentences\": [\"Two kids are seen holding poles with another man and playing a game of shuffle board on a mat.\", \"  The kids push the puck around back and fourth while walking around one another and ends with a woman stepping into frame and a close up of the young boy.\"]}, \"v_eBajcta4sD4\": {\"duration\": 122.35, \"timestamps\": [[0, 45.27], [37.93, 96.65], [100.32, 119.9]], \"sentences\": [\"A camera pans around a building as well as people inside posing for pictures and putting fencing gear on.\", \" More clips are shown of fencing objects, people watching on the sides, and others getting ready to fence.\", \" Several clips are then shown of two people fencing each other with a woman reffing on the sides and people watching on the sides.\"]}, \"v_JFA1iR09BUA\": {\"duration\": 232.34, \"timestamps\": [[0, 40.66], [40.66, 94.1], [94.1, 149.86], [149.86, 232.34]], \"sentences\": [\"A man is practicing in front of a mirror in a studio while another watches.\", \"  They start taking turns in front of the mirror trying to perfect their moves.\", \" They are doing all kinds of crazy acrobatic flips and other moves.\", \" There is about six or seven men sitting up against the wall watching as the other flips around in the air.\"]}, \"v_ctWolbJDJyc\": {\"duration\": 17.07, \"timestamps\": [[0, 6.4], [6.31, 17.07]], \"sentences\": [\"A person is seen walking down the length of a diving board while the camera zooms in.\", \" The man turns around and performs a back flip off of the board into the water.\"]}, \"v_m-BZKFg9k18\": {\"duration\": 40.33, \"timestamps\": [[0, 38.72], [4.44, 6.05], [5.85, 7.66], [7.87, 36.7], [38.92, 40.33]], \"sentences\": [\"A lady dances around on an aerobic stair in a fitness gym.\", \" The lady spins off of the step.\", \" The lady touches her toes to the step.\", \" The lady repeats the routine repeatedly.\", \" The lady steps off of her step in front of it and looks at the camera.\"]}, \"v_JTFEzdAw1L4\": {\"duration\": 44.61, \"timestamps\": [[0, 4.68], [4.91, 8.92], [9.14, 10.93], [11.15, 24.53], [24.76, 28.77], [28.99, 35.24], [35.46, 44.61]], \"sentences\": [\"An older woman throws a white ball towards a green cup.\", \" A young boy gives her back the ball.\", \" The woman throws the ball again.\", \" She does a dance and throws it again.\", \" She again throws the white ball.\", \" The young boy hands the woman the ball and she throws it again.\", \" The older woman starts laughing.\"]}, \"v_-ArIbKfZc2s\": {\"duration\": 202.13, \"timestamps\": [[0, 18.19], [0, 158.67], [42.45, 60.64], [98.03, 117.24], [151.6, 202.13]], \"sentences\": [\"A group of rafters paddle there raft down a river with rapids and obstacles.\", \" A group of rafter push off from a rock and turn there boat around to face the current.\", \" The rafters maneuver through a concrete structure.\", \" The group paddles around a large boulder sticking high up in the middle of the river.\", \" The group jumps from a rock into the river.\"]}, \"v_UD7HJBRK2Z4\": {\"duration\": 119.91, \"timestamps\": [[0, 10.79], [10.79, 38.37], [38.37, 119.91]], \"sentences\": [\"A light blue screen appears and it has multiple blue words that are not in English and they're scrolling from bottom to top.\", \" The direction of the scrolling letters change from bottom to top and now they're in the middle.\", \"A man wearing a white button up short sleeved shirt and black long pants is standing on green grass that's near water, with a large bush behind him and he's doing very slow coordinated movements.\"]}, \"v_Ptw9hFDV4ow\": {\"duration\": 103.7, \"timestamps\": [[19.18, 27.48], [27.48, 74.15], [74.15, 102.15], [102.15, 103.7]], \"sentences\": [\"A coach is training a boy and a girl to do kickboxing.\", \" There is a woman standing in a purple shirt, filming the coach teach the kids.\", \" Both the girl and the boy are taking turns in returning the punches and kicks to the coach.\", \" The coach is encouraging the students to constantly punch and return the kicks.\"]}, \"v_8OCTuqJVToU\": {\"duration\": 119.72, \"timestamps\": [[0, 50.28], [50.28, 89.79], [86.8, 117.33]], \"sentences\": [\"A small group of children are seen sitting around a pool while the camera pans around the pool.\", \" The kids kick their feet around and show one instructor helping a child.\", \" The man continues to swim around the pool with children and close ups of children.\"]}, \"v_LWAxCIy4PBw\": {\"duration\": 69.59, \"timestamps\": [[0, 4.87], [7.31, 10.79], [11.83, 49.76], [49.76, 53.93], [53.93, 69.59]], \"sentences\": [\"A little boy is pushing a mop.\", \" He closes an oven door that is open.\", \" He continues to mop the floor.\", \" He picks the mop up and puts it in the air.\", \" He sets it down and continues mopping.\"]}, \"v_qzt9U8tEdJQ\": {\"duration\": 183.68, \"timestamps\": [[0, 7.35], [10.1, 113.88], [116.64, 183.68]], \"sentences\": [\"Someone is shown driving down a snowy street in the Ukraine.\", \" Several skiers are skiing down the slopes on the side of a mountain.\", \" A close up is seen of some of the skiers as they go.\"]}, \"v_zJX_Oh4yVnc\": {\"duration\": 216.2, \"timestamps\": [[0, 70.27], [48.65, 157.83], [114.59, 211.88]], \"sentences\": [\"A person is seen riding around on a dirt bike that leads into him speaking to the camera.\", \" He shows off his bike as well as camera and leads into several clips of him riding around.\", \" He continues to ride around on the track while also showing close ups of himself as well as the camera.\"]}, \"v_r7kQ1sko74M\": {\"duration\": 148.86, \"timestamps\": [[3.72, 72.94], [51.36, 138.44]], \"sentences\": [\"A young man is seen playing a single drum standing next to a group of people also drumming.\", \" The boy continues drumming with the group and the camera pans around to people watching on the sides.\"]}, \"v_h7Tq3Gsj6lY\": {\"duration\": 64.13, \"timestamps\": [[1.6, 29.82], [19.88, 47.14], [35.92, 60.93]], \"sentences\": [\"A man is shown in several shots riding around on a skateboard.\", \" Close ups are shown of objects as well as skateboard and places you can buy them.\", \" More close ups are shown of products.\"]}, \"v_3LyyqeVeYkI\": {\"duration\": 16.63, \"timestamps\": [[0, 2.58], [2.83, 12.14], [12.8, 16.63]], \"sentences\": [\"A cowboy on a horse is released from a gate.\", \" He lassos a young calf on the dirt.\", \" He jumps off his horse and ties the calf.\"]}, \"v_aBmKEmXVCqM\": {\"duration\": 21.13, \"timestamps\": [[0, 21.13], [1.69, 21.13], [0.53, 21.13]], \"sentences\": [\"A man is standing on a elliptical working out.\", \" He moves his arms back and forth.\", \" There is a lake behind him.\"]}, \"v_b5GJUtjiWkQ\": {\"duration\": 42.28, \"timestamps\": [[0, 13.53], [13.11, 42.28]], \"sentences\": [\"Three kids are seen standing out in front of a house when one plays hop scotch to a person coming in frame.\", \" The camera follows the same girl hopping down a long path and continuing her way back to where she started.\"]}, \"v_JwdW7Tlc4gs\": {\"duration\": 179.61, \"timestamps\": [[0, 179.61], [8.08, 179.61], [8.08, 164.34]], \"sentences\": [\"A young man is sitting in his room.\", \" The young man started to play his guitar.\", \" The young man is moving his fingers as he press the threads on the guitar.\"]}, \"v_H5F01WIyJWI\": {\"duration\": 51.74, \"timestamps\": [[0, 51.74], [18.37, 19.66], [19.66, 20.95]], \"sentences\": [\"A blindfolded man is standing outside with vehicles parked behind him and he's playing a small set of bongos as well as a large set of bongos right next to it.\", \"The man quickly only hits the small bongos and then moves onto the big bongos going from his right to his left.\", \"On the return back going from his left to his right, he hits only the large bongos first, then hits the smaller bongos.\"]}, \"v_4p6OjaHHSDs\": {\"duration\": 37.48, \"timestamps\": [[0, 3], [3.19, 29.23], [30.17, 37.48]], \"sentences\": [\"A close up is shown of a woman wearing glasses.\", \" She starts smoking a cigarette, then leans over.\", \" A woman in bed is laughing as she falls onto her own bed, still smoking.\"]}, \"v_ad5QOYLt_cI\": {\"duration\": 140.9, \"timestamps\": [[0, 50.72], [50.02, 140.9]], \"sentences\": [\"man is standing in front of a table chopping vegetables and preparing a sandwich, he put in a bread butter cheese, avoado, and ham and a rolled sandwich.\", \" man talks o the camera and spread butter in bread slices with a knife put cheddar cheese, ham and ketchup and cut in four slices and serve them in a plate.\"]}, \"v_k9VKFjPYT3o\": {\"duration\": 160.31, \"timestamps\": [[0, 19.24], [20.04, 24.05], [29.66, 64.93], [59.32, 75.35], [154.7, 156.3]], \"sentences\": [\"A man in a blue coat is talking outside by a rock.\", \" He is wearing a rock climbing harness.\", \" He begins climbing up the rock.\", \" He has a rope around his neck with different rock climbing tools.\", \" He gives another person a high five.\"]}, \"v_gh8rmWE-564\": {\"duration\": 15.07, \"timestamps\": [[0, 2.56], [2.56, 15.07]], \"sentences\": [\"Two people are seen riding down a hill with one on skis and the other on a sled.\", \" The person then goes over a jump and crashes into a snowbank, showing the same shot again in slow motion.\"]}, \"v_tZ6Fjq6SJvQ\": {\"duration\": 200.06, \"timestamps\": [[2, 191.06], [2, 81.03], [81.03, 160.05], [160.05, 192.06]], \"sentences\": [\"A man and a woman dressed in a black evening gown and a black suit dance in a ball room dance style in a large room with stone floors and grated windows.\", \" The man and woman begin with a fast dance with a lot of foot work twirling around the floor.\", \" The man and woman then begin a slow dance in which they glide, caress, spin and twirl each other across the floor at times lingering in smoldering postures that imply romance.\", \" The man and woman then begin to dance fast again utilizing fast twirls and foot work and with the man picking the woman up and spinning her around in the air until one final dip.\"]}, \"v__zkcTAj5Z8Q\": {\"duration\": 76.7, \"timestamps\": [[1.15, 22.24], [16.11, 59.44], [60.59, 75.55]], \"sentences\": [\"A young boy is seen swimming around with another person standing in the water.\", \" The boy continues to swim around with the other people as well as do flips under the water.\", \" The kids move under and over the water while the camera continues to follow them.\"]}, \"v_Qm6HmQv5uOo\": {\"duration\": 32.76, \"timestamps\": [[0, 32.27], [17.53, 23.1], [18.18, 31.45]], \"sentences\": [\"A man sings a song with someone plays an accordion in a restaurant.\", \" The man playing accordion breaks his instrument in half.\", \" The people are startled but continue on singing the song.\"]}, \"v_cwhkG3LhZO8\": {\"duration\": 209.3, \"timestamps\": [[0, 32.44], [8.37, 87.9], [23.02, 195.69]], \"sentences\": [\"A little boy is standing at the parking lot, he is not wearing a shirt, he talked to the camera.\", \" He then walked with both his elbows up towards the road.\", \" The boy is on stage playing a brown guitar, he is not wearing a shirt, there's a microphone in front of him, behind him is a man playing a guitar too.\"]}, \"v_hxQhQsl-N1k\": {\"duration\": 9.34, \"timestamps\": [[0.14, 9.15], [0.05, 1.17], [1.21, 9.34]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy is half kneeing on a gym floor.\", \" The guy starts pressing a weight in one hand.\"]}, \"v_IuY073Pr4E4\": {\"duration\": 42.58, \"timestamps\": [[0, 2.55], [2.55, 9.79], [9.58, 37.89], [38.53, 42.58]], \"sentences\": [\"A man talks to the camera.\", \" The man walks towards a children's playground.\", \" The man hangs from mounted bar type devices in the playground.\", \" The man dismounts and walks back to the camera.\"]}, \"v_bjtjeUcoxkg\": {\"duration\": 121.19, \"timestamps\": [[8.48, 17.57], [18.18, 25.45], [26.66, 29.08], [30.3, 32.11], [32.72, 44.23], [44.84, 53.93], [54.53, 63.02], [64.83, 75.13], [76.35, 83.01], [84.22, 96.34], [98.16, 115.73]], \"sentences\": [\"A man speaks to a camera.\", \" Another man shaves his face that is covered with shaving cream.\", \" The man shaves part of his neck.\", \" The man's razor is covered with shaving cream so he rinses the razor with water.\", \" The man speaks to the camera again.\", \" The shaving man again shaves part of his cheek area.\", \" The man returns to speak to the camera.\", \" An animation of shaving is shown.\", \" The man continues to speak to the camera.\", \" The shaving man shaves more towards his chin, including his upper cheek.\", \" The man speaks some more to the camera.\"]}, \"v_X487OD6H6LE\": {\"duration\": 83.94, \"timestamps\": [[0, 17.63], [17.21, 46.59], [46.17, 83.94]], \"sentences\": [\"A man is sitting behind two congas with one shoulder rolled up.\", \"After he finishes talking,he begins hitting the conga.\", \"After several hits,he adds in the other conga and starts to hit the other conga.\"]}, \"v_PUJqlmTdlak\": {\"duration\": 223.56, \"timestamps\": [[29.06, 38.01], [84.95, 87.19], [84.95, 223.56]], \"sentences\": [\"A man shuffles a deck of cards and deals them.\", \" Four aces are shown face up on the table.\", \" A man sits at a table and plays blackjack.\"]}, \"v_NA8fCmbHwU8\": {\"duration\": 83.89, \"timestamps\": [[3.78, 8.39], [12.16, 65.44], [62.5, 65.44], [65.86, 74.25], [41.53, 62.08]], \"sentences\": [\"A team rides together on a bus.\", \" Teams play games of beach soccer.\", \" A man makes a bicycle kick in the sand.\", \" The winning team holds up a trophy together and celebrates.\", \" Teammates call from the bench and cheer.\"]}, \"v_I4wkBjpwAAU\": {\"duration\": 93.14, \"timestamps\": [[16.3, 61], [61, 83.82], [83.82, 88.94]], \"sentences\": [\"Two army men in the their uniforms are tied together and pulling each other in opposite direction as part of their training.\", \" There is a crowd of army officers watching them cheering for them as they do the strength training exercise.\", \" The game is over after one of the army officer's drags the other officer on the ground and wins the game.\"]}, \"v_NkvwL_M_lDg\": {\"duration\": 158.31, \"timestamps\": [[0, 53.04], [11.08, 75.2], [61.74, 158.31]], \"sentences\": [\"The man in blue shirt is strumming the drum in front of him.\", \" The young man strum the drum in front of him then the next drum.\", \" The young man strum the drums in front of him.\"]}, \"v_NdFbQ0l3R9k\": {\"duration\": 88.91, \"timestamps\": [[0, 9.78], [9.78, 16], [16, 58.68], [58.24, 88.91]], \"sentences\": [\"A young preteen female is standing in the corner of a room talking.\", \"The girl is then shown in a sparkly leotard inside of a gymnasium.\", \"After,she hops on the balance beam and begins to do tricks before she flips off of the balance beam.\", \"She then retreats back to the camera,says a few brief words and waves bye.\"]}, \"v_lly76lvHbB8\": {\"duration\": 17.95, \"timestamps\": [[0, 10.23], [10.23, 17.95]], \"sentences\": [\"A man in a red shirt holds onto a disc and skates down the ice.\", \" He lets go of the disc and walks back.\"]}, \"v_7MWFfqhKgIY\": {\"duration\": 33.16, \"timestamps\": [[0, 11.61], [0, 17.24], [17.41, 33.16]], \"sentences\": [\"A little girl performs holding on the rings.\", \" A boy stands next a man, then he raise a hand  and walks to perform on the parallel bards.\", \" The boy swing on the bars, and then jumps on the mat.\"]}, \"v_wjcCl0jPxO4\": {\"duration\": 84.41, \"timestamps\": [[5.91, 55.71], [55.71, 61.19], [61.19, 81.87]], \"sentences\": [\"There's a woman in a maroon shirt washing her face in the sink.\", \" An aesthetician is talking about skin care routines and giving tips on how to keep facial skin clean.\", \" The model washes her face and then dabs it dry gently with a towel.\"]}, \"v_bFgXdHQnTtQ\": {\"duration\": 165.12, \"timestamps\": [[0, 48.71], [48.71, 108.98], [110.63, 135.4], [137.05, 165.12]], \"sentences\": [\"Three girls exercise inside a house.\", \" The girls dance while jumping, spinning and moving the hips.\", \" Then, the girls one by one thrown to the ground, then stand and continue dancing.\", \" After, two girls kneel and a child stands on the legs and raise her arms, after the girls ends their performance.\"]}, \"v_-lER_VO9LUo\": {\"duration\": 25.45, \"timestamps\": [[0, 25.45], [0.89, 25.45], [17.69, 22.01]], \"sentences\": [\"Two dogs are walking on the sidewalk attached by a rope.\", \" Two people are walking on the sidewalk next to them.\", \" One of the people is carrying a water bottle.\"]}, \"v_T-rV3KKFOgg\": {\"duration\": 51.53, \"timestamps\": [[0, 10.05], [11.08, 41.99], [42.77, 51.53]], \"sentences\": [\"A man demonstrates how to wash the underbody of a car.\", \" A car is shown going through a commercial wash.\", \" They advertise their expertise in washing cars.\"]}, \"v_hh6Yt_LJPwQ\": {\"duration\": 120.54, \"timestamps\": [[0, 47.61], [65.09, 120.54]], \"sentences\": [\"A woman is seen talking to people out in public followed by a man washing his mouth out and kissing another girl.\", \" He then presents the mouth to various people spread out through days and has the people speak to the camera about their experience.\"]}, \"v_G-zVpNXq224\": {\"duration\": 192.15, \"timestamps\": [[0, 18.25], [25.94, 34.59], [30.74, 164.28], [74.94, 84.54], [138.35, 146.03], [174.85, 189.26], [187.34, 192.15]], \"sentences\": [\"We see Ellen playing table tennis.\", \" A Table tennis player comes out.\", \" The new match is played.\", \"The man holds his arms out.\", \" Ellen ducks down near the table.\", \" The players shake hands, the lady hugs Ellen and laugh.\", \" We see the ending screen with Ellen on it.\"]}, \"v_N2fTZV7pnEw\": {\"duration\": 210.02, \"timestamps\": [[0, 36.75], [39.9, 114.46], [115.51, 210.02]], \"sentences\": [\"A man is skiin on a slope, quickly.\", \" He turns as he passes between other skiers on the way.\", \"The man continues until he is finished, then removes himself to the board and joins other skiers at the resting spot.\"]}, \"v_IrTqW6Qn8mI\": {\"duration\": 40.17, \"timestamps\": [[0, 5.02], [7.03, 25.11], [26.71, 40.17]], \"sentences\": [\"A close up is shown of leaves being blown.\", \" A person is blowing leaves with a leaf blower.\", \" They continue blowing the leaves across the yard.\"]}, \"v_D2Trvi7Im_s\": {\"duration\": 42.26, \"timestamps\": [[0, 5.49], [6.76, 23.88], [25.57, 42.26]], \"sentences\": [\"A woman is skating down a sidewalk outside.\", \" She rolls slowly past the camera.\", \" She keeps skating down the sidewalk past the ocean's edge.\"]}, \"v_eUCKEnKxG8w\": {\"duration\": 167.59, \"timestamps\": [[0, 31.84], [28.49, 118.15], [120.67, 157.54]], \"sentences\": [\"Two young girls are seen kneeling before a tub while speaking to the camera.\", \" The girls hold up a product and measure it out followed by putting it into their mouths and swishing it around.\", \" The girls then spit out the liquid and continue to speak to the camera.\"]}, \"v_9BS1II6O7I0\": {\"duration\": 101.38, \"timestamps\": [[0, 18.25], [18.25, 24.33], [24.84, 43.09], [44.1, 70.46], [71.98, 101.38]], \"sentences\": [\"A young man solves a cube puzzle while a man stand on front him.\", \" Then, a man writes on a paper and shows the young man.\", \" The young man solves again the puzzle is less time, and the man takes note.\", \" After the young man solves again two times the puzzle in less time.\", \" At the end, the young man solves the puzzle in less time than the previous times, he raises happy from his chair.\"]}, \"v_sdMr24Qyrw8\": {\"duration\": 119.47, \"timestamps\": [[0, 16.73], [17.32, 22.7], [23.3, 71.08], [71.68, 81.24], [81.83, 109.91], [110.51, 119.47]], \"sentences\": [\"A young girl is sitting in a chair, awaiting nervously.\", \" The piercing artist paints a dot above her lip.\", \" He sanitizes his tools and proceeds to pierce the lip of the young girl.\", \" He inserts a ring into the piercing.\", \" He tightens the piercing and cleans around the piercing.\", \" The girl looks into a mirror handed to her by the piercing artist and looks pleased.\"]}, \"v_tseeGOVN_eY\": {\"duration\": 105.19, \"timestamps\": [[0.53, 42.6], [28.4, 103.08]], \"sentences\": [\"A child is seen turning on a faucet and begins washes dishes in a sink.\", \" The child turns the water off an on again while scrubbing the dishes and another person walking in to help.\"]}, \"v_opAcl-kukdU\": {\"duration\": 179.24, \"timestamps\": [[0, 179.24], [0, 177.44], [3.58, 179.24]], \"sentences\": [\"cherleader team wearing purple uniforms are doing a choreography on the middle of a wooden court.\", \" a lot of people are sitting on stands around the court.\", \" people is walking on sides of the wooden court in a roofed gym.\"]}, \"v_J0EWvkkxh5o\": {\"duration\": 53.57, \"timestamps\": [[0, 39.11], [5.62, 36.69], [35.09, 40.18], [44.19, 53.57]], \"sentences\": [\"We see a girl preparing to dive in an indoor pool.\", \" The girl jumps and stands looking scared of the height.\", \" The girl turns and dives into the water.\", \" The girl surfaces and swims to the edge of the pool.\"]}, \"v_BJ-1HVacaF4\": {\"duration\": 226.37, \"timestamps\": [[0, 10.19], [10.19, 21.51], [10.19, 164.12], [67.91, 115.45], [67.91, 226.37]], \"sentences\": [\"The video starts with a logo of the cathedrals of light.\", \" Next a group of people are shown.\", \" Then people are shown swimming in an underwater world.\", \" Reefs and rocks are shown underwater.\", \" Scuba divers are shown swimming deep into the water exploring what is around.\"]}, \"v_JFVZdzzJVr8\": {\"duration\": 62.76, \"timestamps\": [[0, 12.24], [5.96, 47.7], [42.05, 59.63]], \"sentences\": [\"Two men are next to the table wearing blue shirts and welding helmets.\", \" The man is holding a welding machine and working on a metal that causes sparks, next to him is another man watching closely on the metal.\", \" The lights lit up, the man is poking the metal.\"]}, \"v_gJKw6jGjiDE\": {\"duration\": 105.49000000000001, \"timestamps\": [[0, 15.82], [0, 105.49], [16.35, 99.69], [100.21, 105.49]], \"sentences\": [\"A gymnast stands nervously awaiting her start.\", \" The crowd in the arena watches her.\", \" She climbs up to a bar and performs various flips, cartwheels, as well as doing the splits mid air.\", \" She jumps off the bar and lands on a blue mat.\"]}, \"v_6fgk5PKVS2o\": {\"duration\": 224.96, \"timestamps\": [[0, 44.99], [42.74, 133.85], [166.47, 224.96]], \"sentences\": [\"A person's car is shown from several angles with a person inside and leads into the car driving with people inside.\", \" The people are then shown in various angles riding up a snowy mountain and going down a hill.\", \" Close ups of the people's faces are shown as they go up and down the hill several times and landing at the bottom of a hill.\"]}, \"v_uBhuULfs3Hc\": {\"duration\": 144.27, \"timestamps\": [[0, 10.82], [11.54, 19.48], [20.2, 46.17], [49.77, 128.4], [130.56, 144.27]], \"sentences\": [\"A man is at a mound, spinning a disc around in circles.\", \" He lets go of the disc and watches it fly.\", \" A line of discs is shown before a group of people on the field, choosing their own disc.\", \" People are shown, one at a time, throwing the discs.\", \" The winner stands with his trophy, shaking hands of people who walk up to him.\"]}, \"v_4dyn1oKJO34\": {\"duration\": 79.74, \"timestamps\": [[0, 37.88], [27.51, 79.74]], \"sentences\": [\"Various clips are shown of people playing lacrosse followed by a man holding the stick and speaking to the camera.\", \" He moves the stick all around demonstrating how to properly play.\"]}, \"v_G9ynahMxUz8\": {\"duration\": 98.59, \"timestamps\": [[0, 9.86], [11.34, 37.96], [45.35, 98.59]], \"sentences\": [\"A little girl kicks a big pink ball to her mother, who catches it and kicks it back.\", \" They continue kicking and throwing the ball to each other, and a man joins in.\", \" The little girl chases down the ball, bringing it back.\"]}, \"v_2WwWzzO6rZQ\": {\"duration\": 90.19, \"timestamps\": [[3.61, 90.19], [40.13, 45.09], [75.31, 90.19]], \"sentences\": [\"A female gymnast jumps onto a balance beam and do many tricks and flips and lands back on her feet.\", \"the gymnast does two nice back flips back to back while keeping her balance and landing prefect on her feet.\", \"finally the female gymnast finishes with a high twice flip off the balance beam in the air and lands on the mat prefect.\"]}, \"v_oT42qP2zIXo\": {\"duration\": 155.16, \"timestamps\": [[0, 17.84], [17.84, 114.82], [114.82, 147.4], [147.4, 155.16]], \"sentences\": [\"An intro appears of a person standing in front of objects on a counter, then a white screen appears with a picture of an owl and the words on the screen that include a website and the gray words \\\"Samurai Pro Knife Sharpener\\\".\", \"The man then picks up the two knives near his cutting board and demonstrates how they each cut a piece of green onion the cutting board, then he fastens the sharpener onto the counter, runs his knife through the sharpener a few times then goes back to showing how it cuts the green onion and how the blades look.\", \" The man is touching, holding and showing the camera a closer look of the sharpener.\", \" The outro is a person drawing the owl and the website onto a large piece of paper with markers, gives a thumbs up when they're done, then the screen goes to a digital white screen of the same owl that was just drawn and the website below it.\"]}, \"v_YPSV5JEqhBw\": {\"duration\": 99.13, \"timestamps\": [[0, 99.13], [22.3, 75.34], [2.48, 99.13]], \"sentences\": [\"Women are holding a ball and spinning around before throwing it onto the field.\", \" A man in a red shirt is holding a broom.\", \" People are watching them throw the balls.\"]}, \"v_1t0yXLlX1XE\": {\"duration\": 84.87, \"timestamps\": [[0, 9.34], [9.34, 84.87]], \"sentences\": [\"Several images of a bald man bowling are shown and then he appears and throws a curve ball.\", \"Several videos from different locations are shown of the curve ball and the ball almost goes to the gutter but curves about two to three feet away from the bowling pins.\"]}, \"v_lx5Yfoj7Gk8\": {\"duration\": 101.57, \"timestamps\": [[2.03, 35.55], [36.56, 82.27], [76.68, 98.52]], \"sentences\": [\"A close up of a machine is shown printing paper and leads into people working around the picture.\", \" The people continue working with the machine putting paper through and measuring it and laying it out on a table.\", \" The people are then seen hanging the paper up on a wall and presenting it in the end.\"]}, \"v_aUbSDHBZNEQ\": {\"duration\": 35.85, \"timestamps\": [[0.72, 17.57], [12.01, 34.42]], \"sentences\": [\"A close up of a dog is seen who proceeds to run away towards another dog.\", \" The big dog then leads the little dog around on a leash.\"]}, \"v_QJVtvcYcwac\": {\"duration\": 206.43, \"timestamps\": [[0, 206.43], [11.35, 16.51], [22.71, 40.25], [45.41, 110.44], [111.47, 158.95], [164.11, 168.24], [170.3, 206.43]], \"sentences\": [\"This a video tutorial on getting box braids.\", \"  A screen pops up with several websites and social media addresses.\", \"  There are stills of the processes to make the braids shown on a girl in a pink jacket.\", \"  Then a video shows how the process looks in actual time using a comb and the technique of separating the braids as a woman braids the hair by hand.\", \"  Then there is a front view of the little girl in pink as the woman behind her finishes up the braiding process at the front of her head.\", \"  There are screen text that mentions how the hair looks six hours later.\", \"  Then there are still shots of the results of her hair being braided.\"]}, \"v_Ycf5NG0xedg\": {\"duration\": 237.3, \"timestamps\": [[0, 7.12], [8.31, 49.83], [51.02, 75.94], [77.12, 166.11], [167.3, 182.72], [183.91, 207.64], [208.82, 237.3]], \"sentences\": [\"A waterfall appears on screen next to a river with the title \\\"H20 Adventures Savegre River\\\" overlaid.\", \" A group of people walk across a red suspension walking bridge above the river.\", \"  A group of people wearing life vests and holding oars listen to instructions.\", \" Groups of people row inflatable rafts down the fast current river.\", \"  People stand on shore talking and drinking beverages.\", \" Video credits appear on screen over video of a lizard on a rock.\", \"  The screen goes completely black after the credits end.\"]}, \"v_aFGLXYcKD2M\": {\"duration\": 143.59, \"timestamps\": [[0, 23.69], [25.85, 116.31], [120.62, 143.59]], \"sentences\": [\"A couple of men are on an indoor tennis court.\", \" They lob the ball back and forth over the net.\", \" They hit the ball back to each other.\"]}, \"v_jGLJuL49zYE\": {\"duration\": 86.15, \"timestamps\": [[0, 86.15], [38.77, 58.15], [66.76, 86.15]], \"sentences\": [\"Two men alternatively dance on the street while pedestrian and road traffic pass by.\", \" Two women stop to watch the dancers.\", \" A man and a woman stop to watch the dancers.\"]}, \"v_Gpjx38IDVT0\": {\"duration\": 22.41, \"timestamps\": [[0, 5.27], [5.49, 17.48], [17.59, 22.41]], \"sentences\": [\"A boy is inside an outdoor net.\", \" He swings a ball on a rope very quickly.\", \" He lets it go and watches as it flies across the field.\"]}, \"v_TDwSu2nfSXw\": {\"duration\": 113.31, \"timestamps\": [[0, 14.16], [14.16, 24.36], [24.36, 69.69], [69.69, 97.45], [97.45, 112.75]], \"sentences\": [\"A boy dancing on the front of a book with describing credits.\", \" The boy is sitting in an empty room talking about his dance moves.\", \" The boy is standing in the room showing a move that starts with kicking his left foot out as he slowly turns and shows the rest of the current dance move.\", \"Next the boy starts with same move but moves quicker.\", \" The instructions to practice are shown as the boy is dancing in the almost empty room.\"]}, \"v_Uk_VxavVjP0\": {\"duration\": 63.07, \"timestamps\": [[0, 63.07], [57.71, 63.07], [5.05, 11.04]], \"sentences\": [\"People are floating down a river in tubes.\", \" The trees are shown above the water.\", \" A man puts his hands behind his head.\"]}, \"v_WjueR8K-nnI\": {\"duration\": 122.6, \"timestamps\": [[0, 27.59], [27.59, 71.11], [9.2, 11.65], [71.11, 106.05], [106.66, 122.6]], \"sentences\": [\"Children rides bumper cars in a carnival.\", \" The kids get stuck in the center, but they free and drive.\", \" A woman push a stroller in the street.\", \" Children bumps cars and ride around.\", \" The children gets off the bumper cars and walk to the exit.\"]}, \"v_3nvKiZeVfGY\": {\"duration\": 15.12, \"timestamps\": [[0, 5.67], [5.74, 9.45], [5.82, 7.41], [9.83, 12.93]], \"sentences\": [\"A person slides a heavy ball on the floor while holding a brush on his left hand.\", \" Then, two men brush the floor on front the heavy ball without touching it.\", \" People plays behind the person.\", \" The yellow ball reaches the center of the red circle.\"]}, \"v_pgBfTJzVB98\": {\"duration\": 54.57, \"timestamps\": [[0, 54.57], [7.91, 39.29], [40.38, 48.02]], \"sentences\": [\"A man is wearing a red hat and sunglasses.\", \" He throws a dart in front of him.\", \" He makes a bulls eye on the dart board.\"]}, \"v_baktSTMnMv4\": {\"duration\": 95.41, \"timestamps\": [[0, 84.44], [46.27, 94.46]], \"sentences\": [\"A bunch of billiards players and shots are shown.\", \"  The shots are trick shots in the second half of the video.\"]}, \"v_1_YFTTzzLrI\": {\"duration\": 28.91, \"timestamps\": [[0, 2.31], [2.17, 5.35], [5.93, 28.91]], \"sentences\": [\"A man sits at a table and a woman moves a box from him.\", \" He puts his hands on the table then begins to solve a rubix cube.\", \" The timer continues as he solves the cube.\"]}, \"v_J4UFrrwKUQA\": {\"duration\": 172.97, \"timestamps\": [[0, 19.03], [19.03, 41.51], [124.54, 131.45], [131.45, 172.97]], \"sentences\": [\"two men are standing in a sailing boat in sea.\", \" man is standing in a dock wearing a red bull shirt and then is in the saillboat.\", \"dolphins are swimming next to the boat.\", \" people are  standing on a sunny day in a dock.\"]}, \"v_TssNxg5XJ-o\": {\"duration\": 93.46000000000001, \"timestamps\": [[2.34, 92.06], [6.54, 69.16], [20.56, 56.54], [55.61, 93.46]], \"sentences\": [\"A man is kneeling on the ice with another beside hide pulling string out of a hole.\", \" They continue to pull the string while the man beside him grabs a hook.\", \" He places the hook near the hole but the man grabs a fish on a string.\", \" The fish flops around and the man grabs the fish and holds him up.\"]}, \"v_D5iU1Qfy-wk\": {\"duration\": 184.97, \"timestamps\": [[0, 0.92], [1.85, 19.42], [19.42, 40.69], [44.39, 85.09], [85.09, 146.13], [147.05, 184.97], [160, 177.57]], \"sentences\": [\"A man sits in a room laughing.\", \" The man joins a woman and man at a table eating.\", \" The man sees a bobble doll and pushes it.\", \" The man hits the doll and bounces a ball around the room knocking all the food off the table and making a mess.\", \" The people laugh and the man cleans up and creates a whirlpool in the well which breaks and he ball smashes walls.\", \" The man works out in a field.\", \" Dust rises from the man and leafs fly through the sky.\"]}, \"v_PEp22TMpoHA\": {\"duration\": 175.19, \"timestamps\": [[0, 44.67], [44.67, 120], [120.88, 175.19]], \"sentences\": [\"A group of people are on rafts,white water rafting through rocky waters.\", \"Eventually,they travel through the water and end up hitting a huge rock and losing their paddles.\", \"After,they continue to go through rocky parts of the water and slide down small hills.\"]}, \"v_teDceMxV9PA\": {\"duration\": 112.85, \"timestamps\": [[0, 112.85], [0, 17.49], [17.49, 110.59]], \"sentences\": [\"A reporter reports on a story about amputees and non amputees using replacement limbs with advanced technology or as leg extenders and performance enhancers for non amputees.\", \"  A reporter sits at a reporters table during a news broadcast before the clip cuts to people wearing limb replacement technology.\", \"  Several clips of men who are not amputees wearing amputee extender legs are shown with the subjects running and bounced in the street.\"]}, \"v_brewO_8bl4g\": {\"duration\": 85.45, \"timestamps\": [[0.43, 30.76], [32.47, 81.18]], \"sentences\": [\"Hulk Hogan is seen speaking to the camera while holding up his arms and another man stands in the background.\", \" The man continues speaking to the camera and leads into clips of a boy arm wrestling and another man holding up his arm.\"]}, \"v_WnYqWQ005Tc\": {\"duration\": 198.55, \"timestamps\": [[0, 40.7], [40.7, 99.28], [99.28, 141.97], [141.97, 198.55]], \"sentences\": [\"An Asian male is standing on a hard wood floor and begins talking and begins to do a spin on his head.\", \"After the clip,he comes back and shows how to properly place your hands on the floor.\", \"As he continues,he grabs a beanie and puts it on his hand to make him turn easier.\", \"The man then does the twist continuously and shows off the cricket position before returning to talk again.\"]}, \"v_nVN1rP8H688\": {\"duration\": 198.57, \"timestamps\": [[0, 15.89], [15.89, 32.76], [32.76, 44.68], [45.67, 60.56], [60.56, 118.15], [120.13, 154.88], [153.89, 164.81], [165.8, 185.66], [185.66, 198.57]], \"sentences\": [\"Various title cards flash in front of the screen.\", \" We see a dog, and a man with a selfie stick carrying a snowboard.\", \" The man is snowboarding and holding the selfie stick.\", \" The man is playing with the dog, and we see the dog close up.\", \" The man is snowboarding downhill.\", \" He stops to pet his dog again before snowboarding again.\", \" the man and the dog are walking in an area with little snow.\", \" The man mounts the board and snowboards before putting it in his truck.\", \" We see the Gopro screen.\"]}, \"v_Yyv8oxrFGV0\": {\"duration\": 70.87, \"timestamps\": [[0, 11.69], [11.34, 58.82], [58.82, 70.87]], \"sentences\": [\"A group of men are seen crowded around a table where more men are sitting and speaking.\", \" Eventually two men chug a beer followed down a line of more men drinking their beer.\", \" The men finish their beers and laugh and applaud one another while many watch on the sides.\"]}, \"v_SMpmoqIk3Ts\": {\"duration\": 25.1, \"timestamps\": [[0, 2.13], [2.01, 7.15], [7.03, 25.1]], \"sentences\": [\"Several individuals are in the water playing a game and the man throws an orange ball to a person.\", \"The person then takes the ball and throws it to the man sitting next to the goal.\", \"He then moves to the other side of the pool and grabs the goal.\"]}, \"v_Xhrk1wP8tCs\": {\"duration\": 67.59, \"timestamps\": [[0, 14.53], [14.87, 26.7], [27.71, 38.53], [38.87, 42.58], [42.92, 67.59]], \"sentences\": [\"A man is sitting down next to a desk where a fitness equipment piece is placed.\", \" The man shows off the pedals of the equipment as well as a timer on the equipment.\", \" A woman is seen walking on the equipment.\", \" A man pulls the fitness equipment from under a desk.\", \" The man is seen by the desk again, talking about the fitness equipment.\"]}, \"v_Snw8Jf1DQwg\": {\"duration\": 101.28999999999999, \"timestamps\": [[0, 5.06], [5.06, 85.08], [85.08, 101.29]], \"sentences\": [\"A screenshot of a woman wearing a blue jumpsuit is standing in a pose holding two batons and white words on the middle of the screen say \\\"2 Baton Nicole\\\".\", \"The woman is now standing on a floor with a lot of colorful lines and dashes and she begins her 2 baton routine that includes a lot of twirling, spinning, and throwing and catching of the batons.\", \"Almost to the end of her routine the woman drops the baton twice, picks them up and continues to do her routine until the end.\"]}, \"v_On4V94fVLpg\": {\"duration\": 165.79, \"timestamps\": [[0, 16.58], [19.89, 25.7], [43.11, 96.16], [45.59, 117.71], [53.88, 74.61], [118.54, 123.51], [140.92, 154.19], [164.96, 165.79]], \"sentences\": [\"A lady speaks with two pumpkins on a table.\", \" A woman shows her palm.\", \" A person carves a pumpkin.\", \" A females gives an interview on carving kit.\", \" Children hold pumpkins with smiles on their faces.\", \" A man pulls the top of a pumpkin off.\", \" The lady presents a knife and a smaller knife.\", \" Two people sit with papers in front of them.\"]}, \"v_K9kVsnTQh-g\": {\"duration\": 102.12, \"timestamps\": [[0, 22.98], [22.98, 40.85], [40.34, 62.81], [74.04, 86.8], [88.34, 102.12]], \"sentences\": [\"A man in sweat shirt washes plates and cups in a sink with soapy water.\", \" The man picks up silverware soaking in sink and washes them off.\", \" The man washes pots and a cutting board.\", \" The man washes a coffee press gadget.\", \" The man turns off the water and drains the sink.\"]}, \"v_ssies4ErWus\": {\"duration\": 44.26, \"timestamps\": [[0, 43.82], [20.14, 43.82], [41.82, 43.82]], \"sentences\": [\"People are sitting on the edge of the water.\", \" A guy is chopping something on the ground.\", \" A woman gets up and walks away.\"]}, \"v_KdqoLhoXjS8\": {\"duration\": 119.7, \"timestamps\": [[0, 41.89], [41.3, 92.17], [92.17, 119.7]], \"sentences\": [\"A grooming room is shown and three people are washing different dogs.\", \"Other rooms are shown and the dogs continue being groomed and laying down on the ground waiting for their turn.\", \"After,the camera leaves the back of the office and the reception area is shown.\"]}, \"v_mNTO-xnsaTc\": {\"duration\": 31.05, \"timestamps\": [[0, 14.44], [13.19, 16.92], [16.76, 31.05]], \"sentences\": [\"People are paddling oars in a blue raft.\", \" They go over a wave in the water.\", \" They continue going down the river.\"]}, \"v_6PaTEwG8Ym4\": {\"duration\": 20.81, \"timestamps\": [[1.98, 7.28], [7.28, 13], [13, 18.41], [18.41, 19.97]], \"sentences\": [\"A man is seated on a chair in a hair salon.\", \" He is getting a haircut from a hairdresser who is wearing a blue dress.\", \" The man is sitting with a camera in his hand.\", \" The hairdresser finishes cutting his hair and then steps back.\"]}, \"v_PNdG3SUdJzc\": {\"duration\": 52.25, \"timestamps\": [[0, 28.47], [22.73, 31.35], [30.56, 52.25], [40.75, 42.06]], \"sentences\": [\"A kneeling man attempts to start a fire while several others watch on.\", \" One of the spectators walks away briefly.\", \" The kneeling man starts a fire.\", \" One of the spectators kisses the kneeing man.\"]}, \"v_A0R3KFXD_BU\": {\"duration\": 46.67, \"timestamps\": [[0.7, 46.67], [12.84, 31.97], [33.6, 46.67]], \"sentences\": [\"A group of men sit around a bar flirting with a bartender behind the bar.\", \" The woman continues talking to the men while the camera pans around various groups of people nearby the bar.\", \" The woman sparks with her hands while also dealing cards for people at the bar.\"]}, \"v_izdf6Fm48Tc\": {\"duration\": 227.79, \"timestamps\": [[0, 72.89], [58.09, 169.7], [137.81, 222.09]], \"sentences\": [\"A man is seen speaking to the camera with a pair of shoes in front of him.\", \" He holds up the shoes as well as cleaning products and begins using them on the shoes.\", \" He wipes the shoes while still showing the cleaning products and speaking to the camera.\"]}, \"v_a9qztQPPsJg\": {\"duration\": 113.45, \"timestamps\": [[0, 23.83], [23.83, 113.45]], \"sentences\": [\"man is sitting in font of a table talking about how to clean a white sneaker.\", \" man pour a liquid on water and cleans the shoe with a brush and with a wipe polish it.\"]}, \"v_7MDr4f1r8rI\": {\"duration\": 199.62, \"timestamps\": [[0, 164.69], [167.68, 199.62]], \"sentences\": [\"Girls are shown one at a time, using pvc pipes to vault in an indoor gym onto a mat.\", \" Finally a boy is shown vaulting as well.\"]}, \"v_P2HtcvFg3z8\": {\"duration\": 92.49000000000001, \"timestamps\": [[0, 18.96], [21.27, 92.49]], \"sentences\": [\"A close up of a cartoon earth is shown, followed by a cartoon man with a javelin.\", \" The man is then shown throwing three different javelins in competition, interspersed with words on the screen.\"]}, \"v_PY4304sV5fY\": {\"duration\": 173.52, \"timestamps\": [[0, 34.7], [34.7, 107.58], [107.58, 158.77], [150.97, 173.52]], \"sentences\": [\"An young male Caucasian is sitting in a room behind a keyboard.\", \"Before he plays,he begins to talk and make movements across three black keys with his right hand as he continues to talk.\", \"He finally begins to play and you can see his hand moving rapidly across the keyboard on the left side of the screen.\", \"For his final chords,he takes his hand off the board and moves his head around in a circle.\"]}, \"v_v5KAaaZD6uk\": {\"duration\": 226.26, \"timestamps\": [[1.13, 209.29], [23.76, 24.89], [26.02, 27.15], [28.28, 29.41], [31.68, 44.12], [46.38, 175.35], [152.72, 170.82], [210.42, 225.12]], \"sentences\": [\"Athletes are giving interviews, and some show off their participation medals.\", \" Athletes are boarding white buses.\", \" The buses move down the road.\", \" A person stacks tee shirts.\", \" Athletes wait at the start line.\", \" Athletes are running down the road.\", \" Athletes cross the finish line.\", \" The credits of the clip are shown.\"]}, \"v_i1s-HuRTr5k\": {\"duration\": 165.79, \"timestamps\": [[1.66, 63.83], [52.22, 126.83], [112.74, 160.82]], \"sentences\": [\"An athlete is seen sitting on the ground when a man walks over and hands him shoes.\", \" The man then puts on the shoes and begins moving around the field.\", \" The man kicks a ball around while the camera follows him from behind.\"]}, \"v_Nk4p-ah_PkA\": {\"duration\": 63.18, \"timestamps\": [[0.63, 31.28], [30.01, 63.18]], \"sentences\": [\"People playing a baseball game are shown on a large field with dozens of people watching on the side.\", \" The people continue playing the game and ends with several players running of the field in the end.\"]}, \"v_YmGXXV6ztUo\": {\"duration\": 221.91, \"timestamps\": [[0, 14.42], [14.42, 104.3], [104.3, 117.61], [117.61, 199.72], [199.72, 221.91]], \"sentences\": [\"An Asian man wearing glasses, a green shirt with yellow stripes is sitting down talking in a room.\", \"Still shot pictures of a book appear, and the man appears talking again, and then more black text on a white screen shows up.\", \"The man appears again but this time he's outdoors and he's holding a very large archery and is showing the right and the wrong way to draw his string back.\", \" The man then moves a plant and stands so that he's standing in between two of them on the ground and he begins holding his archery, and showing different ways to hold it.\", \"The man appears again back indoors and sitting down talking.\"]}, \"v_V4_SJyhRGqA\": {\"duration\": 129.89, \"timestamps\": [[0, 24.68], [28.58, 88.33], [92.87, 129.89]], \"sentences\": [\"A game of croquette is in progress.\", \" A man has lined up numerous colored balls.\", \" He moves down the line, hitting each ball through the goal.\"]}, \"v_7uk4sqUBhks\": {\"duration\": 185.78, \"timestamps\": [[0, 185.78], [5.57, 177.42], [6.5, 181.14]], \"sentences\": [\"This video is a tutorial showing people how to ski correctly.\", \" First it tells you what environment you should ski in.\", \" It also shows someone skiing in the snow to accompany the steps given.\"]}, \"v_gqJE_SZyoIc\": {\"duration\": 105.91, \"timestamps\": [[0, 105.91], [63.54, 75.72]], \"sentences\": [\"A man is working out on an elliptical machine.\", \" It shows the screen on the machine.\"]}, \"v_lEqYTrzaHsc\": {\"duration\": 61.6, \"timestamps\": [[0, 17.86], [16.63, 61.6]], \"sentences\": [\"An intro leads into a boat full of people flying on the water.\", \" The camera shows various angles of the boat moving along the water as well as close ups on the people on board.\"]}, \"v_EavcvmrlVLQ\": {\"duration\": 159.92000000000002, \"timestamps\": [[0, 159.92], [64.77, 78.36], [149.52, 158.32]], \"sentences\": [\"We see men playing a game of soccer and scoring repeatedly indoors.\", \"  We see a goalie jumping around and a man shoot and score.\", \" We see a happy young man fanning his shirt.\"]}, \"v_UfYMJBu4HI0\": {\"duration\": 120.19, \"timestamps\": [[34.85, 44.47], [48.07, 49.88], [51.08, 53.48], [72.71, 75.72]], \"sentences\": [\"Apply the tiles in the same exact direction.\", \"  The tile must be installed over the adhesive.\", \"  Then roll immediately with a hundred-point roller.\", \"  Cut tiles near the perimeter to ensure smooth installation.\"]}, \"v_QWhn9Ncvvso\": {\"duration\": 238.52, \"timestamps\": [[0, 120.45], [120.45, 199.16], [199.16, 234.94]], \"sentences\": [\"A person shows bacon on a dish, then puts mayonnaise on two pieces of bread.\", \" Then, the person puts bacon on a bread and lettuce and tomato on the other bread, then spread peeper and form the sandwich.\", \" Next, the person cuts the sandwich in half, then takes a half and gives a bite.\"]}, \"v_VGVIaQuhdcI\": {\"duration\": 65.71, \"timestamps\": [[0, 42.38], [42.38, 63.74], [63.74, 65.71]], \"sentences\": [\"A man uses a tool to even plaster on a wall.\", \" The man works on the wall below the visible frame of the camera.\", \" The man rises up in front of the camera and walks past it.\"]}, \"v_oXFKaTlg3p0\": {\"duration\": 162.73, \"timestamps\": [[0, 162.73], [13.02, 95.19], [95.19, 96.01], [97.64, 125.3], [125.3, 140.76], [140.76, 151.34]], \"sentences\": [\"People are riding in a boat in the water.\", \"  The boat is pulling a tube with a man behind it.\", \"  The person flies off of the tube.\", \"  The boat is pulling the same tube with several young people on it.\", \"  A person water skis behind the boat.\", \"  A jet ski passes by the boat then we see the passengers.\"]}, \"v_Qzewn-dGdOI\": {\"duration\": 48.74, \"timestamps\": [[6.82, 12.92], [12.18, 36.31], [35.82, 48.74]], \"sentences\": [\"A man holding a red cape is standing in front of a bull.\", \" The bull hits him and knocks him to the ground.\", \" People carry the man off the arena.\"]}, \"v_K_I5LyzD8m0\": {\"duration\": 54.13, \"timestamps\": [[0, 6.22], [6.5, 11.91], [12.18, 54.13]], \"sentences\": [\"A barber rubs shaving cream on a man's bald head.\", \" The barber stops to clean his hands with a towel.\", \" The barber grabs a razor and slowly shaves the head of the man.\"]}, \"v_XP8pufIBsnM\": {\"duration\": 46.14, \"timestamps\": [[0, 37.37], [37.37, 38.53], [38.99, 46.14]], \"sentences\": [\"A young man bend to lift a weight to his shoulders, then he lifts the weight above his head.\", \" The young man lets the weight falls on the floor.\", \" After, the man flips, and then a man comes and hugs the young man.\"]}, \"v_DhYJl8KAZN4\": {\"duration\": 230.76, \"timestamps\": [[0, 5.77], [5.77, 222.68], [215.76, 216.91], [223.84, 230.76]], \"sentences\": [\"An intro comes onto the screen giving information for a percussion company.\", \" A man begins to play a set of drums with the camera showing him from several different angles.\", \" The camera shows his foot using a pedal to play the drums.\", \" As the video ends the closing credits are displayed.\"]}, \"v_Y4svcMuQgBw\": {\"duration\": 164.79, \"timestamps\": [[0.82, 164.79], [0.82, 15.66], [17.3, 47.79], [50.26, 163.97]], \"sentences\": [\"A woman talks and smiles while ironing a garment from a laundry room.\", \"  A woman wearing a pink shirt and apron stands in a laundry room in front of a washer and dryer and talks facing the camera.\", \"  The woman bends down to pick up a garment and then spreads it over an ironing table.\", \"  The woman proceeds to iron the garment, stopping momentarily, to spray the garment with a liquid from a white spray bottle, then finishes ironing the garment and holds it to her face and cheeks and smiles.\"]}, \"v_6eQuZddoEcI\": {\"duration\": 99.07, \"timestamps\": [[0, 99.07], [4.46, 13.87], [13.87, 20.8], [20.8, 66.38], [66.38, 98.57]], \"sentences\": [\"Three athletes perform hammer throws at a professional sports event in front of an audience in bleachers and score keepers.\", \"  A man spins a hammer throw sports hammer around and around again at a professional sports event and then lets it go to fly into a field surrounded by an audience in bleachers.\", \"  The athlete walks away and looks disappointed as a scoreboard reveals the score.\", \"   Two more athletes perform the same sport in the same way both letting the hammer fly in the air.\", \"  A final scoreboard displays showing hammer throw scores.\"]}, \"v_z9PXpyWbXk8\": {\"duration\": 7.06, \"timestamps\": [[0, 2.19], [0.95, 7.06], [3.28, 7.06]], \"sentences\": [\"The kid is standing in the court.\", \" The little girl is sitting at the other end of a mat.\", \" The young boy run towards the mat and jump over the pole.\"]}, \"v_UdIoEWadRxI\": {\"duration\": 170.3, \"timestamps\": [[0, 169.44], [16.18, 34.91], [42.57, 62.16], [68.97, 120.91], [128.57, 169.44]], \"sentences\": [\"A woman bartender is standing behind a bar.\", \" An empty glass is in front of her as she talks.\", \" She adds ice to the glass with a scoop.\", \" She adds three different liquids from three bottles to the glass.\", \" She stirs and continues to talk about the drink.\"]}, \"v_fnZIksNLUXA\": {\"duration\": 167.6, \"timestamps\": [[0, 15.08], [15.08, 54.47], [37.71, 57.82], [58.66, 84.64], [85.48, 152.52], [154.19, 167.6]], \"sentences\": [\"We see people on a boat and then see quick shots of people on a boat in diving gear.\", \" We see people under water diving.\", \" A man holds a white thing and touches it over and over.\", \" Above water people are on the boat and a person falls into the water, we see people underwater diving and looking at sealife at night.\", \" A person falls back into the water and we are underwater near a shipwreck in the day.\", \" The men get on the boat after they are done.\"]}, \"v_I1P5GuVHFQA\": {\"duration\": 205.57, \"timestamps\": [[9.25, 71.95], [74, 170.62], [167.54, 205.57]], \"sentences\": [\"A man is seen speaking to the camera while holding up various objects and sharpening a stick.\", \" The man then puts a helmet on and attached the stick to a holder, leading into the man creating a spark and cutting an object.\", \" He pauses to speak more to the camera and looking down at the object to see how it turned out.\"]}, \"v_n--IF_1qqYA\": {\"duration\": 10.26, \"timestamps\": [[0, 2.05], [2.05, 3.8], [3.44, 6.36], [6.26, 10.26]], \"sentences\": [\"A man is mowing his lawn, he has chickens in his coop.\", \" The time is speed up so quickly so it looks like it is in double time.\", \" He walks around the yard looking around.\", \" The yard looks very green and very nicely kept.\"]}, \"v_0HrPpZa_xv8\": {\"duration\": 20.99, \"timestamps\": [[0, 12.8], [12.91, 16.58], [16.58, 20.99]], \"sentences\": [\"A cowboy on a horse runs after a cow.\", \" The cowboy jumps off the horse and runs after the cow.\", \" The cowboy ties the cow up.\"]}, \"v_oRR1nIUPbjo\": {\"duration\": 203.25, \"timestamps\": [[0, 132.11], [128.04, 141.26], [137.19, 143.29]], \"sentences\": [\"A person is sitting in a raft going down a stream.\", \" There are multiple people in a raft going in the river.\", \" Someone falls into the water and gets helped back in.\"]}, \"v_eMNvlcxXZj8\": {\"duration\": 109.0, \"timestamps\": [[0, 109], [2.72, 109], [0.54, 109]], \"sentences\": [\"People are working out in a room.\", \" They are stepping on stepping stools.\", \" They are dancing together while working out.\"]}, \"v_MZQmJZ_31O0\": {\"duration\": 223.81, \"timestamps\": [[0, 4.48], [4.48, 207.03], [68.26, 79.45], [83.93, 107.43], [139.88, 158.91], [160.03, 208.15], [208.15, 223.81]], \"sentences\": [\"We see a ladies eye and noes up close.\", \" We see the lady in the desert spinning hula hoops and performing tricks.\", \" The lady hula hoops with 10 or so golden hula hoops.\", \" The lady spins the hoop on her hand then transfers it to her leg stretched upward and we see her in the gold hoops again.\", \" The lady spins her body in and out of the hoops and we see her in a handstand  with the hula hoop on her feet.\", \" She is in the gold hoops as they fall to the ground she then spins  many pink hoops from her hands to her feet and as a skirt.\", \" We see the ending credits.\"]}, \"v_yauw3CrvbtY\": {\"duration\": 186.45, \"timestamps\": [[1.86, 4.66], [39.15, 71.78], [71.78, 96.02], [97.88, 140.77]], \"sentences\": [\"A man in a white shirt is standing next to a swimming pool.\", \" A man is holding a camera filming him go up the stairs.\", \" He stands on a diving board and jumps into the pool below him.\", \" He gets out of the water and walks to give hugs to people.\"]}, \"v_y3r4IrZkgBo\": {\"duration\": 34.19, \"timestamps\": [[0, 9.75], [9.23, 34.19]], \"sentences\": [\"A woman is seen sitting on a tub with a towel wrapped around her and shaving her legs.\", \" She then laughs to the camera and runs out with a young boy pushing her to the floor.\"]}, \"v_cz20Wqx9d4Q\": {\"duration\": 149.79, \"timestamps\": [[0, 23.22], [23.22, 31.46], [32.95, 48.68], [54.67, 85.38], [86.13, 118.34], [118.34, 149.79]], \"sentences\": [\"Two men are sitting at a picnic table getting ready to arm wrestle.\", \" Various people are watching from the sides and the men begin to arm wrestle.\", \" A man is interviewed by the cameraman and shows off his biceps to the camera.\", \" Two men continue talking to the camera and eventually begin arm wrestling again.\", \" They play various matches of arm wrestling and interview a woman onlooker who also wants to arm wrestle.\", \" The man lets her win their arm wrestling match and the girl seems giddy.\"]}, \"v_1cccnJAK7TI\": {\"duration\": 66.08, \"timestamps\": [[0, 66.08], [0, 54.19], [28.75, 66.08]], \"sentences\": [\"A guy is tattooing a lady's upper arm.\", \" The lady is in pain.\", \" The guy whips with a white paper towel.\"]}, \"v_W6y6Vmk5edg\": {\"duration\": 90.65, \"timestamps\": [[0.91, 29.46], [29.01, 69.35], [54.39, 87.93]], \"sentences\": [\"A gymnast is seen leaning across a long beam and begins performing a gymnastics routine.\", \" The girl flips and tricks along the beam while others watch on the side.\", \" The woman continues moving along the beam and ends by jumping off the side and walking off the stage.\"]}, \"v_Z4biLo6k5fI\": {\"duration\": 136.16, \"timestamps\": [[0, 37.44], [25.87, 65.36], [42.89, 136.16]], \"sentences\": [\"The faucet showing is then a hand attached the hose and tighten the hose.\", \" A straw is attached to a tank.\", \" The woman is washing the dog with the hose in the bathtub.\"]}, \"v_kMYZWwZXx3E\": {\"duration\": 60.34, \"timestamps\": [[0.3, 19.01], [17.5, 44.65], [41.33, 57.63]], \"sentences\": [\"A camera pans all around a fence while text is being shown across.\", \" A person is shown in several shots spraying down the fence with a hose.\", \" In the end more clips are shown of the fence.\"]}, \"v_A6DBt7UgWEg\": {\"duration\": 208.56, \"timestamps\": [[0, 17.73], [18.77, 105.32], [108.45, 168.94], [172.06, 208.56]], \"sentences\": [\"A spinning disc with circles of color are shown, panning out a a film reel and the words films of india.\", \" A man is shown stretching before engaging in a tennis match in front of a crowd.\", \" He then speaks to the crowd amongst flashing cameras through a microphone.\", \" The man is occasionally shown playing tennis, then goes back to speaking to the group.\"]}, \"v_Gl3okOVEwgg\": {\"duration\": 129.66, \"timestamps\": [[0, 13.61], [12.97, 25.28], [25.28, 29.82], [31.12, 72.61], [73.26, 108.92], [108.27, 129.66]], \"sentences\": [\"A man is standing at the foot of a large wall.\", \" He is stretching and staring at it looking like he might climb it.\", \" He looks up and down before putting a foot on the base of the wall.\", \" He then starts to climb higher and higher.\", \" He scales the wall very methodically.\", \" He eventually get to the very top with relative ease.\"]}, \"v_-fuvIQpA-QQ\": {\"duration\": 198.11, \"timestamps\": [[0, 23.77], [28.73, 92.12], [101.04, 167.41], [174.34, 198.11]], \"sentences\": [\"A teen boy is standing in a kitchen, holding a pitcher and talking.\", \" He fills the pitcher with water at the sink.\", \" He then mixes a powder into the water, creating a drink mix.\", \" He ads alcohol, then drinks from the pitcher to test the flavor.\"]}, \"v_nXr1r26HZis\": {\"duration\": 47.28, \"timestamps\": [[0, 6.15], [8.75, 38.53], [41.6, 47.28]], \"sentences\": [\"A group of people are inside a building.\", \" They are playing a game of foosball together.\", \" They kick the figures back and forth, trying to win the game.\"]}, \"v_LslQvR_4bkk\": {\"duration\": 169.99, \"timestamps\": [[4.25, 33.15], [33.15, 98.6], [98.6, 137.7], [138.55, 161.49]], \"sentences\": [\"A man practice ice hockey throwing a disc with a stick.\", \" Then, the player scores in a game and he is congratulated by teammates.\", \" Other player talks and talks when score while men plays ice hockey.\", \" A player talks and teams are playing in the ice court, and players score.\"]}, \"v_1JEQbXJC85w\": {\"duration\": 223.86, \"timestamps\": [[0, 27.98], [29.1, 74.99], [80.59, 96.26], [97.38, 104.1], [105.22, 123.13], [126.48, 153.35], [154.47, 193.64], [195.88, 198.12], [201.48, 223.86]], \"sentences\": [\"A man in tshirt leans on a kitchen counter next to bags of ingredients.\", \" The man presents each separate ingredient and holds them up showing each one.\", \" A pan of sliced sausage and peppers cooks on a stove.\", \" A pot of soup boils.\", \" Ingredients sit next to the stove top and are being used to prepare the food.\", \" A bowl of sliced vegetables has the pans ingredients added in.\", \" A bowl of colander of pasta is added into to bowl and shaken.\", \" A bag of cheese is held up.\", \" The man speaks up close to the camera.\"]}, \"v_bJx4unQR6nU\": {\"duration\": 71.26, \"timestamps\": [[0, 71.26], [0.71, 71.26]], \"sentences\": [\"A woman talks in an office.\", \" The woman explains how she curls her hair.\"]}, \"v_aT-0XxCqV5E\": {\"duration\": 47.2, \"timestamps\": [[0, 25.49], [21, 45.78]], \"sentences\": [\"A large group of people are seen standing and sitting around a sand pit while a runner jumps inside it.\", \" The man is shown several times jumping with people measuring his jump afterwards and raking the sand.\"]}, \"v_UJfwaeMrZ7A\": {\"duration\": 25.33, \"timestamps\": [[0, 7.85], [8.23, 22.29], [22.42, 25.33]], \"sentences\": [\"A woman is on a concrete court outside.\", \" She is jumping across a chalk drawn hopscotch game.\", \" She goes back and forth over the puzzle twice.\"]}, \"v_nAkA1HfRwF8\": {\"duration\": 42.38, \"timestamps\": [[0.64, 18.43], [17.37, 42.38]], \"sentences\": [\"A man is seen doing flips on a soft floor while moving in slow motion.\", \" The man continues performing several tricks across the floor and ends with a title sequence across the screen.\"]}, \"v_AVL31l6H1uI\": {\"duration\": 15.07, \"timestamps\": [[0, 3.01], [3.16, 6.1], [6.1, 11.98], [12.21, 15.07]], \"sentences\": [\"A lady in a suit talks in a white room.\", \" We see a man washing a car with a towel.\", \" We see the car being rinsed with a pressure washer and the wheel is wiped.\", \" the emblem appears on the screen as suds slip down a car.\"]}, \"v_r6r4Q9jLFvs\": {\"duration\": 54.71, \"timestamps\": [[0, 18.87], [18.6, 37.75], [38.02, 54.71]], \"sentences\": [\"A man is standing in a room with three walls and a glass wall behind him hitting a ball with a racket.\", \"A series of words are then shown as well as a YouTube video.\", \"The next screen comes around with a large hot air balloon and animated cars.\"]}, \"v_rVRNX-fClE4\": {\"duration\": 83.2, \"timestamps\": [[0, 8.74], [8.74, 12.9], [12.9, 19.55], [19.55, 39.52], [39.52, 51.17], [51.17, 77.37], [77.37, 83.2], [6.66, 83.2]], \"sentences\": [\"A blurry object is shown and white text shows up that reads \\\"Fun Shoe Shine\\\".\", \" As the picture becomes more clear there is a small silver can with a screw on lid and the writing on the can say's \\\"Dr Martens AirWair\\\".\", \" A pair of shiny black boots are standing and their black shoelaces are tied and the text \\\"After\\\" appears on the front left area of the boot.\", \" A few angles of the boots are shown and various words pop up in front of them.\", \" A person is then seen wiping the boot down with a cloth and more texts show up.\", \" A close up of the silver can being opened by a hand is showing the contents in it and how to use the contents on a boot.\", \" The can is then screwed tight again and the texts \\\"See you next time\\\" ends the video.\", \" Pop up texts occur throughout the entire time.\"]}, \"v_U4UHEGNFyz8\": {\"duration\": 187.87, \"timestamps\": [[10.33, 15.03], [93, 108.97], [185.99, 187.87]], \"sentences\": [\"A person is riding a bike down a dirt track.\", \" A little boy wearing red is riding a small bike down the track.\", \" A person falls down at the end.\"]}, \"v_3jEnu5mEYA4\": {\"duration\": 176.84, \"timestamps\": [[0, 6.19], [6.19, 10.61], [10.61, 14.15], [17.68, 31.83], [31.83, 44.21], [44.21, 54.82], [54.82, 69.85], [68.97, 92.84], [92.84, 115.83], [115.83, 148.55], [148.55, 166.23], [166.23, 176.84]], \"sentences\": [\"Food sizzling in hot oil in a black skillet on the stove, a long stemmed spoon sits in the skillet.\", \" Onions are added to the skillet.\", \" the skillet is stirred and the spoon removed.\", \" Salt is added and stirred in.\", \" The skillet gently sizzles as the mix cooks.\", \" Spices are added to the skillet.\", \" The flame is visible as the skillet sizzles more vigorously, the skillet is stirred and the food is browning.\", \" 4 eggs are broken into the skillet.\", \" The mixture is stirred and left to cook.\", \" Pasta is poured and stirred in to the mixture from a sieve.\", \" It is left to cook more.\", \" It is now plated and fresh herbs are sprinkled on top.\"]}, \"v_TcGhRsPTTRE\": {\"duration\": 122.21, \"timestamps\": [[0, 36.05], [30.55, 94.1], [83.1, 120.37]], \"sentences\": [\"A man is seen walking around an area pointing to himself and speaking to the camera.\", \" The man then begins performing various martial arts moves and kicking towards the camera.\", \" The man continues moving around while the camera captures his movements.\"]}, \"v_hgzyQ_jHeJc\": {\"duration\": 143.06, \"timestamps\": [[0, 14.31], [15.02, 64.38], [65.09, 106.58], [106.58, 143.06]], \"sentences\": [\"A gymnast bows before walking up to the beam.\", \" He mounts the beam and begins to perform.\", \" He spins around the beam multiple times.\", \" He jumps off the beam in a finale.\"]}, \"v_-uICMT1yOcM\": {\"duration\": 105.94, \"timestamps\": [[0, 12.18], [13.77, 36.02], [42.38, 105.94]], \"sentences\": [\"A baby is sitting in a high chair.\", \" An ice cream pop goes into her mouth, and she chews a bite from it.\", \" She sticks out her tongue after every bite, licking at the air.\"]}, \"v_B-KSdR2ct00\": {\"duration\": 39.66, \"timestamps\": [[0, 31.93], [3.97, 4.96], [32.12, 37.68], [38.27, 39.66]], \"sentences\": [\"A woman is brushing her teeth.\", \" A woman approaches behind her.\", \" The woman stops brushing her teeth.\", \" A woman smiles really big.\"]}, \"v_Ds-LrRrLj9c\": {\"duration\": 95.46000000000001, \"timestamps\": [[0, 25.77], [25.3, 54.89], [54.89, 95.46]], \"sentences\": [\"A little girl wearing a brown bow is standing in front of the sink brushing her teeth.\", \"The little girl,then turns the water on and spits several times in the sink.\", \"Finally,she puts the brush down,rinses her mouth and dries it with a brown towel.\"]}, \"v_QLsdBUBpz_8\": {\"duration\": 29.19, \"timestamps\": [[0.44, 11.82], [9.63, 28.46]], \"sentences\": [\"A small child is seen sitting on top of a slide and looking back towards the camera.\", \" The boy then pushes himself backwards down the slide while turning over in the end and jumping off.\"]}, \"v_ri5WJu1K0ak\": {\"duration\": 176.01, \"timestamps\": [[0, 44.88], [42.24, 104.72], [91.52, 141.69], [118.81, 168.97]], \"sentences\": [\"A young girl is seen speaking to the camera and begins playing with her hair.\", \" She pins up her and puts put a headband in her hair.\", \" She then puts in more fake hair as well as doing her makeup.\", \" She points to the camera in the end and smiles.\"]}, \"v_8yFimnZ8XhA\": {\"duration\": 60.12, \"timestamps\": [[0, 30.36], [13.83, 27.05], [30.06, 60.12]], \"sentences\": [\"A girl is sitting in a tube surrounded by a large group of people also sitting on tubes.\", \" The camera pans around to the various people sitting in the tubes.\", \" The girl jumps out of her tube and finds herself swimming in the water.\"]}, \"v_MEbEcvzdytY\": {\"duration\": 174.03, \"timestamps\": [[9.57, 20.88], [20.88, 44.38], [44.38, 71.35], [71.35, 94.85], [94.85, 156.63], [156.63, 161.85], [161.85, 174.03]], \"sentences\": [\"A woman in a red workout shirt is talking about the benefits of an elliptical cross trainer.\", \" Another woman in a pink tank top is demonstrating the use of the elliptical.\", \" The woman in red continues explaining the use of the elliptical.\", \" Then a demonstration of how the legs must move on the elliptical is shown.\", \" The woman in red further explains benefits of the workout with an elliptical.\", \" The woman on the machine continues to show the viewers the correct way to exercising on the elliptical.\", \" The host then concludes the tutorial.\"]}, \"v_15vwVfNA99o\": {\"duration\": 175.75, \"timestamps\": [[0, 44.82], [46.57, 156.42], [160.81, 175.75]], \"sentences\": [\"a woman is sitting at a table in a fast food restaurant while eating.\", \" She continually speaks to nobody as she eats.\", \"She stands up and grabs her purse, continuing to talk and laugh as she leaves.\"]}, \"v_Io8EwPbNUbE\": {\"duration\": 84.15, \"timestamps\": [[0, 84.15], [4.63, 51.75], [33.24, 80.36]], \"sentences\": [\"A video tutorial is shown of a family doing dishes at a campsite.\", \"  Everything is thrown into two buckets.\", \"  One with soap and the other to rinse.\"]}, \"v_b40ECuGuck8\": {\"duration\": 105.78999999999999, \"timestamps\": [[10.05, 11.11], [13.22, 14.81], [15.34, 19.04], [24.33, 25.92], [28.03, 32.27], [32.8, 35.44], [44.43, 47.61], [48.66, 50.78], [56.6, 73.52], [73.52, 95.21], [95.74, 96.27]], \"sentences\": [\"Woman throws a throwing knife at board.\", \"  Three men throw knives.\", \"  Knives hit a board.\", \"  Two men throw throwing knives backwards.\", \"  Man throws throwing knife.\", \"  Woman throws throwing knife.\", \"  A man and woman throw throwing knives.\", \"  Man throws knife while laying down.\", \"  Man demonstrates techniques to students.\", \"  Dojo members practice techniques.\", \"  Dojo members bow to the man.\"]}, \"v_TakNLlCbjvw\": {\"duration\": 52.48, \"timestamps\": [[0, 3.67], [3.41, 5.77], [6.03, 52.48]], \"sentences\": [\"A child walks by a hopscotch pattern.\", \" The child puts her palms on the hopscotch pattern.\", \" The child hops on the hopscotch pattern.\"]}, \"v_lu1bVIcDn4c\": {\"duration\": 65.07, \"timestamps\": [[0, 4.23], [4.23, 6.51], [6.51, 26.68], [26.35, 37.74], [37.09, 53.36], [54.34, 65.07]], \"sentences\": [\"A young woman is standing behind a counter with a black skillet on it.\", \"In her hands,she is holding two onions then the video rapidly shows her with a tomato,rutabaga and a bag of Cathedral City mature cheddar.\", \"Next,she begins cutting each of the ingredients and adds butter to a skillet.\", \"After it is fried for five minutes,the mushrooms go in the pot and three eggs are cracked.\", \"The rest of the contents are added into a measuring cup then eventually all of the contents are poured into a frying pan.\", \"After sometime,an omelette is created and put on a plate along with two slices of toast.\"]}, \"v_deLpSUF1wio\": {\"duration\": 14.65, \"timestamps\": [[0, 3.66], [4.03, 12.75], [12.82, 14.65]], \"sentences\": [\"A boy is standing in the woods with another boy.\", \" He lights a fire, then throws it at a pile.\", \" The two boys stare at the pile while it burns.\"]}, \"v_G12fEYNjIR0\": {\"duration\": 48.83, \"timestamps\": [[0, 48.83], [14.41, 47.61], [10.99, 16.85]], \"sentences\": [\"Team USA Women are in the Olympics.\", \"Tracy,Natalie, Nicole,Allison and Debbie are group photographed in multiple scenes.\", \"As Team USA scores,the team mates hug.\"]}, \"v_zGwcX0S4DVA\": {\"duration\": 51.69, \"timestamps\": [[0, 51.43], [5.43, 51.43], [50.91, 51.69]], \"sentences\": [\"People are riding camels in the desert.\", \" People are walking alongside camels.\", \" A lady looks down and to the side of her camel.\"]}, \"v_RbbjYXAxaPI\": {\"duration\": 133.86, \"timestamps\": [[0, 133.86], [3.35, 28.78], [28.78, 132.52]], \"sentences\": [\"A large crowd sits in a theater clapping and watching.\", \" Two women are seen on stage dancing.\", \" One of the women shows her talent balancing swords on her different parts of her body.\"]}, \"v_W_LjBXWG7wI\": {\"duration\": 99.68, \"timestamps\": [[0, 18.94], [19.44, 63.3], [62.8, 99.68]], \"sentences\": [\"Several shots of beaches are shown and leads into women in bikinis playing a game of volley ball.\", \" The girls continue playing then sit on the sides and touch each other's legs.\", \" They then put lotion all over their legs and begins shaving their legs and holding the ball laughing in the end.\"]}, \"v_4x08i2_AYKo\": {\"duration\": 48.09, \"timestamps\": [[0, 7.21], [5.77, 15.39], [15.87, 31.26], [32.94, 48.09]], \"sentences\": [\"A man walks on stilts into a park.\", \" Turns to his right and walks pass a row of benches.\", \" The man speeds up then returns to his initial speed.\", \" The man reaches the park's sign and comes to a stop.\"]}, \"v_kXP1tgr476c\": {\"duration\": 65.2, \"timestamps\": [[0, 65.2], [1.3, 65.2], [60.31, 65.2]], \"sentences\": [\"This man is sitting outdoors polishing another man's shoes and neither one of their faces are shown.\", \" The man is sitting on the ground and he is using a brown towel to polish the man's shoes.\", \" He also puts liquid onto a small brush and he puts it on the man's shoes.\"]}, \"v_elW8E-9bCRQ\": {\"duration\": 153.6, \"timestamps\": [[0, 29.95], [29.18, 69.12], [69.12, 108.29], [108.29, 153.6]], \"sentences\": [\"Two very tall men in tuxedos are dancing outside of a store.\", \" People are standing back watching them do their dance.\", \" One of the men puts his foot out while the other turns him in circles.\", \" When the dance is finally over both men shake hands and wave to the crowd.\"]}, \"v_nM_6V_Z6IwI\": {\"duration\": 97.71000000000001, \"timestamps\": [[0, 7.33], [9.28, 35.18], [40.55, 97.71]], \"sentences\": [\"A man is in front of a mirror.\", \" He is covering his face in a white liquid substance.\", \" He then disappears for a while, and returns with a wet but clean face.\"]}, \"v_PLPUWZ7XZDo\": {\"duration\": 145.8, \"timestamps\": [[0, 145.8], [13.85, 73.63], [73.63, 75.09], [80.19, 98.41], [130.49, 142.15]], \"sentences\": [\"A woman is kneeling down on a blue mat.\", \" She grabs a while bar and holds it next to her.\", \" She puts the bar down and picks up a kettle bell.\", \" She lifts the kettle bell and puts it back down.\", \" She then picks it back up and lifts it up and down several times in front of her.\"]}, \"v_IWHN3TD8mMQ\": {\"duration\": 139.95, \"timestamps\": [[0, 18.89], [28.69, 40.58], [41.98, 51.08], [55.28, 65.08], [69.27, 97.26], [113.36, 123.85]], \"sentences\": [\"A woman introduces herself to the camera and begins to talk about the topic of the video, pasta.\", \" The camera shows the ingredients that go into cooking pasta.\", \" The woman drops salt in a pot of water and turns the burners on.\", \" Once, boiling, she adds the pasta in the pot.\", \" She stirs the pasta, and then empties the pot in a colander once the pasta is al dente.\", \" She returns the pasta to the pot and adds olive oil.\"]}, \"v_POafWgyeV0I\": {\"duration\": 169.81, \"timestamps\": [[0, 169.81], [1.7, 9.34], [11.04, 35.66], [92.55, 167.26]], \"sentences\": [\"A woman and male sports news reporter, report, during a live newscast, from behind a newscast table, on a story about the dangers of dodgeball in schools and whether or not a dodge ball hurts more than a soccer ball when hit with one or the other.\", \"  Two newscasters talk to each other from behind a newscast table.\", \"  The clip switches to display a series of video clips of different children playing dodgeball in gymnasiums and being hit by the dodgeball.\", \"  The woman reporter then takes a group of men out to a enclosed, paved area, outdoors, and proceeds to throw both a dodgeball and soccer ball at them, at which point several of the men display that they have been hit and hurt by both balls.\"]}, \"v_aG5kKRuw0Fk\": {\"duration\": 212.88, \"timestamps\": [[0, 113.89], [53.22, 212.88]], \"sentences\": [\"A large group of women are seen standing on a stage hitting drums while another group of men play behind them.\", \" The group continuously plays in front of a large crowd and ends with credits rolling along the screen.\"]}, \"v_ZJWLTokAJbo\": {\"duration\": 63.86, \"timestamps\": [[0, 21.07], [21.71, 47.57], [47.25, 63.86]], \"sentences\": [\"A young woman is shown exercising on a black elliptical.\", \" She continues exercising and a close up of the machine is shown.\", \"Finally,she takes a sip of her water as she finishes her brisk workout and then Golds Gym appears in the middle of the screen.\"]}, \"v_TQco5PWc2JU\": {\"duration\": 229.51, \"timestamps\": [[0, 68.85], [66.56, 181.31], [148.03, 227.21]], \"sentences\": [\"A man is seen speaking to the camera and leads into him with shaving cream.\", \" He then holds up a razor and begins shaving his face while old shots of movies are shown.\", \" The men continues shaving and ends with text across the screen.\"]}, \"v_Y4pyUctR49I\": {\"duration\": 42.05, \"timestamps\": [[0, 31.12], [31.33, 42.05]], \"sentences\": [\"A patient sitting in a hospital chair in a hospital room gets her nails done by a manicurist who is wearing a green blouse.\", \" The patient is listening to music as she is moving her feet to the rhythm of some music.\"]}, \"v_i887uArWX9w\": {\"duration\": 134.96, \"timestamps\": [[0, 134.96], [20.24, 22.27], [53.98, 61.4], [129.56, 130.91]], \"sentences\": [\"We see a game of Foosball being played.\", \" We pan up and see the players.\", \" We see the players on the left.\", \" A person spins the second from right bar.\"]}, \"v_C4V6fqELvPY\": {\"duration\": 1.58, \"timestamps\": [[0.03, 0.89], [0.56, 1.49]], \"sentences\": [\"A fast motion video shows a young boy beginning to climb across a set of monkey bars.\", \" The boy makes it across and jumps down while another person attempts right behind him.\"]}, \"v_9FJwDxnlW7Y\": {\"duration\": 38.15, \"timestamps\": [[3.82, 28.61], [3.82, 16.4], [16.4, 24.23], [24.23, 28.23], [27.85, 35.1], [34.91, 38.15]], \"sentences\": [\"A middle aged man is shoveling snow on a sidewalk while a medium sized brown dog chases the shovel.\", \" The man throws the snow and turns the other way to repeat the shoveling while the dog continues to chase the shovel.\", \" At the end of the sidewalk near a driveway a young woman in a black snowsuit lying on her stomach sees the dog chasing the shovel and laughs.\", \" The man now turns and runs down the sidewalk shoveling the snow again and the dog runs along with him.\", \" The man does not turn around and shovel the sidewalk again, but carries the snow in the shovel and walks away from the dog.\", \" The dog trails behind as if tired.\"]}, \"v_nGYqSqf0yCY\": {\"duration\": 198.11, \"timestamps\": [[0, 198.11], [30.71, 65.38], [30.71, 124.81]], \"sentences\": [\"People are standing on a stage.\", \" They start playing a game of rock paper scissors.\", \" Men standing in referee shirts are standing behind them.\"]}, \"v_AZrI6X2XAUU\": {\"duration\": 107.6, \"timestamps\": [[0, 44.12], [44.12, 107.6]], \"sentences\": [\"a blond little kid with large hair sits in a table and holds a contact eye and put the contacts on his eyes.\", \" little kid is talking to the camera and is in a table wearnig a red uniform putting contact lenses on her eyes.\"]}, \"v_WtBr459dWY4\": {\"duration\": 96.97, \"timestamps\": [[0, 32], [0, 32.97], [0, 96.97]], \"sentences\": [\"woman wearing a red shirt is holdgina ball and is trying to throw the ball to someone when somebody throw her a ball and now she gots two and throw them.\", \" man is holding a red ball and is walking in a wooden court and throw the ball.\", \" people are playing dodgeball in a roofedwooden gym.\"]}, \"v_PV5Y3NeR5yQ\": {\"duration\": 191.24, \"timestamps\": [[0, 70.76], [70.76, 161.6], [161.6, 191.24]], \"sentences\": [\"A girl is standing outside in the middle of the road doing tricks with a hula hoop,moving it around her hips and her arms.\", \"While she is performing,a woman is sitting behind her with her bags on the ground.\", \"When the girl is finished performing,she grabs a beanie,holds it up and then starts to ask for money from the crowd of people who was watching her.\"]}, \"v_kRBqJhxfWHc\": {\"duration\": 80.02, \"timestamps\": [[0, 62.41], [8.4, 62.41], [0, 80.02], [62.81, 80.02]], \"sentences\": [\"A woman in an orange shirt is drinking a glass of beer.\", \" The beer is pouring down the front of her shirt.\", \" People behind her are dancing.\", \" She finishes the drink and sets it down.\"]}, \"v_L73C-2b0yEw\": {\"duration\": 64.76, \"timestamps\": [[0, 15.87], [15.87, 31.41], [31.73, 63.14]], \"sentences\": [\"A man stand on front a table full of objects while people listen to the man.\", \" A woman exhibit granola bars and explains to people around the table.\", \" Then, a person put wax on skis with an electric small machine in a room full of skis.\"]}, \"v_aCJHnvM0Mkc\": {\"duration\": 34.71, \"timestamps\": [[0, 11.8], [11.63, 19.96], [19.61, 34.71]], \"sentences\": [\"A young Asian boy is standing in a living room with a mop in his hand.\", \"The boy bends down,picks up a spray bottle and squirts it on the floor.\", \"He then moves the broom back and forth and cleans the floor.\"]}, \"v_qcYRPEEitZU\": {\"duration\": 38.04, \"timestamps\": [[1.14, 37.65], [13.31, 30.24], [1.9, 30.24]], \"sentences\": [\"A woman sits in front of a large crowd while holding shaving cream and a razor.\", \" Another man is seen on stage shaving his face and the woman begins shaving her legs.\", \" The crowd cheers them on for the shaving competition.\"]}, \"v_mxY7J50ItrU\": {\"duration\": 30.86, \"timestamps\": [[0.77, 15.74], [9.26, 30.4]], \"sentences\": [\"A small group of people are seen standing side by side with one another punching a bag one after the other.\", \" Many people are then shown kicking the bags next to one another.\"]}, \"v_wkJWeSw8FSE\": {\"duration\": 20.95, \"timestamps\": [[0.52, 5.97], [6.18, 20.94]], \"sentences\": [\"A man stands lighting a stick with campers in the background and a fire blazing.\", \" He sticks the cone into the fire and the end of the stick begins to catch fire.\"]}, \"v_xATeffo_kP4\": {\"duration\": 231.81, \"timestamps\": [[0, 104.31], [97.36, 231.81]], \"sentences\": [\"A close up of a fooseball table is shown as well as people playing on the table.\", \" The game continues on as the people use the bars to move the game as the ball moves back and fourth.\"]}, \"v_jCd-VeMUwRg\": {\"duration\": 161.05, \"timestamps\": [[0, 22.55], [31.41, 82.14], [86.97, 161.05]], \"sentences\": [\"A group of people are wearing snorkeling gear in the edge of the ocean water.\", \" They are then seen under the water, exploring and looking at fish.\", \" They reach out to touch the fish as they swim by.\"]}, \"v_n1KeC6NXPUA\": {\"duration\": 89.24, \"timestamps\": [[0, 89.24], [4.91, 42.39], [50.86, 54.43]], \"sentences\": [\"A girl is playing on a playground.\", \" She goes backwards on the monkey bars.\", \" She shows her hands to the camera and continues talking.\"]}, \"v_aivuk1LvDv8\": {\"duration\": 130.92, \"timestamps\": [[0, 33.38], [33.38, 51.06], [51.06, 123.71], [123.71, 130.92]], \"sentences\": [\"A woman is playing a classical song on the piano in a black and white film.\", \" She begins to speed up the pace of the music she is playing.\", \" The camera shows her playing the piano from overhead.\", \" The audience applauds for the woman and the video ends.\"]}, \"v_GWRqx0obKzA\": {\"duration\": 64.74, \"timestamps\": [[5.18, 5.83], [5.83, 9.06], [13.27, 17.16], [14.89, 15.54], [21.04, 36.9], [38.2, 41.76], [44.67, 51.14], [52.11, 55.03]], \"sentences\": [\"A group pose smiling for the camera.\", \" A group wave to the camera while more people in the background walk through the water.\", \" The group go rafting on the water.\", \" They wave again to the camera.\", \" The group are shown in their raft as they sail along the river.\", \" They are shown taking a break in the river.\", \" POV footage from one of the rafters.\", \" The group is out of the river and hiking.\"]}, \"v_nStBfiFl6RU\": {\"duration\": 171.92000000000002, \"timestamps\": [[0, 171.92], [49.86, 65.33], [85.1, 97.99]], \"sentences\": [\"A group of women dance in an aerobic class in a group inside a gym studio.\", \" The women jump up and down on alternating feet.\", \" The woman walk one way taking a few steps then back the other way during the routine.\"]}, \"v_s__e_v6aaq0\": {\"duration\": 30.02, \"timestamps\": [[0, 4.35], [5.55, 18.77], [19.37, 30.02]], \"sentences\": [\"A little boy is inside a living room.\", \" He is pushing and pulling a large vacuum cleaner.\", \" He is vacuuming the large living room rug.\"]}, \"v_xWxpAaPhknA\": {\"duration\": 163.1, \"timestamps\": [[0, 163.1], [57.08, 62.79], [90.52, 92.97]], \"sentences\": [\"People are jumping off diving boards into the pool below them.\", \" They are walking up a set of stairs to get to the diving board.\", \" A person does a back flip into the water.\"]}, \"v_b7Q-Jj9ZEH0\": {\"duration\": 90.91, \"timestamps\": [[0, 28.18], [25, 65.45], [62.27, 90.91]], \"sentences\": [\"The little girl slide down the yellow slide and fell on the  pool of balls.\", \" The girl reach out the a hand as she climbs on the top of the slide.\", \" The girl slide down again and fell on the pool of ball but on her stomach.\"]}, \"v_N7kI8J6vfL8\": {\"duration\": 80.76, \"timestamps\": [[0, 80.76], [7.27, 76.72], [77.13, 80.76]], \"sentences\": [\"Girls are going down a small red slide.\", \" A man in a red shirt is standing behind them.\", \" He walks away towards the house.\"]}, \"v_iIhEO_NA8gk\": {\"duration\": 221.1, \"timestamps\": [[0, 27.64], [27.64, 81.81], [81.81, 113.87], [114.97, 221.1]], \"sentences\": [\"A young girl is outside running down the road between a forest and then ends up in the airport.\", \"She is sitting down playing on her iPad and then begins to board an airplane.\", \"The plane lands and she is in a cabin and begins skiing at a resort.\", \"As she is skating,she changes her skis and the screen is covered with a grey static like film and the person continues with her snow activities.\"]}, \"v_mZ6iJfRokTw\": {\"duration\": 132.59, \"timestamps\": [[0, 8.62], [12.6, 67.62], [77.56, 116.68], [118, 132.59]], \"sentences\": [\"A man is floating in the ocean water talking.\", \" He then talks to a group of people while drinking an energy drink.\", \" He bungee jumps off the side of a bridge.\", \" He is talking to the camera as he swings above the water.\"]}, \"v_bULPHJydFTQ\": {\"duration\": 89.19, \"timestamps\": [[0, 11.15], [11.15, 21.85], [21.41, 28.99], [30.77, 43.26], [48.16, 59.76], [57.97, 66.45], [67.78, 89.19]], \"sentences\": [\"We see a locker room, and the title screen.\", \" We see a man winding up to throw the hammer in track and field on his third attempt.\", \" After it's thrown we see men measuring the distance.\", \" We then see his fifth attempt and the measuring.\", \" We then see his sixth attempt and measuring.\", \" The camera zooms in on the man as he shakes another mans hand.\", \" We then see 8 men standing on platforms holding plaques.\"]}, \"v_J6ScF5n_Cug\": {\"duration\": 136.19, \"timestamps\": [[0, 64.01], [64.69, 71.5], [72.18, 130.74], [131.42, 136.19]], \"sentences\": [\"A young girl plays the clarinet.\", \" The girl pauses for a second to flip her music sheet standing in front of her.\", \" The young girl resumes playing her clarinet.\", \" The girl stops and looking pleased with her performance.\"]}, \"v_N4wKdmmX0lk\": {\"duration\": 38.82, \"timestamps\": [[0, 0.97], [1.16, 30.48], [30.67, 38.82]], \"sentences\": [\"A woman takes a few steps with a pair of jumping apparatus.\", \" The woman begins jumping around rapidly.\", \" The woman is joined by a man who is also jumping around in a pair of jumping apparatus.\"]}, \"v_lUk_dSjmIgM\": {\"duration\": 103.38, \"timestamps\": [[0, 103.38], [58.92, 65.13], [87.35, 94.07]], \"sentences\": [\"A young girl is cleaning the sink.\", \"  The girl gets her shirt all wet.\", \"  The girl points to the drain of the sink.\"]}, \"v_bcOFV26B3jk\": {\"duration\": 20.53, \"timestamps\": [[0, 1.03], [1.03, 1.95], [1.95, 6.06], [6.06, 20.53]], \"sentences\": [\"A lady kicks a ball in a field.\", \" The lady picks up the baby.\", \" The lady runs across the screen.\", \" The camera pans left and right to show the crowd standing around.\"]}, \"v_WElK913B33U\": {\"duration\": 169.11, \"timestamps\": [[2.54, 67.64], [67.64, 92.17], [92.17, 100.62], [102.31, 133.6], [136.98, 166.57]], \"sentences\": [\"A man and a woman works out the a cardio machine.\", \" The stride length of the pedal is displayed in the screen.\", \" Then, the man comes to meet the woman that exercise.\", \" Then the man exercise, and the muscles of the abdomen are shown.\", \" The steps of the machine and the screen panel is shown.\"]}, \"v_OmIcycXGkG8\": {\"duration\": 162.26, \"timestamps\": [[0, 93.3], [93.3, 97.36], [97.36, 162.26]], \"sentences\": [\"A girl and a boy play ping pong in a basement type room with a ping pong table and  florescent lights for lighting.\", \" The boy walks up to the camera for a close up.\", \" The boy and girl begin to play ping pong again.\"]}, \"v_HUvBb3Hmir8\": {\"duration\": 236.29, \"timestamps\": [[0, 94.51], [57.89, 199.66], [146.5, 236.29]], \"sentences\": [\"The young girl in gray shirt is brushing the thong, while the female in blue t-shirt is washing the pans, and the other girl is holding a sponge.\", \" The older girl in blue is washing the knife, while the other one is wiping the bowl.\", \" The girls put the clean dishes on the rack to dry it.\"]}, \"v_y20J3BbydOk\": {\"duration\": 141.11, \"timestamps\": [[0, 141.11], [30.34, 140.4]], \"sentences\": [\"kids are gathered around a wooden table in a kitchen.\", \" woman is cutting oranges and showing it to kids and squeezing it in a glass in the table.\"]}, \"v_dojDT4CtenU\": {\"duration\": 76.98, \"timestamps\": [[0, 5], [5.39, 37.33], [39.64, 58.12], [58.5, 76.97]], \"sentences\": [\"A group of athletes are shown standing on a mound, while one throws a ball to another player.\", \" The batter hits the ball into the stands and the moment is recaptured in 3-d.\", \" A reporter comments how amazing the hit was and replays it from various angles.\", \" The player is interviewed by a reporter and once again has his moment shown on tv.\"]}, \"v_cpy_BFGQoQ8\": {\"duration\": 93.6, \"timestamps\": [[0, 14.51], [14.51, 41.18], [41.18, 65.99], [65.99, 93.6]], \"sentences\": [\"Inside of a rock climbing store men are gathered around a jumping on a rope.\", \" The man in the green does some tricks and then a man in a hoodie jumps and walks on it.\", \" Someone has a camera  and everyone is scattered around doing their own thing.\", \"  The man in the green continues to jump on the rope until he take it down.\"]}, \"v_pq2xsK79FcQ\": {\"duration\": 42.87, \"timestamps\": [[0, 19.72], [19.93, 26.15], [26.15, 30.86], [30.43, 34.51]], \"sentences\": [\"A track and field long jumper from the Florida Gators dressed in blue and orange prepares to make his run while other participants, coaches and officials congregate around the track and field  course.\", \" The Florida Gator long jumper begins his run with a gradual forward walk then a skip and a fast sprint to the sand pit jumping marker.\", \" The Florida Gator long jumper jumps and flies through the air and lands in the sand.\", \" The camera pans to the score board showing the long jumpers results.\"]}, \"v_Tz5eN8gV6F4\": {\"duration\": 163.19, \"timestamps\": [[0, 22.03], [22.03, 93.02], [92.2, 159.93]], \"sentences\": [\"An intro starts and leads to a woman standing next to a German Sheppard on a table.\", \" A fast motion watch around of the shop occurs then shows the woman brushing the dog with several instruments.\", \" She pets the dog a bit while continuing to brush him and talking to the camera.\"]}, \"v_15HUSdsIHxg\": {\"duration\": 116.87, \"timestamps\": [[0, 75.38], [75.38, 89.99], [50.25, 57.85], [89.4, 110.44], [111.02, 116.87]], \"sentences\": [\"Little girls performs holding sticks moving around an spinning the sticks.\", \" The little girls hold the sticks up and jump turning around.\", \" Two women walk toward the door.\", \" After, the little girls spins on the floor, then continue jumping and spinning around.\", \" Next, the girls get together to salute.\"]}, \"v_2x-Xqt98Ek4\": {\"duration\": 139.44, \"timestamps\": [[0, 78.78], [79.48, 135.25]], \"sentences\": [\"A man plays tam-tam, and then he talks with crossed hands on a tan-tam.\", \" Then, the man plays tam-tam with his right hand and plays with sticks with the left hand.\"]}, \"v_E-XerA_sOjw\": {\"duration\": 54.57, \"timestamps\": [[0, 12], [12.28, 22.37], [22.37, 54.57]], \"sentences\": [\"A man walks out onto a playing field with a large Dalmatian.\", \"  The man stops and throws the frisbee and returns it to the man.\", \" The dog runs around in circles on the field with the frisbee.\"]}, \"v_Tvzd_WIvBU4\": {\"duration\": 68.03999999999999, \"timestamps\": [[0, 68.03], [10.55, 68.03]], \"sentences\": [\"A person is cutting cordwood using a log splitter.\", \"  The wood remaining is shown and stumps are cut up.\"]}, \"v_lgwDuuJy2zY\": {\"duration\": 151.91, \"timestamps\": [[0, 39.5], [43.29, 102.54], [104.05, 146.59]], \"sentences\": [\"A camera pans all around a lake and shows a person riding around on a canoe.\", \" The person gets stuck before a rock and finally paddles themselves past.\", \" The person continues to get stuck around the area but moves down successfully.\"]}, \"v_di8Vr1fzUh8\": {\"duration\": 121.52, \"timestamps\": [[0, 14.58], [12.76, 61.37], [53.47, 95.4], [53.47, 121.52]], \"sentences\": [\"The man in suit is talking to the camera as people are behind him.\", \" The older man throw his darts on the dartboard and three darts landed on one place.\", \" The man positioned himself then throw the darts in the board and the darts are away from each other.\", \" The man continue to hit the board with darts.\"]}, \"v_XoeGnEtEq3U\": {\"duration\": 218.99, \"timestamps\": [[0, 112.78], [74.46, 218.99]], \"sentences\": [\"The camera pans around a large group of women sitting in chair knitting and speaking to one another.\", \" Several shots are shown of women knitting and leading back into people helping one another knit and more pictures shown.\"]}, \"v_2FRzNpVz6f8\": {\"duration\": 56.5, \"timestamps\": [[0, 7.06], [7.63, 39.26], [42.09, 56.5]], \"sentences\": [\"A bunch of teammates are riding horses on the field.\", \" They are playing a game of polo.\", \" The people run on their horses, trying to hit the ball.\"]}, \"v_aXI9v77XV7A\": {\"duration\": 141.27, \"timestamps\": [[0, 11.3], [11.3, 25.43], [50.15, 55.1], [72.05, 91.12], [72.05, 141.27]], \"sentences\": [\"A man is talking in front of a rock climbing wall.\", \" He starts climbing the rock climbing wall.\", \" A man in a yellow hat is talking.\", \" He climbs up the wall.\", \" Several people are climbing up the rock climbing wall.\"]}, \"v_XnBUb3qoFQM\": {\"duration\": 188.77, \"timestamps\": [[0, 17.93], [18.88, 24.54], [24.54, 58.52], [58.52, 188.77]], \"sentences\": [\"A man wearing black bathing trunks sitting on an inner tube as it slides down a tubing slide.\", \" A man wearing dark trunks stands on an enclosed water slide ride at a water park.\", \" Two men slide down a blue water slide at a water park and end up in a huge swimming pool.\", \" Different scenes of a group of people swimming in different parts of a water park.\"]}, \"v_5deGCvJOGg0\": {\"duration\": 198.93, \"timestamps\": [[29.84, 49.73], [49.73, 52.72], [52.72, 57.69], [57.69, 144.22], [144.22, 157.15], [157.15, 168.09], [168.09, 184.01], [184.01, 192.96]], \"sentences\": [\"A man dressed in white curling gear is participating in the sport.\", \" He goes on the curling rink with his stick and rock.\", \" He is playing the sport while in another location there are two musicians performing.\", \" They are both singing as one musician is playing a guitar and the other is drumming a tambourine.\", \" The man continues to play curling on the ice rink as he pushes the rock with his curling stick.\", \" He is shown pictured with another young man.\", \" He is posing for pictures with different people while holding a broomstick in his hand.\", \" He is back in the curling rink, singing and twirling the curling stick in his hands.\"]}, \"v_-4WdzYpCJPU\": {\"duration\": 203.36, \"timestamps\": [[12.2, 58.97], [61.01, 147.44], [160.66, 203.36]], \"sentences\": [\"A man is standing at a table holding a bow in his hand talking.\", \" He then goes outside and shoots an arrow at a target.\", \" A close up of the bow is shown.\"]}, \"v_n_hNYA5kWME\": {\"duration\": 192.45, \"timestamps\": [[0, 10.58], [11.55, 192.45], [78.9, 83.71], [124.13, 140.49]], \"sentences\": [\"We see a blue opening screen.\", \" We then see people solving Rubiks cubes in a competition.\", \" A boy finishes, throws his arms up and spins in his chair.\", \" We see a boy throw his arms and yells.\"]}, \"v_poFH53rF9uY\": {\"duration\": 131.05, \"timestamps\": [[0, 13.76], [14.42, 95.01], [110.08, 131.05]], \"sentences\": [\"A team prepares to play a game called hurling.\", \"  Highlights of a game are shown and players are interviewed.\", \"  Teammates cheer from the sidelines.\"]}, \"v_vREBYOCUCj0\": {\"duration\": 111.53, \"timestamps\": [[7.25, 23.98], [24.54, 94.8], [94.8, 100.93]], \"sentences\": [\"A man in a blue coat is standing in the snow talking.\", \" He begins skiing down a hill of snow.\", \" He continues talking to the camera.\"]}, \"v_YuCMWTdK_DY\": {\"duration\": 30.19, \"timestamps\": [[0, 6.79], [6.34, 20.83], [17.36, 29.58]], \"sentences\": [\"A man is seen walking into a circle and looking off into the distance.\", \" The man stretches a bit and begins spinning himself around.\", \" He continues to spin and ends by walking away.\"]}, \"v_lXueRLwe3tk\": {\"duration\": 151.49, \"timestamps\": [[9.85, 121.95], [21.21, 40.14], [32.57, 70.44], [41.66, 96.19], [49.99, 78.02], [63.62, 90.13], [78.77, 96.95], [123.46, 141.64]], \"sentences\": [\"The man in blue shirt is holding a white spray bottle with green and black lid on it.\", \" He started spraying the contents of the bottle on the white car's hood.\", \" He wiped the hood and the back of the white car with a yellow cloth.\", \" He vacuum the floor of the car on the driver's side, wipe the dirt off the steering wheel using the yellow cloth.\", \" He wiped the meters, the side window and glass and the wheel.\", \" He is showing a white spray bottle with black lid, while he is holding a yellow cloth.\", \" He is wiping the edge of the car then showed the white spray bottle.\", \" A white car is shown being dirty and then the after where it is clean and shiny.\"]}, \"v_RW-nnJiVPsU\": {\"duration\": 161.05, \"timestamps\": [[0, 22.55], [22.55, 48.32], [49.12, 86.97], [87.77, 122.4], [122.4, 123.21], [124.01, 145.75], [145.75, 147.36], [148.17, 161.05]], \"sentences\": [\"A man puts on welding safety gear.\", \" The man starts welding something on a metal table.\", \" He stops welding, lifts his face mask and adjusts things in the table.\", \" He then lowers his face mask and starts welding again.\", \" He stops and lifts his mask again.\", \" He uses a tool to hit something on the table before sanding it.\", \" The man pulls off his gloves while walking to the camera.\", \" He brings the camera to the table to show the work he has done.\"]}, \"v_43gst-Mw43s\": {\"duration\": 75.37, \"timestamps\": [[0, 20.73], [20.73, 44.09], [44.09, 75.37]], \"sentences\": [\"a comic of a man telling how to wash with a detergent.\", \"a house is shown with a sentence of how to wash the rooftop.\", \" the numbers and address are shown in the advertising.\"]}, \"v_-y5p8UMdM20\": {\"duration\": 141.11, \"timestamps\": [[0, 47.98], [28.93, 103.01], [90.31, 138.99]], \"sentences\": [\"Several shots are shown of signs and building as well as pictures of divers.\", \" Many people are seen speaking to the camera while taking turns diving off a board.\", \" More clips are shown of people diving and waving to the camera as well as speaking to one another and holding up a score.\"]}, \"v_vy5IRxiudmI\": {\"duration\": 54.99, \"timestamps\": [[0, 5.5], [5.77, 41.24], [42.06, 54.99]], \"sentences\": [\"A group of people are inside a gym.\", \" They are lifting weights and dancing.\", \" Others are using recumbent bikes and pedaling quickly.\"]}, \"v_FBANd818hU4\": {\"duration\": 221.71, \"timestamps\": [[3.33, 44.34], [44.34, 70.95], [72.05, 182.91], [182.91, 213.95]], \"sentences\": [\"A man kicks a soccer ball, then he plays with other young men in the street, the man scores.\", \" Then, they continue playing and the young man scores, as well the man scores.\", \" Teams are playing indoor soccer and the man wearing a yellow t-shirt scores playing with several teams.\", \" The man dispute the ball with other player and kick it to a playmate, the man continues playing an scoring for his team.\"]}, \"v_W6Sz8ajVsjc\": {\"duration\": 149.12, \"timestamps\": [[7.46, 9.69], [9.69, 11.18], [11.18, 116.31], [116.31, 144.65]], \"sentences\": [\"There's a man in a black shirt representing Pev's Paintball talking about the recreational game.\", \" He is holding a paintball gun in his hand as he talks about how the sport is played.\", \" A man dressed in a camouflage print outfit is hiding and running with a paintball gun.\", \" The Pev representative is explaining the features of the paintball gun and how to use if effectively.\"]}, \"v_olFThb2_GHM\": {\"duration\": 176.98, \"timestamps\": [[0, 15.93], [15.93, 59.29], [61.94, 115.92], [117.69, 176.98]], \"sentences\": [\"We see a man preparing to throw the discuss.\", \" He throws and walks away and we see it in slow motion.\", \" We see the next man walk up and throw and we see it again.\", \" A guy in yellow shorts throws and we see it again.\"]}, \"v_tjDOXnDswdA\": {\"duration\": 45.0, \"timestamps\": [[0, 7.88], [9.68, 35.1], [34.88, 44.55]], \"sentences\": [\"A person's hands are seen holding a rube and spinning it around.\", \" The person turns the cube all over it's sides while attempting to solve the puzzle.\", \" The man connects all the sides and shows it to the camera.\"]}, \"v_pXeVR0bf4Pk\": {\"duration\": 198.46, \"timestamps\": [[0, 8.93], [11.91, 18.85], [20.84, 38.7], [47.63, 170.68], [179.61, 198.46]], \"sentences\": [\"A man stands up in a raft.\", \" Several rafts are on the ground, filled with people.\", \" They listen to an instructor tell them what they need to do.\", \" They raft through the rapids of a heavily flowing river.\", \" One of the rafts capsizes at the end.\"]}, \"v_7I6v9c00aRA\": {\"duration\": 31.12, \"timestamps\": [[0, 3.27], [3.27, 24.43], [24.43, 27.54]], \"sentences\": [\"A man floats in calm water and holds onto a rope while waiting for the boat to drive.\", \" The man bare foot skis on a rope off the side of a boat attempting to stand up.\", \" The man stands up and immediately falls into the water at high speed.\"]}, \"v_rInf05YA7ww\": {\"duration\": 66.21, \"timestamps\": [[0, 66.21], [1.99, 66.21]], \"sentences\": [\"people are playing futsal in a roofed gym.\", \" referee is watching the game running side to side.\"]}, \"v_vt46wY2Q9JQ\": {\"duration\": 54.66, \"timestamps\": [[0, 52.75], [2.19, 41.27], [53.84, 54.66]], \"sentences\": [\"Two men are decorating a Christmas tree.\", \" They are putting red ribbon around the tree.\", \" A dresser is shown at the end.\"]}, \"v_CI6cPLeVCTk\": {\"duration\": 8.99, \"timestamps\": [[0, 8.22], [2.88, 8.22], [4.9, 8.99]], \"sentences\": [\"Two people are seen sitting on swings outside.\", \" The people then begin moving back and fourth.\", \" The people continuously swing back and fourth on the swingset.\"]}, \"v_nE0_PaRBXeA\": {\"duration\": 36.22, \"timestamps\": [[6.7, 17.57], [17.57, 29.52], [29.52, 33.87]], \"sentences\": [\"There's a man in a blue shirt using the lat pull machine in a gym.\", \" There are a few other people running on the treadmill behind the man.\", \" He starts off by pulling the handles of the machine and then goes back and forth to exercise.\"]}, \"v_t8hx8ihRPGc\": {\"duration\": 172.78, \"timestamps\": [[0, 11.23], [16.41, 122.67], [128.72, 172.78]], \"sentences\": [\"A boy is shown going down a slide.\", \" A woman is talking to the camera at the park.\", \" Kids are shown playing on various equipment.\"]}, \"v_VcbMGRcN9Cc\": {\"duration\": 58.35, \"timestamps\": [[10.21, 39.68], [39.68, 54.85], [54.85, 57.77]], \"sentences\": [\"The video shows a slow motion of three people playing Foosball.\", \" There are two people standing on one side and a single player on the other side.\", \" They continue playing Foosball with each other.\"]}, \"v_o2hmponBzIE\": {\"duration\": 137.63, \"timestamps\": [[0, 37.16], [37.16, 137.63]], \"sentences\": [\"A small group of girls wearing costumes are seen walking out onto a gym floor and holding a pose in front of a large audience.\", \" The girls perform a dance routine with batons in their hand and end by lining up and walking away.\"]}, \"v_KlJqjBqpnjw\": {\"duration\": 112.9, \"timestamps\": [[0, 5.64], [8.47, 42.34], [45.72, 112.9]], \"sentences\": [\"A woman named Sapna appears in a photo.\", \" She is then seen demonstrating a variety of jump rope moves.\", \" She jumps forward and back, and side to side.\"]}, \"v_2GSSuYAWFc8\": {\"duration\": 125.78, \"timestamps\": [[0, 20.13], [22.64, 59.75], [64.78, 98.11], [109.43, 125.78]], \"sentences\": [\"Several pieces of belly button jewelry are shown.\", \" This is followed by a man disinfecting a woman's belly button.\", \" He then inserts a piercing using a clamp and a rod.\", \" The woman watches as the final studs are in place.\"]}, \"v_dL9mlqbG5CU\": {\"duration\": 219.13, \"timestamps\": [[0, 10.96], [10.96, 32.87], [32.87, 165.44], [113.95, 209.27], [164.35, 186.26], [210.36, 219.13]], \"sentences\": [\"A rock band is playing a rock song in a black an white environment.\", \" Several curlers are preparing for a curling match while the band plays.\", \" the band and the curlers are both on the ice interacting with one another.\", \" The video returns to the black and white environment where the curler and the band members are both singing.\", \" The video focuses on a woman getting ready to curl while the others watch.\", \" The video ends with the closing credits shown on the screen.\"]}, \"v_oKaNlV45bB8\": {\"duration\": 95.53, \"timestamps\": [[0, 19.11], [18.63, 67.35], [60.66, 94.57]], \"sentences\": [\"A young woman is seen brushing her tooth followed by close ups of a tooth brush.\", \" Shots are shown of her teeth close up as well as her still brushing.\", \" She continues brushing all along her teeth to demonstrate how it's done.\"]}, \"v_uaLMHEtFlNA\": {\"duration\": 175.61, \"timestamps\": [[0, 4.39], [8.78, 140.49], [143.12, 175.61]], \"sentences\": [\"A gopro ad appears on the screen.\", \" Someone wears the device as he uses a mower to mow his lawn.\", \" It is sped up as it shows every angle as he completes mowing the lawn, back and forth and going over the same spots until it is perfect.\"]}, \"v_vWNDj8KxmBg\": {\"duration\": 88.03, \"timestamps\": [[4.4, 36.09], [47.53, 86.71]], \"sentences\": [\"Several clips are shown of people performing flips and tricks in the middle of a floor while a light shines down in the middle.\", \" The kids continue spinning around one another and end by standing up together and falling down.\"]}, \"v_gdr6iVHHYcU\": {\"duration\": 134.98, \"timestamps\": [[5.4, 122.83], [43.87, 122.83], [53.99, 122.83]], \"sentences\": [\"Two women are in a room talking.\", \" A woman begins to put makeup on the other woman.\", \" She dabs the woman's face with a sponge.\"]}, \"v_p4qZGZenAoU\": {\"duration\": 213.42000000000002, \"timestamps\": [[0, 72.56], [96.04, 122.71], [131.25, 192.07], [202.74, 213.41]], \"sentences\": [\"A woman with her hair up in a towel introduces her video showing how she washes her face.\", \" She applies a moisturizer to her face while dancing around.\", \" She then dances in the living room with the moisturizer on.\", \" Finally, she returns to the bathroom and washes her face.\"]}, \"v_Xa1yH3vxlAk\": {\"duration\": 137.57999999999998, \"timestamps\": [[0, 45.4], [45.4, 137.58]], \"sentences\": [\"man is standing on side of car stuck in traffic.\", \" man holding bagpipes is walking in street between cars.\"]}, \"v_dPdeb0SgIw8\": {\"duration\": 192.12, \"timestamps\": [[0, 28.82], [28.82, 192.12]], \"sentences\": [\"A TV reporter is talking while shows a screen of a person playing hockey on ice.\", \" Then, the reporters talk and comment each other, while one of the man is on front a laptop.\"]}, \"v__3hVtPVXTmg\": {\"duration\": 45.86, \"timestamps\": [[0, 15.36], [14.68, 45.86]], \"sentences\": [\"A gymnast is seen running towards a set of uneven bars and performing a routine on the bars.\", \" She swings all around and jumps on the mat to end her routine.\"]}, \"v_-XCESzrIWXA\": {\"duration\": 171.19, \"timestamps\": [[14.55, 171.19], [75.32, 77.04], [152.36, 155.78]], \"sentences\": [\"People are playing soccer in an indoor soccer arena.\", \" Two of the men hug on the court.\", \" A person kicks a ball into the goal.\"]}, \"v_2RpAv3irv1c\": {\"duration\": 161.43, \"timestamps\": [[2.42, 37.94], [37.94, 125.11], [125.11, 159]], \"sentences\": [\"A woman sprays lotion and brush her hair.\", \" Then, the woman makes a braid with the front hair and fasten it with a pin.\", \" After, the woman makes a pony tail and spray lotion to her hair.\"]}, \"v_cuyD4bT4Bvc\": {\"duration\": 89.0, \"timestamps\": [[0, 10.24], [10.68, 25.37], [25.81, 33.38], [34.71, 89]], \"sentences\": [\"initial logo is shown and a web page.\", \" man is in a skate park in white skates.\", \" man is sitting in a tube and make tricks in a skate park, other man is sitting watching him.\", \" little kid is talking to someone and watching the man in skates doing the tricks in skate park.\"]}, \"v_NzJkKwzPqvk\": {\"duration\": 68.08, \"timestamps\": [[0, 9.53], [10.55, 43.91], [45.27, 68.08]], \"sentences\": [\"An older woman is using a cue to play pool.\", \" She shoots the ball and walks away.\", \" Then she bangs cues with another person.\"]}, \"v_hhN1647pP88\": {\"duration\": 195.12, \"timestamps\": [[0, 30.24], [45.85, 121.95], [135.61, 195.12]], \"sentences\": [\"a man is wearing a safety vest.\", \" He is working with tools and sand.\", \" He uses the sand to spread evenly against the walls.\"]}, \"v_U89hsv1dzuQ\": {\"duration\": 27.17, \"timestamps\": [[0, 27.17], [0.41, 27.17], [0, 26.76]], \"sentences\": [\"man is smoking a cigarrette in a dark street.\", \" man is wearing a white t shirt smoking a cigarrette and watching to the camera.\", \" man is in the night in a dark field smoking.\"]}, \"v_3svMy4Kfjd8\": {\"duration\": 116.97999999999999, \"timestamps\": [[0, 115.81], [23.98, 24.57], [32.17, 32.76]], \"sentences\": [\"A guy is water boarding in a body of water.\", \" The guy messes with his hair.\", \" The guy gives hands gesture.\"]}, \"v_aYfWH960W0Q\": {\"duration\": 99.43, \"timestamps\": [[0, 42.26], [25.85, 87], [87.99, 99.43]], \"sentences\": [\"An athletic woman is seen running down a track with a large group of people watching her on the sidelines.\", \" She continues running and finishes the race while collapsing on the ground in the end and breathing heavily while crying.\", \" She sits back up crying and another woman helps her up, ending with a short clip of a girl running.\"]}, \"v_At7fzSxdiCg\": {\"duration\": 43.61, \"timestamps\": [[0, 11.34], [11.34, 23.98], [23.98, 34.23], [34.23, 43.61]], \"sentences\": [\"A man is running down the track at a track and field competition.\", \" He begins to take some rapid steps to give himself so leverage for a jump he is trying to make.\", \" He takes off into the air as he begins the jump.\", \" He lands on the ground as he completes the jump.\"]}, \"v_o18RrUlR-0Y\": {\"duration\": 135.26, \"timestamps\": [[0, 49.37], [44.63, 135.26]], \"sentences\": [\"A man with long beard is talking in the camera while a hand is brushing the side of his beard, then he continue talking while in his back the TV is running, then he closed up his beard, showed a man in green and the kid sitting next to him.\", \" The man in green shaves the man's beard on the side then brushed it then continue to shave the long beard leaving the stubble.\"]}, \"v_IfpcrV_cwHI\": {\"duration\": 97.06, \"timestamps\": [[1.46, 31.06], [23.29, 70.37], [61.63, 95.12]], \"sentences\": [\"A close up of a pool table is shown followed by a man hitting the ball.\", \" The man the celebrates and shakes the hands of the opponent.\", \" He walks around the audience celebrating with them and walks back to his bag.\"]}, \"v_XxyTLG8B-Ns\": {\"duration\": 144.17000000000002, \"timestamps\": [[0, 8.65], [8.65, 144.17], [76.41, 144.17], [131.2, 144.17]], \"sentences\": [\"A man is talking to the camera as he gets ready to ride the bumper cars.\", \" The man rides around in the bumper car bumping in to the other people while the camera watches.\", \" The camera zooms in on the people for a closer look.\", \" The ride ends and the people get out of the bumper cars.\"]}, \"v_Koxtbgzexmw\": {\"duration\": 12.73, \"timestamps\": [[0.06, 12.6], [0.19, 0.89], [1.53, 6.43], [6.49, 12.53]], \"sentences\": [\"Two boys play ping pong across a large ping pong table outdoors while a third boy watches from the sidelines.\", \" A boy in a t shirt with a wing graphic on it hits the ball towards the other shirtless player.\", \"   The shirtless player returns the serve and the boy with the t-shirt misses the ball and has to pick it up and throw it to the other player for a re-serve.\", \"  The two begin playing again while the boy in the middle on the sidelines observes the game.\"]}, \"v_XkWO7aqcC8Y\": {\"duration\": 154.32, \"timestamps\": [[0, 22.38], [24.69, 124.23], [125.77, 154.32]], \"sentences\": [\"A man is outdoors, cutting wires off a stack of sheetrock.\", \" He moves the sheets, then muds the floors before laying them down.\", \" The man presses the large sheets onto the ground.\"]}, \"v_BO0vQ6ASVlo\": {\"duration\": 94.13, \"timestamps\": [[0, 11.3], [11.3, 30.59], [31.06, 46.13], [46.13, 90.37]], \"sentences\": [\"A man holds a frisbee next to a dog, then the dog jumps above the back of the man and grabs a frisbee.\", \" The man throws a frisbee and the dog runs to get it, after the man does tricks with the dog.\", \" A person lie down with his feet up, then the dog stand on his feet and plays with the frisbee.\", \" The man plays with the dog frisbee doing tricks and throwing the frisbee.\"]}, \"v_M7tUnCF9lU4\": {\"duration\": 40.43, \"timestamps\": [[0, 3.44], [2.22, 8.89], [8.29, 21.22], [13.54, 31.53], [13.54, 40.43], [34.77, 40.43]], \"sentences\": [\"A lady standing beside the slide is holding a little child on top of the slide.\", \" She looked inside the tunnel and moved the little kid to show him and wave at the person.\", \"The lady hold the child while she push him down the slide.\", \" The lady slide the kid up back to the top.\", \" The lady hold the child and pushed him down the slide.\", \" The child sat on the bottom of the slide while looking away.\"]}, \"v_9Cs3CYCMH2w\": {\"duration\": 67.13, \"timestamps\": [[0, 67.13], [29.2, 44.31], [41.28, 43.97], [44.98, 56.72], [57.73, 60.08], [61.09, 64.44]], \"sentences\": [\"Two people are jump roping outside on a patio.\", \" The boy leaves and the girls starts jump roping by herself.\", \" The girl does a hand stand.\", \" The boy starts jump roping by himself.\", \" The girl does a flip in the air.\", \" The boy does a flip in the air.\"]}, \"v_wsc5GIgVwN8\": {\"duration\": 172.73, \"timestamps\": [[0, 24.18], [24.18, 101.91], [101.05, 172.73]], \"sentences\": [\"Several people are shown in a back ground of lasers are portrayed as members on a team.\", \"A man from the team then comes along and starts to skateboard down the road in a community environment.\", \"As he continues skating,he moves to a more rural area with large mountains and field in the open and points begin to rack up in the corner of the screen.\"]}, \"v_Z-C5yMAUmM4\": {\"duration\": 74.19, \"timestamps\": [[0, 1.48], [1.48, 74.19]], \"sentences\": [\"A woman is sitting down taking a drink.\", \" She sets the drink down and starts talking.\"]}, \"v_MWdPh6J-YXM\": {\"duration\": 171.5, \"timestamps\": [[0, 6.86], [8.58, 30.87], [30.87, 89.18], [88.32, 96.04], [96.04, 96.9], [97.76, 120.05], [120.05, 144.92], [146.64, 156.93], [156.93, 162.07], [164.64, 167.22]], \"sentences\": [\"A man stretches in front of the camera.\", \" The camera cuts to scenes of the man on a small boat paddling.\", \" The camera cuts to scenes of various men paddling boats from various angles, with different backgrounds.\", \" The camera shows men putting boats away.\", \" The camera shows several men in a car.\", \" The camera shows quick clips of men exercising in a gym.\", \" The camera returns to scenes of men paddling boats.\", \" The camera cuts to accelerated footage of a car driving.\", \" The camera cuts to scenes of men relaxing and tossing a ball around.\", \" The camera cuts to a scene of a man sitting relaxing.\"]}, \"v_y7tActqdm9A\": {\"duration\": 146.94, \"timestamps\": [[0, 68.33], [63.18, 123.43], [123.43, 138.85], [139.59, 146.94]], \"sentences\": [\"Two wildebeests lock horns in a fight for dominance.\", \" The fight continues with the rest of the wildebeest herd looking on.\", \" The fight continues on as one wildabeast pushes the other away from the herd near a river.\", \" One wildebeest gives up and runs off as the other wildebeest chases.\"]}, \"v_JavaLreBqtI\": {\"duration\": 91.65, \"timestamps\": [[0, 91.65], [9.62, 16.04], [25.2, 37.12], [58.66, 64.16], [69.65, 72.86]], \"sentences\": [\"We see a lady sitting on a couch talking.\", \" The lady makes faces and claps her hands.\", \" We watch the lady pull rollers our out her braids.\", \" We see her hair up close.\", \" The lady makes a quote sign with her fingers.\"]}, \"v_NulnzF8avMI\": {\"duration\": 92.56, \"timestamps\": [[0, 6.94], [0, 92.56], [24.99, 27.3], [28.23, 35.17], [41.65, 46.28], [57.85, 92.56]], \"sentences\": [\"The gymnast gathers his focus, and mounts the pommel horse to begin his event.\", \"  The audience watches and cheers as the announcers give their commentary.\", \"  He goes up to a hand stand.\", \"  He picks up his speed once he comes back down from the hand stand.\", \"  The gymnast has a nice dismount.\", \"  We watch the performance again in slow motion then see his smile as he is seated afterwords.\"]}, \"v_UqE_T7oG1Gc\": {\"duration\": 196.05, \"timestamps\": [[0, 10.78], [10.78, 196.05]], \"sentences\": [\"woman is talking to the camera and holding makeup brushes.\", \" woman is shoing a braid on her hair and its shownig how to do the braid.\"]}, \"v_87fIi0-1JVM\": {\"duration\": 208.73, \"timestamps\": [[0, 14.61], [16.7, 59.49], [60.53, 99.14], [99.14, 121.06], [121.06, 208.73]], \"sentences\": [\"A girl travels in a car while talking.\", \" The girl is in a piercing shop, then a man rubs her nose with a tissue and put a mark.\", \" After, the man pierce the nose of the girl and puts a tip.\", \" After, the man cleans the area, and the girl dry some tears on her face.\", \" After, the girl holds a camera on front her face and talks, also shows her piercing.\"]}, \"v_8381XS5ZDNs\": {\"duration\": 68.82, \"timestamps\": [[0, 15.49], [27.87, 41.29], [41.98, 68.82]], \"sentences\": [\"A piece of exercise equipment spins around on a panel when a woman suddenly appears.\", \" She climbs on the machine and begins exercising while the camera pans around her movements.\", \" She continues to use the equipment and eventually shows a picture of the equipment.\"]}, \"v_8kyg5u6o21k\": {\"duration\": 165.26, \"timestamps\": [[0, 14.87], [14.87, 165.26]], \"sentences\": [\"boy is putting a helmet and is fixing his skateboard.\", \"boy is going down an slope passing by houses till is dark.\"]}, \"v_jXIKHEsmVl4\": {\"duration\": 30.07, \"timestamps\": [[0, 30.07], [2.26, 9.77], [9.77, 10.07], [12.93, 30.07]], \"sentences\": [\"A guy is outside chopping wood.\", \" The ax gets stuck on the wood on his first try.\", \" The guy pulls the ax out.\", \" The guy keeps cutting the wood smaller and smaller.\"]}, \"v_SpEdr2o2TP0\": {\"duration\": 198.6, \"timestamps\": [[27.8, 65.54], [89.37, 178.74], [175.76, 183.71]], \"sentences\": [\"A man and woman are talking in a stable.\", \" The man helps the woman on the horse and she leads it around the arena.\", \" The woman gets off the horse and talks to the camera.\"]}, \"v_iSHPVCBsnLw\": {\"duration\": 62.09, \"timestamps\": [[0, 26.39], [26.08, 59.92]], \"sentences\": [\"Two men are seen sitting on a couch watching tv and speaking back and fourth to one another.\", \" Another walks into frame speaking and holding a drink and the two men continue speaking to one another.\"]}, \"v_7m--xUKvqkc\": {\"duration\": 99.52000000000001, \"timestamps\": [[3.48, 7.46], [11.94, 92.55], [93.55, 99.52]], \"sentences\": [\"A hand holds a damp mop sign up to the camera.\", \" A person mops a floor, with the camera only picking up part of the person and the mop.\", \" The camera shows a close up of the mop head.\"]}, \"v_dKwPfFN7DpM\": {\"duration\": 90.51, \"timestamps\": [[0, 43.9], [30.77, 88.25]], \"sentences\": [\"A man is shown spinning in circles while throwing a shot put off into the distance.\", \" Several men are then shown over and over again throwing the object off into the distance in various locations.\"]}, \"v_800KXmqsK-w\": {\"duration\": 184.32, \"timestamps\": [[0, 28.57], [29.49, 48.84], [48.84, 117.96], [117.04, 184.32]], \"sentences\": [\"A group of people riding bumper cars.\", \" The attendant crosses the course dodging the bumper cars.\", \" The attendant hops onto a girls car and helps her maneuver the car.\", \" The attendant continues running across the course assisting drivers while the the other drivers continue to crash into each other.\"]}, \"v_3TVKXCyNObQ\": {\"duration\": 216.25, \"timestamps\": [[3.24, 49.74], [51.9, 64.87], [68.12, 83.26], [85.42, 169.75], [170.84, 204.35]], \"sentences\": [\"People skateboard down the road of a city.\", \" A group of teens meet on the road and watch a teen skateboard.\", \" A teen enters a skateboard ramp and skateboard around.\", \" A boy skateboards on a road passing a city and a field.\", \" Two teens skateboard on a road.\"]}, \"v_bW5HfDWUP3U\": {\"duration\": 137.46, \"timestamps\": [[0, 4.12], [6.19, 28.87], [28.18, 30.24], [31.62, 32.3], [32.99, 70.79], [66.67, 74.23], [75.6, 97.6], [99.66, 137.46]], \"sentences\": [\"A woman is sitting on the floor with her shoes off.\", \" The woman puts one shoe on.\", \" Something is thrown at the woman and she attempts to catch it.\", \" The camera briefly shifts right to show another individual.\", \" The camera returns to the woman still putting the shoe on.\", \" The camera shifts right to several individuals in the room, waiting for the woman to put her shoes on.\", \" The camera shifts back to the woman, still putting her shoe on.\", \"The woman begins putting the other shoe on.\"]}, \"v_SIj-ti_70HQ\": {\"duration\": 18.32, \"timestamps\": [[0, 8.15], [8.15, 18.32]], \"sentences\": [\"A woman stands in front of a mirror smiling and begins brushing her hair.\", \" She continues brushing her hair and looking at herself in the mirror.\"]}, \"v_oNqtuh6qa2E\": {\"duration\": 59.33, \"timestamps\": [[0, 5.93], [5.93, 34.41], [34.11, 59.33]], \"sentences\": [\"A man is standing outside on a sidewalk with a silver camera in his hand filming something.\", \"As the camera turns,the man is filming someone on a one-seater paddling as he is playing a bag of pipes.\", \"The man continues,and a gruop of people crowd around him and watch him until he falls off the wheel.\"]}, \"v__6mQ9_DQr0Q\": {\"duration\": 170.62, \"timestamps\": [[20.47, 23.89], [20.47, 152.71], [20.47, 151], [92.14, 92.99], [151.85, 153.56]], \"sentences\": [\"Man approaches the weights before him.\", \"  Man lifts up weights and drops them to the floor.\", \"  Man lifts up weights and holds them for a while.\", \"  Man shakes his hands in celebration.\", \"  Man screams in celebration.\"]}, \"v_B-60jGEds7M\": {\"duration\": 107.16, \"timestamps\": [[0, 37.51], [37.51, 63.22], [63.76, 107.16]], \"sentences\": [\"A boat sails in the choppy waters of an ocean.\", \" The big waves moves the boat up and down.\", \" A person stands on front the boat wearing dark clothes.\"]}, \"v_98MoyGZKHXc\": {\"duration\": 187.6, \"timestamps\": [[2.81, 45.96], [45.96, 116.31], [117.25, 133.19], [133.19, 169.77]], \"sentences\": [\"A man drives a car, the car stops with a flat tire.\", \" The man turn off the emergency lights, and then uses a repair kit to inflate the tire.\", \" Then, the man advance the car a little and the tire inflates.\", \" After, the man drives his car.\"]}, \"v_d8u6MM00_ig\": {\"duration\": 137.35, \"timestamps\": [[0, 10.3], [14.42, 30.9], [35.02, 137.35]], \"sentences\": [\"A large group of people are seen wandering around an arena when a man steps up to a weight.\", \" The man lifts the weight over his head and throws it on the ground.\", \" Several more men are seen attempting to lift the weight with others succeeding and cheering and others dropping the weight.\"]}, \"v_KfkNKhAWOII\": {\"duration\": 127.78, \"timestamps\": [[0, 15.97], [16.61, 24.28], [24.28, 127.78]], \"sentences\": [\"Graphics with \\\"FCC Presents\\\" followed by \\\"The Great Indoors with Tracy Briggs\\\" appear on screen.\", \" Briggs speaks to the camera from a kitchen.\", \" She begins preparing a potato and tomtatos to eat.\"]}, \"v_6rMF2jWbeUQ\": {\"duration\": 133.07, \"timestamps\": [[0, 35.26], [32.6, 105.79], [108.46, 130.41]], \"sentences\": [\"A woman is seen sitting in a wheelchair looking to the camera and wheels herself over to a side.\", \" She then puts her shoes on with another man's help while still smiling to the camera.\", \" She wheels herself away and claps in the end.\"]}, \"v_9zm9jW7_ANc\": {\"duration\": 210.35, \"timestamps\": [[0, 54.69], [0, 56.79], [0, 166.18], [0, 160.92]], \"sentences\": [\"The chef begins by removing and slicing the endive.\", \"The chef then places them in a bin,afterwards he slices and peels more.\", \"The chef then chops romaine and places them in a  silver  bin and mixes endive with the romaine.\", \"Finally he removes the salad mixture with a dressing on it from a round silver bowl and places the salad on a white plate.\"]}, \"v_7OTqYfUuAIw\": {\"duration\": 31.58, \"timestamps\": [[0, 6.32], [6, 23.69], [20.53, 30.16]], \"sentences\": [\"A young child is seen kicking around in the middle of a room.\", \" The kid kicks both of his legs around while the camera pans around.\", \" Another child is seen kicking on the side while a dog walks in and out of frame.\"]}, \"v_KYl67H9-4TA\": {\"duration\": 235.43, \"timestamps\": [[0, 37.67], [37.67, 235.43]], \"sentences\": [\"A small child wearing a wig is seen holding a violin and speaking to the camera.\", \" She then plays a song on the violin moving his arms and hands back and fourth and ends by speaking off into the distance.\"]}, \"v_8z29qtUWwdU\": {\"duration\": 189.78, \"timestamps\": [[0, 55.98], [52.19, 153.72], [153.72, 189.78]], \"sentences\": [\"A man is seen talking to the camera and presents his knife and sharpener.\", \" He then glides the knife down the sharpener and shows how other knives work with different sharpeners.\", \" He presents the knife one last time while still speaking to the camera.\"]}, \"v_MFlYmFZ7xlo\": {\"duration\": 34.78, \"timestamps\": [[0, 34.78], [5.22, 9.22]], \"sentences\": [\"A man is mopping a floor.\", \"  A woman is eating.\"]}, \"v_fjoaurNKg60\": {\"duration\": 225.15, \"timestamps\": [[32.65, 37.15], [38.28, 75.43], [90.06, 123.83], [124.96, 138.47], [166.61, 185.75], [192.51, 221.78]], \"sentences\": [\"A person washes there hands and closes a sink drain.\", \" The person removes a contact from the container and places on the tip of their finger.\", \" The person holds open one eyelid at a time and inserts the contact into their eye.\", \" A cleaner solution is sprayed into the container to clean it out.\", \" The contact lens is removed from the eye.\", \" Solution is sprayed on the contact lens resting in the palm of a hand before being placed back on the counter.\"]}, \"v_MkL-tApJgXc\": {\"duration\": 67.06, \"timestamps\": [[0, 4.36], [4.36, 44.59], [44.59, 60.69], [60.69, 67.06]], \"sentences\": [\"Text appears on the screen with regards to coffee possibly being bad for your health.\", \" It is then mention with text on the screen that it can lead to high blood pressure It is then mentioned that it can hurt your hair growth and that it doesn't have any vital nutrients in it.\", \" It is then shown that there are benefits and that one should moderate their intake to keep a balance.\", \" A website is then shown to get more information on this topic.\"]}, \"v_61sN9tqZHwk\": {\"duration\": 81.78999999999999, \"timestamps\": [[0, 3.68], [11.86, 35.17], [40.49, 81.79]], \"sentences\": [\"A series of masks are shown on a table.\", \" A yorkie dog is shown from several angles.\", \" We then see the dog winning competitions and getting groomed.\"]}, \"v_GEhtyurCwDQ\": {\"duration\": 197.56, \"timestamps\": [[0, 1.98], [1.98, 24.69], [24.69, 71.12], [71.12, 88.9], [89.89, 141.25], [151.13, 186.69], [187.68, 197.56]], \"sentences\": [\"We see an opening title screen.\", \" We see an electric shaver from various angles.\", \" The man unwraps the product and takes it out of the bag.\", \" The product is being taken out of it's packaging.\", \"The man shaves his hand then adds a guard and shaves his beard and the hairline in back.\", \" The man rinses the shaver and works on his neck.\", \" We then see the ending screen.\"]}, \"v_0AjYz-s4Rek\": {\"duration\": 81.85, \"timestamps\": [[0, 6.55], [6.55, 71.21], [71.21, 81.85]], \"sentences\": [\"A man and a woman dressed in snow clothing are walking in the snow and they begin to drill into the ice ground with hand held red crank long drills.\", \" When they make a hole in the ice they put their fishing wire attached with bait into the hole and begin ice fishing until the woman catches a fish.\", \" After they're done fishing, they are now at a wood fire and the fish is cooking on the wood.\"]}, \"v_8DIfyvX7H8Y\": {\"duration\": 227.49, \"timestamps\": [[0, 138.77], [0, 10.24], [147.87, 172.89], [172.89, 213.84], [213.84, 227.49]], \"sentences\": [\"A man works on a kite.\", \" Another man holding a baby holds up the kite's spool.\", \" A third man works on a similar kite while the second man holds a spool.\", \" The men fly the kites from a rooftop.\", \" The scene changes to a nighttime view of the sky with some unidentified light.\"]}, \"v_EsVxUf4Ae2c\": {\"duration\": 85.17, \"timestamps\": [[0, 7.67], [7.67, 31.94], [31.94, 50.25], [50.25, 61.32], [61.32, 73.67], [73.67, 85.17]], \"sentences\": [\"A man is standing on ice with his pole standing straight up beside him.\", \" The man grabs his fishing pole and starts fishing in the hole in the ice.\", \" The man appears to have caught something and kneels down to pull his fishing line by hand.\", \" The man pulls a fish out of the water and poses with it.\", \" The man unhooks the hook from the fish's mouth.\", \" The man kisses the fish and releases it back into the hole.\"]}, \"v_T6KP0pg7qxM\": {\"duration\": 112.99000000000001, \"timestamps\": [[13.56, 28.25], [19.77, 22.6], [64.97, 71.75]], \"sentences\": [\"A boy is sitting in a chair behind a counter.\", \" A girl comes up next to him and tries to feed him cereal.\", \" He starts throwing darts at a dartboard.\"]}, \"v_v8XN1ajGeIw\": {\"duration\": 152.28, \"timestamps\": [[0, 15.99], [19.8, 70.05], [70.81, 114.21], [115.73, 152.28]], \"sentences\": [\"A close up is shown of a very dirty floor being cleaned with a large vacuum.\", \" Words on the screen explain the strength of the vacuum as the person continues.\", \" The floor is being cleaned at walking speed.\", \" The man continues to demonstrate the usage until an ad for the company appears at the end.\"]}, \"v_zQCqzIgIpHI\": {\"duration\": 189.45, \"timestamps\": [[0, 28.42], [31.26, 39.78], [41.68, 53.99], [55.89, 189.45]], \"sentences\": [\"A view is seen of the outside of an airport, then the wing of the flying plane.\", \" A man is on the plane wearing a mask.\", \" Several people are sleeping in the dark quarters.\", \" They arrive at a ski resort, and ride the lifts before donning skis and skiing down treacherous hills.\"]}, \"v_K8ZPkLVlAiA\": {\"duration\": 91.98, \"timestamps\": [[0, 23.45], [23.91, 34.49], [34.95, 91.98]], \"sentences\": [\"A man is holding the arm of a canister vacuum in a vacuum showroom.\", \" The man lifts the arm and shows it to the camera.\", \" The man then pretends, then actually vacuums the linoleum floor with the vacuum.\"]}, \"v_ovTKJgSWMKQ\": {\"duration\": 208.03, \"timestamps\": [[0, 17.68], [22.88, 43.69], [57.21, 125.86], [127.94, 193.47], [196.59, 208.03]], \"sentences\": [\"Scores are shown on a screen in front of pool water.\", \" A man towels off in a room.\", \" He enters the competition, shaking hands after his dive.\", \" Between dives, the scoreboard is shown again.\", \" The final scene is of the man backflipping off the diving board.\"]}, \"v_X2zoUDI1Gmc\": {\"duration\": 211.36, \"timestamps\": [[0, 81.37], [76.09, 164.86], [156.41, 211.36]], \"sentences\": [\"A woman is seen smiling to the camera holding up a blow dryer and various attachments.\", \" She is then seen again with wet hair and then sprays liquid into her hair and then blow dries her hair more.\", \" She then pins her hair up, attaches and attachment to the blow dryer, and dries her hair all around, spinning to the camera in the end.\"]}, \"v_KKrHX-pywBQ\": {\"duration\": 193.45, \"timestamps\": [[8.71, 30.95], [30.95, 48.36], [48.36, 70.61], [70.61, 88.99], [88.99, 116.07], [116.07, 136.38], [136.38, 156.69], [156.69, 170.23], [170.23, 183.77], [183.77, 193.45]], \"sentences\": [\"A young man wearing a white shirt and helmet and black pants is holding a skateboard in his hands as he walks.\", \" He puts the skateboard down and begins skating on an asphalt road.\", \" He flips the skateboard several times and goes on circles.\", \" Two people walk past him as he continues to skateboard.\", \" The man begins to speed up on his skateboard as he goes down the road.\", \" He also skates past a lake on a long and winding road.\", \" He skates past a field and mountains that are filled with greenery.\", \" He tries various stunts and tricks on his skateboard.\", \" He continues to skateboard through the roads.\", \" He falls off the skateboard on the side of the road, but gets right back on it and skates away.\"]}, \"v_GvvmZ1Bi1xk\": {\"duration\": 22.66, \"timestamps\": [[0, 1.81], [1.81, 22.66], [7.82, 10.99], [19.49, 22.66]], \"sentences\": [\"We see a finger on the lens and a shoulder.\", \" A woman pushes a lawn mower through the grass.\", \" The lady lifts the mower and backs up.\", \"  The lady turns the mower.\"]}, \"v_lUX1nfb5rx0\": {\"duration\": 141.36, \"timestamps\": [[0, 19.08], [19.08, 74.92], [74.92, 141.36]], \"sentences\": [\"woman is standing in font of a counter and is talking to the camera.\", \" a clean sink is shown and a woman claing the surface of water and wine with a cloth and then with an sponge.\", \" the woman put a cleaner on a cloth and cleans the sink, then the woman is talking and a white table covers the sink.\"]}, \"v_WGpz-hV-Ejw\": {\"duration\": 78.02, \"timestamps\": [[0, 10.92], [15.99, 49.15], [51.49, 78.02]], \"sentences\": [\"A young girl is standing on a court with a jump rope.\", \" She begins jumping in front of a table of judges.\", \" She hops, spins, and flips with the rope.\"]}, \"v_lwXIgNoLGhM\": {\"duration\": 204.99, \"timestamps\": [[0, 11.27], [21.52, 38.95], [39.97, 44.07], [45.1, 77.89], [78.92, 110.69], [111.72, 126.07], [127.09, 140.42], [141.44, 176.29], [178.34, 193.71], [194.74, 204.99]], \"sentences\": [\"We see people in a field holding flags.\", \" We see people playing paintball in the woods.\", \" We see people in lines like soldiers.\", \" We see the people in the woods in paint ball gear.\", \" We see an empty metal tank.\", \" We see the people in the woods again.\", \" We see inside the tank.\", \" We see the people walking through the field.\", \" We see people running with smoke.\", \" We see a ending title screen.\"]}, \"v_XORmEz1vOeQ\": {\"duration\": 71.8, \"timestamps\": [[0, 6.82], [7.18, 30.87], [32.67, 71.8]], \"sentences\": [\"A man kneels down by a tree in a yard.\", \" He talks as he digs with his hands.\", \" He shows and instructs on how to apply and pack mulching around the base of the tree.\"]}, \"v_CYSyc4jy9-Q\": {\"duration\": 100.68, \"timestamps\": [[0, 9.56], [10.07, 41.28], [41.28, 54.37], [55.38, 71.48], [68.46, 70.98], [71.99, 89.1]], \"sentences\": [\"A person runs and jumps wearing bouncing shoes, and a man make a surprised face.\", \" People wearing bouncing shoes bounce and jumps in a gym, a presenter talks and also tries the bouncing shoes.\", \" A man bounce and jumps high in the beach, in the street.\", \" Then, men flip over wearing bouncing shoes, after a man plays basketball wearing bouncing shoes in a gym.\", \" A person rides a bike in the gym.\", \" Two men wearing bouncing shoes stand front to front in a TV set.\"]}, \"v_U0HiAZCgmd8\": {\"duration\": 67.06, \"timestamps\": [[2.01, 37.89], [27.16, 65.38]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her pouring ice into a glass followed by various liquids.\", \" She mixes the liquids back and fourth and ends by presenting the drink and putting in a lemon with straw.\"]}, \"v_rLH89pN9I84\": {\"duration\": 195.72, \"timestamps\": [[0, 26.42], [14.68, 108.63], [143.85, 146.79]], \"sentences\": [\"A woman walks out onto the grass.\", \" Two small dogs follow her on leashes.\", \" She bends down and the dogs come up to her.\"]}, \"v_e_y8_3siD0c\": {\"duration\": 15.79, \"timestamps\": [[0.24, 4.18], [3.32, 10.74], [10.9, 15.63]], \"sentences\": [\"A young child is seen standing ready before a game of hop scotch.\", \" The girl then begins hopping on the chalk.\", \" The girl hops all the way to the end and walks back to the screen.\"]}, \"v_yRjaK8wT4Rc\": {\"duration\": 103.1, \"timestamps\": [[15.46, 28.35], [29.9, 83.51], [100, 103.1]], \"sentences\": [\"A man is washing his hands in the sink.\", \" He takes a yellow rag and cleans the sink and faucet.\", \" A white bottle of cleaner is shown.\"]}, \"v_dyvB6XCWPZs\": {\"duration\": 220.64, \"timestamps\": [[24.27, 182.03], [78.33, 91.56], [129.07, 147.83], [184.23, 220.64]], \"sentences\": [\"People are rafting in rafts down a choppy river.\", \" People are jumping off a rock into the water.\", \" People are doing flips off the front of the raft.\", \" People are sitting on a boat pulling the rafts.\"]}, \"v_BSIV5tJ3bv4\": {\"duration\": 27.44, \"timestamps\": [[0, 9.6], [9.05, 27.44]], \"sentences\": [\"An athlete walks in front of a crowd rubbing his hands in powder and grabbing a weight set.\", \" He lifts the weights over his head and throws it down afterwards, raising his hands up with his coach.\"]}, \"v_HHxPjC6T2e0\": {\"duration\": 19.09, \"timestamps\": [[0, 2.39], [2.96, 19.09]], \"sentences\": [\"A unicorn pinata sways in the wind from a line.\", \" A woman swings wildly at it with a bat, as she is blindfolded.\"]}, \"v_fVg3StD8LL0\": {\"duration\": 60.26, \"timestamps\": [[0, 14.46], [17.47, 44.59], [39.77, 57.24]], \"sentences\": [\"A man is seen hosting a news segment and speaking to the camera.\", \" The man is then seen helping another lay down plaster.\", \" The host continues helping the men tear up floor as well as lay it down and speak to the camera.\"]}, \"v_-Rv7tGWehRE\": {\"duration\": 60.07, \"timestamps\": [[0, 60.07], [16.22, 18.02], [10.81, 31.24], [54.06, 60.07]], \"sentences\": [\"We see a boy using jumpstilts on a residential street.\", \" The man stops jumping the first time.\", \" We see a person come outside then go inside.\", \" The jumping man faces and walks towards the camera.\"]}, \"v_PD9e9MVHEyU\": {\"duration\": 111.46000000000001, \"timestamps\": [[0, 12.82], [12.82, 109.23], [109.78, 111.46]], \"sentences\": [\"We see the title screen on white A lady sits in a chair talking.\", \" The lady starts painting on her hand.\", \" We see the closing credits on a white screen.\"]}, \"v_ZoKdN--u6TU\": {\"duration\": 140.37, \"timestamps\": [[0, 25.27], [26.67, 119.31], [117.91, 140.37]], \"sentences\": [\"A young man is seen pushing a puck down a table to another man standing on the other side.\", \" The other man then pushes a puck and the boys continue playing the game back and fourth.\", \" The camera zooms in on the men in the end as well as other people standing around the room.\"]}, \"v_aTrEYoCRL2k\": {\"duration\": 236.18, \"timestamps\": [[0, 42.51], [43.69, 213.75], [213.75, 222.01], [223.19, 236.18]], \"sentences\": [\"A man sitting in a leaf blower starts the machine and blows a large pile of leafs into the brush nearby.\", \" We we see the vehicle back and and go back and forth blowing the leaves.\", \" The cameraman stops the vehicle and gets out.\", \" We see the full vehicle from the front and see the field.\"]}, \"v_WYcTPQSXwRc\": {\"duration\": 186.57, \"timestamps\": [[0, 48.51], [48.51, 68.1], [68.1, 107.28], [111.94, 133.4], [133.4, 166.05], [166.05, 186.57]], \"sentences\": [\"A marching band plays in a parade while people watch stand on the sidewalk.\", \" The marching band pass on front a carnival and a green field.\", \" Then, the marching band arrives to a city.\", \" An old man holding a trophy walks on front the marching band.\", \" After, the marching band arrives to a bus station.\", \" A bond lady applaud, hug people and talks.\"]}, \"v_KGIDKn3t2Qk\": {\"duration\": 188.64, \"timestamps\": [[0, 6.6], [7.55, 182.04], [10.38, 47.16], [47.16, 73.57], [74.51, 117.9], [118.84, 163.17], [163.17, 182.04], [182.04, 188.64]], \"sentences\": [\"An intro is shown with a drink being poured into a glass and a caption about drink mixing.\", \" A girl begins to make a drink called a Mai Tai.\", \" She takes out all the things she will need to make the drink.\", \" She gets some ice into a glass and into the shaker.\", \" She adds in the rum, triple sec, syrup, sour mix, and puts the lid on the shaker.\", \" She shakes the shaker for a bit until it gets cold and pours the drink into the glass over the ice.\", \" She tops it off with a bit of sour mix and cherries, as well as a straw.\", \" The video ends with the closing caption.\"]}, \"v_r9OvUc28Qi8\": {\"duration\": 69.57, \"timestamps\": [[0, 6.26], [6.26, 37.57], [37.57, 43.13], [43.13, 62.61], [62.61, 69.57]], \"sentences\": [\"A large group of people are in an area walking, talking and hanging out.\", \"Two men with a referee in the middle appear on a stage and they are in an intense arm wrestling match.\", \" The man without a hat wins the match and is briefly interviewed where he's smiling and talking.\", \" Another match between two men begins and ones again the same man that won the first match wins again.\", \" He holds his right arm up flexing it while smiling and his name Allen Fisher pops up on the screen and a black screen with the words 25 Time World Champion ends the video.\"]}, \"v_5O1ttcUIUKk\": {\"duration\": 95.41, \"timestamps\": [[0, 95.41], [0, 89.21], [4.29, 89.21]], \"sentences\": [\"men are standing in a large green field playing lacrosse.\", \" people is around the field watching the game.\", \" men are running side to side of the ield playing lacrosse trying to score.\"]}, \"v_STwMeZMg_aA\": {\"duration\": 10.12, \"timestamps\": [[0, 7.24], [7.29, 10.12]], \"sentences\": [\"A boy pulls a string of a home fitness machine while talking.\", \" Then, the boy falls down the floor.\"]}, \"v_0dkIuFFlLRM\": {\"duration\": 94.69, \"timestamps\": [[0, 33.62], [27.46, 67.7], [57.29, 93.74]], \"sentences\": [\"A camera pans around a set of stairs and leads into people working out in a class.\", \" Several shots are shown of people working out together while a man speaks to the camera.\", \" The man continues speaking while more people are shown working out together.\"]}, \"v_p5H5ZmAwdH8\": {\"duration\": 84.59, \"timestamps\": [[0, 19.03], [19.88, 84.59]], \"sentences\": [\"A woman is lifting wallpaper as she tries to smooth it down without bubbles with a tool.\", \" She applies the tool smoothly, making sure to repeel and correct any mistakes as she goes along.\"]}, \"v_8HhihBmSS9s\": {\"duration\": 120.4, \"timestamps\": [[2.41, 64.41], [29.5, 86.69], [73.44, 120.4]], \"sentences\": [\"A small group of people are seen standing around a field that leads into a game of kickball.\", \" The people kick around the ball and cheer with one another as they score points on their side.\", \" Another team member scores a goal and their teammates run in with their arms up.\"]}, \"v_FWPJWq-uhUw\": {\"duration\": 117.82, \"timestamps\": [[0, 18.26], [18.26, 42.41], [42.41, 84.83], [84.83, 117.82]], \"sentences\": [\"An athletic man wearing a track suit and a bib number 171 is walking on a track and warming himself up.\", \" The man then grabs his necklace, puts it in his mouth and begins clapping above his head and a name below appears and it say's IRVING SALADINO.\", \" The man drops the necklace from his mouth and immediately begins to run and does his hop, skip and jump.\", \" Replays of the man's run and jump play and the man is shown celebrating himself, and with others on the field.\"]}, \"v_KFo88zRw5CM\": {\"duration\": 71.84, \"timestamps\": [[0, 20.48], [23.71, 59.99], [61.43, 71.84]], \"sentences\": [\"A man is waterskiing behind a boat while holding a rope.\", \" He tries to hold on as he zips to the side.\", \" He slips, splits, and falls into the water.\"]}, \"v_YO8EY7miuk8\": {\"duration\": 58.03, \"timestamps\": [[0.87, 27.56], [16.83, 55.13]], \"sentences\": [\"A small group of people are seen standing together on a stage and lead into them playing the instruments and two men kneeling in front.\", \" The men then perform various martial arts around one another while the people stand around and watch.\"]}, \"v_4k-F7EXpcrM\": {\"duration\": 11.03, \"timestamps\": [[0, 2.59], [2.59, 3.58], [3.7, 11.03]], \"sentences\": [\"A man is riding a rowing machine in a gym.\", \"  A finger briefly covers part of the camera lens.\", \"  The man continues to row as people walk by in the gym.\"]}, \"v_gvhjtFg8A-c\": {\"duration\": 104.44, \"timestamps\": [[0, 1.04], [1.57, 4.18], [1.04, 65.8], [25.59, 45.96], [66.32, 104.44], [86.69, 88.78]], \"sentences\": [\"A person moves a tire towards the gate.\", \" The gates close in their lanes.\", \" People are sitting on tires behind gates.\", \" A person moves their feet.\", \" When the gate is released, people slide down the ice on tires.\", \" A person celebrates and raises their hands.\"]}, \"v_avJNxcysMCk\": {\"duration\": 95.69, \"timestamps\": [[0.96, 10.05], [10.53, 40.67], [40.67, 71.77], [71.77, 95.69]], \"sentences\": [\"Many people are gathered at the finish line of a marathon, waiting for the runners to come in.\", \" Many runners start trickling in and slowing down stopping once they get to that point.\", \" There are many runners and some people on the sides but the stands are completely empty on that side.\", \" More and more men keep running in little by little.\"]}, \"v_WVxP7f_OyEs\": {\"duration\": 175.3, \"timestamps\": [[0, 21.04], [31.55, 110.44], [116.58, 175.3]], \"sentences\": [\"Some people are seen on water skis in the lake.\", \" A man talks to the camera, demonstrating how to water ski.\", \" Several moves and positions are shown as he talks.\"]}, \"v_qpeovDXc1cg\": {\"duration\": 69.73, \"timestamps\": [[0, 1.39], [20.22, 30.33], [31.03, 47.07], [50.55, 55.78], [58.57, 69.73]], \"sentences\": [\"A woman is drinking a cup of coffee.\", \" Coffee beans are shown in a cup.\", \" Web articles are being shown.\", \" A cup mug is being filled with coffee.\", \" People are riding bikes down the street.\"]}, \"v_PveTDlMybvU\": {\"duration\": 106.37, \"timestamps\": [[0, 59.57], [45.74, 49.46], [49.99, 59.57], [61.7, 71.27], [73.4, 85.1], [86.69, 100.52]], \"sentences\": [\"Motorcycle riders race around a dirt track during a competition.\", \" One rider crashes over a jump and falls off his bike.\", \" The other rider slows down and pulls off the track.\", \" The crashed rider crawls on the ground and is helped by another.\", \" The rider waves his arms to signal the others and takes the crashed bike off the course.\", \" The rider is seen crashing in slow motion.\"]}, \"v_qpyAkXLIJz0\": {\"duration\": 184.74, \"timestamps\": [[0.92, 35.1], [36.02, 87.75], [84.98, 152.41], [143.17, 181.04]], \"sentences\": [\"A group of people are seen standing around a room with some holding onto instruments.\", \" People are sitting at a table playing with cups.\", \" More people are seen drumming on the side while the people continue to play with cups.\", \" Eventually people play with a guitar and end by walking off the stage.\"]}, \"v_gjfa7WGhM6U\": {\"duration\": 115.8, \"timestamps\": [[0, 85.11], [85.11, 93.22], [93.8, 115.8]], \"sentences\": [\"A young man is sitting in a chair with his head down shaving his leg with an electric razor.\", \" The man stops and cleans out the razor.\", \" The man shakes the razor when it stops working until it starts again and continues to shave his leg.\"]}, \"v_eLeGJBfqURA\": {\"duration\": 151.46, \"timestamps\": [[0, 19.69], [19.69, 56.8], [56.8, 151.46]], \"sentences\": [\"A dog is outside in a large field and runs towards a man holding a yellow Frisbee.\", \"The man then begins walking and throws the frisbee for the dog to catch.\", \"He throws it several time and the dog catches each and every one.\"]}, \"v_Pyf_5Bffu5A\": {\"duration\": 198.37, \"timestamps\": [[0, 198.37], [0, 188.45], [8.93, 34.71], [60.5, 99.18], [99.18, 198.37]], \"sentences\": [\"kids are playing beach soccer in a dusty field.\", \" people are standing around the field in stands.\", \" man makes a goal and the team and people in stands are celebrating.\", \" man is doing a corner and scores a goal and ruun to his teammates to celebrate.\", \" the game start te game and men keeps running and scores another goal and celebrates while theres a repetition.\"]}, \"v_fm4ZaId1sL0\": {\"duration\": 15.21, \"timestamps\": [[0, 5.78], [5.02, 12.78], [12.4, 15.21]], \"sentences\": [\"An Asian woman wearing a blue shirt and begins talking and throwing her hands up at the camera.\", \"She then grabs an iron and continues to iron a yellow piece of cloth on the ironing board.\", \"Once the front is finished,she grabs it and flips it over so she can complete the ironing.\"]}, \"v_VpfLfFtu0d8\": {\"duration\": 171.36, \"timestamps\": [[4.28, 10.28], [12.85, 171.36], [40.27, 50.55], [72.83, 110.53], [119.1, 135.38], [143.95, 151.66], [155.94, 162.8]], \"sentences\": [\"We see meat and cheese on a counter.\", \"  A man talks to the camera in a kitchen.\", \"  The man spreads mustard on bread.\", \" The man assembles the sandwich.\", \"  The sandwich is pressed.\", \"  The man cuts the sandwich.\", \"  The man plates all of the food.\"]}, \"v_ak8MVjE2p3Y\": {\"duration\": 81.92, \"timestamps\": [[15.16, 77], [34, 77], [52.02, 77.82], [71.68, 77.82]], \"sentences\": [\"There's a man sitting on a busy city street wearing a turban and smoking a cigarette.\", \" There are several people walking past him.\", \" He continues to smoke the cigarette as he inhales and exhales the smoke.\", \" There is a lot of traffic on the street as well as many people walking on the street.\"]}, \"v_dZ4y7J3ASEE\": {\"duration\": 29.03, \"timestamps\": [[0, 13.64], [13.64, 27.28], [27.72, 29.03]], \"sentences\": [\"A person throws a ball to a teen who runs and kick the ball.\", \" A teen grabs the ball in the air and throws to another girl.\", \" The falls on the ground an the girl takes it.\"]}, \"v_ZC65qkYMy9Q\": {\"duration\": 52.52, \"timestamps\": [[0, 12.87], [11.56, 37.03], [32.83, 50.95]], \"sentences\": [\"Several people are seen standing around an arena while others stand to play shuffleboard.\", \" A man pushes a puck along several times while others do the same behind him.\", \" The people continue playing and end with a man speaking to the camera in the end.\"]}, \"v_XC6tvSBS0PA\": {\"duration\": 179.68, \"timestamps\": [[0, 37.73], [38.63, 75.46], [75.46, 131.16], [131.16, 179.68]], \"sentences\": [\"A young lady wearing a colorful swimsuit is underwater swimming in a pool.\", \"A screen flashes and shows step two as the girl demonstrates swimming with your feet close together.\", \"Next,a warning screen appears saying not to swim without goggles as the girl does the exact opposite.\", \"After,the girl is shown with an orange mermaid tail on swimming under water as she joins another \\\"mermaid\\\".\"]}, \"v_G6W6wen6n7w\": {\"duration\": 46.95, \"timestamps\": [[0, 6.34], [7.04, 17.61], [17.84, 27.47], [27.7, 37.09], [37.33, 46.95]], \"sentences\": [\"We see a man run and do a high jump 6'11 and see the replay.\", \" We then see the man jump at 6'9 and see the replay.\", \" The man jumps at 6'11 again and we see the replay.\", \" We see the man jump at 7'2 and we see the replay.\", \" We see the man jump at 8'3 using a springboard and we see the replay.\"]}, \"v_dFSGN8U8EnA\": {\"duration\": 106.42, \"timestamps\": [[0, 48.42], [30.33, 101.63]], \"sentences\": [\"Various shots are shown of women putting lotion on themselves on a beach while the camera pans around from several sides.\", \" More shots are shown of women in various angles rubbing lotion all over their bodies and looking off into the distance seductively.\"]}, \"v_k_gAGeXhmHo\": {\"duration\": 179.98, \"timestamps\": [[0, 14.4], [17.1, 49.49], [52.19, 86.39], [89.09, 138.58], [141.28, 161.08], [161.98, 179.98]], \"sentences\": [\"There is a close up of several men and boys who are sweating.\", \" They play rock paper scissors, and the loser becomes enraged.\", \" He runs through the building and outdoors, screaming and hitting the air.\", \" The man is shown sitting on a chair, talking.\", \" He shakes up a bottle and takes a drink before choking.\", \" They replay the game, ending with him again talking while sitting in the chair.\"]}, \"v_4o7Abew2ExY\": {\"duration\": 107.7, \"timestamps\": [[0, 50.08], [52.23, 60.85], [60.85, 84.54], [96.39, 107.7]], \"sentences\": [\"A man is sitting on a bucket ice fishing.\", \" He stands up and pulls a fish out of the hole.\", \" He cuts the hook out of the fish and throws the fish on the ice.\", \" He sits back down on the bucket.\"]}, \"v_nrC41oAR-F0\": {\"duration\": 8.04, \"timestamps\": [[0.12, 3.21], [2.05, 5.7], [5.14, 7.55]], \"sentences\": [\"A large mat is seen with a bar on top and two people watching on the sides.\", \" A man is then seen running in from the side.\", \" The man jumps over the beam and stands up on the mat.\"]}, \"v_agZNSscDJww\": {\"duration\": 111.06, \"timestamps\": [[0, 2.22], [3.89, 111.06], [100.51, 102.18]], \"sentences\": [\"A man is playing the bagpipes.\", \" People are playing a game of lacrosse outside.\", \"  A man in a blue shirt is talking to the camera.\"]}, \"v_p-uTwZ9Ph-A\": {\"duration\": 13.58, \"timestamps\": [[0, 0.95], [0.95, 11.95], [11.89, 13.58]], \"sentences\": [\"A man serves a ball to play squash with a partner.\", \" The men hit the ball to the wall.\", \" The man bounce the ball on the floor.\"]}, \"v_USoYnMSrWv0\": {\"duration\": 63.37, \"timestamps\": [[0, 63.37], [0.95, 3.17], [23.45, 27.88], [24.4, 27.88], [0.95, 63.37]], \"sentences\": [\"Four people play Foosball at a Foosball table.\", \" One of the girls playing pulls an arm out of place on the table.\", \" The same girl reaches across the table to control an arm on the other side.\", \" The girl on the other side tries to stop her.\", \" A fifth person sits in a chair watching.\"]}, \"v_chLoV5zQxVA\": {\"duration\": 195.81, \"timestamps\": [[0, 4.9], [5.87, 28.39], [29.37, 149.8], [150.78, 167.42], [168.4, 195.81]], \"sentences\": [\"The words \\\"How to Fly a Kite With No Wind\\\" appear on a black screen.\", \" Man wearing a yellow t-shirt appears in a large suburban field.\", \"  The man puts together a rainbow colored kite with long yellow tails.\", \"  The man drives a small green mowing tractor while holding the kite's string as it flies above.\", \"  A young lady speaks on screen and then drives the tractor while holding the flying kite.\"]}, \"v_ztnt2EYuK3I\": {\"duration\": 12.33, \"timestamps\": [[0, 12.33], [4.93, 11.34], [11.1, 12.33]], \"sentences\": [\"A person in a black coat is scraping ice off of a window.\", \" A kid in a yellow coat is smiling at the camera.\", \" A boy in a green jacket is scraping the ice off of another car.\"]}, \"v_YtgiDWEY_1A\": {\"duration\": 755.11, \"timestamps\": [[0, 98.16], [98.16, 505.93], [505.93, 607.87], [607.87, 755.11]], \"sentences\": [\"The news shows a picture of a man name Albertinho Gazio, Meanwhile a woman walking out of her house in snow gear towards her parked car.\", \" The man behind the camera seems to be Albertinho, He is walking through the snow and talking, he and his wife and taking off the snow from the cars in the parking lot.\", \" His hands are extremely red from the snow but his wife is wearing gloves so she's unaffected.\", \" He takes a paper out of his pocket and reads through it, while his wife laughs at him before they start walking back inside.\"]}, \"v_g0Cp28ElIMk\": {\"duration\": 98.89, \"timestamps\": [[1.98, 16.81], [16.81, 46.48], [46.48, 71.2], [71.2, 98.89]], \"sentences\": [\"A girl put her foot on a line and then pulls herself up .\", \" Her feet are dirty but she is trying to balance on the rope.\", \" A man gets up on the rope trying to balance himself also, he has trouble maintaining his balance causing himself to almost fall quite a bit.\", \" He tried this over water and then he watches a woman try to balance herself.\"]}, \"v_jtyWcZGp4VA\": {\"duration\": 217.2, \"timestamps\": [[0, 69.5], [71.68, 102.08], [103.17, 193.31], [194.39, 217.2]], \"sentences\": [\"A person take on the hands a small and big brush and a com, and points a jug of detergent and a spray bottle.\", \" The person takes the big brush and brush the back leg of the dog from top to bottom.\", \" After, the person brushes the back leg of the dog using the big brush, then she small brush and the comb.\", \" Next, the person sprays the leg of the dog and combs.\"]}, \"v_xI4LLnFt6Io\": {\"duration\": 184.04, \"timestamps\": [[0, 184.04], [100.3, 120.55]], \"sentences\": [\"A person plays bagpipes on the streets as people pass by.\", \"  The crowd is shown and someone takes a picture with the woman.\"]}, \"v_t5Br7yOUe4g\": {\"duration\": 95.3, \"timestamps\": [[0, 95.3], [2.86, 28.59], [25.73, 72.42], [70.99, 95.3]], \"sentences\": [\"There's a gymnast wearing red leotards performing gymnastics on a horse bar in a large stadium with spectators and a panel of judges.\", \" She begins by getting onto the horse bar and does a front flips and a couple back flips.\", \" Then she continues twisting her legs and does another side flips by twisting her body.\", \" She then gracefully does few more continuous back flips and jumps off the bar and walks away.\"]}, \"v_d8MgSp3oCoA\": {\"duration\": 69.94, \"timestamps\": [[0, 39.87], [40.21, 54.55], [54.9, 68.54], [59.8, 69.94]], \"sentences\": [\"Two sumos stand face to face on front a woman.\", \" Then, the sumos push each other while the woman watch them.\", \" After, a  sumo falls on the ground heavily, then he stands.\", \" A man wearing yellow clothes approach the ring.\"]}, \"v_GjjRDUirW7g\": {\"duration\": 214.51, \"timestamps\": [[0, 83.66], [61.13, 150.15], [111.54, 200.56]], \"sentences\": [\"A man is seen speaking to the camera while holding a box up to show an instrument inside.\", \" The man pulls out the harmonica and continues to show it off to the camera.\", \" The man plays the harmonica and pauses to hold it up to the screen as well as a picture.\"]}, \"v_ydJsJgdaEq4\": {\"duration\": 109.11, \"timestamps\": [[0, 34.92], [32.73, 77.47], [70.92, 106.93]], \"sentences\": [\"A man wearing a hat is seen speaking to the camera and holding up various cleaning products.\", \" He then holds up a bottle and rag and begins wiping down a class door.\", \" He continues wiping down a door and speaking to the camera.\"]}, \"v_7_5VT6QCqNI\": {\"duration\": 184.09, \"timestamps\": [[3.68, 172.12], [15.65, 39.58], [38.66, 150.03], [87.44, 89.28], [103.09, 104.01], [103.09, 114.13], [114.13, 148.19], [156.47, 165.68], [179.49, 180.41], [182.25, 184.09]], \"sentences\": [\"A man is talking to the camera while styling a woman's hair.\", \" The man is showing various hair care products.\", \" The man is drying the woman's hair with a blow dryer.\", \"  The man shows a hair brush.\", \" The man hands the woman the brush and blow dryer.\", \" The woman proceeds to dry her own hair.\", \" The man resumes blow drying the woman's hair.\", \" The man sprays the woman's hair with hairspray.\", \" A row of hair care products is shown.\", \" A logo for hair care products is shown.\"]}, \"v_tvzl11XL01k\": {\"duration\": 80.3, \"timestamps\": [[10.04, 23.69], [23.69, 39.34], [39.34, 56.61], [56.61, 72.27], [72.27, 79.09]], \"sentences\": [\"There's a woman dressed in a beige sweater demonstrating how to wrap Christmas gifts.\", \" she begins with cutting the gift wrapping paper neatly to fit the size of the box.\", \" She folds the paper evenly to cover the entire box.\", \" Then she uses scotch tape to seal the ends securely.\", \" She takes some decorative ribbon and other decorative items to top the box to add a special touch to the presents.\"]}, \"v_irnvsfchQX8\": {\"duration\": 38.15, \"timestamps\": [[0.19, 5.34], [6.49, 30.9], [31.47, 37.77]], \"sentences\": [\"The credits of the clip are shown.\", \" A boy paddles a boat.\", \" The credits of the video are shown.\"]}, \"v_3A26j50_awY\": {\"duration\": 26.61, \"timestamps\": [[0, 0.93], [0.8, 3.73], [6.25, 16.23], [16.23, 21.95], [22.09, 26.61]], \"sentences\": [\"We see a track with people standing around.\", \" We see a man with a javelin run.\", \" The man returns and we see another javelin thrower with him.\", \" A man in red and white runs down a track and performs a high jump.\", \" The camera is lowered and covered by a hand.\"]}, \"v_FaDD5MyZj88\": {\"duration\": 141.67000000000002, \"timestamps\": [[2.12, 136.71], [30.46, 59.5], [60.21, 141.67]], \"sentences\": [\"A man is shown doing a jump in slow motion on a track several times back to back.\", \" The camera shows several different angles of the athlete jumping in a line as well as into the pit on sand.\", \" He performs several long jumps back to back and shows off his distance acquired.\"]}, \"v_cxIfpBvuk0E\": {\"duration\": 191.8, \"timestamps\": [[0, 13.43], [13.43, 18.22], [18.22, 38.36], [36.44, 55.62], [54.66, 56.58], [56.58, 74.8], [74.8, 80.55], [80.55, 123.71], [123.71, 149.6], [149.6, 170.7], [170.7, 191.8]], \"sentences\": [\"A girl is lighting a cigarette and blowing smoke.\", \"  An arm comes into view and the girl smells it.\", \"  She smokes some more and blows smoke as she plays with her hair.\", \" She is saying something to the camera as she smokes.\", \"  She thumps her ashes and continues to smoke.\", \"  She turns around and then back to smoking.\", \" She sticks her tongue out.\", \"  She pans over to a picture of a crazy looking woman and tries to imitate it.\", \" She continues to smoke and talk to the camera.\", \" She makes faces at the camera.\", \" She gets up close to the camera as someone walks behind her.\"]}, \"v_uLT7PmD_AJA\": {\"duration\": 120.88, \"timestamps\": [[0, 29.01], [29.01, 120.88]], \"sentences\": [\"A person's hands are seen working on the head of a human and placing pieces of hair into the head.\", \" The person ties the hair into several braids and then transitions into pictures of the hair in an updo.\"]}, \"v_a5R0qO5NynU\": {\"duration\": 238.63, \"timestamps\": [[0, 53.69], [66.82, 229.09]], \"sentences\": [\"A woman does hula hoops outside and then in the dark alternating.\", \"  A man takes a hula hoop and describes it before cutting back to the woman.\"]}, \"v_sC_hs-OXERg\": {\"duration\": 181.46, \"timestamps\": [[0, 32.66], [39.01, 128.84], [65.33, 176.02]], \"sentences\": [\"A man is seen bending over a block of wood and sanding it own.\", \" He pours out more liquids in front of a group of people and rubs it all along the block of wood.\", \" He continues rubbing it down while people on the sidelines watch.\"]}, \"v_pcaPtKtS03E\": {\"duration\": 231.23, \"timestamps\": [[0, 62.43], [71.68, 174.57], [159.55, 223.13]], \"sentences\": [\"A close up of a christmas tree is shown followed by a young child hanging up ornaments.\", \" The girl walks back and fourth hanging up ornaments all over a tree.\", \" The girl continues to hang up ornaments while the camera captures her movements.\"]}, \"v_z4_OuffZPAo\": {\"duration\": 28.35, \"timestamps\": [[0, 22.68], [21.97, 24.81], [25.09, 27.5], [27.64, 28.35]], \"sentences\": [\"A man peels a potato while blindfolded and two little girls watch.\", \" The man finishes and holds up the potato to the camera.\", \" The man picks up a peel off the table.\", \" the man removes his blindfold.\"]}, \"v_VuEy38XdUgA\": {\"duration\": 99.13, \"timestamps\": [[0, 99.13], [0, 11.4], [11.4, 25.28], [25.28, 99.13]], \"sentences\": [\"The video starts with several people playing shuffleboard on a shuffleboard court.\", \" One person makes a shot with a black puck.\", \" The next person makes a shot with a yellow puck.\", \" The people continue to alternate shots between a yellow and a black puck.\"]}, \"v_pOO6H6d5SXI\": {\"duration\": 146.05, \"timestamps\": [[0, 9.49], [11.68, 43.09], [51.85, 146.05]], \"sentences\": [\"An elderly man is seated in the living room.\", \" He is playing an accordian.\", \" He continues playing the accordian for the camera.\"]}, \"v_6_XA3oKwwzU\": {\"duration\": 187.18, \"timestamps\": [[0, 180.63], [7.49, 175.95], [175.95, 187.18]], \"sentences\": [\"A woman is playing an acoustic guitar.\", \" A woman standing next to her is dancing and twirling a baton.\", \" Words are then shown on the screen.\"]}, \"v_9nh_6Hzg_aw\": {\"duration\": 192.82, \"timestamps\": [[0, 27.96], [21.21, 181.25], [138.83, 192.82]], \"sentences\": [\"A person is shown looking around a city and begins washing windows with his tools.\", \" He goes up and down the windows at a rapid pace and continues filming himself through the glass.\", \" He finishes the glass in record time and turns off the camera.\"]}, \"v_6Dt510HMEWA\": {\"duration\": 31.09, \"timestamps\": [[0, 22.23], [24.25, 31.09]], \"sentences\": [\"Some people are floating on the ocean on a yellow raft.\", \" They float by large rocks and cliffs.\"]}, \"v_GlAEgSWM2nQ\": {\"duration\": 55.06, \"timestamps\": [[0, 5.78], [5.78, 18.99], [19.54, 25.6], [25.88, 55.06]], \"sentences\": [\"A man in shorts is shown in front of some bushes and is trimming them with a manual trimmer.\", \" He is being very precise and going a very detailed job.\", \" He goes up and down the length of the bushes and is paying attention to every part of them.\", \" He then moves higher and higher getting the very top of the bush.\"]}, \"v_3fg_CB3rBSk\": {\"duration\": 156.06, \"timestamps\": [[0, 129.53], [0, 51.5], [47.6, 129.53], [129.53, 156.06]], \"sentences\": [\"kids are in a park around a squarepants bob sponge pi\\u00f1ata pulling threads.\", \" woman is behind playground holding a bag and watching the kids.\", \" woman holds the pi\\u00f1ata while kids keep pulling from the pi\\u00f1ata.\", \" kid pulls the thread and opn the pi\\u00f1ata and kneel in the floor picking up candies.\"]}, \"v_hV_Ud3zrAnA\": {\"duration\": 92.32, \"timestamps\": [[0.92, 45.7], [38.31, 92.32]], \"sentences\": [\"Several people are seen jumping roping with one another as well as on their own as others watch on the side.\", \" The people performing several jumps and spins with the jump rope as well as shots that are shown in slow motion.\"]}, \"v_1AZxtWKkRlo\": {\"duration\": 193.26, \"timestamps\": [[0, 13.53], [15.46, 78.27], [80.2, 144.95], [147.84, 193.26]], \"sentences\": [\"A group of cheerleaders run onto a stage before a cheering audience.\", \" They get into formation, then begin dancing and flipping as male cheerleaders join them.\", \" They all continue dancing and flipping, doing hand springs.\", \" When they are finished, they jump up and down happily and walk off the stage, exhausted.\"]}, \"v_JNSaWuU8ky4\": {\"duration\": 138.0, \"timestamps\": [[0, 39.33], [48.99, 101.43], [104.19, 135.93]], \"sentences\": [\"Three people are seen kneeling on a small raft and flip themselves into the water.\", \" More people are seen padding along and move over to the people in the water.\", \" The people in the water climb back in and finally put themselves in a canoe.\"]}, \"v_0BXBfSWIR2k\": {\"duration\": 6.73, \"timestamps\": [[0, 1.04], [1.08, 3.7], [3.8, 6.73]], \"sentences\": [\"A wind surfer surfs against heavy waves.\", \" The surfer flings his board against a wave, flying high into the air.\", \" The surfer lands back on the waters and resumes his surf.\"]}, \"v_PBZScfP9ynI\": {\"duration\": 10.43, \"timestamps\": [[0, 2.71], [3.02, 7.92], [8.08, 10.43]], \"sentences\": [\"A woman is doing kickboxing in front of a mirrored wall.\", \" She high kicks her legs into the air.\", \" She alternates the kicks with punches.\"]}, \"v_FNHoSA0hLgM\": {\"duration\": 75.37, \"timestamps\": [[0, 9.8], [12.44, 33.16], [32.79, 75.37]], \"sentences\": [\"An older boy and a younger one are on a racquetball court.\", \" They hit the ball back and forth against the wall.\", \" They continue fighting over the ball, trying to beat each other in the game.\"]}, \"v__Z71mu4aQy4\": {\"duration\": 47.07, \"timestamps\": [[0, 28.48], [4, 36.71], [36.71, 47.07]], \"sentences\": [\"A cricket player hits a ball that is pitched.\", \" A player makes a diving catch in the outfield.\", \" The player smiles and is a good sport.\"]}, \"v_-z0ZvJD9gY4\": {\"duration\": 110.5, \"timestamps\": [[1.11, 67.96], [40.33, 108.85]], \"sentences\": [\"A young man is seen spraying down a dog with water in the middle of an alleyway while the dog moves away from the water.\", \" The person continues spraying the dog with the hose and standing waiting for the dog.\"]}, \"v_mQoYAZ2BLDM\": {\"duration\": 68.08, \"timestamps\": [[0, 68.08], [38.81, 65.7]], \"sentences\": [\"Two people arm wrestle in a competition.\", \"  The losers arm is hurt.\"]}, \"v_-y8LMGQt8uI\": {\"duration\": 203.99, \"timestamps\": [[0, 162.17], [179.51, 203.99]], \"sentences\": [\"A group of people are seen going up and down snowy mountains on skis and in ski cars.\", \" A view is then seen of the snowy mountains with a bridge in front.\"]}, \"v_CBN0dqyWB7w\": {\"duration\": 143.13, \"timestamps\": [[7.87, 49.38], [34.35, 141.7]], \"sentences\": [\"A  man is seen kneeling down next to a car while speaking to the camera.\", \" The camera pans all around the car as well as the tire while the man continues to speak to the camera.\"]}, \"v_XkVicWlqTV4\": {\"duration\": 64.78, \"timestamps\": [[0, 32.07], [32.39, 64.78]], \"sentences\": [\"A man serves a ball in a beach volleyball game, then he run on front the net to receive the ball while people watch the game in a beach.\", \" A serves a ball and plays while people watch the game in a beach.\"]}, \"v_u_G3ZPXU35A\": {\"duration\": 69.94, \"timestamps\": [[0, 3.85], [4.55, 16.79], [17.83, 57.35], [58.05, 69.94]], \"sentences\": [\"A pair of french doors is shown on a house.\", \" A man demonstrates how to clean the glass in the windows of the doors.\", \" He scrubs them with a cloth, wiping them clean.\", \" He continues going down one door, cleaning each individual window.\"]}, \"v_aj1ole7T9hc\": {\"duration\": 30.18, \"timestamps\": [[0, 12.98], [14.94, 30.18]], \"sentences\": [\"A woman is mowing a lawn, pushing the mower back and forth.\", \" She covers half the lawn and driveway before the video ends.\"]}, \"v_cK1ssoaX768\": {\"duration\": 208.89, \"timestamps\": [[0, 200.53], [0, 201.58], [57.44, 58.49]], \"sentences\": [\"A group of men plays soccer in a sand area.\", \" A crowd watches from the the stands.\", \" A goalie tries to block a ball and does the splits but misses the ball.\"]}, \"v_iuEuMQUXLVw\": {\"duration\": 221.84, \"timestamps\": [[0, 14.42], [14.42, 34.39], [34.39, 52.13], [52.13, 82.08], [82.08, 135.32], [135.32, 150.85], [150.85, 186.35], [186.35, 221.84]], \"sentences\": [\"woman is standing in a kitchen and is eating a cake full of cream.\", \" a cake is in a pot on the counter, woman is speaking to the camera in the kitchen.\", \" cake mix is beat with a mixer, the woman keeps talking and mixing the cake.\", \" oil is in a pot.\", \" woman holds a green pot full of sand and its putted on the pressure cooker.\", \" put the mixer on the oily pot.\", \" the pression mix is open and then closed while the woman keeps talking in the kitchen, after a ime she open the pot and the cake is ready.\", \" a decorated cake is shown and the cakes along the pression pot.\"]}, \"v_c7Rxe5IzUQw\": {\"duration\": 171.39, \"timestamps\": [[0, 60.84], [61.7, 171.39]], \"sentences\": [\"A black and white video shows two people in a bedroom, playing guitars.\", \" They continue throughout the video, shaking somewhat as they play.\"]}, \"v_KU4twxFnX5Q\": {\"duration\": 144.43, \"timestamps\": [[0, 13], [16.61, 73.66], [73.66, 144.43]], \"sentences\": [\"A group of runners walk down a dirt path.\", \" They begin running, being passed by cars as they go.\", \" They continue running through the town together.\"]}, \"v_AOBkrb8yYS4\": {\"duration\": 113.13, \"timestamps\": [[0, 50.91], [48.08, 113.13]], \"sentences\": [\"A close up of a ball is shown followed by a person hitting the ball in several locations.\", \" The man continues to demonstrate how to hit the ball in various angles as well as kneeling on the ground to shoot.\"]}, \"v_ZlHaPkhGr_g\": {\"duration\": 231.09, \"timestamps\": [[16.18, 36.97], [36.97, 45.06], [45.06, 51.99], [51.99, 82.04], [82.04, 105.14], [105.14, 130.56], [130.56, 166.38], [166.38, 188.33], [188.33, 217.22], [217.22, 228.77]], \"sentences\": [\"There's a girl with long brown hair playing the harmonica in a hospital elevator.\", \" The elevator door opens and several people enter the elevator.\", \" She continues playing her harmonica.\", \" There's a young boy and his mother who smile at the lady as she plays.\", \" Then they get off the elevator when they reach their level.\", \" The lady continues playing the harmonica as the elevator moves further and stops at other levels and more people walk in.\", \" People continue to get on and off the elevator but she continues to play her harmonica.\", \" A person enters the elevator with a man on a stretcher along with some other people.\", \" They smile at her and compliment her.\", \" They get off the elevator when they reach their desired level in the hospital.\"]}, \"v_An_CpsJkJMM\": {\"duration\": 28.03, \"timestamps\": [[0, 11.35], [11.35, 15.7], [15.84, 28.03]], \"sentences\": [\"A toddler wash his hands in the sink.\", \" Then, the toddler splash water on his face and smile.\", \" The toddled puts water on his face, and then moves his head.\"]}, \"v_e07y3QI4Kbg\": {\"duration\": 30.93, \"timestamps\": [[0, 14.85], [13.14, 30.93]], \"sentences\": [\"Two people are seen arm wrestling with one another while one man holds their hands.\", \" The men then continue to wrestle with one slamming the other's hand down.\"]}, \"v_tA4KrZHGoYQ\": {\"duration\": 181.02, \"timestamps\": [[9.96, 39.83], [38.01, 148.44], [152.06, 181.02]], \"sentences\": [\"A group of people are seen huddled around and leads into a group of them riding down a river with one man's help.\", \" The ride continuously down the river bumping into rocks along the way and leads to them walking out on the side.\", \" Finally a picture of them all together in shown in the end.\"]}, \"v_-1CEVKeAyA8\": {\"duration\": 202.39, \"timestamps\": [[3.04, 91.07], [62.74, 190.24]], \"sentences\": [\"An older woman is seen sitting in a chair knitting while holding two needles and leads into her showing off her knitting basket and speaking to the camera.\", \" The woman continues speaking while holding the knitting tools and ends by fading to black.\"]}, \"v_5aMigcn2cU8\": {\"duration\": 196.02, \"timestamps\": [[0, 19.6], [23.52, 140.16], [142.12, 196.02]], \"sentences\": [\"A group of two women and two men pose together.\", \" They are then shown performing an art exercise called zumba inside a building.\", \" They dance back and forth in unison, then are shown posing together at the end as musical notes float across the screen.\"]}, \"v_IBkHS9Zl2z8\": {\"duration\": 127.61, \"timestamps\": [[0, 31.26], [33.18, 40.83], [42.11, 78.48], [79.12, 88.69], [89.96, 127.61]], \"sentences\": [\"A man in a brown coat and hat is shoveling the snow from his driveway.\", \" Pictures of the man are being shown.\", \" The man gets out a snowblower and starts snowblowing his driveway.\", \" A woman in a blue coat is talking.\", \" The man continues snowblowing before talking to the camera.\"]}, \"v_-UfNSW7yeSo\": {\"duration\": 153.48, \"timestamps\": [[0, 151.95], [5.37, 128.16], [69.07, 87.49], [91.32, 101.3]], \"sentences\": [\"A person welds a seam of a large metal pipe wearing protective mask.\", \" The person peers through a tiny hole in a piece of metal.\", \" The man finishes the weld and the seam is seen glowing red hot.\", \" A man taps the finished welled with a metal file.\"]}, \"v_vNzTWjEFr-Y\": {\"duration\": 69.52, \"timestamps\": [[7.3, 17.73], [17.73, 42.76], [42.76, 60.48], [60.48, 64.65]], \"sentences\": [\"The video shows a person's hand holding up an acoustic guitar.\", \" The Yamaha case of the guitar is also shown.\", \" A young man is seen playing his acoustic guitar.\", \" He is strumming his guitar to a tune.\"]}, \"v_7e035QnLp0c\": {\"duration\": 176.17000000000002, \"timestamps\": [[6.17, 90.73], [53.73, 158.55]], \"sentences\": [\"A man is seen in several locations walking along a long rope tied to two trees.\", \" The man continues performing several variations on how to walk on the rope as well as jumping up and down and continuing to walk.\"]}, \"v_99PtaOQbBIY\": {\"duration\": 150.65, \"timestamps\": [[0, 37.66], [42.18, 112.99], [85.87, 146.13]], \"sentences\": [\"Several cats are shown sitting around followed by a man speaking to the camera.\", \" More shots are shown of cars and leads into a woman cutting a cat's claws.\", \" Several products are shown laid out as well as several people holding cats and cutting their nails.\"]}, \"v_VoQ2VhCqir0\": {\"duration\": 150.88, \"timestamps\": [[0, 62.62], [62.62, 150.88]], \"sentences\": [\"men is holding a bucket and is standing in the oof of a house and its working on it.\", \" man is doing the mix in a bucket in a floor and in the roof again.\"]}, \"v_I-vi5EpjrFI\": {\"duration\": 63.69, \"timestamps\": [[0.96, 23.25], [20.06, 45.54], [41.08, 60.83]], \"sentences\": [\"Text is shown across the screen leading into two women speaking to one another.\", \" One takes a sip of mouth wash and spits it into the sink.\", \" She hands the container back to the woman who turns to speak to the camera.\"]}, \"v_4l8r_wBuJ6Y\": {\"duration\": 39.94, \"timestamps\": [[0, 39.94], [1, 39.94], [13.58, 14.98]], \"sentences\": [\"A man is wearing a yellow vest.\", \" He is standing in front of a building cleaning a window.\", \" A person is seen looking out one of the windows.\"]}, \"v_3lla2AaJgNA\": {\"duration\": 21.64, \"timestamps\": [[0, 4], [6.06, 13.96], [15.15, 21.64]], \"sentences\": [\"A woman is using an iron on a board.\", \" She is showing how to iron baby clothes.\", \" She flips the clothing, buttoning it up as she goes.\"]}, \"v_g0RK-2ydod0\": {\"duration\": 186.55, \"timestamps\": [[3.73, 75.55], [49.44, 151.11], [121.26, 184.68]], \"sentences\": [\"A chef is seen standing before a table with various objects laid out and pulling a piece of food out of pot.\", \" He shows the object to the camera and begins peeling it out into a bowl.\", \" The person then cuts up the food and continues peeling more into a pot.\"]}, \"v_XqmMZs2-3ZI\": {\"duration\": 104.53999999999999, \"timestamps\": [[0, 12.54], [12.54, 43.38], [43.38, 71.61], [71.61, 104.54]], \"sentences\": [\"A woman is sitting on her little couch thinking about cookies.\", \" You are informed of all the ingredients needed to make a batch of delicious cookies and the equipment required to make them.\", \" She goes to the kitchen and turns on the oven and begins mixing ingredients in a kitchenaid.\", \" Once mixed nicely she places the cookie in the oven and when they done she returns to her couch with her teddy bear and munches out.\"]}, \"v_wfSh2F8ymIg\": {\"duration\": 23.73, \"timestamps\": [[0, 11.27], [9.85, 23.73]], \"sentences\": [\"A camera shows a person's feet riding down a snow mountain while spinning around in circles.\", \" The person continues spinning down the hill while a large crowd watches on the side and a young boy jumps up at the bottom.\"]}, \"v_3gQsAKZ71tU\": {\"duration\": 106.46000000000001, \"timestamps\": [[0, 17.57], [5.86, 17.57], [20.76, 98.48], [80.38, 98.48]], \"sentences\": [\"A man stands on a court.\", \" He hits a ball with a racket.\", \" Several different athletes are shown hitting balls.\", \" Some of them cheer at the end.\"]}, \"v_soeRPsbkfas\": {\"duration\": 63.32, \"timestamps\": [[0, 23.11], [23.11, 63.32]], \"sentences\": [\"A man is shown doing several different long jumps back to back while the camera captures him.\", \" He swings his arms around to demonstrate a proper move followed by several more jumps.\"]}, \"v_YonmpJvwmKM\": {\"duration\": 232.39, \"timestamps\": [[0, 5.81], [10.46, 139.43], [141.76, 187.07], [189.39, 232.39]], \"sentences\": [\"A man is pictured next to an ad for yoga.\", \" He is standing in a forest, making slow and graceful yoga moves.\", \" He stands on a platform, continuing the graceful movements.\", \" We then see him again in the woods, still performing yoga quietly.\"]}, \"v_ComW-O6dMW4\": {\"duration\": 137.6, \"timestamps\": [[0.69, 4.82], [12.38, 137.6], [0, 137.6]], \"sentences\": [\"These two men are shown spraying the exterior of the black car with soap.\", \" Then they started hand washing the car using their hands and a towel.\", \" They scrubbed almost everywhere to make the black turn into shine.\"]}, \"v_VNR1j2U7gE4\": {\"duration\": 40.68, \"timestamps\": [[0, 22.78], [17.7, 40.68]], \"sentences\": [\"Two men are seen standing around a large room and hitting a tennis ball around with tennis rackets.\", \" The men hit the ball back and fourth to one another and run around the room at the same time.\"]}, \"v_dLOwmXV_yTw\": {\"duration\": 115.38, \"timestamps\": [[0, 20.19], [20.77, 43.84], [35.77, 55.96], [57.69, 115.38]], \"sentences\": [\"Holiday gift wrapping made easy, this glass store give a tutorial on how to wrap awkward shaped gifts.\", \" You place the object on the wrapping paper to start.\", \" After, you fold the tip of the paper, you grab the scissor and cut strips.\", \" Then you use tape to hold it down and top it off with a bow.\"]}, \"v_dG_jxrIaK6w\": {\"duration\": 80.16, \"timestamps\": [[0, 18.84], [19.24, 58.91], [55.71, 78.15]], \"sentences\": [\"A man is seen speaking to the camera and pans it back to a piano.\", \" The man then begins playing the piano while the camera captures his movements.\", \" He continues to play and ends by turning off the camera and looking off into the distance.\"]}, \"v_dY2iZq5T0zo\": {\"duration\": 130.5, \"timestamps\": [[0, 18.92], [20.88, 90.04], [96.57, 130.5]], \"sentences\": [\"A group of people are riding horses and playing polo.\", \" They fight over the ball in front of the watching crowd.\", \" When it's over, they pose for pictures outside the rodeo and stadium.\"]}, \"v_Qyruw9480BU\": {\"duration\": 118.25, \"timestamps\": [[0, 118.25], [5.91, 18.33], [43.75, 88.69], [89.28, 118.25]], \"sentences\": [\"A lady in a pink shirt stands in a laundry room talking to the camera.\", \" The camera zooms out to show us the whole room.\", \" The lady shows us a spray bottle and shakes it up.\", \" The lady then speaks to the camera.\"]}, \"v_lEYr4d4vBWc\": {\"duration\": 206.43, \"timestamps\": [[0, 67.09], [65.02, 148.63], [141.4, 194.04]], \"sentences\": [\"A close up of a wall is shown followed by several clips of men opening a window.\", \" They're also seen working on a roof and putting tiles down on the side.\", \" They put in a window and end by closing up.\"]}, \"v_3ZJQHfrfR2M\": {\"duration\": 40.06, \"timestamps\": [[0, 40.06], [17.82, 27.04], [28.04, 36.25], [30.84, 35.25]], \"sentences\": [\"A man is cleaning leaves off a sidewalk with a broom and a shovel.\", \" The man sweeps the leaves in a circle and puts them in the bin.\", \" A yellow bus rides past the man.\", \" The man sweeps again and puts the leaves in the bin.\"]}, \"v_1ErQKcUju8o\": {\"duration\": 104.1, \"timestamps\": [[14.05, 104.1], [0, 98.37]], \"sentences\": [\"A tutorial is presented on how to do simple ballet moves.\", \"  After showing the materials, the teacher touches the student to show perfect form.\"]}, \"v_VbP9fOp-Umg\": {\"duration\": 191.31, \"timestamps\": [[0, 44.96], [0, 191.31], [0, 185.57], [190.35, 191.31]], \"sentences\": [\"This young woman is dancing with the baton in her hands.\", \" She's in the middle of the street wearing a red tanktop, shorts, and flip flops.\", \" There are lots of people watching her while she does the batons outside.\", \" When she''s done, the music stops playing and a few people clap for her performance.\"]}, \"v_kDz85hnSKdo\": {\"duration\": 31.07, \"timestamps\": [[2.64, 29.05], [3.88, 29.05], [11.03, 12.12]], \"sentences\": [\"A man in a yellow life vest is sitting in a canoe.\", \" He is paddling from side to side.\", \" The camera goes underwater next to the canoe.\"]}, \"v_rcpsp52nguY\": {\"duration\": 162.38, \"timestamps\": [[7.31, 17.05], [17.86, 37.35], [38.16, 60.08], [60.89, 82], [84.44, 125.03], [125.84, 154.26]], \"sentences\": [\"A man walks across some snow carrying a large snow shovel.\", \" The man shovels a long path of snow.\", \" The man turns around and shovels a long path of snow again.\", \" The man shovels snow for a third time.\", \" The man shovels a really long path of snow at a different location.\", \" The man turns around and shovels a second path of snow, right next to the recent shoveled snow path.\"]}, \"v_WVaYjd1F8kg\": {\"duration\": 167.57999999999998, \"timestamps\": [[12.57, 50.27], [76.25, 78.76], [51.95, 123.17], [123.17, 162.55]], \"sentences\": [\"A person cuts a pepper and put in a bowl.\", \" Also, the person cook noodles in a pot.\", \" Then, the person fry mushrooms in a pan, add salt, garlic, tomatoes and roots.\", \" After, the person add the pepper and the noodles, mix and serves.\"]}, \"v_LFiGhD1OEws\": {\"duration\": 129.57, \"timestamps\": [[3.24, 17.49], [9.72, 11.01], [13.6, 38.87], [38.22, 128.27]], \"sentences\": [\"A group of young people play field hockey on a field while a man watches from a fence bordering the playing field.\", \"  A man in field hockey goal gear stands in the center of a semi circle formed by young people dressed in field hockey attire.\", \"  The man interviews from the sidelines while the people play field hockey and at one point is presented with a burgundy jersey by the players.\", \"  The man then plays a game of field hockey in which he ends standing in the semi circle again tossing a ball up and down and looking into the camera while surrounded by players.\"]}, \"v_moqRG7uwZ4Q\": {\"duration\": 104.28999999999999, \"timestamps\": [[0, 18.25], [18.25, 65.18], [65.71, 104.29]], \"sentences\": [\"A view of a leaf blower lays on the ground in a yard.\", \" The leaf blower blows brown dried up leaves using the leaf blower.\", \" The leaves are blown away from some lawn furniture and blown towards the middle of the yard.\"]}, \"v_B-lmXhRr6bE\": {\"duration\": 188.8, \"timestamps\": [[0, 23.6], [33.04, 128.39], [135.94, 188.8]], \"sentences\": [\"A large black item is drawn on a long sheet of white paper.\", \" A person uses a brush to continue the painting.\", \" They add leaves, creating a black plant.\"]}, \"v_cffsp2tCT5k\": {\"duration\": 211.02, \"timestamps\": [[9.5, 119.23], [89.68, 193.09]], \"sentences\": [\"A young girl is seen cutting a hole in the top of a pumpkin followed by her scooping out seeds and cutting out the sides.\", \" The girl wipes off the pumpkin and puts on the top and shows the pumpkin in the dark.\"]}, \"v_VLmZ3M3wSbo\": {\"duration\": 103.7, \"timestamps\": [[0, 30.59], [30.07, 65.33], [65.85, 103.7]], \"sentences\": [\"A young man is seen holding his eye open in front of a mirror and attempting to put a contact lens in.\", \" He drops the lens on the sink and again tries to put the contact into his eye.\", \" He drops the lens again and continues trying to put it into his eye and the camera moves around in the end.\"]}, \"v_ti3EHJLR2mU\": {\"duration\": 207.42000000000002, \"timestamps\": [[17.63, 28], [28, 52.89], [52.89, 77.78], [77.78, 108.9], [108.9, 146.23], [146.23, 169.05], [169.05, 179.42], [179.42, 197.05], [197.05, 207.42]], \"sentences\": [\"The video is a tutorial on how to make Alfredo sauce pasta.\", \" A lady with blond hair wearing a maroon tank top is demonstrating how to boil water to make bow-tie pasta.\", \" She then strains the pasta out in a bowl by throwing out the excess water.\", \" Then she takes a stick of butter and cuts it and adds to a saucepan.\", \" then she adds some milk and cheese to it and stirs it in with the cooked pasta.\", \" She adds some more milk and cheese to the pasta to make the sauce.\", \" She continues stirring the pasta in the saucepan.\", \" She serves the pasta in a square brown plate and takes a spoonful of the pasta to taste it.\", \" She is happy with the way it turned out.\"]}, \"v_LDjomH0-hYA\": {\"duration\": 189.75, \"timestamps\": [[0, 181.22], [92.03, 98.67], [182.16, 183.11]], \"sentences\": [\"A woman wearing a dress is dancing on a stage.\", \" Smoke is pumped out onto the stage behind her.\", \" She bows at the end and steps back.\"]}, \"v_f9Bo4yVcnDE\": {\"duration\": 129.85, \"timestamps\": [[0, 19.48], [19.48, 44.15], [62.33, 74.01], [74.66, 127.9]], \"sentences\": [\"A man wearing a black coat is chopping a piece of wood with an ax.\", \" He tries again and chops it again.\", \" He moves the stump and tries to chop it again.\", \" He continues to chop the wood.\"]}, \"v_QsfIM28uvHM\": {\"duration\": 26.22, \"timestamps\": [[0, 26.22], [1.84, 6.03], [12.45, 26.08]], \"sentences\": [\"A person hangs onto the handles of a kite flying overhead.\", \" The kite falls as the wind lessens.\", \" The kite blows hard in the air as the wind picks up again.\"]}, \"v_Q48_MDiak-w\": {\"duration\": 13.2, \"timestamps\": [[0, 8.65], [8.65, 13.2]], \"sentences\": [\"An athlete performs hammer Throw by spins a heavy ball several times with his body.\", \" Then, the athlete throws the ball to the field.\"]}, \"v_hSYfK-W2UJQ\": {\"duration\": 96.22, \"timestamps\": [[0.48, 89.97], [1.92, 27.9], [28.87, 62.06], [41.86, 90.93]], \"sentences\": [\"A woman talks, facing the camera while holding two dumbbells and then demonstrates a spin cycle exercise in front of a class in a gym.\", \"  A woman stands and talks while facing the the camera, in a gym, with a wall of mirrors to her side and several people behind her standing near various pieces of gym equipment.\", \"  The woman, now wearing a headset with a mic attached to the mouthpiece,  starts cycling very fast on a spin cycle machine in front of a mirror with a class of people behind her who are also on spin cycle machines.\", \"  The woman then lifts dumbbells with her arms while standing, lifts dumbbells while sitting on the floor and then returns to the spin cycle machine before the scene fades to black.\"]}, \"v_MYzG-TsW8w8\": {\"duration\": 48.44, \"timestamps\": [[0, 10.41], [10.41, 13.08], [13.32, 28.58], [28.58, 39.23], [39.23, 48.44]], \"sentences\": [\"Four men are outside in a field throwing a baseball to each other.\", \"A ball then rolls into a pond and a little boy grabs it and throws it.\", \"The scene moves to a playground and the boys begin going down the slide.\", \"More kids are shown and they are doing various activities as they play such as the see saw,monkey bars and swings.\", \"On the side,a boy begins pumping his tire and a small baby is shown bathing in a basin.\"]}, \"v_7rvrBulkd5c\": {\"duration\": 98.08, \"timestamps\": [[0, 12.26], [12.26, 25.5], [25.5, 52.47], [52.47, 66.21], [66.21, 83.37], [83.37, 98.08]], \"sentences\": [\"An exercise instructor is explaining the step.\", \"  She steps up on it and begins to show the exercises.\", \"  She goes in front of it and shows more exercises, stepping up and down and raising her arms as she steps.\", \"  She stops and explains more.\", \"  She turns back to the step and begins more advances steps.\", \"  She stops for moment and shows the fast step again.\"]}, \"v_H3cFZelOk2Y\": {\"duration\": 202.34, \"timestamps\": [[0, 74.87], [35.41, 132.53], [96.11, 202.34]], \"sentences\": [\"Two team are in each other end of the rope while people are watching and two persons are taking pictures.\", \" The two teams began pulling the rope.\", \" The team in yellow shirt won and then two team shake hands and hugged each other and then gave a bow.\"]}, \"v_fllAtkXf7pw\": {\"duration\": 36.43, \"timestamps\": [[0, 5.46], [6.01, 30.06], [30.24, 36.43]], \"sentences\": [\"The credits of the video are shown.\", \" A lady sits back, talks, and drinks coffee.\", \" Credits of the clip are shown.\"]}, \"v_QinlLV8QKBU\": {\"duration\": 219.94, \"timestamps\": [[0, 79.18], [79.18, 168.25], [168.25, 197.95], [197.95, 217.74]], \"sentences\": [\"A old man puts salt to bowling water in a pot, then he adds pasta and let cook for one minute.\", \"Then, the man turns off the stove and puts on the pot a cloth and a lid and let it for 10 min.\", \" After, the man drains the pasta in the sink.\", \" A woman comes and taste the cooked pasta and gives a thump up.\"]}, \"v_ksvIIhvmSRM\": {\"duration\": 209.27, \"timestamps\": [[0, 31.39], [33.48, 150.68], [154.86, 202.99]], \"sentences\": [\"A man is seen sitting in a tube speaking and leads into people walking around carrying tubes.\", \" Shots of the water is shown followed by people riding down a river on the tubes.\", \" The people continue to ride down one after the other while people watch on the side.\"]}, \"v_9RcCkU6dVD0\": {\"duration\": 37.22, \"timestamps\": [[0, 37.22], [22.15, 26.24], [26.24, 32.57]], \"sentences\": [\"A girl hits a pinata with an orange, toy bat.\", \" The bat falls and the girl picks it up.\", \" Behind her, a boy demonstrates how she should hit and cheers her on.\"]}, \"v_TL7hwQauhFo\": {\"duration\": 160.38, \"timestamps\": [[0, 26.46], [24.06, 85], [85, 109.06], [109.06, 160.38]], \"sentences\": [\"In an indoor court teams of men are playing soccer while audience sits in the stadium.\", \"  The team in black is trying to prevent the other team in red from scoring, the goalie blocks the score.\", \"  They run up and down the court trying to score and keep the other from scoring.\", \" The red team scores and it's 1-1, they continue back on the court til the game is over.\"]}, \"v_HEuC9ZEY91E\": {\"duration\": 151.88, \"timestamps\": [[0, 85.05], [35.69, 37.97], [91.89, 151.88]], \"sentences\": [\"People are going down a hill of snow on sleds.\", \" People are standing on the side of the hill watching them.\", \" People are making a snow man in the snow.\"]}, \"v_xCVZBvwhoWE\": {\"duration\": 16.44, \"timestamps\": [[0, 2.96], [1.89, 16.44], [3.29, 12.99]], \"sentences\": [\"A person is seen standing in a close room holding a tennis racket.\", \" The person then begins hitting the ball with the racket and walking around.\", \" Another person is seen walking in frame as well as out.\"]}, \"v_ApH2nZIq2tU\": {\"duration\": 42.1, \"timestamps\": [[0, 3.58], [3.79, 27.15], [27.57, 42.1]], \"sentences\": [\"An emblem appears on the screen.\", \" A band appears, walking down the street and across a field as they play for a crowd.\", \" Words appear on the screen talking about celebrating March 4th with a parade.\"]}, \"v_d14twk9O2Vw\": {\"duration\": 185.9, \"timestamps\": [[0, 13.94], [13.94, 180.32], [46.47, 67.85], [180.32, 185.9]], \"sentences\": [\"An introduction comes onto the screen for a video about a tour for a band.\", \" They are shown getting haircuts in a barbershop and commentating about the haircut.\", \" They are also shown jamming out in a session with several people dancing around and having a good time.\", \" The video ends with the closing credits shown on the screen.\"]}, \"v_8OA30kYcAUQ\": {\"duration\": 168.37, \"timestamps\": [[0.84, 6.73], [7.58, 17.68], [18.52, 31.99], [32.83, 41.25], [42.09, 45.46], [46.3, 53.88], [54.72, 72.4], [73.24, 79.13], [78.29, 88.39], [89.24, 122.91], [123.75, 140.59], [141.43, 147.32], [162.48, 167.53]], \"sentences\": [\"The credits of the video is shown.\", \" A man rakes brown leaves in a lawn.\", \" The man puts the leaves in a trashcan.\", \" The man stops and moves the trashcan.\", \" The man pulls out a black object from his pocket and presents it.\", \" The man screws the black object at the end of the rake handle.\", \" The man moves the trashcan and rakes.\", \" The man stop raking, walks toward a tree, and hangs the rake on the tree.\", \" The man removes a pair of rakes for the tree and lifts it above his head.\", \" The man uses the dual rakes to pick up the leaves and put them into the trashcan.\", \" The man lifts the dual rakes above his head and then pairs them together.\", \" The man takes the paired rakes back to the tree where he hangs them on a branch.\", \" The credits of the clips are shown.\"]}, \"v_0vJfctL116Y\": {\"duration\": 148.12, \"timestamps\": [[4.44, 15.55], [17.03, 66.65], [66.65, 77.02], [77.02, 79.99], [80.73, 90.35], [90.35, 104.43], [100.72, 111.09], [105.91, 125.9], [121.46, 125.16], [126.64, 133.31], [135.53, 145.9]], \"sentences\": [\"A woman in a white apron is slicing lettuce on a board.\", \" She dries and cuts some cucumbers to put in a bowl of salad.\", \" She tosses the salad with her hands.\", \" She grabs a bottle of vinegar and pours it on top of the salad.\", \" She opens a bottle with her teeth and pours that onto the salad too.\", \" She puts more dressing on the salad.\", \" A lady in the background is pulling saran wrap out.\", \" She continues tossing the salad and mixing the dressing into it.\", \" A woman behind her pours seasoning onto the salad.\", \" A woman holds the bowl up and shows the salad while smiling.\", \" The woman who tossed the salad is washing her hands off on a towel.\"]}, \"v_BiZF6o-AU64\": {\"duration\": 140.9, \"timestamps\": [[0, 4.23], [4.23, 133.85], [133.85, 140.9]], \"sentences\": [\"A graphic plays that says \\\"StuntsAmazing\\\" with a link to their facebook page.\", \"  A man shows off a variety of pool tricks on his pool table in his house.\", \"  A graphic plays that says \\\"Subscribe\\\" and the video ends.\"]}, \"v_Ke29p3rcs1k\": {\"duration\": 151.09, \"timestamps\": [[0, 50.62], [50.62, 111.81], [111.81, 151.09]], \"sentences\": [\"a room with a table without painting is shown and a emery is on top of it.\", \" man walks into a room and use the emery on the top of the table.\", \" man take out the glasses and cleans the disc of the emery.\"]}, \"v_H-hgVm5G54Y\": {\"duration\": 146.87, \"timestamps\": [[0, 2.94], [8.08, 35.25], [36.72, 105.74], [105.74, 116.76], [146.13, 146.87]], \"sentences\": [\"We see a persons hand on the camera.\", \" A girl then shows us her brush.\", \" The girl uses the brush to brush her hair.\", \" She shows us her brush again.\", \" Her hand then covers the camera.\"]}, \"v_5xgBlI9Xx0I\": {\"duration\": 65.18, \"timestamps\": [[0, 20.53], [20.86, 51.49], [52.79, 65.18]], \"sentences\": [\"A gymnast is shown swinging back and fourth on uneven bars.\", \" He performs a routine swinging around and around while hundreds of people watch.\", \" He finishes by sticking his arms up in the air and bowing to the audience.\"]}, \"v_xww6n1FoJIM\": {\"duration\": 154.97, \"timestamps\": [[0, 18.6], [18.6, 41.07], [41.07, 120.88], [120.88, 154.97]], \"sentences\": [\"A man is talking about what is going on in the TV behind him as a news story.\", \" A group of people are in the field playing a game running all around.\", \" Many of the players are able to have a chance to speak about the team and stuff.\", \" They show the practice and the players and then they go back to the news anchors who continue to talk a little bit more about it.\"]}, \"v_ZW3SKczQzJU\": {\"duration\": 136.19, \"timestamps\": [[0.68, 32.68], [38.13, 102.82], [89.88, 132.78]], \"sentences\": [\"A man is seen walking into a bathroom and looking through dirty toothbrushes.\", \" The person pours toothpaste out onto a brush and continuously brushes his teeth.\", \" He then brushes more and ends by rinsing his mouth out with mouth wash and showing off the sink.\"]}, \"v_kOVQPyzXkUY\": {\"duration\": 128.1, \"timestamps\": [[8.97, 128.1], [10.89, 17.29], [37.15, 95.43], [101.84, 128.1]], \"sentences\": [\"A guy type walks on a rope while holding a selfie stick recording him self.\", \"the guy type walks across water on a rope that has a short distance from the dock to a boat edge while people watch.\", \"guy's also bounce and do tricks on a pink type rope as well.\", \"guy's try to type walk across the water but falls in and some make it across.\"]}, \"v__I8sqYLhRKM\": {\"duration\": 48.21, \"timestamps\": [[0.72, 16.87], [9.88, 35.91], [36.39, 48.21]], \"sentences\": [\"Two girls are shown raking up leaves in a yard while continuously talking to the camera.\", \" The older girl shows the younger one how to rake while another girl stands by and watches on a nearby slide.\", \" The camera zooms in on the younger girl and watches her rake up the leaves.\"]}, \"v_gx6QvOXwetM\": {\"duration\": 18.02, \"timestamps\": [[0, 2.61], [2.61, 7.48], [7.39, 12.52], [12.52, 18.02]], \"sentences\": [\"Two boys are kneeling in the grass cutting the grass with a pair of scissors.\", \" They grab some pieces and use the scissors to cut it up.\", \" Then throw the grass they cut back behind them.\", \" They are going at it kind of quickly, they seem like very bored little kids with nothing else to do.\"]}, \"v_IdhpB7doBOE\": {\"duration\": 166.91, \"timestamps\": [[5.01, 166.07], [10.01, 10.85], [34.22, 90.96], [92.63, 165.24]], \"sentences\": [\"A woman talks facing a camera, in front of a dance studio advertisement sign, as four girls demonstrate ballet techniques in front of a ballet bar in a dance studio.\", \"  A woman with blonde hair, and dressed in all black, stands in front of a dance studio advertisement and talks while facing the camera.\", \"  The camera cuts away to four girls in ballet outfits and ballet shoes facing a ballet bar with their backs to the camera and demonstrating ballet knee bends.\", \"  The girls then demonstrate ballet toe points as the camera cuts back to the lone woman who continues to talk facing the camera, until the scene fades to a marketing graphic.\"]}, \"v_Y7yGeNl7POk\": {\"duration\": 21.32, \"timestamps\": [[0, 6.71], [6.71, 20.14]], \"sentences\": [\"A little girl jumps hopscotch in the street.\", \" The little girl turns and jumps hopscotch.\"]}, \"v_d-uGSELb0N0\": {\"duration\": 67.66, \"timestamps\": [[0, 67.66], [13.87, 24.7], [24.36, 67.66]], \"sentences\": [\"Several individuals are shown playing volleyball in a gymnasium from the right side of the net while other people are engaging in other activity in the background.\", \" The camera pans left to show the team on the left side of the net.\", \" The camera returns to the team on the right side.\"]}, \"v_N0DA6RpIf5Y\": {\"duration\": 37.87, \"timestamps\": [[0, 9.09], [9.66, 27.65], [28.78, 37.87]], \"sentences\": [\"A man is raking leaves in a large yard.\", \" He uses the rake to push the leaves into piles.\", \" He continues to rake, clearing a path of dirt underneath.\"]}, \"v_1R25VGmqS9o\": {\"duration\": 72.19, \"timestamps\": [[0, 16.6], [16.6, 33.21], [33.57, 49.81], [49.09, 72.19]], \"sentences\": [\"A team on the field running around playing lacrosse.\", \" Everyone is running after each other trying to make the goal.\", \" Everyone is running a lot trying to prevent the other team from scoring.\", \" The girl in the red looks like she almost makes it before running off.\"]}, \"v_73LZVxxlJV8\": {\"duration\": 62.97, \"timestamps\": [[0, 7.87], [7.56, 62.97]], \"sentences\": [\"big skyscraper with a great view.\", \" men is cleaning the window on the outside hanging on the Scaffolding.\"]}, \"v_DrEsyzI2u4c\": {\"duration\": 37.5, \"timestamps\": [[0, 16.13], [16.31, 37.5]], \"sentences\": [\"An athletic man is seen holding onto a piece of exercise equipment and kneeling while speaking to the camera.\", \" He continues speaking and begins moving his arms and body back and fourth.\"]}, \"v_oNYC_3fcGg0\": {\"duration\": 148.28, \"timestamps\": [[0, 143.09], [68.95, 143.09], [81.56, 143.09]], \"sentences\": [\"The man is surfing on the waves and fall in the water.\", \" The man is surfing while other surfers are behind him.\", \" The surfer is surfing over the water and fell near the rocks.\"]}, \"v_hvCYwmaukDw\": {\"duration\": 60.49, \"timestamps\": [[0, 7.86], [7.86, 22.38], [22.38, 60.49], [50.81, 60.49]], \"sentences\": [\"Men are dressed in soccer gear that have the PEPSI logo on their shirts and they are playing on a grassy field.\", \" Very large sumos start walking on the field with their own soccer ball in hand, and the soccer men approach them and the sumo points over to the PEPSI cooler filled with soda.\", \" The men and sumos begin a soccer game against one another and when a man tries to make a goal a sumo blocks the entire goal and in various other moves the sumo wins including a goal when a sumo fell and the soccer ball flew into the net.\", \" A man grabs a pepsi can and throws it to a sumo and all the sumos run to the cooler, drinks a pepsi, then they're shown walking off with the pepsi cooler.\"]}, \"v_lnvsb4-71BQ\": {\"duration\": 128.04, \"timestamps\": [[1.28, 30.09], [31.37, 94.75], [95.39, 125.47]], \"sentences\": [\"A man is seen speaking to the camera while holding up several game of ping pong are played.\", \" The man continues hitting the ball while speaking to the camera and holding up ping pong tools.\", \" The man demonstrates how to properly hit the ball and move his body around and still hitting the ball.\"]}, \"v_q2VG0zzPJMw\": {\"duration\": 31.14, \"timestamps\": [[0, 4.52], [3.58, 19.46], [13.23, 19.93], [19.77, 29.89]], \"sentences\": [\"There's a welder in a blue shirt wearing a yellow protective helmet, welding a large metal pipe in a workshop.\", \"  There's another welder wearing a blue protective suit and white helmet welding a metal piece on a workshop table.\", \" He is welding the metal piece with precision in a horizontal manner.\", \" There's a welding machine showing how it works on melting metal at high temperature.\"]}, \"v_gYchIiLd9Uw\": {\"duration\": 89.17, \"timestamps\": [[0, 16.5], [14.71, 89.17]], \"sentences\": [\"A young girl is seen sitting on a bed speaking to the camera and leads into her performing gymnastic tricks on a trampoline.\", \" More shots are shown of several girls performing various flips and tricks on a gym floor and ending with a group of girl doing cheerleading lifts.\"]}, \"v_7-RbxFePrmU\": {\"duration\": 123.3, \"timestamps\": [[0, 10.48], [12.95, 52.4], [56.72, 123.3]], \"sentences\": [\"A girl is holding a toothbrush up to the camera.\", \" She uses the brush to brush her teeth.\", \" She scrubs her teeth back and forth for a long time.\"]}, \"v_ODx-nocNBos\": {\"duration\": 174.43, \"timestamps\": [[0, 18.32], [18.32, 46.22], [45.35, 158.73], [158.73, 174.43]], \"sentences\": [\"A person on the screen is showing a box containing sumo wrestling toys.\", \" The person gives a demonstration on how to use the toys.\", \" Next the person does several demonstrations of the sumo wrestling toy set using toys that they have made as well as toys from the set.\", \" At the end of the video the closing credits are shown.\"]}, \"v_bi_xkH87Rnw\": {\"duration\": 87.7, \"timestamps\": [[0, 87.7], [0, 4.82], [4.82, 6.14], [6.14, 81.56], [36.83, 40.34], [80.25, 87.7]], \"sentences\": [\"People watch a gymnast perform her routine.\", \"  The gymnast stands on the side of the balance beam.\", \"  The gyjmnast mounts the beam.\", \"  The gymnast performs her routine on the beam.\", \"  The gymnast almost falls, but catches herself.\", \"  The gymnast dismounts and lands on the blue mat.\"]}, \"v_4-rJZdNgMX8\": {\"duration\": 137.9, \"timestamps\": [[0, 3.45], [5.52, 17.24], [17.93, 101.36], [101.36, 137.9]], \"sentences\": [\"The logo \\\"theksiny on skin\\\" and \\\"The #1 Way to Not Get a Cold or Flu\\\" is shown on screen.\", \" Dr Lisa Kellett speaks to the camera in a medical exam room next to a sink.\", \" The doctor demonstrates the steps to washing hands like doctors do.\", \" The logo and website address appears on screen again.\"]}, \"v_cdEBDjnH9xk\": {\"duration\": 62.04, \"timestamps\": [[5.58, 29.16], [29.47, 56.77]], \"sentences\": [\"A man is seen putting objects onto a wall and place a board along the wall.\", \" He continues moving the objects on the wall and then nails them down with a nail gun and presents the shelves he's made.\"]}, \"v_sS1Zh8mqMOE\": {\"duration\": 108.11, \"timestamps\": [[0, 12.97], [13.51, 16.76], [17.3, 19.46], [20, 83.79], [84.33, 85.41], [88.65, 108.11], [84.87, 108.11]], \"sentences\": [\"A pair of shoes is displayed on a table while a man and a woman have a conversation.\", \" A woman challenges a man to arm wrestling.\", \" The man removes the shoes from the table.\", \" The woman and the man arm wrestle.\", \" The man beats the woman.\", \" He takes out the shoes and displays them back on the table.\", \" The woman and the man laugh as they carry on a conversation.\"]}, \"v_5v9p5jBN_Hg\": {\"duration\": 112.72999999999999, \"timestamps\": [[0.56, 17.47], [17.47, 25.93], [25.93, 104.84]], \"sentences\": [\"A woman talks in a gym.\", \" The woman stands on a lane, then she runs to perform a long jump that lands in the sand.\", \" The jump of the woman is repeated several times.\"]}, \"v_1AxGiLSmGZo\": {\"duration\": 60.16, \"timestamps\": [[0, 48.43], [38.5, 60.16]], \"sentences\": [\"Several people are seen kite surfing along the water and one performing tricks.\", \" More people perform tricks and one fall off the side, immediately climbing back on.\"]}, \"v_9Rd8PpfRNmY\": {\"duration\": 73.63, \"timestamps\": [[0, 45.28], [14.73, 17.3], [45.65, 53.38], [53.75, 72.16]], \"sentences\": [\"A child paints her toenails with white nail polish on front a little child.\", \" A person enters the room and walk on front the children.\", \" Then, the child turns to listen somebody for a second and continues painting her toenails.\", \" After, a hand touches the back of the child twice who turns and then continues painting her toenails.\"]}, \"v_BC1VpNRFtXo\": {\"duration\": 155.81, \"timestamps\": [[0, 37.39], [30.38, 119.19], [116.08, 155.81]], \"sentences\": [\"A small group of men are seen sitting at a table playing various hand games with one another.\", \" Then moves their hands which are shown in slow motion and leads into one speaking on the phone and leaving the room.\", \" The camera pans around the other people as they laugh.\"]}, \"v_C8IEqXTBod0\": {\"duration\": 75.09, \"timestamps\": [[0, 1.5], [1.88, 10.51], [10.89, 15.02], [15.02, 21.78], [21.78, 36.05], [36.42, 40.93], [40.93, 45.81], [45.81, 75.09]], \"sentences\": [\"We see the title screen for the video.\", \" We change to a woman putting on her cold weather clothes.\", \" She grabs a shovel and walks away.\", \" We see the lady sitting and laying on a chair and reading.\", \" The lady is outside shoveling the snow and talking.\", \" We see articles online about shoveling.\", \" The lady is jumping and warming up.\", \" We see a snowy city and then people shoveling snow.\"]}, \"v_VkdPyMG-Gvo\": {\"duration\": 212.35, \"timestamps\": [[0, 167.75], [168.82, 176.25], [177.31, 186.87]], \"sentences\": [\"A man plays alone pool hitting balls with a pole while going around the pool table.\", \" Then, the man hit a ball that enters the basket.\", \" After, the man shake hands with people from the audience.\"]}, \"v_Y75Fvr71aRQ\": {\"duration\": 144.71, \"timestamps\": [[1.45, 33.28], [37.62, 106.36], [106.36, 141.81]], \"sentences\": [\"A man is seen speaking to the camera while text appears on the screen.\", \" The man continues speaking and leads into him playing an instrument.\", \" He pauses his playing to hold up his hand while playing again and then stopping.\"]}, \"v_oSQNry_U7oA\": {\"duration\": 99.66, \"timestamps\": [[0, 18.44], [17.94, 34.38], [35.38, 98.17]], \"sentences\": [\"A trainer wearing a wet suit gives a walrus treats and the walrus nods his head up in town in excitement at the beginning of a show.\", \" The trainer plays a small saxophone and the walrus nods and is given a treat.\", \" The walrus is handed the saxophone and it plays it while the dancing with the trainer.\"]}, \"v_2RxbcK90TeA\": {\"duration\": 21.29, \"timestamps\": [[0.21, 21.08], [0.64, 4.9], [1.38, 13.2], [14.59, 20.02]], \"sentences\": [\"A woman and one other person paddle in an orange canoe in a calm body of water surrounded by mountains, trees, and bushes.\", \"  The woman is at the front of the canoe paddling and the other person, who is wearing a face covering hat, sits behind the woman.\", \"  The two people paddle from the left and pass a line of bushes in front of a mountain.\", \"  The two people then paddle further away from the mountain and closer to the middle of the body of water.\"]}, \"v_vMy5o7pvy4c\": {\"duration\": 6.94, \"timestamps\": [[0, 0.52], [0.49, 5.17], [5.24, 6.94]], \"sentences\": [\"A man swings his arms around over his head.\", \" He thin spins his whole body.\", \" The man releases the hammer and lowers his arms.\"]}, \"v_ITyNMYw_pxc\": {\"duration\": 65.62, \"timestamps\": [[0, 17.72], [17.06, 48.23], [43.64, 63.98]], \"sentences\": [\"Two men are seen standing before a game of darts and begin throwing darts onto the board.\", \" The men look back and laugh with one another while still playing.\", \" The continue to play with others around them and end by shaking hands with another.\"]}, \"v_NTZ_mWvnHVY\": {\"duration\": 162.59, \"timestamps\": [[0, 13.82], [13.01, 73.16], [73.16, 129.26], [130.88, 162.59]], \"sentences\": [\"Two people are standing by the water one of the grabs some board.\", \" He puts it in the water and rides it, it goes pretty fast.\", \" He turns it a few times and passes by someone else on another one.\", \" He gets off and walks to a field with it above his head.\"]}, \"v_G1aYtrFJqUc\": {\"duration\": 69.78999999999999, \"timestamps\": [[0, 5.93], [8.37, 35.24], [37.69, 69.79]], \"sentences\": [\"A man wearing gloves is inside a building.\", \" He rolls up a carpet and sets it aside.\", \" He then sweeps and mops the floors until they are clean.\"]}, \"v_cfhc7tf8vU4\": {\"duration\": 151.74, \"timestamps\": [[0, 31.11], [31.11, 66.01], [65.25, 114.57], [114.57, 151.74]], \"sentences\": [\"A tall Black male is standing outside clapping trying to gain the crowds participation.\", \"The athlete then takes off and does a triple jump into the pit.\", \"Once he gets out of the pit,he walks around and a replay is shown to make sure that he didn't scratch and the jump can be counted.\", \"Another man approaches the run way and repeats the same step but ends up scratching.\"]}, \"v_gdisMpHS668\": {\"duration\": 27.1, \"timestamps\": [[0.68, 9.76], [7.99, 20.59], [20.46, 26.83]], \"sentences\": [\"Two women are seen standing before a christmas tree with young children present as well.\", \" The people then all move around one another putting ornaments on the tree in fast motion.\", \" The girls continue putting items on the tree and end by smiling to the camera.\"]}, \"v_0jvbBtMIA8k\": {\"duration\": 224.32999999999998, \"timestamps\": [[0, 20.19], [25.8, 94.22], [95.34, 191.8], [192.92, 224.33]], \"sentences\": [\"A man is sitting on a chair next to a talk show host.\", \" A woman is hosting a beer pong tournament, and the two men go over to the table.\", \" They drink and try to throw the balls into the cups.\", \" The band plays in the background as the men play.\"]}, \"v_SmBEf-g82Ew\": {\"duration\": 90.05, \"timestamps\": [[3.6, 40.07], [34.67, 85.99]], \"sentences\": [\"A close up of tools and objects are shown laid out leading into several clips of a mean measuring a wall and laying plaster down on it.\", \" The man shows how to make plaster while transitioning with him making plaster and continues to show more clips of him laying it down.\"]}, \"v_tOEomEC1rY8\": {\"duration\": 86.61, \"timestamps\": [[0, 25.98], [26.85, 58.9], [58.03, 86.61]], \"sentences\": [\"A woman is sitting in a chair while a woman behind her is holding a hair dryer.\", \" She begins drying the woman's hair.\", \" The woman is talking to the camera pointing at a hair dryer.\"]}, \"v_x2DTmwZa8yE\": {\"duration\": 16.07, \"timestamps\": [[0, 6.11], [6.11, 16.07]], \"sentences\": [\"A man is sitting with a surgical mask on.\", \" He is cutting lemons up.\"]}, \"v_KptXzRFIvTw\": {\"duration\": 144.48, \"timestamps\": [[10.11, 20.95], [20.95, 48.4], [48.4, 62.12], [62.12, 96.08], [96.08, 122.08], [122.08, 135.08], [135.08, 144.48]], \"sentences\": [\"A person named Chad wearing a black and gray jacket is standing next to a Christmas tree and giving a tutorial on how to decorate it.\", \" He is holding a crystal star in his hands which he places on top of the tree.\", \" Then he takes some Christmas lights lights and twirls it around the branches of the tree.\", \" He takes a red garland and demonstrates how to wrap it around the tree.\", \" He then takes some red and gold ornaments and shows how to place them on the tree.\", \" He also takes a red ribbon and red berries to add to the tree.\", \" He stands next to the fully decorated tree as he completes his tutorial.\"]}, \"v_HhlWUEbHBUk\": {\"duration\": 90.33, \"timestamps\": [[0, 27.1], [27.1, 39.74], [39.74, 61.87], [61.87, 90.33]], \"sentences\": [\"A guy shows you how to make a drink,the guy pours ice in a tall glass,adds a half cup of a certain type of liquor and pour it in the cup with the ice.\", \"He then adds soda to the cup which makes the cup full to the top and starts to stir it up with a metal tool.\", \"the guy then squeezes three half limes into the cup and push the three lime to the bottom of the cup with the metal tool he use to stir the drink.\", \"finally he pours the drink from the tall glass to a shorter glass,adds a different type of liquor with a straw to finish it off.\"]}, \"v_kcPbEkv5UXE\": {\"duration\": 213.35, \"timestamps\": [[0, 205.88], [66.14, 213.35], [92.81, 103.47], [205.88, 213.35]], \"sentences\": [\"A girl plays a drum set in a city plaza for passing people.\", \" A lady walks up to watch the drummer play.\", \" The drummer plays a solo on the cymbal.\", \" The drummer ends the song and bows to the audience.\"]}, \"v_0qTzoVjsMpQ\": {\"duration\": 225.75, \"timestamps\": [[33.86, 41.76], [82.4, 125.29], [130.93, 151.25], [161.41, 168.18], [218.97, 225.75]], \"sentences\": [\"A man fills a hookah with water and sets it on a table.\", \" He puts tobacco in a device and covers it with tin foil.\", \" He pokes a hole in the top of the tin foil several times.\", \" He puts that onto the top of the hookah.\", \" He takes a smoke off the hookah and blows the smoke.\"]}, \"v_X1lLinc_yvo\": {\"duration\": 201.55, \"timestamps\": [[0, 48.37], [48.37, 201.55]], \"sentences\": [\"woman is standing in a kitchen in front of a camera and showing ingredients on top of table.\", \" woman is pouring the ingredients inside a kitchen aid and mixing them and explaining to the camera how to do the paste.\"]}, \"v_XPcBV3UatRI\": {\"duration\": 61.07, \"timestamps\": [[0, 11.3], [11.6, 45.19], [45.19, 61.07]], \"sentences\": [\"A toddler iron a garment on a toy board.\", \" The toddler sprays the garment and folds, then she continues ironing it.\", \" Then, the toddler fold again the garment and iron it.\"]}, \"v_zD_wAe6Eoxc\": {\"duration\": 226.57999999999998, \"timestamps\": [[0, 15.86], [15.86, 54.38], [56.65, 137.08], [137.08, 207.32], [207.32, 226.58]], \"sentences\": [\"A Caucasian male is outside holding up a skateboard.\", \"He then goes down a winding road and comes down skateboarding and the picture is still until he slides into a trick and then it is paused again.\", \"The routine continues and then the player stands up as  continue to go down the road.\", \"Once he is completely finished, he goes back to where he originally started and keeps talking to the camera as he holds his skateboard in his left hand.\", \"After, the man turns around and shows how his brown cargo shorts are patched up with duct tape.\"]}, \"v_XKpx9fyNINg\": {\"duration\": 194.89, \"timestamps\": [[0, 28.26], [28.26, 194.89]], \"sentences\": [\"A close up of a person putting on a rack is shown followed by several women lifting up large amounts of weight.\", \" More people are seen lifting up the heavy weights over their head and throwing it down when they are done.\"]}, \"v_BbJeZoks_c4\": {\"duration\": 216.06, \"timestamps\": [[0, 65.9], [59.42, 169.61], [144.76, 213.9]], \"sentences\": [\"Several people are seen sitting outside at a picnic table and leads into two people tying a rope around a tree.\", \" More people come to help and lead into a boy walking on the rope with a man's help.\", \" More people attempt to walk on the rope with other's help as well as by themselves.\"]}, \"v_UvuXGKesWS0\": {\"duration\": 102.8, \"timestamps\": [[0, 8.22], [8.22, 33.41], [33.41, 39.58], [39.58, 65.27], [65.27, 70.41], [70.41, 102.8]], \"sentences\": [\"The words Freestyle Swimming float across the screen.\", \" A man jumps in the pool and swims freestyle.\", \" The words BackStroke Style float across the screen.\", \" The same man swims backstroke down the lane from where he came.\", \" The words BreastStroke show up on the screen.\", \" The man does the breaststroke back across the pool.\"]}, \"v_8hkVzhEKqpY\": {\"duration\": 68.11, \"timestamps\": [[0, 20.43], [22.47, 45.29], [46.31, 56.87], [60.95, 68.11]], \"sentences\": [\"A man and woman news reporter are sitting in front of a tv screen as they talk.\", \" They then show clips from an outdoor volleyball game.\", \" The team mates hit the ball back and forth over the net.\", \" Afterward, they shake hands with their opponents.\"]}, \"v_gwbRqyRZguM\": {\"duration\": 25.59, \"timestamps\": [[0, 2.56], [4.22, 20.34], [20.73, 25.59]], \"sentences\": [\"A group of children are swinging together on a piece of equipment.\", \" They are shown in groups, swinging back and forth on the platform.\", \" They are located in an outdoor park.\"]}, \"v_Qt2ktBj1l-Y\": {\"duration\": 80.95, \"timestamps\": [[0.81, 7.69], [7.69, 80.95]], \"sentences\": [\"The typing noise from the typewriter is going in the beginning and the title of a story that was typed is shown.\", \" Then two men are shown shoveling snow outside off of statues and the ground and when they're done, someone falls to the ground.\"]}, \"v_E6LJROCxQPA\": {\"duration\": 38.52, \"timestamps\": [[0, 9.63], [9.44, 28.51], [25.81, 37.94]], \"sentences\": [\"A person is seen walking across the yard leading into a long rope.\", \" The man jumps on the rope and attempts to walk across it.\", \" He continues walking and leads into him falling off.\"]}, \"v_9PRK4oy1hhY\": {\"duration\": 38.41, \"timestamps\": [[0, 15.55], [15.55, 38.41]], \"sentences\": [\"A reporter interview two boys and a little boy.\", \" Then, the big boys and the small boys play soccer table while the reporter continue the interview.\"]}, \"v_1-nEQf-TJPE\": {\"duration\": 55.64, \"timestamps\": [[0, 4.45], [5.01, 13.35], [15.02, 55.64]], \"sentences\": [\"A video of vodka being poured into a martini glass is shown.\", \" A woman stands behind a bar with bottles and ingredients.\", \" She mixes the alcohols into a glass, then shakes them up before decorating and displaying the drink.\"]}, \"v_M4db4WfqDoE\": {\"duration\": 163.07, \"timestamps\": [[0, 39.95], [41.58, 117.41], [114.97, 163.07]], \"sentences\": [\"A large snowy mountain is shown as well as people driving and people standing along a mountain.\", \" Several shots are shown of people on snowboards, performing tricks, and gesturing to the camera.\", \" The video continues on with impressive clips of people doing stunts as well as close ups of people riding.\"]}, \"v_I9kOPQ3J5HA\": {\"duration\": 92.63, \"timestamps\": [[0, 6.95], [34.27, 41.68], [45.39, 73.64]], \"sentences\": [\"A woman puts a harness on.\", \" A man clips a rope to the front of the woman's harness.\", \" He ties the rope into a knot.\"]}, \"v_ykdPTjsmfgY\": {\"duration\": 142.32, \"timestamps\": [[0, 7.12], [7.83, 142.32], [31.31, 36.29], [51.95, 55.5], [99.62, 115.28], [122.39, 127.37]], \"sentences\": [\"A person stands by a river.\", \" A group of people wearing vests kayak down a river.\", \"  A person holds their paddle over their head.\", \" A couple of people are sitting by the river in a grassy area.\", \"The people kayaking approach a bridge.\", \" A couple of people sit near some cars next to the river.\"]}, \"v_BD_ON66t6rM\": {\"duration\": 48.74, \"timestamps\": [[0, 17.79], [18.52, 48.74]], \"sentences\": [\"A man is kayaking on water and moving his arms back and fourth quickly.\", \" The camera follows him moving through the water and eventually works his way towards a bridge.\"]}, \"v_hToIzZ3o6Ic\": {\"duration\": 129.2, \"timestamps\": [[0.65, 14.21], [14.86, 44.57], [45.22, 51.03], [51.68, 114.34], [114.98, 117.57], [118.21, 128.55]], \"sentences\": [\"The credits of the clip alongside a bucket of paint are shown.\", \" A hand paints a wardrobe white with a paintbrush.\", \" The hand picks up a white rug.\", \" The hand places two fingers inside the rug and proceeds to whip the painted wardrobe.\", \" The final product of the painted wardrobe is shown.\", \" The credits of the video are shown.\"]}, \"v_cg0sa6wYA1U\": {\"duration\": 192.73, \"timestamps\": [[0, 98.29], [94.44, 192.73]], \"sentences\": [\"A person's arms are seen moving back and fourth in the water controlling a kayak under some tombs sticking out of the water.\", \" The man continues pushing his way along and ends with him sticking his pole into the water.\"]}, \"v_0Gr4aKQzGYk\": {\"duration\": 67.43, \"timestamps\": [[0, 14.83], [14.5, 58.66], [59.68, 67.43]], \"sentences\": [\"Various shots of a tattoo shop are shown followed by a woman sitting in a chair and a man getting items ready.\", \" She takes a sip of water and the man then pierces her lip with a needle.\", \" She is shown again in a picture of her new piercing.\"]}, \"v_eaFvnf8IF-I\": {\"duration\": 66.78, \"timestamps\": [[0, 66.78], [8.01, 20.03], [55.09, 66.78]], \"sentences\": [\"A man is playing an accordian while staring occasionally into the camera.\", \" The man changes his finger tips constantly and looks off into the distance while playing.\", \" The man continues his song and eventually finishes by smiling into the camera.\"]}, \"v_o1bO6f-Uo8A\": {\"duration\": 141.97, \"timestamps\": [[0, 15.62], [15.62, 46.14], [46.14, 86.6], [86.6, 141.97]], \"sentences\": [\"A man in the front yard showing how to mow the lawn.\", \" He first moves all the debris out of the way so that nothing gets caught in the mower before mowing.\", \" Then he uses a stethoscope to listen to the mower while he puts oil in it.\", \" He suggest that you finish mowing by sunset and if you are using a pushing mower you should keep your back striaght and arms bent.\"]}, \"v_m7vcstRI23E\": {\"duration\": 159.07999999999998, \"timestamps\": [[0, 11.93], [12.73, 39.77], [41.36, 93.86], [95.45, 139.99], [140.79, 159.08]], \"sentences\": [\"A little girl is standing in a kitchen in front of a bowl and sugar cookie mix.\", \" The girl starts showing the ingredients to her audience, before pouring the cookie mix into a bowl.\", \" She then adds butter and egg yolks, and stirs the whole thing up using a hand mixer.\", \" She rolls the dough in plastic wrap before spreading it back out and cutting into shapes with cookie cutters.\", \" The cookies are baked and ready to frost with sprinkles and frosting.\"]}, \"v_FkWxS_5VxsM\": {\"duration\": 103.19, \"timestamps\": [[0.52, 10.32], [10.83, 14.45], [14.96, 19.09], [20.12, 31.47], [31.99, 44.89], [45.4, 69.14], [69.65, 76.36], [81, 98.55], [99.58, 103.19]], \"sentences\": [\"The credits of the clip are shown.\", \" A polished hands takes a piece of tape.\", \" The polished hands puts a piece of tape at the edge of a brown object.\", \" The hand paints turquoise polish on the tape.\", \" The hand cuts the the polished tape in strips.\", \" The hand puts the strip on a polished nail.\", \" The hand paints the nail with clear nail polish.\", \" The hand rubs a soaked cotton ball on a fingernail so the polish is removed.\", \" The credits of the video are shown.\"]}, \"v_Jp7KeCimrMI\": {\"duration\": 89.0, \"timestamps\": [[0, 52.96], [52.96, 64.53], [66.31, 89]], \"sentences\": [\"A man stretches out shirts on an ironing board in a workshop area and uses a flat iron to steam press it.\", \" The man removes the ironed shirt and places it on a hanger.\", \" The man gives the shirt one more quick ironing on a single spot then hangs the shirt on a rack.\"]}, \"v_YotaXgC6Ee8\": {\"duration\": 110.53, \"timestamps\": [[0, 110.53], [101.68, 110.53], [105, 110.53]], \"sentences\": [\"A man jumps off a diving board into a pool several times.\", \" Another person is swimming in the pool.\", \" He does a flip and lands in the water before surfacing.\"]}, \"v_Z_1Zoc6lINU\": {\"duration\": 210.61, \"timestamps\": [[0, 4.21], [4.21, 203.23], [28.43, 36.86], [46.33, 62.13], [68.45, 91.61], [102.14, 143.21], [143.21, 161.11], [169.54, 193.76], [205.34, 210.61]], \"sentences\": [\"We see an opening title screen.\", \" We see a lady sitting at a table with shoes and supplies talking to the camera.\", \" We see screens with shoes on them.\", \" The lady shows us various shoes.\", \" The lady shows us the shoe supplies.\", \" The lady adds a product to the shoes.\", \" The lady then wipes the product off with a towel.\", \" The lady then adds shoes wax to the shoe and wipes it off.\", \" We see the closing title screen.\"]}, \"v_3UbQ0UDmbbw\": {\"duration\": 425.65, \"timestamps\": [[51.08, 366.05], [10.64, 31.92], [10.64, 65.97], [65.97, 185.16], [185.16, 397.98]], \"sentences\": [\"A man clears snow from a car in snow covered parking lot.\", \"  A man in a narrow hallway holds and directs a camera in the hallway, presses a button in the hallway, then exits through the door in the hallway and goes outside.\", \"  Once outside the camera picks up a snow covered parking lot filled with snow covered cars and one girl in pink pants.\", \"  A man holding a long snow removing brush approaches a car and begins wiping snow off of the car at times gesturing wildly with his arms.\", \"  The man clears the entire car with snow, with the brush and a shovel before the scene cuts to a vehicle driving down the street in the snow.\"]}, \"v_szdKUpvx9Sk\": {\"duration\": 167.34, \"timestamps\": [[0, 15.9], [15.9, 48.53], [48.53, 84.51], [85.34, 129.69], [130.52, 144.75], [144.75, 167.34]], \"sentences\": [\"We see men standing around in a casino holding beers.\", \" We see a man and put money on the table.\", \" The dealer counts the money and gives the man chips.\", \" The dealer deals a hands of blackjack and the we see the men clapping and the dealer laughing.\", \" We see the dealer give the man chips and the man stands in his group showing his friends his stack of chips.\", \" Two men cheer and throw their fists in the air and the me laugh and cheer and walk.\"]}, \"v_kHTcsP6nQdY\": {\"duration\": 52.13, \"timestamps\": [[0, 20.07], [20.07, 22.68], [22.94, 28.67], [28.67, 52.13]], \"sentences\": [\"A child slides down a slide.\", \" He pauses as another slides down.\", \" He slides down as she stops.\", \" He runs up to her and she slides down to the end.\"]}, \"v_G16xScfD5WM\": {\"duration\": 103.78, \"timestamps\": [[0, 4.15], [4.15, 8.82], [8.3, 93.41], [19.72, 24.39], [33.73, 36.84], [36.84, 40.48], [40.48, 42.03], [93.41, 103.78]], \"sentences\": [\"We see the title over a landscape.\", \" People are playing instruments in a field.\", \" We then see men practicing martial arts.\", \" A man kicks another  man to the ground.\", \" We see a man toss another man over his back.\", \" A man does a flip, then does a back flip.\", \" We see the people playing instruments again.\", \" 130 We see words appear on the screen, and the end credits appear.\"]}, \"v_sMO2IlNgDuw\": {\"duration\": 175.52, \"timestamps\": [[0, 77.23], [76.35, 141.29], [138.66, 174.64]], \"sentences\": [\"A young child is seen playing with a toy and putting lip stick on her lips.\", \" The camera is then seen moving around a room, walking down stairs and following the young girl.\", \" The girl walks back into her room to play with her toy while the camera follows.\"]}, \"v_klGP18026Ek\": {\"duration\": 86.36, \"timestamps\": [[0, 84.63], [50.52, 52.68], [55.27, 85.06]], \"sentences\": [\"Two men play games of rock paper scissors in front of a referee.\", \" A woman taps one of they on the back.\", \" They play a final game and a man celebrates his victory.\"]}, \"v_gGs1qNxsFTg\": {\"duration\": 19.9, \"timestamps\": [[0, 19.9], [2.29, 17.71], [17.91, 19.9]], \"sentences\": [\"A man is sitting behind a table.\", \" He picks up a rubiks cube and completes it.\", \" A man stands next to him and writes something on a paper.\"]}, \"v_mOrhfrmmxAQ\": {\"duration\": 34.02, \"timestamps\": [[0, 19.05], [13.95, 32.83]], \"sentences\": [\"A boat is seen riding along the water with a person riding on skis behind.\", \" The person does a flip and lands backwards into the water.\"]}, \"v_Yp9DBq34bFQ\": {\"duration\": 81.61, \"timestamps\": [[2.45, 26.11], [27.34, 81.61]], \"sentences\": [\"A woman is seen squeezing lotion out of a bottle onto her skin and rubbing it into her arms.\", \" More pictures are shown on the screen of people and lotions as well as steps on how to use it properly.\"]}, \"v_1Cf8TkmsbMU\": {\"duration\": 136.0, \"timestamps\": [[0, 11.56], [12.24, 28.56], [29.24, 89.76], [90.44, 104.04], [104.72, 125.8], [125.8, 136]], \"sentences\": [\"We see a young man speaking in a news studio.\", \" We see a man riding a stationary bike and see a photo of the man holding a cake.\", \" We see the man being interviewed cut with scenes of the man working out.\", \" We see the man in the image holding the cake again and see the man in the shirt which no longer fits and is too big.\", \" We see the man working out again.\", \" We see three newscasters in the studio.\"]}, \"v_LL_leiyIdVQ\": {\"duration\": 181.81, \"timestamps\": [[0, 101.82], [70.91, 181.81]], \"sentences\": [\"Various people are shown in the beginning in a large gymnasium performing several slips and tricks on a trampoline one at a time.\", \" The people continue jumping and flipping around the gym with one ending in a large pit in the end.\"]}, \"v_JnP5FDtEPVE\": {\"duration\": 59.84, \"timestamps\": [[2.99, 3.89], [19.15, 42.19], [43.38, 49.67]], \"sentences\": [\"The groomer sprays the brown dog.\", \"  The dog runs around the shop.\", \"  The groomer bushes the brown dog.\"]}, \"v_RoHYo2x9gbc\": {\"duration\": 141.22, \"timestamps\": [[0, 141.22], [57.2, 63.55], [64.26, 80.5], [81.2, 141.22]], \"sentences\": [\"We see three men in a field cutting tall grass with a scythe.\", \" We see the man take a handful of grass and wipe the scythe head with it.\", \" The man pulls something from his pocket and rubs it on the scythe.\", \" The men then return to cutting the grass.\"]}, \"v_8kNk_fzmTyI\": {\"duration\": 84.31, \"timestamps\": [[0, 36.68], [34.99, 84.31]], \"sentences\": [\"An intro leads into several shots of water steaming and a young woman swimming back and fourth in the water.\", \" She comes up to the surface and speaks to the camera while several more shots of water are shown.\"]}, \"v_WmabLngcvas\": {\"duration\": 126.69, \"timestamps\": [[0, 30.41], [33.57, 91.85], [76.01, 122.25]], \"sentences\": [\"A man is seen sitting on a camel followed by getting off and another man climbing on.\", \" The man then leads the other around on the camel.\", \" The man stops the camel and gets the other person off while climbing back on.\"]}, \"v_AtHnNOkaoUk\": {\"duration\": 229.09, \"timestamps\": [[4.58, 96.22], [67.58, 171.82], [171.82, 229.09]], \"sentences\": [\"A camera zooms in on a large truck that shows a person walking around from behind as well as another.\", \" The men begin pulling a rope and working from the back while the cameraman speaks to the camera.\", \" The man continues to pan around the snowy area and watch the men work from behind.\"]}, \"v_Zfak-LkgQfQ\": {\"duration\": 132.62, \"timestamps\": [[0, 11.94], [13.93, 26.53], [29.18, 107.43], [108.76, 127.99]], \"sentences\": [\"A logo fro a company pops up on a black screen.\", \" A man in a yellow jacket and orange helmet is shown ocean kayaking.\", \" Other kayakers are shown battling through waves and riding them.\", \" A set of photos show the kayakers navigating the ocean and crashing into waves.\"]}, \"v_Qq2vKc9hWUk\": {\"duration\": 46.81, \"timestamps\": [[0, 4.92], [5.38, 12.64], [14.51, 46.81]], \"sentences\": [\"A woman is standing inside a racquetball court.\", \" She starts hitting the ball, running after it.\", \" She trips and falls down, hitting the ground as a man rescues the ball.\"]}, \"v_cxVbaN4GxxU\": {\"duration\": 179.31, \"timestamps\": [[0, 8.07], [10.76, 39.45], [39.45, 93.24], [95.03, 112.96], [114.76, 179.31]], \"sentences\": [\"A man stands  outside a tent.\", \" He looks inside the tent at a group of kids playing cards and a woman sitting outside.\", \" A boy walks through parked cars, smiling.\", \" He is then shown on a kayak in a lake.\", \" The rest of the family soon joins him.\"]}, \"v_MAZlsi4Bon8\": {\"duration\": 10.61, \"timestamps\": [[0, 10.61], [8.86, 10.61], [9.76, 10.61]], \"sentences\": [\"A young boy is at a party holding a stick and hitting a pinata.\", \" When the boy is done hitting it an adult walks towards the pinata.\", \" Another child standing with the adult also begins walking towards the pinata.\"]}, \"v_eS7ENymCpZE\": {\"duration\": 64.73, \"timestamps\": [[0, 64.73], [25.24, 45.63], [45.63, 61.82]], \"sentences\": [\"A rough ocean has large white capped waves and a sailboat traversing through it.\", \" The sailboat goes over the top of  large waves and lands with a splash.\", \" The boat maneuvers and is tilted sideways as it goes over waves.\"]}, \"v_e4YsOfQR3sI\": {\"duration\": 160.5, \"timestamps\": [[0, 160.5], [21.67, 28.09], [36.91, 160.5], [40.93, 72.22], [105.13, 140.43]], \"sentences\": [\"A woman sits at a piano and plays in front of a small audience.\", \" The camera focuses on several men watching her.\", \" The woman sings with the piano.\", \" The camera captures the reaction of the members of the audience.\", \" The camera captures more reaction shots from the audience.\"]}, \"v_THPFtlx3gXw\": {\"duration\": 215.44, \"timestamps\": [[0, 10.77], [16.16, 183.12], [189.58, 215.44]], \"sentences\": [\"A man is standing on a hill, celebrating before a crowd.\", \" He is shown on a bmx dirt bike, performing a plethora of stunts, wheelies, and spins for a crowd.\", \" Women are shown close up, dancing.\"]}, \"v_UMUGmKRkaxo\": {\"duration\": 126.18, \"timestamps\": [[0, 37.22], [2.52, 31.54], [31.54, 72.55], [78.23, 126.18]], \"sentences\": [\"Two boys play ping pong in a gym and one of the boys use a Nunchaku as a racket t o play and make tricks.\", \" A man pass on front the ping pong table and stand near the table.\", \" Then, the man joint one of the players and start to play, after, Bruce Lee appears in the screen of a smart phone that flips around.\", \" A boy does martial arts moves and braks a board, then he fix the  Nunchaku and after use it to light a match in the mouth of the other boy.\"]}, \"v_lDriXPZt_Yg\": {\"duration\": 83.38, \"timestamps\": [[0, 9.59], [15.01, 62.54], [64.62, 83.38]], \"sentences\": [\"A woman is holding a bottle of purple nail polish up to the camera.\", \" She then applies it to her nails.\", \" When she is done, she shows off her nails and the polish one last time.\"]}, \"v_qeyCTRqPCN4\": {\"duration\": 133.91, \"timestamps\": [[0, 0.67], [6.03, 117.84], [113.82, 120.52], [117.84, 133.91]], \"sentences\": [\"Bullfighting is being advertised on the screen.\", \"  There are clips of bull fights and man is talking about his bull fighting experience.\", \" The bull rolls a barrel while the clown is behind it.\", \" A trophy is awarded to the bull fighter.\"]}, \"v_V6s9eMtUnME\": {\"duration\": 103.17, \"timestamps\": [[0.52, 27.34], [27.34, 30.95], [31.47, 33.53], [33.01, 67.06], [66.03, 69.12], [69.12, 88.21], [88.21, 102.14]], \"sentences\": [\"A woman standing next to a vehicle talks to the camera while occasionally gesturing at the vehicle.\", \" The woman holds up a bottle of spray.\", \" The woman sprays the vehicle's window with the bottle.\", \" The woman uses a towel to clean the window.\", \" The woman talks to the camera again.\", \" The woman returns to cleaning the window.\", \" The woman talks to the camera once more.\"]}, \"v_M0mLgp8VxpY\": {\"duration\": 53.76, \"timestamps\": [[0, 12.9], [13.44, 45.15], [49.72, 50.53]], \"sentences\": [\"A shuffleboard is shown in a room.\", \" A man in a blue sweater throws a ball down the shuffleboard.\", \" A glass of beer is shown.\"]}, \"v_g6L-l5sgFEQ\": {\"duration\": 150.23, \"timestamps\": [[0, 7.51], [8.26, 57.84], [57.84, 129.95], [129.95, 132.21], [132.96, 150.23]], \"sentences\": [\"We see the title card and a pained dresser.\", \" A lady sits on the floor and discusses painting.\", \" The lady paints the dresser while talking about it.\", \" We see the painted end product.\", \" We see the end cards for the video.\"]}, \"v_OZiArYAPXDo\": {\"duration\": 184.89, \"timestamps\": [[0, 4.62], [4.62, 50.85], [50.85, 169.18], [169.18, 184.9]], \"sentences\": [\"An older video of bad quality begins to play and there are white words on red blocks that read \\\"Leichtathletik leicht gemacht Diskus\\\".\", \"A disc is flying through the air and lands on a field, then a still shot picture of a naked man holding a disc briefly appears until another clip plays of a man on a large field throwing a disc.\", \"A man is now sitting on a field and the words on the screen say that he is \\\"Lars Riedel\\\" and under it the word \\\"Olympiasieger\\\", and it shows him talking while switching back and forth to clips of a man on a field is holding a disc on the field, swinging it and then throwing it.\", \"The still shot picture of the naked man holding the dickus shows up again and then goes back to clips of the man who is now just walking on the field.\"]}, \"v_j3P7ttoKGeY\": {\"duration\": 94.69, \"timestamps\": [[0, 15.62], [15.62, 34.56], [34.09, 57.29], [57.29, 73.86], [73.86, 94.69]], \"sentences\": [\"A group of people begin to walk in a room and they begin to play a game of Foosball.\", \"The game begins to intensifies and the men begin to look at each other in the eye as they start to make goals.\", \"Once the first game is finished,another set of men begin to compete and starts to clip the ball over the people.\", \"Next,women join and starts to roll the ball on the edge of the table as they make goals.\", \"Finally,a man appears with a Nokia phone recording the game and shows video options of different tricks that were performed.\"]}, \"v_87hjft6OBiU\": {\"duration\": 71.28999999999999, \"timestamps\": [[11.41, 61.66], [18.53, 63.8]], \"sentences\": [\"There is a man shown lifting a weight that weighs over 90 pounds.\", \" There is a woman who's running on the treadmill behind him.\"]}, \"v_Tywf5EzWntY\": {\"duration\": 157.17000000000002, \"timestamps\": [[0, 18.86], [24.36, 82.52], [91.16, 157.17]], \"sentences\": [\"A skier is adjusting his shoes on the board.\", \" Then he is seen flying through the air on the water board.\", \" He is skiing while attached to the back of a boat.\"]}, \"v_6Lh3yNFvskc\": {\"duration\": 54.46, \"timestamps\": [[4.9, 44.93], [45.21, 52.56]], \"sentences\": [\"A player holding a basketball dribbles the ball, run and jump to throw the ball in the basket several times.\", \" A man throw a basketball in the court and then leave.\"]}, \"v_brY1jVHquE0\": {\"duration\": 67.04, \"timestamps\": [[0, 19.78], [15.08, 52.96], [50.28, 67.04]], \"sentences\": [\"A young child is seen holding onto a stick in a living room while pushing a ball around.\", \" The boy continues pushing the ball around while the camera captures his movements.\", \" He stops to speak to the camera and continues hitting the ball around.\"]}, \"v_qtOP38458F4\": {\"duration\": 54.36, \"timestamps\": [[0, 4.08], [4.62, 12.5], [13.05, 43.49], [48.38, 54.36]], \"sentences\": [\"A male gymast prepares to mount a beam.\", \" He jumps up, doing an handstand on the bar.\", \" He then spins and flips several times.\", \" He dismounts, throwing his arms up in the air.\"]}, \"v_Y6rHCVo28kM\": {\"duration\": 144.22, \"timestamps\": [[1.44, 45.43], [33.17, 116.82], [101.68, 140.61]], \"sentences\": [\"A person is seen sitting in a chair with a woman standing behind him cutting his hair.\", \" She continuously combs his hair and measures it along the side.\", \" She finally finishes the cut and fades away from his face.\"]}, \"v_iZlG0UOtImQ\": {\"duration\": 158.94, \"timestamps\": [[0, 42.12], [42.12, 83.44], [83.44, 125.56], [125.56, 144.64], [144.64, 158.94]], \"sentences\": [\"A blond boy holding a pool stick is hitting balls on a pool table that is sectioned off from yellow tape while a large crowd is gathered outside of the yellow tape.\", \" The boy grabs another stick from under the pool table, puts it on the table, chalks his stick,and then successfully hits the ball into the hole despite a woman trying to distract him.\", \"The boy goes around the table and continues to hit the remaining balls into the holes, the crowd cheers him on, and he goes around the crowd and gives everyone high fives.\", \" The boy hugs the woman who was trying to distract him the whole time, he puts his stick down, and she hugs him again.\", \" A black screen appears and white words on the screen say \\\"The Black Widow Jeanette Lee Worlds Best Female Pool Player A Ron Hawks Video\\\".\"]}, \"v_0z7qHOca3D4\": {\"duration\": 115.5, \"timestamps\": [[0, 5.2], [5.2, 13.28], [13.86, 15.01], [14.44, 38.69], [39.85, 41.58], [45.62, 57.17], [57.75, 61.21], [61.79, 65.26], [66.41, 75.65], [76.23, 82.58], [83.16, 98.17], [101.64, 115.5]], \"sentences\": [\"An introduction graphic is seen with title.\", \" A large empty beach is seen seen from the shore.\", \" A bird is seen walking along the shoreline.\", \" A group rides horses along the coast line together.\", \" Different species of flowers are seen.\", \" The group rides up along the bluffs.\", \" A female rider rides near the waters edge.\", \" The group rides through loose sand and the horses kick it up into the air.\", \" The group rides along a dune section and through some low vegetation.\", \" The group rides at a gallup through the water and along the beach.\", \" The riders ride slowly and then it becomes later in the day and the sun is getting low.\", \" The beach is seen from a distance as the sun has set.\"]}, \"v_jQgAdClKvDE\": {\"duration\": 193.96, \"timestamps\": [[0, 21.34], [22.31, 91.16], [96.01, 150.32], [152.26, 169.71], [173.59, 193.96]], \"sentences\": [\"A man in a neon coat is driving a car with the camera on a stick outside the window.\", \" He drives quickly on the snow, laughing as he records himself.\", \" He and his passengers stand on a snowy mound, spinning as they record themselves.\", \" They then use saws to cut a path in the snow.\", \" They water ski on the frozen water path.\"]}, \"v_E33xUgVqEH0\": {\"duration\": 32.49, \"timestamps\": [[0, 28.42], [28.59, 32.49]], \"sentences\": [\"A person cleans an extremely dirty sink with a paper towel.\", \" The title, TubOTowels, appears on the screen.\"]}, \"v_E_Z4BceegCQ\": {\"duration\": 89.34, \"timestamps\": [[0, 15.64], [0, 57.18], [15.64, 20.55], [20.55, 30.83], [30.83, 57.18], [57.18, 64.33], [64.33, 69.69], [69.69, 89.35]], \"sentences\": [\"A young man in white runs on the stage dancing.\", \" Other men are dancing in the background.\", \" A smaller boy runs on stage, confused.\", \" A man with a microphone talks to the young kid.\", \" The young boy starts dancing.\", \" Everyone on the stage stops dancing.\", \" The men point to the singer.\", \" The singer in red starts dancing.\"]}, \"v_aTvt_fP243g\": {\"duration\": 45.26, \"timestamps\": [[0, 7.01], [5.2, 45.26]], \"sentences\": [\"A yellow cloth, yellow and green sponge, and a cif creme cleaner is placed on the counter next to a shallow sink with silver drainer.\", \" A hand pour a drop of Cif creme, wiped it with the green side of the sponge, wiped it in circular motion, then wipe the counter with yellow cloth.\"]}, \"v_uWguPHhQON4\": {\"duration\": 38.27, \"timestamps\": [[0, 5.74], [9.18, 22.58], [26.4, 38.27]], \"sentences\": [\"A man prepares his supplies near a picnic table and then sets one down.\", \" The man pours lighter fluid in a camp fire ring.\", \" The man retrieves matches which drops onto the fire and it erupts in flames.\"]}, \"v_VFvHqc5Bg-0\": {\"duration\": 174.29, \"timestamps\": [[0.87, 165.57], [6.97, 64.49], [64.49, 169.06]], \"sentences\": [\"A group of people in snow gear are shown snow boarding on snow covered snow slopes with visual emphasis shown to a particular snow boarder in a green coat.\", \"  A man in a green coat snow sleds over many surfaces up and down slopes as he passes other snow sledders while surrounded by bare brown foliage and snow covered roofs and hills.\", \"  As the man snowboards, one person he passes falls down and break his sled and several of the other skiers perform trick as they snowboard including snow boarding off of elevated platforms and doing jumps as they snow board.\"]}, \"v_w9LRKWLmw0A\": {\"duration\": 144.43, \"timestamps\": [[0, 142.26], [0.72, 26.72], [61.38, 138.65]], \"sentences\": [\"A little boy mops a wooden ramp, barefoot,outdoors with a mini mop and bucket of water.\", \"  A young boy stands outside, without a shirt, barefoot and jeans and mops a wooden ramp with a yellow mini mop.\", \"  The boy dunks the mop in water after awhile and continues to mop the ramp.\"]}, \"v_f--wWfsr0zA\": {\"duration\": 104.49000000000001, \"timestamps\": [[0, 7.84], [16.2, 57.47], [60.08, 87.77], [93.52, 104.49]], \"sentences\": [\"A news woman is speaking inside a news room.\", \" A couple of professional dancers are shown dancing and performing ballet on a stage, with the female occasionally shown speaking to the camera.\", \" She is seen walking out after a performance to see a room filled with people and do a press conference.\", \" A poster of three women is shown at the end.\"]}, \"v_1GQARL4coRo\": {\"duration\": 117.82, \"timestamps\": [[0, 107.22], [43, 52.43], [63.62, 78.35], [80.71, 86.6], [100.74, 106.63]], \"sentences\": [\"A man paddles a surfboard with a baby on the board in front of him.\", \" He momentarily lifts the baby up to a standing position.\", \" A woman moves towards the man and the baby.\", \" The man momentarily lifts the baby up to a standing position again.\", \" The man momentarily lifts the baby up to a standing position once more.\"]}, \"v_PcSnU_nGi5E\": {\"duration\": 82.28999999999999, \"timestamps\": [[1.65, 63.36], [4.94, 15.22], [59.25, 82.29]], \"sentences\": [\"The man in brown shirt is standing next to a pile of tennis ball while he is talking to the camera.\", \" He played tennis ball with another person.\", \" The man in purple shirt serve the ball while the black man hit the ball back.\"]}, \"v_6aHGUTy1iho\": {\"duration\": 81.94, \"timestamps\": [[0, 22.12], [23.35, 53.67], [55.72, 81.94]], \"sentences\": [\"A camera pans around an athletic field with various people warming up and holding sticks.\", \" A girl holding a stick is spoken to by an instructor and she runs through and throws the pole.\", \" She walks back while another grabs a rope to estimate her distance.\"]}, \"v_gEqT50dX-iY\": {\"duration\": 76.86, \"timestamps\": [[0, 52.65], [53.03, 74.55]], \"sentences\": [\"A man explains a procedure holdings cloths and cleaning materials while showing the cloths.\", \" After, the man approaches to a window and starts to clean for an instant, and then continues explaining.\"]}, \"v_uavot-yVwhg\": {\"duration\": 98.06, \"timestamps\": [[0, 4.9], [4.9, 26.48], [26.97, 65.7], [67.17, 88.25], [88.25, 98.06]], \"sentences\": [\"We see an opening title screen.\", \" A lady sits at a table with a shoe, water, salt, brush and towel.\", \" The lady puts salt it the water and dips the brush then brushes the shoe.\", \" The lady wipes the shoe with the towel and talks to the camera.\", \" We see an ending title screen.\"]}, \"v_17ytsjuUCRA\": {\"duration\": 54.75, \"timestamps\": [[0, 54.75], [16.43, 53.93]], \"sentences\": [\"A dog is getting a bath outside.\", \"  Soap is worked through the coat and then washed off.\"]}, \"v_6hsOVkC7hxA\": {\"duration\": 6.43, \"timestamps\": [[1.25, 3.51], [3.51, 5.72], [5.72, 6.17]], \"sentences\": [\"There's a shirtless man wearing denim jeans out in a forest.\", \" He is chopping wood from a cut tree bark with a hammer.\", \" He he hitting the chopped log of wood with all his force.\"]}, \"v_U-kPlTqXc_M\": {\"duration\": 12.12, \"timestamps\": [[0.3, 5.58], [5.82, 11.51]], \"sentences\": [\"A small group of people are seen standing around a table filled with solo cups and one catching a cup.\", \" The man then drinks from a cup and proceeds to collapse onto the table.\"]}, \"v_Cf7xy_HQ9H0\": {\"duration\": 180.49, \"timestamps\": [[21.66, 180.49], [43.32, 180.49], [127.24, 132.66]], \"sentences\": [\"A man is rollerblading outside in a parking lot.\", \" He does several tricks on his rollerblades.\", \" He does a cart wheel on the ground.\"]}, \"v_v1FHFQ1UZHw\": {\"duration\": 164.35, \"timestamps\": [[0, 7.4], [7.4, 14.79], [14.79, 24.65], [24.65, 27.94], [28.76, 30.4], [30.4, 37.8], [37.8, 47.66], [47.66, 57.52], [57.52, 71.49], [71.49, 83], [83, 109.29], [109.29, 137.23], [137.23, 144.63], [144.63, 150.38], [150.38, 155.31], [155.31, 164.35]], \"sentences\": [\" A man writing on the wall.\", \" Switches to a product being featured.\", \" The man writes on the wall again.\", \" He begins to apply product.\", \" Switches to the product again.\", \" He writes on the wall.\", \" He begins to lay out tools.\", \" Next he measures and levels the wall.\", \" He takes out the product and begins placing a coat on the crack in the wall.\", \" He then takes a roller and rolls it along the wall.\", \" Next he hangs and apply s a white sheet to the wall.\", \" He repeats the process in the different sections of the wall that need it.\", \" Now He writes on the wall again.\", \"Next a dog jumps in front of a wall.\", \" He writes again on the wall.\", \" Lettering appears on the screen for the product.\"]}, \"v_x39KxoQHEp4\": {\"duration\": 238.3, \"timestamps\": [[0, 238.3], [120.34, 144.17], [122.72, 194.21], [214.47, 238.3]], \"sentences\": [\"Several people float down a river in tubes.\", \" They pass through several rocks.\", \" The water gets rough as the past through some rocks.\", \" Several people stand up in the river.\"]}, \"v_C8fyaj592GA\": {\"duration\": 110.92, \"timestamps\": [[0, 1.11], [1.66, 110.92], [39.93, 41.04], [85.96, 88.18], [107.59, 110.92]], \"sentences\": [\"Individuals stand behind black platforms awaiting instructions.\", \" Individuals are using dance moves to exercise using the platform.\", \" The people do jumping jacks to the right of the platform.\", \" The individuals do jumping jacks at the left of the platform.\", \" The lady who had been instructing the group continuously claps her hands and begins to leave.\"]}, \"v_z6g5QbIPatk\": {\"duration\": 204.99, \"timestamps\": [[0, 4.1], [4.1, 31.77], [31.77, 172.19], [172.19, 193.71], [193.71, 204.99]], \"sentences\": [\"A girl holds up a white piece of paper and it has a drawing on it that is done in black ink.\", \" The girl then turns around and the video is sped up to show her drawing on a pumpkin near a kitchen while multiple people are moving about around her.\", \"The girl finishes the drawing and she begins to carve the design out of the pumpkin while the video is still in a sped up mode.\", \"The pumpkin is now done being carved and it appears on a black screen with just the carved out area illuminating in an orange color.\", \"The girl appears again holding up the white paper, runs out of the room and the screen goes back to black with just the pumpkin illuminating.\"]}, \"v_F12ga-do744\": {\"duration\": 56.54, \"timestamps\": [[0, 18.38], [15.55, 39.58], [39.01, 55.41]], \"sentences\": [\"A large man is seen standing on a large mat walking forward and screaming to the audience.\", \" The man then lifts the bar up then back down and screams out loud.\", \" The same clips is shown again immediately afterwards.\"]}, \"v_YPNLMBhuDS8\": {\"duration\": 175.07999999999998, \"timestamps\": [[5.25, 105.05], [91.04, 172.45]], \"sentences\": [\"A man is seen speaking to the camera while holding up a shoe and polish and pointing to objects.\", \" The man then rubs down the shoe with a rag while the camera zooms in on more products and speaking to the camera.\"]}, \"v_-ew9R4QppTk\": {\"duration\": 184.51, \"timestamps\": [[0, 184.51], [5.54, 184.51], [0, 179.89]], \"sentences\": [\"man is sitting in a white room playing congas a bongos.\", \" fat man wearing glasses is sitting on a chair in a white room.\", \" man is sitting in a room playing salsa music with the bongos.\"]}, \"v_ePAc9xK9fac\": {\"duration\": 125.44, \"timestamps\": [[0, 89.69], [89.06, 125.44]], \"sentences\": [\"woman is climbing a rock wall in a gym and a man is pulling the ropes.\", \" woman start descending from the rock wall.\"]}, \"v_SV-8M3HNk1s\": {\"duration\": 208.49, \"timestamps\": [[0, 38.57], [37.53, 198.07]], \"sentences\": [\"A clip is shown of a person on a wake board riding on some waves and crashing into the water.\", \" Several more clips are shown of people riding on the wake boards on the ocean waves gliding along.\"]}, \"v_m12BPEN6Y3s\": {\"duration\": 180.4, \"timestamps\": [[0, 51.41], [50.51, 180.4]], \"sentences\": [\"A girl wearing a scarf is seen talking to the camera and begins mixing various ingredients into a bowl.\", \" She places the batter into circles on separate pans and shows the cookies she made after they are done.\"]}, \"v_4DmsWE6byuw\": {\"duration\": 114.89, \"timestamps\": [[0, 12.64], [14.94, 32.17], [35.04, 114.89]], \"sentences\": [\"A man is walking in circles in the center of a crowd.\", \" He begins to break dance.\", \" Several clips of men break dancing in different venues are shown, as they flip, spin, and perform for crowds.\"]}, \"v_vbLxVuLLPek\": {\"duration\": 60.19, \"timestamps\": [[18.06, 35.51], [35.51, 52.96], [52.96, 55.97]], \"sentences\": [\"There two men dressed Scottish kilts and attire standing in the courtyard.\", \" One of the men is playing the bagpipes and the other is playing the drums.\", \" A woman tourist walks past them as they continue to play.\"]}, \"v_d_6BVfxlAsI\": {\"duration\": 181.49, \"timestamps\": [[0, 85.3], [57.17, 181.49]], \"sentences\": [\"An empty poker table is shown followed by a woman dealing cards and speaking to the camera.\", \" She instructs on how to play the game while still speaking to the camera and smiling.\"]}, \"v_MINjkEBIIkA\": {\"duration\": 65.6, \"timestamps\": [[0, 26.57], [3.61, 26.57], [34.11, 36.41]], \"sentences\": [\"A man is standing in a room.\", \" They are throwing darts at a dartboard.\", \" A woman then comes and throws darts at a dartboard.\"]}, \"v_AgocNx3-De0\": {\"duration\": 152.59, \"timestamps\": [[3.05, 66.38], [66.38, 122.07], [123.6, 133.52]], \"sentences\": [\"People raft in a muddy river, then they camping on the shore to rest and play.\", \" Then, the man continue rafting in the river, and a man falls in the water and his friends rescue him, then they continue rafting.\", \" A woman and a man stands next a helicopter, then the helicopter fly.\"]}, \"v_wBy9_ZSfEVA\": {\"duration\": 151.32999999999998, \"timestamps\": [[0, 21.19], [21.94, 74.91], [74.91, 93.06], [93.82, 142.25], [146.03, 151.33]], \"sentences\": [\"People run dragging a large red kite through a field.\", \" The kite is in the air and the kids are standing under it watching it.\", \" The kite is in the air flying.\", \" A man and a little girl and a boy are flying the kite and holding the base of it.\", \" A little girl throws something on the ground.\"]}, \"v_saShR7NwjMg\": {\"duration\": 193.28, \"timestamps\": [[0.97, 58.95], [54.12, 155.59], [135.3, 165.26]], \"sentences\": [\"A close up of a person leads into the person watching their hands and scrubbing it with soap.\", \" A man is shown scrubbing up his hands in a sink while demonstrating the proper way to wash hands and dip them under the water.\", \" The man dries it off with a rag in the end.\"]}, \"v_sz1772O9AUM\": {\"duration\": 90.84, \"timestamps\": [[0, 8.63], [17.26, 26.8], [27.25, 63.59], [64.04, 90.84]], \"sentences\": [\"A car drives into a car wash bay.\", \" The driver gets out and inserts money into a machine.\", \" The person then washes their car with a pressure washer.\", \" We see another machine, and a vending machine.\"]}, \"v_pK3OSevBqDw\": {\"duration\": 138.88, \"timestamps\": [[0, 40.27], [39.58, 100.69], [88.19, 128.46]], \"sentences\": [\"A man is seen standing next to a fence while the camera pans around the lake nearby.\", \" The man bends down and begins painting the fence while the camera focuses on a person walking down.\", \" Another man walks up with a bucket and helps the man paint while the cameraman continues to look around.\"]}, \"v_wj_xmkHjItg\": {\"duration\": 212.39, \"timestamps\": [[0, 29.74], [35.04, 161.42], [162.48, 212.39]], \"sentences\": [\"A car is traveling through snow covered roads and trees before arriving at a cabin.\", \" The people put on skis and are shown going down the hills, skiing.\", \" They continue skiing, waving at the camera and showing a final panoramic view as the video ends.\"]}, \"v_kuPWb9E4aUQ\": {\"duration\": 173.22, \"timestamps\": [[0, 59.76], [26.85, 116.92], [57.16, 142.04], [106.53, 173.22]], \"sentences\": [\"A diver is swimming under the blue water.\", \" Two divers wearing their oxygen are under the water, they are holding onto the strong rope.\", \" The divers dive deeper to into the water, they swim towards a coral bed under the water.\", \" The people are riding the white boat towards the ocean.\"]}, \"v_KSbIw1m2KoU\": {\"duration\": 222.59, \"timestamps\": [[0, 18.92], [21.15, 188.09], [192.54, 222.59]], \"sentences\": [\"A female gymnast prepares to mount the bar.\", \" She mounts, then does several hand springs, forward flips, and back flips.\", \" Then she dismounts, throwing her arms up in the air.\"]}, \"v_5u-PL0wr3TU\": {\"duration\": 12.05, \"timestamps\": [[0, 6.93], [6.87, 11.93]], \"sentences\": [\"A toddler goes down on a slide in a playground full of people, when the toddler touches the floor, she stand and run.\", \" Suddenly, a man run behind the toddler.\"]}, \"v_yrGietojx78\": {\"duration\": 140.85, \"timestamps\": [[0, 131.7], [38.73, 131.7], [131.7, 140.85]], \"sentences\": [\"A man in a white shirt is holding a tool in his hand.\", \" He starts chopping weeds down in a field.\", \" He stops and puts the tool against a fence.\"]}, \"v_KEU4Sj6x1p4\": {\"duration\": 183.3, \"timestamps\": [[0, 32.08], [32.99, 72.4], [71.49, 102.65], [103.56, 183.3]], \"sentences\": [\"The race begins, one of the racer has a huge head start before the other even starts moving.\", \" They begin to run again but this time the man who had the head start takes his time and the man in the blue runs fast and jumps in the sand.\", \" He runs and jumps again, this time they show it again in slow motion.\", \" He just keeps practicing his run and jump over and over trying to get it perfect.\"]}, \"v_HXCLDIk4pgI\": {\"duration\": 119.82, \"timestamps\": [[0, 119.82], [65.3, 76.68], [110.23, 119.82]], \"sentences\": [\" A person is clearing snow with a red snow plow.\", \" They push the snow to the side in a pile.\", \" They finish plowing the driveway.\"]}, \"v_XazKuBawFCM\": {\"duration\": 134.21, \"timestamps\": [[0, 10.74], [16.11, 77.84], [87.24, 134.21]], \"sentences\": [\"A woman is standing on a field in a circle.\", \" She spins while holding a disc.\", \" she accidentally lets go, and the disc flies out behind her.\"]}, \"v__K88UOvtQPk\": {\"duration\": 68.03, \"timestamps\": [[1.7, 32.99], [23.47, 63.6]], \"sentences\": [\"A young girl is seen playing a saxophone while looking over to the camera and moving her hands up and down.\", \" The woman continues to play the instrument and ends by turning off the camera.\"]}, \"v_G6FhQuR3_88\": {\"duration\": 134.07, \"timestamps\": [[0, 134.07], [13.41, 16.09], [69.05, 72.4], [132.73, 134.07]], \"sentences\": [\"We see men playing instruments in a plaza.\", \" The front man turns around to the men behind him.\", \" The man in front grabs the microphone.\", \" The band finishes playing their instruments.\"]}, \"v_8liz3Fu7DGU\": {\"duration\": 224.35, \"timestamps\": [[0, 57.21], [57.21, 111.05], [111.05, 154.8], [154.8, 224.35]], \"sentences\": [\"On a a big field there is a lacrosse team playing a game , they are all moving around strategically.\", \" They throw the ball trying to make the goal while the other team tries to block them.\", \" They are running around you can see arrows to pointing to whats going on here and there.\", \" it is a very physical and hands on sport that requires stamina and energy.\"]}, \"v_kB0h-fHb_WU\": {\"duration\": 33.3, \"timestamps\": [[0, 5.33], [5.16, 26.47], [0, 14.65], [12.65, 16.48], [12.65, 24.64], [27.97, 29.47], [25.97, 33.3]], \"sentences\": [\"A guy with with leg extensions enter.\", \" The guy hops and flips on a trampoline.\", \" A man and woman remove an attachment from a cable and attach another.\", \" The cables are lifted up.\", \" The man and woman remove what they removed from the trampoline and leave.\", \" The guy with leg extensions leaves.\", \" Two people enter with a chair and bucket.\"]}, \"v_MKLoBzvca30\": {\"duration\": 169.6, \"timestamps\": [[0, 19.5], [35.62, 136.53], [136.53, 150.94]], \"sentences\": [\"A man in a white hat is holding a black ball and talking.\", \" People are playing a game of indoor soccer.\", \" A man in a white jacket is talking to the camera.\"]}, \"v_dZa5ir3baH4\": {\"duration\": 37.42, \"timestamps\": [[0, 21.52], [24.7, 33.68], [33.87, 37.42]], \"sentences\": [\"A man prepares to run along an indoor track.\", \" He runs, taking very large strides.\", \" He jumps awkwardly into the sand, landing on his face.\"]}, \"v_yr_ZOq9ZB9E\": {\"duration\": 196.19, \"timestamps\": [[0, 22.56], [22.56, 173.62], [173.62, 196.19]], \"sentences\": [\"Three teenage boys carry their  skateboards up a paved park trail.\", \" A camera mounted on the skateboard captures scenes of the young skaters cruising in different directions and performing different tricks.\", \" A skateboarder in a green hoodie skates on a narrow dirt trail lined with trees.\"]}, \"v_pajUG7Y6Gtk\": {\"duration\": 61.09, \"timestamps\": [[1.22, 27.49], [18.94, 43.68], [35.13, 58.34]], \"sentences\": [\"Three people are seen standing on a sandy field and lead into one scoring a goal.\", \" The men celebrate while his clip is shown again several times.\", \" The men continue to celebrate and begin playing the game again.\"]}, \"v_avGe67wRvxA\": {\"duration\": 42.82, \"timestamps\": [[0, 9.63], [9.85, 23.55], [23.55, 29.33], [29.54, 34.9], [34.9, 42.82]], \"sentences\": [\"A lady wipes lipstick off her face.\", \" The lady then lines her lips with a pencil.\", \" The lady stops and adjusts the camera.\", \" the camera move and we see a man next to the lady.\", \" the lady fixes her hair in the camera.\"]}, \"v_x-WGuz3_2Fc\": {\"duration\": 87.12, \"timestamps\": [[0, 36.59], [26.14, 86.25]], \"sentences\": [\"A man is seen speaking to the camera while peeling potatoes and looking to the camera.\", \" The camera pans around the man continuously as he continues to peel the potatoes and speak.\"]}, \"v___wPHayoMgw\": {\"duration\": 137.11, \"timestamps\": [[0, 21.25], [21.25, 67.87], [67.87, 100.78], [100.09, 137.11]], \"sentences\": [\"A young woman is dressed in a zebra onesie sitting on her bed smoking a hookah.\", \"She takes two puffs,exhales the smoke and a spark flies from the end of the tube.\", \"The man behind the camera switches and then begins to smoke the hookah as the girl begins to record.\", \"Once he is finished,the hookah is given back to the girl and she starts to smoke.\"]}, \"v_t9UsqWspqZM\": {\"duration\": 82.76, \"timestamps\": [[0, 56.69], [57.1, 82.76]], \"sentences\": [\"A person dressed up as Darth Vader plays a violin on the sidewalk.\", \" People walk in front of him.\"]}, \"v_D2IDRG8_6To\": {\"duration\": 212.97, \"timestamps\": [[0, 30.88], [29.82, 64.96], [60.7, 105.42], [108.62, 212.97]], \"sentences\": [\"A young man is talking the the camera.\", \" The man stands with a stick in his hand.\", \" The man points away from himself.\", \" The man takes the stick and pushes pucks around the ground.\"]}, \"v_bt4cH91_KPI\": {\"duration\": 119.56, \"timestamps\": [[0, 26.9], [26.9, 59.18], [59.78, 119.56]], \"sentences\": [\"An excited man is seen talking to the camera and transitions into several shots of men winning games, beer, and being interviewed by the host.\", \" The men are then seen playing a game of beer pong with several others around and showing off a shaved head.\", \" A man is seen talking on a phone and more shots of the men playing beer pong are shown.\"]}, \"v_hJKX5ZulTgI\": {\"duration\": 76.32, \"timestamps\": [[0, 6.87], [7.63, 26.71], [27.86, 65.64], [67.93, 76.32]], \"sentences\": [\"A woman spins around, showing off her hair style.\", \" We see a black hair drying spinning on the screen.\", \" The woman is getting her hair styled in the background by another woman, while text covers the screen with instructions.\", \" The woman brushes and finalizes the style, and the client has a huge happy smile.\"]}, \"v_8ZqRn0ovdAI\": {\"duration\": 157.57, \"timestamps\": [[0, 67.76], [40.97, 110.3], [93.75, 156]], \"sentences\": [\"A man is seen sitting on a park bench playing guitar with a small boy beside him.\", \" The boy then begins playing a set of drums next to the man playing guitar.\", \" The two continue playing with one another and stop to wave to the camera and speak to one another.\"]}, \"v_ns8v94HCtlM\": {\"duration\": 71.59, \"timestamps\": [[0, 11.45], [12.17, 29.35], [28.64, 71.59]], \"sentences\": [\"A person is turning on a machine and watching a hose grow bigger while he spins the dial.\", \" He continues pressing buttons and begins grooming a dog.\", \" The person goes up and down on the dog and eventually makes him look good as new with different settings.\"]}, \"v_tHFF0OaIHoE\": {\"duration\": 27.84, \"timestamps\": [[0, 10.72], [10.58, 27.84]], \"sentences\": [\"A young girl is sitting in an empty bath tub shaving a man's leg that is thrown over the tub.\", \"As she continues,the dog comes and she shows the hair on the razor to the camera.\"]}, \"v_vvoqG7UQsdc\": {\"duration\": 49.02, \"timestamps\": [[0, 49.02], [6.86, 10.54], [9.8, 12.25], [11.76, 44.85]], \"sentences\": [\"There are two students, a boy and a girl in a pole vault runway.\", \" One of the students, a boy sprints with the pole on the runway while a person in blue the other student watch him perform.\", \" Then he jumps up high and lands a few feet away on the landing area.\", \" His actions are replayed in slow motion to capture his jump and landing.\"]}, \"v_eDMv3IHGpnA\": {\"duration\": 213.07, \"timestamps\": [[0, 8.52], [8.52, 210.94], [210.94, 213.07]], \"sentences\": [\"A man wearing very large glasses is talking into a black microphone while people behind him are dancing until he points into their direction and they all scatter off the dance floor.\", \" Men are dressed in red suits and each are taking turns break dancing alone as words on the screen are possibly naming the dancer.\", \"When the last man is dancing they all stop and strike a pose and DJ that has been playing this whole time continues to play music at his DJ station.\"]}, \"v_tilmCzSf1oc\": {\"duration\": 22.48, \"timestamps\": [[0, 3.15], [3.37, 18.32], [18.21, 19.78]], \"sentences\": [\"A boy in karate class bows before a performance.\", \" The boy performs a karate routine with hand scythes.\", \" The boy ends his routine and bows.\"]}, \"v_NiQaDgj8Z10\": {\"duration\": 133.47, \"timestamps\": [[0, 53.39], [56.06, 64.73], [67.4, 105.44], [105.44, 133.47]], \"sentences\": [\"A lady hula hoop with five hula hoops and one by one she takes on off of her and tosses it until she tossed away all five hula hoops she was hula hooping with.\", \"the lady then hula hoops with 300 hula hoops with will be a world record.\", \"the lady starts by putting the 300 hula hoops around her body as she bend over to get a good grip on them,she then stands straight up and starts to twirl all 300 hula hoops around her body.\", \"finally she manages to twirl all the hula hoop around her hole body and finishes with the hula hoops on the ground and she bows to the people who is watching her.\"]}, \"v_-AaOr1DI2no\": {\"duration\": 113.88, \"timestamps\": [[0.57, 103.07], [16.51, 88.26], [35.3, 41.57], [42.14, 60.93], [48.4, 51.82], [65.48, 77.44]], \"sentences\": [\"A lady stands in a living room and discusses.\", \" The lady easily pulls the wallpaper of the wall.\", \" A woman paints the wall with a liquid.\", \" The woman puts wallpaper on the area.\", \" The woman cuts the wallpaper with a box cutter.\", \" The woman paints the wallpaper with paint.\"]}, \"v_68kccxCgbys\": {\"duration\": 216.77, \"timestamps\": [[0, 42.27], [41.19, 111.64], [111.64, 216.77]], \"sentences\": [\"A title screen appears and then several paragraphs begin to roll over the screen.\", \"Next,a man with average sized curly black hair dressed in a suit begins to talk.\", \"When he is finished,a man is shown playing the saxophone at a night time television show and then the man comes back to finish talking.\"]}, \"v_bKVrokdj7HM\": {\"duration\": 123.58, \"timestamps\": [[0, 121.11], [5.56, 42.02], [36.46, 57.46], [66.11, 78.47], [75.38, 111.84], [113.07, 123.58]], \"sentences\": [\"There's a man wearing s white shirt playing the drum set in a room.\", \" He begins by playing the snare drum and the bass drum.\", \" Then he continues playing by hitting the cymbals and the hi-hat.\", \" He stops for a bit and then resumes playing the drum set.\", \" He plays rhythmically as he picks up speed and plays the drum set.\", \" Then he stops and gets up to turn off the camera.\"]}, \"v_gHk4mjlJ5cg\": {\"duration\": 210.92000000000002, \"timestamps\": [[0, 7.38], [8.44, 88.59], [25.31, 85.42], [90.7, 102.3], [102.3, 205.65], [207.76, 210.92]], \"sentences\": [\"We see an opening title screen.\", \" A shirtless man talks in a gym.\", \" A lady runs past both ways then jumps rope behind the man.\", \" We see title screens with instructions.\", \" We see a lady jumping rope eleven different ways.\", \" We see the ending title screen.\"]}, \"v_ajA_cE6b9AY\": {\"duration\": 124.55, \"timestamps\": [[0, 29.27], [28.65, 124.55]], \"sentences\": [\"a river is shown and a car is a dust path.\", \" men are rafting on a lake on the rapids.\"]}, \"v_GPR8rtfZr4A\": {\"duration\": 78.14, \"timestamps\": [[0, 1.95], [2.34, 78.14], [8.99, 12.5], [15.24, 25], [28.52, 35.55], [42.58, 51.96], [58.99, 61.73], [62.9, 66.81]], \"sentences\": [\"A graphic logo is seen that is black and white in color with the letter \\\"N\\\".\", \" A tv host stands in front of a camouflaged background.\", \" Two girls are seen walking in a photograph in baseball uniforms.\", \" A large group of fans crowds on a baseball field and surrounds a famous singer doing a performance.\", \" A red handball is rolled to a kicker during a kickball match who kicks it into the outfield for a run.\", \" Another man in tshirt and black sweats kicks a ball and runs around the bases trying to avoid being tagged with the ball.\", \" The same man rides on a skateboard in the city.\", \" The man is seen again in an up close video in a room.\"]}, \"v_E-6XZrDYRuM\": {\"duration\": 207.91, \"timestamps\": [[0, 6.24], [6.24, 36.38], [36.38, 50.94], [50.94, 171.53], [175.69, 180.88], [181.92, 207.91]], \"sentences\": [\"The title shows as a man ride a horse through an arena.\", \" There is then a showcase of horses jumping over obstacles.\", \" One of the pictures rotates around in a circle and the next video squeezes in on itself.\", \" It continues to show horse jumping over obstacles with video effects.\", \" A man walks side my side with with partner.\", \" The credits role with some praise.\"]}, \"v_Jth2Zlpr1gQ\": {\"duration\": 49.09, \"timestamps\": [[0, 49.09], [4.66, 29.7], [22.58, 49.09]], \"sentences\": [\"The woman in red top is standing.\", \" The woman stretches her arms one side first then the next one.\", \" The woman put her arms in front of her, then stretch out and turned around.\"]}, \"v_GKK32IWDlSE\": {\"duration\": 98.38, \"timestamps\": [[0, 6.39], [7.38, 26.07], [29.02, 98.38]], \"sentences\": [\"A man is outside on a track.\", \" He runs with a javelin in his hand.\", \"He throws it as far as he can, raising his arms in victory.\"]}, \"v_fgFU8vdsA8k\": {\"duration\": 142.73, \"timestamps\": [[0, 21.41], [21.41, 109.91], [109.91, 142.73]], \"sentences\": [\"A girl and a man are inside a high structure wearing bungee jumping equipment.\", \" The girl get out and stand on the border of the structure, then while the man puts a rope behind the girl.\", \" After, the girl jumps from the structure for a moment and then she gets up on the structure.\"]}, \"v_YDNEa5ZOf6c\": {\"duration\": 122.74, \"timestamps\": [[0, 19.02], [11.66, 47.26], [41.12, 122.74]], \"sentences\": [\"A man wearing a hood is opening a paper, then he went down the stair and walked to a pathway.\", \" The woman is talking to the camera and showing the ground covered with snow.\", \" The man is standing next to the van and began scooping off the snow on the roof of the car, while the other person is using a broom to get the snow off the car.\"]}, \"v_Hub83eTB8mM\": {\"duration\": 21.22, \"timestamps\": [[0, 9.87], [11.25, 21.22]], \"sentences\": [\"A construction worker is standing and talking to the camera while holding a sprayer.\", \" He is very animated while he goes back to sanding and spraying.\"]}, \"v_9ZQY-ZfimYo\": {\"duration\": 172.99, \"timestamps\": [[0, 54.49], [56.22, 172.99]], \"sentences\": [\"A man is shown speaking to the camera excitedly and shows several shots of the man climbing a rock wall and various locations.\", \" Then man then continues speaking to the camera and demonstrates how to properly climb the wall while still speaking.\"]}, \"v_NurRl6_NLbg\": {\"duration\": 169.09, \"timestamps\": [[0, 6.76], [7.61, 56.64], [54.95, 108.22], [109.06, 153.87], [155.56, 169.09]], \"sentences\": [\"We see a blue intro screen.\", \" We see kids riding dirt bikes.\", \" We see another title screen and the intermediate riders are seen.\", \"  We see the screen go blue again and we see the experts.\", \" Another title screen is shown and we see the credits.\"]}, \"v_IJUokB_p3Yo\": {\"duration\": 111.32, \"timestamps\": [[0, 13.91], [15.03, 40.07], [43.97, 111.32]], \"sentences\": [\"Two boys are sitting in a booth inside a building.\", \" They are talking about doing clips.\", \" They then talk while eating bowls of vanilla ice cream.\"]}, \"v_BLSycXOF3Ro\": {\"duration\": 184.23, \"timestamps\": [[2.76, 61.72], [61.72, 130.8], [130.8, 164.88], [164.88, 184.23]], \"sentences\": [\"A girl does hula hoop spinning a hula ring around her neck, body and hands.\", \" Then, a person gives a hula to the girl who spins simultaneously the two hula rings.\", \" After, a person gives another hula ring to the girl to do hula hooping with three rings.\", \" At the  end the girl gives a hug to the person and a presenter talks.\"]}, \"v_zryPDx9WL08\": {\"duration\": 152.74, \"timestamps\": [[0, 35.89], [38.19, 121.43], [91.64, 149.69]], \"sentences\": [\"Several shots are shown of a man warming up as well as performing martial arts tricks.\", \" A man speaks to the camera while several clips are shown of people flipping and doing tricks in various locations.\", \" The people jump and flip around one another and continue performing parkour.\"]}, \"v_OjQHQptSXk0\": {\"duration\": 134.54, \"timestamps\": [[2.69, 119.74], [30.94, 111.67]], \"sentences\": [\"A large parade of people marching down a street is shown with several hundred people watching on the side.\", \" The people continue playing the instruments as the camera pans around the large group of people and following the parade.\"]}, \"v_2Xfigl8xrXc\": {\"duration\": 57.73, \"timestamps\": [[0, 9.81], [9.81, 57.73]], \"sentences\": [\"A woman wearing a black shirt begins talking and then someone getting their legs waxed appears.\", \"As she talks,a layer of wax if placed on the leg and then a white piece of paper.\"]}, \"v_xYt__nSK8NA\": {\"duration\": 46.99, \"timestamps\": [[0, 20.44], [19.27, 46.99]], \"sentences\": [\"A young woman is seen looking to the camera smoking a cigarette and laughing to the camera.\", \" She continues taking puffs off the cigarette while looking into the camera and blowing smoke.\"]}, \"v_ZEChBNpLCyU\": {\"duration\": 140.16, \"timestamps\": [[0.7, 56.06], [32.94, 138.05]], \"sentences\": [\"A man is seen speaking to the camera and begins laying out tarp next to a tree.\", \" The man cuts the tarp and begins putting mulch all around the tree.\"]}, \"v_xAI1y9izXOM\": {\"duration\": 40.96, \"timestamps\": [[0, 12.9], [13.11, 40.14]], \"sentences\": [\"Two men sit across a table and begin an arm wrestling match.\", \" They both struggle a bit until the man on the left eventually wins.\"]}, \"v_me4rMjlnTlI\": {\"duration\": 33.9, \"timestamps\": [[0, 18.31], [17.97, 33.9]], \"sentences\": [\"A small group of children are seen holding onto a rope with a man standing in front of them speaking to them.\", \" The kids continue pulling with adult's help and then cheer in the end.\"]}, \"v_BnkUgUQBED0\": {\"duration\": 124.09, \"timestamps\": [[0, 5.58], [6.2, 14.89], [14.89, 84.38], [83.76, 93.69], [94.93, 122.23], [122.23, 124.09]], \"sentences\": [\"We see a chair with a pillow on it.\", \" A man holding a cat sits down on the chair.\", \" The man clips the cats fingernails.\", \" The man strokes the cat's head.\", \" The man plays with the cat rocking it back and forth.\", \" The man stops the camera.\"]}, \"v_5Ia1MCFut_8\": {\"duration\": 18.76, \"timestamps\": [[0.09, 9.47], [5.82, 17.54]], \"sentences\": [\"A young child is seen climbing into a slide and edging her way closer to the edge.\", \" The girl then rides down the slide smiling and walks away.\"]}, \"v_X0IXZMr95TM\": {\"duration\": 98.45, \"timestamps\": [[0, 4.92], [22.15, 32], [32.98, 51.2], [57.6, 71.87], [71.87, 86.64]], \"sentences\": [\"A clear bottle pours a drink into a cocktail glass.\", \" A bartender picks up a stainless steel cup and scoops ice into it.\", \" The bartender pours liquors into a shot glass and dumps them into a cup.\", \" The bartender caps the cup and shakes vigorously.\", \" The contents of the mixing cup are poured into a martini glass.\"]}, \"v_V4tqzi5uw9Y\": {\"duration\": 17.25, \"timestamps\": [[0, 2.5], [3.19, 17.25]], \"sentences\": [\"A man touches his faces and waves.\", \" The man walks a mower across very tall growing grass.\"]}, \"v_eLVaojWbwHE\": {\"duration\": 209.0, \"timestamps\": [[0, 22.99], [21.95, 103.46], [104.5, 209]], \"sentences\": [\"A middle aged woman is standing in a room behind a table full of pain and various size brushes and an image of trees on a easel.\", \"In her left hand,she has a wheel of paint and begins to make stokes on the image to complete her picture.\", \"She goes back and forth from the paint to the board and shows how to make a tree and then cleans her brushes.\"]}, \"v_BCsfauy69xM\": {\"duration\": 41.89, \"timestamps\": [[0, 9.01], [9.01, 12.15], [12.15, 25.55], [25.97, 37.28], [37.28, 41.89]], \"sentences\": [\"A person is carving a pumpkin.\", \" We see two people side by side carving pumpkins.\", \" We see from inside the pumpkin as they are being carved.\", \" We see five pumpkins on a couch and in the dark lit from the inside.\", \" We see a closing title screen.\"]}, \"v_Y82dz6aTwJ0\": {\"duration\": 37.01, \"timestamps\": [[0, 18.51], [17.95, 37.01]], \"sentences\": [\"A woman is sitting on the couch and is putting her feet in a python printed heels.\", \"Once they are on she stands up and walks around as the camera zooms in on her red painted toe nails.\"]}, \"v_O2JUUFFdWpk\": {\"duration\": 151.5, \"timestamps\": [[0, 7.58], [32.57, 53.78], [56.06, 151.5]], \"sentences\": [\"A man in a blue costume throws something into the audience.\", \" He picks up a green can and takes a drink.\", \" He then plays rock paper scissors with another man across from him.\"]}, \"v_B3fiiuk0EqE\": {\"duration\": 93.55, \"timestamps\": [[0, 7.48], [8.42, 91.68], [91.68, 93.55]], \"sentences\": [\"A man shovels snow from a driveway.\", \" The camera pans to show another man using an electric shoveling machine to clear show from his driveway.\", \" The man finishes clearing snow and turns to the camera.\"]}, \"v_gYARGADLcmQ\": {\"duration\": 112.69, \"timestamps\": [[0, 14.09], [14.09, 25.35], [25.35, 105.36], [52.4, 70.43], [72.68, 103.67], [111.56, 112.69]], \"sentences\": [\"We see an animated opening screen.\", \" We see an aerial view of a beach with people all over.\", \" We see people building sand castles.\", \" We interview a judge, who then walks among the people.\", \" We see two men interviewed.\", \" We see an awning over the beach and canopies beyond that.\"]}, \"v_VQPfRCsSmQk\": {\"duration\": 82.34, \"timestamps\": [[8.23, 43.64], [43.64, 55.99], [55.99, 67.93], [67.93, 74.93], [74.93, 78.22]], \"sentences\": [\"There's a woman in a red sweater and white shirt and blue pants sitting in her living room on a brown leather sofa.\", \" She is holding a spray can of furniture polish in her hand.\", \" She also has a paper towel in her other hand which she uses to wipe the table.\", \" She sprays the wooden table surface with the spray and then wipes it with the white paper towel.\", \" She explains how to use the spray and wipe the furniture.\"]}, \"v_jYA_3BMF2d4\": {\"duration\": 186.55, \"timestamps\": [[0, 12.13], [11.19, 180.95], [37.31, 55.03], [64.36, 70.89], [70.89, 174.42], [182.82, 186.55]], \"sentences\": [\"We see a man standing in a room.\", \" The man starts performing tai chi.\", \" The man turns and faces left.\", \" The man turns to face right.\", \" The man makes his way to the right side of the room slowly.\", \" The screen then fades to black.\"]}, \"v_QEaQzeB94N4\": {\"duration\": 111.94, \"timestamps\": [[0, 105.79], [45.9, 59.33], [81.72, 111.94], [109.15, 111.94]], \"sentences\": [\"A young man plays the violin on a sidewalk for people passing by in downtown area.\", \" Two students walk by behind the musician while he plays.\", \" The woman on the bench has turned to watch facing the man play the song.\", \" A man drops change in the musician's cup after he plays.\"]}, \"v_w8LDUu66JWI\": {\"duration\": 160.2, \"timestamps\": [[8.01, 52.86], [54.47, 62.48], [64.08, 120.95], [120.95, 147.38]], \"sentences\": [\"Two cheerleaders exercise in a gym while talking.\", \" A cheerleader is in a room and then lift weight, while the other one talks on his phone.\", \" After, the cheerleaders talk and exercise.\", \" After, the cheerleaders exercise and also talk.\"]}, \"v_TI3WqIauOYs\": {\"duration\": 89.75, \"timestamps\": [[0, 5.38], [8.97, 89.75], [69.55, 89.75]], \"sentences\": [\"A man takes off his shirt.\", \" He starts doing karate moves on a blue mat.\", \"  He does several flips in the air.\"]}, \"v_aAlbRFeu32E\": {\"duration\": 165.12, \"timestamps\": [[0, 4.95], [15.69, 22.29], [23.94, 165.12]], \"sentences\": [\"First the young woman is sleeping in her bed, but then she wakes up to say something.\", \" Next she is shown sitting at the restaurant eating fries and then she is shown in her room again, staring at the clothes on her bed and putting on her shoes.\", \" She is also shown doing fun things in the video and other girls are too.\"]}, \"v_ICM-GjDa9QY\": {\"duration\": 126.6, \"timestamps\": [[0, 81.65], [81.65, 113.94], [113.94, 126.6]], \"sentences\": [\"A young man puts detergent in a blue bucket, then shows and explains how to clean a screen windows using a squeegee.\", \" After, the young man cleans the wet screen with a cloth.\", \" The young man compares a dirt screen with the clean one and gives a thump up.\"]}, \"v_-HHybw--2XA\": {\"duration\": 135.26, \"timestamps\": [[2.71, 66.95], [51.4, 133.23]], \"sentences\": [\"A camera pans around a fenced in area and leads into a man and his dog performing tricks with a frisbee.\", \" The an continues to perform tricks with the dog using the toys and other dogs watching on the side.\"]}, \"v_rgrzN8ELIxI\": {\"duration\": 208.56, \"timestamps\": [[0, 16.68], [17.73, 19.81], [19.81, 22.94], [22.94, 205.43]], \"sentences\": [\"A collage of drawings and logos are seen in black and white that make up a larger logo.\", \" A beach is seen from the distance and houses are seen on a hillside in a small beach town.\", \" A surfer walks down towards the beach.\", \" Surfers ride large waves in the ocean.\"]}, \"v_w3DvA9405_o\": {\"duration\": 68.01, \"timestamps\": [[0, 14.28], [11.9, 32.99], [31.97, 65.29]], \"sentences\": [\"A woman is seen looking off in the distance who holds onto a harmonica.\", \" She begins playing the harmonica while looking away from the camera.\", \" The continues playing the harmonica and stops to look down at the camera.\"]}, \"v_2VYZeOa6804\": {\"duration\": 190.29, \"timestamps\": [[11.42, 13.32], [15.22, 45.67], [20.93, 134.15], [105.61, 112.27], [136.06, 166.5], [167.45, 183.63]], \"sentences\": [\"A reporter broadcast from a TV studio set.\", \" Then he reporter shows interviews a male an a female player next a swimming pool while a group of players jump into the water.\", \" Two teams play water polo in the swimming pool while the reporter continues to interview people.\", \" A woman and a man writes the scores on a the game, then people applauds.\", \" The winner team gets out the water and celebrates, and then the reporter interviews the team members.\", \" Again, the team gets in the water, and then the reporter broadcast from a studio set.\"]}, \"v_j5V7kD_HeMw\": {\"duration\": 179.47, \"timestamps\": [[0, 5.38], [7.18, 13.46], [16.15, 29.61], [28.71, 35.89], [50.25, 54.74], [56.53, 65.51], [92.43, 148.96], [158.83, 179.47]], \"sentences\": [\"A man descends from a steam slope on his snowboard.\", \" Another catches air as he flies over a snowy hill.\", \" Another snowboarder sharply slides down a steep hill to the base.\", \" A man in grey is shown performing some tricks in the air.\", \" First person perspective of a snowboarder going down a hill is shown.\", \" Another snowboarder flies down the hill, expertly cutting left and right.\", \" Various footage of snowboarders descending large slopes is shown.\", \" First person perspective of snowboarder with fellow rider in front of him closes the video.\"]}, \"v_feUoPtDWe1Y\": {\"duration\": 92.31, \"timestamps\": [[0, 92.31], [13.85, 35.54], [19.85, 87.7]], \"sentences\": [\"The woman in white sweater is talking to the camera.\", \" The woman is holding a violin and stick.\", \" The woman put the violin between her neck and shoulder and began playing for few seconds then talked to the camera.\"]}, \"v_mkF3Rlj3JSs\": {\"duration\": 178.32999999999998, \"timestamps\": [[9.81, 167.63], [35.67, 134.64], [139.99, 178.33]], \"sentences\": [\"A girl gives tips on how to brush your hair with a round brush.\", \"  She strokes the hair in front of her, covering her face.\", \"  She flips her hair up and then finishes what she needs to do.\"]}, \"v_NLpWaffN3XM\": {\"duration\": 216.67000000000002, \"timestamps\": [[1.08, 215.58], [1.08, 6.5], [6.5, 139.75], [139.75, 215.58]], \"sentences\": [\"A girl demonstrates playing an acoustic guitar using her hands to create percussion noise on the body of the guitar.\", \"  A girl enters a room where an acoustic guitar is leaning against a sofa and sits down on the sofa and begins to play the guitar.\", \"  The girl uses her right hand to make beats with the guitar and picks chords with the left hand while staring intently at the guitar.\", \"  The girl continues to play intensely, occasionally nodding her head to the rhythm.\"]}, \"v_8btD4-N4stM\": {\"duration\": 70.57, \"timestamps\": [[0, 59.98], [19.76, 27.17], [27.87, 32.11], [48.69, 54.69], [60.33, 70.57]], \"sentences\": [\"We see scene of a bullfighting with matadors in the ring and see them stabbing the bulls.\", \" We see images of bloody bulls and carcasses being dragged on the ground.\", \" We see images of a bull in a slaughterhouse.\", \" Words go across the screen about torturing the bulls.\", \" We then see a PETA ending screen.\"]}, \"v_3_hJrb_aDWU\": {\"duration\": 43.19, \"timestamps\": [[0, 17.06], [18.57, 29.8], [19.65, 37.58]], \"sentences\": [\"A kayak rider drifts in the bay of an ocean.\", \" Two kayak riders talk while sitting in their kayaks.\", \" The view of the surrounding mountains is seen.\"]}, \"v_TZ5Vd9eL5WA\": {\"duration\": 67.41, \"timestamps\": [[0, 67.41], [16.51, 17.86], [24.27, 67.41]], \"sentences\": [\"Two people are standing in a kitchen.\", \"  A man moves a glass bowl off the counter.\", \" A woman begins chopping a tomato on a board.\"]}, \"v_unLrTQt07kI\": {\"duration\": 43.98, \"timestamps\": [[0, 43.98], [3.52, 4.84], [6.38, 9.02], [25.51, 43.98]], \"sentences\": [\"We a man washing dishes in a restaurant kitchen with two other men standing behind him on massaging his shoulder.\", \" Teh dishwasher shakes the man off his shoulders.\", \" The man in rear in blue walks out of the room.\", \" The other man pretends to wash dishes then washes his hands.\"]}, \"v_vV_d5bfNmBQ\": {\"duration\": 106.09, \"timestamps\": [[0, 10.61], [10.08, 31.3], [31.3, 62.06], [62.06, 106.09]], \"sentences\": [\"Men on the beach playing volleyball in the sand.\", \" One of the guys hits the ball over to the other side and they hit it back.\", \" Then on the other side of the beach there is a group of women also playing volleyball.\", \" They are playing a really good game, one of the girl lands right on her stomach.\"]}, \"v_0ivHmKR8cUw\": {\"duration\": 92.27000000000001, \"timestamps\": [[0, 27.68], [27.68, 92.27], [0, 92.27]], \"sentences\": [\"woman is standing in front of a counter talking to the camera and showing drinks.\", \" woman grabbs the juice and liquor and and serve it in a cup.\", \" woman is showing in a bar how to prepare a cocktail.\"]}, \"v_4XfNexN6t04\": {\"duration\": 37.83, \"timestamps\": [[0, 3.4], [3.4, 29.88], [29.69, 37.83]], \"sentences\": [\"A man wearing a blue shirt walks to some congas and sit down.\", \" The musician begins to play the congas in a small room.\", \" The man then gets up and approaches the camera.\"]}, \"v_sYPd_0tC318\": {\"duration\": 213.97, \"timestamps\": [[46, 194.71], [67.4, 194.71], [108.06, 194.71], [138.01, 194.71], [156.2, 194.71], [191.5, 213.97], [205.41, 213.97]], \"sentences\": [\"There's a woman skurfing where the woman is towed on a surf board behind a sailboat.\", \" The woman surfer jumps up high as the sailboat sails in the water.\", \" The woman twists and turns around while on the surf board.\", \" The sailboat continues to pull the woman and she balances perfectly on the surfs as she twists and turns and spins on the surfs.\", \" She goes in a zig zag pattern making foamy waves in the water as the boats speeds up.\", \" The same surfing is watched on television as a guy and a another woman put several medals around the surfer's neck.\", \" The surfer pretends to fall down with the sheer weight of the medals.\"]}, \"v_7rd23-3wEyU\": {\"duration\": 198.86, \"timestamps\": [[2.98, 103.41], [68.61, 191.9]], \"sentences\": [\"A man is seen speaking to the camera while leading into various pictures of speaking as well as smoking.\", \" The man continues speaking while showing pictures intermittently of smoking and cigarettes close up.\"]}, \"v_in5XF1bbYr0\": {\"duration\": 95.71000000000001, \"timestamps\": [[0, 11.49], [11.49, 77.53], [69.87, 77.05], [78.01, 85.18], [85.18, 95.71]], \"sentences\": [\"We see a series of opening screens.\", \" A person throws a frisbee as a dog catches them.\", \" A man raises his hands in the air and walks off and another person walks past the camera.\", \" We see a title screen.\", \" We see an image of the dog laying in the grass with words on the screen.\"]}, \"v_pCEg_GoXoU4\": {\"duration\": 220.07999999999998, \"timestamps\": [[0, 96.83], [68.22, 187.07], [193.67, 218.98]], \"sentences\": [\"Several shots are shown of scuba divers moving along the water and fish moving around them.\", \" More people are seen moving along the ocean while gesturing to the camera and capturing all the wildlife around them.\", \" In the end they're seen riding a boat together and waving to the camera.\"]}, \"v_J_ZY19xnhJU\": {\"duration\": 200.3, \"timestamps\": [[0, 32.05], [31.05, 65.1], [65.1, 129.19], [130.19, 200.3]], \"sentences\": [\"A little boy runs fast to his swing set and his dog runs after him.\", \" He climbs up the slide and and slide and his little brother comes up to play too.\", \" The mom comes over to play on the sea saw with one of the boys and he falls off.\", \" They play for a while going from one part of the set to the next.\"]}, \"v_Aqq8S79ZAhk\": {\"duration\": 59.79, \"timestamps\": [[1.2, 22.72], [23.32, 58.9]], \"sentences\": [\"A camera pans around a room and leads into two women speaking and pulling out rock tiles.\", \" The women then put plaster down followed by the rock tiles and showing off the finished shower in the end and people reacting.\"]}, \"v_g_T8qK7qTFI\": {\"duration\": 64.38, \"timestamps\": [[0, 9.66], [9.98, 11.59], [11.91, 44.1], [44.42, 48.28], [49.25, 54.72], [55.04, 64.38]], \"sentences\": [\"People in traffic in a city look irritated as a cop directs traffic.\", \" A man sticks something in his ears.\", \" A man in a green shirt mocks a cop and people laugh and clap.\", \" The cop gives the man a Pepsi.\", \" We see the man on the cricket field throwing a ball.\", \" The man drinks the Pepsi and we see the closing screen.\"]}, \"v_FBbN6FHC7L8\": {\"duration\": 65.94, \"timestamps\": [[0, 9.89], [9.89, 28.35], [28.35, 45.5], [45.5, 65.94]], \"sentences\": [\"A woman wearing a red leotard demonstrates a ballet move traveling toe move.\", \" The ballet instructor shimmies across the floor taking small little side steps.\", \" The instructor demonstrates a spot turn ballet turns.\", \" The instructor than combines the side toe step with the spot turning move.\"]}, \"v_vZuy4OyWBsQ\": {\"duration\": 164.14, \"timestamps\": [[0, 7.39], [8.21, 83.71], [84.53, 94.38], [95.2, 164.14]], \"sentences\": [\"Two young teenage girls hold soapsuds in their hands in a kitchen.\", \" The girls throw the suds in each other's faces.\", \" One girl hops on the shoulders of the other.\", \"  They begin to wash the dishes.\"]}, \"v_e6r-A-LAe2E\": {\"duration\": 39.24, \"timestamps\": [[0, 7.26], [7.85, 31.79], [31.98, 39.24]], \"sentences\": [\"A young boy and a small boy are on a fenced field.\", \" They kick a ball, then try to chase it down.\", \" The kids continue playing as a man joins, fighting over the ball.\"]}, \"v_4uwtqRBE4Kk\": {\"duration\": 223.03, \"timestamps\": [[0, 18.96], [18.96, 89.21], [90.33, 223.03]], \"sentences\": [\"a sea is shown with a green forest on seashore.\", \" blond man is standing in seashore and talking to the camera and surfing big waves on the sea.\", \" man is walking on seashore through a lot of people and talking to the camera and holding an award and talking about surfing the seashore.\"]}, \"v_M1J3XjExaW4\": {\"duration\": 99.66, \"timestamps\": [[0, 26.91], [28.9, 70.26], [60.29, 97.17]], \"sentences\": [\"A man is seen speaking to the camera while holding onto a stick.\", \" He points down to balls in front of him as well as his body.\", \" He them demonstrates how to hit the ball properly while still speaking.\"]}, \"v_FRjVP5r9rqc\": {\"duration\": 80.74, \"timestamps\": [[0, 14.13], [14.53, 56.92], [27.85, 70.24], [57.32, 80.74]], \"sentences\": [\"An elderly woman pans to the camera and does various hand movements on the floor.\", \" The woman grabs several items of clothing and shows how she washes them in the sink.\", \" She holds a bar of soap and rubs it all over the clothes and dips it into the water.\", \" She continues cleaning the clothes off in the water and showing how she cleans her clothes.\"]}, \"v_ZBuPedt-oEE\": {\"duration\": 153.5, \"timestamps\": [[9.21, 144.29], [19.96, 144.29], [36.84, 144.29], [56.03, 144.29], [66.01, 144.29], [96.71, 144.29], [101.31, 144.29], [128.17, 144.29], [135.85, 144.29]], \"sentences\": [\"First the woman grabs some dishes to prepare something and puts them into a refrigerator.\", \"  She then holds  a cup  under a foam dispenser and remove sit when it's filled up.\", \" She then tops it with crushed graham bears.\", \" next she gets a plate and a round stencil.\", \" she puts the plate under the dispenser and she removes it and slowly pulls the circle off of the cake once she is done smoothing the paste.\", \" Then she uses a knife to put lines on the sides of the cake.\", \" Next she puts cream on the edges from top to bottom.\", \" then she drizzles a little chocolate syrup on there.\", \"  She is now done making the cake.\"]}, \"v_SMUWOVJ3bzE\": {\"duration\": 69.96000000000001, \"timestamps\": [[0.7, 30.08], [26.24, 68.56]], \"sentences\": [\"A young child is seen sitting before a piano and playing a song while wearing a halloween costume.\", \" The boy continues playing the instrument and ends by pulling his mask down.\"]}, \"v_YynqCEoHKCk\": {\"duration\": 189.41, \"timestamps\": [[1.89, 96.6], [68.19, 184.67]], \"sentences\": [\"A woman is seen performing a dance routine on a stage in front of a large audience.\", \" The woman continues dancing all around the stage and ends with a bow and walking off stage.\"]}, \"v_3ddoLUFrGsE\": {\"duration\": 120.74, \"timestamps\": [[0, 2.41], [5.43, 61.58], [62.18, 99.61], [103.84, 120.74]], \"sentences\": [\"A woman and a boy are making victory sign and smiling.\", \" The woman is putting make up to the boy's face, and then the boy shows his face.\", \" Then, the woman put make on a girl face.\", \" The boy and the girl look their faces on a mirror making funny faces and waving.\"]}, \"v_9wtMJoqGTg0\": {\"duration\": 89.28, \"timestamps\": [[2.23, 89.28], [0, 2.68], [3.12, 3.57], [4.02, 9.37], [9.37, 12.95], [9.82, 18.3], [13.39, 14.73], [16.52, 17.86], [18.3, 21.43], [21.87, 29.46], [29.02, 33.03], [34.37, 38.84], [38.84, 40.62], [40.62, 50.89], [52.23, 57.14], [58.03, 66.96], [64.28, 71.87], [83.03, 89.28]], \"sentences\": [\"A girl performances some gymnastics stunts.\", \" A girl stands in place facing a lady.\", \" The girl holds up her hand.\", \" The girl turn around and climbs the gymnastic, wooden bar.\", \" With her hands on the bar, the girl lifts and splits her legs above her head.\", \" The lady moves a platform to the left side of the bar.\", \" The girl sits on the bar with her hand raised.\", \" The girl knees on the bar.\", \" The girl stands on the bar.\", \" The girl lifts off the bar and land on edge of the bar.\", \" The girl back flips three times.\", \" The girl takes two steps and front flips.\", \" The girl lifts of the bar and lands in the same position.\", \" The girl turns, jumps in place, and back flips.\", \" The girl turns and spins with hands raised.\", \" The girl steps forward, jumps and turns.\", \" The girls steps forward and front flips and lands at the edge.\", \" The girl back flips three times off the bar and lands on a blue mat.\"]}, \"v_-v-Zail6TNw\": {\"duration\": 32.11, \"timestamps\": [[0, 30.35], [9.79, 12.52], [30.35, 32.11]], \"sentences\": [\"An eight year old girl is playing a harmonica on a stage.\", \" The camera zooms in on the girl as the girl begins to play harder and harder, taking deeper and deeper breaths.\", \" The girl stops playing, takes a look to her left really quickly, then beings to smile while looking at the camera and clapping.\"]}, \"v_QDjaaUtepHo\": {\"duration\": 160.27, \"timestamps\": [[0, 4.81], [5.61, 127.41], [128.21, 160.27]], \"sentences\": [\"A pink and yellow logo with lips appears on screen.\", \" A male hairdresser works on the hair of a seated woman in a luxury beauty salon.\", \"  The man dries and applies product to the woman's hair.\"]}, \"v_c4f6d1GRDEw\": {\"duration\": 179.05, \"timestamps\": [[0, 35.81], [35.81, 115.49], [108.33, 176.36]], \"sentences\": [\"A man is seen standing in front of a table holding up a bar of wax and other objects.\", \" He pushes the wax into a sander and begins using it on a ski board.\", \" He moves the sander all along the board and ends by showing it off to the camera.\"]}, \"v_Eilil6FZhK8\": {\"duration\": 218.89, \"timestamps\": [[0, 68.95], [45.97, 56.91], [64.57, 68.95], [72.23, 79.89], [79.89, 90.84], [90.84, 164.16], [165.26, 179.49], [169.64, 174.01], [182.77, 204.66]], \"sentences\": [\"peolpe are running wearing stilts in an avenue.\", \" man is interviewing an old woman in the sreet.\", \" man is doing a high jump above a car in street.\", \" man is laying down in a wooden table and other man jumps above the table.\", \" men are jumping side to side wearing stilts.\", \" man is helping a woman wear the stilts and walks in a gym room playing basketball with oher players.\", \" people are in sreet wearing stilts and running and jumping .\", \" man are sitting around a bench in street outside a restaurant.\", \" team are jumping in stilts in the roofed gym.\"]}, \"v_htKhaMfxxrM\": {\"duration\": 188.25, \"timestamps\": [[0, 4.71], [5.65, 98.83], [99.77, 188.25]], \"sentences\": [\"An opening scene with a child with a light saber deflecting lasers as they hit the wall to introduce a show.\", \"  A man in a blue t-shirt and glasses is standing in front of an old telephone booth and explains to his followers on Youtube how he had gone to the hospital to fix a damaged knee from an arm wrestling match.\", \"  Then a video is shown of the incident where he damaged his knee at an arm wrestling match as these two men sit at a table with a referee overlooking as the man in the glasses at the end of the match falls off his chair and walks off stage.\"]}, \"v_wCGpPDYfs-s\": {\"duration\": 197.81, \"timestamps\": [[0, 146.38], [140.45, 197.81]], \"sentences\": [\"A band is playing music, while a woman in gray suit is singing, and behind her is a man in black suit is also singing, the guy in green shirt is playing the drum, the people in the big room are dancing and singing while others are sitting, two people are talking in one corner while the singing and dancing continue.\", \" The guy in green shirt plays the drums.\"]}, \"v_mdJHGKABLhU\": {\"duration\": 60.35, \"timestamps\": [[6.34, 9.96], [11.77, 12.67], [15.39, 27.16], [28.06, 40.13], [40.13, 49.49], [49.49, 53.41]], \"sentences\": [\"A man and a woman are smiling in a picture.\", \" Someone holds a razor over a sink.\", \" A man with shaving cream on his beard starts shaving.\", \" Words are written on the screen.\", \" The man continues shaving his beard.\", \" He wipes his face with a towel and smiles.\"]}, \"v_m3AbqJNPn-o\": {\"duration\": 135.72, \"timestamps\": [[0, 12.89], [12.89, 45.47], [45.47, 111.29], [111.97, 135.72]], \"sentences\": [\"A young girl has her hair pulled back and glasses on as someone marks here cartilage.\", \"Once it is marked,she begins smiling at the camera.\", \"The man then grabs a pair of tweezers and clips the girl's ear.\", \"The earring is finally in and the girl begins to smile in approval and touches her other ear.\"]}, \"v_nMK_jVy5ZuI\": {\"duration\": 183.53, \"timestamps\": [[0, 59.65], [41.29, 140.4], [105.53, 174.35]], \"sentences\": [\"Several clips are shown of athletes running down a large track into a pit of sand.\", \" More people are shown running down the track performing impressive jumps as well as celebrating afterwards.\", \" Several clips are shown of athletes running down the track as well as jumping over beams and waving to the audience.\"]}, \"v_OMlpKhvmMpA\": {\"duration\": 32.51, \"timestamps\": [[0, 14.79], [13.49, 32.51]], \"sentences\": [\"A group of men are seen walking around a table filled with cups while laughing and smiling to one another.\", \" One man then jumps on the table and crashes it to the floor while others run around and laugh.\"]}, \"v_IjFlVNAWQec\": {\"duration\": 94.31, \"timestamps\": [[0, 14.62], [15.09, 44.8], [45.27, 94.31]], \"sentences\": [\"A view is seen of people in the ocean.\", \" The waters are rough, splashing harshly against the rocks.\", \" The people are being knocked off their surfboards.\"]}, \"v_ibIRzsC9NjY\": {\"duration\": 37.87, \"timestamps\": [[0.19, 37.49], [0.38, 37.3], [30.68, 32.95]], \"sentences\": [\"People are sitting on and riding camels outside.\", \"  A person is walking and holding a string tied to the camel's face.\", \" A light brown liquid is being poured into small glasses.\"]}, \"v_7wBrvMGZROQ\": {\"duration\": 5.04, \"timestamps\": [[0, 5.04], [0.05, 5.04], [0.18, 5.04]], \"sentences\": [\"A man is working out on bars.\", \" He has a weight attached to his belt.\", \" He goes up and down on the bars.\"]}, \"v_g_cdSUwwk8Y\": {\"duration\": 116.49000000000001, \"timestamps\": [[0, 13.98], [2.91, 11.65], [11.65, 28.54], [20.38, 23.3], [32.62, 92.61], [92.61, 116.49]], \"sentences\": [\"We are shown the overgrown yard.\", \" A white truck is seen in a driveway.\", \" We see the cameraman's shadow.\", \" A person in blue is mowing the lawn.\", \" A person People are using leaf blowers.\", \" The camera pans to show the trees and the garden.\"]}, \"v_xywGFiZ0hqs\": {\"duration\": 89.72, \"timestamps\": [[0, 20.19], [20.19, 51.59], [54.28, 69.98], [75.37, 88.82]], \"sentences\": [\"In introduction with show title and website is seen.\", \" A woman stands in bathroom and then places a contact lens into her eye.\", \" The woman then takes the contact lens back out of her eye.\", \" The woman shows a pair of tweezers and uses them to take the contact out of her eye instead.\"]}, \"v_M_OPqcaCDYI\": {\"duration\": 190.45, \"timestamps\": [[0, 56.18], [56.18, 91.42], [91.42, 139.03], [139.03, 190.45]], \"sentences\": [\"A group of six are on a little boat sitting waiting for the whistle to blow.\", \" Once it is blown they begin to paddle as quickly as they possibly can, working very well together.\", \" They almost hit a wall of rocks but are able to turn in time not to and are able to continue in route.\", \" Waves, pick up and then they do hit a different wall of rock, where they turn around at to go back.\"]}, \"v_zTrI4pPFIlw\": {\"duration\": 150.09, \"timestamps\": [[0, 18.01], [21.76, 100.56], [113.32, 150.09]], \"sentences\": [\"A gymnast prepares to mount a beam.\", \" He mounts, then proceeds to do many flips and handsprings.\", \" When he is finished, he dismounts.\"]}, \"v_UtErFzrzcqk\": {\"duration\": 38.45, \"timestamps\": [[0, 37.11], [37.11, 38.45]], \"sentences\": [\"A girl hits a pi\\u00f1ata blindfolded while the pi\\u00f1ata goes up and down in a backyard.\", \" Then, the girl take off the cloth on her eyes and smile.\"]}, \"v_pLJhoqTpAaI\": {\"duration\": 101.52000000000001, \"timestamps\": [[0, 6.09], [7.11, 31.47], [33.5, 91.37], [92.89, 101.52]], \"sentences\": [\"A tire for a bicycle spins, and a man catches it.\", \" We see a question written on paper, then a man in a bike shop as he talks.\", \" He demonstrates how to remove the rubber of a tire from the frame and replace it.\", \" He then talks to the camera a little longer.\"]}, \"v_fMRgMeDs9Ck\": {\"duration\": 51.67, \"timestamps\": [[0.26, 14.72], [13.69, 36.42], [36.94, 50.12]], \"sentences\": [\"A mans hair is seen close up followed by a razor being used on the sides.\", \" A person is seen combing the person's hair while still using the trimmer.\", \" The man's head is also seen being shaven on the side.\"]}, \"v_-zfOvigQLdA\": {\"duration\": 24.29, \"timestamps\": [[0, 22.71], [0.61, 10.57], [10.2, 12.99], [12.63, 23.07]], \"sentences\": [\"There's a lady swimmer diving into an indoor pool from a tall diving board while a small group of people are watching her perform.\", \" The diver stands in one position first to adjust her stance and then gradually steps forward on the diving board.\", \" She jumps up high and twists her body as she makes the jump.\", \" She ends up hurting herself on the back as she misjudges the distance from the diving board as she falls into the pool.\"]}, \"v_9qNM5tNMxK4\": {\"duration\": 207.1, \"timestamps\": [[0, 207.1], [10.35, 62.13], [53.85, 171.89], [62.13, 104.58], [86.98, 132.54], [105.62, 140.83], [125.29, 172.93], [151.18, 188.46], [184.32, 207.1]], \"sentences\": [\"There are two players wearing a red and white shirt and the other wearing black and white shirt, playing racket ball in an indoor court with a few spectators.\", \" The player in red hits the ball with a front hand swing and his opponent leaps forward to return the ball.\", \" The player in red continues to swing his racket in a front hand as he never fails to miss a single shot.\", \" The player in black misses one shot, but he immediately grabs the ball and they continue to play again.\", \" Both the players continue on a great rally without missing a shot.\", \" The player in red runs swiftly across the court to hit the ball back.\", \" Then they play five rounds continuously using back hand swings until the player in black misses a shot.\", \" Then they begin their final round where the player in black and white ends the final shot.\", \" They end the game by shaking hands and walk out of the court.\"]}, \"v_0kykNR9FUWU\": {\"duration\": 97.66, \"timestamps\": [[9.77, 22.95], [22.95, 42], [42, 83.99], [83.99, 91.8]], \"sentences\": [\"A girl gymnast in red sparkly leotard is doing gymnastics on a horse bar.\", \" She swiftly jumps and does handsprings and back flips on the horse bar.\", \" There is a panel of judges watching her in the stadium in Nanning, China.\", \" She continues to gracefully walk on the horse bar as she jumps and does a back flip right onto the ground and then walks away.\"]}, \"v_980U7SiE0Nk\": {\"duration\": 125.18, \"timestamps\": [[0, 6.88], [5.63, 125.18], [76.99, 125.18]], \"sentences\": [\"Two girls are seen standing on a gymnasium floor in front of a large crowd.\", \" The girls then begin dancing around the area while twirling batons in their hands.\", \" They continue to spin around one another and end by holding a pose.\"]}, \"v_79jhPh0PzWQ\": {\"duration\": 14.68, \"timestamps\": [[0, 2.79], [4.48, 11.3], [11.37, 14.68]], \"sentences\": [\"Someone hits a bat against two balls.\", \" The balls go to a loop in the ground.\", \" They split apart and go different distances.\"]}, \"v_EoYvQ_pn8KE\": {\"duration\": 45.54, \"timestamps\": [[1.14, 6.6], [7.51, 16.62], [17.08, 32.1]], \"sentences\": [\"Two women sweep a floor together as a ball glides behind them.\", \" They sweep the floor again and one of the women stops for a second as her partner starts sweeping faster.\", \" They sweep the floor again with one woman furiously sweeping towards the end as her partner stops for a second and looks up.\"]}, \"v_EAp9xQx2o6k\": {\"duration\": 68.15, \"timestamps\": [[0, 8.52], [8.86, 39.53], [39.53, 68.15]], \"sentences\": [\"People warm out raising the hands and bending.\", \" Then, people work out doing stepper workout putting a feet each time.\", \" After, people turn before step on the stepper.\"]}, \"v_3zjhYw-TVQw\": {\"duration\": 63.58, \"timestamps\": [[24.16, 54.36], [54.36, 60.08]], \"sentences\": [\"There's a man in a blue shirt and beige pants sitting in front yard on brown mulch talking about lawn and garden care.\", \" He points to the brown mulch and the shrub near him as he explains the do's and don'ts about lawn care.\"]}, \"v_Z3DhUZhoRDA\": {\"duration\": 110.83, \"timestamps\": [[0, 44.89], [44.89, 54.31], [75.36, 110.83]], \"sentences\": [\"Wall paper on a wall is shown.\", \" A person puts a piece of wax paper on the wall paper.\", \" They run a brush down the front of the paper.\"]}, \"v_D1x5KVBdiuI\": {\"duration\": 197.53, \"timestamps\": [[0.99, 63.21], [60.25, 143.21], [106.67, 189.63]], \"sentences\": [\"A person is seen putting a weight on followed by a woman lifting a bar up over her head.\", \" Another person is seen after her lifting up a large set of weights over their heads.\", \" Several more people are seen lifting heavy weights over their heads while others watch on the side.\"]}, \"v_Yfg0bZbxjVg\": {\"duration\": 229.25, \"timestamps\": [[0, 4.59], [5.73, 32.1], [33.24, 166.21], [137.55, 142.14], [168.5, 213.2], [214.35, 223.52], [226.96, 229.25]], \"sentences\": [\"We see two opening title screens.\", \" A lady sits on a bathtub and talks while playing with a dog.\", \" The lady puts the dog in the water and washes him.\", \" The lady adds more soap.\", \" The lady rinses the dog and wraps in him in a mustard orange towel.\", \" the lady sits and talks as the dog sits in her lap.\", \" The ending credits roll up the screen.\"]}, \"v_X5Dsemc20pg\": {\"duration\": 190.61, \"timestamps\": [[0.95, 63.86], [45.75, 139.15], [116.27, 179.18]], \"sentences\": [\"A man is seen speaking to the camera while presenting various liquids and ingredients.\", \" The man mixes ingredients into a glass with fruit for several drinks while stopping to have a drink.\", \" He continues making more drinks using different ingredients and speaking to the camera.\"]}, \"v_6SFW4g4UVKI\": {\"duration\": 32.74, \"timestamps\": [[0, 6.55], [6.55, 32.74]], \"sentences\": [\"A man's face is moving back and forth.\", \" The man is shining a shoe.\"]}, \"v_kUxz_SPi72U\": {\"duration\": 72.2, \"timestamps\": [[0.36, 22.38], [19.86, 71.48], [19.86, 64.62]], \"sentences\": [\"A man is seen kneeling down beside a tire while holding up various tools.\", \" The man then takes off a hubcap and places it back on the tire.\", \" He turns to speak to the camera.\"]}, \"v_iPk4GeFFcTQ\": {\"duration\": 78.09, \"timestamps\": [[0, 33.97], [26.94, 76.53]], \"sentences\": [\"An athletic man is seen running down a long track and throwing a javelin off into the distance with others measuring his throw.\", \" The man walks away and high fives a man in the crowd while his score is shown and another steps up to the side.\"]}, \"v_gdi_m9LjRAw\": {\"duration\": 104.33, \"timestamps\": [[2.09, 103.81], [16.17, 103.81], [100.68, 103.81]], \"sentences\": [\"A man is standing outside holding a chainsaw.\", \" He starts cutting down a tree next to him.\", \" He stands next to the tree talking.\"]}, \"v_wUsmKmxxHYQ\": {\"duration\": 176.73, \"timestamps\": [[4.42, 92.78], [67.16, 172.31]], \"sentences\": [\"A woman is seen speaking to the camera while a woman swims back and fourth in the pool behind her.\", \" Clips are then shown close up on how to perform proper swimming techniques while the camera interments with the woman speaking.\"]}, \"v_fhtNAMK0Vqk\": {\"duration\": 27.7, \"timestamps\": [[2.91, 6.93], [6.93, 13.99], [13.99, 26.18], [26.18, 27.7]], \"sentences\": [\"A man wearing a cowboy hat, sunglasses and yellow latex gloves is standing next to a horse in a stable.\", \" He is using a blow dryer to dry the horse's wet body.\", \" He moves the blow dryer back and forth all over the horse's back to dry it.\", \" He is also uses a scrubbing brush on the horse's back to clean the horse.\"]}, \"v_o6lTgyb_AkM\": {\"duration\": 171.99, \"timestamps\": [[2.58, 10.32], [14.62, 19.78], [20.64, 55.04], [55.9, 94.6], [95.46, 116.95], [116.95, 164.25], [165.11, 169.41]], \"sentences\": [\"A painter demonstrates various art pieces in her studio.\", \" She sits in her studio, speaking.\", \" She grabs a paintbrush and dips it into black paint repeatedly, as she paints a black tree.\", \" She grabs a sponge and dips it into green and blue paint while painting the leaves on the tree.\", \" She moves on to grab the paintbrush and dips it into black paint repeatedly, and moves on to paint another tree.\", \" With the same paint brush, this time dipping it into green paint, she paints the pines of three.\", \" She finishes her painting and speaks for a bit.\"]}, \"v_zCcUwVzaEac\": {\"duration\": 125.57, \"timestamps\": [[0, 3.77], [4.4, 120.55], [32.02, 53.37], [91.67, 94.81], [121.18, 125.57]], \"sentences\": [\"We see an opening title screen.\", \" A man sits on a track and talks as he is interviewed.\", \" Two men in red walk up the bleachers and one stops to talk to someone.\", \" A group of women walk behind the man being interviewer.\", \" We then see the ending title screen.\"]}, \"v_Bm6HrokioXU\": {\"duration\": 105.97999999999999, \"timestamps\": [[0, 27.55], [23.31, 69.41], [78.42, 105.98]], \"sentences\": [\"A man is seen standing around with a large group of kids and leads into the kids play dodgbeall in a large gymnasium.\", \" A woman is seen speaking to the camera while more shots of the game are shown and the man speaking to the kids.\", \" They are all seen sitting together and the man interviews the kids in a classroom.\"]}, \"v_D5EgASje8MQ\": {\"duration\": 114.17, \"timestamps\": [[0, 17.13], [17.13, 27.4], [27.4, 85.63], [85.63, 114.17]], \"sentences\": [\"Lawrence Welk is playing an accordion and directing his band.\", \" He is joined by another accordion player.\", \"  The band stands up to plan and the camera goes back and forth between the accordion players and the band.\", \"  They continue to play the accordions with the band behind them.\"]}, \"v_w6xH78z3l08\": {\"duration\": 70.56, \"timestamps\": [[0, 20.11], [21.87, 56.09], [46.57, 67.73]], \"sentences\": [\"A man is seen speaking to the camera in front of a car and begins taking a hubcap off.\", \" He slides the pieces off of the tire.\", \" Finally he puts the hubcap back in place.\"]}, \"v_xdl0lyO9ub0\": {\"duration\": 222.05, \"timestamps\": [[0, 36.64], [36.64, 83.27], [83.27, 139.89], [139.89, 222.05]], \"sentences\": [\"A man ina  shirt that says beast mode is making a video on what the best free workouts to do without a gym are.\", \" He has a weight bar with no weight and he bends over a certain way.\", \"He shows you how to use the weight bar for different weight lifting positions.\", \" Once he is done with the weight bar he stands back and talks about it all.\"]}, \"v_vruB4ViPGuE\": {\"duration\": 18.02, \"timestamps\": [[0, 18.02], [2.25, 2.97], [4.87, 5.77]], \"sentences\": [\"People are sitting on a bench.\", \" A man is drinking from a coffee cup.\", \" A woman is drinking from a coffee cup.\"]}, \"v_2_Tgrk8iJpE\": {\"duration\": 70.93, \"timestamps\": [[0, 19.15], [19.15, 41.85], [41.85, 63.83], [63.83, 70.93]], \"sentences\": [\"An indoor court is filled with people wearing uniforms and playing dodgeball throwing the balls to either side of the team.\", \"A slow motion replay of a dodgeball being thrown and caught is replayed.\", \"A man quickly throws a ball and his target catches it, he turns around and walks with his right up straight up in the air while the rest of the players continue to play.\", \"A still shot picture of a man holding two balls and black words scrolling from the bottom to the top with the word and number \\\"JARDINE 77\\\" is at the top.\"]}, \"v_K5_Rm4MfF9o\": {\"duration\": 142.56, \"timestamps\": [[0, 17.11], [20.67, 78.41], [86.25, 142.56]], \"sentences\": [\"A man is swimming backward in lake water.\", \" The two men shown begin water skiing.\", \" They lose their gopro device, and have to scuba to find it, taking more than two weeks to locate the still working device.\"]}, \"v_Yd0q08-cpJU\": {\"duration\": 125.34, \"timestamps\": [[0, 12.53], [15.67, 114.06], [117.19, 125.34]], \"sentences\": [\"A curtain is seen, and a belly dancer walks onto the stage.\", \" She performs for the audience, shaking her hips and sucking her belly in and out.\", \" When she finishes, she throws her arms into the air and the screen goes black.\"]}, \"v_9DVsv84awMg\": {\"duration\": 213.51, \"timestamps\": [[0, 2.14], [2.14, 7.47], [7.47, 20.28], [14.95, 20.28], [20.28, 25.62], [25.62, 39.5], [39.5, 43.77], [42.7, 167.6], [167.6, 169.74], [169.74, 187.89], [187.89, 191.09], [191.09, 206.04], [206.04, 213.51]], \"sentences\": [\"\\\"EPBF Millennium Series\\\" appears on screen.\", \"  Opened end of vehicle appears with \\\"www paint-supply net\\\" printed on bumper while tools are placed inside.\", \"  The car drives down a dark black road with photoshopped objects popping up on either side.\", \"  The end of the road appears with the word \\\"Paintball FAILs\\\" above it and pictures of paintball below it.\", \" The words \\\"Friendly Fire\\\" appear.\", \"  A group of people play paintball on a grassy field with inflatable obstacles.\", \" The words \\\"Stupid Hopper\\\" appear.\", \"  People once again play paintball on the field.\", \"  The words \\\"1/3 Lauf\\\" appear.\", \" People again play paintball on the field.\", \" The word \\\"Fehlstart\\\" appears on screen.\", \" People play paintball on the field.\", \"  Contact information for Paint Supply GmbH appears.\"]}, \"v_dRRht9vdYDE\": {\"duration\": 101.8, \"timestamps\": [[0, 20.36], [20.87, 45.81], [45.81, 71.26], [71.26, 101.8]], \"sentences\": [\"There are a few older gentlemen playing a game on ice.\", \" They have a coach to help them  and he talks about how to curl.\", \" He talks about the steps and how to get in the hack, even demonstrating.\", \" He seems pretty professional walking on the ice with his shoes on while demonstrating.\"]}, \"v_DG9-yffcXS4\": {\"duration\": 191.89, \"timestamps\": [[0, 76.76], [73.88, 158.31], [156.39, 191.89]], \"sentences\": [\"A man is seen pulling shades off of a window and removing the bars around the sides.\", \" Another man assists him by putting newer bars into the window as well as cutting the boards so they fit.\", \" In the end the camera pans around the new roof showing off it's great results.\"]}, \"v_TCcopbAANQ0\": {\"duration\": 158.13, \"timestamps\": [[0, 158.13], [25.3, 28.46], [79.86, 82.23]], \"sentences\": [\"A person is assembling a bike on a white cloth.\", \" They put on a blue apron and gloves.\", \" They put handle bars on the bike.\"]}, \"v_cAGABdvv5u8\": {\"duration\": 219.29, \"timestamps\": [[0, 7.68], [7.68, 219.29]], \"sentences\": [\"two men are riding a water bike in a sea while a big wave is behind them.\", \" a lot of scenes of people surfing on big waves on the sea and a city is in the background.\"]}, \"v_AV8q7nnOtq4\": {\"duration\": 83.28999999999999, \"timestamps\": [[2.5, 75.38], [6.25, 81.62]], \"sentences\": [\"A young man is seen sitting in front of a drum kit and begins playing the set of drums for the camera.\", \" He continues playing the drums and finishes by hitting the cymbal one last time.\"]}, \"v_YQiTt8b6N60\": {\"duration\": 198.53, \"timestamps\": [[0, 8.93], [11.91, 103.24], [106.21, 186.62], [187.61, 198.53]], \"sentences\": [\"A close up is shown of a woman's eyes.\", \" She is sitting on a rock, then biking, then adorning scuba gear.\", \" She dives, swimming alongside tropical fish and a nursing shark.\", \" She is finally shown wearing sunglasses, smiling and laughing.\"]}, \"v__K3Cpdks6NQ\": {\"duration\": 60.74, \"timestamps\": [[0, 10.93], [11.24, 25.82], [25.82, 41.61], [41.61, 60.74]], \"sentences\": [\"There is very large group of people outside on a basketball court after sunset.\", \" They are all jumping up and down on these new pogo stick things that you wear like shoes.\", \" There are many young kids just bouncing up and down on them enjoying the evening.\", \" There are even a few people standing by and watching.\"]}, \"v_bV_X5E1-T50\": {\"duration\": 175.06, \"timestamps\": [[0, 169.8], [0, 41.14], [33.26, 133.92], [74.4, 93.65], [138.29, 175.06]], \"sentences\": [\"A girl is sitting and smoking cigarettes.\", \" Johnny cash is playing in the background and she has a drink in her hand.\", \" She stares into the camera while taking puffs on her cigarette.\", \" She fixes her hair a bit while looking into the camera.\", \" She smiles into the camera and leans closer.\"]}, \"v_G-fsWVYrAgc\": {\"duration\": 169.65, \"timestamps\": [[7.63, 89.06], [89.06, 107.72], [108.57, 156.07]], \"sentences\": [\"A woman stands on front a table with baby products, then the woman rolls up diapers and puts around a circular container with a ribbon.\", \" After, the woman puts diapers around a folded towel with a ribbon.\", \" Next, the woman fills the circular container with baby products and put on top the towel, a plush and a bottle.\"]}, \"v_WW0Sm6oDc9M\": {\"duration\": 22.92, \"timestamps\": [[0, 8.14], [8.02, 9.74], [11.69, 15.13]], \"sentences\": [\"A boy picks up a bowling ball and runs down the lane.\", \" He dives into the pins at the end.\", \" He runs back and falls onto the lane.\"]}, \"v_i0rC2mfp7mI\": {\"duration\": 24.03, \"timestamps\": [[0, 11.3], [11.3, 18.99], [19.59, 24.03]], \"sentences\": [\"A man dressed in all black and a mask on is outside in a public place playing and instrument with bags in the middle and small keyboard on the outside of it.\", \"As he plays,multiple people walk by continuing on with their life.\", \"None of them acknowledge him and the hat in front of hi remains empty.\"]}, \"v_8w9pf_Ecm_U\": {\"duration\": 100.08, \"timestamps\": [[0.5, 100.08], [4.5, 33.03], [30.02, 95.08]], \"sentences\": [\"Two girls holding pom poms perform a dance routine in a gymnasium.\", \" Several people are shown watching in the background while the girls continue to do flexible moves.\", \" The grab canes and continue spinning the canes while doing splits and various other dance moves.\"]}, \"v_o_e0KLnKpj8\": {\"duration\": 132.31, \"timestamps\": [[0, 72.11], [13.89, 17.2], [31.09, 47.63], [47.63, 72.11], [81.37, 115.11], [113.78, 118.42], [119.08, 132.31]], \"sentences\": [\"We see a lady starting a lawn mower.\", \" The lady stops and looks at the camera.\", \" The lady starts then stops mowing.\", \" The lady tries to start the mower again.\", \" Another lady comes to help and falls over.\", \" The first lady finally gets the mowers started.\", \" the lady throws her arm in the air and mows the lawn.\"]}, \"v_I6gc2AjcYOY\": {\"duration\": 44.12, \"timestamps\": [[0, 25.81], [8.82, 12.13], [16.76, 18.09], [26.03, 38.16], [38.38, 44.12]], \"sentences\": [\"We see a lady washing a white towel in a sink.\", \" The lady lifts the towel up.\", \" The lady picks something up off the floor.\", \" The lady wrings out the towel in the sink.\", \" the lady then walks away.\"]}, \"v_b87ec6jTm_M\": {\"duration\": 125.99, \"timestamps\": [[0, 6.93], [6.93, 10.08], [10.71, 18.9], [18.9, 30.87], [30.87, 47.88], [47.88, 55.44], [56.7, 92.6], [91.34, 100.79], [101.42, 125.99]], \"sentences\": [\"We see a black screen with the intro.\", \" We see people in blue playing drums.\", \" A title screen appears and we see another team.\", \" Another title screen and a team with a man jumping a ribbon.\", \" The title appears twice and we see a red team.\", \" The title screen returns and we see a team in purple.\", \" The title returns 3 times  and people are outdoors practicing.\", \" We see people perform in front of a crowd.\", \" We see a bunch of quick shots of teams, then the ending screen.\"]}, \"v_w9cJ3FNGw_U\": {\"duration\": 188.25, \"timestamps\": [[0, 12.24], [20.71, 81.89], [93.18, 188.25]], \"sentences\": [\"A cowboy on a horse is released from a gate.\", \" He lassos a little calf.\", \" He dismounts, then ties the calf.\"]}, \"v_LxLvhGHwca8\": {\"duration\": 154.9, \"timestamps\": [[0.77, 75.13], [64.28, 153.35]], \"sentences\": [\"Several people are seen wandering around a dark city while wearing stilts on their feet to walk.\", \" The people continue walking and jumping around on the stilts while waving to the camera and sitting on the ground.\"]}, \"v_27Pg4wHah2I\": {\"duration\": 93.55, \"timestamps\": [[0, 9.36], [10.29, 15.44], [17.78, 37.89], [38.36, 87.47], [87.47, 93.55]], \"sentences\": [\"A man is seated at a piano, looking confused as he plays and an elderly woman watches.\", \" He speeds his playing as she stands.\", \" The audience looks perplexed and amused, dancing in place.\", \" The people get up and dance to the music.\", \" He then walks away with his arm in a woman's.\"]}, \"v_UzCeMCr0lM8\": {\"duration\": 58.58, \"timestamps\": [[0, 13.77], [14.06, 55.95], [56.24, 58.58]], \"sentences\": [\"A woman peels a potatoes in a rustic kitchen.\", \" Then, the woman takes another potatoes and peels it with a knife.\", \" After, the woman puts the potatoe on adish.\"]}, \"v_YnG1Uhh2h5E\": {\"duration\": 176.8, \"timestamps\": [[4.42, 56.58], [56.58, 68.95], [70.72, 101.66], [101.66, 119.34], [120.22, 141.44], [143.21, 155.58], [156.47, 171.49]], \"sentences\": [\"Two young man and a man play pool hitting white balls with a cue stick.\", \" The young man hits balls that land in the pocket of the pool table.\", \" Then, the man puts the balls in a metal triangle and arrange others balls.\", \" After, the  young man strikes the white ball but immidiately stop it with the cue sticks.\", \" Next, the young man strikes the balls and sends a white ball to a pocket.\", \" The man strikes a white ball and send balls in the pocket.\", \" At the end, the young man puts the ball inside a metal triangle.\"]}, \"v_rDWa3Z2IaIw\": {\"duration\": 221.75, \"timestamps\": [[0, 29.94], [29.94, 80.94], [80.94, 139.7], [139.7, 179.62], [179.62, 221.75]], \"sentences\": [\"Three girls are standing together on a green floor talking with one another about a sport.\", \"One person is then shown playing Field hockey and then comes back to talk about what she has just done.\", \"Next,they go over the correct ways to defend the ball and then they all begin talking one by one about the sport again.\", \"After,a screen appears with the question,\\\"What if the game is tied?\\\"and the young lady goes into detail for the answer.\", \"Finally the questions are answered and they all come back together and close out the video.\"]}, \"v_fo0gFCcKdtg\": {\"duration\": 51.27, \"timestamps\": [[0, 51.27], [0, 29.22], [38.71, 39.73], [43.07, 51.27]], \"sentences\": [\"People are paddling canoes in an indoor pool.\", \" A boy paddles a canoe.\", \" The boy leans to the side, and the canoe flips over.\", \" The boy swims to the surface of the water.\"]}, \"v_B69Fkd_L9gA\": {\"duration\": 181.09, \"timestamps\": [[19.92, 55.23], [55.23, 94.17], [94.17, 126.77], [126.77, 160.27], [160.27, 167.51]], \"sentences\": [\"There's man standing on his deck that is covered with snow.\", \" He is getting ready to get into his hot tub on his deck.\", \" He walks bare foot through the snow to get into his hot tub.\", \" He begins to shovel the snow off the deck to make it easier for him to walk.\", \" He clears the snow from the deck to create a pathway to the hot tub.\"]}, \"v_jTChoOFb05w\": {\"duration\": 184.72, \"timestamps\": [[0, 40.64], [40.64, 130.22], [132.99, 184.72]], \"sentences\": [\"Various shots of landscapes are shown as well as people driving and other's being interviewed.\", \" Several shots of people on the beach are shown and leads into people playing various sports on the beach.\", \" The people play back and fourth while others interview and many watch on the sides.\"]}, \"v_Qp_zbvHLwLk\": {\"duration\": 70.44, \"timestamps\": [[0, 41.91], [18.67, 70.44]], \"sentences\": [\"A woman is seen pushing a lawn mower along a yard and stopping to pull the string and get it going.\", \" The woman continues pushing the mower along the lawn and moving back to where she started.\"]}, \"v_Lr-FutvMXoA\": {\"duration\": 43.26, \"timestamps\": [[1.08, 27.25], [11.46, 40.45]], \"sentences\": [\"A person is pole volting over a beam followed by several more clips of people jumping.\", \" More people are shown using the bar to pole volt over a beam.\"]}, \"v_kyMsxlpBjlY\": {\"duration\": 30.35, \"timestamps\": [[0, 30.35], [2.12, 27.62], [3.03, 27.31], [5.77, 30.35]], \"sentences\": [\"There's a person mowing the lawn in his yard with a lawn mower while carrying his child on his back.\", \" The man walks up and down, straight across the yard as he mows the lawn.\", \" The child watches calmly while resting on the man's back.\", \" The man continues to mow the lawn with his black lawn mower.\"]}, \"v_rMevLL0KHzc\": {\"duration\": 147.63, \"timestamps\": [[0, 33.96], [39.86, 112.94], [112.94, 141.73]], \"sentences\": [\"A person is seen riding on a horse around others while speaking to other people and kids holding up a sign.\", \" The kids continue to hold signs and look to the camera while more people ride around on horses.\", \" More clips are shown of people riding horses and kids wearing helmets.\"]}, \"v_hEoASC7qC28\": {\"duration\": 118.19, \"timestamps\": [[0, 10.05], [10.64, 108.73], [115.83, 118.19]], \"sentences\": [\"A man is sitting in the water holding a rope.\", \" He gets up and starts wake boarding.\", \"He falls back into the water.\"]}, \"v_vX0xxYxGj-4\": {\"duration\": 92.78999999999999, \"timestamps\": [[0, 3.25], [3.25, 76.09], [76.55, 92.79]], \"sentences\": [\"Two lines of people stand over a long rope.\", \" Each line picks up the rope and starts playing tug rope while a large crowd watches.\", \" The team wearing light blue shirts wins the round.\"]}, \"v_JQ3mObvro1s\": {\"duration\": 151.38, \"timestamps\": [[0, 9.84], [9.84, 30.28], [30.28, 63.59], [63.59, 79.48], [79.48, 96.14], [96.14, 151.39]], \"sentences\": [\"A white intro screen appears with small circle pictures of a man at the upper left, a woman at the bottom right, and the words \\\"HOOKED ON RUNNING Smart training for busy women\\\" in the middle.\", \"A woman wearing a hat, glasses and a long sleeved hot pink top is standing in front of a brick wall and talking.\", \" The woman is now standing behind a table and is putting crumpled up papers into a running shoe and stuffing it as much as she can.\", \" The woman then grabs a pink sole from the shoe and pours baking soda all over the top.\", \" The woman then grabs a toothbrush and the show she just stuffed and motions scrubbing but doesn't really do it, then puts both the toothbrush and the shoe out of sight.\", \" The woman grabs another pair of shoes, the right shoe is unlaced and the left shoe is laced and she's holding onto them then puts them down.\"]}, \"v_1ILXipBgbTs\": {\"duration\": 60.35, \"timestamps\": [[6.03, 30.48], [30.48, 50.09], [50.09, 56.73]], \"sentences\": [\"There are several people dressed in safety vests and helmets sailing in a speed boat to go tubing in water.\", \" They travel through the lake and arrive at a spot where they get off the boat and jump into the water with their tubes.\", \" They get onto the yellow tubes and float along the water.\"]}, \"v_Z8QrA66UVzI\": {\"duration\": 173.98, \"timestamps\": [[0, 71.33], [69.59, 173.98]], \"sentences\": [\"A man is seen standing in front of a window speaking to the camera while wearing a headpiece.\", \" The man then brushes along the sides of the window and points back and fourth to the window while speaking to the camera.\"]}, \"v_f3spxjpfuxM\": {\"duration\": 183.49, \"timestamps\": [[0, 103.67], [106.42, 183.49]], \"sentences\": [\"A man is shown speaking to the camera then kneels down and presses carpet down with a tool.\", \" He then screws in the stairs and kneel down while still speaking to the camera.\"]}, \"v_meMZuh8iNDs\": {\"duration\": 178.49, \"timestamps\": [[0, 60.69], [61.58, 69.61], [69.61, 139.22], [140.12, 178.49]], \"sentences\": [\"A woman talks and shows her long French braid.\", \" Then, the woman lie on the bed and brush her hair on the border of the bed.\", \" Then, the woman takes a lock of front hair and braid taking hair from sides.\", \" Then, the woman shows the braid while continues talking.\"]}, \"v_L5nqeFWufrE\": {\"duration\": 52.39, \"timestamps\": [[3.93, 9.95], [9.95, 18.86], [18.86, 28.81], [28.81, 29.86], [29.86, 41.91], [41.91, 48.98]], \"sentences\": [\"There's a diver participating in an event in a large stadium in lots of spectators.\", \" He is jumping off the dash board and diving into the deep swimming pool.\", \" While diving he accidentally bumps his head on the diving board and injures himself.\", \" He expresses pain as he gets off the pool and his coach comes to help him.\", \" The second time when the diver dives, he manages to successfully make it into the swimming pool without injuries.\", \" Another historic diving event is shown where the diver accidentally hurts his head on the diving board while diving into the pool.\"]}, \"v_oJCB2Zglcq4\": {\"duration\": 44.24, \"timestamps\": [[0, 8.18], [8.85, 20.57], [19.46, 42.69]], \"sentences\": [\"A small group of people are seen standing inside a fenced in area with a man sitting on a horse.\", \" The man rides into the pit and chases a calf with a rope.\", \" The man ties up the calf after it's caught and climbs back on the horse while another unties the calf.\"]}, \"v_r4bI22hGTg4\": {\"duration\": 23.48, \"timestamps\": [[0, 23.48], [0.82, 17.84], [17.72, 23.48]], \"sentences\": [\"There are kids bouncing in trampolines.\", \"  Several kids are jumping up and down.\", \"  The camera is very shaky.\"]}, \"v_ZsXJw0d3QbU\": {\"duration\": 114.17, \"timestamps\": [[0, 114.17], [4.57, 114.17], [1.14, 114.17], [104.47, 114.17]], \"sentences\": [\"Kids are sitting in bumper cars.\", \" They begin going and bumping into each other.\", \" People are standing behind the gate watching them.\", \" A man in a blue shirt is walking in front of them.\"]}, \"v_STaS53CNlZI\": {\"duration\": 184.55, \"timestamps\": [[0, 2.77], [2.77, 4.61], [4.61, 20.3], [20.3, 33.22], [20.3, 51.67], [51.67, 149.49], [149.49, 166.1], [166.1, 182.71], [182.71, 184.55]], \"sentences\": [\"An intro that's a blue screen with white words that read \\\"MegaZip Sentosa dot Singapore dot November 2010\\\" appear on the screen.\", \" Four people appear near a railing where they are all attached to harnesses.\", \"A man puts his hand on the woman's shoulder and guides her to the opening where she is to leave but a blue screen appears with the white words say \\\"yes\\\",then it goes back to the woman getting ready to jump and she bends her knees and a blue screen appears and say's \\\"no\\\", and she shakes her head and backs away.\", \"A blue screen appears again and it says \\\"OK Maybe\\\"and the woman once again gets ready to jump at the opening and at the same time the other man who is attached to the harness is also ready to go.\", \"A blue screen appears that say's \\\"no\\\" but the woman and the man do let go and they go zip lining across the heavily tree green forest below and a blue screen appears again and say's \\\"I Think She Said Yes?\\\".\", \" A new group is now harnessed and they are filmed taking their turns going down the zip line and the man holding the camera turns it to himself to reveal a close up shot of his smiling face as well as the scenery around him which include the forest below them and the beach at the ending point.\", \"They reach the end of the zip line and the worker begins to pull them to the landing point where a close up of the worker appears and he also has a big smile on his face while he other zip liners are standing there and smiling as well.\", \"The view changes to ground view and it shows what the zip liners look like from the ground.\", \" The blue outro appears and the words \\\"Sentosa MegaZip November 2010 The End\\\" are displayed.\"]}, \"v_goSGYjLTGnQ\": {\"duration\": 65.13, \"timestamps\": [[0, 4.23], [4.56, 24.75], [24.42, 49.17], [49.17, 65.13]], \"sentences\": [\"A young male dressed in an red jumpsuit is on the stage break dancing.\", \"Once he is finished,a group of guys swarm him and they all point to another boy so he can take the stage.\", \"The boy comes along and starts flipping and doing a variation of the robot.\", \"All of the men behind him then become his background dancers as the boy takes a microphone and begins singing.\"]}, \"v_PUzd4mfmzqo\": {\"duration\": 194.4, \"timestamps\": [[0, 64.15], [65.12, 185.65], [186.62, 194.4]], \"sentences\": [\"A man in an outdoor basketball court explains how to do layup drills with both arms, over hand, underhand, right and left hand layup with two steps.\", \"  He then goes to the hash marks on the court and shows various variations of a layup from various distances and how to do the drills for practice.\", \"  He then comes back to the camera and explains what he did.\"]}, \"v_QfUTGmlNO1s\": {\"duration\": 20.02, \"timestamps\": [[0, 7.31], [7.71, 20.02]], \"sentences\": [\" A clip of an old tv show is shown with a woman washing dishes and a young girl stepping into frame.\", \" The woman hands the girl a glass of water and is shown again in various angles, ending with a woman washing clothes.\"]}, \"v_JWb0-VdfZI4\": {\"duration\": 56.45, \"timestamps\": [[0.56, 15.24], [18.35, 42.05], [42.9, 55.6]], \"sentences\": [\"A small child is seen standing on the sidewalk and looking off into the distance.\", \" The girl then throws the rock and begins playing a game of hopscotch.\", \" She throws and hops several times while stopping to look to the camera.\"]}, \"v_YFTQImGp_nY\": {\"duration\": 160.42000000000002, \"timestamps\": [[0, 30.48], [31.28, 150.79], [67.38, 146.78], [101.86, 117.1], [118.71, 152.4], [151.59, 158.81], [158.81, 160.42]], \"sentences\": [\"A television announcer claps on her legs while singing introducing a show.\", \" A group of dancers in colorful costumes do an dance act with hula hoops.\", \" The audience is seen and members clap for the group.\", \" The older members of the group hold up poles for the children dancing to swing from.\", \" The hula hoop dancers get even more hoops for the finale.\", \" Confetti rains from the air onto the performers.\", \" The announcer stands up and claps for the group.\"]}, \"v_rCwolEeHY80\": {\"duration\": 110.47, \"timestamps\": [[0, 103.29], [14.36, 32.04], [33.69, 45.85], [67.39, 75.67], [81.2, 93.35]], \"sentences\": [\"A man sits with shears resting in hand in a rose garden.\", \" The man clips dead roses from a rose bush with shears.\", \" The man clips whole branches near the base of the rose bushes.\", \" Dying rose bush leaves a seen up close.\", \" Healthy rose bush leaves are seen up close.\"]}, \"v_boqfpo3YAps\": {\"duration\": 222.24, \"timestamps\": [[0, 57.78], [52.23, 172.24], [137.79, 211.13]], \"sentences\": [\"Several pictures are shown of a woman standing by herself as well as with friends.\", \" Video footage is then shown of her running alongside a large group of people while many watch on the sides.\", \" More pictures are shown of her finishing the race as well as others.\"]}, \"v_bEt8fGREAAA\": {\"duration\": 121.5, \"timestamps\": [[0, 59.54], [58.93, 60.75], [60.75, 118.46], [115.43, 121.5]], \"sentences\": [\"A man with a saxaphone around his neck talks to the camera in a dim room.\", \" The camera changes like a box spinning.\", \" The man looks around then he is playing his saxophone.\", \" A website a person the screen in the lower left corner and the screen fades.\"]}, \"v_sYJgYpQknw0\": {\"duration\": 130.29, \"timestamps\": [[0, 5.86], [6.51, 35.83], [35.18, 55.37], [55.37, 111.4], [114, 130.29]], \"sentences\": [\"The front of a large brown building with snow in front of it is shown.\", \"In the inside,there is a ping pong table and two adult males begin walking towards each other.\", \"They then begin playing ping pong with nun-chucks and using their feet to hit the ball.\", \"As the game progresses,more balls are added and they continue to play without missing one ball.\", \"The game intensifies and the man on the right misses the ball and the man congratulates himself.\"]}, \"v_3YDQ9wZtIgw\": {\"duration\": 235.75, \"timestamps\": [[0, 66.01], [68.37, 180.35], [175.64, 232.22]], \"sentences\": [\"A large group of people are seen running around a field playing a game of lacrosse with one another.\", \" The players run up and down the field while the camera captures their movements.\", \" The men continue playing around one another while people watch on the side and cheer them on.\"]}, \"v_qi5Oie047pQ\": {\"duration\": 31.02, \"timestamps\": [[0, 12.25], [12.41, 26.99], [27.92, 31.02]], \"sentences\": [\"A young boy is sitting up against the wall making a face as two people are standing in front of him.\", \"The girl on the left then takes a small tube of polish and begins to paints the boy's nail with red glitter.\", \"When she is finished,the boy is shown and he begins to laugh about the situation.\"]}, \"v_ybcStSlBGPc\": {\"duration\": 235.34, \"timestamps\": [[0, 4.71], [4.71, 7.06], [7.06, 24.71], [24.71, 35.3], [35.3, 42.36], [42.36, 48.24], [48.24, 49.42], [49.42, 55.3], [55.3, 62.36], [62.36, 76.48], [76.48, 91.78], [91.78, 108.25], [108.25, 142.38], [142.38, 152.97], [152.97, 174.15], [174.15, 175.32], [175.32, 182.38], [182.38, 235.34]], \"sentences\": [\"A lighted jack-o-lantern comes into focus.\", \" The jack-o-lantern moves towards the camera.\", \" A young woman is talking very animatedly in front of a white wall.\", \" The woman holds a small pumpkin in her hand while talking.\", \" The woman holds up a piece of paper with some stickers on it.\", \" The pumpkin is seen moving on it's own on a table with a black tablecloth.\", \" The pumpkin spins around showing some cartoon faces.\", \" An animation of a knife stabs the pumpkin and a cat runs back and forth next to the table.\", \" The pumpkin is replaced with other objects one at a time, a knife, a spoon, a candle, etc.\", \" The woman is wearing a sticker of a mustache on her face and draws on the small pumpkin with a black felt pen.\", \" The woman holds a knife and begins carving the pumpkin along the lines she drew.\", \" The woman scoops out the pumpkin seeds with a spoon and puts the seeds in a Halloween themed paper cup.\", \" The woman continues carving the face of the pumpkin to turn it into a jack-o-lantern.\", \" The woman cleans up the face of the jack-o-lantern with a towel and places the top with the stem back on.\", \" The woman places the candle inside the jack-o-lantern.\", \" The woman flicks on a disposable lighter.\", \" The lighted jack-o-lantern is seen once again moving on it's own on the black table.\", \" The video ends and shows a split screen with samples from three other videos the woman has made, with a \\\"Subscribe\\\" button in the middle.\"]}, \"v_weB3srg6o4c\": {\"duration\": 128.13, \"timestamps\": [[0, 48.05], [48.69, 128.13]], \"sentences\": [\"man is sitting in a handwash and another man enters in the bathrrom and start a conversation.\", \" man is spreading toothpaste in toothbrush and wash their tooth.\"]}, \"v_EE1UoJSNyms\": {\"duration\": 35.43, \"timestamps\": [[0, 25.69], [25.87, 35.43]], \"sentences\": [\"A man rakes leaves from the yard into a pile and dumps them in a metal trash bin.\", \" The man puts his tools away in the shed and carries away a bag of leaves.\"]}, \"v_w2zTEQMg_v0\": {\"duration\": 142.04, \"timestamps\": [[2.13, 141.33], [2.84, 4.97], [15.62, 38.35], [123.57, 141.33]], \"sentences\": [\"A group of men and women of various ages are working out on elliptical exercise machines.\", \"  A man, wearing only work out shorts, wipes sweat from his brown and leans against a wall.\", \" A fit woman's body in a white bikini exhibits as a woman and a man in work out clothes appear working out on elliptical machines.\", \"  The woman and man then appear dressed in full casual attire before returning to the elliptical machines in work out gear, and cycling backwards and forwards on the elliptical machines again and showcasing fit profiles both alone and on the machine.\"]}, \"v_TN73eY7B208\": {\"duration\": 193.52, \"timestamps\": [[3.87, 31.93], [13.55, 193.52]], \"sentences\": [\"A group of female in a big studio are wearing black, they are in a formation, then the man in black vest and white pants walked at the center.\", \" The females and man started to march, then danced, putting their arms up, then down and then they go forward then backward, sideways, and move their arms side to side, they also shake their hips and body.\"]}, \"v_rDGbxMgkt7w\": {\"duration\": 189.59, \"timestamps\": [[0, 54.98], [54.03, 113.75], [113.75, 189.59]], \"sentences\": [\"Several women are outside on a stage doing several exercises and working out as a group.\", \"As they continue,several people begin to walk by the stage and watch them perform.\", \"The instructors continue to dance and amp up the other teams to dance and they end by clapping it off together.\"]}, \"v_obt6wudzHxY\": {\"duration\": 122.09, \"timestamps\": [[0, 11.6], [12.21, 87.3], [87.91, 100.11], [101.95, 122.09]], \"sentences\": [\"Instruction on how to braid your hair.\", \" A girl in a grey t-shirt demonstrates how to braid your hair and shows a step by step process.\", \" Some tips are displayed in print.\", \" The hair stylist shows the finished product while dresses in a black top and sunglasses.\"]}, \"v_J959vSGFedM\": {\"duration\": 28.26, \"timestamps\": [[0, 2.68], [2.97, 24.16], [25.15, 28.26]], \"sentences\": [\"A man is lying on his back on a tile floor.\", \" He is trying to do sit ups, slowing down and grimacing as the effort becomes more difficult with each one.\", \" He stops, lying back and laughing.\"]}, \"v_g-Egl6eXlX4\": {\"duration\": 176.01, \"timestamps\": [[3.52, 176.01], [14.08, 115.29], [127.61, 139.93], [139.93, 151.37]], \"sentences\": [\"A man is sitting in a barber chair.\", \" Another man starts shaving the sides of his head.\", \" He blow dries his hair and styles it.\", \" He puts some gel in his hair.\"]}, \"v_XLOhMBLYy2g\": {\"duration\": 237.89, \"timestamps\": [[1.19, 61.85], [58.28, 168.9], [148.68, 233.13]], \"sentences\": [\"A camera pans all around a lake and trees an leads into people pulling a rope along.\", \" A man ties the rope into place and shows several clips of people hanging on the rope as well as walking.\", \" More clips are shown of people walking along the rope as well as more landscapes.\"]}, \"v_x99PS_O6JW8\": {\"duration\": 117.08, \"timestamps\": [[2.34, 111.22], [18.73, 24], [29.27, 105.37], [37.46, 111.22]], \"sentences\": [\"A young man is talking to the camera outside while taking puffs off of a hookah.\", \" He puts the pipe away and takes a swing out of an energy drink.\", \" He moves the camera to show another man and continues smoking the hookah next to the other man.\", \" Both look into the camera while smoking and the boy still continues drinking the energy drink.\"]}, \"v_s9Q8SZbixV4\": {\"duration\": 234.85, \"timestamps\": [[5.87, 17.61], [15.27, 30.53], [30.53, 132.69], [12.92, 211.36], [41.1, 59.89], [35.23, 190.23], [69.28, 82.2], [106.86, 176.14], [173.79, 204.32], [185.53, 205.49]], \"sentences\": [\"A group of people are in a high school gym.\", \" Males are partnered with females and they are holding hands.\", \" Now they are all dancing the same dance.\", \" It appears to be some sort of tango dance.\", \" The men are twirling the girls around their hands.\", \" The men are leading the girls in the dance.\", \" The girls are twirling around the boys.\", \" The dancing continues for many more moments.\", \" The girls and boys separate.\", \" The girls twirl scarfs around, then the boys pick them up to finish.\"]}, \"v_nm2sHNDN7Lo\": {\"duration\": 14.3, \"timestamps\": [[0, 3], [3, 5.08], [5.08, 14.3], [11.51, 14.3]], \"sentences\": [\"We see a man in a pink shirt throw a ball in a  cup in a game of beer pong.\", \" The man on the left team blows the ball out of the cup.\", \" The man and the two ladies laugh and cheer and he high fives one lady.\", \" The man makes hand signs.\"]}, \"v_Ig_AvatvYrk\": {\"duration\": 232.36, \"timestamps\": [[10.46, 12.78], [12.78, 22.07], [22.07, 54.61], [54.61, 65.06], [65.06, 116.18], [116.18, 128.96], [128.96, 132.45], [132.45, 140.58], [140.58, 173.11], [173.11, 192.86], [192.86, 212.61], [212.61, 223.07], [223.07, 232.36]], \"sentences\": [\"There is a young man dressed in a black shirt going round in circles to show his hair from the front and back.\", \" Then he takes a spray bottle and sprays his hair with water and combs it.\", \" He then takes a razor and begins shaving the sides and the back of his head.\", \" He takes a pair of scissors and starts trimming the top part of hair.\", \" He uses a black comb and scissors to point cut his hair.\", \" He holds the hair in his hand as he trims it.\", \" He takes the razor again and shaves the sides.\", \" He takes the scissors too and trims his hair.\", \" He then blow dries his hair.\", \" He takes a small amount of hair gel on his finger from the container and rubs it through the long section of his hair.\", \" He then combs the hair to style it.\", \" He runs his fingers through the hair to finish off the look.\", \" He rotates around to show his hairstyle from all angles.\"]}, \"v_fL8Gzk7ALxQ\": {\"duration\": 123.18, \"timestamps\": [[0, 123.18], [0.62, 123.18], [0.62, 122.57]], \"sentences\": [\"A group of people is gathered in a circle.\", \" Two men are in the circle demonstrating a martial art.\", \" Several men in the circle play an instrument.\"]}, \"v_pLcrLi5oAvU\": {\"duration\": 174.29, \"timestamps\": [[0, 37.47], [37.47, 74.94], [74.07, 122], [122.87, 174.29]], \"sentences\": [\"A hair dresser is cutting a mans hair, starting at the top.\", \" Then, he starts at the back cut and combing back there.\", \" After that he uses some clippers to clip some of the harder areas.\", \" Finally using the comb to style it a bit and give it finishing touches.\"]}, \"v_mhsotF4wdG8\": {\"duration\": 194.56, \"timestamps\": [[0, 23.35], [23.35, 55.45], [55.45, 73.93], [72.96, 124.52], [124.52, 194.56]], \"sentences\": [\"two guys appears in a backyard and are speaking to the camera.\", \" guys are in a wood surface playing rock paper scissors and the loser is given a wooden hit in the nuts and fell to the floor.\", \" man is talking to camera and other guys are in the back adn then talking to the winner.\", \" they are playing round two o rock paper scissors and again the loser is fiven a wooden hit in the nuts and a man is talking to the camera.\", \" the guys make the final round of rock paper scissors and the winner is announced, one of the men gaves a hit in the nuts to both guys.\"]}, \"v_JvFo4uTvmYs\": {\"duration\": 14.1, \"timestamps\": [[0, 0.92], [1.76, 10.57], [12.62, 13.88]], \"sentences\": [\"A person stands on a mat.\", \" They run down a runway holding a pole and vault over a bar.\", \" They land on their back on a mat.\"]}, \"v_ywl6JVt7-7I\": {\"duration\": 34.55, \"timestamps\": [[0, 21.25], [11.57, 34.55]], \"sentences\": [\"A person is seen riding around on a lawn mower cutting the grass in a large field.\", \" The young boy moves closer to the camera while still driving around and cutting the grass.\"]}, \"v_2CfCDcCuOO4\": {\"duration\": 91.0, \"timestamps\": [[0, 91], [31.39, 32.76], [33.67, 39.59], [33.67, 91]], \"sentences\": [\"A small dog is playing with a pink frisbee.\", \" A man in a white shirt and red shorts lays down and puts his feet in the air.\", \" The dog stands on top of the mans feet.\", \" People are watching them on the sidelines.\"]}, \"v_xZdCmghMcvU\": {\"duration\": 142.53, \"timestamps\": [[0, 25.65], [26.37, 36.34], [37.06, 142.53]], \"sentences\": [\"A woman stands by watching a chef removing leaves from a piece of lettuce.\", \" The chef shows the woman how to cut some parts of the lettuce.\", \" The chef and the woman have a long conversation regarding the lettuce.\"]}, \"v_KQvqRh1mY8c\": {\"duration\": 13.14, \"timestamps\": [[0, 6.57], [6.57, 8.15], [8.41, 12.81]], \"sentences\": [\"A man runs holding a pole with both hands.\", \" Then, she jumps high with the pole to pass over an horizontal bar.\", \" The man falls on the mat.\"]}, \"v_nSuPseBeQI0\": {\"duration\": 30.08, \"timestamps\": [[0, 4.96], [6.62, 19.1], [19.7, 30.08]], \"sentences\": [\"A couple of boys are riding skateboards.\", \" They watch another couple of men playing basketball.\", \" They argue, then the basketball players leave.\"]}, \"v_cRpzDPS6zeY\": {\"duration\": 165.47, \"timestamps\": [[1.65, 162.16], [9.93, 157.19]], \"sentences\": [\"A man and a woman are performing a couple's dance routine while other couples dance around them.\", \" A group of onlookers watch the couples spin around and continue the dance routine.\"]}, \"v_1SXVKikAHdM\": {\"duration\": 179.62, \"timestamps\": [[0, 60.17], [60.17, 179.62]], \"sentences\": [\"a box of rollerbldes is shown and the lid is opened amd tje accesories are shown with the rollerblades.\", \" man is in street skating  and showing pictures of the skates.\"]}, \"v_erXZ0pZEtGE\": {\"duration\": 61.07, \"timestamps\": [[0, 6.41], [6.72, 14.35], [14.35, 47.63], [47.94, 54.35], [54.35, 61.07]], \"sentences\": [\"A woman in a parking lot is bouncing up and down with some kind of pogo stick attachments on her legs.\", \" The woman walks around the parking lot.\", \" The woman starts bouncing up and down while walking around.\", \" A man walks up and talks to the woman.\", \" The woman holds the man's hands for balance while bouncing.\"]}, \"v_u2uoYvo8J5s\": {\"duration\": 208.86, \"timestamps\": [[0, 11.49], [0, 43.86], [9.4, 32.37], [25.06, 30.29], [36.55, 45.95], [43.86, 77.28], [76.24, 99.21], [99.21, 115.92], [115.92, 171.27], [152.47, 154.56], [174.4, 208.86]], \"sentences\": [\"A man is opening his back door to let a little girl outside.\", \" The man is following the little girl.\", \" A little girl walks and points toward the camera.\", \" A dog enters the scene and the little girl jumps with happiness.\", \" The little girl walks around her slide.\", \" The little girl starts to climb up the slide and the man helps her get to the top.\", \" The little girl begins to play with the wheel and gets on her knees.\", \" The man helps the little girl go down the slide.\", \" The little girl goes to the swing and the man helps her into it.\", \" The little girl points at the camera.\", \" The man pushes the little girl on the swing.\"]}, \"v_YrMrSXH8k6k\": {\"duration\": 58.56, \"timestamps\": [[0.88, 19.33], [16.4, 43.34], [39.82, 55.93]], \"sentences\": [\"A man is seen holding a blow torch and begins using it while pulling his mask down.\", \" The man continuously sparks with the machine on a piece of metal.\", \" He stops in the end while taking off his mask and looking into the camera.\"]}, \"v_jmS3NFo4XCc\": {\"duration\": 39.17, \"timestamps\": [[0, 4.11], [4.11, 15.87], [16.06, 35.06], [35.26, 39.17]], \"sentences\": [\"We see a dart board swinging gently.\", \" Two darts, one red, one green hit the board.\", \" We change angle and two more darts hit the board.\", \" The screen fades to black and we see the end credits.\"]}, \"v_DR0hc7lT0hE\": {\"duration\": 131.57, \"timestamps\": [[1.97, 37.5], [30.92, 101.96], [52.63, 130.25]], \"sentences\": [\"A man is seen backing away from the camera while speaking and holding a hula hoop.\", \" The man then swings the hula hoop all around himself while walking to the camera.\", \" Another man walks into frame and hula hoops with the man while still looking at the camera.\"]}, \"v_PF0c0UIsG0E\": {\"duration\": 80.83, \"timestamps\": [[0, 30.31], [29.1, 68.7], [69.11, 80.83]], \"sentences\": [\"A man is seen sitting down and speaking to the camera while holding a hookah hose and another person is seen in frame.\", \" The man takes a puff from the pipe while speaking to the camera and hands it to the other man who also takes a hit.\", \" He blows the smoke out and the first man is still seen speaking to the camera.\"]}, \"v_w8rTULZCkzk\": {\"duration\": 185.2, \"timestamps\": [[0, 3.7], [3.7, 22.22], [22.22, 61.12], [61.12, 156.5], [156.5, 185.2]], \"sentences\": [\"An introduction is shown for a video about how to clean running spikes.\", \" A guy explains that he will clean the spikes while showing the dirt on the spikes.\", \" He begins by brushing mud off the spikes into a sink.\", \" He puts a small amount of water into the sink and continues scrubbing.\", \" He takes them out of the sink and puts some newspaper inside the shows to help them dry.\"]}, \"v_cKFARm4dsws\": {\"duration\": 11.12, \"timestamps\": [[0, 1.17], [1.11, 3.67], [3.67, 6.84], [6.84, 11.12]], \"sentences\": [\"A little boy is getting on the swinging closing his little safety guard.\", \" He closes it and builds up some momentum to start going fast.\", \" He kicks his feet back and forth getting pretty high.\", \" He just enjoys his time swinging back and forth outside enjoying the day.\"]}, \"v_3WyJNIqDFQg\": {\"duration\": 66.78, \"timestamps\": [[0, 14.69], [14.02, 34.73], [35.39, 66.78]], \"sentences\": [\"A close up a chair is shown while the camera pans out backwards and text moves across the screen.\", \" The camera follows closely into the chair and leads into a woman sitting comfortable on the chair.\", \" The woman adjusts the seat and leads into several more close ups of the chair being shown.\"]}, \"v_W_iKlOPSDos\": {\"duration\": 78.97, \"timestamps\": [[0, 9.87], [10.27, 67.92], [39.09, 41.86], [68.71, 78.97]], \"sentences\": [\"We see a series of title screens.\", \" We see a speedboat speeding through a lake and a man jet skiing behind it.\", \" The screen flashes black and we see more jet skiing.\", \" We see the ending title screen.\"]}, \"v_zlXs92vjuSU\": {\"duration\": 219.85, \"timestamps\": [[17.59, 42.87], [42.87, 78.05], [78.05, 90.14], [90.14, 107.72], [107.72, 140.7], [140.7, 163.79], [163.79, 196.76], [196.76, 217.65]], \"sentences\": [\"A young man named Sean wearing a beanie hat and black earring studs.\", \" He is demonstrating how to pierce his ear with stud earrings.\", \" He expresses severe pain as he tries to pierce his ear lobe.\", \" He takes an ice cube to soothe his ear lobe.\", \" Then he uses a cigarette lighter to heat the earring to sanitize it.\", \" He tries using a thumbtack to help the piercing but ends up causing severe bleeding in his ear.\", \" He then tries a rubber mallet to force the earring in.\", \" He cries and sobs in pain at his unsuccessful attempt of piercing his own ear lobe.\"]}, \"v_PQkambF3iEk\": {\"duration\": 80.16, \"timestamps\": [[0, 21.24], [22.04, 54.51], [54.11, 80.16]], \"sentences\": [\"Two people are seen fixing up a car and changing the tires on a vehicle.\", \" Another man walks into frame as well as several others recording the incident.\", \" A person climbs into the car and drives away with everyone watching.\"]}, \"v_evXdygHVzNc\": {\"duration\": 79.81, \"timestamps\": [[1.2, 17.16], [17.56, 33.52], [33.92, 77.81], [48.28, 49.48]], \"sentences\": [\"A teen spins holding a disc in his right hand, then the girl throws the disc while competing in a stadium.\", \" Then, another young woman spins around an throws a disc.\", \" A female spins and throw a disc far and she wins the competition.\", \" A man in the track raise a white flag on his right arm.\"]}, \"v_8LiO75NtXNw\": {\"duration\": 224.14, \"timestamps\": [[0, 50.43], [52.67, 53.79], [51.55, 109.83], [110.95, 170.35], [171.47, 224.14]], \"sentences\": [\"Gymnast from Ukraine performs long jump in a final competition.\", \" A man holds a white and a red flags.\", \" The gymnast runs in the track until a white line, and jumps to perform the long jump.\", \" Then, a woman from Germany performs the long jump, and after a girl from Australia jumps long on the sand box.\", \" The woman from Germany wins the competition, she runs and greats the public.\"]}, \"v_PNQpC_FlE2M\": {\"duration\": 65.69, \"timestamps\": [[0, 5.91], [6.24, 20.04], [20.36, 47.95], [48.28, 65.69]], \"sentences\": [\"A man in a vest is sitting in a boat.\", \"Then the man is in the water, holding a stick and a line attached to the boat.\", \" The boat begins to pull him in the water as he begins water skiing.\", \" He skis for a long while.\"]}, \"v_8xS6cDOq5do\": {\"duration\": 125.74, \"timestamps\": [[0, 50.29], [49.04, 57.84], [57.84, 93.05], [93.67, 125.74]], \"sentences\": [\"girls are sitting in a rom and boys are standing behind them boys starts comb the hair.\", \" woman wearing blue sweater crawl on all fours.\", \"boys keep combing the hair and putting some hair rolls on the girls.\", \" woman in the middle is irritated and stands and remove the rolls for th head and sits again and laugh a lot.\"]}, \"v_shZRGB58YBU\": {\"duration\": 221.89, \"timestamps\": [[0, 16.64], [28.85, 160.87], [161.98, 221.89]], \"sentences\": [\"A man is seated on a stage.\", \" There is a room full of people watching him.\", \"He is playing a set of drums with his hands.\"]}, \"v_OTMkyaTCpqM\": {\"duration\": 56.76, \"timestamps\": [[0, 56.2], [8.23, 56.2], [15.04, 33.21], [38.03, 56.48]], \"sentences\": [\"An overhead view of a pool match.\", \" A man in a funny blue vest is shown as the next player to take a shot.\", \" He pauses and studies the table before taking his shot.\", \" He shoots and hits the blue ball in the corner right pocket.\"]}, \"v_eBEnQDNyzFk\": {\"duration\": 196.49, \"timestamps\": [[1.96, 68.77], [42.24, 141.47], [130.66, 194.52]], \"sentences\": [\"A close up of food is shown followed by two women speaking to the camera and presenting various ingredients.\", \" The women then mix the ingredients into a pot after the noodles are cooked and then mix everything together in a bowl.\", \" Finally the dish is shown on a plate in the end and the women eat the food.\"]}, \"v_ZtfdFFYa8vY\": {\"duration\": 74.0, \"timestamps\": [[0, 74], [0, 73.26], [0, 72.89]], \"sentences\": [\"black dog is walking in a treadmill in a white room.\", \" dog is running in the treadmill that is next to a drawer.\", \" dog is wearing a red  necklace and is doing exercise.\"]}, \"v_yE0fDD_7FkM\": {\"duration\": 54.59, \"timestamps\": [[4.64, 18.83], [4.64, 54.59], [18.29, 49.68], [48.59, 54.59]], \"sentences\": [\"A girl is walking on a diving board.\", \" People are in the background watching.\", \" The girl jumps off the diving board into the swimming pool.\", \" There is a small splash in the water.\"]}, \"v_5qBzjfW-sMs\": {\"duration\": 12.7, \"timestamps\": [[0, 5.53], [5.65, 12.7]], \"sentences\": [\"A young man is seen putting a piece of wood onto a bark and holds up an axe.\", \" He then swings the axe the bark breaking it in half, followed by him yelling into the air.\"]}, \"v_N2nNkWXYAYw\": {\"duration\": 213.67000000000002, \"timestamps\": [[10.68, 18.16], [19.23, 53.42], [54.49, 102.56], [103.63, 119.66], [120.72, 142.09], [143.16, 213.67]], \"sentences\": [\"A woman sits on the floor next a  vacuum.\", \" The woman vacuums dirt on a hard floor.\", \" Then, the woman cleans waste on a carpet.\", \" After, the woman vacuums over a pillow using a smaller nozzle.\", \" Next, then woman put a new nozzle to clean narrow surfaces.\", \" Also the woman measures the pressure of suction and shows the inside of the vacuum.\"]}, \"v_yCqe0J1xgyc\": {\"duration\": 199.27, \"timestamps\": [[0, 45.83], [46.83, 96.65], [98.64, 147.46], [151.45, 199.27]], \"sentences\": [\"We see two girls representing China standing on diving boards above an Olympic size pool and dive in unison and we see their scores.\", \" We then see two girls representing the USA dive in unison and see their scores.\", \" Next are two girls representing Italy diving and scores are shown.\", \" Germany is the next team to dive and scores are shown for them.\"]}, \"v_M1_4oDuh2as\": {\"duration\": 59.9, \"timestamps\": [[0, 17.37], [17.67, 31.75], [32.05, 52.11]], \"sentences\": [\"A woman wearing an apron is talking and picks up a bucket with supplies in it.\", \" She grabs a brush and cleans a window.\", \" She grabs a squeegee and removes the excess water from the window.\"]}, \"v___mIAEE03bE\": {\"duration\": 207.32999999999998, \"timestamps\": [[0, 191.78], [128.55, 129.58], [193.85, 207.33]], \"sentences\": [\"People are snowboarding down a large hill of snow.\", \" A person in a green jacket is snowboarding while holding a camera in front of them.\", \" The people get to the bottom and start taking their snowboards off.\"]}, \"v_0z_dyY_89ys\": {\"duration\": 96.43, \"timestamps\": [[0, 11.09], [13.5, 32.31], [35.68, 64.61], [68.95, 96.43]], \"sentences\": [\"A female news woman is talking to the camera in a news room.\", \" Another woman shows off a series of cleaning supplies.\", \" She instructs on how to use them, but not to mix certain elements.\", \" She pours the liquids into cups and changes into a sprayer bottle for cleaning a kitchen.\"]}, \"v_uYqNIBbz4_Q\": {\"duration\": 23.45, \"timestamps\": [[0.23, 23.45], [9.62, 23.45]], \"sentences\": [\"A man is seen standing outside holding a rope and tying it around a tree bark.\", \" He then axes the log on the ground and breaks it into two.\"]}, \"v_jA-KApGlXyA\": {\"duration\": 66.99, \"timestamps\": [[0, 28.47], [28.47, 66.32]], \"sentences\": [\" A person explains how to play squash holding a racket and a blue ball.\", \" Then, he continues explaining showing how to hit the ball on the wall.\"]}, \"v_EBhAGOXvPcA\": {\"duration\": 79.72, \"timestamps\": [[0, 5.58], [6.38, 53.01], [55, 67.36], [69.35, 79.72]], \"sentences\": [\"A bike is seen outside a building.\", \" A group of men are outside, drinking eer and talking while playing beer pong.\", \" They try to throw the ball into the glasses.\", \" They laugh and talk as they play.\"]}, \"v_eTIaRqgQ4Qg\": {\"duration\": 87.28, \"timestamps\": [[0.44, 33.17], [34.91, 86.41]], \"sentences\": [\"A camera is seen panning around a large lake followed by a person riding by on skis behind a jet ski.\", \" Two people are seen riding behind the jet ski and continuing to move along the water.\"]}, \"v_offWBoR4Ggg\": {\"duration\": 104.16, \"timestamps\": [[0.52, 72.39], [63.01, 104.16]], \"sentences\": [\"The player in yellow shirt kicked the ball towards the goal, and the goalkeeper was not able to catch it, another player in red shirt kicked the ball and the goalkeeper weren't able to catch it.\", \" The goalkeeper is standing in front of the net, the crowds are cheering.\"]}, \"v_MNduaJtXy1A\": {\"duration\": 191.69, \"timestamps\": [[0, 2.88], [1.92, 97.76], [80.51, 189.78]], \"sentences\": [\"A large group of people are seen standing around and smiling to one another.\", \" They begin playing a set of drums while another man is seen playing the piano.\", \" More people are seen on the sides dancing to the music.\"]}, \"v_Fi0PQwhsGs4\": {\"duration\": 45.07, \"timestamps\": [[0, 27.04], [27.27, 45.07]], \"sentences\": [\"Two men are outside talking to one another and they begin doing arm stretches.\", \"They then stop and do a series of Rock,Paper,Scissors.\"]}, \"v_d7gTlJhEwrM\": {\"duration\": 120.12, \"timestamps\": [[0, 69.07], [69.07, 93.09], [95.49, 120.12]], \"sentences\": [\"A woman in a pink shirt sprints down a track and jumps into sand.\", \" A replay of her jump is shown several times.\", \" She walks away onto the grass.\"]}, \"v_5KEq4f4dGto\": {\"duration\": 189.08, \"timestamps\": [[0, 9.45], [16.07, 18.91], [22.69, 51.05], [54.83, 121.01], [124.79, 153.16], [154.1, 181.52], [184.35, 189.08]], \"sentences\": [\"We see a lady painting her fingernails.\", \" We see a titles screen.\", \" The lady files and puts on a clear coat.\", \" The lady paints her finger nails blue.\", \" The lady adds a top coat of clear polish.\", \" The lady puts oil on her cuticles and we see the finished product.\", \" We see the ending title screen.\"]}, \"v_nA9MM4baSdc\": {\"duration\": 144.0, \"timestamps\": [[0, 75.6], [113.76, 115.2]], \"sentences\": [\"This woman is shown playing the black harmonica.\", \" she stops for a little bit, but then she keeps going.\"]}, \"v_VEwZJ-5u_Xs\": {\"duration\": 153.3, \"timestamps\": [[0, 51.36], [51.36, 98.88], [98.88, 153.3]], \"sentences\": [\"People fly kites from a rooftop holding kite string pools.\", \" Several kites fly in the sky.\", \" A man holds a kite string pool while flying a kite.\"]}, \"v_IWXIEfaltJ4\": {\"duration\": 228.88, \"timestamps\": [[0, 45.78], [44.63, 228.88]], \"sentences\": [\"A man is shown holding up a piece of metal and places it along a wall.\", \" He then puts plaster along the metal and rubs the sander all over the wall while still looking back to the camera.\"]}, \"v_TWhxFETOG8I\": {\"duration\": 129.99, \"timestamps\": [[0, 129.99], [19.5, 27.3], [28.6, 36.4], [93.59, 105.29], [115.04, 129.99]], \"sentences\": [\"Two teams play a game of indoor soccer.\", \" Players from the white team dribble and pass the ball all the way down field and make a goal.\", \" Players from the blue team dribble and pass all the way down field and make a goal.\", \" A member of the blue team battles two defenders near goal and makes a point.\", \" Players take corner kicks and assist a goals.\"]}, \"v_CcKeoeSZVnE\": {\"duration\": 222.87, \"timestamps\": [[0, 28.97], [32.32, 152.66], [156.01, 222.87]], \"sentences\": [\"Two women are smoking a hookah while seated on a couch.\", \" They take turns taking hits and blowing smoke.\", \" They are blowing the smoke in rings toward the camera.\"]}, \"v_uK0dxEMBXfY\": {\"duration\": 94.16, \"timestamps\": [[0, 43.31], [9.42, 17.42], [42.84, 86.15], [85.21, 94.16]], \"sentences\": [\"A man standing in a yard talks to the camera about his yard.\", \" The man motions he had across the yard.\", \" The man then mows his lawn with his mower.\", \" The man stops and shows the electrical cord on his mower.\"]}, \"v_QRcwvzq7QUM\": {\"duration\": 127.27, \"timestamps\": [[0, 17.18], [18.45, 35], [40.09, 61.09], [61.09, 66.82], [66.82, 89.09], [90.36, 108.18], [108.81, 120.91], [121.54, 127.27]], \"sentences\": [\"We see a lady standing in  a news studio talking to the camera.\", \" We then see people in a field on horses.\", \" The people are playing polo on the horses.\", \" We see a man talking to the camera.\", \" We then see the people playing again.\", \" The man is talking to the camera again.\", \" We see the polo players on their horses.\", \" A man holds liquor in front of a horses mouth, We see the newscaster again.\"]}, \"v_PnY3FT_QqWo\": {\"duration\": 208.26, \"timestamps\": [[0, 28.12], [33.32, 130.16], [132.25, 208.26]], \"sentences\": [\"A woman is standing in a gated yard beside a girl on a horse.\", \" She walks away as the girl rides the horse carefully around the fence.\", \" She then takes the horse into a light trot as she rides.\"]}, \"v_1QjVfj0S8qQ\": {\"duration\": 62.86, \"timestamps\": [[0, 22], [22.31, 26.71], [27.66, 53.43]], \"sentences\": [\"A shirtless man scrapes roofing gravel using a shovel.\", \" The man stops and leans on the shovel for a moment to look at the amount of work that is ahead of him.\", \" The man continues to scrape the gravel roof and turns with his back towards the camera.\"]}, \"v_4chhQzVxWkA\": {\"duration\": 65.4, \"timestamps\": [[4.58, 65.4], [22.56, 32.37], [4.91, 65.4]], \"sentences\": [\"A baby is swimming in a pool on its back.\", \" The baby is kicking its feet in the water.\", \" Someone's hand is holding that baby in the water.\"]}, \"v_m978SIFnHS8\": {\"duration\": 217.2, \"timestamps\": [[0, 44.53], [44.53, 95.57], [95.57, 160.73], [160.73, 217.2]], \"sentences\": [\"Dark nights are shown with lightning flashing through the sky.\", \"After,the video begins and several people are shown on a large boat sailing in the water.\", \"The weather begins to turn nasty and the people have to hold on for dear life so they won't die.\", \"In one instance,the boat begins to tip to the side and the people jump in joy that it didn't tip over as the horrid weather continues.\"]}, \"v_W-poAYW1pb0\": {\"duration\": 135.12, \"timestamps\": [[0, 20.27], [22.97, 96.61], [103.36, 135.12]], \"sentences\": [\"A group of runners are on a street, and a boston marathoner who has broken a record is shown talking in an interview after celebrating.\", \" News casters are shown talking about the man and others as they reach the end of the marathon.\", \" The runners are shown as a group, as men dressed as british solders enact a play for the crowds.\"]}, \"v_BGeB6KEQM94\": {\"duration\": 212.18, \"timestamps\": [[0, 19.1], [16.97, 81.69], [45.62, 115.64], [96.54, 212.18]], \"sentences\": [\"A man in peach sweater is skateboarding and then fell on the ground.\", \" A man in orange stop is skateboarding in the dark street and fell on the ground.\", \" A man in black shirt skateboard down the wide road and fell on the side of the road, the man showed his bleeding cuts in front of the camera.\", \" A the skateboarders are falling off their skateboards.\"]}, \"v_p7VTBhv3OLY\": {\"duration\": 138.37, \"timestamps\": [[0, 8.99], [10.38, 44.97], [48.43, 138.37]], \"sentences\": [\"A man is talking in front of a net in a yard.\", \" Two boys are seen hitting a ball into the net.\", \" Then we see a game on a field with men hitting balls with nets into the goal.\"]}, \"v_d0h_l9bE1o0\": {\"duration\": 216.55, \"timestamps\": [[0, 20.57], [20.57, 36.81], [36.81, 109.36], [109.36, 134.26], [134.26, 179.74], [179.74, 216.55]], \"sentences\": [\"A group of cheerleaders are shown practicing their routine in a gymnasium.\", \" The scene transitions to one cheerleader being interviewed while others stretch in the background, with occasional cheerleader-related clips interspersed.\", \" A man wearing blue is interviewed in the same setting, with occasional cheerleader-related clips interspersed.\", \" Another man is interviewed in the same setting, with occasional cheerleader-related clips interspersed.\", \" The camera returns to the man in blue being interviewed, with short cheerleader action sequences.\", \" The camera returns to the first individual interviewed, with short cheerleader action sequences.\"]}, \"v_3k5dJSs2zkg\": {\"duration\": 59.05, \"timestamps\": [[0, 12.7], [10.33, 59.05]], \"sentences\": [\"A man is seen speaking to the camera and leads into several shots of people speaking and wearing heels.\", \" The women walk on the ground down a street while many watch and then all run down the road in heels.\"]}, \"v_g0B_4IlLn3g\": {\"duration\": 36.6, \"timestamps\": [[0, 9.15], [9.33, 24.7], [24.34, 36.6]], \"sentences\": [\"A girl is standing in her bathroom making giggly faces while holding a cup.\", \"She finally takes whatever is in the cub and begins to gags as she spits it into the sink.\", \"After her mouth is empty,she shows off a bottle of Crest mouthwash.\"]}, \"v_KAbo60mowhw\": {\"duration\": 219.87, \"timestamps\": [[31.88, 108.84], [89.05, 103.34], [104.44, 207.78]], \"sentences\": [\"A man plays catch with a dog in a dirt field while throwing a Frisbee.\", \" The man holds out the Frisbee in his hand to the dog.\", \" A woman plays catch with the dog throwing a Frisbee in a grassy park.\"]}, \"v_faF9-lWmK3Y\": {\"duration\": 71.59, \"timestamps\": [[0, 8.95], [15.39, 46.89], [55.12, 71.59]], \"sentences\": [\"The camera man opens a door and watches a woman leaving forward in a tub.\", \" The woman talks to the camera man while washing several clothes in a tub filled with water.\", \" The woman learns down exhausted and turns back to the camera man quickly then back to the tub.\"]}, \"v_vAzTt06gpgE\": {\"duration\": 146.12, \"timestamps\": [[1.46, 143.93], [21.92, 40.18], [43.11, 146.12]], \"sentences\": [\"A group of people are running down a road with various people cheering and clapping on the sides.\", \" A woman is high fiving the people as well other runners.\", \" More shots of people on the sides are shown while the runners continue running.\"]}, \"v_Mw_AIqw6rfM\": {\"duration\": 129.17, \"timestamps\": [[0, 31], [31.65, 93], [93, 129.17]], \"sentences\": [\"A large group of people are seen standing around a horse track and leads into several men sitting on horses and one riding around swinging a stick.\", \" The men then begin playing a game on the horses and shaking each other's hands.\", \" The princess then hands a box to one of the players and stands near several others holding a trophy.\"]}, \"v_16g-sBraeKE\": {\"duration\": 225.23, \"timestamps\": [[0, 7.88], [7.88, 40.54], [40.54, 200.46], [69.82, 73.2], [81.08, 92.35], [113.74, 182.44]], \"sentences\": [\"A woman is showing her finger nails to the camera.\", \" A woman in a black shirt is sitting in a room talking to a camera.\", \" A person is doing someone else's nails on a table.\", \" They are putting fake fingernails on them.\", \" They are cutting the nails down.\", \" They begin painting the nails.\"]}, \"v_kpE3q-Hmd7A\": {\"duration\": 102.4, \"timestamps\": [[0, 12.29], [12.29, 36.35], [36.35, 59.39], [59.39, 70.66], [70.14, 102.4]], \"sentences\": [\"A group of men are inside of a gym space stepping on aerobic steppers at a fast pace.\", \" They look to be having a great time and begin reaching out with their arms and varying their workout.\", \" They continue on performing another series of similar workout with their steppers.\", \" They move side to side, alternating their movements to a specific rhythm.\", \" Their last of their workouts seem to be a compilation of everything they have been doing thus far and they are varying their movements within it.\"]}, \"v_NzRNlTfyYtI\": {\"duration\": 75.37, \"timestamps\": [[0, 16.2], [16.96, 19.6], [19.6, 22.61], [22.99, 33.16], [33.92, 38.82], [39.57, 75.37]], \"sentences\": [\"A woman uses a NordicTrack exercise machine.\", \" The exercise machine is shown by itself.\", \" The woman uses the machine again.\", \" The machine's digital display controls are shown.\", \" A splash screen of a woman and a show title are shown.\", \" The woman exercises on the machine again.\"]}, \"v_Wdp8yduPUX4\": {\"duration\": 161.96, \"timestamps\": [[5.67, 13.77], [12.96, 84.22], [85.84, 88.27], [89.08, 89.89], [91.51, 147.38], [148.19, 150.62]], \"sentences\": [\"Four people prepare to skateboard down a slope.\", \" The four individuals skateboard down the slope together or alone as spectators watch.\", \" The camera pans over background scenery.\", \" One of the individuals tends to his skateboard.\", \" The four individuals engage in more skateboarding down the slope.\", \" One of the individuals is again shown tending to his skateboard.\"]}, \"v_GTxmHim5JnY\": {\"duration\": 15.14, \"timestamps\": [[0, 15.14], [2.12, 5], [8.71, 12.19]], \"sentences\": [\"Two children twirl on a tire swing.\", \" Another child is swinging in another swing set.\", \" A very small child runs through the play area.\"]}, \"v_1FKoT6uFsjY\": {\"duration\": 184.95, \"timestamps\": [[0, 12.02], [12.02, 59.18], [59.18, 88.77], [88.77, 159.98], [159.98, 184.95]], \"sentences\": [\"A kid is sitting on the bed and waves to the camera.\", \"  He is explaining his daily routine to the camera.\", \" He is putting red contacts in his eyes.\", \" The contact falls out of his eye and he puts it back in, but it falls out over and over.\", \"  Finally he gets it to stay and he gives the camera close up and some moves.\"]}, \"v_znhZPUF6xQw\": {\"duration\": 75.47, \"timestamps\": [[0.75, 39.62], [25.28, 71.69]], \"sentences\": [\"Several clips are shown of various girls performing gymnastics tricks on a large mat.\", \" The girls continue jumping and flipping around the area while the camera continues to capture their movements.\"]}, \"v_gMwjhe0Njkc\": {\"duration\": 134.7, \"timestamps\": [[0, 51.19], [51.19, 97.66], [97.66, 134.7]], \"sentences\": [\"A black and white image  of a man is shown and then the man appears in a field throwing a discus.\", \"After,he continues throwing the discus and when he is finished,he is shown standing on a set of cubes as the winner.\", \"The participants shake each other hands and they both end up walking off.\"]}, \"v_2mVwrM0qOGw\": {\"duration\": 182.9, \"timestamps\": [[0, 76.82], [76.82, 182.9]], \"sentences\": [\"man is standing in a room holding a bow and talking to another man.\", \" manis practicing shots with a bow to a board in a large field.\"]}, \"v_6EKVtCJ2nrs\": {\"duration\": 62.09, \"timestamps\": [[0, 7.14], [1.86, 7.14], [7.14, 27.01], [27.01, 34.46], [34.15, 53.71]], \"sentences\": [\"A man in black jacket holds a friend in both arms.\", \" The friend wearing a rope puts out her arms in preparation.\", \" The friend is thrown from the building wearing a bungee cord and swings in a wide arc over the ground below then back and forth.\", \" A woman in black jacket sits on a ramp and is pushed down by friends.\", \" The woman falls off the building and swings from a rope above the ground below.\"]}, \"v_NpfdyZntPbg\": {\"duration\": 222.61, \"timestamps\": [[43.41, 57.88], [96.84, 192.56], [193.67, 207.03]], \"sentences\": [\"A man wipes the bottom of a ski.\", \" He puts polish on the bottom of the ski and rubs it in.\", \" He takes a paper towel and wipes the bottom of the ski.\"]}, \"v_aDBSNU2trmo\": {\"duration\": 59.54, \"timestamps\": [[0, 25.3], [24.41, 59.54]], \"sentences\": [\"A point of view of a person shows himself sitting in a sled holding hands of two children in sleds.\", \" A person pushes the three down a hill while still holding hands and lets go at the bottom to meet with the others.\"]}, \"v_7rT8tqLyFa0\": {\"duration\": 139.32, \"timestamps\": [[0, 30.65], [30.65, 80.11], [80.81, 139.32]], \"sentences\": [\"A man is standing in a weight room with multiple screens on and computers on it.\", \"After he finishes talking,he gets on an ellipitacal and starts rowing.\", \"Next,he moves to another machine and does the same thing as well in a slightly different way.\"]}, \"v_D9DdNf-TIO8\": {\"duration\": 63.37, \"timestamps\": [[0, 59.25], [0.63, 59.25], [8.24, 42.14], [50.69, 53.23]], \"sentences\": [\"A bird is sitting on a bar over a bath tub.\", \" A dog is in the bathtub getting a shower.\", \" A person is rubbing soap into the dogs fur.\", \" The dog shakes itself off.\"]}, \"v_rv9jW-t3mT4\": {\"duration\": 173.71, \"timestamps\": [[0, 168.5], [14.77, 17.37], [76.43, 170.23]], \"sentences\": [\"An outdoor track and field meet is shown.\", \"  Pole vaulters are shown in a competition.\", \"  Some of them make their jumps while others do not.\"]}, \"v_Prt07JFztMI\": {\"duration\": 9.68, \"timestamps\": [[0, 8.96], [0, 8.28], [0.53, 8.28], [0.82, 8.28]], \"sentences\": [\"Two men are in an alley.\", \" They are bouncing up and down on sticks.\", \" There is a van in the foreground.\", \" There are also several buildings.\"]}, \"v_EmM2yXiiz5c\": {\"duration\": 32.32, \"timestamps\": [[0.16, 32], [1.13, 3.72], [3.07, 17.29], [19.07, 31.84]], \"sentences\": [\"A man rides a bicycle behind three men who are running in a professional race on a paved freeway lined with onlookers, spectators and participants.\", \"  A man is riding a bicycle down a freeway wearing a helmet and sporting a paper tag on the front of the bicycle.\", \"  Three men are running in front of the man on the bicycle with one of the men juggling three balls while running and one drinking water and waiving at the crowd.\", \"  The men turn a bend while jogging and an onlooker starts clapping for them from behind.\"]}, \"v_64vbnwtL7I8\": {\"duration\": 127.43, \"timestamps\": [[0, 3.19], [12.74, 28.67], [31.86, 122.97], [44.6, 116.6], [60.53, 106.41]], \"sentences\": [\"Groups of people bowl games in a bowling alley.\", \" People in recorded video of the bowling match.\", \" Spectators sit and stand behind the railing watching the event.\", \" A man bowls a his turns standing backwards.\", \" People in the stands cheer for the bowler.\"]}, \"v_SSqVGeD2XaQ\": {\"duration\": 118.14, \"timestamps\": [[2.95, 41.94], [43.12, 86.84], [80.93, 114.01]], \"sentences\": [\"Three men are seen speaking and waving to the camera that leads into the men playing games with strangers on the street.\", \" The winner gets to kiss the man and the loser gets to slap him.\", \" Several shots are shown of him slapping and kissing girls as well as running around the area to find more people.\"]}, \"v_3rqesp6F95Q\": {\"duration\": 41.52, \"timestamps\": [[0.42, 14.53], [10.79, 30.72], [29.06, 40.06]], \"sentences\": [\"A few people are seen standing around various fooseball tables playing games with one another.\", \" The people continue to push the ball around back and fourth while the camera focuses on one game.\", \" The people keep track of their scores and others watch them in the distance.\"]}, \"v_k2U1lOpLqdk\": {\"duration\": 112.97, \"timestamps\": [[0, 20.9], [22.03, 33.89], [33.89, 60.44], [60.44, 76.82], [80.21, 112.97]], \"sentences\": [\"As a red cut scene passes a young man in a blue shirt is seen concentrating.\", \" Afterwards another man is seen on a curling rink releasing a rock stone as two other men use brooms to clear the way as the stone travels down the path.\", \" The act continues with the same men once more engaging in the same act.\", \" Afterwards another young man in a blue shirt repeats the same move as the white team looks on.\", \" Finally as spectators look on, a member of the white team releases a rock stone and two men from the team use brooms to clear the path.\"]}, \"v_Y-SehqCvzME\": {\"duration\": 238.51, \"timestamps\": [[0, 15.5], [15.5, 128.79], [113.29, 236.12]], \"sentences\": [\"A man is seen speaking to the camera while holding a guitar in his hands.\", \" The man begins playing the guitar and singing into a microphone.\", \" The man continues singing and playing and stops in the end.\"]}, \"v_mQ9e5RyHE_k\": {\"duration\": 112.41, \"timestamps\": [[0, 65.76], [52.83, 112.41]], \"sentences\": [\"A man is seen speaking to the camera as well as several shots of a bowling alley and him bowling a ball.\", \" He continues speaking to the camera while showing several videos of him throwing the bowling ball and hitting several pins.\"]}, \"v_-V5_GMuMzc8\": {\"duration\": 216.55, \"timestamps\": [[17.32, 216.55], [17.32, 190.56], [191.65, 199.23]], \"sentences\": [\"A man is sitting in a barber chair.\", \" Another man is giving him a hair cut.\", \" He then brushes off the mans neck.\"]}, \"v_Q0UzDeDra3U\": {\"duration\": 180.16, \"timestamps\": [[5.4, 167.55], [26.12, 35.13], [36.03, 75.67], [76.57, 109.9], [110.8, 172.06]], \"sentences\": [\"A man demonstrates how to change the tire on a car.\", \"  A car drives through a street and then shows as being parked at which a man approaches the car holding a lug nut removal tool.\", \"  The man removes the lug nuts and then jacks the car up.\", \"  The man then removes the tire and pulls a spare tire off of the back of the car.\", \"  The man then puts the new tire on the car.\"]}, \"v_uCdUm-lou7w\": {\"duration\": 13.17, \"timestamps\": [[0, 11.59], [8.16, 13.17]], \"sentences\": [\"A girl swings on monkey bars on an outdoor playground.\", \" The girl misses a monkey bar and then looses her grip and falls to the ground.\"]}, \"v_sZf6ijFwPDs\": {\"duration\": 82.76, \"timestamps\": [[5.79, 45.93], [45.93, 57.1], [57.1, 82.76]], \"sentences\": [\"A lady explains drinks and the mixing of them,she grabs a cup with ice and add some liquor to it by using a shot glass to get the right measurement.\", \"the lady then mix another type of liquor to the first type she poured in the glass.\", \"finally she adds a type of juice to the drink with a sliced orange and straw.\"]}, \"v_85DumZo8-ik\": {\"duration\": 18.97, \"timestamps\": [[2.18, 3.98], [3.89, 11.1], [11, 16.6], [17.45, 18.97]], \"sentences\": [\"A woman claps her hands together.\", \" She sprints down a track.\", \" She jumps into a pile of sand.\", \" She jumps up in the air.\"]}, \"v_uO2YgcdqoZg\": {\"duration\": 152.23, \"timestamps\": [[0, 43.39], [43.39, 106.56], [106.56, 152.23]], \"sentences\": [\"A man dressed in a black wife-beater is near a fluorescent wall glass and is talking.\", \"As he is talking,several clips appear in between him where he is in a room with three walls and glass as the fourth wall while playing wall ball.\", \"The final scene is shown,and the male comes back talking before finally flashing a url at then end.\"]}, \"v_Mm6iYEyY9dI\": {\"duration\": 233.86, \"timestamps\": [[0, 58.47], [70.16, 168.38], [161.36, 232.69]], \"sentences\": [\"A young man is seen standing in the middle of a large field holding instruments and standing in front of others.\", \" The man then begins playing the instruments one by one.\", \" Several kids then walk into frame using hula hoops while the man joins in still singing and clapping his hands.\"]}, \"v_D9A_9FH7e-A\": {\"duration\": 168.24, \"timestamps\": [[0, 10.09], [9.25, 13.46], [17.67, 58.88], [59.73, 102.63], [105.15, 138.8], [140.48, 154.78], [162.35, 168.24]], \"sentences\": [\"We see an opening title screen.\", \" We see a ladies hands with nail polish on them.\", \" The lady puts tape on her finger around her nail and puts clear and white polish on them.\", \" The lady adds drops of nail polish to a glass of fluid and pulls it through.\", \" The lady puts her nail in the cup and uses a stick to remove the polish.\", \" The lady pulls the tape of then puts a clear coat over her fingernails.\", \" We then see the ending title screen.\"]}, \"v_4eCKiA1czfk\": {\"duration\": 87.12, \"timestamps\": [[0, 79.72], [79.72, 87.12]], \"sentences\": [\"A person blows leaves using a leaf blower.\", \" Then, an area without leaves are shown next to the trees.\"]}, \"v_zT6ITDwPi0w\": {\"duration\": 41.43, \"timestamps\": [[0, 1.45], [1.45, 3.94], [9.11, 30.03], [30.45, 40.8], [32.73, 41.43], [40.8, 41.43]], \"sentences\": [\"A girl stands and talks in a public restroom.\", \" The girl goes into a stall and closes the door.\", \" She emerges and washes her hands.\", \" She takes a paper and drys her hands.\", \" Another person is washing their hands.\", \" The girl throws away the papertowel.\"]}, \"v_eOmL8f-yB40\": {\"duration\": 172.13, \"timestamps\": [[0, 6.89], [7.75, 144.59], [0, 172.13], [15.49, 17.21], [144.59, 172.13]], \"sentences\": [\"A man taps the top of a piano with a stick and talks to a large band sitting in front of him.\", \" He sits down at the piano and he and the band play.\", \" A large audience watches from near by.\", \" The man throws the stick behind the band.\", \" The man plays standing for a moment and then bows.\"]}, \"v_xOGOd2UJaMY\": {\"duration\": 191.38, \"timestamps\": [[0, 191.38], [16.27, 191.38], [92.82, 191.38]], \"sentences\": [\"People are standing in a circle clapping.\", \" Two people start fighting in the circle.\", \" Women are dancing and holding sticks.\"]}, \"v_EqqqGf4wLH0\": {\"duration\": 156.49, \"timestamps\": [[0, 156.49], [7.04, 118.15], [41.47, 65.73], [79.03, 94.68]], \"sentences\": [\"A Mexican band is playing and singing.\", \"  The camera does a closeup on each member.\", \" There is a crowd listening to them.\", \" The band name is on the back of their shirts.\"]}, \"v_k6AzbT12a9c\": {\"duration\": 8.15, \"timestamps\": [[0, 0.53], [0, 8.15], [5.62, 8.15]], \"sentences\": [\"This man is on his hands and knees on the floor.\", \" This is being recorded from a tv screen and it's really loud.\", \" There's no one else in the room with this man and he looks like a woman who's being entered from behind.\"]}, \"v_DaDHatB3RbM\": {\"duration\": 46.6, \"timestamps\": [[1.4, 24.47], [15.15, 45.67]], \"sentences\": [\"A close up of a canoe is seen moving along the water showing a person paddling in the front.\", \" Several more people are seen riding around in canoes and showing waterfalls as well as a fire.\"]}, \"v_nj5dMUGvOWo\": {\"duration\": 66.85, \"timestamps\": [[0, 52.48], [17.05, 52.48], [53.15, 66.85]], \"sentences\": [\"A woman is doing a gymnastics routine on uneven bars.\", \" A woman does flips on the bar.\", \" She jumps off and lands on a mat.\"]}, \"v_IDr50VT8BK8\": {\"duration\": 238.05, \"timestamps\": [[0, 227.34], [25, 192.82], [230.91, 232.1]], \"sentences\": [\"A woman is standing in a room talking.\", \" She picks up a red brush and begins brushing her hair.\", \" A Netflix advertisement is shown on the screen.\"]}, \"v_iCkDtX_mTII\": {\"duration\": 34.0, \"timestamps\": [[0, 34], [3.74, 27.88], [27.37, 29.24]], \"sentences\": [\"A man is sitting on an exercise machine.\", \" He pulls a bar in front of him and starts working out.\", \" He drops the bar and finishes.\"]}, \"v_lGvI5pyjpFg\": {\"duration\": 25.5, \"timestamps\": [[0.64, 14.41], [15.3, 25.24]], \"sentences\": [\"A young girl is seen standing behind a table squeezing limes while another washes dishes in the background.\", \" The girl continues juicing the fruit and walks towards the camera then back again.\"]}, \"v_oZa-yum3mcU\": {\"duration\": 126.25, \"timestamps\": [[0, 17.67], [17.67, 31.56], [31.56, 126.25], [0, 126.25]], \"sentences\": [\"The Duggar mom and a little girl walks up to another woman at a horse ranch and the words on the bottom left say the woman's name is Morgan Brown and she's the Equestrian Instructor.\", \"The woman leads them into the barn and she puts a helmet on the little girls head, they walk to get horses and at some point the Duggar mom put a helmet on as well.\", \" In between interviews they show the Duggar mom and the little girl getting instructions about their horse and then getting on their horses and riding on them in an enclosed area.\", \"The red and white TLC logo remains on the bottom right area of the screen the whole time.\"]}, \"v_B_heSKsoI9o\": {\"duration\": 64.78, \"timestamps\": [[0, 31.1], [23.65, 64.78]], \"sentences\": [\"A man is seen speaking to the camera and leads into several people holding and shooting bows.\", \" The instructors assists the students while speaking to the camera and shows several shots of the person shooting the arrows.\"]}, \"v_c0Hix_5Vm8I\": {\"duration\": 217.8, \"timestamps\": [[0, 10.89], [17.42, 79.5], [81.68, 162.26], [165.53, 217.8]], \"sentences\": [\"A vans off the wall ad is shown.\", \" Multiple pictures flash across the screen.\", \" Men are shown drinking wine before performing numerous tricks on ski boards.\", \" Images of them in the air performing tricks and jumping are shown.\"]}, \"v_h49mHiWjXBA\": {\"duration\": 218.73, \"timestamps\": [[0, 15.31], [15.31, 218.73]], \"sentences\": [\"man is standing in an icetrack talking to the camera.\", \" people are playing curling in an ice court.\"]}, \"v_BIJK3xcjiKE\": {\"duration\": 159.52, \"timestamps\": [[1.6, 42.27], [43.87, 106.08], [97.31, 153.14]], \"sentences\": [\"Several clips are shown of people playing soccer in front of a large stadium.\", \" The people kick a ball all around the area as well as throw their hands up.\", \" More shots are shown of people playing against one another on different fields and celebrating.\"]}, \"v_icm5lX5pZE0\": {\"duration\": 104.28, \"timestamps\": [[0.52, 36.5], [29.72, 74.56], [73.52, 99.59]], \"sentences\": [\"A man is seen sitting behind a desk working on a computer.\", \" Several shots are shown of people printing off paper as well as paper close up.\", \" More clips are shown of people hanging up the wallpaper as well as shots of the city.\"]}, \"v_mhU_KzxJyr4\": {\"duration\": 56.19, \"timestamps\": [[0, 6.74], [8.43, 16.3], [16.3, 56.19]], \"sentences\": [\"A young male is sitting in the desert on top of a camel.\", \"The man begins talking to another male who has a red wrap on his head.\", \"The camel then lifts up and begins walking throughout the desert towards a group of kids and cars.\"]}, \"v_1PTNnaEu8xo\": {\"duration\": 163.42000000000002, \"timestamps\": [[0, 29.42], [29.42, 80.89], [80.89, 126.65], [126.65, 163.42]], \"sentences\": [\"A man is tying a yellow belt around the waist of a taller man who shakes his hand and then shakes everyone else.\", \" The man and another begin to do some karate moves against one another but they rarely make physical contact.\", \" There is a group of men standing around them watching them.\", \" When they  are finished, they take all take a group photo together.\"]}, \"v_om1vXrpctVE\": {\"duration\": 153.37, \"timestamps\": [[3.07, 52.15], [46.01, 122.69], [117.33, 151.07]], \"sentences\": [\"Two large men are seen standing in a pit surrounded by others and one ref standing in the middle.\", \" The men then bow before one another as people continue to sweep the arena and lead into the men fighting.\", \" The men continuously wrestle one another while the ref moves around them and ends with them walking around then off stage.\"]}, \"v_q9y-83399Ao\": {\"duration\": 139.97, \"timestamps\": [[0, 72.08], [72.78, 77.68], [115.48, 119.67]], \"sentences\": [\"A person in a yellow cap is swimming in a swimming pool.\", \" A person in a white shirt is talking.\", \" The person is out of the water moving their arms.\"]}, \"v_NeUIHk1uCgA\": {\"duration\": 99.6, \"timestamps\": [[0, 8.47], [8.47, 94.62], [94.62, 99.6]], \"sentences\": [\"A woman mounts a beam with an audience in the background.\", \" The woman performs gymnastics on the beam.\", \" The woman dismounts from the beam.\"]}, \"v_34NXXCSWyzE\": {\"duration\": 151.84, \"timestamps\": [[0, 49.35], [50.87, 97.93], [95.66, 151.84]], \"sentences\": [\"A man riding a horse and swinging a rope around is seen chasing after a calf and eventually grabbing the animal with his rope.\", \" He holds the calf down and another man comes out to help the man tie up the calf.\", \" He then grabs his rope and rides out of the arena on his horse.\"]}, \"v_A1SuSeqDTEI\": {\"duration\": 222.89, \"timestamps\": [[0, 28.98], [30.09, 157.14], [39.01, 41.23], [66.87, 69.1], [78.01, 85.81], [99.19, 104.76], [117.02, 125.93], [143.76, 150.45], [154.91, 176.08], [174.97, 222.89]], \"sentences\": [\"We see a man preparing to get in a kayak.\", \" We then see the man riding in his kayak on a rough river.\", \" The man goes over a rock.\", \" We see a mountain near the river.\", \" The kayak is overturned in the river.\", \" We see the man on the shore.\", \" We see the man go over a waterfall.\", \" We see the man pull his kayak onto the shore.\", \" We see the kayak overturned and we then see the river running.\", \" We see the ending screens.\"]}, \"v_QCBaT1NJ32E\": {\"duration\": 171.29, \"timestamps\": [[0, 25.69], [25.69, 110.48], [107.06, 165.3]], \"sentences\": [\"A woman is seen laughing to the camera and begins smoking a cigarette.\", \" The woman takes puffs off of her cigarette while looking into the camera.\", \" The woman continues lifting up her cigarette and blowing smoke into the distance.\"]}, \"v_g2uL6H3fP1c\": {\"duration\": 195.63, \"timestamps\": [[0, 2.93], [2.93, 24.45], [24.45, 41.08], [48.91, 60.64], [60.64, 178.02], [166.28, 170.2], [179, 185.85], [186.83, 195.63]], \"sentences\": [\"We see an animated opening screen.\", \" We see a man walking in a parking lot.\", \" The man starts performing martial arts moves.\", \" The man removes his shirt and necklace.\", \" The man flips around and does Capoeira moves.\", \" We see the man do a handstand on one hand.\", \" The man finishes, grabs his shirt, and walks off.\", \" We see video clips in the closing screen.\"]}, \"v_p0O-EsMFcL4\": {\"duration\": 24.61, \"timestamps\": [[0, 24.61], [0, 2.34], [9.48, 11.32]], \"sentences\": [\"An individual  rides on an inner tube down a river with rocks in it.\", \" A man pushes the individual downstream.\", \" Another man pushes the individual further downstream.\"]}, \"v_UAFIstY4a8Q\": {\"duration\": 168.95, \"timestamps\": [[0, 7.6], [8.45, 163.88], [22.81, 27.03], [34.63, 45.62], [51.53, 54.91], [95.46, 99.68], [131.78, 135.16], [164.73, 168.95]], \"sentences\": [\"We see two opening screens for poker at a casino.\", \" We see the dealer speak and deal cards.\", \" We see a large jackpot sign.\", \" We see the dealer shuffle the cards.\", \" We see the man peek at his cards.\", \" The man peeks at his cards again.\", \" The dealer turns over the players cards.\", \" We see the closing screen for the casino.\"]}, \"v_Y3j1uDKRpPU\": {\"duration\": 12.98, \"timestamps\": [[0.13, 3.5], [3.96, 9.22], [7.85, 12.66]], \"sentences\": [\"A man is seen wearing a suit and walk away.\", \" The man walks up to a large chair and sits down.\", \" Another man is seen standing in front of the chair and begins looking down at the man's feet.\"]}, \"v_c05oRliUOxk\": {\"duration\": 221.32999999999998, \"timestamps\": [[0, 3.32], [3.32, 214.69], [48.69, 52.01], [152.72, 156.04], [163.79, 199.2], [187.03, 195.88], [213.59, 215.8], [216.91, 221.33]], \"sentences\": [\"We see an opening title scene.\", \" We see people riding horses through the mountains.\", \" We turn and see the canyon and river.\", \" A person in blue turns around a few times.\", \" We see a large white mound of snow.\", \" The person in the blue shirt looks up the mountain.\", \" We see a blue bar at the bottom of the screen.\", \" We see the ending title screen.\"]}, \"v_wrf4MfW4MGg\": {\"duration\": 16.7, \"timestamps\": [[0, 9.27], [10.1, 16.7]], \"sentences\": [\"A man with long hair is seen brushing his face with a brush while holding his hand up and speaking to the camera.\", \" He then holds up the brush and grabs his hoodie while smiling at the camera.\"]}, \"v_U_qCCwgS0OM\": {\"duration\": 160.43, \"timestamps\": [[0, 34.49], [32.89, 81.82], [83.42, 132.35], [133.96, 160.43]], \"sentences\": [\"Intro leads into A man mopping up dirt on a floor and showing the tools afterwards.\", \" Several shots of mops pushing around dirt is shown followed by the better mop being dipped into water and dripped on a table.\", \" A 3d mop shows how it works with a woman also moping up things on her floor.\", \" Several other shots of people mopping are shown as well as people shrugging and where to buy the mops.\"]}, \"v_X4IE65LtDzQ\": {\"duration\": 155.57, \"timestamps\": [[0, 39.67], [38.89, 129.13], [126.01, 155.57]], \"sentences\": [\"A woman and young girl are seen speaking to the camera while holding together a toy.\", \" The two create a hop scotch game with the toy and lay it down on the ground and show off the foam.\", \" The woman speaks to the camera while the girl hops along the game.\"]}, \"v_0bjHe_5nACw\": {\"duration\": 124.69, \"timestamps\": [[11.85, 69.83], [48.63, 116.59]], \"sentences\": [\"A woman is seen speaking to the camera while holding a violin and continues with her playing the violin and pausing.\", \" The woman continues playing the instrument and stopping to speak to the camera and demonstrate how to play.\"]}, \"v_jwqotL-yNvE\": {\"duration\": 168.18, \"timestamps\": [[0, 18.5], [19.34, 168.18], [65.59, 84.09], [116.05, 131.18], [132.86, 168.18]], \"sentences\": [\"A video is shown of a first person view of someone exploring a large open field on the way to a track.\", \" Then, the person puts the camera down and begins working out on the track.\", \" The guys takes off his track suit and continues to work out.\", \" He flips himself over in the air and lands on a pile of sand.\", \" He proceeds to do some break dancing moves before the video ends.\"]}, \"v_Wx-fRCjU9r0\": {\"duration\": 90.67, \"timestamps\": [[0, 90.67], [37.63, 57.58], [57.58, 90.67]], \"sentences\": [\"Teams are playing ice hockey in the center so everyone who's sitting down can watch them.\", \" The blue team scores a goal first and then people start clapping and cheering.\", \" Next the blue team scores another one again and the crowd goes wild.\"]}, \"v_wt-PGxOkL_s\": {\"duration\": 172.36, \"timestamps\": [[0, 41.37], [41.37, 125.82], [116.34, 166.33]], \"sentences\": [\"A woman is seen bending down in front of the camera and turn on a faucet of water.\", \" The woman continues uses the water and begins scrubbing down a shirt and stepping in the buckets.\", \" More shots are shown of them cleaning the clothes and ends by hanging them up.\"]}, \"v_Ls8ha6c0ye8\": {\"duration\": 214.57999999999998, \"timestamps\": [[0, 16.09], [18.24, 34.33], [39.7, 214.58]], \"sentences\": [\"a man is driving a car through a window.\", \" He gets a pass into a park area.\", \" He is shown driving, walking, and riding horses as he explores the area.\"]}, \"v_c8iet_4ndU0\": {\"duration\": 35.09, \"timestamps\": [[0, 28.24], [3.33, 28.24], [28.6, 35.09]], \"sentences\": [\"A girl is jumping and swinging on balance bars.\", \" A woman in a black shirt is standing under her watching.\", \" She helps her jump off and land on a mat.\"]}, \"v_9VGxxRNOdbM\": {\"duration\": 68.57, \"timestamps\": [[0, 9.26], [9.26, 61.37], [61.37, 68.57]], \"sentences\": [\"A gymnast put power chalk power on his hands and stands near the pommel horse.\", \" Then, the gymnast approach the pommel horse to spin around many times.\", \" Then, the gymnast stand on his hand and jumps to land on the floor, while people applaud.\"]}, \"v_JSDZWq777Mc\": {\"duration\": 171.22, \"timestamps\": [[0, 24.83], [37.67, 127.56], [129.27, 171.22]], \"sentences\": [\"A man walks up to the side of a cabin.\", \" He uses a large knife to cut through the grass.\", \" He swings the knife back and forth, cutting the grass and weeds.\"]}, \"v_xWY7A8Sf-HE\": {\"duration\": 60.07, \"timestamps\": [[0, 15.02], [21.33, 51.96], [52.56, 60.07]], \"sentences\": [\" A woman is standing on a field while people are gathered behind her.\", \" Several people run together, chasing each other.\", \"Kids are shown close up at the end.\"]}, \"v_6z6iFou8nW0\": {\"duration\": 118.47, \"timestamps\": [[19.55, 25.47], [19.55, 118.47], [29.02, 97.14], [97.14, 103.66], [103.66, 106.03]], \"sentences\": [\"A boy in a green shirt steps on a stool to reach the sink.\", \" A woman stands next to him.\", \" The little boy washes his hands in the sink.\", \" She wipes the sink with a paper towel.\", \" The boy dries his hands with a towel.\"]}, \"v_ctMcsGnutho\": {\"duration\": 216.74, \"timestamps\": [[0, 73.69], [45.51, 138.71], [101.87, 187.48], [167.97, 213.48]], \"sentences\": [\"A woman is seen speaking to the camera in a dealership and leads into several close ups of a car.\", \" The woman then presents various tools and begins taking off the tire off of the car.\", \" She pulls out a new tire and places it on the car, screwing it in place and showing where the tire is in the trunk.\", \" She closes the trunk and shows off the car while still speaking to the camera.\"]}, \"v_yXH7GcOduNo\": {\"duration\": 86.59, \"timestamps\": [[0, 24.68], [24.68, 62.78], [54.55, 81.83]], \"sentences\": [\"A woman is seen standing in the middle of a sand pit and begins swinging an object around.\", \" She spins this around herself several times then begins swinging herself around.\", \" She continues swinging and finishes by throwing it off into the distance.\"]}, \"v_h-N9TvaBax8\": {\"duration\": 63.39, \"timestamps\": [[0, 15.21], [15.21, 29.48], [29.16, 63.39]], \"sentences\": [\"woman is talking in news talking about a los angeles baseball player.\", \" me are in a street court playing dodgeball wearing dodgers uniform, people are watching the game and cars are passing by in the street.\", \" men wearing dodgers uniform are shown in pictures in a baseball field people on the terraces and the woman on the news talking about them.\"]}, \"v_AnbC-26sAI4\": {\"duration\": 108.46000000000001, \"timestamps\": [[0, 39.05], [37.96, 108.46]], \"sentences\": [\"Several various shots are shown of a large boat traveling along a tough storm.\", \" A man is seen steering the boat through the storm and talking to a camera with the video ending of more shots of the boat.\"]}, \"v_jqZg_FK2OlM\": {\"duration\": 25.43, \"timestamps\": [[0, 11.06], [10.93, 25.43]], \"sentences\": [\"A camera pans around a fenced in are and leads into a woman holding a paint brush.\", \" She brushes the side of the fence up and down while the camera continues looking around the side.\"]}, \"v_DkouAjobzac\": {\"duration\": 177.94, \"timestamps\": [[0, 67.62], [69.39, 177.94]], \"sentences\": [\"An intro leads into a man talking and smiling into a camera and several shots of people preparing a boat and riding along the water.\", \" Another woman is seen talking to the camera followed by several more shots of the boat along the water and people riding and steering the boat.\"]}, \"v_o1R8glzh0As\": {\"duration\": 227.92000000000002, \"timestamps\": [[0, 31.91], [29.63, 144.73], [142.45, 227.92]], \"sentences\": [\"Three men are seen walking in slow motion while another girl walks into frame and the group grab tubes from a pile.\", \" The people speak to the camera and are then seen sitting in the tubes and floating down a river.\", \" The people continuously ride down the river while bobbing back and fourth and are then seen sitting on a bus and speaking to one another.\"]}, \"v_kzdRUWpBXd4\": {\"duration\": 129.08, \"timestamps\": [[2.58, 67.12], [49.7, 126.5]], \"sentences\": [\"A large group of people are seen dressed up in holiday gear and are seen throwing objects at one another.\", \" The people continue playing dodgeball against one another and end by dancing in the middle.\"]}, \"v_6ffxjwTIZHk\": {\"duration\": 105.77000000000001, \"timestamps\": [[0, 20.1], [21.15, 56.59], [56.06, 105.77]], \"sentences\": [\"A man in a green shirt is holding some papers and talking outside.\", \" He starts moving some dirt next to a tree with his hand.\", \" He steps away from the tree and continues talking.\"]}, \"v_Y53B2WdEbAg\": {\"duration\": 12.7, \"timestamps\": [[0, 12.64], [1.78, 5.08], [6.61, 12.7]], \"sentences\": [\"Several women are kneeling on the ground and working on preparing a soup.\", \" One of the women picks out some of the food from the grater.\", \" A woman slices some of the white vegetable into a yellow bowl.\"]}, \"v_iFDr-o61ewo\": {\"duration\": 94.72, \"timestamps\": [[0, 30.78], [30.78, 80.51], [80.51, 92.82]], \"sentences\": [\"A little boy carries a bower on his back and blow dead leaves of a backyard.\", \" Then, the little boy goes to other place to blow leaves.\", \" After, the little boy blow leaves near a tree.\"]}, \"v_Vf02ZDnbduk\": {\"duration\": 72.03, \"timestamps\": [[0, 15.13], [14.77, 37.82], [37.82, 72.03]], \"sentences\": [\"A piece of exercise equipment is put together through technology and then shown in real time.\", \" A person's hand turns a knob on the machine and begins running on the machine.\", \" Close ups of her feet are shown as well as several other angles of her running.\"]}, \"v_AQSiBbhLBhs\": {\"duration\": 225.15, \"timestamps\": [[0, 225.15], [25.89, 183.5], [183.5, 225.15]], \"sentences\": [\"A woman with very long hair is standing on a balcony showing off the length of her hair.\", \" She turns around and faces the camera continuing to brush her hair and display its length.\", \" She begins to twirl and sway her hair with her back to the camera and that is when the video ends.\"]}, \"v_2FcdD7WapJM\": {\"duration\": 56.45, \"timestamps\": [[0, 16.65], [18.91, 36.97], [32.74, 55.04]], \"sentences\": [\"A person is seen unscrewing a bottle of mouth wash and pouring it into a cup.\", \" The girl then drinks from it and swishes it around her mouth.\", \" She spits out the mixture and shows off pictures in the end.\"]}, \"v_zLF5DSuDixg\": {\"duration\": 231.74, \"timestamps\": [[0, 68.36], [68.36, 120.5], [120.5, 170.33], [170.33, 231.74]], \"sentences\": [\"A compilation of shot put is put together, you see many different men getting prepared.\", \" They turn their bodies very quickly building up as much speed as they can before taking their shot.\", \" They practice and they do it professionally, it a serious sport that people really enjoy yo be a part of.\", \" They tend to get very excited when they do good on their throws.\"]}, \"v__032TQam_mY\": {\"duration\": 69.08, \"timestamps\": [[0, 6.56], [7.94, 26.6], [26.25, 36.96], [37.3, 59.75], [60.45, 69.08]], \"sentences\": [\"A woman in a purple coat is talking.\", \" She starts brushing a horse with the brush.\", \" She cleans the bottom of the horse's foot.\", \" She sprays the horse's tail and starts brushing it.\", \" She finishes and continues talking to the camera.\"]}, \"v_nfe_V3ei6ag\": {\"duration\": 32.29, \"timestamps\": [[0, 1.94], [2.1, 8.23], [8.39, 9.2], [9.36, 10.01], [10.17, 11.46], [11.62, 12.91], [13.08, 15.34], [15.5, 16.63], [16.79, 18.73], [18.89, 19.69], [19.86, 22.28], [22.92, 23.73], [23.89, 24.7], [24.86, 26.31], [25.99, 27.93], [28.09, 32.29]], \"sentences\": [\"A volleyball player throws the ball in the air.\", \" Her teammate catches it and throws it over the net.\", \" The volleyball player serves the ball.\", \" An opposing player dives to spike the ball.\", \" Her teammate throws the ball over the net.\", \" The volleyball player who dove earlier spikes the ball over the net.\", \" An opposing player hits the ball.\", \" Her teammate hits it back at her.\", \" The teammate spikes it over the net.\", \" The opposing player hits the ball.\", \" Her teammate throws the ball over the net to the opposing team.\", \" The opposing player hits the ball towards her teammate.\", \" Her teammate hits the ball.\", \" Her teammate hits the ball over the net.\", \" An opposing player dives and hits the ball.\", \" One of the teammates on the opposing team dives to catch and throw the out of bounds ball.\"]}, \"v_OoyoTLkSOuY\": {\"duration\": 75.58, \"timestamps\": [[0, 75.58], [46.86, 75.58]], \"sentences\": [\"A woman is wearing a towel and standing next to a bath tub.\", \" She puts shaving cream on her leg and shaves her leg.\"]}, \"v_BII4aKnegaU\": {\"duration\": 106.33, \"timestamps\": [[1.06, 46.25], [22.86, 98.35]], \"sentences\": [\"A small group of people are seen taking a spin class together that leads into a man speaking to the camera.\", \" Shots of the gym are shown that lead into another cycling class with the man leading the group and still speaking to the camera.\"]}, \"v_EjUMR9v_8Pg\": {\"duration\": 136.53, \"timestamps\": [[0, 17.75], [17.75, 78.51], [78.51, 136.53]], \"sentences\": [\"A man and a woman are sitting down talking on a bench in front of a wall with several rims.\", \"The two then stand up and begin talking and you can see that they are in a junk yard.\", \"Finally,they begin dancing together and do rugged hip hop dance moves suited for the environment.\"]}, \"v_YPlsA_vTltk\": {\"duration\": 215.41, \"timestamps\": [[0, 36.62], [36.62, 84.01], [84.01, 215.41]], \"sentences\": [\"A girl walks in from the side and begins stomping in the room.\", \"The girl continues exercising and moves side to side and starts to put her foot up moving in a hip hop fashion.\", \"She then moves into a sort of squat of some sort and continues moving and then slides from left to right and continues dancing and crumping.\"]}, \"v_DuU7OKTAmsY\": {\"duration\": 134.23, \"timestamps\": [[0, 126.17], [61.07, 70.47], [90.6, 115.43], [122.82, 126.17], [125.5, 134.23]], \"sentences\": [\"We see people floating in a lake in purple rafts.\", \" A person puts their feet on a rock.\", \" The people hit the rough water.\", \" We see a red canoe on the shore.\", \" We pan over the river.\"]}, \"v_bFPfj889BhU\": {\"duration\": 222.61, \"timestamps\": [[0, 198.12], [60.1, 64.56], [159.17, 165.84]], \"sentences\": [\"People are riding in sail boats on the water.\", \" People are standing on a bar on a boat.\", \" People take the sail down off the boat.\"]}, \"v_lKSWdEIuJtM\": {\"duration\": 209.44, \"timestamps\": [[3.14, 65.97], [48.17, 151.85], [156.04, 207.35]], \"sentences\": [\"A back yard area is seen that leads into several kids and older man working on a ladder.\", \" The group cuts hedges along the side as well as throw them into a bucket and help the older man.\", \" The kids continue to help the other man by gathering leaves as he pushing them back towards the front.\"]}, \"v_opaWopwV74I\": {\"duration\": 203.5, \"timestamps\": [[0, 48.84], [48.84, 108.87], [109.89, 163.82], [163.82, 203.5]], \"sentences\": [\"A woman is sitting bent over and washing her laundry by hand in a bowl.\", \" Her friend comes by and talks to her and laugh  before walking away again.\", \" She continues to scrub her clothes extensively, making sure its nice and clean before putting in another bucket.\", \" She washes and washes and throws them in the dry bucket when she is done.\"]}, \"v_v8fS--GlXF4\": {\"duration\": 92.32, \"timestamps\": [[0, 16.16], [16.16, 60.93], [55.39, 90.01]], \"sentences\": [\"A man is seen kneeling down on the dirt when a bull comes running into the man.\", \" He knocks over the man and is dragged away, followed by his clip being shown again.\", \" Several more clips are shown of people chasing bulls and running away.\"]}, \"v_v3tNh1and0U\": {\"duration\": 140.32, \"timestamps\": [[22.45, 130.5], [24.56, 130.5]], \"sentences\": [\"A swimmer swims inside of a pool.\", \" The swimmer is seen wearing a training snorkel.\"]}, \"v_Gi55CA6ktE8\": {\"duration\": 109.13, \"timestamps\": [[0, 22.37], [22.37, 109.13]], \"sentences\": [\"A screen of fighters are shown and then two random images are selected.\", \"Once selected,the pictures move to the top corners of the screen and two people dressed in sumo uniforms stand in the middle of a round-about and begin fighting as cars travel around them.\"]}, \"v_rhDxMg72ofo\": {\"duration\": 214.79, \"timestamps\": [[0, 27.92], [25.77, 110.61], [110.61, 170.75], [178.27, 214.79]], \"sentences\": [\"An intro begins then shows pictures of a girl standing in the bathroom with long, straight hair.\", \" She then begins talking to the camera while stroking her hair followed by blow drying and brushing her hair.\", \" She then puts lotion into her hair and breaking her hair into sections.\", \" She straightens each section of hair and smiles in the end.\"]}, \"v_sYpC9oPhmY4\": {\"duration\": 84.71000000000001, \"timestamps\": [[0, 9.74], [10.16, 35.58], [39.81, 84.71]], \"sentences\": [\"A band is gathered outside a building.\", \" A leader is using a baton to instruct them.\", \" They are playing the drums for a small audience.\"]}, \"v_V4BNtCtuSQQ\": {\"duration\": 34.88, \"timestamps\": [[0, 34.88], [0, 20.75], [20.75, 34.88]], \"sentences\": [\"A guy in the backyard is mowing the lawn on a hot and sunny day while a lady records and narrates.\", \" He starts to go in a back and forth motion as he moves the mower.\", \" The guy changes direction as he continues to mow.\"]}, \"v_MnzVdvbvnMc\": {\"duration\": 52.18, \"timestamps\": [[0, 3.65], [13.83, 19.83], [17.22, 19.83], [20.09, 21.91], [21.91, 24.78], [24.78, 28.96], [33.39, 36.52], [36.52, 52.18]], \"sentences\": [\"A group of guards march down a driveway as they play the trumpets.\", \" A man heats a small pan with a flame.\", \" Three soldiers standing near watch him.\", \" The man grabs a paintbrush and moves it around in the pan.\", \" He takes the brush and brushes a shoe.\", \" He flames the shoe with the flame canister.\", \" He brushes the shoe again.\", \" He then flames the shoe some more.\"]}, \"v_-DTxZliHCTE\": {\"duration\": 46.91, \"timestamps\": [[0, 46.91], [13.6, 18.76], [13.6, 35.65]], \"sentences\": [\"A man is mowing the lawn on a yard and laughing and making jokes with friends that are watching.\", \" He begins to run with the lawn mover and nearly runs into something as his friends laugh in enjoyment.\", \" One of his friends tries to help him as he is mowing the lawn.\"]}, \"v_6aj1njn541k\": {\"duration\": 196.4, \"timestamps\": [[0, 28.48], [9.82, 42.22], [30.44, 100.16], [109, 196.4]], \"sentences\": [\"a girl is sitting in a chair talking.\", \" A woman walks up to the girl and wipes her earlobes.\", \" The woman then pierces the girl's ear.\", \" The girl puts her glasses on after her ears are pieced.\"]}, \"v_q6bl7g5JGng\": {\"duration\": 81.32, \"timestamps\": [[0, 15.04], [17.89, 41.07], [43.1, 81.32]], \"sentences\": [\"A man is shown smiling in an image as words go over his face.\", \" He is in and indoor court, showing a little boy how to hit a tennis ball against the wall with a racket.\", \" The boy tries several times.\"]}, \"v_AF8sbdPa4rE\": {\"duration\": 23.04, \"timestamps\": [[0, 7.37], [8.06, 23.04]], \"sentences\": [\"A man with no hands grabs a dart that is stuck to the board and walks backward.\", \" He then throws the dark up in the air to show it landed on the board.\"]}, \"v_F5IWShcFIN4\": {\"duration\": 159.43, \"timestamps\": [[29.49, 84.5], [94.06, 137.91]], \"sentences\": [\"A storm trooper is seen speaking to the camera and leads into a camera panning around a neighbor and the man walking around.\", \" Many kids stop to speak to the man as well as cars stopping to speak.\"]}, \"v_YBuNpnthXfE\": {\"duration\": 112.25, \"timestamps\": [[0, 34.8], [30.87, 82.5], [74.08, 107.19]], \"sentences\": [\"A large group of people are seen playing a game of tug of war with other people walking around.\", \" The people play back and fourth while others watching on the side.\", \" One group then pulls another down and ends by walking away.\"]}, \"v_lsgB3WU-1r0\": {\"duration\": 204.59, \"timestamps\": [[0, 16.37], [23.53, 59.33], [61.38, 204.59]], \"sentences\": [\"A city skyline appears in front of a large river.\", \" Several businesses are shown from the outside.\", \" A fencing match commences inside a building.\"]}, \"v_2fs09c8gFsk\": {\"duration\": 101.28999999999999, \"timestamps\": [[0, 101.29], [14.18, 24.31], [60.27, 80.02], [98.75, 101.29]], \"sentences\": [\"We see people riding bumper cars.\", \" The camera moves down the row to the right.\", \" The girl in black gets stuck the gets going.\", \" The cars then come to a stop.\"]}, \"v_f2fyhNjY3EA\": {\"duration\": 88.52, \"timestamps\": [[0, 15.05], [23.9, 69.93], [72.58, 88.52]], \"sentences\": [\"Boats are seen sailing through dark ocean water.\", \" We see a first person view of sailing on a boat.\", \" The boats are seen floating through the water.\"]}, \"v_3YdmY4oPE5s\": {\"duration\": 61.53, \"timestamps\": [[0.92, 28.61], [25.84, 59.99]], \"sentences\": [\"A small group of people are seen standing around a field when one lady hits a ball.\", \" The people continue playing crochet on the lawn while walking around.\"]}, \"v_H9ejAfleKUg\": {\"duration\": 164.65, \"timestamps\": [[0, 73.27], [60.92, 164.65]], \"sentences\": [\"A camera is seen zooming in on a building and leads into a man climbing up a large rock.\", \" The man continuously climbs up the rock while looking around and finally makes it to the top while the camera pans around.\"]}, \"v_n-hsQkfdUk0\": {\"duration\": 189.57, \"timestamps\": [[4.74, 185.78], [7.58, 189.57]], \"sentences\": [\"A person plays tam-tam using three instruments.\", \" Other man plays the drums using two sticks.\"]}, \"v_wSTU_jI-FRU\": {\"duration\": 50.06, \"timestamps\": [[0, 5.26], [6.51, 30.79], [31.29, 50.06]], \"sentences\": [\"A cartoon yellow character is shown running with bulls behind him.\", \" Several sumo wrestlers are then shown running down a track.\", \" A gun fires, and they run again.\"]}, \"v_rjzQD0vwnP0\": {\"duration\": 236.87, \"timestamps\": [[0, 56.85], [68.69, 175.28], [156.33, 230.95]], \"sentences\": [\"A close up of a car is seen followed by a person holding a scraper.\", \" The person pushes ice all along the car while looking to the camera.\", \" The person continues clearing off ice with the scraper while the camera captures her movements.\"]}, \"v_ntYIITLp90k\": {\"duration\": 146.3, \"timestamps\": [[0, 8.05], [8.78, 10.97], [12.44, 13.9], [27.8, 39.5], [40.23, 44.62], [46.08, 51.94], [64.37, 68.03], [79.73, 87.78], [89.24, 98.02], [106.07, 111.92], [123.62, 128.01], [132.4, 142.64]], \"sentences\": [\"A man gets on his bike.\", \" The tire is flat and he feels it.\", \" He hooks the air pump up to the tire.\", \" Tools are sitting on a brick wall.\", \" He turns the bike upside down to look at the tire.\", \" He takes a nut off of the wheel to get the tire off.\", \" He uses a tool to get the tire off of the wheel.\", \" He pumps a pump and then fills it with water.\", \" He rubs chalk on the tire and puts glue on it.\", \" He puts the tire back on the wheel.\", \" He puts the air pump on and fills it with air.\", \" He gets on his bike and rides away.\"]}, \"v_xMChLTVPzNI\": {\"duration\": 183.44, \"timestamps\": [[3.67, 157.76], [31.18, 92.64], [93.55, 177.02]], \"sentences\": [\"A woman is seen standing behind a counter speaking to the camera and pointing to various ingredients.\", \" She pours oil into a hot pan and begins mixing ingredients together in the pan.\", \" She boils noodles into a pot and mixes it together in the pan and serves it onto a plate.\"]}, \"v_fJ7gcHxxJMM\": {\"duration\": 5.3, \"timestamps\": [[0, 1.35], [1.35, 3.52], [3.52, 5.3]], \"sentences\": [\"A girl in a one piece bathing suit begins walking on a diving board that's located in a large indoor pool area with a lot of people in the stands.\", \"When the girl gets to the end of the diving board she jumps and then flips and spins into the pool.\", \" When the girl hits the water she makes a small splash.\"]}, \"v_YmVdnkDo0xQ\": {\"duration\": 64.0, \"timestamps\": [[1.28, 14.08], [15.04, 51.84], [51.2, 62.4]], \"sentences\": [\"A man is seen cleaning up a bathroom when a walks into frame and leads into a news article.\", \" A picture of a sign is shown followed by a person washing their hands as well as clips from tv shows.\", \" More shots are articles are shown and ends with people walking in a subway.\"]}, \"v_oOYaw6-b4SY\": {\"duration\": 130.78, \"timestamps\": [[2.62, 51], [35.96, 126.2]], \"sentences\": [\"A blurry vision shows two people in a gym with one punching and kicking the other holding gloves.\", \" The two continue to move around the gym practicing their kicks and punches.\"]}, \"v_9BR5LChbBLQ\": {\"duration\": 116.87, \"timestamps\": [[10.52, 25.13], [25.13, 43.82], [43.82, 85.9], [85.9, 102.84], [102.84, 110.44]], \"sentences\": [\"There's a black and red colored race car in a parking lot.\", \" A man wearing beige shorts begins cleaning the black race car with a cloth and a spray.\", \" He wipes the car down to make it shiny and clean.\", \" Both the cars are parked in the parking lot, looking clean and sparkly after a car wash.\", \" Information about Hand Job, mobile waterless car wash is shown on the screen.\"]}, \"v_AQ2-EcbX4dE\": {\"duration\": 14.98, \"timestamps\": [[0, 8.16], [9.06, 14.98]], \"sentences\": [\"A small group of people are seen standing around a large horse in a barn full of hay.\", \" The people brush the horse all along the sides when a woman comes out back to speak to them.\"]}, \"v_UB2GzjNzo3M\": {\"duration\": 237.32999999999998, \"timestamps\": [[5.93, 145.96], [81.88, 229.03]], \"sentences\": [\"A man is seen riding a bike in slow motion with a flag in the back and leads into several clips of people of all ages riding bikes.\", \"  The people continuing riding around the dirt court while other stand ready on their bikes and interact with one another.\"]}, \"v_tJcbG_HGZE8\": {\"duration\": 178.45, \"timestamps\": [[15.17, 22.31], [37.47, 38.37], [39.26, 82.98], [84.76, 168.63]], \"sentences\": [\"A glue stick is shown on a table.\", \" A pair of scissors is on a table.\", \" A person gets on a computer and prints something.\", \" They stick that to their door.\"]}, \"v_zvXi08rTq3Y\": {\"duration\": 17.74, \"timestamps\": [[0, 17.74], [0, 5.5], [13.75, 17.74]], \"sentences\": [\"We see people riding bumper cars.\", \" A man is in the car with a small boy.\", \" We see an orange car come into the screen followed by a gold car.\"]}, \"v_vi8zTSA6bhY\": {\"duration\": 13.03, \"timestamps\": [[0, 3.91], [3.91, 13.03], [0, 13.03]], \"sentences\": [\"man is in a swinging make a kind of somervault on the air.\", \" the man makes the big jump in the air and lands in a bike and stat riding it.\", \" men iss swinging in a green grassy yard.\"]}, \"v_lnx8WSmcLF8\": {\"duration\": 97.03999999999999, \"timestamps\": [[0, 17.47], [17.47, 53.37], [53.86, 77.63]], \"sentences\": [\"A gymnast performs a routine on the horizontal bars.\", \" The gymnast spins and turns from one bar to the other, also holding on one hand.\", \" Then, the gymnast spins and jumps stand on the floor, then a flashback of the routine is presented.\"]}, \"v_Dty6AUdBdrE\": {\"duration\": 206.26, \"timestamps\": [[0, 44.35], [36.1, 148.51], [50.53, 148.51], [88.69, 148.51], [95.91, 206.26], [148.51, 206.26]], \"sentences\": [\"A little girl in gray and printed coat is standing at the center of dry leaves, she walked away from the pile of leaves, grab handful and put it on one side.\", \" A woman in gray sweater and blue pants walk from the girl's behind then towards her, the lady is carrying a rake.\", \" The little girl came up to her and try to reach for the rake.\", \" The woman adjusted the handle of the rake to make it shorter and handed to the girl.\", \" The little girl tried to rake but it wouldn't move so the woman sat beside the girl and take the rake from her, while the little girl got distracted by the kids running down the street.\", \" The little girl continue to rake, while the lady take a bigger rake and started to rake the leaves.\"]}, \"v_upic9S0oEhg\": {\"duration\": 102.05, \"timestamps\": [[0, 102.05], [60.21, 80.62]], \"sentences\": [\"Two men play a song on a guitars together in a dimly lit room.\", \" Ones down to play the acoustic guitar.\"]}, \"v_PI_A4uJ_fsI\": {\"duration\": 194.21, \"timestamps\": [[0, 17.48], [17.48, 99.05], [99.05, 146.63], [146.63, 194.21]], \"sentences\": [\"A man is setting up cameras and lighting in the background for some video shoot.\", \" A man is on a machine standing and using only his arms and feet to move on it.\", \" Then a woman gets on it taking the mans place and she uses the machine.\", \" They are creating a commercial advertisment for television viewers.\"]}, \"v_Gz0UlnBx6JU\": {\"duration\": 197.09, \"timestamps\": [[0, 66.03], [66.03, 93.62], [93.62, 197.09]], \"sentences\": [\"man is talking to the camera in a news studio and sart talking with a man that is part of a band.\", \" band is in a stage, men are playing drums.\", \" man is again in news studio with the band and man start laying drums.\"]}, \"v_Ci__IRtoMOo\": {\"duration\": 208.77, \"timestamps\": [[0, 207.73], [7.31, 10.44], [33.4, 38.62], [62.63, 69.94], [82.46, 114.82], [129.44, 150.32], [175.37, 186.85], [206.68, 208.77]], \"sentences\": [\"We see people riding in bumper cars.\", \" A girl is waving frilly toy.\", \" A little boy in gray smiles a the camera.\", \" We see a man in a red hat with a boy laughing hard.\", \" We see a traffic jam on the right.\", \" We zoom in on a lady in a white shirt.\", \" The lady in white smiles at the camera.\", \" The ride ends and the people all stand up.\"]}, \"v_w8lqIgJn09Y\": {\"duration\": 61.7, \"timestamps\": [[0, 12.03], [12.34, 14.5], [15.12, 61.7]], \"sentences\": [\"A man in an athletic uniform begins swinging a ball and a string around.\", \" He lets go and the ball hits the screen as he falls to the ground.\", \" The video is replayed at various speeds.\"]}, \"v_5Eb_NVjFah0\": {\"duration\": 110.94, \"timestamps\": [[0, 5.55], [5.55, 104.28], [24.96, 41.05], [42.16, 90.41], [90.41, 110.94]], \"sentences\": [\"We see a title screen slide down the screen .\", \" We then watch an older boy and a boy bowl in a bowling alley.\", \" A small boy in an orange shirt rolls the ball down the aisle.\", \" We watch an older boy in a green shirt roll the ball 5 times and get 4 strikes.\", \" We see a title screen and a slow motion of one of the shots of the older boy.\"]}, \"v_dtvIQ9Pd-Bg\": {\"duration\": 169.9, \"timestamps\": [[0, 5.1], [5.95, 18.69], [17.84, 71.36], [75.61, 124.88], [109.59, 112.98], [133.37, 143.57], [154.61, 167.35]], \"sentences\": [\"We see a man and the intro scene.\", \" A man in a kitchen has knifes and a sharpening block.\", \" The man wets the block and runs a knife across two different blocks.\", \" The man grabs a pole and sharpens the knife on it.\", \" The man wipes the knife on a towel.\", \" The man grabs and removes a lemon.\", \" The man shows us an upside down pot.\"]}, \"v_vPhAXENSjiw\": {\"duration\": 207.29, \"timestamps\": [[0, 14.51], [15.55, 23.84], [24.87, 44.57], [74.62, 96.39], [116.08, 134.73], [146.14, 165.83], [166.86, 185.52], [190.7, 207.28]], \"sentences\": [\"The cheerleading team comes out for a performance.\", \" A girl attempts multiple flips and sticks the landing.\", \" Another girls follows suit as the team works hard in the background.\", \" The team shows off some dance moves next and the crowd cheers.\", \" After some more team-flips the team poses and celebrates as the routine ends.\", \" Several members hug and talk.\", \" The judges submit their scores and the team anticipates the results.\", \" The team is crowned the winners of the competition.\"]}, \"v_qTvZtsi-3KU\": {\"duration\": 133.93, \"timestamps\": [[0, 10.71], [14.06, 64.29], [64.96, 133.93]], \"sentences\": [\"Some women are swimming in a pool.\", \" They have babies in their arms as they swim.\", \" They are teaching the babies to go under water and hold their breaths.\"]}, \"v_iNMxIXAcHYU\": {\"duration\": 40.38, \"timestamps\": [[0, 4.85], [10.7, 14.13], [14.13, 40.38]], \"sentences\": [\"First the man puts pink lipstick on his lips and he says he's a joker.\", \" Then he puts it on the side of his lips and the people laugh.\", \" Next he puts 2 thick lines of it under his eyes and he says something, he also attempts to put it on his chin, but the video ends.\"]}, \"v_XnrQRuchl7E\": {\"duration\": 65.1, \"timestamps\": [[0, 60.54], [16.93, 45.89], [64.45, 65.1]], \"sentences\": [\"This young woman is  in the studio  playing the piano.\", \" No one else is in there with her and she looks very serious about what she's doing.\", \" She is wearing a pink t-shirt and flower colored leggings, then at some point she stops.\"]}, \"v_-Xl95IW5H_s\": {\"duration\": 178.21, \"timestamps\": [[10.69, 16.04], [16.04, 22.28], [22.28, 27.62], [27.62, 32.97], [32.97, 70.39], [70.39, 81.98], [81.98, 93.56], [93.56, 116.73], [116.73, 139.01], [139.01, 139.9]], \"sentences\": [\"This is a tutorial on how to start a campfire.\", \" It shows the campfire burning on the ground.\", \" It starts with the things you will need to begin with.\", \" A designated place and some rocks arranged in a circle to create a pit.\", \" Some crumpled newspaper and a lighter along with a bucket of water.\", \" A man begins demonstrating how to place the newspaper and twigs on top of that.\", \" He then creates a pyramid shaped structure.\", \" He takes his lighter and lights the newspaper in several places to start the fire.\", \" The bonfire starts burning and continues to burn.\", \" He adds a few more twigs to keep the flames burning.\"]}, \"v_aIwFZCRFHx8\": {\"duration\": 148.32999999999998, \"timestamps\": [[0, 2.97], [19.28, 74.91], [96.41, 131.27]], \"sentences\": [\"First the people are all shown sitting in their cars in one long line.\", \" Then the cars get powered on and they are able to get driven.\", \"  After the people are done driving they all get out of the cars.\"]}, \"v_NpKBAtQ5M6I\": {\"duration\": 173.76, \"timestamps\": [[0, 4.34], [4.34, 28.67], [28.67, 75.58], [75.58, 121.63], [121.63, 173.76]], \"sentences\": [\"An older man with a long ponytail and a pair of glasses is outside kneeling near a bike.\", \"The man has a pair of blue pliers in his hand and begins fixing the chain on the bike.\", \"Once the chain is on,he begins moving the pedal and demonstrates how the chain is operating.\", \"After awhile,he stops the chain and begins to take two links out of the chain on the bike.\", \"As the chain begins to hang down,the man puts it back in the right place and begins to spin the back wheel and begins to talk when he is finished.\"]}, \"v_n0Th8ZqMeGk\": {\"duration\": 214.9, \"timestamps\": [[0, 37.61], [39.76, 138.61], [146.13, 214.9]], \"sentences\": [\"A man is on a snowboard on a snowy hill.\", \" He glides over the thickly packed snow.\", \" He goes through a marker, and jumps over obstacles.\"]}, \"v_q3-S2tg4ULw\": {\"duration\": 170.92000000000002, \"timestamps\": [[0, 27.35], [29.91, 166.65], [166.65, 170.92]], \"sentences\": [\"Young boy talks to camera in front of drum set in a studio.\", \" Young boy plays on the drum set, and the cymbals, while intermittently speaking to the camera.\", \" The boy finishes up recording his drum session and returns to the camera.\"]}, \"v_9PqYL4zTnxY\": {\"duration\": 138.6, \"timestamps\": [[0, 20.79], [22.87, 42.97], [48.51, 138.6]], \"sentences\": [\"A woman is in a driveway, doing tricks and stunts as she jumps rope.\", \" She increases speed, then stops as a man approaches her to discuss her technique.\", \" She then returns to demonstrating how to jump rope, and the various names of the moves.\"]}, \"v_mDqiAEB4Ads\": {\"duration\": 186.32, \"timestamps\": [[0, 6.52], [6.52, 21.43], [21.43, 32.61], [32.61, 57.76], [57.76, 82.91], [82.91, 101.54], [101.54, 154.64], [154.64, 186.32]], \"sentences\": [\"A view from indoors show a nice ocean view then pans to a man on his knees on the ground as he grouts some tiles and the white words on the screen say \\\"INSTALLING TILES WITH DITRA\\\".\", \"The man is then shown putting spacers in between tiles and measuring.\", \" The man then goes to another part of the room with a white bucket and an orange cloth and is wiping down wooden floorboards.\", \"The man is then shown pouring powder into a large white bucket, pouring water into it then mixing the contents with a hand drill.\", \" The man is then in a corner of the room and he's applying the mixture onto the floorboards then puts down an orange material.\", \" The man is then shown cutting the tiles with a manual hand cutter while another man is helping him by holding it, the the man holding the tile takes it away and sands it.\", \"The man is shown once again on his hands and knees and is applying putty onto the ground or the tile, putting the tiles down, adding spacers, then measuring that it's all even with a white circular leveler.\", \"A low view of the tiles are shown and a man is grouting, wiping tiles down and various views of the tiled room are shown.\"]}, \"v_Lfh5p8ReOYo\": {\"duration\": 186.5, \"timestamps\": [[0, 60.61], [59.68, 152], [145.47, 186.5]], \"sentences\": [\"A woman is seen sitting at the end of a bed taking her shoes off and then baby's feet walking.\", \" Shots of furniture is shown that leads into a woman speaking, followed by several people vacuuming and stepping onto the carpet.\", \" A person adjusts the vacuum and continues using it while the woman speaks, and leads into a man playing with a baby.\"]}, \"v_vYxBAbbvSxc\": {\"duration\": 87.96000000000001, \"timestamps\": [[0, 3.96], [4.4, 75.64], [75.64, 82.68], [83.12, 87.96]], \"sentences\": [\"A GoPro camera is seen and then another screen appears showing that the camera has won awards.\", \" A camera is mounted on the helmet of a water skier and after he gets himself into position a man on a horse by a pond pull him for a ride.\", \"  Near land he lets go and falls into the water, as he celebrates and points at the man on the horse as a dog runs by.\", \"  A screen appears asking to submit footage to the GoPro awards.\"]}, \"v__6fbXk6y8X0\": {\"duration\": 95.27000000000001, \"timestamps\": [[0, 65.74], [49.07, 51.92], [60.02, 66.69], [62.4, 63.83], [68.12, 95.27], [82.89, 95.27]], \"sentences\": [\"We see a man kite surfing.\", \" We pass a person on the beach.\", \" The rider falls in the water.\", \" Water splashes and covers the camera lens.\", \" The person is riding in the other direction.\", \" We see the sand blowing in the wind.\"]}, \"v_nVk5nIE-6bM\": {\"duration\": 197.63, \"timestamps\": [[0, 197.63], [0, 11.86], [11.86, 62.25], [62.25, 197.63]], \"sentences\": [\"There are a lot of people gathered on the street to watch a parade or to be in the parade.\", \" There are 4 young people dressed in military attire carrying a red and white banner in a parade.\", \"They are then followed by a group of dancing girls that are all dressed in the same outfits that are red, white and black, but some are wearing white tops and the others are wearing red tops.\", \" They are then followed by a very large band that are playing different instruments and they are all in sync and one woman is enjoying it so much that she begins to dance while the band plays on.\"]}, \"v_mHWQrZW6-0M\": {\"duration\": 124.11, \"timestamps\": [[8.69, 114.18], [12.41, 111.7], [16.13, 19.86], [18.62, 114.18]], \"sentences\": [\"Several people canoe down a lake interspersed with several still photos of the lake stats and features.\", \"  Several still photos of the lake are shown which includes browned and dry weeds/marsh and calm blue water along with a shallow body of water heavy with rocks.\", \"  Two canoes with people in them are shown in the lake.\", \"  An art mural of a blue and yellow fish is shown along with more still shots and video of people on the lake.\"]}, \"v_GBdj6erXjDM\": {\"duration\": 29.37, \"timestamps\": [[0, 29.37], [11.02, 22.76], [27.02, 28.35]], \"sentences\": [\"A girl sits in the drivers seat of a car and enjoys a ice cream cone.\", \" The girl laughs while trying to eat the ice cream.\", \" The girl licks the ice cream cone with the tip of her tongue.\"]}, \"v_YtPZMBePf5c\": {\"duration\": 37.55, \"timestamps\": [[0, 11.26], [11.64, 28.72], [27.97, 37.55]], \"sentences\": [\"A man is seen swirling a stick around a pot while a young boy on the side watches him work.\", \" The man teases the boy with a cone and lets the boy have it, only to be taken away again.\", \" The man then puts ice cream on the cone and smiles at the boy while he walks away and other's watch.\"]}, \"v_exhsUZg_xQA\": {\"duration\": 14.05, \"timestamps\": [[0, 14.05], [6.95, 14.05], [12.43, 14.05]], \"sentences\": [\"man is standing in a track in a roofed gym and runs to make big jumps in front of judges.\", \"people are in terraces watching the boy.\", \" man claps after the man make the jumps.\"]}, \"v_4-_ZQGwppfI\": {\"duration\": 224.05, \"timestamps\": [[0, 35.85], [36.97, 62.73], [63.85, 155.71], [151.23, 224.05]], \"sentences\": [\"A woman is seen looking beyond the camera and showing the back of her head.\", \" She holds up various products and rubs them through her hair.\", \" She then pits up her hair while hairspraying it and feeling the texture afterwards.\", \" She finishes pinning up her hair and looking back at the camera.\"]}, \"v_IQvSj-3BGPo\": {\"duration\": 204.03, \"timestamps\": [[0, 35.71], [35.71, 75.49], [75.49, 133.64], [134.66, 204.03]], \"sentences\": [\"A man and a dog are standing in the middle of the field playing while he is holding a group of Frisbees.\", \" The man then throws all of the frisbees and the dog runs after them several times and catches them.\", \"In the middle of the routine,he grabs several frisbees and gives them to the dog one by one as he kneels down in front of him.\", \" Several tricks are done,and then the dog appears jump roping in the field,they go back to their regular routines and the owner picks up the dog and waves to the crowd.\"]}, \"v_qmar8pDP5co\": {\"duration\": 176.05, \"timestamps\": [[0, 166.37], [0, 176.05], [31.69, 36.97], [35.21, 51.06], [39.61, 83.63], [87.15, 104.75], [116.2, 124.12], [131.16, 146.12], [143.48, 150.53], [154.05, 176.05]], \"sentences\": [\"The video begins with two sumo wrestlers on a sumo stage.\", \" There is a large crowd spectating, and a man in the center of the ring acting as referee.\", \" The two sumo wrestlers throw a white powder into the ring.\", \" The squat and clap their hands together, while a group of men hold flags and walk around the ring.\", \" Two other men hold brooms as sweep up some of the powder.\", \" The two sumo wrestlers walk out of the ring and again throw more powder.\", \" They collide into one another and back away.\", \" They again collide into each other and begin wrestling.\", \" The man in black sumo shorts throws the other man out of the ring.\", \" They bow and the loser exits the ring.\"]}, \"v_b1D6v3kZrHM\": {\"duration\": 161.96, \"timestamps\": [[0, 2.43], [3.24, 27.53], [27.53, 144.95], [83.41, 84.22], [84.22, 93.13], [101.23, 104.46], [121.47, 122.28], [131.19, 132.81], [134.43, 138.48], [140.1, 144.95], [144.95, 145.76], [146.57, 158.72], [161.15, 161.96]], \"sentences\": [\"The credits of the video are shown.\", \" A man stands with a bow and arrow.\", \" A man shots an arrow from bow.\", \" The credit of the clip is shown.\", \" A guy talks with his mouth and hand.\", \" An extended hand holding a pen is shown on a split screen.\", \" Several arrows hit the target.\", \" An arrow goes through the hole of a donut.\", \" An arrow cuts the string holding an apple.\", \" An arrow goes through the hole of a CD.\", \" Credit of the clip is presented.\", \" A guy talks while gesturing.\", \" Credits of the video are shown.\"]}, \"v_QRdQ8KIVf40\": {\"duration\": 195.58, \"timestamps\": [[0, 195.58], [85.08, 108.55], [130.06, 136.91]], \"sentences\": [\"Two men play billiards while taking turns to hit the ball with a stick, while a man plays billiards alone on back.\", \" A man and a child walk in a living room on back the table pool.\", \" A woman walks with a stick next to the men.\"]}, \"v_sDdgFSFaAdY\": {\"duration\": 167.57999999999998, \"timestamps\": [[0, 25.14], [25.14, 163.39], [163.39, 167.58]], \"sentences\": [\"An introduction comes onto the screen for a video about furniture repair.\", \" A woman is shown on the screen with gloves on and a cloth in her hand rubbing cream on a leather ottoman to repair the wear and tear.\", \" The video ends with the graphics for the closing credits at the end.\"]}, \"v_sHx5UcQQ1kU\": {\"duration\": 197.28, \"timestamps\": [[0, 40.44], [39.46, 95.68], [97.65, 197.28]], \"sentences\": [\"A young boy is shown speaking to the camera and eventually shows his hands moving objects.\", \" He places the objects together and begins shaving the sides with a sharp knife.\", \" He continues sharpening the object and shows the knife running across his bare skin.\"]}, \"v_R_EnlXwBvtA\": {\"duration\": 187.83, \"timestamps\": [[0, 185.95], [15.03, 174.68], [23.48, 48.84], [61.04, 95.79], [61.04, 185.95]], \"sentences\": [\"Two men in basketball shorts are playing racketball.\", \" They hit the ball back and forth against the wall.\", \" The men continue to serve and then hit and return each other's serves.\", \" They take a short break after one man scores.\", \" They continue to play and serve.\"]}, \"v_iqe_HmjojQ8\": {\"duration\": 8.59, \"timestamps\": [[0, 1.76], [1.89, 5.54], [5.58, 8.59]], \"sentences\": [\"A kickball player kicks the ball at home plate in a large arena.\", \" The player runs past the first base.\", \"  The player then comes back to the first base and puts his foot on it.\"]}, \"v_y-7ZKlq2UFw\": {\"duration\": 147.66, \"timestamps\": [[18.46, 45.04], [45.04, 78.26], [78.26, 102.62], [102.62, 128.46], [128.46, 140.27]], \"sentences\": [\"There's a guitarist in a green shirt demonstrating how to play an acoustic guitar.\", \" Various types of guitars made from a variety of wood are shown.\", \" The guitarist is strumming the guitar with his pick as he plays his music.\", \" There are images of the guitar store and the kinds of guitars sold scrolling through the bottom of the screen.\", \" The guitarist continues playing his guitar.\"]}, \"v_ndET50Ccnr8\": {\"duration\": 154.18, \"timestamps\": [[0, 82.49], [43.17, 154.18]], \"sentences\": [\"A small group of people are seen swimming around a pool throwing a ball around while several people watch on the sides.\", \" The people continue throwing the ball around to one another while the camera captures the game going on.\"]}, \"v_KVmuW9kwZV4\": {\"duration\": 12.47, \"timestamps\": [[0, 2], [2, 5.05], [5.49, 8.04], [8.42, 12.35]], \"sentences\": [\"A man at his dish washing job has a very unique way to do his dishes at a very fast speed.\", \" He throws all the plates one by one very fast.\", \" They all land into the sink on top of each other after he wipes them down, some of them fall out a bit.\", \" The he pushes them all down into the water.\"]}, \"v_nr34x_-K5c0\": {\"duration\": 154.55, \"timestamps\": [[0, 147.6], [12.36, 30.14], [29.37, 149.14]], \"sentences\": [\"An athletic man is swimming around on a paddle board while another man gets behind and assists him.\", \" He then flips the man forward and the man demonstrates how to flip yourself back over.\", \" They do this several more times to become more comfortable with the move.\"]}, \"v_xSiT1pgUEm8\": {\"duration\": 233.76, \"timestamps\": [[15.19, 63.11], [63.11, 115.71], [115.71, 156.62], [156.62, 176.49], [176.49, 210.38], [210.38, 222.07]], \"sentences\": [\"There are six to eight people sailing down a turbulent water stream in a raft.\", \" They are all dressed in red gears and yellow helmets.\", \" They use the oars to sail themselves down the rapids.\", \" They are trying hard to stay afloat in the turbulent water as the boat gets bumpy sailing through the rapids.\", \" As they sail through they come across another group of rafters in the same rapids.\", \" They continue their journey through the rough water of the rapids.\"]}, \"v_CKWWRS9CpTY\": {\"duration\": 85.57, \"timestamps\": [[0, 49.63], [1.71, 2.99], [0, 85.57], [37.65, 42.36], [41.93, 42.78], [43.21, 44.49], [44.92, 56.47], [56.9, 79.15], [58.18, 79.58], [80, 85.57]], \"sentences\": [\"A group of runners are running in a marathon.\", \" A man high fives a woman in a crowd.\", \" The crowd around them cheers.\", \" A woman in white hat starts walking strangely.\", \" Another woman in a white hat falls to the ground.\", \" The other woman in the hat also falls.\", \" They both try to get up but they keep falling down.\", \" One of the women starts to crawl to the finish line.\", \" The other woman follows her.\", \" A man lifts one of the women and hugs her.\"]}, \"v_W3a7BIqWov4\": {\"duration\": 34.06, \"timestamps\": [[0.51, 11.24], [8.18, 22.14], [19.59, 33.55]], \"sentences\": [\"A person is seen laying down on a bowling alley on the floor.\", \" The man then begins break dancing on the floor.\", \" The man kics a ball down a lane and people celebrate.\"]}, \"v_qCy-68g0oXw\": {\"duration\": 107.6, \"timestamps\": [[0, 34.43], [33.89, 76.94], [71.02, 106.53]], \"sentences\": [\"A man is seen standing before a ping pong table and throws a ball off into the distance.\", \" A man takes a drink and leads into the two playing more beer pong.\", \" The men throw the ball back and fourth to one another while smiling to the camera.\"]}, \"v_metrvLaYO1w\": {\"duration\": 27.19, \"timestamps\": [[0, 27.19], [6.8, 13.87], [16.45, 21.62]], \"sentences\": [\"People are standing on a colorful mat.\", \" A woman does a karate move.\", \" A child standing behind her raises his hand.\"]}, \"v_d40Tv56RrnA\": {\"duration\": 19.11, \"timestamps\": [[0, 9.46], [9.46, 14.14], [13.95, 15.67], [15.67, 19.11]], \"sentences\": [\"The camera man captures a view of a thatched roof house.\", \" A young girl in a black blouse and a girl in a white tank top stand in a thatched roof house watching two woman washing clothes Filipino style.\", \" A girl in a pink blouse and a girl in a white t-shirt wash clothes in large tubs just outside the thatched roof house.\", \" The camera man pans the front of the washing area while the girl in the white t-shirt rinses the clothes.\"]}, \"v__ajGnJjNUX0\": {\"duration\": 121.02, \"timestamps\": [[0, 7.87], [8.47, 36.91], [38.12, 88.35], [93.19, 121.02]], \"sentences\": [\"An ad for Floorworks appears on the screen.\", \" A guest room is shown, displaying the dirty carpets.\", \" Men are shown replacing and repairing the floors with wooden slats that don't need glue to install.\", \" Final photos are shown of the new hardwood floors in the guest room.\"]}, \"v_yVQBdK8VQ_I\": {\"duration\": 152.81, \"timestamps\": [[0, 150.52], [0, 50.43], [50.43, 121.48], [126.83, 145.93]], \"sentences\": [\"A girl stands at a kitchen sink and demonstrates rinsing her mouth out with Crest whitening mouthwash.\", \"  A girl stands by a sink talking and using had gestures.\", \"  The girl then picks up a bottle of Crest whiting mouth wash and rinses her mouth for 60 seconds.\", \"  The woman then spits the rinse out in the sink, and proceeds to talk to the camera again.\"]}, \"v_He7CDkVm_aE\": {\"duration\": 197.56, \"timestamps\": [[3.95, 35.56], [38.52, 56.3], [57.29, 197.56]], \"sentences\": [\"A woman stands with a child that is seated next to a counter.\", \" The woman applies a dry powder to the back of the girls hair and brushes in through.\", \" The woman get s a blow dryer and uses it while she brushes the girls hair to straighten it.\"]}, \"v_tbKBKWCh6rs\": {\"duration\": 40.91, \"timestamps\": [[0, 22.5], [22.3, 34.98], [34.98, 40.91]], \"sentences\": [\"man is standing in front of a mirror spreading cream on his face.\", \"man is kneeling and wash her face.\", \" the man grabs a green towel and wipe his face.\"]}, \"v_iEWe6IYVIuk\": {\"duration\": 50.62, \"timestamps\": [[0, 49.35], [7.85, 11.64], [10.88, 29.11], [18.73, 49.35]], \"sentences\": [\"A woman is adjusting her exercise machine.\", \" She adjusts the knobs and pushes the seat up.\", \" She then sits down on the seat and places her feet in the pedals.\", \" She begins to pedal slow then fast.\"]}, \"v_Db6sq4DjW7E\": {\"duration\": 43.07, \"timestamps\": [[0, 4.95], [5.17, 36.4], [36.61, 43.07]], \"sentences\": [\"The credits of the clip are shown.\", \" A coach instructs players in a basketball court.\", \" The credits of the video are shown.\"]}, \"v_aKfUE-KeYWw\": {\"duration\": 42.05, \"timestamps\": [[0, 34.69], [0, 42.05]], \"sentences\": [\"This man is shown mowing the lawn while a big greyhound walks behind him.\", \"  There is also another small dog in the yard who's just sitting down in  one spot.\"]}, \"v_66-sCRx4QRI\": {\"duration\": 213.86, \"timestamps\": [[4.28, 190.33], [4.28, 25.66], [26.73, 180.71], [180.71, 191.4]], \"sentences\": [\"A man drives to the ocean and surfs on a surfboard, riding waves, before leaving the beach with his surfboard.\", \"  A man gets in his truck, puts his surfboard in the back of his truck and drives.\", \"  The man arrives at the beach, changes into a wets suit and begins to surf on a surfboard in the ocean, riding waves.\", \"  The man then leaves the beach, in his wetsuit, with his surfboard under his arm.\"]}, \"v_AIZWoAbhUTY\": {\"duration\": 155.23, \"timestamps\": [[0, 22.51], [32.6, 90.03], [93.14, 155.23]], \"sentences\": [\"a man is crouched next to a girl on the beach.\", \" They are putting sand into a pile.\", \" They are trying to build a sand castle.\"]}, \"v_KOFXi1RYx_g\": {\"duration\": 79.16, \"timestamps\": [[0, 15.83], [15.04, 36.41], [36.81, 64.51], [64.51, 79.16]], \"sentences\": [\"An audience is sitting in the stands watching a game on the field.\", \" These riders get on their horses and start trying to score for their team.\", \" Someone makes it and one of the groups in the audience clap.\", \" When the game is over the riders all shake each others hands.\"]}, \"v_K_AFdv3PKp0\": {\"duration\": 78.53, \"timestamps\": [[0, 78.53], [10.99, 78.53]], \"sentences\": [\"A man is seen using a large sander against a wall moving the machinery all along the wall.\", \" The man continues sanding the wall and ends with him keeping it steady.\"]}, \"v_IJ2m8Bi3LVE\": {\"duration\": 200.55, \"timestamps\": [[0, 43.12], [37.1, 98.27], [82.23, 161.44], [162.45, 200.55]], \"sentences\": [\"Various shots are shown of a person close up wearing making and laughing at the camera.\", \" Various objects are then shown closely to the camera and the person pours liquid into a contact case.\", \" He then mixes the liquids with the contacts and puts them slowly into his eye while looking at the camera.\", \" He then takes his hands and pops out the contacts.\"]}, \"v_3CImIarFM30\": {\"duration\": 10.22, \"timestamps\": [[0.1, 5.82], [2.81, 9.3]], \"sentences\": [\"A person's hands are seen playing in dirt while moving their hands all around the soil.\", \" The person continues to play around in the soil while the camera watches their hand movements.\"]}, \"v_F_sbhegCsyg\": {\"duration\": 88.86, \"timestamps\": [[26.21, 51.98], [26.21, 59.54], [59.98, 88.86]], \"sentences\": [\"A group of people are gathered at an outdoor park.\", \" They are dressed up, and they get into a raft.\", \" They white water raft down a river together.\"]}, \"v_mzxp9dHn0Rs\": {\"duration\": 220.1, \"timestamps\": [[0, 206.9], [24.21, 69.33], [190.39, 203.59]], \"sentences\": [\"People are playing soccer in an indoor arena.\", \" A man is sitting in front of a goal blocking balls.\", \" People are in the stands watching the game.\"]}, \"v_1KVxpHAC08g\": {\"duration\": 137.21, \"timestamps\": [[0, 137.21], [10.29, 137.21], [31.56, 43.22], [131.03, 137.21]], \"sentences\": [\"A young boy and girl sit next to each other.\", \" They are fed ice cream.\", \" The girl tries to eat the boys ice cream.\", \" The girl laughs at the end.\"]}, \"v_i9Yxt2k2aWg\": {\"duration\": 35.43, \"timestamps\": [[0, 12.76], [15.24, 23.92], [23.39, 35.43]], \"sentences\": [\"Someone is sleeping on a white couch.\", \" They get up and do crunches on the floor.\", \" They stand up and walk out the door.\"]}, \"v_cNvTm72aGcM\": {\"duration\": 195.23, \"timestamps\": [[0, 17.57], [19.52, 165.95], [170.83, 195.23]], \"sentences\": [\"A woman is on stage in front of a band.\", \" She is a belly dancer, and gyrates and shakes to the music.\", \" She dances slowly, dropping to the ground as she finishes.\"]}, \"v_dF2p3CMDe_g\": {\"duration\": 146.89, \"timestamps\": [[4.41, 5.88], [8.08, 22.77], [31.58, 67.57], [68.3, 83.73], [85.2, 95.48], [96.95, 121.92], [124.12, 144.69]], \"sentences\": [\"A man wearing no shirt plays a hand drum.\", \" A solo man spins his body around on his hands and does cartwheels.\", \" Two men do a practice karate routine and dodge kicks from the other opponent.\", \" The men both do hand stands then come together and touch hands.\", \" The man does jumping flips by himself.\", \" The two men do jumping kicks while they spar in a karate dance.\", \" The man stands on his hands and bends backwards to a horizontal position.\"]}, \"v__LmtW0w6ad4\": {\"duration\": 143.71, \"timestamps\": [[1.44, 110.66], [9.34, 33.77], [42.39, 139.4]], \"sentences\": [\"A man displays martial arts moves in a movie clip that shows the man fighting different people in several different locations in a city backdrop.\", \"  A man is escorted into a room and left alone until he is attacked, violently, by a man who appears suddenly in the room with him, the two fight.\", \"  The man is then shown in several other locations fighting with different men using martial arts skills until the clip fades to a marketing invitation to subscribe.\"]}, \"v_wJV-kQRmaGc\": {\"duration\": 24.1, \"timestamps\": [[0, 2.41], [2.41, 23.98], [0, 24.1]], \"sentences\": [\"A black banner overlay with the word POWERCHALK written in white and green is across the banner.\", \" When the banner overlay goes away a man jumps to the end of a diving board and then does a forward front flip and flips 5 times before he dives straight into the water in the pool.\", \" There are a lot of spectators standing on the sidelines.\"]}, \"v_SEebwJMNMQs\": {\"duration\": 237.56, \"timestamps\": [[32.07, 98.59], [32.07, 237.56], [32.07, 54.64]], \"sentences\": [\"A violinist is playing the violin in a music room.\", \"She adjusts the violin under her chin as she reads the music.\", \" At the end of her song she removes the violin and smiles.\"]}, \"v_p4Bm_NB_QoI\": {\"duration\": 185.34, \"timestamps\": [[0, 21.31], [23.17, 149.2], [150.13, 185.34]], \"sentences\": [\"A small group of girls are first seen walking out on a gymnasium floor with several people watching on the sidelines.\", \" The girls then perform a routine using batons while spinning and twirling.\", \" They make an ending pose while the audience claps and run off to the side.\"]}, \"v_hDpYoAAFwOA\": {\"duration\": 47.79, \"timestamps\": [[2.87, 47.07], [9.08, 19.83], [23.89, 33.45], [29.87, 45.88]], \"sentences\": [\"A man performs stunts on the back of a motorcycle, falls off, and injures himself at which point he falls to the ground and looks hurt.\", \"  A man is hanging off of a moving bicycle on a down ramp.\", \"  The man falls off of the bike and onto the ground with torn clothes.\", \"  The camera pans the man's damaged clothes and helmet and his befallen face as he lays on the ground injured.\"]}, \"v_ADbpTpH4U7s\": {\"duration\": 102.7, \"timestamps\": [[0, 33.89], [34.92, 73.95], [60.59, 101.16]], \"sentences\": [\"Various ingredients are shown laid out on a table and leads into a person putting items into a bowl.\", \" The person is then seen cutting up fruit and laying it into a bowl.\", \" She pours more liquid in and presents it to the camera.\"]}, \"v_uoy7NjeESZc\": {\"duration\": 101.52000000000001, \"timestamps\": [[10.66, 15.74], [15.74, 18.78], [23.86, 95.93]], \"sentences\": [\"A group of bikers stand on the start line.\", \" Suddenly all the bikes fall from a stage.\", \" The scene of the fall of the bikers is repeated several times.\"]}, \"v_bzZMUbtgZho\": {\"duration\": 182.97, \"timestamps\": [[28.36, 79.59], [79.59, 126.25], [126.25, 169.25], [169.25, 182.97]], \"sentences\": [\"A man is surf boarding in the ocean on a blue surf board.\", \" The water looks greenish blue as the surfer surfs through big waves.\", \" The man is surfing near a beach by some hotels.\", \" The surfer continues to surf through tall waves without falling off.\"]}, \"v_Eo3PUIfZSJU\": {\"duration\": 101.19, \"timestamps\": [[0, 24.79], [24.79, 53.63], [53.63, 76.91], [76.91, 101.19]], \"sentences\": [\"A gymnast performs on the vault on front a crowd, she flips and falls from the vault.\", \" Then, the gymnast jumps, flips but staggers during her performance.\", \" The gymnast performs backward flips, then  she continues with her routine.\", \" Next, the gymnast jumps and does a double flip and land stands on the mat.\"]}, \"v_scBelfrnHoI\": {\"duration\": 176.11, \"timestamps\": [[0, 163.79], [101.27, 115.35], [151.46, 152.34]], \"sentences\": [\"A man runs and jumps in various public locations with springs on his legs while spectators watch.\", \" A cameraman films the man while lying on the ground.\", \" The man with springs jumps over another man.\"]}, \"v_Zev1KxIua7o\": {\"duration\": 168.57999999999998, \"timestamps\": [[0, 50.57], [52.26, 123.06], [126.43, 164.36]], \"sentences\": [\"A large group of people are seen standing in a large field holding instruments.\", \" One man leads in front as the group walks away and begins playing as a band.\", \" The group continues playing together and ends by walking away.\"]}, \"v_uICwWvS_AOo\": {\"duration\": 190.87, \"timestamps\": [[0, 10.5], [15.27, 26.72], [28.63, 55.35], [56.31, 113.57], [114.52, 119.29], [123.11, 134.56], [137.43, 155.56], [155.56, 184.19], [186.1, 190.87]], \"sentences\": [\"Four men ride in a convertible car and drive along a desert highway.\", \" Two friends ride down an escalator.\", \" The friends stand at a card table in a casino and play hands.\", \" The man makes a large bet and sits down to play a few hands at the table.\", \" The man accumulates a large number of chips.\", \" The man's friends win a hand and the couple celebrates.\", \" The man is tracked by security personnel and cameras.\", \" The woman falls back if her chair to the ground and the men help her up.\", \" The friend playing is gone and the chair is empty.\"]}, \"v_Hv3We5wjaJE\": {\"duration\": 126.06, \"timestamps\": [[0, 17.02], [22.06, 85.72], [92.03, 126.06]], \"sentences\": [\"A couple are in the flowing water of a river.\", \" They are sitting next to several buckets.\", \" They scrub clothing against the rocks, trying to clean them.\"]}, \"v_GySHt3Z6Lt4\": {\"duration\": 181.91, \"timestamps\": [[0, 7.28], [7.28, 110.05], [110.05, 181.91]], \"sentences\": [\"A person light wood to make fire.\", \" Then, a man blow the fire, while the person puts sticks on the nascent fire.\", \" After, the fire starts to growth bigger and bigger while the men put sticks on top.\"]}, \"v_b5GrYqt5tRQ\": {\"duration\": 164.1, \"timestamps\": [[7.38, 20.51], [20.51, 47.59], [47.59, 71.38], [71.38, 112.41], [112.41, 163.28], [163.28, 164.1]], \"sentences\": [\"A group of men are holding maracas in the their hands and playing to some Reggae music.\", \" One of the men begins singing in the microphone.\", \" The rest of the men join him in singing the chorus.\", \" They play the maracas as they sing the song.\", \" The men also dance as they sing and play the maracas The lead singer sings solo for some time while the others play their maracas.\", \" Then all the men join him in singing the song while playing their maracas.\"]}, \"v_ShiBZnuxlmc\": {\"duration\": 113.47999999999999, \"timestamps\": [[0, 2.27], [2.27, 23.26], [23.26, 103.26], [103.26, 113.48]], \"sentences\": [\"A blond athletic girl with a serious face has her hands all chalked up and is standing next to a wooden balance beam, dressed in a black and white decorated bodysuit, and the banner on the bottom of the screen say's her name is SHAWN JOHNSON 1ST PLACE AFTER 2ND ROTATION.\", \"The girl rubs her hands together a few times, the audience claps, she smiles and raises her two arms in the air, smiles, turns to the horse and runs and jumps until she lands on the balance beam.\", \"The girl immediately begins her routine and it includes a lot of flips, walking, twirls, hand movements, spins and etcetera.\", \" The girl goes to the furthest end of the balance beam, stares at the other end, quickly flips on the balance beam, and then flips off of the balance beam a few times, lands on her feet, raises her two arms in the air and the crowd cheers.\"]}, \"v_BCC6fxrmA9M\": {\"duration\": 102.82, \"timestamps\": [[4.11, 98.19], [4.11, 10.8], [12.34, 16.96], [16.96, 100.25]], \"sentences\": [\"Three men are interviewed, one of whom plays the piano and sings for the interviewer and his camera crew in a narrow hallway.\", \"  Four men are in a room, three of whom are being interviewed by the fourth man who has blonde hair, is wearing glasses, and has a camera crew with him.\", \"  The interviewer leads one of the men into the hallway to a piano, where the man has a seat.\", \"  The man begins to play and sing as the camera crew, interviewer and onlookers watch, before the man ends the song, gets up and walks away.\"]}, \"v_-DphPPTybSY\": {\"duration\": 158.38, \"timestamps\": [[0, 158.38], [13.46, 16.63], [22.97, 29.3], [57.81, 72.86], [86.32, 98.2], [106.91, 121.16], [129.08, 134.63], [149.67, 158.38]], \"sentences\": [\"We see men in a room playing pool in a tournament.\", \" The man in the blue shirt approaches to shoot.\", \" The man walks away to exchange his pool stick.\", \" The man in blue makes his shot.\", \" The man then takes another shot.\", \" The man takes his third shot.\", \" The man makes his fourth shot.\", \" The man makes his final shot.\"]}, \"v_UkZiyYfO57g\": {\"duration\": 169.79, \"timestamps\": [[0, 28.86], [28.01, 100.17], [104.42, 169.79]], \"sentences\": [\"An intro leads into a woman speaking to the camera while several skiiers ride around her.\", \" The camera follows the girl riding down a snowy hill as well as riding up ski lifts and speaking again to the camera.\", \" Several more shots of her skiing are shown and ends with her waving to the camera and various pictures of skiers.\"]}, \"v_Cu8lmHiXkUU\": {\"duration\": 178.81, \"timestamps\": [[3.58, 127.85], [25.93, 159.14], [109.97, 176.12]], \"sentences\": [\"Two people are seen playing a game of ping pong with one another.\", \" They hit the ball back and fourth across the table while people watch on the sides.\", \" The boys continue to play back and fourth while switching places and looking to the camera.\"]}, \"v_9SiYS0SEKTw\": {\"duration\": 200.3, \"timestamps\": [[4.01, 97.14], [65.1, 197.29]], \"sentences\": [\"A person is seen standing behind a bike speaking to the camera and showing close ups of the bike.\", \" The person continues speaking while showing off his gear and leads into him adjusting settings on his bike.\"]}, \"v_YMSMASHyl2Y\": {\"duration\": 154.39, \"timestamps\": [[15.44, 47.86], [47.86, 77.19], [77.19, 110.39], [110.39, 135.86], [135.86, 148.21]], \"sentences\": [\"A woman dressed in a black top is talking about American Grooming services for pets.\", \" She demonstrates all the various grooming services that her company provides for pets.\", \" There are several groomers working on dogs as they trim and shear pet hair and clip their nails.\", \" The groomers talk about where they have graduated from and how they got hired for the job.\", \" The video shows how different dogs are groomed by professional groomers that provide quality services.\"]}, \"v_s_H9cTp2tT8\": {\"duration\": 64.81, \"timestamps\": [[0, 10.05], [10.05, 40.5], [40.83, 64.81]], \"sentences\": [\"Various shots of people walking around a snowy mountain are shown followed by person playing games on horses.\", \" Many upscale people are seen watching on the sidelines as the horse game carries on and a winner is chosen.\", \" The people then arrive late at night dressed up and posing for pictures.\"]}, \"v_uDs0wOnwaAM\": {\"duration\": 213.09, \"timestamps\": [[0, 175.8], [63.93, 213.09]], \"sentences\": [\"A small group of people are all seen playing various matches of ping pong with one another down a line of tables.\", \"The people continuing hitting the ball back and fourth while the camera captures them from various angles and a close up of a young boy in the end.\"]}, \"v_v-xUwDARVb4\": {\"duration\": 158.64, \"timestamps\": [[5.55, 102.32], [59.49, 156.26]], \"sentences\": [\"A band is seen performing on stage while the camera pans around and captures them from several angles.\", \" The singer interacts with the band and continues playing while the audience cheers.\"]}, \"v_ZPLbrQ391jg\": {\"duration\": 187.13, \"timestamps\": [[1.87, 72.05], [40.23, 154.38], [153.45, 187.13]], \"sentences\": [\"An intro leads into several shots of a bike track as well as people moving along the track to race.\", \" The camera continues to capture the people riding around the track in slow motion with one person falling and several watching on the sides.\", \" The people then ride through the finish line an throw their arms up into the air.\"]}, \"v_b1s0BdtlFZs\": {\"duration\": 112.8, \"timestamps\": [[0, 112.8], [4.51, 7.9], [18.61, 45.69], [46.25, 112.8]], \"sentences\": [\"A man sits on a toilet with her leg up.\", \" A person holding a camera walks into the bathroom.\", \" The man rubs shaving cream on their legs.\", \"He begins to shave his leg in the sink.\"]}, \"v_FA4BDINxLmE\": {\"duration\": 166.32999999999998, \"timestamps\": [[0, 74.85], [52.39, 166.33]], \"sentences\": [\"A close up of a person walking on a rope is shown followed by and old man speaking to the camera and more shots of the person walking.\", \"More people are being interviewed while people walk behind them and show several more shots of people walking across a rope.\"]}, \"v_Yf49q7bGpkk\": {\"duration\": 188.04, \"timestamps\": [[0, 18.8], [21.62, 118.46], [130.69, 188.04]], \"sentences\": [\"A bull in a ring starts chasing two men.\", \" Several others run onto the ring, and the bull flips as they grab his horns and tail.\", \" They open the gate, but fail to get the bull back inside as he charges them.\"]}, \"v_V9nOM1VWdnc\": {\"duration\": 126.25, \"timestamps\": [[0, 56.81], [56.81, 68.17], [68.8, 112.36], [112.36, 122.46]], \"sentences\": [\"A person shows and explains a lemon squeezer and shows the part were the lemon goes.\", \" Then, the person points to two jugs on a table.\", \" Next, the person puts ice in a cup, and then squeeze a lemon using the lemon squeezer, add syrup and water from jugs.\", \" Then, the person put a cover on the cup and shake the mix.\"]}, \"v_cxxiokwoVgg\": {\"duration\": 199.41, \"timestamps\": [[1, 17.95], [18.94, 58.83], [59.82, 90.73], [92.73, 104.69], [104.69, 171.5], [172.49, 199.41]], \"sentences\": [\"People in a home get ready to go sled on the street covered with snow.\", \"  Two young men sled on the road pulled by a car.\", \" Splashes of snow falls on the young men who are covered with snow.\", \"  A young man stands from the sled and enters the car and other person takes his place on the sled.\", \" A young men goes down the road sledding while snow splay on them.\", \" A young person snowboards holding a rope attached to a car, at the end he falls.\"]}, \"v_KUorCsuIe2A\": {\"duration\": 196.5, \"timestamps\": [[0, 13.76], [23.58, 37.34], [39.3, 62.88], [64.85, 168.99], [77.62, 79.58], [112.01, 168.01], [161.13, 165.06], [168.99, 186.68], [190.61, 196.5]], \"sentences\": [\"We see a boy in a cap in a room laughing and sitting.\", \" We see the boy backstage talking to two men.\", \" The boy walks on the stage and talks to the judges.\", \" The boy performs a break dance.\", \" A judges mouth hangs open.\", \" The boy finises dancing and the judges give their feedback.\", \" The crowd lifts their arms in the air.\", \" The boy walks off stage and is interviewed.\", \" The boy walks away from the men.\"]}, \"v_N3xWCui6fNY\": {\"duration\": 50.16, \"timestamps\": [[0, 50.16], [29.09, 30.34], [40.38, 50.16]], \"sentences\": [\"A young girl plays an accordian.\", \"  The girl turns her head to the right.\", \"  The girl's playing slows.\"]}, \"v_XFySa1Gc-yM\": {\"duration\": 79.13, \"timestamps\": [[0, 37.98], [37.98, 79.13]], \"sentences\": [\"A woman is seen curling her hair while speaking to the camera and leads into her speaking in front of judges.\", \" The judges critique her and she runs away happy and skipping out of the building.\"]}, \"v_SjwFCog0amE\": {\"duration\": 54.57, \"timestamps\": [[0, 7.09], [8.19, 23.74], [28.1, 54.57]], \"sentences\": [\"Two men are sitting, with their shoes in view.\", \" A man picks up a shoe and puts it on his foot.\", \" He then applies the other shoe, then ties the laces.\"]}, \"v_3tRTl23mhVQ\": {\"duration\": 67.18, \"timestamps\": [[0, 7.05], [7.05, 67.18], [7.05, 22.5]], \"sentences\": [\"man is chewing gum sitting on the grades.\", \" man is standing on ractrack holding a large pole and running to do a javelin throw.\", \" people is going down the stairs.\"]}, \"v_UrPn5-8yNgA\": {\"duration\": 191.15, \"timestamps\": [[0, 191.15], [5.73, 21.03], [178.72, 191.15]], \"sentences\": [\"A person is shaving their legs.\", \" A polished hand gestures at the person shaving.\", \" The person lows their head to see under their leg.\"]}, \"v_lidR3AK0ZzQ\": {\"duration\": 17.79, \"timestamps\": [[0, 11.92], [11.29, 17.79]], \"sentences\": [\"A woman is seen bending down in front of a large set of weights and begins lifting it to her shoulders.\", \" She then bends down and puts the weights back down to her feet.\"]}, \"v_sVeC5VlDsjk\": {\"duration\": 174.24, \"timestamps\": [[0.87, 44.43], [33.11, 125.45], [83.64, 166.4]], \"sentences\": [\"Several pictures are shown of a beach and landscapes as well as people walking on the beach.\", \" Several clips are then shown of people riding along the water and surfing the waves.\", \" More shots are shown of people surfing in the water.\"]}, \"v_s2cXljpR-xk\": {\"duration\": 173.99, \"timestamps\": [[0, 40.02], [40.89, 140.06], [140.06, 173.99]], \"sentences\": [\"A man is seen speaking to a woman outside that leads into a game of rock paper scissors.\", \" The girls slaps the man and he continues to play the game with several other girls on the street in various locations.\", \" When the man wins the girls kiss him on the cheek.\"]}, \"v_jjuitTS2cuM\": {\"duration\": 36.06, \"timestamps\": [[0, 6.13], [6.31, 11.36], [11.18, 22], [22, 36.06]], \"sentences\": [\"A little toddler is walking down the street holding her dog leash.\", \" The dog is walking ahead of her not pulling her, he is very gentle.\", \" The dog stops to sniff around and then begins walking again.\", \" The little girl trying to follow closely behind him.\"]}, \"v_M-bUoaIqtDk\": {\"duration\": 29.7, \"timestamps\": [[0, 29.7], [8.91, 14.55], [15.44, 29.7]], \"sentences\": [\"We see a person kitesufing in the sea.\", \" The person passes us and turns around.\", \" The person stops before taking off again.\"]}, \"v_YKLZAgdkFrk\": {\"duration\": 13.56, \"timestamps\": [[0, 0.2], [0.61, 6.71], [6.51, 13.56]], \"sentences\": [\"A girl is seen speaking to the camera on the floor.\", \" Another woman is seen sitting on a swingset looking to the camera.\", \" The woman swings back and fourth while looking down at her hand.\"]}, \"v_PKLLNgcEuRI\": {\"duration\": 8.73, \"timestamps\": [[0.04, 8.21], [8.16, 8.21], [7.42, 8.21]], \"sentences\": [\"This man is wearing a blue t-shirt and white shorts and he is doing his gymnastic routine.\", \" Then he gets off and walks away to go somewhere else.\", \" There is also another man there with him who's walking around and he's wearing a green shirt.\"]}, \"v_Q684UQhx7yI\": {\"duration\": 29.1, \"timestamps\": [[0, 12.51], [12.37, 15.27], [15.27, 20.51], [20.22, 29.1]], \"sentences\": [\"A man is sitting on a bull in a gate.\", \" The bull is released and a man on a horse chases after it.\", \" The man jumps off the horse and ties the bull up.\", \" The man stands up and walks back to his horse.\"]}, \"v_pzHDfjY-pFY\": {\"duration\": 204.12, \"timestamps\": [[0, 52.05], [60.21, 166.36], [174.52, 204.12]], \"sentences\": [\"A boy is floating in a raft as his father holds a rope attached to it.\", \" The boat floats away slowly, pulling the child as he stands in his raft.\", \" He is then pulled up toward the two men in the boat.\"]}, \"v_ir1jpnsK5p8\": {\"duration\": 147.01, \"timestamps\": [[0, 5.15], [6.62, 10.29], [11.03, 48.51], [49.25, 55.86], [74.97, 99.96], [100.7, 119.81], [141.13, 147.01]], \"sentences\": [\"The credits of the clip are shown.\", \" Cars move on a road adjacent to a home.\", \" A person is power washing.\", \" The person is soaking up water and debris with a vacuum.\", \" A man is painting the wall, light blue.\", \" The man is painting the wall and floor of a roof, black.\", \" The credits of the video are shown.\"]}, \"v_aqpeiIMe47Q\": {\"duration\": 173.5, \"timestamps\": [[0, 72.87], [72.87, 173.5]], \"sentences\": [\"chiopped vegetables are in a bowls on top of table.\", \" the ingredients are mixed inside a bowl together with oil, pepper and mayonnaise.\"]}, \"v_6RdkwoTi-98\": {\"duration\": 13.05, \"timestamps\": [[0.07, 12.66], [0.26, 1.17], [1.63, 8.61], [8.74, 12.66]], \"sentences\": [\"A man performs a hammer throw in an outdoor area, caged in, surrounded by crowds of people watching.\", \"  A man in a red t-shirt approaches a players circle on the ground inside of an enclosed metal fence area.\", \"  The man spins a ball, attached to a rope, around and around.\", \"  The man lets the ball goes and watches as it lands off screen.\"]}, \"v_BTG82umu8Ug\": {\"duration\": 25.47, \"timestamps\": [[0, 1.78], [1.78, 3.82], [3.82, 6.5], [4.46, 6.5], [6.5, 12.74], [6.5, 11.21], [11.72, 12.74], [12.74, 20.63], [20.63, 25.47]], \"sentences\": [\"A young woman is practicing on a track and field track, sprinting and high jumping over a high bar and landing on her feet while three men in the background are watching her practice.\", \"  The woman jumps again, this time sprinting a little bit faster.\", \"  The woman jumps again with a longer run up.\", \"  Another young woman in the background is jogging by.\", \"  The woman jumps again with an even longer run up and adds a small skip/hop to her initial run.\", \"    A man in the background is jogging on the field while another man stands and stretches his legs.\", \"  The woman doesn't clear the bar perfectly and it falls off of it's poles.\", \"  The woman jumps again with an even longer run up and a more powerful skip/hop to start her run.\", \"  The woman jumps again with the long run up and powerful skip at the beginning.\"]}, \"v_5g70tfGYWDk\": {\"duration\": 71.43, \"timestamps\": [[0, 12.14], [18.21, 46.07], [49.64, 71.43]], \"sentences\": [\"A couple of people are on an indoor tennis court.\", \" They lob the ball back and forth, playing a game of tennis.\", \" They continue playing, trying to win the game.\"]}, \"v_jM0l31xZj8E\": {\"duration\": 72.75, \"timestamps\": [[0, 13.46], [13.46, 69.84], [69.48, 71.66], [71.29, 72.75]], \"sentences\": [\"The screen is full of white bubbles and words, while a pair of hands plays the piano.\", \"  The bubbles and words disappear and it is just the hands moving over the keyboard.\", \"  The hands disappear and it is just the keyboard.\", \"  The screen fades to black.\"]}, \"v__6TamBiyYWA\": {\"duration\": 162.42000000000002, \"timestamps\": [[0, 21.93], [27.61, 37.36], [39.79, 148.62], [152.68, 162.42]], \"sentences\": [\"A man appears before several targets on a back wall.\", \" He talks about the basics of archery.\", \" A woman is shown with an archery set.\", \" She pulls back the arrow, then shoots at her target as he talks.\"]}, \"v_YAjqqbSsFTg\": {\"duration\": 148.1, \"timestamps\": [[0, 19.99], [24.44, 93.3], [104.41, 148.1]], \"sentences\": [\"A bunch of colorful flowers are shown, including their identification tags.\", \" A man shows bees and different breeds, including a tree.\", \" He teaches us how to mulch a tree properly.\"]}, \"v_5wOmHw6Boj8\": {\"duration\": 39.59, \"timestamps\": [[0, 4.55], [4.55, 39.59]], \"sentences\": [\"A clear bottle of detergent is shown and a person begins cleaning a mug with a cloth.\", \"The person shows herself putting on the glove and goes back to washing the mug before finally showing her book on the product.\"]}, \"v_JQf_oSGY8q4\": {\"duration\": 198.34, \"timestamps\": [[0, 37.68], [32.73, 185.44], [38.68, 82.31], [75.37, 143.79], [119, 198.34]], \"sentences\": [\"There's a woman dressed in black playing billiards in front of some spectators.\", \" After she's done another lady takes her turn and hits a few shots.\", \" The second contestant aims and shoots the ball in the hole.\", \" She aims precisely and shoots the balls in the holes one by one, without missing a single shot.\", \" She continues to concentrate and shoots the balls till only one ball is left on the billiards table.\"]}, \"v_oTKYejnHLtE\": {\"duration\": 57.15, \"timestamps\": [[0, 7.43], [7.71, 52], [52.86, 57.15]], \"sentences\": [\"A magazine about saxophones is shown just before a pair of hands are shown playing a saxophone.\", \" Multiple screens begin to appear, showing the hands playing various notes on the screen.\", \" The screen goes backwards until the video ends.\"]}, \"v_QWFedtlPRYM\": {\"duration\": 86.01, \"timestamps\": [[0, 8.17], [8.6, 12.9], [13.33, 23.22], [28.81, 52.03], [54.18, 67.09], [69.24, 77.84], [78.27, 85.58]], \"sentences\": [\"Title screens show up on the video.\", \"  A woman is holding a cloth in a kitchen.\", \"  The woman begins running water in a bath tub and a sink.\", \"  The woman washes a cloth in the sink.\", \"  The woman lays the wet cloth on a dry one and dries it out.\", \"  The woman puts the pair of pants on an ironing board.\", \"  The ending credits appear.\"]}, \"v_oXKrreio9hg\": {\"duration\": 130.45, \"timestamps\": [[0, 54.79], [49.57, 130.45]], \"sentences\": [\"A gymnast is seen standing ready with her arms up that leads into her running down and doing flips down a track into a pit.\", \" She puts her arms up to finish and her jumps are shown several more times in slow motion.\"]}, \"v_P7bvD_CZH5M\": {\"duration\": 233.26, \"timestamps\": [[2.33, 131.79], [93.3, 227.43]], \"sentences\": [\"Several clips are shown of many people standing on a surf board and pushing themselves along the water with a paddle.\", \" The people continue to paddle around the water while many people are seen sitting.\"]}, \"v_cSfs5ht9sro\": {\"duration\": 205.54, \"timestamps\": [[0, 58.58], [44.19, 46.25], [58.58, 65.77], [67.83, 81.19], [65.77, 187.05], [181.91, 191.16], [201.43, 205.54]], \"sentences\": [\"We see a person riding a ski lift.\", \" The person lifts the bar on the chair.\", \" The person hops off the lift and onto the slope.\", \" The person puts on their ski poles.\", \" The person skis swiftly down the ski slope.\", \" The person reaches the bottom of the slope and looks up.\", \" 320 The person's hand comes to the screen to turn off the camera.\"]}, \"v_8xsLp6lqijo\": {\"duration\": 127.25, \"timestamps\": [[0, 53.44], [50.9, 96.71], [96.71, 127.25]], \"sentences\": [\"A man is standing on a skateboard.\", \" He picks up the skateboard and holds it in his hand.\", \" He puts the skateboard back down and continues skateboarding.\"]}, \"v_buBtMl9SUNk\": {\"duration\": 231.41, \"timestamps\": [[4.63, 121.49], [121.49, 173.56], [174.72, 208.27], [209.43, 223.31]], \"sentences\": [\"People dive in the water wearing diving suit, small and big fishes swim near the divers.\", \" The diver kneel on the sea floor waving their hands.\", \" Manta fish and a big fish swim in the water.\", \" The divers stands and continue swimming in the water.\"]}, \"v_UZBHdQZc0ZM\": {\"duration\": 133.26, \"timestamps\": [[0, 6], [6, 27.32], [27.32, 43.98], [43.98, 55.3], [55.3, 63.3], [63.3, 107.27], [107.27, 133.26]], \"sentences\": [\"men are holding snowslides from a deposit.\", \" old woman is sitting on snowslide and its going down a snowy slope.\", \" old woman is in snowslide going down snow track.\", \" a man and a woman are grabing the old lady fom the back in a slide.\", \" different people are going down slope holding snowslides with a rope.\", \" old women are sitting on woodn bench talking to the camera.\", \" old people are sitting and standing in front of a camera posing for a picture.\"]}, \"v_USaP2UCPBEc\": {\"duration\": 146.17000000000002, \"timestamps\": [[0, 5.85], [5.85, 10.96], [10.96, 16.08], [16.08, 49.7], [48.97, 62.12], [62.12, 68.7], [68.7, 86.24], [86.24, 108.9], [109.63, 111.82], [111.82, 146.17]], \"sentences\": [\"Text appears on the screen with a link.\", \" People in uniform march down the street.\", \" It cuts to the crowd looking on.\", \" A marchign band begins to walk down the street.\", \" Another set of uniformed people walk down the street.\", \" They stop and wave to the crowd.\", \" It goes back to the marching band.\", \" A horse and carriage walk down the street followed by the people in uniform.\", \" Two woman wave flags around.\", \" The rest of the people continue to march down the street.\"]}, \"v_lVe-7FnfNz8\": {\"duration\": 17.25, \"timestamps\": [[0, 12.68], [12.59, 14.49], [14.41, 17.25]], \"sentences\": [\"A girl is going across monkey bars on a playground.\", \" She gets to the end and jumps onto the ground.\", \" She puts her hands up in the air.\"]}, \"v_NNQQPZpzCOk\": {\"duration\": 63.11, \"timestamps\": [[0, 63.11], [11.99, 29.03], [29.03, 46.07], [46.07, 63.11]], \"sentences\": [\"Some women are on a boat attempting to figure out how to play shuffleboard.\", \" The girl makes a shuffleboard ahot and the girls all begin to celebrate.\", \" She continues to attempt make shots and act silly.\", \" She puts down the shuffleboard stick and the video ends.\"]}, \"v_jqLFT1c8WS8\": {\"duration\": 187.34, \"timestamps\": [[0, 187.34], [38.4, 41.21], [166.73, 169.54]], \"sentences\": [\"Videos of several men throwing the discus are shown in turn, with the men being watched by audiences and judges, and the throws replayed in slow motion after.\", \" Judges are shown evaluating the distance of the one of the throws.\", \" Judges are once again shown evaluating the distance of one of the throws.\"]}, \"v_bz9R-Xa5xqM\": {\"duration\": 124.76, \"timestamps\": [[0, 6.24], [6.86, 50.53], [51.78, 124.76]], \"sentences\": [\"A man wearing a black shirt stands in a living room with a red and black accordion.\", \" The musician sitting in a chair holding a black accordion and prepares to demonstrate how to play an accordion.\", \" The man then demonstrates playing an accordian using a brown accordion.\"]}, \"v_0jeq5CeP2P0\": {\"duration\": 97.39, \"timestamps\": [[2.43, 88.13], [35.06, 96.41]], \"sentences\": [\"A kite is seen flying around the air with a person riding behind the kite on the sand.\", \" The camera continues to pan around the beach capturing the person flying a kite and him riding around and holding it.\"]}, \"v_kOIj7AgonHM\": {\"duration\": 177.47, \"timestamps\": [[0, 31.94], [28.4, 82.52], [79.86, 130.44], [132.22, 177.47]], \"sentences\": [\"A person with crazy hair appears and leads into her on a space ship with gravity essentially turned off.\", \" She shows off the various items carried on a space craft and puts a lotion into her hair.\", \" She combs the lotion in thoroughly and dries off her head with a towel.\", \" She points to the camera and combs through her hair one last time.\"]}, \"v_E6ePEI4UOtU\": {\"duration\": 105.49000000000001, \"timestamps\": [[1.58, 7.38], [7.91, 20.04], [23.74, 29.54], [33.76, 50.11], [54.33, 74.9], [82.81, 95.99]], \"sentences\": [\"A mop stands upright next to a bucket.\", \" A person absorbs all the water from a bowl using a mop.\", \" Water is poured into a large bucket.\", \" The mop in dunked in the bucket of water then spun dry in the tray.\", \" A soiled area of a hardwood floor is mopped clean.\", \" A mop is used around various furniture and appliances to get into corners of rooms.\"]}, \"v_5DBzvN5Qe_0\": {\"duration\": 210.28, \"timestamps\": [[0, 27.34], [29.44, 104.09], [114.6, 210.28]], \"sentences\": [\"A girl does flips in front of a room full of children.\", \" She uses a hula hoop to go in circles.\", \" She acts silly as she demonstrates how she can use the hula hoop.\"]}, \"v_Ay6oxBYCSnU\": {\"duration\": 39.45, \"timestamps\": [[0, 39.45], [2.17, 39.45], [26.04, 39.45], [37.68, 39.45]], \"sentences\": [\"Several players are on an ice rink.\", \" They are playing hockey against each other.\", \" One team scores a goal.\", \" Everyone cheers about the goal.\"]}, \"v_Mx-rOsiQTos\": {\"duration\": 180.03, \"timestamps\": [[0, 25.2], [30.6, 78.31], [79.21, 83.71], [83.71, 136.82], [137.72, 170.12], [170.12, 180.03]], \"sentences\": [\"We see a man get in riding leaf blower.\", \"  We see the leaves being blown on the ground.\", \" We see a pipe on the machine.\", \" We return to seeing the leaves being blown.\", \" We see leaves blowing in the street.\", \" We see the ending title screen.\"]}, \"v_KYN1NR7l2zQ\": {\"duration\": 110.13, \"timestamps\": [[0, 29.74], [18.17, 110.13]], \"sentences\": [\"This man is shown standing in the water wearing his pool cap and his goggles are on top of his forehead.\", \" He then puts on the goggles on and shows us a couple of swimming techniques in the water and he goes back to talking.\"]}, \"v_m34BYRanODU\": {\"duration\": 114.06, \"timestamps\": [[2.28, 25.09], [25.09, 109.49]], \"sentences\": [\"A woman talks in a backyard wearing loose clothes.\", \" The woman exercise stepping on the mat.\"]}, \"v_2DvHUEFc5VA\": {\"duration\": 191.43, \"timestamps\": [[0, 15.31], [15.31, 23.93], [23.93, 122.51], [122.51, 191.43]], \"sentences\": [\"two men are sitting in front of a counter in a kitchen.\", \" men start mixing a cake.\", \" man is in the kitchen and pour some ingredients inside a cooking pot and mix them while is boiling water and put the pot on top of the boiled water.\", \" man start mixing in a kitchen aid and create a white cream.\"]}, \"v_6Ik0MQ53FBU\": {\"duration\": 80.39, \"timestamps\": [[0, 38.18], [36.58, 80.39]], \"sentences\": [\"A large group of people are seen standing around a beach as well as several shots of cars and people riding bulls.\", \" Various people ride the bulls and sit in the cars as well as end with a game of volleyball and celebrating.\"]}, \"v_O_StqLLpAVI\": {\"duration\": 191.66, \"timestamps\": [[0, 22.04], [16.29, 46], [21.08, 54.62], [78.58, 191.66]], \"sentences\": [\"A bike with a deflated tire goes through the dirt.\", \" A man gets off the bike to look at it.\", \" He removes the tire from the bike.\", \" He replaces the tube of the tire and fixes the bike.\"]}, \"v_Pu85El6jhao\": {\"duration\": 119.89, \"timestamps\": [[0, 14.99], [14.99, 41.36], [41.36, 94.11], [94.71, 119.89]], \"sentences\": [\"A man in a red wet suit is sitting on a float talking casually.\", \" Next to hime are many other people on their own floats, just relaxing.\", \" They are floating through the river passing all the green scenery.\", \" The man in the red wet suit is leading the way.\"]}, \"v_iXaW8uyzBNs\": {\"duration\": 191.84, \"timestamps\": [[0, 14.39], [29.74, 32.61], [41.25, 44.12], [79.62, 147.72], [144.84, 160.19], [162.11, 177.46], [174.58, 191.84]], \"sentences\": [\"A man is riding a bike.\", \" He is talking on a cell phone in a kitchen.\", \" He is then talking on a phone near a garage.\", \" He starts painting a wooden fence.\", \" He sits down and eats food.\", \" He then finished painting the fence.\", \" He jumps in the air to celebrate.\"]}, \"v_c_NlYvL96y0\": {\"duration\": 125.27, \"timestamps\": [[0, 5.64], [5.01, 8.77], [8.77, 15.66], [20.67, 25.68], [26.93, 125.27]], \"sentences\": [\"A girl is stretching her body on a ballet bar.\", \" An instructor stands with a woman and talks about ballet.\", \" The girl dances and pans back to the instructor.\", \" The instructor talks about the tools you will need for ballet.\", \" She talks about various ballet moves to do at the barre while the dancer demonstrates.\"]}, \"v_cwCNZAsvf8U\": {\"duration\": 69.94, \"timestamps\": [[0, 31.47], [31.12, 69.94]], \"sentences\": [\"A females left leg and foot is in a bathtub as the lady shaves her leg.\", \"Once she is done with the front,she turns her legs to the left and right and shaves the sides in an upward motion.\"]}, \"v_8YTuNZ-mIaY\": {\"duration\": 225.35, \"timestamps\": [[0, 31.55], [32.68, 103.66], [103.66, 191.55], [191.55, 225.35]], \"sentences\": [\"A large group of men in uniform are gathered around to play some paintball.\", \" They start to run off and everyone is sneaking around trying to catch and shoot other people without getting caught.\", \" The field they are playing on is pretty cool, it has a lot of different hiding places.\", \" in the end they all take of most of their head gear and start walking back together.\"]}, \"v_G-xh30e4s8E\": {\"duration\": 160.05, \"timestamps\": [[0, 160.04], [17.6, 160.04], [31.21, 160.04], [38.41, 160.04]], \"sentences\": [\"A man sits in a room in front of a flag.\", \" He is playing a black wind instrument.\", \" His fingers position over the holes.\", \" He is wearing sunglasses as he plays.\"]}, \"v_f2LGG2ocbu8\": {\"duration\": 211.56, \"timestamps\": [[0, 59.24], [45.48, 170.3], [177.71, 211.56]], \"sentences\": [\"A large group of people are seen sitting around a pit with one man spinning around and throwing a ball off into the distance.\", \" People around him clap while more stand around and talk as well as watch the balls be thrown.\", \" The people grab the ball from the ground over and over again while occasionally looking over to the camera and panning back to the large crowd.\"]}, \"v_b0QGh__f7lU\": {\"duration\": 137.65, \"timestamps\": [[0, 48.87], [46.8, 137.65]], \"sentences\": [\"An older man is seen laughing to the camera and playing a large set of bongo drums.\", \" He continues playing along faster and faster and finishes by slapping the drum one final time.\"]}, \"v_aRdqcOaBvjk\": {\"duration\": 160.29, \"timestamps\": [[0, 56.9], [52.09, 120.22], [96.17, 156.28]], \"sentences\": [\"A person is seen close up riding on the back of a bike shooting a paint ball off into the distance.\", \" Several shots are shown of people riding around in cars shooting paint balls at one another.\", \" The people continue riding around on machines and jumping over obstacles.\"]}, \"v_LQAFcEvifrU\": {\"duration\": 205.27, \"timestamps\": [[0, 36.95], [29.76, 112.9], [113.92, 205.27]], \"sentences\": [\"A camera pans around the inside of a car looking out showing other cars driving around.\", \" The car begins moving while looking around the sandy area and showing people inside the car.\", \" The camera leads into shots of people riding around on camels and leads into shots of people riding on the camels.\"]}, \"v_mM6F8DppWcQ\": {\"duration\": 166.57999999999998, \"timestamps\": [[0, 19.16], [7.5, 40.81], [31.65, 166.58]], \"sentences\": [\"A  person skateboard down to the ramp, a woman is shown in the phone's screen and then a man.\", \" A boy rollerskate down the white railings as two other men walked up to him to give him high five.\", \" A young man in blue top roller blades in the railing and give high fives to his peers.\"]}, \"v_3w5xIOwFUXU\": {\"duration\": 177.61, \"timestamps\": [[2.66, 79.92], [61.28, 131.43], [116.33, 174.95]], \"sentences\": [\"A small group of people are seen standing around table speaking and laughing to one another.\", \" Two men then drink out of ice containers and lead into more people drinking out of the containers.\", \" One team finishes before the other and everyone celebrates.\"]}, \"v_O1XzCrHZm34\": {\"duration\": 34.05, \"timestamps\": [[0, 34.06], [19.08, 25.21], [25.21, 34.06]], \"sentences\": [\"There are many women in a gym, wearing boxing gloves and athletic gear punching on hanging bags.\", \" The camera pans to show a wall and the words \\\"iLoveKickboxing dot com\\\" is on the wall along with a logo that includes a heart with wings and boxing gloves hanging from the bottom of the right wing.\", \" The room pans back to the rest of the room and continues to show many women still punching the hanging punching bags.\"]}, \"v_RgeVltfPDXQ\": {\"duration\": 203.99, \"timestamps\": [[0, 186.65], [181.55, 198.89], [198.89, 203.99], [0, 7.14], [130.55, 141.77]], \"sentences\": [\"Children swings a broom handle at a pinata in a backyard.\", \" The boy breaks the pinata open and candy spills on the ground.\", \" A woman runs up and adjusts the pinata.\", \" A woman runs up to get the broom stick but dodges to not get hit by the blindfolded child.\", \" The woman guides the boy up who is blindfolded toward the tree.\"]}, \"v_586OlQMU420\": {\"duration\": 184.0, \"timestamps\": [[0, 26.68], [34.04, 116.84], [132.48, 163.76], [165.6, 184]], \"sentences\": [\"A young blonde boy is shown in several still images, including several while skiing.\", \" He is then seen skiing down a large hill from multiple angles and videos.\", \" He lands on top of a small hill, falling over.\", \" We then see an image of him sleeping on a couch.\"]}, \"v_jhiJUgDpwFw\": {\"duration\": 59.79, \"timestamps\": [[0, 24.51], [24.51, 55.31], [55.31, 59.79]], \"sentences\": [\"A young girl is at a park and grabbing and hanging on triangles that are hanging and makes her way going forward and across 7 triangles.\", \" As soon as she reaches the end she goes back 3 triangles without turning around and then turns herself around on the 4th triangle and continues back to where she started .\", \" The young girl jumps down on the platform, smiles and waves.\"]}, \"v_QeIsJBPG8EM\": {\"duration\": 12.54, \"timestamps\": [[2.01, 6.77], [6.77, 10.34], [10.34, 11.91]], \"sentences\": [\"There's a young boy dressed in a black shirt and black shorts in a field playing with a hockey stick.\", \" He is hitting the ball into the goal with his stick.\", \" He swings the stick when another person throws the ball to him and aims it towards the goal.\"]}, \"v_ACki-MP9qdQ\": {\"duration\": 81.32, \"timestamps\": [[5.29, 81.32], [5.29, 37], [41.07, 81.32]], \"sentences\": [\"This woman is showing viewers how she makes a cheesecake shot.\", \" First she puts 3 quarters of an ounce of Baileys and the same amount of pineapple juice.\", \" Then she puts a quarter ounce of another liquid and she gets a 2 ounce shot glass and strains the drink from the ice in the shaker to put it into the glass.\"]}, \"v_l1oh52tqdPo\": {\"duration\": 34.6, \"timestamps\": [[0, 33.39], [2.42, 8.82], [5.71, 21.45], [8.13, 24.74], [7.09, 28.2]], \"sentences\": [\"A small white, medium size Christmas tree is standing in front of two green doors.\", \" A lady is carrying a bag that has a \\\"SNO-BOND FLOCK #1\\\" written on it.\", \" The lady put the sno-bond flock in a strainer and grab a water spray bottle.\", \" She started to sift the white stuff on the tree.\", \" After sifting she spray the dust towards the tree.\"]}, \"v_SHZ9fsusMGc\": {\"duration\": 53.65, \"timestamps\": [[0, 53.65], [6.44, 15.83], [15.56, 25.22], [37.82, 53.65]], \"sentences\": [\"A man is holding a rubiks cube.\", \" He then starts to turn it.\", \" He stops and looks it over.\", \" Eventually he solves it and shows his time.\"]}, \"v_xfNYfCAlkM4\": {\"duration\": 38.62, \"timestamps\": [[0, 14.29], [14.09, 18.73], [18.92, 27.61], [27.8, 38.62]], \"sentences\": [\"A boy shows up on the screen and gets a cup of water and gargles it.\", \" He smiles and walks off the screen for a moment.\", \" He returns and continues gragling and laughing.\", \" A man comes onto the screen and invites people to subscribe to his videos.\"]}, \"v_IWHER8iS1B4\": {\"duration\": 87.77, \"timestamps\": [[0, 11.85], [11.85, 87.77], [0, 87.77]], \"sentences\": [\"woman is talking to the camera.\", \" kids are running in stage and jumping the rope.\", \" kids are siting on court watching the skipping rope competition.\"]}, \"v_yqFdxxWgvh8\": {\"duration\": 92.14, \"timestamps\": [[18.43, 29.02], [18.43, 70.02], [71.87, 77.4]], \"sentences\": [\"A woman puts ice in a glass.\", \" She dumps a bottle into the glass and adds juice.\", \" She stirs the drink and sets it down on the counter.\"]}, \"v_PAhJqXTzCOU\": {\"duration\": 236.22, \"timestamps\": [[0, 220.86], [79.13, 220.86], [120.47, 220.86], [138.19, 220.86]], \"sentences\": [\"A man wearing a green cap sits in a car holding a coffee cup talking.\", \" He sets the camera on his dashboard and continues talking.\", \" He holds the coffee and takes several sips.\", \" He continues talking while holding the cup in his hand.\"]}, \"v_RP_PlV5Jzuc\": {\"duration\": 25.66, \"timestamps\": [[0, 13.47], [13.34, 25.66]], \"sentences\": [\"A close up of a horse is shown tied to a fence when a man walks in with a reef blower and pushing it towards the horses.\", \" He moves all around the animals flowing the air on their fur as the horses move around.\"]}, \"v_hLyHeVmMDGU\": {\"duration\": 232.07999999999998, \"timestamps\": [[4.64, 8.12], [10.44, 95.15], [54.54, 174.06], [182.19, 214.68], [228.6, 232.08]], \"sentences\": [\"A tether rope rises up on a bar.\", \" Athletes prepare for an event getting poles ready and chalking hands.\", \" Athletes pole vault over a high bar in a competition.\", \" Athletes and fans meet after the event talking and signing autographs.\", \" A graphic is seen of event sponsors and website on the screen with black backround.\"]}, \"v_QJKFphS_3UQ\": {\"duration\": 118.31, \"timestamps\": [[0, 68.03], [55.6, 110.62]], \"sentences\": [\"A woman is seen speaking to the camera holding an instrument and leads into her playing the flute.\", \" The camera continues to zoom in on her playing the instrument while she intervenes by speaking to the camera.\"]}, \"v_PgS2F7NxNBg\": {\"duration\": 175.21, \"timestamps\": [[0, 21.02], [21.02, 66.58], [66.58, 122.65], [122.65, 175.21]], \"sentences\": [\"A man is standing outside of a wall with some sort of machine machine and begins talking.\", \"The man takes the hose and pressure washes the fence before caulking it.\", \"He then gets on his knees and adds spray paint to the machine and paints the wall.\", \"Finally,he goes back to the wall with his paint brush and fills in the missing spaces.\"]}, \"v_rYXmAD8u7N8\": {\"duration\": 195.88, \"timestamps\": [[0, 84.23], [88.15, 103.82], [115.57, 177.28], [193.93, 194.9]], \"sentences\": [\"Several people are talking into microphones on the stage.\", \" One of the men starts playing a violin.\", \" He gives the violin to another man who plays it.\", \" The audience starts clapping for them.\"]}, \"v_Y_sVqGm8AyU\": {\"duration\": 194.97, \"timestamps\": [[0, 77.99], [77.99, 167.67], [168.65, 176.45]], \"sentences\": [\"A woman gets her belly button clamped with a white clamp.\", \" She then gets her belly button pierced.\", \" The person removes the clamp and wipes it with a towel.\"]}, \"v_xJ3KAhVRr8c\": {\"duration\": 98.27000000000001, \"timestamps\": [[0, 13.76], [20.64, 76.16], [77.14, 98.27]], \"sentences\": [\"A group of people are inside a gym.\", \" They are using steppers for exercising.\", \" They jumping and climb back and forth over the steppers.\"]}, \"v_gvHcfC9snJA\": {\"duration\": 6.73, \"timestamps\": [[0, 6.73], [0, 4.48], [4.51, 6.73]], \"sentences\": [\"A woman in a white shirt is dancing.\", \" She holds a curling iron in her hair.\", \" She takes the curling iron out of her hair.\"]}, \"v_sV4vBuWGJng\": {\"duration\": 73.21000000000001, \"timestamps\": [[15.74, 34.04], [34.04, 50.52], [50.52, 62.6], [62.6, 66.62]], \"sentences\": [\"The video shows a tutorial from Howcast on how to create volume in a haircut.\", \" A lady hair dresser wearing a green shirt and pants is demonstrating a haircut on a model wearing a black tank top.\", \" She shows how to section the lady's hair and cuts the hair in a slanting manner.\", \" She explains how this technique helps in creating extra volume in the crown of the head.\"]}, \"v_vRf9sof3dwU\": {\"duration\": 63.41, \"timestamps\": [[0.63, 33.93], [27.59, 63.1]], \"sentences\": [\"A woman is seen speaking to the camera in an aggressive manner and leads into her holding up a hula hoop.\", \" The woman attempts to hula hoop several times and succeeds by using it on her neck and bending down to the camera.\"]}, \"v_Mzojo2EeWu8\": {\"duration\": 161.8, \"timestamps\": [[0, 161.8], [122.97, 127.01], [135.91, 140.76], [160.18, 161.8]], \"sentences\": [\"People are playing a game of volleyball in the sand on the beach.\", \" People are playing drums on the beach.\", \" A woman in a yellow outfit is dancing.\", \" The team poses for a picture behind a banner.\"]}, \"v_OFn-c_XvIhU\": {\"duration\": 89.76, \"timestamps\": [[0, 22.44], [22.89, 23.79], [24.23, 65.97], [66.87, 72.26], [74.05, 74.5]], \"sentences\": [\"An suv full of friends drives out of a parking lot and onto a resort.\", \" A young girl who was in the car steps out of the car.\", \" The group of friends scuba dive among fishes in a large pool.\", \" They leave the pool excited and happy.\", \" One of the girls who was on the trip gives the trip a thumbs up.\"]}, \"v_3j4OdbgaoAM\": {\"duration\": 127.7, \"timestamps\": [[0, 39.59], [30.01, 103.44], [88.75, 126.42]], \"sentences\": [\"A man is seen hosting a new segment that leads into a large group of people standing and marching around a field.\", \" People are then seen riding around on horses playing a game with one another.\", \" Players speak to the camera as well as the audience and ends with a team standing all together.\"]}, \"v_k5wjc4OO1XM\": {\"duration\": 65.41, \"timestamps\": [[0, 11.12], [16.68, 59.85], [59.2, 65.41]], \"sentences\": [\"A man pours an egg into a small pan.\", \" He sets the pan onto a stove.\", \" He dumps the food out onto a plate.\"]}, \"v_3osNjmYjTGg\": {\"duration\": 28.38, \"timestamps\": [[0, 28.38], [7.8, 28.09]], \"sentences\": [\"A man pole vaults over a rope on a track of a sporting field.\", \" The man just barely makes his body over the rope.\"]}, \"v_rBGdFwbG118\": {\"duration\": 170.02, \"timestamps\": [[0, 14.45], [15.3, 102.86], [107.11, 170.02]], \"sentences\": [\"A man wearing glasses is talking in a parking lot.\", \" He walks into a car wash, where a green substance is being sprayed on the cars.\", \" The soap is then rinsed away with hoses.\"]}, \"v_E7NTSqMgx44\": {\"duration\": 18.86, \"timestamps\": [[0, 16.22], [7.16, 18.86]], \"sentences\": [\"A large marching band is seen walking down a street with a large group of people standing around and watching.\", \" The people continue marching and the camera ends with a credit scene.\"]}, \"v_uBT9n8wOKP4\": {\"duration\": 43.21, \"timestamps\": [[0.86, 14.48], [10.59, 33.92], [31.55, 42.78]], \"sentences\": [\"A young child is seen wearing ear pieces on his head and blowing around the grass.\", \" He is holding a large machine and is seen pushing it all around the yard.\", \" He pauses for a moment to play with the grass, followed by him working more.\"]}, \"v_FtHP0PNqo2s\": {\"duration\": 190.85, \"timestamps\": [[0, 138.36], [139.32, 168.9], [174.62, 179.39]], \"sentences\": [\"A person is getting their legs waxed on a table.\", \" They rub some lotion onto their legs after.\", \" They show their clean waxed legs.\"]}, \"v_kk1Iqyox4c8\": {\"duration\": 91.67, \"timestamps\": [[0, 17.88], [22.46, 67.38], [76.09, 91.67]], \"sentences\": [\"A man walks up to a microphone while playing the sax.\", \" A group of baseball players wait on the field.\", \" The man continues to play the saxophone for the crowd.\"]}, \"v_kUTDgJmoRE8\": {\"duration\": 77.76, \"timestamps\": [[11.28, 37.72], [37.72, 66.1], [66.1, 72.71]], \"sentences\": [\"There's a young main in a white tank top and beige shorts practicing dancing with a woman wearing a gray shirt and blue shorts.\", \" They are practicing dancing in their living room with a flat screen television hanging on the wall.\", \" They are holding hands as they twirl around and dance.\"]}, \"v_2PBdNJcQcp4\": {\"duration\": 217.85, \"timestamps\": [[0, 208.05], [7.62, 208.05], [50.11, 188.44], [130.71, 140.51], [187.35, 208.05], [208.05, 214.58], [214.58, 217.85]], \"sentences\": [\"Women are dancing on a stage.\", \"  They are swinging their hips from side to side.\", \"  The dance is supposed to be sexy.\", \" They form a line as they dance.\", \" They turn their backs to the audience and dance.\", \"  The lights go down.\", \"  The dance is over.\"]}, \"v_Nh-RdjyfGNA\": {\"duration\": 31.19, \"timestamps\": [[4.05, 7.02], [7.33, 20.89], [16.53, 20.74]], \"sentences\": [\"People stand and talk at a tables.\", \" Teams of players play beach soccer.\", \" A player scores a goal with the soccer ball.\"]}, \"v_56McYSkE4uQ\": {\"duration\": 49.09, \"timestamps\": [[0, 44.91], [3.19, 49.09]], \"sentences\": [\"A person is seen sitting behind a table solving a rubix cube while a timer records her.\", \" Two men are seen standing around her and write things down when the girl eventually finishes.\"]}, \"v_JJ0jtr07EGE\": {\"duration\": 81.36, \"timestamps\": [[0, 30.92], [36.61, 81.36]], \"sentences\": [\"People are sitting and driving in a bunch of bumper cards on a track.\", \" They slam and bump into each other, having fun.\"]}, \"v_r8qq4rU0tPE\": {\"duration\": 180.81, \"timestamps\": [[0, 13.56], [13.56, 46.11], [46.11, 124.76], [124.76, 180.81]], \"sentences\": [\"A large mountain covered in snow with scarce trees is visible.\", \"Someone begins skiing and then a man in an orange snow suit begins talking.\", \"The person continues skiing and then two males appear talking to one another.\", \"The person skiing then goes from the top of the mountain to the bottom and then hides behind a boulder of ice.\"]}, \"v_dTZZq23pYFY\": {\"duration\": 91.93, \"timestamps\": [[0.46, 91.93], [4.14, 28.5], [32.63, 49.18], [57.46, 91.93]], \"sentences\": [\"Two reporters report on a story about drinking too much coffee on a live news telecast.\", \"  A dark haired woman reporter talks on camera before the camera cuts to a blonde haired reporter also talking on camera.\", \"  The camera cuts to video of a coffee cup being filled with coffee while a written template explaining what the story is about appears beneath the cup.\", \"  The camera then cuts to a four person news panel of people talking on camera.\"]}, \"v_9eJgsiS3xH8\": {\"duration\": 105.07, \"timestamps\": [[0, 35.72], [35.72, 105.07]], \"sentences\": [\"sailboat is in open sea with some people standing on it.\", \"men are siting on te sailboat and are driving it and talking to each other.\"]}, \"v_uHPrH22rPgU\": {\"duration\": 12.12, \"timestamps\": [[0, 12.12], [3.88, 12.12]], \"sentences\": [\"A guy is throwing darts across the room.\", \" The speed of the clip is quickened.\"]}, \"v_inbkDgHuRrY\": {\"duration\": 102.46000000000001, \"timestamps\": [[0.51, 46.62], [28.18, 95.8]], \"sentences\": [\"A man is seen speaking to the camera while it pans around the area and he climbs into a machine.\", \" He uses the machine to rip up the roof and ends with a close up of the machine.\"]}, \"v_kFmOtf_Ew1w\": {\"duration\": 228.72, \"timestamps\": [[2.29, 130.37], [89.2, 217.28]], \"sentences\": [\"Several clips are shown of people swimming in the water leading into a woman looking at the camera and still moving around under the water.\", \" The woman continues floating in the water followed by grabbing a boogie board and performing various moves around the water.\"]}, \"v_mi_zRluISrE\": {\"duration\": 164.93, \"timestamps\": [[0, 22.27], [22.27, 55.25], [55.25, 100.61], [100.61, 164.93]], \"sentences\": [\"A construction worker named Dave begins to show you how to grout.\", \" He starts on the wall and begins to explain what he is doing and why he is doing.\", \" Once the grout begins to dry he informs you that you should wipe it down with a sponge various times.\", \" With a finer sponge you go over it again and get it out while wet so it doesn't ruin the tile and all the work you have done.\"]}, \"v_7aydawW3AfE\": {\"duration\": 18.81, \"timestamps\": [[0, 17.59], [2.45, 17.59], [17.87, 18.81]], \"sentences\": [\"A little girl is sitting on a bed with her eyes closed.\", \" A woman kneels down and puts eye liner on the girl.\", \" The girl opens her eye and smiles.\"]}, \"v_tRgK4fFA8sE\": {\"duration\": 161.1, \"timestamps\": [[29.8, 161.1], [7.25, 29], [33.03, 103.1], [119.21, 158.68]], \"sentences\": [\"A person repairs a bike chain and installs the chain on a bike interspersed with an image of a woman talking.\", \"  A woman looks into a camera and smiles while talking before the scene cuts away to a pair of hands working on a bike chain.\", \"  A pair of hands work on a bike chain with tools and bolts.\", \"  The hands install the chain on a blue bike on a dirt ground surface.\"]}, \"v_Z0GbQKiufUE\": {\"duration\": 108.44, \"timestamps\": [[5.96, 30.9], [30.9, 48.8], [48.8, 56.39], [56.93, 83.5], [82.96, 103.02]], \"sentences\": [\"A woman holding towels talks to the camera.\", \" The woman wipes the window behind her with a towel.\", \" The woman sprays a liquid on the window.\", \" The woman resumes wiping the window.\", \" The woman returns to talking to the camera.\"]}, \"v_bPw2rvCjXUE\": {\"duration\": 175.89, \"timestamps\": [[0, 73], [73, 106.41], [108.17, 175.89]], \"sentences\": [\"Two boys perform arm wrestling while people are watching, suddenly the boys free their hands.\", \" After, they continue competing, then the boy wearing purple t-shirt fold the hand of his rival.\", \" After, the continue performing arm wrestling and then free again the hands.\"]}, \"v_XyZoiuga6vw\": {\"duration\": 49.58, \"timestamps\": [[0, 49.58], [6.69, 38.42], [6.69, 47.34], [17.85, 37.68]], \"sentences\": [\"A man in blue stands in an auditorium.\", \" He does gymnastics on some equipment.\", \" People are watching from the stands.\", \" He spins his body about.\"]}, \"v_08afjR_3SwI\": {\"duration\": 61.22, \"timestamps\": [[5.82, 60.91], [0.92, 6.12], [6.43, 42.85], [42.85, 61.22]], \"sentences\": [\"Two people white water raft over a rocky, climactic, body of water in narrow canoes and with paddles.\", \"  A person dressed in a red and black outfit stands in a red canoe and begins to put a piece of black equipment on.\", \"  The person in the red and black outfit begins rafting in the red canoe over a tumultuous body of water filled with large rocks.\", \"  The person in the red canoe approaches another canoe in the water, this one blue, the red canoe and blue canoe raft through the waters behind one another as the scene fades to black.\"]}, \"v_YMbZ7RFRuYI\": {\"duration\": 179.49, \"timestamps\": [[0.9, 103.21], [23.33, 24.23], [104.1, 165.13], [76.28, 85.26], [166.03, 176.8]], \"sentences\": [\"People compete bike-cross on a bumpy road.\", \" A person sprays water on the bumpy road where the bikers pass.\", \" A group of bikers leave the start line to start the motocross competition, while other group start to run bike-cross.\", \" A person wearing white top take pictures to the bikers.\", \" New groups of bikers start to run on the bumpy road to compete bike-cross.\"]}, \"v_S9QG5MAga68\": {\"duration\": 119.7, \"timestamps\": [[0, 5.39], [7.18, 11.37], [17.36, 87.98], [92.17, 119.7]], \"sentences\": [\"An ad for Vidal Sassoon appears.\", \" We then see their curling iron and hot roller set.\", \" A demonstration is shown for how to set and use the hot rollers and iron on a woman's hair.\", \" Her hair is shown in pretty curls all around her head.\"]}, \"v_U-N92yQynQA\": {\"duration\": 39.59, \"timestamps\": [[5.74, 23.56], [23.56, 35.83], [35.83, 39]], \"sentences\": [\"There is a badminton ladies double match taking place in an indoor court.\", \" There are several spectators watching the match as the doubles partners hit the shuttlecock with their rackets.\", \" The crowd cheers on as the match goes on and the players hit with their rackets back and forth.\"]}, \"v_K0e_DdvGP54\": {\"duration\": 25.02, \"timestamps\": [[0, 12.26], [12.76, 18.02], [19.14, 25.02]], \"sentences\": [\"A boy drinks something from a small cup in a bathroom.\", \" The boy runs into the room and jumps on the bed.\", \" The boy swallows the item in his mouth and covers his mouth with his hands.\"]}, \"v_8-WiWyjqAv4\": {\"duration\": 31.02, \"timestamps\": [[0.47, 10.08], [9.31, 21.25], [22.8, 30.71]], \"sentences\": [\"A person is seen sitting along the water in a kayak holding a paddle.\", \" The person then begins moving along the water in the kayak.\", \" The person continues paddling and is then pulled back by a rope and his arms up cheering.\"]}, \"v_BWanQWn1OYQ\": {\"duration\": 138.93, \"timestamps\": [[5.56, 57.65], [47.23, 110.45], [90.3, 125.03]], \"sentences\": [\"A small group of girls are seen walking out onto a lake holding tubes and leads into others riding along in tubes.\", \" The people continue riding along the river on the tubes and the camera pans around the large group.\", \" The walk off shore and speak to one another followed by the tubes hung up and the bus parked.\"]}, \"v_rSGgal9LtDk\": {\"duration\": 212.39, \"timestamps\": [[0, 11.68], [11.68, 45.66], [45.66, 55.22], [55.22, 162.48], [163.54, 212.39]], \"sentences\": [\"A white Breville toaster is sitting on a counter being plugged.\", \"In front of the toaster, a block of white cream and a banana is sitting on a white plate.\", \"Next,two slices of bread are in the toaster going up and down.\", \"Once the bread is finished,it is put on the plate and the spread is put on both slices of the brad then the banana is cut up and put on the bread is put on top of the bananas.\", \"Now,the sandwich is cut is half and the person begins to eating it.\"]}, \"v_F53s94562zc\": {\"duration\": 10.5, \"timestamps\": [[0, 10.5], [0, 0.68], [0.68, 8.19], [8.24, 10.5]], \"sentences\": [\"There are two boys playing rock, paper, scissors.\", \" First they play one game and the boy who's shirtless loses and gets slapped.\", \" Next they play two more games, one person wins and the shirtless boy loses.\", \" Then the boy who's wearing a sweater loses and the other boy slaps him.\"]}, \"v_gUFRtx51OJc\": {\"duration\": 65.13, \"timestamps\": [[0.33, 20.84], [17.91, 46.24], [43.64, 61.22]], \"sentences\": [\"A woman is seen sitting in a doctor's office with a doctor speaking to her and the camera.\", \" The doctor then holds an object up to the girl's lip.\", \" Finally the man pierces the girls lip and smiles down to her.\"]}, \"v_1dFLeGRT0NQ\": {\"duration\": 151.8, \"timestamps\": [[0, 13.66], [15.94, 78.94], [81.97, 134.34], [136.62, 151.8]], \"sentences\": [\"A boy stands at a podium, talking into a microphone.\", \" A group of girls are on stage together.\", \" They start dancing while using hula hoops.\", \" When they finish, one girl gathers the hoops and the crowd claps as the curtain closes.\"]}, \"v_MHAS5TK2eW0\": {\"duration\": 70.8, \"timestamps\": [[0, 17.35], [18.05, 70.8]], \"sentences\": [\"A group of people are exercizing in an aerobics class.\", \" They are using a stepper, dancing and jumping on and off the equipment.\"]}, \"v_AhsujXLZYWA\": {\"duration\": 62.0, \"timestamps\": [[0, 31.62], [22.94, 58.9]], \"sentences\": [\"A woman is seen sitting down on the floor while holding a cat and cutting it's claws.\", \" The woman continues to hold the cat cutting his claws and then gets up and runs away in the end.\"]}, \"v_9Nj9WdaSQCs\": {\"duration\": 83.31, \"timestamps\": [[0, 2.92], [3.33, 5.83], [6.25, 59.99], [60.4, 83.31]], \"sentences\": [\"The words \\\"Women's Artistic Gymnastics (WAG)\\\" appear on a red screen.\", \" \\\"Code of Points 2013-2016\\\" appear briefly.\", \" Clips of Chellsie Memmel performing gymnastics olympic trials are shown.\", \" Various stats from her performance are shown on screen.\"]}, \"v_E0dqgXVU6wA\": {\"duration\": 200.67000000000002, \"timestamps\": [[14.05, 187.62], [19.06, 24.08], [19.06, 193.64]], \"sentences\": [\"This woman is doing a nail tutorial of how to create nyan cat nails.\", \" First paint all of your nails blue and do a big white stripe across them and dot little stars.\", \" Then use a tiny paintbrush to put rainbow colors and then use a plastic sandwich bag to make nyan cat and she pushes it onto her nail.\"]}, \"v_b8ftOk8tKxg\": {\"duration\": 110.17, \"timestamps\": [[0, 2.2], [24.79, 64.45], [73.81, 110.17]], \"sentences\": [\"A lady discusses and folds a towel.\", \" The lady washes her face with a powder from a box.\", \" The lady rinses her face and use a towel to dry up.\"]}, \"v_9nE6C-efQdc\": {\"duration\": 142.01, \"timestamps\": [[0, 15.62], [15.62, 30.53], [30.53, 117.87], [117.87, 142.01]], \"sentences\": [\"A woman trying to instruct big bang theory's way of playing rock paper scissors lizard spock.\", \" It shows a quick clip of Sheldon from big bang theory actually doing it.\", \" Then, she tries to demonstrate it a few times for the viewers.\", \" At the end she smiles and ends it with another big bang theory picture.\"]}, \"v_5n7NCViB5TU\": {\"duration\": 121.44, \"timestamps\": [[1.21, 20.64], [22.47, 28.54], [30.36, 121.44]], \"sentences\": [\"The credits of the clip are shown.\", \" A man swings a metal object from hand to hand.\", \" The man spins and releases an object behind him, and the credits of the video are shown.\"]}, \"v_d4prmED8v-w\": {\"duration\": 105.42, \"timestamps\": [[0, 6.33], [16.87, 41.11], [42.69, 94.35]], \"sentences\": [\"A pole vaulter runs up and launches himself over the bar.\", \" The vaulter introduces his challenge to the camera, which is to make it over ten times in a row in 20 minutes.\", \" He launches himself over 10 times successfully and easily gets under the 20 minute limit.\"]}, \"v_uegTBtD59R0\": {\"duration\": 204.68, \"timestamps\": [[2.05, 63.45], [48.1, 147.37], [127.93, 195.47]], \"sentences\": [\"A person is seen looking to the camera in several shots as well as a close up of a dirt bike.\", \" People are then shown in several shots riding around a track and performing tricks.\", \" The men ride around wooded areas as well as tracks in many shots.\"]}, \"v_uiCkFmebAZs\": {\"duration\": 235.73, \"timestamps\": [[0, 15.32], [15.32, 228.66], [228.66, 235.73]], \"sentences\": [\"There are many different people in the pool swimming and the words \\\"speedo How to guide series How to 'breathe' during your open water swim\\\" appear on the screen.\", \"A young lady in a bathing suit and a shower cap is sitting at the side of the pool talking while clips of her swimming are shown, and her name is Keri-anne Payne and is the 10km Open Water Silver Olympic Medalist.\", \"The outro appears and it's a black screen with a speedo logo and the word speedo.\"]}, \"v_5kdiJ2cC5_w\": {\"duration\": 221.8, \"timestamps\": [[0, 7.76], [8.87, 190.75], [191.86, 221.8]], \"sentences\": [\"A woman stands holding a violin against herself.\", \" The woman plays the violin.\", \" The woman stops playing the violin.\"]}, \"v_aOrDnKEJAwQ\": {\"duration\": 144.99, \"timestamps\": [[0, 8.7], [9.42, 51.47], [51.47, 80.47], [81.19, 115.26], [115.99, 144.99]], \"sentences\": [\"An \\\"eesa\\\" logo is shown on screen.\", \" Two men wearing scuba diving gear in an indoor pool talk to the camera.\", \" The camera follows one of the men underwater where numerous manmade obstacles are present.\", \" Other men dressed like astronauts are underwater with them.\", \" The scuba divers wave goodbye and credits roll.\"]}, \"v_PmyAt4zuLRY\": {\"duration\": 15.54, \"timestamps\": [[0, 15.46], [0, 15.54], [0.47, 15.54]], \"sentences\": [\"a woman wearing butterflies wings costume playing beerpong.\", \" a woman is wearing a catty costume is standing behind the table.\", \" woman is sitting in front of the table and dance when the woman fails the ball.\"]}, \"v_sYAAXumvtck\": {\"duration\": 112.47999999999999, \"timestamps\": [[0, 7.87], [8.44, 21.93], [25.31, 42.74], [42.74, 56.8], [55.11, 62.43], [62.99, 67.49], [68.05, 78.17], [78.17, 80.42], [80.98, 91.11], [78.73, 80.42], [98.42, 107.42], [107.98, 112.48]], \"sentences\": [\"Several bottles and nail tools sit on a table.\", \" A woman is filing her nails on the table with a white bar.\", \" She then paints her nails clear.\", \" She then places her finger nails into a white box that is lit up.\", \" The light turns off and she takes her hand out and lays it on the table.\", \" A nail polish bottle is shown on the screen.\", \" She paints her nails with that polish.\", \" She puts her hand back in the lit up box on the table.\", \" She does another coat of the nail polish.\", \" She puts her hand back in the lit up box.\", \" A bottle is shown on the table.\", \" She lays her hands flat on the table.\"]}, \"v_F8pv5rFrEm4\": {\"duration\": 101.31, \"timestamps\": [[0, 2.03], [2.03, 88.14], [6.08, 8.61], [32.42, 36.98], [85.1, 91.18], [92.7, 101.31]], \"sentences\": [\"We see gymnasts in a gym on each other shoulders.\", \" They then begin an aerobic dance.\", \" The people walk to their steps and step on them.\", \" The people moves the steps to the center of the room.\", \" A lady does a split on the floor and they finish.\", \" The ending title appears on the screen.\"]}, \"v_EHXpUlacN88\": {\"duration\": 6.67, \"timestamps\": [[0, 1.07], [1.17, 4.43], [4.4, 6.67]], \"sentences\": [\"A man is seen standing with one man in a bedroom.\", \" He bends down and begins picking up the other man.\", \" He finally throws the man down onto the bed.\"]}, \"v_MNSzt39_UbE\": {\"duration\": 82.24, \"timestamps\": [[0, 77.3], [72.37, 74.01], [77.71, 82.24]], \"sentences\": [\"Two groups of boys compete tug of war rope, while a man supervise the game and other people watch.\", \" A person takes a picture.\", \" The team on the left wins the competition.\"]}, \"v_w_wIOJrztdU\": {\"duration\": 140.06, \"timestamps\": [[3.5, 65.83], [59.53, 140.06]], \"sentences\": [\"The video leads into several shots of people standing on a beach as well as playing in the sand.\", \" Several more pictures are shown of people moving along the beach as well as helping others and shots of the scenery.\"]}, \"v_P79nFNUaysw\": {\"duration\": 73.82, \"timestamps\": [[0, 31.37], [30.26, 73.82]], \"sentences\": [\"A man is seen speaking to the camera and leads into shots of water boiling in a pot.\", \" He takes a bite of the of the pasta and ends with him still smiling to the camera.\"]}, \"v_WwwfCw1dYlg\": {\"duration\": 142.89, \"timestamps\": [[0, 102.16], [108.59, 142.89]], \"sentences\": [\"A man is talking inside a pool gym.\", \" A view is shown under the water, then it cuts back to him talking.\"]}, \"v_pElJ7U46XnQ\": {\"duration\": 43.58, \"timestamps\": [[0, 5.23], [7.85, 24.62], [31.6, 43.58], [41.19, 43.58]], \"sentences\": [\"A guy gets ready to lift weight.\", \" The guy lifts the weight.\", \" The guy dance around and then leaves the stage.\", \" A man carries a box into the stage.\"]}, \"v_rxEQaswh_Uo\": {\"duration\": 59.65, \"timestamps\": [[0, 2.09], [2.09, 8.95], [8.95, 17.9], [17.9, 29.83], [29.83, 32.81], [32.81, 44.74], [44.74, 53.09], [53.09, 59.65]], \"sentences\": [\"A boy is smiling up at the man whose shoe he is shining.\", \" The man is looking down at the boy.\", \" The boy is shining the mans shoes.\", \" The boy is talking to passerbys and pointing.\", \" A small kid walks away from the wall.\", \" The boy is wiping the mans shoes with a towel.\", \" He has started to rub with block.\", \" The boy gives a peace sign and grins.\"]}, \"v_MJpfymVwtGc\": {\"duration\": 133.96, \"timestamps\": [[0, 58.94], [34.83, 129.94]], \"sentences\": [\"A lady is lying down on a black bed, a woman in black sweater and wearing black gloves is rubbing a white cotton on the lady's belly button.\", \" Then the woman draw a dot on the belly button, piercing the navel with a thong, then the woman inserted  a metal stick, then cleaned the pierce, then the woman inserted the belly button accessory, and tighten it then cleaned up the piercing.\"]}, \"v_mTtBz5d83C4\": {\"duration\": 21.34, \"timestamps\": [[2.03, 17.18], [17.18, 20.59], [20.59, 21.34]], \"sentences\": [\"There are several people sledding down a snowy slope in round snow tubes.\", \" They are going down the steep snowy slope at high speed.\", \" One of the people going down the slope raises his hand to his friend as he goes downhill.\"]}, \"v_g_65rfEiXPY\": {\"duration\": 156.18, \"timestamps\": [[0, 31.24], [32.02, 106.98], [106.98, 156.18]], \"sentences\": [\"A man cleans a large window using a long handle squeegee.\", \" Then, the man uses a long steel wiper to clean the window from right to left.\", \" After, the man takes a cloth and cleans the lower part of the window, then he continues cleaning the with a squeegee and a steel wipe.\"]}, \"v_tA7cF5wA6ZU\": {\"duration\": 76.19, \"timestamps\": [[0, 75.04], [0, 43.04], [53.33, 60.57], [70.85, 76.19]], \"sentences\": [\"A bald man is leading an orchestra.\", \"Several female singers are singing while a choir of younger people sing backup.\", \"A young drummer and a man  playing the piano are near each other as the young boy looks around.\", \"As the singers and musicians finish the song,the conductor waves his wand to  end the music.\"]}, \"v_NVtRGWuiEP4\": {\"duration\": 153.74, \"timestamps\": [[0, 74.56], [16.14, 29.21], [42.28, 149.9], [73.03, 93.01], [144.52, 151.43], [149.13, 153.74]], \"sentences\": [\"We see girls in a red costume gym performing a baton routine.\", \" Three girls walk past in the background.\", \" The girls next to them in pink perform their routine.\", \" The girls in the red uniforms finish and walk away.\", \" A team of girls in black and neon walk past behind the girls.\", \" The girls in pink finish their routine.\"]}, \"v_KylUHdDXuCg\": {\"duration\": 104.4, \"timestamps\": [[0, 33.41], [32.36, 102.31]], \"sentences\": [\"An intro leads into several clips of people attempting to fight bulls from many generations.\", \" Several clips are shown of people interacting with the bulls as well as running around and people watching.\"]}, \"v_eqm20MDaeRQ\": {\"duration\": 13.49, \"timestamps\": [[0.13, 3.58], [2.9, 4.05], [4.05, 13.49]], \"sentences\": [\"A woman is seen kneeling over a bucket on an old tv show.\", \" She is seen washing clothes in the bucket while looking off into the distance.\", \" She sighs to herself in exhaustion and continues washing the clothes when a shot of a washing machine is shown.\"]}, \"v_KuyaO3brwBc\": {\"duration\": 181.07, \"timestamps\": [[0, 181.07], [37.12, 127.65], [138.52, 181.07]], \"sentences\": [\"A man stands behind a shoe counter and describes how to clean them.\", \"  The man talks about the three step program and answers frequently asked questions.\", \"  The man scrubs to shine the shoe and adds some polish then sprays them.\"]}, \"v_AbzyaqyFI0Y\": {\"duration\": 34.53, \"timestamps\": [[0, 18.47], [17.61, 34.53]], \"sentences\": [\"A person is seen riding a kayak along a rough river and spinning himself around.\", \" More shots of him riding around shown and he continues to flip in the water.\"]}, \"v_Hi4YiQO47EM\": {\"duration\": 79.16, \"timestamps\": [[0, 76.78], [60.95, 63.72], [70.85, 77.97], [78.37, 79.16]], \"sentences\": [\"A group of people are talking next to a table with red solo cups and beer cans.\", \" A woman puts a red solo cup under a man's nose.\", \" A man tosses a ping pong ball into a red solo cup.\", \" The floor is shown along with a person's foot.\"]}, \"v_2mOQx0l1158\": {\"duration\": 182.39, \"timestamps\": [[23.71, 104.88], [128.59, 182.39]], \"sentences\": [\"A closeup of a bike is shown followed by a person unscrewing the handles on the bike and adjusting the sides.\", \"  The person then screwed it a light in front of the handlebars and holds them in place.\"]}, \"v_5-SbGVTPM1c\": {\"duration\": 179.75, \"timestamps\": [[0, 179.75], [17.97, 19.77], [17.97, 179.75]], \"sentences\": [\"Men run down a track and leap backwards over a bar.\", \" A man waves a white flag once the land.\", \" An audience is watching them jump.\"]}, \"v_TrtuuE1K8pk\": {\"duration\": 69.17, \"timestamps\": [[0, 57.07], [57.76, 69.17]], \"sentences\": [\"A man put paint on the wall with a hose, while a person uses a flat mop to spread the paint.\", \" Then, the man puts paint around the window.\"]}, \"v_pYUqRy9Ujaw\": {\"duration\": 71.21000000000001, \"timestamps\": [[0, 71.21], [0, 60.17], [47.71, 60.17]], \"sentences\": [\"man is wearing a back wetsuit doing windsurf in a lake.\", \" man is windsurfing in a lake doing tricks.\", \" he man windsurfing say hi to the camera.\"]}, \"v_FiJi18WpPe8\": {\"duration\": 30.0, \"timestamps\": [[0.15, 30], [0.15, 5.7], [5.85, 11.1], [14.7, 30]], \"sentences\": [\"A girl in a blue and plaid school uniform stands in a school bathroom brushing her teeth and primping in the mirror.\", \"  The girl begins facing the camera and brushing her teeth, leaning in to the camera at one point before leaning back to continue brushing teeth.\", \"  The girl then turns towards the bathroom mirror and spits into the bathroom sink, then returns to brushing teeth and facing the camera again.\", \"  The girl then moves to another sink that is further back in the bathroom, plays with her hair, primps in the mirror, all while another girl in a school uniform enters the bathroom and walks into a bathroom stall.\"]}, \"v_WzSZJ-yJX48\": {\"duration\": 78.28999999999999, \"timestamps\": [[0, 6.26], [6.65, 52.06], [53.63, 61.46], [62.63, 68.11], [68.5, 72.42], [77.51, 78.29]], \"sentences\": [\"Two men talk heatedly until a man comes and separates them.\", \" Number 99 leaves then goes back to finish talking.\", \" Number 69 walks across the field.\", \" We see number 69 hit the ball.\", \" he then argues with the catcher.\", \" A pitcher begins to pitch.\"]}, \"v_-fBTCykx4gM\": {\"duration\": 103.56, \"timestamps\": [[9.32, 15.53], [15.53, 60.07], [60.58, 102.01]], \"sentences\": [\"A little boy walk toward the sink.\", \" The boy stands on front the sink and puts toothpaste on the brush,  and then brush the teeth.\", \" Then, the boy rinse his mouth and then show teeth and dry mouth.\"]}, \"v_3Hgwyprv8u4\": {\"duration\": 67.34, \"timestamps\": [[0, 16.5], [14.81, 49.49], [44.44, 65.65]], \"sentences\": [\"A camera pans all around a vacuum close up and shows a person's feet.\", \" The person walks around with the vacuum and pushes it along a rug.\", \" More shots are shown of the person using the attachments on the camera as well as showing how it's made.\"]}, \"v_avBlEff5U5U\": {\"duration\": 58.61, \"timestamps\": [[0, 27.84], [27.84, 58.61]], \"sentences\": [\"A man is in his front yard going back and forth mowing his lawn.\", \" The video then shows him mowing the lawn in a different location than the first location.\"]}, \"v_h-lKlgls9OI\": {\"duration\": 49.83, \"timestamps\": [[0, 4.73], [4.73, 29.9], [29.4, 49.83]], \"sentences\": [\"A recreation building is pictured and kids doing various activities  ranging from basketball to swimming is shown.\", \"A set of young boys are picture din the water on their backs holding up a green ball and one throws it into the goal.\", \"The outside of the building is shown again and a flash of a car parked outside in the parking lot appears.\"]}, \"v_yFOZHa2pn1g\": {\"duration\": 178.38, \"timestamps\": [[0, 47.27], [52.62, 82.94], [84.73, 177.48]], \"sentences\": [\"A guy is putting a cloth shackles on a lady's ankles.\", \" The guy positions the lady at the edge.\", \" The lady bungee jumps when the guy removes his hand.\"]}, \"v_sO7ZGxFwbm8\": {\"duration\": 233.82999999999998, \"timestamps\": [[0, 99.38], [66.64, 233.83]], \"sentences\": [\"The video leads into several shots of javelin athletes throwing poles down a large track.\", \" Many people are shown running down the track throwing the javelin and watching where their pole lands.\"]}, \"v_ZLJJ5LxfE6o\": {\"duration\": 213.86, \"timestamps\": [[25.66, 213.86], [58.81, 75.92], [180.71, 182.85]], \"sentences\": [\"Men are doing karate moves in a gym.\", \" People are playing instruments next to them.\", \" A man in a white shirt is playing the drums in front of him.\"]}, \"v_jqKK2KH6l4Q\": {\"duration\": 122.7, \"timestamps\": [[0, 25.77], [25.15, 38.65], [38.04, 63.19], [63.19, 85.27], [85.27, 122.7]], \"sentences\": [\"AN intro screen showing a man perform Brazilian martial arts appears on the screen.\", \" It then shows a man doing the same martial arts in slow motion on some grass in what looks like a park.\", \" The man spins and kicks continuously and is highly skilled.\", \" The video then shows another man indoors giving a thumbs up, before jumping to two other men performing on a stage.\", \" A bunch of other men are performing martial arts inside of a gymnasium and classroom, while another man speaks to the camera.\"]}, \"v_gxuere-ofCU\": {\"duration\": 136.19, \"timestamps\": [[0, 43.58], [42.22, 105.54], [87.84, 131.42]], \"sentences\": [\"A man is seen sitting in front of a camera holding a harmonica in his hands.\", \" The man then begins playing several songs while pausing in between.\", \" He continues playing the instrument while looking off into the distance.\"]}, \"v_CN0F45eLq1s\": {\"duration\": 136.45, \"timestamps\": [[0, 4.78], [10.92, 12.96], [12.96, 23.88], [24.56, 34.8], [34.11, 38.21], [38.21, 53.22], [53.9, 57.31], [57.99, 58.68], [64.82, 73], [73.69, 81.19], [79.14, 81.87], [94.15, 136.45]], \"sentences\": [\"A picture of a person jumping off of a boat into the water.\", \" A boat is in the water.\", \" A sail boat is in the water with people on it.\", \" People are sitting on the boat talking.\", \" A woman in a white bikini stands at the bow of the boat and a man stands behind her.\", \" People are sitting at the bow of the boat.\", \" A woman lies on her back wearing a bikini on the boat.\", \" People are walking in the sand in front of the camera.\", \" A view of the water and beach is shown.\", \" People are walking on the sand of the beach.\", \" A group of people are posing for a picture.\", \" People are taking pictures on the boat.\"]}, \"v_8twDb4CdhE0\": {\"duration\": 35.99, \"timestamps\": [[0, 7.56], [7.2, 35.99]], \"sentences\": [\"A close up of a woman is shown speaking to the camera holding an ice cream in front of her face.\", \" She takes multiple bites of the ice cream while the camera pans around her body and several other people surround her.\"]}, \"v_bscUMcCmyYw\": {\"duration\": 14.4, \"timestamps\": [[1.15, 14.4], [1.8, 14.4], [3.38, 14.4], [4.46, 14.4]], \"sentences\": [\"A girls hops across the pavement.\", \" A younger girl watches her.\", \" A mans arm is in the foreground.\", \" There is also a wooden deck.\"]}, \"v_4L0AI0f-cMs\": {\"duration\": 232.75, \"timestamps\": [[0, 24.44], [30.26, 67.5], [72.15, 118.7], [151.29, 232.75]], \"sentences\": [\"White text says the video is about how to make a belly cake.\", \" Two pieces of wrapped chocolate cake are shown as a hand adjusts and touches them.\", \" Instructions appear at the bottom of the screen before fondant baby parts are shown being placed after the cake is frosted.\", \" The cake is complete as a woman's stomach with a baby foot protruding from her dress.\"]}, \"v_ADy-2Y0jmXQ\": {\"duration\": 233.62, \"timestamps\": [[7.01, 99.29], [70.08, 174.04], [148.35, 219.6]], \"sentences\": [\"A woman is seen hosting a news segment that leads into several clips of people measuring themselves and speaking to the camera.\", \" Many shots are shown of people drinking coffee while holding up larger pants and showing off the weight they had lost.\", \" More people are seen speaking to the camera while more products are shown as well as food being presented and a woman showing off her closet.\"]}, \"v_61iCOJ3Meus\": {\"duration\": 7.15, \"timestamps\": [[0, 4.83], [4.97, 7.15]], \"sentences\": [\"A boy in a white tshirt picks up his brother over head and body slams him onto the bed.\", \" The brother in army colored shirt gets up from bed.\"]}, \"v_YNVK-pb7fWM\": {\"duration\": 53.76, \"timestamps\": [[0, 14.78], [16.13, 40.05], [38.7, 52.14]], \"sentences\": [\"Two women are seen sitting in a park with one behind the other.\", \" One girl begins braiding the hair of another while sitting behind.\", \" The girl finishes the hair while the other looks back to the camera.\"]}, \"v_Vq7Mm98I5Qs\": {\"duration\": 229.18, \"timestamps\": [[5.73, 229.18], [43.54, 66.46], [68.75, 217.72]], \"sentences\": [\"A motorbike race is shown on dirt.\", \"  The preparations include scantily clad women.\", \"  Motorbikes are then shown jumping and doing agility things.\"]}, \"v_5FwNVOIGdVs\": {\"duration\": 96.39, \"timestamps\": [[0, 9.64], [4.34, 16.39], [22.17, 96.39], [91.09, 96.39]], \"sentences\": [\"A man gets on a red machine.\", \" He then backs up and begins to blow leaves with it.\", \" The leaves blow all over  the driveway.\", \" Finally the driveway is cleared of the leaves.\"]}, \"v_nD4VObLUOuE\": {\"duration\": 92.02000000000001, \"timestamps\": [[0, 1.84], [1.84, 23.47], [24.85, 43.25], [44.17, 68.56], [69.02, 92.02]], \"sentences\": [\"We see an opening title screen.\", \" We see a man in an orange shirt twirl and spin to throw the hammer over 80km .\", \" Next we see a man in a blue shirt throw 73km.\", \" We see a man in a white shirt throw 75km.\", \" The man in orange goes again and throws 81km.\"]}, \"v_QlQrJ5WsWzo\": {\"duration\": 177.07999999999998, \"timestamps\": [[0, 13.28], [27.45, 156.71], [120.41, 169.11], [160.25, 177.08]], \"sentences\": [\"A man sits on top of a camel.\", \" The camel stands up and a man in front leads it.\", \" A red barn is seen behind them.\", \" The camel sits back down and the man gets off.\"]}, \"v_hcRf6HmOAzo\": {\"duration\": 172.64, \"timestamps\": [[5.18, 61.29], [47.48, 107.9], [96.68, 167.46]], \"sentences\": [\"A woman is seen standing in front of buckets and speaking to the camera.\", \" She pours water into a bucket while dragging it over as well as mixing cleaning into it and beginning to dump clothes.\", \" The woman dips the clothes into the bucket and shows where she hangs them and waving to the camera.\"]}, \"v_GcEutQTeAnA\": {\"duration\": 40.24, \"timestamps\": [[0, 16.9], [17.1, 30.38], [30.78, 34.41]], \"sentences\": [\"A man carefully washes the side of a car with a sponge.\", \" The man stands up and washes the windshield.\", \" He then moves along the back of the car washing the spoiler.\"]}, \"v_fsSCNCY0iQY\": {\"duration\": 63.51, \"timestamps\": [[0, 14.92], [14.92, 17.15], [17.15, 57.79], [17.15, 41.6], [41.6, 51.12], [51.12, 57.79], [57.79, 63.51]], \"sentences\": [\"A standing Asian woman wearing makeup is talking to a bunch of sitting Asian women who have no make up on their faces.\", \" The Asian woman with the make up claps and then hits a clock that has a 10 second timer.\", \" The women with no makeup quickly begin to apply makeup before the time runs out.\", \"Two women quickly apply makeup to their faces, but when they are done they have upset looks on their faces.\", \"The third woman puts make up and fake eyelashes onto a tray in front of her and then slams her face into the tray and rolls it side to side.\", \" When she lifts her head up her makeup is perfect and at the same time she pulls her hair out of a ponytail and shakes her hair free.\", \"The outro video is a purple screen with white words that read \\\"Beautiful and fast\\\" and ends with a white screen that has purple words readings \\\"Windows 8\\\" and the microsoft logo.\"]}, \"v_BbQ39yhaC54\": {\"duration\": 99.91, \"timestamps\": [[0, 6.99], [12.99, 78.93], [80.92, 99.91]], \"sentences\": [\"A man is talking in a racquetball court.\", \" He talks about how to pose and swing the racquet.\", \" He demonstrates by hitting the ball back and forth against the wall.\"]}, \"v_ZkkTMR21XLc\": {\"duration\": 116.08, \"timestamps\": [[0, 16.83], [20.89, 64.42], [66.74, 116.08]], \"sentences\": [\"A man and woman biker are standing outside an event.\", \" They get into a raft and push it into a river.\", \" They ride the rapids, going over falls and paddling as they go.\"]}, \"v_w5lQ5vNAksM\": {\"duration\": 101.66, \"timestamps\": [[0, 96.57], [96.57, 101.66], [0, 101.66]], \"sentences\": [\"man is standing in a room playing the flute.\", \" the man ends to play and laugh and thanks to the public.\", \" man is wearing a blue shirt and is sitting behind the man playing the flute.\"]}, \"v_JouywOCeGHI\": {\"duration\": 206.17000000000002, \"timestamps\": [[0, 30.93], [30.93, 102.05], [103.09, 116.49], [117.52, 176.28], [176.28, 206.17]], \"sentences\": [\"A man talks to a camera from an outdoors scene by a slope.\", \" Several quick cuts are shown explaining the terms behind belaying in the context of climbing.\", \" The man talks to the camera again.\", \" More quick scenes are shown explaining the process behind belaying in the context of climbing.\", \" The man talks to the camera once more.\"]}, \"v_p1_6T9d4ZuY\": {\"duration\": 38.55, \"timestamps\": [[0, 2.89], [4.43, 29.29], [32.19, 38.55]], \"sentences\": [\"The gymnast approaches the bar with a leap.\", \" She grasps the bar and begins to flip herself around the bar before leaping to the next bar and propelling herself up and over it repeatedly.\", \" She launches herself in the air and lands on the mat.\"]}, \"v_4rvACiBclFI\": {\"duration\": 227.96, \"timestamps\": [[0, 218.84], [36.47, 142.48]], \"sentences\": [\"A bunch of cars are driving while tilted on one side.\", \"  The tires are taken off one of the cars.\"]}, \"v_bM5VpCdPOrw\": {\"duration\": 177.03, \"timestamps\": [[5.31, 50.45], [43.37, 137.2], [141.62, 175.26]], \"sentences\": [\"A man is seen speaking to he camera and leads into clip of his truck driving and people riding behind.\", \" A man speaks to the ground with a stick as they wander around a deserted area and showing off various plants and wildlife in the area.\", \" He puts white clothing all over his body and several others and leads into the people riding camels with others leading in front.\"]}, \"v_yuxoNmlNcc8\": {\"duration\": 146.84, \"timestamps\": [[0, 9.54], [16.89, 93.98], [100.59, 146.84]], \"sentences\": [\"A flag is shown waving where it is stuck in the ground.\", \" A group of people are standing outside the building, some eating.\", \" A man shurgs at the camera as a game commences.\"]}, \"v_Q_kqplOxytU\": {\"duration\": 85.98, \"timestamps\": [[0, 5.59], [9.03, 68.79], [70.94, 85.98]], \"sentences\": [\"A small boy is immersed into pool water as he looks around.\", \" He floats and swims with his mother's help.\", \" He blows bubbles, and she removes him from the water.\"]}, \"v_hDf32SV0QN0\": {\"duration\": 86.24, \"timestamps\": [[0, 3.88], [5.61, 65.54], [67.27, 86.24]], \"sentences\": [\" A woman is sitting in front of a camera.\", \" She begins brushing her partially wet hair.\", \" She continues brushing, then stops and stares at the camera.\"]}, \"v_Skz2tom_Ag0\": {\"duration\": 7.08, \"timestamps\": [[0, 2.2], [2.02, 5.49], [4.67, 6.8]], \"sentences\": [\"A man is seen standing on a tennis court on one side of the fence.\", \" Another person is seen standing on the other side and then hit a ball to one another.\", \" The person misses the birdie and walks over towards it.\"]}, \"v_cMoy7UJtlyA\": {\"duration\": 98.66, \"timestamps\": [[0, 11.84], [11.84, 67.09], [29.6, 74], [84.85, 98.66]], \"sentences\": [\"A man stands on a dock wearing a green shirt.\", \" He then rides a boat with a sail.\", \" He steers it through the lake.\", \" He stands on the dock again at the end.\"]}, \"v_W70Urhy8Yl4\": {\"duration\": 185.25, \"timestamps\": [[0, 12.97], [15.75, 50.02], [53.72, 160.24], [162.09, 185.25]], \"sentences\": [\"A couple are standing on a snowy hillside.\", \" A man walks over to a small red flag.\", \" He removes the flag, then pulls a line out of the ground.\", \" He pulls up a giant fish he caught.\"]}, \"v_xIU6DO35R_c\": {\"duration\": 32.46, \"timestamps\": [[0, 13.47], [13.47, 29.86]], \"sentences\": [\"A man scuffs a shoe in the street while another person sits and watches.\", \" She talks to the man and moves her hands to follow his movement.\"]}, \"v_q1e275n6R3c\": {\"duration\": 178.61, \"timestamps\": [[0, 32.15], [32.15, 63.41], [63.41, 138.42], [138.42, 178.61]], \"sentences\": [\"A pregnant lady prepares a pumpkin for decoration and carving.\", \" The lady places wax paper over the pumpkin and pokes holes over the wax paper drawing.\", \" The lady removes the wax paper and proceeds to cut out the the hole tracings of the mouth and eyes that was traced with the punched out holes from the wax paper.\", \" The completed carved pumpkins are displayed.\"]}, \"v_oQ_gE5_0xyc\": {\"duration\": 179.31, \"timestamps\": [[0, 12.55], [13.45, 164.96], [40.34, 43.93], [81.58, 88.76], [144.34, 150.62], [157.79, 167.65], [168.55, 179.31]], \"sentences\": [\"We see a few opening screens.\", \" We see a lady performs a baton routine in a arena.\", \" The lady spins and catches her baton.\", \"  The lady flips forwards and backwards and catches her baton.\", \" The lady spins and catches her baton again.\", \" The lady flips multiple times and catches her baton before posing.\", \" The crowd claps and the lady waves.\"]}, \"v_GUbKGqYKj7U\": {\"duration\": 41.77, \"timestamps\": [[0, 41.77], [0, 5.22], [5.01, 16.29], [16.29, 22.35], [16.29, 41.77]], \"sentences\": [\"There are a lot of people at a park and some are playing while others are just watching.\", \" A man and a woman are standing at the entrance of the playing field and getting ready to play.\", \" When the ball rolls towards them, the man kicks it and runs while other players try and get into motion for the play.\", \"Another man runs towards the home base and dives onto the dirt to touch the base they are protecting and another man is trying to catch the ball to get the man out.\", \" The man attempts to catch the ball, misses it, falls on the ground to catch it, throws it at the head of the man who is already on the base and they all laugh and the team who just scored give one another high fives.\"]}, \"v_GbvZWitR2_g\": {\"duration\": 160.78, \"timestamps\": [[0, 160.78], [14.47, 160.78], [37.78, 160.78], [37.78, 156.76]], \"sentences\": [\"A kite is flying above a beach.\", \" Several people sit on the beach.\", \" The kite soars through the sky.\", \" Several people are in the water.\"]}, \"v_OHOi0ZSuDUg\": {\"duration\": 224.17000000000002, \"timestamps\": [[0, 224.17], [103.12, 105.36]], \"sentences\": [\"An old man plays the ukulele and a boy plays the tam-tams in the street.\", \" A person pass on front the players.\"]}, \"v_5vk8OuKkttU\": {\"duration\": 144.73, \"timestamps\": [[6.51, 126.64], [17.37, 138.22]], \"sentences\": [\"A set of instructions are shown transitioning back and fourth between a man laying down carpet on a set of stairs.\", \" The text continues showing while the man lays out paper all down the stairs.\"]}, \"v_JjRSGzdwtc0\": {\"duration\": 156.48, \"timestamps\": [[0, 30.51], [23.47, 113.45], [91.54, 152.57]], \"sentences\": [\"A woman is seen walking along a field and throwing a jump rope to another.\", \" Several clips are followed by people jump roping in various locations as well as with each other.\", \" The group continue dancing and jumping around public places and ends with a baby holding a rope.\"]}, \"v_zpJ91CkCiyw\": {\"duration\": 135.65, \"timestamps\": [[0, 10.85], [10.85, 26.45], [26.45, 111.91], [46.12, 48.16], [52.9, 57.65], [60.36, 64.43], [62.4, 75.96], [84.1, 135.65]], \"sentences\": [\"We see two men on a city street and the title loads.\", \" A man takes off his hood and talks to the camera.\", \" We see men in roller blades fall then skate down a railing.\", \" A person flashes a light at the camera.\", \" A man falls on the railing.\", \" A person falls at the bottom of the stairs and then the light is flashing again.\", \" We see a man fall down the railing three times.\", \"  We see the men talk and shake hands before seeing the end screen.\"]}, \"v__5VJcnrEgbg\": {\"duration\": 67.32, \"timestamps\": [[0, 2.69], [3.03, 8.75], [13.46, 59.24], [60.92, 67.32]], \"sentences\": [\"A man hits a ball with a tennis racket.\", \" Another man joins him shortly after.\", \" Several different angles are shown as the group of four play before an audience, hitting the ball back and forth quickly.\", \" When they are done, the men walk away, patting each other on the backs.\"]}, \"v_3l7quTy4c2s\": {\"duration\": 174.29, \"timestamps\": [[0, 7.84], [4.36, 7.84], [7.84, 15.69], [19.17, 25.27], [27.89, 30.5], [29.63, 34.86], [35.73, 40.96], [41.83, 52.29], [53.16, 66.23], [67.1, 74.07], [74.94, 79.3], [79.3, 91.5], [91.5, 99.34], [99.34, 107.19], [105.44, 108.93], [108.93, 112.42], [113.29, 116.77], [117.65, 122], [122.87, 127.23], [127.23, 129.85], [129.85, 132.46], [132.46, 137.69], [137.69, 143.79], [144.66, 149.02], [149.02, 155.12], [156.86, 159.47], [160.35, 174.29]], \"sentences\": [\"A cheerleader girl stands in the grass.\", \" A young man wearing baseball hat greats her with a pie tin and jokes with her.\", \" The man pushes a pie tin in the girls face as a joke getting her very messy.\", \" A girl in gymnastics class does tumbling down a red mat with team looking on.\", \" A woman cheerleader boxes with a mascot during a football game.\", \" The mascot engulfs the girl and pulls her into his uniform.\", \" A cheer leading group comes together in a circle holding hands and flip team members when one falls to the ground.\", \" A group of cheerleaders in black to back flips on a track of football field.\", \" A group of girls hoist up[ a teammate to do a human pyramid.\", \" The teammate falls to the ground and lands on top of others.\", \" A man in Hawaiian shirt sets up a trampoline during a basketball competition.\", \" A group of cheerleaders hold up a woman together in front of the trampoline.\", \" The man comes back running and jumps on the trampoline but knocks the girl over while performing his stunt.\", \" A group of cheerleaders in red do somersaults on the field when one falls down.\", \" A cheerleader girl in black does a back hand spring and falls to the ground.\", \" A group of cheerleaders dance together with pom poms.\", \" Another group of cheerleaders in the background lift up teammates when one falls over.\", \" A group of cheerleaders in blue lift up teammates in competition when one falls to the ground.\", \" A girl in white shirt talks to the camera.\", \" the girl does a summersault but falls to the ground.\", \" A girl in green shirt with friends does a high kick on a field but falls to the ground.\", \" A cheerleader falls to the ground while dancing with group.\", \" A cheerleader is lifted up into the hands of team when she falls to the ground.\", \" A group of cheerleaders in yellow lift temmate in a pyramid but drop her.\", \" A group of women jump from a trampoline and do slam dunks during basketball competition.\", \" One girl misses the trampoline and runs into the mat.\", \" Men from the basketball team rush over to check on her.\"]}, \"v_FFCmoQp_xVA\": {\"duration\": 68.11, \"timestamps\": [[0, 3.75], [4.09, 8.17], [10.56, 31.67], [32.35, 50.74], [51.08, 63], [63.34, 68.11]], \"sentences\": [\"A man stands behind a bar talking to the camera.\", \" The man holds a  drink up and puts it down.\", \" The man adds ice to a glass and two shots of  a red liquor then another.\", \" The man puts a strainer on the glass and stirs the glass with a long metal stick.\", \" The man pours it into a martini glass.\", \" The man smiles and holds the drink in the air.\"]}, \"v_PVAHm5MjHdw\": {\"duration\": 172.87, \"timestamps\": [[0, 172.87], [5.19, 155.59], [25.93, 50.13], [44.95, 122.74], [123.6, 165.09], [168.55, 172.87]], \"sentences\": [\"A group of baton twirlers are practices their routine for an upcoming competition.\", \" The news announcer is commenting on the events.\", \" The coach is then interviewed stating what the girls are working on.\", \" Multiple twirlers are interviewed for their point of view on why they are working so hard.\", \" The coach states what she loves about the process and what is most important.\", \" The commentator announces where the competition will be help and states her name.\"]}, \"v__CJaovqcgtM\": {\"duration\": 8.17, \"timestamps\": [[0, 1.19], [1.31, 6.25], [6.17, 8.17]], \"sentences\": [\"A flat screen television is sitting on a stand showing the television show RAW.\", \"On the show,two men are wrestling each over moving on the ground.\", \"The fat man then picks up the skinny guy,drops him,and stands over him.\"]}, \"v_VqeeqABnpQk\": {\"duration\": 98.13, \"timestamps\": [[0, 3.93], [4.42, 10.3], [10.79, 13.74], [14.23, 92.73], [84.88, 86.35]], \"sentences\": [\"A dancer stands up from a chair.\", \" He pushes the chair towards him female dance partner.\", \" She sits on the chair.\", \" He walks towards her, picking her up from the chair and they dance.\", \" People in the audience applaud.\"]}, \"v_lHsPZ49cpG8\": {\"duration\": 103.56, \"timestamps\": [[0, 103.56], [33.66, 46.08], [88.03, 94.76], [100.97, 103.56]], \"sentences\": [\"People are playing a game on a field using horses.\", \"  The camera person rides near the parking lot on the right.\", \"  The camera person rides near the parking lot again.\", \"  The person slows down near the goal.\"]}, \"v_jsqD1NB63hk\": {\"duration\": 74.56, \"timestamps\": [[0, 35.42], [26.84, 73.44]], \"sentences\": [\"A young man is seen wearing goggles and speaking to the camera followed by him jumping into the pool.\", \" The boy gets out and is seen once again jumping into the pool and swimming to the side to present an object.\"]}, \"v_p8h3G0Tblqc\": {\"duration\": 101.91, \"timestamps\": [[0, 12.23], [27.01, 36.69], [38.73, 75.42], [83.06, 101.91]], \"sentences\": [\"A man introduces the basketball concepts of the video to the camera.\", \" The player starts from one side of the court and runs up and lays up the basketball in the net.\", \" He repeats around the court from every angle.\", \" The man returns to go over the concepts again as the video closes.\"]}, \"v_ySQBZ8hqBo4\": {\"duration\": 85.87, \"timestamps\": [[0, 9.02], [8.16, 74.28], [66.55, 85.87]], \"sentences\": [\"The athlete is balancing in the bean as the man took out the spring jumper.\", \" The athlete did cartwheel on the beam as the crowd applauded.\", \" When the female athlete finished her number, she jumped off the beam cartwheeling down the blue mat.\"]}, \"v_T8wY9ZQv8vQ\": {\"duration\": 175.78, \"timestamps\": [[0, 175.78], [3.52, 7.03], [7.91, 175.78], [166.11, 175.78]], \"sentences\": [\"The video is showing clips of gymnastics players performing tricks along a padded area, while judges and spectators look on and cheer.\", \" The first player hits her head at the end of her performance.\", \" The video continues to show many other gymnasts competing, with the audience cheering after the completion of each performance.\", \" The video ends with a male performer.\"]}, \"v_vDaDT1vUOfI\": {\"duration\": 173.71, \"timestamps\": [[0, 29.53], [30.4, 112.04], [116.39, 173.71]], \"sentences\": [\"A woman appears and disappears under the water as she swims in an olympic sized pool.\", \" She is seen swimming in a fishlike manner under the water.\", \" She displays several different swimming styles and moves.\"]}, \"v_xS6elK6Khs4\": {\"duration\": 176.43, \"timestamps\": [[6.17, 46.75], [44.11, 176.43]], \"sentences\": [\"A man is seen sitting in front of a fence sitting on a skateboard and speaking to the camera.\", \" Several shots are then shown of him speaking to the camera and performing various skateboarding tricks around a park.\"]}, \"v_UwZbkuVsPno\": {\"duration\": 57.68, \"timestamps\": [[0, 25.96], [27.69, 57.68]], \"sentences\": [\"Two men are standing on a basketball goal.\", \" They start doing layups, then stand talking to the camera again.\"]}, \"v_Xo4-GnduX8A\": {\"duration\": 230.6, \"timestamps\": [[13.84, 14.99], [13.84, 207.54], [13.84, 175.25], [53.04, 54.19], [98, 99.16], [207.54, 209.84]], \"sentences\": [\"Man talks to camera shooting video.\", \"  Soccer players are shown practicing their moves.\", \"  Soccer players take shots.\", \"  Man is shoved off of the court.\", \" Man is congratulated for his goal.\", \"  Man shakes his hand at the camera.\"]}, \"v_q1jvfsKWY5c\": {\"duration\": 89.75, \"timestamps\": [[0, 65.51], [65.51, 89.75]], \"sentences\": [\"These people are playing tug of war against sumo wrestler who are more than 4 times their size and the small people win against them.\", \" In the end the people and sumo wrestlers take selfies and the sumo wrestlers open the fanta and throw it on each other.\"]}, \"v_zOcXA1S_VPI\": {\"duration\": 159.2, \"timestamps\": [[0, 24.68], [24.68, 32.64], [46.96, 50.94], [85.97, 88.35]], \"sentences\": [\"A man wearing a black hat is talking.\", \" A man dribbles a basketball around some cones and shoots the ball.\", \" Two people are playing basketball.\", \" A man is dribbling a basketball on a court.\"]}, \"v_mVC8DBsg1i0\": {\"duration\": 165.0, \"timestamps\": [[1.65, 26.4], [27.23, 66.83], [28.88, 83.33], [54.45, 109.73], [61.88, 95.7], [75.08, 138.6], [107.25, 165]], \"sentences\": [\"A man is sitting on a stool while the dog is in front of him, the dog is wearing a red leash.\", \" A white dog is hiding behind the wall.\", \" A man is brushing the dog's fur on his side first the at the back.\", \" The man started to shave the dog's front leg.\", \" A white dog is laying on the brown bed.\", \" The beige dog is laying on the rug while the man is shaving the beige.\", \" The white dog rubbing her face on the glass table, then the beige dog is standing on the glass sat then sat on the table, then the white dog is standing beside the beige dog.\"]}, \"v_Qmo9D73hWXY\": {\"duration\": 203.71, \"timestamps\": [[0, 8.15], [20.37, 189.45], [119.17, 120.19], [138.52, 144.63], [197.6, 203.71]], \"sentences\": [\"We see a person in hockey gear skate onto the ice.\", \" Another person enters and we watch two people play hockey.\", \" We see the puck drop in front of the camera.\", \" The person knocks the goalie to the ground.\", \" The goalie skates up to the camera.\"]}, \"v_TM_5fb15eXQ\": {\"duration\": 144.38, \"timestamps\": [[0, 66.42], [66.42, 144.38]], \"sentences\": [\"A guy is giving a lesson about snow boards he puts a big rub brand on the board to hold the foot placers in place.\", \"the guy shows the difference between snow boards and put them on a object to smoothing out the bottom of the board for better skiing.\"]}, \"v_9tAyfaBGwyg\": {\"duration\": 134.19, \"timestamps\": [[19.46, 117.42], [116.74, 117.42], [118.09, 123.45]], \"sentences\": [\"A woman is drawing a hopscotch board on the ground in chalk.\", \" She stands up and walks to the front of the hopscotch board.\", \" She begins jumping on the board.\"]}, \"v_SiBSwSu_REQ\": {\"duration\": 222.01, \"timestamps\": [[0, 4.44], [4.44, 27.75], [27.75, 33.3], [33.3, 214.24], [214.24, 222.01]], \"sentences\": [\"People are walking around the basketball court.\", \" A team of dancers walk onto the basketball court and stand at attention.\", \" As onlookers clap, the squad turns around in unison.\", \" The squad does their routine.\", \" The squad ends their routine and exits the floor.\"]}, \"v_I6VBFfeBqF0\": {\"duration\": 168.48, \"timestamps\": [[0, 34.54], [41.28, 133.1], [133.94, 168.48]], \"sentences\": [\"A man props his leg on the side of a tub.\", \" He is shaving his leg with a razor, revealing a tattoo underneath.\", \" When he is done, he wipes off the hair and shows a tattoo of homer simpson as the grim reaper.\"]}, \"v_tu6EkaMa9c8\": {\"duration\": 174.54, \"timestamps\": [[0, 6.11], [6.11, 161.44], [16.58, 20.94], [26.18, 28.8], [43.63, 51.49], [52.36, 78.54], [89.89, 145.74], [157.08, 161.44], [161.44, 174.54]], \"sentences\": [\"A tubing advertisement is on the screen.\", \"  Tubers are going down the river.\", \" West Virginia advertisement is on the screen.\", \"  A tuber goes under a plank with a dog on it.\", \"  The camera is pointed towards the sky and trees.\", \"  One tuber runs into branches, one stands up and falls over.\", \"  the cameraman turns circles in his tube then has a snack.\", \" One guy gets his head tangled in branches.\", \"  The video ends with advertisements.\"]}, \"v_cGNkR-JvaJs\": {\"duration\": 161.59, \"timestamps\": [[0, 4.04], [7.27, 11.31], [18.58, 25.05], [25.85, 28.28], [31.51, 34.74], [37.17, 38.78], [44.44, 60.6], [60.6, 63.83], [65.44, 84.83], [84.83, 85.64], [84.83, 87.26], [87.26, 99.38], [99.38, 105.84], [105.03, 119.58], [119.58, 123.61], [123.61, 134.12], [134.12, 144.62], [147.05, 155.12], [155.93, 161.59]], \"sentences\": [\"A sports logo flashes on the screen.\", \" A woman talking into a microphone wearing a white shirt.\", \" A man is playing pool behind a blue pool table.\", \" The woman continues talking in front of the pool table.\", \" The woman and the man talk to each other.\", \" A trophy flashes on the screen.\", \" The man and the woman continue talking.\", \" The man plays pool again.\", \" The man and woman continue talking to each other.\", \" It flashes back to the pool table.\", \" The man and woman continue talking and the woman laughs at what the man is saying.\", \" The man is now teaching the woman how to shoot the pool ball while standing behind her.\", \" The woman makes the shot and they celebrate with a high five.\", \" The man is telling the woman how to make another shot.\", \" She attempts the shot and makes it and they high five again.\", \" They continue talking and laughing.\", \" The woman lays down on the pool table and he shoots a ball out of her mouth.\", \" The woman is sitting in a chair next to the pool table talking into the microphone.\", \" A Maxim logo flashes on the screen.\"]}, \"v_WcQV3OzK_sc\": {\"duration\": 218.5, \"timestamps\": [[0, 44.79], [28.41, 55.72], [55.72, 120.18], [86.31, 182.45], [196.65, 218.5]], \"sentences\": [\"A man is seen recording a small child who is having her hair combed by a woman standing behind her.\", \" Several people and kids watch on the side and the woman puts the girls hair into ponytails.\", \" She speaks to the camera and cuts the girls hair when the dad puts the hair on his head and makes the kids laugh.\", \" The woman continues cutting her hair while others watch and speaks to the camera, followed by the woman straightening the hair and showing it off in slow motion.\", \" The girl holds her hair and screams in excitement at the camera.\"]}, \"v_BKrUkWSo4Ig\": {\"duration\": 216.57, \"timestamps\": [[0, 89.88], [86.63, 216.57]], \"sentences\": [\"An intro leads into a man holding a violin and playing with his hands.\", \" The man continues to play and then pauses to speak to the camera while also demonstrating how to properly play.\"]}, \"v_m_B1Jb6Wwn0\": {\"duration\": 34.9, \"timestamps\": [[0, 29.14], [32.28, 34.9]], \"sentences\": [\"A man is cleaning the soles of his sneakers with the thin, metal end of a hose.\", \" The man places the hose back and starts to leave.\"]}, \"v_Z8xxgFpK-NM\": {\"duration\": 146.42000000000002, \"timestamps\": [[8.05, 24.16], [32.94, 68.82], [85.65, 93.71], [122.99, 124.45]], \"sentences\": [\"A man is dancing on a stage in white pants.\", \" Two people start dancing together on a stage.\", \" A man does several back flips on the stage.\", \" A person is playing a drum.\"]}, \"v_wuHLveuf6PQ\": {\"duration\": 46.81, \"timestamps\": [[0, 21.3], [19.66, 46.81]], \"sentences\": [\"Several person are seen riding down a hill on roller blades while a person on a police bike rides in front.\", \" At one point several people fall and trip over one another but keep riding their blades on.\"]}, \"v_KgGQ6dHKl8U\": {\"duration\": 24.24, \"timestamps\": [[0, 9.7], [9.09, 9.45], [9.82, 24.24]], \"sentences\": [\"A man mounted on a horse chases after a cow.\", \" He catches the cow with a rope.\", \" He mounts off the horse and hits the cow several times.\"]}, \"v_PIJd7_6RGpY\": {\"duration\": 79.15, \"timestamps\": [[0, 27.7], [28.1, 34.43], [34.82, 57.78], [63.32, 79.15]], \"sentences\": [\"A man stands around a fire pit, talking.\", \" The man lights a torch.\", \" The man uses the torch to light the wood in the fire pit.\", \" The man sits by the fire pit, enjoying the warmth.\"]}, \"v_Yb5b_xx1P9I\": {\"duration\": 94.65, \"timestamps\": [[0, 19.4], [20.35, 60.1], [60.1, 72.4], [72.88, 75.72], [88.49, 94.65]], \"sentences\": [\"A man in a black shirt is checking food in a sandwich shop.\", \" The man then moves fast to make a hoagie sandwich by adding ingredients from the bins.\", \" The man wraps the sandwich in paper and puts it in a plastic bag.\", \" We see on a phone the man made the sandwich in 41 seconds.\", \" The man then takes the sandwich apart in the back.\"]}, \"v_IOmzDJjVUoQ\": {\"duration\": 17.72, \"timestamps\": [[0, 12.4], [12.58, 17.72], [17.45, 17.72]], \"sentences\": [\"A little in a pink shirt is going across the monkey bars.\", \" She hangs upside down from the bars.\", \" She smiles at the camera.\"]}, \"v_bvBNoeCBDdg\": {\"duration\": 151.23, \"timestamps\": [[0, 6.05], [6.81, 142.91], [143.67, 151.23]], \"sentences\": [\"A title screen appears for a tutorial for hockey agility.\", \"  A hockey player goes through several routines showing agility warm ups with a hockey stick and puck and drills with tires, small cones.\", \" Another title screen appear with a website just below it.\"]}, \"v_kcMJk5dg-Wc\": {\"duration\": 14.68, \"timestamps\": [[0, 3.89], [3.82, 10.71], [10.71, 14.68]], \"sentences\": [\"A small spout of water is shown outdoors between the forest and the rocks and is creating small waves.\", \"All of a sudden a person comes down the water kayaking.\", \"Once he gets to the bottom,the kayaker turns and the waves continue flowing washing up against the rocks.\"]}, \"v_pFh-8ICMTFY\": {\"duration\": 72.87, \"timestamps\": [[0, 13.48], [15.67, 40.44], [40.44, 60.11], [66.67, 71.41]], \"sentences\": [\"A woman talks while on a stair machine in a gym and shows proper footing.\", \" The woman walks on aerobic machine in the gym without the handles.\", \" The woman uses the arm bars while walking on the aerobic machine.\", \" The woman holds the arm grips to get off the machine.\"]}, \"v_N_zbcVs419E\": {\"duration\": 237.63, \"timestamps\": [[7.13, 20.2], [22.58, 68.91], [70.1, 74.85], [76.04, 181.79], [181.79, 237.63]], \"sentences\": [\"A person's hand is seen holding a paint brush.\", \"  The hand then puts drops of ink on paper.\", \" The person's hand is seen again with the paint brush.\", \" The hand returns with an ink dropper and creates pictures with ink.\", \" The hand gently touches the picture with a paper towel.\"]}, \"v_G5ueYVLGtm8\": {\"duration\": 6.83, \"timestamps\": [[0, 2.73], [2.42, 4.51], [4.27, 6.83]], \"sentences\": [\"The woman in black shirt is bend over and hit the ball with mallet.\", \" The woman hit again the green ball causing it to hit the small pole.\", \" The woman in black cheered and began to walk.\"]}, \"v_jfFnL_o8QS0\": {\"duration\": 236.19, \"timestamps\": [[0, 5.9], [7.09, 42.51], [46.06, 69.68], [72.04, 122.82], [134.63, 236.19]], \"sentences\": [\"A stopwatch is shown and a crowd gathers for a game of field hockey.\", \" The documentary features the voice of a former player as archival footage is shown in color.\", \" Photos and video in black and white depicts the history of the game.\", \" The documentary then focuses on a famous player.\", \" After that, a famous manager is highlighted and former players talk about him.\"]}, \"v_p28XWij4U1c\": {\"duration\": 220.64, \"timestamps\": [[6.62, 211.81], [6.62, 49.64], [51.85, 162.17], [182.03, 209.61]], \"sentences\": [\"A woman talks to a camera and then demonstrates exercises that can be done from the playground using playground equipment including monkey bars.\", \"  A woman in a red short sleeved shirt stands on the sand of a playground and talks facing the camera, while standing next to some monkey bars.\", \" The woman begins to use the monkey bars and pulls herself across the entire expanse of the bar without using feet for propulsion from bar to bar, using just upper arm and core strength to pull across the bars.\", \"  The woman then climbs a wall and jumps off it in a gymnastic flip into the sand and begins to talk to the camera again.\"]}, \"v_bJj66H_WsDA\": {\"duration\": 97.85, \"timestamps\": [[1.47, 27.89], [25.93, 73.88], [71.92, 95.4]], \"sentences\": [\"A man is seen sitting on the sidelines followed by a large group of people playing lacrosse.\", \" The players continue to move up and down the field past one another and many watching on the sides.\", \" The group continue to play and end by scoring a goal and the ref reacting.\"]}, \"v_xT6ejzSmftg\": {\"duration\": 172.26, \"timestamps\": [[0, 12.06], [12.92, 20.67], [20.67, 32.73], [32.73, 44.79], [44.79, 90.44], [90.44, 169.68]], \"sentences\": [\"A marching group of cadets in dark clothing comes into view in what appears to be a downtown city square.\", \" A drum corp is heard drumming proudly as the cadets march down the street.\", \" The marchers begin waving to the crowd and greeting the onlookers.\", \" A long train whistle is heard as the cadets continue to wave to the crowd.\", \" Behind the cadets, a marching band comes into view, dressed in white.\", \" The band marches by while playing cadet songs.\"]}, \"v_ZbfYwmb39H0\": {\"duration\": 192.22, \"timestamps\": [[0, 45.17], [31.72, 176.84], [47.09, 192.22]], \"sentences\": [\"A man is seen standing in front of a goal holding a stick and speaking to the camera.\", \" Several shots of him speaking are shown and he demonstrates how to properly be a goalie.\", \" He moves back and fourth a bit while moving the stick while still holding his arms up and speaking to the camera.\"]}, \"v_mBZAFJ-Q6Mw\": {\"duration\": 225.65, \"timestamps\": [[0, 56.41], [58.67, 92.52], [93.65, 126.37], [127.49, 155.7], [157.96, 166.98], [168.11, 174.88], [176.01, 185.03], [190.68, 225.65]], \"sentences\": [\"A boy is drawing with chalk on concrete as he deals with the troubles of family life and school.\", \"  He finishes drawing hopscotch boxes on the concrete as he begins to jump on the squares and begins to dance only to be reminded of the bullying at school.\", \"  The young man is seen now break dancing and going through a routine.\", \"  Back at home with his troubled family he is eating and day dreaming of dancing as the scene goes back to him dancing.\", \"  He stops dancing to look at the hopscotch squares that are now faded and worn.\", \"  In the classroom as the teacher is walking through the rows of desks he notices the young man asleep at his desk as he uses a ruler to tap him on his head to wake him.\", \"  The young boy notices a note at his desk that has a picture of the hopscotch squares that says \\\"teach me\\\" followed by a smiley face.\", \"  The credits roll as the concrete and the chalk marks of the hopscotch squares are shown.\"]}, \"v_vaqswUFfvMY\": {\"duration\": 11.91, \"timestamps\": [[0, 10.24], [10.3, 11.91]], \"sentences\": [\"A gymnast bend to rise weight above his head, while other men sit in the gym watch him.\", \" The gymnast drops the weight to the floor.\"]}, \"v_72F30o9V8v0\": {\"duration\": 203.36, \"timestamps\": [[0, 23.39], [34.57, 57.96], [62.03, 139.3], [132.18, 156.59], [146.42, 172.86], [164.72, 178.96], [192.18, 203.36]], \"sentences\": [\"A man is shown sitting on a fence and talking to the camera while pointing out horses.\", \" A girl is shown riding a horse while three others hold onto the horse and help.\", \" These people help various people on and off the horses.\", \" The people also walk through obstacle courses with the horses and keep one hand on at all times.\", \" The man stands in the middle applauding the riders and giving the horses direction.\", \" A boy smiles when he gets off the horse and several people congratulate him.\", \" The man finishes by talking about his camp and why you should join.\"]}, \"v_DR2sW3Wd8fo\": {\"duration\": 179.4, \"timestamps\": [[0, 175.81], [44.85, 179.4]], \"sentences\": [\"A video of the swan lake ballet is shown.\", \"  They perform the act and interview some of the cast.\"]}, \"v_AoyoL-921Ws\": {\"duration\": 72.89, \"timestamps\": [[0, 19.32], [18.22, 55.76], [44.83, 71.43]], \"sentences\": [\"A large yard is shown followed by a young child pushing a lawn mower around.\", \" The boy continues pushing the lawn mower around while the camera watches from the side.\", \" The boy moves the mower all along the yard.\"]}, \"v_Tg3FU9Ro6KQ\": {\"duration\": 201.59, \"timestamps\": [[0, 71.56], [72.57, 201.59]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her holding up various nail polishes and beginning to a set of fake nails.\", \" She continues painting on the nails use several different colors and presents the nail to the camera in the end.\"]}, \"v_Hev5Vj0Jjuk\": {\"duration\": 165.51, \"timestamps\": [[0, 34.76], [38.9, 41.38], [42.21, 51.31], [52.96, 107.58], [108.41, 113.38], [116.69, 139.86], [142.34, 165.51]], \"sentences\": [\"A group of girls look up at an amusement park ride and wave there hands in fear and anticipation.\", \" The girls put on safety harnesses.\", \" The group climb up the stairs to the top of the platform.\", \" A girl stands on top of the platform with a rope and harness and prepares to jump.\", \" A pop band is seen singing a song and dancing.\", \" The girl jumps from the platform and bounces on the bungee cord in the air.\", \" The girl is met by the group members who congratulate her for the jump.\"]}, \"v_ygmYkKbS-4U\": {\"duration\": 113.03999999999999, \"timestamps\": [[0, 40.13], [39.56, 41.26], [65, 85.34], [89.86, 113.04]], \"sentences\": [\"A man in a blue shirt is sweeping the floor in a gym.\", \" He flips the broom over and lays it flat on the floor.\", \" He starts vacuuming around the floor.\", \" He vacuums the bottom of the broom.\"]}, \"v_sicaCRRCkiY\": {\"duration\": 16.05, \"timestamps\": [[0, 6.9], [8.02, 16.05]], \"sentences\": [\"A camera shows several different ingredients laid out on a table followed by someone mixing the ingredients together.\", \" They put the mixture on a pan to create cookies in the oven and show off the final results.\"]}, \"v_mPtCJg-j4SM\": {\"duration\": 191.66, \"timestamps\": [[0, 15.33], [15.33, 65.16], [65.16, 160.03], [160.03, 191.66]], \"sentences\": [\"A woman dressed in workout clothes and a jacket is walking down a hall and stops to talk about whats behind the door.\", \"Once she opens the door,the camera pans many workout machines and the woman begins talking to the program director.\", \"After they are done talking,the young woman begins working out with the rest of the class as the trainer walks by making sure they are working out properly.\", \"Finally,the workout is finished and everyone begins high-fiving one another and the woman begins to talk again.\"]}, \"v_m1pNOYN-DoI\": {\"duration\": 68.99, \"timestamps\": [[2.07, 42.77], [11.73, 14.14], [17.94, 20.7], [22.77, 36.22], [40.01, 41.74], [45.53, 65.54]], \"sentences\": [\"Four guys are throwing golf balls across a table to hit plastic cups.\", \" Two guys high five after one guy gets the golf ball into the plastic cup.\", \" Guys point at the camera and laugh.\", \" A guy takes the golf ball out of the cup and attempts to drink the liquid.\", \" A guy throws a golf ball with his back toward the table, lands it inside the cup, and leaves the room.\", \" The guys celebrate and give high fives.\"]}, \"v_UXX8k68S3_g\": {\"duration\": 99.1, \"timestamps\": [[0.5, 48.56], [39.15, 97.62]], \"sentences\": [\"A person is seen drawing on the side of a pumpkin and then leads into cutting out the outlines.\", \" The person then wipes a rag all over the pumpkin cleaning off its sides.\"]}, \"v_DCyLmohIwkQ\": {\"duration\": 155.96, \"timestamps\": [[0, 21.83], [22.61, 51.47], [52.25, 77.2], [77.98, 102.15], [102.93, 135.68], [139.58, 155.96]], \"sentences\": [\"A man slowly walks over and takes some equipment off of the wall as some dramatic music plays.\", \"  He sets up the bow and gets his arrows.\", \"  Next we see him outdoors as he walks across some grass towards a target.\", \"  He pulls out an arrow and and sets it in his bow.\", \"  After a few tries he gets a bulls-eye.\", \"  He sets his bow and his arrows down onto a wooden platform.\"]}, \"v_Rx4gq8hrZ8s\": {\"duration\": 224.14, \"timestamps\": [[5.6, 81.81], [82.93, 191.64], [193.88, 220.78]], \"sentences\": [\"Four people plays soccer table indoors.\", \" A man shows a ball on a stick and demonstrates the movement of the ball on the soccer table.\", \" Then the mans shows the ball to the players, and one of them grab the ball and others play.\"]}, \"v_ydRycaBjMVw\": {\"duration\": 237.07999999999998, \"timestamps\": [[0, 79.42], [59.27, 167.14], [128.02, 226.41]], \"sentences\": [\"A man is seen sitting on a bench with other wiping his ear down with cleaner.\", \" The man looks at his phone while the other then begins piercing his ears.\", \" The man puts an earring in each hole while still speaking to the man and shoving off his earring.\"]}, \"v_17zMW3rzlR4\": {\"duration\": 83.27, \"timestamps\": [[0, 77.02], [11.24, 62.45], [26.65, 48.29]], \"sentences\": [\"Several professional men are placing wax on all types of skis.\", \"As they continue to place wax,they use tools to grind and smooth the skis.\", \"Finally, the use of cloths by the workers smooths and shines the skis.\"]}, \"v_-5h2E52tl4Q\": {\"duration\": 114.52000000000001, \"timestamps\": [[0, 114.52], [12.02, 23.48], [24.05, 50.39], [53.82, 54.97], [62.99, 111.66]], \"sentences\": [\"A middle aged female talks about a cleaning product.\", \" The female opens a container of cleaner and puts it on a rag.\", \" The female then uses the rag to rub the inside of the sink.\", \" The same female then uses a different rag to rub the sink surface.\", \" The female puts more cleaner on the rag and cleans the counter top.\"]}, \"v_Anvhv9FFv1Q\": {\"duration\": 227.72, \"timestamps\": [[2.28, 134.35], [96.78, 226.58]], \"sentences\": [\"A man is seen speaking to the camera and leads into him presenting various objects and sharpening a knife on a board.\", \" The man demonstrates how to properly sharpen the knife using the tools and his hands while continuing to sharpen the knife on the board.\"]}, \"v_KanNWuKvkxs\": {\"duration\": 126.67, \"timestamps\": [[0, 24.07], [24.07, 126.67]], \"sentences\": [\"A woman talks and shows a little bottle.\", \" Then, the woman put on her eyes white contact lenses and continues explaining.\"]}, \"v_It-SVT1ICJM\": {\"duration\": 19.2, \"timestamps\": [[0, 2.69], [2.88, 15.94], [16.23, 19.2]], \"sentences\": [\"A couple of toys are wrestling on a table next to a stack of dvds.\", \" They kick and push each other down.\", \" A screen of stars in a black sky are shown.\"]}, \"v_xKPF_SpZ1gQ\": {\"duration\": 14.4, \"timestamps\": [[0, 3.6], [6.69, 14.4]], \"sentences\": [\"A calf and horse run out of a gate.\", \"  The man catches the calf and ties it up.\"]}, \"v_5olJd75WWFw\": {\"duration\": 71.36, \"timestamps\": [[8.21, 46.38], [46.38, 64.22], [64.22, 68.5]], \"sentences\": [\"A man wearing a black shirt is demonstrating how to polish wood and other surfaces using liquid polish and a white soft cloth.\", \" He pours some of the polish from the bottle onto the cloth and uses it to gently scrub ad rub it over the furniture and tabletop.\", \" He uses it over various surfaces to clean and polish the surfaces of wood, vinyl and leather.\"]}, \"v__Hi9gQEaT-Q\": {\"duration\": 16.07, \"timestamps\": [[0, 16.07], [2.33, 3.62], [4.1, 5.46]], \"sentences\": [\"A dog pushes a stroller down the sidewalk.\", \"  A person in white passes the tree.\", \"  The dog passes a small tree.\"]}, \"v_AEQ9zIG9LqA\": {\"duration\": 80.18, \"timestamps\": [[0, 74.57], [53.72, 57.33], [74.57, 76.57]], \"sentences\": [\"A man does several back flips on a red mat.\", \" A woman in a black shirt watches him go by and claps.\", \" He stands up and walks away.\"]}, \"v_1HWajOhmPVg\": {\"duration\": 26.7, \"timestamps\": [[0, 8.28], [8.41, 19.63], [17.62, 26.57]], \"sentences\": [\"Various text is shown across the screen that leads into a man hosting a news segment.\", \" An athlete is then seen spinning around in circles and throwing an object off into the distance.\", \" More text is shown across the screen.\"]}, \"v_PyM_VG5KFa4\": {\"duration\": 93.41, \"timestamps\": [[4.67, 14.95], [14.95, 19.62], [19.62, 44.37], [44.37, 85.47], [85.47, 92.01], [92.01, 93.41]], \"sentences\": [\"A channel is displaying some cool and incredible videos.\", \" A young boy is sitting outdoors on a wooden bench and drumming on a drum set that is made out of steel plates, cans and pots.\", \" A man just walked past him while the boy was drumming loudly.\", \" He continues to drum on the handmade drum set rhythmically.\", \" He plays in a fast manner without stopping.\", \" The screen shows details of how to subscribe to the channel.\"]}, \"v_DgdEQgh8TKU\": {\"duration\": 78.37, \"timestamps\": [[0.78, 41.93], [25.86, 76.41]], \"sentences\": [\"A man is seen standing by the water holding an axe in one hand and a block of wood in the other.\", \" The man continues cutting wood while the camera pans to other people in the room and a woman speaking to the camera.\"]}, \"v_9o_SlEkq-L0\": {\"duration\": 85.53999999999999, \"timestamps\": [[0, 9.41], [9.41, 23.52], [23.95, 38.49], [38.49, 67.58], [73.14, 74.42], [74.85, 79.98], [80.41, 85.54]], \"sentences\": [\"A man is standing in a yard of green grass and is shown mowing the lawn and when he's done there is a short exchange of a hand handing his hand one dollar bill.\", \" The man is then shown moving the grass again and when he's done he's once again indoors and this time getting three one dollar bills handed to him.\", \" He is once again back in the yard but this time he has the container filled with cut grass and a special effect makes it look like the cut grass is jumping into his container.\", \" A special effect shows the man quickly in one place and then in another spot that varies a lot all throughout the yard.\", \" The man goes back to mowing the yard and then back indoors to get one more dollar handed to him.\", \" The man is very happy about this and he's back in the yard celebrating by jumping and mowing the yard a little more.\", \" The man is then back indoors and a special effect shows a bunch of money flying into the air and straight into his hands and ends with a the man holding a bunch of money in his hands as they move.\"]}, \"v_PzeM5iOLQnk\": {\"duration\": 110.34, \"timestamps\": [[0, 110.34], [18.21, 22.62], [27.03, 59.03], [59.58, 86.07], [86.62, 97.1], [101.51, 105.93], [107.03, 110.34]], \"sentences\": [\"We see a man talking in a bike ship.\", \" the man points at a bike.\", \" The man takes off the handlebars on a bike and adjusts them.\", \"\\nThe man puts the handlebars back on.\", \" The man moves to the front of the bike to adjust the handlebars.\", \" The man then finishes tightening the bolt on the handlebar.\", \" The man steps back when finished.\"]}, \"v_ozgrP6Znupc\": {\"duration\": 94.32, \"timestamps\": [[2.83, 13.2], [15.09, 16.98], [17.92, 27.82], [28.3, 36.78], [37.26, 42.44], [42.92, 67.91], [52.35, 56.59], [69.8, 89.6], [89.6, 91.96]], \"sentences\": [\"Two men talk to the camera, interspersed with action footage of them playing lacrosse.\", \" The man dressed in orange talks to the camera.\", \" The man in orange demonstrates passing the lacrosse ball against the wall.\", \" The man in orange talks to the camera again.\", \" Both men demonstrate passing the lacrosse ball against the wall.\", \" The man in orange talks to the camera a third time while demonstrating with his lacrosse stick.\", \" The man is briefly interrupted by a scene of him passing the ball against the wall.\", \" The two man practice passing the ball to each other with the wall.\", \" The man in orange talks to the camera a final time.\"]}, \"v_uklYBuQDwIw\": {\"duration\": 90.05, \"timestamps\": [[0, 30.17], [29.27, 74.74], [50.43, 89.6]], \"sentences\": [\"A woman is seen sitting down on a string while others watch around her.\", \" A man is shown speaking to the camera while others take their turns balance on the rope.\", \" More shots are shown of the people walking along one another.\"]}, \"v_zFUUBWJ58UA\": {\"duration\": 132.29, \"timestamps\": [[1.98, 41.01], [31.75, 97.89], [94.58, 130.96]], \"sentences\": [\"A woman is seen walking up to a door and smiling to the camera while hanging up her coat.\", \" She puts an apron on and pours paint into a bucket while speaking to the camera.\", \" She is shown painting various furniture as well as showing it off in the end.\"]}, \"v_mEEovBtzwHc\": {\"duration\": 145.43, \"timestamps\": [[0, 46.54], [43.63, 145.43]], \"sentences\": [\"A woman is seen sitting in a chair while speaking to the camera and leads into a close up of a tree and the woman putting ornaments on.\", \" The woman ties string all along the tree while the camera pans around and ends with her showing off the end result and speaking to the camera.\"]}, \"v_W4tmb8RwzQM\": {\"duration\": 188.15, \"timestamps\": [[0, 14.11], [14.11, 185.33], [103.48, 112.89], [143.94, 147.7], [181.57, 185.33], [185.33, 188.15]], \"sentences\": [\"A teen sits in a chair talking.\", \" The boy stands and we see him bouncing on a slackline in various locations.\", \" There is a second boy on a different line who walks away.\", \" The boy almost falls and steadys himself.\", \" The boy gets off and walks away.\", \" The boy walks to the camera and gestures with his hands.\"]}, \"v_nnWJGghixr0\": {\"duration\": 45.54, \"timestamps\": [[0, 7.06], [7.06, 39.61], [39.61, 45.53]], \"sentences\": [\"A black intro screen appears with white words and letters saying \\\"Eric Bristow's unique TV 'Robin Hood' Darts shot 1983 vs J Wilson\\\".\", \"An older looking video begins and two different men are throwing darts at a dartboard.\", \"When the men are done throwing darts, a dartboard is show and blue letters scroll up from the bottom to the top.\"]}, \"v_xPyj6pmYyEk\": {\"duration\": 207.68, \"timestamps\": [[0, 31.15], [31.15, 47.77], [47.77, 86.19], [86.19, 159.91], [159.91, 184.84], [184.84, 207.68]], \"sentences\": [\"An introduction comes onto the screen for a video about how to make linguine with clam sauce.\", \" Water is brought to a boil in a pot and the pasta is added to the pot.\", \" Parsley is finely chopped along with some garlic, and the clams are drained into a bowl to separate them from the juice.\", \" Olive oil goes into the pan with the garlic, red pepper, parsley, white wine, basil, salt, and clam juice to simmer, and the clams are added to the mixture at the end.\", \" The pasta is drained and added into the pan with the sauce.\", \" The pasta is then served with shredded cheese on top.\"]}, \"v_gWyBBQtsDhc\": {\"duration\": 217.54, \"timestamps\": [[0, 84.84], [81.58, 217.54]], \"sentences\": [\"A woman with long hair is seen speaking to the camera while moving her arms around and smiling while she speaks.\", \" She then begins brushing her long hair out and smiling back at the camera and waving.\"]}, \"v_-od9zDziq9U\": {\"duration\": 180.07, \"timestamps\": [[0, 27.01], [27.91, 75.63], [75.63, 121.55], [121.55, 180.07]], \"sentences\": [\"A girl walks up the the center of the stage and messes with her feet and gets in position.\", \" She pauses in that position before she begins to dance around.\", \" She does a split and some poses all around.\", \" She does some cart wheels and more dancing all around the court and finally she finishes.\"]}, \"v_MkouTZhtvEI\": {\"duration\": 57.54, \"timestamps\": [[0, 12.66], [12.37, 57.54]], \"sentences\": [\"A large group of people are shown walking in holding bows and arrows and one making a shot.\", \" Several more people are shown making shots with their bows and arrows and celebrating in the end and standing on a podium waving.\"]}, \"v_AIxxMCcmIgM\": {\"duration\": 83.64, \"timestamps\": [[0, 83.64], [18.4, 25.93], [26.76, 29.69], [52.27, 58.13], [73.6, 79.04]], \"sentences\": [\"We see a man water skiing.\", \" We see the water spraying on the left.\", \" The man jumps over to the right.\", \" The man is bending down on the surfboard.\", \" The man performs a flip.\"]}, \"v_BfsCKU69hHs\": {\"duration\": 27.21, \"timestamps\": [[0, 7.62], [7.76, 14.02], [14.56, 25.85], [25.72, 27.21]], \"sentences\": [\"A pair of female hands uses an iron on a piece of baby clothing.\", \" The woman sets the iron aside and flips the clothing.\", \" The woman uses the iron on the other side of the clothing.\", \" The woman sets the iron aside.\"]}, \"v_MY6o5ZObFLE\": {\"duration\": 91.95, \"timestamps\": [[0, 12.41], [13.79, 51.03], [55.17, 91.95]], \"sentences\": [\"A man is sipping a drink on the beach.\", \" A girl is applying squirts of suntan lotion onto their bodies.\", \" Then then go into the water, swimming and walking in the surf.\"]}, \"v_1ATBCBUgflA\": {\"duration\": 68.15, \"timestamps\": [[0, 37.48], [36.46, 68.15]], \"sentences\": [\"Various ingredients are laid out on a table and leads into a person pouring the ingredients into a bowl.\", \" The person stirs thoroughly and then wipes down a table with a cloth.\"]}, \"v_vtYbJD2J8Tw\": {\"duration\": 71.12, \"timestamps\": [[0, 22.05], [23.11, 71.12]], \"sentences\": [\"A woman begins talking to the camera smiling and leads into her coming another woman's hair.\", \" She parts the hair into sections and places rollers into the woman's hair and talking to the camera.\"]}, \"v_GJz8FEFB70w\": {\"duration\": 144.57, \"timestamps\": [[0, 101.2], [42.65, 46.98], [103.37, 144.57]], \"sentences\": [\"Two people lift a large weight over their heads.\", \" They drop the weight to the ground.\", \" The weights are shown on each side.\"]}, \"v__4oBeoCuU7M\": {\"duration\": 124.76, \"timestamps\": [[0, 31.19], [31.81, 86.09], [85.46, 124.76]], \"sentences\": [\"Two cars are seen parked outside of a garage as a man focuses his camera.\", \"Once the camera is sin position,a man is shown with a steel mask on as he beats a piece on a concrete.\", \"The piece is on the concrete and he puts the bottom of the mask on and begins burning the metal.\"]}, \"v_USOc5S2-3zA\": {\"duration\": 153.34, \"timestamps\": [[0, 13.8], [16.87, 92], [94.3, 153.34]], \"sentences\": [\"A woman in a belly dancer outfit is on stage.\", \" She walks down the lane while dancing and singing.\", \" She gyrates her hips and arms as she performs.\"]}, \"v_azfkn6EsuJA\": {\"duration\": 16.53, \"timestamps\": [[0, 16.53], [7.52, 16.53], [15.87, 16.53]], \"sentences\": [\"A man is buffing down his skis in a garage.\", \" He changes position to give himself more leverage as he buffs.\", \" He moves the shis to another location when he is done.\"]}, \"v_8kGiDHAnTqY\": {\"duration\": 174.06, \"timestamps\": [[19.15, 41.77], [57.44, 73.97], [103.56, 127.93]], \"sentences\": [\"A man is helping a little girl go down a slide.\", \" She goes down the slide on her belly.\", \" She climbs up the side of the playground and goes down the slide again.\"]}, \"v_BWCMfPoKlMM\": {\"duration\": 51.25, \"timestamps\": [[1.28, 28.44], [21.52, 49.2]], \"sentences\": [\"A large group of athletes are seen standing around a track while some holding their arms up to clap.\", \" One runner makes his way down the track and jumps into a large sand pit and walks away.\"]}, \"v_NyL7m4JV8vQ\": {\"duration\": 98.47999999999999, \"timestamps\": [[0, 13.29], [13.79, 34.96], [37.91, 78.78], [78.29, 98.48]], \"sentences\": [\"A man in red runs jumps and flips over an obstacle.\", \" It is done over and over in slow motion.\", \" He then does it again for one last time.\", \" Then finally, they begin a race on a field a man wearing black crosses the finish line first.\"]}, \"v_tr1sNwRTMd8\": {\"duration\": 106.12, \"timestamps\": [[0, 30.24], [30.24, 46.16], [46.16, 87.02], [87.02, 106.12]], \"sentences\": [\"A woman wearing number 177 is standing in place, she crosses her heart and get prepared to run.\", \" She breathes in deeply and starts to run really fast down the field.\", \" She  jumps up  high and lands right in the sand on to her butt, they show mulitple replays of her performance.\", \" She bends over and fixes her uniform, dusting off her bottom as she walks away.\"]}, \"v_2UJ4wqJt_Y8\": {\"duration\": 3.07, \"timestamps\": [[0, 3.07], [0, 0.67], [0.75, 3.07]], \"sentences\": [\"People are roller blading about in front of a building.\", \" A man roller blades fast.\", \" The man lifts his hands up in the air and starts to stop his roller blades.\"]}, \"v_VkRjs03YEjE\": {\"duration\": 234.5, \"timestamps\": [[0, 7.03], [7.03, 14.07], [14.07, 19.93], [19.93, 29.31], [29.31, 44.55], [44.55, 50.42], [50.42, 64.49], [64.49, 100.83], [100.83, 131.32], [131.32, 132.49], [132.49, 234.5]], \"sentences\": [\"The man in the corner kicks the ball straight into the net.\", \" The team runs around the court celebrating.\", \" A man in the stands climbs over the railing and runs onto the court celebrating.\", \" The group is in a bunch celebrating on the court.\", \" One of the players kicks the ball into the stands and walks off with his head down.\", \" A few players are standing in the corner looking like they are arguing.\", \" A bunch of players and spectators run the court toward the melee.\", \" Men are running along the edge of the court.\", \" The small group is still arguing and holding back fights.\", \" A small group is having an animated discussion.\", \" The two men walk back on to the court as the group starts talking again around the court floor and edge.\"]}, \"v_PuylbPlzbH0\": {\"duration\": 45.09, \"timestamps\": [[0, 6.31], [6.09, 36.75], [16.23, 32.47], [36.98, 43.06], [43.29, 45.09]], \"sentences\": [\"We see people holding their phones up to record.\", \" We then see a man playing a piano.\", \" The camera moves around the man's back.\", \" The crowd then claps for the man.\", \" The man then looks up and speaks.\"]}, \"v_NI-TZyAxJU0\": {\"duration\": 150.37, \"timestamps\": [[0, 23.31], [23.31, 87.22], [87.97, 150.37]], \"sentences\": [\"People raft down a narrow river between two mountains.\", \" People rafting passing troubled waters in the narrow river.\", \" People sail down the rocky river in an open space.\"]}, \"v_5V47VQHzWHc\": {\"duration\": 118.65, \"timestamps\": [[0, 114.5], [109.16, 114.5], [113.91, 116.87]], \"sentences\": [\"A man is seated at the front of a church and plays a song on an accordion.\", \" The man goes all the way down the scale than back up at the end of the song.\", \" The man finishes the song and smiles.\"]}, \"v_QgzpNg0Ponc\": {\"duration\": 143.65, \"timestamps\": [[0, 17.96], [18.67, 102.71], [92.65, 142.21]], \"sentences\": [\"A man is seen riding on a skateboard down a hill on his head.\", \" More shots are shown of people performing tricks on skateboards around an area.\", \" The people continue to perform tricks and ride around while other people watch on the side.\"]}, \"v_mLijl36SjJU\": {\"duration\": 144.17000000000002, \"timestamps\": [[0, 23.07], [25.23, 61.27], [61.99, 104.53], [108.85, 144.17]], \"sentences\": [\"A man is seen kneeling onto a floor holding a bit of carpet and speaking to the camera.\", \" He peels off the layers and begins rubbing down the carpet.\", \" He pours liquid onto the carpet and pats it down with a paper towel.\", \" Finally the person vacuums up the carpet and is seen standing next to the vacuum.\"]}, \"v_QeH6IOAjy-4\": {\"duration\": 40.52, \"timestamps\": [[0, 18.84], [18.84, 40.52]], \"sentences\": [\"Three people are in the gym,one of the males is kneeling down and jerking a bar while the other is giving a massage to a woman.\", \"The male with the bar lifts the weights,drops it and then jumps in joy that he has lifted the weight,drops his belt and walks off.\"]}, \"v_CXSoih6nFME\": {\"duration\": 154.81, \"timestamps\": [[0, 30.96], [30.96, 117.65], [102.17, 150.94]], \"sentences\": [\"A young child is seen adjusting the camera and showing off her face.\", \" She grabs some makeup and begins putting it all over her face.\", \" She continues putting on more makeup and showing it off to the camera.\"]}, \"v_uVHuVnv5XAk\": {\"duration\": 56.55, \"timestamps\": [[0, 8.48], [8.2, 11.88], [11.59, 56.55]], \"sentences\": [\"A man sprints down a track.\", \" The man jumps at the end of the track.\", \" The man's jump is shown from different angles an in slow motion.\"]}, \"v_v-dxQNxdMrU\": {\"duration\": 91.51, \"timestamps\": [[0, 17.84], [15.56, 70.46], [61.77, 89.22]], \"sentences\": [\"A camera pans around large city buildings and leads into people riding motocross bikes.\", \" More clips are seen of people performing tricks on the bike while hundreds watch on the sidelines.\", \" More people are seen riding around and waving their hands up in the end.\"]}, \"v_Nosx28FNB5E\": {\"duration\": 73.03, \"timestamps\": [[16.43, 69.74], [44.91, 46.74], [71.57, 73.03]], \"sentences\": [\"People start to play a game of pool.\", \" A man talks to the camera and laughs.\", \" Words are shown on the screen.\"]}, \"v_x8yuq2i72eo\": {\"duration\": 8.48, \"timestamps\": [[0, 8.48], [1.74, 4.41], [8.01, 8.48]], \"sentences\": [\"Four people are doing situps on the ground.\", \" The third person is paused.\", \" The farthest person is barely visible.\"]}, \"v_9hPFweZeIWs\": {\"duration\": 82.18, \"timestamps\": [[0, 82.18], [42.73, 43.96], [44.38, 50.54], [50.13, 82.18]], \"sentences\": [\"People are standing around an arena wearing cowboy hats.\", \" They release a calf from a box.\", \" A man on a horse runs after the calf.\", \" He ties the legs of the calf and gets up and walks away.\"]}, \"v_dZSjgAYlpS0\": {\"duration\": 62.07, \"timestamps\": [[0, 5.9], [5.9, 8.38], [8.38, 12.41], [12.41, 53.07], [53.07, 62.07]], \"sentences\": [\"A man is standing over a sink and with his right hand he's holding a drill that has a potato attached to the end of it, and the right hand is holding the hand peeler as the drill moves the potato and the peeler peels it.\", \"The man temporarily stops the drill to pull off a small piece of potato and a long piece of metal is shown sticking out of the drill.\", \"The man then puts another potato onto the pointy metal piece and continues to peel the potato.\", \" Once again he stops and then cleans off his peeler and then returns back to peeling the rest of the potato.\", \" The man stops the drill for the last time,lets it go and cleans the peeler once more with both hands as he throws the contents into the sink and.\"]}, \"v_eBITMlyTZhY\": {\"duration\": 219.14, \"timestamps\": [[0, 6.57], [8.77, 202.7], [25.2, 27.39], [40.54, 49.31], [60.26, 67.93], [201.61, 213.66], [218.04, 219.14]], \"sentences\": [\"A lady gets up from her seat and we see the orchestra playing music.\", \" The woman does a belly dancing routine on the stage.\", \" We see a camera enter the scene on the right.\", \" We see the back of the head of a man.\", \"  We then see the woman next to the man.\", \" The woman finishes her dance and picks up her wrap.\", \" We see a somber lady holding a microphone.\"]}, \"v_Jifw8dC5yTM\": {\"duration\": 150.09, \"timestamps\": [[0, 9.76], [11.26, 13.51], [13.51, 27.77], [27.77, 139.59], [139.59, 150.09]], \"sentences\": [\"A young man in blue t-shirt walks through small dance studio room.\", \" The young man sets his stereo down on a chair.\", \" The man young man warms up and does a one handed handstand.\", \" The man does a break dance routine doing hand stands and spins.\", \" End credits are shown with names written in cursive.\"]}, \"v_xVQkf_TrX7U\": {\"duration\": 139.62, \"timestamps\": [[0, 15.36], [15.36, 61.43], [61.43, 106.11], [106.81, 139.62]], \"sentences\": [\"A big man dressed as batman is running around doing weird nonsensical stuff.\", \" He runs inside of the house and begins to start giving instructions on how to make the perfect batman sandwich.\", \" He is cutting up cheese and adding ham to the sandwich.\", \" He even cuts the bread into a batman shape before finally doing being done.\"]}, \"v_4VVIFV6XmKo\": {\"duration\": 114.85, \"timestamps\": [[0, 51.11], [51.68, 98.19], [98.19, 114.85]], \"sentences\": [\"Two men are in a small gym boxing and fighting one another.\", \"They continue fighting and hitting one another as a person stands in the corner showing them.\", \"After some time,they finish fighting and stand still across from one another in the gym.\"]}, \"v_pOyP_kDaskY\": {\"duration\": 197.11, \"timestamps\": [[0, 9.86], [10.84, 21.68], [26.61, 61.1], [54.2, 145.86]], \"sentences\": [\"A man in a suit reads off of a paper.\", \" A woman then begins to report a news story.\", \" A young boy plays the harmonica on the street.\", \" He stands on a dock telling his story.\"]}, \"v_ZFi592_m_NQ\": {\"duration\": 136.4, \"timestamps\": [[0, 56.6], [56.6, 117.3]], \"sentences\": [\"A man is shown on camera doing several moves with his arms and legs while smiling into the camera.\", \" He performs several more moves slowly and continues to speak and smile to the camera.\"]}, \"v_v_Vg4a8igc0\": {\"duration\": 36.73, \"timestamps\": [[5.51, 13.96], [13.96, 29.02], [29.02, 34.53], [34.53, 36.37]], \"sentences\": [\"A woman is bathing a white and brown puppy dog in a bathtub.\", \" the woman is using a hand held shower to wash the dog.\", \" The woman is holding the dog with its two front legs.\", \" She continues to wash the dog with the shower.\"]}, \"v_7knqgoHxuGE\": {\"duration\": 38.13, \"timestamps\": [[0, 38.13], [7.43, 28.98], [28.79, 38.13]], \"sentences\": [\"Several people are at a party.\", \"  They are drinking and playing beer pong.\", \"  There are people dancing and looking at their phones.\"]}, \"v_tES39s-LJsQ\": {\"duration\": 100.06, \"timestamps\": [[0, 14.51], [15.01, 90.55], [91.55, 100.06]], \"sentences\": [\"The name Seppe Smits appears on screen followed by \\\"Snow Boarding 2400 Hours A Day\\\".\", \" Video of Smits starting his day is intermixed with shots of him snowboarding.\", \" Social media hashtags on are shown on screen.\"]}, \"v_StM48dIvK-M\": {\"duration\": 79.16, \"timestamps\": [[0, 77.97], [0, 78.37], [78.37, 79.16]], \"sentences\": [\"People are participating in a tug of war match in a gym.\", \" The yellow team on the left side pulls the rope mostly to the left or wins.\", \" An adult grabs the arm of a blue team member.\"]}, \"v_IGamNJ5yIh4\": {\"duration\": 39.59, \"timestamps\": [[0, 8.91], [8.91, 28.11], [28.11, 39.59]], \"sentences\": [\"A group of men are on a sandy beach playing soccer while a lot of people are looking on.\", \"A man kicks the ball very hard, makes it in the goal and he throws his two arms up in the air and gives a team mate a high five and they all run back to get into place for the next play.\", \"The replay of the goal that was kicked is replayed but in slow motion.\"]}, \"v_jhuRtkqUSSI\": {\"duration\": 38.79, \"timestamps\": [[0, 19.4], [19.01, 38.79]], \"sentences\": [\"A camera pans out on a man's back followed by a man performing a flipping dive into a pool.\", \" He is shown twice more performing impressing dives off the diving board and into the pool.\"]}, \"v_jE0XAclET5w\": {\"duration\": 167.16, \"timestamps\": [[0, 167.16], [0.84, 167.16], [78.57, 167.16]], \"sentences\": [\"A man is doing a rubiks cube behind a table.\", \" There is a timer on the table in front of him.\", \" He picks up another rubiks cube and starts completing it.\"]}, \"v_iJzt1rvGiOc\": {\"duration\": 189.01, \"timestamps\": [[0, 24.57], [24.57, 45.36], [45.36, 67.1], [67.1, 103.96], [103.96, 177.67], [177.67, 189.01]], \"sentences\": [\"A blond woman is sitting on a bed in a hotel room videotaping her self in a mirror with a white phone and talking to the camera.\", \" the woman stands up and points the camera to the door into the bathroom where a man is washing his sneakers in the sink with a brush.\", \" The blond woman walks back into the room and shows all the various pairs of sneakers the man has laying all over the hotel room.\", \" The blond woman walks back into the bathroom and video tapes the man holding the white sneakers.\", \" The man is now outside putting polish and plastic tape on the sneakers and he is detailing them with a toothbrush.\", \" There are various pictures of the end product of clean sneakers.\"]}, \"v_GPl7nFwqSgk\": {\"duration\": 202.06, \"timestamps\": [[0, 109.11], [109.11, 202.06]], \"sentences\": [\"A large group of people are seen standing in a circle playing drums with one person in the middle instructing them.\", \" The camera pans around the group playing drums while people them on the side.\"]}, \"v_CpTIytatsno\": {\"duration\": 97.22, \"timestamps\": [[3.89, 10.21], [10.21, 16.04], [17.99, 26.25], [28.19, 33.54], [34.03, 56.39], [56.39, 58.82], [59.31, 69.03], [70.97, 87.01], [88.47, 97.22]], \"sentences\": [\"An athlete spins and throws a shot put on a large playing field of a stadium.\", \" The man celebrates and gives a thumbs up.\", \" A second athlete in grey shirt throws a shotput.\", \" The ball lands in the grass and the man is disappointed in the throw and walks away.\", \" A large man in yellow shirt and headband spins and throws a shut put that veers to the left of the field.\", \" The man is pleased with his shot and pumps his fist.\", \" The man gives high fives to his team mates.\", \" A rack of balls are seen in the grass behind scores for the game.\", \" The man awaits his score standing on the track among other athletes in the background.\"]}, \"v_64oq7grVNVs\": {\"duration\": 95.32, \"timestamps\": [[0, 11.44], [12.39, 95.32], [21.45, 35.27], [49.09, 95.32]], \"sentences\": [\"A young man clips the hair of several older men in an outdoor barber chair.\", \" The man cutting hair is  inside a barber shop talking.\", \" Some still shots of the man cutting hair are shown.\", \" The man is seen again cutting a mans hair in the outdoor barber chair.\"]}, \"v_ntKbTDQUhDA\": {\"duration\": 126.92, \"timestamps\": [[0, 66], [66, 71.08], [81.23, 85.04], [98.36, 126.92]], \"sentences\": [\"A man is pouring shots of alcohol into a blender.\", \" He blends the drink together.\", \" He puts orange slices on two glasses.\", \" He pours the drink from the blender into the glasses and adds straws.\"]}, \"v_LVub7uinY-4\": {\"duration\": 95.53, \"timestamps\": [[0, 41.08], [34.39, 95.53]], \"sentences\": [\"A small group of people are seen playing a baseball game on a field and leads into several more shots of them playing.\", \" The video continues with several clips of people hitting and catching the ball and ends with text across the screen.\"]}, \"v_RaYMOYWhba8\": {\"duration\": 152.81, \"timestamps\": [[0, 152.81], [78.7, 152.81]], \"sentences\": [\"A group of young boys are seen passing soccer balls to each along a large sandy beach.\", \" They continue running back and fourth on the sand and passing the ball to one another.\"]}, \"v_OVf4tUiUqA0\": {\"duration\": 111.71000000000001, \"timestamps\": [[0, 15.64], [18.99, 45.24], [48.04, 96.63], [97.19, 111.71]], \"sentences\": [\"Two workers are shown at a shop outdoors.\", \" They are washing down cars with soap, including the Maserati's tires.\", \" They then rinse the cars and wipe them clean.\", \" The final product is shown as a clean, shiny italian car.\"]}, \"v_yIIDIQDKVhI\": {\"duration\": 159.06, \"timestamps\": [[0, 15.91], [15.91, 32.61], [32.61, 46.92], [46.92, 73.96], [73.96, 88.28], [88.28, 96.23], [95.43, 103.39], [103.39, 138.38], [138.38, 159.06]], \"sentences\": [\"A man in a red polo shirt demonstrates the Kleva Sharp sharpener.\", \" He sharpens a dull butcher knife and cuts a tomato.\", \" The man in the red polo shirt then sharpens a dull steak knife and cuts a tomato into slices and then he cuts a cucumber into slices.\", \" The man demonstrating the Kleva Sharpener, he sharpens a garden clipper and slices a carrot.\", \" The demonstrator then sharpens a serated bread knife and slices a loaf of bread.\", \" A series of demonstrations of different knives cutting different foods.\", \" The Kleva Sharpener is dismounted from the table and stored in a cabinet drawer.\", \" The Kleva Sharpener is mounted on the refrigerator on a wall and on the table.\", \" He demonstrates the locking mechanism.\"]}, \"v_eGLD-0b1LV0\": {\"duration\": 112.00999999999999, \"timestamps\": [[0, 11.2], [12.32, 62.73], [64.97, 112.01]], \"sentences\": [\"A woman is speaking while standing next to an elliptical trainer.\", \" The mechanics of the elliptical machine are shown.\", \" We then see the woman on the machine, demonstrating how it works.\"]}, \"v_2mI7NL54yP8\": {\"duration\": 170.97, \"timestamps\": [[0, 35.05], [35.9, 72.66], [72.66, 122.24], [122.24, 170.97]], \"sentences\": [\"A man is shown on a bike riding across the snow.\", \"Then another group of people are riding in a cart through the snow.\", \"Three skiers are pictured on top of a mountain of a snow and they begin skiing.\", \"A skier is then panned up and down holding a set of skiis as well as people on mountain bikes and they begin racing.\"]}, \"v_KTk1Rh8Lgdw\": {\"duration\": 176.17000000000002, \"timestamps\": [[0, 176.17], [15.86, 18.5], [73.99, 79.28]], \"sentences\": [\"A woman puts rollers to a young lady, combing a portion of the hair and then coil on a roller.\", \" The  young lady raise her left hand to pass a roller to the woman while taking.\", \" The young lady put a towel on front her face.\"]}, \"v_cC3dwwPPHKE\": {\"duration\": 91.63, \"timestamps\": [[0, 10.08], [11, 50.39], [52.68, 91.63]], \"sentences\": [\"Several views are shown of a machine from different angles.\", \" A woman uses an attachment to suck the wrinkles out of a shirt.\", \" She then hangs a pair of pants, and irons it smooth, creating a crease.\"]}, \"v_b993qWuMRBA\": {\"duration\": 490.22, \"timestamps\": [[0, 105.4], [26.96, 51.47], [71.08, 83.34], [88.24, 120.1], [120.1, 441.2], [443.65, 490.22]], \"sentences\": [\"We see a man in the upper corner and out over the hood of a car while driving.\", \" The car stops at an intersection.\", \" The car makes a u-turn.\", \" The man drives into a car wash and gets out.\", \" The man pressure washes ice off his car and continues rinsing his car.\", \" The man shows his wet car.\"]}, \"v_Zl6o69-R2DE\": {\"duration\": 81.78, \"timestamps\": [[0, 17.17], [17.17, 62.56], [56.84, 62.97], [62.97, 81.78]], \"sentences\": [\"man is talking to the camera is a snowy day outside a house.\", \" man is holding a shovel and cleaning the path from the snow.\", \" little kid is wearing red snow clothes and is standing nxt to a car.\", \" the man stops and is again talking to the camera with the shovel on his hands.\"]}, \"v_9KNOOoIK0zw\": {\"duration\": 215.81, \"timestamps\": [[0, 48.56], [48.56, 98.19], [98.19, 155.38], [155.38, 215.81]], \"sentences\": [\"A lady in a black tank top gives instruction on how to blow dry a girl's hair wearing a blue t-shirt.\", \" The hair stylist first places a liquid in her hand and rubs it into the models hair and then brushes clients hair.\", \" The lady in the black tank top uses the blow drier while combing the hair with a brush.\", \" Scenes of the finished product showing side views and back vies of the models hair.\"]}, \"v__eanWnL3FtM\": {\"duration\": 238.8, \"timestamps\": [[0, 44.18], [45.37, 122.98], [122.98, 202.98], [202.98, 238.8]], \"sentences\": [\"A man wearing a blue shirt and a man wearing a dart shirt enter a stage surrounded by a crowd.\", \" The two men competes paper, scissors and rock on front a judge.\", \" The two men continues competing while the judge gives the start.\", \" Then, the two men continue competing, after the man wearing dark shirt wins the competition and people cheers.\"]}, \"v_WUdefl_j2-8\": {\"duration\": 124.18, \"timestamps\": [[0, 6.83], [6.83, 85.06], [85.06, 124.18]], \"sentences\": [\"man is sitting on a seat of the car watching by the window.\", \" man is snowboarding on snowy slope making high jumps.\", \" men are in a dark room with pots.\"]}, \"v_BVhUKjJrEw8\": {\"duration\": 205.54, \"timestamps\": [[0, 4.11], [5.14, 175.74], [176.77, 202.46]], \"sentences\": [\"The credits of the clips are shown.\", \" Guys play polo sport on a dirt arena.\", \" The credits of the video are shown.\"]}, \"v_-c71seS8bWk\": {\"duration\": 213.37, \"timestamps\": [[0, 35.21], [35.21, 86.41], [87.48, 213.37]], \"sentences\": [\"An intro leads into a fox news segment with two anchors speaking.\", \" A woman is then interviewed followed by several pictures of mushrooms and people speaking with one another.\", \" A doctor examines a man and interviews the camera followed by people using household products and interviewing the reporter.\"]}, \"v_or7N8oeI-SY\": {\"duration\": 218.9, \"timestamps\": [[0, 3.28], [3.28, 50.35], [21.89, 33.93], [21.89, 25.17], [39.4, 76.61], [54.72, 99.6], [107.26, 119.3], [119.3, 159.79], [197.01, 211.23], [213.42, 218.9]], \"sentences\": [\"We see an opening screen on white.\", \" We see a lady sitting on the floor with a shoe, bucket of water, brush and soap.\", \" The lady shows us the items one at a time.\", \" We see an illustration of a thermometer.\", \" We see an illustration of a washer.\", \" The lady puts her shoe in the bucket and scrubs it with a the brush.\", \" She shows us the already cleaned shoe.\", \" We see a radiator illustration.\", \" The lady picks up the soap and we see an illustration of a shelf.\", \" The ending title screen plays.\"]}, \"v_zjAZ7m8TQ3E\": {\"duration\": 221.15, \"timestamps\": [[0, 28.75], [28.75, 60.82], [61.92, 81.82], [80.72, 221.15]], \"sentences\": [\"A woman and her child are outside of a cabin sitting on a wooden table talking to one another.\", \"The camera then pans the cabin and a large mountain of snow is shown.\", \"After,the woman and her daughter are seen on a flat standing ski lift with large donut tubes following behind them.\", \"Once they are at the top,they get into the tubes and race to the bottom along with several other people who are also at the place.\"]}, \"v_HGk9BqOuxCE\": {\"duration\": 190.89, \"timestamps\": [[0, 60.13], [49.63, 139.35], [140.31, 190.89]], \"sentences\": [\"A man is seen standing in front of a chalk board holding a musical instrument and transitioning to the chalk board every now and then.\", \" A person's hand is seen using an ipod followed by more shots of the person talking and writing on a paper.\", \" The man then plays the instrument as the camera captures him from several angles while pausing to speak.\"]}, \"v_EjRE-fbECtg\": {\"duration\": 80.81, \"timestamps\": [[2.42, 16.57], [7.68, 80.81]], \"sentences\": [\"A man in white shirt and gray shorts is standing at the center of the court, while young people in black tops and black shorts are standing behind him.\", \" The young people where standing in a triangle form, the young man at the center start to perform by having his arms up then jump and do it again and some of the girls followed what he is doing.\"]}, \"v_1o-Fx2dGfpc\": {\"duration\": 77.95, \"timestamps\": [[5.07, 23.77], [23.77, 73.27], [73.66, 75.22]], \"sentences\": [\"A woman is sitting down holding a violin.\", \" She lifts the violin up and starts playing it.\", \" She finishes and lowers the violin.\"]}, \"v_H_Spgfds1iY\": {\"duration\": 119.05, \"timestamps\": [[0, 12.5], [11.9, 58.33], [58.33, 97.62], [97.02, 119.05]], \"sentences\": [\"A large group of people are seen walking into an office and interviewing a man on television.\", \" Many people are watching the interview and one man speaks to a woman angrily.\", \" The woman strikes the man and more people are seen walking around and talking.\", \" The people walk into a bar and begin playing pool and speaking.\"]}, \"v_GYkKMTl-0Os\": {\"duration\": 62.69, \"timestamps\": [[0, 43.26], [19.75, 50.16], [49.84, 62.69]], \"sentences\": [\"A small group of women are seen standing around a kitchen with one stirring ingredients into a large pot.\", \" Another woman walks into frame when one woman pours more into the bowl and mixing it around.\", \" She hands a spoonful for a girl to try and another takes the bowl away from the table.\"]}, \"v_T3DSDybuBsU\": {\"duration\": 85.66, \"timestamps\": [[0, 34.69], [23.98, 65.96], [65.96, 85.66]], \"sentences\": [\"The camera pans around a large group of people holding bows and arrows followed by several shots of them shooting the arrows.\", \" Several man run across the field as they shoot arrows at them that lead into sword fights and people being injured.\", \" People throw sponges at a man, fist fight, and shoot more arrows at others.\"]}, \"v__dLbtK8_SHo\": {\"duration\": 213.23, \"timestamps\": [[21.32, 54.37], [54.37, 109.81], [109.81, 134.33], [134.33, 157.79], [157.79, 189.77], [189.77, 201.5]], \"sentences\": [\"The video is about a tennis tutorial and drill by Edgar Giffenig.\", \" There are two lady tennis players on a clay court who are demonstrating how to throw the ball up high to the partner.\", \" The player is shuffling behind the net and turning the racquet upside down in between the shots.\", \" Then the players demonstrate another drill as they shuffle on the tennis court in between shots and returning the balls.\", \" The player bounces the ball back with the tip of the racquet handle.\", \" They continue playing while demonstrating the tennis drill.\"]}, \"v_h1d-jcsWap8\": {\"duration\": 87.05, \"timestamps\": [[0, 50.49], [42.22, 87.05]], \"sentences\": [\"A person is seen peeling off potatoes into a box with pausing for a bit to speak to the camera.\", \" The person peels several potatoes and shows of a bowl full of potatoes while peeling even more.\"]}, \"v_8LTh7r2U8Fw\": {\"duration\": 157.11, \"timestamps\": [[0, 27.49], [29.06, 58.13], [59.7, 157.11]], \"sentences\": [\"An athlete walks onto a field outside.\", \" He runs with a javelin in the air.\", \" He throws the javelin as far as he can, repeating multiple times.\"]}, \"v_pV1b0Fs6qW8\": {\"duration\": 31.32, \"timestamps\": [[0, 15.35], [15.51, 31.32]], \"sentences\": [\"Three people are seen flying a kite in a field and text appears on the screen.\", \" A scary girl appears then leads into pictures of kids flying kites.\"]}, \"v_ZBZUrC4M5E8\": {\"duration\": 119.7, \"timestamps\": [[0, 9.58], [11.37, 16.76], [16.76, 25.14], [25.14, 65.24], [65.24, 93.37], [93.37, 119.7]], \"sentences\": [\"A buff man steps into a circle and puts the shot put on this shoulder.\", \"The man then spins around and throws the ball into the field.\", \"Once completed,he puts on a large neon shirt.\", \"Another man approaches the cirle and does the samething as someone comes to the field and measure how far the ball went.\", \"The contestants then come back and begin talking to each other before their scores are shown.\", \"An aerial view is then provided,then the camera pans the crowd.\"]}, \"v_lvAXZEUE0m8\": {\"duration\": 152.6, \"timestamps\": [[0, 42.73], [41.97, 132], [132, 152.6]], \"sentences\": [\"A man puts a harness on and steps on a bridge.\", \" He jumps off the bridge and bungee jumps over a body of water.\", \" A boat drives up and puts him in the boat.\"]}, \"v_bWYIL4KG8kM\": {\"duration\": 182.14, \"timestamps\": [[0, 11.84], [11.84, 182.14]], \"sentences\": [\"This girl is shown zooming in on people's teeth, eyes and other things on their face.\", \" Then she shows us the game of dodge ball is going.\"]}, \"v_soGmSXFO7wI\": {\"duration\": 119.21000000000001, \"timestamps\": [[0, 8.34], [11.33, 24.44], [29.8, 95.97], [97.75, 119.21]], \"sentences\": [\"A man walks onto a field before a crowd, holding a heavy ball into the air.\", \" He spins, then throws the ball as far as he can.\", \" A woman and several others follow, doing the same.\", \" The winners celebrate, holding up flags and hugging joyfully.\"]}, \"v_fgBFlwM466w\": {\"duration\": 191.5, \"timestamps\": [[0, 75.64], [79.47, 191.5]], \"sentences\": [\"A man is seen swimming in a pool holding various objects in his hands and showing how to put them on.\", \" He then swims down the pool with a breast stroke to the end and works his way back.\"]}, \"v_HRbBaePTCR8\": {\"duration\": 183.92, \"timestamps\": [[0, 79.08], [67.13, 183.92]], \"sentences\": [\"A man is driving a boat, then two men are sitting on the side of the boat, the man in black life vest is on the side of the boat then let go off the boat then start to wakeboard while he is holding on to the harness.\", \" The man continue to wake board, he flipped over and then wake board on the water.\"]}, \"v_AG6Rpvxxetg\": {\"duration\": 9.27, \"timestamps\": [[0, 9.27], [0, 8.25], [0, 3.24], [2.96, 6.9], [7, 9.27]], \"sentences\": [\"The video takes place in a gymnastics arena.\", \" A man is performing gymnastics on a beam while several others are watching.\", \" The man begins on the beam upside down.\", \" He then does several flips.\", \" The video ends as he performs a final flip and hops off the beam.\"]}, \"v_VHUC47iq1Wg\": {\"duration\": 212.02, \"timestamps\": [[0, 212.02], [12.72, 212.02], [24.38, 212.02], [39.22, 212.02]], \"sentences\": [\"Several clips of cricketers are shown.\", \" In them a someone throws a ball at a player.\", \" Another player hits the ball with his bat.\", \" Another player then catches the ball.\"]}, \"v_DCCD1fufXfY\": {\"duration\": 52.17, \"timestamps\": [[0, 8.09], [6.78, 30.52], [28.95, 52.17]], \"sentences\": [\"The little girl went out of the room.\", \" The boy get the bottle under the bed and is holding it and then drink it.\", \" The boy went back to bed and pretend to sleep while the girl went back in the room.\"]}, \"v_EVSuDXeNUYQ\": {\"duration\": 169.9, \"timestamps\": [[3.4, 53.52], [38.23, 162.26]], \"sentences\": [\"The cheer leading team walked towards the stage, while in the audience, their teammates, who are wearing red and white uniforms are cheering.\", \" The team started their cheer dance, where women are stood up on the the men's hands, they did pinwheels, jumped in the air, held some banners in the air, jumped high in the air and fell on their teammate's arms.\"]}, \"v_W80KSM1I47Q\": {\"duration\": 214.21, \"timestamps\": [[0, 4.28], [5.36, 111.39], [112.46, 144.59], [145.66, 214.21]], \"sentences\": [\"Video from the 1980's is shown.\", \"  Celebrities play a game of tug of war outdoors.\", \"  The team with Lou Ferrigno playing on it wins the contest.\", \" Ferrigno and other celebrities are interviewed.\"]}, \"v_Q9Fw56ZvXq4\": {\"duration\": 12.98, \"timestamps\": [[0, 1.17], [1.3, 6.62], [6.75, 12.98]], \"sentences\": [\"A group of girls are outside underneath a tent.\", \" A girl wipes off a yellow plate with a towel.\", \" Three girls are washing dishes in large tubs.\"]}, \"v_uwQDvcWzBy0\": {\"duration\": 156.53, \"timestamps\": [[7.83, 75.13], [61.05, 121.31], [118.18, 150.26]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her putting several ingredients inside a mason jar.\", \" The woman uses tongs to layer items into the jar and then puts a lid on top.\", \" The woman puts a ribbon around the side as well as a label and smiles to the camera.\"]}, \"v_UBDcmeET6ys\": {\"duration\": 30.54, \"timestamps\": [[0, 30.54], [0.46, 30.54]], \"sentences\": [\"Individuals are exercising on various equipment.\", \" A male and a female move back and forth.\"]}, \"v_gf3JIm2C59g\": {\"duration\": 103.49000000000001, \"timestamps\": [[16.56, 51.23], [51.23, 92.11], [92.11, 98.32]], \"sentences\": [\"There's a middle aged couple demonstrating how to do ball room dancing.\", \" They are in a room with large mirrors on a wall and hardwood floors.\", \" They are showing how to move the foot back and forth in rhythm while twirling their hips.\"]}, \"v_32EWNGHBctI\": {\"duration\": 64.6, \"timestamps\": [[0, 63.63], [4.52, 52.32], [12.27, 42.31], [42.31, 49.74], [51.68, 64.6]], \"sentences\": [\"A professional tennis match is played during a tournament.\", \" The players talk on headsets during the match.\", \" A man prepares to serve the ball to start the match.\", \" The man serves the ball and scores a point.\", \" The opposing team has a turn to serve the ball.\"]}, \"v_yhWw7oJrUFo\": {\"duration\": 133.19, \"timestamps\": [[0, 13.98], [13.32, 31.3], [31.3, 103.89], [103.89, 133.19]], \"sentences\": [\"A girl wearing a black blouse describes how to bake in a kitchen.\", \" The baker pours flour into a clear bowl using a measuring cup.\", \" The baker then scoops out four level tablespoons from a yellow container of cornstarch and ads it to the bowl of flour.\", \" The baker pours the flour and cornstarch mixture into a sifter and begins sifting the ingredients three times.\"]}, \"v_nbgE4MAR0pc\": {\"duration\": 20.39, \"timestamps\": [[0, 11.21], [9.38, 20.39]], \"sentences\": [\"A person is seen running down a long track while holding a pole.\", \" The person pole volts over the beam onto a mat and is shown again in slow motion.\"]}, \"v_1Y1pKGFm-pQ\": {\"duration\": 32.85, \"timestamps\": [[0, 5.91], [6.41, 10.18], [10.35, 28.41], [28.58, 32.85]], \"sentences\": [\"A young man puts lipstick on his lips.\", \" Two reporters talk in a TV set with audience.\", \" Then, the young man brush his face, then people in the audience talk.\", \" After, the young men shows his face with make up.\"]}, \"v_aAZSPRL18Ss\": {\"duration\": 78.23, \"timestamps\": [[0, 14.47], [14.08, 49.68], [49.28, 78.23]], \"sentences\": [\"An intro leads into a woman talking to a class sitting on bicycles and beginning to ride.\", \" She leads the class in a bicycle riding class and inspires her students to peddle hard like this.\", \" The people smile along with her as the camera pans over several shots of the people.\"]}, \"v_W4LIBSfe6bc\": {\"duration\": 60.11, \"timestamps\": [[0.6, 12.02], [12.32, 15.33], [15.63, 60.11]], \"sentences\": [\"A man does a tattoo on the waist area of a woman using a needle.\", \" The man cleans the area of the tattoo with a tissue.\", \" The man continues doing the tattoo and cleaning.\"]}, \"v_nY8a1E4QH5Q\": {\"duration\": 236.01, \"timestamps\": [[0, 227.75], [68.44, 175.83]], \"sentences\": [\"A dance class is choreographing a routine and everyone is generally in sync with each other.\", \"  They move back and forth, up and down, and shake their chests.\"]}, \"v_yJezvcXU4YE\": {\"duration\": 27.8, \"timestamps\": [[0, 3.06], [3.75, 12.92], [3.75, 17.93], [20.29, 20.57]], \"sentences\": [\"A man in a black vest is standing in a room.\", \" He throws darts at a dart board on the wall.\", \" A woman stands next to him watching.\", \" A man walks up and pulls the dart out of the board.\"]}, \"v_OzRxQDkrhTg\": {\"duration\": 65.43, \"timestamps\": [[0, 10.47], [10.14, 29.77], [29.45, 48.42], [48.42, 65.43]], \"sentences\": [\"Two teams are on the field playa game trying to score.\", \" One of the players on the blue team falls down on the field.\", \" Another blue player gets the ball from out of bounds, puts it on the line and hits back into the game.\", \" Te coaches start jumping with joy as well as the players.\"]}, \"v_1RYEOaCeV4k\": {\"duration\": 174.96, \"timestamps\": [[0, 17.5], [15.75, 164.47], [165.34, 174.96]], \"sentences\": [\"A lawn mower is shown on the ground.\", \" A man starts the lawn mower and begins mowing the lawn.\", \" They finish mowing the lawn and the lawn is shown.\"]}, \"v_h91i2x9Gouk\": {\"duration\": 142.06, \"timestamps\": [[0, 36.94], [41.2, 107.26], [97.31, 141.35]], \"sentences\": [\"A woman is seen speaking to the camera holding up various mops and presenting them to the camera.\", \" She then dips the mops into a bucket and washes them along the floor.\", \" She continues speaking while holding up the mops as well as taking them apart and showing how they work.\"]}, \"v_G5gvb71BB5I\": {\"duration\": 211.48, \"timestamps\": [[0, 4.23], [4.23, 12.69], [12.69, 118.43], [118.43, 211.48]], \"sentences\": [\"A group of males are standing in a room getting dressed.\", \"All of a sudden,plenty of women and beach activities including swimming,volleyball and drinking are shown.\", \"Next,the man reappears but he is joined by teammates playing a game of beach soccer in a stadium surrounded by people.\", \"One team wins and they are shown bringing home their trophy and cheering and then it goes back to showing the rest of the team competing.\"]}, \"v_gjkK_eSIs2g\": {\"duration\": 202.8, \"timestamps\": [[0, 152.1], [153.12, 164.27], [166.3, 199.76]], \"sentences\": [\"A man is bending over picking up a heavy weight several times in a row and setting it down.\", \" A man is measuring another mans arm length.\", \" The man measures the length of the weight bar.\"]}, \"v_DqHWMWY-r1o\": {\"duration\": 68.11, \"timestamps\": [[0, 40.18], [40.52, 60.95], [60.95, 68.11]], \"sentences\": [\" A person throw a heavy in an stadium full of people, then people measure where the ball landed.\", \" Then, the man walks while reporters and cameramen follow him on the field.\", \" After, the man puts on a long sleeve shirt while a cameraman film him.\"]}, \"v_5ObgpPDmVPA\": {\"duration\": 186.09, \"timestamps\": [[0, 11.17], [11.17, 168.41], [0, 186.09]], \"sentences\": [\"woman is in sea scubadiving and a man is behind her.\", \" they are watching the fishes and trunks.\", \" men are scuba diving under the sea.\"]}, \"v_makIgB4X3q8\": {\"duration\": 151.16, \"timestamps\": [[0.76, 7.56], [8.31, 11.34], [12.09, 18.14], [18.9, 27.21], [29.48, 44.59], [58.2, 77.85], [83.89, 96.74], [98.26, 151.16]], \"sentences\": [\"The credits of the clip are shown.\", \" A girl in a ponytail is speaking.\", \"The girl with her hair down is speaking in a bathroom and places her hand on the sink.\", \" The girl turns on the faucet to wet her toothbrush.\", \" The girl turns off the faucet, unscrews the toothpaste, and puts some toothpaste on her toothbrush.\", \" The girl brushes her teeth and spit in the sink.\", \" The girl rinse her toothbrush and places on the side of the sink.\", \" The credits of the video are shown on images of the video.\"]}, \"v_I5QbY8vlR54\": {\"duration\": 51.02, \"timestamps\": [[0, 13.26], [15.81, 43.62], [45.15, 51.02]], \"sentences\": [\"A large wave is crashing toward the shore.\", \" People are surfing behind the giant wave.\", \" The surfer maintains his balance as he surfs and goes beneath a second wave.\"]}, \"v_p3-tF0riSpQ\": {\"duration\": 110.18, \"timestamps\": [[0, 29.75], [31.4, 78.23], [65.56, 107.42]], \"sentences\": [\"A man is first seen speaking to the camera with text questions being asked to him.\", \" He is then seen putting a cleaner on his teeth and taking a bit of food.\", \" He continues speaking to the camera while occasionally eating food.\"]}, \"v_M7MDkkGdkas\": {\"duration\": 51.53, \"timestamps\": [[0, 7.73], [8.76, 43.8], [44.31, 51.53]], \"sentences\": [\"A woman is talking to a camera inside a kitchen.\", \" She turns on water, showing how to properly soap her hands.\", \" She then rinses and dries them.\"]}, \"v_reEjJfSUGa8\": {\"duration\": 218.04, \"timestamps\": [[0, 87.21], [76.31, 156.99], [153.72, 218.04]], \"sentences\": [\"The biker is cycling and jumping over the big ramps.\", \" The biker jumps in the ramp with his bike in front up.\", \" Four bikers raced and jumped over the ramps, the biker in white is leading in the race.\"]}, \"v_wvewX55VADs\": {\"duration\": 216.9, \"timestamps\": [[0, 65.07], [24.94, 111.7], [116.04, 207.14]], \"sentences\": [\"A man and a woman are standing in front of the camera and a woman shows how to properly perform the tango.\", \" She moves her feet in arms in a particular motion while the man does the same from a different angle.\", \" The man and woman finally piece together their instructions and perform the tango moves together.\"]}, \"v_Lt6waJFJWI0\": {\"duration\": 63.69, \"timestamps\": [[0, 15.92], [1.59, 14.65], [9.24, 14.65], [15.29, 21.02], [21.66, 28.98], [26.75, 32.48], [30.25, 41.72], [42.36, 61.15]], \"sentences\": [\"The players are holding a flat bat and running towards the balls.\", \" The players bounced the balls on the bat, some of them picked up the balls from the ground using the bat.\", \" The girl in blue jacket bounced the ball on her bat and she walked forward, but the ball fall on the ground.\", \" A girl in the black vest is picking up the ball from the ground using her bat.\", \" Two girls walked normally without chasing the balls.\", \" A girl on the field is trying to pick up the ball.\", \" The players are lined up and ready to pick up the balls from the ground using their bats.\", \" The players started to bounce their balls on their bat while running forward, some of the balls fell down on the ground and the players have to pick them up using the bat.\"]}, \"v_8CAvjawFn3w\": {\"duration\": 89.92, \"timestamps\": [[0, 14.84], [14.39, 40.46], [40.01, 65.64], [65.64, 89.92]], \"sentences\": [\"A man is on a galloping horse back riding for sport.\", \" Horse back riding is considered to be a sport, a fun one but still work.\", \" Like working with a team you have to work with a horse also, you have to communicate with a horse that doesn't speak.\", \" Make it know when you need to go faster, when it needs to jump and such.\"]}, \"v_esZMkzlZiuY\": {\"duration\": 64.95, \"timestamps\": [[0, 9.74], [10.07, 40.27], [42.87, 64.95]], \"sentences\": [\"A small group of people are seen pushing a ball along the water and scoring into the goal.\", \" The people continue playing with the ball and swimming along the water.\", \" The ball is passed another to score a goal and then the game continues on.\"]}, \"v_aRZd3O6-PKw\": {\"duration\": 97.89, \"timestamps\": [[0, 12.73], [12.24, 40.13], [40.62, 97.89]], \"sentences\": [\"A man is standing outside under a tent hitting a pinata with a stick.\", \"After about three strings,he moves and gives the stick to a  young girl with a grey and black dress on.\", \"Once she has the stick,she is hitting in the wrong direction and then is redirected towards the pinata and still ends up missing it.\"]}, \"v_pspJX3Lyys0\": {\"duration\": 96.85, \"timestamps\": [[0, 14.53], [14.04, 73.12], [73.61, 96.85]], \"sentences\": [\"An athlete is seen spinning around and throwing a discuss while men on the field run to track his score.\", \" The athlete walks away and another steps up and throws the discuss.\", \" Several more people step up to throw the object and ends with one athlete winning and walking away.\"]}, \"v_A_Rh4tMM2xY\": {\"duration\": 210.7, \"timestamps\": [[4.21, 182.25], [20.02, 70.58], [42.14, 104.3], [48.46, 115.88], [74.8, 210.7], [189.63, 210.7]], \"sentences\": [\"There are two kids on the swing set while two old ladies standing beside them swinging them.\", \" The old lady in pink top went away, while the other old woman in purple continues to swing the boy.\", \" The old lady in pink shirt went back with a piece of paper to fan some air on her, while a little kid is walking towards the front of the bench.\", \" The old lady in purple continues to swing the boy, while the old lady in pink top stood and rest her back on the red bar of the swing.\", \" The lady in pink top came in front of the other boy with white shirt, and talked to him, started to push him on the swing, give him a kiss and continue to swing him from the side of the swing.\", \" The littler girl near the bench sat to pick up something from the blue ground.\"]}, \"v_cjS2B52jBbU\": {\"duration\": 75.05, \"timestamps\": [[0, 7.88], [7.88, 36.02], [38.27, 67.54], [69.42, 75.05]], \"sentences\": [\"A man wearing glasses is on a stage.\", \" He throws darts at a board, trying to hit the target while the crowd claps.\", \" Another competitor appears, doing the same.\", \" The winner walks onto the stage as camera flash, celebrating.\"]}, \"v_2wC0d2XUses\": {\"duration\": 30.91, \"timestamps\": [[0, 16.53], [15.61, 30.91]], \"sentences\": [\"Two kids are seen playing a game of shuffleboard on the side of a boat while the camera watches.\", \" The kids continue taking turns while running up and down the path on the boat.\"]}, \"v_9DIDpTlfBWs\": {\"duration\": 163.03, \"timestamps\": [[0, 30.98], [30.16, 110.86], [120.64, 163.03]], \"sentences\": [\"A chef is standing in front of a table and begins turning on a stove with a pan on it.\", \" The man then mixes various ingredients together and finally putting the ingredients on the stove top.\", \" He finishes the plate by making an omelette and serves it on a plate and cuts it up.\"]}, \"v_9uieGqu2TYA\": {\"duration\": 232.48, \"timestamps\": [[0, 11.62], [11.62, 226.67], [226.67, 232.48]], \"sentences\": [\"A black intro screen appears and it contains white words that say \\\"Named Gymnastic Elements Parallel bars\\\", then \\\"MUSIC: Nightwish Where were you last night\\\", and the last screen includes foreign words an email and a website.\", \"Various short clips of different men on different parallel bars in gymnasiums are doing handstands, swinging on them and doing various other tricks as spectators look on.\", \"The last man on the parallel bars seems to be practicing in a gym with no large group of spectators looking on.\"]}, \"v_zJNYqTVWqyY\": {\"duration\": 203.73, \"timestamps\": [[0, 198.64], [6.11, 35.65], [35.65, 169.1], [93.72, 102.88], [126.31, 182.34], [178.27, 203.73]], \"sentences\": [\"We see a small dog in a bathtub with the title over the top.\", \" A person wets the dog and puts shampoo on it.\", \" The person washes the dog with their hands.\", \" They stand the dog up and wash him.\", \" They rinse the soap off the dog.\", \" We see the wet little dog from above.\"]}, \"v_pi2AaadXnnI\": {\"duration\": 144.96, \"timestamps\": [[0, 144.96], [55.81, 57.99], [87.7, 106.55], [113.8, 121.04], [136.99, 144.96]], \"sentences\": [\"A woman is cleaning clothes on a table.\", \" She pours a bucket of water onto the clothing.\", \" She picks up a brush and scrubs the clothing.\", \" She pours more water onto the clothing.\", \" She picks up the clothing and sets it next to her.\"]}, \"v_MinmayCk2Nk\": {\"duration\": 38.64, \"timestamps\": [[0, 9.08], [9.08, 10.82], [29.95, 35.16], [35.74, 38.64]], \"sentences\": [\"We see a male gymnast prepare to use the pommel horse.\", \" The man mounts the pommel horse and spins his legs around it.\", \" The man does a handstand and dismounts.\", \" The man takes a bow and starts walking away.\"]}, \"v_ksyr3tHc0Vs\": {\"duration\": 38.69, \"timestamps\": [[1.35, 17.21], [12.96, 35.4]], \"sentences\": [\"Various text intro leads into a man holding a shot put and spinning himself around.\", \" The man throws the object off into the distance as the camera follows it's throw.\"]}, \"v_JB3h1trZ1cE\": {\"duration\": 108.53, \"timestamps\": [[0, 14.11], [15.19, 47.21], [47.21, 62.95], [79.23, 100.39], [104.19, 108.53]], \"sentences\": [\"A man in a suit is talking into a microphone.\", \" People are water skiing in the water.\", \" A man falls down and is dragged by the boat through the water.\", \" A man turns around while water skiing and holds the rope with his foot.\", \" He crashes and falls into the water.\"]}, \"v_xootaiXcXZw\": {\"duration\": 171.9, \"timestamps\": [[0, 85.95], [43.83, 57.59], [79.93, 85.95], [85.95, 88.53], [88.53, 171.9]], \"sentences\": [\"Two men are doing Capoeira surrounded by a circle of people.\", \" The men take a break and being to perform for the people again.\", \" They shake hands and leave the circle allowing two other men to enter the circle.\", \" A man in blue and a man in grey greet each other in the middle of the circle.\", \" The other two men begin to perform Capoeira for the crowd.\"]}, \"v_xwu60huH3ds\": {\"duration\": 176.5, \"timestamps\": [[0, 1.76], [1.76, 171.2], [7.94, 20.3], [73.25, 77.66], [78.54, 84.72], [137.67, 142.96], [171.2, 176.5]], \"sentences\": [\"We see a dark opening screen.\", \" We see people grooming various dogs.\", \" We see a man fluff the fur on a large dog.\", \" We see a man blow dry a dog.\", \" We see a large black dog being blow dried.\", \" A man combs a dogs hair straight up.\", \" We see two dark ending screens.\"]}, \"v_2WKy0FvMtCM\": {\"duration\": 192.29, \"timestamps\": [[0, 8.65], [13.46, 64.42], [64.42, 70.18], [72.11, 94.22], [110.56, 119.22], [118.26, 141.33], [148.06, 154.79], [157.67, 174.02]], \"sentences\": [\"`A cookie is shown on a plate.\", \" Ingredients are being added to a glass bowl and being mixed together.\", \" Chocolate chips are added to the dough.\", \" The dough is flattened out onto a cookie sheet.\", \" Chocolate is drizzled over the top.\", \" Candies are placed on top of the cookie.\", \" The cookie is cut and placed on a plate.\", \" A fork is shown eating the cookie.\"]}, \"v_wZZUcxhISyE\": {\"duration\": 61.7, \"timestamps\": [[0.93, 6.17], [8.02, 38.87], [40.41, 61.7]], \"sentences\": [\"A woman is sitting in a booth.\", \" Her little girl shoves a vanilla ice cream cone in her face and laughs.\", \" The girl continues doing it, and the woman has to wipes her mouth and nose several times.\"]}, \"v_5rlLaok_U5M\": {\"duration\": 68.28999999999999, \"timestamps\": [[0, 2.73], [0, 68.29], [0, 49.51], [46.78, 49.17]], \"sentences\": [\"The player serves the birdie to start the match.\", \" Two teams compete in a badminton game in gymnasium.\", \" The teams have a long volley during the game.\", \" The player spikes the birdie down hard and scores a point.\"]}, \"v_Z-UR8n33TWc\": {\"duration\": 26.98, \"timestamps\": [[0, 4.32], [4.05, 7.82], [7.55, 26.98]], \"sentences\": [\"A sumo warrior is shown holding a pager.\", \" A larger sumo warrior is shown holding another pager.\", \" The sumo warriors face off and the larger one sits on and makes the smaller one disappear.\"]}, \"v_c7SweMMGQE8\": {\"duration\": 138.86, \"timestamps\": [[0, 66.65], [72.21, 138.86]], \"sentences\": [\"A camera pans around a picture of a horse followed by a person brushing and vacuuming hair off of a horse.\", \" The person continues brushing and vacuuming the hair and ending with the picture of the two together.\"]}, \"v_vJkL_4niC4w\": {\"duration\": 169.12, \"timestamps\": [[0, 169.12], [23.68, 167.43], [125.15, 167.43]], \"sentences\": [\"a man and a woman are sitting in front of a piano playing it together.\", \" people are gathered around the piano watching the people sitting on the piano.\", \" people on the piano stands and change the position in fornt of the piano.\"]}, \"v_6GIWY4-491k\": {\"duration\": 203.27, \"timestamps\": [[22.36, 52.85], [52.85, 93.5], [93.5, 119.93], [119.93, 138.22], [138.22, 153.47], [153.47, 171.76], [171.76, 185.99], [185.99, 195.14]], \"sentences\": [\"A man dressed in winter gear is sitting out in winter on a frozen lake.\", \" He is sitting there with fishing equipment fishing on the frozen lake.\", \" He uses a bait to fish and catches a mid size gray fish.\", \" He shows the two fish that he has caught.\", \" Then he puts his fishing net in a hole in the lake and continues fishing.\", \" He catches another dark gray fish and tosses it in his box.\", \" He continues fishing and catches more fish in that same hole.\", \" He collects the fish in a white bucket.\"]}, \"v_BH9zsAu6OMQ\": {\"duration\": 136.07, \"timestamps\": [[0, 136.07], [24.49, 36.74], [59.87, 114.98], [97.29, 136.07]], \"sentences\": [\"A woman stands on a track.\", \" She bends over on the track.\", \" She then runs down the track.\", \" She jumps and lands in the sand.\"]}, \"v_3oS_28utt2Y\": {\"duration\": 89.28999999999999, \"timestamps\": [[0, 9.82], [10.27, 73.67], [74.11, 89.29]], \"sentences\": [\"A man is sitting on a wave runner in the water.\", \" A person is surfing on a large wave in the water.\", \" The wave crashes over the surfer.\"]}, \"v_Lx_FcKpTZIw\": {\"duration\": 77.17, \"timestamps\": [[5.4, 37.43], [38.2, 63.67], [67.91, 77.17]], \"sentences\": [\"A woman is washing her hands over a sink.\", \" She rinses her hands off in the sink.\", \" She grabs a paper towel and dries her hands.\"]}, \"v_5N-PfYLyCpI\": {\"duration\": 169.54, \"timestamps\": [[0, 11.02], [15.26, 27.13], [29.67, 169.54], [39.84, 169.54]], \"sentences\": [\"Several people are hitting an instrument with sticks.\", \" Two men do flips in front of each other.\", \" Several more groups of people appear to be doing some kind of martial arts dance.\", \" They are surronded by clapping onlookers.\"]}, \"v_CP9NQpJD0-Y\": {\"duration\": 97.32, \"timestamps\": [[0, 42.82], [20.92, 42.82], [42.33, 89.04]], \"sentences\": [\"A man sits in a room and discusses.\", \" The man holds up a coffee cup while talking.\", \" The man takes a few drinks from the coffee cup.\"]}, \"v_O9HLR19is-A\": {\"duration\": 147.29, \"timestamps\": [[0, 30.93], [32.4, 147.29]], \"sentences\": [\"A man is seen sitting in a bumper car holding a thumbs up and then begins driving around.\", \" The people continue driving around bumping into one another and ends with them standing up.\"]}, \"v_opxLlaEPxqw\": {\"duration\": 117.03, \"timestamps\": [[0, 40.96], [30.43, 93.04], [77.82, 112.93]], \"sentences\": [\"An athlete is seen standing ready holding a javelin and throwing it off into the distance.\", \" Several more people are seen throwing a javelin with their throw being shown again afterwards.\", \" The camera pans around the woman in the end and shows off their score.\"]}, \"v_VTbMcI6nw54\": {\"duration\": 64.57, \"timestamps\": [[0, 63.93], [24.54, 63.93]], \"sentences\": [\"A man talks about coaching gymnastics.\", \"  A girl starts to do a routine on the uneven bars.\"]}, \"v_Hs1fGDcU6Js\": {\"duration\": 180.91, \"timestamps\": [[0, 47.04], [45.23, 134.78], [102.21, 175.48]], \"sentences\": [\"A man is seen kneeling on the floor and speaking to the camera.\", \" The man then flips over and begins doing leg exercises.\", \" His moves his body all around demonstrating proper exercises while still looking over and speaking to the camera.\"]}, \"v_xBGgX2PqAo8\": {\"duration\": 237.01, \"timestamps\": [[0, 1.19], [1.19, 13.04], [18.96, 220.42], [110.21, 119.69], [220.42, 237.01]], \"sentences\": [\"A man sets up a camera in a bar.\", \" The man then talks to the camera.\", \" The man shoots pool alone.\", \" The bearded man walks past the table.\", \" The man finishes and talks to the camera before turning it off.\"]}, \"v_s1WQ4zNikKA\": {\"duration\": 93.3, \"timestamps\": [[0, 53.18], [45.25, 93.3]], \"sentences\": [\"A camera pans around a shower and zooms in on a person shaving their legs.\", \" The camera watches her move her arms all around her legs while the water runs down the drain.\"]}, \"v_pvFviIF1VGc\": {\"duration\": 61.26, \"timestamps\": [[0, 3.68], [5.82, 16.85], [17.15, 46.25], [46.25, 56.97]], \"sentences\": [\"A person pours water to a cup.\", \" A woman talks in a bar showing liquor bottles.\", \" Then, the woman put ice in a glass, then she adds liquors from three bottles.\", \" After, the woman add soda and put a straw.\"]}, \"v_OzAqwPQ-APY\": {\"duration\": 63.62, \"timestamps\": [[0, 6.36], [6.36, 21.31], [21.31, 39.76], [39.76, 63.62]], \"sentences\": [\"A diver is in the ocean in the keys of florida, he has a a pumpkin in his hand.\", \" He goes down with another diver and they begin carving the pumpkins underneath the water.\", \" They are craving about five or six of them making different faces.\", \" Then they line them up and put some light inside or something as fish swim around them casually.\"]}, \"v_pHq6Eb280uM\": {\"duration\": 187.46, \"timestamps\": [[0, 42.18], [39.37, 129.34], [119.97, 179.96]], \"sentences\": [\"A close up of a fooseball table is seen followed by people holding onto the sides.\", \" The people play the game back and fourth while the camera captures their movements.\", \" The men continue playing on the table and the video fades to white.\"]}, \"v_l9XzNcLiMKc\": {\"duration\": 229.69, \"timestamps\": [[0, 229.69], [36.75, 105.66], [109.1, 117.14], [132.07, 186.05], [196.39, 218.21]], \"sentences\": [\"A man and a woman are standing at the counter of a kitchen.\", \" They pour ingredients into a large bowl and mix it together.\", \" They pour the mixture into two round pans.\", \" They then take the cakes and stack them together with frosting in between.\", \" They eat the cake at the end.\"]}, \"v_JZ9mgVXPD-I\": {\"duration\": 63.11, \"timestamps\": [[0, 50.81], [51.12, 63.11]], \"sentences\": [\"A young man plays drums on a stage with lights dancing in the background.\", \" He finishes and stands up playing air drums.\"]}, \"v_lSbbzsOjwno\": {\"duration\": 55.31, \"timestamps\": [[0, 18.53], [19.08, 55.31]], \"sentences\": [\"A young girl is seen scrubbing a small dog down with soap next to a tub full of water.\", \" She pours more soap onto the dog and drags him over and leads into pictures of the dog all cleaned.\"]}, \"v_Vh8RINfopdk\": {\"duration\": 56.98, \"timestamps\": [[14.82, 49.86], [0.85, 14.53], [15.1, 49.57], [50.14, 56.98]], \"sentences\": [\"A person applies paint designs to a red fingernail on a  plastic hand with a flexible black limb labeled \\\"nail trainer\\\".\", \"  A brown plastic hand with a black plastic arm appears with white fingernail tips and red fingernails.\", \"  A person's real hand appears and begins to apply white designs on one of the red fingernails on the plastic hand.\", \"  The scene then fades to a closeup of one finished red fingernail with a complete white design from the plastic hand.\"]}, \"v_vu65aIIJHtU\": {\"duration\": 132.03, \"timestamps\": [[5.94, 8.58], [11.22, 122.79], [77.9, 83.18]], \"sentences\": [\"Cars are driving on a road.\", \" People are snowboarding down a hill of snow.\", \" People get back into their car and put the snowboard on top of the car.\"]}, \"v_XuSWH1lfcvI\": {\"duration\": 57.63, \"timestamps\": [[0, 12.97], [12.39, 41.21], [40.34, 56.77]], \"sentences\": [\"A man is seen standing before a set of uneven bars with his arms up.\", \" He then jumps up on the beam and swings himself around.\", \" The man continues to swing around on the bars and ends by jumping off the side and walking away.\"]}, \"v_nwpz-KGn46A\": {\"duration\": 71.01, \"timestamps\": [[0, 37.28], [37.28, 71.01]], \"sentences\": [\"She then is shown performing several different exercises as well as riding on a bicycle and leading a class.\", \"More shots of her are shown riding on the bike and wearing a headset to speak to others.\"]}, \"v_a5WhYgyH_C0\": {\"duration\": 142.26, \"timestamps\": [[0, 142.26], [91.76, 142.26]], \"sentences\": [\"A man in a pink shirt is holding a cord in his hand.\", \" He starts vacuuming the carpet in front of him.\"]}, \"v_y4Y8gD1mpTw\": {\"duration\": 156.94, \"timestamps\": [[19.62, 34.53], [34.53, 63.56], [63.56, 86.32], [86.32, 102.8], [102.8, 120.85], [120.85, 142.03], [142.03, 150.67]], \"sentences\": [\"A woman is doing a tutorial on how to do water marble nails using water.\", \" She uses a nail polish brush and dips it in water.\", \" She gives the instructions on how to start with a base coat of nail polish.\", \" Then she puts drops of different colored nail polish on the water surface.\", \" Then she dips her nail into that paint.\", \" She cleans off any excess nail polish that has smeared on the side of the nails with a paint brush and Q-tip.\", \" She finally shares information about herself and her social media accounts.\"]}, \"v_ZoKode_Gexg\": {\"duration\": 47.81, \"timestamps\": [[0, 7.65], [9.32, 42.07], [43.03, 47.81]], \"sentences\": [\"A woman is in a kitchen, wearing a dress and pregnant.\", \" She is washing dishes in the sink and talking to the person with the camera.\", \" She smiles as the camera zooms in on her right eye.\"]}, \"v_djQnCU5MNJg\": {\"duration\": 8.36, \"timestamps\": [[0, 8.36], [0.29, 8.36], [0.54, 8.36], [1.09, 8.36]], \"sentences\": [\"A woman swings on a swing set.\", \" A baby swings beside her.\", \" They are both wearing red.\", \" The woman looks happy to swing.\"]}, \"v_xE43h7Kd9Oc\": {\"duration\": 215.62, \"timestamps\": [[0, 59.3], [60.37, 83.01], [85.17, 133.69], [133.69, 215.62]], \"sentences\": [\"Two boys are standing in a living room next to a tree and begin taking ornaments out of two plastic bins and decorating the tree.\", \"As the boys continue,the outside of the house is shown as rain comes thundering down.\", \"After,the boys receive help from a male and puts the tree topper on.\", \"Once that is finished,the young boys hug and kiss each other and the finish product of the tree is shown.\"]}, \"v_wfc_R5VnoHU\": {\"duration\": 38.17, \"timestamps\": [[0, 30.16], [0, 2.1], [2.29, 6.49], [6.68, 12.6], [12.79, 14.7], [15.08, 22.14], [23.1, 29.97]], \"sentences\": [\"Several animated people are in the water.\", \" Two people in scuba gear stand on the ledge of a platform while two other people watch from a platform above.\", \" The two people in scuba gear jump in the water.\", \"  One person in scuba gear holds on to the other person in scuba gear and does something to her tank.\", \" One person pushes the other one away.\", \" Several people in scuba gear gather with one person still in the background.\", \" The people in scuba gear struggle and one persons mask floats away.\"]}, \"v_oEdRUyN6Kfo\": {\"duration\": 41.47, \"timestamps\": [[0, 3.32], [3.32, 19.28], [19.28, 31.93], [31.93, 41.47]], \"sentences\": [\"A  large black dog and a little girl in a white blouse carries two hoolahoops in the living room.\", \" The little girl holds a hoola hoop in front of the dog and the dog walks through the hoolahoop.\", \" The little girl spins the other hoola hoop around her waste and spins it 10 or 12 times.\", \" The little girl walks up to the black dog and lets the dog lick her hand.\"]}, \"v_SBJWn8AjK-4\": {\"duration\": 60.3, \"timestamps\": [[0, 9.65], [9.65, 52.16], [52.16, 60.3]], \"sentences\": [\"Five boys are shown walking in a playground.\", \" The boys get onto the swings and begin to show how to do tricks.\", \" For the finale, all five guys get onto the swings and perform a back flip.\"]}, \"v_srSwfib_ogk\": {\"duration\": 134.84, \"timestamps\": [[0, 6.74], [8.76, 133.49], [18.2, 20.23], [86.3, 88.99], [115.96, 117.31]], \"sentences\": [\"A young woman gets in position to perform with a baton.\", \" She performs a gymnastics and twirling routine.\", \" She does cartwheels as part of her routine.\", \" She drops the baton, but picks it back up and continues with the routine.\", \" She loses her balance but is able to recover.\"]}, \"v_NO5J7RjTTTo\": {\"duration\": 43.56, \"timestamps\": [[0, 42.91], [6.1, 11.76], [11.76, 43.56]], \"sentences\": [\"Two boys at a young age are playing fooseball with each other.\", \" One grab the ball and puts it back into play.\", \" The boys continue to play the game back and fourth on the tabs.\"]}, \"v_JMJp9kFudNA\": {\"duration\": 156.75, \"timestamps\": [[0, 23.51], [23.51, 109.72], [109.72, 156.75]], \"sentences\": [\"A man is shown running around a field with a dog holding a frisbee into the hair.\", \" The man moves around the frisbee with the dog and performs several tricks in slow motion with the dog.\", \" He's shown in several more locations from various camera angles performing more and more tricks with the dog.\"]}, \"v_CvkyjR4yk60\": {\"duration\": 197.93, \"timestamps\": [[0, 160.32], [160.32, 197.93]], \"sentences\": [\"men are working in a tablein the background, a man in the center of the room start walking in circles and make break dance, a screen hanging is playing a rap video.\", \" the screen is playing a video and the credits are in the right side.\"]}, \"v_WiJMIl5Tp3A\": {\"duration\": 168.0, \"timestamps\": [[2.52, 24.36], [24.36, 28.56], [28.56, 31.08], [31.08, 68.04], [68.04, 110.04], [110.04, 147], [147, 161.28]], \"sentences\": [\"There are a few girls doing gymnastics in a gym.\", \" There's a young girl wearing an athletic tank top and shorts doing back flips in her backyard.\", \" She continues to back flips in a fast manner.\", \" She also does a back flip on the beach.\", \" Then she does some more back flips in her backyard and in a park.\", \" The girl then stretches her leg towards the back of her head to make her toes touch her head.\", \" Several pictures of the girl are shown where she has participated as a cheerleader and in many gymnastic events.\"]}, \"v_P0A0rMgjXGQ\": {\"duration\": 158.59, \"timestamps\": [[0, 19.03], [20.62, 72.95], [72.95, 124.5], [125.29, 144.32], [145.11, 158.59]], \"sentences\": [\"We see water on an opening screen.\", \" A man is measuring and cutting carpet while kneeling.\", \" The man adds a strip and puts a tool in the seam.\", \" The man runs a black item over the seam repeatedly then stands.\", \" We see the closing title screen.\"]}, \"v_IYbnF7LM2II\": {\"duration\": 139.34, \"timestamps\": [[4.18, 53.65], [41.11, 128.89]], \"sentences\": [\"Two men are seen running around an enclosed room holding tennis rackets and hitting a ball around the room.\", \" The men continue hitting the ball around the room while the camera continues to follow their movements.\"]}, \"v_pS-BoCsMcpQ\": {\"duration\": 131.52, \"timestamps\": [[0, 21.7], [21.04, 50.63], [49.98, 92.06], [92.06, 131.52]], \"sentences\": [\"Men are swimming more or less in sync with the volleyballs.\", \" They stop and get a in a circle in the pool and start throwing the ball between each other.\", \" After that they start to swim and throw for a little bit.\", \" After, they put it all together and every one joins in to play.\"]}, \"v_ok6LTNirAPo\": {\"duration\": 60.79, \"timestamps\": [[0, 11.55], [11.85, 37.08], [37.39, 60.79]], \"sentences\": [\"A child sitting at restaurant table places his hands in a dessert.\", \" The child uses his hands to eat the food.\", \" The adult keeps the child from spilling the food on the floor and helps feed him.\"]}, \"v_vWz90CichbM\": {\"duration\": 78.09, \"timestamps\": [[0, 6.25], [6.25, 59.35], [6.64, 57], [53.49, 59.35], [60.13, 78.09]], \"sentences\": [\"The video starts showing the company logo for a roofing company.\", \" A voice is heard reciting the steps to applying ridges on a roof.\", \" As the voice recites the steps, an older man is shown on video performing these steps to a roof.\", \" As the voice says the steps are complete, the final shot shows a close up of the completed ridges.\", \" The video ends with the company logo.\"]}, \"v_0D9EmyHxhcg\": {\"duration\": 194.47, \"timestamps\": [[0, 46.67], [46.67, 124.46], [124.46, 194.47]], \"sentences\": [\"Several people are in a skate part rollerblading with one another.\", \"The people then move out to scenic places and starts to roller blade throughout the city.\", \"More people begin to skate and they start to make ramps in the alley way and going tricks in a skate park.\"]}, \"v_ktYgm8bRK-g\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 6.81], [6.81, 25.74], [24.98, 48.45], [48.45, 86.31], [83.28, 136.28], [136.28, 151.42]], \"sentences\": [\"A woman begins walking down a cobble stone sidewalk with brown boots and then she is seen twirling a hula hoop.\", \"With the hula hoop,the girl begins flipping and dancing with it between her legs.\", \"She progresses and adds another hula hip and both of them go on at the same time.\", \"In her next setting,she has about five around her body and continues to dance.\", \"She continues to do the same thing with different amounts and with other body parts as people come and take pictures of her displaying her talent.\", \"Lastly, another small videos appears showing advertisements for the Jump Rope sisters youtube page.\"]}, \"v_zLbSEo4xhVY\": {\"duration\": 160.23, \"timestamps\": [[0, 7.21], [7.21, 60.89], [60.89, 65.69], [65.69, 70.5], [70.51, 152.23], [152.23, 160.24]], \"sentences\": [\"A special effect intro of a man airborn on a waterboard with the words MMXIV HYPERLITE COLLECTION is on the screen.\", \"A few men appear near the lake and then a series of different clips and men on water boards play one after another as they all waterboard quickly on the water and some are doing flips while holding onto the rope.\", \"A woman in pink shorts appears and she is briefly shown water boarding as well.\", \" Now a man is sitting on a boat while a large remote controlled airplane is flying towards him, and a standing man quickly grabs it before it hits the face of the sitting man, and the sitting man turns to the camera to give a shocked and relief look on his face.\", \"The clips of various people waterboarding shows up again and they are all still holding onto the rope while standing on the boards and doing jumps, flips and other tricks.\", \"The outro clip begins and it's similar to the intro.\"]}, \"v_dsgQVrJi71g\": {\"duration\": 123.14, \"timestamps\": [[4.93, 84.35], [86.81, 121.29]], \"sentences\": [\"A man plugs a mowing machine, then he pushes the mower to cut the grass in a backyard.\", \" After, the man cuts the grass on the borders with garden scissors.\"]}, \"v_lcwR7eA-VOY\": {\"duration\": 179.67000000000002, \"timestamps\": [[0, 80.85], [8.08, 79.95], [81.75, 140.14], [0, 179.67], [141.04, 150.92], [151.82, 158.11], [159.9, 179.67]], \"sentences\": [\"Two wrestlers are up on a ring arguing.\", \" The referee stands by, instructing them on what to do.\", \" They finally get to the arm wrestling.\", \" The crowd around them cheers on.\", \" A guy jumps onto the ring and begins to fight with one of the wrestlers.\", \" The man leaves the ring and the wrestler approaches the other wrestler and beats him to the ground.\", \" The wrestler celebrates his win.\"]}, \"v_I2Ctmi7C56k\": {\"duration\": 48.86, \"timestamps\": [[0.73, 48.86], [0.73, 3.42], [6.35, 21.98], [27.11, 48.86]], \"sentences\": [\"Two little boys rake leaves in a backyard while a little girl watches and walks with them as they rake.\", \"  The two little boys rake leaves with red handled rakes and a little girl watches them and hangs around while they rake.\", \"  The two boys start raking to the right of the lawn and the little girl runs behind them.\", \" The boys then turn around and begin raking to the right side of the lawn.\"]}, \"v_-06dWmCzbxY\": {\"duration\": 65.53, \"timestamps\": [[0, 65.53], [30.47, 50.46]], \"sentences\": [\"A person rides down a rapid on an inter tube in a group of friends on a rocky river.\", \" The people in the intertubes are helped along by a river guides in polo shirt.\"]}, \"v_lMYtmGRAn8k\": {\"duration\": 201.17000000000002, \"timestamps\": [[0, 53.31], [53.31, 111.65], [111.65, 146.86], [147.86, 197.15]], \"sentences\": [\"A boy is standing next to a playground jumping rope.\", \" A person is jumping rope on a white mat.\", \" A man is kneeling down on the ground in front of a red table.\", \" He gets up and starts jumping rope.\"]}, \"v_i2e67kStfk4\": {\"duration\": 23.34, \"timestamps\": [[0, 18.44], [18.55, 23.34]], \"sentences\": [\"A child performs on the double uneven bars, while flipping around the bars.\", \" Then, the child flips and land stand on the floor, then walks.\"]}, \"v_EBOT5e2xAoQ\": {\"duration\": 98.31, \"timestamps\": [[4.42, 47.68], [42.77, 88.48]], \"sentences\": [\"The video leads into several clips of track runners jumping over a bar with their jump being shown again in slow motion.\", \" Several more people are shown jumping over the bar with one hitting the bar and not jumping over.\"]}, \"v_EkwX8Swnut8\": {\"duration\": 231.29, \"timestamps\": [[0, 21.97], [21.97, 47.42], [47.42, 168.84], [142.25, 202.38], [202.38, 231.29]], \"sentences\": [\"A boy sits behind the wheel of car, driving and talking to the other passengers in the car.\", \"   The car travels down a winding highway as the camera pans between the people talking at the time.\", \"  The people in the car eventually arrive at a snow covered slope  where they don ski apparel and begin to ski on the slopesdoing flips,  going down hills and jumping off of elevated platforms.\", \" At one point of the boys falls on the ground and huddles in the fetal position on the snow.\", \" The scene then cuts to the boys back at home in the kitchen peparing things with a final image of a boy standing in the snow covered woods talking to the camera.\"]}, \"v_BfTjydFBQJU\": {\"duration\": 90.74, \"timestamps\": [[1.36, 28.13], [27.68, 60.8], [49.91, 88.48]], \"sentences\": [\"A small group of people are seen standing in a gym with a man leading in front.\", \" The man leads the group in an exercise class that involves a beam on the floor.\", \" The people move up and down the beam while the man claps and smiles at the group.\"]}, \"v_Q159fj3M9NM\": {\"duration\": 138.39, \"timestamps\": [[0, 15.22], [19.37, 114.86], [119.71, 138.39]], \"sentences\": [\"A gymnast runs, then flips several times down an indoor track.\", \" Other girls follow suit, flipping quickly  as they go.\", \" They dismount at the end, arms in the air.\"]}, \"v_YJxqF6aSs7s\": {\"duration\": 147.16, \"timestamps\": [[0, 13.24], [16.92, 67.69], [69.9, 116.25], [116.99, 147.16]], \"sentences\": [\"A man is holding a camera as he stands talking beside a lake.\", \" He goes through tunnels, walks along bridges, and stands over cliffs.\", \" He drives down a road and records rafting on a white water river.\", \" People are shown diving into deep waters off of cliffs before rafting again.\"]}, \"v_GTV4XlxawgE\": {\"duration\": 98.52000000000001, \"timestamps\": [[0, 32.51], [32.51, 55.67], [48.28, 55.67], [55.67, 98.52]], \"sentences\": [\"man is running in a roofed gym and doing a high jump.\", \" man is doing a somersault in a roofed gym.\", \" two woman are standing in the gym by the jumping man.\", \" man is doing a somersault in a roofed gym in a racetrack.\"]}, \"v_bRVazNYfpGE\": {\"duration\": 94.67, \"timestamps\": [[8.52, 22.25], [22.25, 43.07], [43.07, 81.89], [81.89, 94.67]], \"sentences\": [\"There's a girl gymnast dressed in purple leotards doing flips on a horse bar in a large indoor stadium filled with spectators.\", \" She continues doing front flips and twisting her body around on the horse bar.\", \" She walks the entire horse bar and then finally jumps off the horse bar to successfully end her round.\", \" As she jumps down and walks away, the crowd cheer and applaud loudly.\"]}, \"v_WxefBZ7Iaow\": {\"duration\": 151.57999999999998, \"timestamps\": [[0, 17.43], [17.43, 55.33], [55.33, 114.44], [114.44, 151.58]], \"sentences\": [\"A blue raft is shown and a group of people are shown throwing them up in a pile.\", \"Finally,they are by the water and about eight of them are sitting on the raft traveling down the water.\", \"After a certain distance,they encounter a rock and a large wave and they all flip out of the raft.\", \"The rafting continues and eventually they are all shown standing outside in a field in a large circle talking and drinking about a job well done.\"]}, \"v_U8SmnfsEzOc\": {\"duration\": 189.22, \"timestamps\": [[0, 189.22], [153.27, 169.35]], \"sentences\": [\"A man is taking a bike apart on a subway.\", \" He is putting a tire back on the bike.\"]}, \"v_lsIiSTG2pn4\": {\"duration\": 41.61, \"timestamps\": [[0, 41.61], [22.68, 27.67], [36.41, 36.83]], \"sentences\": [\"Ladies are playing volley ball outside.\", \" A female hits the ball twice.\", \" A lady touches a teammate's arm.\"]}, \"v_js9SDSngI7A\": {\"duration\": 113.34, \"timestamps\": [[23.8, 53.27], [53.27, 68], [68.57, 82.17], [79.9, 81.6], [83.3, 100.3]], \"sentences\": [\" A coach align a group of teens in a basketball court, the teen on front holds a basketball ball.\", \" Three teens run and a boy throws the basketball to the basket, then the second teen grabs the ball and pass the ball to two teens disputing to have the ball.\", \" Then, three more boys run to practice the same steps.\", \" A young man wearing a yellow t-shirt practice basketball on the other basketball goal.\", \" After, a group of three boys runs to practice basketball shooting and blocking.\"]}, \"v_beASFdYJFUU\": {\"duration\": 173.7, \"timestamps\": [[0, 13.03], [15.63, 53.85], [57.32, 146.78], [150.25, 157.2], [160.67, 173.7]], \"sentences\": [\"Women are playing indoor hockey and competing.\", \" They begin fighting over the inflatable pucks.\", \" They are shown talking to the camera about the game.\", \" The women are again shown playing hockey in a competition with one another.\", \" A close up is shown of the puck.\"]}, \"v_UYUvjnlU9Ho\": {\"duration\": 202.82999999999998, \"timestamps\": [[0, 202.83], [4.06, 15.21], [9.13, 23.33], [16.23, 49.69], [27.38, 31.44], [35.49, 65.92], [39.55, 55.78], [56.79, 75.05], [69.98, 124.74], [117.64, 171.39], [168.35, 202.83]], \"sentences\": [\"There are some people playing croquet in their backyard that is covered with fall leaves.\", \" There's a teenage boy and a teenage girl playing croquet on some wooden boards.\", \" They use their wooden mallet to hit the ball down the wooden boards.\", \" Another group of young teenagers are also playing croquet in the yard.\", \" One of the teens wearing a yellow shirt pretends his mallet is a guitar and plays it.\", \" The teens continue playing croquet as they take turns to hit the ball with the mallet while another boy is playing with a black and white cat.\", \" The teens continue playing while the cat watches them.\", \" The teen in the yellow shirt plays with the black and white cat.\", \" One of the teen pose and aims to hit the ball with his mallet while the two other teens watch him.\", \" They continue playing croquet as they take turns to hit the balls one by one with the mallets.\", \" One of the teens then just drops his mallet down while the two other teens give each other high fives.\"]}, \"v_Lh3dhueuKmQ\": {\"duration\": 145.4, \"timestamps\": [[0, 145.4], [29.81, 145.4], [132.32, 145.4]], \"sentences\": [\"A woman is putting wall paper on a wall.\", \" She smooths the wall paper with her hands.\", \" She is rolling the wall paper onto the wall.\"]}, \"v_aSFtL7YEbDE\": {\"duration\": 105.05, \"timestamps\": [[0, 12.08], [14.71, 59.35], [64.6, 105.05]], \"sentences\": [\"A group of people are on a neatly mown field.\", \" They are playing a game of croquette.\", \" They hit the balls through the hoops with mallets.\"]}, \"v_bTlfN4vJkiY\": {\"duration\": 22.87, \"timestamps\": [[0, 5.26], [6.06, 14.52], [14.98, 22.87]], \"sentences\": [\"A young boy is wearing a bandana and mowing a large yard.\", \" He walks away from the camera as he pushes the mower.\", \" He then suddenly stops, chasing the person with the camera and knocking them over.\"]}, \"v_nlXavqvgf6A\": {\"duration\": 150.35, \"timestamps\": [[0, 34.58], [34.58, 114.27], [114.27, 150.35]], \"sentences\": [\"A boy is sitting on a ramp with the flaps up on his dirt bike waiting to go on the course.\", \"The boy then comes back and begins moving the pedals on the bicycle and then stands up on the bike.\", \"Another angle is shown and the ramps are let down and the boy begins riding down the pavement.\"]}, \"v_T1T3UvwZcKU\": {\"duration\": 6.22, \"timestamps\": [[0, 3.27], [3.08, 6.22]], \"sentences\": [\"A young child is seen sitting a top of a slide with his tongue sticking out.\", \" He begins to go down the slide but falls off the side and is seen laying on the floor.\"]}, \"v_4uitkT3dDIM\": {\"duration\": 131.1, \"timestamps\": [[0, 131.1], [32.12, 61.62]], \"sentences\": [\"General technique is shown for throwing javelins.\", \"  He then shows how to do it with crossovers.\"]}, \"v_ozkDsQ1UY1k\": {\"duration\": 224.84, \"timestamps\": [[0, 43.84], [41.6, 160.76], [149.52, 220.34]], \"sentences\": [\"A close up of a pool table is seen followed by a man hitting a ball.\", \" Another man steps up with the pool stick to aim his shot and hits the balls.\", \" The men take turns back and fourth playing pool until one wins and the camera pans to a man watching.\"]}, \"v_yw9W5dZ6T18\": {\"duration\": 100.64, \"timestamps\": [[0, 97.62], [6.04, 28.68], [12.08, 69.44], [84.53, 100.64]], \"sentences\": [\"The man is standing in the kitchen.\", \" He grab a tong and a silver, metal bowl with vegetables in it.\", \" The ingredients on the counter are in white containers.\", \" the chef is holding a small piece of nut.\"]}, \"v_fGMZvLvAMK4\": {\"duration\": 224.49, \"timestamps\": [[0, 25.82], [25.82, 87.55], [87.55, 96.53], [96.53, 224.49]], \"sentences\": [\"A skier holds a ski stick in his left hand and a pole in his right hand.\", \" Then, the man ski down the hill covered with snow.\", \" The man stops in middle of the hill.\", \" Then, the man continues skiing until arrives to a city.\"]}, \"v_OSndW3d2XxU\": {\"duration\": 4.95, \"timestamps\": [[0, 0.67], [0.99, 2.82], [3.14, 4.95]], \"sentences\": [\"a man is on a field in a circle.\", \" He starts spinning a ball around in circles.\", \" He then throws the ball as far as he can, but falls down.\"]}, \"v_K8G5CBJtluY\": {\"duration\": 69.68, \"timestamps\": [[0, 62.02], [1.74, 8.36], [10.8, 17.77], [22.65, 28.22], [31.71, 69.68]], \"sentences\": [\"A young man lying prone on a tiled floor with this hands behind his head and his knees bent attempts to perform a sit-up in front of a few friends.\", \" As he brings his elbows towards his knees, a loud crack can be heard as the man laughs, \\\"That hurt my ass.\", \"\\\" He attempts a second sit-up and with another cracking sound, exclaims and grabs his buttocks.\", \" The man says, \\\"one more\\\" and attempts another time, after which he says, \\\"that felt horrible.\", \"\\\" The man struggles through nine more attempts before giving up to the amusement of his friends.\"]}, \"v_I41kmlYZmt4\": {\"duration\": 168.23, \"timestamps\": [[0, 30.28], [36.17, 132.9], [109.35, 162.34]], \"sentences\": [\"A close up of a hedge is shown as well as a man using a tool to cut the hedge.\", \" The man speaks to the camera and continues using the tool on the hedge.\", \" Several shots are shown of his surroundings as well as other tools you can use and more grass being cut.\"]}, \"v_7CeAzJF2z4o\": {\"duration\": 185.53, \"timestamps\": [[0, 17.63], [16.7, 185.53]], \"sentences\": [\"A intro leads to a young man wearing a backwards baseball cap playing the guitar on a bed.\", \" The man strokes his fingers up and down the neck of the guitar while strumming the string and looking down at the neck.\"]}, \"v_erevt6avST0\": {\"duration\": 117.42, \"timestamps\": [[0, 2.35], [2.35, 7.05], [7.05, 8.81], [8.81, 15.85], [15.85, 17.61], [17.61, 18.2], [18.2, 48.14], [48.14, 54.6], [54.6, 62.23], [62.23, 66.34], [66.34, 78.09], [78.09, 83.96], [83.96, 117.42]], \"sentences\": [\"A man is standing at a counter.\", \" The store front is shown to the door.\", \" the man is still at the counter talking.\", \" A man is runnign around a course with a gun.\", \" The man is still talkign at the counter.\", \" A man in the course is aiming his gun.\", \" The man at the counter is showing a particular gun.\", \" A man at the course is running around aiming and shooting his gun.\", \" The man at the counter is still holding the gun talking.\", \" The man on the course runs around and shoots.\", \" The man at the counter continues to talk with the gun in his hand.\", \" The man at the course peers around a corner aiming his gun.\", \" The man at the counter is talking and motioning with the gun in his hand.\"]}, \"v_l8boztVhl7w\": {\"duration\": 230.4, \"timestamps\": [[0, 78.34], [57.6, 177.41], [119.81, 222.34]], \"sentences\": [\"A countdown is shown that leads into a person scoring a basket in a game.\", \" More text are shown counting down a list and showing another person scoring a point.\", \" Several more shots are shown of people performing impressive sport tactics while the list counts down.\"]}, \"v_0_IShglbOQ4\": {\"duration\": 78.76, \"timestamps\": [[0.79, 24.02], [22.45, 53.95], [44.11, 73.25]], \"sentences\": [\"A young boy is seen holding onto a lawn mower and pushing it along the yard.\", \" The boy continues to push the mower around while the camera captures his movements.\", \" He pushes the mower back where he started and looks back to the camera.\"]}, \"v_jHbf_E8aY1k\": {\"duration\": 141.04, \"timestamps\": [[0, 36.67], [35.96, 94.5], [94.5, 141.04]], \"sentences\": [\"A white screen is shown and various logos are shown on top of the screen as it goes to a black screen.\", \"A sun is rising and men are walking up a hill,pulling a rope,and reading a book.\", \"They continue to do various hobbies in the mountains and a man comes back and starts talking as the credits begin rolling.\"]}, \"v_I9_eKiGZPxc\": {\"duration\": 170.95, \"timestamps\": [[0, 2.56], [3.42, 5.98], [8.55, 35.04], [35.9, 88.04], [41.88, 46.16], [51.28, 59.83], [55.56, 58.12], [71.8, 72.65], [80.34, 81.2], [89.75, 90.6], [104.28, 105.99], [127.35, 128.21], [128.21, 133.34], [132.48, 133.34], [135.05, 170.95]], \"sentences\": [\"The credits of the clip are shown.\", \" Vehicles are moving down a road.\", \" A lady stands and discusses.\", \" People are paddling down a rocky body of  water.\", \" A person tries to lift an individual back into the inflated boat.\", \" A lady walks away from the inflated boat.\", \" The lady used her hands to over her face.\", \" People that are sitting on an inflated boat raise their paddles.\", \" An inflated boat flips over and the occupants falls overboard.\", \" The lady takes off her helmet.\", \" A guy gives the lady her white sandals.\", \" The lady blows a kiss.\", \" Guys are playing soccer outside.\", \" Two red team players chest bump.\", \" The credits of the clip are shown.\"]}, \"v_Z90-HZ_geSI\": {\"duration\": 108.25, \"timestamps\": [[0, 22.19], [20.03, 84.44], [85.52, 108.25]], \"sentences\": [\"An intro leads into shots outside a dog groomers and inside where several dogs are tied it.\", \" Many woman are shown brushing the dogs and trimming their fur while giving them head scratches in between.\", \" More dogs are seen sitting in crates and barking at the camera while the wind blows on them.\"]}, \"v_kGxikShxkpQ\": {\"duration\": 77.18, \"timestamps\": [[1.93, 37.43], [29.72, 76.41]], \"sentences\": [\"Team mates are seen walking out onto a field surrounded by dozens of people and stand ready over a rope holding their arms up.\", \" The men then pull the rope against another team and end by falling down.\"]}, \"v__MYAaRrTeMQ\": {\"duration\": 5.02, \"timestamps\": [[0, 2.66], [1.53, 5.02]], \"sentences\": [\"A man is seen holding an axe and looking back to smile at the camera.\", \" The man then swings the axe down and hits a log of wood still smiling at the camera.\"]}, \"v_C7sabT8febk\": {\"duration\": 113.56, \"timestamps\": [[0, 27.82], [30.66, 113.56]], \"sentences\": [\"Paint is shown being mixed on a styrofoam plate.\", \" A hand draws on a piece of paper using a brush and the mixed paint.\"]}, \"v_KgONRjXP8_Y\": {\"duration\": 24.75, \"timestamps\": [[0, 3.09], [3.84, 18.81], [18.94, 24.75]], \"sentences\": [\"A person dips a paint brush into a pan.\", \" They use the brush to paint the side of a table.\", \" They use large strokes, continuing to paint.\"]}, \"v_sOyox_6AG1w\": {\"duration\": 117.97999999999999, \"timestamps\": [[0, 4.72], [4.72, 20.65], [20.65, 112.08], [112.08, 117.98]], \"sentences\": [\"An intro for a running video that says Running appears on screen.\", \" A lady commentates over a video of a huge sum of people completing a marathon in New York City.\", \" The video goes to show the top 5 events in the marathons history, The lady commentates over every event, as the video countsdown from 5 to 1 while showing the events occur, She explains every event in detail.\", \"The video concludes with an outro image.\"]}, \"v_bzndhMU3izM\": {\"duration\": 192.98, \"timestamps\": [[0, 3.86], [3.86, 168.86], [52.11, 101.32], [102.28, 167.89], [167.89, 192.98]], \"sentences\": [\"We we an opening screen for a product.\", \" We see a person shoveling their sidewalk.\", \" The man reaches the house and turns to finish the other side of the walkway.\", \" We see a person spraying an item on their sidewalk.\", \" We then see two closing screens.\"]}, \"v_aWz9H0jTv3c\": {\"duration\": 170.55, \"timestamps\": [[5.97, 34.96], [40.93, 125.35], [126.21, 170.55]], \"sentences\": [\"Two men are in an inside court.\", \" They play a game of racquetball together.\", \" They take turns hitting the ball back and forth against the wall.\"]}, \"v_feqYwvoENzk\": {\"duration\": 84.75, \"timestamps\": [[0, 35.6], [35.17, 84.75]], \"sentences\": [\"A woman is seen putting her hair up in a pony tail with a man watching her on the side.\", \" She then plays the piano while smiling  and the man continuing to watch her.\"]}, \"v_O8vPTn6Ho7w\": {\"duration\": 182.23, \"timestamps\": [[12.76, 31.89], [57.4, 65.6], [150.34, 152.16]], \"sentences\": [\"People are paddling in kayaks in a body of water.\", \" A man takes off in a green kayak.\", \" A man in a red jacket is talking to the camera.\"]}, \"v_dyobp97TugE\": {\"duration\": 181.14, \"timestamps\": [[0, 103.25], [63.4, 64.3], [119.55, 181.14]], \"sentences\": [\"A woman and a dog are playing on the grass with a frisbee.\", \" The dog has the frisbee in its mouth.\", \" The woman and the dog are playing with a rope.\"]}, \"v_qX7UMKN6ygM\": {\"duration\": 87.63, \"timestamps\": [[0, 8.33], [22.78, 32.42], [53.89, 58.28], [73.61, 87.63]], \"sentences\": [\"At the beach, a group of soccer balls lie next to a man who is kicking them at the goal, protected by a keeper.\", \" He boots them up and off his knee before shooting wide.\", \" He finally scores over the keeper.\", \" His final ball is saved once again by the keeper.\"]}, \"v_Wr69bnB86d0\": {\"duration\": 95.13, \"timestamps\": [[0, 30.92], [22.36, 54.23], [54.23, 74.68], [74.68, 91.8]], \"sentences\": [\"A man sits at a table and holds a screwdriver which he presses it against the tabletop.\", \" The man pretents to time himself and uses the screwdriver tool to pierce a hole in a full beer can that sprays some of its contents.\", \" The man holds up the can with the hole facing upwards.\", \" The man drinks the contents of the beer can from the hole after opening the top.\"]}, \"v_N8otQdjR96s\": {\"duration\": 182.63, \"timestamps\": [[0, 10.96], [14.61, 52.96], [53.87, 182.63]], \"sentences\": [\"A man is sitting at a drum set.\", \" He is playing the drums and cymbals, and talking to the camera.\", \" He shows the mechanics of the pedals and the effects on the drums as he uses them.\"]}, \"v_mTmcz5NWNQA\": {\"duration\": 184.6, \"timestamps\": [[0, 36], [39.69, 95.99], [102.45, 184.6]], \"sentences\": [\"A group of people riding bmx dirt bikes come down a path together.\", \" Then spin around, taking sharp turns and curves on the track.\", \" When the race is over, they walk around handing out medals and posing for photos.\"]}, \"v_uZpVDAd7da8\": {\"duration\": 22.25, \"timestamps\": [[0, 2.34], [2, 10.79], [2.89, 22.25]], \"sentences\": [\" person with scissors kneels in the grass.\", \" We see the shadow of the cameraman over the person.\", \" The person is cutting grass with child proof  scissors.\"]}, \"v_hP8wUI0qdaQ\": {\"duration\": 162.05, \"timestamps\": [[0, 28.36], [28.36, 162.05]], \"sentences\": [\"woman is talking to the camera in front of a large gym with a lot of estatic bikes in the background and people doing exercise.\", \" girl start doing exercise in the elliptical bike.\"]}, \"v_WFqm48C2BPk\": {\"duration\": 133.93, \"timestamps\": [[0, 19.42], [17.41, 94.42], [93.75, 133.93]], \"sentences\": [\"Various shots are shown of a boat riding along rough water conditions from several angles.\", \" The camera shows a board and leads back to the water, transitioning into people seen sitting inside the boat.\", \" The camera walks around more and captures views of the inside as well as the water.\"]}, \"v_ufK2mbJI0to\": {\"duration\": 170.3, \"timestamps\": [[0, 35.76], [28.1, 96.22], [93.66, 162.63]], \"sentences\": [\"A large group of people are seen running around a soccer field playing a game of soccer.\", \" The kids continue to kick the ball around one another while others watch on the side.\", \" More shots are shown of the game as well as people playing with one another.\"]}, \"v_jMQP5ePI4eQ\": {\"duration\": 181.51, \"timestamps\": [[0, 181.51], [12.71, 181.51]], \"sentences\": [\"A man in a white shirt is sitting down playing a guitar.\", \" Next to the man is a smaller screen of a black and white video of a man singing and a woman.\"]}, \"v_LcmTBkWvV74\": {\"duration\": 180.43, \"timestamps\": [[0, 36.99], [34.28, 180.43]], \"sentences\": [\"A close up a girl smiling and pointing to her face is shown followed by a pair of pliers piercing her inner lip.\", \" The piercer pushes the scissor through her lip while she holds it up and presents the piercing in the end.\"]}, \"v_BfnM0eyjB5Q\": {\"duration\": 185.62, \"timestamps\": [[12.07, 27.84], [27.84, 46.41], [46.41, 62.18], [62.18, 82.6], [82.6, 103.95], [103.95, 119.73], [119.73, 133.65], [133.65, 151.28], [151.28, 181.91], [181.91, 185.62]], \"sentences\": [\"A woman is giving instructions on how to install and adjust a saddle on a bike.\", \" She uses a Allen key wrench to loosen up the bolt.\", \" Then she demonstrates how she can move the saddle after she loosens it.\", \" She hits it with her hand to push the jammed saddle.\", \" Then she shows how to adjust the saddle by moving it back and forth.\", \" She later demonstrates how to remove the saddle off.\", \" She puts the new one on and then uses tools to tighten it back on.\", \" She uses a screwdriver to tighten the screws and adjust the level.\", \" She then shows another saddle and demonstrates how to tighten the bolts to adjust the level of the saddle.\", \" She shows how to tighten the bolt to make sure the saddle fits snugly.\"]}, \"v_P1Ve5WrfTb8\": {\"duration\": 78.95, \"timestamps\": [[0, 12.63], [12.24, 36.32], [33.55, 56.84], [56.45, 78.95]], \"sentences\": [\"A boy in grey throws a ball  at a a kid on the other side of the court.\", \" A boy in blue does an extraordinary flip in the air after catching the ball and lands.\", \" He throws the ball back at the other kid after landing.\", \" They are being watched by a group of kids standing behind them.\"]}, \"v_Cj3W6CW3Zbc\": {\"duration\": 61.65, \"timestamps\": [[0, 30.52], [31.13, 61.65]], \"sentences\": [\"Four men are working on the roof of a house.\", \" They are scraping the shingles off with shovels, knocking debris to the ground as they work.\"]}, \"v_dSHw52PBi5I\": {\"duration\": 148.82999999999998, \"timestamps\": [[0, 148.84], [0, 43.16], [25.3, 43.16], [43.16, 148.84]], \"sentences\": [\"People in an indoor pool watch on as multiple divers are taking turns and standing at the highest diving point with the word INDIANA on it as they do multiple flips before they land into the pool.\", \"A few woman take their turns jumping off of the highest diving point as they start in different ways, do multiple flips, then dive into the pool making small splashes as they hit the water.\", \"A blonde woman does a very slow handstand facing towards the pool, then pushes off and does multiple flips before she dives into the pool creating a small splash.\", \"When the women are finished diving, men take their turns diving from the highest point as well and they also do multiple flips before they hit the water creating a small splash.\"]}, \"v_zNpILhjhFbQ\": {\"duration\": 24.27, \"timestamps\": [[0.97, 17.83], [17.71, 19.17], [20.02, 22.32]], \"sentences\": [\"A person sits on a mat in a gym and does sit ups while holding her legs up.\", \" The person finishes the exercise routine and takes a break.\", \" A graphic is seen with a feather falling.\"]}, \"v_Yjkz62cLVdQ\": {\"duration\": 142.94, \"timestamps\": [[3.57, 15.72], [16.44, 126.5], [127.93, 142.94]], \"sentences\": [\"A man holds clips against a bracket placed on a wooden desk.\", \" He welds the metal bracket.\", \" The man finishes welding and picks up a stick from the wooden desk.\"]}, \"v_YVbMt3qsB3o\": {\"duration\": 61.49, \"timestamps\": [[0, 9.22], [8.92, 24.29], [24.59, 32.9], [31.97, 61.49]], \"sentences\": [\"A chubby man is standing outside in a field and throws a yellow medicine ball demonstrating exercising to strengthen athletes for shot put.\", \"The man is then pictured in a gym doing reps with the bar and then begins throwing a ball up against the tree.\", \"Another boy then begins throwing a bag of sand before the previous man comes back and starts using elliptical machines.\", \"Once finished,he returns back to a field and begins pulling the chain across the field and throwing kettle balls.\"]}, \"v_KiE-fFIz5ic\": {\"duration\": 214.76, \"timestamps\": [[3.22, 20.4], [22.55, 151.41], [151.41, 155.7], [184.7, 187.92]], \"sentences\": [\"A man in a hat is standing outside talking.\", \" People are practicing pole vaulting on a blue mat.\", \" A person is jumping over hurdles on a track.\", \" People are laying on a blue mat stretching.\"]}, \"v_WJwLjPDvLrY\": {\"duration\": 177.01, \"timestamps\": [[0, 25.67], [30.09, 140.72], [146.03, 177.01]], \"sentences\": [\"A group is on the beach, playing volleyball.\", \" They lob the ball back and forth over the net.\", \" The crowd cheers them on as they continue the competition.\"]}, \"v_PiDMuIRtgZo\": {\"duration\": 49.95, \"timestamps\": [[0, 49.95], [12.24, 17.98], [45.95, 48.45], [47.95, 49.95]], \"sentences\": [\"We see men playing hockey in an ice rink.\", \" A player in blue goes behind the goal close to the camera.\", \"  The hockey puck slips past the goalie and into the goal net.\", \" The goalie gets up off the ground.\"]}, \"v_-lJS58hyo1c\": {\"duration\": 35.3, \"timestamps\": [[0, 1.06], [3.88, 10.41], [10.41, 31.24], [31.94, 34.77]], \"sentences\": [\"A lady walks to a barbell.\", \" She bends down and grabs the pole.\", \" The lady stands and lifts the weight over her head.\", \" The lady drops the barbell and smiles.\"]}, \"v_KpoH4pBp9fg\": {\"duration\": 222.98, \"timestamps\": [[0, 12.26], [14.49, 31.22], [39.02, 181.73], [185.08, 222.98]], \"sentences\": [\"a woman is standing inside a dark kitchen, talking.\", \" She shows a cake cooling on a metal rack.\", \" She demonstrates how to mix the ingredients in a mixer, then bake the cake.\", \" When it is done, she turns it onto the rack to cool.\"]}, \"v_n04zQqQI3wQ\": {\"duration\": 68.13, \"timestamps\": [[0, 35.09], [35.09, 68.13]], \"sentences\": [\"woman is with two kids in snow in a open land and they are on a inflatable sliding down a mountain.\", \" kids walks with the inflatable on their hands through the field and run to the mountain again.\"]}, \"v_ciS5DtShxA8\": {\"duration\": 273.6, \"timestamps\": [[0, 17.78], [17.78, 56.09], [56.09, 151.85], [151.85, 228.46], [228.46, 273.6]], \"sentences\": [\"A young boy has on a black and white soccer jersey and is sitting down on the floor next to a bed and begins putting on a long black soccer sock.\", \"The young boy then reaches for his shin guard and puts it over his right leg and then folds his sock down over it.\", \"Once that is finished,he reaches over for his other sock and begins to do the same thing on the left leg.\", \"Finally,he moves to his cleats and grabs a pair of orange Adidas soccer cleats and ties them up.\", \"Everything is completed and the child sits criss-cross and begins talking to the camera.\"]}, \"v_bBXbFpJMveI\": {\"duration\": 175.73, \"timestamps\": [[0, 115.98], [29, 40.42], [43.05, 58.87], [63.26, 71.17], [115.1, 127.4], [133.55, 141.46], [142.34, 165.19], [166.06, 175.73]], \"sentences\": [\"We see men skateboarding near a parking lot.\", \" We see two men talking to each other.\", \" We see the man in khakis stumble and fail repeatedly.\", \" We see a man holding a cell phone and talking to the skater.\", \" The men shake hands and the cameraman points at the skater.\", \" We see the subscribe screen.\", \" We see people riding and see a man ride a red toy kids skateboard and the cameraman kicks it across the lot.\", \" We then see the ending screen.\"]}, \"v_cHHVpBYfwdU\": {\"duration\": 228.49, \"timestamps\": [[0, 43.41], [46.84, 111.96], [115.38, 194.21], [198.78, 228.49]], \"sentences\": [\"A man leans over the camera he has placed on a dog.\", \" The dog runs through different rooms of the house, then to the door and outside.\", \" They go for a walk outside with the people and other dogs.\", \" He returns home, and looks in his water bowl.\"]}, \"v_VN-BUL75x5Y\": {\"duration\": 117.19, \"timestamps\": [[0, 4.69], [5.27, 33.4], [33.4, 63.28], [63.87, 72.66], [72.07, 105.47], [106.06, 108.4], [108.99, 114.26]], \"sentences\": [\"A woman sitting on the floor talks to the camera while petting a dog.\", \" The woman holds up some sort of tool while talking to the camera.\", \" The woman uses the tool to brush the dog while talking.\", \" The woman sets down the tool and pets the dog while talking to the camera.\", \" The woman talks to the camera about the tool.\", \" The dog and women get up from the ground.\", \" A sped up process of drawing an owl emblem is shown.\"]}, \"v_M1dEZrQWeRY\": {\"duration\": 90.81, \"timestamps\": [[0, 10.9], [10.9, 21.8], [22.25, 32.24], [32.69, 90.81]], \"sentences\": [\"A skier uses a wind drone to propel him across a flat slope.\", \"The skier uses the wind drone to do a few passes on a flat area of a ski resort.\", \" The camera pans across the ski area  and views of the surrounding mountains.\", \" The skier does a pass by on a large flat area going very fast.\"]}, \"v_qJfhu80Ldgo\": {\"duration\": 15.12, \"timestamps\": [[0.15, 4.69], [4.99, 14.36]], \"sentences\": [\"A man squats down and lifts a bar of weights in a gym.\", \" He throws the bar down and it crashes into the floor and takes a deep breath.\"]}, \"v_5T7vTuJmYeQ\": {\"duration\": 11.36, \"timestamps\": [[0, 8.63], [8.46, 8.86], [9.14, 11.36]], \"sentences\": [\"A child swings on monkey bars.\", \" The child dismounts from the monkey bars.\", \" The child walks towards the camera.\"]}, \"v_LFbW1KVHT8s\": {\"duration\": 79.06, \"timestamps\": [[0, 11.07], [7.51, 28.07], [25.7, 46.65], [43.88, 79.06]], \"sentences\": [\"a elder man is on water standing on a jet ski.\", \" The man begins to jet ski.\", \" The man takes on hand off of the handle.\", \" The man places both hands back on the handle and jet skis.\"]}, \"v_QsRW8dj-F7M\": {\"duration\": 159.36, \"timestamps\": [[0.8, 50.2], [52.59, 122.71], [117.93, 158.56]], \"sentences\": [\"A mascot is seen running around a field as the camera pans around a large audience.\", \" Several mascots are seen holing sticks on a field walking around one another and leads into them chasing a ball.\", \" The group continues running around the field as the mascots continue to chase the ball one after the other.\"]}, \"v_W5cGKWhOTOU\": {\"duration\": 67.71, \"timestamps\": [[0, 8.13], [0, 17.94], [7.11, 30.13], [30.13, 57.89], [57.89, 67.71]], \"sentences\": [\"There are 3 people at a store in a shoe section and there are two people on the ground trying on boots.\", \" The man on the ground removes his pink boot, throws it on the side and stands up smiling.\", \"The girl grabs his pink boot, tries it on her right foot and sits there modeling it while talking to the people around her.\", \" The girl then grabs the left boot, removes the stuff in it, tries it on and stands up to model them.\", \" The girl stands next to the guy and they smile, she gives a thumbs up and he hugs her from behind.\"]}, \"v_wLcpMJv83XY\": {\"duration\": 169.0, \"timestamps\": [[0, 67.6], [67.6, 128.44], [129.28, 169]], \"sentences\": [\"A still image of a man dressed in an Under Armour shirt and a pair of slacks is standing in one spot in a bowling alley.\", \"The man finally moves and throws the ball down the Alley.\", \"After,an instant replay is shown of the video being chopped and screwed with a circle highlighting the ball before it is thrown down the lane.\"]}, \"v_-3Ss9jSRbKk\": {\"duration\": 67.66, \"timestamps\": [[0, 67.32], [0, 6.09], [6.09, 22.33], [27.07, 66.65]], \"sentences\": [\"A woman demonstrates how to do sit ups, in a gym room, using a woman who is simulating the exercise as an example.\", \"  A woman kneels on the hardwood floors of a gym room and talks to the camera.\", \"  The camera pans out and another woman is revealed lying on her back on a gym mat as the woman kneeling above her continues to talk.\", \"  The woman lying down demonstrates how to do a  sit up and the other woman continues to talk at times touching the other woman's stomach.\"]}, \"v_iFwmJi-I5sg\": {\"duration\": 78.51, \"timestamps\": [[0, 28.26], [16.49, 53.78], [51.81, 76.54]], \"sentences\": [\"A person is seen standing in the middle of a circle throwing a discuss off into the distance.\", \" The man walks back several times and is shown continuing to throw the object.\", \" The man continues to spin around while throwing the object off into the distance.\"]}, \"v_FayB7ZswnAw\": {\"duration\": 9.96, \"timestamps\": [[0, 9.96], [0, 9.81], [0.2, 9.96]], \"sentences\": [\"two men are standing in a court room playing squash.\", \" man is wearing white shirt standing in a court room.\", \" men are standing in a court room behind transparent doors.\"]}, \"v_ZZImcxqa1_w\": {\"duration\": 24.47, \"timestamps\": [[0, 3.67], [3.67, 9.06], [9.67, 16.15], [16.52, 24.47]], \"sentences\": [\"A little boy is standing outside on the sidewalk he has his arms behind his back holding something.\", \" Then out of nowhere is starts to spin the thing in his hand, it looks really dangerous.\", \" He starts to turn along with it when he catches a lot of speed.\", \" Then he suddenly loses control of it and he ends up falling to the ground.\"]}, \"v_bDkSq9T55RI\": {\"duration\": 40.4, \"timestamps\": [[4.85, 11.31], [11.31, 19.8], [19.8, 27.07], [27.07, 31.11], [31.11, 40.2], [40.2, 40.4]], \"sentences\": [\"A man wearing a red shirt is decorating a Christmas tree.\", \" He is using white lights to wrap the tree around to decorate it.\", \" He goes around the tree several times.\", \" Then he takes a gold colored garland and wraps the tree.\", \" Then he turns the lights on to light up the tree.\", \" He then stands besides the tree, pointing to it after the lights turn on.\"]}, \"v_nXD-q814KjI\": {\"duration\": 25.26, \"timestamps\": [[0, 19.45], [19.45, 22.61], [22.86, 25.26]], \"sentences\": [\"A man uses a hose to spray something vertically on a wooden wall.\", \" The man changes to spraying horizontally on the wall.\", \" The man manipulates the tip of the spray nozzle.\"]}, \"v_AA46-AbEGdk\": {\"duration\": 173.18, \"timestamps\": [[0, 160.19], [7.79, 82.26], [50.22, 96.11], [82.26, 117.76], [111.7, 125.55], [122.95, 160.19], [162.78, 173.18]], \"sentences\": [\"There's a girl gymnast dressed in shiny blue leotards performing gymnastics on a horse bar in front of many spectators in a large gymnasium.\", \" She gets on the horse bar and begins to do front flips and back flips.\", \" Then she does  twisted backs flip while landing securely back on the horse bar.\", \" She continues her gymnastic moves and then securely jumps off the horse bar and lands on the ground.\", \" After she gets off the bar, she goes and hugs her coach.\", \" Slow motion actions of her gymnastic moves are replayed to show how she landed back on the ground from the horse bar.\", \" Then the gymnast walks past the where the panel of judges are seated.\"]}, \"v_NVNUT5iwLtw\": {\"duration\": 101.43, \"timestamps\": [[0, 32.96], [31.44, 72.52], [54.26, 97.37]], \"sentences\": [\"A woman is seen sitting on a rock and grabbing laundry out of a bucket.\", \" She then rubs down the clothes with a rag while smiling to the camera.\", \" She continues cleaning the cloth by hitting it on cement and washing it down with water.\"]}, \"v_p8tlnMtsTf8\": {\"duration\": 123.14, \"timestamps\": [[0, 40.63], [33.25, 83.12], [81.27, 115.75]], \"sentences\": [\"A helicopter is seen driving over an ocean where people are seen surfing.\", \" Several shots are shown of people riding along the water and others sitting.\", \" The people continue riding along the water while the helicopter rides around.\"]}, \"v_M9uQCTr2-r0\": {\"duration\": 184.58, \"timestamps\": [[0, 40.61], [40.61, 71.06], [71.06, 107.98], [107.98, 124.59], [124.59, 184.58]], \"sentences\": [\"Young boys are shown playing ping pong with one another in a large gymnasium serving one after the other.\", \" Another boy walks up to the table and starts playing with the other boys, which then turns into a two versus two game of Ping Pong.\", \" The boys take turns serving back and forth scoring points at random.\", \" The boy that was first shown is playing a third game now that is being kept score of by an official and scores the first 4 points.\", \" The boy is playing yet another tournament with a different child in Ping Pong and seems to possibly be falling behind a little in points.\"]}, \"v_aQQr1ad0v1I\": {\"duration\": 188.99, \"timestamps\": [[0, 188.99], [0, 5.67], [6.61, 9.45], [10.39, 22.68], [22.68, 80.32], [81.26, 109.61], [110.56, 185.21]], \"sentences\": [\"A man is showing off his motorbike.\", \" He gives a small talk about his bike first.\", \" Then he drives his bike on the track.\", \" He then does quick demonstrations on how his bike moves and how it sits.\", \" He then talks more about his bike while sitting on his bike.\", \" He then drives around a flat dirt track while cutting a few times to his talks describing his techniques.\", \" He ends by talking about his bike some more.\"]}, \"v_Ye3u6ujLEl0\": {\"duration\": 199.69, \"timestamps\": [[22.96, 37.94], [55.91, 83.87], [87.86, 97.85], [98.85, 103.84], [141.78, 153.76], [177.73, 189.71]], \"sentences\": [\"A swimmer puts on a pair of goggles getting ready.\", \" The swimmer pulls a muscle in the pool and jumps up onto the pool deck and stretches out his leg.\", \" A swimmer dives off from a board into the water with a splash.\", \" The athlete swims in a lane and pulls himself along with the float line.\", \" The swimmer swims underwater and pushes off the pool floor.\", \" The swimmer does a butterfly stroke in the pool lane.\"]}, \"v_V1ntLwOfkyE\": {\"duration\": 56.15, \"timestamps\": [[0, 7.02], [7.3, 50.25], [4.21, 56.15], [52.5, 56.15]], \"sentences\": [\"A gymnast jumps onto a pummel horse.\", \" The gymnast performs many spins around the horse as he holds onto the two bars on the pummel horse.\", \" A couple of judges look on.\", \" The gymnast jumps off the pummel horse.\"]}, \"v_hkpYSfc5Ewc\": {\"duration\": 47.65, \"timestamps\": [[0, 15.25], [14.53, 47.65]], \"sentences\": [\"A gymnast is seen jumping onto a set of uneven bars and performs a gymnastics routine in front of a large crowd.\", \" The man flips around the beams and ends with him jumping down with his arms up and waving to the crowd.\"]}, \"v_Xag8E74bkpw\": {\"duration\": 81.1, \"timestamps\": [[2.03, 64.07], [24.33, 64.07], [68.93, 80.69]], \"sentences\": [\"A woman wearing a hat is seen sitting behind a large set of bongo drums.\", \" The woman plays on the drums continuously.\", \" The woman continues hitting the drums and ends by pointing to the camera and standing up.\"]}, \"v_UOkpGU7NAag\": {\"duration\": 53.82, \"timestamps\": [[0, 15.07], [14.8, 17.49], [17.22, 31.76], [41.71, 53.82]], \"sentences\": [\"A girl is going across a set of monkey bars.\", \" She gets to the end and stands on a wooden plank.\", \" She then goes back across the monkey bars in the other direction.\", \" She goes to another part of the playground and jumps up and down.\"]}, \"v_b-ex8bAnl5U\": {\"duration\": 204.43, \"timestamps\": [[0, 32.71], [33.73, 108.35], [108.35, 204.43]], \"sentences\": [\"man is in front of an automaic cashier and take some money of it, and go talk with some men in a room full of people.\", \"men are sittig in a blackjack table and are gambling in a casino and talking to each other while people is looking the game and walking around the table.\", \" dealing is spreading the cards and men fire up a tobacco.\"]}, \"v_Jb8YAhQ6EMk\": {\"duration\": 54.15, \"timestamps\": [[0.54, 51.71], [0.54, 24.37], [40.61, 53.61]], \"sentences\": [\"A woman washes a pot with soapy water while standing with her back to the camera at the kitchen sink.\", \"  The woman turns and talks to the camera while washing the pot and smiles a bit as the camera shakily catches the activity.\", \"  The woman rinses the pot off and then turns and holds it up in the air, dripping water, making a scary face, as if she is going to attack the camera man with it, but then turns away from the camera man and toward the sink counter.\"]}, \"v_csxC5H5uDb4\": {\"duration\": 47.17, \"timestamps\": [[0, 7.31], [7.31, 27.6], [27.36, 47.17]], \"sentences\": [\"Two individuals are in room painting and doing redecorating.\", \"Two men alternate going up and down on a ladder putting paste on the wall for the wall paper.\", \"These actions continue to take place until the whole wall is covered in white wall paper with large blue flowers on them as a girl sits down behind a row of books.\"]}, \"v_02yDi9BaDO8\": {\"duration\": 77.81, \"timestamps\": [[0, 77.81], [20.23, 77.81], [75.48, 77.81]], \"sentences\": [\"A woman in a red shirt is standing in a room.\", \" She starts working out on a blue mat.\", \" She stops and talks to the camera.\"]}, \"v_wBv1tu74S2E\": {\"duration\": 54.1, \"timestamps\": [[0, 11.36], [12.44, 47.88], [40.04, 47.88]], \"sentences\": [\"A gymnast stretches out and climbs onto a set of parallel double bars.\", \" The gymnast does a routine in a competition on the double bars with flips and turns.\", \" The gymnast dismounts from the equipment and lands on the mat.\"]}, \"v_-zHX3Gdx6I4\": {\"duration\": 50.34, \"timestamps\": [[0, 9.31], [9.82, 13.59], [14.35, 16.61], [18.37, 21.14], [22.15, 28.95], [13.09, 50.34]], \"sentences\": [\"A boy is running down a track.\", \" The boy lifts his body above the height of a pole.\", \" The boy lands on his back on to a red mat.\", \" The boy gets up from the mat.\", \" The boy celebrates by clapping and flexing both arms.\", \" A man stands and observes.\"]}, \"v_MYRsm8m9mk4\": {\"duration\": 141.25, \"timestamps\": [[9.89, 26.84], [26.84, 47.32], [47.32, 98.87], [98.87, 132.77], [132.77, 141.25]], \"sentences\": [\"There are several men playing tug of war on a sandy ground that is surrounded by mountains.\", \" They continue pulling the rope with force.\", \" Several spectators are watching them and cheering them as they continue to play.\", \" The players continue to pull the rope with concentration.\", \" Finally the victorious team raises their hands up and cheer and dance around in a circle.\"]}, \"v_4IRb308UjTA\": {\"duration\": 60.81, \"timestamps\": [[10.64, 11.55], [14.9, 17.03], [27.37, 32.84], [36.49, 45], [46.22, 48.35]], \"sentences\": [\"A woman opens the trunk of a car.\", \" She gets a spare tire out and sets it on the ground.\", \" She takes the old tire off.\", \" She puts the new tire on.\", \" She puts the hub of the tire on.\"]}, \"v_mbGDPga031E\": {\"duration\": 187.73, \"timestamps\": [[2.82, 55.38], [117.33, 124.84], [56.32, 108.89], [109.82, 179.29]], \"sentences\": [\"People play shuffleboard indoors and outdoors.\", \" A person observes when people plays shuffleboard in the street.\", \" A couple of old people play outdoor.\", \" Other people play shuffleboard pushing the balls in the triangle.\"]}, \"v_r5cjo7N6IEY\": {\"duration\": 38.89, \"timestamps\": [[0, 1.94], [2.92, 17.11], [18.86, 32.67], [33.45, 38.89]], \"sentences\": [\"A shadow is on the ground, caused by a designed shrub.\", \" A man is shown outdoors, showing off his multitude of decorative bushes in his yard.\", \" He clips and measures them to make sure they look their best.\", \" He finds two that look like boxers, and pretends to make them fight.\"]}, \"v_K-PpTJmmjhA\": {\"duration\": 208.56, \"timestamps\": [[1.04, 16.68], [17.73, 92.81], [92.81, 203.35], [204.39, 208.56]], \"sentences\": [\"An old woman talks in a costume shop.\", \" Then she puts a garment on the iron board, sprays water and iron the collar.\", \" After, the woman irons the sleeves of the garment and the body part.\", \" Next, the woman shows the ironed garment.\"]}, \"v_I_6Ok72DnJA\": {\"duration\": 51.48, \"timestamps\": [[0, 50.45], [1.54, 7.21], [11.07, 23.17], [22.39, 49.42]], \"sentences\": [\"A man is hanging wallpaper on a wall.\", \" He peels the sticky side from the backing paper.\", \" He is now applying the sticky side of the paper to the wall.\", \" He repeats this several more times on different parts of the wall.\"]}, \"v_GoVqtUSnshE\": {\"duration\": 224.3, \"timestamps\": [[0, 15.7], [21.31, 108.78], [111.03, 224.3]], \"sentences\": [\"A news woman is speaking from a news room.\", \" Then we see breaking news videos on the screen.\", \" A woman is shown drinking some kind of fluid on a dare, and the women take turns drinking the liquid.\"]}, \"v_cHdZ_dBVgDE\": {\"duration\": 97.87, \"timestamps\": [[0, 19.09], [19.09, 43.55], [43.55, 68.02], [68.02, 97.87]], \"sentences\": [\"A man and a woman dressed in black and red stand in the middle of a room surrounded by a very large amount of people sitting and watching them.\", \" They dance and dance  working very well together.\", \" They twist and turn and even do all kinds of nice moves together.\", \" The man bends down and swings the female across his back where she flips over and ends the dance.\"]}, \"v_hGUUlFxygmw\": {\"duration\": 229.48, \"timestamps\": [[0, 27.54], [26.39, 60.81], [60.81, 118.18], [113.59, 229.48]], \"sentences\": [\"A girl is sitting talking the the camera.\", \" The girl points the camera to the ground.\", \" A half manicure hand of another girl is seen on the floor.\", \" The first girl proceeds to polish the second girl's fingernails.\"]}, \"v_WvpiEwrWmWE\": {\"duration\": 169.85, \"timestamps\": [[0, 45.01], [45.86, 105.31], [105.31, 169.85]], \"sentences\": [\"A cheerleader perform graciously using a rod that spins in her right hand.\", \" Then, she takes another rod to perform and spins at the same time the rods.\", \" After, the cheerleader put one rod on the floor and continue performing only with one rod.\"]}, \"v_Bhz-WgJH8R0\": {\"duration\": 42.35, \"timestamps\": [[0, 42.35], [10.16, 19.91], [19.06, 34.52], [36.21, 42.35]], \"sentences\": [\"A group of skiers are riding down a hill.\", \" They split their line and create multiple lines.\", \" They split again to make 4 different lines.\", \" The all being and finish at the same time.\"]}, \"v_IZdVPuT8Hfs\": {\"duration\": 93.65, \"timestamps\": [[0, 52.44], [52.44, 93.65]], \"sentences\": [\"A person is helping a young  man to jump behind the rails of a bridge and check the belts.\", \"Then, the man jumps down the bridge.\"]}, \"v_8l7SuE4_lCk\": {\"duration\": 13.7, \"timestamps\": [[0, 3.36], [3.36, 10.07], [8.9, 13.56]], \"sentences\": [\"A young man is seen looking into the camera holding a toothbrush.\", \" The man then begins brushing his teeth in several shots.\", \" He continues brushing his teeth and showing off his mouth in the end.\"]}, \"v_CYj2ltxPNDo\": {\"duration\": 190.1, \"timestamps\": [[0, 9.51], [9.51, 148.28], [27.56, 55.13], [43.72, 144.48], [149.23, 166.34], [168.24, 190.1]], \"sentences\": [\"An athlete stands eagerly awaiting his turn while the judges prepare for his routine.\", \" A foreign commentator comments on his routine while he flips himself through the air.\", \" The man continues twirling and flipping on the bars for his gymnastic routine while audience members cheer loudly.\", \" The video slows down and shows the highlights of the routine in slow motion.\", \" The athlete rests on the couch while the judges finish their critiques.\", \" Eventually the man hears his score and smiles pleasingly.\"]}, \"v_E1b_DF716Q4\": {\"duration\": 178.84, \"timestamps\": [[3.58, 46.5], [47.39, 140.39], [140.39, 178.84]], \"sentences\": [\"A young girl is seen sitting in front of the camera with several objects being held in front of her face.\", \" Two hand pulls a tube through next to her and the woman then puts the tubes in the girl's hair.\", \" In the end the woman takes the tubes out and the girl continues to look at the camera.\"]}, \"v_ucR3VztMyeE\": {\"duration\": 30.58, \"timestamps\": [[0, 1.38], [1.38, 26.61], [9.33, 18.65], [22.02, 30.58], [26.61, 30.58]], \"sentences\": [\"A girl starts to climb the monkey bars.\", \" She starts climbing forward to the end.\", \" She has difficulties in the middle of the bars.\", \" A woman appears looking to help.\", \" She finishes the climb very happy.\"]}, \"v_7hRls13HJow\": {\"duration\": 132.54, \"timestamps\": [[0, 5.96], [6.63, 55], [24.52, 42.41], [42.41, 132.54]], \"sentences\": [\"A person is filming a house and a dog walking into frame.\", \" A small girl is washing the floor with a mop and talking to the camera man.\", \" The camera man talks to the girl about cleaning and why she likes it.\", \" The girl finishes washing the floor.\"]}, \"v_Ax8GCogz6Yg\": {\"duration\": 196.93, \"timestamps\": [[0, 10.83], [10.83, 17.72], [17.72, 35.45], [35.45, 44.31], [44.31, 188.07], [188.07, 196.93]], \"sentences\": [\"An introduction comes onto the screen for a video about a jump rope competition.\", \" One person is shown doing a set of jump rope tricks.\", \" Two people are then shown doing more jump rope tricks.\", \" Next, four people are shown doing jump rope tricks in the gymnasium.\", \" Next a variety of tricks are being shown done by several different people on the floor in the gymnasium.\", \" The video then ends with the closing credits.\"]}, \"v_ANuV_fDgI54\": {\"duration\": 223.35, \"timestamps\": [[0, 4.47], [5.58, 223.35], [4.47, 7.82], [182.03, 223.35]], \"sentences\": [\"We see a red opening screen.\", \" Men pole vault in an outdoor field.\", \" A mans's face on the left of the screen moves back and out of the shot.\", \" The camera angle changes and we continue to watch the men pole vault.\"]}, \"v_dzsSiqXxfpw\": {\"duration\": 156.22, \"timestamps\": [[0, 28.12], [29.68, 31.24], [34.37, 77.33], [76.55, 86.7], [86.7, 142.94], [142.94, 156.22]], \"sentences\": [\"A man is seen lecturing a crowd while holding several green Frisbees in his hand.\", \" After talking to the crowd he calls out and a dog runs out on the stage to him.\", \"Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees,than the man throws the Frisbees on the ground  and starts to play fetch with the dog.\", \" At one point the dog starts to jump off the mans back as he chases after Frisbees.\", \" Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he starts to spin the dog around.\", \" In the end the man performs a trick with the dog and makes him do a back flip and grabs him and takes him off the stage .\"]}, \"v_HysxcMFrTkc\": {\"duration\": 201.69, \"timestamps\": [[0, 12.1], [14.12, 42.35], [43.36, 178.49], [180.51, 201.69]], \"sentences\": [\"A group of men dressed as redcoats march onto a stage.\", \" We then see a woman holding a flag in the center and many women alongside her as they jump on a massive jumprope.\", \" They perform many jumping and flipping tricks with the ropes, bringing in more ropes every few minutes.\", \" When they finish, they freeze in a pose and the screen turns black.\"]}, \"v_FI_1dsErIXE\": {\"duration\": 151.57999999999998, \"timestamps\": [[0, 10.61], [11.37, 15.16], [15.92, 75.03], [75.79, 151.58]], \"sentences\": [\"A man holds a yellow canister as he clears a wood board.\", \" He sprays the wood with the yellow canister.\", \" He takes a rag and cleans the wood.\", \" He speaks as he showcases the wood and presses his fingers on the board.\"]}, \"v_c6Cbq-WNq9M\": {\"duration\": 192.77, \"timestamps\": [[0, 18.31], [26.99, 52.05], [77.11, 160.96], [176.39, 192.77]], \"sentences\": [\"The exterior of a building is shown, including a waving American flag near the front door.\", \" A man appears and talks about a tree near the front of the building.\", \" He then demonstrates how to trim the tree, picking off branches at eye level and using a tool for taller branches.\", \" The company hat is then shown on the step, surrounded by leaves.\"]}, \"v_mb2fWzNSob0\": {\"duration\": 200.95, \"timestamps\": [[0, 39.18], [10.05, 71.34], [40.19, 83.39], [82.39, 163.77], [131.62, 200.95]], \"sentences\": [\"At the center of sandy field, has the cows fighting at the center, while the audience are watching on the sides, sitting on the ground.\", \" Three men are supervising the bullfighting, the bull push each other with their horns.\", \" A man got off from his truck, the other man pulled the bull off of his truck, the bull are tied on a poles.\", \" Two men are holding each end of the rope as the black bull stumped on the ground.\", \" The bulls are fighting at the center of the field, and the people are watching, one bull ran towards the audience.\"]}, \"v_tXNycNfALsE\": {\"duration\": 133.41, \"timestamps\": [[0, 36.69], [30.02, 88.05], [84.72, 130.74]], \"sentences\": [\"A gymnast is seen looking off in the distance and rubbing her hands together.\", \" She puts her hands up and begins performing a gymnastics routine on a beam.\", \" She moves herself all along the beam and ends by jumping down and others applauding.\"]}, \"v_2OEc8kPVn_Y\": {\"duration\": 212.77, \"timestamps\": [[0, 34.04], [34.04, 113.83], [113.83, 212.77]], \"sentences\": [\"An Asian woman is standing outside in a large field wearing a pink loose linen like outfit.\", \"She then puts her legs and hands out and begins to move like a ninja throughout the field.\", \"After she has moved left and right across the field,she then comes back to the middle of the field and stands still to complete her routine.\"]}, \"v_NzMZlzy5Q9A\": {\"duration\": 100.1, \"timestamps\": [[0, 100.1], [0, 15.02], [14.01, 19.02], [31.03, 35.54], [39.54, 74.08], [74.58, 100.1]], \"sentences\": [\"Two sumo wrestlers are shown in a ring as spectators and a referee watch.\", \" The wrestlers crouch down and run into each other.\", \" They briefly wrestle while one man gets thrown out of the ring.\", \" The winner performs a hand signal with the referee.\", \" The loser walks in the back as they show a replay of the win.\", \" The video ends with the host interviewing the loser, and showing the sumo ring.\"]}, \"v_4ZyPBOe4P0U\": {\"duration\": 126.36, \"timestamps\": [[0, 26.54], [25.27, 27.8], [46.12, 112.46]], \"sentences\": [\"A man in a tan shirt is talking.\", \" He sets his tennis racket down on the ground.\", \" Another man runs around on a tennis court.\"]}, \"v_bH7ORYDcI7A\": {\"duration\": 190.38, \"timestamps\": [[17.13, 21.89], [21.89, 51.4], [51.4, 87.57], [87.57, 114.23], [114.23, 172.29], [172.29, 190.38]], \"sentences\": [\"A black and white dog is standing near the main door of a house as he listens to the sound of helicopter.\", \" Then main door then opens and the dog steps back.\", \" There are two dog trainers in an enclosed room training a dog to jump and catch several Frisbee.\", \" the male trainer throws the Frisbee at the dog and the dog jumps and fetches it for him.\", \" The trainer continuously throws the Frisbee and dog jumps high up and grabs the Frisbee every time.\", \" There are several different trainers shown training and teaching their dogs tricks.\"]}, \"v_rScqKu8Mwhk\": {\"duration\": 55.26, \"timestamps\": [[0, 4.42], [4.42, 49.18], [49.18, 55.26]], \"sentences\": [\"An introduction for a vacuum demo is shown on the screen.\", \" The video shows the vacuum being tested against several different challenges by a boy and his father.\", \" The video ends with a screen showing the logo for the vacuum company.\"]}, \"v_7VbXyfF3kEw\": {\"duration\": 137.65, \"timestamps\": [[0, 20.65], [19.96, 50.93], [50.24, 89.47], [89.47, 137.65]], \"sentences\": [\"Two women wearing matching outfits are on their microphones and kind of half watching a boy play with a rubix cube.\", \" The boy is solving the cube pretty quickly the girl seems pretty shocked.\", \" Then a group of people start trying to a puzzle to see who is the fastest.\", \" Another boy in a blue shirt come up and starts to solve it and when he does the girls give hime a prize.\"]}, \"v_7lwrP2ma2TU\": {\"duration\": 115.43, \"timestamps\": [[0, 17.89], [17.89, 93.5], [93.5, 101.58], [101.58, 110.81]], \"sentences\": [\"A person observes an old samurai temple.\", \" A man holds an arch and shoots arrows, while men sit on the road sorts arrows.\", \" Three small boards are fix on the ground, suddenly and arrow hits one board.\", \" People gather on a road, then a old man gives a white box to a man dressed in white clothes.\"]}, \"v_gi0wjdtxaC4\": {\"duration\": 64.46, \"timestamps\": [[0, 64.46], [9.99, 21.92], [21.92, 46.41]], \"sentences\": [\"A boy does cartwheels and back hand springs on the grass as a friend watches and records.\", \" He stops for a moment and takes a break then continues to do more flips.\", \" Another guy comes onto the screen and attempts to do some flips on the grass.\"]}, \"v_ru4NMIVZqrg\": {\"duration\": 187.22, \"timestamps\": [[0, 13.11], [14.04, 35.57], [37.44, 100.16], [101.1, 140.42], [142.29, 187.22]], \"sentences\": [\"A girl walks out of a room and down a hall.\", \" She puts down her duffel bag before lying down on a table.\", \" Someone hands her a cup and she drinks it, then they work on tattooing her tongue.\", \" A rod is inserted into her tonue and clipped, creating a piercing.\", \" She sticks out her tongue at the camera, showing off her piercing.\"]}, \"v_r09mVf2dQnk\": {\"duration\": 76.67, \"timestamps\": [[4.6, 13.8], [20.32, 44.85], [47.54, 68.62]], \"sentences\": [\"A custodian sprays the counter of a sink with a spray bottle.\", \" The worker uses a brush to clean out the sink.\", \" The worker uses a hand towel to clean out the liquid in the sink.\"]}, \"v_ot4CuJqrN-Y\": {\"duration\": 99.82, \"timestamps\": [[0, 15.47], [18.97, 60.89], [65.38, 99.82]], \"sentences\": [\"A group of band mates are outside at a park.\", \" They are wearing revolutionary war era outfits.\", \" They play the drums in unison to a beat.\"]}, \"v_8TqqLqBb3sk\": {\"duration\": 43.84, \"timestamps\": [[0, 14.25], [16.66, 23.45], [26.3, 43.84]], \"sentences\": [\"A woman is standing in a kitchen while talking.\", \" She shows a bag, pushing on it with her fist.\", \" She closes it up, and shows how it stays in shape.\"]}, \"v__cU5aISTDBo\": {\"duration\": 44.49, \"timestamps\": [[0, 44.49], [11.34, 20.02], [20.24, 24.47]], \"sentences\": [\"People are standing on a field of grass.\", \"  A man picks up a long pole and starts running down a track.\", \" He jumps over a high bar and lands on a mat.\"]}, \"v_ij87GXkcdho\": {\"duration\": 203.87, \"timestamps\": [[1.02, 48.93], [38.74, 139.65], [122.32, 200.81]], \"sentences\": [\"Several people are seen riding on exercise equipment while speaking to the camera.\", \" A man is seen speaking to the camera while more shots of the equipment are shown.\", \" People move all around the machine and lead with the man speaking more and showing how to adjust the machine.\"]}, \"v_3FUVKpQA6IY\": {\"duration\": 129.59, \"timestamps\": [[0, 16.2], [16.85, 47.3], [47.3, 97.19], [97.19, 129.59]], \"sentences\": [\"Some people are playing beer bong having a good time, the man throws fist and he makes it into the girls cup.\", \" She drinks her drink and then wets her ball in water before throwing her ball.\", \" Then, she takes a seat and the other guy takes his turn.\", \" Then it's the girl on the other teams turn, they keep taking their turns and drinking away, having a good time.\"]}, \"v_IytPbGtfo14\": {\"duration\": 81.94, \"timestamps\": [[0, 81.94], [7.78, 9.42], [31.55, 46.71], [51.22, 68.83], [70.88, 74.98], [76.21, 78.67], [80.31, 81.94]], \"sentences\": [\"We see a lady behind a bar talking.\", \" The lady pours ice in glass.\", \" The lady pours three shots of liquor into a cup.\", \" The lady pours other stuff in and shakes it.\", \" The lady pours the pours the drink into a glass.\", \" The lady adds some red stuff.\", \" The lady holds the glass and smiles.\"]}, \"v_8pR6NBu7Ay0\": {\"duration\": 196.49, \"timestamps\": [[0, 19.65], [23.58, 74.67], [78.6, 196.49]], \"sentences\": [\"The outside of a box containing a gun is shown.\", \" A man is joined by two others in front of a display of guns.\", \" They talk about the guns, then join a game of paintball outdoors, hiding behind obstacles as they shoot at each other.\"]}, \"v_J7LhH4IKvnM\": {\"duration\": 102.49000000000001, \"timestamps\": [[0, 84.04], [27.67, 49.2], [49.2, 85.58]], \"sentences\": [\"A large dog is standing in a bath tub.\", \" A woman in a pink shirt is scrubbing the dog with soap.\", \" She then starts washing the dog with a hose.\"]}, \"v_8EGM3zcvjs8\": {\"duration\": 186.74, \"timestamps\": [[0, 39.21], [38.28, 186.74]], \"sentences\": [\"Eight people are standing at the studio, one woman walked at the back of the group.\", \" The group started dancing, swirling, shaking their hips, rotating, their arms and hands are moving from side to side, in front.\"]}, \"v_Z2b84JjYdtw\": {\"duration\": 30.35, \"timestamps\": [[2.43, 13.96], [14.11, 23.37]], \"sentences\": [\"A slide of pictures shows performing a marching band and girls moving around.\", \" Then, marching bands play and girls perform holding flags.\"]}, \"v_M1SUIrWykRs\": {\"duration\": 58.31, \"timestamps\": [[0, 52.18], [53.64, 58.31]], \"sentences\": [\"Several people are surfing on a large wave in the water.\", \" A man and a little girl are swimming in the water.\"]}, \"v_giN7cA0EmLs\": {\"duration\": 117.67, \"timestamps\": [[0, 40.6], [36.48, 117.67]], \"sentences\": [\"A group of people are seen riding around in tubes while pushing themselves down a diver.\", \" The people continue to ride in the tubes down the river while looking towards the camera as well as laughing and smiling.\"]}, \"v_3LrLgh2rlAM\": {\"duration\": 15.25, \"timestamps\": [[0, 15.25], [1.75, 7.24], [8.31, 13.34], [13.19, 15.25]], \"sentences\": [\"A man wearing black is in a gym.\", \" He picks up some heavy barbells.\", \" He lifts the barbells over his head.\", \" He then drops the barbells onto the ground.\"]}, \"v_iRp-pWnPoYw\": {\"duration\": 187.06, \"timestamps\": [[16.84, 24.32], [43.02, 45.83], [167.42, 179.58]], \"sentences\": [\"A man walks out of a building and starts skateboarding.\", \" He is skateboarding in between cars.\", \" He walks into a building and sits down at a computer.\"]}, \"v_23-lat1nVJg\": {\"duration\": 10.18, \"timestamps\": [[0, 5.7], [5.8, 10.18]], \"sentences\": [\"We see a lady knitting and singing.\", \" We then see a ad for a beer.\"]}, \"v_Vk-aKj0R65o\": {\"duration\": 180.07, \"timestamps\": [[0, 81.03], [94.54, 180.07]], \"sentences\": [\"Two people are in a room, wearing fencing equipment.\", \" They fight with swords, passing back and forth as they jab at each other.\"]}, \"v_ooWk0EL6I7o\": {\"duration\": 21.29, \"timestamps\": [[0, 16.93], [0, 10.97], [16.29, 18.1], [18.1, 21.29]], \"sentences\": [\" A lady and a man kneel in a curling ring.\", \" They talk to each other and a broom enters the scene.\", \" they start to move forwards.\", \" The man stops and the lady stumbles.\"]}, \"v_Cb_R59_-0zU\": {\"duration\": 99.99000000000001, \"timestamps\": [[0, 33], [33.5, 66.99], [67.49, 99.99]], \"sentences\": [\"A man starts doing different things such as sneezing,cooking,using the restroom,and washing his face indicating when to wash your hands.\", \"A female then comes along and walks to a sink in the kitchen and begins to lather her hands.\", \"She then turns on the faucet and rinses her hands,dries them,and puts the napkin in the trash can.\"]}, \"v_jpSbO4LrEnc\": {\"duration\": 13.4, \"timestamps\": [[0, 4.96], [4.69, 13.4]], \"sentences\": [\"A person is seen wearing a back pack and riding away from the camera on roller blades.\", \" The person then rides back and hangs onto a sign swinging himself around then smiling at the camera.\"]}, \"v_Mk9n7isIyBs\": {\"duration\": 136.32999999999998, \"timestamps\": [[4.77, 16.36], [16.36, 29.31], [29.31, 60.66], [60.66, 81.79], [81.79, 97.47], [97.47, 110.42], [110.42, 130.87], [130.87, 136.32]], \"sentences\": [\"A woman wearing a pink and white shirt and black tights is standing in her front yard.\", \" She is holding two batons in her and twirling them.\", \" She twirls her body and turns around several times as she twirls the batons in both her hands.\", \" She also moves her foot back and forth and walks and lifts her foot as she twirls.\", \" She then throws the baton from underneath her leg and catches it with her other hand.\", \" she continues twirling the baton near a shady tree.\", \" she turns her entire body around as she twirls the batons.\", \" She finally bows down and holds the baton straight in her hand.\"]}, \"v_FCYdwCXRNVI\": {\"duration\": 83.24, \"timestamps\": [[0, 78.67], [16.65, 19.15], [26.64, 29.14], [40.79, 43.29], [68.26, 71.17], [80.75, 83.24]], \"sentences\": [\"We see a person welding in the dark.\", \"  The person pauses and adjusts his helmet.\", \"  The man lifts his helmet briefly.\", \" The man lifts and lowers his helmet.\", \"  the man looks out from under his helmet.\", \" The man finishes and lifts his helmet.\"]}, \"v_QLVgy-1ydr0\": {\"duration\": 215.39, \"timestamps\": [[0, 11.85], [0, 190.62], [71.08, 73.23], [105.54, 106.62], [114.16, 117.39], [120.62, 121.69], [129.23, 159.39], [160.46, 162.62], [163.7, 168], [169.08, 174.47], [179.85, 184.16], [191.7, 196], [197.08, 201.39], [205.7, 215.39]], \"sentences\": [\"A male attaches a hollow stick on a bull whom chases him.\", \"  A guy messes with a bull.\", \" A bull pushes a man down.\", \" The audience claps while standing.\", \" The bull is lured into a pen and the gates are close.\", \" The male gives a thumbs up and smiles.\", \" A male attaches two hollow sticks on a bull and runs off.\", \" The bull tackles the male.\", \" The male gets up and his face is bloody.\", \" People help the male and carry him away.\", \" The male leaves a black shoe behind.\", \" People discuss in a circle.\", \" The man nods his head.\", \" People walk off the rodeo dirt and the man covers his nose.\"]}, \"v_fZ_CmvF-_No\": {\"duration\": 226.02, \"timestamps\": [[0, 29.38], [29.38, 220.37], [220.37, 226.02]], \"sentences\": [\"A team of competition cheerleaders come running out into the field and get into formation.\", \"The girls squat down and they begin to do their cheer which consists of several stunts,tricks,and jumps across the mat.\", \"Once they are finished,the girls end in a stunt and the stunt man runs out to the group.\"]}, \"v_2cUJTeArPsI\": {\"duration\": 14.54, \"timestamps\": [[0, 14.54], [0, 14.46], [0.07, 14.54]], \"sentences\": [\"little kid is hanging from a pole in a playground.\", \" playground is shown in a dusty field in a big park.\", \" little kid is wearng pink shirt and is hanging from a side to side.\"]}, \"v_0UcBldDI0RA\": {\"duration\": 156.57, \"timestamps\": [[12.53, 17.22], [17.22, 27.4], [27.4, 46.97], [46.97, 57.93], [57.93, 85.33], [85.33, 100.21], [100.21, 116.65], [116.65, 117.43]], \"sentences\": [\"Joe Morin from Titan alloy is talking about welding aluminum.\", \" He is doing a tutorial on how to fix aluminum.\", \" He shows a new product called Nova, which is an electrode for cleaning dirty aluminum.\", \" He shows two aluminum plates that are joined together for demonstration purposes.\", \" He takes the Nova rod and shows how he can weld the two pieces together.\", \" He begins welding the two plates of aluminum.\", \" Then he hits the plates with a hammer and scrubs off the dust.\", \" He shows the back side of the plates and how it is welded together.\"]}, \"v_EzQL-i_MTdU\": {\"duration\": 56.75, \"timestamps\": [[0.28, 55.9], [0.85, 3.97], [5.96, 42], [24.97, 55.33]], \"sentences\": [\"A man at a professional sports event, lifts a large and heavy weight using knees, back and arm strength while a woman in a suit watches from the sidelines.\", \"  A man wearing a \\\"USA\\\" shirt, or team uniform approaches a two sided weight as a woman watches from the side near a door.\", \"  The man lifts the weight and the camera shows the process in slow motion.\", \"  The man lifts the weight over his head and then drops it to mid body before letting it fall to the floor, at which he point he waives at an unseen audience, all while the woman on the sideline continues to observe.\"]}, \"v_b1PAqOmflgI\": {\"duration\": 34.02, \"timestamps\": [[0.17, 33.85], [1.53, 6.12], [6.46, 11.23], [11.74, 33.17]], \"sentences\": [\"A boy in a blue t-shirt bounces two basketballs in a gym while blocking another basketball player and making a goal with the ball.\", \"  A boy bounces two basketballs between his legs.\", \"  Another basketball player approaches him and tries to take the ball from him.\", \"  The player in the blue shirt blocks him and makes the goal, and then proceeds to do it again, twice.\"]}, \"v_OLUOk4xfYWE\": {\"duration\": 161.76, \"timestamps\": [[0, 161.76], [143.16, 146.4]], \"sentences\": [\"man is playing piano with a lot of people gathered around him.\", \" man is holding a cellphone and is recording the man in the piano.\"]}, \"v_HBJzxWj7CaY\": {\"duration\": 173.55, \"timestamps\": [[0, 29.5], [27.77, 65.08], [59.01, 82.43], [80.7, 112.8], [118.88, 173.55]], \"sentences\": [\"A man stands in front of the camera speaking and various trips of people and sites are shown.\", \" Another man is interviewed followed by several more shots of the area.\", \" A panel of people speak to one another and people get ready for a race.\", \" Dozens of people line up and begin swimming in the ocean to race.\", \" Many more people are interviewed while the race continues and many people watch and discuss the events.\"]}, \"v_pf9u7M6vafU\": {\"duration\": 19.53, \"timestamps\": [[0, 11.91], [11.91, 19.53]], \"sentences\": [\"A young girl is seen sitting on a bed with two knitting needles and thread in her hands.\", \" The camera pans around her and watches her knit while she speaks and looks off into the distance.\"]}, \"v_2U0vMYnC49c\": {\"duration\": 50.62, \"timestamps\": [[0, 36.95], [37.46, 42.77], [42.77, 50.62]], \"sentences\": [\"A boy in red jacket holds a window scraper tool and remove snow from a car windshield.\", \" The boy turns the tool and uses the edge corner edge briefly.\", \" The boy continues to scrape the windshield as before with the broad side of the tool.\"]}, \"v_0GpNcvAVWVg\": {\"duration\": 194.1, \"timestamps\": [[0, 2.91], [2.91, 164.01], [17.47, 25.23], [25.23, 126.16], [125.19, 137.81], [138.78, 153.34], [164.98, 194.1]], \"sentences\": [\"We see the colorful title card.\", \" We see kids playing at the playground.\", \" The boy gets off the swing and we follow him to the slide.\", \" The boy finishes sliding and goes to a different part of the park and plays  around.\", \" The boy slides and falls on the bridge before sliding down.\", \" He plays with the large swing with another kid.\", \" We see the end screen.\"]}, \"v_hgpekgU915k\": {\"duration\": 13.65, \"timestamps\": [[0.07, 3.21], [3.96, 5.8], [5.67, 13.65]], \"sentences\": [\"A person is holding someone on their shoulders.\", \" They spin around several times and fall over onto the floor.\", \" The man gets up and sits on the bed.\"]}, \"v_PvrozrgcGf0\": {\"duration\": 53.36, \"timestamps\": [[0, 35.48], [0, 53.09]], \"sentences\": [\"These girls are shown kneeling down on the floor and playing dress up One girl put's chap stick on her lips, cheeks, forehead, and under her eyes.\", \" Then another one puts a little makeup on the top of her eyes.\"]}, \"v_e5XATG2IK6Q\": {\"duration\": 156.5, \"timestamps\": [[0, 25.82], [25.04, 115.81], [106.42, 151.03]], \"sentences\": [\"A young child is seen standing before a car holding a rag and looking at the camera.\", \" The boy uses the rag all over the car while the camera follows his movements.\", \" He continues moving around the car while another man sprays a hose and the boy wipes it down.\"]}, \"v_JXucFXh58VE\": {\"duration\": 144.89, \"timestamps\": [[1.45, 41.29], [42.02, 96.35], [102.87, 142]], \"sentences\": [\"Several people are seen drilling holes into the ice while looking down and speaking to the camera.\", \" Many pictures are shown of the people fishing as well as pulling fish out of a hole.\", \" More people sit by the holes and continue to pull out fish.\"]}, \"v_lV7tpgelpAY\": {\"duration\": 101.57, \"timestamps\": [[0, 22.85], [24.88, 81.25], [88.36, 101.57]], \"sentences\": [\"A group of people are on an obstacle course together.\", \" They are hiding behind the obstacles and shooting at each other with paint guns.\", \" They run around, then gather and hug when they are done.\"]}, \"v_T8P52q1gCNA\": {\"duration\": 99.09, \"timestamps\": [[14.86, 55], [56.98, 71.84], [75.31, 92.16]], \"sentences\": [\"Ingredients are mixed together in a silver bowl.\", \" It is then placed on a cookie sheet.\", \" The cooked food is then shown and broken in half.\"]}, \"v_kRVmpJILmjo\": {\"duration\": 227.12, \"timestamps\": [[0, 35.2], [36.34, 138.54], [139.68, 227.12]], \"sentences\": [\"A field is shown along with some mountains as a person begins driving down a road.\", \"After,men are shown and they get out and begin skateboarding down a road in the country.\", \"As the continue,a large hay stand is in the middle of the road and they all pass through it and they finish skating down the road.\"]}, \"v_LihSTWbJZJo\": {\"duration\": 115.87, \"timestamps\": [[0, 43.45], [43.45, 115.87]], \"sentences\": [\"A pile of trees are shown blowing outside on a cobblestone path outside of a building.\", \"As the leaves continue to blow a young boy walks into the scene clearing the path with his leaf blower.\"]}, \"v_LI3wIHFQkAk\": {\"duration\": 67.33, \"timestamps\": [[0, 62.95], [63.62, 67.33]], \"sentences\": [\"A man in a suit plays a flute on stage in front of a man playing a piano.\", \" They finish playing and the man playing the piano stands up.\"]}, \"v_zc7_D9RiOY0\": {\"duration\": 66.53, \"timestamps\": [[4.66, 13.31], [10.31, 31.27], [24.61, 60.87]], \"sentences\": [\"A scuba diver is under the water wearing oxygen in he mouth.\", \" The diver is holding his eye mask, and put it on.\", \" Another scuba diver took off his eye masks, while behind him are other scuba divers swimming, then he put back is masked on and give an okay sign with his fingers.\"]}, \"v_XgJ6iiK-gQo\": {\"duration\": 57.56, \"timestamps\": [[0, 12.95], [20.43, 48.64], [50.66, 57.56]], \"sentences\": [\"A man is hedging a bush in a yard.\", \" He cuts the thick brush up and down.\", \" He finishes the hedge, showing off his skills.\"]}, \"v_LXH96dFBVYk\": {\"duration\": 222.82, \"timestamps\": [[0, 37.88], [37.88, 62.39], [63.5, 98.04], [99.15, 109.18], [130.35, 137.03], [109.18, 183.83], [183.83, 222.82]], \"sentences\": [\"A bulls runs in the street goring people and throwing them to the floor, while the bulls is attached to a rope.\", \" The bull enters a home, then the bull continues goring people in the street.\", \" The bull enters a corral and attack a person behind the fence, then the bull continues fiercely goring people in the street.\", \" A person pet the bull through a window, after the bull clash with another bull that falls on the ground.\", \" The bull attacks a dog sit on front a door.\", \" The bull gores people and also attacks people on the sidewalk.\", \" The bull continues goring people's behind.\"]}, \"v__Ga4HoMl6yM\": {\"duration\": 35.25, \"timestamps\": [[1.41, 33.13], [3.17, 33.13], [27.32, 33.13]], \"sentences\": [\"First the man walks the blindfolded woman near the pinata and she starts swinging the broom to hit it.\", \" But she misses a few times because  the pinata moves up and down in the air.\", \"  After a while of trying, she hits the string the pinata is hanging from and knocks the pinata down, but has barely gotten any candy out.\"]}, \"v_DHWmzuAWxLM\": {\"duration\": 134.33, \"timestamps\": [[0, 43.66], [34.25, 82.61], [82.61, 118.21], [120.22, 134.33]], \"sentences\": [\"A small group of people seen sitting in the water followed by one riding behind a helicopter on a board and a woman speaking to the camera.\", \" The man continues to ride and then is seen up in the air with the helicopter and the pilots waving.\", \" The man then lets go of the helicopter, riding down on a parachute and landing safely back into the water.\", \" The man then lays down while his shot is shown again and the woman speaks to him.\"]}, \"v_5Vd6PEUWo64\": {\"duration\": 168.02, \"timestamps\": [[0, 23.52], [26.04, 97.45], [100.81, 147.86], [149.54, 168.02]], \"sentences\": [\"Two women are standing on a beach, wearing bikinis and holding a surf board.\", \" They are then shown walking onto the beach and posing for pictures in between surfing on the waves.\", \" They show how to do various surfing moves.\", \" They are then shown on the beach, sitting down as they talk.\"]}, \"v_WVkOtMX9Gg8\": {\"duration\": 199.53, \"timestamps\": [[4.99, 86.8], [74.82, 160.62], [137.68, 193.54]], \"sentences\": [\"Several men are seen hosting a news segment that leads into clips of people playing a game together and arguing with one another.\", \" More shots of people playing are shown as well as people celebrating and walking away.\", \" More shots are shown of the hosts speaking to one another and people hitting the ball and walking away.\"]}, \"v_Wq-eDa62BcI\": {\"duration\": 127.85, \"timestamps\": [[7.67, 125.93], [14.7, 28.13], [29.41, 70.32], [76.71, 127.21]], \"sentences\": [\"A person's hands demonstrates how to stye and comb a blonde haired doll.\", \"  The person's hand begins to brush the doll's hair with a pink bristle brush before holding up a bottle of hair styling product.\", \"  The hand sprays some of the hair style product on the doll's hair and then proceeds to brush the hair again.\", \"  The hand then turns the doll around to showcase the finished style, the hand also gestures to areas around the dolls hair.\"]}, \"v_vcE8e-fQBhs\": {\"duration\": 179.0, \"timestamps\": [[0, 85.92], [59.97, 179]], \"sentences\": [\"The video leads into several shots of people performing impressing jumps and flips off of a high dive.\", \" More and more people jump off the various heights of the dives and two are shown at the same time in the end.\"]}, \"v_8O1cLqQrn4o\": {\"duration\": 129.8, \"timestamps\": [[0, 46.73], [36.99, 129.8]], \"sentences\": [\"A man is seen speaking to the camera while man people stand around behind him and practice.\", \" The men hit the badminton back and fourth while the older gentlemen continues to speak and point around the court.\"]}, \"v_G2soQTiGL10\": {\"duration\": 204.96, \"timestamps\": [[0, 75.84], [54.32, 153.72], [118.88, 196.76]], \"sentences\": [\"A large group of people are seen standing around a table with one speaking to the camera.\", \" The people then assist one another putting ingredients into pans and flipping them around.\", \" The people continue mixing the food together and finish by presenting it onto a plate.\"]}, \"v_mTsEJFP3W1A\": {\"duration\": 206.19, \"timestamps\": [[0, 25.77], [24.74, 107.22], [107.22, 206.19]], \"sentences\": [\"A bicycle is shown in a room leaning up against a brown table.\", \"A person then walks into the room and starts to take pieces off of the bicycle.\", \"The pieces are then added back on the bike and tightened around the wheel.\"]}, \"v_iHQ-Kg4Fms8\": {\"duration\": 50.62, \"timestamps\": [[0, 25.82], [25.82, 50.62]], \"sentences\": [\"A man stand in the porch of a house looks around and smile.\", \" Then, the man grabs a cup and drinks, after he leaves.\"]}, \"v_i_Fs0Qrtu90\": {\"duration\": 224.05, \"timestamps\": [[6.72, 224.05], [13.44, 36.97], [32.49, 76.18], [39.21, 76.18], [43.69, 104.18], [54.89, 104.18], [68.34, 113.15], [89.62, 142.27], [96.34, 162.44], [165.8, 217.33], [181.48, 217.33]], \"sentences\": [\"A woman touched a black phone, and a screen of purple capsule like bacteria showed up.\", \" The person put back the phone, and started typing on the black keyboard.\", \" The bacteria shot is put in the scene.\", \" The woman put her hand on the mouse.\", \" She put her hand on the wooden desktop.\", \" The woman got up and walk towards the hallway.\", \" The woman saw a man and shake his hand.\", \" The woman went to the bathroom.\", \" The woman took off her ring, wash her hand, got home soap and rub it on her hand thoroughly and rinse it.\", \"  The woman sneeze on her hand.\", \" She walks towards her office, put her hand on the desk and phone.\"]}, \"v_qqLiKDMtps8\": {\"duration\": 168.39, \"timestamps\": [[0.84, 20.21], [30.31, 78.3], [56.41, 125.45]], \"sentences\": [\"These two people shown here  are riding their bikes over snowy humps outside.\", \" They've rode over dirt humps.\", \" They've also rode over sand humps in the building and other humps in a race.\"]}, \"v_V3Sz4WWJ2_M\": {\"duration\": 208.81, \"timestamps\": [[3.13, 67.86], [44.89, 114.84], [83.52, 159.74], [133.64, 199.41]], \"sentences\": [\"A man is seen holding up objects while speaking to a woman and rubbing the object along the wall.\", \" He then dips paper in water and begins hanging it up on the walls.\", \" He holds up a spray bottle to spray the walls while the others help.\", \" The people check the wall and take the paper off followed taking the actual wallpaper off and rubbing the wall.\"]}, \"v_3I6LMFdA2lc\": {\"duration\": 86.4, \"timestamps\": [[0.86, 86.4], [14.69, 44.93], [63.07, 76.9]], \"sentences\": [\"A baby is shown laying in bed while a comb gently brushes it's hair.\", \" The baby eventually smiling while the hand continues to brush the baby's head.\", \" The baby gently closes it's eyes and yawns while the brush continues to comb.\"]}, \"v_g4vyzwiJYWw\": {\"duration\": 151.14, \"timestamps\": [[1.51, 147.36], [9.82, 12.09], [12.85, 51.39], [51.39, 147.36]], \"sentences\": [\"A woman demonstrates how to wash the face by washing her face in sink.\", \"  A woman stands over a sink and splashes water on her face.\", \"  The woman then works up a lather with liquid soap she has poured onto her hands.\", \"  The woman then washes her face in circular motions  the woman then used a towel to dry her face.\"]}, \"v_Ti14bsS3RtU\": {\"duration\": 211.09, \"timestamps\": [[0, 208.98], [20.05, 57], [59.11, 129.82], [117.16, 207.93]], \"sentences\": [\"A roofing commercial demonstrates how to fix a slate roof on a house.\", \"  A man cuts parts on a folding table outside and then installs a slate on a roof using power tools and tools from his tool belt.\", \"  The man installs copper pieces to the slate roof that protrude from the roof.\", \"  The man then cuts a copper pipe and does some soldering to the edges of a hole in the copper pipe before the camera cuts again to the roof and then a marketing graphic.\"]}, \"v_GBNj2k2OVGo\": {\"duration\": 226.81, \"timestamps\": [[2.27, 226.81], [30.62, 226.81], [10.21, 75.98], [30.62, 60.11], [41.96, 130.42], [130.42, 187.12], [193.93, 224.54]], \"sentences\": [\"A man with saxophone is playing at the center of the park while a woman is sitting by the fountain.\", \" The man is playing the saxophone.\", \" Behind him are people lining up at the atm.\", \" The camera came closer to the gold saxophone.\", \"The man continue playing while people walking past him.\", \" The man blow so hard on his saxophone.\", \" A white bird standing behind the man.\"]}, \"v_Z9gstJONME4\": {\"duration\": 35.3, \"timestamps\": [[0, 35.3], [0.71, 1.59], [32.82, 33.53]], \"sentences\": [\"A man is lifting weights in the gym.\", \"  The ball goes to the man's chest for the first time.\", \"  The man takes a break.\"]}, \"v_OO3NO29L50U\": {\"duration\": 204.59, \"timestamps\": [[0, 83.88], [87.97, 204.59]], \"sentences\": [\"A person's hand is shown sticking a pen into some water followed by a bit of nail polish.\", \" The water changes colors as the various paints are shown and the person creates a swirling pattern into the water.\"]}, \"v_UvPUywSVy1k\": {\"duration\": 177.42000000000002, \"timestamps\": [[0, 65.65], [33.71, 144.6], [140.16, 177.42]], \"sentences\": [\"A person is seen holding up various food items while laughing and speaking with others.\", \" The men then begin cooking together by mixing various ingredients and presenting them onto a plate.\", \" The recipe is then shown for how to cook the food and leads into clips of the food being cooked and presented with the men eating together.\"]}, \"v_1aNOjjLWjxc\": {\"duration\": 3.0, \"timestamps\": [[0, 3], [0.09, 3], [0.57, 3]], \"sentences\": [\"People are standing on a volleyball court.\", \" A man in a white hat is standing in the sand.\", \"  A person in a black shirt serves the volleyball but it doesn't make it over the net.\"]}, \"v_9Pun6fgAg8Q\": {\"duration\": 89.7, \"timestamps\": [[0, 89.7], [7.18, 9.42], [11.66, 12.56], [7.18, 8.52]], \"sentences\": [\"Two teams play beach volleyball on front a crowd.\", \" A woman holds a smart phone.\", \" A man serves a ball.\", \" A man wearing a cap and plaid shirt pass on front the players.\"]}, \"v_QZi1yBFRZzc\": {\"duration\": 122.14, \"timestamps\": [[0, 6.72], [6.72, 15.27], [15.27, 17.1], [17.1, 19.54], [19.54, 21.37], [21.98, 36.03], [36.64, 55.57], [56.18, 57.4], [58.02, 71.45], [71.45, 72.06], [73.28, 74.5], [75.11, 76.95], [78.17, 103.82], [105.04, 108.09], [108.7, 122.14]], \"sentences\": [\"A pair of garden shears is shown.\", \" A woman is demonstrating how to use the garden shears in different situations.\", \" A younger girl demonstrates how to use the shears.\", \" An older man shows how he uses the shears.\", \" A young man is shown using the shears to reach something above his head.\", \" The original woman shown demonstrates using the shears on different plant types.\", \" The same woman shows how to use the telescoping handle of the shears and cutting plants that would be out of reach.\", \" The same woman walks down a path with the shears.\", \" The woman then shows how the shears work demonstrating on several other plants.\", \" A young woman is shown using the shears.\", \" An older man uses the shears.\", \" Another man is shown using the shears to reach tree limbs.\", \" The first woman shows additional features of the shears and the same examples of other people using the shears is shown again.\", \" The woman walks up a set of stairs with the shears.\", \" The same woman is shown in the store purchasing the shears.\"]}, \"v_fFoYCI-Si6s\": {\"duration\": 81.34, \"timestamps\": [[0, 8.54], [9.76, 49.62], [51.65, 81.34]], \"sentences\": [\"Two men are inside a gym.\", \" One is in boxing gloves and the other is wearing arm guards.\", \" They show off the different moves in punching and kicking.\"]}, \"v_x03YF3JbWjs\": {\"duration\": 171.74, \"timestamps\": [[5.15, 171.73], [25.76, 104.76]], \"sentences\": [\"A woman gives a hair tutorial.\", \"  The woman ties her hair and prepares it so that it looks better.\"]}, \"v_n1JkJu0VjQk\": {\"duration\": 33.07, \"timestamps\": [[0, 33.07], [27.11, 33.07]], \"sentences\": [\"A young man in a white karate uniform practices some moves.\", \" He bows at the end and runs towards the camera.\"]}, \"v_aDrjDISgmLU\": {\"duration\": 123.14, \"timestamps\": [[0, 19.09], [19.09, 92.97], [92.35, 117.59], [116.98, 123.14]], \"sentences\": [\"men are standing in a field playing throwing a small piece of food into another man's mouth.\", \" man is talking in front of the camera and the team is standing in a big green grassy field.\", \" man starts playing cricket in the field.\", \"woman is talking to the camera in news.\"]}, \"v_xSpWBpHMxqY\": {\"duration\": 87.15, \"timestamps\": [[0, 18.74], [19.17, 78.87], [79.3, 87.15]], \"sentences\": [\"A girl is riding in the back seat of a car, playing lipstick to a baby girl in a car seat.\", \" The girl takes the wand, trying to put it on her own lips.\", \" She smiles broadly for the camera.\"]}, \"v_bXJMw4gLmGM\": {\"duration\": 159.45, \"timestamps\": [[0, 7.18], [9.57, 36.67], [40.66, 159.45]], \"sentences\": [\"A man is talking inside a shop.\", \" He shows off an iron, then uses it to melt a piece of plastic.\", \" The man irons then brushes a long piece of metal.\"]}, \"v_iYdbam6e8cI\": {\"duration\": 188.38, \"timestamps\": [[0, 188.38], [51.81, 53.69], [143.17, 146]], \"sentences\": [\"People are roller blading down sets of stairs.\", \" A person falls into the street.\", \" A school bus is on the street behind them.\"]}, \"v_B5Zi054Fa5k\": {\"duration\": 120.68, \"timestamps\": [[0, 104.38], [0, 106.8], [104.99, 106.19], [104.99, 120.68]], \"sentences\": [\"A man in a black sweater quickly performs a Rubik cube challenge as the timer ticks.\", \" A man sits next to him watching.\", \" The man in the black sweater finishes and jumps up in excitement.\", \" The man that was sitting next to him stands up and is joined by other young men.\"]}, \"v_cXRWQa9tQLw\": {\"duration\": 156.02, \"timestamps\": [[0, 12.48], [14.04, 92.83], [99.07, 156.01]], \"sentences\": [\"A group of cheerleaders are posing on a stage.\", \" They break apart, going into an elaborate dance routine.\", \" They flip, toss, and throw each other, then jump up and down excitedly.\"]}, \"v_A_g93uJD-_8\": {\"duration\": 106.3, \"timestamps\": [[0, 7.97], [14.35, 20.73], [8.5, 41.46], [41.46, 101.52], [102.05, 106.3]], \"sentences\": [\"Two men cook omelettes on long pans in the street.\", \" People pass on front the men.\", \" A man puts scrambles eggs in the hot pan using two stick to turn over the eggs.\", \" Then the man adds more scrambled eggs while turning the omelette to make it bigger.\", \" After, he man wraps the omelette.\"]}, \"v_JKE9D1anR7I\": {\"duration\": 50.16, \"timestamps\": [[0, 4.26], [3.51, 45.64], [45.64, 50.16]], \"sentences\": [\"A man jumps onto parallel bars.\", \" He begins doing a gymnastic routine on the parallel bars.\", \" He does a jump off and lands on the mat.\"]}, \"v_Gn7Ha7l1uOk\": {\"duration\": 203.27, \"timestamps\": [[0, 5.08], [6.1, 11.18], [12.2, 20.33], [21.34, 203.27]], \"sentences\": [\"The credits of the clip are shown.\", \" A man stands in a stair rail holding a knife.\", \" A guy prepare to play the drums.\", \" The guy plays a drum set.\"]}, \"v_BR4dhPz42mQ\": {\"duration\": 100.87, \"timestamps\": [[0, 59.51], [58, 100.87]], \"sentences\": [\"A large crowd of people are seen standing in the middle of the street and lead into a dance performance as well as a music performance.\", \" The people continue moving around in the street and end with a finishing pose.\"]}, \"v_CQtu83639js\": {\"duration\": 139.23, \"timestamps\": [[4.87, 78.66], [57.78, 137.14]], \"sentences\": [\"A camera pans outside of a building and looks into a dark room where a man is exercising and speaking to the camera.\", \" The man continues riding on the equipment while moving faster and slower and the camera pans around his movements.\"]}, \"v_ZhPL4xb8JD0\": {\"duration\": 22.11, \"timestamps\": [[0, 7.29], [7.41, 11.27], [11.5, 22.11]], \"sentences\": [\"A horseman sits on a horse and a person stands on front a cattle squeeze chute.\", \" Suddenly, the horseman and a calf run to the the arena, while the horseman runs behind the calf spinning in the air a rope.\", \" After, the horseman throws the hoop and catch the calf, then quickly he lie the calf on the floor and tie the legs.\"]}, \"v_zHXpo62bCaQ\": {\"duration\": 130.86, \"timestamps\": [[0, 23.56], [6.54, 30.1], [16.36, 60.2], [30.75, 108.62]], \"sentences\": [\"A woman with blonde long hair is carrying a white hula hoops, the hula hoops has rainbow colored tape on parts of it.\", \" The girl walked towards the lake, she is walking barefoot on the grass.\", \" The camera turns towards her face, then she started swirling the hula hoops and put it on her.\", \" The girl started to do hula hoops tricks, first on her waist then up, then to her legs and arms.\"]}, \"v_M3jMJB_t024\": {\"duration\": 78.55, \"timestamps\": [[0, 37.31], [32.6, 78.55]], \"sentences\": [\"A large group of people are seen standing around a foose ball table speaking to one another and leads into them playing the game.\", \" Many people continue to watch the game on the sidelines and look down at the game taking place.\"]}, \"v_VssVjdgvHrQ\": {\"duration\": 98.17, \"timestamps\": [[0.98, 28.47], [25.53, 73.63], [72.16, 96.21]], \"sentences\": [\"A person is seen standing before a sink turning on the faucet and wetting their hands.\", \" They then put soap on their hands, scrub the soap in, and rinse their hands through the water.\", \" Finally they use paper towels to dry their hands and throw it into the trash.\"]}, \"v_jLykQW_-IVw\": {\"duration\": 88.85, \"timestamps\": [[0, 87.08], [0, 26.21], [24.43, 54.64], [24.43, 88.85], [55.98, 88.85]], \"sentences\": [\"A woman is smoking a cigarette.\", \" She is sitting down and people are walking behind her.\", \" She continues to hold cigarette in one arm.\", \" People continue to walk behind her and in front.\", \" She continues to smoke and stare straight ahead.\"]}, \"v_xddZ9YjTGgo\": {\"duration\": 153.06, \"timestamps\": [[0, 20.66], [17.6, 88.01], [78.06, 153.06]], \"sentences\": [\"A young man in green shirt is standing at the goal, while the young player in blue kicked the ball to the goal, and the ball went inside the goal, the man in green shirt missed the ball.\", \" The man in red shirt run towards the ball, kicked the ball, and the goalkeeper wasn't able to block it, the player high five his teammates.\", \" The players are kicking the ball to the goal and the goalkeepers weren't able to block the ball.\"]}, \"v_F1MKU9-yXg0\": {\"duration\": 121.07, \"timestamps\": [[0, 17.56], [17.56, 46.61], [46.01, 91.41], [91.41, 121.07]], \"sentences\": [\"A young man in a green jacket is standing in front of a mound of dirt and is talking about his maintenance tasks.\", \"The man then comes in the back yard with a green wheelbarrow and dumps the dirt in the back yard.\", \"He then takes his rake and moves the dirt back and forth around the house evening it out.\", \"When complete,he disappears and a path of mulch is seen along the garage.\"]}, \"v_4U13LEMIdi4\": {\"duration\": 12.15, \"timestamps\": [[0, 12.15], [0.55, 10.38], [10.44, 12.15]], \"sentences\": [\"A cat is sitting in a cat bed.\", \" It is licking its paw.\", \" It then wipes its paw on its ear.\"]}, \"v_YWu9gYCBAas\": {\"duration\": 216.11, \"timestamps\": [[0, 21.61], [22.69, 27.01], [28.09, 100.49], [100.49, 169.65], [169.65, 195.58], [196.66, 216.11]], \"sentences\": [\"We see shots of a sink.\", \" A person sprays the sink with a bottle then uses scrub brushes to scrub the sink.\", \" The person rinses the sink the wipes it with a  blue towel.\", \" The person then rinses the sink again and wipes it down with the blue towel again.\", \" The person sprays the sink with a solution and uses a small roller paint brush to run the solution into the sink.\", \" We see before and after shots of the sink.\"]}, \"v_7j8cTyXi5a4\": {\"duration\": 83.92, \"timestamps\": [[7.55, 73.01], [22.24, 26.01], [26.01, 72.59]], \"sentences\": [\"A woman is standing behind a table.\", \" She picks up a rag and a bottle of oil.\", \" She puts oil onto the rag and starts to clean her boots with it.\"]}, \"v_YfWKbMPFmcU\": {\"duration\": 166.09, \"timestamps\": [[0, 20.76], [63.12, 70.59], [92.18, 107.13]], \"sentences\": [\"The outside of homes is shown by a woman in a pink shirt.\", \" She is painting one of the houses with blue paint.\", \" She is holding a bucket of paint.\"]}, \"v_fsyMiHRW3z4\": {\"duration\": 54.08, \"timestamps\": [[0, 25.42], [25.69, 44.35], [44.62, 54.08]], \"sentences\": [\"A woman stands by a yellow hopscotch and talks to the camera.\", \" The woman plays hopscotch on the painted concrete.\", \" The woman talks to the camera once again.\"]}, \"v_YfouQ4TJhmQ\": {\"duration\": 55.71, \"timestamps\": [[0, 21.17], [16.43, 55.71]], \"sentences\": [\"An old man in white shirt is brushing the the body of the brown horse.\", \" The girl in blue shirt standing beside the old man brushed the horse's fur, then the old man took over, brush the horse and the girl rub the horse's fur with her hands.\"]}, \"v_kKxNVwk7Evc\": {\"duration\": 88.63, \"timestamps\": [[0, 84.64], [26.59, 31.02], [40.33, 88.63]], \"sentences\": [\"A marching band is walking down a track.\", \" People carrying flags follows behind them.\", \" The drummers at at the back playing their drums.\"]}, \"v_7cpX1j9dwjA\": {\"duration\": 92.16, \"timestamps\": [[0, 5.07], [5.07, 5.99], [5.99, 86.63], [46.54, 89.4], [89.4, 92.16]], \"sentences\": [\"A colorful intro includes the white words that say \\\"World's Most DANGEROUS SPORTS Events\\\" and the green letters separately \\\"SRP\\\".\", \" Madrid Spain on a map appears and it quickly goes into various different clips of men in arenas holding red capes as they taunt angry bulls.\", \" Suddenly a bull doesn't go after the cape, and instead he goes after the man where the bull continues to attack him with his horns and throw him around on the dirt.\", \"People begin to run towards the bull and the man to help him and the injured man quickly gets carried and run out of the area of danger.\", \"The intro appears and it's a black screen with the green letters SRP, production credits along with the rights.\"]}, \"v_KjbZvsu0OxE\": {\"duration\": 161.29, \"timestamps\": [[0, 48.39], [46.77, 111.29], [110.48, 151.61]], \"sentences\": [\"A dog is seen wandering around a yard as well as a man speaking to the camera.\", \" The dog moves around the area while the man continues to speak to the camera.\", \" The dog runs back and fourth while the camera zooms in on his face.\"]}, \"v_701UoJ5pgeo\": {\"duration\": 142.76, \"timestamps\": [[0, 142.76], [11.42, 56.39], [57.82, 73.52], [74.23, 97.07], [104.93, 137.76]], \"sentences\": [\"A woman is in a kitchen talking.\", \" She pours cleaner in a sink and describes some cleaning tools.\", \" She puts a powder in the sink and squeezes a lemon over the powder.\", \" She pours a liquid over that and scrubs with a brush.\", \" She turns the water on for a second and then uses a stone on the sink before using the sprayer to rinse everything.\"]}, \"v_CoHVA7nr82A\": {\"duration\": 205.78, \"timestamps\": [[4.12, 33.95], [36.01, 83.34], [84.37, 120.38], [123.47, 134.78], [137.87, 143.01], [144.04, 170.79], [174.91, 195.49], [195.49, 202.69]], \"sentences\": [\"A man holds a welding device and adjusts it while showing his work area.\", \" The welder is held over a steel plate and moved slowly.\", \" The man pulls the welder over a copper colored piece of metal.\", \" The man puts down his face guard and welds a spot on a piece of metal.\", \" The man stops for a break.\", \" The man welds a line into a piece of material.\", \" The man holds up a hammer chisel over the bar of metal and chips off some pieces.\", \" the man uses a wire brush to clean the metal.\"]}, \"v_eksIn1NfWJg\": {\"duration\": 45.44, \"timestamps\": [[0, 22.27], [22.04, 45.44]], \"sentences\": [\"A person's eye is seen close up the camera holing a contact lens in their hands and holding their eye open.\", \" The person then puts the contact lens in their eye and rubs their eye while blinking multiple times.\"]}, \"v_yCAsVc5Tb_0\": {\"duration\": 163.05, \"timestamps\": [[0, 0.82], [0.82, 9.78], [8.15, 163.05], [23.64, 26.09], [30.16, 34.24], [49.73, 52.99], [60.33, 74.19], [75, 98.65], [98.65, 120.66], [103.54, 119.03], [147.56, 163.05]], \"sentences\": [\"We see the title card over the screen.\", \" We see people standing on a blue stage.\", \" They then perform a cheer leading routine.\", \" The men lift the women who spin into their arms.\", \" They all flip backwards together.\", \" The men hold the women by one leg and almost drop a lady.\", \" A girl brings letters onto the field.\", \" They use the letter to spell a word while standing in the air.\", \" They have different cards with color names on them.\", \" The men yell out of horns.\", \" Two women flip out of a stance, and they end in the air.\"]}, \"v_VufybWyvP98\": {\"duration\": 95.47, \"timestamps\": [[0, 84.49], [4.77, 26.73], [21, 41.53], [32.94, 53.94], [47.74, 63.97], [59.19, 75.42], [72.08, 85.45], [82.58, 93.56]], \"sentences\": [\"There are some swimmers playing water polo in an indoor swimming pool.\", \" One of the swimmers is underwater, trying to reach the ball.\", \" He throws the ball across to another swimmer who catches the ball.\", \" Two swimmers are under water trying to reach the ball.\", \" They pass the ball around as they swim through the water.\", \" Then the swimmers swim their way up and get out of the pool while some other swimmers are still inside the pool.\", \" One of the swimmers spits out water on the camera while still inside the pool.\", \" A few other swimmerd can be seen in the locker room drying themselves after the swim.\"]}, \"v_dvzwVrZkDiI\": {\"duration\": 10.98, \"timestamps\": [[0.11, 2.58], [2.47, 7.96], [7.03, 10.49]], \"sentences\": [\"A small child is seen looking up at the camera holding a coffee cup.\", \" The girl takes a drink out of the cup and puts it back down.\", \" She continues drinking out of the container and looks up to the camera.\"]}, \"v_wr2FC2P3hIs\": {\"duration\": 70.36, \"timestamps\": [[0, 8.09], [8.09, 17.94], [17.94, 48.19], [48.19, 70.36]], \"sentences\": [\"A row of clippers,brushes,and razors are being shown.\", \"Shortly after,the front of the building is shown and the name on the plaza is shown.\", \"A man with long curly hair is shown sitting in the barbershop getting his hair down and the barber is using a combination of scissors,brushes, and blow dryers to complete the look.\", \"Once done, a still image of the barber and his information is shown for advertisement.\"]}, \"v_zEdAxKm9SLA\": {\"duration\": 122.56, \"timestamps\": [[11.64, 31.25], [31.25, 59.44], [59.44, 86.4], [86.4, 112.14], [112.14, 121.33]], \"sentences\": [\"There's a person named Michael from the Wild flower Tool company who is doing a tutorial on telescopic head shears for gardening.\", \" He demonstrates the several features of the shears such as extendable handles.\", \" He is standing near a big hedge in a garden.\", \" He shows how to use the shears by cutting off some of the branches of the hedge.\", \" He then extends the handles of the shears to show how far he can reach hard to reach places on top of the hedge.\"]}, \"v_qRFZMO_mTGU\": {\"duration\": 114.78, \"timestamps\": [[0, 17.79], [19.51, 77.47], [76.9, 113.63]], \"sentences\": [\"A woman walks forward talking to the camera and putting her hands on her hips.\", \" A girl is shown playing field hockey and presents various clips of herself doing moves.\", \" She later is talking to the camera about her experiences with the sport and who exactly she is and why other people love her.\"]}, \"v_qwdavExYM_Y\": {\"duration\": 179.51, \"timestamps\": [[0, 179.51], [71.81, 76.29], [132.84, 179.51], [160.67, 174.13]], \"sentences\": [\"We see people walking with rafts up an escalator on a snowy field in a rafting park.\", \" A child almost falls on the left.\", \" We see the crowded escalator from a distance.\", \" We see a boy in a black coat running with his raft in tow.\"]}, \"v_r9AepFEEfsQ\": {\"duration\": 59.58, \"timestamps\": [[1.19, 58.39], [13.11, 17.87], [19.96, 58.99]], \"sentences\": [\"A man with glasses playing an accordion and smiling.\", \" The camera zooms in on his fingers going up and down the neck of the instrument.\", \" The man continues to play his song and smiles to the camera while moving up and down.\"]}, \"v_uuH0ieCzqkM\": {\"duration\": 36.53, \"timestamps\": [[0, 36.53], [0.55, 36.34]], \"sentences\": [\"A kid stands on a court as a group of judges watch him jump rope rapidly.\", \" Behind him, other competitors jump rope, too.\"]}, \"v_C9yUg3e1dEg\": {\"duration\": 174.59, \"timestamps\": [[0, 174.59], [58.49, 60.23], [91.66, 111.74], [164.99, 174.59]], \"sentences\": [\"A man is lifting a large weight over his head several times.\", \" A woman walks in front of him.\", \" A man in a black shirt stands behind him.\", \" Words come on the screen at the end.\"]}, \"v_twL4mmkCQ0s\": {\"duration\": 54.15, \"timestamps\": [[0, 3.52], [3.52, 43.05], [43.05, 51.71]], \"sentences\": [\"A backdrop screen with paws and dog bones appear and the words in red and black appear and read \\\"TEG's CANINE CLIPPERY Dog & Cat Grooming\\\".\", \"Clips of different dogs are shown getting baths, haircuts, and brushed while still shots of pictures appear between clips and they all include company name, website and phone number.\", \"The very last screen is a picture of a dog with it's eyes closed and 2 pairs of hands blow drying it with a brush above it's head, the company name, website, phone number and address.\"]}, \"v_TLJdzU44My4\": {\"duration\": 44.26, \"timestamps\": [[1.11, 15.93], [14.16, 33.64], [32.75, 42.71]], \"sentences\": [\"A young man is seen sitting in a chair holding a vacuum in his hands.\", \" The boy speaks to the camera while still pushing the vacuum back and fourth.\", \" The camera moves closer to the boy and zooms in on his face while vacuuming.\"]}, \"v_InavXU3iWBE\": {\"duration\": 25.96, \"timestamps\": [[0, 20.25], [4.54, 20.25], [11.94, 20.25], [20.77, 25.96]], \"sentences\": [\"A man is standing on top of a truck.\", \" Two men jump onto a trampoline.\", \" One of the men lays down and the other man hits him.\", \" The man on the truck jumps onto the trampoline.\"]}, \"v__wl0vFvb8Bc\": {\"duration\": 160.24, \"timestamps\": [[0, 30.45], [36.86, 48.87], [51.28, 57.69], [57.69, 80.12], [80.12, 85.73], [122.58, 148.22], [153.83, 160.24]], \"sentences\": [\"A person's foot is shown and then it moves up slowly to their face.\", \" The camera pans out and shows a silver car.\", \" The person is holding a stick in their hands.\", \" The person is holding a hose and washing the car.\", \" They dip the stick into a bucket of soapy water and continue washing the car.\", \" They hold the hose up and pour the water on their face.\", \" They take their sunglasses off at the end and wipe their face.\"]}, \"v_7uhJ_0oKV6s\": {\"duration\": 62.0, \"timestamps\": [[0, 4.96], [6.2, 37.2], [39.06, 62]], \"sentences\": [\"Two people are standing in front of a street performance.\", \" We see a group of people as two use a jump rope.\", \" Several others jump in, jumping over the rope, flipping and doing stunts.\"]}, \"v_RZqM8Z0ocjE\": {\"duration\": 62.67, \"timestamps\": [[2.19, 10.03], [10.97, 18.17], [18.49, 24.76], [25.07, 33.22], [34.47, 42.93], [43.24, 48.88]], \"sentences\": [\"A volleyball coach stands by a net holding a ball and speaks.\", \" Two groups of girls run out to the middle of a court to grab volleyballs.\", \" They throw the balls at each other.\", \" The coach is seen giving instructions.\", \" The girls continue to throw the balls at each other.\", \" Two girls stand by the sidelines talking.\"]}, \"v_BNQPVf2Ia5Y\": {\"duration\": 145.82, \"timestamps\": [[0, 96.24], [96.24, 118.84], [118.84, 145.82], [0, 145.82]], \"sentences\": [\"A man wearing black pants, a plaid shirt and baseball cap trims a dark green hedge with an electric hedge trimmer.\", \"  The man trims a smaller light green hedge with the trimmer.\", \"  The man trims another hedge with trimmer.\", \"  The scene is sped up and contains ambient noises.\"]}, \"v_cDe2GlvMEQg\": {\"duration\": 68.28999999999999, \"timestamps\": [[0, 15.71], [15.02, 51.9], [46.44, 65.22]], \"sentences\": [\"A man is seen speaking to the camera indoors as well as outdoors.\", \" He points to several objects while leading into dirt being shown as well as plaster.\", \" People are seen putting plaster all over the walls while the man continues to speak.\"]}, \"v_uokQq9Xrjf8\": {\"duration\": 26.05, \"timestamps\": [[4.95, 12.11], [12.11, 21.62], [21.62, 24.75]], \"sentences\": [\"There's a fitness trainer representing The FitCast fitness in a gym demonstrating how to do a tall kneeling palloff press.\", \" He is kneeling down on the floor in a black shirt and gray sweat pants.\", \" He is pulling the handles of the palloff press with both hands towards his chest while keeping his back and shoulders up straight.\"]}, \"v_yOKDaH8Go0A\": {\"duration\": 128.15, \"timestamps\": [[0, 33.96], [34.6, 86.5], [87.14, 128.15]], \"sentences\": [\"A man in a garage stands over a plank of wood.\", \"  The man takes some white paste out of a can, adds some coloring to it and mixes it.\", \" The man applies the brown colored paste to holes in the wood.\"]}, \"v_9-U2WOLIqB8\": {\"duration\": 87.08, \"timestamps\": [[0, 14.37], [13.93, 48.76], [50.5, 82.72]], \"sentences\": [\"A shot of pins are shown sitting on a lane followed by a man walking into frame.\", \" The man spins a ball to go around the pins to hit more in the end.\", \" The person spins another ball that is followed shortly afterwards.\"]}, \"v_kfW5sm39ZYE\": {\"duration\": 208.91, \"timestamps\": [[0, 10.45], [12.53, 51.18], [51.18, 88.79], [102.37, 105.5], [108.63, 126.39], [148.33, 162.95], [171.31, 185.93], [186.97, 208.91]], \"sentences\": [\"We see a flat tire on a car.\", \" the owner takes out the spare tire and tools.\", \" The person jacks up the car.\", \" The person puts their hand under the raised tire.\", \" The man takes off the bad tire.\", \" The man shows a screw in his tire.\", \" The man puts the spare tire on.\", \" The man lowers the car on the spare.\"]}, \"v_AFs_aK0DY7E\": {\"duration\": 56.66, \"timestamps\": [[0, 15.01], [15.01, 50.99], [51.84, 56.66]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He does a gymnastics routine on the beam.\", \" He does a hand stand before jumping off onto a mat.\"]}, \"v__9e948mdwrs\": {\"duration\": 99.72999999999999, \"timestamps\": [[0, 72.8], [73.3, 99.73]], \"sentences\": [\"A man blows dead leaves of a backyard.\", \" A person makes a pile of dead leaves.\"]}, \"v_AK34mhNU28s\": {\"duration\": 104.4, \"timestamps\": [[0, 88.22], [0, 83], [86.65, 104.4]], \"sentences\": [\"A man holds a huge kite in a big field.\", \" A dog chases the man as he runs and jumps.\", \" The man brings the kite to the ground.\"]}, \"v_b1U1VmaZz7Y\": {\"duration\": 58.28, \"timestamps\": [[0, 26.52], [38.76, 58.28], [52.75, 58.28]], \"sentences\": [\"A man is pouring something onto a large camp fire.\", \" A dog walks around the camp site.\", \" A person in a yellow shirt holding a blanket walks around the fire.\"]}, \"v_kxXoosv0iDg\": {\"duration\": 116.87, \"timestamps\": [[0, 106.93], [37.4, 106.93], [106.35, 106.93]], \"sentences\": [\"A girl in a sparkly outfit dances on a hardwood floor.\", \" She brings out batons and twirls them around while dancing.\", \"She sits on the ground after finishing her performance.\"]}, \"v__ao0UwSJHWA\": {\"duration\": 222.54, \"timestamps\": [[3.34, 77.89], [55.64, 166.91], [120.17, 221.43]], \"sentences\": [\"A man is seen sitting in a large gym while speaking to the camera and sitting on a medicine ball.\", \" The man then bends forward onto the ball while still speaking to the camera.\", \" The man continues to balance on the ball and sits himself up as well as catches a ball.\"]}, \"v_fs2per3zoZQ\": {\"duration\": 105.91, \"timestamps\": [[0, 105.91], [19.06, 103.26], [56.66, 66.72]], \"sentences\": [\"Two men sit behind a table with a pumpkin on it.\", \" A man smashes the pumpkin with a hammer.\", \" He starts ripping out the seeds and handing them to the man next to him.\"]}, \"v_sJK-NjgOB6g\": {\"duration\": 97.55, \"timestamps\": [[9.75, 13.17], [13.66, 21.46], [21.95, 66.82], [67.8, 76.09], [78.53, 83.89], [84.87, 91.21], [91.69, 97.55]], \"sentences\": [\"A man lifts a young girl up to reach the sink in a bathroom.\", \"  Both the man and the girl reach for their toothbrush and add toothpaste at the same time.\", \" They look in the mirror together as the man shows the girl how to brush her teeth properly.\", \" They rinse and smile at their clean teeth in the mirror.\", \" The man then teaches the girl to floss.\", \" They put their toothbrushes away and the man helps the girl back to the floor.\", \" They walk away together and turn off the bathroom light.\"]}, \"v_crxqFzslD0Y\": {\"duration\": 180.75, \"timestamps\": [[0, 9.04], [18.07, 160.86], [28.02, 150.92], [149.11, 180.75]], \"sentences\": [\"A man in a black shirt smiles at the camera.\", \" He pulls out a harmonica and begins to play it.\", \" He uses his hand to accentuate the notes.\", \" He finishes the song at the end.\"]}, \"v_boRX-UKXzy8\": {\"duration\": 118.75, \"timestamps\": [[0, 55.22], [52.25, 118.75]], \"sentences\": [\"A bumper car arena is shown followed by people driving around and bumping into one another.\", \" Several shots are shown of people crashing into one another and a man speaking to the camera in the end.\"]}, \"v_PG0ao4HkF8M\": {\"duration\": 78.95, \"timestamps\": [[0, 75.79], [20.92, 75.79]], \"sentences\": [\"A man hangs wallpaper on a blank wall.\", \"  Each frame is rolled down and put on the wall.\"]}, \"v_WhhbKOSW7m0\": {\"duration\": 69.28999999999999, \"timestamps\": [[6.58, 10.39], [10.39, 60.63], [55.43, 58.55]], \"sentences\": [\"People are sitting in bleachers watching people.\", \" The people in the room are playing wall ball.\", \" A man in the stands puts his hands on his face.\"]}, \"v_x0TiekqVMj0\": {\"duration\": 220.99, \"timestamps\": [[0, 122.65], [81.76, 220.99]], \"sentences\": [\"A woman is seen performing a belly dancing routine in a dark room with one single line shown on her.\", \" She continues dancing around the room and ends by the room going dark as she spins.\"]}, \"v_uBCLX7hfZLQ\": {\"duration\": 149.32999999999998, \"timestamps\": [[16.43, 50.77], [50.77, 73.92], [73.92, 86.61], [86.61, 109.01], [109.01, 134.4], [134.4, 144.85]], \"sentences\": [\"A woman wearing a white shirt is sitting with her black and white cat on her lap.\", \" She is clipping the cats nails by holding the cat's paws in her hands.\", \" She continues clipping the cat's nails one by one.\", \" When she's done she kisses the cat.\", \" then she begins clipping a brown cat's nails.\", \" The cat sits calmly on her lap as she finishes clipping its nails.\"]}, \"v_R4yz8nXO5hI\": {\"duration\": 97.64, \"timestamps\": [[0, 80.06], [81.53, 97.15]], \"sentences\": [\"A person paints flowers onto a white canvas with a fine brush.\", \" The person removes the painting from the table and shows the finished product.\"]}, \"v_gGg-kio0dmU\": {\"duration\": 8.64, \"timestamps\": [[0, 8.64], [2.51, 8.64]], \"sentences\": [\"People are playing and swimming in a pool.\", \" a girl does a back flip off a board.\"]}, \"v_WXaFTEWJThM\": {\"duration\": 76.56, \"timestamps\": [[0, 39.04], [39.43, 76.56]], \"sentences\": [\"A person is seen filling up a sink with water and holding a rag in the water.\", \" She scrubs down her face and washing it off with the rag and smiling into the mirror.\"]}, \"v_rb-PUa4uGLQ\": {\"duration\": 52.64, \"timestamps\": [[0, 52.38], [13.16, 52.38]], \"sentences\": [\"A person wearing a costume is seen sitting in the middle of the street playing an accordion.\", \" The person continues playing while the camera zooms in and several cars and people move behind him.\"]}, \"v_FL9yhHtoc6c\": {\"duration\": 220.64, \"timestamps\": [[9.93, 23.17], [23.17, 39.71], [39.71, 56.26], [56.26, 67.29], [67.29, 75.02], [75.02, 93.77], [93.77, 115.83], [115.83, 136.79], [136.79, 194.16], [194.16, 201.88], [201.88, 212.91], [212.91, 220.64]], \"sentences\": [\"A man and a woman are dancing on a concrete ground at night under a street light.\", \" Both the man and the woman are wearing a black tank top and black shorts along with black shoes.\", \" They are dancing in a synchronized manner by following choreographed dance steps to a song.\", \" They move their hands as they lift their right leg up high while dancing.\", \" Then they shake their hips and their heads they lip sync to the song.\", \" when the music gets faster, they move their hands in a circular motion.\", \" They also lift their knees up high while shaking their bodies.\", \" They repeat the steps every time the chorus of the song plays.\", \" They lift their knees up high alternating between the two legs.\", \" They continue to dance as they hold up the palms of their hands straight up and move their hips.\", \" They repeat the steps as the chorus of the song repeats.\", \" Finally after the song ends, they both stand still with their hands on their hips.\"]}, \"v_tVbrnWNOmFY\": {\"duration\": 200.34, \"timestamps\": [[1, 22.04], [22.04, 138.24], [138.24, 180.31], [180.31, 198.34]], \"sentences\": [\"A man takes a patch and put on a wheel while explaining and showing materials .\", \" Then, the man takes the wheel of a bike to fix the hole of the tube by applying a patch.\", \" After, the man put the tube on the wheel and pump air in the wheel.\", \" Then, the man put and fix the wheel in the bike.\"]}, \"v_cDnJjAQtf-g\": {\"duration\": 87.45, \"timestamps\": [[0, 9.62], [10.06, 20.55], [20.11, 34.54], [36.73, 60.34], [61.21, 87.45]], \"sentences\": [\"Three men discuss the topic of playing water polo with kayaks.\", \" The scene changes to show a display of water polo with kayaks.\", \" Two boats crash as two men try to paddle their way to the ball, The men commentate over the scene, they players look severely injured.\", \" The display changes back to the men talking about the water polo, they are very intrigued and shocked.\", \" The scene reverts back to the water polo accident, the show banner concludes the video.\"]}, \"v_W-pFUV2O1l0\": {\"duration\": 150.12, \"timestamps\": [[0, 149.37], [25.52, 122.35], [48.79, 81.81], [64.55, 81.81], [82.56, 105.83], [111.09, 149.37]], \"sentences\": [\"A man is cutting another mans hair.\", \" He is demonstrating the types of cuts.\", \" He combs and snips the front of the mans hair.\", \" He parts the hair and continues pulling and trimming the front flip.\", \" He then turns the mans head and works on the back.\", \" He finishes haircut on the man.\"]}, \"v_hv3tNd_6qB4\": {\"duration\": 121.63, \"timestamps\": [[0, 31.01], [0, 98.52], [15.81, 86.96], [34.66, 86.96], [98.52, 100.34], [104.6, 117.37], [116.76, 121.63]], \"sentences\": [\"A woman dances while another stands in the background.\", \" A third woman sweeps the floor.\", \" The second woman starts walking around with a towel under one foot.\", \" The first woman stops dancing and starts walking around with a towel under one foot.\", \" The sweeping woman stops, jumps, and waves before resuming.\", \" The first woman pulls items out of a cabinet and places them on the floor.\", \" A fourth individual is briefly shown in the doorway.\"]}, \"v_DF8nlagyN6k\": {\"duration\": 218.5, \"timestamps\": [[0, 55.72], [55.72, 140.93], [140.93, 218.5]], \"sentences\": [\"Two people are on a white slab and they begin fencing one another.\", \"There are constant stops and the boy closest to the camera keeps winning.\", \"Both of them keep being reset but the outcome is no different and the lady on the side keeps walking back and forth clicking a black button.\"]}, \"v_CZveW9zX0s8\": {\"duration\": 141.41, \"timestamps\": [[0, 36.06], [38.18, 99.69], [93.33, 141.41]], \"sentences\": [\"A man is shown speaking to the camera and leads into a woman trimming the fur on a dog.\", \" The speaks more to the camera while other dogs are shown groomed and one woman walks away holding two excited dogs.\", \" More shots of dogs held are shown while the man speaks and the camera pans around the building.\"]}, \"v_9fnmcyUz5jg\": {\"duration\": 75.23, \"timestamps\": [[0, 3.01], [3.01, 57.18], [57.55, 75.23]], \"sentences\": [\"A logo shows that this video is presented by Expert Village.\", \" A man in a small blue boat discusses the topic of hand surfing in a hole and gives hints on how to perform this activity.\", \" The man demonstrates tricks that can be done while performing this activity.\"]}, \"v_1OmzECVyIww\": {\"duration\": 45.81, \"timestamps\": [[0, 2.29], [4.58, 45.81]], \"sentences\": [\"An athletic man is seen waving one arm up into the air and standing ready for a beam.\", \" The man then spins himself around the beam performing a gymnastics routine and ends with him jumping to the side and holding his arms up, smiling and waving to the crowd.\"]}, \"v_LHewj6shKGw\": {\"duration\": 71.66, \"timestamps\": [[0, 37.98], [40.49, 71.66]], \"sentences\": [\"A group of kids are on a track, and they practice jumping over a low beam.\", \" They perform the motion several times, portraying the act in slow motion.\"]}, \"v_UxIXOCccW24\": {\"duration\": 63.62, \"timestamps\": [[0, 17.81], [15.27, 47.08], [44.22, 63.62]], \"sentences\": [\"Two people are seen speaking to the camera wearing costume when another person steps into frame.\", \" Two people then battle one another in the costumes and run into one another.\", \" One person knocks the other on the ground and shows off a wrestling move.\"]}, \"v_-rwKyNnz89s\": {\"duration\": 177.91, \"timestamps\": [[3.56, 51.59], [45.37, 129.88], [121.87, 171.69]], \"sentences\": [\"A man is seen standing in a goal followed by a person kicking a boll.\", \" More clips are shown of people kicking a ball towards the goal while people watch on the sides.\", \" Several more people take their turn kicking a ball and end by running all together and cheering.\"]}, \"v_gBTnWp9VLz4\": {\"duration\": 208.14, \"timestamps\": [[0, 31.22], [29.14, 112.4], [113.44, 208.14]], \"sentences\": [\"A car drives behind another while filming several snowy houses and trees shown.\", \" Eventually two snowboarding are shown doing jumps and tricks down a mountain.\", \" Another does several flips and tricks while another performs the same down the mountain.\"]}, \"v_iMXdwkAGfM4\": {\"duration\": 218.36, \"timestamps\": [[0, 33.85], [45.86, 194.34], [195.43, 218.36]], \"sentences\": [\"A man sits in a chair while a standing man uses an electric razor on his beard.\", \" The man gently shaves the other man's beard until it is gone.\", \"The man sits in the chair, wiping himself off before standing up.\"]}, \"v_yqzV0O139Yk\": {\"duration\": 90.98, \"timestamps\": [[1.36, 47.76], [30.93, 84.15]], \"sentences\": [\"Two people are seen standing on a field in front of ball when one bends over to balance on the ball.\", \" The woman then performs exercises on the ball with the man's assistance.\"]}, \"v_leKf6Q87IYg\": {\"duration\": 176.77, \"timestamps\": [[0.88, 53.03], [45.08, 144.07], [119.32, 175.01]], \"sentences\": [\"Several pictures of seen of a man wakeboarding and leading into him speaking to the camera.\", \" He demonstrates how to properly perform moves while standing on the lawn.\", \" It follows into the man riding around on a wakeboard.\"]}, \"v_PwbZimjxzps\": {\"duration\": 190.22, \"timestamps\": [[0, 35.19], [35.19, 83.7], [82.74, 135.05], [136.01, 190.22]], \"sentences\": [\"A man stands in front of a crowd pointing and speaking about the layout of a bullfighting ring.\", \" A demonstration of bullfighting is performed by a man with a pink cape and a man moving a fake bull object with a wheel.\", \" The bullfighter then demonstrates how to use his sword on the bull.\", \" Then the students wants to give it a try.\"]}, \"v_J1LIG037WzE\": {\"duration\": 167.44, \"timestamps\": [[0.84, 68.65], [68.65, 163.25]], \"sentences\": [\"Two men are seen fighting back and fourth on a set of mats using boxing gloves and pads.\", \" The men continue punching and kicking back and fourth while the camera continues to follow them around.\"]}, \"v_RrScnC2xQpw\": {\"duration\": 173.73, \"timestamps\": [[0, 39.09], [34.75, 130.3], [115.53, 173.73]], \"sentences\": [\"A girl is seen kneeling before the camera and leads into her walking around her house.\", \" She zooms in on an oven and is shown taking a pan out full of cookies.\", \" She lays out a plate to clean off follows by grabbing the cookies and laying them on the plate.\"]}, \"v_ZeN0mrRQHg8\": {\"duration\": 127.78, \"timestamps\": [[0, 19.81], [21.72, 107.97], [111.17, 127.78]], \"sentences\": [\"A group of kids are riding in bumper cars.\", \" They spin and move, hitting each other.\", \" The kids smile and laugh at each other as they collide.\"]}, \"v_pnN9AK7WKHU\": {\"duration\": 69.06, \"timestamps\": [[0, 3.11], [3.11, 10.7], [10.7, 25.21], [25.21, 36.95], [43.85, 50.41], [50.07, 63.88], [63.53, 69.06]], \"sentences\": [\"We see a person jet skiing.\", \" We see a red and black sail on a surfboard.\", \" We then see a yellow and blue sail.\", \" A yellow one passes a black one and keeps going, then the yellow one turns around.\", \" A yellowish green one appears on the screen.\", \" Three pass a red and blue one going in opposite directions.\", \" The rider of the red and blue one falls off his board.\"]}, \"v_UySzNwvkQKQ\": {\"duration\": 199.6, \"timestamps\": [[0, 11.98], [11.98, 162.67], [162.67, 199.6]], \"sentences\": [\"There are people standing in a large indoor court, on two different sides, with balls in the middle of the court.\", \"Suddenly people start running towards the balls and they begin to play dodge ball and pick them up and throw them at one another until one of the teams has only 1 person left standing.\", \"Only 1 guy remain standings and he attempts to hit someone else on the other team with a ball, and they in return do the same, they go back and forth doing this until a red ball finally hits the last guy standing on the team and he hits the floor.\"]}, \"v_xzoquwJYEZw\": {\"duration\": 107.95, \"timestamps\": [[0, 15.65], [14.03, 28.07], [28.07, 107.95]], \"sentences\": [\"man is standing in a wooden court talking to the camera.\", \" men are playing squash in a room holding rackets on his hands.\", \" the man is holding a racket and is talking to the camera.\"]}, \"v_kzvFQv5UCx4\": {\"duration\": 217.73, \"timestamps\": [[6.53, 92.54], [92.54, 119.75], [119.75, 210.11]], \"sentences\": [\"A man makes tattoos on the back head and neck of a person.\", \" Then, the man cleans the head and neck with a white tissue.\", \" After, the man continues making the tattoo on the side of the head while cleaning the paint.\"]}, \"v_YGBldj7DUq4\": {\"duration\": 215.97, \"timestamps\": [[0, 28.08], [28.08, 138.22], [138.22, 215.97]], \"sentences\": [\"A man is in a kayak in the water making turns with the help of an oar.\", \" Then, the man explains showing and moving the oar.\", \" After the man starts to row in the river and turning the kayak.\"]}, \"v_wP0jr86MNOw\": {\"duration\": 128.13, \"timestamps\": [[0, 7.69], [7.69, 15.38], [15.38, 59.58], [59.58, 124.92]], \"sentences\": [\"man is standing nex to a van wearing stilts.\", \" another man is sitting on the back part of a van is putting the stilts on his feet.\", \" men wearing stilts are walking in a parking lot to street.\", \" men are kneeling on the street and start jumping going down the paved slope.\"]}, \"v_X9CpU4ucYeg\": {\"duration\": 112.87, \"timestamps\": [[0, 46.28], [46.84, 66.6], [66.6, 82.96], [83.53, 112.87]], \"sentences\": [\"woman is standing in a kitchen talking to the camera and showing the lemons, jar and the bowl on the counter.\", \" woman is squeezing the lemon into a bowl and on the water.\", \" woman is ni front of the stove and pour sugar into water in a pan till boil.\", \" woman pour sugar in the jar with ice.\"]}, \"v_rG-WlnAoc3M\": {\"duration\": 129.82, \"timestamps\": [[0, 21.42], [22.07, 31.16], [31.16, 64.91], [65.56, 92.82], [92.82, 114.24], [114.89, 122.03]], \"sentences\": [\"A person wet a car with water, then he puts detergent to the car using a long squeegee.\", \" The man rinses the car with water.\", \" Then, the man cleans again with soap and water the car for the second time.\", \" The man cleans with a cloth and rinse with water the rims of the car.\", \" After, the man dry the car manually with a cloth.\", \" Next, the man cleans inside the car, then drives the car.\"]}, \"v_AA6nXQMyfhU\": {\"duration\": 117.86, \"timestamps\": [[0, 30.06], [33, 55.99], [56.57, 74.84], [75.43, 99.6], [100.77, 103.72], [104.31, 109.61], [111.97, 117.86]], \"sentences\": [\"A man sits at a table talking.\", \" The man, now standing, pours paint thinner n a rag and wipes the table with the rag.\", \" The man sits at the table again while talking.\", \" Now he is standing putting a polish on the table and shining it.\", \" He then cleans the table legs with a brush.\", \" He sits at the table talking for another moment.\", \" The scene changes and the man is seen standing in a garage.\"]}, \"v_VVLeWYKoNUE\": {\"duration\": 18.0, \"timestamps\": [[0, 10.89], [10.89, 14.4], [14.58, 18]], \"sentences\": [\"We see a person jet-skiing behind a boat.\", \" The boat runs aground into some brush.\", \" The skier is laying in the lake.\"]}, \"v_-5Yp-vToI2E\": {\"duration\": 116.47, \"timestamps\": [[0, 37.85], [27.37, 92.01], [65.81, 111.81]], \"sentences\": [\"A large group of people are seen standing around a ballet room and leads into four performing a dance.\", \" The four continuously move together while holding hands and doing the same moves.\", \" The girls laugh together and continue dancing and ending by holding a pose.\"]}, \"v_zPl4spxrvg4\": {\"duration\": 208.17000000000002, \"timestamps\": [[0, 47.88], [46.84, 103.04], [103.04, 139.47], [141.55, 208.17]], \"sentences\": [\"A woman walks into frame speaking to the camera and pointing to a sign that leads into her speaking with a man in front of a bow and arrow.\", \" The man speaks to her and puts bowing equipment on the woman and holds out the bow for her.\", \" He teaches her how to properly hold the bow and the woman takes several turns shooting the bow and arrow.\", \" She cheers and continues shooting while the man speaks to her and shakes her hand as they walk away.\"]}, \"v_cy-RLevyo_8\": {\"duration\": 142.32999999999998, \"timestamps\": [[0, 81.84], [81.13, 125.25], [125.25, 133.79], [134.5, 142.33]], \"sentences\": [\"From the roof we see the street where a car is parked and a man standing on the room the man begins to pry up roof shingles.\", \" The man adds a fixed piece of shingles and nails hem down.\", \" The man finishes and walks away.\", \" We see the ruck on the street for the roofing company.\"]}, \"v_pu-2w-UxdYg\": {\"duration\": 135.72, \"timestamps\": [[50.22, 82.11], [90.25, 116.72], [123.51, 135.72]], \"sentences\": [\"The woman wipes down the furniture with acetone.\", \"  Woman sprays silicone on table and wipes it off.\", \"  Woman compares old section to cleaned section.\"]}, \"v_VNROQWtYhlw\": {\"duration\": 212.35, \"timestamps\": [[28.67, 86], [86, 116.79], [116.79, 142.27], [142.27, 184.74], [184.74, 197.48]], \"sentences\": [\"There's a woman dressed in a sparkly golden dress is eating a Magnum chocolate truffle ice cream bar.\", \" She talks about her favorite flavor being chocolate.\", \" She takes a bite off the ice cream bar as she savors the rich flavor.\", \" She answers questions about needing to have down time as an actor and enjoying her favorite ice cream bar.\", \" The video ends with a decadent chocolate ice cream bar being drizzled with rich chocolate.\"]}, \"v_NyNuB328oi0\": {\"duration\": 33.46, \"timestamps\": [[0.17, 11.38], [9.7, 22.92], [24.09, 31.95]], \"sentences\": [\"A ball is shown flying up in the sky while a large group of people stand around.\", \" A person is then seen grabbing the ball on the ground.\", \" The person catches the ball and the clip is shown again in slow motion.\"]}, \"v_4avZ79LB5n4\": {\"duration\": 12.98, \"timestamps\": [[0, 1.49], [1.36, 3.89], [3.83, 6.75], [6.68, 12.98]], \"sentences\": [\"At an outdoor poor facility people are in the pool and others are outside standing by.\", \" There are two boys on the diving board preparing to jump down.\", \" They get in a unique position and then simultaneously dive in together.\", \" They make a huge splash as they land inside the water.\"]}, \"v_InHt3sukfeg\": {\"duration\": 175.07, \"timestamps\": [[0, 42.02], [42.02, 136.55], [133.05, 175.07]], \"sentences\": [\"A picture of a patio set is shown followed by a woman scrubbing down the tables and chairs.\", \" She wipes them down with a rag and then shakes up a can and spray paints the furniture.\", \" More close ups are shown of the furniture while text instructions pan over the screen.\"]}, \"v_5qh_gx81Bd8\": {\"duration\": 179.81, \"timestamps\": [[0, 124.97], [95.3, 179.81]], \"sentences\": [\"A man stands in a dance studio and shows how he sets up for different dance postures.\", \" The man in white tshirt does a spins while break dancing.\"]}, \"v_Lk_Xe9yQ8Zc\": {\"duration\": 157.46, \"timestamps\": [[0, 7.09], [7.09, 42.51], [43.3, 47.24], [48.02, 50.39], [50.39, 64.56], [64.56, 96.83], [96.83, 110.22], [110.22, 116.52], [116.52, 157.46]], \"sentences\": [\"man is in stage in the news.\", \" people are in street jumping the rope and dancing while people gathered around them are watching them.\", \" an old chinese woman is being interviewed.\", \" old man is talking to the camera.\", \" woman is holding a microphone talking to the camera jumping the rope.\", \" woman is jumping the rope and doing somersaults.\", \" women are being interviewed and behind her people are jumping the rope.\", \" people are in stage in competition jumping the rope.\", \" women are in street being interviewed and people keep jumping the rope.\"]}, \"v_of4bEaqQzOk\": {\"duration\": 199.14, \"timestamps\": [[0, 15.93], [17.92, 100.56], [77.66, 167.27], [125.46, 199.14]], \"sentences\": [\"The man in blue leotard raised the barbel, but he let go of the barbel and he fell on his back.\", \" The man in red leotard carried the barbel all the way up his head the crowd cheered.\", \" The athlete raised his barbel but wasn't able to go all the way up his head.\", \" The crowd is cheering while the athletes are able to raise the barbel all up his head.\"]}, \"v_cC1nvRqyXWs\": {\"duration\": 6.43, \"timestamps\": [[0, 4.41], [4.44, 6.11], [6.11, 6.43]], \"sentences\": [\"A man in blue gym shorts iron his clothes on an ironing board at home.\", \" The man sits down on the floor and folds his clothes and stacks them up.\", \"The man leaves the room and the room goes dark.\"]}, \"v_rbLCMaf3phk\": {\"duration\": 215.11, \"timestamps\": [[0, 198.98], [16.13, 198.98], [59.16, 198.98], [76.36, 198.98]], \"sentences\": [\"A man stands in a large arena.\", \" She throws a heavy ball really far.\", \" He does this again and again.\", \" He throws the balls really far.\"]}, \"v_Pso333FAp2w\": {\"duration\": 130.78, \"timestamps\": [[0, 15.69], [15.69, 53.62], [53.62, 92.85], [92.85, 130.78]], \"sentences\": [\"Outside a dog is laying down on the pavement when a human picks up a frisbee and throws it.\", \" The dog excitedly runs after it and come running back with it, bringing it back to his human.\", \" He disappears for a little bit and then you see him excitedly get ready to run for it again.\", \" Once he see's the frisbee flying he starts to run for it and brings it back every time.\"]}, \"v_t3Zg4mSksXk\": {\"duration\": 187.94, \"timestamps\": [[20.67, 63.9], [63.9, 118.4], [118.4, 150.35], [150.35, 180.43], [180.43, 187.94]], \"sentences\": [\"There are a few teenage boys skateboarding on a quiet streets in a neighborhood.\", \" They are going down the street, trying some stunts on the skateboard.\", \" There are a some leaves fallen on the curb.\", \" One of the boys bends down and skates in a seated position.\", \" The boys continue skateboarding through the streets, going past houses in the residential area.\"]}, \"v_H6hb3SIqdL4\": {\"duration\": 15.0, \"timestamps\": [[0, 0.15], [0.53, 5.03], [4.95, 15]], \"sentences\": [\"A man in a striped shirt prepares to throw dart at a dart board.\", \" The man throws three darts at the dartboard.\", \" The camera man pans to the side of the dartboard and zooms in on the darts as the man in the striped shirt reaches for the dart board.\"]}, \"v_3aQnQEL3USQ\": {\"duration\": 211.93, \"timestamps\": [[0, 69.94], [69.94, 128.22], [102.79, 108.08], [128.22, 131.4], [132.46, 211.93]], \"sentences\": [\"A boy wears jumping shoes to bounce in front a building and in a playground.\", \" Then, the boy gets up the steps of a building, and then take big steps and jump down high.\", \" A family of four wait the boy to pass the street.\", \" Then, the boy returns to the playground and jumps over a stone.\", \" After, the boy jumps high on the street until he arrives to a parking lot.\"]}, \"v_uRBE-ANigvs\": {\"duration\": 98.53999999999999, \"timestamps\": [[0, 6.9], [6.9, 21.68], [21.19, 88.19], [88.19, 98.54]], \"sentences\": [\"An intro shot of various athletes are shown.\", \" A man is then shown throwing a discus on a large field.\", \" Another man is also shown doing the same with a still shot of him afterwards showing his posture and his throw in slow motion.\", \" He is then shown walking away and feeling very confident about what he just accomplished.\"]}, \"v_4kbtdUz2M3M\": {\"duration\": 234.59, \"timestamps\": [[0, 39.88], [39.88, 234.59]], \"sentences\": [\"Various people are seen wandering around a beach, followed by waves moving along the water and people sitting in the water.\", \" Several people surfing the waves while people on the sidelines watch the athletes move.\"]}, \"v_00S8I27qDU4\": {\"duration\": 37.41, \"timestamps\": [[0, 7.86], [7.86, 28.06], [28.62, 37.41]], \"sentences\": [\"A lady holds a javelin on a track she puts it down.\", \" The scene starts over and we see a lady throw a javelin and walk away.\", \" We then see the throw measured and a man walks up as talks to the girl.\"]}, \"v__8m1tlowwKM\": {\"duration\": 130.15, \"timestamps\": [[18.87, 35.14], [35.14, 87.2], [87.2, 119.09], [119.09, 122.99]], \"sentences\": [\"A man with long sideburns wearing a red colored robe is playing the piano.\", \" there's another man in a blue shirt standing near him, busy engaged in packing some bags.\", \" The main in red continues playing the piano as the other man carries two bags and leaves.\", \" The man stops playing the piano and waves to the other person as he gets up and leaves.\"]}, \"v_TdZOfBHjU5g\": {\"duration\": 232.07999999999998, \"timestamps\": [[24.37, 67.3], [67.3, 113.72], [113.72, 155.5], [155.5, 183.35], [183.35, 212.36], [212.36, 222.8]], \"sentences\": [\"There's a person wearing blue latex gloves polishing a hexagonal wooden table to demonstrate French polishing technique.\", \" He is using a polishing sponge to polish the table top surface in circular motion.\", \" He then goes in up and down motion over the table surface to make it shiny.\", \" He meticulously goes over the entire surface making sure no part of the table is left untouched.\", \" He then starts polishing the surface of a dinning room buffet that has bamboo finish doors.\", \" He again polishes in circular motions on the top surface.\"]}, \"v_syAccI5soVw\": {\"duration\": 202.99, \"timestamps\": [[0, 106.57], [105.55, 202.99]], \"sentences\": [\"A young girl is seen performing a belly dancing routine in front of a large group of people.\", \" The girl continues swinging her arms and legs around in front of the audience and ends by bowing and blowing a kiss.\"]}, \"v_HGqaDftZe5s\": {\"duration\": 38.43, \"timestamps\": [[0, 38.43], [10.76, 21.33], [22.67, 34.78]], \"sentences\": [\"We see small kids ride BMX bikes on a dirt track in an arena.\", \" The kids ride past the camera.\", \" The kids start passing the finish line.\"]}, \"v_p4MMyVArVc0\": {\"duration\": 129.8, \"timestamps\": [[3.89, 126.56], [3.89, 118.77], [96.05, 129.8], [90.86, 96.05]], \"sentences\": [\"A woman is balancing on a tight rope outdoors.\", \" The woman is showing various acrobatic moves.\", \" The woman is bouncing on the wire.\", \" An animal is in the field in the background.\"]}, \"v_OT98MiVje0g\": {\"duration\": 90.61, \"timestamps\": [[0, 4.08], [4.98, 84.72], [84.72, 90.61]], \"sentences\": [\"A close up is seen of Christmas decorations.\", \" A man in Santa Claus costume plays a drum set in a home with a lit up Christmas tree.\", \" The man dressed up as Santa finishes playing the song on drums.\"]}, \"v_DeHIqrMlsU8\": {\"duration\": 139.07, \"timestamps\": [[0, 73.7], [70.92, 139.07]], \"sentences\": [\"The video begins with several shots of a person riding down a hill on a skateboard and doing tricks.\", \" The boy continues to ride around on a skateboard doing flips and tricks and the camera capturing him from several angles.\"]}, \"v_haUWdHvwpUo\": {\"duration\": 205.17000000000002, \"timestamps\": [[0, 25.65], [25.65, 85.15], [85.15, 119], [119, 205.17]], \"sentences\": [\"A man is giving instructions about playing the congo.\", \" He speaks with his hands and then he taps the top of the congo very lightly.\", \" He starts to tap lightly on the congo at a very slow tempo and after a little bit of doing that he stops to start talking again.\", \" Finally, he starts using both of his hands to build up an actual beat and talks some more about it.\"]}, \"v_DMUFb7gvUx4\": {\"duration\": 181.59, \"timestamps\": [[0, 18.16], [18.16, 65.37], [65.37, 79.9], [80.81, 83.53], [83.53, 132.56], [132.56, 181.59]], \"sentences\": [\"Men travel in a plane and arrives to the top of a mountain.\", \" Then, men get down the plane and ski down the hill.\", \" A person ski behind  a man down the slope of the mountain.\", \" A snow removal clear the snow of the road.\", \" After, the men ski down the hill in middle of the trees.\", \" The men ski in a wood area that is uneven.\"]}, \"v_cErtrZrWhiQ\": {\"duration\": 84.57, \"timestamps\": [[0, 6.34], [6.34, 80.34], [80.34, 84.57]], \"sentences\": [\"Two men dressed in suits are facing one another with a hand on each others back, and holding hands with the other one and they dance in one direction, then back in another and then laugh and separate.\", \" Right where the men separate from dancing there is an Asian woman that is now the focus as she plays on an accordion keyboard.\", \"The woman stops playing, laughs and looks and says something.\"]}, \"v_gPjH9C9wdJw\": {\"duration\": 183.81, \"timestamps\": [[0, 183.81], [30.33, 183.81]], \"sentences\": [\"A man is holding a guitar and looks back and fourth between the camera and the guitar.\", \" He moves his hands up and down the neck of the guitar and sings softly to the camera.\"]}, \"v_fBxpQxIqGN8\": {\"duration\": 164.51, \"timestamps\": [[0, 164.51], [20.56, 150.53], [157.11, 164.51]], \"sentences\": [\"A person in pink does tai chi.\", \"  She moves around but is basically doing the same basic thing.\", \"  She stops and is still at the end.\"]}, \"v_IGXq7a7Jl7s\": {\"duration\": 227.35, \"timestamps\": [[4.55, 131.86], [130.72, 158.01], [156.87, 173.92], [178.47, 226.21]], \"sentences\": [\"Several athletes compete for the javelin world championships.\", \" The Russia Dimitri is 3rd bronze medal in the competition.\", \" the Japanese Jenki is silver medal.\", \" Till from Germany won the gold medal.\"]}, \"v_nvFtFFJXxB0\": {\"duration\": 181.44, \"timestamps\": [[0, 87.09], [31.75, 181.44]], \"sentences\": [\"An intro leads into hands seen playing a musical instrument while pausing the point on the instrument.\", \" He continues moving his hands around to play and is then seen speaking to the camera.\"]}, \"v_xcrGhwE7R5E\": {\"duration\": 180.13, \"timestamps\": [[0, 22.52], [29.72, 84.66], [102.67, 180.13]], \"sentences\": [\"A man is talking in his kitchen.\", \" He shows how to mix a sauce into pasta, and season it.\", \" He then shows how to plate and serve the food.\"]}, \"v_cGtK7bs-TE8\": {\"duration\": 60.44, \"timestamps\": [[0, 11.48], [12.39, 60.44]], \"sentences\": [\"A fast motion video is shown of various people raking leaves around a yard.\", \" Two boys look around towards each other and continue raking the leaks until the yard is done.\"]}, \"v_CAW0CEuyvZo\": {\"duration\": 3.93, \"timestamps\": [[0, 0.71], [0.92, 3.93]], \"sentences\": [\"A girl is in front of a camera.\", \" She applies light pink lip gloss to her lips.\"]}, \"v_0e7-mNDgIXw\": {\"duration\": 195.42, \"timestamps\": [[0, 4.89], [4.89, 148.52], [148.52, 180.76], [180.76, 195.42]], \"sentences\": [\"A special effect intro that looks like a chalk board on wood appears and the words on it say SKI SCHOOL on the upper left, and the middle words say \\\"Ski Tips: FOOT ROTATION\\\" along with a website at the bottom and a blue circle icon on the upper right.\", \"A man skis into view and he's standing on a snowy mountain with a lot of trees and he's talking and looks like he's giving tips on how to ski as he physically demonstrates and continues to talk the whole time.\", \"The man is now back at his starting point where he was originally standing and he's talking again.\", \"The special affect screen appears with a wooden background and 4 different pictures on the screen with words under them.\"]}, \"v_hi07Rdf1r4Y\": {\"duration\": 53.8, \"timestamps\": [[0, 16.41], [15.87, 53.8]], \"sentences\": [\"A balded man is seen talking to the camera while another man stands above him and cuts his hair.\", \" The man sitting rubs his hand and holds his face into his hands.\"]}, \"v_IwViXKNNBEU\": {\"duration\": 9.85, \"timestamps\": [[0, 1.72], [0, 9.85], [1.58, 9.85]], \"sentences\": [\"A man prepares himself to throw a discus.\", \" Multiple people walk around and talk in the background.\", \" The man spins and throws the discus.\"]}, \"v_koSLx0E23gU\": {\"duration\": 122.49, \"timestamps\": [[0, 4.9], [4.9, 101.05], [19.6, 22.66], [55.73, 60.02], [59.41, 65.53], [91.86, 100.44], [101.05, 122.49]], \"sentences\": [\"We see an arena from out doors.\", \" We see people on trampoline performing flips in the arena.\", \" We see a person almost fall after flipping.\", \" The person lands and almost falls.\", \" A person flips multiple times down a strip on the ground.\", \" We see a man jump and land on the trampoline in slow motion.\", \" We see the ending title screens.\"]}, \"v_CQvmcZSfyhI\": {\"duration\": 199.82999999999998, \"timestamps\": [[0, 70.94], [70.94, 135.89], [135.89, 192.84], [192.84, 199.83]], \"sentences\": [\"A group of cheerleaders come from the side stage and begin smiling and waving to the crowd before settling into their formation.\", \"The routine begins and they start doing hurkies,throwing each other in the air and holding each other up.\", \"Doing the middle of the routine,half of the girls sit in the back behind the rest of the cheerleaders as they do a part of the routine.\", \"The routine ends and they all run across the stage with spirit fingers before leaving the stage.\"]}, \"v_APuN4vwgKJ4\": {\"duration\": 209.77, \"timestamps\": [[0, 23.07], [23.07, 49.3], [49.3, 112.23], [112.23, 147.89], [147.89, 177.25], [177.25, 209.77]], \"sentences\": [\"A woman standing at a counter speaking about making chocolate chip cookies.\", \" She combines and mixes the ingredients with a hand mixer.\", \" She then places flour into a bowl after she measures it along with baking soda.\", \" She adds it to the cookies dough and mixes it by hand then adds in the chocolate chips.\", \" She then measures out dough that is on a baking sheet for cooking.\", \" Placed in the oven and after they cool you have cookies.\"]}, \"v_DXluU6_7OXQ\": {\"duration\": 148.59, \"timestamps\": [[0, 24.52], [36.4, 82.46], [84.69, 148.59]], \"sentences\": [\"A girl stands up from a table in a kitchen.\", \" She and another girl have glasses and spoons.\", \" They proceed to eat the substance as they sit on the floor.\"]}, \"v_GldxuTsExZM\": {\"duration\": 228.35, \"timestamps\": [[0, 27.4], [27.4, 84.49], [86.77, 184.96], [184.96, 228.35]], \"sentences\": [\"A person holding a moose moves the puppet and leads into someone opening a box.\", \" The person pulls pumpkins out of the box and cuts a circle around the top.\", \" He scoops the seeds out of the pumpkin while using the moose and uses a marker to draw on its side.\", \" He cuts around the marker lines and puts a candle inside to make a jack o lantern.\"]}, \"v_dc9m-G9CKmQ\": {\"duration\": 137.46, \"timestamps\": [[0, 21.99], [21.31, 48.11], [48.8, 68.73], [68.04, 101.72], [101.72, 137.46]], \"sentences\": [\"A man speaking about how he will be sharpening knives today.\", \" He shows the tool that he will be using that is called chefs choice.\", \" He shows how to use it and how you can use it with either hand.\", \" Then he begins to sharpen one of his knives.\", \" After he is done sharpening it he demonstrates with a tomato how helpful it is.\"]}, \"v_YtFGG_7A_UU\": {\"duration\": 135.88, \"timestamps\": [[0, 4.08], [4.08, 28.54], [27.86, 46.2], [46.2, 87.65], [86.97, 135.88]], \"sentences\": [\"A middle aged white female is standing in a lobby of some sort next to a picture talking.\", \"She then reappears in another room of the same place and is talking in front of a mirror,vase,and plant.\", \"In her hand,she has a small circular container with shoe polish it and takes a rag and dips the rag in the container.\", \"The woman then proceeds to clean the male dress shoe with the cloth and polish.\", \"She then takes a brush and start going over the shoe with it and pauses briefly and begins talking.\"]}, \"v_r5oPTDuHhoE\": {\"duration\": 41.31, \"timestamps\": [[0, 6.82], [6.82, 24.37], [23.96, 29.33], [29.33, 39.04]], \"sentences\": [\"A group of girls are shown standing around a field huddled up together.\", \" The next shots are of the girls running around the field passing the ball back and fourth.\", \" A girl shoots the ball into the goal and achieves a point.\", \" Another later tries to shoot a goal but is blocked by the goalie.\"]}, \"v_A8q6beSMpEE\": {\"duration\": 58.28, \"timestamps\": [[0, 8.16], [8.16, 34.97], [34.39, 36.72], [52.75, 57.99]], \"sentences\": [\"A man is holding windex near his car door.\", \" The man then sprays the window with windex and wipes the window.\", \" The man rolls the window up.\", \" The man finishes and rolls the window down to wipe it some more.\"]}, \"v_WX1TLuHXCd8\": {\"duration\": 89.72, \"timestamps\": [[0.45, 2.69], [3.14, 86.58], [7.63, 8.52], [87.03, 89.72]], \"sentences\": [\"The credits of the clips are shown.\", \" Guys are playing lacrosse on a field.\", \" A guy pushes a male to the ground.\", \" The credits of the video are shown.\"]}, \"v_FMtUqoxfR50\": {\"duration\": 64.82, \"timestamps\": [[0, 4.86], [4.86, 59.63], [59.63, 64.82]], \"sentences\": [\"A special effect intro screen appears, it's mainly red and contains words on it that say \\\"How to Improve Your Volleyball Spike\\\".\", \"In slow motion a man is on a volleyball court demonstrating moves as white text appears as he does certain movements.\", \"When he's done a red screen appears that include a website in white text that say's \\\"AcuSpike dot com\\\" and it includes a blue clip art going through it along with a white volleyball.\"]}, \"v_SO67XxdevPw\": {\"duration\": 64.18, \"timestamps\": [[0, 5.13], [5.13, 22.14], [22.46, 50.7], [49.74, 57.12], [57.76, 64.18]], \"sentences\": [\"An African American male gymnast in a blue leotard steps under two bars and begins stretching.\", \"He grabs the bars and pulls himself up into a hand stand on the bars.\", \"He continues to do acrobatic flips and continuous flips.\", \"His next set of flips consists of splits over the bars,followed by hand stands.\", \"Finally, he flips off the bars and lands on the mat to complete his performance.\"]}, \"v_hFtmkU7wdx4\": {\"duration\": 87.73, \"timestamps\": [[0, 6.58], [7.02, 15.35], [16.67, 51.32], [52.2, 61.85], [64.92, 77.2], [79.39, 87.73]], \"sentences\": [\"A sky with the sun is peeking through the clouds.\", \" A man is on a track in front of a crowd.\", \" He runs, doing a long jump in slow motion.\", \" He celebrates as he wins the medal.\", \" A man is shown talking about him.\", \" The credits appear at the end.\"]}, \"v_t6vWMTMooDc\": {\"duration\": 222.19, \"timestamps\": [[0, 20], [20, 55.55], [55.55, 103.32], [103.32, 115.54], [116.65, 169.98], [169.98, 192.2], [192.2, 222.19]], \"sentences\": [\"A man and a woman are standing in a living room with large sumo costumes on.\", \"The girl jumps up and then the man tries it to see how heavy the uniform is.\", \"Next,the man holds up a bag of lemons and begin to talk before they put their head equipment on.\", \"Now,it is time for the match and they begin wrestling with one another.\", \"However,they've added a feature to the match and each person has to put lemons in the other's hat to gain points.\", \"After several attempts,the girl wins and the score is 4 to 0.\", \"Now begins round two and the outcome is the same as the girl cheats to win.\"]}, \"v_ycBFz2RdgoY\": {\"duration\": 198.76, \"timestamps\": [[0, 14.91], [15.9, 18.88], [19.88, 198.76]], \"sentences\": [\"People windsurf on a large body of water.\", \" A park sign that reads \\\"Welcome to Kanaha Beach Park\\\" is shown.\", \" More windsurfers are shown racing across the water.\"]}, \"v_pt6XC-p_CFE\": {\"duration\": 121.58, \"timestamps\": [[0, 18.84], [22.49, 87.54], [80.85, 118.54]], \"sentences\": [\"A woman is seen speaking to the camera and holding up a tin.\", \" She then folds a piece of paper into an airplane and rubs it along the pan.\", \" She then puts a container into the pan while speaking to the camera.\"]}, \"v_0PyY_iHBZHk\": {\"duration\": 105.12, \"timestamps\": [[0, 31.54], [34.16, 82.52], [59.39, 104.07]], \"sentences\": [\"A man is seen speaking to the camera while showing shots of people playing water polo.\", \" More clips are shown of people hitting the ball as well as the host speaking to another man.\", \" More clips are shown of people playing in the pool and laughing with one another.\"]}, \"v_J4FBxa5FWSo\": {\"duration\": 12.98, \"timestamps\": [[0, 1.62], [2.01, 6.94], [7.2, 12.98]], \"sentences\": [\"A man runs on a pair of stilts down an alley.\", \" He bounces over a bike as he runs.\", \" He then runs up the side trim of a building before disappearing around the corner.\"]}, \"v_0O589B9zr84\": {\"duration\": 114.92, \"timestamps\": [[0, 8.04], [9.77, 26.43], [27.01, 87.91], [88.49, 103.42], [104, 114.92]], \"sentences\": [\"Cartoon buildings are shown, then a pair of angels.\", \" We see a bucket filled with laundry.\", \" The video explains how washing clothes should involve soaking and brushing, and hand washing.\", \" Then it talks about rinsing and hanging the clothing to dry.\", \" We finally see an empty dryer before an ad for Laundry Bin Heaven.\"]}, \"v_smYAy6TYS3M\": {\"duration\": 67.11, \"timestamps\": [[0, 4.36], [5.37, 30.2], [32.21, 67.11]], \"sentences\": [\"A group of small children are on a playground.\", \" They take turns hopping across a game of hopscotch drawn on the sidewalk.\", \" They continue taking turns over and over.\"]}, \"v_OhydQlKoSUw\": {\"duration\": 74.63, \"timestamps\": [[0, 12.31], [12.69, 45.52], [57.46, 74.63]], \"sentences\": [\"A person is seen getting out of a car and walking around to the trunk to grab a surf board.\", \" The person is then seen wearing a suit and running down a boardwalk followed by him surfing.\", \" The man glides along the water in slow motion and is then seen speaking to the camera.\"]}, \"v_tQT-iQIv-KY\": {\"duration\": 91.58, \"timestamps\": [[0, 91.58], [8.7, 86.08], [14.19, 62.73], [62.73, 87.46], [64.56, 71.43], [84.71, 91.58]], \"sentences\": [\"A group of coaches, gymnasts and parents stand and sit around a gym while a few of the gymnasts perform or practice.\", \" A young girl in purple does a balance beam routine.\", \" A girl in the back ground does a floor routine.\", \" When the floor routine ends the crowd all claps and several young gymnasts get up and walk around.\", \" A woman hold up a sign that says 965.\", \" The girl on the balance beam ends her routine and walks over and hugs a woman in purple.\"]}, \"v_COeXmBZpLSE\": {\"duration\": 110.85, \"timestamps\": [[0, 12.19], [11.09, 18.85], [18.29, 64.29], [65.96, 110.85]], \"sentences\": [\"An intro to Dancing with the Stars shows followed by a man playing piano and a couple looking off into the distance.\", \" The woman begins playing the piano when the man standing plays and grabs her.\", \" They twirl around a large stage surrounded by hundreds of people watching them dance.\", \" The man picks her up and twirls her around the music and ends with audience clapping.\"]}, \"v_IRmk1AM-yJE\": {\"duration\": 158.64, \"timestamps\": [[3.17, 72.18], [53.14, 149.12]], \"sentences\": [\"Two people are seen playing a game of pool while others watch on the side and conversation.\", \" The men continue hitting the ball around the table and moving around.\"]}, \"v_37siIMJNG9Y\": {\"duration\": 98.17, \"timestamps\": [[0, 22.58], [22.58, 49.58], [49.09, 78.54], [78.05, 98.17]], \"sentences\": [\"A young girl is sitting down in front of a screen and begins talking as she is holding a bottle of blue mouthwash.\", \"The girl then takes the mouthwash and starts to put it over head and playing with is while making funny faces.\", \"After taking about it,the girls takes a gulp of it and starts to gargle it and holds it in her mouth.\", \"Finally,she spits it out and takes a drink of water before the replay is shown.\"]}, \"v_6uNhwOSZXco\": {\"duration\": 161.5, \"timestamps\": [[0, 8.88], [10.5, 29.88], [28.26, 32.3], [32.3, 46.03], [45.22, 55.72], [56.52, 81.55], [85.59, 100.93], [100.93, 120.31], [121.93, 129.2], [130, 144.54], [144.54, 151]], \"sentences\": [\"A man in a snow jacket is seated in a ski lift.\", \" A man in yellow jacket holds a rubber inter tube with a rope and a child in ski clothes sits down inside.\", \" The man pushes the child down a ski slope.\", \" The child goes down a set of hills on the intertube.\", \" A woman attempts to stop the child then retrieves his intertube.\", \" A group of young girls and boy pull intertubes up a hill.\", \" A child in green jacket gets into an intertube.\", \" The child is pushed down the ski slope and sleds to the bottom.\", \" A woman in grey sweatshirt retrieves the intertube at the bottom of the slope.\", \" A boy in green jacket is pushed down the ski slope.\", \" A woman an grey sweatshirt retrieves the intertube at the bottom of the slope.\"]}, \"v_9vqOA8KVcME\": {\"duration\": 207.03, \"timestamps\": [[0, 207.03], [30.02, 40.37], [69.36, 103.52], [104.55, 187.36], [196.68, 207.03]], \"sentences\": [\"A lady talks to the camera.\", \" We see the lady hold up bottle of witch hazel and a cotton pad and talks.\", \" The lady holds up a bottle of lotion.\", \" We see the lady put lotion on her face and then hold a small bottle of serum she puts on her face.\", \" We see teh lady with makeup on talking to the camera.\"]}, \"v_KYtV2vpwuVw\": {\"duration\": 98.71000000000001, \"timestamps\": [[0, 41.95], [39.98, 57.74], [55.77, 62.19], [62.68, 98.71]], \"sentences\": [\"1 A camera man watches men on bikes that are about to race.\", \" 2 The race begins with the guys on bikes.\", \" 3 One man wipes out.\", \" 4 The race ends and the guys take their bikes.\"]}, \"v_Y-CZasxVlx4\": {\"duration\": 238.05, \"timestamps\": [[0, 8.33], [8.33, 46.42], [51.18, 238.05]], \"sentences\": [\"A girl holding a guitar talks to the camera.\", \"  The girl plays the guitar as she sits on the sofa.\", \" The girl stops playing and talks to the camera again while demonstrating.\"]}, \"v_QjoEYtjPa3w\": {\"duration\": 131.12, \"timestamps\": [[0, 3.28], [3.28, 9.83], [9.83, 51.79], [51.79, 83.26], [85.23, 115.39], [115.39, 131.12]], \"sentences\": [\"We see an opening instruction screen.\", \" We see a person holding a contact lens.\", \" We see another instruction screen and see the person inserts the lens on the left.\", \" Another screen of instructions and the person inserts the right lens.\", \" Two sets of Instructions appear an the person removes the left and right lens.\", \" the person waves bye to the camera.\"]}, \"v_5z6q_Ix3kWI\": {\"duration\": 146.7, \"timestamps\": [[0, 20.54], [22.01, 37.41], [38.14, 49.88], [49.88, 67.48], [69.68, 73.35], [86.56, 136.43]], \"sentences\": [\"A man is skiing very fast down a hillside and hops one for fun.\", \"  He is now walking back up the mountain with difficulty.\", \"  He skiis and walks up various hills.\", \"  Skiis down a rather large hillside or mountain.\", \"   He jumps off a hill and tries to do a 360 but falls.\", \"  He skiis between some trees and on a path.\"]}, \"v_Atdxx_Pxnd4\": {\"duration\": 41.82, \"timestamps\": [[0, 6.06], [8.78, 22.16], [23.21, 41.82]], \"sentences\": [\"A cowboy runs out of a gate on a horse.\", \" He uses a lasso to rope a calf.\", \" He tries to tie up the calf, losing his rope.\"]}, \"v_9SEc3QVBCo4\": {\"duration\": 24.07, \"timestamps\": [[0, 3.97], [5.42, 16.97], [18.41, 24.07]], \"sentences\": [\"A man is working outside a house.\", \" He uses a hammer and clamp on the shingles.\", \" He knocks each shingle off the house with the hammer.\"]}, \"v_g5BPyMdlurg\": {\"duration\": 154.95, \"timestamps\": [[0, 3.1], [14.72, 20.14], [26.34, 44.16]], \"sentences\": [\"First this girl does a back bend and then another girl does a back walkover.\", \" Then someone else does a cartwheel and that same person does a round off.\", \" next someone does a front walkover and another girl does a standing back handspring along with other people who are doing gymnastic moves.\"]}, \"v_bSBmunE-1KQ\": {\"duration\": 116.7, \"timestamps\": [[0, 44.35], [41.43, 116.7]], \"sentences\": [\"A man wearing a bag is seen speaking to the camera and leads into a group of people riding in a raft.\", \" One person paddles around and turns the ground around, leading back into the man speaking to the camera.\"]}, \"v_gCuRcP4txc0\": {\"duration\": 55.54, \"timestamps\": [[5.83, 48.32], [34.44, 44.16]], \"sentences\": [\"A group of drummers dressed in all white outfits perform a song.\", \" An instructor stands in front of the group giving instructions.\"]}, \"v_oBZ_oAUGO0E\": {\"duration\": 119.19, \"timestamps\": [[0, 7.75], [7.15, 119.19], [16.69, 119.19]], \"sentences\": [\"man is sitting in an ofice talking to the camera.\", \" a tattoo is shown in a back of a man and the man is tattoing him.\", \" man is standing laying no a stand getting a tatto on his back.\"]}, \"v_eElKkhIJXCs\": {\"duration\": 60.19, \"timestamps\": [[0, 6.92], [7.22, 43.64], [45.14, 60.19]], \"sentences\": [\"A group of kids are playing on a field.\", \" The coaches talk to them as they run.\", \" They engage in a game of lacrosse together.\"]}, \"v_oWaqaK58Tds\": {\"duration\": 199.3, \"timestamps\": [[0, 41.85], [42.85, 78.72], [80.72, 199.3]], \"sentences\": [\"A large group of people are seen standing on ice followed by various shots of curling tools and people playing the sport.\", \" A man is seen putting shoes on, walking along the ice while another helps him walk.\", \" The men continue to teach him how to glide along the ice and and use the brush to move the puck.\"]}, \"v_SIKxtWHWybU\": {\"duration\": 9.13, \"timestamps\": [[0, 1.05], [1.1, 2.56], [2.56, 9.13]], \"sentences\": [\"A man lays down on the floor over a mat.\", \" The man holds a weight ovebe his head.\", \" The man exercise holding the weight and raising the folded legs until the chest.\"]}, \"v_GkPmeXaNY0s\": {\"duration\": 108.22999999999999, \"timestamps\": [[0, 28.68], [29.76, 92.54], [94.16, 108.23]], \"sentences\": [\"A doctor is speaking while a nurse sits next to him in a medical office.\", \" He holds up a bottle of cleanser, and uses a rag to wipe it onto the woman's face, before wiping it clean again.\", \" It is also rubbed into her hands.\"]}, \"v_L9dtiopWGe4\": {\"duration\": 77.14, \"timestamps\": [[0, 4.63], [5.01, 11.96], [11.96, 35.48], [35.87, 52.07], [52.45, 61.32], [61.71, 77.14]], \"sentences\": [\"A table of various cut fruits appear on screen with the title \\\"Making Drinks\\\".\", \" A person cuts and squeezes lemons followed by the title \\\"Making Lemonade Is Easy and Fun\\\".\", \" Different items needed to make lemonade are shown and titled followed by interviews.\", \" Each step of making lemonade is shown and titled.\", \" People are interviewed drinking the lemonade.\", \" A \\\"Citrus Saturday\\\" logo appears with various supporting organization logos beneath.\"]}, \"v_wideKBXF-60\": {\"duration\": 176.73, \"timestamps\": [[0, 12.37], [12.37, 106.92], [11.49, 64.51], [64.51, 120.17], [120.17, 126.36]], \"sentences\": [\"An intro appears showing empty glasses, a card that say's \\\"Audi Polo Challenge 2014\\\", an Audi flag blowing in the wind, close up shots of a white horse, people with drinks, cars driving, polo riders getting on their horses, and a large group of people near and in a tent both standing and sitting.\", \"The polo match begins and the men are riding on hroses that are going very fast as they all attempt to hit the ball with their sticks.\", \" There are a lot of celebrities and even royalty at this polo event and every now and then they are shown, and sometimes they are also interviewed.\", \" Between matches the people all go out into the grass and put the patches of grass back into the holes that are missing them, and the polo game continues for another round.\", \"The polo match ends and Prince Harry and Prince William are seen separately receiving a white box from a man, while they talk and shake hands as people clap and take pictures.\"]}, \"v_q3NOVbRyFfw\": {\"duration\": 208.65, \"timestamps\": [[0, 39.64], [49.03, 156.48], [117.88, 207.6]], \"sentences\": [\"People are seen walking in the forest carrying tubes and lead into them sitting in the water.\", \" More people climb into the water and sit on top of their tubes.\", \" Several close ups are seen of the people riding on the tubes as well as swimming in the water.\"]}, \"v_uv7COBs24D8\": {\"duration\": 153.44, \"timestamps\": [[0, 27.62], [0, 46.8], [46.8, 153.44]], \"sentences\": [\"written instructions about how to makea hand lay down are in the screen.\", \" man is standing in a basket court dribbling the ball and doing shos to the basket.\", \" three basket players are doing shots and showing how to do a two steps technique.\"]}, \"v_BtKLAioC21g\": {\"duration\": 207.3, \"timestamps\": [[0, 8.29], [9.33, 142], [145.11, 207.3]], \"sentences\": [\"A man wearing ski goggles adjusts the camera.\", \" Several people are seen skiing down a steep slope.\", \" They continue skiing faster and faster as they go downhill.\"]}, \"v_Taw5ILRt9hI\": {\"duration\": 48.74, \"timestamps\": [[7.55, 23.88], [23.88, 44.84], [44.84, 48.74]], \"sentences\": [\"There's a woman with red colored hair wearing a black tank top and printed black tights skating on roller blades through the streets of a city.\", \" The streets don't have any cars but people are riding bikes or skateboarding.\", \" The woman swiftly skates through the crowded streets as she passes by several tourists walking leisurely.\"]}, \"v_8d7FyPzxzjg\": {\"duration\": 164.4, \"timestamps\": [[21.37, 42.74], [54.25, 68.23], [69.05, 117.54], [118.37, 157]], \"sentences\": [\"A man flies in the air with on a motorcycle.\", \" A man makes a motocross circuit using a heavy machine.\", \" People runs motocross on an bumpy road.\", \" people ride a motorcycle on ramps, and then flies and spin in the air.\"]}, \"v_8ZPV7ySIcbM\": {\"duration\": 204.45, \"timestamps\": [[0, 16.36], [16.36, 87.91], [87.91, 120.63], [120.63, 204.45]], \"sentences\": [\"men are walking to a bike shop and talks with the man inside.\", \"they are assembling different pieces of the bike.\", \"man says goodbye and leaves the shop and get home where man carry the bike and put it in a living room.\", \" man is wriing on white papers and is fixing the bike on the garage.\"]}, \"v_U0p4tW1LoPg\": {\"duration\": 60.07, \"timestamps\": [[0, 10.81], [10.21, 30.64], [33.34, 39.65], [39.35, 60.07]], \"sentences\": [\"A group of people wearing swim caps move around a pool and toss a ball around with a man on the sides waving a flag.\", \" They play a game of water polo and throw the ball around to each other.\", \" One throws the ball into the net and causes the people on the side to jump and cheer.\", \" A video of the event shows in slow motion followed by men on the sidelines watching.\"]}, \"v_tJLm2D4J3X0\": {\"duration\": 210.1, \"timestamps\": [[9.45, 177.53], [12.61, 177.53], [179.63, 186.98]], \"sentences\": [\"People are running down a track and jumping into a sand pit.\", \" People are standing on the side of the track watching them.\", \" The  man is posing in front of a sign.\"]}, \"v_f-uRpjoKGLQ\": {\"duration\": 212.84, \"timestamps\": [[0, 62.79], [59.59, 212.84]], \"sentences\": [\"Two people are seen riding along on skis while speaking to one another and leads into them riding down a snowy hill.\", \" The people continuously push themselves quickly down a hill moving past several people and ending by stopping at the end.\"]}, \"v_4pSWTD4vAz0\": {\"duration\": 169.14, \"timestamps\": [[0, 3.38], [4.23, 11.84], [17.76, 66.81], [65.12, 71.04], [74.42, 90.49], [94.72, 134.46], [137, 169.14]], \"sentences\": [\"A dog rides on a boat with his owners.\", \" A crab is seen crawling on the bottom of a lake.\", \" People water ski behind a boat on a calm lake.\", \" The person lets go of the tug rope and glides towards the shore of the lake.\", \" The group prepare a chair on a sled with a rope on shore.\", \" A man is pulled on a sled from the shore then on the lake.\", \" The group removes the sled from the water and lifts it to drain the water.\"]}, \"v_S-8ogZOLiWU\": {\"duration\": 61.16, \"timestamps\": [[0, 7.95], [7.95, 9.79], [10.09, 38.84], [33.94, 38.23], [43.73, 61.16]], \"sentences\": [\"We see a man putting on gear and then hockey player walking to the rink.\", \" We see the crowd clapping.\", \" We see a game of hockey being played.\", \" We see people clapping in the crowd.\", \" A man's hand is shaken and see the whole team on the ice.\"]}, \"v_YD7pb5-CZdI\": {\"duration\": 140.57, \"timestamps\": [[0, 13.35], [15.46, 40.06], [41.47, 140.57]], \"sentences\": [\"An athlete is standing on a field.\", \" He is holding a large steel ball.\", \" He spins and throws the ball, then walks around the track waiting for his next turn.\"]}, \"v_Vckc3ZOollk\": {\"duration\": 159.56, \"timestamps\": [[0, 3.19], [4.79, 148.39], [54.25, 119.67], [139.61, 141.21], [148.39, 159.56]], \"sentences\": [\"Several outside views of a casino are shown.\", \" Card players and the dealer at a table are shown engaging in a game inside the casino.\", \" The dealer deals cards to each player.\", \" The dealer reveals the dealer's hand.\", \" One man talks to the camera while another man stands nearby.\"]}, \"v_TmnVK-cYrzg\": {\"duration\": 147.61, \"timestamps\": [[16.24, 46.5], [46.5, 67.16], [67.16, 84.14], [84.14, 103.33], [103.33, 116.61], [116.61, 129.9], [129.9, 145.4]], \"sentences\": [\"There's a little boy sitting on a bed in the bedroom.\", \" There is a laundry basket and a lot of clothes on the bed.\", \" The mother of the boy who is filming the video shows a vacuum cleaner.\", \" Then she turns the vacuum cleaner on and begins vacuuming the bedroom floor.\", \" The boy watches his mom vacuum as he jumps on the bed.\", \" the boy then lays down on the bed as he sees his mother finish the job.\", \" Then the boy gets off the bed and jumps down to the ground to look under the bedside table.\"]}, \"v_U_ZW0tTvf0k\": {\"duration\": 85.84, \"timestamps\": [[3.86, 39.91], [37.34, 84.98]], \"sentences\": [\"A girl is seen laying on a table with a man piercing her belly button below her.\", \" The girl screams in pain and the man finishes her piercing while she looks to the camera.\"]}, \"v_95L-8JtlwRU\": {\"duration\": 126.39, \"timestamps\": [[0, 17.69], [25.28, 89.73], [104.27, 126.39]], \"sentences\": [\"A pair of white and red nike shoes are shown.\", \" A man is using inserts to prepare the shoes.\", \" He then uses a brush and cleaning solution to wash the shoes.\"]}, \"v_BpiExjaNwvI\": {\"duration\": 138.61, \"timestamps\": [[0, 13.86], [18.02, 49.9], [52.67, 103.95], [104.65, 126.82], [128.9, 138.61]], \"sentences\": [\"A close up zooms in on a screen.\", \" Several adults and kids are outdoors.\", \" The kids are riding dirt bikes in a competition.\", \" They are shown racing around a course and over hills and taking sharp turns.\", \" A boy on a bike stops at the camera, looking intently.\"]}, \"v_99Mk5a8Tvyk\": {\"duration\": 143.48, \"timestamps\": [[14.35, 33.72], [33.72, 60.98], [60.98, 85.37], [85.37, 104.74], [104.74, 111.91], [111.91, 128.41], [128.41, 135.58]], \"sentences\": [\"There's a man wearing a red hat and a black shirt training and playing with his dog in a dog park.\", \" There are several other people in that park with their dogs, sitting under canopies.\", \" The man is throwing a Frisbee for the dog to fetch.\", \" The dog is running around and fetching the Frisbee for its owner.\", \" The dog jumps up high to catch the Frisbee.\", \" The man also throws a ball to the dog for him to fetch.\", \" The man lifts the dog up and walks away with it.\"]}, \"v_kxwTPAhlhpw\": {\"duration\": 116.22, \"timestamps\": [[5.81, 99.95], [30.22, 33.12], [36.03, 79.03], [80.77, 84.84]], \"sentences\": [\"A man is standing behind a bar talking.\", \" He puts ice in a glass.\", \" He pours shots into the glass.\", \" He stirs the drink with a straw.\"]}, \"v_n9Fqjdwh-L8\": {\"duration\": 88.52, \"timestamps\": [[0, 11.06], [11.06, 88.52], [34.08, 35.85]], \"sentences\": [\"A man is talking to the camera.\", \" A woman in an orange shirt is doing various karate moves.\", \" She does a back flip on the mat.\"]}, \"v_E0U3v4WLuEA\": {\"duration\": 119.97999999999999, \"timestamps\": [[0, 119.98], [18, 43.79], [43.79, 52.79], [52.19, 58.79], [58.79, 72.59], [72.59, 79.79]], \"sentences\": [\"A man demonstrates how to install some grips onto bicycle handles.\", \"  First he installs some rings onto the grips themselves.\", \"  Next he screws on some screws to have them ready.\", \"  He then slides on the grips onto the handles of the bike.\", \"  He completes the tightening of the grips with an Alan wrench.\", \"  Last he inserts plugs into the end of the grips and the handle bars.\"]}, \"v_1SdH6HFnOZA\": {\"duration\": 123.3, \"timestamps\": [[0, 56.1], [56.1, 75.83]], \"sentences\": [\"men are playing beach football in a empty court.\", \" man kick another player on the head and he holds his head.\"]}, \"v_jPLJAYnjsBw\": {\"duration\": 202.07999999999998, \"timestamps\": [[0, 80.83], [0, 9.09], [0, 56.58], [26.27, 68.71], [43.45, 60.63], [64.67, 80.83], [64.67, 92.96], [108.11, 143.48], [146.51, 157.63], [159.65, 160.66], [163.69, 173.79], [175.81, 196.02], [200.06, 202.08]], \"sentences\": [\"Two woman are riding in a car.\", \" The passenger is talking to the camera.\", \" They are demonstrating dance moves.\", \" The driver is talking to the camera.\", \" The passenger is now talking to the camera.\", \" The driver is looking at the camera and smiling while driving.\", \" A girl is looking in a mirror holding a tattoo pattern on her shoulder.\", \" Another girl is lying on a bed while another girl gives her a tattoo.\", \" The other girl is sitting on a stool while a man gives her a tattoo her shoulder.\", \" A hand reaches out from behind the camera.\", \" A girl is talking to the camera with her hand on her shoulder.\", \" Another girl is talking to the camera and making hand gestures.\", \" Both girls are talking to the camera.\"]}, \"v_lp_Rwbp8S1k\": {\"duration\": 170.3, \"timestamps\": [[0, 170.3], [70.67, 85.15], [70.67, 170.3]], \"sentences\": [\"A man in a black coat is shoveling snow with a shovel.\", \" He picks up a large shovel full of snow and tosses it next to him.\", \" He continues shoveling the driveway.\"]}, \"v_1tRTSOnylOs\": {\"duration\": 68.85, \"timestamps\": [[0, 5.16], [5.51, 15.84], [16.18, 55.42], [58.18, 68.85]], \"sentences\": [\"A man is in an arena fighting a bull.\", \" He swings the cape and runs near other men, teasing the bull into chasing him.\", \" The bull slams into the side of a horse being ridden by a man before running back towards the man with the cape.\", \" The man on the horse rides away to the side.\"]}, \"v_iL__89eDRzg\": {\"duration\": 89.4, \"timestamps\": [[0, 8.94], [9.39, 19.67], [20.11, 86.27], [86.27, 89.4]], \"sentences\": [\"An intro comes onto the screen introducing the video clip.\", \" Two people are shown frolicking around in the lake.\", \" After that, they take off in motion in the water connected by a cord to a speed boat.\", \" The video ends when they both fall int the water.\"]}, \"v_THtDZ6g9csA\": {\"duration\": 54.31, \"timestamps\": [[0, 21.18], [22.54, 52.14], [52.14, 54.31]], \"sentences\": [\"A lady paints her fingernails a plum color.\", \" She then puts streaks and dots of black and silver on the nails to create a design.\", \" She finishes and shows her painted nails.\"]}, \"v_lR4vyq1WbyU\": {\"duration\": 75.14, \"timestamps\": [[1.13, 20.66], [15.78, 51.85], [37.95, 73.26]], \"sentences\": [\"A man is seen speaking to others off in the distance and begins pushing a man around a room.\", \" He continues pushing the man while many watch on the side.\", \" The man stands up and looks surprised as he's continuously pushed down.\"]}, \"v_RZpbFG3j-Bo\": {\"duration\": 160.59, \"timestamps\": [[2.41, 3.21], [4.82, 14.45], [15.26, 28.91], [32.12, 43.36], [44.16, 65.84], [69.86, 77.08], [80.3, 85.92], [89.13, 93.14], [93.95, 102.78], [103.58, 111.61], [112.41, 145.33], [151.76, 156.58], [146.14, 160.59]], \"sentences\": [\"The credits of the video are shown.\", \" A lady stands outside and talks.\", \" The lady is let in an office where she undergoes an eye exam.\", \" A eye contact is examined using a tool and a human hand.\", \" Several items associated with contacts lenses wear are displayed.\", \" A man washes his hand.\", \" A lady picks up a contact lens.\", \" A man  writes the letter l on a paper.\", \" A hand bends a contact lens.\", \" A man puts a contact lens in.\", \" A lady puts each contact lens in.\", \" The lady shakes the man's hand.\", \" The credits of clip are shown.\"]}, \"v_Fpivz0Yie_Q\": {\"duration\": 201.29, \"timestamps\": [[0, 4.03], [4.03, 53.34], [53.34, 176.13], [176.13, 201.29]], \"sentences\": [\"A van towing a car drives by view of blue road signs are shown and in white letters they read \\\"WALTON\\\", \\\"Ontario's West Coast\\\" and \\\"MOTORCROSS TOWN\\\".\", \"A lot of people are now shown walking or riding bikes at a large gathering as other people are hanging out under tents.\", \"A group of men are at a starting line of a large motor cross track and they begin to go around and around while people watch on.\", \"When they are done going around the track various clips of people doing different things are shown again.\"]}, \"v_iaqFvTpoceI\": {\"duration\": 194.89, \"timestamps\": [[0, 194.89], [7.8, 194.89], [105.24, 120.83], [188.06, 194.89]], \"sentences\": [\"Cheerleaders are standing on a blue mat.\", \" They start doing a routine on the mat.\", \" They hold up signs in the air.\", \" They finish their routine and wave at the audience.\"]}, \"v_rYumFn7S1YA\": {\"duration\": 70.87, \"timestamps\": [[4.61, 11.69], [26.58, 46.77], [36.5, 70.87]], \"sentences\": [\"A woman is holding an athlete's ankle while sh is on the beam.\", \" The woman is making the athlete raiser her ankle a and walk to the beam, she guide the athlete as she walks.\", \" The athlete walked backwards with her ankle's up, then the woman guided her as she turns around.\"]}, \"v_qK2iRSxxRQU\": {\"duration\": 236.57, \"timestamps\": [[0, 11.83], [14.19, 100.54], [104.09, 180.97], [185.7, 236.56]], \"sentences\": [\"A bellydancer in green begins her routine, smiling for the audience.\", \" She is joined by two more dancers who are in red and each does their own moves before coming together.\", \" They again break for solo performances, each dancer getting a moment to show off.\", \" They return to dancing together and the performance ends.\"]}, \"v_RkBHHWFh2rk\": {\"duration\": 158.8, \"timestamps\": [[0, 73.05], [64.31, 141.33]], \"sentences\": [\"The video leads into several shots of people riding skateboards as well as riding on a tire and walking next to each other.\", \" They're seen looking and laughing to the camera while more shots of people riding down on skateboards are shown.\"]}, \"v_u1upxlAgsqM\": {\"duration\": 47.07, \"timestamps\": [[0, 45.18], [8, 45.42]], \"sentences\": [\"Three people do a basketball drill of driving to the hoop.\", \"  They take turns playing different positions and doing a layup.\"]}, \"v_arTumJHoLB0\": {\"duration\": 12.21, \"timestamps\": [[0, 2.93], [2.69, 9.77], [9.83, 11.73]], \"sentences\": [\"A young man is seen looking off into the distance with lotion on his face.\", \" He continues rubbing the lotion in while looking away from the camera.\", \" He finishes putting in the sunscreen and looking away from the camera.\"]}, \"v_bMDyOXygNPM\": {\"duration\": 95.39, \"timestamps\": [[0, 25.28], [13.83, 71.06], [61.05, 93.48]], \"sentences\": [\"Several men are seen standing around an indoor court kicking a ball around.\", \" People watch the game on the sidelines as the players continue to run up and down the field.\", \" Different games are shown in between and the group continues to play.\"]}, \"v_GfSGZZSGH6g\": {\"duration\": 7.76, \"timestamps\": [[0, 7.76], [0.23, 7.56], [0.89, 4.42], [3.88, 6.63]], \"sentences\": [\"There are two roofers standing top of a building roof removing working on old roof removal.\", \" They are using roofing shovel to remove the shingles and tarp.\", \" One of the roofers is peeling off the tarp from the rooftop as he digs in the shovel underneath the tarp.\", \" The other roofer is helping him roll up the tarp as he peels it off.\"]}, \"v_1p_HYu0EZAk\": {\"duration\": 45.54, \"timestamps\": [[0, 5.24], [5.46, 41.21], [4.1, 43.94]], \"sentences\": [\"A camera pans over a sink full of dishes followed by a woman jogging over.\", \" She dances with the dishes and looks into the camera while she does them.\", \" A timer counts down how many dishes she's washed and she smiles to the camera.\"]}, \"v__N9LhaKnZv4\": {\"duration\": 96.53, \"timestamps\": [[2.9, 25.58], [25.58, 53.09], [53.09, 96.53]], \"sentences\": [\"A man talks in the woods holding a can and key chain.\", \" Then, the man takes the key chain and points the lower part of the can.\", \" After, the man pocks the lower part of the can and intermediately opens the can and drinks from the hole of the can.\"]}, \"v_a2vaM_aRHv4\": {\"duration\": 177.26, \"timestamps\": [[14.18, 17.73], [18.61, 20.39], [20.39, 52.29], [53.18, 99.27], [100.15, 116.99], [120.54, 130.29], [123.2, 132.06], [139.15, 144.47], [150.67, 160.42], [165.74, 170.17]], \"sentences\": [\"A list of ingredients is shown written in a list.\", \" Glass bowls are set on a counter with various ingredients for a dish.\", \" A person measures and cuts parchment paper using a cooking tin as a guide.\", \" The person measures ingredients in a glass bowl then adds them to an electric mixer to blend.\", \" The person brushes on oil to the parchment paper then sets it into a cooking tin.\", \" The tins are added to an oven to cook.\", \" The tins are shown fully cooked and then flipped over to empty cake onto table.\", \" The parchment paper is peeled off the cake.\", \" The cake is sliced into loaves with a serrated knife.\", \" The cake is seen on plates for serving.\"]}, \"v_6FPoGGaox4g\": {\"duration\": 28.04, \"timestamps\": [[0, 8.55], [10.23, 15.7], [17.38, 24.11], [24.68, 28.04]], \"sentences\": [\"A woman is helping a little boy slide down a slide.\", \" A woman is at the top of a slide helping a little boy slide down into the arms of another person in a red vest.\", \" A woman is helping the boy down a slide and the same person in the red vest catches them.\", \" The person in the red vest then kissed the child.\"]}, \"v_KaicDn9WDUo\": {\"duration\": 204.75, \"timestamps\": [[0, 183.25], [182.23, 183.25], [182.23, 204.75]], \"sentences\": [\"Ballerinas are dancing on a stage.\", \" They all come onto the stage and pose at the end.\", \" They bow and walk off the stage.\"]}, \"v_srXhWAGzd-s\": {\"duration\": 218.27, \"timestamps\": [[5.46, 25.1], [89.49, 105.86], [106.95, 175.71], [137.51, 156.06], [127.69, 210.63], [181.16, 210.63]], \"sentences\": [\"A person is shown cleaning off the outside of a car.\", \" The car is then driven inside of a shop.\", \" Inside a man starts detailing the car once again and cleaning off the outside.\", \" He spray paints parts of the car.\", \" He sprays cleaner on the inside and outside of the car.\", \" He wipes down all surfaces from inside and outside the car.\"]}, \"v_wott7JRSkOk\": {\"duration\": 5.41, \"timestamps\": [[0, 3.49], [3.52, 5.41], [0, 5.41]], \"sentences\": [\"Two men plays soccer table moving the players on the rods.\", \" A man wearing yellow shirt stroke the rod strong to hit the white ball.\", \" A person stands on front the soccer table.\"]}, \"v_6ZabZdqdLyA\": {\"duration\": 71.82, \"timestamps\": [[0, 8.62], [11.13, 17.24], [17.6, 33.04], [33.4, 47.04], [47.4, 62.48]], \"sentences\": [\"Two small children are playing on a swingset on a snow covered yard.\", \" One child runs over to a swingset, but decides to change over to a green swing.\", \" An adult helps the child onto the swing.\", \" The other child also wants to join the first child on the same swing, and holds the swing steady while the child climbs on.\", \" The child is able to climb on, and the two children enjoy swinging together as the adult pushes the swing forward.\"]}, \"v_RTS4mOH3cFY\": {\"duration\": 136.37, \"timestamps\": [[0, 21.14], [21.14, 41.59], [41.59, 90.69], [90.69, 136.37]], \"sentences\": [\"A residential security video is playing and shows an empty yard and road.\", \" A man walking two dogs show up walking on the side closer to the camera, and he quickly notices another dog from the other side of the road suddenly coming his way so he tries to tighten up his dogs leash to gain control of them, but the other dog begins running towards them and starts attacking the man's dogs.\", \" The man kicks the attack dog away and tries to regain control of his two dogs while the man and the other dog is on the other side of the road.\", \" The man picks up one of his dogs and they resume walking.\"]}, \"v_n6A8YtBAJX0\": {\"duration\": 179.82, \"timestamps\": [[0, 179.82], [67.43, 79.12], [115.98, 143.85], [143.85, 148.35], [149.25, 179.82], [163.63, 179.82]], \"sentences\": [\"We see a man and a boy playing by sliding a plastic thing around  table.\", \" The camera shifts and we see more of the room.\", \" The camera angle changes and we see them playing the game from behind.\", \" A persons hand on the left enters the screen.\", \" The camera angle changes again and we are in front of the players.\", \" We see a boy in a sweater moving a chair to sit and join the game.\"]}, \"v_V-Yz865cbn4\": {\"duration\": 27.3, \"timestamps\": [[0.27, 13.65], [12.83, 26.21]], \"sentences\": [\"A young child is seen smiling to the camera and then begins dancing around.\", \" The boy continues dancing while the camera captures him moving up and down.\"]}, \"v_Hlc6FXX5kGs\": {\"duration\": 109.37, \"timestamps\": [[0, 31.17], [35.54, 109.37]], \"sentences\": [\"A baby girl is holding a compact, wiping the makeup pad against her cheek.\", \" She sits on the floor, continuing to play with the makeup, opening and closing the case, and wiping it onto her face.\"]}, \"v_mdwbRGlPn3A\": {\"duration\": 29.21, \"timestamps\": [[0, 29.21], [5.11, 16.5], [11.54, 29.21]], \"sentences\": [\"Three men are walking with the stilts.\", \" One of the men with stilts splits at the center.\", \" One of the men jumped so high several time with his stilts.\"]}, \"v_xwSeXFkTNlE\": {\"duration\": 162.15, \"timestamps\": [[0, 13.78], [12.97, 42.16], [42.16, 91.61], [91.61, 154.85]], \"sentences\": [\"A gymnast is patiently waiting to start his performance.\", \" He jumps on to the board and starts spinning really fast before he jumps off and walks around.\", \" He take a breath and the audience claps for him before he jumps back on it and starts spinning again.\", \" When he is done he walks down and shakes hands with all the team mates, before he gets on one last time.\"]}, \"v_bbDWLOPnWOY\": {\"duration\": 50.95, \"timestamps\": [[0, 37.19], [7.9, 18.85], [15.54, 24.45], [24.71, 28.53], [38.21, 50.95]], \"sentences\": [\"A man in a blue shirt moves to take his shot.\", \" He then talks to the other men.\", \" The man in black moves out of the shot.\", \"  The man in black and blue throw their hands in the air.\", \" All of the men break out and react wildly to the last shot.\"]}, \"v_GnbyHdd-BjQ\": {\"duration\": 213.23, \"timestamps\": [[0, 41.58], [42.65, 45.84], [51.17, 55.44], [59.7, 79.96], [115.14, 118.34], [135.4, 139.66], [179.11, 203.63]], \"sentences\": [\"People are snowboarding down a hill of snow.\", \" They are sitting down drinking coffee.\", \" They are standing next to a body of water.\", \" They are snowboarding down a hill again.\", \" A girl is laying down sleeping.\", \" They are eating dinner around a table.\", \" They leave their snowboards and walk into a cabin.\"]}, \"v_mcDVNexy6Ps\": {\"duration\": 41.73, \"timestamps\": [[0, 6.26], [7.93, 28.17], [28.79, 41.73]], \"sentences\": [\"A woman is standing in front of a christmas tree, applying a wreath.\", \" She then hangs lights and ornaments.\", \" At the end, she adjusts the ornaments and adds a star to the top of the tree.\"]}, \"v_FJnCSFPoWVU\": {\"duration\": 213.46, \"timestamps\": [[0, 153.69], [152.63, 213.46]], \"sentences\": [\"A man is sitting on the rock, then people are climbing the big rocks without harness.\", \" People are walking in a rope attached to two trees.\"]}, \"v_0T14tLwBafQ\": {\"duration\": 38.47, \"timestamps\": [[0, 38.47], [5.96, 7.5], [6.35, 9.04], [16.35, 21.93], [31.35, 32.5], [34.62, 38.47]], \"sentences\": [\"We see people playing volleyball in sand with a dog.\", \" We see a man laying in the sand.\", \" The dog runs for the ball.\", \" A person throws the ball back and the dog returns.\", \" The dog tries to get the ball.\", \" A man kicks sand at and shoos the dog.\"]}, \"v_fxqzU9KGOsQ\": {\"duration\": 47.95, \"timestamps\": [[0, 23.02], [23.26, 47.95]], \"sentences\": [\"Several young kids are in a gym playing dodge wall with medium sized red balls.\", \"As they throw the balls,a little girl tries to join in on the action and begins following them and running from one side of the court to the other to chase the balls.\"]}, \"v_0McanL-Gob8\": {\"duration\": 228.72, \"timestamps\": [[0, 38.88], [43.46, 156.67], [158.96, 195.55], [197.84, 228.72]], \"sentences\": [\"A woman is lying down, showing off a tattoo on her side.\", \" A man in a surgical mask is preparing her as he continues his work on the tattoo.\", \" He cleans and wipes down the tattoo.\", \" She is finished, showing off the final product.\"]}, \"v_Oyi0X-rwUg8\": {\"duration\": 4.83, \"timestamps\": [[0, 0.75], [0.68, 3.33], [3.5, 4.83]], \"sentences\": [\"A man is holding another man on his shoulders in a wrestling ring as the crowd cheers and watches.\", \" the man throws the man on his shoulder to the ground.\", \" Both men lay on the ground int he ring.\"]}, \"v_snUWwTH8eQg\": {\"duration\": 77.42, \"timestamps\": [[0, 72.38], [72.38, 77.42]], \"sentences\": [\"teams are playing fusal in a small court running side to side of the court.\", \" a lot of people are celebrating the vicory and hugging.\"]}, \"v_ObOkhXGu7oY\": {\"duration\": 224.7, \"timestamps\": [[0, 65.16], [61.79, 170.77], [135.94, 221.33]], \"sentences\": [\"A person is seen walking into frame with a bar in her hands.\", \" She puts the bar down and begins exercising in a humerus way while speaking to the audience.\", \" The audience laughs at her movements while she continues to move and dance around the stage.\"]}, \"v_QIkDYInr17A\": {\"duration\": 145.57, \"timestamps\": [[3.64, 57.5], [33.48, 112.81], [106.99, 141.93]], \"sentences\": [\"Two young children are seen standing behind a table with one peeling lemons and a boy watching on the side.\", \" Another child is seen squeezing lemons and zooms in on the kids working.\", \" The kids continue to squeeze the lemon while looking and waving to the camera and speaking on the side.\"]}, \"v_adUapXmi-xA\": {\"duration\": 121.12, \"timestamps\": [[2.42, 39.97], [40.57, 82.36], [84.78, 115.06]], \"sentences\": [\"A person is seen sitting behind a table with one holding a piece of paper around him.\", \" The man then attempts to solve a rubix cube while a timer catches his score.\", \" The man writes down his score and the man attempts to solve the cube several more times while the boy helps.\"]}, \"v_xBtydVn3MVI\": {\"duration\": 174.13, \"timestamps\": [[4.35, 154.97], [16.54, 61.82], [61.82, 167.16]], \"sentences\": [\"A man films himself standing in a bathroom while holding a razor close to his face.\", \" He begins gently shaving the sides of his face and moves down towards his beard.\", \" He continues shaving the beard from all angles and eventually leaves nothing but a five 0 lock shadow.\"]}, \"v_-ypKYhjrlXw\": {\"duration\": 212.81, \"timestamps\": [[0, 37.24], [37.24, 74.48], [51.07, 74.48], [74.48, 94.7], [94.7, 110.66], [110.66, 151.1], [151.1, 180.89], [180.89, 212.81]], \"sentences\": [\"A medical worker is sitting at a table with a woman and talking to the camera.\", \" He moves a can and touches two other cans.\", \"  He picks up a can and sprays it on the woman's arm and rubs it.\", \"  He picks up another can and talks about it then sprays her arm again and rubs the cream in.\", \"  He picks up a third container and puts it on her arm and rubs it in as well.\", \"  He picks up a fourth tube and puts the cream on her hand and rubs it in.\", \" He does this again with a fifth cream.\", \" He then takes a compact of brown powder, presents it to the camera and puts it back down.\"]}, \"v_f-4PjtdFbP4\": {\"duration\": 12.7, \"timestamps\": [[0, 2.98], [2.92, 7.11], [7.11, 12.7]], \"sentences\": [\"A little girl is blowing leaves in fall outside of a house.\", \" She pauses for a moment to get a better grasp of the leaf blower.\", \" She walks by a little boy and continues to blow the leaves.\"]}, \"v_JN1mex2vCjI\": {\"duration\": 46.46, \"timestamps\": [[0, 13.01], [13.24, 17.66], [17.89, 46.46]], \"sentences\": [\"A man with a pony tail is seen walking along a rope with another man watching him and smiling in the background.\", \" The man turns around, loses his balance, and falls off the rope.\", \" The man watches attempts to walk and falls off as well in the end.\"]}, \"v_0IFJNGqjsUQ\": {\"duration\": 118.1, \"timestamps\": [[0, 10.63], [11.22, 18.9], [18.9, 87.98], [89.16, 95.07], [103.93, 109.24]], \"sentences\": [\"A man talks to the camera while holding a leash type of object with a bag in his hand.\", \" The scene transitions to the leash being use on a dog.\", \" The scene transitions to a closeup of the man disassembling and reassembling the leash.\", \" The scene transitions to the leash being used on a dog again.\", \" The man is shown in a closeup interacting with and petting the dog.\"]}, \"v_b0LY869JBrE\": {\"duration\": 169.46, \"timestamps\": [[0, 9.32], [10.17, 15.25], [22.03, 25.42], [27.11, 29.66], [30.5, 37.28], [38.98, 40.67], [41.52, 49.99], [49.99, 54.23], [56.77, 70.33], [73.72, 76.26], [84.73, 132.18], [132.18, 148.28], [148.28, 149.97], [155.06, 163.53]], \"sentences\": [\"A woman is showing her fingernails.\", \" A bottle of acetone is shown.\", \" The acetone is being poured into a small glass.\", \" A woman is now holding a napkin.\", \" A makeup brush is being held.\", \" A bottle of nail polish is shown.\", \" A person starts painting their fingernails.\", \" Another bottle of nail polish is shown.\", \" The person continues painting their nails.\", \" They use the makeup brush and dip it in the acetone.\", \" They rub the brush on their fingernail.\", \" They use a wooden stick to clean the side of their nails.\", \" A clear bottle of nail polish is shown.\", \" She then paints that over her nails.\"]}, \"v_6HyNydVIji4\": {\"duration\": 224.32999999999998, \"timestamps\": [[0, 1.12], [1.12, 4.49], [4.49, 223.21], [159.27, 164.88], [223.21, 224.33]], \"sentences\": [\"We see a lady holding a flute.\", \" We see the song title.\", \" We see a lady performing a song on a flute.\", \" The girl pauses and plays again.\", \" The girl finishes playing and smiles at the camera.\"]}, \"v_QyTiHhG9qf0\": {\"duration\": 144.75, \"timestamps\": [[2.9, 96.26], [25.33, 54.28], [92.64, 139.69], [139.69, 144.75]], \"sentences\": [\"Teens drive electric bumper cars in an oval circuit while people watch behind the fence.\", \" Two girls in a yellow car get stuck,but then they continue driving.\", \" All the cars are stuck on the track, then one car gets out and the others get free to continue driving.\", \" Then, all cars stop and the teen get out the cars.\"]}, \"v_A_4yI6vh03I\": {\"duration\": 140.23, \"timestamps\": [[0, 6.31], [7.01, 129.01], [61, 67.31], [68.01, 78.53], [78.53, 79.93], [110.78, 126.2], [130.41, 140.23]], \"sentences\": [\"The credits of the clip are shown.\", \" Instructions of how to pole vault is presented.\", \" A person holds a elongated, hollow stick.\", \" A guy runs with a elongated stick and uses it to elevate himself over a heighten hurdle.\", \"The top of the hurdle falls apart.\", \"  A man uses an elongated stick to elevate himself over a heighten hurdle.\", \" The credits of the video are shown.\"]}, \"v_hPIHCG5n7RI\": {\"duration\": 109.25, \"timestamps\": [[0, 49.71], [42.06, 109.25]], \"sentences\": [\"A small group of people are seen playing a game of lacrosse on a field with a man walking towards them.\", \" The man yells to the players as they run up and down the field and continues to watch them as they play.\"]}, \"v_uh-H5Gmt4PI\": {\"duration\": 105.49000000000001, \"timestamps\": [[0, 17.41], [17.41, 63.29], [62.77, 105.49]], \"sentences\": [\"A bald man is standing in an industrial building with a lot of glass on the ceiling.\", \"The male's friend then grabs a bar and begins lifting weights and jerking.\", \"All of the actions continue but with different people as various people step up to grab the bar.\"]}, \"v_Bg-0ibLZrgg\": {\"duration\": 212.12, \"timestamps\": [[0, 31.82], [31.82, 78.48], [81.66, 202.57], [171.81, 172.87]], \"sentences\": [\"People surf in the ocean and a man pass under a huge wave.\", \" A man surfs in a small wave along the beach.\", \" Then, the man get out the water, after he takes surfboard and return to surf in a high wave.\", \" People swim in the beach.\"]}, \"v_nlkmPF8TBdQ\": {\"duration\": 174.57, \"timestamps\": [[0, 46.26], [46.26, 71.57], [72.45, 106.49], [106.49, 110.85], [110.85, 171.08]], \"sentences\": [\"People gather in a restaurant, then a cooker shows pasta and ingredients while talking.\", \" The cooker cuts and fries squid in a pot, then he adds salt and vinegar.\", \" Then, the cooker cut tomatoes and add to the squid, also adds garlic, pepper and green vegetables.\", \" After, the cooker adds water and covers the pot with aluminum paper.\", \" Next, the cooker add the pasta to the squid and mix, then he and serves in a dish while talking.\"]}}"
  },
  {
    "path": "NLQ/2D-TAN/data/ActivityNet/val.json",
    "content": "{\"v_uqiMw7tQ1Cc\": {\"duration\": 55.15, \"timestamps\": [[0.28, 55.15], [13.79, 54.32]], \"sentences\": [\"A weight lifting tutorial is given.\", \"  The coach helps the guy in red with the proper body placement and lifting technique.\"]}, \"v_bXdq2zI1Ms0\": {\"duration\": 73.1, \"timestamps\": [[0, 10.23], [10.6, 39.84], [38.01, 73.1]], \"sentences\": [\"A man is seen speaking to the camera and pans out into more men standing behind him.\", \" The first man then begins performing martial arts moves while speaking to he camera.\", \" He continues moving around and looking to the camera.\"]}, \"v_FsS_NCZEfaI\": {\"duration\": 212.74, \"timestamps\": [[0, 91.48], [73.4, 174.45], [168.07, 212.74]], \"sentences\": [\"Several shots of boats are shown riding around as well as people riding on the boats and speaking to one another.\", \" Several shots are then shown of people sitting on the water as well as life under the water.\", \" The camera pans around old cars under water as well as people in the area.\"]}, \"v_K6Tm5xHkJ5c\": {\"duration\": 114.64, \"timestamps\": [[1.15, 64.77], [38.4, 105.47]], \"sentences\": [\"A woman is seen speaking to the camera while holding an accordion and and moving her hands around.\", \" She demonstrates how to play the instrument while still speaking to the camera and moving all around.\"]}, \"v_4Lu8ECLHvK4\": {\"duration\": 124.23, \"timestamps\": [[0, 124.23], [3.11, 8.07], [6.83, 14.91], [13.66, 32.92], [31.06, 39.13], [36.65, 51.55], [48.45, 104.35], [98.14, 124.23]], \"sentences\": [\"There are some people including small children near a soccer field.\", \" A small boy is playing by himself a he stands on a large square tile.\", \" A man dressed in a blue shirt come running towards him and points out his finger, indicating to the boy to go there.\", \" The boy gets off the tile and walks to another tile.\", \" Then another little boy wearing a gray shirt comes to that tile and begins playing.\", \" The other little boy moves away to another tile.\", \" There are some man playing with small children on the lawn.\", \" The little boy comes running towards some children and his father follows him.\"]}, \"v_HWV_ccmZVPA\": {\"duration\": 50.32, \"timestamps\": [[0, 7.04], [8.3, 24.15], [26.17, 26.92], [35.73, 50.32]], \"sentences\": [\"People are dancing having fun at a party.\", \" A race starts and people are running.\", \" Cheerleaders are standing on the side of the road.\", \" People are dancing on the grass.\"]}, \"v_GGSY1Qvo990\": {\"duration\": 18.16, \"timestamps\": [[0, 2.27], [2.91, 6.54], [8.08, 18.16]], \"sentences\": [\"A female weight lifter bends at the knees.\", \" She lifts a barbell to her chest.\", \" She then lifts it over her head before dropping it heavily to the ground.\"]}, \"v_frePM0YGtQE\": {\"duration\": 175.17000000000002, \"timestamps\": [[8.76, 12.26], [14.01, 19.27], [26.28, 35.91], [37.66, 94.59], [99.85, 136.63], [134.01, 162.91], [162.91, 168.17], [169.92, 175.17]], \"sentences\": [\"A guy puts a black cat on the kitchen floor.\", \" The guy reaches for a scissor and sits next to the cat.\", \" The guy carries the cat.\", \" The guy uses the scissor to cut the cat's claws.\", \" The guy puts the clippings in his palm.\", \" The guy pets the cat  and puts the cat on the floor.\", \" The guy gets up and trashes the clippings.\", \" The owner and pet exit the kitchen.\"]}, \"v_JTrwGfPJNzU\": {\"duration\": 11.31, \"timestamps\": [[0, 2.88], [3.28, 11.31]], \"sentences\": [\"A large kid playground slide is shown.\", \" Several people slide down, a woman and her little girl.\"]}, \"v_gOniW-yEZ0k\": {\"duration\": 13.58, \"timestamps\": [[0, 2.51], [0, 6.93], [6.11, 12.63]], \"sentences\": [\"A woman is seen kneeling down next to a man.\", \" Another person is seen kneeling nearby.\", \" The man pans closely around the man.\"]}, \"v_cHYZPYLwvks\": {\"duration\": 167.46, \"timestamps\": [[0.84, 64.47], [44.38, 140.67], [132.3, 163.28]], \"sentences\": [\"Three scuba divers are seen moving along the water with one giving a thumbs up to the camera and the camera panning all around the ocean.\", \" Several shots are shown of the divers taking pictures under the water as well as taking off their mask and waving to the camera.\", \" In the end the divers come to the surface.\"]}, \"v_HtkuvF7VbSQ\": {\"duration\": 160.15, \"timestamps\": [[16.82, 84.88], [84.08, 108.9], [91.28, 102.5], [140.93, 160.15]], \"sentences\": [\"A man is sitting in a chair getting a tattoo.\", \" He stands up and yells at the man tattooing.\", \" A woman in a pink shirt is sitting in front of him.\", \" He walks out the door of the shop and walks down the street.\"]}, \"v_Po8gmt7hVTY\": {\"duration\": 92.13, \"timestamps\": [[0, 12.9], [13.36, 46.98], [49.75, 92.13]], \"sentences\": [\"A chef is talking inside a kitchen as he fills a pan with frying oil and water.\", \" He boils pasta noodles in a pot.\", \" He then tastes the noodles when they are done.\"]}, \"v_yACg55C3IlM\": {\"duration\": 176.37, \"timestamps\": [[0, 28.22], [27.34, 64.37], [64.37, 126.99], [126.99, 176.37]], \"sentences\": [\"Two girls are outside in bathing suits cleaning the front of a green vehicle.\", \"One of the girl then walks away and goes to get something from a man cleaning the motorcycle.\", \"They continue to wash the vehicle and then the girls walks over and grabs the water hose.\", \"She comes back to rinse the vehicle and then holds it up to the girl's head and washes her hair.\"]}, \"v_E9R1H8xRIW8\": {\"duration\": 24.96, \"timestamps\": [[0, 22.84], [5.99, 24.96]], \"sentences\": [\"A man is seen pushing a lawn mower across a lawn to cut the grass.\", \" The man continues moving the machine all along the yard while the camera captures his movements.\"]}, \"v_V1SEaTS9hos\": {\"duration\": 11.15, \"timestamps\": [[0.11, 2.01], [2.01, 7.69], [7.58, 10.87]], \"sentences\": [\"A man is seen sitting in front of a bucket holding clothes in his hands.\", \" Another person is seen sitting next to him sticking his hand in a bucket.\", \" The men continue washing clothes next to one another while dipping them into a bucket.\"]}, \"v_5qsXmDi8d74\": {\"duration\": 186.6, \"timestamps\": [[0, 34.52], [30.79, 73.71], [68.11, 182.86]], \"sentences\": [\"A wrestler is seen walking out in front of an audience and sitting on the floor.\", \" Two men are then seen walking out onto a pit with one throwing dirt and kneeling down.\", \" The men begin fighting with one pushing another out and leads into several more clips of the men wrestling.\"]}, \"v_ng14GLT_hHQ\": {\"duration\": 153.35, \"timestamps\": [[0, 19.93], [25.3, 76.67], [83.57, 153.35]], \"sentences\": [\"A man is kneeling on the kitchen floor.\", \" He is using a bucket of paints and a canvas.\", \" He uses the paints to create an image on the canvas.\"]}, \"v_wPYr19iFxhw\": {\"duration\": 56.61, \"timestamps\": [[0, 19.53], [15.57, 36.8], [36.8, 45.01], [45.01, 56.61]], \"sentences\": [\"The camera is showing an arc welder in a shop.\", \" A man approaches the arc welder and begins using it to weld some metal bars.\", \" The man shows the metal bar to the camera.\", \" The man sets the bar down and begins welding it again.\"]}, \"v_nGABbRHJ2Ug\": {\"duration\": 113.34, \"timestamps\": [[0, 30.6], [30.6, 69.7], [71.97, 113.34]], \"sentences\": [\"A girl is seen standing near a piece of exercise equipment talking a man.\", \" She continues speaking to him and has him watch her while she steps on the machine.\", \" She rides the bike moving back and fourth speaking to the man and switches places with the man.\"]}, \"v_D0pVkTEYQg8\": {\"duration\": 21.41, \"timestamps\": [[4.39, 21.41], [4.17, 14.24], [14.34, 15.95]], \"sentences\": [\"A guy exercises on a stationary bike.\", \" The guy has his hand on the handles.\", \" The guy lets go of the handles and puts his hands to his side.\"]}, \"v_y9kk0ptXevk\": {\"duration\": 94.85, \"timestamps\": [[0, 4.74], [4.74, 8.06], [8.06, 77.31], [76.83, 85.84], [85.37, 94.85]], \"sentences\": [\"We see an opening title screen.\", \" A pair of red boots sit on a table.\", \" A lady talks and pours soap in a glass then wipes the boots with the soap.\", \" The lady talks and shows a bottle of olive oil.\", \" We see the closing title screen.\"]}, \"v_Fdzw3niNDYY\": {\"duration\": 122.07, \"timestamps\": [[10.99, 15.87], [21.97, 24.41], [21.97, 122.07]], \"sentences\": [\"A man is looking at a red vase.\", \" A woman takes her shirt off.\", \" The two begin fighting with swords.\"]}, \"v_jikOPvJPU-c\": {\"duration\": 210.19, \"timestamps\": [[4.2, 40.99], [22.07, 124.01], [78.82, 188.12], [124.01, 204.93]], \"sentences\": [\"A lady in short hair, wearing an orange top is standing by the kitchen counter, on the counter there are black pan, mayo, foil, plate, bread, knife.\", \" She spread the mayo on the bread, put cheese, on the black cutting board, beside the knife is a tomato, she put the tomato on the bread, put the cheese in the plastic bag, shows the sandwich, placed the other side of the bread on top of the sandwich.\", \" She moved to the stove, the black pan is on the stove, she put the butter using a bread knife, covered the kettle with foil, placed the bread on the pan and press it using the kettle with foil, she stood beside the stove while she waits, then turn over the bread, press the kettle with foil on it.\", \" She placed the bread on the plate, cut it and half, she is sitting on the green chair and started eating her sandwich.\"]}, \"v_rgAALWYnRrg\": {\"duration\": 28.49, \"timestamps\": [[0, 5.27], [5.27, 27.07], [20.37, 20.94]], \"sentences\": [\"A man spin a girl who is blindfold and holds a bat to hit a pi\\u00f1ata.\", \" Then, the girl swing the bat in the air, and in the second try  she hits the pi\\u00f1ata and break it.\", \" Candies fall from the pi\\u00f1ata.\"]}, \"v_fJ4xMCc5SKk\": {\"duration\": 28.33, \"timestamps\": [[0, 10.34], [10.77, 28.33]], \"sentences\": [\"A man begins running down a track and doing several flips and tricks while many watch on the sides.\", \" He high fives another man and the same jumps are seen again in slow motion.\"]}, \"v_q2KR3lzTrq4\": {\"duration\": 195.62, \"timestamps\": [[0, 99.77], [101.72, 169.21], [169.21, 195.62]], \"sentences\": [\"A mother helps slide a boy in a playground.\", \" The boy walk away from the slide while the mother follow him, then the mother help slice the boy again.\", \" After, the boy walks away on the grass, while mother sits on a bench.\"]}, \"v_90vop6PS2Y0\": {\"duration\": 271.23, \"timestamps\": [[0, 35.26], [36.62, 82.73], [86.79, 271.23]], \"sentences\": [\"A boy pushes a rake while riding a scooter down the driveway.\", \" It pushes the leaves in the driveway out to the road.\", \" He continues the pattern until the driveway is clean of debris.\"]}, \"v_tY6UFSLtIoE\": {\"duration\": 231.97, \"timestamps\": [[0, 231.97], [2.32, 231.97], [37.11, 42.91], [204.13, 212.25], [218.05, 225.01]], \"sentences\": [\"We see people dancing and light flashing in a club.\", \" The camera is tilted on its's side.\", \" A man spins a lady over and over.\", \" A man stops in front of the camera and shows the back of his shirt before turning to talk to the camera.\", \" The man spins the lady over and over and over.\"]}, \"v_a1WhnMcTbrY\": {\"duration\": 57.54, \"timestamps\": [[0, 2.3], [2.59, 8.34], [8.63, 40.28], [40.57, 49.2], [49.2, 57.54]], \"sentences\": [\"A guy hold a shovel over his shoulder while recording himself.\", \"the camera then spins in a circle.\", \"the guy now scoops up some snow in the shovel picks it up then dumps it a couple of times.\", \"the guy use the shovel to clean the snow of the top of his bushes.\", \"finally the guy tosses his last snow he scooped up.\"]}, \"v_EwjDShmfFHM\": {\"duration\": 89.82, \"timestamps\": [[0, 4.04], [4.49, 6.29], [7.19, 8.08], [8.98, 66.91], [66.91, 74.55], [74.55, 87.12], [87.57, 89.82]], \"sentences\": [\"A person extends their hands out towards the faucet.\", \" They turn on the faucet and wet their hands.\", \" The person pumps soap into their hands.\", \" The person scrubs their hands thoroughly with the soap.\", \" They extend the hand washing to their wrists.\", \" They turn on the faucet and rinse their hands and wrists.\", \" They extend their palms out in front of the faucet.\"]}, \"v_57buK1yvKPk\": {\"duration\": 74.86, \"timestamps\": [[0.75, 25.08], [20.59, 52.03], [56.15, 72.99]], \"sentences\": [\"A young girl is seen standing before a counter peeling potatoes with a peeler.\", \" The girl continues peeling while speaking to the camera and waving the potato all around her.\", \" The girl continues peeling while looking over and speaking to the camera.\"]}, \"v_ZVIi4lPU6h0\": {\"duration\": 69.41, \"timestamps\": [[0.69, 12.15], [12.15, 47.89], [47.89, 69.41]], \"sentences\": [\" A man shows to carve a pumpkin using a sharp tool.\", \" Then, the man carves a devil face in the pumpkin.\", \" Then, the woman puts a light inside the pumpkin and continues improving the carved pumpkin.\"]}, \"v_L2FgftH2VD8\": {\"duration\": 90.77, \"timestamps\": [[1.36, 40.85], [28.59, 81.69]], \"sentences\": [\"A woman is seen pumping water out of a machine while another wheel kneels down in front and washes clothes.\", \" The people speak back and fourth to one another while the camera pans around and watches them work.\"]}, \"v_RHtpBRwZ9hM\": {\"duration\": 138.53, \"timestamps\": [[0, 18.01], [18.01, 111.52], [111.52, 117.75]], \"sentences\": [\"People are sitting behind a desk talking.\", \" They start playing a game of curling.\", \" Two girls in purple are standing on the ice.\"]}, \"v_zYQ-WdosIwI\": {\"duration\": 42.49, \"timestamps\": [[0.42, 9.56], [8.29, 31.23], [30.17, 42.07]], \"sentences\": [\"A woman is seen standing on a pink may while speaking to the camera.\", \" The woman then gets on knees and sits backwards.\", \" She looks forward while sitting up and does this several times while speaking to the camera.\"]}, \"v_7NG6UrY2Foo\": {\"duration\": 65.09, \"timestamps\": [[0, 3.58], [3.58, 33.19], [33.19, 49.47], [49.47, 65.09]], \"sentences\": [\"A man comes onto the screen and announces that he will show the viewers how to make a drink.\", \" He fills a cup with ice and pours all the ingredients into the glass.\", \" He takes a spoon and stirs it up.\", \" He takes out another glass and pours the drink into the new glass and places a straw into the drink.\"]}, \"v_AC9mml3mqps\": {\"duration\": 134.7, \"timestamps\": [[0, 91.6], [99.68, 134.7]], \"sentences\": [\"A screen is shown playing video above a stage and leads into performers skating out on ice as well as hockey players behind them.\", \" The players all line up on the ice with one waving a flag and then begin skating around.\"]}, \"v_qHRCGBIiNFg\": {\"duration\": 189.01, \"timestamps\": [[0, 170.11], [172, 181.45], [182.4, 189.01]], \"sentences\": [\"A man is bending over a hole in the ice, while another is trying to pull out his pole as he has caught something.\", \" He eventually pulls a large trout fish from the hole, holding it up for the camera.\", \" The men high five in celebration.\"]}, \"v_puK4NxGKNdQ\": {\"duration\": 181.05, \"timestamps\": [[0, 49.79], [42.55, 124.02], [109.53, 177.43]], \"sentences\": [\"A man is seen riding into frame on a lawn mower and looking at the camera.\", \" The man speaks to the camera until two more mowers appear and he begins riding around.\", \" He gives the camera a thumbs up while still riding around and stops to look at the camera.\"]}, \"v_vGcH8N8sJlM\": {\"duration\": 181.16, \"timestamps\": [[0, 21.74], [21.74, 70.65], [75.18, 86.96], [88.77, 95.11], [95.11, 181.16]], \"sentences\": [\"Four males,three teenagers and a young boy are outside in a back yard playing croquet.\", \"As the boys take turns,only one ball goes through the arch as the other ones go in the grass and over the trees.\", \"When the ball comes back,two of the boys begin to play fight with their croquet.\", \"Suddenly,another boy has a large dodge ball like item that he hits and but then it hits the peg it is the actual ball.\", \"After,the real ball is hit from various locations,such as the clubhouse and trampoline until the end where their names are shown and credits are rolled.\"]}, \"v_Ck-9AHZNkq4\": {\"duration\": 61.26, \"timestamps\": [[0, 33.08], [39.51, 53.6], [50.54, 53.6], [53.9, 57.89]], \"sentences\": [\"Students pedal stationary bikes in a classroom.\", \" A boy looks at a smart phone while pedaling a stationary bike, and other boys continue biking.\", \" A boy lowers his cap to cover his eyes.\", \" A girl pedals a bike while looking her smart phone.\"]}, \"v_WqnnGmL-lmU\": {\"duration\": 224.24, \"timestamps\": [[1.12, 108.75], [60.54, 181.63], [161.45, 221.99]], \"sentences\": [\"Clips are shown of a woman cutting a woman's hair while another speaks to the camera and he begins washing the hair.\", \" The man continues to cut and style the womans hair as he speaks to the camera with the host.\", \" He shows several different ways to style the hair and ends with the woman looking pleased.\"]}, \"v_8fZbv6OUEm8\": {\"duration\": 64.11, \"timestamps\": [[0, 64.11], [13.46, 15.39], [53.85, 54.49]], \"sentences\": [\"People are playing with a ball in the sand on the beach.\", \" A man dives for the ball and falls into the sand.\", \" The ball is shown on the sand.\"]}, \"v_2D22fVcAcyo\": {\"duration\": 215.78, \"timestamps\": [[0, 21.58], [24.82, 25.89], [36.68, 141.34], [197.44, 215.78]], \"sentences\": [\"Two kids are crossing a slack line over a blue mat.\", \" A man in a red jacket holds a microphone.\", \" A man in a gray shirt is doing tricks on a slack line.\", \" People are seen standing in front of a stage.\"]}, \"v_aTQaYDmcMDY\": {\"duration\": 201.74, \"timestamps\": [[0, 201.74], [178.54, 180.55]], \"sentences\": [\"People are riding motocross bikes in the dirt and going off jumps.\", \" A man waves a white flag over the course.\"]}, \"v_A8dBgZCuQow\": {\"duration\": 173.06, \"timestamps\": [[4.33, 78.74], [64.9, 167]], \"sentences\": [\"A woman is seen waving to the camera and leads into her putting makeup all over her face.\", \" The woman continues putting makeup on all over her face and ends by smiling to the camera.\"]}, \"v_nezTU6Bq5hM\": {\"duration\": 45.19, \"timestamps\": [[0, 45.19], [1.36, 45.19], [1.13, 45.19]], \"sentences\": [\"A man is kneeling down on grass.\", \" He is clipping the grass with large scissors.\", \" The man is wearing a yellow and red shirt.\"]}, \"v_lVu-4SKcb4c\": {\"duration\": 17.88, \"timestamps\": [[0, 11.98], [12.61, 17.88]], \"sentences\": [\"a man is shown throwing darts at a target.\", \"The darts are all lined up in a neat row of three.\"]}, \"v_D5jLypnn6Ps\": {\"duration\": 236.84, \"timestamps\": [[0, 236.84], [1.18, 7.11], [13.03, 33.16], [34.34, 36.71], [37.9, 56.84], [58.03, 74.61], [75.79, 90], [90, 236.84]], \"sentences\": [\"Several girls are in a big stadium on the field.\", \" One girl hits a ball with a stick she is holding.\", \" She then holds the camera while another girl hits a ball with a stick.\", \" A third girl stands at the end of the field where the balls are being hit to.\", \" The second girl to hit the ball waits for it to be thrown back to her and then attempts to hit the ball with the stick again but misses.\", \" She tries again and hits the ball this time.\", \" A girl opposite her hits the ball back.\", \" The two girls continue to hit the ball back and forth.\"]}, \"v_LElk0AlBpbI\": {\"duration\": 175.23, \"timestamps\": [[0, 18.4], [20.15, 141.94], [142.81, 175.23]], \"sentences\": [\"A man is climbing up the side of a tree, then jumps down.\", \" Several people are shown doing long boarding stunts in the parking lots of a college.\", \" A boy is shown standing in his dorm before we go back to scenes of long boarding outdoors.\"]}, \"v_EvJqfGXb5Fo\": {\"duration\": 158.18, \"timestamps\": [[0, 12.65], [14.24, 21.35], [48.24, 51.41], [87.79, 93.32], [116.26, 123.38], [140.78, 146.31], [153.43, 158.18]], \"sentences\": [\"We see a girl raking leaves in a yard.\", \" We then see a  boy with a rake point to a tree.\", \" A large brown dog enters the room.\", \" A woman walks down the street.\", \" The boy scratches his chin.\", \" The boy is playing with his rake.\", \" We see the dog run towards the camera.\"]}, \"v_yE5whKJ-DE4\": {\"duration\": 150.7, \"timestamps\": [[0, 150.7], [18.84, 127.34], [114.53, 150.7]], \"sentences\": [\"The young man with headphones is pushing the grass cutter, while the man in gray sweater is guiding him.\", \" Young man in gray sweater is holding the other boys back as they go through the grass.\", \" The man with headphones is drinking from a cup as the young man in gray sweater have him a back hug.\"]}, \"v_993xtlhuVII\": {\"duration\": 180.47, \"timestamps\": [[12.63, 58.65], [50.53, 140.76], [118.21, 174.15]], \"sentences\": [\"A man is seen looking to the camera while holding a violin.\", \" The man then begins playing the instrument while the camera zooms in on his fingers.\", \" The man continues to play and stops to speak to the camera.\"]}, \"v_PCoxnf59j5U\": {\"duration\": 213.02, \"timestamps\": [[0, 51.12], [51.12, 96.92], [96.92, 127.81], [127.81, 197.04], [197.04, 213.02]], \"sentences\": [\"A man introduces a video about how he will assemble a new bike he just got.\", \" He unpacks the bike from the bow that it came in and removes the plastic.\", \" Be begins by attaching the handlebars to the bike.\", \" Then he attaches the front and back wheels to the bike.\", \" Someone rides off on the bike and the video ends with the closing credits.\"]}, \"v_K2Pws9z20Do\": {\"duration\": 228.46, \"timestamps\": [[0, 228.46], [135.93, 147.36]], \"sentences\": [\"People in wheel chairs dance with people standing in a studio.\", \" All the people in wheelchairs do circles around the dancers.\"]}, \"v_qI1ZayfiGHI\": {\"duration\": 95.03999999999999, \"timestamps\": [[0, 44.67], [36.59, 95.04]], \"sentences\": [\"Two men are seen standing around an enclosed room and begin hitting a ball around.\", \" The men continue hitting the ball around the room while looking through the glass and are mainly seen standing around and talking.\"]}, \"v_zRNS_ebpi7o\": {\"duration\": 81.25, \"timestamps\": [[0, 12.19], [17.06, 62.15], [62.97, 81.25]], \"sentences\": [\"A band is on a stage together.\", \" A man is holding a violin and inspecting it.\", \" Several people watch him as they talk about the violin.\"]}, \"v_z3xkE5Ox-2A\": {\"duration\": 166.93, \"timestamps\": [[0.83, 2.5], [4.17, 18.36], [30.88, 166.09], [35.89, 136.88], [110.17, 111.01], [126.87, 133.54], [143.56, 149.4]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy is removing the skin off a pumpkin.\", \" The guy sits and discusses.\", \" The guy is carving unique face on the surface of pumpkins.\", \" The guy looks in a mirror while he mimics punching himself.\", \" The guy wraps white toilet paper on a pumpkin carving.\", \" A guy takes a picture of his carving.\"]}, \"v_qXD7myRvw0M\": {\"duration\": 28.33, \"timestamps\": [[0, 28.33], [2.97, 25.64], [6.52, 26.91]], \"sentences\": [\"The badminton players are playing at the badminton court.\", \" On one net, there are four player playing, on the other net there are two player playing.\", \" The players chase the shuttlecock and hit it with their racket.\"]}, \"v_5JlwYD_GChY\": {\"duration\": 78.14, \"timestamps\": [[0, 48.44], [48.84, 60.95], [60.95, 69.93], [69.93, 78.14]], \"sentences\": [\"Scenes of different teams playing in a beach soccer tournament.\", \" Clips of the tourists in the beach town and spectators lining the beach sideline.\", \" More clips of some soccer play and beach scenes including stills of a dog sleeping on the beach and kids playing in the surf.\", \" A picture of one of the winning teams with their medals.\"]}, \"v_dySzHZniFCo\": {\"duration\": 160.4, \"timestamps\": [[0, 156.39], [0, 28.07], [27.27, 52.93], [50.53, 70.58], [68.17, 108.27], [105.06, 138.75], [109.07, 131.53], [139.55, 157.2]], \"sentences\": [\"There are some girls wearing karate uniforms doing karate on a stage.\", \" There's an orange belt and a yellow belt karate student doing some karate moves with batons in their hands.\", \" After they leave, another karate student wearing a yellow belt comes on stage to perform her karate moves with a baton.\", \" Then she leaves and another girl wearing an orange belt joins in holding two hammers to show her karate moves.\", \" She leaves and another girl wearing a yellow belt comes on stage with a hand fan and shows her karate moves.\", \" After she leaves the master comes on stage along with three other students.\", \" They take turns to smash the board held by the master.\", \" Then the master leaves and the three students demonstrate their coordinated karate moves.\"]}, \"v_jQHGyqk21GI\": {\"duration\": 178.21, \"timestamps\": [[0, 178.21], [8.02, 9.8], [21.39, 25.84], [26.73, 29.41], [42.77, 45.44], [52.57, 57.03], [57.92, 62.37], [71.29, 72.18], [79.31, 91.78], [122.97, 139.9], [150.59, 178.21]], \"sentences\": [\"People are in the river in a boat rushing downstream as the water splashes them.\", \" A mountain panorama is displayed onscreen.\", \" The 6 people row vigorously.\", \" We see them from the riverbed looking across, farm building in the background.\", \" A woman talks to the camera.\", \" They take group selfies on dry land.\", \" People jump from a rock into the river.\", \" A man talks to the camera.\", \" A man points out the directions to other riders.\", \" Another woman talks to the camera.\", \" Food is being cooked for the party and plated to the attendees.\"]}, \"v__jxpaVW4_cE\": {\"duration\": 126.2, \"timestamps\": [[0, 18.93], [18.93, 107.27], [107.27, 126.2]], \"sentences\": [\"A person is seen putting three small children on a camel while a woman stands in front and the kids wave.\", \" The woman leads the camel around with the kids as they wave to the camera and let the kids off when they return back.\", \" The camera comes back to the kids as they walk away from the area.\"]}, \"v_afqUOlnLHX0\": {\"duration\": 89.51, \"timestamps\": [[0, 44.76], [33.57, 89.51]], \"sentences\": [\"A man is seen paying pool on a table and pausing to point to the balls and table.\", \" Several people watch him on the side while he demonstrates how to shoot and ends by shooting several balls at once and cheering.\"]}, \"v_l4UJiGsZVfE\": {\"duration\": 211.93, \"timestamps\": [[1.06, 211.93], [15.89, 37.09], [36.03, 128.22], [128.22, 211.93]], \"sentences\": [\"A group of children race dirt bikes over a series of rolling hills several times.\", \"  A group of children race, ride, and jump over hilly race courses surrounded by trees and buildings.\", \"  A group of children descend from a hill behind a gated start place in a professional race.\", \" Several more races are shown with the children traversing the same kinds of hilly obstacles on the race trail.\"]}, \"v_Nqh3RtLRleU\": {\"duration\": 62.58, \"timestamps\": [[0.94, 24.41], [24.72, 61.01]], \"sentences\": [\"A person is seek walking around knitting and leads into a woman hosting a news segment.\", \" Many people are seen running around while knitting and leads into a clip of a man playing an instrument in a street corner.\"]}, \"v_6Yn2U58qxPs\": {\"duration\": 214.95, \"timestamps\": [[0, 11.82], [11.82, 39.77], [40.84, 99.95], [99.95, 153.69], [154.76, 200.98], [202.05, 214.95]], \"sentences\": [\"We see antique opening title screen.\", \" We see men in rock climbing gear talking about climbing.\", \" We see the man in the black shirt start climbing the rock.\", \" The two men then begin to talk.\", \" The man in black climbs the rock wall then down again.\", \" We see the closing screens.\"]}, \"v_3hZjxdMcG6o\": {\"duration\": 11.24, \"timestamps\": [[0, 1.91], [3.43, 6.18], [6.13, 7.14], [7.14, 11.24]], \"sentences\": [\"A man tries to stop a man from shooting a basket ball.\", \" The ball is passed across the room and men chase it across the court.\", \" A boy catches and tosses the ball behind him which is caught by another boy on his team.\", \" The boy runs and shoots the ball to score.\"]}, \"v_MmOVjM5-D-U\": {\"duration\": 93.16, \"timestamps\": [[0, 24.22], [21.43, 61.02], [56.83, 93.16]], \"sentences\": [\"A woman in white shirt is brushing the fur of the brown dog as the blow dry bows on top of its head.\", \" A woman in white shirt is brushing the white dog's fur while the blow dry blows on its head while in the back, a woman is trimming the light brown dog's fur.\", \" A woman in black shirt and another woman in white hold a white poodle and check its ears.\"]}, \"v_iL5abexk3vQ\": {\"duration\": 150.42000000000002, \"timestamps\": [[0, 34.6], [34.6, 100.78], [100.78, 150.42]], \"sentences\": [\"A gym is shown and a large crowd of students is watching a person doing flips and throwing her baton over the floor.\", \"As the routine continues,she does doing splits and throwing the baton up in the air.\", \"The girl then moves to the other side of the gym and grabs fire sticks and the people in the crowd stand up in an uproar cheering for her.\"]}, \"v_7RESODKApso\": {\"duration\": 54.1, \"timestamps\": [[0, 4.87], [5.14, 30.84], [31.11, 43.01], [43.55, 54.1]], \"sentences\": [\"A man sitting on a bucket by some snow drinks a beer.\", \" He speaks to the camera.\", \" He puts down his beer and grabs a fishing pole and begins to fish.\", \" He holds the fishing pole string.\"]}, \"v_qkk2tK19sx8\": {\"duration\": 51.11, \"timestamps\": [[0, 11.24], [11.5, 39.35], [7.92, 45.49], [39.86, 51.11], [50.09, 51.11]], \"sentences\": [\"A gymnast stands on his arms.\", \" Then, the gymnast performs pommel horse while spinning his body.\", \" A person behind the pommel horse takes pictures to the gymnast.\", \" After, the gymnast stands on his hands, turn and jumps to land on the mat, then walks.\", \" A man walks holding a paper and pen.\"]}, \"v_ffUtqOyJ7fM\": {\"duration\": 84.8, \"timestamps\": [[0, 22.05], [22.05, 59.36], [59.36, 79.29], [79.29, 84.8]], \"sentences\": [\"A woman wearing black clothes is talking in front of an all white screen, she tilts her head from side to side then holds up a small bottle.\", \" The woman then applies water to her face, then pours contents from the little bottle onto her hands and she begins to rub it all over her face using her fingers.\", \" The woman speaks and then rinses her face off and then dries her face with a towel.\", \" When the woman's face is all dried she continues to talk.\"]}, \"v_yjazHd6a5SQ\": {\"duration\": 155.38, \"timestamps\": [[1.55, 62.93], [48.94, 103.33], [103.33, 152.27]], \"sentences\": [\"A close up of lemonade is shown followed by a man standing behind a bar speaking to the camera with various ingredients.\", \" The man then pours several liquids out into a glass, shakes it up, and then pours it into a glass with a lemon on top.\", \" The man finishes by still speaking to the camera and presenting a picture of his drink.\"]}, \"v_2nPrH4Tv0yc\": {\"duration\": 83.06, \"timestamps\": [[0, 7.89], [11.63, 61.88], [63.95, 83.06]], \"sentences\": [\"Two men are kickboxing inside a building.\", \" One man holds up a block as the other is kicking and punching.\", \" He then turns, and another man kicks and punches at the blocks.\"]}, \"v_koEfnIoZB_4\": {\"duration\": 95.47999999999999, \"timestamps\": [[0, 13.37], [14.32, 15.28], [15.28, 34.37], [34.85, 51.08], [51.56, 66.36], [66.84, 81.64], [82.59, 95.48]], \"sentences\": [\"A crowd watches a man leap into a large tunnel.\", \" Someone gives a thumbs up.\", \" Another man leaps into the large tunnel.\", \" A third man leaps into the tunnel.\", \" A fourth man leaps into the tunnel.\", \" A fifth man leaps into the tunnel with his arms flared open.\", \" A sixth man leaps into the tunnel.\"]}, \"v_ux_qqONPSrc\": {\"duration\": 123.51, \"timestamps\": [[0, 8.65], [9.26, 29.64], [32.73, 99.42], [100.04, 123.51]], \"sentences\": [\"An illustrated egg, the website \\\"startcooking com\\\" and \\\"Vegetable Salad\\\" are shown on screen.\", \" Ingredients for the recipe are shown.\", \" A person starts preparing the recipe by chopping vegetables.\", \" The finished salad is shown from above.\"]}, \"v_O_L0CSZ7nnA\": {\"duration\": 83.15, \"timestamps\": [[0, 10.39], [11.23, 35.75], [36.17, 83.15]], \"sentences\": [\"A fast motion video shows a picture on a pumpkin and leads into a person cutting open a pumpkin.\", \" The persons scoops out the pumpkin and place the picture in front, tracing the outline of the picture onto the pumpkin.\", \" The person then cuts out the outline, turns off the lights, and shows off the end results.\"]}, \"v_X82bc2v5kcM\": {\"duration\": 116.31, \"timestamps\": [[0, 30.82], [30.82, 87.23], [84.91, 116.31]], \"sentences\": [\"A man is seen speaking to the camera while holding a bottle of lotion and then spread it throughout a woman's hair.\", \" He then brushes the hair and blow dries it while styling it into a certain look.\", \" He finishes the cut and dry and the woman sees herself in the mirror.\"]}, \"v_2rHsoF35eQw\": {\"duration\": 136.53, \"timestamps\": [[0, 136.53], [73.73, 136.53]], \"sentences\": [\"People are sitting inside of a raft going over large bumps in the water.\", \" The raft tips over and the people fall out several times.\"]}, \"v_STAvUAslEYM\": {\"duration\": 157.36, \"timestamps\": [[0, 60.58], [50.36, 157.36]], \"sentences\": [\"A man and woman are seen hosting a segment and leads into several shots of a soccer match.\", \" The video continues with more shots of team mates cheering and playing soccer and ends with the hosts speaking to the camera again.\"]}, \"v_v2zVnmbPmeQ\": {\"duration\": 238.12, \"timestamps\": [[0, 9.52], [9.52, 17.86], [17.86, 35.72], [35.72, 83.34], [83.34, 195.26], [195.26, 238.12]], \"sentences\": [\"A young woman is standing in front of a brick wall and speaking to the camera.\", \" She applies mascara to her eyes and is talking throughout.\", \" She applies make up to both of her eyes while still looking into the camera.\", \" She then applies cover up makeup to her face.\", \" She then goes back to her eyes to apply eyeliner and continues speaking into the camera.\", \" She finishes by applying lipstick, giving instructions throughout.\"]}, \"v_Z_YXWLkRmjQ\": {\"duration\": 15.65, \"timestamps\": [[0, 15.65], [0, 15.49]], \"sentences\": [\"A few boys stand around doing different things in a locker room.\", \"  One boy kicks and spins around showing off his martial art skills.\"]}, \"v_ShKrNPaSdhY\": {\"duration\": 235.09, \"timestamps\": [[17.63, 37.61], [106.97, 112.84], [199.83, 209.23]], \"sentences\": [\"A person is snowboarding down a hill of snow.\", \" A man is in the snow with no shirt on.\", \" A man has a bandanna on his face and no shirt on snowboarding down a hill.\"]}, \"v_ZMTi498qnPc\": {\"duration\": 100.5, \"timestamps\": [[0, 42.71], [32.66, 81.4], [71.35, 97.48]], \"sentences\": [\"A young child is seen sitting on a bar with another girl showing her teeth to the camera.\", \" The girl opens the box to take an object out while the young girl laughs to the camera.\", \" The girl continues taking items out of the box while the girl looks and laughs.\"]}, \"v_fdd5ixvEXOE\": {\"duration\": 63.18, \"timestamps\": [[0, 63.18], [11.06, 63.18]], \"sentences\": [\"A large group of people are seen walking down a sidewalk holding various signs and objects and skipping down the street.\", \" More people appear hoping down the street and ends with one final man looking at the camera.\"]}, \"v_HpJ2pr0ykqo\": {\"duration\": 45.93, \"timestamps\": [[5.51, 11.02], [11.02, 18.6], [18.6, 36.06]], \"sentences\": [\"A woman paints the lower part of a gate with a hose while carrying on her back a backpack Sprayer.\", \" Then, the woman paints the upper part of the gate.\", \" After,the woman continues painting the lower part of the gate.\"]}, \"v_O_fdvOxYqiY\": {\"duration\": 165.03, \"timestamps\": [[0.83, 81.69], [66.84, 163.37]], \"sentences\": [\"A person is seen sitting behind a set of bongo drums and speaking to people off in the distance.\", \" The men then plays on the drums while stopping to speak and continuing to play.\"]}, \"v_g49F9coR2VU\": {\"duration\": 76.19, \"timestamps\": [[0, 76.19], [27.81, 59.81], [72.76, 76.19]], \"sentences\": [\"Two people are boxing on a mat.\", \" A man in a white shirt is lifting his knee up to hit another man.\", \" They stop boxing and separate.\"]}, \"v_eXMF6Skt2To\": {\"duration\": 183.42, \"timestamps\": [[0, 4.59], [5.5, 24.76], [24.76, 28.43], [40.35, 43.1], [43.1, 165.99], [51.36, 54.11], [55.94, 60.53], [108.21, 115.55], [164.16, 177], [166.91, 177], [177, 183.42]], \"sentences\": [\"We see the title screen on black.\", \" We see images of men in uniforms in various locations.\", \" A lady is washing a bike.\", \" A girl holds up the start card.\", \" The men start after the card and ride their dirt bikes.\", \" The lady with the hose is seen again.\", \" A man falls off his bike hard.\", \" The bike washing and other ladies appear.\", \" We see fireworks going off in the air.\", \" We see the winner throwing hands in the air and giving high five to each other.\", \" The end titles appear on a black screen.\"]}, \"v_7QxUtHqQdbY\": {\"duration\": 13.89, \"timestamps\": [[0.28, 6.73], [4.24, 13.4]], \"sentences\": [\"A man is seen standing in the woods holding an ax and walking closer to a log.\", \" The man steps on the log a bit followed by him swinging the ax on the log.\"]}, \"v_pqVWGi0d4RU\": {\"duration\": 203.27, \"timestamps\": [[9.15, 19.31], [19.31, 49.8], [49.8, 126.03], [126.03, 137.21], [138.22, 203.27]], \"sentences\": [\"Two teams play ice jockey and a man fell on the ice, then men help to stand the player.\", \" The players hit each other hard and push and the red team score, then the team jumps.\", \" Other teams play ice jockey and a man get injured, then the team play and win.\", \" A man talks  on front a  microphone.\", \" two team play and a man fall on the ice, then teams continue playing.\"]}, \"v_2q_4I3ae0J4\": {\"duration\": 122.97, \"timestamps\": [[0, 37.51], [38.12, 80.55], [81.78, 120.51]], \"sentences\": [\"A man plays hurling and serves a ball with a stick.\", \" The man throws the ball in the air and immediately hit the ball with the stick.\", \" The man throws the ball in the air, then swing his body to hit the ball with the stick.\"]}, \"v_sRN_crwj3B4\": {\"duration\": 225.44, \"timestamps\": [[0, 225.44], [6.76, 11.27], [12.4, 14.65], [12.4, 225.44], [104.83, 175.85], [176.97, 199.52], [200.64, 225.44]], \"sentences\": [\"The video takes place in a kitchen.\", \" A clip of a woman applying wallpaper is shown.\", \"  The woman then begins speaking to the camera.\", \" The woman begins demonstrating how to remodel a kitchen.\", \" She soon applies wallpaper while speaking to the camera.\", \" The woman then places the final touches of the remodel, such as covering outlets and putting plates on the table.\", \" The video ends with the camera showing the newly remodeled kitchen.\"]}, \"v_nB0JECwGK0c\": {\"duration\": 231.99, \"timestamps\": [[0, 12.76], [12.76, 22.04], [22.04, 118.32], [118.32, 231.99]], \"sentences\": [\"men are wearing together a costume and a man is helping them.\", \" man is wearing headphones talking in a microphonr.\", \" other men are wearing the same costume and are wresting on a red carpet and men are helping them.\", \" men are watching them around the carpet.\"]}, \"v__Ew3g9PXhvo\": {\"duration\": 133.42, \"timestamps\": [[0, 32.02], [37.36, 106.74], [93.39, 128.75]], \"sentences\": [\"A shot of scenery is shown followed by a man walking on the rope.\", \" Several more people are seen walking on the rope on the sunset.\", \" More people take their turns walking on the rope.\"]}, \"v_Xc70KHd4zhI\": {\"duration\": 60.95, \"timestamps\": [[0, 0.61], [9.14, 53.03], [54.25, 55.47]], \"sentences\": [\"A lady gives a man a piece of paper.\", \" The man fills a white bowl with food.\", \" The man slides the bowl towards the lady.\"]}, \"v_juiMCvZUYwk\": {\"duration\": 144.01, \"timestamps\": [[23.76, 30.96], [64.08, 83.53], [96.49, 100.81]], \"sentences\": [\"A person is drawing on a sweet potato.\", \" They fill a basket with hair products.\", \" She rips out pages from a music book.\"]}, \"v_tpDhYD9e_cU\": {\"duration\": 232.99, \"timestamps\": [[0, 26.79], [32.62, 139.79], [146.78, 232.99]], \"sentences\": [\"A person is skating on a tennis court.\", \" They wind their feet in and out of mini cones as they go.\", \" They repeat the act in city parking lots.\"]}, \"v_K3Z3z8t-RIQ\": {\"duration\": 203.76, \"timestamps\": [[0, 100.86], [96.78, 203.76]], \"sentences\": [\"Several shots are shown of people performing jump roping tricks on a large stage in front of an audience.\", \" The people do several jumps and tricks with each other as well as by themselves.\"]}, \"v_lgu-DBDWlEs\": {\"duration\": 18.79, \"timestamps\": [[0, 18.79], [0, 7.23], [7.23, 14.65]], \"sentences\": [\"This young black woman is peeling the onion over the garbage can in the kitchen.\", \" There is a small dog standing next to the garbage can, but the camera turns so the dog isn't shown.\", \" Then someone walks in while holding flamin' hot funyun chips in their hand.\"]}, \"v_Aa33vHLEXJA\": {\"duration\": 73.53, \"timestamps\": [[11.03, 69.85], [11.03, 19.48], [17.65, 53.31], [17.65, 66.91]], \"sentences\": [\"A matador got knocked down by a bull and the bull injured him.\", \"Another matador helped him get away after he was gored in the neck.\", \"A matador in a gold costume waved a red banner at him ,but he avoided the bull.\", \"Several other matadors came out and held up pink banners around the bull  then the bull fell to the ground.\"]}, \"v_cIpBpGQ0XTI\": {\"duration\": 226.56, \"timestamps\": [[0, 26.05], [14.73, 200.5], [36.25, 147.26], [134.8, 219.76]], \"sentences\": [\"The man is riding on the side of the car, the car is going side to side.\", \" The car is running on one side while the other side is up.\", \" Five men went out of the the car and began removing the tires, then they cheered when they removed the tires.\", \" The men put back the tires while the car is still running on one side.\"]}, \"v_JOBSEatasv4\": {\"duration\": 133.7, \"timestamps\": [[0, 8.69], [8.69, 116.32], [116.32, 133.7]], \"sentences\": [\"An elderly man walks to a towel that is spread on his living room floor.\", \" The man lies down on the towel, lifts his bent legs and begins doing a lot of sit ups where he touches his elbows to his knees.\", \" The man finally stops, kicks himself up to a sitting position, stands up and walks towards the side of the camera.\"]}, \"v_otWTm1_aAqI\": {\"duration\": 40.59, \"timestamps\": [[0, 1.83], [1.83, 32.88], [32.88, 40.59]], \"sentences\": [\"A male gymnast is on a mat in front of judges preparing to begin his routine.\", \"The boy then jumps on the beam grabbing the bars and doing several spins across the balance beam.\", \"He then moves into a hand stand and jumps off the bar into the floor.\"]}, \"v_PEpfA3L4m20\": {\"duration\": 23.26, \"timestamps\": [[0, 23.26], [0, 22.91], [0, 22.68]], \"sentences\": [\"man is standing in a dark room weding a metal surface.\", \" man is wearing a helmet welding in a suface.\", \" welder is holding a welding machine.\"]}, \"v_bYUmtLBL7W4\": {\"duration\": 224.53, \"timestamps\": [[2.25, 215.55], [2.25, 22.45], [26.94, 31.43], [70.73, 211.06]], \"sentences\": [\"A group of people waterski in a body of water using a boat as propulsion in the water.\", \"  A man gets on a water ski with both feet and begins to waterski while holding on to a rope attached to a boat.\", \"  The camera shows a reverse play of a  person doing a backflip out of the water an onto water platform attached to a boat.\", \" The people continue to water ski in narrow calm water surrounded by foliage.\"]}, \"v_9XjHgUP5QW0\": {\"duration\": 42.93, \"timestamps\": [[0, 4.72], [6.01, 31.77], [33.27, 42.93]], \"sentences\": [\"Two women are running down a sidewalk.\", \" They walk into a house and look at a calendar before going to shave their legs and get ready for a date.\", \" The date has flowers when the woman opens the door, but the other woman is not yet done, because her shaving cream took too long.\"]}, \"v_olBh9KMAHMQ\": {\"duration\": 149.21, \"timestamps\": [[0, 4.48], [10.44, 20.89], [20.89, 48.49], [48.49, 65.65], [66.4, 91.02], [92.51, 122.35], [123.1, 128.32], [129.07, 149.21]], \"sentences\": [\"We see the blue opening screen.\", \" A man walks out into his yard carrying a shovel.\", \" The man then puts on his gloves and dances a bit in the yard.\", \" The man shovels the snow.\", \" The man spins the shovel in the air dances and shovels again.\", \" The man spins the shovel again and words appear on the screen and he shovels more snow.\", \" The man walks back into his garage.\", \" We see the blue ending title screen.\"]}, \"v_EVtM8DKW4bc\": {\"duration\": 126.29, \"timestamps\": [[0, 12.63], [14.52, 126.29]], \"sentences\": [\"A small group of people are seen sitting in bumper cars in the middle of a large crowd.\", \" The cars then drive around one another and bump into each other while the people watch around the sides.\"]}, \"v_VvD2fdPNWEg\": {\"duration\": 188.29, \"timestamps\": [[0, 188.29], [40.48, 164.75]], \"sentences\": [\"An indoor track meet is shown with the triple jump.\", \"  Several men complete a triple jump and get their scores.\"]}, \"v_KFS_lGlO-Ew\": {\"duration\": 58.65, \"timestamps\": [[0, 20.53], [23.46, 43.4], [43.99, 56.31]], \"sentences\": [\"A young boy walks into the bathroom at home.\", \" The boy lifts up a cup of mouthwash and pours it into his mouth.\", \" The boy spits it back out in the sink.\"]}, \"v_ZcgahXg_ELw\": {\"duration\": 194.82, \"timestamps\": [[0, 9.74], [10.71, 184.1], [23.38, 33.12], [48.7, 58.44], [81.82, 102.28], [164.62, 175.33], [185.08, 194.82]], \"sentences\": [\"We see an opening title screen.\", \" A boat floats in the ocean and we see divers underwater and sealife.\", \" A diver waves and gives a thumbs up and another waves to the camera.\", \" A baby shark swims along the ocean floor.\", \" We see a series of diver shots and a manta ray swims on the ocean floor.\", \" People wave to the camera underwater.\", \" We see the ending title screen.\"]}, \"v_4ImpZRtbzYw\": {\"duration\": 192.49, \"timestamps\": [[0, 26.95], [23.1, 98.17], [72.19, 149.18], [145.33, 192.49]], \"sentences\": [\"A woman is seen speaking to the camera and pans around an old table.\", \" The girl is then seen outside sanding down the table and leads into her painting the table.\", \" Several shots of the table are shown  as well as lists drawn out, paper being rolled, and laid out onto the table.\", \" Finally the table is complete and is shown again inside next to a dress while the woman finishes speaking.\"]}, \"v_wD-9KvI1-AI\": {\"duration\": 115.59, \"timestamps\": [[0, 26.01], [30.05, 83.22], [83.22, 112.12]], \"sentences\": [\"Two girls are seen sitting in front of the camera speaking and playing with one another.\", \" The girls hold up glasses of mouth wash as well as the bottle itself and begin drinking the liquid.\", \" The two swish it around their mouths and spit it out in the end while laughing to the camera.\"]}, \"v_AO-0r8H2DOo\": {\"duration\": 51.46, \"timestamps\": [[0, 16.21], [17.24, 38.59], [30.36, 50.17]], \"sentences\": [\"A close up of a person's leg is seen followed by a large razor.\", \" The person then begins using the razor on their leg up and down.\", \" The person continues to use the razor on their leg.\"]}, \"v_IlKOWIBAEFE\": {\"duration\": 226.63, \"timestamps\": [[0, 33.99], [38.53, 86.12], [81.59, 226.63]], \"sentences\": [\"Several shots are shown of a man speaking to various groups of people and leads into people wearing wet suits and walking.\", \" The people walk down a beach and are seen swimming around in the water.\", \" More shots of fish are shown and ends with the people walking out of the water and high fiving the camera man.\"]}, \"v_WHchTZ61VT4\": {\"duration\": 150.79, \"timestamps\": [[0, 41.47], [40.71, 107.82], [107.06, 150.79]], \"sentences\": [\"A woman is seen standing with a tied up dog outside and begins scrubbing the dog down with soap.\", \" The woman moves the dog a bit while scrubbing and shows another dog looking at the camera.\", \" The camera pans back to the woman who is still scrubbing the dog.\"]}, \"v_0RIc6mwDRaQ\": {\"duration\": 158.52, \"timestamps\": [[0, 158.52], [2.38, 158.52]], \"sentences\": [\"A woman plays a harp in a large church.\", \" Another woman plays a flute in the large church.\"]}, \"v_3nX5ZwzHftM\": {\"duration\": 33.11, \"timestamps\": [[0, 33.11], [18.87, 19.7], [24.67, 33.11]], \"sentences\": [\"People are sitting in tubes on a river.\", \" A green tube is shown in the water.\", \" A woman wearing a white hat is sitting in a tube.\"]}, \"v_Br1Ty6PCrv8\": {\"duration\": 42.12, \"timestamps\": [[0, 10.95], [11.37, 41.28]], \"sentences\": [\"A young child is seen riding down a slide and running to the top again.\", \" The boy slides down several more times while other children around him play.\"]}, \"v_UjJ8yWaFNGg\": {\"duration\": 183.25, \"timestamps\": [[17.41, 183.25], [46.73, 47.65], [100.79, 102.62]], \"sentences\": [\"A man in a blue jacket is skiing down a hill.\", \" He sets up a camera in the snow.\", \" People are riding a ski lift up the mountain.\"]}, \"v_s5y4xXcphcc\": {\"duration\": 131.87, \"timestamps\": [[0, 58.02], [58.68, 131.87]], \"sentences\": [\"Several men are outside in a large body of water,holding on to large sails as the move on their surfboard.\", \"The tasks continues,and the men pass more people and start to make circles around each other.\"]}, \"v_Cg_jN5G1ZpY\": {\"duration\": 70.78, \"timestamps\": [[0, 2.83], [3.18, 57.33], [57.68, 70.78]], \"sentences\": [\"A black bull appears in a large rodeo ring.\", \" Clowns taunt the bull into charging them and other items.\", \"  The bull leaves the arena after chasing off a clown.\"]}, \"v_UfjR8ewF8xo\": {\"duration\": 213.76, \"timestamps\": [[0, 213.76], [0, 205.21], [150.7, 213.76]], \"sentences\": [\"man is standing in a basket court practicing free throws.\", \" man with white shirt is practicing in the background.\", \" man stnanding in  court is talking to the camera and explaining how to play.\"]}, \"v_V9LudLaWGOM\": {\"duration\": 63.68, \"timestamps\": [[0, 27.07], [35.03, 63.68]], \"sentences\": [\"Various pictures of javelin athletes are shown that lead into videos of the athletes throwing the pole.\", \" A man then steps up and demonstrates how to properly throw the pole while bouncing up and down.\"]}, \"v_i4SNM6xSLI8\": {\"duration\": 41.79, \"timestamps\": [[0, 6.89], [8.15, 30.29], [31.55, 41.79]], \"sentences\": [\"A couple of arm wrestlers are on a mat.\", \" They lock arms and push hard.\", \" They keep fighting until one of them wins.\"]}, \"v_esTcWwmykKQ\": {\"duration\": 219.43, \"timestamps\": [[0, 23.04], [23.04, 109.71], [109.71, 131.66], [131.66, 219.43]], \"sentences\": [\"A group of men and women are in a pool playing volleyball without the net.\", \"The man continues holding the ball up talking to the people and then finally throws the ball.\", \"Another standstill takes place and another person swims to the ball but the ball is thrown.\", \"They continue throwing the ball back and forth to one another.\"]}, \"v_WqDep-4l0yc\": {\"duration\": 93.18, \"timestamps\": [[0.93, 52.65], [52.65, 63.36], [63.36, 87.59]], \"sentences\": [\"A man sits in a canoe that is docked in shallow water and talks to a camera with the paddle resting across the boat in front of him as a small black dog in a life jacket walks around the boat.\", \"  The man reaches to pet the dog as the dog walks around and then picks the dog up and holds the dog up by a strap on the top of the life jacket over the water and then sets the dog down back into the boat by the life jacket.\", \"  The man begins to paddle the boat out into the water as the dog watches on from the side of the boat.\"]}, \"v_1B3XsffrM4M\": {\"duration\": 115.5, \"timestamps\": [[0, 9.82], [9.82, 70.45], [70.45, 115.5]], \"sentences\": [\"Three females are dressed in all black in a horizontal line on a red mat.\", \"They then begin to move simultaneously together moving their legs and hands with fans in their right hands.\", \"All of the girls continue to move stealthy doing numerous lunges and acts of a ninja.\"]}, \"v_ynvCxrj1UNg\": {\"duration\": 99.57, \"timestamps\": [[0, 26.39], [26.39, 51.28], [51.28, 82.64], [82.14, 99.57]], \"sentences\": [\"A young girl wearing a purple leotard jumps on a balance beam and begins to do her routine.\", \"In the middle of it,she does a ballerina spin and almost loses her balance but is able to continue standing up.\", \"As she continues,she does more jumps and the judges begin to make marks on their clip boards about her performance.\", \"For her last trick,the does three backwards flips and lands on the floor but begins to stumble as she tries to stick her landing.\"]}, \"v_v3t4Z5cEgZM\": {\"duration\": 51.11, \"timestamps\": [[0, 17.89], [13.8, 51.11]], \"sentences\": [\"A woman is seen smoking a cigarette while nodding and speaking to the camera.\", \" She continues taking puffs off of her cigarette while stroking her hair and occasionally giggling to the camera.\"]}, \"v_hL11sP4Hlrg\": {\"duration\": 117.08, \"timestamps\": [[0, 40.98], [31.61, 89.56], [76.68, 111.22]], \"sentences\": [\"A close up of nails are seen followed by a shot of brushes and nail polish.\", \" A person is then seen wiping polish onto a pad and rubbing the object all over her nails.\", \" She then puts a coating over the nail and shows it off again.\"]}, \"v_bfBTnUiGVUo\": {\"duration\": 69.59, \"timestamps\": [[0, 29.23], [29.23, 62.98], [63.33, 69.59]], \"sentences\": [\"A young boy is standing in front of a sink brushing his teeth and dancing.\", \"After awhile,he stops to spit in the sink and continues to dance.\", \"Finally,the young boy is finished,he spits in the sink again and turns to the camera to smile.\"]}, \"v_WCCkmuFrSQ0\": {\"duration\": 185.85, \"timestamps\": [[0, 41.82], [25.09, 104.08], [60.4, 130.1], [123.59, 185.85]], \"sentences\": [\"The little girl is wearing pink princess costume while the other girl is wearing wonder woman costume.\", \" The girl in pink dress play the hop scotch, pause at the center and continue to hopped back to the start.\", \" The girl in pink dress and the girl in wonder woman costume is fixing the tiles, the girl in dress continue to play, then the girl in wonder woman costume play the hop scotch.\", \" An adult man appeared and joined the girls and play hop scotch.\"]}, \"v_qA_KTu8oTW4\": {\"duration\": 130.96, \"timestamps\": [[0, 28.16], [28.16, 34.05], [34.05, 88.4], [88.4, 113.28], [113.28, 130.31]], \"sentences\": [\"There's a large group of people in a band playing their instruments and dancing.\", \" There's a small group of cheerleaders on the left who are also cheering.\", \" The baton girl begins her routine that includes a lot of twirling and tossing of the baton.\", \" The baton girl picks up 2 more batons and continues her routine while using all 3 batons.\", \" The baton girl drops 1 of the batons and finishes her routine with 2 batons, waves when she's done and bends down to pick up her batons.\"]}, \"v_4OeZViscNp4\": {\"duration\": 109.99000000000001, \"timestamps\": [[2.2, 65.45], [45.65, 100.09]], \"sentences\": [\"A man is seen speaking to the camera while holding up a pair of shoes and leads into him untying the shoes and rubbing a rag along it.\", \" The man continues to wipe down the shoe using various tools and spray and ends by presenting them.\"]}, \"v_RHpigjSwhVM\": {\"duration\": 122.16, \"timestamps\": [[0, 113], [21.99, 112.39], [113.61, 122.16]], \"sentences\": [\"A person is riding a bike over a trail.\", \" They go over several jumps on the trail.\", \" A man takes a drink out of a can while sitting on his bike.\"]}, \"v_4mzM3JjBJ74\": {\"duration\": 166.18, \"timestamps\": [[0, 68.96], [51.51, 166.18]], \"sentences\": [\"A woman with tattoos is seen speaking to the camera while petting a cat and holding up a pair of nail clippers.\", \" The woman then cuts the cat's nails while the cat struggles a bit and holds the cat up in the end.\"]}, \"v__D9oML1HvVw\": {\"duration\": 133.24, \"timestamps\": [[1.33, 5.33], [10.66, 20.65], [21.98, 36.64], [37.31, 104.59], [44.63, 53.96]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy flips off a slack line and lands on his body.\", \"  A man walks on a slack line and falls off.\", \" A person does flips around the slack line.\", \" A male flips off a brown, picnic table.\"]}, \"v_MwQTeFD0OKQ\": {\"duration\": 231.92000000000002, \"timestamps\": [[0, 1.16], [3.48, 51.02], [9.28, 10.44], [17.39, 20.87], [23.19, 26.67], [52.18, 229.6], [149.59, 150.75], [220.32, 221.48], [221.48, 222.64], [222.64, 223.8], [224.96, 226.12], [230.76, 231.92]], \"sentences\": [\"The credits of the clip is shown.\", \" A guy moves in front of weights.\", \" A group of four pose outside.\", \" A man massages a male.\", \" A male smells something in a person hands while someone touches his shoulders.\", \" Guys lift weights and some celebrate.\", \" The audience cheer and applaud.\", \" An male individual carries three females.\", \" An athlete flexes his guns.\", \" A couple dance on stage.\", \" Two men pose outside on snowed grass.\", \" A guy kisses his thigh.\"]}, \"v_gUR1wXosHMo\": {\"duration\": 50.41, \"timestamps\": [[0, 50.41], [18.65, 50.41], [33.02, 44.61]], \"sentences\": [\"A boy enjoys a soda at a restaurant.\", \" The boy taps his bottle of soda.\", \" The boy wipes off his mouth with his shirt sleeve.\"]}, \"v_OPp3DqFq0O0\": {\"duration\": 238.63, \"timestamps\": [[0, 238.63], [7.16, 238.63], [36.99, 238.63], [230.28, 238.63]], \"sentences\": [\"A woman stands in a room.\", \" She is wearing a blue polka dot dress.\", \" She is playing a violin.\", \" She smiles at the end.\"]}, \"v_DgcoDX3HbKY\": {\"duration\": 58.84, \"timestamps\": [[0, 29.13], [29.13, 58.84]], \"sentences\": [\"A large man is seen holding two cooking tools in his hand and spinning around food on a pan.\", \" The person then serves the food onto a plate and passes it onto a person's hand.\"]}, \"v_f_BzYUCp4J0\": {\"duration\": 214.07, \"timestamps\": [[0, 73.85], [80.27, 214.07]], \"sentences\": [\"A leafblower is being used to blow leaves across a yard.\", \" The mower is moved along slowly, blowing the leaves down a hill.\"]}, \"v_hmb86jpgWfE\": {\"duration\": 169.3, \"timestamps\": [[4.23, 31.32], [31.32, 133.74], [135.44, 158.29]], \"sentences\": [\"A woman talks holding an empty cup, and coffee fills in cups.\", \" The woman continues talking while measures off coffee display the time in time in the screen.\", \" Then, appears a picture of a cup of coffee writing \\\"red eye\\\" , after the woman continues talking.\"]}, \"v_R7DhZaY3A08\": {\"duration\": 83.06, \"timestamps\": [[0, 83.06], [0, 81.81], [3.32, 83.06]], \"sentences\": [\"man wearing black shirt is in a courtroom playing raketball.\", \" woman wearing a yellow shirt is on a courtroom playing raketball.\", \" two people are standing on a small court holding tennis rackets and playing raketball.\"]}, \"v_WzDnorAzWVU\": {\"duration\": 154.2, \"timestamps\": [[0, 154.2], [20.82, 39.32], [20.82, 154.2]], \"sentences\": [\"A man stands in front of a canvas holding a paint brush.\", \" He dips the paint brush in a bucket and wipes it off on a towel.\", \" He then continues to clean the brush.\"]}, \"v_xXTfM9xXFQM\": {\"duration\": 152.18, \"timestamps\": [[0, 12.94], [13.7, 32.72], [33.48, 135.44], [136.2, 152.18]], \"sentences\": [\"A man is standing in the middle of the road, wearing stilts.\", \" He walks around, showing how they work.\", \" He then runs down the street, bouncing and springing on the stilts.\", \" He stops and speaks to the camera, smiling.\"]}, \"v_Ti1ZaH0VGfg\": {\"duration\": 81.55, \"timestamps\": [[0, 77.06], [23.65, 26.91], [70.54, 77.47]], \"sentences\": [\"People making a circle play pipes in an event ma.\", \" Persons stand next a drum and other instruments.\", \" A woman takes pictures of people playing pipes.\"]}, \"v_nkrA8sJydF0\": {\"duration\": 216.13, \"timestamps\": [[0, 56.19], [37.82, 142.65], [122.11, 209.65]], \"sentences\": [\"A close up of a machine is shown followed by a man speaking to the camera.\", \" The man uses the tool around a living room while also cleaning out a vent.\", \" He uses the tool more while speaking to the camera as well as taking it apart to show how it works.\"]}, \"v_DFJBJkCR0Bk\": {\"duration\": 89.07, \"timestamps\": [[0, 20.93], [21.82, 63.69], [54.33, 86.4]], \"sentences\": [\"Several people are seen swimming around a pool when a ball comes into frame.\", \" The group of people then throw a ball around the area while a person walks in and out of frame.\", \" The people continue to play with one another while throwing the ball back and fourth.\"]}, \"v_jzCnWUUUviE\": {\"duration\": 15.74, \"timestamps\": [[0, 13.78], [13.7, 15.74], [15.11, 15.74]], \"sentences\": [\"A boy bend to raise a weight until his shoulders to rest, and then raise the weight above his head.\", \" After, the boy left fall the weight to the floor.\", \" A man enters the gym.\"]}, \"v_WPVb8fYLFUM\": {\"duration\": 177.66, \"timestamps\": [[0, 66.62], [66.62, 116.36], [115.48, 177.66]], \"sentences\": [\"A man wearing a chef's hat is seen speaking to the camera and leads into a completed cake made and various ingredients being poured into a bowl.\", \" The man blends all the ingredients together and lays the dough out on a pan and adding more chocolate chips.\", \" A shot of the giant cookie baked is shown and leads into the man holding it in front of the camera and eating it.\"]}, \"v_i0Z8I2WCLNk\": {\"duration\": 190.99, \"timestamps\": [[0, 21.96], [21.96, 82.12], [81.17, 162.34], [152.79, 157.56], [165.2, 190.03], [189.08, 190.99]], \"sentences\": [\"We see a man sitting in a field and touching a pole in the ground.\", \" The man stands up and touches the vines.\", \" The man cuts a few parts of the vine.\", \" The man waves his hands over the vine.\", \" The man stops and talks to the camera.\", \" The screen fades to black.\"]}, \"v_vigHVj40dO4\": {\"duration\": 231.35, \"timestamps\": [[9.25, 104.11], [90.23, 218.63]], \"sentences\": [\"A man is seen pushing a large machine around a wooded area and cutting the grass along the trees.\", \" A video shows how the machine works and leads into a man speaking to the camera and shots of the machine working.\"]}, \"v_EXr5QXCpkYY\": {\"duration\": 234.75, \"timestamps\": [[0, 52.82], [52.82, 80.99], [82.16, 220.67], [220.67, 234.75]], \"sentences\": [\"People are tearing up the carpet in a store of some kind then move the carpet out and paint the floor gray.\", \" The men then add gray carpet to the floor and a man vacuums.\", \" We switch and see them rip up and lay new carpet from another angle.\", \" We see a man vacuuming the new carpet.\"]}, \"v_-MFzpFMdWZs\": {\"duration\": 46.97, \"timestamps\": [[0, 14.8], [14.8, 46.97], [7.99, 15.27]], \"sentences\": [\"A boy shave his right leg with a shaver machine.\", \" Then the boy raises the pants of his left leg and shows both legs while talking.\", \" A person enters in the bedroom.\"]}, \"v_yQ2AirKmnTM\": {\"duration\": 39.56, \"timestamps\": [[0, 7.91], [7.91, 25.71], [25.91, 39.56]], \"sentences\": [\"People drive bumper cars around a bumper car rink in an amusement park.\", \"  A yellow bumper car hits another bumper car.\", \" A red bumper car hits the outer wall and stalls out.\"]}, \"v_Qre7RVxEn78\": {\"duration\": 119.77000000000001, \"timestamps\": [[0, 6.59], [9.58, 23.35], [27.55, 102.4], [104.8, 119.77]], \"sentences\": [\"A man's ear is shown close up.\", \" A man shows the tool he is going to use to pierce his ear.\", \" He inserts the needle, piercing his ear.\", \" He then adds a tube, creating a gauge.\"]}, \"v_x8AR0FD5Jqo\": {\"duration\": 196.26, \"timestamps\": [[0, 31.4], [31.4, 91.26], [91.26, 138.36], [138.36, 196.26]], \"sentences\": [\"Bmx riders are at the gate waiting for it to be brought down to start racing.\", \" Once the gates are down  they are on the move riding through the course.\", \" Group after group starts racing and   moving along really fast.\", \"  The peddle as fast as they can trying to stay ahead of one another.\"]}, \"v_Y0G_wA38HkI\": {\"duration\": 231.29, \"timestamps\": [[0, 3.47], [3.47, 24.29], [25.44, 208.16], [108.71, 117.96], [210.48, 231.29]], \"sentences\": [\"A swirl appears on a black title screen A person is riding a kite surf in the sea.\", \"  We see the man perform a flip with a title screen.\", \" We see the man ride the kitesurf and perform the same flip.\", \" The man performs another flip, the video rewinds, and we see the flip again.\", \" The ending video credits load.\"]}, \"v_Zcq_xLi2NGo\": {\"duration\": 131.29, \"timestamps\": [[0, 131.29], [33.48, 39.39], [63.02, 82.05], [98.46, 112.25], [118.16, 129.32], [129.32, 131.29]], \"sentences\": [\"A sax playing is on a stage playing.\", \"  There is a close up of the hands.\", \" He is dancing as he plays the sax.\", \" There is a band behind him.\", \" The camera does an over head shot.\", \"  The player is finished playing.\"]}, \"v_slHv7r8A4OI\": {\"duration\": 198.09, \"timestamps\": [[0, 29.71], [37.64, 133.71], [136.68, 198.09]], \"sentences\": [\"A group of people are on a snowy mountain top.\", \" They are skiing down the numerous hills together.\", \" We see them flip and turn sharply in the driven snow.\"]}, \"v_jwndE_xn8sA\": {\"duration\": 8.52, \"timestamps\": [[0, 4.69], [4.05, 8.52]], \"sentences\": [\"A man woman with long hair is seen poking at her cheeks and taking a puff out of a hookah.\", \" She then blows smoke rings into the camera and looks down smiling.\"]}, \"v_O-upcCp0jIs\": {\"duration\": 112.08, \"timestamps\": [[0, 20.17], [20.17, 50.44], [50.44, 87.42], [87.42, 112.08]], \"sentences\": [\"A man is inside of a house installing new carpet on the floor.\", \" He is using a measuring stick and some plier to cut off a piece of metal which he then hammers down with nails underneath the carpet.\", \" He rolls in the end of the carpet inside of the metal so it does not show.\", \" Then he gets the hammer again and he hammers down the carpet so that it sticks in place.\"]}, \"v_1hiyhNqakMI\": {\"duration\": 78.95, \"timestamps\": [[0, 17.76], [23.68, 59.21], [50.53, 76.18]], \"sentences\": [\"A bucket is seen sitting in a yard followed by a person moving up and down the yard.\", \" The person uses a tool all along the yard while the camera captures their movements.\", \" They pull out another object after a day and continue moving around the yard.\"]}, \"v_EQMDnhIKU4w\": {\"duration\": 113.25999999999999, \"timestamps\": [[0, 66.82], [48.13, 110.99]], \"sentences\": [\"Two people are seen speaking to the camera while the man pans down to their feet and one throws darts.\", \" The man continuously throws darts while the other speaks to the camera.\"]}, \"v_lM4FQ_FqEhQ\": {\"duration\": 161.87, \"timestamps\": [[0, 27.52], [27.52, 72.84], [72.03, 122.21], [122.21, 161.87]], \"sentences\": [\"At a skating park a older gentlemen talks about skating while he is outside.\", \" He gets on his board and starts to skate all around the park looking pretty hip.\", \" He talks some more and he gets done to do some maintenance on his board or something.\", \" He seems like a young soul trying to stay fit enough to skate.\"]}, \"v_akUXL2VzFEs\": {\"duration\": 56.98, \"timestamps\": [[0, 56.98], [4.56, 56.98], [10.83, 56.98], [16.24, 56.98]], \"sentences\": [\"A man floats down a river.\", \" His feet are propped up.\", \" Several trees line the river.\", \" Two other  people are shown floating as well.\"]}, \"v_2oc0OBWkYfg\": {\"duration\": 43.03, \"timestamps\": [[0.43, 40.66], [4.95, 14.2], [14.41, 30.76], [30.76, 39.37]], \"sentences\": [\"A woman gets her hair brushed combed brushed and styled by an unseen person's hands as a camera catches the process from difference angles.\", \"  A woman, has curlers placed in her hair by a pair of hands holding a comb.\", \"  A pair of hands now brushes the woman's hair to the side and also brushes the ends of the hair.\", \"  The woman's finished hairdo is captured by the camera in still shots at many angles.\"]}, \"v_py26bxAfOEg\": {\"duration\": 227.19, \"timestamps\": [[1.14, 2.27], [3.41, 222.64], [38.62, 43.17], [44.3, 45.44], [49.98, 54.52], [64.75, 70.43], [79.51, 211.28], [110.18, 113.59], [170.39, 191.97]], \"sentences\": [\"The credits of the clip are shown.\", \" People are floating on inflated tires.\", \" A guy swims across the body of water.\", \" A lady puts her hand in front of the camera.\", \" People are standing in a shallow part of the body of water, and a guy falls into the water.\", \" Three people pose on a rock.\", \" People take the inflated tires out of the water.\", \" A woman splashes water on a man floating.\", \" People use a rope to dive into the water.\"]}, \"v_1926p23ooUM\": {\"duration\": 61.26, \"timestamps\": [[0, 61.26], [30.32, 61.26]], \"sentences\": [\"A boy is dribbling a basketball around orange cones.\", \" He shoots and makes a basket several times.\"]}, \"v_OvGxDaayPcw\": {\"duration\": 41.26, \"timestamps\": [[0, 41.26], [0, 18.57], [18.57, 39.41], [39.41, 41.26]], \"sentences\": [\"Two young children are standing in line indoors in what looks like a living room.\", \" The little girl is standing closest to the hopscotch mat and she throws her toy onto the mat and then begins jumping until she meets the end of the mat then turns around and heads back to the point she started and her turn is over.\", \" The little boy goes next and he throws the toy onto the mat and begins jumping to the end of the mat, then turns around and jumps back towards his starting point.\", \"  The little girl steps in front of the boy and gets into motion to start another turn on the hop scotch mat.\"]}, \"v_5I0K3y27EUM\": {\"duration\": 15.02, \"timestamps\": [[0, 10.74], [10.67, 14.5], [14.5, 15.02]], \"sentences\": [\"A man and child are sliding down a slide.\", \"  The both raise their hands in the air.\", \" When they reach the end, the child stands up.\"]}, \"v_bb-DPA34qvw\": {\"duration\": 124.79, \"timestamps\": [[0, 33.07], [32.44, 124.79]], \"sentences\": [\"A young child is seen sitting before a set of drums and smiling into the camera.\", \" She puts her hands up to her mouth and continues playing while pausing every few moments to speak to the camera.\"]}, \"v_VXCV3KUtCdk\": {\"duration\": 236.12, \"timestamps\": [[0, 41.32], [43.68, 103.89], [103.89, 126.33], [129.87, 155.84], [155.84, 236.12]], \"sentences\": [\"A mountain, then a man talks and then put on shoes.\", \" The man claims a mountain only using his fingers, and without carry any safety materials he reaches the top of the mountain.\", \" Then, the man drives a car and arrives to a mountain.\", \" After, the man climbs a mountain carrying a backpack, he arrives a plateau and prepares food to eat.\", \" Next, the man continues climbing the steep mountain until the top of the mountain.\"]}, \"v_hltWAq_Odxk\": {\"duration\": 9.34, \"timestamps\": [[0, 3.97], [2.85, 9.34]], \"sentences\": [\"Two wrestlers are seen holding one another in a ring while a ref stands behind them.\", \" One man picks up the other and throws him onto the ground.\"]}, \"v_6rOmYOU7748\": {\"duration\": 59.49, \"timestamps\": [[0, 9.52], [11.01, 50.27]], \"sentences\": [\"A picture of a red arrow is shown.\", \" A picture of a person kneeling down on a roof holding a nail gun.\"]}, \"v_xIhTY02lRSE\": {\"duration\": 64.02, \"timestamps\": [[0.32, 0.96], [1.6, 35.53], [36.17, 47.69], [48.33, 51.85], [52.49, 56.02], [56.34, 64.02]], \"sentences\": [\"We see a man sitting on a bike in a room.\", \" The man quickly removes the front tire, fixes it and puts it back on the bike.\", \" The man airs up the tire, grabs his tools and puts the cap on.\", \" He stops and gets off the bike.\", \" The people watching him all start to clap.\", \" The man bows, lifts his glasses and starts to walk away.\"]}, \"v_C10_qXWxpsk\": {\"duration\": 73.53999999999999, \"timestamps\": [[0, 38.24], [38.98, 44.12], [44.49, 73.54]], \"sentences\": [\"A young girl wearing a blue ribbon in her hair standing in front of a rock garden demonstrates a gymnastic move called a Power Hurdle.\", \" The young gymnast demonstrates an exercise called a back-bend move.\", \" The young gymnast with the blue ribbon in her hair performs a back walkover and a front walkover and a forward roll.\"]}, \"v_0GWJ-VHFlTk\": {\"duration\": 66.25, \"timestamps\": [[0, 28.15], [28.15, 66.25]], \"sentences\": [\"An intro leads into a basketball player holding a ball and then running up and shooting a basket.\", \" The man continues running back and fourth while shooting the baskets and ends with text across the screen.\"]}, \"v_D4wcmmQsPng\": {\"duration\": 74.44, \"timestamps\": [[0, 74.44], [34.99, 74.44], [44.67, 74.44]], \"sentences\": [\"A kid in a yellow shirt is skating around a hockey rink.\", \" He is holding a hockey stick.\", \" He shoots at the net and scores.\"]}, \"v_xpKAvKrrBDs\": {\"duration\": 153.86, \"timestamps\": [[0, 43.08], [43.85, 61.54], [80.01, 141.55]], \"sentences\": [\"A child is playing on a playground.\", \" He crawls along a blue and red mat.\", \" He walks down a small green slide into a pit of balls.\"]}, \"v_8Ny9NjNpQQA\": {\"duration\": 17.81, \"timestamps\": [[0, 4.81], [4.81, 12.11], [12.11, 17.81]], \"sentences\": [\"A group of people are sitting outside on the bleachers watching a game of water polo.\", \"In the water,two boys begin treading water and staying in the same place.\", \"Finally,the ball is thrown into the goal and the video pans out advertising the URL.\"]}, \"v_8_jbsmj5Z9w\": {\"duration\": 105.0, \"timestamps\": [[0, 14.7], [14.7, 28.35], [28.88, 74.03], [74.55, 105]], \"sentences\": [\"There are two men standing outside talking one is shirtless and he goes to grab some hair clippers.\", \" He stands in front of a mirror and starts to shave his bread off.\", \" He goes over one side of his face and then starts to shave his mustache a little.\", \" Then he returns so shaving his bread, he already looks very different.\"]}, \"v_U0qUFAPUg_Y\": {\"duration\": 193.19, \"timestamps\": [[0, 4.83], [4.83, 72.45], [73.41, 185.46], [78.24, 84.04], [159.38, 175.8], [176.77, 185.46], [185.46, 193.19]], \"sentences\": [\"We see an opening title screen.\", \" We see a series of men run and attempt to pole vault but knock over the pole.\", \" Men pole vault and make it over the pole.\", \" We see the scores on a chain link fence.\", \" A man makes it over the pole and stands up and pumps his fists and we see the scores on the fence.\", \"  A man makes it over the pole and a crowd stands and cheers.\", \" We see a red ending title screen.\"]}, \"v_t7WI6H6UVG4\": {\"duration\": 117.58, \"timestamps\": [[7.64, 19.99], [24.1, 32.33], [45.85, 99.35], [100.53, 115.81]], \"sentences\": [\"A chef adjust the cake pan into place and feels the top of a cake to check firmness.\", \" The chef uses a spatula to spread icing over the cake.\", \" The chef uses a ruler to guide a knife scoring the icing.\", \" The chef cuts the cake along the score lines and the finished cake is seen in pieces.\"]}, \"v_laeOL4ipHck\": {\"duration\": 184.86, \"timestamps\": [[0, 26.8], [30.5, 121.08], [129.4, 184.86]], \"sentences\": [\"A group of girls are on a sandy beach.\", \" They are engaged in a game of volleyball.\", \" They lob the ball back and forth over the net.\"]}, \"v_BzxK6r4UG5k\": {\"duration\": 56.96, \"timestamps\": [[0, 7.4], [7.69, 31.9], [31.33, 56.96]], \"sentences\": [\"A man is putting chalk on his hands.\", \" He walks up to a large weight and picks it up over his head.\", \" He drops the weight and walks away to hug people watching.\"]}, \"v_gYqXtgtyFnY\": {\"duration\": 67.87, \"timestamps\": [[0, 2.38], [2.71, 63.46], [63.8, 67.87]], \"sentences\": [\"A girl's legs and feet are shown wearing untied ballerina shoes.\", \"  The girl bends down and ties the ballerina shoes.\", \" The girl presents her tied ballerina shoes to the camera.\"]}, \"v_rWDMssiL7hE\": {\"duration\": 138.95, \"timestamps\": [[0, 6.95], [6.95, 9.73], [10.42, 46.55], [47.24, 51.41], [52.11, 107.69], [108.38, 133.39], [134.09, 138.95]], \"sentences\": [\"A man suprises a woman in the bathroom while she is brushing her teeth in a bathroom.\", \" A toothbrush appears on screen while brushing a set of false teeth, the words \\\"Modified Bass\\\" are overlaid.\", \" The man talks while the woman brushes her teeth.\", \" The toothbrush returns to brush the false teeth.\", \"  The man continues to talk while the woman brushes her teeth.\", \" A video subscribe screen appears for Coma Niddy.\", \" The white logo \\\"PBS|digital studios\\\" appears on a black screen.\"]}, \"v_0w7cO4tscBc\": {\"duration\": 98.8, \"timestamps\": [[0, 18.77], [18.77, 33.59], [69.65, 98.8]], \"sentences\": [\"We see a lady petting a horse and talking.\", \" She shows a brush and starts brushing the horses mane.\", \" She takes a comb and brush and brushes the horses tail.\"]}, \"v_dRqbDamDLT0\": {\"duration\": 219.48, \"timestamps\": [[0, 219.48], [8.78, 58.16], [82.3, 219.48]], \"sentences\": [\"A man gives a tutorial on how to change a bike tube.\", \"  The wheel is taken off, tire irons are put in, and the tube is removed.\", \"  A new tube is inserted and is pumped up.\"]}, \"v_gbuRv8phs1Y\": {\"duration\": 165.05, \"timestamps\": [[0, 13.2], [15.68, 45.39], [46.21, 111.41], [116.36, 165.05]], \"sentences\": [\"A large waterfall is shown on a rapid river.\", \" A person kayaks down the side of the fall, later being joined by others.\", \" They go speedily through the water, then a woman is shown speaking to the camera.\", \" We then watch several people as they kayak through the turbulent waters.\"]}, \"v_6cPXFUqRB1s\": {\"duration\": 56.19, \"timestamps\": [[0, 18.82], [18.82, 23.32], [22.76, 27.25], [27.25, 30.63], [30.63, 41.86], [42.14, 48.61], [48.33, 56.19]], \"sentences\": [\"A man takes a ball attached to a rope and swings it around his body.\", \" He throws the ball in the air.\", \" It lands on a field and people measure the distance.\", \" The man walks off in the other direction.\", \" It shows a replay of the man throwing the ball.\", \" The man walks over to more people.\", \" The track is shown in full view.\"]}, \"v_MP31A6fHsh4\": {\"duration\": 150.77, \"timestamps\": [[9.8, 19.6], [19.6, 28.65], [89.71, 94.23]], \"sentences\": [\"A man throws a ball down an ice rink.\", \" A man in a red shirt is talking to the camera.\", \" People are scrubbing the ice in front of a ball.\"]}, \"v_4YJ_L7jqgoA\": {\"duration\": 169.11, \"timestamps\": [[0.85, 89.63], [68.49, 164.88]], \"sentences\": [\"An athlete is seen beginning to lift a heavy bar over his shoulders while moving in slow motion.\", \" The man continues to lift the bar over his head while jumping an finally throwing it down in the end.\"]}, \"v_-Jp86pFKlsw\": {\"duration\": 27.61, \"timestamps\": [[0, 27.61], [3.87, 27.61], [5.66, 27.61]], \"sentences\": [\"A woman in a purple shirt is standing in a yard.\", \" There are three dogs in the yard.\", \" The dogs are playing with a frisbee.\"]}, \"v_l3EBfLkfAX8\": {\"duration\": 88.42, \"timestamps\": [[1.33, 87.54], [10.17, 87.54], [27.41, 67.64]], \"sentences\": [\"A video of scissor kick jumping at track is shown.\", \"  A few people take turns at varying heights and all are successful.\", \"  Others are running for other events in the background.\"]}, \"v_2ooY3GqZieg\": {\"duration\": 143.03, \"timestamps\": [[0, 16.45], [17.16, 46.48], [50.77, 109.41], [89.39, 143.03]], \"sentences\": [\"A person is seen sitting on a train with skateboard sitting in their laps and another skateboarder sleeping.\", \" The people walk for a bit and then are seen riding their boards along a city.\", \" The men ride along the city while several people on bikes ride around and the camera pans over people in the city.\", \" More shots of the city are shown as well as a large group of people indoors and outdoors.\"]}, \"v_MSSb3wPd5hM\": {\"duration\": 159.13, \"timestamps\": [[0, 159.13], [7.16, 159.13], [0, 158.33]], \"sentences\": [\"men and women are standing in a dock playing drums.\", \" people in a marching band are standing on an open area playing cymbals and drummers.\", \" people are standing in the background watching the matching band.\"]}, \"v_5SpWmZxECqc\": {\"duration\": 214.29, \"timestamps\": [[2.14, 72.86], [51.43, 155.36], [130.72, 204.64]], \"sentences\": [\"A woman is seen looking at the camera and making various movements while several camera effects are added.\", \" The girl runs product through her hair and leads into her brushing her hair and spraying in more product.\", \" She continues to comb and ends by pointing to the camera and showing off her hair.\"]}, \"v_PxGggNnMGtQ\": {\"duration\": 63.5, \"timestamps\": [[0, 30.48], [26.35, 63.5]], \"sentences\": [\"A man is seen speaking to the camera and begins pouring ice into a glass followed by various alcohols.\", \" He mixes more ingredients into the glass and finishes by putting a straw, cherry, and lemon in the glass, presenting it to the camera.\"]}, \"v_furUOKw0Qzs\": {\"duration\": 137.6, \"timestamps\": [[0, 19.95], [24.08, 72.24], [60.54, 105.27], [91.51, 134.16]], \"sentences\": [\"A man is seen kneeling down before a car tires and pointing to objects.\", \" He then puts a block down next to the tire as well as taking off the hubcap.\", \" The man puts a jack down and unscrews the tire taking it off.\", \" He screws in the new one and puts the hubcap back on.\"]}, \"v_zy7rd78yBnY\": {\"duration\": 209.63, \"timestamps\": [[0, 12.58], [13.63, 124.73], [127.87, 204.39]], \"sentences\": [\"A woman is seated on a work table and holds a paint brush.\", \" The woman paints a picture of long stems and leaves of a plant.\", \" The woman paints flower petals onto the painting.\"]}, \"v_qwxmpiaT-kk\": {\"duration\": 41.05, \"timestamps\": [[0, 14.78], [5.34, 29.97], [25.25, 41.05]], \"sentences\": [\"Two men are sitting at the table with their arms positioned to arm wrestle.\", \" The young men are holding each other's hands as they arm wrestle each other.\", \" The man in white beat the man in black sleeveless shirt.\"]}, \"v_trl-RCWyhb0\": {\"duration\": 58.79, \"timestamps\": [[0, 39.39], [33.81, 58.79]], \"sentences\": [\"An older man wearing glasses and headphones is seen playing a set of bongo drums while closes his eyes to concentrate.\", \" The man plays the instrument continuously and finishes by putting one hand up.\"]}, \"v_l4C-l6XeNRc\": {\"duration\": 238.86, \"timestamps\": [[0, 9.55], [10.75, 13.14], [10.75, 63.3], [54.94, 58.52], [63.3, 121.82], [81.21, 88.38], [96.74, 101.52], [121.82, 171.98], [145.71, 149.29], [171.98, 191.09], [195.87, 228.12], [231.7, 238.86]], \"sentences\": [\"A person takes a key off a wall , gasses and starts a tractor.\", \" A boy in a hat pretends to be a girl.\", \" The first boy rides the tractor while rapping.\", \" The boy almost hits a tree in the tractor.\", \" The boy in orange rides past a kneeling boy.\", \" The boy is doing home work and stands on the tractor.\", \" We see a game screen and toy tractor.\", \" The third boy starts rapping and riding the tractor mower.\", \" The third boy pretends to sleep on the tractor.\", \" The three boys dance around the tractor.\", \" All three boys pause and rap together.\", \"  We see a person in a window.\"]}, \"v_FrkXeG1YoKg\": {\"duration\": 80.11, \"timestamps\": [[0, 31.24], [31.24, 48.47], [48.07, 68.09], [68.49, 76.9], [76.9, 80.11]], \"sentences\": [\"Scenes of various pole vaulters vaulting before audiences are shown.\", \" A slow motion video of one of the vaults is shown.\", \" Another pole vaulter's vault is shown.\", \" The vault is repeated in slow motion.\", \" A still image of the vaulter kneeling next to a scoreboard is shown.\"]}, \"v_fmRio4-6Xqc\": {\"duration\": 10.06, \"timestamps\": [[0, 10.06], [0.05, 10.06], [0.85, 9.05], [6.33, 9.35]], \"sentences\": [\"There are several men dressed in biking gear and helmets participating in a dirt bike competition.\", \" There are several spectators watching the event.\", \" They are driving at high speed on a circular race track.\", \" The bikers take a huge leap and jump over the obstacle and land on the other side of the race track.\"]}, \"v_q8-iXvYyCGg\": {\"duration\": 15.77, \"timestamps\": [[0, 7.49], [8.36, 15.77]], \"sentences\": [\"Three people are seen standing around when one woman does hop scotch followed by another man doing hop scotch.\", \" One last man hopes his way down and the woman takes one more turn.\"]}, \"v_MWnYL4JiMP0\": {\"duration\": 208.4, \"timestamps\": [[0, 7.29], [7.29, 41.68], [41.68, 208.4]], \"sentences\": [\"A large group of women are standing in a dance room with walled mirrors, wooden floors and red words appear on the screen that say \\\"En Sus Marcas Listos Fuera Daddy Yankee\\\".\", \"One woman wearing a pink and black top jumps to the front of the group near the mirror and she quickly begins to dance as the women behind her follow her every move as best as they can.\", \"A new group of women are shown and the same woman is leading but she's now wearing a yellow and black top as she does her routine and when she's done the screen fades to white.\"]}, \"v_mFWRIp164r4\": {\"duration\": 161.45, \"timestamps\": [[1.61, 159.03], [8.07, 38.75], [47.63, 75.88], [76.69, 157.41]], \"sentences\": [\"A group of men in multi colored turbans form two groups at an outdoor event and play a game of tug of war.\", \"  A group of men dressed in blue shirts and blue shorts form a line next to a rope stretched out on the ground.\", \"  Another group of men forms across from them taking the same position next to the rope on the ground.\", \"  The men begin to play tug of war in front of a large group of onlookers on either side.\"]}, \"v_DmAOCYuMgtE\": {\"duration\": 205.01, \"timestamps\": [[1.03, 200.91], [2.05, 32.8], [33.83, 201.93]], \"sentences\": [\"A woman leads an exercise class in an elaborate dance routine.\", \" A woman in a green tank top stands in front of a group of other women and leads them in an elaborate dance routine.\", \" The woman completes dances straight into the camera, at a profile and also uses elaborate arm and leg movements spanning the distance of the floor in the routine.\"]}, \"v_AyicWbHhUWc\": {\"duration\": 54.27, \"timestamps\": [[0, 11.94], [11.94, 24.96], [24.96, 54.27]], \"sentences\": [\"A very thick man walks slowly into a a large room filled with people and he stands in front of a barbell with red and blue weights on both ends.\", \" The man takes a few breaths then reaches down and puts his hands on the barbell.\", \" After a while the man lifts the barbell to he neck, then jumps and bends his legs at the same time putting the barbell above his head, then he throws the barbell to the ground.\"]}, \"v_dfjl7sS1IGo\": {\"duration\": 206.17000000000002, \"timestamps\": [[0, 4.12], [5.15, 127.83], [128.86, 206.17]], \"sentences\": [\"A photo album with the words \\\"Blow Drying My Hair\\\" appear.\", \" A woman shares the steps to properly blow dry your hair, including using tension, and demonstrates.\", \" She finishes by checking and comparing the length of her hair to previous years.\"]}, \"v_w1FFMG52FZE\": {\"duration\": 224.82, \"timestamps\": [[0, 213.58], [213.58, 224.82]], \"sentences\": [\"A woman is hula hooping in front of a swimming pool.\", \" The hula hoops flies away and she walks towards the camera.\"]}, \"v_3La7NPOBVN8\": {\"duration\": 205.59, \"timestamps\": [[0, 17.48], [18.5, 60.65], [72.98, 205.59]], \"sentences\": [\"A woman is talking as she is seated in a room.\", \" She shows off a braid in her hair.\", \" She then demonstrates how to make the braid.\"]}, \"v_QBXswoKU4S4\": {\"duration\": 164.79, \"timestamps\": [[0, 23.89], [23.89, 65.09], [37.08, 110.41], [67.57, 93.93], [114.53, 164.79]], \"sentences\": [\"A player is seen standing ready with another running and throwing the ball.\", \" The ball is hit and another catches the ball and throws it back.\", \" Several more shots of people playing are shown as well a team members watching and laughing on the side.\", \" A player shakes hands with another and shows a slow motion recap of the previous play.\", \" The players all huddle up and speak and shows one walking away followed by several more.\"]}, \"v_Bule85koN3o\": {\"duration\": 48.51, \"timestamps\": [[0, 29.83], [29.83, 44.38]], \"sentences\": [\"An athlete holds a heavy ball, then he spins around and throw the ball.\", \" A person measure the distance or the heavy ball throw.\"]}, \"v_cdufbM2OCwM\": {\"duration\": 100.14, \"timestamps\": [[0, 8.51], [9.01, 15.02], [18.02, 89.62], [91.63, 100.14]], \"sentences\": [\"A close up is shown of an old star wars poster.\", \" A toy is shown, also from the movie.\", \" A young man begins playing the saxophone into a microphone.\", \" When he finishes, he walks away.\"]}, \"v_QryL-hVKAOA\": {\"duration\": 122.74, \"timestamps\": [[0, 19.02], [16.57, 33.75], [31.91, 90.83], [87.76, 122.74]], \"sentences\": [\"The little girl is  putting the spoon on the other side of the sink.\", \" The little girl is brushing the big wooden spoon and put it under the running water and put the wooden spoon on the other side of the sink.\", \" The girl picked up the bottle, rub the sponge on it, then rinse it with water, and put it on the strainer.\", \" The girl picked up the plate and rub the sponge on plate.\"]}, \"v_VlLq4bAHCXI\": {\"duration\": 44.56, \"timestamps\": [[0, 7.8], [7.8, 35.65], [35.65, 44.56]], \"sentences\": [\"These people are outside talking and  walking along the sidewalk.\", \" There are also people running in their short outfits.\", \" There's also people watching them as they run in the middle of the street.\"]}, \"v_ZPVrC5185NM\": {\"duration\": 51.76, \"timestamps\": [[0, 12.42], [14.49, 44.51], [45.03, 51.76]], \"sentences\": [\"A woman is at a park with her toddler.\", \" She pushes the baby back and forth on a swing.\", \" The baby laughs and smiles as she swings.\"]}, \"v_PyPu-6wATfw\": {\"duration\": 169.65, \"timestamps\": [[0, 78.88], [79.73, 137.41], [137.41, 162.01]], \"sentences\": [\"A bartender explains and shows how to prepare exotic alcoholic drinks in glasses using alcohol and juice.\", \" Then, the bartender takes a cup and prepares a cocktail in a shaker, then he pours it in the cup.\", \" After, the bartender pours liquor in a glass and puts straws and pieces of pineapple in the glass.\"]}, \"v_HrKO4BfXVbk\": {\"duration\": 180.42, \"timestamps\": [[0, 92.92], [93.82, 180.42]], \"sentences\": [\"A man is sitting down in a room with a grey back drop and begins talking about the keys on the saxophone he is playing.\", \"The man begins to play and the camera continues to zoom in on his fingers that are playing the bottom keys.\"]}, \"v_JHHHuKeA-WQ\": {\"duration\": 107.6, \"timestamps\": [[0, 13.45], [10.22, 27.44], [13.45, 60.8], [60.8, 66.71], [66.71, 107.6]], \"sentences\": [\"A man spins a blindfold woman holding a stick who is on front a pi\\u00f1ata.\", \" A man takes picture to the blindfold woman.\", \" The girl try to hit the pi\\u00f1ata that is moving around without success.\", \" Unexpectedly, the body of the pi\\u00f1ata falls while the head is still hung.\", \" After, the girl hit the head of the pi\\u00f1ata, then she takes off the cloth on his eyes and hit the pi\\u00f1ata on the floor.\"]}, \"v_vD9oh7NZ2PA\": {\"duration\": 119.42, \"timestamps\": [[0, 51.35], [50.75, 119.42]], \"sentences\": [\"A man is seen speaking to the camera followed by shots of a person riding a kayak as well as sitting on a dock and climbing into a kayak.\", \" He speaks to the camera more, pulls the kayak out of the water, and walks away with it on his head.\"]}, \"v_u5ri43qbi1A\": {\"duration\": 220.85, \"timestamps\": [[0, 56.32], [56.32, 150.17], [150.17, 220.85]], \"sentences\": [\"A man is standing in a kitchen taking with a white box in front of him with a silver doily in front of him.\", \"He then takes out a tablet that has a picture of Pikachu on it and begins decorating the cake with its face.\", \"The cake is finally finished,and the man begins talking and picks up the cake to show the final product.\"]}, \"v_PSh-caJvSHU\": {\"duration\": 194.75, \"timestamps\": [[0.97, 104.19], [72.06, 189.88]], \"sentences\": [\"Several pictures are shown of kids decorating pumpkins that lead into video of a small boy drawing on a pumpkin and a cat sniffing the object.\", \" A man then helps the boy cut out the lines of the pumpkin while he looks excited and ends by showing the inside of the pumpkin as well as in the dark.\"]}, \"v_4o8MaHTb7E4\": {\"duration\": 188.45, \"timestamps\": [[0.94, 51.82], [52.77, 70.67], [70.67, 105.53], [106.48, 187.51], [173.38, 175.26]], \"sentences\": [\"An Athlete competes long jump, first they run fast, skip and jump high in the sand box.\", \" A gymnast runs but he do not jump, only walk in the sand box.\", \" An athlete walks around waiting for an announce.\", \" Then, the athlete jumps happy and raise his hands in sign of victory, he holds a flag and runs while greet people.\", \" Cameramen film the the gymnast that win the competition.\"]}, \"v_esNQZCjMZaM\": {\"duration\": 93.86, \"timestamps\": [[0, 4.22], [12.2, 45.05], [48.34, 78.84], [80.25, 93.86]], \"sentences\": [\"A woman is on a field with an archery set.\", \" She shoots an arrow at a target while other girls watch and wait their turn.\", \" Announcers talk as she gets closer to the bullseye.\", \" She hits very close to the center, and a fellow player gives her a thumbs up.\"]}, \"v_OFKGyZxazQk\": {\"duration\": 168.02, \"timestamps\": [[12.6, 22.68], [22.68, 95.77], [94.09, 168.02]], \"sentences\": [\"A woman is seen hosting a news segment with several bottles of sun screen laid out in front of her.\", \" Various shots shots are shown of people on the beach putting sun screen on and a skin doctor speaking to the camera.\", \" More people are shown on the news segment with the host wearing sun screen and pointing to all the bottles on her table.\"]}, \"v_8r167TmBebg\": {\"duration\": 78.62, \"timestamps\": [[0, 13.76], [13.76, 38.53], [38.53, 78.62]], \"sentences\": [\"Several people walk onto a field where they are preparing for a game of tug of war.\", \" They line up near the rope and begin the competition.\", \" They are tugging back and for until one side eventually wins the game.\"]}, \"v_L36MIRUpcrI\": {\"duration\": 32.44, \"timestamps\": [[0, 16.22], [12.81, 28.55]], \"sentences\": [\"A close up of a weight is shown followed by several clips of people working out intensely.\", \" More clips are shown of people working out and looking into the camera while sweating.\"]}, \"v_xVPTVGpOkGE\": {\"duration\": 29.75, \"timestamps\": [[1.19, 18.89], [13.98, 29.15]], \"sentences\": [\"A man is seen speaking to the camera and walks inbetween a set of uneven bars.\", \" The man then lifts himself up above the bars and then jumps back down.\"]}, \"v_BgAiDS4fF_I\": {\"duration\": 132.6, \"timestamps\": [[0, 58.34], [58.34, 90.83], [90.83, 132.6]], \"sentences\": [\"A man is standing in a room talking.\", \" He lays down on his back and does crunches.\", \" He stands back up and continues talking.\"]}, \"v_Dk3DiAp2yAU\": {\"duration\": 85.1, \"timestamps\": [[0, 85.1], [18.72, 29.79], [29.36, 45.53], [39.15, 85.1], [69.36, 85.1]], \"sentences\": [\"A man in a black shirt stands by a glass door.\", \" He then begins to rub the frame with a blue rag.\", \" As he does this he explains his methods.\", \" Using the same rag he moves to the other pane to clean the frame.\", \"  Finally, he ends by scrubbing the bottom right corner of the door.\"]}, \"v_LCyLWiw7n5Q\": {\"duration\": 116.25999999999999, \"timestamps\": [[0, 42.44], [42.44, 116.26]], \"sentences\": [\"A teenage boy is sitting at a table with his friends and begins sticking his face in his food then they all begin to laugh about it and he gets up.\", \"After,all of the boys at the table do the same thing and begin smashing their face and rubbing ice cream around their face.\"]}, \"v_Iiwz1JtC7rk\": {\"duration\": 106.12, \"timestamps\": [[0, 5.84], [9.02, 38.2], [39.26, 106.12]], \"sentences\": [\"The top of a woman's head is seen.\", \" She is shown getting her hair braided by another woman.\", \" The woman tucks the braid in, showing how she keeps it clipped with bobby pins.\"]}, \"v_8RntjHIwMNo\": {\"duration\": 35.3, \"timestamps\": [[0, 29.82], [10.24, 29.82], [30.71, 35.3]], \"sentences\": [\"People are standing behind large drums.\", \" A man begins playing the drums.\", \" He turns next to him and shakes the hand of a man in a suit.\"]}, \"v_bmWICdhvyJw\": {\"duration\": 74.84, \"timestamps\": [[0, 17.96], [18.71, 60.62], [61.37, 74.84]], \"sentences\": [\"a woman is on a high beam.\", \" She flips forward and backward multiple times as her trainer and other girls watch.\", \" She performs elegantly, jumping into the air and performing flips before dismounting.\"]}, \"v_akwJwcvfjLA\": {\"duration\": 125.57, \"timestamps\": [[1.26, 32.65], [29.51, 95.44], [73.46, 118.04]], \"sentences\": [\"A man is seen speaking to the camera while holding a tennis racket.\", \" The man is then shown in several shots hitting a ball around a closed in area with another person.\", \" The man continues to hit the ball around the room with another person while speaking to the camera.\"]}, \"v_vCAGiXqYXBk\": {\"duration\": 93.67, \"timestamps\": [[0, 54.33], [53.39, 93.67]], \"sentences\": [\"A man is sitting outside of a wall playing what looks like a miniature piano attached to a bag with his case out for money as a crowd of people surround him to watch.\", \"As he plays,a tall man dressed in all blacks then jumps behind him and starts to clap to get some attention.\"]}, \"v_E-M2Cq0RNTs\": {\"duration\": 142.9, \"timestamps\": [[49.3, 54.3], [57.16, 62.87], [64.3, 124.32]], \"sentences\": [\"A man is pouring water into a white bucket.\", \" He sprays water on the car.\", \" He dips a towel into the bucket and starts washing the car.\"]}, \"v_Lomlff9wClo\": {\"duration\": 55.43, \"timestamps\": [[0, 44.06], [42.96, 46.28], [45.17, 55.43]], \"sentences\": [\"A woman is swinging an ax at a tree stump.\", \" She drops the ax on the ground.\", \" She picks it up and continues swinging.\"]}, \"v_J4hnBPgwDlw\": {\"duration\": 191.05, \"timestamps\": [[0, 89.8], [107.95, 191.05]], \"sentences\": [\"A woman is seen speaking to the camera and leads to her holding up mouth wash and then swishing it around her mouth.\", \" She continues swishing it around while closing the cap then spits it out and smiles to the camera.\"]}, \"v_i4yQ54eWfy4\": {\"duration\": 137.37, \"timestamps\": [[0.69, 66.62], [74.87, 132.56]], \"sentences\": [\"A chef is seen speaking to the camera behind a kitchen counter and leads into him cutting up lettuce and pouring ingredients out into a bowl.\", \" The man presents more food items on a plate as well as a bowl sitting next to it.\"]}, \"v_8VPjByN_v9w\": {\"duration\": 99.89, \"timestamps\": [[0, 99.89], [22.98, 39.96], [50.45, 51.94]], \"sentences\": [\"Two men are dancing on a basketball court.\", \" A man does a back flip on a basketball court.\", \" The two men do the splits on the court.\"]}, \"v_eM2miz5uf8Q\": {\"duration\": 76.26, \"timestamps\": [[0, 9.15], [9.15, 22.5], [18.68, 62.15], [62.15, 70.15], [70.15, 76.26]], \"sentences\": [\"A man opens an icy car door and snow falls off.\", \" The man opens and closes the door a couple of times.\", \" The man talks to the camera then scrapes the ice off the drivers side window.\", \" The man turns to the camera for a moment.\", \" The man then cleans the side mirror.\"]}, \"v_x8cuLOUppmU\": {\"duration\": 45.23, \"timestamps\": [[0, 19], [17.87, 45.23]], \"sentences\": [\"A young woman is seen standing behind a netting area with a swing in her hand and moving in slow motion.\", \" She then throws the object around while she spins and finally throw it off into the distance while looking away.\"]}, \"v_sCj-ME5RkLY\": {\"duration\": 71.89, \"timestamps\": [[0, 22.65], [26.6, 71.89]], \"sentences\": [\"A girl is shown playing volleyball on a team in an indoor gym.\", \" The ball is lobbed back and forth over the net multiple times.\"]}, \"v_cyznGwlE9hM\": {\"duration\": 233.78, \"timestamps\": [[5.84, 160.14], [12.86, 160.14], [162.48, 171.83]], \"sentences\": [\"People spin around and throw balls onto a field.\", \" The crowd watches them throw the balls.\", \" A man is laying on his back lifting a large weight over his body.\"]}, \"v_m5PO3T2uGzs\": {\"duration\": 24.01, \"timestamps\": [[0, 24.01], [5.76, 11.88], [12.01, 20.53]], \"sentences\": [\"A man pushes a toddler in a swing.\", \" A boy jumps knelled behind the toddler.\", \" Then, the boy walks and pass on side the toddler.\"]}, \"v_iWSKl7vOd2s\": {\"duration\": 67.45, \"timestamps\": [[0, 21.59], [21.59, 45.19], [45.19, 67.45]], \"sentences\": [\"Several girls are in a classroom dancing and doing ballet.\", \"The instructor then comes to talk briefly before continuing on coaching the girls.\", \"After,the exercises continue and the girls do leaps and jumps in the room before the outside of the dance studio is shown.\"]}, \"v_vc820BteGzY\": {\"duration\": 156.69, \"timestamps\": [[0, 14.89], [10.18, 17.24], [18.02, 81.48], [74.43, 156.69]], \"sentences\": [\"Three kids are at the table, the little girl at the center is mixing the bowl while dancing.\", \" The kids are licking their fingers and spatula.\", \" The girls are adding ingredients in the bowl and then mixing the ingredients at the same time.\", \" The kids wiped the platter, the adult put the batter in the oven and then took it out then the kids added decorations on the cake.\"]}, \"v_rczR9C00KOM\": {\"duration\": 212.79, \"timestamps\": [[0, 27.66], [27.66, 39.37], [40.43, 85.12], [85.12, 124.48], [122.35, 128.74], [128.74, 145.76], [145.76, 157.46], [157.46, 188.32], [188.32, 192.57], [193.64, 204.28]], \"sentences\": [\"A man applies plaster to the ceiling with tools while two others work at other tasks in the background.\", \" A closeup of the ceiling section is shown while the man gets more plaster.\", \" The man continues to apply plaster to the ceiling.\", \" The talks to the camera as he gets more plaster.\", \" The man resumes plastering the ceiling.\", \" One of the other men talk to the man plastering the ceiling.\", \" The first man stops plastering and responds to the second man.\", \" The second man continues to talk to the first man while using a pipe as a penis.\", \" The first man stops plastering and talks to the second man some more.\", \" The first man laughs at the camera while holding the bench he had been standing on.\"]}, \"v_er6fi7nYsuw\": {\"duration\": 16.09, \"timestamps\": [[0, 16.09], [4.91, 16.09], [3.06, 16.09]], \"sentences\": [\"People are playing lacrosse on a field.\", \" A girl in a maroon shirt is hitting the ball with her stick.\", \" Another girl in a yellow shirt is standing on the field.\"]}, \"v_ZJk05q3y5iM\": {\"duration\": 56.36, \"timestamps\": [[0, 17.75], [17.19, 47.34], [48.18, 56.36]], \"sentences\": [\"An African American toddler's right hand is placed on a white rag while another young girl pants her nails with burgundy polish.\", \" The toddler with the brush continues to dip the brush in the pain and paints her friend's nail while laughing.\", \"After, the girl looks to the camera and begins smiling.\"]}, \"v_nEj34gf508E\": {\"duration\": 72.26, \"timestamps\": [[0, 20.59], [20.59, 53.47], [53.47, 72.26]], \"sentences\": [\"An athletic man by the name of DAVID DURANTE chalks his hands, walks toward his ramp, raises his right arm, walks onto the ramp, raises both arms, then jumps onto the double ropes while the person behind him pulls the ramp away as soon as he jumps.\", \"The man then does his double rope routine that includes a lot of handstands, flips, twists and various other tricks.\", \"When the man is done with his routine he does multiple spins and jumps to the side of the ropes, lands on his feet, raises his two arms, claps and turns, raises his two arms again, cheers himself on and walks away while waving and celebrating with high fives and hugs from the people around him.\"]}, \"v_Qnr73D2zIjU\": {\"duration\": 62.69, \"timestamps\": [[0, 28.53], [0, 62.69], [23.51, 62.69]], \"sentences\": [\"men are fighting bulls on a field.\", \" people are sitting around the court watching the bullfighter.\", \" two bulls are running in a green court.\"]}, \"v_eMI2x3HFozQ\": {\"duration\": 40.98, \"timestamps\": [[0, 27.25], [27.25, 28.89], [28.69, 31.76], [31.76, 40.98]], \"sentences\": [\"A small child and a large man arm wrestle in front of a crowd.\", \" The small child beats the man.\", \" The man throws a fit.\", \" The audience cheers the small child.\"]}, \"v_6LLDsbc8XMM\": {\"duration\": 101.22, \"timestamps\": [[0, 38.46], [34.92, 101.22]], \"sentences\": [\"The video leads into clips of two people performing martial arts to one another while a group of people watch and clap.\", \" The men continue spinning around one another and ends with a picture and a man walking away.\"]}, \"v_vL8s-b4eJiU\": {\"duration\": 192.29, \"timestamps\": [[0, 192.29], [7.69, 21.15], [21.15, 188.44]], \"sentences\": [\"This video shows viewers how to apply self stick wallpaper.\", \" First he applies the wallpaper and explains how to cut it properly.\", \" Then he gives other helpful tips of how to put the wallpaper onto the wall and he smoothens it out.\"]}, \"v_uevUOX7Wpz4\": {\"duration\": 38.35, \"timestamps\": [[0, 37.77], [8.82, 12.27]], \"sentences\": [\"A man and a woman sail in a boat down the river while moving the oars.\", \" People in boats are on more calm waters.\"]}, \"v_30Yk_1Yc7Vk\": {\"duration\": 57.47, \"timestamps\": [[0, 4.6], [4.6, 12.36], [20.98, 57.47]], \"sentences\": [\"A man is seated in a barber chair.\", \" He is wearing a cape and looking into a mirror.\", \" A woman is styling and cutting his hair.\"]}, \"v_mDaZqz7lB0o\": {\"duration\": 221.36, \"timestamps\": [[0, 29.88], [30.99, 125.07], [125.07, 193.69], [194.79, 221.36]], \"sentences\": [\"An intro of what seems to be an Indian man is shown and documenting his everyday life.\", \"The man is then shown playing on a small organ with a microphone attached to it.\", \"The camera then moves to capture the vacancy of the room and the man is shown playing the flute.\", \"After,the intro video is played again and the credits begin to roll.\"]}, \"v_sZRUTtoxY_s\": {\"duration\": 45.47, \"timestamps\": [[0.91, 27.28], [22.73, 43.87]], \"sentences\": [\"A man is seen speaking to the camera and leads into him punching and kicking a boxing bag.\", \" The man continues hitting the bag with his hands and feet while the camera still watches him.\"]}, \"v_GSFyEkGCUVo\": {\"duration\": 181.72, \"timestamps\": [[0, 23.62], [23.62, 84.5], [84.5, 137.2], [137.2, 181.72]], \"sentences\": [\"This woman is twirling her baton and doing cartwheels and such, trying to persuade how baton is a sport.\", \" They give plenty of reasons why they consider baton to be a sport.\", \" Women and men can do it, they can practice in the streets, they can perform for judges and as duet.\", \" One woman even handles her batons while they are on fire, its very impressive.\"]}, \"v_zpBZ7HMNO34\": {\"duration\": 123.53, \"timestamps\": [[0, 61.15], [65.47, 123.53]], \"sentences\": [\"A woman is riding on an eliiptical as advertisements for the equipment flash across the screen.\", \" She uses the trainer from multiple angels, pushing and pulling while pedaling.\"]}, \"v_j1XZ3FA8EYY\": {\"duration\": 199.34, \"timestamps\": [[0, 85.72], [87.71, 199.34]], \"sentences\": [\"The video starts out with several different soccer players showing highlights of incredible goals they've made.\", \" The video continues with several more amazing soccer moves being shown with players high fiving and cheering in the end.\"]}, \"v_MVzypK0eMKc\": {\"duration\": 126.06, \"timestamps\": [[0, 27.1], [34.67, 88.87], [88.87, 123.54]], \"sentences\": [\"A young man is seen speaking to the camera and begins putting ingredients into a blender.\", \" He blends them up together and takes a drink afterwards.\", \" He shows off the drink and speaks to the camera.\"]}, \"v_H1bmoIihWwo\": {\"duration\": 54.1, \"timestamps\": [[0, 27.32], [27.32, 43.55], [43.82, 54.1]], \"sentences\": [\"A young girl climbs a tall diving board and adjusts it.\", \"  She then dives backwards into the indoor pool.\", \" Judges score her performance from the sidelines.\"]}, \"v_Keuj_3QyLq0\": {\"duration\": 8.99, \"timestamps\": [[0, 2.52], [2.2, 8.99], [4.94, 8.22]], \"sentences\": [\"Words come on the screen before the video.\", \" Action figures are shown on a table.\", \" One of the actin figures is knocked down.\"]}, \"v_huUb8mM5fv4\": {\"duration\": 29.65, \"timestamps\": [[0, 1.78], [10.38, 25.95], [25.95, 29.65]], \"sentences\": [\"A person puts their finger in front of the camera and there are people walking around.\", \" Then someone runs on the track and jumps towards the end into the sand.\", \"  Then they stop and people are shown sitting in the grass talking to each other and doing other things.\"]}, \"v_gA0m7YUH408\": {\"duration\": 11.05, \"timestamps\": [[0, 1.82], [1.88, 4.14], [4.2, 11.05]], \"sentences\": [\"A young man is standing bent over on a grassy field.\", \" The man hits a croquet ball with a mallet and it strikes a wooden stick.\", \" The man celebrates by repeatedly raising his hands in victory.\"]}, \"v_tBFX7g605Go\": {\"duration\": 146.66, \"timestamps\": [[0, 61.6], [61.6, 70.4], [70.4, 80.66], [80.66, 140.79], [140.79, 146.66]], \"sentences\": [\"A brown rabbit with a white belly is sitting on the ground and grooming itself while licking its right side.\", \" When the rabbit stops licking its right side it briefly faces forward and its left back foot scratches its left ear then he licks his left paw.\", \" The rabbit then lifts its right paw and scratches his right ear and then licks that paw.\", \" The rabbit then begins to take its front paws and starts rubbing it's face and ears and licking its front paws over and over.\", \" Finally the rabbit is done grooming itself and it just sits still.\"]}, \"v_v7OluHKECRA\": {\"duration\": 120.65, \"timestamps\": [[0, 12.67], [11.46, 25.94], [24.73, 79.03], [65.15, 79.03]], \"sentences\": [\"Butter is blended in a bowl.\", \" Sugar is added to the bowl.\", \" Chocolate is added to the mix.\", \" A liquid is also added to it.\"]}, \"v_kNUpypAppjk\": {\"duration\": 46.53, \"timestamps\": [[0, 8.38], [6.28, 45.14]], \"sentences\": [\"A man wearing black shirt and gray pants is in the gym carrying a barbel with two 15 lbs.\", \" black metal plates, he lifted the barbel then carried up all the way over his head.\"]}, \"v_LAicExwwM54\": {\"duration\": 212.86, \"timestamps\": [[0, 44.7], [44.7, 98.98], [98.98, 155.39], [155.39, 212.86]], \"sentences\": [\"A man is on top of the roof talking about how to work up there using certain tools and putting them under the shingles.\", \" He was able to get one out from underneath and then begins to press down on some metal.\", \" He gets a hammer and begins to nail it in place and then he cuts off the excess.\", \"He lays down a new shingle to replace it over the metal piece he previously nailed in.\"]}, \"v_DP9hfhq8sro\": {\"duration\": 18.72, \"timestamps\": [[3.18, 15.91], [6.83, 15.91], [11.98, 13.94]], \"sentences\": [\"A foosball table is on a tiled floor.\", \" People are playing foosball indoors.\", \" The ball is knocked in a the goal on a foosball table.\"]}, \"v_s0N0PzdwVik\": {\"duration\": 42.7, \"timestamps\": [[0, 36.08], [5.98, 8.33], [21.14, 23.06], [35.87, 42.7]], \"sentences\": [\" A man in a kilt walks across a stage playing the bagpipe.\", \" The man on the stage stomps his feet.\", \" The camera zooms in on the man playing on the stage.\", \" The man finishes and raises his hand in the air and walks off the stage.\"]}, \"v_Rho3u46ZIEE\": {\"duration\": 40.59, \"timestamps\": [[0, 2.03], [2.03, 39.17], [39.17, 40.59]], \"sentences\": [\"A woman is standing outdoors with an accordion keyboard and pushes her sunglasses up.\", \" The woman then begins to play the accordion while swaying back and forth while an older man with a cigarette in his mouth is standing close to her watching and smiling.\", \"The woman stops playing, laughs and looks down.\"]}, \"v_AcLZk6JyXUM\": {\"duration\": 225.75, \"timestamps\": [[0, 20.32], [15.8, 44.02], [41.76, 220.1]], \"sentences\": [\"A man is seen standing in front of a group of people.\", \" The man then conducts the choir to sing together.\", \" The group continues to sing with one another while others watch on the side.\"]}, \"v_M0sa3xWhFGo\": {\"duration\": 230.02, \"timestamps\": [[0, 230.02], [16.1, 151.81], [167.91, 204.72], [203.57, 230.02]], \"sentences\": [\"A cheerleading team in teal, navy and white dance around a field in front of several girls and red and in pink tank tops.\", \"  After milling around for a few minutes in a couple of clusters and talking with each other, they get into formation and do some of their routines.\", \"  They seem to end with their impressive human pyramid, several girls on top of each other's shoulders.\", \"  They hug and congratulate each other on a job well-done and acknowledge the girls seated waiting in their tank tops, and seem to get into another formation.\"]}, \"v_CMTiL1ctmDs\": {\"duration\": 46.44, \"timestamps\": [[0, 32.51], [7.89, 40.87], [42.03, 44.81]], \"sentences\": [\"A young man sucks smoke through a hookah pipe.\", \" The boy blows smoke rings through the air.\", \" The man sucks back in the smoke ring floating in the air.\"]}, \"v_sR3_5j8pUdI\": {\"duration\": 84.48, \"timestamps\": [[0, 9.29], [8.87, 70.96], [15.21, 36.32], [36.32, 38.44], [43.5, 54.06], [55.33, 60.4], [72.23, 76.45]], \"sentences\": [\"We see a rowing machine in a exercise room.\", \" A lady sits on the seat and pulls the cord of the rowing machine.\", \" We are shown the components of the machine.\", \" A lady grabs the handle bar of the machine.\", \"  We see a lady push buttons on  the display of the machine.\", \" A lady adjusts he paddle and straps her foot in.\", \" We see a lady put the machine away.\"]}, \"v_wONwHYy59Tc\": {\"duration\": 191.12, \"timestamps\": [[0, 19.11], [20.07, 92.7], [92.7, 172.01], [172.01, 191.12]], \"sentences\": [\"A woman with long curly hair speaks to the camera, she has a large red hairdryer with an attachment.\", \" She examines the parts of the dryer and shows off hair product.\", \" She uses it to dry her hair followed by a comb and shake.\", \" Credits and social media links end the video.\"]}, \"v_cdpPn-7R3GQ\": {\"duration\": 237.17000000000002, \"timestamps\": [[0, 15.42], [24.9, 90.12], [92.5, 196.85], [198.04, 237.17]], \"sentences\": [\"A group of balls are on a pool table being shot.\", \" Two men are shown playing a game of pool, then standing and talking with their sticks and drinking an energy drink.\", \" The man is shown interviewing numerous different people while talking about the drink.\", \" He wins a final game, his opponent in a neck brace.\"]}, \"v_zmmiX3_TJ84\": {\"duration\": 210.61, \"timestamps\": [[0, 4.21], [4.21, 203.23], [82.14, 97.93], [145.32, 162.17], [203.23, 210.61]], \"sentences\": [\"We see a colorful title shot.\", \" We see people in a gymnasium doing dance aerobics.\", \" The people kick their legs back and forth.\", \" The people perform the kicks again.\", \" We see the closing title on two screens.\"]}, \"v_iUVz4A5oblQ\": {\"duration\": 203.22, \"timestamps\": [[0, 55.89], [40.64, 103.64], [83.32, 163.59], [164.61, 197.13]], \"sentences\": [\"A camera pans around a wooden floor and shows a person walking downstairs.\", \" The person runs their hands along a carpet and pushes it along the floor.\", \" The man nails down the carpet while still pushing it down and cutting the sides.\", \" The man shows off the finished carpet in the end.\"]}, \"v_skIP_U4EYDQ\": {\"duration\": 17.86, \"timestamps\": [[0, 9.55], [9.64, 17.86]], \"sentences\": [\"A young Asian girl is kneeling down in the sand packing it with her hand into the container.\", \"She then flips her toy over and makes a sand castle.\"]}, \"v_HMIv7qpDmH0\": {\"duration\": 37.63, \"timestamps\": [[0.38, 10.72], [9.22, 27.66], [25.59, 37.63]], \"sentences\": [\"A woman is seen standing in front of a camera holding onto a rubix cube.\", \" She begins attempting to solve the puzzle by moving her hands around.\", \" She finishes the rubix cube and presents it to the camera.\"]}, \"v_N9xp9VbpklQ\": {\"duration\": 23.78, \"timestamps\": [[0, 1.19], [8.2, 20.92], [21.88, 23.78]], \"sentences\": [\"A boy walks backwards on the lawn.\", \" The boy picks up the croquet stick and makes his shot.\", \" The boy smiles and heads towards the ball.\"]}, \"v_vdq_xoRyxCU\": {\"duration\": 70.75, \"timestamps\": [[1.06, 6.37], [7.43, 12.38], [12.74, 16.63], [16.98, 21.23], [21.58, 65.8], [66.15, 70.4]], \"sentences\": [\"The credits of the clip are shown.\", \" In a black and white, people are climbing the snow and pulling snow sleds.\", \" In a black and white, people walk down a tunnel.\", \" In a black and white, people ride an escalator with inflated tires.\", \" Individuals slide down the snow with inflated tires.\", \" The credits of the video are shown.\"]}, \"v_RjZ7jJBE1Qw\": {\"duration\": 123.42, \"timestamps\": [[0.62, 45.05], [45.66, 57.39], [57.39, 93.8], [94.41, 101.82]], \"sentences\": [\"A young man talks next a small tree in a squatting position.\", \" A man stands on back a toddler on the border of a swimming pool.\", \" Then, the man raise the toddler by the hands and throw her to the water.\", \" The toddler swims in the swimming poll, then she each a woman who hugs the toddler.\"]}, \"v_kj8L5yu-fGs\": {\"duration\": 229.48, \"timestamps\": [[0, 57.37], [57.37, 111.3], [111.3, 170.96], [170.96, 229.48]], \"sentences\": [\"A woman is outside of what looks to be a restaurant cutting up something into small chunks on a white cutting board.\", \"Once finished,the bowl is placed over and it and the glad begins to cut onions and green peppers in the bowl.\", \"Someone has given her a phone and the lady is talking on the phone while placing the contents in the bowl.\", \"Finally,the woman puts all of the ingredients in a cup and serves it to the person standing at the counter.\"]}, \"v_Mz-yz0fQ_Hk\": {\"duration\": 101.66, \"timestamps\": [[6.61, 8.13], [8.64, 14.23], [14.74, 20.33], [20.84, 26.43], [26.94, 30.5], [31.51, 58.45], [58.45, 68.62], [69.13, 76.75], [77.26, 87.43]], \"sentences\": [\"A woman sits in her blue boat.\", \" The woman tugs on a rope.\", \" The woman begins accelerating her boat through the waters.\", \" Again, the woman tugs on the rope.\", \" The woman accelerates her little boat on the waters.\", \" The woman demonstrates tugging on the rope again.\", \" The woman accelerates her boat.\", \" For a final time, the woman tugs on the rope in her boat.\", \" The woman accelerates her boat one last time.\"]}, \"v_AdP2aMo6OgY\": {\"duration\": 49.53, \"timestamps\": [[0, 14.12], [14.12, 25.51], [25.76, 49.53]], \"sentences\": [\"A woman jumps on the diving board and spins four times in the air, then dive in the water.\", \" Then, the woman runs and spins four times, and dive in the water.\", \" After, the woman stands backwards and stand on her hands and then spins four times.\"]}, \"v_5Q_FrGFVGNY\": {\"duration\": 143.23, \"timestamps\": [[0, 50.13], [50.85, 131.06], [132.49, 143.23]], \"sentences\": [\"A man and woman are spinning as they dance in a living room.\", \" They take turns, dancing in circles and spinning.\", \" They come to a stop and laugh.\"]}, \"v_fh68-PXZ9Oo\": {\"duration\": 93.35, \"timestamps\": [[0.47, 20.07], [20.07, 62.54], [62.07, 92.41]], \"sentences\": [\"A man is seen standing in a field throwing a frisbee around with a dog.\", \" The man does jumps and flips with the dog while still throwing the frisbee.\", \" The man continues to throw the object around with the dog jumping on him in the end.\"]}, \"v_WFL8DhccHr0\": {\"duration\": 237.32999999999998, \"timestamps\": [[0, 34.41], [34.41, 180.37], [180.37, 237.33]], \"sentences\": [\"ingredients are shown on top of table with bowls.\", \" cake mix in bowl with water and oil and eggs and is mixed till moistened and is divided in bowls and poured into pan and in the oven.\", \" when is ready is combined with frost and candies on top.\"]}, \"v_7H5oYHs7EJw\": {\"duration\": 146.64, \"timestamps\": [[0, 31.53], [31.53, 71.12], [71.12, 101.91], [101.91, 146.64]], \"sentences\": [\"A man in snow gear comes walking up and puts his skis on to go skiing down the snow.\", \" He starts, holding a ticker in one hand and bringing his body down so that he picks up more speed.\", \" Once he's going fast enough he stands up and then squats again, he seems to have a technique that works for him.\", \" He continues down the snowy slope skiing on his own.\"]}, \"v_KhAtzEJxz9M\": {\"duration\": 203.59, \"timestamps\": [[0, 203.59], [0, 10.18], [10.18, 200.54], [201.56, 203.59]], \"sentences\": [\"A dance team dressed in black with pink letters shows a routine put to reggae music.\", \"  The women jump bounce in place before the lyrics of the song starts.\", \"  When the lyrics start they go into an intricate dance routine that fits with the song.\", \"   After the song is over the group of winded ladies disbands from the formation.\"]}, \"v_jVC3DZdphYM\": {\"duration\": 167.3, \"timestamps\": [[0, 166.46], [1.67, 3.35], [3.35, 81.14], [81.98, 104.56], [104.56, 138.86], [140.53, 166.46]], \"sentences\": [\"A man demonstrates, in a living room setting, how to play the harmonica.\", \"  A man holds a harmonica up to the camera in a close up shot and then begins to play using both hands to cover the harmonica while he plays.\", \"  The man continues to play the harmonica, moving back and forth and side to side and emoting with his eyebrows while playing.\", \"  The man stops playing and begins to talk to the camera using hand gestures to point to the harmonica, at times.\", \"  The man then begins playing again using his hands to indicate the type of note he is hitting.\", \"  The man then begins playing again before stopping and talking to the camera one last time.\"]}, \"v_SMNXIkCGh_0\": {\"duration\": 40.13, \"timestamps\": [[0, 25.28], [23.87, 40.13]], \"sentences\": [\"A camera shows a rough lake and landscapes as well as people off in the distance and a man giving the camera a thumbs up.\", \" The camera zooms in on people riding along in tubes.\"]}, \"v_Dydb923dXss\": {\"duration\": 148.96, \"timestamps\": [[0, 36.49], [30.54, 120.66], [110.97, 148.96]], \"sentences\": [\"A woman is scuba diving under the blue water.\", \" Colorful corals and school of fish are being shown.\", \" The scuba divers continue to swim as the view of colorful corals are being shown.\"]}, \"v_OMRu1rPRBHo\": {\"duration\": 238.4, \"timestamps\": [[0, 238.4], [73.9, 139.46], [157.34, 164.5]], \"sentences\": [\"People are walking around on the snow.\", \" People are going down the hill of snow in tubes.\", \" People are coming up the hill attached to a rope.\"]}, \"v_0ZHZ1ZqmT7s\": {\"duration\": 10.5, \"timestamps\": [[0.05, 5.25], [5.25, 9.92]], \"sentences\": [\"A man is seen playing a guitar while another man cuts the hair of a boy behind him.\", \" The man continues playing as another man brushes a comb through the boy's hair.\"]}, \"v_ywSeEtroEXo\": {\"duration\": 207.36, \"timestamps\": [[0, 32.14], [34.21, 119.23], [98.49, 199.06]], \"sentences\": [\"A person is seen riding down a hill on a skateboard with another person following behind.\", \" More clips are shown of people riding down a hill on skateboards as well as luging with others.\", \" More clips are shown of people riding down as well as wiping out afterwards and the camera capturing their movements.\"]}, \"v_biyf6Q-xF0M\": {\"duration\": 166.32999999999998, \"timestamps\": [[0, 13.31], [15.8, 59.05], [59.88, 96.47], [104.78, 125.58], [133.06, 166.33]], \"sentences\": [\"A dawn scene is shown as two people walk down the road.\", \" There is a building made of bricks, and a man with an array of predecorated pumpkins.\", \" He talks to the camera, then is shown handing and stacking the pumpkins for the public.\", \" A woman talks about him as he carves the pumpkins and people watch.\", \"At the end, a pumpkin with the words we miss you edgar are shown, indicating the man had passed away.\"]}, \"v_Ff8QLpH5T1c\": {\"duration\": 217.86, \"timestamps\": [[0, 18.52], [20.7, 43.57], [46.84, 161.22], [163.4, 217.86]], \"sentences\": [\"An underside of a canoe and paddle is shown.\", \" A man is paddling the canoe down a river.\", \" He talks as he canoes, pulling it through shallow areas of water and rocks before getting back in.\", \" The man drinks and eats in the canoe, then continues down river.\"]}, \"v_KRES3eBM2l4\": {\"duration\": 40.71, \"timestamps\": [[0.41, 8.14], [6.72, 29.51], [29.1, 38.87]], \"sentences\": [\"A person is seen with a dog in a large open field.\", \" The person throws a frisbee off in the distance and the dog chases after it.\", \" In the end the camera falls over ad he walks over to grab it.\"]}, \"v_Fok7z0mLNbU\": {\"duration\": 112.7, \"timestamps\": [[0, 51.28], [49.59, 112.7]], \"sentences\": [\"Various clips of girls performing dance moves are shown on a large dance floor with a small group of judges sitting behind a table watching them.\", \" The girls continue spinning on the floor and leads into them performing moves at a barre and a man instructing them on the side.\"]}, \"v_fO8b3U8fuGo\": {\"duration\": 18.07, \"timestamps\": [[0, 3.52], [3.16, 13.64], [13.64, 18.07]], \"sentences\": [\"A young woman in a black shirt and jean pants is sitting on the back of a grey horse with a long grey mane in the middle of a large grassy field with hills behind them.\", \"The horse begins to trot and then slows down a little bit and starts smiling as she steers the horse in a circle.\", \"As they return to their original spot,you can see the water washing up against the land and they continue back up the hill.\"]}, \"v_6f1HnAlpphA\": {\"duration\": 31.6, \"timestamps\": [[0, 10.11], [11.54, 18.49], [22.75, 25.28], [23.86, 26.7], [27.97, 30.97]], \"sentences\": [\"A guy leaves a crowd, chases after a black cattle, lassoes the cattle.\", \" The guy gets of his horse and ties the cattle's legs.\", \" The guy gets on his horse.\", \" A man on a dark horse rides past the cattle.\", \" The cattle tries to raise.\"]}, \"v_pbz8c7TAlDs\": {\"duration\": 45.5, \"timestamps\": [[0, 39.59], [23.43, 24.8], [40.04, 45.5]], \"sentences\": [\"A guy carries a child on an inflated tire, and they ride the rocky body of water.\", \" The child falls into the water but gets back on the guy's lap.\", \" The inflated tire turns over and both enter the body of water.\"]}, \"v_u8ykXBc2Efs\": {\"duration\": 104.85, \"timestamps\": [[0, 104.85], [19.92, 35.65], [36.17, 59.77], [58.19, 61.86], [80.74, 104.85]], \"sentences\": [\"A young girl and boy are washing dishes in a kitchen.\", \" The camera moves to in front of the kids and their mom enters the room.\", \" The mom adds something to the fridge and puts something in a cabinet.\", \" The mother leaves the room.\", \" the mother enters and adds some dishes from the rack back into the sink to be rinsed again and shows the boy what was wrong with the pot.\"]}, \"v_cyhWzLsM29E\": {\"duration\": 171.53, \"timestamps\": [[0, 31.73], [32.59, 90.91], [92.62, 171.53]], \"sentences\": [\"A woman puts a cookie in her mouth, then ingredients to make cookies are display on a table.\", \" The woman crush dates in a blender, then adds wet ingredients and oil and mix.\", \" Then, the woman takes out the dough and makes dough balls and puts chocolate chips inside.\"]}, \"v_64UBH371Jj8\": {\"duration\": 54.06, \"timestamps\": [[0, 54.06], [4.32, 7.3], [11.89, 22.97], [24.6, 26.49], [42.43, 51.62]], \"sentences\": [\"A lady is washing dishes in a kitchen.\", \" The camera moves to her right side.\", \" A man plays with her hair.\", \" The man touches her arm.\", \" The camera blurs on the girls face.\"]}, \"v_sRol1BJ9EUk\": {\"duration\": 13.54, \"timestamps\": [[0, 8.66], [8.66, 13.54]], \"sentences\": [\"A man practice basketball dribbling behind chairs.\", \" Then, the man advance with the ball and shoot it in the basket.\"]}, \"v_MR0vMF_5hp8\": {\"duration\": 118.61, \"timestamps\": [[0, 118.61], [43.29, 51], [63.46, 118.61], [107.93, 118.61]], \"sentences\": [\"We see a person scraping ice off their windshield with the camera inside the car.\", \" A person makes a hand sign to the woman scraping the ice.\", \" The lady switches to the other side of the car.\", \" We see the man's face as he sits in the car.\"]}, \"v_OuEQLjwBIPI\": {\"duration\": 34.32, \"timestamps\": [[0, 3.43], [3.43, 17.5], [17.5, 24.54], [24.54, 34.32]], \"sentences\": [\"A man in a green outfit, wearing white gloves and a green hat is bending over with his hands on his thighs while a website is displayed on the bottom of the screen.\", \"The man stands up and other men appear talking to him or are near him.\", \"The men are positioned on the field and a man hits a ball and and all the men start running on the field.\", \"The man who just hit the ball begins to cheer and jump up and down multiple times then walks away.\"]}, \"v_e6mpdQ3BFhA\": {\"duration\": 175.27, \"timestamps\": [[8.76, 56.08], [56.08, 70.98], [72.73, 118.3], [120.06, 129.7], [129.7, 131.45], [132.33, 162.12]], \"sentences\": [\"A woman exercise on elliptical machines that are comfortable.\", \" A woman holds the large ergonomic handles and then the small handles while pedaling.\", \" The elliptical machine has a board to program the exercises.\", \" Then, a man moves an elliptical machine, and an old woman fix the top of the woman.\", \" A man takes a picture.\", \" The woman continues pedaling the bike.\"]}, \"v_t2DdSm_MGXo\": {\"duration\": 88.63, \"timestamps\": [[0, 9.75], [9.75, 23.93], [23.93, 78.44], [79.77, 88.63]], \"sentences\": [\"The howcast logo appears and the title of the video, how to clean the bathroom sink and the dirty sink is shown.\", \" The items that are needed to wash the sink was listed and individually put in the sink.\", \" The cleaning starts with the step by step procedure and tips on how to clean the sink.\", \" An information showing how many bathrooms a certain mansion has and ended on howcast logo.\"]}, \"v_Ttx3kt2fW1o\": {\"duration\": 39.24, \"timestamps\": [[0, 39.24], [1.77, 39.24], [6.87, 39.24], [9.22, 39.24]], \"sentences\": [\"Several people are on bikes in a room.\", \" They all peddle in place.\", \" The camera pans back and forth between them.\", \" They keep peddling the whole time.\"]}, \"v_b4b6YkxsHk4\": {\"duration\": 7.94, \"timestamps\": [[0, 2.58], [2.62, 4.29], [4.09, 4.88], [6.63, 7.94]], \"sentences\": [\"We see a girl walking slowly with a shuffleboard pole and pushing a puck.\", \" the lady gets to the blue line and pushes the puck.\", \" the puck flips and sticks instead of sliding.\", \" the lady turns and walks away.\"]}, \"v_sARnRvNdl-Y\": {\"duration\": 126.22, \"timestamps\": [[0, 19.56], [22.09, 100.35], [101.61, 126.22]], \"sentences\": [\"A man is wearing headphones while seated with a guitar.\", \" He is playing the guitar through a microphone located in front of him.\", \" He rocks the guitar back and forth and looks at the camera, smiling as he finishes.\"]}, \"v_iJqLgrShN-w\": {\"duration\": 211.05, \"timestamps\": [[0, 47.49], [47.49, 105.52], [105.52, 155.12], [155.12, 211.05]], \"sentences\": [\"A man is skiing down some snow at a very fast speed.\", \" Snow is building up all over his face, it looks extremely cold.\", \"  He kind of almost falls down but continues moving.\", \" He is skiing fast through trees, passing by other skiers, he continues to go so fast.\"]}, \"v_mUyMYnGXKgk\": {\"duration\": 55.75, \"timestamps\": [[0, 31.5], [21.74, 55.75]], \"sentences\": [\"A layup and passing drill is something that is done.\", \"  The girls then do the passing and laying up.\"]}, \"v_jpclX7wgcZU\": {\"duration\": 32.21, \"timestamps\": [[0, 15.3], [10.47, 31.72]], \"sentences\": [\"A man is seen sitting in a tube drinking a beer while the camera pans around him and another sitting in a tube.\", \" A cooler is seen sitting in the middle as the man continues speaking and the camera pans around the water.\"]}, \"v__uOfIm1tFcI\": {\"duration\": 133.56, \"timestamps\": [[0, 38.07], [38.07, 133.56]], \"sentences\": [\"An intro leads into several shots of various men performing martial arts flips.\", \" The video leads into boys doing flips onto trampolines as well as large bans to catch their fall.\"]}, \"v_9UpVdljXQ4E\": {\"duration\": 46.46, \"timestamps\": [[0, 2.79], [4.41, 8.83], [9.99, 17.89], [20.91, 29.27]], \"sentences\": [\"The words skate like a pro are shown at the bottom.\", \" A man roller blades backwards.\", \" A close up of the skates are shown.\", \" A skater bends over as they skate.\"]}, \"v_8xvoAyY70I8\": {\"duration\": 34.58, \"timestamps\": [[0, 12.79], [11.93, 34.58]], \"sentences\": [\"A young girl is seen bending forward with another child standing right behind her holding a net.\", \" The girl sticks various objects under some running water and the boy hands her a spoon to wash.\"]}, \"v_XjV0D7nJx0Q\": {\"duration\": 101.03, \"timestamps\": [[0, 4.04], [4.04, 11.11], [11.11, 22.23], [22.23, 72.74], [72.74, 92.44], [92.44, 100.52]], \"sentences\": [\"A man named Russ is standing in a shop called Out-N-Back Bicycle Specialist and is holding a tire as he talks.\", \" A few colorful screens display with words on them.\", \"The man is once again shown with the tire and he begins to show how he removes the rubber from the rim using a blue object.\", \"The man then removes the black rubber with just his hands and removes a metal screw piece, then replaces it once again by maneuvering it with his two hands.\", \" When the man is done he holds the tire upright and continues to talk.\", \"The outro begins and it is similiar to the colorful screens shown earlier, but ends with a white screen that has footprints printed on it and the words UTAH ADVENTURER dot COM.\"]}, \"v_EiXW33yuAcw\": {\"duration\": 52.5, \"timestamps\": [[0, 6.3], [6.3, 15.23], [14.7, 26.78], [26.25, 36.49], [31.24, 52.5]], \"sentences\": [\"A man stands with a cup in hand next to a horse.\", \" The horse begins to drink from the man's cup.\", \" Some kids and some dogs stand buy and watch.\", \" The man begins to extend his arm offering the cup to the horse.\", \" The horse proceeds to like the cup dry.\"]}, \"v_X6CpfuJLx0U\": {\"duration\": 100.89, \"timestamps\": [[0, 49.94], [48.43, 100.89]], \"sentences\": [\"A person is seen playing an accordion on a busy street while many people walk around him and watch.\", \" The man continues to play the instrument and ends by stopping to laugh and smile at others.\"]}, \"v_hW6aZXhKl9M\": {\"duration\": 196.93, \"timestamps\": [[0, 60.06], [61.05, 156.56], [138.83, 143.76], [157.54, 196.93]], \"sentences\": [\"People ride horses in the shallow waters of the sea.\", \" People ride the horses in the water along the shore.\", \" A horse defecates in the water.\", \" People form a line with the horses while riding in the ocean.\"]}, \"v_xIld1Pt1QGs\": {\"duration\": 150.35, \"timestamps\": [[0, 25.56], [11.28, 27.81], [50.37, 144.34], [144.34, 145.09], [145.84, 148.85]], \"sentences\": [\"A guy helps girls onto a camel.\", \" The camel has a leaf in his nostril.\", \" The guy leads the camel with a rope attached to the camel face.\", \" A girl gets down from the camel.\", \" The girl walks underneath the camel.\"]}, \"v_Cx3QGeQu7xM\": {\"duration\": 113.85, \"timestamps\": [[6.83, 34.15], [34.72, 40.42], [40.99, 70.59], [70.59, 81.4], [81.4, 100.76], [101.32, 107.02]], \"sentences\": [\"A person throws a frisbee and the dog runs to get it.\", \" The man lays down and put his feet up, and the dog jumps on the feet.\", \" Then, the man throws the frisbee and the dog runs to get it.\", \" After, the man holds up the frisbee and the dogs stands in two legs.\", \" After, the dog pass between the legs of the person.\", \" Next, the person holds a frisbee high and the dog jumps to get the frisbee.\"]}, \"v_YeikEC85CGk\": {\"duration\": 206.94, \"timestamps\": [[0, 99.33], [91.05, 195.56]], \"sentences\": [\"A large group of people are seen playing a soccer match on a large beach while the camera moves closer to watch them play.\", \" The kids continued to play up and down the beach and ends with pictures of the kids on the beach.\"]}, \"v_vw065HaGq3I\": {\"duration\": 44.21, \"timestamps\": [[0, 11.72], [11.94, 20.34], [23.87, 28.07], [28.74, 37.58], [37.8, 44.21]], \"sentences\": [\"A woman stands in front of a vanity mirror and brushes her hair.\", \" The woman stands up from a chair and her hair flows over the backrest.\", \" The long hair is tied up into a bun.\", \" A friend combs the woman's long hair.\", \" A friend braids the woman's hair while she sits.\"]}, \"v_CBoitanoH4s\": {\"duration\": 226.49, \"timestamps\": [[0, 66.81], [71.34, 226.49]], \"sentences\": [\"A close up of the ground id shown followed by a man stepping into frame and placing objects into a pile.\", \" The pile then catches flame and the man adds more to the fire to make it bigger.\"]}, \"v_MkKUQ4MMHd8\": {\"duration\": 37.55, \"timestamps\": [[0, 37.55], [7.32, 7.7], [9.2, 10.33]], \"sentences\": [\"People are riding camels in a desert area.\", \" Two individuals that are leading the camels give each other high fives.\", \" A man and woman riding different camels give each other high fives.\"]}, \"v_J__1J4MmH4w\": {\"duration\": 112.52000000000001, \"timestamps\": [[2.25, 64.7], [49.51, 108.02]], \"sentences\": [\"A large group of people are standing around followed by two hugging and speaking to the camera.\", \" Several shot are shown of people playing beer pong as well as laughing with one another and yelling into the camera.\"]}, \"v_HCntSYltlmA\": {\"duration\": 215.04, \"timestamps\": [[6.45, 11.83], [12.9, 25.8], [47.31, 95.69], [88.17, 113.97], [110.75, 119.35], [144.08, 167.73], [168.81, 176.33], [187.08, 198.91]], \"sentences\": [\"Two young men drive in a truck down a rural road.\", \" A man crawls through a field around elk.\", \" A large elk is seen running along a ridge.\", \" The elk gets shot and runs off.\", \" The elk falls over in pain onto the ground.\", \" The elk runs in slow motion being hit by an arrow.\", \" The hunter approaches the elk that is lying on the ground.\", \" The hunter examines the antlers of the elk.\"]}, \"v_tOVv0cAyjcg\": {\"duration\": 185.64, \"timestamps\": [[0.93, 6.5], [7.43, 177.29], [7.43, 13], [13.92, 14.85], [15.78, 59.41], [15.78, 54.76], [64.98, 81.68], [84.47, 126.24], [127.17, 128.09], [135.52, 162.44], [178.22, 184.72]], \"sentences\": [\"The credits for the clip is shown.\", \" A female styles her long, dark hair.\", \" Female tosses her hair and uses her fingers to play with her hair.\", \" The female displays a comb, clamp, and a scissor.\", \" The females uses the comb on her hair.\", \" The female parts her hair and puts some in a ponytail.\", \" The female places the clamp on her hair.\", \" The female cuts her hair after the clamp.\", \" The female removes the clamp.\", \" The female removes the ponytail band and uses her hands to style her hair.\", \" The credits for the video is shown.\"]}, \"v_tm_CL7A0W4M\": {\"duration\": 117.33, \"timestamps\": [[0, 33.44], [33.44, 107.94], [107.94, 117.33]], \"sentences\": [\"A man and a woman are on a dance floor and getting ready to dance.\", \" The man and woman begin dancing while people on the sides of the dance floor are watching them.\", \"When they're done dancing they depart and everyone watching begins clapping.\"]}, \"v_cTioh2vzxGE\": {\"duration\": 108.03999999999999, \"timestamps\": [[0, 67.53], [30.25, 33.49], [68.07, 88.06]], \"sentences\": [\"A man is sitting on a couch playing a harmonica.\", \" A man comes up in front of him and takes pictures of the man playing.\", \" The audience watching him is applauding.\"]}, \"v_6g80a1NnftU\": {\"duration\": 128.43, \"timestamps\": [[0, 41.1], [41.1, 91.19], [89.9, 128.43]], \"sentences\": [\"A woman is seen washing her hands in a sink and drying her hands off with a paper towel.\", \" The woman then waves her arms carelessly under the water and rubs her hands on her shirt to dry.\", \" She finally opens the door with holding a rag and then throws a rag away in the trash.\"]}, \"v_MVUqd8iVUEk\": {\"duration\": 42.77, \"timestamps\": [[0, 8.55], [8.98, 30.8], [34, 42.77]], \"sentences\": [\"A gymnast mounts a low beam in front of the judges.\", \" He spins around in circles on the beam.\", \" He dismounts, his arms in the air.\"]}, \"v_rWQz-EwA4EA\": {\"duration\": 9.15, \"timestamps\": [[0.05, 5.17], [5.12, 9.15]], \"sentences\": [\"A man is shown putting plaster on the sides of a small, enclosed area.\", \" He holds an object in his hands and finally looks back towards the camera.\"]}, \"v_8C1EFngZC3Q\": {\"duration\": 57.24, \"timestamps\": [[0, 5.72], [5.72, 32.34], [32.34, 57.24]], \"sentences\": [\"A man is downstairs in what appears to be a basement turned into a gym is working out.\", \"He has a stepping mat in front of him and begins walking left to right going up and down on the step as he moves.\", \"With his hands by his waster moving back and forth,he continues on in the same manner with the exercise.\"]}, \"v_L4rKeN_4CLk\": {\"duration\": 113.72999999999999, \"timestamps\": [[0.57, 55.73], [43.22, 106.91]], \"sentences\": [\"A man is seen moving along the water on a surf board while another person watches on the side.\", \" The person continues riding around and slowing down to demonstrate how to play.\"]}, \"v_TqcoukXhXeA\": {\"duration\": 176.52, \"timestamps\": [[0, 176.52], [41.48, 74.14], [74.14, 108.56], [108.56, 154.45], [154.45, 176.52]], \"sentences\": [\"Two women are standing flying kites with another young man on a street and they are really happy.\", \" They twirl the strings around in the air.\", \" The boy twirls the string hard around to make the kite fly while the girls continue as well.\", \" The kites are high in the sky and a woman walks by and watches as another woman walks towards the three kids.\", \" Another young boy in a blue shirt walks by the crowd and leans and watches the three.\"]}, \"v_rKtktLDSOpA\": {\"duration\": 128.52, \"timestamps\": [[0, 11.57], [12.21, 37.27], [32.13, 36.63], [18.64, 79.68], [70.69, 72.62], [73.26, 106.03], [91.25, 128.52]], \"sentences\": [\"An image is blurry and clears to show men riding horses.\", \" We see the image multiples and see spectators.\", \" A lady in a white hat looks through binoculars at the game.\", \" Men are playing polo in a field.\", \" A girl in green runs behind the men with a flat and we see the lady in the hat with a video camera recording the event.\", \" We see he people playing polo again.\", \" We see the lady recording as she sits in her car and a player takes off his hat and sits in a chair before we see the game again.\"]}, \"v_6ChRD-1NwSg\": {\"duration\": 107.50999999999999, \"timestamps\": [[5.91, 104.82], [5.91, 31.72], [37.09, 76.33], [72.57, 102.13]], \"sentences\": [\"A woman demonstrates the safe use of a bissell steam cleaner on a hardwood floor.\", \"  The woman begins by talking, looking into the camera and standing next to, and holding the handle of a steam cleaner while standing on a hardwood floor and pulling the cleaner across the floor with white steam pouring out of it.\", \"  The steam cleaner then stands on its own with closeups of its hardware, and buttons before the woman begins pulling the cleaner across the floor again.\", \"  Lastly, the woman stands beside the cleaner again, talks, and makes one last walk forward with the cleaner and a closeup of the woman's ballet flats.\"]}, \"v_dUzqM38vwPI\": {\"duration\": 193.79, \"timestamps\": [[0, 145.35], [39.73, 171.51], [95.93, 191.86]], \"sentences\": [\"A man is seen speaking to the camera and leads into clips of people speaking to one another.\", \" More clips are shown of people riding on snowboards and speaking to one another.\", \" A person is then seen riding behind a car on a snowboard while others drive up to speak to him and record his time.\"]}, \"v_ew7XlNRrKyM\": {\"duration\": 16.37, \"timestamps\": [[0, 4.09], [4.17, 11.79], [12.36, 16.37]], \"sentences\": [\"A group of teams are gathered on an outdoor field.\", \" They are running and trying to hit a ball with a bat.\", \" They try to win the game, hitting the ball toward the opponent's goal.\"]}, \"v_9wRQsxVFwkE\": {\"duration\": 56.15, \"timestamps\": [[1.12, 23.3], [20.77, 51.65]], \"sentences\": [\"A child is seen pushing a lawn mower along the side of a lawn while looking and laughing the camera.\", \" The man turns around and continues mowing along the grass while the camera captures his movements.\"]}, \"v_PLnfT1PoVHw\": {\"duration\": 112.69, \"timestamps\": [[5.63, 14.09], [14.09, 41.13], [41.69, 55.78], [55.78, 109.87]], \"sentences\": [\"A teen puts his left leg on the legs of a youth.\", \" Then, the youth peels wax paper and put on the leg of the teen.\", \" Next, the youth peels off the wax paper and shows the hair in the paper.\", \" The teen shows his leg making pain gestures on his face.\"]}, \"v_tScqYRQ7zyo\": {\"duration\": 16.21, \"timestamps\": [[0, 8.51], [6, 15.48]], \"sentences\": [\"A close up of a woman is putting on makeup and looking into a mirror.\", \" The woman continues putting makeup on as the camera watches her from the side.\"]}, \"v_5GiIqXY__74\": {\"duration\": 228.95, \"timestamps\": [[0, 88.15], [96.16, 228.95]], \"sentences\": [\"The video leads into several shots of people throwing bowling balls down a lane and hitting numerous pins.\", \" The video continues with more shots of people throwing bowling balls and ending with a title screen.\"]}, \"v_ak5mpw8komA\": {\"duration\": 78.35, \"timestamps\": [[2.35, 23.9], [18.8, 61.89], [59.54, 74.43]], \"sentences\": [\"Two animals are seen on the ground followed by a cat and dog.\", \" A cat is shown carrying a leash in it's mouth with a dog following close behind.\", \" The camera follows the two walk up a set of stairs.\"]}, \"v_VaT3qsoHPQ8\": {\"duration\": 159.2, \"timestamps\": [[0, 11.14], [11.14, 80.39], [80.39, 85.17], [85.17, 107.46], [107.46, 130.54], [130.54, 145.66], [145.66, 159.2]], \"sentences\": [\"Chocolate chip cookies appear on a square white plate and a hand grabs one, bites it, and dips it into a cup of milk.\", \" The person is now showing a very close up of them putting ingredients into a large clear glass bowl, and they mix it all together with a wooden spoon.\", \" The person stops mixing with a spoon and then begins to use their hand to mix it all together.\", \"A package of chocolates are shown, then mixed into the cookie dough by hand, then covered with saran wrap.\", \" After a while the saran wrap is removed and small coops of the dough is put onto a cooking mat, baked in the oven, and cooled.\", \" The cookies are now on the white plate and the person takes a bite of one and also dips it in milk.\", \"The outro appears and it's of various different creations and ends with a screen that has 4 small screens on it with the words above it that say \\\"Click below for more videos!\\\".\"]}, \"v_8gUKEh27AFM\": {\"duration\": 25.75, \"timestamps\": [[7.34, 25.75], [0, 25.75]], \"sentences\": [\"A man swings a ball on a chain around his body and throws it behind him.\", \" A man in a blue shirt stands behind a fence behind him.\"]}, \"v_mf6UsZuW9Nw\": {\"duration\": 63.41, \"timestamps\": [[0.95, 22.83], [24.41, 62.46]], \"sentences\": [\"A woman is seen hosting a news segment and leads into clips of kids playing in a pool.\", \" Parents are then seen walking around and putting sunscreen on their kids and leads back into the woman hosting.\"]}, \"v_4_wfCFTnExI\": {\"duration\": 177.7, \"timestamps\": [[0, 25.77], [29.32, 95.96], [108.4, 177.7]], \"sentences\": [\"A group of four people are playing volleyball outdoors.\", \" They are shown in slow motion as they lob the ball back and forth.\", \" The speed increases as the game continues.\"]}, \"v_vvvjTjsXbzE\": {\"duration\": 156.32999999999998, \"timestamps\": [[0, 156.33], [4.69, 34.39], [28.92, 88.33], [84.42, 121.16], [107.09, 156.33]], \"sentences\": [\"The woman is standing at the counter.\", \" The woman is showing an two side metal shot glass, then she pour vodka in the cup and pour in the tall glass.\", \" The woman is holding a bottle of vodka and the metal shot glass, pour the liquid in the cup and pour the liquid in the pot.\", \" The woman pour the liquid in a shot glass, then pour it in the cup.\", \" The woman put ice in the glass and pour vodka.\"]}, \"v_IqXaLlFSWwc\": {\"duration\": 13.35, \"timestamps\": [[0, 6.54], [6.81, 13.35]], \"sentences\": [\"A man prepares for a high jump.\", \"  The man then completes the high jump successfully.\"]}, \"v__Zq8ugolzlA\": {\"duration\": 140.9, \"timestamps\": [[23.25, 62], [66.22, 94.4], [76.09, 92.29], [92.99, 100.74]], \"sentences\": [\"Two men stand and discuss in a gym with weight racks.\", \" The weight lifter squats down to show proper stance when lifting.\", \" The trainer presses on the weightlifter's back to show correct posture.\", \" The weightlifter stands back up after the presentation.\"]}, \"v_eYgXvnnlPQA\": {\"duration\": 140.99, \"timestamps\": [[0, 9.16], [9.16, 11.98], [11.98, 15.51], [15.51, 120.55], [88.12, 94.46], [106.45, 114.2], [120.55, 136.06], [139.58, 140.99]], \"sentences\": [\"We see an opening title screen.\", \" We see a landscape in the desert.\", \" We see a man talking.\", \" We then see one man climbing a sheer cliff.\", \" We see the climber from a distance.\", \" We see the man from a distance and as he reaches the top.\", \" We see the man talking and hug his dog.\", \" We then see the ending screen again.\"]}, \"v_DfOiHMcrCbs\": {\"duration\": 81.22, \"timestamps\": [[0, 17.87], [17.87, 67.42], [66.2, 81.22]], \"sentences\": [\"A man is seen speaking to a camera and leads into video surveillance of two men walking into a store then driving away.\", \" Shots are shown of the store, cigarettes, and people smoking cigarettes, followed by another man being interviewed and smiling to the camera.\", \" One last man is seen holding a pack of cigarettes and speaking to the camera.\"]}, \"v_F30odTEdsxo\": {\"duration\": 41.52, \"timestamps\": [[1.66, 24.91], [20.14, 40.69]], \"sentences\": [\"A close up of a poker table is seen with people sitting around the sides and speaking to one anther.\", \" The man is seen playing with the others and putting his cars in the middle.\"]}, \"v_LoBjzA2z2Ls\": {\"duration\": 229.53, \"timestamps\": [[0, 22.95], [22.95, 51.64], [51.64, 114.77], [114.77, 179.03], [179.03, 229.53]], \"sentences\": [\"a cesar salad is eady and its served in a bowl.\", \" croutons are in a bowl and chopped ingredients are separated.\", \"theman mix all the ingredients in a bowl to make the dressing, put plastic wrap as a lid.\", \" man cutts the lettuce  and in a pan put oil with garlic and stir fry the croutons.\", \" the man put the dressing on the lettuces and add the croutons in the bowl and mix them all together.\"]}, \"v_hYRNSJwhVPw\": {\"duration\": 234.57999999999998, \"timestamps\": [[0, 234.58], [51.61, 221.68]], \"sentences\": [\"A woman shows the proper way to do crunches on a pier near the ocean.\", \"  She says not to straigh your neck and not to lift your head with arms.\"]}, \"v_FMYu8k1b_DM\": {\"duration\": 213.65, \"timestamps\": [[3.2, 66.23], [58.75, 164.51], [165.58, 204.03]], \"sentences\": [\"A large group of people are seen standing around a gymnasium that leads into several clips of people throwing balls to one another.\", \" More clips are shown of people kicking balls into goals and others blocking them.\", \" The players continue practicing drills with one another and ends with text going up the screen.\"]}, \"v_9FK7tjzBKio\": {\"duration\": 50.6, \"timestamps\": [[0.51, 40.22], [41.49, 50.6]], \"sentences\": [\"People are in rooms playing wall ball.\", \" A woman in a blue shirt stands outside in the hallway.\"]}, \"v_VWpRBfhoFVg\": {\"duration\": 18.25, \"timestamps\": [[0, 7.03], [7.03, 13.96], [13.87, 18.25]], \"sentences\": [\"A little girl hits a minion character in front of a group of children and adults.\", \" Everyone cheers and there is some clapping.\", \" The little girl turns around and returns her stick to the woman.\"]}, \"v_cyXWvxVt8qE\": {\"duration\": 86.98, \"timestamps\": [[0, 1.3], [1.3, 20.01], [20.88, 25.22], [24.35, 26.09], [26.09, 69.15], [74.37, 81.76], [72.63, 83.5]], \"sentences\": [\"The man on the right serves the ball.\", \" The two men hit the ball back and forth.\", \" The right man misses the ball and we see the people on the sidelines.\", \" The right man serves again.\", \" They go back and forth till the ball drops again 1:10.\", \" 1:14 we see the crowd before the left man serves and the go back and forth.\", \" 124 The right man misses, the left throws his hands in the air and walks off.\"]}, \"v_rdkrg8Bj9_I\": {\"duration\": 82.62, \"timestamps\": [[3.72, 36.76], [36.35, 82.62]], \"sentences\": [\"A person is shown in several clips running down a track, jumping into a pit of sand.\", \" He pauses for a woman and then continues jumping back into the pit several more times.\"]}, \"v_P2Fcv3cC8bI\": {\"duration\": 77.3, \"timestamps\": [[0, 16.23], [17.39, 77.3]], \"sentences\": [\"man is kneling down in the floor paint a white cloth in a living room.\", \"man is walking by a halfway and puth the courtains in the wall by the window.\"]}, \"v_YZvdzvM-124\": {\"duration\": 6.62, \"timestamps\": [[0, 1.09], [1.03, 2.51], [2.51, 4.6], [4.63, 6.45]], \"sentences\": [\"Men in jerseys bent down on the field trying to figure out a play.\", \" They are conversing about what the next move is going to be.\", \" The coaches are standing by talking to the player explaining.\", \" Mean while two players in the back play rock paper scissors.\"]}, \"v_s56ctLdnOdw\": {\"duration\": 92.57, \"timestamps\": [[0, 6.94], [6.94, 92.57]], \"sentences\": [\"These women are playing volleyball in the gymnasium.\", \" Some of these girls are wearing a white and blue  outfit and the other team is wearing black and gold outfits.\"]}, \"v_WaFDgdqY1DM\": {\"duration\": 40.13, \"timestamps\": [[0, 10.63], [11.44, 28.89], [21.67, 38.32]], \"sentences\": [\"A large monkey is seen walking up onto a tree branch.\", \" The camera pans around and back to the monkey who is now sitting on the branch.\", \" The monkey is then seen eating food and looking at the camera.\"]}, \"v_gKLbdLKEG6U\": {\"duration\": 231.36, \"timestamps\": [[0, 16.2], [24.29, 70.57], [72.88, 197.82], [198.97, 231.36]], \"sentences\": [\"A group wearing helmets and safety vests pull a raft into a rapid river.\", \" They begin white water rafting.\", \" They run through the water toward a water fall, celebrating.\", \" They then pick up their raft and carrying it back to their van before loading up to leave.\"]}, \"v_RL4V-Sx619M\": {\"duration\": 83.69, \"timestamps\": [[0, 34.73], [15.9, 22.59], [35.57, 61.93], [50.63, 56.07], [62.35, 67.78], [75.73, 83.69]], \"sentences\": [\"We see  two young people playing shuffle board on the deck of a cruise ship.\", \" We see a speedboat riding on a the ocean.\", \" We switch to two adults playing shuffleboard.\", \" The camera turns on it's side then straight.\", \" The little girl holding the camera speaks to the camera.\", \" The little girl turns the camera on herself and talks again.\"]}, \"v_ssBiSN8XofA\": {\"duration\": 176.12, \"timestamps\": [[0, 11.45], [11.45, 18.49], [18.49, 88.94], [88.94, 120.64], [120.64, 176.12]], \"sentences\": [\"An intro screen appears with a gray background and the red and white words that say PRO TRAINING.\", \" A man appears and his twitter name handle appears on the bottom left while he's talking in a basketball court.\", \" A black screen appears and the white words THE MIKAN DRILL are displayed and the man continues to talk and then demonstrates exactly how to do various Mikan Drills.\", \" The man then grabs a second ball and continues to demonstrate advanced Mikan Drills with both balls.\", \"When the man is done with the drills he's talking again and the outro appears with his contact information and a subscribe button while a small video shows some of his other skills.\"]}, \"v_qVuRcevXgMk\": {\"duration\": 80.81, \"timestamps\": [[0, 30.3], [30.3, 66.26], [73.13, 80.81]], \"sentences\": [\"A woman is holding a contact lens in her hand.\", \" She puts the contact lens in her eyes.\", \" She turns around and smiles.\"]}, \"v_msiX-xky6Ac\": {\"duration\": 191.94, \"timestamps\": [[0, 43.19], [43.19, 76.77], [76.77, 95.01], [95.01, 124.76], [124.76, 191.94]], \"sentences\": [\"Several kids are outside of their school and they jump up with joy and the title of their school is then shown.\", \"A kid then takes a rock and throws it at a number on the hopscotch drawn on the ground with chalk.\", \"The video then begins by showing the steps to hopscotch and a boy begins drawing boxes and adding numbers up to the number 8.\", \"After, a marker is shown which happens to be a box and they throw it on the number 1 and then proceed to hop over the number one and come back and pick up the rock.\", \"The game continues and the line of boys throw the rock and take turns until the game is over.\"]}, \"v_NNOsdZr802w\": {\"duration\": 167.63, \"timestamps\": [[0, 167.63], [0, 60.35], [81.3, 108.12], [108.12, 167.63]], \"sentences\": [\"A young man is in a bathroom attempting to shave his legs.\", \"  He takes off his pants, shakes the shaving cream can, sits on the toilet and puts his leg up.\", \"  As other girls tease him about it he puts his leg up and lathers up his leg.\", \"  He shaves his leg while the sink water runs then a girl touches the shaved area of his leg.\"]}, \"v_OabVylOVys4\": {\"duration\": 207.22, \"timestamps\": [[29.01, 155.41], [60.09, 155.41], [80.81, 155.41], [127.44, 155.41]], \"sentences\": [\"There are people in inflatable boats sailing in the river.\", \" One person gets pushed off of the boat, but the others keep going.\", \" when they get to shore, they see other people who they know.\", \" There is a boy cooking food over fire, one boy is peeling potatoes, and other things are happening.\"]}, \"v_jEppv00aBBc\": {\"duration\": 235.85, \"timestamps\": [[0, 15.33], [20.05, 25.94], [50.71, 55.42], [61.32, 69.57], [61.32, 235.85], [99.06, 102.59], [125, 145.05], [175.71, 182.78], [182.78, 189.86]], \"sentences\": [\"We see images flash then we see the title screen.\", \" We see a man walking a large group of dogs while talking to the camera.\", \" We see the man pouring into dish.\", \" The man rings a bell at a building.\", \" They walk down a city street together.\", \" We see paws go across the screen.\", \" We see the record screen and the man picking up poo.\", \" The man asks another man how many dogs he has.\", \" The man walks past a bunch of schoolgirls.\"]}, \"v_95UgspVYJSM\": {\"duration\": 46.56, \"timestamps\": [[0, 19.32], [19.55, 32.36], [27.7, 30.73], [42.6, 46.56]], \"sentences\": [\"A person holds a decoration and decides where to place it on the Christmas tree.\", \" The woman hangs an ornament on the Christmas tree.\", \" An angel rests at the top of a Christmas tree.\", \" The woman picks up an ornament.\"]}, \"v_ABQYqpWF1LA\": {\"duration\": 132.45, \"timestamps\": [[0, 70.86], [52.32, 126.49]], \"sentences\": [\"A person is seen speaking to the camera while rubbing himself in sunscreen and showing off several different kinds of lotion.\", \" The man is shown speaking with his shirt on and off while rubbing sun screen into his skin and wiping his face with a towel.\"]}, \"v_sF859t5osSg\": {\"duration\": 102.00999999999999, \"timestamps\": [[0, 94.87], [3.06, 5.1], [6.63, 22.95], [22.44, 88.24], [24.99, 87.73], [80.07, 94.87], [94.36, 102.01]], \"sentences\": [\"There's a dog in a living that has a messy couch and an over crowded coffee table filled with books and TV remotes.\", \" A person walks by to lift something off the floor.\", \" The dog watches the person and leaves the room momentarily.\", \" Then the dog comes back and begins drinking from a coffee mug that is placed on the coffee table.\", \" The stands on its hind legs to reach the mug and drink the liquid in it.\", \"  The dog jumps down and goes stands back up on its hind legs to drink some more from the mug.\", \" After the dog leaves the room, a person walks in.\"]}, \"v_mbGpp_nDwI4\": {\"duration\": 98.2, \"timestamps\": [[0, 94.27], [5.4, 15.22], [15.71, 16.69], [51.06, 54.99], [55.48, 64.32], [68.74, 98.2]], \"sentences\": [\"We see a male gymnast perform on the parallel bars.\", \" First the man stretches and sticks out his butt.\", \" He then mounts the parallel bars.\", \" The man misses a bar and falls.\", \" The man puts more chalk on his hands.\", \" He gets back on the bars and flips a few times before dismounting the bars.\"]}, \"v_yu1XjQUctiM\": {\"duration\": 94.32, \"timestamps\": [[0, 24.99], [25.47, 44.33], [46.69, 94.32]], \"sentences\": [\"A little boy is holding a tube of toothpaste.\", \" His mom helps him put it on his toothbrush.\", \" The boy then uses the brush to brush his teeth.\"]}, \"v_Amgt0yzQido\": {\"duration\": 76.74, \"timestamps\": [[1.15, 28.78], [23.02, 46.43], [51.42, 76.74]], \"sentences\": [\"Three people are seen standing in the middle of a large gymnasium holding onto a jump rope.\", \" The people then jump around one another while people watch on the sides.\", \" They continue swinging the rope around and end by giving a pose.\"]}, \"v_lSgkR94_h8Q\": {\"duration\": 230.11, \"timestamps\": [[0, 43.72], [43.72, 109.3], [109.3, 230.11]], \"sentences\": [\"A young girl is standing in front of the camera wearing a purple and gold brazier on,talking to the camera.\", \"The girl is then shown in a room with large purple sheets over her body.\", \"She then turns around and begins to do belly dancing moving back and forth shaking her hips.\"]}, \"v__E_9te0nq3A\": {\"duration\": 167.67000000000002, \"timestamps\": [[42.76, 66.23], [66.23, 70.42], [76.29, 92.22], [98.09, 100.6], [108.15, 122.4]], \"sentences\": [\"A man crumples up paper and puts sticks in a fire pit.\", \" He lights the paper and blows on the fire.\", \" He adds larger logs to the top of the fire.\", \" He sits down at a picnic table.\", \" He pours water on top of the fire.\"]}, \"v_HfN967uah8o\": {\"duration\": 154.65, \"timestamps\": [[1.55, 45.62], [40.98, 114.44], [90.47, 148.46]], \"sentences\": [\"A person is seen riding in a tube and looking at the camera.\", \" More people are seen riding down a snowy hill on tubes as well as laughing into the camera.\", \" More children play on the hill and pull one another along down the mountain.\"]}, \"v_Vvi0HQ6Pu7c\": {\"duration\": 8.1, \"timestamps\": [[0, 2.59], [2.71, 2.88], [2.96, 6.56]], \"sentences\": [\"A wrestler action figure takes hold, with his legs, of another wrestling action figure and swings him up in the air.\", \" The action figure in the air takes hold of another action figure standing by.\", \" The action figure taking hold is able to drop the action figure to the ground.\"]}, \"v_4MBGT228QiQ\": {\"duration\": 150.09, \"timestamps\": [[0, 72.8], [73.55, 150.09]], \"sentences\": [\"Two women are seen standing behind a counter with holding a book and speaking to the camera.\", \" The other one speaks as well and begins mixing various ingredients into a glass, and ends with the other holding a book.\"]}, \"v_krFle3KU4Ts\": {\"duration\": 65.09, \"timestamps\": [[0, 37.1], [23.11, 63.78]], \"sentences\": [\"A young man is seen playing an accordion while the camera captures him from the sides.\", \" The man continues to play while moving his hands up and down and looking down to see.\"]}, \"v_3nrianTc060\": {\"duration\": 225.1, \"timestamps\": [[0, 27.01], [27.01, 137.31], [139.56, 212.71], [205.96, 225.1]], \"sentences\": [\"A group of skiers prepare for a run on the top of a mountain.\", \" The skiers traverse down a back country run through trees.\", \" The skiers cut back and fourth down a steep ski slope hill.\", \" The family of skiers makes it to the bottom of the slope and congratulate each other.\"]}, \"v_suxZhXSVNKY\": {\"duration\": 113.03, \"timestamps\": [[0, 28.82], [30.52, 81.38], [72.9, 107.94]], \"sentences\": [\"Several shots are shown of people walking on the beach holding surf boards and riding along the water.\", \" A man is seen standing on a board many times while riding a wave.\", \" The video continues on with several people walking up a hill.\"]}, \"v_No5ZwqHdEQU\": {\"duration\": 180.16, \"timestamps\": [[0, 40.54], [37.83, 118.91], [107.2, 171.16]], \"sentences\": [\"Several women are seen speaking to the camera leading into clips of them playing volleyball.\", \" The girls hit the ball all around the area with men while taking turns speaking to the camera.\", \" The girls continue playing on while men watch on the sidelines and the women cheer into the camera.\"]}, \"v_7JoYkshshVI\": {\"duration\": 75.0, \"timestamps\": [[0, 28.88], [21.75, 57], [51, 73.5]], \"sentences\": [\"A man is seen standing before a shuffleboard table and begins slowly pushing pucks.\", \" Another person is seen standing behind while they push the pucks along the board.\", \" The people go back and fourth while walking back to one another.\"]}, \"v_odMI0DGsn7k\": {\"duration\": 152.28, \"timestamps\": [[0, 152.28], [16.75, 17.51], [16.75, 108.88], [122.58, 127.15]], \"sentences\": [\"People are playing the game fencing.\", \" A man in a blue sweater is talking.\", \" People gather in a room to watch the match.\", \" A man in a suit and glasses talks.\"]}, \"v_mSyfGQigb8U\": {\"duration\": 202.85, \"timestamps\": [[0, 20.29], [21.3, 114.61], [115.62, 153.15], [160.25, 202.85]], \"sentences\": [\"A bathroom sink is shown in front of a woman.\", \" A woman is at the sink.\", \" She is showing how to clean the sink using a toothbrush.\", \" She scrubs and then wipes down the sink.\"]}, \"v_wEn3nAJHhtw\": {\"duration\": 159.78, \"timestamps\": [[0, 21.57], [11.18, 74.3], [19.97, 125.42], [63.11, 135.01], [111.84, 157.38]], \"sentences\": [\"The black and white dog is standing at the center of the field with the girl in black shirt and short brown hair.\", \" The girl and the dog did some tricks where the girl moved her arms and legs while the dog moved in between them.\", \" The girl did some tricks with frisbee and then threw the frisbee and the dog chase after it, and returned it to the girl.\", \" The girl threw several frisbees and the dog chase after them.\", \" The audience cheered and two kids walked in the field and picked up the frisbees while the dog wouldn't let go of one frisbee.\"]}, \"v_gIhVeU8xbrs\": {\"duration\": 170.16, \"timestamps\": [[0, 41.69], [40.84, 93.59], [93.59, 138.68], [138.68, 162.5], [162.5, 170.16]], \"sentences\": [\"Two men are in a weight room,one is sitting in a chair,and the other is standing on a mat about to jerk the bar.\", \"Another man then comes along and attempts the weight and struggles at first but then gets it in the air before he drops it.\", \"The same male then lifts the bar four times and is successful at each attempt.\", \"A slightly smaller guy approaches the bar but he never gets the bar off the ground.\", \"After him,a shirtless man tries to lift it but he can't get it off the ground either.\"]}, \"v_MFow119nrOk\": {\"duration\": 221.61, \"timestamps\": [[7.76, 86.43], [60.94, 214.96]], \"sentences\": [\"A man is seen performing a skateboarding stunt close up that leads into an officer writing them a ticket and speaking to the man.\", \" The officer continues to speak to the skateboarder and ends by walking away and people getting into the car.\"]}, \"v_21Pz1cjdd2I\": {\"duration\": 146.47, \"timestamps\": [[0, 8.06], [8.79, 30.76], [31.49, 52], [54.93, 87.88], [89.35, 137.68]], \"sentences\": [\"Children stand holding inner tubes on a flat area.\", \" A family rides together on a set of inner tubes attached with a rope down the hill.\", \" The family slides back and forth against a ramp at the bottom of a hill.\", \" People are pulled on a tow line up a slope riding on inner tubes.\", \" A father and son ride down on a single inner tube down a slope.\"]}, \"v_GBFRHM7i-NQ\": {\"duration\": 129.82, \"timestamps\": [[0, 46.09], [28.56, 99.96], [98.02, 129.82]], \"sentences\": [\"Various people are seen standing around a pit when one rides in on a bull and kicks him off.\", \" More people ride in on horses an the camera moves around quickly and changes to pictures of the bull.\", \" More shots of people riding bulls and being thrown are shown as well as pictures of people running around bulls and a picture of a man holding a prize.\"]}, \"v_iBz_YrU-T80\": {\"duration\": 168.97, \"timestamps\": [[0, 82.8], [43.09, 140.25], [141.94, 168.97]], \"sentences\": [\"The video leads into various old clips of a television show with lots of women drinking coffee and speaking to the camera.\", \" More shots are shown of people drinking coffee in various setting including at the dinner table and at the office.\", \" In the end the wife pours her husband a cup of coffee while he speaks to the camera.\"]}, \"v_yfjnahzAPSc\": {\"duration\": 207.73, \"timestamps\": [[6.23, 122.56], [88.28, 93.48], [123.6, 207.73], [165.14, 171.37]], \"sentences\": [\"A person talks in a field where people are training hurling.\", \" People throw a ball to other players in the field.\", \" Another man explains while people where people plays in the field.\", \" A player hit a ball while other try to catch the ball.\"]}, \"v_HktZZPJMU8s\": {\"duration\": 211.63, \"timestamps\": [[12.7, 45.5], [45.5, 119.57], [119.57, 203.16]], \"sentences\": [\"A man wearing Asian clothes holds a small rod and perform Tai Chi movements with his hands.\", \" Then, the man opens the legs and practice Tai Chi miving his whole body.\", \" After, the man moves around his upped body, then he moves around while holding the rod.\"]}, \"v_gVixuVE0-ek\": {\"duration\": 135.68, \"timestamps\": [[9.5, 129.57], [15.6, 52.91], [52.91, 125.5]], \"sentences\": [\"This video shows viewers how to do a kickboxing elbow strike.\", \" First the man tells viewers to make the elbow sharp as possible and his hand stays inwards, elbow downwards, and his opposite hand is up.\", \" Next, he turns his legs and he continues to do the same thing.\"]}, \"v_nzjivjnk2Ac\": {\"duration\": 233.01, \"timestamps\": [[0, 37.28], [45.44, 189.91], [193.4, 233.01]], \"sentences\": [\"A man is shown riding down multiple streets on a skateboard.\", \" He rides quickly past several buildings and landmarks, performing stunts and going down hills.\", \" When he is done, he sits down to eat lunch with friends.\"]}, \"v_ZdaS-WZHUZY\": {\"duration\": 154.62, \"timestamps\": [[0, 19.33], [0, 154.62]], \"sentences\": [\"Two teams prepare to play a hurling match.\", \"  Highlights are shown and the crowd cheers a lot.\"]}, \"v_HWgQhsTgj90\": {\"duration\": 22.06, \"timestamps\": [[0, 22.06], [10.26, 13.24], [16.54, 22.06]], \"sentences\": [\"People are in the pool swimming.\", \" A person picks up a yellow ball and throws it.\", \" Orange cones are placed on the side of the pool.\"]}, \"v_FU0EPNGKsv8\": {\"duration\": 58.05, \"timestamps\": [[0, 58.05], [6.68, 58.05], [10.45, 58.05], [37.73, 58.05]], \"sentences\": [\"Several girls are on a court.\", \" The take turns shooting hoops.\", \" Several make it in the hoop.\", \" They stand in a line.\"]}, \"v_8e80cJTrJDs\": {\"duration\": 39.19, \"timestamps\": [[0, 3.92], [5.88, 39.19]], \"sentences\": [\"Several people on dirt bikes explode out of a gate.\", \" They begin racing around a dirt track, jumping hills and competing for first place.\"]}, \"v_GyBIC-DBoss\": {\"duration\": 78.09, \"timestamps\": [[4.69, 33.58], [35.14, 67.16], [42.56, 78.09]], \"sentences\": [\"The woman picked up the barbell pause at her chest and then push the barbell up.\", \" The woman put down the barbell on the floor.\", \" The woman picked up the barbell, pushed the barbell up, put the barbell down and let it go then do it again.\"]}, \"v_jfhKC2WFDTo\": {\"duration\": 179.31, \"timestamps\": [[0, 178.41], [25.1, 178.41]], \"sentences\": [\"a junior cheerleader team are standing in sage in middle of court doing a choreography .\", \" team wearing black uniforms are standing on side of stage gathered in a circle talking.\"]}, \"v_bjKd--KFl0E\": {\"duration\": 230.92000000000002, \"timestamps\": [[0, 230.92], [1.15, 230.92], [2.31, 230.92]], \"sentences\": [\"A woman is surfing on a large wave.\", \" There are buildings behind her.\", \" People are standing on the beach in front of the buildings.\"]}, \"v_mwDQENGsvd8\": {\"duration\": 43.1, \"timestamps\": [[0, 43.1], [0, 40.51], [35.12, 40.51]], \"sentences\": [\"A boy plays a set of drums in a studio.\", \" The boy uses his foot to play a base drum.\", \" The boy switches stance to play the drums behind him.\"]}, \"v_BrgYIg6UXhU\": {\"duration\": 267.07, \"timestamps\": [[0, 45.4], [56.08, 201.63], [138.87, 256.38]], \"sentences\": [\"A close up of a car is seen following by a person walking into frame.\", \" The person climbs in the car for a moment then climbs back out to clean off his car.\", \" He uses the scraper all along the car and ends by putting it in the back and turning off the camera.\"]}, \"v_LTBrHLqhRMs\": {\"duration\": 66.26, \"timestamps\": [[0.33, 64.93], [26.5, 45.72], [54.66, 63.28]], \"sentences\": [\"A man is talking while holding a volleyball.\", \" The man demonstrates what part of your arm or hand to use when hitting the ball.\", \" He then hits the volleyball over the net a few times.\"]}, \"v_vVvImml1A8g\": {\"duration\": 55.15, \"timestamps\": [[0, 55.15], [20.13, 47.7]], \"sentences\": [\"People drive bumper cars in a carnival going turning and going around.\", \" A blonde boy in a bumper car smile happily.\"]}, \"v_xaicDAewb6o\": {\"duration\": 95.2, \"timestamps\": [[0, 95.2], [16.18, 20.94], [77.59, 81.87]], \"sentences\": [\"A young girl washes dishes in the sink.\", \"  The camera zooms into the clean plate.\", \"  The girl drops the fork into the sink while washing it.\"]}, \"v_ebmi7XJA8Oo\": {\"duration\": 212.69, \"timestamps\": [[0, 188.23], [188.23, 212.69]], \"sentences\": [\"A child cleans a bottle with a cloth, then spray the sink with a liquid and clean it toughly.\", \" Then, the boy stand on front the sink and smile.\"]}, \"v_BkjWeWUwG0A\": {\"duration\": 216.82999999999998, \"timestamps\": [[0, 216.83], [49.87, 60.71], [60.71, 63.96], [66.13, 216.83]], \"sentences\": [\"Two kids are swinging next to each other on a swing set.\", \" Kids are playing on a playground.\", \" A red building is shown behind them.\", \" The kits continue to swing on the swings.\"]}, \"v_7J6cZ_Gz8q4\": {\"duration\": 184.2, \"timestamps\": [[0, 60.79], [68.16, 184.2]], \"sentences\": [\"A man plays a saxophone on stage as a couple dances in front of him.\", \" They are a bride and groom, the bride ornately dressed as they perform their first dance amongst smoke and sparklers before their guests.\"]}, \"v_OQPBLjX1LHk\": {\"duration\": 48.81, \"timestamps\": [[0, 15.62], [12.45, 26.84], [26.11, 48.81]], \"sentences\": [\"The little girl is hanging on the monkey bars.\", \" The girl jumped and walked at the playground.\", \" She play on the monkeybars.\"]}, \"v_I4y6q9oIIQo\": {\"duration\": 127.11, \"timestamps\": [[0, 8.9], [9.53, 34.32], [33.68, 90.25], [91.52, 112.49], [112.49, 127.11]], \"sentences\": [\"We see a puppet in an eye doctors office.\", \" We see a few title and instruction scenes.\", \" We see an animated man pick up a seed and go the process of extracting oil as instructions show on the screen.\", \" We then see images of people in Africa washing face and smiling.\", \" We see a lady and a doctor in the eye doctor office and we then see the ending screen.\"]}, \"v_8IJJGK2td2c\": {\"duration\": 154.69, \"timestamps\": [[0, 4.64], [5.41, 26.3], [27.07, 39.45], [41.77, 44.09], [44.86, 51.05], [51.82, 55.69], [56.46, 91.27], [92.04, 103.64], [104.42, 113.7], [115.25, 120.66], [121.43, 129.94], [129.94, 143.09], [143.86, 154.69]], \"sentences\": [\"A lemonade drink is displayed on a counter.\", \" A man rolls a lemon around on a small cutting board.\", \" He cuts the lemon into small pieces.\", \" The man grabs a glass.\", \" The man pours sugar into a glass.\", \" The man throws the sliced lemons into the glass.\", \" The man grabs a wooden fork and crushes the lemons inside the glass.\", \" The man throws ice cubes into the glass.\", \" Water is poured into the glass.\", \" The man covers the glass with a red cover.\", \" The man shakes the glass.\", \" The man shows off the lemonade drink.\", \" The lemonade drink is displayed on the counter.\"]}, \"v_kQ4rE7o6rrg\": {\"duration\": 128.36, \"timestamps\": [[0, 128.36], [0, 127.08], [0, 52.63]], \"sentences\": [\"women are standing on a beach playing voleyball.\", \" people are in the background sitting on the sand .\", \" man is sitting on a deck chair watching the women play.\"]}, \"v_HlhQ3-WOdgI\": {\"duration\": 19.09, \"timestamps\": [[0, 8.4], [8.3, 19.09]], \"sentences\": [\"A squirrel is shown inside out of a house sticking its head into a large bowl.\", \" He jumps away from the bowl near a laptop and then runs away.\"]}, \"v_KoqE2gPCLe4\": {\"duration\": 67.13, \"timestamps\": [[0, 6.04], [10.74, 34.24], [36.25, 67.13]], \"sentences\": [\"A female athlete prepares to run.\", \" She runs with a pole in her hands, then vaults over a bar onto a mat.\", \"She walks away, picking up the pole and posing before trying again.\"]}, \"v_q_nBBJS-eJo\": {\"duration\": 220.89, \"timestamps\": [[0, 101.61], [60.75, 133.64], [77.31, 136.95], [127.01, 210.95]], \"sentences\": [\"A man standing at the table, he is showing the vaseline, a block of bronze or metal and a wooden brush.\", \" The man rub the vaseline with the brush on all sides of the block, then spray paint it with white paint.\", \" The man and his dog left the block on top of the table/cabinet.\", \" The man came back, he is now wearing gray gloves, picked up the block, then wipe the edge of the block with gray cloth.\"]}, \"v_psgIH8U1adg\": {\"duration\": 121.07, \"timestamps\": [[0, 53.27], [88.99, 118.65]], \"sentences\": [\"There is a cute baby girl who's name is Jessica and she is swinging on a little baby swing right in the garden near her house.\", \" After a while of the baby swinging, she gets put into her play pin where she just stands up and smiles.\"]}, \"v_cKMGacBQX0E\": {\"duration\": 57.17, \"timestamps\": [[0, 12.01], [12.01, 45.73], [45.45, 52.31]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He does a gymnastics routine on the balance beam.\", \" He jumps off and lands on a mat.\"]}, \"v_ranTpEJvqs8\": {\"duration\": 53.55, \"timestamps\": [[0, 20.08], [20.08, 53.55]], \"sentences\": [\"Several people are lined up on bicycles waiting to start a race.\", \" They go down the hill and start racing around a track.\"]}, \"v_YDNgm6ufrJc\": {\"duration\": 61.16, \"timestamps\": [[0, 1.83], [7.65, 35.17], [34.86, 44.04], [44.04, 46.48], [47.71, 57.19], [57.8, 61.16]], \"sentences\": [\"We see a baby rinse a cup.\", \" She grabs a sponge and rinses it and her cup.\", \" She asks for the dish soap and pours it in her cup.\", \" the adult takes the soap from the baby.\", \" She pours it out and rinses her cup.\", \" She drops the cup in the sink and gets off her ladder.\"]}, \"v_oEC5UG-rBFc\": {\"duration\": 198.6, \"timestamps\": [[8.94, 91.36], [80.43, 195.62]], \"sentences\": [\"Several clips are shown of soccer players performing moves and a man speaking to the camera.\", \" More shots are shown again in slow motion the people demonstrating the soccer moves.\"]}, \"v_Mpph0kFsyZ0\": {\"duration\": 120.44, \"timestamps\": [[0, 17.46], [17.46, 39.14], [39.14, 48.78], [48.78, 77.08], [77.08, 95.15], [95.15, 105.99], [105.99, 120.44]], \"sentences\": [\"A taller and shorter man are standing in a track field dressed in sports clothes and talking to the camera.\", \" The taller man is holding a shot put in his right hand and holding it up to his neck as he demonstrates the stance and movements he goes through to throw the shot put and then eventually throws it.\", \" The shorter man is now holding the shot put and throws it while the taller man is standing next to him observing.\", \" The taller man once again demonstrates how he throws the shot put and then really throws it very far.\", \" The shorter man takes a turn again and uses the same technique the taller man just demonstrated and throws the first one in bounds and then the second one very out of bounds.\", \"The shorter man attempt the throw again and this time he makes it inbound and they both cheer his success.\", \"Both of the men are back to standing together and once again talking to the camera.\"]}, \"v_vrwJEvpeHyM\": {\"duration\": 134.75, \"timestamps\": [[0, 59.96], [59.96, 134.75]], \"sentences\": [\"An athlete is shown in slow motion as he hurls a disc at a competition.\", \" The same action is then shown from several different cameras.\"]}, \"v_8Kv7piYg9yc\": {\"duration\": 95.09, \"timestamps\": [[0, 20.92], [22.35, 67.99], [72.27, 95.09]], \"sentences\": [\"Several kids are playing rock paper scissors on a gym court.\", \" They run back and forth, and the loser has to run.\", \" They continue playing throughout the video.\"]}, \"v_aCknCFmU0sA\": {\"duration\": 95.47999999999999, \"timestamps\": [[0, 24.83], [26.73, 68.27], [63.97, 90.71]], \"sentences\": [\"A man with long hair is seen looking at the camera and begins brushing his hair.\", \" The man brushes his hair all around while still looking down at the camera.\", \" The man turns around to finish brushing his hair and ends by waving to the camera.\"]}, \"v_qoS5nkk7Rgk\": {\"duration\": 67.76, \"timestamps\": [[0, 65.72], [0, 58.27], [2.03, 63.01], [4.74, 21.34], [29.81, 48.45], [47.77, 67.76]], \"sentences\": [\"There's a lady dog groomer wearing a black coat, grooming a golden retriever.\", \" There's another lady in a blue shirt standing with a teenage girl, also grooming a golden retriever.\", \" They are both grooming dogs in a large indoor arena.\", \" The lady in black is lifts up the dog's ears as she continues to shear the dog's fur.\", \" She's collects some of the fallen fur and puts it in a small black bag.\", \" She then continues to shear the dog's fur while the other dog groomer talks to the teenage girl.\"]}, \"v_iuQHLWWhSEY\": {\"duration\": 22.18, \"timestamps\": [[0.33, 9.09], [7.54, 17.08], [16.74, 21.62]], \"sentences\": [\"A young girl is seen standing up on an exercise beam.\", \" She spins herself around and performs more tricks.\", \"  She jumps off the side in the end as others watch.\"]}, \"v_HOTCR1uIaBM\": {\"duration\": 173.99, \"timestamps\": [[0, 6.09], [5.22, 35.67], [35.67, 73.07], [73.94, 132.23], [132.23, 173.99]], \"sentences\": [\"A whisk and several fruits are shown on a counter before the video actually starts.\", \"Taylor Swift then appears in a kitchen and begins talking to another man.\", \"The two finally begin and he whisks the chocolate in a bowl as she cracks eggs and eat strawberries.\", \"As they cook,the man continues being silly until Taylor finally gives in and starts dancing with him as well.\", \"She finally sits down and a cake appears in front of her with a large fire work like candle in the middle.\"]}, \"v_at8e-jBBU5E\": {\"duration\": 67.15, \"timestamps\": [[0, 5.37], [16.45, 19.81], [20.15, 31.23]], \"sentences\": [\"A man is climbing up a rock wall.\", \" He jumps to the top and gives a thumbs up.\", \" He stands at the bottom and talks to the camera.\"]}, \"v_ugDN2gDN99E\": {\"duration\": 7.52, \"timestamps\": [[0, 5.83], [2.11, 7.52]], \"sentences\": [\"A person is seen sitting on a piece of exercise equipment with his arms out in front.\", \" The person then moves back and fourth on the machine while rowing his arms back and fourth.\"]}, \"v_D3NZ45e9llI\": {\"duration\": 224.42000000000002, \"timestamps\": [[0, 57.23], [68.45, 155.97], [164.95, 224.42]], \"sentences\": [\"A helicoptor flies over a canyon, then we see people gearing up in the wilderness.\", \" They carry kayaks to the waterfall.\", \" They raft slowly through the rapids.\"]}, \"v_3AsQjx1lxLU\": {\"duration\": 234.37, \"timestamps\": [[1.17, 55.08], [58.59, 203.9], [188.67, 229.69]], \"sentences\": [\"The camera pans into a man and leads into shots of him running as well as pictures of him.\", \" A camera then shows a large group of people running and the camera panning around the man.\", \" More shots are shown of people running and waving to the camera.\"]}, \"v_8ulb1O_5gRs\": {\"duration\": 146.47, \"timestamps\": [[0, 15.38], [16.84, 48.34], [53.46, 71.04], [72.5, 108.39], [110.59, 125.23], [127.43, 146.47]], \"sentences\": [\"A man with a paintball stands on a deck holding a large red paintball gun.\", \" The man stands on the deck and shoots paintball at a stick figure drain on a wood board on the ground below.\", \" We see the drawing from ground level as it is covered with paint.\", \"  The man is shooting the target from ground level.\", \" The camera lens is covered with paint as the man shoots it.\", \" We are shown the target, and the camera covered in paint.\"]}, \"v_kHBTnFweJfw\": {\"duration\": 198.25, \"timestamps\": [[4.96, 96.15], [80.29, 194.29]], \"sentences\": [\"A woman is seen instructing a large group of people moving around and a small child wandering in the distance.\", \" The woman continues instructing the women around the parking lot dancing around themselves.\"]}, \"v__ye90Ou8SnE\": {\"duration\": 90.47, \"timestamps\": [[0, 14.47], [14.02, 33.92], [33.92, 52.47], [52.47, 72.82], [72.37, 90.47]], \"sentences\": [\"A man is shown applying tact to the back of a piece of tile.\", \"After,he beings to apply it down on the floor until it is covered.\", \"Another box is then opened and the process is continued.\", \"Next,a screen appears and a list of items needed is shown.\", \"The man then comes back with a small pad with colors of it and he compares it to the chart before he continues laying down the tile.\"]}, \"v_Jh07fhoPWEI\": {\"duration\": 144.1, \"timestamps\": [[0, 30.26], [30.98, 91.51], [91.51, 144.1]], \"sentences\": [\"A middle age woman is sitting in a classroom trying to solve a Rubik's cube.\", \"In between each take,a paragraph appears and begins to describe her experiences and the time it took her using each routine.\", \"Finally,a still image is shown of a solved cube and another paragraph comes across with her official time on it.\"]}, \"v_A3a6MNgab0c\": {\"duration\": 95.67, \"timestamps\": [[1.44, 56.92], [49.75, 95.67]], \"sentences\": [\"A man is seen speaking to the camera followed by him holding a bow and shows off it's specs.\", \" He continues speaking while holding the bow and shows how to aim the bow in various shots.\"]}, \"v_t6f_O8a4sSg\": {\"duration\": 218.52, \"timestamps\": [[0, 178.1], [71.02, 76.48], [133.3, 143.13], [149.69, 158.43], [179.19, 185.74]], \"sentences\": [\"Skateboarder to different tricks spinning their boards.\", \" People sit by a building and watch friends skateboard.\", \" The man does a trick and lands with one foot on the board.\", \" The skateboards miss their tricks and catch themselves.\", \" The skateboarder rubs the top of his grip tape with his hand.\"]}, \"v_rSxO9uspxT8\": {\"duration\": 70.43, \"timestamps\": [[0.7, 69.02], [4.93, 17.61], [17.61, 51.06], [51.76, 68.31]], \"sentences\": [\"A commercial demonstrates how to use versatile hedger and trimmer by using a man to exhibit the different uses for the yard tool in a sample yard.\", \"  A close up of a hedge trimmer is shown along with a man walking across a yard with the trimmer and demonstrating how to carry it.\", \"  The man is shown hedging several locations thick with foliage using different attachments to display the tool versatility.\", \"  Several still images of the trimmer are shown along with a marketing graphic.\"]}, \"v_K8f4LNNiQy8\": {\"duration\": 13.61, \"timestamps\": [[0, 8.91], [6.33, 13.61]], \"sentences\": [\"A bunch of shirtless guys run around a track.\", \"  A shirtless guy does a pole vault.\"]}, \"v_EFGtb9IDQao\": {\"duration\": 89.49, \"timestamps\": [[0, 13.42], [14.77, 24.16], [27.74, 68.01], [69.35, 77.41], [78.75, 89.49]], \"sentences\": [\" A woman is seated at a table with a shoe, cloth, bowl and baking soda.\", \" She picks up the shoe, and explains how to clean it using the products.\", \" She wipes it with the cloth, then mixes baking soda and water into the bowl.\", \" She then uses a toothbrush coated with the paste to scrub the shoe before cleaning it off.\", \" She shows off the clean shoe.\"]}, \"v_gLfvk2SSj1c\": {\"duration\": 138.02, \"timestamps\": [[4.83, 138.02], [11.73, 38.65], [38.65, 66.25], [66.25, 133.88]], \"sentences\": [\"A man talks to the camera and demonstrates how to climb a rock wall using another person as the exhibitor.\", \"  A man in a green t-shirt talks to the camera while standing next to a rock climbing wall interspersed with still shots of the wall and the wall elements (ropes, labels).\", \"  A man is shown climbing the wall while strapped into a protective harness.\", \"  The man returns to the wall and shows taped markers on the walls with numbers on them.\"]}, \"v_X9AnhFjdiXA\": {\"duration\": 149.1, \"timestamps\": [[0, 140.9], [14.91, 129.71]], \"sentences\": [\"A man tunes his guitar and then starts to strum it.\", \"  The man plays a few chords and continues to fiddle with his guitar.\"]}, \"v_ZefWc2tgltY\": {\"duration\": 102.03, \"timestamps\": [[2.04, 43.87], [30.1, 100.5]], \"sentences\": [\"A man is seen holding an instrument while speaking to the camera and leads into him playing the instrument.\", \" The man pauses to speak to the camera more while playing once more and again pausing to speak.\"]}, \"v_Z86tpjRaiK8\": {\"duration\": 231.56, \"timestamps\": [[11.58, 61.36], [61.36, 100.73], [100.73, 195.67], [195.67, 210.72]], \"sentences\": [\"Two people play fencing holding swords.\", \" A person touch with the sword on the right arm of the player, then they continue fencing.\", \" The player touches the chest of the person and the players continue fencing.\", \" The fencers touch each other with the swards.\"]}, \"v_EWlt9TTOw30\": {\"duration\": 82.5, \"timestamps\": [[0, 3.71], [8.25, 74.66], [53.21, 66.41], [75.49, 82.5]], \"sentences\": [\"We see a title screen on a decorative background.\", \" We then see a man decorating a Christmas tree.\", \" The man cuts tulle and sticks it in the tree.\", \" We then see the ending credits.\"]}, \"v_3TNDCTlLlGk\": {\"duration\": 214.73, \"timestamps\": [[0, 31.14], [31.14, 55.83], [55.83, 74.08], [74.08, 214.73]], \"sentences\": [\"cars are going on a road next to a lake.\", \" young men are taking out boards from the back part of the truck.\", \" men are doing wakeboard in a lake.\", \" men and women are sitting on a boat and behind them men are practicing wakeboard and drinking monster.\"]}, \"v_IMto8gJvRek\": {\"duration\": 195.49, \"timestamps\": [[0, 195.49], [14.66, 36.17], [38.12, 96.77], [97.74, 145.64], [168.12, 186.69]], \"sentences\": [\"We see a man in a kitchen making lemon juice.\", \" The man juices a lemon and washes the citrus juice.\", \" The man then slices a lemon in slices and takes out the seeds.\", \" He puts the sliced lemon in a blender and blends it.\", \" The man pours the juice into a pitcher and pours something else and stirs the pitcher.\"]}, \"v_wU-8acM-IUM\": {\"duration\": 210.03, \"timestamps\": [[0, 22.05], [22.05, 159.62], [166.97, 210.03]], \"sentences\": [\"A young man is standing outdoors on a patio.\", \" He is playing a golden saxophone.\", \" He is then shown talking about the instrument.\"]}, \"v_dBNZf90PLJ0\": {\"duration\": 167.74, \"timestamps\": [[0, 23.48], [21.81, 51.16], [52.84, 93.1], [86.39, 110.71], [109.87, 148.45], [149.29, 167.74]], \"sentences\": [\"A tent with clothing items are shown and transitions into a picture of people and a title screen.\", \" A large group of people are then seen holding and putting on wet suits and putting on life jackets while cheering with each other.\", \" A man in a raft speaks to them and the people practice riding in the rafts while laughing.\", \" The people climb down into the boat and begin riding down a hill into the boat.\", \" They are then seen riding down the rough rivers and holding their sticks into the air.\", \" The cheer and celebrate in the end clinging their glasses together.\"]}, \"v_1oM26-0yFcM\": {\"duration\": 176.19, \"timestamps\": [[0, 18.5], [39.64, 48.45], [148.88, 160.34]], \"sentences\": [\"A man is throwing a ball across a field.\", \" A man wearing a medal is waving at the audience.\", \" A man throws a ball and people on the field measure the distance.\"]}, \"v_ox6cIfguQ00\": {\"duration\": 103.82, \"timestamps\": [[0, 38.41], [35.82, 103.82]], \"sentences\": [\"A close up of hands on a horse is shown while riding in an area full of cars.\", \" The person rides along the area on the horse while cars continue to zoom past him.\"]}, \"v_uID_HFDKFKw\": {\"duration\": 69.34, \"timestamps\": [[0, 30.85], [25.31, 69.34]], \"sentences\": [\"A large group of people are seen standing around a lawn while one jumps into a water pit and the others throw a ball around.\", \" More people slide around in the water while some stand around and others kick and chase a ball.\"]}, \"v_Q8iXOTXdy2Y\": {\"duration\": 137.95, \"timestamps\": [[0, 5.52], [6.21, 130.36], [58.63, 64.84]], \"sentences\": [\"An athlete stretches out his arms before an event.\", \" Track and field athletes hurl weighted balls on a sporting field.\", \" An athlete jumps up and down to stretch out his legs between rounds in the game.\"]}, \"v_70bS0DkAeDo\": {\"duration\": 32.88, \"timestamps\": [[0, 7.07], [7.4, 19.23], [23.18, 32.88]], \"sentences\": [\"A man is lifting weights in a weight room, pulling a large barbell up to his chest.\", \" He stands shaking before lifting it above his head, trying to hold it in place.\", \" He drops the barbell hard onto the ground.\"]}, \"v_1MBVaveQDd8\": {\"duration\": 131.45, \"timestamps\": [[3.94, 49.95], [36.81, 102.53], [111.73, 131.45]], \"sentences\": [\"Various couples are seen dancing around with one another in a living room while people socialize on the side.\", \" The people continue spinning and dancing with one another and more people speak on the side.\", \" In the end people the dancers walk out of frame and people talk in the background.\"]}, \"v_sZ95YHZtVCc\": {\"duration\": 85.15, \"timestamps\": [[0, 85.15], [8.09, 24.27], [19.16, 48.96]], \"sentences\": [\"A woman is sitting down on a chair.\", \" A man comes up in front of her and stares at her breasts.\", \" Another man sits down and stares at her breasts.\"]}, \"v_xv8OYJ7t7-E\": {\"duration\": 94.62, \"timestamps\": [[0, 5.2], [5.68, 11.83], [11.83, 16.09], [21.29, 81.85], [82.79, 88.47], [88.47, 94.62]], \"sentences\": [\"We see the title with paint splashes.\", \" A lady in a bikini is holding a sundae glass.\", \" We see an image of a lady covered in ice cream.\", \" A girl sitting in a chair is covered in red goo and melted ice cream and whipped cream.\", \" We see the girl without the goo covering her.\", \" We see the closing title screen.\"]}, \"v_o86qcfpzO0g\": {\"duration\": 139.34, \"timestamps\": [[0.7, 69.67], [58.52, 135.16]], \"sentences\": [\"Two women are seen smoking a cigarette with one another while laughing and smiling.\", \" The women continue speaking to one another while smoking and looking deep into the camera.\"]}, \"v_46YBNutTwKg\": {\"duration\": 43.42, \"timestamps\": [[0, 13.03], [11.72, 32.13], [27.79, 41.25]], \"sentences\": [\"A shot of christmas tree is shown with people quickly moving in and out of frame.\", \" Lights are shown on the tree as people continue to move in and out of frame.\", \" The people continue hanging ornaments and show off the tree in the end.\"]}, \"v_7rpq2RXAoKE\": {\"duration\": 30.88, \"timestamps\": [[0, 10.19], [10.19, 30.88]], \"sentences\": [\"A young girl is seen swinging back and fourth on a set of monkey bars while staring at the camera.\", \" She continues swinging back and fourth across the bars and jumps down onto a beam.\"]}, \"v_ko89yQozE-4\": {\"duration\": 218.41, \"timestamps\": [[7.64, 215.13], [54.6, 185.65]], \"sentences\": [\"Two girls are sailing on a lake.\", \"  They are having a great time and are racing each other.\"]}, \"v_1jWMd8QaN5s\": {\"duration\": 38.04, \"timestamps\": [[0, 23.77], [24.53, 38.03]], \"sentences\": [\"A group of men and boys are playing a foosball game at a table in a building.\", \" They try to hit each other's opponent to win the game.\"]}, \"v_U1nvAxorOPQ\": {\"duration\": 115.28999999999999, \"timestamps\": [[0, 44.39], [43.81, 95.69], [95.11, 115.29]], \"sentences\": [\"A woman is seen speaking to the camera while holding up tools and another woman standing behind her brushing a horse.\", \" The woman uses a tool on the horse's hooves and then cleans off the front with a brush.\", \" The continues cleaning off the hooves and ends with her looking at the camera.\"]}, \"v_n1iu-AlcS-Q\": {\"duration\": 35.09, \"timestamps\": [[0, 14.74], [14.91, 21.93], [21.93, 35.09], [0, 29.12]], \"sentences\": [\"A woman pulls a disc on the floor with a pole while a man watch her.\", \" Then, the man throws a disc, but he drops the pole.\", \" After, the woman plays again, then woman and the man walk away.\", \" A person close to the woman walk next to her.\"]}, \"v_Yzb_4XMgcM4\": {\"duration\": 143.27, \"timestamps\": [[1.43, 45.13], [52.29, 142.55]], \"sentences\": [\"Various shots of a man are seen that lead into him performing with a baton.\", \" More people are shown practicing with a baton and leads into them performing in front of a crowd.\"]}, \"v_cQYAi2drreo\": {\"duration\": 71.94, \"timestamps\": [[0.36, 21.58], [20.5, 59.35], [49.28, 69.42]], \"sentences\": [\"A camera pans around a person carving a pumpkin while another sits on newspapers.\", \" More shots are shown of seeds cooking in an oven and people carving out pumpkins on the floor.\", \" In the end the pumpkins are shown in the dark.\"]}, \"v_6czh95dpwAA\": {\"duration\": 42.77, \"timestamps\": [[0, 2.99], [3.42, 27.37], [9.84, 13.69], [24.59, 25.66], [27.37, 31.65]], \"sentences\": [\"A woman carry a bucket with soapy water.\", \" Then, the woman wash a red car doing sexy moves.\", \" A man looks the woman while mows grass.\", \" A dog is inside a black car.\", \" After, the woman shows his old face.\"]}, \"v_IK9kE9IrcOM\": {\"duration\": 116.15, \"timestamps\": [[0, 12.78], [13.36, 25.55], [26.13, 76.66], [77.82, 98.14], [98.72, 99.89], [100.47, 116.15]], \"sentences\": [\"A man grabs a swiffer and cleans a small area of the floor in his living room.\", \" He puts down the swiffer and grabs a bottle and pours a liquid into a bucket.\", \" He grabs a mop and dips it into the bucket and rings out excess water.\", \" The mop is wet and he uses it to clean the living room.\", \" He opens a glass door to air the living room.\", \" He resumes mopping the living room.\"]}, \"v_Rnux3rCLdmI\": {\"duration\": 226.67000000000002, \"timestamps\": [[0, 35.13], [36.27, 71.4], [72.54, 226.67]], \"sentences\": [\"A black boot sits on a table with several items, including a pair of handcuffs.\", \" A man's hand brings out shoe polishing supplies.\", \" The man demonstrates how to polish the boot.\"]}, \"v_h67ctuwV-Nw\": {\"duration\": 190.2, \"timestamps\": [[0, 14.26], [14.26, 148.35], [148.35, 190.2]], \"sentences\": [\"a man is on a canoe in the river holding a paddle.\", \" man is standing on the canoe and start paddling in the river going down rapids.\", \" man fall out of the canoe and a serie of pictures of the man in the water are shown.\"]}, \"v_GIy6ZbAooOQ\": {\"duration\": 205.47, \"timestamps\": [[2.05, 91.44], [85.27, 198.28]], \"sentences\": [\"A man is seen speaking to the camera while holding a jump rope and begins jumping on the floor with the rope.\", \" The man continues jumping up and down with the rope moving all around the area and ends by fading to black.\"]}, \"v_VpZ3PaLi2RQ\": {\"duration\": 79.16, \"timestamps\": [[0, 11.87], [12.67, 52.24], [54.22, 79.16]], \"sentences\": [\"A view is seen of a child pushing a lawn mower.\", \" He pushes it far across the lawn, then turns.\", \" He continues mowing for the entire video.\"]}, \"v_JDn95TW9WoM\": {\"duration\": 148.59, \"timestamps\": [[2.23, 34.92], [34.92, 63.89], [63.89, 72.06], [72.81, 147.1], [97.32, 126.3]], \"sentences\": [\"A young man talks, and then two teams play indoor soccer.\", \" Then, the young man talks and then plays with a yellow ball and scores, while a person stand next to him.\", \" The teams continue playing indoor soccer.\", \" The young man plays with the person and scores, then they stand together while talking.\", \" Two teams play indoor soccer.\"]}, \"v_uhnY3lZ9ZCI\": {\"duration\": 158.07999999999998, \"timestamps\": [[0, 17.39], [24.5, 31.62], [82.2, 84.57]], \"sentences\": [\"A person goes down a large waterfall in a kayak.\", \" A man with a white hat on is sitting in a kayak.\", \" A kayak flips over and the man goes into the water.\"]}, \"v_Q78FBGHniCc\": {\"duration\": 187.68, \"timestamps\": [[0, 187.68], [23.46, 187.68], [43.17, 187.68], [149.2, 187.68]], \"sentences\": [\"Many leaves lay in a driveway.\", \" A leafblower blows them around.\", \" The leaves line a fence.\", \" Eventually most of the leaves are moved.\"]}, \"v_OOqGdga8t4s\": {\"duration\": 22.45, \"timestamps\": [[0, 22.45], [0, 14.71], [14.71, 22.45]], \"sentences\": [\"little kid is standing on a park holding a pole hitting a pi\\u00f1ata.\", \" people are standing behind the kid.\", \" anothe kids are standing behind th kid holding bags.\"]}, \"v_eic6dpU0ytM\": {\"duration\": 128.31, \"timestamps\": [[1.92, 43.63], [33.36, 91.1], [78.27, 127.03]], \"sentences\": [\"A person walking into frame sitting in a chair and knitting using yarn.\", \" Several shots of machines and yarn are shown as well as the woman still knitting in a chair and helping a baby.\", \" The woman continues knitting in her chair and showing off a hat in the end.\"]}, \"v_2fndjkCHsEY\": {\"duration\": 193.14, \"timestamps\": [[0, 193.14], [57.94, 66.63], [39.59, 153.55], [175.76, 192.18]], \"sentences\": [\"Children play a game of table soccer in teams of two.\", \" A goal is scored across the table by a defensive figurine player.\", \" A consecutive goals are scored and the opposing team is frustrated.\", \" The losing team finally scores a goal and celebrates.\"]}, \"v_D2ggFcgEbFo\": {\"duration\": 176.19, \"timestamps\": [[2.64, 86.34], [74.88, 176.19]], \"sentences\": [\"A large group of people are seen riding up a snowy hill while waving to the camera and riding down the mountain.\", \" People continuously ride up the hill as well as down while the camera watches them from all angles.\"]}, \"v_9ut_IDtfVzY\": {\"duration\": 150.09, \"timestamps\": [[0, 30.77], [31.52, 43.53], [45.78, 123.83], [126.08, 150.09]], \"sentences\": [\"A man and woman are trying to spray paint bike parts light green.\", \" The man holds the parts still while the woman sprays them.\", \" A yard filled with bikes and junk is shown, as well as customers perusing the bikes.\", \" The interior and exterior are shown, followed by a close up of a chocolate cake on a table.\"]}, \"v_rwxSphRRIL8\": {\"duration\": 88.52, \"timestamps\": [[10.18, 18.15], [18.15, 23.01], [30.98, 36.73], [57.53, 59.31], [73.91, 76.57], [81.88, 83.65]], \"sentences\": [\"Someone is putting water into a bowl.\", \" They add salt and oil into the water.\", \" They put pasta in the bowl and stir it around.\", \" He tastes the pasta before pouring it into a strainer.\", \" He pours oil on top of the pasta.\", \" He picks up the pasta with tongs.\"]}, \"v_StTr5O_wGXI\": {\"duration\": 44.05, \"timestamps\": [[0, 5.07], [11.23, 38.32], [40.08, 44.05]], \"sentences\": [\"A news man is talking inside a news room.\", \" We then see a game of volleyball taking place.\", \" The men fight over the ball, hitting it back and forth.\"]}, \"v_uDpLB-JDjEA\": {\"duration\": 99.15, \"timestamps\": [[0, 56.02], [42.14, 99.15]], \"sentences\": [\"A person is seen riding a horse whipping a rope around while a large crowd of people watch.\", \" The man then rides out on the horse roping a calf and tying him up.\"]}, \"v_XKu57UKSqPc\": {\"duration\": 121.07, \"timestamps\": [[0, 13.92], [13.92, 121.07], [13.92, 120.46]], \"sentences\": [\"woman is standing in a backyard with a lot of Schnauzer on a table and around her.\", \" woman is holding a razor and is cuting the hair of the dog.\", \" woman keeps grooming the dog and combing his hair.\"]}, \"v_2-SPZIF5lPY\": {\"duration\": 139.62, \"timestamps\": [[0, 139.62], [20.94, 43.98], [43.28, 67.02], [102.62, 119.38], [120.07, 122.17]], \"sentences\": [\"A man stands in a fencing suit while some men are off camera with headphones and mics in another room.\", \" A woman in fencing gear comes in.\", \" She begins to teach him while the man gallops up and down the rug.\", \" He begins to attach a dummy while the woman looks horrified.\", \"  The men backstage are again shown laughing and clapping.\"]}, \"v_PFrFwE3CfjE\": {\"duration\": 180.35, \"timestamps\": [[0, 180.35], [41.48, 82.06], [82.96, 180.35]], \"sentences\": [\"A pregnant woman is standing in front of a shelf.\", \" She dips paper into a black bucket and presses it onto the back of the shelves.\", \" She continues rubbing the paper to stick to the wall.\"]}, \"v_-Z98HU6T7J8\": {\"duration\": 131.96, \"timestamps\": [[1.98, 27.05], [27.71, 92.37], [93.03, 122.06], [122.72, 131.96]], \"sentences\": [\"A person walks out the front door of a building.\", \" A man in a green shirt smokes a cigarette and blows the smoke on an animal attached to a window.\", \" The man places the cigarette on the mouth of the animal.\", \" The animal drops the cigarette.\"]}, \"v_CFBmZ1g16H8\": {\"duration\": 93.32, \"timestamps\": [[0, 17.26], [19.13, 81.19], [83.06, 93.32]], \"sentences\": [\"A scuba diver is seen under the water, swimming.\", \" He performs different swimming maneuvers, kicks, and types.\", \" He continues gliding along the ocean floor.\"]}, \"v_sCxGclun1E0\": {\"duration\": 110.06, \"timestamps\": [[0, 110.06], [96.86, 110.06], [98.51, 110.06]], \"sentences\": [\"Two children are standing behind a counter stirring ingredients in pots.\", \" A person in a white shirt comes up in front of them.\", \" He dips his finger in the bowl and licks it.\"]}, \"v_qMj2sCoRHqY\": {\"duration\": 154.51, \"timestamps\": [[0, 20.09], [20.86, 55.62], [55.62, 104.29], [104.29, 154.51]], \"sentences\": [\"A man is sitting at a chair inside of his home all by his lonesome.\", \" He has a harmonica in his hand which he begins to play a song on.\", \" He is very into this song that he is playing, he sits there very concentrated just playing his song.\", \" He is an older man with many years of experience on the harmonica so for his it is a passion that he takes to heart.\"]}, \"v_lnHdEtuXU8w\": {\"duration\": 77.81, \"timestamps\": [[0, 28.01], [28.01, 77.81]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her holding up a hair dryer.\", \" She pulls down her shirt and then blow dries around her shirt followed by moving her hands up and down.\"]}, \"v_98YZQ0gNjpQ\": {\"duration\": 142.73, \"timestamps\": [[0, 42.11], [39.25, 108.48], [79.93, 140.59]], \"sentences\": [\"Two people are seen sitting on dirt bike followed by a shot of a sign and them riding on a trail.\", \" The men ride on the dirt bikes all along the trail moving back and fourth.\", \" The men continue to ride around while the camera captures their movements and they stop to talk.\"]}, \"v_UajYunTsr70\": {\"duration\": 21.57, \"timestamps\": [[0, 1.94], [2.59, 12.62], [12.73, 21.57]], \"sentences\": [\"A calico cat is seen sitting on a white sheet.\", \" The cat closes its eyes as it grooms itself.\", \" It uses its tongue to lick its paw over and over.\"]}, \"v_4VAhZEpQsv8\": {\"duration\": 195.65, \"timestamps\": [[8.8, 116.41], [114.46, 192.72]], \"sentences\": [\"A close up of nails are shown with a person creating various designs on the nails with a brush.\", \" The person continues painting the nails and shows a picture of the finished nails in the end.\"]}, \"v_O5vpeIfQxLQ\": {\"duration\": 158.73, \"timestamps\": [[14.29, 101.59], [19.05, 101.59], [85.72, 136.51]], \"sentences\": [\"A man eats ice cream with his hands while a girl eating ice cream next to him watches and laughs.\", \" A woman on the man's other side is also eating ice cream with her hands.\", \" Another woman watches as they each hold up their empty cup.\"]}, \"v_i_16EfqIrFg\": {\"duration\": 4.71, \"timestamps\": [[0, 0.59], [0.71, 2.43], [2.52, 4.71]], \"sentences\": [\"Men are on top of the roof of a house.\", \" They are picking up shingles that are being removed.\", \" A man is using a scraper to lift them up and separate them from the roof.\"]}, \"v_qY7LG7r_IA8\": {\"duration\": 228.65, \"timestamps\": [[10.29, 35.44], [29.72, 196.64], [187.49, 228.65]], \"sentences\": [\"The lady in stripes shirt reach for the girl in white shirt.\", \" Two girls started dancing swirling around  and pulling each other.\", \" When the dance finished she waved to the camera and made a face.\"]}, \"v_JWN0cMm-8ug\": {\"duration\": 217.62, \"timestamps\": [[0, 21.76], [23.94, 28.29], [23.94, 41.35], [41.35, 65.29], [66.37, 217.62], [100.1, 217.62], [213.27, 217.62]], \"sentences\": [\"A man in a black shirt is standing on the sidewalk talking.\", \" Another man in a white hat talks.\", \" A busy sidewalk is shown.\", \" The man in the black shirt talks in front of an old building.\", \" People are sitting in an arena.\", \" A bull comes into the arena and tries to attack the clowns.\", \" The crowd cheers as the bull gets dragged out of the arena.\"]}, \"v_dQR6VEemP24\": {\"duration\": 54.1, \"timestamps\": [[0, 5.95], [8.39, 44.63], [45.99, 54.1]], \"sentences\": [\"A small dog is in a tub, and woman uses a sprayer to get him wet.\", \" He tries to get out, as she soaps him down and scrubs him clean.\", \" She then rinses him with the sprayer, and towels him dry.\"]}, \"v_D7Oc3SLX0wo\": {\"duration\": 71.73, \"timestamps\": [[0, 71.73], [5.38, 7.89], [7.89, 8.61], [12.91, 13.63], [26.9, 29.41], [48.06, 50.93]], \"sentences\": [\"The people play volleyball on the beach.\", \"  The ball goes out of bounds.\", \"  The man in green picks up the ball.\", \"  The man with red shorts serves the ball.\", \"  The man serves the ball again.\", \"  The ball goes out of bounds again.\"]}, \"v_xsdrqauYhJs\": {\"duration\": 130.59, \"timestamps\": [[0, 15.67], [15.67, 28.73], [28.73, 73.78], [73.78, 105.12], [105.78, 130.59]], \"sentences\": [\"Two young girls are standing in the kitchen preparing to cook.\", \"They then open a box of brownies,dumps the contents of in a bowl and get an egg out of the fridge.\", \"After,the two continue to stir the contents in the bowl and eating the mix and placing them on a pan.\", \"Once the cookies are in the oven,the two girls sit in front of the oven and watch the cookies bake.\", \"When they are done,they are placed on the table and the two begin eating.\"]}, \"v_cjUz6gVQPEs\": {\"duration\": 89.07, \"timestamps\": [[5.34, 10.24], [6.68, 71.7], [62.35, 65.47], [65.47, 66.36], [74.82, 89.07]], \"sentences\": [\"A gymnast jumps off of a board to do a bar routine.\", \" He does his routine in front of an audience.\", \" He does a couple of back flips on his dismount and lands on the mat.\", \" He lifts his hands in the air and walks off the mat.\", \" Writing then comes on the screen promoting social media.\"]}, \"v_PCSlAOYPMOs\": {\"duration\": 88.55, \"timestamps\": [[0, 16.82], [16.82, 38.08], [38.52, 60.66], [60.66, 88.55]], \"sentences\": [\"A man and a woman are playing tennis inside of a enclosed court.\", \"  They hit the ball back and forth to each other, running around trying to catch it.\", \" They start to show where is the best place to stand to hit it back, and what the footwork should be.\", \" They are playing inside of a marked area in the shape of a square with a few lines.\"]}, \"v_YQfJWGJ75Pk\": {\"duration\": 89.56, \"timestamps\": [[0, 1.34], [2.69, 25.08], [25.08, 75.23], [0, 89.56]], \"sentences\": [\"A man is standing with his legs apart and is holding a sprayer in his right hand and spraying a dresser with many drawers as a man walks past him and looks at what he's doing.\", \"The man brings his legs closer together while still spraying and he begins closing the drawers.\", \"The man then goes to the right side of the dresser and sprays there, then goes back to the front, then the top, and then on the left side.\", \"The dresser the man is spraying is on a moving platform that is on wheels.\"]}, \"v_oA_uJ9gLvUQ\": {\"duration\": 70.71000000000001, \"timestamps\": [[0, 6.01], [6.36, 10.25], [10.61, 40.3], [40.66, 58.33], [58.69, 63.99], [64.34, 70.71]], \"sentences\": [\"An opening intro to a video showing the name of the company.\", \"  A title screen appears with the subject of knife sharpening with a bench stone.\", \"  Two men are in a room and the man with a blue shirt takes out a bench stone and with a little lubricant on the stone takes an knife and explains how to sharpen it.\", \"  Then he stops sharpening the knife and takes out some pieces of paper to show how sharp the knife is as he cuts slivers of paper with the knife.\", \"  Then another screen appears with a computer screen and along side it encouraging words to visit two websites.\", \"  Then another screen appears with the name of the company.\"]}, \"v_Czd1PFeumIo\": {\"duration\": 164.12, \"timestamps\": [[1.64, 69.75], [64.83, 161.66]], \"sentences\": [\"A small group of people are seen performing on a stage playing various ingredients and leads into a couple dancing with one another.\", \" The people spin around the stage with one another as the band continues to play and ends with a bow and the people walking away.\"]}, \"v_Oent5pguFk4\": {\"duration\": 21.18, \"timestamps\": [[0, 21.18], [4.02, 11.75], [17.15, 21.18]], \"sentences\": [\"A lady is riding an elliptical machine in a gym.\", \" The lady looks towards the camera and talks.\", \" The lady looks forward then back at the camera and smiles.\"]}, \"v_kx0ZSPOOFJ0\": {\"duration\": 9.57, \"timestamps\": [[0, 4.5], [4.21, 9.57]], \"sentences\": [\"A shirtless man is seen standing ready holding a large pole in his hands.\", \" He then runs down a long track and throws the pole off into the distance.\"]}, \"v_E5zIMqTj4nc\": {\"duration\": 103.96000000000001, \"timestamps\": [[1.04, 97.72], [25.99, 97.72]], \"sentences\": [\"A man is seen standing on a snowboard and speaking to the camera while edging his way down a hill.\", \" He then moves himself backwards while still moving down the hill and speaking to the camera.\"]}, \"v_4SecbKo1iGE\": {\"duration\": 148.75, \"timestamps\": [[0, 17.85], [14.13, 40.91], [40.16, 78.84], [78.84, 148.75]], \"sentences\": [\"A man stands next to a cutting table and talks to the camera.\", \" The man coats a long piece of lumber with a paint brush.\", \" The man wipes down the lumber with a towel.\", \" A woman sands the piece of lumber.\"]}, \"v_p9hJmlWGvFI\": {\"duration\": 50.76, \"timestamps\": [[0, 46.44], [0, 11.93], [12.44, 46.19], [46.95, 50.76]], \"sentences\": [\"Two teams play a game of beach soccer.\", \" A goal is scored from far away on the opposite side of the field.\", \" A man scores with a bicycle kick.\", \" A news anchor covers the events in a studio.\"]}, \"v_87pCIcWgwVM\": {\"duration\": 212.35, \"timestamps\": [[3.19, 54.15], [69.01, 150.77], [167.75, 205.98]], \"sentences\": [\"A camera pans out of several landscapes and leads into clips of a man walking and jump roping.\", \" The man is seen jump roping all over town while the camera captures him from several angles.\", \" More shots are shown of him jump roping while looking forward to the camera.\"]}, \"v_JE50XTpCN78\": {\"duration\": 219.03, \"timestamps\": [[0, 18.62], [20.81, 139.09], [148.94, 219.03]], \"sentences\": [\"Two women are sitting behind a table covered in manicure items.\", \" A woman talks as she does the other woman's nails.\", \" She paints, trims, and smooths her nails.\"]}, \"v_6U081DbNJIY\": {\"duration\": 121.02, \"timestamps\": [[0, 38.73], [34.49, 50.83], [50.83, 121.02]], \"sentences\": [\"A boy in blue shirt and short hair is walking towards the line then threw the stick to the field.\", \" A male athlete run towards the line then threw the longer stick, and fell on the floor.\", \" The boy in blue shirt and the athlete threw the stick in different occasion.\"]}, \"v_CjoAnld43C4\": {\"duration\": 217.39, \"timestamps\": [[0, 118.48], [91.3, 217.39]], \"sentences\": [\"An intro leads into two men fencing back and fourth with one another and pausing in between to take breaks.\", \" The men continue fighting back and fourth with one another and the camera ends with credits.\"]}, \"v_t1U8fJVEztQ\": {\"duration\": 13.33, \"timestamps\": [[0, 13.33], [2.67, 7.26], [7, 12], [12, 13.33]], \"sentences\": [\"We see people running down the street in a marathon.\", \" A motorcycle rides past going left.\", \" A lady in a bikini is followed.\", \" The camera pans to the left.\"]}, \"v_C3Mdjku7ZmM\": {\"duration\": 127.15, \"timestamps\": [[0.64, 125.88], [0.64, 45.14], [29.88, 45.14], [50.23, 120.16], [115.71, 120.16]], \"sentences\": [\"A person demonstrates how to unclog a sink using a bristle brush.\", \"  Water rolls down a sink as a narrow bristle brush hovers over the water filled sink.\", \"The stopper in the bottom of the sink goes up and down as the bristle continues to hover over the sink.\", \"  A person turns on the sink faucet and then jams the bristle brush down the faucet and pulls it up and down loosening dark gunk and forcing it into the sink.\", \"  The person rinses the bristle brush off.\"]}, \"v_chMp_uvII5g\": {\"duration\": 45.42, \"timestamps\": [[0, 45.42], [11.81, 45.42]], \"sentences\": [\"people are in snowslides going down a snowy hill.\", \" woman is pulling the snowsliders so they can slide on the hill.\"]}, \"v_CdwgIN9FkdY\": {\"duration\": 35.81, \"timestamps\": [[0.36, 34.55], [2.33, 17.9], [17.9, 35.63]], \"sentences\": [\"A man, alone in a room demonstrates two arm pulls with an elastic band attached to a white pole in a room, while he kneels on a blue gym mat.\", \"  A man in grey shorts and black sneakers kneels on a blue gym mat in the corner of a room and pulls and elastic band from behind him with his arms.\", \" The man does this exercise twice with the elastic band attached to a metal pole in the corner of the room.\"]}, \"v_w--X02F3MHM\": {\"duration\": 35.83, \"timestamps\": [[0, 5.2], [6.81, 30.28], [30.81, 35.83]], \"sentences\": [\"A group of three little boys line up to play hopscotch.\", \" They jump and skip across the chalk drawn game.\", \" They take turns until all three have jumped across.\"]}, \"v_Rj_SwlpOhNk\": {\"duration\": 109.59, \"timestamps\": [[1.64, 31.78], [28.49, 85.48], [72.88, 106.85]], \"sentences\": [\"A person is seen paddling along the water while the water pushes up along a canoe.\", \" The person in front continuously paddles while the person behind them records.\", \" The person continues riding along in the canoe.\"]}, \"v_jWPr92KwXeY\": {\"duration\": 150.37, \"timestamps\": [[0, 63.91], [51.13, 116.54], [95.49, 146.61]], \"sentences\": [\"A person is seen riding down a snowy hill on a set of skis while a cameraman follows from behind.\", \" The person is seen doing tricks in the snow as well as riding past others quickly.\", \" The person continues riding around the area while the camera captures all of his movements.\"]}, \"v_tik7rHU_DM8\": {\"duration\": 44.4, \"timestamps\": [[0, 4.22], [6.44, 26.86], [28.41, 44.4]], \"sentences\": [\"A rodeo clown is running from a bull.\", \" The bull is angry, chasing the clown.\", \" The man uses a barrel to try to ward off the bull.\"]}, \"v_IBscTNN6qfY\": {\"duration\": 237.03, \"timestamps\": [[0, 40.3], [40.3, 107.85], [107.85, 164.74], [164.74, 237.03]], \"sentences\": [\"Any ethnicity can have their hair in corn rolls, a woman is inside of her house doing someone's hair.\", \" She begins to part the woman's hair and then gives the information of the products that you would need in order to do it.\", \" She adds gel and begins to start braiding the hair.\", \" Once she has more or less finished braiding her hair she talks about the process she did on the woman.\"]}, \"v_AH4v5vqsUlc\": {\"duration\": 56.33, \"timestamps\": [[0, 5.91], [5.91, 10.42], [10.42, 34.64], [34.64, 49.57], [49.57, 56.33]], \"sentences\": [\"A little boy is climbing on a outside gym.\", \"  A second little boy is playing too.\", \"  They both go down the slide together.\", \"  The first little  boy walks along the playground and points at something.\", \"  Then he goes back to climbing.\"]}, \"v_nbcRj00xCKM\": {\"duration\": 133.86, \"timestamps\": [[0, 45.51], [45.51, 105.08], [105.75, 133.86]], \"sentences\": [\"A small GoPro is shown and a woman appears in the  middle of the water.\", \"She then gets up and begins traveling in the water while holding on to a bar attached to a rope.\", \"The journey continues,and person begins to sway back and forth as the waves continue crashing up against her.\"]}, \"v_r8DXz1FOb90\": {\"duration\": 128.13, \"timestamps\": [[0, 116.6], [4.48, 116.6], [118.52, 128.13]], \"sentences\": [\"A dog is running around chasing a frisbee.\", \" Two people are throwing a frisbee for the dog.\", \" The dog runs with the frisbee in its mouth.\"]}, \"v_dB50ZkOlDzY\": {\"duration\": 41.87, \"timestamps\": [[0, 5.86], [5.86, 37.47], [37.47, 41.87]], \"sentences\": [\"A person is doing a hand stand on parallel bars.\", \" He then swings back and forth.\", \" The clip ends with the man in a hand stand.\"]}, \"v_XxYoSn6NE_4\": {\"duration\": 220.96, \"timestamps\": [[0, 20.99], [22.1, 72.92], [72.92, 124.84], [124.84, 181.19], [181.19, 220.96]], \"sentences\": [\"An Asian woman is standing in a bathroom and begins smiling before several pictures of celebrity's hair styles are shown.\", \"The girl then comes back and turns around and begins braiding a small portion of the top of her hair.\", \"After,she turns around to show that she is starting another braid in the front all the way to the back.\", \"Both braids are complete and she clips them both up with a bobby pin.\", \"Finally,the girl smiles,puts up the peace sign and still images of the final hair style is shown.\"]}, \"v_9gU5be5YCVw\": {\"duration\": 58.65, \"timestamps\": [[0, 2.93], [3.23, 53.08], [53.38, 58.65]], \"sentences\": [\"A man walks up to parallel bars while spectators, competitors, and officials are in the background.\", \" The man performs a routine on the parallel bars.\", \" The man finishes his routine and dismounts.\"]}, \"v_zwFxq1MnaO0\": {\"duration\": 166.23, \"timestamps\": [[6.65, 104.73], [66.49, 164.57]], \"sentences\": [\"Three people are seen standing together in a room and begin dancing around together in motion.\", \" The three continue dancing around moving their arms and legs and a man demonstrating in the front.\"]}, \"v_S-DOW63629o\": {\"duration\": 84.43, \"timestamps\": [[0, 26.17], [20.68, 61.63], [58.26, 81.47]], \"sentences\": [\"Two men are seen sitting before drums and looking over to one another.\", \" One man plays a sound and the other follows the same beat.\", \" The men then play together at the same time.\"]}, \"v_cnjaB6GFpSc\": {\"duration\": 158.9, \"timestamps\": [[0, 131.09], [131.88, 158.1], [158.1, 158.9]], \"sentences\": [\"A large aerobic class is taking place in a mirrored room.\", \" The group does jumping jacks on their stools and returns to aerobics.\", \"  \\\"Reversehook Productions\\\" appears on screen with copyright information.\"]}, \"v_59R_1aBnFn4\": {\"duration\": 6.18, \"timestamps\": [[0, 3.06], [3.18, 6.18]], \"sentences\": [\"A boy is on another boy's shoulders.\", \" The other boy body slams him onto a mat.\"]}, \"v_gsJ953MHtpY\": {\"duration\": 214.86, \"timestamps\": [[0, 214.86], [6.45, 29.01], [23.63, 42.97], [38.67, 70.9], [66.61, 109.58], [119.24, 150.4], [145.03, 178.33], [174.03, 210.56]], \"sentences\": [\"There's a man running on stilts across a large stadium.\", \" He begins running on the track field, then jumps over a fence goes on towards the bleachers.\", \" He climbs up the stairs of the bleachers and then gets back down.\", \" Then he goes past the surrounding building near the stadium and jumps around the sidewalk.\", \" Then he goes past the building and jumps over a fence to go back on the track field.\", \" He jumps up high on his stilts several times by raising his feet high up in the air.\", \" Then he jumps over the fence back onto the sidewalk and goes up and down the building steps.\", \" He continues jumping in front of the building and over the steps and onto the sidewalk and goes off towards the field again.\"]}, \"v_HwRiUpC5mf4\": {\"duration\": 201.85, \"timestamps\": [[0, 9.08], [9.08, 10.09], [12.11, 13.12], [77.71, 87.81]], \"sentences\": [\"There are 3 people in the desert.\", \" a boy is shown petting the camel.\", \" There is also a mother holding her child while standing next to the camel.\", \" Two people are riding the camel and someone is in front guiding the camel by holding the rope.\"]}, \"v_UGujWA07GkM\": {\"duration\": 103.53999999999999, \"timestamps\": [[0, 49.7], [40.38, 103.54]], \"sentences\": [\"A big man in white shirt is standing next to a table with chips and cards, while a man is suit standing next to him, and in front of him are men and woman playing cards.\", \" An old man and a married couple are being interviewed, the man is stacking up the chips.\"]}, \"v_pznmOdbp7E0\": {\"duration\": 210.4, \"timestamps\": [[5.26, 8.42], [11.57, 51.55], [51.55, 210.4]], \"sentences\": [\"The camera shows a cake on top of a stove.\", \" A text list of ingredients and equipment for the cake is shown.\", \" A montage of scenes showing the sequential steps of the cake recipe is shown.\"]}, \"v_0r-_a6m5k-0\": {\"duration\": 46.65, \"timestamps\": [[0, 35.69], [0.23, 14.23], [1.17, 15.16], [18.19, 46.65]], \"sentences\": [\"Three women sit on the floor in an outdoor setting, under an area with an overhead metal tent cover, as one woman peels a large fruit or vegetable and the other two women eat.\", \"  A woman is sitting on the floor peeling a large vegetable or hard fruit.\", \"  The woman next to her is eat from a bowl of soup as they both sit on the floor.\", \"  A third woman is sitting on the floor next to them, eating as well, before the camera pans to an area behind them where there are several women standing and walking underneath the metal tent covering.\"]}, \"v_p3vw2UJvLZE\": {\"duration\": 38.06, \"timestamps\": [[0, 5.14], [5.14, 11.61], [11.61, 27.02], [27.21, 38.06]], \"sentences\": [\"There is about four kids sitting at a black jack table playing a hand of cards.\", \" There is a group of adults behind them watching and just standing by.\", \" The dealer flips some cards and moves some others.\", \" One of the girls on the ends ask the dealer a question and he shakes his head.\"]}, \"v_h3qKte2gv14\": {\"duration\": 90.05, \"timestamps\": [[0, 12.16], [12.16, 14.86], [19.81, 32.42], [32.42, 64.38], [64.83, 69.34], [70.24, 77.89]], \"sentences\": [\"A person is holding a cigarette in front of a door.\", \" They open the door and walk outside.\", \" They are standing outside and light the cigarette.\", \" They take a drag off the cigarette and blow the smoke.\", \" They make a funny face and move their head around.\", \" They take a drag and blow the smoke towards the camera.\"]}, \"v_pMDFkrK0KRc\": {\"duration\": 185.09, \"timestamps\": [[9.25, 43.5], [46.27, 88.84], [89.77, 142.52], [143.44, 180.46]], \"sentences\": [\"A man talks and shows a package of contact lenses.\", \" Then, the man takes off his glasses and take a contact lens with his finger, then he puts again his glasses.\", \" After, the man takes off his glasses, then  open his eye with two fingers and put the contact lens.\", \" Next, the man put the contact lens in the other eye.\"]}, \"v_vrY1ZMqjMog\": {\"duration\": 51.85, \"timestamps\": [[0, 26.18], [26.44, 30.33], [30.33, 47.96], [48.48, 51.85]], \"sentences\": [\"A man is wiping plaster on a wall while walking towards the camera.\", \" The man rubs a section of the wall.\", \" The man walks away from the camera as he wipes the wall.\", \" The man then walks towards the camera.\"]}, \"v_GrACpo7aonA\": {\"duration\": 213.37, \"timestamps\": [[0, 33.07], [36.27, 66.14], [75.75, 213.37]], \"sentences\": [\"Several close ups are shown of various equipment.\", \" The photos flash by very fast.\", \" A man is seen playing an elaborate drum set.\"]}, \"v_9fQ2wWFJJGo\": {\"duration\": 213.42000000000002, \"timestamps\": [[0, 23.48], [27.74, 132.32], [136.59, 213.42]], \"sentences\": [\"A man and woman are standing on a beach holding a paper bag.\", \" A woman is kneeling on the beach, forming domes with buckets in the sand.\", \" Someone hands out stuffed animals to the man and woman, and he gives them to the girls who were building in the sand.\"]}, \"v_T69Cadlc62E\": {\"duration\": 68.43, \"timestamps\": [[1.71, 22.24], [22.24, 46.53], [46.53, 49.27], [49.27, 64.32]], \"sentences\": [\"A manager explains the players how to play Jai-Alai while a group of boys observe the training.\", \" Then, the players take turns to hit balls, and the manager shows to hit the ball.\", \" Also, a Jai-Alai macot hit a ball using the Jai-Alai cesta.\", \" After, a players throw balls on front a goal.\"]}, \"v_dNgXkPmvU-c\": {\"duration\": 172.97, \"timestamps\": [[0, 94.27], [85.62, 172.97]], \"sentences\": [\"Sneakers and socks are thrown on the carpeted floor, a man's feet and legs are shown, the man sat on the floor then unroll the socks, he then put on his green sneaker, tied it and then he moved on the next foot, wiped his toes, put the socks on and then the sneakers, tied it tight.\", \" The man walked on the carpet, then kneel down to show the back of the sneakers, sat on the floor rub one sneaker to the other.\"]}, \"v_r-BJYixThME\": {\"duration\": 20.9, \"timestamps\": [[0, 20.9], [1.04, 16.61], [10.14, 16.93], [16.82, 19.64]], \"sentences\": [\"There are some people snow tubing on a slope covered with snow.\", \" Two young children come down the slope in red and black tubes.\", \" They come down steadily and smoothly till they reach the bottom of the slope.\", \" There are some other people climbing up the slope with tubes and sledges in their hands.\"]}, \"v_Cz5fahiO1AA\": {\"duration\": 61.93, \"timestamps\": [[0, 13.93], [13.31, 32.51], [32.51, 61.93]], \"sentences\": [\"A man is shown speaking to the camera and close up of various cook pots and pans.\", \" He pours noodles and salt into a pot and stirs the noodles around while speaking to the camera.\", \" He checks the noodles with a knife and then pours the noodles, water, and sauce into a pan.\"]}, \"v_uz04njTFKP8\": {\"duration\": 45.77, \"timestamps\": [[0, 7.55], [7.09, 26.09], [26.54, 45.77]], \"sentences\": [\"A brown sandy tennis court is shown and two male individuals begin playing the sport.\", \"As they play,the crowd cheers for them and the ball is dropped.\", \"One of the male,picks the balls up and restarts the game and the yellow logo for the World Tour appears again.\"]}, \"v_Zt8zZhMs4Es\": {\"duration\": 236.47, \"timestamps\": [[0, 10.64], [10.64, 227.01], [42.57, 48.48], [63.85, 66.21], [85.13, 94.59], [137.15, 141.88], [178.54, 189.18], [209.28, 214.01], [214.01, 219.92], [227.01, 236.47]], \"sentences\": [\"A man starts serving tennis balls indoors and the title appears.\", \" The man man keeps serving and the #3 tips slides across the screen.\", \" The man swings the racket before serving.\", \" The man looks at the ground behind him before serving the ball.\", \" The camera angle changes and we move to tip #4.\", \" The man swings the racket without serving.\", \" The man stretches his arm out.\", \" The man backs up and moves the racket.\", \" We see tip #3 again.\", \" We see the ending title card.\"]}, \"v_HHG1kCydLYU\": {\"duration\": 189.82, \"timestamps\": [[0, 66.44], [72.13, 189.82]], \"sentences\": [\"A group of women are in a kitchen, eating lettuce leaves.\", \" They place ingredients into a bowl of lettuce, tomatoes, and sauces.\"]}, \"v_uDmEOkAXTfo\": {\"duration\": 127.85, \"timestamps\": [[0, 28.77], [29.41, 53.7], [53.06, 81.82], [83.1, 88.86], [95.25, 116.98], [118.26, 127.85]], \"sentences\": [\"We see a lady talking to the camera while standing outdoors.\", \"The location changes to in front of a salon.\", \" The lady goes into a salon and talks to the receptionist then the camera.\", \" The lady flips through a hairstyle book.\", \" The lady is having her hair cut by a  a stylist.\", \" The lady talks and points to the camera.\"]}, \"v_Z2QA7dUVwMM\": {\"duration\": 212.51, \"timestamps\": [[0, 212.51], [40.38, 77.57], [77.57, 157.26], [159.38, 196.57], [196.57, 212.51]], \"sentences\": [\"A person have a car tire that is broken down into two pieces.\", \"the person then squeeze dish washing liquid around the edge of the tire,flips it over and tries to put the tire around the middle piece with a metal stick.\", \"the guy then squeeze dish washing liquid around the edge of the other side of the tire to make it easy to fit back around the middle center piece.\", \"the guy then sprays the tire with some type of liquid and another guy uses a long stick with fire on the end of it to do some thing.\", \"finally the guy pump air back into the car tire.\"]}, \"v_KI6FNa3BwMM\": {\"duration\": 214.53, \"timestamps\": [[0, 50.41], [51.49, 108.34], [108.34, 172.7], [172.7, 214.53]], \"sentences\": [\"A set of rules begins to pan through the screen on a blue back drop.\", \"Once they are gone,a group of men are inside of a gym playing a game of indoor soccer.\", \"There is a penalty kick and then the game continues as they try and make a goal and then the other team gains control.\", \"Both teams continues to go at it and the men stand on the side serving as the referee.\"]}, \"v_clSku91LoQQ\": {\"duration\": 126.27, \"timestamps\": [[0, 70.71], [53.67, 126.27]], \"sentences\": [\"A band is seen performing on a stage in front of a large audience with a small child singing and playing the harmonica.\", \" The boy continues playing with the band as the audience claps.\"]}, \"v_L1B_cE8waag\": {\"duration\": 199.82999999999998, \"timestamps\": [[0, 11.99], [11.99, 194.84], [194.84, 199.83]], \"sentences\": [\"A black intro screen with a logo and words appear in red and white and black.\", \" A series of clips begin to play and they include a lot of people riding skateboards and wearing safety gear as they fall many times in many different areas that include residential roads, parking lots, skate parks,dirt paths, empty roads and etcetera.\", \" The black outro screen has a logo and blue and red words that read \\\"Wear your helmet, and skate safe! Subscribe for more Bails\\\".\"]}, \"v_j4-w606GnYw\": {\"duration\": 195.05, \"timestamps\": [[3.9, 87.77], [71.19, 190.17]], \"sentences\": [\"A large group of people are seen standing in a dance studio and lead into performing a dance routine together with a man leading in front.\", \" The group continues dancing with one another while moving back and fourth on the floor.\"]}, \"v_vBOejU7dBzY\": {\"duration\": 107.7, \"timestamps\": [[0, 8.62], [8.62, 17.23], [17.23, 23.69], [23.69, 33.39], [33.39, 40.39], [40.39, 49], [49, 60.31], [60.31, 66.77], [66.77, 87.23], [87.23, 107.69]], \"sentences\": [\"A woman sprays a horses mane with a product.\", \" She sprays the tail with the product.\", \" She then combs the tail.\", \" The horse is running outside.\", \" A close up on the product used to spray.\", \" She is now combing the mane again.\", \" Now she is spraying the tail then she combs it.\", \" Another close up of the product.\", \" She then begins to speak standing next to the horse.\", \" she holds up the product and grabs the horses tail.\"]}, \"v_fWVUEOVUzS4\": {\"duration\": 149.4, \"timestamps\": [[0, 20.17], [17.93, 120.27], [81.42, 146.41]], \"sentences\": [\"A small child is seen holding a tennis racket with another standing on the side.\", \" The men begin hitting a ball back and fourth while other people watch on the side.\", \" The two continue hitting the ball while people watching on the side.\"]}, \"v_len7R78v5NY\": {\"duration\": 98.28999999999999, \"timestamps\": [[0, 22.12], [22.12, 50.13], [49.64, 98.29]], \"sentences\": [\"Two men are seen standing in front of a piece of exercise equipment speaking to the camera.\", \" One gets on the equipment and begins moving his arms back and fourth.\", \" The other man uses the machine while the other speaks to the camera.\"]}, \"v_EF74-5YIhAk\": {\"duration\": 44.68, \"timestamps\": [[0, 18.99], [20.33, 44.68]], \"sentences\": [\"Two people prepare to go kayaking and are pushed into the lake.\", \"  Two people then paddle around, then come back and celebrate.\"]}, \"v_Gq8-XVrlAt4\": {\"duration\": 173.29, \"timestamps\": [[0, 173.29], [56.32, 92.71], [92.71, 111.77], [117.84, 163.76], [163.76, 170.69]], \"sentences\": [\"A woman is hitting tennis balls from a basket while her trainer gives her instructions.\", \" She continues to hit the ball while the trainer rakes through the basket.\", \" There are balls left all over the court.\", \" The woman is hitting balls again while the trainer watches.\", \" A couple are walking by behind the fence.\"]}, \"v_aFSaGCvYXXY\": {\"duration\": 221.0, \"timestamps\": [[0, 26.52], [26.52, 40.88], [41.99, 67.4], [67.4, 95.03], [95.03, 150.28], [150.28, 221]], \"sentences\": [\"Several boats are shown as people stand on them preparing to do water activities.\", \" Several kids are then shown with their life jacket on and they are put into an object with seats on them and three of them are pulled by a boat.\", \"As the kids continue with their water sports,some of them come to the camera and start talking about their experience.\", \" After,all of the people are shown in the grass holding up a flier and waving to the camera and they look like the people who were part of the Dreams for Kids organization and made it possible for the kids to go to.\", \"After the kids go up and down on a bounce house and a young girl comes back and begins talking with her sound box in her hand.\", \"A close up of a water go pro camera is then shown and more people are shown in a water object being pulled by the boat.\"]}, \"v_-U4lNtzVQ8s\": {\"duration\": 89.19, \"timestamps\": [[0, 9.81], [11.59, 22.74], [24.97, 89.19]], \"sentences\": [\"A man sits on a bench to pull off his jeans.\", \" He then picks up a blow torch and lights it.\", \" He uses the torch to burn all the hair off his legs.\"]}, \"v_kXbc9D0sF5k\": {\"duration\": 191.43, \"timestamps\": [[0, 94.76], [89.97, 191.43]], \"sentences\": [\"An intro leads into several landscapes and people skiing as well as people performing tricks and speaking to the camera.\", \" More shots are shown of camermen attempting to capture stunts on camera as well as more people flipping and speaking to the camera.\"]}, \"v_QBqfrJzcrns\": {\"duration\": 69.43, \"timestamps\": [[0, 35.76], [34.71, 69.43]], \"sentences\": [\"A woman is seen ironing a shirt and pauses to speak to the camera for a moment.\", \" She's shown plugging in the iron and folding up a shirt while still speaking to the camera and showing a picture of an ironing board.\"]}, \"v_YVxuIAwOyoE\": {\"duration\": 177.77, \"timestamps\": [[0, 40.89], [40.89, 116.44], [116.44, 177.77]], \"sentences\": [\"A Last Man Stands title screen is shown and a man dressed in a green polo begins talking.\", \"A few lips of the people playing are shown and the man finishes talking.\", \"People continue hitting a ball with a thick paddle in a small patch of rectangular dirt and more techniques are being pointed out.\"]}, \"v_iZUwLKd5TTk\": {\"duration\": 203.59, \"timestamps\": [[0, 96.71], [67.19, 203.59]], \"sentences\": [\"A man is seen speaking to a camera and leads into a woman ironing all along a shirt.\", \" The woman continues flipping the shirt around to iron and leads back to the man speaking to the camera.\"]}, \"v_UadYaZOC6B8\": {\"duration\": 75.26, \"timestamps\": [[0, 8.28], [8.28, 13.55], [13.55, 31.61], [31.61, 35.37], [35.37, 62.84], [62.84, 75.26]], \"sentences\": [\"A black screen appears and green words scroll from the bottom to the top and stop when it fills the screen and say's \\\"NDA&CS Food & Drug Protection Division\\\" and there's a circular logo in the middle.\", \"A yellow word scrolls from right to left and the word say's \\\"Restrooms\\\".\", \"Various items are shown that include a toilet paper roll, a bottle of handwash and running water from a faucet.\", \" A black screen appears and a blue area with black text reads \\\"20 Seconds\\\" and it flashes multiple times.\", \"A man is washing his soapy hands in a sink while the water is running and as the timer is counting down on the right, he rinses his hands at the 20 second mark then dries them off with a brown paper towel.\", \"A black screen appears and a lot of yellow and green letters are on the screen.\"]}, \"v_tyjUDi3uLd0\": {\"duration\": 235.92000000000002, \"timestamps\": [[0, 8.26], [11.8, 43.64], [50.72, 169.86], [172.22, 211.14], [213.5, 235.92]], \"sentences\": [\"A cartoon man is painting on a wall.\", \" A real man appears in a partially prepared room, and begins talking about the tiled floor.\", \" He kneels onto the floor, measuring the tiles.\", \" He uses a leveler on the floor.\", \" Several pictures are then shown advertising Ask the Builder.\"]}, \"v_LdzaFk5VrD0\": {\"duration\": 161.17000000000002, \"timestamps\": [[0, 161.17], [10.48, 11.28], [26.59, 44.32], [44.32, 53.19], [62.86, 66.89], [78.97, 80.58], [81.39, 161.17]], \"sentences\": [\"A girl is sitting in a chair talking.\", \" She holds her hands up in front of her.\", \" She picks up a contact lens and puts it on her finger.\", \" She put the contact into her eye.\", \" She holds up her hands and pushes them together.\", \" She then takes the contact lens out of her eye.\", \" She continues using her hands to talk.\"]}, \"v_Xz3F4x70qjQ\": {\"duration\": 111.06, \"timestamps\": [[1.11, 44.98], [33.32, 109.4]], \"sentences\": [\"Two kids are seen sitting at a table with one feeding a baby an ice cream.\", \" More people are seen running in and out of frame while the girl continues to feed food to the baby.\"]}, \"v_orwTrxIwCpo\": {\"duration\": 132.19, \"timestamps\": [[0, 35.69], [35.69, 58.16], [58.83, 132.19]], \"sentences\": [\"A man holding crutches wash a car with a hose in the street.\", \"  Then, the man wash the side windows and the roof of the car.\", \" After, the man talks and wash the back of the car.\"]}, \"v_tAWTfutrwg0\": {\"duration\": 211.72, \"timestamps\": [[3.18, 80.45], [70.93, 167.26], [163.02, 208.54]], \"sentences\": [\"A man wearing overalls is seen laying paper down on a wall and pushing it down to keep it in place.\", \" The person continues to push the paper down as well as line along the bottom and continue laying down paper.\", \" A pan around the room is shown in the end.\"]}, \"v_Ny8NDMWfGJk\": {\"duration\": 196.42000000000002, \"timestamps\": [[0, 196.42], [7.86, 172.85], [172.85, 196.42]], \"sentences\": [\"This video has no audio and these three men are all outdoors.\", \" Two of the men have removed the tire from the big red truck and the third one goes to get a tire from a pickup truck.\", \" When they're done, they all get inside of the truck and roll away.\"]}, \"v_rcDw6If4hjc\": {\"duration\": 48.97, \"timestamps\": [[0, 8.33], [9.3, 11.02], [17.87, 48.97]], \"sentences\": [\"A man throws a bowling ball down a lane.\", \" The pins are knocked over.\", \" He throws the ball several more times.\"]}, \"v_9cxGx2BsKkM\": {\"duration\": 83.31, \"timestamps\": [[0, 16.25], [17.91, 73.32], [74.98, 83.31]], \"sentences\": [\"A man from a movie shoots an arrow.\", \" Several clips from older movies show men shooting arrows and killing people.\", \" The movie is Robin Hood films from the 1990s.\"]}, \"v_FrRKm_V0lZU\": {\"duration\": 40.01, \"timestamps\": [[0, 7.8], [8, 26.81], [26.81, 40.01]], \"sentences\": [\"A man serves beer in a cup and drinks while smiling.\", \" The man holds the cup and smiles.\", \" Then, the man punts his hand on the nose.\"]}, \"v_WKoHUS5B2u4\": {\"duration\": 180.28, \"timestamps\": [[15.32, 26.14], [30.65, 150.53], [156.84, 163.15]], \"sentences\": [\"A man in a blue shirt is holding a glass.\", \" People are riding horses along a trail.\", \" A man is riding a horse wearing sunglasses.\"]}, \"v_uJZFC7gHZGI\": {\"duration\": 121.23, \"timestamps\": [[3.03, 4.24], [4.85, 102.44], [7.88, 9.09], [40.01, 41.83], [44.86, 58.19], [59.4, 64.25], [64.25, 93.35], [93.95, 95.77], [101.23, 101.83], [103.05, 121.23], [110.32, 112.14]], \"sentences\": [\"A man fixes white glove on to his hands.\", \" A lady knees on a chair with her chin on the headrest.\", \" A guy views his phone.\", \" The lady moves her hair from her face.\", \" The man puts a metal on the lips of the lady.\", \"  The man gets a needle and applies it to the lady's lip.\", \" The man puts back the needle and adds a piercing ring on the lady's lip.\", \" The man moves the metal of the lady's lip.\", \" The lady nods her head.\", \"The lady moves her chin from the headrest.\", \" The guy puts his phone in his pocket.\"]}, \"v_CoP3xaSZt7A\": {\"duration\": 119.39, \"timestamps\": [[8.95, 9.55], [13.73, 14.92], [62.68, 67.45]], \"sentences\": [\"People are dancing on a stage.\", \" A man is dancing on the beach.\", \" People are playing instruments in a room.\"]}, \"v_98OypfeTKEc\": {\"duration\": 41.19, \"timestamps\": [[0, 41.19], [0.82, 1.24], [37.07, 41.19]], \"sentences\": [\"People are swinging on a swing set.\", \" A woman in a black jacket is on the first swing.\", \" A woman in white pants and a brown shirt is on the last swing.\"]}, \"v_xsBFnpdLWkU\": {\"duration\": 38.45, \"timestamps\": [[0, 38.45], [12.11, 14.04], [17.69, 20.38], [25.57, 26.72], [30.19, 31.92], [34.42, 36.72]], \"sentences\": [\"A woman sits behind a table dealing cards.\", \" She points at one of the cards.\", \" She pulls a card out and sets it on top of the other cards.\", \" She points at the next set of cards.\", \" She pulls a card out and sets that on top of the cards.\", \" She pulls another card out to add to hers.\"]}, \"v_gMLA3a0FMS0\": {\"duration\": 107.03999999999999, \"timestamps\": [[0, 107.04], [24.62, 107.04]], \"sentences\": [\"A skills workshop is shown for how to be a goalie in lacrosse.\", \"  The coach shows body placement and how to protect the goal.\"]}, \"v_O_e0pqEMZMw\": {\"duration\": 111.71000000000001, \"timestamps\": [[0, 23.46], [23.46, 111.71]], \"sentences\": [\"An middle aged man is sitting in front of his desk talking.\", \"Once he is done,he starts a Youtube video and begins jumping up and down on a trampoline for his workout.\"]}, \"v_IHpBwsyMT9Q\": {\"duration\": 59.33, \"timestamps\": [[0, 59.33], [11.87, 18.39], [18.98, 31.44], [32.63, 40.05], [41.23, 59.33]], \"sentences\": [\"A young girl in a garage throws darts at a dart board.\", \" The girl grabs the darts and talks to the camera.\", \" The girl then throws the darts again.\", \" The girl points at the wall and grabs the darts.\", \" The girl throws the darts at the board again picks one up off the ground and throws it too.\"]}, \"v_djE5A2S1Ezg\": {\"duration\": 204.55, \"timestamps\": [[0, 9.2], [11.25, 36.82], [39.89, 72.61], [75.68, 149.32], [151.36, 176.93], [177.95, 204.55]], \"sentences\": [\"The inside of a carport and fence are shown with a woman and a dog sitting in front of the fence.\", \" The woman is talking to the camera.\", \" A man appears alongside her.\", \" The man is shown painting the fence white.\", \" He is then shown spraying the paint on with a sprayer.\", \" The video ends with the pair talking to the camera again.\"]}, \"v_0cscG-qOaQY\": {\"duration\": 160.73, \"timestamps\": [[17.68, 24.11], [22.5, 53.04], [53.84, 79.56], [80.36, 122.96], [123.76, 150.28]], \"sentences\": [\"A person puts gift paper on top a cactus in a pot.\", \" Then, the person shows to wrap a cylinder gift and puts an ornament on top.\", \" Then, the person shows to wrap a square gift and made a paper flower.\", \" After, the person shows to make a rectangle wrapping using a red cube.\", \" Next, the person warps a rectangle gift and puts ribbon on top.\"]}, \"v_VRwI8Iydb_o\": {\"duration\": 141.16, \"timestamps\": [[0, 25.41], [25.41, 43.76], [43.76, 61.4], [61.4, 91.75], [91.75, 141.16]], \"sentences\": [\"litle blonde kid is waking up and throw a eddy to her sister in the other bed and stands in front of a draer looking fo clothes.\", \" kids are running in the outside and pulling a cart into a sandy beach.\", \" the two girls and a kid are doing a sandcastle on seashore.\", \" the kids step on the sandcastle and destroy it and walks into the shore and sunbathe on top of towels.\", \" kid gives a seashell to the girls and walks in the seashore jumping and laughing and then the credits appears.\"]}, \"v_teIE_kXbMiw\": {\"duration\": 107.93, \"timestamps\": [[0, 52.34], [51.27, 107.93]], \"sentences\": [\"A person is seen sitting in a chair and holding up various knives and tools.\", \" The person then sharpens the knives with the tools and ends with credits rolling across the screen.\"]}, \"v_kdfJW8YV378\": {\"duration\": 231.55, \"timestamps\": [[0, 17.37], [27.79, 82.2], [86.83, 127.35], [130.83, 170.19], [172.5, 231.55]], \"sentences\": [\"A close up is shown of a sign.\", \" A person is walking through a display of numerous sail boats.\", \" A man is preparing a boat to use.\", \" The boat is pushed down to the dock and placed in the water before getting in.\", \" The man sails through the hard waters very quickly.\"]}, \"v_4zYY4abpCgI\": {\"duration\": 120.37, \"timestamps\": [[0, 30.7], [30.7, 77.04], [77.04, 120.37]], \"sentences\": [\"man is in a room an puts a large cloth in he floor and a wooden fence on top and clean it with a cloth.\", \" man open the lid of the paint and start painting.\", \" man holds the pot and pour a white paint in a recipient and with a small paint roller paints the table.\"]}, \"v_OUIS4bnEhU0\": {\"duration\": 35.99, \"timestamps\": [[0, 4.5], [5.94, 20.87], [22.13, 35.99]], \"sentences\": [\"A woman is in a gym, sitting on a ball.\", \" She is doing several sit ups on the ball.\", \" She continues doing sit ups propping her feet up.\"]}, \"v_ZeBrPKBGb_k\": {\"duration\": 180.16, \"timestamps\": [[0, 52.25], [43.24, 137.83], [118.91, 175.66]], \"sentences\": [\"Several clips are shown of people riding around on mountain bikes on a track.\", \" The camera follows the group riding around the track while others stand on the side.\", \" The people continue riding around the track and the camera captures their movements.\"]}, \"v_o4z1nEiyr4E\": {\"duration\": 22.18, \"timestamps\": [[0, 7.43], [7.65, 18.18], [18.52, 22.18]], \"sentences\": [\"An Asian female walks into the corridor of an outside video with a jump rope in her hand.\", \"She then begins to do jump with his jumps,kicks and turns high in the air.\", \"The jumps are over and the young lady begins to walk side ways towards the camera and leaves.\"]}, \"v_N5x5VUK7Kx8\": {\"duration\": 71.66, \"timestamps\": [[0, 17.2], [17.91, 53.03], [47.65, 68.07]], \"sentences\": [\"A man is seen standing on a roof with a young child holding up a kite.\", \" The camera pans all around the kite flying in the sky.\", \" The man is seen helping the boy in the end and grabbing the kite.\"]}, \"v_EolA3Rd_Vm4\": {\"duration\": 66.32, \"timestamps\": [[0, 30.84], [32.83, 66.32]], \"sentences\": [\"A girl is sitting down with her legs outstretched.\", \" Other girls spread cream on her leg, then use a razor to shave her clean.\"]}, \"v_dL-ybVv7Sgs\": {\"duration\": 33.83, \"timestamps\": [[0, 3.04], [3.04, 9.13], [9.98, 23.85], [25.54, 33.83]], \"sentences\": [\"We see an opening title screen.\", \" We see a man sitting in the woods.\", \" We then see a man making a fire using a stick in the woods.\", \" We see a roaring fire in the woods.\"]}, \"v_EW3zRMVjkoU\": {\"duration\": 35.76, \"timestamps\": [[0, 19.85], [19.31, 35.76]], \"sentences\": [\"A small group of people are seen playing a soccer match on a sandy field in front of a large group of people.\", \" The men continue kicking the soccer ball around while people cheer them on on the sidelines.\"]}, \"v_UGKGBBAckJw\": {\"duration\": 82.76, \"timestamps\": [[0, 21.52], [20.69, 26.07], [27.72, 71.58], [74.48, 82.76]], \"sentences\": [\"A group of children stand on mats together with an instructor waiting to begin.\", \" The students work out first raising their arms up and down.\", \" The students step onto the mat with alternating feet.\", \" The students step side to side while stepping on the mat.\"]}, \"v_5oy5Yi6fzJU\": {\"duration\": 43.58, \"timestamps\": [[0, 28.55], [29.64, 43.58]], \"sentences\": [\"A man is mowing a lawn, while a toddler walks behind him with a play mower.\", \" He tries a few times to pass his father, getting his mower stuck.\"]}, \"v_RPkLocpR8VQ\": {\"duration\": 77.67, \"timestamps\": [[0, 14.37], [14.37, 71.07], [63.3, 67.96], [72.23, 77.67]], \"sentences\": [\"Men compete solving cube puzzles while judges supervising the players.\", \" A judge put a sheet on front a player.\", \" A person walks behind the players.\", \" A player end the competition and raise and the judge takes notes.\"]}, \"v_rFTVKkMqpIQ\": {\"duration\": 230.48, \"timestamps\": [[0, 9.22], [10.37, 16.13], [17.29, 137.14], [138.29, 215.5], [216.65, 230.48]], \"sentences\": [\"A title screen appears with \\\"Nursing Assistant Skills Video Series Washing Hands\\\" on screen with a \\\"Whatcom Community College\\\" logo.\", \" Disclaimer text appears on screen warning of possible injury if improper application of medical skills are used.\", \" A nurse enters a medical facility and carefully washes her hands in the sink.\", \" A list of 10 proper hand washing rules appears on screen.\", \" A video credit and copyright screen appears with the \\\"Whatcom Community College\\\" logo.\"]}, \"v_LZC9MLWo9bE\": {\"duration\": 89.91, \"timestamps\": [[0, 31.47], [31.47, 67.43], [67.43, 89.91]], \"sentences\": [\"A small log of wood is taken from the woods and placed in a back yard.\", \"A person then takes a long silver knife like utensil and cuts the trees down in half.\", \"He continues cutting the tree and several pieces end up on the ground.\"]}, \"v_eUKMPNZ3NI4\": {\"duration\": 123.07, \"timestamps\": [[1.23, 67.69], [41.84, 113.22]], \"sentences\": [\"A group of people are seen drinking around a picnic table that leads into several people playing a game of ping pong.\", \" The people continue to play back and fourth while others watch on the side and laugh.\"]}, \"v_snvSHNYvRks\": {\"duration\": 35.5, \"timestamps\": [[0, 1.6], [1.6, 16.51], [16.51, 35.5]], \"sentences\": [\"An athletic woman is standing on a field that has a blue ground, she has a shot put in her right hand, and the banner on the bottom of the screen reads \\\"SHOT PUT WOMEN Valerie ADAMS\\\".\", \"The woman puts the shot put to her hear ear and then quickly turns and throws the shot put as far as she can while a man near the  ball marks where it landed.\", \" A slow replay of her throw replays and she celebrates and gives herself two thumbs up and then puts a shirt on.\"]}, \"v_vy91mJTl7rQ\": {\"duration\": 137.6, \"timestamps\": [[0, 24.08], [12.38, 48.85], [45.41, 137.6]], \"sentences\": [\"The people in the yellow raft are paddling through the water.\", \" Behind them are several falls with flowing water.\", \" The people are being dragged by the waves while they continue to paddle until the raft flip over and threw the people in the water.\"]}, \"v_UALnEw4XhTY\": {\"duration\": 237.4, \"timestamps\": [[0, 89.03], [119.89, 219.6]], \"sentences\": [\"A small group of people are seen riding around on a bus followed by using a rope to climb up a wall.\", \" Another man is shown climbing u the wall to assist the others as they watch and ride in the back of a car.\"]}, \"v_Hhc10CrukfA\": {\"duration\": 30.16, \"timestamps\": [[0, 2.71], [4.07, 13.42], [13.72, 30.16]], \"sentences\": [\"A couple of cookies are on a plate with a glass of milk.\", \" Cookies are shown being made into dough and baked in the oven.\", \" The entire cookie making process is shown in reverse, ending with ingredients on a plate and a box of mix on a table.\"]}, \"v_GOxmnVFdMfY\": {\"duration\": 161.73, \"timestamps\": [[0, 46.9], [40.43, 118.06], [112.4, 158.49]], \"sentences\": [\"A large group of people are seen riding around on bumper cars crashing into one another.\", \" People driving around back and fourth while continuously crashing into each other.\", \" The camera pans all around their movements and watches them go around continuously.\"]}, \"v_B7Ddfw2PXOI\": {\"duration\": 80.69, \"timestamps\": [[0, 19.37], [13.72, 58.5], [55.68, 77.06]], \"sentences\": [\"A man is seen speaking to the camera while holing bagpipes and the camera pans around to other people laughing.\", \" The man then begins playing the instrument while others watch on the sides.\", \" The man continues playing and stops in the end to walk away.\"]}, \"v_Yd3G3732WbI\": {\"duration\": 93.37, \"timestamps\": [[0, 31.75], [29.41, 78.43], [79.36, 93.37]], \"sentences\": [\"Two women are seen speaking to the camera and leads into them boxing gifts and wrapping paper around them.\", \" Several shots are then shown of them wrapping up the paper and using yarn to wrap the gift.\", \" Then end by laughing and smiling to the camera.\"]}, \"v_9qVcdqGeAzE\": {\"duration\": 155.18, \"timestamps\": [[0, 14.74], [11.64, 93.11], [83.8, 155.18]], \"sentences\": [\"A brown haired woman is talking to the camera.\", \" The woman is holding a brush and blow dryer and began blow drying her bangs.\", \" The woman use her fingers to comb her hair and then spray something on her hair.\"]}, \"v_DXhVbxfmrYM\": {\"duration\": 80.03999999999999, \"timestamps\": [[0, 53.23], [50.82, 80.04]], \"sentences\": [\"Sumo wrestling demonstration is completed in front of fans.\", \"  The fans cheer the winner.\"]}, \"v__vUE7PhDBcA\": {\"duration\": 136.45, \"timestamps\": [[0, 19.79], [21.15, 55.26], [59.36, 97.56], [94.15, 136.45]], \"sentences\": [\"a man is running in a field.\", \" The man drinks from a water bottle.\", \" the man continues to run.\", \" the man talks to the camera off and on, but the man continues to run.\"]}, \"v_Q_32kySHzCQ\": {\"duration\": 153.32, \"timestamps\": [[0, 12.27], [19.17, 52.13], [59.8, 153.32]], \"sentences\": [\"Several metal pieces are lying on a black cloth.\", \" A man shows the pieces up close.\", \" He uses them as darts outside, throwing them at a wooden board.\"]}, \"v_CL6TbOgnLzA\": {\"duration\": 207.49, \"timestamps\": [[0, 205.42], [75.74, 205.42]], \"sentences\": [\"A video of water polo is shown in the gym.\", \"  A few people watch and the ball goes back and forth.\"]}, \"v_2UbwK1Qtveg\": {\"duration\": 6.48, \"timestamps\": [[0, 5.47], [5.54, 6.48]], \"sentences\": [\"A man is shaving another man's beard.\", \" The shaving it has an excited expression on his face.\"]}, \"v_CvmhLCrOjhM\": {\"duration\": 31.28, \"timestamps\": [[0.47, 7.66], [8.76, 23.46], [21.89, 29.87]], \"sentences\": [\"A young man is seen sitting before a table with a woman standing over him.\", \" He then attempts to solve a rubix cube while a timer watches him.\", \" The man then solves it throwing his arms up and cheering with another.\"]}, \"v_2_KTq85YQcY\": {\"duration\": 148.38, \"timestamps\": [[3.71, 27.45], [28.19, 126.86], [126.86, 146.15]], \"sentences\": [\"A woman fills the container of an iron with water, after she reads the tag of a shirt to set up the iron temperature.\", \" Then, the  woman iron the shirt carefully.\", \" After, the woman puts the shirt on a hanger and button the shirt, then she coil the wire around the iron.\"]}, \"v_j56eH9M0ObY\": {\"duration\": 141.98, \"timestamps\": [[2.84, 56.79], [48.98, 135.59]], \"sentences\": [\"A large group of people are seen celebrating in a circle while the camera shows various shots of people break dancing in the middle.\", \" More and more people take their turn in the middle spinning around the floor and end with everyone running in the middle.\"]}, \"v_IsM_xfhJzps\": {\"duration\": 134.61, \"timestamps\": [[4.71, 29.61], [29.61, 102.3], [102.3, 133.26]], \"sentences\": [\"A man exercises face down on a cardio machine, and then stand up and talks.\", \" After, the man sits on the cardio machine and pulls a handle until on front his chest while explaining.\", \" After, the man pulls the handle above his head, and then he continues explaining.\"]}, \"v_QgjNH6sAziM\": {\"duration\": 90.33, \"timestamps\": [[0, 54.65], [47.87, 90.33]], \"sentences\": [\"A person is seen rubbing over the fur of a dog and holding the dog down on a table.\", \" The person then pulls gunk out of the dog's ears and ends with a video caption going across the screen.\"]}, \"v_CtQ25XC45As\": {\"duration\": 135.34, \"timestamps\": [[0, 64.29], [59.55, 63.61], [69.7, 135.34]], \"sentences\": [\"People are playing a game of dodge ball on a gym floor.\", \" The crowd cheers for them.\", \" They finish the game and someone receives a trophy.\"]}, \"v_4WUFEnFE5sY\": {\"duration\": 219.75, \"timestamps\": [[0, 219.75], [127.46, 130.75]], \"sentences\": [\"A woman dances on a stage while spectators watch.\", \" The woman sets aside her shawl.\"]}, \"v_GMHzZXAQzIA\": {\"duration\": 97.69, \"timestamps\": [[0, 28.82], [29.31, 70.33], [70.33, 97.69]], \"sentences\": [\"A child climbs monkey bars until reach the others side.\", \" Then, the little girl rest a little bit and then climb back the monkey bars.\", \" When the girl reach the other side, she climbs again the monkey bars.\"]}, \"v_5asz3rt3QyQ\": {\"duration\": 188.45, \"timestamps\": [[0, 30.15], [37.69, 149.82], [152.65, 188.45]], \"sentences\": [\"A group of young men are playing on the sandy beach.\", \" They make a giant pile in the sand.\", \" They then create a shape in the sand.\"]}, \"v_3ohvA6Raf4w\": {\"duration\": 231.32, \"timestamps\": [[0, 53.2], [52.05, 106.41], [106.41, 165.39], [165.39, 231.32]], \"sentences\": [\"A girl and a pregnant woman are inside playing a dancing game on the playstation.\", \" The oregnant woman has the playstation control in her pants.\", \" They are more or less really good at this song because they dance confidently like thay have done it many times before.\", \" They are having fun together, its a family get together in the house one of the other sisters comes to talk.\"]}, \"v_9SY9ufDznFQ\": {\"duration\": 221.15, \"timestamps\": [[0, 11.06], [11.06, 221.15], [49.76, 168.07], [75.19, 168.07], [168.07, 206.77], [186.87, 194.61], [210.09, 221.15]], \"sentences\": [\"We see an opening screen with an image.\", \" We then see the girl as a goalie playing lacrosse.\", \" We then see the girl on the ice.\", \" We see a bunch of slow motion shot blocks.\", \" We see the team and the girl on an green court.\", \" The girl slides to block and knocks a girl over.\", \" We see a live outdoors game.\"]}, \"v_e8MK2naV6E8\": {\"duration\": 49.32, \"timestamps\": [[0, 6.17], [6.9, 38.96], [39.21, 49.32]], \"sentences\": [\"A little boy is swinging a stick outside.\", \" He is trying to hit a person shaped pinata hanging on a rope.\", \" He continues hitting the pinata over and over again.\"]}, \"v_Z0eBz6QsI-c\": {\"duration\": 41.19, \"timestamps\": [[0, 16.07], [10.71, 32.54], [21.63, 39.96]], \"sentences\": [\"A small group of men are seen wandering around a close room hitting a ball around.\", \" The men walk around the room holding tennis rackets and hitting a ball.\", \" The men continue walking around the room and hitting the ball.\"]}, \"v_0fsMeZoZzJI\": {\"duration\": 59.93, \"timestamps\": [[0, 2.1], [3.3, 57.23], [23.07, 26.37], [34.16, 38.96], [57.23, 59.93]], \"sentences\": [\"We see a shirtless man enter a bathroom.\", \" We see a girl shaving a man's leg in the bathtub.\", \" The woman points at the man's leg.\", \" The camera pans towards the man.\", \" We see a person in a gray shirt and a toilet.\"]}, \"v_ekJtPwfLM-M\": {\"duration\": 154.41, \"timestamps\": [[3.09, 40.92], [41.69, 89.56], [89.56, 125.85], [125.85, 153.64]], \"sentences\": [\"A man talks in a dance studio on front a wall mirror.\", \" Then, the man lays down on his back supporting with his feet and hands, and he makes half turns and flips.\", \" After, the man shows how to do a flips with his whole body.\", \" Next, the man dance and make hip hop movements on the floor.\"]}, \"v_685wnEW1Uq4\": {\"duration\": 7.34, \"timestamps\": [[0, 5.76], [5.83, 7.34]], \"sentences\": [\"a man runs on a field with a javelin balanced in his hand.\", \" He throws it as hard as he can.\"]}, \"v_Wyr2o0lsSTU\": {\"duration\": 48.95, \"timestamps\": [[0, 30.1], [31.57, 48.95]], \"sentences\": [\"A small girl is seen walking a large dog around on a leash.\", \" The girl drops the leash, picks it up, and drops it again and runs way shortly after.\"]}, \"v_otq24Pdm3sc\": {\"duration\": 211.14, \"timestamps\": [[0, 53.84], [60.17, 166.8], [134.07, 209.03]], \"sentences\": [\"A young child is seen close up that leads into a large group of people in a sand pit.\", \" The people stand around and being to grab a rope while others watch on the side.\", \" The women then get into a tug of war with another group and end by falling down.\"]}, \"v_A7ER02-zr54\": {\"duration\": 237.96, \"timestamps\": [[0, 28.56], [28.56, 76.15], [78.53, 85.67], [129.69, 141.59], [161.81, 173.71], [193.94, 197.51], [221.3, 237.96]], \"sentences\": [\"We see an opening title screen, and see a man talking in front of a bike.\", \" We see the bike in a room and the man enters the room pointing at parts of the bike.\", \" The man spins the tire using the paddle, then braking.\", \" The man pulls the tire off, and puts it back on.\", \" The man takes it off and on again.\", \" The man points to his hand.\", \" The man takes the tire off and a title appears on the screen.\"]}, \"v_SndKvA_2DcE\": {\"duration\": 162.51, \"timestamps\": [[0, 21.94], [25.19, 51.19], [52, 101.57], [102.38, 162.51]], \"sentences\": [\"A view of the outdoors including cliffs, trees, and streams is shown.\", \" Two men are hiking through to a river, where people are in a raft.\", \" A woman is talking as the people are hiking and white water rafting.\", \" The video ends with the people continuing through the rapids, views shown from several angles of the canyon.\"]}, \"v_osjru9UsWsI\": {\"duration\": 221.91, \"timestamps\": [[0, 53.26], [63.25, 164.22], [132.04, 214.15]], \"sentences\": [\"A girl is seen speaking to the camera while holding up a blow dryer and brushing her hair.\", \" The girl then blow dries her hair and combs it at the same time.\", \" She continues doing this to her and shows off pictures in the end and waving to the camera.\"]}, \"v_rZGxJN2AOQY\": {\"duration\": 238.21, \"timestamps\": [[0, 238.21], [77.42, 84.57], [86.95, 96.48], [231.07, 238.21]], \"sentences\": [\"We see two men playing squash in an indoor court.\", \" The camera man adjusts the camera and covers it with his hand.\", \"  We see a man walk in front of the camera and we see a finger in the camera.\", \" The men finish their game and leave the court.\"]}, \"v_7SxEQiFHGm8\": {\"duration\": 185.48, \"timestamps\": [[0, 53.79], [53.79, 124.27], [124.27, 185.48]], \"sentences\": [\"Several men are in an indoor arena playing a game of soccer as the crowd watches them.\", \"The game continues and both teams continues to hit the ball back and forth across the court.\", \"Several goals are made and the teams both jump up and down in joy.\"]}, \"v_Nq3b9OReeEI\": {\"duration\": 91.42, \"timestamps\": [[0, 2.29], [2.29, 4.11], [11.43, 26.97], [26.97, 37.48], [38.85, 46.62], [47.99, 58.51], [59.88, 66.28], [65.82, 80.45], [79.99, 85.02], [87.76, 91.42]], \"sentences\": [\"Lacrosse players jog around on the field.\", \" The camera zooms in on the back of a spectators head.\", \" Number 9 sets up and hits the ball downfield.\", \" The white and black team struggle to get the ball to the goal.\", \" Green takes possesion of the ball.\", \" The white teams scores a goal.\", \" Play continues and green takes possession of the ball.\", \" They hit down field where white intercepts and passes back down field in the other direction.\", \" Green gets the ball and hits it down field.\", \" The referee calls a foul.\"]}, \"v_z08g5S7J-CY\": {\"duration\": 57.21, \"timestamps\": [[0, 29.75], [14.02, 15.16], [17.74, 21.17], [26.89, 29.18], [29.75, 57.21], [46.92, 50.63]], \"sentences\": [\"Girls are standing around a car washing it in bikinis.\", \" A woman climbs on top of the car.\", \" Two women grab hoses and start hosing the car down.\", \" The women start drying the car.\", \" A man pours mud on top of a car and eats a candy bar.\", \" There is a line of cars waiting to get into the car wash.\"]}, \"v_xuoWaq6XPZo\": {\"duration\": 79.72, \"timestamps\": [[0, 55.4], [55.4, 76.53], [76.53, 79.72]], \"sentences\": [\"There's a drum set on a stage with lots of colorful lights and Justin Bieber is sitting at the drum set playing the drums with a lot of enthusiasm.\", \" Suddenly, smoke near him starts to blow as soon as he hits the drum set very hard, it stops, and then it starts to blow once again.\", \"He stops hitting the drum set, stands up, then walks off.\"]}, \"v_qlqF8K072UU\": {\"duration\": 161.5, \"timestamps\": [[0, 23.42], [22.61, 33.91], [33.91, 161.5]], \"sentences\": [\"An athletic girl is seen standing ready and jumps down a long track into a pit.\", \" Many watch from the sidelines and men rake up the sand and score the athletic score.\", \" Several more women are seen running down the track into the pit with their score being shown immediately afterwards.\"]}, \"v_xFIfGrhYpAg\": {\"duration\": 33.69, \"timestamps\": [[0.51, 11.12], [7.92, 25.78], [21.9, 33.36]], \"sentences\": [\"A large group of men are seen skating around the ice with a young child following behind.\", \" The child moves up and down the ice while the camera follows it's movements.\", \" A man moves around the boy while still skating on the ice.\"]}, \"v_Eucw0oPrFUs\": {\"duration\": 127.01, \"timestamps\": [[32.39, 127.01], [55.89, 87.64], [96.53, 102.25]], \"sentences\": [\"A man is playing soccer on a field of grass.\", \" He kicks the ball to the other side of the court.\", \" He bends down and gives a thumbs up.\"]}, \"v_DvTZ5mmF8NM\": {\"duration\": 26.61, \"timestamps\": [[0, 21.55], [18.23, 26.61]], \"sentences\": [\"A pots of bowling water is seen with pasta and a hand stirring the pot.\", \" The person hits the spoon on the side while continuing to stir the pasta.\"]}, \"v_exCENNu1qBU\": {\"duration\": 123.55, \"timestamps\": [[0, 6.18], [24.09, 118.61], [117.99, 123.55]], \"sentences\": [\"A man sitting on the ground takes a drink from a bottle.\", \" He stands up and runs on stilts.\", \" He falls down on a ramp.\"]}, \"v_HwTSF0VgmMU\": {\"duration\": 56.15, \"timestamps\": [[0, 1.4], [1.4, 55.58], [4.77, 7.02], [10.95, 19.93], [42.95, 45.48], [55.58, 56.15]], \"sentences\": [\"A man is standing in a gym.\", \" The man begins to pretend to fight, by jumping kicking and punching the air.\", \" The man takes his glasses off and puts his glasses back on.\", \" The man removes and replaces his glasses again.\", \" The man stands on his hands and kicks his feet in the air.\", \" The man stops his show and bows.\"]}, \"v_J7JLo0nQ5pA\": {\"duration\": 179.4, \"timestamps\": [[0, 60.1], [60.1, 179.4]], \"sentences\": [\"woman is standing in the kitchen talking to the camera and and showing ingredients that are on top of the counter.\", \" woman is mixing the ingredients in a pot and sieve the flour in a bowl.\"]}, \"v_cdcn6XP1N6A\": {\"duration\": 144.03, \"timestamps\": [[0, 139.71], [61.21, 64.82], [140.43, 144.03]], \"sentences\": [\"A young man plays flute while other man plays the cello in a band.\", \" A person pass on front the young man.\", \"Then, the young man calls to somebody, then left the stage.\"]}, \"v_dgas2Fku3No\": {\"duration\": 87.05, \"timestamps\": [[0, 26.55], [26.55, 67.47], [67.9, 87.05]], \"sentences\": [\"Two young people are playing pairs tennis indoors while people watch behind them.\", \" The camera pans to the other side of the net where the opposing pair is playing.\", \" The camera returns to show the first pair of players.\"]}, \"v_NiinNJg-uyg\": {\"duration\": 117.59, \"timestamps\": [[0, 117.59], [31.75, 42.33], [65.26, 117.59]], \"sentences\": [\"Two people are playing lacrosse on a field.\", \" They stand behind the net and talk.\", \" They demonstrate how to properly play and defend someone.\"]}, \"v_BhCNHWQhhEw\": {\"duration\": 191.61, \"timestamps\": [[0, 191.61], [10.54, 27.78], [28.74, 67.06], [68.02, 107.3], [108.26, 157.12], [158.08, 187.78], [189.7, 191.61]], \"sentences\": [\"The video is of someone getting a tattoo on their wrist.\", \"  The tattoo artist is drawing the outlines of the art on a girl's arm.\", \"  He asks her if it hurts and then stops to wipe down some ink with a cloth.\", \"  He goes back to the arm and continues to work on the artwork again.\", \"  The tattoo artist stops to wipe the girls arm with a cloth and then continues once again.\", \"  He stops and wipes her arm again and explains about the process of tattooing and wipes her arm down and the girls friend talks to her.\", \"  Then there is a picture of the finished tattoo.\"]}, \"v_LURZ8QDfowU\": {\"duration\": 172.1, \"timestamps\": [[0, 17.21], [22.37, 47.33], [51.63, 123.91], [123.91, 159.19], [160.91, 172.1]], \"sentences\": [\"A gas station is seen with a small billboard and stack of tires at the front entrance.\", \" A man has his car filled with gas before getting back in and is assistant by attendants.\", \" A group of workers use hand towels to wash the exterior of a car at the gas station.\", \" An emergency rescue vehicle sits a a gas pump.\", \" A motorcycle sits at a gas pump hear a no smoking fire hazard sign.\"]}, \"v_cduejHfXPDc\": {\"duration\": 166.46, \"timestamps\": [[0, 5.83], [6.66, 158.14], [73.24, 80.74], [81.57, 92.39], [93.22, 108.2], [128.18, 152.31], [160.64, 166.46]], \"sentences\": [\"We see a black opening screen.\", \" We see a person painting a flower on a canvas.\", \" The Person uses a larger paint brush.\", \" The person switches back to a small brush.\", \" The person uses a  spatula to add paint.\", \" We see the person using a big brush again.\", \" The screen fades to black.\"]}, \"v_le1aEgEms9Y\": {\"duration\": 144.92000000000002, \"timestamps\": [[0, 144.92], [6.52, 33.33], [38.4, 40.58], [42.75, 46.37], [47.1, 55.79], [65.21, 138.39], [104.34, 107.24], [139.84, 144.92]], \"sentences\": [\"We see a lady and a dog in a bathroom.\", \" The lady grabs a toothbrush and brushes her teeth.\", \" The lady sits on the floor and the dog follows.\", \" The dog shakes the ladies hand.\", \" She then brushes the dogs teeth.\", \" She brushes her teeth, then the dogs then both together.\", \" The dog shakes the ladies hand again.\", \" The lady laughs then waves to the camera.\"]}, \"v_tP0viuKibJU\": {\"duration\": 6.22, \"timestamps\": [[0.16, 6.22], [0.16, 1.24], [1.34, 3.55], [3.64, 6.22]], \"sentences\": [\"A young girl in a gym setting does two black flips and one double twist in the air with no hands.\", \"  The girl stands, initially, at the front of a soft bounce floor, preparing for the gymnastic flip, perfectly still, with both hands outstretched for balance.\", \" The girl then performs two consecutive back flips, with hands, in the gym.\", \"  The girl ends in one handless double twist, propelling high in the air, before landing on her feet on the gym floor.\"]}, \"v_Czw85LWCGes\": {\"duration\": 56.05, \"timestamps\": [[0, 3.08], [3.36, 49.33], [49.61, 56.05]], \"sentences\": [\"A man approaches a table with his soldiering gun.\", \" The man soldiers on a piece of metal.\", \" The man stops and walks away from his table.\"]}, \"v_qeyFjCAA_dg\": {\"duration\": 144.66, \"timestamps\": [[0, 133.09], [4.34, 62.93], [59.31, 131.64], [129.47, 141.04]], \"sentences\": [\"There's a young man wearing a blue shirt and black hat demonstrating on a bed and talking about fitness.\", \" He is talking about fitness as he lays on his back to demonstrate crunches by doing actions with his arms.\", \" He then shows how to do stomach crunches by holding the back of head with his hands and moving his body back and forth and sideways while folding his knees to his chest.\", \" He continues doing crunches and then stops.\"]}, \"v_TRXLUcm2CuQ\": {\"duration\": 168.57999999999998, \"timestamps\": [[0, 39.62], [28.66, 91.03], [48.89, 168.58]], \"sentences\": [\"The woman in the bathtub is shaving her legs, the legs have shaving cream.\", \" The woman wiped the shaving cream on the legs, shaved her legs and back of her leg.\", \" The woman is on the bed showing her legs, then putting on a red stockings, while the other girl is putting lotion on the legs, then the woman is shaving her legs in the bathtub, wipe her legs and put stocking on it, then wipe the legs with lotion.\"]}, \"v_sG3JpMuXFnU\": {\"duration\": 126.04, \"timestamps\": [[0, 1.89], [2.52, 7.56], [7.56, 35.92], [36.55, 121.63], [61.13, 68.06], [88.86, 95.16], [114.06, 117.22], [124.15, 126.04]], \"sentences\": [\"We see the title screen on black.\", \" A lady talks to the camera.\", \" We see cars and rafts.\", \" We see people sitting on the rafts in the lake.\", \" A speedboat speeds past the rafters.\", \" The people turn a black raft over in the water.\", \" We see a bridge in the distance.\", \" The end title screen appears.\"]}, \"v_xkIhTMJ_ThA\": {\"duration\": 11.4, \"timestamps\": [[0.63, 6.61], [4.96, 11.17]], \"sentences\": [\"A woman is seen holding a tennis racket in a room when another person comes into the frame.\", \" The woman hits the ball and the other man walks in with a racket.\"]}, \"v_-cJova7MiO8\": {\"duration\": 29.51, \"timestamps\": [[0, 12.69], [11.66, 25.09], [25.09, 29.51]], \"sentences\": [\"Two small sumos wrestle while people watch around the circle.\", \" A sumo wearing white pants flips the other sumo over his back and wins the competition.\", \" Then, a boy rise the hand of the sumo winner, then shake hands with his opponent.\"]}, \"v_v-YKnFqX_L0\": {\"duration\": 122.45, \"timestamps\": [[0, 36.74], [36.12, 67.35], [67.96, 94.9], [95.51, 122.45]], \"sentences\": [\"A man is interviewed while people watch or walk past in the background.\", \" Two men are interviewed in the same setting.\", \" A woman is interviewed in the same setting.\", \" The two men from the previous interview are shown again.\"]}, \"v_4QvpJ71d8Nk\": {\"duration\": 144.99, \"timestamps\": [[5.8, 19.57], [19.57, 25.37], [25.37, 48.57], [48.57, 88.44], [89.17, 97.14], [97.87, 110.91], [111.64, 140.64]], \"sentences\": [\"A group of people jump rope in a coordinated pattern.\", \" Three of them at the front roll to the side and retreat to the back.\", \" The scene changes to a different group doing jump rope tricks.\", \" The scene changes to the original group performing jump rope tricks.\", \" The scene changes once again to the second group performing rope tricks.\", \" The scene returns once more to the first group performing rope tricks.\", \" The scene changes one final time to the second group performing rope tricks.\"]}, \"v_cFzo-Zgxk1M\": {\"duration\": 99.99000000000001, \"timestamps\": [[0, 7.5], [6.5, 9.5], [10, 16], [16, 22], [22, 26.5], [27, 35.99], [33, 43.49], [42.99, 49.49], [48.99, 51.49], [53.99, 55.99], [68.99, 71.49], [83.49, 86.49], [96.49, 99.49]], \"sentences\": [\"A man throws a bowling ball.\", \" He then goes back and high fives his friends.\", \" They sit and talk around the table.\", \" A woman stands up and grabs a bowling ball.\", \" She walks up and drops it down the lane.\", \" She sits back down and looks at her phone.\", \" They continue talking around the table.\", \" She stands back up and picks up a bowling ball.\", \" She throws it down the lane again.\", \" She sits back down at the table.\", \" She throws a ball behind her while walking away.\", \" She picks up a ball and throws it with her hands over her eyes.\", \" She throws a bowling ball while talking on the phone.\"]}, \"v_2aHetC-N-P4\": {\"duration\": 180.35, \"timestamps\": [[0.9, 14.43], [51.4, 78.45], [73.04, 180.35]], \"sentences\": [\"A lawn mower is shown on a farm road.\", \"  It is then driven on the road and then goes to work mowing the yard.\", \"  The huge brush is taken down.\"]}, \"v_zfU85oBVpfA\": {\"duration\": 44.93, \"timestamps\": [[0, 5.62], [7.19, 31.23], [31.9, 44.93]], \"sentences\": [\"A man is kneeling on a mat while holding a pole.\", \" He leans forward, demonstrating a technique.\", \" He continues to talk about the pole and his position.\"]}, \"v_GLL1vOrV5Qo\": {\"duration\": 228.14, \"timestamps\": [[0, 23.95], [15.97, 96.96], [86.69, 155.13], [114.07, 228.14]], \"sentences\": [\"A man walked up to the printer and cut the paper.\", \" The man put white plaster on the wall, then pour white paint in the bucket and paint the wall with roller brush.\", \" The man unroll the paper, measure it and the wall, then he mixed the adhesive and began putting it on the wall.\", \" The man put the wallpaper on the wall and cut the excess.\"]}, \"v_pMVo7PaXD1c\": {\"duration\": 237.32999999999998, \"timestamps\": [[22.55, 237.33], [24.92, 80.69], [80.69, 148.33], [149.52, 230.21]], \"sentences\": [\"A group of people play a game of paintball in an outdoor setting with props and costumes.\", \"  A group of people holding paintball guns and dressed in costume run into a staged setting as if in combat.\", \"  The people aim at objects and people and shoot the paintball guns.\", \"  The players peer around corners and aim and shoot the paintball guns amidst objects splattered with paint.\"]}, \"v_9pNfaRJ0K4o\": {\"duration\": 149.47, \"timestamps\": [[3.74, 59.79], [50.82, 115.09], [111.35, 144.24]], \"sentences\": [\"A woman is seen walking into a ballet studio holding ballet shoes and sitting before a mirror pinning her hair up.\", \" The girl then puts her case away and puts her shoes on followed by her performing ballet moves at a barre.\", \" The woman then dances all around the room in her ballet shoes showing off jumps and spins she can do.\"]}, \"v_uFhZhnlYKRw\": {\"duration\": 143.87, \"timestamps\": [[3.6, 134.52], [30.21, 45.32], [45.32, 74.81], [75.53, 81.29]], \"sentences\": [\"A group of girls stands at the counter inside of a lemonade stand.\", \"A girl presses a full lemon on a machine into a cup.\", \" The workers add sugar and water before shaking the cup.\", \" A straw is added and the lemonade is placed on the counter.\"]}, \"v_tUCGJk6aSeg\": {\"duration\": 43.82, \"timestamps\": [[0, 43.82], [18.18, 43.82], [28.7, 33.3]], \"sentences\": [\"We see a man playing drums in a rock concert.\", \"The camera zoom in on the man.\", \" The lights flash like a strobe.\"]}, \"v_YcjLd_XBK5Y\": {\"duration\": 62.74, \"timestamps\": [[0, 62.74], [7.22, 15.06], [19.76, 21.02], [44.86, 52.08]], \"sentences\": [\"We see a lady sitting a table drilling holes in a pumpkin as kids watch.\", \" A girl walks over then leaves.\", \" The little boy then leaves.\", \" We see inside the pumpkin when the top is lifted.\"]}, \"v_5Lv0g7ISQVU\": {\"duration\": 59.07, \"timestamps\": [[0, 5.61], [7.09, 38.99], [40.76, 59.07]], \"sentences\": [\"Two little girls are standing outside in a yard.\", \" They pick up a red ball and begin throwing and kicking it to each other.\", \" They continue throwing and kicking, playing a game.\"]}, \"v_9JrRZ9i1sXo\": {\"duration\": 201.85, \"timestamps\": [[15.14, 187.72], [151.39, 187.72], [187.72, 201.85]], \"sentences\": [\"A person is shoveling snow from a driveway.\", \" They push the snow to the side and pick it up and throw it into a pile.\", \" Words come onto the screen at the end.\"]}, \"v_4CSyAAoO18s\": {\"duration\": 154.72, \"timestamps\": [[0, 40.23], [41, 80.45], [80.45, 119.13], [119.13, 154.72]], \"sentences\": [\"A man shows a bottle of cream, and then he puts gel on his hand.\", \" Then, the man rub his face and neck with the cream.\", \" The man bends to wash his face, after he dry his face with a towel.\", \" The man talks and shows the bottle.\"]}, \"v_wB9LBEHR5-c\": {\"duration\": 176.96, \"timestamps\": [[0, 30.08], [30.08, 120.33], [121.22, 176.96]], \"sentences\": [\"Two girls drive bumper cars and they get stuck with a bumper car of a boy, then they free and continue riding.\", \" The bumper car of the girls can not move then a person help them to continue riding.\", \" The girls drives behind the boy, then turn around and continue riding around.\"]}, \"v_ChH3zlLeWug\": {\"duration\": 159.38, \"timestamps\": [[0, 83.68], [83.68, 95.63], [96.43, 157.79]], \"sentences\": [\" A man talks and then cuts his beard with an electric shaver on front a mirror.\", \" The man make gestures when shaving around his mouth, after he continues shaving his face.\", \" The man talks and then wave his hand.\"]}, \"v_8FSKFy1tPQc\": {\"duration\": 123.02, \"timestamps\": [[0, 10.46], [10.46, 32.6], [32.6, 59.05], [59.05, 71.97], [71.97, 89.19], [89.19, 107.03], [107.64, 123.02]], \"sentences\": [\"The video starts with words that say \\\"5 ESSENTIAL TIPS\\\" and man is standing in a grassy field holding a polo stick and talking.\", \" \\\"TIP 1 STICK AND BALL WITH 2 BALLS glide across the screen and the man then appears on the field riding his horse and using his stick to hit balls as the horse trots along.\", \" \\\"TIP 2 RIDE ON SHEEPSKIN OR ON A SADDLE WITH NO STIRRUPS\\\" shows up on the screen and a man is shown riding on the horse with a sheepskin under him as he hits balls with his stick.\", \" \\\"TIP 3 PRACTICE ROTATING YOUR BOTTOM FROM THE LEFT TO THE RIGHT SO YOU HAVE ALL ROUND VISION\\\" shows up on the screen and a man is shown riding on his horse as he is rotating his bottom from left to right as he looks around him.\", \" \\\"TIP 4 NEVER USE STRENGTH TO HIT THE BALL\\\" appears on the screen and a child on a horse is shown swinging a stick as he hits the ball.\", \"\\\"TIP 5 NEARSIDE\\\" appears on the screen and 2 different men are shown riding horses and using their stick to hit the ball as soon as they are near it.\", \" The video ends with a black and green background of the words Polo Tips in green and a green image of a person on a horse holding a stick and white scrolling words that read \\\"5 Essential Tips POLO by Justo del Carril author of Polotips polotips@hotmail dotcom and the website www dot polotips dot com\\\".\"]}, \"v_yeLB4QXA3NQ\": {\"duration\": 165.19, \"timestamps\": [[0, 9.91], [10.74, 27.26], [30.56, 71.03], [73.51, 80.12], [80.12, 122.24], [123.89, 142.89], [146.19, 165.19]], \"sentences\": [\"We see a newscaster speaking in a studio.\", \" We see scenes in a carwash and a man speaks to the camera and goes to his office.\", \" We return and see men in a car wash washing cars.\", \" A man pulls money from his pocket and we see cars being washed.\", \" We see a man count his money at the car wash then a newscaster speaks in front of the car wash.\", \" The newscaster runs and interviews men at the carwash who refuse to speak to him.\", \" We see more cars being washed.\"]}, \"v_dnQcp43wbRY\": {\"duration\": 143.34, \"timestamps\": [[0, 17.2], [20.07, 124.7], [127.57, 143.34]], \"sentences\": [\"Two men are in a garage, assembling parts on a tripod.\", \" They are creating a bicycle as they work.\", \" They put on the tires, completing the bike and showing it off for the camera.\"]}, \"v_4eHP5IvDl6o\": {\"duration\": 71.24, \"timestamps\": [[0, 38.47], [29.21, 71.24]], \"sentences\": [\"A camera zooms in on a sign hanging out front and leads into a woman brushing a horse's mane with a brush.\", \" The woman continues brushing all around the horse while the horse remains motionless.\"]}, \"v_bc7r5_gSAVg\": {\"duration\": 167.25, \"timestamps\": [[1.67, 71.08], [59.38, 138.82], [126.28, 167.25]], \"sentences\": [\"A man follows others into a large ballroom and leads into him playing poker with others.\", \" He smokes a cigarette while speaking to a woman and winning the game.\", \" She speaks to him in the end and she smiles while watching him walk away.\"]}, \"v_6J45AbWiGIE\": {\"duration\": 121.07, \"timestamps\": [[0, 16.95], [17.56, 87.17], [91.41, 121.07]], \"sentences\": [\"A man is out in an open field.\", \" He throws a frisbee for his dog.\", \" The dog catches it from multiple throws.\"]}, \"v_YAhHfaXnpKg\": {\"duration\": 88.31, \"timestamps\": [[0, 4.86], [4.86, 17.66], [18.1, 55.19], [55.19, 88.31]], \"sentences\": [\"A tiger walks on top a fallen tree covered with green plants.\", \" Then a iguana walks on a field with dead vegetation, while porcupines rest on stones.\", \" A woman gives a ticket to a guard and climbs on a camel for a ride, while the guard pulls the camel.\", \" After, the woman and a man gives food to a goat and then to an elephant in a zoo.\"]}, \"v_R2EZlSlDCuE\": {\"duration\": 204.34, \"timestamps\": [[0, 50.06], [55.17, 121.58], [121.58, 158.36], [158.36, 183.9]], \"sentences\": [\"A woman stands on front a table holding a brush and a large stencil.\", \" Then, the woman put the stencil on the table and apply paint on the stencil with a brush.\", \" After, the woman applies paint with a roller.\", \" Next, the woman finish to paint the table with the stencil.\"]}, \"v_gT_8511vwVE\": {\"duration\": 232.55, \"timestamps\": [[0, 10.46], [10.46, 224.41], [87.21, 101.16], [102.32, 104.65], [166.27, 177.9], [222.08, 230.22], [231.39, 232.55]], \"sentences\": [\"We see the credits on the screen.\", \" We then see a gym filled with dancing people.\", \" The camera splits in two and we see two images.\", \" We then zoom in on the right image.\", \" We see a cameraman walk from the back of the room to the front.\", \"They finish dancing and throw their hands in the air and clap.\", \" The instructor walks forward and waves her hands.\"]}, \"v_p0menuS7Mlk\": {\"duration\": 38.01, \"timestamps\": [[0, 15.77], [15.77, 25.66], [25.66, 31.17], [31.74, 38.01]], \"sentences\": [\"A girl in a red bathing suit stretches and walks to the edge of the dive platform and prepares to dive in a diving competition.\", \" The girl stands backwards on the edge of the dive platform.\", \" The diver jumps back off of the dive platform and spins forward for a head first entry.\", \" The cameraman zooms in on the diver in the water and the to the scoreboard.\"]}, \"v_XyQSmMYbP6o\": {\"duration\": 124.55, \"timestamps\": [[0, 100.89], [46.08, 102.13], [77.22, 102.76], [41.1, 118.32]], \"sentences\": [\"Girls stand in their swimsuits next to a sink.\", \" Girls dunk the faces into the water.\", \" The people pretend to drink from the water.\", \" The girls fill the sink with a spray nozzle.\"]}, \"v_Z7ZODw0C_hY\": {\"duration\": 226.7, \"timestamps\": [[0, 44.21], [40.81, 164.36], [172.29, 217.63]], \"sentences\": [\"A man is seen speaking to the camera in an indoor field.\", \" He then walks up and down the field and cuts the grass growing from the sides.\", \" He continues walking up and cutting the weeds while looking back to speak to the camera.\"]}, \"v_L5kxbN9wFAg\": {\"duration\": 48.18, \"timestamps\": [[0, 48.18], [0, 46.5], [1.45, 48.18]], \"sentences\": [\"man wearing a red outfit is standing in a green large field doing a shot put.\", \" man is in slowly motion making a sho put in a field.\", \" man is standing in a large green grassy field.\"]}, \"v_B42CY1Z6eV8\": {\"duration\": 127.83, \"timestamps\": [[0, 127.83], [26.84, 103.54], [97.15, 127.83]], \"sentences\": [\"The man in blue shirt is sitting on the wheel chair.\", \" The young man put his leg over his leg and put his socks and shoes, he did the same thing on other leg.\", \" The young man tied his shoes and smiled to the camera and gave a thumbs up.\"]}, \"v_Jv-bPV8eswU\": {\"duration\": 105.05, \"timestamps\": [[0, 17.86], [17.86, 33.09], [34.14, 88.77], [61.45, 69.86], [69.86, 74.06], [90.34, 95.59], [96.12, 105.05]], \"sentences\": [\"We see a shirtless man holding an electric shaver.\", \" The man adjusts the shaver.\", \" The man then shaves his face with the shaver.\", \"  The man adjusts the shaver and shaves his nose hairs.\", \" The man then opens the razor.\", \" The man finishes and smiles at the camera.\", \" We then see the ending credits.\"]}, \"v_plE3KNmuwj4\": {\"duration\": 157.62, \"timestamps\": [[0, 110.33], [98.51, 157.62]], \"sentences\": [\"Three men are in the boat, while a man is wakeboarding, as the two helicopters are flying about the water, the surfer is wakeboarding from side to side and then flipping over and doing cartwheel.\", \" The surfers are wakeboarding over ramps.\"]}, \"v_VYuQAfG0gKw\": {\"duration\": 25.73, \"timestamps\": [[0, 13.25], [12.09, 25.73]], \"sentences\": [\"A woman is seen sitting on a couch brushing her hair and running her fingers through it.\", \" She continues brushing and braiding her hair as well as bending forward.\"]}, \"v_-l16smV_uYg\": {\"duration\": 157.85, \"timestamps\": [[0, 6.31], [6.31, 11.84], [11.84, 66.3], [66.3, 107.34], [114.44, 140.49], [142.07, 157.85]], \"sentences\": [\"A lady is combing another ladies hair s the title is shown.\", \" We see the supplies the lady will be using as she talks to the camera.\", \" The stylist combs the customers hair, and adds a roller.\", \" The stylist removes the roller and add another.\", \" The stylist removes that one and adds a vertical one.\", \" The stylist speaks and the video ends.\"]}, \"v_NWaMWZUuTZc\": {\"duration\": 44.75, \"timestamps\": [[0, 24.61], [24.61, 34.01], [34.01, 44.74]], \"sentences\": [\"A man dressed in hip hop clothing begins breakdancing on a lit dancefloor while a DJ is playing behind him.\", \"The man stops dancing, stands up, walks back to the DJ booth, takes off his jacket and grabs a microphone.\", \" The man then turns around, walks to the end of the stage towards the audience, gets a hat thrown to him, puts it on, and then stands there in a stance with his legs apart and his arms crossed.\"]}, \"v_g17h49EYsJY\": {\"duration\": 72.03, \"timestamps\": [[0, 28.81], [22.69, 54.74], [42.5, 70.59]], \"sentences\": [\"A large lake is shown followed by people paddling out on boards.\", \" The people ride in one canoe pushing themselves along the water.\", \" The people continue paddling while the camera captures their movements.\"]}, \"v_vvHrSeomFtg\": {\"duration\": 214.81, \"timestamps\": [[0, 20.41], [21.48, 214.81]], \"sentences\": [\"grilled chicken salad sandwich is shown in a white plate.\", \" ingredients are chopped on top of wooden table and mixing the dressings with the ingredient and are smeared into toast bread.\"]}, \"v_aoY0XhAXm7M\": {\"duration\": 138.25, \"timestamps\": [[0, 129.96], [44.24, 125.12]], \"sentences\": [\"A cake mix from a box is created.\", \"  Everything is stirred up and then poured into a pan.\"]}, \"v_0czF2CCgq6I\": {\"duration\": 47.09, \"timestamps\": [[0, 25.9], [25.19, 28.73], [38.14, 44.97]], \"sentences\": [\"Person drives the red riding lawnmower across the yard.\", \"  The dogs run across the yard.\", \"  The person decides to turn off the red mower.\"]}, \"v_ke9gaIRnaEo\": {\"duration\": 126.87, \"timestamps\": [[0, 12.69], [12.69, 32.35], [32.99, 81.2], [82.47, 126.87]], \"sentences\": [\"Men are running in a field then on a city street.\", \" We see a lady and a man interviewed and see a store window.\", \" We see people running and another lady is interviewed and we return to the runners.\", \" The lady speaks and we see the runners.\"]}, \"v_ID44l9VqqGQ\": {\"duration\": 110.85, \"timestamps\": [[1.11, 2.77], [3.88, 109.19]], \"sentences\": [\"The credits of the clip are shown.\", \" A man plays a white accordion while sitting on a stool.\"]}, \"v_g7glOdM6BYo\": {\"duration\": 80.46000000000001, \"timestamps\": [[3.22, 44.25], [44.25, 80.06]], \"sentences\": [\"A person is seen close up cutting the hooves of a pig and moving his hands around to see.\", \" The person continues cutting the hooves as well as checking the teeth.\"]}, \"v_sAAARH12tdc\": {\"duration\": 211.6, \"timestamps\": [[0, 178.81], [173.52, 211.6]], \"sentences\": [\"A woman is smiling at the camera, the woman a put brown cream around the eyes, she then added a bronze eye shadow, then brown eyeliner and then she blended them in, then she added white powder and then sparkle brown at the center of the lid, then added pink powder on the side of the eye, she then put eye liner, and then mascara.\", \" She added blusser on the side of her face and then added lipstick on her lips.\"]}, \"v_WOZbWqJMkRg\": {\"duration\": 184.74, \"timestamps\": [[0, 31.41], [32.33, 178.27], [91.45, 93.29], [178.27, 184.74]], \"sentences\": [\"A marching band stands at attention.\", \" The marching band practices their song.\", \" The marching band instructor gives instructions.\", \" The marching band sets down their instruments.\"]}, \"v_j7vUMNMB4Yo\": {\"duration\": 93.35, \"timestamps\": [[0, 93.35], [0, 49.94], [49.01, 93.35]], \"sentences\": [\"A man is sitting on top of a roof.\", \" A man is holding a yellow bar.\", \" He takes the bar and starts tearing up a roof.\"]}, \"v_9AOVI0OCZqg\": {\"duration\": 193.12, \"timestamps\": [[0, 40.56], [40.56, 91.73], [91.73, 136.15], [136.15, 177.67]], \"sentences\": [\" A woman shows how to make a braid behind the head.\", \" Then, the woman makes a hole on the center of the braid and pass two times the tip of it to make a bun.\", \" After, the woman puts a pin to fix the bun and spread it to the sides, the she turns and smiles.\", \" The woman holds a child and both smiles.\"]}, \"v_dMjOeGJBF9M\": {\"duration\": 28.35, \"timestamps\": [[0, 12.05], [12.62, 28.35]], \"sentences\": [\"A young man is seen standing a top a slide on a playground riding a skateboard.\", \" The man then goes down the slide jumping off and attempting to go down again on the board and is successful.\"]}, \"v_nIfYhQHFWZI\": {\"duration\": 23.64, \"timestamps\": [[0, 9.57], [9.69, 20.45], [20.45, 22.57]], \"sentences\": [\"A man dressed in a blue and black uniform is standing on top of a mat preparing to do his routine.\", \"He eventually takes off running,and does a series of back flips,twist,front flips and cartwheels on the runway as well is in the air before landing on the mat.\", \"When he has completed his tumbling,the crowd begins to clap and he walks off.\"]}, \"v__GQaltSDMAk\": {\"duration\": 77.51, \"timestamps\": [[0, 77.51], [22.48, 31], [2.33, 68.21]], \"sentences\": [\"A small child is standing on a footstool at a kitchen counter squeezing the juice of citrus.\", \"A grown up pours the juice into a pitcher.\", \"The child alternates squeezing the citrus repeatedly.\"]}, \"v_dGHryLMDBIU\": {\"duration\": 58.21, \"timestamps\": [[0, 58.21], [19.5, 24.45], [30.56, 34.05], [39, 49.19]], \"sentences\": [\"A man sits in a booth with a large hookah pipe on the table talking to the camera.\", \" The man smokes from the pipe and blows the smoke in the room.\", \" The man crosses his arms across his chest.\", \" The man puts his hand on the top of the pipe.\"]}, \"v_6kgJx6ahgq0\": {\"duration\": 72.66, \"timestamps\": [[0, 9.45], [9.45, 21.8], [21.8, 72.66]], \"sentences\": [\"A mainly black intro with some blue accents and white words appear and read A Double Beetloaf Production.\", \"A black screen with a logo and words read WAKA Peninsula Kickball PRESENTS, and then a series of still shot pictures begin.\", \"A series of different random clips begin to play, and then it also includes along with more random still shot pictures.\"]}, \"v_6WQSZekz8vQ\": {\"duration\": 56.15, \"timestamps\": [[0, 15.16], [15.72, 56.15]], \"sentences\": [\"An intro leads into two men performing sit ups.\", \" They switch sides with one holding their legs and another performing the sit ups.\"]}, \"v_GbykXyc8LA8\": {\"duration\": 59.86, \"timestamps\": [[5.39, 7.48], [14.07, 43.7], [50.28, 52.68]], \"sentences\": [\"A woman takes off her jacket.\", \" She lays down on her back and gets her belly button pierced.\", \" She stands up and smiles.\"]}, \"v_dbMPw8PfXHo\": {\"duration\": 116.57, \"timestamps\": [[0, 11.07], [16.32, 69.36], [69.36, 92.09], [103.74, 113.65]], \"sentences\": [\"Wraps are shown on a plate.\", \" A man spreads food out onto a wrap.\", \" He rolls the wrap up and cuts it.\", \" He takes a bite of the wrap and gives a thumbs up.\"]}, \"v_z5xZrF421HE\": {\"duration\": 219.23, \"timestamps\": [[20.83, 25.21], [41.65, 199.5], [214.85, 219.23]], \"sentences\": [\"Two people are driving in a tractor.\", \" A woman starts rock climbing up a wall.\", \"  People are walking and hiking along a dirt trail.\"]}, \"v_xXj-oQm-NbE\": {\"duration\": 221.82, \"timestamps\": [[0, 12.2], [14.42, 22.18], [22.18, 31.05], [33.27, 149.73], [149.73, 158.6], [158.6, 210.73], [210.73, 221.82]], \"sentences\": [\"We see a decorative image then see a man talking outside a house.\", \" We see title screens and the man in various rooms in the  house.\", \" The man stands outside of the house talking.\", \" We see the man and a lady girt warp a box with dollar bill wrapping paper.\", \" A title screen appears and we see the man outside talking.\", \" We see novelty items such as a sword and we see a Texas shaped cutting board as the man pretends to cut it.\", \" the man talks in the woods and we see an ending title screen.\"]}, \"v_m4EcgRjCpi8\": {\"duration\": 186.04, \"timestamps\": [[1.86, 186.04], [27.91, 186.04], [61.39, 72.56]], \"sentences\": [\"A man is sitting down on an exercise machine.\", \" He pulls the rope and starts working out.\", \" A man in a blue sweater starts writing on a clip board.\"]}, \"v_45WdXofnTkI\": {\"duration\": 67.18, \"timestamps\": [[0, 9.4], [12.76, 48.37], [50.72, 67.18]], \"sentences\": [\"A man is standing inside a room.\", \" He is playing a violin slowly.\", \" He looks toward the camera, continuing to play.\"]}, \"v_UkA6pgt29VI\": {\"duration\": 236.38, \"timestamps\": [[28.37, 61.46], [61.46, 69.73], [152.47, 158.37]], \"sentences\": [\"A man is paddle boarding in choppy water.\", \" A woman is talking to the camera.\", \" a man stands up and talks to the camera.\"]}, \"v_OszjSKHCvKI\": {\"duration\": 218.99, \"timestamps\": [[13.14, 75.55], [41.61, 218.99], [147.82, 218.99]], \"sentences\": [\"The people are riding the boat to the lake.\", \" The wakeboarders are being dragged by the boat as the wakeboard from side of the boat.\", \" The surfers slide into a ramp and railings and continue to wakeboard.\"]}, \"v_am4Z43QlUrg\": {\"duration\": 216.32, \"timestamps\": [[0, 6.49], [6.49, 49.75], [49.75, 85.45], [85.45, 138.44], [138.44, 174.14], [174.14, 216.32]], \"sentences\": [\"A man rides his bike to a driveway and stop.\", \" The man shows us how to collapse his bike an shows us the front tire.\", \" He wipes the tire off with a paper towel.\", \" The man adjusts some of the gears to disconnect the brakes.\", \" The man takes sandpapaer and wipes a gear then wipes it with a towel.\", \" The man rides the bike into the driveway and hops off to show us the tire.\"]}, \"v_2ISOAmuzs24\": {\"duration\": 210.3, \"timestamps\": [[0, 41.01], [41.01, 82.02], [82.02, 117.77], [117.77, 182.96], [182.96, 210.3]], \"sentences\": [\"Two teams are gather on front the goal while two men are on the penalty area, then a player wearing blue t-shirt runs and kick the ball directly to the goal and scores.\", \" After, a player wearing red t-shirt kick the ball and scores for his team.\", \" Next, a player with blue t-shirt and a player with red t-shirt scores.\", \" A player with blue t-shirt kick miss to score because the ball land on the pole and end outside the goal.\", \" Finally, a player with red t-shirt scores and make win his team.\"]}, \"v_Z6l2Yu9Q0mU\": {\"duration\": 210.0, \"timestamps\": [[0, 42], [42, 138.6], [138.6, 210]], \"sentences\": [\"A man wearing glass is seen speaking into a microphone and picks up a hula hoop while speaking into the camera.\", \" He then sings a song while hula hooping and transitions into him speaking to the camera.\", \" More shots of him singing and hula hooping are shown and ends with him asking viewers to subscribe.\"]}, \"v_xrl3oxTa6sQ\": {\"duration\": 104.61, \"timestamps\": [[0, 29.81], [30.34, 104.61]], \"sentences\": [\"A darkness is shown with the camera moving around followed by a light and a large blaze shooting up into the sky.\", \" A group of men stand around the fire and laugh with one another and then try to stop out some fire.\"]}, \"v_mua8hNPuQHw\": {\"duration\": 109.34, \"timestamps\": [[0, 27.88], [27.88, 49.75], [50.84, 109.34], [83.1, 94.58]], \"sentences\": [\"A man holds a fencing sword and shows how to hold the sward.\", \" Then, the man makes a demonstration how to move the sward with his right hand.\", \" After, the man practice fencing with another person.\", \" A little kid wearing fencing stands behind the man.\"]}, \"v_JcMOzfurtK4\": {\"duration\": 235.6, \"timestamps\": [[0, 27.09], [29.45, 86], [90.71, 137.83], [143.72, 235.6]], \"sentences\": [\"A group of people gather at a camp site, unpacking a truck.\", \" A man is pointing at a map and talking before unloading canoes from a trailer.\", \" The people set up tents and prepare their sleeping bags.\", \" They make a fire, then canoe down a river slowly.\"]}, \"v_rCmpRDbS_O4\": {\"duration\": 95.34, \"timestamps\": [[0, 46.72], [46.72, 79.13], [79.13, 95.34]], \"sentences\": [\"man is standing in front of a mirror and washing his face.\", \" the man holds a cloth with his hands and wipe his face.\", \"the boy walks in the room and sits in front of a computer.\"]}, \"v_7_HWPDDW7Cw\": {\"duration\": 162.15, \"timestamps\": [[0, 25.13], [30.81, 59.18], [68.91, 162.15]], \"sentences\": [\"A woman is standing in a kitchen while holding a mop.\", \" She shows how to ring out the mop into the bucket.\", \" She then demonstrates how to mop the floor.\"]}, \"v_OjV4UScwkU0\": {\"duration\": 161.07999999999998, \"timestamps\": [[0, 49.93], [46.71, 111.14], [101.48, 153.02]], \"sentences\": [\"A man is seen walking into frame wearing a helmet and putting gloves on.\", \" The man then grabs a tool and begins torching an area.\", \" He pauses for a moment and continues torching followed by grabbing the camera and showing off his work.\"]}, \"v_IiCN1md2MV4\": {\"duration\": 12.19, \"timestamps\": [[0, 12.19], [0, 10.85], [10.91, 12.19]], \"sentences\": [\"Two people are standing in a room.\", \" They are playing wall ball.\", \" They stop and walk towards the wall.\"]}, \"v_O1WvjCFqLz0\": {\"duration\": 63.07, \"timestamps\": [[0, 20.18], [22.39, 63.07]], \"sentences\": [\"A young boy stands on a chair at a table.\", \" He is doing several kickboxing style stunts, punching and bouncing, also banging his head.\"]}, \"v_UPwDuuYlLfQ\": {\"duration\": 35.06, \"timestamps\": [[0.7, 32.78], [4.73, 32.78]], \"sentences\": [\"A close up of a dog is shown with a person's hands cutting the dog's fur.\", \" The dog continuously bites at the cutter and sticks it's mouth open exposing it's teeth.\"]}, \"v_AAfFlwaXW3c\": {\"duration\": 60.93, \"timestamps\": [[0, 9.75], [10.05, 18.89], [19.19, 44.17], [50.27, 55.14]], \"sentences\": [\"People works in a construction site.\", \" A construction worker sits and drinks from a cup.\", \" Then, a man arrives and lift a weight, while the construction worker watch, and then holds up a round sign.\", \" After, the construction worker sits next the man who wears a gold medal on his chest.\"]}, \"v_kWN4zFblj6o\": {\"duration\": 84.15, \"timestamps\": [[0, 84.15], [25.67, 84.15], [9.68, 75.74]], \"sentences\": [\"Several people are in a gym doing step aerobics while being accompanied by music.\", \" Several people take a pause as they try to catch on to the movements.\", \" The instructor calls out the instructions for several of the movements as well.\"]}, \"v_8-QcL1k5n6k\": {\"duration\": 60.84, \"timestamps\": [[0, 42.89], [6.08, 8.82], [18.56, 22.51], [43.8, 52.02], [52.93, 60.84]], \"sentences\": [\"We see a man on a rowing machine.\", \" The man adjusts the dial and works out more.\", \" We see the man's hand on the handle.\", \" We see the machine folded and put away.\", \" We see the man workout again.\"]}, \"v_2TEJnQzCPUM\": {\"duration\": 72.82, \"timestamps\": [[2.18, 68.08], [2.18, 15.29], [21.12, 25.12], [53.89, 68.08]], \"sentences\": [\"A man demonstrates how to rollerblade safely by exhibiting and demonstrating rollerblade safety gear while in a public park.\", \"  The man begins by rollerblading down a long walk way and then  sitting on a bench outdoors and talking to the cameras.\", \"  The man then demonstrates how to strap on roller blades.\", \"  The man then showcases a white helmet, strapping it on and then rollerblading in an park among the people.\"]}, \"v_wBcP3SQ3Qg4\": {\"duration\": 229.86, \"timestamps\": [[10.34, 104.58], [83.9, 167.79], [179.29, 214.91]], \"sentences\": [\"Two women are seen speaking to the camera and leads into turning on a faucet and running her hands underneath.\", \" The woman then scrubs soap into her hands and continues to wash them off then taking a paper down and drying her hands and sink.\", \" The other steps in to demonstrate how she washes her hands and ends by laughing to the camera.\"]}, \"v_J1fcLhB-Slg\": {\"duration\": 31.67, \"timestamps\": [[5.38, 15.68], [16.47, 25.02], [25.18, 27.56], [28.19, 31.67]], \"sentences\": [\"A guy drinks six cups of liquid one right after another.\", \" The guy covers his mouth and lowers his head.\", \" The guy wipes his forehead, stands up straight, and gestures to a guy next to him.\", \" The credits associated to the clip is shown.\"]}, \"v_1cCRZztswFA\": {\"duration\": 175.75, \"timestamps\": [[0, 7.91], [12.3, 34.27], [36.03, 161.69], [163.45, 175.75]], \"sentences\": [\"A couple of girls are standing in a gymnasium.\", \" One walks onto the court with her baton.\", \" She begins to perform, dancing and twirling, throwing and spinning her baton.\", \" She kneels as she finishes, then exists the court.\"]}, \"v_lRB6XvAm_FU\": {\"duration\": 91.07, \"timestamps\": [[0, 18.21], [20.04, 85.15], [85.15, 91.07]], \"sentences\": [\"Kids are sitting under a Christmas tree.\", \" They are putting ornaments onto the Christmas tree.\", \" Words come onto the screen.\"]}, \"v_NpBZn7OHUKo\": {\"duration\": 119.84, \"timestamps\": [[0, 7.19], [7.79, 25.77], [26.36, 66.51], [67.11, 113.85], [113.25, 119.84]], \"sentences\": [\"We see an opening title screen.\", \" Two men stand in a room talking to the camera.\", \" the man in blue kneels and pulls the handle on a exercise machine from above as the standing man gives directions he finishes and stands.\", \" There is a title screen and we see the man pull from the ground up n the same machine.\", \" We see a closing title screen.\"]}, \"v_MBTSe-NHK-I\": {\"duration\": 133.75, \"timestamps\": [[0, 8.69], [9.36, 21.4], [27.42, 107], [108.34, 133.75]], \"sentences\": [\"A forest is shown with rapid water from a river.\", \" A group of rafters are floating toward the small waterfall.\", \" They go down the falls into the rapid white coiling waters.\", \" They wave as they go by the camera, and continue to float downstream.\"]}, \"v_6RePzOd3GvQ\": {\"duration\": 13.52, \"timestamps\": [[0, 3.99], [4.66, 8.38], [9.19, 13.52]], \"sentences\": [\"A man in a black tank top speaks to the camera.\", \" He is shown with a toothbrush, then brushes and spits.\", \" Then we see him with a massive mouthful of paste, pouring out of his mouth as he sloppily brushes.\"]}, \"v_uz91AvGxjbw\": {\"duration\": 190.59, \"timestamps\": [[0, 52.41], [47.65, 146.75], [143.9, 190.59]], \"sentences\": [\"Various shots of a field are shown followed by an older man playing a game of crochet.\", \" He hits the ball all over the field while another man watches and plays with him as well.\", \" In the end the men shake hands and walk away from the field.\"]}, \"v_uzUVSpklbRs\": {\"duration\": 48.83, \"timestamps\": [[0, 16.85], [15.63, 35.65], [32.96, 47.37]], \"sentences\": [\"Two people are seen riding on top of camels with a man leading in front.\", \" The camera pans up to a man sitting on a rock and waving to the camera.\", \" The people continue to ride on camels with the camera following from behind.\"]}, \"v_9dSOQrpovQI\": {\"duration\": 60.98, \"timestamps\": [[3.35, 43.9], [40.55, 43.9], [49.39, 56.4]], \"sentences\": [\"A little girl is standing in a kitchen doing dishes.\", \" She places the dishes into a strainer on the counter.\", \" The strainer of dishes is shown.\"]}, \"v_81k4vwur1Gk\": {\"duration\": 171.48, \"timestamps\": [[0, 54.02], [48.87, 132.9], [116.61, 167.19]], \"sentences\": [\"A person is seen grabbing a pot of coffee while laughing to the camera and wandering around an office.\", \" The man is seen speaking to people outside as well as inside while talking into the microphone.\", \" The man continues rapping and shows clips of people working, drinking coffee, and sitting next to the man.\"]}, \"v_Q-879RNVOdg\": {\"duration\": 202.25, \"timestamps\": [[0, 20.22], [15.17, 202.25]], \"sentences\": [\"The view shows the aerial view of big lakes.\", \" Men and women in bikinis and trunks carrying wakeboards and walking towards the motorboat, a woman is riding a wakeboard and holding on to the harness that is attached to the boat, and wakeboarding on the water, while other men and women are relaxing in the boat, the men also ride the wakeboard, the boat stopped at the center of the lake, and the people jumped in the water, the men flipped over while wakeboarding, they surf and jump on the water.\"]}, \"v_6l0JqBhldeA\": {\"duration\": 126.09, \"timestamps\": [[3.15, 54.85], [54.85, 121.67]], \"sentences\": [\"A man is seen hitting a ball along the beach with a stick while the camera follows his movements.\", \" The man continues to hit several balls along the beach and walking around at the same time.\"]}, \"v_xYeqvN8cihg\": {\"duration\": 36.06, \"timestamps\": [[0, 4.15], [4.33, 29.03], [30.11, 36.06]], \"sentences\": [\"A set of teenage boys are in a room playing with a Rubiks cube.\", \"The time begins and the boy begins to try and solve the cube as the other boy records his record of 12:31.\", \"The boy then receives a paper and is congratulated by his friends.\"]}, \"v_1cU8sp05Bu0\": {\"duration\": 64.81, \"timestamps\": [[0, 11.34], [11.34, 64.81], [0, 11.02]], \"sentences\": [\"street is shown with different cas passing by the street.\", \"man is tanding in a music room playing congas.\", \" people are walking in the sidewalk by a store.\"]}, \"v_zMWhT5Rv6WE\": {\"duration\": 192.7, \"timestamps\": [[0, 192.7], [46.25, 192.7]], \"sentences\": [\"A woman is show sitting behind a set of bongo drums speaking into a microphone.\", \" She continues speaking to an audience while moving her arms around behind the set of drums.\"]}, \"v_HQk5hngL4Us\": {\"duration\": 153.53, \"timestamps\": [[6.14, 152], [140.48, 149.69]], \"sentences\": [\"Children hang Christmas ornaments on trees in a planter of a playground area.\", \" A teachers assist the children with placing the ornaments on the trees.\"]}, \"v_1nltPeGC5ZQ\": {\"duration\": 84.75, \"timestamps\": [[0, 5.51], [0, 84.75]], \"sentences\": [\"Two large sumo wrestlers wrestle in a ring.\", \" Pictures and clips of sumo wrestlers are shown on the screen.\"]}, \"v_dJgea9sOlBY\": {\"duration\": 20.71, \"timestamps\": [[0, 20.71], [0, 20.4], [1.04, 20.71]], \"sentences\": [\"girl is doing abs in a big pink ball.\", \" girl is standing inside a room doing exercise.\", \" girl is wearing jean shorts and pink shirts doing abs in a room.\"]}, \"v_0VoNAs7Ia0A\": {\"duration\": 148.28, \"timestamps\": [[0, 142.35], [40.78, 142.35]], \"sentences\": [\"A little girl in pajamas is playing with a boy in a yellow shirt.\", \" They pick each other up and are playing around.\"]}, \"v_iOa_svsqGxQ\": {\"duration\": 169.32, \"timestamps\": [[0, 22.01], [22.86, 117.68], [118.52, 169.32]], \"sentences\": [\"Film clips are shown of several surfers riding waves in the ocean.\", \" The main surfer rides with several others.\", \" He drags his boards into the beach, then goes back to surfing.\"]}, \"v_VR19Scunfhg\": {\"duration\": 137.67000000000002, \"timestamps\": [[0, 0.69], [0.69, 9.64], [9.64, 17.9], [17.9, 119.77], [124.59, 137.67]], \"sentences\": [\"A man is shown tight roping across a small pond and eventually falls in the water.\", \"Another man is shown doing the same thing but falls into the pool.\", \"The screen flashes into the hotel room and attempts to tight rope out of the window.\", \"After,various people attempt to do the same thing in various locations and they all fall off.\", \"Finally,the tv's are shown while videos are shown and the Youtube subscribe video is at the bottom.\"]}, \"v_aYtnkEWM_Cg\": {\"duration\": 95.16, \"timestamps\": [[0, 36.16], [28.55, 73.27], [63.28, 91.83]], \"sentences\": [\"Two young girls are seen kneeling down ready while others walk in and out of frame.\", \" Several players are then seen playing volleyball and pausing to cheer with one another.\", \" The girls continue playing and cheering as well as getting ready to play.\"]}, \"v_Sh8r9g_lp7U\": {\"duration\": 69.43, \"timestamps\": [[0, 15.97], [15.97, 34.02], [34.71, 69.43]], \"sentences\": [\"A young man cleans the floor while a man puts stuff on a table, then the man sweeps the floor.\", \" After, the man puts a bucket on the table and continues sweeping the floor, while the young man cleans the floor.\", \" A person puts blue tiles on the floor, then the man comes to sweep the floor.\"]}, \"v_3qkNnr1_78I\": {\"duration\": 131.15, \"timestamps\": [[1.97, 110.16], [14.43, 48.52], [51.15, 64.26], [113.44, 122.62]], \"sentences\": [\"A man walks on a tight rope between two sheer rock faces.\", \" A view of an old world European city is seen.\", \" The man sits on a the tight rope high up in the air.\", \" Spectators stand along a country road.\"]}, \"v_kzbQWKUMyS0\": {\"duration\": 236.26, \"timestamps\": [[4.73, 15.36], [15.36, 47.25], [47.25, 60.25], [60.25, 99.23], [99.23, 113.41], [113.41, 223.27], [161.84, 171.29], [183.1, 200.82], [224.45, 236.26]], \"sentences\": [\"A man dances and performs acrobatics on a stage.\", \" The man mounts a tightrope and performs on it.\", \" The man dismounts from the tightrope and hops around the stage.\", \" The man mounts the rope again and performs tricks.\", \" The man dismounts from the rope and performs some kicks on stage.\", \" The man mounts the rope once more and performs more tricks.\", \" The man briefly dismounts from the rope.\", \" The man briefly dismounts from the rope again.\", \" The man dismounts a final time and poses for the audience.\"]}, \"v_iiqaJGokpEw\": {\"duration\": 60.7, \"timestamps\": [[0, 3.64], [5.77, 48.86], [50.38, 57.36], [58.57, 60.7]], \"sentences\": [\"A group of people are standing outside a mobile home.\", \" A man spins in circles to make himself dizzy and disoriented.\", \" He then swings a bat at a pinata, missing and hitting the woman behind him in the head.\", \" She drops to the ground in pain.\"]}, \"v_feWO_gqAcGk\": {\"duration\": 68.22, \"timestamps\": [[1.02, 21.83], [19.78, 48.44], [47.07, 65.49]], \"sentences\": [\"A close up of a bull is seen followed by a person taunting the bull.\", \" A bull is then killed and laid in the dirt while others roam around him.\", \" More clips are shown of people taunting bulls.\"]}, \"v_sIYRsGZm2XY\": {\"duration\": 107.81, \"timestamps\": [[0, 8.62], [15.09, 19.41], [67.38, 70.62], [106.73, 107.81]], \"sentences\": [\"A man is smoking a hookah in a booth.\", \" A man in a suit is holding a bowl of food.\", \" A doctor is talking to the camera.\", \" Two women are sitting behind a desk.\"]}, \"v_JXazqQitVdQ\": {\"duration\": 12.49, \"timestamps\": [[0, 5], [3.62, 12.49]], \"sentences\": [\"A girl is seen climbing a set of monkey bars on a jungle gym.\", \" She moves her way along the monkey bars and makes it to the other side jumping down and looking to the camera.\"]}, \"v_6jTH_gFx6Ik\": {\"duration\": 154.11, \"timestamps\": [[0, 30.05], [30.05, 89.38], [89.38, 154.11]], \"sentences\": [\"A group of people dressed in red are sitting on a long raft kayaking through rocky waters.\", \"They continue paddling through the water making sure to avoid the trees.\", \"Once they are finished,a still image of all of them is shown as they all smile.\"]}, \"v_LbXhdPZakpo\": {\"duration\": 50.67, \"timestamps\": [[0, 15.2], [15.45, 36.99], [28.63, 48.39]], \"sentences\": [\"A large group of girls are seen running around a field playing field hockey.\", \" Coaches yell to the women on the sides as they continue to play.\", \" The girls run up and down the field and the camera follows their movements.\"]}, \"v_Q2wd5aLtZ1E\": {\"duration\": 62.25, \"timestamps\": [[0, 5.6], [8.4, 42.64], [43.27, 62.25]], \"sentences\": [\"A man is shown on top of a roof.\", \" He is removing shingles one by one with a tool.\", \" He then replaces the shingles, drilling them back into place.\"]}, \"v_juLxWt_3omw\": {\"duration\": 28.05, \"timestamps\": [[0, 13.18], [12.2, 28.05]], \"sentences\": [\"A woman is seen standing ready in front of a set of weights.\", \" She lifts the bar up over her head and begins to throw it down in the end.\"]}, \"v_7hvq4VqEGCE\": {\"duration\": 180.16, \"timestamps\": [[1.8, 140.53], [31.53, 63.96], [66.66, 92.78], [86.48, 144.13], [144.13, 179.26]], \"sentences\": [\"A child is having its eye looked at.\", \"  Adults comfort the child.\", \"  A nurse then tries to get something else in the eye, but the child is resisting.\", \"  The child cries and then hugs the nurse.\", \"  Another child plays in the background.\"]}, \"v_Ktun1-2Y540\": {\"duration\": 179.1, \"timestamps\": [[0, 164.77], [53.73, 57.31], [77.91, 81.49], [108.35, 115.52], [127.16, 130.74], [139.69, 150.44], [159.4, 162.98], [164.77, 179.1]], \"sentences\": [\"We see a lady doing a hula hoop routine.\", \" The lady swings the hula hoop.\", \" The lady spins the hula hoop on her shoulder.\", \" The lady spins the hula hoop up and down her body.\", \" The lady spins the hula hoop on her arm.\", \" A man stops to watch the lady dance.\", \" The lady finishes and takes a bow.\", \" We see funny video clips in the ending screen.\"]}, \"v_mh_0QLZhrSY\": {\"duration\": 100.1, \"timestamps\": [[0, 100.1], [1, 100.1], [99.1, 100.1]], \"sentences\": [\"A man is standing in front of a building playing the bag pipes.\", \" People are standing around watching him.\", \" He finishes playing and starts to put the bag pipes down.\"]}, \"v_MrVj3D-DuJI\": {\"duration\": 81.97, \"timestamps\": [[2.05, 38.93], [31.56, 74.59]], \"sentences\": [\"A woman is seen walking into frame holding a hula hoop and begins spinning it around her body as well as herself.\", \" The woman continues spinning the hoop around herself while speaking and smiling to the camera.\"]}, \"v_8EfkFxoXI_4\": {\"duration\": 170.74, \"timestamps\": [[0, 12.81], [11.95, 20.49], [23.9, 33.29], [46.1, 75.98], [77.69, 86.22], [99.88, 107.56], [108.42, 117.81], [130.61, 151.96], [151.96, 157.93]], \"sentences\": [\"A man talks while we view an object on the table.\", \"  The man picks up and holds the object.\", \"  The man shifts the seat of a bike.\", \"  The man uses the object from the table to tighten the seat of the bike.\", \"  The man checks the bike seat for looseness.\", \"  The man begins spinning the seat of the bike and removes it.\", \"    The man puts the seat back on the bike.\", \"  The man uses the tool to adjust the seat on the side.\", \"  The man checks the seat for tightness a last time.\"]}, \"v_Y5zJT3BjIxM\": {\"duration\": 185.74, \"timestamps\": [[0, 38.08], [38.08, 185.74]], \"sentences\": [\"hair utensils are in a table and a man is showing his haircut.\", \" man is standing behind the other shaving her hair with an electric razor and scissors.\"]}, \"v_xSIh6JjAR_Y\": {\"duration\": 233.57, \"timestamps\": [[0, 63.06], [100.44, 233.57]], \"sentences\": [\"Men are shown helping a larger man onto a camel, which has to stand up once he has mounted.\", \" He is led by another man as he rides the camel down the road.\"]}, \"v_fU-OulK7lZs\": {\"duration\": 144.5, \"timestamps\": [[0, 113.43], [13, 39.01], [23.12, 54.91], [48.41, 67.19], [58.52, 93.92], [65.75, 112.71], [104.76, 127.88], [125.71, 144.5]], \"sentences\": [\"There are two teams playing soccer for the 2012 World Cup in a large stadium with many spectators watching them.\", \" The player from the red team kicks a goal and the crowd cheers for him.\", \" They opposing yellow team continues to play against the red team.\", \" The coach is giving directions to the team.\", \" The crowd is cheering and waving the team flag.\", \" The player from the yellow team scores a goal for his team.\", \" The yellow team wins and they rejoice holding the trophy.\", \" The entire stadium cheers for their victory.\"]}, \"v_E2nAOID5DLM\": {\"duration\": 28.47, \"timestamps\": [[0.14, 3.13], [3.7, 28.47]], \"sentences\": [\"A man is jumping in the background.\", \"  A Russian then completes a long jump and gets his score then runs around with a flag.\"]}, \"v_unFlcSwdDFc\": {\"duration\": 117.07, \"timestamps\": [[0, 30.44], [28.1, 91.9], [89.55, 117.07]], \"sentences\": [\"A large group of people are seen playing a game of soccer in an indoor field in front of a large crowd.\", \" A close up of a ball is shown as well as people watching on the sides as the men continue to kick the ball up and down the field.\", \" In the end several shots are shown of people scoring goals.\"]}, \"v_ILIpCfCWyT0\": {\"duration\": 139.19, \"timestamps\": [[0, 14.62], [18.79, 20.18], [22.97, 139.19]], \"sentences\": [\"People are skateboarding down a street.\", \" A person is riding a blue bicycle.\", \" People are doing tricks on a skateboard.\"]}, \"v_yxDsp8EBZtY\": {\"duration\": 8.34, \"timestamps\": [[0, 2], [2.08, 6.04], [5.75, 7.96]], \"sentences\": [\"A young man is seen standing on the side walk outside.\", \" The boy spins himself around while holding an object.\", \" The man then throws the object off into the distance.\"]}, \"v_lFlQ_xWVt8M\": {\"duration\": 126.02, \"timestamps\": [[0, 16.38], [23.94, 51.04], [52.3, 87.58], [90.1, 114.04]], \"sentences\": [\"A man in a blue shirt is wearing brown gloves and sitting in a chair.\", \" He is holding a tool in his hand.\", \" He pulls his mask down and begins using the tool in the dark.\", \" He is showing what he did with the tool.\"]}, \"v_hfZQBDePOOE\": {\"duration\": 199.46, \"timestamps\": [[0, 199.46], [37.9, 38.89]], \"sentences\": [\"A person is doing tricks on a wakeboard behind a boat.\", \" A man in sunglasses and a black shirt keeps talking in between clips.\"]}, \"v_JJ811udnROI\": {\"duration\": 37.06, \"timestamps\": [[1.11, 37.06], [30.39, 32.98], [32.8, 37.06], [21.31, 24.64]], \"sentences\": [\"litle girl wearing pink pants playing pitch and toss in a playground.\", \" man walking in front of the kid pass by her.\", \" women wearing dresses are stading on a side of the hopscotch.\", \" in the background a person is doing exercise lifting weight.\"]}, \"v_rXgxlwrRFTg\": {\"duration\": 36.69, \"timestamps\": [[13.57, 35.04], [0.92, 6.05], [6.6, 34.67], [16.14, 35.22]], \"sentences\": [\"Several people ride a line of horses on a vast field of green grass surrounded by trees and flat green land.\", \"  A visual of a street with two yellow lines painted on it and a graphic of  a brown and yellow weathervane appear with a backdrop of green fields and mountains.\", \"  Pictures of lone horses standing on the top of mountains appears intertwined with images and video of people riding horses, several of them wearing cowboy hats.\", \"  As the people ride horses a white tent can be seen along with horses and people crossing streams of water and vast spaces of green field before fading to another lone horse on a mountain.\"]}, \"v_q81H-V1_gGo\": {\"duration\": 160.15, \"timestamps\": [[0, 13.61], [15.21, 26.42], [26.42, 52.85], [52.05, 68.06], [68.06, 87.28], [88.08, 108.1], [108.1, 136.13], [136.93, 152.14], [152.14, 160.15]], \"sentences\": [\"A man standing in the park shows a ring to the camera.\", \" The man puts the ring on his thumb and shows the camera.\", \" The man takes a bow from a bag and lines it up on his arrow and man shoots his bow.\", \" We switch to two other men shooting their bows.\", \" We see the targets at the end of the range.\", \" We change to seeing just one of the men shooting bows.\", \" We switch back to the first man we were shown.\", \" We are shown the arrows as they hit the target.\", \" The screen fads and the website appears.\"]}, \"v_Bh35Q9vNsSA\": {\"duration\": 27.31, \"timestamps\": [[0, 1.77], [2.05, 6.14], [6.28, 27.17]], \"sentences\": [\"A woman puts on a surprise when sitting on a couch.\", \"  A man talks and then plays the bagpipes on front two people sitting on a couch.\", \" Then, a woman sing while the man plays the bagpipes.\"]}, \"v_tlgEi4bU9Fc\": {\"duration\": 86.75, \"timestamps\": [[0, 22.12], [22.12, 86.75]], \"sentences\": [\"girl is sitting in a room talking to the camera and with hair rolls on her head.\", \" the hair is loose and have curls and walks in the room showing her hair.\"]}, \"v_HDVk1O78gwc\": {\"duration\": 223.61, \"timestamps\": [[0, 211.31], [0, 209.07], [211.31, 223.61]], \"sentences\": [\"Several female gymnasts are shown on the bars making different mistakes with their tricks.\", \" Their coaches are also shown in the video along with them.\", \" The video ends with the closing credits shown on the screen.\"]}, \"v_DfFqlrv7F2g\": {\"duration\": 78.46000000000001, \"timestamps\": [[0, 13.34], [14.52, 20.79], [21.97, 25.11], [28.64, 51], [51.39, 64.34], [69.83, 78.46]], \"sentences\": [\"A woman sits at the foot of a bed.\", \" She bends down to put socks on, then grabs her back in pain.\", \" A man does the same.\", \" They are then seen using a tool to apply their socks, then their shoes comfortably.\", \" The woman talks to the camera while holding the tool, and then the man does also.\", \" Another woman appears to do the same.\"]}, \"v_5Wp2dxIAocI\": {\"duration\": 213.25, \"timestamps\": [[3.2, 92.77], [77.84, 206.86]], \"sentences\": [\"A woman is seen sitting at a table speaking to the camera and begins wrapping a present.\", \" She demonstrates how to properly wrap a present as well as tape up the sides and present the box in the end.\"]}, \"v_RiF_iAc0keQ\": {\"duration\": 11.89, \"timestamps\": [[0, 1.61], [2.26, 7.19], [7.37, 11.89]], \"sentences\": [\"A boy in a white shirt jumps off of a bed.\", \" Another boy lays down on his stomach.\", \" Another person lifts him up and drops him on the bed.\"]}, \"v_m--b-Ltjm_Y\": {\"duration\": 143.15, \"timestamps\": [[1.43, 68], [54.4, 138.14]], \"sentences\": [\"A woman is seen helping a person put on a pair of stilts followed by clips of people using the stilts.\", \" Several clips are shown of people running and walking around using the stilts as well as speaking to the camera and helping one another.\"]}, \"v_wTBJ4PRnU4k\": {\"duration\": 233.85, \"timestamps\": [[0, 74.83], [74.83, 201.11], [212.8, 233.85]], \"sentences\": [\"A woman is seen speaking to the camera in front of a car and leads into the back of a truck and her pulling out a tire.\", \" She then instructs how to properly change a tire by using a jack, taking the old tire off, and screwing the new one in.\", \" She unscrews the jack and puts it back in the car, ending with her speaking to the camera.\"]}, \"v_4IC1_C_dtvk\": {\"duration\": 62.56, \"timestamps\": [[0, 16.26], [16.26, 46.6], [42.22, 58.8]], \"sentences\": [\"Two people are seen sitting in a dark room playing a drum set.\", \" Another person steps in to play drums while others are seen playing instruments from behind.\", \" The group continues playing with one another as the camera pans around them playing.\"]}, \"v_VtIMPJjcdn4\": {\"duration\": 82.27, \"timestamps\": [[5.35, 71.99], [21.39, 29.62], [30.44, 63.35]], \"sentences\": [\"A woman is standing behind a table.\", \" She picks up a shoe and pours baking soda into the shoe.\", \" She shakes it around and dumps out the baking soda.\"]}, \"v_wlcU-u-xsH4\": {\"duration\": 34.76, \"timestamps\": [[0, 19.47], [0.7, 19.47], [0.7, 4.52], [0.7, 15.47], [19.47, 34.76]], \"sentences\": [\"men are on a side of the rug of war, while on the other side are men but a woman is in front and in the middle the rope breaks.\", \" a lot of people are standing on sides of the people pulling the rope.\", \" woman wearing multicolored clothes is standing and moving her hands.\", \" cameraman is standing on side recording everything.\", \" comments on youtube channel are shown.\"]}, \"v_1ftLLKrC81s\": {\"duration\": 220.37, \"timestamps\": [[0, 29.75], [28.65, 220.37]], \"sentences\": [\"An old man in suit is talking in front of the camera as the audience are watching behind him.\", \" Two people a man and woman walked towards the stage and started to dance tango as the crowd cheered and orchestra are playing music on the side of the stage, then the crowd cheered and gave a standing ovation.\"]}, \"v_Ce0t7gfJl5w\": {\"duration\": 176.96, \"timestamps\": [[0, 14.16], [14.16, 153.07], [28.31, 34.51], [98.21, 111.48], [165.46, 168.11], [169.88, 176.96]], \"sentences\": [\"We see a man ride a skateboard and see two title screen.\", \" We watch a man riding a skateboard down a street with a hill and talking to the camera cut in.\", \" We see the man fall off the board.\", \" We see the man standing on his skateboard.\", \" The man touches his helmet.\", \" We see the ending title screen.\"]}, \"v_lcEGoZAC7GI\": {\"duration\": 59.91, \"timestamps\": [[0.9, 15.88], [14.08, 51.22], [28.46, 58.71]], \"sentences\": [\"A text intro leads into a pan around a bicycle.\", \" A man is then seen riding on top of the machine while the camera pans around him.\", \" The man continues to ride the bike while panning around the area.\"]}, \"v_2SYTRqm4Ym4\": {\"duration\": 15.21, \"timestamps\": [[0, 14.07], [8.06, 12.78], [12.02, 13.99]], \"sentences\": [\"People are sliding down a large slide.\", \" A person in an orange shirt stands on the stairs next to the slide.\", \" A woman in a purple shirt gets to the bottom and gives the person in the orange shirt a high five.\"]}, \"v_CRNycmwvGXs\": {\"duration\": 152.86, \"timestamps\": [[0, 87.13], [86.36, 152.86]], \"sentences\": [\"A man in black shirt is showing a black box and showing the contents of the box, then showing the leaflets, he drink glass of water, then show a small shiny black, then a smaller shiny box then the black e-cig, he opened  the stick and showed the contents and put it back.\", \" The man starts smoking the e-cig, blowing smoke to the camera.\"]}, \"v_iHO42zwYsu0\": {\"duration\": 142.71, \"timestamps\": [[0, 10.7], [13.56, 97.76], [67.07, 139.14]], \"sentences\": [\"A shot of a lawn mower is shown followed by a man walking into frame.\", \" The man pushes around a lawn mower along the yard cutting the grass.\", \" The man continues to push the machine around the yard while the camera captures his movements.\"]}, \"v_RUAWJc2OIJY\": {\"duration\": 173.64, \"timestamps\": [[1.74, 29.52], [29.52, 67.72], [67.72, 116.34], [116.34, 173.64]], \"sentences\": [\"Steve harvey on his talk show talking to the audience and clapping his hands while he speaks.\", \" He shows a video of a man break dancing, he brings this man out on the stage.\", \" The audience claps for him and him and Steve talk for a little while.\", \" Then, he begins to to break dance on stage for the audience and he gets the audience riled up.\"]}, \"v_mRbqt5ugQSE\": {\"duration\": 165.16, \"timestamps\": [[4.13, 161.03], [62.76, 78.45]], \"sentences\": [\"A group of surfers are seen surfing out in the ocean.\", \" A man on a blue surfboard successfully surfs one of the waves without being knocked over.\"]}, \"v_sPSfixKrDc0\": {\"duration\": 130.78, \"timestamps\": [[0, 34.66], [32.69, 90.23], [83.04, 122.27]], \"sentences\": [\"A man is seen writing on a piece of paper and shows a pan out of a truck.\", \" The man then begins stacking objects together and painting around the side.\", \" The man then shows off the finished truck cake and loads it into a truck.\"]}, \"v_0PS48XWOsKA\": {\"duration\": 65.09, \"timestamps\": [[0, 8.14], [8.14, 29.29], [29.61, 65.09]], \"sentences\": [\"The words \\\"Window Information Series Casement Window Operation & Cleaning\\\" along with the \\\"Thermal Industries\\\" logo appear on screen.\", \" A woman stands next to a window display and demonstrates how to take off the bug screen and open the window.\", \" She then cleans the window and closes it.\"]}, \"v_4XTJzFjjFp0\": {\"duration\": 165.05, \"timestamps\": [[2.48, 43.74], [38.79, 125.44], [121.31, 161.75]], \"sentences\": [\"A bike wheel is seen on a table as well as various objects and tools.\", \" The person then begins using the tools on the tire to create bars going around it.\", \" He continues gluing down the sides on the wheel as well as flipping it over on the side.\"]}, \"v_G72MBCYwT8E\": {\"duration\": 50.18, \"timestamps\": [[18.06, 23.08], [23.08, 28.35], [28.6, 31.86]], \"sentences\": [\"A track and field athlete sets up and bends his legs before an event in a fenced area.\", \" The athlete swings the hammer throw ball around his body.\", \" The athlete lets go of the hammer throw ball to send it flying over the field.\"]}, \"v_ED7SKNfAKyI\": {\"duration\": 13.77, \"timestamps\": [[0.07, 13.7], [0.28, 8.61], [11.29, 13.77]], \"sentences\": [\"A group of girls are in a gym practicing a baton twirling exercise.\", \"  The girls begins by doing a backward motion with their arms while holding the batons.\", \"  The girls then thrown the baton while moving their arms backwards and catch the baton in mid air, at which point the celebrate the success of the baton twirl by jumping up and down.\"]}, \"v_BR9dr2iOyNc\": {\"duration\": 102.07, \"timestamps\": [[0, 62.77], [62.77, 102.07]], \"sentences\": [\"Several people are seen sitting on a subway with one man licking his shoe all over.\", \" The people around him pretend not to notice and the man puts his licked shoe on in the end.\"]}, \"v_9GwsrWUq7mY\": {\"duration\": 73.77, \"timestamps\": [[0, 73.77], [43.89, 73.77]], \"sentences\": [\"Two people are seen riding in a boat down rough river rapids.\", \" They go down a waterfall and continue to push themselves down the river.\"]}, \"v_W30cufYc_ZI\": {\"duration\": 220.73, \"timestamps\": [[0, 51.87], [38.63, 166.65], [133.54, 215.21]], \"sentences\": [\"A close up of a watch is seen moving around under the ocean.\", \" Several people are then seen swimming around the area.\", \" The people continuing moving around interacting with one another as well as speaking to the camera.\"]}, \"v_SqEHpHNuy-w\": {\"duration\": 117.05, \"timestamps\": [[0, 29.85], [29.26, 87.2], [87.2, 117.05]], \"sentences\": [\"A close up of army gear is shown leading into two men having an arm wrestling match.\", \" Several people walk around and sit watching the men battle when they both stand up and laugh at one another.\", \" They shake hands and the camera pans around the room with one man giving a thumbs up.\"]}, \"v_JLDZdxTf5TA\": {\"duration\": 125.69, \"timestamps\": [[9.43, 125.69], [20.11, 37.71], [37.71, 82.33], [82.96, 86.73]], \"sentences\": [\"A man plays the bagpipes in front of a group of apprehensive looking friends in a living room environment.\", \"  A man plays the bagpipes in front of a group of people who are watching and looking apprehensive in reaction to the playing.\", \"  The man begins to talk to them and one of the women on the couch begins to sing back to him at which point the woman next to her begins to laugh.\", \"  The man with the bagpipes takes the bagpipes, dismally, and throws them on a neighboring couch.\"]}, \"v_ijSmiDjlmlU\": {\"duration\": 212.88, \"timestamps\": [[0, 19.16], [19.16, 28.74], [29.8, 45.77], [56.41, 62.8], [81.96, 102.18], [114.96, 122.41], [123.47, 125.6], [136.24, 173.5], [179.88, 212.88]], \"sentences\": [\"We see a child in a robe near a pool.\", \" The child takes off the robe.\", \" A lady helps the child in the water.\", \" The lady helps a boy in the water.\", \" The lady helps the girls swim.\", \" We see the boy swim backstroke.\", \" We see an illustration with a chicken.\", \" The girl illustrates then does a back stroke.\", \" We see the little girl pick up things underwater.\"]}, \"v_PUJYZEq8H64\": {\"duration\": 104.58, \"timestamps\": [[0, 4.18], [4.18, 6.27], [6.27, 104.58]], \"sentences\": [\"A large sign appears outdoors and the yellow words say \\\"LAHORE POLO CLUB AIBAK GROUND\\\".\", \"A group of people are now on a green grassy field, all on their own horses, wearing polo outfits or referee outfits and holding polo sticks.\", \"Slowly each person begins to ride off and a polo game is underway as the horses move very quickly across the field.\"]}, \"v_XncWGxekE30\": {\"duration\": 163.03, \"timestamps\": [[0, 47.28], [47.28, 114.93], [114.12, 163.03]], \"sentences\": [\"Several people are outside in the snow in a line pulling a tube along with them.\", \"A boy is then shown talking to the camera and approaches the line as people begin going down hill.\", \"The tubing is done,and several people are shown waking around a cabin doing miscellaneous activities.\"]}, \"v_NGk3v4sKqdg\": {\"duration\": 177.77, \"timestamps\": [[0, 10.67], [10.67, 86.22], [86.22, 128.88], [128.88, 177.77]], \"sentences\": [\"A young girl is outside on a road with a bicycle wheel in her hand.\", \"People are then shown on the road working on multiple bicycles and putting chains on the bike.\", \"After,they begin pumping air in the tire and a man is shown performing at the dj booth.\", \"Finally,the group of kids are riding around the road on the fixed bicycles.\"]}, \"v_0gw1Qq3WRbU\": {\"duration\": 114.8, \"timestamps\": [[1.15, 23.53], [25.83, 39.61], [40.18, 79.21], [79.79, 109.63]], \"sentences\": [\"A woman jumps on the diving board, then she flips forward once and dive in the water.\", \" Then, the woman jumps and flips twice before to dive in the water.\", \" After, the woman several times jumps on the diving board, and then flips backward.\", \" Next, the woman stands on his back and jumps flipping in the air and dives in the water.\"]}, \"v_SgnBsgrqfj0\": {\"duration\": 237.36, \"timestamps\": [[0, 54.59], [54.59, 121.05], [121.05, 168.52], [168.52, 230.23]], \"sentences\": [\"A woman holds a bottle with liquid and explains showing the label.\", \" After, the woman grabs an empty jug and pours liquid of the bottle in a measuring cup, then she puts the liquid in the jug through a funnel.\", \" After, the woman scoops sugar and pour in the jug, then she close the jug and shake it.\", \" At the end, she pours water in the jug and end her presentation.\"]}, \"v_vutxJfF0Rlg\": {\"duration\": 183.67, \"timestamps\": [[2.76, 53.26], [53.26, 62.45], [61.53, 95.51], [95.51, 183.67]], \"sentences\": [\"there is a advertisement showing how drinking coffee can help you to lose weight.\", \"the coffee helps you to burn fat and boost metabolism and seemed to help a person lose 5 LBs in 1 week.\", \"the coffee help to eliminated craving,give energy,and you can also get in the coffee free every month.\", \"If you refer 3 people you can get free coffee every month and other free prizes as well.\"]}, \"v_cfaBPxE-A5k\": {\"duration\": 95.2, \"timestamps\": [[0, 71.4], [68.55, 91.39]], \"sentences\": [\"A big stump is hit with an ax to make some cord wood.\", \"  The chain is removed and split wood falls out.\"]}, \"v_86hyAYM5d3E\": {\"duration\": 168.9, \"timestamps\": [[5.91, 18.58], [110.63, 141.88], [143.57, 151.17]], \"sentences\": [\"People are mowing the lawn on a baseball field.\", \" A man gets off the lawn mower and falls down onto the grass.\", \" He gets back onto the lawn mower.\"]}, \"v_0dkIbKXXFzI\": {\"duration\": 15.49, \"timestamps\": [[0, 2.87], [1.01, 12.62], [12.08, 15.49]], \"sentences\": [\"The young gymnast is sitting on the beam.\", \" The gymnast raised her legs up.\", \" The young athletes are sitting on the side, on the mat.\"]}, \"v_XkkOVpXegS8\": {\"duration\": 172.07999999999998, \"timestamps\": [[0, 10.33], [11.19, 30.11], [30.98, 42.16], [43.02, 61.09], [61.95, 86.04], [86.9, 102.39], [103.25, 117.02], [117.88, 141.11], [141.97, 161.76], [162.62, 172.08]], \"sentences\": [\"A graphic shows the number 10 followed by clips from a hockey game.\", \" A graphic shows the number 9 followed by clips from a hockey game.\", \" A graphic shows the number 8 followed by clips from a hockey game.\", \" A graphic shows the number 7 followed by clips from a hockey game.\", \" A graphic shows the number 6 followed by clips from a hockey game.\", \" A graphic shows the number 5 followed by clips from a hockey game.\", \" A graphic shows the number 4 followed by clips from a hockey game.\", \" A graphic shows the number 3 followed by clips from a hockey game.\", \" A graphic shows the number 2 followed by clips from a hockey game.\", \" A graphic shows the number 1 followed by clips from a hockey game.\"]}, \"v_XIMi2oydVB8\": {\"duration\": 81.06, \"timestamps\": [[1.22, 39.31], [29.99, 78.22]], \"sentences\": [\"A picture of girls in front of the camera leads into a clip of one pole volting over a bar and performing various exercises around a gym.\", \" The girls continue to exercise with one another and ends with them jumping on one another and more pictures.\"]}, \"v_HPrkxpOoep0\": {\"duration\": 233.34, \"timestamps\": [[9.33, 224], [75.83, 81.67]], \"sentences\": [\"A man bowls at a bowling alley with a red and green ball.\", \" The man is briefly shown bowling from a different angle.\"]}, \"v_yCcqJnlviQI\": {\"duration\": 70.1, \"timestamps\": [[0, 70.1], [33.3, 34.35], [68.7, 70.1]], \"sentences\": [\"Men are playing volleyball on a court.\", \" The crowd is cheering around them.\", \" They finish the game and shake hands.\"]}, \"v_dnzcNZBtUG4\": {\"duration\": 188.57, \"timestamps\": [[0, 4.71], [4.71, 162.17], [168.77, 188.57]], \"sentences\": [\"A man greets a partner in a lobby area for a dance.\", \" The couple dances a salsa routine while spectators watch standing around the room.\", \" The dancer talks with the audience after the performance standing in the middle of the room.\"]}, \"v_q0KrlywYHM8\": {\"duration\": 37.72, \"timestamps\": [[0.19, 13.2], [13.39, 32.82]], \"sentences\": [\"A person talks on front a swimming pool, after and advertising displays.\", \" Then, two people play in the pool holding a ball.\"]}, \"v_ATk8OkvNHHQ\": {\"duration\": 179.38, \"timestamps\": [[3.59, 98.66], [74.44, 171.3]], \"sentences\": [\"A camera pans all around a person sitting on a bike putting gloves on and leads into several clips of people riding tracks on bikes.\", \" The people continue riding around on the tracks while performing various flips and tricks and cameras shown from many angles.\"]}, \"v_-u2zAMnrCC4\": {\"duration\": 161.05, \"timestamps\": [[0, 73.28], [15.3, 16.91], [15.3, 70.06], [52.34, 66.03], [59.59, 103.88], [132.06, 146.56], [154.61, 161.05]], \"sentences\": [\"A man in a life vest sits on a kayak on the grass.\", \" A dog runs next to him.\", \" Two people behind him break a wall to release water.\", \" A girl watches and stands next to him.\", \" The wall breaks and the man flies down the hill into a tree.\", \" The man stands up next to the kayak and talks.\", \" The girl gets into the kayak.\"]}, \"v_OBua42LRiF8\": {\"duration\": 78.14, \"timestamps\": [[0.78, 4.3], [5.47, 77.35], [25, 25.78]], \"sentences\": [\"The credits of the clip are shown.\", \" Players play lacrosse on a field.\", \" A guy next to the goal waves a green flag.\"]}, \"v_a_uamUiKq1o\": {\"duration\": 45.49, \"timestamps\": [[0, 37.53], [37.53, 45.49]], \"sentences\": [\"Four men are standing in a room,two of them are standing against the wall recording and watching as the two black males are arm wrestling on a table.\", \"Once the game is over,they shake each others hand and walk out of the room.\"]}, \"v_1XtjXqqPvyQ\": {\"duration\": 138.67000000000002, \"timestamps\": [[0.69, 18.03], [18.72, 39.52], [40.21, 85.28], [86.67, 138.67]], \"sentences\": [\"A dog runs across a field with a frisbee.\", \" A man follows suit, playing with the boy in front of a crowd.\", \" He tries to get the dog to catch one of the frisbees in his hands as the dog frantically tries to get one.\", \" The man stands with a frisbee in his hand as the dog runs away.\"]}, \"v_5JCqKshcfHE\": {\"duration\": 18.3, \"timestamps\": [[0, 14.18], [3.84, 17.84]], \"sentences\": [\"A person's hand is seen running a razor up and down their leg covered in bubbles.\", \" The camera pans back to see a woman sitting up in a tub and moving the razor up and down her leg.\"]}, \"v_CG-itBlFOzc\": {\"duration\": 49.04, \"timestamps\": [[0, 49.04], [1.47, 49.04], [25.5, 49.04]], \"sentences\": [\"A woman is sitting down at a table.\", \" They are knitting something in their hands.\", \" They lay what they have knitted down onto a table.\"]}, \"v_8RMrbKCQheM\": {\"duration\": 36.36, \"timestamps\": [[0.36, 11.64], [11.82, 25.45], [20.91, 33.82]], \"sentences\": [\"A small child is seen standing before a fence holding onto a paintbrush.\", \" The boy dips the brush in paint and begins painting the wall.\", \" The camera pans to a woman beside him also painting the fence.\"]}, \"v_4JnXF13ktSs\": {\"duration\": 35.02, \"timestamps\": [[0, 15.06], [17.16, 35.02]], \"sentences\": [\"A man is seen mowing the lawn with a baby in a pouch wrapped around his chest.\", \" He walks back and forth, mowing the lawn and happily bouncing the baby in her carrier.\"]}, \"v_yWEFVfX-JoI\": {\"duration\": 238.12, \"timestamps\": [[2.38, 236.93], [3.57, 60.72], [11.91, 164.3], [173.83, 236.93]], \"sentences\": [\"A person canoes down a narrow and rough waterway in a body of water surrounded by many rocks, a stone wall, trees and other people in canoes.\", \" A hand is seen paddling in the water along with the front of the canoe the person paddling is in, the body and face are not visible, however.\", \"  The canoe and the hand travel down a rocky water way and pass other people, trees and rocks.\", \"  The canoe finally passes a stone wall, goes under a bridge and passes many more people in canoes, and rafts, trees, people standing on rocks watching, and finally a wash of water goes over the screen to end the scene.\"]}, \"v_sY31L_r7dsk\": {\"duration\": 55.61, \"timestamps\": [[0, 5.28], [11.68, 21.97], [26.97, 55.61]], \"sentences\": [\"Food is set onto a table.\", \" A man dumps something black onto his food out of a bowl.\", \" He begins to stir the food with a fork and a spoon.\"]}, \"v_WCChCrg9eZU\": {\"duration\": 161.12, \"timestamps\": [[0, 15.31], [16.92, 99.09], [74.92, 155.48]], \"sentences\": [\"A camera is seen walking towards a woman shoveling snow around a car.\", \" The camera pans around the kids shoveling and pushing snow off into the distance.\", \" One woman stops and speaks to the camera while warming up her hands and leads into her still shoveling.\"]}, \"v_WoB4lSNBDww\": {\"duration\": 155.78, \"timestamps\": [[11.68, 19.47], [33.49, 48.29], [59.98, 112.16], [125.41, 131.64], [113.72, 117.62]], \"sentences\": [\"A woman is wiping a wall with a rag.\", \" They roll up paper and dip it in water.\", \" They stick the paper to the wall.\", \" They use a plastic tool to smooth it out.\", \" They add metal hooks to the wall.\"]}, \"v_GuwWFip-AF0\": {\"duration\": 134.26, \"timestamps\": [[0, 5.37], [10.74, 14.77], [15.44, 59.07], [20.14, 86.6], [30.21, 110.09], [91.3, 100.02], [116.8, 134.26]], \"sentences\": [\"A lady moves an animal trophy.\", \" A guy gives an animal trophy to a player.\", \" Players play pool  in front of an audience.\", \" The audience cheers and claps.\", \" A man gives an interview.\", \" A guy shakes hand with a player and gives him an animal trophy.\", \" A woman smiles and talks outside.\"]}, \"v_iEaiLh3GZA8\": {\"duration\": 225.12, \"timestamps\": [[0, 110.31], [97.93, 225.12]], \"sentences\": [\"Various shots of a city and people moving are shown that leads into a man scuffing off a shoe.\", \" The man continues scuffing all the shoes as well as shining the shoe and ends with tying them and presenting them.\"]}, \"v_Mk1gOZ5EOUk\": {\"duration\": 86.52, \"timestamps\": [[0, 17.74], [22.06, 67.05], [72.24, 86.52]], \"sentences\": [\"A man is floating on an intertube in a river.\", \" He is drinking a soda and laughing as he floats.\", \" Another man runs into him several times.\"]}, \"v_Fr9F2xRLd0A\": {\"duration\": 70.53999999999999, \"timestamps\": [[1.06, 40.91], [7.41, 31.74], [31.74, 41.62], [42.68, 48.32], [49.38, 70.54]], \"sentences\": [\"Boys hang onto the ends of a kayak with another paddling.\", \" The kayak rider turns the kayak around using his oar.\", \" The kayak rider paddles forward with the boys riding hanging on.\", \" A kayak is launched from the shore into the water.\", \" Two boys sit on top of the kayak on both ends with the rider in paddling.\"]}, \"v_cICxG-28hK0\": {\"duration\": 25.06, \"timestamps\": [[0, 4.51], [4.38, 17.04], [17.16, 25.06]], \"sentences\": [\"A red team is shown on the other side of the gym backing up against the wall.\", \"The other team then approaches the line and a boy points to a person that was tagged with the dodge ball but doesn't want to get out.\", \"There is a big discrepancy on the court and a person in a grey jackets comes out blowing their whistle between the two.\"]}, \"v_Vh4TxFOCNM8\": {\"duration\": 57.66, \"timestamps\": [[0.29, 18.45], [18.45, 51.6], [51.89, 57.37]], \"sentences\": [\"Teams play soccer in an indoor court.\", \" A player wearing black uniform passes the ball to a playmate who pass to other player, then the teams continue playing.\", \" A player shoots the ball to the goal, but the gold keeper catch it in his hands.\"]}, \"v_kBh_98QimD4\": {\"duration\": 55.5, \"timestamps\": [[0.28, 31.63], [23.59, 54.66]], \"sentences\": [\"A man is seen playing a musical instrument on the corner of a street while several people walk by.\", \" The man continues to blow into the instrument as people continuously walk in and out frame.\"]}, \"v_iSJ87SnNLPc\": {\"duration\": 35.62, \"timestamps\": [[6.59, 7.66], [9.62, 13.36], [24.04, 30.99]], \"sentences\": [\"A kid is brushing his teeth.\", \" He picks up a bottle and takes a drink.\", \" He then begins to dance in a room.\"]}, \"v_FJ7yrh2UiQ8\": {\"duration\": 207.7, \"timestamps\": [[0, 72.7], [73.73, 207.7]], \"sentences\": [\"a cabin in the woods is shown and a people wearing camouflage suits practicing shots to the cabin and hiding behind trees.\", \" men start shoting smoke bullets to the cabin.\"]}, \"v_SGQQSH88isc\": {\"duration\": 75.77, \"timestamps\": [[0, 2.27], [2.27, 19.7], [19.7, 23.49], [39.78, 60.61], [59.1, 68.95], [68.95, 75.77]], \"sentences\": [\"We see a moving  title screen.\", \" We see a lady holding a dart and talking.\", \" We see shots of a man in a different room.\", \" The lady throws darts a a bulletin board.\", \" We see a title screen.\", \" We see the man eating a banana.\"]}, \"v_Q6uc1kl008o\": {\"duration\": 120.3, \"timestamps\": [[0, 120.3], [3.61, 54.74], [0, 76.99]], \"sentences\": [\"People are playing basketball on a basketball court.\", \" People are walking in the stands finding their seats.\", \" A woman in a red vest is standing on the side of the court.\"]}, \"v_pi6sBUrSNGk\": {\"duration\": 181.4, \"timestamps\": [[0, 7.26], [7.26, 18.14], [19.05, 29.02], [30.84, 66.21], [66.21, 87.07], [87.07, 117.91], [117.91, 146.93], [150.56, 171.42], [177.77, 181.4]], \"sentences\": [\"We see an animated opening screen.\", \" A child washes and dry their hands leaving the water on which and adult turns off.\", \" We see a blue information screen.\", \" We see a man talking near a blue orb thing.\", \" We see the orb attached to the sink.\", \" We then see the blue screen giving information.\", \" We see a white information screen and the object is attached to a sink.\", \" A girl washes her hands.\", \" We see a white closing screen.\"]}, \"v_DAPX3S1Nmqg\": {\"duration\": 81.6, \"timestamps\": [[0, 6.53], [6.12, 12.65], [12.24, 37.94], [37.13, 81.6]], \"sentences\": [\"A poodle with casts on his front legs is standing up right dancing with a child.\", \"The dog then sits down and stands back up as the young child approaches him.\", \"After,the animal tries to sit down once more but a ball is thrown at him and he continues walking on his hind legs.\", \"The dog continues to go on and on walking about in the living room.\"]}, \"v_AKShRE_4eTA\": {\"duration\": 202.99, \"timestamps\": [[0, 21.31], [22.33, 182.69], [22.33, 41.61], [62.93, 73.08], [181.68, 202.99]], \"sentences\": [\"The video begins with a picture of a lawn along with a company name and website.\", \" The video cuts to a man riding a lawnmower, cutting the grass in a nice neighborhood.\", \" When he begins, some kids are playing in the road.\", \" At one point, a car passes by.\", \" The video ends with the picture of the lawn showing the company name and website.\"]}, \"v_1T66cuSjizE\": {\"duration\": 12.18, \"timestamps\": [[0.3, 6.45], [4.75, 11.75]], \"sentences\": [\"A wrestler is seen standing in pain on the side while one gets up on the edge.\", \" The man then flips the other around on the ground and throws his leg up into the air.\"]}, \"v_vYHtmvftHoU\": {\"duration\": 166.45, \"timestamps\": [[4.16, 59.92], [54.93, 132.33], [118.18, 155.63]], \"sentences\": [\"A close up of shoes are shown that lead into a person putting socks on and waxing off a surf board.\", \" The man is then shown surfing along the water with others as well as landing in the water.\", \" The man continues surfing along the water and ends with people standing and paddling around in the end and walking on the beach.\"]}, \"v_fPCfTJLh46A\": {\"duration\": 184.14, \"timestamps\": [[0, 17.49], [17.49, 58.92], [58, 129.82], [129.82, 184.14]], \"sentences\": [\"A door opens up to a forest and follows a person up the escalator.\", \"The camera then moves into an arcade and two males begin to bowl.\", \"The games continues and more people show then they move into the mall and outside into the parking lot where several people are.\", \"They are now outside and it is dark and they get off of their transportation and walk back into the house.\"]}, \"v__roK9m9UOvM\": {\"duration\": 37.66, \"timestamps\": [[0, 33.71], [21.28, 30.88], [35.4, 37.66]], \"sentences\": [\"A lady sits in a hospital bed and puts on her shoes.\", \" The woman ties her laces.\", \" The woman gives a thumbs up.\"]}, \"v_rzm4V_McRhQ\": {\"duration\": 69.2, \"timestamps\": [[0, 16.95], [19.03, 35.29], [35.98, 69.2]], \"sentences\": [\"A bartender is shown speaking to the camera and pours ice into a glass.\", \" He then takes several ingredients and pours them all together into a mixer.\", \" He mixes the ingredients together and pours it into the glass, presenting the drink and speaking to the camera.\"]}, \"v_TFwELfVs19g\": {\"duration\": 73.53999999999999, \"timestamps\": [[4.41, 9.19], [9.19, 14.34], [14.71, 56.62], [56.99, 60.3]], \"sentences\": [\"A woman and and a man talk in a tattoo shop.\", \" Then, the man cleans the button belly of the woman and puts a mark.\", \" After, the woman lay down, and the man pierce the belly button and puts a stud.\", \" The man holds a mirror for the woman to see her piercing.\"]}, \"v_9uxkazuxmDw\": {\"duration\": 237.77, \"timestamps\": [[0, 229.45], [1.19, 229.45], [190.22, 199.73]], \"sentences\": [\"People are playing lacrosse on a field.\", \" The audience is watching the game.\", \"  The teams are high fiving as htey walk past each other.\"]}, \"v_zuBJzdDI9MY\": {\"duration\": 75.88, \"timestamps\": [[0, 25.42], [26.56, 38.32], [39.46, 75.88]], \"sentences\": [\"A man stands in his kitchen discussing.\", \" The man adds oil and salt to a pot on the stove.\", \" The man places in pasta noodles one at a time to the pot.\"]}, \"v__aEHpGmhHe8\": {\"duration\": 162.22, \"timestamps\": [[0, 26.77], [35.69, 111.12], [90.03, 158.16]], \"sentences\": [\"A close of paint brushes are shown as well as colors.\", \" A person is seen dipping the brush in the paint an rubbing it along her arm.\", \" She continues to paint a flower on her arm and show it to the camera.\"]}, \"v_vCeaFAiokrU\": {\"duration\": 141.5, \"timestamps\": [[0, 21.93], [22.64, 103.3], [104, 133.72]], \"sentences\": [\"A man stands in a driveway covered with snow talking and holding a shovel.\", \" Then, the man shovel the snow on the driveway and put in a pile.\", \" The man shows how to bend the legs, and then continues shoveling snow.\"]}, \"v_gJxR-KzawO4\": {\"duration\": 194.44, \"timestamps\": [[0, 12.64], [13.61, 103.06], [127.36, 194.44]], \"sentences\": [\"A little girl is standing in front of a kitchen sink.\", \" She is soaping a blue cup, washing it with a sponge.\", \" She then uses water from the faucet to rinse the cup clean.\"]}, \"v_jeaaS1NK_d4\": {\"duration\": 186.23, \"timestamps\": [[0, 15.83], [17.69, 38.18], [38.18, 160.15], [45.63, 50.28], [103.35, 122.91], [124.77, 129.43], [162.95, 176.91], [178.78, 186.23]], \"sentences\": [\"We see opening credits for a competition.\", \" Men are preparing to arm wrestle.\", \" We see men arm wrestling in an arena.\", \" The man in gray walks away and goes to another match.\", \" We see a match in slow motion.\", \" We see more words on the screen.\", \" Two men hug each other, and the man in the tanktop gets a gold trophy.\", \"  We then see closing images of the man.\"]}, \"v_Nx4rK_jvvR4\": {\"duration\": 28.23, \"timestamps\": [[3.53, 23.99], [0.14, 2.96], [4.09, 19.33], [19.19, 23], [21.88, 24.13]], \"sentences\": [\"A woman and a man perform a ballet routine in a dance studio.\", \"  A \\\"ballet is fun\\\" graphic appears across the screen with images of ballet dancers in mid dance on the graphic.\", \" A man in a black leotard and a woman in a black and white ballet ensemble begin to dance in a well lit dance studio.\", \"  The woman spins in place while the man balances her by holding her waist.\", \"  The two end in a standing pose with the woman on the tip of her toes on one foot, arms extended and the man standing behind her holding her waist.\"]}, \"v_fOgfpA9MTOQ\": {\"duration\": 32.42, \"timestamps\": [[0, 10.37], [10.54, 18.15], [18.32, 32.42]], \"sentences\": [\"People wearing cowboy hats sit in an indoor arena that has a dirt floor.\", \"  A calf is released onto the floor and a cowboy catches him.\", \"  The calf is tied up by rope to a horse.\"]}, \"v_qBqUu4_qOnU\": {\"duration\": 16.25, \"timestamps\": [[0, 0.89], [0.89, 10.81], [10.81, 16.25]], \"sentences\": [\"First the man walks his blindfolded daughter towards the pinata.\", \" First she hits the pinata using the wooden stick and people clap.\", \" Then she hits it again and takes the blindfold off when the people's cheers and claps get louder.\"]}, \"v_RSyk6rS8ay0\": {\"duration\": 211.47, \"timestamps\": [[2.11, 117.36], [66.61, 195.61]], \"sentences\": [\"A woman is show in several different location lifting weights above her head and jumping her legs out.\", \" The woman continues lifting up the weights over her head while various text instruments pan across the screen.\"]}, \"v_Lr5GuPjfU7Q\": {\"duration\": 90.19, \"timestamps\": [[0, 20.74], [18.94, 52.31], [52.76, 90.19]], \"sentences\": [\"A woman is seen speaking to the camera and transitions into shots of someone tapping a box and the woman presenting a box.\", \" Wrapping paper is seen cover the box followed by scissors cutting the paper and laying down a box.\", \" The woman covers the box with paper and tapes up the ends to create a finished, wrapped present.\"]}, \"v_hiVs1hNyPpw\": {\"duration\": 64.55, \"timestamps\": [[0, 62.62], [20.01, 22.92], [34.86, 64.55]], \"sentences\": [\"A woman is brushing her long red hair and flipping her hair from side to side while doing so.\", \"The woman strikes a quick pose with some attitude, then starts to brush her short bangs.\", \"The woman begins dancing, smiling and making a hand motion to the camera then brushes her hair and ends with going very close up to the camera.\"]}, \"v_L0Fdx2r3qA8\": {\"duration\": 181.91, \"timestamps\": [[0, 13.64], [15.46, 30.92], [32.74, 49.11], [52.75, 181.91]], \"sentences\": [\"A man is standing in a kitchen, talking while holding up a raw potato.\", \" He takes a huge bite of the potato, chewing it up.\", \" He then shows a drill, fork and screwdriver on the counter.\", \" He uses the drill and fork to peel the potato over the sink one half at a time.\"]}, \"v_B5VIJnAFlK8\": {\"duration\": 30.4, \"timestamps\": [[0.15, 1.06], [1.06, 21.58], [21.58, 30.4]], \"sentences\": [\"A woman stands on front a window.\", \" A woman cleans a windows with a steel squeegee that cleans with a cloth.\", \" Then, the woman cleans the window with a cloth.\"]}, \"v_DZrCkQ2z-u4\": {\"duration\": 50.62, \"timestamps\": [[1.01, 23.29], [14.43, 49.35]], \"sentences\": [\"A man is seen standing before a beam and leads into him performing a gymnastics routine.\", \" The man spins all around the beam and ends by jumping down with his arms up.\"]}, \"v_JmL6BiuXr_g\": {\"duration\": 141.13, \"timestamps\": [[0, 7.76], [8.47, 60.69], [62.1, 115.73], [118.55, 141.13]], \"sentences\": [\"A hand wipes snow away from the word Decathlon.\", \" Several people are shown snowboarding down the side of a mountain.\", \" A man shows off a snowboard, explaining how it works.\", \" He sands the board, alternating views of people skiing.\"]}, \"v_3KmMvfdidvQ\": {\"duration\": 96.34, \"timestamps\": [[0, 26.98], [0, 94.89], [26.98, 96.34], [0, 96.34]], \"sentences\": [\"big mena re standing on a ring getting ready to wrest.\", \" referee wearing a chinese suit is in the middle of the men.\", \" men start wrestling on the ring and the people applauds.\", \" people are sitting on stands sceaming and watching the wrestlers.\"]}, \"v_zto8JvkVLVw\": {\"duration\": 47.39, \"timestamps\": [[0, 13.27], [14.93, 36.73], [26.78, 45.5]], \"sentences\": [\"An athletic man is seen standing before a bar with his arms raised up.\", \" The man then jumps on the bar and begins performing a gymnastics routine.\", \" The man continues to spin himself around and jumps off with his arms up.\"]}, \"v_cinmiQ4tHYk\": {\"duration\": 70.26, \"timestamps\": [[0, 5.27], [5.97, 15.11], [15.46, 32.32], [32.67, 37.94], [38.29, 61.83]], \"sentences\": [\"A woman drinks form a cup smiling, while a man stands on front her.\", \" Then, the man and the woman talks and the woman turn to leave, suddenly the man grabs the woman from the shoulder.\", \" The woman pushes the man, who attack the woman and both fight.\", \"  The woman grabs the man's hand and spins and push him on a stone wall, the man gets more angry.\", \" After, the man grabs the arm's girl who pushes the man over the wall.\"]}, \"v_aYSm25veKTs\": {\"duration\": 184.97, \"timestamps\": [[0, 39.77], [40.69, 56.42], [58.27, 86.94], [86.94, 184.97]], \"sentences\": [\"A man in black riding a BMX bike over woopdi doos on a wheelie.\", \"A man wearing a blue shirt rides a BMX bike over a BMX course while doing a wheelie.\", \"A man wearing a multicolored jersey and blue gloves starts down a BMX course from the start block and continues the course while doing a wheelie.\", \"The man in the black jersey and other BMX riders ride the BMX course while doing a wheelie.\"]}, \"v_pCWlZ37fGEo\": {\"duration\": 81.57, \"timestamps\": [[0, 81.57], [12.24, 24.06], [24.47, 40.38], [40.79, 42.83], [43.23, 48.94], [51.39, 64.03], [64.44, 72.6], [75.05, 81.57]], \"sentences\": [\"Two water polo teams are in the water.\", \" One of them teammates passes the ball to another teammate who then scores a goal.\", \" The goalie throws the ball back into the middle of the pool where a teammate grabs the ball and throws it to his teammate.\", \" The teammate holds the ball and someone on the opposing team grabs the ball out of his hand.\", \" The opposing team scores a goal.\", \" The game resumes with a teammate throwing the ball to his teammate where it is taken away by an opposing teammate.\", \" The ball is thrown around and one of the teams scores a goal.\", \" The ball is being thrown around and the goalie catches it.\"]}, \"v_JSYv9uYZP2o\": {\"duration\": 194.69, \"timestamps\": [[0, 5.84], [5.84, 13.63], [0, 127.52], [5.84, 127.52], [127.52, 139.2], [139.2, 194.69]], \"sentences\": [\"en are running in a green soccer field taking out them helmets.\", \"men are posing in front of a green bench to take a picture.\", \" men are running in a large green fiel playing lacrosse.\", \" people on stands is siting watching the game.\", \" men are celebrating and an old man gives a trophy to a young boy.\", \" man wearing a red tie is giving a trophy to a boy that is being interviewed.\"]}, \"v_WebWWFKJ4b0\": {\"duration\": 140.92000000000002, \"timestamps\": [[0, 39.46], [22.55, 92.3], [63.41, 140.92]], \"sentences\": [\"The old man is holding sheet of metal.\", \" He cut the metal into half and bend the sheet to the camera, then he used a thong and clip the sheet of metal and securely put it in a holder.\", \" The man put needle on welding tool, put on his mask and began torching the metal, then poke it with hammer and show it to the camera.\"]}, \"v_hJJas1Zat1s\": {\"duration\": 60.33, \"timestamps\": [[0, 8.75], [8.75, 13.87], [13.87, 18.7], [18.7, 21.72], [21.72, 34.39], [34.39, 48.26], [48.26, 60.33]], \"sentences\": [\"Opening credits show dishes on a counter.\", \" A hand pours liquid from a shot glass into a glass.\", \" The person stirs the liquid with a spoon.\", \" The person adds ice to the cup and stirs again.\", \" The person then pours liquid from a smaller glass into the glass.\", \" The person adds a lemon wedge and herbs to the glass.\", \" Closing credits show the finished product.\"]}, \"v_MC0L0ljTUiw\": {\"duration\": 235.06, \"timestamps\": [[0, 18.8], [21.16, 212.73], [213.9, 235.06]], \"sentences\": [\"A woman walks gracefully into a room wearing a belly dancer outfit.\", \" She puts her arms out, shaking her hips to music.\", \" When she is done, she smiles and points toward the camera with both hands.\"]}, \"v_DN3v5LhGsx0\": {\"duration\": 167.23, \"timestamps\": [[0, 167.23], [116.23, 118.73], [118.73, 121.24]], \"sentences\": [\"People are long boarding under a bridge.\", \" People are sitting under the bridge watching.\", \" A man in a yellow shirt is standing watching.\"]}, \"v_t0ZuC58UIOM\": {\"duration\": 99.61, \"timestamps\": [[0, 2.99], [4.98, 5.48], [4.98, 99.61]], \"sentences\": [\"People are chasing a brown bull.\", \" The bull collides and locks horns with black bull.\", \" The bulls fight, while people look on.\"]}, \"v_7O9kkDxEvaY\": {\"duration\": 82.39, \"timestamps\": [[0, 82.39], [2.88, 82.39], [6.59, 82.39], [63.02, 82.39]], \"sentences\": [\"A woman stands in front of a curtain.\", \" She has long red hair.\", \" She brushes her hair several times over.\", \" She parts her hair as she brushes it.\"]}, \"v_R3MPcPKQYKE\": {\"duration\": 27.26, \"timestamps\": [[0, 8.18], [7.77, 19.76], [15.81, 26.03]], \"sentences\": [\"A man is seen kneeling on the ground holding carpet into his hands.\", \" The man then begins laying carpet down all over the floor.\", \" The man continues to lay carpet while the camera pans around the room.\"]}, \"v_GsR4fagoV-Q\": {\"duration\": 118.0, \"timestamps\": [[0, 46.02], [59, 118]], \"sentences\": [\"Two men are seen playing a game of ping pong with each other hitting the ball back and fourth.\", \" One man chases the other around and walks back into frame to play the game.\"]}, \"v_L61Le9sOGK0\": {\"duration\": 16.6, \"timestamps\": [[0, 1.91], [2.32, 9.3], [9.71, 16.6]], \"sentences\": [\"A person is shown in front of a foosball table.\", \" Another person joins him, then walks away.\", \" The man continues pulling on the figures, playing the game alone.\"]}, \"v_E4n0KcS_zgI\": {\"duration\": 63.55, \"timestamps\": [[0, 9.53], [10.8, 63.55]], \"sentences\": [\"A baby is on a bed in a house.\", \" She is playing a pair of bongo drums with her hands.\"]}, \"v_rMWCaPh9UqE\": {\"duration\": 171.19, \"timestamps\": [[15.41, 168.62], [20.54, 36.81], [43.65, 84.74], [102.71, 165.2]], \"sentences\": [\"A person mows the lawn while a dog and a person play catch with a ball on the same lawn at the same time.\", \"  A lawnmower begins mowing a small grass covered lawn while a dog walks around the perimeter.\", \"  The dog has a ball in its mouth, drops it in front of the lawn mower and a person off of the screen throws the ball to the dog, who runs after it.\", \"  The person continues mowing the lawn as the dog catches a thrown ball one more time and then drops it again in front of the lawn mower.\"]}, \"v_DOgmd5jNhXY\": {\"duration\": 150.42000000000002, \"timestamps\": [[6.02, 85.74], [60.17, 136.88]], \"sentences\": [\"A camera pans around a large ocean floor with fish swimming around and scuba divers seen.\", \" The camera continues to explore around while many fish move around and look at the sights.\"]}, \"v_ObkyDlB5wvs\": {\"duration\": 167.87, \"timestamps\": [[0, 52.04], [40.29, 127.58], [94.85, 162]], \"sentences\": [\"A person is seen putting fencing gear on while another man speaks to the camera.\", \" More people are seen speaking to the camera as well as people fencing in between.\", \" Several shots are shown of people fencing one another while others still speak to the camera.\"]}, \"v_3FAvxuTw4NI\": {\"duration\": 148.42000000000002, \"timestamps\": [[0, 9.65], [15.58, 124.67], [129.87, 148.42]], \"sentences\": [\"A man is located inside a gym.\", \" He uses a remote control to fly a toy airplane.\", \" The plane dips and glides through the air.\"]}, \"v_iosb2TdQ7yY\": {\"duration\": 230.97, \"timestamps\": [[0, 6.93], [6.93, 62.36], [53.12, 62.36], [65.83, 116.64], [99.32, 163.99], [168.61, 172.07], [197.48, 207.87], [214.8, 230.97]], \"sentences\": [\"We see a title screen with a photo of a buff man.\", \" We see a man talking in a yard.\", \" We see the house the yard is part of.\", \" We see the man chopping wood.\", \" We see an older man using a chainsaw on the tree.\", \" We see a dog playing in the yard.\", \" We see a pile of logs in the yard.\", \" We see the closing title screen.\"]}, \"v_LQ7X62seYYI\": {\"duration\": 120.63, \"timestamps\": [[0, 48.85], [51.87, 120.63]], \"sentences\": [\"Cars move over a snow covered hill, filled with skiers.\", \" Several people are skiing and snowboarding over small hills and obstacles, kicking up dusts of snow in their wake.\"]}, \"v_B73wt5icB-c\": {\"duration\": 167.63, \"timestamps\": [[0, 35.2], [34.36, 96.38], [96.38, 133.26], [133.26, 167.63]], \"sentences\": [\"A girl is outside on a slab of concrete next to a body of water and she beings to jump rope doing intricate jumps in between.\", \"As the location changes,she moves in front of a mountain of rocks and begins twirling before she returns to jump roping.\", \"After,two girls appears dressed identically and they both begin jumping near the water and twirling.\", \"It's now dark outside and people begin sailing in the water in a a boat.\"]}, \"v_47OMV7rZrQA\": {\"duration\": 228.79, \"timestamps\": [[2.29, 73.21], [66.35, 178.45], [171.59, 221.92]], \"sentences\": [\"A woman is seen walking out onto a large mat with many picture watching her on the side.\", \" She then begins moving her arms and legs around along the mat while looking off into the distance.\", \" The woman continues moving around the mat with her arms and legs and ends by holding a pose and bowing.\"]}, \"v_0n3VRoYYYGU\": {\"duration\": 232.47, \"timestamps\": [[0, 19.76], [19.76, 195.27], [195.27, 232.47]], \"sentences\": [\"A man is seen speaking to the camera and leads into several shots of the man cutting food and cooking.\", \" He is shown speaking again and begins showing how to sharpen a knife using a machine.\", \" He then cuts up a tomato around the edges and places the knife down and pointing to the machine.\"]}, \"v_XH-YlSbgxkY\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 43.91], [44.67, 116.59], [103.72, 145.36]], \"sentences\": [\"A large auditorium is seen with a young dancer walking out on stage.\", \" The woman begins dancing a routine using a baton and twirling it around.\", \" The girl continues her routine and ends with her bowing and walking off stage.\"]}, \"v_jYyN-nJcm0M\": {\"duration\": 220.75, \"timestamps\": [[0, 17.66], [17.66, 208.61], [208.61, 210.82]], \"sentences\": [\"A man sits behind two drums in a room.\", \" He begins playing the drums.\", \" He stops playing and stands up.\"]}, \"v_4yZ1agUX004\": {\"duration\": 114.05, \"timestamps\": [[0, 19.96], [19.96, 25.09], [25.66, 65.01], [65.58, 76.98], [77.55, 95.8], [96.37, 111.77], [112.34, 114.05]], \"sentences\": [\"We see a a man drop a flag and people take off running and we see them run a marathon.\", \" A man has an image over his face.\", \" We see people playing volleyball on the beach with crowds watching.\", \"  We see a newscaster speaking to the camera.\", \" We see more of the game and a different man is interviewed.\", \" Two men high five each other and prepare to play more volleyball.\", \" We see the closing title screen.\"]}, \"v_KEMMmoIdT3g\": {\"duration\": 160.75, \"timestamps\": [[0, 160.75], [14.47, 22.51], [30.54, 144.68], [144.68, 145.48], [144.68, 148.7], [150.3, 151.91], [153.52, 160.75]], \"sentences\": [\"People are in a room interacting.\", \" A guy standing takes out his phone.\", \" The two men that are sitting at the table start arm wrestling.\", \" The man with the fuller bread wins.\", \" The ladies clap and cheer.\", \" The man with the fuller bread picks up the table and tosses it on the floor.\", \" The men hug and start to leave.\"]}, \"v_-n0F3QTuxug\": {\"duration\": 15.3, \"timestamps\": [[0, 1.76], [1.53, 9.49], [9.49, 15.3]], \"sentences\": [\"A young boy is washing his face in the sink.\", \" He touches his face several times and smiles.\", \" He then laughs and puts his hands back into the water.\"]}, \"v_IZx-EMbylmM\": {\"duration\": 134.1, \"timestamps\": [[0, 18.77], [22.13, 93.2], [96.55, 134.1]], \"sentences\": [\"A woman is shown talking to the camera while wearing pink glasses.\", \" She is holding a coffee cup in her hand.\", \" The woman gets a second cup, and is shown drinking from each.\"]}, \"v_Wt7Ca_mHbL0\": {\"duration\": 25.78, \"timestamps\": [[0, 10.83], [8.51, 25.78]], \"sentences\": [\"A man in swimming trunk is standing at the edge of the diving board, his back is turned back from the audience.\", \" He raised his arms and bounced and jumped to the pool.\"]}, \"v_BP9MfTepAv4\": {\"duration\": 132.38, \"timestamps\": [[0, 10.59], [10.59, 23.83], [23.83, 39.71], [39.71, 47.66], [46.99, 76.78], [76.78, 105.9], [105.9, 132.38]], \"sentences\": [\"The camera zooms out on the man playing the accordion.\", \" We see his hand up close as he plays.\", \" We shift to see him play and he talks to the camera.\", \" We fade in from black as the man talks.\", \" We see his hand up close.\", \" He talks and we see a split screen of the accordion.\", \" We see him playing the accordion again.\"]}, \"v_JXMD8Obk0yg\": {\"duration\": 63.07, \"timestamps\": [[0, 10.09], [10.41, 15.14], [12.93, 18.29], [27.12, 50.77], [37.21, 63.07]], \"sentences\": [\"a group of guys are sitting on a sectional sofa.\", \" One guy stands up and kneels by the coffee table.\", \" A second guy kneels across from the first guy at the coffee table.\", \" The two guys arm wrestle.\", \" After the match, they both return to sitting on the sectional.\"]}, \"v_v0cihSAXQbI\": {\"duration\": 115.15, \"timestamps\": [[0, 38.57], [28.79, 87.51], [85.79, 115.15]], \"sentences\": [\"A large crowd is seen sitting around a field followed by a man running with a javelin and throwing it across the field.\", \" The same throw is shown again in slow motion followed by the man waving to the crowd.\", \" Several more athletes are shown throwing the pole followed by them waving to the camera.\"]}, \"v_5g7bqiT7Y3c\": {\"duration\": 5.85, \"timestamps\": [[0, 5.85], [0.41, 5.85], [0.67, 5.85], [0.88, 5.85]], \"sentences\": [\"A man stands in a field.\", \" He spins around on the ground.\", \" He is standing on a circle.\", \" He is behind a net.\"]}, \"v_GgAXP4FTFnA\": {\"duration\": 54.22, \"timestamps\": [[0, 14.1], [14.1, 24.13], [24.13, 33.07], [33.62, 54.22]], \"sentences\": [\"Water polo is being played by two men.\", \"  The men take off swimming to the team.\", \"  The men swim backwards.\", \"  The ball is thrown but no goal is made this time.\"]}, \"v_RnwidjJiDEE\": {\"duration\": 149.21, \"timestamps\": [[0, 70.13], [55.21, 149.21]], \"sentences\": [\"A man is seen sitting behind a set of drums followed by playing the drums and people moving around behind him.\", \" He continues to play the drums while the camera pans to a man singing and the drummer presenting his arms.\"]}, \"v_EGLJPCJnG64\": {\"duration\": 89.71000000000001, \"timestamps\": [[0, 12.56], [12.56, 17.5], [17.5, 23.78], [23.78, 29.61], [29.61, 89.72]], \"sentences\": [\"A man talks in front of a camera while holding a racket and ball.\", \" He begins to hit the ball against the wall.\", \" He turns and talks to the camera again.\", \" He hits the ball and jumps.\", \" He continues to move around talking and explaining technique.\"]}, \"v_n2L9F6cMNaE\": {\"duration\": 154.02, \"timestamps\": [[0, 40.82], [38.51, 117.06], [92.41, 150.94]], \"sentences\": [\"A shot of a playground is shown followed by a young girl pushing around a boy.\", \" The girl hold's the boys hands and leads him around the playground.\", \" The two go down slides several times as well as climb up them and smile to the camera.\"]}, \"v_Q2jdtN4-RE0\": {\"duration\": 231.23, \"timestamps\": [[0, 83.24], [49.71, 166.48], [130.64, 224.29]], \"sentences\": [\"A woman is seen standing outside with her feet together and looking off into the distance.\", \" The woman then begins moving slowly around the area while moving her hands back and fourth.\", \" She continues moving her body around and looking off into the distance.\"]}, \"v_75cjK13ylJM\": {\"duration\": 222.87, \"timestamps\": [[1.11, 78], [67.97, 171.61], [150.43, 213.95]], \"sentences\": [\"A close up of food is shown followed by a woman speaking to the camera and showing off various ingredients.\", \" The woman mixes the ingredients into a bowling pot while stirring it around and continuing to add more ingredients to a bowl as well as pot.\", \" The woman peels an orange in the end and sticks it in the dish to serve.\"]}, \"v_WTfeKnRJ17g\": {\"duration\": 91.72, \"timestamps\": [[0, 42.65], [42.65, 80.25], [80.71, 91.72]], \"sentences\": [\"Two girls prepares to jump rope, then the girls do a cartwheel and land on the floor to jump while two ladies turn two ropes.\", \" Then, the ladies and the girls take turns to jump rope while doing tricks.\", \" When the girls and the ladies finish, they jump and flip in the air, then they start to dance on front a jury.\"]}, \"v_OM58jhy61Mc\": {\"duration\": 27.7, \"timestamps\": [[0, 13.85], [13.71, 27.7]], \"sentences\": [\"A close up of a man's chin is shown followed by him smoking a hookah pipe.\", \" He takes the pipe out of his mouth and blows the smoke into the camera.\"]}, \"v_3G1T_V102GA\": {\"duration\": 57.31, \"timestamps\": [[0, 5.44], [5.44, 10.32], [10.32, 57.31]], \"sentences\": [\"An orange and yellow ombre website appears on the screen and the backdrop is an animation of spinning earth surrounded by stars.\", \"A man appears riding on his motorcycle and smiling, then a black screen appears with white words in the middle of the screen that say \\\"IN SEARCH OF 'THE PERFECT SHAVE'\\\".\", \"The man is now standing in his bathroom while wordings appear on different screens, as well as him riding on his motorcycle in between him lathering his face, picking tools to shave with from his very large supply of razors that are hanging in a black case on a wall behind him, and shaving.\"]}, \"v_NCvNIKw4EZ4\": {\"duration\": 23.27, \"timestamps\": [[0, 5.58], [5.12, 17.92], [15.47, 22.69]], \"sentences\": [\"A close up is shown of a pool table with a man standing around the side.\", \" Several people are seen watching from the side as the man walks around the pool table.\", \" The man hits the ball and continues walking around the table.\"]}, \"v_dFlmzpAb6AQ\": {\"duration\": 202.85, \"timestamps\": [[0, 60.86], [54.77, 143.01], [141.99, 198.79]], \"sentences\": [\"Several boats and seen riding along the water with some crashing into another.\", \" More clips are shown of people riding along the water on the side of boats.\", \" People hang onto the boats on the side and show more clips of them flipping over.\"]}, \"v_KZLEUd2ALVI\": {\"duration\": 42.03, \"timestamps\": [[0, 5.67], [5.25, 13.24], [13.24, 16.18]], \"sentences\": [\"A woman is holding onto a rope attached to a ball.\", \" She spins around several times before launching it onto the field.\", \" Three men measure the distance she threw it.\"]}, \"v_xOmfJGR5fBw\": {\"duration\": 200.92000000000002, \"timestamps\": [[0, 22.1], [10.05, 16.07], [31.14, 150.69], [50.23, 58.27], [100.46, 108.5], [150.69, 178.82], [181.84, 200.92]], \"sentences\": [\"We see a lady sitting holding a cat and talking.\", \" The lady shows us nail clippers.\", \" The lady clips her cats claws.\", \" The lady shows us a clipped claw.\", \" We see a paw's claw up close.\", \" The lady finishes and talks to the camera.\", \" We see the ending screen with video clips.\"]}, \"v_P1gGM89_T2g\": {\"duration\": 63.99, \"timestamps\": [[0, 14.08], [14.72, 42.87], [44.15, 63.99]], \"sentences\": [\"A leaf is shown floating through the water and two scuba divers swimming around the water.\", \" Various shots of the ocean around them is shown as the divers looking into objects.\", \" Several fish are shown swimming around the divers move around sticks and the sand around.\"]}, \"v_waFqh-Qkafc\": {\"duration\": 52.32, \"timestamps\": [[0, 7.85], [7.85, 18.83], [18.83, 36.1], [36.1, 52.32]], \"sentences\": [\"Someone is showing the steps on how to carve a pumpkin.\", \" You choose a stencil and draw it on and then you get the carving tools, you also have to empty all the pumpkin goo out of the pumpkin.\", \" You start to slowly carve  all the around the outline.\", \" Once you're done doing that and it's all done you add a candle so that it lights up.\"]}, \"v_fWD0rL_72nw\": {\"duration\": 60.19, \"timestamps\": [[0, 60.19], [4.81, 60.19], [55.07, 60.19]], \"sentences\": [\"A man and a woman are boxing in a gym.\", \" The man keeps moving backward and the woman follows.\", \" The woman starts kicking at the man.\"]}, \"v_pYvqbfVY-s8\": {\"duration\": 212.6, \"timestamps\": [[1.06, 3.19], [4.25, 212.6], [6.38, 212.6]], \"sentences\": [\"The credits of clip are shown.\", \" Male players are playing water polo in a pool.\", \" A player makes a goal or the goalie does not prevent the ball from entering the net.\"]}, \"v_r46Vy3p19a0\": {\"duration\": 31.74, \"timestamps\": [[0, 6.51], [6.51, 23.49], [23.17, 31.74]], \"sentences\": [\"A young boy is outside cutting the grass with a lawn mower.\", \"The majority of the grass is already cut and he continues to move around in a small circle to cut the patch of grass that is left.\", \"He goes around and around and seems to lose some what of the control of the lawn mower as he hits the curves.\"]}, \"v_5VwGzOLPFAQ\": {\"duration\": 141.04, \"timestamps\": [[0, 5.64], [5.64, 7.76], [7.76, 11.28], [11.28, 34.55], [35.26, 74.05], [51.48, 74.75], [74.05, 90.26], [90.26, 129.05], [130.46, 141.04]], \"sentences\": [\"A person adjusts their selfie stick.\", \" The person then waves to the camera.\", \" The person shows the other skiier.\", \" The main person wiggles and begins to slide down the slope.\", \" The person starts falling and the camera is covered with snow.\", \" the snow clears and the person starts skiing again.\", \" The skiier stops moving and clears the snow from the camera.\", \" We see the fall in slow motion.\", \" We are then shown the mountain.\"]}, \"v_wyNM_7YDgfo\": {\"duration\": 139.1, \"timestamps\": [[5.56, 29.91], [30.6, 58.42], [59.12, 89.02], [89.02, 129.36]], \"sentences\": [\"People speaks in the TV, and a crowd appears covered the face and holding firearms.\", \" Mr Kissinger and other man speaks, and then the crowd walks on an unpaved road.\", \" After, President Kennedy talks, then the crow start to run and shoot.\", \" People are shooting with firearms in the woods.\"]}, \"v_g_Cz69Q5bKM\": {\"duration\": 44.24, \"timestamps\": [[0, 5.09], [3.1, 14.16], [10.62, 27.65], [28.75, 43.35]], \"sentences\": [\"Two men are standing on a squash court.\", \" The man on the right serves the ball.\", \" The man on the left lobs the ball.\", \" The man from the right lobs the ball and wins the point.\"]}, \"v_4KMbeat6yoE\": {\"duration\": 162.42000000000002, \"timestamps\": [[0, 162.42], [38.98, 49.54], [60.91, 87.71]], \"sentences\": [\"People are standing in a room playing instruments.\", \" A guitar case is seen on the floor.\", \" A person is sitting on a couch next to them watching.\"]}, \"v_3G9zc_SEOHM\": {\"duration\": 135.19, \"timestamps\": [[0, 27.04], [27.04, 89.9], [89.9, 135.19]], \"sentences\": [\"Two young males are outside in an open park  walking up to groups of young women asking them questions.\", \"They then begin to do rock,paper,scissors and if they girls win they get to slap him and  if the boy wins they'll get to kiss them on the lips.\", \"The video progresses and there are a series of slaps and kisses from different females.\"]}, \"v_EQajiMQAW74\": {\"duration\": 37.83, \"timestamps\": [[0, 13.62], [10.59, 24.21], [22.7, 37.83]], \"sentences\": [\"A bald man is shaving the back of another man's head.\", \" The bald man put his leg over the man's thigh to look at the front of the other man's hair.\", \" The bald man move away from the man and continue to shave.\"]}, \"v_sQwx_m8Vghw\": {\"duration\": 25.96, \"timestamps\": [[0.26, 9.74], [6.49, 18.56], [17.13, 24.01]], \"sentences\": [\"A close up of a machine is seen with a chain around it.\", \" A person is then seen moving the wheel around and around as it moves faster.\", \" The camera pans in closer to watch this person peddle and move around the room.\"]}, \"v_l-PDSOCk7z0\": {\"duration\": 140.09, \"timestamps\": [[3.5, 8.41], [11.21, 130.98], [136.58, 140.09]], \"sentences\": [\"Tooth brushes are sitting on a table.\", \" They dip the tooth brushes into paint and start painting on a piece of paper.\", \" They set the toothbrushes down.\"]}, \"v_x4f4jp_eHHo\": {\"duration\": 229.5, \"timestamps\": [[2.29, 96.39], [99.83, 219.17]], \"sentences\": [\"A woman is seen standing before a stage and leads into a large group of women belly dancing together.\", \" The girls continue performing a routine and end by holding a pose.\"]}, \"v_2rgamh4uty8\": {\"duration\": 120.61, \"timestamps\": [[4.22, 48.85], [51.26, 59.7], [62.11, 110.96]], \"sentences\": [\"A man applies different waxes to a ski that is sitting on a work bench.\", \" The man adds different waxes to a snowboard surface on the workbench.\", \" The worker uses a brush to apply the wax to the skis surface.\"]}, \"v_nKPkHO9ajs8\": {\"duration\": 52.76, \"timestamps\": [[0, 10.55], [13.45, 25.85], [26.64, 52.76]], \"sentences\": [\"A boy is outside, running with a net.\", \" He hits a ball away from the goal.\", \" He continues running back and forth, playing with the ball and net alone.\"]}, \"v_JFBd-R1YuXY\": {\"duration\": 84.68, \"timestamps\": [[0.42, 19.48], [19.9, 59.28], [60.55, 80.87]], \"sentences\": [\"A woman and young girl are seen sitting on the beach playing in the sand.\", \" A woman stands up and walks towards the water with the girl following behind.\", \" The woman then dumps water all over the sand and shows it to the girl.\"]}, \"v_lGKUEUBeo8U\": {\"duration\": 145.13, \"timestamps\": [[0, 51.52], [51.52, 145.13]], \"sentences\": [\"A boy walks into frame and begins stepping up and down on a small stairs moving his arms and legs around.\", \" He spins around the board still moving up and down adding kicks in the end and bowing while running away.\"]}, \"v_O2Y6rn4gFd4\": {\"duration\": 24.66, \"timestamps\": [[0, 3.82], [3.82, 10.85], [10.85, 17.14], [17.14, 24.66]], \"sentences\": [\"A boy is sitting inside on a chair shaving his legs with shaving cream.\", \" His sister is shaving his other leg for him.\", \" He most likely lost a bet and now he has to pay the price which is the leg shaving.\", \" He makes some comments and continues on to shaving the leg making it very smooth.\"]}, \"v_gxILsv1RTEI\": {\"duration\": 68.8, \"timestamps\": [[0.69, 56.42], [57.1, 66.39]], \"sentences\": [\"A man brush her teeth while holding a smart phone on front his face.\", \" Toothpaste comes form the mouth of the man, then the man cleans her face.\"]}, \"v_m_gr7WdjJmc\": {\"duration\": 186.69, \"timestamps\": [[0, 44.81], [44.81, 115.75], [115.75, 186.69]], \"sentences\": [\"A man is outside dressed in a black jacket talking while two man made ski hills are behind him.\", \"The coach then begins demonstrating certain techniques as he comes down the slopes.\", \"After,he comes back to talk and once he approaches the slope begins hopping down it.\"]}, \"v_CIgdBoHjGXU\": {\"duration\": 223.98, \"timestamps\": [[0, 85.11], [85.11, 111.99], [113.11, 138.87], [138.87, 217.26]], \"sentences\": [\"A man talks and points his hair, then a woman wash and cut his hair with a machine and scissors.\", \" The man talks and after the woman continues cutting the hair.\", \" Then, the man shows bottles while talking.\", \" After, the man blows and comb his hair, then he puts cream to his hair to stylish, then talks pointing hair.\"]}, \"v_ph7d2H77tks\": {\"duration\": 172.66, \"timestamps\": [[0, 172.66], [21.58, 49.21], [50.07, 56.12], [64.75, 74.25], [77.7, 100.15], [107.92, 157.12], [157.99, 172.66]], \"sentences\": [\"We see a man talking in a bike shop.\", \" We see the man adjust the bike seat.\", \" The man tightens the bike.\", \" The man sits on the bike.\", \" The man adjusts the seat and sits on the bike again.\", \" The man adjusts the handle bars.\", \" The man sits on the bike again.\"]}, \"v_62s1ZSNLJ6g\": {\"duration\": 135.53, \"timestamps\": [[0, 14.23], [15.59, 83.35], [87.41, 135.53]], \"sentences\": [\"A shoe is shown broken into pieces inside a bathtub.\", \" A person is kicking around in the tub water.\", \" He tries to wash his shoes by kicking them in the water, the soles coming out.\"]}, \"v_D_y9uXMbImA\": {\"duration\": 49.6, \"timestamps\": [[0, 23.31], [23.31, 32.24], [32.24, 49.6]], \"sentences\": [\"A young man and a little boy are mowing the grass with a push mower.\", \"  The walk behind a shrub and turn around.\", \"  They move another row of grass.\"]}, \"v_ye7e0mitDdU\": {\"duration\": 43.05, \"timestamps\": [[0, 7.75], [7.96, 16.57], [17, 20.45], [25.18, 28.41]], \"sentences\": [\"A man on a rowing machine demonstrates lower back posture rules when using a rowing machine.\", \" He demonstrates how his lower back is supported while using the rowing machine.\", \" The third rule he shows is a body over from hips rule.\", \" Finally, he demonstrates how he has a straight back at catch.\"]}, \"v_-mX18jJkPDk\": {\"duration\": 189.62, \"timestamps\": [[0, 5.69], [5.69, 11.38], [11.38, 189.62], [108.08, 122.3], [157.38, 167.81]], \"sentences\": [\"A lady is talking to the camera.\", \" She shows us her brush.\", \" The lady brushes her hair and talks.\", \" The lady takes the hair out of the brush and shows us the wad of hair.\", \" She holds her hair in her hand and brushes her hair.\"]}, \"v_nrvB8pcrY7o\": {\"duration\": 175.4, \"timestamps\": [[30.7, 37.71], [44.73, 64.02], [84.19, 175.4]], \"sentences\": [\"A man puts something onto the bottom of a ski.\", \" He then starts to brush the bottom of the ski.\", \" He irons the bottom of the ski with a small red iron.\"]}, \"v_OCdmlTxq1Co\": {\"duration\": 115.25999999999999, \"timestamps\": [[0, 6.92], [6.92, 29.39], [29.39, 47.26], [47.26, 91.06], [91.06, 115.26]], \"sentences\": [\"A small gray axe with a wooden handle is scraping at a gray substance on the wall.\", \" Then a very hot torch with flames are melting the gray substance and when it's done it looks flat and scratched up.\", \"A gloved hand turns a white knob on a black and blue machine with red numbers on it that move with each turn, and a colorful animated picture appears.\", \" The gray substance is shown again being torched and once again shown how it looks afterwards.\", \"A man wearing full protection gear is shown standing and torching the object then it fades to a black screen with white words that say \\\"Hobart Institute of Welding Technology All Rights Reserved\\\".\"]}, \"v_QjaEDlh805g\": {\"duration\": 211.23, \"timestamps\": [[6.34, 211.23], [14.79, 31.68], [32.74, 84.49], [178.49, 207.01]], \"sentences\": [\"A person combs and brushes another persons hair in an indoor living room setting using a comb,and some styling products.\", \"  An unseen person begins spraying a persons hair with black bottle and a red nozzle.\", \"  The person then begins combing and brushing the persons hair.\", \"  The unseen stylist then puts a flower in the person's hair and lays all the tools used to comb the hair on a black piece of fabric.\"]}, \"v_DJE9nX2qKYs\": {\"duration\": 13.57, \"timestamps\": [[0, 4.89], [5.36, 10.79], [10.79, 13.57]], \"sentences\": [\"A woman in a black shirt is bent over.\", \" She picks up a heavy weight.\", \" She lifts the weight up over her head.\"]}, \"v_94w7SEcPDho\": {\"duration\": 230.99, \"timestamps\": [[0, 230.99], [36.96, 39.27], [39.27, 165.16]], \"sentences\": [\"man riding a bike is going down a dirty path.\", \" man is standing on a side of the path next to his bicycle.\", \"in the start people are driving down the path.\"]}, \"v_Opqg11Nkb7c\": {\"duration\": 192.89, \"timestamps\": [[0, 192.89], [19.29, 93.55], [112.84, 192.89]], \"sentences\": [\"A camper describes how to make a fire.\", \"  The camper shows all the ingredients needed and prepares the fire.\", \"  The man lights the fire a few times to get it going and then hikes away.\"]}, \"v_wu0G4yQIwKo\": {\"duration\": 143.04, \"timestamps\": [[0, 37.19], [38.62, 117.29], [117.29, 130.88], [130.16, 143.04]], \"sentences\": [\"A woman and a person paint a fence color red while the woman talks.\", \" The woman puts paint on the arm of the person, then they continue painting the fence.\", \" The woman shows two brushes, she has paint on her arm.\", \" Suddenly, the woman runs chasing the person.\"]}, \"v_Tsht1n005fI\": {\"duration\": 102.82, \"timestamps\": [[0, 94.08], [8.23, 8.74], [86.37, 87.4]], \"sentences\": [\"Men are standing on a field playing soccer.\", \" A man stops and talks to the camera.\", \" A man is indoors talking to people.\"]}, \"v_8jUdeuAOEJg\": {\"duration\": 73.91, \"timestamps\": [[0.37, 39.17], [25.5, 70.21]], \"sentences\": [\"A man is seen breaking down in front of a camera performing various moves one after the other.\", \" The man continues spinning around and landing in tricks while the camera captures his movements.\"]}, \"v_mShwD_I43ao\": {\"duration\": 183.72, \"timestamps\": [[2.76, 44.09], [46.85, 102.88], [102.88, 178.21]], \"sentences\": [\"A woman talks wearing headphones on the left corner while display a warning sign.\", \" Suddenly, a cartoon characters appears in the screen and a game.\", \" The woman continues taking while a game display in the screen.\"]}, \"v_gIwTydKpIe4\": {\"duration\": 106.58, \"timestamps\": [[4.8, 11.19], [10.13, 25.58], [26.65, 97.52]], \"sentences\": [\"A man puts a cloth on a shirt on an iron board to iron, then the man puts the shirt on a hanger.\", \" Then, the man talks and sets up the temperature of the iron.\", \"After, the man shows how to put the garment and the cloth and iron and hung while talking.\"]}, \"v_F7u4kpwhs5g\": {\"duration\": 53.62, \"timestamps\": [[0, 5.09], [6.7, 41.28], [42.89, 53.62]], \"sentences\": [\"Some men are playing polo while riding horses.\", \" They are riding horses on an open field.\", \" They chase the ball with their sticks and hit them back and forth.\"]}, \"v_yWCEDAQvhzA\": {\"duration\": 171.13, \"timestamps\": [[0, 83], [35.94, 83], [140.33, 152.31]], \"sentences\": [\"Three men in white robes are doing karate moves.\", \" People are watching them in the audience behind them.\", \" A man kicks a piece of wood and breaks it in half.\"]}, \"v_1a8PCm9e1YU\": {\"duration\": 135.33, \"timestamps\": [[0, 17.59], [17.59, 53.45], [53.45, 133.97]], \"sentences\": [\"A young boy wearing a black t-shirt plays congas in a band rehearsal.\", \" A man in a white t-shirt accompanies the conga player on the drums behind the boy.\", \" A man wearing a hat picks up a percussion instrument and accompanies the young conga player.\"]}, \"v_qTAG23IVSeM\": {\"duration\": 107.53, \"timestamps\": [[0.54, 101.08], [0.54, 13.98], [13.98, 102.16]], \"sentences\": [\"A group of people play pole while riding horses in a fenced in dirt ring enclosure in front of an audience in surrounding bleachers.\", \"  A group of people mount the horses to ride them.\", \"  The people then run after an orange polo ball around the length of the ring and attempt to hit the ball with their polo sticks before the scene fades to a black and white marketing slide.\"]}, \"v_sahQxLbmM0U\": {\"duration\": 37.32, \"timestamps\": [[0, 10.82], [10.45, 21.64], [21.46, 27.99]], \"sentences\": [\"A woman is bent over holding a weight bar.\", \" She picks the weight up and holds it at her shoulders.\", \" She then lifts the weight over her head.\"]}, \"v_1cLxW-FhgpA\": {\"duration\": 181.6, \"timestamps\": [[0, 69.01], [69.92, 181.6]], \"sentences\": [\"A woman is shown speaking to the camera and leads into her showing off several dance steps.\", \" The woman continues to demonstrate how to properly perform various dance moves over and over again.\"]}, \"v_ZsicrMkZEN8\": {\"duration\": 86.31, \"timestamps\": [[0, 86.31], [0.86, 86.31], [59.98, 62.57]], \"sentences\": [\"Two girls are dancing with a baton.\", \" People are sitting at a table behind them.\", \" A woman sitting at the table behind them puts a jacket on.\"]}, \"v_mg0n3DNtUZU\": {\"duration\": 115.5, \"timestamps\": [[0, 64.1], [33.49, 98.75], [95.29, 115.5]], \"sentences\": [\"Various teams of people are seen standing around a field and leads into a man giving a speech in front of a large crowd.\", \" The men stand behind a rope waving their arms up in the air, and lead into shots of teams playing tug of war with another in front of a large crowd.\", \" One team wins and the announcer hands them a trophy and ends with the man speaking and credits rolling.\"]}, \"v_ZHOPn9lONHA\": {\"duration\": 179.28, \"timestamps\": [[0.9, 172.11], [0.9, 57.37], [58.27, 111.15], [112.05, 179.28]], \"sentences\": [\"A woman demonstrates posture and exercise technique while sitting on a floor in work out clothes.\", \" A woman in work out clothes is sitting on the floor and talking to the camera when she suddenly turns to the side, still talking to the camera but pointing now to her shoulders and waist.\", \"  The woman begins to mimic the motion of typing with her fingers and eventually begins to demonstrate sit ups.\", \"  The woman turns on her side and then lays down on the floor while motioning to her stomach and still talking to the camera.\"]}, \"v_0_-Q1zOC3Kw\": {\"duration\": 39.27, \"timestamps\": [[0, 20.22], [20.03, 39.27]], \"sentences\": [\"A small group of people are seen sitting around a classroom with one playing the harmonica.\", \" One woman is seen dancing around behind him as he continues to play the instrument.\"]}, \"v_qKG1mU0Feug\": {\"duration\": 80.92, \"timestamps\": [[0, 80.92], [5.66, 80.92], [8.9, 80.92], [13.76, 80.92]], \"sentences\": [\"Several people are swimming in the pool.\", \" They are wearing caps on their heads.\", \" A life guard looks on.\", \" There is a net set up.\"]}, \"v_jpWevi1HBYo\": {\"duration\": 16.95, \"timestamps\": [[0, 6.61], [6.7, 9.07], [9.07, 16.95]], \"sentences\": [\"Girls stand holding lacrosse sticks in a field.\", \" Then, a girl throws a yellow ball, and girls run to get the ball.\", \" A child scoop the ball with the stick and run on opposite direction.\"]}, \"v_AGjhryYGVs4\": {\"duration\": 198.97, \"timestamps\": [[0, 52.73], [51.73, 150.22], [149.23, 198.97]], \"sentences\": [\"A close up of water is shown followed by people standing around a raft and jumping into the water.\", \" Several shots are then shown of people riding down the river on a raft and guiding themselves along the water and splashing each other.\", \" More shots are shown of the water as well as the people riding down.\"]}, \"v_cIKAwgMLKw4\": {\"duration\": 98.97999999999999, \"timestamps\": [[0, 16.33], [16.33, 59.88], [60.38, 98.98]], \"sentences\": [\"A purple gloomy sky is shown as the sun sets behind a body f water.\", \"A woman then appears standing by a tree applying oil to her under arms then eventually shaving them.\", \"After her armpits are done,she then applies the same oil to her legs and shaves them as well.\"]}, \"v_Q9n6B1AVO4E\": {\"duration\": 83.73, \"timestamps\": [[0, 83.73], [6.7, 83.73]], \"sentences\": [\"A girl sits very close to the camera.\", \" The girl puts bright blue contacts in each of her eyes and then takes one of them out.\"]}, \"v_e1_oskOyQoU\": {\"duration\": 162.1, \"timestamps\": [[7.29, 47.01], [25.94, 41.34], [41.34, 162.1]], \"sentences\": [\"Various tools are shown laid out while a hand picks up the tools and shows them to the camera.\", \" He then grabs another tool and begins sharpening the knife next to some sliced apples.\", \" He then cuts the apples with the sharpened knife and leads into another person holding and showing off more knives.\"]}, \"v_tIbSsad0z9U\": {\"duration\": 158.92000000000002, \"timestamps\": [[0, 61.18], [51.65, 149.38]], \"sentences\": [\"Several clips are shown of a man swimming around in a pool and speaking to the camera.\", \" The man continues moving around in the pool demonstrating how to do proper technique while still speaking to the camera.\"]}, \"v_maE7PmL7Zjk\": {\"duration\": 140.34, \"timestamps\": [[0, 32.98], [32.98, 101.75], [101.75, 140.34]], \"sentences\": [\"An intro leads into two men holding pool sticks and one hitting the white ball.\", \" The other puts a piece of paper down and lines up his shot with the ball.\", \" He writes on the paper, turns and walks around the pool table, and looks back towards the other man.\"]}, \"v_RhOV_K2XzZA\": {\"duration\": 63.62, \"timestamps\": [[0, 11.77], [13.04, 38.17], [39.76, 61.08]], \"sentences\": [\"A small group of people are seen wandering around a gym hitting a ball.\", \" The people hit the ball back and fourth while others watch on the side.\", \" The people chase after the ball and continue to hit it up into the air.\"]}, \"v_p1fpQ4yR1co\": {\"duration\": 112.5, \"timestamps\": [[29.25, 32.06], [41.63, 66.94], [66.94, 95.63]], \"sentences\": [\"A woman is blow drying her hair.\", \" She turns a curling iron on and starts curling her hair.\", \" She turns on a straightener and starts straightening her hair.\"]}, \"v_DvDfifKGXXg\": {\"duration\": 60.49, \"timestamps\": [[0, 60.49], [11.49, 15.12], [17.84, 24.5], [24.5, 31.15], [33.57, 39.62]], \"sentences\": [\"We see two little boys painting poles in a yard.\", \" The boy in white wipes his shirt.\", \" We zoom on the left boy.\", \" We then switch to and zoom on the right boy.\", \" We see both boys fill their brushes with paint.\"]}, \"v_VWsyA_RJIzg\": {\"duration\": 25.53, \"timestamps\": [[0, 14.55], [14.68, 25.53]], \"sentences\": [\"A close up of rings are shown floating around an ocean followed by a scuba diver off into the distance.\", \" The swimmer goes through a ring while popping it's side and continues moving up to the surface.\"]}, \"v_VtS4vy8Z0RQ\": {\"duration\": 14.65, \"timestamps\": [[0, 8.28], [8.28, 14.65]], \"sentences\": [\"A young male caucasion is in a room juggling a beer pong ball.\", \"He is then shown in a room with a group of people and tosses a ball in the cup.\"]}, \"v_WhBnR7yIvJc\": {\"duration\": 35.09, \"timestamps\": [[0, 35.09], [0, 34.74], [1.05, 35.09]], \"sentences\": [\"little blonde kid is in a swinging laughing and watching the camera.\", \" little kid is swinging in a playground having fun.\", \" little blonde kid is having fun swinging herself in a playground.\"]}, \"v_F3FjEM9ls0o\": {\"duration\": 56.05, \"timestamps\": [[0, 56.05], [0.84, 2.52], [3.64, 56.05]], \"sentences\": [\"A guy sits behind a drum set.\", \" The guy get up and fixes his stool and then sits again.\", \" The guy plays the drums.\"]}, \"v_OhpaFQeQtKs\": {\"duration\": 110.18, \"timestamps\": [[1.65, 50.68], [39.66, 103.57]], \"sentences\": [\"A man is seen speaking to a large audience and leads into two people fencing one another.\", \" The people continue fencing and end by shaking hands with others and many celebrating and cheering with the winner.\"]}, \"v_A4L4ObzZ5VE\": {\"duration\": 9.36, \"timestamps\": [[0, 9.36], [6.64, 7.11], [7.39, 9.36]], \"sentences\": [\"People are riding motor bikes around a dirt race track.\", \" Two bike riders fall off their motor bikes.\", \" A person drops the rope and heads toward the fallen bike riders.\"]}, \"v_aYSJn94g_Io\": {\"duration\": 81.57, \"timestamps\": [[0, 6.53], [7.34, 20.39], [21.21, 69.74], [71.78, 81.57]], \"sentences\": [\"A man is talking while holding a bottle of commercial tea.\", \" He goes into a bowling alley, where he picks up a ball and sends it flying down a lane, as it bounces back and rolls into the seating area.\", \" He then kicks it, throws it like a baseball, and bounces it off his head.\", \" A man falls on the lane, crumpled up in pain.\"]}, \"v_UnOzWl0EGCA\": {\"duration\": 66.6, \"timestamps\": [[0, 66.6], [5.66, 10.32], [13.98, 43.95], [55.94, 59.94], [62.93, 66.6]], \"sentences\": [\"A guy is standing behind a bar.\", \" The guy raises an empty glass.\", \" The guy mixes alcohol, other liquids, and ice together.\", \" The guy pours the shaken liquid into the glass.\", \" The guy holds up the glass.\"]}, \"v_3VAq3wYxnMs\": {\"duration\": 109.32, \"timestamps\": [[0, 58.49], [58.49, 109.32]], \"sentences\": [\"Identify the area of the leg to be shaved and apply shaving cream to protect the skin.\", \" Begin shaving the leg until all the hair is off the targeted area.\"]}, \"v_yeEe8-aYA2E\": {\"duration\": 70.64, \"timestamps\": [[2.47, 13.77], [11.65, 53.68], [62.51, 70.64]], \"sentences\": [\"A man is riding a bike down the sidewalk.\", \" He is jumping off a ramp.\", \" He is seen jumping off his bike.\"]}, \"v_ke3R1rOeQzE\": {\"duration\": 80.28999999999999, \"timestamps\": [[0.8, 78.28], [1.61, 77.07], [60.21, 77.07]], \"sentences\": [\"Two teams plays volley ball in an indoor gym surrounded by referees, marketing graphics and an audience in bleachers.\", \"  Two teams play indoor volley ball as marketing signs bordering the playing floor change suddenly and morph in more signs .\", \"  A coach in a black suit walks across the sidelines as the game continues and one player in a blue uniform throws an arm up in victory.\"]}, \"v_dBzWXTH5j00\": {\"duration\": 142.57, \"timestamps\": [[0, 142.57], [18.53, 34.22], [64.87, 74.85], [89.11, 125.46]], \"sentences\": [\"We see people in raft going down a river.\", \" They hit a patch of rough water.\", \" They hit a choppy part of the river.\", \" They enter rough water which tosses the raft and wets the people in the raft.\"]}, \"v_qEU4vKowVo4\": {\"duration\": 90.56, \"timestamps\": [[0, 43.47], [40.3, 90.56]], \"sentences\": [\"A man is seen sitting down on the ground while another kneels beside a tires and helps him move it.\", \" One man walks out of frame while the other moves a jack around and the other opens the door.\"]}, \"v_U9pnR51t6As\": {\"duration\": 200.69, \"timestamps\": [[0, 9.03], [13.04, 70.24], [14.05, 30.1], [34.12, 50.17], [93.32, 160.55], [105.36, 171.59], [185.64, 189.65], [198.68, 200.69]], \"sentences\": [\"Man talks to someone on the camera.\", \"  Sumo wrestlers practice moves in the dojo.\", \"  Sumo wrestlers lift up legs and then crouch.\", \"  Sumo wrestlers practice moves going forward and side to side.\", \"  Dojo master talks to his students.\", \"  Dojo master talks to the camera.\", \"  Sumo wrestlers eat food in the dojo.\", \"  Man sleeps in a bed.\"]}, \"v_mzewLmZSCMU\": {\"duration\": 43.1, \"timestamps\": [[0.22, 10.56], [11.42, 32.75], [24.78, 41.8]], \"sentences\": [\"A person is seen bending down on the floor followed by a ballerina jumping.\", \" Another person is seen moving their body around in a costume afterwards.\", \" More dancers are seen jumping around the stage.\"]}, \"v_KNLGluuewIU\": {\"duration\": 226.0, \"timestamps\": [[0, 114.13], [85.88, 226]], \"sentences\": [\"A girl is seen speaking to the camera and leads into shots of her and young girl singing to the camera.\", \" The girls continue to record themselves and leads into the girl brushing her hair from behind.\"]}, \"v_lbtW7nHTnwA\": {\"duration\": 168.37, \"timestamps\": [[0, 157.42], [36.2, 45.46], [59.77, 111.12]], \"sentences\": [\"People are playing ping pong in a room.\", \" A man picks a ball up off a table and starts playing ping pong.\", \" A man and a girl are playing a game of ping pong.\"]}, \"v_NrlITLsd7Fk\": {\"duration\": 12.21, \"timestamps\": [[0, 0.79], [1.47, 6.72], [7.02, 12.21]], \"sentences\": [\"a man is inside a gym.\", \" He jumps on a beam, and starts spinning around it.\", \" He kicks out his legs and continues spinning.\"]}, \"v_SF3pw17yBB4\": {\"duration\": 15.14, \"timestamps\": [[0, 15.14], [13.63, 15.14]], \"sentences\": [\"A man peels potatoes over a cutting board with a large knife.\", \" The man sets down the potato and grabs another to peel.\"]}, \"v_QMm6gYzsMw8\": {\"duration\": 185.78, \"timestamps\": [[0, 2.79], [2.79, 183], [183, 185.78]], \"sentences\": [\"There are 3 women standing side by side on a tiled floor outdoors and a scenery barely visible right behind them.\", \"At the same time they all start dancing the same dance routine, but not  in perfect sync with one another.\", \"They end their dance, clap themselves, smile and begin to walk away.\"]}, \"v_z48kSSKMoXo\": {\"duration\": 85.94, \"timestamps\": [[0, 6.45], [8.59, 85.94]], \"sentences\": [\"An athletic woman is seen standing holding a jump rope in front of a large group of people.\", \" She begins doing several jumps and tricks with the rope and gives a little boy a heart and hug who runs onto the stage.\"]}, \"v_vRNcq6nOk0E\": {\"duration\": 167.54, \"timestamps\": [[0, 82.1], [76.23, 167.54]], \"sentences\": [\"A close up of a glass door is shown as well as a person's hand moving around in the camera and making various gestures.\", \" He then holds up scissors swinging them around and doing more hand gestures to the camera.\"]}, \"v_gGai6uu5Yjs\": {\"duration\": 115.92, \"timestamps\": [[0, 12.75], [20.86, 115.92]], \"sentences\": [\"The back view of a woman is shown, followed by two more.\", \" A man and other women are shown using elliptical trainers at varying speeds as they pedal and exercise.\"]}, \"v_fk_hkHmnmJo\": {\"duration\": 60.33, \"timestamps\": [[0, 27.45], [23.53, 60.33]], \"sentences\": [\"A person's hands are seen opening a cap of sunscreen followed by rubbing it along their arm and rubbing it in.\", \" The person then puts more sunscreen on the other arm and continues to rub both of his arms in.\"]}, \"v_Rd9TrjbCkAE\": {\"duration\": 11.82, \"timestamps\": [[0, 3.07], [3.37, 5.73], [6.15, 11.82]], \"sentences\": [\"A man is using a sprayer to pain a fence outside a house.\", \" A small group has gathered behind him.\", \" They are watching him pain the fence.\"]}, \"v_mj0lRelI0xw\": {\"duration\": 131.19, \"timestamps\": [[3.94, 57.07], [49.2, 126.6]], \"sentences\": [\"A large group of people are seen standing together holding instruments and some beginning to play.\", \" The drummers continue to play all together with the camera panning around their movements.\"]}, \"v__3xMhj4mbsk\": {\"duration\": 197.6, \"timestamps\": [[0, 3.95], [3.95, 7.9], [7.9, 83.98], [84.97, 98.8], [98.8, 114.61], [120.54, 146.23], [147.21, 167.96], [167.96, 187.72], [188.71, 197.6]], \"sentences\": [\"We see a blue opening screen.\", \" We see a table with scratches.\", \" A lady paints the end table with a greenish paint.\", \" We see furniture products all lined up.\", \" We see the lady sand the table.\", \" The lady rubs wax on the table.\", \" We see decor and the table in a house.\", \" We see a blue screen then products.\", \" We see closing screens and credits.\"]}, \"v_pouxwDABDrg\": {\"duration\": 222.59, \"timestamps\": [[0, 23.37], [23.37, 168.05], [169.17, 222.59]], \"sentences\": [\"A group of women are working out in a building.\", \" The instructor appears, and they continue dancing up and down and side to side on steppers.\", \" The instructor walks away as the others continue.\"]}, \"v_f4IL30BPe2w\": {\"duration\": 132.66, \"timestamps\": [[1.33, 47.76], [36.48, 102.15], [94.85, 128.01]], \"sentences\": [\"A picture of people holding dogs are shown that lead into people performing tricks with their dogs.\", \" One man and his dog perform several tricks back and fourth with one another using frisbees.\", \" The man and dog continue running up and down the grass performing tricks and ends with him grabbing the dog.\"]}, \"v_BwR1DPCVsP8\": {\"duration\": 189.43, \"timestamps\": [[0, 14.21], [15.15, 110.82], [113.66, 169.54], [171.43, 189.43]], \"sentences\": [\"A group of boys are on an indoor court.\", \" They are playing a game of basketball.\", \" We see them make a multitude of shots in slow motion.\", \" They give instructions on how to play the game as they go.\"]}, \"v__vK_sDOdgbM\": {\"duration\": 62.25, \"timestamps\": [[0, 2.49], [2.8, 40.78], [35.48, 60.7]], \"sentences\": [\"A man is seen smiling to the camera and taking off his glasses.\", \" A close up of contacts are shown as well as container of liquid.\", \" The man then puts the contacts in his eyes and smiles to the camera.\"]}, \"v_86iCOCtA4Ww\": {\"duration\": 129.06, \"timestamps\": [[0, 69.69], [56.14, 126.48]], \"sentences\": [\"A man is seen speaking to the camera while holding a jump rope in the middle of a park.\", \" The man then demonstrates several different jumps while holding the rope and still speaking to the camera.\"]}, \"v_79FMLEeVp7Q\": {\"duration\": 135.09, \"timestamps\": [[0, 36.48], [31.75, 40.53], [42.55, 56.74], [53.36, 64.85], [69.57, 102], [104.02, 135.09]], \"sentences\": [\"A man walks alone through a forest.\", \" A woman joins the man and they walk together, past more trees.\", \" They pass more people near mountains.\", \" They join a crowd alone a lake.\", \"  Three people ride a canoe near the base of the mountains.\", \" The cameraman explores again behind following the couple.\"]}, \"v_Lwy92HbuZII\": {\"duration\": 180.2, \"timestamps\": [[5.41, 22.53], [23.43, 37.84], [38.74, 45.95], [48.65, 53.16], [54.06, 60.37], [54.96, 60.37], [61.27, 70.28], [71.18, 72.98], [73.88, 79.29], [81.09, 82.89], [83.79, 85.59], [86.5, 90.1], [91, 98.21], [99.11, 102.71], [103.61, 105.42], [106.32, 109.92], [110.82, 117.13], [118.03, 130.64], [131.55, 132.45], [134.25, 155.87], [158.58, 161.28]], \"sentences\": [\"A man and three women are on a boat in the ocean.\", \"  The man takes pictures of the women and sometimes himself standing at the end of the boat.\", \" The man steers the boat as two of the women pull a rope and turn a crank.\", \" The man and two women are seen in a smaller boat.\", \" Now a woman stands next to a dinosaur skeleton talking.\", \" A few people are sitting and standing at a bar behind her.\", \" Another woman is seen talking in a room.\", \" All 3 women sit on a boat dock.\", \" Back on the boat, one of the women lays on the boat while the other two control it.\", \" A woman on the boat throws a rope to man on a smaller boat nearby.\", \" The women are back on a smaller boat.\", \" They are then seen on the boat with the man they threw a rope to while he is rowing.\", \" The women are off of the boat doing different things in a jungle area.\", \"Bock on the big boat, one of the women swims in the ocean.\", \" The three women raise the sail on the boat.\", \" Now they walk through a jungle.\", \" Someone is seen underwater and then looking at a waterfall.\", \" All three women stay around the waterfall doing various things.\", \" They all sit in and near a van while a man plays guitar and sings.\", \" A few more quick clips are shown of the women at the waterfall, on the boat and in a jungle area with children.\", \" Finally the women are on the big boat towing a smaller boat behind.\"]}, \"v_M9Z2RKnwiz4\": {\"duration\": 234.31, \"timestamps\": [[0, 66.78], [67.95, 128.87], [128.87, 199.17], [199.17, 234.31]], \"sentences\": [\"A row of balls are lined up in a large green field ranging from yellow,black,red and blue.\", \"The person then takes a hammer like poles and begins to hit each ball one by one between two poles that are about four yards away from him.\", \"As he gets to the red ball,the ball becomes stuck and he walks over to remove it before it and continues hitting the balls.\", \"A blue ball then gets stuck and he removes it from the inside and continues until all of the balls are through the pegs.\"]}, \"v_zg6BRB4a3Fo\": {\"duration\": 84.68, \"timestamps\": [[32.18, 84.68], [35.14, 84.68]], \"sentences\": [\"The woman is talking and showing us how she tones her legs by riding the exercise bike.\", \" Other people are riding the exercise bike.\"]}, \"v_AmWcQz_KJG4\": {\"duration\": 95.18, \"timestamps\": [[0, 4.76], [4.28, 89.94], [89.47, 95.18]], \"sentences\": [\"A girl jumps onto a balance beam.\", \" She does a gymnastics routine on the beam.\", \" She dismounts and lands on a mat next to the balance beam.\"]}, \"v_mo8CBVntUjE\": {\"duration\": 166.23, \"timestamps\": [[0, 156.26], [156.26, 166.23]], \"sentences\": [\"asian woman is singing and playing the drums moving her head and having fun, women playing the guitar are beside her.\", \" woman stands up fom the drums and thank.\"]}, \"v_UCzKdpP9sLE\": {\"duration\": 87.82, \"timestamps\": [[0, 37.76], [16.69, 18], [37.76, 63.23], [46.98, 51.81], [63.23, 71.57], [71.13, 79.91], [79.04, 87.82]], \"sentences\": [\"A small child plays with a makeup pencil pretending to do makeup while facing the camera.\", \" An adult hand briefly intrudes into frame to push a purse aside.\", \" The child digs into the purse for other items to play with.\", \" The adult briefly uses a brush from the purse on the child.\", \" The child retrieves a compact from the purse.\", \" The adult removes it from the child and places it on the table.\", \" The child retrieves a pen from the purse.\"]}, \"v_s1YjWVUu6pM\": {\"duration\": 197.09, \"timestamps\": [[3.94, 23.65], [27.59, 80.81], [81.79, 109.39], [128.11, 173.44]], \"sentences\": [\"A man with a beard is standing in a gym.\", \" A man in front of him is kneeling down in front of a weight bar.\", \" He bends down and lifts up the weight.\", \" He stands up and a woman kneels down and lifts the weight up.\"]}, \"v_bQGegLwVc8I\": {\"duration\": 57.38, \"timestamps\": [[0, 11.19], [11.19, 17.21], [18.36, 23.81], [23.81, 44.47], [44.75, 48.48], [48.2, 50.49], [50.2, 57.38]], \"sentences\": [\"A sequence of water aerobics and Olympic sport logos are shown on a white backdrop.\", \"After, two males are shown standing backwards preparing to jump off the diving board and land in the pool.\", \"The camera flashes to two two males doing a backwards toe touch flip off the diving board.\", \"As the males approach the next flip they walk up simultaneously to the board,jump high and and does a series of flips into the water.\", \"Once the return,the same trick is done but they are facing backwards instead.\", \"Their last trick consist of the same flips but there legs are elongated while they flip into the pool.\", \"Then a white back drop is shown with logos of the British and Bejing Olympic logos.\"]}, \"v_AxaksczuL80\": {\"duration\": 150.79, \"timestamps\": [[22.62, 52.02], [61.07, 140.24], [140.24, 150.79]], \"sentences\": [\"A man puts lotion on his face with a brush.\", \" He begins shaving his beard with a razor.\", \" Pictures of his shaved beard are shown.\"]}, \"v_nfjIQXyL7_Y\": {\"duration\": 11.75, \"timestamps\": [[0, 6.99], [6.99, 8.99], [9.17, 11.75]], \"sentences\": [\"We see a boy in camouflage sitting on the shoulders of another boy and hitting him in the head.\", \" A man on the play set walks to the boy and hits the boy camouflage in the head with a chair.\", \" the hit boy falls to the ground.\"]}, \"v_5UlxCwq-LOs\": {\"duration\": 123.46, \"timestamps\": [[0, 32.72], [32.72, 51.24], [51.85, 81.48], [78.4, 123.46], [116.67, 123.46]], \"sentences\": [\"man is running in a race track doing a big jump into the sand and Surpassing the other two marks.\", \" people in terraces are very exited and are clapping the man.\", \"  other man is ready to run through the race track and do a very high jump in the dust.\", \" man do the run through the racetrack and do the jump and celebrates holding his country flag.\", \" camcorders are taking pictures of the man with the flag.\"]}, \"v_l2drIA62T8w\": {\"duration\": 107.58, \"timestamps\": [[0, 16.14], [20.44, 55.4], [65.09, 107.58]], \"sentences\": [\"A woman is talking to the camera in front of a white background.\", \" She picks up an electric razor, talking about it.\", \" She uses the razor to cleanly groom a long haired dog.\"]}, \"v_qrvPTE0kb5U\": {\"duration\": 218.38, \"timestamps\": [[5.46, 205.28], [5.46, 34.94], [64.42, 158.33], [158.33, 205.28]], \"sentences\": [\"A man standing on a backyard patio deck in front of a man made fish pond stands with another man talking and playing croquet with mallets, croquet balls and a hockey stick.\", \"  The man is alone at first, holding a mallet, standing, and talking into a cell phone, until the other man arrives in the backyard and hands him a croquet ball.\", \"  The two men begin to play croquet in the backyard, hitting the ball with the mallet until one man goes and gets a hockey stick, the men play until one of them hits the ball into the man made fish pool.\", \"  The men continue to play until another ball is hit into the fish pool at which point one man gets on his knees to fish out all of the balls lost in the fish pool.\"]}, \"v_U6-j4rUn3dk\": {\"duration\": 169.07, \"timestamps\": [[0.85, 69.32], [50.72, 120.88], [92.99, 161.46]], \"sentences\": [\"A woman is seen kneeling before a potted plant while putting her hands all over it.\", \" She moves her hands around the plant while still looking over to speak.\", \" She grabs a pair of scissors and begins trimming the plant and looking to the camera.\"]}, \"v_cAhu8H9qsAI\": {\"duration\": 59.35, \"timestamps\": [[0, 3.56], [5.04, 28.19], [31.46, 59.35]], \"sentences\": [\"A bench is shown in a foyer.\", \" A young woman sits down with supplies in her lap.\", \" She bends down and puts on her shoes one at a time.\"]}, \"v_f6j6lb0AaxM\": {\"duration\": 134.56, \"timestamps\": [[0, 120.43], [14.13, 134.56]], \"sentences\": [\"A young child is seen hitting a ball over a net in a large gym with another girl walking in and out of frame.\", \" The boy continues hitting the ball over the net and moving up and down the court.\"]}, \"v_jNJnPpIvtTU\": {\"duration\": 211.95, \"timestamps\": [[4.24, 74.18], [66.76, 163.2], [135.65, 206.65]], \"sentences\": [\"A man and woman are seen speaking to the camera while people dancing around them.\", \" The two then step out onto a stage and begin dancing in the middle of a large group.\", \" The two continue dancing around while others watch and ends with people dancing together.\"]}, \"v_FiqkrBh1VOI\": {\"duration\": 156.57, \"timestamps\": [[0, 7.05], [14.87, 139.35], [35.23, 37.58], [116.65, 120.56], [139.35, 147.18], [147.96, 155.01]], \"sentences\": [\"We see a man and a woman hold hands while walking in a restaurant.\", \" The man and woman go to the dance floor and dance close together.\", \"  A standing man sits at a table.\", \" The dancing man spins the lady.\", \" The people finish dancing and the crowd claps.\", \" The sitting man stands and pushes out a chair.\"]}, \"v_JgAlMwG3fWw\": {\"duration\": 122.9, \"timestamps\": [[0, 122.9], [29.5, 47.93], [47.93, 70.05], [118.6, 122.9]], \"sentences\": [\"There are people on personal sailboats and they're holding onto their sails, leaning as far back as they can.\", \" A woman wearing a hat, wetsuit and a lifejacket is sitting on her sailboat and holding onto her sail and steering.\", \" The focus now shifts to a a man wearing a visor, wetsuit and a life jacket is also shown sitting on his sailboat holding onto his sail and steering it.\", \"A still shot picture is the closing outro after all the clips of people on sailboats are shown.\"]}, \"v_PsddM2OmOGo\": {\"duration\": 107.21000000000001, \"timestamps\": [[0, 67], [42.35, 71.83], [75.04, 106.67]], \"sentences\": [\"Various text is shown is steps across the video as well as a woman unrolling some paper and placing it along the wall.\", \" She places the paper along the wall and cuts the bottoms off.\", \" She sits comfortably in a chair and is seen holding several different wallpapers against the wall.\"]}, \"v_e-k2J91a954\": {\"duration\": 61.16, \"timestamps\": [[0.61, 61.16], [0.31, 61.16]], \"sentences\": [\"These girls are playing volleyball against another team, on the other side of the net.\", \" they are all wearing red and black outfits.\"]}, \"v_vTbeVoT1Gsg\": {\"duration\": 49.31, \"timestamps\": [[0.49, 5.92], [5.18, 34.76], [24.66, 49.31]], \"sentences\": [\"An athletic woman is seen standing ready holding a pole before a long track.\", \" She then throws the javelin off into the distance while other people watched in the distance.\", \" Her throw is shown several times again.\"]}, \"v_spJaetMCD20\": {\"duration\": 114.61, \"timestamps\": [[11.46, 85.96], [34.96, 85.96], [45.85, 85.96]], \"sentences\": [\"The young boy is shown jumping off of the white diving board and landing into the pool.\", \" Then another boy jumps off of the diving board backwards and lands into the water.\", \" Another boy then jumps off of the diving board and swirls around in the air.\"]}, \"v_z1tV0-C3IBw\": {\"duration\": 15.28, \"timestamps\": [[0, 8.02], [8.63, 15.28]], \"sentences\": [\"A man is mowing the lawn with a green mower.\", \" He is mowing at the side of the road between the street and his sidewalk, pushing the mower back and forth.\"]}, \"v_as7KugARkLE\": {\"duration\": 8.94, \"timestamps\": [[0, 8.94], [0, 8.4], [6.79, 8.4]], \"sentences\": [\"little girl is making balance in parallels and jump into a pool.\", \" woman is standing in the botom of the parallels.\", \" little girl wearing a green bdy is coming out the pool.\"]}, \"v_91XkPU8A5hs\": {\"duration\": 77.32, \"timestamps\": [[0, 55.29], [55.29, 72.68], [76.16, 77.32]], \"sentences\": [\"A woman in a black shirt is playing a violin.\", \" She puts the violin down in her lap.\", \" An ad comes on the screen with words.\"]}, \"v_EhjiQFHfDmY\": {\"duration\": 166.0, \"timestamps\": [[1.66, 164.34], [1.66, 9.13], [10.79, 76.36], [118.69, 164.34]], \"sentences\": [\"A woman introduces a boy onto a stage where he proceeds to perform an elaborate hula hoop routine.\", \"  A woman in a long orange skirt faces the camera and gestures for a young boy to come to the stage.\", \" The boy enters the stage and begins hula hooping with many white hula hoops while people on the side watch.\", \"  The boy ends in a floor hula hoop routine before the woman returns to the stage, shakes his hand, and he leaves the stage.\"]}, \"v_lq20hEghHtU\": {\"duration\": 187.55, \"timestamps\": [[0, 6.56], [23.44, 169.73], [169.73, 187.55]], \"sentences\": [\"A girl is sits on the back of a camel.\", \" A man in a black jacket leads the camel around in a circle.\", \" The girl gets off on a red platform and walks down the stairs.\"]}, \"v_OD7lx6blG9M\": {\"duration\": 28.42, \"timestamps\": [[0, 5.26], [5.97, 25.3], [25.72, 28.42]], \"sentences\": [\"A woman is in a kitching, flipping a pancake in a small skillet.\", \" She flips the pancake several times, almost dropping it.\", \" We see a broken egg, and a dirty counter.\"]}, \"v_XBBT8UvESiE\": {\"duration\": 142.53, \"timestamps\": [[0, 142.53], [0, 55.58], [55.58, 79.81], [79.81, 118.3], [118.3, 142.53]], \"sentences\": [\"Playboy and eshave presents a how-to video for shaving off a beard.\", \"  First you do some extraneous sexy moves.\", \"  Next you place a towel over the mans face, after dripping it seductively over yourself.\", \"  Then you brush on shaving cream, and you straddle him and shave him.\", \"  Last you clean him up and enjoy the clean-cut look.\"]}, \"v_R1Q-KP8GHFE\": {\"duration\": 175.57, \"timestamps\": [[0, 7.02], [7.02, 143.96], [57.06, 62.33], [72.86, 83.39], [97.44, 110.61], [125.53, 140.45], [140.45, 156.25], [157.13, 175.57]], \"sentences\": [\"We see the scoreboard of a racing game.\", \" The race starts ant the player is playing on jet skis.\", \" The player passes the red bridge.\", \" The player passes the cruise ship and zeppelin.\", \" The player passes the cliff with the lighthouse.\", \" The timer counts down from 10 and the race is finishes.\", \" We see the players record score.\", \" We see the ranking screen for the game, the level, and the option to change the difficulty.\"]}, \"v_4r6fQ5RvuGE\": {\"duration\": 96.78, \"timestamps\": [[0, 26.13], [20.32, 96.78]], \"sentences\": [\"A slow motion shot of people sitting in the water is shown as well as a surfer standing up on his board.\", \" The surfer rides out the entire wave while the camera follows him in slow motion.\"]}, \"v_O-YKLVm0ciI\": {\"duration\": 202.39, \"timestamps\": [[3.04, 54.64], [57.68, 151.79], [153.81, 199.35]], \"sentences\": [\"A large track is shown followed by people keeping score and athletes running down a track.\", \" Several people are seen running down the track into a sand pit while others watch on the sides.\", \" The audience continues to cheer and watch the athletes as they run down the track.\"]}, \"v_H91Dm6jaUPg\": {\"duration\": 145.92000000000002, \"timestamps\": [[0.73, 53.99], [48.15, 112.35], [103.6, 133.51]], \"sentences\": [\"A woman is seen speaking to the camera and leads in her holding up art work and laying paint down on a pallet.\", \" She mixes some colors with a paintbrush and begins putting the paint on the blank canvas.\", \" She continues to paint along the picture while showing off her tools and how she blends the colors.\"]}, \"v_cZWgq6ATrRI\": {\"duration\": 60.16, \"timestamps\": [[0, 53.85], [0, 53.24], [33.99, 53.85]], \"sentences\": [\"A woman is laying down on the ground.\", \" A white dog is laying on the ground.\", \" A woman does a hand stand and paints her face with her feet.\"]}, \"v_MjmDj36sVxM\": {\"duration\": 32.76, \"timestamps\": [[0, 5.9], [6.88, 30.63]], \"sentences\": [\"A woman is seen outside in a large field playing with a dog in several shots.\", \" Many more women are seen walking and playing with dogs followed by a man speaking to the camera and text across the screen.\"]}, \"v_ELlRh3gjpeE\": {\"duration\": 160.54, \"timestamps\": [[5.62, 79.47], [64.22, 158.94]], \"sentences\": [\"A group of men are seen lined up one after the other and then lead into them playing a soccer match.\", \" The men continue playing around the gym and stop to interact with one another in the end.\"]}, \"v_j8lH0saRXl4\": {\"duration\": 91.3, \"timestamps\": [[4.11, 76.69], [59.35, 60.72], [77.15, 85.37]], \"sentences\": [\"A child solves a cube puzzle while holding a basketball.\", \" A hand holding an object touch the ear of the boy.\", \" The boy stand and leave, then a naked man appears holding a rod.\"]}, \"v_gd7SO0TQ-sY\": {\"duration\": 120.31, \"timestamps\": [[0, 15.64], [15.64, 20.45], [25.87, 35.49], [25.87, 100.46], [100.46, 120.31]], \"sentences\": [\"woman are wearing bikinis and playng with a voleyball on seashore.\", \" woman is walking to the sea holding a surboard.\", \" women are in a beach playing voleyball.\", \" men are surfboarding in the sea.\", \" women are wearing bikini are playing beach voleyball.\"]}, \"v_FZk40J_drws\": {\"duration\": 151.3, \"timestamps\": [[0.76, 70.36], [71.11, 151.3]], \"sentences\": [\"Various shots of a person running after dark are shown ranging from the bridge onto a city as well as a long beach.\", \" The person keeps running through the city while the camera captures him from several angles.\"]}, \"v_Cgquef_qgcs\": {\"duration\": 6.78, \"timestamps\": [[0.17, 2.48], [1.86, 4.64], [4.27, 6.14]], \"sentences\": [\"A person is seen standing before a large track holding a pole.\", \" The person begins running down the track holding onto the pole.\", \" The man then jumps over the beam an onto a mat knocking it down.\"]}, \"v_UE2mDvY9rew\": {\"duration\": 15.84, \"timestamps\": [[0, 3.17], [3.09, 6.97], [6.89, 11.01], [11.01, 15.84]], \"sentences\": [\"Up on top of the roof there is some construction being done.\", \" The camera moves around so you can see all the different angles, it looks like the worker is on break he even has a drink like maybe he just had lunch.\", \" Some new shingles are being put in to replace whatever was there before.\", \" It looks like the job is half way complete and there is only a small portion that needs to be finished.\"]}, \"v_kyObhFkHrak\": {\"duration\": 7.36, \"timestamps\": [[0.07, 2.21], [2.13, 5.45], [4.86, 7.18]], \"sentences\": [\"A wrestler is seen walking into the ring against another wrestler.\", \" One then grabs the other and flips him down against the mat.\", \" Another clips is shown of the same move being performed.\"]}, \"v_tqqWTxQ5-kY\": {\"duration\": 50.02, \"timestamps\": [[1, 8.75], [8.75, 34.76], [34.51, 50.02]], \"sentences\": [\"A woman is seen sitting in a chair with a woman wearing gloves speaking to the camera.\", \" The woman then holds the girls nose in place and shoves a needle through it.\", \" The woman finishes the piercing and shows it to the girl in the mirror.\"]}, \"v_g4OlXwjgwSs\": {\"duration\": 155.09, \"timestamps\": [[6.2, 41.1], [6.2, 145.01], [114.76, 118.64]], \"sentences\": [\"A man in a red jersey spins around and throws a ball onto the field in front of him.\", \" People are standing around watching him.\", \" He launches the ball onto the field.\"]}, \"v_fZQclIXmRHE\": {\"duration\": 87.91, \"timestamps\": [[4.4, 25.93], [26.37, 46.15], [47.47, 56.26], [56.7, 83.08]], \"sentences\": [\"A man shows a plaid shirt while explaining.\", \" Then, the man puts the shirt on the board and iron the cuff, after he puts the shirt on a hanger.\", \" The man talks with a person that holds an iron.\", \" After, the man iron shirts on the iron boars, and then hung the shirt.\"]}, \"v_Sd08rsPTroE\": {\"duration\": 234.2, \"timestamps\": [[0, 10.54], [10.54, 48.01], [48.01, 57.38], [57.38, 77.28], [77.28, 124.12], [124.12, 172.13], [173.31, 181.5], [181.5, 226], [226, 234.2]], \"sentences\": [\"Words appear on the screen for a bit.\", \" A man starts talking to the camera.\", \"  He picks up a piece of equipment.\", \" He starts talking again to the camera.\", \" He is talking while sitting behind drums.\", \" He starts to play the drums.\", \" He continues to talk to the camera.\", \" He plays the drums again.\", \" He talks to the camera for a final time.\"]}, \"v_RpH774VD6Hw\": {\"duration\": 100.4, \"timestamps\": [[0, 17.07], [18.07, 64.76], [63.25, 100.4]], \"sentences\": [\"A large group of people are seen standing around an indoor track in front of a large audience and a man speaking wearing headphones.\", \" The players stand around talking to one another and one shoots a bow and arrow at a target.\", \" More people are seen shooting the bows followed by interviewers speaking and team mates reacting.\"]}, \"v_wpxozv4Yois\": {\"duration\": 173.78, \"timestamps\": [[0, 19.98], [22.59, 42.58], [50.4, 173.78]], \"sentences\": [\"A sped up view is shown of a road, then a family inside the car.\", \" They arrive at a ski resort together, riding the cars.\", \" They are then shown skiing on various snow covered hills and mountains.\"]}, \"v_mucFmOzqWW8\": {\"duration\": 104.82, \"timestamps\": [[0, 11.53], [11.53, 88.05], [88.05, 104.82]], \"sentences\": [\"A small child is running on the beach and the text above the blurred video reads \\\"Brynn goes to the beach\\\".\", \"The girl is now standing in front of an aquarium talking, and various clips of sea creatures are shown in their different habitats, and it flashes back and forth to the girl outside doing different activities on the beach like eating, or playing near the ocean.\", \"The focus goes back to the girl only in the aquarium, sitting by a very large aquarium and then she's walking amongst a lot of people through a tunnel that's an aquarium with fish and water all around the tunnel and even in the flooring.\"]}, \"v_gXdFGYPKClE\": {\"duration\": 67.9, \"timestamps\": [[0, 15.28], [15.96, 67.9]], \"sentences\": [\"A number of bikers line up at a race starting line.\", \" The race start and they race along an uneven course with spectators watching.\"]}, \"v_2mAKLFVhV9Y\": {\"duration\": 111.74000000000001, \"timestamps\": [[0.56, 33.52], [30.73, 82.68], [78.77, 107.82]], \"sentences\": [\"A woman is seen holding up a stick that leads into her running around a field.\", \" The camera follows around this woman as they play a game of field hockey with one another while running up and own the field.\", \" The girls continue to play the game and end by sticking their sticks up.\"]}, \"v_Y7VWbYGI0Oc\": {\"duration\": 24.29, \"timestamps\": [[0, 1.46], [1.46, 3.28], [3.16, 23.8]], \"sentences\": [\"A man is holding a string to a kite as he tries to get it to fly.\", \" the kite goes up and the man looks up at it.\", \" The kite is high in the sky and is seen against a bright sun.\"]}, \"v_VIROYxBPp70\": {\"duration\": 37.85, \"timestamps\": [[0, 9.84], [10.03, 33.5], [34.25, 37.85]], \"sentences\": [\"Two men are in a ring, kicking and blocking.\", \" They are performing kickboxing, with others practicing in the background.\", \" The man on the left brings his block down.\"]}, \"v_9Xrw-WOipSI\": {\"duration\": 74.1, \"timestamps\": [[0.74, 30.75], [18.89, 59.65], [47.79, 74.1]], \"sentences\": [\"A woman is seen speaking to the camera on a red carpet while holding sticks in her hands.\", \" The woman then begins hitting the balls around an area playing the game of crochet.\", \" The woman continues hitting the balls and ends by speaking to the camera.\"]}, \"v_qmKSDwVvxVk\": {\"duration\": 21.13, \"timestamps\": [[0, 5.71], [5.81, 7.08], [7.82, 11.41], [11.41, 15.32], [15.32, 21.13]], \"sentences\": [\"Scene opens to indicate a standing high jump practice on a particular date.\", \" A student athlete appears, dressed in casual shorts and a red t-shirt, and he proceeds to do practice jumps.\", \" The first jump is poor, and he knocks off the bar during the jump.\", \" He clears the bar on the second jump.\", \" The third jump is the most impressive, with the athlete clearing the bar again.\"]}, \"v_OqLUp37WKMA\": {\"duration\": 69.13, \"timestamps\": [[0.35, 5.18], [5.18, 32.83], [32.83, 67.74]], \"sentences\": [\"A soccer player is held back from kicking a soccer ball on a field by a referee on the field.\", \"  two teams play soccer in an outdoor field in front of an audience, the black and white team makes a goal and celebrates by smiling and clapping each others hands and waiving at the audience.\", \"  Several more goals are made by the black and white team on the soccer field before the scene fades.\"]}, \"v_E22gU_8tafI\": {\"duration\": 82.55, \"timestamps\": [[0, 0.41], [3.3, 11.97], [11.56, 31.78], [32.61, 53.66], [53.66, 74.29], [74.29, 80.07], [80.48, 82.55]], \"sentences\": [\"Two people stand together before an audience holding microphones.\", \" A man stretches and prepares to jump in front of the audience.\", \" The man runs forward and performs a jump.\", \" Another man runs and performs the jump in the same location.\", \" A third individual runs forward and performs a jump in the same location.\", \" The third individual's jump is shown again.\", \" The third individual high fives someone.\"]}, \"v_ayDMt_8KajY\": {\"duration\": 33.18, \"timestamps\": [[0, 16.26], [13.44, 33.18]], \"sentences\": [\"A man is seen moving his body back and fourth while others stand around him and leads into him throwing s shot put.\", \" A man grabs his ball to measure the throw and a young man steps up and also throws the shot put.\"]}, \"v_13Y47Uk_w1o\": {\"duration\": 150.09, \"timestamps\": [[0.75, 29.27], [29.27, 71.29], [71.29, 109.57], [109.57, 150.09]], \"sentences\": [\"Outside in a a town there are many people jumping around on pogo stick jumping shoes.\", \" They are having jumping and walking all down the street very casually having a great time.\", \" It's a gathering of people that are all bouncing around using these contraptions.\", \" Some of them are jumping on the bench and back down.\"]}, \"v_YDSSJ6Tp47g\": {\"duration\": 106.84, \"timestamps\": [[0, 23.5], [22.97, 78.52], [79.06, 106.84]], \"sentences\": [\"Shadows of people switch to three girls smiling at the camera and riding around on roller blades.\", \" The girls continue to skate around while switching to their faces and leads to one girl kissing another on the cheek.\", \" More shots of a girl are shown of her talking and ends with a close up of an eye.\"]}, \"v_mjbzWcSeiwQ\": {\"duration\": 88.75, \"timestamps\": [[0, 15.53], [12.87, 35.94], [34.61, 88.75]], \"sentences\": [\"A hockey team prepares for a game.\", \"  They skate out from the locker room and warm up.\", \"  After introductions, highlights of the game are shown.\"]}, \"v_F51cKkjt6tk\": {\"duration\": 31.42, \"timestamps\": [[0, 10.68], [9.74, 24.03], [20.89, 29.69]], \"sentences\": [\"A close up of a sink is shown followed by a girl looking into a mirror.\", \" The girl is then seen putting makeup on her eyes.\", \" She continues putting makeup on and stops to look at the camera.\"]}, \"v_EQNJfWiAS28\": {\"duration\": 157.82999999999998, \"timestamps\": [[0, 18.15], [19.73, 73.39], [78.12, 123.89], [124.68, 157.83]], \"sentences\": [\"A woman in a leather dress and hat dances in a public station.\", \" A man joins her, dancing side to side in a flamenco style dance.\", \" They continue dancing as a small crowd gathers to watch.\", \" They pose as they finish the dance and everyone claps.\"]}, \"v_F3jJVS3NHf8\": {\"duration\": 207.36, \"timestamps\": [[0, 30.07], [30.07, 59.1], [34.21, 123.38], [123.38, 177.29], [176.25, 207.36]], \"sentences\": [\"Several shots of ingredients laid out are shown followed by hands playing cups onto a plate.\", \" They put ingredients into a hot pot and stirs the ingredients into a bowl.\", \" He mixes them together into the pan and places them all into the oven.\", \" Finally he takes them out of the oven and places them on plates with sprinkled sugar.\", \" He lastly uses a knife to check and see if they are done.\"]}, \"v_SSTom962aPk\": {\"duration\": 85.13, \"timestamps\": [[0, 20.86], [20, 60.44], [56.61, 84.27]], \"sentences\": [\"A scene from an old tv show is shown with a man walking into a barber.\", \" A cop looks at him while the man cuts his hair and shaves it all off.\", \" The man looks back to the barber speaking and smiles.\"]}, \"v_7eR0DyDg7wQ\": {\"duration\": 53.33, \"timestamps\": [[0, 4.8], [6.13, 10.13], [11.73, 53.33]], \"sentences\": [\"An old style radio is sitting on a counter.\", \" A man hits the radio with a baseball bat.\", \" He walks into the kitchen and pours a cup of coffee as he gloats.\"]}, \"v_rze0k4LklN4\": {\"duration\": 142.59, \"timestamps\": [[0, 57.04], [56.32, 61.32], [96.96, 126.2]], \"sentences\": [\"A man is standing next to a bicycle on a pole.\", \" He moves two tires off a box.\", \" He starts assembling the bike and putting the tires on the bike.\"]}, \"v_B_PhHrBEeNI\": {\"duration\": 169.92000000000002, \"timestamps\": [[3.4, 76.47], [61.17, 155.48]], \"sentences\": [\"Several shots are shown of a band playing together on stage and a man speaking to the camera and playing the harmonica.\", \" The man continues speaking while playing the harmonica while still showing clips of the band playing.\"]}, \"v_jd609r5yKkI\": {\"duration\": 143.71, \"timestamps\": [[0, 46.71], [39.52, 106.34], [99.16, 140.12]], \"sentences\": [\"A small group of men are seen sitting on the ground playing instruments while one holds a child in his lap.\", \" The men play the drums continuously while looking to one another as well as off into the distance.\", \" The men continue to play with one another and end with one holding his arms up.\"]}, \"v_rvcSqYeUZ9s\": {\"duration\": 51.69, \"timestamps\": [[0, 20.42], [22.74, 51.69]], \"sentences\": [\"A couple of men are inside a boat, laughing and talking.\", \" They then pretend to fight before turning the camera off.\"]}, \"v_DxhdDYQkQU8\": {\"duration\": 53.64, \"timestamps\": [[0, 3.49], [4.29, 33.52], [33.52, 38.35], [39.42, 53.64]], \"sentences\": [\"A drawing is animated of a skateboarder.\", \" A police officer is shown performing spins and tricks on a skateboard in the middle of a street.\", \" Another man walks up and gives him a high five.\", \" We now see a man inside a skateboard shop, making a skateboard.\"]}, \"v_eA5ANAdLvFE\": {\"duration\": 121.84, \"timestamps\": [[0, 40.82], [40.82, 121.84]], \"sentences\": [\"An older man is seen pouring liquid into a pan with another man stirring around the mixture.\", \" The men help each other cook while laughing and smiling to the camera and end with an egg on a plate and the man holding up a hot plate.\"]}, \"v_mtU66vCjVVs\": {\"duration\": 69.36, \"timestamps\": [[0, 3.12], [3.12, 64.85], [64.85, 69.36]], \"sentences\": [\"A little girl in pink is standing in a room.\", \" The girl is playing her flute.\", \" The girl finishes her song and lowers her flute.\"]}, \"v_Xj1R81SK_zs\": {\"duration\": 95.47999999999999, \"timestamps\": [[0, 9.55], [10.03, 27.69], [34.85, 61.58], [63.97, 88.8], [89.27, 95.48]], \"sentences\": [\"A man throws a surfboard and meat on a fishing pole into the ocean.\", \" The man jumps in and fishes for a shark.\", \" The man the surfs being pulled by a shark.\", \" The man surfs into shore and high fives his friend and jumps around.\", \" We then see a black title screen.\"]}, \"v_Flh6nxGkf74\": {\"duration\": 35.85, \"timestamps\": [[0, 6.63], [6.81, 35.85], [7.71, 19.54], [19.72, 25.81], [25.63, 35.85]], \"sentences\": [\"There's a lady news anchor for ABC News standing next to a large flat screen television set, presenting and talking about a sand sculpting contest.\", \" There's a sand sculptor named Brian who is on a beach building animal figures out of sand.\", \" The sculptor is building a large reptile like figure and carving it with tools.\", \" He is being interviewed where he is talking about his skill.\", \" He continues working on his sand sculpture next to another woman who is also making sand sculptors.\"]}, \"v_SKMVLKmgxAw\": {\"duration\": 149.26, \"timestamps\": [[0, 9.7], [10.45, 34.33], [35.08, 100.75], [101.5, 149.26]], \"sentences\": [\"White text on a black screen appears.\", \" A man is shown seated, banging on a pair of bongo drums.\", \" He alternates between the drums as he plays a tune.\", \" There is a close up of the man banging the drums with his hands.\"]}, \"v_Ws5jA8cMKas\": {\"duration\": 182.46, \"timestamps\": [[0, 182.46], [10.04, 182.46], [36.49, 65.69], [66.6, 182.46]], \"sentences\": [\"A boy is getting his hair dried by a girl.\", \" Several people are in the bathroom with them.\", \" They laugh as they look in the mirror.\", \" A wet dog enters the room.\"]}, \"v_3JcvtncHhLw\": {\"duration\": 104.75, \"timestamps\": [[1.57, 35.61], [30.38, 79.08], [54.99, 98.46]], \"sentences\": [\"A person is shown in various shots close up as well as leaves and him stretching.\", \" The man is then seen running through a park while looking off into the distance.\", \" The man continues running and ends with text across the screen.\"]}, \"v_oKauZV0DHHk\": {\"duration\": 160.59, \"timestamps\": [[15.26, 25.69], [25.69, 50.59], [50.59, 79.49], [86.72, 160.59]], \"sentences\": [\"A woman is blow drying her hair.\", \" She rolls large curlers into her hair.\", \" She puts a pink bag on top of her head.\", \" She takes the curlers out of her hair.\"]}, \"v_-WrOnvkUTXg\": {\"duration\": 36.49, \"timestamps\": [[0, 36.49], [0, 31.02], [31.2, 36.49]], \"sentences\": [\"Two men are exercising in the park.\", \"  They are doing a small drill of jumping from a kneeling position and then from the standing position going back down to kneeling by rolling down with the balls of their feet and repeating the whole exercise.\", \"  The men finish the exercise and walk off screen.\"]}, \"v_hwGvU9Csz98\": {\"duration\": 19.39, \"timestamps\": [[0, 2.23], [2.62, 8.14], [9.11, 19.39]], \"sentences\": [\"a woman is riding a horses through a wooded area.\", \" Other people watch as she talks to them.\", \" He horse nods and neighs as the woman smiles.\"]}, \"v_QJfuxpFMn8s\": {\"duration\": 175.96, \"timestamps\": [[0, 24.63], [40.47, 69.5], [41.35, 119.65], [143.41, 165.4]], \"sentences\": [\"male chef is working in kitchen.\", \" the worker is washing the dishes.\", \" The other men are bringing in crates in the back while the man is washing dishes.\", \"  the dish washer looks at the camera in the end.\"]}, \"v_WT7ZtXsTslM\": {\"duration\": 69.17, \"timestamps\": [[0, 2.77], [5.19, 24.9], [25.25, 69.17]], \"sentences\": [\"a woman is shown creating a shape out of a cake.\", \"She creates the shape with icing and chocolate cake.\", \" She then uses colored icing, revealing a cake shoe.\"]}, \"v_dDmc6n79ek0\": {\"duration\": 110.74000000000001, \"timestamps\": [[0, 17.72], [17.16, 81.94], [81.94, 89.7], [89.7, 110.74]], \"sentences\": [\"A vintage, black ad white poor quality video plays and it shows a lot of hockey players on an ice rink just skating around.\", \"Finally there are two players face to face with a referee and a pick in the middle of them and then a game begins with multiple different views and multiple different people hitting the puck and skating.\", \" A man is quickly skating across the rink and when he collides with an opposing player he hits him very hard with his stick until the man falls to the rink.\", \"The man gets up and the fast paced game continues on and ends with men manually smoothing out the ice.\"]}, \"v_0NgQr2-AieQ\": {\"duration\": 59.05, \"timestamps\": [[0.59, 27.16], [22.14, 56.69]], \"sentences\": [\"A close up of a baby is seen when a person begins to wipe down the baby with a rag.\", \" The person continues to wipe down the baby as he laughs and looks up to the camera.\"]}, \"v_x_FAc0KqMVw\": {\"duration\": 119.37, \"timestamps\": [[0, 6.57], [5.97, 11.94], [11.34, 51.93], [51.33, 79.38], [79.38, 96.69], [98.48, 119.37]], \"sentences\": [\"Two men are sitting on stools with guitars in their laps with captions.\", \" \\\"Hello, We are guitar unit \\\"OKABAYASHI\\\".\", \"  The men talk about the guitar.\", \" The man on the left describes his guitar.\", \" The men begin to play the guitars.\", \" They finish the song and look at the camera.\"]}, \"v_qVHazdU4_vY\": {\"duration\": 164.97, \"timestamps\": [[0, 14.85], [18.15, 71.76], [80.01, 164.97]], \"sentences\": [\"A woman is sitting cross legged on the floor.\", \" She talks as she stretches her legs.\", \" She reaches her legs around in a circle, stretching her calves.\"]}, \"v_Vg043D46E7Q\": {\"duration\": 35.69, \"timestamps\": [[0, 29.8], [2.68, 5.18], [30.69, 34.8]], \"sentences\": [\"A person ski on a hill wearing dark winter clothes.\", \" The person ski on the snow, but only the feet and sometimes the face is show.\", \" A woman sled on a inflated sled on the snow.\"]}, \"v_iA8ylJWzzVc\": {\"duration\": 196.02, \"timestamps\": [[0, 3.92], [4.9, 69.59], [70.57, 132.32], [133.3, 182.3], [182.3, 188.18], [189.16, 196.02]], \"sentences\": [\"We see a Christmas tree on an opening screen.\", \" We see a man pushing striped tulle into the tree.\", \" the man then adds gold lame fabric stuck in at various points behind the mesh.\", \" the man the adds a lime green ribbon in bows.\", \" We then see the finished product.\", \" We see a closing screen.\"]}, \"v_YeZz5PZiiwU\": {\"duration\": 174.87, \"timestamps\": [[0, 40.22], [40.22, 45.47], [45.47, 55.96], [55.96, 118.04], [118.04, 174.87]], \"sentences\": [\"A group of people get into a van for a road trip.\", \"  They are in a hotel room where they are watching tv and relaxing.\", \"  Next they are at a conference room with many other people.\", \"  There is a large group of people playing foosball competition.\", \" There are stills of the group on the trip.\"]}, \"v_EHianByJXXM\": {\"duration\": 28.24, \"timestamps\": [[0, 4.66], [4.66, 12], [12.14, 23.44], [12.14, 28.24]], \"sentences\": [\"A man is riding on a brown horse.\", \" He jumps off the horse and grabs a calf.\", \" The calf runs away from the man.\", \" He chases after the calf and throws it on the ground.\"]}, \"v_HpjomKhpIdk\": {\"duration\": 63.48, \"timestamps\": [[0, 2.86], [27.62, 32.06], [55.87, 56.82]], \"sentences\": [\"A large moldy hole is seen on the roof of a house.\", \" A man is on the roof holding a long piece of wood.\", \" A man sits on the roof.\"]}, \"v_QoTM5tmcJeI\": {\"duration\": 31.09, \"timestamps\": [[0, 4.35], [5.13, 27.05], [27.98, 31.09]], \"sentences\": [\"A group of small children play foosball at a tiny child table.\", \" They try to pick the balls they are dropping off the floor, and continue playing.\", \" The kids look confused as they play.\"]}, \"v_FSe9tVYHgBc\": {\"duration\": 84.81, \"timestamps\": [[0, 5.94], [5.94, 7.21], [7.63, 16.11], [16.54, 18.66], [19.08, 24.17], [24.6, 27.99], [28.84, 52.16], [49.19, 58.52], [75.91, 80.15]], \"sentences\": [\"A man in sunglasses is tallking to the camera.\", \"  A man with long hair turns around.\", \"  A fax machine is shown receiving a fax.\", \"  Cars are crossing over a long bridge over the blue water while the men still talk.\", \"  A man with bunny ears talks to a man with a red shirt.\", \"  A man in a helmet drinks from a bottle of water.\", \"  Two men in red suits jump off of the bridge together.\", \"  The people on the bridge cheer on the jumpers.\", \"  The man with the bunny ears talks to the camera.\"]}, \"v_3HYQV_zu2RA\": {\"duration\": 152.21, \"timestamps\": [[0, 152.21], [7.61, 152.21], [68.49, 152.21]], \"sentences\": [\"A man is standing up talking.\", \" Another man is sitting down on an exercise machine.\", \" He pulls on a rope and begins working out on the machine.\"]}, \"v_ZYcZZJ0XItM\": {\"duration\": 140.39, \"timestamps\": [[1.4, 67.39], [59.66, 140.39]], \"sentences\": [\"The video leads into several clips of a person performing various jumps off of a high dive.\", \" The diver performs several more flips and tricks while people stand around him on the side and watch.\"]}, \"v_dfgwl-_IMic\": {\"duration\": 31.97, \"timestamps\": [[0, 3.84], [3.84, 6.71], [6.71, 14.71], [14.55, 24.62], [24.94, 31.97]], \"sentences\": [\"A man with a silver helmet on and a cup of coffee in is hand is running down the street.\", \"As the camera pans down,it becomes visible that he has on Kangaroo shoes.\", \"He keeps running through the neighborhood and a man working under the hood of his cars turns and looks at him in awe.\", \"After,another man appears with them on and he is running in the street as if he is using it as a form of transportation for work.\", \"Shortly,everybody in the street appears to have them on and the brand of Zurich comes across the screen.\"]}, \"v_FQkvwPpDomw\": {\"duration\": 27.49, \"timestamps\": [[0, 3.16], [3.16, 7.97], [7.84, 13.06], [13.75, 27.49]], \"sentences\": [\"A man standing outside in the snow, wearing snow gear with a shovel.\", \" He has to get all the snow off of the car, from the windows and everything.\", \" Once he is done getting the snow off the car he moves the car away.\", \" He then starts to shovel the snow off the side walk and path way, once he is done he gets a cigarette and enjoys a puff outside.\"]}, \"v_5hXH-TorJ6M\": {\"duration\": 70.33, \"timestamps\": [[0, 12.66], [12.66, 26.38], [26.38, 53.45], [53.1, 70.33]], \"sentences\": [\"A man with a button down shirt behind a bar is showing how to make some mixed drinks.\", \" He starts to pour into a little silver cup and then into the glass.\", \"  He adds some more stuff into the glass and then he stirs its up with a long spoon.\", \" Then he goes ahead and pours into and glass cup and adds a straw.\"]}, \"v_9XmzbuByY_E\": {\"duration\": 49.67, \"timestamps\": [[0, 8.44], [8.44, 21.11], [21.11, 27.57], [27.57, 38.24], [38.24, 49.67]], \"sentences\": [\"A reporter is standing with two women further behind him and the banner below him indicates that he's a reporter and his name is ALEX ADEYANJU.\", \" The women are now the focus and they are playing at a shuffleboard taking turns hitting the disc.\", \" A close up shot of one of the women begins as she's talking and the banner indicates she's a shuffleboard player by the name of FRIEDA GALLAWAY.\", \" Now a man is shown talking to a reporter and the banner below indicates that his name is BILL ROMER and that he's also a shuffleboard player.\", \"A newspaper clip is shown and the video ends with the first reporter playing shuffleboard.\"]}, \"v_TDZsE3yValQ\": {\"duration\": 19.58, \"timestamps\": [[0, 8.03], [8.52, 16.15], [16.74, 19.58]], \"sentences\": [\"A girl is running in slow motion down a track.\", \" She takes a huge leap into the air.\", \" She then lands in a big sand pit.\"]}, \"v_M6FdaEstXbI\": {\"duration\": 114.06, \"timestamps\": [[0, 3.99], [3.99, 11.98], [11.98, 19.39], [19.39, 25.09], [25.09, 27.37], [27.37, 61.02], [61.02, 66.72], [66.72, 77.56], [77.56, 87.25], [87.25, 95.24], [95.24, 100.37], [100.37, 107.21], [107.21, 114.06]], \"sentences\": [\"Paint splashes are on the screen with mylorraine spelled out.\", \" A man is attaching metal stilts to his legs and a helmet to his head.\", \" He is jumping and doing tricks with the metal stilts.\", \" He is marching in place on the stilts.\", \"  He jumps over a bench.\", \" He is being interviewed about the stilts while clips are being shown on ways to use the stilts.\", \" He is walking normal on the stilts.\", \" The man is talking again.\", \"  There are more scenes of him bouncing around on the stilts.\", \"  A group of children and adults are playing on the stilts.\", \" An instructor is helping gear up a man with the stilts.\", \"  The student is being interviewed.\", \" The clip ends with paint splash.\"]}, \"v_3FZ47muWIYA\": {\"duration\": 160.68, \"timestamps\": [[8.03, 147.02], [21.69, 130.96]], \"sentences\": [\"A video is shown on the importance of washing your hands.\", \"  Kids talk about their experiences.\"]}, \"v_jed5hUKCCk0\": {\"duration\": 154.04, \"timestamps\": [[0, 10.01], [10.01, 16.17], [10.01, 139.41], [33.89, 90.11], [90.88, 140.18], [122.46, 129.4], [140.18, 144.8], [145.57, 154.04]], \"sentences\": [\"Ornaments hang from a Christmas tree.\", \" A man cuts a Christmas tree in a living room.\", \" A family of five people decorate a Christmas tree.\", \" We see them adding the lights to the tree and stringing garland.\", \" The family adds ornament to the tree.\", \" We see the ornaments on the tree up close as kids add new ornaments.\", \" We see the kids taking photo's in front of the stairs.\", \" the kids then take photo's in front of the Christmas tree.\"]}, \"v_S0Kl5D5mrvQ\": {\"duration\": 50.57, \"timestamps\": [[0, 29.59], [29.33, 50.57]], \"sentences\": [\"A person is standing in the bathroom with a green and yellow glove on their right hand and begins cleaning the sink with a sponge.\", \"A man then appears in what seems to be his bedroom and begins playing the guitar and the video then goes back to the person cleaning the sink.\"]}, \"v_BH-kBRn84i8\": {\"duration\": 22.11, \"timestamps\": [[0, 15.25], [14.81, 22.11]], \"sentences\": [\"A man wearing a hat is seen pushing a lawn mower across a yard of grass while moving back and fourth.\", \" He continues cutting the grass and looking back and motioning to the camera.\"]}, \"v_bH6KL0ai3Ww\": {\"duration\": 55.66, \"timestamps\": [[1.11, 32.84], [21.43, 53.71]], \"sentences\": [\"A person is seen climbing up on top of a piece of exercise equipment and performing a gymnastics routine.\", \" The person continues spinning around on the equipment and ends by jumping down on the side.\"]}, \"v_fid8KlncwTA\": {\"duration\": 176.01, \"timestamps\": [[0, 176.01], [0, 45.76], [46.64, 99.44], [99.44, 176.01], [131.13, 139.93], [145.21, 176.01], [168.09, 176.01]], \"sentences\": [\"A man is video recording a group of people riding on horses.\", \" The group is walking along a paved road in the Caribbean.\", \" They continue riding through a grassy path with flowered bushes on the sides.\", \" Soon the group comes to an area with mountains in the background.\", \" At one point, a truck is riding alongside them.\", \" The group then comes to a beach area, with mountains in the background.\", \" The video ends with a slide showing the director's name.\"]}, \"v_lKi-hl_KGJ4\": {\"duration\": 207.17000000000002, \"timestamps\": [[0, 207.17], [20.72, 207.17], [48.68, 207.17], [118.09, 207.17]], \"sentences\": [\"Several women stand in a room.\", \" A woman on a platform leads them in an exercise.\", \" The hop back and forth and move their arms.\", \" A small kid enters and spins around a pole.\"]}, \"v_IQ4SUx8ythk\": {\"duration\": 60.12, \"timestamps\": [[0, 12.02], [12.62, 39.68], [33.97, 58.31]], \"sentences\": [\"A large group of people are seen standing on a beach as well as exercising and sipping a drink.\", \" A woman is seen speaking to the camera while people rub in lotion and lay on the beach.\", \" Several more shots are shown of people enjoying the beach life while the woman continues to speak.\"]}, \"v_gVMG_FHDrvo\": {\"duration\": 7.85, \"timestamps\": [[0, 1.73], [1.69, 3.57], [3.61, 7.85]], \"sentences\": [\"A toy wrestling man stands in a toy ring and another is on the outside of the ring in white pants.\", \" The one in white jumps in the ring on the one in red.\", \" Both fall to the ground and lay there.\"]}, \"v_UJwWjTvDEpQ\": {\"duration\": 131.05, \"timestamps\": [[0, 104.19], [104.19, 121.88], [121.88, 131.05]], \"sentences\": [\"A kid is talking while holding a guitar.\", \" He begins to play the guitar.\", \" He talks to the camera again.\"]}, \"v_GV_BDNmUiLY\": {\"duration\": 124.85, \"timestamps\": [[6.24, 13.11], [19.35, 27.47], [32.46, 43.7], [48.07, 55.56], [56.18, 58.06], [63.68, 104.88], [105.5, 115.49]], \"sentences\": [\"A woman spreads water with a hose in a boat.\", \" People sail in a boat in the ocean.\", \" Men compete in sailing boats while standing on the border of the boat.\", \" Other people sails standing on sail surfboards.\", \" Men sail on boats that have c-kites.\", \" Several adds are displayed in the screen.\", \" Women and men receive medals in a podium.\"]}, \"v_AJ15GW-sS5M\": {\"duration\": 177.98, \"timestamps\": [[0, 174.42], [53.39, 56.95], [83.65, 94.33], [108.57, 124.59], [152.17, 157.51], [174.42, 177.98]], \"sentences\": [\"We see a various men performing high jumps on different tracks.\", \" We see the man in green from the front and up close.\", \" We see a man in black from the front.\", \" We see the man in white jump, we see a score and he jumps again and falls.\", \" We see a man's foot on the track.\", \" We see the subscribe ending screen.\"]}, \"v_dwCeFVAaP9c\": {\"duration\": 144.27, \"timestamps\": [[0, 57.71], [5.05, 17.31], [62.76, 144.27]], \"sentences\": [\"man is kneeling on the floor holding carpet tiles.\", \" man takes out the plastic from the plastic tiles and put them in the floor.\", \" man is sitting in the floor and pour a red liquid in the capet tile and a cleaning liquid and cleans the small carpet.\"]}, \"v_z6U8CyJRNXw\": {\"duration\": 166.36, \"timestamps\": [[0, 47.41], [49.08, 113.13], [113.96, 148.06], [153.05, 166.36]], \"sentences\": [\"A man riding a surfboard is attached to a long rope as he goes up and off of several ramps.\", \" The men show off painted mustaches on their fingers, then go back to performing stunts on the surfboards.\", \" They fly into the air, spinning and landing.\", \" It ends with a duck waddling onto the beach.\"]}, \"v_5ptxyeHlcwM\": {\"duration\": 91.07, \"timestamps\": [[0, 39.62], [37.34, 91.07]], \"sentences\": [\"Two men are seen speaking to one another in front of a large bowling alley.\", \" Several shots are shown of one man throwing a ball down the lane and the men speaking about proper form.\"]}, \"v_dTwH5Fzu4eE\": {\"duration\": 36.02, \"timestamps\": [[0, 5.76], [6.66, 31.15], [32.05, 36.02]], \"sentences\": [\"A group of women are standing inside a gym.\", \" An instructor talks to them as they dance.\", \" They are performing several ballet dance moves.\"]}, \"v_fCLnOf-YjEI\": {\"duration\": 116.5, \"timestamps\": [[0, 19.8], [20.39, 29.71], [23.88, 30.29], [36.11, 42.52], [43.1, 65.82], [96.11, 101.93]], \"sentences\": [\"A person in a gray jacket and no shoes is shoveling snow from a driveway.\", \" Another person behind them is holding a snow shovel.\", \" A black truck pulls into a drive way.\", \" Two people in coats walk up the street.\", \" The person steps into the street without shoes to talk to the people.\", \" They lift their feet up to show the people.\"]}, \"v_nEOpfvJ7g_g\": {\"duration\": 25.96, \"timestamps\": [[0, 5.45], [5.58, 17.39], [17.39, 25.96]], \"sentences\": [\"Two men dressed in white shirt and different bottoms are standing in a room with three walls and a hard wood floor.\", \"The man in  the front continues bouncing the ball up and down before finally hitting it against the wall.\", \"Both males go back and forth hitting the ball and filling in for each other as the game continues.\"]}, \"v_LGt_KpgXymU\": {\"duration\": 225.14, \"timestamps\": [[0, 41.65], [28.14, 178.99], [176.74, 225.14]], \"sentences\": [\"Various shots of landscapes leads into a woman standing on the beach and playing a violin.\", \" The camera captures her from several angles playing the instrument as well as looking off into the distance.\", \" In the end she is seen speaking to the camera in an empty room while smiling.\"]}, \"v_UxR9fdD0Vzw\": {\"duration\": 129.8, \"timestamps\": [[0, 20.77], [20.77, 66.2], [66.2, 129.8]], \"sentences\": [\"A gardener is shown trimming very tall bushes with a gas powered trimmer that he plugs in and gets ready.\", \" He turns a few dials and gets to cutting some more of the surrounding bushes.\", \" He trims up and down the length of them with precision and accuracy.\"]}, \"v_n25mDmcBC6E\": {\"duration\": 185.64, \"timestamps\": [[0, 185.64], [0.93, 185.64], [0, 184.72]], \"sentences\": [\"A woman is standing up playing a flute.\", \" She is dancing while playing the flute.\", \" She is wearing a black shirt.\"]}, \"v_Zl3YebXhXC0\": {\"duration\": 16.3, \"timestamps\": [[0, 16.3], [5.46, 6.85]], \"sentences\": [\"A boy blows dead leaves using a blowing machine in the driveway of a house.\", \" A man sits on the porch of the house.\"]}, \"v_u-X4YO91V78\": {\"duration\": 168.87, \"timestamps\": [[0, 13.51], [14.35, 27.86], [28.71, 146.92], [148.6, 168.87]], \"sentences\": [\"Some people are intertubing in river rapids.\", \" Water droplets have sprayed onto the camera lens.\", \" The rapids increase, and the people get out of the water to jump back in.\", \" They all go downstream together.\"]}, \"v_SymvoBsqt3Y\": {\"duration\": 72.49, \"timestamps\": [[0, 69.59], [0, 67.42], [67.42, 72.49]], \"sentences\": [\"Five people, four men and one woman, in baseball hats and shorts are standing in row in a parking lot holding large drums, bouncing and playing them.\", \" All of the people are holding up their drumsticks and then they all begin playing and bouncing in rhythm each drumming to their own beat.\", \" All of the drummers stop and hold their drumsticks in the air.\"]}, \"v_ClW3USojCoE\": {\"duration\": 176.1, \"timestamps\": [[0, 169.94], [95.98, 105.66], [107.42, 117.99]], \"sentences\": [\"A boy and an old man speaks in an indoor climbing facility while people climbs on the fake rocks, and sometimes display the climbing facility information.\", \" A man does exercise in a gym, then people climb in the climbing facility and others are shown doing yoga.\", \" A woman helps a child put the ropes to climb, then the child speaks.\"]}, \"v_6b8h8ztnj9Q\": {\"duration\": 236.29, \"timestamps\": [[0, 46.08], [28.35, 134.68], [90.97, 233.92]], \"sentences\": [\"A large group of people are seen sitting on exercise equipment in a room.\", \" The people grab the machine and row themselves back and fourth on the machine.\", \" The continue to ride around while the camera follows them and ends with them standing up.\"]}, \"v_6O5UcjQMwoQ\": {\"duration\": 36.42, \"timestamps\": [[0, 6.56], [8.19, 23.31], [23.67, 36.42]], \"sentences\": [\"a man is seated inside a building.\", \" He is quickly playing the drums and cymbals.\", \" He continues playing for the duration of the video.\"]}, \"v_moGDCWEoaK8\": {\"duration\": 95.16, \"timestamps\": [[0, 2.38], [0, 95.16], [63.28, 72.32], [0, 93.25]], \"sentences\": [\"man is running in a soccer field making a pas with a lacrosse pole.\", \" men are running in a soccer field playing hurling.\", \" player is ready to make a free shot to the porter's lod and men around runs from it.\", \" a lot of people are sitting on stands watching the game.\"]}, \"v_P_zz379qSuo\": {\"duration\": 123.93, \"timestamps\": [[0, 16.73], [22.93, 97.9], [100.38, 123.93]], \"sentences\": [\"A group of people walk down a pier to a beach.\", \" They tie a rope between two concrete pillars.\", \" They use the rope to balance and bounce.\"]}, \"v_70rKlFJdkKw\": {\"duration\": 147.66, \"timestamps\": [[0, 147.66], [27.32, 82.69], [31.01, 65.71], [66.45, 101.14], [87.86, 93.76], [110.74, 116.65], [124.03, 147.66]], \"sentences\": [\"We see kids playing on a swing set.\", \" A little kid pushes another one a swing.\", \" The girl in pink jumps on a swing and swings.\", \"  The girl in pink stops swinging to push two other kids.\", \" The kid in blue hops on a swing.\", \" The girl in pushes him on her swing.\", \" The girl in pink takes turns pushing the other kids.\"]}, \"v_z8VqGGu5vPc\": {\"duration\": 215.04, \"timestamps\": [[0, 31.18], [33.33, 66.66], [73.11, 141.93], [155.9, 215.04]], \"sentences\": [\"A couple of teenaged boys are using sponges and soap to wash a black car while talking to the camera.\", \" The boy is describing his actions as he goes.\", \" They rinse all the soap off using a hose.\", \" A man gets into the clean car and drives away as the boy stops to talk and starts washing the next car.\"]}, \"v_2VTEseqA5SA\": {\"duration\": 31.28, \"timestamps\": [[0, 2.5], [3.44, 21.89], [22.68, 31.28]], \"sentences\": [\"A man is standing inside a workshop.\", \" He leans over, welding a piece of metal.\", \" Sparks fly as he welds.\"]}, \"v_Jd0hvO7erXM\": {\"duration\": 211.53, \"timestamps\": [[3.17, 97.31], [72.98, 206.25]], \"sentences\": [\"The video leads into several clips of large men and leads into many shots of men arm wrestling.\", \" The video continues on with men arm wrestling and hugging on another followed by yet more people arm wrestling.\"]}, \"v_fjN9Qe237bw\": {\"duration\": 99.38, \"timestamps\": [[0, 25.34], [25.34, 99.38]], \"sentences\": [\"men are standing in front of pool tables  getting reay to make a shot.\", \" man do the shot and enters a ball and keep playing doing shots in the table.\"]}, \"v_l-gHWS0oXiw\": {\"duration\": 106.63, \"timestamps\": [[5.33, 101.3], [26.12, 54.38], [70.91, 85.83]], \"sentences\": [\"Volunteers spread mulch over a playground area.\", \" Volunteers spread wood chips over the playground.\", \" A group of volunteers pick up trash along a wooded creak area.\"]}, \"v_-DzTAnE1t3w\": {\"duration\": 149.84, \"timestamps\": [[0, 68.18], [68.18, 79.41], [79.41, 105.64], [105.64, 149.84]], \"sentences\": [\"women are in a living room in front of a christmas tree assembling and decorating it and clowning around.\", \" women are serving egg nog on cups and toasting.\", \" women are decorating the tree putting te ornaments on the leaves.\", \" women are sitting mixing a white dust with water in a bow to ake fake snow.\"]}, \"v_C0gGikr-Dw8\": {\"duration\": 65.23, \"timestamps\": [[0.33, 64.57], [0.33, 12.72], [13.05, 63.92]], \"sentences\": [\"A child attempts to break a pinata by hitting it with a stick over and over again.\", \"  A child stands poised to hit a large, round pinata, designed to look like a giant soccer ball.\", \"  The boy begins to hit the pinata with the stick he is holding as the adults surrounding him look on and keep the pinata balanced in the air so the boy can gather leverage.\"]}, \"v_mio5dnRbo4w\": {\"duration\": 182.01, \"timestamps\": [[0, 7.28], [8.19, 36.4], [36.4, 46.41], [47.32, 70.07], [71.89, 123.77], [124.68, 135.6], [138.33, 144.7], [145.61, 177.46], [178.37, 182.01]], \"sentences\": [\"We see a man walk to a car with a pressure washer.\", \" The man sprays the car with water.\", \" The man sprays the car with a solution.\", \" The man then sprays a cleaner on the car.\", \" The man uses a brush on the water hose to clean the car.\", \" We see the man add a brush and washes this rims.\", \" The man rinses the car with the pressure washer.\", \" He adds a cartridge and sprays another solution on the car.\", \"  We see the car sitting still.\"]}, \"v_42XFIWVIWpw\": {\"duration\": 172.69, \"timestamps\": [[0.86, 8.63], [9.5, 10.36], [11.22, 168.37], [54.4, 55.26], [140.74, 158.01], [160.6, 166.64], [169.23, 172.69]], \"sentences\": [\"A lady approaches a court with a metal stick in hand.\", \" The lady holds a pose on the court's floor.\", \" The lady dances while twirling a metal stick.\", \" The lady does some flips across the court.\", \" The lady twirls the metal stick around her upper body.\", \" The lady does a pose on the ground and turns her legs.\", \" The lady leaves the court.\"]}, \"v_AeefhelpxGA\": {\"duration\": 69.89, \"timestamps\": [[0, 69.89], [40.89, 56.96], [55.91, 62.2]], \"sentences\": [\"Two mucuainas plays tam-tam on the street while a man sits on a bench on back.\", \" A woman with a child holding a dog walk behind the musicians and on front the man sit on the bench.\", \" Also, a boy on a bike pass behind the musicians.\"]}, \"v_vopKTwCiHrA\": {\"duration\": 162.01, \"timestamps\": [[0, 43.74], [44.55, 54.27], [55.08, 121.5], [122.31, 133.65], [134.46, 162.01]], \"sentences\": [\"A person stacks cakes on top of each other and cuts away parts to shape the cake.\", \" The person spreads a jam on the cake.\", \" The person cuts a jack o lantern face in orange fondant and lays it on top of black fondant on the cake.\", \" The person shapes and adds a green stem to the top of the cake.\", \" We then are shown the finished cake.\"]}, \"v_ZFJkIiqOErk\": {\"duration\": 124.18, \"timestamps\": [[0, 16.14], [17.39, 60.23], [64.57, 124.18]], \"sentences\": [\"A girl tries to catch a ball while the rest of the kids watch.\", \" A boy gets the ball and begins throwing it at the other team, hard.\", \" They continue for the remainder of the clip.\"]}, \"v_IqRN2sOQ7Mo\": {\"duration\": 187.71, \"timestamps\": [[0, 19.71], [20.65, 25.34], [27.22, 33.79], [35.67, 67.58], [70.39, 152.05]], \"sentences\": [\"A beach is seen from above with many people seated on the shore.\", \" Buses drive along the road with passengers.\", \" Children walk along a dirt road on the side of buses.\", \" Children talk while holding kites that they made in their hands.\", \" Thousands of children play on the beach and fly their kites in the air.\"]}, \"v_LZEiFNEAyyw\": {\"duration\": 127.83, \"timestamps\": [[9.59, 69.03], [71.58, 127.83]], \"sentences\": [\"A woman is seen spreading lotion all over her face and leads into apply foundation around her eyes.\", \" She then puts lipstick on her lips and rubs more lotion into her skin.\"]}, \"v_1buoiCgXG1Q\": {\"duration\": 22.83, \"timestamps\": [[0, 3.2], [3.2, 9.02], [9.02, 14.84], [14.84, 22.83]], \"sentences\": [\"Outside in the water a man is kayaking during on some heavy waves.\", \" People are standing by recording and watching him as he kayaks through.\", \" The water is flowing pretty quickly down stream.\", \" The man on the kayak topples over into the water and he struggle to get back on board.\"]}, \"v_NK5FWZ2BOQs\": {\"duration\": 92.78999999999999, \"timestamps\": [[0, 2.78], [2.78, 86.76], [86.76, 92.79], [0, 92.79]], \"sentences\": [\"A man and a dog are outdoors and waiting for their turn to play on a fenced in green field.\", \" The man and the dog runs onto the field and he throws the frisbee a far distance and the dog runs and fetches it, then returns it back to the man and they repeat the process 6 times.\", \" When they are done, another man runs to them and hands the man a leash and he leashes his dog.\", \"The whole time there are people on the sidelines watching them and taking pictures.\"]}, \"v_25Wxe9TQzY8\": {\"duration\": 6.04, \"timestamps\": [[0, 6.04], [0.72, 1.39], [1.36, 6.04]], \"sentences\": [\"The man is parasailing in the water.\", \" The surfer jumped on the water.\", \" The parasailer stopped after he landed on the water.\"]}, \"v_I3BWhaDRxGk\": {\"duration\": 34.95, \"timestamps\": [[0, 33.9], [22.89, 34.95]], \"sentences\": [\"Army and navy people participate in a tug of war.\", \"  The navy seems to win and people cheer.\"]}, \"v_CRzaKuaCXr8\": {\"duration\": 127.52, \"timestamps\": [[0, 127.52], [18.49, 21.68], [33.79, 43.36], [48.46, 54.2], [73.96, 78.43], [84.8, 87.99]], \"sentences\": [\"A man and a woman are dancing together.\", \" The man dips under the woman's arm.\", \" The man has his hand on the woman's waist.\", \" The man puts his hand on his waist.\", \" The man hits his head accidentally.\", \" A person hits the item hanging from the roof.\"]}, \"v_QN6YFgrx_Ig\": {\"duration\": 158.69, \"timestamps\": [[0, 26.98], [32.53, 92.04], [95.21, 158.69]], \"sentences\": [\"A man is wearing a red sweat suit inside a room.\", \" He sits on the floor, showing several break dancing moves.\", \" He continues instructing in the positions and moves.\"]}, \"v_oobYvNJU5ko\": {\"duration\": 70.31, \"timestamps\": [[0.7, 58.71], [58.71, 70.31]], \"sentences\": [\"A male stylist put rollers on the hair of a woman using a brush and a hair dryer.\", \" After, the male stylist fix the hair of the woman using both hands.\"]}, \"v_wnsy_i-IXpM\": {\"duration\": 146.86, \"timestamps\": [[0, 17.62], [19.09, 146.86], [59.48, 132.17], [77.83, 80.04], [77.83, 146.86], [121.89, 129.97]], \"sentences\": [\"A person is standing in the snow in front of a fire.\", \" He snowboards down the hill away from people trying to shoot him.\", \" He jumps over several jumps.\", \" They get on a ski lift.\", \" He continues snowboarding down a hill away from people trying to shoot him.\", \" He gets to the bottom and stops.\"]}, \"v_dEG-OgH9zmU\": {\"duration\": 94.32, \"timestamps\": [[0, 33.48], [23.11, 65.08], [58.95, 94.32]], \"sentences\": [\"A man is seen wearing a scuba mask underwater while speaking to the camera and pointing to his face.\", \" His goggles then fill up with water and he takes his goggles off still moving the camera to speak.\", \" The man then puts the goggles back on while draining the water and giving a thumbs up to the camera.\"]}, \"v_3dAJEnMn6QA\": {\"duration\": 184.25, \"timestamps\": [[0, 175.04], [95.81, 120.68], [60.8, 184.25]], \"sentences\": [\"A man shows off a huge sandcastle on a beach while a little girl works on the castle.\", \"  Talks to the little girl as she is building the castle.\", \" He turns the camera to show people playing in the water and standing on the beach.\"]}, \"v_6hu3V1PS4vM\": {\"duration\": 170.71, \"timestamps\": [[7.68, 150.23], [0.85, 6.83], [11.1, 89.62], [18.78, 150.23]], \"sentences\": [\"A group of young women play field hockey in practice and in an official game all on outdoor, grass covered, hockey fields with special attention given to a young woman in a number fourteen jersey.\", \"  A closeup of a young woman talking into a screen begins, while the woman is standing on a field of grass and wearing a sports tank top.\", \"  The woman begins to plays hockey with other women on a field.\", \"  The camera follows the young woman through several games on the field and then follows with a graphic card and pictures of the woman listing stats and contact information.\"]}, \"v_8tlLBffNjf8\": {\"duration\": 32.56, \"timestamps\": [[0, 7.49], [7.65, 27.51], [27.83, 32.56]], \"sentences\": [\"A man is standing next to a Christmas tree.\", \" He is throwing tinsel into the air in front of him.\", \" The Christmas tree in front of him is shown.\"]}, \"v_ScKbopywnvM\": {\"duration\": 51.6, \"timestamps\": [[0, 9.29], [7.48, 44.63], [39.73, 51.6]], \"sentences\": [\"Two people are in the park.\", \" A man in brown shit is crossing the red rope while the other man is watching.\", \" The woman in is walking at the rope, then both people are walking in the rope meeting halfway.\"]}, \"v_87hsTxVtn-A\": {\"duration\": 235.89, \"timestamps\": [[0, 235.89], [22.41, 24.77]], \"sentences\": [\"A woman dances on a stage alone.\", \"  Someone walks in front of the camera ducking down.\"]}, \"v_MjRsR_7ECi8\": {\"duration\": 30.14, \"timestamps\": [[0, 4.67], [6.03, 12.81], [13.41, 16.28], [16.43, 20.04]], \"sentences\": [\"A man shows up with flowers at a woman's door.\", \" A man in a suit kisses a woman laying in a bed.\", \" A man talks to a woman behind a glass wall.\", \" A woman takes a drink of something out of a cup.\"]}, \"v_u-yFENQQxAo\": {\"duration\": 30.16, \"timestamps\": [[0, 10.71], [10.56, 30.16]], \"sentences\": [\"Two kids are seen raking leaves in a back yard when the camera takes the point of view of the rake.\", \" Close ups of the leaves are shown as well as a kid dragging around the leaves and jumping into a pile while their dad watches.\"]}, \"v_tcGO-GHcQIQ\": {\"duration\": 124.13, \"timestamps\": [[0, 71.38], [71.38, 124.13]], \"sentences\": [\"man is holding a wooden table and planishing with a knife.\", \" man cleans the knife with a cloth and cu a white paper.\"]}, \"v_NIJTz15ikgA\": {\"duration\": 136.46, \"timestamps\": [[0, 42.99], [39.57, 100.3], [94.16, 133.73]], \"sentences\": [\"A woman is seen dressed in a beautiful gown and a woman begins putting makeup on her face.\", \" The woman powders around the girls face as well as her neck.\", \" She continues putting makeup on the girl and showing pictures in the end.\"]}, \"v_lOCw2uO3UK8\": {\"duration\": 172.2, \"timestamps\": [[0, 19.8], [31.86, 152.4], [154.12, 160.15]], \"sentences\": [\"Man in a white t-shirt does several stretches.\", \"  Man hits a ball against the wall several times.\", \"  Man collapses on the floor of the court.\"]}, \"v_noKDv_a8u-Y\": {\"duration\": 209.77, \"timestamps\": [[0, 209.77], [6.29, 207.67], [11.54, 206.62], [89.15, 92.3], [9.44, 209.77]], \"sentences\": [\"A man with a goatee, long hair, and dressy hat and clothing is playing a guitar.\", \"  The guitar is a brown acoustic guitar.\", \"  He is seated with a deep red curtain hanging behind him.\", \"  He looks up word for a moment as he plays.\", \" This is obviously something he has down for quite some time.\"]}, \"v_Hi0L9rcsXUI\": {\"duration\": 30.0, \"timestamps\": [[1.65, 18.15], [19.5, 26.7]], \"sentences\": [\"A woman is seen swinging around on a set of uneven bars while a group of people practice and watch around her.\", \" She jumps down off the bars and a woman standing next to her claps.\"]}, \"v_TjLoGNBzNRA\": {\"duration\": 110.32, \"timestamps\": [[0, 104.25], [8.83, 30.34], [28.13, 45.23], [40.27, 89.91], [88.81, 92.67], [92.12, 105.35]], \"sentences\": [\"There's a woman doing a tutorial on how to fix wall paper on a wall.\", \" She begins by preparing the surface and then peels of the sheet from the adhesive side of the wall paper.\", \" Then she hangs the wall paper on the wall and smoothens it out with a tool.\", \" She continues hanging more wall paper on the wall and ensures that it glues on tight and securely on the wall surface without creases.\", \" She gives a thumbs after she completes hanging the graphic wall paper.\", \" Then she demonstrates how easy it is to peel off from the wall.\"]}, \"v_NjTk2naIaac\": {\"duration\": 234.99, \"timestamps\": [[0, 70.5], [70.5, 186.81], [196.21, 234.99]], \"sentences\": [\"A man is seen spinning around a ride and leads into people sitting in bumper car seats.\", \" The people then ride around playing bumper cars while the camera man spins in circles and leaves once done.\", \" More people are seen hugging and talking to the camera and panning around a theme park.\"]}, \"v__7XW-BFK_ZY\": {\"duration\": 169.07, \"timestamps\": [[64.24, 157.23], [0, 16.06], [21.98, 35.5], [51.56, 58.33], [117.5, 124.26], [146.24, 157.23]], \"sentences\": [\"Different trainers throw Frisbee discs for the dogs to catch while performing tricks.\", \" A man sits with his dog in the grass and holds out discs in his hands.\", \" The man balances his dog on his feet then throws Frisbee discs for him.\", \" The man spins his dog and holds it in his arms.\", \" A woman throws discs to her dog that jumps from her back.\", \" The woman throws multiple discs in a row for her dog to catch.\"]}, \"v_lVOBMs6op7o\": {\"duration\": 11.01, \"timestamps\": [[0.11, 3.47], [3.41, 8.7], [7.76, 10.51]], \"sentences\": [\"A young man is seep standing in front of a group of children.\", \" The boy then speaks to the group while laughing to one another.\", \" The group laughs back with the boy.\"]}, \"v_nc4twXSueZo\": {\"duration\": 63.69, \"timestamps\": [[0, 61.46], [61.78, 62.1], [62.42, 63.69]], \"sentences\": [\"A boy practices boxing with a kneeling adult.\", \" The kneeling adult pats the boy on the back.\", \" The kneeling adult rises and stands in place.\"]}, \"v_j73Wh1olDsA\": {\"duration\": 3.07, \"timestamps\": [[0, 3.07], [0, 3.04], [0.11, 3.04]], \"sentences\": [\"someone is throwing a dart in a dartboad.\", \" man is throwing darts into a board in a room.\", \" living room with decoratiions and a big dart board is shown.\"]}, \"v_Xf0c2abFH3Y\": {\"duration\": 93.11, \"timestamps\": [[0, 8.38], [8.85, 10.24], [10.71, 45.16], [48.88, 57.73], [58.66, 66.11], [67.51, 93.11]], \"sentences\": [\"We see a couple of opening scenes.\", \" We see paint on a pallet.\", \" We see a person mixing oil paints.\", \" We see the person paint on a canvas.\", \" We see the finished painting and a line of paints.\", \" We then see the ending scene.\"]}, \"v_83oa1S0x9zI\": {\"duration\": 149.75, \"timestamps\": [[2.25, 149.75], [60.65, 65.14], [113.06, 115.3], [128.03, 132.53]], \"sentences\": [\"Men wearing white uniforms are playing cricket on a field.\", \" Three men talk to each other on the field.\", \" A man falls onto the ground.\", \" People standing on the field start to clap.\"]}, \"v_lfllVwgOWBk\": {\"duration\": 68.55, \"timestamps\": [[0, 22.96], [23.31, 40.44], [40.44, 61.01], [61.01, 68.55]], \"sentences\": [\"And old man, old woman and girl are talking.\", \"  The old man goes into the house and brings out a brush.\", \"  The old woman and girl sit down and the old woman brushes the girls hair.\", \"  The man leaves and the two women are talking.\"]}, \"v_1dvrNvxw43Q\": {\"duration\": 47.32, \"timestamps\": [[0, 3.31], [3.55, 27.21], [27.68, 33.13], [33.36, 47.32]], \"sentences\": [\"A guy squats on ice next to a plant.\", \" The guy reaches into the hole in the ice and pulls on a clear string.\", \" The guy brings a fish from the ice which is attached to the string.\", \" The guy smiles and places the fish on the the ice with both hands.\"]}, \"v_XvFv0n2mJUk\": {\"duration\": 9.85, \"timestamps\": [[0, 2.07], [1.97, 6.2], [6.25, 9.85]], \"sentences\": [\"A man is bending down on a mat.\", \" He lifts up another person onto his shoulders.\", \" He then slams the person down onto a mat.\"]}, \"v_SIf4H2dqbpg\": {\"duration\": 100.57, \"timestamps\": [[0, 16.59], [19.11, 86.99], [87.49, 100.57]], \"sentences\": [\"A group of people are gathered around a tall christmas tree.\", \" They  are each applying ornaments to the tree.\", \" They get more from the buckets and add them to the tree.\"]}, \"v_rzIaKwWJDZI\": {\"duration\": 201.88, \"timestamps\": [[0, 7.07], [17.16, 19.18], [42.39, 114.06], [111.03, 121.13], [122.13, 168.57]], \"sentences\": [\"A woman is sitting in a chair talking.\", \" A cake is shown on a table.\", \" A woman puts diapers into a metal pan.\", \" She stacks them on top of each other.\", \" She decorates the cake with lace and small stuffed animals.\"]}, \"v_9L-aeZsgwZs\": {\"duration\": 177.77, \"timestamps\": [[0, 177.77], [0.89, 176.88], [86.22, 118.22], [144.88, 159.11]], \"sentences\": [\"Multiple teams battle each other in a game of tug of war out on the green field.\", \" A large crowd of people outside the field watch the game.\", \" A coach instructs his team on what to do.\", \" Teams and referees walk around the field.\"]}, \"v_Sjx7K9Ybx9Q\": {\"duration\": 18.32, \"timestamps\": [[0, 16.4], [16.58, 18.32]], \"sentences\": [\"A father pushes a lawn mower across the grass with his son next to him pushing a play toy lawn mower across the lawn, too.\", \" They high five once they finish mowing the lawn.\"]}, \"v_lL-YnWr815o\": {\"duration\": 168.09, \"timestamps\": [[0, 19.33], [20.17, 168.09]], \"sentences\": [\"people is gathered around a table serving food.\", \" people is in boat going down the rapids of a river.\"]}, \"v_8itO1pQI9ww\": {\"duration\": 12.8, \"timestamps\": [[0, 2.3], [2.37, 12.8]], \"sentences\": [\"A man is standing in a room with a hose in his mouth that is attached to a bottle.\", \"The male then begins to lift the bottle up over his head until he has consumed all of its content and takes it out of his mouth.\"]}, \"v_myHHyzx6TPc\": {\"duration\": 99.68, \"timestamps\": [[0, 10.97], [10.97, 33.89], [33.89, 74.26], [74.76, 99.68]], \"sentences\": [\"A teenage girl has on a blue leotard standing behind a balance beam.\", \"When she is prepared,she grabs the balance beam and does a split over it.\", \"After several tricks,she stands up and does a flip and continues to to walk across the beam doing flips and cart wheels.\", \"As she finishes,she does a flip off the beam,stumbles a little bit and then sticks her landing and walks off.\"]}, \"v_n3MGZcDHr-U\": {\"duration\": 195.1, \"timestamps\": [[5.85, 7.8], [19.51, 159], [168.76, 195.1]], \"sentences\": [\"A woman is drying her hair with a towel.\", \" She starts blow drying her hair.\", \" She styles her hair and smiles.\"]}, \"v_2tO1ApNwXpQ\": {\"duration\": 111.83, \"timestamps\": [[0, 57.59], [13.42, 41.38], [50.32, 107.35]], \"sentences\": [\"We see a man sitting at a shoe shine station shining a woman's shoes.\", \" We zoom in on the pedestal the man sits on and the name on the man's shirt.\", \" The man speaks to the camera and we see the price list before returning to the talking man.\"]}, \"v_q5tYHwZLRYU\": {\"duration\": 24.08, \"timestamps\": [[0, 3.01], [3.01, 13.24], [11.44, 24.08]], \"sentences\": [\"A boy is running along a long red strip on a grassy field with a black stick in his hand and when he reaches the end he throws it as far as he can.\", \" A man goes running towards the stick and the boy who threw it goes running towards the direction of the stick as well.\", \" An older man is standing at the end of the red strip and bends down to hold onto the white ribbon that a girl behind him as also holding onto while other people around the red strip just hang out.\"]}, \"v_gB_xHRJY7sw\": {\"duration\": 25.54, \"timestamps\": [[0, 25.54], [0, 11.62], [13.28, 20.82]], \"sentences\": [\"A star wars kite is flying in the sky successfully.\", \" There is enough wind to keep the kite up without having to do extra work.\", \"  The kite starts to bob and weave.\"]}, \"v_-Lxv663IEaI\": {\"duration\": 73.85, \"timestamps\": [[0, 25.11], [26.59, 73.85]], \"sentences\": [\"A group is riding on horse back by a fenced in area.\", \" We see numerous goats on the other side of the fence, and people walking down the path.\"]}, \"v_ruNII4WvE3k\": {\"duration\": 162.19, \"timestamps\": [[0, 21.08], [25.14, 65.69], [68.93, 162.19]], \"sentences\": [\"A couple of people are shown inside a grooming facility.\", \" They have a dog on the table to groom.\", \" They carefully trim his fur and nails.\"]}, \"v_ILF-93buuSY\": {\"duration\": 66.94, \"timestamps\": [[0, 17.07], [17.41, 66.94]], \"sentences\": [\"A man is seen driving around a tractor and backing it up along some tall grass.\", \" He moves the tractor around the yard while the camera pans in and zooms in on his body while he drives away.\"]}, \"v__8aVDfNQtq0\": {\"duration\": 122.23, \"timestamps\": [[0, 122.23], [15.28, 36.06], [34.22, 121.62], [99.01, 121.62]], \"sentences\": [\"Several flags stand on a sandy beach.\", \" Several people are on this beach.\", \" Two teams kick a ball back and forth.\", \" Several people watch the game.\"]}, \"v_ubVPP8BVcfs\": {\"duration\": 67.39, \"timestamps\": [[0, 46.5], [7.41, 11.46], [11.79, 13.81], [14.15, 17.18], [46.83, 59.64], [66.37, 67.39]], \"sentences\": [\"People are canoeing in a body of water.\", \" People are sitting on canoes that are on the ground.\", \" People are paddling in the water without boats.\", \" People are moving empty canoes closer to the water.\", \"  People are jumping into the body of water.\", \"The credits of the clip are shown.\"]}, \"v_7o7hL0VccJQ\": {\"duration\": 93.03, \"timestamps\": [[0, 85.13], [37.21, 46.05], [88.38, 93.03]], \"sentences\": [\"A man on stilts is playing the bag pipes on a street.\", \" A bus passes on the street behind the man.\", \" A street sign on a pole is shown.\"]}, \"v_oY22VETX20w\": {\"duration\": 103.19, \"timestamps\": [[0, 33.02], [30.44, 103.19]], \"sentences\": [\"A tattoo artist is seen drawing on a person's leg while the person faces away.\", \" The artist speaks to another woman sitting far away and then continues drawing on the leg.\"]}, \"v_5O9myPtSriI\": {\"duration\": 128.24, \"timestamps\": [[0, 22.44], [24.37, 31.42], [32.7, 128.24]], \"sentences\": [\"A man talk, then he holds a bow and explains how to shoot an arrow.\", \" The man holds an arrow in the bow and then shoots it.\", \" The man continues explaining showing the side of his face and showing the arrow.\"]}, \"v_NGiDXRIx1gk\": {\"duration\": 175.45, \"timestamps\": [[0, 19.3], [22.81, 86.85], [87.73, 175.45]], \"sentences\": [\"A group of people are gathered in fencing gear.\", \" They take a stance before an instructor.\", \" They then jab and stab at each other as they practice.\"]}, \"v_38ZxXyECPPU\": {\"duration\": 112.18, \"timestamps\": [[0, 112.18], [19.63, 56.09], [69.55, 112.18]], \"sentences\": [\"A demonstration of capoeira is shown.\", \"  The easy sequence is shown step by step.\", \"  Then professionals are shown again.\"]}, \"v_quoyW7FZqdI\": {\"duration\": 233.85, \"timestamps\": [[0, 59.63], [51.45, 168.37], [169.54, 233.85]], \"sentences\": [\"A woman is seen standing on a street corner holding a jump rope then putting it on the ground.\", \" The woman then jumps without the rope and then bends down to grab the rope.\", \" The woman then jumps rope using the object performing several jumps and then stopping.\"]}, \"v_jdz4PzF1pO0\": {\"duration\": 191.22, \"timestamps\": [[0, 8.6], [7.65, 174.96], [13.39, 38.24], [25.81, 96.56], [90.83, 191.22]], \"sentences\": [\"A girl is kicking the punching bag then hit the guy in black top on his face.\", \" The guy in black top played paper, scissor, stick stone to different people, and when he lost, the people hit him on the face.\", \" A man with tattoo is doing kickboxing training, then the guy in black top lost with the tattooed person and he got kicked.\", \" The girls in a training gym slap the guy in black shirt.\", \" The women in the street slap the guy and one of the girls kissed him on the cheek.\"]}, \"v_mKm75VWThAI\": {\"duration\": 212.51, \"timestamps\": [[0, 212.51], [9.56, 13.81], [13.81, 35.06], [35.06, 39.31], [39.31, 47.81], [48.88, 51], [51, 105.19], [105.19, 158.32], [158.32, 164.7], [164.7, 212.51]], \"sentences\": [\"Two people dressed up in sumo wrestler suits come running into a gym and wrestle while people stand around and watch.\", \" The wrestler wearing red falls over.\", \" They continue wrestling and are having a lot of fun doing it falling down and bouncing around.\", \" One of the wrestlers wearing blue makes a shot in a basketball net.\", \" The two people continue wrestling in their sumo suits.\", \" A man comes into the shot and pushes the sumo wrestler over on top of another person not wearing a suit.\", \" There comes a final of the sumo wrestlers and a man in a white shirt is presenting and there is a referee.\", \" They start on the wrestle while people watch swinging each other around in the middle of the red mats.\", \" The red sumo wrestler falls down and the blue sumo wrestler wins.\", \" The blue sumo wrestler jumps up happy with his friends and walks out the door and the red sumo wrestler is left on the ground.\"]}, \"v_wAAu-2U5Pso\": {\"duration\": 189.36, \"timestamps\": [[0, 41.66], [43.55, 136.34], [140.13, 181.78]], \"sentences\": [\"A large wave is shown followed by a person riding on a surf board.\", \" The person is shown in several shots riding around on a surf board on waves.\", \" The person continues to ride waves along the water while others watch on the side.\"]}, \"v_t6d__c9sIUU\": {\"duration\": 427.06, \"timestamps\": [[25.62, 414.25], [307.48, 322.43], [414.25, 427.06]], \"sentences\": [\"A person is using a snow shovel to clean the snow off of a car.\", \" They start shoveling the snow in front of the car.\", \" they finish and talk to each other.\"]}, \"v_yeWCfvmeUvM\": {\"duration\": 56.15, \"timestamps\": [[0.56, 16.28], [11.23, 42.11], [40.71, 54.46]], \"sentences\": [\"A group of people are seen sitting on swings and moving back and fourth on the swings.\", \" Several clips are then shown of the girls doing cartwheels and playing on the playground.\", \" They then put sunscreen on and end by giving one a hat and cheering in the stands.\"]}, \"v_hT_4wWPNYxo\": {\"duration\": 166.07, \"timestamps\": [[0, 165.24], [30.72, 34.87], [133.69, 139.5]], \"sentences\": [\"woman wearing bikini is ni a backyard dancing and doing gymnastics.\", \" the dancing woman is kneeling holding the hoola hoop.\", \" the hoola hoop feels of the woman hands and she grab it again with her foot.\"]}, \"v_E15Q3Z9J-Zg\": {\"duration\": 130.47, \"timestamps\": [[0, 56.76], [54.8, 130.47]], \"sentences\": [\"A woman is seen riding on a piece of exercise equipment with another person standing next to her and motivating her.\", \" The woman continues riding and then is seen again next to the machine speaking to the woman and smiling to the camera.\"]}, \"v_QacSWR8c-8Y\": {\"duration\": 16.93, \"timestamps\": [[0, 4.49], [4.57, 8.04], [8.97, 16.93], [13.71, 14.98]], \"sentences\": [\"We see a lady running with a pole.\", \" The lady pole vaults and hits the mat.\", \" The lady stands and raises her hands in the air as the crowd cheers.\", \" The lady shakes her head and points and continues cheering.\"]}, \"v_IZNrdIkMCoc\": {\"duration\": 89.65, \"timestamps\": [[0, 13], [13.9, 65.45], [66.34, 89.65]], \"sentences\": [\"A shirtless man is seen standing in an empty lot moving his arms and legs back and fourth.\", \" He continuously spins around doing flips and tricks on his hands and knees followed by several shots of his movements in slow motion.\", \" He performs several more tricks and the camera fades to black in the end.\"]}, \"v_xynscQyItDQ\": {\"duration\": 67.57, \"timestamps\": [[0, 67.57], [2.03, 34.8], [32.1, 54.06], [52.71, 67.57]], \"sentences\": [\"There's a person wearing a white shirt and a black beanie hat trying on a brand new pair of shoes.\", \" He takes one of the shoes in his hands and fixes the shoe laces properly in the holes while holding the shoe on his lap.\", \" Then he removes the packaging paper from the shoes and tries the shoes on.\", \" He adjusts his foot and looks down to see how the shoes fit him.\"]}, \"v_lAsPxkZD6Xc\": {\"duration\": 132.17, \"timestamps\": [[3.3, 54.19], [58.15, 129.52]], \"sentences\": [\"A person is seen laying on a table while another man tattoos him on the chest.\", \" The man continues tattooing all over his body and the camera zooming around him while speaking.\"]}, \"v_BS9UPqgR89E\": {\"duration\": 140.48, \"timestamps\": [[2.81, 134.16], [76.56, 80.07], [106.06, 127.14]], \"sentences\": [\"A woman is standing next to a table doing dance moves.\", \" She lifts her leg up to the side.\", \" She then kneels down onto the ground.\"]}, \"v_isUCIXYjOXE\": {\"duration\": 45.05, \"timestamps\": [[0, 4.05], [5.63, 13.29], [14.19, 45.05]], \"sentences\": [\"Two men are talking outside a building.\", \" A woman and another man walk away as the two men continue their conversation.\", \" The men engage in a game of pool, shooting the balls into the corner pockets and taking turns.\"]}, \"v_TdqEtrrPX_Q\": {\"duration\": 27.21, \"timestamps\": [[0, 11.02], [10.48, 27.21]], \"sentences\": [\"These two men are lying on the ground close to yellow frisbees.\", \" The man who's wearing a red shirt throws a yellow frisbee into the air and the dog jumps up to catch it in its mouth while the other man who's lying down is recording using a camera.\"]}, \"v_i4SvqrGYH-Q\": {\"duration\": 172.07999999999998, \"timestamps\": [[0, 29.25], [29.25, 86.9], [86.04, 132.5], [132.5, 162.62], [162.62, 172.08]], \"sentences\": [\"Two males are outside in the yard standing behind a table with red cups on both ends.\", \"The older man then throws the ball to the other end and the two begin playing beer pong.\", \"After,the ball is dipped in the water,the man takes several more times throwing the ball until all of the cups are gone.\", \"Breaks are taken in between the game,and the man begins to talk to his partner standing next to him before his turn eventually begins.\", \"It is now night time,and the man is sitting down talking while holding something in this cup.\"]}, \"v_JQpx7CcTstU\": {\"duration\": 49.88, \"timestamps\": [[0, 5.49], [5.49, 9.73], [9.73, 18.21], [18.21, 49.88]], \"sentences\": [\"people are standing going no sliders.\", \" woman is pulling a snowslide where a kid is seated.\", \" different people are standing on snowy slope standing next to snowslides.\", \" woman is sitting on a snowslide and is going down a snowy slope.\"]}, \"v_FYhB2rQwfCc\": {\"duration\": 103.61, \"timestamps\": [[0, 100.5], [20.72, 27.46], [35.74, 48.18], [17.1, 21.24]], \"sentences\": [\"Two players compete in a racquetball match indoors.\", \" The man drops the ball and his racket on accident.\", \" The players stretch out before the ball is served.\", \" The man jumps off of the wall while hitting the ball.\"]}, \"v_0QNcOwi5bu8\": {\"duration\": 33.67, \"timestamps\": [[0.84, 16.33], [19.7, 32.66]], \"sentences\": [\"A camera pans all around a room when another person walks into frame.\", \" The person runs paint all along the ceiling moving his arm back and fourth.\"]}, \"v_Mno1JV_6y_M\": {\"duration\": 183.35, \"timestamps\": [[0, 18.33], [23.83, 153.09], [156.76, 183.35]], \"sentences\": [\"A woman is shown talking in front of a washer and dryer.\", \" She shows how to position and use an iron to iron a shirt.\", \" She then waves the shirt sleeves and laughs as she finishes talking.\"]}, \"v_pQsk5XPTLoY\": {\"duration\": 13.47, \"timestamps\": [[0, 2.69], [2.83, 6.46], [7.34, 11.52]], \"sentences\": [\"A man stands behind another wrestler holding him.\", \" The match starts and the men swing each other around throwing one into the ropes.\", \" The wrestler jumps onto his opponent shoulders and slams him to the mat.\"]}, \"v_POYg9zju63U\": {\"duration\": 148.93, \"timestamps\": [[0, 81.17], [78.19, 148.93]], \"sentences\": [\"A person is seen raking a pile of leaves in the yard while speaking and pointing to the camera.\", \" The camera pans all around to where the girl is pointing and walks back to zoom in on her face.\"]}, \"v_6UqWORrn3KI\": {\"duration\": 59.05, \"timestamps\": [[0.89, 12.4], [10.04, 46.06], [38.68, 56.98]], \"sentences\": [\"A picture of lemons are shown followed by various ingredients laid out on a pan.\", \" A person mixing ingredients into a container while also putting ice inside.\", \" The two take a drink from the container and nod to one another.\"]}, \"v_wH-uaN8gL_k\": {\"duration\": 60.05, \"timestamps\": [[0, 60.05], [31.22, 33.03], [31.22, 54.94]], \"sentences\": [\"Many kids are in a gym playing dodge ball.\", \" The camera goes to one of the kids showing them making a throw.\", \" The kids run back and forth as the game persists.\"]}, \"v_lU-PEm5L5EU\": {\"duration\": 103.89, \"timestamps\": [[0, 9.35], [3.12, 10.91], [3.64, 7.79], [11.95, 20.78], [16.62, 23.37], [24.93, 40], [36.36, 42.59], [42.07, 54.54], [51.94, 69.6], [67.01, 76.88], [75.84, 96.61]], \"sentences\": [\"There's a personal trainer in a pink tank top and black athletic shorts standing a gym with many dumbbells, barbells and basketballs behind her.\", \" There are also some other gym equipment behind her.\", \" She is talking about how to use the equipment.\", \" The personal trainer is using an exercise bicycle and peddling the cycle very vigorously.\", \" There a few other women who are also biking the stationary bikes.\", \" Then the personal trainer begins exercising using a pair of dumbbells.\", \" She also does some sit-ups as she holds the dumbbells in her hands.\", \" She then goes back on the bike and peddles steadily.\", \" Then she does some stomach crunches while laying on the ground.\", \" Then she holds the two dumbbells in her hands as she does some forward lunges.\", \" She continues on her exercise bike at a steady speed.\"]}, \"v_R0B5bBr6t8w\": {\"duration\": 18.3, \"timestamps\": [[0, 18.3], [1.92, 8.33]], \"sentences\": [\"Boys in gym class passes the ball to a partner who then takes a shot.\", \" The boy returns to the top of the basketball key and passes it to his partner who takes a shot.\"]}, \"v_00SfeRtiM2o\": {\"duration\": 175.87, \"timestamps\": [[0, 19.35], [23.74, 87.05], [90.57, 135.42], [137.18, 153.01], [153.88, 175.87]], \"sentences\": [\"A woman wearing ski gear is talking to the camera.\", \" A man shows how a pair of skis work.\", \" He shows the mechanics of strapping them up, before they head up a snow covered hill.\", \" The woman teaches a little boy how to use them.\", \" He put it on, and sleds down the hill.\"]}, \"v_WRX7aUqgZJ0\": {\"duration\": 46.6, \"timestamps\": [[0, 31.46], [31.69, 43.57], [43.57, 46.6]], \"sentences\": [\"A person melts was onto a board with an iron.\", \" They then iron the wax onto the board.\", \" They lift the iron up.\"]}, \"v_dvHj856L8zY\": {\"duration\": 126.68, \"timestamps\": [[1.9, 95.01], [15.2, 95.01], [19.64, 95.01], [117.18, 126.68]], \"sentences\": [\"There is a woman riding a white horse on a dirt path.\", \" The horse is running on the path.\", \" There is also someone riding a black horse and the black horse is running behind the other one.\", \"  Finally the horses stop running and they walk.\"]}, \"v_6VygM9-XgAk\": {\"duration\": 172.82999999999998, \"timestamps\": [[7.78, 12.1], [11.23, 139.13], [139.13, 167.64]], \"sentences\": [\"Two persons sits on motorcycles on the mountains.\", \" Then, people drive snow bikes on the mountains covered with snow.\", \" The two men meets with other snow bikers.\"]}, \"v_5rw6n16ILgY\": {\"duration\": 155.57, \"timestamps\": [[0, 0.78], [1.56, 137.68], [137.68, 152.46], [152.46, 155.57]], \"sentences\": [\"Four commentators sit at a table talking.\", \" A series of female contestants are shown trying to jump a hurdle while an audience watches, and the four commentators occasionally interject.\", \" Some of the contestants are interviewed with flowers in their hands.\", \" The audience cheer the contestants.\"]}, \"v_oA8ZUG1y4Lc\": {\"duration\": 113.08, \"timestamps\": [[0, 56.54], [55.41, 113.08]], \"sentences\": [\"Two people are seen dancing together in a living room with a tv going on in the background.\", \" The couple continue dancing around and end with the girl backing up into another girl.\"]}, \"v_sfCfrWpHpu0\": {\"duration\": 154.69, \"timestamps\": [[0, 154.69], [58.78, 66.52]], \"sentences\": [\"A girl in a shopping cart is eating an ice cream cone.\", \" Kids run in the background behind the cart.\"]}, \"v_-02DygXbn6w\": {\"duration\": 109.71000000000001, \"timestamps\": [[0, 19.75], [19.75, 53.21], [53.21, 80.08], [80.08, 109.71]], \"sentences\": [\"Two people are very slowly snow boarding down a mountain of snow.\", \" They fall over for a minute and get back up, the one farther behind catches up and gets in front of the other boarder.\", \" The boarder tried to grab on to a sign and is falling in and tumbling around in snow.\", \" Seems like it was a bit of a struggle to finally get to the bottom.\"]}, \"v_zLZTqSaGxJo\": {\"duration\": 136.6, \"timestamps\": [[0, 45.76], [45.08, 115.43], [115.43, 124.31]], \"sentences\": [\"People are standing on a field talking.\", \" The men start playing a game of cricket on the grass.\", \" People are standing in the stands watching.\"]}, \"v_bEcSrzeCGyA\": {\"duration\": 237.22, \"timestamps\": [[0, 26.09], [28.47, 112.68], [115.05, 237.22]], \"sentences\": [\"A man is talking while holding a tennis paddle.\", \" He shows the different moves and strategies used for hitting a ball.\", \" He is then shown engaged in a game of table tennis.\"]}, \"v_shBiO7aGy6k\": {\"duration\": 159.38, \"timestamps\": [[14.34, 89.25], [51.8, 125.11], [121.13, 149.82]], \"sentences\": [\"A man is seen interviewing the camera while people wrestling around him.\", \" Several shots of people jumping on ropes are shown while many watch on the sidelines and other people speak to the camera.\", \" The people perform several flips and tricks on the rope and land on their feet immediately afterwards.\"]}, \"v_jA05XIX7Yh0\": {\"duration\": 106.2, \"timestamps\": [[0, 56.82], [47.26, 105.67]], \"sentences\": [\"Two people are seen riding around on board on waves and leads into more people surfing.\", \" More shots are shown of people surfing while the waves crash down around them.\"]}, \"v_JnpcJP82WLI\": {\"duration\": 64.65, \"timestamps\": [[0, 64.65], [7.76, 60.44]], \"sentences\": [\"two men are playing ping pong in a asket court while people is gathered around them watching the game.\", \" man is recording a video of the men playing ping pong.\"]}, \"v_optJ47P_5Ys\": {\"duration\": 15.51, \"timestamps\": [[0, 0.85], [0.93, 15.12], [15.2, 15.51]], \"sentences\": [\"A girl takes a drink out of a glass.\", \" A woman is washing clothes in a tin bucket.\", \" A woman stands in front of a washer and dryer.\"]}, \"v_hj7rkE0fPsE\": {\"duration\": 47.0, \"timestamps\": [[0.23, 3.99], [4.7, 8.93], [13.39, 46.29]], \"sentences\": [\"The credits of the clip are shown.\", \" A lady runs her finger through hair extensions.\", \" The lady brushes the hair extensions.\"]}, \"v_RHb_nF11Scc\": {\"duration\": 30.54, \"timestamps\": [[0, 2.6], [4.27, 16.49], [20.92, 30.54]], \"sentences\": [\"A man is inside a room, holding a foot in his hands.\", \" He is trying to remove a splinter from someone's toe.\", \" He continues working until the splinter is removed.\"]}, \"v_1AiQt87brik\": {\"duration\": 75.3, \"timestamps\": [[0, 75.3], [54.59, 58.74]], \"sentences\": [\"A man plays tam-tam with other people in an orchestra in an indoor event.\", \" Also, a man film the musicians playing piano and trumpet.\"]}, \"v_XDBugI_CcYs\": {\"duration\": 57.68, \"timestamps\": [[0, 57.68], [3.46, 28.55], [3.46, 57.68], [32.01, 40.66]], \"sentences\": [\"Girls in bikinis are standing on a beach.\", \" They start playing a game of tug of war.\", \" People are cheering them on behind a fence.\", \" They fall over and give each other a hug.\"]}, \"v_DW7Zm9DzEDk\": {\"duration\": 23.92, \"timestamps\": [[0, 23.92], [0.72, 10.28], [9.33, 18.3], [17.94, 23.92]], \"sentences\": [\"There's an athlete in blue athletic wear performing long jump in a stadium with the judges seated next to the sand pit.\", \" The athlete comes running and then leaps straight into the sand pit.\", \" He jumps up high in the air and take a long leap covering almost three fourths of the sand pit distance and lands on his feet.\", \" He then gets up, turns around and walks away as some other players watch him.\"]}, \"v_duZnMXDWkGw\": {\"duration\": 231.95, \"timestamps\": [[0, 132.21], [53.35, 231.94]], \"sentences\": [\"A man does a news report about running through Paris.\", \"  He is in a Naruto costume and others are in costumes as well.\"]}, \"v_ZUM89wyBcYY\": {\"duration\": 199.51, \"timestamps\": [[0, 186.54], [187.54, 199.51], [192.52, 199.51]], \"sentences\": [\"Two couples dance on a dance floor.\", \" The finish dancing and the crowd applauds.\", \" The couples leave the dance floor.\"]}, \"v_AuVVP8q6tFY\": {\"duration\": 185.27, \"timestamps\": [[0, 181.57], [5.56, 104.68], [104.68, 180.64]], \"sentences\": [\"A boy rollerblades around a paved, indoor, environment surrounded by other children.\", \"  A boy rollerblades, following yellow lines on a paved surface surrounded by other children.\", \"  Another boy swings the rollerblading boy around by the arms and hands and the boy in the rollerblades falls down on the paves surface and then continues to rollerblade.\"]}, \"v_SAaqnGbci6Y\": {\"duration\": 156.64, \"timestamps\": [[0, 16.45], [16.45, 37.59], [37.59, 45.43], [45.43, 56.39], [56.39, 85.37], [85.37, 118.26], [118.26, 120.61], [120.61, 156.64]], \"sentences\": [\"A man is running water in a sink.\", \"  He picks up the soap to wash a dish and glances at the camera.\", \"  He rinses the dish and his hands.\", \"  He looks back at the camera and washes a utensil and lays it on a towel.\", \"  He glances back at the camera and washes another dish, front and back, while he keeps glancing at the camera.\", \" He puts the dish on the towel and washes and rinses a plastic glass.\", \"  He got water in his eyes.\", \" He finishes washing the glass and its lid and puts them on the towel.\"]}, \"v_U7oDqpIYsxI\": {\"duration\": 73.26, \"timestamps\": [[0, 18.31], [18.31, 42.49], [42.86, 66.3], [66.67, 73.26]], \"sentences\": [\"A black treadmill is on a grey circle in an empty room spinning around.\", \"After,a man then comes along and begins to ride the bicycle and drinking water.\", \"Once the man has done some exercising,he takes out a USB device and records his workout and process and saves it on his computer.\", \"When he is finished,he then grabs the the elliptical and rolls it out.\"]}, \"v_I6IfZiNmlWA\": {\"duration\": 41.17, \"timestamps\": [[0, 41.17], [1.85, 24.08], [22.44, 25.94]], \"sentences\": [\"People are standing on a lacrosse field playing the game.\", \" People in the audience are watching.\", \" A person is standing on the sideline watching.\"]}, \"v_k1aFJ-F8xTs\": {\"duration\": 27.05, \"timestamps\": [[0, 17.72], [17.72, 19.48], [19.48, 27.05]], \"sentences\": [\"In fast motion a man is shaving his full beard with an electric hair cutter and leaves a very small part in the middle under his bottom lip.\", \"The man then moves onto shaving his mustache but leaves most of it and begins to curl the edges upwards.\", \"The man decides he doesn't want to keep the mustache, shaves it all off leaving just the small patch under his bottom lip, then smiles at the camera.\"]}, \"v_plhiqYw0P_g\": {\"duration\": 124.96, \"timestamps\": [[17.49, 109.96], [23.12, 109.96], [111.21, 124.96]], \"sentences\": [\"A person is water skiing behind a boat.\", \" They are going back and forth behind the boat.\", \" Words are shown on the screen.\"]}, \"v_uPqp30C6MDE\": {\"duration\": 47.23, \"timestamps\": [[0, 16.06], [16.77, 32.35], [32.59, 47.23]], \"sentences\": [\"A young baby is outside in a swing dressed in a long sleeve furry one piece.\", \"The baby begins to slow down and smiles at the person standing in front of them as they begin to film the scenery behind them.\", \"Finally,the baby is at a complete stand still and tries to look up but can't avoid the sun.\"]}, \"v_kkIClKG5xY8\": {\"duration\": 165.72, \"timestamps\": [[0, 70.43], [55.52, 165.72]], \"sentences\": [\"A man and a woman are walking with their surfboards towards the sea.\", \" The man and woman are surfing separately, they are riding the waves, they fell in the water once in awhile.\"]}, \"v_99xnJSBRzkE\": {\"duration\": 152.25, \"timestamps\": [[0, 8.37], [9.14, 22.84], [23.6, 137.03], [138.55, 152.25]], \"sentences\": [\"A graphic screen appears to introduce the video.\", \"  A sailing team is maneuvering a boat in the water.\", \"  The two men on this team are being interviewed as they talk about each other, the race and how it feels to win a gold metal as footage of the two men in action on a sail boat plays.\", \"  Graphics come on again to end the video followed by a web site address.\"]}, \"v_3Y_4Azzta6Q\": {\"duration\": 171.81, \"timestamps\": [[0, 37.8], [37.8, 171.81]], \"sentences\": [\"a butt wearing a bikini on top of cake is shown.\", \" man is modeling the frost of the cake.\"]}, \"v_A80eMz7rJUM\": {\"duration\": 156.41, \"timestamps\": [[0, 7.04], [5.47, 17.21], [17.21, 65.69], [65.69, 75.86], [75.86, 147.03], [147.03, 156.41]], \"sentences\": [\"An intro screen appears and the text reads \\\"Expert Series Organic Living\\\" and at the bottom right there's a logo that reads geobeats, and the next blue screen displays the words \\\"How to Prune Tomato Plants?\\\".\", \" A brunette woman is now talking while she's sitting outdoors near a large plant and the words on the screen say that her name is Judy Frankel, her title and her website.\", \"The woman grabs onto the plant and then cuts a part off of it with her pruning shears, holds the piece up and is talking about it and she cuts another piece off and this time this one is bigger.\", \"A few tomatoes are shown hanging off of the tomato plant and some are all green, and others have a little bit of yellow and orange.\", \" The woman is back to cutting more pieces off of the tomato plants and she continues to talk the whole time.\", \"The view shoes a little more of the area of the garden, and then fades to a blue screen that has the logo that say's geobeats.\"]}, \"v_gXAMD_KxXII\": {\"duration\": 163.03, \"timestamps\": [[0, 26.08], [25.27, 49.72], [51.35, 139.39], [138.57, 163.03]], \"sentences\": [\"A somewhat middle aged man is standing in front of a brick wall using various hands motion as if he is describing something.\", \"He then shows a pair of worn down boots and a pair and a black pair of dress shoes.\", \"The man then picks up he black dress shoe and begin polishing it with a cloth,a stick, and brushing the shoes.\", \"Once the task is completed,the man retreats back to his original spot and continues talking.\"]}, \"v_r97vYbzloD8\": {\"duration\": 33.83, \"timestamps\": [[0, 30.28], [0, 28.25], [2.03, 6.26], [20.47, 27.91], [32.31, 33.83]], \"sentences\": [\"A lady stand outside with her hands in the air.\", \" The lady is looking up at the sky.\", \" The lady approaches a male who is holding a hallow stick.\", \" The lady moves forward and waves her hands.\", \" The lady turns toward the man with her hand extended and smiles.\"]}, \"v_sGGnEgCnEt8\": {\"duration\": 203.52, \"timestamps\": [[27.48, 33.58], [27.48, 42.74], [27.48, 56.99], [27.48, 143.48]], \"sentences\": [\"People are gathered as two men arm wrestle.\", \"The competitors make all kind of faces as they grimace.\", \"The athletes eventually wind up  stomach down on the floor.\", \"The crowd erupts in cheers as the match ends.\"]}, \"v_--6bJUbfpnQ\": {\"duration\": 26.75, \"timestamps\": [[0, 3.21], [4.01, 23.54], [23.67, 26.75]], \"sentences\": [\"A large beer bong is being held by a man.\", \" He lifts the bong and begins to drink the beer quickly, draining it from the glass as fast as he can.\", \" He stops drinking and wipes his mouth.\"]}, \"v_j46ll2_jR7k\": {\"duration\": 219.92000000000002, \"timestamps\": [[0, 115.46], [107.76, 201.22]], \"sentences\": [\"A woman is seen holding a hula hoop in front of a large city center and begins performing a routine while others watch her on the side.\", \" The woman continues spinning around using several different hula hoops and ending by holding a pose and bowing.\"]}, \"v_W1krUTxgsMc\": {\"duration\": 143.78, \"timestamps\": [[0, 33.79], [34.51, 143.78]], \"sentences\": [\"White text on a black background discusses a disease called RA.\", \" A man is shown seated in a living room, playing a guitar.\"]}, \"v_KMz8f9vDK38\": {\"duration\": 131.63, \"timestamps\": [[0, 32.25], [32.25, 88.85], [88.19, 131.63]], \"sentences\": [\"Two Hockey teams are playing in a rink competing against one another with the referee standing in the middle between them.\", \"The video continues to follow number 99 who takes the puck multiple time and makes all of the goals.\", \"Another game begins and the player begins dominating the game one more making all of the points.\"]}, \"v_2Tuht3F2uc8\": {\"duration\": 46.35, \"timestamps\": [[0, 17.61], [16.22, 21.78], [26.42, 39.63]], \"sentences\": [\"A person is shoveling their driveway.\", \" They are pushing the snow to the side.\", \" Another person comes and helps them shovel the snow.\"]}, \"v_mlNP3uaTB3Q\": {\"duration\": 65.06, \"timestamps\": [[0, 16.92], [16.27, 49.77], [49.12, 65.06]], \"sentences\": [\" A young lady is standing in a room wearing an orange three quarter length shirt and begins talking to the camera.\", \"She then takes two rags off of her shoulder and grabs one in her hand.\", \"Next,she takes white paste of some sort and rubs it against the window and wipes it away smoothly off of the window.\"]}, \"v_NDK0XQnsnmA\": {\"duration\": 129.96, \"timestamps\": [[0, 129.96], [18.84, 29.24], [27.29, 128.66]], \"sentences\": [\"The young kids and adults are riding cars bumping each other.\", \" The little girl and an adult stopped at the center of the floor and move again.\", \" The cars are going in circles, bunch of cars stopped at the center and then continue to drive.\"]}, \"v_3OcAjx8e4LU\": {\"duration\": 187.48, \"timestamps\": [[6.56, 8.44], [14.06, 177.17], [52.49, 54.37]], \"sentences\": [\"People are standing on a beach wearing red helmets.\", \" They begin going down the river with red helmets on.\", \" They are all standing under a waterfall.\"]}, \"v_plMBtIbzX6w\": {\"duration\": 20.32, \"timestamps\": [[0, 4.77], [4.98, 10.16], [10.26, 17.17], [17.98, 20.32]], \"sentences\": [\"We see an opening title screen.\", \" A man in a blue shirt holds an orange bowling ball.\", \" The man throws the ball and it go close to the gutter then knocks all the pins down.\", \" We see a closing title screen.\"]}, \"v_m49gj6Y6SDo\": {\"duration\": 152.18, \"timestamps\": [[0, 58.59], [58.59, 152.18]], \"sentences\": [\"A man is seen walking in and out of frame putting objects onto a bike frame.\", \" He continues putting objects on the frame to eventually create a bicycle.\"]}, \"v_6F9C3dIU4kU\": {\"duration\": 64.39, \"timestamps\": [[0, 7.4], [9.34, 47.65], [48.61, 64.39]], \"sentences\": [\"A baby is laughing as he swings in a swing set.\", \" Someone pushes him to speed up the swinging.\", \" He continues laughing, swinging back and forth.\"]}, \"v_A32TgJfp2z8\": {\"duration\": 90.6, \"timestamps\": [[0, 25.37], [25.37, 90.6]], \"sentences\": [\"A MGM movie commercial comes on then several people lined up to play ping pong appear competing and the crowd begins to cheer for them.\", \"More matches begin but they are one on one and the crowd continues to clap for them until the game ends and the boys shake each other's hand.\"]}, \"v_bpB0GiH6uDw\": {\"duration\": 95.92, \"timestamps\": [[0, 37.41], [33.09, 95.92]], \"sentences\": [\"A rack of tools is shown followed by a man pulling the items off and a close up of a lawn mower.\", \" The person continues cutting the grass and ends by having dogs on his lawn and walking away with a toy.\"]}, \"v_nEmuDmbOp1E\": {\"duration\": 152.07, \"timestamps\": [[4.56, 19.01], [19.77, 63.11], [63.11, 152.07]], \"sentences\": [\"Two individuals plaster a ceiling in time lapse video.\", \" A different ceiling is shown being plastered in time lapse by two individuals, possibly different ones.\", \" The two most recently shown individuals plaster the walls of the room.\"]}, \"v_IlCsGkFnRkc\": {\"duration\": 174.99, \"timestamps\": [[0, 4.37], [4.37, 137.36], [47.25, 74.37], [79.62, 90.99], [93.62, 103.24], [137.36, 154.86], [162.74, 174.99]], \"sentences\": [\"We see a lady and kids walking around in a living room.\", \" The people begin to add ornments to the Christmas tree.\", \" A boy pops bubble wrap on the floor.\", \" A boy rides around on a toy.\", \" A kid lays under the tree putting things on it.\", \" The lady and a boy arrange the angel on top of the tree.\", \" The lady sets up a display table near the tree.\"]}, \"v_8YKUwWUU-O0\": {\"duration\": 195.87, \"timestamps\": [[0, 72.47], [46.03, 122.42], [109.69, 164.53], [148.86, 191.96]], \"sentences\": [\"A large group of people are seen standing on two sides of a rope with a man holding a video recorder.\", \" The group continues playing against one another when one team wins and cheers.\", \" The man points to the winner and leads into a group play tug o war.\", \" Another team wins and points back to the camera.\"]}, \"v_IXUh06YCtjw\": {\"duration\": 83.13, \"timestamps\": [[0.42, 83.13], [0.42, 9.14], [9.56, 47.8], [49.46, 83.13]], \"sentences\": [\"A hand holding a cup of coffee, sets the cup, with coffee in it, down, and a dog drinks the rest of the coffee from the cup.\", \"  A hand holds the handle of a white cup of coffee in the air and then sets it down on a wooden table, outside,  in a dirt and grass covered area.\", \"  A dog appears on the table and begins to drink the coffee from the cup.\", \"  The dog stops drinking, momentarily, to face the camera and then turns to drink from the cup again before eventually walking away from the table and the cup.\"]}, \"v_CNdCnkKhitI\": {\"duration\": 195.91, \"timestamps\": [[0.98, 74.44], [72.49, 187.09]], \"sentences\": [\"A man is seen swinging a ball with a bat and leads into several clips of people playing cricket.\", \" The men sit down and speak to one another as well as show more clips of them playing the sport.\"]}, \"v_iGax3fokst8\": {\"duration\": 22.97, \"timestamps\": [[0, 3.44], [3.9, 15.62], [15.96, 22.97]], \"sentences\": [\"A small boy  is rocking back and forth on a piece of exercise equipment.\", \" He is simulating situps with the bar.\", \" He rolls over, trying to get up.\"]}, \"v_Vl4gId1_zxo\": {\"duration\": 223.45, \"timestamps\": [[0, 34.63], [35.75, 53.63], [54.74, 68.15], [69.27, 173.17], [175.41, 205.57]], \"sentences\": [\"A man talks in a shop and shows a kite and a spool of thread, then the man goes to the park with two kids to fly kites.\", \" The man continues talking in the shop explaining the kite.\", \" Then, the man helps a girl to set up a kite in the park, and the girl fly the kite.\", \" After, the man continues talking in the shop showing kites in bags, then the man and the kids fly kites in the park.\", \" A kite gets stuck in a tree, and two men get in the roof to recover the kite from the tree, then the man continues talking in the shop.\"]}, \"v_Wrbf7c58IuU\": {\"duration\": 104.4, \"timestamps\": [[0, 8.35], [8.35, 43.32], [43.32, 77.25], [77.78, 104.4]], \"sentences\": [\"Two boys are in a pool throwing a ball to each other and the boy then throws the ball towards a chair that they are pretending to be the goal.\", \"One of the boy then goes after the ball and throws it to the other side of the pool.\", \"They both swim towards the ball and two young ladies become visible in the corner of the  pool.\", \"As time progress,the make shift game of polo continues and the ball is thrown back and forth into the chairs.\"]}, \"v_wZgBJlWqWWI\": {\"duration\": 54.75, \"timestamps\": [[0, 23], [23, 30.94], [25.46, 27.1], [29.84, 32.3], [32.03, 32.85], [34.22, 47.09], [52.02, 53.66]], \"sentences\": [\"The child is playing on the monkey bars.\", \"  The child stands on the bars.\", \"  She lets go of the monkey bars.\", \"   She turns around.\", \" She leaps from the wood.\", \"  She child swings from the bars a second time.\", \"  She takes a bow.\"]}, \"v_ChPzol03Hqs\": {\"duration\": 206.57, \"timestamps\": [[0, 28.92], [28.92, 69.2], [69.2, 74.36], [77.46, 85.72], [86.76, 107.41], [108.45, 117.74], [117.74, 176.61], [175.58, 206.57]], \"sentences\": [\"A man talks to the camera in a newscast setting.\", \" A beach setting is shown with multiple individuals engaged in various activities, with a reporter interviewing some of the individuals.\", \" A man is interviewed in front of a tree.\", \" The reporter at the beach talks to the camera.\", \" An individual applies sunscreen to a child, and then herself.\", \" The man in front of the tree is interviewed again.\", \" More quick scenes of people engaged in various activities during summer are shown, with the man in front of the tree briefly interviewed again among them.\", \" The man in the newscast setting talks to the reporter remotely.\"]}, \"v_Q0FbJovQ0Lw\": {\"duration\": 148.7, \"timestamps\": [[0, 0.74], [0.74, 136.8], [95.91, 96.66], [137.55, 139.78], [139.04, 148.7], [145.73, 148.7]], \"sentences\": [\"A guy is sitting with sticks in his hands.\", \" A guy is playing the drums.\", \" The guy stops and opens his mouth.\", \" The guy places the sticks on the drum.\", \" The guy gets up and heads to the camera.\", \" The guy covers the camera with his hand and then puts his face in the screen.\"]}, \"v_tAgVokWkdnQ\": {\"duration\": 207.03, \"timestamps\": [[0, 207.03], [54.86, 207.03]], \"sentences\": [\"These people are playing drums, tubas, xylophones, and trumpets.\", \" They have rehearsed this in the basketball room and on the football field.\"]}, \"v_L963epA4MFU\": {\"duration\": 27.05, \"timestamps\": [[0, 10.14], [2.57, 14.88], [14.74, 27.05]], \"sentences\": [\"Two men blow leaves in the street with leaf blowers.\", \" A dark car drives down the street.\", \" The man returns to blowing leaves and a tractor drives in from the left.\"]}, \"v_H0l29-F7Edg\": {\"duration\": 40.87, \"timestamps\": [[0, 4.7], [6.33, 19.21], [20.03, 40.87]], \"sentences\": [\"Two men are on the floor inside a kitchen.\", \" They are working on the floors, laying down grid and tile.\", \" The person opens the door to another room, where a woman is painting boards white.\"]}, \"v_XFijgUPprk4\": {\"duration\": 55.87, \"timestamps\": [[0, 55.87], [1.4, 51.68], [6.15, 26.26], [20.95, 43.86], [41.62, 55.87]], \"sentences\": [\"There are several gymnasts performing in a large gymnasium with some spectators seated in the bleachers.\", \" One of the gymnast dressed in red and white leotards is performing gymnastics on bars as his coach watches him.\", \" He does a hand stand and then does a front flip as he swings on the bars.\", \" He does another hand stand and a front flip as he twists his body.\", \" He continues swinging on the bars till he jumps off the bars and lands on his feet.\"]}, \"v_JEvEoAESqJ0\": {\"duration\": 9.64, \"timestamps\": [[0, 2.99], [2.6, 8.91], [7.13, 9.64]], \"sentences\": [\"People are running around a track.\", \" A man runs down a track and jumps into a pile of sand.\", \" A person in a purple shirt is holding a broom.\"]}, \"v_sGwra7t-ARo\": {\"duration\": 99.5, \"timestamps\": [[0, 15.42], [14.92, 71.64], [73.13, 99.5]], \"sentences\": [\"An athletic woman is seen standing ready then runs down a long track into a sand pit.\", \" Several more women are shown making the same jump down the track followed by slow motion shots of their jump immediately afterwards.\", \" The last woman claps to the audience and pans around several athletes and people watching and hugging.\"]}, \"v_IDVWoE02zjM\": {\"duration\": 25.89, \"timestamps\": [[0, 12.04], [14.11, 25.89]], \"sentences\": [\"A woman walks up stairs to talk to a woman.\", \" She sits on the steps outside of a house cleaning shoes.\"]}, \"v_n_sfeihU3f8\": {\"duration\": 78.16, \"timestamps\": [[0, 78.16], [25.01, 26.96], [29.31, 32.44], [37.13, 66.44], [64.09, 69.17], [69.95, 78.16]], \"sentences\": [\"A group of hockey players are skating around on the ice.\", \" A man in a red shirt comes close to the glass.\", \" The referee speeds past going to the left.\", \" the team all goes to the right then to the left.\", \" A man in red stands off alone in the center of the rink.\", \" the camera pans slightly left and the scene ends.\"]}, \"v_wmrrBnxbHjk\": {\"duration\": 60.65, \"timestamps\": [[0, 2.12], [2.43, 42.76], [19.41, 21.53], [34.27, 37.6]], \"sentences\": [\"We see an opening title screen.\", \" We see a foosball table and see people playing on the table.\", \" We see a person add a point by moving a silver bobble.\", \" We see a person score a point We then see the ending screen.\"]}, \"v_ez8ram5yd70\": {\"duration\": 98.27000000000001, \"timestamps\": [[4.42, 45.2], [39.31, 93.84]], \"sentences\": [\"A large group of people are seen standing around a gymnasium with many standing in the middle holding jump ropes.\", \" The people then begin jump roping one after the other while people stand on the sides recording their times.\"]}, \"v_RgMAHuMVRcU\": {\"duration\": 222.52, \"timestamps\": [[0, 24.48], [28.93, 107.92], [121.27, 173.56], [178.01, 192.48], [196.93, 222.52]], \"sentences\": [\"A couple of men are using long tools to cut branches off a tree in an orchard.\", \" They work their way around the tree before we see a video of a cloudy sky and the orchard, overlain with words describing what to do to successfully trim the trees.\", \" A man is shown walking toward the camera with a cutting tool in his hand.\", \" Numerous images of the orchard and trees are shown.\", \" A screen shows further information regarding the video.\"]}, \"v_vlX9sU9bM9s\": {\"duration\": 4.51, \"timestamps\": [[0, 2.79], [2.82, 4.51]], \"sentences\": [\"An athlete run holding a javelin.\", \" The, the man shoot the javelin while people stand on the sides watching.\"]}, \"v_wt0XC2EEh7Y\": {\"duration\": 97.66, \"timestamps\": [[0, 21.49], [21, 97.66]], \"sentences\": [\"woman is standing in a barn beside a black horse holding a big brush .\", \" woman stat to comb the horse's hair and talk about the corect way of brush the horse.\"]}, \"v_SvYeqLg4dQU\": {\"duration\": 113.83, \"timestamps\": [[0, 113.83], [27.89, 51.22], [52.36, 79.11], [93.34, 110.98]], \"sentences\": [\"Professional pool players play a game of billiards in a competition.\", \" The man holds out his billiards stick to line up a shot then takes the shot.\", \" The man chalks the end of his pool cue and walks to the corner of the table.\", \" The man leans over pumps the cue stick between his fingers before taking a shot.\"]}, \"v_ukPz_13Agis\": {\"duration\": 38.71, \"timestamps\": [[0.19, 2.32], [2.9, 34.64], [35.61, 38.71]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy repeatedly makes baskets.\", \" The credits of the video are shown.\"]}, \"v_gCDpUPvD3s4\": {\"duration\": 51.57, \"timestamps\": [[0, 30.17], [30.43, 51.57]], \"sentences\": [\"People rides horses holding polo sticks as well people that walk next to the horsemen.\", \" A person from the horse hit a ball with the polo stick, also a player hit the ball while walking.\"]}, \"v_K5v9-h2S5pw\": {\"duration\": 147.91, \"timestamps\": [[0, 76.91], [77.65, 129.42], [131.64, 147.91]], \"sentences\": [\"A man is talking at a podium to a panel of people.\", \" Another man joins him, playing a saxaphone.\", \" The man dances, disturbing the speaker while the panel laughs.\"]}, \"v_cXfflEWa83E\": {\"duration\": 181.07, \"timestamps\": [[0, 72.43], [57.04, 130.37], [124.03, 174.73]], \"sentences\": [\"A person is seen riding along the water on a string riding a wake board.\", \" The person rides all around the area while jumping up and over waves.\", \" The person continues riding back and fourth and ends by fading to black.\"]}, \"v_D0RDF1ez-8Y\": {\"duration\": 178.89, \"timestamps\": [[0, 16.99], [18.78, 138.64], [142.22, 178.89]], \"sentences\": [\"A girl is sitting in front of a camera talking.\", \" She is rubbing clean a contact into her hand as she talks.\", \" She balances it on her finger, then inserts it into her eye.\"]}, \"v_uM3RiCL0g2U\": {\"duration\": 190.4, \"timestamps\": [[0.95, 187.55], [0.95, 31.42], [33.32, 37.13], [37.13, 64.74], [64.74, 177.08], [177.08, 187.55]], \"sentences\": [\"A man demonstrates how to train a dog to catch a frisbee inside of a gym room where the room is lined with frisbees.\", \"  A man talks to a camera inside of a room while holding many white frisbees in his hand.\", \"  The camera pans out to reveal a dog standing in the room with the man with a white frisbee in its mouth.\", \"  The man proceeds to throw frisbees at which point the dog catches the frisbee.\", \"  The dog then performs tricks including rolling over, jumping on the man\\u2019s back all in the effort to get the frisbee from the man.\", \"  The dog then jumps in the man\\u2019s arms at the man\\u2019s command as the scene fades out.\"]}, \"v_Htp7EK8IB18\": {\"duration\": 38.36, \"timestamps\": [[0.77, 6.71], [6.71, 20.33], [18.22, 38.36]], \"sentences\": [\"A young child is seen sitting in a tube while riding down a mountain.\", \" The cameraman pans around to other people riding in tubes down the hill.\", \" The two continue riding down after one another and the boy smiling to the camera.\"]}, \"v_jRXF5_vNUWE\": {\"duration\": 131.12, \"timestamps\": [[0, 24.91], [24.91, 61.63], [61.63, 96.38], [96.38, 131.12]], \"sentences\": [\"A cheerleading squad walk up and is set in place on the stage to begin their performance for competition.\", \" They start their routine and are in sync not missing a beat.\", \" They flip clearing the middle of the stage and then they start a line in the middle, throwing girl up and bringing them down and catching them, they continue on with their routine.\", \" 3 girls on top have C H S signs and when they are done they all run up off the stage.\"]}, \"v_f0On10HA3HQ\": {\"duration\": 135.61, \"timestamps\": [[0, 18.31], [18.31, 88.82], [88.82, 135.61]], \"sentences\": [\"A man is outside in a field fiddling with wires on some sort of object.\", \"After some time,he gives a thumbs up and begins riding something into the water.\", \"As he travels,he passes by several boats and ends up making it to the other side of the land and is congratulated by the people.\"]}, \"v_z2qG-TOSwqw\": {\"duration\": 49.2, \"timestamps\": [[0, 13.53], [13.29, 23.62], [23.13, 49.2]], \"sentences\": [\"A girl is sitting down in a yellow room as a person is holding her lip with long tweezers.\", \"The young girl shows signs of being scared and she clenches the hand of a supporter.\", \"Finally,the piercing person sticks the needle through and the girl's lip continues to get pierced.\"]}, \"v_eTVzSwuCfd8\": {\"duration\": 226.86, \"timestamps\": [[10.21, 27.22], [28.36, 210.98], [210.98, 220.05]], \"sentences\": [\"A woman is brushing her hair.\", \" She starts blow drying her hair with a rolling brush.\", \" She finishes and styles her hair.\"]}, \"v_YveUW4bLL5A\": {\"duration\": 69.75, \"timestamps\": [[0, 69.75], [0.7, 6.98], [9.42, 63.48], [17.09, 65.57]], \"sentences\": [\"The video shows a demonstration of Dyson vacuum cleaner and how well it can clean particles from the floor.\", \" There's rice grain, flour and other food particles scattered on the floor.\", \" The demonstrator turns on the vacuum cleaner and begins vacuuming the floor with the yellow Dyson vacuum.\", \" The person uses back and forth motion to clean the particles till all the particles are sucked into the vacuum, leaving the floor clean.\"]}, \"v_XuG2V9gDD9M\": {\"duration\": 97.99000000000001, \"timestamps\": [[0, 97.99], [42.14, 79.37], [42.14, 89.17]], \"sentences\": [\"Two kids are standing on a wind kite on the grass.\", \" The boy lifts up the sail and moves it around.\", \" The girl sits on the kite.\"]}, \"v_TAC-5hXVLPY\": {\"duration\": 177.66, \"timestamps\": [[0, 171.44], [5.33, 56.85], [50.63, 116.36], [108.37, 135.02], [132.35, 171.44]], \"sentences\": [\"There's a man demonstrating archery skills in an indoor gym.\", \" He begins by picking up the bow and arrow to show how to correctly hold and position the arrow.\", \" He then shows how to stretch the hand to extend the bow by pulling the string towards him.\", \" He also shows how to release the string in order to shoot the arrow straight across.\", \" Then he shows the correct stance and the anchoring of the arrow to accurately aim and shoot the target.\"]}, \"v_HVKveVRZ-JY\": {\"duration\": 27.1, \"timestamps\": [[0, 12.19], [12.87, 27.1]], \"sentences\": [\"A lot of people are swimming in a public pool.\", \" They play and splash, then swim in unison to one end.\"]}, \"v_VdY1Shdks6o\": {\"duration\": 82.2, \"timestamps\": [[0, 28.77], [23.02, 63.29], [54.66, 82.2]], \"sentences\": [\"One hand pour liquid on contact lense on the other hand.\", \" The hand rub the lense with the solution and then the finger picked it up.\", \" The woman put the lens on side of her eye and blink and then removed the lens again.\"]}, \"v_6r3qgd1y5KE\": {\"duration\": 152.18, \"timestamps\": [[0, 22.07], [28.15, 120.99], [125.55, 152.18]], \"sentences\": [\"A woman holds a leveler against a wall, measuring for wallpaper.\", \" She applies the wallpaper one sheet at a time, balancing on a board.\", \" The final product is shown, the wall fully covered.\"]}, \"v_ZwxvczODMbM\": {\"duration\": 51.36, \"timestamps\": [[0, 25.17], [25.42, 48.54], [50.34, 51.36]], \"sentences\": [\"A girl and a boy are arm wrestling on a chair.\", \" The girl turns around and they arm wrestle again.\", \" They finish and they both stand up.\"]}, \"v_yl3bjdUZrmM\": {\"duration\": 38.52, \"timestamps\": [[0.39, 20.61], [19.45, 38.14]], \"sentences\": [\"A person is seen pumping out sunscreen to kids as they rub it all over their skin.\", \" Many speak to the camera while doing activities and continue to rub it all over their faces and arms.\"]}, \"v_vgXU0u-rN9c\": {\"duration\": 59.26, \"timestamps\": [[2.07, 58.96], [2.07, 36.74], [36.74, 39.7], [41.78, 47.41]], \"sentences\": [\"An alcohol commercial exhibits a waiter preparing mixed drinks at a portable bar at a beach party.\", \"  A bartender prepares a mixed drink at a bar using a tumbler and lemon wedge.\", \" The camera pans out and one can now see that the man is wearing the bar platform around his neck, and that the bar is portable.\", \"  People surround him dancing and smiling at a beach party.\"]}, \"v_4vOxhqUbHL8\": {\"duration\": 158.45, \"timestamps\": [[4.75, 143.4], [12.68, 45.95]], \"sentences\": [\"A man plays tam-tam mainly using the one on front him.\", \" A person plays the battery using two sticks.\"]}, \"v_w8kVVzMOC98\": {\"duration\": 220.29, \"timestamps\": [[0, 46.26], [48.46, 157.51], [168.52, 220.29]], \"sentences\": [\"A bowling ball and its measurements are shown.\", \" A man runs down the path, then throws the ball.\", \" The ball is shown hitting the pins, creating a strike.\"]}, \"v_0w-3O0ZOQFQ\": {\"duration\": 72.58, \"timestamps\": [[0, 10.52], [11.25, 41.01], [41.73, 72.58]], \"sentences\": [\"A woman is seen standing and talking in her kitchen.\", \" She puts down a cleaning solution on the floor.\", \" She then uses a mop to mop the floor clean.\"]}, \"v_WPK5VeqNSh8\": {\"duration\": 145.29, \"timestamps\": [[0, 1.45], [2.18, 36.32], [36.32, 43.59], [43.59, 145.29]], \"sentences\": [\"A blue and white title page appears with the words,\\\"Ice-Magic, All New Curling Rink\\\".\", \"It dissipates and two people on a tv show grab a large circular object with a handle on it and places it at the end of the mat and comes back to talk to the other two people.\", \"One of the men then grab their shoes and begins asking questions about it.\", \"Then two of the men take turns throwing the object and trying to win.\"]}, \"v_9-yueOtwiL8\": {\"duration\": 230.69, \"timestamps\": [[0, 8.07], [8.07, 18.46], [18.46, 29.99], [29.99, 48.45], [48.45, 230.69]], \"sentences\": [\"man is standing inside a court practicing a shot put.\", \" a man is in a racetrack doing a shot put with a lot of people around him watching him.\", \" man is in a practicing field practicing a shot put on sunny day.\", \" man is doing a javeling throw in a big large field.\", \" men are praticing shot puts and javelin throws on fields.\"]}, \"v_rMZtiiLAqoY\": {\"duration\": 118.14, \"timestamps\": [[0, 27.17], [21.27, 105.15], [105.15, 118.14]], \"sentences\": [\"A man is seen speaking to the camera and holding up a coin to put in a machine.\", \" The man puts the coin in as well as a knife and begins playing a game of fooseball using a lever moving the ball around the side.\", \" He ends by smiling to the camera and giving a thumbs up.\"]}, \"v_zz3Mw8FMA70\": {\"duration\": 121.88, \"timestamps\": [[0, 121.88], [6.7, 121.88], [38.39, 48.14], [88.97, 121.88]], \"sentences\": [\"The video takes place with a young man alone in a bedroom.\", \" He is holding a pipe, smoking while blowing smoke in the air.\", \" At one point, he gives a thumbs up to the camera.\", \" The video ends with the man picking up a box and showing money to the camera.\"]}, \"v_fJNauQt9Di0\": {\"duration\": 182.46, \"timestamps\": [[0, 181.55], [0, 182.46], [73.9, 182.46]], \"sentences\": [\"man is staying in a white room playing the violin.\", \" man is wearing big beats headphones and playing the violin.\", \" the man stops playing and starts again.\"]}, \"v_Sx3NHkPp3Jo\": {\"duration\": 112.34, \"timestamps\": [[0, 39.32], [35.39, 80.32], [75.27, 107.28]], \"sentences\": [\"An athletic man is seen standing ready before a long track and making a long jump into a sand pit.\", \" Another man takes his turn running down and ends by speaking to others.\", \" Several more runners are seen and end with a man bending down and cheering.\"]}, \"v_PYNTOqgOXWc\": {\"duration\": 63.93, \"timestamps\": [[2.24, 15.02], [15.34, 33.56], [36.44, 59.45]], \"sentences\": [\"A man begins wetting the mop in the Century mop bucket system.\", \" The mop is then used to clean the floor, gliding along the tiles with ease.\", \" The mop is placed back into the bucket system to be cleaned, then the floor cleaning resumes.\"]}, \"v_dJknA-jTNGc\": {\"duration\": 54.61, \"timestamps\": [[0, 52.7], [14.75, 29.49], [35.5, 54.61]], \"sentences\": [\"A few groups of people are going whitewater rafting on a river.\", \"  One boat tips over and a few people spill out.\", \"  The rest of the people keep going.\"]}, \"v_pPM1jC_NlzI\": {\"duration\": 67.76, \"timestamps\": [[0, 15.58], [15.92, 40.66], [40.99, 67.76]], \"sentences\": [\"A man is standing outside in front of two machines placed on the concrete.\", \"He goes to one machine and grabs a long stick attached to a wire and begins creating sparks on an object.\", \"The man then turns the voltage up and continue with his task.\"]}, \"v_mO1T8zhIliY\": {\"duration\": 233.85, \"timestamps\": [[0, 181.23], [177.73, 206.96]], \"sentences\": [\"two people are playing fencing holding \\u00e9p\\u00e9es on his arms standing in a white stage.\", \" man is aproaching to the stage and check the \\u00e9p\\u00e9e of the boy.\"]}, \"v_VXLyTLY1PAw\": {\"duration\": 6.32, \"timestamps\": [[0.03, 1.48], [1.58, 5.49], [4.48, 6.32]], \"sentences\": [\"Two people are standing on a field.\", \" A man runs and jumps over a bar onto a purple mat.\", \" A man in a blue hat is standing next to them.\"]}, \"v_MvZFYjs80Y4\": {\"duration\": 209.98, \"timestamps\": [[0, 70.34], [60.89, 157.48], [107.09, 197.38]], \"sentences\": [\"Two men are seen sitting on each side of a table laughing with one another.\", \" The two are then seen playing a game with one another and smacking the person who loses.\", \" The men continue playing and smacking one another while laughing to the camera.\"]}, \"v_XYW6F_4qKJU\": {\"duration\": 59.77, \"timestamps\": [[0.9, 8.67], [7.77, 38.85], [39.15, 58.57]], \"sentences\": [\"A cat is seen close up with a person holding it from behind.\", \" The person is seen holding clippers and begins cutting the cat's nails.\", \" The person continues to cut the nails while the cat sits on the side.\"]}, \"v_YSrnHPcdGL4\": {\"duration\": 187.76, \"timestamps\": [[10.33, 45.06], [34.74, 37.55], [169.92, 187.76]], \"sentences\": [\"Several people fire their bow and arrows.\", \"  A man throws down many of his arrows.\", \"  The teams high five each other with gusto.\"]}, \"v_eLJYFoCx-gc\": {\"duration\": 89.21000000000001, \"timestamps\": [[0, 12.04], [12.94, 36.13], [36.58, 74.94], [75.38, 89.21]], \"sentences\": [\"An athletic person is seen standing ready at a start and lining and running down a long track into a sand pit.\", \" The woman looks off into the distance and her previous run is shown again in slow motion.\", \" She cheers and runs over to her teammates while clapping and speaking to reporters.\", \" Her jump is shown again one last time.\"]}, \"v_j4iaeT5xIdw\": {\"duration\": 192.26, \"timestamps\": [[0, 0.96], [1.92, 182.65], [130.74, 192.26], [130.74, 131.7], [189.38, 192.26]], \"sentences\": [\"The credits of the clip are shown.\", \" Children play soccer outdoors with a lime green ball.\", \" Girls play against boys indoors.\", \" The goalie stops the ball from hitting the goal.\", \" The credits of the video are shown.\"]}, \"v_0EewuppFjEw\": {\"duration\": 55.15, \"timestamps\": [[0, 18.75], [19.03, 38.6], [39.43, 55.15], [48.25, 55.15]], \"sentences\": [\"We see a sign for tubing and see a person walk to the hills quickly.\", \" We then see the camera man ride a rube down a hill.\", \" We see a person push a tube down a hill.\", \" We then see the ending title screen.\"]}, \"v_WKXIl7wvlk0\": {\"duration\": 68.2, \"timestamps\": [[0, 28.3], [23.19, 68.2]], \"sentences\": [\"A large group of children are seen standing around a field and begin playing a match of field hockey.\", \" The kids run around the field with their sticks chasing the ball and ends with credits rolling across the screen.\"]}, \"v_SL7iKDqir6g\": {\"duration\": 44.14, \"timestamps\": [[0, 24.72], [19.2, 44.14]], \"sentences\": [\"A close up of sticks are shown as well as food laid out and pouring pasta into a bowl.\", \" A woman then mixes ingredient with the pasta and then continues speaking to the camera.\"]}, \"v_ZYPKueJon34\": {\"duration\": 24.34, \"timestamps\": [[0.12, 23], [0.24, 6.33], [6.45, 7.91], [9, 23.6]], \"sentences\": [\"A shaky camera films a woman jumping off of a bridge and landing on a paved ground, far below, in a failed bungee jumping attempt.\", \"  Several people are standing at the top of an elevated stone bridge surrounded by trees and wildlife, including a woman strapped in bungee jumping gear.\", \"  The woman is standing at the end of the bridge and jumps off with the bungee cord flailing behind her.\", \"  The camera loses focus and begins to move erratically, eventually focusing on the ground, far below, where several people are gathered around what appears to be the bungee jumping woman's body on the ground.\"]}, \"v_Mgym0F-T7Js\": {\"duration\": 179.96, \"timestamps\": [[0, 38.69], [35.09, 132.27], [125.97, 175.46]], \"sentences\": [\"A man is seen speaking to the camera and begins wiping down a piece of furniture.\", \" He wets the cloth over and over again while still rubbing it all along the furniture.\", \" He continues rubbing and ends by smiling to the camera.\"]}, \"v_lc-piYwzqsA\": {\"duration\": 48.6, \"timestamps\": [[0, 6.8], [7.05, 43.5], [44.71, 48.6]], \"sentences\": [\"A gymnast gets on the pommelhorse and does a routine.\", \"  The man spins while the audience watches and dismounts.\", \"  The coach runs up to the athlete.\"]}, \"v_BLamvR0GIE8\": {\"duration\": 49.9, \"timestamps\": [[0, 7.98], [7.98, 49.9]], \"sentences\": [\"A grown man is seen talking to the camera with his hands and walking down a hallway.\", \" He walks into a bathroom and washes his hands while still talking to the camera, and walks back out.\"]}, \"v_50b9lVikSeo\": {\"duration\": 36.13, \"timestamps\": [[0, 19.15], [17.16, 36.13]], \"sentences\": [\"A close up of a machine is shown followed by a close up of a vacuum and a person using her foot.\", \" The person pushing the vacuum along the floor and then empties out the filter into the trash.\"]}, \"v_0uOMJSUza68\": {\"duration\": 108.5, \"timestamps\": [[0, 108.5], [7.05, 108.5]], \"sentences\": [\"A person is seen sitting in a dark room and brushing the hair on a doll.\", \" She brushes all throughout it's hair and ties it up above it's head.\"]}, \"v_oc4v7GPk05c\": {\"duration\": 9.47, \"timestamps\": [[0, 2.37], [2.94, 6.82], [7.2, 9.47]], \"sentences\": [\"A group of children have gathered on a field.\", \" They are playing a game of soccer.\", \" A girl runs across the field with the ball in her hand.\"]}, \"v_TyHLBe6__rc\": {\"duration\": 238.1, \"timestamps\": [[0, 63.1], [60.71, 182.14], [127.38, 228.57]], \"sentences\": [\"Several shots are shown of men standing on the beach that lead into them riding on surf boards in the water.\", \" This men kite surf all over the ocean while performing various flips and tricks.\", \" People watch them on the sides at they continue to perform and jump around the water.\"]}, \"v_EXxckPa76vc\": {\"duration\": 70.15, \"timestamps\": [[0, 70.15], [53.31, 70.15]], \"sentences\": [\"A foosball championship game is shown.\", \"  The black team scores a goal.\"]}, \"v_OUpTPRtEITY\": {\"duration\": 175.82, \"timestamps\": [[7.03, 15.82], [7.03, 166.15], [167.91, 175.82]], \"sentences\": [\"A man in a red shirt is playing badminton.\", \" He walks around the court and demonstrates how to hit it.\", \" Words are shown on the screen.\"]}, \"v_Pr6zL1ToSC4\": {\"duration\": 145.29, \"timestamps\": [[0, 14.53], [18.16, 21.07], [29.78, 145.29]], \"sentences\": [\"Water is in front of the mountains.\", \" A rock climber descends from the top of a cliff.\", \" A man in a green shirt is scaling a wall.\"]}, \"v_Cy2wqpjppy8\": {\"duration\": 64.18, \"timestamps\": [[0, 64.18], [9.31, 64.18], [34.02, 36.26]], \"sentences\": [\"A large helicopter is flying in a clear blue sky above a beach that has people, and a man and a child are the main focus of the people playing in the sand.\", \" The child is wearing a blue and white wet shirt and swimming trunks and is playing with the sand with his just his hands.\", \"The man is wearing a sleeveless black shirt and black and red shorts and he's bending over and using a blue shovel to pound sand into a sand toy.\"]}, \"v_oO1g33vi4hg\": {\"duration\": 220.92000000000002, \"timestamps\": [[0, 213.18], [6.63, 213.18], [212.08, 220.92]], \"sentences\": [\"People are snowboarding down a hill of snow.\", \" He does tricks and jumps going down the hill.\", \" Words come onto the screen at the end.\"]}, \"v_9hE6VRD3qXQ\": {\"duration\": 177.03, \"timestamps\": [[0, 23.9], [26.55, 103.56], [105.33, 152.24], [154.9, 177.03]], \"sentences\": [\"A man kneels next to other men on a freshly tiled floor.\", \" They use scrapers to put a new base on the floor.\", \" Two women smile as they watch the men work.\", \" The men lay down the tile evenly, then pin them in place.\"]}, \"v_6HmKyms-U2s\": {\"duration\": 82.06, \"timestamps\": [[0, 82.06], [4.51, 82.06], [16.41, 82.06], [43.49, 82.06]], \"sentences\": [\"Two kids play raquetball in a room.\", \" The hardwood floors have red stripes on them.\", \" The kids hit the ball off the wall.\", \" The kid in red goes forth.\"]}, \"v_IU6LVYI0FZM\": {\"duration\": 62.51, \"timestamps\": [[0.94, 32.82], [26.88, 60.32]], \"sentences\": [\"Two people are seen facing one another in a ring and lead into them performing various flips and kicks around one another.\", \" The men continue kicking and jumping around one another while many watch on the sides and one man knocks the other down.\"]}, \"v_al_NNsjwU-Q\": {\"duration\": 55.66, \"timestamps\": [[0, 37.57], [37.57, 55.66], [21.99, 22.54]], \"sentences\": [\"A little girl performs pommel horse while a woman watch her.\", \" The little girl falls from the pommel horse, but she quick gets on and continues exercising until jumps on the floor.\", \" A girl raise hands up while performing.\"]}, \"v_4cd0sNdLmT4\": {\"duration\": 5.46, \"timestamps\": [[0, 2.24], [2.18, 5.46]], \"sentences\": [\"A person is using a pitchfork to remove the roof materials.\", \" The person tosses the unattached roof material below.\"]}, \"v_7fwrkFHTm-Q\": {\"duration\": 123.42, \"timestamps\": [[0, 29], [29.62, 116.01], [116.01, 123.42]], \"sentences\": [\"A man wearing a white t-shirt practices punching and kicking a punching bag.\", \" The man practices boxing moves on the punching bag.\", \" The man removes the straps from the boxing gloves and adjusts the camera.\"]}, \"v_fd7VuzALBCM\": {\"duration\": 81.2, \"timestamps\": [[0, 1.62], [2.03, 28.83], [29.64, 56.43], [56.84, 75.52]], \"sentences\": [\"A big chunk of snow is on the roof of a car.\", \" A man cleans the snow of a car using a scraper with a big and a small head.\", \" Then, the man extends the handle of the scraper to cleans the roof.\", \" After, the man retract the handle and keep the scraper.\"]}, \"v_079MEwdDNjg\": {\"duration\": 162.82999999999998, \"timestamps\": [[0.81, 54.55], [46.41, 123.75], [112.35, 159.58]], \"sentences\": [\"A large group of people are seen standing on a field with players carrying others on their backs.\", \" Men then play back and fourth with players and shake their hands while cheering around.\", \" The men continue to huddle and play a game of rock paper scissors while cheering afterwards.\"]}, \"v_kl9xvnAKfdE\": {\"duration\": 49.74, \"timestamps\": [[0, 49.74], [11.44, 35.07], [34.82, 40.29], [40.04, 45.01]], \"sentences\": [\"We see lading playing a game with sticks.\", \" We can see the far scoreboard.\", \" Number 12 starts backing up.\", \" The girls run to catch the ball up against the glass.\"]}, \"v_UodvUEkuVig\": {\"duration\": 203.57, \"timestamps\": [[0, 203.57], [14.25, 123.16], [123.16, 203.57]], \"sentences\": [\"This woman is showing viewers how to get big bouncy curls using hot rollers.\", \" First she lets the rollers heat up and she puts them onto her hair.\", \" Next she flat irons the bottom layer of her hair that doesn't have rollers on there  and when the roolers cool off she takes them out.\"]}, \"v_69DNcmkoapw\": {\"duration\": 146.07999999999998, \"timestamps\": [[0, 146.08], [75.23, 76.69]], \"sentences\": [\"Two kids are washing their clothes in a sink.\", \" They put the clean clothes in a bucket on the floor.\"]}, \"v_4lxS8OJRsa8\": {\"duration\": 170.46, \"timestamps\": [[0, 41.76], [41.76, 107.39], [107.39, 170.46]], \"sentences\": [\"Several people are in doors in a gym and watching a Caporeria match.\", \"The two people continue doing the Brazilian martial arts as the people in the crowd continue to watch.\", \"A man from behind them grabs a microphone and then talking as several people start to form a line across the stage.\"]}, \"v_sbr3HKm2Y9I\": {\"duration\": 196.57999999999998, \"timestamps\": [[0.98, 98.29], [93.38, 196.58]], \"sentences\": [\"A large marching band is seen performing together in front of a large crowd.\", \" The bang continues playing their instruments while dancing around one another and ends with a pose and standing together.\"]}, \"v_ccKJg_f1UDo\": {\"duration\": 33.02, \"timestamps\": [[0, 11.06], [10.9, 21.79], [21.13, 33.02]], \"sentences\": [\"Several young kids are dressed in leotards in a gymnasium doing flips and acrobats.\", \"In the middle of the gym,a girl is doing a routine on the balance beam.\", \"After several flips and turns on the beam,she jumps off and a lady from the side panel begins to hold up her score.\"]}, \"v_lAN2pe1lW-o\": {\"duration\": 38.78, \"timestamps\": [[0, 12.6], [10.66, 29.28], [26.18, 37.81]], \"sentences\": [\"An athletic man is seen spinning around and throwing an object off into the distance.\", \" More shots are shown of the man spinning himself around and throwing an object while others measure his throw.\", \" He throws the object one more time and his score is shown.\"]}, \"v_G8OyFOhVGCI\": {\"duration\": 143.5, \"timestamps\": [[3.59, 43.05], [32.29, 104.04], [89.69, 141.35]], \"sentences\": [\"A close up of a tattoo shop is shown followed by a girl sitting in a chair and looking excited.\", \" A man then pierces the girls nose and puts a ring inside while she wipes it down.\", \" The girl looks around all excited and her piercer is seen talking as well as it shown again.\"]}, \"v_hRk-3fep5WQ\": {\"duration\": 48.69, \"timestamps\": [[0, 23.37], [23.86, 48.69]], \"sentences\": [\"A woman with excessively long hair down to her ankles is standing in a room in front of a couch getting it brushed by a male.\", \"The man then grabs a handful of the hair around her back and continues brushing the hair.\"]}, \"v_BSsXKG9dFHI\": {\"duration\": 64.74, \"timestamps\": [[0, 5.18], [7.12, 49.85], [51.47, 64.74]], \"sentences\": [\"A person is riding on a recumbent bike, then a woman is shown taking off her shoes and standing on a scale.\", \" She rides an elliptical while another woman watches.\", \" Several people are shown riding elliptical trainers.\"]}, \"v_m3yLm_dJU94\": {\"duration\": 140.13, \"timestamps\": [[2.8, 51.15], [52.55, 138.73]], \"sentences\": [\"A group of cheerleaders are seen flipping together while a woman speaks to the camera.\", \" More people are seen speaking to the camera that transitions from cheerleaders performing tricks.\"]}, \"v_P2hrv6QzDPI\": {\"duration\": 173.9, \"timestamps\": [[0, 48.69], [40, 173.9]], \"sentences\": [\"The camera pans over a man playing a musical instrument and another person walking into frame playing.\", \" Two more people walk out holding instruments and then all of them play together.\"]}, \"v_ubNDaGOws0E\": {\"duration\": 122.39, \"timestamps\": [[0, 18.97], [21.42, 74.66], [77.11, 122.39]], \"sentences\": [\"A couple is dancing inside a kitchen.\", \" A couple of other people watch and take pictures.\", \" They swing and swirl around the room.\"]}, \"v_Q-fUXywUo7o\": {\"duration\": 144.61, \"timestamps\": [[0, 13.02], [13.74, 20.97], [25.31, 113.52], [122.92, 144.61]], \"sentences\": [\"A newspaper is lying on the ground, and a boy is kneeling beside it.\", \" He shows off a black shoe, which he intends to polish.\", \" He shows the camera his polish and brush, then sets about polishing the shoe with the brush and polish.\", \" When he is done, he shows off the finished product.\"]}, \"v_A1EflBqBv14\": {\"duration\": 97.05, \"timestamps\": [[1.94, 37.36], [32.51, 75.21], [75.21, 96.08]], \"sentences\": [\"A man and woman are seen hosting a news segment and leads then kneeling down and speaking to one another.\", \" The two then have an arm wrestling match with one another and the girl points off into the distance.\", \" She grabs his hand with both hands and stands back up while shaking hands.\"]}, \"v_U_ia-tINzpw\": {\"duration\": 129.08, \"timestamps\": [[0, 88.42], [88.42, 109.07], [109.07, 129.08]], \"sentences\": [\"An artistic and slow motion video begins and a man is walking on an empty street carrying a black case and when he stops to open it it's his saxophone.\", \" He then begins to play his saxophone in the middle of the empty street.\", \" When the man is done he stops playing and the black outro screen appears with his brand name, two small videos of him playing, his itune link and subscribe button.\"]}, \"v_gpJ7veSnhUs\": {\"duration\": 216.04, \"timestamps\": [[0, 27], [27, 216.04]], \"sentences\": [\"teams are walking on sides of a field and are shaking hands, when are in court agrouped in a circle.\", \" men are in position to start the game and start playing curling.\"]}, \"v_OHNH7IV0768\": {\"duration\": 18.07, \"timestamps\": [[0, 18.07], [1.72, 18.07], [3.88, 18.07], [6.32, 18.07]], \"sentences\": [\"Several people are in a pool of water.\", \" They are hitting a yellow ball.\", \" The swim around the pool.\", \" People walk alongside the pool.\"]}, \"v_TFIlTCvL4oQ\": {\"duration\": 221.96, \"timestamps\": [[0, 42.17], [47.72, 175.35], [147.6, 213.08]], \"sentences\": [\"Several shots are shown of people riding in tubes as well as one grabbing one and dragging it up a hill.\", \" People are seen bringing the tubes up the hill and beginning to ride down.\", \" More and more people ride down the hill on tubes as well as riding back up and posing for cameras.\"]}, \"v_o-aSCtwxsTw\": {\"duration\": 41.1, \"timestamps\": [[0, 14.8], [14.39, 31.65], [28.98, 39.66]], \"sentences\": [\"A large kite is seen flying in he sky with a small group of people underneath.\", \" The kite swirls in various motions all around the sky.\", \" The kite continues moving while people underneath look up and watch.\"]}, \"v_FX4inHmWQtE\": {\"duration\": 156.78, \"timestamps\": [[0, 10.97], [11.76, 23.52], [27.44, 135.62], [137.97, 156.78]], \"sentences\": [\"A group of police cars are parked as a couple of girls in swim suits stand around them.\", \" A girl is shown driving the car as another gives a thumbs up.\", \" They get intertubes and float gently down a river together.\", \" Views are shown under the murky water of the rocks.\"]}, \"v_mDvWGOr_sws\": {\"duration\": 194.72, \"timestamps\": [[0, 24.34], [22.39, 40.89], [40.89, 47.71], [47.71, 74.97], [74.97, 85.68], [85.68, 119.75], [119.75, 185.96], [180.12, 185.96]], \"sentences\": [\"A group of  five girls are performing a jump roping performance, there is another group of girls sitting down by the wall, as well as an overhead projector that is playing music.\", \" Some of the girls drop their rope to join their team to jump together using a single rope.\", \" The group of girls now use one rope to jump together as a team.\", \" All girls grab their individual ropes again to perform with, One of the girls in the back seem to be struggling with the rope.\", \" All girls drop their jump ropes, the girls who were now sitting swap places with the jump ropers.\", \" The new girls sit down in unison to prepare for their performance, a new song begins to play and they stand, they now begin to dance together as a team.\", \" They seperate into two groups, and one person flips in between them, they then proceed to dance together.\", \" All girls walk of the stage and the crowd applauds them.\"]}, \"v_ssHXm1LqovI\": {\"duration\": 11.59, \"timestamps\": [[0, 4.52], [4.06, 11.59]], \"sentences\": [\"A group of basketball players are seen standing on a gymnasium floor with several people watching on the sides.\", \" One of the players falls to the floor with another making a gesture in the background.\"]}, \"v_Lzvtnr4gT8Y\": {\"duration\": 85.66, \"timestamps\": [[0, 44.97], [17.99, 44.97], [79.23, 85.66]], \"sentences\": [\"A person in a red shirt is laying down on a bed.\", \" Someone is shaving the leg of the person.\", \" They sit up and put their legs on the floor.\"]}, \"v_EwYgRPVDQWQ\": {\"duration\": 122.23, \"timestamps\": [[8.56, 118.56], [7.33, 16.5], [17.11, 37.28], [37.89, 100.23], [100.84, 116.73]], \"sentences\": [\"A group of people are preparing packed sandwiches in an outdoor setting.\", \" A woman in dark dress takes some pictures then cup up the wrapping paper.\", \" Woman wash vegetables and prepare fruit dressing.\", \" More people help with grilling, blending and cutting.\", \" All the people eventually assemble and wrap the sandwiches together.\"]}, \"v_t0XM3ivJYUo\": {\"duration\": 49.98, \"timestamps\": [[0, 49.48], [7.5, 9], [25.99, 28.74], [43.99, 48.98]], \"sentences\": [\"Two boys are playing table tennis.\", \" The boy in a white, tee shirt places the handle put of the paddle on this chin before he serves.\", \" The ball bounces of the table and falls to the ground.\", \" A man waves his hands gesturing to the players.\"]}, \"v_7-jcXxwqf5E\": {\"duration\": 216.02, \"timestamps\": [[10.8, 38.88], [38.88, 76.69], [76.69, 118.81], [119.89, 126.37], [126.37, 140.41], [140.41, 152.29], [152.29, 167.41], [167.41, 185.77], [185.77, 199.81]], \"sentences\": [\"A man reels on a fishing rod while ice fishing.\", \" The man kneels beside the ice fishing hole while reeling.\", \" The man pulls several fish out of the hole.\", \" The man stands up and walks out of camera view.\", \" The man hooks one of the fish on a portable weighing scale.\", \" The man drops the fish back into the hole.\", \" The man weighs the other fish on the portable scale.\", \" The man drops the other fish back into the hole.\", \" The man walks towards the camera and stands in front of it.\"]}, \"v_Ld2a5ogu9k8\": {\"duration\": 36.13, \"timestamps\": [[0, 19.51], [19.51, 32.16], [32.16, 36.13]], \"sentences\": [\"woman is siting in a bed and its putting white socks.\", \" woman grab the shoes from the floor and wear them.\", \" when the shoes are in the feet the camera make a zoom on them.\"]}, \"v_3bi2XM3scQA\": {\"duration\": 52.06, \"timestamps\": [[0, 5.21], [5.21, 28.11], [28.11, 52.06]], \"sentences\": [\"A shirtless man wearing long pants and red shoes is bent over and has his two hands gripping onto a barbell with two very large weights on the ends of it.\", \"The man then picks it up, squats, jumps to open his legs then quickly drops the bar and pushes the weight towards the middle of the bar and rests for a little bit.\", \"The man goes back to the bar, struggles to pick it up, holds it above his head and then throws it to the ground where it bounces very hard.\"]}, \"v_hoYF0DhYVOI\": {\"duration\": 72.03, \"timestamps\": [[0, 5.4], [10.08, 47.9], [47.9, 55.82], [63.75, 72.03]], \"sentences\": [\"A woman pours ice into a glass.\", \" She adds shots of alcohol to the glass.\", \" She then pours it into another glass and shakes it.\", \" She pours that into a glass and sticks a straw in it.\"]}, \"v_jnOqi_9KJiE\": {\"duration\": 35.23, \"timestamps\": [[0, 7.22], [7.22, 22.9], [22.9, 35.23]], \"sentences\": [\"A woman wearing a bandanna and a grey shirt is sitting down on a grey couch carving something.\", \"She then begins talking in front of a tank of fish and bends her head down in agony.\", \"Once her head is lifted up,she begins making faces and appears to be extremely aggravated.\"]}, \"v_QokthYjtPzM\": {\"duration\": 112.9, \"timestamps\": [[0, 6.21], [6.21, 20.32], [20.32, 37.26], [37.26, 79.03], [79.03, 97.66], [97.66, 106.69], [106.69, 112.9]], \"sentences\": [\"A hand with very glittered gold and silver nails are being shown and the words \\\"Glitter nails\\\" are displayed.\", \"The tutorial begins and a supply list along with pictures of the supplies of what you need to get the same glitter nails look are displayed.\", \" The first step is a hand holding gold nail polish and she begins to apply the nail polish to her pointy and middle finger nails.\", \" The second step is shown and it's pouring the glitter onto the nails before the nail polish dries ensuring that every part of the nail gets glitter.\", \" The last step is to apply the clear coat over the very glittered nails and ensuring that all edges are covered.\", \" The second coat is then applied but you are instructed to make sure that the first layer is completely dried.\", \"Once they are dried, you are done.\"]}, \"v_RMkaNGdydws\": {\"duration\": 173.11, \"timestamps\": [[0, 14.71], [17.31, 151.47], [151.47, 173.11]], \"sentences\": [\"A man is working in a warehouse store.\", \" He shows off the products as he talks about how to cut metal.\", \" He then demonstrates the technique for the camera.\"]}, \"v_fnPX_0Rs4eE\": {\"duration\": 102.05, \"timestamps\": [[0, 100.52], [0, 22.96], [25, 27.04], [27.04, 86.23]], \"sentences\": [\"A gymnast performs on a pommel horse on front two judges while a man watch her, then the gymnast runs and make a flip to finish her performance.\", \" Also, other people walk in the gym and organize the material.\", \" Suddenly, a woman pass running to the right and jump and flip.\", \" People pass on front the gymnast while a woman runs to jump and flip.\"]}, \"v_ETHVjrG7S4k\": {\"duration\": 67.18, \"timestamps\": [[0, 17.13], [17.13, 58.11], [58.44, 66.17]], \"sentences\": [\"People walks on a field equipped with large monkey bars.\", \" Then people climbs the monkey bars and advance until reach the other side of the bars.\", \" After, people walks to a stand where people serves water.\"]}, \"v_cEVHZc_uT7c\": {\"duration\": 138.03, \"timestamps\": [[0, 6.21], [6.9, 11.04], [15.18, 91.79], [92.48, 102.83], [103.52, 120.78], [120.09, 129.75]], \"sentences\": [\"A camera pans over a neighborhood of ramshackle houses.\", \" A woman stands, and begins to speak, another woman is sitting next to her.\", \" Footage begins of the two women doing chores - washing clothes on rocks at a stream, and walking back to the village.\", \" The woman is speaking again, to someone off camera.\", \" The two women hang the clothes to dry.\", \" A logo appears on the screen for an Organization called \\\"Compassion\\\", which appears to be a religious organization that helps children.\"]}, \"v_52PO939EtGw\": {\"duration\": 64.25, \"timestamps\": [[0, 35.02], [34.05, 64.25]], \"sentences\": [\"A camera zooms in on a piece of machinery and leads down to gas tanks and wires sitting on a lawn.\", \" The camera looks more around the yard and a hose is seen spraying a fence and transitions into a man wearing a suit.\"]}, \"v_5AG9Q5bF4pM\": {\"duration\": 121.6, \"timestamps\": [[0, 18.85], [18.85, 61.41], [62.63, 121.6]], \"sentences\": [\"A woman is seen speaking to the camera while standing in front of a large selection of books.\", \" The camera transitions into her standing in a kitchen and showing various foods to the camera.\", \" She begins cutting and peeling up vegetables  and dicing them on the side.\"]}, \"v_1jX8p54Dfjs\": {\"duration\": 201.6, \"timestamps\": [[0, 201.6], [59.47, 172.36]], \"sentences\": [\"A woman sits with her cat and cuts its nails.\", \"  She shows the proper way to do this and the cat is pretty calm throughout.\"]}, \"v_JJyV1AIQj4M\": {\"duration\": 231.39, \"timestamps\": [[0, 13.88], [15.04, 200.15], [201.31, 211.72], [211.72, 231.39]], \"sentences\": [\"A belly dancer walks down some stairs.\", \"  She does a belly dance routine with background music.\", \"  The camera pans up towards a blue sky.\", \"  The next part of the video has picture stills of the dancer in her outfit followed by a Facebook address to find her.\"]}, \"v_nIymjHWIz7Y\": {\"duration\": 15.23, \"timestamps\": [[0, 11.27], [11.35, 15.23], [0, 15.23]], \"sentences\": [\"two men are standing on the higher trampoline on their backs.\", \" men make a synchronized jump into the pool.\", \" woman wearing a red sweater is standing in front of the pool.\"]}, \"v_k3oPZS_Id3M\": {\"duration\": 131.5, \"timestamps\": [[5.92, 50.63], [51.28, 90.73], [91.39, 110.46], [111.77, 125.58]], \"sentences\": [\"A person hand wash clothes in a sink.\", \" The man adds detergent to a garment and squeeze and rinse under water.\", \" Then, the man rolls the garment in a towel, after the man hang outside the clothes to air dry.\", \" The man wash and dry the clothes in machines.\"]}, \"v_zSeLjjo3KF0\": {\"duration\": 61.38, \"timestamps\": [[0, 35.91], [35.91, 61.38]], \"sentences\": [\"A man stands along the edge of a bridge where he is preparing his harness to do a free fall.\", \" He throws himself off the side of the bridge as the people watch him descent into the fall.\"]}, \"v_unI7FhokvbM\": {\"duration\": 125.03, \"timestamps\": [[0, 11.88], [18.75, 21.88], [29.38, 33.76], [38.76, 49.39], [55.01, 70.64], [72.52, 85.02], [85.65, 95.65], [100.65, 105.65], [106.9, 125.03]], \"sentences\": [\"Words are flashing on the screen.\", \" A woman is sweeping the floor.\", \" She is putting tape on the floor.\", \" She is placing carpet on the floor.\", \" She is measuring it and marking it with a marker.\", \" She's cutting the carpet and peeling the back off.\", \" She is pressing the carpet down onto the ground.\", \" She is sitting in front of a fireplace smiling.\", \" Words are flashing on the screen.\"]}, \"v_XxfatT0sWXw\": {\"duration\": 150.3, \"timestamps\": [[0, 57.87], [57.12, 116.48], [116.48, 150.3]], \"sentences\": [\"A man dressed in a black glittery uniform is standing in the middle of a basketball gym twirling a baton.\", \"As he twirls the baton,he begins to do flips and twists while throwing the baton high up in the air making it twirl several times before coming down.\", \"After leaps and crawls on the ground,he does a couple of more flips,bows and then leaves as is his performance is over.\"]}, \"v_Ujm7CiWkOBY\": {\"duration\": 137.09, \"timestamps\": [[0, 27.42], [27.42, 58.95], [58.95, 104.87], [104.87, 137.09]], \"sentences\": [\"A man is very concentrated playing pool, while two men and a lady have a conversation behind him.\", \" He joins them in the conversation and they speak for a while.\", \" The men walk together towards the pool table, and the taller man looks to see where he wants to go.\", \" After he takes his turns he pats the man and walks away from the table.\"]}, \"v_sODu6d-3zAQ\": {\"duration\": 89.89, \"timestamps\": [[0, 44.49], [39.1, 89.89]], \"sentences\": [\"A person is seen holding a hula hoop in front of the camera and transitions into her holding the hula hoop around her waist.\", \" She pauses to hold the hoop some more and then moves the object around her waist several times.\"]}, \"v_S8RXX1uOGgQ\": {\"duration\": 194.35, \"timestamps\": [[0, 17.49], [19.44, 68.02], [71.91, 161.31], [165.2, 174.92], [177.83, 194.35]], \"sentences\": [\"A group of boys and girls are shown in various photos together.\", \" They put on equipment, then get on water boards.\", \" The people go water skiing, being drug along by a rope on a line.\", \" Some of them fall off the board as they go.\", \" It ends with additional images of the group posing together.\"]}, \"v_fdHpRUOSi28\": {\"duration\": 78.53, \"timestamps\": [[0, 12.56], [12.56, 32.59], [32.59, 54.19], [54.58, 78.53]], \"sentences\": [\"A man is holding a cat in arms getting ready to clip it's nails.\", \" He starts on the cats feet nails, the cat doesn't seem to like it it starts to try to move away.\", \" He pets the cats nose and tries to get it to settle down by petting his head.\", \" He starts looking at the cats hand nails, still struggling to keep the cat still.\"]}, \"v_dP2DgvNt12Y\": {\"duration\": 72.83, \"timestamps\": [[0, 19.66], [16.39, 48.8], [29.13, 72.83]], \"sentences\": [\"A close up of a person is seen followed by walking around a yard.\", \" The camera leads into several people bowing leaves around.\", \" Several people are seen blowing leaves and around pans back to a man's face.\"]}, \"v__crwKCjKRjg\": {\"duration\": 190.4, \"timestamps\": [[0, 59.03], [56.17, 155.18], [155.18, 190.4]], \"sentences\": [\"People rides bumper cars in the carnival, a yellow car cross two girls in a grey car.\", \" A man gets stuck with other cars, but after free and people continue riding cars.\", \" A yellow car bumps with another car, after people continues riding bumper cars.\"]}, \"v_C03QJbrKzaw\": {\"duration\": 126.02, \"timestamps\": [[0, 126.02], [0, 25.2], [25.2, 42.85], [42.22, 112.15], [115.93, 126.02]], \"sentences\": [\"The video takes place in a man's yard as he uses a hedge trimmer in various ways.\", \" It begins with a title showing the trimmer's name and the various equipment that comes with the trimmer.\", \" The man climbs a ladder and starts hedging.\", \" The video then cuts to various other ways the man is using the trimmer.\", \" The video ends with the equipment being showcased on stones and again shows the name of the hedge trimmer.\"]}, \"v_2UfljrwzsLs\": {\"duration\": 67.27, \"timestamps\": [[0, 67.27], [0.34, 67.27], [14.13, 42.38]], \"sentences\": [\"A woman is sitting in a chair.\", \" Another woman is sitting on the floor next to her.\", \" The woman starts clipping and filing the other woman's nails.\"]}, \"v_y1IjkACdnfs\": {\"duration\": 28.84, \"timestamps\": [[0, 13.12], [11.1, 28.84]], \"sentences\": [\"The video begins with several motocross racers jumping through a jack and racing around the track.\", \" The camera pans in on a specific rider as her jumps around and continues racing around the track.\"]}, \"v_WaXfGbfUYJg\": {\"duration\": 223.77, \"timestamps\": [[0, 8.95], [10.07, 54.82], [54.82, 71.61], [93.98, 140.98], [162.23, 204.75], [205.87, 217.06]], \"sentences\": [\"A hand is holding nail polish.\", \"  Several hands with nail polish are shown.\", \"  The person paints white tips on the nails.\", \"  The person uses a long brush with a clear liquid on the nails.\", \"  The person puts several more clear coats over the nails.\", \"  The person shows off the finished nails.\"]}, \"v_jW1isCO6MYk\": {\"duration\": 26.12, \"timestamps\": [[0, 3], [3.66, 17.63], [16.07, 25.47]], \"sentences\": [\"A young child is seen holding onto a set of monkey bars with an adult in front of her.\", \" The man then helps her climb on the bars by holding onto her waist.\", \" The man and girl then move back to where they started and the girl jumps down.\"]}, \"v_kShrO0yutUQ\": {\"duration\": 223.7, \"timestamps\": [[3.36, 7.83], [8.95, 25.73], [27.96, 48.1], [58.16, 90.6], [91.72, 112.97], [126.39, 183.44], [185.67, 206.92]], \"sentences\": [\"A scenic view is seen of mountains.\", \" A man stands in front of a display of bikes.\", \" The man unlatches a bikes brake cable.\", \" The man takes the back wheel of a bike off of the frame.\", \" The man uses wrenches to looses a nut on the back wheel axle.\", \" The man puts the back wheel back on the chain and locks the axle into place.\", \" The man latches the brake cable back into place.\"]}, \"v_z-iuSgXKUcw\": {\"duration\": 169.18, \"timestamps\": [[0, 169.18], [5.92, 71.9], [71.06, 87.13], [127.73, 136.19]], \"sentences\": [\"A band of people are playing instruments.\", \" A man is standing up in a suit at the front playing a violin.\", \" Another man in a suit is leading the band.\", \" People are playing clarinets sitting down.\"]}, \"v_zufK6CufVhA\": {\"duration\": 169.23, \"timestamps\": [[3.38, 53.31], [44.85, 88.84], [69.38, 139.61], [105.77, 166.69]], \"sentences\": [\"A man eyes are seen waking up followed by his feet and him turning on a faucet and washing his hands.\", \" The man then buttons a shirt, ties a tie, and walks out past people onto a deck.\", \" The man runs in acting all crazy and showing several clips of him playing shuffle board.\", \" Several closes ups of the man are shown followed by more clips of him pushing along a puck.\"]}, \"v_TSO5Phe2ZM4\": {\"duration\": 125.23, \"timestamps\": [[0, 60.73], [63.87, 107.07], [107.69, 125.23]], \"sentences\": [\"A man wearing a white and grey shirt serves in a practice squash session and another man wearing a purple shirt returns the serves in an enclosed squash court.\", \" The man in purple practices returns from a squash cannon serving machine.\", \" The man in the grey and white shirt enters the enclosed squash court picks up some of the balls and proceeds to load the squash cannon serving machines.\"]}, \"v_ngxs6ngJR4k\": {\"duration\": 228.69, \"timestamps\": [[0, 38.88], [41.16, 152.08], [154.37, 228.69]], \"sentences\": [\"A green bike is leaned against a group of boxes.\", \" A man removes the front tire of the bike.\", \" He then shows how to replace the tire with a new one, as well as the seat.\"]}, \"v_iXF01UxOtLI\": {\"duration\": 215.32999999999998, \"timestamps\": [[0, 15.07], [15.07, 213.18], [49.53, 51.68], [205.64, 213.18]], \"sentences\": [\"And advertisement is on the screen.\", \"  The kids are doing tricks with a soccer ball.\", \"  The color changes to a negative color.\", \" The scene ends with an advertisement.\"]}, \"v_rfH9VLQAuwY\": {\"duration\": 39.24, \"timestamps\": [[0, 16.09], [13.73, 39.24]], \"sentences\": [\"The video leads into several pictures of people standing outside playing a game of shuffleboard.\", \" More pictures are shown of the people playing a game a game as well as others watching on the side.\"]}, \"v_hjuvoK5En4s\": {\"duration\": 12.03, \"timestamps\": [[0, 12.03], [5.95, 7.7], [8.84, 11.67]], \"sentences\": [\"Kids swing in a playground while parents are around.\", \" A man push a kid.\", \" A woman walks in the pathway holding a child.\"]}, \"v_b5NP9oI-urM\": {\"duration\": 5.94, \"timestamps\": [[0, 1.04], [0.83, 4.6], [3.5, 5.94]], \"sentences\": [\"A boy is standing behind a Christmas tree.\", \" He knocks the Christmas tree over onto the floor.\", \" He bends down and picks the Christmas tree up.\"]}, \"v_ucHq8B0-1BA\": {\"duration\": 208.86, \"timestamps\": [[0, 208.86], [0, 13.58], [13.58, 67.88], [67.88, 124.27], [124.27, 177.53], [177.53, 197.38], [197.38, 208.86]], \"sentences\": [\"A little girl wearing a blue helmet is standing and walking in the area of avery large white horse as it's getting brushed by an adult.\", \" The little girl also begins brushing the horse for a brief moment and then she stops,walks away from the horse, and throws the brush into a bucket.\", \"The girl then walks over to the wall and touches a black object, then walks away and walks to the other side and removes a hook from one latch and walks over to another latch nearby and puts the hook onto it then walks away.\", \"The girl begins talking to the adult who is still brushing the horse and the little girl reaches into the bucket to grab a long handle brush and she begins to brush the tail while the woman holds onto the tail to direct her.\", \"The woman grabs another brush of her own and so does the little girl and they both continue brushing the horse.\", \"The woman directs the child to   walk to the other side of the horse where they continue to groom it and hair is flying everywhere.\", \"The horse begins to gently kick it's front right leg and the adult moves the child to safety and the child stops brushing the horse.\"]}, \"v_TlDh_RZ3HDk\": {\"duration\": 145.32999999999998, \"timestamps\": [[0, 36.33], [35.61, 81.39], [83.57, 145.33]], \"sentences\": [\"A girl with long hair is seen looking off into the distance from a mirror and a woman using a curling iron on the hair.\", \" The woman then braids the hair and pins half of the hair up into a bun.\", \" She sprays some hairspray and pins the rest of the hair up, showing a finished result in a 360 manner.\"]}, \"v_2wcD0wSzB5w\": {\"duration\": 150.09, \"timestamps\": [[0, 27.77], [28.52, 57.79], [57.04, 96.81], [96.81, 150.09]], \"sentences\": [\"An aerial view of a soccer field is shown and then it moves down to the ground level.\", \"Several people are then shown standing around watching other people throw a Frisbee to their dog.\", \"Not only are the dogs catching the frisbee,they are now jumping over the backs over their human partner to get them.\", \"Ducks begin to walk across the field as the dogs are shown jumping into a pool.\"]}, \"v_dGxJGvw_sUg\": {\"duration\": 102.31, \"timestamps\": [[0, 8.7], [10.23, 45.53], [46.55, 80.82], [82.36, 102.31]], \"sentences\": [\"Water sprinklers shoot up out of the ground.\", \" We see men watching as a group of women dance.\", \" They are then shown on stage, dancing and fighting.\", \" They are advertised as being in a movie called Cheer Camp as they dance and fight throughout the video.\"]}, \"v_thhFfqcOfJQ\": {\"duration\": 139.9, \"timestamps\": [[0, 139.9], [5.6, 139.9], [91.64, 96.53]], \"sentences\": [\"woman weaing a blue shit is standing in stage doing a choreography.\", \" women in the back are following he choreograpy of the woman in stage.\", \" man is earing a green sweater and is walking on a side of the gym.\"]}, \"v__XRJk2oFwZw\": {\"duration\": 227.79, \"timestamps\": [[0, 134.39], [105.92, 222.09]], \"sentences\": [\"A small group of people are seen standing around an indoor gym playing a game of crochet with one another.\", \" The people continue playing with one another as they hit the ball and run around and walk away in the end.\"]}, \"v_uDlyfvy0NOs\": {\"duration\": 80.18, \"timestamps\": [[0, 80.18], [3.21, 8.02], [9.22, 15.63], [20.04, 65.35], [74.57, 80.18]], \"sentences\": [\"A news reporter in the field shows how you can bake cookies in a car on a hot  day.\", \"  The camera zooms in on cookies on the dashboard of the car being baked inside.\", \"  A digital thermometer shows the heat temperature.\", \"  The crew then show the preparation of the cookies by spraying nonstick coating on a tray, opening the package of cookies, placing the raw cookies on the tray, flattening out the cookies and then placing the tray of cookies in the vehicle.\", \"  The man shows the thermometer and mentions the heat inside the car.\"]}, \"v_spZ_RrpyNJw\": {\"duration\": 112.12, \"timestamps\": [[0, 5.05], [5.05, 6.73], [6.73, 10.65], [10.65, 112.13]], \"sentences\": [\"A mini pool table has a set of colorful pool balls set up in the middle in a triangle shape and the white ball is alone.\", \"A man approaches the mini table, touches the white ball and moves it into position to hit it with the pool stick.\", \" The man pulls the pull stick back a few times and then hits the white ball and the white ball rolls into the colorful balls and they scatter in different directions.\", \"The man grabs the chalk on the pool table, uses it, puts it back down and hits the white ball so it hits a ball into a hole and goes around the table and continues to do so until all balls are in the pockets.\"]}, \"v_TUfYisuVrs0\": {\"duration\": 104.56, \"timestamps\": [[0, 3.66], [3.66, 87.83], [87.83, 104.56]], \"sentences\": [\"A blue underwater shot appears with the sun shining above and the words on the bottom say \\\"Platform Diving Woods Pool-July 15 2009\\\".\", \" Various different women wearing bathing suits appear on diving platforms at separate times, and each one has a screen showing up before the different women dive and they include a Front Line Up, Back Line Up,103b 7 Meter, 103b 10 Meter,403b 10 Meter, 403c (Lead for 405c) 5 Meter, 405c 7 1/2 Meter.\", \" The last dive is a 105b 7 1/2 Meter and the woman dives and creates a large splash.\"]}, \"v_ekbZecn088U\": {\"duration\": 220.45, \"timestamps\": [[0, 71.65], [72.75, 135.58], [136.68, 160.93], [160.93, 174.16], [174.16, 216.04]], \"sentences\": [\"A topless boy smokes a cigarette while sit on bed.\", \" The boy inhales smoke and then exhales smoke.\", \" The boy exhales smoke close to the camera, then he continues looking around and smoking.\", \" Then, the boy makes rings with smoke, and look around.\", \" The boy turns off the light and continue smoking, then he makes the victory sign.\"]}, \"v_VI2qAFwvPSc\": {\"duration\": 101.12, \"timestamps\": [[0, 33.37], [9.1, 12.13], [30.34, 47.02], [48.54, 86.97], [62.7, 75.84], [82.42, 86.46], [95.56, 99.1]], \"sentences\": [\"We see a lady and a man dancing.\", \" A man picks up a baby in a dress.\", \" The camera shifts and we see the people sitting down.\", \" The camera pans right and we see different people dancing.\", \" The people all laugh together.\", \" A little girl enters the room and leaves.\", \" A man walks out of the room.\"]}, \"v_Tw1vg9qWLx0\": {\"duration\": 150.13, \"timestamps\": [[0, 78.07], [48.79, 114.1], [79.57, 143.38]], \"sentences\": [\"A close up of shoes are seen that lead into a young man hitting a ball and speaking to the camera.\", \" The boy shows off the objects used to play crochet and then begins hitting the ball around a yard.\", \" The boy continues speaking to the camera while holding the stick and continuing to demonstrate.\"]}, \"v_oIEDMaMo7UE\": {\"duration\": 9.71, \"timestamps\": [[0, 2.77], [2.86, 7.72], [7.86, 9.71]], \"sentences\": [\"A man is standing in a field in a small circle behind a green fence.\", \"After several spins,he finally lets the ball go and throws it in the field.\", \"The video ends and the website appears at the end along with a name at the bottom.\"]}, \"v_mbB7UFoTwpo\": {\"duration\": 60.12, \"timestamps\": [[0, 17.43], [20.14, 21.34], [26.15, 30.66], [30.96, 37.87], [37.87, 40.88], [41.78, 43.89], [44.49, 53.5], [54.11, 57.41]], \"sentences\": [\"A woman in a red shirt is standing in front of a TV talking.\", \" A woman is putting cleanser on her face.\", \" The woman in a white shirt is sitting down talking.\", \" A woman in a green shirt is rubbing foam on her face.\", \" She gets something out of her bag.\", \" She sprays something on her face.\", \" The woman in the red shirt keeps talking.\", \" Soap is in a dish on the sink.\"]}, \"v_4T8uFygBeNo\": {\"duration\": 222.0, \"timestamps\": [[0, 51.06], [43.29, 163.17], [149.85, 218.67]], \"sentences\": [\"Two people are seen kicking around a skateboard and lead into clips of them riding down a road.\", \" The camera follows the boys from several angles skating down a street and performing various tricks.\", \" The men continue moving around the city through obstacles and moving along the road.\"]}, \"v_HgKZ4KAuhdI\": {\"duration\": 55.29, \"timestamps\": [[0, 14.1], [18.24, 54.46]], \"sentences\": [\"A woman washes a horse's butt.\", \"  She starts with the butt and tail and finishes.\"]}, \"v_Px08sPeSsG0\": {\"duration\": 86.26, \"timestamps\": [[1.73, 25.88], [25.02, 69.01], [56.5, 84.11]], \"sentences\": [\"Various clips are shown of people tattooing others that leads into two men speaking to the camera.\", \" More shots are shown of a website as well as the outside of the shop while the men continue to speak.\", \" More people are seen getting tattoos while the men still speak to the camera.\"]}, \"v_ma9R2AjCRZE\": {\"duration\": 175.07999999999998, \"timestamps\": [[0, 150.57], [150.57, 175.08]], \"sentences\": [\"two sumos are wrestling in a big green field in a competition while people are taking pictures of them.\", \" referee decide the winner and rise their hands.\"]}, \"v_QVdsLRKpCT0\": {\"duration\": 60.65, \"timestamps\": [[0, 7.28], [7.28, 53.68], [53.68, 56.71], [57.01, 60.65]], \"sentences\": [\"A male gymnast raises his hands and mounts the parallel bars.\", \" The man then swings and spins on the bars.\", \" The man does a handstand then flips and dismounts the bars.\", \" The man gains his composure and lifts his arms.\"]}, \"v_j3QSVh_AhDc\": {\"duration\": 231.69, \"timestamps\": [[0, 96.15], [98.47, 231.69]], \"sentences\": [\"A large group of people are seen riding along a water raft in kayaks and flipping around the area.\", \" Several shots are shown of people doing flips in the kayak and ends with people standing on the sidelines watching.\"]}, \"v_DWvFgDSAUzE\": {\"duration\": 19.83, \"timestamps\": [[0, 19.83], [1.19, 19.83], [2.38, 19.83]], \"sentences\": [\"A woman is sitting down talking.\", \" She is knitting something out of pink yarn.\", \" She keeps knitting and talking.\"]}, \"v_dzR4voNDZ7g\": {\"duration\": 129.15, \"timestamps\": [[0, 2.58], [36.16, 113.01], [116.24, 122.05]], \"sentences\": [\"A person sets a can on the front of their canoe.\", \" A man is rowing while sitting in the canoe.\", \" People are standing on a trail.\"]}, \"v_Zc7uU4Qwolc\": {\"duration\": 67.87, \"timestamps\": [[0, 16.63], [16.63, 46.15], [46.15, 67.87]], \"sentences\": [\"A young girl is standing in a room filled with glass doors,playing her violin.\", \"She then moves back and forth as she moves the stick across the violin.\", \"The young lady then stops and smiles at the camera when she is finished.\"]}, \"v_iS_ms9ajumY\": {\"duration\": 133.03, \"timestamps\": [[0, 19.95], [15.3, 21.95], [21.95, 75.83], [75.83, 133.03]], \"sentences\": [\"A woman is standing in the kitchen, she is talking with her hands and explaining how to make some sugarless lemonade.\", \" She turns to the counter where the ingredients are, she grabs a lemons and begins to cut it in half.\", \" She squeezes the the lemon trying to get all the juice out that she can.\", \" she uses some kind of sugar replacement  or artificial replacement and stirs it into the lemon juice, which begins to foam and she adds a little water and she is done.\"]}, \"v_Mx6Gt14tnmY\": {\"duration\": 141.06, \"timestamps\": [[0, 45.85], [45.14, 95.22], [95.22, 141.06]], \"sentences\": [\"A crowded road and its skyscraper are shown while people are walking down the sidewalk.\", \"The man behind the camera then appears and begins walking in a mall that looks like an indoor flea market full of Asians.\", \"He then stops in a room and is talking to a lady as he is shown getting a manicure.\"]}, \"v_WtWw-GNpr4E\": {\"duration\": 151.12, \"timestamps\": [[0, 65.74], [49.11, 142.05]], \"sentences\": [\"Two men are seen playing a game of badminton with one another and leads into one of them speaking to the camera.\", \" The man then demonstrates how to properly hit the birdee while moving in slow motion and leading back into him speaking and playing with others.\"]}, \"v_iHm8ZXs2XdY\": {\"duration\": 222.54, \"timestamps\": [[0, 13.35], [38.94, 63.42], [65.65, 76.78], [92.35, 192.5], [192.5, 209.19]], \"sentences\": [\"A woman is brushing her hair.\", \" She puts a clip in her hair.\", \" She puts her hair up in a ponytail.\", \" She beings braiding her ponytail.\", \"  She finishes and shows the braid to the camera.\"]}, \"v_6J0IdWi4O0Q\": {\"duration\": 58.6, \"timestamps\": [[1.17, 22.56], [23.73, 46], [46.29, 58.6]], \"sentences\": [\"A young man is seen holding a tennis racket and looking back to the camera smiling.\", \" He bounces the tennis ball and bit and hits the ball into the net.\", \" He hits several more balls and walks back towards the camera smiling.\"]}, \"v_a7YSE6dZ1yk\": {\"duration\": 125.95, \"timestamps\": [[0, 14.48], [14.48, 27.08], [42.82, 78.09], [78.09, 87.53], [87.53, 125.95]], \"sentences\": [\"A woman takes a cook book and gathers ingredients and materials on the counter.\", \" Then, she measures the ingredients to put in a bowl.\", \" Then, she puts oil, eggs and the rest of the ingredients in the bowl, then the woman mix the ingredients and put flower an other ingredients.\", \" Then, the woman mix the dough with her hands, then she wash and dyes her hands.\", \" After, put pieces of dough on pans and cook the cookies, then she taste a cookie but she doesn't like.\"]}, \"v_VeWdsZb5tog\": {\"duration\": 160.06, \"timestamps\": [[0.8, 24.01], [25.61, 60.02], [60.82, 97.63], [98.43, 112.04], [117.64, 142.45], [143.25, 160.06]], \"sentences\": [\"Two young women are talking to each other.\", \" A slinky is thrown and a girl hops to where the slinky dropped.\", \" Another girl in a black shirt hops around, too.\", \" The girls sit down on the sidewalk and talk.\", \" The girls go to another area to sit down and talk.\", \" They drink some ICEE's and walk away.\"]}, \"v_pwaSQyDNyWs\": {\"duration\": 115.33, \"timestamps\": [[0, 115.33], [61.7, 115.33]], \"sentences\": [\"A small group of people are seen moving back and fourth with their arms moving and dancing to music.\", \" They continue moving back and fourth as well as a hand moving in frame for a few moments.\"]}, \"v_Q6KyDc24uSk\": {\"duration\": 224.86, \"timestamps\": [[0, 11.24], [11.24, 16.86], [16.86, 200.13], [200.13, 224.86]], \"sentences\": [\"A blue screen appears with a lot of words on it in both black and yellow lettering, the lettering in black are surrounded by a red background and the words include information about playing pool and includes a website.\", \"It then switches to another blue screen that include more words in black and yellow and it's referring to a \\\"Disc III\\\".\", \"A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person appears with a pool stick and hits the white ball.\", \"A blue screen appears and it includes the same black and yellow wording from the intro screen.\"]}, \"v_1scjpxusQx0\": {\"duration\": 210.86, \"timestamps\": [[4.22, 28.47], [28.47, 33.74], [34.79, 207.7], [184.5, 193.99], [207.7, 210.86]], \"sentences\": [\"The camera person walks through a group of people.\", \"  A montage of still shots shows up.\", \"  A collection of clips show people jumping rope and performing on a stage in a contest.\", \"  The end title credits show on a black screen.\", \"  The website credited shows on a black screen.\"]}, \"v_-oJb3Acw-_s\": {\"duration\": 191.8, \"timestamps\": [[1.92, 67.13], [45.07, 140.97], [133.3, 180.29]], \"sentences\": [\"A young man is seen close up who then lays down on a table and looks around.\", \" A woman is seen piercings the mans lip an showing it from various angles.\", \" The man then gets a second piercing while a person films from the side and looks up.\"]}, \"v_PKEw32TJRWs\": {\"duration\": 230.95, \"timestamps\": [[0, 58.89], [69.28, 165.13], [173.21, 230.95]], \"sentences\": [\"An old black and white video is shown before cutting to several clips of boats being controlled and driven through the water.\", \" A man is water skiing very fast.\", \" He is seen water skiing for a long period of time.\"]}, \"v_ykdRdg1XvFM\": {\"duration\": 94.13, \"timestamps\": [[0, 91.31], [8.94, 86.13], [80.96, 94.13]], \"sentences\": [\"A man sits down in a kitchen.\", \" He starts playing an accordion in his hands.\", \" A brown dog comes up and stands by him.\"]}, \"v_4ZoBfU4b5Ko\": {\"duration\": 62.86, \"timestamps\": [[11.31, 49.34], [37.09, 49.34], [51.54, 53.74]], \"sentences\": [\"A woman is blow drying her hair.\", \" She puts it in the end of the blow dryer.\", \" She puts a product in her hair.\"]}, \"v_BD7txKlwoj8\": {\"duration\": 20.88, \"timestamps\": [[0, 7.31], [6.78, 15.34], [14.72, 17.54], [19.1, 19.83]], \"sentences\": [\"A man in a blue shirt holds a ball on a chain.\", \" He swings it around his body several times.\", \" He then launches it onto the field.\", \" He throws his hands up in the air.\"]}, \"v_aqQ7-J9kbUE\": {\"duration\": 34.2, \"timestamps\": [[0, 34.2], [0, 5.99], [8.89, 14.37], [14.19, 22.06]], \"sentences\": [\"A fire is burning out in a fire pit.\", \"  A man is fueling the fire.\", \"  The fire dies down a bit.\", \"  The man gets it roaring again.\"]}, \"v_TDROfnEk0NQ\": {\"duration\": 220.47, \"timestamps\": [[0, 46.3], [47.4, 189.61], [110.24, 217.17]], \"sentences\": [\"A man is seen looking off into the distance and begins rubbing razor on his face.\", \" The man plays the video in reverse to look as if he's putting shaving cream on with the razor.\", \" The men then uses a different razor to put more hair on his face and smile to the camera.\"]}, \"v_HlYwtqJALns\": {\"duration\": 14.88, \"timestamps\": [[0, 2.83], [2.6, 14.88]], \"sentences\": [\"A young girl is seen standing in a back yard holding a baton and doing a flip.\", \" The girl performs several more tricks with the baton while spinning around and catching the stick in end.\"]}, \"v_9ukVV07rszg\": {\"duration\": 194.21, \"timestamps\": [[0, 35.93], [42.73, 147.6], [106.82, 192.27]], \"sentences\": [\"A camera zooms in on various buildings both inside and outside.\", \" Two people are then seen fencing against one another while people cheer on the sides.\", \" More people step up to take their turns fencing while also showing people on the side clapping.\"]}, \"v_nqB4Zn6UWdk\": {\"duration\": 69.41, \"timestamps\": [[0, 24.29], [25.33, 69.41]], \"sentences\": [\"A group of runner in a marathon run passed an intersection with one man carrying a large cross like Jesus.\", \" The man is seen in different poses running the marathon carrying a cross.\"]}, \"v_KzZlSbM16aY\": {\"duration\": 99.87, \"timestamps\": [[0, 99.87], [5.99, 19.47], [23.47, 57.92], [60.42, 69.41], [94.38, 99.87]], \"sentences\": [\"We see a lady sitting in front of a keyboard.\", \" The lady moves the sheet music.\", \" We see the lady shows the keys and pretend to play.\", \" We see the lady change the sheet music.\", \" We see the lady pretend to play again.\"]}, \"v_r-_JFgDJRrQ\": {\"duration\": 184.92, \"timestamps\": [[0, 29.59], [20.34, 44.38], [37.91, 73.97], [67.5, 112.8], [104.48, 137.77], [137.77, 184.92]], \"sentences\": [\"A doge ram is driving down the street.\", \" In a still shot of the interior, a man is seen removing parts from underneath the seat.\", \" The man proceeds to assemble the piece.\", \" The man uses the assembled tool to remove the bolts from the tire's wheel.\", \" A shot of crank is shown.\", \" The car begins to lift.\"]}, \"v_NgG4AWP1F6Q\": {\"duration\": 192.54, \"timestamps\": [[0, 57.76], [52.95, 131.89], [123.23, 180.99]], \"sentences\": [\"A close up of a person's feet are shown followed by the person putting socks on.\", \" The girl then puts shoes on her feet and ties the laces.\", \" She's shown again tying her shoes close up and a woman helps her off the bed.\"]}, \"v_AmhfmeKk6Bg\": {\"duration\": 22.5, \"timestamps\": [[0, 2.36], [2.25, 5.85], [5.85, 14.18], [14.85, 22.5]], \"sentences\": [\"There is a woman and a man inside of the house the man is sitting and the woman is grooming him.\", \" She brushes through his hair very casually while he stays seated.\", \" He makes very strange faces like his mouth is on fire while she brushes his hair.\", \" He even at one point covers his face, i feel he is being dramatic because she is brushing right through his hair, doesn't seem like there are any knots or she is pulling.\"]}, \"v_wnnoaLzYqVQ\": {\"duration\": 180.51, \"timestamps\": [[0, 12.64], [12.64, 35.2], [34.3, 155.24], [101.09, 103.79], [156.14, 180.51]], \"sentences\": [\"The video begins with a title screen that includes a clip of a man in a kayak.\", \" A clip is shown of men preparing to enter a raft while spectators watch on.\", \" The video continues to show clips of men in rafts floating through rapids.\", \" At one point the camera shows spectators who are drinking beer while watching.\", \" The video ends showing the scores from different teams and a final title sequence.\"]}, \"v_k85EQoiLckw\": {\"duration\": 80.18, \"timestamps\": [[0, 9.62], [12.43, 69.35], [70.56, 80.18]], \"sentences\": [\"A woman is standing in front of a wall, speaking to the camera.\", \" She has a container of shoe polish, which she then uses to polish several sets of shoes as she talks.\", \" When she is done, she sets down the shoes and finishes speaking.\"]}, \"v_61wzTjdnXe4\": {\"duration\": 183.69, \"timestamps\": [[0, 183.69], [29.39, 183.69], [141.44, 149.71]], \"sentences\": [\"People are scuba diving with fish under water.\", \" A fish is swimming around under the water.\", \" The man is petting the fish.\"]}, \"v_u02UsNRxclU\": {\"duration\": 231.76, \"timestamps\": [[1.16, 224.81], [213.22, 216.69], [219.01, 230.6]], \"sentences\": [\"Guys smoke a Hookah pipe and blowout smoke.\", \" A guy breaths in the smoke circles.\", \" A male blows the smoke into a light blow plastic container and uses it to blowout the smoke.\"]}, \"v_f6Id4KERnoI\": {\"duration\": 144.45, \"timestamps\": [[0, 11.56], [14.45, 117.73], [119.17, 144.45]], \"sentences\": [\"A woman is kneeling on the ground next to a little girl.\", \" They are both using paint brushes on a piece of furniture.\", \" They are painting the furniture white.\"]}, \"v_WMVJqLMtaws\": {\"duration\": 109.47999999999999, \"timestamps\": [[0, 22.99], [22.99, 46.53], [45.98, 87.59], [87.04, 109.48]], \"sentences\": [\"Two children are seen playing hopscotch on a paved road while one dog walks by and another lays and watches.\", \" The girl takes her turn followed by the boy shortly after.\", \" The girl takes another turn while the dogs wander around and one grabs the glove while the girl chases him.\", \" She grabs the glove and continues jumping again.\"]}, \"v_a0Zlu4AvdnI\": {\"duration\": 52.18, \"timestamps\": [[4.96, 28.44], [28.7, 48.26]], \"sentences\": [\"A  woman makes a victory sign, then speaks in a backyard of a house.\", \" A girl is mowing the lawn of the backyard.\"]}, \"v_hcFw88RcAbo\": {\"duration\": 84.15, \"timestamps\": [[1.68, 31.14], [23.98, 59.75], [51.75, 83.31]], \"sentences\": [\"A person is seen moping a floor while looking all around himself.\", \" The man is then seen speaking to the camera while still gradually mopping the floor.\", \" The man continues on speaking as the camera zooms in and out and he keeps mopping.\"]}, \"v_JZN0L8pp5hY\": {\"duration\": 27.33, \"timestamps\": [[0, 3.96], [4.24, 27.33]], \"sentences\": [\"An intro leads into two people riding on camels while one man leads them around.\", \" Another man walks in and out of frame following the people on the camels.\"]}, \"v_xSWpGhhM1H8\": {\"duration\": 66.39, \"timestamps\": [[0, 34.52], [35.52, 66.39]], \"sentences\": [\"A large group of people are seen standing around young children holding on to a rope on one side of each other.\", \" Two men then hold the rope in the middle and lead into the kids playing a quick game.\"]}, \"v_6y_gnZgf0N8\": {\"duration\": 11.56, \"timestamps\": [[0, 4.39], [4.74, 11.27]], \"sentences\": [\"Two people are seen wrestling in a ring when another walks in and grabs him by the legs.\", \" The man then drops the other down as a ref watches from the side.\"]}, \"v_aLv03Fznf5A\": {\"duration\": 33.67, \"timestamps\": [[0, 31.65], [1.01, 31.65], [31.65, 33.67]], \"sentences\": [\"A man is doing a gymnastics routine on a balance beam.\", \" People behind him are watching his routine.\", \" He does a hand stand before jumping off and landing on a mat.\"]}, \"v_S5zweEQSnho\": {\"duration\": 135.43, \"timestamps\": [[0, 20.99], [20.31, 54.17], [54.17, 89.39], [89.39, 135.43]], \"sentences\": [\"A man in a blue shirt is talking using his hands about handling high balls with your forearm.\", \" He shows a video of a man on the tennis court hitting the tennis ball.\", \" He continues to talk while the video is paused giving more information.\", \" He talks and talks for a good while giving a lot of important information about how it should be done.\"]}, \"v_eUCVKv4R-7A\": {\"duration\": 140.88, \"timestamps\": [[0, 7.04], [8.45, 26.77], [32.4, 104.95], [106.36, 140.88]], \"sentences\": [\"A pair of kayakers navigate on a river waterway in calm water near a waterfall.\", \" A group of kayakers sit in the kayaks on the shore before pushing off into the river.\", \" The group of kayakers go down through rapids in a narrow river stretch.\", \" The kayakers congratulate each other and wait for the remaining members of the group to go down a waterfall.\"]}, \"v_EbQJuDQdW8U\": {\"duration\": 124.13, \"timestamps\": [[0, 2.48], [3.1, 18], [19.86, 124.13]], \"sentences\": [\"A lady talks in a living room.\", \" The lady then lays a shirt on an ironing board and checks the tags.\", \" The lady then irons the shirt starting with the collar.\"]}, \"v_0BHufmWSI6Y\": {\"duration\": 145.31, \"timestamps\": [[0, 13.8], [13.8, 22.52], [22.52, 91.55], [91.55, 145.31]], \"sentences\": [\"man is kneelind on the floor spreading cement mix on a floor.\", \" put a metal rack on top of the mix.\", \" the man putted tiles on the floor.\", \" the man hammer the tiles and grabs the metal rack.\"]}, \"v_3X6eP273RoI\": {\"duration\": 151.57999999999998, \"timestamps\": [[0, 5.31], [5.31, 19.71], [19.71, 70.48], [72, 124.3], [126.57, 145.52], [146.27, 151.58]], \"sentences\": [\"We see the opening credits and a title screen.\", \" A person puts egg salad on bread.\", \" Eggs are boiled, onion chopped, eggs drained and chopped.\", \" Eggs, and other ingredients are put in a bowl and stirred.\", \" We see shots of the egg salad and pickles.\", \" We then see the end title screen.\"]}, \"v_sfT9Siql3P8\": {\"duration\": 34.53, \"timestamps\": [[0, 1.21], [1.38, 31.77], [31.94, 34.53]], \"sentences\": [\"People are driving bumper cars in a nighttime scene.\", \"  The bumper cars drive randomly throughout the arena.\", \"  The camera shakes as a red bumper car drives by.\"]}, \"v_i2X7z9ywHV8\": {\"duration\": 192.22, \"timestamps\": [[0, 164.34], [0, 3.84], [29.79, 40.37], [49.01, 73.04], [70.16, 78.81], [108.6, 120.13], [156.66, 176.84], [176.84, 192.22]], \"sentences\": [\"We see a man smoking a hookah pipe and talking to the camera.\", \" The man blows a large cloud of smoke.\", \" The man touches his cheek and jaw.\", \" The man blows circles in the smoke.\", \" He touches his cheek again.\", \" The man blows smoke through the top of a bottle.\", \" The man blows a large puff of smoke and we see the hookah.\", \" We then see an animation and the closing titles.\"]}, \"v_vh55SaEpuws\": {\"duration\": 71.5, \"timestamps\": [[8.94, 71.14], [71.14, 71.5]], \"sentences\": [\"A man and women sit in chairs and peel potatoes and talk to each other.\", \" People are shown walking around outside a building.\"]}, \"v_2Voht8wf3dQ\": {\"duration\": 117.89, \"timestamps\": [[10.02, 64.84], [65.43, 101.38], [101.38, 116.12]], \"sentences\": [\"A woman shows a red edge grip while talking.\", \" Then, she takes a knife and put it on the cleft of the edge grip and continues talking.\", \" After, the woman pass the knife on the edge grip  from front to back while explaining.\"]}, \"v_UPfQNZl0_dg\": {\"duration\": 127.59, \"timestamps\": [[0, 7.02], [7.66, 98.25], [98.89, 124.4], [125.04, 127.59]], \"sentences\": [\"A close up of the Mac desktop on a Macbook laptop.\", \" A man puts on makeup in a lit mirror next to his laptop.\", \" The camera focuses on a video playing on the laptop.\", \"  The logo \\\"GenderFun com\\\" appears on screen with the words \\\"boys girls everything in-between\\\".\"]}, \"v_txsupdxCToQ\": {\"duration\": 88.82, \"timestamps\": [[0.89, 51.96], [33.31, 87.04]], \"sentences\": [\"An intro leads into a roller blading grinding down a rail as well as performing tricks in a skate park.\", \" Several more clips are shown of people roller blading in various areas and one speaking into the camera leading into more clips of roller blading.\"]}, \"v_-M-Dr6HqDhU\": {\"duration\": 53.69, \"timestamps\": [[7.78, 14.49], [14.76, 27.11], [27.38, 39.46], [39.73, 53.69]], \"sentences\": [\"A woman removes things sitting on top of a chair.\", \" She takes the chair to clean it.\", \" She dips a paintbrush into a can of paint and paints the chair red.\", \" She places the newly painted chair in a boy's room.\"]}, \"v_mkEME_iWi9o\": {\"duration\": 88.47, \"timestamps\": [[0, 15.92], [14.6, 67.24], [66.35, 88.47]], \"sentences\": [\"A game of lacrosse begins with two players fighting and them running across the field.\", \" A players scores a goal and interviews the camera as well as several other players and coaches.\", \" The team celebrates with others and pictures shown in the end.\"]}, \"v_OaG9uH7BgjI\": {\"duration\": 84.73, \"timestamps\": [[0, 41.09], [38.55, 84.73]], \"sentences\": [\"A close up of a person holding a cat is shown followed by a vet speaking to the camera and holding up a cat claw.\", \" The vet them demonstrates how to properly cut a cat's claws by using scissors and speaking to the camera with the other woman petting the cat.\"]}, \"v_upoS4Jct7kE\": {\"duration\": 90.53999999999999, \"timestamps\": [[8.6, 90.54], [8.6, 29.88], [31.23, 65.64], [66.54, 90.54]], \"sentences\": [\"A person standing in a kitchen next to a cutting board on a kitchen counter demonstrates how to sharpen a knife.\", \"  A  man in a kitchen next to one tomato on a cutting board, slices the tomato piece in half and then turns to talk to the camera.\", \"  the man then picks up a plate, flips it over and begins to run the blade of the knife across the protruding edges at the bottom of the plate.\", \"  After doing this, the man then uses the knife to cut the tomato again, this time slicing neater and quicker, the man then smiles at the camera.\"]}, \"v_te5xo60oVZM\": {\"duration\": 123.72, \"timestamps\": [[0, 123.72], [24.12, 60.62], [61.24, 123.72], [109.49, 113.2]], \"sentences\": [\"A person is grooming a small white dog.\", \" The person trims the dogs hair around his face.\", \" The person turns the dog and trims the hair on his chest and neck and face.\", \" The camera is jostled briefly.\"]}, \"v_pLVCuSq560Y\": {\"duration\": 185.85, \"timestamps\": [[0, 20.44], [27.88, 185.85]], \"sentences\": [\"People are gathered outdoors, at a beach.\", \" They are playing a game of volleyball, serving and kicking the ball back and forth.\"]}, \"v_q1yuDuO01tg\": {\"duration\": 95.39, \"timestamps\": [[0, 16.22], [19.55, 70.59], [78.22, 95.39]], \"sentences\": [\"A plant is shown and then women are interviewed and start laughing.\", \"  The women start taking their clothes off and bungee jump together.\", \"  They kiss and then jump and down.\"]}, \"v_FP0tI2Tjigs\": {\"duration\": 48.37, \"timestamps\": [[0, 7.5], [6.53, 48.37], [14.75, 25.64], [25.64, 48.37]], \"sentences\": [\"A small boy plays with a toy vacuum.\", \" An adult vacuums the floor beside him.\", \" The camera pans to show another small boy playing with another toy vacuum.\", \" The camera adjusts to show both the children together.\"]}, \"v_RhEunVjB_Ns\": {\"duration\": 154.82999999999998, \"timestamps\": [[0, 154.83], [0, 153.28]], \"sentences\": [\"A cheer leading team performs a routine in a gym.\", \" Another team practices behind them.\"]}, \"v_CAG75_XxmEE\": {\"duration\": 29.05, \"timestamps\": [[0, 4.79], [4.79, 11.04], [11.04, 29.05]], \"sentences\": [\"A man is shown mowing his lawn on a hazy day.\", \" he goes back and forth and looks into the camera and seems to be struggling.\", \" he goes back and forth making sure to stay in a straight line.\"]}, \"v_S8oIiWRiIfE\": {\"duration\": 28.75, \"timestamps\": [[0, 5.89], [5.75, 19.12], [19.4, 28.75]], \"sentences\": [\"Three young men are standing and talking together about something.\", \" They smile and seem to be enjoying themselves a lot.\", \" The three come into frame and the video of them ends.\"]}, \"v_n-BJ753InB0\": {\"duration\": 254.93, \"timestamps\": [[0, 66.28], [75.2, 196.3], [146.59, 244.73]], \"sentences\": [\"A person is seen smiling to the camera while holding a scraper.\", \" The person then begins pushing snow along the car.\", \" The woman continues to push around the snow as well as a man behind her.\"]}, \"v_yVE4t-X5b-M\": {\"duration\": 114.64, \"timestamps\": [[0, 25.22], [25.22, 85.98], [55.6, 63.62], [88.27, 107.19], [108.91, 114.64]], \"sentences\": [\"We see two girls performing gymnastic flips indoors.\", \" We see the girls flipping in their yard.\", \" The girls perform flips together.\", \" The girls do handstands together.\", \" We then see the closing credits.\"]}, \"v_eeoQE0dbA6U\": {\"duration\": 201.02, \"timestamps\": [[0, 40.2], [40.2, 45.23], [45.23, 77.39], [77.39, 97.49], [97.49, 182.92]], \"sentences\": [\"A young man makes exercises using a stick that spins in his hands.\", \" The man throws the stick to the air, and he spins until the stick falls.\", \" Then, the young man spins the stick on his neck, after makes moves with the hands.\", \" After, the young man jumps over the stick, then spins his body stand in one leg.\", \" Next, the young man performs a mix of moves.\"]}, \"v_ZkIGGQ9iOSA\": {\"duration\": 48.67, \"timestamps\": [[0, 2.43], [2.43, 48.67], [23.6, 48.67]], \"sentences\": [\"A girl is laying on a black mat next to a swimming pool.\", \" She starts doing sit ups on the ground.\", \" The person filming walks around them.\"]}, \"v_izZqZFVpW4c\": {\"duration\": 174.48, \"timestamps\": [[2.62, 48.85], [47.98, 136.96], [148.3, 171.86]], \"sentences\": [\"A man is seen sitting on the ice with a fishing rod and showing under the water.\", \" Fish are seen swimming around while the two men and one man catches a fish while speaking to the camera.\", \" Another fish is caught and presented to the camera while the men speak.\"]}, \"v__xgGaxc1jNE\": {\"duration\": 184.27, \"timestamps\": [[0, 184.27], [9.21, 26.72], [30.41, 78.32], [46.99, 184.27]], \"sentences\": [\"A man in a suit sits against a background.\", \" He nods his head as he looks at the camera.\", \" He then begins to talk about something.\", \" He alternates between talking and listening.\"]}, \"v_mr2wnh2GwL8\": {\"duration\": 238.17000000000002, \"timestamps\": [[5.95, 108.37], [90.5, 184.58], [157.19, 236.98]], \"sentences\": [\"A camera is seen moving quickly all around a beach passing by several objects and people and lead into several people laying down buckets and shoveling sand.\", \" The men continue shoveling sand into the buckets and lead into them taking off the bucket and sculpting the sand into a castle.\", \" In the end they are seen speaking to the camera and their words being washed away.\"]}, \"v_RNAUncQEASo\": {\"duration\": 122.95, \"timestamps\": [[0, 122.95], [27.05, 122.95], [101.43, 122.95]], \"sentences\": [\"A small white dog is standing on a table.\", \" A woman begins shaving the dog.\", \" She picks up a brush and brushes the dogs hair.\"]}, \"v_jmerKGN0VPs\": {\"duration\": 47.18, \"timestamps\": [[0, 47.18], [4.25, 8.26], [8.49, 13.92], [39.87, 47.18]], \"sentences\": [\"A man in red sprays his car with water.\", \" He rinses off the soap.\", \" He laughs as he does it.\", \" He sprays the back of the car.\"]}, \"v_M1-G6KEhY-M\": {\"duration\": 130.03, \"timestamps\": [[0, 2.6], [2.6, 62.42], [8.45, 57.86], [60.46, 106.63], [106.63, 126.13], [126.13, 130.03]], \"sentences\": [\"We see an opening title screen.\", \" We then We a lady riding a horse on the beach talking to the camera.\", \" We see a man riding behind the lady go in and out of the shot.\", \" We switch to a different lady riding and talking.\", \" We see four people on horses on the beach.\", \" We then see the ending title screen.\"]}, \"v_ccirM2NGwMA\": {\"duration\": 17.0, \"timestamps\": [[0, 16.15], [0.68, 16.15], [1.27, 16.15], [1.7, 16.15]], \"sentences\": [\"A man blow dries a young child's hair.\", \" The man is sitting down.\", \" The child does not appear to enjoy it.\", \" The child is wearing a blue towel.\"]}, \"v_naCGjbEz1T8\": {\"duration\": 105.65, \"timestamps\": [[0, 27.47], [28.53, 105.65]], \"sentences\": [\"Two young children are seen standing in front of a table with various objects laid out.\", \" The boys then combine the mixtures into a bowl and make a drink to try with themselves and the cameraman.\"]}, \"v_KNyM0KvDHMM\": {\"duration\": 189.87, \"timestamps\": [[3.8, 18.99], [18.99, 41.77], [41.77, 161.39]], \"sentences\": [\"A man is in a bike shop and stand next to a bike while talking.\", \" The man holds a pointy tool that uses to fix the handle of the bike.\", \" The man takes out the cover of the handlebar and rise with the tool and spray liquid inside, then press the handle with his hand.\"]}, \"v_EXUKhI7WTqo\": {\"duration\": 104.72, \"timestamps\": [[0, 31.42], [29.85, 79.59], [69.64, 100.53]], \"sentences\": [\"A group of people are seen wandering into a yard and leads into people dancing with one another.\", \" Two couples are seen dancing with another while the camera pans around their movements.\", \" They continue to dance with one another and ends by walking away.\"]}, \"v_9A3z0W8U124\": {\"duration\": 95.69, \"timestamps\": [[0.96, 54.06], [39.71, 92.34]], \"sentences\": [\"A gymnast is seen standing before a beam with her arms up and leas into her jumping up on the beam and performing various gymnastics.\", \" The woman continues to flip and kick all around the beam and ends by jumping off the side and presenting herself to the audience.\"]}, \"v_pKFBr0pMn7I\": {\"duration\": 60.58, \"timestamps\": [[0, 18.17], [16.96, 49.68], [47.56, 60.58]], \"sentences\": [\"A man is seen looking around a field with audience members watching and leads into him running down a field and pole volting over a bar.\", \" He cheers while the audience cheers and his shot is shown again for cameras.\", \" He stands around speaking while the audience continues to look around and ends with him walking away.\"]}, \"v_VuiuqKX8srs\": {\"duration\": 123.95, \"timestamps\": [[1.24, 40.9], [40.9, 47.72], [45.86, 47.72], [48.34, 123.95]], \"sentences\": [\"A man and a child do snow tubing down a hill sitting on a ring sled.\", \" There are three people snow tubing on the hill covered with snow, then they stops.\", \" There are people on side the hill.\", \" Then, the man sled alone on the hills, after he  reaches other people and all sled together.\"]}, \"v_xbcP38aF5Ok\": {\"duration\": 176.89, \"timestamps\": [[0, 24.76], [24.76, 75.18], [75.18, 117.63], [117.63, 176.89]], \"sentences\": [\"A man with red some what spiky hair grabbed another boy by the shirt and the boy walked away, the man went after him but then quickly turned back around.\", \" The red spiked hair man is then on the court practicing flips and stuff.\", \" Other men are outside talking and laughing and then man with the red hair is gathered with friend and has a chip in his nose.\", \" He and his friend next to him slap the guy in front of him.\"]}, \"v_TUPCQpyoSbI\": {\"duration\": 164.82, \"timestamps\": [[0, 23.9], [23.9, 46.15], [46.15, 91.47], [91.47, 164.82]], \"sentences\": [\"Outside a man is walking with a herd of sheep during a cold winter day.\", \" Inside of some store there is an older woman browsing looking around at some fabric.\", \" A family eats lunch at the table together, while a 75 year old grandma knits inside of the house.\", \" She goes to a group to hang out with other older women who enjoy knitting as well.\"]}, \"v_gIgim1Dp8HU\": {\"duration\": 62.97, \"timestamps\": [[0, 18.26], [11.96, 49.12], [39.36, 61.4]], \"sentences\": [\"Two sumo wrestlers are seen standing ready with a ref walking around them.\", \" The men fight with one another and end by pushing one out of the ring.\", \" More shots are shown of the people fighting and walking out of the circle.\"]}, \"v_mpLYUgMhacA\": {\"duration\": 61.32, \"timestamps\": [[0, 61.32], [0, 61.02], [30.66, 61.32]], \"sentences\": [\"man is wearing orange sweater and shorts and is skating in paved street.\", \" grey car is behind the skater ridin slow in street.\", \" cars are prked on a side of the street.\"]}, \"v_OEQM6wYtYlk\": {\"duration\": 52.69, \"timestamps\": [[0, 27.13], [27.66, 52.69]], \"sentences\": [\"A tall adult male is walking up and extremely long slide at an outdoor kid's wooden park.\", \"Once the man makes it to the top,he slides down rapidly and ends up doing a flip off of the slide.\"]}, \"v_XbkGlZTlixw\": {\"duration\": 124.39, \"timestamps\": [[0, 11.2], [11.2, 22.39], [22.39, 52.24], [52.24, 56.6], [56.6, 64.06], [64.06, 110.71], [110.71, 120.66], [120.66, 124.39]], \"sentences\": [\"Two young boys wearing helmets, holding skateboards and carrying backpacks are walking through an area that is heavily filled with leaves and trees.\", \" A third boy appears as they pass him and he is also wearing a helmet.\", \" The boys then begin to ride their skateboards on the road and now there's a 4th boy who has also joined them as they continue riding down the road and filming themselves while taking turns holding the stick with the camera attached to it.\", \" A 5th boy suddenly appears and takes the stick to take his turn in filming.\", \" It briefly shows a boy skateboarding down a different street all alone.\", \" The view then returns to the boys skateboarding together again as they pass homes on each sides of the road and they continue to pass the stick to one another to take turns taking the video.\", \" The video ends with a special effect of them going backwards instead of forwards and one of the boys holds his hand up to show a shaka sign made with his left hand.\", \" A black screen with white letters scrolling from the bottom to the top includes the names of all the boys in the video.\"]}, \"v_15IRaGI4Ml0\": {\"duration\": 184.03, \"timestamps\": [[2.76, 73.61], [29.45, 176.67]], \"sentences\": [\"A woman is seen exercising on a piece of equipment while the camera pans around form several angles.\", \" The woman continues working out as well as adjusting the machine and more shots shown of her working out.\"]}, \"v_291szrilAVE\": {\"duration\": 186.18, \"timestamps\": [[0, 0.93], [1.86, 21.41], [21.41, 73.54], [73.54, 135.91], [135.91, 139.63], [142.43, 175.94], [176.87, 184.32], [185.25, 186.18]], \"sentences\": [\"We see a black opening screen.\", \" We see a boy opening a box in a car.\", \" The boy puts on his jumpstilts and helmet.\", \" the boy walks around the parking lot.\", \" We see the boy jumping.\", \" The boy is indoors in a gym jumping.\", \" The boy is running on grass and falls.\", \" We see the website on the screen.\"]}, \"v_uLeJBFypCHE\": {\"duration\": 233.69, \"timestamps\": [[0, 31.55], [38.56, 91.14], [109.83, 233.69]], \"sentences\": [\"A road is shown, and a man on a motorcycle rides up.\", \" We then see him riding and wakeboarding in several scenes.\", \" He drives with a friend to the ocean, where they go wakeboarding together.\"]}, \"v_MYFVsllwDnc\": {\"duration\": 96.69, \"timestamps\": [[0, 96.69], [30.46, 96.69], [42.06, 51.73]], \"sentences\": [\"A man is standing in a field raking grass.\", \" A white dog is standing by the fence.\", \" He takes a towel and cleans off the hook.\"]}, \"v_DmtaWx7QcZ8\": {\"duration\": 94.07, \"timestamps\": [[10.82, 18.34], [30.1, 49.38], [49.38, 83.25]], \"sentences\": [\"A man is brushing off a wooden fence.\", \" He begins to paint the fence with a roller.\", \" He then begins to spray paint the fence.\"]}, \"v_L54gbbqtxOg\": {\"duration\": 61.51, \"timestamps\": [[0.92, 11.99], [14.15, 39.37], [36.29, 58.74]], \"sentences\": [\"A close up of a drawer is shown as well as a woman painting the sides.\", \" She paints down on the opening and dips the brush into the paint.\", \" She continues painting the furniture and looks back to speak to the camera.\"]}, \"v_JHuLY-ygFkc\": {\"duration\": 128.57, \"timestamps\": [[21.86, 55.28], [70.71, 123.43], [0, 123.43]], \"sentences\": [\"A dealer is shuffling a stack of cards.\", \" He begins dealing the cards onto the table.\", \" People are standing around the table playing blackjack.\"]}, \"v_a0YyuiZVtFU\": {\"duration\": 27.54, \"timestamps\": [[0.55, 11.7], [8.81, 11.7], [12.53, 27.54]], \"sentences\": [\"A karate instructor throws a student to the mat grabbing his collar.\", \" The instructor throws and pins the student on the mat by the arm.\", \" The karate instructor flips the student from one his stomach to back on the mat.\"]}, \"v_AT_pPlJTiyE\": {\"duration\": 205.79, \"timestamps\": [[3.09, 95.69], [76.14, 203.73]], \"sentences\": [\"A woman is seen speaking to the camera while standing next to a car and the camera panning all around the car.\", \" Objects are shown laid out while the woman continues to speak and show off specs on the car and showing how to use a jack to lift.\"]}, \"v_UWgzslG97MQ\": {\"duration\": 220.39, \"timestamps\": [[0, 24.24], [26.45, 158.68], [159.79, 220.39]], \"sentences\": [\"A surfer is surfing in a giant wave in the ocean.\", \" A countdown is shown of ten clips of surfers as they surf through waves.\", \" They crash through the center of the wave as it reaches shore.\"]}, \"v_hPV-Z73KXak\": {\"duration\": 238.4, \"timestamps\": [[0, 56.02], [52.45, 238.4]], \"sentences\": [\"A close up of a drum is shown followed by a person hitting it and leading into a man sitting behind a drum kit.\", \" The man plays the drums while pausing to speak to the camera and leading into more shots of him playing the drums.\"]}, \"v_U7k6GFEOt7g\": {\"duration\": 202.73, \"timestamps\": [[0, 38.52], [39.53, 150.02], [150.02, 170.3], [170.3, 198.68]], \"sentences\": [\"Two teams play hurling running and throwing a small ball with a stick.\", \" Then, the team wearing green uniform gather together to forma circle, then they continue playing.\", \" A player with green t-shirt scores, then the players continue the game.\", \" After, a boy on front the goal and scores, they the players continue the game.\"]}, \"v_z-ttrQ38mOc\": {\"duration\": 221.05, \"timestamps\": [[12.16, 207.79], [42, 46.42], [47.53, 49.74], [112.74, 114.95], [122.68, 123.79], [180.16, 181.26], [217.74, 218.84], [217.74, 221.05]], \"sentences\": [\"A woman in a white dress is dancing and playing the violin.\", \" A man is playing a clarinet.\", \" A man is playing an electric guitar.\", \" A man is leading the band.\", \" The crowd applauds for the woman and the band.\", \" A piano player plays the piano.\", \" She waves and bows at the crowd.\", \" The crowd applauds for the band at the end.\"]}, \"v_pnxgTQofPQo\": {\"duration\": 11.1, \"timestamps\": [[0, 8.1], [8.05, 11.1]], \"sentences\": [\"Three kids lift up another kid in the air.\", \" They throw the kid on the ground and start laughing.\"]}, \"v_e51ld7ANyQg\": {\"duration\": 167.86, \"timestamps\": [[10.91, 15.95], [16.79, 28.54], [28.54, 60.43], [60.43, 68.82], [68.82, 141], [141, 157.79]], \"sentences\": [\"A man talks to the camera.\", \" Several slow motion videos of curling scenes are shown.\", \" Several regular speed curling scenes are shown.\", \" The man talks to the camera again, with people in the background.\", \" Scenes of curling practice are shown.\", \" The man talks to the camera once more.\"]}, \"v_bh6VHVHMoo8\": {\"duration\": 26.59, \"timestamps\": [[0, 3.19], [3.99, 23.53], [8.37, 16.88], [14.49, 23.53], [23.66, 26.59]], \"sentences\": [\"There is an opening title screen with words.\", \" A man in a blue shirt kneels on the ground and slowly pulls a weight.\", \" The camera pans right to the front of the man.\", \" We see a lady in the background working our on her knees.\", \" The ending title screen has a website on it.\"]}, \"v_K1TizK5Sg78\": {\"duration\": 221.22, \"timestamps\": [[0, 8.85], [9.95, 11.06], [16.59, 18.8], [25.44, 27.65], [34.29, 36.5], [43.14, 47.56], [51.99, 57.52], [64.15, 68.58], [73, 78.53], [84.06, 88.49], [94.02, 95.12], [109.5, 112.82], [120.56, 124.99], [129.41, 133.84], [141.58, 144.9], [153.75, 159.28], [165.91, 170.34], [175.87, 183.61], [195.78, 199.1], [206.84, 211.26], [214.58, 221.22]], \"sentences\": [\"A man pulls out a cigarette and lights it.\", \" He takes a puff off his smoke.\", \" He takes a second puff.\", \" He takes a third puff.\", \" He takes a fourth puff.\", \" He takes a fifth puff.\", \" He takes a sixth puff.\", \" He takes a seventh puff.\", \" He takes an eight puff.\", \" He takes a ninth puff.\", \" He takes a tenth puff.\", \" He takes a eleventh  puff.\", \" He takes a twelve puff.\", \" He takes a thirteenth puff.\", \" He takes a fourteenth puff.\", \" He takes a fifteenth puff.\", \" He takes a sixteenth puff.\", \" He takes a seventeenth puff.\", \" He takes a eighteenth puff.\", \" He takes a nineteenth puff.\", \" And he takes a final puff.\"]}, \"v_c1tbdVxIhH4\": {\"duration\": 68.64, \"timestamps\": [[0, 5.49], [5.49, 36.04], [36.38, 68.64]], \"sentences\": [\"A man and his son are sitting at a table holding a pumpkin.\", \" The man turns the pumpkin on the side and the boy sticks his hand inside to scoop out some of the insides of the carved jack-o- lantern with a spoon.\", \" The room turns dark and the two put the pumpkin over a candle and the pumpkin lights up with a carved pumpkin face with a hat.\"]}, \"v_4qnrM4k6qN0\": {\"duration\": 227.41, \"timestamps\": [[6.82, 117.11], [65.95, 216.04]], \"sentences\": [\"An intro leads into several clips of soccer players performing impressive tricks with a soccer ball.\", \" The people continue playing with one another as more clips are show of different people performing tricks.\"]}, \"v_-lEsnrNNZFU\": {\"duration\": 102.08, \"timestamps\": [[0, 102.08], [13.78, 96.46]], \"sentences\": [\"A small group of people are seen swinging ropes with one another and performing a gymnasts routine with jump ropes.\", \" The men switch back and fourth with one another doing various flips and tricks all through the jump rope and taking turns.\"]}, \"v_4OCbTYrThtc\": {\"duration\": 126.01, \"timestamps\": [[0, 5.67], [5.67, 30.24], [31.5, 56.07], [57.33, 90.09], [91.98, 126.01]], \"sentences\": [\"A bull races out of a gate into a corral area of.\", \" A bull fighter uses a cape to distract the bull and escape its advances.\", \" A Roman Colosseum is seen with spectators watching fighters in armor.\", \" Two bulls are watched during a skirmish in a rural hillside village.\", \" The bull is now wounded and bleeding with spears in it's back and it chases after the matador in the stadium.\"]}, \"v_x2xC5lm0cZw\": {\"duration\": 158.55, \"timestamps\": [[0, 158.55], [9.51, 17.44], [109.4, 116.53]], \"sentences\": [\"A girl is outside mowing the lawn on a very sunny day.\", \" She has to back the lawn mower onto the pavement to get it going in the right direction.\", \" Another girl is shown outside playing in the dirt.\"]}, \"v_l9HcwQPNvWo\": {\"duration\": 196.66, \"timestamps\": [[0, 67.85], [67.85, 196.66], [193.71, 196.66]], \"sentences\": [\"A man sits down with a harmonica on his neck and plays a guitar.\", \" He starts playing the harmonica while still playing the guitar.\", \" He finishes playing and leans over in front of him.\"]}, \"v_AFdqkU6FyqY\": {\"duration\": 132.05, \"timestamps\": [[3.3, 34.99], [31.69, 68.01], [57.44, 111.58], [110.92, 130.73]], \"sentences\": [\"A few people are seen riding down the road while the camera zooms in on their faces and the people driving along a dirt path.\", \"The people then park as many speak and wave to the camera while it pans around the area.\", \" A person is then seen riding along the water on a wake board performing various tricks while people sit in canoes and watch on the side.\", \" The video is then seen at night with people smiling to the camera and leads by someone walking into a bedroom.\"]}, \"v_KWhXvv1WtFM\": {\"duration\": 14.19, \"timestamps\": [[0, 0.99], [1.35, 9.22], [9.58, 14.19]], \"sentences\": [\"A view is seen of three pairs of feet.\", \" Then we see men fencing inside a building.\", \" A man bows before removing his hood and walking away.\"]}, \"v__i6kvwg1Oyo\": {\"duration\": 57.61, \"timestamps\": [[0, 57.61], [20.16, 39.46], [44.94, 48.1]], \"sentences\": [\"A piece of paper is placed over a dart board.\", \" Darts are thrown into the piece of paper.\", \" Someone comes and lifts up the piece of paper.\"]}, \"v_kWtY5wkkAMY\": {\"duration\": 56.77, \"timestamps\": [[0, 56.77], [7.38, 55.64]], \"sentences\": [\"A man is seen holding a tool over a log and trimming the grass around the log.\", \" The person continues using the machine around the bushes while the camera pans his movements up and down.\"]}, \"v_iRwRwpVLE_Y\": {\"duration\": 196.69, \"timestamps\": [[0, 53.11], [53.11, 165.22], [158.33, 196.69]], \"sentences\": [\"A young girl is seen speaking to the camera and leads into her pouring out ingredients into a bowl.\", \" She mixes the ingredients together and an older man comes in to taste test the balls she rolled.\", \" The girl takes a bite as well while continuing to smile and laugh to the camera.\"]}, \"v_7ghaFHKMUZ0\": {\"duration\": 70.26, \"timestamps\": [[0, 17.21], [17.57, 39.7], [41.1, 70.26]], \"sentences\": [\"A close up of a box of ice cream is shown and leads into a bowl of ice cream sitting beside the box.\", \" The camera leads into the bowl and turns towards a bearded man eating the ice cream and nodding in approvement.\", \" He speaks to the camera a bit and positions the camera back onto the ice cream.\"]}, \"v_2Sev8z4P7pE\": {\"duration\": 45.28, \"timestamps\": [[0, 3.62], [4.08, 20.83], [21.73, 43.92]], \"sentences\": [\"A man rake dead leaves in a backyard.\", \" Then, the man put the leaves in a bags.\", \" After, the man mows the lawn.\"]}, \"v_uptOE6bfBgA\": {\"duration\": 84.68, \"timestamps\": [[0, 35.57], [35.57, 84.68], [52.5, 61.82]], \"sentences\": [\"A person is using a leaf blower to blow leaves down a street.\", \" They keep blowing the leaves out of a gutter.\", \" The leaves are blowing onto the lawn.\"]}, \"v_ai80XIxFqqg\": {\"duration\": 236.94, \"timestamps\": [[11.85, 24.88], [26.06, 43.83], [43.83, 99.51], [101.88, 135.05], [135.05, 215.61]], \"sentences\": [\"A topless woman holds a firearm and walk in a yard.\", \" Then, the woman positioned the firearm and pretend to shoot.\", \" The woman walks in the yard and pretend to shoot.\", \" After, the woman takes off her clothes and makes sexy movements.\", \" Next, the woman practice shooting in a training camp.\"]}, \"v_XX2sXEmR4BE\": {\"duration\": 23.45, \"timestamps\": [[0, 19.35], [0, 12.66], [12.66, 19.47], [19.47, 23.45]], \"sentences\": [\"A woman wearing white is on a bicycle machine and is leaning forward as she struggles to keep peddling.\", \" Another woman wearing pink casually walks in, removes her jacket and sits on the bike next to her and begins to peddle.\", \" After a few seconds of peddling, the woman in pink stops peddling, grabs her jacket, smiles at the woman in white and walks away.\", \" The outro is a white screen that has a can of a drink and pink words next to it that say \\\"COCIO LIGHT FAERRE KALORIER\\\".\"]}, \"v__8Zk9dfBgPg\": {\"duration\": 122.35, \"timestamps\": [[0, 28.75], [25.08, 88.09], [72.8, 118.06]], \"sentences\": [\"A woman is seen walking into frame and begins using a brush on a pallet.\", \" She blows the paint onto a picture while the camera captures her movements.\", \" She continues painting on the pallet and ends by showing it off in the end.\"]}, \"v_Ez7s36AwgLk\": {\"duration\": 233.94, \"timestamps\": [[0, 5.85], [5.85, 14.04], [15.21, 29.24], [30.41, 45.62], [46.79, 65.5], [67.84, 88.9], [90.07, 145.04], [145.04, 177.8], [178.97, 210.55], [210.55, 223.41], [224.58, 233.94]], \"sentences\": [\"We see a series of title screens.\", \" We see men skateboarding and people watching.\", \" We see shots of people gathered and registering for the event and see the crowd.\", \" We see men skateboards in a plaza over ramps.\", \" The crowd claps and we see candid shots of the people at the event.\", \" We see boxes of vitamin water and people drinking it, a man with a microphone and other people.\", \" We see skating for awhile.\", \" We see headphones, and a man throwing items to kids, a boy puts a sticker on his skateboard.\", \"  We see people posing with their trophy's.\", \" A group of men lift another in the air and run off.\", \" We see closing screens and a website.\"]}, \"v_8nhuvbFSSmw\": {\"duration\": 207.56, \"timestamps\": [[0, 131.8], [70.57, 205.49]], \"sentences\": [\"Several shots are shown of a city that are followed by many clips of people riding around on skateboards.\", \" The people continue riding around areas one another the other performing various flips and tricks with one another as well as walking around the area.\"]}, \"v_qm8sJxsZ5VY\": {\"duration\": 223.7, \"timestamps\": [[0, 64.87], [53.69, 167.78], [148.76, 216.99]], \"sentences\": [\"A man is seen standing next to a barber shop and leads into him cutting the hair of others.\", \" The man is shown is several clips using a razor on a person's head as well as combing and speaking to the camera.\", \" People watch the man work on the side and end with men smiling to the camera.\"]}, \"v_WxlJBRUU1A0\": {\"duration\": 226.47, \"timestamps\": [[10.19, 163.05], [164.19, 217.41]], \"sentences\": [\"A woman remains seated as she speaks and knits.\", \" The woman stops knitting and points to some of the patterns on the knitted piece as she speaks.\"]}, \"v_xe6-tTvxQxk\": {\"duration\": 75.51, \"timestamps\": [[1.89, 39.64], [27.56, 66.07]], \"sentences\": [\"Two people are seen playing a tennis match with one another hitting the ball to the other.\", \" The men continue hitting the ball back and fourth and walking around the course.\"]}, \"v_APAxAnwS9oM\": {\"duration\": 102.49000000000001, \"timestamps\": [[0, 29.72], [29.72, 77.89], [77.89, 86.09]], \"sentences\": [\"A dog is sitting in the grass.\", \" The dog stands up and walks to the door.\", \" The dog walks inside the house.\"]}, \"v_3iHHhCHcT8I\": {\"duration\": 183.3, \"timestamps\": [[0, 33.91], [40.33, 145.72], [147.56, 183.3]], \"sentences\": [\"A young man is sitting outside a building looking sad.\", \" He shakes his leg, occasionally taking a smoke from his cigarette.\", \" He finally stands up and walks away before turning off the camera.\"]}, \"v_DVlMzGPhWO4\": {\"duration\": 96.00999999999999, \"timestamps\": [[0.48, 96.01], [34.08, 38.4]], \"sentences\": [\"Two people surf in the ocean on boats equipped with sails .\", \" A hand holds ropes  from the sail.\"]}, \"v_jprf0pE-4uI\": {\"duration\": 88.98, \"timestamps\": [[0, 9.79], [10.68, 88.98]], \"sentences\": [\"manis running in a green grassy field.\", \" leaf blower is blowing dry leaves in the green grassy field.\"]}, \"v_t0y6dkIwEvc\": {\"duration\": 34.06, \"timestamps\": [[0, 11.07], [11.41, 27.59], [28.44, 34.06]], \"sentences\": [\"A track athlete prepares himself to run.\", \" He runs quickly down the path.\", \" He then jumps into the air, and lands in a pit of sand.\"]}, \"v_YSnCGTXJtig\": {\"duration\": 31.07, \"timestamps\": [[0, 3.26], [3.26, 25.01], [25.01, 31.07]], \"sentences\": [\"A man is let out of the whole riding a horse attached to a calf.\", \"The calf runs and the man begins to chase him on the horse,once the lasso catches him,he gets off and ties him up.\", \"Once he gets on the horse,the calf is not completely secured and begins to move his head,causing others to come out to try and tie him up more.\"]}, \"v_BCdt22s9hlU\": {\"duration\": 97.75999999999999, \"timestamps\": [[0, 31.77], [32.75, 97.76]], \"sentences\": [\"A person's feet and legs are shown followed by the person putting socks on and rolling their pants over the socks.\", \" The person then puts a pair of shoes on and tying them and ending by standing up straight.\"]}, \"v_CSruNOwxCRY\": {\"duration\": 99.06, \"timestamps\": [[0, 99.06], [16.84, 93.61], [98.56, 99.06]], \"sentences\": [\"These people are playing volleyball at the beach.\", \" Most of the team members are spiking to pass the ball.\", \" After a while of play, the ball flies over to the tennis court and someone runs over to get the ball.\"]}, \"v_NjzUWVoc8rw\": {\"duration\": 7.34, \"timestamps\": [[0, 7.34], [1.54, 3.45], [3.45, 7.34]], \"sentences\": [\"A man is standing in a room.\", \" He has a ball on a tennis racket.\", \" He throws the ball in the air and hits it with the racket.\"]}, \"v_NcTZ3wgdNOQ\": {\"duration\": 212.23, \"timestamps\": [[21.22, 126.28], [109.3, 212.23]], \"sentences\": [\"A woman is seen walking into frame and then begins brushing a horse all around its' body.\", \" The woman continues brushing the horse is all of it's areas as well as it's hooves and smiling to the camera.\"]}, \"v_xftFhOCEqFs\": {\"duration\": 166.79, \"timestamps\": [[0, 31.69], [31.69, 75.06], [75.06, 117.59], [117.59, 166.79]], \"sentences\": [\"Pole vault is a sport where you run with a pole and stop and swing your body.\", \" A few women are in the gym practicing to do this pole vault, trying to do their best.\", \" The coach watched and evaluates them to give them any tips and pointer.\", \" They encourage recording and watching it back so you can fix the things you can't see from first person point of view.\"]}, \"v_ZjYttT9itfY\": {\"duration\": 184.08, \"timestamps\": [[0, 23.93], [25.77, 143.58], [150.94, 184.08]], \"sentences\": [\"An athlete holds a ball to his chin while another spits on one.\", \" They men are shown spinning quickly.\", \" They each throw the ball as far as they can.\"]}, \"v_xzmcOKHP-sM\": {\"duration\": 113.57, \"timestamps\": [[0, 4.54], [5.11, 31.8], [32.94, 47.7], [48.27, 54.51], [55.08, 78.93], [79.5, 84.04], [99.37, 102.78], [103.92, 113.57]], \"sentences\": [\"We see a hospital in an opening scene.\", \" We see hospital scenes then a room of women knitting and a lady talking.\", \" We see kids looking through and wearing the knitted hats.\", \" We see a lady talking we see the hats, people knitting, and the lady talks again.\", \" We see people looking through and wearing the hats.\", \" A lady walks down a hallway with the hats in a wagon.\", \" We see a boy in a mask wearing the hat.\", \" We see the ending screen.\"]}, \"v_3RTmWrwgKek\": {\"duration\": 30.65, \"timestamps\": [[0, 11.34], [11.19, 30.65]], \"sentences\": [\"A small boy is seen throwing a pebble onto hop scotch while many watch on the sides.\", \" The boy hopes all the way down and back while grabbing the pebble and others cheer.\"]}, \"v_DBGea9pST1A\": {\"duration\": 60.44, \"timestamps\": [[3.02, 18.74], [18.43, 43.82], [43.82, 60.44]], \"sentences\": [\"A person is pushing a snow blower through snow.\", \" A man is shoveling his walk way to his home.\", \" The snowy street is shown.\"]}, \"v_6UjZaj86bKs\": {\"duration\": 227.89, \"timestamps\": [[0, 17.09], [22.79, 39.88], [46.72, 193.71], [200.55, 227.89]], \"sentences\": [\"A belly dancer is kneeling on a stage.\", \" She raises her arms and another dancer appears.\", \" They dance together gracefully, shaking hips and rotating their arms.\", \" The stage fades to black as they finish.\"]}, \"v_IWhEUNOUIyc\": {\"duration\": 227.3, \"timestamps\": [[0, 27.28], [28.41, 138.65], [140.93, 227.3]], \"sentences\": [\"A news woman is speaking in a news room.\", \" A group is playing drums on a stage together.\", \" We see the people playing as if in a competition before shaking hands with the host.\"]}, \"v_MRzsZN5p9QY\": {\"duration\": 65.85, \"timestamps\": [[0, 34.57], [34.24, 65.85]], \"sentences\": [\"A man dressed in a green muscle shirt and yellow gym shorts is standing in a gym preparing to lift weights.\", \"He bends down and grabs the weight and starts to lift it up several times to his knees and then drops is as a side view is shown.\"]}, \"v_hpZ5XnuiRPw\": {\"duration\": 162.22, \"timestamps\": [[2.43, 30.01], [30.01, 73.81], [73, 121.66], [121.66, 162.22]], \"sentences\": [\"A man wearing a hat in standing in a workshop with a harmonica in hand.\", \" He talks and he shows how to form your mouth so you can play the harmonica.\", \" He starts to play with his eyes closed and he seems to be really intensely into playing his music.\", \" He is playing a song, he stops to take a breath for a moment and then continues on with his song.\"]}, \"v_BodF651KcIg\": {\"duration\": 236.87, \"timestamps\": [[0, 23.69], [28.42, 84.09], [95.93, 166.99], [177.65, 236.87]], \"sentences\": [\"A woman is seen from behind, beginning a dance on a stage.\", \" She floats her arms gracefully, then begins to sway her hips.\", \" She turns, dancing elegantly for the crowd.\", \" When she is finished, she bows, then runs off the stage.\"]}, \"v_aw4ehW-wTKA\": {\"duration\": 143.66, \"timestamps\": [[2.15, 45.25], [48.13, 98.41], [88.35, 141.51]], \"sentences\": [\"People are seen standing around and speaking to one another followed by a woman walking across a rope.\", \" People are seen taking turns on the rope attempting to balance by sitting and standing.\", \" The group continue to balance on the ropes while the camera fades away.\"]}, \"v_zPu3JBSPa94\": {\"duration\": 218.76, \"timestamps\": [[0, 49.22], [50.31, 52.5], [53.6, 218.76]], \"sentences\": [\"A woman lays in a reclined chair while a man tattoos her arm and a standing man watches.\", \" The camera pans to show another woman with an arm wrapped in plastic wrap.\", \" The camera pans back to the first woman, who now speaks intermittently.\"]}, \"v_SyOdA4ZKEtQ\": {\"duration\": 87.93, \"timestamps\": [[0, 83.1], [83.1, 87.93]], \"sentences\": [\"Girls are doing gymnastics tumbles on a blue mat.\", \" Blue flowers are shown on the screen.\"]}, \"v_mpC_UTM1tWQ\": {\"duration\": 16.95, \"timestamps\": [[0, 6.36], [6.44, 13.65], [13.48, 16.95]], \"sentences\": [\"A man is holding a disc in his hand.\", \" He spins around several times.\", \" He releases the disc onto the field in front of him.\"]}, \"v_ogOrhXUgna0\": {\"duration\": 189.96, \"timestamps\": [[0, 92.13], [97.83, 189.96]], \"sentences\": [\"Couples and people are shown floating in ocean water, as well as surfing.\", \" They ride the waves inside and out, avoiding the other people in the water.\"]}, \"v_qr5vqi5tTL8\": {\"duration\": 41.73, \"timestamps\": [[0, 41.73], [6.26, 41.73], [18.57, 21.28]], \"sentences\": [\"A dog is sitting in a bath tub.\", \" Two women are standing outside the bathtub spraying the dog with a hose.\", \" The dog shakes and water flies on the women.\"]}, \"v_5GZNSTv1rVs\": {\"duration\": 118.82, \"timestamps\": [[0, 20.79], [22.58, 61.19], [54.66, 114.06]], \"sentences\": [\"A man is seen sitting on a bucket in front of an ice hole holding a pole.\", \" The man grabs a fish and shows it to the camera and puts the fish back in.\", \" He grabs several more fish to show to the camera while putting them back in afterwards.\"]}, \"v_lGWAepvduTI\": {\"duration\": 89.93, \"timestamps\": [[0, 11.69], [11.69, 81.39], [81.39, 89.93]], \"sentences\": [\"A man comes in to a home gym, sits down and picks up a weight to work out.\", \" The man puts the weight behind his head and starts to do sit ups on the seat and he is straining to do the sit ups with the weight.\", \" He puts the weight down in front of him and gets up and walks away.\"]}, \"v_PUWg7fXnCf0\": {\"duration\": 133.51, \"timestamps\": [[0, 0.67], [1.34, 2], [4.67, 120.15]], \"sentences\": [\"A night scene is shown with the moon and a pillar.\", \" A seated statue is shown.\", \" Various scenes of people jumping rope in different ways and settings are shown.\"]}, \"v_JDM9Akcs96g\": {\"duration\": 14.07, \"timestamps\": [[0, 3.45], [3.38, 10.06], [10.55, 14.07]], \"sentences\": [\"A small down is standing in a bathtub at grooming office.\", \"As he stands,the woman continues washing him and spraying him with the water hose.\", \"The process continues and the grey and black dog is remains in the same position letting the lady do her job.\"]}, \"v_3ve9a8YKP90\": {\"duration\": 184.25, \"timestamps\": [[0.92, 178.72], [11.98, 50.67], [79.23, 112.39], [115.16, 176.88]], \"sentences\": [\"A group of people kayak in maze like bodies of water heavily dotted with ice drifts, snow caps and wild animals native to cold environments.\", \"  The kayaks traverse snow covered environments in rocky waters.\", \"  The kayakrs pass a seal on an iceberg.\", \"  The kayakers also pass a group of penguins jumping into the water.\"]}, \"v_bQhCEXZwnMM\": {\"duration\": 226.28, \"timestamps\": [[14.71, 106.35], [108.61, 225.15], [171.97, 225.15]], \"sentences\": [\"A person explains to a man while holding an archery bow in an sport shop.\", \" Then, the man holds the bow loaded with an arrow and shoot arrow, then she practice several times archery shootings.\", \" An old man takes an arrow from a table and shows to people while talking to them.\"]}, \"v_O0-CRPl0TR0\": {\"duration\": 209.12, \"timestamps\": [[0, 8.36], [8.36, 180.89], [180.89, 187.16], [187.16, 197.62], [197.62, 209.12]], \"sentences\": [\"Two players and a referee are standing in a boxed off area that is primarily red and blue, and they are standing around a ping pong table.\", \"The referee takes a seat on his blue chair and the two players begin hitting the ping pong across the table as two referees are sitting on the sidelines on each side of the table observing.\", \"The two players end their game and the referee holds his right arm up to indicate the winner as the two players meet on the right side of the table and give one another a handshake.\", \" They both then turn to the referee on the right and give him a handshake and then they walk to the referee on the left to give him a handshake as well.\", \" They both then proceed to the edge of the boxed in area and leave.\"]}, \"v_vdTisVMhW7I\": {\"duration\": 187.87, \"timestamps\": [[0, 29.12], [28.18, 67.63], [65.76, 144.66], [144.66, 187.87]], \"sentences\": [\"A man is standing in a shed talking and then begins putting together a bike.\", \"A box is taken out and several tools are laid out on the desk.\", \"The man then takes the necessary tools and begins to assemble the bike.\", \"The finish product is then shown on the bike is presented on hardwood floor.\"]}, \"v_D7WhCBcddSA\": {\"duration\": 31.65, \"timestamps\": [[0, 11.08], [10.92, 12.34], [12.5, 31.65]], \"sentences\": [\"Two men are playing wall ball in a room.\", \" A man sits down while holding his racket.\", \" The men continue to play the game.\"]}, \"v_El4QfhJ6RvE\": {\"duration\": 11.33, \"timestamps\": [[0, 1.02], [1.19, 4.65], [4.87, 11.33]], \"sentences\": [\"a man is standing in a driveway.\", \" He is wearing a pair of stilts.\", \" He jumps up and down very high on the stilts.\"]}, \"v_6Z4Qg_fNo0Q\": {\"duration\": 203.77, \"timestamps\": [[0, 47.89], [43.81, 134.49], [131.43, 203.77]], \"sentences\": [\"A scuba diver is seen giving a hand gesture to the camera and swimming around underwater.\", \" Many fish swim around the man while he moves his hands around and another person swims into frame.\", \" The men continue swimming around the fish and the camera pans around the area.\"]}, \"v_AR6_PW1um-I\": {\"duration\": 206.71, \"timestamps\": [[0, 27.91], [29.97, 63.05], [67.18, 206.71]], \"sentences\": [\"A woman is wearing a pair of inline skates.\", \" She joins a man on a skateboard.\", \" Together they perform various stunts on their equipment.\"]}, \"v_e_0bMJEFiN8\": {\"duration\": 92.86, \"timestamps\": [[2.79, 78.93], [33.89, 35.75], [50.14, 67.79], [90.54, 91.46]], \"sentences\": [\"A guy whips a sink's faucet with paper towels.\", \" The guy blows his air on the faucet.\", \" The guy waves and later gives two thumbs up.\", \" The guy sticks out his tongue and wags it.\"]}, \"v_xlr_sSnttZo\": {\"duration\": 188.38, \"timestamps\": [[0, 65.93], [64.99, 138.46], [137.52, 188.38]], \"sentences\": [\"A girl walks into frame holding a toothbrush and is seen talking to the camera and presenting her tooth brush and tooth paste.\", \"  She wets her toothbrush and places the toothpaste on the toothbrush and brushes her teeth.\", \" She spits the toothpaste out and wipes her face, smiling into the mirror and into the camera.\"]}, \"v_s_VFaQTlskE\": {\"duration\": 122.0, \"timestamps\": [[0, 7.93], [7.93, 122], [17.69, 21.96], [42.7, 45.14], [62.83, 64.66], [96.99, 112.85]], \"sentences\": [\"We see a dark opening screen.\", \" We see a man playing guitar with a man playing drums.\", \" We see a person walk past the camera.\", \" Another person walks past the camera.\", \" We see the third person walking.\", \" We see a man adjust a blue light in the right corner.\"]}, \"v_-OLPVREPy6Y\": {\"duration\": 171.09, \"timestamps\": [[0, 8.55], [9.41, 52.18], [53.04, 114.63], [115.48, 171.09]], \"sentences\": [\"A woman stands over a kitchen island with paint supplies and a detached cabinet door laying on the countertop.\", \"  She dips a sponge into the paint and paints the cabinet door, which has three coat hooks installed in the middle of it.\", \"  She shows the door to the camera and wipes off the paint.\", \"  She paints the inner portion of the door and then wipes it off too.\"]}, \"v_gh0GD6OvLHE\": {\"duration\": 16.21, \"timestamps\": [[0, 8.59], [8.02, 16.05]], \"sentences\": [\"A girl shaves her legs quickly in the shower.\", \"  Someone gets her and pushes her down.\"]}, \"v_tFjGMdff3WM\": {\"duration\": 123.09, \"timestamps\": [[0.62, 11.08], [12.31, 110.16], [111.4, 122.47]], \"sentences\": [\"The credits of the clip are shown.\", \" A black machine, welding products, and a welder are displayed.\", \" The credits of the video are shown.\"]}, \"v_Ujgmih4OtMs\": {\"duration\": 197.1, \"timestamps\": [[0, 9.85], [23.65, 197.1], [89.68, 94.61]], \"sentences\": [\"A woman is standing on a boat alone.\", \" Several people are standing on the water shooting arrows at her from a bow.\", \" A man in a white shirt is holding a camera next to them.\"]}, \"v_Rai5nKbB6wU\": {\"duration\": 199.39, \"timestamps\": [[0, 7.98], [4.98, 12.96], [12.96, 57.82], [25.92, 50.84], [59.82, 163.5], [63.8, 68.79], [88.73, 92.72], [105.68, 111.66], [150.54, 155.52], [163.5, 182.44], [183.44, 199.39]], \"sentences\": [\"We see a opening title screen.\", \" We see water and people on boats in the water.\", \" We see cuts of city street scenes.\", \" People stretch and warm up.\", \" We see people skateboarding fast cut with people and city scenes.\", \" We see a man on a skateboard crash hard.\", \" We see written score boards.\", \" We see a man tumble from his skateboard.\", \" We see a man pumping his arms.\", \"  After the race men hug and shake hands.\", \" We see the closing title screens.\"]}, \"v_mV5DfYFg4H0\": {\"duration\": 87.1, \"timestamps\": [[0, 8.27], [9.15, 21.77], [22.65, 87.1]], \"sentences\": [\"Text is shown in a foreign language.\", \" A cat is being held down in a woman's lap.\", \" She uses clippers to clip the cat's nails gently.\"]}, \"v_vmUbGiOyUbU\": {\"duration\": 113.8, \"timestamps\": [[1.14, 28.45], [34.71, 69.99], [63.73, 108.11]], \"sentences\": [\"A woman is seen speaking to the camera with a dog chained up on a table next to her.\", \" Another woman is seen speaking to the camera and the girls take turns grooming dogs.\", \" The woman are seen cutting the fur as well as their nails and showing them close up afterwards.\"]}, \"v_bJ5YjjFLGyA\": {\"duration\": 218.78, \"timestamps\": [[0, 28.44], [28.44, 57.98], [57.98, 148.77], [148.77, 218.78]], \"sentences\": [\"Two men are standing dressed in chefs uniforms, one of them is talking.\", \" They start to begin cooking, they have all the ingredients needed already lined up in a row in plates.\", \" One of them grabs a pan and begins to add some ingredients and even lets it light up a fire very briefly before beginning to put other ingredients in the other pot.\", \" They start chopping up some greens and then added it to the mixture, once it's done they have a very yummy pasta.\"]}, \"v_gSwjTXkXK3Q\": {\"duration\": 208.77, \"timestamps\": [[0, 49.06], [51.15, 154.49], [155.53, 208.77]], \"sentences\": [\"A couple of people are playing the game of pong.\", \" They throw balls, trying to get them into cups.\", \" A man talks to the camera during the game.\"]}, \"v_m6yPz9fHJnY\": {\"duration\": 92.39, \"timestamps\": [[0.46, 10.63], [8.78, 58.67], [25.87, 70.22], [42.04, 82.23], [61.9, 89.62], [74.38, 89.62], [79, 89.62], [82.69, 89.62]], \"sentences\": [\"The man walks towards the pile of woods and pick up a long and big branch, put it on top of a big log and axe it in half while his dog is sitting by the pile of logs watching.\", \" The log was cut in half, he moved the other half away, and the other half he put it on the center of two logs and axe it in half.\", \" The log was axe in half, then he picked up another slimmer log, cut it on the sides and cut it in half.\", \" He put the axe on the big log, the man went away to get another log, put it on top of the log and axe it in half.\", \" He finished cutting the first half, he moved to the second half of the log.\", \" He went away, took another small log, cut it in half and put them away.\", \" The took a bigger log and cut it in half, put it away.\", \" The dog lay on the ground sleeping while the man cut the logs and put it in a neat pile.\"]}, \"v_TUMk0wpBiP0\": {\"duration\": 165.57999999999998, \"timestamps\": [[0, 43.05], [33.94, 128.33], [130.81, 158.96]], \"sentences\": [\"Various shots are shown of landscapes as well as close up of toys and cars driving around.\", \" This leads into several clips of people riding around on snowboards.\", \" The people continuously fall down as the camera pans out of the mountain in the end.\"]}, \"v_bwRsZtPzipc\": {\"duration\": 228.89, \"timestamps\": [[0, 97.28], [56.08, 228.89]], \"sentences\": [\"A large group of women are seen standing together and then walk out onto a stage and perform in front of an audience.\", \" The group leads into two women performing the routine while the camera zooms in and out and ends with them walking out.\"]}, \"v_zqcJ0N_a6y8\": {\"duration\": 81.11, \"timestamps\": [[0, 81.11], [41.37, 45.42], [44.61, 64.48], [54.34, 79.49], [77.05, 79.49]], \"sentences\": [\"We see two men strapped together trying to pull away from each other.\", \" Glasses appear in the frame.\", \" A man goes over to photograph the event, another walks up behind him.\", \" The camera pans up and we see the other people and cars.\", \" People walk up and stop the men.\"]}, \"v_wkSm7bUCgGQ\": {\"duration\": 134.35, \"timestamps\": [[12.76, 27.54], [32.92, 47.69], [51.05, 70.53], [79.94, 100.76], [108.15, 124.95]], \"sentences\": [\"the young girl is shaving her left leg with a razor.\", \" The woman gets up and looks in the mirror.\", \" She sits back down and then finishes shaving her left leg.\", \" The young woman then begins shaving her right leg.\", \" The girl puts her leg on the bathroom counter and finishes shaving.\"]}, \"v_m1aF1CVo-s8\": {\"duration\": 94.50999999999999, \"timestamps\": [[4.73, 17.01], [19.37, 75.6], [76.55, 90.25]], \"sentences\": [\"Exercise bikes stand in the corner of a carpeted room.\", \" Two women in black workout pants run on the stationary elliptical machines.\", \" A woman unlocks a structural pin on the machine then tilts forward and wheels it away to another location.\"]}, \"v_owLv-_CPNJI\": {\"duration\": 55.3, \"timestamps\": [[0, 28.2], [25.99, 55.3]], \"sentences\": [\"A man walked towards the folded back, unfolded the handlebar, seat and wheels and tightening the screw.\", \" He folded back the bike by unscrewing them and folded them.\"]}, \"v_kPM3RAn0Mk4\": {\"duration\": 232.29, \"timestamps\": [[0, 34.84], [90.59, 105.69], [116.15, 153.31]], \"sentences\": [\"Person applies pure acetone on her nails.\", \"  Person puts the base coat on her nails.\", \"  Person applies color on her nails.\"]}, \"v_rQZIJBinOsw\": {\"duration\": 129.01, \"timestamps\": [[0, 3.23], [3.87, 7.74], [7.74, 54.83], [54.83, 101.27], [101.27, 115.46], [115.46, 121.91], [121.91, 129.01]], \"sentences\": [\"An intro screen appears with a maroon screen and gold and black letters that say \\\"Cheddar's FROM OUR SCRATCH KITCHEN\\\".\", \"A white screen then appears and the black words on the screen read \\\"how to sharpen your knives\\\".\", \" A talking man dressed in a chef's coat appears in kitchen with knives and sharpening supplies in front of him on a cutting board and he picks up different object on the cutting board and talks about each one.\", \"The man then picks up a bottle and squirts some liquid onto one of the objects, and picks up a knife and starts dragging it on both sides along the oil that is on the object.\", \"The man then removes the object and starts rubbing the knife along the hand towel that was under the object and he picks up another tool and begins rubbing the knife along it and once again rubs the knife down with the hand towel.\", \"The man then grabs a piece of paper, and while talking he starts to cut it while holding it in the air.\", \"The outro ends with a still shot of the man holding the knife to the sharpening object and the word \\\"Cheddar's\\\" on the bottom left.\"]}, \"v_yHaTlDD-qHA\": {\"duration\": 66.54, \"timestamps\": [[0, 29.94], [29.94, 65.21]], \"sentences\": [\"People are seen throwing a baseball around as well as several shots of players playing the game.\", \" People watch on the sides as players react as well as a man in a hat.\"]}, \"v_kpAwQpA1nPs\": {\"duration\": 181.05, \"timestamps\": [[0.91, 28.06], [28.97, 45.26], [47.07, 76.94], [76.94, 170.18]], \"sentences\": [\"A male athlete runs holding a pole and jumps using the pole to land on a foam mat, the the athlete speaks on front a whiteboard.\", \" A female athlete talks indoor while other girl listen, then a female athlete runs with a pole but fails to do the pole vault.\", \" A group of male and females athletes skip on a field painted with lines.\", \" After, a male and two female athletes talks indoors while other athletes do pole vault outdoors.\"]}, \"v_axzmwzPQ134\": {\"duration\": 98.5, \"timestamps\": [[0, 27.58], [14.28, 27.58], [24.13, 98.5]], \"sentences\": [\"The balls are hit by a mallet.\", \" The woman with big earrings is being interviewed.\", \" The players are wearing white and in the field hitting the ball with the mallet while audiences are sitting in the grass watching the game.\"]}, \"v_NhcOmldkGIo\": {\"duration\": 175.2, \"timestamps\": [[0, 63.95], [63.95, 74.46], [74.46, 89.35], [89.35, 175.2]], \"sentences\": [\"A score board is shown and it reads LISMORE 0-06 and D LA SALLE 1-04 then two teams are shown playing land hockey on a large green field.\", \"Two men collide into one another and they begin to fight  and a man from off the field comes in to break them up along with other team players coming in to help.\", \"Another man from off the field runs in to help but he ends up fighting with the first guy who ran in to help and others have to break them apart.\", \" The game continues until the last score on the board is shown and it reads LISMORE 1-16 D LA SALLE 1-15 and the spectators start to get up from the stands.\"]}, \"v_kU2FVf0ldx4\": {\"duration\": 27.73, \"timestamps\": [[0, 27.73], [0.97, 27.73], [0.97, 26.75]], \"sentences\": [\"little kid is swinging in a yellow swing ni a playground.\", \" little kid is standing swinging in the swing in the park.\", \" kids are playing in the background of the swinging.\"]}, \"v_-CEi03j4-Bw\": {\"duration\": 10.26, \"timestamps\": [[0.05, 10.01], [0.21, 2], [2.51, 5.85], [7.54, 10.16]], \"sentences\": [\"A young boy stands on and attempts to climb a mound of sand in the center of a line of sandcastles at the beach.\", \"  A young boy is standing in front of a mound of sand and hitting the mound with his hands.\", \"  The boy begins to stomp on the sand mound.\", \"  The boy begins to try to climb the sand mound while people walk on the ocean front at the beach.\"]}, \"v__uKKSGTNJAY\": {\"duration\": 37.04, \"timestamps\": [[0, 18.33], [16.3, 37.04]], \"sentences\": [\"Two boys are seen sitting on the ground and leads into them riding down a slide.\", \" More people riding down the hill as well as the camera man going to the bottom.\"]}, \"v_oSoi5owiybU\": {\"duration\": 61.32, \"timestamps\": [[0, 10.12], [10.12, 20.24], [20.24, 25.14], [25.14, 51.51], [51.51, 61.32]], \"sentences\": [\"a lo f people are in th start of a race and a man grab the other man's hand.\", \" a papernews is shown in the screen.\", \" a city with a lot of multicolored lights is shown.\", \" men are running in street and the old man is in the middle.\", \" man is running in a race track with other two men.\"]}, \"v_3O2acf8oRVA\": {\"duration\": 15.93, \"timestamps\": [[0, 1.12], [1.12, 4.94], [4.94, 15.93]], \"sentences\": [\"A man wearing athletic gear is on a gray carpeted ground with his knees bent on the ground and his palms flat on the ground.\", \"The man then bends his right now and put his right calf behind his left bent knee on the ground.\", \" The man begins to gently rock back and forth stretching out his leg muscles.\"]}, \"v_b3mJ5rPzDv8\": {\"duration\": 145.54, \"timestamps\": [[0, 52.4], [54.58, 145.54]], \"sentences\": [\"An intro leads into an older man with a handlebar mustache speaking to the camera while his name and business is captioned on the side.\", \" He continues speaking to the camera with conviction and ends with his business and phone number posted across his face.\"]}, \"v_a74RMGL_c8E\": {\"duration\": 32.0, \"timestamps\": [[0, 32], [4.16, 16.64], [16.64, 32]], \"sentences\": [\"There's a game in progress on a very green and grassy field in an outdoor stadium filled with people.\", \"One of the players puts the ball down on a line, backs up, then takes his stick and hits the ball.\", \" It goes into the goal and hits the goalie in the face and the crowd cheers, throwing their hands in the air.\"]}, \"v_DhgdEfKAvO0\": {\"duration\": 156.69, \"timestamps\": [[0, 39.17], [31.34, 117.52], [110.47, 151.2]], \"sentences\": [\"a person is seen spinning another around while people watch on the sides.\", \" The girl falls down ad others help her up and leads into her swinging a bat around.\", \" She swings at a pinata and breaks it open while others grab it.\"]}, \"v_cz2ESqP3PDk\": {\"duration\": 49.0, \"timestamps\": [[0.98, 4.65], [4.65, 12.25], [12.49, 49]], \"sentences\": [\"A person put the left hand on a dispenser.\", \" Then, the person takes off a card from a dispenser with the left hand and pass to the right hand that throws it on the table.\", \" Then, the left hand takes of a card that the right hand flips and throws on the table for many times.\"]}, \"v_MsalIjwP3no\": {\"duration\": 63.41, \"timestamps\": [[0, 62.46], [0, 28.54], [29.8, 59.93]], \"sentences\": [\"A crew of workers works on constructing a brick wall.\", \" A man uses water to wash down the wall surface.\", \" A man uses a spatula to apply plaster to a brick column.\"]}, \"v_2Ks8gsK22PA\": {\"duration\": 109.50999999999999, \"timestamps\": [[0, 36.14], [30.66, 82.68], [82.13, 107.32]], \"sentences\": [\"Two men are seen standing behind drums and playing with one another.\", \" The men continuously play drums while speaking and singing to the audience.\", \" The stop playing in the end to speak to one another and walk off stage.\"]}, \"v_oSDHYvvYo5M\": {\"duration\": 52.08, \"timestamps\": [[0, 14.06], [10.42, 37.24], [34.9, 51.3]], \"sentences\": [\"A man is seen standing on a pair of stilts while standing in front of a wall.\", \" The man is plastering the wall using a slider and holding himself up.\", \" The man walks around the room to grab more plaster and finishes the ceiling and walks away.\"]}, \"v_sP416nSD4xQ\": {\"duration\": 68.19, \"timestamps\": [[3.07, 24.89], [28.64, 65.8]], \"sentences\": [\"A man is seen sitting before a piano and playing while the camera captures his movements.\", \" The man continuously plays the instrument while stopping in the end to put his hands down and look at the camera.\"]}, \"v_G8dCenteoT0\": {\"duration\": 27.05, \"timestamps\": [[4.06, 5.14], [5.14, 10.96], [15.15, 22.05]], \"sentences\": [\"A woman holds a contact lens on her finger.\", \" She puts the contact lens into her eye.\", \" She opens her eye with her fingers and takes the contact lens out.\"]}, \"v_OTm43dbEEuE\": {\"duration\": 71.19, \"timestamps\": [[0, 9.26], [9.26, 36.66], [36.66, 54.11], [54.11, 71.19]], \"sentences\": [\"A little girl on stage in a cheerleading outfit waiting to start her performance.\", \" The starts her cheer and begins to do flips down the entire stage.\", \" She bends down on one knee and does some more of her performance.\", \" Then she  keeps dancing, she does a move and it looks like she falls a little bit but plays it off well and stands back up.\"]}, \"v_ijgLl3PHHE0\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 9.09], [9.09, 37.1], [42.4, 87.82], [97.66, 125.68], [127.19, 151.42]], \"sentences\": [\"A blonde woman is talking on the beach.\", \" She is then shown diving underwater between talking.\", \" Camera scenes show a boat and equipment on it as the woman reappears.\", \" She gears up before diving and showing the rocks and fish under the water.\", \" The woman is seen talking off and on throughout.\"]}, \"v_DV1ITGBfo5w\": {\"duration\": 155.78, \"timestamps\": [[0, 41.28], [64.65, 84.9], [87.24, 130.86], [150.33, 153.45]], \"sentences\": [\"Two men are at a gym to demonstrate proper form for the exercise.\", \" The man in the black shorts gets on one knee as the instructor gives instructions on what to do.\", \" The man in black shorts lifts a bar from the kneeling position.\", \" After a few reps, the two men conclude the video.\"]}, \"v_g4G1gg-9y7w\": {\"duration\": 114.82, \"timestamps\": [[0, 66.6], [48.23, 114.82]], \"sentences\": [\"A woman is seen getting her ear pierced by another while speaking to the woman every now and then.\", \" The camera captures the piercing from several angles and closes in on the woman.\"]}, \"v_rxfkWIGZtlQ\": {\"duration\": 121.74, \"timestamps\": [[0, 59.05], [48.7, 121.74]], \"sentences\": [\"Two women are seen looking at the camera with one speaking and holding a hair dryer.\", \" The woman shows off the hair dryer while speaking and pointing to the woman in the chair.\"]}, \"v_gvr1dpCpvhw\": {\"duration\": 218.34, \"timestamps\": [[0, 7.64], [7.64, 16.38], [16.38, 32.75], [32.75, 58.95], [60.04, 101.53], [101.53, 138.64], [139.74, 175.76], [175.76, 206.33], [207.42, 218.34]], \"sentences\": [\"A lady walks into a room and a man appears form the floor.\", \" We see a title screen and a cake.\", \" We see ingredients on a table.\", \" The lady pours milk and an item in a bowl and mixes and cuts mango.\", \" The lady puts graham crackers in a bowl and layers with the milk mixture.\", \" The lady ads mango slices and returns to layering the mixture and crackers.\", \" the lady sprinkles graham crackers and puts mango and grapes on top.\", \" the lady cuts the cake and people eat it and give a thumbs up.\", \" We see ending title credits.\"]}, \"v_cMuQUTKMc0k\": {\"duration\": 160.17000000000002, \"timestamps\": [[0.8, 10.41], [10.41, 44.85], [44.05, 71.28], [71.28, 83.29], [83.29, 126.54], [126.54, 160.17]], \"sentences\": [\"A computer graphic newspaper mockup is shown.\", \" The camera pans around a busy street view, including closeups of two individuals.\", \" The camera follows a woman as she joins a queue.\", \" The woman the camera is following acquires ice cream from a truck.\", \" Several individuals are shown eating ice cream and talking to the camera.\", \" Credit text on a green screen is shown.\"]}, \"v_MU2DUVy_wqQ\": {\"duration\": 52.63, \"timestamps\": [[0, 29.47], [37.37, 52.63]], \"sentences\": [\"A young man is seen sitting in a chair with a woman walking around him and cutting his hair.\", \" The woman continues cutting around the sides and moves the chair to cut more.\"]}, \"v_pIk9qMEyEd4\": {\"duration\": 108.83, \"timestamps\": [[0, 1.63], [3.81, 5.44], [5.44, 92.51], [17.96, 21.22], [53.33, 54.42], [72.37, 76.18], [97.95, 105.02], [105.57, 108.83]], \"sentences\": [\"We see people unpacking a box.\", \" The people put a bike on a rack.\", \" We see the people putting the bike together.\", \" The boy puts the handlebar on.\", \" We see a man put on the back tire.\", \" We see a man put on the seat.\", \" We see them take the bike off the rack, put it back and then it's gone.\", \" The camera spins as the person walks outside.\"]}, \"v_E1AVyl1RwF8\": {\"duration\": 52.04, \"timestamps\": [[0, 11.45], [11.71, 39.03], [39.81, 49.69]], \"sentences\": [\"One man is seen holding boxing gloves and hitting a man standing in front of him.\", \" A man is seen blocking the other with pads while the man continues to punch and kick.\", \" The two practice on and the other man walks away.\"]}, \"v_RxXBMgsu6uU\": {\"duration\": 177.45, \"timestamps\": [[0, 5.32], [6.21, 139.3], [7.1, 94.05], [24.84, 27.5], [33.71, 61.22], [94.05, 94.93], [130.42, 136.63], [141.96, 170.35], [171.24, 177.45]], \"sentences\": [\"The name and label of the organization is presented.\", \" Several male children are biking.\", \" Children sit on bikes getting ready to race.\", \"  A cameraman captures the boys sitting on their bikes.\", \" A man walks back and forth around the boys in their bikes.\", \" The gate is released and the boys bike on the dirt.\", \" A boy falls off his bike.\", \" A boy takes a picture with a fan.\", \" The name and label of the organization is shown.\"]}, \"v_KU8VVtam3ig\": {\"duration\": 158.94, \"timestamps\": [[0, 158.94], [15.89, 63.58], [134.31, 147.82]], \"sentences\": [\"Three people are standing behind a counter.\", \" A man puts pennies on a block before rubbing his knife on the block.\", \" He holds a knife sharpener and rubs the knife up and down the sharpener.\"]}, \"v_8kO6A3W_kQ8\": {\"duration\": 80.34, \"timestamps\": [[0, 10.04], [19.68, 49.41], [49.41, 69.5]], \"sentences\": [\"A woman is standing up talking.\", \" She has two hair brushes in her hands.\", \" She starts brushing a woman's hair who is sitting in front of her.\"]}, \"v_2GACaR0GdD8\": {\"duration\": 146.05, \"timestamps\": [[0, 146.05], [42.36, 112.46], [113.19, 146.05]], \"sentences\": [\"Two people are riding through the forest on horseback.\", \" The girls riding horses stop for a moment and begin to pose for the camera.\", \" To end the video the girls ride off into the distance on their horses.\"]}, \"v_8QY00KU3gkw\": {\"duration\": 123.79, \"timestamps\": [[0, 8.67], [9.28, 17.95], [17.95, 115.12], [115.74, 121.93]], \"sentences\": [\"Words appear on the black screen.\", \"  A woman talks to the camera.\", \"  A person is using a stairclimber in the gym.\", \"  The woman talks to the camera in the gym again.\"]}, \"v_3OXh6OV2Zrc\": {\"duration\": 176.73, \"timestamps\": [[0, 8.84], [8.84, 30.93], [30.04, 67.16], [67.16, 112.22], [112.22, 176.73]], \"sentences\": [\"A view of the ocean is shown and it moves up to the bottom of a bridge.\", \"A young lady with a pink shirt is then shown sitting in a chair with a harness on.\", \"Then,two men with cameras walk behind her and start taking pictures of the water.\", \"The lady then gets up and walks over to more ropes where the people are attaching to her.\", \"Bravely,the woman jumps off the bridge and starts going up and down on the string,eventually,the people pull her up and she begins moving excitedly.\"]}, \"v_ML0XZMcKk_E\": {\"duration\": 125.2, \"timestamps\": [[0, 27.54], [26.29, 95.78], [102.67, 125.2]], \"sentences\": [\"A small group of men walk out onto a stage and lead into them waving fences around and standing in a line.\", \" Two men then begin fighting with one another and shots shown again in slow motion.\", \" In the end they shake hands and celebrate with team mates.\"]}, \"v_LZxTeIeuqT8\": {\"duration\": 170.97, \"timestamps\": [[0, 10.26], [10.26, 21.37], [21.37, 47.02], [47.02, 153.87], [153.87, 170.97]], \"sentences\": [\"A girl is roller skating down a road towards another girl that is sitting on the road.\", \" When she reaches the girl sitting down, she bends down to help her up and the camera person runs close to them while they struggle to get the girl to stand up.\", \" A little boy is watching this happens and eventually the standing girl also falls to the ground and they're both laughing.\", \" Eventually both girls stand up and they proceed to skate on the road and into a residential driveway where they both continue to struggle skating and staying upright.\", \" They both fall to the ground in the driveway and black rolling words begin to scroll from the bottom to the top on a pink screen.\"]}, \"v_G8gTBLLf8Bo\": {\"duration\": 102.63, \"timestamps\": [[0, 102.63], [25.15, 30.79], [31.3, 102.63]], \"sentences\": [\"A woman is talking standing in front of a bunch of windows.\", \"  The woman holds up a bottle of cleaner and some paper towels while still talking.\", \" The woman then opens the window panes and cleans them with the paper towels.\"]}, \"v_8OEts-YLeW0\": {\"duration\": 57.34, \"timestamps\": [[5.45, 13.76], [14.34, 54.48], [0, 4.59]], \"sentences\": [\"A boy practicing while turning and kicking standing in one spot.\", \" The boy kicks and takes steps while kicking.\", \" The boy stands at attention.\"]}, \"v_hgLDMHCcw4k\": {\"duration\": 93.22999999999999, \"timestamps\": [[0.93, 34.03], [27.97, 75.52], [75.98, 93.23]], \"sentences\": [\"A woman is seen sitting on a table with another woman beside her speaking and instructing her where to put her body.\", \" The speaking woman points all over the body of the woman on the table and places her body in certain movements to exercise the body.\", \" In the end the woman sits up on her knees smiling while the other woman helps.\"]}, \"v_uuhcDXyGrEI\": {\"duration\": 170.69, \"timestamps\": [[10.24, 61.45], [61.45, 89.61], [89.61, 135.7], [135.7, 163.01]], \"sentences\": [\"A man reads a sheet of paper while sitting on the food, then he opens a bread and puts ham on.\", \" After, the man add on top the ham mayonnaise, tomato sauce, cheese and brown sauce from a can.\", \" After, the man put cereal, chicken nuggets and a doll.\", \" Next, the man closes the bread and try to put inside the sandwich inside a tube with the help of a person.\"]}, \"v_gY0qgtM0Gt8\": {\"duration\": 101.1, \"timestamps\": [[0, 23.25], [18.2, 75.82], [63.69, 97.06]], \"sentences\": [\"A close up of leaves are shown followed by a person blowing them along the yard.\", \" Several leaves move at once with a machine shown and a man speaking to the camera.\", \" The man continues to speak to the camera while blowing leaves in the distance.\"]}, \"v_J0-OVQ-JB5g\": {\"duration\": 203.2, \"timestamps\": [[0, 2.03], [3.05, 173.73], [174.75, 196.09], [197.1, 203.2]], \"sentences\": [\"A title screen appears with \\\"Livermore Dog Grooming Wine Country Pet Spa Meet: 'Millie'\\\".\", \" A woman carefully grooms a large, shaggy grey and white dog on a table.\", \"  The woman hugs the dog and it kisses her back.\", \"  The words \\\"Call: 925 606 0946 Livermore Dog & Cat Grooming Wine Country Pet Spa\\\" appear on screen followed by credits.\"]}, \"v_a4-5QFOiAiw\": {\"duration\": 59.98, \"timestamps\": [[0, 59.98], [21.59, 21.89], [2.7, 56.68]], \"sentences\": [\"A man serves a tennis ball.\", \" He jumps into the air.\", \" Red words come onto the screen.\"]}, \"v_I4uZkBmE5eM\": {\"duration\": 82.12, \"timestamps\": [[0, 82.12], [6.16, 77.6], [36.54, 82.12]], \"sentences\": [\"An old man with gray hair is playing bongo drums.\", \" The man is looking at the camera occasionally as he plays the drum.\", \" The man with gray hair thumped one drum then the next.\"]}, \"v_CjPN7fw0B48\": {\"duration\": 34.76, \"timestamps\": [[0, 31.46], [32.33, 33.72], [33.72, 34.76]], \"sentences\": [\"A man mows his lawn while being filmed from a high angle in a sped-up video.\", \" The man walks across the mowed lawn and sits on a bench.\", \" The man stands and walks back across the lawn.\"]}, \"v_PY6WgOIZlhw\": {\"duration\": 223.35, \"timestamps\": [[0, 21.22], [23.45, 75.94], [80.41, 102.74], [103.86, 223.35]], \"sentences\": [\"Three bodybuilders lift barbells at the knees.\", \" They raise them to their chests, then over their heads very quickly, doing several sets.\", \" They set the barbells down before showing another man doing the same.\", \" They lay down on mats, using exercise balls to do sit ups, then doing arm lifts.\"]}, \"v_dAcdSkaoK64\": {\"duration\": 89.28, \"timestamps\": [[0.89, 32.59], [22.32, 84.37]], \"sentences\": [\"A man is seen walking up to a bar and begins performing a gymnastics routine on the bar.\", \" The man spins himself around performing flips and tricks and ends by jumping down and holding his arms up.\"]}, \"v_20ooSJixdyg\": {\"duration\": 75.61, \"timestamps\": [[0, 27.6], [19.66, 57.84], [41.2, 74.09]], \"sentences\": [\"A woman is seen speaking to the camera and then pours ice into a glass.\", \" She pours various liquids into the glass and mixing it around with a mixer.\", \" The taps the rim with a lemon and serves the drink while holding it in her hand.\"]}, \"v_U_FxyViYYBA\": {\"duration\": 93.92, \"timestamps\": [[0, 23.01], [22.54, 47.9], [46.02, 65.75], [65.75, 93.92]], \"sentences\": [\"A large playground is seen around various mats when a young girl walks into the frame.\", \" She climbs up the ladder into the play house and looks around the play area.\", \" She slides down a slide while the camera pans around the the girl climbs up to go down again.\", \" Various shots of her playing are shown as well as the play area she is in.\"]}, \"v__VPf75tGIHQ\": {\"duration\": 60.14, \"timestamps\": [[0.3, 4.51], [4.81, 56.83], [12.93, 24.66], [28.87, 31.27], [32.17, 43.9], [44.8, 45.41], [53.22, 54.43], [57.43, 60.14]], \"sentences\": [\"The credits of the clip are shown.\", \" Two guys are playing racquetball.\", \" A guy dives to the wooden floor to hit the ball.\", \" The audience that are behind the glass claps.\", \" The guys pause their game.\", \" A man serves the ball.\", \" The guy extends his hands as he goes to retrieve the ball that is rolling to the wall.\", \" The credits of the video are shown.\"]}, \"v_E15z95ZcEYU\": {\"duration\": 56.5, \"timestamps\": [[0, 23.16], [24.29, 56.5]], \"sentences\": [\"A woman is lying down, and another person is using an elongated needle to apply a tattoo to her upper arm.\", \" She does not move, and he continues working.\"]}, \"v_zAr9k1-umvY\": {\"duration\": 211.81, \"timestamps\": [[26.48, 29.65], [26.48, 39.19], [39.19, 211.81]], \"sentences\": [\"The man puts cement onto the wall and he uses a special tool to smoothen all of the paint onto the wall.\", \" Next he starts to put tiles onto the wall and another man comes to help.\", \" Then the man covers the small floor with cement and puts brown tiles onto the floor.\"]}, \"v_7s7YqryNMAE\": {\"duration\": 84.82, \"timestamps\": [[0, 22.48], [20.78, 61.92], [61.92, 84.82]], \"sentences\": [\"A woman is seen holding her eye open and pushing a lens out of her eye.\", \" The same shot is shown again and she puts and object in her eye to grab the lens.\", \" The same shot is shown again in slow motion.\"]}, \"v_5kmGgH4xFW0\": {\"duration\": 179.38, \"timestamps\": [[0, 19.73], [22.42, 136.32], [142.6, 179.38]], \"sentences\": [\"A couple of people are on the top of a snowy hill.\", \" They get into intertubes they carried to the top.\", \" They then slide down the hillside in the intertubes.\"]}, \"v_4mSPGxeKK2k\": {\"duration\": 60.44, \"timestamps\": [[0.6, 59.23], [0.6, 46.54], [46.54, 60.44]], \"sentences\": [\"A group of people play tug of war with a tiger in a fenced enclosure.\", \"  A line of woman pull on a orange piece of a material across from a tiger who is gripping the other end of the orange material from inside a fenced enclosure.\", \"  The woman eventually give in and the tiger dominates the long cloth and approaches the fence.\"]}, \"v_sWtwatYMbX0\": {\"duration\": 112.47999999999999, \"timestamps\": [[0, 72.55], [71.99, 112.48]], \"sentences\": [\"Liquid is shown being poured into a glass and leads with a bartender mixing various liquids into a mixer.\", \" She then shakes the mixer up and pours it into a glass while still speaking to the camera.\"]}, \"v_bG55LSFBA9M\": {\"duration\": 45.23, \"timestamps\": [[0.45, 11.31], [11.31, 18.77], [18.77, 38.45]], \"sentences\": [\"People are getting in a river holding inflatable rings, then a man jumps and land on a inflatable ring in the water.\", \" Then, people goes down the river on inflatable rings.\", \" After, people on inflatable rings gather in a pond on front houses.\"]}, \"v_5vd8j0hKIgs\": {\"duration\": 23.31, \"timestamps\": [[0, 2.33], [3.5, 23.31]], \"sentences\": [\"Truestar health ads appear on the screen before a woman is shown inside a gym.\", \" She lifts her body with her arms on a machine behind her, then the truestar ad appears again.\"]}, \"v_hRuHqoXEvsI\": {\"duration\": 28.0, \"timestamps\": [[0, 4.34], [5.46, 11.9], [12.32, 28]], \"sentences\": [\"A woman is on a stage with a baton.\", \" She rolls a barrel across the stage.\", \" She then dances fast with the batons, beating the cage like a drum.\"]}, \"v_vzrZJX-Slzg\": {\"duration\": 124.9, \"timestamps\": [[0, 26.23], [19.98, 105.54], [105.54, 109.91], [109.29, 124.9], [122.4, 124.9]], \"sentences\": [\"A portable power sources has electric tools plugged into it.\", \" A man welds a large steel construction drill.\", \" The man finishes welding and the metal glows red hot.\", \" The medal is cooled down and the finished weld can be seen.\", \" The man picks up a tool from the ground.\"]}, \"v_CnrvRF_N7fU\": {\"duration\": 153.57999999999998, \"timestamps\": [[0, 13.82], [13.82, 26.11], [26.88, 61.43], [61.43, 70.65], [71.41, 132.84], [133.61, 153.58]], \"sentences\": [\"A man in orange shorts exercises by jumping on a stack of workout mats.\", \" The man in the orange shorts works out on leg extensions on a leg extension machine.\", \" Two men work out on a rowing machine The man in the orange shorts works out on a different rowing machine.\", \" A close up of a man wearing a blue tank top works out on a rowing machine.\", \" Different scenes of a group of people running on treadmill machines.\", \" Different men working out by jumping on the stack of floor mats.\"]}, \"v_o0gdMKlKLcU\": {\"duration\": 17.09, \"timestamps\": [[0, 11.54], [0, 5.47], [11.71, 16.15]], \"sentences\": [\"A man applies cement on a wall using a hose.\", \" A person behind the man even a wall with a long plank.\", \" A crew of men prepares cement using a machine.\"]}, \"v_8jyqeivzs2M\": {\"duration\": 182.95, \"timestamps\": [[0, 54.89], [41.16, 139.04], [150.02, 182.95]], \"sentences\": [\"A close up of a pot is seen followed by a person mixing various ingredients into the pot.\", \" The person continues mixing around ingredients while the water boils as well as pouring in noodles.\", \" The man stirs around the noodles and shows a close up of the plate served.\"]}, \"v_70GQ4Nnrk4E\": {\"duration\": 148.79, \"timestamps\": [[0, 148.79], [0, 45.38], [43.15, 126.47], [127.22, 141.35], [141.35, 148.79]], \"sentences\": [\"A large group of kids sits on the floor looking at a stage.\", \" A man on the stage talks to the kids.\", \" The man puts his microphone down and shows different ways to jump rope.\", \"  the man sits on the floor and jumps rope while sitting.\", \" He gets up and jumps rope a few more times before finishing and waving.\"]}, \"v_XLdqEn8pqis\": {\"duration\": 142.06, \"timestamps\": [[0, 125.72], [125.72, 142.06]], \"sentences\": [\"A little girl plays accordion in a classroom pushing the buttons of the instrument with both hands.\", \" The girl bends her head to her left side and then stop playing.\"]}, \"v_ZpyCrs-q-so\": {\"duration\": 45.28, \"timestamps\": [[0, 18.56], [18.56, 37.81], [18.56, 45.28]], \"sentences\": [\"A man is standing outdoors wearing an orange tanktop and green shorts, holding an axe and then he swings it over his head and chops a piece of wood.\", \"Another man is also standing outdoors and he also swings the axe and chops a piece of wood and the wood piece gets stuck onto his axe, he removes the wood from the axe, hits it again and it gets stuck once more and he walks out of view from the camera.\", \"The camera man then walks over to the cut pieces of wood and the outro screen comes on with scrolling words of the name of the men who were chopping the wood.\"]}, \"v_LMMimz1-fa0\": {\"duration\": 113.87, \"timestamps\": [[0, 35.87], [35.3, 88.82], [84.83, 113.87]], \"sentences\": [\"An intro leads into several people in cars baking up and leading paddles and luggage onto a boat.\", \" the boat takes off and shows several shots of people riding on wake boards and girls looking off into the distance.\", \" They shoot items off the back and continue riding around while the girls watch and drink.\"]}, \"v_0pegrKSh4iw\": {\"duration\": 177.17000000000002, \"timestamps\": [[0, 46.06], [49.61, 129.33], [92.13, 174.51]], \"sentences\": [\"A man is seen sitting behind a drum kit and begins to play a song on drums.\", \" Along man is seen standing beside him while the camera pans around to other musicians.\", \" People are seen playing the guitar while the drummer continues drumming as well as a man singing into the microphone.\"]}, \"v_Yezk4k2E5s0\": {\"duration\": 11.56, \"timestamps\": [[0, 11.56], [7.46, 11.56]], \"sentences\": [\"woman is doing a javelin throw in a big green field.\", \" men are siting in chairs in front of a table watching the woman.\"]}, \"v_bPZRYmr7p1k\": {\"duration\": 143.77, \"timestamps\": [[2.88, 35.94], [36.66, 64.7], [66.13, 112.14], [112.86, 143.77]], \"sentences\": [\"Men shoot arrows when riding horse and two men falls from a horse, then four men riding horses cross the meadow of a forest.\", \" A man holds an arrow in a bow, and then a cavalry  fight and throw arrows to a man wearing an armor.\", \" Then, an army of horsemen shoot arrows with a bow and dead people lye on the ground.\", \" After, a group of people cross the meadow of a forest.\"]}, \"v_gUQFX_IydG8\": {\"duration\": 113.84, \"timestamps\": [[0, 62.04], [25.04, 35.29], [72.29, 113.84]], \"sentences\": [\"Nuns are standing in a room.\", \" A nun walks to the front and breaks a board with her hand.\", \" They start fighting with each other.\"]}, \"v_S9alQwrQ-oo\": {\"duration\": 148.7, \"timestamps\": [[0, 32.71], [31.23, 77.32], [70.63, 120.45], [116.73, 148.7]], \"sentences\": [\"A close up of a craft project is shown followed by a set of hands holding up nail polish.\", \" The hands then hold nails and file them while painting them into a certain look.\", \" She then cuts a nail, glues it onto the craft, followed by mixing more paint onto the nail.\", \" She finally shows off the nail and the craft project while putting it on her nails.\"]}, \"v_M7Lc8nh9auA\": {\"duration\": 48.09, \"timestamps\": [[0, 48.09], [31.5, 35.1], [38.47, 38.71]], \"sentences\": [\"A person keeps falling down on roller blades.\", \" They fall on their back on the stairs.\", \" A man is shown laughing at him.\"]}, \"v_KEJP4Uxa5m0\": {\"duration\": 164.31, \"timestamps\": [[0, 8.22], [18.9, 85.44], [86.26, 164.31]], \"sentences\": [\"A red ball hits a yellow ball in front of a woman.\", \" She is talking as she is engaged in a game of croquette.\", \" She shows the different angles, moves, and positions for playing the game as she plays with another woman.\"]}, \"v_xV7uPiqNuwQ\": {\"duration\": 194.1, \"timestamps\": [[0, 189.24], [0, 194.1], [77.64, 123.25], [123.25, 194.1]], \"sentences\": [\"a lot of people are walking by the subway in an open area.\", \" men are standing in front of a large box assembling a bicycle.\", \" the man put own the bike and start assembling a new one.\", \" men put the other bike down and is putting them the remaining screws and parts on the floor.\"]}, \"v_7H4-gDM3r0w\": {\"duration\": 117.00999999999999, \"timestamps\": [[0, 8.19], [25.16, 40.95], [41.54, 45.05], [45.63, 54.99], [55.58, 68.45], [69.03, 75.47], [76.05, 82.49], [83.07, 90.68], [91.26, 94.77], [95.36, 102.38], [104.14, 105.31]], \"sentences\": [\"The bar and eating area of a restaurant is seen.\", \" A bartender adds lime syrup into a glass.\", \" He adds fresh lime juice and some orange flower water into the glass.\", \" He adds soda to the glass and hands it to the customer.\", \" He moves on to make another drink and adds fresh lime, simple syrup and chopped plums into a glass.\", \" He shakes the glass and adds ginger beer to it.\", \" He sprinkles ground cinnamon to the finished drink.\", \" He proceeds with another drink, adding strawberry syrup and fresh lime juice together.\", \" He adds chili tincture to it and shakes the drink.\", \" He pours the drink and hands it to the customer.\", \" The customer and the bartender shake hands.\"]}, \"v_gjz9pSK0Y9I\": {\"duration\": 124.39, \"timestamps\": [[0, 16.79], [16.79, 27.37], [27.37, 37.32], [37.94, 51.62], [51, 124.39], [109.46, 115.06]], \"sentences\": [\"A boy talks to the camera from behind a row of shoes.\", \"The boy tries to walk in heels.\", \" The boy tries to walk in large shoes.\", \" The boy tries to put on another pair of shoes.\", \" The boy resumes talking to the camera while interacting with the fourth pair of shoes.\", \" The boy puts on the fourth pair of shoes.\"]}, \"v_U40FhqwfBvs\": {\"duration\": 101.03, \"timestamps\": [[7.07, 101.03], [12.63, 23.74], [28.29, 101.03]], \"sentences\": [\"A woman is standing in a kitchen.\", \" She picks up a zucchini off the counter.\", \" She starts slicing a zucchini on a cutting board.\"]}, \"v_-76d-7Ju7L0\": {\"duration\": 191.89, \"timestamps\": [[0, 39.34], [39.34, 132.4], [132.4, 191.89]], \"sentences\": [\"A man is describing different tires that he has laying on the ground.\", \" He moves over to the truck and goes into more detail about the repair that he is getting ready to do.\", \" He continues to show different components of the repair that he will which include an air compressor tire clamps.\"]}, \"v_mNM01g9wLy4\": {\"duration\": 75.4, \"timestamps\": [[0, 75.4], [5.28, 10.56], [10.56, 75.4]], \"sentences\": [\"This woman is showing viewers how to use an elliptical trainer.\", \"  First she introduces herself and tells viewers what she will be doing and then she tells viewers a little bit of benefits.\", \" She is moving her body at a steady pace and she is working most of her muscles.\"]}, \"v_5E2OdhrgG8s\": {\"duration\": 181.21, \"timestamps\": [[0, 181.21], [19.93, 162.18], [38.96, 162.18]], \"sentences\": [\"Four women are in the studio playing harmonica.\", \" As the women play they blow the harmonica and clap their hands on the instruments.\", \" The women are moving their bodies slightly as the play the harmonica.\"]}, \"v_ABBA086Gmq0\": {\"duration\": 200.57, \"timestamps\": [[0, 19.05], [23.07, 55.16], [56.16, 160.46], [161.46, 200.57]], \"sentences\": [\"A man in biking gear walks into a building.\", \" He rides a motorbike through the shop, and out through the garage.\", \" He goes down numerous town roads, over medians, and through water fountains.\", \" He continues doing stunts, meeting up with another biker before doing a wheelie back into the shop.\"]}, \"v_zemqddZ_YO4\": {\"duration\": 161.07999999999998, \"timestamps\": [[0, 19.33], [24.97, 137.72], [142.55, 161.08]], \"sentences\": [\"A woman is standing while holding a bunch of balloons.\", \" She is then seen trying to climb the side of a cliff with rapeling gear attached.\", \" She makes it to the top, and the screen cuts away.\"]}, \"v_BMxtjh9E7BY\": {\"duration\": 67.85, \"timestamps\": [[0, 5.09], [5.09, 27.14], [27.14, 33.92], [33.92, 52.24], [52.24, 67.85]], \"sentences\": [\"An introduction comes onto the screen for a video about a curling game.\", \" Two curlers in yellow shirts are shown making a show down the ice as people watch them.\", \" One of the team member trips over one of the pucks and falls to the ice.\", \" The players begin to clear off the ice for the next game.\", \" Then, the camera shows the man that fell as he hold his nose in pain and exits the room.\"]}, \"v_x6Z0xTgWoVI\": {\"duration\": 152.21, \"timestamps\": [[0, 12.18], [0, 9.89], [12.18, 82.19], [82.19, 140.79], [58.6, 63.17], [141.55, 152.21]], \"sentences\": [\"Several people ski down the hill.\", \" Ski lifts pass above the ski track.\", \" A man holds a child, then he releases the child who ski alone in the hill followed by his father.\", \" The father pick up the child to put in the right tract, and the child continues skiing.\", \" An adult and a child ski on the hill.\", \" The father grabs the child and they stop skiing.\"]}, \"v_ig867kFeLic\": {\"duration\": 17.42, \"timestamps\": [[0.09, 2.44], [0.09, 17.42], [3.83, 17.42]], \"sentences\": [\"A person is seen standing on a large stilt in the middle of a road.\", \" People are watching him on the side from behind the car.\", \" The man then jumps up and down on the stilts and looks back to the camera.\"]}, \"v_OYAyb_Ire24\": {\"duration\": 180.09, \"timestamps\": [[0, 42.32], [42.32, 180.09]], \"sentences\": [\"A girl is shown in several shots putting makeup on and leads into her putting makeup for her chin and lips.\", \" She then puts mascara on while continuously smiling into the camera and followed by more makeup being put on.\"]}, \"v_HnCUykqco5M\": {\"duration\": 216.62, \"timestamps\": [[0, 24.91], [29.24, 85.56], [92.06, 153.8], [155.97, 216.62]], \"sentences\": [\"Text speaks of an event that is coming up.\", \" Several people are sitting on rafts as they float gently down stream.\", \" The people hit the rapids hard, and begin paddling their way through.\", \" They are shown jumping  off cliffs into the water before rafting again.\"]}, \"v_EEMGyhO3OVI\": {\"duration\": 145.37, \"timestamps\": [[0, 44.34], [60.33, 145.37]], \"sentences\": [\"BMX racing is shown from preparation to the race.\", \"  One person wins and then gets the trophy and stands on top of the podium.\"]}, \"v_KwBuRjh_v9M\": {\"duration\": 108.3, \"timestamps\": [[0, 24.91], [25.99, 39.53], [38.99, 46.03], [46.03, 70.94], [70.39, 85.56]], \"sentences\": [\"A woman with purple hair is sitting on a chair.\", \" She then lays down on the table.\", \" She gets a clamp put under her eye pinching the skin.\", \" The piercer puts an earring in and she sits up.\", \" She holds a towel to the piercing to catch the blood.\"]}, \"v_i0AsepC37Sk\": {\"duration\": 211.6, \"timestamps\": [[0, 211.6], [52.9, 56.08], [78.29, 80.41]], \"sentences\": [\"A man is sitting down playing two drums.\", \" A man is standing behind him with his arms folded.\", \" Green and black balloons are shown.\"]}, \"v_-9l1Rh10bO8\": {\"duration\": 92.02000000000001, \"timestamps\": [[3.22, 87.42], [11.96, 26.69], [29.45, 36.35], [64.87, 82.82]], \"sentences\": [\"A teen boy talks in a public place while remember his martial arts competition.\", \" The teen boy competes karate with other boy while a person film him.\", \" The teen shows his trophies.\", \" The teen boys performs martial arts.\"]}, \"v_FQEGKGn9vnU\": {\"duration\": 128.55, \"timestamps\": [[0, 15.43], [27.64, 88.7], [94.48, 128.55]], \"sentences\": [\"A little girl climbs to the top of a slide.\", \" She then sits down, and slides to the bottom.\", \" Another little girl climbs up and she chases her.\"]}, \"v_QrQN-Hm5xew\": {\"duration\": 90.12, \"timestamps\": [[0, 34.24], [34.7, 90.12]], \"sentences\": [\"a a man with a moustache is talking to the camera and showing some art works walking in street and in other places.\", \" men are playing paintball in a big field.\"]}, \"v_CYPfbnL0bCI\": {\"duration\": 182.35, \"timestamps\": [[3.65, 33.73], [34.65, 57.44], [57.44, 74.76], [74.76, 108.5], [108.5, 114.88], [114.88, 140.41], [140.41, 178.7]], \"sentences\": [\"A box of matches and a can of gasoline are shown on a bedding of straw.\", \" A pile of logs is shown.\", \" The matches and gasoline are shown sitting on some sort of metal stand.\", \" A pair of hands shape a piece of foil paper into a bowl shape on the metal stand with the matches but not the gasoline visible.\", \" The hands use a measuring spoon to pour something into the foil paper bowl.\", \" The hands use a match to light the contents of the foil paper on fire.\", \" The fire in the foil paper bowl goes out.\"]}, \"v_H80bs53Arrw\": {\"duration\": 164.19, \"timestamps\": [[0, 16.42], [16.42, 130.53], [128.89, 164.19]], \"sentences\": [\"A woman is standing in a room holding a hula hoop.\", \" She begins to use the hula hoop.\", \"  She lays down on the ground and uses the hula hoop on her foot.\"]}, \"v_CGIrDfEP5lE\": {\"duration\": 95.09, \"timestamps\": [[0.48, 90.81], [0.48, 19.97], [6.66, 44.69], [48.49, 92.23], [88.43, 94.14]], \"sentences\": [\"A girl is riding a riding lawnmower through a yard.\", \" Another girl is dancing behind her.\", \" The second girl continues dancing toward the camera.\", \" The girl is riding the lawnmower around lawn ornaments and a man is following her.\", \" A hand is shown waving.\"]}, \"v_GtCXZRGSaqk\": {\"duration\": 149.4, \"timestamps\": [[4.48, 88.14], [88.89, 121.01], [121.76, 138.19]], \"sentences\": [\"People water ski holding a ski ropes that are pulled by a boat.\", \" Two people ski side to side, then one person free the rope and falls.\", \" After, a man ski behind a boat in a lake.\"]}, \"v_UWTpfygMUQw\": {\"duration\": 173.94, \"timestamps\": [[0, 4.35], [7.83, 110.45], [111.32, 139.15], [147.85, 173.94]], \"sentences\": [\"An ad for southwest roofing appears.\", \" We see a house with a new roof, and a close up of a man using a power washer to clean the tiles.\", \" He sprays the shingles all over the roof.\", \" We then see the freshly cleaned and repaired roof.\"]}, \"v_p81NOkb2rww\": {\"duration\": 100.52000000000001, \"timestamps\": [[1.01, 33.67], [31.16, 100.52]], \"sentences\": [\"These people are all shown watching the man keep the ball off of the ground for a long time and then everyone cheers.\", \" Next lots of people are shown playing a game of soccer on the field.\"]}, \"v_PmmKHLmG5Ec\": {\"duration\": 98.12, \"timestamps\": [[0, 23.06], [26.98, 85.36], [89.78, 98.12]], \"sentences\": [\"A group of men are on either side of a rope as a crowd gathers.\", \" They begin pulling in a game of tug of war.\", \" They pull until the victors win, then shake hands with each other.\"]}, \"v_tZswexUR6Q0\": {\"duration\": 192.86, \"timestamps\": [[0, 39.54], [39.54, 71.36], [71.36, 135], [135, 192.86]], \"sentences\": [\"A woman in a bikini has a take sign and presses action, then you see a bunch of women everywhere hanging out and acting a little scandalous.\", \" Some women are on a boat drinking beer and having a nice time rubbing their boobs together, sitting on the back of the boat.\", \" A blonde woman plays with a flag while another woman is skiing on the back of the boat.\", \" Three girls jump off the boat and then they use a little float connected to the boat to relax and have fun on, they party on.\"]}, \"v_ooCciCGrdcA\": {\"duration\": 183.79, \"timestamps\": [[0, 74.43], [74.43, 183.79]], \"sentences\": [\"A man and woman are shown standing on a tennis court passing a ball back and fourth.\", \" Behind them are another group of people playing and the man and woman continuously pass the ball back ad fourth to one another.\"]}, \"v_LYqfB7HsQwQ\": {\"duration\": 78.9, \"timestamps\": [[0, 11.44], [11.44, 33.53], [32.74, 76.14], [76.14, 78.9]], \"sentences\": [\"A young man wearing a Cuervo black shirt stares and speaks to the camera as he sits on his chair.\", \" He puts a harmonica to his mouth and begins playing.\", \" He plays on for about a minute and is very into his song.\", \" He then puts the harmonica down and looks into the camera as the video comes to an end.\"]}, \"v_Yh6xzcNlAjo\": {\"duration\": 72.22, \"timestamps\": [[0, 31.05], [31.41, 72.22]], \"sentences\": [\"A oven is open and two cookie trays are shown as the contents begin to bake.\", \"The people then take the cookies out of the oven and starts to talk to their customers.\"]}, \"v_wqc2KnHfPHk\": {\"duration\": 130.15, \"timestamps\": [[0, 47.5], [35.79, 93.06], [65.72, 124.29]], \"sentences\": [\"A large group of people are seen walking around a street with a group of people dancing in the middle.\", \" A large marching band is seen walking down the street one after the other.\", \" More people are seen playing instruments and the camera pans around to capture them all.\"]}, \"v_5MLEO5JWRYI\": {\"duration\": 122.92, \"timestamps\": [[0, 44.25], [44.86, 74.98], [74.36, 102.64], [102.02, 122.92]], \"sentences\": [\"Someone is pouring some baking soda in their  in the sink, quite a bit actually and spreading it around using the box.\", \" They then start to pour some vinegar down the sink.\", \" They watch it all go down the drain and then pour in some more vinegar.\", \" Then they start to add in more baking soda.\"]}, \"v_fxgbk_Kk4Rw\": {\"duration\": 125.83, \"timestamps\": [[0, 60.4], [53.48, 125.83]], \"sentences\": [\"Pictures of vacuums are shown side by side with one another leads into a person using the vacuum and it's several attachments.\", \" The person uses the attachments all throughout the house as well as cleaning up the vacuuming and presenting it to the camera.\"]}, \"v_nDJgThY8zi8\": {\"duration\": 52.71, \"timestamps\": [[0, 33.73], [32.68, 52.18]], \"sentences\": [\"A woman went down from the stairs walked towards the cycling machine then started to pedal.\", \" The woman adjusted the chair by twisting the screw and then she pedals again.\"]}, \"v_onBAyGhqubg\": {\"duration\": 77.37, \"timestamps\": [[0, 77.37], [1.93, 3.48], [4.26, 55.32], [56.48, 77.37]], \"sentences\": [\"People are in and around a pool doing various things.\", \" A girl dives from a spring board in to the pool.\", \" The girl then dives, flips  and jumps from the spring board many more times.\", \" The girl is seen jumping from the diving board and flipping in an outdoor pool before she jumps at the indoor pool one final time.\"]}, \"v_MAyYq3HilFc\": {\"duration\": 5.11, \"timestamps\": [[0, 3.22], [2.66, 5.11]], \"sentences\": [\"A person is seen running along a large track holding a large javelin in their hands.\", \" The person then throws the object far off into the distance while another man watches.\"]}, \"v__DlDtsPxdyY\": {\"duration\": 189.62, \"timestamps\": [[0, 83.43], [22.75, 45.51], [80.59, 189.61]], \"sentences\": [\"A video of bumper pool is shown.\", \"  People are interviewed and then the actual pool is shown.\", \"  The teams play against each other and then a champion is crowned.\"]}, \"v_8iTz6Jy3lJg\": {\"duration\": 189.08, \"timestamps\": [[3.78, 56.72], [34.98, 36.87], [165.45, 171.12]], \"sentences\": [\"People are standing around a table.\", \" A man is holding onto a black handle.\", \" A man is sitting on a ski runner in the water.\"]}, \"v_vKC23-I4pBc\": {\"duration\": 34.09, \"timestamps\": [[0.51, 19.94], [13.29, 31.36]], \"sentences\": [\"A small group of people walk onto a stage and stand in front of a glass window.\", \" A man then washes the window as fast as he can and then walks away afterwards.\"]}, \"v_fZQS02Ypca4\": {\"duration\": 170.99, \"timestamps\": [[0, 33.34], [27.36, 66.69], [62.41, 148.76], [147.91, 170.99]], \"sentences\": [\"A young girl is seen sitting and speaking to the camera while using a brush to powder her face.\", \" A color pallet is held up next to her and she begins rubbing the powder all over her eyes.\", \" She then puts lip sticks around her lips as well as blush and leads into her painting her nails.\", \" Another person holds up her nails and the girl continues speaking to the camera.\"]}, \"v_VthI1KPjEq8\": {\"duration\": 16.95, \"timestamps\": [[0.25, 5.42], [5.51, 11.7], [10.17, 16.36]], \"sentences\": [\"A close up of a bowl is seen with a person putting a rag in it.\", \" The person dips out the rag and begins using it on wood.\", \" The person continues using the shiner and hows it off in the end.\"]}, \"v_iChE4EoYG6k\": {\"duration\": 114.06, \"timestamps\": [[0, 35.93], [33.08, 90.68], [84.4, 110.64]], \"sentences\": [\"A small group of people are seen attending an exercise class with a man leading in front.\", \" The man continues moving around with the woman on top of an exercise beam.\", \" The woman continue moving up and down with the man leading in front.\"]}, \"v_JhihdPxI_Xc\": {\"duration\": 134.0, \"timestamps\": [[0.67, 38.86], [34.17, 100.5], [90.45, 128.64]], \"sentences\": [\"Two women are seen bending down in the middle of a large circle with people cheering around them.\", \" The girls perform martial arts around one another while people still cheer on the side.\", \" More people jump in and take turns kicking and flipping around one another and end by bowing to the group.\"]}, \"v_DfOqhNeHDgM\": {\"duration\": 57.77, \"timestamps\": [[0, 3.76], [4.04, 53.15], [9.24, 13.29], [36.11, 53.15], [53.44, 57.77]], \"sentences\": [\"We see an opening title screen.\", \" We see a group of men playing drum outside as kids watch.\", \" We pan left and see a small boy clapping to the music.\", \" We change angle and see more of the crowd.\", \" The dark ending title screen loads.\"]}, \"v_y9bLCC26MGQ\": {\"duration\": 36.87, \"timestamps\": [[0.55, 5.35], [5.16, 11.25], [0.92, 8.85], [11.43, 36.32]], \"sentences\": [\"A man stands on the start line of a track.\", \" Then the man runs, skip and then jumps long over the sand box.\", \" A perdon walks in the field carrying two long poles.\", \" The long jump performed by the man is shown in slow motion.\"]}, \"v_d7gbNqcKXps\": {\"duration\": 7.06, \"timestamps\": [[0.04, 1.52], [2.05, 5.19], [5.05, 6.88]], \"sentences\": [\"A small group of people are seen standing around a lawn.\", \" One person bends over to hit a ball wile others watch his movements.\", \" The man then hits the ball and the others walk out of frame.\"]}, \"v_Nsl_tnIRNEo\": {\"duration\": 156.85, \"timestamps\": [[0, 25.88], [25.88, 76.86], [76.86, 156.85]], \"sentences\": [\"A man is bowling in a bowling alley.\", \" Some children are seen putting together and playing with toys bowling alleys.\", \" The scene is then repeated.\"]}, \"v_TaLEPzEyZ34\": {\"duration\": 167.81, \"timestamps\": [[0, 15.1], [15.94, 36.08], [36.08, 60.41], [60.41, 167.81]], \"sentences\": [\"A woman takes out a letters from a mail box, then she sits next to a bench to read the letter.\", \" The woman leans on a wall while drinking, after she leans on the rails of a deck.\", \" The woman reads a book on a bed and then paint her nails.\", \" After, the woman sits on front a computer screen and drinks from a cup, then the girl holds a white flower next to her face.\"]}, \"v_WZeMQ-5dFlM\": {\"duration\": 127.8, \"timestamps\": [[0, 20.45], [20.45, 55.59], [55.59, 89.46], [89.46, 127.8]], \"sentences\": [\"A kid on a long board kicks his board and starts skating around.\", \" He skates down the road and then down some sidewalks.\", \" He changes the wheels on his board and gets back to skating around.\", \" He starts turning the board side to side and then jumps off some stairs  and stuff.\"]}, \"v_nI_XzNfxjlY\": {\"duration\": 215.54, \"timestamps\": [[0, 28.02], [28.02, 57.12], [57.12, 92.68], [92.68, 215.54]], \"sentences\": [\"A man comes outside in the back yard holding two bags that he plans to put away.\", \" The dog sneaks put of the house because the door was not closed all the way and the baby comes stumbling out after the dog.\", \" The baby falls into the pool trying to keep himself afloat.\", \" He has had some swimming resource lessons so even after 5 mins he is able to stay afloat and not drown, this still seems very concerning regardless.\"]}, \"v_FGFPyp9nJug\": {\"duration\": 229.72, \"timestamps\": [[0, 138.98], [160.8, 203.3]], \"sentences\": [\"The video leads into several funny home videos of dogs leading young children in strollers around areas.\", \" The video continues with many dogs moving as well as kids leading the dogs around as well.\"]}, \"v_QTPz2j16KFk\": {\"duration\": 95.27000000000001, \"timestamps\": [[0, 39.54], [12.86, 39.54], [72.41, 75.26]], \"sentences\": [\"A man is sitting at a table completing a rubiks cube.\", \" People are standing next to him watching.\", \" He writes something down on a piece of paper.\"]}, \"v_Yi3xUQcaOnE\": {\"duration\": 90.07, \"timestamps\": [[0.45, 36.03], [33.78, 70.26], [68.9, 87.82]], \"sentences\": [\"A man is seen hosting a news segment that shows clips of various floats moving down a rapid with people inside.\", \" One group of people fall out and pull each other off to the side and one makes speaks to the camera.\", \" More shots are shown of people riding down the river and falling out on the side.\"]}, \"v_pMmlJGSucss\": {\"duration\": 74.24, \"timestamps\": [[0.37, 21.16], [22.27, 58.65], [53.45, 69.04]], \"sentences\": [\"A man is seen speaking to another in front of a large group and one man walks up stairs.\", \" He raises his arm while a camera follows him from behind.\", \" He sticks his arms out and jumps into a pool in the end.\"]}, \"v_-5c9WHk408g\": {\"duration\": 142.5, \"timestamps\": [[0, 9.98], [17.81, 61.28], [66.98, 124.69], [125.4, 142.5]], \"sentences\": [\"A man is holding a paintball gun in his hand.\", \" He runs out from behind a building, shooting at the other players.\", \" The players shoot back as he runs at top speed.\", \" They continue through the course, reloading.\"]}, \"v_p8MvTi8hJdE\": {\"duration\": 219.94, \"timestamps\": [[0, 29.69], [29.69, 170.45], [170.45, 219.94]], \"sentences\": [\"A man on a snowboard talks to the camera using a selfie stick.\", \" The man begins to demonstrate a technique on the snowboard while still talking to the camera.\", \" The man is still talking to the camera, but the scenery now has other people participating in skiing and snowboarding activities in the background.\"]}, \"v_g0vAi9iuVPA\": {\"duration\": 13.26, \"timestamps\": [[0, 1.06], [1.26, 7.29], [7.89, 13.26]], \"sentences\": [\"A gymnast prepares to run at the end of a mat.\", \" He then runs at top speed, spinning and flipping foward down the mat.\", \" He lands with his arms out at the end.\"]}, \"v_HlAjWgz7zZ4\": {\"duration\": 106.44, \"timestamps\": [[0, 14.9], [15.97, 21.82], [21.82, 29.8], [29.8, 35.13], [36.19, 50.03], [51.09, 61.2], [59.07, 61.2], [62.27, 90.47], [90.47, 106.44]], \"sentences\": [\"A man is riding a bike and jumps into the water.\", \" A slow motion replay is played of him jumping into the water.\", \" A person is on a slack line and doing trucks.\", \" The person falls backward off of the slack line.\", \" Two people are playing on a slack line and one of them flies off and falls on the sand.\", \" A person is riding a unicycle on a slack line and falls off.\", \" A dog runs up to the person.\", \" A person is using a slack line over the pool and the roof of a house falls down.\", \" The roof falling is played in slow motion.\"]}, \"v_PVdd6E1S0Yc\": {\"duration\": 91.12, \"timestamps\": [[0, 9.11], [9.11, 18.68], [19.13, 46.01], [46.92, 87.47], [87.02, 91.12]], \"sentences\": [\"A lady puts her hair in a bun on the side.\", \" The lady puts pins in her hair on the side.\", \" The lady rinses her face in her hands  with water.\", \" The lady washes her face with a blue towel then rinses her face again.\", \" The lady smiles at the camera and the scene ends.\"]}, \"v_9jivQgF6J1g\": {\"duration\": 152.05, \"timestamps\": [[0, 18.25], [19.01, 35.73], [20.53, 31.17], [19.01, 148.24], [99.59, 101.11], [101.87, 107.95], [119.36, 129.24]], \"sentences\": [\"Two teams are playing ice hockey.\", \" The green team go to their team area.\", \" Two members of the green team carries an individual to the back towards the locker room.\", \" The teams are standing around next to their assigned areas.\", \" Fans stand with a look of concern.\", \"The referee talks to a suited member.\", \" Green player holds his head down.\"]}, \"v_saB1t3Znhk0\": {\"duration\": 90.19, \"timestamps\": [[0, 5.86], [7.21, 66.74], [27.96, 75.76], [67.19, 68.99], [76.66, 78.01], [78.46, 78.91], [79.82, 85.23]], \"sentences\": [\"The credits of clip are shown.\", \" Two children display their karate routine.\", \" Two teens join the children and karate fight.\", \" The two children move out of the screen.\", \" The two teens bow after their fight.\", \" The two children move backwards as the teens leave.\", \" The credits of video are shown.\"]}, \"v_bcXc6mKSEEM\": {\"duration\": 28.75, \"timestamps\": [[0, 21.27], [14.8, 22.42], [24.72, 28.75]], \"sentences\": [\"Two men laugh and set up for an arm wrestling match.\", \" The man laughs with the friends who watch the match.\", \" The challenger struggles to pin the man's arm but cannot and the match ends.\"]}, \"v_AK-9sj8btp8\": {\"duration\": 210.63, \"timestamps\": [[0, 23.17], [23.17, 46.34], [44.23, 81.09], [81.09, 143.23], [143.23, 210.63]], \"sentences\": [\"Shots of various men playing cricket are shown in slow motion.\", \" Several teams are showcased and shown playing various part of the game against other teams.\", \"  There are a lot of different action shows taking place.\", \" People are in various states of happiness but also sadness.\", \" It is highly emotional and ends with some normal, fast motion shots of the games being played.\"]}, \"v_JHITVq5zJOM\": {\"duration\": 237.54, \"timestamps\": [[0, 237.54], [222.1, 226.85], [226.85, 237.54]], \"sentences\": [\"Several kids are playing beach volleyball on an enclosed, sand volleyball court.\", \" One of the boys falls down after trying to go for the ball.\", \" When the round is over, the people watching start to clap.\"]}, \"v_4j7sZBThR7s\": {\"duration\": 130.31, \"timestamps\": [[0, 20.85], [20.85, 71.67], [71.67, 130.31]], \"sentences\": [\"A chef dressed in a white coat and wearing gloves is standing behind a flame burner, holding a cast iron skillet in his left hand while he pours ingredients into his pan to make a fluffy omelette.\", \" The chef turns the flame higher and stirs the ingredients, then adds a scoop of eggs into the pan and continues to cook and move the eggs around for an even cooking.\", \"The chef then adds a little bit of cheese, and a little bit more eggs to finish the omelette up and when finished, he puts it on the plate of the girl who was waiting for it.\"]}, \"v_AUPs7Ukfc1I\": {\"duration\": 136.32999999999998, \"timestamps\": [[0, 8.86], [10.91, 36.81], [38.85, 91.34], [93.38, 136.32]], \"sentences\": [\"A man is holding a device for shaving in his hands.\", \" He begins shaving his beard off with the electric shaver.\", \" He finishes shaving, and cleans up what is left with the shaver.\", \" When he is clean, he shows off the wad of hair, and discards it by flushing it down the toilet.\"]}, \"v_WuO75Sb0Kgg\": {\"duration\": 135.94, \"timestamps\": [[0, 7.48], [8.16, 127.79], [51.66, 62.53], [69.33, 74.77], [107.39, 115.55], [116.23, 119.63], [128.47, 135.94]], \"sentences\": [\"We see a green swirling opening scene.\", \" An eye doctor talks as we cut to scenes of a woman putting her contacts in.\", \" We see the doctor put the contact in the for the lady.\", \" The lady wipes her hands on a towel near a sink.\", \" We see her put them in a cleaning solution in a small clear jar.\", \" We see the lady and a doctor in the office talking.\", \" We then see the ending title screen.\"]}, \"v_SdsoRu3953g\": {\"duration\": 185.71, \"timestamps\": [[0, 13.93], [13.93, 54.79], [54.79, 128.14], [128.14, 141.14], [141.14, 170.86], [170.86, 185.71]], \"sentences\": [\"A woman is standing and showing her hairstyle from different angles.\", \" A large, gray, plug in curler set is shown and it has different sized curlers in 4 different colors with gray clips sitting next to it, and the woman picks up a few curlers and clips to show what they look like.\", \" The woman is now in a sped up mode and is rolling her hair in the curlers,fastens them on her head with the clips and does this all the way until her head is filled with curlers.\", \" Just as fast as she rolled them she begins to unroll them still in the sped up mode.\", \" Once all the curlers out she pulls her hair to her left side and begins clipping and styling her hair.\", \" The woman once again shows her hairstyle from different angles and never shows her face.\"]}, \"v_KlheP4IiS8w\": {\"duration\": 211.4, \"timestamps\": [[0, 211.4], [0, 99.36], [99.36, 211.4]], \"sentences\": [\"This woman is playing frisbee with her dog in a secluded grassy area.\", \" She has 2 different colored frisbees and she throws a white one and a green one as the dog catches every one of them.\", \" They even play tug of frisbee for a while and the dog may win or the woman may win.\"]}, \"v_94wjthSzsSQ\": {\"duration\": 138.66, \"timestamps\": [[0, 138.66], [31.2, 46.45], [53.38, 75.57], [84.58, 97.06], [110.23, 116.47], [120.63, 126.87]], \"sentences\": [\"People who practice Capoeira perform and do flips outside in the grass as other performers form a ring and watch.\", \"  A small boy enters the ring then two girls flip through.\", \" Five people bend over in the grass as a small boy flips over their backs.\", \" A man kneels in the grass as two men flip and one jump over their back.\", \" We see more kids and people flip through.\", \" A man falls mid flip.\"]}, \"v_ZoCRdAYWtKg\": {\"duration\": 148.48, \"timestamps\": [[0, 11.14], [11.88, 129.18], [129.92, 148.48]], \"sentences\": [\"Several individuals are seated in stationary bumper cars.\", \" The cars begin to move and the camera focuses on a woman and a child.\", \" The cars stop and the individuals get out of them.\"]}, \"v_63HZk1SInLk\": {\"duration\": 110.39, \"timestamps\": [[0, 24.84], [24.29, 91.07], [91.07, 110.39]], \"sentences\": [\"A woman is seen sitting behind a desk taking her classes down and clip arts of her and objects.\", \" She speaks more to the camera while also showing various ingredients and pouring water and salt into a pot.\", \" She mixes more ingredients in the bowl and strain the fruits into a bowl in the end.\"]}, \"v_GE2q5qDJ-xU\": {\"duration\": 122.17, \"timestamps\": [[0, 15.88], [10.38, 30.54], [33.6, 42.76], [38.48, 122.17]], \"sentences\": [\"A small dog is wearing shoes.\", \" He has trouble walking in them.\", \" A different dog is shown trying to walk in shoes.\", \" Several more dogs are shown facing the same dellemna.\"]}, \"v_TjR436qaQw4\": {\"duration\": 150.21, \"timestamps\": [[1.5, 48.07], [45.06, 120.17], [110.4, 147.96]], \"sentences\": [\"A person is seen typing in a google search as well as pokemon being seen and a man looking to the camera.\", \" Several objects are shown followed by a person drawing on a pumpkin.\", \" The person carves out the pumpkin and shows it on fire in the dark.\"]}, \"v_k_ZXmr8pmrs\": {\"duration\": 182.55, \"timestamps\": [[0, 94.92], [85.8, 182.55]], \"sentences\": [\"Several shots are shown of a man piercing together a camera followed by a man thumbs upping the camera and a helicopter taking off.\", \" The helicopters pans around views of a boat riding along the water and the man taking pictures of the side.\"]}, \"v_MYi6p113py8\": {\"duration\": 220.78, \"timestamps\": [[1.1, 218.57], [1.1, 2.21], [4.42, 220.78]], \"sentences\": [\"A woman stands in front of a crowd of people on a public sidewalk and dances with a male dance partner in ballroom style dance.\", \"   A man adjusts a radio while a woman stands in a ballroom dance pose preparing for a dance.\", \"  The man and the woman begin to dance on a sidewalk in front of a small crowd of people gathered around them before ending the dance and collecting tips in a black top hat.\"]}, \"v_9pJBfTZOcxI\": {\"duration\": 63.62, \"timestamps\": [[0, 30.22], [25.77, 63.62]], \"sentences\": [\"A person is seen moving along a flooded road when a car takes off and he rides behind on a board.\", \" The person rides in the water all along the street and ends with him waving his arms up into the air.\"]}, \"v_UUjTMDSUvs0\": {\"duration\": 114.68, \"timestamps\": [[0, 29.82], [28.67, 69.96], [79.13, 110.1]], \"sentences\": [\"A woman is seen cooking items onto a stove with various ingredients laid out.\", \" The camera pans around kitchen and shows the woman cooking more ingredients.\", \" She continues mixing it around in the pan.\"]}, \"v_2_hcULoN4Ls\": {\"duration\": 220.89, \"timestamps\": [[0, 58.54], [57.43, 168.98], [165.67, 220.89]], \"sentences\": [\"An intro leads into a close up of a horse followed several effects on a clip of people riding horses.\", \" More shots of people riding around on horses are shown playing a game with sticks and hitting a ball.\", \" The men ride around with their sticks in the air cheering and play more of the game with their sticks in the air.\"]}, \"v_UXi0Cy16-0Y\": {\"duration\": 101.03, \"timestamps\": [[0, 4.04], [4.04, 41.93], [41.42, 76.28], [76.78, 101.03]], \"sentences\": [\"A young boy is standing in the gym of the University of South Florida and begins to start jumping rope.\", \"The jumps are behind his leg and his head, and around the back.\", \"The male then starts doing flips and rolls across the floor and continues doing a series of jumps.\", \"Near the end,he does a split,nods to the judges and looks at the screen for his score.\"]}, \"v_4Oug7S32B-4\": {\"duration\": 113.18, \"timestamps\": [[0, 68.47], [68.47, 82.62], [82.62, 113.18]], \"sentences\": [\"two men are talking in a gym holding big freezers on their backs.\", \" one of the man open the freezer and take out a drawer.\", \" man close the drawer and keep walking.\"]}, \"v_E7C91KoML-o\": {\"duration\": 20.09, \"timestamps\": [[0, 3.01], [3.11, 8.13], [8.13, 12.96], [12.96, 20.09]], \"sentences\": [\"A man is bent over holding on to a weight with lots of weight on it.\", \" He squats down kind of and picks it up, it looks very heavy and kind of painful.\", \" He lifts up above his head and jumps his feet apart.\", \" He stands straight up again and drops the weight down to the ground.\"]}, \"v_iAIl5eawd6I\": {\"duration\": 215.27, \"timestamps\": [[2.15, 18.3], [20.45, 59.2], [61.35, 101.18], [101.18, 139.93], [139.93, 215.27]], \"sentences\": [\"A person ski on a hill doing parallel turns down the hill until comes to a stop.\", \" The woman ski down the hills fast and then stop immediately.\", \" Then, the woman ski over a ramp and goes down the hill ski with other people.\", \" The woman ski down the hill doing wide turns.\", \" After, the woman ski doing narrow turns until she stops and lie on the snow.\"]}, \"v_r8AXq1Q5bn0\": {\"duration\": 168.32, \"timestamps\": [[0, 8.42], [0, 44.61], [9.26, 168.32], [44.61, 47.97]], \"sentences\": [\"A man stands in a room talking.\", \" Another man watches from the doorway.\", \" The man that was talking plays the accordion while singing and dancing.\", \" The man watching from the doorway runs through the room.\"]}, \"v_IfKGdI5egKc\": {\"duration\": 112.55, \"timestamps\": [[0, 27.57], [29.83, 86.1], [87.22, 112.55]], \"sentences\": [\"A couple is outside with a bucket and a dog.\", \" The dog is running around trying to avoid a bath.\", \" They get the dog wet, then it runs away again.\"]}, \"v_SokK_O2s9tQ\": {\"duration\": 110.57, \"timestamps\": [[0, 4.98], [5.53, 12.72], [13.27, 18.8], [18.8, 55.84], [56.39, 82.93], [83.48, 110.57]], \"sentences\": [\"A man rides on a camel slowly.\", \" Two camel are sitting in a field.\", \" We see people as the get on and off the camels.\", \" Four women ride two camels as a man holds the reins.\", \" A man is being interviewed in the field.\", \" We see the man with the camels again and the man is interviewed before we see the camels one more time.\"]}, \"v_QCj7IGUGs2Y\": {\"duration\": 126.89, \"timestamps\": [[0, 102.15], [3.17, 34.26], [31.72, 59.64], [55.83, 101.51], [99.61, 126.89]], \"sentences\": [\"There's a little girl dressed in a lime green outfit playing in an indoor play structure.\", \" The girl walks by some rocking horses and swings, trying to explore the place as she walks on large colored foam squares.\", \" Then she begins swinging on one of the swings and enjoys herself.\", \" Then she starts climbing up a rope tunnel to go explore some fun.\", \" An animated girl is talking about as part of an advertisement foor the channel.\"]}, \"v_Zkz4ef53YjA\": {\"duration\": 43.68, \"timestamps\": [[3.71, 13.76], [13.76, 39.09]], \"sentences\": [\"A man talks and put spaghetti in a pot with bowling water.\", \" Then, the man puts spaghetti in a pot and add water to cook.\"]}, \"v_1jjsTfZS5DY\": {\"duration\": 172.9, \"timestamps\": [[0, 49.28], [50.14, 134.86], [123.62, 168.57]], \"sentences\": [\"A woman is seen speaking to the camera while writing on paper and pulling out wrapping paper.\", \" She is shown wrapping a gift poorly and giving it to a friend when another person walks in.\", \" She continues to struggle with wrapping the paper while still speaking to the camera.\"]}, \"v_S3EA0yDdaWY\": {\"duration\": 113.41, \"timestamps\": [[3.97, 35.16], [37.42, 60.67], [60.67, 87.89]], \"sentences\": [\"Gymnasts perform with a rod throwing it to the air and spinning around.\", \" A teen performs with a rod and throws to the air and flips before to catch it.\", \" The gymnasts jumps and flips and spins a rod.\"]}, \"v_w-KZEq6JhnQ\": {\"duration\": 116.33, \"timestamps\": [[0, 13.96], [14.54, 35.48], [35.48, 83.76], [85.5, 102.95], [102.95, 116.33]], \"sentences\": [\"A lady talk into a microphone on a set of outdoor steps.\", \" We see a lady knitting and being interviewed.\", \" We see two people being interviewed and the knitting lady.\", \" The knitting lady is holding a hat, a scarf and being interviewed.\", \" We see the lady on the stairs again.\"]}, \"v_5X7zeOps9uA\": {\"duration\": 109.58, \"timestamps\": [[0, 10.96], [11.51, 13.15], [56.98, 78.35], [78.35, 81.63], [105.19, 109.58]], \"sentences\": [\"We see two people trying to hit a pinata with a stick.\", \" The lady in orange leaves the other.\", \" The lady moves from the pinata toward the man and swings.\", \"The man backs away from the lady.\", \" The lady takes off her blindfold and walks away.\"]}, \"v_4aBJ_L0u7Lo\": {\"duration\": 141.82999999999998, \"timestamps\": [[0, 127.65], [21.27, 41.13], [41.13, 56.73], [56.73, 126.94], [133.32, 141.83]], \"sentences\": [\"A young girl in a red polka dot dress is playing shuffle board.\", \" The girl sends two blue and one yellow puck forward.\", \" The girl moves a blue puck back in place then pushes it forward.\", \"  The girl pushes a blue and three yellow pucks forward.\", \" the girl walks down the court.\"]}, \"v_o_-a7AMw74M\": {\"duration\": 103.05, \"timestamps\": [[1.55, 40.19], [27.82, 73.68], [70.07, 98.41]], \"sentences\": [\"A person's feet are seen walking along a bloody tub and then rinsed off with water.\", \" The person then takes their shoe off to run under the water and then put on again.\", \" He does the same with the other foot and then take both shoes off to show.\"]}, \"v_FMVECEaQ0Jo\": {\"duration\": 169.67000000000002, \"timestamps\": [[0, 37.33], [37.33, 98.41], [81.44, 134.89], [134.89, 169.67]], \"sentences\": [\"Police watching over the town, while large group of men is bright colors walk across the town.\", \" A man from the Micah tribe practices on running with his dog.\", \" He and others talks on and on for quite a bit of time.\", \" You get to see see about the people in the community who also run.\"]}, \"v_kRom61pt8zk\": {\"duration\": 184.39, \"timestamps\": [[0, 184.39], [3.69, 16.6], [114.32, 148.43], [151.2, 162.26]], \"sentences\": [\"A lady talks while messing with her hair.\", \" The lady lets her hair down by removing a hair tie.\", \" The lady brushes her hair and discusses.\", \" The lady parts her hair with her fingers.\"]}, \"v_6xAe1YVbxuY\": {\"duration\": 204.8, \"timestamps\": [[0, 29.7], [29.7, 65.54], [65.54, 130.05], [130.05, 204.8]], \"sentences\": [\"An image of weights being slid onto a bar is shown and then disappears.\", \" A man dressed in a grey shirt and black Adidas sweatpants then begins to pick up weights and throws them down abruptly and repeats it one more time.\", \"After,a woman with a black brace around her middle section is pictured doing the exact same thing and does several sets and a different man follows her exact same actions.\", \"More people from different genders and background walk into the gym and they too position themselves to pick up the bar.\"]}, \"v_zsw9WEsSowI\": {\"duration\": 89.33, \"timestamps\": [[0, 30.82], [25.01, 64.32], [66.1, 86.2]], \"sentences\": [\"A close of a musical cook is shown when a woman walks into frame.\", \" The woman then begins playing an instrument while moving her hands up and down.\", \" She continues playing the instrument and stops by walking out of frame.\"]}, \"v_-0r0HEwAYiQ\": {\"duration\": 43.68, \"timestamps\": [[1.31, 41.49], [24.46, 41.49], [40.4, 41.49]], \"sentences\": [\"First the person presses two buttons on the vacuum cleaner.\", \" The vacuum is now turned on and gets rolled across the carpet and the hardwood floors.\", \" The vacuum never gets turned off.\"]}, \"v_YrdpvaBDDlE\": {\"duration\": 77.69, \"timestamps\": [[0, 25.64], [25.64, 54.39], [55.55, 77.69]], \"sentences\": [\"Several Asians are outside underneath a tent with fruits in front of them on a table.\", \"A young boy walks up to the table and the man continues to cut fruits and vegetables and places them in a brown bowl.\", \"Once all of the ingredients are added,the man begins to stir them up and mashing them all together.\"]}, \"v_x4c_wI6kQyE\": {\"duration\": 70.36, \"timestamps\": [[0, 30.61], [26.03, 67.54]], \"sentences\": [\"A large group of people are seen hanging around a house and leads into shots of a baby smoking a cigarette.\", \" Many shots are shown of the baby smoking and laying down drinking a bottle in the end.\"]}, \"v_E3dV8LdAPx8\": {\"duration\": 168.16, \"timestamps\": [[0, 161.43], [161.43, 168.16]], \"sentences\": [\"Two teams play volleyball, when the team with white t-shirt serves well, the girls hug forming a circle, while a man wearing blue shirt on the side gives directions to a team.\", \" Then, a girl wearing white t-shirt jumps high to hit the ball and the team wins.\"]}, \"v_qdE6dbQOnt0\": {\"duration\": 42.03, \"timestamps\": [[0, 19.33], [19.54, 42.03]], \"sentences\": [\"A boy is standing in a bathroom squirting cleanser on his hand and washing his face.\", \"Once his face is lathered completely he grabs hands full of water and rinses his face off until all of the soap is off.\"]}, \"v_t-8wEopB3AQ\": {\"duration\": 194.72, \"timestamps\": [[0, 21.42], [30.18, 111.97], [112.94, 174.28], [175.25, 194.72]], \"sentences\": [\"A man is shown by the ocean, zipping out to show underwater and above water views of boats.\", \" A beach is shown, then a scuba diver under the water with tons of fish swimming.\", \" The scuba divers are shown in a close up as they come out of the water.\", \" People jump off a boat and a final scene of the ocean is shown.\"]}, \"v_blOgPoTkhks\": {\"duration\": 17.39, \"timestamps\": [[0, 1.91], [1.48, 8.35], [8.7, 10.61]], \"sentences\": [\"A girl jumps onto a bar.\", \" She does several flips on the bar.\", \" She jumps from that bar onto a higher bar.\"]}, \"v_0JHOEr3YdNM\": {\"duration\": 200.46, \"timestamps\": [[0, 24.05], [29.07, 55.13], [60.14, 162.37], [165.38, 175.4], [177.41, 200.46]], \"sentences\": [\"A woman is sitting on a toilet in a bathroom while talking.\", \" She holds up a bottle of bleach and a bar of soap.\", \" She begins washing her leg with the soap while talking.\", \" She then uses a razor to shave her legs.\", \"Afterward, she smooths lotion onto her leg.\"]}, \"v_WtNvqSFTgxI\": {\"duration\": 237.66, \"timestamps\": [[0, 237.66], [146.16, 152.1]], \"sentences\": [\"People are playing a game of lacrosse in the street.\", \" A guy moves the net around.\"]}, \"v_Uc1_7BXtXZs\": {\"duration\": 96.02000000000001, \"timestamps\": [[0, 8.64], [11.52, 52.33], [53.77, 86.89], [87.85, 96.02]], \"sentences\": [\"An ad for a gopro appears on the screen.\", \" Several people are on a beach, and they shake hands in greeting.\", \" They warm up, then start a small game of volleyball.\", \" They lob the ball back and forth over the net.\"]}, \"v_qhYQd9nwOts\": {\"duration\": 133.44, \"timestamps\": [[0, 133.44], [51.37, 133.44]], \"sentences\": [\"People are sitting in kayaks paddling in the water.\", \" They go under a rock and through a tunnel.\"]}, \"v_le0tJsyuPks\": {\"duration\": 125.13, \"timestamps\": [[0, 26.9], [25.65, 64.44], [62.57, 121.38]], \"sentences\": [\"Two men are shown speaking to the camera with one holding a microphone and interviewing the other.\", \" Various shots of people are shown as well a bowling balls being thrown down a lane.\", \" The man is again being interviewed with several shots of balls being thrown and more people being interviewed.\"]}, \"v_7toItxBIVtk\": {\"duration\": 227.38, \"timestamps\": [[0, 70.49], [56.85, 167.13], [155.76, 222.84]], \"sentences\": [\"A large group of people are seen dancing around a room with a woman leading in front.\", \" The women dance all around the room following the woman in front.\", \" The group continues dancing with one another and ends by holding a pose.\"]}, \"v_lSTqYESahrY\": {\"duration\": 106.83, \"timestamps\": [[0, 14.96], [14.42, 53.95], [53.41, 81.72], [81.72, 106.83]], \"sentences\": [\"A man in a wheel chair is talking about his shoe and how he puts it on.\", \" He shows his fingers and how he puts them a certain way.\", \" Then he very casually brings his foot up over on to his lap.\", \" He places the shoe on his foot and demonstrates how to put it on, then when he is down he puts his foot back down and continues to talk.\"]}, \"v_JlCQlNjvXzA\": {\"duration\": 85.15, \"timestamps\": [[0, 17.03], [21.29, 63.44], [64.29, 85.15]], \"sentences\": [\"a man is working out on an elliptical trainer.\", \" He pedals slowly but consistently in his living room.\", \" The rear of the trainer is shown.\"]}, \"v_LSFmrUdURCs\": {\"duration\": 162.75, \"timestamps\": [[0, 15.46], [21.16, 134.27], [136.71, 162.75]], \"sentences\": [\"A board is shown close up to the camera.\", \" A timer or clock is held in front of it before a man appears to wipe down the board.\", \" The man sands the board to make it shiny before smoothing it further.\"]}, \"v_wDFpFJ1CP9g\": {\"duration\": 229.5, \"timestamps\": [[0, 47.05], [47.05, 55.08], [97.54, 165.24]], \"sentences\": [\"A girl is wake boarding behind a boat.\", \" A man in a blue shirt is standing by the water talking.\", \" The girl and guy are in a swimming pool practicing wake boarding.\"]}, \"v_VgQmPHpRFXQ\": {\"duration\": 64.46, \"timestamps\": [[0.64, 17.73], [19.02, 45.77], [47.06, 59.95]], \"sentences\": [\"A close up of a candle is shown as well as a picture of a man praying in the desert.\", \" A person is then seen taking off a pair of shoes in front of him.\", \" The man sets the shots in between his legs and speaks to the camera.\"]}, \"v_9nndNUHadcg\": {\"duration\": 47.18, \"timestamps\": [[5.43, 14.86], [14.86, 27.6], [27.6, 41.76]], \"sentences\": [\"A young girl is in a bar and she puts ice in a glass.\", \" Then, the girl puts two measures of liquor and a little bit soda.\", \" After, the young girl puts a straw in the drink.\"]}, \"v_DguywhRJ7ds\": {\"duration\": 4.81, \"timestamps\": [[0, 0.67], [0.82, 2.74], [2.91, 4.81]], \"sentences\": [\"A person walks up to the side of a pool.\", \" They dive off the diving board into the water.\", \" They make a splash as they hit the water below.\"]}, \"v_VGvjsCblFY0\": {\"duration\": 88.59, \"timestamps\": [[0, 11.52], [15.5, 36.32], [36.32, 66.44], [67.77, 88.59]], \"sentences\": [\"A girl is doing somersaults in her front yard.\", \" Another girl looks at her through a window as she does a backbend, injuring herself.\", \" She runs outside and the girl is sitting on the ground using her phone, so they get into an argument.\", \" Soon they are both doing gymnastics together, ending with triumphant jumps into the air.\"]}, \"v_--1DO2V4K74\": {\"duration\": 211.53, \"timestamps\": [[0, 77.21], [77.21, 154.42], [154.42, 211.53]], \"sentences\": [\"Several title screens appear and shows the word Crackbabies along with fiver point one pounds.\", \"When the video does eventually start,a man is outside of a large mountain climbing the wall.\", \"As he progresses up the rock,there are several hooks along the way and he takes the clips from around his harness and clips them to the next hook on the rocks.\"]}, \"v_uG_hgODoDes\": {\"duration\": 207.73, \"timestamps\": [[5.19, 83.09], [36.35, 156.83], [126.71, 197.34]], \"sentences\": [\"A woman is seen standing before a platform with a dog on top speaking to the camera.\", \" The woman then begins brushing the dog along it's fur and cutting it to groom.\", \" The woman continues grooming the dog while speaking to the camera and ends with a close up of the dog.\"]}, \"v_fJCkM6secVM\": {\"duration\": 201.39, \"timestamps\": [[8.06, 13.09], [38.26, 189.3], [189.3, 201.39]], \"sentences\": [\"A woman is feeding a child she is holding.\", \" A woman begins adding ingredients to a bowl on a counter and she mixes the ingredients together.\", \" She puts the mixture on top of a rice cake.\"]}, \"v_ufBz1xfqQoM\": {\"duration\": 180.09, \"timestamps\": [[0, 5.4], [18.01, 60.33], [51.33, 54.93], [59.43, 63.93], [77.44, 95.45], [96.35, 180.09], [142.27, 146.78], [164.79, 173.79]], \"sentences\": [\"We see two people enter a dance floor.\", \" The people then take their turn dancing in a competition.\", \" The lady hops in place.\", \" A bunch of men walk out onto the stage.\", \" We then see other people waiting to dance.\", \" We see 6 couples dancing together.\", \" We see a lady close up.\", \" A man spins a woman round and round.\"]}, \"v_6q3EIv2X8BQ\": {\"duration\": 33.34, \"timestamps\": [[0, 19.67], [18.17, 32.84]], \"sentences\": [\"Baby farm animals are touched by children.\", \"  The kids wash their hands before they leave and are really happy.\"]}, \"v_21biKVGaY1Y\": {\"duration\": 158.15, \"timestamps\": [[0, 37.96], [37.96, 136.01], [136.01, 158.15], [65.63, 157.36]], \"sentences\": [\"A child carry a bucket of water in the beach and pour in the sand castle, next to two women and a toddler.\", \" The child goes to bring more water, then the woman pours it on top the castle.\", \" Then, the toddler sits on front the castle while the baby sits on front the castle.\", \" A lady follows the toddler, and then stands.\"]}, \"v_T8ae3_Pm5eE\": {\"duration\": 211.82999999999998, \"timestamps\": [[0, 99.56], [70.96, 211.83]], \"sentences\": [\"A woman is seen speaking to the camera and leads into a small group of girls doing ballet and a barre.\", \" The girls do various ballet warm ups together and ends with the teacher speaking again.\"]}, \"v_CTWo9EfQ4Hc\": {\"duration\": 67.01, \"timestamps\": [[0, 3.69], [3.69, 15.41], [15.41, 39.2], [39.2, 67.01]], \"sentences\": [\"An elderly woman wearing a one piece suit is standing on a ramp in an indoor gym.\", \" The woman bends down and moves the ramp, stands on it, then mounts the double parallel bars.\", \"The woman immediately begins her routine which includes an impressive amount of moves that include maneuvering around the bars upside down, sideways, flipping, rolling and even being right side up.\", \"An elderly man nearby gets up and adjusts blue mats under the double bars, and the woman finishes her routine and jumps off the bars, lands on her two feet and waves to the audience as they all clap and cheer and some even give her a standing ovation.\"]}, \"v_6j-H-tIjJvA\": {\"duration\": 230.71, \"timestamps\": [[9.23, 118.82], [99.21, 226.1]], \"sentences\": [\"A camera pans out of a shirt that leads into a small group of people playing soccer together while more play behind them.\", \" More clips are shown of various people kicking the ball around and many pictures shown in the end.\"]}, \"v_ROMy00dG8Ds\": {\"duration\": 222.07999999999998, \"timestamps\": [[0, 3.33], [3.33, 214.3], [61.07, 121.03], [152.12, 169.89], [169.89, 184.32], [184.32, 215.41], [215.41, 222.08]], \"sentences\": [\"A cat is on the screen with a title of the video.\", \" A dog and cat are walking along a brick sidewalk.\", \" They pass some puddles and keep walking.\", \"  The dog stops to sniff the wall as the cat continues on.\", \" The camera moves to in front of the animals.\", \" Both animals stop to look around.\", \"  The animal's walk is over.\"]}, \"v_hlvs-e3bCq0\": {\"duration\": 175.29, \"timestamps\": [[0, 17.53], [20.16, 61.35], [63.1, 108.68], [109.56, 141.11], [145.49, 175.29]], \"sentences\": [\"A man is skiing on a snow covered mountain.\", \" He skis up to a group of people before we see an aerial video of the mountains.\", \" Several people are playing drums and instruments in the snow, and marching.\", \" We see many people competing in a skiing competition, and traveling together in groups to the next slopes.\", \" It ends with the people getting into a fun snowball fight.\"]}, \"v_R7iFa9OpoTY\": {\"duration\": 103.72, \"timestamps\": [[0, 24.89], [25.41, 77.79], [66.9, 96.98]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her riding a bike.\", \" The woman speaks into a microphone leading a class while riding on a bike as well as weight lifting.\", \" The woman continues to ride on the end as well as teach her class.\"]}, \"v_x18x9BKMAlk\": {\"duration\": 205.89, \"timestamps\": [[0, 11.32], [12.35, 28.82], [29.85, 157.51], [158.54, 163.68], [164.71, 205.89]], \"sentences\": [\"We see two pieces of ancient Asian art.\", \" We then see people performing martial arts in a plaza and a field.\", \" we see more Asian art and a man with a sword followed by more art and landscapes.\", \" A statue sits outside surrounded by trees.\", \" We see a letter on the screen and see people practicing martial arts and more images of paintings.\"]}, \"v_6SOluodeJ7s\": {\"duration\": 17.07, \"timestamps\": [[0, 3.07], [3.16, 6.57], [6.66, 17.07]], \"sentences\": [\"A man is shown standing in front of an audience of people eating a bag of Doritos.\", \"Once the camera pans out,the man's robe drops and the guy reveals that he is wearing a diaper.\", \"Suddenly, the camera switches and two sumo workers appear and begin running towards each other as the Doritos logo follows after it.\"]}, \"v_Nt6cha3hK_s\": {\"duration\": 187.06, \"timestamps\": [[7.48, 85.11], [65.47, 176.77]], \"sentences\": [\"A man is seen speaking to the camera while standing behind a counter and leads into him showing a plate of food and mixing ingredients together.\", \" The man then cuts up vegetables and mixes them up with other ingredients and speaking to the camera.\"]}, \"v_2VoWT4gnQDg\": {\"duration\": 130.79, \"timestamps\": [[1.96, 125.56], [1.96, 6.54], [11.12, 43.81], [43.81, 83.7], [83.7, 125.56]], \"sentences\": [\"A man stands on a ladder next to a roof and talks to the camera while prodding at roof tiles with a metal tool.\", \" A short clip of an room with a refrigerator and a couch and tv is shown.\", \" The camera pans to a shirtless man standing on a ladder next to a roof and talking.\", \" The man begins to prod at roof tiles with a metal stick, lifting the edges up briefly.\", \" The man then begins talking again before panning to the lawn where a stack of white materials are stacked up next to the edge of the house.\"]}, \"v_CfDdbeAk8LE\": {\"duration\": 15.35, \"timestamps\": [[1.3, 13.97], [1.53, 13.97], [14.2, 14.81]], \"sentences\": [\"A man is welding something on a table.\", \" He is moving his hand while he's welding.\", \" He finishes welding and lifts up his mask.\"]}, \"v_uF9othvTXn8\": {\"duration\": 98.11, \"timestamps\": [[0, 98.11], [0, 95.16], [68.67, 71.13], [97.61, 98.11]], \"sentences\": [\"People are sitting in bumper cars.\", \" They begin driving and bumping into each other.\", \" A man in a a red shirt gets stuck.\", \" The cars stop and people start getting out.\"]}, \"v_81dGQTVec_s\": {\"duration\": 223.21, \"timestamps\": [[0, 51.34], [53.57, 79.24], [79.24, 162.95], [167.41, 200.89], [200.89, 223.21]], \"sentences\": [\"A boy in a red shirt is sitting down holding a shoe.\", \" He puts the pair of shoes in a sink.\", \" He starts washing the shoes with soap and a rag in the sink.\", \" He takes the shoes outside and shows them.\", \" He puts them on and walks on a sidewalk.\"]}, \"v_wHxyzVcKq0c\": {\"duration\": 165.77, \"timestamps\": [[0, 15.75], [16.58, 81.23], [82.06, 141.73], [142.56, 165.77]], \"sentences\": [\"A group of cheerleaders line up on a basketball court.\", \" They begin to dance and cheer as they perform their routine.\", \" They perform numerous front and back flips in unison, before tossing some of the girls into the air for a flip.\", \" The performance ends with the girls and boys cheering and bouncing in place before stretching streamers across the court.\"]}, \"v_KUejIghF6K4\": {\"duration\": 32.14, \"timestamps\": [[0, 18.8], [14.94, 31.65]], \"sentences\": [\"A young child is seen hitting a pinata with a baseball bat as the person moves it around on strings.\", \" The boy continues swinging at the pinata and pauses to speak to the camera nervously.\"]}, \"v_zyylgHTPUS8\": {\"duration\": 104.93, \"timestamps\": [[0.52, 101.78], [0.52, 25.18], [25.18, 87.62], [87.62, 103.88]], \"sentences\": [\"A commercial advertising dog grooming services exhibits displaying a series of still images to market the dog grooming business.\", \"  Still shots of a dog grooming parlor exterior along with pictures of dogs, groomed dogs, and the interior of the grooming facility appear.\", \"  A picture of a dog in a metal bathtub appears along with several other dogs standing in the facility and receiving eye brow trimming, nail clipping, and hair cuts exhibits.\", \"  An information final series of still images displays advertising the location, phone number and other services offered by the grooming boutique.\"]}, \"v_yPA6klGWEsc\": {\"duration\": 104.24000000000001, \"timestamps\": [[0, 20.85], [21.37, 37], [37.52, 76.61]], \"sentences\": [\"A river of water is shown.\", \" A dog is walking on a leash by the water.\", \" A bridge is shown above the water.\"]}, \"v_Lo848n58uoM\": {\"duration\": 127.01, \"timestamps\": [[0, 33.02], [33.66, 75.57], [75.57, 127.01]], \"sentences\": [\"A small toddler is dressed in a red onesie walking a small dog down the sidewalk.\", \"Next,a little girl begins to walk her dog holding his leash as she is being pushed in a stroller.\", \"Several more kids are shown doing the same thing in different locations,ranging from the beach,in doors,and at the park.\"]}, \"v_nTkMD63Wj14\": {\"duration\": 65.5, \"timestamps\": [[0, 33.41], [26.86, 62.23]], \"sentences\": [\"A black dog is standing by the doorway, then the dog meet the boy on the other door, the boy walked to the living room with the dog.\", \" The little boy is riding on a small snow plow, and drove the plow to ploy the snow on the yard.\"]}, \"v_JLA4Ck8_BRI\": {\"duration\": 68.13, \"timestamps\": [[0, 5.11], [13.28, 42.24], [42.24, 51.44], [51.78, 68.13]], \"sentences\": [\"A lady pours ice in a glass.\", \" The lady adds 3 liquors and lemon juice.\", \" The lady shakes the drink in the glass.\", \" Finally, she pours the drink into a martini glass and lifts the glass in the air.\"]}, \"v_QVe7NojAHjY\": {\"duration\": 171.74, \"timestamps\": [[0, 3.43], [4.29, 161.43], [4.29, 54.96], [55.81, 91.02], [91.88, 100.46], [101.32, 117.64], [118.5, 128.8], [129.66, 135.67], [139.11, 147.69], [148.55, 150.27], [151.13, 157.14], [162.29, 171.74]], \"sentences\": [\"The credits and final products of the clip are shown.\", \" A person is preparing some treats.\", \" Butter, brown sugar, sugar, vanilla, eggs are mixed and whisked together in a glass bowl.\", \" Other ingredients and flour are mixed in a measuring cup.\", \" The bowl mixture and the measuring cup mixture are added together and mixed.\", \" Oats are added to the combined mixture.\", \" A scoop is used to place this mix into a baking pan.\", \" The person uses their fingers to press the scoops of mixture down on the baking pan.\", \" The baking pan is placed in an oven.\", \" The browned treats are moved from the oven.\", \" The person lifts one of the treats and presses their finger on its surface.\", \" The credits and final products of the video are shown.\"]}, \"v_lCX7y_KAihU\": {\"duration\": 58.77, \"timestamps\": [[0, 8.23], [8.23, 16.16], [16.16, 34.09], [33.79, 58.77]], \"sentences\": [\"A zoom in of man's beard is shown.\", \" The man then reaches in an envelope held by a woman.\", \" The man stands in front of a mirror and shaves half his mustache and half his beard.\", \" A zoom in of the man's half shaven face is shown.\"]}, \"v_K6oVOQG0lOo\": {\"duration\": 41.75, \"timestamps\": [[0, 0.63], [0.84, 17.33], [17.54, 41.75]], \"sentences\": [\"A red and white race car is parked at a speedway pitstop.\", \"  Men dressed in red and white bring out new tires.\", \" The car is jacked up and the new tires are installed quickly and the car is dropped.\"]}, \"v_NBXH7A2EO7Q\": {\"duration\": 100.2, \"timestamps\": [[0, 32.56], [24.05, 71.14], [70.64, 96.69]], \"sentences\": [\"A person is seen walking into frame and begins putting handle bars onto a bike frame.\", \" The person tightens the handlebars then begins putting a tire on.\", \" The man finishes putting the tire on and puts on a seat on the frame.\"]}, \"v_ssktVpcv9WI\": {\"duration\": 76.86, \"timestamps\": [[0, 23.44], [19.98, 61.49], [49.96, 74.55]], \"sentences\": [\"A clip of a tv show is shown with a man sitting at a table with a woman and getting up.\", \" He then walks to the bathroom and notices the chef doesn't wash his hands.\", \" He then sits back at the table to notice the chef moving his hands and serving food.\"]}, \"v_JgDfOMDfNZs\": {\"duration\": 46.26, \"timestamps\": [[0, 5.09], [5.32, 13.18], [13.41, 34.46], [34.69, 46.26]], \"sentences\": [\"We see a car wash at a gas station.\", \" We see a man standing out front speaking to the camera.\", \" We then see a team of men washing the outside and cleaning the inside of a dark car.\", \" The man speaks again this time from inside the car wash near a wall.\"]}, \"v_33eH3ozXLmU\": {\"duration\": 178.86, \"timestamps\": [[0, 59.03], [44.72, 157.4], [158.29, 178.86]], \"sentences\": [\"Various bubbles are seen under water followed by a scuba diver swimming around and fish moving under the water.\", \" The camera captures several objects seen under the water as well as several divers looking closer.\", \" The swimmers then come to the surface in the end.\"]}, \"v_i49blayQ93Q\": {\"duration\": 201.5, \"timestamps\": [[0, 201.5], [6.05, 10.08], [21.16, 24.18], [60.45, 74.56], [111.83, 122.92], [185.38, 201.5]], \"sentences\": [\"People sits on camels in the desert, then the camels that are on their knees stand and walk .\", \" A man takes pictures of two woman that sit on a camel.\", \" A car pas fast on a road behind the camels.\", \" Also, a woman takes pictures o people sit on camels.\", \" A woman on a camel extend her arms, then a man pulls a camel with a rope.\", \" A man pulls a camel with a rope and other camel follows behind.\"]}, \"v_o3yvGAz5IJ8\": {\"duration\": 207.68, \"timestamps\": [[3.12, 127.72], [69.57, 200.41]], \"sentences\": [\"A woman is seen speaking to the camera while walking around a counter and pouring liquid out into a bucket.\", \" The woman then scrubs down the counter with a sponge and wiping oil along the top as well as her hands.\"]}, \"v_fqFqQjH8M20\": {\"duration\": 183.3, \"timestamps\": [[0, 20.16], [27.49, 133.81], [137.47, 183.3]], \"sentences\": [\"Two men are in a parking lot with a boy.\", \" They are on skateboards, and take off down the street.\", \" The man with the camera records himself as he skates around paths and curves.\"]}, \"v_5PgDTLR7wFQ\": {\"duration\": 106.97999999999999, \"timestamps\": [[0, 52.42], [42.79, 106.98]], \"sentences\": [\"A woman is seen washing a sponge in a sink followed by scrubbing it down with a brush.\", \" She then sprays the water down around the sink while still holding the sponge to scrub and wiping it down.\"]}, \"v_ejIEsnkvLWY\": {\"duration\": 227.85, \"timestamps\": [[0, 127.59], [127.59, 227.85]], \"sentences\": [\"two men playing accordion are standing in the lakeside while a boat is sealing in the river and then are siting.\", \" men are sitting on the dock next to he lake playing accordion.\"]}, \"v_lTDkfbr7znU\": {\"duration\": 184.36, \"timestamps\": [[0, 169.61], [4.61, 8.3], [65.45, 73.74], [96.79, 125.36], [121.68, 129.05], [133.66, 138.27], [170.53, 181.59], [173.3, 184.36]], \"sentences\": [\"A lady and a man dance together as people sit at tables.\", \" A man in a plaid shirt walks in front of the camera.\", \" The man lets go of the woman and snaps his fingers.\", \" A little girl in pink walks up and sits on the ground and a little girl in a white shirt and skirt walks around with a plate.\", \" A man pushes a cart with silver containers on it past the dancers.\", \" A man in hip hip clothes walks past.\", \" The camera pans left and wee see people at a table covered with bottles, cans, and cups.\", \" We pan right and see the dancers.\"]}, \"v_kFP91VjB1AI\": {\"duration\": 82.9, \"timestamps\": [[0, 21.97], [21.97, 37.3], [37.72, 60.93], [61.34, 82.9]], \"sentences\": [\"A kid playing beer pong with some adults attempts to throw a ball into a red cup.\", \" One of the adults takes hold of the ball and hands it to his friend.\", \" The friend throws it against the wall.\", \" The ball bounces of many things around the door before landing straight into the red cup.\"]}, \"v_el-ogdlS5nc\": {\"duration\": 8.01, \"timestamps\": [[0, 3.24], [3.4, 3.85], [4.17, 8.01]], \"sentences\": [\"A man throws something into a barrel.\", \"  A fire erupts inside of the barrel.\", \" The man falls back into a chair.\"]}, \"v_2HmhRdKRVb4\": {\"duration\": 215.78, \"timestamps\": [[0, 105.73], [48.55, 130.55], [132.71, 215.78]], \"sentences\": [\"Various close up of women's faces are shown and leads into a woman speaking to the camera.\", \" Several close ups of makeup is shown and leads into the woman putting the makeup onto another.\", \" She then presents the makeup and leads into her speaking to the camera.\"]}, \"v_QKEFacWrn_8\": {\"duration\": 134.54, \"timestamps\": [[0, 19.51], [20.18, 35.65], [36.32, 82.74], [83.41, 127.14], [69.29, 71.98]], \"sentences\": [\"People are on front a board in a park holding bowling pins.\", \" A man is in a skateboard track, then he throws a bowling ball that goes around and hits the pins.\", \" Then, people talks in a bowling center, wile males trowing bowling bowls.\", \" After, a man interview a male using a microphone.\", \" A man is in skateboard track watching bowling ball flying in the air.\"]}, \"v_y3xcwZpcLvI\": {\"duration\": 59.54, \"timestamps\": [[0, 59.54], [20.24, 59.54]], \"sentences\": [\"A gymnast does a routine on the balance beam.\", \"  A few flips and turns are made before the girl dismounts and another walks on.\"]}, \"v_zL7Rz4I8UyA\": {\"duration\": 27.56, \"timestamps\": [[0.41, 14.88], [13.51, 26.87]], \"sentences\": [\"A man is seen hosting a news segment that leads into several people riding around on horses.\", \" The men continue playing and lead into the players standing next to one another and going back to the news segment.\"]}, \"v_fU4EgYmISro\": {\"duration\": 32.16, \"timestamps\": [[0.8, 9.33], [8.84, 22.83], [20.26, 30.55]], \"sentences\": [\"A small group of people are seen standing around a gym holding tennis rackets.\", \" The group then begin playing a game of badminton with one another.\", \" The group continue to hit the birdie back and fourth to one another while the camera watches.\"]}, \"v_YzcgGHmfaKE\": {\"duration\": 162.98, \"timestamps\": [[0, 3.26], [4.07, 13.85], [14.67, 162.98]], \"sentences\": [\"A title screen with \\\"Youth Women's Final\\\" appears.\", \" Two youth teams play soccer on an indoor field.\", \" Numerous highlight clips of the game action are shown.\"]}, \"v_UuLBAMSmwgc\": {\"duration\": 189.27, \"timestamps\": [[0.95, 60.57], [28.39, 156.14], [90.85, 189.27]], \"sentences\": [\"Two men are seen playing a game of fooseball outside with one another with a boy in the background.\", \" The camera pans around the table as the men continue to play as well as watch others around them.\", \" The men move the poles all around and kick the ball with their players.\"]}, \"v_g4uvBcIE1Os\": {\"duration\": 28.98, \"timestamps\": [[0, 15.94], [15.79, 28.98]], \"sentences\": [\"A large group of people are seen sitting in tubes followed by riding up a side and a boy riding down the hill.\", \" The camera follows the boy riding down the hill as well as the camera man and the boy spinning around.\"]}, \"v_jelxK3R-heg\": {\"duration\": 18.02, \"timestamps\": [[0, 7.12], [5.41, 17.75]], \"sentences\": [\"A man is seen holding a leave blower in their hands and blowing leaves around the yard.\", \" A small child watches the person blow leaves around as the person continues to push the machine around the yard.\"]}, \"v_stVRtmxHVaE\": {\"duration\": 234.29, \"timestamps\": [[3.51, 135.89], [94.89, 228.43]], \"sentences\": [\"A camera is shown walking all around a roof with a hand appearing every once in a while to touch the roof.\", \" the person then dips a stick into black ink and continues to touch around the roof while looking with the camera.\"]}, \"v_RVbejE3s3m4\": {\"duration\": 38.78, \"timestamps\": [[0.39, 15.32], [12.41, 38]], \"sentences\": [\"A hand is seen laying on a table with a person behind them grabbing objects and moving in fast motion.\", \" The person paints the nails of the other and shows off the nails while moving in fast motion.\"]}, \"v_fs8yU4pBNm4\": {\"duration\": 21.5, \"timestamps\": [[0, 8.92], [10.21, 21.5]], \"sentences\": [\"A large group of kids are seen standing around a classroom while two boys hold up another boy by his legs.\", \" They flip the boy onto the table and the camera pans around to a person's feet.\"]}, \"v_GkwkHQJifDU\": {\"duration\": 63.69, \"timestamps\": [[0, 31.85], [33.12, 63.69]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her walking up and down the board.\", \" She then stands on top of the beam while speaking to the camera continuously.\"]}, \"v_cT4EquMmRiw\": {\"duration\": 176.82, \"timestamps\": [[8.84, 81.34], [7.96, 22.1], [20.33, 78.68], [32.71, 45.09], [40.67, 65.42], [61.89, 83.11], [81.34, 112.28], [109.63, 130.85], [125.54, 158.25], [154.72, 175.94]], \"sentences\": [\"There's a group of adults and kids kayaking through the river.\", \" The ladies and children are getting ready to enter the kayak with the oars in their hands.\", \" They begin kayaking through the water as every member uses their oars to sail the boat.\", \" They duck down as they go under a low clearance bridge.\", \" Then they rise up again and continue sailing till they have to duck down again to avoid another bridge.\", \" They pass by other people on kayaks as they sail along.\", \" Then they get off the kayaks and stand on the river banks to look over the river.\", \" A little girl use binoculars to get a better view of the river.\", \" Then get back on the kayaks and sail on further.\", \" They reach a picnic spot where the little girls enjoy themselves on hammocks.\"]}, \"v_j2ESEJmy7aA\": {\"duration\": 75.07, \"timestamps\": [[0.38, 20.64], [18.77, 58.93], [48.8, 72.82]], \"sentences\": [\"A close up of a plane is seen followed by a woman sitting behind a desk and another speaking to the camera.\", \" The woman continues speaking as well as showing shots of dogs being groomed.\", \" The people rub down the dogs with a towel while still looking at the camera.\"]}, \"v_WU4ISFy651Y\": {\"duration\": 156.81, \"timestamps\": [[0, 29.01], [29.01, 83.89], [83.11, 123.09], [123.88, 150.53], [150.53, 156.81]], \"sentences\": [\"A woman with a white apron and pink shirt appears in a kitchen and begins talking.\", \"After,the counter is shown and there is a cut out tulip in cookie dough.\", \"She then grabs a stick and places it in the middle.\", \"Once the stick is in,she adds a piece of cookie dough to the back to make sure the stick is in place and begins talking.\", \"The screen flips and the cookies are cooked and the final product of the stick in the flower is shown.\"]}, \"v_1NAlbF88oUI\": {\"duration\": 64.65, \"timestamps\": [[0, 64.65], [20.04, 37.82], [50.1, 64.65]], \"sentences\": [\"A referee is standing behind a table.\", \" Two men are arm wrestling on a table.\", \" A man in a blue shirt is taking a picture of them.\"]}, \"v_4mBVik8dq_w\": {\"duration\": 23.04, \"timestamps\": [[0, 23.04], [3.57, 8.75], [20.04, 23.04]], \"sentences\": [\"A man is mowing his lawn with a little boy.\", \" They turn around and come towards the camera.\", \" The dad exits the camera and we see the boy pushing his mower.\"]}, \"v_PJgy8J1f3jg\": {\"duration\": 186.02, \"timestamps\": [[0, 85.57], [54.87, 133], [105.1, 183.23]], \"sentences\": [\"A camera pans all around a paintball course and shows a person aiming off into the distance.\", \" More people are seen walking around with gear on and aiming guns.\", \" People gesture to themselves and continue to aim off in the distance and run around.\"]}, \"v_iAQY-FHckIM\": {\"duration\": 75.84, \"timestamps\": [[0, 36.78], [36.02, 75.84]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her putting a contact lens into her eyes.\", \" She does this to both eyes and then looks at the camera smiling.\"]}, \"v_2AE847UXu3Q\": {\"duration\": 121.37, \"timestamps\": [[0, 7.28], [7.89, 33.38], [33.38, 84.96], [84.96, 121.37]], \"sentences\": [\"A man in a button down blue shirt and red tie is sitting in a chair playing with his hair.\", \"Then, a woman comes in and squats in front of him giving him a comb as he continues to play with hair.\", \"After,the woman stands up,sprays his hair and begins to style it with her fingers moving it to the left of his face.\", \"When she is finished,the man holds up a compact mirror in his hand to mak sure everything is okay as he runs his fingers through his hair.\"]}, \"v_9VRLj4IfUzY\": {\"duration\": 214.41, \"timestamps\": [[0, 61.11], [48.24, 158.67], [119, 205.84]], \"sentences\": [\"A woman is seen sitting on the floor speaking to the camera and holding up paint and a brush.\", \" She continues speaking while dipping the brush in paint and painting along a cabinet behind her.\", \" She continues brushing the paint over the cabinet as well as rubbing it with a large cloth and her hand.\"]}, \"v_PqcdYoa--8g\": {\"duration\": 91.56, \"timestamps\": [[0, 15.11], [15.56, 26.55], [27.01, 57.22], [63.17, 82.4]], \"sentences\": [\"A person puts oil, salt and pasta in a pot with hot water.\", \" Next, the person adds garlic to a pan with oil and stir it with a wooden spoon.\", \" Then, the person adds butter and stir, after he add wine and the cooked pasta.\", \" The person puts pepper, herbs and Parmesan on top the part and stir the mix, then he serves the pasta on a dish with a piece of meat.\"]}, \"v_hz0W27EwjQ8\": {\"duration\": 238.73, \"timestamps\": [[0, 7.16], [7.16, 58.49], [58.49, 144.43], [144.43, 238.72]], \"sentences\": [\"A black intro screen appears and a small blue banner appears with the name \\\"Katie Will\\\" is on it.\", \" There are women dressed in two piece bikinis and they are playing a game of volleyball in the sand at a beach on a day that has a blue sky.\", \"Now there are women playing sand volleyball at a different location and they are closer to a lot of buildings and on this day it has a very gloomy with a foggy sky.\", \"The women back at a beach on a sunny day with a blue sky and are playing volleyball next to other people playing volleyball as well as people around them watching.\"]}, \"v_PLek2e8NlKc\": {\"duration\": 184.6, \"timestamps\": [[0, 4.61], [4.61, 82.15], [45.23, 58.15], [83.07, 85.84], [85.84, 148.6], [148.6, 184.6], [152.29, 166.14]], \"sentences\": [\"We see the blue opening screen.\", \" A lady is guiding a young lady through an exercise.\", \" The girl sits down, then gets on one knee and sits back down.\", \" We see a title screen on beige.\", \" The lady gets up from the floor slowly with instructions on the screen.\", \" The lady is sitting on a table and shoes how to sit, and stand slowly holding your abdomen.\", \" The couple behind the lady laugh.\"]}, \"v_e4AIrRnWakA\": {\"duration\": 203.13, \"timestamps\": [[0, 22.34], [18.28, 156.41], [151.33, 203.13]], \"sentences\": [\"Various pictures of a child smoking and cigarettes are shown, followed by a man speaking to the camera and kids smoking cigarettes.\", \" Several shots of kids smoking are shown as well as city areas, and followed by a man wearing glasses speaking to the camera.\", \" More pictures are shown and followed by the man speaking and more kids smoking.\"]}, \"v_QuEHZ2Y3H40\": {\"duration\": 107.11, \"timestamps\": [[0, 31.6], [30.53, 53.02], [65.88, 75.52]], \"sentences\": [\"A person is surfing on a wave in the water.\", \" People are swimming under the water.\", \" A woman surfs on a yellow surf board.\"]}, \"v_PwyvQ3BKziA\": {\"duration\": 91.02, \"timestamps\": [[3.64, 91.02], [0, 91.02]], \"sentences\": [\"The video gives eight tips to properly wash your face and fight acne.\", \"  All of the video is text next to an unmoving picture of a woman.\"]}, \"v_HtCQ-OmHJl4\": {\"duration\": 7.41, \"timestamps\": [[0, 2], [2.07, 5.15], [5.07, 7.41]], \"sentences\": [\"A man is waving his hands over his head while swinging a hammer.\", \" The man then spins his whole boy and throws the hammer.\", \" The man stands and looks at the hammer.\"]}, \"v_Xrjkjz1l4qw\": {\"duration\": 15.09, \"timestamps\": [[0, 1.89], [2.19, 13.66], [13.96, 15.09]], \"sentences\": [\"a man is sitting in front of  a timer.\", \" When it starts, he grabs a rubik's cube and solves the puzzle in only twelve and a half seconds.\", \" He puts the cube back down.\"]}, \"v_JRs2MpyP0SQ\": {\"duration\": 106.21000000000001, \"timestamps\": [[0, 16.99], [18.06, 103.55], [45.67, 97.71], [104.62, 106.21]], \"sentences\": [\"A tv host talks about a bowling match.\", \" Men on different teams bowl during a competition at a bowling ally.\", \" Men give interviews during the bowling competition.\", \" The tv host closes the story.\"]}, \"v_ND9mMyNjm5M\": {\"duration\": 78.09, \"timestamps\": [[0, 4.69], [4.69, 8.59], [8.59, 44.51], [44.12, 59.74], [60.13, 64.03], [64.42, 67.55], [72.23, 74.97], [72.23, 78.09]], \"sentences\": [\"A blond girl dressed in a blue hoodie grooms a black horse.\", \" The blond girl brushes the horse vigorously with a brown hand brush.\", \" The blond girl wipes down the black horse with a blue wipe brush removing excess hair switching back and forth to different brushes.\", \" The blond groomer wipes down the black horse with a striped cloth.\", \" The blond groomer proceeds to brush the horses legs.\", \" The groomer cleans the horses hooves with a pick and brush.\", \" The groomer brushes the horses tail.\", \"The groomer brushes the horses mane.\"]}, \"v_AISkvED80lU\": {\"duration\": 175.45, \"timestamps\": [[0, 164.92], [0, 1.75], [5.26, 7.9], [9.65, 32.46], [35.09, 41.23], [41.23, 86.85], [50, 108.78], [106.15, 121.06], [130.71, 143.87]], \"sentences\": [\"The video shows clips of various fails in athletics where people fall through mistakes and hurt themselves accidentally.\", \" There are three girls on a field where on slips and falls.\", \" Another set of people hurt themselves when one person does a wrong back flip and falls.\", \" Cheerleaders practicing in a gym fall down when another person comes running and bumps into them.\", \" Cheerleader in a field have an accidental fall.\", \" Another group of cheerleader practicing indoors also fall to the ground when they lose balance.\", \" There are some more groups of cheerleader who face mishaps and fall down on each other.\", \" One of the cheerleader is lifted up high by her group but falls down on them when she lands on the ground.\", \" Another cheerleader wearing black does a wrong back flip and falls on her back, but gets up right away.\"]}, \"v_1qU2CdUQbw0\": {\"duration\": 215.39, \"timestamps\": [[0, 9.69], [17.23, 140], [143.23, 171.23], [172.31, 215.39]], \"sentences\": [\"A woman is running on a beach.\", \" Then she is shown in a gym, jumping rope amongst boxing bags and jumping on a tire.\", \" She uses the punching bags, does push up with an exercise ball, and performs kickboxing in a ring with a trainer.\", \" She is then shown in numerous poses in a bikini, as well as praying and meditating.\"]}, \"v_-uR5-jYe0Ag\": {\"duration\": 33.28, \"timestamps\": [[1, 7.65], [7.65, 9.65], [9.65, 33.28]], \"sentences\": [\"This woman is shown putting on her makeup while looking in the mirror.\", \" First she makes her eyes up and winks at the camera.\", \" Then she says something and turns back around to do what she was doing.\"]}, \"v_SvDnZ47J37U\": {\"duration\": 55.13, \"timestamps\": [[0, 4.69], [5.24, 46.58], [46.58, 55.13]], \"sentences\": [\"A group of girls are on a field.\", \" They are playing cricket, hitting a ball back and forth, and trying to keep it from their opponents.\", \" A dog runs onto the field and falls over, and the girls run over to the pet him before a couple of boys appear to carry the dog off the court.\"]}, \"v_PjcTk1hcf4k\": {\"duration\": 183.25, \"timestamps\": [[0, 62.31], [43.98, 131.03], [104.45, 174.09]], \"sentences\": [\"Two women are seen speaking to the camera while various decorations are sitting inbetween them.\", \" A girl is shown speaking to the camera and begins pointing to a tree.\", \" She than hangs ornaments on the tree and leads back into the women speaking.\"]}, \"v_r6z6Ct16I_8\": {\"duration\": 66.15, \"timestamps\": [[0, 37.71], [25.8, 66.15]], \"sentences\": [\"A young girl is shown painting the toe nails of person and looking back and fourth between the camera and the nails.\", \" The girl speaks to the camera while looking off into the distance and continues painting the toe nails.\"]}, \"v_TcrLMpMA1WM\": {\"duration\": 91.44, \"timestamps\": [[0, 15.09], [15.09, 41.15], [41.15, 58.52], [58.52, 91.44]], \"sentences\": [\"The man is hunched over on the the ground trying to build a fire by himself.\", \" It's all about adding oxygen at the right time once you have started a nice fire.\", \" Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it will help bring it back up .\", \" With a pocket bellow even when its wet it will still build a fire really well back up it just takes more time and patience.\"]}, \"v_MxKuqpxmKKk\": {\"duration\": 180.36, \"timestamps\": [[0, 95.59], [67.64, 180.36]], \"sentences\": [\"A camera pans around a large olympic arena and then leads into a show of an athlete throwing a shot put.\", \" Several shots are shown of athletes throwing a shot put followed by their thrown being shown again in slow motion.\"]}, \"v_AFb77tjPuwQ\": {\"duration\": 238.84, \"timestamps\": [[5.97, 22.69], [27.47, 231.68], [119.42, 126.59], [152.86, 158.83], [177.94, 187.49], [201.82, 216.15]], \"sentences\": [\"A man prepares a croquet course in a grassy area by setting up poles and gates.\", \" People play croquet in the field.\", \"A man hits a long shot down a slope.\", \" A wedding procession walks though the field.\", \" A man hits the ball through multiple gates in a row and finally hits the post.\", \" A man receives a trophy from teammates.\"]}, \"v_1IhbkbuDPpc\": {\"duration\": 103.03, \"timestamps\": [[0.52, 49.97], [29.36, 82.94], [82.94, 102]], \"sentences\": [\"A small group of people are seen lifting a large object into the back of a van and close ups of them and a building.\", \" The people are seen riding around a large gymnasium on roller blades performing various flips and tricks.\", \" The boys continue skating around and interacting with one another and performing impressive tricks.\"]}, \"v_w1VJnYDYYY0\": {\"duration\": 33.41, \"timestamps\": [[0, 0.5], [0.67, 19.21], [19.38, 25.9], [26.23, 32.08]], \"sentences\": [\"A young man ring a flat bell on front a ping pong table.\", \" The young man and person move around the ping pong racket.\", \" Then, the young man serves the ball and both start to play.\", \" After, the person hit a ball to the window and brakes the glass.\"]}, \"v_E2NKQZNMAO0\": {\"duration\": 197.0, \"timestamps\": [[0, 38.41], [41.37, 179.27], [181.24, 197]], \"sentences\": [\"A man in a black robe is doing martial arts before a crowd.\", \" Several clips are shown of martial artists.\", \" They are doing various moves, kicks, and sticks.\"]}, \"v_Tab-dSCaMC8\": {\"duration\": 74.3, \"timestamps\": [[0, 50.9], [50.53, 74.3]], \"sentences\": [\"woman is standing in front of a horse in a barn holding a brush and start combing the horse.\", \" woman hold the horse paw and cleans the horseshoe.\"]}, \"v_OyKEEws65l8\": {\"duration\": 104.97999999999999, \"timestamps\": [[0, 9.45], [9.45, 51.96], [54.59, 104.98]], \"sentences\": [\"A woman is seen climbing onto a camel and smiling into the camera while men stand behind her and watch.\", \" The camel stands up and walks around a sandy area while the woman hangs on tight.\", \" The camera zooms in on the camel's face and lays down while the man grabs him and the woman climbs off.\"]}, \"v_lEGetBydfl4\": {\"duration\": 16.86, \"timestamps\": [[0, 14.16], [14.08, 14.58], [14.67, 16.86]], \"sentences\": [\"A man is axing a tree trunk.\", \" The man succeeds and the trunk cuts in half.\", \" The man stands straight and stops.\"]}, \"v_U0d68z5HTwE\": {\"duration\": 127.39, \"timestamps\": [[0, 14.01], [14.01, 33.76], [33.12, 42.04], [42.04, 58.6], [57.96, 78.34], [78.34, 101.27], [102.54, 127.39]], \"sentences\": [\"Three black and white chocolate crinkles are places on a small blue saucer.\", \"In a large clear bowl,the ingredients of the chocolate mix,sugar,and oil are placed in a bowl and stirred together.\", \"Then comes the eggs and some one begins to blend it together.\", \"In another bowl,a nice proportion of flour is whisked and then poured in the bowl with the other mix.\", \"Finally,siram wrap is placed over the bowl and put into the oven at 350.\", \"On a baking pan, a sheet of paper baking paper is placed on the pan and scoops of the chocolate are made and rolled into the the flour.\", \"The final product is then made and positioned on a cooling rack.\"]}, \"v_un6VqJYUpDo\": {\"duration\": 109.6, \"timestamps\": [[0, 23.02], [24.11, 69.05], [70.14, 73.98], [74.53, 86.58]], \"sentences\": [\"The history of the squeegee is briefly presented as well as a preferred package system of window washing products and a man using those products.\", \" Products involving window washing, such as a window washer, squeegee soap and a squeegee are shown, as well as a window washer using those products when washing a window.\", \" A product with a secure click lock is advertised.\", \" The man window demonstrates the use of the secure click lock product when washing a window.\"]}, \"v_U9Dcet1qdRE\": {\"duration\": 29.33, \"timestamps\": [[0, 4.99], [4.99, 14.96], [14.96, 19.94], [20.09, 21.56], [21.85, 29.33]], \"sentences\": [\"We see a man bending over a large weight and it states it's 160 kg on the screen.\", \" The man picks the weight up to his shoulder.\", \" The man lifts the weight over his head.\", \" The man drops the weight to the ground.\", \" We see the colorful ending title screen.\"]}, \"v_C8IHSB9mfeE\": {\"duration\": 34.2, \"timestamps\": [[0, 33.69], [3.08, 15.39], [14.71, 34.2]], \"sentences\": [\"A balded man is seen throwing a dart onto a board down in a white room.\", \" He throws several more darts and then walks over the board and grabs the darts.\", \" He aims and throws more darts and walks over one more time looking back at the camera.\"]}, \"v_R8WbSI3m1lI\": {\"duration\": 99.66, \"timestamps\": [[0, 29.4], [33.39, 84.71], [87.2, 99.66]], \"sentences\": [\"A man is skating on inline roller skates amongst a crowded shopping area as other people are walking.\", \" Several people stop to interview, talking to the camera and a person with a microphone.\", \" The man is again shown skating interspersed with people talking.\"]}, \"v_mFDC1CLt6B4\": {\"duration\": 74.93, \"timestamps\": [[0, 11.61], [14.24, 45.71], [49.83, 74.93]], \"sentences\": [\"A group of dirt bikers are at the top of a hill.\", \" The gate opens, and they begin to race.\", \" They  race around the track and over numerous hills.\"]}, \"v_s04x6lhUmtY\": {\"duration\": 63.76, \"timestamps\": [[0, 7.97], [7.65, 42.08], [42.4, 63.76]], \"sentences\": [\"A blue slack line is attached to two trees outside in an open field.\", \"On the line,there is a man bouncing up and down while standing on the line before he gets off.\", \"After,more Cobra Slacklines are shown as well as other advertisements for the object.\"]}, \"v_RpB5_XYoYhk\": {\"duration\": 63.48, \"timestamps\": [[0, 63.48], [14.28, 63.48]], \"sentences\": [\"A woman in a pink shirt is standing behind a counter.\", \" She starts wrapping a present using a tape gun.\"]}, \"v_32z1yiC0Co0\": {\"duration\": 192.52, \"timestamps\": [[3.85, 188.67], [3.85, 14.44], [24.06, 51.98], [51.02, 125.14], [125.14, 179.04]], \"sentences\": [\"A group of woman run an outdoor marathon.\", \"  A group of women in \\u201cFAB 50\\u201d neon green t-shirts is shown at an outdoor event with tents at night.\", \"  A large group of women and a few men are then shown jogging past a start line in an outdoor marathon.\", \"  A series of still shots then display of the women, and some men, at various stages of the marathon running, breaking smiling and laughing, many while wearing the \\u201cFab 50\\u201d t-shirt.\", \"  The last few still shots are of women throwing their arms up in victory and taking one last posed, group shot.\"]}, \"v_nrh2jDsmeLQ\": {\"duration\": 226.21, \"timestamps\": [[1.13, 107.45], [92.75, 221.68]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her holding up various ingredients and mixing them into a blender.\", \" She peels out more ingredients and blends them together, finally pouring it on the mixture and taking a bite.\"]}, \"v_ylo_0z8si1g\": {\"duration\": 163.75, \"timestamps\": [[4.91, 30.29], [31.93, 130.18], [131.82, 162.11]], \"sentences\": [\"A blonde and a brunettes women enter a building and talk in the hallway.\", \" Then, the brunette and a lady wears saris, then do belly dance while the blonde woman explains on front.\", \" Other women join the belly dance and move their hips, then the blonde talks to the dancers.\"]}, \"v_OYIAhO9nJmk\": {\"duration\": 139.74, \"timestamps\": [[0, 2.1], [2.79, 51.7], [52.4, 139.74]], \"sentences\": [\"A wide shot of a studio with judges and an audience.\", \" Men holding drums perform a song on stage at \\\"Belgum's Got Talent\\\".\", \" Some of the men drop their drums and do acrobatics and fighting on stage.\"]}, \"v_GxSh-XQhIjU\": {\"duration\": 233.82999999999998, \"timestamps\": [[2.34, 134.45], [148.48, 227.98]], \"sentences\": [\"A large group of people are seen playing a lacrosse game with one another as the camera pans around them running up and down the field.\", \" The girls continue to play with one another and end by walking away off the field.\"]}, \"v_TfpCjzGqA7w\": {\"duration\": 26.29, \"timestamps\": [[0, 26.29], [0.13, 25.63]], \"sentences\": [\"a little kid in a princess costumbe is holding a pink pole hiting a pi\\u00f1ata.\", \" people are sitting in chairs around a table watching the girl.\"]}, \"v_8nQGd6hiduA\": {\"duration\": 167.77, \"timestamps\": [[0, 119.11], [119.95, 167.77]], \"sentences\": [\"A man holds a tennis racket and two tennis balls.\", \" He serves the ball several times.\"]}, \"v_ipcvgAb5y0U\": {\"duration\": 86.03, \"timestamps\": [[0, 8.17], [8.17, 17.21], [17.64, 25.38], [25.81, 56.35], [56.35, 86.03]], \"sentences\": [\"A piece of meat if being taken off of a plate and laid down on a flat surface.\", \"The meat is then cut up into several pieces and seasoned with wine.\", \"The person then sticks the meat on a skewer and fries it.\", \"After, a cheese grater is present and the person begins to grate carrots and cut tomatoes and puts them all in a bowl together.\", \"As the meat is cooking,bread is laid on a table and the meat is placed inside as well as all of the ingredients that were chopped up for it and is ready to be served.\"]}, \"v_pmlK-IV4vko\": {\"duration\": 19.97, \"timestamps\": [[0, 6.19], [6.09, 7.99], [7.89, 13.28], [13.48, 19.97]], \"sentences\": [\"A male athlete holding a long pole runs toward a high bar inside a gym.\", \" The video begins to go in a slow motion pace as the man gets ready to perform the vault.\", \" The pole is stuck into the ground and forms a semicircle with the man holding on as it springs him upward.\", \" The guy goes over the bar and falls safely to the mat below.\"]}, \"v_vynLNpomc30\": {\"duration\": 64.85, \"timestamps\": [[2.59, 31.13], [25.29, 61.61]], \"sentences\": [\"A small group of people are seen standing on a stage playing instruments and wearing scotsman uniforms.\", \" The people continue playing with one another and move to the center of the stage.\"]}, \"v_uxMOn-NmmZo\": {\"duration\": 91.67, \"timestamps\": [[0, 22.92], [24.29, 68.75], [51.34, 89.38]], \"sentences\": [\"A close up of a log is seen with a person's hand pointing down.\", \" The person then begins putting leaves and sticks onto the log and lighting a match.\", \" The person puts the match into the pile and lights a small fire.\"]}, \"v_2uBPhFis_4Y\": {\"duration\": 48.74, \"timestamps\": [[0, 24.13], [24.61, 48.74]], \"sentences\": [\"A man is seen sitting behind a set of bongo drums playing continuously while people walk behind him.\", \" The man continues to play as others stop to watch.\"]}, \"v_o-RbNz6gD5k\": {\"duration\": 41.33, \"timestamps\": [[0, 3.1], [5.79, 27.49], [28.52, 41.33]], \"sentences\": [\"A man is using a robotic machine to play table tennis.\", \" Another man stands at the end of the table.\", \" The man and the machine hit the ball back and forth.\"]}, \"v_7mmXZeOJT8w\": {\"duration\": 29.86, \"timestamps\": [[0, 29.86], [1.49, 23.14], [23.44, 29.86]], \"sentences\": [\"A boy wearing glasses is sitting down.\", \" Someone is brushing his teeth with a toothbrush.\", \" They take the toothbrush out of his mouth.\"]}, \"v_6NqS3vYvf6Q\": {\"duration\": 154.9, \"timestamps\": [[1.55, 64.28], [45.7, 117.72], [85.97, 146.38]], \"sentences\": [\"A woman is seen speaking to the camera while showing her standing next to horses.\", \" She continues to speak while pointing to a person sitting on a horse.\", \" The woman rides the horse around the area and the camera follows the horse riding around.\"]}, \"v_UmH4VPH0KG4\": {\"duration\": 57.63, \"timestamps\": [[0, 34.58], [34.58, 37.46], [37.46, 51.87], [55.04, 57.63]], \"sentences\": [\"A person is welding something together while wearing a mask and gloves.\", \" They finish and lift their mask up.\", \" It shows the person talking.\", \" The camera turns around and shows a tree.\"]}, \"v_24vWSTx6N5M\": {\"duration\": 20.23, \"timestamps\": [[0, 4.45], [4.65, 10.62], [10.62, 15.07], [15.57, 20.23]], \"sentences\": [\"There are three kids are at the park having a good time together.\", \" They are all on a tire swings building up their speed.\", \" They spin pretty quickly in circles on the tire swing together.\", \" They never really slow down or stop they just continue to spin the entire time.\"]}, \"v_8bppcsg07Rc\": {\"duration\": 177.1, \"timestamps\": [[0, 177.1], [0, 15.05], [15.05, 177.1]], \"sentences\": [\"This video shows 9 different ways humans can do the monkey bars.\", \" This woman is wearing a tank top, leggings, and gym shoes and she does it the regular way first.\", \" Next she does many different things on the monkey bars such as sit-ups, pull-ips, and other things.\"]}, \"v_2XOTxAZZhsQ\": {\"duration\": 58.84, \"timestamps\": [[0, 14.71], [14.42, 43.25], [43.84, 58.84]], \"sentences\": [\"A girl with a long pony tail is in the kitchen cleaning up the dishes and talking.\", \"She then grabs a pan and walks to throw something in the trash.\", \"After,a stove is shown while something is boiling and several people are sitting at the table doing homework.\"]}, \"v_yToUeIIlkOg\": {\"duration\": 190.47, \"timestamps\": [[2.86, 15.24], [44.76, 48.57], [53.33, 64.76], [70.48, 71.43], [108.57, 110.47], [172.38, 173.33]], \"sentences\": [\"The woman is shown scooping toppings out of the toppings bar and putting them onto the grill.\", \" She starts to move them around on the grill using her spatula.\", \" Then she takes a little bit of sauce from a jar and puts it on the toppings.\", \" Next she puts vegetables on the plate and adds more stuff to the grill.\", \" Then she puts oil around the bread she has self made on the grill and she puts everything that was on the grill onto the sandwich.\", \" She is now done and it's ready to get served to someone.\"]}, \"v_KzVRgHnpCOQ\": {\"duration\": 142.36, \"timestamps\": [[6.41, 72.6], [64.06, 139.51]], \"sentences\": [\"A woman is seen sitting on the floor next to a pair of ballet shoes and begins taping up her feet.\", \" The woman then puts pads on her feet as well as the ballet shoe and then ties them around in a certain order, pointing her feet in the end.\"]}, \"v_kh42ufAYMZQ\": {\"duration\": 147.07999999999998, \"timestamps\": [[0, 56.62], [56.62, 121.34], [121.34, 147.08]], \"sentences\": [\"A cat is behind held by a woman as she takes out a pair of clippers and cuts her nails.\", \"The cat is then laid down across her lap and she starts to clip the bottom paws.\", \"She is finally finished,and starts to mess with the cat and the cat tries to bite her.\"]}, \"v_Qci4EFEIZuo\": {\"duration\": 57.24, \"timestamps\": [[0, 26.62], [26.9, 43.21], [43.79, 57.24]], \"sentences\": [\"A large band's drum line is dressed in a a green shirt and black pants are outside in a small field of grass practicing.\", \"The band continues to play and then the four people with the cymbals stop playing and begin to turn around as the band continues to play.\", \"After a few measures,they turn around and continue to play with the rest of the band.\"]}, \"v_b380n1dci9I\": {\"duration\": 58.91, \"timestamps\": [[0, 5.89], [6.19, 27.98], [32.99, 58.91]], \"sentences\": [\"A group of dirt bikers are prepared at the gate.\", \" The gate opens, and they take off.\", \" They go over hills and around curves trying to win the race.\"]}, \"v_tnB7LNIcXC0\": {\"duration\": 115.68, \"timestamps\": [[0, 72.88], [63.05, 115.68]], \"sentences\": [\"A close up of a roof is shown following by a man spraying down a roof with paint.\", \" Several shots are shown of the man spraying paint while the camera pans around him from various angles.\"]}, \"v_tCQiu-qY9XA\": {\"duration\": 71.31, \"timestamps\": [[0, 9.98], [11.41, 71.31]], \"sentences\": [\"An image is shown of people playing tennis.\", \" Two women are on a tennis court, showing the technique to posing and hitting the ball.\"]}, \"v_r9eXOf4hvCE\": {\"duration\": 68.15, \"timestamps\": [[0, 33.73], [33.05, 51.11], [51.45, 68.15]], \"sentences\": [\"Several men are shown in various location lifting them selves up in a planking position on two bars.\", \"One boy appears in the gym and does his backwards on the elliptical as he does multiple lift ups.\", \"As he is doing them, he concentrates extremely hard on holding his feet up ensuring that he doesn't hit the boxing bag in front of him.\"]}, \"v_oUQPIZu5bVU\": {\"duration\": 113.64, \"timestamps\": [[6.25, 8.52], [6.25, 113.64], [94.32, 95.46], [102.84, 103.98]], \"sentences\": [\"Men are playing bagpipes in a line.\", \" Players are running around on the field playing sports.\", \" A team groups together holding a trophy.\", \" The team shakes hands with the opposing team.\"]}, \"v_RYJ3yzxZB8k\": {\"duration\": 154.32, \"timestamps\": [[0, 27.78], [30.86, 125.77], [125.77, 154.32]], \"sentences\": [\"A man is seen breaking dancing in front of the camera while another man speaks in between.\", \" The two men are then seen speaking to the camera and one begins demonstrating how to properly perform a break dancing move.\", \" The men continue demonstrating various moves while speaking to the camera intermittently.\"]}, \"v_9bERRZ2eTbo\": {\"duration\": 113.89, \"timestamps\": [[2.28, 43.28], [46.7, 93.39], [86.56, 110.48]], \"sentences\": [\"A man is seen pouring water out into a measuring cup followed by pouring it into a large container and repeating several more times.\", \" The man then puts lemonade mixture into the large container and stirs it around.\", \" The man is then seen wandering around the kitchen as well as pouring himself a glass.\"]}, \"v_RF0ChBe9HHI\": {\"duration\": 82.4, \"timestamps\": [[0, 6.18], [11.95, 68.39], [69.21, 82.4]], \"sentences\": [\"A band is playing and lights are flashing on a stage.\", \" A band is shown on stage, and a man is quickly playing a violin.\", \" The other instruments are played as the focus remains on the violin.\"]}, \"v_KGTPkiDRpfE\": {\"duration\": 40.22, \"timestamps\": [[0, 11.86], [0, 40.22], [19.91, 40.22]], \"sentences\": [\"people are standing in a lakeside praticing how to use the rows standing next to kayaks.\", \" people on the lake is kayaking slowy.\", \" people on the lakeside sits on the kayak and get into water.\"]}, \"v_aa0MLYA8F7s\": {\"duration\": 90.33, \"timestamps\": [[0, 46.07], [42.45, 90.33]], \"sentences\": [\"Various pictures of gymnasts are seen followed by a woman performing a routine on a set of uneven bars.\", \" The woman continues flipping and jumping around and ends with her jumping down and waving to the camera.\"]}, \"v__RCe4Q0p1aA\": {\"duration\": 89.57, \"timestamps\": [[0, 12.99], [12.54, 38.07], [38.52, 50.61], [51.5, 55.54], [55.98, 56.88], [56.43, 89.57]], \"sentences\": [\"A man walks out in front of a weighted barbell.\", \" The man prepares to lift the weight.\", \" The man lifts the weight to his chest.\", \" The man lifts the weight above his head.\", \" The man drops the weight.\", \" A slow motion replay of the man's effort is played.\"]}, \"v_Irg5qYkjJoY\": {\"duration\": 198.35, \"timestamps\": [[58.51, 148.76], [97.19, 148.76], [129.92, 148.76]], \"sentences\": [\"two men stand on top of the roof and they look down.\", \" One man gets on the rope and stands up.\", \" He then starts to walk and makes it all the way across the rope to the other side.\"]}, \"v_LcXB-fSLTKY\": {\"duration\": 151.23, \"timestamps\": [[5.29, 56.71], [56.71, 97.54], [135.35, 151.23]], \"sentences\": [\"A guy is trying to lite a pale of sticks in a round barrole.\", \"He finally gets the pale of sticks lite and as the fire grows the pale of sticks fall.\", \"the guy add sticks to keep the fire going.\"]}, \"v_QnQ2D-tJ9pM\": {\"duration\": 123.79, \"timestamps\": [[0, 11.76], [19.19, 85.41], [87.89, 123.79]], \"sentences\": [\"A boy is standing in the woods.\", \" He is using an ax to split wood.\", \" He swings the ax, and people next to him help build a fire.\"]}, \"v_7tlXgKBTD_0\": {\"duration\": 51.97, \"timestamps\": [[0, 24.68], [20.53, 51.97]], \"sentences\": [\"A woman is seen sitting on the ground while speaking to the camera and leads into her laying down.\", \" She then puts her feet up and then puts her hands under her butt, followed by her lifting her legs up.\"]}, \"v_qokr0bO828E\": {\"duration\": 188.85, \"timestamps\": [[0, 13.22], [15.11, 81.2], [83.09, 147.3], [145.41, 188.85]], \"sentences\": [\"A bald man is shown in his bathroom.\", \" He uses an electric razor to trim and shave his beard.\", \" He lifts the beard, trimming the underside as well.\", \" He grooms the beard, smoothing it with his hand.\"]}, \"v_TomBet77rDc\": {\"duration\": 46.19, \"timestamps\": [[0, 1.39], [6.93, 41.8], [41.1, 44.57], [45.03, 46.19]], \"sentences\": [\" A man puts chalk on his hands.\", \" He bends down and lifts a large weight over his head.\", \" He drops the weight down onto a mat.\", \" People watching him clap their hands.\"]}, \"v_gXp3KSWhf1g\": {\"duration\": 234.45, \"timestamps\": [[43.37, 46.89], [87.92, 211.01], [211.01, 234.45]], \"sentences\": [\"A man in yellow glasses takes a drink out of a water bottle.\", \" People are running across a finish line of a race.\", \" Someone puts a medal around another person's neck.\"]}, \"v_sMVf7HDvsEc\": {\"duration\": 168.88, \"timestamps\": [[0, 30.4], [30.4, 74.31], [74.31, 113.15], [113.15, 168.88]], \"sentences\": [\"A boy wearing glasses is putting together a christmas tree.\", \" His brother grabs a parrot from its cage, He puts the parrot on his hand and points to the star on the tree whenever he puts his hand out and another one flies towards him.\", \" He and his brother begin putting lights on and decorating the entire christmas tree.\", \" The birds seem like a very big part of the family and are very well trained.\"]}, \"v_DjT4-5H3xDQ\": {\"duration\": 105.53999999999999, \"timestamps\": [[0, 7.92], [8.44, 101.31], [101.84, 105.54]], \"sentences\": [\"A chef's knife is shown with the word \\\"Honing\\\" overlaid.\", \" A chef demonstrates how to sharpen a knife in a kitchen.\", \" A copyright screen appears with logos for \\\"Online Culinary School\\\" and \\\"911 Chef Eric\\\".\"]}, \"v_Jl2lDgcsvmA\": {\"duration\": 190.27, \"timestamps\": [[0, 58.03], [32.35, 190.27]], \"sentences\": [\"Still pictures of people standing and scattered in a wooden house.\", \" A man in white shirt stands in the field he rolled the pink ball and kids kicked the ball and other kids from opposite sides walked towards the woman.\"]}, \"v_Zxi0V2pBPlA\": {\"duration\": 122.37, \"timestamps\": [[0, 6.73], [10.4, 65.47], [70.97, 122.37]], \"sentences\": [\"A man is seated in a chair.\", \" Two women are spreading wax onto his legs.\", \" They then rip the wax off, removing the hair.\"]}, \"v_N2WxAkVh-C4\": {\"duration\": 177.59, \"timestamps\": [[0, 0.89], [1.78, 22.2], [23.09, 40.85], [41.73, 45.28], [46.17, 66.6], [67.48, 82.58], [83.47, 90.57], [91.46, 131.41], [132.3, 145.62], [146.51, 168.71]], \"sentences\": [\"A woman runs her fingers through her hair.\", \" She shows off two hair styling products she has and grabs the shampoo.\", \" She grabs the other product, a hair masque.\", \" She combs all of her hair.\", \" She shows off a spray she has and proceeds to spray her hair with it.\", \" She shows off a blow dryer and its attachments.\", \" She places one of the attachments on the blow dryer.\", \" She blow dryers her hair.\", \" She combs her newly styled hair.\", \" She arranges her hair around and shows off the styled hair.\"]}, \"v_0iIY3HLF3lU\": {\"duration\": 89.28, \"timestamps\": [[0, 22.32], [22.77, 74.55], [75, 89.28]], \"sentences\": [\"A person is seen riding a canoe down a river while the man is being interviewed by the camera intermittently.\", \" More shots of various people are shown riding canoes as well as a close up of a canoe and seat.\", \" More people are shown again riding around in canoes on the water.\"]}, \"v_Gfsk28SzgXk\": {\"duration\": 139.07, \"timestamps\": [[0, 33.38], [54.24, 118.9], [118.21, 139.07], [124.46, 129.33]], \"sentences\": [\"A man is sitting on a dock.\", \" A boat pulls a man up in the water.\", \" He begins water skiing in the water.\", \"  A large blue and yellow tube is shown.\"]}, \"v_YAiCO8en_ls\": {\"duration\": 216.41, \"timestamps\": [[0, 196.93], [10.82, 12.98], [88.73, 100.63], [188.28, 192.6], [199.1, 216.41], [212.08, 216.41]], \"sentences\": [\"A man is playing Frisbee with two small dogs.\", \" We see the second dog up close.\", \" One dog runs around the man while the second dog walks past.\", \" One dog jumps into the man's arms.\", \" The dogs fight over a Frisbee.\", \" The date appears on the screen.\"]}, \"v_8tddzer_NfY\": {\"duration\": 189.08, \"timestamps\": [[0, 14.18], [15.13, 20.8], [25.53, 137.08], [138.97, 189.08]], \"sentences\": [\"A young woman wearing a pink dress walks onto a gym floor.\", \" She poses with her baton, and begins dancing.\", \" She flips and spins the baton as she dances.\", \" She finishes with a graceful bow before leaving the gym.\"]}, \"v_B8imoIn6NUE\": {\"duration\": 124.51, \"timestamps\": [[0, 2.49], [3.11, 5.6], [6.23, 109.57], [110.19, 124.51]], \"sentences\": [\"A \\\"Devin Super Tramp\\\" logo appears on screen.\", \" An indoor skateboarding facility is shown with the pits filled with sky blue balloons.\", \"  Skateboarders roll through the balloons and up the walls.\", \"  A video subscription link and credits appear on screen.\"]}, \"v_uG_G4g6ixms\": {\"duration\": 30.33, \"timestamps\": [[0, 3.34], [3.49, 8.19], [8.49, 13.34], [13.65, 30.33]], \"sentences\": [\"A man is on a horse on a farm next to a farmer.\", \" The horse runs out of the gate.\", \" It stops and throws the man onto the ground.\", \" The small calf lies on the ground as another man goes to help.\"]}, \"v_yAkVtmP7654\": {\"duration\": 216.62, \"timestamps\": [[0, 24.91], [24.91, 35.74], [38.99, 44.41], [61.74, 70.4], [99.64, 210.12], [210.12, 216.62]], \"sentences\": [\"People are walking in a snow covered parking lot.\", \" The camera operator turns the camera on herself.\", \" We see  a person in the distance shoveling snow.\", \" We see the building they just came out of.\", \" A man and a boy clean snow off a minivan in the parking lot.\", \" The camera operator gives a thumbs up then pans back to the man cleaning the snow.\"]}, \"v_9cJi1iD7Iyo\": {\"duration\": 180.65, \"timestamps\": [[0, 36.13], [36.13, 140.91], [140.91, 180.65]], \"sentences\": [\"A young lady is standing in a white silk outfit outside on top of the rocks in front of the ocean.\", \"The lady the begins moving stiffly by moving her feet and extending her arms.\", \"She continues to do these things throughout the video until her routine is complete and she does her final step.\"]}, \"v_0yGGccaHMnI\": {\"duration\": 46.07, \"timestamps\": [[0, 6.68], [8.29, 31.1], [32.25, 46.07]], \"sentences\": [\"A person is seen down a path, wearing a pair of stilts.\", \" They walk very slowly up the gravel path on the stilts, trying to keep their balance.\", \" They turn and walk the other direction.\"]}, \"v_nKn2uQTVo-U\": {\"duration\": 223.01, \"timestamps\": [[0, 56.87], [70.25, 167.25], [124.88, 212.97]], \"sentences\": [\"A man is seen yelling to a crowd and leads into clips of people break dancing.\", \" Several clips are seen of people taking turns in the middle of a circle performing flips and tricks.\", \" People are shown dancing together as well as apart while others watch on the side.\"]}, \"v_HguqDEvSN68\": {\"duration\": 32.11, \"timestamps\": [[0.16, 4.98], [6.74, 23.76], [20.39, 31.47]], \"sentences\": [\"A small group of people are seen sitting in bumper cars on a track.\", \" The game then begins and people are seen riding around in the cars.\", \" The people bump into one another continuously.\"]}, \"v_7RDn5qTQquE\": {\"duration\": 226.65, \"timestamps\": [[0, 226.65], [44.2, 61.2], [44.2, 226.65]], \"sentences\": [\"A man in an orange shirt is playing wall ball.\", \" A person is sitting on a bench behind him.\", \" He keeps swinging the racket in the room.\"]}, \"v_NdnosxA2c5g\": {\"duration\": 37.97, \"timestamps\": [[0, 10.63], [2.28, 5.88], [10.82, 37.97]], \"sentences\": [\"People rides horses in a trail road of a forest, then a little girl throws something to the ground.\", \" A woman takes a selfie while sits on a horse.\", \" The little girl rides a horse behind three adults, and adult rides a horse behind her.\"]}, \"v_dID-dQpaLbc\": {\"duration\": 235.16, \"timestamps\": [[0, 62.32], [59.97, 161.09], [121.11, 225.76]], \"sentences\": [\"Three people are seen standing together in an outdoor area holding fans in their hands.\", \" The group then moves around together moving their hands and feet.\", \" The people continuing performing together and ends by holding their fans up.\"]}, \"v_7Eh6c1eYMFk\": {\"duration\": 70.51, \"timestamps\": [[0, 15.86], [15.86, 21.51], [21.86, 32.08], [32.43, 35.61], [35.96, 49.71], [49.71, 70.51]], \"sentences\": [\"A lady in a green blouse vacuums a wooden kitchen floor.\", \" The lady vacuums right up against the baseboards.\", \" The lady vacuums up the spilled pet food  and candies on the wooden floor.\", \" A close up of the vacuum cleaners design and bottom frame and wheels.\", \" More scenes of the vacuum up against the baseboards.\", \" A close up of the vacuum cleaner from top to bottom.\"]}, \"v_31TT2oiYRO4\": {\"duration\": 217.53, \"timestamps\": [[0, 29.37], [38.07, 144.65], [147.92, 217.53]], \"sentences\": [\"Three women are dancing in a room.\", \" They are dancing to music, portraying an aerobic exercise style called Zumba.\", \" They dance side to side, and back and forth in unison.\"]}, \"v_1hB5jVAhSDE\": {\"duration\": 32.07, \"timestamps\": [[0, 13.31], [12.19, 32.07]], \"sentences\": [\"A woman is seen sitting before the drums and hitting them as hard as she can.\", \" She continues hitting the drums and then stops in the end to breathe heavy.\"]}, \"v_VSONGdnvKiM\": {\"duration\": 190.78, \"timestamps\": [[0, 61.05], [57.23, 156.44], [101.11, 189.82]], \"sentences\": [\"A person is seen swimming under water with dolphins swimming past and a man speaking to the camera.\", \" The man instructs how to put on a camera while showing himself swimming underwater as well as pictures of others.\", \" The man is seen in several shots swimming around as well as large buildings under the water.\"]}, \"v_mzVJHw9Jrb4\": {\"duration\": 140.71, \"timestamps\": [[0, 35.88], [39.4, 53.47], [59.8, 75.28], [79.5, 140.71]], \"sentences\": [\"A shirtless man roller blades through a busy path.\", \" A man in a black tank top does several roller blade tricks.\", \" A man in a blue shirt switches of doing tricks.\", \" They continue to trade off showing their skills.\"]}, \"v_Y7gywSk5i0M\": {\"duration\": 9.59, \"timestamps\": [[0, 2.83], [2.73, 7.82], [6.62, 9.4]], \"sentences\": [\"A gymnast is seen standing up on a set of uneven bars.\", \" The person then spins around on the bars while a man watches on the side.\", \" The girl then jumps down and cheers off to the camera.\"]}, \"v_dWyE0o2NetQ\": {\"duration\": 187.15, \"timestamps\": [[0, 15.91], [22.46, 106.68], [109.48, 130.07], [134.75, 179.67]], \"sentences\": [\"Still images of a cheerleader are shown with explanatory text.\", \" A woman does floor gymnastics in several different gym environments while others watch in the background.\", \" The woman practices various cheer related jumps.\", \" The woman and several other cheerleaders demonstrate cheerleader tricks while others watch in the background.\"]}, \"v_x6E92fGgdH4\": {\"duration\": 134.97, \"timestamps\": [[0, 31.72], [35.09, 121.47], [123.5, 133.62]], \"sentences\": [\"The doctor uses a brush to scrub nails and hands.\", \" A doctor washes their hands in a large stainless steel sink with hand soap multiple times.\", \" The doctor completely rinses their hands then clasps together and walks out of the room without touching anything.\"]}, \"v_GI8tylrKKlA\": {\"duration\": 199.37, \"timestamps\": [[0, 20.93], [20.93, 171.46], [88.72, 120.62], [144.54, 158.5], [171.46, 199.37]], \"sentences\": [\"We see a lady laying on the couch talking to the camera next to her cat.\", \" We see the lady clip the cats claws.\", \" The cat tries to get away so the lady rubs the cat and moves him to her other side.\", \" The cat tries to get free.\", \" The lady finishes and talks to the camera.\"]}, \"v_hiifjzLG8Io\": {\"duration\": 19.6, \"timestamps\": [[0, 11.37], [11.56, 19.6]], \"sentences\": [\"A wheelbarrow and chairs are in a yard, while a man begins grooming a horse in the background.\", \" The man walks around behind the horse, continuing to groom it.\"]}, \"v_Cl96RZAFcZo\": {\"duration\": 17.14, \"timestamps\": [[0, 3], [3.08, 7.2], [7.28, 17.14]], \"sentences\": [\"A shirtless man is standing next to a car in a driveway.\", \"  The man is washing a side of the car.\", \"  He is dancing while he washes it.\"]}, \"v_dDN37ufNu84\": {\"duration\": 85.26, \"timestamps\": [[0, 85.26], [0.85, 17.48], [0.85, 85.26]], \"sentences\": [\"A woman in a blue shirt is standing in front of a table.\", \" She picks up a ping pong and starts hitting it with a paddle.\", \" She continues hitting ping pong balls across the table.\"]}, \"v_wGEaIInAtT4\": {\"duration\": 199.23, \"timestamps\": [[0, 61.76], [29.88, 199.23]], \"sentences\": [\"A girl is jumping in two ropes, as the young boy and an old man are holding each side for the two jumping ropes.\", \" A kids in orange shirts started to jumped in the jumping ropes one by one first then two at time, then the kids danced and performed and then do jumping ropes again.\"]}, \"v_OzXD3WO6jrs\": {\"duration\": 65.97, \"timestamps\": [[12.53, 14.18], [12.53, 58.05], [57.39, 65.97], [64.98, 65.97]], \"sentences\": [\"A man jumps onto two bars.\", \" He does a gymnastic bar routine.\", \" He does a back flip off and lands on the mat.\", \" Two men are watching him in suits.\"]}, \"v_Sx5MlpX6NIY\": {\"duration\": 142.66, \"timestamps\": [[0, 93.44], [37.09, 38.52], [94.16, 142.66]], \"sentences\": [\"A marching band is standing on a track playing.\", \" A man in a hat is holding a camera in front of the band.\", \" They turn to the side and begin marching off.\"]}, \"v_7oeFpnRCJkY\": {\"duration\": 7.06, \"timestamps\": [[0, 0.71], [0.78, 6.78], [6.81, 7.06]], \"sentences\": [\"A man is kneeling down on one knee holding a weight.\", \" The man starts to light the weight with only his right arm.\", \" The man stops lifting the weight.\"]}, \"v_XASTWKClhPU\": {\"duration\": 130.33, \"timestamps\": [[3.26, 72.99], [73.64, 106.22]], \"sentences\": [\"A man roller skates in the road and sidewalk of a busy street.\", \" The man skates around a concrete fence, after the man jumps over the fence and then skate and jump on the road while people observe surprised.\"]}, \"v_JoiZmVQCLCI\": {\"duration\": 186.35, \"timestamps\": [[0, 81.06], [62.43, 142.56], [105.29, 177.04]], \"sentences\": [\"A large audience is seen cheering while a man stands ready and runs down a track.\", \" The man jumps over a pole and is followed by clips of more people jumping over a pole.\", \" Several clips are shown of people making the jump as well as falling and raising their hands into the air.\"]}, \"v_UI98gtpg7FE\": {\"duration\": 192.17, \"timestamps\": [[0, 191.21], [52.85, 142.2]], \"sentences\": [\"A young person goes snowboarding on a mountain.\", \"  He goes down jumps and flips and spins.\"]}, \"v_kCb2Km85Yn4\": {\"duration\": 24.71, \"timestamps\": [[0, 12.6], [13.59, 24.71], [20.26, 21.37], [22.36, 24.71]], \"sentences\": [\"A little girl climbs up a pink side.\", \" An adult walks into frame.\", \" A child walks into and out of frame.\", \" The little girl slides down and is caught by the adult.\"]}, \"v_Uqs8NaPzHKU\": {\"duration\": 226.74, \"timestamps\": [[0, 4.53], [4.53, 31.74], [31.74, 87.3], [87.3, 146.25], [146.25, 188.2], [188.2, 213.14], [213.14, 226.74]], \"sentences\": [\"A chocolate muffin is sitting on a decorative small white plate with colorful insects and flowers.\", \"A rubber spatula is now stirring chocolate and butter in a metal pot on the stove until it's all melted.\", \"Sugar is now being poured into a clear glass measuring cup, poured into the bowl of the kitchen aid mixer, eggs are added, then the mixer is turned on to mix it all up.\", \"Flour is now poured into the measuring cup, added to the kitchen aid mixer, and now the melted chocolate is added and all the ingredients are mixed together.\", \"The person sprays the muffin pan with non stick spray,spoons the mixed ingredients into the muffin pan, then puts it in the oven to bake.\", \"When done the pan is removed with gloved hands, then one of the muffins is shown on the plate whole, then cut in half.\", \" Various black screens appear and they include the words \\\"'Neverland' by Retrospectral\\\",\\\"Jasmine Rose\\\",\\\"thworldismine tumblr com\\\",\\\"Instagram\\\"@funtoo2\\\",and \\\"Thanks for Watching!\\\".\"]}, \"v_FLJzzot6F-s\": {\"duration\": 232.73, \"timestamps\": [[0, 94.26], [95.42, 232.73]], \"sentences\": [\"Several clips are shown of landscapes while a car drives around and leads into a person walking up stairs and pointing to a house.\", \" The man continues walking followed by doing splits and various slow motion movements around a dirty area.\"]}, \"v_obVMUmZQW_M\": {\"duration\": 142.62, \"timestamps\": [[0, 34.94], [32.8, 105.54], [94.84, 137.63]], \"sentences\": [\"A woman in black has her hair rolled in curlers.\", \" The woman unroll the curlers and put it down.\", \" The woman brushed her hair with her fingers.\"]}, \"v_s5QkiA-w5YE\": {\"duration\": 158.06, \"timestamps\": [[0, 46.63], [48.21, 105.11], [106.69, 158.06]], \"sentences\": [\"The video is first person view of someone paddling an orange canoe in a large body of water.\", \"  People stand on a nearby pier and watch the person.\", \" The person appear to temporarily go underwater several times and right themselves.\"]}, \"v_xAMZGWqRmqE\": {\"duration\": 63.58, \"timestamps\": [[0, 6.04], [6.36, 19.07], [20.03, 34.97], [34.97, 42.28], [46.09, 62.31]], \"sentences\": [\"A man and a dog tug of war over a Frisbee.\", \" The man throws the Frisbee , the dog catches it and brings it back.\", \" The man throws it again and the dog returns it.\", \" The man wipes the Frisbee off with a towel.\", \" The man throws it again for the dog to bring it to him.\"]}, \"v_6VT2jBflMAM\": {\"duration\": 194.12, \"timestamps\": [[0.97, 74.74], [53.38, 150.44], [137.82, 189.27]], \"sentences\": [\"A camera pans all around a backyard and leads into a large group of people playing kickball.\", \" The camera pans around to the cameraman as well as close ups of the others and people running around.\", \" More clips are shown of the game being played with people running around and catching the ball with one another.\"]}, \"v_LCLDhKiMAPA\": {\"duration\": 215.23, \"timestamps\": [[0, 59.19], [57.03, 166.8], [124.83, 207.69]], \"sentences\": [\"A close up of a fooseball table is seen with two people standing on each side.\", \" The men put coins on the side and continue playing the game on the table.\", \" The camera pans around their movements as they bend down to smile to the camera and continue playing.\"]}, \"v_XEriJg8cW4g\": {\"duration\": 74.78999999999999, \"timestamps\": [[0, 22.81], [22.06, 43.01], [43.01, 74.79]], \"sentences\": [\"A man wearing a black t-shirt describes the parts of a bagpipe and blow pipe.\", \" The man demonstrates how to blow into the blow pipe with a deep inhale into the lungs and using his mouth and jaw.\", \" The bagpiper demonstrates the blowing technique and blows into the blow pipe on the bagpipe.\"]}, \"v_7tDDXbiQ8AI\": {\"duration\": 177.07, \"timestamps\": [[0, 32.76], [45.15, 87.65], [108.01, 126.6]], \"sentences\": [\"A person is standing behind a counter with ingredients on it.\", \" They pour the ingredients into a blender.\", \" They pour it out of the blender into a glass.\"]}, \"v_zE0vlPLBVJo\": {\"duration\": 25.43, \"timestamps\": [[0, 13.73], [13.48, 25.43]], \"sentences\": [\"A young child is seen holding a stick and swinging at a pinata that is hanging above her.\", \" The pinata and pulled lower and the girl cheers while others around her grab candy.\"]}, \"v_l_KhWbeZeRA\": {\"duration\": 222.02, \"timestamps\": [[11.1, 156.52], [160.96, 166.52], [166.52, 179.84], [179.84, 208.7]], \"sentences\": [\"A group of little boys practice soccer while wearing yellow caps on their heads.\", \" Then, two kids run to score a goal.\", \" An adult throw a ball for two boys that intend to score on the other side of the court.\", \" After, two boys plays and one of then scores.\"]}, \"v_HzyTD2uZ8jI\": {\"duration\": 149.27, \"timestamps\": [[0, 34.33], [37.32, 109.71], [110.46, 148.52]], \"sentences\": [\"A man is seen speaking to the camera while moving his arms around and leading into a person jumping into a pit.\", \" More people are seen walking forward and taking their turns jumping.\", \" People continue jumping one another the other with the man's guidance.\"]}, \"v_2FIQwmB362w\": {\"duration\": 174.27, \"timestamps\": [[0, 57.51], [57.51, 120.24], [120.24, 174.27]], \"sentences\": [\"A teen skateboard in a parking lot jumping with the skateboard.\", \" The teen jumps flipping the skateboard with his feet and lands on the skateboard.\", \" The teen flips the skateboard with his feet and land on the skateboard to continue skateboarding.\"]}, \"v_224E-VtB4k4\": {\"duration\": 225.49, \"timestamps\": [[0, 31.57], [32.7, 47.35], [49.61, 225.49]], \"sentences\": [\"A man is walking through an airport, where he opens a case.\", \" He takes out a violin, preparing it for play.\", \" He then sets up, playing for the passing people alongside another man.\"]}, \"v_0AbJgWxIYVI\": {\"duration\": 202.07999999999998, \"timestamps\": [[0, 35.36], [44.46, 171.77], [173.79, 202.08]], \"sentences\": [\"A man runs toward a skating ramp quickly.\", \" We then see several clips of people on skateboards, performing stunts.\", \" We see a competition, and people celebrating between stunts.\"]}, \"v_T4ZeB_TvS68\": {\"duration\": 64.45, \"timestamps\": [[0, 6.44], [8.38, 38.35], [40.28, 64.45]], \"sentences\": [\"a man is talking from behind a black jack table in a casino.\", \" A female dealer waits patiently beside him.\", \" He shows how to deal the hands during the game.\"]}, \"v_qAZStAHJ3CQ\": {\"duration\": 129.66, \"timestamps\": [[1.3, 29.17], [29.17, 83.63], [84.28, 127.72]], \"sentences\": [\"A teen holds a hula ring on her waist while talking.\", \" Then, the teen spins the hula ring around her waist many times.\", \" After, the teen spins the hula ring to the left, then she stops and explains.\"]}, \"v_iZk3PH8ghlI\": {\"duration\": 131.22, \"timestamps\": [[0, 131.22], [55.77, 59.7], [70.86, 87.26], [10.5, 125.31]], \"sentences\": [\"Several skaters in helmets, pads, and hoodies are speeding down an empty road on their skateboards.\", \"  They pass fields and houses, and one loan truck parked on the side of the road.\", \"  Holding their arms behind them or their hands outstretched helps to control their speed and direction.\", \"  Patchy areas of snow are present on the sides of the road, indicating the still-cool temperature.\"]}, \"v_G1hRHCymRGE\": {\"duration\": 93.21000000000001, \"timestamps\": [[0, 7.46], [10.25, 61.98], [54.99, 91.34]], \"sentences\": [\"A gymnast is seen standing ready with her arms out to the audience as well as the beam.\", \" The girl then climbs up on the beam and begins performing jumps and tricks on the beam.\", \" The woman continues flipping around and ends by putting her arms up after jumping down.\"]}, \"v_F8K9WQfHth4\": {\"duration\": 112.08, \"timestamps\": [[0.56, 40.35], [20.17, 74.54], [47.64, 98.07], [75.1, 112.08]], \"sentences\": [\"A bald man in shorts is standing next to a tree in position to hit the ball using a hammer like stick.\", \" A man walks towards the other side of the yard, hit the ball and the wall went to the other side of the yard, a man bend over and hit the ball with the stick, the ball roll and missed the rectangular hole.\", \" The man hit the ball and the ball went to the wall.\", \" Four men are standing by the pool holding hammer like sticks and hit the ball.\"]}, \"v_aa5jHg4E3O0\": {\"duration\": 202.66, \"timestamps\": [[0, 6.08], [7.09, 193.54], [72.96, 102.35], [195.57, 200.64]], \"sentences\": [\"A woman is drinking a cup of coffee.\", \" A woman is sitting down talking.\", \" She holds up two white mugs.\", \" A cartoon comes on the screen.\"]}, \"v_2lUqeOw61QY\": {\"duration\": 80.18, \"timestamps\": [[0, 16.04], [16.84, 44.1], [44.9, 80.18]], \"sentences\": [\"An elderly man is standing in a basketball gym watching a young team of athletes practice.\", \"Another male then begins shuffling and playing defense as the kids practice their layups.\", \"They stay in their two lines and starts making passes to one another to make a goal.\"]}, \"v_Q3tPDohXUYc\": {\"duration\": 58.35, \"timestamps\": [[0, 9.63], [9.04, 34.14], [35.01, 58.35]], \"sentences\": [\"An athlete is seen standing on a track line clapping his arms in the air while several others stand and watch around him.\", \" The man then runs down the track and jumps into a large sand pit.\", \" A woman raises a white flag and the man's shot is shown again in slow motion.\"]}, \"v_1DmdX5QwqFI\": {\"duration\": 121.65, \"timestamps\": [[0, 121.65], [26.76, 50.48], [65.69, 121.65]], \"sentences\": [\"The video is how to properly wash your hands.\", \"  Water runs and then soap is added.\", \"  The sink is cleaned and results are shown.\"]}, \"v_p1gH8y8X0kA\": {\"duration\": 97.06, \"timestamps\": [[0, 97.06], [54.35, 71.34]], \"sentences\": [\"A man in blue uniform is playing bagpipes, he is blowing the pipe then pressing a tube as he plays.\", \" A band on top of the man is a band setting up their instruments.\"]}, \"v_rnhtmtW_a8o\": {\"duration\": 198.93, \"timestamps\": [[2.98, 16.91], [16.91, 40.78], [41.77, 116.37], [116.37, 192.96]], \"sentences\": [\"Two teams are playing volleyball in a indoor court.\", \" Two teams wearing dark uniforms are doing a  volleyball competition, then appears a team with yellow t-shirts.\", \" Then, a boy with a red t-shirt serves the ball and the teams start to hit and running to pass the ball, then another team wearing green shorts enters the court.\", \" After, team wearing blue uniform competes with teams wearing white and red uniforms.\"]}, \"v_5JG8Dc2wsdc\": {\"duration\": 111.64, \"timestamps\": [[9.49, 18.98], [18.98, 48.56], [48.56, 84.29]], \"sentences\": [\"Paint brushes are laying on a table.\", \" Someone is painting their fingernails.\", \" They use a paintbrush and start painting on the fingernail.\"]}, \"v_ZJGXWbt6cbU\": {\"duration\": 102.05, \"timestamps\": [[0, 8.16], [8.16, 84.7], [84.7, 95.42]], \"sentences\": [\"People dance in a studio while a trainer shows a sign.\", \" Then, a group of little girls dance together while a trainer explains the moves.\", \" The little girls stand on front a mirror to make some moves.\"]}, \"v_Zo7oziWT-7o\": {\"duration\": 183.83, \"timestamps\": [[0, 183.83], [0, 11.03], [169.13, 183.83]], \"sentences\": [\"A man is jumping and doing tricks on a slack line.\", \" People are sitting in the snow watching him.\", \" He does a flip and falls off onto the ground.\"]}, \"v_RTM6iJxc-G0\": {\"duration\": 31.72, \"timestamps\": [[0, 16.81], [15.07, 31.72]], \"sentences\": [\"An intro leads into a small ground of boys moving their arms and legs around behind chairs.\", \" Various shots are then shown of people playing instruments together and a man orchestrating the group.\"]}, \"v_Zguc8yykcgk\": {\"duration\": 14.79, \"timestamps\": [[0, 7.47], [4.66, 11.02], [8.73, 14.42]], \"sentences\": [\"A person is seen walking into frame in a dark area.\", \" A person's feet are shown in a large pile.\", \" The person moves their feet back and the person grabs the camera.\"]}, \"v_xBR7YEKPgDA\": {\"duration\": 68.92, \"timestamps\": [[0, 68.57], [0.34, 11.37], [11.37, 68.92]], \"sentences\": [\"A group of men play field hockey in a professional game on a vast field in front of an audience in bleachers.\", \"  A man in a number nine jersey hits a goal and throws up his arms in reaction.\", \"  The man is then spotted again throwing out his field hockey stick before the scene cuts to another location with number eight this time hitting a goal.\"]}, \"v_5WHnYEinw4A\": {\"duration\": 72.26, \"timestamps\": [[0, 72.26], [15.17, 17.7], [36.13, 71.18]], \"sentences\": [\"A man is playing golf on a field.\", \" He bends down to pick up the ball off the ground.\", \" He then hits the ball on the field.\"]}, \"v_DYwF_1xX4dU\": {\"duration\": 215.02, \"timestamps\": [[0, 27.95], [27.95, 73.11], [73.11, 133.31], [133.31, 215.02]], \"sentences\": [\"A man dressed in a black suit and glasses is standing up against the wall holding a flute begins talking.\", \"The man then places the flute up to his lips and begins playing one note for a very long time.\", \"After he takes a break,he does the exact same thing and plays with great concentration to listen to the note.\", \"The angle changes and a close up of his next is shown then his lips to show proper breathing for playing the flute.\"]}, \"v_CRDBKk44RWg\": {\"duration\": 143.5, \"timestamps\": [[0, 45.92], [46.64, 86.1], [86.82, 143.5]], \"sentences\": [\"A man dressed in a white polo is standing outside of a building talking with two tennis balls in his hand.\", \"The man then walks towards a young female tennis player and starts to give her instructions.\", \"First,a green tube is laid down and the girl starts to serve behind it.\"]}, \"v_qN0a8-A-5Pg\": {\"duration\": 164.56, \"timestamps\": [[0, 51.01], [41.14, 118.48], [119.31, 158.8]], \"sentences\": [\"A man is seen standing in the middle of a large circle and spinning himself around and around.\", \" The man looks off in the distance and throws the object far away.\", \" The man is shown in many more clips throwing the object off into the distance.\"]}, \"v_uTQyPHg8r0M\": {\"duration\": 86.45, \"timestamps\": [[0, 21.61], [21.61, 41.06], [41.06, 66.56], [66.56, 86.45]], \"sentences\": [\"An Asian woman is talking and she picks up a blue cup and drinks something from it, swishes it in her mouth, lifts up a small listerine bottle and shows it to the camera, lifts up a small heart mirror and continues swishing.\", \" The woman then walks off appears to spit in the sink and then gets another cup to drink out of and swishes more liquid in her mouth.\", \"The woman puts a finger under her nose briefly and continues to swish and then goes back to the sink to spit it out, show her teeth, and then rinse out the sink with a bowl.\", \" The girl walks away from the sink, grabs her mirror and looks at her teeth and continues talking to the camera.\"]}, \"v_7KEM_rbhASw\": {\"duration\": 191.22, \"timestamps\": [[0, 11.47], [7.65, 18.17], [17.21, 34.42], [21.99, 35.38], [31.55, 181.66], [57.37, 104.21], [84.14, 128.12], [109.95, 132.9], [154.89, 175.92]], \"sentences\": [\"There are several people wearing helmets and wet suits walking down a road, carrying a raft in their hand.\", \" They are joining several other rafters at the river.\", \" Some of the rafters are diving into the water while the others are wading through the water.\", \" One of the rafters is pumping air into the raft.\", \" A group of six rafters get into a yellow raft and begin rowing down the river.\", \" They begin to pick up speed as they row down the river against the rough waters.\", \" They pass by some other rafters who are also rowing down the river.\", \" Then they come closer together and begin splashing water on them.\", \" The rafters on the yellow raft continue rowing through the rough waters as they give each other high fives.\"]}, \"v_Re-SsHmajds\": {\"duration\": 204.99, \"timestamps\": [[5.12, 135.29], [70.72, 189.61]], \"sentences\": [\"Three people are seen standing around a closed in area and lead into the people hitting balls with a tennis racket.\", \" The people continue to play with one another in the small room hitting the ball and running after it.\"]}, \"v_0YHCiC7IIg8\": {\"duration\": 128.08, \"timestamps\": [[0, 101.83], [103.75, 120.4], [126.16, 128.08]], \"sentences\": [\"People are standing on a stage playing instruments.\", \" Two men are playing harmonica's.\", \" A man leads a band in front of him.\"]}, \"v_Ty0BvWyYPVA\": {\"duration\": 17.09, \"timestamps\": [[0.26, 8.29], [6.49, 16.83]], \"sentences\": [\"A young man is seen standing on a long track with another boy sitting behind him when he pushes a puck with a stick.\", \" He walks away to another boy taking his turn to play shuffleboard and ends by cheering with his arms up.\"]}, \"v_ez9pf35BMtc\": {\"duration\": 127.85, \"timestamps\": [[0, 127.85], [5.11, 44.75], [44.75, 81.82], [81.82, 101], [101, 127.85]], \"sentences\": [\"In this video, a male instructor speaks to the camera in a gym.\", \" A little boy is shown on beams as the instructor describes what he's doing.\", \" The instructor continues speaking to the camera about what to watch out for.\", \" The boy then continues performing as his instructor's direction.\", \" The video ends with the instructor speaking to the camera summarizing what was discussed.\"]}, \"v_ncgzVLi_hlI\": {\"duration\": 235.06, \"timestamps\": [[0, 21.16], [21.16, 111.65], [141.03, 190.4]], \"sentences\": [\"There are people sitting in the sand and there is someone in the small crowd whistling.\", \" There's also people clapping and one team who was sitting in the sand stands up to act crazy.\", \" There is also people waving in the small crowd and the team is singing.\"]}, \"v_Yl85vnsndx0\": {\"duration\": 219.99, \"timestamps\": [[0, 3.3], [4.4, 213.39], [213.39, 214.49], [215.59, 219.99]], \"sentences\": [\"A lady smiles and guys cheer.\", \" Women belly dance indoors for an audience.\", \" Guys jump onto the stage once a belly dancers stops.\", \" The credits and clip are shown.\"]}, \"v_nibek2g971I\": {\"duration\": 168.62, \"timestamps\": [[0, 10.96], [13.49, 31.2], [32.88, 168.62], [80.94, 168.62]], \"sentences\": [\"A picture of a man with a hat is shown.\", \" The same man is shown without a hat.\", \" He is then shown balancing on a rope in front of a crowd.\", \" He walks across the rope.\"]}, \"v_6Y8wppTQFPo\": {\"duration\": 100.22, \"timestamps\": [[3.01, 100.22], [36.08, 47.6], [55.62, 69.15], [75.16, 92.7]], \"sentences\": [\"A man is assembling a bicycle.\", \" He puts the handlebars onto the bike.\", \" He raises the handlebars with a lever.\", \" He raises the seat on the bicycle.\"]}, \"v_n_9skH6xGeM\": {\"duration\": 197.7, \"timestamps\": [[0.99, 54.37], [29.65, 92.92], [63.26, 158.16], [118.62, 179.9], [148.27, 197.7]], \"sentences\": [\"Four women and a man are doing jumping rope in a court, they jumped front and back and side to side.\", \" The woman in front is jogging while two women at the back is holding the two ropes while the woman in pink is jumping at the center, then the women and a man form a straight line, jumped in their jumping rope.\", \" A man and woman stands on opposite side and hold the end of two jumping ropes as the three girls jumps on their hands in the jumping ropes, then two women were left and continue to jumped, the man went at the center jumped in the jumping rope, then the woman in gray shirt tumble in the jumping rope.\", \" Three women jumped in the jumping ropes and perform cartwheel.\", \" The group did individual jumping rope and danced.\"]}, \"v_2mXGnG6ZBDA\": {\"duration\": 45.79, \"timestamps\": [[0, 3.89], [1.6, 43.96], [43.04, 45.79]], \"sentences\": [\"A man in blue helps a woman point towards a pinata and backs away.\", \" A lady attempts to hit a pinata at a party.\", \" The man talks to the lady and she drops the stick and gives up.\"]}, \"v_yH0xeA_OvWg\": {\"duration\": 70.06, \"timestamps\": [[0, 28.37], [28.72, 52.19], [52.19, 70.06]], \"sentences\": [\"A woman cleans a sink with a pink cloth.\", \" Then, the woman close the drain stopper by pulling a rod behind the faucet, after she continues cleaning the sink.\", \" Next, the woman cleans the faucet and handles.\"]}, \"v_7qBA7XPDsC4\": {\"duration\": 32.23, \"timestamps\": [[0, 2.42], [2.42, 18.21], [18.85, 32.23]], \"sentences\": [\"A black screen is shown with white letters on it serving as the title screen.\", \"After, the video begins and a person walking down the road in Kangaroo boots is shown.\", \"Many people continue to drive by him and the screen flashes saying to be continued.\"]}, \"v_tBGeBbO8gh0\": {\"duration\": 166.77, \"timestamps\": [[0, 50.03], [50.86, 159.26], [160.1, 166.77]], \"sentences\": [\"Three men are standing are outdoors standing around two holes ice fishing.\", \" The men catch a large fish and pull it out of the hole.\", \"  A closing sponsoring screen with \\\"The Green Roof Inn\\\" logo appears.\"]}, \"v_EMDTvPUEr7E\": {\"duration\": 59.24, \"timestamps\": [[0.89, 28.43], [18.96, 56.57]], \"sentences\": [\"A small group of kids are seen playing a hopscotch match with one another while taking turns jumping on the chalk.\", \" Older women help the kids on the side as they continue to play and others watch on the sides.\"]}, \"v_iAPv-QSvZF4\": {\"duration\": 36.76, \"timestamps\": [[0.92, 1.84], [1.84, 35.29], [35.29, 36.76]], \"sentences\": [\"A girl is doing the splits on a balance beam.\", \" She begins to do a routine on the balance beam.\", \" She falls off the beam onto her back.\"]}, \"v_I8jhEprzTN8\": {\"duration\": 202.25, \"timestamps\": [[0, 173.93], [70.79, 76.85], [91.01, 95.06], [169.89, 173.93]], \"sentences\": [\"Two men are playing with a soccer ball in the beach while other people are in the water.\", \" A woman walks on front the players.\", \"  Suddenly, a man runs on front the men and bend to grab a small ball and left.\", \" Then, a man walks on front the players.\"]}, \"v_nUoN18FTeug\": {\"duration\": 197.02, \"timestamps\": [[0, 197.02], [0, 194.07], [7.88, 197.02]], \"sentences\": [\"little kid is standing in front of a camera playing guitar.\", \" little kid is in a white room with a pony tail is playing the guitar and singing.\", \" behind the girl is a guitar case hanging behind the door.\"]}, \"v_mK3keyPMe3o\": {\"duration\": 208.61, \"timestamps\": [[0, 4.17], [4.17, 186.71], [181.49, 199.22], [201.31, 208.61]], \"sentences\": [\"A black screen appears and on two separate screens the words \\\"BANGKOK\\\" appear on one and \\\"Vans Go Skateboarding Day 2014\\\"appear on the other.\", \"A large group of people are out in the city, some are carrying flags, some of have black balloons and they are skateboarding on the roads while people on the sidewalk watch them skate by.\", \"A person on a skateboard is holding onto the back of a moped that someone is driving.\", \"The camera person focuses on a large white banner hanging and some of the words on it say \\\"GO SKATE BOARDING DAY BANGKOK 21ST JUNE 2014\\\" and it includes logos on both ends.\"]}, \"v_s0swzu1jIpc\": {\"duration\": 91.03999999999999, \"timestamps\": [[0, 5.01], [5.92, 15.02], [16.39, 25.95], [30.5, 56.9], [59.17, 91.04]], \"sentences\": [\"A bald man screams and pretends to cry while looking in a mirror.\", \" He gives a list of things you will need to take care of a bald head.\", \" He places the items on the sink.\", \" He then lathers and shaves the skin on his head.\", \" He walks down the street wearing a hat, showing off his bald head.\"]}, \"v_oCicjtc1t9Y\": {\"duration\": 88.05, \"timestamps\": [[0, 27.74], [21.13, 58.55], [52.39, 81.89]], \"sentences\": [\"A man is child are seen standing in front of a pile of leaves holding rakes.\", \" The man and child then begin raking the leaves into a larger pile.\", \" The girl continues to rake leaves while looking around and back to the camera.\"]}, \"v_9btLaLqX-Zk\": {\"duration\": 158.76, \"timestamps\": [[0, 25.4], [26.99, 107.95], [112.72, 158.76]], \"sentences\": [\"A man is shown at the window outside a house.\", \" He uses a cleaning soap to clean the windows.\", \" He scrapes with a tiny scraper to remove hard particles.\"]}, \"v_riuJrZqkYYU\": {\"duration\": 74.33, \"timestamps\": [[0, 4.46], [4.46, 23.41], [23.41, 29.36], [29.36, 34.19], [34.19, 53.14], [53.14, 74.33]], \"sentences\": [\"People dispute balls from the floor, the people wearing white t-shirt get all the balls.\", \" Then two teens throw balls to a team of people wearing red t-shirts.\", \" After, two men and one woman throw ball to the red team.\", \" A person from the red team runs to get a ball.\", \" After, players with white and red t-shirts play throwing balls each others.\", \" The red team continue throwing balls to the white team.\"]}, \"v_TK5FnYshy10\": {\"duration\": 226.72, \"timestamps\": [[0, 29.47], [30.61, 91.82], [94.09, 174.57], [175.71, 198.38], [199.51, 214.25], [216.52, 226.72]], \"sentences\": [\"A group of kids are at the beach, trying to build a sand castle.\", \" They gather sand and pack it around the center.\", \" The children across the beach are putting sand in buckets, proud of their work.\", \" A girl dumps sand into a large bucket.\", \" A line of buckets filled with items are displayed on the beach as the kids gather behind them.\", \" A woman opens a piece of paper and reads it to the group before handing the buckets to the kids.\"]}, \"v_QQe2n2yjJuc\": {\"duration\": 196.57999999999998, \"timestamps\": [[0, 62.91], [62.91, 148.42], [147.44, 196.58]], \"sentences\": [\"A large group of people are seen playing a soccer match as well as audience members watching their reactions.\", \" A man falls and a coach speaks to the team that leads into a player scoring a goal and being shown again in slow motion.\", \" More shots are shown of the game being played and end with the team cheering and one man laying on the ground.\"]}, \"v_R_AsoAmxd4o\": {\"duration\": 220.12, \"timestamps\": [[0, 49.53], [41.82, 161.79], [161.79, 220.12]], \"sentences\": [\"A large group of people are seen riding on skis while one holds onto the other.\", \" A dog is seen at one point riding on the skis while two people hold onto her for safety.\", \" At one point the people switch around their positions and the camera man lets go while gliding into the water.\"]}, \"v_QSV7f5XHohE\": {\"duration\": 223.78, \"timestamps\": [[15.66, 29.09], [30.21, 101.82], [102.94, 115.25], [117.49, 157.77], [157.77, 219.31]], \"sentences\": [\"A woman stands on front cakes and a barbie with a beautiful dress.\", \" The woman makes holes in the center of four cakes, then pile the cakes putting frosty between them.\", \" Then, the woman cut to make a small cake that put on top of the piled cakes.\", \" After, the woman putss a barbie head on top the cake and cut them to give a dress form.\", \" Next, the woman puts white frosty around the cake and even the dress, then make groves.\"]}, \"v_Gg32cIypcdc\": {\"duration\": 237.39, \"timestamps\": [[0, 13.06], [13.06, 17.8], [17.8, 27.3], [27.3, 32.05], [32.05, 49.85], [49.85, 61.72], [61.72, 237.39]], \"sentences\": [\"A brown bull being taunted by spectators corners a man wearing a baseball hat and rams him into a wall then tosses him into the air.\", \"A black bull chaises a group of people up some stairs and a man in a white shirt up against a metal railing.\", \"A black bull chaises a group of people as they jump off of a ledge and onto concrete floor.\", \"A black bull chaises a man as he climbs onto a brown fence and is gored by the bull as the man hangs on the fence.\", \"A black bull is taunted by a man in a blue shirt from behind a wooden fence as the bull leans over the fence and rams the taunter onto the ground.\", \" Another black bull tears up a fence separating the spectators and a lady wearing a red blouse ends up on the floor.\", \"Multiple scenes of different bulls running through the streets while bystanders are scrambling from the bulls however they can.\"]}, \"v_WpQHQeY43zo\": {\"duration\": 198.25, \"timestamps\": [[0, 62.45], [63.44, 156.62], [131.84, 190.32]], \"sentences\": [\"A man is seen sitting on a stage in front of a microphone and begins playing an accordion.\", \" The man plays the instrument while moving his hands up and down.\", \" The man continues to play the instrument and ends by bowing and nodding to the camera.\"]}, \"v_Sd4C8_FMdjA\": {\"duration\": 119.03999999999999, \"timestamps\": [[0, 15.48], [15.48, 80.35], [83.92, 119.04]], \"sentences\": [\"A musician is shown leaning over a chair.\", \" He is then singing, talking and dancing with small children.\", \" He shows several dance moves and advertises his video for teaching dance.\"]}, \"v_3gPjMvTmE2g\": {\"duration\": 207.49, \"timestamps\": [[0, 47.72], [38.39, 141.1], [133.83, 207.49]], \"sentences\": [\"The video leads into several boats gliding along the water behind one another.\", \" More close ups of the boats are shown as well as people sitting in the grass and celebrating.\", \" Close ups of people on the boat are shown with more boats riding around and moving along the water.\"]}, \"v_LnMvFpR0xCY\": {\"duration\": 144.31, \"timestamps\": [[19.48, 63.5], [69.99, 120.5], [107.51, 144.31]], \"sentences\": [\"A woman is seen bending over speaking to the camera and leads into her mopping the floor.\", \" She sprays water around the sink and continues mopping the floor while dancing.\", \" The girl then dries the floor with a towel and still dances around the floor.\"]}, \"v_u6f9COsww0w\": {\"duration\": 138.07, \"timestamps\": [[1.38, 35.9], [33.14, 85.6], [57.3, 120.81], [86.98, 138.07]], \"sentences\": [\"The kids are swimming at the same time in a blue pool, they pushed themselves off the wall of the pool then did a butterfly strokes.\", \" An old man in white shirt was talking, then the young men played a yellow ball in the pool, they also played soccer in the pool, then swim.\", \" A young man is talking, then the young men in the pool played soccer by swimming towards the ball, while they play, their coach is giving them lectures at the side of the pool.\", \" The team in green uniforms are having photoshoot and showing their medals, then other teams were shown for their photos.\"]}, \"v_A0LLegTPpWk\": {\"duration\": 119.72, \"timestamps\": [[0, 20.35], [20.35, 52.08], [52.08, 77.22], [77.82, 119.72]], \"sentences\": [\"A woman with blonde hair is standing outside of a stable next to a black horse.\", \"In her hands,the lady has two combs and begins grooming the horse's mane.\", \"Images are the shown of the horses hair straight as well as braided.\", \"The lady then grabs a pair of scissors and begins cutting the horse's mane.\"]}, \"v_p3vqC_FFyyM\": {\"duration\": 147.31, \"timestamps\": [[0, 50.82], [55.98, 61.13]], \"sentences\": [\"This man is lifting a tile off the roof using the pointed part of the screwdriver.\", \" The camera zooms in to show the dirt in the middle where there isn't any tiles.\"]}, \"v_a2JBhm22-M4\": {\"duration\": 74.93, \"timestamps\": [[0.75, 35.59], [31.1, 68.19]], \"sentences\": [\"A gymnast is seen jumping up onto a set of uneven bars and swinging herself round and round.\", \" She continues spinning around on the bars and ends with her jumping down with her arms up.\"]}, \"v_HImOluKZgp0\": {\"duration\": 32.07, \"timestamps\": [[0.32, 27.58], [4.49, 16.51], [11.86, 31.43]], \"sentences\": [\"A group of people parasail in rocky ocean water on an overcast day.\", \"  A group of people in wetsuits stand on multi colored parasails and sail along rocky ocean water.\", \"  More parasails appear, all with colorful sails, and turns corners as they sail before a black and white marketing graphic appears with a website address on it.\"]}, \"v_g_bb4RSu6TQ\": {\"duration\": 2.3, \"timestamps\": [[0, 0.18], [0.17, 1.85], [1.85, 2.3]], \"sentences\": [\"A gymnast balances on a parallel bar.\", \" The man spreads his legs while balancing on the parallel bar.\", \" The man quickly closses his legs while balancing on the parallel bar.\"]}, \"v_k_xDTGiDp9A\": {\"duration\": 180.51, \"timestamps\": [[0, 62.28], [23.47, 68.59], [61.37, 180.51]], \"sentences\": [\"The man is on a kayak, he is padding through the water, falling through the small falls.\", \" In front of the man is another man kayaking through the water and then he stopped.\", \" A car is passing by over the bridge, then four people paddle their way through the falls and waves.\"]}, \"v_mhYFpct97UE\": {\"duration\": 155.32, \"timestamps\": [[0, 6.21], [10.1, 63.68], [66.01, 111.05], [114.94, 155.32]], \"sentences\": [\"A senior photo of a girl holding a rose is shown.\", \" Then we see a team of lacrosse players on a field, a green arrow pointing to the girl from the photo.\", \" The girls play heavily, chasing the ball around the field.\", \" Each time the girl appears, an arrow points to her in the group.\"]}, \"v_YBK6SfHd-0Y\": {\"duration\": 201.04, \"timestamps\": [[0, 34.18], [38.2, 130.68], [133.69, 194]], \"sentences\": [\"A man is seen standing on a roof with a rope attached to him.\", \" The man then begins peeling tiles off of a roof while the camera zooms in on his actions.\", \" The man continues to push the tiles off of the roof and shows more men handing him wood on the side.\"]}, \"v_xwSHzGCP6iA\": {\"duration\": 79.13, \"timestamps\": [[0, 13.45], [15.04, 44.71], [43.92, 79.13]], \"sentences\": [\"A large metal tower is shown.\", \" A person bungee jumps off the tower.\", \" They land on a yellow mat and take their harness off.\"]}, \"v_7-u3OI6HDns\": {\"duration\": 196.12, \"timestamps\": [[3.92, 110.81], [69.62, 189.25]], \"sentences\": [\"Various clips are shown of vintage people playing instruments to the camera while a woman looks on and walks slowly in front of the band.\", \" A woman is then seen dancing in front of the band playing moving all around the stage and ending with a pose and a bow.\"]}, \"v_5OWJ7WqKWMU\": {\"duration\": 150.95, \"timestamps\": [[0, 19.62], [20.38, 57.36], [57.36, 96.61], [97.36, 150.95]], \"sentences\": [\"A young toddler boy is standing in front of a sink with an electrical toothbrush,brushing his teeth.\", \"Someone then comes by him and helps hip operates his toothbrush.\", \"The young boy then figures it out and starts talking about the toothbrush and begins laughing.\", \"He then puts the brush under the water and continues brushing his teeth.\"]}, \"v_4SSbyJ6pMuE\": {\"duration\": 91.51, \"timestamps\": [[0, 86.48], [87.85, 91.51]], \"sentences\": [\"A man plays a violin on a stage.\", \" The man finishes playing and stands idle.\"]}, \"v_ANwaFSIHdW0\": {\"duration\": 38.76, \"timestamps\": [[0, 3.49], [4.07, 10.08], [11.24, 33.52], [34.69, 38.76]], \"sentences\": [\"A man is on a playground with his dogs.\", \" The three dogs run with him in circles around the equipment, and up the stairs.\", \" They slide down the slides behind him happily.\", \" He laughs and walks toward the camera.\"]}, \"v_Z_hwYD3_lBY\": {\"duration\": 184.79, \"timestamps\": [[0, 5.54], [6.47, 150.6], [151.52, 184.79]], \"sentences\": [\"An older man sits on an orange riding lawnmower.\", \" The man mows the yard in circles.\", \" The man jokes like he is out of control on the lawnmower.\"]}, \"v__R-jA9hOFCE\": {\"duration\": 206.66, \"timestamps\": [[0, 44.43], [48.56, 103.33], [107.46, 206.66]], \"sentences\": [\"Shots of people on a boat are shown that leads from steering the boat to hanging off the front.\", \" More shots are shown of the people enjoying the boat as well as walking on an island.\", \" They wind surf, jump off boats, dance, ride motorcycles, and walk along sandy beaches all in one montage.\"]}, \"v_GD9SfOn3irM\": {\"duration\": 97.27000000000001, \"timestamps\": [[1.95, 32.1], [29.18, 63.22], [59.33, 91.92]], \"sentences\": [\"A person is seen riding in on a horse in front of a large group of people.\", \" The person chases and calf and ropes him up while walking away.\", \" Several more shots are shown of people chasing cattle in after riding on a horse.\"]}, \"v_Y-lL9JiLhz0\": {\"duration\": 35.09, \"timestamps\": [[1.75, 5.09], [5.09, 31.58]], \"sentences\": [\"A woman sits on a deck next a river that pass trough the city.\", \" The woman puts on life jackets, then she does water ski behind a yacht with another person.\"]}, \"v_Hn3-SRXssY4\": {\"duration\": 213.04, \"timestamps\": [[0, 11.72], [11.72, 40.48], [40.48, 84.15], [84.15, 132.09], [132.09, 154.46], [155.52, 213.04]], \"sentences\": [\"A young man is outside attempting to do a highjump behind the London logo.\", \"A male man then stands in front of the mat and talks about the jump.\", \"Another male is then shown as he takes off and clears the bar of the high jump and there's an instant replay.\", \"Then a man is standing on the track stretching,he jumps, and then comes back talking to the screen before he is shown clearing another bar.\", \"After,various images of pro athletes and high jumpers are shown before the man comes back to talk.\", \"Various images are then shown of people drinking Gatorade before the man comes back to talk and starts to stretch.\"]}, \"v_9njq_aC4AS4\": {\"duration\": 51.69, \"timestamps\": [[0, 51.69], [0, 17.83], [17.83, 27.39]], \"sentences\": [\"A woman is playing with a dog.\", \"  The dog is catching the frisbee over and over again.\", \"  The dog ran away with the frisbee but brought it back to the woman.\"]}, \"v_ICMcCoyuBAw\": {\"duration\": 197.42000000000002, \"timestamps\": [[12.83, 44.42], [28.63, 153], [138.19, 197.42]], \"sentences\": [\"A person is seen unscrewing an outlet while speaking to the camera and showing how to properly roll wall paper onto a wall.\", \" She pulls the paper off  and rolls along the wall with a flat object and using a knife to cut down the sides.\", \" She pulls down the paper and rubs over the wall with a sponge, ending with her speaking to the camera.\"]}, \"v_QXAs-KJj7K8\": {\"duration\": 126.06, \"timestamps\": [[0.63, 35.93], [32.15, 89.5], [89.5, 119.13]], \"sentences\": [\"A man is seen speaking to the camera hosting a news segment and leads into people sitting around with a dog.\", \" Several shots are then seen of people playing crochet and speaking with one another.\", \" More clips are shown of people playing as well as speaking to the camera and shaking hands.\"]}, \"v_VcQHv5PHb-M\": {\"duration\": 160.87, \"timestamps\": [[0, 16.89], [17.7, 45.85], [46.65, 125.48], [126.28, 160.87]], \"sentences\": [\"Two boys are in a room.\", \" One is talking to the camera while the other is playing darts.\", \" They demonstrate how to do different throws, showing the names of the moves between throws.\", \" One boy lies on the ground next to a dart as the video ends, pretending to be dead.\"]}, \"v_x4Vk5wSH7xE\": {\"duration\": 25.57, \"timestamps\": [[0.51, 4.6], [7.41, 25.57]], \"sentences\": [\"The man is hitting the woman lightly with the red balloon, while holding the baby and the woman laughs.\", \" Then 2 people are shown playing at a game table.\"]}, \"v_Rvx2EoMScKg\": {\"duration\": 130.66, \"timestamps\": [[5.23, 125.43], [26.79, 28.09], [46.38, 99.3]], \"sentences\": [\"A boy plays piano in a living room where there are two people.\", \" A person next to the boy film the boy playing the piano.\", \" then, boy talk behind the boy.\"]}, \"v_0LJ1mSpqGJg\": {\"duration\": 192.33, \"timestamps\": [[0, 1.92], [1.92, 47.12], [47.12, 184.64], [184.64, 192.33]], \"sentences\": [\"An intro appears with a color screen and special effects that say COMPLEX NEWS.\", \"A man with a microphone is standing and talking and his name on the screen say's SEAN EVANS, and while he talks various clips of people are playing tennis in various different scenes.\", \"The man begins an interview with another man named MILOS RAONIC and just like before, various clips of tennis matches in different scenes are alternating between the interview.\", \"The video ends with the man talking into the camera by himself, saluting and quick flash of screens that include the company information flashes on the screen.\"]}, \"v_7kO_qcJEiu0\": {\"duration\": 186.57, \"timestamps\": [[0, 13.99], [19.59, 92.35], [111.01, 186.57]], \"sentences\": [\"A blonde woman is sitting at a desk and speaking.\", \" She separates her hair into sections, and begins braiding it.\", \" She completes the braid and clips it into place.\"]}, \"v_ijChwOwYDWc\": {\"duration\": 210.23, \"timestamps\": [[0, 26.28], [28.38, 89.35], [89.35, 146.11], [146.11, 210.23]], \"sentences\": [\"Out on cross lake a man is walking dragging his equipment behind him.\", \" He finds a little hole in the ice and sets up to fish, moving around here and there before finally settling in his chair.\", \" He starts to move his rod around in the water and pulls up a little fish.\", \" He caught himself a 9 inch blue gill, he goes back in and catches another one and he throws it back into the water.\"]}, \"v_aDaazrgvjJg\": {\"duration\": 23.29, \"timestamps\": [[0, 20.73], [20.73, 23.29]], \"sentences\": [\"A woman raise a weight until her shoulders, then she steps out a foot and raise the weight above her hear.\", \" Then, the woman drops the weight to the floor.\"]}, \"v_GQdkuWJGYFg\": {\"duration\": 165.09, \"timestamps\": [[0, 15.68], [16.51, 25.59], [26.42, 56.96], [56.96, 81.72], [82.55, 135.38], [134.55, 150.24], [151.06, 165.09]], \"sentences\": [\"We see a lady talking and standing in a kitchen.\", \" The lady waves to the camera and we see the title screen.\", \" The lady talks and we see her add strawberries to a glass.\", \" The lady juices a lemon, stirs it and pours the lemon juicer over the strawberries.\", \" The lady talks and drinks the juice from the glass.\", \" The lady throws her arms in the air, and points to the corner before waving.\", \" The title screen re-appears and we see the lady speak with a video in the upper right corner.\"]}, \"v_AimG8xzchfI\": {\"duration\": 227.21, \"timestamps\": [[3.41, 93.16], [77.25, 169.27], [160.18, 227.21]], \"sentences\": [\"An older man is seen kneeling down next to the ice and holding a large stick in his hand.\", \" He then puts the stick down stomping on it and leads into him with other men curling.\", \" The men continue to push the pucks around and shake hands in the end while walking away and scenery is shown.\"]}, \"v_LygR7ds26JY\": {\"duration\": 20.69, \"timestamps\": [[0, 2.17], [2.17, 7.34], [7.34, 15.21]], \"sentences\": [\"First the person sits down on the beam, but then she stands back up.\", \" The woman stands up when she sees a person running wiht a stick preparing to land on the blue beam.\", \" When the person lands on the blue beam, a few people clap for him.\"]}, \"v_IoJoUIxzdac\": {\"duration\": 53.38, \"timestamps\": [[0, 9.34], [9.61, 44.57], [45.11, 53.38]], \"sentences\": [\"A woman tries to solves a cube puzzle.\", \" After, the woman pass the cube to a man that starts to solves the puzzle.\", \" The man solves the puzzle.\"]}, \"v_pBaeRTgaNBM\": {\"duration\": 123.65, \"timestamps\": [[6.18, 82.84], [82.84, 101.39], [101.39, 121.79]], \"sentences\": [\"People workout abs in a machine pulling from a handle while a man explains the machine.\", \" Then, people lift weight and exercise, also the man lift weight.\", \" Then, people continue working out in the machine while the man talks.\"]}, \"v_ycA2gqWhPGk\": {\"duration\": 18.53, \"timestamps\": [[0, 3.52], [3.89, 18.53], [10.38, 18.53]], \"sentences\": [\"A man sits on the sidewalk pouring water on his hands and washes his face.\", \"  The camera moves and we see other men sitting and standing on the sidewalk near their merchandise.\", \" The camera pans right and we see people walking down the street in an outdoor market.\"]}, \"v_ne7uJQ0MUtE\": {\"duration\": 223.42000000000002, \"timestamps\": [[0, 11.17], [12.29, 93.84], [94.95, 106.13], [106.13, 168.68], [167.57, 192.14], [198.85, 223.42]], \"sentences\": [\"A lady in a polka dot shirt stands in a kitchen talking.\", \" The lady switches to a pink shirt and talks before pouring items into a small pot and stirring.\", \" The lady turns the fire off and removes her pot.\", \" We see the lady with a glass bowl of lemon juice as she juices more lemons into a white container.\", \" The lady puts the white container over a strainer into the glass bowl.\", \" The lady pours the lemon juice into a  larger glass pitcher.\"]}, \"v_-E2dqOULQgY\": {\"duration\": 68.34, \"timestamps\": [[0, 36.9], [40.32, 68.34]], \"sentences\": [\"A young man wearing a hat is seen playing a set of drums in front of an audience while they record him.\", \" More people are seen playing guitars and singing along while the man continues playing drums along with the song.\"]}, \"v_y_bXP4NtAw0\": {\"duration\": 197.07, \"timestamps\": [[0, 25.62], [68.97, 108.39], [108.39, 197.07], [190.17, 197.07]], \"sentences\": [\"A man bends down wearing a mask and starts welding.\", \" He stops and uses a tool to scrape what he just welded.\", \" He then starts welding again.\", \" He stops and lifts his mask up before reaching for the camera.\"]}, \"v_mzGbmHjdCM8\": {\"duration\": 80.03999999999999, \"timestamps\": [[0, 32.42], [32.42, 80.04]], \"sentences\": [\"A lawn mower is seen from the point of view of a person with the person pulling the string to start the mower.\", \" The person pushes the mower along the grass slowly while the mower cuts the grass.\"]}, \"v_CMGjxw3X1dI\": {\"duration\": 38.57, \"timestamps\": [[0, 38.57], [30.28, 38.57]], \"sentences\": [\"man is standing in a lake doing windsurf.\", \" man is holding the board and walking out the lake.\"]}, \"v_xzQRc682Isc\": {\"duration\": 77.25, \"timestamps\": [[0, 27.81], [25.49, 77.25]], \"sentences\": [\"The players are standing in the field in their jackets, one by one they came forward to raise their hands up.\", \" A chubby athlete swing his javelin ball, then spin and then threw the javelin ball, then he walked outside the net towards the people with umbrella.\"]}, \"v_rbKPBMRj9jY\": {\"duration\": 157.2, \"timestamps\": [[3.14, 14.93], [15.72, 73.88], [73.88, 157.2]], \"sentences\": [\"These three males are all being active outdoors and in the beginning, one is roller blading, another one walking and another one jogging.\", \" Next a man is shown roller blading all by himself in the streets, sidewalks, and over huge rocks.\", \"  He rollerblades in the streets where others are riding their bikes or just walking and drinking on something.\"]}, \"v_fnf7FbZkL6k\": {\"duration\": 76.58, \"timestamps\": [[0, 75.43], [1.91, 76.58], [0, 76.58]], \"sentences\": [\"man is standing in a greneg rassy yard painting a wooden fence.\", \" man is holding a pipe that he is using to paint the fence.\", \" man is wearing a mask in a large green field painting a wooden fence.\"]}, \"v_Oc8ACBiwIyE\": {\"duration\": 202.2, \"timestamps\": [[0, 202.2], [19.21, 202.2], [21.23, 202.2], [58.64, 202.2]], \"sentences\": [\"A man stands ono a clay roofed house.\", \" One by one he removes the clay tiles.\", \" Every time he removes a tile several bats fly out.\", \" Many bats fly out from the roof.\"]}, \"v_4x3dgSgXQ38\": {\"duration\": 70.17, \"timestamps\": [[0, 17.89], [0, 15.44], [15.79, 21.75], [20, 21.75], [29.47, 42.8], [45.96, 61.05], [58.94, 65.96]], \"sentences\": [\"A woman and child are slide down the playground slide.\", \" The guy captures the child sitting on the woman's lap while they slide down.\", \" Child's side touches the silver slide.\", \" Woman lands on the  ground while holding the child.\", \" A lady reaches and helps the child up.\", \" The lady helps the woman up.\", \" The woman similes at the camera.\"]}, \"v_MnZ9L54twws\": {\"duration\": 136.66, \"timestamps\": [[0, 12.3], [12.3, 21.18], [21.18, 136.66]], \"sentences\": [\"man is standing in a room making exercise in a rowing machine.\", \"two men are in a lake in a canoe.\", \" the man is in the room making exercise and showing the machine.\"]}, \"v_NLdhDlsMnxQ\": {\"duration\": 41.31, \"timestamps\": [[0, 17.97], [14.25, 41.31]], \"sentences\": [\"A dog is seen walking outside walking runny while one person sits and the other leads the dog.\", \" The woman and dog walking around the drive way and the continues walking strange.\"]}, \"v_gFv3PrFkeL0\": {\"duration\": 67.71, \"timestamps\": [[1.02, 32.5], [29.79, 56.2], [46.38, 67.71], [54.85, 67.71]], \"sentences\": [\"The boy walked in the living room carrying a flat iron and board with blue cloth on it, he ironed the shirt and wear the shirt.\", \" The boy checked on one shirt and threw it to the boy who is half naked, then the half naked boy hit the other boy with the shirt and the boy hit back.\", \" The boy in blue shirt threw the shirt to another boy, and the second boy wore the shirt in his neck.\", \" The boy with iron handed the shirt to the third boy, but the third boy hit the boy in the face, the boy ran after the third boy with iron in his hand.\"]}, \"v_iMwLP3y0VcQ\": {\"duration\": 42.26, \"timestamps\": [[0, 42.26], [2.75, 11.2], [10.35, 18.81], [21.76, 42.26]], \"sentences\": [\"A boy sits in a room wearing a hat.\", \" He takes a hit off of a hookah pipe.\", \" He blows it through a cardboard tube.\", \" He repeats this action again.\"]}, \"v_p8UOE62POAE\": {\"duration\": 18.95, \"timestamps\": [[0.09, 5.21], [3.98, 11.94], [9.57, 18.47]], \"sentences\": [\"A large calf is seen running around a pit followed by a man running into frame.\", \" The man chases around the calf and attempts to tie up the calf.\", \" He successfully ties up the calf and walks out of frame while an audience watches on the side.\"]}, \"v_CPnLc0MtBYc\": {\"duration\": 15.0, \"timestamps\": [[0, 8.4], [10.05, 15]], \"sentences\": [\"A boy stands on a track field.\", \"  He then runs to the high jump and completes it.\"]}, \"v_a68fUj833qg\": {\"duration\": 103.93, \"timestamps\": [[1.04, 54.56], [46.25, 97.18]], \"sentences\": [\"Several shots of alcohol as well as ingredients are shown followed by a person pouring a mixture into a glass and cutting up limes.\", \" The person squeezes the limes as well as adding more ingredients and shaking them up together and presenting in a cocktail glass.\"]}, \"v_ZF4oT2P0a54\": {\"duration\": 106.02000000000001, \"timestamps\": [[1.59, 100.72], [3.71, 9.54], [10.07, 100.72]], \"sentences\": [\"A man in a green and blue wet suit surfs on a rough series of waves in the ocean at the beach.\", \"  A man in a wet suit is seen walking along the shore and past a large hill of sand where a large truck is adding sand to the mound next to sandbags on the ground.\", \"  The man is then seen surfing with his knees bent and at times, being swallowed up by entire waves in the ocean water.\"]}, \"v_4fEMDQnD4Xg\": {\"duration\": 55.71, \"timestamps\": [[0, 11.14], [10.58, 55.71], [38.71, 55.71]], \"sentences\": [\"A table is shown with earrings and items on it.\", \" People are sitting on the ground playing drums.\", \" A man with a pony tail lifts up one of the drums.\"]}, \"v_5n8wY8hwy3Y\": {\"duration\": 175.32999999999998, \"timestamps\": [[0, 57.86], [57.86, 158.68], [156.05, 175.33]], \"sentences\": [\"A close up of childrens toys are shown followed by a person's hands putting wheels on the toy.\", \" The person then churns toy coal out into a bucket and line up the cars, followed by a car covered in goal and another using it for tires.\", \" In the end the toys are all lined up together and the camera pans out.\"]}, \"v_eS1r2Qi0qUM\": {\"duration\": 61.49, \"timestamps\": [[0.92, 30.44], [21.21, 60.87]], \"sentences\": [\"Four people are seen playing an intense game of badminton with one another as judges watch on the sidelines.\", \" The men continue playing with one another and shows several slow motion clips of the game in the end.\"]}, \"v_DZBu_U_Jt4c\": {\"duration\": 26.15, \"timestamps\": [[0, 19.22], [18.56, 26.15]], \"sentences\": [\"Various people are seen sitting around a casino with one teller shaking her body and head back and fourth.\", \" The people around move their arms around and several people watch on the sideline.\"]}, \"v_Zr8cz8QrBp4\": {\"duration\": 84.5, \"timestamps\": [[0, 4.22], [5.49, 68.87], [70.13, 84.5]], \"sentences\": [\"A building is shown from the outside.\", \" A young man starts break dancing, performing numerous stunts as he flips, spins, and kicks.\", \" As he finishes, we see him dancing as a stream of water appears to the left from a fountain.\"]}, \"v_BSg989GP5ro\": {\"duration\": 235.36, \"timestamps\": [[0, 18.83], [20.01, 42.36], [52.96, 235.36]], \"sentences\": [\"A girl talks as she leans forward and gestures.\", \" The girl presents ingredients and a spoon.\", \" The girl pours the ingredients into a mug and mixes with a spoon for a while.\"]}, \"v_MOG4eTo4Q4Y\": {\"duration\": 10.73, \"timestamps\": [[0, 9.17], [9.33, 10.73]], \"sentences\": [\"A group of kids gather on a room full of trampolines.\", \" They throw a bunch of balls off screen.\"]}, \"v_7DJDUzdw_I4\": {\"duration\": 49.13, \"timestamps\": [[0, 3.19], [3.69, 43.48], [44.96, 49.13]], \"sentences\": [\"A male African American gymnast is in a large arena full of people preparing for a performance.\", \"The man then grabs the bar and does a series of flips and turns and then jumps off and nods to the crowd.\", \"As he finishes,another person approaches the bars as well as a coach.\"]}, \"v_Upd7zpT6tuc\": {\"duration\": 201.48, \"timestamps\": [[0, 24.18], [28.21, 167.23], [172.27, 201.48]], \"sentences\": [\"A girl waves at the camera before we see a baseball field.\", \" Someone hits the ball, and runs to first base.\", \" A kicker wearing sunglasses walks over to the camera, talking.\"]}, \"v_yFPxSn69pcc\": {\"duration\": 93.81, \"timestamps\": [[0, 11.73], [11.73, 30.96], [30.02, 63.79], [63.79, 93.81]], \"sentences\": [\"A man in a burgandy and yellow uniform starts to back up a bit and then he pauses for a moment.\", \" He starts to run up and throws the ball he has in his hand.\", \" The batter hits the ball it goes flying,  the audience is sitting on the lawn watching the game.\", \" They are on the field just playing the game waiting to see what they should do next.\"]}, \"v_YNQphOFqDOA\": {\"duration\": 167.07, \"timestamps\": [[0, 20.05], [23.39, 81.03], [82.7, 167.07]], \"sentences\": [\"A city skyline is seen before the shadow of a man and a red car.\", \" A person is trapped in a room.\", \" A news woman speaks about the new movie.\"]}, \"v_BSlVLi81VGM\": {\"duration\": 76.63, \"timestamps\": [[0, 71.26], [11.88, 76.63]], \"sentences\": [\"A small group of people are seen sitting around with a woman bending down in front of a man's leg.\", \" The woman rubs a razor all along the man's leg and other people in the room react to the shaving.\"]}, \"v_Zt9nALIsHPc\": {\"duration\": 46.49, \"timestamps\": [[0.23, 1.63], [1.86, 41.37], [19.76, 19.99], [21.85, 31.84], [44.86, 46.49]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy stands smiling while his picture is being taken.\", \" The guy catches a harmonica.\", \" The guy plays the harmonica.\", \" The credits of the video are shown.\"]}, \"v_3TsNntqwbSQ\": {\"duration\": 43.42, \"timestamps\": [[0, 4.78], [4.99, 35.17], [35.39, 43.42]], \"sentences\": [\"A view is shown of the sphinx and pyramid in Egypt.\", \" A group is walking and riding camels to the site.\", \" They are looking at the pyramids as they ride.\"]}, \"v_DRSH-_Ye9eE\": {\"duration\": 40.64, \"timestamps\": [[0, 40.64], [1.22, 22.35], [19.1, 21.74], [24.38, 40.64]], \"sentences\": [\"We see a group of young men playing lacrosse on a  field outdoors.\", \" The team runs to the left and then to the right.\", \" A man hits another man with the lacrosse stick and knocks the man down.\", \" A man runs all the way down the field to the other side and another man throws the ball in the net and makes a goal.\"]}, \"v_29UfCoftDkA\": {\"duration\": 47.18, \"timestamps\": [[0, 3.77], [4.01, 33.5], [34.92, 47.18]], \"sentences\": [\"A man is on a physical therapy rail in a building.\", \" He uses the railing to help himself guide and walk forward.\", \" He then goes backward, slowly and cautiously taking each step.\"]}, \"v_EIibo7aTpys\": {\"duration\": 170.81, \"timestamps\": [[4.27, 162.27], [5.12, 29.04], [6.83, 77.72], [77.72, 166.54]], \"sentences\": [\"A man in a padded gym room demonstrates how to kick box with a pair of gloves and a hanging punching bag.\", \"  A barefoot man in a red t-shirt and wearing boxing gloves stands in a mirror walled gym room, on a padded floor and demonstrates how to jab, all while talking to the camera.\", \"  The man then demonstrates foot work and guard and block boxing techniques.\", \"  The man then incorporates the use of the punching bag to demonstrate block, jab and foot work moves on the bag.\"]}, \"v_sVma83g_wmg\": {\"duration\": 222.12, \"timestamps\": [[0, 17.77], [18.88, 195.47], [195.47, 216.57]], \"sentences\": [\"A girl shows a hair pin and a spray bottle.\", \" Then, the girl shows how to make a braid on the front of the front of the head.\", \" After, the girl shows the braid and blows a kiss with both hands.\"]}, \"v_sgFp3HCSgCo\": {\"duration\": 216.2, \"timestamps\": [[5.41, 48.65], [50.81, 68.1], [74.59, 170.8]], \"sentences\": [\"a woman is standing on an ice rink talking to a man.\", \" They start scrubbing the ice in front of a ball.\", \" They continue talking on the ice.\"]}, \"v_UNbC2c1C824\": {\"duration\": 90.72, \"timestamps\": [[0, 85.28], [6.8, 85.28], [44.45, 46.27]], \"sentences\": [\"A woman is dancing with a baton.\", \" She twirls the baton around in the air.\", \" She does the splits on the ground.\"]}, \"v_5ry-UTd0y_o\": {\"duration\": 156.46, \"timestamps\": [[0, 7.82], [7.82, 60.24], [60.24, 64.93], [64.93, 95.44], [95.44, 156.46]], \"sentences\": [\"A man in a green jacket rides the rope tow on an inner tube.\", \" Different people are featured riding down the slope on inner tubes.\", \" A close up of a girls face while she is riding down the slope on an inner tube.\", \" A close up of a boy's face wearing ski goggles while goes down the slope on an inner tube.\", \" More scenes of different people sliding down the slope on inner tubes.\"]}, \"v_YySTmiavdMc\": {\"duration\": 36.92, \"timestamps\": [[0, 36.92], [3.51, 36.92], [1.66, 36.92]], \"sentences\": [\"A large tractor is driving through a field.\", \" It is pulling a plow behind it.\", \" There is a white horse in the field next to it.\"]}, \"v_ym_OhvcJ--w\": {\"duration\": 76.53, \"timestamps\": [[0, 5.36], [6.89, 17.6], [24.49, 64.29], [67.73, 76.53]], \"sentences\": [\"A field of purple flowers is shown in an image.\", \" A wood cabin and cars going over the snow covered mountains appear, before a crowd of skiers are shown gathered on the mountainside.\", \" The skiers begin skiing down the mountains, multiple people in a row before entering an ice cavern.\", \" The people rest in lawn chairs outside the cabin after they are done.\"]}, \"v_UhgVO1QaP2s\": {\"duration\": 166.67000000000002, \"timestamps\": [[0, 40.83], [40.83, 46.67], [46.67, 60], [60, 83.34], [83.34, 115.84], [117.5, 145.84], [150.01, 166.67]], \"sentences\": [\"We we boys in diaper sumo gear running around in a gym, the boys then begin to wrestle.\", \" We see two of the boys being interviewed by two men.\", \" The boys wrestle again and we see images of men wrestlers.\", \" An interviewer walks into an office an talks to a man.\", \" We see a circus show in an empty stadium.\", \" We see scene of the city with buildings and people.\", \" We see the man talk again and the circus.\"]}, \"v_aDWrPrNFdR0\": {\"duration\": 111.99000000000001, \"timestamps\": [[1.68, 33.04], [25.2, 68.31], [29.68, 91.27], [45.92, 108.63], [64.95, 108.63], [81.19, 108.63], [95.75, 108.63]], \"sentences\": [\"Four people wearing red shirts are walking in the lighted restaurant.\", \" Four girls walked inside the red barn, a man and woman were talking, then a man with mustache and other guy in yellow shirt threw the white balls and fell in red cup.\", \" The men threw the balls in the red cups while the girl and guy in red shirts are cheering.\", \" Two men threw the balls in the cups in the opposite side of the table, while the girl in orange threw the ball to the opposite side of the table, a guy with mustache took the ball in the cup, threw it on opposite side and gave a high five to the other guy.\", \" The guy threw the ball in opposite side but the girl in orange blew the ball away, then the she threw the ball to the other side of the table.\", \" A man talked to the waitress, raised his finger with money then placed it in her jean's belt, and let her go.\", \" The waitress talked to the chubby guy, while the person in red shirt threw the ball into his cup and they cheered.\"]}, \"v_GKM-K8jbfyE\": {\"duration\": 119.77000000000001, \"timestamps\": [[0.6, 34.73], [35.93, 91.02], [88.63, 117.97]], \"sentences\": [\"A close up of a window is shown followed by a person using a tool on the windows.\", \" The person moves the stick all along the windows while the camera captures it's movements.\", \" The person moves the object up and down and all around the window.\"]}, \"v_BtYKJOmw-aU\": {\"duration\": 112.66, \"timestamps\": [[0, 30.98], [30.98, 95.76], [95.76, 112.66]], \"sentences\": [\"A man is talking while holding a toothbrush in his mouth and starts to brush his teeth.\", \" The man continues to brush his teeth while talking some as well.\", \"  The man grins with paste in his mouth and continues to brush his teeth.\"]}, \"v_gt2Sp_iG2hU\": {\"duration\": 214.6, \"timestamps\": [[0, 5.36], [5.36, 16.09], [16.09, 49.36], [49.36, 208.16], [208.16, 214.6]], \"sentences\": [\"An intro black screen appears and white words appear on the screen that say FreeDrumLessons dot com.\", \" A man is now sitting at a drum set where he's talking and the words on the screen indicate his name is Jared Falk from Blues Shuffle Beats.\", \" The man then touches paper that is near to him and the words on the screen indicate they are sheet music that's available at www dot FreeDrumLessons dot com and he continues to talk.\", \"When the man is done talking he begins to play the drums for a short while, resumes back to talking and does this back and forth with playing and talking until he ends the lesson with just talking.\", \"The outro appears and it's a black screen with white lettering that include the information about the video.\"]}, \"v_Pv6oIFroaCQ\": {\"duration\": 173.71, \"timestamps\": [[0, 12.16], [19.11, 33], [34.74, 44.3], [46.9, 59.93], [60.8, 73.83], [127.68, 132.02], [74.69, 125.94], [133.76, 153.73]], \"sentences\": [\"A woman stands and discusses before beginning a dish.\", \" Butter and sugar are mixed in a bowl.\", \" Dry ingredients are added to a separate bowl and mixed.\", \" The dry ingredients are added to a bowl with blended wet ingredients.\", \" The cookie dough is placed in a pan and set into an oven.\", \" The baked cookies are removed from the oven.\", \" The lady discusses the recipe after the cookies have been made.\", \" The lady eats a baked good and shares with her dog.\"]}, \"v_bZ4r3Y_qceE\": {\"duration\": 36.85, \"timestamps\": [[0, 9.21], [9.21, 26.72], [26.53, 35.19]], \"sentences\": [\"An athletic woman is seen standing ready for a track.\", \" She runs down the track and into a sand pit.\", \" She jumps one more time and is seen walking away.\"]}, \"v_g5CYoFJFkPk\": {\"duration\": 105.68, \"timestamps\": [[2.11, 102.5], [24.31, 86.65], [89.3, 105.68]], \"sentences\": [\"A woman is seen performing a routine on a large gymnasium floor with a baton in her hands.\", \" She continues spinning and flipping around the floor with her baton while a panel of judges watch her perform.\", \" She finishes her routine with a few more spins and presenting her stick into the air.\"]}, \"v_DrQgYA5_8VA\": {\"duration\": 29.68, \"timestamps\": [[0, 29.68], [0, 8.01], [8.16, 29.68]], \"sentences\": [\"A person sails in a boat in the river.\", \" Two men stands on the bank of the river close to the boat.\", \" Suddenly, a man is pulled by the boat and does water ski.\"]}, \"v_l_T3zfRQhic\": {\"duration\": 24.01, \"timestamps\": [[0, 4.2], [5.76, 17.53], [18.01, 24.01]], \"sentences\": [\"A man is standing in his yard.\", \" He is using a tree trimmer on his short trees.\", \" He goes down the side, trimming them one by one.\"]}, \"v_CHMk7efu1ro\": {\"duration\": 76.37, \"timestamps\": [[0, 10.31], [11.46, 24.44], [24.44, 45.44], [46.97, 60.71], [61.1, 76.37]], \"sentences\": [\"An introduction is seen with logos running across the screen and a magazine cover.\", \" An athlete in black pants sits on a rowing machine and pulls on a weighted cable.\", \" The athlete switches to a one arm rowing exercise on the machine.\", \" The man switches to a one leg stance on the machine.\", \" Logos and websites are seen on the screen in white and orange text.\"]}, \"v_gnmtsqvTO_c\": {\"duration\": 178.7, \"timestamps\": [[0, 85.78], [85.78, 151.9], [158.15, 178.7]], \"sentences\": [\"A man in a lab coat is talking as he also visits with patients.\", \" He shows step by step instructions on how to wash hands properly.\", \" When he is done, he dries his hands with a paper towel.\"]}, \"v_s2VpBgSWIPg\": {\"duration\": 203.29, \"timestamps\": [[0, 9.15], [10.16, 66.07], [67.09, 106.73], [109.78, 153.48], [153.48, 172.8], [173.81, 184.99], [186.01, 190.08], [190.08, 203.29]], \"sentences\": [\"Several advertisements flash across the screen.\", \" A group of teenaged kids are playing hopscotch with a man.\", \" He points where they are to jump.\", \" They take turns jumping, then it is his turn.\", \" He draws on the concrete with chalk.\", \" A group of boys begin to play as well.\", \" A girl begins jumping again.\", \" The screen cuts to advertisements.\"]}, \"v_cWpT8nb2a9s\": {\"duration\": 126.11, \"timestamps\": [[0, 6.94], [8.2, 19.55], [27.11, 69.36], [70.62, 110.98], [112.24, 126.11]], \"sentences\": [\"A city street is shown with cars driving down the street.\", \" A group full of girls are perform practice cheers in a room.\", \" A woman who is the coach talks with the camera, as do some of the dance mothers.\", \" Judges watch the girls compete, and the coach helps push them along.\", \" The girls hug at the end of the competition.\"]}, \"v_txyXUXWybt4\": {\"duration\": 85.89, \"timestamps\": [[0, 38.22], [39.08, 85.89]], \"sentences\": [\"A man is seen spinning a blade with his foot on a machine and moving his hands up with down holding a knife.\", \" The camera captures him from several angles while he sharpens the knife with complete concentration.\"]}, \"v_3-KLYPzd1zU\": {\"duration\": 117.7, \"timestamps\": [[1.18, 38.84], [32.96, 83.57], [75.33, 116.52]], \"sentences\": [\"A heavy water flow is seen followed by a person riding down on a tube.\", \" Several shots are shown of people riding in tubes down a rough river.\", \" More shots are shown of the area as well as people riding in the tubes and walking with the tubes.\"]}, \"v_fE3j74_s4KY\": {\"duration\": 226.26, \"timestamps\": [[0, 7.92], [9.05, 168.56], [84.85, 93.9], [87.11, 104.08], [170.82, 187.79], [190.06, 214.94], [214.94, 226.26]], \"sentences\": [\"We see a blue opening screen and a photo of a man.\", \" We see men playing soccer in an indoor gymnasium and the goalie blocks shot after shot.\", \" The goalie spins on the ground.\", \" We see the goalie spin again.\", \" We see still of men in soccer gear.\", \" We then see boys of around 10 in soccer gear.\", \" We then see the ending credits.\"]}, \"v_CQ0r8ldAKl8\": {\"duration\": 229.86, \"timestamps\": [[0, 50.57], [50.57, 220.66], [220.66, 229.86]], \"sentences\": [\"Michelle Obama is sitting in a white chair talking to a male dressed in a black suit and purple tie.\", \"They then get up with jump ropes and the two begin doing various types of jumps.\", \"After,the host hugs Michelle and begins smiling at the camera.\"]}, \"v_zhH7wxXrGSY\": {\"duration\": 176.4, \"timestamps\": [[0, 176.4], [3.53, 13.23], [11.47, 13.23], [21.17, 28.22], [26.46, 33.52], [31.75, 84.67], [82.03, 89.08], [86.44, 93.49], [91.73, 112.9], [110.25, 156.12], [152.59, 176.4]], \"sentences\": [\"There's an artist painting a square canvas board with several acrylic colors using a flat brush in a studio.\", \" She begins by painting blue strokes with the flat brush on the canvas surface.\", \" Then uses a dryer to dry the wet paint quickly.\", \" Then she uses a sharp blade to scrap off some paint in horizontal strokes.\", \" She then applies some more paint over that and dries it with a dryer.\", \" Then she uses some yellow and red color to paint over the blue strokes on the canvas using the flat brush.\", \" she also uses some white paint to draw thin lines over the painted surface, followed by drying the paint.\", \" Over that, she paints a much lighter shade of yellow and then dries it again with a dryer.\", \" She goes over the surface with additional yellow paint and adds some more blue and white strokes over the thick paint coated surface of the canvas.\", \" She draws some bold blue lines with the flat brush and defines it with some lighter color.\", \" She shows the finished painted canvas that has thick strokes of dark blue shades and some lighter shades.\"]}, \"v_IeTMYNbQSp0\": {\"duration\": 19.13, \"timestamps\": [[0.29, 3.25], [3.83, 13.68], [13.01, 18.75]], \"sentences\": [\"A woman is seen close up standing in front of a car.\", \" The woman bends down in front of the car and dips a rag into a bucket.\", \" She pulls out the rag from the bucket which is full of water.\"]}, \"v_3JHIcli-Wlg\": {\"duration\": 48.65, \"timestamps\": [[0, 6.81], [8.76, 14.84], [14.11, 37.94], [38.92, 43.54], [43.54, 48.65]], \"sentences\": [\"A gymnast stretches out and rubs his hands before a performance.\", \" The gymnasts jumps up and mounts the platform.\", \" The gymnast swings his legs and body using hand grips on a platform.\", \" The gymnast does a hand stand then dismounts from the platform.\", \" The gymnast bows then joins coaches.\"]}, \"v_i3DJXbrg0vk\": {\"duration\": 65.13, \"timestamps\": [[0, 4.56], [4.56, 16.61], [16.93, 17.91], [20.84, 23.77], [32.89, 54.06], [56.34, 65.13]], \"sentences\": [\"A person is standing, preparing to throw the hammer in track and field on a the field in a large stadium.\", \" The person spins their body and let's go of the string on the hammer and it flies across the field.\", \" Two men run out and measure the distance.\", \" We see people in the crowd clapping.\", \" The scores are posted and the person who threw jumps and claps and runs to the wall to talk to family in the crowd.\", \" We see a family member yelling to the thrower.\"]}, \"v_gqK_jApRT5E\": {\"duration\": 176.87, \"timestamps\": [[7.07, 175.98], [7.07, 81.36], [79.59, 140.61], [149.45, 174.21]], \"sentences\": [\"A group of people of various ages come together to paint a wooden picket fence white,  interspersed with still images of the fence painting event.\", \"  A group of people paint a wooden fence white outside of a house.\", \"  As the people paint the fence several still shots of the people painting appear.\", \"  A still shot of a girl with paint on her hands appears as the final still shows display before the scene fades to yellow.\"]}, \"v_OBb4013eIc8\": {\"duration\": 163.17000000000002, \"timestamps\": [[0, 9.79], [8.97, 35.9], [35.08, 46.5], [46.5, 89.74], [89.74, 93.01], [93.01, 134.61], [134.61, 163.17]], \"sentences\": [\"Two people are in a Corvette with black interior and the driver begins turning the wheel.\", \"One he stops, the passenger gets out with his surfboard and grabs a green string.\", \"He then puts his feet in the surfboard and gets in the river next to the road.\", \"Once the car begins to drive off as he is pulling the guy in the river by the string attached to his trunk.\", \"The driver begins going to fast and the surf boarder gets off and gets out of the water.\", \"The driver continues driving down the road until he finds where he lost his friends.\", \"The passenger then gets in the car and they go down the road.\"]}, \"v_okvQJRTfGHk\": {\"duration\": 57.89, \"timestamps\": [[0, 31.84], [35.6, 57.89]], \"sentences\": [\"A man is in the water with a kayak.\", \" He gently tips the kayak back and forth, not really going anywhere.\"]}, \"v_nS9PgniAQAE\": {\"duration\": 161.68, \"timestamps\": [[0, 13.74], [14.55, 129.34], [38.8, 48.5], [62.25, 87.31], [110.75, 130.15], [133.39, 153.6]], \"sentences\": [\"A dog sits in a kennel and wags its tail.\", \" The dogs fur is trimmed by a groomer.\", \" The dogs tail and hind legs are trimmed by the groom.\", \" The groomer brushes and trims the back of the dog.\", \" The groomer trims the head and face of the dog.\", \" The dog jumps out of a carrier bag and plays with a ball.\"]}, \"v_2oNsMva04MM\": {\"duration\": 199.82999999999998, \"timestamps\": [[0, 35.97], [35.97, 155.87], [155.87, 199.83]], \"sentences\": [\"First the man introduces himself and what he does.\", \" Then he shows us how he paints a picture of nature.\", \" Next he gives an introduction to materials and an understanding of pigments and he talks in between his lessons.\"]}, \"v_KbbEbeCJTJg\": {\"duration\": 154.14, \"timestamps\": [[0, 10.02], [10.02, 30.83], [30.06, 106.35], [106.35, 154.14]], \"sentences\": [\"A sports clips is shown of  man throwing a shot put down the length of the field.\", \" A man is then shown speaking to the camera before it cuts back to the first athlete who is then shown throwing a shot put again, but from a different angle.\", \" Various people speak to the camera as the athlete is shown again making more throws.\", \" The same various people are shown speaking while he continues to throw the shot put down the field with a huge amount of strength.\"]}, \"v_GGv0sCOf_tM\": {\"duration\": 17.42, \"timestamps\": [[0, 1.65], [2.44, 9.4], [10.45, 17.42]], \"sentences\": [\"A woman is standing at a picnic table outside an RV.\", \" She is using water from a dispenser, pouring it onto material.\", \" She cleans the pink item with the water.\"]}, \"v_1U8y7e22SQg\": {\"duration\": 141.06, \"timestamps\": [[3.53, 55.01], [28.21, 136.12]], \"sentences\": [\"A woman is seen speaking to the camera while holding a mop and dancing around the room.\", \" The woman continues moping the floor while dancing as well as speaking to the camera and dumping the mop into a bucket.\"]}, \"v_pzkwJYJol7o\": {\"duration\": 159.5, \"timestamps\": [[0, 19.14], [20.73, 106.86], [114.84, 159.5]], \"sentences\": [\"Several people are boating on the ocean.\", \" They are in a competition, racing toward the shore.\", \" Numbers indicate where the finish line is as they reach them.\"]}, \"v_5dXi-tAGqbs\": {\"duration\": 236.94, \"timestamps\": [[0, 7.11], [9.48, 92.41], [93.59, 187.18], [191.92, 215.61], [217.98, 236.94]], \"sentences\": [\"A zumba fitness ad appears on the screen.\", \" We see a group of women inside a zumba class as they begin to dance in rythm to music.\", \" They step back and forth and spin around.\", \" They speed up their dancing as they go along.\", \" As the music ends, the women stop dancing and talk.\"]}, \"v_97LW-ivu01A\": {\"duration\": 159.2, \"timestamps\": [[11.14, 145.67], [15.12, 145.67], [15.92, 145.67], [89.95, 148.85], [98.7, 148.85], [119.4, 149.65]], \"sentences\": [\"The man sits on top of the kayak and then, puts his legs in the water while waving.\", \" He is then shown standing on shore pointing at the kayak.\", \" Next he pulls the kayak back into the water and sits on it while paddling himself away.\", \" He is now shown standing on shore again pulling the cord of the paddle.\", \"  But then he gets on the kayak in the water again and brings the kayak close to shore and drags it on there.\", \"  Then he is shown paddling far away on the kayak again.\"]}, \"v_w87EDMJo5NM\": {\"duration\": 88.35, \"timestamps\": [[0, 13.25], [13.25, 57.43], [56.99, 88.35]], \"sentences\": [\"A person is seen sticking their leg out with another girl walking into frame.\", \" The man take a drink while another girl dances around and another walks in with a razor.\", \" The girl then uses the razor on the man's leg to shave the hair.\"]}, \"v_HkzMA1jrm00\": {\"duration\": 72.99, \"timestamps\": [[0, 8.39], [10.58, 61.68], [62.04, 72.99]], \"sentences\": [\"A couple walks into a casino, and a man wearing an eye patch is playing poker.\", \" They sit at the table and play while the dealers hands out cards.\", \" The man with the eye patch sees through the card and knows what hand to play, winning the match.\"]}, \"v_xKePBw5XZHs\": {\"duration\": 210.93, \"timestamps\": [[0, 22.15], [22.15, 109.68], [109.68, 164.53], [164.53, 210.93]], \"sentences\": [\"woman is in a room and talking to the camera showing her nails.\", \" woman holds a pink nail polish and start painting her nails with a pink polish and with a white polish.\", \" woman put the white paint in a table and with a small toothpick is doing dots in the nail.\", \" woman pour pink paint in the table and with the toohpick put some dots in the white part of the nail.\"]}, \"v_9svdYGBSMvM\": {\"duration\": 62.37, \"timestamps\": [[0, 25.57], [30.56, 62.37]], \"sentences\": [\"A man is carving a face into a pumpkin.\", \" He details the expression with a fine knife.\"]}, \"v_woUdHiRWKMg\": {\"duration\": 180.63, \"timestamps\": [[10.84, 17.16], [19.87, 28], [30.71, 46.06], [83.09, 93.93], [95.73, 115.6], [114.7, 143.6], [145.41, 158.05], [166.18, 180.63]], \"sentences\": [\"A person puts a rock under the tire of a car.\", \" They look through the owners manual.\", \" They take a jack and a spare tire out of the trunk of the car.\", \" They jack the car up in the air.\", \" They take the old tire off.\", \" They put the new tire on.\", \" They lower the jack on the car.\", \" They put the jack and tire back in the trunk of the car.\"]}, \"v_sxQbiXWFdKs\": {\"duration\": 171.27, \"timestamps\": [[0.86, 5.99], [5.99, 21.41], [21.41, 65.94], [63.37, 66.8], [66.8, 145.58], [145.58, 169.56]], \"sentences\": [\"A group of people get off of a yellow school bus with life rafts around their neck and enter a foliage filled area leading to a body of water.\", \"  A man on a motorized boat talks to the camera while sitting on  the edge of the inside of a boat in front of the boat steering wheel.\", \"  The people are seen pushing off into the water in inflatable rafts, and donut shaped rafts, floating down the water solo or with others using paddles.\", \"  A woman is seen in the water in a kayak floating using a paddle to move in the water.\", \"  Children are seen entering the water area with floats as well as a pet dog in the area.\", \"  The man continues to talk to the camera intersperses with images of the people having fun at the water event.\"]}, \"v_nDo0nfs9Ee4\": {\"duration\": 17.32, \"timestamps\": [[0, 8.83], [6.24, 17.32]], \"sentences\": [\"A dog is seen sitting a shower with a person whose running water all over the dog.\", \" The person continues spraying water on the dog while the animal look off into the distance.\"]}, \"v_g_AwwSsBj0s\": {\"duration\": 232.15, \"timestamps\": [[3.48, 124.2], [74.29, 226.35]], \"sentences\": [\"A camera pans around various people riding around on roller blades inside a mall.\", \" The camera continues to watch the people as they skate all around the area and other people walk and watch in the distance.\"]}, \"v__4LZrf1GL1s\": {\"duration\": 37.01, \"timestamps\": [[0, 15.92], [14.99, 37.01]], \"sentences\": [\"Three people are shown walking on sand followed by several more shots of people walking and pouring a drink.\", \" A group of people are huddled together when a man begins running down the road and many other cheer and follow.\"]}, \"v_dc8pLGl9Ccc\": {\"duration\": 208.38, \"timestamps\": [[2.08, 43.76], [44.8, 169.83], [96.89, 199]], \"sentences\": [\"Three men are seen speaking to the camera with one pointing to the other two.\", \" The men then play games with women who are laughing at them.\", \" Some men get kissed and the others get slapped while still playing and smiling to the camera.\"]}, \"v_88TLZbT_KkE\": {\"duration\": 126.36, \"timestamps\": [[13.27, 111.83], [78.35, 85.93]], \"sentences\": [\"These construction workers are shown putting tiles on top of the smooth cement to create floors for a building.\", \" One man is seen pounding the tile to make it lye flat onto the cement because too much cement was put under the tile to try and make it fit on the cement.\"]}, \"v_00KMCm2oGhk\": {\"duration\": 31.56, \"timestamps\": [[0, 30.92], [28.87, 30.92]], \"sentences\": [\"A marching band goes down the road in parade style.\", \" A group of people cross a crosswalk.\"]}, \"v_vLL-voBPWM4\": {\"duration\": 82.18, \"timestamps\": [[5.34, 61.63], [12.33, 61.63], [29.17, 61.63], [31.64, 61.63]], \"sentences\": [\"These people are walking across a bridge holding kayaks.\", \" they then get in the kayaks and slide down the ramp waterfall to get to the water.\", \" Once they're down there, they will kayak to go further in the water.\", \"  The people are wearing helmets and a wet suit.\"]}, \"v_xMuC8lmVX3A\": {\"duration\": 224.03, \"timestamps\": [[0, 3.36], [5.6, 33.6], [38.08, 210.59], [40.32, 78.41], [89.61, 101.93], [105.29, 142.26], [210.59, 212.83], [218.43, 224.03]], \"sentences\": [\"We see the opening screen on black.\", \" A lady with no arms sits on the floor in front of a Christmas tree.\", \" The lady demonstrates wrapping gifts using her feet.\", \"The lady cuts the paper with scissors.\", \" The lady puts the box on the paper.\", \" The lady wraps the paper around the box and adds tape.\", \" The lady presents the wrapped gift to us and puts the gift under the tree.\", \" We see the closing screens and titles.\"]}, \"v_6rfFmqz6s8M\": {\"duration\": 62.16, \"timestamps\": [[0, 9.01], [10.26, 27.04], [30.46, 62.16]], \"sentences\": [\"A man is inside a building working with some kind of eqiupment.\", \" He uses a computer to monitor the process.\", \" We then see a man playing a game of table tennis against a large robotic machine.\"]}, \"v_FQVs9_IbgOY\": {\"duration\": 117.82, \"timestamps\": [[1.18, 4.12], [6.48, 107.22], [108.98, 111.93]], \"sentences\": [\"The credits of the clip are shown.\", \" An individual tries to stop a charging bull.\", \"  The credits of the video are shown.\"]}, \"v_Jsx38_s3Mnc\": {\"duration\": 194.3, \"timestamps\": [[0, 7.77], [7.77, 176.81], [176.81, 194.3]], \"sentences\": [\"man is walking into a room and stands in font of a table.\", \" the man take out the laces of the shoes and start polishing them with a little sponge and shoe varnish.\", \" the man put the laces again in the shoes and keep standing in the room.\"]}, \"v_ZKkjR2VTb7Y\": {\"duration\": 36.9, \"timestamps\": [[0.55, 12.54], [10.52, 25.64], [24.54, 36.34]], \"sentences\": [\"A close up of a lawn is seen followed by a person walking in holding a tool.\", \" The person then begins cutting up the lawn with the tool.\", \" He grabs a handful of grass and walks out of frame.\"]}, \"v_cxDPCkefl1A\": {\"duration\": 73.85, \"timestamps\": [[0.74, 21.42], [19.94, 52.07], [46.16, 72.01]], \"sentences\": [\"A child is seen licking a lollipop and smiling to the camera.\", \" More clips are shown of the people licking lollipops and women speaking to the camera.\", \" More women are seen making pops with the kids and showing them off in the end.\"]}, \"v_3f6G-qzwzfg\": {\"duration\": 205.36, \"timestamps\": [[4.11, 102.68], [90.36, 200.22]], \"sentences\": [\"A score being shown leads into a game of people playing cricket and reacting positively and negatively.\", \" More clips of the game are shown back to back as well as players cheering and celebrating.\"]}, \"v_kMRQmijCc5Y\": {\"duration\": 108.72, \"timestamps\": [[0, 7.61], [13.59, 55.99], [64.14, 108.72]], \"sentences\": [\"A blonde woman is talking in a room.\", \" She is shown on a running elliptical.\", \" She talks about the techniques of using the machine.\"]}, \"v_W_ZNdQLFmAA\": {\"duration\": 58.33, \"timestamps\": [[0, 9.04], [9.04, 28], [28, 42], [42, 45.2], [45.2, 50.75], [52.5, 58.33]], \"sentences\": [\"We see a wall with peeling and chipped paint.\", \" We see a man putting plaster on a ceiling then the man turns to leave.\", \" We see another man putting plaster on the ceiling.\", \" He hands the plaster to another man and gets another platform of plaster.\", \" We see a man shovel plaster on a platform.\", \" We see the finished room.\"]}, \"v_IsHM24qWmpI\": {\"duration\": 208.03, \"timestamps\": [[0, 9.36], [10.4, 32.24], [42.65, 124.82], [173.7, 192.43]], \"sentences\": [\"A brand logo appears for a bike parts company.\", \" The video will show how to assemble the parts for the bike wheel, and begins with the wheel being removed.\", \" The wheel frame parts are then installed, follow by the reassembly of the wheel.\", \" The tightness and evenness of the placement is double-checked.\"]}, \"v_R8vqzwGs6aE\": {\"duration\": 206.96, \"timestamps\": [[0, 48.64], [46.57, 163.5], [116.93, 203.86]], \"sentences\": [\"A camera pans around targets sitting in a field followed by a woman shooting a bow and arrow.\", \" More women are show shooting a bow and arrow off into the distance towards targets.\", \" The same woman practices again several more times and the camera follows her to grab her arrows.\"]}, \"v_J2gGPC98yec\": {\"duration\": 21.9, \"timestamps\": [[0, 7.01], [7.34, 17.96], [0, 21.9]], \"sentences\": [\"A man is standing on a field.\", \" He picks up a ball and spins around before throwing it onto the field.\", \" People are sitting down next to him watching.\"]}, \"v_cbR34GknrBs\": {\"duration\": 16.53, \"timestamps\": [[0, 16.53], [0, 2.15]], \"sentences\": [\"woman is in a racetrack running and making a high jump into arena.\", \" a man and a woman are running around the racetrack.\"]}, \"v_cY541XSdz50\": {\"duration\": 73.33, \"timestamps\": [[2.2, 72.96], [2.2, 23.47], [7.33, 38.13], [37.76, 73.33]], \"sentences\": [\"A man prepares to jump from an elevated platform before finally bungee jumping over a narrow water source.\", \"  The man is standing on the edge of an elevated platform, high above a heavily forested environment with his torso wrapped in black straps and people in front of him preparing and strapping him up.\", \"  The man laughs and bends his knees while holding onto a railing while another person in a black hat faces him from the side.\", \"  The man jumps backwards and the person in front of him throws out the rest of his extended bungee cord as the man falls just above a narrow water source and bounces around suspended in the air by the bungee cord.\"]}, \"v_9JMbahMzBjk\": {\"duration\": 52.62, \"timestamps\": [[0, 41.04], [13.42, 41.04], [42.36, 52.62]], \"sentences\": [\"A group of people are seen sitting around a living room with a man lighting and decorating a tree and two girls singing.\", \" The man interacts with the girls while a little one tugs on his shirt and the others continue bounding and singing.\", \" Eventually the man and little girl step out of frame.\"]}, \"v_ulV37d5wFaw\": {\"duration\": 202.04, \"timestamps\": [[0, 5.05], [5.05, 9.09], [10.1, 27.27], [27.27, 202.04]], \"sentences\": [\"A girl begins to brush her hair.\", \"  She shows us her stuffed animal, smalls it, and puts it down.\", \"  She puts the brush down, sections her hair, then begins brushing the top section.\", \"  Next we see it in a clip, and then the clips are replaced with curlers.\"]}, \"v_x0PE_98UO3s\": {\"duration\": 123.44, \"timestamps\": [[0, 123.44], [19.75, 20.37], [20.37, 33.33]], \"sentences\": [\"A lady shots a bow and arrow.\", \" The lady releases the wire.\", \" The arrow flies above the bullseye.\"]}, \"v_h3thb-S-3L8\": {\"duration\": 168.23, \"timestamps\": [[0, 7.57], [7.57, 104.3], [104.3, 138.79], [138.79, 150.56], [150.56, 160.66], [160.66, 168.23]], \"sentences\": [\"A greenish blue screen appears with a white drawing on the bottom right that is of 2 covered pots, and text written in a special effect style and they say \\\"DREAM SCHOOL\\\" and \\\"DREAM SCHOOL'S GUIDE TO PERFECT PASTA\\\" then another screen the words appear and say \\\"WITH JAMIE OLIVER AND BEN CHAPMAN.\", \"\\\"Jamie Oliver appears in front of a group of young people,talking, and another young man appears in an apron and he begins to make dough, flattens it on a wooden surface, rolls it through a pasta roller to flatten it, then rolls it through the pasta roller that cuts it into long strips they lays it on the wooden surface.\", \"Jamie Oliver speaks again and the young man pours oil into a pan, chops garlic, puts it in the pan, pours the contents from the can into the pan, adds the already strained pasta to the pan and the chef talks to the group.\", \"A close up shot of the pan is shown and a set of tongs are pouring the noodles and the sauce onto a white circular plate, and then it gets garnished.\", \"The plate gets held up and people in the group have their own forks and are getting some pasta off the plate and are eating it.\", \"A black outro screen appears and it has white text that display a website, and a blue and white large 4 on the right side.\"]}, \"v_KzxVQ19pRUU\": {\"duration\": 235.4, \"timestamps\": [[0, 60.03], [27.07, 173.02], [107.11, 223.63]], \"sentences\": [\"A man in gray shirt is sitting at the table, in front of him are bottles of liquors, glass, shaker, ice, raspberries and whipped cream.\", \" He put the raspberries in the metal shaker, crushed the raspberries in the shaker, he pour the tall bottle of liquid in a metal shot cup, pour it in the shaker, pour another liquid in the shaker, then pour two drops of pineapple juice, then put the crushed ices in the shaker, closed the shaker with the lid and started shaking the contents.\", \" He then removed the lid, then put the metal flat lid, pour the liquid in the cocktail glass, put the whipped cream on top and added some raspberries.\"]}, \"v_MHhMO3yhcfU\": {\"duration\": 140.01, \"timestamps\": [[0, 8.4], [8.4, 42.7], [41.3, 95.2], [95.9, 140.01]], \"sentences\": [\"Pictures of several men are shown out in a field taming a bull.\", \"Two men then appear in a field of dirt and begin to chase the bull.\", \"The bull then runs over a man and the other tries to help but he ends up on the ground.\", \"Another fight is shown and the bull is winning over the person in each video.\"]}, \"v_mE02JHvCEUM\": {\"duration\": 198.55, \"timestamps\": [[1.99, 151.89], [91.33, 184.66]], \"sentences\": [\"A man is seen playing a piano in the middle of a busy mall while people stand around him and watch.\", \" The man continues to play as people continue to stop and watch him on the side.\"]}, \"v_U7vWTmVzWSc\": {\"duration\": 197.09, \"timestamps\": [[0, 27.59], [28.58, 197.09]], \"sentences\": [\"A person is seen riding a wave along the water while many wad in the water around him and others head into the water.\", \" Several shots of people surfing along the water are shown as well as boats in the area as well as landscapes.\"]}, \"v_aQulBdlcGNU\": {\"duration\": 191.12, \"timestamps\": [[0, 78.36], [20.07, 78.36], [93.65, 191.12], [158.63, 191.12]], \"sentences\": [\"A woman lays on the ground.\", \" She then reaches for her toes.\", \" She then lays by a fountain.\", \" She kicks her feet forward.\"]}, \"v_MVxXCu4zxSM\": {\"duration\": 87.89, \"timestamps\": [[4.83, 81.74], [40.43, 41.75]], \"sentences\": [\"A man stands in a bathroom shaving with an electric razor.\", \" The man stops shaving for a second to rub his bare skin.\"]}, \"v_lARaqx1e7wM\": {\"duration\": 98.83, \"timestamps\": [[0, 40.52], [38.54, 98.83]], \"sentences\": [\"A lit up christmas tree is shown with a young child putting ornaments up as well as woman walking in and out of frame to help.\", \" The young child continues to hang up ornaments and presents them to the camera in the end.\"]}, \"v_45gAK3x_0ds\": {\"duration\": 188.43, \"timestamps\": [[0, 185.6], [6.6, 9.42], [10.36, 53.7], [187.49, 188.43]], \"sentences\": [\"A person bounces and flips on a tight rope (slack line).\", \" The credits of the clip are shown.\", \" People are standing in the rain and some with covering.\", \"  The credits of the video are shown.\"]}, \"v_tfepV4CXF7c\": {\"duration\": 65.97, \"timestamps\": [[0, 34.96], [34.63, 65.97]], \"sentences\": [\"little girl is sitting on a table and have a glass of soda on the hand, other people is in the table and an elderly man toast with her.\", \" the girl uses a napkin and clean her mouth and drinks again from the soda.\"]}, \"v_jLcYOkRvdic\": {\"duration\": 111.34, \"timestamps\": [[0, 111.34], [37.3, 42.31], [42.31, 48.99], [49.55, 111.34]], \"sentences\": [\"A child is helping to shovel snow.\", \"  The trees are covered in snow.\", \" A snow plow drove by.\", \" The whole family is shoveling the snowy driveway.\"]}, \"v_RX-9yj3PkYI\": {\"duration\": 106.7, \"timestamps\": [[0, 25.07], [32.01, 87.49], [76.29, 106.7]], \"sentences\": [\"A man is seen speaking to the camera while holding up a picture and reading to the camera.\", \" The man continues speaking while the camera zooms in on a cup of coffee and the man takes a sip.\", \" A person points to the drink while the man smiles to the camera and waves in the end.\"]}, \"v_hsJct3UsbAs\": {\"duration\": 211.02, \"timestamps\": [[0, 108.68], [94.96, 201.53]], \"sentences\": [\"A boat is seen riding along a large lake with two people skiing on the back of the boat.\", \" The people ride on the skis for quite some time and one moves into the other and both crash.\"]}, \"v_oDZlW0OgEgg\": {\"duration\": 134.12, \"timestamps\": [[0, 15.42], [18.11, 60.35], [63.04, 134.12]], \"sentences\": [\"A man is seen in a workshop standing at a table.\", \" He shows a piece of wood, and begins to strip it with fluid.\", \" He then polishes it to a deep sheen.\"]}, \"v_9elfMU_LRKc\": {\"duration\": 43.86, \"timestamps\": [[0, 5.48], [6.14, 27.63], [28.07, 43.86]], \"sentences\": [\"A couple of people are standing in a warehouse and talking.\", \" They are working on a bicycle.\", \" A man uses a tool to help repair the bike.\"]}, \"v_QwnUZ-5JaOM\": {\"duration\": 118.24000000000001, \"timestamps\": [[0, 118.24], [56.16, 56.75], [70.35, 73.9]], \"sentences\": [\"A man runs down a track and jumps into a sand pile several times.\", \" A man holds up a white paper in the air.\", \" The man is clapping his hands.\"]}, \"v_rBJBnf4F9sA\": {\"duration\": 209.53, \"timestamps\": [[0, 57.62], [57.62, 62.86], [79.62, 95.33], [100.57, 208.48]], \"sentences\": [\"A man fills two cups with a liquid and sets it on a board.\", \" He removes the cups and wipes the board off.\", \" He rubs something on the board and lights it on fire.\", \" He wipes the board off and picks it up.\"]}, \"v_NKblxYCeetg\": {\"duration\": 198.18, \"timestamps\": [[2.97, 101.07], [95.13, 194.22]], \"sentences\": [\"A small group of people are seen in various clips riding up a ski lift together and skiing down a snowy mountain.\", \" More shots are shown of people riding down the mountain and speaking to one another.\"]}, \"v_kfiF8A8g7UE\": {\"duration\": 37.2, \"timestamps\": [[0.19, 12.09], [8.74, 29.39], [28.83, 36.64]], \"sentences\": [\"A large crowd is seen sitting around a gymnasium while a gymnast stands ready on the side.\", \" The gymnast then runs to a set of uneven bars and begins spinning herself around on the bars.\", \" She continues performing her routine and ends by falling on the mat.\"]}, \"v_W8ayZca_fAY\": {\"duration\": 154.74, \"timestamps\": [[0, 150.1], [3.87, 23.21], [23.21, 150.87]], \"sentences\": [\"This man is showing viewers how to iron clothing using a Plutone steam generator.\", \"  First, he powers it on since the shirt is already on the ironing board.\", \" Next he begins ironing the red checkered long sleeved shirt and he irons every part of the shirt.\"]}, \"v_LN8UWHvoELs\": {\"duration\": 202.82999999999998, \"timestamps\": [[4.06, 58.82], [60.85, 150.09], [142.99, 199.78]], \"sentences\": [\"A close up of a drum kit is shown with a person holding sticks in the middle.\", \" The man then begins playing the drum by moving his sticks back and fourth.\", \" The person then plays the set continuously and pausing to hold his sticks down.\"]}, \"v_A7oh6l1AIvs\": {\"duration\": 89.17, \"timestamps\": [[0, 4.9], [11.15, 17.39], [18.28, 25.41], [24.97, 32.55], [32.55, 53.5], [53.5, 61.08]], \"sentences\": [\"A man works out on an exercise machine.\", \" He stands up and talks to the camera wearing a red shirt.\", \" He sits back down on the machine and pulls back on a bar.\", \" He does a crunch forward two times.\", \" He then pushes off and begins using the machine.\", \" The man stands back up and continues talking.\"]}, \"v_OBDq689jDDY\": {\"duration\": 61.29, \"timestamps\": [[0, 61.29], [13.18, 61.29], [18.39, 61.29]], \"sentences\": [\"A woman is exercising in a room.\", \" She steps up and down off a mat.\", \" She starts lifting one leg up as she steps onto the mat.\"]}, \"v_wUvC0TXK1PM\": {\"duration\": 81.27, \"timestamps\": [[0, 12.19], [18.29, 60.95], [63.8, 81.27]], \"sentences\": [\"A man is inside a living room of a house.\", \" He is using a platform to hold a loose window.\", \" He uses a brush to clean the window as he shows how it is done.\"]}, \"v_MdOAr_4FJvc\": {\"duration\": 233.13, \"timestamps\": [[0, 4.66], [6.99, 102.58], [103.74, 233.13]], \"sentences\": [\"A man is seated at a piano.\", \" He bigins to play a song by Timbaland on the piano.\", \" He rocks back and forth as he plays soulfully.\"]}, \"v_-FWGLSfI13Q\": {\"duration\": 223.05, \"timestamps\": [[6.69, 109.29], [50.19, 147.21], [126.02, 215.24]], \"sentences\": [\"A small boy is seen scooping out a pumpkin while looking to the camera and smiling.\", \" Another person plays in the distance and leads into a man helping the boy draw.\", \" The man then cuts out the outline with the boys help and shows the pumpkin in the dark.\"]}, \"v_aWnpbk007cE\": {\"duration\": 82.85, \"timestamps\": [[0, 63.38], [63.79, 71.66], [71.66, 82.85]], \"sentences\": [\"A large dragon kite is flying in the air.\", \" People are standing under the kite on the ground looking at it.\", \" The kite continues to fly in the sky.\"]}, \"v_hr8zkCXbTTk\": {\"duration\": 180.13, \"timestamps\": [[0, 49.54], [36.93, 125.19], [115.28, 175.63]], \"sentences\": [\"A large group of people are seen standing in a line as well as group up speaking to one another.\", \" Several clips are then shown of people curling along the ice.\", \" More clips are shown of people pushing the puck along the ice as well as speaking and celebrating with their teammates.\"]}, \"v_CgaWju3yGc4\": {\"duration\": 164.86, \"timestamps\": [[0, 42.86], [42.04, 58.53], [88.2, 108.81]], \"sentences\": [\"A man is kneeling down next to an exercise bike.\", \" He begins to take the bike apart.\", \" He puts a new belt on the machine.\"]}, \"v_ahpoDWYqtfw\": {\"duration\": 80.6, \"timestamps\": [[0, 39.49], [36.67, 80.6]], \"sentences\": [\"A close up of a wheel barrel is shown and leads into a man holding an axe.\", \" The man then swings the axe on several pieces of wood while looking back to the camera.\"]}, \"v_YqairWJU2Vw\": {\"duration\": 102.89, \"timestamps\": [[1.03, 44.24], [37.55, 100.32]], \"sentences\": [\"An athlete is seen standing up to a circle and leads into him throwing a discuss and his face being shown afterwards.\", \" Several more athletes are seen stepping up and taking their turn while their reactions are shown afterwards as well as their scores.\"]}, \"v_DbBqhlSvr-o\": {\"duration\": 64.13, \"timestamps\": [[0, 2.89], [2.89, 17.64], [17.64, 50.02], [50.02, 64.13]], \"sentences\": [\"A white screen appears with red and black writing that read \\\"The 3rd Hand Helping you keep straight\\\" and there's a white hand print next to the words.\", \"A woman is now on a ladder and she's trying to put some border wall paper to the top of a wall and is very frustrated that she's having a hard time, and she drops the wall paper and climbs down the ladder to the ground and is not very happy.\", \"A black object appears and the woman is now placing it onto a long pole, she's back on the ladder and she's using the black object to help her hold up the border wall paper as she applies it all along the wall.\", \"When the woman is done the camera pans to show the finished job and the outro appears that includes the website, company name, price and phone number.\"]}, \"v_I9NukwdINyY\": {\"duration\": 202.99, \"timestamps\": [[0, 100.48], [100.48, 202.99]], \"sentences\": [\"woman is standing in front of a table holding paintbrushes and talking to the camera about them.\", \" woman holds the brush and start painting on the white canvas.\"]}, \"v_taOJ9kUiwgM\": {\"duration\": 94.41, \"timestamps\": [[0, 3.78], [4.25, 6.61], [8.5, 76], [24.55, 28.8], [39.18, 42.01], [59.95, 61.84], [76.95, 90.64]], \"sentences\": [\"We see a few opening screens.\", \" We see judges and drummers.\", \" We see many chefs making omelettes.\", \" A man pours eggs in a pan.\", \" We see a crowd of white hats.\", \" We see a camera man filming.\", \" We see a man talking and ladies standing near him.\"]}, \"v_igrjxhf0XyY\": {\"duration\": 57.68, \"timestamps\": [[0, 12.69], [16.73, 57.68]], \"sentences\": [\"A woman is seen spreading sunscreen on a child's back followed by several shots of sun screen bottles and people putting it on.\", \" Scientists are shown as well as a man speaking to the camera and more people putting sunscreen on others.\"]}, \"v_Dzj5X11anrk\": {\"duration\": 88.49, \"timestamps\": [[0, 3.54], [3.98, 22.57], [23.01, 78.32], [78.76, 88.49]], \"sentences\": [\"We see an animated opening screen.\", \" We see trees, leaves, and mulch.\", \" A black pot contains mulch and three people are putting mulch around the base of a sapling.\", \" We see the ending credits screen.\"]}, \"v_ZlwkO1oFBHw\": {\"duration\": 140.97, \"timestamps\": [[0, 26.78], [32.42, 109.25], [70.48, 133.22]], \"sentences\": [\"There is a man shown shooting baskets in the beginning.\", \" Then when the video finally starts there are other men shooting hoops too.\", \" Some are running with two basketballs in their hands and shooting them.\"]}, \"v_l4LFSd-7hxU\": {\"duration\": 16.56, \"timestamps\": [[0, 4.3], [4.47, 11.26], [10.68, 15.89]], \"sentences\": [\"A close up of a fooseball table is shown with two people on the sides.\", \" The people grab onto poles and begin playing the game.\", \" A woman walks into the room and the men continue playing on the table.\"]}, \"v_UN0bAa_ko4I\": {\"duration\": 217.39, \"timestamps\": [[0, 1.09], [2.17, 4.35], [5.43, 14.13], [15.22, 123.91], [123.91, 183.69], [184.78, 217.39]], \"sentences\": [\"A view of the Oakland, California waterfront is shown.\", \" Mestre Calango is sitting on concrete near the water.\", \" Calango does a handstand on the pier.\", \"  He then starts dancing on the pier.\", \" He then takes his shirt and shoes off and dances on the beach and grass.\", \" A passerby speaks to him on the pier.\"]}, \"v_f1kY1-9XR1k\": {\"duration\": 152.35, \"timestamps\": [[0, 5.33], [5.33, 116.55], [116.55, 128.73], [128.73, 152.35]], \"sentences\": [\"A special effect screen appears with a green heart that is made to look like it's beating and has a white clip art scissors in the middle of it and the gray words \\\"PARIKMAXER TV\\\" under the heart.\", \"A man talks for a brief moment, a black screen appears with some foreign letters on it, then a woman is shown getting most of her hair braided by another woman, curled, teased, and then hair sprayed into a style.\", \" When the woman is done styling her hair still shots of different angles of the hairdo is shown.\", \"The hairdresser speaks then it fades to a black screen with a lot of foreign wording on it and the last screen has the heart and scissor logo with the website under it.\"]}, \"v_JeSxkw4ed-I\": {\"duration\": 45.05, \"timestamps\": [[0, 7.21], [9.01, 30.41], [29.06, 43.47]], \"sentences\": [\"A dog is seen sitting in a tub with two women are kneeling above him.\", \" He then begins washing a dog and spraying water all over the dog.\", \" One woman then scrubs the dog around with the water.\"]}, \"v_MIQiVsnwcWE\": {\"duration\": 208.68, \"timestamps\": [[0, 24], [30.26, 186.77], [188.85, 208.68]], \"sentences\": [\"A man dressed in black performs tai chi at a beach.\", \" The scene changes to the man in an indoors environment demonstrating techniques.\", \" The man, now dressed in white, performs tai chi at a beach once more.\"]}, \"v_4Ex-sB0vtwk\": {\"duration\": 9.2, \"timestamps\": [[0, 3.45], [3.13, 9.2]], \"sentences\": [\"A man is seen pushing a stick along a board standing next to a woman outside.\", \" The woman then pushes the puck along the board while looking back and smiling to the camera.\"]}, \"v_RhokmoZJrco\": {\"duration\": 26.29, \"timestamps\": [[0, 15.11], [16.56, 26.29]], \"sentences\": [\"Two people surfing kites are shown riding along the water followed by several more people riding in and out of frame.\", \" One person rides faster and whips themselves around while many watch on the side.\"]}, \"v_Y-2nhi8JdO8\": {\"duration\": 187.08, \"timestamps\": [[4.68, 107.57], [75.77, 177.73]], \"sentences\": [\"A person is seen close up holding a guitar and begins playing the instrument while moving his arms around.\", \" The man continues to play the instrument up and down moving his hands all around.\"]}, \"v_8s3b1f6OMw0\": {\"duration\": 33.07, \"timestamps\": [[0, 32.57], [12.57, 32.57]], \"sentences\": [\"A group of people are seen swimming across a large pool with various people watch and record from the sidelines.\", \" The people continue swimming around passing a ball to one another and playing a water of water polo.\"]}, \"v_SLdf2ZUdgEQ\": {\"duration\": 165.87, \"timestamps\": [[0, 31.52], [34, 165.87]], \"sentences\": [\"A man in a black shirt is holding a rope.\", \" He puts the rope under his foot and sticks his arm through the top of it.\"]}, \"v_altXks0a0qY\": {\"duration\": 35.69, \"timestamps\": [[0, 35.69], [0, 16.24], [16.6, 20.7], [21.06, 35.69]], \"sentences\": [\"Two woman are outdoors at a zoo riding on the back of a camel.\", \"  The woman are waving and  a man behind the camera is asking them to wave, look and say hi at the camera.\", \"  The camera man zooms in on the women as the woman in the red jacket gives a thumbs up.\", \"  As a woman mentions that she is ready the camel walks forward and then the camera pans down and toward bushes.\"]}, \"v_60Y0DfZhlHM\": {\"duration\": 169.9, \"timestamps\": [[0, 160.56], [59.47, 160.56], [74.76, 160.56]], \"sentences\": [\"A person is kneeling down painting something on the ground.\", \" They smooth out the paint.\", \" They continue painting layers on top of the paint.\"]}, \"v_6jgWCFWtCfU\": {\"duration\": 56.61, \"timestamps\": [[0, 32.27], [28.87, 56.61]], \"sentences\": [\"A large group of people are seen marching together with cheerleaders in the front and a marching band behind them.\", \" The group continues marching along the street followed by a man on a bike behind them.\"]}, \"v_ELiXlJUBzzw\": {\"duration\": 136.63, \"timestamps\": [[0, 38.26], [36.21, 103.84], [95.64, 133.21]], \"sentences\": [\"A close up of a car is seen with a person moving quickly around the sides.\", \" The person then puts soap all around the car and washes it off with a hose.\", \" He backs the car into the driveway and continues washing around the sides.\"]}, \"v_fmtW5lcdT_0\": {\"duration\": 13.4, \"timestamps\": [[0, 13.4], [2.55, 4.22], [7.17, 8.64]], \"sentences\": [\"A little girl is running on the grass.\", \" She picks up a soccer ball off the ground.\", \" She throws the ball back onto the ground.\"]}, \"v_AMMECm7Huhk\": {\"duration\": 166.79, \"timestamps\": [[0, 8.34], [16.68, 41.7], [42.53, 55.04], [56.71, 86.73], [87.56, 107.58], [108.41, 117.59], [115.92, 166.79]], \"sentences\": [\"A man holds up a bowl of ice cream and discusses.\", \" A coffee mug sits on a counter then dry ingredients and water are added before the contents are stirred with a spoon.\", \" A graduated cup with milk has the mixture poured into it and is stirred.\", \" A bowl has cream and a chocolate mixture added in and blended together.\", \" The ingredients are added to a tub and scoops of ice cream are taken from a tub after freezing.\", \" A bowl is filled with ice cream.\", \" The man enjoys the ice cream.\"]}, \"v_BQRidRi2V1c\": {\"duration\": 68.03999999999999, \"timestamps\": [[0, 50.69], [20.75, 68.04]], \"sentences\": [\"A large group of girls are seen dancing around a gymnasium holding jump ropes and leads into the girls performing a routine.\", \" The girls continue the routine all in sync and end by standing together and two high fiving.\"]}, \"v_MpqXCbsqVNQ\": {\"duration\": 174.2, \"timestamps\": [[5.23, 54.87], [38.32, 40.07], [55.74, 114.97], [115.84, 139.36], [140.23, 166.36]], \"sentences\": [\"A teen talks and then plays hurling alone and with a team.\", \" A person pass behind the teen wearing a helmet.\", \" A young man talks, then he plays hurling in a field.\", \" The young man talks, then plays, pose for a picture and carry a goal in the field while talking.\", \" After, the teen talks, then he is forming a circle with his team.\"]}, \"v_iubDO1DSMZk\": {\"duration\": 77.93, \"timestamps\": [[0, 13.64], [12.47, 68.97], [67.8, 77.93]], \"sentences\": [\"A small family is seen standing in front of the camera and leads into them decorating a tree.\", \" The family stops to pose for the camera and leads into more shots of them decorating.\", \" In the end the tree is shown finished.\"]}, \"v_u_HDCcby_B0\": {\"duration\": 117.52000000000001, \"timestamps\": [[0, 8.23], [14.69, 62.28], [72.86, 117.52]], \"sentences\": [\"A trophy is shown sitting on a table.\", \" Several people are on the field, one at a time.\", \" They are performing with their dogs, throwing frisbees and doing stunts.\"]}, \"v_qaB0igbuKuQ\": {\"duration\": 160.87, \"timestamps\": [[0, 65.15], [65.96, 129.5], [129.5, 160.87]], \"sentences\": [\"woman is standing holding a cat and put her on op of a table and giving her affection.\", \" woman holds a nail clipper and wrap a ca in a towel to cu her nails while other woman is holding the cat.\", \" woman us throwing a ball of yarn to the cat.\"]}, \"v_fG7iLOObw30\": {\"duration\": 181.28, \"timestamps\": [[0, 1.81], [1.81, 12.69], [12.69, 13.6], [13.6, 38.97], [38.97, 81.58], [81.58, 156.81], [156.81, 168.59]], \"sentences\": [\"Taylor Swift walking on the red carpet of an awards show.\", \" A collage of pictures of actresses and singers.\", \" a hair beautician demonstrates a cutting technique on a blond model.\", \" Kirbie Johnson a beauty reporter talks in front of Ramirez Tran Salon and meets with Anh Co Tran a celebrity hairstylist.\", \" More celebrity photos are shown while Anh Co Tran demonstrates hair styling on a female model.\", \" More celebrity photos are shown while Anh Co Tran continues cutting and styling the models hair.\", \" Anh Co Tran finishes styling the models hair and close ups of the model are shown.\"]}, \"v_NBawYEfglow\": {\"duration\": 85.38, \"timestamps\": [[0, 8.54], [8.54, 11.95], [11.95, 14.09], [14.09, 20.49], [20.92, 29.88], [32.02, 33.3], [33.73, 45.68], [46.11, 59.77], [59.77, 73], [73, 85.38]], \"sentences\": [\"People are jumping up and down.\", \" A man in a gold suit plays a violin.\", \" Two men in suits cheer.\", \" A woman in a green dress smokes and holds her ears.\", \" A man in a blue suit dances in the room.\", \" The man continues playing the violin.\", \" People dance in the room.\", \" The man finishes playing violin and starts talking.\", \" He walks away and talks to another man.\", \" He starts talking to a woman in a silver dress and they leave together.\"]}, \"v_n1yugby5jC0\": {\"duration\": 110.13, \"timestamps\": [[0, 110.13], [3.3, 110.13], [83.7, 89.76]], \"sentences\": [\"Women in bikinis are playing volleyball on a beach.\", \" There are people standing on the beach watching them.\", \" A woman goes under the net to the other side.\"]}, \"v_VxoBV76IkLM\": {\"duration\": 112.47999999999999, \"timestamps\": [[2.81, 30.93], [30.93, 69.17], [69.17, 110.23]], \"sentences\": [\"A man spins and launch a discus in a field.\", \" The man practice discus thow in a field.\", \" The person stands on round platform where spins and launch the disc.\"]}, \"v_4oZtb0kglx4\": {\"duration\": 217.62, \"timestamps\": [[0, 54.4], [54.4, 100.1], [100.1, 159.95], [159.95, 217.62]], \"sentences\": [\"French cancan candy wrap, you need  tissue paper, you fold it down really nicely.\", \" Then you get scissors and you cut off some of it, you put the gift in a different piece of tissue paper and fold it up nicely.\", \" After that you put it in the center of your wrap, twist the two ends and get some ribbon to tie the ends.\", \" Then you can unfold the bottom of the tissue paper to make a flower look.\"]}, \"v_j9QPrMZuegY\": {\"duration\": 121.46, \"timestamps\": [[0, 25.51], [34.62, 97.78], [98.39, 121.46]], \"sentences\": [\"A man is dressed as batman on a poster in a room.\", \" A woman lifts a barbell up into the air.\", \" She lifts it over her head, trying to hold it.\"]}, \"v_WN5EWPfDbog\": {\"duration\": 170.55, \"timestamps\": [[0, 13.64], [19.61, 86.98], [92.1, 170.55]], \"sentences\": [\"A man is in a casino, where he is a dealer.\", \" He deals several hands in front of him.\", \" A person at a computer is playing black jack, using the cursor to make decisions.\"]}, \"v_jxk6KOLu5kU\": {\"duration\": 120.33, \"timestamps\": [[0, 7.22], [9.02, 25.27], [25.27, 75.2], [75.81, 88.44], [89.64, 105.29], [105.89, 116.11], [117.92, 120.33]], \"sentences\": [\"A blonde woman with a lot of makeup on speaks.\", \" She holds a contact lens on her finger as she speaks.\", \" She takes her finger and places the contact lens in her right eye and she moves her eye around and looks around.\", \" She takes another contact lens on her finger and places it in the left eye.\", \" She moves her eyes around.\", \" She speaks as she showcases her eyes.\", \" She waves bye and smiles.\"]}, \"v_2ahuZDlObAQ\": {\"duration\": 196.4, \"timestamps\": [[0, 72.67], [64.81, 196.4]], \"sentences\": [\"A close up of a man is seen speaking to the camera and leads into him instructing how to properly climb a wall.\", \" The man then zooms in on legs moving back and fourth and shows more shots of moving him his arms and legs around while speaking to the camera.\"]}, \"v_SeVftOMjNMM\": {\"duration\": 16.14, \"timestamps\": [[0, 4.84], [4.12, 16.14]], \"sentences\": [\"A young boy dressed in a red sweater and black slacks is laying down on the ground playing dead.\", \"A group of the boy's friend them comes and grabs the boy and throws him on the couch.\"]}, \"v_K0MzjnMzbj4\": {\"duration\": 175.78, \"timestamps\": [[1.76, 84.37], [58.88, 169.62]], \"sentences\": [\"Several clips are shown of people playing basketball with one another followed by two men performing drills with one another.\", \" The men continue demonstrating how to perform proper basketball shoots while blocking the other.\"]}, \"v_wN2XnDS0aGc\": {\"duration\": 23.3, \"timestamps\": [[0, 1.52], [1.52, 8.16], [8.16, 23.31]], \"sentences\": [\"A very tall and lanky woman runs quickly and jumps over a very high horizontal pole, clears it and lands on the mat below it.\", \"When the woman lands she cheers on the mat and jumps off the mat and cheers some more by jumping around and throwing her hands in the air.\", \" A replay of the woman's jump plays and the woman has her two hands on her head and smiling in disbelief.\"]}, \"v_FbmK-7sZ3O4\": {\"duration\": 118.1, \"timestamps\": [[0, 15.35], [15.94, 30.11], [36.02, 102.15], [105.11, 118.1]], \"sentences\": [\"A team is playing on a giant ice hockey rink in front of a large crowd.\", \" The film is in black and white and is old.\", \" The players fight over the puck, trying to get it into the goals.\", \" The winners pose with a large cup trophy when the game is over.\"]}, \"v_asLRIsN6wLQ\": {\"duration\": 155.02, \"timestamps\": [[0, 29.45], [29.45, 65.11], [65.11, 102.31], [102.31, 155.02]], \"sentences\": [\"A man in a yellow shirt holds a ball on his shoulder does some movements and turns quickly to throw it.\", \" After him another man does the same technique and throws the ball as well.\", \" They take turns doing this and throwing the ball to see who gets it farther.\", \" Finally, the champion goes very last before throwing his ball into the distance.\"]}, \"v_cVuHOF56B64\": {\"duration\": 40.33, \"timestamps\": [[0.4, 40.13], [1.61, 29.85], [30.05, 31.06], [31.86, 38.72]], \"sentences\": [\"A commercial displays exhibiting video of people having fun at an outdoor beer pong festival.\", \"  A series of festival events are displayed including a group of people mock sword fighting,  playing instruments, dancing, and playing mini games of beer ping.\", \"  A group of children are shown at the end of one of the outdoor wooden picnic tables watching a beer pong game with shots of water in front of them.\", \"  More games of mini ping pong are shown with the winners smiling and people having fun at the event and expressing it through laughing, smiling and gesturing wildly with their arms.\"]}, \"v_qMJi2nXWOkg\": {\"duration\": 5.25, \"timestamps\": [[0, 1.05], [1.02, 3.94], [4.09, 5.25]], \"sentences\": [\"We see a man kick a ball and start running.\", \" A man in red grabs the ball and pushes a person in pink over.\", \" The camera turns on it's side.\"]}, \"v_B-6kP8M_GmM\": {\"duration\": 186.61, \"timestamps\": [[0, 6.53], [8.4, 61.58], [64.38, 129.69], [130.63, 164.22], [165.15, 186.61]], \"sentences\": [\"A man walks up holding a basketball.\", \" Scenes are shown of him playing the game, along with several images of him standing.\", \" He is talking to a man much shorter than him.\", \" He is shown playing a game with a virtual sumo wrestler.\", \" The shorter man stops to talk to the camera for an extended period.\"]}, \"v_QlTddnlIJpA\": {\"duration\": 74.65, \"timestamps\": [[0, 17.54], [17.54, 44.05], [44.42, 74.65]], \"sentences\": [\"A nice and lush field is shown and in the distance, a young man on a horse comes into the frame.\", \" The field is shown again and the same man rides up on a different horse.\", \" The field is then shown again with the same man riding up on yet another horse.\"]}, \"v_RTwa2d6Oqvo\": {\"duration\": 45.07, \"timestamps\": [[0, 0.9], [0.9, 30.42], [30.42, 33.58], [33.58, 44.62]], \"sentences\": [\"A man is kneeling on the ground shining a shoe.\", \" He is rubbing the shoe with a yellow block.\", \" A man in white walks down the sidewalk.\", \" Traffic continues as normal down the highway.\"]}, \"v_fvslbZDJ3C8\": {\"duration\": 34.47, \"timestamps\": [[0, 1.55], [1.55, 34.47], [7.93, 8.79], [19.48, 28.96], [32.06, 34.47]], \"sentences\": [\"We see an opening title screen.\", \" We then see people playing dodge ball.\", \" A man does a back flip to avoid being hit by the ball.\", \" We see the man's back flip two more times in slow motion.\", \" The video returns to normal speed.\"]}, \"v_Ji3qvOdmOZA\": {\"duration\": 173.06, \"timestamps\": [[0, 36.34], [35.48, 123.74], [128.93, 162.68]], \"sentences\": [\"A man is seen holding a tattoo gun and dipping it into paint while tattooing another person's arm.\", \" The man moves back and fourth on the arm while speaking to the man.\", \" He pauses to show off the color a bit and the camera pans around a room.\"]}, \"v_mSonugqhYuE\": {\"duration\": 194.37, \"timestamps\": [[15.55, 24.3], [39.84, 69], [78.72, 172.01], [172.01, 194.37]], \"sentences\": [\"A person turns a bike upside down on a tarp.\", \" They pull a tire out of a box and puts it on the bike.\", \" She flips the bike back over and sets it against a wall.\", \" He gets on the bike and rides away.\"]}, \"v_MoSuxL57xRY\": {\"duration\": 225.75, \"timestamps\": [[1.13, 97.07], [92.56, 217.84]], \"sentences\": [\"A man is seen standing on a snowy hill speaking to the camera and leads into several clips of him snowboarding.\", \" The woman continues riding and spinning around the snowy hill and ends by still speaking to the camera.\"]}, \"v_gdmGZK_vFAc\": {\"duration\": 36.47, \"timestamps\": [[0, 24.07], [27.72, 30.45], [14.04, 24.98]], \"sentences\": [\"woman is standing in front of a trash bin peeling out potatos.\", \" peeled potatos are on a counter and woman put them in the middle of the counter.\", \" woman walks to the sink and back tot he counter again.\"]}, \"v_Ta_Kf0dCd3U\": {\"duration\": 157.06, \"timestamps\": [[4.71, 25.91], [27.49, 77.74], [77.74, 98.95], [98.95, 148.42]], \"sentences\": [\"A man test a square shower drain with tiles around.\", \" Then, the man puts cement around the hole, the square shower drain and  the tiles, then assemble all and press the tiles.\", \" The the man lower the square shower drain with a tool and clean with a cloth.\", \" After, the man puts tiles on the border of the shower.\"]}, \"v_Jp8L9h4aaV4\": {\"duration\": 183.83, \"timestamps\": [[0, 178.32], [181.08, 182.91], [180.16, 181.99]], \"sentences\": [\"Women exercise stepping on aerobic steppers while dancing, going around and extending the arms.\", \" Then, the women finish their aerobic workout and clap their hands.\", \" A woman wearing a blue tank leave the room.\"]}, \"v_HdZjxdQhtZo\": {\"duration\": 157.94, \"timestamps\": [[0, 17.37], [25.27, 116.88], [122.41, 157.94]], \"sentences\": [\"A news anchor is talking inside a news room.\", \" A group of young kids are sitting on bleachers at a curling game.\", \" They are then shown taking turns playing the game.\"]}, \"v_UGjF8G0HLZA\": {\"duration\": 72.73, \"timestamps\": [[0, 8.73], [10.55, 21.45], [22.54, 70.54]], \"sentences\": [\"A man stands in front of a paintball course with inflatable obstacles.\", \" A team leader holds a clipboard and goes over a game plan with other paintball players.\", \" The players run out from behind a low wall and take cover behind inflatable barriers.\"]}, \"v_ICBrXUuwvgg\": {\"duration\": 193.93, \"timestamps\": [[0, 12.61], [22.3, 62.06], [67.88, 156.12], [157.09, 176.48], [179.39, 193.93]], \"sentences\": [\"A man is talking behind a van.\", \" He arrives an a large canyon.\", \" He climbs to the top, sitting and looking down the sides.\", \" He then climbs down the canyon without a harness, ropes, or assistance.\", \" He becomes stuck, and climbs back to the top before talking to the camera.\"]}, \"v_ykov_joUUTk\": {\"duration\": 204.27, \"timestamps\": [[0, 63.32], [50.05, 158.31], [125.62, 195.07]], \"sentences\": [\"A man is seen bending down before the camera performing martial arts moves.\", \" He kicks and swings his legs around while the camera captures his movements.\", \" He continues jumping around performing many kicks and facing back to the camera.\"]}, \"v_4mlA78hn4mY\": {\"duration\": 214.14, \"timestamps\": [[0, 8.57], [8.57, 110.28], [110.28, 183.09], [183.09, 214.14]], \"sentences\": [\"Two women  are in a small room with three walls and a set of glass doors as the fourth.\", \"One of the ladies bounces a ball and then serves it against the wall and the two begin hitting it.\", \"The momentum is suddenly lost and they have to start over as the game continues,they  stop the ball again and have two start over twice.\", \"A man then continuously walks up to the glass and sticks something through the door and then finally the mannish looking female leaves the room.\"]}, \"v_FLImHIKzzm4\": {\"duration\": 152.62, \"timestamps\": [[0, 152.62], [6.1, 152.62], [6.87, 152.62]], \"sentences\": [\"People are swimming in a swimming pool.\", \" They are playing a game of water polo.\", \" There are people standing on the side of the pool watching the game.\"]}, \"v_Fb-t6zr7K5c\": {\"duration\": 80.12, \"timestamps\": [[0, 2.8], [2.8, 11.62], [12.02, 70.5], [70.5, 78.52]], \"sentences\": [\"A stage with musical instruments lined up against the back wall.\", \" The camera pans out as a baton twirler wearing a blue and silver costume enters the stage spins and poses.\", \" The baton twirler begins her performance with baton twirling and dance moves and jumps.\", \" The baton twirler completes her performance bows and exits stage left.\"]}, \"v_KBMvitQaXzE\": {\"duration\": 22.45, \"timestamps\": [[0, 1.23], [1.23, 11.79], [11.79, 19.2], [19.2, 22.45]], \"sentences\": [\"A man is standing next to a camel, and 2 men and a child are sitting on the camel.\", \" The camel suddenly and roughly stands up jolting the people on the camel.\", \"The two men are smiling but the child does not look happy and is screaming and crying then throws something on the ground.\", \"The camel continues to walk with the man in front of it pulling him.\"]}, \"v_aObyxa8gdAo\": {\"duration\": 128.06, \"timestamps\": [[0, 128.06], [3.84, 22.41], [19.21, 44.82], [42.26, 67.87], [64.67, 103.73], [97.32, 128.06]], \"sentences\": [\"There are three men sitting a small room playing poker on a table.\", \" One of the players deals the cards as the others have their drinks.\", \" The player distributes the cards evenly among the three players as they position their tokens on the table.\", \" The person dealing the card lays down a six of diamonds and waits for the other players to make their move.\", \" The other player carefully and thoughtfully makes his move.\", \" Then the person who dealt the cards picks up his stack of cards and tokens that he has won.\"]}, \"v_QeL3ScQVelo\": {\"duration\": 170.67000000000002, \"timestamps\": [[0, 46.93], [52.91, 125.44], [97.28, 167.25]], \"sentences\": [\"A woman is seen hosting a news segment with a chef standing next to her.\", \" A cookbook is shown followed by a man cooking food in a pan.\", \" He then puts the food on a plate with other ingredients and presents it to the camera while still speaking to the host.\"]}, \"v_enASD1KDX24\": {\"duration\": 63.81, \"timestamps\": [[0, 29.03], [29.35, 37.97], [38.6, 63.81]], \"sentences\": [\"A woman is raking leaves in her yard.\", \" She puts a black bag over her shoulder.\", \" She continues raking her yard.\"]}, \"v_Yz7FjWlA6U4\": {\"duration\": 233.1, \"timestamps\": [[0, 9.32], [54.78, 233.1], [209.79, 212.12]], \"sentences\": [\"A large water fall is shown.\", \" People are sitting in a raft going down the choppy water.\", \" A woman is in the water next to the raft.\"]}, \"v_WFbUBMgOMn8\": {\"duration\": 206.66, \"timestamps\": [[0, 25.83], [25.83, 107.46], [107.46, 168.43], [168.43, 201.49]], \"sentences\": [\"A kitchen is shown followed by various ingredients and a woman speaking to the camera.\", \" She begins showing the ingredients and putting them into a hot boiling pot and stirring around.\", \" She continues mixing up more ingredients and then puts them all together in a bowl, serving the dish ad sprinkling olive oil around it.\", \" Two people are seen eating the dish and more shots of the plate are shown.\"]}, \"v_Likt_9dbMqE\": {\"duration\": 230.88, \"timestamps\": [[0, 20.78], [31.17, 230.88], [75.04, 80.81], [75.04, 230.88]], \"sentences\": [\"People are playing soccer on a field.\", \" People are indoors playing soccer in an arena.\", \" The crowd claps for the players.\", \" They continue to play soccer.\"]}, \"v_ZGK-w7-bkNw\": {\"duration\": 134.21, \"timestamps\": [[0.67, 5.37], [6.71, 11.41], [12.08, 97.97], [99.32, 120.12], [127.5, 133.54]], \"sentences\": [\"The credits of the clip are shown.\", \" A lady shows off her braids.\", \" The lady is getting her hair braided by a stylist.\", \" The lady's braids are shown at all angles.\", \" The credits of the video are shown.\"]}, \"v_hc4DBHpRuGM\": {\"duration\": 63.83, \"timestamps\": [[4.79, 55.85], [23.62, 24.89], [34.47, 35.43]], \"sentences\": [\"A woman is working out on an elliptical machine.\", \" She pushes a button on the screen of the machine.\", \" She adjusts the handles on the machine.\"]}, \"v_5T_P4x0q0VM\": {\"duration\": 22.9, \"timestamps\": [[0, 22.9], [0.69, 22.21], [22.44, 22.9]], \"sentences\": [\"A person wearing a black hat is sitting down.\", \" They shine someone's shoe with a black rag.\", \" They put their hand on the table.\"]}, \"v_KEXm-3H6eTg\": {\"duration\": 69.06, \"timestamps\": [[0, 3.11], [5.87, 37.64], [37.29, 49.03], [48.34, 58.35], [59.39, 62.84]], \"sentences\": [\"A drink is being poured into a martini glass.\", \" A woman is sitting at a bar and pouring shots into a drink.\", \" She takes the cup and shakes it in her hand.\", \" She pours that drink into a glass in front of her.\", \" She then picks up the drink and sets it down in front of the camera.\"]}, \"v_j0JsoWxrGh0\": {\"duration\": 100.1, \"timestamps\": [[0, 100.1], [10.01, 26.53], [28.03, 91.59]], \"sentences\": [\"A resort is seen from on the water of a lake.\", \" A chef stands on a boat and excitedly clasps his hands making a presentation.\", \" The chef shows different knives and sharpens them with a hand wand sharpener.\"]}, \"v_kYkwA_lvqYc\": {\"duration\": 13.98, \"timestamps\": [[0, 7.62], [7.62, 13.98]], \"sentences\": [\"A man is seen speaking to the camera and begins rubbing polish all over a shoe.\", \" He then rubs the polish off and presents the shoe to the camera.\"]}, \"v_Tzm6TEManmQ\": {\"duration\": 204.29, \"timestamps\": [[2.04, 62.31], [7.15, 11.24], [21.45, 23.49], [32.69, 39.84], [42.9, 43.92], [53.12, 62.31], [64.35, 200.2], [200.2, 204.29]], \"sentences\": [\"A series of dark gym environments are shown.\", \" A man stands up in the darkened environment.\", \" The man walks through the frame.\", \" The man walks towards a pool.\", \" The man sits on the bleachers and drinks.\", \" The man approaches a pool as if to dive in.\", \" Several different individuals are shown exercising in different ways and environments in various short clips.\", \" Views of a jungle canopy and then a poolside are seen.\"]}, \"v_IlN_XipVf44\": {\"duration\": 65.71, \"timestamps\": [[0, 40.41], [40.41, 59.14]], \"sentences\": [\"man is in a living room painting a couch with purle spray.\", \"man paint the cushions of the couch on top of paperboard.\"]}, \"v_yVp99wxlW90\": {\"duration\": 60.51, \"timestamps\": [[0, 6.35], [9.38, 49.92], [50.83, 60.51]], \"sentences\": [\"A man is outside playing croquette.\", \" Other men appear and play the game with him, hitting the ball through various holes on the lawn.\", \" A man throws his stick, then lifts it over his head in victory.\"]}, \"v_jDfTrTtPs5s\": {\"duration\": 40.47, \"timestamps\": [[0, 21.86], [22.46, 40.47]], \"sentences\": [\"Two men are playing indoor tennis.\", \" The men lob the ball against the wall and try to hit it with their rackets.\"]}, \"v_nKBjM-kdeeI\": {\"duration\": 141.69, \"timestamps\": [[2.13, 62.34], [44.63, 139.56]], \"sentences\": [\"A young boy is seen wandering around a playground and climbing up a side while a man records himself at times.\", \" The man continues to follow the boy around while he plays on the playground and all the various toys.\"]}, \"v_e4XYZAs7tcs\": {\"duration\": 10.84, \"timestamps\": [[0, 10.84], [0, 3.63], [3.63, 6.18], [6.18, 10.84]], \"sentences\": [\"A man and a woman are playing racquetball on a very shiny court.\", \" The man serves the ball and the woman quickly hits it.\", \" The man waits for the ball and he hits it.\", \" The woman once again waits for the ball to return and she hits it once again.\"]}, \"v_wHGDq_8dCuc\": {\"duration\": 232.47, \"timestamps\": [[0, 49.98], [48.82, 177.84], [132.51, 224.33]], \"sentences\": [\"Several shots are shown of the sky that leads into a man in frame.\", \" The man then begins moving his body around slowly moving his arms and legs.\", \" The man continues moving around while the camera captures his movements.\"]}, \"v_lztbD1NRU4M\": {\"duration\": 23.01, \"timestamps\": [[0, 23.01], [4.03, 16.11]], \"sentences\": [\"two boys are on a trampoline doing wrestling moves while a dog watch.\", \"One boy ducks his head down between the other boys legs while the other boy picks him up by the waist and lift him over his head then slams him on the trampoline.\"]}, \"v_Ix8WFQ6-yx8\": {\"duration\": 69.24, \"timestamps\": [[1.04, 23.54], [18.7, 46.74], [46.39, 66.13]], \"sentences\": [\"Two men are seen standing in a room holding onto tennis rackets.\", \" The men then begin hitting a tennis ball around.\", \" The people continue to hit balls around a room and chase after one another.\"]}, \"v_lKKimizxQJM\": {\"duration\": 39.45, \"timestamps\": [[0, 39.25], [0, 14.2], [18.74, 39.06]], \"sentences\": [\"A young boy and girl play hopscotch on a paved driveway in front of a house with an open garage door.\", \"  A little boy stands in front of a white chalk hopscotch game drawn on a driveway, outdoors, and begins to play hopscotch by hopping from one square to the next on the chalk drawn game.\", \"  When he finishes, a young girl plays the same game of hopscotch by hopping from one square to the next.\"]}, \"v_yA3AD9jU7QU\": {\"duration\": 207.89, \"timestamps\": [[0, 4.16], [5.2, 40.54], [41.58, 84.2], [85.23, 179.82], [180.86, 188.14], [189.18, 201.65], [201.65, 207.89]], \"sentences\": [\"We see a black title screen.\", \" We see a sink and a surgeon washing his hands at the sink.\", \" The man grabs something form the shelf and washes under his fingers.\", \" He then grabs a brush and brushes his hands and upper arms with the scrub brush.\", \" The man rinses his hands and walks down a hallway and opens the door with his back.\", \" We then see the  man dry his hands.\", \" We see the black ending screen.\"]}, \"v_FExyWFc1nU0\": {\"duration\": 33.9, \"timestamps\": [[0, 5.25], [12.04, 13.9], [14.24, 15.43], [15.76, 16.44], [14.07, 24.58], [26.61, 33.9]], \"sentences\": [\"A man walks backwards on the dirt.\", \" A male riding a horse lassoes a bull.\", \" The bull falls sideways on the dirt.\", \" The bull tries and gets up.\", \" The male leaves the horse, keeps the bull down, and ties the bull's legs together.\", \" The male heads back to his horse.\"]}, \"v_VceicZDzH3U\": {\"duration\": 195.16, \"timestamps\": [[0, 61.48], [63.43, 114.17], [113.2, 195.16]], \"sentences\": [\"A camera pans over a picture of a man holding a cat and leads into a person cutting out a pumpkin.\", \" He then places a mask on the pumpkin and traces out the lining of the picture.\", \" The man then carves out the lines and leads back into the first picture but with the pumpkin as a face.\"]}, \"v_WQmJrfjOF7o\": {\"duration\": 187.08, \"timestamps\": [[0.94, 40.22], [42.09, 119.73], [90.74, 160.89], [146.86, 184.28]], \"sentences\": [\"A camera pans all around a floor and leads into a man walking into the room.\", \" Another man is seen taking off tiles as well as more shots are shown of the floor.\", \" The men measure the floor, cut out pieces, and put them all along the floor.\", \" He rolls along the floor as well as dip sponges into the water and smiling to the camera.\"]}, \"v_ps0a-GGomX4\": {\"duration\": 32.6, \"timestamps\": [[0, 8.8], [8.97, 32.6]], \"sentences\": [\"An Asian male is standing outside on a field with a long stick in his hand.\", \"All of a sudden,the boy takes off running and throws the stick clear across the field and people run and go measure the distance.\"]}, \"v_A4PdcfWqrN8\": {\"duration\": 188.44, \"timestamps\": [[0, 22.61], [27.32, 188.44]], \"sentences\": [\"A woman is holding a bunch of frisbees, and playing with a dog outside.\", \" He jumps on her back and performs tricks to get the frisbees including begging, standing, and catching midair.\"]}, \"v__15t4WTR19s\": {\"duration\": 238.28, \"timestamps\": [[0, 4.77], [4.77, 14.3], [14.3, 76.25], [77.44, 181.1], [182.29, 220.41], [220.41, 229.94], [229.94, 238.28]], \"sentences\": [\"We see an opening title screen.\", \" A lady talks in a kitchen.\", \" The lady shows us her salad then adds apples, nuts and carrots.\", \" The lady juices a lemon and pours it in oil and adds other ingredients and rates something on top before stirring it up.\", \" The lady adds the dressing to the salad and mixes it.\", \" The lady shows us the finished salad.\", \" We see the ending screen and credits.\"]}, \"v_Et4GHTvGbg0\": {\"duration\": 59.77, \"timestamps\": [[11.06, 28.09], [28.69, 59.77]], \"sentences\": [\"A girl is shoveling snow of a driveway using a large shovel while talk to herself.\", \" Then, she tap the snow with the back of the shovel, then continues shoveling.\"]}, \"v_na4vSFfVi2s\": {\"duration\": 112.85, \"timestamps\": [[0, 112.85], [27.08, 112.85]], \"sentences\": [\"A girl plays and falls on the jungle gym.\", \"  She gets up and gets back on.\"]}, \"v_qNE6ju5dRc0\": {\"duration\": 120.0, \"timestamps\": [[0, 120], [28.2, 85.8], [37.8, 64.2], [27, 30]], \"sentences\": [\"man is siting in front of table giving the nees talking about a kayaker girl.\", \" a lot of people are gathered in a pier next to a lake with a lot of people kayaking.\", \" man is being interviewed by a reporter.\", \" men are carrying flowers into the pier.\"]}, \"v_yl37hI-Bgkk\": {\"duration\": 57.47, \"timestamps\": [[0, 14.08], [13.51, 32.47], [31.32, 47.99], [50.29, 57.47]], \"sentences\": [\"A person is seen shaving the head of a person seen in a chair in front of him.\", \" The person brushes off his hair and then signs his name on a piece of paper.\", \" More men are seen shaving their heads and one speaks to the hair stylist on what he wants.\", \" The person continues shaving the heads of men while they sit in the chair and wait.\"]}, \"v_op58Lalekrk\": {\"duration\": 205.59, \"timestamps\": [[0, 63.73], [54.48, 149.05], [121.3, 196.34]], \"sentences\": [\"A woman is seen playing a flute and looking down at a book in front of her.\", \" The camera zooms in and out continuously on the woman while she plays.\", \" The woman continues to play the instrument and ends by pausing and walking away.\"]}, \"v_xyMCaug7LXM\": {\"duration\": 54.78, \"timestamps\": [[0.55, 12.05], [12.32, 30.67], [48.2, 50.67], [50.94, 54.78]], \"sentences\": [\"A woman throws a javelin at a professional sports event in the daytime in an outdoor sports arena surrounded by bleachers filled with people.\", \"  The javelin lands outside of a white line painted on the grass and the woman jumps in the air, smiles and throws her arms in the air while smiling at the onlookers in the bleachers.\", \"  A man in a red jacket smiles and pumps both arms in the air in reaction.\", \"  The woman walks, smiles and then falls to her knees with her head parallel to the ground on the  clay portion of the field in front of the bleachers.\"]}, \"v_RPr1ZbIGLwU\": {\"duration\": 223.42000000000002, \"timestamps\": [[0, 7.82], [6.7, 69.26], [27.93, 30.16], [45.8, 68.14], [74.85, 137.41], [141.87, 154.16], [157.51, 164.22], [183.21, 208.9], [221.19, 223.42]], \"sentences\": [\"We see an opening screen on a black background.\", \" We see a lady standing in a yard talking.\", \" The lady puts the tube on the table.\", \" The lady picks up items off the table.\", \" The lady puts sticky things on a rug then removes them.\", \" We switch to see the   rug in her dining room.\", \" The lady shows the bottom of a chair.\", \" The lady sweeps the floor then wipes it with a towel on a stick.\", \" The lady smiles and the video ends.\"]}, \"v_eVTMUEYhwDE\": {\"duration\": 13.1, \"timestamps\": [[0, 1.7], [1.7, 11.2], [11.2, 13.1]], \"sentences\": [\"A man is lifting a large barbell in a competition.\", \" He tries with all of his might, lifts it up then puts it down.\", \" His trainer comes towards him.\"]}, \"v_drzTgrfN19M\": {\"duration\": 197.72, \"timestamps\": [[0, 10.87], [13.84, 26.69], [29.66, 64.26], [65.25, 167.07], [172.01, 197.72]], \"sentences\": [\"A recipe and it's ingredients are shown onscreen.\", \" A man is talking in his kitchen, standing in front of all the ingredients.\", \" He begins measuring and mixing the items together to make his dish.\", \" He cooks it all in a pot.\", \" He stirs and plates his dish, finally tasting it when it is done.\"]}, \"v_ntS2PA5YWuA\": {\"duration\": 139.09, \"timestamps\": [[0.7, 73.02], [57.72, 125.18]], \"sentences\": [\"A person is seen walking in with a tire on a plank and painting the tire.\", \" The person then un does the tire and places the rubber tightly around the side.\"]}, \"v_FUvUDCZxAO8\": {\"duration\": 139.95, \"timestamps\": [[0, 61.58], [60.18, 116.86], [115.46, 139.95]], \"sentences\": [\"A man is seen holding a bow and arrow and begins shooting several arrows at a target.\", \"The man pulls his arrows out and then shoots more from farther away.\", \" He walks to the camera smiling and speaking to the camera while holding his bow and showing his shots.\"]}, \"v_xunKd050v7U\": {\"duration\": 63.07, \"timestamps\": [[0, 4.1], [4.41, 16.4], [16.71, 58.02], [58.34, 63.07]], \"sentences\": [\"The words \\\"Vlogging With Hannah\\\" appear on screen in a flourish font.\", \" A person is juicing a lemon with an electric juicer.\", \"  A large blonde dog walks across the room and sits by a chair.\", \"  The words \\\"Thanks For Watching\\\" along with a drawing of a pair of pink sneakers appears on screen.\"]}, \"v_Lp3c3nwHrqM\": {\"duration\": 215.62, \"timestamps\": [[0, 48.51], [56.06, 147.7], [142.31, 208.07]], \"sentences\": [\"A woman is seen looking and smiling into the camera while holding up a bottle of dish soap.\", \" The woman then grabs a sponge and rinses it into a sink.\", \" She then begins washing dishes in the sink while looking back and speaking to the camera while showing off a glass.\"]}, \"v_kW4ajodPtWU\": {\"duration\": 194.58, \"timestamps\": [[0, 9.73], [9.73, 194.58]], \"sentences\": [\"For the introduction a boy does a bunch of different acrobats as words are popping up on the screen between each one he does and they go in order saying World,Cup,Odyssey,Boys, Tumbling.\", \" There continues to be a bunch of different clips of young people mostly alone, doing a multiple amount of flips in various different gyms around various different people near them that are either just watching, and occasionally doing cheers or flips of their own.\"]}, \"v_M_E1i4S8Vp0\": {\"duration\": 101.35, \"timestamps\": [[0, 8.62], [10.64, 101.36]], \"sentences\": [\"A girl talks in front of a swing.\", \"  She starts to swing and then goes higher for the whole video.\"]}, \"v_p42wxuN8MZE\": {\"duration\": 118.0, \"timestamps\": [[0, 56.64], [20.65, 27.14], [56.64, 118]], \"sentences\": [\"An older woman is standing in an indoor gym and is talking while two people behind her to the left are playing basketball on the court.\", \"While she's still talking, above her on the second floor to her left, two people go running by.\", \" The woman is no longer talking and now there are two young ladies playing badminton.\"]}, \"v_oAJlaJ8xcwY\": {\"duration\": 23.57, \"timestamps\": [[0, 4.83], [5.07, 18.15], [18.38, 23.57]], \"sentences\": [\"A lady sitting in a chair gets up and walks to a table and grabs a bottle of cream.\", \" The lady sits down and opens the bottle and pours some on her leg and rubs it in.\", \" The lady puts the bottle down and poses.\"]}, \"v_z-_snl6eaPE\": {\"duration\": 20.57, \"timestamps\": [[0, 2.88], [3.39, 16.66], [16.77, 20.57]], \"sentences\": [\"Two teams of ice hockey players are on a rink.\", \" One of the players falls as he gets into a fight.\", \" A referee attempts to break up the fight.\"]}, \"v_zPV8s8ZuLBY\": {\"duration\": 185.78, \"timestamps\": [[0, 20.44], [22.29, 76.17], [79.89, 185.78]], \"sentences\": [\"Two men wearing hats are seated on a couch.\", \" One of the men is playing a guitar.\", \" The other one is playing a harmonica alongside him.\"]}, \"v_FcfoTk3UK5g\": {\"duration\": 166.46, \"timestamps\": [[0, 44.11], [22.47, 148.15], [146.49, 166.46]], \"sentences\": [\"A large group of people are seen standing around a gymnasium with many performing fencing matches on the side.\", \" The camera transitions into several shows of people fencing back and fourth while many watch on the sidelines.\", \" In the end a small group of people wearing the same jackets all cheer and celebrate.\"]}, \"v_Ofnuo7FTHfM\": {\"duration\": 10.47, \"timestamps\": [[0, 6.07], [2.51, 4.03], [5.81, 7.8], [9.32, 10.47]], \"sentences\": [\"Two professional wrestlers climb silver ladders.\", \" A masked wrestler hits a unmasked wrestler on his shoulder.\", \" The masked wrestler climbs to the top of the ladder and pulls the unmasked wrestler down.\", \" The unmasked wrestler lays on the floor in pain.\"]}, \"v_sOMA_oI7dgk\": {\"duration\": 198.13, \"timestamps\": [[0, 100.05], [105.01, 181.29], [181.29, 191.19]], \"sentences\": [\"A person talks in a gym siting on a machine.\", \" Then, the person fasten her feet to the machine and pulls the handle of the machine and sliding back.\", \" Then, the person rest with the legs on the machine while talking.\"]}, \"v_43R60vMRook\": {\"duration\": 112.53999999999999, \"timestamps\": [[0, 3.38], [5.06, 20.82], [26.45, 112.54]], \"sentences\": [\"A woman is showing how to use a hula hoop.\", \" Several pictures show the woman using the hula hoop in different poses.\", \" We return to the woman as she increases the number of hoops to two, then three.\"]}, \"v_BtrGC6PUPJk\": {\"duration\": 26.59, \"timestamps\": [[0, 5.98], [7.05, 13.03], [13.03, 21], [21, 26.59]], \"sentences\": [\"The group is performing martial arts together in unison, with music in the background, One side of the group performs one leaping kick as a group.\", \" The group then throws leaping kicks one by one, from there they group up together in the center.\", \"\\nTwo other group members now perform cartwheels across the stage, with a back flip, then they perform some poses, one of the members strikes an object.\", \" After that the group in the middle strikes some objects.\"]}, \"v_35WvCw9Qcqk\": {\"duration\": 182.49, \"timestamps\": [[0, 7.3], [8.21, 132.3], [43.8, 48.36], [66.61, 90.33], [98.54, 108.58], [117.7, 143.25], [144.16, 177.01], [177.92, 182.49]], \"sentences\": [\"We see an animation and a couple of title screens.\", \" Men are riding skateboards down a country road.\", \" We pass man who has fallen and is sitting in the road.\", \"We see a man fall and tumble in the street and pass the hurt man.\", \" We stop skateboarding in front of a brown van.\", \" We see the fallen man and he shows the bloody scars and scrapes on his arms and back.\", \" We see the fall again in slow motion and with comments added.\", \" We see the ending screen.\"]}, \"v_FRJLhGFpCGE\": {\"duration\": 201.88, \"timestamps\": [[6.06, 29.27], [28.26, 32.3], [103.97, 106.99], [115.07, 193.8]], \"sentences\": [\"Pictures are shown of people running.\", \"  A person is running down a trail.\", \" X-rays are shown on the screen.\", \" A person's feet is shown and they are tapping their feet on the carpet.\"]}, \"v_FnbVnRX6WxQ\": {\"duration\": 94.22999999999999, \"timestamps\": [[0, 11.78], [11.78, 42.87], [42.87, 82.92], [81.98, 94.23]], \"sentences\": [\"Floyd Mayweather the boxer, is on a machine surrounded by a crowd of ordinary people and reporters.\", \"The boxer then begins to lay back on the machine and does crunches while chewing gum and making air fist.\", \"When finished,he stands up to adjust his shorts and places his knees on a a set of white towels before using a wheel with two handles on it to continue his exercise.\", \"A man in a suit then begins talking to him as Floyd continues to look in the mirror doing his exercises.\"]}, \"v_T7kOKW76EsA\": {\"duration\": 103.7, \"timestamps\": [[0, 28], [28.52, 103.7]], \"sentences\": [\"Paper is shown laid out on a floor while feet walk back and a vacuum is seen sucking up the paper.\", \" The vacuum moves all along the floor sucking up the paper and the feet walk back into frame.\"]}, \"v_rqnzzNYt2cE\": {\"duration\": 177.49, \"timestamps\": [[0, 55.91], [41.71, 129.57], [103.83, 173.06]], \"sentences\": [\"A camera pans all around an area and leads into a man speaking to the camera.\", \" Several shots of the area are shown as well as dogs and leads into a man riding down a hill.\", \" The man rides a skateboard continuously around the area and ends by meeting up with the first man.\"]}, \"v_FsS8cQbfKTQ\": {\"duration\": 74.61, \"timestamps\": [[0.37, 73.86], [1.87, 9.33], [9.7, 19.02], [19.77, 73.49]], \"sentences\": [\"An athlete pole vaults at a professional sports event in front of an audience in bleachers and sports event workers and spectators, all in slow motion.\", \"  An athlete runs straight head while holding a long pole vault with both hands during the run.\", \"  The man catapults into the air, releases the pole and goes over an elevated line measure bar, touching the bar with his body before landing on the landing cushion underneath the bar.\", \"  The man falls to the cushion with a look of disappointment, stands up, with the appearance of dejection, but smiling at the same time, while walking away from the cushion and picking the pole vault back up.\"]}, \"v_DDh5-FjIegY\": {\"duration\": 26.37, \"timestamps\": [[0.26, 26.37], [0.26, 2.11], [0.66, 9.89], [20.3, 26.37]], \"sentences\": [\"Two men stand by and walk by a fence at an outdoor sports game with people looking on from bleachers in the audience.\", \"  A man in a red tank top stands by a metal fence on the side of a sports field.\", \"  A man in a black shirt walks by the man in the red shirt.\", \"  The man in the red shirt steps forward onto a dirt patch on the side of the field with both arms in front of him.\"]}, \"v_oS4w7-0aH8Q\": {\"duration\": 57.21, \"timestamps\": [[0, 2], [1.72, 2.29], [1.72, 52.35], [33.76, 35.19], [41.77, 44.63], [50.92, 53.21], [54.64, 57.21]], \"sentences\": [\"A young girl stands on a gym mat next to a woman.\", \" The girl uses a step to mount the beam.\", \" She performs her routine on the beam.\", \" The girl jumps two times on the beam.\", \" The girl almost falls off the beam.\", \" The girl dismounts from the beam.\", \" The girl shakes the ladies hand.\"]}, \"v__A5iOie5VkM\": {\"duration\": 145.5, \"timestamps\": [[0, 13.09], [13.09, 18.91], [18.91, 27.64], [27.64, 57.47], [57.47, 109.85], [109.12, 125.13], [125.13, 145.5]], \"sentences\": [\"A young man is stepping up and down in a forward motion on a step apparatus in a gym studio and his arms are also moving forwards and backwards.\", \" He steps across the step board to the opposite side.\", \" Then he steps across the board so he is backwards.\", \" And then moves around the side of the board.\", \" He proceeds to go all the way around the board in different directions.\", \" He makes a turn around the board.\", \" And continues to cross the board in all different directions while dancing.\"]}, \"v_HCFF0svChQY\": {\"duration\": 31.23, \"timestamps\": [[0, 8.59], [8.59, 10.15], [16.71, 31.23]], \"sentences\": [\"A man is sprinting down a track.\", \" He jumps into a pit of sand.\", \" People in the stands are watching him.\"]}, \"v_FqiMsRnatP0\": {\"duration\": 45.79, \"timestamps\": [[0, 13.51], [13.51, 35.49], [35.49, 44.65]], \"sentences\": [\"A woman helps a toddler hold a bat to heat a pi\\u00f1ata.\", \" After, the toddler hits the pi\\u00f1ata several times, and then the toddler inspects the pinata.\", \" Next, the pi\\u00f1ata is raised and lowered on front the toddler who is afraid, then the woman helps the toddler to hit again the pi\\u00f1ata.\"]}, \"v_GHU3G24jFjI\": {\"duration\": 206.38, \"timestamps\": [[0, 14.45], [15.48, 88.74], [90.81, 127.95], [137.24, 206.38]], \"sentences\": [\"A man with a microphone is talking with two boys.\", \" One of the boys walks over to a mat, and starts break dancing.\", \" When he is done, the other boy saunters over and break dances too.\", \" They take turns dancing one more time before the crowd.\"]}, \"v_c5dvRUBZw2Q\": {\"duration\": 234.32999999999998, \"timestamps\": [[0, 17.57], [17.57, 80.84], [80.84, 132.39], [132.39, 176.92], [176.92, 234.33]], \"sentences\": [\"A young girl is standing in a neon wet suit on a boat preparing to jump off.\", \"The camera pans the rest of the people on the boat and the girl finally jumps in wearing her equipment to breath efficiently.\", \"A water buoy and rope is then shown as the girl goes deep under the water and swims with several schools of fish.\", \"A boy then pulls out several cards under the water and they begin doing truth or dares under the water and he asks the women will she marry him.\", \"After the guy gets his answer,they leave from under the water and several pictures are shown to show off the ring.\"]}, \"v_eRHbpYeYtxo\": {\"duration\": 15.12, \"timestamps\": [[0, 4.01], [4.01, 10.58], [10.13, 15.12]], \"sentences\": [\" A man in a blue shirt bends down and picks up a large weight.\", \" He lifts it above his head and drops it onto the floor.\", \" He pumps his arms in the air in celebration.\"]}, \"v_HgOHqD0lWTE\": {\"duration\": 137.56, \"timestamps\": [[0, 61.9], [61.9, 137.56]], \"sentences\": [\"a man and a little kid are standing in a lakeside in the woods next to a camp.\", \" men are kneeling on the floor trying to start a woodfire.\"]}, \"v_SibfKtVX3CQ\": {\"duration\": 234.1, \"timestamps\": [[0, 2.34], [3.51, 19.9], [21.07, 230.59], [231.76, 234.1]], \"sentences\": [\"The website name \\\"Rivieraoggi it\\\" appears on screen with copyright information.\", \" A championship beach soccer player is being interviewed by a reporter.\", \" Clips from a beach soccer game are shown.\", \" The logo and copyright are shown again.\"]}, \"v_NGBaYycOQT0\": {\"duration\": 29.28, \"timestamps\": [[0, 6.44], [6, 29.28]], \"sentences\": [\"A light is shown when a person walks into frame and presents a tennis racket to the light.\", \" The person then passes an object back and fourth with a machine and using his racket.\"]}, \"v_caPl3Aszru0\": {\"duration\": 67.22, \"timestamps\": [[3.7, 16.47], [16.47, 52.77], [53.11, 61.84], [23.53, 26.55]], \"sentences\": [\"A woman walks on a springboard.\", \" Then, the woman jumps and flips three times and dive in the water.\", \" Then the woman showers while holds a towel.\", \" A man wearing a red shirt clap his hands, then touch his face.\"]}, \"v_ZncidS9kQ-g\": {\"duration\": 57.8, \"timestamps\": [[0, 33.81], [35.25, 57.8]], \"sentences\": [\"A man dressed as spiderman leans against a metal rail as he plays a saxaphone.\", \" He sways and moves a little as he continues to play.\"]}, \"v_PT4x_Y5lu_g\": {\"duration\": 147.94, \"timestamps\": [[0, 50.3], [46.6, 145.72]], \"sentences\": [\"A person is seen standing ready at the end of a diving board followed by walking towards the end and jumping in the pool.\", \" Several more clips are shown of the person performing impressive dives into the pool while her same clip is shown again afterwards in slow motion.\"]}, \"v_DeoqC3oVV38\": {\"duration\": 201.8, \"timestamps\": [[0, 57.51], [57.51, 94.84], [81.73, 82.74], [94.84, 197.76]], \"sentences\": [\"People sail on inflatable boats on calm waters ofa river.\", \" Then, the boats enter to lightly choppy waters.\", \" Two men stand on the bank of the river.\", \" After, people arrives to shallow waters, and then continue sailing on the calm waters of the river.\"]}, \"v_xRuZMDClaQM\": {\"duration\": 189.71, \"timestamps\": [[0, 189.71], [30.35, 32.25], [51.22, 53.12], [51.22, 189.71]], \"sentences\": [\"Two people are fencing on a white mat.\", \" People are sitting down watching them.\", \" A woman in a black jacket is standing up talking to them.\", \" They continue to fence on the mat.\"]}, \"v_RGMSc1tfkzA\": {\"duration\": 124.11, \"timestamps\": [[2.48, 55.85], [37.23, 117.28]], \"sentences\": [\"A man is seen standing on the edge of a diving board and leads into several clips of people performing impressive dives.\", \" A woman speaks to the camera while showing children playing in a pool area and leads into more clips of people diving into a pool.\"]}, \"v_qL7kMgxpFJY\": {\"duration\": 54.08, \"timestamps\": [[0, 14.87], [15.14, 40.29], [35.96, 51.92]], \"sentences\": [\"A person is seen kneeling over a bucket and laying plaster on a board.\", \" The person flattens the plaster and begins rubbing it on the wall.\", \" He continues putting plaster on the wall while looking back to the camera.\"]}, \"v_YRMbCxetWtg\": {\"duration\": 82.13, \"timestamps\": [[0, 51.74], [23.41, 29.16], [33.67, 48.05], [48.05, 50.92], [50.51, 80.49]], \"sentences\": [\"Two men play a game of racquetball on an indoor court.\", \" One man dives on the ground for the ball.\", \" The men argue with each other after the point is scored.\", \" The man serves for the round.\", \" The man slams up against the glass and injures himself.\"]}, \"v_Jd6dM5p91M4\": {\"duration\": 194.77, \"timestamps\": [[0, 37.98], [40.9, 139.26], [141.21, 194.77]], \"sentences\": [\"A group of kayakers are gathered at a rapid river.\", \" They go down the white waters with their paddles.\", \" A small waterfall takes them down the stream.\"]}, \"v_a39_RoOBkX0\": {\"duration\": 11.43, \"timestamps\": [[0, 11.43], [0.63, 10.85], [8.51, 11.43]], \"sentences\": [\"People are standing around a sink washing dishes.\", \" Several of the women are wearing pink rubber gloves.\", \" A woman on the end is wearing a pink apron.\"]}, \"v_En9FemmDusk\": {\"duration\": 279.59000000000003, \"timestamps\": [[0, 41.94], [41.94, 71.3], [72.69, 279.59]], \"sentences\": [\"small furry cat is playing on top of bed and a man is showing a nail cliper and the cat starts playing with it.\", \" man is caressing the cat and shows a image ni a laptop about how to cut the cat nails.\", \" man is grabbing Ethyl alcohol and cleans the nail clipper and show the cat nails and starts cutting them.\"]}, \"v_rAO-_VxIJng\": {\"duration\": 46.81, \"timestamps\": [[0, 46.81], [22, 46.11], [27.85, 46.81], [42.83, 46.81]], \"sentences\": [\"A man, woman, children and their dogs are in the street of a residential neighborhood.\", \"  The camera zooms in to show the children walking the dogs.\", \" The little girl is walking a very large white dog.\", \" The video ends as the white dog begins to pee on a trash can.\"]}, \"v_uyzQkTArIwU\": {\"duration\": 235.22, \"timestamps\": [[0, 197.58], [57.63, 232.87]], \"sentences\": [\"A large group of people are seen sitting around a circle when two men perform kicks and tricks around one another.\", \" More people enter the circle pit and transition with one another still performing various flips and kicks around one another.\"]}, \"v_AauepSs1kUU\": {\"duration\": 170.78, \"timestamps\": [[0, 36.72], [35.86, 113.57], [105.03, 163.1]], \"sentences\": [\"A man's face is seen close up that leads into a game of field hockey being shown.\", \" More clips are shown of people playing the sport and hitting a ball around the field.\", \" The people continue playing with one another as the video continues on.\"]}, \"v_foZ88hBB77I\": {\"duration\": 70.1, \"timestamps\": [[1.05, 37.86], [25.94, 68.7]], \"sentences\": [\"A small group of people are seen sitting around a table full of rubix cubes and a woman standing behind a man placing his hands down.\", \" The woman then rubs his shoulder and his stomach while he attempts to solve the puzzle and his score is shown again when hes done.\"]}, \"v_OwSdSL_4sxU\": {\"duration\": 36.22, \"timestamps\": [[0, 36.04], [0.72, 30.25], [9.42, 30.25], [31.33, 36.04]], \"sentences\": [\"Several players are in the water playing water polo.\", \" The ball gets tossed back and forth.\", \" The players are making their way closer to the goal line as they pass the ball back and forth.\", \" The ball is blocked several times before the team successfully makes it past the goalie.\"]}, \"v_V3LvKGRzkeg\": {\"duration\": 115.00999999999999, \"timestamps\": [[0, 34.5], [33.35, 83.38], [78.21, 112.71]], \"sentences\": [\"A small group of people are seen standing on stage playing various instruments.\", \" Other people watch on the sides as the group plays and speaks to one another.\", \" The band continues to play as others around them enjoy themselves.\"]}, \"v_JDg--pjY5gg\": {\"duration\": 126.18, \"timestamps\": [[7.57, 33.44], [33.44, 78.86], [78.86, 105.99]], \"sentences\": [\"A man in a red shirt talks to a camera before the camera cuts away to a room full of people playing professional beer pong and competitive social event.\", \"  The man is seen talking again interspersed with people playing beer pong, winning beer pong trophies and posing with him for still shots.\", \"  Several people hold up award cards, hug and cheer before one last interview with the man and a fade out to marketing material.\"]}, \"v_pHiulmPx7ek\": {\"duration\": 216.64, \"timestamps\": [[5.42, 210.14], [8.67, 21.66], [21.66, 209.06], [211.23, 215.56]], \"sentences\": [\"Two teams of girls play field hockey in several different games, in several different locations, with a spotlight on one particular player in a white headband.\", \"  The girl in the white headband hits a goal with an instant replay.\", \"  The girl in the white headband is highlighted during several games hitting and defending goals with a spot light and slowed replay.\", \"  The girl in the white headband is captured walking off field in slowed motion wearing a red jersey with the number 9 on the back of it.\"]}, \"v_N_um3L3w1uQ\": {\"duration\": 39.59, \"timestamps\": [[0, 5.54], [7.72, 31.28], [15.04, 18.41]], \"sentences\": [\"A man spins around while walking on a pair a of stilts.\", \" A young man jogs down a basketball court on a pair of stilts.\", \" The man runs up to his friend who is also wearing stilts and gives him a high five.\"]}, \"v_gzdasX0KIVg\": {\"duration\": 234.61, \"timestamps\": [[0, 226.4], [25.81, 28.15], [28.15, 212.33], [211.15, 234.61]], \"sentences\": [\"A woman grooms her dog while describing its history.\", \"  Other animals watch in the vets office.\", \"  A man off camera asks about the vets technique while she continues to do her work.\", \"  There is so much fur flying off the dog!  The video ends with an advertisement for her services and locations.\"]}, \"v_P4PQ5tC3gX8\": {\"duration\": 80.39, \"timestamps\": [[0, 80.39], [27.73, 33.76]], \"sentences\": [\"A man plays a song on various accordions in an office.\", \" The man place a small hand held accordion.\"]}, \"v_R4oYA0Zu-m0\": {\"duration\": 215.74, \"timestamps\": [[0, 16.18], [17.26, 33.44], [36.68, 58.25], [56.09, 84.14], [86.29, 144.54], [146.7, 212.5]], \"sentences\": [\"A group of girls get out a a jeep in swimsuits and walk into a house.\", \" The group of girls disrobe inside the home and walk outside to the pool area.\", \" The girls hug their boyfriends then play table tennis.\", \" The group walks down to the boat dock.\", \" The group prepares the equipment on the boat and put on water skis.\", \" The group rides wake boards in a lake behind a boat.\"]}, \"v_IdEXShfpQHs\": {\"duration\": 33.62, \"timestamps\": [[0.34, 10.59], [7.57, 25.89], [24.88, 33.12]], \"sentences\": [\"A person is seen sitting down in a chair with a dog walking into frame.\", \" The person then begins petting the dog while he makes a funny face.\", \" The person continues petting the dog as he looks up to the owner.\"]}, \"v_wMwJObSq21Y\": {\"duration\": 132.94, \"timestamps\": [[0, 132.94], [8.64, 132.94], [1.99, 132.94]], \"sentences\": [\"People are standing in a room.\", \" They start stepping up on a stool and working out.\", \" The woman in front is wearing a skirt and leading the group.\"]}, \"v_fErOJ98E15w\": {\"duration\": 162.12, \"timestamps\": [[1.62, 70.52], [56.74, 158.07]], \"sentences\": [\"A man is seen standing in an enclosed room holding a tennis racket and performing various moves for the camera.\", \" The man continues demonstrating how to properly use the tennis racket to hit the ball.\"]}, \"v_PoamN_DEInI\": {\"duration\": 32.93, \"timestamps\": [[9.05, 17.45], [18.6, 23.87]], \"sentences\": [\"A woman is playing hop scotch.\", \" A picture of a woman posing is shown.\"]}, \"v_ddLFSNa3ci0\": {\"duration\": 158.2, \"timestamps\": [[0, 15.82], [17.4, 37.97], [44.3, 158.2]], \"sentences\": [\"A man is talking in a garden, walking with a blue bucket.\", \" He crouches down next to potted plants.\", \" He gives instructions on how to mulch the plants and cacti.\"]}, \"v_El_q7DhzArg\": {\"duration\": 4.13, \"timestamps\": [[0, 1.57], [0.72, 2.6], [2.32, 4.13]], \"sentences\": [\"The girl in a blue shirt is twirling her baton.\", \" The girl threw the baton up in the air and raised her leg.\", \" The girl catch the baton.\"]}, \"v_xekPSA9h_jg\": {\"duration\": 60.56, \"timestamps\": [[0, 60.56], [26.04, 33.61], [43.6, 58.14]], \"sentences\": [\"We see two men playing Foosball.\", \" The left man has the ball caught and tries to score but fails.\", \" The man tries again and fails.\"]}, \"v_qiRrR2Nj2SQ\": {\"duration\": 133.86, \"timestamps\": [[0, 133.86], [74.96, 76.3], [121.15, 123.15]], \"sentences\": [\"People are working out on exercise bikes.\", \" A man takes a drink out of a water bottle.\", \" A man stands up on the bike.\"]}, \"v__Wag6CT_0j8\": {\"duration\": 232.5, \"timestamps\": [[0, 120.9], [120.9, 232.5], [132.53, 232.5]], \"sentences\": [\"People are playing soccer on a field of grass.\", \" A woman in a black shirt is talking to people holding a microphone.\", \" People are standing behind them.\"]}, \"v_6fyIc1vrK4Q\": {\"duration\": 197.57999999999998, \"timestamps\": [[0, 14.82], [15.81, 19.76], [23.71, 48.41], [48.41, 182.76], [182.76, 187.7]], \"sentences\": [\"The camera shows a closeup of a hand pouring wine from a bottle into two glasses.\", \" Hands grab the two glasses, clink them together, and move them out of scene.\", \" The scene changes to closeups of Christmas decorations.\", \" The scene transitions to showing a man and a woman decorating a Christmas tree.\", \" The man and woman clink wine glasses together and kiss.\"]}, \"v_DQ9EaCSFwGI\": {\"duration\": 205.28, \"timestamps\": [[0, 5.13], [6.16, 27.71], [28.74, 115.98], [117.01, 197.07]], \"sentences\": [\"A person skates while holding hands with a man and holding a rod, then the person free the hand of the man.\", \" Affter the man holds the rod while skating on the road with other skateboarders.\", \" After, the man skateboard free in the road with other boys, until arrive all skateboarders to an street intersection.\", \" Then, the skateboarders jump on a small ramp, and then skateboard very fast down a street until stop in a court.\"]}, \"v_06Eq9tgprBw\": {\"duration\": 172.59, \"timestamps\": [[0, 170.01], [6.04, 62.13], [64.72, 172.59]], \"sentences\": [\"Two women and one man perform a dance routine in a dance studio with hard wood floors.\", \"    Three people wearing white shirts with red hearts on them and black tights begin dancing a dance routine in a dance studio facing a camera.\", \"  The three people use foot work, and hands to exhibit the dance moves.\"]}, \"v_FtbrPGaINt0\": {\"duration\": 85.17, \"timestamps\": [[0, 13.2], [14.48, 70.27], [70.69, 85.17]], \"sentences\": [\"Two women are preparing to do dives into a large pool.\", \" They walk forward, pose, then backflip into the pool.\", \" They then get out and stand to the side, smiling and hugging at their good scores.\"]}, \"v_W1FmiUTYt3I\": {\"duration\": 121.76, \"timestamps\": [[0, 24.96], [32.87, 97.4], [59.66, 120.54]], \"sentences\": [\"A little boy is in the playground with a grown man, the man opened the container with sandwich, and then the boy played the sand and eat sandwich and play at the ground.\", \" The boy handed the man a tissue, then the man sneeze on it, then they talked.\", \" The boy drag the man through his shirt in the bathroom, they washed their hands in the sink, soap on their hands, then wipe their hands with paper towels then eat at the play ground.\"]}, \"v_ah3tGziTbds\": {\"duration\": 127.46, \"timestamps\": [[0, 5.74], [6.37, 33.14], [34.41, 118.53], [119.81, 127.46]], \"sentences\": [\"The logo \\\"International Sailing Academy Laz Cruz \\u2022 Mexico\\\" appears on screen.\", \" A man points to a whiteboard with small paper cutout of ships on it.\", \" Video of people sailing on large bodies of water is shown.\", \"  The man is standing by the whiteboard and speaks to the camera.\"]}, \"v_mdu7eHlbDwc\": {\"duration\": 161.07999999999998, \"timestamps\": [[0, 8.86], [12.89, 56.38], [57.99, 74.1], [76.51, 103.09], [103.89, 122.42], [123.22, 144.97], [149, 161.08]], \"sentences\": [\"Several pictures appear onscreen during the opening.\", \" A woman is underwater in a scuba diving suit.\", \" She is swiming next to two men in a pool.\", \" Two women are shown talking about snorkling.\", \" There are fish swimming in the tank as the people look at them up close.\", \" Classes are shown for teaching snorkeling before people begin diving into a river to look at the times on the floor.\", \" A large shark is shown swimming past.\"]}, \"v_Vyj5eIh3jh0\": {\"duration\": 10.87, \"timestamps\": [[0.38, 0.76], [1.25, 1.63], [0.87, 10.87]], \"sentences\": [\"A fire starts from a lit match.\", \" A person that was squatting backs away.\", \" The fire that spread stops extending.\"]}, \"v_37pnsj0hlZ4\": {\"duration\": 111.15, \"timestamps\": [[0, 44.46], [44.46, 111.15]], \"sentences\": [\"A close up of a piece of exercise equipment is shown followed by a person stepping into frame and sitting on the machine.\", \" He locks his shoes in and uses the equipment back and fourth over and over again.\"]}, \"v_FLZPaPf027E\": {\"duration\": 102.39, \"timestamps\": [[0, 27.13], [27.65, 90.62], [90.62, 98.81], [99.32, 102.39]], \"sentences\": [\"A man wearing a hat and holding a harmonica talks to the camera.\", \" The man demonstrates playing the harmonica.\", \" The man stops playing the harmonica and talks to the camera again.\", \" The man resumes playing the harmonica.\"]}, \"v_Pp5DCsgaALg\": {\"duration\": 153.21, \"timestamps\": [[0, 26.81], [26.81, 57.45], [57.45, 97.29], [97.29, 130.99], [130.23, 153.21]], \"sentences\": [\"The outside of a Japanese Trading Company store named Jorin is shown as they advertise their Winter sale.\", \"On the inside,several cluttered walls are present and then a set of knifes become apparent.\", \"A woman in a room is then shown sitting behind an electrical wheel sharpening a knife.\", \"Several more knifes are then shown as well as the techniques used to sharpen then.\", \"Finally,they finished products are shown and several pictures of flowers come across the screen.\"]}, \"v_TpgtCuYz0RQ\": {\"duration\": 122.42, \"timestamps\": [[0, 23.87], [25.1, 40.4], [61.21, 101.61], [100.99, 106.5]], \"sentences\": [\"Girls are laying down on the beach.\", \" A man kneels down next to one of them and hands them a frisbee.\", \" They play a game of rock paper scissors.\", \" The man gives the girl a kiss on the cheek.\"]}, \"v_1mYtNMDFyXQ\": {\"duration\": 110.38, \"timestamps\": [[0, 7.17], [13.8, 54.09], [64.57, 110.38]], \"sentences\": [\"a man and woman are seated inside a county jail.\", \" They drink tea and look at each other.\", \" The man does silly antics from time to time.\"]}, \"v_JfifgnVgJEU\": {\"duration\": 35.6, \"timestamps\": [[0, 12.64], [12.81, 35.6]], \"sentences\": [\"A middle aged man is standing in a room focused on opening a packet in his hands.\", \"Once it is open,he sticks the whole thing in his mouth and slides the stick out and begins to laugh.\"]}, \"v_oRtMsdNQ1LE\": {\"duration\": 71.83, \"timestamps\": [[0, 16.52], [18.68, 52.08], [45.25, 68.24]], \"sentences\": [\"A man is seen speaking to the camera while wearing a microphone and sitting behind drums.\", \" The man then begins playing the drums while speaking to the camera.\", \" He continues to hit the drums wile the camera pans out.\"]}, \"v_keaMf0raxF8\": {\"duration\": 144.2, \"timestamps\": [[4.33, 126.89], [126.89, 133.38]], \"sentences\": [\"A person explains others how to play curling game and shows how to position the feet and use the curling broom to push a granite ball.\", \" Then, the person takes the granite ball  and slides until the center of the court with the help of the curling broom.\"]}, \"v_kNAgK0nC9Ig\": {\"duration\": 233.66, \"timestamps\": [[0, 147.21], [149.54, 233.66]], \"sentences\": [\"The video leads into several shots of people riding surf boards along the water.\", \" More clips are shown of people surfing along the water and moving with the waves.\"]}, \"v_qNHfEf72V3g\": {\"duration\": 159.52, \"timestamps\": [[0, 3.19], [3.19, 16.75], [16.75, 36.69], [36.69, 78.17], [78.17, 159.52]], \"sentences\": [\"A group of men wearing military fatigues and armed with paintball guns prepare to enter a building.\", \" The men break the door down and enter a room in an attack formation that looks like a kitchen with a yellow refrigerator.\", \" The men then enter an empty bedroom crouched and ready for combat.\", \" They enter another room wear the encounter the enemy and begin shooting at each other.\", \" The men in the military fatigues in an offensive position maneuver throughout the building going from room to room looking for their opponents.\"]}, \"v_APlxSpTZVPI\": {\"duration\": 94.2, \"timestamps\": [[3.3, 44.75], [36.74, 92.32]], \"sentences\": [\"Several clips are shown of people performing impressive flips and tricks along a beach while other break dancers watch on the side.\", \" The men continue to take turns with one another performing tricks and later include poles and hoops to jump through.\"]}, \"v_x-rGfBaFQek\": {\"duration\": 170.27, \"timestamps\": [[0, 170.27], [5.11, 7.66], [12.77, 77.47], [97.06, 161.76], [163.46, 170.27]], \"sentences\": [\"A person shovels show of the walkway.\", \" A dog runs towards the person.\", \" The dog fetches for the shoveled show.\", \" The dog stops and goes next to a car.\", \" The dog goes back to way he came from.\"]}, \"v_IAj0JIDDaOQ\": {\"duration\": 65.13, \"timestamps\": [[0, 26.38], [25.73, 64.16]], \"sentences\": [\"A person is seen speaking to the camera and pointing to a wooden plank siting on a wall.\", \" The man then uses a hose to spray all around the window and above as well.\"]}, \"v_q4QPF-qNBTY\": {\"duration\": 129.1, \"timestamps\": [[0, 60.68], [60.03, 129.1]], \"sentences\": [\"women are in a gym making mortal jumps while other kids are in the gym seeing the gils.\", \" women are making jumps in parallels and a coach is guiding them while other women are seing them.\"]}, \"v_WFqr6QPsszQ\": {\"duration\": 150.91, \"timestamps\": [[0, 9.05], [9.81, 45.27], [45.27, 68.66], [69.42, 131.29], [132.04, 150.91]], \"sentences\": [\"We see a bright pink opening screen.\", \" We see a piece of cloth on a table outdoors as a lady sets two books on the cloth and wraps them in the fabric.\", \" The lady folds the ends of the cloth and tie them like a purse handle.\", \" We see the lady tie a piece of cloth into a sling to which she adds books.\", \" We then see the ending credits.\"]}, \"v_gzs6VcYc0OI\": {\"duration\": 202.13, \"timestamps\": [[18.19, 19.2], [20.21, 26.28], [27.29, 28.3], [30.32, 46.49], [47.5, 62.66], [63.67, 67.71], [68.72, 69.73], [70.75, 77.82], [78.83, 86.92], [87.93, 99.04], [100.05, 105.11], [106.12, 113.19], [114.2, 116.22], [117.24, 120.27], [121.28, 124.31], [125.32, 168.78], [169.79, 176.86], [177.87, 183.94]], \"sentences\": [\"A young boy spins his body around gymnastics equipment in a living room.\", \" A young boy in a gymnastics uniform is seen spinning his body around a mounting piece.\", \" A gymnastics coach stands and speaks.\", \" A young boy at a gymnastics center spins his body around some equipment.\", \" A gymnastics coach explains the equipment.\", \" A boy is seen spinning his body around an equipment piece.\", \" The coach makes a few more comments.\", \" A couple of boys spin their bodies around the mounting equipment.\", \" The coach explains some more.\", \" A few more boys demonstrate spinning their bodies.\", \" The coach continues to speaks.\", \" The boy is seen in the living room exercising on the equipment.\", \" At the gymnastics center, a boy carries the equipment.\", \" A young boy carries the equipment into a living room.\", \" A young boy is seen performing gymnastics move.\", \" The gymnast boy assembles a gymnastics equipment piece in the living room.\", \" At the gymnastics center, the boy is seen perform gymnastics moves.\", \" He performs the same moves in his living room.\"]}, \"v_L1lXij7Fyvo\": {\"duration\": 107.14, \"timestamps\": [[0, 17.14], [20.36, 91.07], [94.28, 107.14]], \"sentences\": [\"A man is standing outside by a pool, talking as another man stands on the other side.\", \" The second man balances on a string and walks over the water, staying balanced by waving his arms at his sides.\", \" He makes it to the other side, where he stops to talk to the camera before walking away.\"]}, \"v_vrXqd_Ct298\": {\"duration\": 225.98, \"timestamps\": [[0, 4.52], [4.52, 225.98], [39.55, 56.49]], \"sentences\": [\"A bicycle riding course with bumps is shown.\", \" A number of bicycle riders are shown going through the course.\", \" A finger covers part of the camera.\"]}, \"v_LDIemY9nO-4\": {\"duration\": 132.74, \"timestamps\": [[2.65, 7.3], [17.26, 123.45], [33.85, 34.51], [42.48, 115.48], [30.53, 31.86], [51.77, 54.42], [58.41, 81.63], [82.3, 84.29], [107.52, 112.16], [120.79, 123.45], [124.77, 131.41]], \"sentences\": [\"The credits of the clip are shown.\", \" People are rowing a inflated boat.\", \" People load onto inflated boats.\", \" Individuals stand and give interviews.\", \" Cars drive on a road.\", \" A guy black flips of the boat into the body of water.\", \" People stand around and observe.\", \" A lady gives a guy a top.\", \" Guys rise yellow paddles in the air.\", \" The back flip is reversed.\", \" The credits of the video are shown.\"]}, \"v_I52lhI6txNo\": {\"duration\": 60.09, \"timestamps\": [[6.91, 14.42], [14.72, 52.58]], \"sentences\": [\"A group of people are sitting in their donut tubes up on a snowy mountain.\", \" They snow tube down the mountain together.\"]}, \"v_zPDbMflNURc\": {\"duration\": 76.07, \"timestamps\": [[0, 72.65], [0, 23.2], [23.2, 28.91], [28.91, 48.3], [48.3, 71.12], [71.12, 76.07]], \"sentences\": [\"A man wearing a blue apron with the words \\\"ski wax vauhti\\\" is waxing climbing skins and the words on the screen say it's for better glide and to reduces snow buildup on sticky snow.\", \"The man begins by applying a long purple piece of material onto the bottom of the ski.\", \"The man then picks up a small container and words on the screen appear saying that it's \\\"vauhti violet glider\\\" and when he removes the content it looks like a purple bar of wax.\", \"The man then picks up an iron and begins to melt some of the wax onto it by rubbing it on the hot iron, then onto the material on the ski and then back and forth to melting the wax and rubbing it onto the long piece of fabric on the ski.\", \"The man then takes the iron straight to the fabric and begins to glide the iron over the material and the words on the screen indicate that it's to melt the wax into the skin using low temperature to avoid burning the skin.\", \"The iron is put down and the focus goes to a close up shot of the purple material that just had wax melted onto it.\"]}, \"v_nXNczyQpljQ\": {\"duration\": 204.34, \"timestamps\": [[0, 3.07], [4.09, 203.31], [18.39, 201.27], [123.62, 124.64], [163.47, 173.69], [187.99, 201.27], [202.29, 204.34]], \"sentences\": [\"We see the white opening screen.\", \" We see a man talking to a camera while holding a sax.\", \" The man plays the sax and gives instructions.\", \" We see the man adjust the mouthpiece.\", \" The man jostles his jaw back and fourth.\", \" We zoom in on the mans hands as he pushes keys The man finishes playing and smiles.\", \" We see the white closing scene.\"]}, \"v_R3HC-IAZVZg\": {\"duration\": 119.93, \"timestamps\": [[0, 17.39], [17.99, 48.57], [48.57, 50.97], [52.17, 56.37], [58.77, 110.94], [92.95, 95.35], [112.14, 115.13], [116.33, 119.93]], \"sentences\": [\"We see a stationary bike in a room.\", \" A lady makes adjustments on the bike.\", \" The lady puts something in the screen.\", \" The lady smiles and shows her belly.\", \" The lady rides the bike in the room.\", \" The lady drinks water from her bottle.\", \" The lady walks the bike out of the room.\", \" We then see the ending title screen.\"]}, \"v_GJDl-whUpq4\": {\"duration\": 109.65, \"timestamps\": [[0, 93.2], [8.77, 37.83], [26.31, 77.3], [72.91, 109.65]], \"sentences\": [\"There's a woman sitting on a cozy chair with her two cats next to her, knitting a black yarn hat.\", \" The black cat is sitting right next to her and playing with the yarn while the brown cat is watching them.\", \" The black cat grabs the yarn ball and start playing with it.\", \" Then the brown cat goes under the chair and jumps up to grab the yarn and pulls it away.\"]}, \"v_pk7LcugO3zg\": {\"duration\": 161.56, \"timestamps\": [[0, 66.24], [63.82, 161.56]], \"sentences\": [\"A large group of people are seen sitting in a big work room with several computers and leads into a man holding an object.\", \" He moves the liquid around the object while laughing to himself and drinks the liquid out of the object and pans back to the workroom.\"]}, \"v_0_PdI-5l62o\": {\"duration\": 68.99, \"timestamps\": [[0, 24.49], [21.73, 68.99]], \"sentences\": [\"A young boy is seen riding a horse in front of a large crowd and rides closer to a bull while holding a rope.\", \" The bull chases around the man on a horse and the man rides around pleasing the crowd.\"]}, \"v_n41Ypwpn-P8\": {\"duration\": 102.53999999999999, \"timestamps\": [[0, 40.5], [40.5, 102.54]], \"sentences\": [\"A young girl is outside walking from school talking.\", \"She begins to walk through a large field and several boys are playing kickball.\"]}, \"v_OWyqpSBJH8M\": {\"duration\": 60.37, \"timestamps\": [[0.91, 29.58], [26.26, 59.47]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her laying out various tapes and paper and putting tape on the paper.\", \" She continues putting tape on the paper and leads with her presenting a wrapped box.\"]}, \"v_Q_LhL-t0Yls\": {\"duration\": 168.38, \"timestamps\": [[0, 6.74], [7.58, 11.79], [11.79, 73.25], [74.09, 105.24], [91.77, 158.28], [157.44, 168.38]], \"sentences\": [\"A man with a microphone read from cards on stage.\", \" A young boy and his flute are followed on stage by another man.\", \" The host speaks to the kid with the flute.\", \" We see the crowd in the room and a photographer goes to the stage and takes photos.\", \" The young boy is playing his flute on stage and takes a bow.\", \" The boy leaves the stage, and the host returns to the stage.\"]}, \"v_JTQsElq5UN4\": {\"duration\": 50.95, \"timestamps\": [[0, 8.92], [8.41, 42.79], [42.79, 50.95]], \"sentences\": [\"Four people are seen standing before a ping pong table hitting the ball back and fourth to one another.\", \" Many people watch the match around the sides and zooms in on the crowd while the players continue playing.\", \" The game then ends with the team hugging one another and giving hand shakes to the other team.\"]}, \"v_3jZq0UaDIks\": {\"duration\": 130.64, \"timestamps\": [[0, 116.27], [11.76, 16.33], [32.01, 109.08], [117.57, 130.64]], \"sentences\": [\"A person holds their phone as they walk in a field near a river bank and films the river as it runs.\", \" We see a ladies head.\", \" We film as people come over a small waterfall in black rafts.\", \" The cameraman turns and walks away from the shore as another man walks past.\"]}, \"v_0qQvcJJekN8\": {\"duration\": 25.1, \"timestamps\": [[0, 3.51], [4.02, 17.57], [20.96, 25.1]], \"sentences\": [\"A boy is swinging next to another boy in a wheelchair.\", \" The adults are using special attachments to help him swing.\", \" Other adults stand nearby, watching.\"]}, \"v_470dhR3Yrjs\": {\"duration\": 180.28, \"timestamps\": [[3.61, 67.61], [46.87, 124.39], [122.59, 172.17]], \"sentences\": [\"A close up of a girl's hair is seen that leads into her in a room braiding her hair.\", \" The girl continues to braid her hair while the camera captures her hand movements.\", \" The girl finishes braiding her hair by tying a bow inside while the camera pans around.\"]}, \"v_LUDZ7e0RdEE\": {\"duration\": 94.97, \"timestamps\": [[0, 2.85], [9.02, 62.21], [64.1, 83.57], [86.9, 94.97]], \"sentences\": [\"The outside of a building is shown as a young boy walks out.\", \" Several fight scenes are shown among martial artists.\", \" These are all scenes from a movie.\", \" A man is controlling leaves with the wind.\"]}, \"v_R6kXT4Spiwo\": {\"duration\": 157.56, \"timestamps\": [[0, 10.24], [10.24, 144.17], [31.51, 37.81], [91.39, 96.11], [154.41, 157.56]], \"sentences\": [\"We see a blue title screen.\", \" We switch to see people on a diving board diving into an Olympic pool.\", \" We see a person do a dive from a handstand.\", \" We see the scores and a title screen.\", \" We see the final results and scores.\"]}, \"v_ywsH9kD033I\": {\"duration\": 175.57, \"timestamps\": [[0, 37.75], [43.01, 105.34], [122.02, 175.57]], \"sentences\": [\"A group of men are on a stage together.\", \" They have a large table and board in front of them.\", \" One of the men breaks the board after talking to the audience.\"]}, \"v_aljYWkDQzN8\": {\"duration\": 60.33, \"timestamps\": [[0.9, 18.7], [16.89, 43.74], [35.59, 58.82]], \"sentences\": [\"A person is seen wearing underwear and riding around on skis while pulling his shorts up.\", \" The man then begins riding down a snowy hill on skis.\", \" He jumps over a jump and falls in the end by stands back up.\"]}, \"v_MmipoQF8EJs\": {\"duration\": 76.21000000000001, \"timestamps\": [[0, 24.39], [21.72, 53.35], [51.06, 72.4]], \"sentences\": [\"A large group of people are seen riding on camels while people lead in front.\", \" More shots are shown of people riding on camels as well as sitting.\", \" The people continue to move on the camels while the camera pans around.\"]}, \"v_R37pbIySnjg\": {\"duration\": 120.13, \"timestamps\": [[0, 64.27], [66.67, 72.08], [72.68, 99.71], [100.31, 112.32], [112.92, 120.13]], \"sentences\": [\"An older Asian man instructs a younger man how to paint a wooden fence.\", \" The younger man proceeds to painting the fence on his own.\", \" The older man grabs two cans of paint and returns to instruct the younger man on how to paint.\", \" The older man shows the younger man a garden.\", \" The younger man stares in awe before continuing his painting job.\"]}, \"v_Boa880LnJ3w\": {\"duration\": 108.93, \"timestamps\": [[0, 98.58], [72.98, 77.34], [99.67, 101.84]], \"sentences\": [\"A man attaches a baby stroller to the back of a bicycle.\", \" He puts the wheel on the stroller.\", \" He stands up next to the stroller.\"]}, \"v_V4wwal5FQZE\": {\"duration\": 155.34, \"timestamps\": [[0, 153.79], [38.84, 47.38], [48.16, 117.28], [99.42, 118.06]], \"sentences\": [\"People vacuum the floor of a home.\", \" A woman rolls up a hose walking down stairs and fumbles putting away in a cupboard.\", \" A woman retracts a house into a wall mounted receptacle.\", \" The woman removes the hose from the wall then vacuums before retracting back into the wall.\"]}, \"v_OqA83jGQtfg\": {\"duration\": 224.57999999999998, \"timestamps\": [[4.49, 69.62], [55.02, 129.14], [117.91, 215.6]], \"sentences\": [\"Men are seen holding hooks up to the camera followed by a fish moving under water and a close up of a fishing hole.\", \" The men are seen sitting over a hole fishing on the ice and holding up fish.\", \" The men continue pulling fish out of the water presenting it to the camera and moving in slow motion.\"]}, \"v_CJWSed5v4jE\": {\"duration\": 77.06, \"timestamps\": [[0, 25.43], [26.2, 32.75], [33.91, 77.06]], \"sentences\": [\"A naked teen rides an utility vehicle in the woods.\", \" The man stands while driving the utility vehicle.\", \" The man pass on front a home, then he stands while driving.\"]}, \"v_Rn5qprCWXFg\": {\"duration\": 89.82, \"timestamps\": [[0, 89.82], [5.84, 45.36], [47.15, 66.01], [73.2, 89.82]], \"sentences\": [\"We see a man and a boy playing in the sand.\", \" The  man fills he bucket and dumps it out.\", \" The boy stands and walks to a bag, grabs something and goes back.\", \" The boy sits down and rocks back and forth.\"]}, \"v_d3RF0qC6RJs\": {\"duration\": 172.48, \"timestamps\": [[0, 172.48], [6.04, 172.48], [78.48, 79.34]], \"sentences\": [\"A man is standing on a field.\", \" He throws frisbees and plays with a dog.\", \" The guy picks up the dog and carries it.\"]}, \"v_Mv2uecqTSdY\": {\"duration\": 6.06, \"timestamps\": [[0, 0.58], [0.58, 1.85], [1.73, 6.06]], \"sentences\": [\"A man pushes a red kayak with a kid in it into a lake.\", \" The boat slides down a ramp into the water.\", \" we see a child ride a kayak in a river.\"]}, \"v_ymmBQHiNK24\": {\"duration\": 132.17, \"timestamps\": [[5.29, 131.51], [4.63, 19.16], [36.35, 71.37], [69.39, 131.51]], \"sentences\": [\"A blonde haired man plays a bagpipe in a small, beige walled room, in front of a window as a camera pans in close and pans out on the man during the performance.\", \"  The man adjusts the bag pipes on his shoulders and begins to play wiggling his fingers against the bagpipe and blowing into the mouthpiece.\", \"  The camera pans in for a closer view of the man as the man stands next to a row of tools and metal machinery.\", \"  The camera pans back out and the man stops playing the bagpipes and looks to the side of the room with his eyes.\"]}, \"v_7xpkFhlxo2Q\": {\"duration\": 186.06, \"timestamps\": [[0, 186.06], [161.87, 164.66], [173.04, 173.97]], \"sentences\": [\"Two guys play racquetball in an enclosed room.\", \" In the adjacent room men are playing volleyball.\", \" A guy touches the white wall.\"]}, \"v_F67zl57FSXE\": {\"duration\": 101.67, \"timestamps\": [[0, 14.23], [16.78, 81.34], [89.98, 101.67]], \"sentences\": [\"A weight lifter is standing in a gym.\", \" He and others consecutively lift the barbells over their heads.\", \" The final man is shown dropping is weights back to the ground.\"]}, \"v_xqzsv8VpaNM\": {\"duration\": 163.85, \"timestamps\": [[0, 17.2], [18.02, 88.48], [89.3, 142.55], [144.19, 163.85]], \"sentences\": [\"A man is standing in front of a river, talking.\", \" He is sailing on a boat in the water.\", \" Directions explain the wind functions.\", \" The man is seen speaking again before disappearing.\"]}, \"v_GP2S0V5NiPs\": {\"duration\": 216.32, \"timestamps\": [[0, 15.14], [19.47, 59.49], [65.98, 144.93], [150.34, 192.52], [193.6, 216.32]], \"sentences\": [\"A snowmobile speeds over icy terrain.\", \" A woman is interviewing a man inside a tent.\", \" They drill a hole in the ice, and use their gear to fish.\", \" she continues interviewing the people onsite.\", \" Someone catches a fish, and it is pulled out of the water.\"]}, \"v_GnLUmMkyvCo\": {\"duration\": 176.43, \"timestamps\": [[0, 54.69], [54.69, 120.85], [120.85, 176.43]], \"sentences\": [\"A male is dressed in warm clothing outside in a field preparing to throw a shot put.\", \"The man does several turns with the ball and then eventually lets it go.\", \"Several videos of him are then shown over a period of time of him repeating the same tasks.\"]}, \"v_IWdJF6lBSnM\": {\"duration\": 91.86, \"timestamps\": [[0, 33.53], [28.94, 70.73], [61.09, 88.18]], \"sentences\": [\"A man is seen speaking to the camera while text is shown next to him.\", \" The man continues speaking followed by logos shown next to his face.\", \" He speaks more and ends by fading to black.\"]}, \"v_BZAzrFF5emE\": {\"duration\": 183.21, \"timestamps\": [[4.58, 32.06], [32.06, 65.04], [64.12, 73.28], [73.28, 101.68], [101.68, 105.34], [106.26, 183.21]], \"sentences\": [\"A man in the street talks to the camera while he holds a skateboard.\", \"  The man walks to the grass and stands on the skateboard in the grass.\", \"  The man picks up the skateboard and talks to the camera again.\", \"  The man puts the skateboard on the road and begins to ride it.\", \"  The man stops near the camera and starts talking again.\", \"  The man rides toward the camera one last time.\"]}, \"v_EfjzkyLrnDg\": {\"duration\": 13.89, \"timestamps\": [[0, 4.72], [4.17, 9.37], [10.41, 13.68]], \"sentences\": [\"A close up of a person is seen grabbing cans and poking holes into them.\", \" The man then begins drinking out of the beers all at once.\", \" He drops the beers down at the end while people watch him.\"]}, \"v_uuFJdgTT5kE\": {\"duration\": 137.49, \"timestamps\": [[0, 137.49], [8.94, 19.94], [12.37, 39.18], [12.37, 40.56], [21.31, 137.49], [23.37, 57.06], [30.93, 57.06], [33, 66.68], [56.37, 125.8]], \"sentences\": [\"The men are playing riding the horses are playing polo in a green field.\", \" Spectators wearing sunglasses are watching.\", \" The player in the white horse hit the ball.\", \" The players ran after the ball.\", \" A view below is a big green field with a water fountain in the center.\", \" The spectators sitting on the chairs are cheering.\", \" The player on a brown horse is running towards the white ball.\", \" A man hit the ball.\", \" People ware walking at the parking lot.\"]}, \"v_48zOi9j1E0A\": {\"duration\": 164.77, \"timestamps\": [[0, 68.38], [51.9, 117.81], [118.63, 162.3]], \"sentences\": [\"Two men are seen speaking to the camera making various hand gestures and one taking their jacket off and high fiving the other.\", \" The men gear up and look to the camera as well as spin a knife around and move around a paintball pit.\", \" The men run back and fourth after one another shooting a paintball gun when one hits the other and holds him on the ground.\"]}, \"v_seQE5VZt3K0\": {\"duration\": 181.86, \"timestamps\": [[2.73, 41.83], [38.19, 116.39], [101.84, 172.77]], \"sentences\": [\"A person's feet are seen close up that lead into clips of people pushing dirt along and paving it down.\", \" People pour liquid into a bucket and proceed to lay tiles down on the side.\", \" The people continue to place tiles down while using a tool to push it in place and wipe it off with a rag.\"]}, \"v_wJYsD3_CS6E\": {\"duration\": 85.98, \"timestamps\": [[0, 85.98], [15.48, 20.64], [83.4, 85.98]], \"sentences\": [\"A baby in a pink hat is sitting in a swing swinging.\", \" A person comes up and pushes her.\", \" The baby turns and looks behind them.\"]}, \"v_e9AsyRGUzTc\": {\"duration\": 53.15, \"timestamps\": [[0, 37.74], [33.75, 37.74], [37.74, 45.71]], \"sentences\": [\"man is talking to the camera in a seashore holding a bottle of sunscreen.\", \" the man pour sunscreen on her hands and is talking about it.\", \" then the man spread the sunscreen in his hands and in his face.\"]}, \"v_j6zAdpBqRu0\": {\"duration\": 142.9, \"timestamps\": [[0, 37.87], [43.58, 114.32], [103.6, 136.47]], \"sentences\": [\"An intro leads into several clips of people riding around on a mountain and speaking to the camera.\", \" Many people are seen riding skis and snowboards as well as up lifts to the top of the mountain.\", \" More people are seen riding down the mountain as well as speaking to the camera.\"]}, \"v_y2jDV7tFUXg\": {\"duration\": 34.13, \"timestamps\": [[0, 2.22], [3.07, 18.6], [19.29, 34.13]], \"sentences\": [\"Some people are gathered at tables by a pier.\", \" They are watching boaters pulling people on water skis.\", \" The skiers are staying upright, going around in circles until they jump off and run to shore.\"]}, \"v_B7t85SESTXI\": {\"duration\": 128.59, \"timestamps\": [[0, 31.51], [5.79, 7.07], [33.43, 36.01], [37.29, 88.09]], \"sentences\": [\"People sits on a couch watching TV and eating pop corn.\", \" A woman and and a man talk in the TV.\", \" People put black bag on their heads.\", \" Then a group of snipers fires colored balls to people and stuff.\"]}, \"v_wwh94C7NB1I\": {\"duration\": 192.87, \"timestamps\": [[0, 25.07], [29.89, 116.68], [118.61, 192.87]], \"sentences\": [\"Three boys are sitting on the side of a mountain, putting on gear.\", \" They skate around the road winding around the mountain.\", \" They continue skating on their skateboards as they take sharp turns.\"]}, \"v_cXY-ONmtylc\": {\"duration\": 115.06, \"timestamps\": [[0, 3.45], [4.03, 4.6], [5.18, 15.53], [15.53, 22.44], [23.01, 82.84], [82.84, 112.75]], \"sentences\": [\"A man mix concrete using a machine.\", \" After, the man leans on a van while holding a cigarette.\", \" Then, the man covers a wall with concrete.\", \" A man talks while a woman shows her arm.\", \" Then the woman applies cement to the wall, after she takes a plank to flatten the uneven wall.\", \" Three laborers stand on the street, then they go inside and the girl takes a bag of cement and walk outside the home.\"]}, \"v_W3ozAI2ozCs\": {\"duration\": 36.67, \"timestamps\": [[0, 2.2], [2.57, 11.55], [11.92, 32.08], [32.27, 36.67]], \"sentences\": [\"A young male gymnast prepares to mount a beam.\", \" He jumps up, grabbing the bar as he flips numerous times.\", \" He does hand stands, then lifts his legs into the air in a plethora of moves.\", \" The boy dismounts, then bows to the crowd.\"]}, \"v_jcQy1x8lDaQ\": {\"duration\": 128.83, \"timestamps\": [[0, 128.83], [8.37, 24.48], [22.54, 50.89], [47.67, 71.5], [68.92, 89.53], [88.25, 128.83]], \"sentences\": [\"There's a person in a red shirt and black shoes bowling in a bowling alley.\", \" He steps in the first time, holding the bowling ball in his right hand and aims for the pins and hits a strike.\", \" Then he comes back the second time with the bowling ball and aims directly at the pins after they are rearranged.\", \" He hits a strike again for the second time in a row.\", \" The third time when he returns, he throws the ball and hits a strike one more time.\", \" When he returns the fourth time, he hits another strike by knocking down all the pins.\"]}, \"v_zQVUXbyCV1o\": {\"duration\": 183.55, \"timestamps\": [[0, 16.52], [18.36, 128.49], [128.49, 183.55]], \"sentences\": [\"A beach soccer tournament between a red jersey team and a dark blue jersey team shows a bicycle kick by the dark blue jersey team at slow motion.\", \" Clips of goal shots, ball control and passing by different teams from different matches playing beach soccer.\", \" Clips of penalty shots and half field shots by different teams competing in different beach soccer tournaments.\"]}, \"v_cIRMaWUTHuk\": {\"duration\": 143.87, \"timestamps\": [[1.44, 4.32], [10.79, 41.72], [10.79, 69.06], [10.79, 88.48], [10.79, 143.87]], \"sentences\": [\"This woman is showing her viewers how to cook Mexican shelled pasta.\", \" First she pours oil into the pot and then adds the shelled pasta and she tells important information about what you should and shouldn't do.\", \"  Next she adds a little bit of onions and some canned tomato sauce.\", \" Next she puts chicken broth into the pasta  and some corn.\", \" Finally it's done after it has went through the process of being cooked.\"]}, \"v_V4U5SaPDL0E\": {\"duration\": 194.1, \"timestamps\": [[0, 194.1], [0, 45.61], [45.61, 81.52], [81.52, 106.75], [191.18, 194.1]], \"sentences\": [\"A man and a woman are dressed in red and black and they are in a living room as they dance and do a multiple movements that include spinning and turning.\", \" A child is sitting on the couch smiling and watching the tv as the couple are dancing and sometimes looks over at them,too.\", \"The sitting child then lies down on the couch as the couple are still dancing and the tv is still on.\", \" The child lying down starts to left their two legs in the air while pulling the bottom of their pants to cover their ankles.\", \"The camera quickly pans to the camera person and it reveals a close up shot of another child and the man and woman finally finish their dancing and reach for the camera.\"]}, \"v_V9MTU7xLukc\": {\"duration\": 114.52000000000001, \"timestamps\": [[0, 52.11], [29.2, 114.52]], \"sentences\": [\"Two people are seen standing on a roof while the camera pans around them painting.\", \" The camera continues panning around the are and watches the people continuing to paint.\"]}, \"v_h2xV6mTpUCM\": {\"duration\": 172.15, \"timestamps\": [[0, 9.47], [10.33, 172.15]], \"sentences\": [\"A cat sits on the bed licking its paw.\", \" It beings to rub its face every time it takes a lick of its paw.\"]}, \"v_gwZleaX_ZR8\": {\"duration\": 149.61, \"timestamps\": [[0, 149.61], [4.49, 149.61]], \"sentences\": [\"men are standing in the edge of a trampoline preparing to amke a jump into a pool in a roofed pool.\", \" people are around the pool watching the men.\"]}, \"v_sy-xNiKnfBU\": {\"duration\": 201.92000000000002, \"timestamps\": [[0, 17.16], [20.19, 72.69], [77.74, 201.92]], \"sentences\": [\"A group is standing on the sand and waves at the camera.\", \" They are shown parasailing in the ocean water.\", \" They take turns, several people floating on the water.\"]}, \"v_uBmUiouilQY\": {\"duration\": 38.85, \"timestamps\": [[0, 8.93], [4.08, 8.16], [13.98, 37.68], [37.49, 38.85]], \"sentences\": [\"A female child is playing with a hula hoop.\", \" A toddler is watching the child.\", \" The toddler stands in the middle of the hula hoop and begins swinging his hips and smiling at the camera.\", \" The toddler then runs towards a doorway.\"]}, \"v_mjKcoY18QG0\": {\"duration\": 143.73, \"timestamps\": [[0, 20.12], [20.12, 62.52], [62.52, 99.89], [99.18, 143.73]], \"sentences\": [\"Robert DeNiro is laying in the bed and is on the phone having a conversation with a man who is in the casino.\", \"A group of people are then shown talking and gambling in the casino and the dealers are making weird gestures as they shuffle the cards.\", \"The people don't like the card and they keep throwing the cards back at the dealer.\", \"The owner then walks by the table to see the commotion as the male gets up and speaks with Robert DeNiro who then tells them to end the game.\"]}, \"v_P3_YQbHXEIs\": {\"duration\": 69.96000000000001, \"timestamps\": [[0.7, 33.93], [25.19, 67.51]], \"sentences\": [\"A man is seen tattooing the back of a person while the person sits motionless.\", \" The artist continues moving back and fourth while pausing and then going back to tattooing.\"]}, \"v_GqkvSUNfZFk\": {\"duration\": 145.07, \"timestamps\": [[0, 73.99], [56.58, 145.07]], \"sentences\": [\"Hockey players are seen walking out onto the ice as well as preparing back stage and skating around the rink with others.\", \" The people then play a hockey match that shows a man cleaning off a trophy and one team celebrating.\"]}, \"v_nB50V0OBto0\": {\"duration\": 162.8, \"timestamps\": [[0.81, 154.66], [0.81, 24.42], [26.86, 105], [109.89, 154.66]], \"sentences\": [\"A girl and her family and friends snow sled and ski on a snowboard outside in the backyard.\", \"  A young girl open up the blinds in a room then turns to talk to the camera while another girl in the background hot irons her hair in front of a desktop computer.\", \"  The little girl who was talking then goes outside and snowboards many times, sometimes with other people, in the backyard, often rolling or falling off of the board and losing balance.\", \" After the snowboarding ends the little girl returns to talking to the camera while several frames of language invite watchers to join their channel.\"]}, \"v_Aygp8JaMkqQ\": {\"duration\": 174.85, \"timestamps\": [[0, 9.62], [9.62, 41.96], [21.86, 24.48], [31.47, 36.72], [51.58, 55.08], [55.08, 158.24], [158.24, 162.61], [162.61, 174.85]], \"sentences\": [\"We see a title then a map.\", \" We see people walking and enjoying the weather on the beach.\", \" A red balloon in the air.\", \" Words appear over the beach.\", \" A large wave engulfs a group of surfers and words reappear.\", \" We see people attempting to swim in huge rough waves.\", \" Men on the beach high five each other.\", \" We see the ending credits.\"]}, \"v_GG_Bi89pNlg\": {\"duration\": 34.76, \"timestamps\": [[0, 18.6], [16.34, 34.76]], \"sentences\": [\"A person walks forward to a circle while many people stand around her and watch.\", \" The woman spins around and throws the disk while two people measure out her throw.\"]}, \"v_Uqte3S_ErTM\": {\"duration\": 9.01, \"timestamps\": [[0.09, 1.13], [2.03, 6.71], [5.23, 8.65]], \"sentences\": [\"A large track of dirt is shown on a track while others stand on the sidelines.\", \" A person is seen riding down the track on a dirt bike.\", \" The person continues to ride down on the dirt path while the camera follows.\"]}, \"v_YTuQrhSKkNE\": {\"duration\": 100.28999999999999, \"timestamps\": [[0, 100.29], [34.6, 35.1], [87.25, 100.29]], \"sentences\": [\"People are playing hockey on ice.\", \" A man in a black jacket is holding a camera filming them.\", \" A man in a white shirt holds a hockey stick.\"]}, \"v_HZWdMK6zhec\": {\"duration\": 79.6, \"timestamps\": [[0, 9.55], [10.75, 38.61], [40.6, 79.6]], \"sentences\": [\"A man is standing outside in front of a shed.\", \" He uses a net to hit a ball to a small child.\", \" The boy swings, hitting the ball back.\"]}, \"v_RrKCACSu9xU\": {\"duration\": 49.02, \"timestamps\": [[0, 15.2], [15.44, 31.62], [31.13, 49.02]], \"sentences\": [\"Three people are outside in a back yard playing on a kid's wooden play set.\", \"The two men on the left are swinging back and forth as the girl on the far left is holding on to rings upside down.\", \"After a short period of time,the boy on the right jumps out of the swing and the girl follows him as the man in the middle just falls to the ground.\"]}, \"v_KiKZEKwn4Aw\": {\"duration\": 207.01, \"timestamps\": [[0, 17.6], [22.77, 27.95], [17.6, 207.01]], \"sentences\": [\"A person on skis and wearing a very colorful snow coat, and a white helmet is shown getting on a ski lift.\", \" The person takes a quick ski on a ramp and jumps off of it, then a special effect reverses it so the person is now going backwards onto the ramp.\", \" Now the person is now skiing on the snow or going down a snowy hill while other people are around doing the same thing thing.\"]}, \"v_euyYRNOSPE0\": {\"duration\": 180.7, \"timestamps\": [[0, 52.4], [40.66, 136.43], [103, 173.47]], \"sentences\": [\"A woman is seen belly dancing on a set while moving around and around.\", \" The woman shakes her body while smoke fills the room around her.\", \" She continues dancing over and over and ends by walking away.\"]}, \"v_Cy3tUZIN8nk\": {\"duration\": 100.87, \"timestamps\": [[1.51, 32.28], [19.67, 82.21], [75.65, 98.85]], \"sentences\": [\"A young man is seen sitting on a park bench playing a harmonica and tapping his foot.\", \" The man moves his foot up and down and pauses for a minutes before continuing to play.\", \" The man sings a bit and still plays the harmonica.\"]}, \"v_O1z0Q-3OUg0\": {\"duration\": 151.12, \"timestamps\": [[0, 116.36], [119.38, 151.12]], \"sentences\": [\"A woman is seen speaking to the camera in front of a counter top with various ingredients laid out.\", \" She mixes several ingredients into a bowl and spreads it around with a spoon.\"]}, \"v_wuknZBoyMRE\": {\"duration\": 98.66, \"timestamps\": [[0, 40.94], [30.09, 71.04], [72.52, 98.66]], \"sentences\": [\"A man is seen facing the camera and running around a lawn on a set of stilts.\", \" He pauses to speak to the camera and continues running around until he falls.\", \" He lays his head down and the camera zooms in on his face.\"]}, \"v_dTkMZlj7jFU\": {\"duration\": 193.82, \"timestamps\": [[0, 80.43], [81.4, 167.65]], \"sentences\": [\"A person is seen measuring out paper and putting a ruler down and writing on it with a pencil.\", \" Two people then measure a ceiling and begin putting wallpaper along the ceiling and pushing it into the ceiling.\"]}, \"v_2PFU_Ee0x14\": {\"duration\": 150.0, \"timestamps\": [[0, 15.75], [15.75, 37.5], [37.5, 60.75], [60.75, 94.5], [94.5, 126], [126, 150]], \"sentences\": [\"Two people are outside of a rural wall in a field playing with rackets,hitting a ball over the net.\", \"A phone is then shown across the screen and the two continue to play.\", \"The man then stops and has to take something out of his foot.\", \"Once he is done,he walks over to his shoes but doesn't put them on.\", \"After,the game continues and the person filming it is shown as well as the person who is sitting next to him.\", \"Then the game continues and one they are done playing the come over and put there shoes on.\"]}, \"v_ABBQqwPOxw4\": {\"duration\": 6.99, \"timestamps\": [[0, 3.11], [3.15, 6.99]], \"sentences\": [\"A young Caucasian male is standing outside on a tennis court juggling tennis balls.\", \"The man suddenly loses his momentum and the balls drops and he hits it with the tennis racket.\"]}, \"v_P9qhbSYblG4\": {\"duration\": 115.71000000000001, \"timestamps\": [[5.21, 14.46], [15.04, 105.87]], \"sentences\": [\"A colorful bowling ball rests in a rack.\", \" A boy bowls strikes down a lane in a bowling alley.\"]}, \"v_vuntaZJBcfI\": {\"duration\": 124.65, \"timestamps\": [[0, 0.62], [1.25, 51.73], [51.73, 55.47], [56.09, 109.69], [108.44, 114.67], [115.3, 124.65]], \"sentences\": [\"We see a title screen in black.\", \" We then see people lined up a the start of a a marathon take off running as words stream at the bottom of the screen.\", \" Asian script appears and a man stops running to look at the camera.\", \" The man runs off the marathon course and we then see shots of various location such as lakes, weddings, cities the ocean.\", \" The man stops and talks to the camera again.\", \" We then see various Asian script as the closing screens.\"]}, \"v_EN63ldqfGsI\": {\"duration\": 229.88, \"timestamps\": [[0, 19.54], [21.84, 121.84], [135.63, 182.75], [186.2, 229.88]], \"sentences\": [\"A countdown from ten to zero is shown.\", \" We then see a group gathered in a gymnasium.\", \" The instructor walks up, and everyone starts a zumba exercise.\", \" The people dance and do aerobic exercise in unison as they are led by the man in front.\"]}, \"v_oZTFplEHVDo\": {\"duration\": 19.74, \"timestamps\": [[0, 4.84], [5.03, 19.74], [19.44, 19.74]], \"sentences\": [\"Words are shown on the screen.\", \" A person is doing a gymnastics routine on uneven bars.\", \" She does a handstand on the top bar.\"]}, \"v_atw5LkvnAyo\": {\"duration\": 146.59, \"timestamps\": [[0, 68.16], [64.5, 146.59]], \"sentences\": [\"A person is seen in fast motion hanging a large picture onto a wall and then pushing it against the wall.\", \" He places more paper up against the wall while cutting around the edges and laying it down evenly against the wall.\"]}, \"v_lG5d8bCHLM4\": {\"duration\": 33.48, \"timestamps\": [[0, 6.19], [6.36, 27.79], [28.46, 33.48]], \"sentences\": [\"A little girl is climbing the monkey bars at the playground.\", \" She flips over them forward and backward.\", \" Then she jumps down from the bars, smiling.\"]}, \"v_TIEzvhv6xaI\": {\"duration\": 19.25, \"timestamps\": [[0, 6.83], [6.16, 14.25], [13.19, 18.96]], \"sentences\": [\"A large group of people are seen standing around a gymnasium looking at one another.\", \" One man is seen standing on a ladder and speaking to the group.\", \" The people then begin playing a game of volleyball.\"]}, \"v_X8o3FbH0gyo\": {\"duration\": 170.23, \"timestamps\": [[0, 80.01], [81.71, 170.23]], \"sentences\": [\"A man is holding a rope as he is water skiing on a lake.\", \" He does several stunts, including flips and spins in the water, occasionally falling and righting himself.\"]}, \"v_iB20nDf5yJs\": {\"duration\": 178.45, \"timestamps\": [[0, 8.92], [8.92, 84.76], [84.76, 178.45]], \"sentences\": [\"The screen shows the diver and introduces him.\", \"  The diver is doing various dives while a crowd watches.\", \"  The scene switches to an outdoor pool diving board.\"]}, \"v_zzci2xZ011A\": {\"duration\": 48.53, \"timestamps\": [[0, 48.53], [2.43, 48.53]], \"sentences\": [\"a lot iof people are laying and walking in sand on seashore.\", \" blond kid is standnig in seashore playing with a small ball.\"]}, \"v_CRH5U5XKb2Q\": {\"duration\": 225.16, \"timestamps\": [[0, 225.16], [4.5, 225.16], [64.17, 135.1], [63.05, 225.16], [79.93, 84.44], [110.33, 225.16], [172.25, 179.01], [206.03, 212.78]], \"sentences\": [\"A man sits down by the sidewalk playing a guitar.\", \" A black man approaches to watch the guitarist perform.\", \" A woman stands by recording the performer.\", \" The black man dances along, enjoying the music of the guitarist.\", \" Two young girls leave store.\", \" A black man wearing a yellow vest approaches and starts dancing and singing along.\", \" A few black people enter the store.\", \" A woman in gray pants leaves the store.\"]}, \"v_SKdouCRLoKE\": {\"duration\": 93.09, \"timestamps\": [[0, 23.74], [22.81, 31.18], [30.72, 93.09]], \"sentences\": [\"The matador is waiting for the bull to come out, then the bull attacked him, the people came up to him to help him.\", \" The matador is is holding a stick then went to the bull, and the bull attacked him, people came up to the bull and covered the bull with cape.\", \" A news anchor in red dress is talking while behind her the monitor is showing images such as maps and matador.\"]}, \"v_2GCNxOKMtBo\": {\"duration\": 193.91, \"timestamps\": [[0, 19.39], [20.36, 94.05], [95.02, 107.62], [108.59, 170.64], [171.61, 189.06], [190.03, 193.91]], \"sentences\": [\"A man sitting on a skimmobile is icefishing next to a hole in the snow.\", \"  A wooden contraption signals that a fish has been caught, the man pulls the fish out of the water.\", \" Buttons on an electronic navigation tool are pressed switching through several screens.\", \" Several men continue to fish on the snowy ice and drill holes.\", \"  \\\"The Modern Ice Age\\\" and \\\"Small Mouth Bass\\\" publications are shown on screen.\", \" \\\"Lindner Media Productions\\\" logo and credits are shown on screen.\"]}, \"v_kW63TeJo4JY\": {\"duration\": 23.59, \"timestamps\": [[0, 0.94], [1.18, 22.77], [16.99, 19.23], [19.7, 23.59]], \"sentences\": [\"A man walks in front of the camera.\", \" We see a little girl at a party hitting a pinata.\", \"18 Someone is lifting the pinata.\", \" The pinata falls on the ground.\"]}, \"v_uSuHnQPWfNY\": {\"duration\": 169.65, \"timestamps\": [[0, 90.76], [76.34, 162.01]], \"sentences\": [\"A woman is seen walking into frame with a dog and leads into her brushing the dog while speaking to the camera.\", \" The dog rolls over as the woman continues brushing and ends by petting the dog on its sides.\"]}, \"v_D_yO_40uREE\": {\"duration\": 112.52000000000001, \"timestamps\": [[0, 7.31], [9, 58.51], [59.64, 112.52]], \"sentences\": [\"Two men are kneeling on a floor.\", \" They are laying carpet tiles together.\", \" They measure and cut the tiles before fitting them perfectly together.\"]}, \"v_zLjAfrfqRcc\": {\"duration\": 234.63, \"timestamps\": [[0, 43.41], [44.58, 48.1], [48.1, 63.35], [64.52, 97.37], [97.37, 107.93], [107.93, 227.59], [226.42, 234.63]], \"sentences\": [\"A van is driving down a rural road, on the highway in a farm area.\", \" We see a truck pass through a small town in the mountains and  small car is seen passing high above a village.\", \" We pass through a highway tunnel and we exit the tunnel in a bright light.\", \" We now see a sailboat on the water.\", \" We see the calm lake through the trees and through a clearing.\", \" We see the boys launching their sailboat and see them sailing from different angles.\", \" 2:35 We see a bunch of swans in the lake 3:47 We see a goPro camera on a black screen.\"]}, \"v_7ET-TtUVU7s\": {\"duration\": 130.5, \"timestamps\": [[0, 39.8], [22.18, 101.14], [92, 125.93]], \"sentences\": [\"Several logos are shown that lead into people riding down a river in a canoe.\", \" The people push themselves along in the canoe and show more people riding along.\", \" A man is seen speaking to the camera using his hands in the end.\"]}, \"v_G0DPDo44wt8\": {\"duration\": 21.53, \"timestamps\": [[0.22, 10.12], [8.18, 21.09]], \"sentences\": [\"A man is seen standing around a group of others and bending down to grab a weight.\", \" The man then lifts the weights up onto his shoulders and ends by throwing it down.\"]}, \"v_5vDPgcyRtOU\": {\"duration\": 111.22, \"timestamps\": [[0, 35.59], [35.59, 111.22]], \"sentences\": [\"a video warning showing characteristics of the products is shown.\", \" man is standing in front of a wooden table polishing the table with wax and orange oil.\"]}, \"v_MWWDqMI-rxU\": {\"duration\": 137.7, \"timestamps\": [[0, 43.37], [28.92, 100.52], [91.57, 128.06]], \"sentences\": [\"Two people are seen speaking to the camera when one begins to breakdance.\", \" The man continues speaking to the camera and begins demonstrating how to perform proper moves.\", \" He continues moving around the camera and ends by speaking to it.\"]}, \"v_iyOyZJm7fVU\": {\"duration\": 103.65, \"timestamps\": [[0, 103.65], [11.4, 13.99], [22.8, 46.64], [46.13, 65.82], [65.3, 89.66], [89.66, 96.4], [96.4, 103.65]], \"sentences\": [\"We see young men who appear to be celebrities in an Asian city.\", \" One of the guys puts on a white hat.\", \" We see the group making cookies.\", \" We see two men mixing something in a large silver bowl, and another using his hand to mix something in a vat.\", \" The men begin piping cake mix into cupcake cups and put them in the oven.\", \" The guys high five each other.\", \" One guy talks to the camera.\"]}, \"v_3MS3CAyl_YA\": {\"duration\": 66.29, \"timestamps\": [[0, 44.42], [40.44, 44.42], [44.42, 66.29]], \"sentences\": [\"A man is sitting on a chair smoking a pipe.\", \" The bong is shown on a table in front of him.\", \" A man in a white shirt comes and takes the other mans seat and smokes the pipe.\"]}, \"v_MtmQjudesdM\": {\"duration\": 26.12, \"timestamps\": [[0, 6.79], [6.4, 15.94], [15.8, 26.12]], \"sentences\": [\"A female track athlete is standing on her tip-toes on a track.\", \"She lifts up her foot and runs at a angle toward a mat and completes a successful high jump.\", \"After,she gets up and walks up from the mat.\"]}, \"v_vjUx3k63oZI\": {\"duration\": 72.93, \"timestamps\": [[0, 45.95], [45.58, 72.93]], \"sentences\": [\"A man is strapped to a harness as he walks down a runway high in the sky and people begin strapping him down.\", \"One the man is secure he puts his hands up and is pushed off for his free fall.\"]}, \"v_rMy6sItJID0\": {\"duration\": 93.21000000000001, \"timestamps\": [[0, 41.94], [38.68, 93.21]], \"sentences\": [\"A gymnast is seen waving her arms up in the air and performing a routine.\", \" She continues flipping along the beam for her routine and ends with her jumping off and presenting her arms.\"]}, \"v_Lm4oeMdqOgw\": {\"duration\": 81.36, \"timestamps\": [[5.7, 20.75], [19.53, 60.62], [63.87, 81.36]], \"sentences\": [\"An athletic woman stands ready before a track holding a bar far above her head.\", \" She runs down and throws the pole off into the distance and is shown again in slow motion.\", \" She bends over tired looking at her pole, while many watch and walk around her.\"]}, \"v_JxbmHo84AC4\": {\"duration\": 156.5, \"timestamps\": [[0, 20.35], [21.91, 89.21], [91.55, 156.5]], \"sentences\": [\"A couple of stuffed animals are on the inside hood of a car.\", \" A person drives on the roads as someone bugs him by pushing his ear.\", \" They go through tunnels and sight see throughout the city.\"]}, \"v_jmSrbVNKF6U\": {\"duration\": 81.34, \"timestamps\": [[0, 44.33], [44.74, 81.34]], \"sentences\": [\"A young woman is dressed in long socks and ballet shoes and she begins doing ballet exercises.\", \"She then stands on her toes and begins squatting and doing various ballet exercising.\"]}, \"v_Ul8qLMmszx4\": {\"duration\": 93.18, \"timestamps\": [[0, 49.39], [37.27, 93.18]], \"sentences\": [\"A person is seen using a scraper to clean the snow off his car while the camera captures him from several angles.\", \" He pushes windshield wipers down and wipes snow off other cars and the lights on the car turn on.\"]}, \"v_7hfaWQgcDyo\": {\"duration\": 54.1, \"timestamps\": [[0.27, 16.77], [12.71, 32.46], [28.13, 49.5]], \"sentences\": [\"A close up of a sandwich is shown followed by a person mixing ingredients in a bowl.\", \" The person lays out bread with the ingredients and lays them on top of each other.\", \" He then makes a sandwich and fries it on a pan and shows off the finished result in the end.\"]}, \"v_G6ayznrS0tY\": {\"duration\": 30.15, \"timestamps\": [[0, 3.02], [3.17, 4.98], [5.13, 7.54], [7.69, 9.95], [10.1, 12.36], [12.51, 15.23], [23.82, 24.42], [24.73, 27.29]], \"sentences\": [\"A man swishes some mouthwash in his mouth.\", \" He is walking down the street when a group of reporters ask him questions.\", \" He speaks to a woman.\", \" He sits at a makeup chair speaking to a makeup artist.\", \" He eats pizza with a group of friends.\", \" He sprays his mouth with mouthwash.\", \" He blows his breath into the air.\", \" He is laughing and enjoying himself as he hangs out with a group of friends.\"]}, \"v_K3sJnHGHQHM\": {\"duration\": 180.0, \"timestamps\": [[0, 5.4], [4.5, 18.9], [19.8, 22.5], [24.3, 35.1], [35.1, 175.5], [69.3, 76.5], [101.7, 111.6], [120.6, 135.9], [147.6, 153.9], [174.6, 180]], \"sentences\": [\"We see the intro screen on a blue background.\", \" We then see people getting on a bus and riding it to a lake.\", \" We see a helicopter landing.\", \" We see the map for the rafters.\", \" The people begin rafting down the river.\", \" A person jumps in the water.\", \" The people on the raft go through a tunnel.\", \" We see another map, a bus and a tow line.\", \" A person jumps in the water off a short cliff.\", \" We see the ending screen on blue.\"]}, \"v_QOuNt8YH3Rk\": {\"duration\": 167.96, \"timestamps\": [[1.68, 58.79], [52.07, 115.05], [100.78, 164.6]], \"sentences\": [\"An athletic man is seen stepping up to a circle and leads into a clip of him spinning around quickly and throwing the object in the distance.\", \" His throw is shown again in slow motion and leads into another man throwing the object.\", \" A third man steps up to throw the object and is once again shown in slow motion.\"]}, \"v_MzNI-qdQfQc\": {\"duration\": 107.02000000000001, \"timestamps\": [[2.14, 34.78], [31.04, 77.59], [67.96, 101.13]], \"sentences\": [\"A person is seen sitting in a chair holding a rubix cube and speaking to the camera.\", \" The man attempts to solve the puzzle while still looking up to the camera.\", \" The man eventually solves the puzzle and holds it up while speaking to the camera.\"]}, \"v_m6H1tLAkyjQ\": {\"duration\": 24.09, \"timestamps\": [[0, 11.56], [12.05, 24.09]], \"sentences\": [\"A man is seen riding a surf board along a wave pool with many people watching on the sides.\", \" Another person walks into the wave pool and another in and out of frame while the man continues to ride then lays down on the boogie board.\"]}, \"v_gXk9TiqGUHs\": {\"duration\": 215.82999999999998, \"timestamps\": [[3.24, 206.12], [51.8, 206.12]], \"sentences\": [\"A surfing video compilation is shown.\", \"  People are interviewed about surfing and then highlights of them surfing are shown.\"]}, \"v_e9bdQGmyrKA\": {\"duration\": 97.5, \"timestamps\": [[0, 24.86], [25.35, 75.56], [86.29, 97.5]], \"sentences\": [\"Three men are shown jumping rope outdoors.\", \" They increase in number, warming up together.\", \" One messes up, and doesn't continue.\"]}, \"v_sS-KyhAzeUY\": {\"duration\": 153.82, \"timestamps\": [[1.54, 4.61], [5.38, 145.36], [147.67, 150.75]], \"sentences\": [\"The credits of the clip are shown.\", \" People clean their hand and use their hands to dance.\", \" The credits of the video are shown.\"]}, \"v_j8NwT9JBQJk\": {\"duration\": 157.05, \"timestamps\": [[0, 18.85], [20.42, 101.3], [103.65, 157.05]], \"sentences\": [\"Two people are on a sailboat in the ocean.\", \" They are riding the turbulent waves away from the camera, the boat swinging back and forth in the water.\", \" The boat chases after them, trying to keep up.\"]}, \"v_I6nuNE-Qibw\": {\"duration\": 105.02000000000001, \"timestamps\": [[0.53, 9.45], [9.98, 23.11], [23.63, 81.92], [24.68, 39.38], [82.97, 101.35]], \"sentences\": [\"A lady prepares a meal in a kitchen.\", \" The credits of the clip are shown.\", \" A person prepares colorful treats in a kitchen.\", \" The person pours water in bowls and adds food coloring.\", \" The credits of the video are shown.\"]}, \"v_QASZ8CTxBSg\": {\"duration\": 41.61, \"timestamps\": [[0, 0.42], [0.42, 34.75], [34.75, 38.7], [38.7, 41.61]], \"sentences\": [\"A person has a box on a red piece of wrapping paper filled with roses.\", \" The person folds one corner of the paper onto the corner of the box and begins flipping the box and folding the paper onto it until it's fully covered.\", \" The person then grabs a small piece of tape and tapes it down.\", \" They grab a smaller already wrapped box, put it next to the bigger just wrapped box and walks away.\"]}, \"v_tyeLIzY0MJ4\": {\"duration\": 20.25, \"timestamps\": [[0.4, 6.58], [5.87, 14.68], [12.86, 19.94]], \"sentences\": [\"A man is seen sitting at a bar with a drink in front of him.\", \" He then begins drinking the alcohol fro the glass.\", \" The man continues to drink and finishes his beer in the end.\"]}, \"v_iN1DEIADG9o\": {\"duration\": 137.53, \"timestamps\": [[0.69, 65.33], [46.76, 134.09]], \"sentences\": [\"A man and is dog are seen in a large back yard before several tricks with a frisbee.\", \" The two continue to move all around the yard performing various flips and tricks and ends with the man carrying the dog.\"]}, \"v_4EloxAiCydc\": {\"duration\": 195.47, \"timestamps\": [[0, 43], [47.89, 114.35], [124.12, 195.47]], \"sentences\": [\"A man is inside a workshop.\", \" He uses a piece of metal to work on equipment.\", \" He rubs and sands down the metal as he goes.\"]}, \"v_wyOf_L4cNHc\": {\"duration\": 235.42000000000002, \"timestamps\": [[0, 67.09], [36.49, 235.42]], \"sentences\": [\"A large orchestra of people are seen playing instruments together in a room with one man conducting the orchestra.\", \" A man is seen singing while playing the piano followed by more clips of the orchestra playing.\"]}, \"v_0x4TP4MPelY\": {\"duration\": 147.8, \"timestamps\": [[3.69, 82.77], [90.89, 145.58]], \"sentences\": [\"Two people are seen sitting at a table speaking to one another while one paints the other's hand.\", \" The person continues painting the nails on the person while the camera captures her face and a thumbs up.\"]}, \"v_6-cHUULLVGQ\": {\"duration\": 197.48, \"timestamps\": [[0, 67.14], [68.13, 164.89], [120.46, 128.36], [165.88, 189.58]], \"sentences\": [\"A guy is power washing a car.\", \" The guy lathers up the car.\", \" A white rug is on the hood of a black car.\", \" The guy rinses the car.\"]}, \"v_Sul7NDmB5HM\": {\"duration\": 225.88, \"timestamps\": [[0, 90.35], [77.93, 225.88]], \"sentences\": [\"A man is seen bending over on a large yoga mat while sitting up every now and then to speak to the camera.\", \" She continues performing various yoga stretches along the mat and ends with her sitting on her knees and putting her hands together.\"]}, \"v_ur873jaQO3A\": {\"duration\": 130.42, \"timestamps\": [[0, 18.91], [18.91, 46.95], [46.95, 130.42]], \"sentences\": [\"A man is holding a bow and arrow in his hand.\", \" The bow and arrow is shown up close.\", \" She stands outside and shoots an arrow.\"]}, \"v_wLKePf07V14\": {\"duration\": 197.23, \"timestamps\": [[0, 3.94], [3.94, 101.57], [101.57, 158.77], [156.8, 189.34], [191.31, 197.23]], \"sentences\": [\"We see the colorful title screen.\", \" A man unrolls cellophane paper and sits a bottle on it and wraps it in paper.\", \" The man ties a bow around the neck of the bottle.\", \" We see the finished wrapped product.\", \" The ending credit play and the screen goes white.\"]}, \"v_my9Z4bun_Dk\": {\"duration\": 124.18, \"timestamps\": [[1.86, 51.54], [32.29, 92.51], [69.54, 116.11]], \"sentences\": [\"A small group of people are seen sitting on bikes in front of a large track.\", \" The gate is then let down and the people are seen riding all along the track.\", \" The people continue moving past one another.\"]}, \"v_dRAn_gsx9Wc\": {\"duration\": 192.94, \"timestamps\": [[2.89, 88.75], [63.67, 183.29]], \"sentences\": [\"A large group of people are seen running up and down a field playing a game of lacrosse.\", \" The people continue playing back and fourth as the camera captures their movements.\"]}, \"v_iwhejKH3DSw\": {\"duration\": 203.87, \"timestamps\": [[4.08, 125.38], [77.47, 195.72]], \"sentences\": [\"A close up of ingredients are shown that lead into a person mixing the ingredients together into a large bowl.\", \" The person continues adding more ingredients and ends by pouring the mixture on a plate and putting greens on top.\"]}, \"v_fSUwyioi_ws\": {\"duration\": 103.47, \"timestamps\": [[0, 22.25], [22.25, 47.6], [47.08, 79.67], [79.67, 103.47]], \"sentences\": [\"A small tomato is cut in half on the counter and a large knife begins cutting slices.\", \"A man is then shown standing in a large yard behind a small table with the cutting board on it and begins talking.\", \"A small triangular square is then shown and placed in a pan of water and laid on a piece of folded up napkin.\", \"The knife is then moved back and forth across the block and then over a piece of kitchen steel.\"]}, \"v_8ma-p7ap2MQ\": {\"duration\": 224.19, \"timestamps\": [[0, 57.17], [53.81, 160.3], [144.6, 224.19]], \"sentences\": [\"A man is seen speaking to the camera outside while pointing to a hedge on the side.\", \" The man continues speaking and begins lifting up a tool and cutting around the hedge.\", \" The man continues cutting around the hedge and stops to speak to the camera.\"]}, \"v_lviFcaF4HUo\": {\"duration\": 36.97, \"timestamps\": [[0, 3.88], [4.81, 32.16], [33.27, 36.97]], \"sentences\": [\"A female gymnast launches herself onto a low beam, then a high one.\", \" She spins herself between the two, going around and around the bars.\", \" She dismounts, throwing her arms into the air and smiling.\"]}, \"v_dSww-S8qyCM\": {\"duration\": 94.25, \"timestamps\": [[1.89, 53.72], [31.57, 86.24]], \"sentences\": [\"A person is seen standing before a long track and leads into her jumping into a pit several times while people watch and measure her jumps.\", \" Several more people are seen running along the track and jumping into a pit while others measure and continue to watch.\"]}, \"v_baSx0q9LKg0\": {\"duration\": 236.22, \"timestamps\": [[0, 11.81], [11.81, 40.16], [42.52, 60.24], [63.78, 137.01], [140.55, 229.13]], \"sentences\": [\"A cake chocolate is served on a dish.\", \" A person puts three eggs and sugar in bowl an mix.\", \" Then, the person measures flower and add to the dough.\", \" After, the person puts the dough in a baking pan and in a muffin pan and bake.\", \" Next, the woman add melted chocolate to the baking pan and puts on the cake, after cover the cake with melted chocolate.\"]}, \"v_pPrW3iW0DA8\": {\"duration\": 64.18, \"timestamps\": [[0, 6.42], [10.59, 44.61], [46.85, 64.18]], \"sentences\": [\"A man is on a concrete slab outside.\", \" He is throwing a frisbee while standing in a hula hoop.\", \" He lets go, and the disc flies through the air off screen.\"]}, \"v_HD_vpQCUSCQ\": {\"duration\": 161.07, \"timestamps\": [[0, 13.69], [13.69, 41.88], [41.07, 66.04], [66.84, 95.03], [95.83, 127.24], [124.02, 140.93], [140.93, 161.07]], \"sentences\": [\"A woman dressed in a green lined polo and khaki shorts is standing outside in a field near golf carts talking in the field.\", \"A blonde hair young lady appears in a kitchen and starts to eat a sandwich with bananas cut on it.\", \"Next,she goes to the gym and does doing weight lighting as her friend spots her.\", \"Now the girl is in the gym with the rest of her team practicing volleyball and when she is done,she goes to the locker room and puts on her clothes.\", \"It's now 2:22 and she is outside by the pool with her friends before she leaves around 4:00 pm.\", \"The young lady is now at a restaurant working and delivering food for about four or five hours.\", \"She spends time with her boyfriend until finally going home around 11:00 to sleep.\"]}, \"v_CUG8vpMIFEQ\": {\"duration\": 197.97, \"timestamps\": [[1.98, 68.3], [76.22, 179.17]], \"sentences\": [\"An intro leads into several clips of people performing impressive flips off a high dive.\", \" The video continues showing more and more people taking turns on a high dive while many watch on the side.\"]}, \"v_mWNTl9Bh7kI\": {\"duration\": 33.37, \"timestamps\": [[0, 5.01], [0, 33.37], [18.69, 33.37]], \"sentences\": [\"A man in a white shirt is standing on a field.\", \" Kids are running around on the field playing criquet.\", \" They all chase after the ball.\"]}, \"v_-MldnTjJ-zE\": {\"duration\": 178.75, \"timestamps\": [[0, 30.39], [30.39, 82.22], [82.22, 128.7], [128.7, 178.75]], \"sentences\": [\"A little girl is standing next to a white horse, she is brushing the horse.\", \" She steps back and talks about how she does it and then gets back to brushing.\", \" She goes to the horses face and tries to brush but he moves his face to the other direction so she continues in different places.\", \" She walks around to the other side of the horse and starts brushing that side of him.\"]}, \"v_1ioKX0iuico\": {\"duration\": 177.18, \"timestamps\": [[0, 21.26], [21.26, 38.98], [49.61, 62.01], [62.01, 84.16], [85.93, 107.2], [107.2, 116.05], [117.83, 173.64]], \"sentences\": [\"A person in a boat throws a board to someone in the water.\", \" The person in the water puts the board on their feet.\", \" The person on the boat throws the person in the water a rope and they catch it.\", \" They hold onto the rope and wait in the water.\", \" The boat pulls the person in the water up and they are wake boarding.\", \" The boat pulls another person up out of the water onto a wake board.\", \" The person is jumping over waves in the water behind the boat.\"]}, \"v_rO9SwC42Goo\": {\"duration\": 22.15, \"timestamps\": [[0, 2.22], [2.22, 10.19], [10.19, 22.15]], \"sentences\": [\"Two young boys are sitting on a camel and holding on to a stick attached to the seating of the camel while a man dressed in dark clothing is standing next to them.\", \" The camel begins to bend down its two front legs as the kids hold on very tightly and the man begins to walk around the camel.\", \" The camel then lowers its back legs and the children smile as they release their hands from holding on so tightly.\"]}, \"v_dXONZBWOKHk\": {\"duration\": 58.7, \"timestamps\": [[0, 56.65], [12.91, 56.65], [37.57, 45.2]], \"sentences\": [\"A little girl is wearing hair curlers.\", \" She starts jumping on a bed.\", \" She falls over onto a pillow on the bed.\"]}, \"v_rCSFBiXxbVs\": {\"duration\": 56.24, \"timestamps\": [[0, 21.37], [25.31, 56.24]], \"sentences\": [\"Pictures of a man and woman are shown and leads into a woman combing and cutting a man's hair.\", \" She moves all around him trimming his hair and ends with the man vacuuming his back and a picture of his cut.\"]}, \"v_laKctaVegPg\": {\"duration\": 147.04, \"timestamps\": [[0, 5.88], [5.88, 39.7], [39.7, 147.04]], \"sentences\": [\"man is in a room holding a mop and talking to the camera.\", \" man is mopping the floor removing carpet and chairs to clean the floor.\", \" man is filling a bucket with water and chlorine and is mopping the floor and putting back the carpet and chairs.\"]}, \"v_aPzHheM0Egw\": {\"duration\": 64.3, \"timestamps\": [[0, 29.26], [14.15, 64.3]], \"sentences\": [\"A person is seen laying plaster onto a roof and using a shovel to flatten it out.\", \" The person continues laying plaster down while the camera pans around him from various sides.\"]}, \"v_tMM166j4YEw\": {\"duration\": 42.68, \"timestamps\": [[0, 3.2], [5.33, 35.85], [36.06, 42.68]], \"sentences\": [\"A cowboy on a horse is released from a gate.\", \" He ropes a calf, then dismounts.\", \" He quickly ties up the calf.\"]}, \"v_-r_bvqjYjYg\": {\"duration\": 66.06, \"timestamps\": [[0, 11.89], [22.13, 32.04], [33.36, 49.55]], \"sentences\": [\"A man is writing something on a clipboard.\", \" A man holds a ball behind his head and spins around several times and throws the ball.\", \" People use measuring tape to measure the distance.\"]}, \"v_cBAlXvu38dg\": {\"duration\": 60.12, \"timestamps\": [[0, 7.51], [7.82, 27.05], [31.56, 53.8], [58.91, 60.12]], \"sentences\": [\"A man in a blue t-shirt and shorts is speaking, then turns and walks towards a red wall.\", \" The man kneels own on a blue mat gesturing towards his foot.\", \"  He begins to lean forward and stretches.\", \"  He then begins to rise.\"]}, \"v_cWBbuw_DA2c\": {\"duration\": 47.09, \"timestamps\": [[0, 6.59], [8.95, 31.08], [31.32, 47.09]], \"sentences\": [\"Two women are sitting around a hookah.\", \" One puts it in her mouth and smokes it.\", \" Then the other woman takes a hit, blowing smoke out of her mouth into the other woman's mouth.\"]}, \"v_rFM3OUUL5fI\": {\"duration\": 227.79, \"timestamps\": [[0, 29.61], [29.61, 83.14], [83.14, 128.7], [128.7, 150.34], [151.48, 227.79]], \"sentences\": [\"An otter is outside on a small rock that is surrounded by hundred foot rocks in the water.\", \"The camera then begins to pan the rocks  and a man begins tight roping between them.\", \"As he is walking,he makes several attempts to cross but falls three times before finally making it to the other side.\", \"Once to the other side,he tries to turn around and come back but has the hardest time standing up.\", \"Finally he is erect and begins teetering his way across the rope and makes it to the other side without falling.\"]}, \"v_21qQL15lUNY\": {\"duration\": 65.48, \"timestamps\": [[0.33, 60.24], [18.66, 65.48]], \"sentences\": [\"A man is seen speaking to the camera while walking a dog on the side of him.\", \" The man continues walking down the street with the dog right by his side and passing by various houses.\"]}, \"v_3KsOJiA_uak\": {\"duration\": 24.78, \"timestamps\": [[0.12, 24.65], [0.74, 14.25], [8.92, 17.22], [19.45, 24.4]], \"sentences\": [\"A man throws several darts at a dart board in a dimly lit sports bar environment.\", \"  A man in a t-shirt in a dimly lit bar setting with tv's lining the walls and several onlookers at high tables beside and around him watch him throw yellow darts.\", \"  The darts land downward in front of him near the camera which begins to shake and becomes unfocused.\", \"  The camera becomes slightly steady again and turns to reveal that the man was throwing darts at a dart board behind the camera, the man continues to throw the darts which don't land but bounce off of the board instead.\"]}, \"v_4SLvbRa2NI0\": {\"duration\": 166.79, \"timestamps\": [[0, 22.52], [25.85, 135.93], [140.94, 166.79]], \"sentences\": [\"A girl is in a bathroom with a towel on her head.\", \" She is talking and uses the hair dryer to blow dry her hair while brushing.\", \" When she is done, she talks and shows off her dry hair.\"]}, \"v_EYIYohKR0Qo\": {\"duration\": 108.62, \"timestamps\": [[0, 3.8], [3.8, 23.35], [24.44, 47.79], [46.71, 73.32], [73.86, 108.62]], \"sentences\": [\"A young female dressed in a white jersey and purple shorts is standing on the edge of a pool stretching.\", \"The screen then flashes between several girls as they prepare to jump dive in the water.\", \"Several girls are then shown deep underwater doing a shimmy motion and then back stroking in the pool.\", \"One female then begins breast stroking,waves to the camera and then gets out.\", \"Two other girls then stand side by side on the outside of the pool and jump in together and race to the other side of the pool.\"]}, \"v_vGZO5lM61D4\": {\"duration\": 192.63, \"timestamps\": [[0, 34.67], [34.67, 126.17], [126.17, 192.63]], \"sentences\": [\"A man is outside in the snow walking around on his snowboard.\", \"As he makes his way through the mountain,he gets on several silver lines and begins to slide down them.\", \"Finally,the snowboarding is done and the man walks into the cabin.\"]}, \"v_yX_DJiboktI\": {\"duration\": 158.06, \"timestamps\": [[0, 3.16], [3.95, 158.06], [7.11, 11.85], [22.92, 26.87], [33.98, 37.93], [54.53, 67.97], [83.77, 89.3], [132.77, 137.51], [154.9, 158.06]], \"sentences\": [\"We see a dark opening screen.\", \" We see two women performing a baton twirling routine in a gym.\", \" One lady does a handstand the other holds her legs.\", \" They twirl the batons high in the sky.\", \" A person walks in front of the camera.\", \" They twirl the baton on their necks.\", \" One lady has both baton.\", \" They throw the batons in the sky and twirl.\", \" The brunette does a split and they finish dancing.\"]}, \"v_3iLo6lxAarc\": {\"duration\": 123.9, \"timestamps\": [[0, 56.38], [57.61, 123.9]], \"sentences\": [\"woman is wearing a black cap and its talking and showing a box of diesel shoes, she opens the box unwrapped them and shoes the black and white shoes in all the angles.\", \" woman puts the shoes on her feet stands and start walking showing the shoes.\"]}, \"v_RPkH81M6-NE\": {\"duration\": 143.45, \"timestamps\": [[0, 30.84], [31.56, 71.73], [72.44, 107.59], [107.59, 143.45]], \"sentences\": [\"A woman is on a raft in the water talking to the camera.\", \" She begins to discuss and display manners of balancing the boat.\", \" She talks about the various parts of the boat and how they are utilized, as shown by the words on the screen.\", \" She pulls her boat into shore before the final screen advertising a sailing magazine.\"]}, \"v_1epGZvRN3Fw\": {\"duration\": 192.56, \"timestamps\": [[6.74, 125.17], [86.65, 186.79]], \"sentences\": [\"Two men are seen working out in a back yard lifting heavy weights while taking turns.\", \" The men help one another lift the heavy weights and then shakes hands in the end.\"]}, \"v_lPCl1ZYH2xI\": {\"duration\": 360.42, \"timestamps\": [[0, 52.26], [52.26, 91.91], [91.91, 176.61], [174.8, 239.68], [239.68, 306.36], [306.36, 360.42]], \"sentences\": [\"A woman in a red jacket is outside of the garage brushing off the snow on her trunk.\", \"Once all the snow is gone,she opens the truck and begins talking to another lady.\", \"The lady is dressed in a long beige jacket and ear muffs and she is scraping the snow off of the other end of the car.\", \"A boy then appears and he is shoveling snow out from behind the car and then another person comes to help them.\", \"As the snow picks up,the first female leaves and now there are only two people outside each brushing off dirt on two different cars.\", \"Once the first car is finished,the lady leaves and now the boy is left outside by himself getting the rest of the snow off of the vehicle.\"]}, \"v_92fD8Cy2zL0\": {\"duration\": 203.69, \"timestamps\": [[0, 20.37], [0, 65.18], [65.18, 72.31], [73.33, 155.82], [155.82, 203.69]], \"sentences\": [\"A cartoon of a stand up comic is shown and she is telling jokes.\", \" It cuts to her speaking to someone wearing a surgical mask in a room and it looks like she is getting her nails done.\", \" They both talk back and forth for a bit about something.\", \" The video cuts to her sitting and getting her nails done from another woman wearing a surgical mask.\", \" They go back and forth for a bit and she has a very annoyed look on her face.\"]}, \"v_0y_5NIIvUzI\": {\"duration\": 202.9, \"timestamps\": [[0, 102.46], [88.26, 202.9]], \"sentences\": [\"A close up of a news paper is shown that leads into several shots of people talking and a skier falling off a jump.\", \" More shots are shown of skiers falling off jumps as well as falling down the snowy hill while others watch.\"]}, \"v_v6Ui5kgi2OI\": {\"duration\": 82.39, \"timestamps\": [[5.36, 43.66], [46.55, 48.2], [52.73, 62.2]], \"sentences\": [\"A woman is mixing ingredients into a pot.\", \" She lifts a mixer out of the pot.\", \" She shows the ingredients mixed together in the pot.\"]}, \"v_sVDRluetSyg\": {\"duration\": 125.46, \"timestamps\": [[0, 3.76], [6.9, 9.41], [9.41, 24.46], [24.46, 51.44], [50.81, 62.73], [62.1, 125.46]], \"sentences\": [\"A female is standing on a ladder with a orange caution vest on,silver heels and a small mini black skirt with her but out and no underwear.\", \"A man walks by and she asks him to hand her the bucket on the ground.\", \"The male then takes his glasses off and begins looking directly under her skirt when she turns around.\", \"Another man comes and does the same thing as the first male but the girl turns around he gets caught.\", \"Once the third boy comes,he holds the bucket up but takes a gasp in disbelief and he too begins looking under her skirt then drops the bucket and walks away when the girl turns around.\", \"Several more men come and they all have the same reaction.\"]}, \"v_F9Wv_Lxe_QM\": {\"duration\": 43.05, \"timestamps\": [[0, 17.87], [0, 17.22], [0, 18.3], [4.95, 11.84], [12.48, 18.94], [18.94, 28.63], [27.12, 40.9], [29.06, 40.9]], \"sentences\": [\"Two men with bungee jump equipment on (belts and ropes) are standing on a platform high in the air.\", \" One man is on the ledge getting ready to jump.\", \" The second man stands slightly behind him, steadying him until he is ready to jump.\", \" The man slides forward inch by inch until his toes are over the edge of the platform.\", \" He raises his arms, nods his head, and pushes off the platform, the way a diver would jump off a diving board.\", \" He falls, the rope attached still, a long down into a ravine, so far that is is hard to see him.\", \" The rope snaps back just a little, then hangs still.\", \" The rope has not bounced back up, and the man cannot be seen.\"]}, \"v_hFlDERq1ThU\": {\"duration\": 132.87, \"timestamps\": [[0, 19.93], [19.27, 52.48], [34.54, 52.48], [52.48, 58.46], [52.48, 88.36], [88.36, 121.57], [123.56, 127.55], [125.56, 128.21]], \"sentences\": [\"We see  a male gymnast prepare to mount the pommel horse.\", \" The man then spins around on the device.\", \" We see a man throw his open legs around.\", \" The man does a handstand and dismounts the pommel.\", \" We see the man shake hands and hug people  and sit down.\", \" We see a recap of the man's performance.\", \" We wee the man's scores on the screen.\", \" The man waves to the camera.\"]}, \"v_BngR6rNiO_g\": {\"duration\": 115.96000000000001, \"timestamps\": [[0, 8.12], [9.28, 23.19], [26.09, 98.57], [99.15, 115.96]], \"sentences\": [\"A large cartoon pumpkin appears on the screen.\", \" A woman is seen lying on the ground, and man bent over her.\", \" They stand and begin to dance seductively, spinning and twirling in front of the crowd.\", \" The man lifts the woman over his head, and the screen fades to black.\"]}, \"v_6fuOwhx91zM\": {\"duration\": 92.67, \"timestamps\": [[15.75, 34.29], [33.82, 39.39], [48.19, 56.53]], \"sentences\": [\"A man bends over and picks up his skateboard.\", \" He starts skateboarding down a hill.\", \" He picks up his skateboard again and continues talking.\"]}, \"v_DqsaFxxfONY\": {\"duration\": 100.36, \"timestamps\": [[1, 28.1], [28.1, 69.25], [55.7, 95.34]], \"sentences\": [\"A man is seen jumping over a set of bars while text is shown across the screen.\", \" The man then performs several mores on the beams moving back and fourth.\", \" The man continues exercising on the beam while the camera shows his movements.\"]}, \"v_KpmdpL5btYo\": {\"duration\": 97.06, \"timestamps\": [[0, 4.85], [6.79, 26.21], [27.66, 49.99], [49.99, 75.71], [76.68, 97.06]], \"sentences\": [\"A baby boy's head floats up from water.\", \" He goes back under, looking around in amazement.\", \" A woman is shown leading him under the water and he smiles and swims.\", \" They lift up out of the water to get air.\", \" Mothers grab their babies to come up for air, and a baby breathes as he looks at the camera.\"]}, \"v_FCe1NVTbaZ4\": {\"duration\": 10.94, \"timestamps\": [[0.11, 3.72], [2.73, 8.42], [8.37, 10.55]], \"sentences\": [\"A woman is seen laying on the floor with a text sitting across her face.\", \" The woman then begins doing sit ups while moving her legs back and fourth.\", \" The woman stops her exercises and smiles off the to the camera.\"]}, \"v_7vgokK5_Pvc\": {\"duration\": 93.41, \"timestamps\": [[0, 19.15], [21.95, 52.78], [54.18, 93.41]], \"sentences\": [\"A couple of boys prepare to run toward a swing.\", \" They take off, jumping on the swings.\", \" They swing high, then let go, landing on the ground.\"]}, \"v_pUIicfDCZC0\": {\"duration\": 157.87, \"timestamps\": [[0, 13.42], [14.21, 30], [38.68, 86.04], [96.3, 157.87]], \"sentences\": [\"A group of fruits, nuts and spices are gathered on a table.\", \" Then we see a list of ingredients on the screen.\", \" A man cooks chicken, then adds the other ingredients into a heated pot.\", \" The food is plated together, showing off the final product.\"]}, \"v_Usowsx0PDbA\": {\"duration\": 58.93, \"timestamps\": [[0, 7.37], [6.78, 18.56], [17.97, 58.93]], \"sentences\": [\"A man is shown clapping his arms up and down and holding a pole in his hands.\", \" He runs down the track and throws the pole with the audience cheering and watch.\", \" He waves his hand up in the air while his throw is shown again in slow motion and the audience reacting.\"]}, \"v_ULwdDmQ8Z_8\": {\"duration\": 122.83, \"timestamps\": [[0, 16.58], [17.2, 36.24], [36.24, 84.14], [84.14, 122.83]], \"sentences\": [\"A woman is shown wearing a bathing suit skirt,orange float,and water skis.\", \"She then sits down on the dock and gets into the water and begins doggy paddling until the boat comes closer.\", \"Once the boat arrives,they young boy throws the rope to her and she begins to hold on to it.\", \"The woman finally becomes stable and the boat picks up enough speed for her to go.\"]}, \"v_YfcxIgsqs5M\": {\"duration\": 195.28, \"timestamps\": [[0, 10.74], [10.74, 195.28], [191.37, 195.28]], \"sentences\": [\"A crowd is cheering in front of a stage.\", \" Cheerleaders come out and perform a routine on the stage.\", \" The crowd cheers for them once they finish.\"]}, \"v_v5i_NAlJX1Y\": {\"duration\": 45.16, \"timestamps\": [[2.03, 39.97], [25.52, 39.97]], \"sentences\": [\"A woman is seen sitting on a piece of exercise equipment and rowing back and fourth.\", \" Her working out are shown in several more clips.\"]}, \"v_3SjuIcAfeWk\": {\"duration\": 94.53, \"timestamps\": [[0, 9.93], [13.23, 74.68], [77.51, 94.53]], \"sentences\": [\"A woman is standing in front of a vase on a table.\", \" She uses plastic wrap to wrap around the vase.\", \" She then ties a pretty bow around the top.\"]}, \"v_a1nRXQZ6-Fo\": {\"duration\": 187.62, \"timestamps\": [[0, 54.41], [55.35, 72.23], [74.11, 161.35], [162.29, 187.62]], \"sentences\": [\"A man in a hat, glasses stands in front of a screen drawing and introduces how to play a song on the saxophone.\", \"  He then goes into finger placement, the notes that are going to be played and how to blow.\", \"  He then plays the song and breaks up the phrases of the song on the sax showing an example of how the song is to be played and explains in more detail how it should sound.\", \"  He then goes into how to practice the song.\"]}, \"v_7LimgSQsHm0\": {\"duration\": 133.59, \"timestamps\": [[0, 57.44], [58.11, 84.16], [84.83, 133.59]], \"sentences\": [\"A man is seen hosting a news segment that leads into several shots of hockey players skating around ice rinks.\", \" Another man is seen speaking to the camera while shots of more hockey players are shown as well as fans cheering in the crowd.\", \" The men practice goals and speak with Putin on the ice and ends with all the players huddled together.\"]}, \"v_fwwo0GsYB7c\": {\"duration\": 81.87, \"timestamps\": [[0, 1.64], [2.05, 70.41], [70.82, 81.87]], \"sentences\": [\"A building with the words \\\"Roof Replacement\\\" is shown.\", \" The video shows various stills of the process of re-roofing a home.\", \" A before and after photo is shown of the home.\"]}, \"v_633ZdPm_GjM\": {\"duration\": 70.89, \"timestamps\": [[0, 8.51], [8.86, 32.26], [32.26, 44.66], [43.95, 67.35], [67.35, 70.89]], \"sentences\": [\"A person is adding onions into a skillet.\", \" They fry onions, tomato, and bell pepper.\", \" The person add egg and swirls it around.\", \" The person pushes the egg into a corner and continues cooking it.\", \" They slide the omelette onto a plate.\"]}, \"v_ESlUzrtqC98\": {\"duration\": 107.72, \"timestamps\": [[0, 10.23], [9.69, 10.23], [9.69, 101.25], [34.47, 37.16], [47.93, 50.09], [58.71, 62.48], [72.71, 77.56], [81.33, 87.79], [99.1, 107.72]], \"sentences\": [\"The camera is on it's side.\", \" The camera is turned right side up.\", \" A group of people are playing beer pong.\", \" A lady in pink picks up a ball off the ground.\", \" The man in white shirt picks up a ball off the ground.\", \" The man in white picks up a ball.\", \" The lady in pink needs to bend down to pick up a ball.\", \" The man in white drinks from a cup.\", \" The man and the lady jump up and down and hug.\"]}, \"v_HcZ3irBAcE0\": {\"duration\": 29.47, \"timestamps\": [[0, 29.47], [1.33, 12.97], [14, 29.47]], \"sentences\": [\"A person sits and clips the nails off a cat paw using a nail clipper.\", \"the person starts with the left paw.\", \"then the guy do the right paw.\"]}, \"v_YBrcJxnXuVU\": {\"duration\": 15.65, \"timestamps\": [[0, 3.99], [4.54, 12.91], [12.83, 15.65]], \"sentences\": [\"A woman sits at a table and shrugs her arms.\", \" The woman picks up the glass with her mouth and drinks the entire glass of beer.\", \" The woman sets the glass back on the table with her hand.\"]}, \"v_ennVaOEePHk\": {\"duration\": 237.59, \"timestamps\": [[0, 237.59], [66.52, 226.9]], \"sentences\": [\"These people are all shown participating in a bicycle race.\", \" They ride over huge bumps and straight smooth paths, and  everyone is wearing different colored suits and helmets.\"]}, \"v_re4vD9S8ThA\": {\"duration\": 2.42, \"timestamps\": [[0, 0.98], [0.99, 2.42]], \"sentences\": [\"A man is seen kneeling down in the middle of a large gym with many sets of weights sitting behind him.\", \" The man then jumps forward on the ground and stands up with his legs straight.\"]}, \"v_yG4C_s7ItA4\": {\"duration\": 114.47999999999999, \"timestamps\": [[6.3, 10.88], [18.32, 27.47], [45.79, 53.8], [59.53, 63.53], [65.25, 78.42]], \"sentences\": [\"A woman sits on a bench shaving her legs.\", \" She pumps lotion out of a bottle and spreads it on her leg.\", \" She pours lotion onto her hand and puts it on her legs with a towel.\", \" She begins to shave her legs.\", \" She puts shaving cream on her leg and continues to shave.\"]}, \"v_Z0mxEFOm_Wc\": {\"duration\": 88.59, \"timestamps\": [[0, 88.59], [13.29, 41.19], [48.28, 61.57], [63.34, 73.08], [82.38, 85.04]], \"sentences\": [\"A man is using a tool to apply wax to a ski.\", \"  The man slowly slides the tool over the ski surface.\", \"  The man scrapes the wax off of the ski.\", \"  The man uses a brush to wipe the ski.\", \"  The man uses a soft cloth to wipe the ski.\"]}, \"v_swkSdgwCxHs\": {\"duration\": 96.2, \"timestamps\": [[0, 3.85], [3.85, 27.9], [27.9, 64.45], [65.9, 96.2]], \"sentences\": [\"An animated field of a track is shown filled with a crowd of people.\", \"An African American female takes off running and begins to attempt a high jump but fails when the bar drops and walks off.\", \"Another female shows up and tries her third attempt and the same thing happens.\", \"After,another female with a large assortment of tattoos tries and she clears the bar and comes in first place on her first attempt and a replay is shown.\"]}, \"v_CocYQOgnegg\": {\"duration\": 157.22, \"timestamps\": [[0, 47.17], [44.81, 113.99], [106.13, 150.93]], \"sentences\": [\"A person is seen walking down the lawn and blowing leaves around the area.\", \" He continues walking around while blowing leaves all around the yard.\", \" The person keeps blowing leaves in the yard while the camera follows.\"]}, \"v_Vn4wrgBpgP8\": {\"duration\": 69.2, \"timestamps\": [[6.92, 37.37], [24.56, 62.97]], \"sentences\": [\"A man is seen standing behind a table and begins sprinkling powder along a ski.\", \" He then uses a tool to sand down the ski and shows a close up of the ski when he is finished.\"]}, \"v_5y9Lw8--ulU\": {\"duration\": 93.58, \"timestamps\": [[0, 4.21], [4.21, 38.83], [38.83, 89.83], [89.83, 93.58]], \"sentences\": [\"A introduction is show on the screen for a workout video.\", \" A man comes onto the screen and announces how he will improve his running time.\", \" He moves over to the rowing machine and talks about what he does for his rowing routine.\", \" The closing credits are shown and the video ends.\"]}, \"v_fvroOk6TpKk\": {\"duration\": 193.14, \"timestamps\": [[0, 16.42], [16.42, 50.22], [50.22, 96.57], [96.57, 141], [141, 188.32]], \"sentences\": [\"Two teams play lacrosse in a stadium.\", \" A player of the red team scores and they run to celebrate.\", \" Then, the players of the red team scores, as well the players of the white team.\", \" The red team scores three times in a row.\", \" The red team wins the competition.\"]}, \"v_k0ruZZZ5Gxw\": {\"duration\": 66.04, \"timestamps\": [[0, 66.04], [15.52, 23.44], [24.1, 66.04]], \"sentences\": [\"Two people are standing in a kitchen.\", \" They slice up an apple and put it on a plate.\", \" The woman then slices up lettuce and puts it in a bowl.\"]}, \"v_RpVkFIpEhIE\": {\"duration\": 14.88, \"timestamps\": [[0, 3.35], [6.18, 11.76], [11.83, 11.98]], \"sentences\": [\"A lady stands holding a string with a ball.\", \" The lady spins around with a ball on a string.\", \" The lady lets go the string.\"]}, \"v_EbBlHnunlSI\": {\"duration\": 123.32, \"timestamps\": [[0, 120.86], [16.65, 21.58], [117.16, 123.32]], \"sentences\": [\"A man is standing in a bathroom shaving his beard.\", \" He lifts up his beard and shaves his neck.\", \" He finishes and smiles at the camera.\"]}, \"v_ZU4Mgdd3omA\": {\"duration\": 34.78, \"timestamps\": [[0.17, 18.44], [16.35, 34.44]], \"sentences\": [\"A woman is seen sitting in a chair playing an instrument while reading off a book of notes.\", \" She continues playing along and pauses to look back at the camera and laugh.\"]}, \"v_dJO_4TrLr7E\": {\"duration\": 98.00999999999999, \"timestamps\": [[0, 12.25], [12.25, 42.15], [42.15, 66.65], [66.65, 98.01]], \"sentences\": [\"Dancing with the stars contestant in place waiting to starts their performance.\", \" Chelsea and Mark seem to work very well together as they elegantly execute their dance moves step by step.\", \" He picks her up and turns around in circles before bringing her back down.\", \" They continue to dance very well until the end, where you can see how out of breath they are.\"]}, \"v_Zomv5zlkkEc\": {\"duration\": 182.67, \"timestamps\": [[0, 74.9], [30.14, 179.93]], \"sentences\": [\"A woman is seen standing in the middle of a floor and begins performing a dance routine while others watch her on the sides.\", \"  The woman continues dancing all around while the people watch and ends with her holding a pose.\"]}, \"v_-rCYwovSK4s\": {\"duration\": 114.5, \"timestamps\": [[0, 24.04], [22.33, 114.5]], \"sentences\": [\"A man in yellow shirt and black tights is standing in a circle that is placed in the center of a small court that is surrounded by green net.\", \" The young man started to swirl the hammer throw, up and down then let it go, the hammer throw hit the makeshift wall made of plastic and tarp.\"]}, \"v_mpFNy97oV0c\": {\"duration\": 234.1, \"timestamps\": [[0, 15.22], [15.22, 44.48], [44.48, 117.05], [117.05, 189.62], [190.79, 234.1]], \"sentences\": [\"A woman dressed in a black dress is standing at a table with a Christmas setting behind her.\", \"The woman then grabs a small teddy bear and puts it on wrapping paper.\", \"Once she has measured the bear with the paper,she removes the bear and begins creasing the papers on the ends and folding it.\", \"The bottom is then folded and taped and the bear is placed in the inside and taped on both ends.\", \"After the bag is finished,more gifts are shown and other videos are displayed on the screen.\"]}, \"v_bSZnvk2Cx28\": {\"duration\": 101.17, \"timestamps\": [[0, 18.72], [18.72, 28.83], [28.83, 50.59], [50.08, 101.17]], \"sentences\": [\"Two men stand t the top of a mountain range and perform various kicks and martial arts.\", \" They are in slow motion and the video cuts to the man in white pants kicking in a very acrobatic manner.\", \" The video then cuts between the two of them fighting and back to the man in white pants perform various kicks and flips.\", \" The two are shown fighting again as is the man in white showing off his skill set.\"]}, \"v_zRBspE-uJUo\": {\"duration\": 172.99, \"timestamps\": [[0, 58.82], [36.33, 128.01], [119.36, 172.99]], \"sentences\": [\"A man is seen moving in slow motion along a pool while a woman speaks to the camera.\", \" More people are seen swimming in the water demonstrating proper strokes as well as using paddles.\", \" People are seen exercising on the side while the woman continues to speak.\"]}, \"v__n9eNF1WaFU\": {\"duration\": 201.55, \"timestamps\": [[0, 5.04], [5.04, 9.07], [11.09, 24.19], [25.19, 37.29], [37.29, 50.39], [50.39, 72.56], [72.56, 77.6], [79.61, 88.68], [88.68, 101.78], [104.81, 107.83], [107.83, 134.03], [134.03, 183.41], [186.43, 190.46], [193.49, 201.55], [197.52, 198.53]], \"sentences\": [\"A dog walks past the camera.\", \" The dog walks into a door where a woman waits.\", \" The woman, along with another woman, pets the dog, who is now on a table.\", \" The first woman combs the dog's hair.\", \" The dog and the first woman walk through a room and into the bathroom.\", \" The first woman washes the dog.\", \" The dog and the first woman walk through a room.\", \" The first woman towels the dog.\", \" The first woman blow dries the dog.\", \" The camera shows a winter exterior town scene.\", \" A woman styles another woman's hair.\", \" The first woman grooms the dog.\", \" The dog walks towards the second woman.\", \" The dog and the second woman exit the house leave.\", \" The first woman waves goodbye.\"]}, \"v_45AIj4-_RBw\": {\"duration\": 196.43, \"timestamps\": [[0, 11.79], [11.79, 190.54], [164.02, 190.54], [190.54, 196.43]], \"sentences\": [\"A little girl introduces a video where she will play the piano and sing a song.\", \" She begins to play the song on the piano and sing along as she plays.\", \" The camera zooms in on her face as she continues to play.\", \" When she is done with the song she smiles at the camera.\"]}, \"v_-DGsqL65o4k\": {\"duration\": 42.45, \"timestamps\": [[0, 17.83], [10.19, 40.75]], \"sentences\": [\"A car is seen stuck in some water while another car drive past with a person riding skis on the back.\", \" The camera captures the water skier from several angles as the car flies past others.\"]}, \"v_fgQ2HYMl3pA\": {\"duration\": 239.07, \"timestamps\": [[2.39, 34.67], [33.47, 154.2], [149.42, 239.07]], \"sentences\": [\"A picture of a person kicking a soccer ball is shown followed by three men kicking a ball around a sandy beach.\", \" They pass the ball back and fourth to one another while the goalie attempts to block any shot they may make.\", \" They continue kicking the ball up into the air and passing to one another while the goalie jumps up to block the impending ball.\"]}, \"v_e8gJpLlqzA8\": {\"duration\": 195.61, \"timestamps\": [[0.98, 76.29], [75.31, 189.74]], \"sentences\": [\"A large group of cheerleaders are seen running out onto a stage and begin performing a routine with one another.\", \" The people continue dancing around while lifting one another and end by hugging and cheering with one another.\"]}, \"v_kuJO1VapxuQ\": {\"duration\": 198.74, \"timestamps\": [[0, 13.91], [17.89, 50.68], [55.65, 138.12], [139.12, 198.74]], \"sentences\": [\"A belly dancer is wearing full costume inside a darkened room.\", \" She raises her arms as she sways her hips to music.\", \" She dances, turning and moving rythmically.\", \" She slows to a graceful finish, then the screen goes black.\"]}, \"v_l7gWFOa7FnI\": {\"duration\": 168.11, \"timestamps\": [[0, 21.01], [21.01, 130.29], [130.29, 140.37], [150.46, 154.66]], \"sentences\": [\"A man is standing outside holding a black tile.\", \" He starts putting the tile down on the ground.\", \" He cuts the tile with a red saw.\", \" He sets chairs and flowers on the tile.\"]}, \"v_BDQHEemWnSk\": {\"duration\": 155.11, \"timestamps\": [[3.1, 65.15], [59.72, 143.48]], \"sentences\": [\"A woman is seen roller blading down an alley as well as several clips of other people riding around the city.\", \" The camera continues watching several people ride around and then leads into people in a skate park doing impressive tricks.\"]}, \"v_mkwCGf92vqo\": {\"duration\": 49.95, \"timestamps\": [[0, 13.24], [13.99, 49.95]], \"sentences\": [\"An older man and young girl are seen performing martial arts when the girl knocks down the man.\", \" The girl knocks down two more men and demonstrates how to properly push them down, ending with them all lined up.\"]}, \"v_n1NqFiDdlEU\": {\"duration\": 65.6, \"timestamps\": [[0, 11.48], [11.48, 27.88], [27.55, 47.89], [47.89, 65.6]], \"sentences\": [\"On a giant dome of dirt there are many bikers at the top and a very big crowd watching.\", \" They start to take off into the air doing flips and really cool professional tricks.\", \" It's amazing and super cool how they go up the ramp and then into the air.\", \" There are men with signs rating the bikers that just flew in the air.\"]}, \"v_hPJw9_nPo_s\": {\"duration\": 204.32999999999998, \"timestamps\": [[0, 6.13], [6.13, 170.61], [170.61, 174.7], [174.7, 204.33]], \"sentences\": [\"A still shot picture of a man on a waterboard in a horizontal position appears and there are red words on it that say \\\"Find YOUR EDGE Ski Rixen at Quiet Waters Park\\\".\", \"The view is now from the first persons point of view and a person is waterboarding very quickly, going on ramps and all over a large area of water while holding onto the handle that is connected to the rope that is pulling the person.\", \"The water boarder then approaches a man standing in the water to the right side and splashes a lot of water onto that person as they pass him.\", \"The water boarder continues to waterboard and the outro screen appears of the aerial shot of the area with the company name, website and facebook address.\"]}, \"v_kGvs0Nv5zJo\": {\"duration\": 123.32, \"timestamps\": [[0, 32.68], [26.51, 123.32]], \"sentences\": [\"A woman in red top is talking in the camera, then the crowd are standing in a parking lot as the kids lightening the candles.\", \" A man in black shirt is giving interview as the surfers are surfing the water with big waves.\"]}, \"v_vWde8sMxe1w\": {\"duration\": 128.65, \"timestamps\": [[0, 21.87], [27.02, 89.41], [93.27, 128.65]], \"sentences\": [\"A track athlete is shown on a field.\", \" He prepares, then runs fast before long jumping over the bar.\", \" He wins, screaming and jumping while hugging his teammates.\"]}, \"v_YiBenqCKGcA\": {\"duration\": 105.4, \"timestamps\": [[0, 18.44], [20.03, 64.29], [64.82, 90.64], [91.69, 105.4]], \"sentences\": [\"A woman is doing flips on a mat.\", \" She goes forward and backward, and does multiple backflips.\", \" Three girls get together and begin to perform backflips at the same time.\", \" The girls alternate performances for the camera.\"]}, \"v_gpKYclCmQHM\": {\"duration\": 167.56, \"timestamps\": [[10.05, 63.67], [30.16, 127.34], [137.4, 167.56]], \"sentences\": [\"Two men are seen walking down a street in a shop pointing around and acting excited.\", \" Various drinks are then poured and the men play rock, paper scissors, followed by beer pong in the building.\", \" The men throw the balls back and fourth to one another with one rubbing his hands and the winner dry humping and celebrating.\"]}, \"v_FDvZUUc5tw4\": {\"duration\": 104.55, \"timestamps\": [[0, 102.46], [12.02, 98.28], [98.8, 102.46], [102.98, 104.55]], \"sentences\": [\"A cat sits on the lap of a man.\", \" The man cuts the claws of the cat from all paws.\", \" The man finishes cutting the claws and pets the cat.\", \" The cat jumps off his lap.\"]}, \"v_l9o9R7UcPuc\": {\"duration\": 153.99, \"timestamps\": [[0, 33.88], [10.01, 16.17], [33.88, 73.14], [73.14, 117.8], [117.8, 153.99]], \"sentences\": [\"A man talks to the camera.\", \" The man briefly shows the camera a pitchfork.\", \" The man uses the pitchfork to dislodge roof covering material.\", \" The man pulls up and disposes of the covering material.\", \" The man talks to the camera once more.\"]}, \"v_EqSXihtiv5g\": {\"duration\": 93.02000000000001, \"timestamps\": [[0, 93.02], [8.84, 17.67], [22.79, 93.02]], \"sentences\": [\"A tutorial is made for a DIY giftpack.\", \"  The ingredients are shown such as scissors and glue.\", \"  Then shapes are cut, folded, and prepared.\"]}, \"v_RYl-eG9hasI\": {\"duration\": 201.59, \"timestamps\": [[0, 201.59], [5.04, 41.33], [43.34, 71.56], [49.39, 201.59]], \"sentences\": [\"A woman performs a gymnastic baton routine in a gym surrounded by a lightly attended event with people in the bleachers.\", \"  A young woman walks onto a gymnasium floor and begins performing a gymnastic baton routine in a gymnastic outfit.\", \"  The woman throws the baton high in the air while dancing and then catch the baton neatly.\", \"  The woman drops the baton, retrieves it, and continues to dance through to the end of the routine when she leaves the gymnasium floor.\"]}, \"v_4x0LdQRN248\": {\"duration\": 22.55, \"timestamps\": [[0, 21.65], [7.89, 21.76], [22.21, 22.55]], \"sentences\": [\"A man is standing at a table with a blue mask on.\", \" He begins welding something on the table.\", \" He stops welding and starts to lift his mask.\"]}, \"v_O9phka35v6I\": {\"duration\": 92.28, \"timestamps\": [[0, 11.53], [5.54, 17.99], [15.69, 92.28]], \"sentences\": [\"A person sat on a chair with his accordion.\", \" The man reached behind his back and tie the strap on him.\", \" The man began playing the keyboard on his accordion.\"]}, \"v_xuq9oRm8QZo\": {\"duration\": 92.83, \"timestamps\": [[0, 92.83], [33.88, 47.35], [71.02, 92.83]], \"sentences\": [\"A woman is painting boards on a table in front of her.\", \" A man is standing next to her helping her.\", \" A man is sitting on a red tractor and drives away.\"]}, \"v_1imA9vLRd3k\": {\"duration\": 152.64, \"timestamps\": [[0, 44.27], [44.27, 135.85], [135.85, 147.3]], \"sentences\": [\"Mr Bean smile in a picture, then a man explains and then invite two people to show karate moves.\", \" After, the man calls Mr Bean who looks afraid and run.\", \" Then, Mr Bean push the back of the man who falls on the mat, then Mr Bean rolls up the man and then gives a smile.\"]}, \"v_KgEHEyz3oKw\": {\"duration\": 188.78, \"timestamps\": [[0, 19.82], [22.65, 179.34], [141.58, 153.85]], \"sentences\": [\"A man holds up a basic snow shovel and demonstrates how to use it throwing a scoop of snow.\", \" The man uses a home made snow shovel to clear away small road.\", \" The man picks up the shovel and points to the underside showing the construction details of it.\"]}, \"v_55IErOrgQOA\": {\"duration\": 70.64, \"timestamps\": [[0, 36.38], [28.25, 70.64]], \"sentences\": [\"A close up of a horse is shown eating hay followed by a hand brushing a horse.\", \" The brush is continuously seen moving along the horse while the animal not moving.\"]}, \"v_ByIIq3jFOKo\": {\"duration\": 193.06, \"timestamps\": [[5.79, 193.06], [35.72, 146.73], [121.63, 193.06]], \"sentences\": [\"These people are sitting in the inflatable red/white boat and they're floating along the waves.\", \" They all work together and paddle themselves through the water and most of them are smiling.\", \" The water splashes onto the front of the camera while they're in the water and they're wearing helmets along with water gear.\"]}, \"v_firp_OhUMPc\": {\"duration\": 194.19, \"timestamps\": [[0, 14.56], [27.19, 91.27], [94.18, 194.19]], \"sentences\": [\"A man is on an open field with frisbees.\", \" He uses the frisbees to train a collie dog.\", \" The dog chases, grabs, and does tricks to get the frisbees.\"]}, \"v_7A_NgDs7jZY\": {\"duration\": 216.72, \"timestamps\": [[2.17, 95.36], [68.27, 202.63]], \"sentences\": [\"A large group of women are seen standing on a stage and begin performing a dance with one another.\", \" The women continue dancing on the stage around one another and end by laying on the floor.\"]}, \"v_94q8YdJoPUw\": {\"duration\": 89.14, \"timestamps\": [[0, 12.03], [13.37, 60.17], [65.52, 89.14]], \"sentences\": [\"A scene is shown of a person in rapid river water in a kayak.\", \" He is unable to keep control as he is pushed backward by the rapids.\", \" He battles hard to stay upright in the water as he trains for kayaking.\"]}, \"v_eI_LceS_qnQ\": {\"duration\": 148.21, \"timestamps\": [[0, 49.65], [49.65, 98.56], [98.56, 148.21]], \"sentences\": [\"Several women are in a dimly lit room dancing back and forth exercising.\", \"The instructor is in the front with a whistle in her mouth as she is instructing the class.\", \"The lady has on leg warmers and makes sure she keeps the energy up for the rest of the class.\"]}, \"v_5-vAXCUN8X0\": {\"duration\": 190.24, \"timestamps\": [[19.02, 27.59], [35.19, 170.27], [87.51, 91.32], [121.75, 135.07], [171.22, 178.83]], \"sentences\": [\"Teams of athletes line up out of the pool.\", \" Teams play a game of water polo passing and shooting the ball at the goal.\", \" A coach talks with the swimmers during a break.\", \" The team passes between players in a circle surrounding the goal before making the shot past the goalie.\", \" The swimmers shake hands after the game outside of the pool.\"]}, \"v_uyr3E9ZReAw\": {\"duration\": 145.46, \"timestamps\": [[1.45, 69.82], [69.82, 141.83]], \"sentences\": [\"Three people are seen hosting a segment and leading into several shots of a baseball game being played.\", \" More shots are shown of the game as well as audiences cheering and others reacting.\"]}, \"v_UL_3QfD3ERM\": {\"duration\": 90.95, \"timestamps\": [[0, 17.74], [20.92, 65.03], [71.4, 90.95]], \"sentences\": [\"Numerous people are watching others on a field.\", \" Trainers are playing frisbee with their dogs.\", \" The dogs do several stunts and tricks while catching the frisbees.\"]}, \"v_zSOK9jmWE1E\": {\"duration\": 186.08, \"timestamps\": [[0, 25.12], [28.84, 161.89], [166.54, 186.08]], \"sentences\": [\"An intro leads into several people on a boat and one speaking to another.\", \" Shots of sea animals are shown as well as people under water scuba diving with the fish.\", \" All the people are seen floating on top of the water in the end.\"]}, \"v_zh0haUMeZV0\": {\"duration\": 144.5, \"timestamps\": [[3.61, 43.35], [46.96, 115.6], [104.76, 142.33]], \"sentences\": [\"A man is seen speaking to the camera while people work out around him.\", \" The man then kneels down and demonstrates how to properly lift a weight while moving his body all around.\", \" He is then seen kneeling on both knees while standing up in the end to speak to the camera.\"]}, \"v_5SNtTQZnN4g\": {\"duration\": 186.46, \"timestamps\": [[0, 186.46], [95.09, 123.99], [95.09, 186.46]], \"sentences\": [\"A woman is in a bedroom talking.\", \" She puts her head on her hand.\", \" She continues talking to the camera.\"]}, \"v_y8ENWnuzCIE\": {\"duration\": 38.13, \"timestamps\": [[0, 38.13], [20.78, 38.13]], \"sentences\": [\"A woman is laying back in a chair getting her lip pierced.\", \" The piercer removes the tool and pulls on her lip.\"]}, \"v_qjacthwabek\": {\"duration\": 11.38, \"timestamps\": [[0, 10.75], [0.4, 10.75], [11.04, 11.38]], \"sentences\": [\"A man is kneeling down on a blue mat.\", \" He starts pulling on a rope of a weight work out machine.\", \" He stands up and releases the weights.\"]}, \"v_y_Ak7a3oXRY\": {\"duration\": 34.04, \"timestamps\": [[0.51, 16.85], [14.3, 33.19]], \"sentences\": [\"A man wearing shorts is seen moving quickly all around a beach building sandcastles in a large circle.\", \" The man continues working as the camera follows him and ends with the water rising and washing away the castle.\"]}, \"v_Xq2LIzE5eDs\": {\"duration\": 119.0, \"timestamps\": [[0, 38.08], [39.27, 111.27], [111.86, 119]], \"sentences\": [\"A white dog is playing with a ball in the water.\", \" The dog takes the ball back into the water.\", \" The dog comes onto the shore with the ball.\"]}, \"v_FDLhpMkJwCM\": {\"duration\": 12.32, \"timestamps\": [[0, 11.64], [10.96, 12.32]], \"sentences\": [\"A man plays a saxophone in a show room.\", \" The man finishes his song and lowers his instrument.\"]}, \"v_NzxZdC-63LE\": {\"duration\": 187.85, \"timestamps\": [[12.21, 33.81], [76.08, 79.84], [104.26, 106.14], [122.1, 129.62]], \"sentences\": [\"A man is doing flips on a mat.\", \" a man in an orange shirt is doing flips outside.\", \" A man waves at the audience holding a plaque.\", \" A man runs down a blue mat and does flips.\"]}, \"v_ymJTN8aKZEw\": {\"duration\": 86.28999999999999, \"timestamps\": [[0, 1.29], [1.29, 59.11], [27.61, 31.06], [37.1, 41.85], [59.97, 86.29]], \"sentences\": [\" A man in a blue shirt walks away from the blindfolded man.\", \" We see a man in a yard with a stick and blindfold and swings the stick nowhere near the pinata.\", \" A person runs from under a camera.\", \" A person in blue runs across the yard.\", \" The man swings near the pinata.\"]}, \"v_rrKGM5hck1A\": {\"duration\": 99.15, \"timestamps\": [[0.99, 23.3], [24.79, 75.85], [61.97, 95.18]], \"sentences\": [\"Two people are seen dancing as well as close up of a musical instrument.\", \" Two people then begins performing a tango routine in front of a large audience.\", \" The two continue dance around on the stage with one another.\"]}, \"v_D2JvqkKa-qM\": {\"duration\": 14.16, \"timestamps\": [[0, 0.21], [0.21, 1.49], [1.56, 14.16]], \"sentences\": [\"Two women are standing on a diving board.\", \" They do back flips and land in the water.\", \" They show a replay of the jump.\"]}, \"v_Si6LZFiQT3k\": {\"duration\": 190.92, \"timestamps\": [[0, 39.14], [42.96, 62.05], [73.5, 103.09], [110.73, 179.46], [126, 175.64]], \"sentences\": [\"A man sets straw and sticks on top of a bundle of tinder in a fire pit.\", \" The person picks up a flint and a knife from a chair near by.\", \" The man sparks the flint using a knife onto the stack of sticks and tinder causing it to ignite.\", \" The man adds more sticks and bark to the top of the fire.\", \" The flame gets low in the fire and it begins to smoke before igniting fully again.\"]}, \"v_weKPXw4nxKA\": {\"duration\": 141.97, \"timestamps\": [[0, 51.11], [39.04, 97.96], [92.99, 140.55]], \"sentences\": [\"A man is seen standing on a porch speaking to the camera in front of a set of drums.\", \" The man then begins playing the drums while looking to the camera.\", \" The man continues to drum and smiles to the camera.\"]}, \"v_3UrypnvwAOY\": {\"duration\": 46.09, \"timestamps\": [[0, 22.12], [16.13, 45.17]], \"sentences\": [\"A young man is seen standing in front of a small crowd and begins playing the violin.\", \" The girl continues playing the instrument and ends with a bow and finally walks away.\"]}, \"v_DVXOr56dlKg\": {\"duration\": 131.15, \"timestamps\": [[0, 117.38], [30.82, 37.38], [117.38, 131.15]], \"sentences\": [\"A man runs down a track with a pole and leaps over a high bar.\", \" People in the stands are watching the man.\", \" The statistics are shown on the screen.\"]}, \"v_XELYXH6fqeA\": {\"duration\": 153.48, \"timestamps\": [[0, 34.53], [36.84, 115.11], [99.76, 147.34]], \"sentences\": [\"Several people are seen walking around an area with a large group of people watching on the sides.\", \" Some people then grab the rope on different sides and look to one another.\", \" The men then begin pulling the rope from one another and let go in the end.\"]}, \"v_03JdaRepHkA\": {\"duration\": 123.48, \"timestamps\": [[0, 3.7], [6.79, 27.17], [29.64, 108.67], [111.14, 123.48]], \"sentences\": [\"A row of glasses are shown in a case.\", \" Several images are seen of someone mixing drinks before a glass is shown next to a bottle of vodka.\", \" A woman behind a bar demonstrates how to make mixed alcoholic drinks.\", \" She shakes the drink and decorates it with lime and sticks.\"]}, \"v_XBO6AIdaCzU\": {\"duration\": 107.16, \"timestamps\": [[0, 19.29], [19.29, 50.9], [50.9, 78.76], [78.76, 107.16]], \"sentences\": [\"A man in a black pirate looking uniform in standing outside clapping and playing a kazoo.\", \" He claps his hands and dances around.\", \" There are people sitting in the grass watching him perform.\", \" He's blowing into the instrument very hard and then the audience claps and he gives a quick speech.\"]}, \"v_-jNouTszLJ0\": {\"duration\": 103.25999999999999, \"timestamps\": [[0, 65.05], [3.1, 7.23], [29.43, 36.14], [58.86, 88.29], [88.8, 96.03], [98.61, 103.26]], \"sentences\": [\"We see people in a room watching two sets of men play beer pong.\", \" The left team makes a goal and get excited.\", \" They make another shot and the man in white begins to freak out.\", \" The man in black is excited and everyone starts hugging everyone else.\", \" We see a man near the camera shake hands with two men.\", \" People are leaving the room.\"]}, \"v_qcsGJTJstZ4\": {\"duration\": 30.93, \"timestamps\": [[0, 10.98], [11.6, 26.75], [26.29, 30.93]], \"sentences\": [\"About six people are standing in a gym playing a game of dodge ball,and the man ends up throwing the ball and hitting a woman in the face.\", \"Once she gets hit,she covers her face but ends up getting hit once more with the ball in the face.\", \"Another game is shown with more people,and another female gets hit in the face in the same fashion.\"]}, \"v_2zVpWu1i5qM\": {\"duration\": 96.18, \"timestamps\": [[1.92, 26.45], [20.68, 75.98], [66.84, 94.74]], \"sentences\": [\"A man is seen speaking to the camera while standing behind a table full of ingredients.\", \" The man then holds up the ingredients and begins laying them on the table.\", \" The man pushing around a plate with his hands in the end.\"]}, \"v_Ey-0Q6VNJaY\": {\"duration\": 213.67000000000002, \"timestamps\": [[0, 9.62], [21.37, 136.75], [143.16, 213.67]], \"sentences\": [\"A series of shiny blue balls float across the screen.\", \" A woman is outside with a skateboard, as she drops it to the ground and talks.\", \" She performs several stunts on the board, and we get a close up as she flips the board back and forth.\"]}, \"v_BFxxrjqgF0w\": {\"duration\": 85.53999999999999, \"timestamps\": [[0, 85.54], [8.98, 85.54], [22.67, 85.54], [34.64, 85.54]], \"sentences\": [\"Several men wear bull fighting outfits.\", \" They perform a comedy routine in an arena.\", \" They taunt small bulls for entertainment.\", \" The men fall down several times.\"]}, \"v_UYe6JGaUZzg\": {\"duration\": 117.35, \"timestamps\": [[0, 92.12], [92.71, 103.27], [103.86, 117.35]], \"sentences\": [\"A young girl in a pink tutu twirls a baton on stage.\", \" The girl does a flip and split on stage.\", \" The audience applauses as the girl finishes her act.\"]}, \"v_AJ_a4fE-rR0\": {\"duration\": 121.05, \"timestamps\": [[1.21, 32.08], [33.29, 82.31], [79.89, 116.2]], \"sentences\": [\"Several clips begins of people riding on surfboards on large waves and crashing into the water.\", \" This leads into people successfully riding along the waves while others watch on the sides.\", \" More people are seen riding along as well as walking on the beach.\"]}, \"v_t7J7SugZPlE\": {\"duration\": 74.47, \"timestamps\": [[0, 1.86], [3.72, 4.47], [8.94, 11.91], [12.29, 14.52], [21.22, 39.47], [39.84, 42.82], [46.17, 56.22], [56.97, 61.44], [61.81, 69.63], [63.67, 71.49], [72.23, 74.47]], \"sentences\": [\"A man and lady leave a room.\", \" A man kisses a lady on the cheek as they walk arm to arm.\", \" A couple wearing robes open the front door.\", \" A guy walks through the front door.\", \" The couple gives the guy several of the items in their home.\", \" A boy notices the items in the guy hands and throws a tantrum.\", \" The lady takes a boy away and gives him a cactus plant.\", \" The lady grabs the boy and leads him through a white gate.\", \" The guy leaves with his hands full of stuff.\", \" The lady pulls the struggling boy into their home.\", \" The lady waves and closes the door.\"]}, \"v_uqaSFllHrco\": {\"duration\": 141.02, \"timestamps\": [[0, 52.88], [61.34, 141.02]], \"sentences\": [\"Several shots of landscapes and people standing together are shown followed by people doing flips and tricks off a jump in the water.\", \" Dozens of people are shown performing tricks on a wakeboard along water with some in front of a large crowd in the end.\"]}, \"v_zdMvd5Cr5jM\": {\"duration\": 106.53, \"timestamps\": [[0, 44.21], [44.74, 106.53]], \"sentences\": [\"A small group of cheerleaders are seen standing ready in the middle of a gym with lots of people watching the in the sidelines.\", \" The girls then perform a routine while people walk in and out of frame and ends with them waving to the audience and walking away.\"]}, \"v_b1wnLw3H1vo\": {\"duration\": 53.57, \"timestamps\": [[0.54, 13.66], [12.86, 31.87], [31.34, 52.77]], \"sentences\": [\"A man and woman are seen moving around a boxing ring hitting each other with gloves.\", \" The woman uses gloves to punch the man while the man uses blocking gloves to block her.\", \" The woman continuously hits the man over and over again and ends by the camera moving away.\"]}, \"v_pSp7zYRYjHE\": {\"duration\": 32.15, \"timestamps\": [[0, 26.52], [8.04, 13.02], [16.56, 21.22], [27.81, 32.15]], \"sentences\": [\"A small red haired boy brushes his teeth.\", \" The boy makes a serious face.\", \" The boy brushes his tongue.\", \" The boy smiles and talks to the camera.\"]}, \"v_SKtUq_1cOSs\": {\"duration\": 55.96, \"timestamps\": [[0, 19.03], [0, 55.96], [20.15, 40.01], [41.13, 52.04], [52.32, 55.96]], \"sentences\": [\"An athlete holds onto a heavy weight.\", \" A man sitting nearby watches.\", \" He lifts the heavy weight high up near his face and lifts it back down near his stomach.\", \" He lifts the weight over his head.\", \" He drops it on the ground.\"]}, \"v_aSxSgymPOBw\": {\"duration\": 95.64, \"timestamps\": [[0, 95.64], [13.87, 95.64], [94.21, 95.64]], \"sentences\": [\"A person is walking down a snowy sidewalk.\", \" A white dog is seen walking on a leash in front of them.\", \" A van is seen on the side of the road.\"]}, \"v_UcVbSLmILaY\": {\"duration\": 69.36, \"timestamps\": [[0, 27.05], [20.46, 69.36]], \"sentences\": [\"A person's feet are shown around a set of shoes and then begins putting socks on his feet.\", \" He then puts his shoes on afterwards and ties them up, ending with his feet together and ready to go.\"]}, \"v_XBMiD_7fdF4\": {\"duration\": 55.26, \"timestamps\": [[6.63, 55.26], [11.88, 55.26], [51.12, 55.26]], \"sentences\": [\"A guy talks about different alcohol drinks.\", \"the guy goes to a store and seems to be picking out some alcohol drinks.\", \"finally the guy takes a sip of some beer that he has poured in a glass mug.\"]}, \"v_JyfelXz6GaA\": {\"duration\": 123.9, \"timestamps\": [[1.86, 70.62], [43.37, 94.17], [72.48, 118.33]], \"sentences\": [\"A large group of people are seen cheering on the sides followed by team members standing together for pictures.\", \" Several shots are shown afterwards of people playing soccer against one another.\", \" People continue playing against one another and end by cheering.\"]}, \"v_2zohqWPmeQU\": {\"duration\": 185.18, \"timestamps\": [[0, 37.96], [39.81, 134.26], [139.81, 185.18]], \"sentences\": [\"A white yard chair is being shown.\", \" A man scrapes the paint off the chair with a scraper.\", \" He shows off a bucket of paint, and uses the white paint to coat the chair.\"]}, \"v_2icoQWmbocU\": {\"duration\": 68.85, \"timestamps\": [[0, 4.82], [5.51, 26.16], [30.64, 49.23], [51.98, 68.85]], \"sentences\": [\"A child walks out of a building in china.\", \" He is shown as a man, fighting and training with different masters.\", \" They ride horses and bow as the man appears to fight the leader and save a woman tied to a stake.\", \" He is shown in multiple clips, fighting and training.\"]}, \"v_QylENMzsW9w\": {\"duration\": 64.51, \"timestamps\": [[0, 64.51], [15.8, 17.09], [55.48, 57.73]], \"sentences\": [\"A person is mopping the floor of a room.\", \" They are mopping under a coffee table.\", \" They then begin to mop under chairs.\"]}, \"v_Ad9jrt2bP1o\": {\"duration\": 40.08, \"timestamps\": [[0, 5.41], [6.21, 28.05], [29.46, 40.08]], \"sentences\": [\"Athletes gather on a track, preparing to run.\", \" They take turns, running down the track.\", \" They long jump into a large pit of sand.\"]}, \"v_cZFThsHMC5w\": {\"duration\": 172.04, \"timestamps\": [[1.72, 38.71], [36.13, 172.04]], \"sentences\": [\"An old man with beard is sitting with eyes close, then a man in black walked towards the temple then the old man opened his eye and did some karate moves.\", \" Two men started to fight using their karate moves, punching and kicking each other.\"]}, \"v_TqO5Ddh5Lp4\": {\"duration\": 60.14, \"timestamps\": [[0, 8.72], [10.83, 40.59], [41.8, 60.14]], \"sentences\": [\"A man is kayaking on a muddy river.\", \" He uses his paddle to guide him as he shifts and turns.\", \" He keeps going, entering faster rapids.\"]}, \"v_2iW1Eq9SDW4\": {\"duration\": 26.26, \"timestamps\": [[0, 7.62], [7.48, 20.35], [18.12, 25.74]], \"sentences\": [\"A small group of people are seen standing around a sandy beach.\", \" One person then hits a ball up into the air to another person.\", \" The people then play a game of volleyball with one another.\"]}, \"v_aGlfi9PqRdY\": {\"duration\": 122.53, \"timestamps\": [[0.61, 30.02], [30.63, 47.17], [45.34, 45.95], [52.69, 102.93], [102.31, 109.05], [110.89, 120.69]], \"sentences\": [\"A potato is being washed and peeled.\", \" The potato then gets sliced on a board.\", \" The sliced potato is put into a pot.\", \" A large vegetable is being peeled and chopped.\", \" The chopped vegetable is being put into a different pot.\", \" Sugar is being put on top of the vegetables in the pots.\"]}, \"v_v6go4RA0ZB4\": {\"duration\": 13.51, \"timestamps\": [[0, 13.51], [0.88, 12.91]], \"sentences\": [\"A girl swims by herself from one end of the pool to the other.\", \"  There are people in the background just talking.\"]}, \"v_gSH5ya0pfko\": {\"duration\": 96.97, \"timestamps\": [[0, 7.27], [7.27, 83.39], [40.73, 51.39], [83.39, 96.97]], \"sentences\": [\"A black screen appears and pink and white word appear that say \\\"Flamingo croquet Finals:Dan vs roger!\\\".\", \" Two older men are playing croquet on lush green grass that have flamingos on them.\", \" A woman appears on the side of the grass and is smiling as she watches the men playing croquet.\", \"A black screen appears and words appear that read \\\"roger wins in a photo finish!\\\", next black screen reveals white words that say \\\"WHO SAYS\\\", then \\\"INSURANCE HAS TO BE BORING?!\\\", and lastly white numbers show up and the number is 877-415-8342.\"]}, \"v_jQVT4u6NojM\": {\"duration\": 78.3, \"timestamps\": [[1.17, 78.3], [5.09, 61.07], [45.41, 59.51], [58.72, 78.3]], \"sentences\": [\"Two men are doing hand wrestling competition on front other people.\", \" A person takes pictures of the wrestling competition.\", \" Then, a man approaches an put the hands of the men in the center, until one the men win the competition.\", \" The winner celebrate and people congratulates the winner.\"]}, \"v_01_BrVxYsE0\": {\"duration\": 208.98, \"timestamps\": [[1.04, 102.4], [54.33, 204.8]], \"sentences\": [\"A man is seen speaking to the camera and leads into him putting out a glass.\", \" The man mixes several ingredients together into the glass and presents a drink in the end.\"]}, \"v_FmaW2KK4wWU\": {\"duration\": 215.34, \"timestamps\": [[0, 7.54], [7.54, 23.69], [23.69, 65.68], [65.68, 116.28], [116.28, 161.51], [161.51, 215.34]], \"sentences\": [\"A black female is standing in a room with a red banana on her head and a grey flowery roll of wall paper in her hand.\", \"The wall paper is then laid on a flat surface and the woman begins add paste to the back of it.\", \"After,the strip is laid on the wall and white tub becomes present.\", \"A tool box is then shown and various tools such as scissors,paper hanging brush,wallpaper paste,and other items that you will need to complete the task.\", \"The lady reappears in the room and starts cutting the paper into several even pieces and begins topping each one with a capital T.\", \"She continues to do the job in an extremely precise manner and repeats the previous steps before trimming the top and bottom of the paper.\"]}, \"v_kgvbU_3jEy8\": {\"duration\": 163.92000000000002, \"timestamps\": [[0, 21.31], [23.77, 125.4], [127.86, 163.92]], \"sentences\": [\"A group of team mates are seen on a court.\", \" They are kicking a ball back and forth.\", \" Instructions are being given regarding their techniques.\"]}, \"v_OaFYMXKxTbk\": {\"duration\": 144.82, \"timestamps\": [[0, 10.86], [11.59, 30.41], [31.14, 126.72], [127.44, 144.82]], \"sentences\": [\"A view is seen of a vast cavernous valley and mountains.\", \" Skiers walk into a building together.\", \" They begin skiing and snowboarding on an indoor surface in front of a crowd.\", \" They hop back and forth as the audience claps.\"]}, \"v_8QEG_1GhoEc\": {\"duration\": 148.03, \"timestamps\": [[37.75, 68.83], [85.12, 93.26], [117.68, 131.74]], \"sentences\": [\"A man in a blue shirt is moving dirt around next to a tree.\", \" A man in a yellow vest is raking the dirt.\", \" A man is standing in front of a green and yellow trailer.\"]}, \"v_IoGpS8NQklE\": {\"duration\": 231.97, \"timestamps\": [[0, 31.32], [37.11, 98.59], [100.91, 196.01], [197.17, 231.97]], \"sentences\": [\"A group is gathered on the beach to play soccer in the sand.\", \" The game commences with judges and spectators nearby.\", \" They kick the ball back and forth, trying to keep the ball from their opponent.\", \" They and the crowd clap enthusiastically as they win.\"]}, \"v_z3-tII3XcUs\": {\"duration\": 6.1, \"timestamps\": [[0, 6.1], [0, 4.69], [4.82, 6.1]], \"sentences\": [\"A girl playing a black guitar while singing a song.\", \"  She sings while she looks at her finger placement on the guitar as she strums the guitar.\", \"  She looks at the camera as she stops strumming and sings the last few words of the song.\"]}, \"v_y-rgla4aNUo\": {\"duration\": 226.12, \"timestamps\": [[0, 214.81], [7.91, 214.81], [223.85, 226.12]], \"sentences\": [\"A man is sitting in a chair playing an acoustic guitar.\", \" He is singing while he's playing.\", \" He finishes playing and moves his guitar.\"]}, \"v_v5patZyuYys\": {\"duration\": 213.23, \"timestamps\": [[0, 44.78], [46.91, 146.06], [148.19, 204.7]], \"sentences\": [\"Players and coaches are seen wandering around a field speaking to one another.\", \" More players are shown walking around followed by one hitting a ball and others celebrating.\", \" The same shot is shown again and the players are seen in the end speaking to one another.\"]}, \"v_6hNV9oxC51k\": {\"duration\": 128.58, \"timestamps\": [[2.57, 68.15], [41.79, 122.15]], \"sentences\": [\"A large group of people are seen riding down a river in a raft as well as people sitting on rocks on the side and more clips of people rowing.\", \" Several more clips are shown of people riding down the river in a raft and getting hit by the water.\"]}, \"v_-2VzSMAdzl4\": {\"duration\": 223.48, \"timestamps\": [[4.47, 12.29], [14.53, 51.4], [51.4, 72.63], [73.75, 99.45], [100.57, 112.86], [113.98, 187.72], [187.72, 223.48]], \"sentences\": [\"two men travel in a car pulling a boat.\", \" Then, a man does water ski in a lake pulling by a boat.\", \" The man falls from the skis to the water, then he continues water skiing.\", \" A man is in the water and stands on a circle surfboard but falls while other people are water skiing.\", \" After, people sits on the grass doing a pic nick.\", \" A couple sit on a inflatable ring and water ski.\", \" Next, a man slides on a circle surfboard while others water ski on surfboards.\"]}, \"v_I8nK8c7k9ko\": {\"duration\": 146.84, \"timestamps\": [[0, 11.01], [11.01, 66.08], [66.08, 116.01], [92.51, 140.97], [140.97, 146.84]], \"sentences\": [\"A man is walking along a group of inner tubes moving them all because they're roped together with some people in most of them.\", \"The man stops walking and the inner tubes move on their own and he begins talking, pointing and making hand motions.\", \"The man grabs a can from a woman on the inner tube then grabs her right hand and helps her to stand up and the rest of the people start getting out of their inner tubes and stand up while the man helps another woman out of hers.\", \"When a woman gets out of her inner tube she has a lot of leaves on her back, a man notices it and he wipes it off of her back with his hands and then he grabs a bottled water and pours it onto her back.\", \" A woman that was sitting on a chair in a shallow water gets up as the rest of the people that were in inner tubes start walking out of the water.\"]}, \"v_hDPLy21Yyuk\": {\"duration\": 76.23, \"timestamps\": [[0, 49.17], [48.03, 76.23]], \"sentences\": [\"A man is seen speaking to the camera and leads into him holding a brush and rubbing it along a shoe.\", \" He continues brushing off the shoe and shows off the end result.\"]}, \"v_hYAE418i-ZY\": {\"duration\": 219.36, \"timestamps\": [[7.68, 105.29], [105.29, 127.23], [128.33, 140.39], [141.49, 213.88], [214.97, 218.26]], \"sentences\": [\"A man cuts the hair of a male using a shaver machine, the man shaves the back and sides of the head leaving the hair on top.\", \" Then, the man cuts the hair on top the head with scissors helped with a comb.\", \" After, the man sprays the hair and cuts the ends of the hair.\", \" Next, the man rubs his hands with cream and give form to the hair, also sprays the hair.\", \" After, the man appears before and after the haircut.\"]}, \"v_lrlUN65DM8c\": {\"duration\": 109.03999999999999, \"timestamps\": [[7.09, 109.04], [10.9, 109.04], [9.81, 107.41]], \"sentences\": [\"A man swings around and throws a disc onto the field several times.\", \" People are watching him in the audience.\", \" A man is sitting down on the other side of a fence watching him.\"]}, \"v_J8mSgO4r-kQ\": {\"duration\": 190.8, \"timestamps\": [[0, 9.54], [9.54, 167.9], [48.65, 59.15], [88.72, 125.93], [124.97, 134.51], [167.9, 175.54], [175.54, 190.8]], \"sentences\": [\"Intro text on a black screen is shown.\", \" Two men talk while one of them engages in ice fishing.\", \" The man not fishing stands up briefly.\", \" The man not fishing inserts his hand into the water several times.\", \" The man not fishing helps to pull a fish out of the ice fishing hole.\", \" The two men shake hands while a third walks behind them.\", \" Explanatory text on a black screen is shown.\"]}, \"v_ulopyhvgyQg\": {\"duration\": 40.57, \"timestamps\": [[0, 3.65], [9.94, 13.39], [13.59, 22.92], [21.7, 40.57]], \"sentences\": [\"A man stands in front of an oil change center.\", \" A woman works a machine at the center.\", \" A man cleans a car.\", \" Other people clean the car as well.\"]}, \"v_AY6QSTuHGRc\": {\"duration\": 168.53, \"timestamps\": [[0, 168.53], [45.5, 146.62]], \"sentences\": [\"Skiing is shown from a gopro vantage point.\", \"  The tricks are shown and people fly down a mountain.\"]}, \"v_sGUkc9ajgiU\": {\"duration\": 31.63, \"timestamps\": [[0, 25.62], [0.16, 11.7], [11.54, 15.5], [25.78, 31.63]], \"sentences\": [\"Two men sit in a hall at a shoes shine station in an office building.\", \" We see a man shining a man's shoes in an office building.\", \" The shoe shine man makes a weird face.\", \" The shoe shine man talks to the camera.\"]}, \"v__yFOkxb22RI\": {\"duration\": 60.42, \"timestamps\": [[0, 22.96], [21.15, 48.94], [48.34, 60.42]], \"sentences\": [\"A man is seen speaking to the camera while holding a rag and leads into him holding up a bottle and placing it onto a table.\", \" He then pours the bottle out on the table and rubs it down with the rag.\", \" In the end he moves the rag to show off the finished table.\"]}, \"v_-TubttTNt90\": {\"duration\": 220.52, \"timestamps\": [[0, 220.52], [84.9, 90.41], [140.03, 145.54], [162.08, 183.03], [198.47, 220.52]], \"sentences\": [\"We see a man teaching others to sharpen a knife in a butcher shop.\", \" The man wets the sharpening stone.\", \" Two men in the back laugh at something.\", \" The instructor uses a sharpening rod for the knife.\", \" The man puts way his sharpening block.\"]}, \"v_gtAl_FkXdR8\": {\"duration\": 144.24, \"timestamps\": [[0.72, 51.93], [51.93, 67.07], [68.52, 99.53], [99.53, 114.67], [115.39, 123.33]], \"sentences\": [\"Soldiers holds firearms in a training camp wearing camouflage clothes, then, the men run to fight in a field shooting while their firearms.\", \" After, the soldiers run to the woods firing their rifles, and a man wearing a leafy poncho camouflage on head  fire his gun in the wood.\", \" After other soldiers run and shoot while searching abandoned shelters.\", \" Then, the soldiers run on a trench to search a safe place while firing their firearms.\", \" A soldier walk with his rifle inside a a tunnel.\"]}, \"v_zhPqZtWuhow\": {\"duration\": 33.3, \"timestamps\": [[0, 33.3], [1.33, 33.3], [0, 23.64], [25.64, 33.3]], \"sentences\": [\"referee is standing in front of a table soccer game.\", \" two men are playing table soccer in stage with a big screen in the background.\", \" man is sitting behind the black counter and in front of the screen.\", \" the man kneels and grab a water bottle under the table and shake hands with men in the public.\"]}, \"v_Ve37zGVerDU\": {\"duration\": 91.86, \"timestamps\": [[0, 3.67], [3.67, 18.37], [18.37, 34.91], [34.91, 57.87], [57.87, 86.81], [86.81, 91.86]], \"sentences\": [\"Two military men are standing in a room and bending side by side with a medical exam bed in between them and their left and right forearms touching.\", \"The men then stand straight up and get into position to arm wrestle and the bigger black man is on the left and the smaller hispanic man is on the right.\", \"The men start to arm wrestle and the hispanic man easily wins while smiling the whole time.\", \"The black man is in disbelief and they're laughing and having a good time and they re-do it and the hispanic man wins again and more smiles continue.\", \"They laugh when it's over then they switch sides to do a re-match and the hispanic man easily wins again and they both laugh.\", \"A black screen appears with white words that say \\\"Thank you! Please subscribe to my Channel!\\\" and includes a yellow smiley face with a tongue sticking out.\"]}, \"v_ieWgalZPc2g\": {\"duration\": 132.45, \"timestamps\": [[0, 15.89], [15.89, 24.5], [24.5, 31.13], [31.13, 35.1], [35.1, 46.36], [46.36, 125.82], [125.82, 132.45]], \"sentences\": [\"Various men and women are shown in different circumstances where they look like they are either in physical or emotional distress.\", \"A large group of dirt bike riders appear as they are flying over a large dirt hill and one crashes to the ground causing another one beside it to crash.\", \"Another dirt bike course is shown with a new set of dirt bikers and a few of them crash to the ground as well.\", \"A person is now shown strapped to a gurney and being carried away from the dirt path by four different people.\", \"Another dirt bike course is shown and a very unfortunate man crashes to the ground and continues to get hit and run over by other dirt bike riders.\", \"The next set of clips are of various different dirt bikers on various different courses experiencing a lot of different flips, turns and crashes where people and their bikes go flying off into each other.\", \"The outro screen appears and it's all black with large white letters that read \\\"End\\\".\"]}, \"v_iIVOAvu3qtM\": {\"duration\": 68.87, \"timestamps\": [[0, 2.75], [3.1, 14.12], [14.81, 18.6], [19.97, 68.87]], \"sentences\": [\"We see an opening screen with a bottle of a polishing product .\", \" We see a wooden pole in a room.\", \" A person pours something on a rag.\", \" The person wipes the rag over the pole.\"]}, \"v_IN4nGNF9gi8\": {\"duration\": 108.02000000000001, \"timestamps\": [[0, 9.72], [11.34, 63.19], [63.19, 108.02]], \"sentences\": [\"A woman is seen walking down a sidewalk.\", \" She gets her hair washed in a salon.\", \" She then sits as her hair is combed, cut and styled.\"]}, \"v_RKzwMrL5Th4\": {\"duration\": 67.44, \"timestamps\": [[0, 7.08], [6.07, 22.59], [11.13, 53.62], [7.08, 67.44]], \"sentences\": [\"Three male players are running in the court after the ball.\", \" The player in red shirt is slowly kicking the ball, then he kicked it hard to the goal.\", \" The player kicked the ball to the goal, but the goalkeeper is able to block it.\", \" The players continue to play soccer in the indoor field.\"]}, \"v_jBFn08ZRKSE\": {\"duration\": 24.71, \"timestamps\": [[0, 24.71], [2.96, 24.71], [20.38, 24.71]], \"sentences\": [\"A guy plays the drums with his hand.\", \"the guy is sitting down and playing two red drums with his hands at the same time.\", \"another guy walks around the first guy playing the drums and starts to play different the drums behind him standing up with drum sticks.\"]}, \"v_4Sf9C_vtYIs\": {\"duration\": 14.14, \"timestamps\": [[0, 3.54], [3.54, 7.92], [7.92, 14.14]], \"sentences\": [\"A little boy has his hands in some water that is running out of a faucet.\", \" The lady that is holding him puts some soap onto his hands.\", \" He then rinses the soap off of his hands in the running water.\"]}, \"v_o3Nuqg4w_b8\": {\"duration\": 120.86, \"timestamps\": [[0, 120.86], [38.68, 45.32], [93.06, 120.86], [106.36, 120.86]], \"sentences\": [\"A number of individuals exercise together using a stair step implement.\", \" One of the individuals in the background stops exercising for a bit.\", \" Another individual leaves the camera frame.\", \" The first individual stops exercising again.\"]}, \"v_wb8TkqxxEuo\": {\"duration\": 234.2, \"timestamps\": [[0, 81.97], [66.75, 196.73], [167.45, 234.2]], \"sentences\": [\"The video leads into several shots of men lifting up heavy sets up weights in a gym location.\", \" Another man is seen pushing a large tire across a parking lot with others as well as carrying weights and kegs over their heads.\", \" Finally a group of men play tug of war against one another and lets go in the end cheering.\"]}, \"v_01vNlQLepsE\": {\"duration\": 11.7, \"timestamps\": [[0.23, 11.7], [1.64, 10.65]], \"sentences\": [\" A girl in black shirt and black pants is jumping using a small bouncing pole, while her hands have two batons.\", \" The girl is swirling the white and silver baton in both hands while she jump up and down.\"]}, \"v_SfQku6CicrU\": {\"duration\": 5.57, \"timestamps\": [[0, 1.7], [1.25, 4.57], [4.4, 5.57]], \"sentences\": [\"The man went to the dirty water.\", \" The cupped the water and wash his face.\", \" After he wash his face, he cheered.\"]}, \"v_ZfXkzv-hNlg\": {\"duration\": 109.25, \"timestamps\": [[0, 32.23], [32.78, 109.25]], \"sentences\": [\"Seven people are in a kayak and they are moving throughout vibrant blue waters.\", \"Although the water is clear and beautiful they experience a few waves and their experience becomes bumpy.\"]}, \"v_-TWiYyvt2Ec\": {\"duration\": 123.21, \"timestamps\": [[0, 40.66], [40.66, 123.21]], \"sentences\": [\"The video leads into several people riding kite boards and immediately wiping out into the water.\", \" Dozens of people are shown crashing into the water on kite boards and ends up shots of people riding away from the camera.\"]}, \"v_mIC02-VKqUE\": {\"duration\": 61.86, \"timestamps\": [[0, 4.95], [8.35, 26.6], [30.31, 55.36]], \"sentences\": [\"Several men are seen speaking to the camera and making martial arts moves.\", \" Two men then play rock paper scissors while still using special effects.\", \" One man beats the other and throws him off set.\"]}, \"v_K8XNOs0AwaE\": {\"duration\": 139.3, \"timestamps\": [[0, 22.98], [22.98, 75.22], [75.22, 100.99], [100.99, 139.3]], \"sentences\": [\"A guy on a motorcycle followed by other guys on motorcycles pull into a area while the first guy began to remove his helmet.\", \"the camera man shows the other guys on motorcycles continue on riding and one stops and talk to the first guy who took off his helmet while a guy takes pictures in the back ground.\", \"Both men gets off there bike and start to fight each other,they start swinging at each other,grabs each other and falls to the ground.\", \"Many other guys rush to the fight and breaks in up,one of the guys is bleeding from him forehead while the other walks away with a female.\"]}, \"v_RD7AUdgtchE\": {\"duration\": 4.55, \"timestamps\": [[0, 0.64], [0.77, 3.07], [2.91, 4.44]], \"sentences\": [\"A young girl is seen standing in the snow holding a shovel.\", \" She then does a jump with the shovel as well as a twirl.\", \" The girl jumps one more time while holding the shovel.\"]}, \"v_oQuAwR_t5Ig\": {\"duration\": 216.95, \"timestamps\": [[0, 31.46], [43.39, 164.88], [173.56, 216.95]], \"sentences\": [\"A boy is riding a skateboard in a building.\", \" He goes up and down the ramps.\", \" He shows the kinds of shoes he uses for skating, and does several stunts.\"]}, \"v_EGrXaq213Oc\": {\"duration\": 126.39, \"timestamps\": [[1.9, 115.01], [2.53, 6.95], [8.22, 12.64], [12.01, 16.43], [15.17, 17.69], [18.96, 24.01], [24.65, 34.12], [31.6, 55.61], [54.98, 76.46], [75.2, 101.74], [96.69, 111.22], [111.85, 116.28]], \"sentences\": [\"There are many young children in a snowboarding school.\", \" The small children are going on snowboarding lifts to begin their lessons.\", \" A woman dressed in a green winter coat and white woolen hat is talking about the snowboarding school.\", \" There's a small boy snowboarding down the slope.\", \" There are some adults helping small children get ready with their snowboarding equipment and gear.\", \" The young snowboarder continues to go down the mountain slope steadily.\", \" An instructor from the snowboarding school is helping some young children get up after falling down.\", \" The instructors are helping and teaching the young students to begin snowboarding and teaching them various steps.\", \" One of the students does impressive stunts and moves while snowboarding.\", \" The instructors continue to teach their students.\", \" The young snowboarders show off their talent as they go down the slopes.\", \" One of the students shows the medal that he has won in a snowboarding competition.\"]}, \"v_PAGuZzrzSO4\": {\"duration\": 26.05, \"timestamps\": [[0, 4.17], [4.95, 16.28], [17.06, 26.05]], \"sentences\": [\"A cowboy is riding a horse in a barn.\", \" He lassos a small calf.\", \" He dismounts, tying the calf and celebrating.\"]}, \"v_2SKZB0bfqF8\": {\"duration\": 164.82, \"timestamps\": [[0, 4.94], [4.94, 10.71], [14.83, 18.95], [26.37, 45.32], [46.15, 56.86], [58.51, 66.75], [68.4, 92.3], [97.24, 128.56], [159.05, 164.82]], \"sentences\": [\"We see a lady look out at the snow.\", \" We then see her shoveling the snow.\", \" We see an illustration of a man.\", \" We see the Snow helper, then  see it in action.\", \" We are shown a shovel with it attached.\", \" We see the sale screen.\", \" We see the shovel being set up with a shovel helper.\", \" The lady then shovels her yard and adjusts her helper.\", \"  We see a chiropractor endorsement and the ending screen.\"]}, \"v__HMwzNA9DNY\": {\"duration\": 100.13, \"timestamps\": [[0, 3], [4.01, 12.02], [8.51, 12.02], [12.52, 93.12], [26.03, 36.05], [77.1, 92.62], [93.62, 100.13]], \"sentences\": [\"We see an opening title screen.\", \" We see targets at the end of a long field.\", \" We see a man at the targets holding one and taking it off the field.\", \" We see young men holding bow and arrows.\", \" We see the men take their arrows and shoot.\", \" We see a couple of men leave the line.\", \" We then see the closing screen.\"]}, \"v_CHBpVOfPmRA\": {\"duration\": 107.37, \"timestamps\": [[0, 107.37], [34.9, 35.97], [3.22, 107.37]], \"sentences\": [\"People are playing volleyball in the sand.\", \" Two guys high five on the sand.\", \" A red umbrella is over a table on the side of the court.\"]}, \"v_XlEmG7nM0jw\": {\"duration\": 66.22, \"timestamps\": [[0, 23.18], [19.54, 47.02], [35.43, 65.23]], \"sentences\": [\"A man is seen speaking to the camera while pouring ice into a glass.\", \" The man then pours liquid into the glass and shakes it up.\", \" He finally pours the rest into the glass while smiling to the camera.\"]}, \"v_hzeK-DdGOsc\": {\"duration\": 124.76, \"timestamps\": [[0, 124.14], [23.08, 30.57], [81.09, 100.43]], \"sentences\": [\"People are standing in a ring with a bull.\", \" The bull falls to the ground.\", \" A bull gets dragged out of the arena.\"]}, \"v_zgnBeiEB5pE\": {\"duration\": 176.38, \"timestamps\": [[0, 25.57], [26.46, 72.32], [73.2, 145.51], [146.39, 164.91], [165.8, 176.38]], \"sentences\": [\"Various small scene cuts with glasses, ice, liquor, lemons, limes, people socializing, liquor bottles, funnels lead to titles of the video.\", \"  A man and woman are presenting a video and are explaining how to make an alcoholic drink.\", \"  The man takes out two glasses as he and the lady make a mixed drink using lemon slices, ice, lemon peel, liquor, and ginger ale.\", \"  The man stirs the drinks and after they taste the drinks they have made.\", \"  With a glass of sparkling liquid in a glass they show a logos for several sponsos of the video.\"]}, \"v_h1t5QZjERms\": {\"duration\": 175.1, \"timestamps\": [[0, 81.42], [32.39, 48.15], [54.28, 82.3], [83.17, 84.92], [85.8, 86.68], [99.81, 152.34], [98.93, 137.46], [154.97, 165.47], [166.35, 175.1]], \"sentences\": [\"We see older people playing badminton.\", \" We see a man talking to the camera then a lady talking to the camera.\", \" We then see the man talking again then the lady talk again.\", \" We see a green door.\", \" We see birdies stacked on each other.\", \" We see people playing again.\", \" We see the man talking then the  lady talks.\", \" We see cars driving down the street.\", \" People are playing badminton again.\"]}, \"v_iGxMm7C1q48\": {\"duration\": 88.07, \"timestamps\": [[0, 4.4], [3.52, 10.13], [13.21, 88.07]], \"sentences\": [\"A man is seen standing before a bowling lane holding a ball.\", \" The man throws the ball down the lane and walks back to the front.\", \" The man throws several balls down the lane while the camera watches from the side.\"]}, \"v_3I4EzlMo124\": {\"duration\": 98.66, \"timestamps\": [[0, 38.97], [39.46, 83.86], [83.37, 98.66]], \"sentences\": [\"A teenage girl is dressed in a long sleeve red leotard and jumps up on a balance beam.\", \"Once she is on,she begins kicking her legs up and down and doing several flips along the bar.\", \"For her final trick,she flips off the bar and her foot goes further than expected but she quickly gathers herself and sticks her landing.\"]}, \"v_8uV6u0QcTSs\": {\"duration\": 64.13, \"timestamps\": [[0, 42.65], [8.66, 19.24], [0, 1.28], [42.65, 62.53]], \"sentences\": [\"A little girl applies makeup to her face.\", \" The girl takes eye-shadow with a brush from a palette.\", \" The mirror reflects a woman taking pictures.\", \" Then, the little girl puts lipstick on her lips.\"]}, \"v_a_c-FIC_W4A\": {\"duration\": 59.98, \"timestamps\": [[0, 19.79], [16.19, 59.98]], \"sentences\": [\"A close up shot of shoe polish is shown followed by a man shining his shoes and speaking to another man walking in.\", \" The man walks out of frame is shown again shining the shoes of another man reading a newspaper.\"]}, \"v_WPrlU-Im5Ko\": {\"duration\": 85.94, \"timestamps\": [[0, 32.23], [33.95, 60.16], [62.73, 85.94]], \"sentences\": [\"A woman holds a bottle in front of her face and puts two contacts into separate eyes.\", \" She then puts a hat on and presents herself to the camera.\", \" She is shown one more time putting in a contact lens and smiling.\"]}, \"v_VUlsdTzaKV4\": {\"duration\": 148.98, \"timestamps\": [[0, 17.13], [17.13, 39.48], [39.48, 135.57]], \"sentences\": [\"An advertisement presents a snowboarder in a sky station, who holds a snowboard.\", \" The snowboarder is doing tricks on the snow.\", \" Then, the snowboarder explains the technique how to jump and turn with the board, and shows the turns on the snow.\"]}, \"v_8BsIeOSzK_U\": {\"duration\": 54.22, \"timestamps\": [[0, 10.84], [10.57, 48.25], [49.34, 54.22]], \"sentences\": [\"A man jumps onto parallel bars.\", \" He does a gymnastics routine on the bars.\", \" He jumps off the bars and lands on a mat.\"]}, \"v_Y4IsLkxb5CI\": {\"duration\": 181.05, \"timestamps\": [[1.81, 179.24], [40.74, 54.31], [133.07, 143.93]], \"sentences\": [\"A lady goes underwater swimming outdoors.\", \" The shadow of a person riding a surf board is captured.\", \" The lady smiles and swims away.\"]}, \"v_ucsAN6pGv6w\": {\"duration\": 7.99, \"timestamps\": [[0, 1.72], [1.76, 5.67], [5.39, 7.91]], \"sentences\": [\"A man is seen standing with a javelin in front of a large group of people.\", \" He begins running down the track with the object in his hands and looking off into the distance.\", \" He throws the pole off into the field while others on the side watch.\"]}, \"v_6PnPu_cLCvE\": {\"duration\": 128.92, \"timestamps\": [[2.58, 53.5], [36.74, 125.05]], \"sentences\": [\"A man is seen smoking a cigarette then stomping it out and carrying a monkey on his back.\", \" The man brush his teeth with the monkey pulling it away as well as taking his phone and interrupting his sleep and activities.\"]}, \"v_KoHzXi7Usl8\": {\"duration\": 159.06, \"timestamps\": [[13.52, 154.28], [38.17, 159.06]], \"sentences\": [\"People go snowboarding on a mountain.\", \"  They show the chairlift, some of the ramps that people jump on, and many other things.\"]}, \"v_Rokj1EIAHHk\": {\"duration\": 39.57, \"timestamps\": [[0, 6.53], [6.92, 20.77], [19.98, 23.94], [23.15, 36.2], [36.8, 39.57]], \"sentences\": [\"A man stands at the edge of a platformed runway in front of an audience.\", \" The man performs gymnastics on the platformed runway.\", \" The camera shows a crowd scene at the event.\", \" The man performs a second set of gymnastics at the same location.\", \" The man walks away while talking to another man in an orange shirt.\"]}, \"v_tAbB24pczrs\": {\"duration\": 208.46, \"timestamps\": [[3.13, 86.51], [76.09, 201.16]], \"sentences\": [\"A camera pans all around a large mat with a woman kneeling in front followed by taking off her jacket.\", \" The woman then performs various exercises on the mat while moving her body all around and ending by turning the music off.\"]}, \"v_pf49xhMRrgQ\": {\"duration\": 174.07999999999998, \"timestamps\": [[0, 174.08], [0.87, 174.08], [67.02, 72.24]], \"sentences\": [\"People are sitting on a sidewalk playing drums.\", \" People are watching them in front of them on the sidewalk.\", \" People are riding bikes on the beach behind them.\"]}, \"v_bVAUJAAg3TM\": {\"duration\": 174.62, \"timestamps\": [[0, 20.95], [28.81, 97.78], [101.28, 141.44], [145.8, 174.62]], \"sentences\": [\"A woman is seen running in slow motion down a track.\", \" She passes judges as she runs.\", \" She leaps, then lands in the sand.\", \" The scene is repeated again.\"]}, \"v_p3PEMCN4h_g\": {\"duration\": 77.83, \"timestamps\": [[0, 5.84], [5.84, 24.52], [24.52, 56.82], [56.82, 77.83], [73.94, 77.83]], \"sentences\": [\"A colorful intro appears and in includes a logo and the words \\\"INTRODUCING RUNNING FESTIVALS A distance for everyone!\\\".\", \"A lot of people appear in a large area, hanging out, walking and talking and the words on the screen say OMAHA Marathon Inaugural HITS Running Festival.\", \"A large group of people appear at the starting point and being running through various different scenery's while many people are cheering them on.\", \" The people are now starting to approach the finish line and some have ribbons placed around their neck.\", \" The outro screen appears and it includes the logo along with the twitter handles and facebook contact information.\"]}, \"v_ZGsYV0KDB-4\": {\"duration\": 31.19, \"timestamps\": [[0, 4.21], [4.83, 21.21], [22.92, 31.19]], \"sentences\": [\"A dog is sitting on the ground next to the words Dog Training.\", \" A dog is seen lying on the living room floor, running in his sleep.\", \"  He suddenly jumps up, running face first into the wall.\"]}, \"v_EZKrOWEKX_Q\": {\"duration\": 136.21, \"timestamps\": [[0, 1.36], [1.36, 10.22], [10.22, 128.72], [77.64, 87.17], [117.82, 125.99], [128.72, 136.21]], \"sentences\": [\"A large, blue wave is seen.\", \" The title appears over the wave.\", \" We see surfers riding waves in the ocean.\", \" A man is engulfed by a wave.\", \" A man escapes being overcome by a wave.\", \" A man stands on the shore.\"]}, \"v_f07eWOCKLI8\": {\"duration\": 129.82, \"timestamps\": [[1.95, 40.89], [35.7, 98.67], [90.88, 128.52]], \"sentences\": [\"Two people are seen dancing in front of the camera in front of a christmas tree.\", \" Another person walks into frame showing off a coffee cup and leads into the girls decorating a tree.\", \" The girls continuously put ornaments on the tree and end holding their arms up.\"]}, \"v_Wzg4d-3ym1E\": {\"duration\": 205.29, \"timestamps\": [[29.77, 68.77], [81.09, 93.41], [117.01, 139.6], [147.81, 166.28]], \"sentences\": [\"A woman holds an iron in her hand.\", \" She starts ironing a dresser in front of her.\", \" She starts painting the dresser with a spray gun.\", \" She grabs a sponge out of a black bucket and starts wiping down the dresser.\"]}, \"v_Qu3_80O0j5w\": {\"duration\": 112.06, \"timestamps\": [[0, 7.28], [12.33, 66.68], [70.04, 112.06]], \"sentences\": [\"A screen says Break your Bad Habit.\", \" A woman is shown swimming quite well from underneath.\", \" She swims in both directions, before a man is shown doing the same.\"]}, \"v_OJiLPJkzel4\": {\"duration\": 96.78, \"timestamps\": [[0, 26.61], [26.61, 28.55], [29.03, 48.87], [48.39, 51.29], [51.78, 96.78]], \"sentences\": [\"An athlete is speaking to unseen viewers about the sport of curling.\", \"  A couple of shots of this athlete performing his sport on the ice with a teammate is is shown.\", \"  After a few more moments of speaking, A shot of a young blond woman is shown in the same navy blue gear with white stripes down her arms.\", \"  She has a look of concentration on her face as she performs this same sport, followed by raising her arms in triumph.\", \" The man, likely her teammate resumes speaking once again, obviously enthusiastic about the game.\"]}, \"v_ZY8UyWtoMWg\": {\"duration\": 37.57, \"timestamps\": [[3.19, 18.6], [18.79, 33.81]], \"sentences\": [\"Some windows of a house are covered with planks.\", \" Men are remodeling the roof of the house.\"]}, \"v_C_2EFIuyDSA\": {\"duration\": 81.97, \"timestamps\": [[0, 81.97], [9.02, 10.66], [22.95, 23.77]], \"sentences\": [\"A boy is standing behind a drum set playing the drums.\", \" People are sitting in front of him watching.\", \" A person is sitting next to him.\"]}, \"v_U7QjLGMeGOo\": {\"duration\": 73.26, \"timestamps\": [[0.37, 37], [48.35, 68.5]], \"sentences\": [\"There is a little boy trying to roll a blue ball into the pins.\", \" Then a girl who has been waiting in line tries to knock the bowling pins down.\"]}, \"v_AUHORHUgC-s\": {\"duration\": 144.06, \"timestamps\": [[0, 37.45], [38.9, 103.72], [101.56, 144.06]], \"sentences\": [\"A man is seen speaking to the camera and standing in front of a table with various tools laid out in front of him.\", \" He then is seen wearing a hat, holding a mug, and using a knife around it.\", \" He then uses the knife along a window and is shown several times sharpening the knife and speaking to the camera.\"]}, \"v_8AQopjogplo\": {\"duration\": 212.14, \"timestamps\": [[4.24, 111.37], [84.86, 208.96]], \"sentences\": [\"Two people are seen playing instruments on a stage while a light shines down on them and people walk in and out of frame.\", \" The men continue playing the instruments and ends with them laughing to one another.\"]}, \"v_RG98kemBdyg\": {\"duration\": 31.02, \"timestamps\": [[0, 31.02], [0.78, 31.02]], \"sentences\": [\"man is standing on top of a able playing the saxophone inside a tent.\", \" people are sitting on tables around the man watching him and clapping the music.\"]}, \"v_ccfffP3pXrc\": {\"duration\": 70.13, \"timestamps\": [[0, 33.31], [34.71, 70.13]], \"sentences\": [\"A child goes across monkey bars.\", \"  He climbs down and puts his jacket on.\"]}, \"v_a8dUtKcAunw\": {\"duration\": 117.03, \"timestamps\": [[0, 50.91], [50.91, 117.03]], \"sentences\": [\"A man with a cigarette is playing a guitar.\", \" He starts singing into a microphone and playing the guitar.\"]}, \"v_suL3ZeuQ3DA\": {\"duration\": 24.13, \"timestamps\": [[2.41, 13.15], [6.27, 13.15], [9.65, 23.76]], \"sentences\": [\"The boy roll the ball on the floor.\", \" One kid kicked the ball.\", \" The ball hit the other boy in blue shirt.\"]}, \"v_r1mrueEHDDE\": {\"duration\": 224.68, \"timestamps\": [[0, 21.34], [25.84, 205.58], [206.7, 224.68]], \"sentences\": [\"A girl walks over in front of a stand with music.\", \" She is holding a flute, which she then begins to play.\", \" When she is done, she lowers the flute away from her mouth and walks over to the camera.\"]}, \"v_YuuWL4EK7Q4\": {\"duration\": 174.52, \"timestamps\": [[0, 32.29], [33.16, 65.45], [65.45, 68.94], [75.92, 97.73], [97.73, 107.33], [119.55, 166.67], [166.67, 174.52]], \"sentences\": [\"We pan over a city street and rail road tracks.\", \" We see a man in a sling talking to the camera.\", \" We see a lady in sunglasses.\", \" We see a man in a jacket talking to the man in orange.\", \" The orange man ties the other man's shoes.\", \" The man in the jacket is getting his shoes cleaned and pays the man.\", \" The men shake hands and walk away.\"]}, \"v_yw1IZdbEzck\": {\"duration\": 175.52, \"timestamps\": [[0, 12.29], [12.29, 40.37], [40.37, 77.23], [77.23, 175.52]], \"sentences\": [\"A woman sits as a man is piercing her nose.\", \" He punctures her nose with a long thin rod.\", \" He pulls the rod through to insert the jewelry and she begins to bleed.\", \" After the jewelry is in, he begins to clean off the blood.\"]}, \"v_I4kjOE8HnU0\": {\"duration\": 170.77, \"timestamps\": [[0, 40.13], [40.13, 139.18], [134.91, 170.77]], \"sentences\": [\"A man is seen standing with his arms out and leads into several pictures and videos of him making long jumps.\", \" More pictures of him winning and having fun and shown followed by more jumps and races from the athlete.\", \" More pictures are shown of the man's journey of jumping and running and ends with a shot of him in the .\"]}, \"v_HNvolNt5RU0\": {\"duration\": 42.89, \"timestamps\": [[0, 4.07], [3.65, 12.01], [3.65, 42.89], [31.95, 37.1]], \"sentences\": [\"A person throws a yellow ball into a swimming pool.\", \" Someone in the pool picks up the ball.\", \" There are several people swimming in the pool.\", \" One person grabs the other person and pulls him under the water.\"]}, \"v_K_IqYFJKIgk\": {\"duration\": 233.2, \"timestamps\": [[0, 47.81], [55.97, 164.41], [142.25, 223.87]], \"sentences\": [\"A man is seen smoking a cigarette and looking off into the distance followed by another person smoking.\", \" A man is seen speaking to the camera while more clips are shown of people smoking.\", \" Another woman is seen speaking to the camera while more people smoke.\"]}, \"v_RZogaNvPuNs\": {\"duration\": 211.84, \"timestamps\": [[4.24, 76.26], [54.02, 149.34], [148.29, 202.3]], \"sentences\": [\"A young child is seen speaking to the camera holding a tin of lemonade and holding up a large jug.\", \" She then shows how to make the lemonade by scooping out of the can and mixing with water.\", \" She then pours it into a glass while speaking to the camera and puts a straw in to drink.\"]}, \"v_Hj3kEemIPic\": {\"duration\": 196.26, \"timestamps\": [[0, 18.64], [18.64, 125.6], [127.57, 196.26]], \"sentences\": [\"A close up of a car is shown with a man walking into frame holding a scraper.\", \" The man then begins using the tool all long the car scraping snow off.\", \" He continues to push snow off the car and showing his movements from several angles.\"]}, \"v_2AQg1DDVYHI\": {\"duration\": 192.77, \"timestamps\": [[13.49, 192.77], [39.52, 47.23], [96.39, 106.03]], \"sentences\": [\"People are walking on stilts on mats.\", \" A man jumps over a bar in stilts.\", \" People are sitting on the floor watching.\"]}, \"v_B5Ea3Bs8hC4\": {\"duration\": 73.52, \"timestamps\": [[0, 1.1], [1.1, 51.09], [51.09, 73.52]], \"sentences\": [\"This man is sitting in a chair outdoors in his yard and he is washing the black shirt in the bucket.\", \" There's also 3 other buckets that have clothes in them and there are 2 other people outside.\", \" This video has no audio by the way and when the man is done, he stops to say a few words and the camera cuts off.\"]}, \"v_S5bjFaZUnOM\": {\"duration\": 119.72, \"timestamps\": [[0, 7.18], [10.18, 44.3], [45.49, 56.27], [63.45, 103.56], [106.55, 119.72]], \"sentences\": [\"An image of a wild cat appears on the screen.\", \" Men are shown inside a gym in fencing gear.\", \" They take turns training, and fencing with each other.\", \" Women shake hands between matches, before facing another opponent.\", \" A man speaks to the camera with the fencers behind him before cutting back to the image of the wild cat.\"]}, \"v_4W4mrswC2tA\": {\"duration\": 16.5, \"timestamps\": [[0.33, 6.77], [4.37, 16.5]], \"sentences\": [\"A young lady in purple shirt is squatting to pick up the barbel, the barbel has green and red metal plates on it.\", \" Then the young girl picked up the barbel, pause on her chest then pushed it all up, then let it go.\"]}, \"v_UqSjGwxBuqA\": {\"duration\": 204.24, \"timestamps\": [[0, 57.19], [59.23, 151.14], [149.1, 204.24]], \"sentences\": [\"Various clips are shown of people putting bikes together as well as kids riding bikes and laughing with one another.\", \" Several clips are shown of people riding their bikes along a track with one falling and others clapping while he gets up.\", \" More clips are shown of people riding around on bicycles and a man speaking into a microphone to the camera.\"]}, \"v_mYfo8LhPB5Y\": {\"duration\": 81.34, \"timestamps\": [[0, 81.34], [0, 7.73], [69.14, 81.34]], \"sentences\": [\"man is laying on the floor playing the accordion.\", \" a car is parked a fw meters after the guy.\", \" a table with ingredients on top are shown.\"]}, \"v_5Y1AJsAE9UE\": {\"duration\": 200.32, \"timestamps\": [[0, 36.06], [36.06, 116.19], [116.19, 200.32]], \"sentences\": [\"An empty room of spin bikes are shown and a woman appears in the corner talking.\", \"While talking,she begins touching a machine,lifting its seat and talking about it specific functions.\", \"She finally gets n the bike and begins working out,while talking and adjusting the machine.\"]}, \"v_cCqjsuJa2vk\": {\"duration\": 49.92, \"timestamps\": [[0, 49.92], [12.98, 49.92], [35.69, 37.19]], \"sentences\": [\"A woman is dancing on a hardwood floor holding a baton.\", \" She starts twirling the baton.\", \"She does a cart wheel during her routine.\"]}, \"v_oFc4uYTxEqs\": {\"duration\": 214.62, \"timestamps\": [[0, 214.62], [0, 198.53], [0, 208.18], [195.31, 214.62], [203.89, 214.62]], \"sentences\": [\"A group of people sits around a large dance floor.\", \" A man and a woman walk onto the dance floor and dance.\", \" A band on stage plays.\", \" They finish the dance and the crowd claps.\", \" One person in the audience gets up and walks to the couple.\"]}, \"v_CN01Gm2Yc4k\": {\"duration\": 17.56, \"timestamps\": [[0, 6.23], [6.5, 17.56]], \"sentences\": [\"A female is shown straddling a punching bag and doing sit-ups with it.\", \" She does quite a few reps before the video cuts out.\"]}, \"v_J76bFZWXHFY\": {\"duration\": 195.4, \"timestamps\": [[0, 47.87], [54.71, 130.92], [105.51, 187.58]], \"sentences\": [\"A person is seen attached to a rope and climbing up the side of a wall.\", \" Several more people are seen climbing up the wall as well as a lizard and other wildlife around them.\", \" More people are seen climbing up the wall and ends with pictures of children swimming.\"]}, \"v_dFsFL_WJasg\": {\"duration\": 23.27, \"timestamps\": [[3.96, 4.77], [0, 23.27], [10.35, 16.52]], \"sentences\": [\"The person that is leading two camels turns around.\", \" The camels are carrying people.\", \" The camel in the back comes halfway alongside the front camel.\"]}, \"v_je5KvCND9xo\": {\"duration\": 189.52, \"timestamps\": [[0, 5.69], [11.37, 49.28], [54.01, 189.52]], \"sentences\": [\"A sign says Accent Help on the screen.\", \" A man is on the floor, talking.\", \" He does several sit ups, then he sits more upright, continuing to talk.\"]}, \"v_J8pZtBhpqMI\": {\"duration\": 81.55, \"timestamps\": [[0, 19.57], [19.57, 30.58], [30.99, 46.89]], \"sentences\": [\"A child is crossing the monkey bars on a playground.\", \" He gets to the end and stands on the ladder.\", \" He then goes back across them the other direction.\"]}, \"v_g-rw2Kyh9xo\": {\"duration\": 238.95, \"timestamps\": [[0, 28.67], [28.67, 204.3], [232.97, 238.95]], \"sentences\": [\"A man wearing a harness jumps into a swimming pool.\", \" He stands up and wind surfs in the water.\", \" He gets out of the swimming pool.\"]}, \"v_N6ERAg1EKcc\": {\"duration\": 24.31, \"timestamps\": [[0, 9.48], [8.63, 11.67], [11.55, 24.31]], \"sentences\": [\"A man helps a small boy hit a pinata with a green bat.\", \" The girl in the background does a little dance as she waits her turn.\", \"The small boy walks off and the man holds the bat and the blindfold.\"]}, \"v_8cbHNUbu3Tk\": {\"duration\": 76.65, \"timestamps\": [[0, 76.65], [0, 59.79], [59.79, 76.65]], \"sentences\": [\"A woman is dancing on a court.\", \" She is throwing several batons in the air.\", \" She drops the batons and does flips on the ground.\"]}, \"v_bc-DycGxV9E\": {\"duration\": 64.69, \"timestamps\": [[0, 31.7], [34.93, 39.78], [40.43, 56.28], [54.66, 58.87], [60.49, 64.69]], \"sentences\": [\"A man is holding a little kids hand helping them to the slide.\", \" The kids goes down the slide.\", \" The kid tries climbing up the slide.\", \" The man picks the kid up and sets them on top of the slide again.\", \" The kid slides down the slide.\"]}, \"v_bUfhRJjHNoU\": {\"duration\": 192.15, \"timestamps\": [[2.88, 5.76], [10.57, 179.66], [180.62, 184.46]], \"sentences\": [\"A guy approaches a yellow, police tape.\", \" The guy tries to get both feet on the tape and walk on it.\", \" The guy falls on all fours and gets up.\"]}, \"v_rNb4Jz_t9F4\": {\"duration\": 149.79, \"timestamps\": [[2.25, 44.94], [37.45, 144.55]], \"sentences\": [\"A woman is seen onto a pole while riding beside a boat and standing on a ski.\", \" The woman continues riding along the water while looking to the camera and slowing down to stop in the end.\"]}, \"v_tMTvOaUYNeg\": {\"duration\": 23.96, \"timestamps\": [[0.24, 23.36], [3.47, 8.63], [9.35, 23.72]], \"sentences\": [\"One adult and two small children work together to put leaves on a yard into a paper bag.\", \"  One adult stands with two children on a lawn amidst many leaves with a black truck in the background.\", \"  The boy puts leaves in the brown bag and the girl picks the leaves up.\"]}, \"v_hDb19ih3jAA\": {\"duration\": 36.41, \"timestamps\": [[0, 4.19], [4.37, 18.02], [20.02, 36.41]], \"sentences\": [\"A man is inline skating toward a building through a crowd.\", \" He stops and adjust a stand in the middle of the sidewalk.\", \" He then jumps it on his skates before being seen in several scenes, doing stunts and going down steps.\"]}, \"v_W_hux-Z6Ll0\": {\"duration\": 155.67000000000002, \"timestamps\": [[0, 9.34], [9.34, 34.25], [34.25, 132.32], [132.32, 133.87], [133.87, 155.67]], \"sentences\": [\"people are standing in a snow ramp.\", \" man is going down a snowy ramp in a competition while people is around the ramp.\", \" people are doing high jumps going down the slope in competitions.\", \" people in stands are clapping.\", \" men are hugging each other standing on snow.\"]}, \"v_9KPRS9y8Fvo\": {\"duration\": 86.52, \"timestamps\": [[0, 10.38], [13.41, 32.88], [33.31, 75.27], [77, 86.52]], \"sentences\": [\"A man sits and swings on a playground swing next to a baby.\", \" The baby laughs as he swings back and forth.\", \" His mother appears, swinging him and smiling.\", \" The baby is smiling broadly at the camera.\"]}, \"v_GAqzjkkb98Q\": {\"duration\": 71.52, \"timestamps\": [[0, 9.3], [9.65, 71.52]], \"sentences\": [\"A person riding a horse chases after a bull.\", \" The person lassoes the bull, get off his horse, ties its legs, and another person goes to the tied up bull.\"]}, \"v_dZZE8HI0OBE\": {\"duration\": 13.17, \"timestamps\": [[0, 13.17], [0, 1.45], [1.51, 11.98]], \"sentences\": [\"We see a lady looking in the camera.\", \" We see a person on the right in a blue shirt.\", \"The lady puts eye shadow on her eyes.\"]}, \"v_cW2R4AuUnK8\": {\"duration\": 193.14, \"timestamps\": [[4.83, 177.69], [68.57, 182.52]], \"sentences\": [\"A group of people are seen riding on a raft down a rough river while paddling.\", \" Several shots of the people rowing are shown as well as riding down the river and waving to the camera.\"]}, \"v_3MJQEQ98168\": {\"duration\": 24.1, \"timestamps\": [[0, 1.21], [1.21, 17.84], [17.84, 24.1]], \"sentences\": [\"little kid is standing in a playground with he feet on the stairs.\", \"kid is hanging from horizontal stairs on the playground.\", \" the kid stands at the edge of the stairs in the playground.\"]}, \"v_R9qRR8CcSJA\": {\"duration\": 70.06, \"timestamps\": [[0, 70.06], [0, 69], [11.56, 69]], \"sentences\": [\"Two people stand outside near a window.\", \"  A man talks to the camera.\", \"  The woman is cleaning the window while the man talks.\"]}, \"v_DinaQYSgbtg\": {\"duration\": 56.77, \"timestamps\": [[3.97, 25.83], [25.83, 46.55], [46.55, 56.21]], \"sentences\": [\"A toddler washes dishes in a sink while stand on a chair.\", \" The boy washes a cup, a sip cup and a dish.\", \" After, the boy jumps on the chair and then takes the dish again.\"]}, \"v_sxQ9H3c5bRM\": {\"duration\": 129.71, \"timestamps\": [[0, 27.24], [27.89, 119.98], [82.36, 92.74], [117.38, 118.68], [118.68, 123.87], [125.17, 129.71]], \"sentences\": [\"We see an opening title screen.\", \" We see a lady leading an aerobics class.\", \" The class stands over the step and dances.\", \" The class finishes and grows their arms in the air.\", \" We see the teacher posing on a punching bag.\", \" We then see an ending title screen.\"]}, \"v_kPnqo24kemc\": {\"duration\": 109.92, \"timestamps\": [[0, 109.92], [29.68, 98.93]], \"sentences\": [\"A kneeling man talks to the camera.\", \" The man demonstrates exercise or yoga poses while talking to the camera.\"]}, \"v_VLjfzOpn-AQ\": {\"duration\": 167.14, \"timestamps\": [[0, 9.19], [11.7, 31.76], [32.59, 63.51], [66.02, 167.14]], \"sentences\": [\"An angry cartoon dog is shown.\", \" Several people are gathered on the side of a road, putting on water rafting gear.\", \" They push their kayaks into a river.\", \" The group goes down stream, then are shown walking a path toward the water again.\"]}, \"v_c-zbA4zixfE\": {\"duration\": 140.18, \"timestamps\": [[0, 9.11], [9.11, 33.64], [33.64, 51.87], [51.87, 65.88], [65.18, 87.61], [87.61, 140.18]], \"sentences\": [\"A young boy removes the blue darts off of an orange dart board on a wall.\", \" The young boy is tossing blue darts at the dart board.\", \"The young boy reaches up to remove the blue darts.\", \" The boy throws the blue darts at the dart board.\", \" The boy jumps up and removes the blue darts from the dart board.\", \"The boy throws the blue darts at the dart board.\"]}, \"v_PVed6JEd3ZM\": {\"duration\": 38.62, \"timestamps\": [[0, 19.31], [19.31, 38.62]], \"sentences\": [\"A man is seen climbing a set of monkey bars back and fourth on a bar.\", \" He climbs all the way to the end and jumps down.\"]}, \"v_YTdLk7Nsn_k\": {\"duration\": 120.16, \"timestamps\": [[20.43, 38.45], [40.25, 53.47], [53.47, 61.88], [97.33, 100.94], [78.71, 93.73]], \"sentences\": [\"A man stands in a shop holding a specialized wrench before starting a job.\", \" The man uses a screw driver to pry the pedal cranks of a bicycle.\", \" The man uses a ratchet to remove the bolt on the bicycle crank from the chain gear.\", \" The man holds the gear in his hand and uses the wrench on it.\", \" The man removes the gear with the specialized tool.\"]}, \"v_74AJ-1e1qGA\": {\"duration\": 10.71, \"timestamps\": [[0, 0.8], [0.86, 2.36], [2.52, 7.76], [7.76, 10.71]], \"sentences\": [\"Two young men are standing around next to a swimming pool.\", \" A man reached for an item in the pool, and tosses the item at someone in the pool who is not shown in the picture.\", \" The two men then begin poolside horseplay, one of them throwing the other one into the pool.\", \" The man who was thrown into the pool comes up for air.\"]}, \"v_ReKUs0km4X8\": {\"duration\": 132.82, \"timestamps\": [[0, 6.64], [7.31, 19.92], [21.92, 45.82], [47.15, 87.66], [92.31, 132.82]], \"sentences\": [\"An advertisement for the sacramento bee appears.\", \" A little girl waves an american flag, before an arm is shown holding a ball.\", \" A group of burly men stand around waiting for a game to start.\", \" The crowd claps and cheers, as the players warm up.\", \" The people are getting very pumped, and a man screams and pumps his fists.\"]}, \"v_cY3QbnSeu9k\": {\"duration\": 197.07, \"timestamps\": [[2.96, 189.19], [18.72, 81.78], [81.78, 189.19]], \"sentences\": [\"A man, wearing snow goggles, a winter hat and jacket, talks to the camera while filming himself snow boarding down a snow covered ski slope.\", \"  The man snowboards down a slope using one of his free hands to film himself as he passes other skiers using ski poles to ski, snow covered foliage and landscape.\", \"  The man's black shadow is visible across the snow as he snowboards and films himself giving one last shot of his face talking before the scene ends.\"]}, \"v_iMATWwGyAUM\": {\"duration\": 178.1, \"timestamps\": [[0, 16.92], [21.37, 37.4], [42.74, 104.19], [130.9, 178.1]], \"sentences\": [\"Several views are scene of multiple people skiing down slopes.\", \" Advertisements for different companies appear over backgrounds of snow covered mountains.\", \" We return to skiers going down hills, and a man who stops to talk to the camera for an extensive period before skiing more.\", \" He stops and talks again, before the skiing scenes replay.\"]}, \"v_ndJqptBTxAY\": {\"duration\": 108.81, \"timestamps\": [[0, 5.44], [5.44, 8.7], [9.79, 36.45], [37.54, 50.6], [50.05, 81.06], [82.15, 104.46]], \"sentences\": [\"A customized truck backs into a parking spot.\", \" A man hoses of the hood of his car.\", \" The person kneels next to his car and shows cleaning products.\", \" The man shakes up the product before applying it to a sponge.\", \" The man waxes down the door of the car with the product.\", \" The man drives by in a convertible and pretends to read the time before driving down the street.\"]}, \"v_jkaevzzYdP8\": {\"duration\": 223.45, \"timestamps\": [[10.06, 222.33], [10.06, 26.81], [35.75, 68.15], [69.27, 221.21]], \"sentences\": [\"One man in a park setting interviews another man in the same park setting who is walking three dogs.\", \"  A man in a brown vest is walking in the park and talking into a microphone in a park setting.\", \"  A man waking four dogs is interviewed by the the man with the microphone who points the microphone toward the man with the dogs when the man with the dogs needs to speak.\", \"  The dogs chase each other and run back to the owner while the interview takes place before the owner ends by kneeling down beside the dogs.\"]}, \"v_62Dwj4l7_qs\": {\"duration\": 178.72, \"timestamps\": [[2.68, 55.4], [35.74, 134.94], [134.04, 170.68]], \"sentences\": [\"A large group of people are seen sitting around a gym with many seen on the side lifting weights over their heads.\", \" More and more people continuously lift weights above their shoulders and heads while a man coaches them on the side.\", \" Several people are seen in the end performing stretches and looking around with one man helping another in the end.\"]}, \"v_j18sB8o2IQw\": {\"duration\": 15.09, \"timestamps\": [[0, 7.55], [8.38, 15.09]], \"sentences\": [\"The video begins with several shots of divers jumping from a large distance and into the pool.\", \" More people are seen jumping and leads into a video still on a person jumping and text being shown.\"]}, \"v_FOm0uKw7dXc\": {\"duration\": 203.76, \"timestamps\": [[3.06, 116.14], [87.62, 192.55]], \"sentences\": [\"Two people are seen standing when the man walks over and begins dancing with the woman.\", \" The couple perform a routine on the stage moving each other all around and ends with them standing together.\"]}, \"v_hzuQYOG0a_g\": {\"duration\": 7.85, \"timestamps\": [[0, 3.73], [2.83, 6.08], [5.1, 7.81]], \"sentences\": [\"A man is pulled on a rope on a one man kayak.\", \" The man hits a wake and is tossed through the air before landing back in the water in a splash.\", \" The man recovers and paddle with his hands.\"]}, \"v_ZXlJIrRiXrA\": {\"duration\": 78.41, \"timestamps\": [[0, 10.19], [10.19, 35.29], [35.68, 63.12], [63.52, 78.41]], \"sentences\": [\"A nice show is a snowy landscape is shown with a campsite right along the tree line.\", \" A man is pulling something up from a hole in the snow as he appears to be fishing.\", \" He continues pulling a long rope up from the hole until finally, a large fish is revealed at the end of it.\", \" He picks it up to show off to the camera.\"]}, \"v_xAoQ6JisbhI\": {\"duration\": 60.16, \"timestamps\": [[0, 60.16], [13.84, 53.55], [8.12, 60.16]], \"sentences\": [\"A man is sitting behind a desk.\", \" He completes a rubiks cube.\", \" A man in a red shirt is standing next to him.\"]}, \"v_41LaEr0i2Dc\": {\"duration\": 176.18, \"timestamps\": [[0, 24.67], [36.12, 71.35], [89.85, 176.18]], \"sentences\": [\"A view is shown of a vast and long canyon.\", \" Boats are seen floating on the water.\", \" We then see people on the boat, and pulling people on water skis.\"]}, \"v_xKLnBh0zmL4\": {\"duration\": 100.45, \"timestamps\": [[0, 9.54], [10.55, 45.2], [46.21, 87.39], [88.4, 100.45]], \"sentences\": [\"A gymnast mounts a high beam in a gym.\", \" He turns and flips forward and backward on the beams.\", \" He performs forward and hand springs.\", \" He then dismounts, raising his arms into the air.\"]}, \"v_Qu-Y2u1Xn_U\": {\"duration\": 216.71, \"timestamps\": [[0, 18.42], [28.17, 105.11], [106.19, 196.12], [197.21, 216.71]], \"sentences\": [\"A view of a spring day in a wooded area by a lake is shown.\", \" Several people carry intertubes into the river, climbing on them.\", \" They ride the intertubes down the waves of the river and over small waterfalls.\", \" They ride under a bridge, then float in the water.\"]}, \"v_KBG7wrKsZAI\": {\"duration\": 181.26, \"timestamps\": [[3.63, 178.54], [69.78, 167.66]], \"sentences\": [\"A woman in white kimono is doing a karate moves with is sempai, she is standing on the side of the carpeted room.\", \" The sempai go close to her to teach her the proper moves, and attack her lightly, she in return counter attack by moving forward while kicking.\"]}, \"v_PjNF7HoQ6yY\": {\"duration\": 97.59, \"timestamps\": [[0.49, 26.84], [24.4, 77.59], [70.76, 96.13]], \"sentences\": [\"A man is seen standing before a bowling lane and throwing a ball down the lane.\", \" He looks back and shakes his fist while throwing several more balls.\", \" He continues to throw the balls down the lane while clenching his fist afterwards.\"]}, \"v_1y2aqd5HQlU\": {\"duration\": 60.19, \"timestamps\": [[0, 4.21], [6.32, 18.06], [18.66, 53.57], [54.17, 60.19]], \"sentences\": [\"A close up is shown of a small carved pumpkin.\", \" We then see a man and woman in a group of the pumpkins talking.\", \" They demonstrate how to pick a proper carving pumpkin, then drawing on the face.\", \" They remove the seeds, and use a special tool for carving the face.\"]}, \"v_Ja8QImLWYII\": {\"duration\": 91.07, \"timestamps\": [[0, 11.84], [25.95, 91.07]], \"sentences\": [\"A video about auto maintenance is shown.\", \"  Cars are cleaned and advice is given to detail one's car.\"]}, \"v_uKzelWWaYB4\": {\"duration\": 83.64, \"timestamps\": [[0, 8.78], [18.82, 28.86], [40.56, 70.67], [78.62, 83.64]], \"sentences\": [\"A child climbs up the wall of playground equipment.\", \" The girl slides down a spiral slide on the playground.\", \" The boy swings across a track hanging from a ring on the playground.\", \" The child slides down a double sided slide.\"]}, \"v_N5XBi-uPkAU\": {\"duration\": 12.38, \"timestamps\": [[0.06, 6.19], [6, 12.07]], \"sentences\": [\"Two wrestlers are seen facing one another and lead into two more lifting up a wrestler.\", \" The men then throw him down on a table and cheer with one another.\"]}, \"v_vGKdr_au240\": {\"duration\": 39.1, \"timestamps\": [[5.87, 12.32], [12.12, 20.72], [21.31, 28.15], [12.71, 30.7], [31.48, 34.8]], \"sentences\": [\"A woman puts on some lipstick while wearing a bikini.\", \"  She slides across a floor with some curling equipment.\", \"  This is followed by two men in Speedos using their curling equipment.\", \"  Even with bikinis involved, curling is still boring.\", \"  Next these same two men, still in Speedos and sneakers are seen playing catch with a beach ball on the same slick floor.\"]}, \"v_YlK_P4Ys6hE\": {\"duration\": 116.1, \"timestamps\": [[0, 15.67], [15.67, 116.1], [67.92, 70.24]], \"sentences\": [\"A person is sitting in the snow putting a helmet on.\", \" They begin snowboarding down a hill of snow.\", \" People are sitting on a ski lift and riding up the mountain.\"]}, \"v_1cWWCiNIYnc\": {\"duration\": 20.09, \"timestamps\": [[0, 14.16], [14.86, 17.47], [17.58, 20.09]], \"sentences\": [\"A man shaves his white lathered face with a hand held shaver.\", \" The man get up close to the mirror and gets a close up image.\", \" The man places the shaver up against the mirror then continues to shave.\"]}, \"v_Fyi7pbkKk7w\": {\"duration\": 145.57, \"timestamps\": [[8.01, 109.17], [26.2, 109.17]], \"sentences\": [\"The man is taking wooden logs out of the black rubber tire.\", \" He is also chopping the wood logs in half and pulling them out of the tire.\"]}, \"v_1VSqWp5DZiU\": {\"duration\": 209.49, \"timestamps\": [[0, 29.33], [50.28, 136.17], [143.5, 209.49]], \"sentences\": [\"A man and woman are standing together on an outdoor patio.\", \" They begin dancing in unison, doing several moves.\", \" They continue dancing as a small group watches.\"]}, \"v_c_DQ7Y8ZRBQ\": {\"duration\": 122.0, \"timestamps\": [[14.64, 29.28], [30.5, 46.97], [49.41, 76.25], [78.69, 84.18], [84.79, 114.07], [116.51, 118.95]], \"sentences\": [\"People sit in the waiting room of a salon.\", \" A girl sits down in the barbers chair for a hair cut.\", \" The girl has her pigtail gut off by the stylist and shown to her.\", \" The girl has her hair washed in a sink.\", \" The hair stylist trims the person's hair.\", \" The stylist style the hair with her hands before she is done.\"]}, \"v_qNxLTF4Q6yk\": {\"duration\": 229.55, \"timestamps\": [[0, 229.55], [0, 228.41], [8.03, 229.55]], \"sentences\": [\"a man is sitting on a chair in front of a store playing a guitar like a drum while people is walking in front of him .\", \" a couple are talking in front of the store and drinking water.\", \" a woman wearing a white dress is watching the guitarrist.\"]}, \"v_hXSee4C6pyE\": {\"duration\": 75.02, \"timestamps\": [[0, 41.26], [41.26, 75.02]], \"sentences\": [\"A person is putting a chain onto a bicycle.\", \" They connect the two pieces of the chain with a tool.\"]}, \"v_Uc0Z2tuIJVA\": {\"duration\": 90.35, \"timestamps\": [[0, 26.2], [18.07, 48.79], [53.76, 80.86]], \"sentences\": [\"A large beer pong table is shown with cups laid out and people playing.\", \" Many clips are shown of people playing beer pong as well as speaking to the camera.\", \" People watch and celebrate on the sides while people continue to play and speak to the camera.\"]}, \"v_PZ1FVhgTRWU\": {\"duration\": 91.42, \"timestamps\": [[0, 5.94], [5.03, 85.02], [86.85, 91.42]], \"sentences\": [\"A girl jumps onto a balance beam.\", \" She does a gymnastics routine on the balance beam.\", \" She does a flip off the balance beam and lands on a mat.\"]}, \"v_iFJaqDgYsp0\": {\"duration\": 88.89, \"timestamps\": [[0, 19.11], [22.22, 25.33], [26.22, 29.33], [30.67, 78.66], [81.78, 84], [84.44, 88.89]], \"sentences\": [\"A man walks to a barbell and grips the handle.\", \" The man  then lifts the weight over his head and stands up.\", \" The man drops the weight, pumps his fist, and walks off.\", \" The man  returns and lifts the weight to his shoulders then over his head.\", \" The man  drops the weight and laughs and pumps his fist.\", \" The man then walks off camera.\"]}, \"v_jQR4Hhaf8o8\": {\"duration\": 231.9, \"timestamps\": [[0, 78.85], [40.58, 194.8], [158.85, 231.9]], \"sentences\": [\"A large group of people are seen sitting in an auditorium while several people speak to the camera.\", \" A group of guys perform a dancing routine in the middle of the gym while others clap and applaud them.\", \" The men continue dancing and end with everyone falling down except one and then standing back up.\"]}, \"v_SaG9e90z1j8\": {\"duration\": 99.99000000000001, \"timestamps\": [[0, 10.5], [10.5, 52.49], [52.49, 88.99], [88.99, 93.49], [93.49, 99.99]], \"sentences\": [\"A white screen appears with colorful special effects that include a child's face a flying blue butterfly and colorful words that read \\\"HEALTHY CHILD HEALTHY WORLD healthychild\\\", another white screen appears with the words \\\"Healthy Child TV Healthy Bytes\\\".\", \"A woman is now standing in a kitchen, words on the screen say her name is Jennifer Taggart and she's an Eductional Program Specialist, and she's talking the whole time while demonstrating on how to measure ingredients and then she pours them into a clear glass bottle through a funnel.\", \" The woman removes the funnel and picks up a small bottle of essential oils and puts drops into the mixture in the clear glass bottle, puts the cover onto the bottle with the ingredients in it and begins mixing it by twisting her wrist as the liquid swirls on the inside.\", \" The woman now has a white rag in her hand and a close up of her wiping a black surface is shown.\", \" White screens appear and they include the website to visit for more helpful tips, and credits to the makers of the video.\"]}, \"v_jkay2K3RA1M\": {\"duration\": 10.68, \"timestamps\": [[0, 2.46], [2.62, 7.64], [7.96, 10.68]], \"sentences\": [\"A stuffed toy is held up for the camera.\", \" Then we see a girl painting her nails with clear fluid.\", \" She is resting her hand on top of a dvd case.\"]}, \"v_BRuansCVV3U\": {\"duration\": 123.35, \"timestamps\": [[0, 61.67], [60.44, 123.35]], \"sentences\": [\"A man is seen bowing before a large group of people and performing a martial arts routine on a large stage.\", \" The man continues moving his arms and legs around and ends with him bowing to the audience.\"]}, \"v_i2dFL7sGf9c\": {\"duration\": 8.45, \"timestamps\": [[0, 3.25], [2.66, 8.45]], \"sentences\": [\"Two men are seen grabbing onto one another while another person watches from behind.\", \" One an then grabs the other up over his head and flips him down on the ground.\"]}, \"v_W50sQxSWDwM\": {\"duration\": 116.28999999999999, \"timestamps\": [[0.58, 16.86], [8.14, 50.58], [48.84, 106.4]], \"sentences\": [\"The lady in blue vest and brown jacket is sitting on a brown horse, while a man is standing beside the horse, holding another horse.\", \" The lady looked frightened and cried, while the other lady is laughing.\", \" Another lady mounted a brown horse, both ladies started to ride the horse and ride through a circle with white fence.\"]}, \"v_T_q3f10pkOg\": {\"duration\": 142.71, \"timestamps\": [[0, 7.85], [6.42, 104.18], [69.21, 142.71]], \"sentences\": [\"The man threw the ball to the other player.\", \" As the players throw the ball to the goal, the goalkeeper blocked the ball.\", \" The players swim and chase the yellow ball the throw to the goal.\"]}, \"v_ybAEMliC7p4\": {\"duration\": 18.41, \"timestamps\": [[0, 14.27], [14.09, 18.05]], \"sentences\": [\"A man is sitting down behind a desk with a clock on it doing a rubiks cube.\", \" He completes it and smiles as he sets it down.\"]}, \"v_41__Qick6tM\": {\"duration\": 195.7, \"timestamps\": [[0.98, 3.91], [4.89, 7.83], [9.78, 16.63], [17.61, 147.75], [129.16, 143.84], [143.84, 161.45], [163.41, 188.85], [189.83, 193.74]], \"sentences\": [\"The credits of the clip are shown.\", \" A lady sits and does a 360 turn to show off her braid.\", \" The lady presents a product with her hair un-braided.\", \" The lady instructs and then quietly braids her hair.\", \" The speed of the video is increased so the lady quickly braids.\", \" The speed of the video is reset to normal and the lady puts a rubber band at the end of the braid.\", \" The lady runs her hands through her braid.\", \" The credits of the video are shown with clip.\"]}, \"v_7x_1tRem1gA\": {\"duration\": 58.72, \"timestamps\": [[0, 44.04], [16.44, 41.11], [52.85, 58.72]], \"sentences\": [\"People are trying to get across a body of water via monkey bars.\", \"  People in the background run across the water.\", \"  Two men finish and then start climbing dirt.\"]}, \"v_4WikrzXQ3Bo\": {\"duration\": 75.05, \"timestamps\": [[0, 20.64], [17.64, 55.91], [54.03, 72.8]], \"sentences\": [\"Two people are seen standing in the middle of a gymnasium holing jump ropes in their hands.\", \" The two then begin performing a routine on the stage while using the jump ropes.\", \" The two continue to move around one another and end by holding a pose.\"]}, \"v_hmPeCPjaxAM\": {\"duration\": 150.26, \"timestamps\": [[0, 150.26], [48.83, 51.84], [58.6, 63.11]], \"sentences\": [\"Two people are playing shuffleboard on a deck.\", \" A woman in a blue shirt raises her hands above her head.\", \" A group of people passes by them.\"]}, \"v_44FeihJUKvM\": {\"duration\": 59.1, \"timestamps\": [[0, 55.25], [55.25, 59.1]], \"sentences\": [\"A cat is dipping its paw into a mug and licking it off.\", \" The cat starts drinking directly from the mug.\"]}, \"v_LB9-RIKxk6E\": {\"duration\": 158.9, \"timestamps\": [[0, 28.6], [28.6, 34.96], [34.96, 158.9]], \"sentences\": [\"A woman in a red shirt is sitting down talking.\", \" A picture of an older man is shown on the screen.\", \" A man and a woman are sitting at the table talking.\"]}, \"v_J2gJYNO2qh8\": {\"duration\": 139.27, \"timestamps\": [[4.18, 22.28], [21.59, 53.62], [42.48, 67.55], [62.67, 107.94], [88.44, 135.79]], \"sentences\": [\"Blocks of butter is shown, then a person in white apron put block of white solid mixtures in a giant mixer, then a lady in white shirt and black cap is shown holding a bottle with red lid on it.\", \" While the mixture is mixing, the lady pour water from a metal container, then a brown liquid, then the mixture turned into yellow, then the lady had the mixture in a giant white plastic container.\", \" An 8-wheeler truck is parked in a building with blue, big, triangle roof.\", \" Women and a placed the cupcakes on big trays on top of the table, and added white frosting on top of it.\", \" The ladies put the designs, lettering on the cupcakes, then there is a photo shoot, then the people started eating the cupcakes.\"]}, \"v_Jx4GCjGARqs\": {\"duration\": 59.12, \"timestamps\": [[5.91, 9.46], [9.46, 20.69], [9.46, 58.23]], \"sentences\": [\"A man holds a ball attached to a chain.\", \" He spins around and throws it onto the field.\", \" People are standing on the field watching.\"]}, \"v_90SltIDizo8\": {\"duration\": 82.35, \"timestamps\": [[0, 11.94], [11.94, 18.12], [18.12, 82.35]], \"sentences\": [\"A man is kneeling down holding a kettle bell.\", \" Another man comes up and takes the kettle bell.\", \" He gives it back to the man kneeling down and he begins to work out with it.\"]}, \"v_kQ7ensWEW08\": {\"duration\": 122.02, \"timestamps\": [[0, 64.06], [64.06, 121.41]], \"sentences\": [\"A man is sewing a garment with a wool in a needle.\", \" The man pass the needle in the garment, and then pull the thread to join the pieces.\"]}, \"v_xevpFDYTJ0U\": {\"duration\": 29.21, \"timestamps\": [[0, 29.21], [0, 28.92], [0.88, 28.92]], \"sentences\": [\"people are in a roofed gym walking.\", \" little kid is doing gymnastics and its hanging from a tube.\", \" man is kneling on the floor recording the girl.\"]}, \"v_smh90DBXsBg\": {\"duration\": 129.2, \"timestamps\": [[0, 129.2], [80.1, 85.92], [119.51, 124.67]], \"sentences\": [\"We see a lady sitting in a chair in a tattoo parlor as the tattoo artist is behind her working on her shoulder.\", \" We see the design briefly.\", \" We pan down and see a lady's feet.\"]}, \"v_ss6XN-JP_x8\": {\"duration\": 214.37, \"timestamps\": [[0, 5.36], [6.43, 10.72], [11.79, 57.88], [57.88, 65.38], [73.96, 98.61], [99.68, 122.19], [123.26, 153.27], [153.27, 170.42], [176.85, 207.94], [209.01, 214.37]], \"sentences\": [\"We see a black opening screen.\", \" We see an image of a motorcycle.\", \" We see a lady shaping a cake like a motorcycle.\", \" We see the crumb coat on the cake.\", \" We see detail being added to the bike.\", \" We see the wheel being made for the bike.\", \" The brakes are made then handle bars.\", \" We see the lady painting the tire.\", \" We then see the finished cake bike.\", \" We see the credits and the end screen.\"]}, \"v_-F7QWQA8Eh8\": {\"duration\": 104.31, \"timestamps\": [[0, 6.78], [8.34, 16.69], [18.25, 30.25], [34.94, 104.31]], \"sentences\": [\"A large chandelier sparkles over a stage.\", \" People in black clothing appear, backs turned.\", \" A woman lifts a crown, then the man starts dancing.\", \" She joins him, and they dance exuberantly for the crowd.\"]}, \"v_mkK9iEzRrqQ\": {\"duration\": 17.51, \"timestamps\": [[0, 12.87], [13.04, 17.51], [14.09, 15.58]], \"sentences\": [\"Two team play hurling kicking the ball with a stick.\", \" A player with red shirt hit the ball to the goal.\", \" The goalkeeper tries to get the dics.\"]}, \"v_DkiJwIJQKaM\": {\"duration\": 106.91, \"timestamps\": [[0, 25.12], [25.66, 33.68], [34.74, 106.91]], \"sentences\": [\"person is holgding blue frisbees and is plying with a dog in a closed field, the doing tricks while is trying to catch the frisbee.\", \" the dog holds a frisbee on his mouth and starts running around the girl doing tricks.\", \" the dog stands on her feet and waits for her to throw the frisbees.\"]}, \"v_EbGq9gXcXLQ\": {\"duration\": 127.59, \"timestamps\": [[1.91, 51.68], [51.68, 104.63], [104.63, 127.59]], \"sentences\": [\"This man is beating on the congas using the palms of his hands and he also makes fists sometimes to make a deeper sound.\", \" He is sitting on a black stool and he is in between two microphones to record what is going on.\", \" In the end of the video, he slows down and stops playing the drums.\"]}, \"v_j7hSNqcWIO4\": {\"duration\": 116.84, \"timestamps\": [[0, 4.09], [4.67, 19.86], [19.86, 28.04], [28.04, 32.13], [32.13, 37.97], [37.39, 44.4], [44.4, 50.24], [50.24, 61.93], [61.93, 73.61], [73.03, 75.95], [75.95, 80.04], [80.62, 90.55], [90.55, 102.24], [102.82, 107.5], [107.5, 116.84]], \"sentences\": [\"A green screen says Pole Vault Bloopers.\", \"  A boy is running and misses the jump twice.\", \"  Another kid tries and stops without even jumping.\", \"  A screen says \\\"maybe next time\\\".\", \"  Another kid jumps and the bar falls down.\", \"  He jumps again and missed the jump.\", \"  A screen comes up that says \\\"Denied\\\".\", \"  The same kid tries again and misses again and the screen says \\\"Nope\\\".\", \"  Kid after kid try and keep missing over and over again.\", \"  The screen says \\\"Com on Jon let's try again\\\".\", \"  Jon tries and stops before jumping.\", \"  The screen says \\\"Anybody else hear that dog?\\\" Another kid tries and stops and the screen says \\\"Yo Jon is right that dog was mad loud\\\".\", \" A kid is trying again and the screen says \\\"Here you go Jon\\\".\", \" A kid jumps and almost makes it but the bar falls.\", \" Another kid tried and just missed.\"]}, \"v_wvFJbY3SmXI\": {\"duration\": 61.19, \"timestamps\": [[0, 61.19], [2.14, 61.19], [59.35, 61.19]], \"sentences\": [\"A man spins around and throws a ball onto the field several times.\", \" People in the stands are watching him.\", \" He stands on the field and watches the ball.\"]}, \"v_gwKy0W1xof4\": {\"duration\": 75.88, \"timestamps\": [[0, 70.57], [1.9, 26.56], [70.95, 72.47]], \"sentences\": [\"A man is playing the piano.\", \" A woman walks in front of the piano to watch the man play the piano.\", \" The woman applauds shyly after he finishes.\"]}, \"v_HuUIIKA3o_A\": {\"duration\": 193.59, \"timestamps\": [[0, 73.56], [80.34, 193.59]], \"sentences\": [\"A snowy scene is shown, and a man walks through the snow of a parking lot to his car.\", \" He wipes the snow off his car before getting in and driving away.\"]}, \"v_60Fyun_Szw4\": {\"duration\": 16.58, \"timestamps\": [[0, 7.54], [7.38, 16.58]], \"sentences\": [\"A man holds a disc and spins around in circles before throwing it behind him.\", \" He throws it one more time.\"]}, \"v_CuZpm0Il6YM\": {\"duration\": 18.18, \"timestamps\": [[0, 4.18], [4.18, 16.82], [16.91, 18.18]], \"sentences\": [\"A dog sits on a carpet on front a ladder.\", \" Then, the dog climbs the ladder of a bunk bed.\", \" The dog  reaches the top where there are two kids in the bed.\"]}, \"v_HGduo1zU6Ok\": {\"duration\": 216.23, \"timestamps\": [[18.38, 101.63], [84.33, 216.23]], \"sentences\": [\"The video leads into several clips of people hitting balls across a field using sticks towards goal.\", \" Several more clips are shown of the people hitting balls around and passing to one another.\"]}, \"v_aBdrTqSnWbw\": {\"duration\": 121.21, \"timestamps\": [[9.09, 15.76], [37.57, 41.82], [76.97, 82.42], [103.63, 112.12], [7.27, 117.57]], \"sentences\": [\"A person in military style clothing runs through a course and takes cover wooden logs stacked up.\", \" A person in military style clothing stands aiming his gun over a concrete wall before ducking behind it for cover.\", \" A man runs out from a house onto a grass field with a paintball gun.\", \" A man runs around a houses then dives behind a wall for cover.\", \" A man talks in a paintball shop behind the counter.\"]}, \"v_outMi06JZss\": {\"duration\": 68.92, \"timestamps\": [[0, 6.89], [7.24, 29.63], [29.98, 36.18], [36.53, 48.59], [48.59, 55.13], [55.82, 68.92]], \"sentences\": [\"Two men in camofluage are running at night.\", \" Suddenly, it is morning, and there are four men running in front of a truck filled with men as others watch.\", \" The men run into a building.\", \" We see the front of the building with flags and a memorial.\", \" One of the men looks as a device on his wrist.\", \" They walk away talking with their arms around each other.\"]}, \"v_nVHL9qP11aA\": {\"duration\": 231.99, \"timestamps\": [[9.28, 89.32], [63.8, 170.51], [176.31, 227.35]], \"sentences\": [\"Two people are seen speaking to one another and lead into a game of beer pong.\", \" The two throw the balls back and fourth while gesturing to others and one jumping on her friend.\", \" The game continues on with the man and woman throwing the ball and leads into the woman's friend throwing the ball.\"]}, \"v_vgdcVhRSa9E\": {\"duration\": 122.53, \"timestamps\": [[0, 12.87], [12.87, 85.77], [85.16, 122.53]], \"sentences\": [\"A young Asian male is standing in the bathroom recording himself with a camera in the mirror.\", \"The man then begins to move and two dogs are being washed with the help of a person inside the shower.\", \"The lady who is assisting him face is then shown and she continues to wash the pit bull and the man reappears and begins talking to the camera.\"]}, \"v_LA5UXJ_hVU4\": {\"duration\": 22.5, \"timestamps\": [[0, 5.29], [5.29, 8.1], [8.1, 22.5]], \"sentences\": [\"A man on a horse is in a corral waiting to start his ride.\", \" The gate opens and he takes off on the horse chasing a baby cow.\", \" Catches the baby cow with a lasso wrestles it to the ground.\"]}, \"v_Yc9pZ8Vy-3s\": {\"duration\": 218.71, \"timestamps\": [[0, 119.2], [117.01, 218.71]], \"sentences\": [\"Two people are shown pushing themselves down a river using kayaks and paddles.\", \" The camera follows them down the river and records them flipping around in their kayaks and voyaging down the river.\"]}, \"v_wPLEmDBfgok\": {\"duration\": 184.76, \"timestamps\": [[0, 181.99], [38.8, 41.57], [181.99, 184.76]], \"sentences\": [\"A band plays in the street where couples dance surrounded for a crowd while people pass behind the crowd.\", \" A woman pass where the couple dance.\", \" A woman finishes dancing, then put two hands on front her face.\"]}, \"v_OD4MrhX85-M\": {\"duration\": 32.93, \"timestamps\": [[0.49, 5.1], [5.1, 24.04], [24.04, 32.93]], \"sentences\": [\"People on a cruise ship play a game of shuffle board with each competitor taking a turn.\", \" A girl in a white hoodie takes her turn and nocks out the red disc.\", \" A man in white shorts steps in front of the camera and moves the discs with his foot.\"]}, \"v_I0yNAIWHcQQ\": {\"duration\": 37.27, \"timestamps\": [[0, 37.27], [24.97, 25.9], [25.9, 32.05], [32.05, 37.27]], \"sentences\": [\"2 girls are sitting and swinging on the same swing.\", \" The camera pans to show the rest of the playground.\", \" Another girls talks into the camera.\", \" The camera pans back to the 2 girls swinging.\"]}, \"v_A0XGYLim9IU\": {\"duration\": 64.76, \"timestamps\": [[0, 36.27], [40.8, 64.76]], \"sentences\": [\"A view of the grass is shown, then several scenes of croquette bats hitting balls through the loops on the ground.\", \" This continues throughout the remainder of the video.\"]}, \"v_yH018Jl5GMQ\": {\"duration\": 23.76, \"timestamps\": [[0, 14.37], [13.07, 23.76]], \"sentences\": [\"A man is seen spraying down a car with a hose and using a rag in front of it.\", \" The person continues sprayinng as the camera pans around the new paint job.\"]}, \"v_id4XtnLsw7c\": {\"duration\": 106.84, \"timestamps\": [[0, 1.6], [1.6, 92.95], [92.95, 101.49], [101.49, 106.84]], \"sentences\": [\"A special effect intro screen appears and it has the words \\\"Reebox CrossFit GAMES THE FITTEST ON EARTH 2013\\\" in special letter size and shape.\", \"A man with dark brown hair and a full dark brown beard appears indoors in a room with a lot of weightlifting items and as he's talking it rotates between him and various people doing various exercises.\", \"Occasionally there are screenshots of a man lifting very heavy weights that display during the man talking.\", \" An outro screen appears and it includes the same intro screen but this time with white wording at the bottom that includes copyright information.\"]}, \"v_rIr091-LMGY\": {\"duration\": 103.45, \"timestamps\": [[0, 5.69], [5.69, 9.83], [9.83, 18.1], [18.1, 33.62], [33.62, 54.83], [55.34, 71.38], [72.41, 103.45]], \"sentences\": [\"A man in a black t-shirt puts make up on a woman wearing a grey t-shirt.\", \" A man wearing a green shirt puts make up on a woman wearing a pink blouse.\", \" A man wearing a striped shirt puts make up on a girl with black hair.\", \" Clips of different couples with the man putting make up on the woman's faces.\", \" Scenes of the men putting make up on the woman's eyes.\", \" More clips of the men putting make up on the woman's lips.\", \" Final look with Before and After stills of each woman.\"]}, \"v_Bh8RcPBQjxo\": {\"duration\": 10.4, \"timestamps\": [[0, 9.78], [3.59, 6.92], [9.78, 9.93]], \"sentences\": [\"A person rides a motorcycle on a dirt path.\", \" The person jumps over the hills on the path.\", \" The person disappears down the path with his motorcycle.\"]}, \"v_ZBAQx9DxYTo\": {\"duration\": 86.08, \"timestamps\": [[0, 10.76], [10.33, 30.56], [30.56, 45.62], [45.62, 86.08]], \"sentences\": [\"man is standing holdnig a pofessional camera and doing weightlifting.\", \" man is shirtless talking to the camera in a camp in an open field while people is walking behind him.\", \"  men are insisde a tent selling shirts and th man is talking to the camera.\", \" men are in a open green grassy field holding big black elbows and practicing some shots.\"]}, \"v_ewGW8hMlxnA\": {\"duration\": 190.73, \"timestamps\": [[0, 9.54], [15.26, 97.27], [99.18, 138.28], [141.14, 164.03], [164.98, 190.73]], \"sentences\": [\"White on black text appear for a while.\", \" Two boys are sitting on bleachers and talking.\", \" They explain how to keep shoes clean, by displaying a toothbrush and several spray cans.\", \" They scrub their shoes, then polish them off.\", \" The boy puts his shoes on as they continue talking, then gets up and runs away.\"]}, \"v_iddZ6YIWLWc\": {\"duration\": 115.17, \"timestamps\": [[0, 8.06], [8.64, 16.12], [16.12, 39.73], [38.58, 84.07], [84.07, 97.9], [97.32, 115.17]], \"sentences\": [\"A large red slack line is connected to two trees out in a park.\", \"A strong young man is shown on the other side of the tree pulling the line to ensure that is the tightest it can be around the trunk of the trees.\", \"Then two couples appear and the men are assisting females tight rope across the slack line.\", \"Next,the two men begin to take their turn and walk across it jokingly holding up bottles of wine.\", \"As the man in the green shirt attempts to walk, he falls off the line.\", \"When they are finished,the two couples sit in the grass enjoying a picnic.\"]}, \"v_2ji02dSx1nM\": {\"duration\": 162.69, \"timestamps\": [[1.63, 148.86], [15.46, 148.86], [17.9, 139.92], [149.68, 161.88]], \"sentences\": [\"People are in a body of water.\", \" A guy sits and gives an interview.\", \" People surf on the surface of a body of water.\", \" The credits of the clip are shown along with a split screen of associated images.\"]}, \"v_R_TRpIHkgMs\": {\"duration\": 96.78, \"timestamps\": [[0, 45], [40.65, 96.78]], \"sentences\": [\"Barack Obama is seen playing a game of pool while many watch and take pictures around the table.\", \" He plays with another man who smiles nervously and the president continues walking around the table shooting balls.\"]}, \"v_y7i-jRmrwnI\": {\"duration\": 82.08, \"timestamps\": [[0, 82.08], [36.53, 40.22], [40.63, 82.08], [62.38, 64.44]], \"sentences\": [\"A woman is standing over a sink doing dishes.\", \" She takes a drink out of a wine glass.\", \" She continues doing dishes in the sink.\", \" She looks out the window in front of her.\"]}, \"v_I5Q0DcmTs9c\": {\"duration\": 227.06, \"timestamps\": [[0, 1.14], [1.14, 224.79], [225.92, 227.06]], \"sentences\": [\"A boy with a harmonica around his neck sits holding an accordion in a bedroom.\", \" We see a boy playing the harmonica and accordion at the same time.\", \" The boy finishes and stops and looks up.\"]}, \"v_pX-ik8n_eNQ\": {\"duration\": 211.79, \"timestamps\": [[0, 139.78], [139.78, 211.79], [63.54, 65.65]], \"sentences\": [\"Two young men play ping pong  front to front in an indoor facility.\", \" Then, one of the man goes to the side of the tennis table to continue playing.\", \" The ball hit the net and fall to the floor.\"]}, \"v_mmRpNwb0NZ0\": {\"duration\": 128.89, \"timestamps\": [[0, 35.45], [28.36, 92.16], [90.87, 128.89]], \"sentences\": [\"An introduction leads into a woman being interviewed by the camera and several shots of her warming up.\", \" More shots of her dancing are shown doing various leaps and leg lifts while still speaking to the camera.\", \" Shots of her dancing on stage are shown and leads back into her on the dance floor.\"]}, \"v_DFAodsf1dWk\": {\"duration\": 231.71, \"timestamps\": [[0, 12.74], [22.01, 176.1], [179.58, 231.71]], \"sentences\": [\"A man is sleeping in a bed, and his alarm wakes him up.\", \" He sits by a table, then sets up a game of beer pong.\", \" The men play the game casually, taking turns.\"]}, \"v_6LWkrN1qz8E\": {\"duration\": 232.64, \"timestamps\": [[0, 212.87], [62.81, 232.64]], \"sentences\": [\"An older man is seen sitting in a chair brushing the hair of a small child standing in front of him.\", \" The man continues brushing the girl's hair while she watches tv and another person sits on the side.\"]}, \"v_TM4-Miytfv4\": {\"duration\": 24.08, \"timestamps\": [[2.29, 4.45], [6.14, 12.04], [13.36, 24.08]], \"sentences\": [\"A guy runs indoors in a gym.\", \" The lifts his body over a heighten hurdle.\", \" The guy lands on his back, rises, begins to leave the padded platform.\"]}, \"v_hz3n1wrXYAc\": {\"duration\": 97.78, \"timestamps\": [[0, 14.67], [14.18, 38.13], [38.62, 59.16], [59.16, 75.29], [75.78, 97.78]], \"sentences\": [\"An Asian man is standing outside talking while holding a helmet in one hand and his performance bike in the other.\", \"He then walks away and meets up with another racer and begins to move his pedals.\", \"The man is now at the top of the rack and the bar is let down and the two men begin moving throughout the dirt track.\", \"However,the boy that was with him blows past him and the man is stunned.\", \"Once the guy is finished,he begins to congratulate him before he takes off again.\"]}, \"v_0y4mO86t4Z0\": {\"duration\": 169.88, \"timestamps\": [[4.25, 43.32], [44.17, 71.35], [71.35, 162.23], [97.68, 108.72]], \"sentences\": [\"A little girl rides a horse in circles while a woman holds the leash of the horse.\", \" The horse walks and gallops in circles, and pass over a pole on the ground.\", \" Then, the horse pass over a low obstacle galloping in circles.\", \" A person holds a leash of a horse that walks in circles.\"]}, \"v_B67jaG6qKWE\": {\"duration\": 155.88, \"timestamps\": [[0, 5.46], [5.46, 6.24], [6.24, 19.48], [19.48, 25.72], [26.5, 70.14], [70.14, 81.06], [81.06, 93.53], [93.53, 138.73], [138.73, 155.88]], \"sentences\": [\"a frozen shot of two people about to play Foosball.\", \" A girl sticks her tongue out at the camera.\", \" People are shown playing Foosball.\", \" People in orange matching suits wave.\", \" A far away shot of the crowd and people down on the floor where they were playing Foosball.\", \" Text appears on the screen over the crowd.\", \" People cheer as more text appears.\", \" It goes back to the crowd until another set of text appears on the screen.\", \" People shake hands and test out the Foosball table.\"]}, \"v_XCJ2StGMgW4\": {\"duration\": 34.76, \"timestamps\": [[0, 34.76], [33.02, 34.24], [34.24, 34.76]], \"sentences\": [\"A boy is standing in a residence and is playing the bagpipe.\", \" When he's finished he pulls the instrument from his mouth.\", \" The boy smirks a little then walks toward the camera.\"]}, \"v_u1VIetb75rs\": {\"duration\": 148.03, \"timestamps\": [[0, 9.62], [11.84, 35.53], [36.27, 123.6], [127.3, 148.03]], \"sentences\": [\"Weightlifters representing several countries are in a room.\", \" Many large men lift a heavy barbell in the competition, one after the other.\", \" They hold the barbell over their head, and then receive a score on their efforts.\", \" When they are done and the victor has been declared, the top three men pose with their medals.\"]}, \"v_rdkPwRWW91s\": {\"duration\": 142.85, \"timestamps\": [[0, 3.57], [3.57, 137.85], [0, 142.85], [137.85, 142.85]], \"sentences\": [\"A man on a board and a sail is in the ocean and words appear on the screen and say \\\"Freestyle Practice Bonaire 2007\\\".\", \"The man bends down and grabs the sail and stands up to hold onto it while he does various tricks holding onto it like spinning and swinging it around.\", \" The whole time there are other people in the water also doing their own things on their boards and sails.\", \" White outlined words appear on the screen that read \\\"THE END by Mike Stefanski\\\" and the screen goes to black still with the words on it.\"]}, \"v_KgccYb6ufPY\": {\"duration\": 84.03, \"timestamps\": [[0, 14.71], [15.13, 24.79], [25.21, 49.58], [50, 65.55], [65.97, 74.37], [74.79, 84.03]], \"sentences\": [\"A runner springs across the track and jumps onto a dirt field.\", \" Another sprinter does the same.\", \" The first sprinter goes again.\", \" The second sprinter goes again.\", \" Another sprinter follows the second sprinter.\", \" The second sprinter goes one last time.\"]}, \"v_f-JfdEfNQlE\": {\"duration\": 112.55, \"timestamps\": [[2.25, 57.96], [32.08, 101.29]], \"sentences\": [\"Several clips are shown of children playing on a playground that include riding swings, climbing ropes, and sliding down slides.\", \" Several more clips are shown of kids interacting with a playground as well as looking to the camera and smiling and waving.\"]}, \"v_O62LVI0XNHo\": {\"duration\": 171.5, \"timestamps\": [[0, 165.5], [166.36, 171.5]], \"sentences\": [\"A man walks into a room and plays a musical instrument with the use of his hands and his mouth.\", \" The man stops and walks out of the room.\"]}, \"v_6Ke30NtYOC0\": {\"duration\": 79.99, \"timestamps\": [[0, 51.2], [50, 79.99]], \"sentences\": [\"A close up of a computer and shown and switch to a man playing the guitar with another man in the background.\", \" He continues playing the guitar to the camera and moves the camera back towards the computer.\"]}, \"v_TOP1Fwili-k\": {\"duration\": 139.09, \"timestamps\": [[1.39, 46.59], [37.55, 107.79], [91.8, 136.31]], \"sentences\": [\"A man is seen speaking to the camera while holding a racket and men standing behind him.\", \" The man then demonstrates how to hit the ball over a net while still speaking to the camera.\", \" Two men hit the birdee back and fourth and the man is seen still speaking.\"]}, \"v_wy_oDiDK6lk\": {\"duration\": 121.02, \"timestamps\": [[0, 113.16], [25.41, 28.44], [105.9, 110.74]], \"sentences\": [\"A lady sits on a couch and clips her cat's claws.\", \" The cat puts it paw in the air and spreads it out.\", \" The cat spreads his other paw and the lady finishes.\"]}, \"v_Yk3pQ18So90\": {\"duration\": 203.82999999999998, \"timestamps\": [[0, 31.59], [32.61, 116.18], [116.18, 200.77], [162.04, 179.37], [200.77, 203.83]], \"sentences\": [\"We see older people standing around a car in a field.\", \" Four women get on their knees and race to remove a tire.\", \" The ladies put the new tier on and screw the bolts in with their hands and the tool.\", \" The lady in black goes around checking all the tires.\", \" The ladies finish and stand and raise their hands and clap in triumph.\"]}, \"v_KxAxMZ6dYa4\": {\"duration\": 104.31, \"timestamps\": [[0, 9.91], [13.56, 66.76], [71.97, 104.31]], \"sentences\": [\"a man is talking inside a news room.\", \" A group is shown outside playing a game of curling.\", \" The people push the pucks and talk to the camera.\"]}, \"v_oFh_AGspaEQ\": {\"duration\": 113.55, \"timestamps\": [[0, 17.03], [19.87, 80.62], [85.16, 113.55]], \"sentences\": [\"A man is in a workshop, holding a piece of wood and talking.\", \" He rubs a dark varnish all over the board.\", \" He applies a second coat, then shows off the finished product.\"]}, \"v_hJf7uOUiEFo\": {\"duration\": 185.04, \"timestamps\": [[0, 26.83], [35.16, 148.03], [150.81, 185.04]], \"sentences\": [\"A woman sits in a barber chair and speaks to the camera.\", \" She then goes to a mirror and uses various products on her hair.\", \" She then brushes and blows it dry before turning to the camera and speaking some more.\"]}, \"v_D2TQ_RR2Q50\": {\"duration\": 226.37, \"timestamps\": [[0, 147.14], [36.22, 184.49], [105.26, 220.71]], \"sentences\": [\"Three women are seen speaking to the camera and answering questions that the hosts ask.\", \" Clips are shown of people running down the street while the women continue to speak.\", \" The girls talk more and more while people are still shown running down the road.\"]}, \"v_JE0xYYOp5_s\": {\"duration\": 82.11, \"timestamps\": [[0, 16.01], [22.17, 56.24], [61.99, 82.11]], \"sentences\": [\"A woman is in a kitchen, talking.\", \" She is using a knife to cut tomatoes into slices.\", \" She shows how to use the bottom of a coffee mug to sharpen her knife.\"]}, \"v_mZ1Di2gg-I4\": {\"duration\": 209.05, \"timestamps\": [[7.32, 209.05], [0, 209.05], [0, 6.27]], \"sentences\": [\"woman is standing in the middle of a stage making yoga movements.\", \" woman is doing movements in slow motion in front of an orange screen.\", \"woman is sanding quiet and then start doing movements.\"]}, \"v_0drl-yrfBAA\": {\"duration\": 235.68, \"timestamps\": [[0, 69.53], [69.53, 147.3], [147.3, 235.68], [182.65, 188.55]], \"sentences\": [\"Five youth play drums in a field full of people.\", \" Then, a group of boys holding bass drums put their hats on the ground then start to play.\", \" Another group of musicians holding timbals an cymbals enter the scenario to play with the other musicians.\", \" A person takes picture to the marching band.\"]}, \"v_Dt2KQcKR4T8\": {\"duration\": 5.97, \"timestamps\": [[0, 2.12], [1.97, 5.97]], \"sentences\": [\"A large truck is seen parked in an empty field and shows a person running down the track.\", \" A person with a javelin is then seen running down the track and jumping over a bar onto a mat.\"]}, \"v_okSvWjK0okw\": {\"duration\": 121.19, \"timestamps\": [[0.61, 121.19], [6.67, 12.12], [69.08, 82.41], [82.41, 115.73]], \"sentences\": [\"Three people are captured rock climbing a tall and large rock scape surrounded by open grass and tree covered terrain while a small group of people watch from the bottom of the rock.\", \"  One person climbs the rock as the camera pans in and out on the person and strays to view the people at the bottom of the rock along with a maze like wooden fence at the bottom of the rock.\", \"  The camera offers a full view of the rock the climbers are climbing and pans to the top of the rock to capture the sky.\", \"  One last person in a red hat climbs the rock until the camera eventually pans to a black bird flying in an open blue sky.\"]}, \"v_3SLaaTD8t3Q\": {\"duration\": 21.29, \"timestamps\": [[0, 0.64], [0.75, 10.01], [10.11, 21.29]], \"sentences\": [\"A woman squirts lotion into the hand of a girl.\", \" The girl turns to a boy next to her and attempts to rub the lotion on him.\", \" The woman jumps in and rubs lotion on the boy, too.\"]}, \"v_xf_exEkpJe8\": {\"duration\": 167.8, \"timestamps\": [[0, 72.99], [67.96, 167.8], [94.81, 167.8]], \"sentences\": [\"A man and woman are dancing, the swing side to side, turning and using their arms as they dance.\", \" A man walked behind them and went to a fireplace.\", \" The man in plaid shirt left the fireplace and the man and woman continue to dance.\"]}, \"v_32H1n87WgCM\": {\"duration\": 168.29, \"timestamps\": [[0, 19.35], [19.35, 70.68], [78.25, 150.62], [151.46, 168.29]], \"sentences\": [\"Two people are seen sitting behind a desk and leads into the woman speaking and a boy doing karate.\", \" Several pictures of the karate boy are shown as well as him battling another child.\", \" His coach is then interviewed as well as the young child and continues showing more shots of his moves.\", \" The male hosts speaks to the camera smiling in the end.\"]}, \"v_t97xM9sY2yg\": {\"duration\": 130.73, \"timestamps\": [[0, 9.15], [9.15, 18.96], [18.96, 43.14], [44.45, 96.74], [101.31, 130.73]], \"sentences\": [\"A plate of pasta with shrimp is shown.\", \" We then see the ingredients on a counter.\", \" Garlic and onions are finely chopped, then fried in olive oil.\", \" Meat is added, and a pesto is made.\", \" The ingredients are then mixed into the pasta and plated.\"]}, \"v_yRgei7gpr-I\": {\"duration\": 229.59, \"timestamps\": [[0, 4.59], [3.44, 6.89], [66.58, 79.21], [66.58, 145.79], [160.71, 204.33]], \"sentences\": [\"A man in a red jersey holds a ball behind his head.\", \" He spins around several times and launches it onto the field.\", \" Several pictures of magazine covers are shown.\", \" Several other people are throwing balls onto a field.\", \" A man lays down on a bench and lifts a heavy weight.\"]}, \"v_Zc8zn0sKfwo\": {\"duration\": 205.29, \"timestamps\": [[0, 44.14], [47.22, 135.49], [127.28, 200.16]], \"sentences\": [\"A man is seen standing behind a counter and showing off various ingredients.\", \" He then begins mixing the ingredients together in a pan and frying them up.\", \" Finally he puts it in a pan and takes it out to present to the camera.\"]}, \"v_FFyJjF4MjHM\": {\"duration\": 35.2, \"timestamps\": [[0, 35.2], [1.94, 34.15], [0, 7.92]], \"sentences\": [\"People are shown skiing down a ski slope and having a good time while someone records them.\", \" One man is struggling to ski while he only goes very slowly down the slope.\", \" Other people whiz by as the man struggles to ski.\"]}, \"v_xQljKBB3498\": {\"duration\": 90.23, \"timestamps\": [[0, 15.79], [9.93, 79.86], [58.2, 88.43]], \"sentences\": [\"A girl's face is shown in front of the camera.\", \" She showed an orange bottle, read the label and squirt the orange content on her palm, showed the cream on the camera, then rub the cream all over her face.\", \" She bend down and rinse her face, when her face is visible on the camera her face is clear.\"]}, \"v_zzE2VrQMvbc\": {\"duration\": 121.48, \"timestamps\": [[0, 3.64], [3.04, 8.5], [8.5, 16.4], [16.4, 46.77], [46.77, 60.74], [60.74, 121.48]], \"sentences\": [\"a gun is making shots in a open area.\", \" person with his face cover appears walking holding something on his hand.\", \" person is walking in the open field by abandoned houses.\", \" paintball tactics appears on the screen while a person is walking with the gun staying up.\", \" other person appears in the field and the person prepares to shot them.\", \" person holding the gun run through the field and hides behind some rubbers to shot the enemies.\"]}, \"v_jRfTdoqG7Tw\": {\"duration\": 135.19, \"timestamps\": [[3.38, 69.62], [43.94, 130.46]], \"sentences\": [\"A close up of a woman's face is shown followed by someone putting makeup on her and a woman speaking to her.\", \" The woman continues putting makeup on as well as the woman putting makeup on herself and showing off the finished product.\"]}, \"v_Q7cgJD7-sEM\": {\"duration\": 206.94, \"timestamps\": [[7.24, 9.31], [10.35, 190.38], [37.25, 38.28], [190.38, 191.42], [198.66, 206.94]], \"sentences\": [\"A guy wearing reading glasses moves a the camera backwards.\", \" The guy starts to play a wooden flute.\", \" A female in a pink hair wrap walk across the camera.\", \" A guy stops playing the wooden flute and puts it down.\", \" Women are sitting around in a room.\"]}, \"v_6gyD-Mte2ZM\": {\"duration\": 188.25, \"timestamps\": [[2.82, 82.83], [64, 183.54]], \"sentences\": [\"A man is seen cleaning off a bowling ball and leads into several clips of him bowling down a lane.\", \" More shots are shown of the man bowling while the camera captures him from several angles.\"]}, \"v_gl_0jjJBUkc\": {\"duration\": 17.07, \"timestamps\": [[0, 7.94], [7.51, 17.07]], \"sentences\": [\"A man is seen kneeling over a bucket dipping clothes inside and washing.\", \" Another man is seen standing in front of a hose and dipping clothes underneath as well.\"]}, \"v_Fv1qhPABYk0\": {\"duration\": 18.32, \"timestamps\": [[0.27, 7.69], [6.41, 14.02], [12.73, 17.77]], \"sentences\": [\"A large group of people are seen sitting in a gymnasium with a group of girls playing tug of war.\", \" The camera pans around the groups as they continue to pull from one another.\", \" In the end one group pulls it further than the other.\"]}, \"v_rDxEl9bPodU\": {\"duration\": 73.52, \"timestamps\": [[1.1, 73.51], [6.25, 27.57], [27.57, 70.57]], \"sentences\": [\"Six horses with people on them walk along a sandy shore in front of the ocean on an overcast day.\", \"  The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him riding horses on the beach.\", \"  The camera man focuses the camera on the people riding horses behind him as they all continue to ride horses on the beach.\"]}, \"v_5wQLpjdsRUg\": {\"duration\": 122.35, \"timestamps\": [[3.06, 23.86], [24.47, 32.42], [32.42, 79.52], [79.52, 111.33]], \"sentences\": [\"Two people perform fencing while three children appears in the screen talking.\", \" Two men performs fence in a gym while a crowd watch, then a boy and a young man talks on front a white wall.\", \" Couples of fencers compete while kids talk on front a wall.\", \" Boys and girls talk sit on front a walk, while couples of fencers perform in a competition.\"]}, \"v_bWdufJDosIo\": {\"duration\": 121.05, \"timestamps\": [[3.03, 64.76], [45.39, 118.02]], \"sentences\": [\"A woman is seen walking into a room holding objects and speaking to the camera while a man in the back unrolls tubes.\", \" The woman continues speaking to the camera and shows clips of the man laying down wallpaper and cutting it to fit the wall.\"]}, \"v_oS7Twj3Pou0\": {\"duration\": 37.92, \"timestamps\": [[0, 37.92], [17.82, 20.48], [27.11, 29.39]], \"sentences\": [\"A man wearing Arab clothes talks on front a crow while holding a large umbrella.\", \" A person walks in the street holding an umbrella.\", \" A woman wearing a hooded shirt jumps near the man.\"]}, \"v_Otm5TV4XI7w\": {\"duration\": 127.73, \"timestamps\": [[0, 8.94], [9.58, 35.13], [37.04, 108.57], [109.85, 127.73]], \"sentences\": [\"Two men are standing in front of a staples display and talking.\", \" They are then shown randomly playing rock, paper, scissors with people.\", \" They talk about how to play the game as they continue playing with several people.\", \" They conclude with final words and shaking hands.\"]}, \"v__ZiTTLhXjZQ\": {\"duration\": 155.82999999999998, \"timestamps\": [[0, 9.35], [10.13, 16.36], [17.14, 123.88], [124.66, 138.69], [139.47, 155.83]], \"sentences\": [\"A man is standing on a field, playing with a dog and a frisbee.\", \" Several people are seated all around, watching.\", \" The dog chases and catches the frisbee numerous times.\", \" He gathers many frisbees to continue playing with the dog.\", \" In conclusion, he picks up the frisbees and cleans up after his performance.\"]}, \"v_2belnHaa36g\": {\"duration\": 22.71, \"timestamps\": [[0.45, 15.22], [10.22, 21.8]], \"sentences\": [\"A man is seen sitting behind a set of drums and playing slowly while others watch him on the side.\", \" The man continues to play on the drums and ends by standing up and walking away.\"]}, \"v_u7OvguFW-Hs\": {\"duration\": 17.46, \"timestamps\": [[0, 2.44], [2.62, 14.49], [15.1, 17.46]], \"sentences\": [\"A group of boys are playing in a living room.\", \" Two lift up the other boy, then toss him down on the ground.\", \" He jumps up smiling as the others laugh.\"]}, \"v_jNJg1TYq3c8\": {\"duration\": 49.02, \"timestamps\": [[0, 5.39], [8.33, 27.2], [30.15, 49.02]], \"sentences\": [\"a man is located on the inside of a house.\", \" He is using a steamer to blow steam all over a window.\", \" He then uses a brush to scrape it clean.\"]}, \"v_5fW_2c_kKfc\": {\"duration\": 200.18, \"timestamps\": [[0, 42.04], [38.03, 95.09], [95.09, 200.18]], \"sentences\": [\"A group of girls stand around a large gym with a volleyball net in the middle and begin playing.\", \" One swings the ball back to the other side and push the ball back and fourth.\", \" The girls continue playing volleyball and cheer in the end when one side wins.\"]}, \"v_YNnyUVFE4uM\": {\"duration\": 60.33, \"timestamps\": [[0.6, 15.99], [16.89, 23.53], [24.43, 56.4], [56.4, 60.33]], \"sentences\": [\"A person washes dishes in a sink.\", \" Then, the person wash a pan in the sink.\", \" After, the person continues washing the tableware.\", \" Next, the person wash the cloth and put on the faucet.\"]}, \"v_7B1FZR0IA6M\": {\"duration\": 78.25, \"timestamps\": [[0, 5.48], [7.04, 15.26], [21.13, 78.25], [39.91, 41.08], [54.39, 61.04]], \"sentences\": [\"A person does a trick on a skateboard.\", \" A person is jumping on a skateboard on a slack line.\", \" People are doing skateboard tricks at a skate park.\", \" A person jumps off their skateboard into a pile of leaves.\", \" A man films another man skateboarding.\"]}, \"v_P6Z-7k-erfc\": {\"duration\": 67.11, \"timestamps\": [[0, 9.39], [11.74, 44.96], [8.39, 54.69], [39.93, 67.11]], \"sentences\": [\"A man adjusts a makeshift cardboard hat on his head.\", \" A girl draws a face on a pumpkin sitting on the floor.\", \" The man washes a pumpkin in the sink.\", \" The girls look at the pumpkin seated together on the floor.\"]}, \"v_POvVSjY_8HU\": {\"duration\": 82.2, \"timestamps\": [[0, 36.99], [36.58, 75.21], [75.62, 82.2]], \"sentences\": [\"A man uses a hose and towel to clean a car's roof.\", \" The man uses the hose and towel to clean the car's rear.\", \" The man uses the hose and towel to clean the car's front.\"]}, \"v_s69uPXLvzIg\": {\"duration\": 92.21000000000001, \"timestamps\": [[0, 57.17], [57.63, 63.16], [64.08, 92.21]], \"sentences\": [\"A person is welding a piece of metal in a room.\", \" White metal sheets are shown stacked up.\", \" The person continues to weld metal.\"]}, \"v_x7-2_HigN8c\": {\"duration\": 74.24, \"timestamps\": [[0, 18.19], [17.82, 74.24]], \"sentences\": [\"Two women are shown with one waving to the camera and another pointing to a board.\", \" They begin throwing darts at the board and looking back to the camera smiling and waving.\"]}, \"v_VbhW_K3NvmQ\": {\"duration\": 166.0, \"timestamps\": [[0, 29.05], [29.05, 30.71], [107.9, 108.73], [165.17, 166]], \"sentences\": [\"A girl in a white dress is playing a white piano.\", \" A woman in a white suit claps her hands.\", \" A woman in a pink shirt wipes her eyes.\", \" She finishes playing the piano and people stand up to clap for her.\"]}, \"v_hbHkS0GAOLE\": {\"duration\": 23.89, \"timestamps\": [[0, 18.76], [18.76, 23.89]], \"sentences\": [\"Four lanes are paved in a large field of snow and people begin sliding down to the bottom.\", \"The bottom is finally reached and people and cones become visible.\"]}, \"v_AZn294ubbps\": {\"duration\": 104.47, \"timestamps\": [[0, 44.4], [44.92, 104.47]], \"sentences\": [\"A man wearing sunglasses is standing at the edge of the ocean on a beach in front of a man seated in a kayak.\", \" He gets into the kayak, and they paddle away as they demonstrate how to use the paddles, then turn back to shore as he continues talking.\"]}, \"v_1JKgr3KfoHo\": {\"duration\": 206.9, \"timestamps\": [[0, 40.34], [41.38, 47.59], [47.59, 206.9], [186.21, 188.28]], \"sentences\": [\"Scenes of various individuals practicing hockey skills are shown.\", \" A man talks to a group of children in the rink.\", \" More scenes of hockey skill practice are shown.\", \" An individual is shown pushing against a heavy bag on the ice while the man adds weight to it.\"]}, \"v_0gLAhptj34w\": {\"duration\": 91.65, \"timestamps\": [[0, 91.65], [29.79, 33.45], [47.66, 53.62], [79.74, 91.65]], \"sentences\": [\"Two people are playing against each other in a game of Foosball.\", \" The left person reaches down and grabs the ball.\", \" The left person spins the left pole fast.\", \" We see the white team score a goal.\"]}, \"v_vKNsvOvC5mA\": {\"duration\": 97.5, \"timestamps\": [[0, 22.91], [23.89, 88.73], [58.99, 59.48], [59.96, 60.94], [89.21, 97.01]], \"sentences\": [\"The credits of clip are shown.\", \" People are kayaking on a rocking body of water.\", \" People walk on a road and carry their kayak.\", \" People sit on a still kayak, and a guy carries a kayak while sitting on rocks.\", \" The credits of video are shown.\"]}, \"v_UgXPt2LydrY\": {\"duration\": 26.43, \"timestamps\": [[0, 26.43], [3.44, 10.04], [12.55, 16.65], [19.16, 26.43]], \"sentences\": [\"We see a crowd watching a game of volleyball on the beach.\", \" A man in gray on the left kicks sand back and hits the ball when it comes to him.\", \" A lady with brown hair walks in front of the camera and a man with gray hair joins her.\", \" The two men in gray hit the ball and then begin clapping.\"]}, \"v_e2QVdX-JdIg\": {\"duration\": 102.56, \"timestamps\": [[0, 17.95], [18.46, 33.33], [35.9, 65.13], [66.67, 102.56]], \"sentences\": [\"Several men are shown one after the other on a field.\", \" They stand in a circle at one end of the field.\", \" Then they spin in circles several times.\", \" They let go of a disc, letting it fly across the field for measured distance.\"]}, \"v_V--Xz2FtJXA\": {\"duration\": 199.62, \"timestamps\": [[0, 53.9], [55.89, 108.79], [109.79, 164.69], [162.69, 199.62]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her walking around a building.\", \" She speaks to many people when one woman begins cutting her hair.\", \" The woman then cuts and styles her hair while she smiles into the mirror and hugs  her stylist.\", \" She walks out of the salon and holds up her hair while screaming to the camera.\"]}, \"v_WrFNI5GQFPM\": {\"duration\": 214.02, \"timestamps\": [[8.56, 12.84], [12.84, 31.03], [31.03, 188.34], [188.34, 201.18]], \"sentences\": [\"A woman's hair is shown from the back.\", \" The woman is seated facing the camera while another woman styles her hair.\", \" The woman continues to have her hair styled while turned away from the camera.\", \" The woman spins slowly in front of the camera showing the completed hairstyle.\"]}, \"v_c4ctwOucndQ\": {\"duration\": 117.87, \"timestamps\": [[0, 7.07], [12.38, 109.03], [110.2, 117.87]], \"sentences\": [\" A man is seated on exercise equipment.\", \" He pulls and pushes, sending himself back and forth on the machine as he works out.\", \" He slows down, then stops.\"]}, \"v_mC_8ckG6WpU\": {\"duration\": 216.57, \"timestamps\": [[0, 216.57], [90.96, 214.41]], \"sentences\": [\"A woman describes how to make a hula hoop.\", \"  She puts tubes in boiling water, joins the ends together, then decorates the hula hoop.\"]}, \"v_DTWZhe352y8\": {\"duration\": 238.96, \"timestamps\": [[3.58, 75.27], [51.38, 168.46], [152.93, 238.96]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her holding up a box as well as a pair of scissors and a piece of tape.\", \" The woman then pulls out wrapping paper and begins wrapping the box with tape and paper.\", \" The woman then puts a bow on top and dances around wearing sunglasses and still speaking with a cat in frame.\"]}, \"v_iBefG1qFbsE\": {\"duration\": 183.23, \"timestamps\": [[0, 10.08], [11.91, 79.7], [90.7, 183.23]], \"sentences\": [\"An older woman is knitting a brown sweater while in a pink outfit while sitting on a chair.\", \" The camera focuses on her hands slowly working the fabric around the needles.\", \" We then see her body and face as she talks about knitting.\"]}, \"v_iaXlCCgLBdo\": {\"duration\": 36.36, \"timestamps\": [[0, 24.18], [24.91, 36.36], [0, 36.36]], \"sentences\": [\"A man runs holding a javelin on his right hand on front a crowd.\", \" Then, the man throws the javelin.\", \" A person wearing white shirt walks behind the man.\"]}, \"v_x86YIU9TIPw\": {\"duration\": 37.99, \"timestamps\": [[0, 37.99], [7.6, 14.63], [7.41, 11.21], [35.9, 37.99]], \"sentences\": [\"Men are on a field playing lacrosse.\", \" We see number 17 blocking and following number  26.\", \" A green cart drives by.\", \" We see the men and the coaches on the sideline.\"]}, \"v_NLCNBK2YJQU\": {\"duration\": 122.83, \"timestamps\": [[0, 122.83], [11.67, 21.5], [25.8, 31.94], [33.78, 46.68], [47.29, 109.94], [109.94, 122.83]], \"sentences\": [\"We see a man in a canoe riding in the ocean.\", \" The man grabs the rear right paddle.\", \" He adjusts his fishing pole.\", \" The Camera angle changes to in front of the man.\", \" The man moves the selfie stick all around himself.\", \" He holds the camera still on the right of himself.\"]}, \"v_LaWlIUKH3PU\": {\"duration\": 176.73, \"timestamps\": [[2.65, 41.53], [29.16, 129.01], [127.24, 176.73]], \"sentences\": [\"A large group of people are seen standing around a city center waiting for people to arrive.\", \" Girls dancing are seen walking through the parade as other people watch on the side.\", \" More dancers continue moving through and moving with one another as people still watch on the side.\"]}, \"v_mwUP1yZQsh0\": {\"duration\": 160.15, \"timestamps\": [[0, 11.21], [12.01, 44.84], [44.04, 96.09], [96.09, 143.33], [143.33, 160.15]], \"sentences\": [\"A screen with text is shown.\", \" Two children play with a slide.\", \" The two children play in a small toy house.\", \" The two children return to playing with the slide.\", \" The two children return to playing with the house.\"]}, \"v_LV0nevBELso\": {\"duration\": 162.01, \"timestamps\": [[0, 35.64], [35.64, 115.83], [115.02, 139.33], [139.33, 162.01]], \"sentences\": [\"A young boy is standing outside of a window demonstrating the proper way to clean it.\", \"First,he grabs the sponge like mom and wets the window and grabs a razor like tool to clean it.\", \"He notices a few smudges and begins wiping the window again but in a different direction.\", \"Finally,a group of other boys are shown in other locations demonstrating the same thing and then the boy is shown again.\"]}, \"v_cZZM3bgmXE4\": {\"duration\": 235.43, \"timestamps\": [[0, 36.49], [37.67, 85.93], [105.94, 210.71], [148.32, 188.34], [195.41, 213.06]], \"sentences\": [\"A musician walks on stage holding a violin and talks with the judges.\", \" The musician talks in a small group during a busy event.\", \" The musician plays a song on stage in front of judges and a large crowd.\", \" The crowd cheers for the musician during the performance.\", \" The musician kneels  on one leg and finishes her song then gets a standing ovation from the crowd.\"]}, \"v_6YIZ00dNpMU\": {\"duration\": 179.57, \"timestamps\": [[0, 28.73], [28.73, 179.57], [133.78, 179.57]], \"sentences\": [\"A man introduces a video about a drum performance that he will do.\", \" He begins to do one drum rhythm and stops to explain how the rhythm is done.\", \" After he shows how that rhythm is done he begins to speed the rhythm up.\"]}, \"v_BcMHGhxdMl4\": {\"duration\": 42.03, \"timestamps\": [[0, 42.03], [1.05, 42.03], [1.05, 41.4]], \"sentences\": [\"man is standing behind the fence talking to the camera watching people in driving in bumper cars.\", \" people are driving bumper cars in a amusement park.\", \" old man is standing next to man watching the people in bumper cars.\"]}, \"v_HCphw9_Jku8\": {\"duration\": 167.77, \"timestamps\": [[0, 0.84], [0.84, 33.55], [33.55, 95.63], [95.63, 167.77]], \"sentences\": [\"A group of people ride bumper cars at an amusement park.\", \" A young boy wearing a white t-shirt driving a bumper car and a girl passenger wearing a blue blouse crash into another bumper.\", \" The girl in the blue blouse is laughing and having fun.\", \"The cars continue to crash into each other as a huge traffic jam slows the movement.\"]}, \"v_CgWVpLVd16o\": {\"duration\": 22.04, \"timestamps\": [[0, 9.37], [9.37, 12.89], [12.89, 22.04]], \"sentences\": [\"A young man is sitting on a skateboard on the left side of a blue double sided children's slide.\", \"The man then rolls down the slide on his skateboard and when he reaches the end he flies off of the skateboard and fells very hard onto the ground.\", \" A little boy runs in and grabs the skateboard and walks away with it while the young man is still writhing in pain.\"]}, \"v_ZblmMtkVXIc\": {\"duration\": 45.49, \"timestamps\": [[0.45, 17.51], [16.38, 44.35]], \"sentences\": [\"A person is seen pouring liquid into a bucket then grabbing a mop and moving it around the bucket.\", \" The person then washes the floor with the mop while stopping to look at the camera.\"]}, \"v_X5UoLcloHIM\": {\"duration\": 162.1, \"timestamps\": [[0, 26.75], [27.56, 115.09], [116.71, 162.1]], \"sentences\": [\"An intro leads into a boy on a skateboard who takes off and rides past people down a long and windy road.\", \" The camera follows the border riding down the road and switches to several other people riding boards.\", \" Each person performs several spins and tricks on the board and ends with one walking up the hill to another.\"]}, \"v_GcE-0A4Titg\": {\"duration\": 119.1, \"timestamps\": [[0, 20.25], [25.61, 85.15], [94.09, 119.1]], \"sentences\": [\"A man is leaning over a frame in a workshop.\", \" another man is welding a piece of metal on the ground.\", \" He continues welding the metal for the video.\"]}, \"v_eKiRykHu734\": {\"duration\": 151.3, \"timestamps\": [[0, 4.54], [5.3, 8.32], [20.43, 77.92], [81.7, 151.3]], \"sentences\": [\"A scene is viewed of the outdoors, including trees and sky.\", \" The word wakeboarding appears on the screen.\", \" There is a succession of videos of a man on a water board, then inside a boat playing rock paper scissors.\", \" We go back to the man performing various water boarding stunts, including ramps and going between obstacles.\"]}, \"v_V4cYhOQ6Pfs\": {\"duration\": 41.08, \"timestamps\": [[0, 4.72], [4.72, 21.98], [21.98, 30.4], [30.4, 41.08]], \"sentences\": [\"A man is outdoors on a grassy field and walks toward a circle in the middle of the grass.\", \" The man picks up a ball that is attached to a rope and ties it around his left gloved hand.\", \" The man begins to swing the ball around him very quickly, then starts spinning his body at the same time where he eventually lets go of the rope and the ball goes flying.\", \" The man looks toward the direction of the ball and then walks to towards the camera.\"]}, \"v_iId8WcbiKZI\": {\"duration\": 104.84, \"timestamps\": [[0, 41.41], [41.41, 104.84]], \"sentences\": [\"A man sits on a chair holding a water ski rope, then he stands and slide in the water, on a turn the man turns falls on the water.\", \" A man continues water skiing sit on a stool while doing flips in the air.\"]}, \"v_EVQlh2Et5tc\": {\"duration\": 24.24, \"timestamps\": [[0, 24.24], [5.58, 21.58], [21.58, 24.24]], \"sentences\": [\"There are a lot of a people in an indoor gymnasium filled with a lot of gymnastic mats and equipment.\", \" A young lady in the forefront jumps onto one of the equipments and starts to swing around the lower bar and eventually jumps to the higher bar and swings around that a few times.\", \" Eventually she jumps off and lands on her two feet and swings both of her hands straight up in the air for a second before she walks off.\"]}, \"v_r5mwKEhEsHA\": {\"duration\": 126.36, \"timestamps\": [[3.16, 72.66], [68.24, 126.36]], \"sentences\": [\"A woman is seen sitting in front of the camera speaking and leads into her holding up a contact lens case.\", \" She puts the contact in her eye and then smiles to the camera.\"]}, \"v_bOBQLGfEeyg\": {\"duration\": 59.7, \"timestamps\": [[0.6, 30.15], [22.69, 59.1]], \"sentences\": [\"A man is seen standing up in the middle of a gymnasium and then begins kneeling down and playing dodgeball.\", \" The man then plays a game with a large group of people who catch and hit balls all around them.\"]}, \"v_ZH8hnmjRDsI\": {\"duration\": 59.05, \"timestamps\": [[0, 13.29], [13.58, 59.05]], \"sentences\": [\"A yellow helicopter is flying in a clear blue sky over the beach.\", \"A small toddler then appears in the dirt playing with his shovel and bucket making a circle of sand castles.\"]}, \"v_qgasVDGUw3E\": {\"duration\": 172.47, \"timestamps\": [[0, 24.15], [28.46, 104.34], [105.21, 172.47]], \"sentences\": [\"A truck is shown parked in a driveway with words on the front bumper.\", \" Shingles on the roof are being detached and removed.\", \" Nails are hammered in, reseating the shingles.\"]}, \"v_aEpRYY_wi0M\": {\"duration\": 39.34, \"timestamps\": [[0, 3.74], [5.7, 9.64], [9.24, 12.39], [13.96, 17.5], [17.31, 38.74]], \"sentences\": [\"A photo of The outside of a bike shop is overlayed with text .\", \" A photo of  A man looking through bike spokes.\", \" A photo of two men working on a bike.\", \" More text overlayed saying \\\"we meet three times a week\\\".\", \" Another bike repair slideshow of photos.\"]}, \"v_RnN4BXyOtxU\": {\"duration\": 121.53, \"timestamps\": [[19.45, 61.98], [63.2, 79.6], [85.07, 113.63]], \"sentences\": [\"A person cuts lemons and squeeze the juice.\", \" Then, the person pours the juice in a pot through a strainer, and adds sugar and heat for 5 min.\", \" After, the woman adds soda water, after they boys drink the lemonade.\"]}, \"v_JuD1OdoXe9Q\": {\"duration\": 140.82999999999998, \"timestamps\": [[2.11, 70.42], [70.42, 135.9]], \"sentences\": [\"An athlete runs and performs long jump on the sand, then he lay down on the ground.\", \" The athlete wins the competition and stands on the podium singing while holding a bouquet of flowers.\"]}, \"v_2r7qhNGm44I\": {\"duration\": 141.29, \"timestamps\": [[0, 12.01], [12.01, 15.54], [12.01, 16.25], [16.25, 141.29]], \"sentences\": [\"man and a little kid are sanding in snow entrance.\", \" a couple are walking in the sidewalk.\", \" woman is carying a kid in a little car.\", \" pictures of a little kid doing snowboard and then the kid in the top of the mountain sliding down the hill in snowboard while other people is doing snowboard closed to them.\"]}, \"v_hoyQ36EH1a8\": {\"duration\": 98.24000000000001, \"timestamps\": [[2.46, 94.81], [43.72, 48.14], [49.61, 68.77]], \"sentences\": [\"People in equestrian gear ride horses around a corral on a ranch.\", \" A horse stands in a barn with its head passing over the gate.\", \" A girl sits on a horse and pets its mane.\"]}, \"v_ViCGpj478Ik\": {\"duration\": 46.81, \"timestamps\": [[0, 10.06], [10.3, 39.56], [40.49, 46.81]], \"sentences\": [\"a group of girls are inside a gym.\", \" They are engaged in a style of kickboxing.\", \" The girls kick and punch at each other for practice.\"]}, \"v_kbdBKIWKOWk\": {\"duration\": 52.98, \"timestamps\": [[0, 38.14], [39.2, 49], [50.86, 52.98]], \"sentences\": [\"A man in orange shorts dances on a stepping platform on stage in an outdoor event.\", \" A large group does an exercise dance in a plaza area next to the stage.\", \" The host on stage watches the group and claps at the end of the routine.\"]}, \"v_Zw4illqWzFI\": {\"duration\": 24.59, \"timestamps\": [[0, 2.09], [2.09, 11.07], [11.07, 24.59]], \"sentences\": [\"A group of people are sitting at a casino table with a dealer and there are numerous cards in front of them and the dealer is talking.\", \" The dealer then swipes the table from right to left, gathers all the cards and pics them up while still talking.\", \" The people are now adjusting their chips and the dealer does a fist pump in the air and moves his fingertip from left to the right of the table.\"]}, \"v_gyQ3NBwXhDU\": {\"duration\": 208.24, \"timestamps\": [[0, 17.7], [29.15, 117.65], [127.02, 208.24]], \"sentences\": [\"A large group of children are gathered on a field.\", \" Players are shown talking to the camera.\", \" They are preparing for a game of lacrosse as the coach speaks with the parents before the game.\"]}, \"v_i_tMiGS11fs\": {\"duration\": 156.25, \"timestamps\": [[3.91, 50.78], [34.37, 120.31], [67.19, 150.78]], \"sentences\": [\"Two people are seen speaking to the camera that leads into several clips of people fencing.\", \" The people then demonstrate proper fencing technique while the camera pans around their bodies and their movements.\", \" The man speaks with the woman and laughs and leads into a man interviewing two women on bleachers.\"]}, \"v_kZB7yxzHOrA\": {\"duration\": 150.28, \"timestamps\": [[0, 81.15], [67.63, 126.99], [108.2, 150.28], [126.99, 150.28]], \"sentences\": [\"A woman in blue swimsuit is standing at diving board then she walks towards the edge of the board bounce and jumped to the pool.\", \" The woman stands on the edge of the diving board with her back from the audience, jumped backwards, flipping over as she fall in the water.\", \" The woman in swimsuits walked towards the end of the diving board bounced and dive into the pool.\", \" Kids are lining up, they are holding flags, a female kid dive into water from the edge of the diving board, a woman is hugging the man as they jumped to the pool.\"]}, \"v_hIJ6VTEKji8\": {\"duration\": 17.65, \"timestamps\": [[0, 6.53], [6.53, 17.65]], \"sentences\": [\"A young girl is seen jumping down a walk way and then walking back to where she started.\", \" She jumps back down the same path again playing hopscotch and folds her hands down while looking at the camera.\"]}, \"v_yZErFOSkogc\": {\"duration\": 92.21000000000001, \"timestamps\": [[0, 92.21], [58.55, 92.21]], \"sentences\": [\"There are two people underwater and a man is holding on to a strap on the woman and he's guiding her as they swim under water.\", \" The woman points with her left hand and the man continues to guide her as she touches the seaweed and keeps pointing to all the different areas she wants to go to.\"]}, \"v_75xhANnCOEg\": {\"duration\": 137.97, \"timestamps\": [[0, 20.7], [23.46, 116.59], [117.28, 137.97]], \"sentences\": [\"A boy and girl performing dojo are shown in various images.\", \" They are then shown in video, as the little girl kicks a bag over and over.\", \" She is shown again in images, kicking and posing in the class.\"]}, \"v_XDOtHC4E6L8\": {\"duration\": 89.56, \"timestamps\": [[0, 89.56], [8.96, 89.56], [63.59, 89.56]], \"sentences\": [\"A man is on parallel bars.\", \" He does a gymnastics routine on the bars.\", \" He does a flip and lands on a mat in front of him.\"]}, \"v_cLTDcBhgRw8\": {\"duration\": 30.07, \"timestamps\": [[0, 1.5], [1.5, 26.01], [26.46, 30.07]], \"sentences\": [\"A man sits on a picnic bench while wearing jump stilts.\", \" The man stands and runs down the path in a park like area.\", \" The man stops and grabs a lamp post in the yard and turns towards the camera.\"]}, \"v_jDeBuorU4hY\": {\"duration\": 123.51, \"timestamps\": [[0, 40.14], [40.14, 123.51]], \"sentences\": [\"lights are on on a hockey court, disks are on the floor and players are watching them.\", \" men starts playing on the court trying to score.\"]}, \"v_rRSTE1EsAUM\": {\"duration\": 81.67, \"timestamps\": [[0, 48.59], [49.41, 56.76], [71.87, 81.67], [56.76, 81.67]], \"sentences\": [\"Three coaches gives instructions to a group of teens holding white sheets.\", \" A teen run in the track, then he jumps over a pole but he makes it falls.\", \" Four people wearing orange clothes walk in the grass.\", \" The coach makes sit the teens while talking to them.\"]}, \"v_FTmGHtBdWi0\": {\"duration\": 123.18, \"timestamps\": [[0, 2.46], [2.46, 4.31], [4.31, 17.86], [17.86, 28.33], [28.33, 42.5], [42.5, 89.92], [89.92, 107.17], [107.17, 123.18]], \"sentences\": [\"A black screen appears and the white words on it read \\\"ARM WRESTLING MATCH JEFF SEID VS ALON GABBAY =)\\\".\", \" The next black screen has a different set of white words that read \\\"Who will win???\\\".\", \"Two very muscular men wearing tanktops appear talking and the text on the screen say's that the name of the person is Alon Gabbay and the second man's name is Jeff Said.\", \"The two men then sit down at a table, shake hands and a black screen say's \\\"Round 1 begin\\\" and they start to arm wrestle.\", \" Something goes wrong and a black screen appears and said \\\"Redo!\\\", so they begin again and they're both struggling to win and the man on the right screams, and then wins by pushing the man's hand down.\", \" A black screen appears and the white words on the screen say \\\"Left Hand\\\" and the men start arm wrestling with their left hands and they're both really trying to win and they're both shaking, and once again the man on the right wins.\", \"The winner smiles, flexes his two arms, stands up, shows his arm muscles and he sits down on another table.\", \" A black screen appears and in white text it provides two youtube channels where you can see the two guys who just arm wrestled then it fades to a black screen.\"]}, \"v_VFqkLp5mzBM\": {\"duration\": 79.16, \"timestamps\": [[0, 6.33], [9.1, 19], [19.79, 65.3], [68.47, 79.16]], \"sentences\": [\"A man is speaking in front of a giant screen.\", \" Several people wearing hats are seen outdoors at a derby as a the Prince of Wales goes by.\", \" Several horses with riders are seen playing a game of polo.\", \" Prince Harry speaks to a crowd before going back to the newsroom.\"]}, \"v_gN8F0o1baAo\": {\"duration\": 23.66, \"timestamps\": [[0, 23.31], [8.64, 19.4], [18.81, 21.65]], \"sentences\": [\"A child pushes a toy lawn mower behind his father mowing the lawn.\", \" The child and father turn and mow another section of the lawn.\", \" The father points to a place in the grass for the child to mow.\"]}, \"v_TnvAN5iwpIw\": {\"duration\": 93.5, \"timestamps\": [[0, 12.15], [12.15, 55.16], [55.16, 93.5]], \"sentences\": [\"1 A Guy is playing the saxophone.\", \" 2 A guy talks about playing the saxophone.\", \" 3  The guy plays the saxophone again.\"]}, \"v_TbLBu2TDey8\": {\"duration\": 118.07, \"timestamps\": [[0, 4.72], [5.31, 9.45], [10.04, 112.17], [113.35, 118.07]], \"sentences\": [\"An screen comes up about WOOFD2 a club for dogs who catch discs.\", \"  A poster comes up about a regional canine disc championship.\", \"  A woman in a pink jacket and her dog are outdoors and doing tricks wish discs as she throws them the dog catches, as well as the dog jumping over her, rolling over, dancing.\", \"  A still shot appears of the woman and her dog as the 1st place winners at the championship.\"]}, \"v_o67-Z8n-jEE\": {\"duration\": 177.03, \"timestamps\": [[0, 164.64], [21.24, 46.91], [58.42, 76.12], [85.86, 111.53], [113.3, 161.98]], \"sentences\": [\"A man leans on a bathroom sink while talking.\", \" The man shows and talks about about a product in a bottle.\", \" The man talks about a powdered product in a can.\", \" The man picks up a scrubber pad and spray bottle and holds them up to show.\", \" The man scrubs off the bathroom sink and toilet areas using the spray bottle solution.\"]}, \"v_CzyMYAvKE2E\": {\"duration\": 44.26, \"timestamps\": [[0, 11.06], [11.06, 18.81], [18.81, 41.82]], \"sentences\": [\"A knife cuts the top of a pumpkin.\", \" Then, the knife cuts the eyes and the nose of the pumpkin.\", \" After, the knife cut the mouth and put a candle.\"]}, \"v_5QbiJmDyoM0\": {\"duration\": 97.69, \"timestamps\": [[0, 15.14], [16.12, 97.69]], \"sentences\": [\"A gymnast is seen standing ready before a beam and raising her arms up into the air.\", \" She then climbs on the beam and performs a gymnastics routine in front of the crowd and ends with her flipping on the side and presenting her arms up to the air while walking away.\"]}, \"v_shGGt9TRlkk\": {\"duration\": 37.18, \"timestamps\": [[0, 35.5], [24.35, 35.5]], \"sentences\": [\"People are taking a break from kayaking to eat lunch on a beach.\", \"  One person then washes his hands in the water.\"]}, \"v_oyLTgy93soQ\": {\"duration\": 42.15, \"timestamps\": [[0, 17.28], [0, 3.37], [17.91, 26.34], [26.76, 42.15]], \"sentences\": [\"A gymnast holds a heavy ball on his right hand, then the gymnast turns to his side and throws the ball to the ground while people watch him.\", \" A person cleans his face with a towel.\", \" Then, a man kneel to see where the ball fall, and a person measure the distance.\", \" The gymnast seats with other people.\"]}, \"v_LBh2kEwx2cQ\": {\"duration\": 146.22, \"timestamps\": [[0, 44.6], [47.52, 146.22]], \"sentences\": [\"A man is seen laying plaster down all along a floor and speaking to the camera while putting a board over a bucket.\", \" The man then spreads the plaster around the floor and moves around to different spots on the floor.\"]}, \"v_tzwIHzuzG9c\": {\"duration\": 24.57, \"timestamps\": [[0, 24.57], [10.56, 16.46]], \"sentences\": [\"A barber uses electric sheers to buzz a mans hair.\", \" The man uses a comb to help style the hair.\"]}, \"v_JUfowIpmwaE\": {\"duration\": 187.82, \"timestamps\": [[3.76, 61.04], [61.04, 114.57], [115.51, 178.43]], \"sentences\": [\"People surf on sailboards in the ocean, one person falls when demonstrates a turn.\", \" Surfers spin the sail holding the handle only with one hand.\", \" A sailer spins his sail with both hands without falling to the water.\"]}, \"v_bnQVFmXUx_U\": {\"duration\": 131.01, \"timestamps\": [[0, 131.01], [46.51, 65.5], [104.15, 110.7]], \"sentences\": [\"A man cleaning a shoe that's sitting on a black mat in front of him.\", \" He scrubs the shoe with a brush.\", \" He sprays something on the shoe.\"]}, \"v_BSdXxBOJ12A\": {\"duration\": 238.01, \"timestamps\": [[0, 28.56], [26.18, 53.55], [52.36, 207.06], [205.87, 238.01]], \"sentences\": [\"A large group of field hockey players are seen performing a game on a large field with many others watching.\", \" Many goals are almost shot but the goalie blocks the shots.\", \" Several more games are shown with the same team with the goalie being the main focus each game.\", \" In the end several shots are shown of the goalie making saves.\"]}, \"v_xoSA8_kTiBY\": {\"duration\": 82.55, \"timestamps\": [[0, 5.78], [6.19, 16.1], [16.92, 70.16], [72.64, 82.55]], \"sentences\": [\"A woman is talking inside a fitness center.\", \" She gets on a bike with other people, and begins riding while she talks.\", \" She lies on the floor and does aerobic exercises before getting back on the recumbent bike for an extended period of time.\", \" She finally slows to a stop.\"]}, \"v_Wy0u0amd4Ko\": {\"duration\": 60.67, \"timestamps\": [[0.3, 34.28], [23.66, 57.94]], \"sentences\": [\"Two people are seen holding tennis rackets and hitting around a ball in a closed room.\", \" The boys continue hitting the ball around the room while chasing after it several times.\"]}, \"v_WNd6SHMi30M\": {\"duration\": 51.2, \"timestamps\": [[0, 3.33], [3.84, 4.86], [5.12, 7.68], [7.94, 11.52], [11.78, 13.82], [14.08, 16.64], [16.9, 19.46], [19.71, 22.53], [22.78, 25.86], [26.11, 27.39], [27.9, 30.72], [31.23, 51.2]], \"sentences\": [\"A red car is seen parked.\", \" A car wash structure is shown.\", \" A woman in a pink shirt cleans the back of a truck.\", \"  A big truck goes through the car wash.\", \" A black sedan is parked by the detail shop area.\", \" A young man sprays down a white truck.\", \" The big truck leaves the car wash.\", \"  A woman cleans the window of a big truck.\", \" A young man cleans a Nissan and its license plate area.\", \" A young woman cleans the engine area of a car.\", \"  A young man cleans the wheels of a white car.\", \" Information of the car wash is displayed.\"]}, \"v_ku65ME0vW8s\": {\"duration\": 32.76, \"timestamps\": [[0, 32.76], [0, 0.98], [0.98, 1.64], [1.64, 27.69], [29.65, 29.98], [31.45, 32.76]], \"sentences\": [\"A boy plays in a playground.\", \" A boy stand and claps hand.\", \" A boy jumps to grab monkey bars.\", \" A boy swings on the monkey bars.\", \" The boy swings off the monkey bars and lands.\", \" Boy climbs the stairs with a smile.\"]}, \"v_tJ2xOG_EWOg\": {\"duration\": 216.67000000000002, \"timestamps\": [[0, 28.17], [33.58, 176.58], [179.83, 216.67]], \"sentences\": [\"Someone is seen peeling the outside of a pumpkin.\", \" They then carve a face into the pumpkin.\", \" The final product is then shown.\"]}, \"v_jM3Buw2Kidk\": {\"duration\": 124.18, \"timestamps\": [[0, 42.84], [41.6, 124.18]], \"sentences\": [\"A person is seen kite surfing along the water and eventually falling in.\", \" He climbs back on the board and continues riding along while the camera pans out.\"]}, \"v_m9CbLJdYqHw\": {\"duration\": 43.0, \"timestamps\": [[0.22, 10.97], [13.55, 32.25], [28.6, 41.71]], \"sentences\": [\"A woman is seen speaking to the camera while kneeling down on one knee.\", \" The woman then moves her arms up above her head.\", \" She moves her arms down and then back up again several times.\"]}, \"v_6Ni6csyQbzw\": {\"duration\": 73.99, \"timestamps\": [[0, 6.66], [7.77, 48.46], [53.64, 73.99]], \"sentences\": [\"A man holding the camera is inside a gate while wearing a helmet and talking with another man.\", \" He releases from the gate, dirt biking in a race with others.\", \" He goes over numerous hills and passes the watching crowd before coming to a stop on the grass.\"]}, \"v_f6wAW0Jv2Eo\": {\"duration\": 223.6, \"timestamps\": [[0, 14.53], [27.95, 108.45], [117.39, 166.58], [172.17, 223.6]], \"sentences\": [\"A man is standing next to a flowing waterfall.\", \" Another man appears on a bridge close by.\", \" The people are cooking on a grill, and rafting in the water.\", \" They take turns going down the river.\"]}, \"v_eyBSKNXo6Vo\": {\"duration\": 124.75, \"timestamps\": [[8.73, 11.23], [16.84, 19.96], [45.53, 49.28]], \"sentences\": [\"A man in a blue shirt is standing on a beach.\", \" A little boy in a blue life jacket is standing in the water.\", \" He is being pulled behind a boat in a raft.\"]}, \"v__8KsVaJLOYI\": {\"duration\": 101.17, \"timestamps\": [[0, 10.62], [11.13, 70.82], [71.32, 101.17]], \"sentences\": [\"A man is shown running that leads into an intro, followed by a photograph of him.\", \" Next are clips of the man shown scoring various goals in a sport and celebrating with his team mates.\", \" The people in the audience cheer and the shot is seen again in slow motion.\"]}, \"v_B1DNoole3Wo\": {\"duration\": 93.41, \"timestamps\": [[0, 20.08], [20.08, 37.37], [37.37, 93.41]], \"sentences\": [\"A young girl is shown speaking to the camera with an older man smoking a cigarette in the background.\", \" More text is shown and another child is seen speaking to the camera while her mom smokes and she breathe in an inhaler.\", \" An older woman is shown smoking while using an inhaler and the truth logo is shown afterwards.\"]}, \"v_H1cKUnazzFM\": {\"duration\": 30.4, \"timestamps\": [[0, 1.98], [1.98, 12.16], [12.16, 30.4]], \"sentences\": [\"blond man is in an open field clean his shoes in a towel.\", \" he walks into a concrete circle while holds a ball.\", \" grab impulse with the ball and make a bullet throw.\"]}, \"v_O0KUnuhLwj0\": {\"duration\": 112.18, \"timestamps\": [[0, 16.83], [17.95, 106.01], [61.7, 67.87], [88.06, 97.03], [97.59, 112.18]], \"sentences\": [\"A sitting man holds a pack of cigarettes and a lighter to the camera.\", \" The man puts a cigarette in his mouth and smokes the cigarette fast.\", \" The man removes the cigarette and puts it back.\", \" The man shows the camera the end of the cigarette and smokes the rest.\", \" The man removes the cigarette and shows it to the camera.\"]}, \"v_sIzcPVbn0lg\": {\"duration\": 52.2, \"timestamps\": [[0, 52.2], [1.57, 52.2], [0, 50.89]], \"sentences\": [\"little kid is dancing waring a pink dress in a room.\", \" kid is jumping in the kitchen going side to side like dancing.\", \" little blonde kid is in kithen holding two toys on her hands.\"]}, \"v_PwOMgya8qYI\": {\"duration\": 152.11, \"timestamps\": [[7.61, 13.69], [14.45, 49.44], [49.44, 131.58]], \"sentences\": [\"A woman is carrying hula hoops over her shoulder.\", \" They are stretching on a mat.\", \" They start hula hooping on the beach.\"]}, \"v_Yi-0wjSu0E0\": {\"duration\": 27.05, \"timestamps\": [[0.27, 15.42], [10.96, 25.7]], \"sentences\": [\"A close up of a mop is seen followed by a person pushing the mop along the floor.\", \" The person unhooks the mop and shows it off to the camera and placing it back down.\"]}, \"v_VAG6ECk5WYo\": {\"duration\": 214.44, \"timestamps\": [[0, 12.87], [26.8, 53.61], [33.24, 183.34], [184.42, 188.7], [206.93, 214.44]], \"sentences\": [\"An empty ice rink is seen with stationary pucks.\", \" Teams gather around a man making announcements before the match.\", \" Different teams slide stones down lanes in an ice rink while teammates guide with brooms.\", \" The winning team poses for a photograph.\", \" All the teams get together in a large group and pose for a photo.\"]}, \"v_-faeAVsbBG0\": {\"duration\": 85.78, \"timestamps\": [[0, 82.34], [19.3, 85.78], [55.75, 85.78], [83.63, 85.78]], \"sentences\": [\"A group of people exercise together with some sort of step implement.\", \" One woman in the background stops exercising and examines an object.\", \" A second woman stops and joins the woman in examining the object.\", \" All of the people stop as the exercise ends.\"]}, \"v_zN9COeDCm9Q\": {\"duration\": 209.35, \"timestamps\": [[1.05, 9.42], [18.84, 208.31], [97.35, 116.19]], \"sentences\": [\"People are standing on snow boards.\", \" People are snow boarding or skiing down a snow covered slope.\", \" People are leaving silver railings to ski or snow board.\"]}, \"v_XvM1rCVQWWY\": {\"duration\": 107.97, \"timestamps\": [[18.9, 26.99], [26.45, 31.85], [46.97, 92.32]], \"sentences\": [\"A man is kneeling down painting a curb.\", \" He puts a plastic sheet over the curb.\", \" He paints the roof of a building with a roller brush.\"]}, \"v_sMITf5WBIxM\": {\"duration\": 158.45, \"timestamps\": [[0.79, 21.39], [22.18, 55.46], [55.46, 137.85], [137.85, 146.57]], \"sentences\": [\"A woman washes the hair of a lady, after she applies a cream and rub the hair.\", \" Then, the woman combs the hair of the lady with an electric comb dryer to straighten the hair.\", \" After, the woman uses an iron comb and a regular comb and to continues straighten the hair.\", \" The lady smiles and shows her new look.\"]}, \"v_uaBTWbu0jps\": {\"duration\": 40.06, \"timestamps\": [[0, 25.84], [25.64, 33.45], [33.45, 40.06]], \"sentences\": [\"A man prepares to hammer throw.\", \" The man spins and releases.\", \" The man watches his throw.\"]}, \"v_b-3l2qIHL5w\": {\"duration\": 117.84, \"timestamps\": [[0, 25.34], [24.75, 76.6], [78.36, 117.84]], \"sentences\": [\"A man is seen kneeling on a platform while speaking to the camera and placing his hands on his hips.\", \" He holds a piece of exercise equipment and places a towel in between his arm and waist.\", \" He moves the equipment back and fourth while still speaking to the camera and pauses in the end.\"]}, \"v_656VWQU5dgE\": {\"duration\": 91.74, \"timestamps\": [[0, 20.18], [19.27, 81.19], [26.61, 29.36], [40.37, 44.5], [59.17, 64.68], [82.11, 87.16], [87.16, 91.74]], \"sentences\": [\"We see a crowd running and various sports images.\", \" We see a bunch of young people fencing.\", \" A Red light on the left turns on.\", \"  We see a person filming the match.\", \" We see table tennis, tennis, and archery.\", \" Kids jump up and down, and people shake hands.\", \" We then see the closing screen.\"]}, \"v_9IvKkq9k81o\": {\"duration\": 49.44, \"timestamps\": [[0, 13.59], [13.1, 45.98]], \"sentences\": [\"A person is seen sitting at a table and cutting out an outline on the pumpkin.\", \" The man continues cutting the pumpkin and the camera zooms in on it's face in the light and in the dark.\"]}, \"v_YS8swiRbbIE\": {\"duration\": 79.27, \"timestamps\": [[0, 5.95], [6.34, 44.39], [46.37, 79.27]], \"sentences\": [\"A newspaper with articles spins around.\", \" Dancers in colorful outfits do solo performances with a baton.\", \" Different groups of dancers perform dance routines with batons.\"]}, \"v_xqI9M6QiHws\": {\"duration\": 162.98, \"timestamps\": [[0, 9.78], [13.04, 16.3], [17.93, 27.71], [30.15, 77.42], [80.68, 96.97], [98.6, 118.16], [123.05, 158.91]], \"sentences\": [\"A woman is standing in a kitchen.\", \" She talks about making red velvet cupcakes.\", \" Images of red velvet cupcakes appear.\", \" She is shown adding all the ingredients to a sifter, then stirring them into a bowl with vanilla.\", \" When she is done, she pours the batter into a coffee mug.\", \" She then places the mug in a microwave, and the finished cake is shown.\", \" She stirs cream cheese and sugar into a bowl to make cream cheese frosting, then places the cupcake into a liner and tops it with the frosting.\"]}, \"v_coEvniePQLA\": {\"duration\": 143.5, \"timestamps\": [[9.33, 44.49], [44.49, 50.94], [50.94, 76.77], [76.06, 130.59], [130.59, 134.89]], \"sentences\": [\"A person is chopping a mango on a red board.\", \" They stack the mango slices on a plate.\", \" They skin lemons and set them on the plate.\", \" They put the fruit into a juicer and pour the juice into a large jug.\", \" They shake the jug in their hands.\"]}, \"v_f3YyN44Dx8M\": {\"duration\": 128.08, \"timestamps\": [[30.74, 73.01], [0, 128.08]], \"sentences\": [\"The man lies on the ground and has the dog jump over him catching a Frisbee.\", \" The man throws Frisbee discs for his dog to catch at a baseball field.\"]}, \"v_PmeBYO3ARvk\": {\"duration\": 93.88, \"timestamps\": [[0, 22.53], [22.53, 51.63], [51.63, 93.88]], \"sentences\": [\"A girl practice twirling a baton around her arm,back and neck while a person watch from far in the back ground.\", \"The girl then  grabs one of her legs in the air and twirl around to practice her balance.\", \"Finally the girl practice twirling baton in her hands to do tricks.\"]}, \"v_ynUBEoobKW0\": {\"duration\": 40.8, \"timestamps\": [[0, 8.98], [8.77, 31.82], [28.76, 39.37]], \"sentences\": [\"A gymnast is seen standing before a beam while a large audience watches them on the side.\", \" A woman helps the girl up onto a beam while other girls are seen practicing on the sides.\", \" The girl jumps off the beam and the audience cheers.\"]}, \"v_EwEV5_sHGJk\": {\"duration\": 204.07999999999998, \"timestamps\": [[0, 47.96], [48.98, 113.26], [113.26, 204.08]], \"sentences\": [\"A blue cloth with several large pink flowers is laying on a blue ironing board.\", \"A lady then begins to unfold and fold the cloth and talk about the pattern that is displayed.\", \"A white piece of paper that is between the cloth and ironing board is then folded over the fabric and the person begins to iron over it.\"]}, \"v_GaIvG8u1tzo\": {\"duration\": 122.96, \"timestamps\": [[0, 58.41], [58.41, 122.96]], \"sentences\": [\"A man pierce the left side of the face next to the eye and cleans the area.\", \" The man uses a sharp tool to put in the hole.\"]}, \"v_-NM-0NZXRNw\": {\"duration\": 201.18, \"timestamps\": [[0, 38.22], [38.22, 110.65], [110.65, 163.96], [164.97, 201.18]], \"sentences\": [\"Several people are shown before a crowd of people begin to stand up in the bleachers to support them.\", \"Next, a group of paint ballers begin to take off and shoot one another.\", \"While they are hitting each other,the concession stand is shown as well as many people entering and buying snacks.\", \"Multiple games are taking place and throughout it,teams begin to win are shown holding their flags up.\"]}, \"v_uJ_QCxMDfag\": {\"duration\": 29.63, \"timestamps\": [[0, 24.59], [7.26, 20.74], [24.59, 29.63]], \"sentences\": [\"A man mows the grass of a backyard using a mowing machine.\", \" An old person stands on the sidewalk watching the man.\", \" Then, the man waves and smile and continues mowing the grass.\"]}, \"v_pRkJ_9zq16A\": {\"duration\": 63.37, \"timestamps\": [[0, 3.8], [3.8, 32.95], [33.9, 63.37]], \"sentences\": [\"A black and red screen appears with several rows of Chinese writing on it.\", \"Next,four males begin playing indoor soccer and shows off their intricate dribbling skills.\", \"The game proceeds and someone makes a goal and then their DVD flashes on the screen.\"]}, \"v_s_QH-5G33Fw\": {\"duration\": 158.9, \"timestamps\": [[4.77, 68.32], [65.15, 130.29], [131.09, 158.9]], \"sentences\": [\"Two people are seen walking to one another leads into them playing a volleyball match with others.\", \" The man continues taking over by pushing his team mate down and jumping on her back.\", \" He spikes the ball in the end and cheers with the woman.\"]}, \"v_7X3wPRKuAsU\": {\"duration\": 91.39, \"timestamps\": [[0, 15.08], [14.17, 73.57], [74.49, 91.39]], \"sentences\": [\"A man is seen throwing a ball several times and hits a player who yells at a ref.\", \" The player speaks to multiple people while more walk around a field and the same clip is shown again in slow motion.\", \" More clips of the game are shown as well as coaches and refs speaking to one another.\"]}, \"v_pCUun9uE3h8\": {\"duration\": 81.36, \"timestamps\": [[0.81, 28.48], [24.41, 59.8], [60.21, 79.33]], \"sentences\": [\"A large group of people are seen walking down the street holding flags while many watch on the side.\", \" More and more people continue marching down the road while several people walk in and out of frame.\", \" People drumming are shown in the end as a camera closes in around the people.\"]}, \"v_QOMvNgo6CQ4\": {\"duration\": 47.13, \"timestamps\": [[0, 5.42], [8.01, 40.29], [41, 47.13]], \"sentences\": [\"A small boy is kneeling at a man's foot.\", \" He is brushing and polishing the man's shoe for him.\", \" He continues brushing and polishing, intent on his work.\"]}, \"v_J27dBmSpRW4\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 31.04], [35.58, 122.65], [99.94, 146.88]], \"sentences\": [\"A shot of a building is shown followed by a man speaking to the camera.\", \" Another man sits next to them while one holds a hookah and take puffs from the hose.\", \" The man take turns smoking from the hookah and the camera pans around the area.\"]}, \"v_HLZLkI1NYAs\": {\"duration\": 66.25, \"timestamps\": [[0, 5.3], [6.62, 15.24], [16.23, 55.32], [54.65, 66.25]], \"sentences\": [\"Several scenes are shown of the inside of a bowling alley.\", \" Waitresses carry drinks to the patrons.\", \" A man rolls a bowling ball, then send it down the lane, followed by another.\", \" He makes a strike, then lets the slower ball hit the remaining two pins.\"]}, \"v_uIOIcv5MhuA\": {\"duration\": 27.18, \"timestamps\": [[0, 2.04], [2.04, 14.54], [14.54, 18.62], [18.62, 27.18]], \"sentences\": [\"A blond woman dressed in sexy black pants lies on a carpeted floor.\", \" The blond woman opens a carton of cigarettes places a cigarette in her mouth lights a match and then lights the cigarette.\", \" The camera man zooms in on the woman's face as she drags on the cigarette.\", \" The camera pans over the woman's body as she lies on the floor ending with a side view of the woman's face as she exhales the smoke.\"]}, \"v_J-uW8raljqE\": {\"duration\": 119.37, \"timestamps\": [[0, 14.32], [12.53, 119.37]], \"sentences\": [\"A man is playing with his dog, while girl is holding a frisbee on top of the other dog.\", \" The man in black shirt threw the frisbee in the green field and the dog chase after it and bring it back to the man, the man continue to threw the frisbee and the dog keep chasing it and return it to the man.\"]}, \"v_f7ndXtwTep0\": {\"duration\": 125.09, \"timestamps\": [[1.25, 35.65], [39.4, 95.69], [93.81, 123.84]], \"sentences\": [\"A woman is seen wearing a hat and speaking to the camera while standing outside.\", \" She holds up various objects and begins washing clothes.\", \" She puts clothes into a wet bucket while stopping to speak to the camera.\"]}, \"v_LnDz1rvDaPY\": {\"duration\": 73.99, \"timestamps\": [[0, 25.16], [25.53, 54.75], [55.12, 60.3], [62.52, 73.99], [71.77, 73.99]], \"sentences\": [\"We see a talking lady near her car on a snowy day.\", \" We see the lady scrape snow from her windshield with a scraper.\", \" We see a man on the other side of the car.\", \" The man takes the scraper and finishes the windshield.\", \" The lady waves by to the camera.\"]}, \"v_TDfWOcKi684\": {\"duration\": 222.15, \"timestamps\": [[10, 81.08], [81.08, 96.63], [96.63, 173.27]], \"sentences\": [\"Men shoot with a rifle that shoots tiny balls while protection behind inflatable protectors.\", \" Men hide behind a protector while covering behind a protector.\", \" After, a group of men shoot to other people.\"]}, \"v_THOLslLjRqs\": {\"duration\": 150.7, \"timestamps\": [[0, 23.36], [20.34, 44.46], [116.04, 150.7]], \"sentences\": [\"A woman is painting a drawer orange.\", \" She dips the paint brush into a paint can and continues painting.\", \" Two kids are watching her in front of her.\"]}, \"v_l5QQ1vVctOo\": {\"duration\": 25.47, \"timestamps\": [[0, 5.99], [5.99, 10.44], [10.44, 25.22]], \"sentences\": [\"A girl tries to put a contact lens in her left eye.\", \" The girl holds her eye lid open with her right fingers.\", \" The girl gets her eye open enough and applies the contact with her left finger but ends up on her eye brow as she laughs with frustration.\"]}, \"v_V35ubrbe8gA\": {\"duration\": 223.56, \"timestamps\": [[0, 57.01], [57.01, 172.14], [174.38, 223.56]], \"sentences\": [\"An older man is shown talking to the camera while placing his hands along a tree bush.\", \" The camera pans around the bush and the man uses scissors to cut the brush up.\", \" He shows off the trimmed bush and moves his hands around and along the plant.\"]}, \"v_ZQSa_8wofFw\": {\"duration\": 91.21000000000001, \"timestamps\": [[0, 35.57], [13.23, 15.96], [35.57, 47.43], [47.43, 91.21]], \"sentences\": [\"a man and a woman are sitting on deck chairs on sunny day.\", \" a litle toy boat is on a handwash.\", \" woman is in a living room playing shuffleboard.\", \" someone is explaining mathematical formulas in a paper in the deck chairs while drinks cocktails.\"]}, \"v_X0UmqVLOAK0\": {\"duration\": 12.1, \"timestamps\": [[0, 12.1], [0.73, 12.1], [8.17, 12.1]], \"sentences\": [\"A man is standing behind a fence.\", \" He holds a ball in his hand and spins around.\", \" He throws the ball onto the field.\"]}, \"v_UcI4miTi0Cg\": {\"duration\": 74.3, \"timestamps\": [[2.6, 19.69], [19.69, 29.35], [29.35, 70.59]], \"sentences\": [\"People play soccer game inside a court.\", \" A player receives a ball on his chest and pass to the neck of other man, then they continue playing.\", \" A player wearing white t-shirt stand on front a ball to shoot it, but a young player comes behind take the ball and score, this scene is played several several times.\"]}, \"v__8HTgaTPFRo\": {\"duration\": 83.71000000000001, \"timestamps\": [[0, 26.79], [26.79, 83.71]], \"sentences\": [\"A black man wearing a hospital employee shirt applies an optic solution to his finger.\", \" The man in the dark hospital shirt reapplies the optic solution to his finger and proceeds to demonstrate how to insert a contact lens to the eye.\"]}, \"v_qmlohhdz784\": {\"duration\": 180.7, \"timestamps\": [[0, 180.7], [6.32, 180.7], [12.65, 180.7]], \"sentences\": [\"People are standing in a room with hardwood floors.\", \" They are playing a game of wall ball.\", \" There is a white cup sitting on the floor.\"]}, \"v_wd7W8NTi_58\": {\"duration\": 97.00999999999999, \"timestamps\": [[0, 41.72], [40.26, 97.01]], \"sentences\": [\"Names are shown on a list and leads into a person riding down a river on a kayak while others watch.\", \" More people are seen riding down the river and ends with people sitting inside at tables and smiling to the camera.\"]}, \"v_Ovtfld_ZyCs\": {\"duration\": 220.47, \"timestamps\": [[0, 54.02], [55.12, 220.47]], \"sentences\": [\"man is standing in a roofed gym talking to the camera.\", \" man starts dancing break dance and showing the corret way of doing it.\"]}, \"v_eH8PT9fzbqU\": {\"duration\": 26.31, \"timestamps\": [[0, 4.21], [0, 13.15], [10, 26.31]], \"sentences\": [\"There are two people on a fenced in field and one of them has  rope that they're moving, another person is looking down at something in their hands.\", \" A boy is standing on the outside of the field with other people just standing there and he walks onto the field while the woman who was looking at something in her hands walks off.\", \" The boy swings an object in his hands, does a quick spin and throws it quickly The boy starts to walk off the field and the woman who previously walked off walks back onto the field.\"]}, \"v_fKy5rh-SoTM\": {\"duration\": 105.68, \"timestamps\": [[0, 26.42], [23.25, 79.78], [67.63, 100.39]], \"sentences\": [\"A close up of a pool table is seen followed by men standing around it.\", \" The men then begin hitting the ball around while others continue to watch.\", \" The men take turns playing the game of pool and laughing to one another.\"]}, \"v_jNPOEMYJlgc\": {\"duration\": 79.67, \"timestamps\": [[0, 49], [49, 77.28]], \"sentences\": [\"A man is seen sitting at a desk and begins to solve a rubix cube.\", \" The man solves the puzzle and then grabs the camera to point to the computer to show his time.\"]}, \"v_pe0MhPhhVIk\": {\"duration\": 52.29, \"timestamps\": [[0.52, 28.5], [23.79, 50.98]], \"sentences\": [\"Three people are seen playing a game of badminton with one another and hitting a birdie over the net back and fourth.\", \" The kids continue hitting back and fourth while the camera pans around their movements.\"]}, \"v_fykq7xuc3zk\": {\"duration\": 6.06, \"timestamps\": [[0, 0.76], [0.91, 4], [4.18, 6.06]], \"sentences\": [\"a man runs up a diving board.\", \" He bounces several times in place.\", \" He then dives into the massive pool.\"]}, \"v_aAY_M6M26TI\": {\"duration\": 72.73, \"timestamps\": [[0, 45.45], [0, 49.82], [28.36, 47.27], [50.91, 71.63]], \"sentences\": [\"Two people play a ping pong match in a room.\", \" The person scores multiple points in the game in a row.\", \" People are seen watching the game.\", \" The lady holds the ping pong ball while discussing before she leaves.\"]}, \"v_JMlNfZlOyX8\": {\"duration\": 121.84, \"timestamps\": [[0, 121.84], [11.57, 121.84], [76.15, 81.02], [81.63, 86.5], [109.04, 109.65]], \"sentences\": [\"Two girls are playing dress up in a bathroom.\", \"  The girls clean their faces while laughing.\", \"  One girl dries her face on a towel hanging on the wall.\", \"  The second girl dries her face on the towel.\", \"  The first girl dries her face on the towel again.\"]}, \"v_OMq736aZeV8\": {\"duration\": 181.4, \"timestamps\": [[0, 179.58], [45.35, 181.39]], \"sentences\": [\"A man is going kayaking in a lagoon.\", \"  He goes inside rock formations and enjoys the open water.\"]}, \"v_Hy8WbkpvUlA\": {\"duration\": 220.17000000000002, \"timestamps\": [[0, 8.81], [8.81, 26.42], [26.42, 49.54], [49.54, 85.87], [85.87, 191.55], [118.89, 220.17]], \"sentences\": [\"A list of items is shown that are required to wax a snowboard.\", \" A young man is shown spraying down a board and then cleans the surface.\", \" The boy then shows two wax pieces that are placed against the board in order to drip the melting wax onto the surface.\", \" The boy irons the wax down flat over the entire surface.\", \" The kid then begins to use a scraping tool to remove the wax layer from the snowboard.\", \"  The boy buffs the item with a sponge to polish it off as an older man dances behind him for the camera.\"]}, \"v_nfIM66dU_J0\": {\"duration\": 94.22999999999999, \"timestamps\": [[0, 19.32], [19.32, 58.42], [58.42, 94.23]], \"sentences\": [\"Five young boys and a girl are in a large gym doing various exercises,such as push ups,jumping up and down,crunches and running through ladders on the floor.\", \"After, an instructor kneels on his knees and holds up a map as a boy begins kicking it repeatedly.\", \"Another boy is then shown wearing boxing gloves and he makes several punches and kicks.\"]}, \"v_-GRvxWH4axc\": {\"duration\": 21.97, \"timestamps\": [[0.11, 21.86], [0.77, 18.34], [18.34, 21.86]], \"sentences\": [\"A little girl at an outdoor event attempts to break a pinata by hitting it over and over again with a stick.\", \"  A barefoot little girl in a pink sundress and baseball cap, violently hits a pink, cat shaped, pinata over and over with a long stick as the pinata dangles in the air above her.\", \"  The girl stops hitting the pinata and walks away from it as a little boy approaches the pinata with a long stick as onlookers watch and other children mill around the lawn where this is happening.\"]}, \"v_iUMDlxU14bM\": {\"duration\": 134.19, \"timestamps\": [[0, 11.41], [15.43, 40.93], [51.66, 61.06], [62.4, 108.69], [116.74, 132.85]], \"sentences\": [\"people ride on a camel in front of a stage area.\", \" children ride on a camel guided by a trainer in front in a parking lot area.\", \" The trainer guides the children on a camel in front of the stage holding presenters and a large crowd.\", \" The trainer walks the camel in a circle in a wide circle in the parking lot area with the children riding.\", \" The children wave flags as they are led on the camel to the front of the stage.\"]}, \"v_pIk_bbjCNDo\": {\"duration\": 22.27, \"timestamps\": [[0, 5.9], [5.34, 15.36], [13.92, 21.49]], \"sentences\": [\"A woman is seen standing in front of a mirror while holding a monkey.\", \" She then begins brushing her teeth as well as the monkey's.\", \" She continues to brush her teeth as well as helping the monkey shes holding.\"]}, \"v_m5NK0eErs90\": {\"duration\": 75.81, \"timestamps\": [[0, 44.73], [44.73, 75.81]], \"sentences\": [\"Several boys are in a pool and one throws a ball into the net and the pattern is repeated several times as the men compete for it.\", \"Finally,some one makes a goal as time runs out and there's an instant replay and the game is over.\"]}, \"v_2GEZgHcA7zU\": {\"duration\": 99.66, \"timestamps\": [[0, 38.37], [38.87, 48.34], [48.83, 99.66]], \"sentences\": [\"Video of a young man balancing on a diving board is shown from above.\", \"  The man dives into the indoor pool.\", \" Several other people dive from the board into the pool.\"]}, \"v_HQP20PGfwYM\": {\"duration\": 178.01, \"timestamps\": [[0, 178.01], [13.35, 178.01], [138.84, 178.01]], \"sentences\": [\"People are laying carpet in a room.\", \" They are rubbing a metal device over the carpet.\", \" They are using a steamer to get the carpet to bind together.\"]}, \"v_rRkwB9EcEMs\": {\"duration\": 24.94, \"timestamps\": [[0, 14.59], [14.71, 24.94]], \"sentences\": [\"A man is seen standing before a set of weights, leading into him bending over and pulling the weights on his shoulders.\", \" He then jumps into a lunge and lifts the weights over his hand, throwing them down in the end.\"]}, \"v_lgB0Ynn38-k\": {\"duration\": 107.09, \"timestamps\": [[0, 16.06], [15.53, 102.81]], \"sentences\": [\"An advertisement is shown for a beer pong ball washer.\", \"  Tables of beer pong are being played simultaneously.\"]}, \"v_x6Gs4PINiiI\": {\"duration\": 157.53, \"timestamps\": [[1.58, 44.89], [39.38, 100.82], [81.13, 149.65]], \"sentences\": [\"A small child is seen moving down a path playing hop scotch.\", \" The girl moves up and down the chalk while looking down at her feet.\", \" The girl stops to speak to the camera as well as show off her scraped knee and walk around the area.\"]}, \"v_pOVICBn8QMw\": {\"duration\": 50.1, \"timestamps\": [[0, 7.51], [7.76, 44.33], [44.84, 50.1]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He does a gymnastics routine on the balance beam.\", \" He jumps off the balance beam and lifts his arms in the air.\"]}, \"v_5QS_VBDwKzw\": {\"duration\": 142.5, \"timestamps\": [[0, 17.81], [17.81, 33.49], [33.49, 81.94], [81.94, 93.34], [93.34, 110.44], [110.44, 142.5]], \"sentences\": [\"A little girl crouches down on the carpeted floor and is placing sponge curlers on the carpet.\", \" A lady with a black blouse sits next to the child and begins placing the curlers in the little girls hair.\", \" While the lady in the black blouse curls the child's hair the little girl is holding a sponge curler and hands it to the lady one at a time.\", \" The little girl with all the curlers in her hair looks at herself in the mirror and poses and smiles at herself.\", \"The little girl sits on the sofa without the curlers in her hair.\", \" The little girl now has clips in her hair while she carries a doll across the room to the sofa wear a baby is getting his diaper changed as she turns to the cameraman holding her doll.\"]}, \"v_arnKDX_ToxE\": {\"duration\": 133.05, \"timestamps\": [[3.99, 75.84], [76.5, 103.11], [103.78, 133.05]], \"sentences\": [\"A person workouts in a cardio machine in a gym while explaining.\", \" Then, he stops and talks pointing the panel of the cardio machine.\", \" Then, the man continues exercising while talking.\"]}, \"v_RVHx_Otzcl0\": {\"duration\": 222.89, \"timestamps\": [[0, 117.02], [109.22, 209.52]], \"sentences\": [\"The people in white costumes are dancing slowly on the stage, raising their legs and arms and forming into four groups.\", \" Then the ballerina in leotards started to dance in modern dance.\"]}, \"v_c7HroaL0WDc\": {\"duration\": 143.45, \"timestamps\": [[0.72, 58.1], [50.93, 137.71]], \"sentences\": [\"An intro leads into several shots of a boat sitting on the water as well as people riding behind the boat and a man speaking to the camera.\", \" A person demonstrates how to use the boat while the camera pans around the inside and outside and showing more clips of people wakeboarding and moving.\"]}, \"v_8Da6w-Eg3Ko\": {\"duration\": 226.02, \"timestamps\": [[0, 11.3], [13.56, 226.02], [89.28, 180.82]], \"sentences\": [\"A man starts up a gas powered hedger and hands it to someone standing on a platform.\", \" The man on the platform trims the top of a hedge with the hedge trimmer.\", \" The platform is towed with a tractor alongside the hedge while the man continues to trim it.\"]}, \"v_Kkkrap77n5M\": {\"duration\": 37.57, \"timestamps\": [[2.07, 6.76], [6.76, 37.57]], \"sentences\": [\"An old woman handle an ax to a young lady.\", \" Then, the young lady chop the log in two and she smiles while the\\nchopped wood are on the ground.\"]}, \"v_maHLwXvNN3w\": {\"duration\": 43.89, \"timestamps\": [[0, 11.19], [10.97, 29.84], [29.62, 43.89]], \"sentences\": [\"A man is standing in the room playing a set of orange and white congas with a green taped cross on it.\", \"As the man continues,he begins to move his lips for a while as if he is talking to someone else in the room.\", \"The man then speeds up and continues playing one of the congas.\"]}, \"v_Dl0JNkGbZT4\": {\"duration\": 153.48, \"timestamps\": [[0, 16.88], [16.88, 51.42], [51.42, 135.83], [135.83, 153.48]], \"sentences\": [\"A girl is getting her tounge pierced and she seems to be nervous,the person that is piercing her tounge use a pen to mark on her tounge where she will be making the hole.\", \"the girl then goes to the mirror to make sure that the mark is where she would like the hole to be before she pierce it.\", \"the person piercing the girls tounge now is use a tool to hold her tounge out so she can make the hole,now she leaves the niddle in her tounge and screw on a piece to the bottom of the niddle to the niddle want come out.\", \"finally the girl looks in the mirror and shows her friends how it looks.\"]}, \"v_yj2WJBqmEHk\": {\"duration\": 18.88, \"timestamps\": [[0.28, 4.72], [4.91, 14.63], [11.89, 17.56]], \"sentences\": [\"A person is seen sitting at the top of a hill sitting in a tube.\", \" The person then begins riding down the hill in a tube.\", \" The person rides all the way to the end.\"]}, \"v_roavmdw1ORo\": {\"duration\": 151.84, \"timestamps\": [[0, 12.91], [0, 145.76], [46.31, 95.66], [117.67, 142.73], [145.76, 151.84]], \"sentences\": [\"We see a few title screens.\", \" We see a lady shaving a horse, and title screen.\", \" The lady clips the ear hairs on the horse.\", \" The lady lifts the horses feet.\", \" We then see the ending screen.\"]}, \"v_-TddN8oBvhQ\": {\"duration\": 107.93, \"timestamps\": [[0, 30.22], [30.76, 46.95], [87.96, 100.37]], \"sentences\": [\"A woman is blow drying her hair.\", \" She changes blow dryers and continues blow drying her hair.\", \" She spins around to show her hair.\"]}, \"v_P7UbKv72LAs\": {\"duration\": 218.06, \"timestamps\": [[0, 218.06], [21.81, 137.38], [141.74, 179.9], [187.53, 218.06]], \"sentences\": [\"A guy on the beach with a colorful beach umbrella and a beach chair puts sun block lotion on his body.\", \"the guy puts the lotion on his arms,stomach,chest,waist line and the parts of his back he can reach.\", \"the guy stands and puts on more of the sun block lotion while other people in the back ground stands/sits on the sand talking.\", \"He finally finishes putting on the sun block,sits back down and grabs a can of liquid that he starts to drink.\"]}, \"v_1gp-5iOIfVo\": {\"duration\": 169.68, \"timestamps\": [[0, 28.85], [35.63, 128.96], [135.75, 169.68]], \"sentences\": [\"A group of people are walking outdoors, and people are preparing to run in a race.\", \" They run down city streets and past numerous buildings.\", \" A man runs with a cup and orange in his mouth.\"]}, \"v_d7gY7YJ3Fdc\": {\"duration\": 12.35, \"timestamps\": [[0, 0.31], [2.16, 8.22], [6.79, 11.98]], \"sentences\": [\"A person is seen sitting on the end of a couch holding shoes.\", \" She begins to put one shoe on followed by another.\", \" In the end she shows off her shoes to the camera.\"]}, \"v_DAv8CEings8\": {\"duration\": 47.14, \"timestamps\": [[0, 45.49], [8.72, 43.13]], \"sentences\": [\"A group of elderly people play shuffle board on an outdoor court.\", \" They take turns pushing the puck towards the end of the game board.\"]}, \"v_u9ec3Exc5mI\": {\"duration\": 60.58, \"timestamps\": [[0, 53.92], [34.83, 49.68], [55.73, 60.58]], \"sentences\": [\"A child swings a wooden pole at a large red pinata.\", \" The pinata is raised and lowered while the boy swings to hit it.\", \" A man comes and takes the stick from the boy.\"]}, \"v_Eu3QFCldg0s\": {\"duration\": 154.53, \"timestamps\": [[1.55, 148.35], [5.41, 148.35], [7.73, 148.35], [27.04, 148.35], [40.95, 148.35], [55.63, 148.35], [61.81, 148.35], [92.72, 148.35]], \"sentences\": [\"The boy who's wearing a blue sweater and gray pants is walking this caramel colored dog.\", \" He starts to tug on the dog's leash.\", \" the dog comes along and they keep walking on the concrete path.\", \" the boy stops to look at the camera.\", \" then he lets the dog smell the tree.\", \" Next he runs through the park until he stops to see a black dog sitting by a tree.\", \" next the boys takes the dog near a fallen tree on the ground and they start running together, until they run into another big dog.\", \" then they keep going and all of the dogs try to run behind the other to play.\"]}, \"v_EpWZ_-hNKKs\": {\"duration\": 32.15, \"timestamps\": [[0.48, 32.15], [4.98, 20.58], [20.74, 32.15]], \"sentences\": [\"A few surfers are out in the ocean surfing.\", \" A surfer in a wetsuit rides his surfboard on the waves.\", \" The waves knock him off his surfboard.\"]}, \"v_TokZDNwr664\": {\"duration\": 185.71, \"timestamps\": [[0, 185.71], [50.14, 62.21], [141.14, 166.21]], \"sentences\": [\"Teens rides bumper cars spinning and bumping cars in the carnival.\", \" A girl bumps the car of a boy, then she backs down and continues driving.\", \" Then, a group of cars get stuck, after the teens moves round.\"]}, \"v_NNfAlym-xh8\": {\"duration\": 138.79, \"timestamps\": [[0.69, 39.55], [29.15, 52.74], [52.74, 125.6]], \"sentences\": [\"A person is seen balance on a set of uneven bars while a man watches on the side.\", \" The boy swings his legs several times and ends by falling down and hurting himself.\", \" The man is seen performing on several different gymnastics objects as well as doing push ups.\"]}, \"v_LbS-C68GTX8\": {\"duration\": 164.07, \"timestamps\": [[0, 164.07], [17.23, 31.99], [31.17, 123.05], [79.58, 164.07]], \"sentences\": [\"The young people are playing dodge ball in the gym.\", \" The young people holding the balls are dribbling it and walking forward.\", \" The other group that are on the wall standing are watching as the other group carrying the balls walk up to them and throw the ball.\", \" Two teams started to throw ball on each other.\"]}, \"v_VwmYoF9Rh_8\": {\"duration\": 132.56, \"timestamps\": [[0, 9.94], [10.61, 79.54], [80.2, 132.56]], \"sentences\": [\"Two men are looking down into a water hole.\", \" A view of the water is shown from underneath, then on top.\", \" A group of kayakers gather, then float gently down the stream, enjoying the view of the perfectly clear water.\"]}, \"v_eFbZ0_TJLE0\": {\"duration\": 113.42, \"timestamps\": [[0, 24.39], [28.36, 91.3], [94.14, 113.42]], \"sentences\": [\"Two children dressed as sumo wrestlers join two real wrestlers in a ring.\", \" They show the boys how to wrestle, as they try to push the large men around.\", \" The man gently lifts and sets the boys back down, as they are unable to fight them.\"]}, \"v_we6Ddq1ABcQ\": {\"duration\": 68.06, \"timestamps\": [[0.34, 18.04], [16.67, 56.15], [45.6, 68.06]], \"sentences\": [\"A person is seen hitting a ball while many run around him to grab it.\", \" A player looks around while another steps up to the plate and several players and coaches look around and laugh.\", \" More players are seen walking around and one grabs his hat to pull it down.\"]}, \"v_JHYMG87h3XI\": {\"duration\": 76.35, \"timestamps\": [[0, 7.25], [8.02, 23.29], [22.14, 35.5], [35.12, 48.86], [49.63, 62.99], [62.99, 66.8], [70.62, 76.35]], \"sentences\": [\"A man is floating in the water holding a table and a stool.\", \" The man stands on the table and sits the stool upright.\", \" The man sits on the stool as he water skis on the table.\", \" The man stands on top of the stool then stands up.\", \" The man is standing on a stool as he water skis in  lake.\", \" The man does a spin while on the stool.\", \" The man jumps in the water as the boat drives on.\"]}, \"v_OwchMqCYaF4\": {\"duration\": 169.34, \"timestamps\": [[0, 16.09], [20.32, 29.64], [32.18, 169.34]], \"sentences\": [\"A group of cheerleaders get in formation on a football field.\", \" They spring up and accidentally drop a girl.\", \" Other athletes are then shown flipping, jumping, running, and ultimately falling in a series of bloopers.\"]}, \"v_QHn9KyE-zZo\": {\"duration\": 196.28, \"timestamps\": [[0, 32.39], [33.37, 73.6], [75.57, 196.28]], \"sentences\": [\"A camera shows various shots of a man standing on a string and trying to keep his balance.\", \" More feet are shown trying to balance on the string with a man talking to the camera and others showing how to set it up.\", \" More boys continue balancing on the string with several others being interviewed by the camera.\"]}, \"v_gdyEfPbUEjw\": {\"duration\": 156.62, \"timestamps\": [[0, 33.67], [39.15, 71.26], [73.61, 156.62]], \"sentences\": [\"a man is shown parasailing away from the shore.\", \" He tilts, trying to stay up right on his board.\", \" Another man joins him temporarily, then he sails back to shore.\"]}, \"v_lh8ths6sKAE\": {\"duration\": 32.37, \"timestamps\": [[0.81, 18.29], [18.45, 30.43], [30.59, 32.37]], \"sentences\": [\"A person cleans the floor garage with a large mop.\", \" Then, the man drain the mop in a yellow bucket.\", \" After, the person  go continue cleaning.\"]}, \"v_apjGHMrnMV0\": {\"duration\": 223.86, \"timestamps\": [[16.79, 68.28], [71.64, 136.56], [139.92, 164.54], [167.9, 211.55]], \"sentences\": [\"Men competes weightlifting successfully in the Olympic games.\", \" Then, an athlete wearing purple clothes staggers when the weight is above his head, but after the athlete raises the weight better.\", \" A person raise a weight above his head, and then he falls the weight.\", \" After, a youth performs weightlifting successfully, then jumps happily and is congratulated by people.\"]}, \"v_EYoyxe8hd3g\": {\"duration\": 195.02, \"timestamps\": [[0, 29.25], [29.25, 152.11], [111.16, 195.01]], \"sentences\": [\"A croquet match is occurring during a sunny day.\", \"  People are shown socializing and having a party before the match.\", \"  Then the match happens.\"]}, \"v_GKBYgS99oiI\": {\"duration\": 165.26, \"timestamps\": [[0, 15.7], [28.09, 165.26]], \"sentences\": [\"A girl is shown trying to change a tire.\", \"  She successfully removes the tire, then replaces it with a spare, showing off their dirty hands afterward.\"]}, \"v_C1IuvUSmcvA\": {\"duration\": 238.47, \"timestamps\": [[0, 212.24], [138.31, 144.27], [206.28, 238.47]], \"sentences\": [\"A person is carving a pumpkin outside.\", \" They are taking the inside seeds out of the pumpkin.\", \" They put a candle in the pumpkin.\"]}, \"v_NzrOOXRyDPM\": {\"duration\": 221.26, \"timestamps\": [[0, 2.21], [3.32, 221.26], [60.85, 80.76], [87.4, 130.55], [181.44, 202.46], [203.56, 221.26]], \"sentences\": [\"We see an opening title screen.\", \" We see men in a ring bullfighting.\", \" A man runs out in padding and is trampled by the bull.\", \" The bull knocks a man over and another man pulls the bull off the man.\", \" A bunch of men hold the bull as a man gets on it's back and falls off.\", \" The crowd claps and we see a man hold the flag and drop it.\"]}, \"v_AqTZd5HZKNI\": {\"duration\": 204.24, \"timestamps\": [[0, 201.18], [0, 204.24], [171.56, 204.24]], \"sentences\": [\"man is holding a vacuum and cleaning a carpet.\", \" man is holding an orange vacuum and is vacuuming the white carpet in an empty room.\", \" the mn close the door to vacuum the carpet behind the door.\"]}, \"v_pb0k7YrMwZY\": {\"duration\": 6.85, \"timestamps\": [[0, 0.24], [0.45, 3.7], [3.66, 6.85]], \"sentences\": [\"a couple of men are inside a building.\", \" They hit a ball over a net during a game of table tennis.\", \" The ball falls, and a man walks after it.\"]}, \"v_eCh_SqpkjtA\": {\"duration\": 84.49, \"timestamps\": [[0, 15.21], [15.21, 35.91], [35.06, 84.49]], \"sentences\": [\"A little girl performs gymnastics jumping and flipping in the air.\", \" The little girl performs three back flips in the air, after she jumps.\", \" The girl flips but she falls, then she stands and does cartwheels  and continues doings flips and dancing.\"]}, \"v_RrVsNvO6Yd4\": {\"duration\": 116.5, \"timestamps\": [[0, 26.79], [19.8, 88.54], [84.46, 113.58]], \"sentences\": [\"A large group of people are seen standing in a circle with a man break dancing in the middle.\", \" More people take turns with the man break dancing in the middle.\", \" More men continue taking turns with one another while people watch on the sides.\"]}, \"v_IsHMvAfUOGs\": {\"duration\": 11.87, \"timestamps\": [[0, 1.25], [1.31, 2.97], [3.09, 4.45], [4.57, 8.07], [8.19, 11.87]], \"sentences\": [\"A young girl hopes a square into her hopscotch game.\", \" The girl jumps another square.\", \" The girl jumps a third square.\", \" The girl struggles in jumping the fourth square.\", \" Finally, she jumps her last fifth square.\"]}, \"v_n3v9Znovl98\": {\"duration\": 159.31, \"timestamps\": [[0, 9.56], [9.56, 24.69], [24.69, 57.35], [76.47, 90.01], [90.81, 101.16], [101.16, 126.65], [126.65, 159.31]], \"sentences\": [\"Text introducing the subject of the video and the record set in Snatch in 2014.\", \" A man emerges about to lift a barbell then successfully lifts it and drops it before waving to the crowd.\", \" A second event in 2002 is titled with text before the man in blue performs the same lift move successfully.\", \" The third event in 2012 shows a another man in navy starts with a bar already lifted which once dropped celebrates by thrusting his fists in the air.\", \" The next man is in a 2007 who performed and then slams the bar down.\", \" A 1999 event is introduced and the dark haired man takes deep breaths before completion.\", \" 2008 replay shows another male doing the lift followed by the 2011 World Champ then the film credits roll.\"]}, \"v_jDL2tRtoxN4\": {\"duration\": 48.11, \"timestamps\": [[0, 4.81], [6.25, 41.37], [42.57, 48.11]], \"sentences\": [\"A man is riding in a bumper car with two small children.\", \" He and others back up and forward, bumping into each other.\", \" The little boy tries to help him steer.\"]}, \"v_jzVxdBzCuoM\": {\"duration\": 221.12, \"timestamps\": [[7.74, 102.82], [97.29, 216.7]], \"sentences\": [\"A young girl is shown doing a split and leads into several clips of her cheerleading with others.\", \" The same girl is shown warming up and stretching as well as competing on stage and interviewing the news.\"]}, \"v_QzbZxKJ-YBY\": {\"duration\": 160.38, \"timestamps\": [[0, 94.62], [95.43, 115.47], [117.08, 160.38]], \"sentences\": [\"women are dancing arabian music and wearing arabian skirts in a stage holding cloths and a fan.\", \" woman is in a room in front of a miror doing he belly dance.\", \" name of the preformers are in screen.\"]}, \"v_Xt86M-mRxi8\": {\"duration\": 129.06, \"timestamps\": [[0, 12.91], [13.55, 29.04], [30.33, 100.66], [100.02, 105.83], [107.12, 114.86], [114.86, 129.06]], \"sentences\": [\"We see a couple of opening screens.\", \" We see a the tools needed in order to complete this task.\", \" We see a man till the ground and spread black mulch on the ground around the tree.\", \" We see the man grab a handful of mulch and pick out pieces.\", \" We see the tree in the field.\", \" We see the closing credits.\"]}, \"v_LJdI1neOr2c\": {\"duration\": 89.68, \"timestamps\": [[0, 73.53], [73.98, 89.68]], \"sentences\": [\"A gymnast is seen practicing a routine on a balance beam while a man watches her closely on the sidelines.\", \" She ends her routine by flipping herself off the beam and several other gymnasts are seen around her.\"]}, \"v_MubE2kOK6z0\": {\"duration\": 93.69, \"timestamps\": [[0, 4.22], [4.22, 16.4], [16.4, 76.83], [39.82, 76.83], [76.83, 82.45], [82.92, 87.13], [87.13, 93.69]], \"sentences\": [\"We see an opening title screen.\", \" A ballerina dances across the room.\", \" We see a lady giving the ballerina instructions as she dips on the bar.\", \" The ballerina dips on one foot.\", \" The lady speaks to the camera.\", \" We see the ballerina on pointe and down and up again.\", \" We then see the ending screen.\"]}, \"v_1zEcIngghq4\": {\"duration\": 203.15, \"timestamps\": [[0, 92.43], [60.95, 203.15]], \"sentences\": [\"A man is seen moving his arms around a set of drums followed by him hitting the drums.\", \" He continues playing the drums and ends with him pausing with his hands on the drum and turning off the camera.\"]}, \"v_qRI4UJ2HR2g\": {\"duration\": 162.84, \"timestamps\": [[0, 13.03], [13.03, 17.1], [21.98, 35.01], [35.01, 48.85], [48.04, 78.16], [78.98, 162.84]], \"sentences\": [\"A man is staring at a camera with a white door in the background.\", \" He seems to be very passionate about what he is saying.\", \" It then skips to him getting a tattoo from an unseen person.\", \" There is s tattoo gun in the frame and his arm is resting on a blanket while the man works.\", \" He is then shown sitting upright while talking and is still getting his tattoo.\", \" Eventually a stencil of the outline of the tattoo is places and the frames go to still shot of his finished artwork on his forearm.\"]}, \"v_lGESoAdgps8\": {\"duration\": 231.36, \"timestamps\": [[0, 231.36], [75.19, 100.64]], \"sentences\": [\"Scenes of various competitors engaging in discus throw are shown.\", \" One competitor disputes a foul.\"]}, \"v_qH3HnhEaeok\": {\"duration\": 182.55, \"timestamps\": [[0, 13.69], [13.69, 103.14], [103.14, 182.55]], \"sentences\": [\"A body of murky water is shown and two groups of people begin kayaking in the canoe.\", \"The second group begins to use their paddles to turn into several circles demonstrating a pivot turn.\", \"After a while,the two stop and begin moving to other parts of the water and then the credits began to roll.\"]}, \"v_OXTQsO5abO4\": {\"duration\": 41.38, \"timestamps\": [[0, 41.38], [2.28, 41.38], [6.62, 41.38], [11.59, 41.38]], \"sentences\": [\"A baby sits on a mat on the ground.\", \" She plays with an iron.\", \" She pretends to iron clothes.\", \" She sets the clothes aside.\"]}, \"v_wKThOOUV6lY\": {\"duration\": 167.35, \"timestamps\": [[0, 40.16], [48.53, 125.51], [142.24, 167.35]], \"sentences\": [\"A large gathering of people are outside in a mud pit.\", \" The two groups are playing a game of tug of war.\", \" They pull and tug the rope in opposing directions.\"]}, \"v_wts5XRikF1Y\": {\"duration\": 155.41, \"timestamps\": [[0, 38.08], [38.85, 92.47], [81.59, 152.3]], \"sentences\": [\"A camera pans around a large beach and zooms in on a person riding on a surf board.\", \" Another person is seen riding on the waves while people sit around them.\", \" Several more shots are shown of people riding on a surf board as well as panning around the area.\"]}, \"v_1wjnveHAhGE\": {\"duration\": 131.11, \"timestamps\": [[0, 24.91], [26.22, 74.73], [68.83, 127.84]], \"sentences\": [\"A man is seen sitting on a piece of machinery while speaking to the camera.\", \" The man then moves his arms and legs around and begins using the machine.\", \" The men continuously moves around on the machine while looking off into the distance.\"]}, \"v_Jd0KWW9LN4Q\": {\"duration\": 184.41, \"timestamps\": [[0, 7.38], [7.38, 12.91], [12.91, 27.66], [27.66, 43.34], [43.34, 46.1], [46.1, 59.01], [59.01, 61.78], [61.78, 83.91], [83.91, 98.66], [98.66, 131.86], [131.86, 151.22], [151.22, 176.11], [176.11, 184.41]], \"sentences\": [\"Rivas Vaciamadrid logo is on the screen.\", \"  Javier Moreno is holding a bowling ball.\", \" He is bowling and talking to the camera.\", \"He is explaining techniques and equipment.\", \" A woman is talking about him now.\", \" He is talking more about how to bowl and showing moves.\", \" There is a newspaper story on him.\", \" There are more shots of him bowling and people talking about him.\", \"  He is showing his shoes and bowling ball.\", \"  He is showing how to hold and roll the ball.\", \" He is showing off his awards and trophies.\", \"  There are shots of him getting strikes and being interviewed.\", \"  He ends by talking to the camera again.\"]}, \"v_sa5ZuxFDZNw\": {\"duration\": 124.94, \"timestamps\": [[0, 6.87], [0, 124.94], [89.33, 92.45], [34.36, 39.36], [34.98, 109.32]], \"sentences\": [\"A man reaches for a dodge ball rolling across the line when the other team launches an attack.\", \" Two teams play a game of dodge ball in a gym.\", \" Players stand in a defensive line shoulder to shoulder.\", \" A man runs out of the corner up to the line and throws a ball.\", \" A group huddles in the corner for safety.\"]}, \"v_ybkcKusf-Kg\": {\"duration\": 62.16, \"timestamps\": [[0, 55.01], [55.32, 62.16], [19.58, 22.07], [48.17, 55.32]], \"sentences\": [\"A gymnast performs on the parallel bars spinning and flipping on the bars in a gym full of people.\", \" Then, the gymnast stand on his hands, make two flips in the air and falls stand on the mat.\", \" Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and fall stand on the mat.\", \" Also, a male athlete behind the gymnast runs fast and flips in the air.\"]}, \"v_LUGksGa4WJA\": {\"duration\": 144.55, \"timestamps\": [[2.89, 106.24], [15.9, 19.51], [61.43, 70.83], [85.28, 94.68], [95.4, 106.24]], \"sentences\": [\"A surfer rides his whiteboard on a wave.\", \" The surfer passes over another surfer.\", \" The wave almost takes him over.\", \" The wave comes close to taking him over.\", \" The surfer is able to swim out of the wave.\"]}, \"v_H3PWbSF9ax4\": {\"duration\": 66.83, \"timestamps\": [[0, 6.68], [7.02, 59.48], [25.06, 27.73], [47.45, 50.79], [60.15, 66.83]], \"sentences\": [\"We see an opening tile screen.\", \" A little girl in pink swings in a swing in a park.\", \" The camera shifts to the right slightly.\", \" The baby looks off to the right distracted.\", \" We see the ending credits.\"]}, \"v_nuaTROuaZPY\": {\"duration\": 165.93, \"timestamps\": [[0, 51.44], [47.29, 128.6], [120.3, 160.12]], \"sentences\": [\"A man is seen sticking his foot above a fire that leads into several pictures of people camping.\", \" More pictures are shown of fire as well as people putting their body parts over it.\", \" A man makes a fire and leads into more clips of the fire and pictures of the trip.\"]}, \"v_rXwSSTGmvb8\": {\"duration\": 201.5, \"timestamps\": [[1.01, 4.03], [5.04, 181.35], [23.17, 26.2], [35.26, 36.27], [48.36, 55.41], [71.53, 78.59], [84.63, 112.84], [123.92, 128.96], [129.97, 135.01], [140.04, 144.07], [154.15, 170.27], [181.35, 190.42], [194.45, 198.48]], \"sentences\": [\"The credits of the clip are shown.\", \" A bald man stand behind a bar and talks and gestures.\", \" The man touches and displays an alcohol bottle.\", \" The man takes out a tall glass cup.\", \" The man pours the alcohol into a small silver measurer and then into a the tall glass.\", \" The man pours a liquid into the measurer and then into the glass.\", \" The man squeezes a halved lemon into the measurer and then into the glass.\", \" The man adds ice to the glass.\", \" The man shakes the liquid.\", \" The man pours the shaken liquid into a smaller glass.\", \" The man picks up an orange and cuts its skin.\", \" The man squeezes the skin above the glass and adds it to the drink.\", \" The credits of the video are shown.\"]}, \"v_ULH_AqrP3to\": {\"duration\": 50.85, \"timestamps\": [[6.87, 9.41], [14.24, 16.02], [16.27, 34.07], [39.16, 45]], \"sentences\": [\"A lady walks through a room pushing a mop.\", \" The lady demonstrates how to squeeze the handle.\", \" She then shows how to mop a large floor.\", \" The lady then shows how to wash the mop pad in the machine.\"]}, \"v_pSWcVR96xlc\": {\"duration\": 4.06, \"timestamps\": [[0, 4.06], [0, 2.11], [2.11, 4.06]], \"sentences\": [\"A small group of people are all playing with a ball in a pool.\", \"The person on the right throws a yellow ball into the air and when it comes back down they throw it to a person on the left.\", \"The person on the left quickly catches it and then slams it forward to hit a blue fabric that is hanging at the end of the pool.\"]}, \"v_H-5nHSHwFOk\": {\"duration\": 745.5, \"timestamps\": [[0, 96.92], [55.91, 175.19], [275.83, 521.85], [197.56, 424.93], [395.12, 745.5]], \"sentences\": [\"The man in long sleeve shirt is holding a ski board and wiping the board.\", \" The man pour liquid in the sponge and wipe the board and then he used paper towel to wipe the board.\", \" The young man is holding a pink sponge and polisher machine and began rubbing the board.\", \" The young man get another board, then rub the pink bar to the polisher and began polishing the other board.\", \" The man continue to rub the board using his polishing tools.\"]}, \"v_T47mErD2KeA\": {\"duration\": 21.06, \"timestamps\": [[0, 10.74], [10.74, 21.06]], \"sentences\": [\"A person cooks does omelette in a pan using two Chinese sticks.\", \"Then the cooker, detach the omelette with the sticks and tap the handle of the pan with the arm.\"]}, \"v_aoIGBV31OT4\": {\"duration\": 197.79, \"timestamps\": [[0, 68.24], [68.24, 85.05], [86.04, 93.95], [101.86, 155.26], [156.25, 197.79]], \"sentences\": [\"A man sails on a sailboard on front the mountains.\", \" The man meets also a person sailing in the ocean.\", \" The man falls from his sailboard, but he immediately gets up and continue sailing.\", \" The man passes on front sailor when sailing in the sea.\", \" Then, he meets several people sailing in the ocean.\"]}, \"v_L149Uf5V7K0\": {\"duration\": 137.29, \"timestamps\": [[0, 126.99], [119.44, 126.99], [132.48, 137.29]], \"sentences\": [\"Kids are jump roping in a gym.\", \" A man is standing in front of them holding a clipboard.\", \" They finish jump roping and a woman is writing something down.\"]}, \"v_cQr-HSUKbsw\": {\"duration\": 140.32999999999998, \"timestamps\": [[0, 68.06], [68.76, 140.33]], \"sentences\": [\"A large group of people are seen playing hockey and leads into the people getting in a fight with one another.\", \" Refs pull the people back while the players continue fighting and finally skate away.\"]}, \"v_6QrVxwNUbBk\": {\"duration\": 184.88, \"timestamps\": [[0, 12.94], [12.94, 33.28], [65.63, 184.88], [146.98, 184.88]], \"sentences\": [\"Clouds roll through several snowy mountains.\", \" Several people trek up it on skis.\", \" Several skiers ski down the mountain.\", \" They do several tricks on the way down.\"]}, \"v_tz3zHV1Z5po\": {\"duration\": 221.81, \"timestamps\": [[1.11, 221.81], [7.76, 177.45], [179.67, 205.18], [205.18, 221.81]], \"sentences\": [\"A woman in a blue swimsuit and another woman in a black swimsuit float next to each other in an indoor pool of water trying to gain control of a yellow ball in the water with them.\", \"  The woman in the blue swimsuit has control of the yellow floating ball while the woman in the black swimsuit reaches and fights to get the ball unsuccessfully.\", \"  The woman in the blue swimsuit throws the yellow ball out of the water and away from the pool.\", \"  The yellow ball is thrown back into the water by an unseen entity and the woman in the blue swimsuit gains possession of the ball again.\"]}, \"v_3Hbm8FdirRc\": {\"duration\": 73.4, \"timestamps\": [[0, 73.4], [2.57, 73.4], [1.83, 73.4]], \"sentences\": [\"A man is sitting on a riding lawn mower.\", \" He has orange ear protection on.\", \" He goes back and forth mowing the lawn.\"]}, \"v_an5XI45pIl8\": {\"duration\": 190.33, \"timestamps\": [[0, 67.57], [0.95, 10.47], [11.42, 16.18], [16.18, 23.79], [24.74, 36.16], [37.12, 68.52], [45.68, 68.52], [0, 68.52], [69.47, 76.13], [77.09, 176.06], [133.23, 176.06]], \"sentences\": [\"Two men, one of them older, are on a stage.\", \" One of the men waves and the other man claps.\", \" The man stands and hands an object to the older man as he stands.\", \" Still shots of the older man and a video of the older man playing drums are shown.\", \" The two men discuss the object they are holding.\", \"More still shots of the older man and a video of the older man playing drums are shown.\", \" The two men shake hands, sit down and talk.\", \" Several other men are in the room observing the interactions of the man and the older man.\", \" A news anchor is seen talking.\", \" A video of the older man playing drums with another man in front of an audience is shown.\", \" Additional still shots are shown.\"]}, \"v_QMCHIR3nDLs\": {\"duration\": 87.3, \"timestamps\": [[0, 15.71], [16.59, 24.88], [25.32, 37.97], [37.97, 42.34], [42.78, 52.81], [53.69, 68.09], [68.53, 77.26], [78.13, 87.3]], \"sentences\": [\"A man in a striped shirt reads from a paper as two men stand on logs axing the logs.\", \" A wood chopping legend is seen talking to the camera.\", \" He walks to pick up and ax.\", \" A group of men stand on top of logs, chopping away.\", \" The chopping legend speaks to the camera again.\", \" A couple of men chop some wood until one of them jumps off the log and raises his hands up in excitement.\", \" A group of men are seen sitting in individual tubs, trying to paddle towards a finish line.\", \" One of the men is seen swimming around in the water.\"]}, \"v_D9hS68pULz0\": {\"duration\": 168.9, \"timestamps\": [[0, 39.69], [39.69, 81.07], [81.07, 124.14], [124.14, 168.9]], \"sentences\": [\"A group of men are sitting at a table drinking beer and chatting, they bring their drinks together and talk some more before starting to chug.\", \" They all chug for as long as they can some finish and some don't.\", \"They are laughing and talking about the results, one of them pouring on to little plates.\", \" Then they all start getting rowdy and jumping around and yelling.\"]}, \"v_c1RR1cmS9LU\": {\"duration\": 150.78, \"timestamps\": [[0, 15.83], [27.89, 118.36], [121.38, 150.78]], \"sentences\": [\"A group of inline skaters are being interviewed by a woman with a microphone.\", \" They demonstrate different positions and moves for skating.\", \" They are seen skating while the woman talks to them.\"]}, \"v_0N8iIUS660o\": {\"duration\": 129.02, \"timestamps\": [[0.65, 34.84], [35.48, 94.19], [88.38, 126.44]], \"sentences\": [\"A large group of people are seen running down a street with bulls chasing them one behind.\", \" Several people taunt the bull with sticks while the bull chases others around an area.\", \" People hold up blankets and run away from one another while the ambulance is seen taking people away.\"]}, \"v_wq4H7L15NMA\": {\"duration\": 16.09, \"timestamps\": [[0, 4.02], [4.26, 12.71], [13.2, 16.09]], \"sentences\": [\"A woman is seated on a piece of workout equipment.\", \" She uses a long string to pull back and forth.\", \" Her seat slides forward and backward as she pulls.\"]}, \"v_vjMuhHo6wMY\": {\"duration\": 162.84, \"timestamps\": [[0, 59.44], [51.3, 162.84]], \"sentences\": [\"A picture of a dog is shown followed by a woman performing various tricks with a Frisbee with the two dogs.\", \" She performs several more tricks wearing different outfits with the dog and shows how well her dogs can learn new tricks.\"]}, \"v_E2Vd-sOC_ik\": {\"duration\": 105.42, \"timestamps\": [[0, 88.02], [9.49, 33.21], [31.1, 60.62], [57.98, 75.37], [72.21, 88.02], [84.86, 93.82], [94.35, 105.42]], \"sentences\": [\"There's a person shown on a Newstime segment going on Poweriser stilts across a town through the streets.\", \" The news anchor representing Newstime is talking about the stilts.\", \" The person on stilts goes through the city and on sidewalks.\", \" He is then interviewed by another person to talk about his stunts on the stilts.\", \" He jumps up high on the stilts as onlooker on the street watch him.\", \" Several more men are shown on stilts in an atrium where they are jumping on their stilts.\", \" The news anchor is back to finish his news segment and sign off.\"]}, \"v_37gHYr2uDZo\": {\"duration\": 63.27, \"timestamps\": [[0, 7.59], [9.49, 27.2], [25.62, 43.34], [45.87, 63.27]], \"sentences\": [\"A man is standing behind a bar talking.\", \" The man grabs takes several liquids and begins to pour them in a tall glass.\", \" The man pours the contents of the tall glass into a shaker.\", \" The man then pours the contents of the shaker back into the tall glass.\"]}, \"v_XeRiPVEZ6pY\": {\"duration\": 118.97999999999999, \"timestamps\": [[0, 25.58], [26.18, 90.42], [91.61, 118.98]], \"sentences\": [\"A man is playing an accordian with a piano onstage before a crowd.\", \" He bounces and dances lightly as he plays for the audience.\", \" Several close ups are shown of his hands and the keyboard before the final notes are played and the performance is over.\"]}, \"v_9xHLzVojpBc\": {\"duration\": 96.69, \"timestamps\": [[0.97, 34.81], [32.87, 68.17], [68.65, 93.79]], \"sentences\": [\"A man is seen speaking to the camera while holding onto a tennis racket.\", \" Several clips are shown of a woman hitting a ball with a man helping her in front.\", \" The man finishes by speaking to the camera more.\"]}, \"v_KjUxjcpIG_Y\": {\"duration\": 68.34, \"timestamps\": [[0, 5.47], [6.49, 30.41], [31.44, 54.33], [54.67, 60.48], [60.82, 68.34]], \"sentences\": [\"A little boy pours mouthwash into his mouth from a cup.\", \" He spits it into the sink, then starts crying from the bad taste.\", \" Someone holds up a bottle of spray, and he runs to hide behind a towel.\", \" He is given a cup filled with water by a little girl, and he rinses with it.\", \" He walks out of the room in tears.\"]}, \"v_LNLsmdVMCmY\": {\"duration\": 134.79, \"timestamps\": [[0, 10.11], [10.11, 22.91], [23.59, 87.61], [42.46, 48.53], [59.31, 65.37], [86.94, 97.05], [99.75, 107.16], [107.83, 134.79]], \"sentences\": [\"A man and a woman talk to the camera in a news cast setting.\", \" A woman talks to the camera from an outside environment surrounded by cars covered in snow.\", \" A series of short images of events inside a Lowe's store is shown.\", \" A man is interviewed on camera.\", \" The man demonstrates a product's use on camera.\", \" The woman by the cars demonstrates a product on one of them.\", \" More scenes of products inside the Lowe's store is shown.\", \" The woman by the cars demonstrates another product on the car.\"]}, \"v_ujS0VNOXeVg\": {\"duration\": 166.02, \"timestamps\": [[0, 5.81], [5.81, 114.56], [11.62, 14.94], [14.94, 33.2], [93.8, 112.9], [111.24, 117.05], [128.67, 133.65], [143.61, 166.02]], \"sentences\": [\"We see the title screen on white.\", \" A lady braids her hair with the instructions cut in between the images.\", \" The lady brushes her hair.\", \" A lady grabs a section of hair on the top of her head and puts it in a ponytail.\", \" The lady pulls her braid in front of her and continues braiding.\", \" The lady puts a rubber band on the end of her braid.\", \"The lady cuts the rubber band on her first ponytail with scissors.\", \" The end scene and credits appear.\"]}, \"v_u3uYs6SZFKo\": {\"duration\": 40.08, \"timestamps\": [[0, 5.01], [5.01, 12.02], [12.02, 25.05], [25.05, 28.66], [30.86, 40.08]], \"sentences\": [\"Two kids walk to and sit in swings.\", \" The little boy talks and a girl starts pushing the boy on the swing.\", \" We see the girl swinging and a girl pushing the boy on the swing.\", \" The girl then pushes the 1st girl and leaves.\", \" The girl in blue keeps swinging.\"]}, \"v_fnKOW7tJA1A\": {\"duration\": 43.1, \"timestamps\": [[0, 43.1], [0, 35.99], [35.99, 43.1]], \"sentences\": [\"A man is doing a routine on the parallele bars.\", \"  He is swinging forward and backward.\", \" He completes his routine and jumps off.\"]}, \"v_WZUxscN9rW8\": {\"duration\": 127.29, \"timestamps\": [[12.73, 94.83], [69.37, 71.28], [96.11, 102.47]], \"sentences\": [\"Men are diving off of a diving board and into a swimming pool.\", \" People are applauding in the stands for them.\", \" A man is hugging other people.\"]}, \"v_5zYETEiYiCQ\": {\"duration\": 65.18, \"timestamps\": [[0, 6.84], [7.82, 37.8], [39.11, 65.18]], \"sentences\": [\"A man is seated at a piano in a terminal.\", \" He plays as people slowly gather to listen to him.\", \" Another man annoys him by running his fingers up and down the keyboard while he's trying to play.\"]}, \"v_SnZnAVuMn4M\": {\"duration\": 194.56, \"timestamps\": [[0, 83.66], [47.67, 194.56]], \"sentences\": [\"Several people are seen playing volleyball followed by a man speaking to the camera and pointing to players standing on the side.\", \" The people then demonstrate how to perform several hits properly while the man continues speaking to the camera.\"]}, \"v_ksKlcjeIBi0\": {\"duration\": 5.06, \"timestamps\": [[0, 2.58], [2.86, 5.06]], \"sentences\": [\"Several girls are balancing on beams in a gym.\", \" They dance and prance across them, then one stops with her arms at her sides.\"]}, \"v_N-LaOcSqZaM\": {\"duration\": 17.14, \"timestamps\": [[0.09, 5.57], [4.88, 12.68], [10.28, 16.54]], \"sentences\": [\"A large group of people are seen standing around a volleyball court.\", \" One person hits the ball over the net.\", \" The others continue to hit the ball while the camera records.\"]}, \"v_o-BGGr-DU5g\": {\"duration\": 47.53, \"timestamps\": [[0, 11.41], [10.69, 33.27], [29.47, 46.82]], \"sentences\": [\"A person is seen riding in a canoe along the water with another following behind.\", \" Another person is seen riding in a canoe with text shown across the screen.\", \" More text is shown as well as clips of people riding around in canoe.\"]}, \"v_JZz2O0y0ufY\": {\"duration\": 14.28, \"timestamps\": [[0, 3.93], [3.93, 6.64], [6.64, 14.28]], \"sentences\": [\"A man bends down and picks up a piece of wood and balance it onto a standing log.\", \"The man then backs up and raises his axe above his head.\", \" The video is slowed down and the man brings the axe down with force and he cuts the piece of wood in half.\"]}, \"v_VRRLOIP6EmA\": {\"duration\": 85.32, \"timestamps\": [[0, 23.46], [25.17, 59.3], [59.73, 85.32]], \"sentences\": [\"A group of surfers are riding the waves in the ocean.\", \" A large wave knocks some of them over.\", \" They continue surfing, trying to stay on their boards.\"]}, \"v_hCJTKVzkYFE\": {\"duration\": 62.21, \"timestamps\": [[0.31, 53.5], [2.18, 9.64], [29.86, 32.97], [37.32, 54.12]], \"sentences\": [\"A group of jockeys ride horses on manicured lawns interspersed with children learning how to play polo in polo classes held outdoors.\", \"  A group of jockeys ride horses on a manicured green lawn, the players have hats and jerseys, hold polo sticks and the horses have binded tails while some have long leg protectors on.\", \"  A group of children stand outside on small stands holding polo sticks in an instructor led outdoor course.\", \"  The jockeys on horses reappear riding the horses across vast stretches of green, grass dotted with tall palm trees.\"]}, \"v_UH9qJ4Y6ENA\": {\"duration\": 198.25, \"timestamps\": [[0, 52.54], [49.56, 147.7], [127.87, 190.32]], \"sentences\": [\"Two people are seen fencing with one another while other people watch on the side.\", \" More shots are shown of people playing with one another while a person speaks to the camera.\", \" The same man continues speaking to the camera while other people fence.\"]}, \"v_yINX46xPRf0\": {\"duration\": 159.99, \"timestamps\": [[0.8, 72.79], [52.8, 130.39], [78.39, 153.59]], \"sentences\": [\"Several pictures are shown of people sitting together as well as video of them sitting in a stand.\", \" They are next shown swimming around the water and gesturing to the camera.\", \" More kids are seen flipping around under the water.\"]}, \"v_uJuGXnGqozs\": {\"duration\": 53.82, \"timestamps\": [[2.69, 24.76], [16.69, 46.56]], \"sentences\": [\"A gymnast is seen performing a routine on a set of uneven bars doing various flips and tricks.\", \" She continues spinning around and ends up jumping down and smiling while holding her arms up.\"]}, \"v_nMiXX2jqI40\": {\"duration\": 64.22, \"timestamps\": [[0, 5.78], [7.38, 26.65], [28.58, 50.73], [52.02, 64.22]], \"sentences\": [\"A man dressed as santa claus is wearing scuba gear.\", \" He is swimming through and looking at the debris and wreckage on the ocean floor.\", \" He looks at various fish under the water.\", \" Another man dressed as an elf appears, and they look at the ocean life together.\"]}, \"v_-sd2XAFkeC0\": {\"duration\": 230.66, \"timestamps\": [[0, 6.92], [6.92, 17.3], [17.3, 213.37], [213.37, 230.67]], \"sentences\": [\"An intro of white screen with a picture of people in a raft and the company name and location are displayed.\", \"A man is now standing next to moving water as he's talking and looking at the camera.\", \"The focus now changes to people in a bunch of different rafts as they are going through very rough waters as waves throw their raft in the air or splash onto or above them.\", \"The outro appears and it's the same screen as the intro, and a white worded website and copyright appear on black screen.\"]}, \"v_FklvvNrpsUk\": {\"duration\": 172.15, \"timestamps\": [[2.58, 80.05], [48.2, 168.71]], \"sentences\": [\"A woman is seen using a blow dryer on her hair while the camera moves in slow motion.\", \" The woman continues using the object on her hair while the effects continue to move in slow motion.\"]}, \"v_nZ40a3LSFeU\": {\"duration\": 112.11, \"timestamps\": [[0, 56.61], [34.19, 102.58]], \"sentences\": [\"Several shots are shown of Puma shoes as well as a Puma boat riding along the water with a large group of people.\", \" The boat continues riding along the water while the camera captures the boat from several angles.\"]}, \"v_Xu54UPG1cME\": {\"duration\": 190.06, \"timestamps\": [[0, 3.8], [4.75, 22.81], [23.76, 57.02], [57.97, 109.28], [110.23, 190.06]], \"sentences\": [\"We see an opening title screen.\", \" A person pours paint into  paint tray and paints a wall.\", \" A man pours paint into an empty tray and paints.\", \"  We see a man put a piece of wallpaper on a wall and smooth it out.\", \"  We see the man peeling wallpaper off the wall.\"]}, \"v_Kyo1nkGKRqw\": {\"duration\": 93.72, \"timestamps\": [[5.15, 30.46], [31.86, 57.17], [57.17, 80.6], [67.01, 75.44], [81.53, 88.56]], \"sentences\": [\"A young man talks, then two teens talk in a farm.\", \" The teens stand next a lady holding a horse and a boy holding a curry comb and a dandy brush while talking.\", \" The male teen brush the horse, the boy and the female teen talk.\", \" A person rides a horse in a corral.\", \" The young man continues talking.\"]}, \"v_hiYPv3MrrUw\": {\"duration\": 56.8, \"timestamps\": [[0, 33.51], [32.09, 56.8]], \"sentences\": [\"A man in black shirt and shorts is skateboarding on the road from one side to other side as the orange bus coming from other side.\", \" A man is parasailing on the water near the seashore.\"]}, \"v_U5wliityRuU\": {\"duration\": 197.21, \"timestamps\": [[0, 2.96], [2.96, 34.51], [35.5, 39.44], [39.44, 52.26], [53.25, 69.02], [70.01, 113.39], [113.39, 164.67], [165.65, 193.26], [194.25, 197.21]], \"sentences\": [\"We see a man in a diving suit under the water.\", \" We see a man talking to the camera.\", \" We see a man underwater.\", \" We see the talking man holding his arm up.\", \" We then see the man underwater, then the man talking again.\", \" We see a title screen and see a man frog kick underwater.\", \" We see a title scree and see a man do a flutter kick.\", \" We then see the man talking again with blue bar over his face.\", \" We then see the black ending screen.\"]}, \"v_xaCOYdzox0g\": {\"duration\": 229.74, \"timestamps\": [[0, 31.01], [29.87, 89.6], [89.6, 114.87], [114.87, 150.48], [150.48, 189.53], [189.53, 229.74]], \"sentences\": [\"Several entrees are shown across a stage with a play button in the corner.\", \"Then,a plate of pasta is shown and shredded cheese is then drizzled over it.\", \"The chef then begins with several meats and fries them in a skillet.\", \"After the meat is in their,several vegetables are added and the post is then set aside.\", \"Now its time for the sauce,tomatoes are put in the pan and other ingredients are added like salt and vegetables.\", \" Once complete,the meat is added to the pasta,the stove gets turned off and the dish is served.\"]}, \"v_39dTxOhrW68\": {\"duration\": 41.63, \"timestamps\": [[0, 10.41], [10.82, 28.94], [28.52, 41.63]], \"sentences\": [\"A man is standing outside turning on his hedge trimmer turning it around to make the blades go.\", \"He then walks over to the hedges and begins to cut down the leaves on it.\", \"As he is cutting it,he begins to walk into the hedges to cut the hedge evenly and shaking the cut leaves off with his hand.\"]}, \"v_FmDGejzydo8\": {\"duration\": 203.97, \"timestamps\": [[0, 31.61], [31.61, 132.58], [133.6, 197.85]], \"sentences\": [\"A camera pans around a boy sitting on the ground and leads into him riding a skateboard.\", \" Several shots are shown of people riding around on skateboards as well as falling down and laughing.\", \" More clips are shown of kids performing tricks on skateboards and riding past the camera.\"]}, \"v_siGEHA6fs80\": {\"duration\": 61.07, \"timestamps\": [[0, 5.5], [11.3, 45.5], [50.08, 61.07]], \"sentences\": [\"a stump is shown in the woods.\", \" A man places a smaller piece of wood on top after another.\", \" He splits the wooden pieces with an ax.\"]}, \"v_LYqq0dPB-U8\": {\"duration\": 83.73, \"timestamps\": [[0, 31.4], [30.98, 68.24], [68.66, 83.73]], \"sentences\": [\"A couple begins decorating a Christmas tree with garland as a boy sits on the couch.\", \"After,the whole family joins in and adds the lights to the tree.\", \"Once the lights are on,the boy goes back to the couch and the other boy leaves the room.\"]}, \"v_UU8Xtm8Gl3I\": {\"duration\": 109.2, \"timestamps\": [[0, 38.77], [38.77, 40.95], [46.96, 105.38]], \"sentences\": [\"A person is snowboarding on a hill.\", \" He gets done and puts his hands up.\", \" A replay of the mans run plays.\"]}, \"v_xIG7FQWBWZU\": {\"duration\": 33.53, \"timestamps\": [[0, 2.85], [3.02, 13.41], [13.58, 26.32], [26.32, 29.17], [29, 33.53]], \"sentences\": [\"We see an opening title screen.\", \" We see inside an ice rink with supplies for curling.\", \" A lady throws the stone and other ladies sweep the ground in front of it.\", \" A lady jumps up and down with her hands in the air.\", \" We see an ending screen with a hashtag on it.\"]}, \"v_kUQ4bTeoG-Y\": {\"duration\": 137.16, \"timestamps\": [[2.06, 4.8], [4.8, 19.2], [19.2, 41.83], [28.12, 30.18], [43.21, 48.01], [48.69, 85.04], [54.18, 58.98], [87.1, 95.33], [95.33, 105.61], [106.3, 127.56]], \"sentences\": [\"A man plays with his nipple while another man watches.\", \" The man poses and runs around in a parking lot.\", \" The man jumps around and dances in a crowded area.\", \" The man eats a banana.\", \" The man jumps a railing and hugs two others.\", \" The man runs in a marathon alongside others, while spectators watch.\", \" Still images of the man are shown.\", \" The man dances with bananas in hand.\", \" The man interacts with others.\", \" The man squats and stretches in a parking lot.\"]}, \"v_UgSLUt8X1Lc\": {\"duration\": 65.99, \"timestamps\": [[0, 29.04], [29.04, 33.99], [34.32, 65.99]], \"sentences\": [\"A woman is sweeping the floor in a kitchen.\", \" She grabs a green bottle and pours it onto the floor.\", \" She then mops the floor with a mop.\"]}, \"v_1X4hgrBjw-U\": {\"duration\": 78.14, \"timestamps\": [[0.78, 21.88], [18.75, 56.26], [51.57, 74.62]], \"sentences\": [\"A person is see handing an officer an ice cream cone while a woman watches on the side.\", \" The woman then speaks to the officers while others watch on the side.\", \" The man then grabs an ice cream and hands it to the woman.\"]}, \"v_HPNZi_WsUeY\": {\"duration\": 118.1, \"timestamps\": [[2.36, 41.33], [31.3, 85.62], [78.53, 113.37]], \"sentences\": [\"A close up of a pan is seen followed by a person pouring ingredients into a pan.\", \" The man continues to pour more ingredients in and then puts it on a table.\", \" The person then mixes in noodles and plates it onto a table.\"]}, \"v_BOOX9aGlSEs\": {\"duration\": 222.82, \"timestamps\": [[0, 53.48], [45.68, 55.7], [55.7, 218.36], [134.81, 141.49], [149.29, 155.97], [174.91, 181.6], [203.88, 215.02], [217.25, 222.82]], \"sentences\": [\"Men wait and then ride the ski lift while talking to the camera.\", \" The men are off the lift and at the top of the hill.\", \" The rider skis and goes of ramps as he skis.\", \" The rider is still and starts skiing again.\", \" The skier passes a  person laying in the snow.\", \" The skier has stopped and starts skiing again.\", \" The skier flips in slow motion.\", \" We see a person jump a ramp on their skis.\"]}, \"v_0JgcRWHCi4c\": {\"duration\": 22.78, \"timestamps\": [[0.34, 7.63], [6.83, 16.29], [16.29, 21.87]], \"sentences\": [\"A woman is seen standing in a living room with a dog holding a frisbee.\", \" The woman then begins playing with the dog and spinning around the frisbee.\", \" The woman does tricks with the dog while still holding the frisbee in her hands.\"]}, \"v_RTnNxbG2V5o\": {\"duration\": 235.78, \"timestamps\": [[5.89, 134.39], [91.95, 226.34]], \"sentences\": [\"A young boy is seen sitting in a bumper car as well as several shots of a carnival being shown.\", \" The people then drive around the game bumping into one another constantly and end by stopping the car.\"]}, \"v_aKacWW7Mn2c\": {\"duration\": 22.78, \"timestamps\": [[0, 2.39], [3.19, 16.06], [17.43, 22.78]], \"sentences\": [\"A man walks up to the edge of a diving board.\", \" He dives off into the water, flipping as he goes down.\", \" He lands into the water, splashing everywhere as people clap.\"]}, \"v_vFVg-ImCW9w\": {\"duration\": 199.9, \"timestamps\": [[7, 34.98], [35.98, 64.97], [66.97, 90.95], [89.96, 199.9]], \"sentences\": [\"A woman talks and then shows ingredients on a table.\", \" The woman put syrup to a bowl with marshmallows.\", \" Then, the woman spreads butter and flour to the counter, and put the marshmallows in the microwave.\", \" After, the woman pours the liquefied marshmallows on the flours and makes a dough, after split in two and wraps with plastic and put it in a taper.\"]}, \"v_2dA1fAU3o6o\": {\"duration\": 64.37, \"timestamps\": [[0, 64.37], [1.61, 64.37]], \"sentences\": [\"A man and is using a leaf blower to blow leaves into a pile.\", \" A little boy in a blue coat is walking next to him.\"]}, \"v_SrA6k_iQNGA\": {\"duration\": 134.24, \"timestamps\": [[0, 14.77], [18.79, 100.01], [110.07, 134.24]], \"sentences\": [\"An image is shown of a pumpkin appearing to flame out of its head.\", \" a man is drilling the holes and designs into the pumpkin.\", \" He then demonstrates how to light the fire by pouring a fluid inside and lighting it.\"]}, \"v_dVcnkTR5EBE\": {\"duration\": 117.75, \"timestamps\": [[0, 54.16], [54.75, 97.73], [98.32, 117.75]], \"sentences\": [\"A man exits a building and speaks to a camera.\", \" He shows a water bottle he has along with a brush, and uses the brush to remove snow from the dash window of a car and the water to remove any excess snow left on the windshield.\", \" Once finished, he speaks to the camera.\"]}, \"v_w0d32MVTY9Q\": {\"duration\": 43.03, \"timestamps\": [[0.22, 12.48], [12.05, 34.85], [29.26, 41.31]], \"sentences\": [\"A large group of people are seen standing around a pit.\", \" A man rides in a horse chasing a calf and swinging a rope around.\", \" The person captures the calf and other people run in afterwards.\"]}, \"v_y56qXoJh6U0\": {\"duration\": 131.66, \"timestamps\": [[0, 34.23], [32.91, 110.59], [111.91, 131.66]], \"sentences\": [\"A group of people are seen standing around a bowling alley when several shots of people throwing the ball are shown.\", \" More close ups of people speaking to the camera are shown as well as speaking to one another and a woman taking pictures of the players.\", \" More clips of people playing are shown as well as being interviewed and speaking to one another.\"]}, \"v_kWmf0_XSfBU\": {\"duration\": 39.43, \"timestamps\": [[0, 20.7], [16.56, 39.43]], \"sentences\": [\"A woman is seen speaking to the camera while standing behind an ironing board and folding a shirt.\", \" She then irons all along the shirt while continuing to speak and fold the shirt around.\"]}, \"v_wPCQfs0Rgx0\": {\"duration\": 96.25, \"timestamps\": [[6.26, 24.06], [25.02, 33.69], [34.17, 39.94], [57.75, 81.81]], \"sentences\": [\"Cookie dough is on a cookie sheet.\", \" They put the pan in the oven.\", \" They take it out of the oven.\", \" They put the cookies onto a plate.\"]}, \"v_9FYVaOGQV6o\": {\"duration\": 90.91, \"timestamps\": [[0, 7.27], [7.73, 38.64], [38.64, 55.91], [55.91, 88.18]], \"sentences\": [\"Two teams play ice hockey while a crowd watch, suddenly the hockey puck hits the face of a player that falls to the floor.\", \" The injured player is taken to the dressing room by two men, then the teams continue playing.\", \" A player get hit the face by a hockey puck.\", \" A player get out of the game area and sits in a bench.\"]}, \"v_SLisp6hn700\": {\"duration\": 177.89, \"timestamps\": [[0, 10.67], [21.35, 171.66], [41.8, 65.82], [62.26, 72.05], [75.6, 127.19], [129.86, 168.99]], \"sentences\": [\"A girl sits at a table with many finished wrapped presents.\", \" A girl wraps gifts in wrapping paper seated at a table.\", \" The girl uses tape to secure the wrapping paper inside the present.\", \" The girl peels away a self sealing strip on the wrapping paper.\", \" The girl folds the edges of the wrapping paper and cuts them with scissors.\", \" The girl tapes the exterior of the present.\"]}, \"v_QpJ5npI8qO0\": {\"duration\": 145.94, \"timestamps\": [[0, 18.97], [27, 117.48], [122.59, 145.94]], \"sentences\": [\"A man is outdoors, wearing a chef's coat.\", \" He does several different serving moves.\", \" He walks around in circles, giving a demonstration.\"]}, \"v_YfxK4HAp8jI\": {\"duration\": 78.69, \"timestamps\": [[0, 36.99], [38.56, 78.69]], \"sentences\": [\"A group of boys are in a basketball court.\", \" The coach is showing how to play, and the boys are performing layups.\"]}, \"v_-wXbBZDSIa8\": {\"duration\": 25.26, \"timestamps\": [[0, 25.26], [0, 24.25], [0.88, 25.26]], \"sentences\": [\"two men are wrestling on a ring in a court.\", \" refere is wearing a black and white t shirt and is watching the wrestlers.\", \" people are around the ring sitting on stands screaming.\"]}, \"v_Mm-bwu8Q2IU\": {\"duration\": 82.5, \"timestamps\": [[1.24, 42.08], [28.05, 78.79]], \"sentences\": [\"A man and is dog are seen standing in the middle of a fenced in area performing tricks with frisbees.\", \" Many people watch on the side as the man performs tricks with the dog using several frisbees.\"]}, \"v_T7fzZX0qKKQ\": {\"duration\": 50.09, \"timestamps\": [[0, 10.27], [15.78, 47.33], [36.06, 40.57], [47.08, 50.09]], \"sentences\": [\"We see people give money to a man on a a unicycle on a city street.\", \" The man in a costume rides the unicycle and plays a bagpipe.\", \" A person gets out of a yellow cab.\", \" A man jumps off of his unicycle.\"]}, \"v_gM7JdDs5f4o\": {\"duration\": 218.15, \"timestamps\": [[0, 218.15], [28.36, 218.15], [214.88, 218.15]], \"sentences\": [\"Drummers are standing in a line drumming.\", \" A man in a white hat is leading them.\", \" They stop playing and the man stands up.\"]}, \"v_xCedPpnP6Wg\": {\"duration\": 15.12, \"timestamps\": [[0, 12.02], [0, 15.12]], \"sentences\": [\"man is crossing the street with stilts and runs through the sidewalk.\", \" people are standnig in sidewalk waiting to cross te street.\"]}, \"v_fG0nn2IVdDM\": {\"duration\": 55.06, \"timestamps\": [[0, 48.45], [50.93, 55.06]], \"sentences\": [\"People are standing in grass flying kites.\", \" People are playing drums and dancing.\"]}, \"v_FBUtGL5_tto\": {\"duration\": 152.14, \"timestamps\": [[0, 9.89], [13.69, 28.91], [29.67, 40.32], [41.84, 54.01], [60.85, 76.07], [89.76, 139.21]], \"sentences\": [\"A rivers roaring rapids are about to carry a large group of rafters.\", \" They come down the rapid hard, pushing against a rock before digging out.\", \" Another group goes down perfectly, right down the middle.\", \" The next group also comes down the middle but turns around and gets splashed.\", \" The group after them hits a few rocks before descending, crashing into the side.\", \" The next few groups come on down perfectly and cheer.\"]}, \"v_Zv78Or7fW5U\": {\"duration\": 50.85, \"timestamps\": [[0, 16.02], [16.78, 25.93], [25.93, 42.21], [42.97, 50.85]], \"sentences\": [\"We see a lady from Turkey perform a long jump on  a blue track.\", \" A man holds up a white flag and the lady walks away.\", \" We see an image of a foot on a white bar and see a repeat in slow motion of the ladies jump.\", \" The land bends forward as we see her scores on the screen.\"]}, \"v_5BCWB7Pf2Tk\": {\"duration\": 97.15, \"timestamps\": [[0, 16.03], [16.52, 73.35], [67.52, 94.72]], \"sentences\": [\"A camera pans around an area followed by a person riding on a skateboard.\", \" The person rides all around the area performing flips and tricks on the pavement.\", \" He continues riding around as well as falling and walking away.\"]}, \"v_QHmZWkRK528\": {\"duration\": 202.06, \"timestamps\": [[0, 16.16], [20.21, 127.3], [135.38, 202.06]], \"sentences\": [\"A group of cheerleaders lay down a flag on a court.\", \" They assemble, then begin tossing each other in the air.\", \" They put on a performance for the crowd, flipping and dancing.\"]}, \"v_MT852hP9wVk\": {\"duration\": 91.98, \"timestamps\": [[0, 23.91], [23.45, 46.91], [42.77, 91.98]], \"sentences\": [\"The man in blue jacket is chopping a big trunk.\", \" The man handed the axe to the next guy.\", \" The guy continue to axe the trunk.\"]}, \"v_X4l1wbSYQFo\": {\"duration\": 101.8, \"timestamps\": [[0, 21.89], [19.34, 75.84], [63.62, 98.74]], \"sentences\": [\"A woman is seen speaking to the camera while holding a bottle of lotion.\", \" She pouts the lotion out on a spoon and then shows more in her hands.\", \" She then begins applying it all over her body while still speaking to the camera.\"]}, \"v_ibKFezOKsBQ\": {\"duration\": 82.41, \"timestamps\": [[0, 11.54], [11.13, 20.6], [20.19, 27.61], [27.61, 39.97], [39.56, 57.27], [57.69, 82.41]], \"sentences\": [\"A child is shown sliding up and then down a red slide.\", \" Another child is shown sliding down the red slide, followed by the first child.\", \" The second child is shown sliding down a multicolored slide with bumps.\", \" The first child is shown sliding down a yellow slide several times.\", \" The second child runs up the yellow slide, followed by the first child attempting it several times.\", \" Both children are shown playing with the yellow and then the red slides together.\"]}, \"v_jAk-vBePtTU\": {\"duration\": 186.41, \"timestamps\": [[0, 30.76], [30.76, 186.41]], \"sentences\": [\"A boy approach a chair and sits, then he touch a radio.\", \" Then, the boy starts to play two tam-tams using both hands.\"]}, \"v_tF4Tl56ntnE\": {\"duration\": 89.07, \"timestamps\": [[0, 32.96], [30.28, 65.47], [65.47, 89.07]], \"sentences\": [\"A woman walks into a living room and begins washing her hands and dries her hand on a grey towel.\", \"She then takes her contact lens,shakes them and then pulls,pour and slides it out and puts it upright on her finger.\", \"After,she puts the contact in her eye and the liquid she uses is shown.\"]}, \"v_IVFGb72s3oY\": {\"duration\": 157.52, \"timestamps\": [[0, 24.41], [27.57, 66.94], [70.09, 157.51]], \"sentences\": [\"A man and woman are talking on tv with microphones.\", \" The man appears to be singing before the crowd.\", \" A small boy plays the piano for the crowd, pleasing them greatly.\"]}, \"v_tXuNa_h804c\": {\"duration\": 234.93, \"timestamps\": [[0, 65.78], [68.13, 193.82], [164.45, 232.58]], \"sentences\": [\"A man is seen speaking to a group of men and a woman.\", \" The people then begin dancing with one another while moving their hands and legs all around.\", \" The people continue dancing around as well as hugging one another and skipping around town.\"]}, \"v_8P1vKpL3Zcs\": {\"duration\": 189.01, \"timestamps\": [[0.95, 9.45], [12.29, 16.07], [17.01, 171.05], [95.45, 144.59], [152.15, 172], [176.73, 186.18]], \"sentences\": [\"A guy walks in the rain.\", \" A boat approaches, and the guy is in the boat.\", \" The guy goes water surfing while holding on to a rope connected to the boat.\", \" The does flips or swings around the boat while water surfing.\", \" The guy lets go of the rope attachment and glides on the surface.\", \" The credits of the video are shown.\"]}, \"v_vwpaEsh0-1U\": {\"duration\": 205.68, \"timestamps\": [[0, 42.17], [42.17, 82.27], [82.27, 167.63], [166.6, 205.68]], \"sentences\": [\"Several people are shown running inside onto a field with hundreds of people watching on the sidelines.\", \" The men warm up and do several jumps and tricks while wandering around and huddling up.\", \" The men then play soccer for a bit when one jumps on the fence and several grab him on the sides.\", \" He bows to a man and several team mates help him and finishes with him tying his shoes.\"]}, \"v_IJAR9ERJt4s\": {\"duration\": 31.19, \"timestamps\": [[0, 12.16], [13.41, 31.19]], \"sentences\": [\"A man is playing the bag pipes in front of a building on fire.\", \" People are crowded in the streets in front of a fire.\"]}, \"v_o_JAjYZDs9Y\": {\"duration\": 16.05, \"timestamps\": [[0, 4.25], [4.65, 11.55], [10.67, 15.8]], \"sentences\": [\"A small group of people are seen standing around holding lacrosse sticks.\", \" The people then run towards each other excitedly.\", \" Finally they cheer with all the players and coaches.\"]}, \"v_k_7hLIwul48\": {\"duration\": 33.41, \"timestamps\": [[1, 13.7], [11.03, 32.58]], \"sentences\": [\"A man is seen blind folded on a stage and a woman hands him darts while speaking to him.\", \" The man then throws the darts and the woman laughs at his results while he takes the blindfold off.\"]}, \"v_QZWyv6SShks\": {\"duration\": 159.82, \"timestamps\": [[0, 91.1], [91.1, 159.82], [91.1, 159.02]], \"sentences\": [\"people are running in a field playing lacrosse.\", \" woman is interviewing two team players ina  green field.\", \" a lot of people are walking behind the girls in the background of the field.\"]}, \"v_kElViDpjunQ\": {\"duration\": 120.77, \"timestamps\": [[0, 45.29], [45.89, 73.06], [72.46, 96.01], [96.61, 120.77]], \"sentences\": [\"A woman is shown standing behind a white and green counter begins talking as several sketches of clothes are shown behind her.\", \"The woman then takes a brush out and begins to scrub a wheat boot.\", \"After,she walks into another room and cleans a Chuck Taylor with a sponge,some liquid and a white towel.\", \"The shampoo is then shown on a table alone and the lady continues to talk about it.\"]}, \"v_rmoa-Ffel2k\": {\"duration\": 94.55, \"timestamps\": [[0, 23.17], [21.75, 76.11], [76.11, 94.55]], \"sentences\": [\"A man is seen speaking to the camera and stepping on a piece of exercise equipment.\", \" The man then uses the machine while speaking to the camera and pointing to his legs as well as water.\", \" He steps off the machine while pointing to the camera and then walks away.\"]}, \"v_7JXae2so5-E\": {\"duration\": 48.6, \"timestamps\": [[8.5, 29.89], [29.4, 36.21], [37.18, 40.1]], \"sentences\": [\"A person is welding something on a table.\", \" They show the piece of metal that they welded.\", \" A red machine is shown on the ground.\"]}, \"v_v34qczSoYLo\": {\"duration\": 95.78, \"timestamps\": [[0, 3.83], [3.83, 35.92], [36.4, 51.24], [51.72, 68.48], [68.96, 83.33], [84.77, 95.78]], \"sentences\": [\"We see cables and straps and the title appear.\", \" We see men putting on gear and walking out onto a steep crane.\", \" A lady talks with the men as they wait on the crane.\", \" The lady with a helmet cam does a bungee jump.\", \" We see the lady jump from a distance.\", \" The title reappears on the screen and fades to black.\"]}, \"v_IEPoIqIrprg\": {\"duration\": 233.57, \"timestamps\": [[0, 82.92], [68.9, 185.69], [161.16, 228.9]], \"sentences\": [\"Several clips are shown of people walking around a gymnasium and coaches yelling on the side.\", \" More clips are shown of people playing volleyball with one another and looking off into the distance.\", \" The people continue playing with one another back and fourth over the net.\"]}, \"v_UTiSAR1o2nU\": {\"duration\": 138.95, \"timestamps\": [[0, 131.31], [75.03, 78.51], [132, 138.95]], \"sentences\": [\"People try to walk on a tight rope or slack line.\", \" A guy lifts a male onto the slack line.\", \" The guy and lady pose in a photo.\"]}, \"v_dZyb8t-4ATQ\": {\"duration\": 26.59, \"timestamps\": [[0, 1.86], [1.99, 5.05], [5.18, 21], [9.31, 15.69], [15.82, 18.08]], \"sentences\": [\"The credits of the clip are shown.\", \" A guy is laying down carpet.\", \" Against the wall, the guy is placing a black base.\", \" The guy uses a white, long paper and a pencil to measure.\", \" The guy cuts the base with a box cutter.\"]}, \"v_Ol7JKNItQC4\": {\"duration\": 223.66, \"timestamps\": [[0, 123.01], [77.16, 220.3]], \"sentences\": [\"A large group of people are seen dancing together in a large room with one woman instructing them in front.\", \" The group continues moving around together with the woman still instructing in front.\"]}, \"v_4GrPMa_BE6M\": {\"duration\": 22.33, \"timestamps\": [[0, 22.33], [0, 3.46], [3.46, 18.42], [18.53, 20.21], [20.32, 22.33]], \"sentences\": [\"A muscular woman and a smaller man are in a room arm wrestling as people cheer them on.\", \"  They get into position and the man counts to three.\", \"  The woman and man arm wrestle.\", \"  The woman reaches over with her left hand and pulls her arm to her side in a  mock victory.\", \"  The competitors laugh about the event.\"]}, \"v_e2IL0BusPNM\": {\"duration\": 113.94, \"timestamps\": [[0, 26.21], [26.78, 56.97], [56.4, 83.75], [83.75, 113.94]], \"sentences\": [\"A group of friends are at someones house playing beer pong.\", \" They are having  a really good time taking their shots and trying to win.\", \" They take turns on every side of the table, they are dancing and throwing the balls into the other side cups.\", \" They make it in the cups sometimes and others they don't and just bounce out.\"]}, \"v_eBlYGGmeBY0\": {\"duration\": 53.55, \"timestamps\": [[0, 53.55], [1.61, 53.55], [0, 51.94]], \"sentences\": [\"man is standing on a rooftop fixing the roof.\", \" men are standing on rooftop fixing the roof tiles.\", \" men are standing in front of window in a rooftop.\"]}, \"v_aELu8QS8T54\": {\"duration\": 88.31, \"timestamps\": [[0, 7.51], [11.48, 46.8], [49.45, 88.31]], \"sentences\": [\"A woman is talking to the camera on the beach.\", \" She runs past a woman with a dog.\", \" The girls sit on the sand, making a sand castle.\"]}, \"v_cIaqen3kVIA\": {\"duration\": 145.4, \"timestamps\": [[0, 14.54], [15.27, 114.14], [114.87, 122.14], [122.87, 145.4]], \"sentences\": [\"A girl talks holding a flute.\", \" Then, she plays the flute pressing the buttons.\", \" After, the girl stops playing and talks.\", \" Next, the girl resume playing the flute and after she end and smiles.\"]}, \"v_Y5uVICaJU-0\": {\"duration\": 6.04, \"timestamps\": [[0, 0.36], [0.69, 4.53], [5.34, 6.04]], \"sentences\": [\"A man is holding a ball.\", \" He spins around several times with the ball.\", \" He releases the ball and throws it onto the field in front of him.\"]}, \"v_JKZ-3N1fYL8\": {\"duration\": 11.38, \"timestamps\": [[0, 11.38], [0, 11.26], [0.4, 11.38]], \"sentences\": [\"woman is in a abandoned field raking dy leaves from the floor.\", \" old woman is sweeping dry leaves from the floor.\", \" woman is wearing a cap and is standing on the dusty path sweeping.\"]}, \"v_Liha_xwiwtc\": {\"duration\": 24.01, \"timestamps\": [[0, 3.6], [4.08, 19.33], [19.57, 24.01]], \"sentences\": [\"A rushing white river is shown in the woods.\", \" A man in a canoe appears, paddling through the rapids.\", \" He slows down just as he reaches calmer waters.\"]}, \"v_PvB98KAatK8\": {\"duration\": 204.96, \"timestamps\": [[0, 14.35], [14.35, 27.67], [27.67, 65.59], [65.59, 204.96]], \"sentences\": [\"man is in front of a river and have a bag on his head.\", \" woman is doing water skiing in a river.\", \" man is siting in a chair showing the right position to do water ski.\", \"woman is in wate standing holding the pole and puting the shoes and the deep water starts.\"]}, \"v_tTEAlDsmZrA\": {\"duration\": 193.35, \"timestamps\": [[0, 48.34], [43.5, 139.21], [105.38, 186.59]], \"sentences\": [\"A man is seen cutting trees in a backyard while the camera pans around the area.\", \" More men are seen cutting hedges on the lawn as well as the trees up high.\", \" Several men work together on the home and the camera pans around the yard in the end.\"]}, \"v_Zp9mSiw8Vkw\": {\"duration\": 49.81, \"timestamps\": [[0, 8.97], [8.72, 20.17], [20.17, 33.37], [33.62, 49.81]], \"sentences\": [\"People are playing a game on a foosball machine inside of their home.\", \" They go back and forth trying to prevent the other from scoring.\", \" Someone puts their hand in the way to put the ball back in the game.\", \" They continue to play trying to score and keep the other player from scoring.\"]}, \"v_T9gKHEOvRKk\": {\"duration\": 79.13, \"timestamps\": [[0, 7.12], [7.12, 13.06], [13.06, 36.8], [36.8, 79.13]], \"sentences\": [\"A still shot picture appears but with a special affect to it as if it were made up of vertical strips that were flipped to turn into a picture of a woman and with the company name on the right that say's \\\"SkinMedica\\\" and words on the bottom of the screen that read \\\"How to Apply\\\", and the next picture is a bottle of the product which is silver with gold writing on it.\", \" A brunette woman is speaking and the words on the bottom right screen say her name is Sarah and she's the product manager.\", \" A red headed woman is now putting the product onto the back of her left hand and with her right hand she puts the product on her face, and then uses both hand to apply it all over her face.\", \"The brunette woman is back to talking and in between her talking they show the red headed woman rubbing the product onto her face along with instructions on how to use it, the bottle of the product, and then a yellow screen appears with white text that say's \\\"Every Single Day\\\" and ends with a white screen that has the logo and the brand name SkinMedica.\"]}, \"v_7o-2My6U3GU\": {\"duration\": 107.88, \"timestamps\": [[0, 35.06], [24.27, 68.5], [53.4, 105.18]], \"sentences\": [\"A close up of snow is seen with a shovel next to it.\", \" A person then begins pushing the snow along the area.\", \" The person continuously shovels while the camera captures his movements.\"]}, \"v_sbIh_M0oGs8\": {\"duration\": 33.55, \"timestamps\": [[0, 33.55], [0, 13.25]], \"sentences\": [\"kids are riding in little motobikes in a green grassy field.\", \" men are standing behind the children in the motobikes.\"]}, \"v_v621l04N1QQ\": {\"duration\": 69.36, \"timestamps\": [[0, 10.06], [10.06, 32.95], [31.56, 53.75], [52.71, 69.36]], \"sentences\": [\"A person is shown jumping off a jump on water skis as well as people reacting and scoring his jump.\", \" More people jumping are shown as well as people watching on the side lines.\", \" One person falls while another leads into a person doing tricks and flips.\", \" In the end a large group of people are seen all riding together.\"]}, \"v_8c-s3TKrtdE\": {\"duration\": 157.69, \"timestamps\": [[0, 22.86], [22.86, 59.13], [59.13, 82], [83.57, 116.69], [117.48, 135.61], [134.03, 157.69]], \"sentences\": [\"A large group of people are seen running down a field with one scoring a goal and the rest lining up.\", \" A coach yells onto the field and players walk around and await another player's movements.\", \" The man hits the ball and the game continues on with one team scoring a goal and celebrating.\", \" The same shot is shown again and the game continues with the men running up and down the field.\", \" Another goal is made from the other team and the coach as well as teammmates celebrate.\", \" One final shot is shown again and the audience cheers.\"]}, \"v_MjljlkQaHh4\": {\"duration\": 24.57, \"timestamps\": [[0, 1.84], [1.97, 15.72], [20.02, 21.74], [21.86, 24.57]], \"sentences\": [\"Two sumo wrestlers are standing on the mat.\", \" There is a purple light flying around as the collide with each other.\", \" We see a title card after a shot.\", \" We then see smoke billowing up from the floor.\"]}, \"v_9Rvz-oIAn50\": {\"duration\": 79.45, \"timestamps\": [[0, 7.15], [7.15, 72.7], [72.7, 79.45]], \"sentences\": [\"A woman dressed in athletic gear is standing and talking on a wooden floor with exercise gear around her.\", \" The woman begins to start stepping back and forth as she exercises and starts stepping onto her stepper on the floor near her and continues to talk the whole time.\", \"The woman stops exercising and continues to talk while using hand motions.\"]}, \"v_T_5ANYuDWOA\": {\"duration\": 104.78999999999999, \"timestamps\": [[8.91, 17.29], [8.91, 91.17], [0, 104.79]], \"sentences\": [\"A person stands on a ladder and trims the top of a hedge.\", \" They move the ladder and continue trimming the hedge.\", \" There is a rope on the top of the hedge.\"]}, \"v_4HxmQpkryjA\": {\"duration\": 66.57, \"timestamps\": [[0, 12.65], [14.65, 50.26], [51.59, 66.57]], \"sentences\": [\"A group of children are seen swimming in a pool.\", \" The kids hit a ball back and forth in the water.\", \" They fight over the ball, trying to get it into the goal.\"]}, \"v_bCEdkW675dQ\": {\"duration\": 24.1, \"timestamps\": [[0, 8.32], [8.44, 18.92], [19.04, 24.1]], \"sentences\": [\"An man talks to a young man that holds a violin.\", \" Then, the man shakes hand and talks to a person that sits in the room.\", \" After, the young man plays the violin while the man leave the room.\"]}, \"v_CSDApI2nHPU\": {\"duration\": 115.59, \"timestamps\": [[0.58, 57.22], [35.83, 110.97]], \"sentences\": [\"A camera pans around a room and leads into a woman washing dishes in a sink.\", \" She continues washing the dishes and laughing to the camera.\"]}, \"v_4NSWcmO_u4I\": {\"duration\": 73.42, \"timestamps\": [[0.37, 41.48], [30.84, 68.28]], \"sentences\": [\"A person is seen painting over a fence in several shots as well as pieces of equipment and a hose spraying down the fence.\", \" The man sprays down the fence all over as the camera pans around them.\"]}, \"v_73LjSLUZGZc\": {\"duration\": 130.5, \"timestamps\": [[0, 30.67], [48.94, 93.31], [100.48, 106.36]], \"sentences\": [\"People are throwing bowling balls down a lane at pins.\", \" Someone dumps bowling balls and pins into a machine that shreds them.\", \" Someone drives a forklift into bowling pins on the ground.\"]}, \"v_a6kF1_4rs2E\": {\"duration\": 101.43, \"timestamps\": [[0, 28.4], [30.43, 75.56], [68.46, 97.37]], \"sentences\": [\"A man is seen speaking to the camera in front of a small ski.\", \" The man then holds up a wax machine and pours wax onto the side.\", \" He runs the machine along the ski as well as shaving off the excess wax and pointing to the ski.\"]}, \"v_ZWudhOEyE_0\": {\"duration\": 160.15, \"timestamps\": [[0, 11.21], [12.01, 151.34], [84.88, 90.48], [115.31, 123.31], [152.14, 160.15]], \"sentences\": [\"A lady is petting a dog on a table tied to a wall.\", \" The lady uses an electric shaver and shaves the dogs hair.\", \" The lady turns the dog's butt towards the camera.\", \" The dog turns and sits down.\", \" The lady puts the shaver down and talks to the camera.\"]}, \"v_kl4vLrvGAmM\": {\"duration\": 180.14, \"timestamps\": [[0.9, 86.47], [76.56, 165.73]], \"sentences\": [\"A close up of a bucket is shown with a person spreading around plaster and putting it onto a floor.\", \" A person then spreads around the plaster and places tiles on the floor with the plaster.\"]}, \"v_mfJj5gBQg-4\": {\"duration\": 27.11, \"timestamps\": [[0, 3.93], [5.15, 18.71], [20.6, 27.11]], \"sentences\": [\"A woman is sweeping the floor in a casino.\", \" The lights flash and move over the surface of the floor.\", \" She continues to sweep as she moves around the room.\"]}, \"v_DCjklOgbzGs\": {\"duration\": 158.41, \"timestamps\": [[0, 43.56], [40.39, 125.14], [128.31, 158.41]], \"sentences\": [\"A person is seen riding on a sky lift and leads into him riding down a snowy mountain.\", \" The camera passes several people as he continues to ride along and move faster down the hill.\", \" In the end he makes it down the hill and enters the ski lift once again.\"]}, \"v_m-B1tlnywNY\": {\"duration\": 198.07, \"timestamps\": [[0, 40.6], [40.6, 96.06], [96.06, 154.49], [154.49, 198.07]], \"sentences\": [\"A group of cheerleaders run on stage with and get set in their spots to start their performance.\", \" They begin with the middle girls being flipped in the air and then the girls run on cheering and doing flips.\", \" They stay in sync throughout the entire cheer, looking great and hitting all the moves with grace.\", \" They end the routine with a huge triangle of girl being held up by with three rows of women, top middle and bottom.\"]}, \"v_WJfMz7joX4s\": {\"duration\": 87.1, \"timestamps\": [[0, 9.58], [11.32, 40.94], [42.68, 87.1]], \"sentences\": [\"A hockey player is swinging around his stick on the ice.\", \" He trips and falls down on his knees.\", \" He gets back up, looking disoriented as he rejoins his team, falling again.\"]}, \"v_Aj0Pd6snB-k\": {\"duration\": 106.34, \"timestamps\": [[0, 7.44], [25.52, 106.34]], \"sentences\": [\"A woman wearing a pink hat is holding a plate with cookies on it.\", \" She begins to put sprinkles on top of the cookies.\"]}, \"v_dSF2i1OQtMc\": {\"duration\": 227.93, \"timestamps\": [[15.95, 19.37], [68.38, 77.5], [168.67, 173.23]], \"sentences\": [\"People are jump roping in a gymnasium.\", \" People are jump roping outside in a park.\", \" People are dancing and jump roping on a stage.\"]}, \"v_dR3hrw9dVdw\": {\"duration\": 170.11, \"timestamps\": [[0, 28.92], [34.02, 115.67], [118.23, 170.11]], \"sentences\": [\"A man is sitting at a piano in front of sheet music.\", \" He plays gracefully at the piano, reading the music.\", \" He speeds up and slows down as required, then stops.\"]}, \"v_WXEq3OeD68o\": {\"duration\": 78.1, \"timestamps\": [[0, 77.32], [0, 69.12], [77.32, 78.1]], \"sentences\": [\"A guy is weightlifting on stage.\", \" The guy lifts the weights over his head, and the guy jumps into the air in joy.\", \" The guy stops weightlifting on stage.\"]}, \"v_NQOPahBcpSE\": {\"duration\": 171.22, \"timestamps\": [[0, 36.81], [35.1, 97.6], [64.21, 169.51]], \"sentences\": [\"A young woman is seen looking to the camera while a dog sits in front of her.\", \" She is then shown texting and walking all around town with her dog.\", \" She lays guitar and sings with her dog as well as doing fun activities with the dog.\"]}, \"v_lE3Hs4bsPhg\": {\"duration\": 236.49, \"timestamps\": [[0, 67.4], [50.84, 167.91], [164.36, 231.76]], \"sentences\": [\"A woman is seen walking on stage taking pictures and speaking to a man in a chair.\", \"The two continue speaking and lead into a dance routine with one another.\", \" The two spin and twirl around the stage and end by holding a pose.\"]}, \"v_D5xp0LuEcKw\": {\"duration\": 190.66, \"timestamps\": [[0, 183.99], [60.06, 118.21], [186.85, 190.66]], \"sentences\": [\"Two people are dancing in a room.\", \" They spin around on the dance floor.\", \" They finish dancing and step away from each other.\"]}, \"v_9Zn0zErRckc\": {\"duration\": 23.04, \"timestamps\": [[0, 9.1], [14.74, 23.04], [9.1, 14.74]], \"sentences\": [\"man is running in a race track and make a long jump.\", \"man wearing a USA sweater is talking in front of a podium while the american flags flutter in the pole.\", \" another man approaches to the man who just made the jump and shake hands with him.\"]}, \"v_F1xZKduLnWg\": {\"duration\": 130.64, \"timestamps\": [[0, 13.06], [21.55, 100.59], [105.16, 130.64]], \"sentences\": [\"A woman is shaking hands and handing out medals.\", \" She hugs her fellow team mates.\", \" She is then seen interviewing with the camera at a jousting match.\"]}, \"v_yzN9jN3qncA\": {\"duration\": 150.35, \"timestamps\": [[0, 46.61], [31.57, 105.24], [75.93, 148.09]], \"sentences\": [\"A man is seen playing a piano in the middle of a large city with others watching on the sides.\", \" People give the man tips while he continues to play and others watch.\", \" More people stop and watch the man play piano and end with the camera panning around the man.\"]}, \"v_L67RSiR2X78\": {\"duration\": 300.33, \"timestamps\": [[0, 3], [3, 300.33], [76.58, 100.61], [100.61, 132.14], [132.14, 252.27], [252.27, 298.83], [298.83, 300.33]], \"sentences\": [\"An advertisement for snowculture is on the screen.\", \" A man is waxing and buffing his skies.\", \" He rubs wax over the ski again.\", \" He uses the buffer on the ski again.\", \" He is scrapping off the excess wax from the ski.\", \" He is buffing it with a fine buffer.\", \" He is done with buffing the ski.\"]}, \"v_qXNYHbnGvto\": {\"duration\": 186.81, \"timestamps\": [[0, 184], [0, 3.74], [7.47, 38.3], [44.83, 85], [85.93, 184]], \"sentences\": [\"A girl demonstrates how to brush and groom a horse using several different brushes and techniques.\", \"  A girl stands next to a tethered horse and begins to talk to the camera.\", \"  The girl begins to brush the horse with a brush.\", \"  The girl then brushes the horses mane and tail with the brush along with its head and nose.\", \"  The girl finally brushes the horses legs and, combs its main, and then brushes the bottom of the horses hoofs before turning to talk to the camera again while standing next to the horse.\"]}, \"v_ksNvNH4fpdo\": {\"duration\": 18.37, \"timestamps\": [[0, 18.37], [0.92, 18.37], [0, 18]], \"sentences\": [\"man is sitting on a maching doing exercise.\", \" man is doing pectoral exercises on a gym wooden room.\", \" man is sitting in a chair on the back.\"]}, \"v_HaGLPOqibaM\": {\"duration\": 200.76, \"timestamps\": [[0, 8.03], [16.06, 195.74], [72.27, 88.33], [89.34, 92.35], [123.47, 127.48], [153.58, 157.6], [177.67, 200.76]], \"sentences\": [\"A man walks into a room.\", \" The man begins to smooth plaster on the wall.\", \" We see the ceiling in the room.\", \" We then focus on the wall the man works on.\", \" We see the man adding plaster to his base.\", \" We follow the man as he gets more plaster.\", \" The man walks away from the wall.\"]}, \"v_ToLMOwlrgm0\": {\"duration\": 218.8, \"timestamps\": [[0, 218.8], [9.85, 28.44], [19.69, 59.08], [73.3, 135.66], [100.65, 185.98], [192.55, 218.8]], \"sentences\": [\"There's a man in a blue striped shirt and a woman in a black hoodie standing in a bathroom.\", \" The man is holding a brush in his hand as he does a hair tutorial.\", \" He gives the brush to the woman who bends down and back combs her hair.\", \" Then the woman takes a portion of her front hair and combs it with the brush.\", \" The man continues to explain how to brush the hair as the woman parts her hair into sections using hair clips.\", \" She continues brushing her hair trying to straighten it.\"]}, \"v_HzSCfBOefA4\": {\"duration\": 30.02, \"timestamps\": [[0, 3.75], [3.6, 28.07], [28.22, 30.02]], \"sentences\": [\"A man talks to the camera.\", \" The camera pans to show another man washing dishes while dancing in place.\", \" The camera returns to the first man.\"]}, \"v_iaKlx11RAiY\": {\"duration\": 135.34, \"timestamps\": [[0, 49.4], [49.4, 54.14], [54.14, 135.34]], \"sentences\": [\"comic girls are dancing in a white room and singing rock paper scissors.\", \" a pink bull is behind the girls.\", \" one of the girls choose scissors and a thread pull her.\"]}, \"v_Zr1xfVeUGeo\": {\"duration\": 213.86, \"timestamps\": [[0, 7.48], [7.48, 13.9], [13.9, 69.5], [69.5, 84.47], [84.47, 125.11], [120.83, 192.47], [196.75, 213.86]], \"sentences\": [\"A fish shaped cake displayed on a table.\", \" A baker artist mixes a cover base mixture in a plastic cup using a small paint brush.\", \" The baker artist uses the small paintbrush to coat the entire fish cake.\", \" Baker artist then mixes a liquid and another powder mixture together and gets a different color texture.\", \" The artist then paints on the liquid onto the entire fish cake.\", \" The artist shows a bottle of blue color liquid which he uses to paint stripes on to the fish cake.\", \" The artist then places a white candy where the fish eye would be and proceeds to paint the eyeball with a dark color.\"]}, \"v_kyvxaxRFLG8\": {\"duration\": 103.59, \"timestamps\": [[0, 62.67], [62.15, 69.4], [69.92, 103.59]], \"sentences\": [\"men are standing in a backyard chopping a trunk.\", \" men are talking on the phone and laughing.\", \" men are chopping the trunk standing in a hall between house and a wooden fence.\"]}, \"v_t1urvYx1X_w\": {\"duration\": 41.1, \"timestamps\": [[0.41, 21.17], [14.39, 40.07]], \"sentences\": [\"A man is seen walking out of a building and begins wiping off his car with a briefcase.\", \" He continues to struggle to wipe off the snow and ends with him looking at the wrong car.\"]}, \"v_xMEwcb1P6dQ\": {\"duration\": 48.67, \"timestamps\": [[0, 10.71], [10.71, 32.61], [32.85, 48.67]], \"sentences\": [\"A young girl is sitting in the room positioning her camera.\", \"After everything is put into place,she begins to play her guitar in her room.\", \"When she is finish,she looks into the camera smiles and stops playing.\"]}, \"v_HWuRcUpcsHY\": {\"duration\": 53.94, \"timestamps\": [[0, 53.94], [15.1, 17.8], [28.32, 42.88]], \"sentences\": [\"People are kayaking in a river.\", \" A person gives a thumbs up to another person.\", \" The person goes over a large waterfall and lands on a rock.\"]}, \"v_isGfZVCL4gE\": {\"duration\": 139.23, \"timestamps\": [[11.14, 34.81], [48.03, 64.74], [71.7, 90.5], [95.37, 98.85], [98.85, 99.55], [108.6, 119.74], [136.44, 139.23]], \"sentences\": [\"A boy irons a pair of boxes on an ironing board.\", \" The boy leaves and return with a pan of food.\", \" The boy returns with a spoon and eats some of the pan of food.\", \" The boy takes off his sweatshirt.\", \" The boy plants his face into the pan of food.\", \"  The boy eats more, then covers the pan of food with foil, and take it away.\", \" The boy returns and captures his pie face.\"]}, \"v_RnShLAifVno\": {\"duration\": 102.84, \"timestamps\": [[5.14, 96.67], [48.34, 68.39]], \"sentences\": [\"A lady stands in a kitchen talking.\", \" The same lady then starts washing dishes for a while.\"]}, \"v_ev-RTtbVjFI\": {\"duration\": 143.38, \"timestamps\": [[4.3, 12.9], [12.9, 46.6], [46.6, 62.37], [62.37, 140.52]], \"sentences\": [\"Still images of cleaning utensil heads are shown.\", \" A pair of hands washes something at a sink.\", \" The pair of hands inserts a T-frame inside the washed object.\", \" A man uses the cleaning utensils to clean a window.\"]}, \"v_N8BlpYSpgg4\": {\"duration\": 52.15, \"timestamps\": [[0.78, 29.99], [21.38, 49.81]], \"sentences\": [\"A large group of people are seen laying out on the beach while others stand around and protest.\", \" Several people are seen holding up signs to protest whilte camera continues to pan around people laying down.\"]}, \"v_JMpwIWxoB5s\": {\"duration\": 166.67000000000002, \"timestamps\": [[0, 55.84], [53.34, 142.51]], \"sentences\": [\"A close up of ingredients are shown followed by a persons hands moving around the objects.\", \" The camera pans around the objects and shows them all mixed together and poured into glasses.\"]}, \"v_UKo5IFacUyE\": {\"duration\": 38.57, \"timestamps\": [[0, 4.05], [4.05, 18.51], [19.86, 37.03], [17.36, 19.28]], \"sentences\": [\"A person steps on a button to start up a machine sitting on the ground.\", \" The person shines her right boot in the electric buffer machine.\", \" The person switches feet and shines the other boot.\", \" The woman lifts up her boot to show the polished finish.\"]}, \"v_E3UCEbGZmz0\": {\"duration\": 237.23, \"timestamps\": [[0, 61.68], [51, 148.27], [125.73, 219.44]], \"sentences\": [\"A person's leg is seen close up followed by a person painting a wall.\", \" The man moves the paint brush all along the wall while moving back and fourth.\", \" He continues to paint and shows off a boat in the end.\"]}, \"v_Fky1ioAUt38\": {\"duration\": 54.1, \"timestamps\": [[0, 6.22], [7.57, 21.64], [23.26, 49.5], [49.77, 54.1]], \"sentences\": [\"A woman drags a mop around a kitchen floor.\", \" A small dog bites the mop, trying to attack it.\", \" The dog is being drug around the room with the broom.\", \" He lets go and sticks his face in the mop water, wanting the mop back before attacking it again.\"]}, \"v_z0tiCqKa4cs\": {\"duration\": 92.74000000000001, \"timestamps\": [[0, 6.96], [9.27, 19.48], [22.26, 76.98], [77.9, 92.74]], \"sentences\": [\"A woman is standing in front of a counter in a kitchen, talking.\", \" She sets out two slices of bread, tomato and mayonnaise.\", \" She cuts the tomato into slices, then spreads mayo onto the bread before applying the tomatoes.\", \" She then shows the plate with a cut tomato sandwich on it, and takes a bite while she continues to talk.\"]}, \"v_ihdkXBpzKbE\": {\"duration\": 193.52, \"timestamps\": [[0, 4.84], [4.84, 6.77], [6.77, 26.12], [26.12, 47.41], [47.41, 73.54], [73.54, 193.52]], \"sentences\": [\"We begin by looking down a counter at kitchen sink.\", \" Someone arrives and begins washing dishes in the sink.\", \" A pan is scrubbed and rinsed with the sprayer.\", \"  A bowl is washed and rinsed next, followed by a spatula.\", \" Knives are washed and rinsed next, along with other silverware.\", \" Another pot follows, and a brush is used to scrub the pot several times, and other dishes are brought over to wash and rinse.\"]}, \"v_Srpn1NaBueI\": {\"duration\": 36.13, \"timestamps\": [[0, 17.88], [14.99, 27.82], [28, 36.13]], \"sentences\": [\"A man is sitting on top of a horse.\", \" The gate opens and he ropes a small animal and throws it on the ground and ties its back lets.\", \" He stands up and runs to get back on the horse.\"]}, \"v_1qKXZ9fThTg\": {\"duration\": 196.19, \"timestamps\": [[0, 10.79], [25.5, 50.03], [60.82, 172.64], [173.62, 188.34], [188.34, 196.19]], \"sentences\": [\"A lady is setting up and discussing her three bottles of cosmetics on the bathroom floor.\", \" She picks up the blue polish then the glitter one, then clear and sits them down.\", \" The lady opens the blue polish and paints her finger nails.\", \" The lady puts the glitter over the polish.\", \" The lady then shows off her finger nails.\"]}, \"v_1VBg21aaiKM\": {\"duration\": 97.13, \"timestamps\": [[5.34, 22.83], [23.31, 45.65], [46.62, 66.05], [66.53, 92.76]], \"sentences\": [\"A man talks, after cuts the beard with scissors.\", \" Then, the man talks and then cuts the beard with a machine.\", \" Again, the man talks and then cut the beard of the man with scissors.\", \" Next, the man talks and after cuts the mustache of the man with a machine, then he talks.\"]}, \"v_CBW_uJJpmZY\": {\"duration\": 115.94, \"timestamps\": [[0, 9.27], [9.27, 39.42], [39.42, 108.4], [108.4, 115.94]], \"sentences\": [\"There are three people wearing athletic gear and standing at along table with a lot of people sitting behind it and it's located in an indoor gym.\", \" The three people walk away from the table with jump ropes in their hand and they walk to the center of the court and get in formation with the boy on the left girl in the middle and the other girl to the right.\", \" The girl in the middle is holding the rope up and as soon as she drops the rope, they begin their very detailed and skilled routine that includes a lot of jumping,flips, and rotation of the players holding the ropes as they all take turns holding the rope and jumping.\", \" They drop the rope and end their routine with their hands thrown up in the air and hugging one another.\"]}, \"v_UlWLcqIvLKk\": {\"duration\": 131.17, \"timestamps\": [[0, 13.12], [24.27, 34.1], [38.7, 51.16], [127.23, 131.17]], \"sentences\": [\"This little baby is shown pretending to iron her clothes.\", \" First she irons her shirt, then she irons her folded red sweater.\", \" Then she irons her blue jean shorts.\", \" A little baby crawls into the scene for a little while, but then leaves back out.\"]}, \"v_FiFzHgBjryA\": {\"duration\": 157.76, \"timestamps\": [[0, 9.47], [9.47, 70.2], [69.41, 75.72], [76.51, 108.06], [115.16, 157.76]], \"sentences\": [\"We see a pile of paper on the floor and a vacuum.\", \" A person turns the vacuum on and vacuums the paper up.\", \" The person turns the vacuum off and grabs a different vacuum.\", \" The new vacuum simply pushes the paper mess around so they turn it off.\", \" The person uses the first vacuum to pick up the paper then uses the other to finish.\"]}, \"v_Xjw9vUwILOE\": {\"duration\": 102.89, \"timestamps\": [[1.03, 98.26], [1.03, 12.86], [12.86, 61.73], [61.73, 98.26]], \"sentences\": [\"A man performs a long jump at a judged professional sports event resulting in medals issued.\", \"  A man performs a long jump on a track and into a sandpit in front of judges and onlookers on the sidelines.\", \"  After the man lands the jump he explodes in celebration by clenching his fists, after which a slow replay of the jump plays and a scoreboard displays his score.\", \"  A series of still shots of the man smiling with another man looking on, the man receiving a medal for the long jump, another replay of the jump and a final scoreboards are displayed.\"]}, \"v_dSdZz_Royyc\": {\"duration\": 202.39, \"timestamps\": [[0, 21.25], [26.31, 68.81], [75.89, 125.48], [149.77, 202.39]], \"sentences\": [\"Water is beating against the shore as a truck appears, backing up into the waves.\", \" A boat is attached, and a man directs his movements.\", \" He puts on shooes, then goes water skiing as the boat drags him behind.\", \" He does several flips in the air before landing back in the splashing waves.\"]}, \"v_SSJjjggYBxc\": {\"duration\": 53.5, \"timestamps\": [[7.76, 52.16], [0, 7.49], [9.09, 38.79], [38.79, 52.43]], \"sentences\": [\"A man scrapes snow off of a blue car and then takes some of that snow, makes a snowball, and throws it in the direction of the camera, at an unseen person, until a hand holding a cigarette appears from behind the camera.\", \"  A shaky camera wanders a sidewalk picking up sidewalks and the sides of walls before circling to capture a man standing behind a blue car.\", \"  A man scrapes snows off of the back windshield of a blue car with a red handled ice scraper.\", \"  The man scraping the snow, makes a snowball and throws it in the direction of the camera, at which point a hand appears, holding a cigarette from the behind the camera.\"]}, \"v_oqVNFPUANfs\": {\"duration\": 124.9, \"timestamps\": [[0, 33.1], [33.1, 39.97], [39.97, 82.43], [82.43, 122.4]], \"sentences\": [\"A gymnast performs on the pommel horse on front a crowd.\", \" Then, the woman stands on the edge of the pommel horse and flips  backward four times.\", \" The gymnast flips in the air one time.\", \" After, the gymnast flips three times and two times in the air, the lands stand on the floor.\"]}, \"v_045Tkq12H_c\": {\"duration\": 231.92000000000002, \"timestamps\": [[0, 45.22], [51.02, 113.64], [119.44, 231.92]], \"sentences\": [\"A boy with a microphone is interviewing a man in sunglasses.\", \" They talk back and forth in front of a large boulder.\", \" Men are then shown rappelling down the side of the cliff as they talk.\"]}, \"v_rulzKikXMHo\": {\"duration\": 49.37, \"timestamps\": [[0, 5.68], [8.15, 10.86], [13.08, 14.32], [14.32, 16.78], [17.03, 17.77], [19.25, 28.63], [29.37, 49.37]], \"sentences\": [\"A guy picks up a metal ball and throws it in the air, and the ball comes down immediately.\", \" The guy rolls the ball.\", \" A male picks up the ball.\", \" A man spins with a metal ball.\", \" The man releases the metal ball, and it hits the male.\", \" The male falls to the ground.\", \" The male sits up with a towel on his wound.\"]}, \"v_y0Kio7VOk5o\": {\"duration\": 28.58, \"timestamps\": [[0, 9.72], [10.43, 28.58]], \"sentences\": [\"A high board is shown as girls walk up to the diving portion.\", \" They place their arms in the air, then dive into the pool below before getting out.\"]}, \"v_BWsjIONsXlM\": {\"duration\": 74.47, \"timestamps\": [[0, 6.7], [6.7, 12.66], [12.66, 31.28], [30.9, 45.42], [44.68, 61.44], [61.06, 74.47]], \"sentences\": [\"A man applies ski wax to a cross country ski while secured on a work table.\", \" The man wipes the cross country ski free of dust using a rag.\", \" The man applies a liquid onto the ski using a small paint brush.\", \" The man then uses a blow drier to melt the wax evenly onto the skis.\", \" He then removes the ski from the work table and wipes the ski down with a clean cloth.\", \" The man then leans the ski against the work table.\"]}, \"v_Yu18MvEn-To\": {\"duration\": 82.5, \"timestamps\": [[0, 82.5], [4.95, 8.66], [21.86, 32.18], [42.08, 56.51]], \"sentences\": [\"An elderly lady sits on a couch knitting.\", \" The camera zooms in on the lady.\", \" The camera then zooms out.\", \" The camera shifts then zooms in and out.\"]}, \"v_WPM0vuERyfc\": {\"duration\": 31.86, \"timestamps\": [[0.8, 5.26], [5.58, 11.47], [11.63, 18.48], [18.8, 27.88]], \"sentences\": [\"A woman holds a black pellet.\", \" Then, the woman pours black liquid to two glasses, then add a spoon of a black substance and stirs the mix with a straw.\", \" After, the woman pours the black liquid on glasses that have a strainer on top, in one glass the liquid is black and in the other glass the water is clean.\", \" After, the  woman shows a beauty product.\"]}, \"v_hghdjiQlYko\": {\"duration\": 141.97, \"timestamps\": [[0, 14.91], [14.91, 111.44], [111.44, 125.64], [125.64, 141.97]], \"sentences\": [\"A person wearing a bright orange vest is standing at the end of a steep snowy hill and five people on rubber tubes ride down towards the person.\", \" Various clips of different people are shown going up the steep hill and they all take turns going down and then catching a ride to go back up the hill to do it all over again multiple times.\", \" Now there's a snowblower and it's blowing snow into a snow hill while children play in it.\", \" Lastly, there's a person going down a zip line then it goes to a black screen with white text that read \\\"Recordnet dot com VIDEO\\\".\"]}, \"v_I5g6I-FOguQ\": {\"duration\": 73.26, \"timestamps\": [[0.37, 73.26], [0.73, 10.62], [10.62, 48.35], [48.35, 73.26]], \"sentences\": [\"A news report covers a story about a surfer who is captured on camera surfing incredibly high waves in the ocean.\", \"  A person at the top of a hill, standing on a stone balcony is seen recording the scene below in the ocean.\", \"  A man is seen in wild and rough waters surfing in the water with people watching with binoculars nearby.\", \" An expert, in an office is seen in front of a computer monitor measuring the distance of the wave from its top height in the air to the landing point in the water to measure the surfers distance in wave riding.\"]}, \"v_1jl5qtS4mNQ\": {\"duration\": 118.63, \"timestamps\": [[0, 13.05], [13.64, 37.96], [56.35, 82.45], [102.62, 109.14], [108.55, 118.63]], \"sentences\": [\"We see a series of intro screens.\", \" A man wipes a wall with his hand, and pulls a cord up from the baseboard.\", \" The man pulls the carpet back from the wall and sticks the strip on the board under the carpet.\", \" We then see the carpet up close.\", \" The ending credits run over a man playing piano.\"]}, \"v_Pfc7KbwqdYk\": {\"duration\": 37.99, \"timestamps\": [[0, 37.99], [0, 30.01], [30.39, 37.99]], \"sentences\": [\"People are standing in a room holding glasses of beer.\", \" They stand around talking in costumes.\", \" They all start drinking their beer at the same time.\"]}, \"v_-_gDSRlC1kg\": {\"duration\": 65.23, \"timestamps\": [[0, 12.72], [14.35, 52.51], [53.48, 65.22]], \"sentences\": [\"A man is standing on a court with a sweepers and inflatable pucks.\", \" He waits to get the go ahead to sweep.\", \" The game commences, and the players fight over the puck, trying to knock each other away.\"]}, \"v_2QydTDAYJsA\": {\"duration\": 19.06, \"timestamps\": [[0, 7.72], [6.1, 14.68], [13.63, 18.3]], \"sentences\": [\"A large group of people are seen sitting around an arena with a man sitting on top of a horse.\", \" The man then rides into the pit and ropes up the calf running around.\", \" The man ties up the calf and walks away from roping it up.\"]}, \"v_suyh4tGuScw\": {\"duration\": 113.11, \"timestamps\": [[0, 105.19], [24.88, 27.71], [42.41, 46.37], [60.51, 62.21], [94.44, 98.4], [98.97, 105.75], [105.75, 113.11]], \"sentences\": [\"We see a man and a woman dance on a stage in front of a band.\", \" The man dips the woman.\", \" The man spins the woman.\", \" The woman wraps her leg around the man.\", \" The man lifts and spins the woman.\", \" The woman wrapped around the man is dipped.\", \" We then see a red end screen.\"]}, \"v_D4Y6DyRD0kY\": {\"duration\": 61.12, \"timestamps\": [[3.36, 25.36], [17.42, 57.45]], \"sentences\": [\"A large group of people are seen standing by a river and watching it flow.\", \" A person is then seen riding down the river in a kayak while the people sit on the sides watch.\"]}, \"v_pnFRC2_HPrE\": {\"duration\": 180.49, \"timestamps\": [[2.71, 101.07], [70.39, 175.07]], \"sentences\": [\"A man and woman are shown in various shots riding on a piece of exercise equipment moving up and down.\", \" The people continue working out and the camera fades to black.\"]}, \"v_-01K1HxqPB8\": {\"duration\": 215.71, \"timestamps\": [[0, 34.51], [34.51, 53.93], [75.5, 86.29], [104.62, 132.66], [125.11, 134.82], [135.9, 170.41], [199.54, 214.64]], \"sentences\": [\"We see two men in a gym wearing lifting belts, one is talking.\", \" One man squats down, and lunges at the other man.\", \" We zoom out to see the man's full body.\", \" The left man squats down as the other leans forward.\", \" The right man pats the other on the head and he stands.\", \" The two men then lunge at each other.\", \" The left man lunges at the right.\"]}, \"v_tghS4UnuWzk\": {\"duration\": 219.29, \"timestamps\": [[0, 47.15], [48.24, 76.75], [77.85, 145.83], [146.92, 155.7], [172.14, 197.36]], \"sentences\": [\"A boy sits on a bathroom floor and holds up a low top tennis shoe to show the features.\", \" The boy shows a container of wet wipes then opens it to pull one out.\", \" The boy wipes down the sole of the tennis shoe using the wet wipe towel.\", \" The boy dries off the shoe using a towel.\", \" The boy picks up a high top pair and wipes it off with the same wet towel.\"]}, \"v_Zc44Ddk2NG8\": {\"duration\": 7.06, \"timestamps\": [[0, 6.14], [6.56, 7.06]], \"sentences\": [\"Little girls are shown sliding down a large red slide on a playground.\", \" They run away from the camera as a third girl begins to slide.\"]}, \"v_5c8HvpeRWrc\": {\"duration\": 40.73, \"timestamps\": [[0.81, 10.18], [11, 28.1], [23.42, 38.9]], \"sentences\": [\"Two ballerinas are seen dancing in a room with one another while twirling around.\", \" More girls are seen in the background dancing as well.\", \" The girls continue dancing with one another and stop in the end to look around.\"]}, \"v_aW8LjbEpY1c\": {\"duration\": 35.99, \"timestamps\": [[0, 11.34], [11.52, 30.59], [30.77, 35.99]], \"sentences\": [\"A person is seen sitting at a table with a rubix cube in his hands and then puts the cube and his hands down.\", \" A timer starts while a man watches him on the side and the man attempts to solve the rubix cube.\", \" He finishes the cube and puts the object down while the man writes his time and he speaks to the camera.\"]}, \"v_CCRPXH8ui-s\": {\"duration\": 229.69, \"timestamps\": [[0, 229.69], [42.49, 227.39]], \"sentences\": [\"A couple of kids plays on a jungle gym.\", \"  They go down slides, climb around, and use the other equipment.\"]}, \"v_nNldj5g7W5o\": {\"duration\": 182.23, \"timestamps\": [[0, 182.23], [45.56, 88.38], [88.38, 104.78], [103.87, 111.16], [152.16, 182.23]], \"sentences\": [\"A small baby sits in a car seat and hols a cup of food.\", \" The light shines bright on the right and scares the baby who begins to cry hard.\", \" The light fades and the baby calms down and looks all around the car.\", \" The baby throws his right arm in the air.\", \" The baby eats his ice cream and looks around the car.\"]}, \"v_9Zy5ylJYiA4\": {\"duration\": 197.02, \"timestamps\": [[0, 184.22], [36.45, 38.42], [107.38, 192.1], [145.8, 197.02]], \"sentences\": [\"Men sets up and throw  shot put balls in a track and field competition onto the field.\", \" Runner race in a track event.\", \" The man celebrates his throw and walks off the field.\", \" The crowd stands up and cheers for the athlete.\"]}, \"v_Nj_rPQwzllA\": {\"duration\": 164.79, \"timestamps\": [[0, 23.07], [23.07, 74.98], [74.16, 134.31], [134.31, 164.79]], \"sentences\": [\"On the late night show the guest is Neil Patrick Harris, he is very excited to see a horse come out on stage and jumps up and down very happily.\", \" Once they sit back down they talk for a while and then Neil starts playing the harmonica.\", \" He seems to be pretty good at it because it continues to play for quite a while.\", \" The host brings him, on one knee a pillow with a new Harmonica on it.\"]}, \"v_PllZQ09sBuI\": {\"duration\": 219.38, \"timestamps\": [[0, 14.26], [14.26, 43.88], [43.88, 121.76], [19.74, 121.76], [121.76, 142.6], [143.7, 195.25], [195.25, 219.38]], \"sentences\": [\"A family shows Christmas materials and family members.\", \" Then, a man and a woman set up a Christmas tree.\", \" Then, the couple put lights and ornaments on the tree.\", \" A toddler helps walks around and also help put ornaments on the tree.\", \" After, the man holds a toddler that puts a star on top the Christmas tree.\", \" A small Christmas tree is on table, and the toddler decorate it with lights and ornaments.\", \" After, the toddler puts a star on the top and more ornaments.\"]}, \"v_GavbA_SHlVM\": {\"duration\": 127.32, \"timestamps\": [[0, 17.82], [17.82, 43.92], [43.92, 105.67], [104.4, 127.32]], \"sentences\": [\"Two people are seen pulling an object out of a truck with one man standing behind them.\", \" One person then jumps off the side and is seen again being pulled up on the rope.\", \" Another man holds him steady and is dropped once again and pulled up a second time.\", \" The men throws his head back laughing and the men around him help him.\"]}, \"v_v9bcQsDl-yk\": {\"duration\": 162.31, \"timestamps\": [[3.25, 66.55], [55.18, 152.57], [145.27, 159.06]], \"sentences\": [\"Several clips are shown of people walking around as well as riding down a snowy mountain on tubes with people pushing them from behind.\", \" Several more shots are shown of people riding up the hills, grabbing their tubes, as well as riding down the mountain and laughing with one another.\", \" In the end a close up of a road is shown.\"]}, \"v_G77y1JRjZDU\": {\"duration\": 73.52, \"timestamps\": [[0, 12.5], [12.13, 73.52]], \"sentences\": [\"A pair of adults are seen with a group of young African kids taking pictures.\", \"Once the picture leaves,the kids are outside washing their clothes out of buckets and concrete basins filled with soap and water.\"]}, \"v_aotVhoXjqS0\": {\"duration\": 72.49, \"timestamps\": [[1.09, 46.76], [46.03, 50.38], [61.62, 64.52]], \"sentences\": [\"A man in a red shirt is holding a ball and racket talking.\", \" He drops the ball and hits it against the wall.\", \" He hits the racket with his hand.\"]}, \"v_0e-qdFlRmPU\": {\"duration\": 167.69, \"timestamps\": [[0, 17.61], [18.45, 37.73], [44.44, 111.51], [114.86, 167.69]], \"sentences\": [\"The interior of a building is shown, then a man and woman appear.\", \" They are speaking to each other.\", \" They then begin to dance, twirling and swirling and leaning against each other.\", \" They stop dancing, staring intently at each other.\"]}, \"v_lyjz4sNglQg\": {\"duration\": 111.87, \"timestamps\": [[0, 18.46], [18.46, 49.22], [49.22, 78.31], [78.31, 111.87]], \"sentences\": [\"Inside of a house men are working around cleaning setting up a christmas tree together.\", \" They are going around the tree adding lights to it.\", \" Little by little they cover more and more tree surface with lights, they begin to add bows and others decoration to the tree.\", \" They use a stool ladder to reach the top  and once they are finally done they turn the light off to see it light up in the dark.\"]}, \"v_TIAAUayALPI\": {\"duration\": 212.88, \"timestamps\": [[4.26, 21.29], [35.13, 60.67], [61.74, 118.15], [123.47, 164.98], [167.11, 196.91]], \"sentences\": [\"A stylist bushes people's hair and style is with hands.\", \" The stylist runs her hands through a patrons hair and decides how to proceed.\", \" The stylist sprays product in the hair then separates sections and braids them.\", \" The stylist unravels the braids then braids them backwards in a french braid.\", \" The stylist ruffles and styles the hair with the new braid.\"]}, \"v_Khxa5Ey3udM\": {\"duration\": 142.27, \"timestamps\": [[0, 6.4], [7.11, 142.27]], \"sentences\": [\"A person is inside a lawn mower parked near a field.\", \" Then, the person turn on the machine and mows a field.\"]}, \"v_0gf3AgK1YLY\": {\"duration\": 133.05, \"timestamps\": [[0.67, 72.51], [49.89, 126.4]], \"sentences\": [\"A young girl is seen looking at the camera and leads into her putting eyeliner on as well as mascara.\", \" The girl continues to put makeup on and ends by running her fingers through her hair.\"]}, \"v_-SCRtjT7dto\": {\"duration\": 126.57, \"timestamps\": [[0, 35.44], [24.68, 112.02], [96.19, 126.57]], \"sentences\": [\"A man is seen sitting in front of the camera while holding up leaves and dressing.\", \" The man then puts the leaves on a frisbee and pours dressing on the salad.\", \" He closes up the bottle and begins eating the food.\"]}, \"v_9Hxcuf80TK0\": {\"duration\": 215.09, \"timestamps\": [[0, 10.75], [10.75, 207.56], [207.56, 215.09]], \"sentences\": [\"We see a man playing a saxophone in front of microphones.\", \" The man stops playing and talks to the camera as the screen flashes black quickly.\", \" The end credits appear on the screen.\"]}, \"v_tj0sI8M3tro\": {\"duration\": 211.55, \"timestamps\": [[1.06, 209.43], [13.75, 63.46], [64.52, 199.91]], \"sentences\": [\"A woman demonstrates how to paint with a round brush.\", \"  A woman appears and talks to the camera in a room with a bookcase and paintbrushes in it in the background.\", \"  A closeup of a round tip brush appears before transitioning to an image of a hand using a brush to paint flowers on a white surface.\"]}, \"v_NcjQI0avKHE\": {\"duration\": 220.54, \"timestamps\": [[0, 41.9], [41.9, 92.63], [91.53, 164.31], [165.41, 220.54]], \"sentences\": [\"An intro leads into several shots of a girl riding down a snowy hill on a snowboard and continuously falling over.\", \" Several more shots of her balancing are shown as well as her throwing her gloves down and crashing into others.\", \" The days continue to progress watching her go and shots of her riding the lift and tightening her boots are shown.\", \" She now rides down the hill without falling and is able to move effectively back and fourth.\"]}, \"v_cc9iCNPSiKc\": {\"duration\": 189.77, \"timestamps\": [[0, 179.33], [61.67, 124.3], [127.14, 189.77]], \"sentences\": [\"A person is seen blowing leaves outside of a building while a person records them.\", \" The man moves all around the yard when another man comes into frame to help blow leaves.\", \" More people are seen working around the yard and several others walk in and out of frame.\"]}, \"v_nCzB1iXKYk4\": {\"duration\": 208.68, \"timestamps\": [[0, 200.33], [5.22, 24], [12.52, 175.29], [60.52, 182.59], [117.9, 171.12], [124.16, 179.46], [148.16, 191.98]], \"sentences\": [\"There's a man wearing blue jeans and sneakers tap dancing on a sidewalk.\", \" He begins first by spreading his feet shoulder width apart and then picks up speed to dance fast.\", \" He continues dancing rhythmically in fast motion, as he alternates his feet to tap the ground.\", \" He dances by tapping his heel first, followed by tapping his toes.\", \" He continues the steps by alternating the speed by moving slow to moving fast.\", \" He takes a little pause and then restarts his dance moves as he goes sideways and in front and back motion.\", \" He also goes in a circular motion as he alternates between his feet to tap the floor.\"]}, \"v_TVmuh_sR1KI\": {\"duration\": 134.7, \"timestamps\": [[0, 9.43], [10.78, 121.9], [121.9, 129.98], [131.33, 134.7]], \"sentences\": [\"a young girl is standing in front of a crowd.\", \" She is playing the bagpipes.\", \" When she finishes, she walks away.\", \" A woman jumps up and chases after her.\"]}, \"v_frbNKAZALzI\": {\"duration\": 201.9, \"timestamps\": [[0, 201.9], [43.41, 49.47], [53.5, 55.52]], \"sentences\": [\"People are kayaking over a large water fall.\", \" A person holds a camera and films it.\", \" Two people give each other a high five.\"]}, \"v_jimvzigX1ak\": {\"duration\": 32.18, \"timestamps\": [[0, 2.9], [3.38, 9.17], [10.46, 20.11], [21.72, 32.18]], \"sentences\": [\"Men are sitting at a black jack table.\", \" A dealer deals them cards.\", \" They play the game, making their card choices carefully.\", \" They win chips as they go along.\"]}, \"v_4zLTW7lT3fs\": {\"duration\": 106.35, \"timestamps\": [[0, 17.55], [37.22, 39.35], [70.72, 72.32]], \"sentences\": [\"A woman lifts a weight over her head.\", \" A man in a yellow shirt is sitting at a desk.\", \" A woman in a purple shirt is sitting on a bed.\"]}, \"v_Nn-KZMYbOv4\": {\"duration\": 141.46, \"timestamps\": [[0, 19.8], [24.05, 103.97], [106.8, 141.46]], \"sentences\": [\"A group of people are inside a dimly lit building.\", \" They are wearing christmas outfits while riding spin bikes.\", \" The people are taking a christmas spin class.\"]}, \"v_yKLX0iXyLsQ\": {\"duration\": 235.36, \"timestamps\": [[0, 31.77], [31.77, 225.94], [225.94, 235.36]], \"sentences\": [\"A large man is standing in a netted area and he quickly begins to spin and throws a discus very far, and a slow motion of his throw replays.\", \"More clips of the man at various different locations play in both real time and in slow motion while spectators look on at each location.\", \"On the last throw the man spins very quickly a few times, falls, gets back up and the screen goes to black.\"]}, \"v_5ayMRPi7Lg4\": {\"duration\": 21.46, \"timestamps\": [[0, 5.9], [0, 21.46], [6.54, 21.03]], \"sentences\": [\"A young man walks to the end of a diving board and jumps doing several turns and a flip before entering the water.\", \"  Other people are in and around the pool.\", \" A replay of the dive is shown in slow motion.\"]}, \"v_PCTqA_ov8RA\": {\"duration\": 182.02, \"timestamps\": [[0, 40.04], [40.95, 51.88], [52.79, 65.53], [66.44, 81], [81, 101.93], [102.84, 182.02]], \"sentences\": [\"A male surfer shows off his skills with a board shaped like a snow sled as he is pulled by a jet-ski but stops to enter a hut on the beach in order to trade out with another surfer that is bald.\", \" A blonde guy has now emerged from the hut with a boogie board yet he still struggles to ride the waves.\", \" Then he comes to and back from the hut with a blow up whale floatie he tries to surf with.\", \" Another surfer with dark hair comes to join in the water with a guitar case which he tries to use.\", \" The bald guy tries two skis while being pulled, retreats and switches to a scooter.\", \" A long montage of different items follows including a door, snowboard, a suitcase, bicycle etc while all get tested on the water.\"]}, \"v_4R37E4Kevs4\": {\"duration\": 26.4, \"timestamps\": [[0, 26.4], [13.6, 26.4]], \"sentences\": [\"A boy blows smoke in his dogs face by using a bong,the boy first inhale the smoke then blows it into the dog face.\", \"the boy laughs as the dog bark and choke on the smoke.\"]}, \"v_TIjwhYSIRgg\": {\"duration\": 123.44, \"timestamps\": [[0, 123.44], [0.62, 123.44], [0.62, 121.59]], \"sentences\": [\"a woman and a man are practicing fencing in a wooden court.\", \" a man and a woman are wearing fencing uniforms and holding \\u00e9p\\u00e9es practicing in a court room.\", \" he man and the woman are practicing thrusts in a wooden court.\"]}, \"v_SSoHwNbASQQ\": {\"duration\": 120.54, \"timestamps\": [[0, 45.8], [44, 120.54]], \"sentences\": [\"Various clips of people are shown climbing across a rope and a man being interviewed on camera.\", \" More shots of people walking are shown while the man speaks and is seen himself walking and performing tricks on the rope.\"]}, \"v_kAQML4pRtck\": {\"duration\": 6.13, \"timestamps\": [[0, 6.13], [0, 4.41]], \"sentences\": [\"A man is standing between metal fences on both sides of him and he's swinging a ball on a rope very quickly, then spins his body as well and the ball and rope go flying.\", \" There is another man standing and walking outside of the fence near the man throwing the ball on the rope.\"]}, \"v_LsK452h29ng\": {\"duration\": 164.32999999999998, \"timestamps\": [[0, 164.33], [32.87, 60.8], [60.8, 154.47], [153.65, 155.29]], \"sentences\": [\"We see a man talking while sitting on a rowing machine.\", \" The man pulls the handle on the machine.\", \" The man works out on the machine.\", \" The man lets go of the handle.\"]}, \"v_iANrLcieixM\": {\"duration\": 76.49, \"timestamps\": [[0, 24.09], [0, 76.49], [26.39, 43.6], [43.98, 44.36], [44.74, 46.27], [50.48, 68.07], [69.22, 76.49]], \"sentences\": [\"A man moves a large blue mat.\", \" A crowd gathers to watch an athlete perform.\", \" An athlete in a yellow tank sprints as he holds a white stick and leaps over a bar.\", \" He lands on a large blue mat.\", \" He stands up in excitement.\", \" His recent performance is replayed.\", \" The athlete walks off the track with his stick.\"]}, \"v_UqU_mAjgknQ\": {\"duration\": 77.78999999999999, \"timestamps\": [[0, 12.45], [15.95, 53.28], [58.73, 77.79]], \"sentences\": [\"A cartoon of sumo and karate is shown.\", \" The fighters are in a ring, bouching off each other and trying to jump on each other as the ring gets broken.\", \" He gets angry and stretches him out into balloon animals.\"]}, \"v_o9ghRI_Iddk\": {\"duration\": 148.07, \"timestamps\": [[0, 33.32], [33.32, 94.03], [94.03, 134.01], [133.27, 148.07]], \"sentences\": [\"A girl dressed in a white blouse and black skirt is standing on stage in front of an orchestra with her violin.\", \"The orchestra begins to play and close ups of the clarinets are shown.\", \"Finally,the girl begins to play and she is walking back and forth across the stage playing in front of hundreds of people.\", \"The violinist completes her piece and the host who is dressed in a red gown comes out with a mic and begins talking before bowing to the crowd.\"]}, \"v_YWfLZFXwjTE\": {\"duration\": 112.2, \"timestamps\": [[0, 34.22], [31.98, 83.03], [79.1, 109.39]], \"sentences\": [\"A woman is seen holding a baby and begins taking a drink from a cup and spitting it into the sink.\", \" The woman does this several more times wile the baby watches and laughs.\", \" She spits out one last time while both look down at the camera.\"]}, \"v_J_CJSmMFWlg\": {\"duration\": 33.32, \"timestamps\": [[0, 33.32], [10.83, 33.32]], \"sentences\": [\"A small group of young boys are seen holding up fighting gloves and hitting an older man wearing gloves.\", \" The boys continue to push and kick the man's hands while other boys practice in the background.\"]}, \"v_-ZDCHvzbnoU\": {\"duration\": 145.06, \"timestamps\": [[8.7, 87.03], [67.45, 143.61]], \"sentences\": [\"A man is seen speaking to the camera in various locations and leads into people playing paint ball around an arena.\", \" The man continues speaking while he demonstrates how to properly play paintball and others play around him.\"]}, \"v_mglEC2-MH14\": {\"duration\": 225.1, \"timestamps\": [[0, 41.64], [41.64, 66.4], [66.4, 104.67], [104.67, 171.07], [171.07, 225.1]], \"sentences\": [\"A young lady is sitting in a chair running her fingers through her long black curly hair.\", \"A set of rollers are shown and a bottle of mousse,the lady then applies some to her hand and starts to roll her hair.\", \"The process is finished,and she begins talking about what she just did.\", \"It is now the next day and she has on a face full of make up and starts to take the rollers out of her head.\", \"All of the girls are fluffed out by her hand and she takes a can of spray and runs it through her head once more.\"]}, \"v_96c3BWVDoq4\": {\"duration\": 123.69, \"timestamps\": [[4.95, 9.9], [11.13, 13.61], [14.84, 17.32], [17.94, 19.79], [29.07, 32.16], [32.78, 35.25], [40.2, 59.99], [61.23, 63.7], [64.32, 68.65], [69.89, 72.36], [73.6, 89.68], [90.3, 91.53], [93.39, 98.95], [99.57, 103.28], [103.28, 104.52]], \"sentences\": [\"A man walks into a tattoo parlor.\", \" Inside the tattoo parlor, three people are chatting by the waiting room.\", \" A tattoo artist is seen drawing a tattoo design onto a white piece of paper.\", \" The design is seen on the screen of a computer.\", \" The tattoo artist glues the design onto the arm of a woman.\", \" The tattoo artist tests the tattoo gun out.\", \" He begins to outline the tattoo.\", \" He checks out how the tattoo is going so far.\", \" He places more tattoo ink into small cups.\", \" He inserts a needle into a gun.\", \" He begins to color in the tattoo.\", \" The cups of ink are nearby.\", \" The artist adds the color pink to the bolt tattoo.\", \" Bright lights adorn the front of the tattoo parlor.\", \" The woman proudly showcases her new tattoo.\"]}, \"v_BTUgRe4aSsg\": {\"duration\": 27.76, \"timestamps\": [[0.42, 14.85], [11.52, 25.68]], \"sentences\": [\"An athlete is seen stepping up to a circle with people watching on the sides and her spinning around.\", \" She throws the object off into the distance and is seen walking away crying.\"]}, \"v_vlqrUu4gi0Q\": {\"duration\": 220.06, \"timestamps\": [[0, 24.21], [25.31, 188.15], [25.31, 200.25], [117.73, 119.93], [184.85, 188.15], [200.25, 220.06]], \"sentences\": [\"A cartoon projector is seen and different company logos from sponsors are shown.\", \" A large group sits on steps and watches a competition.\", \" Athletes bounce and jump on tight ropes in a competition.\", \" A DJ is seen playing music.\", \" The crowd does the wave.\", \" The athletes are presented trophies and stand on a podium together.\"]}, \"v_5wBo0Gd81-I\": {\"duration\": 164.0, \"timestamps\": [[0, 159.08], [1.64, 159.08], [161.54, 164]], \"sentences\": [\"Kids are sitting in bumper cars.\", \" They drive them and crash into each other.\", \" They stop and the kids get out.\"]}, \"v_RblRzlmSFak\": {\"duration\": 35.16, \"timestamps\": [[0, 7.03], [7.56, 35.16]], \"sentences\": [\"A man is carrying a board across the lawn.\", \" He starts using the board to push leaves into a pile.\"]}, \"v_-OH1BDqao9w\": {\"duration\": 208.56, \"timestamps\": [[0, 5.21], [5.21, 11.47], [13.56, 25.03], [26.07, 45.88], [49.01, 71.95], [69.87, 75.08], [90.72, 104.28], [108.45, 141.82], [141.82, 157.46], [162.68, 186.66]], \"sentences\": [\"The front of a car wash building is shown.\", \" A guy talks to someone inside a black car.\", \" He opens the door and she steps out.\", \" He vacuums the seats of the car.\", \" He car gets washed by a pressure washer.\", \" The tires are getting scrubbed.\", \" The car is getting dried by a man.\", \" The car gets driven out.\", \" People are sitting outside of the building.\", \" People are waiting inside of the waiting room.\"]}, \"v_3TLhUYQ8geM\": {\"duration\": 200.34, \"timestamps\": [[0, 18.03], [18.03, 30.05], [30.05, 64.11], [64.11, 145.25], [145.25, 200.34]], \"sentences\": [\" A tire is shown on a balancer and a man is separating the tired from its rim.\", \" He carefully works the tool around the circumference of the tire and pry's it off.\", \" he continues to work his way around the tire so as not to damage the rim.\", \" he then paints it with some sort of lacquer and then seats the tire back onto the rim he just removed it from.\", \"  A shot of his tools is shown and the video ends.\"]}, \"v_UxlSiLBleX4\": {\"duration\": 230.18, \"timestamps\": [[0, 219.82], [1.15, 219.82], [217.52, 219.82]], \"sentences\": [\"A man is sitting down in a chair.\", \" He begins to play an acoustic guitar.\", \" He finishes playing the guitar and standing up.\"]}, \"v_t3wyR2VQy20\": {\"duration\": 38.78, \"timestamps\": [[0, 9.31], [12.8, 22.49], [25.59, 38.78]], \"sentences\": [\"A person is seen standing on stilts jumping up and down before a set of stairs.\", \" The person then runs down the ramp on the stilts jumping and running back to the start.\", \" He runs and jumps up again into some grass and lays down laughing.\"]}, \"v_eUecHAdv1uU\": {\"duration\": 14.19, \"timestamps\": [[0, 1.42], [1.42, 14.19]], \"sentences\": [\"A man rides a horse that is pulled by a calf in a rodeo show.\", \" Then, the man get down the horse and kneels to tie the legs of the calf, then the man raises and walk.\"]}, \"v_oVPFTkC4-Lc\": {\"duration\": 70.33, \"timestamps\": [[0, 8.09], [9.14, 70.33], [16.18, 18.29], [40.44, 50.64]], \"sentences\": [\"Two women, one holding a mop, dance together.\", \" The first woman with the broom begins to mop the floor.\", \" The second woman climbs up a ladder.\", \" A woman dressed in black walks into frame and interacts with the woman with the mop.\"]}, \"v_-doxoUNGLJE\": {\"duration\": 206.57, \"timestamps\": [[0, 7.23], [7.23, 202.43], [202.43, 206.57]], \"sentences\": [\"An introduction shows up on the screen for an auto repair video.\", \" Two men begin to talk about car wheel and different characteristics and aspects of wheel, as well as the things to consider when altering your wheel size.\", \" The video ends with the closing graphics shown on the screen.\"]}, \"v_odbjmsyfJe4\": {\"duration\": 20.88, \"timestamps\": [[0, 20.88], [0.63, 3.65], [3.65, 12.11], [12.21, 20.88]], \"sentences\": [\"A man combs his hair in front of the mirror in the bathroom and lingers on one stroke of the comb while making faces in the mirror.\", \"  A man stands in the mirror, shirtless, combing his hair.\", \"  The comb gets stuck in a knot and the man starts making faces in the mirror.\", \"  The man finishes combing his hair and makes another face.\"]}, \"v_LSaUJwsU4GQ\": {\"duration\": 122.83, \"timestamps\": [[0, 34.39], [35.62, 84.76], [85.37, 122.83]], \"sentences\": [\"A group of men are inside a building together.\", \" They start dancing around each other in the center.\", \" Two of the men start break dancing for the small group.\"]}, \"v_A8KtrGjBodw\": {\"duration\": 110.41, \"timestamps\": [[1.66, 60.73], [35.33, 95.51]], \"sentences\": [\"A woman is seen opening a bottle of alcohol and pouring it into a class while speaking to the camera.\", \" The woman continues speaking to the camera while holding up the glass of alcohol and ending by speaking more.\"]}, \"v_z9l32VOM6wY\": {\"duration\": 203.36, \"timestamps\": [[0, 7.12], [7.12, 138.29], [138.29, 166.76], [166.76, 203.36]], \"sentences\": [\"A black screen appears and a lot of white words are displayed that include the description of the video and the website.\", \"A man and a woman are standing in a kitchen that looks like a business kitchen and he's showing her how to sharpen knives by demonstrating and talking, and then also letting her try to sharpen the knives as well and shows her how to check for sharpness.\", \"When the man is done sharpening the knives he takes one in his hand and rubs it on the counter, then continues to hold it in his left hand as he's talking to the woman.\", \" A black screen appears and more white letters appear giving different websites, naming companies that had a part in the video, and including the steps that were taken during the man training the woman.\"]}, \"v_8XxsgEw49p0\": {\"duration\": 190.03, \"timestamps\": [[0, 60.81], [43.71, 136.82], [111.17, 182.43]], \"sentences\": [\"Bob Ross is seen speaking to the camera while reading off a piece of paper in his hands.\", \" Another man is seen standing next to him and begins painting while a computer also paints on the side.\", \" The man continues painting as Bob watches and leads into him painting and showing off a picture as well as the computer.\"]}, \"v_F559bkkKSp8\": {\"duration\": 21.5, \"timestamps\": [[0.22, 10.43], [7.31, 20.96]], \"sentences\": [\"A person is seen riding a camel long a beach lead by a man in front.\", \" More camels appear from behind and follow one another as a woman watches.\"]}, \"v_ZlwU7HKcoYs\": {\"duration\": 29.77, \"timestamps\": [[0, 29.77], [1.93, 26.2]], \"sentences\": [\"A person is seen riding on the back of a boat skiing while he's attached to a string on the boat.\", \" The person moves back and fourth along the water while the captures all of his movements.\"]}, \"v_BkBbzC6nIvA\": {\"duration\": 226.46, \"timestamps\": [[0, 21.51], [24.91, 135.87], [139.27, 204.94], [207.21, 226.46]], \"sentences\": [\"A man is standing a table while a woman is sitting in a chair.\", \" Then we see a man talking while riding a recumbent bike.\", \" The man leans forward before sitting back down.\", \" Several silhouettes appear across the screen.\"]}, \"v_Jd5tpIdMGh8\": {\"duration\": 21.34, \"timestamps\": [[0, 21.34], [1.17, 21.34], [6.08, 21.34], [18.46, 21.34], [19.53, 21.34]], \"sentences\": [\"Two men are shown in a room.\", \" One man blows smoke through his nose.\", \" Then the other says something and smiles.\", \" After the man blows more smoke from his nose again from puffing off the cigar , he moves away from the camera.\", \" the man who doesn't have a cigar is still in front of the camera.\"]}, \"v_kwaCAq-9LnM\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 60.57], [41.64, 107.51], [78.74, 146.88]], \"sentences\": [\"A woman is seen speaking to the camera with a bowl of lemons beside her.\", \" She mixes up the lemons into juice and pours it with sugar into a container.\", \" She mixes in more into the container while looking back to the camera.\"]}, \"v_Eb_9_Bcij0Q\": {\"duration\": 56.12, \"timestamps\": [[0, 22.73], [20.77, 56.12]], \"sentences\": [\"A bearded man is seen giving a thumbs up to the camera and begins shaving his beard all while moving in fast time.\", \" Another person is seen wandering around while the man continues shaving his face and ends with a close up of his new face.\"]}, \"v_GxOjqC_IDX4\": {\"duration\": 83.69, \"timestamps\": [[0, 14.64], [14.64, 34.31], [34.31, 58.16], [58.58, 83.69]], \"sentences\": [\"Two men are standing by on a running strip, one of them is preparing to start running.\", \" He is moving his legs, stretches back and takes off.\", \" He runs fast fast down the strip and quickly leaps into the sand.\", \" Then he goes back to start over and does it a few more times.\"]}, \"v_NNqghz7Fd0M\": {\"duration\": 132.7, \"timestamps\": [[1.33, 56.4], [55.74, 131.38]], \"sentences\": [\"A small child is seen sitting behind a set of drums and playing in front of an audience.\", \" The boy continues playing as people stand around and watch.\"]}, \"v_bJ695Pp7Vng\": {\"duration\": 212.63, \"timestamps\": [[0, 47.84], [47.84, 132.89], [132.89, 212.63]], \"sentences\": [\"Several images of girls are shown as they compete against teams playing Water polo.\", \"As the pictures continue,several girls are shown making faces,holding their arms up and getting hit by their opponents.\", \"Other images are shown and you can see what happens under the water and some girls getting out of the pool in their robes.\"]}, \"v_w7IeqGuuA7Q\": {\"duration\": 233.01, \"timestamps\": [[3.5, 32.62], [41.94, 198.06], [184.08, 233.01]], \"sentences\": [\"A mom helps a child hit a pinata.\", \"  Then other people are blindfolded and try and open the pinata.\", \"  The third person opens the pinata and people go for what is inside.\"]}, \"v_0pcrpO0Gd8M\": {\"duration\": 167.95, \"timestamps\": [[0, 3.36], [5.04, 41.99], [17.63, 60.46], [60.46, 90.69], [91.53, 149.48], [149.48, 157.03], [157.87, 167.95]], \"sentences\": [\"We see an opening title screen.\", \" We see a makeup artist talk while sitting front of a mirror.\", \" The lady takes out a set of false eyelashes and trims one to size.\", \" The lady talks the puts glue on the lash.\", \" The lady removes her glasses , puts on mascara and applies the false lash to one eye.\", \" The lady is in front of the mirror talking again.\", \" We see the ending title and credit screens.\"]}, \"v_yVKmkR78Jn0\": {\"duration\": 37.11, \"timestamps\": [[0.19, 8.35], [10.39, 27.27], [28.02, 36.55]], \"sentences\": [\"A group of women are seen walking around a parking lot wearing bikinis.\", \" The girls begin wiping down cars and bumping into one another.\", \" The girls continue washing down the car.\"]}, \"v_CaQkeVwKiUs\": {\"duration\": 104.75, \"timestamps\": [[0, 12.05], [12.05, 22], [22, 38.76], [38.76, 53.94], [53.42, 71.75], [71.75, 91.13], [91.13, 104.22]], \"sentences\": [\"A white man dressed in a black and white suit walks into a bowling alley and two men stand up to talk to him.\", \" As soon as the suited man walks past them, the taller man and the suited man pulls out futurist guns and point it at one another.\", \" From behind a suited black man walks behind them and he hits the taller guy in the head and they begin talking to the shorter man.\", \"The white man walks to the shorter man and pulls his head off of his body and hands it to the black man.\", \"The black man then takes the head and bowls with it by rolling it down the alley where it hits the pins and then rolls back in the return where the man retrieves the head again but drops it again.\", \" The man picks the head up while it's still talking and he throws it to the white man who looks at it and tosses it back to the black man and on the side the body of the head is disapproving of it all.\", \"The black man takes the head and puts his fingers into the nostrils of the head and rolls the head down the head between his legs where it rolls on to hit the last two standing pins.\"]}, \"v_hvy_V1EWKEI\": {\"duration\": 222.77, \"timestamps\": [[0, 20.05], [21.16, 31.19], [35.64, 93.56], [95.79, 194.93], [196.04, 222.77]], \"sentences\": [\"A man is standing in a salon.\", \" He has a woman sitting in his chair.\", \" He is shown cutting and combing her hair into a style.\", \" He then applies makeup to her eyes.\", \" We then see a finished product, and images of her before and after.\"]}, \"v_hfBTv5b_Cok\": {\"duration\": 192.38, \"timestamps\": [[0, 50.02], [50.02, 82.72], [89.46, 121.2], [121.2, 192.38]], \"sentences\": [\"Two men are talking in a music studio while men are is playing the drums sitting in a music studio.\", \" Men are setting up band instruments and one of them are playing the drums.\", \"  Then, a person writes and explains the music synthesizer while people are playing.\", \" People explains about the instruments and the musicians.\"]}, \"v_niqc-dW54ic\": {\"duration\": 77.03999999999999, \"timestamps\": [[0, 6.93], [13.1, 38.91], [40.45, 77.04]], \"sentences\": [\"A man and woman are standing inside a gym.\", \" The man spots her as the woman does forward hand springs on a beam.\", \" He then watches as she dismounts.\"]}, \"v_xbQQhK7wQZQ\": {\"duration\": 217.8, \"timestamps\": [[0, 18.51], [31.58, 175.33], [186.22, 217.8]], \"sentences\": [\"A woman is talking inside a kitchen.\", \" She shows a pot and some pancake mix in a bowl.\", \" She shows all the breakfast ingredients, and puts together a plate of food.\"]}, \"v_-MB6Wxglgzw\": {\"duration\": 196.6, \"timestamps\": [[0, 8.85], [12.78, 149.42], [162.2, 196.6]], \"sentences\": [\"A boy is sitting in front of the camera, then he stands up and joins his team.\", \" They are playing volleyball, and we see him serve the ball numerous times.\", \" The game progresses, the people knocking the ball back and forth over the net.\"]}, \"v_RAluocUocdw\": {\"duration\": 87.26, \"timestamps\": [[0, 13.53], [18.76, 46.68], [53.67, 87.26]], \"sentences\": [\"An old building is seen on the edge of a cliff.\", \" Waves from the ocean are crashing into the shore.\", \" A man is surfing on the waves, holding on tight so he doesn't lose his balance.\"]}, \"v_sWQ65uwxXbA\": {\"duration\": 126.87, \"timestamps\": [[0, 8.25], [8.25, 17.76], [19.03, 44.41], [44.41, 114.82], [114.82, 126.87]], \"sentences\": [\"We see the opening title screens.\", \" A man lifts a large weight.\", \" We see a title screen and see the man lift weight with instructions.\", \"  He lifts the weight with instructions four more times.\", \" We see the ending credits.\"]}, \"v_Ydep68S6ViE\": {\"duration\": 115.28999999999999, \"timestamps\": [[0, 3.46], [3.46, 111.83], [111.83, 115.29]], \"sentences\": [\"A colorful intro appears with two different screens that include lots of words and numbers with a date, a colorful clip art of a man holding a string with a ball on the end and the text indicate that he is holding a hammer throw.\", \"Various different females from young to old, are behind a tall green cage that has 3 sides, and each one is swinging the hammer throw as fast as they can, letting them loose, and each time text on the top of the screen appears to note their names and the distance.\", \"When the last person does the hammer throw, which happens to look like the eldest woman there, the same colorful screens from the intro play at the end.\"]}, \"v_PJgB6h-fImY\": {\"duration\": 181.58, \"timestamps\": [[0, 26.33], [43.58, 114.4], [120.75, 181.58]], \"sentences\": [\"Two men are crouched on the ground outside a bike path.\", \" They are working on a broken down bike.\", \" They de-pretzel a destroyed tire together.\"]}, \"v_TOBHIXCu4Ic\": {\"duration\": 123.62, \"timestamps\": [[0, 3.71], [3.71, 7.42], [7.42, 16.07], [16.07, 24.11], [24.11, 31.52], [31.52, 37.09], [37.09, 40.18], [41.41, 123.62]], \"sentences\": [\"cheerleaders are in a stage making jumps and the woman who jumps higher fell in the floor.\", \" soccer team are running in a lare field and trip into a cheerleader team that are making a pyramid.\", \" man is holding a girl with one arm and fells o the floor.\", \" cheerleader team is in a wooden gym making a pyamid and fells to the floor.\", \" women are in floor laying on a green field and girl in front is doing somersaults and slip in the field.\", \" soccer team is running in the field through a large advertising.\", \" woman is making jumps in a gym, runs and stumbles to a pole.\", \" different cheerleaders teams are in gym making pyramids and falling.\"]}, \"v_AFtFitXAFks\": {\"duration\": 154.11, \"timestamps\": [[0, 51.63], [40.84, 110.96], [104.8, 150.26]], \"sentences\": [\"A man is seen speaking to the camera that leads into several clips of a gym.\", \" Many people are seen performing gymnastics on a mat while the camera follows close behind.\", \" People continue flipping around the gym while also stopping to speak to the camera.\"]}, \"v_v-LmMLpvsbk\": {\"duration\": 224.28, \"timestamps\": [[0, 4.49], [4.49, 209.7], [34.76, 39.25], [209.7, 224.28]], \"sentences\": [\"An introduction comes onto the screen for a video about break dancing.\", \" Several dancers are break dancing in the middle of the floor while a crowd watches.\", \" People snap pictures of them as they are dancing on the floor.\", \" As a video in the closing credits are played.\"]}, \"v_ZojEQYIV_o8\": {\"duration\": 198.69, \"timestamps\": [[22.85, 128.16], [135.11, 144.05], [176.84, 183.79]], \"sentences\": [\"A man is standing outside painting a dresser.\", \" He turns it into a chair.\", \" He sits down in the chair and pets a dog.\"]}, \"v_yDH9iAn82Q8\": {\"duration\": 178.54, \"timestamps\": [[0, 29.46], [35.71, 83.91], [78.56, 153.54], [158.9, 171.4]], \"sentences\": [\"A close up of food is shown followed by ingredients being cut up and laid out.\", \" A person pours soup out as well as other ingredients and mixes them all into a pot.\", \" The person pouts the noddles out into a strainer, washes it off, and then pours out more ingredients to mix.\", \" She mixes all the ingredients with the noodles and mixes around the pasta.\"]}, \"v_1-Ud-q4y1oc\": {\"duration\": 80.02, \"timestamps\": [[0, 12.4], [12.4, 66.01], [65.21, 80.02]], \"sentences\": [\"A woman wearing gloves is seen speaking to the camera and climbs into a tub holding onto cleaning products.\", \" She sprays a window down and then wipes down the window with a rag.\", \" The camera pans away as she finishes wiping the window and continuing to speak to the camera.\"]}, \"v_1UIathRb404\": {\"duration\": 128.29, \"timestamps\": [[0, 12.19], [12.19, 34], [34, 118.03], [118.03, 128.29]], \"sentences\": [\"man is in a field and hit a ball with a hockey pole.\", \" men are standing in a field showing how to hold the pole to make a hit.\", \" man is again doing hits to the goal showing the right position of the body and the hands in the pole.\", \" woman is standing in the gren grassy court showing the position to swing the pole to make a hit.\"]}, \"v_BhAQhPasmhU\": {\"duration\": 154.51, \"timestamps\": [[0, 154.51], [103.52, 140.6], [142.15, 154.51]], \"sentences\": [\"A person is throwing a disk several times a far distance.\", \" A woman in a blue shirt is sitting down watching him.\", \" A boy in a blue shirt is standing next to him.\"]}, \"v_lQUqzLT7bl0\": {\"duration\": 96.75, \"timestamps\": [[0, 96.75], [6.29, 28.06], [31.93, 96.75]], \"sentences\": [\"A guy films him self skiing down a snowy sloop.\", \"the guy starts skiing down the sloop with other skiers also skiing down the sloop around him and comes to a big stop area but he continues to ski on while other skiers stop.\", \"the guy skis alone down the a sloop with many turns witch lead him to the main sloop where there other skiers and he comes to a stop at the end of the sloop.\"]}, \"v_hHMqyl_Dugs\": {\"duration\": 237.77, \"timestamps\": [[0, 21.4], [21.4, 35.67], [35.67, 237.77]], \"sentences\": [\"man is doing snow fishing in a hole pulling a thread and holding a fish.\", \" man is holding the fish by the mouth.\", \" a small piece of wood is on hole pulling the thread and a man keeps holding it with his hands.\"]}, \"v_tb7s5a1H-IU\": {\"duration\": 151.35, \"timestamps\": [[0.76, 43.13], [43.13, 56], [56.76, 102.16], [102.16, 143.78]], \"sentences\": [\"A girl shows her long hair while talking, then she grabs a comb and comb her hair.\", \" Then, the girl shows a blue bottle that uses to spray liquid to her hair.\", \" After, the girl dry her hair using a blow dryer, then the girl uses a brush to dry her hair.\", \" Next, the girl takes a different model of comb to comb, then she sprays liquid from a  hair while talking.\"]}, \"v_7OYvyg32iqw\": {\"duration\": 192.91, \"timestamps\": [[0, 165.9], [163.98, 192.91]], \"sentences\": [\"man is water skiing in a lake holding a rope and balancing side to side.\", \"man fall out of the water ski.\"]}, \"v_FCiKVtVqTAA\": {\"duration\": 126.43, \"timestamps\": [[0, 18.33], [18.33, 47.41], [47.41, 87.24], [87.24, 126.43]], \"sentences\": [\"A man is playing on some congas, he doesn't seem very enthusiastic about it at all.\", \" He is just playing the rhythm looking very bored out of his mind.\", \" He shows different variations on how to play them correctly.\", \" He just skillfully beats on them and makes music.\"]}, \"v_9Bo7Hr77DgA\": {\"duration\": 51.8, \"timestamps\": [[0, 50.77], [15.28, 50.77]], \"sentences\": [\"A girl shows proper tooth brushing technique.\", \" She pushes her hair aside and goes to work.\"]}, \"v_BJ9r8_JnG0k\": {\"duration\": 224.03, \"timestamps\": [[0, 73.93], [73.93, 115.37], [125.46, 178.1], [178.1, 193.78]], \"sentences\": [\"A man in a black shirt is talking.\", \" The man crosses the monkey bars several times.\", \" He is then shown working out in a gym.\", \" He does curl ups on a bar attached to the wall.\"]}, \"v_-7eQ2bHNPUw\": {\"duration\": 197.5, \"timestamps\": [[4.94, 141.21], [141.21, 183.67], [183.67, 196.51]], \"sentences\": [\"A woman is in a bathroom showing how to open a faucet and wash and rub meticulously hands and nails.\", \" Then, she rinse her hands and dry them with several napkins.\", \" At the end, she takes the last napkin to close the faucet, then discard it.\"]}, \"v_qs_VoH8fOhs\": {\"duration\": 192.49, \"timestamps\": [[1.92, 89.51], [82.77, 187.68]], \"sentences\": [\"Several people are seen wandering around a room in fast motion and leads into them piecing together a christmas tree.\", \" The people are then seen hanging up decorations on the tree while still moving around quickly and ends by showing the finished tree.\"]}, \"v_Pt5jMqQXTZ8\": {\"duration\": 10.26, \"timestamps\": [[0, 10.11], [6.88, 10.26], [0, 10.26]], \"sentences\": [\"A person is standing behind a truck.\", \" They swing an ax and chop a block of wood.\", \" A truck full of wood is behind them.\"]}, \"v_uMGfCaGMnEE\": {\"duration\": 73.38, \"timestamps\": [[6.6, 19.81], [16.51, 25.31], [23.48, 73.38]], \"sentences\": [\"A woman in black shirt is standing by the bar counter and talking to the camera.\", \" The woman touched the bottles, then she get a cocktail glass and shot glass.\", \" The woman pour liquid in the shot glass then pour in the cocktail glass, then she added more liquid, the liquid turned into green.\"]}, \"v_GSo0lqq5zmM\": {\"duration\": 182.18, \"timestamps\": [[0, 20.95], [10.02, 13.66], [13.66, 154.86], [45.55, 50.1], [54.66, 63.76], [86.54, 102.02], [104.76, 116.6], [117.51, 153.03], [153.03, 159.41], [160.32, 182.18]], \"sentences\": [\"We see people in a room talking.\", \" Some men put on yellow shirts.\", \" We see people on the ice with curling supplies.\", \" We see a man balance a pole.\", \" We see a man limbo.\", \" We watch the yellow team throw the curling stone.\", \" The other team then has a turn on the stone.\", \" The yellow team has another turn.\", \" We watch one of the men take off the yellow shirt and leave.\", \" We see the ending screen with video clips.\"]}, \"v_ZOQSDsJYXIA\": {\"duration\": 98.59, \"timestamps\": [[1.48, 57.68], [44.86, 94.65]], \"sentences\": [\"A person is seen running down a long track into a pit followed by several more runners as well.\", \" More people are seen running down the track one after the other while ending by jumping into the pit.\"]}, \"v_h7iCyiNUxeE\": {\"duration\": 6.92, \"timestamps\": [[0, 2.53], [2.53, 6.92]], \"sentences\": [\"A young man is standing in the kitchen in front of a sink washing dishes.\", \"Behind him,a young girl with blonde hair is smiling and holding the came before recording the young man again.\"]}, \"v_Ht9WSqhFD34\": {\"duration\": 89.65, \"timestamps\": [[6.28, 67.24], [67.24, 83.38]], \"sentences\": [\"A boy holds a bow and throws arrows to a target in a backyard.\", \" A little boy throws arrow with a bow, then he raise his right arm in signal success.\"]}, \"v_LkUnT9fMIXc\": {\"duration\": 21.73, \"timestamps\": [[0, 5.11], [5.11, 21.73], [13.37, 16.63], [0, 21.73]], \"sentences\": [\"A man is on a skating rink with his left knee up and his right knee on the ice as he slides and pushes an object.\", \" The object slides between two men who are moving something back and forth on the ice as the object follows behind it until it stops.\", \" A man near them has fallen and he gets back up.\", \" There are various people on the rink, most are upright doing their own thing on the ice but there is one person in a wheelchair.\"]}, \"v_VUvEWwghANE\": {\"duration\": 109.55, \"timestamps\": [[30.13, 51.49], [61.9, 66.83], [97.5, 100.24]], \"sentences\": [\"A person is ripping up a roof with a tool.\", \" The tool is being shown on a table.\", \" A man in a green shirt is standing on a roof.\"]}, \"v_SBj7yuFEwQI\": {\"duration\": 131.82, \"timestamps\": [[0, 50.75], [50.09, 78.43], [78.43, 131.82]], \"sentences\": [\"man is talking to the camera with a fence and a house on the back.\", \" man is in the backyard holding a funnel to blend a mixture.\", \" man holds a hosepipe and its painting the fence.\"]}, \"v_n4apOkL24BE\": {\"duration\": 108.07, \"timestamps\": [[2.16, 52.41], [40.52, 103.74]], \"sentences\": [\"A person is seen kneeling down beside running water and looking over to the camera.\", \" The person then dunks the clothes into a bucket under the water an begins dipping the clothes from one bucket to the other.\"]}, \"v_u3XYsINR-y4\": {\"duration\": 169.73, \"timestamps\": [[0, 92.5], [99.29, 169.73]], \"sentences\": [\"A woman plays a violin while another plays a piano, both wearing overalls.\", \" They dance in place and sway as they play.\"]}, \"v_dd1LE0m_KVg\": {\"duration\": 84.13, \"timestamps\": [[0, 81.6], [78.24, 79.92], [78.24, 83.28], [81.6, 84.13]], \"sentences\": [\"We see five men drumming in a pavilion outdoors.\", \" The left man steps back and left.\", \" The five men finish drumming.\", \" The right man turns to leave.\"]}, \"v_tBNOJJx4Z9k\": {\"duration\": 127.85, \"timestamps\": [[1.28, 65.2], [70.32, 125.93]], \"sentences\": [\"A woman is seen opening a cabinet while speaking to the camera and leads into her washing rags inside a sink.\", \" She sprays cleaner on the rags and puts them in the sink while speaking to the camera.\"]}, \"v_uOk4EFDsDP4\": {\"duration\": 54.15, \"timestamps\": [[0, 5.96], [5.96, 8.39], [17.06, 37.36], [35.47, 38.99], [39.26, 43.86], [44.4, 48.46], [48.73, 54.15]], \"sentences\": [\"We see a black opening screen.\", \" We see a child in the house with a soccer ball.\", \" The mother and son cook pasta together.\", \" The mother brings the boy a plate.\", \" We see the refrigerator list.\", \" The mother takes a bite of the food and salutes the son who takes a bow.\", \" We see the flavors and the end screen.\"]}, \"v_fbIEeQknsuo\": {\"duration\": 223.59, \"timestamps\": [[0, 43.6], [35.77, 223.59], [52.54, 60.37]], \"sentences\": [\"A group of people are gathered around some camels.\", \" The people seated on the camels go riding the camels.\", \" A man in a white t-shirt stands in front of the group and photographs the camel walk.\"]}, \"v_hu714U34avg\": {\"duration\": 237.75, \"timestamps\": [[0, 11.89], [11.89, 30.91], [30.91, 217.54], [217.54, 237.75]], \"sentences\": [\"There are women in a mirrored exercise room with wooden floors and are getting ready to do exercises.\", \"A woman steps up to her stepper and starts doing arm movements and the other women start following her.\", \" The women start adding leg movements along with arm movements and they continue this routine going around their stepper and occasionally stepping onto the stepper.\", \"The women finish with a strong step onto the stepper then the dancing stops and they all walk away from their steppers.\"]}, \"v_0nPeqy-DA2E\": {\"duration\": 202.9, \"timestamps\": [[0, 13.19], [13.19, 48.7], [47.68, 92.32], [92.32, 124.78], [124.78, 166.37], [165.36, 202.9]], \"sentences\": [\"Two little girls are sitting at a kitchen bar with rollers in their hair eating.\", \"The young girl in the pink shirt begins talking,dancing and kissing  the girl on the right with a leopard onesie on who is eating her food.\", \"The young girl stops and begins to try and takes the food off the fork and they both begin laughing.\", \"The little girl then sits down and they both begin to look on the floor for a piece of food that fell off of the fork.\", \"The two continue to sit,eat,play and talk to the camera.\", \"After,the girl in the pink shirt stands up and picks up her drink.\"]}, \"v_feY5JrgSpzE\": {\"duration\": 65.99, \"timestamps\": [[3.96, 48.17], [6.6, 48.17], [12.21, 48.17], [52.79, 62.03]], \"sentences\": [\"A man is kneeling down on a blue mat.\", \" They are holding onto a pole.\", \" They are moving back and forth.\", \" He does push ups on the wall.\"]}, \"v_Z2KHO87wHzg\": {\"duration\": 110.22999999999999, \"timestamps\": [[0, 15.43], [17.09, 39.13], [39.13, 74.95], [74.95, 110.23]], \"sentences\": [\"A bottle of sunscreen is shown and a sun becomes visible and then turns colors.\", \"Several images of people are shown giving examples of sun burnt individuals and people spraying themselves with sunscreen.\", \"More bottle of sunscreen are shown and their contents are shown such as their SPF and the rest of the ingredients.\", \"Tips then come across and people are shown demonstrating the correct way to apply the product.\"]}, \"v_yUbdrBSmUHE\": {\"duration\": 139.34, \"timestamps\": [[1.39, 57.13], [40.41, 137.25]], \"sentences\": [\"A woman is seen jumping rope in the middle of a room performing several different jumps while looking off to the camera.\", \" The woman continues jumping over and over while still looking off into the distance.\"]}, \"v_-g-qMUjVA-s\": {\"duration\": 62.69, \"timestamps\": [[0, 31.03], [31.66, 62.69]], \"sentences\": [\"A person runs on top a roof of a long house.\", \" The person reach the end of the roof and tursn to continue running on the roof.\"]}, \"v_AXw2bkQyRPo\": {\"duration\": 112.00999999999999, \"timestamps\": [[2.24, 42.01], [29.68, 86.81], [59.93, 107.53]], \"sentences\": [\"A man is seen standing in front of the camera when a woman walks next to him in frame.\", \" The two then begin dancing around one another in the room with each other.\", \" They continue to spin and twirl around and ends with the girl turning off the camera.\"]}, \"v__MR8G1jwM4o\": {\"duration\": 201.55, \"timestamps\": [[0, 103.8], [96.74, 200.54]], \"sentences\": [\"A woman is seen speaking to the camera and shows several shots of people working out on a machine.\", \" The woman continues speaking as video of a woman is shown exercising on the equipment.\"]}, \"v_N49yT-kvXuw\": {\"duration\": 146.57, \"timestamps\": [[0, 43.97], [36.64, 110.66], [98.2, 145.1]], \"sentences\": [\"A large mountain is shown with ski lifts moving and leads into people cleaning off the snow and walking around on boards.\", \" People perform several tricks on snowboards while the camera captures their movements.\", \" More people are seen speaking to the camera while others continue to ride around.\"]}, \"v_B4qwjeJBk0s\": {\"duration\": 199.0, \"timestamps\": [[1.99, 61.69], [52.73, 119.4], [108.45, 169.15], [177.11, 199]], \"sentences\": [\"A camera pans around various landscapes and leads into a person stopping a car and people riding down a road.\", \" Several shots are shown of people riding down the hill with a car driving behind them and close ups of peoples faces.\", \" The camera captures several angles and ends with the men riding through and the car coming to a stop.\", \" They finally pack up all their gear in a car and drive away.\"]}, \"v_G71xFbDSSno\": {\"duration\": 30.33, \"timestamps\": [[0, 3.49], [4.7, 22.74], [24.11, 30.33]], \"sentences\": [\"A baby is shown lying on a polka dog sheet.\", \" Someone wipes his face all over with a cloth.\", \" The baby shivers and shakes from the temperature of the rag.\"]}, \"v_8nyOw9vBh2E\": {\"duration\": 158.96, \"timestamps\": [[0, 48.48], [42.13, 112.86], [109.69, 151.02]], \"sentences\": [\"A large group of people are seen standing in a ring speaking to one another.\", \" Two men then begin fighting one another while people watch on the sides.\", \" The men go back and fourth and ends with one hugging another and getting a drink.\"]}, \"v_9I4H8O6B7yM\": {\"duration\": 139.74, \"timestamps\": [[0.7, 58.69], [32.84, 108.3], [99.92, 138.35]], \"sentences\": [\"Various shots are shown of a motocross driver sitting in different landscapes as well as riding around.\", \" More shots are shown of people riding the bikes on mountainsides and tracks while people watch on the side.\", \" Several more clips are shown of a large number of people riding together.\"]}, \"v_T60xwc6nKJI\": {\"duration\": 132.26, \"timestamps\": [[0.66, 47.61], [46.95, 98.53], [98.53, 127.63]], \"sentences\": [\"A small wooden table with some bottles on it are shown, along with the lower half of an individual standing by it and gesturing.\", \" The individual drizzles liquid on the table.\", \" The individual polishes the wooden table surface with a towel.\"]}, \"v_P-04xkAdWSY\": {\"duration\": 30.19, \"timestamps\": [[0, 20.83], [14.79, 19.77], [21.43, 22.94], [23.09, 24.9], [25.05, 30.19]], \"sentences\": [\"Three sumo wrestlers race on a track.\", \" A fourth sumo wrestler points at the three racers.\", \" A different man talks to the camera with others working in the background.\", \" A replay of the race is shown.\", \" A logo splash video is shown.\"]}, \"v_UuJwtJBJ7oU\": {\"duration\": 159.29, \"timestamps\": [[0, 97.96], [25.49, 124.25], [45.4, 124.25], [131.41, 159.29]], \"sentences\": [\"A man is seen sitting before a coach speaking to the camera.\", \" He then begins playing on a set of bongo drums.\", \" The man plays continuously around on the drum set.\", \" He finishes playing the drum and pauses before the camera.\"]}, \"v_wZZ1W6D1nwA\": {\"duration\": 58.56, \"timestamps\": [[0, 4.39], [4.39, 57.68], [57.98, 58.56]], \"sentences\": [\"People are dancing in a gym.\", \" They pick up jump ropes and start to jump rope.\", \" They stop jump roping and look around.\"]}, \"v_tGHLUWWm_zU\": {\"duration\": 187.55, \"timestamps\": [[0, 0.94], [0.94, 92.84], [101.28, 187.55], [154.73, 170.67], [170.67, 175.36]], \"sentences\": [\"We see a wall in bad shape.\", \" We see a person putting plaster on it.\", \" We see the man as he puts the plaster on the wall.\", \"  The man bends over and works on the bottom part.\", \" The man bends forwards again.\"]}, \"v_JjGhHZgdWVI\": {\"duration\": 112.92, \"timestamps\": [[0, 10.16], [12.99, 39.52], [40.65, 112.92]], \"sentences\": [\"Several boxes are stacked in piles.\", \" A man turns on a welding tool, sparks flying.\", \" He uses the tool to weld something on the floor.\"]}, \"v_fs-goyuhTi8\": {\"duration\": 12.15, \"timestamps\": [[0, 6.62], [6.56, 12.15]], \"sentences\": [\"A person is seen holding a stick and wacking a pinata in the middle of a party.\", \" She then lands on top of the pinata and walks away handing the stick over to someone else.\"]}, \"v_GhXniQgRUTY\": {\"duration\": 121.88, \"timestamps\": [[0, 33.52], [30.47, 88.97], [82.88, 117.01]], \"sentences\": [\"A large group of people are seen standing around a room with others walking in with beams.\", \" A woman speaks to the group and begins leading them in a workout.\", \" The group all workout together at the same time while moving up and down.\"]}, \"v_NFErgnaSRRY\": {\"duration\": 78.3, \"timestamps\": [[0, 5.87], [6.26, 27.8], [28.97, 43.85], [44.24, 78.3]], \"sentences\": [\"A fire comes from a pumpkin on the floor.\", \" A person carves a pumpkin, then makes an opening on the top, then make the eyes, nose and mouth.\", \" After, the man puts a paper towel inside the pumpkin and sprinkle kerosene on it.\", \" After, the person lights the paper towel with a match to start the fire.\"]}, \"v_UYGiq0CsYEs\": {\"duration\": 83.55, \"timestamps\": [[11.28, 79.37], [16.71, 40.52]], \"sentences\": [\"A man performs on stage standing and playing a drum set while singing.\", \" The crowd waves their hands in the air.\"]}, \"v_fgP2pf2rh4Q\": {\"duration\": 235.56, \"timestamps\": [[0, 34.16], [34.16, 74.2], [74.2, 167.25], [167.25, 235.56]], \"sentences\": [\"A young girl is sitting in front of a mirror and begins to put pink lipstick on.\", \"After,she puckers her lips and begins smoking a cigarette blowing the smoke at the screen.\", \"Several puffs are taken and she starts to blow the ashes out in puffs.\", \"A man is then shown next to her and they begin talking.\"]}, \"v_TGvY7GtyTK4\": {\"duration\": 106.3, \"timestamps\": [[0, 0.53], [4.78, 74.94], [9.57, 12.22], [17.54, 33.48], [34.02, 61.65], [62.19, 73.35], [72.28, 106.3]], \"sentences\": [\"We see a man on the floor adjusting the camera.\", \" the man then kneels on the ground and talks to the camera.\", \" The man hops to his feet and then kneels back down.\", \" The man turns to face right and sit son his feet and bounces.\", \" The man faces the camera and moves his arms as he speaks.\", \" The man jumps to his feet and squats before returning to his kneeling position.\", \" The man jump and squats again the lays on the floor talking.\"]}, \"v_bBtzyRzk0UM\": {\"duration\": 214.76, \"timestamps\": [[0, 11.81], [13.96, 196.51], [24.7, 42.95], [132.08, 136.37], [158.92, 164.29], [173.96, 194.36], [195.43, 214.76]], \"sentences\": [\"We see an empty auditorium and a title on the screen.\", \" We see ballerinas dancing on a stage cut with scenes of a lady being interviewed.\", \" A lady speak and puts shoes a in a bag and works out.\", \" The lady holds her arm in  the air.\", \" A ballerina is on the ground.\", \" Men carry one ballerina in the air with other following her.\", \" We see the closing and ending credit screens.\"]}, \"v_vth3IYGHu5k\": {\"duration\": 161.05, \"timestamps\": [[10.47, 22.55], [22.55, 74.89], [77.31, 106.3], [107.1, 129.65], [130.45, 149.78], [128.04, 129.65]], \"sentences\": [\"A teen skip on a court and then jumps high over a bar.\", \" Then, the teen jumps high again but touch the bar.\", \" This time the teen jumps without touching the bar.\", \" Then, the ten runs relay run with other youth.\", \" After, the teen performs long jump on a sand box.\", \" A person takes picture to the teen.\"]}, \"v_zKHMKAOb1iw\": {\"duration\": 30.09, \"timestamps\": [[0, 5.87], [7.97, 19.86], [20.01, 30.09]], \"sentences\": [\"A group is engaged in a game of curling.\", \" They use the sticks to push the pucks.\", \" The pucks slide easily over the ice.\"]}, \"v_Lb43_7s9t7E\": {\"duration\": 128.52, \"timestamps\": [[0, 128.52], [6.43, 52.69], [52.69, 67.47], [69.4, 120.17]], \"sentences\": [\"A group of martial arts participants are gathered together.\", \"As they each take turns,they do kicks and moves without hitting each other.\", \"One man actually hits another one.\", \"A female and male does cartwheels and everyone coninues taking turns without any contact.\"]}, \"v__QdPfYK9s6o\": {\"duration\": 173.62, \"timestamps\": [[0, 38.2], [38.2, 96.36], [96.36, 173.62]], \"sentences\": [\"The view is from a first person view of a man wearing a mainly black wetsuit on a mainly white surfboard and surfing in the green wave.\", \"The man is no longer in the wave and is just surfing towards the shore.\", \"The view changes and now it's in front of the man and you get to see him from the front view surfing and the wave behind him and until he falls off the surfboard and into the water.\"]}, \"v_oNo8ZpqE_6k\": {\"duration\": 90.7, \"timestamps\": [[0.91, 46.71], [31.74, 87.52]], \"sentences\": [\"A large group of people are seen running around a stadium as well as audience members watching and leading into clips of a game being played.\", \" The people continue to hit the ball around and lead a man holding a trophy and another speaking to the camera.\"]}, \"v_qGID8CHyClA\": {\"duration\": 123.62, \"timestamps\": [[0, 11.74], [13.6, 46.98], [48.83, 97.66], [101.99, 123.62]], \"sentences\": [\"A large group of men and women are on either side of a thick rope outdoors.\", \" They are playing a game of tug of war, attempting to pull each other forward.\", \" A man crawls alongside them, offering encouragement.\", \" The red time wins, and everyone shakes hands as they walk away.\"]}, \"v_RIr3Y2XS5NA\": {\"duration\": 153.41, \"timestamps\": [[0, 146.5], [25.31, 146.5]], \"sentences\": [\"A group of people is preparing for a rafting trip.\", \"  A GoPro is used to capture parts of the trip.\"]}, \"v_dFgwKTH-FhY\": {\"duration\": 15.67, \"timestamps\": [[0, 15.67], [5.09, 6.66], [13.87, 15.44]], \"sentences\": [\"Some people are shown riding down the river rapids while a man watches them.\", \" A man says something to one of the riders as they pass.\", \" The second rider looks back as he passes the man.\"]}, \"v_Y1UwPTU61uk\": {\"duration\": 99.96000000000001, \"timestamps\": [[0, 13.49], [13, 99.96]], \"sentences\": [\"An athletic gymnast is seen preparing for routine then climbing onto a beam.\", \" She performs a routine on the beam continuously and finishes by jumping onto a mat and raising her arms.\"]}, \"v_bON69f83fSY\": {\"duration\": 129.41, \"timestamps\": [[0, 12.29], [12.29, 25.88], [25.23, 37.53], [37.53, 96.41], [96.41, 129.41]], \"sentences\": [\"A bike mechanic is shown in front of a mountain bike as he explains to the camera how to do work on it.\", \" A table with various bike parts is then shown as he continues with his instruction.\", \" He picks up a large spring and discusses it.\", \" He then turns his attention back to the bike and its front end.\", \" He shows some of the front fork and how to apply the spring.\"]}, \"v_mHVmDOxtVt0\": {\"duration\": 126.6, \"timestamps\": [[0, 3.16], [3.16, 39.24], [24.69, 26.59], [39.24, 62.03], [62.03, 103.81], [72.79, 77.22], [103.81, 117.1], [117.1, 126.6]], \"sentences\": [\"We see the black title screen.\", \" We then see two people boxing in a gym.\", \" The screen goes wavy briefly.\", \" The screen changes and the lady is wearing protective gear as the man practices.\", \" We see the man boxing with another man.\", \" The men pause and begin again.\", \" The screen goes black and we see kids hitting punching bags.\", \" We see an image of the boy, the the closing screen.\"]}, \"v_U6S8a3WI19w\": {\"duration\": 117.77000000000001, \"timestamps\": [[0, 117.77], [24.14, 27.09], [116.01, 117.77]], \"sentences\": [\"People are playing soccer on sand.\", \" People are standing on the sidelines watching.\", \" A woman in a yellow shirt picks up the ball.\"]}, \"v_KyrDumISv4A\": {\"duration\": 72.88, \"timestamps\": [[1.46, 34.62], [28.79, 69.96]], \"sentences\": [\"A small group of children are seen standing before a mat with an instructor helping.\", \" The girls do various gymnastics moves across the mats while an instructor assist them and another points to the side.\"]}, \"v_CMYeHWoB1FM\": {\"duration\": 13.79, \"timestamps\": [[0, 9.66], [1.72, 13.79]], \"sentences\": [\"A person's hand are seen peeling a potato at a fast pace under a sink of running water.\", \" The person continues peeling as quickly as then can and ends with her grabbing one more potato.\"]}, \"v_Pcro3S-4EnQ\": {\"duration\": 150.32, \"timestamps\": [[0, 11.27], [11.27, 48.85], [48.85, 150.32]], \"sentences\": [\"a boy and a girl are sitting on a table talking to each other.\", \" girl is lining the boy's eye and take out a lipstick from her purse.\", \" other boy sits in a table and te girl again grab the black eyeliner and liner both of the eyes of the other boy sitting next to her.\"]}, \"v_2aw1pVJsnKs\": {\"duration\": 93.78999999999999, \"timestamps\": [[0, 49.24], [50.18, 93.79]], \"sentences\": [\"A group of people are seen riding around a track and leads into several clips of people falling off their bikes.\", \" The video continues on with many clips of people crashing dirt bikes on a track racing others.\"]}, \"v_1Se1ZqCSQvk\": {\"duration\": 124.17, \"timestamps\": [[0, 3.73], [3.73, 14.9], [14.9, 28.56], [28.56, 59.6], [60.22, 88.78], [89.4, 109.89], [110.51, 121.69], [121.07, 124.17]], \"sentences\": [\"A person is sharpening a knife.\", \" The title is seen on a black screen and we see the tools.\", \" Instructions and demonstrations instructs us to wet the stone.\", \" We are then instructed and shown how to slide the knife on the stone.\", \" We are instructed and shown how to use the sharpening steel.\", \" We are instructed and shown how to use a bowl to sharpen a knife.\", \" We are shown the knife cutting tomatoes.\", \" The title re-appears on the black screen.\"]}, \"v_aVH9QsSATKM\": {\"duration\": 136.42000000000002, \"timestamps\": [[0, 16.37], [21.14, 94.81], [99.59, 136.42]], \"sentences\": [\"A man is seen talking as he unbuttons his shirt.\", \" Another man is shaving his back for him.\", \" He fills out a form while his back is shaved, then a tattoo is applied of a scorpion.\"]}, \"v_9PxPcJS47js\": {\"duration\": 225.19, \"timestamps\": [[0, 68.68], [63.05, 174.52], [135.11, 210.55]], \"sentences\": [\"Two people are seen walking into frame looking into one another followed by one balancing on rope.\", \" The men then take turns bouncing up and down on a rope while looking back at one another.\", \" The men perform several tricks on the rope while the camera captures their movements and they shake hands.\"]}, \"v_hsPepNAzu_Q\": {\"duration\": 86.05, \"timestamps\": [[0, 7.31], [1.72, 6.88], [7.31, 16.35], [16.78, 20.65], [21.08, 44.75], [45.18, 76.59], [77.88, 86.05]], \"sentences\": [\"A lady sits in a chair and talks.\", \" A title bar appears and fades.\", \" People ride on horses through the woods.\", \" We see the horses in the stables .\", \" We see the people ride in the woods an in a ring.\", \" The lady talks and we see people riding horses and in the stables.\", \" We see the lady speak and the screen goes white.\"]}, \"v_CQocaUwWcQI\": {\"duration\": 37.99, \"timestamps\": [[0.57, 17.28], [15.01, 37.04]], \"sentences\": [\"An athletic man is seen standing before a track and leads into him running down in a pit of sand.\", \" Several more clips are shown of the athletes running down the track and landing into a pit.\"]}, \"v_xJ23geP1Hss\": {\"duration\": 191.26, \"timestamps\": [[0, 25.82], [20.08, 167.36], [168.31, 191.26]], \"sentences\": [\"A woman is seen kneeling down on a gym floor with several people watching her on the sides.\", \" She performs a routine on the floor with a baton and spinning around and performing several flips and tricks.\", \" She ends her routine by walking away limping and showing her score on a screen.\"]}, \"v_fklBsM-H7-Y\": {\"duration\": 103.42, \"timestamps\": [[0, 3.62], [4.14, 97.73], [97.73, 103.42]], \"sentences\": [\"The words \\\"Blos (Harry Sacksion!) Performed by Geert Janssen\\\" appear on screen.\", \" A man playing is playing a guitar while sitting on a living room couch.\", \" The man finishes playing the guitar.\"]}, \"v_YjE1by2PX08\": {\"duration\": 73.03, \"timestamps\": [[0.37, 36.51], [24.83, 70.47]], \"sentences\": [\"A large tractor is seen riding along in the snow and pushing snow into a bank.\", \" The camera continues to follow the tractor move along the lot and push snow.\"]}, \"v_x4QVVFhamJ4\": {\"duration\": 124.85, \"timestamps\": [[1.25, 56.18], [38.7, 98.01], [106.75, 123.61]], \"sentences\": [\"Several pictures are shown of people's hand performing sign language as well as holding up various objects.\", \" A doctor is then seen putting a machine on a person as well as using a needle for an IV and checking the monitor.\", \" The nurse wipes down a table and then demonstrates how to properly wash your hands.\"]}, \"v_CXbVcrVgNzQ\": {\"duration\": 46.39, \"timestamps\": [[1.16, 20.88], [18.56, 41.99]], \"sentences\": [\"A young child is seen using a toy iron to play with clothes and holding them up.\", \" The child continues using the toy on the clothes while looking up and smiling to the camera.\"]}, \"v_I91LmNcwN4Y\": {\"duration\": 126.46, \"timestamps\": [[0, 47.42], [51.21, 126.46]], \"sentences\": [\"A woman is seen standing next to a chair and showing off various objects and tools while speaking to the camera.\", \" She then brushes the chair and wipes it down with a rag and puts a bottle of polish on the chair.\"]}, \"v_u9aFICSj7zw\": {\"duration\": 58.31, \"timestamps\": [[0, 52.48], [52.48, 58.31]], \"sentences\": [\"A toddler pulls a string from a hole in the ice while a man is kneels on the ice.\", \" Then, a fish come out the hole.\"]}, \"v_i5-OVkjT0nM\": {\"duration\": 201.64, \"timestamps\": [[0, 17.14], [22.18, 126.03], [127.04, 201.64]], \"sentences\": [\"A ball jar filled with red drink is shown, adorned with a lemon slice.\", \" A bottle is filled with lemonade and chilled, then passionfruit juice is added and mixed together.\", \" The mixture of passion fruit juice tea and lemonade are poured into the jar over ice and served with a lemon wedge.\"]}, \"v_IAtxK0w_ybY\": {\"duration\": 177.7, \"timestamps\": [[0, 8], [8, 17.77], [17.77, 46.2], [125.28, 166.15], [166.15, 175.93], [175.93, 177.7]], \"sentences\": [\"Colorful circles appear and the title comes up.\", \" We see two ladies in a kitchen preparing to cook.\", \" The ladies cook a syrup and add lemons and the syrup to a blender.\", \" They put it in a bowl, and something then pour it in a pitcher.\", \" They pour it into glasses and drink it.\", \" We then see the closing screen on gray.\"]}, \"v_mk3srKjFB3A\": {\"duration\": 49.6, \"timestamps\": [[0, 42.41], [0, 49.6], [42.16, 44.64], [44.89, 49.6]], \"sentences\": [\"A man does a pommel horse routine.\", \" People in the background sit, stand and walk around while watching and doing other things.\", \" The man finishes his routine and dismounts.\", \"  He bows and walks to the side meeting up with another man congratulating him.\"]}, \"v_6fWXqCWuU9Y\": {\"duration\": 193.26, \"timestamps\": [[5.8, 50.25], [53.15, 147.84], [133.35, 189.39]], \"sentences\": [\"A group of men are seen walking on the beach speaking to one another with one holding a ball.\", \" The men put down their stuff as well as get undressed then rub lotion all over their bodies while others watch.\", \" The men then play a game of volleyball back and fourth with one another while high fiving and wrestling one another and the men continuing to watch.\"]}, \"v_QV4E2B0AdGw\": {\"duration\": 177.07999999999998, \"timestamps\": [[0, 171.76], [0, 122.18], [6.2, 85], [128.38, 176.19]], \"sentences\": [\"A man receives a tattoo in a tattoo parlor from a male tattoo artist interspersed with video of a waiting woman showing her neck tattoo.\", \"  A man lays on a tattoo table and receives a color tattoo from a tattoo artist.\", \"  The two men talk and laugh as the tattoo is issued and the camera cuts to a woman who talks and shows her neck tattoo to the camera.\", \"  The man who received the tattoo  stands and shows the fish tattoo he just received before the camera cuts to a marketing graphic.\"]}, \"v_GO_36Qd9bb0\": {\"duration\": 191.47, \"timestamps\": [[0, 81.38], [71.8, 191.47]], \"sentences\": [\"A small group of people are seen standing on a floor speaking to one another and leads into them performing a dance routine with partners.\", \" The people continue dancing around and end by dipping their partner.\"]}, \"v_39HCogCoD7Y\": {\"duration\": 184.11, \"timestamps\": [[0, 7.36], [17.49, 23.93], [7.36, 184.11]], \"sentences\": [\"The opening screen is on gardening.\", \" A woman is explaining how to do a garden.\", \" There are scenes of ways to build a garden.\"]}, \"v_iMB_mb11KWM\": {\"duration\": 50.06, \"timestamps\": [[1, 27.28], [23.03, 49.31]], \"sentences\": [\"Two groups of people are seen pulling on a rope and playing a game of tug of war with one another.\", \" The men continue playing the game and end by walking away from one another.\"]}, \"v_nMFEEBtIu-Y\": {\"duration\": 227.09, \"timestamps\": [[0, 73.8], [81.75, 227.09]], \"sentences\": [\"Three men are in a garage, playing different instruments.\", \" They are all playing guitars and electric guitars, and a man behind them plays the drums.\"]}, \"v_Ls-0SqAeXW0\": {\"duration\": 96.6, \"timestamps\": [[0, 96.6], [10.14, 88.87]], \"sentences\": [\"Two men are on a squash court playing a game  of squash with each other.\", \" During the game, they also pause several times to reset when they start a new game.\"]}, \"v_NsqW8ZwYDEk\": {\"duration\": 187.35, \"timestamps\": [[0, 29.98], [39.34, 129.27], [133.96, 187.35]], \"sentences\": [\"A couple of men are talking inside an archery  gym.\", \" A man pulls the arrow back in the bow.\", \" He releases  the arrow, shooting it toward his target.\"]}, \"v_K2dU4-Rg354\": {\"duration\": 122.09, \"timestamps\": [[0, 36.02], [36.63, 92.79], [84.24, 120.87]], \"sentences\": [\"A man is seen running down a long track and pole volting onto a mat.\", \" The man is seen running many more times over the bar while others watch on the side.\", \" Several more people take their turns volting over the bar and landing on a mat.\"]}, \"v_xmSN6La-2vQ\": {\"duration\": 116.91, \"timestamps\": [[0, 36.24], [28.64, 81.25], [82.42, 111.07]], \"sentences\": [\"A young woman is seen speaking to the camera while holding up contact lens.\", \" She takes one out of her eyes and then puts it back in.\", \" She continues speaking to the camera while making hand gestures and pointing to the contacts.\"]}, \"v_ujltXvkQK_g\": {\"duration\": 162.26, \"timestamps\": [[17.04, 159.83], [17.04, 82.75], [84.38, 159.83]], \"sentences\": [\"A sports newscaster does a special news report on the successful lacrosse career of athlete, Jim Brown.\", \"  A reporter talks to the camera before cutting to images of Jim Brown, Jim Brown's stats and Jim Brown giving an interview.\", \"  Images of Jim Brown as a young man, holding a trophy, and eventually, Jim brown paying a demonstration game of Lacrosse with another man in front of the camera.\"]}, \"v_Fr7rhb2Vw_k\": {\"duration\": 153.23, \"timestamps\": [[0, 3.06], [3.06, 27.58], [26.82, 47.5], [46.73, 57.46], [57.46, 75.08], [75.85, 137.14], [137.91, 153.23]], \"sentences\": [\"Text is shown with regards to how to install wallpaper.\", \" A women is standing in a hardware store and then shows you the various tools required for installation of the wallpaper.\", \" She is then shown again speaking in front of a wall and giving instructions as to how to begin the process.\", \" The is then shown mixing the glue required and applies it to a white wall.\", \" She then applies to wallpaper very carefully and trims it to fit perfectly.\", \" She applies some more paper and gets it lined up.\", \" The video closes with her giving some final advice.\"]}, \"v_HzAlvJ1fNWU\": {\"duration\": 48.51, \"timestamps\": [[0, 1.7], [1.7, 11.4], [11.4, 38.56], [38.56, 48.51]], \"sentences\": [\"There are people at the top of a snowy hill on tube rings.\", \" Suddenly the people start riding down the hill.\", \"Now multiple people are shown riding down the hill on the tube rings and they are all smiling and having a good time as they either ride down alone or connected to other tubers.\", \"One of the rider even rides down lying flat on the tube with their face down and not looking around until they've gone completely to the end and on flat land.\"]}, \"v_s0-xTG38cPw\": {\"duration\": 46.12, \"timestamps\": [[0, 5.76], [5.76, 18.68], [18.45, 30.9], [30.9, 46.12]], \"sentences\": [\"A man blows out a lot of smoke from a hookah.\", \" He know's how to make o's in the air with the smoke which is pretty rad.\", \" He inhales more of the hookah and a lot of the smoke comes out of his nose while he is still has it in his mouth.\", \" Then he looks up and starts to blow out a line of o's into the air.\"]}, \"v_YigV1ARspVU\": {\"duration\": 36.2, \"timestamps\": [[0, 11.58], [15.57, 36.2]], \"sentences\": [\"A bunch of kids are playing bumper cars.\", \" They bump into each other, laughing throughout the game.\"]}, \"v_i1PpX1IOcIs\": {\"duration\": 184.02, \"timestamps\": [[0, 96.61], [96.61, 184.02]], \"sentences\": [\"man is standing in a gum doing weightlifting while other people in theback are doing exercise.\", \" man is doing weightlifting in a competition walking.\"]}, \"v_dcMFJ-8Eo7g\": {\"duration\": 153.14, \"timestamps\": [[0, 68.15], [65.85, 153.14]], \"sentences\": [\"A close up of plaster is shown followed by several pictures of floor boards and a truck parked outside.\", \" More pictures are shown of plaster, tiling, and people working, ending with finished results of the tile shown in various pictures.\"]}, \"v_vvk6f13VO5c\": {\"duration\": 62.31, \"timestamps\": [[0, 49.54], [18.07, 53.59]], \"sentences\": [\"A large group of people are seen playing a soccer match on a sandy field with many watching on the side.\", \" The camera captures the game from all angles and watches as one scores a goal into the net.\"]}, \"v_RaQE93FNLQI\": {\"duration\": 98.06, \"timestamps\": [[0, 98.06], [0, 7.84], [7.84, 29.91], [29.91, 54.91], [54.91, 98.06]], \"sentences\": [\"A woman and a child are making cookies together in the kitchen.\", \" The woman starts rolling the dough as the as the child who is standing on a chair next to her watches on.\", \" Than the woman places an angle shaped cookie cutter on the dough and instructs the girl to push the dough in.\", \" Afterwards the woman  takes the shaped dough and places it on a tray next to the stove.\", \" In the end the woman takes the tray and places it in front of her, she than instructs the girl to sprinkle the cookies.\"]}, \"v_R-RQx5pbMvo\": {\"duration\": 142.07999999999998, \"timestamps\": [[0, 28.42], [29.13, 107.98], [107.98, 142.08]], \"sentences\": [\"A woman is standing in front of a sink talking.\", \" She adds detergent to water in the sink and starts washing her clothes.\", \" She drains the water and runs clean water onto the clothes.\"]}, \"v_yvOOFjG-FEo\": {\"duration\": 95.37, \"timestamps\": [[1.91, 27.66], [27.18, 59.13], [59.6, 84.87], [84.4, 95.37]], \"sentences\": [\"A man is standing in a room behind a brown table with several items on it.\", \"The man then moves to the side of the table and starts to iron a white towel.\", \"Once the towel is hot,he takes it and begins to clean the surface of the table.\", \"After he is finished,a side by side view is shown and the before and after product is shown.\"]}, \"v_RzMKERQ9vOU\": {\"duration\": 157.01, \"timestamps\": [[3.14, 53.38], [40.82, 119.33], [122.47, 153.09]], \"sentences\": [\"A man is seen sitting on the floor speaking to the camera and pointing to his body then laying on the floor.\", \" The man continues to point to his body and leads into him performing sit ups on the ground as well as lifting his feet up.\", \" He moves his arms up and then ends by sitting up on the mat.\"]}, \"v_movzxpiGX8k\": {\"duration\": 99.44, \"timestamps\": [[0, 28.34], [25.85, 72.09], [72.09, 96.95]], \"sentences\": [\"A young woman is seen looking into the camera with her hair laid out.\", \" She then begins brushing her hair while looking into the camera.\", \" The woman continues brushing her hair while looking off into the distance.\"]}, \"v_K9ccE4wrTts\": {\"duration\": 86.89, \"timestamps\": [[0, 13.47], [13.9, 69.51], [69.95, 86.89]], \"sentences\": [\"A male is standing in the bathroom talking about what he is about to do.\", \"After,he begins shaving with a new camera and cutting his beard down.\", \"Once complete,he continues talking about the product and doing a review on it for free,as the disclaimer appears at the bottom.\"]}, \"v_A92F-HvSZx0\": {\"duration\": 61.7, \"timestamps\": [[0, 61.7], [0.31, 61.7], [58.92, 61.7]], \"sentences\": [\"There are two men on a stage and they are each playing an instrument while people in the distant are walking around.\", \" The man wearing the hat is hitting two cane sticks together and the man without a hat is hitting on bongo drums.\", \"The man without the hat stops hitting the bongo and begins talking into the microphone.\"]}, \"v_vBKIXqRd-eA\": {\"duration\": 233.78, \"timestamps\": [[0, 38.57], [39.74, 215.08], [140.27, 233.78]], \"sentences\": [\"A cowboy stands in a gated area before the start of a rodeo surrounded by a crowd.\", \" The cowboy rushes from the gate and ropes the different steer then dismounts and ties their legs legs.\", \" Rodeo helpers retrieve the tied up steer and the cowboy winds up his rope.\"]}, \"v_zOGg5-Mll4o\": {\"duration\": 211.02, \"timestamps\": [[0, 52.76], [35.87, 211.02]], \"sentences\": [\"A man is sitting on a seat then the woman came up to him, he is looking out the window as he talks and as the train is moving.\", \" The man and woman boarded a cable car, walked on the mountain with their skiboard gears, then they climbed the mountain and ski down the mountain slope, the also trek in the forest.\"]}, \"v_9A9_sNvJ8zQ\": {\"duration\": 230.64, \"timestamps\": [[3.46, 98.02], [86.49, 227.18]], \"sentences\": [\"Two people are seen speaking to the camera while one sits on a piece of exercise equipment and begins moving himself back and fourth.\", \" The person continues using the machine as the woman shows off how it works and its' specs.\"]}, \"v_34KalqGygZ0\": {\"duration\": 104.97999999999999, \"timestamps\": [[0, 4.72], [5.25, 30.44], [32.54, 43.57], [45.67, 54.59], [56.69, 100.78], [75.06, 91.33]], \"sentences\": [\"A cow girl places reigns onto hooks on a wall.\", \" Ranch staff places saddles onto the horses.\", \" The riders saddle up and hop onto the backs of the horses.\", \" The riders ride through the gate of the ranch.\", \"  The group of riders ride through various terrains before returning back to the well traveled path.\", \" The riders walk through a running stream on the horses.\"]}, \"v_mmgoptOJM0s\": {\"duration\": 13.79, \"timestamps\": [[0, 8.21], [1.03, 8.21], [8.21, 13.79]], \"sentences\": [\"Two men are playing a very quick game of ping pong where they are hitting the ping pong ball back and forth very quickly.\", \" The view switches briefly to a shot from above and the room is dark and small.\", \"The outro comes on and it's a blue screen with the white words \\\"THE OFFICE EPISODE 412-The Deposition\\\".\"]}, \"v_TVPiI9551As\": {\"duration\": 137.82999999999998, \"timestamps\": [[0, 18.61], [19.99, 88.21], [97.17, 137.83]], \"sentences\": [\"A couple of men are inside a gym together.\", \" They are using a large piece of metal on a board.\", \" They try to put the equipment together as a group.\"]}, \"v_MMVfzKCnpnI\": {\"duration\": 83.15, \"timestamps\": [[0, 20.37], [19.96, 71.09], [71.09, 83.15]], \"sentences\": [\"A man is seen walking in front of a large marching band and then holds his arms up with another man behind him.\", \" A man then orchestrates a band while a man with a baton performing a routine in front of them.\", \" The man then takes a bow in the end and walks off stage.\"]}, \"v_ISHKwbnOzXY\": {\"duration\": 192.08, \"timestamps\": [[0, 89.32], [81.63, 192.08]], \"sentences\": [\"Two people are seen fencing back and fourth with one another while a few people watching them on the sides.\", \" The people continue fencing while people walk in and out of frame and end with the girls shaking hands and taking off their mask.\"]}, \"v_4Q5YJKHa5W0\": {\"duration\": 131.36, \"timestamps\": [[11.82, 30.21], [30.21, 60.42], [61.74, 104.43], [105.08, 111.65]], \"sentences\": [\"A person is making a sandwich on a plate.\", \" They slice an egg and put it on the sandwich.\", \" The cut up an avocado and put it on the sandwich.\", \" They put mayonnaise on the sandwich and put another piece of bread on top.\"]}, \"v_IUnqrqZ_x_A\": {\"duration\": 59.03, \"timestamps\": [[0, 59.03], [45.74, 50.76], [50.76, 59.03]], \"sentences\": [\"Two people are dressed in fencing gear and are in a fencing match where they are going at each other very quickly with their pointy swords.\", \" The man on the left lifts his face screen up and lets out a scream as he's walking.\", \" The men start another round of fencing and suddenly the man on the left removes his helmet, throws his hands up in the air and begins cheering.\"]}, \"v_w3N0Pyz2-m0\": {\"duration\": 144.2, \"timestamps\": [[0, 2.88], [2.88, 12.98], [15.86, 144.2], [35.33, 49.03], [58.4, 63.45], [113.91, 144.2]], \"sentences\": [\"We see a dark title screen.\", \" We see a lady playing a violin.\", \" We see a lady taking in a brick room and playing the violin outside.\", \"  We see the lady playing in the rain.\", \" We see the lady playing in front of fire.\", \" W see the ending title and video clips.\"]}, \"v_e5_lP2HgtSE\": {\"duration\": 22.2, \"timestamps\": [[0, 10.66], [10.32, 22.2]], \"sentences\": [\"A woman is seen walking along a side walk with a dog on two legs walking next to her.\", \" She continues walking with the dog around and grabs the dog before he grabs another man.\"]}, \"v_juIOpLYnW64\": {\"duration\": 74.63, \"timestamps\": [[0, 19.03], [19.78, 61.2], [58.58, 74.63]], \"sentences\": [\"A woman and a doctor are seen talking to one another and leads into the person putting dots on her eyebrow.\", \" He shows her in the mirror and then pierces the girl's eyebrow and puts a gem through.\", \" He wipes off the blood and shows the finished piercing to the girl in the mirror.\"]}, \"v_8A7nbBMC4eA\": {\"duration\": 204.27, \"timestamps\": [[4.09, 25.53], [26.55, 187.92], [98.05, 99.07]], \"sentences\": [\"A man and a woman presenters say something that make laugh to people next them.\", \" Then, five couples dance tango on a dance floor while doing acrobacies.\", \" A person plays accordion pushing the white buttons.\"]}, \"v_RseCMmSvcPY\": {\"duration\": 122.32, \"timestamps\": [[0, 29.97], [24.46, 97.86], [91.13, 119.88]], \"sentences\": [\"A close up of a pool table is seen when two girls walk into frame holding sticks.\", \" The girls speak to one another while pointing to the table.\", \" One girl moves the balls around while the other has a drink and one beats her with a stick.\"]}, \"v_7AsHuXeoSpA\": {\"duration\": 14.98, \"timestamps\": [[1.05, 2.77], [2.77, 5.17], [5.24, 8.76], [8.84, 13.93]], \"sentences\": [\"A young lady shows soap in a box and in a bottle.\", \" Then, the young lady puts soap from the bottle and put on her upper face.\", \" Then, the young lady pass a towel on the lower part of the face, then wets a wipe from the box.\", \" After the young lady cleans the lower part of her face and smile.\"]}, \"v_PrR-kkpy1c8\": {\"duration\": 223.4, \"timestamps\": [[4.47, 5.59], [18.99, 21.22], [49.15, 52.5], [177.6, 198.83]], \"sentences\": [\"A large waterfall is shown by rocks.\", \" A man is standing under the waterfall.\", \" People are standing in the water.\", \" People are sitting in a raft going down the river.\"]}, \"v_ASXqlsSfZ5E\": {\"duration\": 21.73, \"timestamps\": [[0, 10], [10, 18.91], [18.91, 21.73]], \"sentences\": [\"Men are hopping and walking around on artificial legs that are attached to their own legs.\", \" An older man stops them to talk to them.\", \" A  young man walks by.\"]}, \"v_NiPqyUecGdc\": {\"duration\": 56.31, \"timestamps\": [[0, 7.32], [7.88, 44.2], [45.61, 56.31]], \"sentences\": [\"A man is waterskiing while holding onto a rope.\", \" He loses his balance, falling and then regaining his composure.\", \" He releases the rope, again falling into the water.\"]}, \"v_-ZBsdK10Trs\": {\"duration\": 49.25, \"timestamps\": [[0.74, 26.84], [16.5, 48.27]], \"sentences\": [\"A large gymnasium is seen followed by a ball hitting the camera and shown again several times.\", \" The same shot is shown again over and over while showing different effects during the process.\"]}, \"v_ADUmfTuiDH8\": {\"duration\": 117.45, \"timestamps\": [[8.22, 11.74], [12.92, 90.43], [89.85, 101.59]], \"sentences\": [\"A person picks a lemon off a tree.\", \" They are standing at a counter squeezing the lemons.\", \" They pour that into a pitcher.\"]}, \"v_9VGbtQrlcN4\": {\"duration\": 113.15, \"timestamps\": [[2.83, 102.4], [16.41, 22.63], [16.41, 101.27]], \"sentences\": [\"Lawrence is showing and telling viewers how to clean and prep your windows.\", \" First he rolls down the driver window and applies the soap and water solution to the glass.\", \" Then he scrapes the window using a triumph scraper and when  it's scraped clean, he rolls the window back down and he sprays the glass again and he uses a paper towel to wipe anything left on the window.\"]}, \"v_XuYmybr9uDE\": {\"duration\": 72.49, \"timestamps\": [[0.36, 40.23], [30.08, 70.68]], \"sentences\": [\"A close up shot of an ice pitcher is shown as well as various ingredients laid out and a christmas plate.\", \" The person then mixes various ingredients into the pitcher one by one and stirring the liquid around with a spoon.\"]}, \"v_USWExMIMcik\": {\"duration\": 45.7, \"timestamps\": [[0, 2.74], [3.88, 30.85], [31.07, 45.7]], \"sentences\": [\"A group of people are sweeping outdoors.\", \" They hit the pucks, knocking them into different rows.\", \" The men take turns pushing the pucks, trying to get the best position.\"]}, \"v_MM2ZYfEWCQo\": {\"duration\": 73.19, \"timestamps\": [[0, 13.54], [13.91, 23.79], [22.69, 45.01], [44.65, 55.26], [60.02, 68.43], [68.07, 73.19]], \"sentences\": [\"A man prepares some kindling for a fire.\", \" He looks at the screen and talks.\", \" He starts striking his tools together over the kindling to start the fire.\", \" The kindling catches on fire.\", \" The man starts adding smaller pieces of wood the fire.\", \" Two kids interact with the camera.\"]}, \"v_NSMAftE6fb4\": {\"duration\": 38.55, \"timestamps\": [[0, 14.65], [0, 38.55], [7.9, 37.97]], \"sentences\": [\"man is standing in the sea surfing a wave.\", \" a lot of people are on surfboards on the sea.\", \" men enters in the wave in the sea.\"]}, \"v_ORKAMBnsX64\": {\"duration\": 72.33, \"timestamps\": [[0, 3.62], [3.62, 7.59], [7.96, 18.44], [19.17, 24.95], [25.32, 43.76], [44.12, 51.72], [52.08, 69.08], [69.44, 72.33]], \"sentences\": [\"We see an opening title screen.\", \" We see an older man being interviewed.\", \" We see two men on a diving board.\", \" We see the older man talk again.\", \" We see the divers dive in the water.\", \" We see an interview with a family outside the arena.\", \" We se the divers on their boards and the family is interviewed again.\", \" We see the ending title screens.\"]}, \"v_KfzVxgHEyzI\": {\"duration\": 20.04, \"timestamps\": [[0, 9.42], [9.82, 20.04]], \"sentences\": [\"A large group of players are seen standing and sitting around a field when a man kicks a ball and runs.\", \" Another person behind him attempts to grab the ball but misses and the man runs to a base where another person calls him safe.\"]}, \"v_VFsRRXYbuHs\": {\"duration\": 19.39, \"timestamps\": [[0, 19.39], [15.22, 19.39], [17.16, 17.74]], \"sentences\": [\"A man is wake boarding behind a boat.\", \" A blue canopy is shown on the side of the water.\", \" He raises his hand in the air.\"]}, \"v_HW9SFCj0dVU\": {\"duration\": 187.55, \"timestamps\": [[0, 112.53], [113.47, 187.55]], \"sentences\": [\"A man is holding a flint and rubs a knife against the flint on a napkin to create a spark.\", \" He throws the napkin into a fire pit and someone adds sticks to the fire.\"]}, \"v__bz66SOrklQ\": {\"duration\": 227.63, \"timestamps\": [[0, 43.25], [51.22, 104.71], [135.44, 227.63]], \"sentences\": [\"A group dressed in military clothing is outside.\", \" They are playing several sets of drums.\", \" A crowd of them gathers and prays together before putting on a performance.\"]}, \"v_je6wJ_Ky5wg\": {\"duration\": 77.52, \"timestamps\": [[0, 77.52], [9.3, 18.22], [18.22, 77.52]], \"sentences\": [\"A number of women exercise together using a stepping type of implement.\", \" The camera pans slightly to the right.\", \" The camera pans back slightly to the left.\"]}, \"v_dBCiKzkJogg\": {\"duration\": 236.24, \"timestamps\": [[0, 17.72], [24.81, 53.15], [60.24, 236.24]], \"sentences\": [\"A man is throwing a ball into a cup.\", \" Another person takes a turn doing the same.\", \" People walk in and out of the building as the group continues to play the game of pong.\"]}, \"v_SvIUXZqy8Hs\": {\"duration\": 27.4, \"timestamps\": [[0, 6.71], [6.17, 13.43], [13.56, 21.92], [21.92, 27.4]], \"sentences\": [\"A young firl wearing a blue bubble jacket has a stick in her hand and a tie covering her eyes.\", \"A young boy then spins her around and lets her go.\", \"She then begins hitting the stick ferociously against the air and ground trying to hit the pinata.\", \"The tie begins to fall down and she sees the pinata laying on the ground and realizes that she was no where near it.\"]}, \"v_jmxzDxfSbZM\": {\"duration\": 194.49, \"timestamps\": [[6.81, 73.91], [73.91, 114.75], [115.72, 141.01], [141.98, 190.6]], \"sentences\": [\"A couple are setting a Christmas tree in a living room.\", \" Then, the man decorates the Christmas tree with lights while the woman put ornaments on the tree.\", \" The woman holds a golden star and put on the Christmas tree, after the couple continue putting more ornaments on the tree.\", \" Next, the woman gets up on the shoulders of the man to put the star on top the Christmas tree.\"]}, \"v_1H2bRd91sZw\": {\"duration\": 120.09, \"timestamps\": [[0, 34.23], [18.61, 87.67], [79.86, 120.09]], \"sentences\": [\"Various ingredients are laid out with a person presenting them to the camera.\", \" The person lays down bread and begins pouring the ingredients out onto the bread.\", \" The person cuts out the bread using an outline and begins eating the sandwich while making many more afterwards.\"]}, \"v_ZhUC4qTGdHY\": {\"duration\": 164.28, \"timestamps\": [[0, 29.57], [29.57, 164.28]], \"sentences\": [\"a black suv is in street carrying a water bike on street.\", \" people are in a lakeside watching the man driving the waterbike and man doing wakesurf behind him.\"]}, \"v_VdGZfI-8RuA\": {\"duration\": 221.32999999999998, \"timestamps\": [[0, 29.88], [175.96, 180.39], [0, 200.31], [212.48, 221.33]], \"sentences\": [\"Chickens are walking around on the ground.\", \" A woman with a hood on walks in front of a person.\", \" A man is sitting down fixing a bicycle.\", \" He stands up and walks with the bicycle.\"]}, \"v_Ey2SmPzJTKM\": {\"duration\": 137.81, \"timestamps\": [[0, 4.13], [4.82, 21.36], [22.05, 117.83], [118.52, 127.48], [128.16, 137.81]], \"sentences\": [\"The logo \\\"AccessTools\\\" appears on screen with \\\"Wheel Bullet 6-Pack\\\" and \\\"Wheel Bullet 24-Pack\\\".\", \" A pack of colored cylinders are shown on screen.\", \" A man uses the cylinders to prevent a tire being removed from falling off the car.\", \"  Various car brand logos appear on screen.\", \" Website address and an \\\"F2 Video Productions\\\" logo appears.\"]}, \"v_kbe4iowYMqM\": {\"duration\": 139.99, \"timestamps\": [[0, 138.59], [52.5, 67.2], [93.8, 107.79]], \"sentences\": [\"A woman stands in a kitchen talking.\", \" The woman cuts open a bag of noodles and shows how to prepare it.\", \" The same woman holds up a bag of noodles describing it.\"]}, \"v_BCRFFkvfB_Q\": {\"duration\": 24.59, \"timestamps\": [[0, 4.92], [5.9, 16.48], [16.97, 24.22]], \"sentences\": [\"A large group of people are seen standing around an area with a man standing in front.\", \" The man then begins running down the track with others watching.\", \" Finally he jumps into a pit in the end and others measure his throw.\"]}, \"v_uwLM5n-rYmA\": {\"duration\": 177.45, \"timestamps\": [[0, 173.9], [70.09, 177.45]], \"sentences\": [\"A man shows proper technique for lifting weights.\", \"  He demonstrates with a model so that people do not get hurt.\"]}, \"v_lyJpgvmTOpo\": {\"duration\": 8.22, \"timestamps\": [[0, 6.12], [5.88, 8.22], [5.92, 8.22]], \"sentences\": [\"A man chugs an entire mug of beer.\", \" The friends raises his arms and cheers.\", \" The man sets down the mug.\"]}, \"v_4DMnMu2Cb_c\": {\"duration\": 234.03, \"timestamps\": [[0, 22.23], [22.23, 215.31], [214.14, 234.03]], \"sentences\": [\"A woman is showing her hair to the camera.\", \" She starts braiding her hair.\", \" She turns around and shows her hair to the camera.\"]}, \"v_vBpYwyXfE0o\": {\"duration\": 200.5, \"timestamps\": [[0, 78.19], [0, 77.19], [77.19, 97.24], [90.22, 200.5], [122.3, 126.31], [91.23, 200.5], [191.47, 200.5]], \"sentences\": [\"Two people sit on a moving ski lift.\", \" Other people ski and ride the lift around them.\", \" At the top of the ski hill  there are lots of people on skis.\", \" The man from the lift takes a very difficult path down the hill.\", \" He passes a group of people standing still.\", \" Other skiers ski in front of and around the man.\", \" He reaches the bottom of the hill where a large crowd of people is gathered.\"]}, \"v_1lagsBNqNe4\": {\"duration\": 163.68, \"timestamps\": [[2.46, 9.82], [10.64, 45.83], [46.65, 150.58]], \"sentences\": [\"A woman talks while showing a shirt.\", \" Then, the woman irons the collar and the sleeves of a shirt on an iron board while talking.\", \" After, the woman irons the body of the shirt.\"]}, \"v__KOVk8iGbrA\": {\"duration\": 183.02, \"timestamps\": [[0, 26.54], [26.54, 40.26], [40.26, 56.74], [56.74, 68.63], [68.63, 96.09], [96.09, 113.47], [113.47, 172.95], [172.95, 183.02]], \"sentences\": [\"A black screen appears with the white words that say \\\"Piercing at Blue Banana\\\", then shows the outdoor and the indoor of the shop while people are walking outside, and people inside are perusing.\", \" A man grabs a pair of white gloves, puts them on, and then turns to talk to a brunette woman who is sitting down in a small room with him.\", \"The man then goes to a machine and begins preparing the piercing tools by sterilizing and prepping his area and tools.\", \"A woman is now shown at a register helping a customer purchase items, and she puts the items in the bag, closes it and hands it to the woman.\", \" The man is shown again in the same small room but this time he is talking to a different woman who is blonde, and close up shot of the woman's face is shown, the man marks an area on her nose with a marker, then quickly pierces her nose, adjusts the piercing, and then holds a mirror up to her so she can look at herself.\", \" The man then quickly pierces a part of her ear and then her belly button.\", \"Another woman enters the store, talks to the woman at the register, looks at some piercings, goes to the back of the room with the man, gets her ear pierced and he holds a mirror up for her so she can see what it looks like and she smiles.\", \" The outro appears on a gray textured screen and the words \\\"Blue Banana\\\" and the website appear on it.\"]}, \"v_-DpnaHTk8PA\": {\"duration\": 209.61, \"timestamps\": [[0, 4.19], [5.24, 200.17], [201.22, 209.61]], \"sentences\": [\"A still of eight men posing with their arms raised up is shown.\", \" Men compete at arm wrestling with professional referees judging.\", \" Two men compete and one quickly loses the match.\"]}, \"v__MWyhJS4KbM\": {\"duration\": 66.57, \"timestamps\": [[0, 12.65], [13.98, 50.93], [51.26, 66.57]], \"sentences\": [\"A man cleans glass competitively before a crowd.\", \" He uses a sweeping mop to cover the glass quickly and efficiently.\", \" He then talks to an interviewer while everyone claps.\"]}, \"v_URgF15eyQvg\": {\"duration\": 133.52, \"timestamps\": [[0, 48.07], [40.72, 133.52]], \"sentences\": [\"An intro leads into an older man sitting in a chair speaking as well as a game of soccer going on.\", \" More shots of the soccer match occurs and eventually a drunk drives in with many people following behind and chasing the players.\"]}, \"v_XnvaW1HQyg4\": {\"duration\": 27.66, \"timestamps\": [[5.95, 11.2], [15.9, 25.17]], \"sentences\": [\"First the man swings the ball and looks to see how far it goes.\", \" Then he goes to take a picture with two other people.\"]}, \"v_GlJ4DvArV6Q\": {\"duration\": 133.61, \"timestamps\": [[0, 12.02], [12.69, 133.61], [38.08, 133.61]], \"sentences\": [\"A lady stands in front of a laptop.\", \" Guys play polo in front of an audience.\", \" People give interviews with a microphone.\"]}, \"v_zBm3FR-CCI0\": {\"duration\": 133.69, \"timestamps\": [[0, 9.36], [12.03, 73.53], [76.87, 133.69]], \"sentences\": [\"A man is on a field, spinning a disc.\", \" He throws the disc across the field, and it is repeated a few times.\", \" Many athletes are shown doing the same, the winner raising his arms in celebration.\"]}, \"v_WcBB6DfMTWA\": {\"duration\": 205.82, \"timestamps\": [[0, 71.01], [71.01, 137.9], [140.99, 205.82]], \"sentences\": [\"A man is standing in a room wearing a long silver flowing outfit and starts to move his feet and positioning them in certain stands.\", \"He retreats back to his stands and the actions continue but from side to side instead.\", \"Finally,the man finishes and stands still in front of the camera as he is finished with his stances.\"]}, \"v_RllrUfp2EIU\": {\"duration\": 155.69, \"timestamps\": [[0, 46.71], [50.6, 115.99], [117.55, 128.44], [130.78, 155.69]], \"sentences\": [\"Smooth white stones placed in a circle with dried pine needles in the middle of the stones to form campfire.\", \" The pine needles are lit with a lighter as the flames catch the pine needles on fire.\", \" A view of the burnt ashes over the campfire.\", \" More pine needles are added to the hot embers in the campfire and as the pine needles ignite.\"]}, \"v_mBnLy9ZgMkc\": {\"duration\": 187.28, \"timestamps\": [[0, 33.71], [34.65, 176.05], [176.05, 187.28]], \"sentences\": [\"A person plays a white and black accordion.\", \"  The person rocks back and forth with the music.\", \"  The person appears to sing into the microphone.\"]}, \"v_6QbIJ2pnXXo\": {\"duration\": 162.98, \"timestamps\": [[0, 8.96], [22, 105.94], [108.38, 162.98]], \"sentences\": [\"A woman smooths out some fondue onto a silpat liner.\", \" She uses a stick to measure the iceing.\", \" She then uses it for frosting a cake.\"]}, \"v_IkbEC202hYg\": {\"duration\": 153.79, \"timestamps\": [[0, 139.95], [0.77, 153.79], [64.59, 66.13], [141.48, 145.33]], \"sentences\": [\"Cheerleaders are on a gym floor dancing.\", \" People are sitting in the stands watching them perform.\", \" A woman in a blue shirt is clapping for them.\", \" A woman in the audience is crying.\"]}, \"v_zWiu-wdKeWs\": {\"duration\": 53.43, \"timestamps\": [[0, 3.21], [3.47, 11.49], [10.95, 26.45], [26.18, 42.21], [43.01, 53.43]], \"sentences\": [\"A man walks towards a tree.\", \" The man picks up and releases some dirt near the tree.\", \" The man talks to the camera.\", \" The man walks towards another tree, while an individual can be seated in some kind of vehicle in the background and another individual dismounts from the vehicle.\", \" The man points out something at the base of the tree while the camera zooms in for a closeup.\"]}, \"v_Tv8r1w-rLME\": {\"duration\": 5.35, \"timestamps\": [[0, 2.09], [1.82, 5.22]], \"sentences\": [\"A woman is seen blowing smoke out of her mouth towards a man sitting opposite of her.\", \" The man catches the smoke in his mouth and blows it back to the girl who is also blowing smoke.\"]}, \"v_U36rsW_WhUA\": {\"duration\": 133.52, \"timestamps\": [[6.68, 63.42], [64.75, 94.13], [94.8, 126.17]], \"sentences\": [\"A person holds firmly the paw of a brown cat to reveal the claws, clip the tip of the claws.\", \" Then, the person clips the claws of a white and black cat.\", \" Then, the person pet the cat on his head, after continues cutting the claws.\"]}, \"v_gwpQuO5DPOA\": {\"duration\": 22.08, \"timestamps\": [[0, 22.08], [0, 8.17], [8.5, 22.08]], \"sentences\": [\"A man in a brown shirt is standing in a room.\", \" He is wearing a mask and welding something.\", \" He stops welding and starts welding the back of it.\"]}, \"v_hzpFVURhKwo\": {\"duration\": 139.02, \"timestamps\": [[0, 13.21], [13.9, 75.76], [77.15, 139.02]], \"sentences\": [\"A man and woman are inside a small interior room.\", \" They are using a ladder, and trying to hang a strip of wallpaper.\", \" The woman hangs the paper as the man holds on to the other end.\"]}, \"v_d_JH9U-UI3c\": {\"duration\": 142.13, \"timestamps\": [[0, 128.63], [1.42, 7.82], [26.29, 30.56], [38.38, 43.35], [63.96, 70.35], [128.63, 142.13]], \"sentences\": [\"We see a lady perform a baton routine in a gym.\", \" the girl stretches her leg in the air.\", \" The girl leaps across the stage.\", \" The girl stretches her leg in the air.\", \" The girl spins and spins her leg in the air.\", \" The girl finishes and walks off the floor.\"]}, \"v_IxaoK4TbALQ\": {\"duration\": 102.28, \"timestamps\": [[0.51, 52.16], [38.36, 97.68]], \"sentences\": [\"A woman is seen kneeling down and speaking to the camera while various shots of cleaning supplies are shown.\", \" The woman mixes ingredients together in a bottle and sprays it onto a bench and cleans it while speaking to the camera.\"]}, \"v_kt3hzGla8r4\": {\"duration\": 226.79, \"timestamps\": [[0, 90.72], [44.22, 176.9], [150.82, 216.58], [187.1, 216.58]], \"sentences\": [\"The singer is playing guitar at the stage as he sing.\", \" The singer take the yellow guitar from the audience and started playing.\", \" The singer pointed to the drummer, and the drummer stopped playing drum then continue.\", \" The band take their bow as the audience applauded.\"]}, \"v_5TMKHLOACYg\": {\"duration\": 151.05, \"timestamps\": [[0, 12.84], [13.59, 34.74], [37.76, 126.88], [132.17, 151.05]], \"sentences\": [\"News reporters are seen talking at the news desk with a correspondent at another location.\", \" He spoke with a woman who was spraying a child with suntan lotion.\", \" They show a doctor who discusses the risks of cancer from sun exposure before going back to the correspondent with the mother at the park.\", \" We return to the original reporters in the news room.\"]}, \"v_NNZKinEXYc4\": {\"duration\": 90.14, \"timestamps\": [[0, 5.86], [5.86, 81.13], [58.14, 66.25], [82.93, 90.14]], \"sentences\": [\"A gymnast somersaults onto the balance beam to begin performance during an Olympic event.\", \" The gymnast does a routine with choreography on the balance beam.\", \" The gymnast does a flip and lands in a sitting position on the balance beam.\", \" The gymnast does a dismount where she flips from the balance bean onto the mat and ends her routine.\"]}, \"v_WDbG2_sDHow\": {\"duration\": 22.36, \"timestamps\": [[0, 18.78], [18.67, 22.36]], \"sentences\": [\"A young male is standing on a diving board and does multiple tucked in twist into the pool.\", \"After the dive is complete,he walks out of the room with a towel and begins smiling and walking.\"]}, \"v_ggyGuKFjdxk\": {\"duration\": 171.13, \"timestamps\": [[0.86, 2.57], [3.42, 161.72], [3.42, 4.28], [13.69, 42.78], [43.64, 155.73], [162.58, 171.13]], \"sentences\": [\"The credits of the clip are shown.\", \" A person makes an omelette.\", \" The person puts oil in a frying pan.\", \" The person sautees chopped ingredients.\", \" The person adds egg and uses chopsticks.\", \"The credits of the video are shown.\"]}, \"v_ZWlwKbuK2fM\": {\"duration\": 174.5, \"timestamps\": [[0, 70.67], [70.67, 97.72], [81.14, 82.89], [97.72, 171.01]], \"sentences\": [\"Children practice martial arts blocking going forward and backward.\", \" Then, the children practice kicking movements.\", \" A man runs to stand on front the children.\", \" Then the children stands and then practice in couples martial arts.\"]}, \"v_kkcTQHFNXAg\": {\"duration\": 33.74, \"timestamps\": [[0.51, 20.24], [8.27, 27.83], [26.32, 33.57]], \"sentences\": [\"An athletic woman is seen balancing herself on two beams.\", \" The girl then begins swinging herself back and fourth on the beam while kicking her legs up.\", \" The woman continues kicking up her legs and ends by jumping down.\"]}, \"v_moUL_qLnNDM\": {\"duration\": 4.83, \"timestamps\": [[0, 1.91], [1.88, 2.97], [2.87, 3.02], [3.04, 4.83]], \"sentences\": [\"We see a black dog in a yard.\", \"The dog takes off running from the camera.\", \" A bomb comes out of the sky and hits the dog.\", \" We see smoke and fire in the air.\"]}, \"v_fgoXpih2Kws\": {\"duration\": 154.67000000000002, \"timestamps\": [[0, 33.25], [34.8, 109.81], [110.59, 154.67]], \"sentences\": [\"Two young boys play fight in a room with a black and white checkered floor.\", \"  One boy gets the other one pinned to the floor.\", \"  One boy starts slapping the other boy's head and then picks him up upside down.\"]}, \"v_Obj__zWaZqk\": {\"duration\": 9.15, \"timestamps\": [[0, 3.39], [2.74, 9.15]], \"sentences\": [\"A large group of people are seen standing behind a large truck filled with dirt.\", \" Several people pull dirt off the back while others walk around and pour it around trees.\"]}, \"v_j55LAXY-T0E\": {\"duration\": 147.87, \"timestamps\": [[0, 27.36], [27.36, 96.85], [94.63, 147.87]], \"sentences\": [\"A car is seen driving around, coffee brewing, and a man awakening to an alarm.\", \" The man quickly drinks coffee and quickly rushes through his day and is seen running home.\", \" Shots of him finding his way are shown as well as drinking coffee and sleeping on his bed.\"]}, \"v_mNM-JUC7ZEA\": {\"duration\": 163.14, \"timestamps\": [[3.26, 35.08], [35.89, 78.31], [79.94, 143.57], [143.57, 159.07]], \"sentences\": [\"A man fix a rooftop vent pipe while explains to a person.\", \" First, the man cut the uneven part on the top of the tub, and then test a rubber base.\", \" After, the man takes off old hard glue on the rubber base, and then puts new sealant around the rubber base.\", \" Next, the man put a new rubber base around the tube.\"]}, \"v__i6yjCO8nzQ\": {\"duration\": 187.87, \"timestamps\": [[0, 23.48], [27.24, 187.87]], \"sentences\": [\"A boy's gymnastics team lines up.\", \" They take turns doing flips down a mat.\"]}, \"v_vg-FrXO1coA\": {\"duration\": 231.53, \"timestamps\": [[0, 57.88], [61.35, 177.12], [141.23, 224.58]], \"sentences\": [\"A large room is seen followed by a woman floating into frame.\", \" The woman wipes off her face and uses a brush to brush her teeth.\", \" She continues floating around while brushing her teeth and putting them away.\"]}, \"v_94bJbSWNw3o\": {\"duration\": 47.07, \"timestamps\": [[0.24, 46.83], [0.24, 4.24], [4.47, 38.59], [39.77, 46.83]], \"sentences\": [\"A young man walks across an elevated rope stretched across two large rocks at the edge of a large body of water, while holding both arms out on either side for balance.\", \"  A young man, wearing only blue swim trunks, approaches the edge of a large rock and begins to walk across a rope suspended in the air above ocean water lapping over a sandy shorefront.\", \"  The young man teeters and balances himself by holding out both arms on either side while walking on the shaky rope.\", \"  The boy reaches the end of the rope and jumps off of the rope and onto the wet sand.\"]}, \"v_IiNf2F4P5sE\": {\"duration\": 73.86, \"timestamps\": [[0, 42.47], [38.78, 73.86]], \"sentences\": [\"Various shots of a beach are shown as well as people hanging out on the beach and holding surf boards.\", \" Many walk around holding surf boards and various shots of people surfing are shown.\"]}, \"v_pniQHSjY7dc\": {\"duration\": 85.38, \"timestamps\": [[0, 6.83], [11.1, 45.25], [49.09, 85.38]], \"sentences\": [\"A weight lifter is inside a gym.\", \" He lifts a weight with his knees.\", \" He then pauses at his chest before lifting it over his head and dropping it to the ground again.\"]}, \"v_E3UJv-NC1E8\": {\"duration\": 33.07, \"timestamps\": [[0, 4.79], [5.79, 25.79], [25.96, 33.07]], \"sentences\": [\"A wrestler punches another wrestler in the face.\", \" He then body slam him, lifts him over his head, and slams him again.\", \" He jumps out of the ring and walks away.\"]}, \"v_R_YZNqP1gSE\": {\"duration\": 119.4, \"timestamps\": [[0, 30.45], [30.45, 119.4], [90.74, 93.73]], \"sentences\": [\"A man is talking to the camera.\", \" He starts cutting a man's hair who is sitting in front of him.\", \" She shaves the man's neck.\"]}, \"v_-erT3ckPkAg\": {\"duration\": 50.11, \"timestamps\": [[0, 35.83], [34.83, 35.83], [37.08, 50.11]], \"sentences\": [\"People are standing around trying to hit a pinata.\", \" The pinata breaks and candy falls to the ground.\", \" Kids are picking up the candy that fell.\"]}, \"v_j7Tk8I_DCtw\": {\"duration\": 27.93, \"timestamps\": [[0, 2.23], [2.37, 6.84], [6.98, 27.93]], \"sentences\": [\"A young man plays the bagpipes on the street.\", \" People pass him by on the sidewalk.\", \" The words \\\"SuperPopVIP\\\" are watermarked on the video.\"]}, \"v_CSsilC4QbB4\": {\"duration\": 139.02, \"timestamps\": [[0, 14.6], [15.29, 139.02], [78.55, 88.28], [126.51, 133.46], [134.15, 139.02]], \"sentences\": [\"A man in scuba gear steps off a boat into the ocean, rewinds and repeats.\", \" We see other people diving into the water and rewind and repeat.\", \" We see a man in red push a lady who removes her mask and laughs.\", \" We see a person pushed in the water come up under the boat.\", \" We see the ending title screen.\"]}, \"v_rqmi-DjYp0U\": {\"duration\": 36.9, \"timestamps\": [[0, 11.62], [11.62, 18.45], [18.45, 36.9]], \"sentences\": [\"a girl drinks a beer with her feet.\", \" She stops and laughs abut it.\", \" She continues to drink with her feet.\"]}, \"v_OAot8XBeLrs\": {\"duration\": 223.89, \"timestamps\": [[0, 223.89], [2.24, 50.37], [59.33, 63.81], [63.81, 107.47], [125.38, 145.53], [143.29, 177.99], [189.18, 223.89]], \"sentences\": [\"Teams play a game of indoor soccer.\", \" One player kicks the ball against the wall and a second kicks the rebound into the goal.\", \" The players face off and kick the ball to their teammate.\", \" Players pass around the goal and assist a shot.\", \" A player makes a penalty shot on the goalie.\", \" A player makes a shot from down the field over other players heads.\", \" A goalie runs back towards the goal from down field but the offensive player beats him and makes a shot.\"]}, \"v_HM_rHjh-wqQ\": {\"duration\": 121.53, \"timestamps\": [[0, 16.41], [16.41, 47.4], [47.4, 109.99], [109.99, 121.53]], \"sentences\": [\"A man is shown indoors playing the violin as people look on.\", \" he starts to play and people seem entranced by it.\", \" He continues on as the camera pans around and shows the rest of the room he is in.\", \" After he is done, he hands the violin to someone off camera and the video ends.\"]}, \"v_E3IP4Y8e_ho\": {\"duration\": 89.12, \"timestamps\": [[0, 5.35], [5.79, 35.65], [36.09, 44.56], [44.56, 59.71], [60.16, 75.75], [76.2, 78.87], [79.32, 89.12]], \"sentences\": [\"We see an opening screen on a white background.\", \" We see men walking on a slack line.\", \" We see the men outside.\", \" We then see them indoors.\", \" We see the men outdoors again.\", \" A man smiles into the camera.\", \" We then see the ending screen.\"]}, \"v_wcmO0R3Kqzo\": {\"duration\": 93.25, \"timestamps\": [[0.47, 8.39], [8.86, 12.12], [14.45, 20.98], [21.45, 23.31], [24.25, 26.58], [27.04, 30.77], [34.5, 50.82], [55.02, 67.61], [71.8, 82.53], [82.99, 92.32]], \"sentences\": [\"The credits of the clip and final product are shown.\", \" The products needed are displayed.\", \" A person paints their nails.\", \" The painted nails are presented.\", \" A liquid is poured in a small, brown container.\", \" Pieces of artists are added to the liquid.\", \" A piece of soaked paper is pressed on a fingernail and removed seconds later.\", \" Alcohol is poured on the nails, and a finger rubs off paper residue.\", \" Clear polish is painted on the fingernails.\", \" The credits of the video and final product are shown.\"]}, \"v_AUFI2wx5Z48\": {\"duration\": 141.32, \"timestamps\": [[5.65, 79.84], [79.84, 141.32]], \"sentences\": [\"A person paints her nails, then she paints pink flowers on the nails.\", \" After, she paints white flowers.\"]}, \"v_X9Z9uqrb9EY\": {\"duration\": 70.52, \"timestamps\": [[0, 8.11], [8.11, 28.56], [28.56, 45.13], [45.49, 70.52]], \"sentences\": [\"Three men perform conga drums inside of a room.\", \" They are very into it and there are wine barrels behind them.\", \" Various shots and angles of them performing are shown, while others look on.\", \"  They continue playing their rhythm and are having a great time, before the video ends.\"]}, \"v_fPtKNj6jCPU\": {\"duration\": 56.54, \"timestamps\": [[0, 20.35], [20.07, 44.38], [44.1, 56.54]], \"sentences\": [\"A man in a black shirt and grey cargo is standing next to a beer pong table talking to the camera.\", \"As he is talking,a young lady with long curly hair begins tossing balls across the able trying to get them in the cup.\", \"After he is done talking,the man joins  in and the cups on the table begin to spin around as they try to score.\"]}, \"v_pev7rvOE8eM\": {\"duration\": 619.39, \"timestamps\": [[6.19, 12.39], [0, 232.27], [235.37, 303.5], [325.18, 569.84], [572.94, 619.39]], \"sentences\": [\"A young child watches television inside a house.\", \" A woman in hooded black snow coat brushes snow from her car.\", \" The woman walks through heavy snow and does a snow angel in it.\", \" A man in green hooded jacket brushes snow from his car during a snowstorm.\", \" The man gets into his car and drives down the street.\"]}, \"v_ayLeSjJz53I\": {\"duration\": 146.04, \"timestamps\": [[0, 144.58], [145.31, 146.04]], \"sentences\": [\"A young girl in a ballerina costume dances on a stage.\", \" The young girl is then seen standing next to a man in front of an orange curtain.\"]}, \"v_kXvFkU7gQSM\": {\"duration\": 218.36, \"timestamps\": [[0, 10.92], [12.01, 28.39], [31.66, 132.11], [135.38, 186.7], [189.97, 218.36]], \"sentences\": [\"Two men are talking in a news room.\", \" Some people have gathered outside to watch.\", \" We then see several jousters with swords and gear standing to one side.\", \" The news people begin speaking with them and interviewing them.\", \" The jousters explain how their equipment works.\"]}, \"v_NLuNMeYBeoc\": {\"duration\": 97.46000000000001, \"timestamps\": [[0, 6.82], [7.31, 32.65], [33.13, 56.04], [38.49, 49.7], [56.52, 97.46]], \"sentences\": [\"A man grabs onto parallel bars.\", \" He jumps into the air and flips his body around.\", \" He jumps off the bars to powder his hands.\", \" A coach approaches him and they speak temporarily.\", \" He jumps back on the bars and performs more flips.\"]}, \"v_FWbCX1wBVoE\": {\"duration\": 168.67000000000002, \"timestamps\": [[0, 16.02], [16.87, 29.52], [29.52, 53.97], [53.97, 72.53], [72.53, 148.43], [148.43, 168.67]], \"sentences\": [\"A shot is shown of a rope is shown with various morale and life issues popping up via text.\", \" A mop bucket is shown with the caption \\\"look familiar?\\\".\", \" More text is shown with people sitting at a desk and then a shot of scientists in a lab are shown.\", \" Another shot of a mop bucket and dirty water comes into view and the mop is being drained of its excess water.\", \" A man is mopping a floor very precisely and intently.\", \" The video jumps to a man teaching a class and is in front of a chalkboard.\"]}, \"v_W84TQm1l90U\": {\"duration\": 7.73, \"timestamps\": [[0, 5.65], [5.53, 7.73]], \"sentences\": [\"A man picks up a woman onto his shoulders.\", \" The man throws the woman from his shoulders onto a trampoline.\"]}, \"v_9GYLUAFgCXE\": {\"duration\": 180.75, \"timestamps\": [[0, 50.61], [50.61, 140.98], [145.5, 165.38], [165.38, 180.75]], \"sentences\": [\"Street musicians perform on a busy street corner with a table with a red table cloth displaying their music CD's.\", \" People walking and shopping in every direction.\", \" A couple dressed in Mickey and Minnie Mouse stand in the square looking at the surroundings.\", \" People are taking pictures and videos of the buildings and people everywhere.\"]}, \"v_NLdyQ1oMmAo\": {\"duration\": 151.12, \"timestamps\": [[0, 3.02], [3.78, 9.07], [6.04, 12.84], [8.31, 12.09], [9.07, 11.33], [10.58, 12.09], [12.84, 16.62], [15.11, 21.16], [20.4, 46.85], [24.93, 40.05], [30.98, 40.05], [34.76, 40.05], [36.27, 49.11], [40.05, 52.14], [38.53, 47.6], [48.36, 59.69], [61.96, 73.29], [74.8, 80.09], [83.11, 99.74], [88.4, 97.47], [91.43, 99.74], [95.2, 139.78], [113.34, 120.14], [117.11, 124.67], [123.16, 151.12]], \"sentences\": [\"There'a a city skyline with a large Ferris wheel.\", \" There's a man in a white shirt and a beanie hat skateboarding on a busy sidewalk in the city.\", \" There's another young man in a white shirt and black pants skateboarding on an empty sidewalk next to a round building.\", \" There's a man in a blue jersey skateboarding through a busy street with heavy traffic.\", \" Another man in a black beanie and a red jersey is skateboarding too.\", \" There's a young man in a blue shirt dancing in a park.\", \" A man in a yellow shirt is running with his skateboard in his hand on a street.\", \" He is showing off his shirt logo representing a soccer team.\", \" Various cities are shown with an Adidas billboard.\", \" A young boy is a white shirt is skating in Stuttgart, Germany.\", \" He is doing tricks and stunts on his skateboard.\", \" He is going through quiet streets and busy streets on his skateboard.\", \" A young man in a blue jersey is skateboarding through the streets of New York.\", \" He is doing a lot of stunts on his skateboard.\", \" The man in the red shirt and black beanie hat is skateboarding in Barcelona, Spain.\", \" He is also doing many stunts on his skateboard.\", \" The man in the yellow soccer shirt is doing stunts on his skateboard in Brazil.\", \" A man in a white shirt is doing skateboard tricks on the streets of London.\", \" Another man in a blue shirt is doing skateboard stunts in Paris, France.\", \" He jumps across the street with his skateboard and then throws the skateboard on the other side of the street.\", \" He continues doing stunts on his skateboard.\", \" All the skateboarders continue their stunts but the man in the white shirt takes a fall while going down the stairs on his skateboard.\", \" He gets up and continues his tricks and stunts.\", \" All the skateboarders do various stunts like jumping over walls and steps on their skateboard.\", \" The skateboarders skate through the city streets.\"]}, \"v_0bzSBV3jHIY\": {\"duration\": 152.18, \"timestamps\": [[0, 141.53], [28.91, 31.96], [126.31, 127.83], [149.14, 152.18]], \"sentences\": [\"People are playing pool in a bar.\", \" A man is eating food at a table.\", \" A man in a white striped shirt is smiling.\", \" A woman is setting up the pool balls.\"]}, \"v_hUynCsek8I0\": {\"duration\": 203.29, \"timestamps\": [[0, 104.69], [102.66, 203.29]], \"sentences\": [\"A person's hand is seen reeling in a rod with other people standing around him.\", \" The person continuously reels in the rod and captures a large fish and presents it to the camera.\"]}, \"v_Y7BBrdCwIJw\": {\"duration\": 130.16, \"timestamps\": [[0, 130.16], [7.16, 130.16], [26.03, 130.16], [65.73, 130.16]], \"sentences\": [\"A man holds an accordion in a colorful room.\", \" He plays a song on the accordion.\", \" He fingers the buttons on the side.\", \" His playing becomes more intense.\"]}, \"v_FPv0qnoQbq0\": {\"duration\": 44.33, \"timestamps\": [[0.89, 13.08], [12.63, 32.14], [29.92, 42.78]], \"sentences\": [\"A person is seen sitting on a horse behind a gate surrounded by people.\", \" The man then rides in on a horse and roping the calf up.\", \" He ties the animal up and climbs back on the horse.\"]}, \"v_GOZ305xZvz8\": {\"duration\": 38.62, \"timestamps\": [[0, 3.48], [5.02, 11.01], [11.39, 19.31], [19.89, 38.62]], \"sentences\": [\"Baseball players are on a field.\", \" The batter knocks the ball into the crowd.\", \" A man catches it and throws it back.\", \" The scene is then replayed in slow motion, ending with the man raising his arm triumphantly at the players.\"]}, \"v_6vylz7u_tHw\": {\"duration\": 123.25, \"timestamps\": [[0, 31.43], [24.65, 88.13], [83.2, 112.78]], \"sentences\": [\"A woman is seen sitting on a camel looking at the camera while another man climbs on top.\", \" A man then helps the camels stand up while the people are still riding in front.\", \" The man then leads the camels one after the one with a small boy helping in front.\"]}, \"v_lkC_md7KKq0\": {\"duration\": 32.95, \"timestamps\": [[5.27, 17.79], [17.96, 18.29], [18.45, 23.89]], \"sentences\": [\"A woman is standing next to a man in the kitchen as she sharpens a knife with a mug.\", \" The man hands her another knife.\", \" The woman sharpens the knife with the mug.\"]}, \"v_ICl9CT-9fKY\": {\"duration\": 126.94, \"timestamps\": [[3.17, 63.47], [46.97, 122.5]], \"sentences\": [\"A man is seen walking out on stage holding a jump rope and speaking with others around him.\", \" The man then performs a routine using the jump rope and performing several jumps and tricks, ending by bowing and gesturing to the camera.\"]}, \"v_NURr5XJcwFs\": {\"duration\": 45.4, \"timestamps\": [[0, 11.12], [11.58, 31.55], [31.78, 45.4]], \"sentences\": [\"A woman is standing outside of a group of young girls tying a  bandanna around a girls face.\", \"After,two girls spin her around and place a stick in her hand.\", \"Other friends join her as she is guided to the box pinata and hits it trying to break it open.\"]}, \"v_EWWCQH6WbtQ\": {\"duration\": 85.03, \"timestamps\": [[0, 11.9], [0, 6.8], [33.59, 35.71]], \"sentences\": [\"A man is helping kids make ice cream.\", \" A dog is standing on the ground next to them.\", \" They are mixing cream with strawberries and making ice cream.\"]}, \"v_d950IKYTYY0\": {\"duration\": 64.34, \"timestamps\": [[0.64, 37.32], [29.6, 62.09]], \"sentences\": [\"A small group of people are seen standing before a food stands eating ice cream and another man stepping up to the stand.\", \" The man then hands him an ice cream in a funny way and ends by shaking his hands.\"]}, \"v_MbEtgOmOY-4\": {\"duration\": 171.78, \"timestamps\": [[0, 171.78], [19.75, 23.19], [83.31, 105.65], [117.67, 157.18]], \"sentences\": [\"A man is sitting down getting his ear pierced.\", \" The person piercing the ear sticks the needle in the ear.\", \" They then put an earring into the hole.\", \" They wipe the blood off the ear with a napkin.\"]}, \"v_35SpLMcN-m8\": {\"duration\": 49.37, \"timestamps\": [[0, 7.16], [8.39, 34.8], [37.02, 49.37]], \"sentences\": [\"A man runs to kick a kickball.\", \" The group of women and men run to get the ball.\", \" They continue playing for the rest of the video, changing goals and kicking the ball.\"]}, \"v_6it_yeIb_L0\": {\"duration\": 185.29, \"timestamps\": [[0, 20.38], [23.16, 118.58], [119.51, 165.83], [167.68, 185.29]], \"sentences\": [\"A spinning ad appears, before changing to two men standing in a skateboarding building in Bali.\", \" Several people are shown skating down a city street before they are doing skateboarding tricks indoors.\", \" We see several shots of a man dressed as the incredible hulk between skaters.\", \" They turn tricks and do flips in the air.\"]}, \"v_Jz7bt59z6Qg\": {\"duration\": 22.52, \"timestamps\": [[0, 22.52], [19.03, 21.29]], \"sentences\": [\"Three women and one man ride horses on an unpaved road in the forest.\", \" A man riding a horse follows the three women.\"]}, \"v_ml4aMGCJgP0\": {\"duration\": 151.77, \"timestamps\": [[0.76, 148.73], [6.83, 47.05], [51.6, 151.01]], \"sentences\": [\"A series of men speak to a camera interspersed with clips of men bowling.\", \"A series of men, in closeups , talk into a camera from bowling alleys.\", \"  A clip of several men bowling both successfully and unsuccessfully play in between the men talking into the camera before a marketing text frame for the PBA appears.\"]}, \"v_ywJQotAB3dw\": {\"duration\": 162.59, \"timestamps\": [[0, 99.18], [82.92, 162.59]], \"sentences\": [\"A small group of people are seen playing a soccer match with one another and kicking a ball around in outside area.\", \" The men continue to play while some shots are shown in slow motion and end with the men running around one another.\"]}, \"v_1VwNfMlb4JU\": {\"duration\": 29.35, \"timestamps\": [[0, 25.39], [25.98, 29.35]], \"sentences\": [\"A man cuts another person's braided hair.\", \" The man finishes with the cut and the second person examines the work.\"]}, \"v_RFgusQogDyQ\": {\"duration\": 132.03, \"timestamps\": [[1.98, 50.83], [40.27, 130.05]], \"sentences\": [\"A woman is seen sitting on a swing moving back and fourth while the camera watches her.\", \" The woman continues swinging back and fourth while people walk in and out frame and she looks off into the distance.\"]}, \"v_D5A6eBnKmD8\": {\"duration\": 170.57, \"timestamps\": [[0, 37.53], [37.53, 85.29], [85.29, 114.28], [114.28, 170.57]], \"sentences\": [\"Men are geared up with helmets and boxing gloves standing in front of some judges talking.\", \" They get in place and start fighting one another, trying to hit and still block hits.\", \" There is a boy with a stick walking around and periodically putting the stick he is holding between them.\", \"  The fighters move more and more from where they started and then try to move back.\"]}, \"v_MMB5Cn3JCGI\": {\"duration\": 20.23, \"timestamps\": [[0, 0.1], [0.2, 3.94], [4.05, 20.23]], \"sentences\": [\"A young girl is standing in an open grassy field.\", \" The girl runs towards a low beam and jumps over it, landing on a blue pad.\", \"  Video of the girl jumping is replayed in slow motion.\"]}, \"v_iY7bZQnHXlk\": {\"duration\": 205.27, \"timestamps\": [[0, 6.16], [7.18, 25.66], [26.68, 28.74], [48.24, 52.34], [56.45, 93.4], [69.79, 93.4], [105.71, 188.84], [134.45, 141.63]], \"sentences\": [\"A little girl brings a cup to the sink.\", \"  She turns on the water and fills up the cup.\", \"  She turns off the water.\", \"  She dumps the water in the sink.\", \"  She dumps the rest of the watet out of the cup and grabs the handsoap.\", \"  She struggles to get the soap out of the container but eventually gets some out.\", \"  She sticks her hand in the sink which has soapy water and plays in the water.\", \"  The camerman grabs a spoon form the sink and hands it to the girl.\"]}, \"v_HsGz6S2MBU4\": {\"duration\": 13.47, \"timestamps\": [[0, 1.21], [1.21, 2.49], [2.49, 6.13], [6.13, 7], [7.07, 13.47]], \"sentences\": [\"A young woman is pulling back both of her eyelids open with her finger.\", \" She slowly hesitates with a circle lens on her finger.\", \" She slowly places the lens into her eyes.\", \" She blinks a few times making sure the lens is properly in place.\", \" She then adjusts the lens with her fingers and blinks a few times to assure placement.\"]}, \"v_A3160tXXLGg\": {\"duration\": 25.12, \"timestamps\": [[0, 3.39], [3.39, 4.4], [4.27, 18.59], [18.59, 25.12]], \"sentences\": [\"A Rubiks cube sits on a laptop as a clock counts down.\", \" The clock strikes 0 and a person picks up the cube.\", \" The cube is completed in under 15 seconds.\", \" The person puts it down and shows the screen.\"]}, \"v_r015El3onHw\": {\"duration\": 84.94, \"timestamps\": [[0, 10.62], [11.04, 39.92], [42.47, 84.94]], \"sentences\": [\"Several images of gloves are shown.\", \" Dirt bikers come through a gate, racing each other.\", \" The riders go over hills and around curves as they are introduced one by one.\"]}, \"v_8FO4W-SBpxs\": {\"duration\": 177.98, \"timestamps\": [[0, 78.31], [79.2, 120.14], [121.03, 161.07], [161.07, 177.98]], \"sentences\": [\"Two boys perform martial art movements in the center of children sitting making a circle.\", \" Then, a big boy enter and continue raising the feet and doing cartwheels with other children.\", \" After, enters a woman to exercise with the big boy and a young men.\", \" Next, the young men practice martial arts movements with another child.\"]}, \"v_eaI8My4pGq4\": {\"duration\": 182.88, \"timestamps\": [[2.74, 78.64], [61.27, 142.65], [128.93, 181.05]], \"sentences\": [\"A subway is seen riding around in several angles and leads into people riding a ski lift and skiing down a mountain.\", \" Several shots are shown of people riding down a mountain as well as speaking to the camera and hiding under igloos.\", \" The camera man is shown in several shots as well as him riding down the mountain.\"]}, \"v_cw0HRDIQ10I\": {\"duration\": 38.71, \"timestamps\": [[0, 12.39], [12.39, 38.71]], \"sentences\": [\"An athlete is seen holding his hands on a weight bar and lifting it up by his neck.\", \" The man falls backwards with the weight on top of him and the lift is shown again in slow motion.\"]}, \"v_2Iakg-Z-iXM\": {\"duration\": 148.41, \"timestamps\": [[0, 14.1], [14.84, 141.73], [66.79, 85.34], [79.4, 123.18], [114.28, 144.7]], \"sentences\": [\"The video starts with a lady walking to the center of a court.\", \" The lady starts doing a rendition and spinning a stick around while doing fancy tricks with it.\", \" The lady continues her rendition and spins the stick using her neck.\", \" The lady throws the stick into the air and catches it.\", \" The lady ends the rendition on the floor.\"]}, \"v_1RQ27XZKU1E\": {\"duration\": 227.16, \"timestamps\": [[0, 227.16], [23.85, 29.53], [53.38, 189.68], [190.82, 206.72]], \"sentences\": [\"A girl talks to a camera.\", \" She holds up a bottle of mouse and puts some in her hair.\", \" She starts braiding her hair and pulling it up.\", \" She shows a bottle of hair spray and sprays it in her hair.\"]}, \"v_zGTqXydTuQs\": {\"duration\": 158.9, \"timestamps\": [[0, 8.74], [9.53, 28.6], [30.19, 48.46], [49.26, 117.58], [118.38, 125.53], [141.42, 149.36], [150.16, 158.9]], \"sentences\": [\"We see a house, a van and a title screen.\", \" Two boys in scuba gear sit in a van and preparing to scuba dive.\", \" We see three people in the water, two under water.\", \" We see under water  and above intermittently.\", \" A boy talks to the camera and lifts his goggles.\", \" We see the names of the boys.\", \" We see the ending title screens.\"]}, \"v_Vnj0j648Emw\": {\"duration\": 29.26, \"timestamps\": [[0, 29.26], [0.59, 29.26], [1.17, 29.26]], \"sentences\": [\"A man in a chef uniform is standing up talking.\", \" He is holding a knife sharpener in his hand.\", \" He starts sharpening his knife on the sharpener.\"]}, \"v_0ZXc2fEDgg8\": {\"duration\": 83.17, \"timestamps\": [[0, 4.99], [5.41, 25.37], [30.77, 47.83], [51.98, 68.2], [68.62, 83.17]], \"sentences\": [\"We see a flashing opening screen.\", \" We see a man body slam a man on the street.\", \" We see the other man be body slammed.\", \" We see a man power slam a man on  another man.\", \" We then see the ending credits.\"]}, \"v_hhk7A9gJcu8\": {\"duration\": 162.94, \"timestamps\": [[0, 30.14], [26.07, 120.57], [98.58, 154.79]], \"sentences\": [\"A woman is seen speaking to the camera and begins mixing ingredients into a bowl.\", \" She pours the ingredients into a pan to put in the oven and continues laying out more ingredients.\", \" She melts marshmallows on top of the cake and shows it off in the end.\"]}, \"v_Q_W0GL3ljUY\": {\"duration\": 166.21, \"timestamps\": [[0, 100.56], [100.56, 166.21]], \"sentences\": [\"woman wearing sumo suit is standing in a blue cloth an starts fighting with other person, a dog is running in the field and people is walking around.\", \" bold man is helping the woman in the sumo suit when she is in the floor.\"]}, \"v_NJjoTu1vS7A\": {\"duration\": 174.78, \"timestamps\": [[0, 33.21], [34.08, 174.78]], \"sentences\": [\"men are sitting in a grass and are adjusting he socks, gloves, helmets and uniforms in general.\", \" men are in the middle of a field and start the lacrosse game in a big grassy field.\"]}, \"v_CsvEXvHlO3M\": {\"duration\": 88.82, \"timestamps\": [[0, 4], [4, 88.82], [58.62, 61.28]], \"sentences\": [\"A man is standing in the snow.\", \" People are going down a hill in a tube.\", \" A baby is sitting in a tube going down the hill.\"]}, \"v_mqwC7rqeXsk\": {\"duration\": 91.21000000000001, \"timestamps\": [[0, 91.21], [50.16, 59.29], [73.88, 91.21]], \"sentences\": [\"A marching band stands in formation outside of a historic building and with a set of drummers playing their instruments in stiff motions.\", \" The drummers move from a formation resembling square shape into a straight line.\", \" The band plays their drums sequentially down the line one at a time.\"]}, \"v_Lyaozxv4_qU\": {\"duration\": 41.96, \"timestamps\": [[0, 6.5], [6.71, 41.96], [16.36, 18.46], [20.98, 26.01]], \"sentences\": [\"A man in a hoodie faces the camera and talks.\", \" The camera pans and then follows a man wearing a leaf blower as he blows leaves.\", \" The camera cuts back to the first man briefly before returning to the leaf blower man.\", \" The camera does so again a second time.\"]}, \"v_ovq0Fqbxt1c\": {\"duration\": 42.84, \"timestamps\": [[0, 13.71], [13.49, 28.7], [28.49, 42.84]], \"sentences\": [\"A woman is standing in a room with contents on a table and a jar of vinegar in her hand.\", \"All of a sudden,the vinegar is now in the bowl and placed on the table.\", \"She then grabs a towel,dips it in the vinegar and starts to wipe the table to clean it.\"]}, \"v_z85nM9V4058\": {\"duration\": 196.63, \"timestamps\": [[0, 41.29], [36.38, 147.47], [144.52, 196.63]], \"sentences\": [\"The adult female is drawing squares on the ground while two kids are watching her.\", \" The little boy is waving at the camera, then played hop scotch.\", \" The little girl throw the stone on the ground and play hop scotch.\"]}, \"v_V0e5tItt1RM\": {\"duration\": 224.79, \"timestamps\": [[2.25, 98.91], [87.67, 219.17]], \"sentences\": [\"Two girls are seen speaking to the camera while being silly and lead into them jumping on one another while another watches in the background.\", \" The kids continue to play with one another using toys and moving all around in the background.\"]}, \"v_TspdPLMqTx0\": {\"duration\": 169.0, \"timestamps\": [[0, 14.36], [14.36, 23.66], [32.11, 36.33], [46.47, 169]], \"sentences\": [\"A man is standing in front of a window playing a violin.\", \" Medications are shown on a table.\", \" A woman is walking in the snow next to a tree.\", \" The man continues to play his violin.\"]}, \"v_kTf-Id-lWX8\": {\"duration\": 66.06, \"timestamps\": [[1.32, 36.99], [24.11, 60.78]], \"sentences\": [\"A young child is seen standing on the side with an older man playing shuffleboard and pushing a puck.\", \" The two men continue to play with one another as the girl continues to watch on the side.\"]}, \"v_3nzXMKByUnk\": {\"duration\": 209.48, \"timestamps\": [[6.28, 118.36], [93.22, 202.15]], \"sentences\": [\"A young woman is seen kneeling on the side of a building and leads into shots of her dancing with another man.\", \" The man and woman continuously spin around in the middle of a city square and ends by dipping the woman.\"]}, \"v_vbHLA5l_BRc\": {\"duration\": 154.73, \"timestamps\": [[0, 13.93], [17.02, 116.05], [118.37, 154.73]], \"sentences\": [\"A woman stands up in a boat, then a man looks closely at the camera.\", \" The machine is placed in the water as the man is water skiing while attached to it.\", \" We see a large spray of water, followed by the man in the water as he smiles and waves.\"]}, \"v_E50qKeeMbgU\": {\"duration\": 70.71000000000001, \"timestamps\": [[0, 14.49], [15.2, 50.55], [51.26, 70.71]], \"sentences\": [\"a man is talking next to an exercise machine.\", \" He discusses the mechanics of how the machine works.\", \" A woman is shown using the machine while he talks.\"]}, \"v_J4rzLO4u_pI\": {\"duration\": 147.8, \"timestamps\": [[0, 19.95], [19.95, 62.07], [62.07, 103.46], [103.46, 147.8]], \"sentences\": [\"A man is standing outside of his house wearing a beanie and a hoodie.\", \" He is talking and pointing to his plant life that he has outside of his home that looks like it almost dying.\", \"  He takes some pliers and bends down to starts cutting them.\", \" He throws the dead parts to the side and continues to cut more and more trying to get all of it out.\"]}, \"v_IjwOh2YmT9U\": {\"duration\": 176.26, \"timestamps\": [[0, 1.76], [1.76, 7.05], [7.05, 171.86], [171.86, 176.26]], \"sentences\": [\"A black screen appears and a colorful website quickly appears on the left side of the screen and it say's RedBull dot COM.\", \"A man is shown jumping off of a chain link fence, white text appears on the screen that say's the man's name is \\\"DEREK SWAIM\\\".\", \" The man begins to skateboard all over the city during day and night,wearing different clothes and appearing in different locations of the city while normal people in the city do their own thing around him or watch him.\", \"A black screen appears and it includes the Red Bull website and the credits.\"]}, \"v_DWsO49YhWUI\": {\"duration\": 64.06, \"timestamps\": [[0, 23.7], [23.7, 42.28], [42.28, 57.02], [56.7, 59.26]], \"sentences\": [\"A young woman talks and two girls appear for few seconds splashing water on their face then she continues talking.\", \" The girl is on front a sink and puts soap on her face, then she remembers the two girls splashing water on her face.\", \" Then, the girl takes water with both hands and splash on her face and some water spills on the floor.\", \" At the end,the woman continues talking.\"]}, \"v_3-_Eld2NwJ0\": {\"duration\": 70.22, \"timestamps\": [[0, 22.12], [22.47, 51.61], [43.54, 67.41]], \"sentences\": [\"A woman is seen sitting on the beach with a small boy.\", \" She pours sand for the boy and puts it into a bucket.\", \" She flips over the bucket and grabs a shovel to play with.\"]}, \"v_tyuyI30cZ00\": {\"duration\": 37.8, \"timestamps\": [[0, 7.37], [5.48, 27.22], [21.93, 36.67]], \"sentences\": [\"A woman is seen with her arm bent up and looking into a mirror.\", \" The camera follows her putting eye makeup on and still looking to the camera.\", \" She looks away from a moment and the camera zooms back in on her.\"]}, \"v_qsYElirHVUU\": {\"duration\": 200.09, \"timestamps\": [[3, 99.04], [78.03, 191.08]], \"sentences\": [\"The video leads into several clips of skateboarders moving up and down a park and performing tricks around one another.\", \" The video continues with the borders performing tricks as well as people speaking to the camera and the audience cheering.\"]}, \"v_8v2ewQE-QK0\": {\"duration\": 217.07999999999998, \"timestamps\": [[0, 198.63], [0, 217.08], [2.17, 217.08]], \"sentences\": [\"a marching band is standing in front of a church.\", \" people are sitting on large benches inside the church.\", \" a wooden urn is in the middle of the church with a flag on top.\"]}, \"v_ep2Kyk8CHT8\": {\"duration\": 152.39, \"timestamps\": [[0, 31.24], [31.24, 71.62], [71.62, 100.58], [100.58, 123.44], [123.44, 152.39]], \"sentences\": [\"man is standing in front of a wall talking to the camera about burlders tools holding one.\", \"  a man is standing in a room mixing cement flatting a wall with a shovel.\", \" man in the room holding a shovel and using it to mix the cement on a aluminum plate.\", \" a man is in a sunny day building a brick wall, spreading cement between the bricks.\", \" man is talking to the camera showing different building tools on top of a table.\"]}, \"v_Rd18n3PeZvk\": {\"duration\": 3.37, \"timestamps\": [[0, 0.24], [0.42, 3.37], [0.94, 3.37]], \"sentences\": [\"A man is seen sitting down in a chair outside.\", \" He is seen looking off into the distance.\", \" He grabs a hookah hose and blows smoke out of it.\"]}, \"v_c-8GvZKndyQ\": {\"duration\": 91.77, \"timestamps\": [[0, 8.26], [8.26, 88.1], [88.1, 91.77]], \"sentences\": [\"A woman in a red outfit jumps on top of a balance beam.\", \" She does her routine on the balance beam.\", \" She does a large flip off and lands on a blue mat with her hands in the air.\"]}, \"v_mOISOUKHpNM\": {\"duration\": 50.43, \"timestamps\": [[0, 21.18], [22.19, 50.43]], \"sentences\": [\"A gymnast is seen standing ready and then performing a routine on a set of uneven bars.\", \" She continues flipping around in front of a large crowd and ends with a flip and her hands into the air.\"]}, \"v_NvOo-wtEPPk\": {\"duration\": 68.06, \"timestamps\": [[0, 17.01], [18.38, 54.79], [55.47, 68.06]], \"sentences\": [\"Two military men are talking outside a pool.\", \" One of the men dives backward into the pool.\", \" The other man has to help pull him out.\"]}, \"v_QMHF20eV9N0\": {\"duration\": 34.81, \"timestamps\": [[0.35, 11.66], [7.48, 21.75], [17.06, 33.41]], \"sentences\": [\"An athlete is seen standing ready before a large track.\", \" The woman throws a javelin off into the distance and is shown again afterwards.\", \" She throws her hands up to cheer and wraps herself in a flag.\"]}, \"v_8_XQPqLdblg\": {\"duration\": 34.62, \"timestamps\": [[0.87, 3.12], [3.29, 32.2], [4.33, 31.68], [32.2, 33.76]], \"sentences\": [\"In split screens, the person plays a guitar while a lady moves side to side in front of a microphone.\", \" In split screens, a lady sings while a person plays the guitar.\", \" The lady raises her hand and gestures during her vocal performance.\", \" The person stops playing the guitar and lady stops singing.\"]}, \"v_xDc407xoYUM\": {\"duration\": 32.14, \"timestamps\": [[1.77, 8.19], [8.19, 10.93], [11.09, 13.5], [13.5, 19.12], [19.28, 25.23]], \"sentences\": [\"A man water ski pulled by a boat, then the driver of the boat gives thump up while a woman watch him.\", \" The man holds a sandwich with his right hand and the rope with the left hand.\", \" Then, the man free the rope and takes from his behind a cup, after the rope seems floating in the air.\", \" The man continues water skiing in the river.\", \" Suddenly, a person comes water skiing and hit the man who hit back in his face, and the person falls in the water.\"]}, \"v_2sbF8W0_bbg\": {\"duration\": 14.26, \"timestamps\": [[0, 1.35], [1.64, 11.48], [12.05, 14.26]], \"sentences\": [\"A woman is resting next to crashing water.\", \" She is smoking a pipe.\", \" She blows out a plume of smoke.\"]}, \"v_zI6PsewSm7w\": {\"duration\": 134.44, \"timestamps\": [[0.67, 55.12], [49.74, 131.76]], \"sentences\": [\"A young man is see performing a dance routine using a baton in the middle of a large gym.\", \" The boy continues dancing and spinning around and ends by holding a pose and walking off stage.\"]}, \"v_qiT-OtAHtvk\": {\"duration\": 126.41, \"timestamps\": [[0, 126.41], [35.39, 126.41]], \"sentences\": [\"A bunch of people play in a band.\", \"  Some play bongos while another talks into a microphone.\"]}, \"v_gLfIPN_WM48\": {\"duration\": 192.19, \"timestamps\": [[0, 8.65], [8.65, 14.41], [14.41, 118.2], [118.2, 131.65], [131.65, 162.4], [162.4, 192.19]], \"sentences\": [\"A tabletop with food ingredients appear on a wooden slat surface and fancy white wording appears in a special effect way on the left of the screen and it reads \\\"Home Cooking adventure\\\" and the website is displayed at the bottom left.\", \"A batch of brown cooked cookies on a pan appear and white wording appear on the middle of the screen and it reads \\\"DOUBLE CHOCOLATE CHUNK COOKIES\\\".\", \"A woman is now slicing up chunks of chocolate with a large knife, then begins to mix various ingredients, as well as melting butter and chocolate on a double broiler, mixing wet ingredients with dry ingredients, then mixing the chocolate chunks into the mixture as instructions appear from time to time.\", \"The instructions on the screen now say \\\"Drop 1-1 1/2 tablespoon portions 2 - inches apart\\\" and the woman is shown spooning the cookie dough mixture onto a baking pan.\", \" Instructions appear on how to bake it and the woman puts the pan in the oven, the pan is shown taken out and put on a cooling rack, then the cookies are shown being put on a white plate with a cup of milk.\", \" The cookie is picked up and broken in half,the screen goes to an outro screen that has the words \\\"Home Cooking adventure\\\", includes 3 small videos in the middle of the screen and a youtube icon that has a flashing word \\\"subscribe\\\" next to it.\"]}, \"v_jherly5DNjg\": {\"duration\": 35.9, \"timestamps\": [[0, 9.15], [9.15, 31.95], [31.95, 35.9]], \"sentences\": [\"A man is riding a horse and roping a calf.\", \"  He jumps off the horse and hog ties the calf.\", \" He gets back on the horse and walks towards the calf.\"]}, \"v_BBRNbo8c8gA\": {\"duration\": 130.61, \"timestamps\": [[0, 25.47], [30.04, 109.06], [117.55, 130.61]], \"sentences\": [\"A group of young men are gathered in a large room.\", \" A boy performs numerous backflips and forward flips, going high into the air.\", \" The kids celebrate together, then we see a scene of a cartoon rabbit doing flips into a pool.\"]}, \"v_D-wP7_1A_Kw\": {\"duration\": 74.53999999999999, \"timestamps\": [[0, 19.38], [19.75, 58.51], [58.88, 74.54]], \"sentences\": [\"A megaphone with flags is shown shown followed by people playing volleyball and smiling to the camera.\", \" Various shots are shown of flags, people keeping score, and dancing in front of the camera.\", \" More shots are shown of people playing as well as audience members cheering and showing each other videos.\"]}, \"v_HYAlS44yzdo\": {\"duration\": 116.68, \"timestamps\": [[0, 26.84], [26.84, 95.1], [95.1, 116.68]], \"sentences\": [\"A man is outside in a field and throws a shot put into the crowd.\", \"After,several images are shown and a red arrow high lights parts of their leg that are needed for technique and balance.\", \"Many men are then shown throwing more shotput in the field as coaches and people begin to watch.\"]}, \"v_s_XdqaQj0uI\": {\"duration\": 208.21, \"timestamps\": [[1.04, 17.7], [20.82, 26.03], [28.11, 96.82], [97.86, 100.98], [102.02, 115.56], [116.6, 119.72], [122.85, 127.01], [128.05, 135.34], [138.46, 152], [153.04, 191.56], [189.47, 190.52], [193.64, 207.17]], \"sentences\": [\"A guy that is talking and holding a small pumpkin is being circled by two children.\", \" The credits and the children giving two thumbs up are shown.\", \" The guy sits and talks while holding a pumpkin with the two children sitting at each side on the grass.\", \" A person removes the top of a pumpkin.\", \" A child removes the seed and the squash inside.\", \" A person puts a hole at the bottom of the pumpkin.\", \" A child adds soil to the inside of the pumpkin.\", \" A person adds water to the pumpkin.\", \" The pumpkin is buried in black dirt.\", \" A guy that is standing, talking, and gesturing in a lawn and is being circled by two children.\", \" The children give a thumbs up.\", \" The credits of the clip are shown with two mini clips.\"]}, \"v_0EepbsAtiDk\": {\"duration\": 186.55, \"timestamps\": [[0.93, 88.61], [77.42, 178.16]], \"sentences\": [\"A close up of a horse is shown walking along the beach behind several other people riding on horses.\", \" The camera continues to pan around as the people ride on horses all along the beach.\"]}, \"v_LM8C4FSpN0w\": {\"duration\": 61.02, \"timestamps\": [[0, 61.02], [16.17, 32.34], [32.34, 58.28], [58.89, 61.02]], \"sentences\": [\"People are playing a game in a pool.\", \"  They are throwing a ball back and forth trying to score.\", \" They continue to play after one team scores.\", \" A person throws the ball out of the pool.\"]}, \"v_euF5okzyaaA\": {\"duration\": 91.44, \"timestamps\": [[0, 12.34], [19.2, 29.72], [70.41, 76.81], [79.55, 89.61]], \"sentences\": [\"Four horse riders ride along the beach.\", \" Several horse riders ride through a village.\", \" The horses are shown against a tree.\", \" Several riders ride along the beach again.\"]}, \"v_mtSJG4q2vP4\": {\"duration\": 111.13, \"timestamps\": [[0, 27.23], [27.23, 50.56], [50.56, 86.68], [86.13, 111.13]], \"sentences\": [\"colombian woman is running in a race track and make a high jump while people is watching her.\", \" Russian woman is running in a race track making big steps and make a high jump while people is watching her.\", \" jamaican woman is running really fast in a race track and make a big jump into the dust and grets women sitting on chairs.\", \" report card is shown in screen.\"]}, \"v_FEqLmpNzxdg\": {\"duration\": 173.94, \"timestamps\": [[0, 10.44], [10.44, 83.49], [80.88, 85.23], [86.1, 130.46], [131.33, 133.06], [152.2, 170.46], [160.03, 170.46]], \"sentences\": [\"People are standing in the snow in front of snow mobiles.\", \" A man is standing in the snow holding a fishing pole and talking.\", \" A view of under the water is shown.\", \" The man is kneeling down in the snow reeling a fishing pole.\", \" A fish is seen under the water.\", \" Another man in a blue coat is next to him.\", \" They pull out a large fish and pose with it.\"]}, \"v_2WyRPSKFUi8\": {\"duration\": 216.06, \"timestamps\": [[0, 42.13], [44.29, 115.59], [118.83, 216.06]], \"sentences\": [\"A man is riding a riding lawn mower backwards.\", \" He is blowing leaves across the yard as he goes.\", \" He then rolls back forward, doing the same pattern back and forth until the yard is clear of debris.\"]}, \"v_yyCsQ7QzAJ8\": {\"duration\": 228.72, \"timestamps\": [[5.72, 59.47], [42.31, 182.97], [174.97, 216.14]], \"sentences\": [\"A camera pans over several ingredients laid out and leads into a person mixing them into a bowl.\", \" The person continues adding ingredients and blending them together, followed by putting them into a pan and baking in an over.\", \" Finally she pours powdered sugar all over the cake.\"]}, \"v_nB90Q8sTBgE\": {\"duration\": 210.44, \"timestamps\": [[11.57, 52.61], [53.66, 71.55], [72.6, 116.8], [119.95, 153.62], [154.68, 193.61]], \"sentences\": [\"A man measures and cuts a piece of drawing paper.\", \" The man puts the paper on a easel and draws on the paper while talking.\", \" After, the man paints the draw while talking.\", \" The man takes oil crayons and paint while talking.\", \" Next, the man uses a tissue to clean the painting and a blade to make lines and rolls it.\"]}, \"v_n2wq_9TeNYM\": {\"duration\": 41.17, \"timestamps\": [[0, 41.17], [24.5, 27.58], [28.82, 41.17]], \"sentences\": [\"The players are racing on the high ramps as the spectators are watching on the side of the race track.\", \" A man walked towards the crane and hold on to it.\", \" One biker made it first to the finish line, followed by two bikers.\"]}, \"v_Y9xPzIiy6mI\": {\"duration\": 49.58, \"timestamps\": [[0, 6.44], [21.07, 27.02], [46.1, 49.58]], \"sentences\": [\"Two man and kneeling down facing each other.\", \" One of the men falls into the crowd of people.\", \" The other one sits down.\"]}, \"v_N2hi_TNBk94\": {\"duration\": 222.48, \"timestamps\": [[0, 34.49], [20.02, 155.74], [20.02, 222.48]], \"sentences\": [\"The pictures of the young people in the bus and the in the car are being shown.\", \" The girls and boys are riding their life buoy as they move through the water.\", \" The young people are moving through the water using their legs or the waves of water.\"]}, \"v_iLHVaeiPpuw\": {\"duration\": 199.23, \"timestamps\": [[0, 33.87], [6.97, 32.87], [32.87, 35.86], [35.86, 100.61], [101.61, 115.55], [173.33, 199.23]], \"sentences\": [\"We see a soccer game being played indoors.\", \" The commentator is seen discussing the game, and the commentator interviews one of the players.\", \" The men walk through a gate.\", \" We see the teams score some shots.\", \" We see the score board and another player interviewed.\", \" 258 We see two players being interviewed.\"]}, \"v_foFFu7bY5ow\": {\"duration\": 138.04, \"timestamps\": [[0, 20.71], [20.71, 28.99], [30.37, 138.04]], \"sentences\": [\"Two men are talking on the beach.\", \" A man practices surfing on the sand.\", \" They go into the water and start surfing.\"]}, \"v_dnJLvsqqSgQ\": {\"duration\": 176.25, \"timestamps\": [[0, 93.41], [41.42, 152.46]], \"sentences\": [\"A man is shown in several shots performing various kick and flips as well as gymnastic moves.\", \" He flips all around a beached area in various shots as well as incorporating tricks with other people.\"]}, \"v_IROb83YwQ8Y\": {\"duration\": 144.73, \"timestamps\": [[0, 15.2], [15.2, 144.73]], \"sentences\": [\"A man is in the bathroom with a flip phone and an electrical razor.\", \"While recording with his phone in his left hand,he begins shaving his beard with his right hand until all of his hair is gone.\"]}, \"v_A8xThM3onkc\": {\"duration\": 73.27, \"timestamps\": [[0, 73.27], [14.29, 53.86], [66.68, 73.27]], \"sentences\": [\"A woman is standing behind a bar.\", \" She pours drinks into a glass of ice.\", \" She puts a cherry into the drink.\"]}, \"v_VSeBb4e9ysU\": {\"duration\": 151.84, \"timestamps\": [[0, 151.84], [38.72, 59.98], [60.73, 151.84]], \"sentences\": [\"A woman is standing outside in the snow talking to a man.\", \" He is holding a black snow shovel.\", \" He picks up another shovel and starts shoveling the snow.\"]}, \"v_E5FiPYZARLE\": {\"duration\": 189.68, \"timestamps\": [[0, 109.07], [49.32, 52.16], [109.07, 189.68], [129.93, 133.73]], \"sentences\": [\"Four men play beach volleyball while serving, passing and hitting the ball.\", \" A little girl stand behind the players.\", \" Then, the men change sides and continues playing beach volleyball.\", \" A man block the ball and avoid to enter to his side.\"]}, \"v_8iHklV25LaE\": {\"duration\": 29.91, \"timestamps\": [[0, 12.56], [11.96, 29.91]], \"sentences\": [\"Two women are seen standing in a kitchen while the camera pans around to a dark area.\", \" The women are seen walking around and doing dishes while stopping to look and smile into the camera.\"]}, \"v_5rVXCKLihyg\": {\"duration\": 92.0, \"timestamps\": [[0, 38.18], [38.18, 92], [0, 92]], \"sentences\": [\"woman is standing in a living oom talking to the camera and grab a tshirt and put it in an ironing board.\", \" woman is holding an iron and is ironing the t shirt.\", \" woman is ironing a yellow plaid shirt standing in a living room.\"]}, \"v_aS0wGPhD48o\": {\"duration\": 80.03999999999999, \"timestamps\": [[0, 25.61], [24.01, 61.23], [62.03, 80.04]], \"sentences\": [\"A close up shot of nails are shown followed by a coating of several polishes laid on a nail.\", \" More coats of polish are laid out on the nail and the person puts a design going across the nail.\", \" The person puts a fresh coating on top and shows off the final results of all the nails.\"]}, \"v_OMa1i3ITBbo\": {\"duration\": 141.14, \"timestamps\": [[0, 48.69], [45.87, 141.14]], \"sentences\": [\"A man is seen sitting in a car wearing headphones and then begins to speak to the camera.\", \"  He continues speaking while cupping his hands and ends by looking down from the camera.\"]}, \"v_SipyRTPgdfY\": {\"duration\": 22.24, \"timestamps\": [[0, 14.12], [14.23, 18.46], [18.46, 21.12]], \"sentences\": [\"A young man kneels to lift a heavy weight.\", \" Then, the young man lifts the weigh above his head while he kneels.\", \" Suddenly, the young man drops the weight which hit his head, and he falls to the ground.\"]}, \"v_whJ6ESGNoyY\": {\"duration\": 29.56, \"timestamps\": [[0.44, 7.98], [4.29, 9.9], [4.29, 10.64], [22.91, 28.53]], \"sentences\": [\"There is someone walking two small dogs on the pavement.\", \" The dogs walk into the grass to bark at something and keep walking.\", \" While they're walking, they bump their heads together.\", \" The woman walking them tries to get the out of the grass.\"]}, \"v_hSSHf_c1q5I\": {\"duration\": 135.98, \"timestamps\": [[0, 4.08], [4.08, 135.98]], \"sentences\": [\"man and a woman are watching a route map sitting in a table.\", \" a lot of people are preparing themselves to run a marathon in the street while people in the sidewalk are giving them water and cheering them up.\"]}, \"v_ywFa_D5QZ-k\": {\"duration\": 219.78, \"timestamps\": [[0, 6.59], [9.89, 10.99], [54.94, 74.72], [102.2, 118.68], [124.17, 171.43], [195.6, 219.78], [195.6, 200]], \"sentences\": [\"Pictures of landscapes are shown on the screen.\", \" People are sitting around a table eating.\", \" A person is ironing wax onto the bottom of a ski.\", \" She scrapes the wax off onto the floor.\", \" She picks up brushes and brushes the bottom of the ski.\", \" She is outside skiing down a hill.\", \" A brown dog is in the snow next to her.\"]}, \"v_2fMpsSrmeIA\": {\"duration\": 58.7, \"timestamps\": [[0, 9.69], [9.69, 23.48], [23.48, 29.64], [37.28, 58.7]], \"sentences\": [\"A woman is alone at a bar by a pool table playing some pool.\", \" She bends over very seductively and intentionally while she is going for her next shot.\", \" Then she looks over at a few men who are sitting down drinking beer.\", \" She asked them if she is blocking the view by bending over like that, but they are very content with the view that they are being given, she seems to have an entire channel of the same thing in different locations.\"]}, \"v_KR1-rdV18pI\": {\"duration\": 221.94, \"timestamps\": [[0, 39.95], [41.06, 218.61], [142.04, 152.03], [152.03, 218.61], [218.61, 221.94]], \"sentences\": [\"We see a man waterskinng backwards.\", \" The screen hangs to the man going forward and we see him as he skis from the boat.\", \" We see the man sit and do a spin in the water and ski on his butt.\", \" The man then stands and skis.\", \" We then see the screen switch to black.\"]}, \"v_4ACqWG_p1bI\": {\"duration\": 192.29, \"timestamps\": [[0, 28.84], [28.84, 67.3], [67.3, 102.87], [101.91, 192.29]], \"sentences\": [\"A young Asian boy is sitting behind a trap-set smiling frantically in participation of his performance.\", \"Another toddler is then shown having trouble taking off the microphone but isn't successful.\", \"The first boy then comes back and continues playing the drums and the video continues to toggle back in forth between the two.\", \"Finally,the mic is removed and the boy begins moving his head wildly as if he is a rock star and they both continue performing.\"]}, \"v_q6sLCLnTuik\": {\"duration\": 120.42, \"timestamps\": [[0, 7.23], [7.83, 18.66], [19.27, 29.5], [30.1, 80.68], [81.28, 88.51], [89.11, 103.56]], \"sentences\": [\"A hair stylist talks to the camera.\", \" The hair stylist talks to the camera again, now standing by a woman in a hair salon chair.\", \"  The man sections parts of the hair with his comb and hair clips.\", \" Next is blow drying sections of the hair, one by one.\", \" Finally, the hair stylist shows off his work.\", \" The man grabs a small comb and teases the crown area.\"]}, \"v_fD9JNH5FWCk\": {\"duration\": 86.84, \"timestamps\": [[2.17, 36.91], [30.4, 69.47], [57.32, 85.11]], \"sentences\": [\"A young child is seen hula hooping that leads into clips of more children hula hooping.\", \" A woman is seen speaking to the camera while more kids around her play with hula hoops.\", \" The kids continue to play around with the hula hoops showing adults playing as well.\"]}, \"v_DepG0r3JiV4\": {\"duration\": 76.07, \"timestamps\": [[0.38, 3.8], [4.94, 73.03], [20.92, 22.44], [74.55, 76.07]], \"sentences\": [\"The credits of the clip are shown.\", \" A man is holding a racket and speaking.\", \" The man is playing squash with a guy.\", \" The credits of the video are shown.\"]}, \"v_i1CVl-0-gJE\": {\"duration\": 72.75, \"timestamps\": [[0, 12.37], [10.91, 72.75], [32.74, 72.75]], \"sentences\": [\"A man in green sweater is standing next to the bushes and talking to the camera.\", \" The young man rake the dry leaves on the ground.\", \" The young man talk to the camera and then rake the leaves.\"]}, \"v_82cpSdoHdg4\": {\"duration\": 65.04, \"timestamps\": [[0, 20.81], [18.86, 46.18], [42.28, 64.71]], \"sentences\": [\"A girl is seen sitting behind a set of drums and speaking to the camera.\", \" The person is seen hitting the drums in front of her continuously while also looking to the camera.\", \" The person keeps playing and stops in the end to wave to the camera.\"]}, \"v_wdD-UHM8rTg\": {\"duration\": 223.1, \"timestamps\": [[0, 24.54], [36.81, 123.82], [132.74, 177.36], [196.33, 223.1]], \"sentences\": [\"A girl is talking to the camera.\", \" She holds up a violin and a stick.\", \" A boy does the same after her.\", \" They begin playing a song for the camera.\"]}, \"v_CKjHXMoXye4\": {\"duration\": 55.68, \"timestamps\": [[0, 8.35], [8.07, 25.89], [24.22, 55.68]], \"sentences\": [\"The man in black cap is talking to the camera.\", \" The man opened the door and got surprised then he closed the door.\", \" A male athlete run and do a high jump over the pole.\"]}, \"v_QWqEi91fWOQ\": {\"duration\": 180.88, \"timestamps\": [[6.33, 74.16], [46.13, 176.36]], \"sentences\": [\"A woman is seen speaking to the camera and leads into several shots of people playing lacrosse.\", \" The men continue to play with one another as well as interview the camera and leading back to the woman.\"]}, \"v_MtFX7uTHwFQ\": {\"duration\": 234.89, \"timestamps\": [[0, 98.66], [79.86, 234.89]], \"sentences\": [\"A video into leads into several shots of bowlers throwing a ball down a lane and hitting pins.\", \" The people continue to throw balls down the lane while the text interferes and shows off the balls moving around the lane.\"]}, \"v_hi4aLY1ajTY\": {\"duration\": 140.2, \"timestamps\": [[1.4, 38.56], [36.45, 103.75], [100.95, 134.59]], \"sentences\": [\"A small child is seen standing before a pool and leads into her jumping in.\", \" She continues to jump in the pool and swim to adults as well as swim around the pool.\", \" She moves around quickly in the pool and jumps in several times.\"]}, \"v_sgUMHHuAhZg\": {\"duration\": 203.66, \"timestamps\": [[0, 4.07], [0, 203.66], [84.52, 96.74], [113.03, 132.38]], \"sentences\": [\"A flyer for martial arts is displayed.\", \"  The men are fighting in martial arts style.\", \" A man in blue shirt steps in.\", \" The camera scans the audience.\"]}, \"v_yxcikJ3Hp8w\": {\"duration\": 172.11, \"timestamps\": [[0, 55.93], [46.47, 141.99], [141.99, 171.25]], \"sentences\": [\"A large group of cheerleaders are seen walking out on a stage while people watch on the sidelines.\", \" The group begins performing a cheer routine while jumping and flipping all along the stage.\", \" The group continues cheering and ends by holding a finishing pose.\"]}, \"v_dpS_S4Zi2Po\": {\"duration\": 62.02, \"timestamps\": [[0, 28.84], [28.84, 35.04], [35.66, 62.02]], \"sentences\": [\"A young Asian girl smiles at the camera and applies eye shadow while holding a makeup kit.\", \" the camera man pans towards the young Asian girl for a closeup and the Asian girl smiles and falls back away from the camera.\", \" The young Asian girl moves into the camera for a closeup and then continues applying the makeup.\"]}, \"v_5BbHu0WQZqw\": {\"duration\": 118.25999999999999, \"timestamps\": [[0, 118.26], [10.05, 118.26], [17.74, 118.26]], \"sentences\": [\"A woman is sitting down in a chair.\", \" She is getting her legs shaved by someone in front of her.\", \" Two people start shaving her legs.\"]}, \"v_DZx2G-OZAPk\": {\"duration\": 32.07, \"timestamps\": [[0, 15.55], [12.67, 32.07]], \"sentences\": [\"A young adult is seen sitting before a piano and beginning to play with his hands.\", \" He looks away smiling while still playing the instrument and ends with up standing up and smiling at the camera.\"]}, \"v_dAiqJJKezPE\": {\"duration\": 34.13, \"timestamps\": [[0, 2.39], [2.39, 7.34], [7.34, 18.77], [19.97, 34.13]], \"sentences\": [\"A man in black tshirt rolls a tire through an automotive shop.\", \" The man rolls the tire onto a hand jack.\", \" The automotive worker uses the hand jack to positions the tire onto the wheel hub of a car.\", \" The man picks up lug nuts and tightens them onto the wheel hub with his hand.\"]}, \"v_mYHezmI0U6U\": {\"duration\": 136.02, \"timestamps\": [[0, 6.12], [6.12, 23.8], [23.8, 136.02]], \"sentences\": [\"This man is skiing in the snow while holding a selfie stick recording himself.\", \" First he starts at the start line where racers are who participate in skiing competitions.\", \" Then he shows himself in the snow skiing down the snowy slopes.\"]}, \"v_SGiMk9KdOQw\": {\"duration\": 136.63, \"timestamps\": [[0, 11.61], [14.35, 67.63], [75.14, 136.63]], \"sentences\": [\"A group of people are swimming in a pool.\", \" They gather together as people outside the pool talk.\", \" The group volleys  a ball back and forth over a net.\"]}, \"v_m2hiQ9EOUUI\": {\"duration\": 97.62, \"timestamps\": [[0.49, 86.39], [2.93, 21.96], [36.12, 60.03], [66.87, 97.13]], \"sentences\": [\"A young man and a young boy showcase martial arts and tumbling skills on a street sidewalk surrounded by a large crowd of people as a nearby drummer accompanies them.\", \"  The man throws some mock kicks at the boy while the boy tumbles in somersaults in response.\", \"  The boy and man walk forward together using their hands only.\", \"  The boy and man continue to tumble and somersault ending in an eventual hand shake at which point the boy leaves and the man walks over to the drummer.\"]}, \"v_06r6DtoTtSQ\": {\"duration\": 125.95, \"timestamps\": [[0, 73.05], [69.27, 125.95]], \"sentences\": [\"A man is seen speaking to the camera while holding a skateboard and leads into moving the board with his hands and then demonstrating moves.\", \" The man continues moving around on the board and ends with him speaking to the camera.\"]}, \"v_C0t3fbC2RCg\": {\"duration\": 133.21, \"timestamps\": [[0, 10.66], [10.66, 44.63], [44.63, 49.29], [49.29, 129.22], [129.22, 133.21]], \"sentences\": [\"A young boy is standing in a living room with dark brown leather furniture and a woman sitting on a couch with dark brown hair and talking.\", \" The woman hands the boy a brown small pipe, the child puts it in it's mouth and begins blowing into it while the woman is talking, smiling, pointing to the child and bobbing her head.\", \" The child stops blowing on the object and the woman claps, laughs, talks to the child and motions him to take a bow and he does.\", \"The boy puts the object back in his mouth and plays some more and when he's done the woman claps again and takes a bow and the boy blows on the object again and spins a few times and almost falls but he balances on the couch.\", \"The boy then turns to the couch and opens his legs and slides while the woman claps her hands.\"]}, \"v_8wB0BOjuyes\": {\"duration\": 16.23, \"timestamps\": [[0, 16.23], [1.46, 2.43], [6.49, 8.2], [13.55, 16.23]], \"sentences\": [\"Men are playing polo in a field.\", \" The man in white hits the ball.\", \" The man in white hits the ball again.\", \" Both men turn their horses around.\"]}, \"v_pZxteNqdweM\": {\"duration\": 80.4, \"timestamps\": [[0, 32.16], [32.56, 80.4]], \"sentences\": [\"A man is seen speaking to the camera and leads into him pouring ice into a glass as well as various liquids.\", \" He then mixes up the drink while still speaking to the camera and then presenting it in a glass.\"]}, \"v_QGzrtgTrwiQ\": {\"duration\": 170.25, \"timestamps\": [[0, 48.52], [47.67, 133.65], [113.22, 158.33]], \"sentences\": [\"A man is shown performing a long jump in a small frame as leads into him jumping in a large frame.\", \" The man jumps into the sand pit continuously while moving in slow motion.\", \" He moves down several more times while jumping further each time.\"]}, \"v_lQWij22wbNU\": {\"duration\": 32.3, \"timestamps\": [[0, 4.52], [5.49, 22.45], [23.42, 32.3]], \"sentences\": [\"A woman rolls a ball on the ground, and a man kicks it.\", \" Everyone chases the ball, some standing and watching.\", \" They take turns throwing and kicking.\"]}, \"v_shpZ47Mvxfg\": {\"duration\": 179.09, \"timestamps\": [[0, 17.91], [19.7, 42.98], [47.46, 179.09]], \"sentences\": [\"A young woman is playing with her hair in front of the camera.\", \" She then smooths a cream all over her face.\", \" She then applies makeup, including foundation, eye makeup, and lipstick.\"]}, \"v_8onOVVuN_Is\": {\"duration\": 64.45, \"timestamps\": [[0, 8.38], [9.67, 36.09], [38.99, 64.45]], \"sentences\": [\"A woman is running down a field.\", \" She takes a huge leap into the air with each run.\", \" She lands in a pit of sand.\"]}, \"v_HGSZ9_CVuM4\": {\"duration\": 148.47, \"timestamps\": [[4.45, 72.75], [40.83, 141.05]], \"sentences\": [\"A man is seen speaking to the camera holding various bike parts and pointing around a bike.\", \" He continues unscrewing the bike and adding on parts and the camera panning down the side.\"]}, \"v_K7f0co9akMI\": {\"duration\": 191.08, \"timestamps\": [[0, 85.99], [85.03, 191.08]], \"sentences\": [\"Several shots are shown of women playing volleyball back and fourth with one another while many watch on the sides.\", \" The video continues on showing several more clips of the game and the woman moving around the court.\"]}, \"v_p-vfyM7ew04\": {\"duration\": 226.91, \"timestamps\": [[0, 114.59], [107.78, 226.91]], \"sentences\": [\"A person is seen rubbing a piece of soap along a board and moving his hands across to feel the texture.\", \" He uses more tools on the ski to sharpen the blades using his hands.\"]}, \"v_ZLmoqxkCJL0\": {\"duration\": 158.01, \"timestamps\": [[0, 20.54], [20.54, 92.44], [92.44, 112.19], [112.19, 158.01]], \"sentences\": [\"An Asian woman is shown in different pictures wearing different outfits.\", \" She sits down and begins to part her hair and start braiding it, she slowly grabs more and more into her braid.\", \" She ties the braid with a rubber band and then goes on to the next side.\", \" Then she starts to undo both braids and shows how her hair is nice a wavy.\"]}, \"v_GvP6gZbHn30\": {\"duration\": 111.15, \"timestamps\": [[0, 5], [5, 110.04], [110.04, 111.15]], \"sentences\": [\"A man is holding onto a cube with multiple colors like a rubix cube, puts it down, presses a timer and picks it back up.\", \"As soon as he picks it up he begins to turn it around and around attempting to match all the colors on each side.\", \"The man matches all the colors and slams the cube on the table while hitting the timer at the same time.\"]}, \"v_PAiJNr97C6g\": {\"duration\": 122.37, \"timestamps\": [[0.61, 119.31], [0.61, 8.57], [9.79, 68.53], [72.2, 118.09], [118.7, 120.53]], \"sentences\": [\"A snowboard instructor on a snow slope area demonstrates through live example and via talking to the camera how to snowboard on a ski slope.\", \"  A man in goggles, coat and holding a snowboard talks into the camera while standing on a snow covered slope.\", \"  Several clips of different people standing on snow slopes and snow boarding very slow are shown.\", \"  The people snowboarding are then seen on a ski lift, beginning the snowboarding exercise by getting off the ski lift and snowboarding using he ski lift as a catapult.\", \"   The snowboard instructor then returns to talk to the camera , alone, again.\"]}, \"v_et029cxyEOs\": {\"duration\": 108.50999999999999, \"timestamps\": [[0, 104.71], [104.71, 108.51]], \"sentences\": [\"A man is sitting down doing a rubiks cube.\", \" He completes the rubiks cube and sets it on the table.\"]}, \"v_j8i-9T0UeRQ\": {\"duration\": 133.7, \"timestamps\": [[0, 133.7], [33.43, 133.7]], \"sentences\": [\"Highlights from a hurling festival are shown.\", \"  Players are interviewed and then the teams start playing.\"]}, \"v_Pu5p7SC3sqg\": {\"duration\": 28.89, \"timestamps\": [[0, 0.72], [0.72, 7.37], [7.37, 28.89]], \"sentences\": [\"A man wearing a red knit cap is on the roof  removing ice off of the roof with a red snow shovel.\", \" The man taps the ice on the roof with the red shovel hitting the ice.\", \" A pile of snow on the rest of the roof breaks loose and knocks the man off of the roof.\"]}, \"v_rXgC48CLncg\": {\"duration\": 201.97, \"timestamps\": [[0, 180.76], [3.03, 16.16], [17.17, 73.72], [76.75, 176.72], [181.77, 201.97]], \"sentences\": [\"A woman sits in a chair at a salon.\", \"  The man working in the salon cuts off the woman's long hair and puts it in a bag.\", \"  The man combs and cuts the woman's hair as she sits.\", \"  The man dries and styles the woman's short hair.\", \"  The woman looks at her hair and gets up from the chair happy.\"]}, \"v_-nlAKyoyIuU\": {\"duration\": 213.67000000000002, \"timestamps\": [[0, 57.69], [57.69, 107.9], [108.97, 158.12], [158.12, 213.67]], \"sentences\": [\"A small television screen is on the wall and the person zooms in on the video.\", \"On the tv,two men are shown standing in a circle dressed as sumo wrestlers preparing to fight and they eventually end up rolling off.\", \"A person in a blue kimono comes back between them and signals them to begin fighting.\", \"The fight is now over and the man walks off the stage,through the crowd and back to his locker room.\"]}, \"v_1rdecGieY-M\": {\"duration\": 134.54, \"timestamps\": [[0, 134.54], [0, 32.96], [32.96, 134.54]], \"sentences\": [\"A woman and a child are in a kitchen rolling dough to make cookies to bake.\", \" The older woman shows the child how to roll the dough he tries it himself.\", \" She puts a tray down in front of the child and the boy decorates the cookies with sprinkles while she continues to cut cookies and place them on the tray to decorate.\"]}, \"v_zwa44U585FE\": {\"duration\": 143.45, \"timestamps\": [[0, 15.06], [27.97, 80.33], [88.94, 143.45]], \"sentences\": [\"A couple of men are shown in a backyard.\", \" They are playing a game of croquette.\", \" They hit the balls, trying to get them through the small loops.\"]}, \"v_eUxFTEeNIGg\": {\"duration\": 84.8, \"timestamps\": [[0, 3.39], [5.51, 64.02], [38.58, 46.64], [65.3, 78.44], [79.29, 84.8]], \"sentences\": [\"We see an opening title screen.\", \" A man jumps rope in a boxing ring in a mall as people watch.\", \" The man loses his rhythm and has to start over two times.\", \" The man stops jumping and his coach pulls the tape off his hands.\", \" We then see the ending screen.\"]}, \"v_mUsjm4oBBvw\": {\"duration\": 232.15, \"timestamps\": [[0, 60.36], [60.36, 168.31], [152.06, 232.15]], \"sentences\": [\"A person is seen sitting in a chair speaking on the phone while another man rubs his neck and blow dries his hair.\", \" The man then takes a razor and cuts along the man's hair while he watches in the mirror and another records him on the side.\", \" The man continues cutting and styling his hair while they all speak to one another and ends with him speaking to the camera.\"]}, \"v_wDw3i5ODGWA\": {\"duration\": 148.96, \"timestamps\": [[0, 11.17], [11.17, 52.88], [52.88, 111.72], [111.72, 148.96]], \"sentences\": [\"In the back of the car, in the trunk a man is using a screwdriver to fix his board.\", \" Then, he begins to ride down the street in the concrete for a while moving down casually.\", \"  Another man skating down the side walk gets off and on to the street.\", \" Two men standing in the street with their board, one of them starts skating, goes off into the dirt and then back on the road, until he finally stops and falls over on the grass.\"]}, \"v_qy-LbstiMYg\": {\"duration\": 192.77, \"timestamps\": [[0, 192.77], [122.41, 125.3], [122.41, 192.77], [178.32, 192.77]], \"sentences\": [\"A person is riding a dirt bike on a dirt trail.\", \" They stop on the track.\", \" They keep going around the track.\", \" Pictures of the dirt bike are shown.\"]}, \"v_WEjMCo8OfjE\": {\"duration\": 169.55, \"timestamps\": [[0, 13.56], [23.74, 115.3], [120.38, 169.55]], \"sentences\": [\"A man is walking through deep snow toward a house.\", \" He is shoveling the snow, then is shown on skis in the yard.\", \" The people do little stunts, skiing on the rails and benches.\"]}, \"v_vL8Hy6lcnF8\": {\"duration\": 223.31, \"timestamps\": [[0, 222.19], [75.92, 196.51]], \"sentences\": [\"A choreographed exercise routine is performed.\", \"  They spin, dance, and shake their hips.\"]}, \"v_qXi05KUFOSk\": {\"duration\": 82.52, \"timestamps\": [[2.06, 44.15], [41.67, 81.7]], \"sentences\": [\"Several people are seen kneeling down on the floor talking to one another while the camera pans around them working on the floor.\", \" The men continue to cut tiles and lay them down as well as cutting up old carpet and moving it around.\"]}, \"v_VYOKYSmoyk0\": {\"duration\": 79.69, \"timestamps\": [[0, 5.58], [5.98, 9.56], [14.34, 41.44], [41.84, 79.69]], \"sentences\": [\"A woman stands holding a hammer.\", \" She attempts to hit a yellow ball through a hole.\", \" A man grabs the hammer and attempts to hit a blue ball through the same hole the woman tried to get the yellow ball through.\", \" The woman hands the camera to the man and he films her hitting a red ball towards the hole.\"]}, \"v_Xxng1g1PrdE\": {\"duration\": 203.43, \"timestamps\": [[0, 13.22], [13.22, 200.38], [90.53, 105.78], [130.2, 138.33]], \"sentences\": [\"Water flows on a river that pass through a forest.\", \" People on boats are rafting down the river.\", \" A boy stands and jumps high on a boat.\", \" A young man stand on the border of a boat and jumps to the water.\"]}, \"v_hryx3zm06U8\": {\"duration\": 112.47999999999999, \"timestamps\": [[0, 21.37], [18.56, 91.11], [91.11, 112.48]], \"sentences\": [\"A man wearing a hat is seen speaking to the camera and leads into him cutting a piece of wood on a table.\", \" More shots are shown of men laying down boards in various areas as well as layer plaster on the walls.\", \" Then men continue putting tiles down over the plaster while measuring it out and putting the objects back down.\"]}, \"v_QCeGGnd4QB0\": {\"duration\": 203.9, \"timestamps\": [[0, 197.78], [51.99, 115.2], [115.2, 203.9]], \"sentences\": [\"Four people are shown playing a tennis match passing the object back and fourth with tennis rackets.\", \" One side serves to the other several times with the object going out of bonds and being thrown back in.\", \" They play more of the match with one diving in and shake hands when the match is over.\"]}, \"v_8inrvRctXQ0\": {\"duration\": 197.39, \"timestamps\": [[0, 71.06], [70.07, 197.39]], \"sentences\": [\"Two men are seen holding tennis rackets and hitting a ball back and fourth to one another off the wall.\", \" The men look back behind the glass wall and continue playing tennis while laughing and smiling.\"]}, \"v_0PmrImNqA2w\": {\"duration\": 54.29, \"timestamps\": [[0, 4.89], [5.16, 12.22], [12.22, 18.73], [19, 42.62], [42.89, 45.87], [45.87, 49.13], [49.4, 54.29]], \"sentences\": [\"We see an opening screen with four images and people painting.\", \" We we a blue house with a wood fence.\", \" We see a lady standing in front of the house talking.\", \" We see the lady using an power sprayer to paint the fence white.\", \" We see the lady talking.\", \" We then see the before and after image of the fence.\", \" The ending screen has the four images again.\"]}, \"v_BLTOTjVYiuE\": {\"duration\": 18.81, \"timestamps\": [[0, 18.81], [0.75, 18.81], [0.56, 18.81]], \"sentences\": [\"man with a usa identification on his chest is running in a racetrack and make a long jump.\", \" mena re sitting on chairs on sides of he race track.\", \" people are on stands around the field.\"]}, \"v_JGuVc7z_YOQ\": {\"duration\": 89.17, \"timestamps\": [[0, 89.17], [2.23, 89.17], [7.58, 89.17], [78.47, 89.17]], \"sentences\": [\"Several people are standing on a green field.\", \" They kick a ball back and forth.\", \" Three people are standing on the sidelines.\", \"  They then walk around aimlessly.\"]}, \"v_9VWoQpg9wqE\": {\"duration\": 128.01, \"timestamps\": [[1.92, 4.48], [8.32, 10.88], [11.52, 60.17], [35.2, 37.76], [60.81, 85.77], [87.05, 127.37]], \"sentences\": [\"The credits of the clip are shown.\", \" Ladies stand behind a counter and review papers.\", \" Ladies groom, wash, and towel dry dogs.\", \" A guy waits in the waiting room with his pet.\", \" A pet store and its van have pet's supplies and pets.\", \" The credits of the video are shown.\"]}, \"v_jzNdWjZm92s\": {\"duration\": 194.1, \"timestamps\": [[50.46, 157.22], [67.93, 157.22], [97.05, 157.22]], \"sentences\": [\"People are sitting in a raft going down a river.\", \" They start paddling with their oars.\", \" They fall down a waterfall a few times.\"]}, \"v_xDD9rWISPpk\": {\"duration\": 12.84, \"timestamps\": [[0, 12.84], [3.4, 4.43], [3.4, 12.84]], \"sentences\": [\"A man is running down the street wearing stilts.\", \" He turns around and runs the other direction.\", \" He runs down the street.\"]}, \"v_5koLOwu786I\": {\"duration\": 60.63, \"timestamps\": [[0, 13.34], [13.04, 49.71], [50.02, 60.63]], \"sentences\": [\"Justin Beiber is standing in front of the mirror shaking and towel drying his hair.\", \"After he grabs a silver blow dryer and continues to shake his hair until its done.\", \"As he continues,a small circle comes off the screen with words as the boy begins to look into the mirror.\"]}, \"v_y6sx0u3MYFo\": {\"duration\": 9.41, \"timestamps\": [[0, 6.21], [6.16, 9.4]], \"sentences\": [\" A man holds a disc on his right hand, then he spins and throw the disc.\", \" Then, he talks to somebody, while people watch under a tent.\"]}, \"v_qoVYcplxgFE\": {\"duration\": 68.76, \"timestamps\": [[0, 14.78], [13.41, 52.94], [38.5, 66.35]], \"sentences\": [\"A gymnast is seen standing on a beam with her arms out to the side.\", \" She holds her balance while the camera follows her around.\", \" She moves her feet slightly and sticking her leg out in front.\"]}, \"v_sq0cKsoX7mg\": {\"duration\": 11.56, \"timestamps\": [[0, 11.51], [0, 3.7], [3.76, 11.56]], \"sentences\": [\"Two women are practicing baton twirling and dancing in a indoor gym with other athletes in the background.\", \"  A woman performs a dance requiring her to spin and twist on her feet which causes her to fall to the floor while her friend watches on and laughs.\", \"  The friend who laughs then performs a complex baton twirl coupled with a simultaneous dance move which causes her to lose balance at which point both women laugh.\"]}, \"v_e4bcTIoiMIk\": {\"duration\": 209.47, \"timestamps\": [[0, 53.41], [54.46, 75.41], [76.46, 184.33], [184.33, 198.99]], \"sentences\": [\"A man and a boy scout talk in a kitchen, then the boy scout shows an electric trimmer, a machete and a big knife, and the man shows a rod and a small knife.\", \" Then, the boy shows his hand bleeding, after the man wraps the bleeding hand.\", \" The adult shows to the boy scout to trim a wood rod with a knife who again cut a finger, and the man wraps the finger.\", \" After, the man and the boy scout play with a black dog.\"]}, \"v_tXLvsYsWCoY\": {\"duration\": 70.5, \"timestamps\": [[0, 15.16], [9.16, 52.52], [37.72, 70.5]], \"sentences\": [\"The shirtless man are standing in the field with their drums.\", \" The drummers started to drum their drums and walk.\", \" The drummers walk to form a line and then the other drummers came up to them and they continue to play drums.\"]}, \"v_6TUA9ipKk9I\": {\"duration\": 65.57, \"timestamps\": [[0, 10.82], [11.15, 15.74], [15.74, 19.67], [19.34, 30.16], [30.16, 43.61], [44.59, 50.82], [50.82, 65.57]], \"sentences\": [\"The video shows two men in swimming trunks, overlooking a large pool.\", \" The camera zooms in on one of the men's feet.\", \" The video then pans out showing both men facing backwards.\", \" They then both do a back flip into the pool.\", \" The video replays the men's performance.\", \" Audience members are shown cheering.\", \" The video ends showing one of the men in the back as others congratulate him.\"]}, \"v_tCfu0LplM64\": {\"duration\": 197.89, \"timestamps\": [[14.84, 90.04], [22.76, 73.22], [102.9, 152.38]], \"sentences\": [\"A man is sitting behind a table.\", \" He has a little brush and starts shining his shoes.\", \" He puts the shoes on his feet.\"]}, \"v_xnCw4tvy0uQ\": {\"duration\": 225.86, \"timestamps\": [[0, 225.86], [1.13, 46.3], [46.3, 225.86]], \"sentences\": [\"An unseen  person snow slides on a snow covered slope and then tethers another person to themselves by rope and the two slide together on the snowy slopes.\", \"  A persons feet and the bottom of their legs are tracked going down a steep snow covered slope.\", \"  A little girl in a pink jacket is seen in a inflatable snow sliding device and begins to go down the hill as well tethered to the person who was alone at first and who is sliding in another device.\"]}, \"v_-7wfTI8Qv1Q\": {\"duration\": 8.08, \"timestamps\": [[0, 3.96], [4.2, 8.08]], \"sentences\": [\"Three kids are swinging on an indoor swing.\", \" They swing over the sand.\"]}, \"v_-qcPtBHelmc\": {\"duration\": 134.7, \"timestamps\": [[18.18, 25.59], [29.63, 63.31], [63.31, 72.06], [76.78, 82.84], [86.21, 103.04], [106.41, 126.62]], \"sentences\": [\"A woman throws a frisbee for the dog to catch in a backyard.\", \" The woman raise a feet for the dog to jump over and catch a frisbee.\", \" Then, the woman throws the frisbee and the dog runs to catch it.\", \" After, the dog pulls a frisbee from the hand of the woman.\", \" The dog pass between sticks planted in the ground.\", \" Next, the dog pass a tunnel, then sticks.\"]}, \"v_6DzBNkTen1g\": {\"duration\": 80.76, \"timestamps\": [[0, 31.9], [36.34, 80.76]], \"sentences\": [\"A woman in a black shirt tries to hit a pink pinata.\", \" She goes over and talks to people standing next to it.\"]}, \"v_C-6kvesNmU4\": {\"duration\": 40.0, \"timestamps\": [[0, 1.4], [1.6, 30.2], [30.4, 40]], \"sentences\": [\"First person of a man in a canoe in a body of water near waterfalls.\", \" Video of two other canoes nearer to the falls.\", \" The camera turns around to show the man recording the video.\"]}, \"v_C8Toxe4fE30\": {\"duration\": 7.52, \"timestamps\": [[0, 0.11], [0.08, 4.29], [4.36, 7.52]], \"sentences\": [\"We see a flash of an image of a standing man.\", \" We see the man spin and throw the discus.\", \" The man finishes and looks at the discus.\"]}, \"v_JQcN61A1MEU\": {\"duration\": 65.43, \"timestamps\": [[0, 2.94], [2.94, 14.72], [14.72, 56.27], [56.27, 65.43]], \"sentences\": [\"A black screen is pictured and white words begin to bounce down on the screen.\", \"After,a group of young men are pictured playing indoor soccer.\", \"The Black team's forwards takes the ball and begins dribbling it to make a goal and he succeeds and it is replayed in slow motion.\", \"Once completed,a black screen is pictured and a Youtube Subscribe button is posted.\"]}, \"v_akJbB6LWP34\": {\"duration\": 55.95, \"timestamps\": [[0, 55.95], [0, 13.43], [13.43, 16.23], [16.23, 55.95]], \"sentences\": [\"A young team of girls is getting coached during a practice for basketball and the girls are working on their shots.\", \" A coach is standing talking to a small group of girls who are playing basket ball.\", \" The coach gets the ball passed to her.\", \" The girls are practicing their layups together and shooting the ball into the net.\"]}, \"v_itgR5a-hH_o\": {\"duration\": 214.57999999999998, \"timestamps\": [[0, 214.58], [9.66, 38.62], [153.42, 160.93]], \"sentences\": [\"A man is smiling and playing a piano.\", \"  The camera shows all the keys inside the piano as he plays.\", \" The camera pans to the Yamaha on the wall.\"]}, \"v_lfH_S2LTEXA\": {\"duration\": 218.29, \"timestamps\": [[0, 15.28], [16.37, 41.48], [41.48, 46.93], [48.02, 218.29]], \"sentences\": [\"A man wearing a blue t-shirt describes cliff climbing.\", \" The cliff climber demonstrates some climbing moves on a climbing wall.\", \" A girl in a white-t-shirt demonstrates some climbing techniques on the climbing wall.\", \" The climber in the blue t-shirt gives more instruction and demonstrates more climbing techniques on the climbing wall.\"]}, \"v_9IwS7pfJXu4\": {\"duration\": 211.09, \"timestamps\": [[0, 38], [41.16, 45.38], [66.49, 185.76], [189.98, 211.09]], \"sentences\": [\"A group of people are seating around a table covered in trays filled with vegetables, meats and cheeses.\", \" They talk about how to make a dish.\", \" The people are shown gathered, mixing, pulverizing, and cooking the ingredients.\", \" They then plate the food.\"]}, \"v_JW0VZ5NoC8A\": {\"duration\": 124.09, \"timestamps\": [[0, 24.82], [29.16, 85.62], [77.56, 119.12]], \"sentences\": [\"A close up of a pool table is shown with a person standing next to it.\", \" Several clips are then shown of people playing pool all around the table.\", \" People perform tricks while laying on the table, doing tricks, as well as kissing on one another.\"]}, \"v_0HhNhRExwSQ\": {\"duration\": 133.86, \"timestamps\": [[2.01, 50.87], [45.51, 133.19]], \"sentences\": [\"A close up of a set of chains is shown as well as a small group of people getting ready and walking down the side of a cliff.\", \" The people speak to the camera while taking turns climbing up the ledge and sitting in the road in the end.\"]}, \"v_8yeUJm0Pl24\": {\"duration\": 60.65, \"timestamps\": [[0, 15.77], [17.29, 46.4], [38.51, 58.53]], \"sentences\": [\"Several people are seen celebrating with one another and leading into a game of ping pong.\", \" People are shown cheering with one another as well as playing more ping pong.\", \" People are seen rapping on stage and leading into more clips of beer pong.\"]}, \"v_8ZA8UGBEx74\": {\"duration\": 104.65, \"timestamps\": [[0, 31.4], [32.97, 88.43], [87.91, 104.65]], \"sentences\": [\"A couple of woman are dancing on a wooden floor.\", \" Lights flash as they spin around, dancing together.\", \" They continue dancing throughout, wearing heels as they go side to side.\"]}, \"v_zLeCGU8SVVc\": {\"duration\": 104.1, \"timestamps\": [[0, 14.05], [15.09, 85.36], [87.44, 104.1]], \"sentences\": [\"A row of girls bend down to the gymnasium floor.\", \" They shake their pom poms before getting up and dancing as they do a cheer.\", \" They drop their pom poms and put their arms up at the end.\"]}, \"v_00ZRoqhhb8g\": {\"duration\": 72.56, \"timestamps\": [[0, 8.71], [9.8, 20.32], [22.13, 72.56]], \"sentences\": [\"A group of people in winter gear gather as a man runs down a track.\", \" He throws a javelin as far as he can.\", \" The scene repeats several times.\"]}, \"v_CjuTFlxFvH0\": {\"duration\": 152.67000000000002, \"timestamps\": [[0, 22.14], [23.66, 152.67]], \"sentences\": [\"A person is seen standing on his hands on a wooden box while wearing stilts on his feet.\", \" He is then seen jumping up and down in a large pit while also performing flips and tricks.\"]}, \"v_HZ0tf9Cp340\": {\"duration\": 155.39, \"timestamps\": [[0, 10.1], [0, 155.39], [146.84, 155.39]], \"sentences\": [\"man wearing a red shirt is making a shot put on a large green field.\", \" diferent men are in the same field making shot puts.\", \" three men are in the diamond in the field doing marks on the floor.\"]}, \"v_6DYQHmsezUw\": {\"duration\": 96.36, \"timestamps\": [[0, 19.75], [19.75, 57.34], [57.34, 96.36]], \"sentences\": [\"A wave moves a barrel in an inner tube up out of the water near three people.\", \"  A man and woman in front of the barrel are moving sideways in the water near a man with legs exposed.\", \" A woman screams due to waves.\"]}, \"v_wvmuUuLOoEQ\": {\"duration\": 237.35, \"timestamps\": [[0, 23.73], [23.73, 34.42], [34.42, 237.35]], \"sentences\": [\"people are inside a van talking and atchnig a car passing next to them.\", \" men are in a restaurant serving breakfast and orange juice from a machine.\", \" men are in a snowy park pass the barrier and sits on cableway to slide down the slope snowboarding.\"]}, \"v_j5M9l0qxwnU\": {\"duration\": 79.51, \"timestamps\": [[0, 16.7], [17.49, 71.95], [73.94, 79.51]], \"sentences\": [\"Two men are fencing inside a gym.\", \" They stab and jab at each other as they fence.\", \" They walk away from each other as they finish the fight.\"]}, \"v_tN1_lOJlUlc\": {\"duration\": 182.17, \"timestamps\": [[0, 136.63], [62.85, 182.17]], \"sentences\": [\"A man wearing a hat and glasses is seen sitting before a set of bongo drums and speaking with a man holding a guitar behind him.\", \" The man then plays the drums while a band of people play behind him and end with him stopping and standing up.\"]}, \"v_nw32dno_RcM\": {\"duration\": 34.97, \"timestamps\": [[0, 34.97], [12.41, 13.81], [19.58, 21.51]], \"sentences\": [\"People pedal in static bikes in a gym.\", \" A man raise his left hand and touches his head.\", \" Also, a woman rises the left hand and touches her head.\"]}, \"v_dea_92hDJnU\": {\"duration\": 214.25, \"timestamps\": [[7.5, 24.64], [25.71, 46.06], [47.14, 68.56], [69.63, 134.98], [136.05, 155.33], [156.4, 175.69], [176.76, 214.25]], \"sentences\": [\"A veterinarian speaks to the camera while a cat sits on her desk.\", \" The cat leaves the desk and the vet continues speaking.\", \" The cat returns and the vet holds its paw.\", \" The vet holds claw scissors in her hand and a vet assistant stops by her desk to hold the cat as the vet cuts the claws of he cat.\", \" The vet sits on a chair with the cat in her lap.\", \" She continues cutting the claws of the cat.\", \" The cat and vet return to stand by her desk and the cat eats some food from a can.\"]}, \"v_doZb3RlLSts\": {\"duration\": 223.66, \"timestamps\": [[0, 78.28], [73.81, 212.47]], \"sentences\": [\"A man in black shirt is placing a red mat on the floor, while another man in white shirt helped him, he cut and measure the mat and taped them.\", \" Then the two men install the gray carpet, they cut and measure and flatten the carpet as they install it, then vacuum the carpet when they were done.\"]}, \"v_CRdgzvZxB8A\": {\"duration\": 74.21000000000001, \"timestamps\": [[0.37, 2.97], [3.34, 60.11], [60.48, 74.21]], \"sentences\": [\"The credits of the clip are shown.\", \" A man talks while sitting in a kayak boat.\", \" The man uses the paddle to ride the body of water.\"]}, \"v_bXApJtAf6Qo\": {\"duration\": 127.62, \"timestamps\": [[0, 65.72], [66.36, 127.62]], \"sentences\": [\"Several people are seen sitting under water wearing scuba gear and move around together slowly along the ocean.\", \" The people continue moving along under the water while grabbing each other's hands and moving slowly.\"]}, \"v_-npRRmY2wBs\": {\"duration\": 114.66, \"timestamps\": [[0, 110.65], [3.44, 110.65], [111.22, 114.66]], \"sentences\": [\"People are standing in a pen.\", \" A bull is chasing them around.\", \" A man drinks beer from a plastic cup.\"]}, \"v_LGS_yzsScfw\": {\"duration\": 166.7, \"timestamps\": [[10.84, 52.51], [52.51, 81.68], [75.85, 104.19]], \"sentences\": [\"A man takes a tire off of a semi truck.\", \" He kicks the tire behind it several times.\", \" He takes the tire behind it off as well.\"]}, \"v_7X_wgaRaJYQ\": {\"duration\": 144.3, \"timestamps\": [[0, 3.61], [3.61, 137.81], [5.05, 48.34], [48.34, 71.43], [71.43, 94.52], [94.52, 137.09], [137.09, 144.3]], \"sentences\": [\"We see the opening title on the screen.\", \" A lady is swimming in a large pool.\", \" The lady is dipping in and out of the water.\", \" The lady is sculling and tipping in the water.\", \" The lady then works on timing.\", \" We see her do 2 trokes and scull.\", \" The credits appear on the black screen.\"]}, \"v_pnEYhDVXVJ0\": {\"duration\": 102.12, \"timestamps\": [[0, 3.06], [3.06, 14.3], [14.81, 64.34], [65.36, 70.97], [71.49, 87.31], [88.85, 98.55], [100.59, 102.12]], \"sentences\": [\"We see a bathroom sink and counter.\", \" A person grabs contacts lens.\", \" The person opens their eye and puts the contact lens in their eye.\", \" The man then washes the container.\", \" We then see a lady insert contact lenses.\", \" The fist person adjusts their contact.\", \" We then see a closing screen.\"]}, \"v_Ihmu18WVMpk\": {\"duration\": 182.37, \"timestamps\": [[0, 172.34], [172.34, 175.99], [175.99, 182.37]], \"sentences\": [\"There are various men and different teams playing on various different courts with spectators watching.\", \" A player with a white shirt and the number 9 is cheering as he runs on the court and high fives another man wearing the number 6.\", \"The clip resumes with the last two teams still playing.\"]}, \"v_-TuxT19bogQ\": {\"duration\": 41.33, \"timestamps\": [[0, 7.44], [7.44, 16.12], [16.12, 29.14], [29.14, 41.33]], \"sentences\": [\"There is a lacrosse game going on on a really big field.\", \" There are many viewers in attendance to watch the games, one of them is recording it.\", \" The teams are wearing green and white stripes and the other blue and white.\", \" The coaches are on the sidelines of the field watching the players as they go.\"]}, \"v_j4Ru2L4u0Qk\": {\"duration\": 91.37, \"timestamps\": [[0.91, 87.26], [0.91, 91.37]], \"sentences\": [\"This man is shown hitting the ball while it is on the ground and he is making it go far in the air.\", \" He is wearing a blue and white outfit.\"]}, \"v_y8RpTBtGG1g\": {\"duration\": 37.57, \"timestamps\": [[0, 37.57], [9.77, 23.29], [0, 23.29], [18.22, 20.66]], \"sentences\": [\"A kid in blue shorts is vacuuming the floor.\", \" A kid in a red shirt is playing on a banana chair.\", \" There is a white dog next to the boy.\", \" The boy in blue shirts picks up the vacuum and sets it on top of the kid in a red shirt.\"]}, \"v_Ggtcmy29TxE\": {\"duration\": 153.14, \"timestamps\": [[7.66, 16.08], [70.44, 117.91], [130.17, 145.48]], \"sentences\": [\"A man is under water wearing goggles.\", \" A woman goes to the bottom of the pool and lays on her back.\", \" A man lays on the bottom of the pool.\"]}, \"v_3TxZTZEEg44\": {\"duration\": 156.81, \"timestamps\": [[0, 58.8], [57.23, 156.81]], \"sentences\": [\"A man is seen speaking to the camera while holding a tennis racket and leads into shots of him hitting the ball with another on a field.\", \" He demonstrates how to properly hit the ball with another while leading back into him speaking to the camera.\"]}, \"v_1PQiq8zajCE\": {\"duration\": 87.12, \"timestamps\": [[0, 57.5], [6.53, 57.5], [47.92, 57.5], [64.47, 81.89]], \"sentences\": [\"Mike Tyson is wearing a blind fold.\", \" He throws several darts at a board.\", \" He removes the blind fold.\", \" He scored very well on the board.\"]}, \"v_8TGG-FZx0cc\": {\"duration\": 165.65, \"timestamps\": [[0, 1.66], [1.66, 30.65], [31.47, 90.28], [91.11, 165.65]], \"sentences\": [\"A pot of water boils on a stove.\", \"  A person shows us a package of spaghetti then adds the spaghetti to the boiling water.\", \" The man stirs the spaghetti in the pot.\", \" The man drains the spaghetti and rinses it before putting it into a bowl.\"]}, \"v_rrc9Ph5juXM\": {\"duration\": 213.35, \"timestamps\": [[10.67, 39.47], [39.47, 56.54], [56.54, 92.81], [93.87, 133.34], [135.47, 209.08]], \"sentences\": [\"A person put butter in a pot, then add sugar and milk and warm it in a water bath.\", \" Then, the person put flour, baking power and cocoa power in a big bowl, then filter the mix in a sieve.\", \" After, the person beat two eggs and add the solids ingredients and mix.\", \" Next, the person pour the mixture in a cake tray and close with aluminum paper, and then cook it in a covered water bath.\", \" When the cake is done, the person covers it with a mix made of condensed milk, cocoa power and oil.\"]}, \"v_vXcfhKnUjRc\": {\"duration\": 232.36, \"timestamps\": [[3.49, 52.28], [54.61, 161.49], [155.68, 227.72]], \"sentences\": [\"A large group of people are seen standing next to one another with one walking into frame.\", \" The men then begin playing together on a drum in front of them.\", \" The men continue to play the drums together and end by one walking out of frame and the others speaking to one another.\"]}, \"v_TtAEG3yXDnI\": {\"duration\": 105.16, \"timestamps\": [[1.05, 35.76], [33.13, 100.96]], \"sentences\": [\"A person is seen spinning around on a set of uneven bars and moving back and fourth.\", \" The woman jumps down and is seen again and then continues jumping around while showing her hands in the end.\"]}, \"v_DvIng_zQPyY\": {\"duration\": 199.95, \"timestamps\": [[0, 3], [4, 182.95], [92.98, 98.97], [161.96, 168.96], [188.95, 199.95]], \"sentences\": [\"Two teams of people stand on a gymnasium floor as people watch form the bleachers.\", \" We see a game of dodge ball being played.\", \" A referee walks on the floor and tells a player something.\", \" A referee walks to a person on the right and tells them they are out.\", \" a person in white on the right cheers and the blue team huddle up.\"]}, \"v_Adjpq4A5WtI\": {\"duration\": 103.2, \"timestamps\": [[0, 103.2], [2.58, 72.24], [72.24, 99.07], [99.07, 103.2]], \"sentences\": [\"A young man was playing the piano.\", \" He continually played the piano with fast and intense.\", \" He started to play slower and then stopped.\", \" He started to turn away from the piano.\"]}, \"v_XoFikALe8Q0\": {\"duration\": 184.72, \"timestamps\": [[0, 5.54], [5.54, 7.39], [7.39, 24.01], [24.01, 184.72]], \"sentences\": [\"The scene is the Earth and space.\", \"  There is a green vehicle that says Go Green on it.\", \" There are several cleaners and a car being cleaned.\", \" There is an advertisement for Go Green car cleaning.\"]}, \"v_GHBeLaysVaA\": {\"duration\": 136.14, \"timestamps\": [[2.72, 63.3], [40.84, 136.14]], \"sentences\": [\"A large group of people are seen moving out onto a large stage and performing a dance routine with one another.\", \" The people continue dancing around one another and end by making a pose.\"]}, \"v_xiICsWY0xOk\": {\"duration\": 111.97, \"timestamps\": [[0, 15.12], [15.12, 31.91], [31.91, 56.54], [56.54, 78.94], [78.94, 111.97]], \"sentences\": [\"Four glasses of Honey Ginger lemonade are sitting on a cooking board.\", \"Next,the cooking board is shown and it has two lemons,ginger,and a bottle of honey.\", \"A blue knife is then taken and the person begins to cut the ginger.\", \"Next,the lemon is squeezed over the cub and honey is put in the mason jars.\", \"Now the water is boiled and put it the jars and slices of the lemons are added and stirred.\"]}, \"v_pTmlOZY0e4c\": {\"duration\": 124.67, \"timestamps\": [[0, 2.49], [2.49, 76.67], [76.67, 124.67]], \"sentences\": [\"A blue and red hombre screed with the red on the bottom appears with text that read \\\"ROPE SKIPPING Summer 2013\\\".\", \" Three young girls named Terka, Ivet, and Iva have jump ropes and a camera on a tripod and are outdoors near a building taking turns rope jumping either alone, 2 at a time, or all together as they perform different tricks and not just basic rope jumping.\", \"Blooper clips begin to play showing them making mistakes, falling and laughing, then a black screen appears and say's \\\"THANKS FOR WATCHING\\\".\"]}, \"v_eZbdiuUu0S8\": {\"duration\": 193.68, \"timestamps\": [[7.75, 186.9], [65.85, 118.14], [119.11, 193.68]], \"sentences\": [\"A man submerged in a pool of water, except for his head, begins to talk to a camera using hand gestures.\", \" A second man enters the pool and begins to talk to the camera as well while submerged and bobbing in the water with a yellow volley ball in hand.\", \" The men alternate turns talking while in the water before a black and white graphic appears.\"]}, \"v_kuv1yEeNQzQ\": {\"duration\": 206.98, \"timestamps\": [[2.07, 35.19], [35.19, 87.97], [89, 132.47], [133.5, 146.96], [146.96, 172.83], [176.97, 203.88]], \"sentences\": [\"People plays beach soccer in front the sea.\", \" Two teams play soccer beach, and players scores while men hug to celebrate.\", \" Then, the teams continue playing and scoring close to the goal area.\", \" A player wearing a black t-shirt kick the ball to move in an elliptical trajectory and scores.\", \" After, the teams continue playing and scoring and the players wearing red t-shirt win and receives a trophy.\", \" Teams play beach soccer in the beach in a competition.\"]}, \"v_hhQ1Xbytds4\": {\"duration\": 60.23, \"timestamps\": [[0, 60.23], [15.96, 20.78]], \"sentences\": [\"People tear off shingles of the roofs of two buildings.\", \" People and cars pass on front the building.\"]}, \"v_701qhmCLPxU\": {\"duration\": 36.02, \"timestamps\": [[0, 9.54], [9.54, 30.61], [30.61, 36.02]], \"sentences\": [\"A girl raise  the left leg on a rope and bounce while people watch from the bleachers.\", \" Then, the girl stands on the rope and jump on her legs, and touches the rope with the body and buttocks.\", \" At the end, the girl jumps high, make a flip and jump on the floor.\"]}, \"v_k7MXH55q28U\": {\"duration\": 189.38, \"timestamps\": [[0, 18.94], [17.99, 45.45], [45.45, 71.97], [71.02, 106.05], [106.05, 142.98], [142.04, 189.38]], \"sentences\": [\"A male is attached to a harness and has one of his hands on an indoor rock climbing wall.\", \"As the man is still holding on,he describes how the hooks work and clips it on to the rope.\", \"Once the rope is inside the hook,he begins moving up the wall but shortly after he stops and begins talking.\", \"The male then begins talking about the clip again and goes back up the wall.\", \"As he progresses,there are hooks everywhere on the wall and when he gets near them,he puts his rope inside of it for support and safety.\", \"The man continues on with this routine until he finally reaches the top and a warning is flashed across the bottom.\"]}, \"v_Cqbs_wM3oc4\": {\"duration\": 15.05, \"timestamps\": [[0, 14.45], [0, 14.22], [12.56, 15.05]], \"sentences\": [\"A man is sitting down in a chair.\", \" He is playing a saxophone.\", \" People are walking in front of him into a building.\"]}, \"v_fU-kGMQ68jg\": {\"duration\": 201.81, \"timestamps\": [[5.05, 81.73], [72.65, 196.76]], \"sentences\": [\"A picture of people tubing is shown followed by large groups of people riding tubes down a snowy hill.\", \" The people continue moving down the hill and end by standing up and walking around in the end.\"]}, \"v_t9j3GNVm8jw\": {\"duration\": 215.64, \"timestamps\": [[0, 54.99], [50.68, 149.87], [146.64, 209.17]], \"sentences\": [\"A young man is seen speaking to the camera and holding up an instrument.\", \" The man then begins playing the saxophone while stopping to demonstrate his movements.\", \" The man continues on playing while looking away from the camera and pointing.\"]}, \"v_WglqrQ9uR-A\": {\"duration\": 212.51, \"timestamps\": [[0, 36.13], [34, 161.51], [161.51, 192.32], [205.07, 212.51]], \"sentences\": [\"Two men wearing a helmet are seen walking down a street and are then shown riding boards.\", \" The people continue to ride the boards down a hill while the camera pans around himself as well as the area around them.\", \" One rider shows blood coming down his knee as well as his helmet and the cameraman shows a scar he has as well.\", \" He then shows off his shoes moving around in circles.\"]}, \"v_gzVpwbiB9fE\": {\"duration\": 34.34, \"timestamps\": [[0, 15.28], [15.45, 21.98], [21.98, 26.1], [26.27, 34.34]], \"sentences\": [\"A young man stands at the far end of a tennis court hitting balls across the net.\", \" A tennis ball hits the court and splits in half on impact.\", \" The camera man retrieves the ball and show it to the camera.\", \" The tennis player crosses the court and takes the split tennis ball.\"]}, \"v_T3bTwmccIEQ\": {\"duration\": 112.9, \"timestamps\": [[0, 12.42], [14.68, 55.88], [59.27, 112.9]], \"sentences\": [\"Three men are walking down a sidewalk.\", \" They pick up a canoe and drive it to the water.\", \" They canoe down the river, paddling as they go.\"]}, \"v_YODfHuzK2As\": {\"duration\": 165.84, \"timestamps\": [[0, 52.24], [54.73, 135.99], [135.99, 165.84]], \"sentences\": [\"Two people are seen hosting a news segment that leads into clips of a young child throwing darts onto a board.\", \" Several people are interviewed for the camera and switches into a clip of a game show and more shots of dart throwers.\", \" The boys is seen again throwing darts and pans back to the people hosting the news.\"]}, \"v_B5hzlU0OepQ\": {\"duration\": 154.6, \"timestamps\": [[0, 44.83], [44.83, 124.45], [105.9, 149.19]], \"sentences\": [\"A woman is seen speaking to the camera while holding up various ingredients.\", \" She begins pouring the ingredients together into a bowl while still speaking to the camera.\", \" She then pours dressing into the bowl and presents a salad she had made.\"]}, \"v_-LtQMRfj0eM\": {\"duration\": 227.73, \"timestamps\": [[0, 46.69], [46.69, 224.32], [225.45, 227.73]], \"sentences\": [\"A man stands on a residential front lawn with a chain saw.\", \" The man trims a set of small palm trees.\", \" The camera focuses on the finished palm trees and cut branches on the ground below.\"]}, \"v_BSKolF3MMe4\": {\"duration\": 178.05, \"timestamps\": [[0, 36.5], [27.6, 122.86], [106.83, 175.38]], \"sentences\": [\"A close up of the ground is seen followed by a person pushing around leaves.\", \" The person continues to push leaves around the area while the camera follows it's movements.\", \" The person looks around a bit and still continues to blow leaves around the area.\"]}, \"v_wUXpeZHrTWw\": {\"duration\": 215.89, \"timestamps\": [[0, 215.89], [0, 212.65], [6.48, 215.89]], \"sentences\": [\"two men are practicing fight movements in a green grssy field.\", \" men are fighting moving side to side of the field.\", \" green grassy field is shown with men fighting in front of the trees.\"]}, \"v_ncXZIWMNKZQ\": {\"duration\": 30.14, \"timestamps\": [[0, 4.37], [4.82, 17.93], [18.39, 30.14]], \"sentences\": [\"A woman is seated in a chair in her living room.\", \" She is using yarn, and knitting with needles.\", \" She is randomly shown speaking to the camera, alternating between the living room and a bench in her yard.\"]}, \"v_kTBEGydNpgg\": {\"duration\": 86.49, \"timestamps\": [[0, 5.19], [5.19, 20.76], [20.76, 41.08], [41.51, 60.97], [60.97, 86.49]], \"sentences\": [\"A presenter stands next to a boy and a girl on front an audience, then the girl applaud, raise one hand and walk to sit with the audience.\", \" The presenter calls a lady to pass on front, while the cameraman laugh.\", \" After the camera point to a young girl looks surprised and laugh, as well the presenter and people.\", \" A cameraman points to give directions while the young girl walk to join the presenter who is talking.\", \" After the young girl shoot a dart to the dart board, then the boy points the dart.\"]}, \"v_czmYE1FzBXM\": {\"duration\": 192.01, \"timestamps\": [[0, 5.76], [6.72, 66.24], [67.2, 71.04], [72, 96], [96.96, 175.69], [176.65, 192.01]], \"sentences\": [\"A red white and blue \\\"Lacrosse Allstars\\\" logo appears on screen followed by \\\"SFU Lacrosse\\\" and \\\"Heading to play Texas\\\".\", \" Young men in SFU Lacrosse sweatsuits are loading suitcases into a charter bus and boarding it.\", \" \\\"UT 11 SFU 4\\\" and \\\"Game at Montana\\\" appear on screen.\", \" Young men play lacrosse in a large outdoor stadium.\", \" \\\"Highlights SFU vs Montana\\\" appears on screen followed by more video clips from the game.\", \" \\\"SFU 16 UM 7\\\" appears on screen followed by \\\"Post season begins\\\" and the \\\"Lacrosse Allstars\\\" logo.\"]}, \"v_YzyCFfrX_4I\": {\"duration\": 18.76, \"timestamps\": [[0, 5.44], [5.72, 15.38], [15.38, 18.76]], \"sentences\": [\"Two large houses with nicely manicured lawns are pictured.\", \"All of a sudden,a young boy appears and starts skateboarding across the sidewalk that has a basketball goal on it.\", \"He finally comes back and starts to skateboard across a silver pole on on a bench.\"]}, \"v_YZQ_qh9wC4w\": {\"duration\": 184.61, \"timestamps\": [[0, 36], [38.77, 50.77], [54.46, 184.61]], \"sentences\": [\"A girl is stretching in front of a swimming pool.\", \" She steps on a board and dives into the pool.\", \" She starts swimming laps in the pool.\"]}, \"v_YYmx8EHIjAE\": {\"duration\": 38.92, \"timestamps\": [[0, 19.46], [19.85, 38.92]], \"sentences\": [\"A man is kneeling down in a room laying down tile in a dimly lit room.\", \"Shortly after, a man walks in the room holding a piece of tile as he walks across the room.\"]}, \"v_-voGnJbk3CI\": {\"duration\": 77.07, \"timestamps\": [[0, 5.01], [5.01, 15.03], [15.03, 25.05], [25.05, 39.3], [39.3, 48.94], [48.94, 60.11], [60.11, 72.06], [72.06, 77.07]], \"sentences\": [\"An intro blue screen includes red words and numbers that read \\\"David Boudia's Preliminary Dives at the Fina World Cup 2012\\\".\", \"A man appears at the top of the highest diving point where he is facing forward doing a handstand and then jumps and and spins a few times before he dives straight into the water.\", \"A different man is now standing at the diving point where he is standing with his back to the water and arms pointing straight up until he jumps back slightly and does multiple flips until he dives into the water.\", \"Another man is now on the diving area and instead of standing at the edge like the other two, he does a run, skip and jump before he jumps off the diving area and does multiple flips before he dives into the water.\", \"A different man is now standing at the edge of the diving area standing straight up with his 2 arms spread wide out for a moment until he finally jumps and flips multiple times and dives into the pool.\", \"A man wearing a blue swim trunks is now standing at the edge of the diving area with his back to the water and his arms straight out to the sides until he finally jumps and does multiple flips until he dives straight into the pool.\", \"The man with the blue swim trunks is getting ready to dive again and he has his back turned to the water and his arms straight down his sides until he lifts them up to point straight out to his sides before he jumps, does multiple flips and dives into the pool.\", \"The outro is the same blue screen as the intro and the red letters now say \\\"David Boudia finished 12th on 445dot25 Made by CharlieMinns98\\\".\"]}, \"v_jCB1EC3RzWI\": {\"duration\": 63.76, \"timestamps\": [[0, 19.45], [15.62, 48.14], [39.21, 61.53]], \"sentences\": [\"Pictures are shown of people swimming around a pool as well as people sitting around the sides.\", \" People are then seen playing a game in the water and throwing a ball around.\", \" The people continue to throw the ball around while people watch on the sides.\"]}, \"v_8eUBLvj3veI\": {\"duration\": 186.92, \"timestamps\": [[0, 16.82], [21.5, 42.06], [46.73, 155.14], [156.08, 186.92]], \"sentences\": [\"A blonde girl twirls her hair happily as she sits in a chair.\", \" A woman shows off a display of hot rollers in a case.\", \" She then shows how to put them in the girl's hair, keeping it in place with combs and clips.\", \" When it's set, she removes the curlers to show off beautiful curls.\"]}, \"v_Ub88_ql0B78\": {\"duration\": 74.94, \"timestamps\": [[0.75, 25.11], [22.11, 49.09], [48.71, 71.95]], \"sentences\": [\"A girl is seen holding a baton and begins performing a dance routine in the middle of a large gymnasium.\", \" The girl continues spinning and twirling around.\", \" The girl continues spinning in different shots and leads into clips of her by herself as well as with others.\"]}, \"v_xabaKyhx7cg\": {\"duration\": 121.53, \"timestamps\": [[0, 28.56], [34.64, 58.94], [58.94, 85.07], [85.68, 121.53]], \"sentences\": [\"A close up of sneakers and polish is shown followed by a person's hands putting objects into shoes.\", \" They fill up a tin of water, pour polish inside, and then scrub the outside of the shoes.\", \" He pulls out of a bag to put the shoes in and throws the bag into a washing machine.\", \" He finally pulls the new shoes out of the bag and pans around the shoes to show how clean they look.\"]}, \"v_mgNfayAiTQc\": {\"duration\": 11.15, \"timestamps\": [[0, 10.09], [10.31, 11.15]], \"sentences\": [\"A man applies mortar to the floor of a room with a putty knife.\", \" The man returns the tool to the 5 gallon bucket.\"]}, \"v_kaRZaCGzNzw\": {\"duration\": 151.42000000000002, \"timestamps\": [[0.76, 43.15], [28.01, 100.69], [100.69, 143.85]], \"sentences\": [\"A bearded man is seen speaking to the camera and making several faces.\", \" The man then holds up a razor and begins shaving his face.\", \" The man looks all around the camera and continues shaving leaving only a little hair behind.\"]}, \"v_iLaye6q55qk\": {\"duration\": 237.32999999999998, \"timestamps\": [[0, 237.33], [117.48, 118.67], [117.48, 237.33], [215.97, 237.33]], \"sentences\": [\"A man is doing various skateboarding tricks.\", \" A guy falls down onto the ground.\", \" People continue doing tricks on skateboards.\", \" They are giving each other hugs and high fives.\"]}, \"v_bodOObk5K00\": {\"duration\": 144.1, \"timestamps\": [[0, 36.03], [36.03, 112.4], [113.84, 144.1]], \"sentences\": [\"A blurry black stage is present and then all of a sudden a woman appears playing the piano.\", \"While the woman is playing,the blind artist Stevie Wonder appears playing the harmonica into his microphone.\", \"As he plays,the rest of his band joins in and the guitarist joins the woman on the piano.\"]}, \"v_immCYvN8pwQ\": {\"duration\": 198.72, \"timestamps\": [[0, 22.85], [22.85, 108.3], [103.33, 198.72]], \"sentences\": [\"A close up of leaves are shown as well as two skateboard hanging upsidedown.\", \" A person grabs the board and is then seen riding down streets with another person.\", \" Dogs are seen playing as well as board riding by themselves and leads into more clip of the men riding around.\"]}, \"v_q92zSoMudWU\": {\"duration\": 37.29, \"timestamps\": [[0, 4.1], [4.1, 37.29], [13.05, 16.97]], \"sentences\": [\"People are standing on sand wearing red shirts.\", \" They are playing a game of soccer in the sand.\", \" People are watching them in the stands.\"]}, \"v_qeYKXF8tsp4\": {\"duration\": 118.93, \"timestamps\": [[0, 118.93], [5.95, 26.76], [27.35, 99.9], [99.9, 113.58], [113.58, 118.93]], \"sentences\": [\"Two teams of girls are on a field playing field hockey.\", \"   The game is stopped as a girl with a blue jersey grabs the ball in her  hand and puts it in play.\", \"  As the the girls chase the ball around at the other side of the field a whistle is blown and the game is on hold as the girls go their positions on the field.\", \"  The game starts again and girls are running to the other side of the field.\", \"  As they fight for the ball a whistle is blown and the game is stopped again.\"]}, \"v_173d8EtsIpE\": {\"duration\": 187.13, \"timestamps\": [[0, 30.88], [30.88, 130.99], [130.06, 187.13]], \"sentences\": [\"Two people are standing in a room on a green court fencing with one another.\", \"The two people move across the ring and they stop and begin plenty of times.\", \"Finally,the game is finished and they begin to walk off.\"]}, \"v_LmioUbGNv04\": {\"duration\": 41.54, \"timestamps\": [[0, 7.06], [5.19, 36.35], [33.65, 40.92]], \"sentences\": [\"A large group of people are seen standing around a gym and leads into a man kicking a mat.\", \" The man holds up a mat in his arms and another man kicks the mat.\", \" The other continues kicking and ends by fading to black.\"]}, \"v_6pnabYJdqxc\": {\"duration\": 79.37, \"timestamps\": [[0, 13.49], [15.48, 57.94], [61.91, 79.37]], \"sentences\": [\"White flowers are being blown by a light wind.\", \" A man is talking while standing amongst several purple flowers.\", \" He shows off several different kinds of flowers as he talks.\"]}, \"v_fxbEiZrQQzM\": {\"duration\": 65.78, \"timestamps\": [[0, 33.22], [31.58, 65.78]], \"sentences\": [\"A man is seen wandering around a field cutting grass that pans into other people chopping up the grass as well.\", \" The camera pans around the area to see people cutting and ends with a close up of a person smiling and continuing to cut.\"]}, \"v_2vAaAy_WC7Y\": {\"duration\": 179.86, \"timestamps\": [[0, 11.69], [11.69, 50.36], [50.36, 93.53], [93.53, 138.49], [138.49, 179.86]], \"sentences\": [\"A woman is standing and talking in a kitchen and is wearing a pink apron with large white polka dots.\", \"There's nothing on the counter in front of her but when she snaps her fingers cooking supplies and dishes appear in front of her and she begins to talk about and touch the objects as she goes along.\", \" The woman now appears with jello supplies in front of her and she mixes the jello powder with hot water from a  kettle, pours it into a bowl and then puts the bowl in the refrigerator to cool.\", \" The woman is now standing with a baked cake in front of her, the bowl of cooled jello, and with the help of special effects she's immediately putting the two jello bowl molds onto the top of an already shaped cake.\", \" The woman is now putting some candies onto the cake next to the jello molds,a brief clip of nicki minaj plays as she's shaking her booty and when the clip goes back to the woman; she's shaking the jello molds on the cake that look like a shaped booty shaking.\"]}, \"v_iEZgExTrv70\": {\"duration\": 23.31, \"timestamps\": [[0, 17.02], [16.9, 19.23], [19.82, 23.31]], \"sentences\": [\"A boy is going across the monkey bars.\", \" He gets to the end and steps on a wood board.\", \" He looks at the camera and smiles.\"]}, \"v_vbnuIUgUVXA\": {\"duration\": 139.13, \"timestamps\": [[0, 21.57], [23.65, 64], [64.7, 109.92], [111.31, 139.13]], \"sentences\": [\"A group of kids and adults are trying to catch crabs in the rocks.\", \" A man holds up a crab to go into a container.\", \" A beach view is shown, covered in people looking for crabs.\", \" Surfers go into the water and swim away.\"]}, \"v_s9MNW35YCMw\": {\"duration\": 201.69, \"timestamps\": [[0, 14.12], [44.37, 51.43], [60.51, 90.76]], \"sentences\": [\"A boy holds up a bottle of mouth wash.\", \" He drinks a cap full of the mouth wash.\", \" He swishes it around in his mouth and spits it into a sink.\"]}, \"v_iDMzTPfELoc\": {\"duration\": 222.84, \"timestamps\": [[4.46, 91.37], [57.94, 197.22], [168.25, 219.5]], \"sentences\": [\"A small child is seen starting a hop scotch game while going down the street and others walking into frame.\", \" The boy continues jumping all along the sides with a woman standing next to him.\", \" The camera person shows their face and ends with the boy walking and talking.\"]}, \"v_od1jHUzgrAU\": {\"duration\": 169.37, \"timestamps\": [[0, 21.17], [23.71, 52.5], [61.82, 72.83], [84.68, 169.37]], \"sentences\": [\"A man is standing inside a bathroom.\", \" He uses scissors to trim his beard.\", \" He then gets fully dressed, noticing his trembling feet.\", \" He proceeds to brush clean his shoes and polish them.\"]}, \"v_ow9bWn5gOvg\": {\"duration\": 223.93, \"timestamps\": [[0, 223.93], [0, 16.8], [16.8, 223.93]], \"sentences\": [\"man is standing in a kitchen in front of a black counter.\", \" the man is taking out a grey stone from the green plastic bowl.\", \" the man holds the knife and is sharpnening it with the rock.\"]}, \"v_scwBQj4GE7Y\": {\"duration\": 36.71, \"timestamps\": [[0.55, 23.86], [24.23, 36.16]], \"sentences\": [\"A baby swims in a swimming pool to reach the other side of the pool.\", \" Reporters in a TV set comment among them .\"]}, \"v_mi6f8kGVR70\": {\"duration\": 58.45, \"timestamps\": [[0, 25.13], [25.13, 45.29], [45.29, 58.45]], \"sentences\": [\"a man and a kid are ridin a camel on a dusty path.\", \" woman is riding a camel behind the first man and men are helping her to get down the camel.\", \" the woman is walking in the dusty path and nexto to the man with the kid riding the camel.\"]}, \"v_yISeNkFiVAg\": {\"duration\": 141.06, \"timestamps\": [[0, 31.03], [33.15, 83.93], [87.46, 141.06]], \"sentences\": [\"A woman is sitting on a stage.\", \" She has three large drums in front of her.\", \" She is playing the drums with her hands to a beat.\"]}, \"v_5JVHUcOW0GE\": {\"duration\": 129.06, \"timestamps\": [[0, 32.91], [32.26, 49.69], [84.53, 100.02], [126.48, 129.06]], \"sentences\": [\"A man is standing in a kitchen making a sandwich.\", \" He puts the sandwich into a plastic bag.\", \" He puts the sandwich into a plastic Tupperware box.\", \" He picks up the food and walks out a door.\"]}, \"v_XQaaA2UZYh8\": {\"duration\": 64.16, \"timestamps\": [[0, 32.4], [32.4, 64.16]], \"sentences\": [\"A person is seen kneeling before an object and using a torch and adjusting the settings on the machine.\", \" More shots of the man torching are shown as well as close ups of the machine.\"]}, \"v_S_1_ZSMxRfg\": {\"duration\": 212.74, \"timestamps\": [[0, 29.78], [28.72, 179.77], [177.64, 212.74]], \"sentences\": [\"A photograph of food is shown followed by a person putting bacon into a pan.\", \" The person then cuts up vegetables and butters bread then putting various ingredients on the bread to make a sandwich.\", \" The person cuts up the sandwich and places it around a plate to present in the end.\"]}, \"v_kmWf36zfL7o\": {\"duration\": 24.09, \"timestamps\": [[0, 23.73], [0.48, 5.42], [5.42, 23.97]], \"sentences\": [\"A man covered in tattoos stands in front of a young boy  sitting in a tattoo chair and tattoos the boys forearm.\", \"  The man stands over the boys arm with a metal tattoo tool and works on the boys arm, who is sitting in a black chair watching the tattoo being placed on the arm.\", \"  The boy looks on as the man etches the tattoo on the arm and stands back briefly to view the tattoo.\"]}, \"v_MOvLBw1EzmI\": {\"duration\": 37.94, \"timestamps\": [[0, 14.8], [11.95, 26.18], [26.56, 36.04]], \"sentences\": [\"A close up of a car is seen followed by a hand holding a scraper.\", \" The person pushes ice all along the car with the scraper.\", \" They continue to push the ice off of the car using the scraper.\"]}, \"v_XkzEXA4b20k\": {\"duration\": 232.99, \"timestamps\": [[0, 189.89], [82.71, 232.99]], \"sentences\": [\"A woman shows how to do a haircut.\", \"  She cuts a few inches off in the back.\"]}, \"v_ANeDHelwzK0\": {\"duration\": 53.89, \"timestamps\": [[0, 5.66], [5.93, 23.17], [22.9, 47.97], [47.7, 53.89]], \"sentences\": [\"A shot of a white door is shown and a hand opens it.\", \" They then move into the shower and a dog is shown to be in it.\", \" He stares at the camera for a bit while he licks his lips.\", \" Another dog then enters the frame and seems to be wondering what is going on.\"]}, \"v_uBPWqgUiQWA\": {\"duration\": 39.57, \"timestamps\": [[0, 31.06], [26.11, 26.71]], \"sentences\": [\"These for men are all standing in the room trowing darts at the dart board.\", \" One of them throws a dart at the camera because he missed one time.\"]}, \"v_KjkD7CZcXK8\": {\"duration\": 82.55, \"timestamps\": [[0, 82.55], [2.89, 82.55], [0, 80.07]], \"sentences\": [\"a man is holding a litle shovel and is cleaning the windows of a black car.\", \" te man is trying to ake off the ice from the windows.\", \" a car is parked in front of the street and a man is cleaning the ice.\"]}, \"v_Rg9qviHZ3qc\": {\"duration\": 213.14, \"timestamps\": [[0, 21.31], [24.51, 31.97], [35.17, 42.63], [43.69, 54.35], [55.42, 179.03], [183.3, 209.94]], \"sentences\": [\"A girl turns around slowly to show her hairdo.\", \" The girl uses a comb with a pick to part her hair.\", \" The girl brushes sections of her hair and then twists them together.\", \" The girl adds hair product to her hair and combs it through with her hands.\", \" The girl braids her hair together in french braids.\", \" The girl uses a toothbrush to blend the hair in the front then turns around again when she is done styling her hair.\"]}, \"v_-hEr3ydGyoM\": {\"duration\": 176.47, \"timestamps\": [[7.06, 161.47], [31.76, 126.18], [95.29, 176.47]], \"sentences\": [\"A cutout of Obama's head is seen clipped on a person playing drums in front of a large crowd with cameras flashing and audience members reacting.\", \" More clips are shown of politicians speaking as well as old movie clips and music videos.\", \" Obama is still seen playing the drums on a cutout while more shots of movie clips are shown as well as audience members clapping and cheering.\"]}, \"v_Zjfw0n32DBA\": {\"duration\": 79.23, \"timestamps\": [[0, 12.68], [13.86, 19.81], [19.41, 27.33], [28.13, 45.95], [47.14, 70.51]], \"sentences\": [\"The boy hands the tooth brush to someone.\", \" The boy dances his feet on a wood floor.\", \" Toothpaste is applied to the toothbrush and handed to the boy.\", \" A boy brushes his teeth with an electric toothbrush.\", \" The boy has his teeth brushed by someone.\"]}, \"v_Tc0nHNkf0KM\": {\"duration\": 27.12, \"timestamps\": [[0, 7.59], [8.14, 27.12]], \"sentences\": [\"A young child is seen walking up to a small sink and turning on a faucet.\", \" The boy then pumps soap into his hands, turns off te faucet, then rubs his hands on his shirt.\"]}, \"v_xc0Wm-TH5K8\": {\"duration\": 25.01, \"timestamps\": [[0, 6], [2, 17.26], [17.13, 18.01], [18.38, 25.01]], \"sentences\": [\"A weight Lifter is bend to raise a weight sitting on the floor wile a woman watch him.\", \" Then, the man raises the weight to rest on the shoulders, and then above the head.\", \" The man let fall the weight on his front.\", \" At the end an advertisement of a gym appears.\"]}, \"v_WGEKoGRIJGk\": {\"duration\": 134.35, \"timestamps\": [[0, 16.79], [10.08, 70.53], [31.57, 117.56], [79.27, 130.32]], \"sentences\": [\"A little girl is holding a flute, she is talking in front of the camera then showed her flute, she then turned the camera towards her note sheets.\", \" The little girl started talking, while behind her the little boy is sitting on a desk chair.\", \" The girl started to play in her flute, while the boy is sitting on the desk chair and rubbed his nose with his shirt.\", \" The little girl talked while holding her flute.\"]}, \"v_PaAJ-6HT6bw\": {\"duration\": 33.76, \"timestamps\": [[0, 33.09], [4.39, 33.09], [0, 33.76]], \"sentences\": [\"two men wearing purple shirts are sitting behind a net where a man will do a throw.\", \" man wearing a white shirt is and gets ready to make a javelin throw.\", \" people are walking in the roofed gym behind the men in the middle.\"]}, \"v_Uw_0h2UrfyY\": {\"duration\": 139.04, \"timestamps\": [[0, 9.04], [9.04, 139.04]], \"sentences\": [\"a man and a woman are talking introducing a singer that is in middle of stage.\", \" woman is the midle of stage is playing a guitar and singing and a girl is dancing ballet in the midle.\"]}, \"v_z1QgzOfUjow\": {\"duration\": 44.98, \"timestamps\": [[0, 4.72], [5.85, 27.66], [28.56, 44.98]], \"sentences\": [\"Several people are riding in rafts down a river.\", \" They paddle hard, trying to stay afloat.\", \" They go over small waterfalls and through the rapids.\"]}, \"v_Mdt2E8KYpCg\": {\"duration\": 51.69, \"timestamps\": [[0, 6.2], [8.01, 39.54], [41.09, 47.04], [48.07, 51.69]], \"sentences\": [\"A man is helped off the floor by another wrestler.\", \" He lifts him up as two other wrestlers clean off a table.\", \" He throws the man down on top of the table as hard as he can.\", \" He holds up a mallet above the man on the ground.\"]}, \"v_umi5d_a6bfc\": {\"duration\": 61.46, \"timestamps\": [[3.69, 26.43], [23.97, 61.46]], \"sentences\": [\"An intro leads into a person's hands tightening a chain on a bike.\", \" The person then looses the chain and tugs on the sides to ensure it's working properly.\"]}, \"v_LAZHNzFbDNY\": {\"duration\": 106.67, \"timestamps\": [[2.13, 41.07], [41.07, 99.74]], \"sentences\": [\"An athlete steps up to a circle and throws a discuss out onto a field.\", \" The same man is shown several more times throwing the discuss as people grab the object afterwards and watch him walk away.\"]}, \"v_R0YS8JS_0rk\": {\"duration\": 62.67, \"timestamps\": [[0, 5.33], [5.64, 11.28], [10.97, 51.39], [48.57, 52.64], [54.52, 62.67]], \"sentences\": [\"A gymnast stretches and waves to the crowd before a competition.\", \" The gymnast hops up onto a platform using his hands.\", \" The gymnast spins around the platform using hes hands to hold his weight.\", \" The gymnast dismounts from the platform.\", \" The gymnast shakes hands with coaches and other athletes.\"]}, \"v_-UWE4jXuLoo\": {\"duration\": 180.58, \"timestamps\": [[0, 8.13], [12.64, 58.69], [62.3, 164.33], [174.26, 180.58]], \"sentences\": [\"Several images appear, showing various instructionals for skateboarding.\", \" A boy is balanced on a board, then shows several moves and stunts as he moves around a skate park.\", \" He jumps, flips, ramps, and performs several moves.\", \" They then give a website to access manuals.\"]}, \"v_FNAt8Pew0HA\": {\"duration\": 35.99, \"timestamps\": [[0, 14.04], [14.04, 26.09], [25.19, 35.99]], \"sentences\": [\"A young girl is standing in a kitchen in front of the sink,peeling a potato with the peeler.\", \"As she is peeling it,she talks throughout the whole process and seems annoyed.\", \"Another potato is then shown in the sink and the girl stops,exhales,looks away and continues working on her potato.\"]}, \"v_vSV7arHrH5k\": {\"duration\": 152.05, \"timestamps\": [[0, 152.04], [25.09, 57.78], [57.78, 86.67], [86.67, 100.35], [100.35, 142.92]], \"sentences\": [\"A woman behind an counter is talking about the fabric on the counter on front of her.\", \" She lifts the glass bowl with liquid mixture, put it down and lift gain detergent and talks for a while touching the fabric followed by the bottle of vinegar and talks some more touching the fabric and the bowl.\", \" She put the fabric in the liquid mixture and soak it.\", \" She then rinses the soaked fabric in the faucet and put it in the kitchen counter for a while.\", \" She picked up the towel, put away the bowl and the remaining fabric, spread a dry towel on the counter and spread the wet fabric on top of it and put another layer of dry towel and roll.\"]}, \"v_5yrLDF_ZmN0\": {\"duration\": 124.53, \"timestamps\": [[0, 18.68], [21.79, 83.43], [86.55, 124.53]], \"sentences\": [\"A couple is scuba diving under water in a pool.\", \" They pat each other and communicate with their hands.\", \" They are showing how to scuba dive together.\"]}, \"v_lBhNeACY8y4\": {\"duration\": 206.61, \"timestamps\": [[0, 34.09], [34.09, 131.2], [136.36, 206.61]], \"sentences\": [\"A laptop is shown followed by a person climbing out of bed and washing their face.\", \" Several shots of women are seen hitting a punching bag in a large room and fist bumping one another.\", \" More shots are shown of people performing various exercises as well as hitting the punching bag.\"]}, \"v_oEDBkmmVKM0\": {\"duration\": 60.47, \"timestamps\": [[0, 60.47], [4.84, 60.47], [13.91, 60.47]], \"sentences\": [\"A baby is standing in a kitchen.\", \" He is playing a harmonica.\", \" He is swirling back and forth dancing.\"]}, \"v_H4wC2d_Vbog\": {\"duration\": 160.66, \"timestamps\": [[0, 24.9], [26.51, 91.58], [93.18, 160.66]], \"sentences\": [\"A group of people are using steppers inside a gym.\", \" They take steps up and down, alternating steps.\", \" They are dancing aerobically as they go.\"]}, \"v_7phIVBx1BzQ\": {\"duration\": 210.26, \"timestamps\": [[0, 34.69], [38.9, 156.64], [125.1, 203.95]], \"sentences\": [\"Two dogs are seen sitting on the side and lead into performing tricks with their owners.\", \" Many people are shown throwing frisbees off in the distance with dogs following behind.\", \" More owners perform tricks with their dogs while the audience watches on the side.\"]}, \"v_aN9vCyXMbb8\": {\"duration\": 65.23, \"timestamps\": [[0, 22.5], [17.94, 51.2], [45.98, 63.92]], \"sentences\": [\"A man is seen standing in front of a camera while holding an instrument in his hands.\", \" The man then begins playing the instrument while looking off into the distance.\", \" The man continues playing and ends by turning off the camera.\"]}, \"v_dOUCAVnJLko\": {\"duration\": 206.29, \"timestamps\": [[0, 114.49], [114.49, 206.29]], \"sentences\": [\"woman is jumping in a large rope from a high bridge.\", \" guys are standing on top of the bridge and wearing harness.\"]}, \"v_ux3h_qEusvw\": {\"duration\": 154.18, \"timestamps\": [[0, 20.81], [22.36, 131.05], [134.91, 154.18]], \"sentences\": [\"A plate is filled with potatoes on a counter next to a pot.\", \" A man shows off a potato peeler, before recording himself peeling the potatoes with it.\", \" He then shows the pot filled with peeled potatoes, and the pile of peelings next to it.\"]}, \"v_OuVncktxGw0\": {\"duration\": 28.63, \"timestamps\": [[0, 20.04], [21.04, 28.63]], \"sentences\": [\"Two men are arm wrestling on a table.\", \" They tip the table over and the man falls on his back.\"]}, \"v_231pbDe3uQc\": {\"duration\": 10.89, \"timestamps\": [[0, 8.6], [8.6, 10.89]], \"sentences\": [\"A person is doing motocross on an unpaved road on a hill.\", \" Then, the person goes downs until disappear from the scene.\"]}, \"v_yBL1hCKmX7s\": {\"duration\": 15.47, \"timestamps\": [[0, 3.02], [6.03, 8.97], [0, 15.46]], \"sentences\": [\"A man stands on a blacktop street.\", \" He starts running and throws a javelin at a dirt area.\", \" Several other people are standing in the background.\"]}, \"v_WROGzgOpPXc\": {\"duration\": 209.77, \"timestamps\": [[0, 50.34], [39.86, 125.86], [139.5, 206.62]], \"sentences\": [\"A camera is shown panning around various sceneries as well as people sitting in a car and walking down a cliff.\", \" People are then seen sitting in a raft and paddling themselves along the river.\", \" Several shots are shown of people jumping in the water as well as paddling along and laughing with one another.\"]}, \"v_Z9k8GiGjkZ8\": {\"duration\": 84.89, \"timestamps\": [[0, 32.26], [32.26, 52.63], [52.63, 84.89]], \"sentences\": [\"people are standing in a platform and one of the woman jump from a big bridge to a river hold by a rope and the rope breaks.\", \" woman is talking to a camera and talking about her experience when the rope breaks and he camera is showing the river.\", \" woman shoe her injuries in the back and in her arms.\"]}, \"v_svWiQtzgtOc\": {\"duration\": 82.62, \"timestamps\": [[0, 29.74], [28.92, 82.62]], \"sentences\": [\"A man is seen performing various flips and tricks in the middle of a public square with dozens of people watching on the side.\", \" The man continues to do tricks in various areas while the people around him watch and applaud.\"]}, \"v_V9_mEvC24nk\": {\"duration\": 152.74, \"timestamps\": [[0, 11.46], [14.51, 64.15], [70.26, 152.74]], \"sentences\": [\"Ireland final training is displayed on the screen.\", \"  A large empty field is shown, then the players appears.\", \" They play a game of lacrosse, competing with each other.\"]}, \"v_pem8BpCspUM\": {\"duration\": 4.27, \"timestamps\": [[0, 1.43], [0.81, 3.7], [2.26, 4.27]], \"sentences\": [\"A woman catches a ball that was being thrown.\", \" Another woman slides into a base and falls on the ground.\", \" A person behind her holds his arms up at his sides.\"]}, \"v_xzuQIbnXt2U\": {\"duration\": 26.84, \"timestamps\": [[0, 6.31], [6.31, 8.86], [6.58, 8.86], [8.99, 26.84]], \"sentences\": [\"A man lefts up a friend upside down onto his shoulders.\", \" The man slams his friend onto the grass.\", \" The friend lands on the grass and role over in pain.\", \" The man picks up and slams his friend in the grass in slow motion.\"]}, \"v_V4srMOGRlU8\": {\"duration\": 128.22, \"timestamps\": [[0, 33.34], [33.34, 98.09], [98.09, 116.04], [116.04, 128.22]], \"sentences\": [\"Four people are walking outside in the wilderness then all of a sudden,they are shown in their swimming attire with four tubes in murky water covered in trees.\", \"The next scene,several people are shown in a lake,pedaling boats,tubing,drinking,and enjoying the water.\", \"As they find shallow water,a man picks up a ball and they start playing football.\", \"All of them are now out of the water and they walk into a restaurant.\"]}, \"v_L21zcZlFfIY\": {\"duration\": 201.76, \"timestamps\": [[0, 4.04], [4.04, 197.72], [151.32, 197.72], [197.72, 201.76]], \"sentences\": [\"Two ladies of each team get the three balls and throw it towards their teammates.\", \" They started to play and starting throwing the ball to one another.\", \" Then only one player left on one team and two players on the other one.\", \" The winning team congratulated each other.\"]}, \"v_B_9S_qzlD38\": {\"duration\": 15.42, \"timestamps\": [[0, 4.01], [4.7, 12.26], [12.87, 15.42]], \"sentences\": [\"Children sit on the beach, making a castle in the sand.\", \" We see them playing near the ocean edge.\", \" Then we see a pink twirling wind toy.\"]}, \"v_Ieb7EkMxpJk\": {\"duration\": 29.93, \"timestamps\": [[0, 8.98], [8.98, 29.93]], \"sentences\": [\"a black dog is playing in a lakeside, enters in the lake and then wallow in the grass.\", \" woman is in a dog saloon combing and bathing different dogs.\"]}, \"v_CvsFEsXakwo\": {\"duration\": 185.76, \"timestamps\": [[0, 27.86], [26.94, 75.23], [75.23, 123.53], [123.53, 185.76]], \"sentences\": [\"A man is shown in black and white sitting behind a drum kit and is giving instructions as to how to play.\", \" He speaks to the camera for some time and is vert specifically explaining some important points.\", \" Alternate angles of him giving instructions are shown with him counting down and playing a very basic beat.\", \" An overhead shot in color is shown of his playing before he stops to give more instruction to the viewer.\"]}, \"v_unE-vkRljRs\": {\"duration\": 99.89, \"timestamps\": [[0, 17.98], [17.98, 42.95], [42.95, 70.92], [70.92, 99.89]], \"sentences\": [\"Men and women are riding on horses through the desert in a straight line following behind the other.\", \" The man in the front has a horse with no rider following behind him.\", \" They are going down some cowboy trails enjoying the mountain views.\", \"  They are going slow and steady, not in any rush.\"]}, \"v_EpV0Zmg50nQ\": {\"duration\": 69.03, \"timestamps\": [[0, 31.41], [31.76, 69.03], [33.83, 69.03]], \"sentences\": [\"A woman in a green shirt is sitting down talking to a camera.\", \" People are jumping off of a diving board into the water.\", \" A man in a white shirt is watching them.\"]}, \"v_CR_79ZjQG_w\": {\"duration\": 37.55, \"timestamps\": [[0, 11.83], [5.63, 37.55]], \"sentences\": [\"A young child walks across the black top and is held by her brother.\", \" A group of kids play a game of hop scotch on chalk drawn boxes.\"]}, \"v_5TjIJOFGupI\": {\"duration\": 67.62, \"timestamps\": [[0, 16.57], [14.88, 51.73], [53.08, 67.62]], \"sentences\": [\"A close up of food ingredients are shown followed by a person making a sandwich.\", \" The person puts more ingredients on the bread while the camera watches her movements.\", \" The person continuously puts more veggies on the bread.\"]}, \"v_VhzPqd0Su5I\": {\"duration\": 95.3, \"timestamps\": [[0, 37.17], [30.49, 95.3]], \"sentences\": [\"A person's feet are seen standing on the ground when a hand comes in an grabs the camera.\", \" Another person is seen riding a lawn mower around the lawn and the camera watching him move and wave.\"]}, \"v_oD0RWEO8D1g\": {\"duration\": 179.7, \"timestamps\": [[0, 51.21], [38.64, 141.06], [108.72, 171.61]], \"sentences\": [\"Various hockey players are seen moving around an arena and skating on the ice.\", \" The players huddle up and speak to one another that lead into people playing on the ice.\", \" The man skate around one another while an arrow points to their movements.\"]}, \"v_ItukN-TWrJM\": {\"duration\": 150.41, \"timestamps\": [[0.75, 82.72], [57.91, 143.64]], \"sentences\": [\"A woman is seen speaking to the camera holding up various objects an then begins tying a box with a bow.\", \" The woman demonstrates how to tie a proper bow and ends by presenting it to the camera and smiling.\"]}, \"v_ywWHBghVyJ4\": {\"duration\": 30.28, \"timestamps\": [[0, 13.02], [13.32, 30.28]], \"sentences\": [\"A man is seen speaking to the camera while holding various tools in his hands.\", \" The man then runs a waxer over a ski board as the camera pans around his movements.\"]}, \"v_4sm-tTbfamM\": {\"duration\": 182.51, \"timestamps\": [[4.56, 20.99], [21.9, 77.57], [77.57, 178.86]], \"sentences\": [\"A person spins the wheel of a bike with the pedal.\", \" Then, the person uses a screwdriver to take out  nails from the tube of the bike while spinning the week with the pedal.\", \" Then, the person points the cassette and take out a nail of the chain holder while talking.\"]}, \"v__SzFi60-OGA\": {\"duration\": 199.51, \"timestamps\": [[0, 2], [2.99, 63.84], [66.83, 126.69], [128.68, 166.59], [167.59, 199.51]], \"sentences\": [\"We see a room of kids in their karate uniforms.\", \" A girl goes to a group of men, shakes their hands, and gets a new belt.\", \" The girl stands in line with other kids performing.\", \" The girl attempts to break a wooden blocks with her hands and jumps when she does.\", \" She breaks another block with her hands.\"]}, \"v_rprQvEVVpIc\": {\"duration\": 17.83, \"timestamps\": [[0, 1.07], [1.16, 13.46], [13.55, 17.83]], \"sentences\": [\"A young girl balances backwards on a diving board above an indoor pool.\", \"  The girl lowers her arms preparing to dive.\", \"  The girl appears to slip as she jumps into the water and the camera shakes.\"]}, \"v_TxYZLJQOHvY\": {\"duration\": 24.5, \"timestamps\": [[0, 0.98], [10.66, 17.27], [20.09, 22.78], [0, 24.5]], \"sentences\": [\"The girl in the green shirt goes down the slide.\", \"  The girl goes up the stairs.\", \"  The girl goes down the slide again.\", \"  A dog is playing in the background.\"]}, \"v_N-1b20gDnCM\": {\"duration\": 184.32, \"timestamps\": [[0, 27.65], [27.65, 92.16], [92.16, 128.1], [128.1, 184.32]], \"sentences\": [\"Outside by a river a group of people wearing life jackets and holding paddles stand.\", \" They move their canoes into the water and they begin to paddle in the water.\", \" They move their paddles from side to side and they enjoy the mellow day on the water.\", \" once they are done they come back to shore and go to have some drinks.\"]}, \"v_qW926_opnTE\": {\"duration\": 109.0, \"timestamps\": [[0, 13.62], [14.17, 66.49], [66.49, 109]], \"sentences\": [\"A woman walks onto a patio talking to the man behind her.\", \" She looks at a violin on a chair.\", \" She plays the violin happily for the man, and they talk about it.\"]}, \"v_bNRE808ALfM\": {\"duration\": 183.97, \"timestamps\": [[0, 1.84], [1.84, 66.23], [24.84, 35.87], [36.79, 66.23], [67.15, 114.06], [114.98, 128.78], [130.62, 170.17], [171.09, 179.37], [180.29, 183.97]], \"sentences\": [\"We see a bright sunny field.\", \" People are standing in the field holding a swords.\", \" We see the instructor of the class.\", \" The students sit a the teacher demonstrates.\", \" We see people working in pairs indoors on wrist movement.\", \" The people are practicing with swords again.\", \" The people are in the field again.\", \" The people return in doors and take a bow and clap.\", \" We then see the ending title screen.\"]}, \"v_evkiciK1nRc\": {\"duration\": 58.82, \"timestamps\": [[0, 12.65], [12.65, 36.17], [36.47, 58.82]], \"sentences\": [\"Two men are shown in playing racket ball.\", \"They then take a brief break and the man begins hitting the ball on the ground.\", \"The other man comes back from his break and they begin playing again.\"]}, \"v_747hJQNJpeg\": {\"duration\": 183.35, \"timestamps\": [[0, 0.92], [0.92, 18.33], [18.33, 183.35]], \"sentences\": [\"A lady sits on the ground.\", \" The lady begins playing a drum like instrument.\", \" The lady begins to play the drum faster.\"]}, \"v_jr7JA5eKkwY\": {\"duration\": 186.02, \"timestamps\": [[18.6, 100.45], [148.81, 152.53], [150.67, 167.41]], \"sentences\": [\"A person is blow drying their hair.\", \" They put glasses on their face.\", \" They put a pink jacket on put the hood on.\"]}, \"v_hfk93bEIjwc\": {\"duration\": 86.05, \"timestamps\": [[0, 40.45], [12.48, 25.82], [16.78, 34.85], [25.82, 42.6]], \"sentences\": [\"Several people are on a raft in the water.\", \" They pass by many rocks.\", \" The water keeps getting choppier.\", \" A man in a kayak goes down falls.\"]}, \"v_BfLrltipDDU\": {\"duration\": 115.06, \"timestamps\": [[0, 24.16], [24.16, 92.04], [93.19, 115.06]], \"sentences\": [\"A group of people are seen sitting on a boat with one standing up and another following behind in the water.\", \" Several shots of the people dancing are shown and shows many people riding in the water on a wake board.\", \" The people ride all along the water ad ends with one doing a jump while hanging on.\"]}, \"v_ripbruSSD8w\": {\"duration\": 6.78, \"timestamps\": [[0, 6.78], [2.17, 3.7], [3.66, 6.78]], \"sentences\": [\"A man in a black shirt is standing outside.\", \" He swings a yellow ax at a log of wood.\", \" The wood splits in half and lands on the ground.\"]}, \"v_BEtftLo6NKQ\": {\"duration\": 173.06, \"timestamps\": [[0, 29.42], [29.42, 101.24], [102.97, 134.99], [147.1, 173.06]], \"sentences\": [\"The camera pans around a woman speaking on the phone and then standing up to speak to the camera.\", \" Various shots are then shown of the woman using a mop around a floor and dragging around a bucket that comes with the mop.\", \" More shots of her cleaning are shown as well as how to clean the rags when they are dirty.\", \" She is then seen again all dressed up and speaking on the phone, ending with her walking away.\"]}, \"v_DQLotF3P9Fc\": {\"duration\": 193.56, \"timestamps\": [[0, 144.2], [144.2, 193.56]], \"sentences\": [\"man is walking in a large soccer field and in other part practicing to make a javelin throw, then with a tread see the distance of the throw.\", \" man wearing green shirt make the throw competing with the other man.\"]}, \"v_SI8HO5-e24c\": {\"duration\": 187.69, \"timestamps\": [[0.94, 58.18], [45.98, 180.18]], \"sentences\": [\"A man is seen kneeling down before a person and strapping them into a harness.\", \" The man is then seen speaking to the camera while they continue to strap him in and leads into the man bungee jumping off the side near the water.\"]}, \"v_aj-klsonETc\": {\"duration\": 35.62, \"timestamps\": [[0, 13.71], [14.43, 35.62]], \"sentences\": [\"A large group of kids are shown running along a field and passing a ball back and fourth to each other.\", \" One throws the ball down the field and several run with the boy while he scores a goal.\"]}, \"v_TX8FGTL1flw\": {\"duration\": 116.68, \"timestamps\": [[0, 56.01], [44.92, 107.35]], \"sentences\": [\"A man is seen sitting on the ice speaking to the camera and leads into several shots of him grabbing fish from a pole.\", \"  The men presents the fish to the camera as well as speak to the camera and continue to grab and hold up fish.\"]}, \"v_YIEv6_HQtAc\": {\"duration\": 169.92000000000002, \"timestamps\": [[0, 60.32], [60.32, 158.03], [158.88, 169.92]], \"sentences\": [\"man is talking to the camera and drinking water in a basket field on a sunny day.\", \" man walks in the court and get ready to throw the ball into the board and score a basket.\", \" man sits and talk again to the camera.\"]}, \"v_z7zj8stU-kw\": {\"duration\": 4.64, \"timestamps\": [[0, 3.27], [3.27, 4.64]], \"sentences\": [\"A man is brushing his teeth in front of the camera.\", \" He then rinses the pink toothbrush under sink water.\"]}, \"v_7ih5UMIU7zE\": {\"duration\": 166.42000000000002, \"timestamps\": [[0, 166.42], [47.43, 157.26]], \"sentences\": [\"A cheerleading competition is shown in Disney.\", \"  The team starts cheering for the Tigers and then they group off.\"]}, \"v__CMIO5R_OGA\": {\"duration\": 35.06, \"timestamps\": [[0, 34.36], [14.2, 35.06]], \"sentences\": [\"A video is shown about a field hockey player.\", \"  She scores a goal at the end.\"]}, \"v_Te9e32TDiZ8\": {\"duration\": 147.63, \"timestamps\": [[0, 47.98], [47.24, 109.25], [110.72, 143.2]], \"sentences\": [\"A young girl is seen laying down on a table with a woman in front of her holding scissors.\", \" The woman then begins piercing the girl's lip and putting a jewel in.\", \" Afterwards she sits up, takes a drink of water, and wipes off her face.\"]}, \"v_V4S9ppnrXzc\": {\"duration\": 145.75, \"timestamps\": [[0, 23.32], [23.32, 44.45], [44.45, 145.75]], \"sentences\": [\"man is standing in a room talking to the camera.\", \" little baby is swimming in the pool.\", \" man is in the room showing the baby video again.\"]}, \"v_SrcZRhXkr2k\": {\"duration\": 94.13, \"timestamps\": [[0, 77.66], [65.42, 70.13], [71.07, 76.25], [78.13, 83.78]], \"sentences\": [\"Two people play a game of indoor racquetball.\", \" A player dodges backwards from the ball.\", \" The player slides across the floor to recover the ball.\", \" The match ends and the players congratulate each other.\"]}, \"v_RjBXzs2XvbY\": {\"duration\": 225.57999999999998, \"timestamps\": [[0, 38.35], [38.35, 145.5], [145.5, 146.63], [150.01, 160.16], [165.8, 223.33], [222.2, 225.58]], \"sentences\": [\"We see a man holding knife an pointing at parts.\", \" The man pushes the knife on a block and starts sharpening it.\", \" The man pours water on the knife.\", \" The man adds another block on the screen and puts water on the block.\", \" The man begins to sharpen the knife again.\", \" The man stops and shows the knife.\"]}, \"v_j_YzK7aHTIA\": {\"duration\": 113.87, \"timestamps\": [[0, 1.71], [1.71, 45.55], [30.18, 38.15], [45.55, 52.38], [52.38, 68.89], [68.89, 80.85], [84.83, 93.37], [93.37, 113.87]], \"sentences\": [\"We see the opening screen for a rum cake.\", \" We see the person put ingredients into a mixer.\", \" They pour the dry ingredients into a large bowl together before putting into the mixer.\", \" The mix is scooped into a bundt cake pan.\", \" The cake is placed in the oven and the person makes a glaze.\", \" The person pokes holes in the cake and pours in the glaze.\", \" Powdered sugar is sprinkled over the cake.\", \" We see the ending screen with two other videos.\"]}, \"v_3j2d27w3x5Q\": {\"duration\": 194.44, \"timestamps\": [[0, 19.44], [19.44, 59.31], [59.31, 117.64], [117.64, 148.75], [147.78, 168.19], [168.19, 194.44]], \"sentences\": [\"A young Caucasian male chef is standing in a kitchen and a picture of spaghetti is shown before the logo.\", \"The man is then shown again and various ingredients that he's about to use are featured.\", \"As he begins to cook,he grabs the ingredients and puts them in to the pan and starts to cook.\", \"The chef then adds spaghetti in a pot and stirs the sauce until he test the noodles.\", \"Once the noodles are done he tastes them and drains them.\", \"Once the meal is completed he then pours it into a bowl.\"]}, \"v_5Yq5GMPBguI\": {\"duration\": 118.05, \"timestamps\": [[0, 40.73], [40.14, 118.05]], \"sentences\": [\"A skinny woman is in her backyard cutting her yard with a push lawn mower and she is struggling.\", \"Patches of sand are in the backyard so the girl stops at the sand and turns back around making sure she stops at the jungle gym.\"]}, \"v_b7B0NRizzYo\": {\"duration\": 26.22, \"timestamps\": [[0, 26.22], [0, 25.69], [0.79, 26.22]], \"sentences\": [\"little kid is combing dry leaves on the yard.\", \" woman is standing next to a kid combing the dry leaves with a green rake.\", \" a woman and a kid are standing on a green grassy yard next to sidewalk raking the leaves.\"]}, \"v_nLAm7USuYbA\": {\"duration\": 80.13, \"timestamps\": [[0, 14.42], [14.42, 24.44], [24.44, 40.87], [40.87, 60.5], [60.5, 80.13]], \"sentences\": [\"An athletic young man is standing on a field and runs and jumps over a horizontal pole that is 5'6 high and lands onto the padded landing area below it and a slow replay of it plays.\", \" The man jumps again but this time at 5'10 high, he clears it, and once again it replays.\", \" The man is now running and jumping over the pole that is now 6 feet high, he clears it like he did all the other heights and once again it replays.\", \" Now the man is getting ready to jump and this one is 6'2 feet high, he clears it, lands on the padded landing, gives himself a thumbs up and walks off.\", \" The man runs and now he's jumping 6'4 feet high but unfortunately he knocks the pole off and as soon as he realizes it he gets up and is very disappointed in himself.\"]}, \"v_UR1e1MIRvvc\": {\"duration\": 69.45, \"timestamps\": [[0, 23.61], [22.92, 69.45]], \"sentences\": [\"A small group of people are seen standing in a circle playing instruments together while a large group of people watch on the sides.\", \" The people continue playing together as the crowd watches the people play from a far.\"]}, \"v_U7vH9pEfGVw\": {\"duration\": 164.1, \"timestamps\": [[0, 23.79], [27.9, 146.05], [149.33, 164.1]], \"sentences\": [\"A man in a suit is talking.\", \" A woman in a yellow dress starts dealing cards onto the table.\", \" The man in the suit talks to the camera again.\"]}, \"v_9RAW6QibWRs\": {\"duration\": 47.02, \"timestamps\": [[0, 46.08], [17.4, 29.62], [35.03, 39.03]], \"sentences\": [\"A lady squats outside washing clothes in a bucket.\", \" The lady looks at the camera and smiles.\", \" Lady wipes her forehead on her shoulder.\"]}, \"v_9WhPG89P-tg\": {\"duration\": 60.05, \"timestamps\": [[0, 60.05], [17.41, 60.05]], \"sentences\": [\"people are sitting in chairs inside a barbershop.\", \" man is sitting in a chair and the barber behind him is shaving his hair.\"]}, \"v_tZzse87ICr8\": {\"duration\": 21.27, \"timestamps\": [[0, 6.91], [6.38, 14.57], [14.36, 20.53]], \"sentences\": [\"A young girl is seen standing on the beach looking at the camera.\", \" The girl begins jumping down the beach as well as back.\", \" She goes back to where she started and looks at the camera.\"]}, \"v_sf77PM1CtNQ\": {\"duration\": 109.74000000000001, \"timestamps\": [[0, 38.96], [38.41, 63.65], [63.1, 69.68], [90.53, 99.86]], \"sentences\": [\"A backpack vacuum is sitting on the floor.\", \" A man puts the backpack on his back.\", \" He unplugs the vacuum and plugs it back in.\", \" He starts vacuuming the stairs.\"]}, \"v_4OIkfJ_IkpA\": {\"duration\": 88.74, \"timestamps\": [[1.33, 31.95], [27.95, 73.21], [71.88, 87.41]], \"sentences\": [\"A person is seen pushing a lawn pushing a lawn mower up a large hill as well as back down again.\", \" Several shots are shown of the boy pushing the machine and an older man walks in to help him.\", \" He fixes the machine and the small boy continues pushing the machine along.\"]}, \"v_9fw8ODTEso4\": {\"duration\": 153.09, \"timestamps\": [[0, 27.56], [27.56, 64.3], [64.3, 113.29], [113.29, 153.09]], \"sentences\": [\"A man on a soccer field made at a sandy beach puts a soccer ball down on the sand, walks back out of frame, and quickly appears running and then kicks the ball towards the goal with a goalie but he misses the goalie and it bounces off of the wall behind the goal.\", \"Different men take the place of the kicker and the goalie and the kicker attempts to kick it in the goal and the goalie blocks it.\", \"Another set of kicker and goalie are up, and this time the kicker successfully makes the goal.\", \"The last set of kicker and goalie are up, the man kicks, the goalie blocks it, immediately begins to celebrate and multiple men run to the goalie for a group hug.\"]}, \"v_E88Sr9H3Wi8\": {\"duration\": 169.85, \"timestamps\": [[0.85, 46.71], [48.41, 132.49], [91.72, 163.06]], \"sentences\": [\"A close up of drinks are shown that leads into a woman speaking to the camera.\", \" The woman has various ingredients laid out in front of her and begin mixing them all together.\", \" She pours the mixture into glass and ends by putting leaves inside and presenting them to the camera.\"]}, \"v_RpyIg_j4I3E\": {\"duration\": 184.94, \"timestamps\": [[0, 184.94], [1.85, 184.01], [70.28, 76.75], [77.67, 101.72], [102.64, 107.26], [108.19, 147.95], [148.87, 184.94]], \"sentences\": [\"A man in a yellow and green kayak kayaks the rough waters of a river.\", \" A few people kayak a long side him.\", \" The man in the yellow green kayak runs his kayak into the kayak of another person.\", \" They manage to break away from each other and continue kayaking.\", \" The rough waters push the man into rocks.\", \" He manages to break away but is pushed by the rough waters into the opposite side of the river, again into some rocks.\", \" He's able to paddle away, running into a rough area of water, causing a big splash of water onto himself.\"]}, \"v_udpVICVTQrQ\": {\"duration\": 29.26, \"timestamps\": [[0.29, 5.27], [6.29, 18.14], [18.73, 23.85], [24.14, 28.82]], \"sentences\": [\"A guy stands and touches his hair.\", \" A guy at the edge of the diving board extends his hand and dives into the water.\", \" The audience cheer or celebrate.\", \" The diver gets hugs from others.\"]}, \"v_tOCFOu8eOkU\": {\"duration\": 17.51, \"timestamps\": [[0.44, 17.25], [3.41, 5.08], [5.34, 10.68], [10.59, 16.98]], \"sentences\": [\"A toddler is given an ice cream cone to eat by an unseen subject while sitting in a high chair.\", \"  A toddler is sitting in a high chair reaching for an ice cream cone.\", \"  A hand holding the cone approaches the girl with the cone and gives it to her.\", \"  The toddler takes the ice cream cone and begins to eat it.\"]}, \"v_LqCg09IRp-o\": {\"duration\": 45.95, \"timestamps\": [[0, 10.34], [11.03, 34.69], [32.86, 44.57]], \"sentences\": [\"A man is seen laughing to the camera and looking off into the distance.\", \" He then roller blades down in between cones while moving in and out.\", \" He skates to the end and performs a hand stand.\"]}, \"v_VvlJjaLwGqY\": {\"duration\": 135.7, \"timestamps\": [[1.36, 44.78], [40.03, 97.02], [74.63, 133.66]], \"sentences\": [\"A woman is seen holding up a watermelon and speaking to the camera.\", \" She is then seen sitting in front of various ingredients and mixing them together into a bowl.\", \" The girl continues mixing it around and presents it to the camera.\"]}, \"v_UHNUmpx0nww\": {\"duration\": 108.9, \"timestamps\": [[0.54, 108.36], [0.54, 9.26], [13.07, 20.69], [51.73, 108.36]], \"sentences\": [\"Two soccer teams play against each other in a field of sand in front of rows of empty bleachers in a soccer stadium.\", \" The blue team scores a goal against the red team and two blue shirted players deliver a high five to each other in the sand pit.\", \"  A slow replay of the blue team goal, replays the last goal, in slow motion.\", \"The blue team scores another goal and two players hug briefly in reaction followed by another slow replay of the goal and followed by more playing in the sand between the two teams.\"]}, \"v_5KYUiMysyb0\": {\"duration\": 22.01, \"timestamps\": [[0.33, 21.13], [0.33, 1.54], [3.41, 19.59], [19.7, 22.01]], \"sentences\": [\"A commercial features a woman in a kitchen demonstrating how to clean a stainless steel kitchen sink with CLR brand cleaning solution.\", \"  An image of a solitary kitchen with a bottle of CLR cleaner on the countertop is shown.\", \"  A woman walks into the kitchen, grabs the CLR and a sponge and cleans the kitchen sink with it while running water.\", \"  The kitchen is shown by itself again with the CLR on the edge of the sink this time.\"]}, \"v_PJ72Yl0B1rY\": {\"duration\": 206.37, \"timestamps\": [[1.03, 206.37], [20.64, 92.87], [92.87, 206.37]], \"sentences\": [\"A group of athletes play beach soccer in several different games and locations surrounded by audiences in bleachers and dancing cheerleaders.\", \" A group of soccer players play beach soccer while an audience claps for them and cheerleaders perform routines in between video clips.\", \"  The men are shown winning trophies and making soccer goals until a final sponsor, marketing graphic appears.\"]}, \"v_twrPZghmNtA\": {\"duration\": 44.86, \"timestamps\": [[0, 6.5], [7.4, 40.37]], \"sentences\": [\"Two players in white shirts run towards the audience who are cheering, the player went by the metal fence and cheered with the audiences.\", \" Aerial view of the players are shown, they are playing football in a sandy ground, they are chasing and kicking the ball.\"]}, \"v_hsI_BHN5h_0\": {\"duration\": 158.69, \"timestamps\": [[4.76, 11.11], [21.42, 23.01], [82.52, 107.11], [94.42, 96.01], [130.92, 136.47]], \"sentences\": [\"People are laying on a beach.\", \" People are pushing a wheelbarrow of sand.\", \" People are playing volleyball on the beach.\", \" A crowd of people is applauding.\", \" A man in a yellow shirt is talking to the camera.\"]}, \"v_kqzIDPXbATw\": {\"duration\": 156.34, \"timestamps\": [[0, 36.74], [37.52, 62.54], [63.32, 153.99], [154.78, 156.34]], \"sentences\": [\"A man in a beekeepers outfit walks around a field of colorful boxes.\", \" He picks up a lawn cutter and places the strap attached to his lawn cutter around his body.\", \" He mows the grass that is around the boxes.\", \" He finishes cutting the grass and walks off the field.\"]}, \"v_xcBJP14YBvg\": {\"duration\": 61.0, \"timestamps\": [[0, 61], [3.35, 37.82], [37.82, 61]], \"sentences\": [\"A guy do tricks on a balance beam in front of many people at the olympics.\", \"the guy spins his legs around and around by using his hands on the balance beam to catch speed.\", \"He finally do a high twirl and lands great on a mat on the floor,he walks off the mat down the stirs and sits on a bench wit ha score of 9787.\"]}, \"v_-zZJmRT9udU\": {\"duration\": 161.75, \"timestamps\": [[0, 15.37], [20.22, 46.91], [49.33, 161.75]], \"sentences\": [\"a man is seated in a building in front of a curtain.\", \" He is talking from behind a set of bongo drums.\", \" He then shows how to play the drums, hitting them to a beat with his hands.\"]}, \"v_9q6wWG6ql4E\": {\"duration\": 56.17, \"timestamps\": [[0, 2.25], [2.53, 26.96], [26.96, 56.17]], \"sentences\": [\"A little girl talks and stands in the playground.\", \" Then, the little girl climbs the monkey bar.\", \" Then, the little girl returns climbing the monkey bars.\"]}, \"v_1rf7t4sYtIA\": {\"duration\": 38.17, \"timestamps\": [[0, 38.17], [4.01, 31.3], [14.89, 25.77], [31.68, 38.17]], \"sentences\": [\"A guy is holding a leaf blower.\", \" The guy walks on the sidewalk with the leaf blower.\", \" The guy picks up the orange cord and moves it.\", \" The guy stops in the driveway.\"]}, \"v_5pl_qttD8Fc\": {\"duration\": 75.78999999999999, \"timestamps\": [[0, 8.72], [10.23, 11.75], [19.71, 21.22], [23.12, 48.51], [48.51, 75.79]], \"sentences\": [\"A woman is smoking on a bed.\", \" A dog licks its lips.\", \" The girl turns on the shower.\", \" S/he puts makeup and accessories on.\", \" She walks down the hall into a limo.\"]}, \"v_MTJ1EtiizVQ\": {\"duration\": 103.35, \"timestamps\": [[0, 56.33], [38.24, 99.74]], \"sentences\": [\"A large stage is shown followed by a dancer walking in and starting a dance with another.\", \" The two continue dancing around the stage and end by holding a pose and the man kissing the woman on the cheek.\"]}, \"v_UrQ7Jq1s95o\": {\"duration\": 21.27, \"timestamps\": [[0, 3.19], [4.04, 18.4], [18.5, 21.27]], \"sentences\": [\"A man is in a gym, weight lifting.\", \" He bends at the knees, and lifts a barbell up to his chest.\", \" He then lifts it above his head, dropping it to the ground again as a small crowd claps.\"]}, \"v_OFe8toY6Ch4\": {\"duration\": 190.26, \"timestamps\": [[7.61, 29.49], [32.34, 62.79], [64.69, 137.94], [137.94, 174.09]], \"sentences\": [\"A person throw a heavy ball, then two men brush with sticks on front the ball, then the ball hits another ball.\", \" Then, a woman throws the ball and other women brush the floor.\", \" After other men throws the heavy ball.\", \" Next a man throws a heavy ball that goes very fast and hits other balls.\"]}, \"v_SBn1i9YqN1k\": {\"duration\": 89.05, \"timestamps\": [[0, 4.9], [18.7, 61.44], [64.56, 65.01], [67.23, 70.79], [75.69, 77.92]], \"sentences\": [\"A guy take a knife from a wooden block and a knife sharpener from a drawer.\", \" The guy is sharpening a knife.\", \" The guy places the knife and the elongated sharpener on the counter top.\", \" A person brings out a wooden chopping board.\", \" The person places a soaked cloth underneath the board.\"]}, \"v_yc9Bc8G7Y_Q\": {\"duration\": 7.18, \"timestamps\": [[0, 2.19], [1.97, 5.17], [4.95, 6.92]], \"sentences\": [\"A camera shows a forest off in the distance.\", \" A person is then seen riding in on a dirt bike.\", \" The person rides up over a hill while the camera captures his movements.\"]}, \"v_f4UdgFrorCo\": {\"duration\": 209.17000000000002, \"timestamps\": [[0, 62.75], [63.8, 123.41], [123.41, 165.24], [165.24, 209.17]], \"sentences\": [\"A young male dressed in a white shirt and black tie is having a conversation with a girl sitting down at the table.\", \"The young lady then stands up and walks over to the radio and turns it on.\", \"Both of them then appear on the stage and begin ballroom dancing with one another.\", \"As they continue,a girl walks in and stands in the corner shocked that the two are dancing.\"]}, \"v_JXyi7hFT26w\": {\"duration\": 203.22, \"timestamps\": [[0, 6.1], [11.18, 178.84], [6.1, 169.69], [178.84, 203.22]], \"sentences\": [\"An introduction comes onto the screen for a video about curling.\", \" A woman's curling team does an interview about their career in curling and what they have learned.\", \" Several shots are shown of a women's curling team during practice and in their leisure time while a man narrates the scenes.\", \" The video ends with the closing credits being shown on the screen.\"]}, \"v_dcEdjqyHj8M\": {\"duration\": 62.53, \"timestamps\": [[0, 2.19], [2.19, 21.89], [21.26, 43.46], [43.46, 62.53]], \"sentences\": [\"Two men are standing on the stage competing against one another.\", \" They both begin by racing to cut down a log and then cutting down a smaller piece of the tree into small pieces.\", \"Next,they move to do the same thing again with different trees.\", \"Finally,the man in the red shirt finishes and wins and begins to cheer as his replay begins.\"]}, \"v_h-MWdTHW_Eg\": {\"duration\": 62.07, \"timestamps\": [[0, 3.1], [3.1, 15.21], [15.21, 60.52], [45.31, 60.52]], \"sentences\": [\"A man hits a birdie with a racket and a girl picks it up.\", \" The girl walks to the other side then hits the birdie to the man.\", \" He picks it up and hits it to her, and she sends it back to him and back and forth.\", \" Two people are walking in the parking lot.\"]}, \"v_2NMTArm9IkA\": {\"duration\": 13.28, \"timestamps\": [[0, 2.92], [2.99, 13.28]], \"sentences\": [\"A man is talking in his kitchen.\", \" He cuts open a pink grapefruit and salts it before using it to clean the inside of his sink.\"]}, \"v_twJ2uE1GS2I\": {\"duration\": 198.9, \"timestamps\": [[0, 20.88], [18.9, 46.74], [42.76, 74.59], [72.6, 111.39], [103.43, 198.9]], \"sentences\": [\"The woman with apron is standing next to the counter.\", \" The sifted the flour, mixed the chocolate and turned on the oven.\", \" The woman add hot water in the chocolate, sieved the flour in a bowl, add vanilla extract, pour sugar and egg and butter, oil and chocolate mixture.\", \" The woman mixed all the ingredients put it in a pan and put in the oven.\", \" She mixed butter, flour and and vanilla and put on the cake and dust it with confectioners sugar.\"]}, \"v_5Foo5NSjEXQ\": {\"duration\": 120.02, \"timestamps\": [[0, 16.2], [13.8, 26.41], [38.41, 45.61], [52.21, 105.62], [106.82, 107.42]], \"sentences\": [\"A chef is standing in a kitchen.\", \" He puts pasta into a large pot.\", \" He stirs the ingredients in the pot.\", \" He takes the pasta out of the pot and puts it in a strainer.\", \" A bowl of lasagna is shown.\"]}, \"v_85RJm2qymRY\": {\"duration\": 71.47, \"timestamps\": [[0.71, 21.44], [26.8, 68.97]], \"sentences\": [\"A close up of a drill is shown in the ledge of a tire and a man speaking to the camera.\", \" The man pans around the garage and leads into the man taking off a tire and speaking again to the camera.\"]}, \"v_r_jey4tT7zo\": {\"duration\": 52.41, \"timestamps\": [[0, 8.91], [9.96, 38.26], [39.57, 52.41]], \"sentences\": [\"A man in only his underwear is in his bedroom.\", \" He holds onto a bunk bed as her performs ballet techniques.\", \" He warms up, lifting his legs into the air gracefully.\"]}, \"v_Gl6EMAgTNKo\": {\"duration\": 62.95, \"timestamps\": [[0, 6.92], [31.16, 33.68], [37.14, 38.08], [45.32, 45.95]], \"sentences\": [\"People are going down a river in a raft.\", \" People are kayaking in a river.\", \" A person is riding a horse in water.\", \" Food is being shown on a table.\"]}, \"v_4usf67inE3w\": {\"duration\": 159.29, \"timestamps\": [[0.8, 28.67], [25.49, 90], [88.41, 156.1]], \"sentences\": [\"A camera pans around a bowling alley and leads into a boy throwing a ball down.\", \" The boy throws another ball when another boy steps in to throw ball.\", \" The boys continue taking turns playing as well as girls on the other side.\"]}, \"v_sdR443ncw-I\": {\"duration\": 23.59, \"timestamps\": [[0.35, 5.43], [4.84, 16.75], [14.39, 22.53]], \"sentences\": [\"A woman is seen standing away from the camera laying her hair down.\", \" She begins spinning around and flipping her hair off into the distance.\", \" She continues twirling and playing with her hair and ends by looking to the camera.\"]}, \"v_BioBrxuKOsw\": {\"duration\": 68.45, \"timestamps\": [[0, 68.45], [28.75, 32.86], [56.47, 60.92]], \"sentences\": [\"People are riding horses on a track.\", \" A crowd of people is watching them.\", \" A person in a red shirt is sitting on a horse.\"]}, \"v_05BGDQvQ2YM\": {\"duration\": 173.76, \"timestamps\": [[0, 86.01], [85.14, 173.76]], \"sentences\": [\"A small group of people are seen riding around a bumper car arena and crashing into one another while the camera effects move forward and backwards a frame.\", \" The people continue riding around hitting one another while the camera effects are in use and ends with credits across the screen.\"]}, \"v_tTkavaWq0QM\": {\"duration\": 181.98, \"timestamps\": [[0, 104.64], [66.42, 181.98]], \"sentences\": [\"A man and woman are seen performing a tango routine that leads into another couple performing a tango routine.\", \" The new couple continues dancing around the stage with one another and ends by holding a pose and presenting each other.\"]}, \"v_rJpFVvho0o4\": {\"duration\": 167.52, \"timestamps\": [[0, 4.19], [5.03, 49.42], [50.26, 72.03], [72.87, 161.66], [162.5, 167.52]], \"sentences\": [\"A \\\"Total Immersion Swimming\\\" logo and \\\"Total Immersion Freestyle Demo by Shinji Takeuchi\\\" appear on screen.\", \" Takeuchi swims the length of an indoor pool.\", \"  The video changes to an underwater view of the Takeuchi swimming.\", \"  The video returns to abolve the pool shots of Takeuchi swimming.\", \"  The \\\"Total Immersion Swimming\\\" logo is shown on screen again.\"]}, \"v_zrnxRV3yLR8\": {\"duration\": 69.17, \"timestamps\": [[0, 5.88], [5.88, 20.41], [22.83, 29.4], [35.97, 39.43], [40.12, 47.04]], \"sentences\": [\"A bedroom then its furniture disappears and leaves the room empty.\", \" Pieces of wallpaper appear on the walls before the furniture reapers in the room.\", \" The adhesive strip is removed from the wall paper and is applied to the wall by hand.\", \" A man smooths wallpaper on a wall with his hands and a brush.\", \" Pieces of wall paper are trimmed with a razor.\"]}, \"v_lL2XqxgNIeQ\": {\"duration\": 108.46000000000001, \"timestamps\": [[0, 17.9], [17.9, 49.35], [49.89, 83.51], [83.51, 108.46]], \"sentences\": [\"A state park and nature is shown ranging from the skies,bees,and the water.\", \"A young black female then begins to talk standing on a ramp holding up a large blue tube.\", \"She is then shown in the water with another male enjoying the water and talking to other people at the lake.\", \"Now,the girl gets out the tube and jumps in the water to take a swim.\"]}, \"v_L_8Gyi8FMk4\": {\"duration\": 19.69, \"timestamps\": [[0, 9.35], [9.45, 19.69]], \"sentences\": [\"A young girl is seen peeling potatoes while looking up to the camera and other children moving around her.\", \" Another boy pushes potato skin onto the girl and she looks up to the camera while speaking.\"]}, \"v_69X7tP6p7E0\": {\"duration\": 70.06, \"timestamps\": [[0, 29.07], [29.42, 56.39], [56.04, 70.06]], \"sentences\": [\"Multiple teenage boys are shown in a gym throwing dodge balls at each other.\", \"As they play,an oval begins to shadow a boy who jumps in and out of the game as he pleases.\", \"The player comes back and does a flip to avoid getting hit by the ball.\"]}, \"v_6EWzgWd72Cs\": {\"duration\": 237.94, \"timestamps\": [[10.71, 48.78], [48.78, 130.86], [130.86, 237.94]], \"sentences\": [\"New reports are giving news about extreme dog grooming,people are cutting dogs hair and trimming there nails.\", \"people are Dying the dogs hair different colors by using some kind of liquid material.\", \"Then the dogs are being entered into a contest for the best groomed looking dogs.\"]}, \"v_KePjkCySBCs\": {\"duration\": 40.79, \"timestamps\": [[0.82, 10.6], [9.79, 32.83], [27.33, 39.56]], \"sentences\": [\"A large group of people are seen standing around a city center and a man seen standing in the middle wearing roller blades.\", \" The man then rides past the bottles knocking them over and zooming past one by one.\", \" The person continues pushing along and ends by yelling to the camera.\"]}, \"v_Cu-p0FZOqi8\": {\"duration\": 137.07, \"timestamps\": [[0, 34.95], [34.27, 114.45]], \"sentences\": [\"A man is seen diving backwards into a pool and the camera shows his jump several more times.\", \" The man performs several more dives off different boards while another watches from the sides.\"]}, \"v_3pjVV7A6Apw\": {\"duration\": 201.29, \"timestamps\": [[0, 17.11], [19.12, 81.52], [89.58, 125.81], [134.87, 201.29]], \"sentences\": [\"A progrip container is shown next to a bucket.\", \" It changes to color, then a man is shown cleaning a window.\", \" The equipment sits gathered together, cutting to the clean window.\", \" The man cleans the window again, raking the cleaner across the window over and over before wiping it dry with a rag.\"]}, \"v_B8KJJecq2F0\": {\"duration\": 166.84, \"timestamps\": [[0, 51.72], [54.22, 135.97], [99.27, 160.16]], \"sentences\": [\"A large group of people are seen standing around outside with one hitting a ball.\", \" The men step up and take turns hitting a ball with a bat.\", \" The men continue hitting the ball while another looks to the camera.\"]}, \"v_9ZboVy59qrw\": {\"duration\": 115.03, \"timestamps\": [[0, 5.18], [47.16, 63.27], [75.92, 82.82]], \"sentences\": [\"Four men are holding a trophy over their head.\", \" People are riding horses on a field.\", \" A man in a suit is standing up talking into a microphone.\"]}, \"v_ERGoTBC8NkA\": {\"duration\": 60.19, \"timestamps\": [[0, 60.19], [0.6, 60.19], [29.19, 43.64], [43.03, 60.19]], \"sentences\": [\"A woman is standing in a bathroom.\", \" She is holding an electric toothbrush in her hand.\", \" She pushes the button and puts toothpaste on the toothbrush.\", \" She wets the toothbrush in the sink and begins to brush her teeth.\"]}, \"v_DEduSDgovOQ\": {\"duration\": 170.62, \"timestamps\": [[0, 42.66], [44.36, 102.37], [103.23, 157.82], [159.53, 166.36]], \"sentences\": [\"People groom dogs, then a woman wash ans brush a small dog.\", \" A woman cuts the hair of a dog with a shaving machine, then she cuts with scissors.\", \" Then, the woman cuts the hair of the dog's face.\", \" After, the woman cuts the hair of the tail and the hair in the abdomen.\"]}, \"v_ByF8Pg3xXNA\": {\"duration\": 20.25, \"timestamps\": [[0, 20.25], [0.3, 18.63], [16.2, 17.21]], \"sentences\": [\"A man in a blue shirt is kneeling down.\", \" He is washing clothes in a bucket in the sink.\", \" He takes a towel out and wrings it out.\"]}, \"v_-oExUcmbTEE\": {\"duration\": 48.9, \"timestamps\": [[0.24, 21.52], [20.05, 48.17]], \"sentences\": [\"A woman is seen standing before a track making hand gestures to another and then running down the track.\", \" The woman then leaps into a pit and sand and walks away while others record her jump and she goes again.\"]}, \"v_Vncj0EkAGio\": {\"duration\": 61.58, \"timestamps\": [[0.62, 29.25], [20.94, 58.81]], \"sentences\": [\"A woman is seen speaking and punching to the camera followed by pouring out various liquids into a glass.\", \" She finishes mixing the drink and presents the glass to the camera.\"]}, \"v_Ir_Ul8FaXs4\": {\"duration\": 37.73, \"timestamps\": [[0, 37.73], [2.08, 3.02], [14.9, 19.81], [23.39, 27.17]], \"sentences\": [\"A woman is watching her children at the beach.\", \"  The woman begins to run back from the waves.\", \"  The camera pans to hotels in the distance.\", \"  The camera circles to a carnival.\"]}, \"v_PRT0Z9HPF4U\": {\"duration\": 141.25, \"timestamps\": [[0, 10.59], [12.01, 86.16], [92.52, 141.25]], \"sentences\": [\"A man leans over a pool table, cue in hand.\", \" He hits the white ball, knocking the other balls toward the pockets.\", \" A young boy watches and waits his turn.\"]}, \"v_50nJ8UkOGwg\": {\"duration\": 160.44, \"timestamps\": [[0, 36.1], [37.7, 125.95], [133.97, 160.44]], \"sentences\": [\"A man is parasailing through the ocean.\", \" He is moving very quickly, and clouds are building.\", \" He is struggling to stay upright while he sails.\"]}, \"v_qUFPq8D0jMc\": {\"duration\": 179.32, \"timestamps\": [[0, 47.52], [27.79, 174.84]], \"sentences\": [\"A group of people are seen putting lunch boxes on a table followed by a girl riding down the slide looking over and people jump roping.\", \" More shots are shown of people jump roping together and speaking to the camera as well as including other people in on the jumps.\"]}, \"v_Ue90f5r-2Qw\": {\"duration\": 156.53, \"timestamps\": [[0, 41.48], [37.57, 126.79], [100.18, 152.61]], \"sentences\": [\"A man is seen speaking to the camera while holding up a violin.\", \" He plays the instrument on his shoulders and continues to demonstrate how to play.\", \" He moves the instrument around over and over again while still stopping to speak to the camera.\"]}, \"v_KxJpfKZbNiI\": {\"duration\": 15.4, \"timestamps\": [[0, 9.31], [0.08, 14.93], [9.93, 11.62], [12.93, 15.09]], \"sentences\": [\"A man is helping a little girl cross the monkey bars.\", \" A man in a white shirt is sitting down filming it.\", \" She falls off the monkey bars.\", \" She gives the man a high five.\"]}, \"v_gVKgXyKh4BQ\": {\"duration\": 6.5, \"timestamps\": [[0.23, 3.02], [1.85, 6.27]], \"sentences\": [\"A man is seen running down a large track while a group of people sit and stand around him watching.\", \" The man then jumps into a large pit while the camera continues to follow him.\"]}, \"v_66nA52ux2Sk\": {\"duration\": 216.34, \"timestamps\": [[0, 101.68], [102.76, 125.48], [126.56, 216.34]], \"sentences\": [\"A woman sits at a wheelchair playing the drums.\", \" The woman stops and moves herself near a hi hat .\", \" With her drumsticks, she plays the hi hat.\"]}, \"v_MDucYea4ie8\": {\"duration\": 80.02, \"timestamps\": [[1.6, 41.61], [25.21, 77.62]], \"sentences\": [\"A large group of children are seen riding around one another on a bumper car game crashing into one another.\", \" The kids continue driving around and bumping into one another and ends with the all stopping.\"]}, \"v_eCXiGAChev4\": {\"duration\": 83.96000000000001, \"timestamps\": [[0, 83.96], [10.08, 17.63]], \"sentences\": [\"woman is cleaning utensils in a bucket.\", \" woman is standing on the field wearing a black dress.\"]}, \"v_x768VAsOQSw\": {\"duration\": 75.37, \"timestamps\": [[0, 27.13], [28.26, 32.03], [32.79, 36.18]], \"sentences\": [\"Two men are sitting on chairs in front of snow mobiles.\", \" There is a hole in the ice in front of them.\", \" Two men swim out of the hole.\"]}, \"v_zmaDLAZu4kA\": {\"duration\": 30.14, \"timestamps\": [[0, 27.28], [3.01, 6.18], [6.03, 12.21], [11.75, 30.14]], \"sentences\": [\"There's a man in a white shirt and hat riding a horse in a large stable, chasing a calf to catch it by a rope.\", \" The man begins chasing the calf on horseback as the calf runs fast.\", \" He throws the rope which in the form of a noose, around the calf's neck and captures it cruelly.\", \" After the calf falls down, he gets off the horse and ties its front and hind feet together and then walks abck to get on the horse.\"]}, \"v_Zzj03Cew2vk\": {\"duration\": 27.38, \"timestamps\": [[0.27, 6.57], [5.89, 21.9], [20.4, 25.73]], \"sentences\": [\"A close up of a beauty product is shown that leads into a person grabbing the bottle.\", \" The woman rubs the lotion into her skin and leads into her rubbing lotion on the beach.\", \" More close ups of bottles are seen as well as text on the screen.\"]}, \"v_1RKExOpIGas\": {\"duration\": 215.29, \"timestamps\": [[0, 41.98], [37.68, 93.65], [93.65, 213.13]], \"sentences\": [\"A man is seen climbing on a dirt bike and shown speaking to the camera with others.\", \" Several clips are shown of people riding around on dirt bikes.\", \" One person falls off their bike and the people continue riding around on the track.\"]}, \"v_5co1E0umtJQ\": {\"duration\": 188.36, \"timestamps\": [[0, 63.1], [45.21, 143.15], [139.39, 182.71]], \"sentences\": [\"A person is seen sitting at the top of the water and moving themselves slowly to the bottom.\", \" The person is then seen swimming around under the ocean while the camera captures their movements.\", \" The person moves around demonstrating proper kicking and turns.\"]}, \"v_8AsV0ojyUMU\": {\"duration\": 118.78999999999999, \"timestamps\": [[2.38, 36.83], [28.51, 112.26]], \"sentences\": [\"A man is seen speaking to the camera and holding up a bike wheel as well as a frame.\", \" The man puts the tire on the frame and tightens the screw and shows off his work while holding his hands out to the camera.\"]}, \"v_slQuWp_rMTE\": {\"duration\": 7.87, \"timestamps\": [[0, 6.57], [0.24, 6.57], [6.85, 7.87]], \"sentences\": [\"A person is rowing a canoe down a river.\", \" A child is sitting in front of them.\", \" A bicycle is leaning against a railing on a bridge.\"]}, \"v_MiOJxYa5Nt4\": {\"duration\": 17.28, \"timestamps\": [[0, 3.71], [3.11, 13.99], [14.25, 17.28]], \"sentences\": [\"A man is seen stepping into a circle and grabbing onto an object.\", \" The man then begins spinning around in circles with the object.\", \" He finally throws the object off into the distance.\"]}, \"v_ePaFTey15ho\": {\"duration\": 199.46, \"timestamps\": [[0, 3.99], [3.99, 46.87], [46.87, 59.84], [59.84, 89.76], [89.76, 100.73], [100.73, 164.55], [165.55, 188.49], [188.49, 199.46]], \"sentences\": [\"A black into screen with the description of the drink that's going to be made, the website and a logo are displayed.\", \"A man wearing a black shirt and a red tie is now standing behind a bar with a lot of alcohol supplies in front of him and he begins pouring many different ingredients into a large, silver cup.\", \"When he's done with his ingredients he puts a smaller, clear cup turned upside down into the silver cup to create a cover, and begins to shake them both vigorously until he's satisfied with the mixture.\", \"When the man stops shaking it he hits the side of the cup with his palm three times and removes the clear cup then puts a silver strainer on the top of the silver cup and pours the mixed drink into a smaller clear cup and adds a few ice cubes to it.\", \"The man grabs a napkin and begins to dry the insides of the clear cup and the silver cup he used to mix the drink.\", \" More ingredients are picked up and poured back into the silver cup, ice is added, and he puts the clear cup back into the silver cup and once again he begins to shake it vigorously until it's completely mixed,taps the sides when it's done, puts the strainer on the top of the silver cup and begins to pour the mixed contents into the cup that already had the alcohol in it.\", \"The man then picks up a silver shaker and gently pours on what looks like powdered chocolate or cinnamon, puts the cup on a black napkin and then puts two black stirring straws into the cup.\", \"The outro appears and it's the same as the intro.\"]}, \"v_LIJBolW8k5o\": {\"duration\": 131.26, \"timestamps\": [[0, 62.35], [47.91, 131.26]], \"sentences\": [\"A camera pans around a large group of people are seen kite surfing along the water while some sit on the sides to watch.\", \" More clips are shown of people riding around along the water with some falling in and others standing back up.\"]}, \"v_s4Ryxk3TxKA\": {\"duration\": 52.2, \"timestamps\": [[0, 6.79], [8.09, 40.45], [40.98, 52.2]], \"sentences\": [\"A group of boys are outside a fence.\", \" They are using paint brushes to paint the fence together.\", \" They are using white paint, and getting into the corners.\"]}, \"v_Ny49eEt1OJg\": {\"duration\": 85.8, \"timestamps\": [[0, 18.02], [18.45, 40.75], [41.18, 44.61], [45.47, 65.21], [56.63, 85.8]], \"sentences\": [\"A man in a gray hoodie applies cement on a wall.\", \" Across from him, a man in a striped hoodie, applies cement on a wall, too.\", \" The man in the striped hoodie stops.\", \" The man in the gray hoodie continues applying the cement.\", \" The man in the striped hoodie returns and applies more cement on the wall.\"]}, \"v_Y9B22Ii7-eE\": {\"duration\": 206.8, \"timestamps\": [[5.17, 20.68], [21.71, 71.34], [72.38, 106.5], [106.5, 109.6], [116.84, 127.18], [134.42, 137.52], [138.55, 143.72], [143.72, 166.47], [168.54, 181.98], [183.02, 196.46], [196.46, 198.53]], \"sentences\": [\"A man talks to the camera while holding up a tray of eggs.\", \" The man puts down the tray of eggs while continuing to talk to the camera.\", \" The man begins to heat up a pan while continuing to talk.\", \" The man walks to one side of the table and gets a plate of vegetables.\", \" The man demonstrates using a spatula with the pan.\", \" The man puts butter in the pan an spreads it around.\", \" The man pours some egg mixture into the pan.\", \" The man uses the spatula on the cooking egg mixture while manipulating the pan.\", \" The man adds several other ingredients into the cooking egg.\", \" The man folds the egg and plates it.\", \" The man garnishes the egg dish.\"]}, \"v_InVpvGiubi0\": {\"duration\": 201.53, \"timestamps\": [[0, 47.36], [30.23, 154.17], [171.3, 201.53]], \"sentences\": [\"A man kneels next to a pile of wood stacked together and holds objects in front of the camera.\", \" He lights a match using the objects and blows onto the stick and puts into the pile.\", \" He steps out of frame and the camera records the fire taking place.\"]}, \"v_O_tZAD_opA4\": {\"duration\": 74.24, \"timestamps\": [[0, 2.23], [4.08, 72.01], [15.96, 72.01], [33.03, 40.46]], \"sentences\": [\"A woman holds a rope in a hand.\", \" She then stands in front of a child gymnast.\", \" She begins to instruct her.\", \" She helps her stand on her head.\"]}, \"v_UH_z4C6sv3E\": {\"duration\": 54.1, \"timestamps\": [[0, 8.66], [8.66, 54.1], [46.8, 54.1]], \"sentences\": [\"A man is playing with his beard.\", \" He picks up a shaver and starts shaving his beard off.\", \" He tilts his head up and shaves his neck.\"]}, \"v_5ssP_EapV9Q\": {\"duration\": 101.8, \"timestamps\": [[0, 20.36], [23.41, 72.78], [64.13, 96.71]], \"sentences\": [\"A group of players are seen playing hockey on the ice.\", \" People continuously skate around the ice while pushing a puck.\", \" The men moves past one another and ends by skating away.\"]}, \"v_v9APkG4il4Q\": {\"duration\": 30.02, \"timestamps\": [[0.45, 6], [4.95, 16.66], [14.71, 26.87]], \"sentences\": [\"A person is seen walking across a long rope.\", \" Several more clips are shown of the person walking from various angles.\", \" The man finishes to the other side and smiles to the camera.\"]}, \"v_s2ra7HNzIF0\": {\"duration\": 60.58, \"timestamps\": [[0, 7.57], [7.57, 13.63], [13.63, 26.35], [26.35, 44.53], [51.19, 56.34], [56.64, 60.58]], \"sentences\": [\"We see a title screen over the image.\", \" A lady licks an ice cream cone and holds a baby.\", \" the lady takes the pacifier from the baby and lets the baby eat ice cream.\", \" The baby makes a face and stare at the camera as she eats.\", \" the lady puts the pacifier back in the babies mouth and eats her ice cream.\", \" We see the closing scene.\"]}, \"v_QQBmydn6--I\": {\"duration\": 226.67000000000002, \"timestamps\": [[0, 10.2], [13.6, 45.33], [28.33, 82.74], [153, 226.67]], \"sentences\": [\"A man lights a piece of paper on fire.\", \" He then places it on a stack of sticks.\", \" The sticks catch fire and spread.\", \" The man guts a fish with a knife.\"]}, \"v_Doy6s1y58uc\": {\"duration\": 8.55, \"timestamps\": [[0.47, 7.99], [0.68, 7.99], [8.25, 8.55]], \"sentences\": [\"A man in a green shirt throws a dart.\", \" A man in a black shirt stands behind him.\", \" A dart board is shown on the screen.\"]}, \"v_Xq9ueKle4fY\": {\"duration\": 129.29, \"timestamps\": [[0, 29.09], [29.09, 129.29]], \"sentences\": [\"This woman is bathing the dog to make him clean again and when she walks away the dog shakes a little bit.\", \" Then she comes back and dries the dog off using a towel and then she blow dries the dog and combs it's hair.\"]}, \"v_LACH47i14lY\": {\"duration\": 101.82, \"timestamps\": [[0, 11.71], [0, 101.82], [11.71, 45.82], [29.53, 45.82], [46.33, 98.77], [78.91, 83.49], [98.77, 101.82]], \"sentences\": [\"We see a newscaster speak in a studio.\", \" On the right there is a lady speaking in sign language with her hands and the weather cycles above her.\", \" We switch and see men playing a game of soccer.\", \" We see an interview with one man and see the team hug the man.\", \" We see another game with other teams.\", \" We see the men of the winning team hug each other.\", \" We then return to the newscaster in the studio.\"]}, \"v_kl7qwEgYLZU\": {\"duration\": 31.42, \"timestamps\": [[0, 18.54], [18.69, 31.42]], \"sentences\": [\"two girls are playing on a seashore doing a sand castle and playing with waves.\", \" two girls are sitting on table playing a board game.\"]}, \"v_o8-v0rPP06U\": {\"duration\": 106.22999999999999, \"timestamps\": [[0, 3.19], [3.19, 70.11], [70.11, 89.77], [89.77, 106.23]], \"sentences\": [\"A male wearing a yellow shirt appears with the white words and numbers indicating his name as Angellot Caro,his #10 and his team name is Colombia Futsal and the team names and the score appears on the upper left corner.\", \"The male is smiling and running on a court and he kicks the soccer ball into the goal, blocks passes the ball and etc on numerous occasions and they are shown at different angles.\", \"The focus is no longer just on #10 and it shows other soccer players just playing and doing different moves at different angles.\", \"The focus is now back on #10 and all of the moves he makes during different soccer games.\"]}, \"v_Cm8hWFFA16I\": {\"duration\": 209.0, \"timestamps\": [[8.36, 133.76], [59.57, 111.82], [143.17, 173.47]], \"sentences\": [\"A man in a white shirt is getting his shoe cleaned.\", \" A person in a striped shirt walks up next to them.\", \" The man stands up and gets handed two boxes.\"]}, \"v_iq0h4m3I8hY\": {\"duration\": 217.32999999999998, \"timestamps\": [[0, 3.26], [3.26, 115.18], [115.18, 217.33]], \"sentences\": [\"Multiple men are outside wearing vest and helmet watching other guys pump up rafts.\", \"Several rafts then appear and many people are white water rafting and flipping over.\", \"A man then appears on the side with a paddle dancing on top of the rocks as he watches the others continue to kayak and fall into the water each change they hit a rock or encounter a wave.\"]}, \"v__QyQSAtMdj8\": {\"duration\": 183.97, \"timestamps\": [[0, 53.35], [54.27, 150.86], [143.5, 183.97]], \"sentences\": [\"Shots of a snowy mountain are shown as well as people riding up the mountain and waving to the camera.\", \" Several shots are then shown of people riding down the mountain and zooming in on their faces.\", \" The people continue to ride around and end with them all sliding down on their butts.\"]}, \"v_GgiaxJ1JeSM\": {\"duration\": 99.99000000000001, \"timestamps\": [[1.5, 43.49], [33, 96.49]], \"sentences\": [\"A large group of people are seen sitting in bumper cars on a large track and begin moving and pumping into one another.\", \" The people continue to drive around one another and crash into each other while the camera follows their movements.\"]}, \"v_5oPGbuL8G5Y\": {\"duration\": 188.22, \"timestamps\": [[10.35, 85.64], [77.17, 185.4]], \"sentences\": [\"Three people are seen riding in the back of a boat and leads into a person riding skis on the back.\", \" The man falls in the water while the camera stops and picks up again and the skier follows from behind.\"]}, \"v_lNvX6h3o4EA\": {\"duration\": 32.79, \"timestamps\": [[0, 26.89], [28.2, 32.79]], \"sentences\": [\"A man sits at the front of a class while playing a guitar and speaking.\", \" When he is done, he stands up to walk away.\"]}, \"v_4At1Vd-0lWE\": {\"duration\": 162.89, \"timestamps\": [[0, 55.38], [55.38, 118.91], [118.09, 162.89]], \"sentences\": [\"A man in a woman are in a room with three white walls and a glass wall behind them playing racket wall ball.\", \"The two continue to play and take turns getting to the ball making it hit the wall.\", \"After they are done,the two leaves the room and and begin talking to the crowd of people that are sitting in the room watching them.\"]}, \"v_gIf0VWXI_DY\": {\"duration\": 203.87, \"timestamps\": [[0, 30.58], [30.58, 80.53], [79.51, 173.29], [172.27, 203.87]], \"sentences\": [\"The outside of a tattoo studio is shown and then they move into the inside and show various art work.\", \"The tattoo artist then appears,talks and then begins shaving a lady's left hand.\", \"The artist proceeds to prep for the tattoo and one he removes the outline begins the tattoo on her finger next to her pinky.\", \"Once the man is finished,he stops and seeks approval from the customer.\"]}, \"v_ave_VDl3LwE\": {\"duration\": 69.17, \"timestamps\": [[0, 13.49], [13.83, 69.17]], \"sentences\": [\"A still of a woman is seen holding mustard and leads into a picture of her pouring a drink into a cup.\", \" The videos transitions into a girl holding a piece of wood and swinging an axe to chop it in half.\"]}, \"v_NDyc4PZE954\": {\"duration\": 186.09, \"timestamps\": [[0, 14.89], [16.75, 51.17], [53.03, 186.09]], \"sentences\": [\"A countdown from ten is shown on the screen.\", \" A news caster is talking before moving images.\", \" A man is shown talking inside and outside a store, where he shines shoes for customers.\"]}, \"v_r8hXEpP7HH0\": {\"duration\": 75.02, \"timestamps\": [[0, 6], [5.25, 47.27], [43.51, 75.02]], \"sentences\": [\"The man in white uniform fixed the chubby man's belt.\", \" Two men entered the ring and squat and clapped their hands, stood and bow to each other.\", \" The men are squatting, and started to push each other, the skinny man was able to push the chubby man outside the ring.\"]}, \"v_VDYSVR0HbpM\": {\"duration\": 213.53, \"timestamps\": [[0, 18.15], [18.15, 178.3], [179.37, 207.13]], \"sentences\": [\"Text intro and credits are shown.\", \" A number of individuals are shown dancing ballet style in various environments.\", \" A static logo is shown with contact and subscribe buttons.\"]}, \"v_aIXUWoP-L-E\": {\"duration\": 58.38, \"timestamps\": [[0, 56.92], [11.97, 13.72], [55.16, 56.33]], \"sentences\": [\"A person is moving the lawn.\", \" The person steps over the orange cord.\", \" The person moves the mower over the brick walkway.\"]}, \"v_ZjvmWr5LoFw\": {\"duration\": 226.23, \"timestamps\": [[0, 65.61], [65.61, 109.72], [109.72, 204.74], [204.74, 226.23]], \"sentences\": [\"Kids drives bumper cars in a carnival while kids drive around.\", \" Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids continue driving and bumping cars.\", \" The kids continue driving, spinning the cars and bumping other cars.\", \" Then the cars top and kids get out the cars.\"]}, \"v_f38Jt5D0z4A\": {\"duration\": 20.76, \"timestamps\": [[0, 6.23], [6.02, 14.32], [14.22, 20.76]], \"sentences\": [\"A tan horse is in the stable tied to a pole as three people are standing in their with him.\", \"Two young girls are on the right and they are brushing his sides.\", \"On the left side,a young teen age boy with glasses is looking around and brushing him as well.\"]}, \"v_l2MB-KxbVEs\": {\"duration\": 43.52, \"timestamps\": [[0, 1.96], [0, 43.52], [1.96, 3.26], [2.39, 11.97], [24.15, 41.99], [36.12, 43.52]], \"sentences\": [\"A man on a horse chases after a cow with a ripe.\", \" A crowd around him watches.\", \" He catches the cow with the rope.\", \" He jumps off the horse and ties up the cow.\", \" A couple of men run out to the field and undo the ropes off the cow.\", \" Two men on horse go out to the field.\"]}, \"v_8zq6C0SRyDQ\": {\"duration\": 144.41, \"timestamps\": [[0, 50.54], [50.54, 104.69], [104.69, 123.47], [123.47, 144.41]], \"sentences\": [\"woman is slicing a chocolate cake and its decorating it, put a second floor and some pink fondam.\", \" woman took a marker and write a letter in a pink foam craft and trimming it in a candy.\", \" woman walks into a party with a lot of kids holding the cake on her hands.\", \" cake is in a counter with some recipes in the back and in a table full of candies.\"]}, \"v_fUa3pwpNZ6I\": {\"duration\": 154.02, \"timestamps\": [[0, 29.26], [28.49, 68.54], [63.15, 148.63]], \"sentences\": [\"A young woman is seen looking off into the distance followed by putting her arms up.\", \" The girl then jumps onto a beam and begins performing a gymnastics routine.\", \" The girl jumps and flips around the beam follows by jumping off the side with her arms up and her highlights being shown again.\"]}, \"v_IjULOynkK5I\": {\"duration\": 71.63, \"timestamps\": [[0.72, 32.24], [24, 68.05]], \"sentences\": [\"A woman is seen speaking to the camera and leads into her clapping and hosting various exercise classes.\", \" The woman is seen spinning on bikes with others as well as performing squats and other exercises with her class.\"]}, \"v_VcEW9F8TyqU\": {\"duration\": 82.13, \"timestamps\": [[0, 2.05], [2.46, 44.35], [44.76, 76.79], [76.79, 82.13]], \"sentences\": [\"Ten red cups are set up in the shape of a triangle at the end of a beer pong table.\", \"Several people are then shown standing around the table preparing to throw the ball in the cups.\", \"Games begin and males and females start throwing the ball and then a girl wins the game and she is congratulated by the people behind her.\", \"Once the game is over,a group of three boys take the stage and begin talking in a microphone to the crowd.\"]}, \"v_OsrRpGbIpKA\": {\"duration\": 183.35, \"timestamps\": [[9.17, 44.92], [46.75, 163.18], [176.01, 178.76]], \"sentences\": [\"A man is hanging wall paper onto a wall in front of him.\", \" He smooths out the wall paper with a scraper.\", \" The wall is complete and the room is shown.\"]}, \"v_RzFqIN5hWJQ\": {\"duration\": 175.36, \"timestamps\": [[0, 26.3], [25.43, 175.36]], \"sentences\": [\"A large group of people are seen standing around when one walks into the center of the gym floors and begins a routine.\", \" She performs a dance routine while spinning her batons up and down and ends with her running off to meet others.\"]}, \"v_59NxymNdzBE\": {\"duration\": 153.22, \"timestamps\": [[0, 7.66], [8.43, 17.62], [26.81, 102.66], [103.42, 135.6], [137.13, 153.22]], \"sentences\": [\"A view is shown of a cartoon television.\", \" A man appears, talking to the camera.\", \" He discusses ideas for home improvement, and demonstrates how to use a pen to repair a wood scratch.\", \" He then wipes on poly, and dries the spot.\", \"He speaks his final words to the camera before the screen fades to black.\"]}, \"v_Zn84iOuIkDs\": {\"duration\": 81.36, \"timestamps\": [[0, 8.14], [8.54, 29.29], [30.51, 49.63], [50.85, 74.45], [74.85, 81.36]], \"sentences\": [\"A boy is sitting on the ground trying to hold onto a cat.\", \" He holds the cat on his lap while he clips its toe nails one at a time.\", \" He clips the nails on the back of the cat's legs.\", \" He picks up the cat when he is done and sets it on the floor.\", \" The cat walks away in an angry manner.\"]}, \"v_5oD3-y66g_8\": {\"duration\": 146.74, \"timestamps\": [[0, 73.37], [73.37, 115.19], [115.19, 145.27]], \"sentences\": [\"A gymnast stands on her hands exercising and spinning two hula rings with her feet, then, she stands and spins the hula rings around her hands, body and legs.\", \" After, the gymnast lay down on the floor, makes tuns and spins the hula ring around her neck and feet, then she stands on her arms while spinning the hula ring and bend down.\", \" Next, the gymnast uses three rings to spin and make tricks.\"]}, \"v_m6C4SOxfNGQ\": {\"duration\": 106.55, \"timestamps\": [[0, 106.55], [0, 104.42], [4.26, 106.55]], \"sentences\": [\"man are standing in a wooden floor in a room.\", \" men are playing table soccer in a room.\", \" men are holding the poles of the table soccer moving the players.\"]}, \"v_vqqoDYma9F8\": {\"duration\": 154.23, \"timestamps\": [[0, 17.74], [19.28, 64.78], [64.78, 154.23]], \"sentences\": [\"A TV reporter talks while a worker clean the windows of a building.\", \" A worker talks and then  fix his uniform, and then descent to clean he windows of a building with other laborers.\", \" Again the the worker talks, then big buildings display on the screen After, workers hang on a building and clean the windows.\"]}, \"v_19LxLS1_Yn0\": {\"duration\": 35.74, \"timestamps\": [[0, 5.18], [5.72, 30.73], [30.2, 35.74]], \"sentences\": [\"A male athlete runs down a track, then uses a pole to vault over onto a mat.\", \" Several ESPN sports clips are shown of athletes doing long jumps and pole vaults.\", \" It then ends with a scene of an empty track.\"]}, \"v_W3TQnn0q9kc\": {\"duration\": 98.11, \"timestamps\": [[0, 12.75], [12.75, 63.77], [65.73, 98.11]], \"sentences\": [\"A woman is seen speaking to the camera and follows into several shots of people performing water sports.\", \" More shots of people in a studio are shown laughing and leads into people falling into the water.\", \" The people continue watching the videos and laughing and more people continuously fall into the water.\"]}, \"v_UIPTzsWiGSU\": {\"duration\": 55.33, \"timestamps\": [[0, 55.33], [0, 29.05], [0, 33.48], [0, 50.35]], \"sentences\": [\"A little girl is in the back seat of a vehicle while eating an ice cream cone.\", \"Ice cream gets on her nose as she's licking the cone.\", \"As she continues to eat her ice cream ,she gets some on her arm and licks it off.\", \"While looking around ice cream drips down her chin.\"]}, \"v_XFlKGUFgBnc\": {\"duration\": 167.0, \"timestamps\": [[0, 18.37], [23.38, 106.88], [109.38, 167]], \"sentences\": [\"A group of girls are dancing in front of a woman in a building.\", \" They jump side to side, being led by the instructor.\", \" They run in place and swing their arms.\"]}, \"v_TbxVdELEiO8\": {\"duration\": 137.53, \"timestamps\": [[0, 36.45], [36.45, 137.53]], \"sentences\": [\"A young girl in pigtails is seen standing in a kitchen talking to the camera and dancing around.\", \" She mops around the floor with a mop while still continuing to sing and dance.\"]}, \"v_R246xMs2aig\": {\"duration\": 191.01, \"timestamps\": [[0, 53.48], [54.44, 58.26], [58.26, 191.01]], \"sentences\": [\"A female belly dancer wearing purple dances on screen.\", \" A double image of the woman appears on screen.\", \" The woman continues to dance with other dresses.\"]}, \"v_5GFpN0YZEog\": {\"duration\": 212.02, \"timestamps\": [[0, 212.02], [1.06, 212.02], [64.67, 69.97], [81.63, 83.75], [111.31, 118.73], [135.69, 192.94], [169.62, 171.74], [190.82, 196.12]], \"sentences\": [\"Two men wearing flashing hats are playing the saxophone on the street.\", \" A man is playing the drums behind them.\", \" A woman holding a camera is filming them.\", \" Someone rides by behind them on a motorized wheelchair.\", \" A woman in a white shirt is dancing on the sidewalk.\", \" A man holding a camera with a bright light on the front is filming them.\", \" A man comes and puts money in their white bucket.\", \" A police car with its lights flashing drives on the street.\"]}, \"v_H_dERoTis5Y\": {\"duration\": 124.9, \"timestamps\": [[0, 33.72], [37.47, 88.68], [88.68, 123.65]], \"sentences\": [\"A close up of a pole is seen followed by people standing an talking to one another.\", \" More shots are shown of people sitting around while wearing paintball gear.\", \" The people are then seen in many clips playing paintball with one another as well as machines rolling.\"]}, \"v_1uiEkwykOxo\": {\"duration\": 200.51, \"timestamps\": [[2.01, 65.16], [62.16, 151.38], [145.37, 192.48]], \"sentences\": [\"People are seen riding around on horses as well as landscapes and people speaking to the camera.\", \" More clips are shown of people interacting with horses as well as playing games and riding the horses.\", \" More people speak to the camera while houses and food are shown as well as people by the pool and riding on horses.\"]}, \"v_Ule69iMpA3Y\": {\"duration\": 60.93, \"timestamps\": [[0, 60.93], [12.19, 20.72], [20.11, 25.29]], \"sentences\": [\"A lady in a gym goes up and down on an exercise step.\", \" The lady moves to the right.\", \" The lady moves back to the middle of the step.\"]}, \"v_pWotXONgXtc\": {\"duration\": 206.57, \"timestamps\": [[0, 93.99], [63, 206.57]], \"sentences\": [\"Two people are seen holding tennis rackets and begin hitting a ball around the court back and fourth to one another.\", \" The men continue hitting the ball back and fourth to one another while racing around the room to hit the ball.\"]}, \"v_EQPiYEvFmSo\": {\"duration\": 177.24, \"timestamps\": [[0, 12.41], [10.63, 109.89], [109, 177.24]], \"sentences\": [\"A group of girls are seen standing together with their face down and several other watching on the side.\", \" The girls then perform a cheer routine all while in sync and leave with them all lined up on the wall.\", \" A man and woman walk out of the room and the camera pans around all the other cheerleaders in the room.\"]}, \"v_SqIVJrXxO3g\": {\"duration\": 146.07999999999998, \"timestamps\": [[0, 6.57], [7.3, 127.09], [39.44, 43.09], [49.67, 76.69]], \"sentences\": [\"A group of people sit on a raft on a tranquil part of a river.\", \" The group of rafters paddle down a river with rapids.\", \"  A rafter flips off the boat into the river.\", \" Rafters are pulled back into the raft from the water.\"]}, \"v_a5Xc9ZgN2yo\": {\"duration\": 19.48, \"timestamps\": [[0, 6.04], [6.14, 11.1], [11.2, 19.38]], \"sentences\": [\"A girl wearing blue dress jumps hopscotch barefoot.\", \" Then, a child with a pink dress jumps hopscotch and pick up and object.\", \" After the girl take a turn and jumps hopscotch.\"]}, \"v_jYU215e-dKg\": {\"duration\": 39.66, \"timestamps\": [[0.2, 3.77], [4.36, 33.12], [33.91, 39.46]], \"sentences\": [\"A young man sitting on a stage with a guitar and a towel over his head, dries his hair with the towel and places it on the stage as a crowd cheers in the background.\", \"  The young man opens a can and drinks some kind of liquid as he stands up and turns his back to the crowd.\", \"  The young man then turns back around, tosses the can into the crowd and prepares to play his guitar.\"]}, \"v_6nMQRUhOcwM\": {\"duration\": 49.69, \"timestamps\": [[0, 14.91], [14.41, 48.45]], \"sentences\": [\"A dog is seen running through a yard and performing various frisbee tricks with a woman.\", \" The woman continues to throw the frisbee around while the dog chases after it and grabs it in it's mouth.\"]}, \"v_7-_Nur_xiV4\": {\"duration\": 185.9, \"timestamps\": [[1.86, 19.52], [22.31, 38.11], [39.04, 76.22], [76.22, 96.67], [96.67, 185.9]], \"sentences\": [\"Young boys dance break dance spinning and flipping on the floor.\", \" A man dances break dance turning, flipping in the air and standing on the hands.\", \" Break dancers spins and flip around, they support on the hands to flip around.\", \" A break dancer spins on the head around.\", \" After, other dancers perform break dance.\"]}, \"v_AzmaqkS88YM\": {\"duration\": 149.32999999999998, \"timestamps\": [[0.75, 146.34], [4.48, 51.52], [31.36, 148.58]], \"sentences\": [\"Two men hit a tennis ball against a white wall in a small gym room while onlookers watch.\", \"  Two men in sneakers and sweatpants stand on the other side of a glass walled gym room and hit a tennis ball against a wall.\", \"  The men hit the tennis ball after it bounces off the wall as onlookers watch through the glass wall.\"]}, \"v_dMryzJswHY8\": {\"duration\": 143.59, \"timestamps\": [[2.15, 69.64], [60.31, 140.72]], \"sentences\": [\"A person is seen untying a basket from a bike and showing how to attach to a bike.\", \" The man undoes the bike as well as adjusting the basket and moving objects to fix.\"]}, \"v_Lf3oTCD4d08\": {\"duration\": 39.41, \"timestamps\": [[0, 6.7], [6.7, 39.41], [23.25, 30.34]], \"sentences\": [\" A woman iron pants on a iron board in a bedroom.\", \" Then, the woman turns the pants and continues ironing.\", \" A laptop is on a desk.\"]}, \"v_NHDjJ8auZQ0\": {\"duration\": 111.74000000000001, \"timestamps\": [[0.56, 111.74], [6.15, 37.99], [37.99, 111.74]], \"sentences\": [\"Several tables of children play judged games of ping pong at an indoor ping pong tournament.\", \"  Several tables of ping pong players serve a ping pong ball back and forth across a ping pong table at a refereed ping pong game.\", \"  At times the serve is missed and the various players retrieve the ball and resume playing while the judge in the center of the table keeps score with a paper flip scoreboard.\"]}, \"v_E2yPoqpNVdM\": {\"duration\": 115.06, \"timestamps\": [[0, 23.59], [23.59, 55.23], [55.23, 88.02], [88.02, 115.06]], \"sentences\": [\"There is man in full gear holding a paintball gun and talking  while he touches some bean bag surface.\", \" He hides behind it and demonstrates how he would move it he was in a real game.\", \" He talks and talk and shoes hoe he would move his feet during a paintball game.\", \" He is a paintball instructor that enjoys the game very much.\"]}, \"v_hrwcr7BxS5I\": {\"duration\": 15.09, \"timestamps\": [[0, 1.96], [2.26, 9.43], [10.11, 15.09]], \"sentences\": [\"A man is bouncing a tennis ball on a court.\", \" He serves the ball over the net.\", \" He then chases after the ball, then stops.\"]}, \"v_bZF4nakRNF4\": {\"duration\": 23.04, \"timestamps\": [[0, 4.61], [4.49, 7.49], [7.6, 23.04]], \"sentences\": [\"A man in black and white runs and performs a long jump and clears the height.\", \" The crowd stands and claps as the man jogs away.\", \" We see the man jump again in slow motion.\"]}, \"v_9PY28-zQhm4\": {\"duration\": 38.76, \"timestamps\": [[0, 8.14], [8.53, 26.93], [26.93, 38.76]], \"sentences\": [\"A man us cutting up potatoes in the kitchen with a knife.\", \" He is being very careful and putting the skin into the sink.\", \" He seems to be very focused as he continues to cut the potato skins off.\"]}, \"v_NIY1f2KcEe0\": {\"duration\": 30.37, \"timestamps\": [[0.15, 28.7], [0.91, 6.53], [1.67, 16.86], [20.35, 28.55]], \"sentences\": [\"A shirtless boy mows the lawn in area sparse with grass and kicks up a lot of dirt in the process, before stopping and running away from the lawn mower.\", \"  A boy with dark hair and no shirt is mowing a dirt patch with small patches of grass using a large, orange, push lawn mower.\", \"  As the boy mows the dirt patch, large amounts of dirt come up from the ground in a smog like blizzard.\", \"  The boy stops mowing the lawn and runs from the lawn mower as a hand obstructs the view  through the lens.\"]}, \"v_3fyR5F18WKg\": {\"duration\": 15.15, \"timestamps\": [[0, 15.15], [0.15, 15.15]], \"sentences\": [\"Two men play a piano together.\", \" People walk around in the back ground.\"]}, \"v_ox2AGCcE9a0\": {\"duration\": 40.06, \"timestamps\": [[0, 13.42], [13.82, 22.63], [22.83, 33.25], [33.05, 35.05], [35.05, 40.06]], \"sentences\": [\"A weight lifter walks over to the barbell and adjusts is uniform.\", \" The man bends over and grabs the barbell.\", \" He lifts it, then lifts it over his head.\", \" The man drops the barbell and yells.\", \" The man walks off the stage.\"]}, \"v_yUCSKSMVrPo\": {\"duration\": 162.35, \"timestamps\": [[0, 75.49], [53.58, 162.35]], \"sentences\": [\"A large crowd of people are seen sitting in an audience followed by a man hitting a large set of drums.\", \" The man continues playing the drums and ends by bowing and the audience clapping.\"]}, \"v_WHYEBsWp5qY\": {\"duration\": 21.11, \"timestamps\": [[0, 3.48], [3.48, 9.39], [9.5, 21.11]], \"sentences\": [\"A man is standing on a track.\", \" He sprints down the track and jumps into a sand pile.\", \" A slow motion replay is shown of him jumping.\"]}, \"v_sqcJOpPrexQ\": {\"duration\": 44.4, \"timestamps\": [[0, 6.22], [6.22, 9.55], [9.55, 30.63], [30.63, 39.73], [39.73, 44.4]], \"sentences\": [\"A screen appears with a layout of a home and a lot of black, white and red words that say \\\"Tool Box Buzz News, Reviews and Information PRODUCT REVIEWS BY INDUSTRY EXPERT TODD FRATZEL\\\".\", \"A picture of a tool appears on a red screen and to the right there are black words that say \\\"RIDGID MODEL R040SCA ROOFING CUTTER\\\".\", \" A hand is now holding the tool, showing it at different angles and then begins using it to cut an object to demonstrate how it cuts.\", \" The person then picks up the piece it just cut and puts it back down.\", \" The last screen that appears is the exact same screen as the one that appeared in the beginning, but this time it also includes the website.\"]}, \"v_0V8mzi_89Fw\": {\"duration\": 119.56, \"timestamps\": [[12.55, 21.52], [20.92, 32.88], [50.22, 72.33], [72.93, 78.91], [12.55, 103.42]], \"sentences\": [\"An asphalt-tiled roof is shown with leaves and green all over it, and then we see it clean.\", \"  Once again we see a moldy, leaf covered roof, and see it clean.\", \"  Mold is growing on the siding of  a homes, which we then we see after being pressure-washed.\", \" Bare wooden surfaces of shelving is shown, and then we see the improvement as is is covered with a coat of white paint.\", \"  The improvements after cleaning and paint are impressive.\"]}, \"v_GX1EjqXAszM\": {\"duration\": 62.69, \"timestamps\": [[0, 62.69], [10.97, 17.87], [17.87, 25.7], [26.33, 34.48], [34.8, 46.39]], \"sentences\": [\"A person shows you how to make a peanut butter and jelly sandwich.\", \"the person first puts slices of bread on a plate and spread peanut butter on one slice of bread.\", \"the second thing the person did was clean the peanut butter of the knife using a napkin.\", \"the third thing the person does it put jelly on a second slice of bread.\", \"the four thing the person does is put the two slices of bread together and cuts it down the middle with a butter knife.\"]}, \"v_lCIJJgxTs2U\": {\"duration\": 62.58, \"timestamps\": [[0, 11.89], [12.52, 39.74], [37.23, 61.01]], \"sentences\": [\"A large audience is seen cheering on the sides that leads into a man walking around an area.\", \" The man runs up over a pole and the audience cheers for him.\", \" His jump is shown again in slow motion as well as him taking his shirt off.\"]}, \"v_hxbp-zM5JPQ\": {\"duration\": 106.72, \"timestamps\": [[0, 3.2], [4.27, 16.01], [16.54, 38.42], [38.95, 60.3], [60.83, 82.17], [83.24, 101.92]], \"sentences\": [\"An older man walks to an ironing board.\", \" He pulls the ironing board and extends a shirt out on the ironing board.\", \" From the ironing board, he grabs the iron and irons the shirt.\", \" He pauses and grabs another part of the shirt and irons that new area of the shirt.\", \" He brings up another part of the shirt and irons that area.\", \" He moves the shirt a bit and irons another area of the shirt.\"]}, \"v_ZTHsS5lQyvQ\": {\"duration\": 153.35, \"timestamps\": [[0, 15.33], [17.63, 75.91], [78.21, 153.35]], \"sentences\": [\"A woman is in a room talking to the camera.\", \" She shows a panini sandwich on the screen.\", \" We then see her melting dark chocolate in a double boiler before applying it to the sandwich, and grilling it.\"]}, \"v_IgyBIt3GTAU\": {\"duration\": 194.03, \"timestamps\": [[0, 8.73], [8.73, 13.58], [29.1, 32.98], [50.45, 95.07], [107.68, 126.12], [129.03, 190.15], [190.15, 194.03]], \"sentences\": [\"We see a man talking in front of jars.\", \" The man is rubbing an antique.\", \" We see the man holding wax.\", \" The man wipes wax on wood.\", \" The man rubs his hand over a door and we see a chest of drawers.\", \" We see various wood objects cut with scenes of the man talking.\", \" We see the man talk and the screen fades to black.\"]}, \"v_t3dHI5TeY7I\": {\"duration\": 168.81, \"timestamps\": [[0, 35.45], [0, 168.81], [53.18, 168.81]], \"sentences\": [\"A man is sitting in a wheel chair taking his shoes and socks off.\", \" A dog is on the floor next to the man.\", \" The man puts on socks and shoes.\"]}, \"v_XJmBiSBx7Ss\": {\"duration\": 114.27000000000001, \"timestamps\": [[1.71, 33.14], [29.14, 81.13], [75.42, 110.27]], \"sentences\": [\"Various shots are shown of lawns and hedges and leads into a man holding a tool.\", \" The man is shown cutting the hedge all around the area as well as standing on a ladder to cut the top.\", \" The man continues cutting the hedges and ends with a picture in the end.\"]}, \"v_IajP-SB2D5c\": {\"duration\": 182.07, \"timestamps\": [[16.39, 180.25], [16.39, 30.95], [31.86, 66.45], [67.37, 180.25]], \"sentences\": [\"A young man in a blue tank top performs a high, long, jump and interviews on a outdoor sports field  while a group of athletes play football on another field.\", \"  A young man in a blue tank top faces a camera and talks on a sports field while other athletes stretch in the background.\", \"  The young man then performs a long jump which is followed by two replays of the high jump in slow motion.\", \"  A man appears and measures, with a white tape, the distance the boy just jumped as the camera pans to the boy interviewing, facing the camera, and to several shots of a group of athletes playing football on a field.\"]}, \"v_lZ6zN5Q447M\": {\"duration\": 222.54, \"timestamps\": [[0, 36.72], [38.94, 147.99], [153.55, 222.54]], \"sentences\": [\"A man is seated behind a bar.\", \" He is displaying several bottles of drinks in front of him.\", \" He uses a large glass and a shaker to create a drink.\"]}, \"v_Z4yZr5dIMec\": {\"duration\": 160.2, \"timestamps\": [[0, 25.63], [25.63, 69.68], [69.68, 109.73], [109.73, 160.2]], \"sentences\": [\"It's an extremely sunny day out and a picture of a red flower and dandelion becomes present.\", \"After,several scenes of a farm are then recorded ranging from horses,cabins,and windmills.\", \"Along the other features, a table is shown set up for an exquisite lunch and then several men are shown playing polo.\", \"After the game,the people come back to the table to eat the BBQ that was just cooked and the players continue riding around the farm.\"]}, \"v_2imjxY43yYM\": {\"duration\": 188.4, \"timestamps\": [[0, 37.68], [46.16, 117.75], [125.28, 188.4]], \"sentences\": [\"A couple of people are on a dance floor at a wedding reception.\", \" They are twirling as they dance with each other.\", \" More people join, and soon the dance floor is full.\"]}, \"v_N2zoVF76Pgg\": {\"duration\": 186.06, \"timestamps\": [[19.54, 22.33], [22.33, 186.06], [170.25, 186.06]], \"sentences\": [\"A crowd of people are watching a game and cheering.\", \" Players are playing a game of indoor soccer.\", \" Someone makes a point and the players clap.\"]}, \"v_fgIJnjuMyoc\": {\"duration\": 126.22, \"timestamps\": [[1.89, 42.29], [42.29, 122.44], [59.96, 124.96]], \"sentences\": [\"A person is seen riding large waves and leads into a young boy speaking to the camera.\", \" Several clips are shown of people surfing while the boy speaks as well as shows clips of him on the beach.\", \" The man continues surfing as more shots are shown of him speaking.\"]}, \"v_gXffXyAkcHM\": {\"duration\": 13.47, \"timestamps\": [[5.19, 13.27], [5.39, 5.79], [5.86, 7.27], [5.93, 13.13]], \"sentences\": [\"A girl performs gymnastics on uneven bars at a professional sports event.\", \"  A young girl in a white sports uniform is  holding her entire body above her while standing upside down on the uneven bars using her hands as a balance tool.\", \"  The girl swings herself beneath around the bar.\", \"  The girl turns around and does the same move in the opposite direction on the bars.\"]}, \"v_xYu5luMTycc\": {\"duration\": 116.47, \"timestamps\": [[0, 15.72], [18.05, 45.42], [52.41, 116.47]], \"sentences\": [\"A boat is sailing down a river.\", \" Two men right to keep it upright.\", \" A man talks to the camera about the boats.\"]}, \"v__I1zlicAxpM\": {\"duration\": 13.21, \"timestamps\": [[0, 7.27], [6.87, 7.6], [9.84, 13.21]], \"sentences\": [\"Two men are playing a game of table tennis.\", \" The man on the left fails to hit the ball.\", \" The man on the right throws his arms in the air and pumps his fist.\"]}, \"v_a2jpe1QfZdM\": {\"duration\": 40.42, \"timestamps\": [[0, 9.5], [12.93, 37.59]], \"sentences\": [\"Two white oxes pull a cart along a dirt trail.\", \" People are washing their clothes in a river next to the trail.\"]}, \"v_3joaQzU05MY\": {\"duration\": 40.26, \"timestamps\": [[0, 28.39], [0, 4.63], [7.25, 28.39], [28.39, 40.26]], \"sentences\": [\"A young boy and a man are in a store hopping on a colorful hopscotch on the ground.\", \" The young boy hops along the hopscotch as the man walks alongside of it to watch him.\", \" When the boy is done with the hopscotch the man begins to hop on the hopscotch from start to finish while the young boy follows behind him.\", \" They finish the hopscotch and start walking away with a woman, while another woman talks to the camera.\"]}, \"v_x44fn0snUvw\": {\"duration\": 100.8, \"timestamps\": [[0, 10.08], [11.59, 100.8], [58.46, 74.59]], \"sentences\": [\"Polished hands are place in a sink, and water is turned on.\", \" A person puts soap on fingers, lightly rubs, and washes with water.\", \" A person takes soap bubbles from the bottom of sink and covers hand.\"]}, \"v_RAw8sshR51c\": {\"duration\": 86.43, \"timestamps\": [[0.43, 34.14], [30.68, 82.54]], \"sentences\": [\"An old clip is shown of a close up of a weight and a man lifting it over his head.\", \" Several clips are shown of people weight lifting and ends with a picture of a man holding the weight.\"]}, \"v_4KE6dUAGZ94\": {\"duration\": 208.59, \"timestamps\": [[0, 49.02], [50.06, 68.83], [68.83, 113.68], [113.68, 118.89], [119.94, 126.19], [119.94, 123.07], [128.28, 150.18], [151.22, 208.59]], \"sentences\": [\"A man is getting ready for a gym routine by chalking his hands.\", \"  The man mounts the horse apparatus.\", \"  The man does a routine on the horse.\", \"  The man dismounts and lands on the mat.\", \"  People in the arena applaud the man.\", \"  The man waves and walks off as he acknowledges the crowd.\", \"  Another group of competitors wait their turns.\", \"  Competitors stand on the podiums waiting to receive honors.\"]}, \"v_xmW27Mi-jbg\": {\"duration\": 123.44, \"timestamps\": [[0, 8.64], [11.73, 23.45], [25.3, 64.8], [66.66, 123.44]], \"sentences\": [\"A boy is standing in front of a picture.\", \" We see a fire flaming from rocks.\", \" Several steps are then shown for building a fire, including the pile of wood and paper.\", \" The fire is lit, and two boys roast marshmallows over it.\"]}, \"v_lLHAzwAs_9I\": {\"duration\": 197.12, \"timestamps\": [[0, 12.81], [14.78, 61.11], [63.08, 197.12]], \"sentences\": [\"A child's swing chair is on the ground.\", \" A man is shown installing the chair onto a set.\", \" Then we see several images of a happy baby girl being swung back and forth by her father in the swing.\"]}, \"v_BGHQbw5HZ9Y\": {\"duration\": 204.25, \"timestamps\": [[0, 75.57], [57.19, 139.91], [112.34, 194.04]], \"sentences\": [\"Several clips are shown of people lounging on the beach as well as sitting by the water and walking around.\", \" A man then plays  a game with various girls while rubbing down their bodies.\", \" More clips are shown of women playing the game and a man putting sunscreen on them.\"]}, \"v_BOVYcAeBxyY\": {\"duration\": 54.48, \"timestamps\": [[0, 8.72], [8.72, 38.95], [38.95, 42.76], [38.95, 49.3], [49.3, 54.48]], \"sentences\": [\"We see the title and introduction on a black screen.\", \" A boy is seen raking leaves in a yard.\", \" The boy looks behind him and we see another boy raking.\", \" The first boy stops and walks towards the camera.\", \" A word appears on the black screen then fades.\"]}, \"v_onFddYAkyyc\": {\"duration\": 63.0, \"timestamps\": [[0, 20.16], [20.16, 58.27], [58.27, 63]], \"sentences\": [\"A boy cleans a bathroom with a mop while dancing.\", \" Then, he drains the mop in a pail, after the boy continues cleaning the floor.\", \" After, the boy drains again the mop.\"]}, \"v_gdYr4E3qobI\": {\"duration\": 100.5, \"timestamps\": [[0, 10.05], [10.55, 47.74], [48.74, 63.31], [81.4, 100.5]], \"sentences\": [\"We see a man with a drill on the ice.\", \" The man cranks the drill and drills a hole in the ice.\", \" The man then catches a fish on his line and pull it from the water.\", \" The man picks up a very big fish and holds it for the camera.\"]}, \"v_vgUSEkvJRlI\": {\"duration\": 207.66, \"timestamps\": [[2.08, 115.25], [79.95, 201.43]], \"sentences\": [\"The camera pans around people wandering around an arena waving and smiling to the camera followed by a group of fencers lined up.\", \" A bike passes by the fencers and the people then fence against one another, ending with them walking around and posing.\"]}, \"v_lUds16WLsHI\": {\"duration\": 221.66, \"timestamps\": [[0, 6.65], [7.76, 11.08], [23.27, 25.49], [25.49, 63.17], [63.17, 70.93], [77.58, 91.99], [99.75, 158.49], [127.45, 129.67], [149.62, 157.38], [158.49, 159.59], [166.24, 217.22], [218.33, 221.66]], \"sentences\": [\"We see a man in a white room talking.\", \" We see the man's hairy legs.\", \" The man points at the camera.\", \" We are in a school in a crowded student union seeing all the people and objects.\", \" The man gets in an elevator.\", \" He puts his leg on a table and has it waxed.\", \" Women are waxing the man's legs.\", \" We see a black screen with writing.\", \" We see the wax strips pulled off the man's legs.\", \" The man grimaces in pain.\", \" We see the man in his room in front of a computer talking.\", \" The man points at the screen and we see the end screen.\"]}, \"v_qxmrH20IA2Q\": {\"duration\": 5.38, \"timestamps\": [[0, 4.87], [4.89, 5.38]], \"sentences\": [\"People play holding a pole and hitting heavy balls to a target.\", \" Two poles are on front the ball with handle.\"]}, \"v_aGKySEwCMnI\": {\"duration\": 200.02, \"timestamps\": [[0, 41], [42, 56], [56, 91.01], [90.01, 98.01], [98.01, 197.02]], \"sentences\": [\"Two ladies in bathing suits build a sand castle on the beach while a toddler stands by watching.\", \"The toddler picks up a blue bucket and places it upside down on the sand.\", \" The camera man pans the camera to the shoreline while a young boy runs and plays in the shallow water.\", \"A black Labrador retriever walks up to the camera from the shoreline.\", \"The cameraman pans back to the two woman building the sand castle and the toddler watching on.\"]}, \"v_jFZRNe7xFY8\": {\"duration\": 21.36, \"timestamps\": [[0, 3.95], [4.06, 8.55], [19.44, 21.36]], \"sentences\": [\"A man jumps onto a balance beam.\", \" He does a hand stand on the balance beam.\", \" He jumps off and lands on the mat.\"]}, \"v_w2HnFjJei7k\": {\"duration\": 35.2, \"timestamps\": [[0, 11.97], [11.97, 28.16], [28.16, 35.2]], \"sentences\": [\"A man is indoors, talking and laughing as he holds a small bottle in his right hand.\", \" The man brings the bottle closer to his mouth and laughs some more and then pours the liquid from the small bottle onto his mouth and begins to gargle until bubbles come out of his mouth.\", \"The man then quickly leans forward and spits it all out of his mouth.\"]}, \"v_HEw5wIWVpWE\": {\"duration\": 236.03, \"timestamps\": [[0, 9.44], [9.44, 28.32], [29.5, 48.39], [49.57, 67.27], [66.09, 118.02], [118.02, 188.82], [188.82, 236.03]], \"sentences\": [\"A man is walking through the house.\", \" We see a girl on the floor with a toddler playing.\", \" The girl gets up and walks into another room.\", \" The girls shines a light on a roach on he wall and she dances with the flashlight.\", \" The man sucks up the roach in a vacuum as the kids watch.\", \" The man dumps out the bug and flips it over on the floor as the kids watch.\", \" The kids talk about be bug and wrestle on the floor.\"]}, \"v_06xJ8-Dg_j8\": {\"duration\": 124.18, \"timestamps\": [[0, 113], [114.87, 122.32], [122.94, 124.18]], \"sentences\": [\"A youth plays the drums and the cymbals with two sticks while wearing ear plugs.\", \" Then, the youth holds a cymbal and raise the stick to end his play.\", \" After, the youth takes ear his earplugs.\"]}, \"v_j05b3qqgRxw\": {\"duration\": 56.75, \"timestamps\": [[0, 28.94], [28.09, 56.75]], \"sentences\": [\"A girl is seen sitting in a chair while a man tattoos her foot and another person holds her arm.\", \" The man continues tattooing while she looks down and smiles and speaking back and fourth to the girl sitting next to her.\"]}, \"v_FfYNkePtHjo\": {\"duration\": 154.79, \"timestamps\": [[4.64, 69.65], [35.6, 151.69]], \"sentences\": [\"A small group of people are seen playing a game of badminton against one another while a large group of people watch on the sides.\", \" The people pause to walk around a bit as people speak to them on the sides.\"]}, \"v_-l18hJp8ShE\": {\"duration\": 95.77000000000001, \"timestamps\": [[0, 6.23], [6.23, 11.97], [11.97, 18.68], [18.68, 33.52], [34.48, 58.9], [58.9, 89.07], [89.07, 95.77]], \"sentences\": [\"The title shows on black, then we see a boy.\", \" We see a shot of the terrain.\", \" The boy puts on gear and talks to the camera.\", \" We see the boy riding the dirt bike.\", \" We see the drone flying in the air and the boy controlling it as he speaks to us.\", \" We see more of the drone footage as the boy rides the dirt bike.\", \" The name of the drone appear and the title appears.\"]}, \"v_ibWb6iRQiD4\": {\"duration\": 182.28, \"timestamps\": [[0, 4.56], [4.56, 12.76], [17.32, 36.46], [37.37, 102.99], [103.9, 182.28]], \"sentences\": [\"We see a title card about hairstyles.\", \" We see a lady with a towel on her hair.\", \" She takes the towel off and shows us her tools.\", \" After brushing her hair and adding products she sections her hair off.\", \" She then blow drys the bottom of her hair while turning it on a brush.\"]}, \"v_AVIMCVsLrVw\": {\"duration\": 213.0, \"timestamps\": [[0, 1.06], [1.06, 11.71], [11.71, 27.69], [29.82, 51.12], [52.18, 195.96], [68.16, 73.48], [99.04, 108.63], [108.63, 111.82], [156.55, 170.4], [192.76, 195.96], [198.09, 206.61], [208.74, 213]], \"sentences\": [\"We see a map on an opening screen.\", \" We then see some still images.\", \" We see images of  men doing back flips.\", \" We see stills of men on jump stilts.\", \" We see men on jump stilts in various locations.\", \" A man tries to drink water out of a fountain.\", \" We see men in jump stilts do flips.\", \" A man falls into cushions.\", \" Men walk on a boardwalk another holds a fence and jumps.\", \" A person jumps on a garbage can.\", \" We see still images of the people.\", \" We then see the closing title screen.\"]}, \"v_yweAN9o4QYI\": {\"duration\": 35.18, \"timestamps\": [[0, 28.14], [2.11, 35.18], [28.85, 35.18]], \"sentences\": [\"A man closes his eyes and tilt his head.\", \" A lady uses a brush to put black paint around a male eye.\", \" The male looks at her and then at the ceiling.\"]}, \"v_9xKOEE8Ni-Q\": {\"duration\": 79.58, \"timestamps\": [[0, 33.42], [22.68, 66.45], [69.63, 79.58]], \"sentences\": [\"People are seen sitting and walking around camels followed by a picture of a man on a camel and a woman climbing on.\", \" A man then leads the woman around while several more people are seen riding on the camels.\", \" In the end more pictures are shown of the couple riding on the camels.\"]}, \"v_CrWlXxqj4ac\": {\"duration\": 167.56, \"timestamps\": [[0, 167.56], [0, 151.64], [151.64, 167.56]], \"sentences\": [\"people are decorating a big christmas tree.\", \" people are standing on stairs decorating the christmas tree with lights.\", \" the christmas tree is ready and is standing in the middle of the room.\"]}, \"v_-VKGwqL83w8\": {\"duration\": 117.99000000000001, \"timestamps\": [[0, 28.32], [28.91, 78.47], [79.06, 117.99]], \"sentences\": [\"A small plane window is shown and through it,you can see the propellers at the end spinning.\", \"Next,a set of flippers are shown and scuba divers begin to jump in the water.\", \"As they continue swimming,coral reefs are shown,underwater life and Malibu 2013 is drawn in the sand.\"]}, \"v_ZWzPz-LX9Qg\": {\"duration\": 31.26, \"timestamps\": [[0.16, 8.6], [8.6, 22.82], [22.5, 30.94]], \"sentences\": [\"A man is seen wearing scrubs and standing in front of a sink.\", \" The man washes his hands and turns to face the camera.\", \" A person pops out of a closet next to him while he continues speaking.\"]}, \"v_TNFoUBRsngY\": {\"duration\": 156.36, \"timestamps\": [[0, 150.11], [32.84, 40.65], [40.65, 58.64], [104.76, 115.71], [104.76, 156.36]], \"sentences\": [\"Different groups compete in games of tug of war.\", \" The leader of the team slips but recovers her footing.\", \" The team of girls gets pulled forward until the match is called.\", \" The group is easily beaten and most of the team members fall forward.\", \" The groups come together and celebrate at the end of the games.\"]}, \"v_ho8cKYrtufU\": {\"duration\": 176.31, \"timestamps\": [[0, 92.56], [72.29, 141.93], [136.64, 176.31]], \"sentences\": [\"A man is seen speaking to the camera while showing various tools to the camera as well as a close up of a bow and arrow.\", \" The man shoots the bow while showing it to the camera several times and shooting more.\", \" He finally finishes by speaking to the camera.\"]}, \"v_xhBvsWa0PCs\": {\"duration\": 25.38, \"timestamps\": [[0, 3.05], [3.81, 17.77], [18.02, 25.38]], \"sentences\": [\"A bull is released in front of a crowd.\", \" A man on a horse chases the bull, trying to rope it.\", \" He catches the bull with a lasso, but loses his rope each time.\"]}, \"v_3lkZPJES45Q\": {\"duration\": 122.7, \"timestamps\": [[0, 23.31], [23.31, 32.51], [32.51, 122.7]], \"sentences\": [\"A bass drum is on the ground and a person swivels around in the chair and begins to kick the bass drum.\", \"The person then bends down and places his hand on the drum.\", \"After,the man begins moving both his feet rapidly as the stick begins to hit up against the bass drum.\"]}, \"v_1U0VxGw1cdA\": {\"duration\": 29.05, \"timestamps\": [[0.29, 7.41], [6.68, 20.62], [20.33, 27.89]], \"sentences\": [\"An athlete is seen running onto a field holding onto a lacrosse stick.\", \" The man then begins running around while the camera follows him.\", \" The man continues to run up and down the field.\"]}, \"v_uBls-XJdcBs\": {\"duration\": 14.17, \"timestamps\": [[0, 13.1], [1.27, 2.97], [13.1, 14.17]], \"sentences\": [\"The camera pans to catch the action in a water polo match.\", \" An individual walks across the shot.\", \" One of the players in the pool makes a shot.\"]}, \"v_prqwtY9cn6s\": {\"duration\": 100.87, \"timestamps\": [[0, 88.26], [23.2, 45.39], [87.76, 90.28], [89.77, 98.35]], \"sentences\": [\"A man in a striped shirt is playing the piano on the street while people watch him.\", \"  A woman in pink leggings takes pictures of the man playing.\", \"  The man stops playing.\", \"  People on the street applaud the young man.\"]}, \"v_bI1L2D_erOY\": {\"duration\": 184.18, \"timestamps\": [[0, 35.92], [34.99, 111.43], [104.98, 184.18]], \"sentences\": [\"A reporter is hosting a news segment and is seen sitting on a couch speaking with another woman.\", \" The women speaking back and fourth while holding bottles and various shots of people outdoors and sun screen are shown.\", \" The women continue speaking as more shots of people are shown and ends with the women looking into the camera.\"]}, \"v_xUUmAdQJgjg\": {\"duration\": 5.83, \"timestamps\": [[0, 3.06], [3.06, 4.31], [4.23, 5.83]], \"sentences\": [\" A person sprints down a track.\", \" They jump into a box of sand.\", \" A man walks onto the sand to measure the distance.\"]}, \"v_hokqvyeqhmg\": {\"duration\": 102.89, \"timestamps\": [[0, 6.17], [6.17, 65.33], [65.33, 102.89]], \"sentences\": [\"A man is tied to the top of a rock wall and he quickly repels and the words \\\"clean big falls!\\\" appear on the screen.\", \" Men tied up with safety gear are hanging from large rock walls and repelling very quickly either alone with other people on the same rock.\", \" There are two men connected to the large rock wall, one is higher up on the rock and the other one is on the ground and when the man that is higher repels very quickly, the man on the ground quickly gets lifted from the ground but not all the way up the rock wall.\"]}, \"v_aPjbJ4ZNcVQ\": {\"duration\": 225.03, \"timestamps\": [[0, 18], [18, 32.63], [32.63, 58.51], [58.51, 121.51], [121.51, 199.15], [199.15, 225.03]], \"sentences\": [\"An older man is sitting at a table talking to a young boy with curly hair.\", \"On the table,they have a big red bowl and several other baking ingredients.\", \"The man then takes a bag of flour and dips a measuring in the bag and gives it to the job and dumps it into the bowl.\", \"After,the male adds a stick of butter to the bowl and the child begins to stir it and stick their hand in the bowl to taste it.\", \"While that's going on,the man continues to grab other ingredients and hands them to the child before dumping the dough on a tray.\", \"The pan then goes into the oven and the two individuals as well as the dog starts to watch them cook.\"]}, \"v_jExOw6W1I3E\": {\"duration\": 36.18, \"timestamps\": [[0, 8.32], [8.32, 16.82], [16.64, 28.4], [28.04, 36.18]], \"sentences\": [\"Several people are in line at a restaurant  waiting to receive something.\", \"The camera then moves to a woman behind the bar and she starts to drink the beer.\", \"She then holds up the glass and chugs the beer in one cup.\", \"A little boy is then shown as he stands in awe and the rest of the people in the restaurant continue talking.\"]}, \"v_kSdWy3subNE\": {\"duration\": 26.8, \"timestamps\": [[0, 0.94], [2.01, 14.6], [15.01, 26.8]], \"sentences\": [\"A man wipes his face with a towel.\", \" He jumps on a diving board and does a back flip into the water.\", \" He surfaces and gets out of the pool.\"]}, \"v_g0upuaWM74M\": {\"duration\": 86.17, \"timestamps\": [[2.59, 22.84], [22.84, 25.85], [25.85, 81.43]], \"sentences\": [\"A person vacuum the front sit of a car while others clean and rinse the car with a hose.\", \" A man drives a car outside the washing car facility.\", \"Then, a crew cleans thoroughly the inside and outside the car while others clean the rims.\"]}, \"v_SFfB6qvT5FI\": {\"duration\": 31.39, \"timestamps\": [[2.2, 4.24], [2.2, 26.53], [26.84, 31.39]], \"sentences\": [\"A man jumps off a tower.\", \" He bungee jumps in the air.\", \" He falls off a tower backwards into the air.\"]}, \"v_6UPfqdssD6g\": {\"duration\": 77.74, \"timestamps\": [[0, 62.19], [0, 14.77], [15.16, 27.21], [27.6, 41.2], [41.98, 54.42], [58.31, 77.74]], \"sentences\": [\"The video begins with a young man in a kitchen.\", \" The man turns on the water in the sink, grabs a sponge and puts soap on it.\", \" He then begins to wash dishes with the sponge.\", \" A close up of his shirt shows the word Vans on it.\", \" The man then places the clean dishes on the dish rack.\", \" The video ends with him wiping his hands and a title sequence.\"]}, \"v_SrKGO2Xu670\": {\"duration\": 209.57999999999998, \"timestamps\": [[0, 50.3], [50.3, 209.58]], \"sentences\": [\"woman wering a chef suit is standing in front of a kitchen serving a big omelette into a white plate and it frying other omellete.\", \"woman is mixing in a white bowl different ingredients  to make an omelette and put the mix in a frying pan.\"]}, \"v_RLMvrl_vaqc\": {\"duration\": 20.39, \"timestamps\": [[0, 10.4], [10.4, 15.09], [15.09, 20.39]], \"sentences\": [\"A guy in a blue shirt sitting with friends inhales smoke from a hookah pipe.\", \" He coughs and passes it off to the friend to his right, while the friend to his left laughs at him.\", \" The camera pans to a woman holding a chicken wing and she turns away from the camera.\"]}, \"v_PDjtB578yRk\": {\"duration\": 148.17000000000002, \"timestamps\": [[0, 9.63], [4.45, 14.82], [4.45, 23.71], [23.71, 148.17], [30.37, 148.17]], \"sentences\": [\"People are dancing on a street while clapping their hands.\", \" A man is bent over in a yellow shirt holding sticks.\", \" A man plays with the sticks by tapping them on the ground.\", \" Both men stand up and dance with their drum sticks.\", \" They then start fighting with them and dancing around each other.\"]}, \"v_p-l6as8o1f4\": {\"duration\": 123.53, \"timestamps\": [[0.62, 106.85], [12.97, 26.56], [107.47, 123.53]], \"sentences\": [\"People rides horses on an unpaved road and cross tree river in the forest.\", \" A man and a woman walks pulling a horse.\", \" When the people cross the last river they see a beautiful building.\"]}, \"v_UhNgPK81rKM\": {\"duration\": 32.94, \"timestamps\": [[0.49, 24.7], [6.59, 20.59], [16.63, 31.95]], \"sentences\": [\"A large group of people are seen sitting on a bus.\", \" One woman stands up and begins walking towards the back.\", \" The woman continues walking as people still watch on the sides.\"]}, \"v_FrV8r4l5ZUM\": {\"duration\": 147.56, \"timestamps\": [[0, 19.18], [20.66, 140.92], [0, 140.92]], \"sentences\": [\"Two girls are jumping rope on a court.\", \" More girls join them and jump rope on the court.\", \" People are standing on the sidelines watching.\"]}, \"v_GfiqDJA-qqU\": {\"duration\": 190.75, \"timestamps\": [[0, 12.4], [13.35, 171.68], [13.35, 29.57], [73.44, 80.12], [98.24, 101.1], [171.68, 188.84]], \"sentences\": [\"A man walks on the gym floor.\", \" the man performs a routine with a baton.\", \" The man sticks the a baton in the back of his shirt the bows, he pulls it out then begins to dance.\", \" The man flips two times and tries to catch the baton but it falls.\", \" The man moves the baton on his neck, and does a spin then moves the baton on his neck.\", \" The man finishes and takes a bow before walking away.\"]}, \"v_KLr1ZVJDFDs\": {\"duration\": 228.93, \"timestamps\": [[3.43, 127.05], [96.15, 219.77]], \"sentences\": [\"An intro leads into several clips of people riding around on skateboards down a long hill.\", \" The men are seen riding all along the road while performing tricks and the camera following.\"]}, \"v_svG8RyP-OlU\": {\"duration\": 149.51, \"timestamps\": [[0, 29.9], [29.9, 40.37], [40.37, 99.43], [99.43, 149.51]], \"sentences\": [\"man is wearing black clothes is in fron of the camera talking.\", \" the man grabs a snowball from the floor and throw it to a woman.\", \" a man and a woman are standing behind the man taking out the snow with a shovel.\", \" man grabs the shovel and helps the woman to take out the snow.\"]}, \"v_aPEqCGdCsp0\": {\"duration\": 213.25, \"timestamps\": [[0, 213.25], [0, 42.65], [42.65, 136.48], [136.48, 159.94], [159.94, 194.06], [194.06, 213.25]], \"sentences\": [\"A tattoo artist is giving a man a tattoo on his right calf using a manual tattoo needle.\", \"The artist is poking at his calf, then briefly stops to wipe it with the napkin he has in his left hand and then grabs another napkin to wipe the area and holds onto it as he goes back to tattooing where he continues to take brief moments to wipe the area in between tattooing.\", \"The artist stops for a few seconds to reload his needles while dipping it into a very small container of ink then goes back to tattooing the area.\", \"Two other men peek in from a door to talk to the cameraman and look at the tattoo progression.\", \"The focus then switches back to the tattoo artist who is still working on the tattoo.\", \"The camera man turns the camera to himself to talk to it, then shows the other men who are watching from an open door, then goes back to the tattoo artist who continues to work on the tattoo.\"]}, \"v_2tlLq9qvG-c\": {\"duration\": 180.16, \"timestamps\": [[0, 180.16], [12.61, 43.24], [36.93, 73.87], [70.26, 109], [109, 136.02], [133.32, 145.03], [143.23, 180.16]], \"sentences\": [\"There's a tutorial on how to make shortbread cookies.\", \" The chef demonstrates how to mix the butter and flour in a blender to blend the dough.\", \" Then she knead the dough together to make a rectangular roll.\", \" She sprinkles some sugar on a parchment paper and rolls the dough in it and covers it before keeping it in the refrigerator.\", \" After cooling the dough, she takes it out and cuts them into rectangular pieces.\", \" She places the raw cookie on a cookie sheet and bakes them.\", \" When the cookies are done baking, she places them in an airtight plastic container for storing for future consumption.\"]}, \"v_lDJpGI4BZ8k\": {\"duration\": 204.88, \"timestamps\": [[0, 7.17], [7.17, 42], [42, 192.59], [115.76, 143.42], [191.57, 195.66], [201.81, 204.88]], \"sentences\": [\"A man enters waving his arms and pointing at the camera.\", \" He shows us a harmonica, and talks.\", \" The man plays his harmonica and takes breaks to speak.\", \"The man stop playing and talks to the camera.\", \" The man throws his arms in the air.\", \" The man finishes and walks away.\"]}, \"v_bvnXdr-Hre4\": {\"duration\": 89.14, \"timestamps\": [[0, 28.08], [28.97, 64.18], [53.49, 86.91]], \"sentences\": [\"A person is seen standing on the edge of a diving board jumping into a pool.\", \" People watch on the side as the girl takes another turn diving into the pool.\", \" The girl dives several more times backwards into the pool while others continue to watch.\"]}, \"v_tS2d90ZGmeA\": {\"duration\": 137.57999999999998, \"timestamps\": [[0, 16.51], [16.51, 81.86], [82.55, 89.43], [90.8, 119.01], [120.38, 137.58]], \"sentences\": [\"A montage of people excercising is shown with titles.\", \"  A woman and man take turns talking to the camera while they are in the gym.\", \"  Helpful hints are shown on the side of the screen.\", \"  The man and woman continue speaking to the camera.\", \"  The exercise montage is shown again.\"]}, \"v_idTzZaMtGy8\": {\"duration\": 52.11, \"timestamps\": [[0, 31], [20.32, 50.28]], \"sentences\": [\"Several players are seen walking around a field and leads into them playing a lacrosse game with one another.\", \" The people continue running around the field while other players watch on the sides.\"]}, \"v_7ZbH4vHTmVs\": {\"duration\": 105.58, \"timestamps\": [[0, 20.06], [20.59, 28.51], [28.51, 98.19], [99.77, 105.58]], \"sentences\": [\"A group of people pick up dead leaves in a back yard using leaf rakes.\", \" Two girls put dead leaves in a plastic container.\", \" People continues cleaning the yard.\", \" A man an two boys are inside a car.\"]}, \"v_QBI5ZH_cdik\": {\"duration\": 123.09, \"timestamps\": [[0, 10.46], [10.46, 123.09], [118.17, 123.09]], \"sentences\": [\"A black screen appears and it has white foreign words that read \\\"Sigbjorn Fjeldbu #2 Eidskog Motocross 12 years\\\", a still shot picture with special effect look to it appears with green words on the bottom that read \\\"and it goes like this\\\".\", \"A man is now standing on a dirt road holding up large cards with numbers on them, and 11 motocross riders are at a start line, the man moves out of the way and the riders take off as fast as they can and they go around the track.\", \"A black screen appears and the white words displayed read \\\"(c) M and S productions Thanks!\\\".\"]}, \"v_OlH5t7EKOKM\": {\"duration\": 38.1, \"timestamps\": [[0, 6.29], [7.05, 26.48], [28.39, 38.1]], \"sentences\": [\"A gymnast swings back and forth from a bar.\", \" She flips and turns several times.\", \" She then dismounts before the judges and crowd.\"]}, \"v_bOUtD3leN0E\": {\"duration\": 222.66, \"timestamps\": [[0, 71.25], [70.14, 165.88], [136.93, 213.75]], \"sentences\": [\"A woman is seen speaking to the camera while cutting a woman's hair and leads into her holding up tools.\", \" She brushes the hair and begins putting a roller in front followed by more teasing of the hair.\", \" She puts another roller in followed by several more and taking them out in the end.\"]}, \"v_6skP3w9WDIM\": {\"duration\": 95.78, \"timestamps\": [[1.92, 48.37], [40.71, 90.04]], \"sentences\": [\"A group of girls are seen sitting around the floor wrapping presents as well as another group of people wrapping presents.\", \" Several more people are seen wrapping objects in paper while speaking to one another and helping.\"]}, \"v_3q_MOQNfSmA\": {\"duration\": 210.75, \"timestamps\": [[3.16, 13.7], [17.91, 192.83], [38.99, 43.2], [23.18, 157.01], [159.11, 171.76]], \"sentences\": [\"A table is set with a large pitcher of iced tea.\", \" A group of people play a game of croquet in the park.\", \" A man kneels down to show how to use the goal of the croquet game.\", \" Players hits a croquet ball with a mallet guiding it between their legs.\", \" A man hits one ball that is sitting up against another to send it flying over the grass.\"]}, \"v_phg81-nhqH4\": {\"duration\": 27.96, \"timestamps\": [[0, 2.38], [2.38, 26.42], [26.98, 27.96]], \"sentences\": [\"A man kneels on a pad.\", \" The man pulls the cord attached to the exercise machine repeatedly.\", \" The man stops pulling the cord and looks at the machine.\"]}, \"v__b_9BQvJ_v4\": {\"duration\": 114.06, \"timestamps\": [[7.41, 31.94], [33.08, 59.31], [59.88, 91.25], [92.39, 112.92]], \"sentences\": [\"A woman plays Frisbee with a dog in a field.\", \" A man plays Frisbee, then the dog jumps on the back of the dog.\", \" Then, an old man plays Frisbee with a dog and doing tricks.\", \" A young man throw Frisbees and the dog run to catch them.\"]}, \"v_YjxjsP6A5H8\": {\"duration\": 235.1, \"timestamps\": [[0, 5.88], [0, 75.23], [75.23, 103.45], [103.45, 115.2], [115.2, 129.31], [129.31, 138.71], [138.71, 235.1]], \"sentences\": [\"man is carriyng a baby walking outside the house.\", \" man open a padlock and enters in a basement and building a table putting glue and planish the wood.\", \" man is in the outside planish the edges with an emery.\", \" man is skating in a backyard.\", \" man is painting the table with gray painting.\", \" cars are going down a sreet.\", \" men are skateboarding in sidewalk.\"]}, \"v_j5mhELw7XaM\": {\"duration\": 126.27, \"timestamps\": [[5.68, 32.2], [32.2, 60.61], [60.61, 126.27]], \"sentences\": [\"A boy shows a skateboard and wring on his hand while standing on a bridge, then he does tricks on the road.\", \" Suddenly, a boy wearing a red t-shirt skates over a bench and landing on the road to do tricks, then a boy wearing a black shirts spins over a skateboard.\", \" After, all the boy skated on different objects on the road.\"]}, \"v_4fQUWOuFjwQ\": {\"duration\": 122.18, \"timestamps\": [[6.72, 7.33], [12.22, 26.88], [26.88, 109.97]], \"sentences\": [\"A woman in a black shirt is talking to a camera.\", \" People are sitting on horses playing a game on a field.\", \" People are sitting on orange blankets and under orange umbrellas next to the field.\"]}, \"v_z_ExqQ80T5g\": {\"duration\": 114.55, \"timestamps\": [[0, 48.11], [48.68, 93.35], [93.93, 114.55]], \"sentences\": [\"A man is shown in someone rocky water sailing by himself in the water.\", \"The waves become harder and the man has to hold on as the boat moves to the side ensuring that he won't fall out.\", \"Once finished, he continues moving through the water and then a white screen appears with several names and two logos on it.\"]}, \"v_LRhkbJ9dcP8\": {\"duration\": 157.53, \"timestamps\": [[0, 7.09], [7.88, 36.23], [37.02, 60.65], [61.43, 114.21], [114.99, 151.22], [152.8, 157.53]], \"sentences\": [\"We see a couple of opening scenes.\", \" A lady with wet hair sits in a chair as a person holding the blow dryer moves it around.\", \" the lady scrunches the wet hair as she blow dries it.\", \" We see an instruction scene and the lady leans forward as her hair is being blow dried.\", \" Once dry the lady holds her head up and shakes her hair as the lady scrunches it.\", \" We see the ending title screen.\"]}, \"v_h4SzYWJUqVQ\": {\"duration\": 174.66, \"timestamps\": [[16.59, 153.7], [13.97, 17.47], [24.45, 31.44], [33.19, 159.81]], \"sentences\": [\"A person lays carpet down over hardwood floors using carpet laying tools and adhesive.\", \"  A person on hands and knees hammers nails into a long wooden strip on the floor next to floorboards.\", \"  A person pours glue on the floor underneath the carpet.\", \"  The person begins to use adhesive and carpet laying tools to steam and adhere the carpet to the floor.\"]}, \"v_QhiKgeJV3k0\": {\"duration\": 195.08, \"timestamps\": [[0, 30.24], [32.19, 170.7], [170.7, 179.48], [179.48, 186.31]], \"sentences\": [\"A group of friends sit together in a living room talking.\", \" One of the friends plays a song on his guitar and the others listen.\", \" One friend falls back into the chair in amazement after the song.\", \" The two friends congratulate the man for his guitar performance and shake hands.\"]}, \"v_RpgTxW7lYJM\": {\"duration\": 221.98, \"timestamps\": [[0, 102.11], [102.11, 174.26], [175.37, 221.98]], \"sentences\": [\"A right hand is shown doing various strokes on a white paper.\", \"As the person continues painting you can see the remnants of a woman's face being drawn.\", \"The artist then continues drawing some more hair and then the art is finished.\"]}, \"v_AZx_lm2XLHk\": {\"duration\": 48.44, \"timestamps\": [[0, 5.57], [5.57, 36.33], [36.33, 48.44]], \"sentences\": [\"A large outdoor arena is show from a view above and a display screen shows the stats for \\\"WOMEN'S TEAM STANDINGS\\\" and then the words HIGH JUMP appear.\", \" A man named BRYAN MCBRIDE is standing and then begins his high jump where he clears it, lands and vigorously cheers as he runs off.\", \" The stats for the MEN'S HIGH JUMP appear and it shows that he is now listed as #1 with the best score.\"]}, \"v_9I42aiA-UcY\": {\"duration\": 56.69, \"timestamps\": [[0, 26.36], [22.96, 55.28]], \"sentences\": [\"A white dog is in a soapy bathtub, lying on his back, as the person rub his belly and chest with soap.\", \" The dog opened his eyes, had is head out of the water and went back to the water.\"]}, \"v_Wzo3_EYrfAY\": {\"duration\": 41.96, \"timestamps\": [[0, 8.18], [7.97, 19.3], [19.3, 30], [30, 41.96]], \"sentences\": [\"In a parking lot at the beach there is some palm trees and a man begins to jump around on what looks like a high speed pogo stick.\", \" There is one on each of his feet so it's easier to maintain balance.\", \" He is able to jump up pretty high in the air and then he slows down a bit.\", \" He holds on to a pole and starts to build up trying to get higher.\"]}, \"v_lKDTjsH9XtU\": {\"duration\": 232.64, \"timestamps\": [[0, 34.9], [34.9, 86.08], [86.08, 132.61], [132.61, 143.07], [143.07, 161.69], [161.69, 232.64]], \"sentences\": [\"A plastic slide is in the backyard next to a white fence on green grass.\", \" An Asian woman is crouching next to the plastic slide talking about it and she moves it around to show it a few times.\", \" The slide is upside down and she touches and pulls a lever to collapse the slide and prop it up against the fence.\", \" She is crouching next to the slide talking about it again.\", \" A baby stands next to the slide, climbs up and slides down, smiling.\", \" The woman is crouching next to the slide and talking again.\"]}, \"v_dKiy-7TZqeI\": {\"duration\": 17.53, \"timestamps\": [[0, 3.24], [3.16, 6.14], [6.14, 11.66], [11.83, 17.53]], \"sentences\": [\"A group of men open the  gates and a man chasing a cow on top of a horse comes running out.\", \" He throws a rope around its neck and then runs off the horse after it.\", \" he aggressively ties the rope around the cow and then runs off.\", \" He gets back on the horse and they get ready to ride back.\"]}, \"v_sSVG3g2iKL8\": {\"duration\": 144.2, \"timestamps\": [[0, 36.77], [24.51, 113.19], [96.61, 141.31]], \"sentences\": [\"A large group of people are seen standing in a circle holding instruments.\", \" The group then begins playing the instruments together while people walk in and out frame.\", \" The people continue to play with one another while a man take their pictures.\"]}, \"v_kyafh7Ownao\": {\"duration\": 39.96, \"timestamps\": [[0.6, 5.59], [5.79, 11.99], [18.78, 32.57], [35.77, 39.96]], \"sentences\": [\"The credits of the clip are shown.\", \" Cars moves on the road.\", \" Guys wash and towel dry cars outdoors.\", \" The credits of the video are shown.\"]}, \"v_y-X0DjEHD_k\": {\"duration\": 71.33, \"timestamps\": [[0, 19.62], [20.69, 52.79], [50.29, 70.98]], \"sentences\": [\"A man is seen standing behind a stand while others stand in front.\", \" The man then grabs a stick and begins spinning around in a hole on the stand.\", \" He hands the woman a cone and then puts ice cream on top.\"]}, \"v_td15Nx9J0a4\": {\"duration\": 142.34, \"timestamps\": [[0, 39.14], [40.57, 111.74], [108.89, 140.92]], \"sentences\": [\"An athletic man is seen standing ready holding a shot put and then throws the ball off into the distance.\", \" He then points to himself and the crowd looking confused and finally his score being shown.\", \" He hits the ground angrily and then walks away still speaking to the coaches and pointing to the ground.\"]}, \"v_8UXuHMmOYGI\": {\"duration\": 60.26, \"timestamps\": [[0.6, 15.06], [16.87, 43.38], [41.58, 58.15]], \"sentences\": [\"A close up of tools are shown as well as a man holding up a knife.\", \" The man then begins sharpening the knife using a tool on the table.\", \" He continues sharpening the knife and showing it close up to the camera.\"]}, \"v_oNpkjfX2rTc\": {\"duration\": 58.05, \"timestamps\": [[0, 11.32], [13.93, 38.89], [39.76, 58.05]], \"sentences\": [\"a man is standing in front of a table with equipment on it.\", \" He uses a sharpener to sharpen on of many knives.\", \" He talks as he gives the demonstration.\"]}, \"v_PJysE5c1WDs\": {\"duration\": 40.47, \"timestamps\": [[0, 10.32], [10.32, 24.69], [24.69, 34.2], [34.2, 40.47]], \"sentences\": [\"A man walks up to some weights.\", \" He lifts the weights to his chest.\", \" He places the weights over his head.\", \" He drops them and walks to the camera.\"]}, \"v_WpKQV53ENHE\": {\"duration\": 206.56, \"timestamps\": [[0, 15.49], [16.52, 40.28], [40.28, 101.21], [100.18, 167.31], [167.31, 206.56]], \"sentences\": [\"Many outdoor waterfalls are shown at what looks to be an outdoor park.\", \"A group of people are then shown walking across a bridge a man then jumps off the bridge into the water.\", \"Several kayaks are then shown in the same water white water rafting and they begin to fall off as they go over rocks and hills.\", \"One group falls off and the raft gets stuck and the people continue swimming down the river.\", \"The last set of kayaking people are having more fun and someone does a flip out of the front of the kayak.\"]}, \"v_aYrhuTGO440\": {\"duration\": 139.85, \"timestamps\": [[0, 65.03], [50.35, 137.06]], \"sentences\": [\"A dog is seen walking along the street on a leash as well as a persons hand holding the leash.\", \" The dog continues to wander along the street while stopping to smell various objects around the area.\"]}, \"v_0yi-nkwLEnI\": {\"duration\": 115.17, \"timestamps\": [[0, 85.23], [88.11, 103.08], [89.26, 100.2], [108.26, 113.44]], \"sentences\": [\"We see a tattoo artist putting  tattoo on a lady's arm.\", \" The lady smiles and talks to the camera.\", \" The tattoo artist sprays and wipes her arm after he finishes.\", \" We zoom in and see the tattoo no the lady's arm.\"]}, \"v_b4DhjwkO-b4\": {\"duration\": 65.75, \"timestamps\": [[0, 6.57], [6.57, 62.46], [6.57, 8.88], [29.92, 35.5], [37.15, 39.78], [48.33, 61.48], [61.15, 62.13], [62.46, 65.75]], \"sentences\": [\"We see a line of people standing against a  wall.\", \" We see people playing dodge ball in a gym.\", \" The people run towards balls and pick them up.\", \" We see a lady catch a ball and throw it.\", \" We see a man hit hard by a ball.\", \" We see only one man left on the court.\", \" The final man is hit by a ball.\", \" The man kicks the wall and walks away.\"]}, \"v_xb8iMASjw1A\": {\"duration\": 131.96, \"timestamps\": [[0, 23.75], [26.39, 92.37], [94.35, 105.57], [106.89, 112.83], [115.47, 130.64]], \"sentences\": [\"Snowboarders do tricks over obstacles at a ski resort.\", \" Different celebrities introduce events at a ski resort.\", \" A large group of snowboarders go down a ski run.\", \" Snowboarders race through a finish gate at the bottom of the slope.\", \" A concert is held at the ski resort with a large festive crowd around the stage.\"]}, \"v_SwbvD590YtQ\": {\"duration\": 60.26, \"timestamps\": [[0, 22.29], [2.11, 4.22], [9.04, 56.04], [42.18, 59.05]], \"sentences\": [\"We see men pulling and pushing a boat.\", \" We see the intro screen.\", \" We see people riding the boat.\", \" Men untie a part of the sail and carry it out of the storage container.\"]}, \"v_MdrK2uQ-GvA\": {\"duration\": 70.71000000000001, \"timestamps\": [[0, 16.62], [16.26, 27.22], [27.22, 54.09], [54.09, 70.71]], \"sentences\": [\"A man is on the diving board preparing to dive standing on his head.\", \" He dives in and his score is displayed on the score board above.\", \" The audience cheers and claps at the results of the dive.\", \" Then another man in a speedo facing backwards dives in to the pool.\"]}, \"v_l0btLzdAeuM\": {\"duration\": 151.57999999999998, \"timestamps\": [[8.34, 103.07], [103.83, 125.81], [125.05, 144.76]], \"sentences\": [\"Two men interact with a game table, while clarifying text occasionally interjects.\", \" The two men fold up and down the gaming table, with interjecting explanatory text.\", \" The two men resume interacting with the gaming table.\"]}, \"v_Ez5uEh7YyIM\": {\"duration\": 147.14, \"timestamps\": [[0, 7.36], [10.3, 114.77], [116.97, 147.14]], \"sentences\": [\"A man is talking in front of a giant swimming pool.\", \" Swimmers are shown swimming under and above the water.\", \" They turn flips under water, and the man talks about their technique.\"]}, \"v_OS-h1xzAZno\": {\"duration\": 79.92, \"timestamps\": [[0, 76.33], [5.99, 12.39], [78.33, 79.92]], \"sentences\": [\"A girl is doing gymnastics on a balance beam.\", \" A person in a red shirt walks by.\", \" She does a flip off the beam and lands on a mat.\"]}, \"v_fKDl_CnA8nY\": {\"duration\": 128.92, \"timestamps\": [[0, 128.92], [17.4, 33.52], [28.36, 128.92]], \"sentences\": [\"The man in black and white shirt is playing saxophone and then began talking to the camera.\", \" The man hold his saxophone and began playing again.\", \" The man touched his neck briefly as he talked to camera.\"]}, \"v_3CeZS6-0NfU\": {\"duration\": 18.02, \"timestamps\": [[0, 18.02], [0.99, 11.62], [12.07, 18.02], [15.05, 18.02]], \"sentences\": [\"A guy is in his garage.\", \" The guy uses a welding tool.\", \" The guy stops using the welding tool.\", \" The guy moves the welding helmet from his face.\"]}, \"v_-8awLlFLcQc\": {\"duration\": 161.12, \"timestamps\": [[0, 34.64], [17.72, 40.28], [58.81, 88.62], [85.4, 161.12]], \"sentences\": [\"Several pictures of vacuums are shown.\", \" A man is shown loading a vacuum cleaner.\", \" He puts the vacuum on his back.\", \" He then demonstrates the vacuums abilities.\"]}, \"v__AKzq9X1Aik\": {\"duration\": 26.49, \"timestamps\": [[0.13, 6.89], [5.56, 17.49], [17.49, 25.7]], \"sentences\": [\"A man is seen standing before a set of uneven bars and begins inching himself forward.\", \" He raises his legs up when he stops and continues inches forward.\", \" He moves down all the way to end and jumps off into the mats in the end.\"]}, \"v_3JrxcNxNMU4\": {\"duration\": 31.65, \"timestamps\": [[0, 11.08], [12.03, 31.65]], \"sentences\": [\"A man is on a sandy beach, playing croquette.\", \" He hits a ball in slow motion through the rings, hitting a stick on the ground as two other players walk up.\"]}, \"v_gmnwqOPcOo0\": {\"duration\": 136.4, \"timestamps\": [[10.91, 43.65], [47.06, 54.56], [57.97, 83.2], [98.2, 102.3], [112.53, 136.4]], \"sentences\": [\"A woman is stacking up hula hoops around her.\", \" She lifts them up with the help of another woman.\", \" She starts to hula hoop with all of them.\", \" She shakes a mans hand.\", \" She is talking to a camera.\"]}, \"v_W8XwSNt8P5A\": {\"duration\": 110.81, \"timestamps\": [[0, 57.62], [41, 110.81]], \"sentences\": [\"A man is seen in several pictures showing how to perform a jump from the ground.\", \" The pictures then transition into of the man performing the stunt as well as with a bar on his back and jumping up.\"]}, \"v__wITx73-BXw\": {\"duration\": 187.71, \"timestamps\": [[0, 3.75], [4.69, 179.26], [179.26, 187.71]], \"sentences\": [\"We see an opening title screen.\", \" We see girls on a field playing lacrosse and the camera flashes and lights up one girl on the field.\", \" We see the ending information screen.\"]}, \"v_ot-Y1sa-ujc\": {\"duration\": 136.09, \"timestamps\": [[0, 12.25], [14.29, 54.44], [56.48, 104.11], [108.19, 121.8], [122.48, 136.09]], \"sentences\": [\"A reciept is balanced on a vehicle.\", \" A red haired woman is wearing a black suit while being geared up.\", \" She climbs to the rail of the bridge, then bungee jumps off the side.\", \" People on the bridge smile and take pictures of her swinging back and forth over the water.\", \" The bridge and where she jumped from is shown one last time.\"]}, \"v_hGziyfXmotc\": {\"duration\": 227.3, \"timestamps\": [[18.18, 90.92], [92.06, 152.29], [152.29, 217.07]], \"sentences\": [\"A young man holds a violin, then he plays violin.\", \" The violinist press the strings with four fingers and move the bow.\", \" Then, the man stops a little bit and then continues playing, the young man stops playing and talks.\"]}, \"v_6hjRnngC73o\": {\"duration\": 119.17, \"timestamps\": [[0, 3.57], [3.57, 50.65], [51.84, 95.33], [96.52, 119.17]], \"sentences\": [\"The blue opening title screen is visible.\", \" A man in a workshop shows his supplies and adds wax to a ski .\", \" The man then rubs the wax into the ski  and rubs the ski with his hand.\", \"We see the blue ending title screen.\"]}, \"v_r1y_ASZDdEo\": {\"duration\": 188.31, \"timestamps\": [[0.94, 50.84], [55.55, 85.68], [88.51, 123.35], [128.05, 188.31]], \"sentences\": [\"A person and a young man walks in a field who are followed for people.\", \" The young man stands on a track, then he plays cricket with the person.\", \" After, the young man pass the stick to the person, and he throws the ball and the person hits the ball.\", \" During the game, the person lies on the ground, after the two men stands and talk.\"]}, \"v_RKDjetk5Kko\": {\"duration\": 212.77, \"timestamps\": [[13.83, 212.77], [36.17, 61.7], [71.28, 155.32], [155.32, 164.89], [170.21, 185.11], [192.55, 204.25]], \"sentences\": [\"A woman in a red apron is standing in a kitchen.\", \" She is pointing at ingredients on the counter.\", \" She begins stirring food into a pot on the stove.\", \" She adds pasta to a large pot on the stove.\", \" She dumps the pasta into the sauce.\", \" The pasta is put in a white bowl.\"]}, \"v_bY-4XBIGiwI\": {\"duration\": 182.93, \"timestamps\": [[0, 156.4], [37.5, 175.61]], \"sentences\": [\"Various shots are shown of a man kicking his legs around and jumping rope at the same time.\", \" The man performs several different jumps and flips on the gym floor with the jump rope.\"]}, \"v_E0niuPtg16o\": {\"duration\": 65.02, \"timestamps\": [[0.98, 16.58], [18.53, 43.56], [44.54, 61.44]], \"sentences\": [\"A  few people are seen standing around on a basketball court.\", \" The group then begins shooting baskets and passing to one another.\", \" A man claps on the side and the group continues practicing.\"]}, \"v_Cc_DmDsXm6M\": {\"duration\": 22.62, \"timestamps\": [[0, 2.71], [5.31, 17.53], [18.43, 22.62]], \"sentences\": [\"A man is water skiing on a large lake.\", \" He is dressed up as a chef pig.\", \" He trips and falls off the skis into the water.\"]}, \"v_KbEoaYhMZ6c\": {\"duration\": 44.61, \"timestamps\": [[0, 5.8], [6.24, 28.32], [31, 44.61]], \"sentences\": [\"a man is using a tool to cleanly press flooring into the ground.\", \" He pushes it back and forth, pressing down the carpet.\", \" He then uses a cutter to remove excess from the wall.\"]}, \"v_Z1img-5JbDo\": {\"duration\": 11.31, \"timestamps\": [[0, 1.53], [1.53, 5.94], [5.88, 11.31]], \"sentences\": [\"A man us shown running on a track with a red surface.\", \" He then runs full speed and jumps a tall high jump beam.\", \" A friend of his is shown looking into the camera and saying something in reference to what just happened.\"]}, \"v_-UwqKYkkKlU\": {\"duration\": 64.0, \"timestamps\": [[0, 9.28], [10.56, 30.08], [32, 64]], \"sentences\": [\"A woman is talking inside a gym.\", \" She rides on a recumbent bike.\", \" She is then shown going between spinning and lifting weights.\"]}, \"v_IEqnfSiCIXc\": {\"duration\": 198.72, \"timestamps\": [[0, 11.92], [12.92, 175.86], [176.86, 198.72]], \"sentences\": [\"Skaters skate through and shop in New Bedford, Ma.\", \" Skaters skate throughout the town performing tricks.\", \"  A \\\"soltice\\\" logo appears on screen along with video credits.\"]}, \"v_xor90CAOc94\": {\"duration\": 73.71000000000001, \"timestamps\": [[0, 14.74], [14.74, 34.64], [34.27, 50.86], [50.86, 73.71]], \"sentences\": [\"Outside of a very big and beautiful home up on the roof you can see that some work has been done.\", \" The top of the roof looked a little rusty and then it looked beautiful.\", \" The remodeling company took pictures to show their work.\", \" They are advertising trying to get people interested for more work.\"]}, \"v_SwIxaPdYIJE\": {\"duration\": 25.12, \"timestamps\": [[0, 25.12], [1, 12.19], [1.38, 3.39], [11.31, 14.2], [15.95, 21.61], [20.48, 25.12]], \"sentences\": [\"We see a man in a field in a uniform and a net on a stick.\", \" The team appears and run towards the goal.\", \"  Two men fight over the ball.\", \" 50 passes the ball to number 1.\", \" Number 1 throws the ball and scores.\", \" The team walks away from the goal.\"]}, \"v_tnt6Wpv_kHc\": {\"duration\": 184.76, \"timestamps\": [[4.62, 65.59], [57.28, 131.18], [128.41, 179.22]], \"sentences\": [\"Various shots of an exercise equipment are shown followed by a man on top using the machine.\", \" More close ups are shown of the machine as well as the specs it comes along with.\", \" Then man continuously rides on the machine while the camera captures him from several angles.\"]}, \"v_od9EdcDcByA\": {\"duration\": 224.82, \"timestamps\": [[0, 10.12], [10.12, 16.86], [16.86, 215.82], [51.71, 59.58], [62.95, 65.2], [75.31, 78.69], [87.68, 95.55], [131.52, 134.89], [195.59, 197.84], [205.71, 210.2], [216.95, 224.82]], \"sentences\": [\"We see paintballs breaking when the hit the ground.\", \" We see title screens and a beach.\", \" People on a paintball field, and people on the boardwalk are interspersed.\", \" We see a smiling lady and a skateboarder.\", \" A man is hit in the face with a balloon full of paint.\", \" A man send a model plane into the air.\", \" A girl gets sprayed with water.\", \" We see a beach full of gulls.\", \" A man holds up a trophy and a medal.\", \" A group of men hold up a trophy.\", \" We are shown closing credits of images.\"]}, \"v_P6cR-26pTSY\": {\"duration\": 171.13, \"timestamps\": [[0, 171.13], [52.2, 59.9], [64.17, 81.29], [76.15, 102.68], [112.95, 121.5]], \"sentences\": [\"A group of boys and girls dance on small platforms in a routine.\", \" The dancers step up and down from the platform while kicking a leg in the air.\", \" The dancers move there arms in a circle around their waist.\", \" The dancers step back and forth up on the platform sideways.\", \" The dancers turn there bodies while stepping up on to the platforms.\"]}, \"v_3abD7z6vRPM\": {\"duration\": 78.03999999999999, \"timestamps\": [[0, 17.95], [21.85, 53.85], [56.19, 70.24]], \"sentences\": [\"A man demonstrates how to do a squat bench, raising weights as he squats down and propels forward.\", \" The trainer talks about proper form, showing how to keep legs and arms apart.\", \" The man attempts another squat bench to the trainer's approval.\"]}, \"v_iSH43hQoxio\": {\"duration\": 184.92, \"timestamps\": [[3.7, 90.61], [56.4, 177.53]], \"sentences\": [\"A large group of shirtless men are seen working on in a field when one puts on glass and comments on a woman walking out of the house.\", \" The woman then turns on a hose and begins cleaning and scrubbing a car while the working men watch her on the side and comment.\"]}, \"v_BWKKwqX62Y4\": {\"duration\": 43.33, \"timestamps\": [[0, 43.33], [6.07, 9.97], [37.91, 43.33]], \"sentences\": [\"A boy wearing jeans and a red and black jacket is swinging on a swing as he moves his legs back and forth.\", \"The boy begins to go a little higher and the camera person walks a little closer to get a better view.\", \"When the boy is done swinging he lets go of the swing, jumps off, lands with his hands and feet on the ground, gets up, dusts his hands off on his jeans and begins walking towards the camera.\"]}, \"v_9_zC7CdvYu4\": {\"duration\": 91.81, \"timestamps\": [[0, 91.81], [18.36, 20.2], [42.69, 54.63]], \"sentences\": [\"A man starts snowboarding down a hill.\", \" There are ski lifts over his head.\", \" He does a front flip and lands on the snow.\"]}, \"v_wZJeEV6sZXE\": {\"duration\": 38.64, \"timestamps\": [[0, 1.55], [1.74, 22.6], [22.8, 38.64]], \"sentences\": [\"A computer generated woman in a computer generated house walks into a wallless bathroom.\", \" She sits on a toilet appearing, with parts of her blurred out and appears to be in distress.\", \"  The woman stands up and washes her hands.\"]}, \"v_8E8bytYxwAA\": {\"duration\": 29.03, \"timestamps\": [[0, 29.03], [0.73, 29.03]], \"sentences\": [\"little kid is in a roofed gym doing gymnastics.\", \" littl kids are sitting on side of the gym.\"]}, \"v_TscC5kgurqY\": {\"duration\": 170.13, \"timestamps\": [[0, 3.4], [3.4, 9.36], [9.36, 21.27], [27.22, 35.73], [74.86, 109.74], [109.74, 148.02], [147.17, 148.87], [155.67, 159.07], [168.43, 170.13]], \"sentences\": [\"We see a man talking into a camera.\", \" We see a table full of bowls of food.\", \" We see the man talk to the other again.\", \" We see a man making omelets.\", \" The man makes an omelette and puts it on a plate.\", \" The interviewer makes an omelette.\", \"The chef jumps and puts his arms in the air.\", \" The two men shake hands.\", \" We then see the ending screens.\"]}, \"v_kfwwya1qzXM\": {\"duration\": 209.31, \"timestamps\": [[0, 16.74], [16.74, 131.86], [131.86, 209.31]], \"sentences\": [\"A guitarist wearing jeans and a white t-shirt demonstrates how to play a guitar.\", \" He describes the chords of a song and the proper finger placement to form the chords with a fingering chord diagram on the screen.\", \" The guitarist continues to play portions of a song stopping to describe the chord placement.\"]}, \"v_OXbfnzs-qUU\": {\"duration\": 58.07, \"timestamps\": [[0, 35.13], [0, 58.07], [18.29, 30.49], [35.43, 37.17], [48.78, 51.4]], \"sentences\": [\"A lady reads a paper on the far end of the couch/.\", \" A lady close to the camera knits.\", \" The camera is blurry as it focuses on the knitting.\", \" The reading lady puts her paper down.\", \" The lady in stripes lift her arms and mimics the knitting.\"]}, \"v_MRxC-Ygp4go\": {\"duration\": 127.32, \"timestamps\": [[0, 47.74], [36.92, 127.32]], \"sentences\": [\"A person is seen driving a car with several shots of landscapes and people surfing are shown.\", \" More people are shown surfing along large waves while many sit in the water and watch.\"]}, \"v_agM7yjqVKo0\": {\"duration\": 63.18, \"timestamps\": [[0, 13.58], [13.58, 55.92], [55.92, 63.18]], \"sentences\": [\"A man is holding a basketball on a court.\", \" They begin to play basketball.\", \" Words come up onto the screen.\"]}, \"v_fyxXJJhCGBQ\": {\"duration\": 40.54, \"timestamps\": [[0, 7.1], [7.3, 28.79], [30, 40.54]], \"sentences\": [\"Two young men race out and pick up axes sitting on logs.\", \" The men compete chopping wood pieces that are standing upright.\", \" The men put down there axes and take a break.\"]}, \"v_D-0MV6LRvbs\": {\"duration\": 186.62, \"timestamps\": [[3.73, 20.53], [20.53, 139.03], [93.31, 96.11], [167.02, 186.62]], \"sentences\": [\"A man is kneeling down changing a flat tire.\", \" A woman is changing her flat tire.\", \" A red safety sign is placed on the street.\", \" She puts on her seat belt and drives away.\"]}, \"v_9aRUmbcYxUM\": {\"duration\": 160.29, \"timestamps\": [[0, 26.45], [28.05, 160.29]], \"sentences\": [\"The video begins with several games of arm wrestling happening between two men.\", \" The same man is shown playing against various contestants and the refs calling each game when he is done.\"]}, \"v_HatKNbfqL-k\": {\"duration\": 45.72, \"timestamps\": [[0, 13.72], [13.49, 33.6], [33.83, 44.81]], \"sentences\": [\"A man is seen looking at the camera while holding an instrument in his hands.\", \" The man then begins playing the instrument while the camera zooms in on his hands.\", \" The man continues playing while the camera moves in and out and ends with him smiling.\"]}, \"v_Qo3riKtRg2c\": {\"duration\": 10.82, \"timestamps\": [[0, 2.87], [2.49, 5.25], [5.03, 10.28]], \"sentences\": [\"A man is seen standing on a bowling lane holding a ball.\", \" The man then begins bowling the ball down the lane.\", \" He throws the ball down the lane in the end.\"]}, \"v_h4Cf5u1j0TU\": {\"duration\": 101.72999999999999, \"timestamps\": [[0, 47.81], [45.78, 101.73]], \"sentences\": [\"A woman is seen scooping up a spoonful of ice cream and taking a bite with a baby in front of her.\", \" The woman continues to tease the baby with the ice cream giving him little bites here and there as well as taking bites for herself and laughing.\"]}, \"v_4qZckue0QU4\": {\"duration\": 23.38, \"timestamps\": [[0, 11.57], [11.57, 23.38]], \"sentences\": [\"A person is seen shooting a cue ball on a pool table with many others watching her around the sides.\", \" The woman hits the ball hard and looks around the table to see what she hit.\"]}, \"v_vJiOYQE9tts\": {\"duration\": 136.32999999999998, \"timestamps\": [[0, 8.18], [8.18, 26.58], [26.58, 40.22], [40.9, 70.21], [70.21, 110.42], [112.47, 117.24], [117.92, 132.24], [133.6, 136.32]], \"sentences\": [\"We see the title screens at the open.\", \" A curtain falls and we see a lady grooming a horse and talking to another lady.\", \" We see documents, and photos.\", \" We see a title and the lady shearing and discussing grooming the horse.\", \" We see the lady in blue discussing using a razor on a horses beard.\", \" We see the lady walking with a horse and the grooming products.\", \" We see a title screen and the ladies standing in a field talking to the camera.\", \" The title screen with a horse loads.\"]}, \"v_jVoj7XaUoU8\": {\"duration\": 162.24, \"timestamps\": [[3.24, 97.34], [45.43, 145.2]], \"sentences\": [\"A young girl is seen walking onto a stage and begins performing a ballet routine in front of a large audience.\", \" The girl continues dancing around and ends by bowing and walking off stafe.\"]}, \"v_1Vu0bzAKL8Q\": {\"duration\": 56.01, \"timestamps\": [[0, 7.28], [7.28, 31.36], [30.52, 56.01]], \"sentences\": [\"A large wooden plank fence is shown outside and then the animated version is shown.\", \"After, the illustration of the air flow of the wood is shown followed by the face of the creator.\", \"The video continues giving specific functions of the wood and describe how it works and the cost.\"]}, \"v_o8qR72Ymru8\": {\"duration\": 165.56, \"timestamps\": [[1.66, 38.91], [39.73, 97.68], [76.16, 141.55], [139.9, 165.56]], \"sentences\": [\"A close up of trees are shown followed by a person kicking leaves and laying down objects.\", \" A man is then seen rubbing his hands, pitching a tent, and laying stacks of wood together to create a fire.\", \" The man has trouble lighting the fire when another person comes in and also attempts to light a fire.\", \" The men continue trying and eventually get the fire going with another boy walking into frame and leaving unimpressed.\"]}, \"v_3ImTO0bzXPA\": {\"duration\": 190.31, \"timestamps\": [[0, 54.24], [50.43, 140.83], [118.94, 184.6]], \"sentences\": [\"A woman is seen sitting in a chair with a man rubbing her face.\", \" The camera zooms in on her faces and shows the man giving the girl a piercing.\", \" The man wipes off her eye and the camera zooms out.\"]}, \"v_mzbhfWgJ2sU\": {\"duration\": 200.25, \"timestamps\": [[1, 50.06], [44.05, 108.13], [107.13, 192.24]], \"sentences\": [\"Two people are seen hosting a news segment that leads into two women speaking to the camera.\", \" A woman then shows the host how to make a meal by mixing various ingredients together.\", \" She stirs around the mixture while adding more and taking bites in the end while smiling to the camera.\"]}, \"v_T7Mg-Owb14Y\": {\"duration\": 121.26, \"timestamps\": [[0, 42.44], [42.44, 121.26], [42.44, 120.65]], \"sentences\": [\"man is standing in a room holding a pole on his hand and showing the position to make exercise.\", \" man in a gym room and kneels on his knee to make exercise holding the pole.\", \" man is making exercise kneeling on the floor showing how to make exercise.\"]}, \"v_JfF80Uho8U8\": {\"duration\": 143.27, \"timestamps\": [[0, 27.94], [27.22, 61.61], [61.61, 83.81], [83.1, 143.27]], \"sentences\": [\"A large white  man is sitting in front of a restaurant freezer talking.\", \"The male then begins making a list on his hands and takes a twelve inch sub and cuts it in half.\", \"The man then takes a spatula and spread a generous amount of mayo on the sandwich followed by onions,cheese,hams and lettuce.\", \"For toppings,he adds a line of tomatoes,pickles, red tomatoes, and onions and tops it off with a blend of seasoning,a dash of salt,pepper,oil and vinegar.\"]}, \"v_Z1N185E4gsk\": {\"duration\": 50.62, \"timestamps\": [[0, 50.62], [11.9, 22.78], [24.3, 50.62]], \"sentences\": [\"The snow is falling outside on the street.\", \"  The cameraman walks to a young child on the sidewalk.\", \"  The child shovels the snow from the sidewalk.\"]}, \"v_E9HbfcT1ZWM\": {\"duration\": 153.42000000000002, \"timestamps\": [[2.3, 69.04], [63.67, 144.21]], \"sentences\": [\"A camera pans around a large view and leads into a woman climbing on a rope an moving across.\", \" Several people are shown walking on the wire while also speaking to the camera and attempting many tricks.\"]}, \"v_NYRlfaKwTag\": {\"duration\": 170.92000000000002, \"timestamps\": [[2.56, 89.73], [57.26, 159.81]], \"sentences\": [\"A person is seen tattooing on a person's wrist while the camera zooms in.\", \" A girl is seen looking down at the tattoo and leads into a man coloring in the tattoo.\"]}, \"v_7mDiIJ9r4EU\": {\"duration\": 152.18, \"timestamps\": [[0, 24.35], [31.2, 101.96], [110.33, 152.18]], \"sentences\": [\"An althletic male takes off on a water ski.\", \" He performs tricks, flipping and going up multiple ramps.\", \" He comes to a stop, then is shown speaking to the camera as others complete the same tasks.\"]}, \"v_-E9YQ_Uhu50\": {\"duration\": 62.09, \"timestamps\": [[0, 4.97], [4.97, 58.68], [59.3, 62.09]], \"sentences\": [\"The person steps up to the window with the violin.\", \"   The person starts playing the violin near the window.\", \"  The image of the person changes to a digitally animated screen.\"]}, \"v_D1E_KJRxGvQ\": {\"duration\": 96.67, \"timestamps\": [[0, 39.63], [39.63, 43.5], [43.5, 88.93], [88.93, 96.67]], \"sentences\": [\"An athlete performs on the horse pommel jumping and doing front flippings.\", \" Then, the athlete stand on the border of the pommel horse and performs a double backflip.\", \" The, the athlete continues jumping a doing frontflip and backflip.\", \" Then, the athlete does a cartwheel, flip three times and land stand on the mat.\"]}, \"v_MlnK2sa7mm4\": {\"duration\": 157.53, \"timestamps\": [[0, 14.96], [16.54, 102.39], [109.48, 157.53]], \"sentences\": [\"a man wearing a hat is talking to the camera.\", \" He explains the mechanics of playing a harmonica.\", \" He plays numerous little tunes for the camera.\"]}, \"v_bDwGZOk7njI\": {\"duration\": 59.58, \"timestamps\": [[0, 59.58], [3.57, 6.26], [43.5, 45.58]], \"sentences\": [\"A man and a child are driving on a red and black lawnmower around a very large yard filled with green grass and the girl waves a few times.\", \" A white dog is standing on the grass and out of the way of the lawn mower.\", \" Outside of their fenced yard a large white semi drive by.\"]}, \"v_Ed7kAmkawTo\": {\"duration\": 233.8, \"timestamps\": [[5.85, 77.15], [65.46, 154.31], [132.1, 231.46]], \"sentences\": [\"A woman with long hair is seen brushing her hair out facing away from the camera.\", \" The woman then puts her hair up in a ponytail while still continuing to brush it out.\", \" The woman then braids her hair all the way down and ends by bending away from the camera.\"]}, \"v_M4npKXFKxPA\": {\"duration\": 28.75, \"timestamps\": [[0, 5.89], [8.77, 28.75]], \"sentences\": [\"A woman prepares to mount a high beam.\", \" She flips and spins while other girls wait their turn before dismounting.\"]}, \"v_NbO4k5EtU4Y\": {\"duration\": 117.12, \"timestamps\": [[10.54, 112.44], [38.65, 69.69], [66.17, 72.03]], \"sentences\": [\"Men spin around a throw a hammer throw on a snow covered sporting field.\", \" A man in tshirt spins and throws a hammer throw on sporting field.\", \" The man slips but catches himself after throwing the hammer throw.\"]}, \"v_xXXQyLS1uuY\": {\"duration\": 60.67, \"timestamps\": [[0, 3.94], [5.46, 6.98], [5.46, 60.67], [55.82, 60.67]], \"sentences\": [\"We see a person tubing down a hill and a intro screen on the left.\", \" A person pushes a lady in a tube down a hill.\", \" We see a tuber person from their point of view cut with scenes of the tubes going down the hill.\", \" The lady reaches the bottom of the hill and the tube spins on the snow.\"]}, \"v_uhiQp0GCeKg\": {\"duration\": 187.27, \"timestamps\": [[0, 16.85], [23.41, 124.53], [130.15, 187.27]], \"sentences\": [\"A blonde woman is speaking to a camera while wearing a lab coat.\", \" She applies a cloth to another woman's face, followed by a fluid.\", \" She then wipes her face clean again.\"]}, \"v_iJWmjVjBNzE\": {\"duration\": 94.83, \"timestamps\": [[8.53, 14.7], [14.7, 30.82], [45.52, 68.75]], \"sentences\": [\"People are standing around a Christmas tree.\", \" They put lights onto the Christmas tree.\", \" They begin to put decorations onto the Christmas tree.\"]}, \"v_EKfhRuD3x9s\": {\"duration\": 238.56, \"timestamps\": [[3.58, 233.79], [10.74, 227.83], [227.83, 233.79]], \"sentences\": [\"A man is sitting behind four drums.\", \" He begins to play the drums in front of him.\", \" He stops playing the drums.\"]}, \"v_eU27exUJZSM\": {\"duration\": 151.28, \"timestamps\": [[0, 31.01], [33.28, 96.06], [96.82, 143.72]], \"sentences\": [\"A woman is seen sitting a table with her arm out and two men holding her hands.\", \" One man is then seen putting a tattoo on her hand while the other helps.\", \" The woman continues with her tattoo and is showed in a picture in the end.\"]}, \"v_NHznDFD3V3k\": {\"duration\": 61.21, \"timestamps\": [[0, 3.37], [3.67, 17.14], [17.44, 43.46], [43.46, 61.21]], \"sentences\": [\"Several people are walking down a subway and the train takes off.\", \"Once there are less people,the man walks in and plugs up a vacuum and begins to clean.\", \"The man then takes out fries and dumps them on the floor and begins eating the fries off the ground.\", \"While he is doing it,several people walking by stop to take pictures in amusement that he is eating off the ground.\"]}, \"v_7GOPv-XegSc\": {\"duration\": 180.84, \"timestamps\": [[4.52, 80.47], [64.2, 160.04]], \"sentences\": [\"Various people are seen speaking while showing clips of a dog house as well as lake.\", \" More clips are shown of people talking as well as people cutting up grass and showing more lanscapes.\"]}, \"v_0fvL6IHKYF0\": {\"duration\": 166.49, \"timestamps\": [[0, 39.12], [39.96, 78.25], [80.75, 147.34], [149.84, 166.49]], \"sentences\": [\"A man kneels next to a stationary bike in the snow.\", \" The man pushes the display and adjusts the tension.\", \" the man then rides the bike and it moves across the snow.\", \" We see the bike going and the man running behind the bike.\"]}, \"v_TEh6gfRUFZQ\": {\"duration\": 109.09, \"timestamps\": [[0, 28.36], [30, 107.45]], \"sentences\": [\"A man is talking to a camera next to a window and then outside.\", \"  The man uses a red paddle to work on removing snow from a car.\"]}, \"v_j89l589KFrg\": {\"duration\": 182.39, \"timestamps\": [[0, 10.03], [17.33, 182.39]], \"sentences\": [\"Blackjack 21 the movie appears on the screen.\", \" Several pictures of people from the film are shown, interspersed with word screen explaining the movie.\"]}, \"v_KgM8_YBJbM4\": {\"duration\": 58.31, \"timestamps\": [[0, 4.37], [5.83, 49.27], [49.27, 58.31]], \"sentences\": [\"A group of women are inside a dark gym.\", \" They are all riding on recumbent bikes.\", \" They move slowly, as they are exhausted from constant riding.\"]}, \"v_JcsnMUVBlac\": {\"duration\": 165.46, \"timestamps\": [[0, 78.59], [78.59, 165.46]], \"sentences\": [\"A large, lit up stage is shown followed by a man playing a piano and close ups of his fingers.\", \" He continues playing while the camera follows his movements and he looks softly off into the distance.\"]}, \"v_q4Oy6EDTJiM\": {\"duration\": 74.68, \"timestamps\": [[0, 48.91], [4.48, 40.33], [38.83, 46.67], [54.89, 68.7]], \"sentences\": [\"A man is bending over a sink.\", \" He is spraying a small dog with a hose.\", \" He lifts the dog up out of the sink.\", \" He takes his rubber gloves off.\"]}, \"v_iwMXYbYyJy4\": {\"duration\": 32.6, \"timestamps\": [[0, 8.48], [8.64, 23.8], [24.78, 32.6]], \"sentences\": [\"Two children, a boy and girl, are swinging gently on a swing set.\", \" Their father walks by, pushing the baby.\", \" The baby reaches for him as he again shows up and gives him a push.\"]}, \"v_6qojVSLbyUU\": {\"duration\": 139.13, \"timestamps\": [[0, 17.39], [15.3, 23.65], [20.87, 83.48], [112, 139.13]], \"sentences\": [\"Several bushes are shown in a yard.\", \" Two tools lay in the grass.\", \" A person begins trimming the hedges.\", \" Eventually the hedges are trimmed.\"]}, \"v_VE9MAMmF1wc\": {\"duration\": 110.5, \"timestamps\": [[6.63, 98.9], [7.18, 24.31], [29.28, 67.41], [67.96, 98.9]], \"sentences\": [\"A woman prepares and finally bungee jumps over a paved ground with an inflated landing pod beneath her.\", \"  The woman sits strapped into bungee jumping gear from the top of a high platform and speaks, smiles and waives while facing the camera .\", \"  Two men strap her in some more while she stands at the end of the jump off point and a spectator on the side watches.\", \"  The woman jumps off of the edge of the high platform  and falls just above the inflatable landing pod, bouncing and flailing at the end of the bungee cord.\"]}, \"v_DSMSAIk_xhY\": {\"duration\": 190.4, \"timestamps\": [[0, 190.4], [29.51, 179.93], [13.33, 190.4]], \"sentences\": [\"Two young men are in a room with pink curtain.\", \" The two men are singing at the front of the camera.\", \" The young man in blue shirt is playing the guitar as he sings.\"]}, \"v_bJ6SpcLM7GE\": {\"duration\": 85.1, \"timestamps\": [[0, 43.83], [43.83, 49.78], [49.78, 81.7], [81.7, 85.1]], \"sentences\": [\"A man is playing the saxophone on a stage with blue lighting and a large audience watching him.\", \"The zoom is too far out that the man can barely be seen on the stage, but he's still visible on a very large screen.\", \"The zoom goes back and forth to seeing the man close up, and now it's so far that the two very large screens are barely visible.\", \"The man stops playing the saxophone, smiles and then takes a deep breath.\"]}, \"v_ZZ71FIfxX-c\": {\"duration\": 151.81, \"timestamps\": [[0, 117.66], [118.41, 151.81], [145.74, 151.81]], \"sentences\": [\"Scenes of two men playing beer pong are shown, interspersed with the two talking to each other exaggeratedly from across the table.\", \" One of the men drinks from a cup and falls down unconscious on the floor.\", \" The second man kicks the first man, places a ball on the first man's chest, an leaves.\"]}, \"v_iSIzuN9cEAs\": {\"duration\": 101.00999999999999, \"timestamps\": [[0, 101.01], [3.03, 98.99], [1.52, 95.96], [3.03, 101.01], [92.93, 101.01]], \"sentences\": [\"The video takes place in a park with many spectators.\", \" A man is in a field with his dog as they perform various tricks with a frisbee.\", \" Music is playing in the background.\", \" A man is voicing the actions of the man and dog in another language.\", \" The performance ends with the dog doing various jumps with the frisbee.\"]}, \"v_nqbYEJlRwoQ\": {\"duration\": 186.94, \"timestamps\": [[0, 9.35], [9.35, 37.39], [38.32, 44.87], [49.54, 54.21], [69.17, 73.84], [102.82, 128.06], [134.6, 153.29], [153.29, 175.73], [176.66, 186.94]], \"sentences\": [\"We see a opening title screen.\", \" We see a man kneeling on a rug near vacuums.\", \" We see two vacuums on a white screen.\", \" The man picks up and shows the bottom of a vacuum.\", \" The man flips a rug then vacuums the rug.\", \" The man sweeps under the rug.\", \" The man vacuums the rug again.\", \" We see the man kneeling on the rug talking.\", \" We see an ending title screen.\"]}, \"v_d-eoNpp8mNM\": {\"duration\": 42.63, \"timestamps\": [[0, 11.72], [8.1, 21.1], [21.74, 41.99]], \"sentences\": [\"A person is seen running past other players on a lacrosse field.\", \" Two people hit their sticks against another person who runs through.\", \" The same shot is shown again several times.\"]}, \"v_r64pATF3vCI\": {\"duration\": 25.43, \"timestamps\": [[0, 19.32], [19.2, 21.1], [21.36, 25.43]], \"sentences\": [\"A man is shown in a field shooting a paint ball gun.\", \"He then stops and flashes a thumbs up at the screen.\", \"Once he is done,a black screen appears and a url is shown in white words.\"]}, \"v_crbkEVcbF2M\": {\"duration\": 100.15, \"timestamps\": [[0, 8.01], [10.01, 71.11], [72.11, 90.63], [90.13, 100.15]], \"sentences\": [\"The road is blurred as a car speeds down it.\", \" There are numerous cars, fields, and large vehicles parked on the sides of the road.\", \" A person is shows water sailing past others.\", \" A final screen appears advertising the company that made the video.\"]}, \"v_fgeW0L2acbI\": {\"duration\": 106.74000000000001, \"timestamps\": [[1.6, 54.44], [52.84, 104.61]], \"sentences\": [\"A camera is seen on the dashboard of a car capturing various sights and scenery while quickly moving along.\", \" More shots are shown of a car moving along and leads into several clips of people surfing.\"]}, \"v_0gwhdJGq2eg\": {\"duration\": 124.44, \"timestamps\": [[0, 54.75], [55.37, 64.71], [65.33, 124.44]], \"sentences\": [\"A group of swimmers play water polo in a large recreational pool for fun.\", \" The ball lands outside of pool and a little girl gives it back.\", \" The ball gets thrown back and forth across the water.\"]}, \"v_dn1qrAHh7k0\": {\"duration\": 105.72999999999999, \"timestamps\": [[0, 8.46], [10.57, 49.17], [51.81, 105.73]], \"sentences\": [\"A plate is sitting on a table with two slices of bread.\", \" A person slathers the bread with mayo, then tops it with provolone cheese.\", \" The sandwich is then fried in a pan.\"]}, \"v_oW0G_C86fz0\": {\"duration\": 205.8, \"timestamps\": [[0, 36.01], [36.01, 204.77], [36.01, 205.8]], \"sentences\": [\"a crack in a white wall in a small room.\", \" man is grabing caulkit from a bucket and spreadnig it in the crack.\", \" man is standing in a chair fixing the crack on the wall.\"]}, \"v_I6B4g85H2iI\": {\"duration\": 119.1, \"timestamps\": [[0, 25.61], [27.99, 86.34], [89.32, 119.1]], \"sentences\": [\"Several pictures are shown of people on bmx dirt bikes.\", \" They are going around a track together.\", \" They take hills and curves very fast.\"]}, \"v_vgC8jB2FhAg\": {\"duration\": 183.09, \"timestamps\": [[1.83, 52.18], [57.67, 151.05], [108.02, 178.51]], \"sentences\": [\"A group of girls are seen standing at a ballet barre performing movements behind one another.\", \" The camera pans around the girls as they warm up and move along the bar.\", \" More shots are shown of them grabbing their legs as well as kicking them high and standing around one another.\"]}, \"v_QixK0AeqcsI\": {\"duration\": 13.4, \"timestamps\": [[0, 4.29], [4.76, 13.4]], \"sentences\": [\" A female gymnast spins and flips on a high beam.\", \" A man who is likely her coach is spotting and training her.\"]}, \"v_2Mh-OomUNpQ\": {\"duration\": 188.49, \"timestamps\": [[0, 8.48], [8.48, 188.49]], \"sentences\": [\"kids are running in a paved pathway.\", \" kids are playing in a house park.\"]}, \"v_A8NAj6NQ5vM\": {\"duration\": 8.5, \"timestamps\": [[0, 3.99], [4.21, 8.5]], \"sentences\": [\"A group of men are playing volleyball in front of a crowd.\", \" They lob the ball back and forth and a cameraman tries to keep up.\"]}, \"v_jPaeFy4Phz4\": {\"duration\": 204.43, \"timestamps\": [[0, 74.62], [75.64, 204.43]], \"sentences\": [\"woman is sitting in front of a camera showing her haistyle and the poducts she used to achieve it.\", \" woman holds her hair in a ponytail and add hairspray and in the tail make a braid, with the ramaining hair she used a hair donut and wrapped the braid around.\"]}, \"v_JoQywfQ6B-8\": {\"duration\": 137.92000000000002, \"timestamps\": [[0, 2.76], [2.76, 8.28], [8.28, 27.58], [27.58, 53.1], [53.79, 73.1], [73.79, 107.58], [107.58, 114.47], [114.47, 120.68], [124.13, 131.02], [131.02, 137.92]], \"sentences\": [\"We see an opening title screen.\", \" We see a man on a boat talking.\", \"  We see the man showing water ski supplies.\", \" We see a lady standing on a deck holding a handle and wearing skis.\", \" We see a man in the water in gear with instructions on the screen.\", \" We see a lady riding water skis on a lake.\", \" The lady gives  thumbs up then thumbs down.\", \" The lady falls into the water.\", \" We then see the man talking to the camera.\", \" We see a closing title screen.\"]}, \"v_p5Ynl_rGoEU\": {\"duration\": 180.84, \"timestamps\": [[0, 169.08], [45.21, 169.08]], \"sentences\": [\"A person goes skiing on an artificial lake.\", \"  They go over jumps and enjoy their lives.\"]}, \"v_5_M10vevgJg\": {\"duration\": 206.89, \"timestamps\": [[0, 19.65], [19.65, 30], [30, 37.24], [37.24, 47.58], [47.58, 196.55], [196.55, 206.89]], \"sentences\": [\"A woman is skiing and a man from behind skis quickly and ends up in front of her.\", \" An older man is now in a a store and he's talking to a girl and working on some skis.\", \" The older man is holding skis talking and the words on the screen say that his name is ALAN CRANSTON and he's the MANAGER of FRESH AIR EXPERIENCE.\", \"A quick shot of the skiing woman from earlier appears and she is skiing again but this time it's without poles in her arms.\", \" The focus goes back to the older man who is back in the shop, holding the ski and he's working on it while talking about it which include an object that looks like a hot iron, and what looks like some sanding.\", \" The last clip goes back to the woman and now she's skiing with her poles again and with her legs remaining together and not moving separately.\"]}, \"v_uQDTcusxDCg\": {\"duration\": 179.16, \"timestamps\": [[0.9, 58.23], [60.02, 139.74], [113.76, 172.89]], \"sentences\": [\"A large group of people are seen running around an indoor field with people cheering on the sidelines.\", \" The people kick a ball up and down the field while others chase from behind.\", \" The game continues on with the people playing and audience members cheering for them.\"]}, \"v_Ey7w7pu5HZc\": {\"duration\": 86.43, \"timestamps\": [[0, 30.25], [34.14, 86.43]], \"sentences\": [\"A man is dancing on a stage.\", \" We see a close up of him taking steps side to side as he dances to a tune.\"]}, \"v_-VexUX6OJBM\": {\"duration\": 126.55, \"timestamps\": [[0, 4.43], [4.43, 10.12], [10.76, 82.89], [82.89, 106.93], [106.3, 126.55]], \"sentences\": [\"The boys are outside in the grass,one of them has on jumping shoes and the other one is walking around bare foot.\", \"The male with the shoes begins to flip and lands on the mat and sits down while the other boy does a flip.\", \"The male without the shoes,does many flips and the boy with the jumping repeats them as well but with the shoes.\", \"Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there is an instant replay.\", \"Lastly,the other boy begins to do back flips alone in the grass.\"]}, \"v_HUZ9PuMm8yM\": {\"duration\": 207.84, \"timestamps\": [[0, 64.43], [64.43, 122.63], [122.63, 183.94], [182.9, 207.84]], \"sentences\": [\"A long line of people are seen standing on a diving board and begin flipping into the pool.\", \"After two individuals go,the a man does a handstand near the edge of the board and back flips off of it into the water.\", \"Next,two sets of men begin jumping off of the board simultaneously doing a series of flips.\", \"Finally,a winner is declared,he is given his medal and puts his hands up in excitement.\"]}, \"v_FmLxc-aNh88\": {\"duration\": 80.61, \"timestamps\": [[3.22, 8.87], [9.27, 49.58], [49.98, 70.13]], \"sentences\": [\"A woman stands by a horse as she speaks to a camera.\", \" Later, a woman is seen prepping the skin of a horse.\", \" After, the woman uses a large brush to brush the fur of the horse.\"]}, \"v_szl1InYab_k\": {\"duration\": 61.3, \"timestamps\": [[0, 61.3], [4.29, 61.3], [7.36, 61.3], [53.94, 61.3]], \"sentences\": [\"A sofa sits in a room.\", \" A man spray paints the sofa red.\", \" The sofa is on cardboard.\", \" Finally the entire sofa is painted.\"]}, \"v_TRWDARS8lRE\": {\"duration\": 70.06, \"timestamps\": [[0, 8.41], [8.41, 34.33], [33.98, 61.65], [61.3, 70.06]], \"sentences\": [\"Two pairs of people are on green and red mats competing with one another in a game of fencing.\", \"A man in a black suits stops the individuals and claps for them to begin.\", \"He then makes several hand gestures signaling the score and then claps for them to begin again.\", \"The game continues on in the same manner until a winner is declared and the man in the suit makes and X with his arms.\"]}, \"v_fQB76oAKOQc\": {\"duration\": 154.41, \"timestamps\": [[2.32, 57.9], [50.96, 127.39], [108.09, 150.55]], \"sentences\": [\"A man is seen bent over a chair while a person tattoos his leg and several people watch on the sides.\", \" People interview him and offer him gifts as he speaks to the camera and others watch on the side.\", \" The artist wraps his leg up and he continues speaking to the camera.\"]}, \"v_S5MD51gg-vA\": {\"duration\": 193.03, \"timestamps\": [[7.72, 30.88], [38.61, 177.58], [55.98, 147.67]], \"sentences\": [\"A basketball player practice shooting the ball to the basket.\", \" A man practice tennis serving and hits the ball with the racket.\", \" A person holds a racket close to the tennis player.\"]}, \"v_yUYTlwiP16E\": {\"duration\": 121.12, \"timestamps\": [[0, 16.35], [16.35, 43], [43, 56.32], [56.32, 66.01], [66.01, 92.65], [92.65, 121.12]], \"sentences\": [\"a man and a woman are talking in abc news.\", \" man is shoveling the sidewalk in front of a house.\", \" man is being interviewed in sidewalk.\", \" woman is being interviewed in a house.\", \" scenes of the snowy streets are shown and a man is being itnerviewed in a sidewalk.\", \" man is shoveling the sidewalk and the journalist is talking to the camera.\"]}, \"v_p7j6yY99vEg\": {\"duration\": 130.31, \"timestamps\": [[0, 27.37], [44.96, 47.56], [56.69, 118.58]], \"sentences\": [\"People are standing on a basketball court.\", \" A man in an orange shirt throws a ball.\", \" They start playing a game of basketball.\"]}, \"v_SO5KnbKienU\": {\"duration\": 202.27, \"timestamps\": [[0, 21.24], [22.25, 190.13], [193.17, 202.27]], \"sentences\": [\"In a gym a baton twirling troupe walk into a gym and get into their places as they prepare to do a routine.\", \"  The music begins and the girls do their routine of dancing, jumping, making different line formations and baton twirling as the crowd cheers them on.\", \"  The group ends their routine as they dramatically leave the gym one by one.\"]}, \"v_OBfVj8mCVUw\": {\"duration\": 75.05, \"timestamps\": [[0, 74.3], [6.38, 13.13], [13.51, 35.65], [35.27, 49.16], [49.91, 75.05]], \"sentences\": [\"We see a lady knitting a blue item.\", \" We shift and see the puppy sitting next to her.\", \" We see her phone on the chair arm.\", \" We zooms in and out on the blanket.\", \" The camera shifts to the left and the lady lifts the blanket.\"]}, \"v_e6J_ygZ779A\": {\"duration\": 142.32, \"timestamps\": [[0, 57.64], [58.35, 69.02], [69.02, 91.08], [91.08, 103.18], [110.29, 127.37], [129.51, 142.32]], \"sentences\": [\"We see a man on a track talking to the camera.\", \" The main guy runs in circles.\", \" The guy in gray runs in circles.\", \" The guy in black runs in circles.\", \" The man in white runs again.\", \" We end with the man in gray running again.\"]}, \"v_qVqlImNflY8\": {\"duration\": 97.59, \"timestamps\": [[1.46, 20.49], [23.91, 73.2], [60.02, 93.2]], \"sentences\": [\"A dog is seen laying on the ground and leads into a person turning water on.\", \" The dog leans over a tub and jumps into the bucket of water.\", \" The dog scratches the bin around while the camera captures his movements.\"]}, \"v_UL4YwgCFrDI\": {\"duration\": 77.93, \"timestamps\": [[0, 3.12], [3.51, 77.93], [14.81, 19.87], [68.19, 77.93]], \"sentences\": [\"We see two men standing on a river bank.\", \" The men perform Tai Chi slowly.\", \" The men turn and face the left.\", \" The men slowly turn to the right.\"]}, \"v_QUJXOFPJ_YI\": {\"duration\": 27.12, \"timestamps\": [[0, 26.85], [8.68, 25.9]], \"sentences\": [\"Three people play racquetball really badly.\", \"   They do not have court skills or an awareness of how the ball will bounce.\"]}, \"v_lmcBk-gqMzA\": {\"duration\": 68.07, \"timestamps\": [[1.7, 16], [16.34, 42.54], [42.54, 68.07]], \"sentences\": [\"A woman in a green shirt is holding two brushes in her hands.\", \" She starts brushing a brown horse next to her.\", \" She picks up the other brush and brushes the horse.\"]}, \"v_-A6e83tl4Y8\": {\"duration\": 215.82999999999998, \"timestamps\": [[0, 11.87], [17.27, 66.91], [67.99, 215.83]], \"sentences\": [\"A group of girls are inside a gymnasium.\", \" They are split into two teams.\", \" The teams are playing a game of volleyball.\"]}, \"v_GvJxJf4m6_M\": {\"duration\": 92.11, \"timestamps\": [[7.37, 37.77], [37.77, 47.44], [47.44, 70.93], [70.93, 85.67]], \"sentences\": [\"A man stands behind a pair of shoes while touching his back and talking.\", \" Then, the man puts the right leg on a chair and bend to pretend put on socks.\", \" Then, the man take a rod to help enter the feet in the shoes.\", \" After, the man put the right leg on the chair and pretende tie the shoe.\"]}, \"v_8Q-P5KEvXN0\": {\"duration\": 46.14, \"timestamps\": [[0, 14.76], [15, 31.84], [35.3, 44.52]], \"sentences\": [\"A small group of people are seen running down a field when one scores a goal.\", \" The same shot is shown again in slow motion.\", \" More shots are shown of people scoring goals and shown again several times.\"]}, \"v_iiQQ8xZvZok\": {\"duration\": 26.1, \"timestamps\": [[0, 9.53], [13.44, 24.01], [24.66, 26.1]], \"sentences\": [\"A man is in front of a crowd with a midget, as they throw darts at a dart board.\", \" They take turns throwing the darts.\", \" The shorter man wins, smiling happily.\"]}, \"v_zb6WUBWwXfk\": {\"duration\": 199.86, \"timestamps\": [[0, 78.94], [52.96, 153.89], [91.93, 198.86]], \"sentences\": [\"A close up of an exercise bike is shown with a person walking into frame.\", \" The person climbs on the bike and begins riding furiously.\", \" The person continues riding on the bike and jumps off in the end to gesture to the camera.\"]}, \"v_T-Ngg5bptUc\": {\"duration\": 126.48, \"timestamps\": [[0, 10.75], [11.38, 36.68], [40.47, 126.48]], \"sentences\": [\"A living room is shown, and a man and two boys bring in a christmas tree.\", \" The family takes down the netting from the tree.\", \" They then apply numerous decorations.\"]}, \"v_t1-GV2bAL4I\": {\"duration\": 5.32, \"timestamps\": [[0, 2.74], [2.82, 5.32]], \"sentences\": [\"A girl is seen close up to a camera holding a harmonica closely to her mouth.\", \" The camera then zooms in on her face as she look angry and holds the harmonica.\"]}, \"v_PagM71op4HU\": {\"duration\": 30.56, \"timestamps\": [[0, 2.75], [2.9, 4.89], [5.04, 7.95], [11.92, 17.42], [17.57, 20.78], [20.93, 26.13]], \"sentences\": [\"A group of kids watch a young boy throw a dart onto a glass window.\", \" The group watches as a girl throws the dart backwards onto a ball.\", \" Another boy is seen throwing the dart onto a window.\", \" The girl throws the dart onto the ceiling where it sticks for a bit and falls back into her hand.\", \" The group of kids take turns throwing the dart into a toy magnet.\", \" The kids throw the dart onto the fridge, window, magnet and even outline the body of one of the kids with the use of the darts.\"]}, \"v_1RVu0qNtWCc\": {\"duration\": 136.56, \"timestamps\": [[0, 12.97], [12.29, 30.04], [30.73, 49.16], [49.84, 126.32], [126.32, 136.56]], \"sentences\": [\"A young man is shown in a bathroom and he is setting up a camera in front of a mirror.\", \" he begins to shave his long beard with an electric razor.\", \" He moves very quickly and trims the beard very precisely.\", \" He smiles and then continues on with the trim of his beard until it is shown and turns into a goatee.\", \" He then speaks into the camera as the video ends.\"]}, \"v_G00TjQ7JJ8Y\": {\"duration\": 27.52, \"timestamps\": [[0, 4.95], [7.84, 22.15], [22.56, 27.52]], \"sentences\": [\"A group of people are riding horses in a gated field.\", \" They chase a ball back and forth trying to keep it from each other.\", \" They are engaged in a game of polo.\"]}, \"v_CQ4dPckD_Xc\": {\"duration\": 105.16, \"timestamps\": [[0, 105.16], [24.71, 33.65], [55.21, 93.07]], \"sentences\": [\"A man in a red shirt is talking in front of bowling lanes.\", \" He picks up a ball and throws it down the lane.\", \" He picks up another ball and shows how to hold it properly.\"]}, \"v_Vkr3r1Cd0mI\": {\"duration\": 163.75, \"timestamps\": [[0, 19.65], [19.65, 54.86], [54.86, 100.71], [100.71, 128.54], [129.36, 163.75]], \"sentences\": [\"A woman is featured against a plain backdrop in a red sweater representing Sally's Beauty supply describing how to achieve a certain style.\", \"The lady continues talking and begins talking about various products such as the blow dryer and its special features.\", \"She continues to talk about different brushes and how they are used.\", \"Once finished,she washes her hair, and uses the tools she's mentioned.\", \"Finally,the desired hair style is finished and the video ends.\"]}, \"v_Vtsv9iPHDqg\": {\"duration\": 184.41, \"timestamps\": [[0, 11.06], [11.06, 16.6], [11.06, 37.8], [37.8, 52.56], [52.56, 63.62], [63.62, 66.39], [66.39, 71], [71.92, 87.6], [88.52, 98.66], [99.58, 112.49], [112.49, 165.97], [165.05, 180.72]], \"sentences\": [\"A woman starts running down a track sprinting.\", \" She jumps over a barrier and lands in some sand.\", \" They play a replay of her jumping several times.\", \" She is walking down the track with her hand on her hip.\", \" Another woman starts running down the track sprinting.\", \" She jumps over a barrier and lands in the sand.\", \" She gets up and walks away.\", \" They also play a replay of her jumping several times.\", \" She walks up the track.\", \" Another woman starts running down the track and jumps.\", \" It shows her replays and she walks down the track and waves at fans.\", \" The results come up on the screen.\"]}, \"v_obUkL-Ya8dE\": {\"duration\": 211.81, \"timestamps\": [[0, 6.35], [6.35, 178.98], [51.89, 65.66], [65.66, 81.55], [90.02, 177.92], [180.04, 199.1], [200.16, 204.4]], \"sentences\": [\"A man rides a bike a short distance toward the camera and stops.\", \"  The man talks to the camera while stopped on his bike.\", \"  The man is shown something on his bike using a small tool.\", \"  The man demonstrates how the pedal and chains work.\", \"  The man is shown working on the hand brakes and cable of the bike.\", \"  The man is now kneeling near the bike as he talks to the camera.\", \"  The man rides away.\"]}, \"v_NH2TVi42xDE\": {\"duration\": 129.2, \"timestamps\": [[0, 31.01], [36.82, 93.67], [87.85, 125.32]], \"sentences\": [\"A person is seen sitting on a coach holding a brush as well as dog in their hands.\", \" The person then begins brushing the dog while the dog fights back.\", \" The person continues grooming the dog and ends by cuddling him.\"]}, \"v_0VVNybUx7DE\": {\"duration\": 224.98, \"timestamps\": [[9, 32.62], [9, 20.25], [33.75, 214.85], [214.85, 218.23], [222.73, 223.85], [223.85, 224.98]], \"sentences\": [\"Two men are standing in a field explaining fast bowling.\", \" A man is walking behind the men and another man is watering the grass behind the men.\", \" The men are demonstrating various stances.\", \" One of the men runs and throws the ball.\", \" A pack of instant noodles is shown.\", \" Two children are shown smiling at the camera.\"]}, \"v_pgff9mC5y3s\": {\"duration\": 26.12, \"timestamps\": [[0, 26.12], [3.92, 13.98], [14.37, 23.9], [23.9, 26.12]], \"sentences\": [\"A man and kids are on a patio at a kids birthday party.\", \" A small boy tries to hiy the pinata but is too little.\", \" A lady brings a stool for the boy to stand on but the little boy is unable to hit the pinata.\", \" The lady takes the boy off the stool.\"]}, \"v_LdDB7xXXHQM\": {\"duration\": 192.08, \"timestamps\": [[0, 43.22], [43.22, 115.25], [115.25, 192.08]], \"sentences\": [\"A man in a red shirt,black gym shorts and boxing gloves begins talking to the camera.\", \"After,the man does a series of punches and begins to hit the bag excessively.\", \"For his next technique,he holds the bag and starts to do several knee kicks to it.\"]}, \"v_84OwFujqHyw\": {\"duration\": 60.84, \"timestamps\": [[0, 8.82], [0, 60.84], [8.82, 11.86], [11.86, 49.89], [20.08, 41.37], [41.98, 42.89], [42.89, 60.84], [51.1, 60.84]], \"sentences\": [\"Several people are on horses playing polo.\", \"  There is a crowd in the background watching.\", \"  A careless man causes his horse to fall.\", \" The horse gets up but, the man remains on the ground.\", \" The other players and a referee ride their horses away.\", \" One of the players and a woman walk over to check on the man on the ground.\", \" The other polo players are in the area walking around with their horses.\", \" An ambulance arrives and drives on the field.\"]}, \"v_Dx4LpX-X9JY\": {\"duration\": 227.85, \"timestamps\": [[0, 27.34], [39.87, 149.24], [156.08, 227.85]], \"sentences\": [\"A group of runners are gathered in the woods.\", \" They are preparing to run a race.\", \" They take off, running the marathon as a group.\"]}, \"v_RjFoJggnfj4\": {\"duration\": 136.56, \"timestamps\": [[0.68, 135.87], [14.34, 30.73], [30.73, 105.15], [105.15, 136.56]], \"sentences\": [\"A group of men play soccer on an indoor playing field in front of an audience in surrounding bleachers.\", \" Two teams play soccer competitively with the team in the yellow uniform scoring a goal.\", \"  Further in the game the yellow team earns another goal and shakes hands briefly with each other along with clapping their backs in celebratory response.\", \"  The yellow team scores one final goal at which point the yellow uniformed team members hug each other in response.\"]}, \"v_ZBoa0UN86Qw\": {\"duration\": 130.73, \"timestamps\": [[7.19, 118.31], [6.54, 28.76], [33.99, 88.9], [93.47, 119.62]], \"sentences\": [\"Several basketballs players practice basketball both with a coach and alone in an indoor gymnasium.\", \"  Several players practice basketball by dribbling balls and practicing free throws in a interior gym.\", \"  A man holding a blue cushion practices basketball with the players in the gym.\", \"    A man holding two red cushions practices basketball with the players.\"]}, \"v_FNlEHAIh6LQ\": {\"duration\": 173.82999999999998, \"timestamps\": [[0, 21.73], [10.43, 18.25], [18.25, 89.52], [89.52, 147.75], [147.75, 173.83]], \"sentences\": [\"A man and a woman are standing together talking on a studio set.\", \"The woman then appears alone and starts to braid her hair in a large french braid.\", \"After,several products including spray and brushes are shown as the necessary things to complete the look,The lady then comes back and goes step by step starting with a pony tail and separating her hair into equal strands until it is braided to the end.\", \"Finally,the bottom is secured with a pony tail holder and she sprays her hair to ensure the style will be locked into place.\", \"After,the male comes back and gives tips on hair and beauty.\"]}, \"v_ayXuNcjC8wk\": {\"duration\": 37.73, \"timestamps\": [[0, 34.34], [34.34, 37.73]], \"sentences\": [\"A little girl climbs the monkey bars of a play ground.\", \" Then, the little girl jumps to the ground and extend her arms.\"]}, \"v__3I4nm2zF5Y\": {\"duration\": 66.08, \"timestamps\": [[0, 3.97], [0, 38.33], [38.99, 46.26], [46.59, 60.8], [60.8, 66.08]], \"sentences\": [\"The title goes across the screen.\", \" We see two African American men, one a barber the other the client.\", \" We switch to a room full of men one getting his hair cut.\", \" We then see a man getting a hair cut outdoors.\", \" We then see the ending credits.\"]}, \"v_yGwevg8vwuU\": {\"duration\": 179.91, \"timestamps\": [[0, 77.36], [71.06, 179.91]], \"sentences\": [\"Two people are seen performing various martial arts tricks against one each other in the middle of a large field.\", \" The people continue spinning and kicking around one another while laughing at the camera and spinning around.\"]}, \"v_12v5k4Z8lAE\": {\"duration\": 115.8, \"timestamps\": [[0, 115.8], [13.9, 55.58], [59.64, 66], [92.64, 107.69]], \"sentences\": [\"A woman is sitting behind a table.\", \" She rolls up a towel and puts it in tissue paper.\", \" She puts the tissue paper inside of a gift bag.\", \" She adds more tissue paper to the bag.\"]}, \"v_nX-GvQmf5Tc\": {\"duration\": 81.76, \"timestamps\": [[0, 17.99], [18.4, 81.76], [27.39, 31.07], [65.82, 81.76]], \"sentences\": [\"People are sitting in bumper cars before the turn on.\", \" We see people riding around in bumper cars.\", \" A boy in a green car gets hit by a red car.\", \" We see the people standing outside the bumper cars.\"]}, \"v_LCe0toF3058\": {\"duration\": 152.72, \"timestamps\": [[14.51, 32.07], [35.89, 48.87], [54.21, 76.36], [77.89, 152.72]], \"sentences\": [\"A man in blue lifts dumbbells in a gym.\", \" A man wearing a yellow shirt does the same thing.\", \" It cuts back to a man in blue lifting dumbbells.\", \" Several shots of the man lifting dumbbells are played.\"]}, \"v_hBjVRKwCUNA\": {\"duration\": 222.61, \"timestamps\": [[0, 50.09], [51.2, 76.8], [77.91, 125.77], [126.89, 221.5]], \"sentences\": [\"A topless man stands on front a playground talking.\", \" Then, the man holds the border of the monkey bars and raise his legs to the bars.\", \" After, the man walks to the path and jumps rope, then he exercise bending his legs while talking.\", \" Next, the man exercise in the monkey bars, jumps rope and bend his legs.\"]}, \"v_Hk-wwGuHuC0\": {\"duration\": 98.43, \"timestamps\": [[16.24, 52.66], [52.17, 57.09], [63, 73.82]], \"sentences\": [\"A man is mopping the floor.\", \" He is mopping the floor of a hallway.\", \" A red cart is next to the man in the hallway.\"]}, \"v_Wgh8e4V8hBc\": {\"duration\": 11.94, \"timestamps\": [[0, 1.31], [1.31, 8.12], [8.12, 11.94]], \"sentences\": [\"A man is standing and holding onto a pinata and then quickly lets go when he looks at the little girl in front of it with a stick.\", \" The little girl then hits the pinata two times and then hands it off to a man behind her.\", \"A boy behind her walks up to the pinata and stares at it while the standing man tries to stabilize it.\"]}, \"v_XdqHO4x2FL0\": {\"duration\": 68.13, \"timestamps\": [[0, 1.7], [1.7, 28.27], [10.9, 19.76], [28.27, 50.41], [47.69, 50.41], [57.23, 66.08], [66.77, 68.13]], \"sentences\": [\"We see an opening screen on white.\", \" A buff man shows off his muscles on a city street.\", \" The man holds up both arms.\", \" The man in purple arm wrestles.\", \" The purple shirt man wins the match.\", \" The men get up from the table and the buff man in purple laughs.\", \" We see the closing screen.\"]}, \"v_EI_6eT-0-X4\": {\"duration\": 103.09, \"timestamps\": [[0, 103.09], [32.47, 103.09], [5.15, 103.09]], \"sentences\": [\"A man and a woman are standing in a room.\", \" The woman starts jumping rope.\", \" The man stands next to her and talks.\"]}, \"v_MmOQhq95Z_g\": {\"duration\": 182.86, \"timestamps\": [[0, 4.57], [5.49, 10.97], [12.8, 182.86], [58.51, 62.17], [113.37, 117.03], [145.37, 151.77]], \"sentences\": [\"We see a blue opening screen.\", \" We see the names of the pole vaulters.\", \" We watch young men pole vault.\", \" We see a man jump up on his feet.\", \" A man lands far back on the mat.\", \" We see a man jump with his name on the screen.\"]}, \"v_-e9e4ke_wJk\": {\"duration\": 28.21, \"timestamps\": [[0, 5.78], [2.12, 4.09], [7.76, 9.73], [16.22, 24.12], [24.83, 28.21]], \"sentences\": [\"The little boy dances and walks off.\", \" The lady in stripes stands up.\", \" The lady in stripes sits back down.\", \" She then walks behind the tree.\", \" The person on the right side is in view of the camera.\"]}, \"v_-VcxQ6i6Ejk\": {\"duration\": 102.78999999999999, \"timestamps\": [[0, 102.79], [38.03, 43.68], [61.16, 64.75]], \"sentences\": [\"People are playing baseball on a baseball field.\", \" A naked man is running on the field and gets hit.\", \" The crown applauds the game.\"]}, \"v_eSpPY2yMg70\": {\"duration\": 51.62, \"timestamps\": [[0, 8], [8, 45.17], [45.17, 51.62], [0, 51.62]], \"sentences\": [\"man is standingin a roofed gym ready to mak a big jump into a balance beam.\", \" man is doing gymnastics in a balance beam  after a hand stand mak a big jump and lands in the floor.\", \" a lor f people is around the court watching the man.\", \" jury is sitting on tables  on top of stage.\"]}, \"v_WdCoVsU8Bbs\": {\"duration\": 23.13, \"timestamps\": [[0.46, 9.71], [9.25, 23.13]], \"sentences\": [\"A man wearing makeup is seen talking to a card dealer screaming while the card dealer flips over a card.\", \" The man with makeup then kills another man with a pencil while the card dealer gets angry and shows more cards.\"]}, \"v_QDTo_ss6INM\": {\"duration\": 124.16, \"timestamps\": [[0, 12.42], [13.04, 91.88], [94.36, 124.16]], \"sentences\": [\"An opening for a cooking show is seen.\", \" A couple is in a kitchen in front of food ingredients.\", \" A chef shows a woman how to cook, then assemble the vegetebles and meats for a salad.\"]}, \"v_2MRR5NxbO9k\": {\"duration\": 155.62, \"timestamps\": [[0, 7], [8.56, 25.68], [28.01, 83.26], [84.81, 128.39], [130.72, 155.62]], \"sentences\": [\"A lawnmower in a yard is shown.\", \" A boy fills it with gas.\", \" He then starts the mower and begins to mow the lawn from a first person perspective.\", \" He is shown sneering at the camera as he mows.\", \" When he is done, a final view of the yard and home are shown.\"]}, \"v_qhnWJ4G5JMA\": {\"duration\": 167.0, \"timestamps\": [[1.67, 48.43], [45.92, 121.91], [112.72, 165.33]], \"sentences\": [\"A woman is seen speaking to the camera while standing around a group of exercise equipment.\", \" The woman shows how to adjust the exercise equipment then climbs on top and begins using it.\", \" The woman continues riding on the bike while speaking to the camera and climbing off in the end.\"]}, \"v_PBzlHfEMU5s\": {\"duration\": 19.58, \"timestamps\": [[0, 9.98], [9.98, 17.91], [10.18, 19.58]], \"sentences\": [\"A man is riding a horse and jumps off and ropes a goat and ties its back legs together.\", \" He then walks off and gets up back on the horse.\", \" the crowd in the stands cheers behind him.\"]}, \"v_qRPq2PEiyM0\": {\"duration\": 56.59, \"timestamps\": [[0, 18.11], [15, 43.57], [51.21, 55.74]], \"sentences\": [\"A small group of people are seen standing around playing instruments while people walk in and out of frame.\", \" The men continue playing while more people walk around.\", \" The men then stop in the end.\"]}, \"v_M_WEOecjwLY\": {\"duration\": 101.02000000000001, \"timestamps\": [[0, 27.78], [27.28, 57.08], [57.08, 89.91], [89.91, 101.02]], \"sentences\": [\"women are standing in a trampoline and make a jump into the pool at the same time.\", \" people are swimming and carrying the faint body of the woman.\", \" woman is putted in a stretcher and is being caried by paramedics.\", \" the jump from the trampoline is repeated.\"]}, \"v_aUCdj7acYos\": {\"duration\": 24.27, \"timestamps\": [[0, 10.92], [11.65, 17.59], [17.96, 24.27]], \"sentences\": [\"A small girl runs away from the pinata while holding the stick.\", \" the child returns and hits the pinata one time.\", \" the people all clap and the girl smiles and turns toward the camera.\"]}, \"v_swmNnPkPBek\": {\"duration\": 169.14, \"timestamps\": [[0, 32.98], [30.44, 95.56], [93.02, 134.46], [131.93, 169.14]], \"sentences\": [\"A person is seen standing in a field holding a kite as well as several shots of the kite flying.\", \" More people are shown speaking while attempting to throw the kite into the air to fly.\", \" The people try several kits but can't seem to get the kite flying into the air.\", \" The woman helps tape up the kite in the end after the man running let it fall.\"]}, \"v_RPLbUeV3-o0\": {\"duration\": 41.01, \"timestamps\": [[0, 9.02], [9.23, 13.94], [13.94, 16.2], [17.84, 22.76], [27.06, 30.35], [30.96, 35.27], [35.47, 41.01]], \"sentences\": [\"The skier is wiping his goggles.\", \" He then begins to ski down the slope.\", \" He jumps the first ramp.\", \" He jumps the second ramp.\", \" He jumps the 3rd ramp.\", \" He jumps the fourth ramp.\", \" He falls and lands face down as he lays in the snow.\"]}, \"v_c-C_9InvwKE\": {\"duration\": 73.03999999999999, \"timestamps\": [[0, 21.55], [21.55, 54.78], [54.78, 73.04]], \"sentences\": [\"An outdoor laundry area with empty buckets and hanging clothes are visible.\", \" A person then steps into a red bucket that is filled with clothes, soap and water and the person begins to step continuously onto the clothes as the water swishes.\", \"The camera then pans and shows the wall near the person and it has broken glass sitting at the very top.\"]}, \"v_bb9AIdvKkZU\": {\"duration\": 31.16, \"timestamps\": [[0.31, 12.62], [9.82, 22.44], [20.1, 30.69]], \"sentences\": [\"A person is seen standing on a pile of snow holding a shovel.\", \" The person begins shoveling the area and looking to the camera.\", \" The man speaks to the camera and continues on shoveling.\"]}, \"v_3K_8CdJS9lE\": {\"duration\": 223.56, \"timestamps\": [[0, 25.71], [24.59, 81.6], [74.89, 219.09]], \"sentences\": [\"A person is seen blindfolded around others and one man leading her around.\", \" A pinata is seen being held up and the woman grabbing onto a bat.\", \" The people spin her around and lead into her hitting a pinata with another holding it on the side.\"]}, \"v_w9CC0wf27zs\": {\"duration\": 78.9, \"timestamps\": [[0, 12.23], [15.39, 41.03], [41.42, 78.9]], \"sentences\": [\"A couple of older women are seated at a restaurant table.\", \" They have food and knitting supplies in front of them.\", \" One woman is helping the other as she is knitting.\"]}, \"v_-HZtgP41I_o\": {\"duration\": 207.94, \"timestamps\": [[0, 75.9], [75.9, 120.6], [121.64, 207.94]], \"sentences\": [\"men are standing in the entrance of a house taking off the shoes and talknig to another man.\", \" man kneel down and put a flip flops.\", \" a big paragraph is shown on screen.\"]}, \"v_87JvCGMC514\": {\"duration\": 113.66, \"timestamps\": [[0, 113.66], [0, 50.01], [26.71, 37.51], [49.44, 61.38], [61.38, 78.43], [77.86, 86.95], [95.48, 113.66]], \"sentences\": [\"Many people walk around a beach and fly kites on a sunny day.\", \" A child chases after a kit flying in the air on the beach.\", \" A group of spectators walk by and dodge the kite.\", \" The boy gives up and the kite flies high into the air.\", \" The boy lies on the ground and the kite dive bombs at him.\", \" The mother comforts the boy from the flying kit attacks.\", \" People on the peer grab at the kite as it flies near them.\"]}, \"v_fpIcr1RaEDc\": {\"duration\": 88.56, \"timestamps\": [[12.4, 38.52], [41.18, 77.93]], \"sentences\": [\"A man grabs onto two bars with each hand as he raises his body up and down.\", \" He does it again, going faster.\"]}, \"v_HFDsuGHojDU\": {\"duration\": 10.97, \"timestamps\": [[0, 7.79], [7.57, 10.31], [0, 10.97]], \"sentences\": [\"A man picks up a ball and spins around.\", \" He throws the ball onto the field.\", \" People are sitting behind the fence watching him.\"]}, \"v_IEtCboPbTXI\": {\"duration\": 73.05, \"timestamps\": [[5.11, 37.62], [22.65, 66.48]], \"sentences\": [\"A dog is seen laying on a blanket when a vacuum comes into frame and sits beside the dog.\", \" The person then vacuums the motionless dog and ends with the camera fading to black.\"]}, \"v_pn41XETdQB4\": {\"duration\": 229.72, \"timestamps\": [[1.15, 93.03], [67.77, 188.37], [187.22, 229.72]], \"sentences\": [\"The video leads into a scene from The Karate Kid with a group of bullies holding a young man hostage and an older man comes into frame.\", \" The older man beats up the boys with a stick and leads into another clip of men laughing and another being thrown through a door.\", \" The older man speaks to the teachers and then begins fighting them while another watches.\"]}, \"v_bHAzuAnnvcU\": {\"duration\": 21.94, \"timestamps\": [[0, 10.42], [10.42, 18.21], [18.21, 21.94]], \"sentences\": [\"A boy goes across the monkey bars as a lady watches and cheers him on.\", \" At the end he begins to struggle bit, but finally finished.\", \" When he is done another little boy comes and stands by him.\"]}, \"v_rYcac4QmSms\": {\"duration\": 235.96, \"timestamps\": [[0, 41.29], [56.63, 147.48], [147.48, 212.37], [213.55, 235.96]], \"sentences\": [\"A woman is laying down getting a harness put on her.\", \" She rides up in a yellow cart.\", \" She jumps off the side of the cart and bungee jumps.\", \" She lays back down on the mat to get the harness taken off.\"]}, \"v_jHXqbgeq83Y\": {\"duration\": 25.17, \"timestamps\": [[0, 3.02], [3.27, 7.3], [7.43, 18], [18, 25.17]], \"sentences\": [\"A man holding two beers approaches another man and a chimpanzee.\", \" The man with the two beers gives one to the chimpanzee and they both takes sips.\", \" The other man starts saying cheers while the chimp and the man clink the bottles together.\", \" The chimp then walks off with the beer that was given to him.\"]}, \"v_0h4UT-2XTAw\": {\"duration\": 170.16, \"timestamps\": [[0, 13.61], [13.61, 23.82], [23.82, 131.02], [131.87, 149.74], [145.48, 159.95]], \"sentences\": [\"A woman is showing her curly hair.\", \" She is showing the rollers she used.\", \" She takes them out of her hair to show her curls.\", \" She brushes her hair out and styles it.\", \" She plays with her hair to show the curls.\"]}, \"v_nQQ-tcG6wBA\": {\"duration\": 192.91, \"timestamps\": [[5.79, 127.32], [12.54, 29.9], [25.08, 71.38], [25.08, 124.43], [106.1, 125.39], [133.11, 192.91]], \"sentences\": [\"A woman is kneeling on a wooden floor.\", \" The woman is talking to the camera and pointing to her knees and ankles.\", \" The woman begins lifting her knees off the floor.\", \" The woman is demonstrating exercise moves.\", \" The woman sits up on her knees and is pointing to the ground.\", \" The woman is standing up demonstrating pole dancing.\"]}, \"v_NVR52Aed_7s\": {\"duration\": 21.57, \"timestamps\": [[0, 21.03], [3.88, 9.28], [8.95, 10.35], [14.02, 17.04], [20.71, 21.57]], \"sentences\": [\"We see a man pulling a cord on an exercise machine.\", \" A man in red walks past in the rear.\", \" The man working out turns around.\", \" A lady in purple walks past.\", \" The man finishes and stands up.\"]}, \"v_qenGkKGoq6o\": {\"duration\": 66.13, \"timestamps\": [[0, 17.86], [17.19, 66.13]], \"sentences\": [\"A group of people are outside holding umbrellas watching the marching band perform in the parade.\", \"After the band, a group of police officers are shown walking behind them in white shorts and then the band is shown again.\"]}, \"v_TeLWp5sSxg0\": {\"duration\": 186.25, \"timestamps\": [[0, 19.56], [27.01, 100.57], [115.47, 159.24], [161.1, 186.25]], \"sentences\": [\"A girl is standing in the bathroom wearing a robe.\", \" She holds up a pink hair curler.\", \" She then demonstrates how to place the rollers in her hair.\", \" She continues talking with two rollers in her hair.\"]}, \"v_YozbZM_nA0c\": {\"duration\": 35.83, \"timestamps\": [[0, 1.61], [1.79, 3.94], [4.12, 35.83]], \"sentences\": [\"A group of people gather around several tables outdoors.\", \" Children line up to get their hands stamped.\", \" Groups of young children wearing blue shirts start playing hopscotch.\"]}, \"v_sf2zGT5nN04\": {\"duration\": 225.93, \"timestamps\": [[0, 109.58], [106.19, 196.56], [195.43, 225.93]], \"sentences\": [\"Various ingredients are shown laid out in bowls and switches between a man talking and mixing ingredients.\", \" The pan puts oil in a hot pan and pours the ingredients into the pan while continuously stirring and speaking to the camera.\", \" In the end he pours all the food out and presents it on a plate.\"]}, \"v_1sTTv-XC-RA\": {\"duration\": 93.46000000000001, \"timestamps\": [[0, 25.7], [25.23, 93.46]], \"sentences\": [\"A close up of a kayak is shown on a lake and leads into several shots of different locations.\", \" The video transitions into a man paddling along in the canoe and goes back and fourth between him and the scenery.\"]}, \"v_IaT8-cA_AVU\": {\"duration\": 182.6, \"timestamps\": [[0, 182.6], [0, 16.43], [46.56, 182.6]], \"sentences\": [\"man is talking to the camera and shaking hands with a boy and arm wrestling on top of round table in a restaurant.\", \" man is behind the bar walking side to side.\", \" people are in the background sitting on ables eating and talking.\"]}, \"v_ISEbX4WvBW4\": {\"duration\": 75.14, \"timestamps\": [[0.75, 74.01], [4.88, 15.4], [16.16, 32.69], [33.81, 74.01]], \"sentences\": [\"A boy plays on a swing set in an outdoors children\\u2019s playground.\", \"  A young boy swings in a donut style swing at a park.\", \"  The boy swings around and around smiling and laughing.\", \"  The boy swings more and laughs into camera.\"]}, \"v_uElCsF1fOgE\": {\"duration\": 221.04, \"timestamps\": [[0, 221.04], [1.11, 221.04], [3.32, 221.04]], \"sentences\": [\"People are dancing in a street.\", \" People are standing on the sidelines watching them.\", \" They continue dancing on a street.\"]}, \"v_sC7xUkNTpP4\": {\"duration\": 219.27, \"timestamps\": [[0, 27.41], [28.5, 214.88], [214.88, 219.27]], \"sentences\": [\"A group of young children play ball on a grassy field.\", \"  The man rolls the ball and the children take turns kicking it and running around the field.\", \" A young boy kicks the ball and it hits the camera, knocking it off balance.\"]}, \"v_b8eqn-GTdcc\": {\"duration\": 178.56, \"timestamps\": [[0, 28.57], [29.46, 41.07], [99.99, 117.85], [140.17, 155.35]], \"sentences\": [\"A woman is standing up next to a chair talking.\", \" She picks up a bottle and a green rag.\", \" She sprays the chair and starts wiping it with the rag.\", \" She pulls a wipe out of a bottle and wipes down the chair.\"]}, \"v_f11zga3X2L4\": {\"duration\": 132.73, \"timestamps\": [[0, 13.94], [13.27, 55.08], [55.08, 105.52], [105.52, 132.73]], \"sentences\": [\"Two girls and a boy are standing on a stage,turned to their right holding up bows and arrows.\", \"The first boy shoots his arrow,and the rest of them proceed as they attempt to his the target.\", \"After,several more students come along and begin practicing Chinese Archery.\", \"A group of older men then appear kneeling down on the ground before showing an image of a Samurai.\"]}, \"v_9iJ8snVY2s0\": {\"duration\": 125.81, \"timestamps\": [[0, 5.66], [5.66, 13.21], [15.73, 108.82], [109.45, 120.14], [121.4, 125.81]], \"sentences\": [\"We see an opening title screen.\", \" A girl in lingerie sits next to a Christmas tree holding a gift.\", \" The girl shows how to wrap a gift by wrapping a plain box while kneeling on the floor.\", \" The girl adds a bow and shows the finished box.\", \" We then see the ending title screen.\"]}, \"v_0F8F-ON083s\": {\"duration\": 66.78, \"timestamps\": [[0, 6.68], [9.02, 54.43], [55.43, 66.78]], \"sentences\": [\"A group of kids gather at the top of a high dive.\", \" They jump off one by one, landing in the water below.\", \" They turn flips as they go.\"]}, \"v_puPMvwv2kmg\": {\"duration\": 97.71000000000001, \"timestamps\": [[0, 97.71], [0, 36.15], [36.64, 66.93], [68.89, 97.71]], \"sentences\": [\"3 mean are doing step aerobics in a studio.\", \" The man in the red shirt is leading the group.\", \" They switch and now the man in the blue shirt is leading the group.\", \" They switch and the man in the black shirt leads the group.\"]}, \"v_B0cb0B90Ubg\": {\"duration\": 86.4, \"timestamps\": [[0, 9.07], [9.5, 81.65], [81.22, 86.4]], \"sentences\": [\"A man is kneeling on the grass next to a dog.\", \" He begins brushing the dog with a brush.\", \" The dog stands up and walks away.\"]}, \"v_H4spfNy_LG4\": {\"duration\": 149.26, \"timestamps\": [[0, 31.34], [32.84, 149.26]], \"sentences\": [\"people are paddling in a river wearing red life guards and there are other boats around them.\", \"  people are in the rapids of the river.\"]}, \"v_ivkF2jbavhc\": {\"duration\": 66.06, \"timestamps\": [[0, 7.93], [4.62, 31.38], [31.05, 49.22], [49.22, 66.06]], \"sentences\": [\"The opening credit of a movie rolling from hollywood record.\", \" The sky is being recorded on a moving car or train.\", \" Selena Gomez is on the piano playing not paying any mind to anything other then the music.\", \" Girl meets world extended is the title of the project she's working on.\"]}, \"v_9R2wP-iceaw\": {\"duration\": 151.7, \"timestamps\": [[0, 151.7], [53.85, 59.92], [67.5, 71.3], [119.84, 141.08], [141.84, 151.7]], \"sentences\": [\"We see people playing dodgeball in what appears to be a basement of a building.\", \" A man in the middle jumps out of the way of the ball.\", \" A man in yellow falls to the ground.\", \" There Is one man on each team.\", \" The orange team wins and the yellow team all jump in the air.\"]}, \"v_MXDeLfF5rok\": {\"duration\": 167.74, \"timestamps\": [[0, 17.61], [18.45, 37.74], [38.58, 59.55], [60.39, 156.84], [157.68, 167.74]], \"sentences\": [\"The logo \\\"DEFI WIND GRUISSAN\\\" appears on screen with numerous smaller logos below.\", \" The camera is quickly moving across a large body of water.\", \" A waverider is racing across the path of hundreds of windsurfers.\", \" The windsurfers race across the water, using boats as turning points.\", \" Credits and copyright appear on screen.\"]}, \"v_u9YrRYp2t3I\": {\"duration\": 117.63, \"timestamps\": [[0, 34.11], [33.53, 89.99], [90.58, 117.63]], \"sentences\": [\"A person is seen pulling a boat and leads into a girl padding on a boat.\", \" The man climbs in and the people paddle along the water while looking in the camera.\", \" The people kick their feet and wave to the camera followed by one man holding a drink and smiling on the beach.\"]}, \"v_BKdKbFPerGo\": {\"duration\": 70.94, \"timestamps\": [[0, 8.51], [9.58, 50.72], [52.49, 70.94]], \"sentences\": [\"A cartoon man is shown with a camera.\", \" We then see people walking down a railroad track, then floating lazily in intertubes on a river.\", \" The people float near a bridge before the video ends.\"]}, \"v_vS0ppdYTwTc\": {\"duration\": 110.3, \"timestamps\": [[0, 50.18], [50.18, 110.3]], \"sentences\": [\"woman is standing behind another woman sitting in a chair and weting and combing the hair to do a haircut.\", \" woman divide the hair and start to do a french bride and talk to the camera.\"]}, \"v_MSPslSgkp60\": {\"duration\": 158.22, \"timestamps\": [[2.37, 72.78], [55.38, 154.27]], \"sentences\": [\"A man is seen speaking to the camera while holding onto a jump rope in both hands.\", \" The man then does various jumps while demonstrating how to do them properly while stopping to speak to the camera.\"]}, \"v_Ii3jLIcf92s\": {\"duration\": 31.12, \"timestamps\": [[0, 31.12], [12.45, 31.12]], \"sentences\": [\"A young child is seen playing a drumming game in an arcade and moving his arms up and down.\", \" The camera continues to follow the boy as he plays while the boy continuously plays the drums.\"]}, \"v_LANB732DHbo\": {\"duration\": 99.68, \"timestamps\": [[0, 99.68], [1, 6.98], [12.96, 99.68]], \"sentences\": [\"A woman performs a series of gymnastic moves on a balance beam at a professional gymnastic event in front of a large American flag and onlookers.\", \"  The woman stands in front of a balance beam in a gymnast pose.\", \"  The women jumps on the balance beam and does many gymnastic moves on the beam before jumping off of the beam.\"]}, \"v_iUGuDzgow2I\": {\"duration\": 48.65, \"timestamps\": [[0, 26.51], [9, 18.97], [26.76, 43.78], [43.78, 48.65]], \"sentences\": [\"A gymnast performs on the even bars while tuning and flipping.\", \" A person behind the gymnast perform cartwheels and flips in the air on the center of the gym.\", \" The gymnast swing from the border of the bars, the jumps to stand on the hands and make tuns.\", \" Then, the gymnast flips in the air and lands stand on the mat.\"]}, \"v_O3HFalRZVts\": {\"duration\": 123.51, \"timestamps\": [[0, 51.87], [53.11, 94.48], [94.48, 123.51]], \"sentences\": [\"A person cuts a long bread and puts ham and cheese.\", \" Then, the person puts lettuce, tomatoes, cucumber, onions and pepper.\", \" After, the person cuts in two the sandwich, wraps and put it in a bag.\"]}, \"v_d79uK3AhtTU\": {\"duration\": 186.31, \"timestamps\": [[0, 23.29], [27.01, 78.25], [81.04, 163.95], [165.81, 186.31]], \"sentences\": [\"A man is standing in front of another man outside.\", \" The man is suspended by a long rope attached to equipment around his body.\", \" He jumps, bungee jumping to the ground below.\", \" He is released, breathing heavily as other men help him.\"]}, \"v_5WWvCSCGXmc\": {\"duration\": 231.2, \"timestamps\": [[2.31, 102.88], [78.61, 220.8]], \"sentences\": [\"A small group of people are seen riding bikes around a track completing a race with one another.\", \" The people continue riding around as others watch and fades to black.\"]}, \"v_K98WGaMR4eM\": {\"duration\": 105.43, \"timestamps\": [[0, 18.45], [14.76, 18.45], [18.45, 44.28], [44.28, 53.24], [53.24, 61.15], [61.68, 93.83], [90.67, 105.43]], \"sentences\": [\"a man and a woman are practicing wrest movements.\", \" a man and a woman are in a ring wrestling while a referee is standing in the corner of the ring along with a woman holding a wrestling belt.\", \" man and woman are doing wrestling movements in a ring in a dark room and a referee is waching and screaming at them.\", \" a man and a woman wearing suits with capes are doing wrestling movemetns on a ring.\", \" a man anda woman are ina a ring in a wrestling competition fighting while people is in stands screaming.\", \" two women are in a blue ring wrestling in a small white room.\", \" a man and a woman are wrestling in a ring in a competition.\"]}, \"v_ecUypvzBAOQ\": {\"duration\": 157.73, \"timestamps\": [[3.15, 151.42], [3.15, 37.07], [33.12, 48.9], [51.26, 151.42]], \"sentences\": [\"A woman, in a kitchen, talks to a camera while cooking spaghetti and preparing a complete spaghetti dish including sauce and toppings.\", \"  A woman in a red shirt boils spaghetti on a stove top and taste tests it for doneness.\", \"   The woman moves the spaghetti to a sink and pours it into a white bowl.\", \"  The woman pours sauce over the spaghetti, puts spices on top along with shredding cheese on top of it before completing the dish and showcasing the finished product.\"]}, \"v_0KqeKi2CBqg\": {\"duration\": 88.49, \"timestamps\": [[0, 7.08], [7.96, 28.32], [29.2, 35.84], [36.28, 88.49]], \"sentences\": [\"The opening credits of a show display an image of a blonde woman.\", \" A man walks in and sits with her in a restaurant as they talk.\", \" A waiter brings them coffee in white mugs.\", \" Several clips are then shown of the blonde woman talking to various people.\"]}, \"v_qJ4ObH27qjc\": {\"duration\": 102.24000000000001, \"timestamps\": [[0, 102.24], [0, 60.32], [60.83, 99.68], [99.17, 102.24]], \"sentences\": [\"Three men are in a room playing instruments.\", \" One man is in the room singing.\", \" The singing man stops to play an instrument.\", \" The same man stops playing and starts singing again.\"]}, \"v_RTD_JWmhNkA\": {\"duration\": 121.67, \"timestamps\": [[0, 121.67], [4.87, 65.1], [12.78, 100.38], [28.59, 110.72]], \"sentences\": [\"Two man a in a room sitting.\", \" A man on the left is playing a guitar that lays on a table.\", \" The man on the right is playing a guitar the traditional way.\", \" They man on the right is singing while he is playing.\"]}, \"v_1UgjxeAPq_A\": {\"duration\": 179.03, \"timestamps\": [[0, 12.53], [12.53, 50.13], [50.13, 162.91], [162.91, 179.03]], \"sentences\": [\"The intro screen appears with the words Howcast, a flag banner with the words \\\"HOW TO PAINT WITH OILS\\\" appear and various people are show painting on canvases.\", \" Various different lists of supplies you need appear and a person is at a store gathering the supplies.\", \" Tips and steps appear and a man in a red apron begins to demonstrate each step onto a canvas while he's using his paint brush and in his right hand and holding his palette and paint i his left hand.\", \" The tutorial ends and the outro screen with the HOWCAST logo and word appears.\"]}, \"v_dJ0kxnyVzFI\": {\"duration\": 164.19, \"timestamps\": [[0, 6.57], [7.39, 13.14], [13.96, 35.3], [36.12, 55.82], [56.65, 66.5], [67.32, 76.35], [77.17, 79.63], [80.45, 136.28], [137.92, 164.19]], \"sentences\": [\"People pass by a man giving an interview.\", \" People at a marathon are walking and some are running.\", \" A tv news anchor reports on a story.\", \" Those at the marathon are seen cheering, accepting awards, being jovial.\", \" The director of the race gives an interview as people pass behind him.\", \" The people are seen running the marathon.\", \" Two women participating in the marathon are interviewed.\", \" More people run the marathon.\", \" Two ham radio operators talk into the radio.\"]}, \"v_MHo5kioyrFM\": {\"duration\": 201.67000000000002, \"timestamps\": [[1.01, 107.89], [85.71, 191.58]], \"sentences\": [\"Several baskets are seen sitting on the followed by a woman stepping into frame and holding up the boxes while speaking to the camera.\", \" She holds up several more objects and then wraps a bow around the box and presents it in the end.\"]}, \"v_6Kp_fvkZWTE\": {\"duration\": 64.13, \"timestamps\": [[3.85, 18.6], [18.92, 41.69], [42.01, 57.72], [58.04, 63.81]], \"sentences\": [\"An athlete runs and performs a high jump over a pole jump in a gym.\", \" Then, the athlete runs and performs a high jump, but he makes fall the horizontal pole of the pole jump.\", \" After, the athlete jumps again successfully.\", \" A group of people cross the athlete who walks on the track.\"]}, \"v_y3Zq6RZZNtc\": {\"duration\": 25.12, \"timestamps\": [[0, 14.07], [14.07, 25.12]], \"sentences\": [\"A girl puts on a no show sock and then a slip on shoe on her left foot.\", \"  She repeats the process on the right foot.\"]}, \"v_iFA1XhZ6VM8\": {\"duration\": 144.56, \"timestamps\": [[10.84, 44.09], [44.81, 86.73], [86.73, 127.21]], \"sentences\": [\"A person puts flower, sugar, water and two eggs in a bowl.\", \" Then, the person mix the ingredients, and then adds chocolate and mix.\", \" After, the person put the cake mix in a baking pan, then bake in an oven.\"]}, \"v_kWdIYqh6kEo\": {\"duration\": 193.17, \"timestamps\": [[0, 54.09], [54.09, 193.17]], \"sentences\": [\"An intro leads into several shots of people playing hockey and scoring well done goals.\", \" The video continues to countdown and shows several more shots of hockey players scoring impressive goals.\"]}, \"v_bfk3xsTt0XA\": {\"duration\": 61.53, \"timestamps\": [[0, 3.69], [4.92, 48], [51.07, 61.53]], \"sentences\": [\"A man stands outside, pouring water over his head.\", \" Several clips are shown of teams playing soccer in the sand, kicking and throwing the ball toward the opposing goals.\", \" Numerous games and plays are shown before a players hits the sand and the video ends.\"]}, \"v_ofZURf7w9wk\": {\"duration\": 164.7, \"timestamps\": [[0, 29.65], [29.65, 90.59], [90.59, 139.99], [139.17, 164.7]], \"sentences\": [\"A girl is talking about fencing, she does it it for fun and sport.\", \"  You see two people practicing inside of a building moving up and down trying not to get hit.\", \" There seems to be a certain way you move your feet for fencing, like a stepping pattern to move a certain way.\", \" They do competitions and have pictures of their accomplishments with coaches putting medals around her neck and such.\"]}, \"v_Rq1MoqtH8fM\": {\"duration\": 237.55, \"timestamps\": [[0, 84.33], [76.02, 166.29], [165.1, 232.8]], \"sentences\": [\"A close up of tools are shown followed by a man walking in and putting earbuds on as well as using a tool along the grass.\", \" The man continues cutting grass around the yard and leads into him use a leaf blower as well as a lawn mower.\", \" The man uses the mower up and down the yard and ends by blowing the grass around.\"]}, \"v_3cQg4XOkC5Y\": {\"duration\": 106.88, \"timestamps\": [[3.21, 100.47], [60.39, 60.92], [41.68, 42.75]], \"sentences\": [\"Two girls are standing in a yard wearing cheerleading outfits.\", \" A girl raises her hands over her head and does a jump.\", \" She lifts her leg up to her side.\"]}, \"v_EDkYPikPWW8\": {\"duration\": 66.39, \"timestamps\": [[0, 26.89], [25.56, 66.39]], \"sentences\": [\"A couple people are seen walking over to a pinata and being being blindfolded by another.\", \" The person is then spun around and takes several hits at the pinata.\"]}, \"v_v1Vmf5s42No\": {\"duration\": 22.41, \"timestamps\": [[0, 22.41], [0, 2.24], [4.59, 7.17]], \"sentences\": [\"Two smoking ladies walk up and stop.\", \" The right one lights her cigarette then smokes.\", \" The right lady fiddles with her purse.\"]}, \"v_F3iZD7tm8Io\": {\"duration\": 74.86, \"timestamps\": [[0, 5.24], [5.24, 13.48], [14.97, 32.94], [32.56, 43.42], [43.05, 57.64], [57.64, 74.86]], \"sentences\": [\"A young woman is standing at the foot of a pole vault track.\", \" She takes off and runs very fast towards it and makes it over the beam with relative ease.\", \" She is then shown doing the same action in slow motion.\", \" Another young athlete then makes the same jump.\", \" Her action is then repeated, but in slow motion once again.\", \" Another women in a purple top makes the same jump and again, her action is shown again, but in slow motion.\"]}, \"v_bMJlN9iPpCI\": {\"duration\": 189.52, \"timestamps\": [[0, 88.13], [86.23, 189.52]], \"sentences\": [\"Various clips are shown of people putting on sunscreen followed by news hosts speaking to the camera.\", \" The hosts continue speaking to one another and ends with the anchor speaking to the camera.\"]}, \"v_iDhzxzLmwoI\": {\"duration\": 185.21, \"timestamps\": [[0, 101.86], [72.23, 178.72]], \"sentences\": [\"A person is seen in several clips cutting up a roof with a tool as well as others walking around helping.\", \" The people tear off an old roof as well as pool decks and other wooden areas using a large tool to rip it up.\"]}, \"v_Uv_6SJlvCl0\": {\"duration\": 47.79, \"timestamps\": [[0, 6.69], [7.88, 34.17], [36.56, 47.79]], \"sentences\": [\"A grey african parrot walks up to a coffee mug filled with coffee.\", \" He takes a drink, then walks away.\", \" He turns around and begins drinking from a different mug.\"]}, \"v_G5frRzhSNJ8\": {\"duration\": 232.18, \"timestamps\": [[0, 5.8], [6.97, 17.41], [18.57, 29.02], [30.18, 148.59], [40.63, 41.79], [153.24, 159.04], [160.2, 175.29], [176.45, 195.03], [198.51, 204.32], [205.48, 232.18]], \"sentences\": [\"A woman sprays mist onto the hair of young man and she continues on to cut his hair, blow dry it, and finishes off by styling it.\", \" Two hair stylists stand next to a young man as they speak to a camera about Justin Bieber's hairstyle look.\", \" The female hair stylists begins by shampooing the hair of the young man.\", \" He sits and has his cut by the hair stylists.\", \" She sprays a product throughout the hair of the man.\", \" She juggles a few pomades.\", \" She smears the pomade onto her hands and rubs it all over the hair of the young man.\", \" She styles the hair of young man with the use of her hands and a comb.\", \" The young man shows off his new hair cut.\", \" The two hairstylists and the man sit down and chat.\"]}, \"v_pc5_pexVob8\": {\"duration\": 190.5, \"timestamps\": [[0, 19.05], [20, 64.77], [66.67, 133.35], [134.3, 168.59], [169.54, 190.5]], \"sentences\": [\"Black text on a white background appears.\", \" A man wearing a grey suit and safety glasses is playing an electric guitar with an oven glove on the end.\", \" An elderly woman is shown talking before joining a group chopping lettuce at a table.\", \" The crowd holds out a green tarp as the lettuce and salad is poured into it.\", \" They then line up as bowls of the largest salad is served.\"]}, \"v_cr9VTwfM_2w\": {\"duration\": 74.33, \"timestamps\": [[1.11, 34.56], [27.5, 72.47]], \"sentences\": [\"A person is seen riding around a skateboard attempting several jumps and tricks while the camera watches his movements.\", \" The boy continues attempting tricks wile falling off on the side and trying again, landing the moves the last try.\"]}, \"v_9T1C2CW_P0A\": {\"duration\": 171.62, \"timestamps\": [[0, 36.9], [36.9, 83.24], [83.24, 124.42], [124.42, 171.62]], \"sentences\": [\"A group of men have formed together a nice little band.\", \" They have a singer, guitarist and even drummer all together trying to make some music.\", \" The signer is very passionate about his work, he gets very into the song.\", \" Dancing with the mic stand and all as his peers play along with him having a good time.\"]}, \"v_swbCsf51XVg\": {\"duration\": 98.47999999999999, \"timestamps\": [[0, 85.67], [17.23, 21.17], [63.02, 73.36]], \"sentences\": [\"woman is in a white room and sits in a eliptical bicycle.\", \" woman is unscrewing the handles to adjust the resistance.\", \" woman push the buttons on the board computer and show the other functions.\"]}, \"v_q8c_0JTe5r8\": {\"duration\": 130.31, \"timestamps\": [[0, 11.73], [13.68, 42.35], [43.65, 105.55], [107.51, 130.31]], \"sentences\": [\"A screen shows the batter for a marble cake.\", \" First the white batter is placed in the bundt pan, followed by chocolate, then alternating between the two.\", \" A knife is run through the batter to create a marbling effect, and the batter is lightly shaken.\", \" A fully baked cake is then shown and sliced.\"]}, \"v_-bqaXU4s8Qs\": {\"duration\": 55.36, \"timestamps\": [[0, 32.38], [31.55, 55.36]], \"sentences\": [\"A man is seen spraying a large hose against a truck while moving closer to the truck.\", \" He moves around to the front of the vehicle and continues spraying the large hose.\"]}, \"v_tznMNEWglxY\": {\"duration\": 41.47, \"timestamps\": [[0, 41.47], [2.7, 41.47], [36.49, 39.19]], \"sentences\": [\"A woman in a blue shirt is standing next to a balance beam.\", \" Two girls are doing gymnastics on the balance beam.\", \" A woman jumps off the balance beam onto a blue mat.\"]}, \"v_rDT4ngAfeHs\": {\"duration\": 11.7, \"timestamps\": [[1.64, 11.7], [1.52, 11.7], [2.05, 11.7]], \"sentences\": [\"A man is wearing a yellow vest and white hat.\", \" He is vacuuming the floor with a vacuum.\", \" He holds onto the blue hose of the vacuum.\"]}, \"v_1ebIpLiTCvw\": {\"duration\": 184.79, \"timestamps\": [[0, 54.51], [48.97, 54.51], [57.28, 85.93], [86.85, 115.49], [120.11, 184.79]], \"sentences\": [\"A woman is sitting in a chair talking.\", \" A small tan dog is walking on the ground behind her.\", \" A person is making a sandwich on tin foil.\", \" They wrap the sandwich up and put it in a bag.\", \" They are driving their car around giving people the food.\"]}, \"v_Snj5CuEUbPI\": {\"duration\": 178.14, \"timestamps\": [[0, 29.39], [30.28, 91.74], [92.63, 155.88], [154.09, 178.14]], \"sentences\": [\"A hand is seen writing on a piece of people and leads into a caption and several shots of people wearing helmets and holding paddles.\", \" More shots of people riding down a river are shown as well as people climbing out and putting their sticks together.\", \" More people are seen riding down the river while zooming in on their faces and jumping up and down in the raft.\", \" One man almost falls out and a young boy is shown being interviewed for the camera.\"]}, \"v_rmzMfd9ftU8\": {\"duration\": 131.87, \"timestamps\": [[0, 5.93], [7.25, 52.09], [53.41, 85.71], [87.03, 108.13], [108.79, 122.64], [123.3, 131.87]], \"sentences\": [\"An add for a professional cleaning service appears.\", \" A woman is shown inside a house, talking about a sink.\", \" She is demonstrating how to clean the faucet and bowl of the sink by pouring fluid around all the edges.\", \" She uses a scraper to spread the fluid evenly.\", \" The woman wipes down the sink to make it clean.\", \" She is then shown speaking her final words in front of a house with a car parked behind her.\"]}, \"v_o0cVs7THLi8\": {\"duration\": 75.05, \"timestamps\": [[0, 23.64], [19.14, 39.77], [33.77, 57.41], [55.53, 72.05]], \"sentences\": [\"A close up of ice is seen followed by people moving around on the ice.\", \" One player kneels down before a puck and pushes it out onto the ice.\", \" Two men the shuffle in front of the ice and put their hands up to cheer in the end.\", \" Their same shot is shown again in slow motion.\"]}, \"v_n9TuUTNpKwg\": {\"duration\": 88.47, \"timestamps\": [[7.52, 45.12], [46, 81.39]], \"sentences\": [\"A woman runs fast and performs long jump in a sand box, then the woman stand and walk.\", \"  The scene of the woman performing the long jumps is repeated, then the woman jumps happily.\"]}, \"v_sc_L4zUEb7E\": {\"duration\": 128.22, \"timestamps\": [[1.28, 48.08], [33.98, 101.29], [98.73, 124.37]], \"sentences\": [\"Various people are seen sitting in tubes and lead into them pushing themselves along and riding down a snowy mountain.\", \" More clips are shown of people riding down the mountain as well as sitting at the bottom and racing with others.\", \" The cameraman meets the others at the bottom walking around with their tubes.\"]}, \"v_1L_4N307nBk\": {\"duration\": 93.0, \"timestamps\": [[0, 14.88], [14.88, 93], [50.68, 93]], \"sentences\": [\"girl is jumping doing gymnastics in a balance beam inside a gym.\", \" materials list and shows how o use the balance beam.\", \" another people is making gymnastics in the roofed gym and making a hand stands.\"]}, \"v_RrEJ2-TfWCI\": {\"duration\": 67.39, \"timestamps\": [[0, 34.7], [36.05, 67.39]], \"sentences\": [\"Two men are seen holding lacrosse sticks and speaking to the camera with one holding a stick.\", \" The men demonstrate how to properly push another player with sticks and hitting the other person with a stick.\"]}, \"v_IhWxuvzIHkc\": {\"duration\": 29.21, \"timestamps\": [[0, 7.89], [7.89, 26.58], [26.58, 29.21]], \"sentences\": [\"A man turns on his vacuum with his bare feet.\", \"  The man begins vacuuming up some white powder on a hardwood floor.\", \"  The man stops vacuuming and gets a close up view of the clean floor.\"]}, \"v_rZu5ZJmAlbI\": {\"duration\": 230.46, \"timestamps\": [[0, 230.46], [6.91, 20.74], [6.91, 230.46], [194.74, 230.46]], \"sentences\": [\"A partially painted fence stands in a backyard.\", \" A  man enters with a paint sprayer.\", \" He begins to paint the fence.\", \" Eventually the entire fence is red.\"]}, \"v_tFiXLhbKdnk\": {\"duration\": 66.26, \"timestamps\": [[0, 18.88], [12.26, 47.04], [38.1, 61.95]], \"sentences\": [\"A woman is seen dipping rags into a bucket that leads into her washing a car.\", \" Several girls are shown wiping rags along the cars and bending over into buckets.\", \" More girls are seen cleaning when a man walks into frame.\"]}, \"v_4R0fSNCWUo0\": {\"duration\": 155.18, \"timestamps\": [[0, 6.98], [6.98, 155.18], [40.35, 61.3], [80.69, 83.02], [104.75, 115.61], [120.26, 130.35], [133.45, 138.89], [145.09, 150.52], [150.52, 155.18]], \"sentences\": [\"We see a lady talking to the camera.\", \"The lady plays the saxophone in NYC.\", \" The lady lays on the ground, then hangs upside down by her legs.\", \" We see a cop on a horse.\", \" The lady is carried away by the arms.\", \"The lady plays saxophone with a man in his underwear on the street.\", \" We see a bare chested woman in a red wig.\", \" The lady finishes and people clap.\", \" We see the end screen credits.\"]}, \"v_iNs17kcwlDk\": {\"duration\": 100.03, \"timestamps\": [[0, 97.53], [21.51, 48.02], [52.52, 100.03]], \"sentences\": [\"The man in green shirt is playing bongo drums.\", \" The man looked sideways and talked.\", \" The camera zoomed in to the bongo and then zoom out and the man in green shirt continue to play the drums.\"]}, \"v_ZVNRQ_MPZAs\": {\"duration\": 206.69, \"timestamps\": [[0, 14.47], [18.6, 111.61], [124.02, 169.49], [177.76, 206.69]], \"sentences\": [\"A track is shown with several billboards for monster energy drinks.\", \" A dirt bike and its rider appears, getting ready for the race.\", \" The different players speak to the camera before the race.\", \" They are shown kicking up dirt as they fly around the track, taking sharp turns.\"]}, \"v_LPV3n9LeQ80\": {\"duration\": 125.95, \"timestamps\": [[0, 27.08], [27.08, 47.23], [47.86, 80.61], [80.61, 94.46], [95.72, 125.95]], \"sentences\": [\"A male and woman reporter speaks on a TV studio, while a young reporter speaks in the street.\", \" Snow is falling at night, and cars are stuck on the roads covered with snow.\", \" Then, a man shovels the a driveway while talking.\", \" The streets of the city are covered with snow.\", \" A man talks from an office, and the the young reporter in the street continues talking.\"]}, \"v_lOtplLrtapE\": {\"duration\": 209.47, \"timestamps\": [[0, 209.47], [56.56, 155.01], [94.26, 204.23]], \"sentences\": [\"A man shows a video of himself training for the weightlifting events in the Olympics.\", \"  Several times, he picks up weight and lifts it over his head.\", \"  Sometimes he fails, other times he is successful.\"]}, \"v_M2wdIwZMNm8\": {\"duration\": 171.09, \"timestamps\": [[0, 23.95], [30.8, 67.58], [68.43, 136.01], [139.43, 171.09]], \"sentences\": [\"a man is on a snow covered lake with a fishing pole and fish reader.\", \" He is attempting to catch a fish through a hole in the ice.\", \" He reels in a fish, and removes the hook.\", \" He stands up and moves off camera.\"]}, \"v_cSwDKlxiqXQ\": {\"duration\": 127.1, \"timestamps\": [[0, 10.17], [10.17, 23.51], [23.51, 29.87], [34.32, 42.58], [42.58, 48.93], [56.56, 66.09], [66.09, 86.43], [109.3, 111.21]], \"sentences\": [\"We see images of flowers on a postcard.\", \" We see a man in a garden with a cart.\", \" We see a compilation of four shots.\", \" We see a tree in mulch.\", \" We see a man hug a tree.\", \"  We see a man with a tablet and a contraption.\", \" A man shovels mulch and moves it with his hand.\", \" A man moves mulch with his hand.\"]}, \"v_GoFV8lTD4ug\": {\"duration\": 123.09, \"timestamps\": [[0, 36.93], [34.46, 91.7], [72.01, 121.24]], \"sentences\": [\"A man is seen speaking to the camera and leads a man up onto a stage.\", \" The man begins playing the flute while audience members watch him on the side.\", \" The man plays all around the audience as well as in the bathroom and performs several tricks with the flute.\"]}, \"v_Snq0l-gKpWo\": {\"duration\": 33.72, \"timestamps\": [[0, 13.32], [13.32, 22.42], [22.25, 27.82], [27.82, 33.72]], \"sentences\": [\"Three boys one wearing a white t-shirt another wearing a striped shirt and another wearing a blue shirt and a  little girl climb up on top of a bed.\", \" Two of the boys pick the little girl up and prop her on the shoulders of the boy wearing a white t-shirt.\", \" The boy wearing the white t-shirt then lets her fall backwards onto the bed softly.\", \" The three boys then do a fist shake while the little girl lays on the bed.\"]}, \"v__cA6yS9SeEc\": {\"duration\": 134.2, \"timestamps\": [[0, 6.04], [6.71, 23.49], [23.49, 134.2]], \"sentences\": [\"car is driving through street in a neighborhood.\", \" two men are standing in front of the car that is parked at a sid of the street looking a spike rubber and a list of materials is shown.\", \" men are changing the wheel an putting a new one.\"]}, \"v_ZYwfvPJv4Rk\": {\"duration\": 61.58, \"timestamps\": [[0, 6.77], [6.77, 45.26], [45.26, 61.58]], \"sentences\": [\"A man wearing a yellow shirt and eye and ear protection mows his yard with a sit down lawn mower.\", \" The man wearing a yellow shirt goes back and forth the length of the yard in a straight line.\", \" A close up of the driver of the lawn mower as he turns the lawn mower.\"]}, \"v_J8B2dX3FLTo\": {\"duration\": 204.57999999999998, \"timestamps\": [[0, 8.18], [8.18, 17.39], [17.39, 57.28], [57.28, 58.31], [58.31, 134], [134, 135.02], [135.02, 195.37], [195.37, 204.58]], \"sentences\": [\"Justin Beiber is playing the piano with a yellow frame around him.\", \"  The camera zooms in and a caption says \\\"Justin Beiber- Plays Classical Pieces\\\".\", \"  The captions change to \\\"Enter to win a Autographed Justin Beiber Poster\\\".\", \"  The scene fades to black.\", \"  Justin is playing the drums with a caption \\\"Justin Beiber Drum Solo\\\".\", \"  He thows the drumsticks, a caption comes up saying \\\"Justin Beiber Heartless/Successful\\\".\", \"  Justin Beiber is playing the guitar with the youtube link below.\", \" The camera zooms out and a yellow frame appears.\"]}, \"v_nHwqBo0xvog\": {\"duration\": 48.09, \"timestamps\": [[0, 7.69], [8.18, 38.23], [41.36, 48.09]], \"sentences\": [\"Two little girls are playing in an outdoors park.\", \" They kick a ball back and forth to each other.\", \" They hop and run after the ball.\"]}, \"v_u2329Chp6IY\": {\"duration\": 165.19, \"timestamps\": [[4.96, 165.19], [6.61, 165.19], [56.99, 58.64]], \"sentences\": [\"People are riding around in bumper cars.\", \" They begin bumping into each other.\", \" A green car spins around and hits a gray car.\"]}, \"v_hSlydQ9rJuk\": {\"duration\": 53.29, \"timestamps\": [[3.2, 14.92], [19.98, 31.97], [15.19, 34.9], [34.9, 48.49]], \"sentences\": [\"A woman throws a frisbee in the yard and the dog runs to get it.\", \" Three people play soccer in the yard.\", \" The woman throws a frisbee in the air and the dog catch it, then the woman and the dog run.\", \" After, the woman makes a circle with her arms for the dog to jump.\"]}, \"v_xfhwYTFCGYY\": {\"duration\": 104.53999999999999, \"timestamps\": [[0, 15.68], [15.68, 100.88], [73.7, 83.63]], \"sentences\": [\"a woman is explaining the materials to iron garments.\", \" Then, the woman explains step by step how to iron clothes.\", \" The iron is on a blue blouse.\"]}, \"v_86Yl3F2HSik\": {\"duration\": 91.37, \"timestamps\": [[0, 3.2], [3.2, 12.79], [12.34, 58.93], [58.93, 91.37]], \"sentences\": [\"A young man is outside on a tennis court in the middle of a trailer and several trees.\", \"He is alone and starts to illustrate different tricks that you could do when servicing the ball.\", \"For the first one,he has the ball on the end of the tennis racket that is upside down,he jilts the tennis racket up and hits the ball while it is up in the air.\", \"Once that is successful,more tricks follow and he does other things such as spinning,behind the back, and juggle serves.\"]}, \"v_WaVrNbTmbU4\": {\"duration\": 107.63, \"timestamps\": [[0, 1.61], [5.38, 27.44], [29.06, 88.79], [94.17, 107.63]], \"sentences\": [\"A video shows how to paint old furniture.\", \" A man in overalls appears, showing off several kinds of paint brushes and talking about each of them.\", \" He then sands and paints the benches a different color.\", \" When he is done, he continues to talk to the camera before walking away.\"]}, \"v_FeWZkO6kZl0\": {\"duration\": 214.37, \"timestamps\": [[0, 23.58], [27.87, 72.88], [76.1, 191.86], [191.86, 214.37]], \"sentences\": [\"Females are on a field, playing field hockey.\", \" They fight over the ball and try to get it into a goal.\", \" They are shown from numerous angles playing the game.\", \" A girl jumps up, high fiving her teammates.\"]}, \"v_FlLDPameKGM\": {\"duration\": 10.08, \"timestamps\": [[0, 2.62], [2.72, 6], [6.3, 10.08]], \"sentences\": [\"A woman is wearing a green robe, seated on a bed.\", \" She is using a large brush to brush her hair.\", \" She looks up, continuing to brush.\"]}, \"v_BQ_BJNFGmTg\": {\"duration\": 65.32, \"timestamps\": [[0, 63.36], [63.36, 65.32]], \"sentences\": [\"A man plays two drums while seated on a carpet.\", \" The man stops playing the drums and smiles.\"]}, \"v_f4CSejhkTd8\": {\"duration\": 120.81, \"timestamps\": [[4.23, 24.16], [24.16, 32.62], [32.62, 120.81]], \"sentences\": [\"a man and a woman are standing on a room talking to the camera.\", \" woman is doing exercise in diferent machines like rowing, eliptical and legs machine and lifting weight.\", \" the man keeps talking to the camera in a small gym room in front of a mirror and the woman is doing exercise in the elliptical machine.\"]}, \"v_xs5imfBbWmw\": {\"duration\": 232.36, \"timestamps\": [[0, 79], [56.93, 173.11], [177.76, 232.36]], \"sentences\": [\"Various shots are shown of people riding down a river in a large raft while continuously paddling.\", \" Close ups of the girls are shown as well as several other people waving and riding down the river.\", \" Several people speak to the camera as well as swim in the water and lead into more shots of them riding down the river.\"]}, \"v_Hxgjh9Yb408\": {\"duration\": 29.28, \"timestamps\": [[7.03, 28.13], [7.03, 16.41], [16.41, 23.73], [23.73, 28.13]], \"sentences\": [\"A man on a black horse showcases several different rodeo moves involving calf roping in a dirt filled, fence bordered, outdoor, rodeo ring.\", \"  A man in a cowboy hat and riding a black horse lasso's a running calf before jumping off of the horse in mid run to rope the calf.\", \"  The man then is shown exhibiting a toe and heel move from a horse to a calf in the rodeo ring.\", \"  A black and white marketing graphic then shows with a cut away to a tethered black horse on a lawn.\"]}, \"v_AOteP9srRpw\": {\"duration\": 11.1, \"timestamps\": [[0, 4.83], [5.55, 11.1]], \"sentences\": [\"A man is parasailing on the ocean.\", \" He turns flips and continues sailing quickly.\"]}, \"v_RnRUwLtR33g\": {\"duration\": 27.15, \"timestamps\": [[0.54, 27.01], [0.54, 3.26], [3.8, 19.68], [25.65, 27.01]], \"sentences\": [\"A young girls talks into the camera and demonstrates several jump rope stunts and techniques from an outdoor paved park ground, surrounded by houses and foliage.\", \"  The girl talks to the screen and smiles while the camera has a close up.\", \"  The girl begins to jumprope on the park ground exhibiting rope work  and leg work within the techniques.\", \"  The girl reappears in a last closeup of her talking and laughing.\"]}, \"v_bY2dgTJFWko\": {\"duration\": 73.86, \"timestamps\": [[8.12, 9.6], [8.12, 69.06], [67.22, 69.43]], \"sentences\": [\"A man does a back flip on a slack line.\", \" He continues to do tricks on the slack line.\", \" He jumps off the slack line onto the ground.\"]}, \"v_rWdXyKZnL2U\": {\"duration\": 151.49, \"timestamps\": [[0, 15.91], [15.91, 30.3], [30.3, 69.68], [69.68, 151.49]], \"sentences\": [\"A man wearing a black baseball cap gives instruction on playing a violin.\", \" The man plays a scale on the violin.\", \" The violin player stops playing and describes another swing scale.\", \" The man plays another scale and stops to describe the scale and process of playing the violin.\"]}, \"v_bH-S32gOlCA\": {\"duration\": 218.55, \"timestamps\": [[0, 111.46], [110.37, 218.55]], \"sentences\": [\"A shot of players speaking is shown followed by hockey players playing together and pictures of them standing together.\", \" The men continue skating around one another while speaking and laughing to each other.\"]}, \"v_V6B8zFv1DdA\": {\"duration\": 126.27, \"timestamps\": [[0, 41.67], [32.2, 95.33], [87.76, 119.96]], \"sentences\": [\"A person is seen standing on a soccer field hitting a ball around the area.\", \" A man is seen speaking to the camera and leads into more clips of people playing.\", \" More people are seen speaking to the camera while more shots of soccer are shown.\"]}, \"v_NnMMEFglHBQ\": {\"duration\": 158.9, \"timestamps\": [[4.77, 11.92], [15.1, 30.98], [30.98, 50.85], [54.02, 58.79], [60.38, 61.97], [67.53, 95.34], [96.13, 115.2], [122.35, 153.33]], \"sentences\": [\"A woman talks to the camera while next to a vacuum cleaner.\", \" Closeups of the vacuum cleaner working is shown.\", \" The woman is shown filling a container in close up.\", \" The woman seals the container.\", \" The woman inserts the container into the vacuum.\", \" More closeups of the vacuum cleaner working are shown.\", \" The woman uses some instruments next to the vacuum cleaner.\", \" The woman demonstrates cleaning out the vacuum cleaner.\"]}, \"v_YTBmMSIczEc\": {\"duration\": 13.65, \"timestamps\": [[0, 2.59], [1.98, 9.76], [9.76, 13.65]], \"sentences\": [\"A hockey player with short black hair and a white and green uniform is shown.\", \"Once he is finished,the man is pictured being a goal as an opponent in a red uniform tries to hit the puck in the goal.\", \"He comes back to talk to the camera and then a black screen is pictured with the word Hockey Community shown.\"]}, \"v_KRSBbX-itrY\": {\"duration\": 43.33, \"timestamps\": [[0, 43.33], [0, 21.45], [27.95, 43.33]], \"sentences\": [\"People are sitting in rafts going down a river.\", \" A person is standing up next to the water.\", \" They go down a small waterfall and one of the rafts flips over.\"]}, \"v_PL1JmxPH7y4\": {\"duration\": 47.76, \"timestamps\": [[0, 17.43], [17.67, 37.97], [38.45, 47.76]], \"sentences\": [\"An empty room full of elliptical machines are shown sitting in front of a glass wall.\", \"A man then comes and lays down on his back and starts to do crunches with the machine.\", \"After a short of amount of time,the man then gets up and grabs the camera and leaves.\"]}, \"v_HWcWElJfEjw\": {\"duration\": 172.73, \"timestamps\": [[0, 48.37], [44.91, 126.1], [118.32, 164.96]], \"sentences\": [\"A man is seen putting items into a large bowl while speaking off into the distance.\", \" The man stuffs a toy into the ball and spins it around.\", \" He then ties a bow around the top and presents it to the camera.\"]}, \"v_pXyT_AybrQ8\": {\"duration\": 161.96, \"timestamps\": [[14.58, 157.1], [15.39, 49.4], [23.48, 124.71], [124.71, 151.43]], \"sentences\": [\"A man demonstrates how to remove carpet from a carpeted, narrow, stairwell.\", \"  A man sits on carpeted stairs and talks to a camera while pointing to the creases in the stairs.\", \"  The man pulls out a knife and starts pulling the carpet away from the stairs with his gloved hands.\", \"  The man then points at a wooden piece of the stairs with nails in it and continues to talk while looking at the camera.\"]}, \"v_sVT71OQjHE0\": {\"duration\": 55.49, \"timestamps\": [[12.76, 24.14], [24.14, 34.12], [51.05, 55.49]], \"sentences\": [\"A woman is throwing paint onto a wall.\", \" She spreads it out with a spatula.\", \" She poses in front of the wall and gives a thumbs up.\"]}, \"v_Q0U51Hqn21w\": {\"duration\": 6.34, \"timestamps\": [[0, 1.14], [1.33, 3.14], [3.36, 6.34]], \"sentences\": [\"A man stands on a circle inside a net.\", \" He spins around a couple of times.\", \" He lets go of the disc, letting it fly through the air.\"]}, \"v_qx1FNJxiUuE\": {\"duration\": 134.7, \"timestamps\": [[21.55, 49.84], [50.51, 58.59], [67.35, 74.76], [95.64, 106.41]], \"sentences\": [\"A man is rolling out dough on a counter.\", \" He cuts out round circles out of the dough.\", \" He puts them on a cookie sheet and puts them in the oven.\", \" He puts frosting on the cookie and puts two of them together.\"]}, \"v_dcsQy55tjw4\": {\"duration\": 60.12, \"timestamps\": [[0, 16.53], [16.83, 36.97], [37.27, 60.12]], \"sentences\": [\"A young athlete is shown standing ready on a platform holding a ball in her hands.\", \" She throws the ball and another girl step up and throws the ball.\", \" She gets caught on the string but walks away when another girl steps up and throws the ball.\"]}, \"v_P2fUelA4BfA\": {\"duration\": 32.56, \"timestamps\": [[0, 24.09], [24.25, 32.56]], \"sentences\": [\"A chef sits on a crate and peels potatoes with a hand peeler gadget.\", \" The chef drops the potato into the bucket and takes a break waving his arms.\"]}, \"v_CQXhtaNkhrw\": {\"duration\": 136.98, \"timestamps\": [[0, 19.18], [20.55, 91.09], [77.39, 128.76]], \"sentences\": [\"A man is seen sitting on stage holding an accordion in his hands.\", \" The man then begins playing the instrument while looking off into the distance.\", \" The man continues playing while smiling to the camera and stops playing in the end.\"]}, \"v_KzogfJrOqJE\": {\"duration\": 222.68, \"timestamps\": [[0, 97.98], [103.55, 211.55]], \"sentences\": [\"A woman is seen turning on a hose to pour water in and walks over to another bucket and sits down.\", \" The woman then washes the clothes in the bucket while looking to the camera leading into her hanging up the clothes and speaking to the camera.\"]}, \"v_DQVkDzj4cPE\": {\"duration\": 178.54, \"timestamps\": [[0, 51.78], [19.64, 30.35], [84.81, 178.54]], \"sentences\": [\"Two people are laying in a swimming pool.\", \" They begin to kick their legs in the pool.\", \" They swim with little boards in front of them.\"]}, \"v_bCD6_kGsF9A\": {\"duration\": 134.26, \"timestamps\": [[0, 134.26], [19.47, 134.26], [2.69, 134.26]], \"sentences\": [\"woman is on roller skate in a competition doing tricks around cones.\", \" people is sitting on chairs under tents watching the girl.\", \" people is standing next to the fence watching the girl.\"]}, \"v_-79MZQX4CEA\": {\"duration\": 65.23, \"timestamps\": [[0, 11.09], [11.41, 23.81], [24.46, 47.94]], \"sentences\": [\"A man in a suit is talking.\", \" Another man in a suit talks in front of a TV screen.\", \" People are running around on a field playing lacrosse.\"]}, \"v_Fi2Al65EH0g\": {\"duration\": 187.13, \"timestamps\": [[0, 14.97], [16.84, 52.4], [52.4, 98.24], [100.11, 131.93], [132.86, 180.58], [181.52, 187.13]], \"sentences\": [\"We see a number of opening scenes.\", \" we see a person in a yard playing with a dog.\", \" We see a title scree and the person rolls the Frisbee for the dog.\", \" We see title screen and the lady throws Frisbee to the dog.\", \" We see a title screen and the dog runs around the lady.\", \" We then see the closing screen.\"]}, \"v_cUdIbmXb2yI\": {\"duration\": 102.49000000000001, \"timestamps\": [[0, 24.6], [24.6, 67.65], [68.67, 102.49]], \"sentences\": [\"People are sitting on stairs by the water.\", \" Two girls get up and start dancing.\", \" A band is playing music on a stage.\"]}, \"v_AeOUzM7nl5w\": {\"duration\": 79.72, \"timestamps\": [[0, 79.72], [16.74, 35.07], [35.07, 53.81], [53.81, 79.72]], \"sentences\": [\"A girl is making a tutorial for putting on contacts.\", \"  She gets one in her fingers and explains which side goes out.\", \"  She puts in on her finger and she attempts to put it in her eye but it falls out.\", \"  She tries again and it stays and she gets close to the camera to show that the contact is in.\"]}, \"v_lneRTkBTPwg\": {\"duration\": 79.85, \"timestamps\": [[1.2, 21.56], [25.95, 56.3], [55.1, 77.86]], \"sentences\": [\"Two people are seen fencing back and fourth while others walk around them and watch.\", \" The people switch places and continue fencing onward back and fourth.\", \" The men move up and down the mat while others continue to watch on the sides.\"]}, \"v_YNo7-L8VQWw\": {\"duration\": 149.17000000000002, \"timestamps\": [[0, 11.93], [11.19, 114.11], [128.28, 142.45]], \"sentences\": [\"A man holds up a yellow funnel.\", \" He begins to wipe snow off the side of a minivan.\", \" A yellow tractor dumps something into a truck.\"]}, \"v_M-n0vW3p2sE\": {\"duration\": 40.15, \"timestamps\": [[0, 40.15], [0, 38.14], [0, 33.12], [5.62, 8.23], [33.32, 37.94], [38.14, 40.15]], \"sentences\": [\"A crowd in the background watches gymnasts performing.\", \" A gymnast runs across a floor, performing cartwheels and flips.\", \" Another gymnast in an orange suit, jumps onto two bars and performs many flips.\", \" A coach who was standing nearby removes a mini trampoline from under the bars.\", \" The gymnast jumps off the bars and lands on his butt.\", \" He stands up and raises his arms above his head.\"]}, \"v_dPZfExDmX9Y\": {\"duration\": 180.07, \"timestamps\": [[1.8, 80.13], [49.52, 170.17]], \"sentences\": [\"A young child is seen standing in front of a counter and begins putting ingredients onto a slice of bread.\", \" The girl continues spreading around ingredients while looking back and laughing to the camera.\"]}, \"v_lI6h3H4Zs98\": {\"duration\": 91.46000000000001, \"timestamps\": [[0, 16.01], [18.75, 55.34], [61.74, 91.46]], \"sentences\": [\"A group of kids are around a bunch of shelves looking at trophies.\", \" The kids are jumping ropes together.\", \" They do forward and back flips as they go.\"]}, \"v_IgAE9XJVIlk\": {\"duration\": 106.12, \"timestamps\": [[3.71, 16.45], [16.45, 70.57], [71.1, 99.22]], \"sentences\": [\"A teen dance hip hop in a rooftop during the day and night while other teens watch.\", \" A young man stands on his hands spinning around and dance hip hop, also the teen dance hip hop during the day and night.\", \" Then, the young man spins around many times, then the teen dance hip hop.\"]}, \"v_91WRZuT4c6E\": {\"duration\": 111.64, \"timestamps\": [[0, 12.28], [12.84, 27.35], [27.91, 41.31], [41.87, 44.66], [45.22, 66.43], [58.05, 66.43], [66.99, 111.64]], \"sentences\": [\"A crew of men clean a red car with clothes.\", \" Two women talks inside a car washing shop where there are people waiting.\", \" The crew cleans cars by hand and in a machine.\", \" A worker gives money to man who signs a paper.\", \" A man driving a yellow car is interviewed, then a reporter talks in a parking lot.\", \" Men clean a yellow car in a parking lot.\", \" Men cleans other cars, and the reporter talks with people.\"]}, \"v__nGlzZystmo\": {\"duration\": 139.02, \"timestamps\": [[9.04, 75.07], [62.56, 123.03]], \"sentences\": [\"Various shots are shown of an indoor stadium followed by two men performing soccer steps around one another.\", \" The men continuously demonstrate how to properly perform soccer moves while the camera captures them from many angles.\"]}, \"v_EFEI0-awheU\": {\"duration\": 19.78, \"timestamps\": [[0.49, 9.99], [11.57, 19.59]], \"sentences\": [\"A man wearing glasses is seen speaking to the camera and leads into a man sitting down holding an iron.\", \" The man then looks over to the camera and takes a sip of water.\"]}, \"v_4CsTbXdERSU\": {\"duration\": 188.76, \"timestamps\": [[0, 88.72], [88.72, 93.43], [93.43, 182.15], [183.09, 188.76]], \"sentences\": [\"An individual is shown installing some sort of covering on a rooftop.\", \" The camera pans to show the nearby buildings.\", \" The man is shown kneeling and installing the covering on a raised ridge on the rooftop.\", \" The camera pans over a view of the completed rooftop.\"]}, \"v_cFCN9QE1M0c\": {\"duration\": 42.98, \"timestamps\": [[0.86, 20.2], [16.55, 41.69]], \"sentences\": [\"A man is seen playing an instrument before a microphone and large tv's seen behind him.\", \" The man continues playing as a group of people dance behind him and the audience cheering.\"]}, \"v_FIaXCUPjFY0\": {\"duration\": 29.03, \"timestamps\": [[0, 14.51], [8.85, 27.14]], \"sentences\": [\"A person is seen holding up a small dog under running water.\", \" Women stand beside the dog helping to wash it off as the dog kicks it's legs around.\"]}, \"v_yFJVEplkVHA\": {\"duration\": 102.7, \"timestamps\": [[0, 47.76], [7.7, 12.84], [13.35, 47.24], [49.81, 65.22], [66.76, 86.78], [87.81, 97.57]], \"sentences\": [\"A band plays an acoustic guitar with a band on stage during a party.\", \" A man sits down wearily and his guitar is taken by a man in the crowd.\", \" The man from the crowd plays a guitar with the band on stage happily.\", \" A man fights fights with his date in the crowd.\", \" The man playing the guitar stops and intervenes with the couple standing between them.\", \" The boyfriend challenges the man and pushes him then get put into an arm lock and disabled.\"]}, \"v_Y2UkP0rySHA\": {\"duration\": 105.47, \"timestamps\": [[0, 21.09], [21.09, 50.62], [50.62, 75.94], [75.41, 105.47]], \"sentences\": [\"A man is getting ready to go down a very snowy mountain using a very interesting contraption.\", \" Once he starts he takes his time moving his body with the gear.\", \" He  takes his time building up some speed moving from one side to the other.\", \" He enjoys his time on the slop very much.\"]}, \"v_QjMNQxu3Zf8\": {\"duration\": 70.59, \"timestamps\": [[0, 20.12], [19.06, 47.65], [44.47, 70.59]], \"sentences\": [\"The lady is in the bathroom brushing her teeth while talking to the camera.\", \" The lady started dancing and laughing then brush her teeth.\", \" The lady brushed her teeth and laughed at the same time.\"]}, \"v_LLFhSU-XuTI\": {\"duration\": 59.98, \"timestamps\": [[0, 14.39], [6.6, 14.69], [14.39, 33.59], [33.59, 43.78], [43.78, 50.98], [50.68, 59.98]], \"sentences\": [\"A man rides on a stationary bicycle.\", \" The camera pans to show another man wearing strange headgear mixes something in a bowl.\", \" The camera pans to capture both of them together.\", \" The camera pans back to focus on the second man.\", \" The second man stops mixing and tastes what he was mixing.\", \" The second man offers the first man a taste of the mixture.\"]}, \"v_bG7hnpAeja0\": {\"duration\": 200.3, \"timestamps\": [[0, 33.05], [33.05, 57.09], [57.09, 96.14], [96.14, 157.23], [157.23, 200.3]], \"sentences\": [\"Several people are outside with their phones waiting to see a performance of some sort.\", \"After,a black sheet comes down and six sumo wrestlers begin dancing before they take off running.\", \"As they run through trash cans,a group of cheerleaders are also running and the sumo wrestlers stop short to not run into the cheer leaders.\", \"They continue running through the city doing various activities such as going to bars,drinking milk and eating at the gas station.\", \"The video then changes to animated and other video links become present.\"]}, \"v_JKa3jnnowNo\": {\"duration\": 140.34, \"timestamps\": [[9.12, 61.05], [62.45, 101.75], [101.75, 127.01]], \"sentences\": [\"Two men fix the roof of a rotten roof of a house.\", \" A man puts nails to new planks in the roof.\", \" A man holds a flame while putting covers to the roof.\"]}, \"v_msELZwMnoFo\": {\"duration\": 147.48, \"timestamps\": [[25.81, 140.11], [33.92, 140.11], [41.3, 140.11], [131.26, 140.11]], \"sentences\": [\"The people are shown surfing in the water on surfboards.\", \" Some people surf on their bellies.\", \" the strong waves knocks many people off of their boards.\", \" There is one person who has gotten out of the water and is holding a green surfboard and goggles, while walking in the sand.\"]}, \"v_ll91M5topgU\": {\"duration\": 10.31, \"timestamps\": [[0, 1.7], [1.7, 3.71], [3.71, 6.13], [6.13, 10.31]], \"sentences\": [\"A man wearing headphones is walking around his yard casually with a leaf blower.\", \" He is using it to move all the leaves off of the grass.\", \" He blows  the leaves with the blower not really making any progress.\", \" Then he freezes in place and stops moving.\"]}, \"v_pGKTRM1vcfw\": {\"duration\": 43.98, \"timestamps\": [[0, 11.65], [6.82, 29.25], [23.09, 43.98]], \"sentences\": [\"The players are playing lacrosse in the field.\", \" The coaches are standing on the side of the field and walked.\", \" The players walked towards their benches.\"]}, \"v_aOTtBZynDOQ\": {\"duration\": 79.67, \"timestamps\": [[0, 8.37], [8.76, 79.67], [65.33, 68.51], [75.29, 76.88]], \"sentences\": [\"We see shots of a man on a track with a javelin and we see his name and the city and year.\", \" The man repeatedly runs down the track and throws the javelin.\", \" We see 86m in the upper right corner of the screen.\", \" We see a lady recording the event with a camera.\"]}, \"v_nKa1e_CpvoY\": {\"duration\": 223.95, \"timestamps\": [[5.6, 17.92], [20.16, 22.39], [23.51, 34.71], [29.11, 30.23], [36.95, 217.23]], \"sentences\": [\"A woman wearing a chef's uniform and standing in a kitchen talks to the camera.\", \" The camera focuses on an uncompleted cake.\", \" The woman talks to the camera some more.\", \" A closeup of a bowl if eggs is shown.\", \" A sequence of quick cuts is shown in which the woman mixes eggs and other ingredients together into a cake.\"]}, \"v_lKSlIMfWZXI\": {\"duration\": 187.71, \"timestamps\": [[0, 26.28], [36.6, 74.15], [104.18, 187.71]], \"sentences\": [\"A view is shown of a person inside a bathroom.\", \" A woman dips a hose into a large tub.\", \" She appears to be cleaning supplies.\"]}, \"v_Trzd5ijRN1A\": {\"duration\": 162.82, \"timestamps\": [[0, 64.31], [62.69, 156.31]], \"sentences\": [\"Two people wearing masks are seen performing a fencing match while several others watch them on the side lines.\", \" The match continues on with the people going back and fourth while others practice behind them and watch.\"]}, \"v_S6VgTNGiIkg\": {\"duration\": 235.36, \"timestamps\": [[0, 51.78], [49.43, 174.16], [156.51, 229.47]], \"sentences\": [\"A close up of a pool table is shown followed by a person performing tricks.\", \" Many people perform different tricks on the pool table while using various objects.\", \" He continues performing tricks over and over and ends with the dog on the table.\"]}, \"v_FARJEomZRrc\": {\"duration\": 139.57999999999998, \"timestamps\": [[13.26, 25.82], [26.52, 38.38], [39.08, 102.59], [103.98, 127.01]], \"sentences\": [\"A man uses a power sander to sand fence pickets.\", \" He rubs a bare hand over the picket to make sure it is smooth.\", \" He checks each picket and once he is sure they are ready he covers them in a white stain.\", \" The stain dries and the man shows what each picket looks like stained.\"]}, \"v_0hdwFR5qWz4\": {\"duration\": 228.74, \"timestamps\": [[0, 16.01], [9.15, 16.01], [16.01, 30.88], [32.02, 64.05], [66.33, 78.92], [81.2, 84.63], [89.21, 165.84], [147.54, 153.26], [166.98, 204.72], [170.41, 173.84], [173.84, 187.57], [188.71, 191], [207.01, 228.74]], \"sentences\": [\"We see a cityscape cut with scenes of people.\", \" The day fades to night.\", \" We see a title screen.\", \" We see a room with people in bleachers cut with teams taking photos.\", \" People are in a conference room.\", \" A little boy snarls at the camera.\", \" We see men playing foosball and shots of the crowd.\", \" We see shots of cameras.\", \" We see people celebrating their victory.\", \" A crowd jumps over a wall.\", \" Groups of People hug and jump.\", \" A man and woman hug and kiss.\", \" We then see the ending screen.\"]}, \"v_knnQ99kDt8w\": {\"duration\": 39.06, \"timestamps\": [[0, 19.72], [19.33, 37.1]], \"sentences\": [\"A small group of people are seen jumping and down on trampolines throwing balls back and fourth to one another.\", \" The camera pans around to the other team playing the sport and people watching on the sides.\"]}, \"v_3L0MnbQkLWM\": {\"duration\": 151.42000000000002, \"timestamps\": [[0, 19.68], [7.57, 21.96], [15.9, 46.18], [32.55, 151.42]], \"sentences\": [\"A young girl stands in the drive way.\", \" She starts backing up toward the street.\", \" She then runs forward toward the camera.\", \" She then does hopscotch on the cement.\"]}, \"v_gWz4P3Jnis8\": {\"duration\": 174.06, \"timestamps\": [[0, 46.13], [46.13, 90.51], [90.51, 129.67], [129.67, 174.06]], \"sentences\": [\"A man is sitting on his couch inside of the house talking with a hookah in his arms.\", \" He puts the hookah in his mouth and inhales some some and then he starts exhaling and tapping his face at the same time making o's.\", \" He talks trying to explain how you make the o's or what not  before going ahead and demonstrating again.\", \" He tirns the camera to show his hookah and the aluminum foil on it.\"]}, \"v_4bUxtqX_oxM\": {\"duration\": 19.78, \"timestamps\": [[0, 3.36], [2.97, 6.23], [6.92, 12.46], [11.57, 19.78]], \"sentences\": [\"a woman is holding a camera in front of her face.\", \" The woman moves the camera to expose the camel she is riding.\", \" There is a row of people riding camels behind the woman.\", \" There is one person in front of the woman riding a camel.\"]}, \"v_s60we-9PBhw\": {\"duration\": 79.67, \"timestamps\": [[0, 10.36], [10.36, 79.67]], \"sentences\": [\"A white cat is laying on a blue sheet sleeping peacefully.\", \"Suddenly, a hand comes and grabs its paw and begins to groom the cat's nails.\"]}, \"v_yt0K2HWC0WI\": {\"duration\": 235.87, \"timestamps\": [[0, 86.09], [57.79, 235.87]], \"sentences\": [\"A person is seen jumping on a string and leads to the man speaking to the camera and continuing to walk and jump on a rope.\", \" The man demonstrates over and over again how to properly execute moves on the string while the camera transitions to him speaking to the camera.\"]}, \"v_Oa26_SgrY8w\": {\"duration\": 129.08, \"timestamps\": [[0, 12.26], [18.72, 76.8], [79.38, 105.85], [111.65, 129.08]], \"sentences\": [\"A news man is sitting in a news room with an image of the Budweiser logo behind him.\", \" Then several people are shown indoors, playing a sweeping game.\", \" The players are interviewed sporadically as they play.\", \" A hockey game scene is shown for a few seconds.\"]}, \"v_TxgvL4ZJZbo\": {\"duration\": 10.4, \"timestamps\": [[0, 10.4], [5.36, 7.75], [9.1, 9.31]], \"sentences\": [\"A person is windsurfing in the body of water.\", \" The person turns the board and sail around.\", \" The person steps of the board.\"]}, \"v_SoWow2cxfac\": {\"duration\": 148.21, \"timestamps\": [[0, 17.79], [17.79, 61.51], [61.51, 92.63], [93.37, 138.58], [139.32, 148.21]], \"sentences\": [\" A man plays frisbee with a dog throwing it to the air to grab the dog.\", \" Then, the man throws far a frisbee and the dogs runs to fetch it with his mouth.\", \" After, the man grabs the dog on his arms, then put on his back to play with the frisbee.\", \" Next,the man throws the frisbee far and the dog goes to fetch it in the air.\", \" After, the man holds the dog on his arms and walks away.\"]}, \"v_VNUVKrN4ndc\": {\"duration\": 83.71000000000001, \"timestamps\": [[0, 5.86], [5.86, 25.11], [25.11, 81.2], [65.29, 81.2]], \"sentences\": [\"In the beginning three different cut scenes are shown that shows different gymnasts completing different exercises.\", \" Afterwards a male instructor is seen standing next to parallel bars and giving instructions.\", \" Subsequently a gymnast converges on the parallel bars and starts to swing.\", \" The instructor than starts to explain to the camera the actions of the gymnast as he goes through the motions .\"]}, \"v_eRN5gqZFXHI\": {\"duration\": 186.02, \"timestamps\": [[0, 54.87], [53.01, 122.77], [123.7, 186.02]], \"sentences\": [\"A young man is shown speaking to the camera and puts a can of cleaner on the table.\", \" He puts two more bottles on the table and shows off a pair of shoes.\", \" He puts cleaner on the shoes and shines them using a rag.\"]}, \"v_Z47QGlaQ1NE\": {\"duration\": 166.3, \"timestamps\": [[0, 23.28], [24.11, 112.25], [114.75, 166.3]], \"sentences\": [\"An athlete leans forward, and starts running.\", \" He jumps over a high beam onto a mat backwards.\", \" Multiple team members do the same, landing on the mat and fist pumping in the air.\"]}, \"v_FIw076A69Oc\": {\"duration\": 61.07, \"timestamps\": [[0.31, 18.63], [16.18, 61.07]], \"sentences\": [\"A man is seen standing on a playground while lifting himself up and down on a set of bars.\", \" The man continues with this exercise and ends with him climbing back up and speaking to the camera.\"]}, \"v_OiL6Aj0gC14\": {\"duration\": 152.46, \"timestamps\": [[0, 138.74], [137.98, 149.41], [142.55, 152.46]], \"sentences\": [\"Two men are playing ping pong in a room.\", \" The man in the yellow shirt raises his hands in the air.\", \" The crowd sitting watching the game cheers.\"]}, \"v_7S15OsGinjw\": {\"duration\": 72.56, \"timestamps\": [[0, 15.24], [13.06, 42.81], [39.91, 63.86], [60.95, 72.56]], \"sentences\": [\"A man in gray suit outside the building, wearing red necktie is talking in front of the camera while cars behind him are passing by.\", \" Kids at the park are playing with the fountain, while other kids are playing at the playground, a little girl in green press a big button and took a shower.\", \" The muddy water in the bay is shown, A man and two kids are building a castle, while to kids are playing in the sand, and the man is helping build the sandcastle.\", \" Two women are playing volleyball.\"]}, \"v_b1QkoG9hxk8\": {\"duration\": 77.53, \"timestamps\": [[0, 69.78], [30.24, 77.53]], \"sentences\": [\"A woman shows how to make mixed drinks with chocolate syrup, kahlua, and Bailey's.\", \"  She adds ice, the liqueur and puts it on a napkin.\"]}, \"v_45llr44Pu9g\": {\"duration\": 214.18, \"timestamps\": [[0, 18.21], [22.49, 134.93], [136, 198.12], [199.19, 214.18]], \"sentences\": [\"A man is standing in front of a bicycle as he talks.\", \" He uses a scredriver to adjust a tire.\", \" He repeats, loosening and tightening the bolt.\", \" Another man appears, saying something before cutting back to the first man, who opens his mouth in disbelief.\"]}, \"v_RihO8i98QJg\": {\"duration\": 218.92000000000002, \"timestamps\": [[0, 29.55], [30.65, 190.46], [193.74, 218.92]], \"sentences\": [\"A grroup of men, boys, and girls are playing dodgeball on an indoor court.\", \" They throw a series of balls at one another, trying to dodge and catch them.\", \" They line up along the wall, waiting their turns.\"]}, \"v_5vv5e_E93gM\": {\"duration\": 101.4, \"timestamps\": [[0, 2.54], [0, 4.56], [6.08, 101.4]], \"sentences\": [\"A man is laying in a hospital bed.\", \"A nurse is standing next to the bed.\", \" A person is going off a jump on a snowboard and crashes several times.\"]}, \"v_PfleCcLgZ7E\": {\"duration\": 180.47, \"timestamps\": [[0, 26.17], [27.07, 147.98], [151.59, 180.47]], \"sentences\": [\"A performer is seen walking forward on a large stage and holding up a baton while anther girls in and out of frame.\", \" The girl then poses and performs her routine by doing various flips and tricks with her baton.\", \" She holds and ending pose, walks away from the crowd picking up her items, and running off stage to hug an older woman.\"]}, \"v_9abGikdleAU\": {\"duration\": 135.0, \"timestamps\": [[0, 6.08], [6.08, 126.9], [126.23, 135]], \"sentences\": [\"A woman talks to the camera while another dances in the background.\", \" The first woman joins the second in dancing.\", \" The first woman returns to talking to the camera.\"]}, \"v_Uj1QtIM8500\": {\"duration\": 155.67000000000002, \"timestamps\": [[0, 64.6], [61.49, 155.67]], \"sentences\": [\"A woman is seen speaking to the camera and holding a contact lens.\", \" She moves her hands around while holding onto the lens and leads into her demonstrating how to put one in your eye.\"]}, \"v_b6VAlwv45q4\": {\"duration\": 234.14, \"timestamps\": [[11.71, 232.97], [2.34, 8.19], [11.71, 133.46], [19.9, 231.8]], \"sentences\": [\"A man plays and narrates a virtual video game on camera while talking into a microphone and wearing headphones as the games plays behind him as a animation.\", \"  A man simulates throwing up in a close up view on camera.\", \"  The man then talks into a microphone as an animated video game plays behind him in full screen.\", \"  The game plays behind the man as a grey and blue animated figure battle each other and eventually fall down a flight of stairs before the scene fades.\"]}, \"v_EInkc1uEX3c\": {\"duration\": 228.18, \"timestamps\": [[6.85, 18.25], [21.68, 28.52], [21.68, 46.78], [52.48, 54.76], [55.9, 76.44], [78.72, 88.99], [92.41, 100.4], [101.54, 110.67], [112.95, 162.01], [166.57, 170], [177.98, 195.1], [203.08, 227.04]], \"sentences\": [\"A bare concrete floor is shown.\", \" Flooring tools are displayed on a table.\", \" A man with a broom and dustpan is cleaning the floor.\", \" The man is then mopping the floor.\", \" Two men are making measurements on the floor.\", \" A man is mixing adhesive in a bucket.\", \" The man pours the adhesive onto the floor.\", \" The man proceeds to spread the adhesive.\", \" A man is installing wooden floorboards.\", \" A man polishes the wooden floorboards with a cloth.\", \" A man uses a roller on the floorboards.\", \" The finished floor is shown.\"]}, \"v_nLdRqOTb0Ik\": {\"duration\": 49.9, \"timestamps\": [[0, 15.22], [11.98, 38.42], [35.93, 48.65]], \"sentences\": [\"A young man is seen sitting at a table and beginning to solve the rubix cube.\", \" The man solves it quickly as the timer catches him and a man writes down his score and shakes his hand.\", \" His solve is shown again in slow motion.\"]}, \"v_DzxPreFrmFE\": {\"duration\": 195.44, \"timestamps\": [[0, 9.77], [9.77, 195.44], [84.04, 95.77], [123.13, 149.51], [168.08, 171.99]], \"sentences\": [\"We see the black opening screen.\", \" We then see people bowling in a bowling alley.\", \" We see a man in black behind the bowler look around and stand up.\", \" We see a man next to the bowler choosing his ball.\", \" The man throws and misses 1 pin.\"]}, \"v_1517CiM5c0A\": {\"duration\": 214.27, \"timestamps\": [[0, 214.27], [0, 25.71], [172.49, 214.27]], \"sentences\": [\"A native american tribe are on the street in full native dress playing woodwind instruments in front of shops as people walk by on the sidewalk.\", \"  A main with a small video camera shoots footage of the musical group.\", \"  One of the men in the group walks away from the group to talk to a man who is at a yellow table and points something out on the table.\"]}, \"v_5ya20wcGE-8\": {\"duration\": 95.39, \"timestamps\": [[0, 84.42], [84.42, 95.39]], \"sentences\": [\"a fencing court is shown and people practicing holding \\u00e9p\\u00e9es and doing lunges.\", \" woman is talking to the camera in a room.\"]}, \"v_9WOvWFdA7lY\": {\"duration\": 172.46, \"timestamps\": [[0, 18.11], [29.32, 85.37], [76.74, 126.75], [109.51, 142.28], [134.51, 172.45]], \"sentences\": [\"1 A girl with her braces is sitting down.\", \"  2 A guy comes and puts a ring through the lip.\", \" 3 The guy puts a second ring in the girl's lip.\", \" 4 The guy cleans up the girls lip.\", \" 5 The guy gives the girl something to gargle.\"]}, \"v_ArzhjEk4j_Y\": {\"duration\": 19.32, \"timestamps\": [[0.19, 18.16], [2.03, 8.98], [10.43, 19.32]], \"sentences\": [\"Two adults and two kids are making a sand castle.\", \" The kids and adults pour sand on the pail and dumped it on the ground.\", \" A woman in white dress stopped to look at the castle as the family continue to make their castle.\"]}, \"v_pHhcYS_wPys\": {\"duration\": 5.02, \"timestamps\": [[0, 5.02], [0, 4.87], [0.18, 5.02]], \"sentences\": [\"man wearing a white shirt is doing a javelin throw.\", \" two women are standing behind the man watching the javelin throw.\", \" people are standing in a green grassy field.\"]}, \"v_5zT1GWfmVLU\": {\"duration\": 32.18, \"timestamps\": [[0, 2.9], [3.22, 32.18], [3.22, 9.17], [9.49, 18.02], [18.18, 32.18]], \"sentences\": [\"We see a title screen briefly.\", \" We then see two boys in a room pretend to wrestle.\", \" The left boy kick the right then jumps on his back while he bends forward.\", \" The right boy then flips the left boy on the mattress on the ground.\", \" We then see the closing title screen.\"]}, \"v_V1IHwwpyFUE\": {\"duration\": 134.19, \"timestamps\": [[0, 26.17], [28.18, 49.65], [50.32, 65.08], [65.08, 108.02], [108.02, 134.19]], \"sentences\": [\"A teen throws a ball to a child, who throws back it to the teen and run away.\", \" Three children run on the street followed by the teen, then she stands on the street holding a ball.\", \" Then, the teen throws the ball to a child who throws back it and runs away.\", \" After, the teen throws again the ball to a girl who kicks back the ball and runs.\", \" The teen follows the girl, then she stands in the street.\"]}, \"v_wVHD_Y5J3qE\": {\"duration\": 141.11, \"timestamps\": [[0, 37.39], [16.93, 141.11]], \"sentences\": [\"A woman in black top is talking in front of the camera.\", \" Then the woman has her hair down, spray something in her hair, put it in a clip then use a flat iron to straighten, she started at the back first, then the middle then the top of the head.\"]}, \"v_ZOKC86lF6E8\": {\"duration\": 83.13, \"timestamps\": [[0, 3.74], [4.16, 78.97], [79.39, 83.13]], \"sentences\": [\"A purple screen appears with \\\"Disc dogs in South Afraid Frisbee fun with Chase, (Border Collie) & Nav-ah (Miniature American Shepherd) with Candice (owner/trainer) in Johannesburg, South Africa\\\".\", \" A woman throws frisbees for various dogs to catch in a small grassy yard.\", \" Credits for the video appear on screen.\"]}, \"v_15npAlupNU4\": {\"duration\": 122.07, \"timestamps\": [[0, 48.22], [51.88, 122.07]], \"sentences\": [\"A man is outside on a snowy day, scraping the snow from his car with a scraper.\", \" He cleans both windows, then the headlights.\"]}, \"v_2DwBXRhtX4s\": {\"duration\": 48.41, \"timestamps\": [[0.24, 2.66], [3.63, 13.31], [13.8, 39.22], [40.67, 48.41]], \"sentences\": [\"The credits of the clip are shown.\", \" The person puts on his sword fighting gloves and helmet.\", \" The person sword fights with an opponent.\", \" The credits of the video are shown.\"]}, \"v_inFPa4wxOwQ\": {\"duration\": 29.07, \"timestamps\": [[0, 11.77], [11.19, 18.02], [19.04, 29.07]], \"sentences\": [\"A man is seen standing at the back of a diving board rubbing his hands together and standing up straight.\", \" The man then walks down to the end and jumps off the board performing an impressive dive.\", \" In the end his score is shown across a large screen.\"]}, \"v_bmoS216hsoc\": {\"duration\": 122.3, \"timestamps\": [[0, 122.3], [15.29, 117.41], [118.02, 122.3]], \"sentences\": [\"A girl in a black shirt is sitting down.\", \" She begins playing a flute.\", \" She stops playing and lowers the flute.\"]}, \"v_uOUjBTlwoxg\": {\"duration\": 55.54, \"timestamps\": [[0, 4.17], [4.44, 11.94], [13.61, 55.54]], \"sentences\": [\"A house is shown with piles of snow in front.\", \" A person drags a skateboard through the snow.\", \" He is then seen doing several stunts and falls through the yard.\"]}, \"v_qZk7okgCU2M\": {\"duration\": 124.62, \"timestamps\": [[2.49, 58.57], [42.37, 120.26]], \"sentences\": [\"A man is seen paddling along the water on a surf board and leads into clips of him surfing and a man speaking to the camera.\", \" The man shows off a piece of machinery and how it works as well as more people riding the waves along a barbed wire fence and speaking to the camera.\"]}, \"v_UMhZGJqeSuU\": {\"duration\": 72.75, \"timestamps\": [[0, 14.91], [15.64, 45.1], [46.56, 67.66], [67.66, 72.75]], \"sentences\": [\"A group of teammates are chasing and falling down after a ball.\", \" They fight, trying to hit it into the opposing goal.\", \" The crowd cheers, and one of the players hits his knees.\", \" The coach smiles happily as he walks toward the field.\"]}, \"v_tjEMbP2SODQ\": {\"duration\": 180.44, \"timestamps\": [[0, 180.44], [5.41, 180.44], [77.59, 139.84], [174.13, 180.44]], \"sentences\": [\"In this video, a man and woman are in a room on a dance floor.\", \" The two begin a slow Japanese dance with oriental fans.\", \" Spectators are standing and watching from the sides.\", \" The video ends with the couple walking to center stage.\"]}, \"v_Ih8bPM3p0rE\": {\"duration\": 27.17, \"timestamps\": [[0, 9.78], [9.92, 27.17]], \"sentences\": [\"A man walks holding a javelin, then he throws the javelin while people around watch him.\", \" A man stand over a white line walks and bend and takes a measuring tape over a white line.\"]}, \"v_lol04SNoopE\": {\"duration\": 19.48, \"timestamps\": [[0.49, 5.65], [6.62, 14.42]], \"sentences\": [\"The woman is shown diving off of the blue diving board head first.\", \" The child on the other diving board began to clap when the woman dove off the board.\"]}, \"v_sUL9HAplalo\": {\"duration\": 109.15, \"timestamps\": [[0, 25.65], [16.92, 82.41], [83.5, 109.15]], \"sentences\": [\"Two women are seen speaking to one another while one smokes a cigarette.\", \" The woman transition into shots of a man crying and a woman wrapping a towel around him, as well as the woman speaking in various settings.\", \" She is seen speaking to several people in the end while they hug and cry as she looks worried.\"]}, \"v_I2Y-5EEXAE0\": {\"duration\": 201.46, \"timestamps\": [[0, 11.08], [16.12, 47.34], [61.44, 185.34], [189.37, 201.46]], \"sentences\": [\"Red polka dot balloons are shown before we see a kitchen.\", \" A chef is standing behind the counter with all the supplies for making a reuben sandwich.\", \" He spreads butter in a pan, then cooks the bread with the toppings as he stacks them together.\", \" He cuts the sandwich in half, turning the halves toward the camera as he continues talking about the finished product.\"]}, \"v_P3kWD8Oocio\": {\"duration\": 20.53, \"timestamps\": [[0, 4.11], [4.11, 7.08], [7.18, 14.27], [14.27, 20.53]], \"sentences\": [\"We seek people in a field of bikes.\", \" Kids go down a slide.\", \" Kids are on a seesaw and jungle gym.\", \" Two people walk their bikes across bridge.\"]}, \"v_ibjvKk93__g\": {\"duration\": 102.03, \"timestamps\": [[0, 8.67], [0, 102.03], [11.22, 102.03]], \"sentences\": [\"a man wearing a black shirt is walking behind the machines.\", \" man is standing in a elliptical machine showing how to make exercise.\", \" people are standing in the counter.\"]}, \"v_Dh3bLRYJkiY\": {\"duration\": 59.0, \"timestamps\": [[1.48, 14.75], [14.75, 39.83], [39.83, 55.76]], \"sentences\": [\"An athlete runs fast and jump long in the sand.\", \" Then, a person from Japan performs long jump.\", \" Am athlete from Brasil, also performs long jump and wins.\"]}, \"v_j7fPZQE3-fQ\": {\"duration\": 74.65, \"timestamps\": [[0, 74.65], [24.64, 45.54]], \"sentences\": [\"A video of someone getting a piercing is shown.\", \"  The tech makes a mark on the person's lip and then makes the piercing.\"]}, \"v_DgJ-GG1Agyw\": {\"duration\": 222.77, \"timestamps\": [[0, 21.16], [21.16, 86.88], [88, 181.56], [183.79, 222.77]], \"sentences\": [\"a man is cleaning the nose area of a girl sitting in a chair.\", \" After sterilizing her nose, he inserts a piercing into the septum.\", \" The ring insertion makes her begin to cry.\", \" She laughs as the insertion is completed.\"]}, \"v_geuUVSJyovM\": {\"duration\": 84.08, \"timestamps\": [[0, 84.08], [3.36, 10.09], [12.61, 47.51], [58.44, 84.08]], \"sentences\": [\"A piano is shown in a room.\", \" A man approaches and sits on the bench.\", \" He strikes a note with his finger.\", \" He then plays a song on it.\"]}, \"v_8-1h1YXYvhk\": {\"duration\": 127.62, \"timestamps\": [[0, 47.22], [47.86, 96.99], [96.35, 127.62]], \"sentences\": [\"A young man begins to do a,\\\"high freeze kick\\\" which is part of a dance breaking routine.\", \"After he demonstrates it,he comes back and starts to hold his hands out and point to his rib cage and arm muscles to show the proper way to position yourself.\", \"Once he is done talking,he goes back into the position and straddles his legs out before rising them in the air while his hands support his weight.\"]}, \"v_U37UAWdI-vY\": {\"duration\": 88.03, \"timestamps\": [[0, 40.05], [40.93, 79.22], [79.66, 88.03]], \"sentences\": [\"A family is sitting at a table and the grandpa begins positioning himself as if he is clapping his hands but he is really playing the harmonica.\", \"As he plays,more of the young kids gather around to watch him play as he switches the two harmonicas.\", \"When he is finished,the young boys begin smiling and start to clap in amazement.\"]}, \"v_TotbMcWIoyE\": {\"duration\": 196.79, \"timestamps\": [[0, 61], [69.86, 196.79]], \"sentences\": [\"Two men are on an indoor court, playing racquetball.\", \" They hit the ball back and forth against the wall, before stopping and talking to each other.\"]}, \"v_oNrWO_VQQbk\": {\"duration\": 178.23, \"timestamps\": [[7.13, 70.4], [59.71, 132.78], [124.76, 168.42]], \"sentences\": [\"A man is seen speaking to the camera and holding an object in his hands and filling it up with water.\", \" The man then puts the object in a car window and lets water drip out on the side.\", \" The man continues spraying water and leads back into speaking to the camera.\"]}, \"v_uE9MHR27_gc\": {\"duration\": 238.93, \"timestamps\": [[0, 33.45], [41.81, 163.67], [168.45, 238.93]], \"sentences\": [\"A chef is shown in a kitchen.\", \" He is using a very sharp knife.\", \" He cuts loaves of bread and watermelons.\"]}, \"v_B8d9FYuZglQ\": {\"duration\": 120.05, \"timestamps\": [[0, 17.41], [19.21, 90.64], [96.04, 120.05]], \"sentences\": [\"A woman's eyes are shown close up from different angles.\", \" She is then shown applying eye shadow and liner.\", \" She finally applies mascara to finish the look.\"]}, \"v_elgmPvU19K8\": {\"duration\": 213.15, \"timestamps\": [[18.12, 211.01], [21.31, 211.01], [85.26, 91.65], [94.85, 98.05], [163.06, 169.45]], \"sentences\": [\"Several men in swimsuits are standing on the deck of a large boat.\", \" Several men ski, ride jet skis and wake boards.\", \"One of the men on the boat jumps into the water from the 2nd level.\", \" Another man flies a drone from a ski boat.\", \" Two men tip a jet ski over on it's side in the water.\"]}, \"v_T97WL2cKD6M\": {\"duration\": 58.65, \"timestamps\": [[0, 58.65], [0, 57.48], [57.48, 58.65]], \"sentences\": [\"A woman wearing a white shirt is playing an accordion.\", \" She is looking down at the accordion.\", \" She stops playing and looks up.\"]}, \"v_0KTued0g034\": {\"duration\": 56.82, \"timestamps\": [[0, 16.19], [17.33, 55.12]], \"sentences\": [\"Two boys are seen walking down a street followed by two police bikes and a large parade.\", \" A marching band is shown playing various instruments down the street followed by more police cars riding behind.\"]}, \"v_iXaA7PVRhIY\": {\"duration\": 71.7, \"timestamps\": [[0.36, 44.1], [15.42, 54.85], [51.27, 71.35]], \"sentences\": [\"Ellen is seen hosting a segment with a small girl on stage and her mother.\", \" She speaks to the two and leads into clips of the girl playing ping pong with another.\", \" Ellen and the girl play together involving a giant racket and speaking to the camera.\"]}, \"v_7p99ez6MEeo\": {\"duration\": 18.25, \"timestamps\": [[0, 3.29], [3.56, 15.24], [15.6, 18.25]], \"sentences\": [\"A group of people are on a sandy volleyball field.\", \" They fight over the ball, doing ritualistic stunts in between.\", \" They continue lobbing the ball over the net.\"]}, \"v__S6D21MV8Ks\": {\"duration\": 238.26, \"timestamps\": [[0, 140.57], [142.96, 238.26]], \"sentences\": [\"Two boys are playing on an indoor tennis court.\", \" They take turns hitting the ball against the wall while their parents watch from a separate room.\"]}, \"v_PMdba6f_cho\": {\"duration\": 120.3, \"timestamps\": [[0, 120.3], [6.02, 120.3], [12.03, 120.3]], \"sentences\": [\"A person is water skiing behind a boat.\", \" They are going back and forth behind the boat.\", \" She goes over the waves in the water.\"]}, \"v_JSqJmZPqDy8\": {\"duration\": 34.78, \"timestamps\": [[0, 15.48], [16.7, 34.78]], \"sentences\": [\"A man is outside mowing the lawn while a dog runs around after him.\", \" He is then seen raking the lawn until it is pristine.\"]}, \"v_CArYinl5tFo\": {\"duration\": 146.12, \"timestamps\": [[2.19, 6.58], [6.58, 74.52], [74.52, 146.12]], \"sentences\": [\"This man is riding the bike in the beginning of the video.\", \" Then he is shown unboxing bicycle parts and putting everything together.\", \" Many different people are passing through to put their bikes up and do other things.\"]}, \"v_bqnRA6rZcqs\": {\"duration\": 112.66, \"timestamps\": [[0, 11.83], [12.39, 92.95], [93.51, 112.66]], \"sentences\": [\"A man is spun around and falls falls over.\", \"  The man is stood up and then pretends to hit a pi\\u00f1ata but instead goes after someone pretending with a stick.\", \" A child is brought out to hit the pi\\u00f1ata.\"]}, \"v_5j5_YV25cFA\": {\"duration\": 121.88, \"timestamps\": [[0, 21.33], [16.45, 73.13], [76.18, 117.62]], \"sentences\": [\"Several people are seen moving around an indoor tennis court and leads into two people standing.\", \" The men are holding tennis rackets and begin hitting the ball around one another.\", \" One man lays on the ground after being hit with a ball and is shown again in slow motion.\"]}, \"v_HW5QhCSKTsw\": {\"duration\": 230.7, \"timestamps\": [[0, 29.99], [36.91, 145.34], [152.26, 230.7]], \"sentences\": [\"A man is talking in front of a screen.\", \" Several scenes of games are shown being played.\", \" We then see images and still photos as he talks.\"]}, \"v_49drGj3JUg4\": {\"duration\": 23.45, \"timestamps\": [[0, 7.97], [7.97, 12.78], [8.56, 12.78], [10.91, 13.95], [18.18, 23.45]], \"sentences\": [\"We see a man on a horse in a pen.\", \" A calf runs out onto the field.\", \" The man and the horse ride out fast after the calf.\", \" The man ropes the calf and jumps off the horse.\", \" The man hogties the calf and stands up.\"]}, \"v_4cqesj6HwTU\": {\"duration\": 75.66, \"timestamps\": [[8.7, 56.75], [54.48, 75.66]], \"sentences\": [\"This woman is shown talking to someone in the beginning  of the video and she is moving her perky breasts using her muscles.\", \" She then stops talking and starts to drink the beer that has been in the glass since the beginning of the video.\"]}, \"v__kj3B0T_TE0\": {\"duration\": 65.2, \"timestamps\": [[0, 65.2], [24.45, 45.64], [45.97, 46.29]], \"sentences\": [\"A person is cleaning a pair of sneakers.\", \" The person gets a dark cloth out of their netted, red bag and uses it to clean the shoes.\", \" The person puts the dark cloth back into the red bag.\"]}, \"v_qblFXnyqf1o\": {\"duration\": 186.78, \"timestamps\": [[0, 3.74], [4.67, 181.18], [182.11, 186.78]], \"sentences\": [\"A woman walks away from the camera in a large yellow room with a hardwood floor.\", \"  The woman stands in line with others and they perform a series of dance routines.\", \"  The woman returns to the camera to turn it off.\"]}, \"v_o8ja3mhecQI\": {\"duration\": 70.32, \"timestamps\": [[0, 3.87], [18.64, 39.38], [46.41, 70.32]], \"sentences\": [\"A kid is hanging from a bar.\", \" They put a red rope over the bar.\", \" They put the black handles of the rope onto their legs.\"]}, \"v_d0FP6xp9O4c\": {\"duration\": 131.59, \"timestamps\": [[0.66, 131.59], [3.29, 20.4], [20.4, 23.03], [40.13, 129.61]], \"sentences\": [\"A man demonstrates how to train a dog to do tricks by teaching him how to fetch a frisbee in an indoor gymnasium.\", \"  The man begins standing next to the dog while talking to the camera and holding a frisbee in each hand.\", \"  The man walks away from the dog who perks up the ears as the man walks away.\", \"   The man then begins throwing frisbees wildly into the air at which point the dog begins to chase the frisbees and catch them at times, in mid air.\"]}, \"v_sGFbsMKkoYs\": {\"duration\": 8.36, \"timestamps\": [[0, 0.71], [0.84, 6.23], [6.81, 8.36]], \"sentences\": [\"A man is in a gym, lifting a barbell.\", \" He lifts the barbells over his head, then drops them heavily.\", \" Another man walks in front of him at the end of the clip.\"]}, \"v_RVZprJDJz1U\": {\"duration\": 84.24, \"timestamps\": [[0, 5.9], [6.32, 19.38], [19.8, 28.22], [28.64, 30.33], [30.75, 33.7], [34.12, 38.75], [40.01, 50.97], [50.55, 51.39], [51.81, 56.44], [56.86, 66.55], [66.97, 80.45], [80.45, 84.24]], \"sentences\": [\"The sponsors and description of a chemical product is displayed as an introduction.\", \" Water from a garden hose is sprayed on a wooden chair.\", \" The chemical product in a white bottle is sprayed on the wooden chair.\", \" The person rubs his hand on the wooden chair.\", \" The person reveals their palm is covered with dirt from the chair.\", \" The chemical is placed at the sit of the wooden chair.\", \"  The person scrubs the wooden chair with a brush.\", \" The person shows the brush bristles now browned.\", \" The person rinses the wooden chair with the garden hose.\", \" The chemical is captured displayed on the sit of the wooden chair.\", \" The person sprays chemical on a cotton pads and whips the wooden chair.\", \" The chair is left to dry .\"]}, \"v_msd9vrplD-I\": {\"duration\": 99.6, \"timestamps\": [[3.98, 40.34], [35.36, 76.7], [74.2, 98.11]], \"sentences\": [\"A large playground is seen from various angles that lead into a small boy playing in the sand.\", \" The boy is then seen climbing on monkey bars as well as a man running around the playground.\", \" More shots are shown of the man and boy playing on the playground as well as rolling around in the grass and playing with one another.\"]}, \"v_UFVeN-ThOwU\": {\"duration\": 143.76, \"timestamps\": [[0, 143.76], [22.28, 23.72], [91.28, 111.41], [111.41, 115]], \"sentences\": [\"A little girl is standing at the sink washing a knife.\", \"  The camera shows the dishes she has already washed.\", \"  She talks and yells at the camera while soaping up the sponge.\", \" She dropped the knife, picked it up and stepped back up to the sink.\"]}, \"v_73AGD3RWPEw\": {\"duration\": 56.24, \"timestamps\": [[0, 4.5], [6.19, 42.18], [43.3, 56.24]], \"sentences\": [\" A man stretches a rope between two trees.\", \" He then balances on the rope as he walks, sits, and bounces on it.\", \" He spins in circles, maintaining his balance.\"]}, \"v_lZcTesK6CfA\": {\"duration\": 225.72, \"timestamps\": [[0, 33.86], [32.73, 98.19], [97.06, 225.72]], \"sentences\": [\"A camera pans around a beached area when two people walk from behind a tree and wave to the camera.\", \" They begin speaking to the camera and transition into a person lathering their hands with soap.\", \" The person scrubs their hands and rinses it under the sink while the women continue speaking.\"]}, \"v_G3H3Gflf1SM\": {\"duration\": 156.39, \"timestamps\": [[0, 33.62], [36.75, 106.34], [110.25, 156.39]], \"sentences\": [\"A man is standing in front of a bathroom sink holding an electric shaver.\", \" He shaves off his beard, dropping the trimmings into the sink.\", \" When he is done, he picks hair out of the shaver and shows off what was in the sink before touching his face.\"]}, \"v_ivWTI2J_UnY\": {\"duration\": 128.85, \"timestamps\": [[0, 33.5], [34.79, 58.63], [58.63, 128.85]], \"sentences\": [\"A gymnast is seen standing in front of a large crowd and begins swinging around on a pole.\", \" He continues performing several flips and tricks on the bar and jumps down with his arms up, waving to the crowd.\", \" He shakes hands with another gymnast and the routine is shown again in slow motion, ending with him waving to the crowd.\"]}, \"v_D0aZaiBAHxg\": {\"duration\": 176.96, \"timestamps\": [[0, 107.95], [67.24, 176.96]], \"sentences\": [\"A man is seen trimming along the edges of a bush from several angles while the camera follows him.\", \" The man continues to cut all around the hedge and the camera captures his every movement.\"]}, \"v_W6JJ1L_EEBY\": {\"duration\": 99.57, \"timestamps\": [[0, 15.43], [15.43, 99.57], [0, 99.57]], \"sentences\": [\"People are lined up at the top of a hill on bicycles.\", \" They begin to race around a track.\", \" People are in the crowd watching them.\"]}, \"v_B53aHHzgTzc\": {\"duration\": 151.38, \"timestamps\": [[0, 21.95], [22.71, 134.73], [135.49, 151.38]], \"sentences\": [\"A man in a black and white film is shown doing a running long jump.\", \" We then see several clips of men doing the same thing at competitions, including in the USSR.\", \" A man is finally shown doing a long landing jump.\"]}, \"v_51wFW1g42VQ\": {\"duration\": 108.81, \"timestamps\": [[0, 31.01], [29.38, 76.17], [76.17, 106.63]], \"sentences\": [\"A man is seen speaking to the camera that leads into clips of people playing lacrosse.\", \" The people run all around one another as they take turns speaking to the camera.\", \" The people continue speaking while others practice behind them.\"]}, \"v_dIC0nm4nrI8\": {\"duration\": 113.12, \"timestamps\": [[0, 113.12], [3.96, 28.85], [28.28, 66.17], [70.7, 98.41], [98.98, 101.81], [102.94, 113.12]], \"sentences\": [\"We see ballerinas on a stage.\", \" Four ballerinas dance across the stage back and forth.\", \" The four ladies dance in the middle of the stage.\", \" The ladies dance left, back and right.\", \" The ladies kneel on the stage.\", \" The ladies bow and exit the stage.\"]}, \"v_1fbU_MkV7NE\": {\"duration\": 102.96000000000001, \"timestamps\": [[0, 20.08], [26.25, 90.6], [92.15, 102.96]], \"sentences\": [\"a woman is speaking as she sits and then lies down on a mat.\", \" She does several sit ups from the floor.\", \" She talks while she does the sit ups.\"]}, \"v_nWpFumm3Z5g\": {\"duration\": 10.5, \"timestamps\": [[0.26, 10.5], [2.47, 6.66], [4.36, 8.55]], \"sentences\": [\"Two teams plays field hokey in a field.\", \" A player hits the ball while players try to stop.\", \" The referee raise his left hand .\"]}, \"v_JQavlg895jU\": {\"duration\": 165.51, \"timestamps\": [[0, 41.38], [43.03, 129.1], [119.17, 161.37]], \"sentences\": [\"A large group of people are seen standing on a stage and begin performing a cheerleading routine.\", \" The group picks up one after the other and dances around the stage while others spot.\", \" The group continues dancing in front of the crowd and ends by walking off stage.\"]}, \"v_cRP9tyF1N4I\": {\"duration\": 26.89, \"timestamps\": [[0.4, 10.76], [10.35, 25.95]], \"sentences\": [\"A man is seen riding on a tube down a hill holding a stick to record his face.\", \" He moves back and then continues quickly riding while speaking to the camera.\"]}, \"v_jl7aBkPfcS8\": {\"duration\": 145.45, \"timestamps\": [[0, 145.45], [30.54, 79.27], [72.72, 145.45]], \"sentences\": [\"The feet step on the bed and the floral sheet.\", \" The person sat down and wipe the shoes on the floral sheet.\", \" The person wipe the blanket on the shoe.\"]}, \"v_TMGG5x-UQ2s\": {\"duration\": 90.91, \"timestamps\": [[0, 10.45], [10.45, 22.27], [22.27, 30.91], [30.45, 43.18], [43.18, 57.73], [57.27, 90.91]], \"sentences\": [\"A few kids are walking in the snow behind a wall.\", \" The shot is then of a bunch of people on sleds going down the snow covered hill.\", \" nother shot is shown of a train of kids on inner tubes going down the hill.\", \" A child's face is shown as he is speaking to the camera.\", \" They then slide down the hill very fast and they are excited.\", \" They smile and continue down the hill.\"]}, \"v_HeOj7jZ0igI\": {\"duration\": 160.75, \"timestamps\": [[0, 16.08], [16.88, 23.31], [23.31, 34.56], [0, 62.69], [62.69, 160.75], [147.09, 151.11]], \"sentences\": [\"A girl walks along the gym holding her fencing gear.\", \" She points at the camera with her sword.\", \" A coach comes to dress her and fix equipment.\", \" The gym is full of kids fencing and practicing.\", \" She starts fencing with another girl.\", \" A coach in a blue shirt gives the direction.\"]}, \"v_bDK-_jU_KzI\": {\"duration\": 126.81, \"timestamps\": [[0, 21.56], [16.48, 68.47], [66.57, 126.81]], \"sentences\": [\"Various pictures of body builders are shown as people as videos of people lifting and leads into two men grabbing hands.\", \" Another man holds theirs together and let's go to begin an arm wrestling match.\", \" The men wrestle for a bit and ends with one winning and bump fisting.\"]}, \"v_2Jr1K1wBKfQ\": {\"duration\": 133.49, \"timestamps\": [[0, 20.02], [20.02, 41.38], [41.38, 97.45], [97.45, 133.49]], \"sentences\": [\"A news broadcaster is talking to the camera as he is sits in front of a laptop and behind him a large screen shows sports animation.\", \" Afterwards a video shows woman practicing archery, than still images of female athletes are shown.\", \" As the female athletes continue their practice a man wearing a gym outfit gets interviewed while he stands in front of targets.\", \" Finally a female athlete gets interviewed as the female athletes continue to practice archery.\"]}, \"v_45P3UDcb4Gc\": {\"duration\": 165.19, \"timestamps\": [[0.83, 99.11], [72.68, 157.75]], \"sentences\": [\"Two women are shown in pictures smoking cigarettes that leads into videos of them continuing to smoke.\", \" The girls continue to smoke cigarette after cigarette and speak to the camera.\"]}, \"v_lW4OZ8eP3ns\": {\"duration\": 70.03, \"timestamps\": [[0, 5.6], [8.05, 15.06], [16.81, 47.62], [50.07, 70.03]], \"sentences\": [\"A man is inside a shop building.\", \" He is playing a violin, and another man is playing a guitar.\", \" They walk offscreen as they play, and we see rows of empty seats.\", \" The men walk into view, in front of the seats, then away.\"]}, \"v_6DXH6kwMe-Q\": {\"duration\": 180.68, \"timestamps\": [[0, 17.16], [18.97, 154.48], [157.19, 180.68]], \"sentences\": [\"A view of islands and the evening sky are shown.\", \" A woman uses a canvas to paint the images in various colors.\", \" She perfectly creates a painting of the evening sky, complete with trees.\"]}, \"v_Auy0KGsXAIg\": {\"duration\": 133.75, \"timestamps\": [[5.35, 56.17], [54.84, 131.74]], \"sentences\": [\"A man is seen speaking to the camera and leads into him holding up various tools and begins putting them on a bike.\", \" The man demonstrates how to properly piece together a bike and peddling the bike to show how it works.\"]}, \"v_hZ0jI9U5Nws\": {\"duration\": 26.36, \"timestamps\": [[0, 9.49], [9.09, 19.37], [16.21, 25.04]], \"sentences\": [\"A gymnast is seen standing ready before uneven bars while many are watching on the sides.\", \" The girl jumps up and begins performing a routine on the bars.\", \" She flips herself around and ends by jumping down.\"]}, \"v_tVC_5_SgseY\": {\"duration\": 137.81, \"timestamps\": [[1.38, 33.76], [33.76, 53.75], [54.44, 99.22], [99.22, 128.16]], \"sentences\": [\"A man shows ingredients for a mortadella sandwich.\", \" The man cuts the bred in four pieces and puts mustard and then brown on the stove.\", \" Then, the man fries an egg and puts it on the bread as well the mortadella, green leaves, cheese and ketchup.\", \" After, the man cuts the sandwich in two and eat one.\"]}, \"v_63d_t0U1pXw\": {\"duration\": 210.32999999999998, \"timestamps\": [[1.05, 10.52], [12.62, 15.77], [17.88, 173.52], [12.62, 55.74], [174.57, 207.17], [191.4, 204.02]], \"sentences\": [\"A guy is outdoors near a body of water.\", \" The credits of the clip are shown.\", \" The guy is moving and flipping with leg extensions.\", \" A man backs up and looks on at the guy.\", \" The guy stops flipping and just stands with the leg extensions.\", \" The credits of the video are shown.\"]}, \"v_Feo8xSjY5A8\": {\"duration\": 54.1, \"timestamps\": [[0.81, 28.4], [20.02, 47.61]], \"sentences\": [\"A large cat is seen sitting on a woman's lap while she begins cutting it's claws and looking down.\", \" The woman continues cutting the cats claws as it sits motionless and she pets him in the meantime.\"]}, \"v_ay_YB-S4qR0\": {\"duration\": 34.62, \"timestamps\": [[0.35, 16.96], [11.77, 34.62]], \"sentences\": [\"A close up of a dart board is shown as well as several darts coming in off the distance.\", \" The video continues showing the darts moving closer in slow motion.\"]}, \"v_BWqsgYhgUbI\": {\"duration\": 70.13, \"timestamps\": [[0, 3.16], [3.16, 8.77], [10.17, 54], [53.65, 56.8], [54.7, 70.13]], \"sentences\": [\"A man in a field strikes a match.\", \" He bends down and tries to start a fire, but it doesn't light.\", \" He tries again with another match.\", \" The fire then starts quickly and flames leap up toward the sky.\", \" The man backs up quickly.\"]}, \"v_A_ndiCY-rDc\": {\"duration\": 150.14, \"timestamps\": [[0, 10.51], [12.76, 38.29], [47.29, 150.14]], \"sentences\": [\"A girl lies down on her back on carpet.\", \" She does several partial sit ups.\", \" She continues doing the situps for the duration of the video.\"]}, \"v_c6nEk5N4fSU\": {\"duration\": 95.16, \"timestamps\": [[24.74, 76.12], [25.22, 76.12], [76.12, 95.16]], \"sentences\": [\"A woman is standing on an elliptical machine.\", \" She starts working out on the machine.\", \" Words come onto the screen about the warranty.\"]}, \"v_0EdDWY0Zuqw\": {\"duration\": 179.93, \"timestamps\": [[0, 173.63], [60.28, 140.35], [125.05, 126.85], [173.63, 179.93]], \"sentences\": [\"A musician plays saxophone on front people sitting in a room.\", \"  A person in the audience flips the pages of a book.\", \" People applaud while the musician plays the saxophone.\", \" Then, the musician end her performance and left the room while people applaud.\"]}, \"v_oey6DFvL9Xk\": {\"duration\": 61.72, \"timestamps\": [[0, 8.95], [9.57, 55.24], [55.86, 57.71]], \"sentences\": [\"Flowers are shown on the screen.\", \" A woman is taking a contact out of her eye.\", \" She then shows the contact on her finger.\"]}, \"v_gxJeNdvNzhU\": {\"duration\": 42.56, \"timestamps\": [[0, 11.92], [11.07, 21.28], [21.92, 27.88], [27.24, 42.56]], \"sentences\": [\"A group of kids are gathered outside of a garage watching a the boy in the middle.\", \"The boy in the middle is standing in front of a woman who is tying the bandanna around his eyes so he can't see the pinata.\", \"As she is doing that,a man comes along and directs the kids to back up so they won't get hit.\", \"After the boy is spun around,the boy takes several swings at the pinata but isn't successful at breaking it open because someone keeps moving it up and down on the string.\"]}, \"v_WXST-TXQjoU\": {\"duration\": 14.9, \"timestamps\": [[0, 5.96], [6.93, 14.9]], \"sentences\": [\"A barber is combing and shaving the hair of a man in a seat.\", \" They are talking as he works, moving his head side to side.\"]}, \"v_lt--z8nFIT0\": {\"duration\": 193.38, \"timestamps\": [[0, 58.01], [54.15, 144.07], [117.96, 186.61]], \"sentences\": [\"A large group of people are seen playing hockey on the ice and a man speaking to the camera.\", \" More shots are shown of the players skating on the ice and a coach speaking to the camera.\", \" More players are shown speaking to the camera while others push a puck along the ice and celebrate.\"]}, \"v_cr2lbZ6or1Q\": {\"duration\": 125.76, \"timestamps\": [[0, 10.69], [10.69, 125.76], [52.82, 65.4]], \"sentences\": [\"An advertisement is on the screen first.\", \"  A man is playing a violin while lights flash around him.\", \" The is an room filled with people watching him.\"]}, \"v_iA2Q4t-o58w\": {\"duration\": 219.27, \"timestamps\": [[0, 20.83], [24.12, 123.89], [127.17, 178.7], [180.9, 219.27]], \"sentences\": [\"Several blocks fall, forming a black and white picture of two girls.\", \" The girls are shown in a gymnasium.\", \" One does several back flips, then a group begins throwing girls into the air, practicing flips.\", \" Several clips are shown of people doing gymnastics and falling down.\"]}, \"v_JkZZvDHTty4\": {\"duration\": 119.19, \"timestamps\": [[0, 112.04], [106.67, 109.06], [116.81, 119.19]], \"sentences\": [\"The arm of a backhoe in shovel configuration peels the tiles off a roof.\", \" A man walks across the frame.\", \" The man pitchforks debris into the backhoe shovel.\"]}, \"v_DUb48prwNZk\": {\"duration\": 89.56, \"timestamps\": [[0, 41.65], [26.87, 89.56]], \"sentences\": [\"A close up of tin foil is shown leading a woman taking a large hit out of a hookah hose.\", \" She continues smoking out of the hookah as the camera captures her movements and she sits down in the end to smoke more.\"]}, \"v_vKCxWIzJTm0\": {\"duration\": 219.48, \"timestamps\": [[0, 47.19], [44.99, 156.93], [151.44, 219.48]], \"sentences\": [\"A large group of people are seen standing in a circle surrounding two people in the middle.\", \" More people come into frame and the people then perform a dance routine together.\", \" The people continuing dancing and clapping around one another and end by holding a pose in the end and bowing to the audience.\"]}, \"v_oUdEoaKDHpA\": {\"duration\": 213.53, \"timestamps\": [[0, 67.26], [30.96, 172.96], [122.78, 210.33]], \"sentences\": [\"A close up of a floor is seen followed by a person walking down the street.\", \" Two people are then seen break dancing with one another and moving around in different locations.\", \" The two lift weights and move around areas while moving around areas.\"]}, \"v_t_Creyg6ANs\": {\"duration\": 173.69, \"timestamps\": [[0, 7.82], [8.68, 45.16], [46.03, 88.58], [90.32, 142.42], [144.16, 173.69]], \"sentences\": [\"We see an opening title screen.\", \" A little girl with wet hair is playing shuffle board on a blue court outdoors.\", \" We see a little girl spinning around and around and we see a girl in a yellow dress playing shuffleboard.\", \" The girl in pink and the one in yellow walk to a man in a blue shirt and get candy and hugs and kisses.\", \" We then see the ending screen.\"]}, \"v_ksvK_P-Eas4\": {\"duration\": 238.32999999999998, \"timestamps\": [[0, 39.32], [46.47, 158.49], [164.45, 238.33]], \"sentences\": [\"Four women are standing on a colorful stage.\", \" They begin to dance in unison.\", \" They gyrate and move side to side, belly dancing.\"]}, \"v_uyGxlvak-Bg\": {\"duration\": 156.32999999999998, \"timestamps\": [[0, 21.1], [23.45, 25.79], [29.7, 66.44], [63.31, 66.44], [68, 91.45], [100.05, 114.12], [124.28, 127.41], [131.32, 145.39], [148.51, 150.08]], \"sentences\": [\"A woman in a brown dress is talking.\", \" A woman in a black shirt is standing next to her.\", \" There is a table with products on it in front of them.\", \" The woman in the black shirt is mixing a paste together in a bowl.\", \" She rubs that paste onto a dirty shoe.\", \" The other woman holds up a pair of dirty sandals.\", \" The women give each other a kiss on the cheek.\", \" The woman in the brown dress continues talking.\", \" She then rubs the paste onto the shoe again.\"]}, \"v_C0MIMsY6okw\": {\"duration\": 217.73, \"timestamps\": [[5.44, 26.13], [26.13, 32.66], [32.66, 52.26], [52.26, 80.56], [80.56, 102.33], [102.33, 113.22], [113.22, 135], [135, 180.72], [180.72, 206.85], [209.02, 212.29]], \"sentences\": [\"A counter top with lemons and ingredients in small bowls is shown, with several individuals standing by the counter.\", \" One of the individuals extends a hand and manipulates the ingredients.\", \" The individual uses a knife to cut the lemons.\", \" The individual squeezes the lemons' juice into a mug using a tool.\", \" The individual puts some of the ingredients in small bowls into the mug.\", \" The individual rearranges the items on the counter top.\", \" The individual mixes some water into the mug.\", \" The individual squeezes lemons into the mug.\", \" The individual mixes the contents of the mug.\", \" Eight containers of liquid are shown on the counter top.\"]}, \"v_hchuVbHYK_k\": {\"duration\": 46.56, \"timestamps\": [[0, 6.05], [6.98, 39.57], [40.04, 46.56]], \"sentences\": [\"A man is on a raft in a river.\", \" He is kayaking through the rough waters.\", \" He goes around a bend in the river, recording the view from behind.\"]}, \"v_kxfOrs5ZWkw\": {\"duration\": 203.64, \"timestamps\": [[0, 57.02], [32.58, 117.09], [87.57, 174.11], [173.09, 203.64]], \"sentences\": [\"A person is seen putting dough over an outline in fast motion and then rolling out more dough.\", \" The person pokes holds in the dough and then paints all over the sides of the cake.\", \" She is then seen again putting objects of dough on the cake, rolling out more, and then putting the pieces on the side.\", \" In the end she shows off the finished cake.\"]}, \"v_dWJIJM3qmyQ\": {\"duration\": 178.57999999999998, \"timestamps\": [[8.93, 16.07], [17.86, 49.11], [51.79, 79.47], [89.29, 133.04], [136.61, 143.75]], \"sentences\": [\"A man uses a putty knife you scrape a blemish on a surface.\", \" The man sues a towel and spray bottle to clean of the top of a cabinet.\", \" Paint is applied to a brush and the man puts a first coat onto the bare cabinet.\", \" The man stirs a can of paint then applies a second coat onto the cabinet.\", \" The man pours out a clear liquid and washes off his brush with it.\"]}, \"v_XZZRyOhxQBE\": {\"duration\": 66.18, \"timestamps\": [[0, 20.18], [17.54, 43.02], [39.38, 66.18]], \"sentences\": [\"The athlete in orange top ran towards the mat, then did a high jump and he was able to go over the pole and landed on the mat.\", \" The man in gray shirt on the side is holding a long pole, while a bald man is raising the flags.\", \" The athlete picked up the stick and did another high jump.\"]}, \"v_djpr7UMlnSw\": {\"duration\": 23.99, \"timestamps\": [[0, 10.67], [10.19, 23.99]], \"sentences\": [\"A person is seen bending over a floor placing tiles down over the plaster.\", \" The person continues laying tiles down and pushing down on the floor to make sure it's sturdy.\"]}, \"v_Fmr6mPyvE-g\": {\"duration\": 102.66, \"timestamps\": [[0, 102.66], [0, 30.8]], \"sentences\": [\"little kid is playing in a playground in a big park.\", \" woman is sitting with two kids in the lawn.\"]}, \"v_RfchfRzuV8I\": {\"duration\": 52.15, \"timestamps\": [[0.52, 14.34], [13.04, 37.29], [31.03, 51.11]], \"sentences\": [\"A close up of a person's hands are seen followed by a man walking into frame.\", \" The man is seen holding an instrument and begins to play.\", \" The man continues playing the bagpipes and ends by turning off the camera.\"]}, \"v__1vYKA7mNLI\": {\"duration\": 61.86, \"timestamps\": [[0, 61.86], [28.15, 60.62]], \"sentences\": [\"A person in a gym describes how to use a machine on your knees.\", \"  The man pulls the bar and shows the proper technique.\"]}, \"v_yJSQmNSFlNI\": {\"duration\": 238.02, \"timestamps\": [[4.76, 41.65], [41.65, 96.4], [96.4, 149.95], [129.72, 138.05], [149.95, 238.02]], \"sentences\": [\"People sail on inflatable boats down the street in a river.\", \" A group of people take a rest having some drinks.\", \"After, people sail down the river drinking from cans.\", \" A man swing holding a rope attached to a tree.\", \" Again, people take a rest while drinking, after they continue sailing on the boats.\"]}, \"v_JmtcnoHa66U\": {\"duration\": 94.28999999999999, \"timestamps\": [[0, 14.14], [20.74, 44.31], [48.56, 94.29]], \"sentences\": [\"A female gymnast mounts a beam, doing a hand stand.\", \" She jumps, then does the splits.\", \" She flips several times before dismounting.\"]}, \"v_CqscMsSNiNY\": {\"duration\": 235.27, \"timestamps\": [[0, 235.27], [41.17, 137.63], [122.34, 137.63], [119.99, 137.63]], \"sentences\": [\"A man is standing on a kite surf board.\", \" He holds onto the sail of the board.\", \" Another man in a black wet suit stands in the water.\", \" A boat passed by behind him.\"]}, \"v_krNVpENNPCM\": {\"duration\": 237.15, \"timestamps\": [[0, 10.67], [9.49, 175.49], [119.76, 237.15]], \"sentences\": [\"A yellow cheese cake on the plate is shown.\", \" The yellow cream is being mixed by a mixer, an egg yolk is added and then mixed it, another egg yolk, then vanilla, then mixed, the flour is sifted and added gradually in the cream and mixed by spatula, then milk is added, and then the sifter flour is also added and then the mixtures are mixed together with a spatula.\", \" The egg white is beaten and sugar is added, and then added to the yellow mixture, then it was placed in a pan and baked it.\"]}, \"v_tAEGMVLn0wk\": {\"duration\": 210.91, \"timestamps\": [[0, 13.71], [14.76, 50.62], [56.94, 151.85], [153.96, 210.91]], \"sentences\": [\"A little girl is walking in a public playground.\", \" She walks beside the sidewalk, looking at the equipment.\", \" She climbs up a ladder while her mother attempts to help her, but changes her mind and walks away indecisively.\", \" She returns to the ladder, then sits down.\"]}, \"v_2-S2fehRKVc\": {\"duration\": 4.74, \"timestamps\": [[0.02, 0.78], [0.64, 2.82], [3.15, 4.71]], \"sentences\": [\"A man is seen bending down in the middle of a forest.\", \" The man is holding an ax in his hands and begins swinging down.\", \" Finally he swings an ax onto a log and walks away.\"]}, \"v_0zjA3KPnLK8\": {\"duration\": 180.23, \"timestamps\": [[4.51, 61.28], [48.66, 169.42]], \"sentences\": [\"Two men are seen kneeling down in front of one another and leads into a wrestling match between the two.\", \" One man throws the other down and leads into several more shots of two men wrestling.\"]}, \"v_RN2QwhcAsUY\": {\"duration\": 121.35, \"timestamps\": [[3.64, 91.01], [81.3, 91.01], [104.97, 121.35], [111.03, 121.35]], \"sentences\": [\"The person is shown bathing the dog with the detachable shower head.\", \"  The camera then zooms in on the dog showing its tail, back, and head.\", \" Next the dog gets a white towel wrapped around the bottom half of its body to get dried off.\", \"  The dog's face is then being held by the person who bathed him, and the camera zooms in again to show the dog sticking his tongue out.\"]}, \"v_aNE5ZWD5E34\": {\"duration\": 140.74, \"timestamps\": [[5.63, 18.3], [20.41, 66.85], [67.55, 87.96], [91.48, 121.74], [121.03, 140.74]], \"sentences\": [\"Two reporters talk in a TV set.\", \" Girls talk in a beach, then girls spray sunscreen on the back of women, also a woman wearing a white coat talks and shows products.\", \" A man sprays sunscreen on his back, and then he sprays sunscreen to the back of a woman.\", \" After, a man sprays sunscreen on his arm and back, other people spray sunscreen on their legs.\", \" The reporters in the TV set continue talking.\"]}, \"v_kuMevlNUDCs\": {\"duration\": 144.17000000000002, \"timestamps\": [[0, 144.17], [24.51, 41.09], [105.25, 144.17]], \"sentences\": [\"Two girls are in the kitchen washing dishes.\", \" They put the washed dishes into the dishwasher.\", \" They start fighting in the kitchen.\"]}, \"v_gA7GpvB10UY\": {\"duration\": 187.79, \"timestamps\": [[0, 152.11], [153.05, 187.79]], \"sentences\": [\"A close up of a contact case is shown and leads into someone washing their hands and putting the contact lens into her eyes.\", \"  She shows off her bottles and zooms in on the sink and counter top.\"]}, \"v_MaJlWFemO68\": {\"duration\": 15.67, \"timestamps\": [[0.16, 3.21], [4.47, 11.21], [10.42, 15.13]], \"sentences\": [\"A woman is seen holding onto her hair and looking off into the distance.\", \" She then uses a brush to push along her hair.\", \" She continues brushing her hair while using her hands.\"]}, \"v_2tf414bkudE\": {\"duration\": 192.66, \"timestamps\": [[0, 18.3], [22.16, 113.67], [114.63, 192.66]], \"sentences\": [\"A man touches a knife on a table.\", \" He picks up a sharpener and sharpens the blade of the knife on the sharpener.\", \" He demonstrates how much sharper the knife is by cutting paper in between attempts to sharpen it.\"]}, \"v_tfPm9xAZ5z0\": {\"duration\": 88.89, \"timestamps\": [[0, 4], [4, 16], [16, 30.67], [30.67, 79.11], [79.11, 88.89]], \"sentences\": [\"A black and white cat sits on a table next to a girl wearing a black and white sweater.\", \" The girl holds the cats paw in her left hand.\", \" The cat groomer grabs a cat nail clipper in her right hand.\", \" The cat groomer squeezes the cats paw and proceeds to clip the cats nails.\", \" The cat groomer then holds the cat close and adjust the camera.\"]}, \"v_GR6Ul2pD8_Y\": {\"duration\": 203.8, \"timestamps\": [[0, 11.21], [11.21, 17.32], [18.34, 43.82], [43.82, 82.54], [83.56, 91.71], [91.71, 142.66], [142.66, 203.8]], \"sentences\": [\"A man wearing a green knit cap drives up to the camera on a lawn tractor.\", \" The man stops the tractor and gets out of the lawn tractor and walks up to the camera.\", \" The camera pans across the yard and takes a close up of a leaf blower laying the yard.\", \" A girl in a blue jacket tries to start the leaf blower many times but is unable to.\", \" The man in the green knit cap tries twice and the leaf blower starts.\", \" The girl in the blue jacket mounts the leaf blower on her back and begins to blow leafs around.\", \" The man in the green knit cap is using the leaf blower and the girl in the blue jacket is now driving the lawn tractor.\"]}, \"v_7FPvAakfM9Y\": {\"duration\": 79.16, \"timestamps\": [[0, 19.39], [19.39, 63.72], [65.7, 79.16]], \"sentences\": [\"A boy is running around a kitchen, dancing as he mops.\", \" He appears to be singing, and slides back and forth.\", \" The floor is shiny and clean as he works.\"]}, \"v_fOuFF7dGPtI\": {\"duration\": 145.64, \"timestamps\": [[0, 145.64], [36.41, 145.64]], \"sentences\": [\"A man demonstrates how to bowl a ball.\", \"  He shows the proper technique and form.\"]}, \"v_I2w4N_GnyT8\": {\"duration\": 53.5, \"timestamps\": [[0, 53.5], [6.15, 6.95], [10.97, 15.51], [16.32, 35.58], [35.84, 53.5]], \"sentences\": [\"Players are playing a baseball game.\", \" A player gives another player a high five.\", \" A man in a hat stands on the field.\", \" The replay is shown in slow motion.\", \" The players are walking off the field.\"]}, \"v_KyDcuYjDi_Y\": {\"duration\": 220.07, \"timestamps\": [[0, 220.07], [55.02, 220.07]], \"sentences\": [\"A girl attempts to do some sort of gymnastic routine on the grass.\", \"  She does an upside down crab walk across the yard.\"]}, \"v_62BPME-ikJU\": {\"duration\": 168.9, \"timestamps\": [[0, 17.73], [18.58, 102.19], [102.19, 168.9], [122.45, 168.9]], \"sentences\": [\"A woman takes a swing chair to the side of the backyard.\", \" Then, the woman mows the grass of the backyard.\", \" After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she puts back the container in the mower.\", \" A boy stands watching the woman.\"]}, \"v_CdjU2OZri4c\": {\"duration\": 104.89, \"timestamps\": [[30.42, 50.34], [54.02, 59.26], [85.48, 101.21]], \"sentences\": [\"A person is drilling into the ground.\", \" They vacuum up what they drilled with a hose.\", \" They hit a wood panel into the ground.\"]}, \"v_QoRUUJz-PU0\": {\"duration\": 208.38, \"timestamps\": [[0, 31.26], [39.59, 118.77], [121.9, 208.38]], \"sentences\": [\"A man runs around an area, celebrating and kissing the emblem on his uniform.\", \" People are then shown playing soccer in a game.\", \" Several goals and interceptions are made, and the teams celebrate.\"]}, \"v_egT7FYHlWho\": {\"duration\": 97.72999999999999, \"timestamps\": [[0, 26.88], [26.88, 46.91], [48.87, 65.97], [65.48, 97.73]], \"sentences\": [\"How to clean your RV windows and mirrors fast without using any spray.\", \" You get a wash cloth and you put it under the faucet to get wet and then you rinse it out so it's not soaking.\", \" Then you use it to wash the mirror wrong back and forth and all around.\", \" With a dry cloth you go over it and then your mirrors are clean.\"]}, \"v_fBlvOzfFq-k\": {\"duration\": 88.65, \"timestamps\": [[0, 30.14], [27.93, 69.15], [69.59, 88.65]], \"sentences\": [\"A large group of people are shown from several shots walking around as well as divers jumping off a drive.\", \" More shots of athletes and audiences are shown as well as people being interviewed on the camera.\", \" More divers jump as well as several other interviews take place.\"]}, \"v_IQGg87yZZjs\": {\"duration\": 198.95, \"timestamps\": [[0, 16.91], [15.92, 19.89], [21.88, 24.87], [25.86, 35.81], [35.81, 41.78], [41.78, 57.7], [57.7, 67.64], [67.64, 145.23], [145.23, 149.21], [152.2, 156.17], [158.16, 176.07], [180.05, 182.04]], \"sentences\": [\"A hand is shown hovering over assorted cutlery.\", \" The hand picks up a wooden mallet.\", \" The man holding the wooden mallet walks out of the room.\", \" The man uses the wooden mallet to hammer down croquet hoops.\", \" The man picks up a croquet hammer and a ball.\", \" the man sits on a rock with the hammer leaning against him.\", \" The man stands up and conjures a clone of himself.\", \" The man and his clone engage in a game of croquet.\", \" A close up of a croquet mallet falling is shown.\", \" A close up of the man's face is shown.\", \" The man uses the croquet mallet to shoot a laser at his clown.\", \" The man throws his jacket over his clone.\"]}, \"v_ZJ6BFrKcRe0\": {\"duration\": 154.88, \"timestamps\": [[0, 147.13], [13.16, 138.62], [82.86, 154.88]], \"sentences\": [\"The man in on the beach is flying the kite.\", \" The man is using two ropes, he's maneuvering the kite with both hands.\", \" The kite is flying round and round, then it flew high then low.\"]}, \"v_4OfhHE72V8c\": {\"duration\": 201.55, \"timestamps\": [[0, 186.43], [186.43, 201.55]], \"sentences\": [\"A person is sitting a a mirror putting eye makeup on, alternating from left eye to right eye.\", \" They then apply blush with a sponge and brush.\"]}, \"v_gXvRxyT5rWw\": {\"duration\": 47.81, \"timestamps\": [[0, 47.81], [0, 23.67], [24.14, 47.81]], \"sentences\": [\"A man at a beach is doing body weight calisthenics on two metal parallel bars.\", \" He does leg raises and as his legs become parallel with the bars he does leg splits and then stops.\", \" Then he is back on the bars doing the exercise again.\"]}, \"v_gSkE0KCvves\": {\"duration\": 14.72, \"timestamps\": [[0, 6.62], [6.4, 14.72]], \"sentences\": [\"A man is seen riding a horse onto a field while swinging a rope and a young calf running in front of him.\", \" The man then throws the rope onto the calf and ties to animal up then walking away.\"]}, \"v_ZGL-PmMopeM\": {\"duration\": 133.14, \"timestamps\": [[0, 109.18], [96.53, 133.14]], \"sentences\": [\"A man in black suit is burying his backpack in the snow, then he started to ski down the slope, in the forest, jumping on the slope, back flipping, skiing.\", \" The skier ski at the side of the water, ski down the sloped, jumping on the edges.\"]}, \"v_J3DxJ8gI95U\": {\"duration\": 134.77, \"timestamps\": [[0, 3.37], [3.37, 40.43], [40.43, 87.6], [87.6, 134.77]], \"sentences\": [\"A stove is shown with a skillet on an eye with a flame.\", \"A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually begins to catch on fire.\", \"Once the fire simmers down,the man throws red sauce on top of the food and he shuffles it around the skillet.\", \"The camera then zooms in on the dish as the chef continues to shuffle the food and cook the meal.\"]}, \"v_KRGiJIHSd9E\": {\"duration\": 236.84, \"timestamps\": [[22.5, 223.82], [0, 1.18], [4.74, 10.66], [11.84, 15.39], [8.29, 223.82], [225, 232.11], [233.29, 236.84]], \"sentences\": [\"A female tattoo artist is doing a tattoo back piece for a man at a shop.\", \"  A title screen appears in black with white letters explaining the video and the tattoo artists name.\", \"  The tattoo artist is setting up her inks and papers for the session she is about to have.\", \"  She peels the transfer paper off the client's back revealing the art.\", \"  In a progression of 12 sessions shows a visual timeline of how the entire back piece for the client comes out as it shows her inking the clients entire back with artwork.\", \"  There are several still pictures of the client, the tattoo artists and others posing as the client shows the complete tattoo on his back.\", \"  A black screen with white letters to show the end of the video.\"]}, \"v_fDPNV463JuE\": {\"duration\": 177.91, \"timestamps\": [[0, 32.91], [32.91, 177.91], [88.07, 177.91]], \"sentences\": [\"man is walking in a field in front of a black and red inflatable.\", \" two men are standing holding paintball huns in a field with obstacles.\", \" man is showing how to holds the gun in a paintball field.\"]}, \"v_Iq9cAZxki9Y\": {\"duration\": 39.66, \"timestamps\": [[0, 39.66], [6.54, 39.66], [38.27, 39.66]], \"sentences\": [\"Two people are sitting at a table.\", \" They are playing a game of rock paper scissors.\", \" There are words shown on the screen.\"]}, \"v_t3eRbi1Uk5E\": {\"duration\": 186.2, \"timestamps\": [[0, 35.38], [40.03, 114.51], [120.1, 186.2]], \"sentences\": [\"Several different people are inside a gym.\", \" They are shown riding different kinds of elliptical and ARC trainers at both fast and slow speeds.\", \" Some are running, others jumping, then back to the ellipticals.\"]}, \"v_r-iXUXMP4DY\": {\"duration\": 233.13, \"timestamps\": [[0, 24.48], [36.13, 165.52], [171.35, 233.13]], \"sentences\": [\"A man is inside a room in front of a table.\", \" He demonstrates how to properly lay a shirt on the table.\", \" Then he shows how to use an iron to iron the shirt smoothly.\"]}, \"v_IRvFx8K0gAI\": {\"duration\": 166.53, \"timestamps\": [[2.5, 87.43], [65.78, 154.04]], \"sentences\": [\"Two people are seen standing on a stage facing one another and leads into them performing a dance routine with one another.\", \" People watch the couple dance from the sidelines as the couple continues to move and end by holding a pose.\"]}, \"v_KNyWPCoHEng\": {\"duration\": 164.72, \"timestamps\": [[0, 29.65], [30.47, 49.42], [49.42, 106.25], [106.25, 143.31], [146.6, 164.72]], \"sentences\": [\"man is vacuuming the seats of a car.\", \" man is cleaning the car holding a hosepipe.\", \" car enteres in a parking lo and a man is polishing and waxing the car.\", \" man is cleaning the leather of the seats.\", \" man is cleaning the wheels with a bottle spray.\"]}, \"v_sAi1aMHR89A\": {\"duration\": 22.83, \"timestamps\": [[0, 18.37], [4.68, 6.85], [19.17, 22.83]], \"sentences\": [\"A man is holding the legs of a man as he does sits ups in a workout room.\", \" The man in the background leans forward.\", \" The man stops sit ups and starts reaching for the sky as he lays on his back.\"]}, \"v_pXcFBfv5Sf4\": {\"duration\": 84.38, \"timestamps\": [[0, 5.91], [5.48, 8.86], [8.86, 79.32], [53.58, 67.93], [79.74, 84.38]], \"sentences\": [\"We see a man talking and some bike shots.\", \" We then see the title screen.\", \" The man talks and we see people riding BMX bikes.\", \" A series of tips come up on the screen.\", \" We then see the ending screen.\"]}, \"v_Y8-7fr5bv24\": {\"duration\": 195.03, \"timestamps\": [[0, 3.9], [3.9, 29.25], [31.2, 116.04], [131.64, 140.42], [141.39, 169.67], [185.27, 190.15], [193.07, 195.03]], \"sentences\": [\"We see two bright intro screens.\", \" We see a man talking near a lady and the lady with different hairstyles.\", \" We see the man put a braids in the lades hair and a ponytail.\", \" We see the man and the woman with her hair down.\", \" The woman puts her hair up in the same style herself.\", \" The man and lady smile and wave at the camera.\", \" We then see a bright ending screen.\"]}, \"v_s43eZJ0hy44\": {\"duration\": 91.49, \"timestamps\": [[0, 11.44], [12.81, 59.47], [62.21, 91.49]], \"sentences\": [\"A group of children are playing in a field.\", \" They are throwing a white ball to each other in a game of dodgeball.\", \" The kids run, trying not to get hit by the ball.\"]}, \"v_LTPrtyWIcA4\": {\"duration\": 130.66, \"timestamps\": [[0, 20.25], [20.91, 37.89], [37.24, 81.66], [81.66, 130.66]], \"sentences\": [\"A man on a motorcycle is pulling up into a parking space.\", \" He gets off the bike and puts his helmet down on it.\", \" Then he grabs a rolling bucket with supplies and pulls out a gadget that he uses to start cleaning the window of a house.\", \"He uses a raf to wipe down the window and then he is done.\"]}, \"v_0Zg-7EgFiC8\": {\"duration\": 218.22, \"timestamps\": [[0, 128.75], [128.75, 135.3], [137.48, 182.22], [184.4, 218.22]], \"sentences\": [\"A group of people are on a court going around, lifting others and sitting on the back of people like riding a horse when a sign a is given.\", \" Then, two people sits on the leg of her playmates.\", \" The girls organize to form a human tower, then a boy gives a bouquet of flower to the girl on the top.\", \" After, a girl brings a boy with the eyes covered, and when he turns take the girl and holds and hugs her.\"]}, \"v_Mk9PMED8K4g\": {\"duration\": 210.88, \"timestamps\": [[0, 1.05], [16.87, 210.88]], \"sentences\": [\"The woman is shown sitting on a motorcycle wearing a red bull helmet.\", \" He starts the motorcycle and goes away, next the woman stops the motorcycle when she gets near a car and she changes the clothes she has on and gets back on her motorcycle.\"]}, \"v_I5F59PkcDWM\": {\"duration\": 167.0, \"timestamps\": [[0, 21.71], [22.54, 163.66], [34.23, 111.05]], \"sentences\": [\"A person plays guitar holding on the lap.\", \" The woman turns the hand up and tap with the finger, then the woman continues palying.\", \" The person A man sit behind the person drinks beer and button his shirt.\"]}, \"v_dgRYwmcRpuo\": {\"duration\": 161.38, \"timestamps\": [[0, 69.39], [61.32, 161.38]], \"sentences\": [\"A person wearing gloves is seen taking items out of a sink and pouring liquid all around the sides.\", \" The woman then scrubs the all around as well as the metal bar and around the sink.\"]}, \"v_TP8lUusp66Y\": {\"duration\": 191.89, \"timestamps\": [[4.8, 45.09], [46.05, 89.23], [65.24, 66.2], [90.19, 107.46], [108.42, 170.78], [171.74, 191.89]], \"sentences\": [\"A young woman bounce a ball on a stick in different places.\", \" The young woman trains in a field hockey bouncing and throwing the ball.\", \" A man walks close to the goal carrying a backpack.\", \" The young woman practice with another player in a field, then she runs.\", \" Two teams play field hockey, and the young lady participate in the game.\", \" After, the young woman practice alone bouncing a ball.\"]}, \"v_lETAKUG4pQw\": {\"duration\": 66.71, \"timestamps\": [[0, 17.68], [17.68, 66.71]], \"sentences\": [\"A black cat with shiny eyes climbs on the lap of a man that holds a nail clipper.\", \" Then, the man cuts the nails of the front legs o the cat, then the man pets the cat while holdings the nail clipper.\"]}, \"v_ix40OdQd7iE\": {\"duration\": 99.85, \"timestamps\": [[0.5, 34.95], [36.94, 73.89], [70.39, 97.85]], \"sentences\": [\"A large group of people are seen standing around a track with one holding a large pole and running down the track.\", \" The man pole volts over the bar and is shown again in slow motion.\", \" Several more clips are shown of people pole volting over a beam as well as again in slow motion.\"]}, \"v_Qhs0AjFvcOA\": {\"duration\": 74.26, \"timestamps\": [[0, 11.51], [11.14, 22.65], [22.65, 27.85], [27.48, 65.35]], \"sentences\": [\"Very short scenes of athletes training in various sports are shown.\", \" A man prepares to play tennis.\", \" The man talks to someone off screen.\", \" Scenes of the man playing tennis are shown, interspersed with short clips of the man talking, while text overlay explains tennis.\"]}, \"v_wtoKUYBw9f4\": {\"duration\": 61.74, \"timestamps\": [[0, 4.01], [4.01, 23.77], [24.7, 44.45], [44.15, 56.8], [56.8, 61.74]], \"sentences\": [\"We see an opening title screen.\", \" We see a lady standing on a track with a score screen showing.\", \" The lady then perform her high jump and stands and jumps and pumps her arms.\", \" We see a replay of the jump.\", \" We then see the ending title screen.\"]}, \"v_j6HDZh7W6Z4\": {\"duration\": 85.06, \"timestamps\": [[0, 5.1], [5.53, 9.78], [10.63, 46.78], [48.06, 85.06]], \"sentences\": [\"A man wearing a number on his uniform walks to a plate, preparing himself.\", \" He swings a disc, warming up.\", \" He then throws the disc, and it lands far away in the field.\", \" He walks away, then it is shown again in slow motion.\"]}, \"v_YCqbvmEG-Uw\": {\"duration\": 17.28, \"timestamps\": [[0, 17.28], [0, 1.38]], \"sentences\": [\"A lady in the driveway below scrapes ice off her windshield with a small scraper.\", \" The lady is looking upward but starts to look down as she scrapes.\"]}, \"v_Vhf-vNRYQEg\": {\"duration\": 86.94, \"timestamps\": [[0, 10.87], [10.43, 65.2], [66.07, 86.94]], \"sentences\": [\"A close up of a sign is shown followed by the camera capturing many guitars on shelves around him.\", \" A man is seen sitting down playing an accordion  and pauses to speak to the camera and show off the instrument he is holding.\", \" He continues playing more while smiling to the camera and pauses to speak more and hold onto his instrument.\"]}, \"v_VrNHEv6aR38\": {\"duration\": 14.56, \"timestamps\": [[0.44, 6.19], [4.51, 11.14], [10.77, 14.27]], \"sentences\": [\"A small group of people are seen swimming around a pool chasing a ball around each other.\", \" People are watching on the side as one man throws the ball to another.\", \" One catches the ball and continues to play around the pool.\"]}, \"v_PLqTX6ij52U\": {\"duration\": 147.47, \"timestamps\": [[0, 4.42], [5.16, 54.56], [54.56, 106.92], [106.92, 139.36], [139.36, 147.47]], \"sentences\": [\"We see the opening title screen.\", \" A man in a room holds a bike and talks to the camera.\", \" The man adjusts a and talks off the front tire, and folds the bike in half on itself.\", \" The man unfolds the bike and puts the tire back on.\", \" We see the ending title screen.\"]}, \"v_a2HjLtnVDaY\": {\"duration\": 36.04, \"timestamps\": [[0, 6.13], [6.13, 13.33], [13.15, 24.87], [24.87, 36.04]], \"sentences\": [\"A large dog is holding on to a blue leash that is on a smaller dog.\", \" He is basically walking her, while the owner walks a third dog.\", \" The dog runs around quite a but but then gets back on track following the owner.\", \" He stops ahead of the owner to wait for her to begin moving again.\"]}, \"v_sEGceBU8icE\": {\"duration\": 110.44, \"timestamps\": [[0, 110.44], [78.41, 110.44]], \"sentences\": [\"A man is painting on a large black canvas.\", \" He flips the painting around.\"]}, \"v__QTQEw1b_-U\": {\"duration\": 157.5, \"timestamps\": [[8.66, 57.49], [57.49, 87.41], [87.41, 102.38], [102.38, 122.06], [126, 144.11]], \"sentences\": [\"A man talks to the camera while another man stands by.\", \" The second man maneuvers across monkey bars sideways.\", \" The first man resumes talking to the camera.\", \" The first man maneuvers across the monkey bars to join the second man.\", \" The second man maneuvers across the monkey bars again by taking multiple bars at a time.\"]}, \"v_GNg5kjnJlOE\": {\"duration\": 97.85, \"timestamps\": [[0, 9.78], [10.27, 19.57], [19.57, 22.99], [23.48, 97.85]], \"sentences\": [\"A series of words are shown on a black screen.\", \" A close up of spring leg attachments is shown.\", \" Close ups of individuals bouncing while wearing the spring legs are shown.\", \" A series of video showing people using the spring legs to perform a variety of tricks in various public environments is shown.\"]}, \"v_5C0G3BQ-Nds\": {\"duration\": 213.72, \"timestamps\": [[0, 159.22], [158.15, 204.1], [205.17, 210.51]], \"sentences\": [\"Several young men play a game on a Foosball table.\", \" A new player arrives, who is a much older man amd plays a game with the younger men.\", \" The older man high-fives a younger player.\"]}, \"v_m16Cn9VA3Lk\": {\"duration\": 29.65, \"timestamps\": [[0, 29.65], [0, 8.75], [8.75, 16.16], [16.01, 26.84], [26.84, 29.65]], \"sentences\": [\"A girl in a purple shirt enjoys her time at the playground.\", \"  She goes across the monkey bars effortlessly.\", \"  As she approaches the other side a young boy is climbing up.\", \"  She reaches the other side and steps onto the platform.\", \"  As she steps forward towards another attraction, the boy climbs higher.\"]}, \"v__WMRdq7yFpA\": {\"duration\": 10.54, \"timestamps\": [[0, 1.32], [1.74, 7.96], [8.06, 10.54]], \"sentences\": [\"A man is diving deep into the ocean.\", \" He breathes bubbles as he goes through the water.\", \" He looks back momentarily at the camera.\"]}, \"v_2oizmWFx4PA\": {\"duration\": 161.89, \"timestamps\": [[0, 60.71], [55.04, 113.32], [112.51, 155.41]], \"sentences\": [\"A close up of tools are shown that lead into a person tightening a screw on a bike.\", \" The person adds parts to the screw and continuing screwing it around.\", \" The man then puts one last screw on and tightens it with a belt.\"]}, \"v_pwKZRo19Vf0\": {\"duration\": 129.2, \"timestamps\": [[0, 48.45], [29.07, 104.65], [66.54, 129.2]], \"sentences\": [\"A close up of ingredients in shown followed by a person cracking an egg and preparing a fryer.\", \" The man moves around the pan on the hot stoves followed by putting the egg in the pan.\", \" The man cooks the egg and places it on a plate to present.\"]}, \"v_ESecNZbZgug\": {\"duration\": 91.56, \"timestamps\": [[0, 32.04], [32.5, 64.09], [64.55, 91.56]], \"sentences\": [\"A black elliptical is shown and a woman dressed in red workout clothes gets on it and starts to exercise.\", \"The front of the machine is shown and the woman presses a button to speed up the machine and moves faster.\", \"Next,she gets off the bike and twists a knob to raise the incline of the machine and continues her workout.\"]}, \"v_IJ76Wtgg2g4\": {\"duration\": 109.88, \"timestamps\": [[0, 19.78], [19.78, 54.39], [54.94, 82.96], [84.61, 109.88]], \"sentences\": [\"A gymnast in a pink leotard is standing by getting ready to start her performance for the judges.\", \" She gets on the bar and begins her performance, taking her time with her moves doing incredible flips forwards and backwards and landing perfectly on the bar.\", \" She is pretty amazing, her continues on very gracefully and beautifully.\", \" When she is done with her performance she does a triple flip down off the bar and lands.\"]}, \"v_dFVX_2UQ2WY\": {\"duration\": 55.78, \"timestamps\": [[5.3, 15.62], [15.62, 42.67], [42.67, 46.85]], \"sentences\": [\"A woman sits on front a red shoe.\", \" Then, the woman talks a toothbrush and brushes the red shoe.\", \" Next, the woman puts the shoe on the table and continues talking.\"]}, \"v_FgRIl4bNl_M\": {\"duration\": 121.16, \"timestamps\": [[0, 39.38], [30.9, 93.29], [84.81, 116.92]], \"sentences\": [\"A large snowy area is seen followed by a person pushing a shovel.\", \" The person pushing the snow all around the area and clearing out a walkway.\", \" The person continues shoveling while the camera captures them from behind.\"]}, \"v_cROJALtLB1k\": {\"duration\": 33.41, \"timestamps\": [[0, 33.41], [17.54, 18.38]], \"sentences\": [\"A woman sits on a rowing machine an pulls a handlebar with a string.\", \" The machine display the pulling force.\"]}, \"v_xf9iLflgRro\": {\"duration\": 205.79, \"timestamps\": [[2.06, 52.48], [54.53, 139.94], [143.02, 192.41]], \"sentences\": [\"Two people are seen working on a roof that leads into clips of a clock and a house.\", \" Several shots are shown of a roof as well as the men laying down paper and pushing liquid all over the roof.\", \" The men continue this method and finish by laying more paper down.\"]}, \"v_-5Q7iNtaWCU\": {\"duration\": 76.77, \"timestamps\": [[0, 4.22], [4.22, 13.43], [13.43, 46.44], [46.44, 76.77]], \"sentences\": [\"A man holding a man throws it towards a group of kids.\", \" in turn, those kids start throwing many balls back in his direction.\", \"  The girls on the other side start grabbing the balls and throwing back at the other team and trying not to get hit.\", \" The boys start throwing multiple balls at them again.\"]}, \"v_HytB88Fhqw8\": {\"duration\": 96.5, \"timestamps\": [[0, 8.69], [8.2, 12.55], [12.55, 24.13], [24.13, 31.36], [31.36, 54.52], [55.01, 96.5]], \"sentences\": [\"men are wrapping a gift in a small room.\", \" men are playing rugby in a field in the night.\", \" men are in baths showein and standing in towels while a man is talking to them.\", \" men are going up the stairs and are in a trophy room.\", \" woman is talking to men that are in a room and shows them a red gift.\", \" men start wraping the gift and using some plastic tape.\"]}, \"v_2g9GrshWQrU\": {\"duration\": 179.51, \"timestamps\": [[0, 67.32], [18.85, 133.74], [70.01, 171.44]], \"sentences\": [\"Two bulky men, wearing black top are standing on the table, they put their arms on the table and positioned themselves in an armwrestle match.\", \" The men started to arm wrestle while while a referee is watching closely to the men's arm to see who is winning.\", \" The men continue to arm wrestle using their all their strength, while the man in black is  walking towards the men and take picture, and the men continue to wrestle, while two men in red shirts are doing arm wrestle behind them too, then one of the men won and the crowd cheered.\"]}, \"v_2-1MNxfX5Bc\": {\"duration\": 68.42, \"timestamps\": [[0, 3.42], [3.42, 6.84], [6.84, 14.03], [14.03, 19.16], [19.16, 41.39], [41.39, 68.42]], \"sentences\": [\"A group of 8 people are wearing helmets and life vests as they are riding a raft in very rough white waters.\", \" The raft gets into a bit of trouble,flips over and everyone flips into the very rough waters.\", \"The people eventually emerge and they all begin to struggle to get out of the water.\", \"One person gets to the other side of the water and is pulled to safety by a rope and someone on land holding the rope.\", \" Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people are also going down the rough waters and also struggling to keep their heads afloat.\", \"More people are struggling in the water, one is sitting on the upside down raft,and three others are in the rough waters and are also struggling to keep their heads afloat and not bang into rocks.\"]}, \"v_HNR_HofJ_Fs\": {\"duration\": 122.05, \"timestamps\": [[2.44, 44.55], [21.36, 97.64], [103.13, 118.99]], \"sentences\": [\"A man is seen moving a toy airplane around and speaking to another man that walks into frame.\", \" The scene leads into clips of several man playing volleyball against one another while many watch on the sides.\", \" One of the men then grabs his jacket and leaves.\"]}, \"v_esuEWVNHfsM\": {\"duration\": 220.82, \"timestamps\": [[0, 220.82], [23.19, 57.41], [96.06, 100.47], [73.98, 78.39], [88.33, 90.54], [117.04, 119.24], [152.37, 154.58], [174.45, 192.12], [210.89, 213.09]], \"sentences\": [\"Two men play table tennis while several other individuals watch in the background.\", \" A man in red and yellow shorts walks into frame and watches the game.\", \" An individual in the back of the room leaves.\", \" A man dressed in black walks past the foreground.\", \" The man dressed in black briefly reenters the frame.\", \" The man in red and yellow shorts walks past the foreground.\", \" A man in a white shirt walks past the foreground.\", \" A man carrying an object walks past the foreground repeatedly.\", \" An individual briefly enters the frame.\"]}, \"v_KZyg_UYyL0s\": {\"duration\": 43.63, \"timestamps\": [[0, 3.27], [3.27, 31.41], [31.63, 43.63]], \"sentences\": [\"An old man talks front a fence and he touches it.\", \" Then, the man points the fence on top and down.\", \" After, the man continues explainig while touching the fence.\"]}, \"v_mRgS35iyhYE\": {\"duration\": 55.68, \"timestamps\": [[0, 18.1], [18.1, 44.55], [37.59, 54.57]], \"sentences\": [\"A man is seen sitting in a bumper car and begins driving around.\", \" Several people are riding around in the cars bumping into one another.\", \" The people continue driving around and bumping into one another.\"]}, \"v_6-beYw2R10s\": {\"duration\": 48.95, \"timestamps\": [[0, 4.65], [6.85, 42.83], [43.32, 48.95]], \"sentences\": [\"An ad is shown for a pet wash place.\", \" A dog is in a tub, being sprayed with soap before being rubbed down, and finally, rinsed clean.\", \" A closing image shows additional information about the wash.\"]}, \"v_1BUnQWRBpYg\": {\"duration\": 218.18, \"timestamps\": [[0, 74.18], [91.63, 206.18]], \"sentences\": [\"The camera shows a man holding a stick to record himself skating quickly down a long hill.\", \" The man continues riding around the area while the camera records him moving at a quick pace.\"]}, \"v_P5Y-b-lcBs0\": {\"duration\": 105.74000000000001, \"timestamps\": [[0, 105.74], [13.22, 14.8], [58.16, 86.71]], \"sentences\": [\"People are playing a game of pool in a room.\", \" People are standing by a wall watching them.\", \" People are sitting at a bar behind them watching them.\"]}, \"v_WV-Sf5-aCcc\": {\"duration\": 147.32, \"timestamps\": [[0, 3.68], [3.68, 16.94], [18.42, 44.2], [46.41, 82.5], [72.19, 80.29], [83.97, 96.5], [97.23, 102.39], [102.39, 134.06], [134.06, 136.27], [137.01, 147.32]], \"sentences\": [\"We see the opening title screen.\", \" We see a man stand in a room talking.\", \" The man then begins to demonstrate Capoeira moves slowly.\", \" The man then begins to move quickly.\", \" The man turns to the right and continues, then turns forward.\", \" The man stops and stands upright.\", \" A lady joins the man in the room.\", \" The lady and the man dance around each other in a circle.\", \" The people finish and shake hands.\", \" The screen goes black and the ending title loads.\"]}, \"v_jF33TElZc_Y\": {\"duration\": 188.83, \"timestamps\": [[2.83, 34.93], [34.93, 63.26], [63.26, 83.08], [83.08, 152], [152.95, 159.56], [160.5, 183.16]], \"sentences\": [\"A person snowboard on a steep mountain going down without falling.\", \" Other men snowboard down the mountain falling from very high and land stand on the mountain.\", \" A man flips in the air, then lands on the snow to continue skiing down the mountain with deep snow.\", \" Other people snowboard on the mountain going down the slopes.\", \" A person drives a snow motorcycle on the mountains.\", \" After, men continues snowboard on the high mountain with deep snow.\"]}, \"v_jUmfhYsA5r0\": {\"duration\": 66.76, \"timestamps\": [[0, 58.41], [58.41, 66.42]], \"sentences\": [\"A man stands against a wall playing guitar and singing.\", \"Then, the man stops playing and then talks.\"]}, \"v_xQH8YS2_NxY\": {\"duration\": 93.89, \"timestamps\": [[5.63, 83.56], [5.63, 85.91], [81.69, 84.97], [83.56, 86.38]], \"sentences\": [\"A young Justin Bieber is playing drums in a studio.\", \" Two of his friends are watching while recording on their phone.\", \" Justin ends the drum solo by throwing his drum sticks to the side.\", \" His friends applaud his playing.\"]}, \"v_oy1XjDer7o4\": {\"duration\": 77.35, \"timestamps\": [[0, 15.86], [7.35, 77.35], [37.13, 63.04]], \"sentences\": [\"A kid is in the yard putting the ball on the side of the fence.\", \" An adult came and start to cut grass with the kid.\", \" The man moved the goal net on the side and continue to cut the grass using the grass cutter, then he move the trampoline and move cut the grass as the boy is playing on the side.\"]}, \"v_5WqnKjOz1z4\": {\"duration\": 143.51, \"timestamps\": [[2.15, 59.56], [40.9, 138.49]], \"sentences\": [\"A camera pans around a yard and leads into a man raking up leaves and putting them into bags.\", \" The man continues stuffing leads into a bag as well as raking leaves all around the yard.\"]}, \"v_6VUsbs84lCc\": {\"duration\": 17.86, \"timestamps\": [[0, 2.05], [3.75, 11.43], [11.7, 17.86]], \"sentences\": [\"A woman is seated at a table.\", \" She is knitting with pink yarn and needles.\", \" She talks as she continues to knit.\"]}, \"v_cgPt46YiXNo\": {\"duration\": 15.4, \"timestamps\": [[0.31, 7.85], [5, 15.16]], \"sentences\": [\"A man is seen sitting before a large mat with another person laying in the background.\", \" The man then runs down the mats on stilts and jumps over a large mat.\"]}, \"v_9PP5_HGpu4c\": {\"duration\": 187.15, \"timestamps\": [[0, 4.68], [4.68, 74.86], [74.86, 103.87], [103.87, 187.15]], \"sentences\": [\"A red title screen is shown where a man is tossing food in a frying pan.\", \"The a male and female are shown on a television production stage behind an island with cooking ingredients.\", \"The chef then begins to describe the food in front of him and cuts the food to go into the pan.\", \"Once completed, he cuts eggs in half and cuts up small green things as the woman assists him by turning the food in the pan.\"]}, \"v_bmIWsU8sNlw\": {\"duration\": 208.04, \"timestamps\": [[0, 20.8], [26.01, 194.52], [195.56, 208.04]], \"sentences\": [\"A picture of a little girl in a ballerina skirt is shown.\", \" Several little girls in ballerina skirts are dancing on a stage.\", \" They put their hands above their heads and run off stage.\"]}, \"v_cGoj8xGxrG0\": {\"duration\": 44.44, \"timestamps\": [[0, 44.44], [0, 42.89], [2.89, 44.44]], \"sentences\": [\"a racatac is shown in a white room.\", \" a racatac is shown in a commecial showing the prices.\", \" different racatacs in sizes and models are shown in a room.\"]}, \"v_WRc1Jv1j3nk\": {\"duration\": 38.94, \"timestamps\": [[0, 2.53], [3.31, 22.39], [23.56, 38.94]], \"sentences\": [\"A woman is inside a building and outside.\", \" We see several scenes of a woman pulling a bow back from an archery set.\", \" She shoots the arrow toward a target.\"]}, \"v_gEYutYXODs4\": {\"duration\": 190.59, \"timestamps\": [[5.72, 14.29], [16.2, 21.92], [21.92, 113.4], [117.21, 122.93], [127.7, 136.27], [127.7, 188.68]], \"sentences\": [\"A woman is washing her hands.\", \" She lights a candle in a room.\", \" She is sitting down knitting.\", \" She is walking into a building.\", \" She sits down and talks with another lady.\", \" They all begin knitting sitting next to each other.\"]}, \"v_K5wPwCFVkhU\": {\"duration\": 15.79, \"timestamps\": [[0, 4.89], [5.21, 14.61], [14.84, 15.79]], \"sentences\": [\"A small puppy is rubbing his face in someone's lap.\", \" He chews and licks his paw as he cuddles.\", \" He looks up at the camera slightly.\"]}, \"v_0vQs3ztG7vg\": {\"duration\": 37.97, \"timestamps\": [[0, 16.51], [16.32, 37.97]], \"sentences\": [\"A young child is seen jumping on a set of monkey bars and moving along the bars.\", \" He climbs back towards the beginning and meets another child waiting.\"]}, \"v_PKYg6_rs3LQ\": {\"duration\": 24.1, \"timestamps\": [[0, 2.89], [2.89, 24.1]], \"sentences\": [\"Two young men holds axes in the woods.\", \" Then, the young men splits logs in the woods.\"]}, \"v_5nOc03oiFvk\": {\"duration\": 213.44, \"timestamps\": [[0, 49.09], [50.16, 118.46], [118.46, 213.44]], \"sentences\": [\"A camera pans around several shots of a mountain and shows people strapping rope onto themselves.\", \" A couple people are then seen climbing up large rocks while another waits at the bottom.\", \" They show more areas of the nearby location as well as more people climbing up the rock and riding around the area.\"]}}"
  },
  {
    "path": "NLQ/2D-TAN/data/Charades-STA/Charades_v1_test.csv",
    "content": "id,subject,scene,quality,relevance,verified,script,objects,descriptions,actions,length\r\nYSKX3,CP6Y,Bedroom,5,6,Yes,A person fixes the bed then throws pillow on it.,bed;blanket;mattress;pillow,\"A person looks under a mattress and pats the bed.  This person picks up a pillow, and throws it on the bed.;A person is in a bedroom.  The person is fixing the bed. After the person cleans up his bed, the person leaves.\",c077 12.10 18.00;c079 11.80 17.30;c080 13.00 18.00;c076 11.80 17.50;c075 5.40 14.10,16.62\r\nT5ECU,M7K8,Living room,6,7,Yes,\"One person is smiling and drinking while watching out the window, while another person is leaving with a vacuum.\",chair;cup;dish;dog;vacuum;window,A person leaves the room holding an umbrella while another person drinks water and looks out the window;Two people are standing by the window one person is drinking a glass of water the other person is holding a vacuum and waving that person walks away.,c137 0.30 9.00;c092 0.00 18.90;c152 3.50 31.00;c154 3.20 8.40;c059 0.00 32.00;c118 0.00 32.00;c151 0.00 4.20;c106 0.50 7.50;c106 7.20 13.30;c106 13.50 20.30;c149 5.40 32.00;c138 0.30 6.10;c150 4.60 8.90;c107 0.00 32.00,31.29\r\nAAH6R,ENHU,Closet / Walk-in closet / Spear closet,6,6,Yes,A person undressing in the doorway walks to a chair and sits down.,chair;clothes;doorway;mirror,\"A person is looking in the mirror, adjusting his shirt, then walk back and sit on the chair and looks at the computer.;A person looking at clothing and fixing it in a mirror, then walking across room, sitting at a desk and reaching for something.\",c059 3.50 8.00;c151 3.00 7.60;c148 0.00 8.00;c096 0.00 5.30;c155 0.00 5.30,7.38\r\n015XE,GFWE,Kitchen,6,5,Yes,A person is taking a picture of a light while sitting in a chair.,camera;light;phone;picture,A person holds a camera up to a light on the ceiling;A person in a bedroom appears to use their phone to film or take a picture of the light fixture on the ceiling.;A person is in a kitchen.  The person is taking a picture of the light in the kitchen.,c015 0.00 32.10;c087 0.60 32.10;c016 0.00 32.10;c154 0.00 31.80,32.83\r\nTJZ0P,ENHU,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person in their home office opening a book that is on their desk. They start sneezing. Then, they pick up a sandwich and place it on top of some dishes.\",arm;book;chair;food;sandwich;shelf;table;window,\"A person sitting down picks up a book. A person sneezes and then eats some food;The person is seated in a chair. The person picks up a book from a desk, then sneezes twice. The person sets the book on the desk. The person picks food up from a plate on the desk, takes a bite and returns it to the plate. The person picks up the book.;A person sitting in a chair picks up a book, looks at it and then sneezes several times. The person then places the book down, takes a bite of food, chews and picks the book back up.\",c067 8.60 13.80;c028 6.90 11.90;c059 0.00 19.00;c065 7.70 15.70;c068 11.80 18.90;c026 0.00 11.80;c153 2.80 10.40;c011 0.00 19.00;c115 0.00 11.80;c117 0.00 4.40;c156 10.20 19.00;c063 8.50 14.20;c069 8.40 14.30;c025 6.70 11.50;c027 1.10 7.00;c032 0.50 12.20;c061 9.20 17.90;c062 13.10 18.00;c030 0.00 4.20;c009 7.70 12.00;c081 6.20 11.50;c145 0.30 11.70;c116 6.70 11.40,17.71\r\nB82GJ,ARRB,Kitchen,6,6,Yes,A person is cooking at the stove. The person takes a paper towel from the table and sneezes into it.,food;pot;spoon;stove;table;towel,\"Person standing by the stove stirring a pot leave the stove go to the table and sneeze into a paper towel.;Person in pajamas is cooking at a stove mixing in a pot. Person then walks over to table, grabs a paper towel, and sneezes into towel.\",c033 18.30 25.00;c035 17.70 22.50;c147 0.00 19.90;c153 18.30 25.00,24.42\r\nA1BS2,BKWQ,Bathroom,2,6,Yes,A person is tidying around a sink in a bathroom. The person then opens the door and leaves the bathroom.,cabinet;cup/glass/bottle;door;light;mirror;towel,A person is folding a towel. They open a cabinet and put something inside. The person put starts to tidy up before leaving.;A person picked up a towel and folded it and set it on a counter top. The person then took an item from the counter top and opened a cabinet door. The person then put the item in the cabinet. The person then organized items on top of the counter before putting one of the items in a drawer.;A person cleans up a bathroom counter.,c006 36.10 41.80;c038 0.90 6.50;c113 14.00 20.10;c096 0.00 18.00;c096 12.30 17.70;c109 14.70 21.10;c109 18.70 24.60;c008 14.90 20.60;c097 38.30 45.10;c037 0.60 16.80;c033 1.10 15.80;c035 0.90 6.10;c034 10.60 17.00;c105 37.60 42.50;c107 17.80 24.60;c114 0.00 41.10,47.50\r\nZBBOO,ARRB,Garage,6,6,Yes,A person is in the garage holding a box near a table while drinking from a cup.,book;box;cup;mug,\"The person is standing, holding a box, and pretending to drink from a coffee mug.;A person stands in a garage drinking a beverage out of a cup while holding some kind of box and then turns to face the other way.;Person standing in a garage without shoes, holding a box, and taking multiple drinks from a mug.\",c106 0.00 5.60;c040 0.00 23.00;c106 0.00 23.00;c107 0.00 23.00;c026 0.00 23.00,21.67\r\nAF8I2,BONA,Hallway,6,7,Yes,\"A person laughs while eating food, A person sits and does homework.\",book;dish;floor;food;homework;paper,A person is sitting on the ground and eats off of a plate with a fork and then does some homework.;The person is sitting on the floor eating food very fast and then pushes the plate away and then grabs a book and pen and starts to do work.,c145 26.20 35.00;c062 21.80 27.50;c156 0.00 23.60;c030 22.20 30.60;c152 0.00 3.90;c152 9.20 14.80;c117 22.20 30.60;c119 20.60 25.80;c026 23.00 35.00;c061 0.00 25.60;c063 0.00 25.00;c149 9.20 14.60;c125 0.00 35.00;c115 22.50 35.00;c027 22.50 31.40,33.96\r\n4WVTC,CP6Y,Stairs,6,7,Yes,A person is standing at the bottom of a set of stairs. The person is holding a laptop and a blanket. The person leaves the laptop on one of the stairs and continues up the steps still holding the blanket.,blanket;floor;laptop;towel,A person is standing on the stairs holding a blanket and their laptop they close their laptop and set it on the stairs and walk up the stairs carrying their blanket.;A person standing on the stairs with a laptop in hand and towel in hand put laptop down and walk up the stairs.,c070 0.00 23.00;c073 0.00 23.00;c035 0.00 23.00;c126 0.00 11.10;c052 0.00 11.40;c033 0.00 23.00;c049 2.50 10.10;c154 6.20 11.40;c047 0.00 7.10;c075 6.70 13.20;c046 0.00 4.60,21.50\r\nT56KO,V044,Bedroom,5,7,Yes,\"A smiling person grabs a towel, and fresh clothes. Then the person begins undressing.\",chair;clothes;towel,\"A person walks into view and picks up some clothes from a chair.  The person then takes off some clothes.;A person picks up some clothes from off a chair seat and walks out of the room.  They walk back into the room and undress.  They put a jacket on a bed.;A person walks to a chair, picks up two items from the chair's seat and walks away with the items. Then the person returns and stands behind the chair, removes their jacket, sets it down and walks away again.\",c001 8.10 15.40;c004 5.30 11.30;c002 8.10 15.40;c000 3.60 16.10;c002 0.60 6.80;c155 21.20 28.10;c033 5.60 15.20;c034 10.40 16.20;c037 8.10 12.30;c033 8.60 12.90;c035 4.80 9.10,33.04\r\nDUZDL,BPXZ,Bedroom,6,7,Yes,\"After awakening, the person gets up and then opens closet door.  Person walks through the closet doorway and begins to pick the wardrobe for the day.  Person walks out of the closet and starts closing the closet door.\",bed;blanket;closet;clothes;door;shoe;wardrobe,\"A person stretches, throws off their blanket and climbs out of bed. The person walks over to a wardrobe, opens the doors and picks out some clothes. The person walks over and places them on the bed. The person returns to the wardrobe, picks out some shoes and places them on the floor next to the bed.;The person awoke from bed and went to their wardrobe to pick some clothes. The person laid various clothes on the bed;Person awakes stretch and get out of the bed go over to the closet pick out something to wear.\",c113 6.50 12.90;c146 2.60 8.40;c133 0.00 7.00;c004 13.30 41.00;c003 12.90 40.30;c135 1.60 7.80;c008 6.50 11.90;c056 29.00 40.30;c072 0.00 6.40;c054 31.20 40.10;c152 37.10 41.00;c141 6.90 13.30;c154 3.60 8.40;c000 12.90 30.60;c001 23.40 30.60;c074 1.40 6.40;c053 32.30 36.90;c134 0.00 5.20;c002 7.30 26.00,39.67\r\n6H78U,ZDKC,Living room,7,7,Yes,A person is standing grasping their phone then begins to tidy up the sofa and begins to sneeze.,blanket;clothes;phone;sofa;towel,\"A person plays with a phone,  folds up some clothes, and sneezes.;A person is looking at their phone, and then folds some laundry on the couch and then sneezes.;A person is tidying up their couch and folding clothes, then they sneeze\",c015 0.00 12.90;c000 11.80 18.70;c001 14.70 19.60;c004 11.10 19.60;c004 15.60 22.70;c075 11.50 32.20;c071 11.50 19.60;c071 16.60 24.60;c037 11.60 32.40;c153 29.20 35.00;c002 11.10 16.00;c003 13.50 29.10;c017 8.50 13.90;c016 0.00 12.70;c035 20.40 25.60;c034 24.10 28.60,34.46\r\nGL2JW,GFWE,Kitchen,6,7,Yes,A person is drinking water by a stove.  Then a person is closing a cabinet.,cabinet;cup/glass/bottle;dish;door;water,\"A person takes a sip of some water while standing around. The person closes a cupboard door and then walks away.;A person stands while taking several drinks from a glass, closes a cupboard door and walks out of the room.\",c106 0.00 17.60;c112 14.10 22.30;c118 0.00 24.90;c110 0.00 31.00;c113 15.00 22.20;c107 0.00 24.50;c006 14.90 21.90,30.33\r\nGM3UK,CP6Y,Recreation room / Man cave,7,7,Yes,A person is tidying a cabinet and then laughing into a camera in the recreation room / man cave.,bed;book;camera;desk;phone;picture;shelf;table;towel,\"A person is tidying a table. A person is putting a camera on a shelf.;A person is standing cleaning up items on a table. The person picks up a camera, looks into it, and then sets it on a shelf.;A person organizes a table by putting things away and wiping of the table with an orange cloth of some kind.\",c015 12.70 23.10;c009 1.60 6.90;c012 0.00 16.30;c087 13.20 22.60;c034 3.00 8.20;c028 9.10 16.20;c116 12.00 24.00;c018 12.00 21.10;c037 0.00 9.90;c081 18.40 24.00;c082 17.30 24.00;c017 13.40 23.90;c038 0.00 13.20;c013 1.40 6.40,23.04\r\nWISO0,EDYS,Living room,5,7,No,\"As the person was sneezing, the person started playing with a shelf that sat under the window and knocked the bag that was in the person's hand to the floor.\",bag;chair;door;floor;hand;picture;shelf;sofa/couch;window,A person sits on the couch then fixes a picture on the shelf and grabs a bag;A person sits down on a couch and then stands up and picks up a backpack and then sits down on the couch again.,c020 11.00 22.80;c024 17.10 22.80;c126 17.10 22.80;c151 0.00 7.20;c023 2.60 15.50;c088 8.00 16.60;c153 1.90 8.60;c082 5.10 16.80;c006 12.40 19.30;c008 11.90 19.60;c154 3.30 7.50;c059 15.10 19.50;c123 0.00 37.00;c022 17.80 24.60,35.58\r\nYN3AA,ZDKC,Bedroom,3,4,Yes,A person runs into their bedroom grasping a plate of food. They turn on the light and sit on their bed.,bed;bowl;chair;closet/cabinet;couch;dish;door;food;light;plate;sandwich;television;tv,\"a person brings a bowl to the couch and eats a sandwich while watching tv;a person walking into a room, sits on a bed with a roll of toilet paper, and eats a sandwich while looking into the distance.;A person talks into a room and sits on a bed and eats a sandwich.\",c135 6.60 31.00;c156 12.10 27.00;c065 12.10 27.00;c104 9.50 13.50;c118 9.60 16.10;c132 14.10 19.50;c008 0.00 5.80;c120 0.60 31.00;c067 8.90 31.00;c059 6.60 31.00;c151 5.50 10.40;c068 20.80 31.00;c069 8.90 15.90;c113 2.10 7.10;c150 0.00 4.80;c123 6.10 11.50;c097 4.00 9.80;c063 2.00 9.40;c062 2.00 9.40;c061 8.70 31.00,30.50\r\nYSE1G,JQ7D,Living room,5,6,Yes,\"A person walked through a doorway into the living room with a towel draped around their neck, and closed the door. The person stretched and threw the towel on the floor.\",clothes;door;floor;towel,\"A person enters through the front door and stretches their arms up, then down, then grabs their toes before undressing.;A person walks into a room with a towel around the neck, does some arm stretches and then tosses the towel, a dog is in the room too.\",c034 23.40 30.00;c036 23.10 30.00;c008 0.00 4.70;c097 0.00 5.60;c033 0.00 28.70;c035 0.00 9.00;c006 0.60 8.90;c126 23.40 30.00;c000 23.50 28.80;c154 22.50 30.00;c141 0.00 5.20;c003 23.90 28.80;c001 23.90 28.80,28.62\r\nRS6EK,GFWE,Bedroom,5,7,Yes,A person is playing on the bed and laughing at the doorway.,bed;phone;sofa/couch,A person is sitting on a bed with a phone.;A person sits down on a bed and looks at their phone.  This person smiles and looks at the phone.;The person sits on the chairs and appears to play a game and have a conversation with a person off-screen.,c135 2.00 31.00;c149 6.50 15.70;c015 0.10 31.00;c016 0.60 31.00;c123 1.80 31.00;c018 0.00 7.50;c151 0.00 5.50;c152 1.80 31.00,30.42\r\nMAUMO,GFWE,Living room,7,3,Yes,A person is seen sitting on the sofa drinking from a glass. They are watching Television and laughing while they drink.,chair;couch;cup;dish;glass;sofa;table;television;tv,\"A person sits down on a sofa and takes a drink from a glass. The person places the glass on a coffee table and begins to watch television while smiling and laughing. The person then stands up and walks across the room.;A person sits on a couch, picks up a beverage, drinking from it and rocks back and forth as the person watches tv before getting up and leaving the room.;A person is going from standing to sitting. The person is then drinking some water. The person is then laughing and watching television.\",c109 4.90 11.80;c151 0.00 3.00;c154 26.20 32.00;c106 0.00 9.60;c152 7.10 15.30;c107 0.00 11.10;c123 0.00 30.70;c149 7.40 29.80;c009 5.30 11.30;c132 0.00 19.20;c059 0.50 31.20;c110 0.00 9.60;c118 0.00 11.30;c011 0.00 34.90;c131 8.10 29.80,33.71\r\n5EEXF,JTAS,Bedroom,5,7,Yes,A person is seen taking a blanket out of a cabinet. They then open their closet put the blanket inside it,blanket;cabinet;clothes;door;shelf;towel,\"A person opens a cabinet, takes out a blanket, folds it, opens a closet door, and places the blanket into the closet.;A person is walking and then is opening a cabinet. The person takes a towel from the cabinet and folds it. The person opens a closet door and puts the towel away. Lastly, the person walks out of the room.\",c112 5.90 11.70;c113 1.00 7.00;c070 3.20 22.40;c071 16.90 23.40;c001 16.80 26.30;c004 8.20 17.60;c006 21.60 31.00;c034 16.90 23.80;c035 2.40 8.70;c037 7.40 16.10;c033 4.20 23.30;c141 13.60 18.10;c073 2.20 7.70;c151 30.00 34.00;c074 18.10 23.60;c075 6.50 17.40;c081 17.40 23.40;c008 14.60 21.60,33.46\r\nL3ZRP,M7K8,Living room,6,7,Yes,A person opens their laptop and begins watching a video. The person eats some piece of food.,chair;food;laptop;sofa/couch;video,A person is sitting on the couch and using their laptop. They are eating a snack while they are doing this.;A woman is sitting on a couch holding her laptop. She begins to eat something as she is working on her laptop.,c047 0.60 32.00;c062 5.20 14.90;c156 5.00 15.80;c063 3.70 10.10;c051 3.70 27.60;c123 0.00 29.90;c059 0.00 32.00;c049 1.40 8.00;c052 3.50 27.60;c061 4.00 10.60;c050 0.00 5.80,30.58\r\nVW4UD,CP6Y,Kitchen,7,7,Yes,\"Person A is eating at a table in the kitchen.  Person A stands up, throws a towel over person A's shoulder and puts the dishes into the sink.\",chair;dish;food;hands;shelf;sink;table;towel,\"A person is sitting in the kitchen eating then puts their dishes in the sink;The person is sitting in a chair, eating then picks up the plate and cloth to clean up.\",c118 0.00 13.60;c119 9.30 13.90;c081 20.40 28.00;c139 21.40 28.00;c154 14.70 19.40;c062 7.80 14.30;c120 16.50 28.00;c059 0.00 19.80;c063 16.30 28.00;c121 21.30 28.00;c011 0.00 18.80;c033 0.00 28.00;c156 0.00 13.40;c009 9.20 13.60;c061 0.00 12.60;c034 14.70 20.20,26.88\r\nVCYH8,ZDKC,Kitchen,3,7,Yes,\"A person fixes some coffee, then turns off the light as they're leaving.\",coffee;cup/glass/bottle;dish;doorway;light,\"A person starts a coffee maker then walks across the kitchen and opens a cabinet.;The person is making coffee in the coffee pot, walks to the other side of the room and turns off a light before leaving the room.\",c105 18.20 23.80;c107 0.00 6.40;c119 3.10 7.20;c097 23.90 28.00,27.38\r\nCUSTU,GE1M,Stairs,6,7,Yes,\"One person works with a broom, then laughs and opens a laptop.\",broom;floor;laptop;stairs,\"A person is standing and holding a broom. The person is walking and tidying up the stairs. The person puts the broom down, sits, and opens a laptop.;A person is sweeping the stairs, then brushes dust off the broom and sweeps more before sitting down and opening a laptop.\",c048 29.40 35.00;c051 31.30 35.00;c098 0.00 29.40;c151 27.00 32.90;c050 26.80 33.40;c052 30.40 35.00;c102 0.00 26.50;c127 0.00 11.40;c047 27.50 35.00;c125 28.20 35.00;c099 24.40 30.30,34.17\r\nC10FA,I48P,Kitchen,4,7,Yes,\"One person pours something from the refrigerator, then grasps some homework from a shelf.\",book;box;chair;cup;dish;door;food;glass;groceries;homework;milk;paper;refrigerator;shelf;table,A person holding a glass opens the refrigerator and takes some milk off a shelf. They pour it into the glass and then retrieve some homework from a table.;Person opens the refrigerator door take some milk out of the refrigerator and pour it into a glass;A person is holding a glass. The person then opens a fridge and pours some milk into the glass. The person shuts the fridge and walks over to a table and picks up a book. The person walks out of the room with a book and glass.,c081 5.70 19.80;c143 9.00 21.90;c117 12.40 19.50;c108 16.40 32.20;c143 13.60 37.90;c030 9.00 23.00;c142 17.90 23.90;c115 27.80 37.10;c107 0.00 38.00;c120 0.00 38.00;c118 0.00 38.00;c109 21.20 26.50;c130 16.60 21.90;c110 28.50 33.30;c008 0.00 4.90;c043 26.50 32.40;c006 18.80 24.10;c026 27.60 37.50;c063 4.60 12.10,36.75\r\n9SJZ9,GFWE,Hallway,6,6,Yes,A person is lying with a blanket on top of them and holding a phone.,bed;blanket;floor;phone,A person sits down with a blanket on them and looks at a phone.  This person nods repeatedly at their phone.;A person lies down while looking at their phone. The person moves their head up and down while on the phone.,c016 0.00 31.00;c072 0.00 31.00;c134 0.00 31.00;c124 0.00 31.00;c125 0.00 31.00;c015 0.00 31.00,30.33\r\nRNLTR,CP6Y,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,\"A person is undressing and throwing their clothes on the sofa. Then, sitting on the edge of the bed, the person removes their socks.\",bed;clothes;shoe;socks;sofa,A person takes off their sweatshirt and throws it on the couch.  Then this person sits down and takes their socks off.;A person takes their sweatshirt off and puts it on a couch. The person then takes their socks off and puts them down.,c135 11.80 24.00;c123 11.70 24.00;c155 0.00 24.00;c151 10.60 15.80;c001 0.00 13.40;c057 11.60 16.40;c003 7.30 13.50;c054 11.60 16.40,23.50\r\nSBI6Z,BPXZ,Recreation room / Man cave,6,7,Yes,\"A person is sitting at a desk, playing video games on a nearby television. The person pauses and pours a drink into a glass.\",chair;cup;desk;game;glass;table;video,\"Person sitting in a chair playing a video game pour water in a glass and drink.;A person plays some video games while sitting down. The person pours herself some water, takes a drink, and continues to play.\",c106 11.80 20.60;c110 7.00 12.40;c011 0.00 28.00;c009 6.50 11.00;c059 0.00 28.00;c108 8.50 14.60;c107 8.10 21.40;c109 9.90 15.50,26.96\r\nCDULZ,SW82,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person in the entryway of a house is drinking a glass of coffee. They begin walking away from the entryway while holding a bag of groceries.,bag;cup;dish;doorway;food;glass;groceries,\"A person is standing in front of a door drinking a beverage, than they pick up a bag of groceries and big it into the kitchen.;A person takes a sip from a glass multiple times, then picks up a bag and walks into a kitchen and places the bag down.\",c020 20.60 31.00;c106 0.00 31.00;c061 15.20 28.90;c097 20.30 28.60;c023 15.80 29.20;c118 0.00 31.00;c022 15.90 29.50;c107 0.00 31.00;c130 20.50 31.00,30.33\r\n1FX8Q,BONA,Home Office / Study (A room in a house used for work),7,6,Yes,\"One person opens a bag, throws in a phone, then closes the bag and stands in the doorway for a moment.\",bag;doorway;floor;phone,\"A person sitting down on the floor throws something in a small purse, then zips up the purse and stands up to walk away.;A person sitting on the floor is playing with a purse and then the person stands up and proceeds to leave the room.\",c021 0.00 5.90;c097 22.80 29.00;c154 19.70 25.70;c125 0.00 25.10;c152 7.20 15.10;c127 0.00 23.10;c016 2.50 7.90;c022 1.70 6.40;c020 0.00 6.40;c126 3.20 8.10;c024 17.30 22.70;c017 2.80 7.80;c015 2.40 7.10;c023 17.30 23.00,28.12\r\nGF6IX,P2J3,Bathroom,6,6,Yes,\"A person is standing in the bathroom holding a bottle of medicine.  The person looks out the window and sneezes, then puts the medicine in a bag and leaves.\",bag;cup/glass/bottle;doorway;medicine;shelf;sink,\"A person is walking into a bathroom and putting medicine in a bag then standing next to the doorway.;A man walks into a very small utility room. After looking around, the man then walks back out of the utility room.;A person enters a bathroom and sneezes while looking into the mirror, and then picks up a small bottle and puts it into a bag they have over their shoulder, and they then leave the bathroom.\",c020 0.00 34.00;c128 8.20 17.50;c110 6.80 21.30;c153 2.20 7.00;c097 0.80 6.70;c021 10.50 17.00;c129 6.70 17.70;c154 0.00 34.00,33.29\r\n3SKWW,JTAS,Bedroom,7,7,Yes,\"A person sits in the basement, folding a bag of towels. The person sniffs a towel, then sneezes violently.\",bag;blanket;clothes;floor;towel,\"A person folds towels.  This person sneezes into one of the towels, and then continues with folding it.;A person folds a pink blanket up and puts it on the ground, then smells a white towel and sneezes multiple times before folding it.\",c037 0.00 37.00;c153 18.00 29.70;c073 0.00 4.70;c075 0.00 13.30;c071 8.10 13.50;c002 0.00 4.50;c033 0.00 13.50;c125 0.00 37.00;c000 0.00 37.00;c035 0.00 20.90;c034 3.20 14.80;c004 0.00 37.00,35.92\r\nYF6FL,I48P,Garage,7,7,Yes,A person is working in the garage. They take some tools and put them on a shelf. They sneeze loudly which makes them laugh. They walk out the door and leave.,box;door;objects;shelf;sneeze,\"A person is taking things from a box and setting them on a shelf, then sneezes and leaves.;A person is organizing the shelf then sneezes then leaves.;A person packs items into a box from shelves, removes one item from the box and places it on a shelf, sneezes and walks out of the room.\",,30.17\r\nHDHGT,SW82,Pantry,7,7,Yes,The person is opening a box of cereal and then sneezing on a shelf in the pantry.,box;closet/cabinet;door;food;shelf,\"This person opened up their pantry and grabbed a box of cereal, before sneezing twice.;The person opens the closet take the cereal down from the shelf, shakes the box, sneezes twice and then opens the box.\",c041 4.20 16.20;c043 3.00 17.60;c153 11.50 19.50;c040 4.40 31.00;c044 0.90 10.20;c154 1.00 31.00;c008 0.00 5.30;c063 3.00 31.00;c141 0.00 4.30;c061 4.70 31.00;c113 0.00 9.30,30.21\r\n4ALLQ,ZDKC,Living room,6,7,Yes,A person is washing a mirror and then fixing a wobbly table in a living room.,mirror;sofa;table;towel,\"A person walks to a mirror and begins wiping it with a towel.  The person then tosses the towel on a couch and adjusts a table.;A person wearing a hat vigorously cleaning a mirror with a red cloth then adjusting a glass table below it.;A person walks over to a mirror with a cloth in hand starts cleaning it, puts cloth down and then moves a table.\",c095 0.00 24.60;c038 0.00 25.70;c013 21.30 37.00;c012 23.10 37.00;c034 21.10 26.90;c093 0.00 23.50;c036 21.10 27.30;c033 0.00 25.80,36.25\r\nGFJ98,ZDKC,Bathroom,3,6,No,A person is putting a picture on a wall and then standing under the doorway of a bathroom.,box;doorway;picture;shelf;wall,\"The person looked at a picture in the bathroom for a moment, then placed the picture on a towel rack. The person then stood in the bathroom doorway.;A person walks into a bathroom and places a small picture on top of the towel rack bar. Then the person turns around and stands in the doorway, leaning on the doorframe.\",c097 0.00 9.40;c084 0.00 17.80;c086 9.40 17.40;c040 0.00 11.70;c042 2.60 11.80;c081 4.30 11.70;c088 0.00 13.90,31.58\r\nJR6VG,4TV7,Living room,6,6,Yes,\"A person is sitting on a chair by a window, smiling, as the door opens and another person runs into the room.\",chair;door,The person is sitting while another person comes in the room and walks through the room quickly. The seated person looks up at the person walking.;Someone is out of frame. The door opens and a person goes running by.,c006 11.10 16.00;c008 8.00 15.10;c059 0.00 23.00;c150 12.00 17.90;c141 9.90 16.00;c097 11.10 16.20,22.38\r\n10M0F,P2J3,Basement (A room below the ground floor),4,7,No,A person throwing a book while sneezing into a camera.,book;floor,A personis standing by a window looking through a magazine they through the magazine down then they yell into the camera.;he is flipping through pages in a book and then took the book and threw it. then he talked to the camera.,c026 0.00 23.10;c028 19.00 23.80;c032 0.00 22.80;c153 21.60 32.00;c025 19.00 24.40;c126 19.80 24.80;c145 0.00 26.10;c027 1.10 10.50;c115 0.00 23.30;c116 19.80 24.80;c031 19.30 24.80,32.46\r\nHFMUK,EDYS,Pantry,3,2,Yes,A person is fixing a doorknob and then throwing food into a trashbag in a dining room.,shelf,\"Person walking around in a room adjusting a item with a screw driver than leaves the room.;A person in a dimly lit room walks to a door, unlocks it and then stands in front of the door shuffling their feet momentarily.\",,33.62\r\nZHRPD,4UGC,Closet / Walk-in closet / Spear closet,4,7,Yes,\"A person sits in the closet, folding a towel. The person puts the towel onto the shelf. then begins playing with their phone.\",blanket;chair;closet/cabinet;clothes;phone;shelf;towel,\"Person sitting, grabs towel, folds it, puts away. Then grabs phone, opens it, push buttons on it.;This person sits in a closet and folds towels.  This person gets their phone, opens it, and looks at it.;A person sitting inside a closet on a chair folds up a pink towel and puts it away. The person takes a phone and opens it and starts typing.\",c033 0.20 16.40;c035 0.00 4.70;c081 11.80 19.60;c016 15.90 31.00;c034 11.10 17.30;c015 20.50 31.00;c059 0.00 31.00;c018 15.60 21.60;c075 1.10 10.80;c037 0.10 16.60;c018 15.70 31.00;c114 0.00 19.40;c000 0.00 18.40;c001 10.80 17.50;c004 0.70 14.90,29.71\r\nVNQTH,ENHU,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is putting clothes on the shelf. The person reads their phone and starts laughing.,blanket;book;closet/cabinet;clothes;doorway;phone;shelf,\"A person puts clothes into their closet on a shelf and then takes out their cell phone.;A person takes a pile of clothing into a walk-in close and puts it on a shelf, and they then look at an object they are holding, which might be a cell phone.\",c081 1.60 6.60;c016 6.10 11.00;c001 1.40 6.70;c149 7.40 11.00;c087 6.40 11.00;c029 7.20 11.00;c114 2.70 9.20;c071 0.00 9.40;c152 7.20 11.00;c097 0.00 4.60;c070 0.00 7.80;c018 6.00 10.30;c015 6.20 11.00;c000 0.00 7.70,10.42\r\nBQA97,GFWE,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is sitting in a chair while smiling, they then open a laptop and start working on it.\",chair;laptop,A young woman relaxing right in front of the closet of a very colorful room appears to be amusing herself on a blue laptop.;A person sits in a chair in their closet with a laptop in their lap. The person sits cross legged while doing so.,c048 0.40 7.20;c059 0.00 31.00;c152 0.00 9.30;c052 0.00 31.00;c149 0.00 9.30;c047 0.00 31.00;c051 2.50 31.00,30.25\r\nMK16R,M7K8,Kitchen,5,6,Yes,A person is smiling and putting groceries away. Another person is holding a box and watches the first person.,bag;box;closet/cabinet;dish;door;food;groceries;shelf,\"A person opens a cabinet in a kitchen and starts grabbing things from a basket one at a time. The person puts the things from the basket in the cabinet, and closes the cabinet.;A person places some dishes into a shelf while another people stands and watches while holding a book.\",c020 0.00 33.00;c130 0.40 9.80;c040 0.00 33.00;c152 10.70 17.10;c062 2.90 9.80;c081 0.40 9.60;c008 2.40 8.30;c061 0.00 33.00;c063 0.20 5.30;c063 7.40 11.80;c063 14.50 19.80;c113 2.60 31.50;c120 0.00 33.00;c119 0.00 33.00;c081 0.00 33.00,31.67\r\nY79PC,JTAS,Living room,6,5,Yes,\"A laughing person is in their living room looking out the window. They undress, turn off the light and leave.\",clothes;light;sweatshirt;window,\"The person stood looking out of a window Then the person undressed out of their jacket, throwing it on a sofa. They unplugged a lamp from the wall and walked away.;Person is standing facing window with arms at hips. Then the person turns around, take the sweater off and walks away.\",c105 19.20 25.50;c092 0.30 16.00;c155 12.00 21.30;c003 16.90 22.60,28.75\r\nE9UYZ,GFWE,Living room,4,7,Yes,A person is standing in the living room holding a blanket and a bottle of medicine.  The person sneezes and puts the medicine down in the table.,blanket;dish;floor;glass;medicine;table;towel,\"A person is holding a book and a blanket, they sneeze and set the book down;A person holds her blanket and walks into the room while holding her phone. She puts the phone down but keeps standing holding the blanket.\",c009 7.20 13.80;c070 0.00 33.00;c107 0.00 12.40;c119 0.00 12.40;c036 28.00 33.00;c033 0.00 32.60;c153 6.00 11.20;c126 27.50 32.80,31.83\r\nYK49T,GFWE,Pantry,7,7,Yes,\"A person can undress while placing a camera in the pantry, A person can throw their medicine into the pantry.\",bottle;camera;clothes;door;floor;food;jacket;medicine;phone;shelf;shirt,A person is taking off a jacket. A person then looks through a door.;A person is walking backwards taking off their jacket then they grab a phone and walk over to a door and close it they pick up a bottle and take it over to the door then they stand swaying back and forth.;A person walks backwards and removes an article of clothing. The person grabs something and places it into the door opening. The person then stands around nervously.,c017 0.00 9.30;c155 0.00 13.60;c063 9.20 18.60;c002 0.40 13.60;c003 4.90 13.50;c061 9.30 18.40;c110 7.30 17.00;c062 7.60 17.60;c015 0.00 9.30;c001 8.00 14.40;c018 0.00 4.20;c006 5.50 10.00;c154 4.70 9.70;c128 10.40 18.60;c141 5.50 10.30;c148 0.00 14.00,31.83\r\nS5KQ1,EDYS,Other,4,7,Yes,A person closes a box then throws a broom down.,box;broom;floor;phone/camera,\"A person opens a box, picks up a broom, puts down the box then puts down the broom.;A person adjusts the camera, picks up a straw broom and a blue box, walks around a little, puts the items down, adjusts the camera again and walks away.\",c098 6.80 24.70;c100 2.40 11.50;c041 3.00 8.20;c099 0.00 19.20;c127 0.00 16.20;c101 11.70 17.10;c040 2.10 16.20;c039 8.40 13.80;c015 0.00 5.00;c042 11.30 16.70,30.17\r\nWXXYY,4UGC,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person comes through the doorway with a phone in their hand. The person then sits on the floor and start fixing the doorknob.,door;floor;lock;phone;table,\"A person enters a room. A person then begins playing with their phone. A person then begins fixing a lock.;A person walks in and closes the door, plays on his phone, and fixes the doorknob;A man walks into the house, shutting both doors, then begins to play on his phone before sitting down and reaching for the door knob.\",c015 3.10 19.80;c017 15.80 20.70;c125 28.00 36.00;c007 28.40 36.00;c009 16.00 20.90;c016 7.00 19.30;c140 26.40 36.00;c151 25.90 33.10;c006 4.40 11.40;c008 0.00 8.90;c097 0.00 9.20;c141 25.50 32.50,35.25\r\nLSCMZ,ENHU,Kitchen,5,7,Yes,\"A person walks into the kitchen, holding a pair of shoes. The person gets a paper towel and begins cleaning off the shoes.\",clothes;phone/camera;shelf;shoe;towel,A person is carrying their shoes into the kitchen they put their shoes on the counter and pick up a paper towel and start wiping down their shoes.;A person brings their shoes into the kitchen. The person then grabs a towel and cleans the shoes. The person takes a phone from somewhere.,c033 6.60 17.50;c053 0.00 7.60;c054 2.50 7.90;c081 2.30 7.70;c004 9.50 19.00;c018 13.70 19.00;c015 15.50 19.00,18.46\r\nPZJMP,4TV7,Bathroom,6,6,Yes,\"In the bathroom, a person is running the sink while they brush their teeth.  Another person is holding a glass of water.\",sink;toilet,\"A person is sitting in the bathroom. A second person walks into the bathroom, rinses a toothbrush off and puts it away. The person walks out of the bathroom.;A person goes into the bathroom and picks up a toothbrush.  This person rinses the toothbrush and puts it down.;A person washes her toothbrush in the sink while a person sits on the toilet.\",,29.58\r\nK7Z6T,JTAS,Bedroom,7,7,Yes,\"One person opens a bag, find shoes by the doorway and puts them inside, then closes the bag.\",bag;clothes;floor;shoe,A person picks up a bag and some boots. The person puts the boots inside the bag and ties the bag up. The person leaves it on the floor.;A person opens a plastic bag then begins to put several shoes in it. They then tie up the bag and set it aside.,c053 5.60 15.60;c020 0.00 26.50;c127 13.20 20.60;c020 0.00 8.80;c127 5.20 28.00;c021 0.00 8.70;c054 5.20 20.10;c001 5.20 20.10,26.58\r\n08LOY,4TV7,Stairs,6,6,Yes,\"A person sits on the stairs, holding their homework. They doze off into a nap, then quickly awaken when another person shines a bright light at them.\",book;floor;light,\"A person is at the top of the stairs fixing the stair rail. They then fix the light switch. Another person runs up the stairs, then down, and stops to pick up a book.;A person looks at the hand rail of some stairs, while another walks up the stairs past them, and then back down the stairs.\",c103 5.70 21.90;c150 0.00 8.30;c030 12.20 18.20;c154 0.00 29.00;c127 11.80 19.10,28.04\r\nKV6V8,4TV7,Stairs,6,6,Yes,A person is closing a window on the stairs.  Another person is standing with a laptop in their hand.,hand;laptop;window,\"A person is on their laptop and another person comes in the room and pulls the shades closed. They talk for a minute and one of them walks away. The girl closes her laptop.;A person holding a laptop is approached by another person who adjusts the window blinds above them, the first individual then shuts the laptop and begins following the second, who is now walking away.;Person standing in a hallway with a laptop another person comes in the hallway.\",c052 0.00 14.20;c154 0.00 37.00;c051 0.00 12.50;c149 22.70 28.90;c152 22.70 28.90;c048 14.90 22.00;c046 7.30 14.00;c047 0.00 37.00,36.25\r\nREMG0,LXD5,Bathroom,5,6,Yes,\"A person fixes their hair in the mirror, then accidentally pours water on clothes that are in the sink.\",clothes;glass;hair;hat;mirror;shelf;sink;towel,\"A person takes off their hat will looking in the mirror. They then move a towel around in the sink.;Person looks in a mirror and runs their hands through their hair.  The person then reaches over and grabs a glass from beside the sink and appears to pour the contents into the sink.  The glass is returned to its original resting place. The person then takes a towel that is in the sink and shakes it slightly.;The person looks in the mirror, takes off a hat then tousles the hair on the head.\",c144 0.00 17.00;c096 0.00 3.90;c004 21.50 29.10;c082 13.30 30.00;c109 17.20 24.60;c037 21.60 30.00;c038 17.50 29.70,28.79\r\n6IOV0,I48P,Garage,5,7,Yes,\"A person is sitting in their car in the garage, playing a casual game on their laptop while drinking a bottle of soda. They open their glove compartment for a napkin when they notice a picture they pull out and start to look at intently.\",chair;game;glass;laptop;picture,A person is drinking soda in a car while working on a laptop and then grabs a piece of paper to read.;A person sitting in a car drinking a beer out of a bottle reading a paper inside a car.,c059 0.00 31.00;c047 0.00 31.00;c088 22.30 31.00;c083 19.10 31.00;c107 2.00 20.60;c106 9.50 16.40;c052 0.00 13.10;c084 20.90 31.00;c051 0.00 13.60,30.50\r\nHA8S9,AT5D,Recreation room / Man cave,4,5,No,One person throws a pair of shoes under a desk as another stands watching with a broom.,bed;broom;desk;shoe,\"A person holds a giant broom. Another person comes in and throws their shoes under a desk, and then sits on a bed.;A person is holding a broom while standing in a room. Another person walks in to the room and sits on the bed and talks to the first person.\",c098 0.00 32.00;c054 9.00 14.60;c151 13.10 18.30;c053 7.60 12.90;c135 13.10 32.00;c058 8.20 14.90,31.00\r\nSJ51G,ZDKC,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person is seen snuggling up to a blanket. They then open their closet door and put the blanket away, then close the door.\",blanket;closet/cabinet;door;towel,A person hugged a blanket and put it in the closet;A person is snuggling with a blanket. A person opens a door and puts the blanket into a closet. The person then closes the closet.,c008 9.90 18.90;c070 0.00 21.80;c072 0.00 13.00;c074 13.80 21.70;c075 5.90 13.20;c033 0.00 21.80;c141 9.30 13.90;c036 14.30 21.40;c113 9.60 17.60;c075 6.40 21.80;c071 16.00 21.70;c112 19.10 29.30;c006 19.10 29.30,30.79\r\n5RWZF,I48P,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person standing in the entryway grasps a book and broom.,book;broom;doorway,\"A person walked into room carrying a book and a broom. The person stood for a few seconds, then walked toward the camera.;A person enters a hallway area while holding a broom and a book and slowly walks down the hallway while holding these two items.\",c026 0.00 27.00;c098 0.00 27.00;c115 0.00 27.00;c097 0.00 4.30;c116 0.00 27.00,25.67\r\nF75LG,BONA,Stairs,7,7,Yes,\"A person is undressing by the stairs by taking off their jacket. They start drinking from a glass of water, and then pick up a towel and look into the mirror.\",clothes;cup;glass;hair;mirror;towel;water,This person took off their sweatshirt while standing on the stairs before drinking a can of soda.;A person takes off their sweatshirt while standing on the stairs. The person puts the sweatshirt on the rails and takes a drink and looks at a mirror.,c035 22.30 33.00;c106 17.10 26.30;c155 0.00 17.10;c144 23.70 29.00;c003 7.50 21.90;c002 2.00 12.60;c096 23.70 33.00;c107 17.80 25.60;c000 9.60 18.70;c033 24.70 33.00;c110 16.80 22.70;c001 10.90 19.50;c109 21.10 28.80,32.08\r\nN56QO,ENHU,Kitchen,5,7,Yes,A person is playing on their laptop then grasps a glass of iced coffee after taking a sip.,coffee;cup;dish;glass;laptop;table,A person is standing at a kitchen counter working on their laptop drinking a cup of coffee.;A person wearing blue jeans and a red checkered shirt stands in a kitchen with wooden cupboards. The individual takes a drink from a coffee cup and then uses their laptop.,c106 2.10 7.30;c107 5.90 11.00;c110 0.80 5.60;c052 0.00 4.60;c014 0.00 11.00;c118 1.30 11.00;c051 0.00 11.00,9.54\r\nA7WU3,M7K8,Living room,6,7,Yes,\"A person is seen tidying a doorway and holding a broom. The person sweeps for a while, leans the broom against a wall and then leaves.\",broom;door frame;doorway;floor,The person took a few step backwards from the camera and stood in the doorway and proceeded to sweep in one spot moving the broom from one hand to the other and then leaned the broom up against the door frame and walked away.;A person sweeps the floor in their dining room area before setting a broom against the wall.;A person is sweeping the floor. When the person is done they prop the broom against the wall.,c098 0.00 21.00;c099 17.50 23.80;c102 0.00 4.30;c127 23.60 32.00,30.92\r\nMZZ8Q,B6UG,Bedroom,4,6,Yes,\"One person puts a picture on top of a wardrobe, then throws a pair of shoes toward a sofa before walking out of the room.\",book;chair;clothes;floor;shelf;shoe,\"A person puts something on a shelf, takes off their shoes and puts them on a chair. The person then walks out of the room.;The person places something on a shelf and then takes off his shoes and places them on a chair.;A person is standing a looking at a book. The person places the book on a shelf. The person then takes off their shoes and walks out of the room.\",c054 11.00 16.40;c081 0.00 5.00;c056 10.60 15.20;c057 3.80 10.90;c028 0.00 2.60;c026 0.00 4.70;c001 8.30 17.00;c058 9.70 16.70;c127 11.00 16.90;c053 10.90 16.30,30.25\r\n0PU21,M7K8,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person is standing in the entryway holding a cup of coffee.  The person puts the coffee on the desk and fixes a crooked picture on the wall.,coffee;cup;desk;dish;glass;picture;table;wall,A person takes a cup and drinks from it. The person puts the cup down and adjusts a picture frame on the wall.;A person walks to stand by the door then the person begins to drink from a mug. The person puts the mug down then looks that their reflection in a mirror.,c009 11.00 18.10;c106 0.60 14.50;c107 0.00 17.60;c119 13.30 17.50;c118 0.00 17.50;c084 16.70 20.90;c109 13.60 17.80,30.83\r\nTE4PT,ZDKC,Bathroom,4,7,Yes,\"A person is near a closet tidying up with a broom, they then smile as they pick up a blanket from the floor.\",blanket;broom;doorway;floor;towel,A person is using a broom to sweep the bathroom floor they pick up a blanket and start to fold the blanket.;A person sweeps the bathroom floor for a few moments before reaching down to pick up and begin folding a blanket.,c070 18.00 31.00;c127 0.00 21.00;c098 0.00 21.00;c037 18.10 31.00;c035 18.80 23.30;c075 19.10 31.00;c033 19.40 31.00;c102 0.00 21.00;c099 17.30 21.80;c073 19.50 24.00;c097 17.80 21.90,29.54\r\n6IL0C,CO87,Home Office / Study (A room in a house used for work),6,6,Yes,\"One person tidies up the office, putting books and shoes away, then using a vacuum.\",book;floor;shelf;shoe;table;vacuum,\"A woman is stacking books from a crate onto her desk, then crouching on the floor to tidy her shoes and other items before running the vacuum cleaner.;A person puts some books onto a desk. The person then picks up some shoes and puts them away on a kind of rack. The person then vacuums a little.\",c137 32.40 40.00;c028 0.00 16.50;c054 16.60 26.80;c081 16.00 22.50;c026 0.00 16.30;c056 14.20 21.00;c081 2.90 8.70;c012 5.40 16.30;c151 12.70 18.80;c154 21.70 27.20;c138 31.30 37.20;c127 14.60 25.10;c030 0.00 6.90,39.08\r\n6UU5T,ENHU,Bedroom,4,3,Yes,A person is laughing while lying in bed as the person is snuggling a pillow.,bed;pillow;television,\"A person is lying on a bed reading.;A person lays in bed on their stomach, leaning on a pillow, and watches some tv.;The person is laying on the stomach in bed with the head at the foot board of the bed watching television.\",c078 0.00 8.00;c134 0.00 8.00;c132 0.00 8.00;c076 0.00 8.00,7.21\r\nWZDXS,V044,Bedroom,7,7,Yes,A person is dressing in their bedroom while watching television. The grab a plate from a pile of dishes and start eating.,clothes;dish;food;jacket;laptop;sandwich;television;tv,a person watches tv while putting on clothes and eats a sandwich;A person puts on a jacket then picks up a plate of food and eats some while watching something on a laptop screen.;A man is standing and dressing. He is watching television and eating a snack as he does so.,c148 0.00 10.30;c118 7.20 37.00;c156 11.90 37.00;c065 11.90 37.00;c132 0.00 37.00;c051 13.50 20.20;c051 19.50 32.30;c000 0.00 6.90;c120 7.90 19.70;c061 10.40 37.00;c063 10.80 15.70;c067 11.20 37.00,36.04\r\n7XMBM,AT5D,Bedroom,5,7,Yes,A person is working on the sink and another person is taking food to the bed.,bed;bowl;dish;doorway;food;sink,A person is cleaning their sink. Another person walks into a room eating some food and sits on a bed;A person cleans a sink. Another person walks into a room while eating from a bowl. The person then lays down on a bed.;On person is cleaning a sink and other person sits on a bed and starts eating.,c134 16.50 22.80;c061 9.50 16.20;c156 9.30 18.30;c118 9.50 23.10;c151 14.20 21.20;c097 8.20 13.60,30.50\r\nAYZS4,4UGC,Dining room,6,7,Yes,\"A person is eating and then tidying up their mess, next wiping a mirror with a towel in a dining room.\",banana;chair;food;mirror;table;towel,\"A person peels a banana and eats it. They set it down on the table, pick up a mirror, tidy up the table, then grab a towel and clean the mirror with it.;A person eats a banana while sitting down at a kitchen tables. The person puts the banana down and takes a mirror from the table, as well as a towel.;The person is sitting at a table peeling and eating a banana, wipes the table off with a hand, then polishes a handheld mirror with a towel.\",c093 19.60 27.80;c033 25.30 35.50;c038 30.50 49.90;c009 21.60 31.30;c012 14.90 26.30;c095 36.20 51.00;c035 29.30 35.00;c156 4.20 17.90;c011 0.00 8.20;c063 0.00 4.50;c096 42.20 48.40;c013 16.90 31.10;c059 0.00 51.00;c061 0.00 22.10;c062 14.90 21.90,49.62\r\nIAEGA,JTAS,Bedroom,5,6,Yes,A person is holding food by the door.  Then a person starts laughing and turns off the light.,dish;door;food;light,A person walks into a doorway. The person then smiles and bows. The person then walks away.;A person looks at the camera and laughs as they stand by the bathroom.,c149 7.10 16.40;c152 8.30 12.50;c154 2.30 6.40;c118 2.90 6.90;c105 16.00 19.00,17.92\r\nN1E7A,CP6Y,Stairs,7,7,Yes,\"A person takes some dishes from a cabinet at the top of the stairs. Holding the dishes, the person walks down the stairs.\",bag;book;box;cabinet;dishes;food;phone;stairs;table,A person is tidying up a table. A person is on the phone as they are walking down the stairs.;A person is taking stuff out of a cabinet and walking down the stairs;A person takes some items out of a cabinet and holds the items as he walks down the stairs with them.,c112 5.60 11.30;c030 9.30 22.00;c026 2.80 22.00;c063 1.10 5.30;c043 7.20 11.40;c040 7.60 11.80;c061 3.30 22.00;c020 3.20 22.00;c113 0.10 11.30,20.75\r\n6IHRD,ZDKC,Kitchen,5,7,Yes,\"A person is snuggling on their soda in their bedroom. They start taking a broom and moving it around the ground, and thne eventually throw it towards a chair.\",broom;can;cup;floor;medicine;table,\"A person is opening a can, then starts sweeping, and walks away.;A person with a headset on puts a can of soda to his mouth then sets it down. The person grabs a broom and spins with it, then he sets it down.;A person smells and puts down a drink can then picks up and moves a broom.\",c107 0.00 5.70;c009 24.00 30.00;c127 25.40 30.70;c098 12.90 18.60;c126 22.50 28.90;c109 7.70 14.20;c102 11.50 31.00;c128 0.00 13.60;c106 0.00 14.20,30.25\r\nFLLUJ,AT5D,Living room,6,7,Yes,\"One person sneezes and closes a window, while another person sits with homework and a phone in hand.\",bed;blinds;book;door;homework;laptop;paper;sofa/couch;window,\"One person is sitting reading a book. Another person looking out the window sneezes, then closes the window.;Two people are in a room. One is sitting and reading a book. The other is standing and looking out of an open door. The standing one sneezes then closes the door.;They are in a room, where one is sitting by window who stared for a while and spit something out and threw out and tried to close the window, while other one is sitting on bed and reading a book,\",c089 12.90 26.80;c092 0.00 27.70;c145 0.00 32.00;c153 11.50 17.20;c032 0.00 32.00;c149 1.70 8.40;c123 0.00 32.00;c006 13.20 32.00;c135 0.00 32.00;c026 0.00 32.00;c115 0.00 32.00;c052 0.00 32.00,30.58\r\nSU26P,M7K8,Kitchen,5,6,Yes,Person is watching coffee machine brew coffee then grabs camera and starts laughing.,camera;coffee;mirror,A person is at the counter in the kitchen making coffee they pick up their phone and watch a funny video on it. then they leave the room.;A person leans on the counter and stares at the coffee maker. The person picks up something from the counter and laughs. The person walks out of the room.,c149 12.50 31.10;c096 0.00 14.70;c152 30.10 33.00;c154 30.10 33.00;c015 30.10 33.00;c016 30.10 33.00,32.08\r\nXHYA2,AT5D,Bedroom,6,7,No,A person is standing in the laundry room holding their shoes in one hand and a cup of coffee in another.  The person throws their shoes down by the door and leaves.,bed;closet/cabinet;cup;dish;door;shoe,\"A person is standing drinking a cup of coffee holding their shoes they put their shoes behind a door and then they sit on the bed.;A person is walking around a white room while drinking from a mug and holding a pair of shoes. The person throws the shoes behind the door then sits down on the bed.;A person is standing up holding their shoes and drinking a cup of coffee, they walk over and put their coffee cup on a dresser and they throw their shoes behind the door and then they sit on the bed\",c008 15.50 20.90;c055 16.70 22.80;c106 0.00 16.90;c151 20.80 30.20;c135 20.90 32.00;c054 16.30 23.40;c109 12.70 18.10;c058 16.10 21.50;c053 0.00 21.20;c141 16.10 22.40;c134 21.20 32.00;c112 18.80 23.10;c119 13.00 18.10;c006 18.60 23.50;c113 16.10 23.20,30.92\r\nDCSYP,CP6Y,Home Office / Study (A room in a house used for work),4,7,Yes,One person sneezes while walking past another person who is leaving with a cup of coffee and a camera.,camera;coffee;doorway;food;glass;phone;sandwich,Persons enter a room while eating.;Two people walk past each other. One person sneezes and the other person is holding some items in their hands.;Two people ignored each other and passed each other in the hallway.,c016 7.70 14.90;c015 6.80 16.00;c061 7.10 16.00;c067 8.40 16.00;c156 7.40 16.00;c097 5.60 11.00;c153 8.10 13.00,15.21\r\nQ6290,CP6Y,Living room,1,1,No,A person in a bedroom grasping dishes in one hand is standing in front of and watching the television eating an apple.,dish;food;hand;sandwich;television,Person standing in a room looking at the television while eating a sandwich out of a dish.;A person is standing eating something as they watch tv.,c156 0.00 8.30;c132 0.00 18.00;c118 0.00 18.00;c065 0.00 18.00;c061 0.00 18.00;c067 0.00 18.00,17.08\r\nE6ZBZ,BONA,Living room,6,4,Yes,A person is sitting in their sofa while observing a picture on their phone. They start sneezing and then start playing with their cabinet.,cabinet;chair;phone;picture;sofa,\"A person is playing on their phone while sitting on the couch;A person is sitting on a couch while looking at a cell phone, and while doing this the person sneezes one time.\",c016 0.00 32.00;c123 0.00 32.00;c152 0.00 3.10;c015 0.00 32.00;c153 10.50 17.10;c059 0.00 32.00,31.17\r\nJ56G6,RQ7Z,Bedroom,4,6,Yes,A person is washing a window. Another person is eating a sandwich.,bed;food;mirror;sandwich;towel;window,\"Two people in the bedroom ,one siting on the bed eating food.The other person bend and clean the window with cloth.;Two people in the bedroom  one sitting on the bed eating food,the second one at window bend down and cleaning the window with a cloth in the hand.\",c065 0.00 38.00;c067 0.00 38.00;c091 0.00 38.00;c156 0.00 38.00;c092 0.00 38.00;c095 0.00 38.00;c135 0.00 38.00;c061 0.00 38.00;c038 0.00 38.00,36.92\r\n4GLAP,ZDKC,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person throws some shoes down while standing in front of the door. They person then turns the doorknob and leaves.,door;floor;paper/notebook;shoe,Person stands by the door lend on the door while looking at a shoes then go out the door.;The person walks over to the door and grabs the handle and compares the house shoe to the flip flop on their foot and then looks at them and then tosses them on the floor and unlocks the door and walks out.,c141 17.80 30.70;c006 24.70 31.00;c008 22.40 28.50;c058 16.10 20.70;c053 0.00 20.40;c097 24.40 31.00;c116 15.70 21.40;c126 16.30 21.20,30.33\r\nYB7MW,BONA,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person in their entryway is lying on the floor drinking milk from a glass and watching television in the next room.,coffee;cup;floor;glass;pillow;television,A person is reclining on the floor with a pillow under their back.  They are watching television and drinking a cup of coffee.;A person is drinking coffee and watching tv in the living room;A person lays on the floor while watching television. The person takes a few drinks from a cup while continuing to watch television.,c106 0.00 33.00;c107 0.00 33.00;c124 0.00 33.00;c132 0.00 33.00;c125 0.00 33.00,31.75\r\nCH41S,EDYS,Laundry room,5,6,Yes,A person is putting a broom in the closet. They then grab a box from the same closet and smile.,broom;closet/cabinet;dish;floor;food,\"The person picks up a brush and places it in a cabinet.  The person removes a bowl from the cabinet, looks at it, and places the bowl back where the person found it.  The person grabs the bowl again, and then places it back into the cabinet a second time.;A person is going through the fridge they take out some food and then they adjust the camera and go back to the fridge and take out more food.\",c099 2.30 10.30;c152 6.60 17.90;c114 5.70 16.50;c098 2.10 7.90;c127 1.50 6.50;c062 11.90 16.30;c119 11.20 16.30,39.25\r\nA42EF,JTAS,Bathroom,6,7,Yes,A person runs into the bathroom closing the door behind them they grasp the door handle to make sure its locked . They pick up a glass and fill it with water .,cup;door;glass;lock;water,\"A person walked into the bathroom, shut the door behind them and appeared to have fill her cup with water and drank from it;A person closes and locks the door. Next the person fills a glass with water from the sink and begins to drink the water.\",c006 2.30 10.10;c007 6.60 12.90;c106 18.90 28.00;c107 17.20 28.00;c110 8.00 18.60;c141 7.10 14.00;c108 12.10 24.70;c150 1.20 6.30;c097 1.60 6.20,26.92\r\nYE6TZ,4TV7,Closet / Walk-in closet / Spear closet,6,1,No,A person is putting a book on a chair and then starting drinking water from the sink.,book;chair;closet/cabinet;cup/glass/bottle;picture;water,A person put a book into a closet then picks up a drink and sips from it.;Woman is standing by the closet pick up a book then start drinking from a cup.,c028 0.20 8.30;c106 10.10 17.30;c107 6.20 32.00;c026 0.00 7.70;c110 8.40 13.50;c032 0.00 8.00;c114 0.00 12.40;c083 8.80 32.00,30.92\r\nZ88CI,CP6Y,Living room,6,5,Yes,\"A person, smiling, begins tidying the area around the doorway. The person pauses to look at a picture on the wall.\",,A person walks into a room and picks up items off of the floor and puts them away properly.;A person puts a small statue on top of some other items on the floor.,,17.12\r\nUJVCW,I48P,Dining room,6,7,Yes,A person is taking a phone off the table.  Then a person is walking with a vaccum to the wall outlet.,phone;table;vacuum;wall,\"person grabs something off table then grabs a vacuum;A person walks over to a table and picks up a cellphone. The person walks back across the room and picks up a vacuum cleaner. The person carries the vacuum across the room sets it down, plugs it in, and walks away.;Person walks over to dinning room table and grabs a phone. Then proceeds to walks over, grab a vacuum, and plug it in.\",c015 0.00 6.00;c016 2.30 8.00;c018 4.00 10.30;c138 9.40 15.80;c017 4.70 10.60;c137 7.60 16.60,28.50\r\nQLGHA,BONA,Living room,5,6,Yes,A smiling person is putting a broom in the pantry. They grab a picture from the shelf and start laughing.,book;box;broom;doorway;food;picture;shelf,\"A person holding a stick or branch walked toward a counter, set the stick against the counter, then picked up a hand-held game or toy and played with it while moving back and forth repeatedly in that small space.;A person takes a broom and puts it in the corner. The person looks at a pink box and walks back and forth while looking at it.\",c099 3.30 10.00;c084 8.20 32.00;c152 9.40 32.00;c029 9.00 32.00;c040 8.00 32.00;c088 8.80 32.00;c149 9.30 32.00;c061 8.30 32.00;c097 0.00 2.90;c085 8.50 32.00;c083 7.20 12.70;c098 0.00 9.80;c043 8.20 13.10,31.29\r\n2CJC9,SW82,Bathroom,7,7,Yes,A person is smiling at himself in the mirror. Then the person opens the cabinet and begins tidying up the objects on the shelves.,cabinet;door;hair;medicine;mirror;shelf,A person adjusts their hair in a bathroom mirror. The person opens a medicine cabinet and adjusts the bottles inside of it.;A person messes with their hair in a mirror. The person opens a medicine cabinet and moves some pill bottles around.,c094 0.00 11.60;c096 0.00 11.80;c113 8.40 15.40;c114 11.80 31.00;c152 0.00 11.60;c008 9.00 15.50;c128 18.00 25.70;c144 0.00 8.60;c082 12.10 29.80,29.96\r\nK7VCU,AT5D,Kitchen,5,5,Yes,One person pours something down the sink as another person runs past the kitchen table.,cup;dish;doorway;food;shelf;table,\"A person walks into the kitchen where another person is pouring out a cup into the sink.  Then the person with the cup places it on the counter and then on the shelf.;People are in a kitchen.  One is standing by the sink with a cup, the other walks outside through the door.;A person is standing at the kitchen sink emptying a cup and then placing a cup on the shelf while a second person leaves the area and exits out of view.\",c110 12.20 21.90;c111 8.20 24.00;c081 13.30 26.20;c009 15.60 25.70;c120 12.20 19.60;c156 4.80 9.10;c097 7.60 12.00;c109 12.30 18.00;c119 17.60 23.00;c107 0.00 9.20;c118 0.00 9.10,30.75\r\nXO8NL,ZDKC,Bedroom,4,6,Yes,A person is grasping a pillow. The person throws the pillow into the closet and begins fixing the mirror on the wall.,floor;mirror;pillow;towel;wall,A person throws a pillow into a closet then adjusts a mirror on the wall over a sink.;A person is holding a pillow before they throw it off to the side and look at themselves in the mirror.,c094 14.90 31.70;c096 13.80 31.60;c080 3.60 12.50;c034 6.40 11.60;c076 0.00 9.10;c126 5.30 11.40;c093 11.00 32.00;c077 6.50 12.50,30.75\r\nUE638,CP6Y,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,One person is pouring a dose of medicine when another walks by holding groceries.,bag;door;food;groceries;medicine;phone,There are two people here. One walks in door from the outside with a shopping bag. Other is standing still inside and looking on their phone.;A person comes inside carrying a bag. They pass another person at the bottom of the stairs.;A person walks into a house holding a bag while the other person stands and watches.,c020 0.00 12.00;c015 0.00 12.00;c016 0.00 12.00;c063 0.00 12.00;c128 0.00 12.00;c006 0.00 4.20;c097 0.00 12.00;c141 0.00 4.20,10.88\r\nOY3LS,ZDKC,Living room,5,6,Yes,\"A person is standing in their entryway undressing and holding their laptop. The person puts their phone on a table, and wrap them self in a blanket.\",blanket;clothes;couch;jacket;laptop;phone;sofa;table,\"A person held a laptop.  The person then opened the laptop then closed it again.  The person then took off some clothes, played with his phone and lied down on the couch.  The person then covered themself with a blanket.;A person opening and closing a pink laptop, taking a jacket off, pulling a cell phone from a pocket and then placing the cell phone on a table. The person sits on a couch and covers up with a blanket.;A person is holding a laptop, then they get undresses, the pull out their cellphone and walk over and sit on a couch under a blanket\",c046 7.00 17.70;c048 2.50 10.10;c017 28.60 37.60;c009 28.20 38.90;c072 36.90 46.00;c151 35.40 45.60;c047 0.00 40.00;c015 22.10 34.90;c018 22.10 35.30;c070 34.00 46.00;c155 7.20 23.60;c122 34.00 46.00;c000 18.50 23.60;c073 34.70 41.80;c051 1.20 10.80;c016 22.30 33.10;c049 37.20 42.10;c003 18.50 23.80;c123 34.90 41.40,44.92\r\nW3NN2,BONA,Living room,5,6,Yes,\"A person is sitting at the desk looking at a camera.  The person gets up and walks to the door, puts their hand on the doorknob, and turns off the light.\",camera;desk;door;floor;hand;light;table,\"This person played around with a camera while sitting at a desk, before getting up and turning the lights off.;The person sat at a table examining a camera. The person then stood up and walked over to a light switch. The person then turned off the light.\",c009 21.50 26.40;c011 0.00 26.80;c015 0.00 2.70;c125 0.00 25.80;c152 16.60 22.20;c016 0.00 24.90;c154 20.70 26.40;c087 16.40 21.30;c015 0.00 26.50;c105 26.70 31.00,29.67\r\nX06Z6,JTAS,Bedroom,5,6,Yes,A person in a bedroom begins undressing by removing a jacket. They are working on their laptop which is lying on their bed. They look out the window.,bed;chair;clothes;laptop;window,\"A person is typing on a computer then they pause to take off their sweater. After removing the sweater they continue typing on the computer.;A person is sitting on a bed using a laptop. After removing a coat, the person types and contemplates about something that distracts them.\",c051 0.00 18.10;c052 0.00 18.10;c135 0.00 24.00;c092 14.90 24.00;c155 0.80 10.60;c059 0.00 24.00;c001 4.60 11.00,23.25\r\nXF2ZM,ZDKC,Bathroom,5,4,Yes,\"A person in their bathroom is standing up and begins undressing by taking their jacket off of them. They grab two things from the bathroom. One is a book in their left hand, and a box in their right hand.\",book;box;clothes,\"A man is standing in front of a toilet, where he begins to undress by removing his hoodie. Then he picks up an item in a box from the toilet seat and examines it.;The person takes off the jacket, drapes it over a bar and picks up the box and book from the toilet.\",c026 20.20 32.00;c030 20.30 25.80;c040 16.60 32.00;c043 16.60 23.70;c001 10.50 20.00;c155 0.90 14.60;c000 8.90 17.20;c003 11.80 18.00;c025 25.40 30.50;c004 14.50 19.70;c027 22.80 29.40;c115 20.00 32.00;c117 20.00 32.00;c032 21.40 32.00,30.58\r\nCLAWJ,0Z4M,Basement (A room below the ground floor),7,6,Yes,A person is closing a laptop and then undressing next to the wardrobe in the basement.,bed;chair;clothes;desk;laptop;table,\"A person is sitting at a desk  workiing on their laptop. they then set the laptop on a bed and begin to undress.;This person is sitting down typing on a laptop then the person stands up and undresses.;A person is sitting at a desk with a keyboard on his lap, He places the keyboard on the bed beside, stands up and begins to remove a shirt\",c046 8.10 13.90;c049 9.90 15.60;c155 13.80 33.00;c154 11.60 16.90;c155 23.70 33.00;c009 9.70 16.30;c059 0.00 15.50;c051 0.00 12.60;c052 0.00 13.90;c047 0.00 15.80,32.42\r\nALJ7B,JTAS,Kitchen,5,7,Yes,A person takes dishes off a shelf then starts drinking some water.,cabinet;cup;dish;door;glass;shelf,\"This person grabbed two bowls and a plate out of the cupboard, before drinking a glass of water.;A person in a kitchen takes some dishes out of a cabinet and then fills a glass with water from the kitchen sink and begins to drink the water from the glass.\",c118 2.60 31.00;c120 2.10 9.80;c107 16.30 31.00;c081 0.10 16.20;c119 0.60 13.30;c108 12.60 20.70;c106 17.50 31.00;c113 0.00 3.50;c082 28.40 31.00;c110 10.80 15.50;c008 0.00 3.70,30.42\r\nTR652,CO87,Other,6,6,Yes,\"A person is reading a book in the laundry room. The person takes a pillow from the shelf and lies down on the floor, continuing to read.\",blanket;book;floor;pillow,\"She is sitting laundry room and reading book, and now she is lying on floor while reading, and put the sheet under her head.;A person is sitting down by a washer reading a book before they grab a pillow and lay down while continuing to read.\",c124 15.60 31.00;c079 8.70 15.60;c078 11.00 31.00;c032 0.00 11.60;c077 9.00 15.50;c076 9.00 15.20;c026 0.00 31.00;c125 0.00 16.70;c073 8.40 14.40,29.58\r\nLLRKS,CO87,Kitchen,6,6,Yes,The person poured the coffee and then stared at the hanging broom.  The person picked up the broom and began working at getting all the dust off the picture hanging on the wall.,broom;brush;coffee;cup;dish;picture;wall,A person pours a cup of coffee.  The person picks up a brush and cleans a picture on the wall.;Person pours a cup of coffee pick up a small broom off the cabinet door and brush a picture.;A person pours some coffee into a mug on top of a dryer. The person takes a duster and dusts something that isn't clear.,c107 0.00 10.80;c108 0.50 9.20;c083 19.20 25.40;c118 0.00 12.00;c109 0.00 5.70;c102 16.00 33.00;c084 20.10 33.00;c100 15.70 23.20;c098 16.20 33.00,31.83\r\nZMY8M,ZDKC,Kitchen,6,7,Yes,\"A person is fixing coffee and eating breakfast, then opening a cabinet in a kitchen.\",bag;cabinet;coffee pot;cupboard;dish;food;plate;sandwich;table,\"A person eats a sandwich from the table before checking their cabinets.;A person puts some coffee into a machine and turns it on. The person eats some food and puts the plate away into a cabinet.;A person straightens up a counter, takes some food from a bowl, walks to a stove and opens cabinets above it.\",c112 25.50 30.70;c113 19.80 25.50;c156 8.10 13.80;c065 8.70 16.90;c063 6.40 11.80;c068 9.20 13.80;c062 2.00 8.00;c069 7.10 14.00;c061 6.60 14.00;c022 1.70 8.00;c067 6.90 13.80;c012 0.00 9.70;c062 0.00 32.00;c118 0.00 17.50;c009 0.00 17.80,30.54\r\nAWN1C,ZDKC,Kitchen,4,6,Yes,A person is tidying some dishes. They take a drink from a coffee cup and lie down on the floor.,coffee;cup;dish;floor,\"A person is doing dishes in a sink.  He then gets a drink from a red cup, and lies down on the floor.;A person is standing at the kitchen sink and takes a drink from a cup and then lies down on the kitchen floor spreadeagled.\",c106 27.00 39.00;c107 26.00 41.00;c124 42.00 47.00;c121 0.00 29.00;c118 6.00 14.90;c109 28.50 41.00;c152 42.10 47.00;c119 0.00 8.00;c151 38.20 45.20,45.75\r\n5T0NX,ENHU,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person runs into the room holding a camera.  The person puts the camera on the shelf, then picks up a pile of dishes and leaves the room.\",cup/glass/bottle;dish;doorway;food;shelf,A person cleans up the closet. He picks up a plate and a cup and takes it out of the room. He is wearing a blue sweatshirt.;The person walked into a closet and took some dishes from on top of a dresser. The person left with the dishes.,c118 2.20 8.00;c120 3.20 8.00;c150 0.00 4.10;c119 2.30 8.00;c063 2.70 8.00;c110 2.30 8.00;c107 2.30 8.00;c097 0.00 3.10,7.46\r\n1GGRY,BPXZ,Kitchen,5,7,Yes,A person was throwing away food that was leftover on the dishes as  another person had a sneeze attack by the pantry door.,closet/cabinet;dish;door;food;groceries;hair,A person walked over to a closet and opened it up. The person then took an item out of the closet and closed the closet door. The person then walked away.;A person opens a pantry door and then closes it after taking something. Another person begins to sneeze in the distance.,c120 0.30 8.10;c008 0.80 6.10;c153 9.90 14.80;c130 0.60 14.50;c144 12.50 22.00;c112 9.20 15.20;c113 1.00 6.50;c006 8.90 14.30,21.04\r\nY44TV,ARRB,Garage,7,7,No,\"One person takes a pillow and some homework from an old chair, then smiles and laughs.\",chair;homework;paper;pillow;towel,A person walks through a garage before lifting something up and laughing.;A person walks over to a small table and picks up a pillow pet. The person smiles and bounces the pillow pet a few times.,c115 1.90 8.50;c117 10.10 19.80;c076 4.80 11.70;c079 8.90 20.30;c149 1.70 11.60;c033 4.30 24.00;c152 11.90 24.00,23.46\r\n3QL7J,M7K8,Kitchen,6,7,Yes,\"In the kitchen, a person is cooking some eggs on a frying pan. They begin to eat some food they find from the refrigerator, while looking out the window.\",dish;food;refrigerator;stove;window,A person makes food on the stove before getting a bite to eat out of the fridge and looking out of the window.;A person stands in the kitchen and cooks some food on the stove. The person opens the fridge and takes some food out of it and eats it.,c063 19.10 25.80;c143 18.70 24.40;c092 25.80 31.60;c143 12.40 25.40;c156 20.90 27.80;c147 0.00 15.60;c118 1.80 14.90;c061 17.60 26.80;c142 19.70 24.90,33.42\r\nRG0KS,CP6Y,Hallway,6,7,Yes,A person is seen playing with a blanket. They begin sneezing and pick up a box with shoes in it.,blanket;box;floor;shoe,\"A person waves a green blanket around, and throws it in the air.  This person picks up a box and walks away.;A person shakes out a blanket, throws it up, and carries it out with a box.\",c053 16.70 26.80;c056 16.00 25.30;c040 15.60 27.00;c043 16.70 24.90;c070 0.00 27.00;c075 0.00 7.60;c072 11.30 27.00;c074 0.00 25.00;c154 0.00 27.00;c042 17.40 27.00;c071 0.00 27.00;c153 14.80 21.50;c127 17.60 27.00,25.79\r\nQO4FV,I48P,Bathroom,5,7,Yes,A person is pouring a glass of water out in the sink while laughing,cup;dish;glass;mirror;sink;water,A person takes a drink of some water while looking into a mirror. The person pours the water out onto the table.;A person in the bathroom drinks from a cup of water.  The person then pours the rest of it in the sink and then sets the cup next to the faucet.,c106 0.00 5.30;c149 7.20 29.80;c107 0.00 30.10;c118 0.00 30.50;c152 1.00 18.90;c109 25.70 30.40;c096 0.00 31.00,29.54\r\nBLWIW,CP6Y,Recreation room / Man cave,4,5,Yes,Person is standing by window holding laptop. Another person is undressing shoes and laughing.,bed;book;clothes;couch;laptop;shoe;window,\"2 people in a room, 1 is playing on a laptop, the other is taking off shoes.;Two people are in a room one is sitting on the bed taking their shoes off, while the other one is standing by the window reading a book.;A person is standing and looking out the window while reading a book. Another person is sitting and taking off their shoes.\",c057 3.10 19.00;c047 0.00 19.00;c092 13.00 19.00;c057 9.40 16.40;c123 0.00 19.00;c152 1.00 7.50;c155 3.10 19.00;c032 0.00 19.00;c135 0.00 19.00;c052 0.00 19.00,17.58\r\nQF1Y0,AT5D,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,Person is opening door with bag and book in hands. Another person is sitting on floor.,bag;book;door;floor;television,A person is sitting on the floor watching television. Another person opens the door and walks in while holding a bag and a book.;A person is sitting on the floor and another person walks in carrying a backpack and gook.,c026 13.60 19.60;c125 0.00 16.70;c006 13.90 20.40;c008 10.40 18.70;c020 13.10 24.70;c153 7.10 14.50;c132 0.00 32.00;c097 11.80 18.40;c115 13.60 25.30,30.88\r\nN5PLR,EDYS,Recreation room / Man cave,7,7,Yes,A person is undressing from their work clothes after a long day. This person sits down in a chair and starts playing a game on their laptop.,chair;clothes;game;laptop;table,\"The person took off their dress shirt and sat at a desk. They then began working on their laptop.;A person takes their shirt off and throws it down, the sits down in a chair and gets on a laptop. The person then gets up out of the chair.\",c059 11.90 32.60;c151 7.60 13.90;c052 9.20 32.50;c155 1.40 10.80;c154 28.30 33.50;c000 5.60 10.30;c010 8.70 33.20;c002 1.60 10.60;c001 2.00 10.60;c051 8.70 32.10;c003 5.20 10.40,34.42\r\nENOLD,CP6Y,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is standing up, watching television.   They turn off the TV, walk to a desk with a book on it, pick it up and start flipping through it.\",book;chair;char;desk;remote;table;television,\"The person turned off a tv and walked over to a chair and sat in it. They then started reading a book.;A person stands in the middle of a room watching a television, then uses a remote to turn it off and sits down in a rolling desk chair in front of a desk to read.\",c027 6.60 13.00;c132 0.00 6.70;c151 6.00 11.40;c059 6.90 17.00;c009 4.20 8.90;c011 7.20 17.00;c026 6.70 17.00;c030 6.60 10.90;c032 7.50 17.00,16.21\r\n5SMU6,M7K8,Bedroom,6,7,Yes,\"A person is standing next to a bed with a towel. They set the towel down on the bed, look at their phone, and leave.\",phone;towel,\"A person folds a blanket on their bed and picks up their phone.;The person is holding a shirt and puts it on the bed, then uses the phone to text before walking out of the room.\",c033 0.00 10.80;c016 9.80 23.20;c015 8.00 23.80;c034 0.00 10.90;c018 8.00 23.50,31.33\r\nB4XZD,CP6Y,Stairs,4,7,Yes,Person is walking up stair holding book in hand while drinking coffee then starts sneezing.,book;coffee;cup;doorway;hand;stairs,A person walks up stairs while reading a book and sneezing.  This person is also holding a mug.;Person walks through the door with a book and glass in hand then walk up the stairs.,c032 0.00 15.30;c107 0.50 19.40;c153 5.10 9.60;c026 0.30 23.00;c097 0.00 6.20;c115 0.20 23.00,22.04\r\n8H570,AT5D,Living room,3,4,Yes,\"A person is eating junk food while watching the television, while grasping their phone in the other hand.\",dish;food;hand;hat;phone/camera;sofa/couch;television,\"A person sits on a bench while looking at their phone and eating.  This person wipes their forehead.;A man is sitting on a bed with a cup of coffee, which he holds as he removes his phone and begins to text on it.\",c061 0.00 32.00;c132 0.00 32.00;c118 0.00 21.30;c015 6.80 21.30;c123 0.00 21.60;c156 0.00 7.10;c016 6.90 24.00,30.75\r\nIOQFA,GFWE,Kitchen,5,7,Yes,A person is grasping a box of groceries off the floor.  A person is sitting the box of groceries on a table.,box;groceries,\"A person wearing a pink sweater picks up a cardboard box and places it on a kitchen counter. The individual then briefly grabs a bag of limes and then checks their phone.;The person picks up a box, places it on the counter and moves one of the bags inside of the box.\",,30.12\r\n4QGP6,ENHU,Stairs,3,5,Yes,A person drinking a glass of water walks down the stairs.  At the bottom they sit down to take off their shoes and sneeze while untying the laces.,chair;cup;dish;doorway;floor;glass;shoe,\"A person walks down a set of stairs holding a cup, places the cup on the stairs and sits down looking towards the floor.;A person descends a staircase but sits down before reaching the bottom, at which point the person sits on a step and begins to sneeze.\",c057 5.70 14.00;c107 0.00 7.90;c151 1.90 8.40;c153 6.90 14.00;c056 7.10 14.00;c059 4.30 8.70;c118 0.00 8.50;c097 1.10 6.40;c125 3.10 14.00;c106 0.00 4.10;c109 3.90 8.50,13.17\r\nP3CLM,JTAS,Bathroom,7,7,Yes,a person is sitting on a toilet with a pillow on top of their lap.  They are reading a book and smiling.  They close the book and look up at the ceiling thoughtfully.,bed;book;pillow,A person sits reading a book.  This person continues to read with a pillow and then puts a hand to their chin.;A person is reading a book and they flip the page to continue reading. They then close the book and look up as if to ponder what they just read.,c025 29.10 41.00;c026 0.00 43.00;c032 0.00 43.00;c076 0.00 43.00;c028 33.90 39.50;c115 0.00 43.00;c135 0.00 43.00,41.67\r\n8UCK1,ENHU,Kitchen,6,5,Yes,A person is standing in their basement holding dishes. They put the dishes on a shelf and leave.,closet/cabinet;cup/glass/bottle;dish;doorknob;shelf,A person opens a cabinet and puts something on a shelf. The person then walks away.;A person is opening a cabinet and putting some food away. The person is then closing the cabinet and walking out of the room.,c081 0.00 9.80;c118 0.00 9.80;c119 0.00 9.80;c107 0.00 9.50;c113 1.60 7.00;c141 1.70 6.50;c109 3.80 9.10;c112 8.70 13.90,14.83\r\nF3M1Q,ENHU,Kitchen,3,7,Yes,\"A person takes off their shoes and starts cooking on the stove, then takes a drink from a glass nearby.\",clothes;cup;dish;floor;food;glass;shoe;stove,\"A person in a kitchen removes their shoes, puts them on the floor, turns on the stove and takes a drink.;A person takes their shoes off in the kitchen and throws them on the floor, then taking a drink out of a cup.\",c054 1.20 6.40;c058 1.10 6.40;c106 9.40 16.40;c109 12.50 17.00;c053 0.00 6.00;c057 0.00 3.50;c147 3.30 12.10;c107 8.90 17.00;c110 8.90 13.70;c118 8.70 17.00;c056 0.00 8.90;c002 0.00 8.90;c156 8.70 17.00;c126 0.70 6.00,16.04\r\nUEVVN,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person runs to the open window, closing it. The person laughs as they take off their shoes.\",clothes;door;shoe;window,A person moves across a room to close a window and removes their shoes.;The person walks into the room and closes both sides of the window.,c089 3.80 13.20;c058 12.90 19.00;c053 9.60 18.40;c054 13.00 19.00;c150 1.20 8.70;c141 3.90 13.10;c006 4.40 13.30;c155 9.70 19.00;c057 9.90 19.00,17.75\r\n02DPI,V044,Home Office / Study (A room in a house used for work),6,7,Yes,A person is sitting in their study on a sofa laughing at a movie. The person is eating a plate of food and drinking a glass of water.,cup;dish;food;laptop;sofa;television,The person is eating some food and watching something on a laptop. They appear to be relaxed and enjoying themselves. The person takes a sip of a soda in a can and eats some more.;A person is sitting. The person is also eating some food and drinking water from a glass. The person is also watching television and laughing.,c061 0.00 42.00;c118 0.00 42.00;c106 23.40 30.50;c123 0.00 42.00;c149 1.10 42.00;c156 0.00 42.00;c132 0.00 15.20;c152 11.00 16.90;c109 29.00 35.30;c051 19.70 26.00;c107 29.00 35.50;c110 21.30 28.00;c131 11.00 16.90,41.25\r\n8YK8Y,JTAS,Living room,6,6,Yes,\"A person walks with dishes in hand in the living room, A person grasps their medicine in the living room.\",dish;food;hand;medicine;table;tray,\"woman who entered in very messy room with a bowl on a tray,she put it on table and grabbed some medicines.,;A person walks into a room with a bowl. The person puts the bowl down and pours some medicine out for themselves.\",c119 6.50 13.30;c128 9.10 31.00;c062 0.00 13.00;c118 0.00 13.00;c129 10.60 31.00;c061 0.00 12.10;c009 7.20 13.40,29.96\r\n8NEYJ,AT5D,Bathroom,7,7,Yes,Person A is undressing in the bathroom when Person B opens the door and walks to the window carrying a book.,book;clothes;door;window,A person opens a door and looks out of the window.;A person walks through a door and another is in the room adjusting a shirt. The first person walks towards a window and opens the blinds.;A third person view of inside an apartment and seeing the door open and one of two men enters.  This man paces nervously around before stopping to look out a window.,c092 19.70 32.00;c026 18.40 31.50;c155 8.90 14.80;c141 3.80 10.90;c097 3.90 9.50;c148 6.40 15.40;c008 3.50 9.00,30.88\r\n81VSN,M7K8,Living room,5,7,Yes,A person is fixing a television and then walking through a doorway in the living room.,doorway;shelf;television,A person walks over to the tv set and mess around with it then they walk out of the room then they come back into the room.;A person walks over to their TV and attempts to fix it before leaving the scene and returning.,c097 21.30 39.30;c081 0.00 24.30,39.42\r\nDZ9UB,4TV7,Closet / Walk-in closet / Spear closet,5,,No,The person is closing the laptop standing near the window in the walk-in closet during the day.,laptop,A person is standing in the door way of a closet holding a laptop.;A person looks at their laptop screen and then closes it.The person continues to stand in the closet with their laptop.,c046 5.90 16.30;c047 0.00 32.00;c051 0.00 13.30,30.79\r\nRQ3AK,CP6Y,Stairs,4,7,Yes,One person takes a picture from the wall while another person is snuggling a pillow on the stairs.,picture;pillow;stairs;wall,\"People standing on the stairs one hanging a picture and one is sneezing into a towel.;A person is standing in a staircase while snuggling with a pillow, and a second person is standing in the same staircase while fidgeting with a picture on the wall.\",c084 4.10 19.00;c078 0.00 19.00;c083 0.00 11.00;c086 12.80 19.00;c076 0.00 19.00;c088 0.00 19.00,18.38\r\nY89SO,ENHU,Dining room,5,7,Yes,\"A person is fixing a vacuum, then snuggling with a towel.\",blanket;chair;table;towel;vacuum,A person is fixing something and then puts a towel on his face.;A person sits a a table near a window and attempts to reassemble or fix a small hand held vacuum cleaner.  When finished they set it to the side and mop the bottom of their chin with a towel.,c136 0.00 13.90;c033 9.80 18.00;c011 0.00 18.00;c038 10.60 18.00;c072 10.00 18.00;c070 11.80 16.50;c137 0.00 13.90;c059 0.00 18.00;c014 0.00 14.10;c035 9.60 15.10;c009 9.10 13.70,17.00\r\nMUQBW,AT5D,Home Office / Study (A room in a house used for work),6,4,Yes,\"While Person A is doing homework in the Home Office, Person B walks in and smiles while tidying up the room of the dirty dishes.\",book;chair;cup;desk;dish;glass;homework;paper;phone;table,A person is sitting ata desk using a calculator while another person pats the first person on the back and  tidys up the room;A person is doing homework when another person walks up and picks up a mug off the desk.;A person is at a desk taking notes while someone else comes up from behind them and goes through books.,c145 0.00 32.00;c152 12.60 17.80;c059 0.00 32.00;c110 22.20 27.70;c011 0.00 32.00;c118 22.60 32.00;c012 20.00 32.00;c115 0.00 6.60;c120 23.50 31.50;c014 0.00 32.00;c016 2.20 32.00;c032 0.00 32.00;c027 20.90 25.40;c009 23.20 28.60,30.75\r\nSM4AO,BKWQ,Home Office / Study (A room in a house used for work),5,6,Yes,A person puts a bag of groceries down on the desk.  They then begin snuggling a mirror.,bag;chair;desk;groceries;mirror;pillow;table,\"A person is holding a bag then sitting at a desk and hugging a mirror and smiling.;A person pouts a bag onto a desk and then sits down. The person then hugs a small mirror in front of them, then stands up and walks away.;A person sits at a vanity table and then hugs a small mirror sitting on the table, and then stands up and walks out of view.\",c093 10.60 22.00;c020 2.50 7.60;c011 6.80 26.10;c154 23.80 28.80;c152 11.70 22.20;c094 13.00 18.20;c009 3.30 8.30;c151 5.80 10.80;c130 3.10 8.10;c059 6.60 28.30;c022 1.00 9.30;c096 6.80 27.30,32.88\r\nQH3WP,ZDKC,Bedroom,5,7,Yes,A person is lying on a towel while holding a camera in their hand.,bed;camera;phone;towel,A person is sitting on a towel in the bed. A person then plays with a camera.;A person walks up to bed and than lays down. They begin playing on their phone.;The person walked to their bed and lied down. The person removed a camera from their pocket and played around with it.,c015 6.20 32.00;c134 3.60 32.00;c151 1.40 8.30;c016 4.50 32.00;c018 3.40 9.10,30.75\r\nS591U,AT5D,Bedroom,7,7,Yes,One person sits closing a laptop when another person in the doorway throws a towel and some clothes into the room.,bed;blanket;clothes;doorway;floor;laptop;towel,\"A person sits on a bed. Another person enters the room and throws a piece of clothing onto the bed.;Person sitting on top of bed closes laptop. Other person walks into room, throws clothing onto bed before walking out of room.\",c001 8.50 15.50;c034 7.90 15.50;c097 7.30 13.90;c046 9.40 17.00;c126 9.70 20.60;c070 6.70 22.10;c051 0.00 14.80;c003 10.30 15.10;c033 3.60 14.80;c047 0.00 14.90;c135 0.00 31.00;c036 12.30 20.00;c052 0.00 14.00;c074 7.90 16.90,29.96\r\nE6DLK,I48P,Basement (A room below the ground floor),5,7,Yes,A person sits in a chair. The person jumps up and runs to the window.,chair;door;window,\"A person grabs a chair pulls it toward them and sits down in it.The person jumps up and runs to the door and looks out side turns and walks away from the door.;A person sits on a chair and folds their arms.  This person jumps up and runs to the window to look out, then walks away.;This person is standing in a room with one chair.  The person sits in the chair momentarily, then gets up and looks out the window.  The person is looking for something outside the window.  The person leaves the room.\",c059 3.10 11.80;c092 9.30 27.10;c151 0.00 6.90;c154 0.00 4.90;c150 9.30 14.40,27.25\r\nDJVKE,BONA,Stairs,7,7,Yes,The person was sitting on the stairs doing homework and eating a snack.  The mirror on the wall at the bottom of the steps was sitting on s shelf.,book;dish;floor;food;homework;paper,A person is sitting on the stairs doing their homework they pick up a sandwich and eat it while doing their homework.;A person sits on the stairs alone.  The person is doing their homework alone and is also eating something next to him.;A person is sitting on a flight of stairs to write on a notebook as well as to snack on food.,c145 0.00 33.00;c156 14.10 26.50;c061 13.40 33.00;c063 11.40 19.00;c125 0.00 33.00;c115 0.00 33.00;c026 0.00 33.00,31.75\r\nPUA7P,ENHU,Recreation room / Man cave,6,6,Yes,\"A person working in their recreation room snuggles a stuffed animal.  They stretch their arms, and get up. Tidying the area around them, they pick up some dishes, one with part of a sandwich, and head out of the room.\",dish;floor;food;head;paper/notebook;sandwich,\"A person is sitting on the floor looking at a magazine.  This person stretches, and gets up with a plate.;A person flips through some pages while sitting on the floor. The person picks up a plate and stands up.\",c120 16.80 26.00;c154 20.70 26.00;c069 15.60 26.00;c068 15.50 26.00;c115 12.50 18.10;c063 1.70 6.70;c063 9.70 15.30;c127 12.20 26.00;c062 16.50 26.00;c119 14.00 26.00;c125 0.00 25.80;c118 1.80 10.70;c145 0.00 16.80;c061 16.70 26.00,24.54\r\nIIL9C,GFWE,Living room,6,6,Yes,\"A person is lying on sofa in the garage, drinking a cup of coffee and eating a cookie. The person sits up and takes a bottle of medicine from their shirt pocket.\",chair;coffee;cup;food;medicine;sofa,A person is laying on the couch they have a large coffee mug they are eating something and a bottle of medicine is falling out of their pocket they put the mug down and take out the bottle of medicine.;There is a person laying on the sofa eating something.  That same person then drinks from a mug.,c128 23.00 33.00;c107 0.00 25.30;c122 0.00 33.00;c110 0.00 4.40;c109 18.50 26.10;c156 0.00 13.20;c106 0.00 24.30;c062 3.30 9.40;c063 0.00 3.30;c059 0.00 33.00;c061 0.00 7.30;c123 0.00 33.00,32.29\r\n7229M,VOOS,Bathroom,5,7,Yes,\"A person is in their bathroom playing with their shoes. They drink from the sink, grab a book and leave the room.\",book;cup/glass/bottle;doorway;mirror;shoe;sink;tap;towel;water,\"A person is holding some shoes and smiling, they then put on the shoes, take a drink from a sink, and grab a mirror and walk out while looking in the mirror.;A person wearing a blue shirt grabs a pair of slippers from a kitchen counter, puts them on, then washes their mouth with sink water.;A person puts on slippers, drinks from the sink, takes a notebook and walks out.\",c026 24.80 36.00;c030 25.20 36.00;c152 0.00 17.20;c053 0.00 17.60;c027 25.70 32.50;c032 26.80 32.70;c106 14.30 20.70;c055 8.60 15.20;c117 25.70 30.60;c115 25.70 36.00;c097 29.20 35.60;c035 22.90 27.80,34.58\r\nB0XI9,ZDKC,Bedroom,4,5,Yes,\"A person in their bedroom is running towards their cabinet. They grab a sandwich out from the cabinet and a glass of water. They begin drinking the glass of water, and then start sneezing.\",cabinet;cup;doorway;food;glass;sandwich;water,\"This person walked across the room and sneezed twice.;A person is running across a room. The person reaches for water and food. The person drinks some water. Lastly, the person sneezes.\",c067 11.60 33.00;c106 10.70 20.90;c153 18.60 33.00;c063 6.10 16.70;c156 5.10 22.10;c065 20.40 28.30;c097 0.00 4.70;c107 9.60 33.00;c150 0.20 8.20;c110 7.70 13.30;c113 4.30 10.20;c061 7.70 32.10,31.54\r\nKE5EM,ENHU,Recreation room / Man cave,4,5,Yes,\"A person is holding a bag of clothes, then the person sits down and begins sneezing.\",backpack;bag;chair;clothes;floor;television,\"Person sitting down in a chair with a backpack, opens it up to take some clothes out, and then sneezes into elbow.;A person sits down while looking through a backpack. The person puts the backpack down and sneezes.;A person carrying a backpack sits down in a chair takes something out of backpack and begans snezzing\",c003 4.80 9.90;c021 3.00 8.80;c151 1.40 6.80;c153 6.30 10.90;c059 0.90 7.10;c002 4.60 9.30;c023 0.00 12.00;c000 4.80 10.30;c022 5.80 10.60;c126 6.80 11.00;c132 0.00 13.00;c020 0.00 11.00,12.38\r\nBLLCM,RLWG,Living room,6,6,Yes,A person sits down on a sofa in a living room while watching television. The person decides to then play with a tablet sitting on the coffee table.,chair;sofa;table;television,A person sits in a chair watching television.  They pick up a computer tablet and begin working.;The person sat in a chair watching television for a few moments. The person then picked up a tablet device and began playing with it.,c123 0.00 33.00;c132 0.00 22.50;c059 30.00 33.00,32.00\r\nAKU63,P2J3,Bedroom,6,7,Yes,\"One person awakens as another person walks through the doorway holding a bulb, then works at fixing a burnt-out light.\",bed;doorway;table,A person holding something green walks through the doorway to a bedroom where another person is lying on a bed. The person that walked into the room places the green object on a small end table in front of him.;A person walks into a room where another person is laying in a bed.  The person stands up and they talk.;A person lies sleeping on a bed while another person comes into the room and wakes them up.,c097 0.30 9.30;c146 7.40 16.00;c134 0.60 10.70;c135 21.20 36.00;c009 15.10 26.40;c151 19.30 29.10;c133 7.10 15.60;c154 7.40 18.40,34.88\r\nNUKJ0,SW82,Laundry room,7,7,Yes,\"A person is fixing their washing machine.  The person takes a book off the shelf and reads it for instructions.  The person puts the book down and picks up a cup of coffee, takes a sip, and smiles.\",book;clothes;coffee;cup;glass;shelf,\"A woman stands near a washing machine and grabs a few articles of clothing, returns them to the washer and drinks from a cup of coffee.;A girl is standing in front of the washing machine cleaning it. Then she reaches for a dryer sheet to add into her load of wash in the dryer.\",c027 10.40 17.80;c106 22.80 30.30;c025 19.40 26.60;c110 22.60 27.40;c107 22.60 30.60;c032 11.30 24.00;c115 11.50 25.40;c005 0.00 32.00;c117 11.00 17.60;c026 11.50 25.60,30.58\r\nKQDX6,CP6Y,Hallway,6,7,Yes,\"A person walks down a near empty hallway, slowly drinking a cup of coffee. They pass another person opening their cell phone to look at a picture.\",coffee;cup;door;glass;phone;picture,\"A person stands around looking at their phone, while another walks by drinking something out of a cup.;Person is standing in a hallway looking at a phone, another person - who is drinking from a plastic cup walks past then opens a door\",c016 0.00 25.00;c106 4.00 10.10;c107 4.00 25.00;c154 0.00 25.00;c008 17.00 25.00;c015 0.00 25.00;c141 15.90 25.00,24.46\r\nEURF2,P2J3,Bedroom,3,6,Yes,\"A person is standing in the doorway looking into their bedroom and noticing that a blanket belonging on the bed has fallen on the floor.  The person laughs briefly before picking it up, laying it down on the bed, and then sitting on the bed themselves.\",bed;blanket;doorway;floor,\"A person walks into a bedroom, picks up a blanket, and lays it across a bed. Then the person sits on the bed.;A person is entering in bedroom, and spreading the sheet on bed and sitting on bed.\",c071 3.10 25.20;c097 0.00 4.20;c135 22.50 29.40;c151 22.50 29.40;c127 1.00 6.10;c070 1.40 23.30;c075 13.90 23.30;c073 1.20 10.00,33.79\r\n26JZM,V044,Laundry room,6,6,Yes,A person goes to the garage to wash a pillow. A person looks into a mirror and closes the washing machine.,clothes;doorway;hair;mirror;pillow;towel;washing machine,\"A person is in the laundry room folding laundry. They then look into a mirror and fix their hair before leaving the room.;A person walks into a room carrying a pillow, removes the pillowcase and sets both items down before looking into a mirror, fixing their hair and walking out of the room.\",c096 14.80 41.00;c076 1.80 23.30;c077 15.80 23.70;c144 10.40 36.50;c005 8.00 18.40;c004 0.00 15.60;c000 0.00 16.00;c097 0.00 4.60;c034 9.20 16.20,40.04\r\nD8ZZM,CP6Y,Stairs,6,7,Yes,The person is working on putting up a picture on the wall near the stairs. The person sets the picture down to measure the wall and the puts the picture against the wall to see how it looks.,picture;stairs;wall,This person measured a small area on the wall with the intent of placing a picture on the wall.;A person is putting a nail in the wall to hang a picture in a stairway.  The person uses a measuring tape.,c086 6.70 13.00;c084 17.90 26.20;c083 17.20 21.70,35.46\r\nTZ9FE,ZDKC,Closet / Walk-in closet / Spear closet,3,6,No,\"A person runs to the closet, holding a stack of clothes. The person moves a pillow from a shelf and puts the clothes away.\",blanket;closet;clothes;doorway;pillow;shelf;wardrobe,\"A person runs into a room and puts things away in the closet.;A person walks into a closet, puts some clothes on the top shelf of the closet, then puts someting away in the bottom of the closet as well.\",c004 8.40 31.00;c150 0.00 8.00;c001 3.80 31.00;c081 12.00 20.00;c001 23.00 29.00;c113 22.00 27.00;c000 0.00 14.00;c114 18.50 31.00;c077 5.70 14.30;c097 0.10 5.70;c071 12.20 21.10;c003 6.40 14.10;c070 0.00 21.10;c002 17.80 25.40,30.46\r\nTLDYG,CP6Y,Bedroom,5,6,Yes,Person is standing by shelf then finds picture and looks at it and starts smiling and laughing.,book;phone/camera;picture;shelf,A person opens a number of drawers then take something from the wall and looks at it.;A person is looking through drawers and seems to not find what they are looking for. Lastly the person looks up on a shelf and finds something.,c084 8.50 21.00;c085 10.10 21.00;c152 9.10 21.00;c149 9.10 21.00;c015 9.90 21.00;c029 10.30 21.00;c083 5.80 14.20;c088 0.00 21.00;c016 10.30 21.00;c154 0.00 21.00,19.62\r\nFZAEP,GFWE,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,While standing the person use a vacuum. They then open a drawer of a desk.,closet/cabinet;floor;vacuum,A person walks to a vacuum and vacuums the floor. They then open a drawer on a table and walk away.;A person is using a vacuum cleaner in a living room area and the person opens and then closes a drawer in a table.,c137 2.80 25.60;c113 22.10 30.90;c138 0.40 7.30;c127 0.00 29.70,34.17\r\nI3ZG0,GE1M,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"One person opens a box of blankets, then smiles and laughs at the groceries on the floor.\",box;closet;clothes;floor;groceries,\"A person walks into a hallway, then opens a box on the floor and takes clothes from it, then throws them back in the box and walks over to a bag of groceries on the floor.;A person walks through a hallway, opens a box, starts taking items out, and eventually tosses the items on the grab in a disheartened manner.;A person walking into the hallway, opening a box and taking out a shirt, then throwing the shirt back into the box and bending down to pick something else up.\",,15.04\r\n13TNX,I48P,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is walking to the television and opening the shelf.,shelf;television,\"The person walks from the front door, down the hall, and past the stairs. The person walks to the television and either changes the channel or makes an adjustment. The person crouches down, opens a cabinet and reaches inside.;A person walking from the front door, across the room to adjust the TV and then walked over to a cabinet, bent down and opened the door.\",,31.12\r\nR5O7F,EDYS,Garage,7,7,Yes,The person is undressing and putting clothes in a cabinet.  They then start dressing with different clothes.,blanket;cabinet;chair;clothes;door;shelf;towel,\"A person walks over and adjusts a chair. The person then picks up a piece of clothing, opens a cabinet and puts the clothing on a shelf in the cabinet. The person then takes a shirt out of the cabinet and starts to put it on.;A person is in the laundry room and folding a towel. They then place the towel on a shelf and put on a jacket.;A person puts some clothes into a cabinet then takes out a shirt and puts it on.\",c000 7.90 18.10;c113 11.00 19.50;c148 28.50 40.00;c081 17.80 24.90;c001 17.80 24.90;c002 23.90 34.90;c071 8.10 22.40;c075 7.70 14.40;c004 13.60 23.80;c070 7.90 14.10;c073 7.50 14.10;c008 11.20 17.90;c034 17.30 23.80;c033 7.70 26.10;c035 7.70 14.40,38.88\r\nZL3QP,4UGC,Pantry,6,7,Yes,A person is laughing as the open the pantry. The person grabs some coffee and medicine off the shelf.,closet/cabinet;cup/glass/bottle;door;food;laugh;medicine,\"Person opens pantry, starts laughing, places hands in face, grabs medicine, looks at it, grabs another medicine, looks at it.;A person is opening the pantry door and taking medicine out of the pantry.;A disgusted man open his pantry doors only to find them stuffed with food items and what appears to be prescription drugs.  He picks up two and examines the labels, The then opens one to look at the contents.\",c149 2.10 9.30;c008 0.00 6.00;c063 10.40 20.50;c113 0.00 5.70;c107 12.50 32.00;c141 0.00 4.40;c110 9.60 14.20;c152 2.40 12.10;c128 10.50 32.00,30.58\r\nW1CG2,EDYS,Home Office / Study (A room in a house used for work),2,3,No,A person is lying on a sofa in a home office.  The person is eating food. The person puts the food on the desk.,chair;desk;food;laptop;phone/camera;table,\"A person sits down, puts their leg up on a table and then eats.;A person is walking into a room The person is then sitting at a desk. The person is playing with their phone while sitting.\",c061 2.10 18.20;c011 1.50 8.00;c156 5.00 16.80;c151 1.50 8.00;c154 16.80 22.50;c009 13.40 19.10;c063 0.00 12.70;c062 12.40 17.60;c051 4.30 20.20;c059 2.60 21.30;c018 21.50 27.80;c015 22.00 32.00,30.54\r\n2RFLZ,ENHU,Home Office / Study (A room in a house used for work),6,6,Yes,A person walks over to a desk and picks up a phone on the desk. They nod their head and hang up. They start watching the telephone and start grasping at the cord because they think they see a fly.,desk;head;phone;table,\"A person picks up their phone talks on it and puts it back down;A person walks into a room, takes a phone off a desk, talks on it briefly and then puts it back on the desk where it came.\",c009 7.70 13.00;c019 3.00 10.40;c017 8.00 12.60;c015 2.30 12.40;c018 2.40 6.90,14.71\r\nXOOTA,ENHU,Living room,6,6,Yes,\"One person snuggles a pillow and a blanket, then suddenly awakens and starts working with a vacuum.\",bag;blanket;floor;object;vacuum,\"A person is laying on the floor with a blanket they sit up and pick a vacuum up.;A person laying on the floor, covered in a green blanket rises up and grabs a nearby doll dressed in red.;A person wakes up from a sleep. There is a blanket. The person later then picks up red scuba gear.\",c072 0.00 5.40;c137 3.10 9.00;c146 0.00 6.00;c124 0.00 6.00;c125 4.50 9.00;c070 0.00 9.00;c020 3.00 9.00,7.71\r\nQE4YE,JTAS,Kitchen,6,6,Yes,A person is opening a bag and holding a broom.,bag;broom;floor;table,A person is holding and examining a bag. The person puts the bag on a counter and picks up a broom. The person then uses the broom to clean the floor.;A person looks in a af and then starts sweeping,c102 5.50 44.00;c022 4.20 9.70;c098 7.40 44.00;c127 6.80 44.00;c100 6.10 11.00;c020 0.00 8.20;c009 4.00 9.50;c021 0.00 3.50,42.75\r\nQI0EL,JQ7D,Living room,6,7,Yes,A person plays with a laptop on a sofa and then watches television.,laptop;sofa;table;television;tv,\"A person is on their laptop before they close it and try to turn on the tv.;The person is sitting on the couch holding a laptop, closes the laptop then turns on the tv as they place the laptop on the table.\",c123 0.00 32.00;c051 0.00 22.40;c132 23.50 32.00;c047 0.00 26.10;c049 21.80 26.40;c009 21.60 26.40;c048 0.00 26.40;c052 0.00 23.60;c046 18.20 22.80,31.04\r\nGKH0F,AT5D,Bedroom,5,7,Yes,\"One person takes a phone from a bag, sits on a small sofa, and starts playing with it. Another person on the sofa is grasping a box.\",backpack;bag;bed;chair;floor;phone;sofa/couch,\"a person picks up a backpack, starts going through it, pulls out a phone and sits next to the person already on the bed.;Person sitting on the sofa,a person walked in picked up a bag pack looked inside the bag got something out ,sat on the sofa next to the other person and they looked at the thing.;A person sits down on a couch while another walks in and looks through a backpack. The person sits down next to the other and pulls out their phone.\",c021 8.10 29.00;c135 1.10 34.00;c151 25.20 31.80;c018 23.40 34.00;c059 0.00 34.00;c123 0.80 34.00;c015 7.00 34.00;c022 24.00 31.60;c023 7.00 13.00;c152 6.20 16.10;c020 7.80 28.40;c126 24.40 28.70;c015 25.20 34.00;c016 27.00 34.00,32.71\r\n9YLUH,AT5D,Entryway (A hall that is generally located at the entrance of a house),5,4,Yes,One person runs in and works on a camera while another person fixes a loose doorknob.,camera;door;phone;table,A person is looking at a camera. Another person is bent over a doorknob by the entryway.;A person is standing in a kitchen using a camera. Another person is fixing the door.;A person is leaning against something looking at a camera while another person is bent over behind an open door.,c140 2.00 32.00;c016 0.00 32.00;c015 0.00 32.00;c087 0.30 9.90;c007 0.00 32.00;c154 1.20 6.50,30.88\r\nL8CC0,V044,Basement (A room below the ground floor),7,7,Yes,\"A person in the basement is walking around while holding a book in their hand. They look down at their shoes and realize they are not matching, and so they start laughing.\",book;floor;shoe,\"A person is pacing back for while reading a book at the end,the person starts to get emotional.;A person walks into the room reading  a book. They pace around for a bit, then notice that they have mismatched shoes on and begin to take them off.;A person walks around the bedroom while reading a book while wearing different color shoes.\",c026 0.00 37.00;c032 0.00 28.70;c057 33.30 37.00;c029 33.50 37.00;c149 26.90 37.00;c115 0.00 28.70;c057 25.60 37.00,36.50\r\nLV4U7,4UGC,Pantry,6,6,Yes,A person in a pantry is holding a broom while pouring medicine into a spoon.,broom;cabinet;door;medicine;spoon,\"A person holding a broom opens a pantry door and sets the broom next to the pantry. The picks up a spoon and pours some medicine in the spoon.;A person stares at a broom and cautiously places it into a closet before pouring some kind of powder onto a spoon.;A person is holding a broom while standing in the open doorway of a pantry, and the person sets down the broom and begins to pour medicine from a bottle into a spoon.\",c098 0.00 6.80;c008 2.80 10.80;c113 2.80 10.80;c128 17.70 31.00;c141 3.30 8.10;c099 11.50 17.70,30.21\r\n75M1Z,BONA,Living room,6,6,Yes,Person A is in a rec-room throwing a small ball up and down.  Person A stops and opens a box with a book and sits on the sofa and opens the book.,ball;book;box;couch;floor;sofa,A person is bouncing a ball and catching it.  This person then gets a book out of a box and sits down and reads it.;Person is standing in a living room throwing a ball then sat on the sofa to read a book.,c044 19.00 27.00;c026 22.40 32.00;c027 25.10 31.60;c030 19.00 27.00;c032 25.90 32.00;c123 23.60 29.40;c029 26.20 32.00;c041 19.60 25.70;c126 0.00 4.20;c126 1.50 6.20;c126 5.10 9.90;c151 23.70 29.10,30.79\r\n165K2,GFWE,Living room,6,6,Yes,\"A person is in a living room tidying up by the window, they then grasp a box from the floor and walk away.\",box;cup/glass/bottle;floor;table;window,\"A person walks to a window and straightens an item on the table.  This person then picks up a box and walks away.;A person is walking over to the window and moving the curtain. She looks out, then sets her coffee cup on the table by the window and leaves.\",c040 9.90 15.80;c092 0.00 5.00;c043 9.40 16.50;c012 0.40 7.00;c154 9.60 14.90;c042 9.40 17.10;c009 6.80 12.40;c109 6.80 12.30,37.25\r\nT63X2,BKWQ,Bedroom,7,6,Yes,\"A person awakens in bed. They sit up, and sneeze. They look around them in the covers, pull out a sandwich, and start laughing.\",bag;bed;bread;covers;food;groceries;sofa/couch,\"A person lying on a bed in a bedroom yawns, then finds a bag of buns then laughs.;A person is lying down with a blanket and suddenly sneezes, then the person picks up a loaf of bread and laughs.;The person is laying down, yawns, sneezes then finds a bag of food under where the person was laying down.\",c134 0.00 36.00;c133 3.50 36.00;c146 3.30 26.90;c149 22.20 36.00;c020 19.40 36.00;c023 18.30 28.90;c130 27.40 35.80;c122 0.00 36.00;c152 23.10 36.00;c153 8.10 19.00;c061 22.20 35.60;c022 30.70 35.80,35.21\r\nYVKIV,M7K8,Dining room,5,5,Yes,A person walks into the dining room holding a bag in their hand.  The person puts down the bag and picks up a book off the table.,bag;book;doorway;groceries;table,\"A person walks out of the room, comes back with a plastic bag and sets it on the table. The person then picks up and holds a book.;A person walks into a room and holds a book;A person is standing in a dining nook area and places an empty plastic bag on the dining table and then stands beside the table while holding up a book.\",c020 2.00 9.40;c022 4.40 9.20;c023 1.40 6.50;c026 7.40 32.70;c009 5.00 10.60;c130 3.30 13.40;c116 6.20 33.00;c030 6.30 13.70,31.92\r\nLH4VT,CO87,Dining room,7,7,Yes,\"A person is tidying up. They fluff a pillow and dust a chair. After tidying, the person leaves the room.\",chair;pillow,A woman standing at a table moving a cup around then she take a cloth and dust the chair.;A girl is gathering dishes while her cup of coffee sits on the table. She puts a pillow on the chair and wipes up another chair seat.,,31.88\r\nKNGRY,B6UG,Hallway,3,7,Yes,A smiling person is standing in their hallway holding a box with a sandwich inside. They grasp the box and walk to the kitchen.,book;box;doorway;food;sandwich;shelf,\"The person walked through the doorway holding a box. The person laughed, then set the box down and quickly picked it up again and walked.;A person carrying a yellow box walks into a room.  The person appears to laugh.  The person places the box on a ledge, then immediately picks it up and walks away.\",c040 0.00 31.00;c152 13.20 22.80;c043 17.10 22.50;c097 0.00 3.40;c149 13.30 18.10;c042 15.40 21.10;c061 0.30 31.00;c063 0.00 31.00;c068 0.00 31.00;c115 22.50 27.50;c043 28.30 31.00;c062 28.30 31.00;c097 28.30 31.00;c149 28.30 31.00;c042 28.30 31.00;c028 28.30 31.00;c081 28.20 31.00,30.25\r\nZDV60,ZDKC,Closet / Walk-in closet / Spear closet,7,5,Yes,A person turns a doorknob and goes in to a walk-in closet to select a shirt and a pair of shoes and they come out of the closet and start dressing themselves.,closet;clothes;door;floor;jacket;shoe;wardrobe,\"A person opens a closet door. The person looks inside and takes a jacket out, and puts it on. The person puts shoes on;A person walks up to a closet, opens the door, puts on a jacket, zips it and then picks up something off the floor.\",c141 1.40 11.40;c113 0.30 9.20;c056 23.00 29.30;c148 10.60 20.70;c055 25.40 32.00;c126 5.70 13.90;c000 9.40 15.60;c002 9.40 15.70;c154 24.40 29.60;c008 1.50 10.30,30.67\r\nXMYXI,0Z4M,Home Office / Study (A room in a house used for work),4,6,Yes,A person is smiling while searching internet on laptop.  Then a person put groceries away and sweep the floor with a broom.,broom;chair;desk;floor;laptop;table,\"A person is sitting in a chair at their desk working on their laptop and laughing, they then get up and begin to sweep the floor.;A man is sitting at a chair and working on a laptop. He begins to laugh at something before rising from his chair and leaving.;A person sits in a chair while laughing and playing on their laptop before standing up and sweeping the floor.\",c098 26.40 41.00;c047 0.00 27.40;c152 0.00 15.90;c149 10.10 15.50;c051 14.10 22.90;c154 23.80 29.20;c059 0.00 7.00;c100 26.80 37.00;c050 21.80 28.40;c127 26.20 41.00;c014 0.00 26.40;c049 22.60 29.20;c052 0.00 27.20;c102 26.00 41.00;c009 22.60 31.40;c011 0.00 28.20,40.25\r\nY2MGC,RLWG,Bedroom,6,6,Yes,\"A person, on the bed, is smiling while closing the laptop. Then taking a bagel from the box begins eating breakfast in bed.\",bed;box;chair;floor;food;laptop,\"A person closes their laptops lid and puts it aside. The person takes some food out of a box and begins to eat it.;A person is playing on their laptop, the put the laptop down and start eating food.\",c039 11.50 17.50;c040 8.90 30.80;c041 7.90 15.10;c135 0.00 33.00;c047 0.00 11.90;c049 6.70 13.10;c043 7.90 33.00;c059 0.00 33.00;c042 13.70 33.00;c152 0.00 4.10;c043 8.10 16.30;c125 0.00 33.00;c156 18.30 33.00;c061 18.00 25.60;c051 0.00 3.10;c044 12.30 17.40;c063 10.00 16.90;c046 0.00 10.20,32.00\r\nV0WK7,M7K8,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,One person is holding a bag of groceries watching as a second person is dressing into a coat from a wardrobe.,bag;clothes;winter coat,\"A person puts on a jacket. Another person stands by them smiling while holding a bag in their hands.;A person gets a jacket out of the closet, adjusts the jacket to put it on, the puts on the jacket. Another person observes this action.\",c020 0.00 31.90;c148 0.00 28.70;c001 0.00 29.70;c149 5.90 16.90;c152 6.10 16.10;c152 21.40 25.90;c002 0.00 3.20,30.96\r\nPAA7V,BONA,Kitchen,6,6,Yes,A person is sitting at the desk drinking a glass of milk.  The person finishes the milk and puts the dish into a box on the floor.  The person takes a toy out of the box and begins playing with it.,box;chair;cup;desk;dish;floor;glass;table,\"A person finishes their drink then starts playing;A young child sits at a table of homework and takes a long drink from a metal cup.  When finished, he places it in a yellow tub containing other items including toys which he takes out and plays with.\",c106 0.00 20.70;c107 0.00 23.90;c011 0.00 32.00;c044 20.00 25.00;c119 16.60 23.90;c014 0.00 32.00;c009 21.80 29.40;c059 0.00 32.00;c109 17.20 23.40;c118 0.00 23.60,31.42\r\nLBRYS,V044,Hallway,6,6,Yes,A person in the garage begins opening the door with the doorknob. But the the person has an awakening and begins throwing their shoes around.,door;floor;shoe,\"The person walks to the door, holds the door knob, kicks off shoes then holds the door knob again.;A person walks down a hallway. The person then proceeds to toss their shoes off of their feet. The person then stares at the shoes that are laying on the floor.;A person is walking and grasping a doorknob. The person the stops grasping the knob and takes of their shoes. The person grasps the doorknob again.\",c141 17.60 23.00;c057 5.50 16.90;c126 9.10 16.20;c054 8.90 13.40;c054 12.30 16.80;c056 7.80 15.40,21.67\r\nGA7SB,ZDKC,Bedroom,6,6,Yes,A person is undressing in their bedroom while eating a burger in a box on their bed and,bed;box;clothes;food,\"A person takes off some clothes before sitting on a bed and eating.;The man with hat took, off his jacket and sat on bed and started to eat his food;A person is standing in a bedroom, gets undressed then sits on the bed and begins to eat.\",c040 12.20 31.00;c044 18.30 24.20;c155 23.20 29.70;c151 0.00 17.00;c061 19.10 31.00;c041 14.00 24.30;c135 10.80 31.00;c156 19.10 31.00;c155 2.10 14.50;c000 8.20 13.90;c001 10.10 14.50;c043 12.10 16.20;c042 12.70 20.90,30.38\r\nSLAH4,ENHU,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person is grasping a doorknob, then tidying a desk and finally turning off a light in a home office / study.\",bag;cup/glass/bottle;desk;dish;doorknob;food;light;table,A person is holding a doorknob and slightly closes the door. The person goes to a desk and grabs a glass and some chips. They then turn off the light and walk away.;A person walks in a room closes the door walks to a table picks up some things truns out a light.,c141 0.00 3.90;c012 3.80 11.20;c023 5.90 16.00;c020 5.80 16.00;c107 2.80 16.00;c063 5.70 10.70;c120 3.10 9.00;c140 0.00 4.00;c105 10.00 15.30;c110 2.20 9.00,15.46\r\nNATEB,EDYS,Other,3,6,Yes,\"A person holding a broom is standing in the doorway, trying to fix the door so it will open all the way.\",broom;closet/cabinet;door,A person is cleaning a room.  The person closes doors to a large cupboard and then reopens one of the doors.;The video is shot sideways. A person is holding a pool stick and opening and closing a door.,c098 0.00 31.00;c102 4.60 9.00;c006 13.70 19.90;c008 15.60 22.20;c100 4.10 8.70;c112 12.50 25.20;c113 14.90 31.00;c141 15.20 31.00,29.83\r\nCIWWB,M7K8,Kitchen,5,5,Yes,One person holds a phone by the window and occasionally tidies with a towel while another is cooking at the stove.,clothes;food;phone/camera;stove;towel;window,One person cleans a window while another person cooks something on a stove.;Two people in a kitchen. One person in whipping the window while holding a phone. The other person proceeds to cook something in a pan.,c091 0.00 30.50;c147 0.40 31.00;c152 23.50 30.40;c092 0.00 2.80;c015 0.00 31.00,30.08\r\n3IPI3,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person takes a cup of coffee from the table and drinks from it. The person eats a sandwich while reading a book.,book;coffee;cup;food;glass;sandwich;table,This person drank out of a mug before picking up a book and reading it.;A person drinks from a cup then picks a book and opens it.,c009 5.50 12.00;c027 10.00 15.90;c106 3.20 9.30;c154 8.60 14.10;c030 8.60 19.00;c109 0.00 2.90;c115 8.90 19.00;c107 0.00 11.90;c065 7.90 13.00;c156 8.60 12.90;c110 0.00 12.20;c032 9.20 19.00;c026 8.50 19.00,17.92\r\nT96JC,I48P,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person opens their front door and runs into the entryway of their home smiling they throw down their shoes and pick up the vacuum.,door;floor;shoe;vacuum,A person walks into a door. The person then throws a bag on the ground. The person picks up a nearby vacuum and walks into another room.;A person opens and walks through the door and is carrying shoes. The person then takes a vacuum and walks out of the room with it.,c053 5.20 14.10;c137 7.90 20.40;c006 3.20 14.40;c054 1.10 8.20;c138 4.80 14.40;c008 6.70 22.00;c054 10.20 26.50;c150 1.50 7.00;c141 0.00 8.30;c126 5.50 10.80;c097 0.00 7.30,29.42\r\nL005N,I48P,Dining room,7,7,Yes,A person in their dining room is holding a pillow while watching some video on their laptop.,chair;laptop;pillow;table,A person is sitting on a chair holding a pillow and looking at a laptop computer on a table.;A person is sitting in a chair holding a pillow and looking at an open laptop.,c076 0.00 31.00;c051 0.00 31.00;c059 0.00 31.00;c011 0.00 31.00;c078 0.00 31.00,30.46\r\n8TSU4,ENHU,Kitchen,6,7,Yes,\"A person is standing in front of the sink and eating. They sneeze, and turn to grab something from the refrigerator.\",door;food;juice;refrigerator;sandwich;sink,A person is in the kitchen and sneezes.  This person opens the fridge and then gets something out of it.;A person is standing and eating some food. The person turns around and sneezes. The person walks and opens the fridge to grab some milk out of it.,c142 9.10 14.00;c143 6.30 13.10;c153 3.00 9.40;c063 8.40 13.60;c068 0.20 5.30;c006 9.30 14.00;c061 0.00 5.20;c156 0.00 5.50;c062 0.60 5.30;c008 6.10 11.90,12.58\r\n3G991,AT5D,Living room,6,7,Yes,A person is washing dishes and another person is holding a blanket.,blanket;clothes;dish;hands;mirror;sink;table;towel,\"A person holding a plate, goes to rinse it while another person holds a towel;A person is washing a plate while another person is standing there with a pillow;People  in a room one walking around with a dish in hand one holding a blanket in hand.\",c070 0.00 32.00;c121 4.50 22.40;c118 0.00 32.00;c139 3.20 23.30;c096 4.60 22.00;c120 0.00 9.20;c000 0.00 32.00;c033 0.00 32.00;c012 0.00 2.90,30.79\r\nSBM3M,CP6Y,Living room,6,7,Yes,One person puts shoes in a box and closes it. Another person is nearby sitting drinking coffee.,box;chair;coffee;cup;dish;floor;shoe;sofa/couch,People sitting down one pick shoes off the floor and pick them in a box while one drink out of a glass.;Two people sitting down in a room. One person drinking out of a glass while the other is putting shoes in a box.,c042 10.20 20.60;c106 0.00 21.00;c056 0.00 13.40;c043 9.70 21.00;c053 0.00 9.60;c118 0.00 21.00;c039 12.40 21.00;c054 0.00 8.80;c040 10.30 21.00;c127 0.00 14.70;c107 0.00 21.00;c123 0.00 21.00;c059 0.00 21.00,19.96\r\nPTQE0,M7K8,Living room,6,5,Yes,One person is tidying up dishes on a coffee table while another walks through with a vacuum.,chair;cup/glass/bottle;dishes;floor;food;glasses;table;vacuum,\"a person sitting at a table, fixing glasses of water while another person vacuums the carpet in the background;A person playing with a glass of water while another person walks around in the background with a handheld vacuum. A dog looks on.;A person is sitting at a table and fidgeting with a glass of water while a second person is using a vacuum cleaner behind the sitting person.\",c137 1.90 33.00;c011 0.00 33.00;c009 30.30 33.00;c107 0.00 5.10;c109 2.00 13.60;c059 0.00 33.00;c152 24.90 33.00;c149 24.40 33.00;c127 2.40 33.00;c061 1.40 12.80,32.21\r\nDO48Z,GFWE,Closet / Walk-in closet / Spear closet,7,7,Yes,\"The person was smiling and putting shoes on the shelf, laughing while accidentally hitting the doorknob.  There was a box on the floor.\",closet/cabinet;clothes;floor;shelf;shoe,\"a person picks up something off floor, places it on top shelf of closet.  The person turns around straighten shirt and leans against closet door facing.;A person is smiling and putting their shoes in a closet. The person stands in a doorway for a length of time.\",c056 0.50 9.50;c081 5.70 16.40;c154 14.10 30.90;c004 6.30 16.50;c002 0.00 6.40;c001 2.40 19.50;c114 0.00 17.80;c054 4.70 17.90;c053 4.60 9.50;c152 0.80 9.00,31.17\r\nCC2VQ,CP6Y,Kitchen,5,6,Yes,A person is seen smiling while vacuuming. They then begin washing the stove.,floor;stove;towel;vacuum,\"A person vacuums a floor while cleaning a stove?;A person is using a vacuum in the garage they stop pick up a towel and start wiping down the shelf with the towel.;Person in a kitchen is vacuuming the floor. Then sets the vacuum down and grabs a cloth, cleaning the stove.\",c137 0.00 14.80;c154 5.20 10.60;c038 15.10 23.00;c033 12.70 23.00;c127 0.00 11.30,22.04\r\nN2DZN,CO87,Laundry room,6,6,Yes,A person is grasping the phone and undressing by the cabinet.,clothes;dryer;hand;jacket;phone;socks,\"A person is undredding whle holding a phone, they then take off their socks and place them on a washer machine.;A person with a cell phone in their hand takes off some clothing and places them on top of a dryer.;A person takes off their hoodie with phone in hand. The person takes off their socks and puts them on the dryer.;a person is taking off a jacket and shoes and putting it on top of the dryer.\",c001 13.70 20.10;c000 13.80 18.20;c015 0.00 34.00;c155 0.00 32.00;c003 13.30 19.10,32.58\r\nKA09C,CO87,Laundry room,6,6,Yes,The person is pouring a bottle of stain remover onto their clothes in the laundry room. They are grasping the bottle with both hands. Then the person takes off their shoes and puts them aside. Then the person turns off the light.,clothes;cup;doorway;glass;light;pillow;shoe;wardrobe;washing machine,\"A person is cleaning some clothes with detergent in a laundry room.  The person then takes off their shoes and turns off the light.;A person pours something onto fabric sitting on a dryer, removes their shoes and socks, then walks out of the room, turning off the light.;A person cleans some clothes in a laundry room. The person takes their shoes off and puts them on the floor. The person turns the light off.\",c005 0.00 11.30;c109 7.00 12.20;c056 11.30 24.10;c057 9.40 27.20;c155 10.70 26.10;c004 9.80 30.70;c097 25.30 31.90;c054 13.40 18.50;c105 27.20 32.00;c107 0.00 12.20,30.50\r\nAVL8A,EDYS,Living room,5,6,Yes,A person is lying on the bed and smiling at the book.,bed;book;couch;phone/camera;sofa;table,\"Person coming in, laying on couch to open and read a book before deciding to jump up and leave the room.;A person sits on a sofa and leans on a pillow. The person flips through the pages of a book. The person gets up and walks away from the sofa.;Person lays down on a couch and opens a book. Then reads the book for several seconds before getting up and walking out of frame.\",c134 3.10 33.60;c152 4.80 12.20;c122 3.10 33.60;c015 30.30 35.00;c025 28.80 33.60;c154 29.30 34.10;c151 0.70 6.10;c029 5.50 10.00;c026 1.70 34.50;c027 3.80 8.50;c030 1.70 6.20;c032 4.50 32.90,33.96\r\nMRTH4,ENHU,Stairs,4,7,Yes,A person is putting on shoes and then laughing into a camera on the stairs.,clothes;floor;phone;shoe,\"A person is putting their shoes on and stops to look at their phone.;Person is sitting on steps putting shoes on, then starts smiling.;Person sitting on the bottom step of the stairs putting on shoes looking at a cell phone\",c149 4.60 10.00;c016 3.30 10.00;c152 4.60 10.00;c055 0.00 7.10;c125 0.00 10.00;c018 3.60 10.00;c015 3.10 9.20;c148 0.00 7.30,9.17\r\nH0L5S,M7K8,Bedroom,7,7,Yes,A person is sitting on the floor looking in the mirror.  The person stands up and grabs a towel off the door and leaves.,door;floor;mirror;towel,\"A person sits in front of a mirror then stands, picks up a towel, opens the door and leaves the room.;A person in a bedroom walks over to the door and sits down in front of it, looking into the mirror that is hanging on it. The person waits for a few moments before standing up, opening the door, and exiting.\",c096 2.20 23.80;c035 20.40 27.50;c008 23.30 29.40;c125 0.00 24.10;c151 0.00 4.80;c154 20.40 27.20;c141 23.30 29.00;c033 23.50 29.30;c097 25.00 31.00,29.75\r\nT7HZB,JTAS,Kitchen,3,1,No,A person is snuggling with a towel and watching the window after.,book;clothes;counter;hair;sweater;table;towel,\"A person is putting a sweater on the counter then dressing themselves with it.;A person dresses in the kitchen, then picks up a book and leaves the room.;A person puts a shirt on the kitchen counter, then takes the shirt and puts it back on, taking something from the counter and leaving.\",c148 5.80 21.40;c009 0.00 5.10;c001 0.00 5.10;c030 20.30 26.60;c002 5.00 11.10;c144 2.10 6.70;c155 0.00 4.20,25.54\r\nZXHCH,CP6Y,Home Office / Study (A room in a house used for work),4,5,Yes,The person takes their books out of their bag and puts them onto the desk.  They begin playing with their cellphone but then stop and open up the books and start studying.,bag;book;chair;desk;paper;phone;table,\"A person is taking items out of a backpack.  This person looks at their phone, and then sits down in a chair.;Person standing taking items out of a bag while standing by a chair then sat down at a desk.\",c027 4.70 10.80;c009 5.30 11.20;c011 19.30 26.00;c021 0.40 6.80;c151 18.30 25.20;c117 0.50 8.60;c030 3.20 7.40;c116 0.00 2.80;c115 0.00 2.80;c032 23.20 26.00;c026 3.90 8.00;c059 19.20 23.50;c018 6.90 12.20;c028 2.30 10.90;c017 17.90 23.00;c016 7.10 23.00;c015 7.10 23.00,25.12\r\nW86WR,JTAS,Living room,6,7,Yes,\"A person sits on the living room sofa, taking off their shoes. The person stands up and walks out, holding their shoes.\",bed;chair;clothes;laptop;shoe;sofa;table,\"A person is sitting on the couch taking of their shoes they put their shoes on the floor then they leave the room.;A person is sitting on a couch and then takes off their boots and then stands up while holding the boots, and walks out of the room.\",c123 0.00 2.60;c057 0.00 13.30;c154 8.90 16.00;c135 0.00 30.00;c009 2.70 7.40;c059 0.00 14.70;c051 1.50 14.50;c155 0.00 11.40;c054 11.10 17.40,29.38\r\n3IMTV,I48P,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is fixing a vacuum and then snuggling with a blanket taken from a box in an entryway.,blanket;box;chair;floor;vacuum,A person fiddles with a vacuum cleaner for a few moments before turning around to pick up a blanket and snuggle inside of it.;The person is trying to pull apart the vacuum cleaner then covers up with a red blanket.,c041 21.20 29.10;c044 23.20 29.50;c072 26.20 37.00;c073 21.40 29.50;c136 0.00 23.90;c059 0.00 37.00;c042 24.40 28.90;c070 24.20 37.00;c043 21.70 27.50;c040 22.80 29.10;c125 0.00 37.00,35.62\r\nBD9UN,M7K8,Living room,6,7,Yes,Person is laughing while standing in the doorway while another person is tidying some clothes.,clothes;doorway,A young girl is neatly folding a red coat while another lady watches her perform this in amusement;Two people in a room are standing and talking.  One is folding a sweatshirt and the other is pointing and laughing at the person folding the sweatshirt.  Both people are smiling and laughing when the sweatshirt is folded.,c000 0.00 31.00;c004 17.40 29.60;c149 0.00 31.00;c152 0.00 31.00;c002 0.00 2.50,30.29\r\nH7WMW,GFWE,Laundry room,6,6,Yes,A person is grasping a phone while cooking on a stove.,food;phone;pot;stove,\"A person is cooking on a stove while talking on a phone. The person stirs a pot with a spoon.;The person is using a spoon to stir something she is cooking on the stove while talking on a cell phone.;A person is standing at the stove, cooking, stirring whats in the pan with a spoon in left hand and talking on the phone with right hand.\",c147 0.00 31.00;c019 0.00 31.00;c015 0.00 31.00,30.21\r\nC46TD,GFWE,Kitchen,6,6,Yes,\"A person washes their hands in the kitchen sink while looking out the window. They remove a towel from the cabinet, dry their hands, then throw it aside.\",dishes;hands;towel;window,\"A person is standing in a kitchen, walks over to the kitchen sink and looks out the window above the sink. The person washes their hands at the kitchen sink while continuing to look out the window. The person reaches into a draw on their left side and removes a towel and dries their hands. Throws the towel to their right side and pops head to the right.;A person is washing their hands in the sink and then drying them off with a towel.\",c033 11.20 31.20;c092 0.00 15.00;c034 26.70 31.50;c035 11.20 19.10;c139 0.00 12.10;c036 25.90 33.00,31.67\r\n7MRKY,QAT6,Dining room,6,7,Yes,A person is tidying the room with a broom. Then the person closes a laptop that is sitting open.,broom;chair;desk;doorway;dustpan;floor;laptop;table,\"A person is sweeping the floor with a broom. They move a chair out of the way to get all the dirt in a corner. They then walk over to a desk and close a laptop.;A person swept the floor. After sweeping, the person swept the dirt into a dustbin. The person then set the broom down and walked over to a table. The person when closed a laptop that was sitting on the table.;There is a person sweeping the floor.  That person moves a chair and closes a laptop.\",c127 0.00 21.30;c098 16.90 23.50;c102 0.00 29.90;c046 29.90 36.10;c154 0.00 38.00;c097 34.10 38.00;c099 24.80 32.80,36.62\r\nU1DE4,ZDKC,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person is standing near the doorway that leads into a house and undressing, then the person is putting their outwear away in a wardrobe or cabinet.\",cabinet;clothes;door;entertainment center;shelf;window,A person stands by a door and takes a jacket off.  This person puts the jacket into a television cabinet.;A person is standing by a door and removes their coat. The person puts the coat in a cabinet by the television.,c113 16.60 27.40;c155 5.90 18.90;c141 0.00 7.70;c002 12.50 32.00;c001 21.10 29.50;c000 6.80 27.70;c008 20.10 29.50;c092 5.40 11.90;c081 21.40 28.70;c112 24.10 31.40,31.42\r\nLABN7,CP6Y,Kitchen,4,7,Yes,A person is holding a sandwich while another is washing a shelf.,sandwich;shelf;towel,\"One person is eating a sandwich while another person is cleaning a shelf with a towel.;People standing in the kitchen one eating and the other person is dusting the shelves.;A person taking items off a shelf and cleaning with a rag, another person standing at the counter watching.\",,22.00\r\nK8MZH,ZDKC,Kitchen,5,6,Yes,A person in the living room is standing by the light and turns it on. A person is walking to the refrigerator.,light;refrigerator,A person is standing by the front door they turn on the lights ant the switch they walk into the kitchen and walk over to  the fridge.;A person turns the lights on and walks into the kitchen. The person looks at something on the fridge.,c104 1.70 8.00,30.38\r\n41A89,VOOS,Kitchen,7,6,No,A person is working on cleaning out a refrigerator and then lying on a pillow in a pantry.,cup/glass/bottle;door;floor;food;groceries;pillow;refrigerator;shelf,Person sitting on the floor with front of a open refrigerator door throwing things out close the door then lay down on a pillow.;A person sits down in front of a fridge while throwing things away into a trashcan nearby. The person closes the fridge then rests on a pillow.,c142 18.40 30.90;c078 24.60 32.00;c061 1.20 14.20;c062 1.80 15.30;c063 1.70 9.70;c064 1.10 12.10;c064 6.00 13.50;c125 17.10 32.00;c082 0.00 6.00;c082 3.20 11.00;c130 0.00 6.40;c130 4.00 11.30;c130 9.00 15.90;c109 3.80 10.70;c109 9.90 16.10;c006 18.80 27.60;c124 23.20 32.00;c109 0.00 6.40,30.54\r\nCUQYX,I48P,Hallway,5,7,Yes,\"A person is lying on the floor. The sit up and take off their shoes, and put them in a bag. They then throw the bag against the wall softly.\",bag;floor;shoe,\"A person is laying down in a hallway, they take off their shoes.  They put their shoes in a bag and throw the bag.;A person is laying down in a narrow hallway. The person then sits up, removes shoes, places the shoes in a plastic bag, and tosses the bag onto the floor.\",c124 0.00 8.90;c053 4.40 28.60;c054 4.30 27.10;c058 22.90 29.80;c024 23.40 32.00;c056 3.40 25.30;c022 24.30 30.00;c055 6.60 24.60;c057 4.70 17.80;c023 13.90 18.20;c020 14.20 28.60;c021 15.10 21.30;c125 5.00 32.00;c146 1.50 6.60;c126 24.20 28.60;c057 28.60 32.00;c023 28.50 32.00;c020 28.60 32.00;c021 28.60 32.00,30.58\r\n3P055,BKWQ,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is dressing in front of a mirror and then washing a doorknob in an entryway.,clothes;coat;doorknob;mirror,\"A person walks to a door carrying a coat.  They then pull on a doorknob, put on a coat, look in a mirror and try the doorknob again.  The person walks away.;A person walks into a room and puts on a sweater, looks at it on from side to side and then checks all the locks on the door.;The person walks to the door, puts on a sweater then checks the door knob of the door before walking away.\",c141 29.50 39.10;c096 23.70 31.30;c148 7.50 27.70;c000 0.00 14.10;c140 29.70 40.00,43.00\r\nOETY6,AT5D,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is playing with a pillow next to a table. They then are seen holding coffee and taking little sips.,chair;coffee;cup;dish;floor;pillow;table,A person sits in a chair next to a table.  They are playing with a pillow by tossing it in the air repeatedly.  They stop and pick up a cup of coffee from the table and drink it.;A sitting person is flipping an oblong pillow over and over while intermittency taking sips from a mug next to him on the table.;Person sitting in a chair tossing a pillow up in the air while drinking from a cup.,c080 0.00 11.70;c110 8.60 18.10;c106 8.60 18.10;c118 9.50 19.00;c119 14.00 19.40;c059 28.70 32.00;c076 28.70 32.00;c107 28.70 32.00;c009 28.70 32.00;c126 28.70 32.00,30.67\r\n7HSZJ,ARRB,Kitchen,7,7,Yes,\"A person is cooking at the stove. Suddenly, they leave the stove, go to the window, and start throwing towels and yelling.\",food;stove;towel;window,A person was cooking on a stove. The person then walked over to a window and threw multiple towels at it.;A person is standing at a stove and cooking something in a pot and then turns and begins throwing towels at a window.,c036 15.00 26.00;c147 0.00 14.10;c034 17.20 22.00;c034 19.50 24.40;c033 15.30 21.50;c033 19.20 24.00;c035 15.20 20.10;c035 18.90 23.40;c092 17.00 26.00,25.00\r\nKHAH3,LXD5,Stairs,1,1,No,\"A person looks into a mirror as they drink a bottle of water, then the person begins to gather up some dirty dishes. The person smiles.\",book;stairs,A person walks down stairs while holding a book.;A person walks up some stairs while holding a book in their hands and staring at it intently while they continue to walk.;A person is reading holding up a book.,c026 0.00 31.80,31.00\r\n2OHTZ,I48P,Garage,4,7,Yes,A person opens their laptop. They play on it for a moment before taking a drink from a cup of coffee.,coffee;cup;dish;laptop;mug;table,A person opens a laptop and begins to play around on the computer. The person takes a couple drinks from a cup.;The person is standing up while opening a laptop and then grabs a travel mug and takes several drinks while messing with the laptop.,c048 0.00 5.30;c051 27.90 34.00;c052 11.00 25.80;c106 6.60 15.50;c107 11.00 25.80;c118 2.00 34.00;c120 0.80 6.30;c014 0.50 34.00,33.21\r\nH0Q6V,CP6Y,Living room,6,7,Yes,A person is sitting on the couch in the recreation room watching television.  The person laughs and takes their shoes off before lying down.,bed;chair;pillow;shoe;sofa;television,\"a person took their shoes off, laid down, and kicked their feet up before watching TV in a relaxed manner.;Person laying on the sofa then set up on the sofa take off shoes and looking at the television.\",c132 0.00 36.00;c122 13.90 36.00;c123 0.00 18.40;c057 0.00 13.10;c053 0.60 12.00;c078 11.70 34.90;c134 15.30 28.40;c054 2.20 15.00;c059 0.00 18.60;c058 4.20 13.10;c077 11.20 17.50;c135 0.00 18.40,35.17\r\nGLSU2,M7K8,Kitchen,5,5,Yes,A person walks into the pantry eating a sandwich.  The person takes a towel from the cabinet and washes their face with it.,cabinet;doorknob;food;groceries;paper/notebook;sandwich;towel,\"A woman stands in a kitchen, where she is eating a sandwich wrapped in a napkin. She paces, then opens a cupboard and removes a napkin to wipe her mouth before putting it down.;Person walking around in the room eating a sandwich get a towel out cabinet and wipe mouth.\",c113 13.10 19.30;c065 11.20 24.10;c038 15.10 26.10;c156 2.40 20.70;c115 0.00 15.50;c069 0.00 15.80;c130 0.00 16.30;c066 0.00 16.30;c067 0.00 15.50;c141 12.80 19.40;c034 23.80 29.20;c061 0.00 15.50;c033 14.80 28.80;c062 11.40 15.70;c035 14.20 19.70;c068 11.40 15.80;c112 15.00 19.40,31.08\r\nNRGQB,GE1M,Stairs,5,7,Yes,A person is walking down the stairs while holding a pillow.  The person then throws their shoes off by kicking them.,doorway;floor;pillow;shoe;stairs,\"A woman carrying a black pillow appears and begins to walk down stairs.  She walks down five stairs, kicks off her shoes and turns to go back up the stairs.;A person walks down some stairs while holding a pillow and kicks their shoes off.\",c076 0.00 13.00;c058 6.10 11.60;c126 6.20 10.50;c057 4.10 11.60;c097 0.00 4.30,11.71\r\nJVLAZ,BONA,Bedroom,6,7,Yes,\"Person is lying on bed sneezing, grabs medicine from chair and starts drinking water.\",bed;chair;cup/glass/bottle;dish;food;medicine;pillow;sofa/couch;water,\"A person awakens on a bed and sneezes before getting up. The person grabs a bottle of medicine, and drinks water from a cup.;Person laying on the bed sneezing then get up and sit on the side of the bed and drink a beverage.\",c134 0.00 19.80;c128 20.00 29.50;c106 19.40 29.50;c146 0.00 20.90;c133 0.00 21.50;c123 15.10 32.00;c122 0.00 19.10;c153 9.30 18.00;c061 19.70 32.00;c078 0.00 18.20;c118 20.00 32.00;c156 21.90 32.00,31.42\r\nMPN7K,CP6Y,Living room,7,7,Yes,A person is snuggling on the sofa while watching another person vacuum.,bed;blanket;couch;floor;pillow;sofa;vacuum,\"A person is vacuuming the floor while another person sits on the couch snuggling with a blanket.;Two people one on the sofa laying down covered with blanket,the other person standing vacuum the carpet;A person vacuums the floor while another person wrapped in a blanket sitting on the sofa watches.\",c123 0.00 25.00;c137 0.00 25.00;c072 0.00 25.00;c135 0.00 25.00;c070 0.00 25.00;c127 0.00 25.00,24.46\r\nSPF63,CP6Y,Bedroom,5,5,Yes,\"A person is sitting on the bed watching television and grasping a box.  The person opens the box and pulls out a camera, then throws the box on the floor.\",bed;box;camera;floor;phone;remote control;sofa/couch;television,A person is laying on a bed using the remote control to change the channel on the television. He then takes something out of a case and throws the case on the floor.;A person is sitting on a bed and watching television and they take something from a box and then they throw the empty box on the floor beside the bed.,c135 0.00 30.00;c132 0.60 16.40;c039 22.30 27.80;c041 14.80 21.20;c043 13.20 18.90;c045 24.10 29.70;c126 23.50 29.80;c015 18.80 28.40;c040 13.30 28.10;c042 23.90 29.50;c044 19.60 26.50;c123 0.00 30.00;c016 20.40 29.00;c122 0.00 6.80;c134 0.00 6.50,29.08\r\nFGRL2,AT5D,Home Office / Study (A room in a house used for work),7,7,Yes,A person holds coffee in one hand and grasps a phone in the other  while standing in the study.,bed;book;chair;coffee;cup;hand;homework;paper;phone;table,\"A person sits at a desk holding a coffee cup. The person reads from a piece of paper, then grabs a phone and starts playing with it.;A person sitting in a chair reads a book. They put the book down and look at something on the phone.;The person is sitting at a desk drinking a hot beverage while they read and check phone messages.\",c016 19.70 32.00;c115 3.80 21.10;c011 0.00 32.00;c015 2.60 32.00;c116 0.00 32.00;c145 0.00 32.00;c107 0.00 32.00;c117 2.00 8.30;c135 0.00 17.40;c032 0.00 22.20;c014 0.00 20.80;c026 0.00 16.90;c018 18.60 32.00;c059 0.00 32.00,30.75\r\nDG179,4UGC,Laundry room,6,6,Yes,Person is lying on floor next to broom looking at picture and smiling.,broom;chair;floor;table,A person sits down next to a broom and dustpan.  This person touches it and looks at it on the table.;A person sits at the table and stares into a lamp which is also placed on the table.,c124 0.30 32.00;c059 0.00 32.00;c011 0.00 32.00;c152 12.70 21.50,30.67\r\nTBRZ5,BONA,Basement (A room below the ground floor),5,5,Yes,A person is sitting down in a chair in the basement. The chair has a makeshift cushion on the bottom that is a pillow. The person can be seen playing with the phone while sitting down.,chair;phone;pillow,\"A person stood up from a chair, picked up a pillow and then set on a chair, sat back down on the chair and then pulled out a phone.;A person picks up a pillow and fluffs it, puts it on a chair, sits in the chair, pulls a cell phone from his pants pocket and starts using it.\",c015 15.80 26.30;c016 22.80 33.00;c059 12.50 33.00;c151 0.00 17.00;c076 1.80 13.20;c080 7.00 13.20;c077 6.80 15.60,31.54\r\n4YBN9,0Z4M,Closet / Walk-in closet / Spear closet,3,4,Yes,\"One person opens a bag on a small desk, then closes the bag and leaves the closet.\",bag;closet/cabinet;clothes;desk;door;pants;shirt,A person stood in the closet tucking in their shirt and then walked into another room.;A person is doing something with his hands. Then he walks away. He is wearing a white shirt. he has dark skin.;A person is in a bedroom at a closet they are folding clothes they walk over and open a door.,c008 21.70 29.40;c097 24.90 33.10;c021 2.70 15.70;c113 22.20 29.30,33.42\r\nGQ341,GFWE,Dining room,6,6,Yes,A person is sitting at the table with food in front of them.  The person pours a cup of coffee.  The person picks up a camera and laughs as the person looks at photos loaded onto it.,chair;coffee;cup;glass;mug;phone;picture;table,\"A person sits down and pours a cup of coffee before playing on her phone.;A person sits down and pours some coffee into a mug.  This person picks up their phone and smiles at it.;A girl sits down and pours herself a drink of coffee from pot into a mug. Then she begins to play on her phone, smiling as she does so.\",c151 0.00 2.60;c011 0.00 4.30;c108 0.80 5.20;c149 6.00 14.10;c152 6.00 32.00;c059 0.00 32.00;c015 4.00 32.00;c016 6.20 32.00;c009 2.50 8.20;c088 5.00 32.00;c085 5.60 32.00,30.88\r\n3HLP7,GFWE,Living room,6,6,Yes,A person closes the door to the room.  The person grasps the edge of a picture and straightens it.  The person sneezes as the person turns to look out the window.,closet/cabinet;door;picture;window,\"A person closes the door, straightens one of the pictures on the wall, looks out the window and sneezes.;A person closes the door. They move the camera towards the sink before staring out the window.\",c006 0.00 4.60;c083 0.80 7.20;c092 8.30 32.00;c153 9.40 16.80;c088 0.90 10.00;c141 0.00 4.80;c112 0.00 4.50,30.83\r\n9UU4W,GFWE,Living room,6,6,Yes,Person is tidying the living room by picking up the books and glasses and throwing away garbage from the night before.,bag;book;cup;dish;food;groceries;magazines;medicine;table,\"A person walks to a table and tidies it up by picking up some magazines and a plastic bag.;A person is in the living room their are cleaning off the table they pick up a bag and some magazines.;Person walked to the table pick up magazines from the table,pick up a plastic bag that was on the table and put some stuff from the table in the plastic bag and looking around.\",c107 5.10 32.00;c026 2.20 32.00;c116 8.10 21.50;c023 8.20 32.00;c128 6.50 12.10;c120 4.00 9.60;c062 7.90 15.50;c030 2.60 7.50;c117 2.20 7.70;c110 20.20 26.10;c012 0.00 25.10;c021 14.50 21.50;c115 0.20 32.00;c020 10.00 32.00,31.42\r\n9ESSY,AT5D,Stairs,4,4,Yes,A person playing with a phone while another person is walking with food.,floor;food;phone,A person walks up stairs where another person who is playing on a cell phone is sitting.;The person walks up the stairs past another person sitting on the stairs playing a game.,c061 0.00 18.80;c015 0.00 32.00;c016 0.00 32.00;c125 0.00 18.80,30.58\r\nDGPAW,CP6Y,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person holds a picture, then places it on a shelf. The person then leaves the entryway.\",door;picture;self;shelf,\"Person is standing there briefly holding a picture frame.  Places it on a shelf then opens the door and leaves.;A person stands and looks at a picture.  This person puts the picture on a shelf, and then walks out the door.;A person is spinning a picture around before they place it on the mantle in the room.\",c081 5.10 13.00;c006 11.90 17.90;c088 0.00 8.60;c008 10.50 16.60;c084 0.00 12.40;c141 10.20 14.90;c086 3.50 12.80;c097 10.30 17.60,16.54\r\nWD35N,EDYS,Recreation room / Man cave,2,6,Yes,\"A person opens a cabinet, takes a pillow from inside, and closes the cabinet. Grasping the pillow, the person leaves.\",bag;bed;cabinet;door;floor;phone/camera;pillow,\"A person walks and opens a large storage drawer. The person takes something out of it and points the camera towards someone on the floor.;The person opens the cupboard, takes out a pillow like object then turns the camera to another person sleeping on the floor.\",c079 8.90 14.30;c113 3.90 9.70;c077 9.20 22.20;c078 8.30 24.40;c018 23.20 30.10;c023 5.30 18.50;c124 25.00 31.00;c134 24.20 31.00;c141 3.30 8.50;c008 3.80 9.60;c020 7.70 21.90;c076 12.40 22.20;c112 3.90 9.00;c006 12.10 18.70,30.29\r\nE002I,CP6Y,Bedroom,7,6,Yes,\"A person runs into the bedroom and lies down on the bed, snuggling up to a pillow. The person gets up to close the door, then quickly returns to the bed.\",bed;door;light;pillow,\"The person enters the room, lays down on the bed with a pillow, then gets up and closes the door, then lays back down on the bed with a pillow.;A person runs into a room and falls onto a bed. The person then gets out of bed, closes a door, and gets back in the bed and lays on a pillow.;A person walks into a room, lies down on a bed, gets up, goes back to close the door, then lies back down.\",c134 4.70 14.10;c006 12.90 19.70;c078 4.10 13.40;c141 14.30 19.70;c079 3.00 8.30;c104 0.00 4.10;c077 4.10 9.40;c151 2.60 8.20;c150 0.30 7.30;c154 9.40 15.20;c097 1.10 5.70;c076 3.80 14.50,23.75\r\nYIG5G,CP6Y,Living room,6,7,Yes,A person is in the living room drinking coffee. Another person walks through carrying clothes to put away and person one offers them a glass of coffee. Person two accepts so person 1 pours a cup of coffee for them.,chair;clothes;coffee;cup;curtain;dish;doorway;glass;sofa/couch;table;towel,\"The person is sitting and drinking something while another person comes in the room. The other person sits down, and the sitting person hands that person a drink.;A person is sitting on a couch drinking from a mug.  Another person walks into the room carrying some folded clothes, then sits in an adjacent chair. The person in the chairs scratches their head while the person on the couch pours a beverage from a thermos into another mug and hands it to the person in the chair.  The person on the couch closes the thermos and both people started to drink.\",c106 0.00 7.10;c107 0.00 11.70;c108 15.20 25.60;c151 11.70 17.40;c120 14.70 37.60;c119 13.00 32.20;c118 13.90 30.80;c035 0.00 17.00;c002 0.00 16.50;c033 1.30 38.00;c123 0.00 38.00;c110 9.90 15.70;c097 1.10 6.40;c000 1.30 38.00;c009 13.00 18.30;c109 7.00 12.60;c011 0.00 38.00;c059 12.30 38.00,36.58\r\nD6DC1,M7K8,Hallway,4,4,Yes,\"A person awakens, holding a coffee. The person looks confused, looks in the mirror, shrugs, then leaves.\",coffee;cup;floor;mirror,A person is laying on the floor in the hallway with a cup of coffee. They they stand up and smile into a mirror.;A person lays on the floor while holding a cup of coffee they get up and smile into a mirror and then they walk away.;A person walks by a mirror holding a coffee cup lays on the floor then they get up go over to the mirror and smile into the mirror.,,29.25\r\n4H61U,GFWE,Bedroom,5,7,Yes,A person is tidying their wardrobe. They then pick up a garment from a chair and dress themselves with it.,chair;closet;clothes;jacket;wardrobe,\"A person moves a jacket around in a closet, then takes another jacket from the chair and puts it on;The person is organizing a closet. The person then takes a jacket from the closet and puts it on.;A person is looking through a closet, adjusting items in the closet. The person then picks up a sweater off of a chair and puts it on.\",c148 19.00 31.00;c002 11.90 17.80;c004 0.00 14.90;c114 0.00 14.90;c001 1.50 13.10,30.42\r\nWX8N8,M7K8,Home Office / Study (A room in a house used for work),6,6,Yes,A person is smiling as the person looks in the mirror. The person begins undressing and then wraps himself in a blanket.,blanket;chair;clothes;couch;jacket;mirror;towel,The person took off a jacket and put it on a couch and replaced it with a blanket while standing in front of a mirror.;A person is standing in front of a mirror they take off their jacket and pick up a blanket and then they wrap the blanket around them.;A person admires themselves in the mirror. The person takes off a shirt and puts on a blanket she picks up.,c070 8.70 31.40;c073 8.70 19.00;c148 6.80 21.20;c035 6.20 21.50;c000 0.00 32.00;c152 0.00 32.00;c002 0.00 32.00;c096 0.00 32.00;c003 6.30 10.80;c033 7.70 32.00;c001 5.90 11.10;c094 0.00 10.00;c072 12.10 32.00;c155 2.60 9.90,31.38\r\nNUW9G,M7K8,Dining room,5,7,Yes,A person throws a towel into a bag. The person closes the bag and leaves.,bag;clothes;towel,A person holding a plastic bag puts and item into the plastic bag then walks out of the living room;A person picks up some sort of blue cloth object and places it into a plastic shopping bag.,c020 0.00 9.20;c021 0.00 6.50;c033 0.00 6.30;c034 0.00 6.80;c001 0.00 6.80;c000 0.00 10.20;c022 28.80 32.00;c000 28.80 32.00,30.79\r\n5B9XE,ZDKC,Bedroom,3,6,Yes,\"A person runs into the bedroom, undressing. The person checks their phone, turns off the light, then jumps in bed.\",bed;clothes;doorway;light;phone,\"A person runs into a room and takes their jacket off.  This person looks at their phone, and then turns the light off.;A person jogs through a doorway, taking their hoodie off and putting it on a bed. The person takes their phone out and turns off the ceiling light.\",c016 8.60 23.90;c105 18.70 29.00;c150 0.00 13.90;c002 3.00 10.50;c000 3.60 12.00;c003 6.50 11.30;c155 2.30 10.40;c015 7.80 25.10;c097 0.00 3.10;c001 6.70 11.30,31.96\r\n79VVK,GMOW,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person takes a blanket from a shelf in their closet.  They also grab some medicine, and run out of the closet.\",blanket;closet/cabinet;clothes;cup/glass/bottle;doorway;floor;medicine;shelf;towel;wardrobe,\"A person walks into a closet, rummages through the clothing, finds the clothing he is looking for and leaves the closet.;A person takes a blanket and a toothbrush from a closet.\",c070 15.10 24.40;c071 15.10 24.40;c073 15.10 20.40;c128 24.20 38.30;c150 30.90 37.50;c000 15.50 23.60;c002 15.10 21.40;c034 17.00 23.40;c001 17.00 23.40;c036 18.00 23.60;c074 18.00 23.60;c107 24.40 41.00;c035 16.20 23.40;c097 0.20 5.60;c097 17.40 22.80;c097 21.00 27.20;c114 1.00 19.50;c126 16.80 23.80;c110 31.70 41.00;c082 0.00 41.00,40.08\r\nTU9K1,ZDKC,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is sneezing into a mirror, then tidying clothes, and finally grasping a doorknob in a Closet / Walk-in closet / Spear closet.\",closet/cabinet;clothes;door;mirror;towel,\"A person is standing at the bathroom sink looking into the mirror and sneezing they walk over to the closet grab a couple of shirts fold them and close the closet door.;A person is standing in the bathroom in front of the mirror and sneezing, then walks to a closet and pulls out some clothes.\",c096 4.60 13.60;c000 16.40 24.30;c141 35.10 42.00;c153 1.10 9.40;c148 13.30 42.00;c113 16.20 42.00;c037 15.90 35.20;c006 34.10 40.80;c008 37.00 42.00;c004 15.90 35.40;c114 15.90 35.40;c112 36.00 41.20;c001 20.10 25.10;c002 15.70 21.00,41.08\r\nRON2M,VOOS,Closet / Walk-in closet / Spear closet,6,7,Yes,\"One person puts a book and a picture in a bag, then leaves the closet holding the bag.\",bag;book;closet/cabinet;door;picture,A person wearing a blue sweater opens a coat closet and retrieves several items from inside to put in a bag they are holding.;A person is next to a closet.  The person takes various things out of the closet and puts it in a bag and leaves.,c028 7.80 15.60;c086 8.70 16.50;c020 5.00 17.90;c021 10.20 19.50;c154 0.00 31.00;c023 0.00 31.00;c112 22.10 29.70;c026 6.10 17.40;c113 0.00 7.00;c030 16.30 23.20;c141 0.00 6.40;c006 22.40 29.90;c084 5.80 16.00;c008 0.00 6.60,30.46\r\nBDNMB,ARRB,Hallway,7,7,Yes,\"One person holding a box and a laptop starts working on the laptop, using the box for a work surface.\",box;laptop,The person is using a box as a base to hold the laptop as the person types on the keyboard.;A standing person taps out something on a laptop on top of a box.,c040 0.00 26.00;c052 0.00 26.00;c154 0.00 26.00;c047 0.00 26.00,25.25\r\n7177T,GFWE,Closet / Walk-in closet / Spear closet,7,6,Yes,\"A person is taking clothes out of a wardrobe. Then, opening the door, the person begins smiling as the person turns the light on.\",closet/cabinet;clothes;door;light;shelf;wardrobe,\"Person went to the closet got two outfit,pushed the closet door hold on to the outfit and turned on the closet light.;Person standing in the closet hanging up a blue jacket then turn on the light.\",c000 2.20 31.00;c104 14.90 20.30;c008 9.80 18.20;c152 12.20 31.00;c002 1.50 15.60;c149 15.20 31.00;c082 0.00 12.90;c113 12.20 19.50;c114 0.00 16.40,30.21\r\n0KTWY,BPXZ,Bathroom,6,7,Yes,A person is pouring a cup of coffee from a thermos. The person sits down on the toilet and begins playing with their phone.,coffee;cup;dish;food;glass;mirror;phone;table,A person fills some water up and sits on a toilet with their phone. The person continues to play on their phone;A woman stands at a bathroom sink and pours herself a drink before moving to sit on the toilet seat and play on her phone.,c016 6.30 24.00;c106 0.00 8.10;c151 6.90 12.80;c119 0.00 10.80;c061 0.00 10.90;c156 0.00 10.30;c118 0.00 10.70;c109 3.90 8.50;c108 0.00 4.70;c018 4.80 9.70;c096 1.70 7.40;c015 4.80 24.00;c107 0.00 8.40;c109 1.10 5.80,23.08\r\nMSACP,SW82,Recreation room / Man cave,7,7,Yes,\"A person is fixing their camera. Smiling, the person takes a sip of their coffee.\",bag;camera;chair;coffee;couch;cup;glass;phone;sofa;table,A person is sitting on the couch taking a camera out of a bag and then drinks some coffee.;A person sitting on a couch opens a bad and then takes a drink.;A person is sitting on  a chouch going through a bag they take out a camera then they get a drink of coffee then they take the batteries out of the camera.,c106 13.00 19.00;c018 0.00 2.80;c123 8.00 31.00;c110 12.00 17.00;c152 13.20 22.40;c107 13.30 22.40;c021 0.00 9.40;c016 5.40 31.00;c109 17.10 22.60;c009 17.10 23.00;c015 3.60 31.00;c059 0.00 31.00,29.96\r\nPCNUP,ARRB,Closet / Walk-in closet / Spear closet,7,7,Yes,A person turns on the light then puts down a picture. The person then starts smiling while dressing in the closet.,clothes;coat;doorway;floor;jacket;light;picture;shelf,A person is holding a picture. They walk into a closet and place the picture on the floor. They pick up a jacket and put it on.;A person walks into a closet with a picture. The person puts the picture down and puts a coat on.;A person walks into a closet with a picture and puts the picture on the floor and then puts on a jacket and stands in the closet wearing the jacket.,c148 10.90 23.70;c086 4.30 9.70;c081 1.40 7.40;c084 0.00 9.10;c097 6.50 13.50;c000 9.20 20.30;c002 9.30 13.80;c104 2.00 7.10;c152 13.50 25.00,23.58\r\nV6RRM,ENHU,Dining room,6,7,Yes,\"A person awakens in a dining room holding a bag of groceries. They grab a towel, wipe the table, and start undressing.\",bag;chair;clothes;jacket;table;towel,\"A person a sleep on a table .The person wakes up and wipes the table off .The person proceeds to stand and start taking their jacket off.;A person wakes up, wipes down a table with a nearby rag, then appears to begin taking their hoodie off.;There is a person sitting at a table with their head down.  That same person then wipes off the table with a towel and starts to take off their shirt.\",c146 0.00 4.60;c154 11.10 16.00;c059 0.90 14.50;c013 6.10 12.50;c002 4.20 9.30;c038 6.60 12.00;c037 4.00 13.10;c011 0.00 15.30;c155 8.80 16.00;c012 5.40 12.30,15.04\r\n6CAZU,P2J3,Living room,4,7,Yes,A person is walking to get a sandwich. another is putting on some shoes.,chair;counter;food;glass;other person;sandwich;shoe;window,\"A person is sitting in a chair putting on shoes, while another person is holding a glass of water.;A person is sitting and tying their shoes when another person walks into the room and picks up a cell phone.;A person is sitting at the table and putting his shoes on. Another person enters with a snack and begins eating.\",c065 18.00 29.10;c067 11.90 19.60;c069 10.60 16.10;c059 0.00 4.90;c055 0.00 33.00;c092 5.50 22.20;c061 9.80 33.00;c156 21.20 27.90,31.71\r\nSH6MU,NMK2,Living room,6,6,Yes,A person is drinking a cup of coffee while another person is standing with a box of clothes.,blanket;box;clothes;coffee;cup;towel,\"Two people stand in a room. One drinks something from a blue mug. The other holds a box with what appears to be a bunch of rags inside. That person walks around the room, pointing at the contents of the box.;Two people in the room walking around in a circle,one drinking coffee,the other with a small box with stuff in it adjusting the stuff in the box.\",c000 0.00 31.00;c040 0.00 31.00;c106 0.00 31.00;c107 0.00 31.00;c001 0.00 31.00;c033 0.00 31.00;c042 0.00 31.00;c044 0.00 26.00;c071 14.00 31.00;c043 11.50 20.70,29.58\r\nQLAS7,GFWE,Dining room,6,7,Yes,A grasps a picture and looks at it. The person then throws it into a cabinet and walks out.,cabinet;door;paper/notebook;picture;shelf,\"A person is looking at something and then puts it in the cabinet and leaves the room;A person looks at a board of some sort, then puts the board away in a kitchen cabinet, then leaves the frame of the camera.\",c112 11.00 17.40;c113 9.40 15.60;c084 0.00 16.60;c088 0.00 12.30;c145 0.00 12.20;c006 11.00 17.40;c114 10.60 18.50;c008 10.50 17.10;c086 8.50 16.60;c081 11.70 16.50;c115 0.00 16.50,30.75\r\nOGX19,V044,Basement (A room below the ground floor),7,7,Yes,A person in the basement is sitting down in a chair that is next to a window. They start laughing and smiling because they are watching a funny video on their phone.,chair;phone;video,Person sitting in a chair looking at a cell phone then began to laugh while putting hand up to face.;A person is sitting in a chair and laughing while playing with a camera.,c016 0.00 30.00;c059 0.00 30.00;c149 0.50 22.60;c152 22.20 30.00;c015 0.00 30.00,29.42\r\nAGGSE,ZDKC,Living room,5,7,Yes,\"A person is sitting on a sofa holding a bottle of medicine. They sneeze, and throw the bottle into the garbage.\",cup/glass/bottle;floor;medicine;sofa;trash can,\"The person was sitting on a sofa holding a bottle of medicine looked at it read the label,got up put the medicine in a trash can sat back on the sofa.;A person is sitting on the couch holding a bottle of medicine they sneeze then they get up and put the medicine on a shelf then they sit back down.;A person is sitting and looking at an object. The person is sneezing. The person is walking and putting the object onto a table.\",c128 0.00 21.30;c151 21.20 25.90;c126 16.20 22.00;c123 0.00 19.50;c154 15.10 21.80;c107 0.00 21.80;c153 8.90 15.00;c109 17.20 21.80,28.08\r\nQN7Y2,CP6Y,Living room,6,,No,One person opens a cabinet with a television and watches it while propped against a pillow.,blanket;cabinet;door;floor;groceries;picture;pillow;television,\"A person walks in front of a tv, kneels to the ground, opens up a cabinet, puts their elbow on their knee and looks at the screen.;Person walked to a living room carrying a pillow bend down in front of cabinet opened the door adjusted the television and rest head on the hand watching the Television on the wall.\",c113 6.10 12.50;c132 13.00 20.00;c076 0.00 5.80;c008 2.40 11.50;c112 9.50 15.40;c125 2.90 20.00;c088 11.20 20.00;c151 1.30 7.40;c070 17.20 20.00,19.17\r\n0WYBK,ENHU,Recreation room / Man cave,4,7,Yes,A person in their recreation room is opening up a book while eating some groceries. They are watching a picture that they found on the ground.,book;chair;dish;food;phone;picture;sandwich;sofa/couch,\"A person is sitting in a chair, reading a book and eating a sandwich.  The person then sets down the book and retrieves another from the floor as they pick up their mobile phone.;A person is sitting in a chair and eating a sandwich while reading a book;There is a person sitting in a chair eating a sandwich while reading a book.  That same person puts the book down on the floor and picks up something.\",c026 0.00 13.00;c059 0.00 16.00;c065 1.80 8.80;c067 1.80 8.80;c118 0.00 16.00;c062 2.20 9.00;c088 10.70 16.00;c123 0.00 16.00;c027 0.00 4.70;c084 9.70 16.00;c032 0.00 12.60;c028 8.20 12.80;c025 7.50 12.10;c116 7.50 13.10;c063 2.10 9.30;c115 0.00 13.40;c061 1.10 9.20;c068 3.70 8.90;c156 1.90 7.40,15.50\r\nGMPHO,ZDKC,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is seen holding a towel, opening their closet door. The person then begins working on taking things out and walking out the doorway.\",bag;closet;clothers;clothes;door;floor;towel,person is standing with a towel then opens a closet door and starts to rummage through things.  then walks off with the towel.;A person opens the closet takes stuff out and leaves the room;A person holding a towel opens the doors of a closet and begins tossing items out of the closet and onto the floor and then the person walks away while still holding the towel.,c008 1.00 9.00;c033 0.00 41.00;c113 1.00 9.80;c036 0.00 41.00;c114 1.80 41.00;c003 1.60 41.00;c022 10.60 16.60;c002 13.60 35.00;c001 13.60 35.20;c141 2.80 10.20;c097 34.40 41.00;c126 7.80 15.40;c126 11.80 19.60;c126 17.00 22.80;c022 31.40 41.00;c002 31.40 41.00;c001 7.80 15.40;c001 11.80 19.60;c001 17.00 22.80;c141 0.60 5.40,39.83\r\nO1LMX,4UGC,Stairs,7,7,Yes,A person is standing on the stairs with a laptop and a book.  The person then is sitting down on the stairs.,book;floor;laptop;paper,A person holds a book and a laptop. The person puts the book away and opens the laptop up while sitting down.;A person is standing and holding a laptop and a book. The person looks at the book and places it on a table. The person sits down and opens up the laptop.,c026 1.90 14.30;c032 2.10 14.20;c145 18.70 31.00;c052 18.90 31.00;c151 15.00 23.00;c125 17.40 31.00;c048 11.50 18.80;c047 0.00 31.00;c028 8.40 14.20;c125 15.90 21.50;c029 5.70 12.40,30.00\r\nFG9NT,CO87,Bathroom,7,7,Yes,\"A person is working on the sink, fixing its pipes. Then the person takes a break and begins eating a snack as the person plays on their phone.\",dish;floor;food;phone;sink,\"A person touches the pipe under the bathroom sink.  This person then sits down and eats from a bowl while looking at a phone.;A person in the bathroom fixing plumbing under the sink, then picking up phone and a dish of food then eats whats in the dish.\",c015 13.80 28.00;c156 11.50 20.90;c120 7.50 24.80;c118 7.70 28.00;c063 7.50 13.00;c061 10.00 28.00;c016 4.70 11.70;c125 0.00 28.00;c062 8.50 28.00;c018 4.40 9.60,27.25\r\nRAGOI,ENHU,Bedroom,6,7,Yes,\"A person in their bedroom is watching the television. As they stand up to grab a towel, they start sneezing, and then put the towel on top of a table.\",cloth;couch;picture;sofa;table;television;towel,\"A person is sitting on a sofa watching television, then sneezes several times before standing and wiping their nose with a towel.;A person sits and watches TV. The person then stands up and starts sneezing into their hand while cleaning their face with a cloth.;A person sneezes then stands up and wipes his face.\",c033 6.20 12.00;c154 2.70 7.20;c000 5.80 12.00;c003 8.70 12.00;c009 7.40 12.00;c123 0.00 6.80;c002 5.00 11.00;c132 0.00 11.30;c088 0.00 6.00;c153 1.70 8.80,10.92\r\nHQ8K2,CP6Y,Living room,5,6,Yes,\"A person is in a living room standing by a desk, they then start sneezing as they reach for some dishes.\",dish;food;plate;sandwich;table,A person sneezes and then walks over to a table and starts to pick up a plate with a sandwich on it.;A person standing by a door sneezes and then reaches for some food on the table.;A person is standing. The person then sneezes. The person walks across the room and bends down to reach for some food.,c118 13.30 17.00;c153 2.80 9.90;c120 13.60 17.00;c063 13.60 17.00,16.33\r\nDTNFC,CP6Y,Bathroom,7,7,Yes,A person is standing and washing their hands at the sink. They are wearing a blanket and sneezing multiple times.,blanket;hand;mirror;sink,\"A person is washing their hands in the bathroom while wrapped in a blanket, sneezing uncontrollably;A person with blanket, sneezing in  bathroom frequently, and washing his hands in sink.\",c139 0.40 19.60;c096 0.00 2.80;c070 0.00 21.00;c153 2.20 21.00;c072 0.00 21.00,19.88\r\nHHNTA,M7K8,Living room,7,7,Yes,\"A person paces back and forth, finishing up a sandwich. They then open a box, start undressing and toss their clothes in.\",box;clothes;food;sandwich;sweater,\"A person is walking around the room eating a sandwich. A person then takes off a sweatshirt and puts it in a box.;The person walks back and forth while eating, once looking into another room. The person stops and removes a sweatshirt, and puts it in a box.;A person is walking back and forth in the living room while eating something and then the person takes off their hoodie/sweater and puts it in a box on the couch.\",c001 23.90 31.60;c065 0.00 14.70;c156 0.00 14.50;c041 24.90 31.10;c155 13.90 26.20;c067 0.00 14.20;c061 0.00 14.20;c148 12.00 27.40,33.79\r\n2P7A9,I48P,Home Office / Study (A room in a house used for work),4,5,Yes,A person is tidying their office with a broom. Then the person puts a picture on their desk.,broom;chair;desk;floor;paper;phone/camera;picture;table,\"A person tidies the floor with a broom. They put down the broom, then take a picture from the top of a cabinet.  They walk over and sit down in a chair at a desk and put the picture on the desk after looking at the picture for a second.;The person is sweeping the area around a table and straightening papers on a desk the person sits at.;A man walks into the room and begins to sweep with a broom, quickly, then takes an item from the desk and sits down at his own desk.\",c099 18.80 24.00;c009 26.90 33.40;c151 24.40 31.10;c127 0.00 22.90;c088 26.90 31.60;c098 0.00 4.30;c102 0.00 23.70;c059 20.90 30.30;c087 20.40 27.60;c086 26.50 35.80;c011 28.30 37.00;c084 22.40 32.70;c012 28.90 37.00;c083 22.00 26.70,36.08\r\nMXRF4,ENHU,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is standing in front of a desk and tapping the back of the desk chair. They arrange some items on the desk, take one, and walk away.\",desk chair;table,\"A person wearing blue jeans and a long sleeve shirt stands behind an office chair and desk. The individual then tidies the items on the desk before turning around and leaving.;A man stands in front of a chair. He reaches to touch the window before walking out of the room and out of the frame, crossing the floor in his bed room.\",c012 1.30 10.20,10.50\r\nCEZ4D,ENHU,Stairs,3,7,Yes,A person is undressing under a blanket and then holding a broom on the stairs.,blanket;broom;clothes;floor;hoodie,\"A person covers himself with a blanket to take off his jacket and then grabs a broom.;A person sitting at the top of a stairway puts on a blanket and wraps it around, then takes it off and picks up a broom.\",c100 26.40 33.30;c070 0.00 31.30;c071 23.50 30.70;c073 0.00 6.90;c074 22.70 29.90;c155 17.90 27.20;c001 22.80 28.00;c098 27.80 35.00;c072 5.30 35.00;c125 0.00 35.00,33.92\r\nKFLI0,CP6Y,Stairs,5,7,Yes,\"Upon awakening in the night, the person takes their pillow and blanket to the stairs so they can spend the rest of the night watching the front door.\",blanket;floor;light;pillow;stairs;towel,\"A person is holding a blanket and pillow and turning off the light, they then lie down on some stairs.;Person walks into a long hallway sit on the stair with a pillow and a laptop.;A person walks through the room, turns the light off, then sits down with a blanket in hand on the stairs nearby.\",c070 3.00 20.00;c076 3.00 20.00;c105 5.00 9.00;c033 4.20 20.00;c125 11.60 20.00;c078 14.00 20.00;c072 15.10 20.00;c077 12.10 20.00;c151 9.00 20.00,18.75\r\n3DFOQ,M7K8,Dining room,6,7,Yes,A person is holding a book and looks at their shoes. They then start playing with the laces on their shoes..,book;chair;shoe;table,A person is sitting in a chair with their legs crossed. The person beings to untie their shoes and looks away.;The person sits at the table fiddling with the lace of the shoe on the foot of the leg crossed on top.,c026 0.00 32.00;c057 5.20 32.00;c059 0.00 32.00;c152 0.00 5.50;c053 15.80 32.00;c011 0.00 32.00,30.58\r\nJ48N6,AT5D,Stairs,6,7,Yes,The person was putting the bag into the cabinet.  Then the same person was laughing as he was undressing.,bag;cabinet;clothes;doorway;shelf,Person walking up the stairs with a bag in hand put it on the shelf and walked into a room.;A person walks up a staircase while holding a brief case and then the person enters a bedroom and begins to undress.,c020 0.00 20.30;c155 18.40 32.00;c148 24.60 32.00;c022 14.60 21.20;c152 25.50 32.00;c097 21.50 26.40;c081 14.60 21.20;c154 0.00 32.00,30.71\r\nGTHNX,ZDKC,Dining room,4,7,Yes,\"A person is at a dining room table watching a video on their laptop, they then open up a homework book and start working on it.\",book;chair;homework;laptop;paper;table;video,A person is watching a video on their laptop while they sit at a desk then they do their homework.;A person sitting down and watching their laptop. The person then opens a book and starts working on their homework.,c032 18.50 32.00;c052 0.00 22.60;c011 0.00 32.00;c145 20.90 32.00;c027 15.70 32.00;c059 0.00 32.00;c051 0.00 19.70;c014 0.00 32.00,30.58\r\nWZZPC,ENHU,Hallway,4,7,Yes,\"A person enters carrying homework and sneezes, then they grasp a doorknob and open a door.\",door;paper/notebook;papers,\"A person comes out of a room and sneezes into their arm. The person then grabs the doorknob of the door next to the one they came out of.;A person is carrying some papers and walking down a hallway, they start to open a door.\",c141 4.80 8.00;c008 5.10 8.00;c153 0.40 5.30;c115 0.00 8.00;c097 0.00 3.80,7.04\r\n3VT73,I48P,Home Office / Study (A room in a house used for work),5,7,Yes,A person is sitting at a desk. The person throws a book then picks up a phone and begins to play with it.,book;chair;desk;floor;pant;phone;pocket;table,\"The person, seated at a desk, was flipping through the pages of a book. They then threw the book on the floor and took a cell phone out of their pocket to look at.;A man is sitting at his desk with a book, working on homework. he takes his cell phone out and begins to make a call.;A person sits down as they read a book and look at something on their desk.\",c025 7.70 12.40;c031 8.40 13.10;c011 0.00 34.00;c015 11.50 34.00;c018 10.40 15.90;c026 0.00 12.90;c032 2.30 11.60;c014 0.00 15.70;c016 11.90 34.00;c059 0.00 34.00;c027 18.00 32.00;c126 6.90 15.40;c029 27.90 34.00,33.00\r\nVXXOU,ENHU,Dining room,7,7,Yes,A person in sitting on a chair and snuggling in a blanket in a dining room.,blanket;chair;table;window,\"A person is in a blanket sitting in a chair.;A person is sitting at a table and wraps a blanket around their body.;A person sitting in a chair, at a desk with a blanket around their shoulders, looking out the window.\",c059 0.00 6.00;c072 0.70 6.00;c011 0.00 6.00;c092 0.00 6.00;c070 0.00 6.00,4.67\r\nSUG5S,ZDKC,Bathroom,5,6,Yes,A person is by the sink looking in the mirror washing a fruit they will be eating.,bed;doorway;food;hands;mirror;sink;sofa/couch,\"A person is sitting on a bed. They stand up, walk to a sink and wash their hands. Than they begin peeling an Orange.;There is a person sitting on a bed.  That same person goes into the bathroom and washes their hands.  That same person then picks up something.\",c096 8.10 13.70;c097 3.80 9.50;c123 0.00 6.50;c061 10.50 32.00;c139 9.70 17.10;c135 0.00 3.70;c154 0.00 5.40,30.58\r\nDWIS8,BONA,Hallway,4,,No,Person A enters a hallway and takes off a coat and shoes.  Person A puts down a camera on a table and picks up a picture frame from the table.,can;clothes;dish;jacket;mirror;picture;shelf;stairs;towel,The person is standing on stairs and then the persson takes off their jacket and drapes it over the railing and walks down a couple stairs and takes a drink out of a can and ten steeps down another stair and then grabs a blanket off a railing and then looks in the mirror.;This person took off their sweatshirt while standing on a flight of stairs before looking in a small mirror.;A person removes a jacket and grabs a different one.,c033 23.20 33.00;c035 22.90 28.20;c096 23.90 33.00;c081 21.10 26.10;c000 9.40 18.40;c120 17.00 21.60;c155 0.00 14.10;c002 3.90 19.40;c118 17.30 25.60;c119 19.20 25.80;c001 12.10 19.40,32.08\r\nD1WYU,ZDKC,Bedroom,5,7,Yes,A person is holding a bag walk to a bed and lays the bag on the bed.  The person leaves the bed and walks to a chair and sits on it.  The person takes off their shoes.,bag;bed;chair;clothes;doorway;shoe,\"A person enters a room and sits down on a chair, and takes their shoes off and leans back.;A person walks into dark room and places something on a bed. The person sits down in a chair and slides their flip flops off their feet.\",c059 16.90 31.00;c024 7.20 14.40;c151 19.10 26.30;c057 22.60 29.90;c054 20.30 25.20;c022 8.10 13.80;c003 0.00 10.90;c097 0.00 4.60;c020 0.00 7.50,30.38\r\nMUE2B,ZDKC,Bathroom,5,6,Yes,\"The person opens the door to the bathroom and enters.  The person turns on the light and then stands before the toilet, looking out the window that is behind the toilet, watching something off camera.\",door;light;window,\"The person walked into the bathroom and turned on the light. They walked over to the window to look outside.;This person opened bathroom door walked to the bathroom step into the tub,standing and looking at the things at bathroom window.\",c008 0.00 5.60;c092 16.50 24.00;c104 1.80 6.70;c097 0.70 8.90,31.25\r\nNO443,I48P,Living room,4,7,Yes,\"A person stands next to a television, then dresses in shoes.\",chair;shoe;sofa/couch;television;window,\"A person leans on a fireplace and watches some tv. The person sits down and puts some shoes on.;A person goes to the door, looks out the window, then sits down and puts on a pair of shoes.\",c132 1.00 10.90;c154 0.00 3.00;c151 9.00 14.00;c092 0.00 9.40;c059 21.00 30.90;c055 10.30 29.60;c123 10.80 31.00,29.62\r\nJBFPI,4UGC,Bathroom,6,7,Yes,A person is working on their laptop. The person takes a drink from a glass of water while watching their screen.,cup;laptop;table;water,\"A man wearing a plaid shirt uses a laptop to complete an Amazon Mturk task, submits the task, drinks from a glass, and then continues work.;The person is using the laptop, takes a drink, stroke their beard, and takes another drink.\",c052 0.00 9.30;c107 6.10 15.40;c106 7.60 13.90;c014 0.00 31.00;c109 11.00 18.20;c051 0.00 31.00;c110 5.60 12.20,30.46\r\n0J1BT,CP6Y,Stairs,5,4,Yes,A person undresses as they walk up the stairs. The person throws their clothes on the shelf and smiles.,clothes;jacket;shelf;stairs;stand,\"A person walks up a staircase, takes off some clothing, and places it on a drawer below the stairs while proceeding to walk up.;The person walks up the stairs and takes off a coat.\",c001 9.50 15.20;c003 9.50 15.20;c081 10.70 15.80;c155 4.50 13.10;c152 8.60 18.00;c152 10.20 14.60,16.71\r\nAOK1L,CP6Y,Home Office / Study (A room in a house used for work),5,6,Yes,A person brings in the groceries stopping move a pair of shoes.Another person comes in and poors and drink and tidies a table.,bag;cup;desk;door;shoe;table;towel,A person walks into a room holding a bag while another person cleans a desk.;A person enters the living room with a package while another person cleans the desk with a rag while drinking from a glass.;A person walks into the living room holding a bag. Another person walks over to the desk and begins cleaning in front of the computer while drinking from a cup.,c009 18.40 23.80;c107 20.50 26.30;c057 17.70 24.30;c106 30.50 36.00;c108 21.20 28.70;c097 10.50 17.30;c020 10.10 36.00;c038 16.60 36.00;c033 18.80 36.00;c008 9.60 14.50;c110 19.30 24.00;c012 32.10 36.00,35.12\r\nRXQEJ,BONA,Bathroom,7,7,Yes,A person is playing with their shoes then pouring old stale coffee down the toilet.,cup;floor;mug;shoe;toilet;water,\"A boy is doing tricks with a pair of sneakers. At the end of the video he pours a mug of liquid onto the floor.;A person dances and juggles with  a pair of shoes then dumps a cup of water down the toilet.;He is trying to juggle with his pair of shoes and trying mke some tricks, and then he took a cup of water and poured in to commode.\",c058 3.90 9.20;c107 26.90 35.00;c053 0.00 25.80;c110 22.20 27.20;c054 21.50 26.50;c126 22.00 27.50,33.50\r\n8AR3Q,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is watching a sandwich that they dropped on the floor.  Then a person is taking a picture of it with a phone.,floor;phone;picture;sandwich,A person walks into a room and crouches down on the ground. The person then takes out a phone and takes a picture of something on the ground.;A person was walking towards a door. The person dropped some items on the ground. The person pulled out a camera and crouched down. The person then took pictures of the items.,c087 5.00 16.10;c015 2.00 17.10;c126 1.30 5.80;c088 5.30 18.00;c151 4.30 9.80,16.62\r\nUD8SH,ENHU,Home Office / Study (A room in a house used for work),5,7,Yes,A person stands up from their desk and sneezes.  The person takes a towel and smiles as boogers are cleaned up.,desk;towel,A person is sitting at  desk. They stand and sneeze. The person then wipes their face with a towel.;A person sitting at a desk stands up and has a sneeze and then wipes their face and smiles.,,12.88\r\nVIN5T,ENHU,Living room,6,7,Yes,A person is playing with a pillow then they begin watching a video play on a camera.,floor;phone;pillow,A person punches a pillow and plays on their phone while sitting on the floor.;A person is sitting on the floor throwing a pillow. The person punches the pillow then puts it down. The person picks up a phone and watches it.;A person sitting on the floor flips a pillow a few times and then looks at a cell phone.,c076 0.00 4.50;c015 3.40 13.10;c016 3.20 14.40;c125 0.00 21.00;c126 2.00 8.80;c018 4.00 21.00;c077 1.40 6.00;c080 1.50 6.20,19.96\r\nBVDIM,ARRB,Pantry,7,7,Yes,\"A person stands in the doorway, eating some food from dishes. The person puts the dishes onto a table.\",dish;doorway;food;sandwich;table,\"A young person wearing a pink shirt stands near a food pantry and eats several items off of a plate. The individual then walks towards a kitchen table and sets the plate down.;A person  with plate of food in the hand standing in front of  opened closet door  eating food,walked to the table and put the plate  down on the table.\",c097 19.50 26.30;c009 22.60 29.20;c118 0.00 28.70;c156 0.00 28.60;c119 19.30 27.90;c063 0.00 14.70;c120 16.00 32.00;c061 0.00 32.00;c065 0.00 32.00;c062 22.60 28.10;c063 24.90 29.90,30.58\r\nSRTX6,I48P,Kitchen,5,7,Yes,\"A person is in the pantry, snuggling a blanket and taking some food from a shelf.\",blanket;closet/cabinet;clothes;counter;cup/glass/bottle;food;pantry;shelf;table;towel,\"Person holding a blanket and taking food out of the pantry, and then takes the food to the kitchen.;A man wearing a long sleeve shirt begins folding a coat. The individual then grabs several items from a closet and moves toward a kitchen counter.;A person sneezes while holding clothing and begins grabbing food out of the pantry.\",c061 13.60 30.90;c070 0.00 31.00;c009 24.90 31.00;c073 23.00 31.00;c153 2.00 8.40;c109 25.70 30.60;c000 0.00 11.80;c033 0.00 31.00;c081 25.10 31.00;c062 25.10 31.00;c114 2.00 25.50;c107 23.30 30.40;c110 22.70 28.80;c063 13.60 26.40;c082 25.50 31.00,29.71\r\nZAN58,GMOW,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person in a closet throws a bag of groceries carelessly on the floor and then, grasping the doorway, sneezes violently.\",bag;box;doorknob;doorway;groceries,\"Person is looking through items in a plastic bag and then starts to sneeze over and over.;A person carries around a small white bag with some stuff inside, and sneezes multiple times while holding a door.\",c020 0.00 14.00;c153 13.10 28.70;c021 6.10 13.30;c130 2.90 13.50;c042 7.40 12.60;c141 12.10 34.00;c022 7.50 14.70,35.00\r\nJTXAM,JTAS,Living room,6,4,Yes,\"A person is sitting on a couch, reading a book. The sneeze, get up, and turn out a light.\",book;light;sofa,\"A person sat on a couch and read a book. The person then then sneezed and closed the book. After this, the person stood up and walked away.;Person sitting on the sofa reading a book the person then gets up and turn off the light.\",c032 0.00 19.40;c105 16.60 25.00;c123 0.00 19.40;c153 12.40 19.50;c154 14.80 21.80;c122 0.00 18.50;c026 0.00 17.80;c025 13.80 19.10;c029 13.00 17.80,23.71\r\nZ1Q3E,ENHU,Pantry,6,7,Yes,\"One person wrapped in a blanket fixes a cup of coffee at the sink, then leaves the pantry holding the mug of coffee.\",blanket;cup;sink;spoon,This person grabbed a cup of coffee from the kitchen before walking out of the room.;A person is standing and snuggling with a blanket. The person is making a cup of coffee and then walks out of the room.,,8.71\r\n1410C,GFWE,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person takes a glass from a box. The person grasps the glass while inspecting it.,box;glass,A person walks into a room with a box in their hands. They take a glass out of the box and begin looking at it;The person stands in the doorway holding a box as the person examines something small and shiny that looks like a drinking glass.,,30.21\r\nRBQ9Y,P2J3,Bedroom,4,1,No,\"A person is eating food, then dressing and putting on shoes, then putting away clothes in a bedroom.\",bed;clothes;shoe,\"A person takes off their shirt and places it on a bed. They pick up another shirt and put it on. They then sit on the bed and put on some shoes and stand up again.;The person takes off a shirt and puts it down. The person puts on another shirt and buttons it up. The person sits down and adjusts their shoe. They pick up the shirt and toss it down again.;A man begins to undress while standing, putting his clothes on the bed beside him. Then he puts on a button up shirt and sits down on the bed to fix his shoes.\",c001 53.20 59.00;c155 0.00 13.10;c055 39.20 51.90;c148 16.10 51.90;c154 47.90 54.90;c135 38.60 51.90;c151 37.70 46.70;c003 8.50 14.60;c000 7.90 13.70,58.33\r\nSUJWY,JTAS,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person sits in a chair in their home office, playing with their laptop. The person begins laughing at something on the screen.\",bed;chair;laptop;sofa/couch;something,Person sitting on chair covered face with both hands put head back and stop.;A person sits on the couch and looks at their laptop screen. The person laughs at something on the screen multiple times.,c059 0.00 34.00;c051 0.00 34.00;c149 17.10 29.70;c047 0.00 34.00;c135 0.00 34.00;c123 0.00 34.00;c052 0.00 34.00;c152 16.40 30.80,32.54\r\nMXATD,ENHU,Kitchen,4,7,Yes,A person tidies up the kitchen by taking some dirty dishes from the stove and placing them into the sink.  They turn on the water and pour in some dish washing soap.,bottle;cabinet;counter;detergent;dish;door;food;sandwich;sink;skillet;stove;water,A person cooks at a stove then puts dishes in a sink and runs some water into the sink. the person opens a cabinet to take detergent and squirts some in the sink before returning the detergent.;A person gets a pan off of the stove and puts it in the sink.  This person then puts dish soap into the sink.;A person puts the dishes away then pours soup over it.,c120 0.00 6.00;c147 7.00 18.60;c113 5.30 10.80;c119 0.20 6.00;c118 0.00 9.70;c008 5.60 11.30;c121 0.60 9.00,17.75\r\nH608V,ENHU,Recreation room / Man cave,4,7,Yes,\"A person is running in circles in front of the television. They stop, stand, take a bite of a sandwich, drink a sip of something, and then start running again.\",food;glass;sandwich;table;television;water,\"A person is running in the living room in circles. A person then eats a sandwich and having a drink of water, while watching television.;Person running around in a room go to a table eat and drink something and then continue to run.;A person runs around the room in a circle and pauses to take a bite of something and a sip of water, and then begins to run around in a circle again.\",c065 0.90 7.90;c150 11.60 22.00;c132 11.40 22.00;c009 8.70 15.40;c106 6.20 13.00;c110 4.80 14.10;c109 10.10 15.40;c067 1.60 8.00;c069 1.00 6.40;c156 2.60 7.50;c068 3.10 8.40;c107 4.90 14.90,20.62\r\nN9KNS,P2J3,Bedroom,3,6,Yes,One person is opening their bag. The other person is closing the window.,bag;closet/cabinet;shelf;window,Two people are in the living room one person is going through a bag while the other person is lookingout the window.;Two people standing next to each other. One person is holding a bag while the other walks over to a window and proceeds to interact with it.,c092 0.00 33.00;c020 0.00 8.00;c021 5.80 18.70;c082 4.80 33.00;c114 4.50 33.00,32.38\r\nCIUVA,ZDKC,Kitchen,6,7,Yes,\"A person is at the sink washing dishes.  The person puts a dish into the strainer, then dries their hands and opens a laptop on the counter.  The person takes a bag of groceries to the fridge and puts it in there.\",bag;cup/glass/bottle;dish;groceries;hand;laptop;refrigerator;shelf;sink;table;towel;window,\"A person was washing dishes at a sink. After finishing, the person then dried their hands with a towel. The person then walked over to a grill and then over to a refrigerator. The person then opened the refrigerator.;A person washes a mug in the sink. The person then opens a laptop that's sitting on a stove. The person grabs a bag and places it in the refrigerator.\",c139 0.00 30.40;c130 42.10 55.00;c020 41.90 54.00;c121 0.00 39.40;c081 48.90 54.80;c022 49.40 55.00;c052 36.70 47.20;c111 0.00 28.80;c120 6.70 29.30;c118 1.50 28.80;c035 25.60 32.60;c036 33.20 38.80;c033 28.30 37.20;c110 6.40 12.00;c109 1.80 27.70;c143 46.50 55.00;c038 25.90 38.30;c109 52.10 55.00;c119 52.10 55.00;c143 52.10 55.00;c092 52.10 55.00;c038 4.80 55.00,54.00\r\nDLFPX,CP6Y,Stairs,7,7,Yes,\"A person is standing on their stairs holding a bag, and dishes. They walk down the stairs and into the kitchen.\",bag;doorway;paper;phone;stairs;table,A person is walking down stairs with a backpack and their phone.;A person walks down a staircase wearing a backpack and staring at their phone. The person then walks into another room.;A person standing on the stairs starts to walk down. The person walks into a  room and looks out a window.,c020 0.00 7.70;c023 0.00 28.00;c097 11.60 17.30,26.54\r\nYB67Z,ZDKC,Kitchen,4,7,Yes,A person is taking a box off the top of their desk and is putting it down onto the floor.,box;chair;floor;table,\"The person is sitting at the table looking into a box. They then close the top of the box and set it on the floor.;A person holds a box on a table. The person looks inside of the box, closes it up, and puts it down.;A man is sitting at a table that has a medium sized open box on it.  The man looks in the box and shuffles the crumpled packing paper inside it.  He then places the box on the floor next to him.\",c039 13.70 18.90;c011 0.00 25.00;c059 0.00 25.00;c043 14.30 21.00;c012 11.90 19.10;c041 5.40 18.80;c042 12.70 22.30;c040 0.00 22.20,24.00\r\nS7OTQ,GFWE,Kitchen,6,7,Yes,\"A person sits in a chair in the kitchen, reading a book. The person stands up and leaves the book on the chair.\",book;chair,\"A person sits in a chair while reading a book with a dog walking around person got up and left the room.;A person is sitting in the chair in the kitchen reading a book, she gets up and leaves the room\",c059 0.00 18.50;c027 1.20 7.20;c032 1.50 17.90;c154 13.70 20.40;c025 13.30 20.70;c028 13.40 21.60;c151 0.00 5.50;c030 0.00 7.90;c026 0.00 18.20,30.83\r\nYMJ6E,JTAS,Bedroom,6,7,Yes,\"A person grabs the doorknob and opens the door. The person turns and grabs a pair of shoes, leaves, and closes the door.\",clothes;door;shoe,\"A person walked over to a door and opened it. The person then bent over and picked up a pair of shoes. The person then walked through the door while carrying the shoes.;A person opens the door, grabs their shoes, and walks out of the room.\",c053 7.90 27.00;c141 1.00 7.20;c008 1.40 9.40;c001 10.40 17.50;c097 11.00 17.40;c056 8.20 18.80,25.92\r\nOHNUQ,P2J3,Living room,6,6,Yes,A person is holding a box of cereal and eating it out of the box while they are watching television in the living room.,dish;food;television,\"Person standing in a room eating food out of a dish, while watching the television;A person is eating some food and watching television.;A person is eating out of a bowl with their hands as they watch tv.\",c156 6.50 13.50;c061 0.00 9.50;c132 0.00 9.50;c063 1.20 7.80;c063 7.20 13.50;c118 0.00 38.00;c063 0.00 38.00;c062 0.00 38.00,37.29\r\nU5QJR,CP6Y,Home Office / Study (A room in a house used for work),7,7,Yes,\"One person sits at a chair smiling, then throws a towel over the doorknob.\",blanket;chair;clothes;doorknob;table;towel,I person walks into a living room and sits in a desk chair. The person reaches behind themselves and pulls a towel from the back of the chair. The person throws to towel towards the wall with a door and to towels gets caught on the door handle.;A person sits down in a chair and takes a hoodie off of it. The person puts it on a doorknob instead and sits.,c059 0.70 21.00;c036 5.70 12.20;c151 0.00 5.20;c003 3.90 12.70;c074 5.30 12.50;c011 1.20 21.00;c035 4.80 12.70;c034 4.90 12.50;c033 4.70 11.10,20.38\r\n11L5M,JTAS,Bathroom,6,7,Yes,A person is tidying the room with a broom. They throw the broom down and start running in place.,broom;floor,\"I person sweeping the floor, suddenly drops the broom and starts running in place.;The person seems to be sweeping the bathroom floor.  The the person drops the broom and starts running in place.\",c098 0.00 20.10;c101 15.50 20.40;c150 16.40 30.00;c127 0.00 20.60;c099 15.70 21.90;c102 0.00 21.00,29.21\r\nX9M5B,JTAS,Living room,7,7,Yes,\"A person watches media on their laptop in their living room. It, and some coffee, are on a small coffee table in front of them. They smile at something they see on the laptop, and lie down on their couch to relax better as they are entertained.\",blanket;chair;cover;laptop;sofa;something;table,\"Person is sitting on sofa with covered with blanket doing something on laptop and laughing, then lays down on sofa.;A person is sitting on a couch looking at a laptop laughing.  They turnover to lay down on the couch.;The person is sitting in the couch with the laptop, then switches positions to laying on the couch with the laptop.\",c122 11.80 22.70;c123 0.00 15.90;c047 0.00 33.00;c051 0.00 33.00;c052 0.00 33.00;c070 0.00 30.60;c059 0.00 33.00,32.25\r\n1O1JS,M7K8,Kitchen,6,7,Yes,A person is washing dishes.  At the same time a person is smiling and grasping a dish towel.,dish;towel;window,A person is standing at a kitchen counter and cleaning the sink. The person is smiling and holding a towel.;A person is standing at the kitchen sink smiling and laughing while holding a rag or towel and pouring something into the sink.,c121 1.50 30.20;c033 0.00 31.00;c152 0.60 31.00;c092 0.00 15.20;c035 0.00 3.70;c034 26.20 30.90;c149 0.30 6.30;c149 5.90 14.80,30.33\r\nFRGXE,CP6Y,Bedroom,5,6,Yes,\"A person walks into the bedroom, sneezing and drinking a glass of orange juice. The person sits down on the bed and takes out a box of cookies from the nightstand.\",bed;box;cup;doorway,\"a person walks through a door while drinking a beverage and sits on a bed next to a window and stares through the window.;The person sneezes as the person walks through the door holding a coffee cup, then sits down on the bed and takes an item of out a bag by the window.\",c106 2.10 8.60;c135 10.90 23.00;c153 0.40 8.10;c151 9.60 19.30;c041 19.60 23.00;c044 19.60 23.00;c109 10.80 15.60;c107 0.90 14.10;c097 1.20 7.30,21.50\r\nW0J8C,ZDKC,Bathroom,6,6,Yes,\"A person is in a closet eating a cookie and drinking coffee. The person opens the door throws the cookie in the garbage, and leaves.\",coffee;cup;dish;door;food;medicine;toilet,someone drinking from a cup and eating some food;A person drinks from a mug and eats something.  This person then walks into the bathroom with the toilet seat open.;A person is drinking from a coffee cup and is eating something while leaning on a counter. Lastly the person walks into the bathroom.,c106 0.70 30.90;c156 7.10 30.50;c109 27.10 33.80;c118 0.00 32.80;c064 34.70 40.00;c107 0.00 33.00;c154 0.00 40.00;c008 31.20 36.90;c061 0.00 39.10;c062 34.90 39.80;c097 31.80 40.00,38.62\r\nY4U6T,ENHU,Closet / Walk-in closet / Spear closet,2,3,Yes,\"A person playing with a chair in a closet puts a pillow on top of some folded clothes on a shelf.  They pick up a camera and leave, smiling.\",chair;desk;pillow;shelf,\"Person sitting on chair gets up to pick up pillow and put it on the shelf before going out of the room.;Person sitting in a chair pick up a pillow from the floor and put it on the shelf then leave the room.;The person is sitting in a chair and then it goes moves down and the person adjusts it up and bends down picks up a pillow, tosses it and then stands up and puts it on a shelf and the grabs something off the desk and walks away.\",,14.38\r\nXACI3,JTAS,Laundry room,4,6,Yes,A person is putting clothes into the dryer while a movie is playing on their laptop,clothes;door;laptop;towel,\"A person momentarily uses a laptop that is placed atop a washing machine, the individual then throws clothing into the washer, shuts the door, and resumes work on the laptop.;A person is in a laundry room and begins putting clothes into a dryer and then begins to use a laptop which is sitting on top of the dryer.\",c051 0.00 31.00;c001 0.00 31.00;c005 0.00 29.60;c006 22.40 29.70;c000 3.00 26.30;c003 3.90 26.00;c002 2.60 25.90;c034 2.10 26.10,29.54\r\nGFPDD,BPXZ,Kitchen,7,7,Yes,A person is walking with a box of groceries and then puts it down and starts washing them,box;door;food;grapes;groceries;sink,\"The person walks into the house carring a box and proceeds to walk into the kitchen and sits the box on the cabinet and takes out the grapes and rinses them off under the running water from the sink.;A person walks into a kitchen, turns on a sink, and starts washing various fruits under the tap water in the sink.;A person walks into the kitchen holding a box, which she carries to the sink. She begins taking groceries out of the box and putting them on the counter.\",c040 0.00 10.10;c044 5.90 13.40;c130 8.70 22.00;c042 0.00 10.40;c097 0.00 4.40;c061 7.80 29.90;c063 7.30 13.00;c062 20.90 29.00,30.42\r\nOHOFG,BKWQ,Dining room,5,7,No,The person is working at a desk eating from dishes.,chair;desk;dish;food;homework;paper;pen;table,\"A person sits on a chair by a table, picks up a pen, and starts doing homework. The person then starts eating food from a plate, also on the table. The person then gets up from the chair.;A person walks to a table and sits down at a chair they start to do their homework and eat a snack then they get up and leave.;A person is walking into a room and sitting down in a chair. The person is then working on their homework. Lastly, a person is eating some food.\",c011 1.70 34.70;c156 22.30 33.00;c154 31.10 36.00;c145 2.00 35.10;c014 1.00 35.40;c151 1.00 9.40;c059 1.00 7.50;c061 8.90 15.70;c010 1.30 35.30;c063 8.60 14.80,35.04\r\n9VF2C,JTAS,Bedroom,6,4,Yes,\"A person awakens on a chair in the closet, covered in a blanket. The person quickly throws the blanket off of them and runs out.\",bed;blanket;pillow;sofa/couch,\"A person was sleeping on a couch before getting up, stretching and leaving the couch.;A person is sleeping on a couch covered with a blanket they wake up and yawn then they get up off of the couch.\",c070 12.10 18.00;c072 0.00 15.30;c146 6.40 19.60;c154 14.10 21.10;c150 16.50 21.80;c134 0.00 19.80;c133 6.40 20.20;c078 0.00 12.30;c122 0.00 18.80;c074 14.50 19.50;c071 14.60 19.40,23.62\r\nYNWMW,ENHU,Basement (A room below the ground floor),6,6,Yes,\"A person is in a basement eating and drinking out of a glass, they then leave the room after grabbing a broom.\",box;broom;cracker;cup;dish;doorway;floor;food;glass;shelf;water,\"The person grabbed a cracker from a box and threw it in his mouth before grabbing a drink from a glass and taking the broom and out of the room.;A person sits on the floor, drinks from a cup on a shelf, grabs a broom, and walks out of a door hastily.;A person eats some food and drinks something while sitting. The person takes a broom, stands up, and walks away.\",c100 9.90 15.90;c156 0.00 5.20;c044 0.00 4.20;c106 1.60 11.00;c120 1.00 7.00;c119 6.90 12.80;c118 2.00 6.90;c042 8.60 13.90;c125 0.00 13.40;c040 8.80 13.20;c154 9.60 14.80;c097 13.20 17.00;c081 6.40 12.80;c098 10.10 17.00;c110 1.70 7.20;c062 8.80 13.60;c061 0.00 4.60,16.29\r\nAWR2R,P2J3,Bedroom,7,7,Yes,A person is standing in the bedroom holding a broom and a book.  The person then leaves the room.,book;broom;doorway;floor,A person is standing in a room. The person then picked up a broom that was laying on the floor. The person then turned and picked up a book that was laying on a nearby bed. The person then walked out of the room.;The person picks up a short broom and walks around the room with it before exiting out the door.,c026 9.20 16.90;c098 2.70 11.70;c100 0.50 7.30;c117 7.30 13.60;c115 7.30 36.00;c097 30.70 36.00;c030 7.80 14.30;c127 0.50 8.90,35.08\r\n8BGE9,GFWE,Kitchen,6,7,Yes,\"A person is standing in front of the refrigerator and holding food in their hand, laughing.\",bag;food;hand;refrigerator,A person is standing and laughing while holding a bag of something while in the kitchen next to the fridge.;Person standing in a kitchen eating a food out of a bag the person is laughing while eating.,c061 0.00 32.00;c149 0.00 27.00;c020 0.00 32.00;c152 0.00 26.70,31.00\r\n9IST8,CO87,Living room,6,6,Yes,One person sits by a window and grasps a glass of coffee.,chair;coffee;couch;cup;sofa;window,\"A person sitting on the couch holds a cup of coffee while looking out the window.;A person is sitting on a couch, holding a cup and looking out the window. The person blows into the cup and continues to sit and look out the window.;A person sits on a couch drinking from a mug.  This person looks out of the window while sitting.;A person stares longily out the window with a cup of a coffee in their hand.\",c106 10.60 17.60;c092 0.00 32.00;c123 0.00 32.00;c059 0.00 32.00;c107 0.00 32.00,31.42\r\nYE47Y,CO87,Living room,6,6,Yes,\"A person is in a living room grasping a pillow, they then lay down and start playing on their phone.\",bed;blanket;chair;couch;phone;pillow;sofa,\"a person sits on the couch holding a pillow then looks at their phone and lays down;Someone is sitting on their couch with a blanket. They grab their phone, fix the blanket into a pillow, and then they lay down on it.;A person is sitting on the couch with a pillow.  This person then lies down and looks at a cell phone.;A person snuggles up with a blanket on the couch before arranging themselves and looking at their phone.\",c078 0.00 11.50;c016 6.80 37.00;c122 12.20 37.00;c123 0.00 14.80;c018 5.60 11.20;c087 28.10 37.00;c072 0.00 12.30;c059 0.00 37.00;c018 3.80 8.30;c134 14.00 37.00;c135 0.00 12.10;c076 0.00 11.40;c077 7.70 12.30;c015 0.00 37.00,36.00\r\nD61NH,AT5D,Bedroom,5,7,Yes,One person is playing games on a laptop and another is sitting grasping a cup of coffee and smiling.,bed;coffee;cup;laptop,The person sits on the bed ext to the other person then both people play solitaire together.;One person joins another person sitting on a bed while holding a laptop. The person with the laptop shows the other a game being played. The other person pats the laptop person on the back,c106 7.60 12.20;c047 0.00 32.00;c052 0.00 32.00;c152 13.70 19.60;c107 0.00 12.50;c149 14.00 22.20;c135 0.00 32.00,30.79\r\n13XM4,AT5D,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is in the entryway putting groceries in a box.  They pick up the coffee and start laughing.,bag;box;coffee;cup;food;groceries;table,The person drops a container of potatoes then puts it on a table before picking up a coffee mug and laughing.;A person picks up a container and puts some food inside. The person puts it on the table and picks up a mug.,c107 7.20 29.00;c040 0.00 11.30;c042 6.40 11.50;c020 0.00 11.20;c130 6.40 11.50;c009 6.50 11.90;c061 1.30 7.50;c152 14.80 24.20;c149 18.00 22.20;c110 9.30 13.60;c062 7.10 11.50,28.25\r\n2B8ML,M7K8,Basement (A room below the ground floor),6,6,Yes,\"A person stands in front of a shelf against a wall. There are several boxes there, and the person begins to go through one of them. They pull an old picture out and smile fondly.\",box;picture;shelf,\"A person is looking through boxes, picks a picture up and looks at it;A girl walks into a garage and begins scanning the shelves for an item, which she finds and then stands still to look at it while holding it.\",c084 11.00 19.20;c083 9.10 14.90;c152 11.60 18.00;c088 11.00 31.00;c041 4.80 9.60;c152 24.40 31.00;c044 8.20 14.60,29.58\r\nLUTIO,M7K8,Basement (A room below the ground floor),6,6,Yes,A person was awakening in his basement next to a desk. The person grabbed his shoes and began leaving the basement to go somewhere.,floor;shoe,\"a person lying on the floor, gets up, picks a pair of shoes up then stands there;Person is lying on the floor then gets up pick up shoes then continue hold them in hand;The person lays on the floor the gets up and holds their shoes in a hunched over position.\",c154 8.30 19.20;c053 12.10 32.00;c146 14.10 22.00;c124 0.00 10.40;c125 0.00 32.00;c056 12.30 32.00,30.67\r\nE0OJ8,JTAS,Living room,7,7,Yes,A person is tidying some books on the table before pouring some water in a glass.,book;chair;glass;laptop;sofa/couch;table;water,2 people are in a room.  Person one is sitting on a couch and cleaning up a table.  The person pours water from a bottle into a cup on that is on the table.  person two is sitting in a chair under a blanket and then takes a drink of water from a cup on a table.;A person tidies a coffee table while sitting on the couch and pouring a glass of water while another person sits in a chair looking at something and drinking from a glass.,c009 4.50 13.50;c028 0.00 12.70;c051 0.00 19.50;c059 0.00 35.00;c011 0.00 35.00;c014 0.00 35.00;c047 0.00 35.00;c123 0.00 35.00;c012 0.00 11.80;c107 14.00 35.00,33.88\r\nZ3H4P,B6UG,Kitchen,7,7,Yes,A person is smiling while standing in the kitchen. The person takes a sip of coffee then puts some food on a plate.,coffee;cup;dish;food;pot,A person is drinking coffee and fixing dinner;A person stands in the kitchen drinking coffee and moving dishes around.,c062 20.00 29.60;c106 2.80 8.60;c119 9.30 15.10;c119 11.90 18.00;c119 15.20 20.10;c063 8.70 31.00;c118 11.70 17.50;c107 1.50 31.00;c110 1.30 5.90;c120 12.30 18.10;c119 1.90 31.00;c147 0.00 31.00;c109 0.00 31.00,30.04\r\nLE7PM,4UGC,Dining room,7,7,Yes,A person runs into the dining room and throws some food onto the table. The person lights some candles and turns out the light.,candle;food;groceries;light;table,A person throws some bananas onto a table. The person takes a lighter and lights two candles that were on the table.;A person throws a sandwich on a table before lighting some candles as well.,c064 0.00 4.10;c105 40.40 47.30;c009 0.00 4.10;c130 0.00 4.90;c061 0.00 3.90;c062 0.00 4.40,47.62\r\nJKGTN,I48P,Laundry room,7,7,Yes,\"A person takes a pillow from the shelf. The person takes a drink from a glass of orange juice, and laughs.\",cup;glass;pillow;shelf;water,\"A person takes a  pillow of a shelf and holds it. They drink from a glass while smiling, and laughing.;A person in a laundry room, first picks up a pillow from a shelf, then picks up a glass of juice on top of the dryer to drink.;A person takes a pillow down from a shelf and drinks orange juice from a glass.\",c076 0.00 34.00;c078 3.80 34.00;c106 5.50 32.80;c152 17.70 24.00;c110 6.50 10.70;c079 0.00 3.80;c149 17.80 29.80;c109 29.50 34.00;c107 5.70 10.00,33.25\r\n120YL,ZDKC,Kitchen,3,7,Yes,A person standing at a counter opens up a bag of groceries and takes out a cookie.  The person places the cookie on a plate and takes the plate to the table to eat.,bag;box;chair;cookies;dish;food;groceries;plate;table,\"The person is removing a box of cookies from a bag.  The person opens the box and places a cookie on a plate and moves the plate to a table.  The person sits down in a chair and eats the cookie while sitting at the table.;A person standing at a kitchen counter takes a box of cookies out of a plastic shopping bag.  The person opens the box of cookies, takes out another package and opens that.  The person takes a cookie out of the package, sets it down, gets a plate from a cupboard under the counter, places the cookie on the plate and sets the plate on a table.  The person then sits down in a chair at the table and begins to eat the cookie while looking at an empty plate.\",c120 26.30 43.00;c011 35.00 43.00;c021 0.60 11.80;c156 37.00 43.00;c151 32.70 40.10;c044 6.90 12.20;c061 37.00 43.00;c009 30.80 37.10;c040 8.60 13.30;c119 31.40 36.50;c041 4.80 9.70;c062 28.70 33.30;c059 35.50 43.00;c118 26.10 36.30;c063 14.80 20.50,42.46\r\n1440M,ZDKC,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is holding a pillow.  They take a bag off the floor and start closing the door.,bag;closet/cabinet;clothes;door;floor;pillow;shelf,\"The person hugs a pillow, then picks something up off of the floor and closes a closet door.;A person hugs a pillow before picking a bag up from the ground and opening a closet door.\",c006 17.50 27.00;c076 0.00 21.60;c078 0.00 19.00;c112 15.90 21.30;c154 11.10 16.90;c082 14.50 20.20;c001 10.80 16.30;c002 21.70 28.30;c112 17.90 26.00,28.21\r\nA2X7Q,LB3Q,Kitchen,5,7,Yes,\"A person is walking into the kitchen and sees a sandwich on a counter, the grab a bag throwing the sandwich into it.\",bag;closet/cabinet;door;food;sandwich;table,\"A person walks into the kitchen they open the cabinet and take a bag out, they go to the sink and put a sandwich in the bag and then they leave.;A person walks into a kitchen, grabs a bag out of a cupboard, turns around to a sink, places items from the sink into the bag, then walks out towards the camera\",c021 6.80 14.00;c068 11.10 18.70;c063 10.70 20.00;c069 10.00 20.00;c113 3.00 11.00;c020 5.80 20.00;c008 3.80 10.20;c023 5.50 10.70,18.92\r\nDL6HP,CO87,Laundry room,6,6,Yes,A person is tidying the groceries in the laundry room cabinet.  The person is fixing all the can to stand upward.,cabinet;cup/glass/bottle;cupboard;groceries;shelf,\"Someone goes up to an open cabinet and begins organizing its contents.;A person organizes some things on a top shelf. The person continues to do so, stacking some items on others.;A person organizes some containers, stacking them on top of each other in a cabinet in a laundry room.\",c114 0.00 40.00;c130 0.00 40.00;c109 0.00 40.00;c082 0.00 40.00,38.58\r\nYAFX0,CO87,Laundry room,6,6,Yes,A person walks through the doorway with a load of laundry.  The person looks out the window then starts washing the clothes.  The person watches as the machine fills with water.,bag;clothes;doorway;window,\"A person with a laundry bag walks into the laundry room, looks out the window, then opens the washer and puts the dirty clothes in the washer.;A person puts down a large bag, looks out of a window, removes clothes from the bag and puts them into a washing machine.\",c001 6.20 14.90;c092 9.20 26.90;c097 0.10 10.80;c000 6.00 24.10;c003 17.50 29.70;c005 18.80 29.50;c024 26.30 31.80;c020 0.00 8.90;c023 15.00 20.90;c022 4.20 9.30,37.42\r\nNO1GJ,CO87,Laundry room,6,6,Yes,A person is washing the clothes after undressing and talking a towel off the shelf.,cabinet;clothes;dryer;jacket;shelf;towel;washer,\"A person is undressing in their laundry room. They take a towel from a cabinet and put it and their other clothes into the washer.;A person is undressing in the laundry room, washes clothes, and grabs a towel;A person takes off their hoodie in a laundry room, and picks up a towel and the hoodie and puts them in the washing machine.\",c036 16.40 25.40;c033 8.50 13.50;c000 5.00 11.80;c155 0.00 10.20;c035 8.00 16.10;c000 13.70 22.60;c002 13.70 19.40;c005 15.90 25.80;c001 15.90 25.80;c112 0.00 26.00;c034 17.10 21.60;c003 15.00 25.40,25.29\r\nMPHFU,4UGC,Bathroom,5,7,Yes,A person holds a picture then puts it down to wash their hands at the sink.,hand;phone/camera;picture;sink;towel,\"A person is in the bathroom they are looking at a picture they put it down then they wash their hands and dry them on a towel.;A person looks at a picture in a picture frame, sets the frame down next to a bathroom sink, washes his hands, tears off a paper towel and dries his hands with the towel.\",c139 10.30 25.60;c084 0.00 12.20;c033 21.60 31.00;c087 0.00 10.60;c035 21.80 31.00;c086 5.70 12.50;c038 22.70 31.00;c088 0.00 11.20,30.25\r\nSLT0S,M7K8,Recreation room / Man cave,5,5,Yes,\"A person frowns, and throws the homework they are working all around the table.  They grab some medicine off the table, open it, take some out, and then close it.\",book;chair;food;homework;medicine;paper;table,A person is looking in a book holding a pen.  This person then ingests something out of a bottle.;A person is sitting at a desk in her bedroom and writing. She begins to put her items away and think while she has a small snack at her desk.,c145 0.00 15.00;c011 0.00 32.00;c012 0.00 4.00;c116 6.90 14.50;c026 6.90 13.00;c129 18.30 23.60;c115 6.50 13.30;c032 0.00 5.90;c062 18.50 23.10;c156 17.10 32.00;c059 0.00 32.00;c025 6.50 12.80;c028 8.50 13.70,31.25\r\n43ODF,SW82,Laundry room,6,6,Yes,A person is standing in a laundry room fixing a doorknob. They are grasping the heels of their shoes.,clothes;door;shoes;table,\"A person is fixing a doorknob while fixing their shoe;A person messes with the door handle on a door. The person lifts their leg up, and then sits down continuing to look at the knob.\",c140 0.00 31.00;c151 16.50 24.10;c141 0.00 7.30;c007 6.40 31.00,30.08\r\n3XL0K,M7K8,Dining room,5,7,Yes,A person closes the cabinet then walks away with a phone in their hand.,cabinet;door;hand;phone,A person wearing a flannel shirt closes a high kitchen cabinet and walks off frame.;A person closes a cabinet door and then walks out of frame of the camera.,c112 0.00 5.50;c015 0.00 6.80;c006 0.30 4.50,29.08\r\n1L5D3,ZDKC,Bedroom,6,7,Yes,A person in the bedroom is playing with a pillow that they found  on top of the shelf. They start working on something on their phone while snuggling up to the pillow.,bed;phone;pillow;shelf,A person takes a pillow off a shelf and puts it on a bed. The person holds the pillow while then going on their phone.;A person takes a pillow from the dresser and places tit on the bed while playing on their phone.,c076 1.90 18.30;c078 2.50 16.80;c080 4.20 18.20;c077 13.60 21.60;c079 2.90 10.00;c015 18.20 32.00;c151 18.00 27.30;c018 16.30 32.00;c082 0.00 17.30;c016 18.50 32.00;c135 16.20 32.00,30.67\r\nL5YHH,ZDKC,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person is turns on the light in their closet while eating an apple. They grab the doorknob, open the door and leave.\",apple;closet;door;food;light,a person tosses an apple then eats it and then messes with a doorknob to the pantry;Person standing by the door eating playing with the closet door knob open it and look in.;A person is eating an apple while leaning against something. The person plays with the knobs on the closet and opens the closet. Lastly the person walks out of the room.,c008 18.60 31.60;c141 17.20 28.50;c156 0.60 37.00;c061 0.60 37.00;c104 0.60 5.70;c113 17.30 35.40;c140 16.60 27.90;c062 4.80 10.40;c064 0.00 3.60;c097 33.40 37.00,36.42\r\nUUPJS,4UGC,Laundry room,7,7,Yes,The person is standing with a broom in front of the washer. The washer has food and a book on it. They grab one and walk away.,book;box;broom;doorway;food,\"A person holding a broom puts it down and picks up a book and opens it and puts it back where it was found. the person next picks up a box and opens then examines it before walking out of the room with it.;A person is holding a broom in a laundry room and puts the broom down to pick up a book and look at the book, and then they put the book down and pick up a box of crackers and leave the room with the box.;A person is holding a broom in a laundry room and puts the broom down and looks at a book and then picks up a box of crackers and leaves the laundry room with the box.\",c026 6.30 15.80;c027 6.60 13.10;c098 0.00 9.10;c040 10.70 31.30;c043 10.90 15.80;c029 9.40 13.70;c061 11.00 32.00;c062 17.30 22.10;c039 18.10 23.90;c099 2.60 9.10;c097 25.80 32.00;c041 13.70 20.10,30.67\r\n9ZE0J,AT5D,Stairs,4,6,Yes,One person runs up the stairs eating while another person gets dressed in the doorway with a hand on the doorknob.,clothes;hands;scarf;stairs;towel,A person runs up stairs and then starts to talk to another person holding a towel. The two people talk while the second person places the towel around their neck.;A person runs up a staircase and enters a room and begins talking with another person who is standing in the room while putting a towel or cloth around their neck.,c150 0.00 9.40;c148 3.10 19.00;c034 12.50 19.00;c033 5.90 20.60,32.08\r\nIKK13,M7K8,Kitchen,6,6,Yes,A person is grasping a chair while another is closing a sandwich.,chair;food;sandwich,\"a person is standing in the kitchen with two pieces of bread. a person places the two pieces together and is smiling. another person is in the room hugging a chair.;A group of people look like they are acting out some type of scene with one just standing there and the other person has their head in a chair.;A person is standing in a kitchen holding two pieces of bread. The person places the two pieces of bread together like a sandwich, laughing. At the same time, another person is leaning over clutching the back of a bar chair.\",c066 0.40 9.60;c152 0.00 32.10;c063 0.00 33.00;c149 6.00 29.50;c067 6.00 33.00;c061 6.00 33.00;c063 0.00 5.10;c149 3.70 12.60,32.50\r\nC7R3J,ENHU,Bedroom,5,5,Yes,A person is putting food in a box and then is lying dishes down.,bag;box;cup;floor,\"A person puts clothes into an open box on the floor.;A person puts some things into a box on the floor, but puts a glass of some sort just on the floor itself.;A person on the floor puts items into a box.\",c041 0.00 5.30;c125 0.00 14.00;c109 7.10 14.00;c023 2.60 9.00;c022 5.00 10.10,12.83\r\nW019T,AT5D,Kitchen,4,7,Yes,A person is working on their laptop. Another person comes in carrying a bag of groceries. They set the groceries down and start cooking.,bag;beans;doorway;food;groceries;laptop;table,\"A person is playing with a laptop on the kitchen counter.  Another person brings in a bag of groceries to the kitchen counter and begins cutting vegetables.;One person is playing on a laptop, while they other comes in with groceries and starts making dinner;One person lean on the canter  holding a tablet,another person walked to the room with a bag of produce put the bag on the canter opened it got the produce out, walked to the other canter got a knife and starting to cut the produce.\",c020 9.30 16.60;c051 0.00 32.00;c020 3.00 14.20;c130 7.60 17.00;c052 0.00 32.00;c147 14.10 26.80;c009 11.60 20.80;c061 1.60 16.60;c014 0.00 32.00;c097 0.00 6.30;c021 6.20 11.30;c062 10.40 16.90;c022 9.50 18.60,30.96\r\nB32CU,ZDKC,Kitchen,6,7,Yes,A person is walking in the kitchen and they move to the sink where they grasp a glass and they start cleaning the glass under the running tap water.,cup;dish;glass;paper towel roll;paper/notebook;sink;water,A person walks over to the sink and does some dishes.;Person walks over to the sink with a glass in hand and washes it and dries it.;A person holding a glass walks over to the kitchen sink and begins to wash dishes and then picks up a roll of paper towels.,c109 0.00 34.00;c111 9.40 31.70;c110 0.00 25.30;c119 28.90 34.00;c121 5.90 31.10;c107 0.00 10.70;c117 28.70 34.00,32.83\r\nFXU6S,AT5D,Stairs,4,6,Yes,A person is holding a bedroom door open while a second person is fixing a broken key on a laptop,doorway;laptop;stairs,\"There is a person sitting on the stairs working on a laptop.  There is a different person standing in a doorway.;A person is fixing a laptop while sitting on the stairs, while another person stands in the doorway in the distance.;A person is working with a laptop computer on the stairs.\",c052 0.00 32.00;c047 0.00 32.00,30.75\r\nETDTU,ENHU,Kitchen,6,7,Yes,\"A person is cooking on a stove, then the person begins holding a mirror.\",food;mirror;pan;stove,\"Person in the kitchen cooking on the stove then turns the heat down on the skillet.;A person turns on a stove burner, moves a pan that is on top of the burner, then picks up a mirror and looks into it.\",c093 0.00 4.70;c096 2.50 9.70;c147 3.30 9.80,12.29\r\nMB281,BONA,Pantry,5,6,Yes,\"A person is standing in the room grasping an open bottle of medicine and a spoon.  The person pours some medicine into a spoon and drinks it, then closes the bottle and puts it down on the shelf.  The person picks up a laptop off the shelf and turns off the light and leaves.\",book;cup;doorway;glass;laptop;light;medicine;shelf,\"The person takes a spoon and bottle. The person opens the bottle, puts some of the contents on the spoon, and eats the contents. They pick something up, turn off the light, and leave.;A person taking some medicine and then picking up an electronic device, turning the light off and walking out of a kitchen.\",c108 0.90 8.30;c105 19.50 28.90;c129 4.30 12.30;c050 14.80 23.80;c030 19.60 30.00;c109 14.30 19.80;c081 14.30 19.80;c110 2.00 7.60;c128 2.90 19.80;c047 19.30 30.00;c097 24.50 30.00;c107 2.70 19.80;c030 18.20 24.20,28.58\r\nY4GHN,M7K8,Kitchen,5,4,Yes,A person is cooking some food. Another person is sitting in a chair and tidying a pile of mail.,book;cabinet;cupboard;food;magazine;paper;shelf,\"A person is looking at a book. While another person is getting an item from the cabinet.;A person shuffled a magazine on a table. Another person walked over to a counter and opened a grill. The person then opened and closed a cabinet. The person then opened and closed the grill again.;Two people are in the kitchen, one holding a magazine, while another puts some things away into a top cabinet.\",c147 0.00 31.00;c112 7.00 19.80;c113 3.10 9.70;c115 0.00 19.20;c026 0.00 6.20;c081 8.10 15.60;c063 5.80 10.30;c062 7.90 13.70,30.04\r\n92WXO,BONA,Bedroom,6,5,Yes,\"A person can dress in front of a mirror in their man cave, A person can hold a camera in their man cave.\",clothes;mirror,This person put on a shirt while standing in front of a mirror.;he is putting on a shirt then buttons it while in front of a mirror.,c096 0.00 5.00;c148 1.70 33.00;c002 0.90 6.80;c000 1.20 9.40,32.04\r\nZKK73,4UGC,Kitchen,4,7,Yes,A person is laughing and walking to the refrigerator and then drinking by the stove.,refrigerator;water,\"A person walks into the kitchen sneezes opens the fridge gets a bottle of water out walks over to the stove and drinks the water.;A person comes into the kitchen, sneezes, opens the refrigerator, gets a bottle of water out and starts drinking it.;A man is sneezing while he walks into the kitchen. He grabs a water from the fridge and drinks it\",,29.54\r\n0QAZ7,B6UG,Garage,4,7,Yes,A person is in their garage pouring medicine into a garbage can. They grab a towel and wipe a counter before leaving and closing the door.,bottle;bucket;door;medicine;shelf;towel,\"A person puts something in a bucket. They scrub something with a towel;A person is walking around the room cleaning they dust a shelf with a towel put the towel down and walk out of the room.;A person pours some liquid into a red pail, and then washes down a window frame with a red cloth, finally opening a door leaving.\",c006 25.30 31.00;c033 10.90 24.80;c082 10.80 25.40;c008 23.40 29.20;c038 11.20 24.80;c097 24.90 31.00;c081 10.50 15.50,30.29\r\n39I5H,P2J3,Bedroom,6,6,Yes,Person is tidying up with vacuum cleaner. Another person is standing in doorway eating .,carpet;dish;floor;food;plate;sandwich;vacuum,A person is vacuuming the floor while the other person is eating off of a plate.;A person wearing a red checkered shirt sips coffee while another nearby individual vacuums the floor.;A person stands in a bedroom and eats while another person vacuums the floor.,c137 0.50 34.00;c156 0.00 34.00;c118 0.00 34.00;c061 0.00 34.00;c067 0.00 34.00;c065 0.00 34.00;c127 0.00 34.00,32.71\r\n3N1I2,GFWE,Recreation room / Man cave,7,6,Yes,\"A person is standing in the rec room holding a sandwich.  The person puts the sandwich into the refrigerator, picks up a pillow and leaves.\",door;floor;food;groceries;pillow;refrigerator;sandwich;towel,\"A person is holding a piece of food on a paper towel.  The person places the food into a fridge. The person then bends down to pick up a pillow and walks to another room with it.;The person is holding a square piece of food on a paper towel, shows the food to the camera, places the food and paper towel in the refrigerator, then bends down to pick up a pillow and walk out of the room.\",c142 11.40 17.10;c143 6.70 13.20;c067 2.90 9.60;c068 7.90 15.10;c076 14.20 21.70;c127 14.50 19.80;c141 7.30 17.10;c033 0.00 14.80;c130 6.50 16.30;c006 11.40 17.00;c034 7.30 16.50;c079 14.20 20.30;c061 0.00 16.70;c008 7.00 14.40;c062 8.10 15.50,31.46\r\nPMJKO,M7K8,Stairs,6,6,Yes,A person is throwing a vacuum down the stairs and grasping a cup of coffee.,cup;floor;glass;stairs;vacuum,\"A person walks up some stairs and drops something down the stairs. The person then peers down at the camera and then walks down the stairs.;A person carrying a mug and another item walks halfway up a set of stairs, stops, turns around, tosses the item down the stairs and then starts to walk back down the stairs while still carrying the mug. The person then pauses for a moment halfway before continuing down the remaining stairs.\",c137 0.00 10.40;c107 5.20 34.00;c152 17.70 31.90;c126 3.60 11.00;c150 0.00 6.30,32.83\r\nS572F,BKWQ,Laundry room,6,6,Yes,\"A person washes a towel in the laundry room, then grasps a clean blanket and snuggles it.\",blanket;clothes;knob;lid;towel;washing machine,\"A person enters a laundry room, smells an article of clothing, then puts the article of clothing in the washing machine, closes the lid and turns a knob. The person picks up a blanket and puts her face to it.;A person walks into a laundry room, smells a piece of clothing, then throws it into the washing machine. The person then picks up a towel and smells it.;A person smells an article of clothing then puts it in the washer and turns it on. The person picks up a blanket and smells it then begins to snuggle with it.\",c000 0.00 10.10;c002 0.00 7.00;c070 14.80 30.00;c073 13.00 21.00;c001 0.00 10.40;c005 6.40 16.60;c072 16.10 30.00;c004 14.80 26.60;c152 17.40 30.00;c033 0.00 10.50;c034 0.60 10.40,29.33\r\n73ZXZ,BKWQ,Pantry,7,7,Yes,\"A person is holding food over a chair, then the person starts closing the cabinet and leaves the room.\",cabinet;cup/glass/bottle;door;food;groceries;shelf,\"The person is holding a jar of pasta sauce and walks towards the cupboard. The person looks at the jar. The person places the jar in the cupboard and closes the door. The person walks away.;A person walks towards a food storage shelf holding a jar of tomato sauce, opens the shelf, looks at the canister and then puts it away.;A person walks into a room and is holding some food. The person opens a cabinet, puts the food away, and closes the cabinet. The person walks out of the room.\",c061 0.00 10.40;c062 6.90 11.80;c112 7.50 12.80;c006 8.10 13.00;c109 6.40 11.90;c130 6.40 11.90;c008 5.60 9.90;c081 6.40 11.80;c107 0.00 10.50;c113 4.70 13.60,17.00\r\nX817Z,AT5D,Kitchen,6,7,Yes,\"A person is sitting on the sofa holding a book. Then, standing and walking into the kitchen, the person begins to fix himself a sandwich.\",bed;book;chair;dish;doorway;food;sandwich;sofa,\"A person is sitting on an indoor bench while quickly observing a book's covers. The person then rises, and walks through a hallway into the kitchen. The person then begins preparing a sandwich while standing at a counter.;A person who is siting on bed with book, just got up, putting the book aside, and went to kitchen, and making sandwich to eat.\",c066 16.10 33.00;c026 0.00 14.10;c123 0.00 6.70;c154 2.40 8.00;c059 0.00 7.30;c116 9.00 14.10;c062 22.10 33.00;c028 9.20 14.10;c115 0.00 13.80;c097 13.20 18.50;c061 17.10 33.00;c135 0.00 7.70;c118 16.80 21.10;c063 17.40 21.70;c032 0.00 9.10;c067 30.40 33.00,32.33\r\nDSZYT,JQ7D,Kitchen,5,7,Yes,A person is standing by a stove. They drink from a glass then begin cooking.,cup;dish;food;pot;spoon;stove,\"A person drinking from a coffee cup and then stirring a pot, wiping his face and then tasting the food that is cooking.;A person drinks something out of a mug, then mixes some food from a pot. The person taste tests the food that was in the pot.\",c106 0.00 8.30;c107 0.00 22.00;c147 3.90 32.00;c118 0.00 4.30;c156 15.70 21.10;c109 2.00 7.10,30.75\r\nATV2F,VOOS,Bedroom,6,6,Yes,A person is putting on clothes and then opens up a laptop,bed;blanket;clothes;doorway;laptop,A girl is dressing in front of a closet. Then she sits on her bed and opens her laptop to begin doing her work.;A person puts on a jersey then sits o the bed and opens the laptop.,c048 12.70 20.70;c148 0.00 10.10;c151 9.00 15.20;c003 7.80 14.50;c002 0.00 22.00;c135 9.80 32.00;c051 10.50 32.00;c071 7.30 13.90;c049 10.90 19.40;c047 10.20 32.00;c097 0.00 4.00;c052 17.00 32.00,30.54\r\nDUSJO,JQ7D,Bathroom,6,6,No,A person is undressing in front of a window in a bathroom. The person pours a cup of water into the sink and then puts the cup on a shelf.,cabinet;clothes;cup;dish;floor;hair;jacket;mirror;shelf;sink;sweater;water;window,\"Person looking out window, takes off jacket, takes of sweater, walks to sink, picks up a cup, pour water in sink, puts hand in pocket, then puts cup on shelf and smiles.;A person wearing a hooded sweatshirt and coat removes both and then pours a cup of water down the bathroom sink.;A person looks out the window and removes their clothing before pouring a cup of water out in the sink and placing it on a shelf.\",c092 15.00 22.00;c081 6.90 12.60;c155 11.10 25.00;c155 0.00 12.60;c002 5.90 11.80;c126 1.50 6.50;c003 1.50 6.50;c096 12.30 22.70;c001 0.00 14.40;c126 6.90 12.10;c120 11.50 16.20;c003 0.00 11.70;c107 11.50 24.60;c144 10.70 15.80,27.12\r\nEXYY8,CP6Y,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person runs into the closet holding a laptop.  The person throws the laptop on top of a blanket on the floor and looks in the mirror.  The person leaves, closing the door behind them.\",door;floor;laptop;mirror,\"Person running through the hall with a laptop in hand  put the laptop down go into a room and shut the door.;A man enters the room, running, and sets his laptop down on the floor before quickly putting on his coat and then leaving.\",c047 0.00 7.00;c006 14.10 20.00;c096 5.20 13.10;c150 0.00 6.00;c126 2.20 6.80;c097 11.40 18.20;c049 1.40 7.30,19.29\r\nGOPZI,AT5D,Dining room,4,5,Yes,A smiling person is putting a laptop in a bag. They raise their hands to the ceiling and start laughing.,bag;chair;doorway;laptop;table,\"A person is standing in a dining room. The person moves a chair over, picks up a laptop from the table, and places the laptop in a bag. The person then smiles and cheers.;A person stands by a table, then picks up a laptop and puts in into a backpack sitting on a chair.;A person picks up a binder off a chair and puts it in a backpack. The person raises their arms in the air while another walks in.\",c047 8.60 17.20;c050 6.00 12.90;c021 13.50 19.40;c152 28.50 33.00;c049 8.40 23.10;c020 14.00 30.60;c149 27.10 33.00;c097 18.80 27.60,31.92\r\nOKIVH,AT5D,Kitchen,7,7,Yes,A person is laughing in the mirror and another person is grasping a book.,book;hair;mirror,People standing in a room one holding a mirror and one holding a book while lending on the wall.;One person flips through a book while another person looks at their self in the mirror.,c026 0.00 32.00;c093 0.00 32.00;c094 0.20 32.00;c096 0.00 32.00;c149 25.80 32.00;c029 0.00 9.30;c027 0.00 5.20;c152 20.50 32.00;c025 0.90 5.90;c115 0.00 32.00;c032 0.00 4.90;c144 6.20 10.80,30.83\r\n36T5X,AT5D,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,One person works on homework while another closes the door and starts undressing out of their outdoor clothes.,arm;book;clothes;door;floor;homework;mirror;paper,\"A person sits on the floor looking at some paper. A person then walks through a door, closes the door and sneezes.;A person sitting on the floor reading a book, another person coming in the door, closing the door and walking across room then sneezing.;A person is sitting on the floor doing homework or something with a notebook, while a second person enters the area and begins to undress and also begins to sneeze.\",c155 24.00 34.00;c008 0.00 4.00;c153 28.00 34.00;c032 0.00 25.70;c125 0.00 26.70;c097 0.00 12.40;c141 14.20 23.90;c006 14.20 23.00;c145 0.00 26.50;c096 25.20 34.00,33.08\r\n5P284,GFWE,Dining room,5,7,Yes,A person is sitting at the table playing games on their phone.  The person gets up and walks to the window and grasps the lock to unlock it.,chair;game;phone;table;window,\"Person walks in room holding phone, sits at table, looks at phone, smiles, put phone down gets up, looks out window and walks out of room.;The person walked to the chair by the table, sat on the chair put elbows on the table holding something on the hands.Get up from the chair looked out trough the window. And walk out of the room.;Person walks to table, sits down, and grabs the phone. Looks at it and walks to window and then walks out of view.\",c015 0.60 25.10;c017 19.90 25.10;c092 20.50 33.00;c059 0.60 25.50;c016 0.20 23.70;c018 0.00 4.20;c009 19.90 24.90;c151 0.00 5.00;c154 20.30 25.30;c011 0.60 25.30;c090 24.30 37.90;c089 24.30 37.90;c014 1.00 24.30,40.50\r\nL0HDB,SW82,Kitchen,6,7,Yes,A person is walking across the room and opening a cabinet. Then the person begins removing the dishes from it and tidying the shelves.,cabinet;dish;door;shelf;table,\"A person walks into a kitchen and starts rearranging a vast amount of dishes in a sophisticated manner,;A person walks into a kitchen and takes out plates from a cupboard.  The person then puts them back into the cupboard.\",c119 5.70 13.80;c114 16.80 30.40;c120 4.50 18.50;c118 6.00 11.00;c120 5.00 10.80;c113 2.60 7.80;c009 4.20 15.00;c082 3.90 31.00;c081 15.30 21.60;c081 21.70 28.40;c097 0.30 5.90;c081 15.60 31.00;c008 2.40 8.10,30.29\r\nIWTWJ,JTAS,Living room,4,7,Yes,\"A person is throwing a blanket onto the sofa. Then, laughing, the person begins running towards the sofa.\",blanket;chair;clothes;sofa;towel,\"A person picks up a blanket and throws it on to a sofa. They sneeze and then laugh. They then suddenly run over to the sofa and plop down on it.;Person moving around got a blanket put it on the sofa,covered  face with hands sneezed and sat down.;A person walks into a room and picks up a sheet and throws it on the floor. Then later sits on the couch.\",c070 0.00 8.10;c074 4.30 9.50;c123 13.20 20.80;c149 5.80 15.30;c150 11.60 17.30;c151 11.60 20.90;c153 7.70 13.30;c003 4.40 9.60;c001 4.00 9.70;c075 4.20 9.50;c002 0.10 4.90;c000 0.10 4.70;c036 4.10 9.50,19.58\r\nK7NRW,AT5D,Living room,6,7,Yes,One person smiles and eats a sandwich out of a bag while another person tries to fix a loose doorknob.,bag;door;food;sandwich;sofa/couch,\"A person opens a bag and pulls some food out. Another person sticks a pen in a door. The other continues to eat.;A man is taking food out of a bag, then eating it, while another person is fixing a doorknob. The eating man watches his friend fix the door.\",c021 0.00 4.60;c152 20.40 31.10;c156 5.80 14.90;c140 13.20 23.70;c065 8.60 29.70;c020 0.00 4.60;c007 11.80 32.00;c067 0.30 15.10;c063 0.00 5.40;c149 21.20 30.70;c123 0.00 14.90;c069 0.00 5.40;c061 0.30 15.10,30.71\r\nST7MR,TSGZ,Bedroom,2,2,Yes,\"A person in their bedroom is undressing their clothes. They start throwing their clothes toward the doorway, and then decide to pick up the clothes and put them on the bed.\",bed;clothes;door;floor;shirt;table,\"A person walks into the room and closes the door. They unbutton their shirt and take it off. Then they throw it on the floor. Then they pick it up off of the floor and put it on the bed.;A person walks into a room and closes a door. The person then starts undressing. They move things on a table, and put a shirt on a bed.;The person walks into the room, removes shirt then folds and drops the shirt to the floor, picks it up again and puts it on the bed.\",c097 0.00 2.70;c006 0.00 8.10;c126 28.30 35.70;c155 3.60 30.10;c009 33.90 40.00;c127 36.50 43.70;c004 40.60 47.80;c001 27.30 33.70;c003 45.70 49.00;c000 39.40 49.00;c002 38.90 49.00,48.42\r\nFVINY,AT5D,Home Office / Study (A room in a house used for work),5,5,Yes,\"A person is in the study, smiling and opening the medicine while drinking coffee.\",book;box;chair;coffee;cup;desk;medicine;plastic container;table,A person is looking at a book and drinks some coffee.  The person picks up a box and takes out some medicine.;A person is sitting on a chair reading a book and drinking out of a mug.  This person gets something out of a container.;A person sat on a chair reading a book. The person then grabbed a cup from a nearby table and took a drink. The person then grabbed a box from the table and opened it up. The person took a piece of paper from the box and returned the box to the table. The person then looked at the paper.,c106 6.50 23.00;c026 0.00 32.00;c041 18.40 28.50;c011 0.00 32.00;c145 0.00 18.00;c110 28.80 32.00;c027 28.80 32.00;c043 28.80 32.00;c115 28.80 32.00;c014 28.80 32.00;c009 17.90 22.80;c040 15.70 29.80;c109 17.90 23.30;c116 14.20 19.00;c107 9.60 22.50;c032 0.00 14.60;c044 20.70 25.70;c059 0.00 32.00;c117 24.80 29.30;c042 25.10 29.60,30.79\r\nVE6GK,CP6Y,Recreation room / Man cave,5,7,Yes,\"A person is seen watching television snuggling up with a blanket. They grasp the remote and turn the TV off and sit at a desk,\",bed;blanket;book;chair;desk;shoe;sofa/couch;table;television,\"A person is laying down watching tv, then shut it off and get up and read a book;A person covering up with a blanket, laying on the couch looking at TV, then uncovering, sitting up turning TV off with remote, walked to a desk, sitting down to open a book to read.\",c011 24.70 32.00;c132 6.10 20.80;c071 0.00 6.70;c154 15.60 21.10;c014 24.10 32.00;c070 0.00 15.00;c072 2.30 15.00;c151 24.70 32.00;c030 24.60 29.50;c026 25.50 30.70;c032 24.70 32.00;c074 10.60 16.00;c055 12.40 19.90;c123 11.20 19.70;c122 1.00 6.20;c134 0.80 15.00;c059 12.00 20.50,31.00\r\nDH4UX,ENHU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is laughing as they clean using a vacuum in a walk-in closet. The person sneezes and wipes their face with a towel.,floor;towel;vacuum,Person on knees on the floor vacuuming then began to sneeze and wipe mouth with towel.;A person vacuums the floor with a red vacuum. The person sneezes and then picks up a black towel or possibly a rag.,c137 0.00 7.10;c033 5.80 12.00;c153 3.40 9.40;c125 0.00 12.00;c127 0.00 7.30,10.96\r\nAZPOX,EDYS,Kitchen,3,,No,A person is running a vacuum across the floor and then standing in front of cabinet laughing at the food in a kitchen.,cabinet;clothes;floor;food;object;table;towel;vacuum,A person tossing objects in their basement.;Person standing by a stove with a towel on the shoulder and fanning something with a towel;A person is holding a towel and cleaning something with it. The person then takes the towel and throw it somewhere.,c126 14.00 19.20;c000 0.00 3.60;c037 1.30 7.70;c014 29.60 34.00;c033 0.00 6.60;c034 2.40 10.80;c036 2.60 11.00,32.67\r\nCUHT0,376D,Living room,6,5,Yes,A person throws a pillow on the couch. That person then takes a picture of the couch with a camera.,bag;camera;doorway;phone;picture;pillow;sofa,A person picks a pillow up off the floor and places it on the sofa and takes a photo of it.;A person walks into the room carrying a pillow they through the pillow on the couch and walk over and pick up a camera then they put the camera on the baby's jumper.;A person walks into the living holding a pillow and set it down.,c087 11.00 16.60;c017 13.30 21.70;c077 0.00 8.30;c079 0.00 8.60;c022 16.20 21.60;c020 7.10 18.80;c023 7.10 12.30;c097 0.00 3.50;c076 0.00 7.90,21.62\r\nVJ0LT,ZDKC,Living room,7,7,Yes,\"The phone rings.  The person, who was pouring a soda on the coffee table, walks over to the door and closes it.\",cup;dish;door;food;glass;table,\"A person walks over to a small table and pours a glass of soda before closing the front door.;A person opens a bottle of Coke and pours it into a glass. The person drinks the coke from the glass and palces it on the table, and then closes a door outside.\",c009 2.50 22.50;c106 12.90 21.40;c006 23.10 33.00;c118 0.00 24.70;c062 0.00 24.90;c061 0.00 25.20;c108 2.50 13.40;c110 2.30 8.20;c141 26.30 33.00;c109 9.00 14.50;c107 0.60 23.30,31.88\r\n4CAB5,ZDKC,Kitchen,4,6,Yes,A person is standing at the stove cooking food on a skillet.  The person turns the overhead light on and gets a soda out of the refrigerator and drinks it.,can;cup/glass/bottle;food;light;refrigerator;stove,\"A person is cooking on a stove. They turn on a light. They then walk to the fridge, and take out a soda and drink it.;A person is cooking in the stove in the kitchen, they go to the fridge and get a drink and start drinking it\",c147 0.00 14.50;c142 15.60 21.70;c104 6.70 13.00;c143 13.00 20.20;c107 15.60 32.00;c106 22.00 31.70;c110 14.40 21.60,30.50\r\nHLB3J,M7K8,Living room,6,6,Yes,One person propped on a pillow awakens and watches when another person starts up a vacuum.,blanket;floor;pillow;sofa;vacuum,\"One person vacuums the floor, while the other is laying on a couch.;A person vacuums the floor while a woman sits in the back and watches her.  A dog runs away when it starts.;The person is cleaning with a handheld vacuum cleaner as another person is sitting on the couch yawning.\",c137 8.70 15.40;c137 15.00 20.40;c146 5.00 11.20;c072 7.30 14.10;c122 0.00 4.20;c152 12.20 28.40;c154 26.50 32.00;c123 0.00 32.00;c070 0.00 32.00;c127 0.00 23.20,31.04\r\nVG7S6,CP6Y,Bedroom,7,7,Yes,One person watches and sneezes as another person comes in holding a chair and takes a vacuum.,bed;chair;doorway;sofa/couch;vacuum,A person is sitting on the edge of a bed sneezing. Another person comes in holding a chair under their arm.;A person is sitting on a bed and sneezing constantly while a second person enters the bedroom holding a folding chair and once inside the room the second person picks up a vacuum cleaner.,c138 12.50 21.00;c153 0.90 10.80;c097 3.20 8.50;c123 0.00 4.50;c123 3.30 7.80;c135 0.00 21.00;c137 16.00 21.00,20.38\r\nYNF6O,ENHU,Closet / Walk-in closet / Spear closet,6,7,Yes,\"One person throws a laptop and some clothes into a bag, then closes the bag.\",backpack;bag;clothes;floor;laptop;sweatshirt,A person put their sweatshirt and laptop into their backpack while they are sitting on the floor.;A person is kneeling on the floor and starts furiously packing up a backpack while zipping it up.;There is someone sitting on the floor with a bag.  That same person puts clothes and a laptop in the bag.,c001 0.00 6.00;c125 0.00 17.00;c127 0.00 17.00;c021 0.00 5.00;c020 0.00 17.00;c047 5.20 12.60;c050 4.90 9.40;c049 5.60 12.90,16.38\r\n2S9LB,AT5D,Bedroom,7,4,Yes,A person is standing and talking on the phone and another person is closing a bottle of medicine.,bed;bottle;chair;medicine;phone,\"Two people are in a room. One person is sitting on a bed speaking on the phone. The other person is sitting in a chair and holding a bottle of medicine.;The people are sitting across from each other, one is talking on the phone sitting on the bed, the other is opening a bottle and sitting in a chair.\",c015 0.00 33.00;c019 0.00 33.00;c135 0.00 33.00;c059 0.00 17.90;c135 0.00 10.60;c107 0.00 18.10;c128 0.00 18.10,31.75\r\nUX0YW,AT5D,Pantry,7,7,Yes,One person stands holding a cup of coffee while another person is playing with a broom.,broom;coffee;cup;floor;glass;wall,\"There are two people standing in the kitchen. One is standing drinking coffee / tea. The other is swinging around a broom.;A person is spinning a broom in the air while another person is leaning against a wall, drinking coffee. The person spinning the broom drops it on the ground.;Two people stand in a kitchen, one flipping a broom back and forth while the other drinks some drink and laughs.\",c101 24.30 30.90;c106 7.90 17.10;c107 0.00 32.00;c126 14.20 32.00;c149 21.60 32.00;c098 0.00 17.80;c152 14.50 32.00;c149 17.90 24.20,30.79\r\nIKJGO,CP6Y,Stairs,4,7,Yes,A person is sitting and reading a book. Then the person puts it down and begins tidying the refrigerator.,book;door;hair;refrigerator;towel,\"A person is sitting on the stairs reading. Then they rub their head, and out the book down. Then they run to go clean the refrigerator.;A person is sitting on some stairs reading. The person scratches their head and continues to read. The person puts the book down, walks down the stairs and begins wiping down a fridge;A person is sitting on the stairs doing homework and then they get up and start cleaning\",c142 42.50 47.00;c025 23.90 31.40;c027 0.00 10.50;c032 0.00 25.20;c143 40.90 46.50;c026 0.00 26.50;c028 22.50 28.40;c154 24.40 29.70;c097 28.00 33.40;c038 30.30 44.60;c008 40.60 47.00;c144 13.80 19.90;c115 0.00 27.90;c033 43.90 47.00;c035 43.60 47.00,45.79\r\nB50MB,BONA,Stairs,5,4,No,A person is lying on the stairs with a camera on their chest.  Another person is eating and gets up from the table and goes over.,dish;floor;food;stairs,\"People are sitting on stairs eating and one gets up.;People are sitting on the stairs, one of them is eating.  This person gets up and walks away.;A person sits on the stairs and eats while the other person lays on a set of stairs.\",c156 0.00 27.10;c154 23.10 28.30;c061 0.00 27.40;c124 0.00 28.20;c125 0.00 27.70;c118 0.00 31.00;c062 0.00 26.20;c063 0.00 25.80,30.08\r\n29R4M,CP6Y,Recreation room / Man cave,7,7,Yes,A person leaves a camera on a shelf. Another person walks around carrying his shoes.,floor;phone/camera;shelf;shoe;table,A person is standing by the doorway. Another person walks in the door holding a pair of shoes.;A person holds a camera nearby while another person walks around with some shoes in their hand.,c053 9.90 24.00;c009 0.00 11.30;c016 0.00 15.20;c015 0.00 15.20;c081 21.00 24.00;c127 21.00 24.00,22.88\r\nFVOU0,AT5D,Basement (A room below the ground floor),5,7,Yes,\"First person is washing door, other person is drinking out glass.\",bed;cup;door;floor;glass;rag;table;towel,\"A person washes a door with a towel while another person sits on the bed and watches.;Two people sit in a room, one drinking some water on a bed, and the other wiping down a door of some sort.;Two people are in a room with a bed with a zebra quilt on it.  One person is sitting on the bed drinking something out of a glass.  The person on the bed takes three sips from the glass and looks at the other person in the room.  The other person is on his knees and is using a cloth to wipe or wash the door to the room.\",c106 0.00 21.90;c038 0.00 32.00;c135 0.00 32.00;c009 18.10 24.00;c107 0.00 22.40;c125 0.00 32.00;c110 0.00 3.10;c109 18.10 23.80,31.08\r\nMWPZ1,EDYS,Living room,6,1,Yes,One person is grasping a towel around their waist and another person is taking a blanket from a cabinet.,blanket;cabinet;clothes;towel,A person folds a towel and puts in on the shelf.;Two people are in a room. The people are folding laundry. One person is off camera mostly.,c034 13.80 21.80;c037 0.50 18.00;c074 15.10 20.10;c033 4.70 22.40;c000 4.90 22.80;c001 11.70 18.40;c036 14.00 20.30;c071 14.90 20.50;c004 0.00 20.10;c000 4.90 13.20;c075 1.10 20.50;c070 0.90 20.50,38.42\r\nXOWBN,AT5D,Dining room,6,6,Yes,A person puts a sandwich onto a table. The person then leaves the table to grab a coffee from another table.,bread;chair;coffee;cup;dish;doorway;food;glass;sandwich;table,\"A person walks into the kitchen, sets a glass down on the table next to a croissant then goes to another table to pick up a glass and start drinking it while they walk around with the glas.;This person walked in and placed a sandwich on the table before drinking from a coffee mug.;A person walks into the dining room holding a piece of food before entering the hallway and grabbing a cup.\",c067 3.70 12.80;c009 6.70 13.60;c107 16.10 32.00;c109 16.20 22.70;c106 20.60 32.00;c120 16.20 32.00;c061 2.60 12.20;c062 5.90 12.20;c110 16.20 22.20;c097 2.30 8.50;c068 5.90 12.20,30.88\r\nCG83G,JTAS,Living room,7,7,Yes,\"A person puts a blanket on a chair, then walks away.\",blanket;chair;table,\"A person folds up a blanket and then wraps it around their arms, putting it on a couch nearby to them.;A person is holding a blanket then begins to fold the blanket. Next the person puts the blanket down on the sofa.\",c070 0.30 20.80;c009 13.80 23.30;c075 0.00 21.00;c071 16.50 22.60;c074 16.80 22.70,27.04\r\n4VJDU,AT5D,Kitchen,7,7,Yes,\"One person dresses into a pair of shoes, then leaves the room. Another person with a broom who is watching sneezes.\",broom;clothes;floor;shoe,\"An individual in a pink shirt uses a broom to sweep the kitchen floor while a person behind them leaves the room. The person sweeping the floor sneezes several times.;One person is sweeping the floor, while the other person puts on his shoes in the background. The background person walks away, while the other person continues sweeping.\",c102 0.00 32.00;c055 0.00 13.30;c148 0.00 13.50;c153 14.00 19.70;c098 0.00 32.00;c127 0.00 32.00;c154 4.80 11.30;c053 0.00 13.60,30.71\r\nQSVXJ,P2J3,Recreation room / Man cave,7,5,Yes,\"A person is in the hallway watching some video on their phone. They have a towel in the other hand that they are grasping, and decide to begin throwing it down the stairs.\",floor;phone;towel,\"A person on a cellphone is standing by a person who is holding a towel and then decides to throw the towel on the floor.;A person looking at a cellphone while another person picks up an article of clothing and places on his arm. Then takes the item off of his arm and throws it on the ground.;One man is playing on his phone while another holds a towel, which he then drops onto the floor from his arm as the other man continues to type on his phone.\",c016 0.00 33.00;c033 5.70 17.50;c126 12.70 18.50;c015 0.00 33.00;c034 8.10 17.00;c036 11.20 19.30,32.33\r\nTKAUR,ZDKC,Kitchen,4,7,Yes,A person is in their kitchen drinking coffee and reading a book. They our more coffee and start dressing for the weather before leaving.,book;clothes;cup;dish;glass;table,\"A man stands and reads a book, then takes a cup of coffee off of the counter and takes a drink from it, then pours himself more coffee and begins to dress.;A person reads a book. The person then takes a drink of some water, and puts the book down. The person pours some more coffee and puts a hoodie on.\",c026 0.00 19.50;c106 5.70 12.80;c148 27.00 40.30;c120 17.20 27.60;c119 19.90 27.60;c001 27.00 42.00;c118 19.20 26.40;c029 5.30 13.00;c002 27.00 31.60;c000 27.40 33.00;c032 0.00 18.70;c028 14.90 19.70;c009 15.10 19.90;c025 14.00 19.10;c108 18.40 25.30;c107 4.00 32.00;c110 3.20 8.90,41.50\r\nNJANX,CP6Y,Recreation room / Man cave,5,6,Yes,A person is tidying the shelf and then sneezing into a shelf in the recreation room / man cave.,box;floor;shelf;table;towel,\"A person cleans a table and places a box on the floor. They sneeze and continue cleaning;A person is cleaning off a shelf  they are dusting they set the toaster on the floor and continue dusting the shelf.;A person is cleaning a box, placing the box from a table and putting it on the floor. The person is then tidying up the table.\",c082 11.40 17.40;c042 3.00 9.70;c013 17.70 22.00;c038 17.70 22.00;c081 6.70 19.60;c126 2.30 9.50;c012 0.00 22.00;c043 2.40 9.60;c040 2.40 9.60;c153 15.50 21.60;c039 19.50 22.00;c033 19.50 22.00,21.38\r\nURK3G,M7K8,Kitchen,6,7,Yes,One person opens the refrigerator and stands there drinking. Another person runs in with homework and smiles.,book;cup/glass/bottle;doorway;homework;refrigerator,\"A person picks up the glass and walks near the fridge, open the door and start drinking from the glass, looking at the webcam, another person comes in with smile on her face and carrying some books in her hand, walks near the webcam, shows the books to a person in web and go back, open the books and some pages from it to a person in webcam with both the person smiling, then both of them come near the webcam and smile.;A person is going to the fridge to get a drink.  Then another person comes from the back with a magazine in the hand.\",c143 0.00 7.10;c152 6.90 17.50;c032 10.70 31.70;c149 9.50 25.10;c026 7.50 32.00;c150 5.90 11.60;c097 5.50 10.70;c029 23.30 28.10;c027 14.50 20.80;c107 0.00 2.90;c106 3.70 18.60;c115 7.50 32.00,31.04\r\nGV0L7,SW82,Living room,6,6,Yes,\"A person is sneezing as the person turns the light on. Then, lying on the sofa, the person begins to do their homework.\",book;homework;light;paper;shoe;sofa,A person turns a light on and sneezes.  This person then sits on a couch and writes in a book.;A person turns the light on and sneezes. The person then sits down on the couch and writes some things down.,c123 0.10 12.60;c104 3.30 10.00;c145 11.20 21.30;c153 2.90 10.70;c151 9.70 27.20;c115 8.90 31.00;c026 8.90 31.00;c057 5.90 11.70;c117 8.90 14.10;c030 8.80 14.50;c122 4.10 31.00;c032 13.30 31.00;c027 10.80 17.60,30.33\r\nTRHT1,ENHU,Living room,5,6,Yes,A person is sitting in a chair in living room holding a pillow.  The person stands up and begins undressing while smiling.,chair;clothes;floor;pillow;sofa/couch;sweatshrt;television,\"Person sitting on a chair watching television when suddenly rises and starts taking off clothes.;A person holds a pillow while sitting on a couch, then stands up off the couch and takes their shirt off.;A person stands up and removes their shirt.\",c059 0.00 4.10;c154 0.10 5.40;c155 2.60 10.00;c132 0.00 4.00;c000 0.00 5.80;c003 1.90 6.30;c123 0.00 4.20;c126 2.10 6.40;c077 2.10 6.40,8.83\r\n1NJOQ,BONA,Pantry,6,7,Yes,A person walks into their pantry and sits on a chair. The person opens a cabinet and takes out a bottle of medicine.,bottle;cabinet;chair;door;medicine,A person walks through the doorway and takes a seat in a chair. They open the cabinet and pull out a drink in a bottle.;Person sits down on blue plastic chair. Opens drawers on cabinet and pulls a bottle out of the bottom drawer.,c112 16.90 23.40;c113 14.60 20.70;c059 11.30 36.00;c151 8.70 15.80;c097 0.00 5.90;c008 15.20 20.70;c128 30.70 36.00;c107 31.60 36.00;c006 16.90 23.00;c110 30.70 36.00,34.96\r\nCXNYW,376D,Living room,7,6,Yes,A person is seen working at a desk. They begin walking towards a table and take a bite out of a sandwich.,chair;desk;food;sandwich;table,\"A seated person wearing striped pants types on a keyboard. The individual then stands up, walks towards a different table, sits down, and begins doing homework.;A person sits in a chair at the desk and types on a keyboard before walking to a table and eating a sandwich.\",c065 16.60 27.00;c067 16.60 27.40;c011 0.00 14.40;c011 15.80 28.60;c156 17.60 27.10;c154 9.40 15.60;c014 0.00 15.30;c151 9.30 15.40;c063 15.80 22.60;c061 16.30 24.40;c059 0.00 13.40;c062 23.30 28.40,28.83\r\nEHS68,CP6Y,Recreation room / Man cave,3,5,Yes,A person is undressing in a doorway while another person is throwing a pair of shoes.,clothes;clothing;doorway;floor;shoe,2 people are standing in a room one person is throwing shoes while another person is undressing.;A person undressed out of a sweater. Meanwhile another person picked up and threw four shoes one at a time.;A girl stands and begins to pick her shoes up off the floor while another person enters from the adjacent room.,c053 0.00 6.50;c058 1.10 6.40;c155 0.70 18.00;c058 1.00 18.00;c004 9.10 18.00;c001 1.70 17.40;c000 8.90 18.00;c002 0.00 18.00;c003 0.00 17.00;c056 0.20 16.80;c126 1.70 18.00,17.17\r\n1AA3I,P2J3,Bedroom,4,6,Yes,A person is watching a window while another person is closing a book.,book;window,\"A person is looking through a book, while the other person is looking out the window;Two people are standing in front of a window, one looks out the window while the other person is reading multiple pages from a book.\",c092 0.30 34.00;c025 26.00 32.50;c026 0.00 34.00;c027 5.70 11.80;c032 0.00 34.00;c115 0.00 34.00,32.71\r\nE5ZF5,M7K8,Living room,7,7,Yes,A person is seen drinking coffee and eating food. They put their food away and begin snuggling with a blanket on the couch.,blanket;coffee;cup;food;sofa,\"A person sits down on a couch and eats some food, then snuggles up with a blanket.;A person sat down on the sofa and ate a strawberry. Then the person took a drink from a cup. Lastly the person covered with a blanket.\",c061 0.00 14.80;c123 0.00 37.00;c072 22.60 37.00;c106 13.70 20.90;c110 13.00 17.90;c062 10.50 17.20;c070 22.40 31.10;c073 21.40 28.60;c107 12.60 18.00;c156 6.00 12.30;c071 23.00 29.60;c151 0.00 2.70;c063 0.10 7.20,35.62\r\n61IVZ,ZDKC,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person enters their home and closes the door. They stand at the door for a moment, then put down the bag they were holding. They take off their outer layers of clothes and toss them on a chair.\",bag;chair;clothes;door;floor;jacket,\"A person opens the door and closes it. They set down the bag they're holding, they take off their jacket, and throw it on a chair.;The person opened the door came inn put the bag down took off a jacket scratched behind ear.;A person comes into the house.  Then the person puts a bag down.  Then the person then walks away.\",c006 2.60 9.20;c155 9.70 19.80;c022 5.80 13.30;c008 0.00 5.30;c097 0.00 7.00;c126 7.40 12.20;c141 0.10 9.00;c003 17.00 22.50;c000 13.50 22.50;c001 17.00 22.50;c020 0.00 12.00,25.04\r\n0J471,ARRB,Hallway,6,7,Yes,A person awakens in the hallway with their shoes under their head as a pillow. They stand up and begin running.,floor;shoes,A person sleeps on the hallway in the floor and then gets up and runs back and forth up and down the hallway.;A person lies on the floor on their shoes before getting up and running up and down the hallway.,c154 7.40 17.20;c150 13.00 23.00;c124 0.00 10.40;c146 0.00 10.80;c149 18.00 23.00;c152 18.00 22.70,21.71\r\nE0YEK,EDYS,Bedroom,3,3,No,A person drinks from a glass of iced coffee while tidying the laundry room.,chair;clothes;coffee;glass;picture;sofa/couch,\"Person moves clothing off chair and sit down pick up a picture and stare at the picture.;A person moves some clothing items laying on a chair and sits down. The person then picks up a large picture, looks at it, and then sets it back down. Then the person stands back up.\",c001 7.30 15.40;c151 11.20 16.50;c123 11.90 40.10;c088 13.80 33.20;c084 12.70 34.30;c004 7.30 15.40;c002 7.10 15.20;c059 12.50 44.00;c000 9.50 14.30;c003 7.50 15.40,43.25\r\nW5ZY8,P2J3,Kitchen,4,5,Yes,A person is holding a towel while smiling at a camera.,blanket;camera;towel,A person is holding a towel and standing in the kitchen. They are just standing there.;A person stares at the camera with a towel around their wrist.,c033 0.00 34.00;c152 21.70 28.50;c070 0.00 34.00,33.50\r\nSW5TC,JQ7D,Bedroom,6,7,Yes,A person awakens in a bedroom and laughs at the television before picking up a pair of shoes.,bed;blanket;clothes;pillow;shoe;television;tv,\"A person is sleeping in a bed, wakes up and smiles then watches tv and grabs their shoes.;A person lying in bed moves their head to the side. The person sits up and laughs at a tv and picks up their shoes from the floor.;A person lays in bed, eventually getting up and laughs at the tv. The person picks their shoes up and watches the tv.\",c053 20.80 30.00;c134 0.00 14.10;c133 10.10 24.80;c149 13.10 18.90;c132 12.20 30.00;c056 19.40 30.00;c072 0.00 24.20;c078 0.00 17.10;c148 19.90 30.00;c146 10.10 17.30;c135 13.40 30.00;c152 13.40 17.70,29.04\r\n3MZZI,4TV7,Stairs,6,6,Yes,A person sneezes and drops their bag down the stairs. The person puts some homework back into the back and quickly leaves.,backpack;bag;book;doorway;floor;stairs,A person sneezes and drops their bag. They pick it up and walk down the stairs.;The person runs into the wall and drops their bag. The person then closes their bag and walks down the stairs.;A person walks down a hall and sneezes and drops the book bag that the person is carrying. The person picks the bag up and walks down the stairs.;Person standing at the top of the stair with a bag in hand drop it and item fell out person put the item back in.,c153 0.90 9.40;c150 12.30 40.00;c023 6.00 14.30;c126 1.50 6.50;c117 5.80 13.50;c116 8.00 14.10;c020 0.00 6.30;c028 6.80 13.20;c097 35.80 40.00;c024 1.70 6.30,39.08\r\n3YQE2,4TV7,Stairs,6,6,Yes,\"The person turns on the light, then starts sneezing while using the vacuum to tidy up the stairs.\",floor;light;stairs;vacuum,A person is using the vacuum on the stairs. They sneeze and then turn off the light.;A person is vacuuming stairs. The person is climbing up the stairs while continuing to vacuum.;Person standing on top of the stairs using a vacuum on the stairs then turns off the lights.,c105 24.70 31.00;c137 0.00 28.30;c153 17.80 29.60;c127 0.00 9.20,29.96\r\nMA6GY,4TV7,Stairs,6,6,Yes,\"A person opens a box of groceries. The person removes some items, begins eating one, and puts the others back in the box.\",bag;bottle;box;floor;food;groceries;medicine;something;staircase,A person is sitting on the stairs and opening a box. A person then begins to take some medicine. A person then begins to eat some food;A person sorts through a box before shaking something and putting what looks like pills in her mouth.,c020 0.00 34.00;c040 0.00 34.00;c041 0.00 6.80;c043 0.00 2.80;c044 0.20 9.80;c063 6.80 13.70;c061 8.40 25.50;c156 10.90 34.00;c129 9.50 16.00;c042 16.90 22.20;c039 15.40 20.90;c110 18.40 24.00;c107 0.70 7.70;c128 2.50 7.50;c125 0.00 34.00,33.33\r\n7O6FK,CP6Y,Stairs,7,7,Yes,A person throws a blanket on the floor then grasps a picture while running down the stairs.,blanket;clothes;clothing;floor;phone/camera;picture;stairs;towel,\"A person drops a blanket on the floor and then picks up a picture off the wall and then walks down the stairs while holding it.;A person throws a blanket down the stairs, takes a picture from the wall, and walks down the stairs.;A person throws a blanket down some stairs, takes a picture frame off a wall, and walks down the stairs.\",c126 4.00 9.60;c074 3.10 10.30;c087 9.30 14.50;c003 0.00 9.50;c036 0.00 9.30;c084 9.60 20.00;c083 8.40 13.40;c070 0.00 8.90;c150 11.10 20.00,19.00\r\nXJE7I,JQ7D,Bathroom,5,7,Yes,\"A person opens the bathroom door using the doorknob.  They turn on the light, take a bag from the counter, open it and then exit the room and close the door.\",bag;counter;door;light;mirror,\"A person walks to a door and looks in the mirror on the back before opening the door. They take a bag form a counter, leave and close the door.;A person opens a door then they stand in the door way and then they walk into the room. they turn the light on and go over to the sink and pick up a bag and walk back out.\",c104 8.40 13.70;c021 11.80 24.00;c023 20.20 27.90;c141 2.20 7.90;c006 24.70 30.00;c008 2.90 9.60;c096 14.40 22.30;c097 5.60 14.80;c020 20.30 27.80,28.67\r\nT42IZ,CP6Y,Kitchen,5,6,Yes,\"A person is in the kitchen standing next to the sink.  Same person opens the fridge door and puts the groceries in the fridge, then closes the fridge door.\",bag;door;food;groceries;refrigerator;shelf,A person takes a large bag and opens a fridge. The person puts the large back into a fridge and closes the fridge door.;A person takes a large bag and puts it in the fridge. The person then closes the fridge door and looks at it.,c130 12.40 22.60;c154 0.00 30.00;c022 12.30 23.30;c081 12.60 23.00;c020 0.00 18.50;c008 4.00 12.40;c143 4.00 12.40;c022 11.20 17.60;c006 19.90 26.90;c062 8.40 15.40;c142 19.80 27.40;c021 0.10 5.70,29.33\r\n6HT0J,EBH9,Kitchen,6,6,Yes,\"A person is holding a cup of coffee in the garage. The person sets the coffee down and picks up a book. After leafing through it for a moment, the person throws the book aside.\",book;chair;cup;shelf,\"A person is sitting in a chair drinking a coffee then they set the coffee down and start reading a book;A boy is sitting and holding a cup, which he then puts down on the floor to pick up a book and flip through it quickly.\",c107 8.20 20.10;c025 1.30 14.50;c027 5.00 12.80;c029 13.20 30.60;c032 6.80 19.50;c109 12.70 31.70;c109 2.80 9.00;c026 8.20 23.40;c028 19.40 25.30;c030 5.30 11.50;c107 0.00 6.70;c081 17.50 25.50;c152 5.50 11.10;c059 0.00 32.00,31.21\r\n6X6Y0,EBH9,Recreation room / Man cave,6,6,Yes,Person is fixing his glass desk in the garage and smiling while doing so.,counter;desk;screwdriver;table;tool,A person is using a screwdriver to fix a countertop.;A person is fixing the counter top.;He got the screwdriver and he started to unscrew or screw the bolt on the table.,c152 25.90 32.00;c154 0.00 32.00;c014 0.00 32.00,31.42\r\nWKPQ3,EDYS,Bedroom,4,4,Yes,A person standing in their hallway turns on the light to look in the wardrobe while dressing for work and grasping their cell phone.,closet;door;light;phone;shelf;towel;wardrobe,\"A person is walking through a bedroom they turn off the lights go to the closet and pick up a phone then they talk on the phone and close the closet door.;A person walks into a room, turns on the light and goes through their closet before closing it.\",c113 9.10 15.50;c019 15.80 28.70;c081 14.40 19.80;c104 5.10 11.00;c036 1.70 6.50;c112 25.00 31.20;c006 25.30 30.90;c008 9.10 15.00,32.08\r\nOT35M,ENHU,Basement (A room below the ground floor),6,4,Yes,\"A person is in their basement putting a towel on their shoulders. After walking around for a bit, they put the towel down and take their phone out to take a picture.\",blanket;clothes;floor;phone;picture;towel,\"A person is putting on a towel, they then take the towel off and throw it on the floor. They pull out a camera, smile, and take a picture.;Person standing in a room putting a towel around his neck then throwing the towel to the floor.;A person put a towels around their neck, walks to a door, stops, turns around and removes the towel from their neck, throws it on the ground and then takes a picture of themselves.\",c015 7.70 15.00;c034 4.40 9.80;c126 4.40 9.80;c087 9.60 15.00;c152 11.30 15.00;c070 0.00 7.20;c074 4.00 9.00;c071 0.00 9.00;c016 8.00 15.00;c155 5.00 10.00;c018 6.90 12.00;c033 0.00 4.60;c036 4.60 9.30;c003 4.60 9.60,13.79\r\n7R44Z,I48P,Laundry room,5,7,Yes,A person turns on the light then begins putting items in the washing machine. Next the person sneezes before grabbing a vacuum and leaving.,broom;clothes;doorway;laundry machine;vacuum;washer,\"A person is putting clothes into a laundry machine. They pick up a vacuum cleaner and sneeze before walking away.;A person is putting laundry into a washer, then picks up a vacuum, sneezes and leaves the room.;A person is putting clothes in a washing machine. That same person stops, picks up a vacuum and sneezes.\",c137 17.70 29.40;c138 15.60 22.20;c153 18.50 26.80;c000 0.00 3.60;c000 0.80 7.60;c001 4.90 11.00;c002 0.00 18.10;c005 0.00 19.10;c097 14.60 20.40,32.75\r\nW0QSB,JTAS,Kitchen,7,7,Yes,\"A person is cooking on a stove, they stop and begin washing dishes in the sink.\",dish;food;sink;stove,Person standing by a stove cooking goes over to the sink and began washing dishes.;A person makes some food on the stove. The person puts some soap on a scrub and starts to wash some plates.,c119 25.90 35.00;c147 0.00 14.40;c118 10.60 35.00;c120 25.60 35.00;c121 14.80 35.00,33.92\r\nUMTLM,CP6Y,Bathroom,6,7,Yes,\"A person stands at the bathroom sink, splashing water on their face to wake them up. They look behind them to the open doorway and close the door.\",door;hands;sink;water,\"A person is washing their face at the bathroom sink when they look around and go over to the door and close it.;He is washing his face with water and saw that door is open, so he is closing the bathroom door.\",c006 14.50 20.00;c139 0.00 16.30,18.79\r\nUPT25,EDYS,Living room,4,3,Yes,A person is seen closing a box after taking out some pictures. They then sit down on the sofa and then start laying on it.,chair;laptop;sofa;table,A person sits down on a couch and looks at a laptop they places on their lap. The person then leans on the couch.;Person walk over and sit on the sofa with a leg on the sofa looking at a television.,c122 19.90 27.30;c123 4.30 12.60;c151 3.90 10.00;c009 0.00 4.60;c052 9.20 24.60;c047 6.00 25.10;c048 8.90 14.10;c051 23.60 31.00;c149 26.70 31.00;c059 5.20 31.00;c050 2.70 13.30,30.12\r\nC83CH,ENHU,Home Office / Study (A room in a house used for work),7,7,Yes,A person is dressing and then undressing in front of a mirror and then throwing discarded clothes on a desk in a home office / study.,clothes;desk;mirror;table,A person stands shirtless in front of a mirror. The person proceeds to put a shirt on. The person then takes the shirt off again and walks away.;A person is standing in front of a mirror and the person puts on a hoodie and then takes the hoodie off and walks away from the mirror.,c096 0.00 12.90;c155 7.90 16.90;c009 12.00 17.00;c148 0.00 10.50;c001 11.90 17.00;c000 0.00 5.00;c003 11.90 17.00,15.88\r\nKWJ5O,BONA,Kitchen,2,4,No,\"a person eating a sandwich on the table, the person gets up and puts their plate in the sink and then takes a look out the window.\",chair;dish;food;sandwich;sink;window,A person is sitting on a chair holding a plate and eating.  This person stands up and puts the plate down.;The person is sitting on a wooden stool eating a sandwich with legs crossed and holding a plate before standing up.,c119 25.80 33.90;c092 30.80 35.00;c067 0.00 29.60;c154 26.40 31.00;c118 0.00 32.70;c120 23.90 35.00;c065 0.00 30.80;c156 0.00 31.10;c061 0.00 31.10;c068 26.30 33.60;c059 0.00 30.30,34.42\r\n5NG6Q,EDYS,Kitchen,3,6,Yes,\"A person is seen washing a cup, which they then put coffee in. The person then starts tidying the area and doing dishes.\",cup;dish;food;stove;table;towel;water,\"The person is cooking on the stove. They finish cooking and begin to clean the stove with a towel.;A person is rummaging through a kitchen and then starts pouring water to clean the stove.;A person pours some water into a can, and then takes a large pot and pours some more things into a cup. The person walks away.\",c033 17.90 28.00;c038 10.40 25.60;c009 0.00 4.30;c120 9.90 18.10;c119 13.80 21.00;c108 10.90 22.20;c014 0.00 32.00;c121 17.70 25.40;c118 1.10 28.30;c147 10.50 14.90;c012 17.60 25.60;c147 28.50 32.00;c012 28.60 32.00,30.58\r\n9LRJZ,4TV7,Closet / Walk-in closet / Spear closet,6,7,Yes,A person stands in the doorway grasping a box. Another person is laughing into a pillow hysterically.,bag;book;box;doorway;pillow,Person standing in the doorway of the closet with a book another person come in and began to laugh.;One person is standing in the doorway of the closet as another person walks in laughing hard enough to cover their face with a shirt.,c076 1.70 34.20;c041 19.10 30.30;c149 2.10 36.30;c152 5.40 11.30;c040 0.00 40.00;c026 0.00 40.00;c020 1.50 33.40,38.75\r\n6OQYV,ENHU,Laundry room,6,5,Yes,A person runs into the laundry room and throws some bed sheets into the washing machine. The person turns out the light and runs back out.,blanket;cabinet;clothes;door;light;washing machine,\"A person is adding clothes to a washing machine afterwards they open a cabinet and then leave the room.;The person walked to the laundry room,carrying a jacket opened the washing machine put the jacket in the machine closed the machine and walk away.;A person places clothing into a washes before turning the light off and leaving the scene.\",c000 0.00 5.30;c001 0.90 9.50;c002 0.00 4.90;c005 5.50 13.20;c112 6.20 12.90;c071 1.40 9.20;c070 0.00 7.80;c074 1.40 7.80;c006 6.00 11.80;c141 6.00 11.70;c150 0.00 4.30;c105 10.80 16.00;c097 0.00 2.50;c113 5.30 12.20;c008 5.90 10.50;c007 5.30 11.70,15.46\r\nLKH9A,I48P,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person walks into the closet and turns on the light.  The person picks up a book off the shelf, and sits down to read.  The person closes the book, grabs the doorknob and leaves.\",book;box;chair;closet/cabinet;door;floor;light;shelf,\"A person goes into the closet and take a book off the top of the shelf and then sit down and read it.;A person walks into a closet, grabs a book off of a shelf, sits down, and starts to read it. The person then puts the book down and walks out of the closet.\",c028 23.00 29.20;c032 10.10 27.00;c154 23.50 29.50;c141 25.00 34.00;c026 6.10 28.50;c115 8.10 28.50;c082 4.00 11.30;c030 6.40 11.90;c044 6.40 10.90;c097 1.00 6.50;c031 24.20 29.80;c126 24.50 30.30;c027 11.20 18.20;c112 24.80 34.00;c116 24.00 28.80;c151 9.30 14.90;c104 0.00 6.00;c059 10.30 27.80;c025 22.30 27.00;c105 30.10 34.00;c006 25.20 34.00,33.08\r\nFOP0L,CP6Y,Kitchen,7,7,Yes,A person is in the kitchen drinking some wine while watching television and there is a pillow on the floor.,beverage;cup/glass/bottle;television,\"A person takes a sip of some drink while watching a tv located in another room.;A person watches some tv while in another room, drinking some water.\",c132 0.00 19.00;c107 0.00 19.00;c106 0.00 19.00,17.67\r\nSUE5L,M7K8,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is at a entryway sitting in a chair drinking coffee, they then stand grab a towel and walk away.\",blanket;chair;clothes;coffee;cup;dish;glass;table;towel,\"A person walks over to a chair next to a door and sits down. The person is holding a cup and drinks from it before getting up, grabbing a towel from a table and walking out of the room.;A person sits down with a cup in hand. The person drinks from the cup, takes a blanket, and stands up from the chair;A person walks over to a chair and drink from a cup. The person picks up something from an end table and walks out of the room.\",c106 0.20 25.50;c033 16.00 26.00;c059 0.20 21.80;c154 16.30 23.00;c107 0.00 26.60;c107 13.50 25.10;c035 15.20 23.60;c151 0.00 6.30;c070 16.80 21.30;c118 0.40 22.20;c002 16.30 25.50;c000 16.30 25.20;c001 16.00 33.00;c150 0.00 3.70,31.58\r\nQQGU3,ENHU,Pantry,6,7,Yes,A person takes a box and dishes out the pantry then opens the box.,box;cabinet;cupboard;dish;door;floor;food;plate;shelf,\"The person opens the doors to the cupboard, puts a plate on top of the cupboard, then holds a box.;A person opens a cabinet and begins preparing some food from a cardboard box on the counter.;A person opens a small cabinet door and takes a plate and some food out of it. The person looks through the box of food.\",c040 7.70 15.00;c043 1.10 10.60;c118 7.00 11.90;c125 0.00 19.00;c008 0.00 5.30;c041 10.30 18.50;c113 0.00 5.30;c119 4.20 14.10;c120 0.00 15.50;c062 2.30 19.00;c061 3.10 19.00;c082 0.00 19.00;c063 2.60 10.40;c141 0.00 5.20;c081 7.90 14.40;c044 15.20 19.00,18.04\r\nDK9PH,ENHU,Pantry,6,7,Yes,The person is grasping groceries from a bag and putting them away. The person grows impatient and is seen pouring the remaining contents of the bag on to the floor before leaving the room.,bag;book;chair;closet/cabinet;floor;food;groceries;shelf;table,\"A person kneels on the floor and empties a bag of groceries on to the shelf of a small pantry.;A person is taking food from a bag and putting on a shelf. The person stands up and takes the bag with them as they walk out of the room.;A person takes some items from a bag and puts them on shelves in a short bookcase, then walks away.\",c021 0.00 8.30;c020 2.00 11.10;c130 2.00 11.10;c081 1.80 11.70;c023 6.50 13.00;c062 1.20 9.00;c063 0.90 5.20;c028 6.10 13.00;c061 1.00 5.40;c154 6.80 13.00;c114 0.00 10.70;c082 0.00 10.80;c126 6.00 13.00,12.29\r\nIQA16,M7K8,Dining room,7,7,Yes,A person opens a bag of groceries at the dining room table. The person turns off the light and leaves.,bag;food;groceries;light;table,A person is standing at the table taking groceries out of a bag they walk over and switch the light off and walk out of the  room.;There is a person taking groceries out of a bag and putting them on a table.  That person then turns off the light and leaves the area,c130 1.60 14.70;c021 0.00 8.40;c105 11.20 19.60;c009 0.80 13.60;c020 0.00 11.90;c152 0.00 8.10;c063 0.00 11.10;c061 0.50 4.70;c062 1.90 6.90,31.33\r\nJP5NM,ZDKC,Entryway (A hall that is generally located at the entrance of a house),3,7,Yes,\"A person is standing in an entryway undressing. They grab a blanket, and a sandwich and leave.\",blanket;clothes;couch;food;jacket;sandwich;towel,\"A person takes off a jacket in front of a door. After taking it off, the person takes a blanket from the couch, snuggles with it, and walks away.;A person takes their jacket off and puts on a pink blanket. The person then eats some food from a table.;The person removes the hooded sweatshirt then covers with a pink blanket and walks out of the room.\",c067 13.90 25.00;c070 9.80 25.00;c155 0.50 9.50;c002 0.00 7.80;c154 0.00 25.00;c071 6.90 25.00;c062 12.90 25.00;c156 12.70 24.80;c033 6.30 15.30;c065 12.60 24.70;c003 4.30 8.80;c063 13.00 17.50;c072 11.20 25.00;c073 6.20 14.20;c000 2.90 8.30;c069 12.30 17.60;c061 13.70 24.10;c001 3.50 8.70,23.62\r\nPJDUN,AT5D,Bedroom,5,7,Yes,\"A person is sitting up in bed. Then, taking a book off the shelf, the person begins to do their homework.\",bed;book;chair;homework;shelf;table,\"A person gets up out of bed and takes a book off a shelf and sits down. The person then writes some things onto a piece of paper.;A person getting out of bed completely dressed, getting a book, sitting at a desk and writing something.\",c134 0.00 4.30;c133 0.00 5.90;c146 0.00 4.80;c082 8.20 15.00;c154 0.00 7.60;c028 18.50 31.00;c026 11.00 17.40;c030 7.90 14.60;c059 19.40 32.00;c014 19.20 32.00;c027 11.30 16.10;c025 13.00 17.50;c009 17.90 23.60;c117 22.70 28.40;c145 24.50 32.00;c115 9.60 23.60;c151 17.20 23.20;c032 19.60 32.00;c011 19.20 32.00,30.96\r\n82QZP,BONA,Stairs,6,7,No,A person is working on fixing the picture whose glass is broken.,floor;glass;picture,\"The person sitting on the step of stairs,put the back on the back of the photo frame.;There is a small boy sitting on the steps putting together a picture frame.\",c086 0.90 13.10;c083 0.00 33.00;c084 0.00 33.00;c125 0.00 33.00;c152 29.30 33.00;c088 24.70 33.00,32.08\r\nNDDHA,ARRB,Bathroom,5,7,Yes,A person washes a towel before putting on shoes and running out of the room.,clothes;counter;shoe;sink;towel;water,\"Person at sink, turned on water, placed clothes in sink and washed it. Then turned off water, put on shoes and ran out the bathroom down the hallway.;A person putting a shirt in the bathroom sink, turning on the water and rinsing it out, then putting shoes on and walking out of the bathroom.;A person washes an item of clothing in the bathroom sink then puts on some shoes and runs out.\",c035 0.00 3.00;c056 11.80 17.10;c150 20.00 26.60;c055 11.80 24.30;c148 12.20 24.00;c001 0.00 4.10;c005 0.00 15.30;c034 0.00 3.30;c033 0.00 15.00;c053 11.90 23.30;c054 12.60 18.00,25.92\r\nC1DK7,GE1M,Dining room,6,7,Yes,a person leaves their phone on a closed laptop and then opens a door and leaves.,chair;door;laptop;phone;table,\"A person sitting at dining table looking at laptop, closes it and looks at phone. the person then gets up and opens door and leaves closing door behind them.;A person sitting at a table types on a laptop, then closes it, looks at a cellphone, stands up and walks out of the room, closing the door.;A person is sitting at ta table using their laptop they close their laptop and play on their phone. Then they get up and walk out the door.\",c046 4.20 10.20;c006 22.50 28.00;c015 0.00 21.60;c052 0.00 10.50;c008 20.60 25.90;c154 17.70 23.00;c011 0.00 21.90;c141 20.60 25.90;c150 18.60 27.10;c059 0.00 22.30;c017 17.10 21.60;c016 6.20 21.50;c014 0.00 22.60;c051 0.00 10.00;c009 17.20 21.70;c097 21.60 27.40,27.38\r\nT06AT,AT5D,Bathroom,4,6,Yes,One person runs into the bathroom grasping a pillow while another person is inside holding a blanket.,blanket;door;pillow;towel,\"A person carries a pillow into a bathroom where another person is standing.;A man runs into a bathroom holding a pillow. Another man is standing there and the two men begin talking, the pillow still between them.;A person carries a pillow into a bathroom where he talks to another person who is holding something in his hands.\",c076 0.00 32.00;c008 1.40 6.50;c152 8.00 30.00;c033 5.10 32.00;c070 5.00 13.40;c079 0.00 2.50;c097 1.70 7.60;c149 16.40 28.10;c150 0.00 13.40;c141 1.10 5.60,30.88\r\n3LIGG,ZDKC,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is lying a broom against the wall. They look through a doorway and smile.,broom;doorway;wall,A person puts a broom down and looks out the window;A person walks through the door frame with a broom and poses with it.,c098 0.00 12.30;c152 10.30 21.20;c149 4.20 14.80;c100 0.00 2.90;c099 3.50 10.60;c097 1.50 8.70,26.75\r\nWPU76,VOOS,Dining room,7,7,Yes,\"A person is tidying the dining room picking up glasses.  There are some clothes on the floor and the person picks them, then starts running.\",blanket;clothes;cup;dish;doorway;floor;glass;table;towel,\"A person tidied up the house;A woman takes a cup off a table and walks to the sink with it, then begins gathering clothes off of the floor and putting them into a laundry basket.\",c127 10.40 31.80;c110 0.00 9.30;c004 10.60 37.30;c034 17.90 22.90;c107 0.00 10.90;c118 1.00 10.10;c150 2.10 9.30;c000 10.80 29.80;c119 5.30 10.50;c120 0.00 5.40;c148 11.40 17.40;c003 14.20 29.80;c097 2.50 14.80;c012 0.00 6.70;c002 10.20 35.60;c070 14.20 20.20;c071 14.20 20.20;c109 1.60 11.30;c075 14.20 20.20;c001 14.00 37.00,40.46\r\nDYWLL,BONA,Kitchen,5,7,Yes,A person is laughing while holding a book and sitting in a chair.,book;chair;food,\"A person sitting in a chair laughs to themselves while paging through a book and while bouncing their foot.;A person is sitting in a plastic chair in a kitchen reading a book, and shaking his foot and laughing\",c059 0.00 32.00;c029 0.00 32.00;c032 0.00 32.00;c149 0.00 32.00;c115 0.00 5.30;c115 3.60 11.00;c156 9.00 15.70;c152 1.30 7.60;c152 7.90 13.20;c152 14.50 20.30;c026 0.00 32.00,31.00\r\nLXEPT,AT5D,Bedroom,6,7,Yes,A person sits down at a desk and opens a backpack.  The person pulls out homework and starts working on it.,backpack;bag;book;chair;desk;floor;homework;paper;table,\"Person sitting down, opening up backpack, taking out a book and opening it up.;A person takes a backpack off and sits in a chair. The person puts a notebook on the table and writes on them.;A person sits down at a desk and takes their backpack off. The person takes a notebook out and writes in it.\",c117 17.40 30.90;c009 6.20 14.60;c151 0.30 7.00;c059 0.00 6.80;c028 8.60 14.60;c115 17.10 32.00;c023 0.20 8.20;c020 2.20 19.90;c032 16.30 32.00;c126 14.80 20.00;c024 14.60 19.90;c011 3.00 32.00;c026 9.00 14.10;c021 4.40 11.60;c145 19.00 32.00;c022 14.80 20.20;c014 17.00 32.00;c116 8.70 14.60;c030 8.90 13.70;c027 16.80 22.20,31.04\r\nWTIQ3,M7K8,Living room,5,7,Yes,\"A person walks with a bag of groceries down a hallway. The person notices the floor is dirty. The person decides to tidy up. The person sets the groceries down, picks up a broom and begins to sweep.\",bag;broom;doorway;floor;groceries,\"A person walks into a room with a bag, places the bag down, and starts randomly sweeping the floor with a broom.;A person walks into a room with a bag and places the bag on the floor and begins sweeping the floor.\",c102 11.20 32.30;c127 10.30 32.60;c130 5.30 10.80;c097 0.00 2.80;c098 8.80 32.40;c126 6.50 11.10;c020 0.00 11.00;c099 27.90 32.60;c024 5.40 11.00;c100 9.00 14.90;c022 5.40 11.00,33.79\r\n2AIP4,ZDKC,Dining room,6,6,Yes,\"A person is sitting at the table holding a bottle of medicine.  The person pours themselves a glass of water, then takes some medicine out of the bottle.  The person grasps the medicine as they get up and go turn off the light.\",bottle;chair;light;medicine;pump;table,A person is sitting at the table with a bottle of medicine they reach down and pump a water out of a jug into a glass and then they use the glass of water to take the medicine;A person pumps a jug full of water and takes pills out of a bottle before taking a swig of water. They get up and turn out the lights.,c105 36.30 46.00;c129 25.80 36.30;c154 34.10 41.90;c129 0.00 38.10;c011 0.00 40.50;c009 0.00 5.40;c110 2.00 6.30;c107 1.60 19.20;c108 6.50 17.20;c109 13.90 19.50;c010 0.00 40.50;c151 36.10 42.30;c128 0.00 5.80;c128 35.00 46.00;c059 0.00 40.30;c106 28.70 36.70,44.62\r\n1HYO4,P2J3,Bathroom,6,6,Yes,A person is standing in the bathroom with a phone.  The person then starts holding a broom.,broom;phone,\"A person is standing in the door way talking on their phone.;A man stands in the doorway of a bathroom talking on his cell phone, holding an object in his other hand.\",c098 0.00 34.00;c015 0.00 34.00;c019 1.10 34.00;c016 0.00 34.00;c018 1.00 34.00,33.04\r\n30I35,GE1M,Dining room,6,7,Yes,\"One person walks into the room, pours a glass of something, then grasps a phone and leaves.\",cup;dish;phone/camera;table,\"A person walked up to a table and picked up a glass. The person then grabbed a pitcher which was also on the table and poured its contents into the glass. The person then took a drink from the glass and walked away.;A person walks up to a dining table and pours water into a glass, takes a drink from the glass, then looks at their cell phone and then leaves the room.\",c106 1.50 8.30;c108 9.00 14.60;c110 1.50 9.10;c118 0.60 5.70;c015 13.50 24.50;c018 13.50 24.80;c109 0.90 17.50;c009 5.30 17.10;c107 1.60 17.50;c018 13.60 18.80;c109 6.00 11.10;c016 15.60 25.00;c009 5.90 10.60,23.79\r\nBPZ55,AT5D,Living room,4,5,Yes,\"A person is kneeling, working on fixing a faulty cabinet in their hallway. Another person is standing next to them, giving them instruction while drinking something out of a glass.\",cabinet;cup;dish;floor;glass;shelf,The person is standing drinking from a glass and talking to another person who is kneeling. The person kneeling is fixing a shelf.;Two people standing in the room one standing up and one kneeling down by a shelf.;One person kneeling down near a shelf while another person stands over and points at the area of interest.,c106 0.00 32.00;c107 0.00 32.00;c114 0.00 32.00;c125 0.00 32.00;c127 0.00 32.00;c082 0.00 32.00;c118 0.00 32.00,30.79\r\n1E1EN,JTAS,Laundry room,5,7,Yes,A person is working on tidying up the laundry room by putting clothes in a box while drinking a can of soda.,bag;blanket;box;clothes;cup/glass/bottle;floor;food;soda;towel,\"Person stands in front of washing machine and pulls clothes out of laundry basket and drops them on the floor. The person takes a can off the top of the washing machine and takes a drink, continues removing clothes from basket then takes another drink;A person sorts through wash before drinking something and then sorting again. Finally they take another drink.\",c001 10.60 31.00;c042 0.00 4.50;c154 2.90 8.60;c074 2.10 6.90;c074 11.40 16.30;c126 2.10 6.90;c043 0.00 4.20;c000 0.40 6.90;c062 8.40 14.30;c063 26.70 32.00;c127 1.50 6.90;c020 0.00 4.80;c070 1.30 6.70;c071 1.30 6.90;c071 10.10 16.30;c110 3.70 8.10;c109 10.60 14.80;c004 0.00 6.60;c037 0.00 6.90;c002 0.00 7.20;c107 3.40 14.30;c035 1.30 6.90;c106 4.90 12.70;c040 0.00 4.20;c003 0.00 6.90;c003 11.70 16.00;c003 16.30 22.20;c075 1.50 7.00,31.46\r\nFJYZH,CP6Y,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is laughing while standing near a closet holding a homework book, they then put the book down on a chair and eat a small snack they got from their pocket.\",book;chair;food,\"A person standings near a wall holding a book. They put the book down on a chair and eat something they took out of their pocket.;He is holding a book, and suddenly he is laughing and then he is got something out from his pocket and chewing on it.\",c026 0.00 11.20;c156 12.10 19.00;c116 5.60 11.20;c032 0.00 9.80;c025 4.80 9.20;c115 0.00 11.00;c063 10.00 15.00;c029 0.00 9.40;c061 11.30 19.00;c062 11.30 19.00;c152 0.00 9.30;c149 0.00 9.30;c028 5.60 11.00,17.71\r\nY50QF,ZDKC,Dining room,6,7,No,\"A person is sitting on a chair, then eating and pouring a cup of coffee and then opening a box in a dining room.\",box;chair;coffee;cup;food;table,\"Person sitting at a table eating out of a plate stand up and pour a cup of coffee.;A man is sitting at the table and eating, with his book next to him. He gets up and pours himself some coffee into a cup.\",c107 18.30 34.60;c041 31.90 38.00;c154 16.00 21.90;c059 0.00 20.20;c108 21.80 30.90;c156 0.00 20.20;c011 0.00 20.20;c151 16.80 21.90;c062 2.90 19.30;c110 18.10 35.00;c063 2.90 19.30;c009 29.70 35.80;c109 28.00 35.40,37.33\r\nECW3E,ZDKC,Closet / Walk-in closet / Spear closet,6,7,Yes,a person walks into closet opens laptop stands on a book fixing hair,closet;door;hair;laptop;wardrobe,\"Person walks to the closet move wardrobe around pull a laptop down from top shelf.;A person walks towards a closet with two doors, opens the closet and retrieves a pink children's laptop from inside.;A person opens a closet door, takes a pink laptop from a shelf opens and looks at it as they scratch their head.\",c047 10.10 41.00;c051 10.10 41.00;c144 23.70 41.00;c008 1.40 10.40;c113 1.40 10.40;c052 11.10 41.00;c048 14.70 20.50;c050 9.30 16.30,39.62\r\nL39A4,UO9Q,Hallway,2,7,Yes,A person is working on homework and then smiling while reading a book in the hallway.,book;doorway;floor;homework;paper,\"He is sitting in a walkway, and picking up a book and startng to read, and getting up again and went.;A person sits on the floor reading a book.\",c145 4.60 34.00;c027 4.20 15.50;c151 0.30 6.30;c150 0.00 4.80;c126 30.20 35.30;c097 0.00 5.20;c116 28.80 34.90;c028 28.80 34.90;c115 3.10 34.90;c154 30.70 36.80;c026 2.90 34.90;c025 28.10 33.00;c125 0.60 7.80;c031 30.20 37.00;c030 2.90 9.00;c029 22.60 29.50;c032 3.60 33.60;c149 22.30 28.30;c117 2.50 8.60;c152 22.80 28.70,37.33\r\n874F1,M7K8,Bathroom,7,7,Yes,\"One person drinks something, then sneezes and grasps a handful of homework and a pillow.\",blanket;book;cup;dish;medicine;pillow;towel,\"The person takes a drink  then sways back and forth holding a pillow and a book.;A person takes a drink of water and sneezes. The person picks up a pillow and book and strafes back and forth.;The person drinks from a glass, picks up a pillow and a book then sways back and forth holding the items.\",c078 5.50 34.00;c079 4.40 10.20;c030 7.30 12.10;c070 4.00 11.10;c033 4.70 11.00;c110 0.00 5.30;c129 0.00 7.20;c073 4.40 10.20;c117 7.50 12.10;c115 7.60 34.00;c153 2.60 7.10;c119 3.90 8.40;c106 0.00 3.60;c076 6.20 34.00;c026 7.00 34.00;c107 0.00 7.60;c109 2.60 7.60,32.62\r\nCOFJV,GE1M,Stairs,5,7,Yes,\"One person grasps a bag from the stairs and starts eating a sandwich that was inside, then leaves.\",backpack;bag;floor;food;paper/notebook;sandwich;stairs,Person sitting on the stairs looking into a bag get a sandwich out and get up and leave.;A person is sitting on the stairs. The person is opening a bag and taking food out of it. The person eats food and walks up the stairs.,c065 8.70 17.50;c021 0.00 4.10;c156 8.60 17.50;c154 13.20 19.70;c022 7.10 13.10;c068 6.90 14.00;c061 6.90 14.50;c125 0.00 17.80;c069 6.70 13.30;c063 6.70 13.30;c115 7.50 23.00;c020 0.00 13.30;c150 14.90 23.00;c067 9.30 23.00,22.12\r\nU8M2P,P2J3,Other,4,6,Yes,A person is tidying a wardrobe while another person is sneezing on a sandwich.,closet/cabinet;clothes;food;phone/camera;sandwich;shelf;wardrobe,A person rummages through a closet while another person stands behind them touching and staring at a piece of bread.;Two people are in a room. One person is standing holding a sandwich and sneezing and the other person is searching through a closet for something.,c067 0.00 34.00;c153 1.60 13.30;c061 0.00 34.00;c082 0.00 34.00;c114 0.00 34.00;c015 0.00 34.00;c004 0.00 34.00,32.71\r\nD8FTI,BONA,Pantry,6,7,Yes,A person is seen holding food to put on a shelf. They begin tidying the shelf and then open a cabinet.,cabinet;dish;door;food;shelf;towel,\"A person is holding a plate and opens a cabinet.  This person wipes down the cabinet doors with a rag.;A person with a dish in hand, opens a cabinet and puts it in, then with a towel cleans both doors of the cabinet.\",c081 3.00 9.10;c061 0.00 6.80;c062 0.00 9.10;c113 1.40 7.00;c114 5.30 27.00;c033 5.30 26.40;c141 1.90 7.60;c038 5.50 25.70;c082 3.70 26.40;c008 2.00 7.30;c035 5.50 10.40;c119 3.40 9.50;c037 5.60 24.20;c034 20.50 26.80;c118 0.00 8.50,31.00\r\n3VH9O,SW82,Bedroom,7,6,Yes,A person is laughing at the book and eating a snack out of a box.,bed;book;box;food,A person sits on a bed reading a book and eating from a box.  A cat walks up and the person smiles at it.;A person is sitting on a bed reading a book and eating snack food.,c044 5.40 14.30;c032 0.00 31.00;c156 5.70 14.70;c063 5.90 12.60;c029 1.60 9.10;c152 1.60 9.10;c061 8.50 31.00;c149 3.30 7.90;c026 0.00 31.00;c062 9.10 14.30;c135 0.00 31.00,30.25\r\nWF89D,EDYS,Bedroom,3,7,No,A person i seen opening a cabinet. They take out a camera holding it as they inspect it.,camera;cup;dish;head;mirror;phone,\"A person takes a drink from a cup. They pick up a mirror and then put it back down;A person drinks coffee and looks at themselves in the mirror;The person laughs, picks up a can and smells it, then looks in a mirror, changes camera position then turns off the camera.\",c017 22.60 31.00;c106 6.60 12.60;c093 13.30 20.80;c152 1.80 7.50;c018 21.40 31.00;c118 5.90 10.20;c118 8.60 12.90;c094 12.90 20.70;c107 6.00 12.90;c120 3.50 10.50;c096 12.90 21.00;c110 3.50 10.50;c149 1.00 7.20;c109 6.20 23.50,30.29\r\nN0NLE,JQ7D,Hallway,7,7,Yes,The person is playing on the phone in the hallway and is laughing at the camera.,camera;phone,\"Person is standing seamlessly just holding and staring at the cellphone for a brief moment. Person then smiles and laughs at cellphone and then stares at the camera.;The person is playing on a phone. They stare down at the phone and then look up and smile and laugh.;A person standing in a room, looking at a cell phone, texting someone and then laughing a lot.\",c015 0.00 30.00;c149 23.50 30.00;c152 1.70 6.00;c016 0.00 27.50,29.50\r\n5R7VN,M7K8,Stairs,7,7,Yes,The person is throwing shoes and then closing a door on the stairs.,clothes;door;floor;shoe,\"a person throws two shoes down the stairs while closing a door and standing around in a nervous and scared manner.;A person takes some slippers off and puts them downstairs, closing the door afterwards. The person holds their arm and looks around.\",c006 7.10 14.20;c057 0.00 10.80;c155 0.00 12.70;c054 1.40 9.20;c126 1.10 9.80;c053 0.10 5.50;c058 0.90 10.70,29.29\r\nV0ZD9,ZDKC,Kitchen,5,7,Yes,A person is washing dishes in a sink and then laughing while putting on clothes in a dining room.,clothes;cup/glass/bottle;dish;hands;sink,A person washes dishes with a rag in a messy sink.  This person then puts on a blue sweatshirt.;A person stands at a sink and washes a cup then the person walks away from the sink and puts on a shirt.,c001 23.20 39.00;c118 0.00 24.70;c108 17.10 23.20;c121 0.30 24.10;c002 23.50 28.50;c000 24.50 30.20;c148 26.40 39.00;c152 7.60 39.00;c120 0.00 12.00;c139 12.80 23.90;c149 7.50 13.70;c111 0.50 16.00;c119 4.60 16.40,37.67\r\nW292V,M7K8,Bedroom,7,6,Yes,\"A person is awakening. They take a drink from a glass that is on the table, and then they are walking into their wardrobe.\",chair;closet;cup;dish;door;glass;table;wardrobe,\"A person is sitting on a chair, they yawn and take a drink. They then get up and open a closet door.;A person sitting on a rolling desk chair stretches and yawns, takes a drink from a red cup and sits it down, then gets up and opens the closet door.\",c106 6.60 14.10;c011 0.00 18.80;c154 14.50 21.20;c113 12.20 19.80;c059 0.00 19.70;c152 13.00 18.10;c109 10.10 15.10;c009 10.10 15.10;c107 6.90 14.30;c008 11.90 18.80;c110 6.40 15.30;c146 0.00 10.60;c119 9.90 15.50;c141 12.30 21.60,21.25\r\nG7K5A,ENHU,Bedroom,7,7,Yes,A person playing with a pillow begins to laugh.  They then grab a towel and walk out of the room.,bed;blanket;clothes;doorway;floor;jacket;pillow;towel,\"A person tosses a pillow around before grabbing clothes and leaving.;A person wearing a white shirt is kneeling on the ground. The individual then picks up a nearby pillow, fluffs it, stands up, and leaves the room.;The person sat on the floor throwing a pillow in the air a few times. The person then picked up some clothing on the floor and walked out.\",c076 0.00 3.00;c000 5.90 12.00;c002 2.60 9.60;c074 4.70 9.70;c001 3.20 12.00;c077 0.00 6.30;c126 1.30 6.20;c036 4.90 10.00;c127 2.50 7.60;c080 1.30 6.20;c125 0.00 7.60;c097 7.50 12.00;c079 0.00 2.60;c035 2.60 9.50;c033 2.20 12.00;c154 3.30 8.40,11.00\r\nR4SJJ,K8D4,Bedroom,7,7,Yes,\"A person pours a laundry basket full of clothes onto the bed and begins tidying the clothes up.  The person walks to the window and closes it, then grabs a book off the side table.\",bag;bed;blanket;book;clothes;door;floor;table;towel;window,\"A person walks into the room and closes the door. They throw some clothes on the bed then begin folding them. They then close the window.;A person enters a room with a laundry basket.  This person folds the laundry on the bed, then closes the shutters.;Person enters room with laundry basket, and dumps laundry on bed. The person folds the laundry, turns around and walks to the window, to close it. The person then grabs a book and opens it.\",c089 31.40 44.30;c001 4.50 12.30;c027 42.40 48.00;c032 43.50 48.00;c006 0.30 6.70;c004 11.30 36.10;c000 0.00 10.60;c002 3.60 10.60;c026 42.10 48.00;c003 6.20 10.90;c073 3.80 11.80;c075 9.90 34.00;c115 41.90 48.00;c021 2.20 7.80;c071 16.20 21.60;c097 0.00 5.30;c035 17.40 24.20;c023 0.00 3.60;c022 7.30 13.40;c074 27.90 34.00;c033 4.10 10.90;c037 11.50 33.30;c034 3.60 10.90;c034 16.90 21.60;c034 24.80 29.30;c141 0.00 5.70;c020 0.00 13.00;c030 42.10 46.80,46.67\r\nFYHTC,I48P,Bathroom,6,7,Yes,A person is drinking while try to open the door. They then start lying down on the ground to pick up a phone.,door;floor;glass;phone;table,\"A person is drinking water in the bathroom, grabs their phone, and leaves the room;A person stands at a bathroom sink and takes a sip from a glass of water, and then jiggles the doorknob of the closed bathroom door, and then lies down on the floor and looks at a cell phone, and then stands back up and opens the door.\",c016 15.70 24.40;c008 23.20 29.00;c151 10.10 19.10;c154 17.50 24.40;c006 1.10 9.30;c009 7.70 12.70;c124 13.50 19.00;c097 24.10 29.00;c141 0.00 5.70;c141 2.30 11.00;c106 1.10 7.30;c017 19.80 25.80;c110 0.00 4.10;c107 0.00 12.00;c015 15.00 24.70;c007 0.30 11.00;c109 7.40 12.00;c125 11.10 22.80;c018 15.50 21.40,28.46\r\n690SL,M7K8,Living room,6,7,Yes,A person is standing by a mirror and playing a broom like a guitar.,broom;mirror,A person uses a broom as if it were a guitar while standing in their living room.;A person is in the living room using their broom as a guitar and they are dancing with it.,c098 0.00 36.00;c152 0.00 17.60;c096 0.00 9.80;c094 0.00 3.90,34.58\r\nYDWIW,CP6Y,Recreation room / Man cave,6,7,Yes,\"A person is holding a camera, taking photos of another person who is sitting on a sofa watching TV and holding a plate of food.\",bed;camera;dish;food;phone;picture;plate;sofa;television;tv,\"Two people appear to be in the living room. One is sitting on the sofa, watching tv and hold a plate of food. The other person is taking pictures of the other person on the sofa.;Person sitting on the sofa eating out of a dish while another person takes a picture.;A person is sitting on a sofa with a plate in the hand, while another person takes a picture of the person on the sofa.\",c123 0.00 10.80;c118 0.00 5.50;c132 5.00 12.70;c015 0.00 17.00;c061 0.00 17.00;c087 0.00 9.40;c118 0.00 17.00;c135 0.00 17.00;c016 0.00 17.00,16.08\r\nZX37G,GE1M,Dining room,6,7,Yes,\"A person enters the dining room through the doorway, holding a laptop. The person puts the laptop down on the table and opens it.\",chair;cup/glass/bottle;dish;doorway;laptop;table,\"A man pulls out a chair and sits at a table. He moves an empty bottle out of the way and opens a computer.;A person walking towards a table with a laptop, then sits down on a chair by the table to use his laptop on the table.\",c009 1.80 7.80;c048 7.60 13.00;c097 0.00 3.40;c151 2.70 8.10;c049 2.80 7.60;c051 8.90 18.00;c119 2.60 7.40;c014 2.80 18.00;c011 4.10 18.00;c059 2.90 18.00;c109 2.20 7.20;c052 7.90 18.00;c047 0.00 9.50;c050 0.00 8.10,17.33\r\nLA6AA,ZDKC,Bathroom,5,7,Yes,A person is holding a blanket while standing in front of their wardrobe closet.,blanket;doorway;mirror;towel;wardrobe,A person walks into the bathroom with a towel then looks into the closet;A person was holding a blanket. The person walked around a room before stopping to look at an open closet.,c070 2.20 11.80;c097 0.00 7.30;c035 0.00 12.80;c096 26.00 29.00;c071 26.00 29.00;c075 26.00 29.00;c073 26.00 29.00,27.83\r\nYHXU9,GFWE,Recreation room / Man cave,5,7,Yes,A person is standing on a pillow while undressing in front of a cabinet and sneezes on their homework.,book;cabinet;clothes;floor;homework;paper;pillow,\"A person stands in the middle of a room and takes off a sweatshirt. The person then picks up a book and pen, writes something quickly, and then tosses both items aside.;A person stands in a living room, takes off their sweatshirt and throws it on the floor, then picks up what appears to be a pad of paper and a pencil, writes something on the paper and throws the pad and paper on the floor, then walks away.\",c117 15.00 23.70;c145 17.60 23.80;c155 0.00 19.00;c002 12.70 20.20;c000 13.60 18.50;c003 14.20 18.50;c115 17.30 24.40;c004 14.70 19.20;c001 13.60 18.70;c126 14.20 18.70;c031 19.30 25.00;c028 20.10 24.90;c116 19.80 25.80;c153 18.70 23.50;c026 17.50 24.90;c030 16.40 21.80,30.88\r\n7RA0M,CP6Y,Stairs,5,6,Yes,\"A person stands atop the stairs, holding a laptop and a camera. The person puts the items down, then walks down the stairs.\",camera;floor;laptop;something,\"A person walks down a few stairs, then places an item on the top step. The person then continues walking down the rest of the staircase before pausing at the bottom to roll up sleeves.;A person at the top of the stairs putting items on the first step, then coming down the stairs and then pushing sleeves up on arms.\",c049 1.20 15.70;c154 11.40 15.90;c017 4.40 15.10;c048 0.00 9.30;c127 8.20 15.40;c015 0.00 15.30;c047 0.00 10.70;c051 0.00 5.70;c046 1.50 7.80,30.42\r\nA6R12,CP6Y,Living room,7,7,Yes,\"A person is lying on a pillow with a blanket over them, watching television.\",bed;blanket;laptop;pillow;sofa/couch;television,Person covered with a blanket laying on the bed moving legs and hands then stop.;Person laying down on the bed cover with a blanket watching  Television and moving body to adjust the blanket.,c132 1.70 32.00;c078 1.70 32.00;c051 0.00 32.00;c076 1.90 32.00;c070 1.60 32.00;c122 1.30 32.00;c072 1.30 32.00;c134 1.30 32.00,30.96\r\nYJ1KW,AT5D,Bedroom,3,4,Yes,One person is walking by a chair while the other is eating on their laptop.,bed;chair;coffee;dish;doorway;food;laptop;table,A person walks into a room with another and sits down in a chair. The people converse while one is eating and on a laptop.;One person is sitting on a bed and eating. Another person walks into a room and sits down in a red chair and talks to the person on the bed.,c059 8.80 14.30;c051 0.00 32.00;c151 8.50 13.90;c062 0.00 4.20;c062 10.70 15.80;c011 9.50 32.00;c149 26.90 32.00;c063 17.20 30.80;c097 0.00 5.80;c156 0.00 32.00;c118 0.00 32.00;c135 0.00 32.00;c047 0.00 32.00;c052 0.00 32.00;c061 0.00 32.00;c152 27.20 32.00,31.42\r\nPH5VU,V044,Bedroom,6,7,Yes,\"A person is putting on clothes, then closing a wardrobe and then kissing a picture in a bedroom.\",book;cabinet;closet;clothes;door;jacket;picture;shelf;shirt;wardrobe,\"person puts on a shirt and then a jacket then closes a cabinet and grabs a book;A person is in the closet buttoning up their shirt they grab a coat and put it on close the closet pick up a picture look at it, then put it down and leave the closet.;A person puts on a shirt then a jacket. Next the person closes the doors to the wardrobe before kissing a picture.\",c113 18.50 28.00;c084 29.10 38.00;c083 29.50 38.60;c088 27.50 36.80;c027 30.50 37.40;c148 12.10 23.10;c081 34.80 40.50;c112 27.90 33.50;c000 0.50 31.90;c086 34.40 40.30;c028 34.20 40.50;c026 30.10 40.00;c141 28.30 33.90;c001 18.70 28.00;c006 28.30 33.90;c117 30.90 36.00;c116 34.60 40.50;c030 29.90 38.80;c002 15.40 27.80,40.83\r\nWUTHF,P2J3,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"One person runs through and puts down some dishes, then throws a sandwich on the stack. Another person reaches for the doorknob.\",dish;door;floor;food;sandwich,A person runs into a room and throws a plate and food on the floor. Another person in the room walks over to the door and opens it.;Person runs into a room throw some items on the floor while another person watches.;A person runs in and drops a couple things on the ground before just basically staring down at it.,c118 0.60 5.70;c068 0.60 5.30;c141 12.00 16.60;c008 26.10 31.60;c064 6.70 11.10;c061 5.20 9.80;c150 0.80 6.40;c126 5.20 11.10,36.92\r\nVJG6E,ENHU,Recreation room / Man cave,6,7,Yes,\"A person runs into the recreation room, grasping a blanket. The person opens their laptop and begins looking at something.\",blanket;chair;desk;laptop;table;towel;window,\"The person is holding blankets. The person places the blankets down and sits at their desk and opens their laptop.;A person walks into the room carrying a blanket. He drapes it over the back of his chair before he sits at his desk and begins to work on his laptop computer.;A person walks into a room, puts a blanket over a chair, and then sits down in the very same chair.\",c048 9.00 18.00;c070 0.00 7.00;c071 3.00 10.00;c151 6.00 11.00;c059 7.00 18.00;c092 12.40 18.00;c051 11.80 18.00;c033 0.00 9.50;c034 2.60 10.10;c074 2.70 9.40;c075 3.00 10.00;c014 11.00 18.00;c011 7.60 18.00;c052 13.10 18.00;c150 0.00 5.00,17.25\r\n7KHIH,ENHU,Closet / Walk-in closet / Spear closet,4,7,Yes,\"A person is in the closet, fixing the light. Then they pick up a pillow and start running out of the closet.\",clothes;clothing;doorway;light;pillow;wardrobe,\"A person is fixing a light in a closet, then grabs a piece of clothing and walks out.;A man is reaching up to the ceiling light and taking down the light cover.  He removes something from the inside of the light cover, sets the light cover on the floor, grabs a jacket that is on the floor and leaves the room.;A person reaches high up to get a box in a closet.  The person then grabs a jacket and leaves the room.\",c103 0.00 10.50;c002 6.20 12.00;c079 5.40 12.00;c150 7.40 12.00;c097 7.70 12.00,10.58\r\nC4KQS,AT5D,Pantry,5,4,Yes,One person grasps the doorway as another works tidying up a shelf that contains medicine and a book.,container;doorway;shelf,\"A person is standing in the doorway, while another person is looking though a box.;A person walking across room to the kitchen cupboard getting food item out and opening it, another person standing in the doorway.\",,30.04\r\nRUKXT,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,A person is holding their laptop. The person lies down on the floor and begins working on homework.,floor;laptop;rug,A person is standing holing a computer. They sit down and then prop them-self up on an elbow and continue to work on their computer.;A person holds a laptop and then sits on the floor with it. The person continues to play on their laptop.,c047 0.00 9.90;c052 0.00 17.00;c125 4.40 17.00;c151 1.40 6.60;c051 0.00 17.00;c049 3.60 12.30;c124 3.60 17.00,16.25\r\nZND9F,ZDKC,Bathroom,6,7,Yes,A person is holding food in the air.  A person looks grossed out and like food shouldn't be in the bathroom.  Then a person is leaving walking by a sink.,cup/glass/bottle;dish;doorway;food;yogurt,A person is looking at food and walks around;A man is in the bathroom looking at some food while he stands there. Then he walks away into another room through the open door.,c061 0.00 22.00;c107 0.00 11.70;c097 10.40 15.50;c118 0.00 12.70,20.50\r\nWF7P3,CP6Y,Recreation room / Man cave,5,7,Yes,A person is holding a coffee cup and then grasping a doorknob in the recreation room / man cave.,coffee;cup;door;glass,\"A person leans on a table, and then walks across the room with an orange cup in their hands.;An old man goes and locks the door.\",c141 9.70 17.00;c107 0.00 17.00;c008 14.00 17.00,16.00\r\nTKJCI,SW82,Bedroom,7,5,Yes,A person is taking a picture and then lying on a bed in a recreation room / man cave.,bed;camera;phone;picture,\"A person sits on a bed and takes pictures with a camera. The person then lies down on the bed to review the pictures.;A person sits on a bed taking pictures with a camera.  They scoot back and lay against some pillows propped on a wall and begin to look at the camera.;A person is sitting on a bed and takes a picture, and after taking the picture the person lies back in the bed while holding the camera.\",c088 12.70 20.20;c134 16.30 31.00;c015 0.00 20.50;c087 0.00 17.00;c135 0.00 21.40;c016 0.00 31.00,30.25\r\n8V8HC,M7K8,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person is running through an entryway while laughing. The person takes a pillow off a sofa and throws it on the ground.,floor;pillow,\"A person ran into a room and scared a cat, then they threw a pillow on the ground.;A person runs in the home with a dog running beside them.  They both run in the house very quickly and happily.\",c080 1.60 8.00;c150 0.00 6.10;c149 0.00 9.30;c126 3.30 7.80;c152 0.00 9.00;c079 1.70 7.10;c076 2.30 7.60,34.00\r\n9JZO2,ZDKC,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is in a entryway eating a sandwich and holding a glass cup, they then start smiling as the dress and put on their shoes.\",clothes;cup;doorway;food;glass;sandwich;shelf;shoe;table,\"A person ate a sandwich while holding a glass of water.  The person then put away both and put on a jacket and shoes.;Person stands in doorway holding a glass and eating a sandwich then the person walks into the house puts down the food and drink, puts on a jacket and shoes;A person eats some food while holding a cup in the doorway. The person puts the cup down and puts on a jacket and puts on some shoes.\",c067 0.90 13.30;c107 0.00 9.90;c055 26.10 36.00;c065 0.00 15.10;c068 15.00 20.10;c156 0.00 12.60;c148 22.90 29.80;c001 19.70 34.80;c000 19.50 35.50;c097 10.40 15.40;c061 0.00 18.50;c109 14.10 20.30;c002 17.90 27.30;c062 11.60 20.80;c081 14.50 20.80;c001 33.80 37.00;c000 33.80 37.00;c009 33.80 37.00,35.75\r\n0UK3H,CP6Y,Home Office / Study (A room in a house used for work),7,7,Yes,A person sits on a sofa while packing objects into a cardboard box. They grasp a nearby roll of packing tape and proceed to use it to securely tape the box closed.,box;sofa;table;tape,\"a person looks in a box then plays with some tape and tapes it up;A person opens a box to put some items in it, picks up a roll of tape and tapes the box shut.;The person is sitting at the counter and is putting items in a box, before taping the box closed.\",c041 8.00 26.00;c123 0.00 26.00;c011 0.00 26.00;c039 2.10 8.20,24.58\r\nI7AS7,ZDKC,Dining room,6,6,Yes,\"A person runs into the dining room and grabs a bag of food. The person opens the bag, takes a bite, then wipes their hands on their clothes.\",bag;box;clothes;coffee;dish;doorway;food;sandwich;table,A person runs through a doorway and quickly puts some stuff on a piece of bread. The person takes a few bites and wipes their hands on their shorts.;The person ran into the kitchen and took a container from a bag. The person removed a sandwich from the container and took a couple bites.,c061 14.10 22.50;c063 13.80 19.50;c021 0.50 6.40;c150 0.00 5.10;c156 15.20 20.70;c119 4.00 9.70;c062 8.90 13.30;c067 13.00 22.50;c069 13.80 18.40;c009 4.60 17.60;c097 0.00 3.70;c044 8.30 13.00;c041 5.80 11.00,30.46\r\nJKWJ6,BONA,Living room,7,6,Yes,\"A person is lying on the couch watching television.  The person gets up and grabs a sandwich and a glass of water from the coffee table.  The person eats a couple bites of their sandwich, then throws the rest into the garbage.\",cup/glass/bottle;dish;drink;floor;food;pillow;sandwich;television,\"There is a person laying on the floor with a pillow watching television.  That person then sits up, picks up a plate, takes a bite of a sandwich and throws it in the trash.;A person laying down on a pillow watches some tv. The person puts a cup down and throws something into a trash can;A person lies on the ground, watching TV. The person then sits up, grabs a snack off of a glass table, takes a bite, and stands to throw it in the garbage.\",c065 13.80 23.10;c156 14.10 23.20;c154 19.40 25.70;c132 0.00 9.50;c124 0.00 10.10;c110 7.70 24.20;c120 8.60 19.90;c146 5.20 13.90;c062 20.60 27.10;c061 8.50 27.00;c107 9.10 22.10;c063 13.80 19.20;c064 20.90 27.10;c067 14.40 26.50;c069 9.90 19.80;c068 19.10 27.90,31.17\r\nJFBTV,SW82,Closet / Walk-in closet / Spear closet,6,7,Yes,A person opens up a closet door and looks through their clothes. The person closes the door and then picks up their water bottle and takes a drink.,closet/cabinet;clothes;door;glass;light;water,\"A person opens a closet door and walks in.  This person looks through the clothes, then walks out and drinks from a bottle.;A person flips a light switch, opens a door to a closet and rifles through shirts, walks out of the closet closing the door and then picks up a bottle of water and drinks from it.\",c106 21.50 30.30;c004 3.50 19.40;c008 0.00 5.80;c114 1.20 20.00;c097 1.00 7.00;c107 19.80 31.00;c110 19.60 24.60;c113 0.00 5.80;c105 16.00 20.30;c141 0.00 4.70;c104 0.00 3.20;c112 16.80 22.60;c006 16.80 22.60,30.21\r\n5C4EK,CP6Y,Home Office / Study (A room in a house used for work),7,4,Yes,A person is in an office watching a doorknob and eating his homework.,book;chair;door;food;homework;paper,someone sitting with a book and some papers;A person reads a book while sitting in a chair. The person then bites the book.;A person sits in a chair before starting to eat their homework.,c145 0.00 9.60;c059 0.00 17.00;c027 0.00 6.30;c156 5.70 17.00;c117 5.40 11.40;c115 0.00 17.00;c032 0.00 6.20;c026 0.00 17.00;c025 2.20 8.50,15.58\r\nW8P6Q,GFWE,Living room,4,7,Yes,\"A person sitting on a chair in front of the mirror starts laughing at his reflection.  When the person is done laughing the person closes his eyes, lies down on the floor and goes to sleep.\",chair;floor;mirror,\"A person, wearing a pick hoodie, sits in a chair and rocks forward and back briefly.  A person then lies on the floor while a small dog walks around.;The person sits in a chair and then rocks back and forth in front of the mirror before falling off the chair and laying on the floor.\",c124 15.20 33.40;c096 0.00 16.10;c149 0.00 5.30;c154 29.10 36.00;c059 0.40 15.40;c094 0.00 10.20;c151 0.00 4.80;c146 28.60 34.00;c125 13.80 34.00;c152 1.10 14.00,34.71\r\nKZ36U,4UGC,Garage,7,7,Yes,\"A person runs into the garage, holding a camera. The person takes a picture of something, then washes their camera screen with their shirt sleeve.\",camera;clothes;picture;something,\"A person holding a camera stands in front of a garage door, then rubs the camera on the sleeve of their shirt.;A person jumps in front of a garage, the person has a camera. The person then scrubs the camera on their shirt sleeve.\",c088 13.30 21.10;c018 2.10 10.90;c015 3.00 32.00;c150 2.90 8.00;c016 3.00 32.00;c087 9.00 15.50,30.58\r\nVMO7A,CP6Y,Stairs,6,7,Yes,A person is eating food on the stairs.  The person is pouring a drink from one cup to another over a picture.,food,Two people are sitting on the stairs one is eating a sandwich while the other is holding a cup and pouring something into the cup.;People sitting on the stairs one is eating food from a dish and one is pouring something into a cup.,,16.54\r\n4NHRT,CP6Y,Stairs,5,7,Yes,The person takes a bag off of a shelf and then carries it up the stairs. The person then runs back down the stairs.,bag;doorway;shelf,\"Person stand on stairs pick up backpack  put on shoulder and go down the stairs.;A person walks up stairs, grabbing a backpack on the way, and then goes back down the stairs.\",c020 3.10 8.90;c022 2.80 9.20;c097 10.30 15.30;c023 1.90 8.70;c150 5.40 13.00,24.04\r\nI87SH,B6UG,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person awakens on the floor of their home office. The person stands up, puts on a pair of glasses, straightens up their clothes, and opens the window.\",clothes;curtain;floor;glass;window,\"A person is lying on the floor, he turn and get up from the floor, looks at his watch, walk near the table, pick up the spacks wear it, then walk near the window open the curtain, and a window, and look outside.;The person is laying on the floor and then gets up and puts in glasses and opens a curtain to look out the window.\",c124 0.00 8.10;c154 1.10 10.60;c125 0.00 8.50;c090 18.80 32.00;c092 19.00 32.00;c146 0.00 3.70;c148 9.20 17.60,31.04\r\nU5RYN,ARRB,Entryway (A hall that is generally located at the entrance of a house),7,5,Yes,The person is standing by the doorway and turns on the light.  They are smiling and putting a coat on the floor.,clothes;floor;light,A young person turns on the lights and walks down a hallway;A person holds a jacket and turns on the light. The person walks forward and drops the jacket on the carpet.,c104 0.00 2.80;c126 0.00 3.60;c152 0.00 4.00;c000 0.00 3.50;c003 0.00 3.60;c001 12.40 18.00,20.04\r\nKVXJ9,AT5D,Stairs,7,6,Yes,One person is tidying the stairs with a broom when another person runs past with a glass of coffee.,broom;cup/glass/bottle;floor;stairs,A person watches another run up some stairs. The person is sweeping the stairs with a red broom.;Person runs up the stairs while another person with a broom sweeps the stairs.,c102 0.00 32.00;c150 1.00 11.00;c127 0.00 32.00;c107 0.60 9.90;c098 0.00 32.00,30.75\r\nMX6X6,AT5D,Stairs,7,6,Yes,A person is holding a glass and going up the stairs.  Another person is sitting at a desk by the stairs.,chair;cup;desk;stair;table,\"Two people one walking up the stair,the other person sitting on the chair by the table crossed legs.;The people are in the same room, and one person climbs up some stairs and leaves the room. The other person sits at a table.;One man sits at a table while another man walks past him, holding a cell phone, and begins to walk up the nearby flight of stairs.\",c107 0.00 16.90;c011 0.00 31.00;c059 0.00 31.00,30.04\r\nQMIKJ,AT5D,Living room,7,7,Yes,A person is putting their laptop on their desk. A person is snuggling on the sofa and watching television.,bed;desk;laptop;pillow;sofa;table;television,\"A person walks into a room, puts a laptop down on a table, lays on a bed with a pillow as they change the tv channel with a remote.;A person walks into a room carrying their laptop they place it on a table and pick up a plate with a sandwich and lay down on the bed to watch tv.\",c047 0.00 6.80;c122 8.00 31.00;c009 1.60 9.30;c132 0.00 9.30;c151 7.40 14.30;c077 10.90 23.60;c078 8.50 19.80;c049 0.70 9.80;c134 8.30 23.40;c076 13.60 23.00,29.92\r\nP8G2P,I48P,Kitchen,5,6,Yes,A person is laughing while taking pictures out of a bag then they leave the bathroom.,bag;counter;paper;picture,A person is taking pictures out of a bag and looking at them.  The person picks up the bag from a counter;A person in a messy bathroom taking things out of a white grocery bag and inspecting each item before setting them down on the counter.;The person is emptying a plastic bag and then leaves the screen with the empty bag.,c084 0.00 29.10;c088 0.00 28.50;c021 0.00 30.60;c083 6.20 14.70;c020 25.30 30.80;c023 24.50 31.00;c117 0.00 31.00;c116 0.00 29.40;c115 0.00 28.80,30.25\r\n4KK20,JQ7D,Kitchen,6,7,Yes,\"A person opens a package of food while in the entryway, then decides to throw it on the ground as they answer the phone.\",box;floor;food;phone,\"A person checks a box before talking on their phone and throwing a box down.;A person plays with a box of something before taking a phone call and slamming the box down.;The person is standing in front of the door, opening a box then checking the phone and talking to someone then getting mad and throwing the box to the floor angrily.\",c064 24.00 32.00;c040 0.00 29.00;c045 24.40 32.00;c019 1.80 13.70;c039 13.50 20.90;c041 18.30 30.40;c152 9.80 21.40;c016 14.10 20.00;c126 24.60 30.40;c061 0.00 29.80;c015 12.60 32.00;c018 12.00 17.40,30.67\r\n62AC0,ENHU,Bedroom,5,7,Yes,A person is watching television on a computer at a desk in their bedroom and laughing at the video while drinking a glass of milk.,chair;cup;desk;dish;glass;laptop;poster;table;water;window,\"A person is sitting at a desk in a chair.  They grab a glass of water sitting on the table, take a drink, and then put the cup down.;A person is sitting on a chair at a desk in front of a window with an open laptop in front of them. They drink something from a glass.;A seated person looks out a window, then picks up a glass of water and takes a drink from it. Then the person puts the glass back down on the table.\",c011 0.00 10.00;c110 1.00 10.00;c059 0.00 10.00;c092 0.00 4.10;c118 1.40 10.00;c107 1.70 10.00;c051 0.00 10.00;c109 5.00 10.00;c009 5.00 10.00;c106 3.30 8.90;c014 0.00 10.00,8.96\r\nNW0KT,ZDKC,Living room,6,7,Yes,\"A person is tidying some books on a shelf.  The person pulls one book down, looks at the cover, and smiles.  The person grabs a towel and wipes down the mirror on the wall.\",book;cabinet;cloth;cupboard;door;mirror;shelf;television;towel;tv,\"Person moves from kitchen to living room, opens cupboard beside TV and takes book out, turns around and cleans mirror on wall opposite TV.;A person walks through a room and gets papers out of a cabinet.  This person then looks into a mirror and cleans it.;A person walks over to the TV and takes a book out from the entertainment center before cleaning a mirror with a towel.\",c026 8.60 25.00;c028 34.90 45.80;c032 9.60 24.00;c095 42.60 50.00;c033 42.30 47.10;c038 43.30 50.00;c113 4.70 9.40;c027 4.90 9.70;c030 7.90 18.80;c082 43.60 50.00;c096 30.70 35.40;c035 42.30 48.30;c008 4.70 9.40;c132 2.00 12.60;c117 8.60 13.90;c152 18.30 23.50;c115 7.90 33.70;c025 13.60 18.60;c029 17.60 23.00,49.33\r\nZM7BR,ZDKC,Bedroom,3,,No,A person is in the bedroom and there is a towel and an empty box on the floor.  The same person then starts walking and leaves the room.,box;doorway;floor;towel,\"A person is standing in front of a towel and a box on the floor, they then walk out of the room.;A person is standing in the bedroom rubbing their chin then they walk out of the room.;A person is standing with their hand on their face as if they are thinking. Then the person walks out of the room.\",c097 17.00 23.00;c154 0.00 23.00,22.29\r\nVSLJG,CP6Y,Recreation room / Man cave,4,7,Yes,\"A person is lying on a couch watching television. Another person walks in, sits on the couch, and begins grasping for a pillow.\",bed;pillow;sofa;television,A person flips through the channels on a tv while sitting down. Another person comes through and also sits down.;A person is lying on a couch watching TV and another person sits down next to them and picks up a pillow.,c079 15.50 26.00;c132 0.00 26.00;c122 0.00 26.00;c151 12.60 18.30;c134 0.00 23.50;c135 13.50 22.90;c076 17.00 25.40;c123 13.20 26.00,24.62\r\nV8IGX,CO87,Living room,5,7,Yes,A person is sneezing as the person opens the door. Then the person sets down their bag of groceries and begins sitting on the sofa.,bag;chair;door;groceries;sofa,Person walks in room with a brown bag and then shuts the door. Sets the bag down then proceeds to sit down on the couch.;Person walks through the doorway with a bag then walk over and sit on the sofa.,c123 20.20 28.00;c008 0.00 8.10;c022 15.80 22.80;c130 16.10 23.20;c097 0.00 9.70;c006 4.20 10.40;c020 3.80 22.60;c141 0.70 7.10;c141 5.60 11.20;c059 20.80 28.00;c151 20.80 25.70,26.92\r\n41F2M,M7K8,Bathroom,5,5,Yes,\"A smiling person reaches into the medicine cabinet, and takes something out, grasped in their hand.  They begin running water in the sink, after moving a book that had been laying on its edge, to the back of the cistern of the toilet.\",book;hand;mirror,\"A person stands in the bathroom and adjusts the mirror.  This person washer their hands and looks at the camera.;A person adjusts a bathroom mirror, then puts a book next to a toilet. Finally the person washes their hands in the sink.\",c028 8.30 14.20;c030 4.50 10.70;c139 11.30 22.10;c096 0.00 5.30;c116 4.90 12.70;c026 5.10 12.40,31.54\r\nW5YUE,ZDKC,Kitchen,4,6,Yes,A person grabs a blanket from a chair in the kitchen and throws it. A person then smiles while washing a glass in the sink.,blanket;chair;cup;dish;glass;sink;towel,A person takes a pink blanket off of a chair and throws it on the floor. The person then washes some dishes in the sink with some dish soap.;A person takes a blanket from a chair and throws it on the floor before washing dishes in the sink.,c111 17.50 30.90;c073 7.90 16.20;c074 11.70 20.50;c107 31.00 34.00;c110 31.00 34.00;c109 23.80 28.90;c108 22.30 27.80;c071 9.70 15.50;c070 5.60 14.50;c121 15.20 34.00;c036 7.90 15.50,32.83\r\nHNDA6,SW82,Bathroom,6,6,Yes,A person is running water in the sink of their bathroom. The person is opening a drawer to take out some medicine.,brush;cup/glass/bottle;food;hands;medicine;mirror;sink;water,The person is looking at themselves in a mirror in the bathroom. They fumble with objects on the bathroom sink and take a pill.;A person is in the bathroom. It is messy. A person is wearing a black shirt. The person put pills in the mouth.,c129 19.20 29.00;c096 0.00 31.00;c156 21.50 29.70;c128 12.70 18.50;c107 12.70 31.00;c139 3.50 10.50;c109 27.80 31.00;c110 12.80 18.20,30.25\r\n4H935,JTAS,Bedroom,6,7,Yes,\"A person awakens in a bedroom, turns on a light, grasps a glass of water and takes a sip.  Then they get up and start getting dressed.\",bed;blanket;chair;clothes;cup;floor;glass;light;shirt;table;water,\"There is a person laying down on a bed.  That same person sits up, turns on the light and gets a drink of water.  Then that person, stands up and puts on a shirt.;The person awoke from the bed while yawning and then threw the covers to the side and then reached and plugged in a light and then reached for a glass and then took a drink and put it back on the stand then stood up and put on a long  sleeve shirt.;A person gets up out of bed, yawns and takes a drink of water before putting on a sweater.\",c104 4.50 10.20;c106 10.60 19.40;c146 0.00 6.40;c154 20.40 27.30;c148 23.30 33.00;c107 13.60 18.80;c072 0.00 4.30;c000 19.90 28.80;c110 13.50 21.00;c001 20.60 33.00;c009 15.70 22.60;c124 0.00 5.20;c074 0.00 7.30;c109 10.30 22.00;c133 0.00 8.50;c134 0.00 2.50;c002 19.40 24.60;c135 7.80 23.10,32.17\r\n3EDGW,V044,Kitchen,6,6,Yes,\"One person tidies up stray shoes and dishes in the laundry room, then leaves.\",dishes;shoes,A person organizes a pile of shoes on the floor and then tidies a rack of dishes on the wall.;The person bends down to line shoes up next to the wall before moving plates on the plate holder.,,36.83\r\nEFUTW,CP6Y,Kitchen,7,7,Yes,A person is opening the refrigerator. They grab a glass from inside and start washing it.,cup;dish;door;food;glass;hands;refrigerator;sandwich,A person opens a refrigerator and grabs an item and washes it in a nearby sink.;A person opens the fridge and pulls something out.,c142 7.90 13.80;c143 0.50 7.70;c111 12.50 18.00;c110 7.10 18.00;c063 3.70 11.10;c139 11.90 17.80;c069 7.40 13.30;c006 9.40 13.70;c121 12.60 16.70;c008 0.70 4.80;c110 6.70 11.10,17.08\r\nM6HAF,ENHU,Kitchen,7,7,Yes,A person stands in their kitchen in front of the refrigerator with the door open smiling they open the produce cabinet and pull out an apple .,cabinet;food;groceries;oven;pan;refrigerator;tea kettle,\"Person open the refrigerator door then kneel down in front of a refrigerator with a broom on the side.;The person opens the refrigerator, gets on their knees and opens the pulls bottom drawer.\",c143 0.00 4.20;c130 7.20 12.00;c063 5.80 11.90;c061 6.50 12.00,11.38\r\nF9VSQ,P2J3,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is smiling at a camera and then sneezing into a cup of coffee in an entryway.,cup,\"A person smiles, looks at a cup, and then starts sneezing furiously while looking downwards at the cup.;A person in a blue checkered shirt stands with a cup in their hand and smiles at the camera. There is a cat in the background and there appear to be bugs flying around the room.\",c152 0.00 7.30;c149 0.50 6.00;c153 7.00 15.70;c107 0.30 36.00,35.17\r\n8D4ZT,AT5D,Pantry,3,6,Yes,One person was playing with their clothes. The other was grasping some groceries,bag;box;clothes;food;groceries;table;towel,\"Person holding clothes another person taking groceries out of a bag putting groceries on the table;A person puts some stuff into a bag, while another flips a towel around in the other room. The first person picks up some food and puts it on a tray.;Two people standing in a room. One person is preparing food while other is tossing a pink towel in the air repeatedly.\",c020 1.50 10.70;c009 6.20 12.80;c000 6.70 13.90;c130 1.50 10.70;c004 21.80 32.00;c130 12.70 31.20;c021 0.00 3.10;c063 1.20 11.30;c063 9.50 17.10;c061 6.50 12.80;c036 22.00 30.40;c033 0.30 5.20;c033 1.50 8.00;c012 0.00 32.00;c014 0.00 32.00;c063 0.00 31.80;c061 1.50 30.20;c036 0.00 11.30;c033 0.00 32.00;c040 13.70 22.80;c062 4.90 11.60,30.50\r\nDZUR7,P2J3,Bedroom,4,7,Yes,A person is washing the pillow and another person is working on the doorknob.,can;cup;dish;door;pillow;screwdriver;towel,A person is cleaning a pillow with a towel while another person is working on a doorknob.;A person is cleaning their bed with a rag and cleaner while another person tightens a screw on the door.;A person is cleaning while holding a cup of coffee and they other person is fixing a doorknob,c140 0.00 40.00;c033 0.00 40.00;c037 0.00 40.00;c107 0.00 40.00;c007 0.00 40.00;c118 0.00 40.00;c038 0.00 40.00,38.83\r\nIMLN5,I48P,Garage,4,7,Yes,A person is watching a video on their phone. They smile and take a drink from a glass.,cup;dish;glass;phone;shelf,\"A man wearing a purple sweater stands in between a car and a storage shelf. The individual then grabs a glass of orange juice, takes a sit, and sets it back down.;A person is in the garage. They seem to be looking at something on a phone. The person picks up a drink and takes a drink.\",c106 5.60 15.50;c107 5.40 15.80;c109 11.20 18.90;c110 9.90 19.00;c015 0.00 31.00;c118 0.00 31.00;c081 18.30 24.80;c016 0.00 31.00,29.58\r\nNYHD7,4UGC,Home Office / Study (A room in a house used for work),6,6,Yes,A person is laughing into the phone and leaving through a doorway in a home office / study.,doorway;phone;table,A person is sitting at a desk. Another person is standing and talking and laughing on the phone. The person puts the phone away and walks out of the room.;Person walks into a room with a cell phone in hand put the phone in pocket and leave the room.,c015 0.00 26.90;c019 3.50 24.50;c149 3.20 24.50;c011 0.00 4.70;c018 18.00 26.90;c097 25.90 31.00;c152 5.70 12.50;c017 22.40 27.20,30.33\r\n977PN,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,Person sitting on blanket on floor next to broom then starts sneezing.,blanket;floor,a person is sitting on a blanket on the floor by the front door with a broom beside them and they are sneezing.;A person is sitting by a door.  The person keeps sneezing and coughing.  They have a blanket with them.,c125 0.00 20.00;c153 0.00 20.00,19.42\r\nFJYWX,JTAS,Bedroom,5,7,Yes,A person is standing and opening a letter. They read the letter and put it on the table. They take off some of their clothes.,clothes;envelope;paper/notebook;shirt;table,\"A person opens a letter in their room and begins reading it before setting it down and undressing.;A girl is standing in her bedroom opening a letter, which she takes out and looks over before setting it aside and beginning to undress.\",c155 22.80 35.10;c009 20.50 26.60;c002 24.30 33.60;c117 3.70 10.70;c000 29.80 35.30;c001 30.00 35.30;c116 20.50 26.60;c115 0.00 27.00,37.83\r\nJEB7V,JTAS,Bedroom,6,7,Yes,A person is eating on the bed then begins opening medicine.,bag;bed;box;cup/glass/bottle;food;hand;medicine;sofa/couch;table;window,\"Person sitting on bed looks out window, then starts eating, looks at box puts food in mouth multiple times. Then opens another snack and looks at it.;A person is sitting down eating;The person is sitting on a bed eating something from a small bag and looking around the room.\",c135 0.00 32.00;c156 4.20 11.50;c039 29.00 32.00;c129 24.70 32.00;c128 24.20 32.00;c092 0.00 4.80;c061 0.00 28.20;c062 23.10 28.20;c020 0.00 32.00;c009 24.10 29.60;c123 0.00 32.00;c107 24.40 32.00,30.92\r\nRSRK7,ENHU,Bedroom,4,6,Yes,The person was grasping the phone up until walking into the doorknob.,doorknob;mirror;phone/camera,\"A person is beginning to close the door.;A person takes a step towards a door, grabs the doorknob and quickly releases it while taking a step backwards.\",c141 0.00 4.00;c096 0.00 4.00;c015 0.00 4.00,3.12\r\n51RLB,GE1M,Stairs,5,7,Yes,A person is sitting on the stairs next to a bag  drinking from a glass and looking at a laptop.,cup;floor;laptop;staircase;water bottle,\"The person is sitting on a stair case with an apple laptop.  The person takes a drink from a water bottle and continues glaring at the laptop.;A person sitting on the stairs with a laptop on lap, a book bag on the step below takes a drink from a soda can;A person is sitting on stairs working on a laptop computer. The person picks up a glass of water, takes a drink, and then sets the glass back down.\",c047 0.00 21.00;c106 2.70 10.30;c107 2.00 19.00;c051 0.00 21.00;c109 3.00 19.00;c110 2.00 6.00;c125 0.00 21.00;c052 0.00 21.00,20.08\r\n81R72,M7K8,Bedroom,4,7,Yes,\"One person holds a towel and smiles, then laughs before closing the doorknob.\",door;towel,\"A person is smiling while holding a towel. They then walk over and close the open door to their right.;A girl is holding a towel. She stands with the towel in her hand, smiling, before she begins to walk away out of the room.\",c033 0.00 33.00;c141 22.10 30.80;c152 0.00 33.00;c006 22.90 29.80;c149 0.10 30.90,32.42\r\nBEJVY,ENHU,Home Office / Study (A room in a house used for work),6,5,Yes,A person is eating food in the man cave while fixing a laptop.,bag;box;chair;desk;food;laptop;table,\"A person sitting at a desk fixing a laptop and munching on cereal.;A person sitting down looks through a bag and places it on the table. The person takes a laptop and holds it sideways.;A person sitting at a desk in a rolling desk chair picks up a box and takes a bite of something from the box, then puts the box down and picks up a computer.\",c047 7.40 16.00;c064 4.20 9.90;c009 4.70 11.00;c059 0.00 16.00;c061 0.00 8.50;c011 0.00 16.00;c022 5.70 11.30;c021 0.00 7.30;c014 5.80 16.00;c049 7.60 12.60;c020 0.00 9.60;c050 6.80 12.10;c062 4.00 10.20;c156 2.40 8.10,14.96\r\nGFK4S,JTAS,Bedroom,7,5,Yes,A person is snuggling on the sofa. Then the person rises and begins tidying up the things in the cabinet.,bed;cabinet;door;pillow;shelf;sofa,A person is sleeping and then awakes and stands up and walks over and kneels beside some kind of short cabinet with a door and opens the door and reaches inside.;A person laying in the bed and holding a pillow then get up and walk over to a safe.,c113 14.40 19.50;c122 0.00 12.60;c154 9.70 15.70;c082 14.20 37.00;c134 0.00 13.20;c008 14.10 20.60;c076 0.00 13.50;c078 0.00 13.40;c146 4.10 13.00,36.04\r\nVNUPE,GE1M,Kitchen,7,7,Yes,\"A person is putting food on the stove. Then, standing, the person gets the broom and begins to sweep.\",broom;dish;floor;food;stove,Person standing at the counter preparing food then get the broom and began to sweep.;There is a person cooking something on the stove.  That same person then takes a broom and starts sweeping the floor.,c102 24.90 32.00;c147 17.40 25.70;c061 0.00 8.10;c120 0.00 20.80;c127 0.00 19.60;c064 5.20 17.70;c098 24.10 32.00;c062 0.00 27.20;c119 0.00 27.20;c118 0.00 27.20,30.54\r\nHSWPR,GFWE,Bedroom,6,7,Yes,A person is putting a glass on a bedside shelf.  The person is playing with the switch for the light.,chair;dish;glass;light;shelf;sofa/couch;table,\"A person is sitting on a chair and drinking.  This person turns the lamp on and off a few times.;A person sits on a bed and takes a drink. The person turns on a small lamp, off, and then back on again multiple times.\",c105 13.10 19.00;c104 6.40 12.80;c081 2.30 6.60;c120 0.00 3.30;c123 0.00 34.00;c103 6.30 34.00;c106 0.00 5.50;c109 1.50 8.30;c107 0.00 3.30;c059 0.00 34.00;c110 0.00 3.00;c009 1.10 8.80,33.04\r\nC6INR,I48P,Dining room,5,7,Yes,A person is grasping a broom. They set it down and lie down on the floor and take a picture with a camera.,broom;floor;phone;picture,\"Person sweeping floor with a broom;A person is sweeping the floor, picks up a cell phone off of a table, and then proceeds to lay on the floor while playing with the phone.;A person sweeps the floor before lying on the floor and taking a selfie with a camera.\",c124 17.20 36.00;c087 17.00 36.00;c098 0.00 16.80;c015 12.60 36.00;c151 16.00 21.70;c016 16.70 36.00;c125 17.60 21.70;c017 32.50 36.00;c102 0.00 12.80;c100 0.00 3.80;c127 0.00 13.50;c099 9.60 16.50;c018 14.20 19.40,35.21\r\n93HQR,M7K8,Living room,5,7,Yes,A person is holding a bottle of medicine and looking at it.  Then a person starts walking towards a phone.,cup/glass/bottle;medicine;phone,A person stands in a room while staring at an object in their hands. The person then picks up a cell phone and starts to stare at it intently.;Person standing by a sofa using a phone then picked a cell phone off the table.,c128 0.00 32.00;c016 22.90 32.00;c018 22.90 29.60;c015 23.50 32.00;c107 0.00 32.00,31.46\r\nMNNJS,BONA,Kitchen,4,7,Yes,A person is washing dishes the sink and then pouring coffee into a cup in the dining room.,coffee;cup;dish;glass;hands;sink;table,A person is washing their hands in the sink then they walk over to the table and pour a cup of coffee.;A person washes some things in a small sink. The person puts the cups onto a table and pours some water.,c120 18.80 25.30;c108 21.30 30.70;c121 0.00 19.00;c119 18.30 25.30;c139 0.00 19.00;c110 12.40 24.20;c014 20.50 33.00;c009 18.50 24.00;c107 18.90 24.20;c109 19.70 25.60;c118 21.90 31.00;c111 0.00 22.60;c012 27.70 33.00,31.67\r\nWT46G,M7K8,Living room,5,5,Yes,\"First person is awakening from long nap, another person turns television on and smiles with coffee in hand.\",chair;coffee;couch;cup;dish;friend;hand;mug;table;television;tv remote,\"Person sits onto their catch while holding a coffee cup and watching television. Smiling and laughing while changing channels or the volume with another prson.;A person walks to a couch and sits down with another person, drinks from a mug and then stands up and walks away from the couch leaving the other person behind on the couch.;A person sits on the couch next to another person laying down. The other person sits up and the both of them watch some tv.\",c106 13.60 32.90;c131 9.40 32.50;c152 21.40 34.30;c154 29.40 33.90;c107 0.90 7.20;c132 4.90 16.60;c132 5.50 33.40;c151 0.80 6.90;c107 2.00 36.00;c123 1.10 7.50;c118 1.60 7.70;c109 28.90 36.00;c110 0.90 6.90;c123 2.30 33.20;c149 9.60 31.80;c122 0.00 36.00;c009 4.60 11.20;c146 4.60 13.10;c059 2.00 7.50,34.67\r\n3LMTS,SW82,Kitchen,7,6,Yes,A person is cooking then turns down the television and picks up the phone.  The person then continues to cook while holding the phone in between their shoulder and their head.,food;phone;stove;television,\"A person is standing at the stove cooking. They turn off the television then begin talking on the phone.;A person is in the kitchen cooking, they turn the tv down and make a phone call;A person is in a kitchen and is stirring something.  The person also turns up the volume and calls somebody on a phone.\",c019 16.20 31.00;c147 0.00 31.00;c015 16.30 31.00;c018 13.80 20.70,30.29\r\n1LBUG,GFWE,Pantry,6,6,Yes,A person is sneezing by the door then grasps a allergy medicine bottle under the light.,cup/glass/bottle;medicine,\"A person stands by a door and sneezes.  this person then holds something up to the light for a few seconds.;A person walks to the far side of the room, sneezes, and holds their phone in the air as if recording sound or taking a video.\",c128 4.80 30.50;c153 1.00 6.70;c154 29.50 32.00;c107 4.80 8.90,31.46\r\nURAIM,JQ7D,Living room,5,6,No,\"A person snuggles up to a pillow while sitting on the couch. The person takes a picture from the table, and looks at it.\",blanket;couch;paper/notebook;phone/camera;picture;pillow;soda;sofa;table,\"One person is laying on a couch cuddling with a pillow. The person takes a picture from a coffee table and looks at it, then puts it back on the table.;A person is laying on a sofa trying to sleep. The person then picks a photograph up off of a table, looks at it, and then lays it back down.;The person is tossing and turning while laying on a couch.  The person then picks up a photograph from a table to look at before returning it back to the same table.\",c078 0.00 31.30;c122 0.00 32.00;c084 14.70 30.80;c087 13.70 20.40;c146 0.80 10.10;c009 25.70 32.00;c152 16.50 21.80;c076 0.00 32.00;c117 12.00 18.10;c116 25.40 32.00;c072 0.00 32.00;c086 26.50 30.80;c115 13.30 30.80;c085 8.80 21.80;c088 13.70 31.60;c083 12.00 32.00,31.12\r\nTRVEA,ZDKC,Bedroom,7,7,Yes,\"A person throws a pillow, and then grasps the laptop on their bed.\",bed;floor;laptop;pillow;sofa/couch,A person sits on a bed with a pillow.  This person throws the pillow on the floor and picks up a toy computer.;A person sits on their bed with a pillow before throwing the pillow on the floor and playing on their laptop.,c076 0.00 7.50;c047 6.30 11.10;c050 5.50 11.10;c052 9.40 26.90;c135 0.00 3.60;c080 3.60 9.20;c048 6.70 12.90;c051 8.60 14.70;c077 3.60 8.10;c123 0.00 33.00;c126 3.60 8.10,31.88\r\nGHPO3,EDYS,Bedroom,1,1,No,A person is snuggling under a blanket and then sneezing on a mirror in a laundry room.,blanket;clothes;mirror,A person is hugging a pillow they walk around their room and put the pillow down.;A person cries in a pillow.,,30.08\r\nBO12I,M7K8,Kitchen,5,7,Yes,A person is throwing a pillow while another person is closing a refrigerator.,door;pillow;refrigerator,\"People are in a room, one closes the fridge door as the other tosses a pillow.;A person is standing in the kitchen and tossing a pillow up and down in the air while a second person closes the door to the refrigerator.\",c080 0.00 32.00;c142 3.10 17.70;c143 0.00 15.20;c152 17.70 32.00;c006 2.20 14.10;c076 0.00 6.30,30.92\r\n8QWE4,AT5D,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,\"One person walks past a box by the door, then tidies a dirty window and laughs at a picture on the wall.\",box;dish;door;food;paper/notebook;picture;table;towel;wall;window,\"A person carrying a container walks in a room. The person sets the container down and walks towards a window. The person grabs two pieces of fabric and wipes the window border with them. The person then stares at a wall.;A person walks inside a room carrying a bowl, places it on a table, dusts the blinds of a window, closes the curtain, walks across the room and stands looking at a picture that is hanging on the wall.\",c088 21.60 30.00;c040 0.00 8.00;c091 9.20 21.10;c062 0.00 7.80;c038 9.10 23.70;c154 0.00 30.00;c033 11.70 26.20;c061 0.00 8.30;c115 8.30 13.20;c042 3.40 7.80;c097 0.00 5.10;c119 3.00 8.80;c118 0.00 8.00;c009 3.50 8.00,29.08\r\nTBEV0,I48P,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is undressing and laughing in a walk-in closet. the person then sits in a chair and tightly clutches a pillow.,chair;closet;clothes;doorway;pillow;shirt;sofa/couch;wardrobe,\"A person is taking off a shirt in a closet. A person then sits in a chair and snuggle with a pillow.;A person takes a jacket off in the closet and hangs it up on a clothing rack. The person then sits down with a pillow in hand.;A person enters a walk-in close and takes off their jacket and hangs it up, and then they sit down and snuggle with a pillow.\",c076 15.70 31.00;c001 10.60 17.00;c059 15.00 31.00;c078 16.30 31.00;c151 14.50 19.40;c155 0.00 9.60;c114 7.70 16.40;c097 0.00 4.40;c000 4.40 17.50;c152 18.00 29.40;c079 15.00 19.60;c123 13.80 31.00,30.25\r\n5HPZ1,GFWE,Home Office / Study (A room in a house used for work),4,5,Yes,Person A is in a home office doing homework.  Person A clicks a nearby light on and grasps a nearby mobile phone to watch a quick video clip.,book;chair;homework;light;paper;phone;table;video,\"A person is sitting and reading a book. They pick up a pencil and write something down, then  they turn on the light and pick up their phone.;A person sits down at a desk and reads through some pages in a book. The person takes a pen and writes some things down and turns on a light. The person then gets on their phone.\",c016 20.90 34.20;c145 12.00 20.00;c011 0.00 35.00;c032 0.00 8.70;c025 16.20 22.60;c026 0.00 22.60;c152 23.80 33.90;c018 19.40 25.80;c015 20.80 32.00;c104 16.40 23.10;c115 0.00 23.10;c028 18.70 23.40;c014 0.00 35.00;c116 15.90 20.40;c017 29.90 35.00;c027 0.00 32.00;c059 0.00 35.00,33.62\r\nNI15V,AT5D,Bedroom,6,6,Yes,A person in their home office is putting a broom on the ground while holding a towel in the other hand. They start throwing the towel towards the doorway at another person.,broom;doorway;floor;towel;vacuum,One person sweeps the floor while another stands in the doorway and watches. The sweeper throws a towel at the person doing nothing.;A person sweeps the floor while another person stands in the open doorway of the same room. The people talk to each other and laugh. Then person that is sweeping the floor throws a towel at the person that is standing in the doorway and both people smile. The person then continues sweeping the floor and the person in the doorway walks away holding the towel.,c102 0.00 32.00;c036 12.90 21.30;c127 0.00 32.00;c137 0.00 32.00;c098 0.00 32.00;c097 18.50 25.40;c035 13.20 19.80;c033 13.50 19.50;c149 0.00 3.70;c152 0.00 23.90,30.58\r\nI6TPS,ZDKC,Kitchen,6,7,Yes,A towel hags on the kitchen door. A person is standing in front of the stove watching a pot.,food;pan;stove,person standing near the stove and cooking something in the pan;A person is standing by a stove cooking something in a pot.;A person cooking on a stove examines the contents of a pot being used on one of the stove's burners and then covers the pot with a lid.,c147 17.20 32.00,30.58\r\n3Q6N1,ENHU,Home Office / Study (A room in a house used for work),3,7,Yes,\"A person opens their laptop to do their work. They take a bite of their sandwich, sneeze, and than return to their laptop.\",chair;cup/glass/bottle;food;laptop;sandwich;table,\"A person starts working on a laptop and eats something then sneezes.;A person sitting in a chair at a desk opens a laptop, picks up a cup and takes a drink and then sneezes.\",c048 0.00 4.40;c065 1.60 8.60;c156 1.20 8.70;c153 6.50 13.50;c011 0.00 14.00;c059 0.00 14.00;c062 0.50 9.50;c051 9.10 14.00;c009 1.20 9.40;c061 0.60 9.40;c052 11.40 14.00;c014 11.40 14.00;c106 11.40 14.00,13.29\r\n69R8T,P2J3,Bedroom,5,7,Yes,\"A person is playing with their food while sitting on the bed. Taking the plate away from him, a person hands the person a cup of coffee.\",bed;coffee;cup;dish;food;glass;hand;sofa/couch,A person plays with some food and eats it from a plate while sitting on a bed. Another person comes in and takes the plate and hands the sitting person a drink.;A person sits down at a bed and picks at some food on a plate they hold in their lap. Another person comes in and takes the plate and gives the first person a glass.,c118 0.00 24.20;c061 0.00 24.40;c135 0.00 20.80;c106 23.00 32.60;c120 20.20 27.00;c156 24.90 33.00;c119 21.90 26.90;c123 0.00 34.00;c109 20.20 26.20;c107 22.10 34.00;c062 0.00 24.40;c110 21.70 26.90;c063 20.70 26.70,32.92\r\nS2FUO,ENHU,Kitchen,7,6,Yes,A person is in the pantry at their phone putting groceries on the shelf. They walk to the stove and pour milk into a pot to start cooking.,box;cabinet;cup/glass/bottle;floor;food;groceries;milk;phone;shelf;stove;table,\"A person kneeling on the floor talks on a phone while moving a box and other groceries from on top of a table to a shelf in a cabinet. The person then stands and walks to the stove, picks up a milk jug and pours it into a pan on the stove and begins cooking.;A person talks on their phone in the kitchen.  They put some items in a cabinet, and then walk to the stove.;A person kneels down and puts some things away while talking on the phone. The person pours something into a glass after standing up.\",c019 0.00 8.40;c081 0.00 5.70;c154 7.70 13.90;c043 2.40 7.50;c130 0.00 5.70;c112 6.50 13.70;c062 0.00 5.70;c016 0.00 10.60;c125 0.00 12.50;c114 1.20 11.90;c009 5.30 10.80;c012 0.00 9.80;c082 0.70 4.90;c040 2.70 6.90;c042 4.10 8.40;c108 13.30 22.40;c063 2.20 8.00;c015 0.00 10.10;c017 6.00 10.60;c147 12.10 25.00,23.83\r\n5OV3M,M7K8,Living room,7,7,Yes,A person is sitting on a sofa doing homework. They are eating some food as well as drinking some water.,book;chair;cup/glass/bottle;food;homework;paper;sofa;water,\"A person is seen sitting on a couch while writing in a notebook. The person is also eating snacks. There is a dog who approaches the person, in attempt to get a snack. The person nudges the dog away, grabs a glass of water, drinks from it, and continues writing in their notebook. The dog keeps a close eye on what the person is grabbing for.;A person is sitting on a couch and eating a snack and drinking water from a glass while also writing something on a notepad or notebook.\",c145 0.00 10.80;c123 0.00 34.00;c106 18.20 25.00;c156 4.90 21.80;c115 0.00 34.00;c152 23.00 28.30;c107 17.80 22.60;c029 23.00 28.30;c110 16.80 23.50;c061 0.00 10.20;c059 0.00 34.00;c109 20.00 26.80,32.62\r\n1BGZ0,ZDKC,Hallway,6,5,Yes,A person runs into their entryway holding a bag and a pair of shoes. They open the door and leave.,bag;door;food;groceries;shoe,\"person took a bag of groceries and shoe,ran out of the room opening the door and went out of the room closing the door;A person is holding a bag and shoes while they run to the door.  The person opens the door, steps through the door, and then closes the door.;A man runs in with a bag of groceries. Then he walks out, shutting the door behind him with his hand on the knob.\",c053 0.00 9.20;c006 9.50 15.20;c008 4.20 9.40;c020 0.00 9.20;c150 0.00 6.20;c056 0.00 15.50;c023 0.00 15.40;c061 0.00 15.20;c097 5.00 11.80;c063 0.00 12.60;c130 0.00 10.90;c141 2.10 8.90,21.46\r\nT7ST5,BPXZ,Kitchen,6,7,Yes,\"The person stood in the kitchen, smiling while eating a piece of pie.  The person wiped off the pie on the face with a towel.  The person then stared out of the window.\",bowl;dish;food;towel;window,\"A person is standing in a kitchen holding a small cup of food and a spoon. The person used the spoon to eat from the cup. After a few bits, the person set the cup on a nearby counter and walks over to a nearby counter. The person then leans on the counter and looks out a window.;A woman is standing at a counter and looking out the window as she leans forward slightly on her elbows.\",c092 8.80 23.00;c156 0.00 8.70;c038 5.30 10.80;c034 7.10 12.10;c036 6.80 11.60;c062 3.60 9.30;c118 0.00 9.00;c061 0.00 8.50,21.50\r\n8YD0O,P2J3,Bedroom,7,7,Yes,A person in a bedroom sitting at their desk is holding a box eats a sandwich out of the box while watching a video on their laptop.,box;chair;desk;food;laptop;sandwich;table;video,\"A person sits in a chair at a desk, while watching a video on a laptop computer, picks up food and begins eating.;A person is sitting in a chair at a work area watching a video on a laptop. The person begins to eat a sandwich while continuing to sit in the chair and watch a video on the laptop.;A person sitting at a desk, looking at a laptop computer and then picking some food up and eating it.\",c051 0.00 36.00;c065 13.60 36.00;c011 0.00 36.00;c156 14.50 36.00;c059 0.00 36.00;c061 13.20 36.00;c063 11.70 20.40;c052 0.00 16.50;c067 14.80 36.00;c044 14.30 19.70;c069 14.30 19.70,35.04\r\nEMXAG,ENHU,Bedroom,6,7,Yes,A person turns the doorknob of their bedroom door and enters smiling. The person puts their bag down on the bed.,bag;bed;door,\"A person walks into a room and throws a backpack onto a bed.;A person wearing a backpack opens a door and walks into a bedroom, removes the backpack and tosses it onto a bed.\",c024 4.80 10.00;c141 0.00 3.70;c008 0.00 4.40;c022 3.70 10.00;c097 0.00 6.00;c020 2.60 9.70,8.62\r\nG40U3,GFWE,Hallway,7,6,Yes,\"One person is standing by a wardrobe undressing out of their shoes. Then, this person closes the wardrobe and drinks something.\",closet;shoes;something,A person puts their shoes in the closet and drinks water;A person is standing and taking off their shoes. The person picks up the shoes and places them in a closet. The person picks up a glass and drinks some water.,,33.38\r\n35LUV,GFWE,Bathroom,5,6,Yes,A person is washing clothes in the sink.  Then a person is grasping a cabinet handle.,cabinet;clothes;dish;hands;sink;towel,This person used a washcloth and soap to clean a small item over the sink.;A woman is leaning over the bathroom sink and begins to thoroughly wash her hands before reaching for a towel to dry them.,c113 21.50 34.60;c005 0.00 28.10;c121 13.60 24.00;c033 0.00 35.00;c152 0.00 4.70;c038 0.00 25.50;c000 0.00 25.50;c139 0.00 25.50,34.29\r\nJZZH6,AT5D,Stairs,7,4,No,\"A person is at the bottom of the stairs, holding the doorway while grasping their shoes.\",closet/cabinet;clothes;door;light;pants;shoe;stairway,\"A person fixes their clothes on the stairs. Then the person reaches through a door to pick up some shoes and starts walking.;A person standing on a stone staircase adjusts their clothing, steps down onto the floor, and then retrieves a pair of shoes from a nearby closet.;A person stands on the bottom step as they adjust their pants before grabbing a pair of shoes.\",c053 15.80 21.50;c000 17.00 25.40;c113 14.40 20.40;c097 14.70 26.40;c056 16.80 22.40;c104 12.80 17.40;c002 16.80 29.00;c008 15.10 20.20;c148 22.70 29.00;c001 21.40 29.00;c097 20.80 29.00,28.46\r\nPS7XK,M7K8,Stairs,6,7,Yes,A person is standing by the stairs with a laptop in one and and a pillow in the other hand. They are grasping onto both of the items very carefully.,hand;laptop;pillow,A person is standing in a hallway while holding a laptop and a pillow. The person is smiling often.;A person is holding a laptop and a pillow. She stands there and looks at her laptop while holding the pillow in her other hand.,c047 0.00 32.00;c051 0.00 32.00;c076 0.00 32.00;c154 0.00 32.00;c052 0.00 32.00;c152 26.00 32.00;c149 27.20 32.00,30.75\r\nSJ4IG,CP6Y,Bedroom,6,7,Yes,One person is playing with the camera while the other is grasping the laptop.,bed;camera;laptop;phone,A person sits on a bed looking at a camera.  Another person walks in and picks up a laptop sitting on the bed.;A person is sitting on a bed and fidgeting with a camera while a second person enters the room and picks up a laptop computer.,c047 9.80 18.00;c015 0.00 18.00;c016 0.00 18.00;c087 1.10 14.30;c050 8.70 14.80;c135 0.00 18.00,16.83\r\nSVIXG,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person sits in the entryway, eating from a box of food.\",box;chair;cup/glass/bottle;dish;floor;food,\"A person seated in front of a door opens the lid to a food container and eats a few pieces from inside.;A person is sitting by door on table, opening a box and eating something out of it.\",c040 0.00 31.00;c041 1.40 13.10;c044 8.80 16.80;c061 13.50 24.30;c062 17.30 27.30;c063 10.70 21.40;c156 16.50 28.00;c059 0.00 31.00;c118 0.00 31.00;c107 0.00 31.00;c125 0.00 31.00,29.79\r\nBIQGN,EDYS,Bathroom,3,7,Yes,A smiling person walks into a bathroom and closes the door. The person puts a towel on a shelf and leaves.,clothes;door;shelf;towel,The person walking touching face with one hand.;A person is smiling and walking through their home.,c034 15.80 21.20;c081 15.70 21.30;c006 12.50 17.80;c008 10.80 16.80;c003 16.40 23.90;c154 0.00 31.00;c097 11.70 18.00;c033 15.40 21.20;c149 0.00 4.60;c036 15.80 21.20;c152 0.00 5.40;c035 0.00 21.30,30.42\r\nXJA7Z,ZDKC,Kitchen,3,7,Yes,\"The sandwich was lying on a towel, while the person was pouring a bottle of beer and drinking it.\",cup;dish;glass;sandwich;table;towel,A person pours water into a glass and drinks it.  That same person then moves a sandwich that is sitting on a counter.;A person is standing in the kitchen and pours a glass of water before drinking from the glass of water.,c106 7.40 16.00;c107 7.10 11.50;c108 1.10 9.40;c067 22.40 27.80;c118 0.00 32.00;c110 0.00 6.30;c109 4.60 10.40;c009 4.40 9.80,30.50\r\nJIUH7,CP6Y,Stairs,7,7,Yes,A person walks down stairs drinking from a glass bottle and carrying groceries. The person throws the bottle in the garbage and leaves.,bag;cup;door;floor;glass;groceries,\"A person is walking down the stairs holding a bag and drinking a bottle of water. Then they put the bottle in the trash and walk out the door.;A person is walking down the stairs holding a bag and a water bottle they are drinking out of the water bottle they get to the bottom of the stairs and put the bottle in the garbage. then they walk out the front door.;A person is walking down a staircase while drinking from a water bottle and holding a shopping bag, and at the bottom of the stairs the person puts the bottle in a trash can and they walk out a door and close it behind them.\",c106 0.00 10.00;c006 24.00 29.00;c008 22.00 27.00;c020 0.00 29.00;c126 16.40 22.70;c107 0.00 19.90;c109 15.20 21.80;c097 22.40 29.00;c141 21.90 28.10,27.88\r\nGHOR6,JTAS,Bedroom,6,6,Yes,A person is grasping and throwing clothes on a sofa.,box;clothes;sofa,A person takes laundry out of a laundry basket and throws it on the bed in a pile.;Person in a bedroom taking clothes from a basket the began throwing the clothes onto a bed,c001 0.00 26.00;c000 0.00 26.00;c003 0.00 26.00;c004 0.00 26.00;c044 0.00 25.70;c002 0.00 26.00,25.46\r\nQUXYH,ZDKC,Kitchen,2,7,Yes,\"a person holds a blanket and laughs in the kitchen, then takes some food.\",blanket;box;food;phone;table,\"A person snuggles with a blanket, then walks to a table while carrying the blanket. They eat some food out of a box on the table.;A person holds a pink blanket close to their body. The individual then walks towards a container of strawberries and eats one.;A person is holding a blanket and seems to be laughing into the blanket. The person walks over to a table picks up a pastry and eats it.\",c061 18.00 25.80;c063 15.10 22.90;c072 0.00 10.00;c044 13.80 25.10;c071 0.00 32.00;c062 13.50 32.00;c070 0.00 32.00;c041 14.00 18.90;c156 21.80 31.20;c149 0.00 10.90;c152 3.50 14.10,30.54\r\nQ0IHP,BKWQ,Kitchen,6,6,Yes,\"A person, stands at the stove, cooking. The person takes a drink from a glass of juice then sneezes.\",cup;dish;food;glass;stove;table,\"Person walks over to a stove and stirs something in a pot. Turns the stove off, sets the spoon down, and proceeds to take a drink from a cup.;A person walks up to a stove in a kitchen, stirs something in a pot on the stove, adjusts the heat, tastes what is in the pot with the spoon, puts the spoon down, takes a drink from a glass and walks away.\",c106 22.70 32.50;c147 0.00 23.70;c119 20.50 26.30;c156 16.00 21.90;c110 22.70 27.40;c009 29.00 33.70;c109 28.80 33.90;c107 22.80 34.20,35.04\r\nOIL1V,ENHU,Hallway,5,7,Yes,The person is fixing a light. They stop then bend over and grasp the glass on the floor and take a drink.,cup;dish;food;light,\"A person wearing a long sleeve shirt adjusts the lightbulb within a wall fixture, then grabs a drinking glass from the floor and takes a sip.;A person is standing in a hallway and working on a light fixture, and then picks up a glass from the floor and takes a drink from it.\",c106 11.10 16.00;c103 0.00 12.00;c063 9.30 13.90;c156 11.80 16.00;c118 9.30 16.00;c154 9.80 15.80;c120 9.40 13.90;c110 8.70 15.10;c107 10.00 16.00,15.42\r\nOWCJT,ENHU,Home Office / Study (A room in a house used for work),2,7,Yes,A person is undressing in front of a window while pouring water into a box,clothes;cup;glass;water,\"A person is undressing and drinking from a glass.;A person standing by a desk, taking a jacket off. Then picking up a bottle of something, taking a sip and then appears to be pouring it out.;The person takes off a shirt and takes a drink.\",c106 7.60 11.90;c107 5.90 14.00;c155 0.00 8.40;c108 10.00 16.00;c002 0.00 5.20;c000 1.90 9.30;c001 4.50 10.20;c110 5.70 11.10,15.29\r\n8SDK5,JTAS,Living room,6,7,Yes,\"A person is standing and holding a box. Then, laughing, the person walks over to the sofa and sits down.\",box;chair;sofa,\"A person has a box and sits down in a chair;She is holding a box and laughing so hard, and then went on bed sat there with box on lap.\",c123 16.70 23.00;c040 0.00 23.00;c149 5.90 16.70;c151 15.00 23.00;c152 6.00 17.60;c059 15.40 23.00,21.67\r\nX11CU,AT5D,Dining room,6,6,Yes,\"One person fixes something to eat, then eats food at the table. Another holding medicine opens a window.\",chair;dish;food;medicine;something;table;window,Person sitting at a table and another person standing at the window one person is eating.;One person is sitting at a table eating. Another person walks into the room and opens the blinds and stands by the window looking out.,c092 4.00 13.40;c011 0.00 33.00;c061 0.00 33.00;c156 0.00 33.00;c119 13.00 18.10;c009 6.70 12.30;c062 13.00 18.70;c118 13.00 18.70;c059 0.00 33.00;c090 3.20 13.20,31.50\r\nPLJIZ,ZDKC,Closet / Walk-in closet / Spear closet,7,7,Yes,A person enters a walk-in closet and throws a towel into the hamper and grabs a blanket from the shelf.  The person then turns and leaves the walk-in closet with the blanket wrapped around their body.,blanket;closet/cabinet;clothes;door;shelf;towel,\"A person walks over to a closet carring a towel they open the closet through in the towel, they take out a blanket and wrap it around them and then they walk out.;A person holding a towel walks to a closet, opens the door and looks around, throws the towel into the closet, takes out a blanket, wraps it around his shoulders and walks out of the room\",c070 0.00 17.70;c072 14.20 32.00;c073 14.00 32.00;c033 0.00 16.90;c036 9.90 17.50;c097 28.00 32.00;c001 10.00 14.80;c034 10.00 15.40;c113 3.20 13.40;c008 3.20 13.40;c141 3.10 8.30;c000 0.00 14.30;c035 0.00 4.30,30.62\r\nSS3IL,CP6Y,Home Office / Study (A room in a house used for work),6,6,Yes,A person is seen grabbing dishes off their desk. They put the dishes down and take out their phone. Laughing as they play a game.,chair;computer;dish;floor;food;laptop;phone;sandwich;table,\"A person walks over to a desk and takes the plate from the table and puts it on the floor. The person then sits and looks at the computer.After, the person takes out their phone and looks at it while standing up from the chair.;A man sits in a computer chair and removes his phone from his pocket. He begins playing on the phone as he rises up from the chair and stands.;A person walks up to a desk and removes something and places it on the floor and then they sit down on a chair.\",c015 9.00 22.00;c011 6.30 21.10;c151 3.90 10.20;c154 0.00 22.00;c059 6.10 21.10;c120 1.30 9.30;c068 4.30 9.40;c126 4.30 9.40;c062 1.20 9.30;c119 1.80 9.30;c152 14.10 22.00;c016 9.80 22.00;c051 0.00 3.70;c018 8.40 13.40;c063 0.60 5.90;c061 1.70 8.80;c118 1.50 8.60,21.42\r\nHY4FS,M7K8,Bathroom,6,6,Yes,A person walks into a bathroom holding dishes. The open the cabinet and grab a bottle. They pour the contents in garbage.,closet/cabinet;cup;dish;trashcan,A person walks into a bathroom and puts down a mug.  This person then pours soap into a trash can.;A girl carries her mug into the bathroom and sets it on the sink before bending to remove items from the cabinets and cupboard in the bathroom.,c118 0.40 9.20;c119 2.30 8.70;c107 4.20 29.50;c109 0.20 8.50;c108 16.40 30.50;c154 26.70 32.10;c110 0.00 8.20;c152 3.20 8.40;c113 4.90 11.60,34.33\r\nLQMXW,P2J3,Living room,,7,Yes,\"A person enters the living room with a towel and a vacuum.  The person sneezes twice, inadvertently using the towel to catch the sneeze like a tissue.  The person then throws the towel onto the couch and plugs in the vacuum.\",blanket;broom;chair;clothes;floor;towel;vacuum,Person walk over to a chair with a towel sneeze into the towel throw towel on chair began to vacuum.;A person in a house with a yellow towel in their hands walks over to a blue chair and sneezes into the towel. The person throws the towel onto the blue chair. The person then puts a vacuum cleaner together and pushes it on the floor.;a person is walking in a room holding towel.  They sneeze into the towel and then put the towel on the chair.  Then they sweep the floor.,c034 11.20 18.40;c153 5.20 15.00;c001 0.00 16.40;c000 0.00 16.60;c071 11.20 16.60;c070 0.00 16.10;c036 10.80 16.60;c038 7.20 14.60;c137 18.60 37.00;c138 17.90 24.20;c098 18.80 37.00;c033 0.00 16.80;c127 21.50 37.00,36.04\r\n1VF27,CP6Y,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is in an entryway in their home, working at a desk on some homework. They start eating some food while drinking some coffee.\",book;chair;coffee;cup;desk;food;homework;paper;table,A person is sitting at a table doing some work. A person then picks up a coffee cup and drinks from it.;A person writes some things down while sitting and enjoying some food and drink on a table in front of him.,c061 11.00 16.20;c011 0.00 21.00;c107 14.70 21.00;c145 0.00 18.30;c063 3.80 9.90;c106 14.70 21.00;c115 0.00 14.30;c156 11.00 18.00;c027 0.00 21.00;c109 14.50 21.00;c110 15.20 20.60;c014 0.00 21.00;c026 0.00 21.00;c059 0.00 21.00;c032 0.00 19.90,20.50\r\n4ZJXR,JTAS,Living room,7,7,Yes,A person in the living room is eating something out of a bag while lying on the sofa.,bag;bed;blanket;cup;food;soda;sofa,\"There is a person sitting on a couch with a blanket on them.  The same person opens a bag and start eating what is inside.;A person is sitting on the couch covered in a blanket while she eats snacks from a bag that she holds in her hand, and drinks from a can.;The person is covered with a blanket on the couch as they eat potato chips from the bag.\",c122 0.00 33.00;c020 0.20 33.00;c021 2.40 10.60;c156 13.40 31.10;c072 0.00 33.00;c110 27.10 32.80;c062 0.00 18.50;c063 0.00 4.10;c134 0.00 33.00;c061 13.10 18.50;c107 28.00 33.00;c023 0.00 3.60;c123 0.00 33.00;c106 29.80 33.00;c063 2.40 6.90,31.67\r\nSTHIK,M7K8,Living room,6,6,Yes,\"A person runs through the doorway, eating from a bag of food and drinking a cup of coffee.\",bag;coffee;cup;doorway;food;glass,\"A person goes jogging through a doorway carrying what seems to be a mug and a bag of food, eventually running out of frame.;A person walks through a room carrying a bag of food, appearing to be eating it while going through.\",c061 1.30 9.00;c107 1.30 9.00;c150 1.30 9.00;c020 1.30 8.80;c097 3.50 8.70;c106 1.90 7.20;c156 4.10 8.40,29.58\r\nMA4YN,BPXZ,Bathroom,6,7,Yes,A person is opening their bathroom cabinet and starts taking medicine out of it and places it into a box.,box;cabinet;cup/glass/bottle;medicine;shelf,Person with blonde hair wearing a white shirt is in a bathroom examining pill bottles and then placing them in a box.;A person puts some medicine away off a shelf and into a box. The person checks each bottle before putting it away.,c128 0.00 4.90;c110 0.00 29.00;c109 0.00 29.00;c114 0.00 29.00;c082 0.00 29.00,28.50\r\n9PXI9,ZDKC,Kitchen,4,5,Yes,\"A person is in a living room sitting at a desk table, they then stand up and reach for their laptop.\",chair;laptop;table,\"This person got up from their kitchen table grabbed their computer, and sat back down at their kitchen table.;The person is sitting at the counter then gets up, takes a laptop from the other side of the counter and sits back down with the laptop in from of them.\",c009 16.10 22.40;c048 21.80 27.40;c050 14.60 20.10;c151 18.40 24.60;c154 10.50 16.40;c011 0.00 14.40;c059 0.00 14.50;c049 17.20 22.40;c014 21.50 32.00;c051 25.40 32.00;c047 15.30 20.90;c052 25.70 32.00,30.79\r\n3W1GP,I48P,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person walks in the door. They take off their shoes, then open a bag.\",bag;book;clothes;door;floor;homework;laptop;paper;shoe,\"A person opens a door, walks through the doorway carrying a bag and closes the door.  They first remove their shoes and put them on the floor, then open the bag and remove a laptop and some homework.  They put the bag on the ground.;A person walks into a house and takes off their shoes.  The person then takes out a laptop and paper out of their backpack.;A person opens the door and closes it, taking their shoes off. The person takes their backpack off and zips it, taking some paper out.\",c057 12.00 36.00;c008 0.00 2.60;c021 14.00 31.00;c115 29.00 36.00;c097 0.00 2.50;c006 2.90 8.70;c020 12.60 36.00;c022 32.20 36.00;c047 26.10 36.00;c030 25.90 32.90;c050 25.20 31.30;c001 7.80 16.20;c155 7.80 15.70;c141 4.50 9.40;c058 8.20 16.40;c117 18.30 36.00;c126 32.20 36.00,35.04\r\nBIB6C,ENHU,Home Office / Study (A room in a house used for work),2,6,Yes,A person is smiling and laughing into a camera and then making faces in a mirror in a home office / study.,chair;door;mirror;phone/camera;table,\"A person is sitting on a chair. The person gets up from the chair and looks at their reflection in the mirror hanging on the door.;A person sitting at a desk under a window stands up and walks to a mirror on a door and looks at reflection;A person sits at a desk in front of a window, stands up and walks over to look in a mirror.\",c096 4.60 13.00;c154 2.30 7.10;c059 0.00 6.30;c016 0.00 6.00;c017 2.80 7.30;c094 0.00 6.50;c087 0.00 6.30;c011 0.00 7.20;c015 0.00 7.40,12.25\r\nYGL6R,ENHU,Kitchen,6,7,Yes,\"A person is tidying the dining room. They start to vacuum, and then stop to open a window before continuing.\",bag;cup/glass/bottle;dish;food;groceries;table;towel;vacuum;window,\"A person is cleans the dishes off of the table. After the table is cleaned off, they begin to vacuum it with a small handheld vacuum.;A person cleans a table by removing a roll of paper towels and some other things from it, then rearranges a few items.;A person is in the kitchen, tidying up the table, putting things away\",c137 26.60 33.00;c012 4.80 14.80;c118 6.00 13.20;c120 6.00 15.20;c023 5.30 15.00;c130 5.30 15.80;c034 0.00 6.10;c009 0.00 33.00;c035 0.00 3.80;c109 7.80 13.10;c062 5.60 15.30;c090 21.10 28.80;c150 0.00 6.10;c107 0.00 5.60;c119 0.00 5.10;c033 0.00 5.30;c063 6.30 11.60;c022 6.00 20.20;c110 0.00 5.30;c061 6.30 11.60,32.42\r\nTJIK7,EDYS,Home Office / Study (A room in a house used for work),3,6,Yes,A person pours and drinks coffee at a small sofa with a table near the door.,chair;closet/cabinet;coffee;cup;door;food;medicine;sofa;table,\"I cant tell what the person does because the video is upsidedown.;The video is upside down. A person walks over and sits down on a chair, then drinks from a flask.\",c123 5.40 40.70;c106 9.60 18.70;c108 5.60 13.40;c110 3.90 9.40;c151 3.70 9.40;c107 6.50 19.30;c109 16.40 23.20;c009 16.60 24.60;c154 33.30 42.40;c112 20.60 27.20;c059 5.20 40.90;c129 6.00 19.30;c006 20.60 27.20;c156 5.80 43.00,42.25\r\nLSFJG,4UGC,Pantry,6,7,Yes,\"A person puts on a pair of shoes, and begins running in place. They stop, and start watching themselves in a mirror. Then they start running in place again.\",hair;mirror;shoe;table,\"A person near a pantry puts on a pair of shoes, then starts running in place, then takes a mirror from a table and looks into it, then starts running in place again.;A person is by the pantry they are putting on their shoes then they start running in place the stop pick up a mirror off of the table. Then they check their hair put the mirror down and start running in palce again.;The person puts n the shoes in from of the pantry, dances, then stops to pick up a mirror and touch hair, then starts dancing again.\",c053 1.30 9.90;c093 11.90 19.60;c094 14.00 21.30;c096 13.30 20.60;c150 20.70 26.00;c055 1.80 9.40;c009 20.20 24.60;c144 16.40 22.00,24.62\r\nU9KYC,BONA,Living room,6,7,Yes,A person is grasping a broom and then laughing while taking off shoes in a hallway.,broom;floor;shoe,A person tidied up the living room;A person walks across a living room to the corner and picks up a broom. The person carries the broom back to the middle of the room and picks up a pair of shoes off the floor.,c053 22.90 32.00;c098 11.40 32.00;c127 21.80 32.00;c100 7.20 17.30;c056 21.30 29.40,31.25\r\nZKSR1,ENHU,Bedroom,3,6,Yes,A person in a living room is laughing while tidying the table and then watching a picture.,book;cup/glass/bottle;dish;picture;table,\"A person picks up a glass, and a magazine from a table.;The person picks up a few items from a small table near the television.\",c084 1.70 8.00;c083 1.20 8.00;c088 2.90 8.00;c118 0.00 8.00;c032 0.00 8.00;c120 0.00 3.70;c107 0.00 8.00;c030 1.30 8.00;c115 1.30 8.00;c029 3.00 8.00;c110 0.00 4.90,6.58\r\n9MNZ5,ZDKC,Dining room,6,7,Yes,A person is in their dining room watching a video on their laptop. They are pouring some chips into a bowl and then begin eating those chips. They hold a book up and start reading the book.,book;box;chair;food;laptop;table;video,\"Person sitting at table looking at a laptop, pick up some food eat it from bowl then pick up a book and hold it up in the air.;A person is sitting and looking at a laptop computer. The person pours some crackers into a bowl and starts eating them while watching the computer. The person then reaches over, picks up a book, and opens it while holding it over their head.;A person looks at a laptop, eats crackers and opens a book over their head.\",c032 43.00 53.00;c051 0.00 12.00;c156 26.90 41.20;c011 0.00 53.00;c030 40.90 53.00;c044 10.10 27.50;c115 44.00 53.00;c039 21.10 27.20;c026 41.40 53.00;c040 9.00 28.30;c042 23.00 28.30;c043 9.00 13.80;c041 10.40 17.80;c062 16.10 23.30;c059 0.00 53.00;c027 40.10 50.10,52.42\r\n448J4,BONA,Dining room,5,5,Yes,A person is walking while carrying a tray of food and then grasping a pillow in the dining room.,dish;doorway;floor;food;pillow;table,\"A person comes into a room with a plate.  This person picks up a pillow, and sets it on a dining chair.;A person walks through a doorway carrying a plate, picks up a pillow and puts the plate on a table. The person rests the pillow on a chair.\",c061 0.60 16.80;c076 7.00 21.30;c062 12.30 22.50;c077 17.30 28.30;c119 13.10 22.70;c154 7.00 12.90;c063 0.00 19.90;c009 13.80 21.90;c127 6.70 12.30;c079 7.00 12.60;c097 1.30 7.30;c118 0.00 21.90,31.04\r\nH032R,ZDKC,Bedroom,4,7,Yes,A person is sitting on a pillow after leaving a towel on the floor.,bed;blanket;doorway;floor;pillow;towel,A person walks out of the bathroom and throws a towel then sits on a pillow;The person walks out of the bathroom and throws a towel on the floor before sitting down on a pillow in the bed.,c126 0.80 6.80;c033 0.00 7.30;c036 0.20 6.50;c151 12.40 19.70;c097 0.00 11.10;c035 0.00 4.50;c075 10.30 17.00;c135 12.40 23.00;c097 0.00 5.30;c034 1.30 6.70,22.25\r\nJHB0M,CP6Y,Dining room,5,6,Yes,One person walks in and pours medicine while another smiles while eating some groceries.,chair;cup/glass/bottle;food;medicine;phone;table,A person is sitting in a chair at the table eating food and another person walks in and pours medicine in a cup.;A person is sitting at a table eating a sandwich. while another person walks into the room and picks something up and starts to eat it.;A person is sitting at a table eating while a second person enters the room and begins pouring something from a very small bottle.,c011 0.00 21.00;c059 0.00 21.00;c128 7.00 21.00;c108 7.70 14.90;c156 0.00 6.20;c110 5.00 11.20;c061 0.00 6.20,20.25\r\nHI75B,CP6Y,Stairs,7,7,Yes,\"A person is opening a cabinet at the bottom of the stairs, they put a flash light into it and close it before walking away.\",cabinet;door;light,\"A person wearing a black jacket, jeans, and flip flops, is looking into a small closet under a stare case, with a flashlight.;A person walks in to a room and opens a cabinet under the stairs and puts something in it. Then the person walks away.\",c113 3.90 10.40;c104 5.00 10.00;c154 9.90 16.80;c112 9.20 16.60;c141 2.90 7.90;c008 2.90 8.60;c006 9.00 16.10,17.62\r\n2ADJI,ENHU,Kitchen,4,7,No,\"A person is smiling at a television, putting away groceries and drinking coffee in a kitchen.\",bag;bread;coffee;counter;cup;food;groceries;mug;refridgerator;sandwich,\"A person takes groceries out of a bag and puts them in the refrigerator.  The same person picks up a mug of coffee and starts drinking.;A person wearing blue pajama bottoms stands in a kitchen, grabs a food storage container and puts it inside the fridge before drinking from a coffee mug.;A person stands in the kitchen and places a bag of break into the fridge before drinking from a glass of water.\",c106 0.00 8.10;c107 4.40 12.20;c110 4.60 11.00;c020 9.90 21.80;c130 10.00 21.90;c063 8.90 13.90;c061 0.00 16.40;c109 22.60 26.00;c066 5.20 9.50;c062 11.90 16.20,24.54\r\n38B3F,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,A person stands while eating a sandwich. Another person carries a book and laughs at the other person.,book;food;sandwich,A person is standing by the doorway eating a sandwich. Another person walks in with a book in their hand.;The person is standing by the door eating a sandwich. Another person wearing a robe walks into the frame.,c065 0.00 15.50;c067 0.00 15.50;c026 13.10 18.00;c156 0.00 15.30;c029 14.00 18.00;c061 0.00 18.00;c152 13.40 18.00,17.00\r\n1RD2K,CP6Y,Living room,5,7,Yes,A person is closing the entry door holding the doorknob tightly as if it would jam.  This person turns and is watching as another person is running into the living room with a box. There are shoes in the box. The thought is What are you doing with my shoes?,book;box;door;hair;shoes,Someone is closing and locking the door and another person comes running in;A person closes the door to a house and works on the doorknob while a second person walks into the area while holding a box.,c006 0.00 5.50;c040 2.00 21.00;c141 1.30 12.20;c150 1.00 8.60;c008 0.00 5.50;c007 1.90 11.10;c026 1.00 21.00;c144 9.50 16.50,19.83\r\nPUY34,ENHU,Dining room,4,6,Yes,The person is standing by a cabinet and then walking with a broom in the dining room.,broom;cabinet;doorknob,\"The person looks in a cabinet below them and closes the cabinet door. Then, the person picks up a broom and walks away.;A boy is opening a cupboard, then picks up a broom, which he holds in his hand as he begins to walk away out of the room.\",c113 0.00 4.40;c100 3.60 11.00;c154 2.10 7.10;c112 1.00 6.10;c141 0.00 6.10;c098 4.00 11.00,10.00\r\nG6K7T,EDYS,Garage,4,,No,A person is running the vacuum and tidying cosmetics in a box in the bathroom.,clothes;hose;phone/camera;shelf;tool;towel,\"Person A grabs some tubing removes clothing from it and then some clothes while Person B walks nearby and grabs something as Person A begins polishing a tool.;Person grabs a hose from floor then starts washing clothes.;The person turns on the camera and then picks up a coiled hose from the corner, then dries off items as another person walks into and then out of the room.\",c035 13.60 19.60;c038 25.30 36.50;c036 30.10 39.90;c034 30.50 39.90;c033 13.80 38.90;c005 19.30 37.50;c017 38.10 41.00;c081 11.20 15.40,40.04\r\nJ1MMG,CO87,Laundry room,6,6,Yes,\"The person is in a laundry room, kneeling on the floor as they take out the clothes from the dryer and shoving them inside a bag. They take out a blanket and snuggle it against their chest, inhaling deeply. They suddenly sneeze and this makes them continue shoving clothes into the bag. Finally, they finish and they get up off the floor and reach for the softener on the shelf. They read the label and then put it down again.\",bag;blanket;clothes;floor;shelf,\"A person is taking clothes out a of drying. They stand up and take down  the laundry soap, then put it back on the shelf.;A person takes some clothes out of a dryer, smells them, then puts them in a bag. The person then looks at a container of detergent from a shelf.\",c125 0.00 27.10;c000 0.00 22.00;c070 3.30 15.20;c154 20.90 29.40;c002 0.00 24.00;c004 0.00 14.50;c005 0.00 10.40;c001 0.00 26.10;c020 0.00 23.60;c153 7.80 13.80;c081 30.50 36.00,35.12\r\nQACLT,CO87,Laundry room,6,6,Yes,\"A person is opening a cabinet in the laundry room. They grab an object and begin walking out of the laundry room. As the person is walking out, they pick up their phone out of their pocket and answer it.\",bag;cabinet;door;phone;shelf,\"A person walks over to some cabinets and roots around. The person pulls out a bag from a shelf. The person then pulls out their cellphones and walks away.;A person walks into the laundry room, opens some cabinet doors, takes something out then takes a cellphone from their pocket and speaks into it.;A person looks through some cabinets and pulls out an item. Then the person answers a cellphone and walks away.\",c023 8.90 14.40;c112 12.90 18.90;c154 1.00 27.00;c113 3.50 8.80;c113 5.90 10.60;c141 3.60 10.00;c152 22.20 26.40;c018 8.90 18.10;c008 3.60 8.80;c008 5.90 10.40;c006 6.40 11.00;c019 20.70 26.80;c015 18.60 27.00,26.17\r\nGF7DV,CO87,Laundry room,6,6,Yes,A person is holding a book while snuggling a pillow.,blanket;book;cabinet;clothes;drier;phone;pillow,A person reads a book on a dryer.  The person snuggles with a pillow while doing so.;Person lending on a washing machine with clothes in hand looking at and reading a book;A person reads through a book while leaning on a blanket on top of a dryer. The person continues to stand around and read.,c076 0.00 32.00;c078 0.00 32.00;c032 0.00 32.00;c070 0.00 32.00;c115 0.00 32.00;c072 0.00 32.00;c026 0.00 32.00,30.96\r\n9UPC6,GFWE,Bathroom,6,6,Yes,A person is putting something in the cabinet then drinking some water from the sink.,cup;dish;mirror;sink;water,The person took an item off of a counter and put it below the counter. The person then grabbed a small cup off of the table and filled it with water from a nearby sink. The person then drank the water from the cup.;A girl is putting away items from a bathroom sink and then drinking a glass of water from the sink.,c107 8.40 35.00;c110 6.60 13.60;c106 13.40 35.00;c118 8.10 35.00;c096 13.40 34.20,33.50\r\nSBBJG,ZDKC,Bathroom,4,7,Yes,A person walks into the bathroom carrying a box and sits down. The person takes some clothes out of the box.,box;clothes;doorway;toilet,\"A person carries a box into the bathroom.  This person sits on the closed toilet, and starts taking things out of the box.;A person sits down on a toilet and takes items of clothing out of a box.\",c000 0.00 11.20;c001 8.90 31.00;c000 8.90 31.00;c002 8.60 31.00;c040 0.00 12.10;c004 8.60 31.00;c097 0.00 6.30;c042 6.10 11.90;c044 8.90 31.00;c151 5.20 11.00,30.42\r\nJ3Y7L,JQ7D,Stairs,5,6,Yes,A person laughs as they put dishes into a box at the top of the stairs.,box;cup/glass/bottle;dish,\"A person opens a box and then proceeds to put things in the box;A smiling person opens a box and put a number of items inside, then laughs before putting the lid back on.\",c118 4.80 26.90;c040 0.00 31.00;c149 0.00 31.00;c039 22.40 31.00;c041 0.00 9.10;c119 4.10 26.70;c109 18.50 25.10;c152 0.00 31.00,29.71\r\nEJY5V,CP6Y,Bedroom,6,6,Yes,\"A person plays with their phone in the bedroom, A person walks to the window in their bedroom.\",bed;game;phone;window,The person is sitting on the bed and playing a hand held game. The person then gets up and walks around the side of the bed and looks out the window.;Person starts by sitting on a bed playing a handheld video game then stands up walks to window and looks out.;A person is sitting on a bed while playing on a phone. The person stands up then walks to the window.,c092 17.20 22.00;c016 0.00 21.00;c154 5.10 12.60;c135 0.00 11.60;c090 18.60 22.00;c152 12.30 17.30,21.08\r\nOE243,GE1M,Stairs,6,,No,\"A person is walking up the stairs towards a doorway, when they reach the top they grab a broom and start sweeping the floor and tidying up.\",box;broom;closet;clothes;doorway;floor;shoe;stairs,\"A person walks up the stairs and picks up a box. The person then starts tidying a hallway and sweeping with a broom.;A person takes a box off some stairs and walks up the stairs. The person puts some shoes in a closet and the boxes in another room. The person sweeps the floor.;A person picks up a box on the stairs and walks up. The person puts a box in a room and shoes in a closet, and begins to sweep the floor.\",c127 6.90 22.70;c102 19.60 31.00;c040 0.80 11.40;c042 7.40 13.00;c043 0.00 3.90;c054 13.30 20.90;c154 17.10 25.50;c045 6.90 11.40;c098 16.90 31.00;c097 3.70 9.30;c100 16.50 21.40;c114 14.10 18.50,29.75\r\nGY8P2,CP6Y,Hallway,6,7,Yes,Person is sneezing while grasping a broom while another person is holding a broom.,broom;floor,A person stands around and sneezes while another sweeps the floor with a broom. The sneezing person picks up a broom as well.;Two people are standing in a hallway and both are holding brooms while one of the people begins to sneeze.,c098 8.60 18.00;c100 8.50 13.80;c153 9.50 14.90;c127 0.00 18.00;c102 0.00 18.00,17.00\r\n4FX6G,IY28,Kitchen,6,5,Yes,\"A person opens a door with a doorknob, then takes some dishes out of the pantry.\",cabinet;counter;dish;door;shelf;table;towel,a person opens a door then grabs dishes out of a cabinet;A person opens a door and then walks into a kitchen. The person takes a plate from a cupboard and puts it down;A person takes a plate from the cabinet and puts it on the counter.,c008 7.80 18.60;c119 18.70 37.80;c141 4.80 15.10;c082 17.20 36.60;c009 23.40 38.00;c118 16.40 27.20;c120 16.40 27.20;c034 25.00 29.60;c035 23.80 28.80;c033 24.40 28.80;c113 17.20 22.70;c097 13.80 19.00,40.92\r\nN3U9S,ENHU,Pantry,5,6,Yes,A person throws a bottle of medicine into the pantry. They fix a cup of coffee and take a sip.,cabinet;cup;dish;door;floor;glass;groceries;table,Person gets on knees and opens a cabinet door twice before reaching over for a drink and standing up and drinking it.;A person puts something into a lower cabinet.  This person then picks up a cup and drinks from it.;A person opens a cabinet before grabbing a cup from the kitchen table and drinking from it.,c107 6.00 16.00;c154 4.40 9.30;c112 2.50 8.30;c107 0.00 6.20;c106 11.10 16.00;c110 6.00 15.20;c113 0.00 8.30;c130 0.00 6.60;c118 7.10 16.00;c009 6.80 16.00;c125 0.00 6.40;c006 3.20 8.60;c008 0.00 4.80;c141 0.00 4.80,14.83\r\nNWMAP,ARRB,Kitchen,7,7,Yes,A person is cooking on the stove and watching the bubbles form in the nearby sink.,food;stove,\"Person standing at the stove stirring a pot while dancing at the stove.;A person is standing at a stove and cooking something and the person begins to show jerky movements, perhaps like there is a sneezing fit occurring.\",c147 0.00 26.00,25.21\r\n99B6U,AT5D,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person runs down the stairs with a book. Person closes book and puts it in bag at bottom of stairs.,backpack;bag;book;brief case;steps,\"A guy is walking down the steps holding books. He picks his backpack up off the floor, puts the books into his backpack and puts it back on the floor.;A person walks down the stairs and grabs a bag.  This person puts some papers in the bag and sets it down.;A person coming down the stairs with a book in hand, gets to the bottom of the stairs, picks up a bag and puts the book into it.\",c028 16.60 23.80;c028 8.60 17.50;c021 4.40 11.50;c024 14.20 26.00;c026 1.20 22.40;c020 11.40 28.80;c023 9.90 15.50;c150 0.90 14.20;c115 0.90 21.80;c116 16.90 22.50,27.92\r\nDR7K0,ZDKC,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is seen smiling and holding a broom.  They are  dressing themselves in a wardrobe closet.,broom;closet;clothes;jacket,\"A person is holding a broom and laughing, they then begin to dress themselves.;A person is standing by a closet holding a broom they put the broom down and pick up a jacket and put it on.;A person looks at something in the distance while holding a broom. The person sets the broom aside and puts on a black hoodie.\",c098 0.00 20.10;c099 13.90 20.70;c148 17.30 32.00;c148 17.30 24.10;c149 0.00 19.00;c002 17.20 22.70;c152 0.00 9.40,31.33\r\nHGXRQ,AT5D,Living room,7,7,Yes,A person is holding their homework.  Another person is working on straightening a picture on the wall.,book;homework;paper;picture;wall,They are in room and one is writing something on a note book and other one is fixing the frame of their God.;A person is fidgeting with a picture hanging on the wall while a second person is standing in the room and writing something in a notebook.,c115 0.00 32.00;c086 3.40 17.40;c088 3.60 32.00;c032 0.00 32.00;c083 2.00 7.60;c145 0.00 32.00;c026 0.00 32.00,31.04\r\n28BVI,ZDKC,Kitchen,1,6,Yes,A person is undressing in their kitchen while holding a glass of water. They eat a plate of food and tidy their kitchen.,clothes;dish;food;glass;jacket;red cup;table,\"The person set a glass on the kitchen counter and undressed. They then took the glass to the table and took a bite of food and drank from the glass. The person began tidying the kitchen table.;A person standing in a kitchen takes off a sweatshirt, picks up a glass, eats some food, takes a drink, puts down the glass, and straightens up a table.;There is a person who puts something in the sink and then takes their shirt off.  That same person then eats something, drinks out of a glass and shuts the box.\",c106 25.00 34.40;c119 11.40 23.00;c156 19.00 34.20;c155 2.80 15.40;c001 3.60 10.60;c118 0.00 6.30;c107 36.70 43.10;c063 16.80 27.70;c109 36.20 42.40;c012 35.60 44.00;c062 31.10 41.10;c107 11.80 29.90;c061 16.60 29.00;c109 11.00 34.60,43.04\r\nTJJKK,ENHU,Bedroom,3,7,Yes,A person is grasping a camera and eating on the bed.,bed;food;phone;picture;sandwich,A person is on a bed taking pictures of themselves with a phone and then takes a bite of something.;A person is sitting on a bed playing with a phone then the person eats something from off the bed.;Person sitting on a bed with a cell phone then take a picture of the room.,c135 0.00 2.90;c156 4.60 9.30;c015 0.00 4.10;c087 0.30 4.70;c061 2.90 10.00;c152 0.00 5.50;c016 0.00 10.00;c065 4.10 9.80;c067 2.50 10.00;c069 2.40 8.00;c068 6.10 10.00,9.25\r\nD6J8Q,ZG5N,Living room,2,7,Yes,\"A person is in a living room tidying up by the television, they then grasp a pillow and walk out the room.\",floor;pillow;shelf;television,\"Person is in front of a TV, They pick up something off the floor, they straighten some objects near the tv, they bend down again, grab a pillow and walk away;The person cleaned the area around the television. The person picked up clutter and straightened up the television. The person grabbed a pillow and walked away.\",c076 14.40 23.00;c079 13.90 23.40;c127 7.20 16.10;c082 1.20 17.90;c154 12.30 17.10,27.79\r\nBAZWG,4UGC,Dining room,7,7,Yes,\"A person is grasping a vacuum, desperately trying to clean under the table. There is food there that they cannot reach, so they give up and walk away.\",floor;table;vacuum,\"A person sweeping under a table with a sweeper .The person proceeds to lay the sweeper down and walks always from the rooms .;A person is vacuuming the dining room, under the table.;A person is using a small vacuum to clean the floor in the dining room. The person appears to quit vacuuming and walks away.\",c137 3.00 28.30;c127 1.70 22.70,30.58\r\nS06H3,ARRB,Garage,7,7,Yes,A person puts some food on a shelf then grasps their phone before leaving.,doorway;food;phone/camera;shelf,A person puts something on the shelf of the garage and then leaves;A person walks around a garage before grabbing a phone and leaving through a open door.,c081 7.40 13.70;c015 12.30 23.00;c062 0.00 12.90;c019 12.30 23.00;c097 16.50 23.00,21.92\r\nJXTAD,P2J3,Hallway,6,6,Yes,A person is washing the wall.  Then a person is holding a blanket and turning off the light.,blanket;light;towel;wall,\"A person started putting water on their walls with a towel, they then walked over to a door.;Person in a room painting a wall pull out of a blanket go over and turn on the light.\",c070 17.80 34.00;c105 23.80 34.00;c033 0.00 20.30;c073 18.00 23.10,32.96\r\n15RTV,M7K8,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is putting a pillow away in a walk in closet. The person is also talking on the phone while eating a cookie.,closet/cabinet;door;food;phone;pillow,A person is talking on the phone and putting a pillow in the closet while eating;A girl talks on her phone while picking up a pillow and putting it into the closet. She continues to stand in the doorway and talk on her cell phone.,c077 3.10 13.20;c019 0.00 33.20;c156 12.10 20.10;c141 4.40 11.00;c079 1.40 7.60;c113 4.30 11.30;c008 4.10 11.80;c006 9.90 15.40;c076 1.10 12.80;c015 0.00 35.00;c061 11.90 35.00,33.83\r\nSW8VM,ZDKC,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A smiling person is grasping a pillow and shoes in a entryway.,blanket;pillow;shoe,The person is moving some shoes around in his hand. They are moving the shoes up and down;The person is holding shoes and a pillow folded in half and waves the shoes back and forth.;A man is standing and holding a blanket and a pair of shoes. He stands with the shoes and moves from place to place on the floor.,c053 0.00 31.00;c076 0.00 31.00;c152 0.00 9.50;c149 11.30 31.00;c070 0.00 31.00,30.38\r\nY80PJ,GFWE,Kitchen,6,7,Yes,\"A person is opening the refrigerator. A person reaches for a glass on a shelf, sneezing as the person does so.\",cup;door;food;glass;refrigerator;shelf,\"A person takes a drink out but doesn't drink out.;The person walked to the refrigerator  opened the door,get something out holding to the thing adjusted eye glasses.\",c142 2.90 8.40;c143 0.00 5.70;c107 2.10 31.00;c063 0.70 10.70;c061 2.40 31.00;c152 16.20 31.00;c006 3.50 8.40;c110 1.70 6.70;c008 0.00 5.80,30.46\r\n2TAT3,ZDKC,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person laughs as they walk into a closet, drinking from a glass of water. The person picks up a book, checks it, and throws it aside.\",book;cup;doorway,\"A person walks down a hallway, stands in front of a closet while drinking, grabs a book off the floor, and slams in onto the ground in frustration.;A person walks down a hallway holding a cup, stops in front of a closet, takes a drink, takes something out of the closet throws it to the ground and then takes another drink.\",c026 17.30 25.40;c028 21.30 26.90;c106 7.70 16.30;c029 17.30 24.70;c030 14.90 21.50;c031 21.40 26.60;c097 0.30 6.40;c032 17.30 25.30;c107 0.00 31.00;c117 14.90 21.50,30.33\r\nXVI3M,JTAS,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is sitting in a chair, playing with their laptop. The person stands, smiles, and leaves.\",bed;blanket;laptop;pillow;sofa,\"A person sits on a sofa next to a pillow working on a laptop. They put the laptop on the pillow, stand up and walk away.;A person stares at their laptop screen while sitting on a couch. The person puts the laptop down and stands up;A person sits on a couch looking at their laptop. The person puts the laptop down and stands up, walking away.\",c047 0.00 21.00;c052 0.00 19.20;c154 17.60 24.90;c123 0.00 23.20;c071 17.60 22.40;c051 0.00 21.30;c152 20.50 26.40;c135 0.00 22.70;c049 14.80 20.90;c149 20.20 26.10,25.62\r\nDSI0N,I48P,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,The person is closing the door after leaving the entryway to bring in groceries while talking on the phone.,bag;door;groceries;phone;shoe,A person enters a house holding bags in one hand and a phone in the other they wipe their feet and stand there talking on their phone.;A person walks in the door on the phone with bags in their hand and they wipe off their shoes.;A person walks in the door with shopping bags while talking on the phone.,c006 3.40 10.70;c019 7.20 11.90;c020 0.00 34.00;c130 0.20 34.00;c152 19.80 26.40;c057 12.60 21.60;c008 0.00 7.00;c015 2.50 34.00;c097 1.00 7.70;c141 1.20 7.00,33.42\r\nQLEN3,4TV7,Bathroom,5,7,Yes,One person is tidying up and fixing their hair in front of a mirror when another walks in to get a bottle of medicine.,closet/cabinet;dishes;glass;hair;medicine;mirror,\"A person is looking in the mirror, start combing her hair with her finger, another person walks in, open the closet, takes some pills, and walk back, the first person is still adjusting her hair.;A girl is standing in front of a mirror and fixing her hair. A man enters and begins to go through the cabinets looking for something.\",c129 17.10 24.80;c144 0.00 36.00;c096 0.00 36.00;c107 15.90 29.60;c112 25.00 30.30;c128 15.70 29.00;c110 15.70 21.10;c113 14.00 19.00;c109 23.50 28.90,35.08\r\nBRQBD,I48P,Bedroom,4,4,Yes,\"A person awakens in a bedroom, notices a box on the bed next to them. They remove a picture from the box and hold it up to the light.\",bed;box;picture;table,\"A person wakes up in bed, pulls a picture off of the bedside table , and stares at it intensely while holding it upwards.;A person stretches in bed and gets up. The person looks through a box and takes a picture frame out, examining it. The person puts the picture away.\",c134 0.00 4.10;c084 10.30 33.70;c146 0.10 8.40;c086 27.20 33.70;c044 10.60 15.80;c135 6.90 30.90;c088 11.60 31.00;c009 28.00 34.00;c133 0.10 9.70;c083 8.30 15.10,32.75\r\nH5RBY,CO87,Dining room,7,7,Yes,A person is drinking coffee and eating food. They finish eating and begin tidying the area around them and then take some medicine.,coffee;food;medicine,\"A woman sits at a dining room table eating a meal, the individual then stands up and stacks a few of the eating utensils.;A person sitting at the kitchen table eating food and then standing up to take a drink from a glass.\",,36.25\r\nDU416,AT5D,Entryway (A hall that is generally located at the entrance of a house),7,5,Yes,A person is laughing while turning the doorknob. Another person is walking away while holding a bag.,bag;door,\"A person stands by a cabinet, trying to open it.  Another person walks past into another room where another person sits.;A person is standing and fixing or cleaning a door knob. Another person walks past him and sits on the edge of the tub reading a newspaper in the bathroom.\",c141 0.00 9.90;c020 7.90 18.00;c007 0.00 32.00;c140 0.00 32.00;c097 14.00 20.00,30.58\r\nX9LP4,GFWE,Closet / Walk-in closet / Spear closet,6,6,Yes,\"One person tidies up with a vacuum, then sits in a chair with a book from a bag hung on the doorknob.\",bag;book;chair;doorknob;vacuum,A person is cleaning with a vacuum. A person then sits down in a chair and reads a book.;A person takes a mini vacuum and puts it in a closet. The person then sits down and pulls out a book and begins to look through it.,c026 13.90 32.00;c030 12.50 19.50;c021 10.70 16.50;c059 8.50 30.70;c027 16.20 24.10;c032 16.70 30.70;c137 0.00 13.30;c138 0.00 3.10;c025 26.70 31.70;c154 27.50 32.00;c151 10.10 15.40,30.88\r\n1W6YY,V044,Bedroom,6,6,Yes,One person smiles and laughs while dressing in front of a cabinet with a picture on top.,cabinet;closet;clothes;doorknob;man;wardrobe,\"A man grabbing a clothes and getting dressed.;A person chooses a blue and orange striped shirt and black jacket, then gets dressed and walks away.;A person walks up to a cabinet, opens the door, takes out a shirt, puts the shirt on, puts on a jacket, closes the cabinet door and walks away.\",c148 3.50 29.10;c113 0.80 6.60;c002 2.30 7.30;c141 0.50 5.20;c152 0.00 30.00;c000 3.50 9.80;c112 3.50 7.90,29.42\r\nLR0L8,M7K8,Living room,3,5,Yes,\"While lying on the sofa with an old battered pillow, the person picked up the remote and smiled as he turned on the person's favorite sitcom.  The show, no matter how many times the person had seen it always made the person laugh as the person let out a hearty chuckle to one of running jokes on the show.\",phone/camera;pillow;remote;sofa;television;tv,A person sits on the couch and watches TV. A person holds a pillow on their lap.;A person walks over and turns on television go to the sofa and sit down turn the television with remote get up and walk over to the television;A person walks over to a sofa and sits on it. The person puts a pillow on their lap and picks up the television remote and appears to change channels. Lastly the person walks over to the camera.,c122 1.20 10.30;c152 29.30 37.40;c151 0.40 8.30;c132 7.90 37.80;c076 3.50 37.20;c149 29.50 35.30;c154 32.10 38.60;c131 29.70 35.10;c017 0.00 2.60;c078 2.00 38.40;c123 2.00 38.00,40.33\r\nL8RW8,AT5D,Bathroom,4,3,Yes,\"A person undresses and takes of their shoes, then takes off their glasses and washes their face.\",clothes;glass;hands;mirror;shirt;shoe;sink;water,\"The person is undressing in front of a sink. The person begins by removing their shoes, unbuttoning their shirt, and proceeded to turn on the faucet at the sink and wash their face.;A person is in the bathroom they take off their shoes unbutton their shirt and start washing their face at the sink.;A person unties their shoes and takes them off, then unbuttons their shirt. The person takes their glasses off and washes their face from some sink water.\",c154 0.00 3.80;c057 1.60 9.40;c054 0.00 2.80;c155 0.00 3.50;c139 18.70 31.00,30.25\r\nGJC1G,JQ7D,Hallway,6,7,Yes,\"A person walks down the hallway, undressing. The person picks up a bag of groceries and drinks from a glass of water.\",bag;food;groceries;jacket;water,A person is taking off a jacket. A person then looks through a bag with groceries.;Person comes into a hallway takes off a jacket put it on the doorknob looking in a bag.;A person hangs up their coat on the door and goes through some items in a bag before drinking a glass of water.,,28.54\r\nHXUAH,GE1M,Stairs,6,7,Yes,A person puts a pair of shoes in a plastic bag while standing at the top of their steps.,bag;floor;shoe,The person walked down the stairs holding a bag. The person sat on a stair and placed some shoes in the bag. The person walked back up the stairs.;A person walks down the stairs with a bag in their hand. The person puts some shoes inside the bag and then walks back up the stairs.,c020 0.00 25.00;c053 6.90 14.90;c154 14.90 20.10;c151 4.30 9.50;c021 5.50 11.20;c125 3.80 19.20;c054 6.90 25.00;c127 4.90 16.00;c056 5.10 10.20,23.62\r\nEZRQW,4TV7,Hallway,6,6,Yes,\"A person stands in the hallway with a camera and a picture, while another person is playing at running back and forth.\",camera;doorway;phone;picture;vacuum,This person is holding camera while another person moves walks towards the camera in the hallway..;The person is staring at a phone while another person enters the room. The other person walks up and crouches down a little and looks at the person with the phone a few times.;A person stands at the end of a hallway looking at a phone and another person walks down the hall and back while dipping.,c150 11.70 22.10;c015 0.00 29.00;c087 9.20 21.90;c150 5.10 15.50;c087 3.10 10.20;c088 0.00 29.00;c097 5.40 11.70,28.42\r\nM98YV,4TV7,Hallway,6,6,Yes,\"A person is talking on the phone while walking through a hallway. In the persons left hand is the phone they are using to talk, while in their right they are holding a sandwich. The person smiles thinking about the delicious sandwich they are about to eat.\",doorway;food;hand;phone;sandwich,Person walking through the hallway with food in hand and a cell phone at the ear talking.;A person walks through a hallway calling someone on the phone. The person continues to talk in the hallway.,c019 0.00 31.00;c065 5.10 11.60;c156 5.40 10.90;c061 0.00 31.00;c015 0.00 31.00;c067 0.00 31.00;c061 28.10 31.00;c015 28.10 31.00;c097 28.10 31.00;c067 28.10 31.00;c152 27.90 31.00,30.00\r\nLR9KL,4TV7,Hallway,6,6,Yes,A person runs laughing through the hall with a pillow and blanket while another person uses a vacuum.,blanket;clothes;floor;hand;phone;sandwich;vacuum,\"A person turns on a vacuums and begins cleaning when another person holding clothes runs past the first person, jumps in the air then runs back. The first person continues to vacuum then eventually turns off the machine.;A person turn on the vacuum in a hallway. Another person runs through the hallway, takes an article of clothing and runs back.;A person is vacuuming a hallway before someone else runs to them and then runs back.\",c137 0.00 20.90;c150 13.70 31.00;c127 0.00 19.70;c070 9.30 19.70;c149 12.20 20.10;c000 9.00 20.00;c002 9.10 19.50,30.42\r\nLIQS5,BONA,Bathroom,6,7,Yes,\"A person in the bathroom is smiling while holding a camera to take a picture of themselves.  They are standing up and in the picture, a glass of coffee is visible.\",camera;phone;picture,This person took multiple pictures of them-self in their bathroom.;A person is standing in the bathroom. The person is also playing with a camera and taking pictures of themselves.,c087 0.00 33.00;c015 0.00 33.00;c152 17.20 33.00;c016 0.00 33.00;c016 30.00 33.00,32.00\r\n7IPW7,JTAS,Hallway,7,6,Yes,\"A person walks through the doorway, holding a cup of coffee.\",coffee;cup;dish;doorway;glass,A person holds a mug and walks through the doorway into a room. The person holds the mug in the doorway.;A person walks up and stands in the doorway of a bedroom and takes several sips of something from a coffee mug.,c106 2.60 11.40;c107 0.00 29.00;c118 0.00 29.00;c097 0.00 6.30,28.42\r\nUBCH6,ENHU,Kitchen,6,6,Yes,A person is drinking a glass of water in a kitchen. They are also holding a book.,book;cup;glass;water,Person standing up holding something pick up bottle of water and drank out of the bottle water.;A person looks at a magazine in the kitchen while taking a sip of some kind of drink.,c026 0.00 11.00;c032 0.00 11.00;c106 0.00 8.00;c107 0.00 9.40;c115 0.00 11.00,9.88\r\nBI4KK,ZDKC,Living room,4,7,Yes,\"A person is holding some clothes, while drinking from a glass of water and sitting on their living room sofa.\",bag;blanket;clothes;cup;sofa;water,A person sits on a couch while drinking a beverage and tapping their feet as if they were listening to music or just impatient.;Person sitting on the sofa with clothes in hand drinking a bottle of water,c000 0.00 32.00;c123 0.00 32.00;c106 0.90 8.40;c106 27.20 32.00;c070 0.00 32.00;c020 0.00 32.00;c107 0.00 32.00,30.54\r\nL0QNM,ZDKC,Bedroom,5,7,Yes,A person is standing in the bedroom while watching television.  Afterwards the person walks over to the mirror and starts undressing.,clothes;doorway;jacket;mirror;television,The person is watching television then walks to the bathroom and takes off a jacket.;A person is staring at a tv. The person walks away from the tv and enters a bathroom. the person takes off a sweater in front of the mirror.;A person stares intensely at a TV screen and then walks off into another room to look into a mirror while taking off a jacket.,c003 27.40 31.00;c155 17.50 28.50;c132 0.00 12.20;c002 17.10 29.60;c096 12.30 24.60;c000 23.20 31.00;c097 10.70 16.30,30.42\r\n9OCQT,ENHU,Closet / Walk-in closet / Spear closet,6,7,Yes,A person leaves a box full of clothes on the floor then drinks a cup of water in front of a mirror.,box;clothes;doorway;floor;glass;mirror;water,\"A person holds a box in front of a mirror, puts the box down, and then drinks some water in front of the same mirror.;A person carrying a box walked into a room,put  the box down on the floor pick up a bottle of water from the canter drinking the water and walked out of the room.\",c126 0.00 7.50;c106 4.60 11.30;c000 0.00 3.00;c096 6.40 12.60;c040 0.00 3.60;c042 1.50 7.50;c097 0.30 5.10;c107 5.50 13.00;c110 5.40 10.10,12.29\r\nLLTBQ,CP6Y,Hallway,1,7,No,\"A person opens the bedroom door, holding a towel. The person stands in the doorway for a moment, then takes out their phone.\",clothes;door;phone;towel,A person opens a door with a towel on one shoulder.  This person starts to look at their phone.;A person opens a door and stands in the doorway with a towel on their shoulder while checking their phone.,c016 12.60 22.00;c008 0.30 6.70;c033 6.70 13.20;c152 17.60 22.00;c000 1.30 22.00;c097 3.20 8.90;c015 9.60 22.00,20.54\r\nG2DIN,GFWE,Closet / Walk-in closet / Spear closet,7,7,Yes,A person walks into the closet and puts a box of medicine on the shelf.  The person opens the wardrobe and takes some clothes out.,box;closet;clothes;door;shelf;wardrobe,\"A person wearing a blue sweatshirt carries a pink box into a closet, sets it inside, and grabs two shirts before leaving the closet.;A person opens the closet door and puts a box on the closet shelf and takes a shirt from the close and walks out of view with the shirt.\",c040 1.50 9.50;c081 6.60 15.50;c000 20.10 28.50;c113 11.50 18.80;c042 6.30 13.90;c008 17.70 33.00;c002 23.10 33.00;c008 29.80 33.00;c002 29.80 33.00,31.75\r\nNKLTK,SW82,Home Office / Study (A room in a house used for work),7,7,No,A person awakens in a chair. The person runs over to the window and begins watching something outside.,chair;window,\"A person wakes up sitting in a chair and a cat is at their feet. They rub their face and run to a window.;A person is sitting in an office chair and appears to be asleep, and the person suddenly wakes up and runs over to a window and peers out the window.\",c092 20.30 31.00;c059 0.00 21.20;c146 7.40 19.70;c150 15.40 26.20;c154 10.40 23.30,30.21\r\n2FPB3,RLWG,Bedroom,6,6,Yes,\"A person is sneezing into a book, and then playing with a camera in a hallway.\",bag;book;camera;phone,\"A person stands looking at a book, and then sneezes three times.  Then they get their phone out and look at it.;A person holds an orange book, sneezes multiple times and then put the book down. The person takes a camera and looks at it.\",c015 13.10 33.00;c026 0.00 13.30;c028 8.00 15.80;c153 3.20 10.80;c016 15.00 33.00;c020 11.30 33.00,32.38\r\nFC2SK,CP6Y,Home Office / Study (A room in a house used for work),7,7,Yes,\"One person takes groceries through the doorway, while another awakens wrapped in a blanket and starts to work.\",bag;bed;blanket;chair;desk;door;groceries;homework;paper;sofa;table,\"Person #1 walked in through the door carrying a bag. They walked through the room. Person #2 awoke from under some blankets and sat at a desk to work on some papers.;A person is lying on the bed, another person opens the door and come inside the room carrying some parcel in a beg, the first person wakes up, remove his blanket and gets up from the bed and start walking towards the table, he sit on the chair and start shuffling the papers and read them, the first person walk with the beg to another room.;A person is laying on a couch covered with blankets as another person carrying a bag enters from outside. The person gets off the couch and sits at a desk as the other person walks out of the room\",c097 4.00 12.70;c146 5.80 12.90;c154 8.90 14.60;c145 13.60 28.00;c011 17.50 28.00;c151 16.70 22.10;c122 0.00 10.70;c020 5.10 18.60;c008 3.80 10.90;c130 6.50 18.80;c117 13.00 17.60;c115 13.30 28.00;c116 12.50 28.00;c123 0.00 13.50;c072 0.00 11.90;c006 7.80 13.80;c071 7.50 13.00;c012 14.80 20.50;c014 12.40 28.00;c134 0.00 13.00;c059 17.50 28.00;c141 5.10 10.70;c133 6.60 13.00,26.79\r\nQ5MDU,ENHU,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person walks into a walk in closet, turns on a light, takes a pillow off a shelf and throws it into the bedroom and then leaves the closet.\",cabinet;doorway;floor;light;pillow,\"a person walks into a room and throws a pillow off a cabinet after turning on a light;A person walks in, grabs a pillow to throw and then walks out.;A person walks into a room, turns the light on, takes a towel and throws it, then leaves and turns the light off.\",c097 0.00 10.00;c126 2.40 7.90;c080 2.40 7.90;c104 0.00 3.60;c105 6.20 10.00,9.25\r\nOSK3Y,AT5D,Kitchen,6,6,Yes,\"One person is standing at the counter preparing food. Another person is sitting at a table, snuggling in a blanket and sneezing.\",blanket;food;stove,\"Two people are standing, one is cooking and the other is on a blanket.;Person with blanket over the head while sneezing another person cooking on the stove.;People are in kitcjen, one of them is cooking, while other one is wearing a blanket and sneezing.\",c070 0.00 32.00;c072 0.00 32.00;c147 0.00 32.00;c153 7.70 15.60,31.17\r\nRJD1Z,CO87,Laundry room,6,6,Yes,A person is grasping a light to turn it on and then dressing in clothes right out of the dryer.,clothes;dryer;light;robe;sweater,\"A person turns on a lamp and opens the dryer. They remove a sweater and a robe and put them on.;A person turns on a lamp, and then gets a jacket out of the dryer.  This person puts it on, and gets another jacket out and puts it on.;A person turns on a lamp on a dryer. The person opens the dryer and takes out some clothes and puts them on.\",c104 0.00 11.20;c148 11.50 36.00;c002 7.60 34.00;c005 5.40 36.00;c154 0.00 36.00;c000 8.80 31.20;c000 9.50 18.10,35.38\r\nTCI7K,B6UG,Stairs,5,7,No,A person is watching someone put a camera on the table who then sits down and plays on their phone.,camera;floor;phone;stairs;table,A person walks down a flight of stairs holding a camera. The person sets the camera down onto a table. The person sits on the stairs and begins using a cellphone.;Person coming down the stairs step by step and put a item on the table then sit down on the steps.,c009 3.60 10.30;c015 0.00 9.10;c016 9.40 32.00;c151 6.90 13.30;c125 8.20 32.00;c017 3.90 9.40;c018 5.10 10.30,30.79\r\nON2Z4,CO87,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person opens the door to the closet and grabs a blanket and a book, they start smiling thinking about what they are going to read.\",blanket;book;closet/cabinet;door;light,A person walks over to the closet and opens it  they trun the light on and then they take out a blanket and a book and walk away;A person walks over to a closet opens the door turns the light on and takes a blanket and book out and walks away.,c026 16.60 22.20;c030 22.10 28.00;c070 11.10 28.00;c152 19.00 27.50;c027 18.60 23.40;c029 19.30 28.00;c032 18.00 28.00;c073 8.40 16.30;c008 1.00 8.30;c025 18.40 23.70;c113 1.60 7.80;c104 6.90 12.00;c141 1.00 6.20,26.92\r\n9KDP0,JQ7D,Laundry room,7,6,Yes,\"A person runs into the laundry room, carrying a book and a laptop. The person sets the items down and leaves.\",book;doorway;laptop,\"A person holding a book and a laptop jogs down a hallway into a laundry room, puts down the laptop, opens and looks at the book, places the book down, picks up the laptop and leaves the room;A person rushes to a laundry room with some books.  Then the person gets on a laptop and then leaves.\",c026 3.10 19.00;c032 4.50 18.30;c047 18.60 29.20;c150 0.00 7.00;c025 7.80 12.60;c027 5.80 11.20;c046 24.00 29.20;c048 17.10 22.70;c030 0.00 19.40;c050 0.00 3.20;c028 10.60 20.20;c097 1.70 7.40;c049 22.90 31.00,31.08\r\n8T2MI,ENHU,Closet / Walk-in closet / Spear closet,6,7,Yes,\"One person plays with a camera, then works on a wardrobe that doesn't seem to want to open.\",cabinet;camera;drawer;dresser;object(? cigarettes?),\"The person picks up an object, looks at it, puts it on top of the dresser, then attempts to open a dresser drawer.;A man is playing with the items on a dresser, which he picks up and then puts down without apparent aim.;Person standing near dresser sets object down on top of dresser. Then kneels down, grabs handles, and proceeds to pull on drawer.\",,11.79\r\nPSAVM,4UGC,Bathroom,6,5,Yes,A person is throwing a blanket in the hamper.  The person is then sneezing in front of the sink.,blanket;clothes;hands;laundry basket;sink;towel;water,\"Person in the bathroom to rinse rinse hand and then takes a blanket from shoulder to throw in the laundry before returning toward the sink to sneeze.;A person washes their hands in the sink.  This person takes some towels and throws them into a basket, and then sneezes.;A person is washing his hands, they take a blanket and throw it in the Laundry basket, and atart sneezing\",c071 8.20 18.00;c153 19.10 28.30;c036 12.60 18.30;c003 10.30 18.10;c074 10.10 19.20;c139 0.00 6.60;c070 3.80 16.20;c075 4.60 16.20,29.83\r\nMBAA5,JQ7D,Hallway,6,6,Yes,A person is smiling while closing a closet door in the hallway after putting a box inside the closet,book;box;closet;door;game;shelf,\"A person puts a game onto a shelf in the closet. They close the closet and walk away.;A person looks at a box then opens a closet door, puts it on a shelf, closes the door and walks away.;A person is standing and holding a box. The person opens a closet and door and places the box in the closet. The person shuts the door and walks away.\",c040 0.00 16.40;c042 2.60 16.90;c113 2.70 13.00;c006 12.00 23.80;c008 2.70 12.40;c081 7.60 17.50;c097 20.40 27.00;c028 3.40 23.40;c152 14.90 24.20;c141 3.50 10.30;c112 15.80 22.60,25.58\r\n2PZBY,SW82,Pantry,6,7,Yes,\"A person walks into the pantry, sits down, and begins looking through the cabinet. The person takes something from the shelf.\",cabinet;door;floor;food;shelf,\"A person walks to a pantry and opens the door. The person sits on the floor and looks around in the pantry before taking a can off a shelf.;A person walks up to a cabinet and opens the door.  That same person sits on the floor and takes a can off a shelf.;A person approaches a pantry and opens the door, and then the person sits down on the floor and reaches into the pantry and pulls out a can and holds it.\",c151 7.40 15.80;c008 0.10 12.10;c125 9.00 31.00;c063 19.90 31.00;c097 0.00 5.30;c113 1.60 7.90;c141 1.20 6.80;c114 10.40 17.40;c061 24.80 31.00,30.17\r\nYOCRB,4UGC,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person smiles as they run a vacuum through the entryway.  They then sit down in a chair, grab a cup of coffee and take a sip.\",chair;coffee;cup;dish;floor;food;shelf;vacuum,The person is using a small vacuum device to clean a wooden floor.  The person sits down and drinks some coffee after finishing.;A person wearing a plaid shirt uses a small vacuum to clean a hardwood floor before grabbing a coffee mug and sitting in a chair.;The person vacuumed the floor near the door. The person set the vacuum down and grabbed a cup on the chair. The person sat down and drank.,c137 0.00 16.70;c059 26.40 36.00;c106 30.10 36.00;c107 22.10 36.00;c151 27.30 33.50;c127 0.00 16.70;c156 22.40 36.00;c081 13.90 23.30;c110 20.70 26.30;c120 20.50 26.60,34.62\r\nTDAY1,BONA,Bedroom,6,6,Yes,A person in their home office is watching a video on their laptop. They start standing up while picking up a broom that is lying near the bed.,bed;broom;laptop,\"A person is laying down on a table or horizontal platform resting on top of a pillow. The person is holding a laptop and using the laptop. The person sets the laptop down and then stand up from the laying position. The person grabs a broom and begins to start sweeping the floor.;A person lies back, working on a laptop, then stands up and grabs a broom.\",c098 28.60 35.00;c047 0.00 32.00;c051 0.00 30.50;c134 0.00 30.20;c154 23.40 35.00;c100 27.90 33.40;c049 24.40 30.00;c052 0.00 16.60,34.29\r\n21WN7,P2J3,Living room,5,6,Yes,\"A person is sitting on the couch eating food.  The person throws food on the floor, then walks to the corner to get a broom to sweep it up.\",bowl;broom;chair;dish;floor;food;mirror;sofa;table,\"A person is sitting in a chair while eating food. The  person stands up and puts the food on a table. The person gets a broom and begins to sweep the floor.;A person sitting in a chair eating something, The person drops something on the floor and then gets up, put the plate on a table and grabs a broom to clean the food up.\",c123 0.00 18.20;c100 19.60 26.10;c127 22.60 36.00;c096 0.00 3.90;c118 0.00 21.20;c062 15.40 32.10;c154 14.20 19.10;c119 15.10 20.80;c098 20.20 36.00;c009 15.20 21.50;c061 0.00 21.50;c102 22.00 36.00;c059 0.00 18.00;c156 2.00 16.00,34.88\r\nVZE8E,ENHU,Closet / Walk-in closet / Spear closet,6,5,Yes,A person awakens and takes their head off a pillow before opening the closet door and getting dressed.,closet;clothes;door;floor;pillow;wardrobe,\"Person lying on the floor then get up close and open the door walk back in then put on a jacket.;A man in a room lying on the floor gets up , throws his pillow and then closes and opens up a door. Then puts a red jacket on.\",c006 7.90 15.50;c076 3.40 8.40;c080 3.50 8.70;c148 18.80 27.00;c002 15.60 21.20;c008 11.60 18.50;c077 3.10 8.50;c113 12.10 18.00;c154 5.60 10.80;c001 23.60 27.00;c124 0.00 4.30;c141 9.90 16.40;c146 0.00 3.80;c078 0.00 3.40;c112 9.00 15.10;c097 7.60 12.50;c079 3.10 8.50,25.54\r\nVHD24,V044,Bedroom,6,6,Yes,A person is seen sitting on their bed dressing themselves. They begin pouring themselves some medicine from a bottle.,bed;clothes;cup/glass/bottle;food;medicine;shirt,\"person sitting on the bed, wore a shirt and took a medicine bottle , opened it, had some medicine;a person is putting on a shirt and then proceeds to fill a cap with mouthwash and drink it.;A person puts on a shirt before grabbing some medicine from the dresser and takes a shot of it.\",c135 0.00 30.00;c148 0.00 16.60;c128 13.90 19.40;c129 21.10 28.00;c061 13.20 30.00;c107 12.90 30.00;c107 13.50 17.80;c106 22.60 26.90;c108 18.20 23.40;c110 13.20 17.50,29.42\r\n4TX4N,P2J3,Bedroom,4,7,Yes,A person is awakening in the bed.  Another person is snuggling on a sofa eating a sandwich and looking at their phone.,bed;blanket;chair;couch;floor;food;phone;pillow;sandwich;sofa,\"a person sitting down with a blanket, playing on their phone and eating a sandwich, another person laying on the floor then sits up.;A person sits on a chair and rocks back and forth while eating.  Another person is lying down, and then gets up.;A person is sitting in a chair eating a sandwich and watching TV.  Then the person sitting next to him awake.\",c065 0.00 6.80;c015 0.00 34.00;c122 0.00 34.00;c156 0.00 6.80;c070 0.00 34.00;c067 0.00 34.00;c016 3.10 34.00;c059 0.00 34.00;c134 0.00 18.40;c146 14.40 28.20;c133 14.10 28.20;c072 0.00 34.00;c123 0.00 34.00,32.71\r\nYQT32,ENHU,Home Office / Study (A room in a house used for work),3,6,Yes,\"A person enters their home office with a camera.  The person begins to tidy up the desk for a few seconds, moving a couple dishes from the area, and then walks around the office with the camera, snapping several pictures.  The person then leaves the office with the camera.\",camera;desk;glass;mirror;phone;picture;table,a person messing with items on a desk and then taking pictures;A person walks into a room and starts rearranging things on a desk. The person then grabs a cellphone and starts taking pictures of their surroundings.;A person walks into a room.  The person then takes several pictures of different things in the room.,c015 17.20 27.70;c012 4.80 22.00;c087 17.80 27.20;c016 0.10 28.00;c096 3.30 9.90;c109 16.50 21.80;c009 4.30 8.70;c009 10.50 14.90,26.54\r\nU5T4M,ENHU,Kitchen,5,7,Yes,A person is standing in the kitchen fixing all the items inside the refrigerator.  The person grabs a sandwich out of the fridge and sits in a chair and eats it.,chair;food;groceries;milk;refrigerator;sandwich;shelf;table,\"Person opens refrigerator grabs milk then puts it back in, grabs sandwich walks to table sits down and starts eating it.;A person opened a refrigerator and grabbed an item of food. The person then closed the refrigerator door and walked over to a chair to sit down. The person then took a bite of the food.\",c059 12.40 21.00;c069 4.00 14.60;c156 11.70 21.00;c143 0.00 3.10;c067 8.00 21.00;c151 13.10 18.70;c142 8.90 14.10;c130 0.50 9.00;c062 0.50 9.00;c081 0.20 14.50;c009 12.30 21.00;c065 14.40 21.00;c063 7.00 12.90;c061 7.50 21.00;c011 13.40 21.00,19.58\r\n8SXHK,CP6Y,Bedroom,7,7,Yes,A person is sitting on the bed with a laptop on their lap.  The person opens the laptop and types briefly.  The person puts the laptop down and picks up a glass of water from the side table and drinks it while looking at a picture.,bed;cup;dish;glass;laptop;sofa/couch;water,\"A person sits typing on a laptop computer, then closes the computer, picks up a cup and drinks from it.;A person is sitting typing on a laptop; they put the laptop down, pick up a glass and drink from it.\",c135 0.00 31.00;c047 0.00 20.70;c052 0.00 20.10;c107 17.30 31.00;c106 19.60 30.30;c118 17.50 31.00;c110 17.30 23.60;c051 0.00 19.40;c049 13.80 19.80;c120 17.80 24.00;c123 0.00 31.00,29.67\r\nZNQVC,CP6Y,Bedroom,6,7,Yes,\"A person is tidying up the cabinet. Then, closing the door, the person begins to take their shoes off.\",bed;closet;clothes;door;shelf;shoe,\"The person put something in the closet and closed the doors. Then the person sat down and removed their shoes.;A person is standing at a closet, folding clothes and putting them away. The person closes the closet, sits on a bed, and takes off a pair of shoes.;A person folds their sweatshirt up and puts it away in a closet. The person then takes their shoes off and slides them away.\",c006 8.90 15.90;c151 0.00 18.60;c135 14.40 32.00;c057 14.60 30.30;c057 10.50 17.30;c056 24.40 32.00;c001 0.00 14.70;c004 0.00 12.50;c053 15.00 30.60;c054 17.40 31.40;c002 0.00 12.20;c000 0.00 12.50;c112 8.80 15.30;c082 0.00 12.60;c155 14.60 32.00;c081 1.40 12.50;c113 0.00 15.00;c141 8.90 15.80;c114 0.00 15.40,31.12\r\nJ59UP,BPXZ,Living room,6,6,Yes,\"A person goes from sitting to standing, walking over to the vacuum by the window and starts tidying.\",chair;floor;vacuum;window,A person sits in a chair.  This person gets up and starts vacuuming the carpet and a large pillow.;Person sitting in a chair gets up and start vacuuming the floor around a table.,c137 2.90 32.00;c060 0.00 5.90;c154 0.20 5.90;c059 0.00 5.60;c127 3.70 32.00,30.83\r\n3MV13,ZDKC,Kitchen,2,,Yes,\"In the kitchen, a person grasping a book starts laughing. Afterwards, the person starts walking to the doorway.\",book;door,A person plays with a book in the kitchen then walks into another room.;A person looks at a book in the kitchen then leaves the room.,c097 16.30 25.30;c026 0.00 22.80;c029 0.00 15.70;c141 15.80 22.60;c032 0.00 16.50;c115 0.00 26.00;c008 16.00 21.60,24.71\r\n68OG0,AT5D,Dining room,5,6,Yes,A person is sneezing while picking up clothes.  Then a person is holding a coffee cup but it is too hot to hold.,cup;dish;floor;food;mug;table;towel,\"The person is standing. Then they pick up a towel from the floor and sneeze into it. Next the person goes over to the table, picks up a mug and drinks from it.;A person picks up a towel off of the floor.  This person sneezes into it, then picks up a mug and drinks.;Person walking into a room go over to a table and drink a cup of coffee.\",c106 18.70 29.90;c153 9.30 16.60;c035 12.30 18.00;c009 12.30 18.00;c037 6.80 18.30;c061 18.40 31.00;c034 14.20 19.10;c110 15.40 19.70;c118 16.00 31.00;c127 6.00 13.40;c120 18.50 25.50,29.67\r\nOK45U,UO9Q,Garage,3,7,Yes,A person is undressing in the garage. The person throws their clothes onto the shelf.,clothes;jacket;shelf,A person walks into the garage and takes off their jacket. Then they turn around and walk back out.;A person walks into the garage and takes off the jacket and throws it on top of a bunch of boxes.,c000 15.00 22.30;c001 17.40 23.60;c155 9.00 19.70;c081 17.60 22.10;c003 17.20 22.90,33.46\r\nNL9AW,GFWE,Kitchen,3,7,Yes,\"A person is standing by the refrigerator and smiling as the person removes food from it. Then, sneezing, the person closes the fridge and leaves, holding their food.\",cup/glass/bottle;food;refrigerator,\"A person walks over to the fridge and opens and sneezes then they take something out and close the fridge and walk away.;A person comes into the room, opens the refrigerator, gets something out of it, sneezes and then walks away.\",c142 4.80 10.00;c143 0.00 6.20;c063 2.20 7.80;c061 6.50 13.20;c107 6.50 13.20,33.29\r\nB1AMA,EDYS,Living room,6,6,Yes,\"A person walks down the hall carrying a blanket and pillow. The person sets the items down, undresses, then dresses in pajamas.\",blanket;clothes;floor;pillow;something;towel,A person picks up some blankets off the ground and puts them down. The person then puts on some shorts and walks towards the camera;A person picks up some things off the ground and puts them on a nearby bed. The person folds some shorts and puts them on.,c074 14.50 19.80;c079 5.70 11.00;c071 9.40 20.40;c073 7.90 20.90;c004 14.50 20.70;c075 9.20 21.50;c033 7.70 19.60;c127 0.00 13.10;c002 18.80 25.00;c000 4.70 20.00;c148 21.00 35.70;c001 9.10 20.00;c034 13.70 20.20;c003 11.90 20.00;c004 17.50 29.50;c154 7.20 13.60;c035 5.50 11.20;c035 10.60 16.60,37.42\r\nY665P,GFWE,Living room,6,6,Yes,A person is tidying but takes a book off a shelf and sits down on the sofa.,book;shelf;sofa;table,A person leans over and looks through some shelves. The person picks up a book and sits down on a couch and beings to read. The person then gets up.;A woman stands and begins looking for something on a shelf. She finds her book and sits down on the couch to read the book.,c082 0.00 8.70;c027 15.70 23.20;c123 14.50 22.80;c154 27.70 32.70;c026 10.20 31.70;c032 17.20 30.80;c151 14.70 19.80;c030 9.00 14.50;c028 10.30 32.20;c009 4.30 9.30;c152 13.30 18.30;c025 25.50 31.00;c029 22.00 28.20,33.29\r\nVQOI3,CP6Y,Stairs,5,6,Yes,A person is tidying a bag while grasping a laptop.,bag;laptop;stairs,\"The person is sittng on a staircase  frantically dumping out a backpack and then starts to put stuff in it and then grabs a laptop and starts to put it in the backpack.;HE is sitting on a stair in a house, and opening a bag, cleaning it by putting upside down,and putting a laptop in it.\",c020 0.00 13.40;c021 0.00 3.60;c047 11.30 19.00;c050 11.50 17.20;c049 13.80 19.00,17.75\r\n15PMU,M7K8,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is undressing while looking out the window. Then, putting their pants on top of their desk, the person reaches to take a drink from their mug of coffee.\",clothes;coffee;cup;desk;dish;table;window,\"The person undressed while looking out of a window. The person folded the clothing and set it on a desk, then took a cup from the desk and began drinking.;A person removes a pair of sweatpants, folds them and lays them on a desk, then picks up a cup and drinks something from the cup.\",c009 15.80 21.20;c092 0.90 12.40;c106 21.40 32.00;c155 0.50 12.80;c001 15.50 21.20;c004 8.20 18.70;c110 17.90 24.30;c118 18.90 32.00;c148 0.20 11.00;c107 19.70 32.00,30.88\r\nYMD74,VOOS,Bedroom,7,7,Yes,\"A person is awakening, then dressing and putting on shoes, then laughing and kissing a picture in a bedroom.\",bed;blanket;clothes;mirror;picture;robe;shirt;shoe;slippers,\"Person awakening and getting out of bed, grabs a rob to put on, puts slippers on, and then goes over and kisses the picture of a baby.;The person is getting out of bed and putting her shirt and shoes on. The person looks as though they will walk out of the room next.;A person gets up from bed and puts on a white shirt, blows out a candle and walks toward the camera.\",c146 3.40 8.80;c133 3.40 8.80;c096 20.40 27.40;c055 16.00 23.20;c134 0.00 5.20;c072 0.00 3.80;c148 7.10 18.00;c074 0.30 6.30;c071 0.30 6.30;c088 19.70 28.30;c154 5.20 10.00;c152 25.20 32.00;c002 7.50 14.50,30.67\r\n6ZWSU,SW82,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person walks into their home feeling very exhausted. They immediately put their books down, sit down on the ground and take their shoes off. They pull out their phone, use it for a moment and smile.\",book;cat;door;floor;phone;shoe,\"A person walks into the room, closes the door and locks it. Then plays with their phone and cat.;A person walks into a room with some books and closes the door. The person locks it and then sits down. The person takes their phone and taps away on it.;A person walks inside a room with some books in hand, then puts the books down and sits on the floor. The person takes their phone out.\",c015 17.30 32.00;c016 19.10 32.00;c018 16.20 21.80;c151 8.30 14.90;c152 26.30 32.00;c006 0.00 4.50;c026 0.00 7.10;c028 1.40 7.20;c008 0.00 3.10;c057 10.60 19.30;c141 0.00 4.80;c125 9.60 32.00;c097 0.00 3.10;c054 11.60 19.80,30.58\r\nN0ODO,AT5D,Bathroom,6,7,Yes,\"A person is sitting on the toilet reading a book, A second person walks in while dressing and grabs some medicine, sees first person and runs out.\",door;medicine;toilet,\"A person is sitting in a bathroom on a toilet. Another person opens the bathroom door and starts to walk in before turning around and walking out while the first person closes the door.;A person is sitting on a toilet, and another person opens the door then leaves again.\",c128 10.10 18.60;c141 9.20 14.30;c097 9.70 18.10;c006 14.90 21.10;c008 9.20 16.80,30.71\r\nWBJC3,ENHU,Pantry,7,7,Yes,A person is drinking from a glass.  Then a person is standing looking at a box.,box;cup;food;glass,\"The person drinks from a glass, then sets the glass down on top of a bookcase. The person picks up an object from the second shelf and looks at it.;There is a person drinking out of a glass.  That same person then picks up a box of a shelf in a cabinet.\",c106 0.00 12.00;c109 1.80 7.70;c063 4.10 11.10;c061 4.50 15.00,14.46\r\nD6MZ4,CP6Y,Bedroom,7,7,Yes,A person is smiling at a television and then putting a glass on a bedside table in a bedroom.,bed;cup;glass;table;television,\"The person is lying down and drinking something and watching TV. They lean forward and then lean backward again into a pillow.;A person lies on a bed watching television, uses the remote control and takes a drink from a glass.\",c009 16.40 23.90;c132 0.00 24.00;c106 0.70 10.20;c107 0.00 21.60;c109 17.60 24.00;c134 0.00 11.80;c135 14.60 23.30,23.08\r\nRX7TC,4UGC,Dining room,5,7,Yes,A person is eating some food while working on a camera.,camera;chair;food;phone;table,\"A person sitting in a chair peeling a banana, taking a bite and then sitting it down to pick up a camera, then takes a bite of the banana again.;A person sits at a table and takes several bites of an unknown food item while examining a camera, then gets up to leave.\",c015 7.80 19.50;c156 0.00 11.50;c011 0.00 28.30;c009 6.80 11.70;c016 8.30 18.80;c063 0.00 6.40;c154 23.50 31.00;c061 0.00 11.20;c087 8.40 19.40;c062 7.10 12.00;c059 0.00 26.60,30.21\r\nBQOLV,CP6Y,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person undresses in their closet, putting their clothes on the floor. They put a sweatsuit and some running shoes before inspecting themselves in the mirror.\",chair;clothes;floor;mirror;shoe,The person takes off a jacket and puts it on the floor. They put on another jacket and some blue shoes. They then fix their clothing.;person is changing his jacket and now changing his shoes to sneakers.,c155 0.00 11.70;c151 17.70 23.20;c154 30.10 35.60;c053 17.30 31.90;c057 23.50 30.80;c001 0.20 11.70;c096 0.00 6.70;c055 20.30 33.40;c000 8.00 14.00;c059 17.50 34.50;c148 9.30 20.60;c002 8.20 13.10;c003 5.80 11.70,36.42\r\nKT2SV,ZDKC,Bedroom,4,7,Yes,A person awakens in their bedroom laying on a pillow. The person turns on the television and starts watching a show.,bed;blanket;pillow;television,\"A person is laying in bed. They get up to turn on the TV then get back in bed.;The person is laying on the bed, holding a pillow then quickly gets up and walks around the room.\",c132 25.60 41.00;c078 0.00 19.20;c146 15.00 25.30;c154 20.10 27.50;c072 0.00 24.30;c133 13.80 23.90;c151 34.30 38.50;c133 17.20 21.40;c076 0.00 24.30;c134 0.00 25.30,40.33\r\nLLT3E,I48P,Living room,4,7,Yes,The person sneezes while holding a sofa and then they walk through a doorway.,closet;door;sofa,\"A person is sneezing by a sofa, they then walk into a closet.;Person began to sneeze while standing in a room by the sofa then leave the room.;A person sneezes multiple times with a tv on in the background. The person then walks through a doorway to leave the room.\",c097 15.40 22.40;c153 0.00 14.80;c154 0.00 27.00,26.29\r\n43CCM,ZDKC,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is standing and undressing by the shelf beside the doorway.,clothes;coat;door;jacket,\"A person opens a door, walks in, takes off a coat and looks out the doorway.;A man walks through a home' front door. Once inside the home, the man removes a hoodie and drapes it on the man's shoulder.;A person walks inside and then takes their hoodie off. The person throws it over their shoulder and looks outside.\",c097 1.40 7.30;c008 0.10 9.00;c000 18.00 31.00;c155 7.70 22.00;c002 7.70 22.00;c001 20.20 25.50;c141 0.40 8.40,30.42\r\nOPPVW,CP6Y,Hallway,6,7,Yes,A person is walking down a hallway vacuuming and bumps into a glass which had been inexplicably left in the middle of the hall. Person looks confused then laughs.,cup;floor;glass;vacuum,A person is vacuuming in a hallway. They kick over a cup and laugh about it.;A person cleans the floor with a vacuum. The person scratches their head and stops cleaning.;A person is using a vacuum cleaner on the carpet at the bottom of a staircase and accidentally kicks over a cup that was on the floor and then smiles.,c137 0.00 25.00;c149 19.20 25.00;c127 0.00 20.90;c152 19.50 25.00,24.33\r\nYOCI8,ENHU,Kitchen,7,7,Yes,A person is snuggling with a towel while watching some groceries on a table.,bananas;blanket;chair;clothes;food;table;towel,A person is sitting at a table holding a towel they straighten the banannas and a jar;A person is holding a blanket and stares at the food on the table;The person is holding a cloth under the chin and moves the bananas and the box on the table.,c033 0.00 9.00;c059 0.00 9.00;c011 0.00 9.00;c000 0.00 9.00;c061 1.50 7.30;c070 0.00 9.00;c012 1.00 8.80,8.00\r\nGHJ3Q,I48P,Bedroom,7,7,Yes,A person stands grasping a pillow in their hands. They then start to tidy up a shelf.,bed;mirror;pillow;shelf;table,\"A person stands up with a pillow.  This person puts the pillow down and straightens up the dresser.;There is a person sitting on a bed hugging a pillow.  That person then stands up, puts the pillow down and starts doing something with items on a dresser.\",c076 0.00 10.30;c078 1.00 9.00;c079 0.00 5.90;c080 5.40 12.90;c077 5.20 10.40;c154 0.00 4.60;c135 0.00 3.40;c096 0.50 11.10;c012 9.80 27.00;c082 8.20 27.00,26.21\r\nMFGLZ,M7K8,Living room,6,7,Yes,\"A person awakens in their home office, grasps the remote control, and turns on the television. The person picks up a bag and removes something from it.\",bag;chair;food;remote;sofa/couch;table;television,\"Person is sitting down in living room and sleeping. Person wakes up and turns on TV. Person opens bag. Person gets up and walks away.;The person is sitting on a soft chair, and they pick up a remote and turn on the TV. They then fumble with an object and get up and leave the room.;The person is laying back in the chair, the dog jumps up and the person starts moving around then gets up and leaves the room.\",c132 9.00 34.10;c021 18.70 30.40;c146 0.00 8.60;c154 28.40 34.40;c059 0.00 34.10;c123 0.00 33.90;c061 0.00 33.30;c020 0.00 30.40,36.62\r\nWVG97,M7K8,Living room,5,7,Yes,\"One person on a sofa smiles while getting dressed, grasping shoes and putting them on.\",clothes;shoe;sofa;sweatshirt,\"A person sits on a couch smiling and puts on a shirt and shoes in a happy manner while still maintaining a smile.;A person sits on the couch and puts on a gray sweatshirt. The person then puts on some slippers, smiling.\",c055 18.20 30.00;c123 0.00 32.00;c152 0.00 32.00;c148 8.00 30.20;c149 0.00 32.00;c000 0.00 13.90,31.29\r\nU502L,ZDKC,Bathroom,5,7,Yes,A person awakens in their bathroom holding their phone. They grab a towel and leave.,doorway;phone;towel,\"A person is sitting on a toilet looking at an object, he stands up grabs a towel and leaves the room;A person sits on a toilet in a bathroom looking at his phone, then stands up, takes a towel off the shower rod and walks out of the room.\",c015 0.00 36.00;c034 28.60 34.60;c154 25.60 31.70;c146 20.40 26.90;c097 30.90 36.00;c035 27.50 32.30;c033 27.70 36.00;c016 0.00 25.30,35.42\r\nPRTAJ,ZDKC,Bedroom,5,6,Yes,A person is dressing by taking a jacket from their cabinet located in their bedroom. They begin throwing their shoes toward the window in their room.,cabinet;closet;clothes;coat;shoe;wardrobe;window,\"A person walks around his room, grabs a coat from a cabinet, and moves his shoes somewhere.;A person opens a cabinet and takes out an object. The person then closes the cabinet and puts on a jacket.;A person gets something out of the cabinet, gets dressed, and looks out the window\",c000 10.00 29.50;c113 7.50 19.70;c002 8.10 31.40;c112 8.70 17.10;c148 18.80 33.10;c113 4.90 12.10;c053 28.30 37.30;c154 0.00 43.00;c054 32.00 40.70;c001 8.50 19.20;c092 31.40 43.00;c056 26.40 32.50,41.83\r\nDWH0T,ZDKC,Living room,5,7,Yes,A person is seen playing with a camera. They look at a picture and start pouring themselves a glass of water.,bottle;cup;dish;glass water camera;phone;picture;sofa,\"A person lays on a couch while texting on a phone, the person gets up and pours themselves a cup of water.;A person is lying down and playing with a camera. The person stands up, walks, and grabs a glass. The person gets water from somewhere and drinks it.\",c106 31.30 36.00;c152 0.00 9.00;c015 0.30 17.20;c154 13.00 21.50;c122 0.00 17.20;c118 20.20 36.00;c120 20.20 27.30;c088 0.00 19.30;c110 19.50 26.40;c016 0.00 19.60;c108 22.40 32.90;c107 19.50 36.00,34.75\r\nYZ8HK,M7K8,Bedroom,5,7,Yes,A person is sitting on their bed closing their laptop and putting it on the floor.,bed;floor;laptop,\"A person sitting on a bed stares at a laptop. the person closes the laptop and sets it on the floor. The person is just sitting there on the bed.;A person is sitting on an unmade bed reading on a laptop computer, then closes and puts the computer down and continues to sit on the bed.\",c046 1.40 8.70;c135 0.00 31.00;c049 7.40 15.10;c047 0.00 14.10,29.79\r\nLT6K4,ZDKC,Closet / Walk-in closet / Spear closet,5,6,Yes,A person with a cup of coffee looks into a closet and takes something from the shelf. They start to sneeze.,book;box;closet/cabinet;coffee;cup;glass;shelf;something,\"A person is looking the closet, drink something, then take out some book from top of the closet, blow some dust out of it, and again look at the closet.;A person grabbed an item from a shelf. The person examined the item and smelled it.\",c082 8.80 15.70;c106 1.40 7.50;c114 0.00 32.00;c153 18.30 25.30;c043 7.70 19.40;c026 12.90 32.00;c107 0.00 32.00,30.62\r\nQ85TS,I48P,Closet / Walk-in closet / Spear closet,4,6,Yes,A person uses a light to search their closet for a bag of clothes.  They sneeze after they find the bag and grasp it as they leave the room.,bag;clothes;doorway;light,\"A person in a closet with a flashlight, looking for an item, walking out of the closet with the item in hand.;A person holding a flashlight searches a closet before sneezing and leaving the closet holding a bag.\",c002 18.40 26.10;c020 15.40 31.60;c023 6.20 17.30;c153 15.20 25.70;c154 5.90 12.80;c097 0.00 2.60;c000 21.10 30.20;c021 15.20 24.80,31.58\r\n74WSB,ZDKC,Kitchen,5,5,Yes,A person is cooking some food in the kitchen while playing with a camera. They start smiling because they are being somewhat irresponsible.,camera;dish;food;medicine;phone;sandwich;stove,A person is cooking on the stove while holding onto a camera.;A person stands in a kitchen cooking some kind of food while also staring intently at their phone and smiling.;There is a person in the kitchen cooking something on the stove. That same person is holding a camera and doing something with it.,c015 0.00 32.00;c062 0.00 29.80;c147 0.00 32.00;c119 15.50 26.60;c120 0.00 4.60;c120 3.20 12.00;c128 0.00 10.90;c152 11.20 20.90;c016 0.00 32.00;c087 0.00 6.00;c066 0.00 5.70;c119 2.90 10.20,30.62\r\nT9N9R,M7K8,Bedroom,5,6,Yes,\"The person was laughing while talking on the phone, and fixing the door.\",door;mirror;phone,\"Person talking on a phone, looking into a mirror while playing with the door knob.;The person started talking on a phone, and started touching the door, then they started turning the door knob back and forth.;A person picks up and starts talking on their cellphone as they walk over to a door with a mirror on it and touch the door and the doorknob.\",c015 0.00 2.60;c007 1.90 31.00;c149 10.50 15.70;c096 8.10 14.40;c152 10.50 15.70;c094 2.40 31.00;c018 0.00 31.00;c140 14.40 31.00;c019 0.00 31.00;c141 0.90 6.50,30.08\r\nQD1U7,P2J3,Living room,4,7,Yes,A person runs to sit in a chair with a sandwich in their hand.  The person puts the sandwich on the table and grabs a glass of water and drinks it.,chair;cup;doorway;food;glass;hand;sandwich;table;water,A person walks into a room sits on the chair and picks a cup off of the table and drinks what is in the cup that is sitting by a sandwich.;A person sits in a chair and drinks from a glass of water while a sandwich also sits on the table.,c068 1.50 7.60;c011 1.70 8.40;c151 1.00 8.40;c106 6.90 30.70;c067 0.00 7.70;c009 0.00 6.70;c059 1.70 36.00;c097 0.00 4.10;c107 6.70 31.40;c062 0.60 7.40,34.75\r\nAK2KG,CP6Y,Bedroom,6,7,Yes,A person is watching the light and smiling. The person then begins opening the window.,bed;curtains;window,\"This person is sitting on their bed in the bedroom, then gets up, opens up curtains and then opens up the window.;A person is sitting on a bed. They standing up and spin in place then walk over to a window and open it up to look out.;A person was sitting on a bed. The person then stood up and walked over to a nearby window. The person then opened the window and looked outside.\",c090 12.50 19.00;c135 0.00 6.80;c152 0.00 9.40;c154 5.40 19.00;c092 10.80 19.00,18.04\r\nSJ4QF,GFWE,Kitchen,6,7,Yes,The person sneezes while washing dishes and looking at a laptop. The person then leaves.,cup/glass/bottle;dish;hands;laptop,\"A person walks over to the kitchen sink they wash their hands and then they walk out of the room.;A person walks up to a kitchen sink, washes a glass and then places it on a window sill then walks away.\",c051 2.30 7.60;c119 0.00 18.60;c121 0.00 18.70;c120 0.00 18.90;c139 0.00 8.70;c111 6.40 15.50;c153 13.00 18.10,30.92\r\nQZZPS,GFWE,Living room,7,7,Yes,A person is seen sitting on a couch while looking at their phone. They begin lying on the couch and take some medicine.,couch;food;medicine;phone;sofa,A person is sitting on the couch messing with their phone they lay down on the couch pick up  a bottle of medicine and take some medicine.;A person is on a phone while sitting on the couch wearing a sweater.  Then the person takes a pill and sits back down.,c122 8.30 32.00;c015 0.00 12.00;c129 8.00 12.80;c128 8.30 29.10;c129 19.30 25.20;c123 0.00 12.80;c016 0.00 11.40;c156 19.30 25.20,31.29\r\nT9EHP,B6UG,Stairs,6,5,Yes,A person is sitting on a chair with a pillow watching someone play a game.,chair;game;pillow,Person sitting in a chair with hands folded on top of a pillow in arms.;A person is sitting in a chair at the bottom of a staircase while hugging or snuggling with a pillow.,c059 0.00 32.00;c076 0.00 32.00;c078 0.00 32.00,30.67\r\nATIAW,ZDKC,Home Office / Study (A room in a house used for work),5,7,Yes,A person is seen working at their desk. They begin watching videos on their phone and turning on a light.,chair;desk;laptop;light;phone;table;video,\"A person is sitting in the dark using a laptop. They do something on their phone, then stand and turn on the light.;A person typed on a computer keyboard, then picked up a cell phone and looked at it for a bit, then stood up and walked across the room.\",c016 8.70 30.30;c011 0.00 30.30;c015 8.70 29.20;c104 27.30 32.90;c154 24.70 31.10;c052 0.00 14.20;c151 25.20 31.00;c009 25.20 30.20;c014 0.00 29.00;c018 7.60 13.00;c059 0.00 28.90;c014 29.70 33.00;c018 30.00 33.00;c059 30.00 33.00,31.83\r\nZI1GC,BPXZ,Dining room,6,6,Yes,\"The person leaves their homework at the table as they get up and rub their stomach to indicate hunger. The person walks towards the pantry and grabs the doorknob. After twisting the knob and opening the door, the person is disappointed to find canned food and stacks of phone books. The person slams the pantry door in discontent and goes back to resume their homework.\",book;chair;closet/cabinet;desk;door;food;pantry;paper;shelf;table,\"The person sitting down at a desk looking at a journal,wrote on the journal got up rubed tommy walked to the cabinet pick up can of food put it down,picked up book put it down went back to chair and sat down.;A person is marking papers at a table. The person get up, rubs belly, opens the pantry and looks at some canned food. The person closes the pantry and sits back down.;A person is sitting at a table doing home work they get hungry and walk over to the cupboard and start arranging cans then they walk over to a desk and sit in the chair and do homework.;A person sits down at a table and writes some things on a piece of paper. The person opens a pantry and takes some books out of it, then places them back inside.\",c026 22.20 26.20;c145 0.00 10.40;c151 6.00 11.40;c059 6.40 10.40;c008 11.10 16.30;c151 29.70 35.00;c154 6.50 11.60;c006 27.00 31.40;c082 13.00 30.50;c114 12.80 30.80;c115 0.00 2.90;c011 0.00 10.20;c062 13.20 21.50;c014 0.00 10.70;c141 10.80 15.70;c112 26.80 31.50;c113 11.30 16.30,34.08\r\nO0349,BPXZ,Kitchen,6,6,Yes,A person is doing a lot of cooking and so they must open the pantry door. They then use the vacuum in the pantry to clean up the mess from cooking.,closet/cabinet;door;floor;food;groceries;pan;stove;table;vacuum,\"A woman stands by a stove and cooks something, then walks to the closet and begins to rifle through the items, removing an item before she begins to vacuum the floor.;A person is mixing something on the stove top, they walk to the pantry and grab an item before vacuuming.\",c138 21.20 28.90;c137 21.90 32.00;c006 16.80 23.60;c147 0.00 10.70;c009 18.20 25.00;c113 7.80 13.00;c008 8.30 13.50;c063 11.20 17.10;c112 22.10 26.60;c127 25.50 32.00;c130 17.30 24.10;c062 17.30 24.10,31.04\r\nWSKTN,BPXZ,Kitchen,6,6,Yes,\"Person grabs bag of rice from the pantry to cook on the stove.  Person finds bug in pantry and starts watching it move on the shelf.  Before leaving the pantry, the person kills the bug.\",cabinet;cupboard;door;groceries;shelf;table,A woman walks over to a cupboard in a kitchen and opens the cupboard door and fiddles around in it.;A person is in the kitchen reaching up on a shelf taking things down from the shelf they stand on their tip toes and reach up to grab something else.;A person in a kitchen takes a couple items from the kitchen cabinet and then puts an item into the cabinet after peering into it for several seconds.,c008 0.00 5.00;c082 24.40 33.00;c130 1.70 15.20;c113 0.40 4.90;c114 26.40 33.00,31.71\r\n9BQ7M,P2J3,Living room,2,7,Yes,The person was closing the medicine bottle while sitting in a chair smiling.,chair;cup/glass/bottle;medicine;sofa/couch;table,A person sitting in a chair puts a cotton ball into a bottle and screws the lid on tightly.;Person is sitting in a chair near a low table.  They pick up a bottle and bottle cap off the table then screw the cap on the bottle,c128 2.10 34.00;c059 0.00 34.00;c152 9.70 16.20;c011 0.00 34.00;c123 0.00 34.00;c107 0.30 34.00;c110 0.00 9.10,32.92\r\nVWFJA,ZDKC,Kitchen,7,7,Yes,Person is standing by fridge talking on phone then opens fridge and realizes there no groceries.,groceries;phone;refrigerator,Person on a cell phone go over to the refrigerator open the door look into it then close the door.;Person walks over to a refrigerator then opens the refrigerator while talking on a cell phone,c015 0.00 27.00;c019 0.00 27.00;c143 1.20 7.20;c142 18.00 22.90,25.67\r\nH43VE,CP6Y,Stairs,5,7,Yes,\"A person is holding a hammer and feeling around for a nail while fixing the stairs in a house.  The person pauses to wipe away some sweat with a towel, and then throws the towel onto the bag of groceries at the bottom of the staircase.\",floor;towel,\"A person is sitting and using tools to work on a flight of stairs. The person stops working, wipes their face with a towel, and tosses the towel aside.;A man is sitting on the stairs and fixing them; he pauses to wipe his brow with his sleeve before leaning back over to resume his work.\",c033 11.50 21.10;c036 16.60 21.90;c038 11.50 19.70;c151 0.00 3.30;c127 0.00 22.30;c126 17.10 22.10,23.79\r\nK64GM,4UGC,Stairs,5,7,Yes,A person fixing a camera on the stairs moves toward a window and throws a ball.,food;phone;window,\"A person stood at the bottom of a staircase, fiddled with a camera, then the person put the camera around their neck, and threw a pink ball across the room.;The person checks the watch then holds the camera and tosses a ball.\",c092 14.50 21.10;c015 0.00 19.60;c087 0.00 4.90;c064 17.70 22.50;c064 18.60 25.70;c017 11.00 15.80;c016 0.00 19.30,30.54\r\n0TKKR,ZDKC,Living room,3,7,Yes,A sneezing person is in a living room eating a sandwich watching television. They pour a drink in a glass and drink it with their sandwich.,couch;cup;dish;food;glass;sandwich;sofa;table;television;tv,\"A person is sitting on the couch watching television while eating a sandwich, they then begin to sneeze before getting up and puring themselves a glass of water.;A person is sitting on a couch watching TV while eating a sandwich. The person sneezes, then drinks a glass of water.;A person eats a sandwich on the couch while watching TV then gets up and sneezes.\",c065 34.90 45.00;c069 20.30 34.50;c106 30.70 41.50;c153 7.50 18.10;c154 13.00 22.30;c123 0.00 18.80;c009 15.20 27.40;c067 0.00 45.00;c107 26.90 45.00;c156 0.00 45.00;c061 0.00 45.00;c132 0.00 22.80;c119 23.60 29.60,44.00\r\nQ3BCC,DW3I,Laundry room,6,6,Yes,\"The person is standing in the laundry room near a table, fixing the doorknob because the door is having issues closing.\",door;pliers;tool,\"A person shuts a door, fixes the doorknob and shuts the door.;A person closes a door and is working on the doorknob of that door, which appears to be at the entryway of a house but it's hard to tell.;A person is fidgeting with the handle of a door with pliers, trying to close the door.\",c006 0.00 6.80;c007 4.30 41.20;c008 19.70 25.20;c140 4.30 41.20;c141 0.00 7.30,42.12\r\nIDXZK,DW3I,Bedroom,6,6,Yes,\"A person is lying on the floor, eating food from a dish. The person stands up and walks out of the room.\",dish;floor;food;plate;sandwich,\"A person is looking at some food, with bending on a plate, he picks up the food and take a bite from it, start chewing it, again he take one full bite of it,then he picks up the plate and gets up from the floor and start walking back.;A person is lying down on the floor and eating a sandwich, and the person stands up and takes the plate they were using and walks out of view.\",c124 0.00 24.10;c061 4.00 19.20;c063 0.00 4.70;c118 23.20 27.90;c120 23.20 30.70;c156 0.00 9.10;c062 0.00 9.40;c065 0.00 21.30;c154 22.60 28.40,35.38\r\nMZ3X9,DW3I,Closet / Walk-in closet / Spear closet,6,6,Yes,The person is in the laundry room opening the cabinet to get the broom smiling and holding the phone.,broom;cabinet;dishes;door;floor;food;phone,\"A person takes a phone, opens a door, takes out a broom and walks away.;A person picks up the phone, turn around and open the door, looks inside and take out he broom from inside, looks at it and smile, then he turn around and turn the broom upside down, and start walking out of the room.;Person open a door to a closet remove a broom from the closet then go through a doorway.\",c113 3.50 13.20;c100 8.70 17.90;c018 15.80 29.10;c098 18.20 32.00;c008 2.60 10.00;c141 3.20 8.60;c017 17.70 32.00;c015 17.70 27.70;c152 21.00 26.90;c112 16.90 27.30;c006 12.20 26.20;c097 27.40 32.00;c015 0.00 32.00,31.42\r\nD0AGO,ZDKC,Kitchen,6,6,Yes,A person is seen in the dining room playing with a doorknob.  They are then seen pouring a can of soda into a glass.,coke bottle;cup;dish;door;food;fridge;refrigerator;table,\"This person is standing in front of a locked door and seems to not be able to get it open. This person then walks to the kitchen, gets a glass, gets coke out of fridge and then pours coke into glass.;A person is messing with a door knob to a door then they walk into the kitchen and open the fridge they take out some soda and pour a glass of soda.;A person tries to open a door, then grabs a bottle of pop from the fridge and pours some into a glass.\",c108 0.70 16.30;c154 9.00 22.20;c142 12.90 31.60;c007 20.90 34.50;c141 0.00 13.40;c143 16.00 23.90;c009 13.70 19.00;c063 19.80 26.50;c109 13.70 18.70;c110 13.30 17.70;c120 13.70 19.60,39.04\r\nG6ZOB,CP6Y,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person laughing while closing the door to the entryway, turns on the light and sets a book on the shelf.\",book;door;light;shelf,\"An individual enters the foyer of a home, shuts the door, and begins arranging trinkets that line the shelf near the entrance.;A person enters a room and turns on a light while holding a book before placing the book on a shelf.\",c006 7.00 14.90;c008 0.00 6.90;c082 22.70 32.00;c026 9.30 27.20;c152 1.30 26.50;c028 25.70 31.20;c141 1.30 6.10;c081 25.40 32.00;c097 0.00 7.00;c104 13.90 22.40,31.38\r\nZYJJF,M7K8,Living room,5,6,Yes,A person puts clothes on a desk and then takes a drink out of a glass while standing next to the desk.,clothes;cup;desk;dish;glass;table;window,\"A person takes some folded washcloths and puts them down. The person picks up a cup and drinks from it a few times.;A person picks up clothes and folds two items, picks up a cup from a desk and starts drinking from it.\",c001 1.50 11.70;c106 8.30 32.00;c009 0.60 11.80;c154 0.00 32.00;c002 0.00 11.40;c118 8.90 32.00;c107 8.90 32.00;c004 0.00 11.10;c092 15.80 32.00,30.67\r\nK9RH2,ARRB,Dining room,5,7,Yes,A person is sitting at a dining room table and working on making clothes by arranging towels into a pattern.,blanket;chair;clothes;table;towel,A person sitting at a table with a red table cloth folding and organizing towels and other linen.;A person folds a towel on a table while sitting in a chair then she rearranges the towels on the tabletop.,c034 4.10 9.40;c037 0.00 9.40;c011 0.00 28.00;c009 4.10 9.40;c033 10.70 21.90;c012 0.00 26.00;c014 0.00 28.00;c004 0.00 28.00;c059 0.00 28.00;c071 8.20 12.80;c035 7.00 12.80;c033 5.50 12.60,26.79\r\nG2QBV,4UGC,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person throws a broom into the corner and looks into the mirror. The person drinks from a bottle of water and smiles.,bottle;broom;corner;door;mirror;water,\"A person is carrying a broom and closes a door.  The person then throws the broom in a corner, picks up a bottle of water from a table and drinks it.  They then smile as they look at the water and in the mirror.;A person is walking in the room with a broom and dust pan they close the door and through the broom down and then they go over to a mirror and take a drink of water.;A person closes a front door, then throws a broom in the the corner of the room. The person takes a water bottle and drinks from it.\",c098 7.70 13.30;c101 11.30 19.90;c094 19.30 31.00;c152 19.90 31.00;c006 0.00 7.10;c099 6.50 17.10;c106 15.40 31.00;c096 0.00 6.80;c149 23.30 29.40;c110 15.50 20.20;c107 15.70 31.00;c141 5.60 10.30,30.21\r\nYQOCU,BONA,Kitchen,5,6,No,\"A laughing person walks into the kitchen opens a cabinet, grabs the chips, closes it and sits at the table.\",bag;cabinet;chair;food;groceries,\"A person takes some food from a cabinet. They sit down in a chair holding it.;A person went up to a cupboard and got something and read it.;Person walked to the kitchen cabinet opened it got a bag of snack,sat down on the chair reading the snack label.\",c063 8.40 13.50;c112 18.40 24.10;c113 5.70 11.70;c151 21.40 27.10;c059 23.10 32.00;c061 8.10 32.00;c020 8.10 32.00;c023 8.50 15.20;c153 0.00 4.50;c130 8.10 23.40,30.92\r\nDPB7X,ENHU,Dining room,4,7,Yes,A person eats chips in the dining room. A person grasps the medicine on the table and looks at the window.,chair;cup/glass/bottle;food;medicine;table;window,A person sitting at a table reaching into a bag of potato chips and eating some. Then the person picks up a cellphone and looks out the window.;Person sitting at the table eating some food out of a bag then start looking out the window.,c011 0.00 10.00;c092 0.00 10.00;c156 0.00 10.00;c128 1.60 9.10;c059 0.00 10.00;c107 1.90 10.00;c063 0.00 3.30;c061 0.00 3.90,9.25\r\nRMKOC,M7K8,Stairs,5,7,Yes,A person takes medicine from a bag and puts it on a towel.,bag;cup/glass/bottle;doorway;medicine;stairs;towel,\"A person goes a few steps down a stairway, grabs a bag, takes a bottle of medicine out of the bag, and wraps it in a towel.;Person standing on the stairs holding a bag take out a can then place a can into a blanket.;The person walks out the door, holds a plastic bag, takes a towel to wrap a mug and holds the mug in the towel in their hands.\",c020 0.00 12.00;c128 5.10 34.00;c033 6.50 34.00;c035 7.40 13.80;c021 2.30 8.40;c107 7.40 34.00;c097 0.00 3.30,32.75\r\nCBZEP,ENHU,Closet / Walk-in closet / Spear closet,2,7,Yes,Person is sitting on floor holding vacuum cleaner and medicine then starts playing with vacuum.,floor;toy;vacuum,The person is sitting on the floor of the closet holding a red handheld vacuum.;The person is sitting on the floor of a closet holding a handheld vacuum cleaner.,c125 0.00 8.00;c137 0.00 8.00;c136 0.00 8.00,7.08\r\n14XKK,CP6Y,Stairs,5,5,Yes,A person is throwing towels and laundry down the stairs. The person is laughing and eating some food as the person does this.,bag;blanket;clothes;floor;food;glass;sandwich;towel,A person throws a towel down the stairs while drinking from a glass.;A person throws a towel down some stairs along with some clothes. The person eats some food;A person is standing and throwing clothing from the top of some stairs. The person is also eating some food.,c003 0.00 6.80;c036 5.40 14.40;c003 3.10 9.90;c070 0.00 4.50;c156 0.00 17.00;c033 0.80 6.50;c001 0.00 13.50;c002 0.00 12.50;c073 0.70 5.60;c074 0.40 5.90;c065 0.00 17.00;c126 0.00 7.00;c126 3.00 10.00;c035 2.00 9.20;c061 0.00 17.00,16.17\r\nGL7E6,SW82,Living room,6,6,Yes,A person awakens in their living room sneezing. They open a bag and pull out medicine. They take the medicine and go back to sleep.,bag;blanket;couch;floor;medicine,\"A person wakes up on the couch and sneezes then takes some medicine and goes back to sleep;A person is sleeping on the couch, they sneeze and then get up before taking some medication and going back to sleep.\",c020 8.40 25.10;c023 7.10 14.80;c153 3.30 12.10;c021 9.90 15.00;c128 12.20 23.90;c129 19.40 25.30;c024 22.20 26.80;c070 22.60 30.80;c126 22.50 26.80;c123 6.30 27.20;c122 0.00 8.50;c146 0.60 7.10;c072 0.00 8.50,30.17\r\nKB7WQ,I48P,Garage,6,7,Yes,A person is searching through bags and boxes looking for an item. The person closes a box that's been searched through then stops to sneeze.,bag;box;floor;something,A person is going through a box in the garage.  They close the box and start putting things in a bag. That same person then sneezes.;A person is in a storage room rummaging through a box and placing items in a bag. Then the person stops and sneezes twice.,c044 17.40 23.10;c021 18.30 23.70;c153 29.20 35.30;c039 7.30 14.00;c127 0.00 31.80;c023 3.30 7.50;c041 0.00 2.60,37.96\r\nOGZYC,V044,Bedroom,6,6,Yes,\"One person washes, then opens a window before using a vacuum around an old desk.\",mirror;table;vacuum;window,A person is cleaning a window with a sponge.  This person then vacuums over a table with a handheld vacuum.;A person wipes down a window inside a room with a brush. the person continues to do this and then leaves the brush on the floor and vacuums a table nearby.,c091 0.00 26.20;c013 21.80 37.00;c012 21.80 37.00;c095 0.20 20.20;c137 18.90 37.00,36.04\r\nJMCBE,CP6Y,Stairs,5,7,Yes,A person is throwing a blanket down the stairs. They then walk down the stairs carrying a broom.,blanket;broom;clothes;floor,A person is throwing items off the stairs like blankets and then picks up a broom on the way down.;A person throws something off the side of the stairs before walking down to it with a duster.,c098 7.90 22.00;c070 0.00 5.50;c074 0.00 6.50;c126 1.70 6.40;c100 7.70 13.40;c003 0.50 6.60,20.75\r\nY3AQ4,AT5D,Living room,5,7,Yes,\"One person under a blanket on a chair awakens, then snuggles with a pillow. Another person watches and smiles.\",bed;chair;pillow;table,\"The people are sitting at the desk, waiting for one person to fall asleep as he holds a pillow and wears a scarf.;Two people sitting next to each other. One person is falling asleep with a pillow in their lap while the other is watching and smiling.\",c059 0.00 32.00;c078 15.00 32.00;c011 0.00 32.00;c135 0.00 32.00;c152 11.50 28.00,30.67\r\nIPRMO,M7K8,Stairs,5,7,Yes,\"A person is lying on a pillow on the stairs. Laughing, they reach for the doorknob.\",bed;blanket;dog;doorknob;floor;pillow;stairs,The person in the video is laying on a pillow and then a brown dog comes out of no where.;Person lying on a pillow on some stairs then a dog walks over person then gets up.;Person laying on the stairs with a pillow and a dog on the stairs the person reach up and touch door.,c076 1.10 26.80;c078 1.90 24.20;c141 27.00 33.00;c152 24.90 33.00;c072 0.00 24.00;c149 19.00 33.00;c154 19.40 25.30;c124 0.00 24.00;c134 0.00 33.00,32.29\r\n0KZYF,4UGC,Closet / Walk-in closet / Spear closet,3,7,Yes,A person walks in holding dishes and eating a sandwich. Then the person starts smiling.,closet/cabinet;dish;door;food;sandwich,\"A person walks in holding a plate and eating, opens the door and walks into the closet and stands there.;A person walks into a hallway while eating something off of a plate. The person then opens a door, walks through it, and proceeds to keep eating in a happy manner.;A person is eating a sandwich and they take the sandwich into a walk-in closet and stand in the closet, continuing to eat the sandwich.\",c156 2.30 7.80;c118 0.00 9.50;c067 0.60 32.00;c152 25.80 32.00;c008 5.80 12.30;c113 5.70 11.20;c061 0.20 32.00;c097 10.30 16.60;c065 0.80 8.30,30.71\r\nW97NR,GFWE,Living room,5,6,Yes,Person A wakes up from a nap in the living room.  Person A looks at a sandwich earlier prepared on a table next to a vacuum and takes a drink of a glass of water.,bed;couch;cup;glass;sofa;table;water,\"This person is laying on the couch, wakes up yawning,and takes a drink of water.;Person sat on the bed lay down for few minutes,sat back up pick up a glass from the table.;There was a person who seemed to be sleeping and when the person woke up, they took a drink of water.\",c106 15.80 29.00;c009 23.10 30.20;c122 0.00 4.10;c123 14.90 33.00;c133 10.30 18.40;c146 10.50 18.90;c110 16.00 20.80;c109 24.50 30.10;c107 16.50 28.50;c134 0.00 17.30;c123 0.00 22.00;c135 0.00 22.00,31.50\r\nXK0QV,P2J3,Living room,5,7,Yes,\"A person walks into the living room, drinking a glass of water. The person turns on the television and begins watching.\",chair;coffee;cup;doorway;glass;sofa/couch;television;water,\"A person walks into a room while drink a beverage, the person places the drink on a shelf, sits down and starts watching television in a relaxed manner.;A person is walking into a room and drinking a coffee, the sit down in a chair\",c106 0.00 14.30;c132 13.30 36.00;c107 0.00 14.70;c059 14.50 36.00;c097 0.00 6.00;c151 12.90 20.20;c123 16.10 36.00,34.71\r\n03PRW,ZDKC,Living room,6,6,Yes,A person is in their living room under a blanket and eating a sandwich while watching the television. They laugh at the show on the screen and leave.,blanket;food;sandels;sandwich;shoe;sofa;television,\"the person is lounging on a sofa and puts on sandels;Person lying down on the sofa with a blanket eating looking at television gets up and leave the room.;A person eats some food on the couch while watching some tv. The person points at the tv and laughs, and then stands up and walks away.\",c122 0.00 33.20;c065 10.00 36.00;c156 10.00 36.00;c055 27.10 33.40;c132 0.00 30.30;c070 0.00 32.00;c061 0.00 36.00;c154 26.10 33.90;c072 0.00 31.30;c123 27.10 33.20,34.75\r\nW7EDM,CP6Y,Bedroom,6,7,Yes,A person in their bedroom is putting their shoes onto their bed. They start eating some groceries that they find on some dishes.,bed;clothes;dish;food;groceries;remotes;sandwich;shoe,\"A person walks over and sits on the bed and takes shoes off the starts eating food in the bed.;A person sits down on a bed and takes off their shoes. The person leans back and eats some food and then sits back up;A person sits on a bed and removes their shoes, and then begins to eat food from a plate that is sitting on the bed.\",c135 0.40 5.20;c119 14.30 20.80;c057 0.80 9.10;c156 11.60 17.60;c063 8.40 15.50;c056 4.50 10.70;c155 2.00 8.50;c065 12.30 21.00;c120 14.40 20.60;c069 8.80 21.00;c061 10.90 17.70;c054 4.70 11.80;c053 2.10 11.10;c151 0.30 5.40;c118 14.80 20.60,20.50\r\nJ0AMJ,ZDKC,Bedroom,4,7,Yes,\"One person grasps a book and a phone from a bag, then lies down and sneezes.\",bag;bed;blanket;book;groceries;phone;pillow,\"A person sits down on a bed, takes a bag and removes some items from it. The person takes a book and then leans on a pink blanket.;The person opens a bag on the bed, moves a blanket to another spot on the bed, lays down, sneezes and looks at an item in the person's hand.\",c026 15.30 28.00;c030 10.60 20.20;c015 0.00 8.20;c021 7.90 18.30;c077 15.10 31.00;c016 0.00 32.00;c130 12.60 18.50;c022 6.80 20.90;c073 16.60 28.80;c071 16.80 29.00;c134 23.90 32.00;c024 13.60 18.90;c135 0.00 28.00;c023 4.00 8.80;c020 3.90 18.30,30.67\r\nN2WXN,AT5D,Bedroom,6,7,Yes,\"A person is awakening on top of their blanket. Smiling, the person walks across the room and picks a towel up off the floor.\",bed;blanket;floor;towel,The person is sleeping in a bed. They sit up and stretch then get up and pick a towel up off the ground. They wipe their face with the towel.;A person woke up walked across the room and got a towel;Person was lying in bed and got up.  Person stretched before getting to their feet and grabbing a towel to dry their face.,c035 20.80 26.20;c146 7.10 19.90;c154 15.30 20.80;c134 0.00 11.30;c133 5.90 13.30;c070 20.70 32.00;c127 21.00 25.90;c135 12.50 20.20;c037 21.40 32.00;c033 21.10 32.00,30.79\r\nHIKIC,EDYS,Bedroom,6,,No,Person is playing with box full of dishes while talking on phone and laughing.,box;closet/cabinet;door;phone,\"A person reads a book and then answers a phone in a happy manner while opening a door.;The person opens a box, opens the curtain, puts items in the box, then answers the phone, then picks up the camera and pans the room.\",c015 11.80 22.40;c019 11.80 22.40;c040 0.90 22.60;c041 0.90 7.70;c141 4.50 9.10;c152 13.40 18.30;c043 0.00 4.90;c039 11.50 16.40;c008 17.50 23.50;c149 12.10 18.10;c018 10.60 15.80;c113 17.40 23.50,30.67\r\nAQQQ5,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is sitting at a table typing into a laptop, after seeing something funny on the laptop they proceed to laugh.\",chair;laptop;table,\"Someones sitting at a table typing on their computer and they start to laugh.;A person types on a laptop before pausing to laugh and sit back. The person then continues work on the laptop while chuckling.;A man sits at the table and types quickly on his laptop, then begins to smile and laugh while he is watching something on his screen.\",c052 0.00 31.00;c149 12.10 31.00;c059 0.00 31.00;c051 0.00 31.00;c011 0.00 31.00;c152 12.30 31.00;c014 0.00 31.00,30.33\r\n4FQJY,AT5D,Bedroom,5,6,Yes,\"One person works on a camera at a desk as another person watches from the doorway, drinking.\",bed;phone/camera,People are in a room talking.  One is sitting on a bed looking at their phone.  The other is standing by the door.;A person sits on a bed adjusting a camera while another person speaks to them.,c135 0.00 32.00;c015 0.00 32.00;c016 0.00 32.00,30.79\r\nQFL2O,BONA,Basement (A room below the ground floor),5,6,Yes,A person in the basement is working on some work while siting in the chair. They begin smiling as the receive some funny message on the phone.,chair;fan;phone,\"A person is repairing the fan plug, he clean it then fix the fan jali, as mobile rings, he pick up the phone, and start looking at, and he see some thing and laugh at it.;A person is taking apart a fan in attempt to fix it.  Then the person leaves the fan and takes a phone and starts looking at it.\",c059 0.00 32.00;c152 19.50 32.00;c149 21.80 32.00;c018 20.70 32.00;c015 22.70 32.00,30.83\r\nOVFR0,ZDKC,Bedroom,7,7,Yes,A person places a book on the dresser as they smile and check their appearance in the mirror. This person grabs their bag and leaves the room to greet the day.,book;door;mirror;shelf;something,\"A person was looking at a book, then looked at themselves in a mirror. After that they opened a door and walked out into a hallway.;Person pick up a book off the table put it down looks into the mirror and go into the hallway.\",c028 0.00 5.30;c096 2.00 10.90;c152 0.00 7.50;c032 0.00 8.50;c026 0.00 5.10;c029 0.00 5.80;c094 2.00 11.20;c097 13.60 19.40;c081 0.30 5.30;c141 11.00 16.30;c008 11.30 17.30,21.75\r\nG852Y,CP6Y,Stairs,7,7,Yes,One person is wrapped in a blanket sneezing while another person is working on the stairs with a broom.,blanket;broom;floor;stairs,People sitting on a stairway one is sweeping the stairs and one is squeezing wrapped in a blanket.;A person sweeps the stairs while another person sits on the stairs wrapped up in a green blanket and sneezes multiple times.,c070 0.00 19.00;c098 0.00 19.00;c102 0.00 19.00;c153 3.00 10.10;c072 0.00 19.00;c125 0.00 19.00,18.04\r\nFLBS9,EDYS,Closet / Walk-in closet / Spear closet,6,3,No,A person is snuggling a bag while laughing at a towel.,bag;chair;cloth;phone/camera;towel,\"A person walks over to a chair, sits down, and reaches into a bag. Then the person picks up a piece of cloth off of the chair, stands up and walks away.;a person sits down on a chair, holds up a piece of clothing, and then tosses it at the camera and walks away.;The person sits in a chair and uses a cloth to wipe off something on the floor by the person's feet.\",c033 12.50 25.70;c021 6.00 12.70;c151 5.20 10.60;c059 6.10 24.20;c001 19.90 32.00;c035 11.80 17.90;c152 15.50 22.20;c000 13.00 25.30;c154 19.30 24.80;c016 0.00 7.50;c002 12.90 17.60;c149 15.00 20.70,30.58\r\nGZZVT,AT5D,Pantry,4,6,Yes,A person is lying on a towel while another person is snuggling with a blanket.,floor;pillow;towel,\"A person holding a pillow pacing the floor looking at another person laying on the floor.;A person get on the mat on the floor of the kitchen, while another paces around staring at the other on the ground.;The person lays down on the floor as another person watches and paces back and forth.\",c076 0.00 32.00;c124 0.00 30.40;c151 0.00 4.50;c033 0.00 32.00;c078 0.00 32.00,30.88\r\nULD0T,M7K8,Entryway (A hall that is generally located at the entrance of a house),3,4,Yes,A person is walking with a bag and taking a book.,bag;book;doorway;envelope,\"A person walks through a doorway and halfway down the stairs. They stop, turn around and come back up the stairs carrying a bag with a book in their hand.;A person is walking down the stairs while holding a bag and a book. The person is then walking up the stairs while holding a bag and a book.\",c020 5.00 14.30;c115 3.50 12.50;c026 0.00 31.00;c026 4.50 14.30;c097 0.00 2.80,30.29\r\n7R0LB,BONA,Pantry,5,5,Yes,A person is standing in the pantry holding a box of food.  The person sneezes and puts the food in the cabinet.  The person grabs a blanket off the floor and leaves.,blanket;box;cabinet;dish;door;floor;food;shelf,\"A person is putting away dishes into a cabinet and picking things up off the ground while cleaning the house.;A person with an item in hand, then sneezing on it and putting in a cupboard, then picks up a blanket off the floor and walks with it over the arm.\",c075 20.50 29.60;c113 8.70 16.20;c073 20.70 25.60;c008 8.70 13.70;c119 10.70 18.20;c062 8.20 19.10;c061 0.00 18.70;c081 12.20 19.00;c112 16.80 22.80;c153 6.50 11.00;c042 12.80 17.10;c070 21.00 25.30,30.83\r\nT2S3Z,SW82,Bathroom,5,1,No,\"A person is walking in, holding a book. The person sets it down next to their camera and begins drinking water from the sink.\",book;cup/glass/bottle;doorway;hands;mirror;sink;water,\"A person walks into a bathroom, turns on the faucet, fills hands with water and sips, then washes face with running water;A person is walking and holding a book. The person is then placing the book onto a counter. The person then drinks some water from the faucet.\",c106 3.60 31.00;c139 12.80 31.00;c096 3.30 8.40;c028 1.30 6.40;c097 0.00 4.60,30.21\r\n4WWYI,CP6Y,Closet / Walk-in closet / Spear closet,4,1,No,A person walks into the room grasping a cup of coffee.  The person grabs a shirt from the shelf and gets dressed in front of the mirror.,closet/cabinet;clothes;mirror;shirt,A person walks into a room and opens a curtain and grabs clothes. The person then begins dressing.;A person took a jacket from a closet. The person then put the jacket on.,c148 6.80 17.10;c096 8.20 21.00;c113 2.90 10.20;c002 4.30 11.70;c000 4.30 12.20,20.12\r\nSSPMK,CP6Y,Bedroom,6,7,Yes,A person is drinking coffee while snuggling cozily in a blanket.,bed;blanket;cup;dish;sofa/couch,\"Person wrapped in blanket sits on a bed holding a cup.;Person sitting down struggling to keep a black and green blanket wrapped around their body, while taking a drink from a cup.;A man is sitting on a seat, wrapped in a blanket, while he drinks from a cup in his hand and adjusts the blanket several times.\",c106 27.10 34.60;c107 31.00 37.40;c135 11.50 21.10;c118 0.00 38.00;c070 0.00 38.00;c123 0.00 38.00;c072 0.00 38.00,37.42\r\nX37P1,BONA,Stairs,5,6,Yes,A person is walking down the stairs holding a sandwich and a glass of water.  The person drinks some water and pours the rest into a house plant at the bottom of the stairs.  The person grabs some clothes off the floor and leaves.,clothes;cup;dish;floor;food;glass;sandwich;towel;water,\"A person is standing on a flight of stairs holding a glass. The person walks down the stairs, takes a drink out of the glass and pours the rest out onto a plant. The person then picks up a piece of clothing and walks away.;A person walks down some stairs outside, holding a glass and then pours it into a potted plant, then walks away.\",c002 20.40 26.10;c106 14.10 20.70;c035 21.20 25.90;c118 0.00 32.00;c061 0.00 32.00;c037 20.50 32.00;c107 0.00 32.00;c033 21.30 32.00;c034 21.50 32.00,30.83\r\nKWZSA,BONA,Dining room,6,7,Yes,\"A person in the dining room is eating dinner, stands and begins tidying the table. Grabs a plate and a glass and walks to the doorway.\",chair;cup;dish;doorway;food;glass;table;towel,A person was sitting at a table and eating food from a bowl. The person then stood up and cleaned up the table with a cloth. The person then picked up his bowl and walked out of the room.;A person is eating something at the table with their hands before getting up and cleaning the table off. They grab their things and walk out.,c119 22.60 31.00;c097 23.80 31.00;c012 15.10 26.50;c156 0.00 16.20;c118 2.20 16.90;c120 9.00 22.10;c107 4.90 16.90;c011 13.40 28.10;c013 8.60 23.70;c154 14.50 28.60;c121 10.10 23.60;c061 28.20 31.00;c059 28.20 31.00;c009 28.20 31.00;c062 28.20 31.00;c038 28.00 31.00,30.12\r\nONVGA,CP6Y,Living room,7,4,Yes,One person holding a sandwich is watching another person leaving with food.,food;paper/notebook;plate;sandwich,\"A person is standing in a living room holding a plate and a sandwich. Another person walks past them while eating from a plate.;A person is looking at the sandwich with holding a plate, another person walks in and pass from there, first person looks at him and again looks at the sandwich.;A person is standing and looking at something they are holding. Another person then walks into view holding something and looking at it, and then walks out of view again.\",c061 0.00 15.00;c067 0.00 15.00;c156 4.90 11.60;c115 0.00 15.00;c154 0.00 15.00,14.00\r\nEF7Q9,JQ7D,Bathroom,6,7,Yes,\"Looking very tired, Person goes into the room and begins washing their hands. They knock a glass into the sink. They take the glass and put it in the window.\",cup;door;glass;hand;mirror;sink,\"Person enters bathroom then washes hands and then glass and places the glass on the window sill.;A person walks into the bathroom, turns on water and washes hands, picks up a cup on the counter, drops it in the sink, picks it up and puts it on the window sill of the bathroom window.;A person walks into the bathroom and stands at the sink and picks up a plastic cup from the sink and places it on the window sill.\",c107 16.50 21.90;c110 14.00 20.50;c139 6.80 13.40;c096 6.40 22.70;c097 0.00 5.00;c109 10.80 17.40;c111 13.10 21.20,28.38\r\nKYLJY,CP6Y,Closet / Walk-in closet / Spear closet,4,5,Yes,A person is putting on shoes while sitting on a table in the Closet / Walk-in closet / Spear closet.,chair;sandals;shoes;wardrobe,\"Person walks into room then sits down on chair next to wardrobe and puts shoes on.;A person sits on a stool and puts on slippers, then makes sure they are snug.;A person sits in a chair and slips off his flip flops and puts on a pair of sneakers, all while sitting in the chair.\",,23.88\r\nOK6BF,BPXZ,Bathroom,7,6,Yes,The person swept the bathroom floor with a broom.  The person opened the window to let fresh air in.  The person put away things in the medicine cabinet.  The person then closed the window and left the bathroom.,broom;floor;window,\"Middle aged person cleaning a residential bathroom.;A person sweeping the floor in the bathroom, moves the waste basket, sweeps under it and then cleans the mirror.\",c098 0.00 12.90;c099 15.10 23.00;c102 0.00 18.40;c090 19.00 25.00;c127 0.00 19.80,27.54\r\n2USX0,K8D4,Living room,6,6,Yes,A person in a living room drinking ices coffee from a glass sneezes and spills some coffee.,coffee;cup;dish;glass;sofa/couch,\"A person sits back on a couch and raises a teacup to his mouth. When the person sees the camera, he spits what he'd been drinking out.;A person is sitting on the couch drinking out of a cup and then sneezes\",c106 0.00 9.80;c153 5.70 12.00;c118 0.00 12.00;c152 7.60 12.00;c123 0.00 12.00;c149 7.60 12.00,11.29\r\nJ3RP9,EDYS,Bedroom,4,4,Yes,Person enters the bedroom grasping a picture and puts it on the desk.  After reflecting on the picture for a moment Person decides to leave the bedroom.,book;doorway;paper;phone,\"A person is adjusting camera and walks into a dark space in the room and grabs a paper and tosses it down and paces back and forth and grabs camera;A person walks into a room and then walks out carrying something. The person places the item on a desk and walks away in a confused manner.;A person walks through a doorway, walks out with some papers, then walks back in and out of the doorway again.\",c097 4.60 16.70;c018 35.10 40.00;c116 8.00 19.40;c117 6.50 14.90;c115 8.00 20.40;c025 0.00 4.90,38.58\r\nNHH8N,0Z4M,Living room,5,6,Yes,\"A person snuggles with a picture, A person sits on a sofa.\",bed;book;chair;picture;sofa,\"A person is bending and taking a picture frame, then sits on a bed, and admire the photo, turns it up and side ways and look at it.;A person picked up a book, looked at it, sat in a chair and continued to look at the book for several moments.\",c123 7.50 34.00;c084 0.10 5.30;c088 8.20 24.10;c154 0.00 9.40;c026 0.00 34.00;c135 4.70 13.80;c030 0.00 5.30;c115 0.30 34.00;c117 0.00 5.10;c059 8.00 34.00;c032 0.50 34.00;c083 0.00 4.30;c151 0.00 9.90,32.75\r\nGS3M4,CO87,Bathroom,6,6,Yes,A person is tidying a table then walks over to coffee mug.,box;closet/cabinet;coffee;cup/glass/bottle;dish;mirror;shelf;table,\"A person is cleaning their bathroom and straightening up various bottles before picking up a glass and leaving the room.;A woman washes her hands in the bathroom sink, watching herself in the mirror. Then she walks over to the towel to dry her hands and holds her cup of coffee.\",c012 0.00 21.40;c042 5.60 10.40;c113 17.70 23.00;c110 23.20 27.00;c082 0.00 24.80;c112 19.10 24.60;c096 0.90 7.90;c114 19.10 24.70;c118 5.70 11.00,26.08\r\nP8G8V,SW82,Kitchen,6,6,Yes,A person is in a kitchen working on their phone while they casually drink a cup of coffee.,coffee;cup;food;glass;phone,A person is looking at their phone and drinking a cup of coffee.;She is texting on a phone and drinking from a cup while standing by freeze.,c106 3.80 11.40;c107 3.80 11.40;c015 0.00 31.00;c109 6.50 11.50;c061 3.10 10.90;c110 3.10 10.90;c016 0.00 31.00,30.25\r\nNF45F,P2J3,Bedroom,7,7,Yes,A person turns on the light and starts undressing. They look into the mirror and begin to laugh.,bed;clothes;cloths;doorway;jacket;light;mirror,\"A person turns in the light, and then takes off their shirt. Then they look at themselves in the mirror.;A person walks into a room, turns on the light, and takes off an outer shirt.  This person then turns around.;Person standing in a dark room takes their jacket off. Person then turns the lights on and looks into a mirror before looking at the camera.\",c096 24.20 30.50;c155 8.70 25.60;c003 21.60 27.00;c097 27.70 33.70;c104 4.00 8.90;c094 24.60 31.20;c001 21.50 26.80,34.46\r\n17LNN,M7K8,Bedroom,6,6,Yes,\"A person is in the bedroom running around.  The person straighens the pillows, grabs the dirty dishes to wash.\",blanket;cup/glass/bottle;dish;food;pillow,\"A person paces around a bedroom. The person adjusts some pillows on their bed and takes a container off their shelf.;A person pacing around the room, thinking about what to do then straightens pillows on the bed and picks items up off the dresser.\",c118 26.90 33.00;c120 27.00 33.00;c075 11.60 28.80;c107 26.70 33.00;c077 11.50 28.50;c061 27.20 33.00;c110 27.20 33.00,32.04\r\n27DCQ,M7K8,Bedroom,6,6,Yes,\"A person awakens in bed. The person stands up, laughs, and picks up a broom.\",bed;broom;pillow,\"A person is sleeping, then wakes up and grabs a broom.;A person is sleeping, awakes, and jumps up and grabs a broom;A person rests on a bed, then stands up and grabs a broom.\",c154 16.00 21.90;c098 17.70 32.00;c133 13.50 19.20;c100 17.40 23.30;c149 13.80 18.90;c146 0.00 19.40;c152 13.70 18.90;c134 0.00 18.00,31.00\r\n1VRH1,M7K8,Bedroom,6,6,Yes,\"The person is laying in bed with a book grasped between their two hands. They leaf through the book uninterested for a few seconds. Finally, giving up, they throw the book on the floor and then turn off the light on the bedside table.\",bed;book;chair;floor;light;sofa/couch,\"A person is reading a book in bed. Then they throw the book and turn off a light.;A person is laying on the bed reading a book they put the book down sit up and turn off the lights.;A girl is laying back on her bed and holding a book as she reads, before closing the book and shutting off the bedside light.\",c026 0.00 17.50;c031 12.40 18.70;c032 0.00 17.20;c105 22.80 31.00;c134 0.00 26.50;c126 13.00 18.70;c133 16.20 27.20;c028 12.70 17.70;c025 12.70 17.20;c059 0.00 31.00;c027 0.30 16.90;c123 0.00 31.00,30.33\r\nOTUV7,ENHU,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is in a office eating food, they then stand up and start removing their shoes.\",bag;chair;chips;clothes;desk;floor;food;phone;shoe;table,\"Person eats some chips at a small table, picks up cell phone, gets up, checks shoes;A person is sitting on a chair at their desk. They are eating a snack before getting up and taking off a shoe.;A person is sitting in a chair while eating from a bag before standing up and removing their shoes.\",c058 11.10 18.00;c156 0.00 6.30;c015 2.30 9.90;c009 2.30 10.00;c061 0.00 12.00;c059 0.00 13.90;c056 11.80 16.70;c155 12.00 18.00;c020 0.00 12.20;c126 12.40 17.70;c154 9.40 14.40;c062 0.00 10.00;c017 4.20 9.40;c063 0.00 11.80;c057 12.20 18.00;c011 0.00 14.30,16.83\r\n0F7LW,ZDKC,Bathroom,3,7,Yes,\"A person runs into the closet, takes a laptop from the shelf, and leaves, turning off the light behind them.\",closet/cabinet;door;laptop;light;shelf,\"A person enters a room, turning on a light, then opens a closet door, takes down a toy laptop, turns off the light and leaves the room.;A person takes a laptop from a closet shelf and leaves the room.\",c050 12.60 19.50;c105 25.00 31.00;c008 0.80 8.10;c141 1.40 6.30;c112 17.80 23.10;c112 19.50 25.30;c150 0.00 4.60;c082 6.30 13.50;c097 0.00 4.50;c113 0.90 8.60,30.46\r\nG8NEV,GFWE,Living room,6,7,Yes,Person is eating while sitting on the couch. Person then picks up a book and a few moments later laughs. Person then pulls a blanket up over their lap.,blanket;book;chair;food;sofa,\"A person sits on a couch with a dog. The person starts reading a book and laughs a little bit while covering themselves in a blanket.;Person adjust camera, sits on couch, proceeds to grab a book from underneath where they are sitting and covers themselves with a blue blanket.\",c123 0.80 32.80;c072 23.30 34.00;c025 18.70 26.30;c027 13.40 22.00;c151 0.00 5.00;c154 28.10 34.00;c152 18.70 25.60;c071 22.00 28.80;c070 24.50 32.10;c061 0.00 14.70;c149 18.20 24.20;c156 0.60 19.50;c032 14.70 24.00;c030 11.70 17.70;c026 12.40 25.10;c059 0.50 32.40;c028 19.00 27.00,33.04\r\nY3M3W,GFWE,Living room,5,7,Yes,\"A person is lying on the living room floor on a pillow, reading a book. The person stands up and walks across the room.\",book;floor;pillow,\"A person is laying on the ground and on a pillow. The person is looking at an opened book. The person then put the book on the ground and stood up.The person then walked away.;A person laying on the living room floor with a pillow looking at a book, then gets up and walks away.\",c032 2.80 22.40;c124 0.00 22.40;c154 18.40 25.60;c027 1.70 8.00;c026 0.50 22.20;c078 0.00 22.20,35.17\r\nO76GM,BONA,Kitchen,6,7,Yes,Person is grasping box from shelf of pantry then starts closing door and puts box on stove.,box;cabinet;container;counter;dish;door;food;shelf;table,\"This person opens a few cabinets, then takes out a container of food.;A person standing in the kitchen opens a cabinet and removes a dish before setting it on the counter.;A person looks through a cabinet and removes a container from it.\",c040 12.90 33.00;c043 12.30 18.90;c112 14.40 22.80;c113 0.80 15.30;c009 29.00 33.00;c063 12.80 19.70;c118 14.90 32.50;c062 27.40 33.00;c120 10.20 19.00;c006 15.00 22.90;c008 0.90 15.50;c061 13.20 33.00;c119 29.10 33.00;c147 29.80 33.00;c141 0.30 11.20,32.42\r\nFB3ZG,GFWE,Bedroom,7,7,Yes,A person grabs a camera and a coffee as he is running to leave his bedroom.,coffee;cup;desk;doorway;phone/camera;shelf;table;woman,\"a woman grabbing a cup off of a desk.;A person grabs a coffee and leaves the room;A person walks into a room, takes a cup of coffee and a phone from somewhere, and walks out of the room.\",c107 5.00 12.30;c110 4.50 9.20;c154 0.00 12.60;c015 5.20 11.90;c097 7.40 12.10,19.50\r\nQLFR5,JTAS,Living room,5,7,Yes,\"A person is in a living room sitting by a window reading a book, they then get up and walk out of the room.\",blanket;book;chair;floor;sofa/couch;table;window,\"A person is sitting on a sofa couch reading a book with a blanket in their lap, they then get up and walk away.;The person sat in a chair with a blanket covering that person's legs and waist while reading a book. After reading a book for a while the person got up and left the room.;A person sitting down with a blanket over them reads a book. The person closes the book and then gets up from the chair.\",c025 21.00 27.10;c028 22.50 28.80;c026 0.00 28.60;c032 0.00 29.00;c059 0.00 30.00;c070 0.00 30.40;c123 0.00 29.80;c027 0.00 26.10;c072 0.00 28.60;c115 0.00 28.10;c009 22.70 28.20;c031 21.80 28.20;c154 25.40 31.50;c126 22.50 28.60;c150 26.20 31.90;c071 24.80 31.10;c116 23.90 28.20;c074 26.20 30.90,38.25\r\n4DSYI,AT5D,Recreation room / Man cave,4,5,Yes,A person is tidying the pillows on the couch while another person is working on a camera.,bed;camera;chair;phone;pillow;sofa,Two people are sitting in a room that consists of two beds and a chair. One person is sitting in a chair and the other is sitting on the corner of one of the beds. The person sitting in the chair is stuffing a pillow while the person on the bed is playing with a camera.;A person sitting down fluffs a pillow while another lays on a bed on their phone. The two continue to do so.,c015 0.00 32.00;c076 0.00 32.00;c135 0.00 32.00;c134 8.30 28.50;c016 0.00 32.00;c059 0.00 32.00;c087 6.30 27.30;c135 0.00 11.70,30.79\r\nRVVDR,I48P,Living room,7,7,Yes,A person opens a bag and takes some groceries out. Next the person sits and snuggles in a blanket.,bag;blanket;chair;food;groceries;medicine;table,\"A person picks up a bag, takes groceries out of it, put them back in, and puts the bag on the table. The person then sits in a chair, covers with a blanket and goes to sleep.;A person was holding a bag which he then opened. The person then examined several items from the bag before putting it on a table. The person then grabbed a blanket and sat down in a chair. The person snuggled with the blanket.;A person is putting groceries in a bag and sits down in a chair, under a blanket to nap\",c130 0.50 11.00;c072 13.60 30.00;c020 0.00 13.80;c022 7.90 15.00;c009 3.70 12.60;c021 0.00 11.60;c151 11.90 17.60;c059 13.10 31.00;c128 0.00 13.40;c063 0.00 13.10;c070 12.20 31.00;c062 8.30 15.60,29.88\r\nJS3TB,ARRB,Garage,5,7,Yes,A person enters a garage while eating a sandwich and holding a dish.  They walk around the garage and laugh as they continue to eat their sandwich.,dish;doorway;food;sandwich,\"A person walked into a garage while holding a plate and eating a roll or bagel, and then paced back and forth within the garage.;Person comes in through the door eating a sandwich out of a dish she was carrying then proceed to walk around the room.\",c065 0.00 5.10;c067 0.00 25.00;c118 0.00 25.00;c156 0.00 3.60;c097 0.00 2.50;c061 0.00 25.00;c149 6.50 11.00;c152 6.50 25.00,24.08\r\n7SNIO,I48P,Living room,5,6,Yes,\"One person runs into the room laughing, then sits down by a cabinet to do some homework.\",book;bucket;floor,\"A person runs into a living and begins to read a book.;A person wearing a black sweater walks towards a couch, sits on the ground in front of it and then begins thumbing through a book.;The person runs into the room and sits on the floor reading a book on the person's lap.\",c150 0.00 7.30;c026 6.90 35.00;c027 5.00 12.70;c032 6.80 35.00;c151 1.30 9.40;c125 4.40 35.00;c030 4.20 10.30,34.33\r\nP4SB9,ENHU,Kitchen,6,7,Yes,\"A person is in a kitchen tidying up with a broom, they then start eating some food from the stove.\",broom;floor;food;pan;stove,\"A person is sweeping the floor with a broom. The person then puts the broom up against a wall. The person then walked over to a nearby counter and picked up an object.;A person is sweeping, then puts the broom down and starts cooking\",c098 0.00 10.80;c099 5.40 11.20;c102 0.00 10.80;c061 11.90 19.00;c063 10.70 17.80;c156 13.10 19.00;c127 0.00 11.30;c147 9.20 18.80;c154 0.00 19.00,17.50\r\nTQYV1,BONA,Bedroom,3,7,Yes,\"One person walks into the study with a pillow, blanket and book, then starts sneezing.\",blanket;book;doorway;pillow,A person walks into a bathroom carrying a pillow and sneezes multiple times.;A person walks into a room with their arms full carrying multiple items then sneezes several times while still holding the items.,c026 0.00 32.00;c070 0.00 32.00;c076 0.50 32.00;c153 21.10 27.20;c097 0.00 11.30,30.92\r\n07TCM,JTAS,Living room,4,7,Yes,\"A person sits at a sofa. A jacket lies next to them.The person is putting on shoes. They put on the jacket, dressing for the cold and sneeze.\",blanket;clothes;coat;hands;laptop;shoe;sofa,\"A person is sitting on a sofa and putting shoes on, then starts to put on a coat, then starts sneezing;a person sits on a bed and starts putting on their shoes while also putting on a coat and putting their face into their palms in a crying gesture.;Person putting shoes and jacket on while sitting on a bed in the bedroom.\",c123 0.00 35.00;c053 0.50 15.40;c056 0.40 15.20;c153 22.10 35.00;c002 13.30 26.10;c055 6.00 15.90;c148 13.30 26.10;c054 6.00 15.90;c072 20.80 35.00,33.88\r\n7RDSV,ENHU,Bedroom,3,7,Yes,A person standing on their bed watching television and drinking a soda.,bed;cup;glass;television,A person stands on a bed with a hoodie on and drinks something while watching TV in an intense manner.;The person is standing on the end of the bed as they watch television.,c106 0.00 2.90;c132 0.00 8.00;c107 0.00 8.00,6.88\r\nTTVN5,0Z4M,Living room,3,7,Yes,\"A person is holding a camera and walking around a room. They look at the television, and sit down on the couch. Then the person begins smiling and laughing while watching television.\",bed;camera;laptop;phone;sofa;television,\"A person is using their phone as they watch something on the computer.;A person is playing on their phone, then they sit down and start watching tv\",c015 0.00 13.50;c132 12.30 34.00;c151 11.20 19.10;c149 13.00 34.00;c123 15.60 34.00;c131 18.60 33.90;c152 22.70 34.00;c135 13.10 18.00;c087 0.00 12.20;c016 0.00 13.20;c051 13.50 34.00,32.88\r\nHI4NV,WK8I,Living room,6,7,Yes,\"A person walks into the living room, holding some food on some dishes. The person throws some papers aside on the table, then sets the dishes down.\",book;chair;dish;food;plate;sofa;table,A person walks into their recreation room carrying a plate with dishes of food on it. They sit down on a sofa and set the food down on a table in front of them.;A person walks into a  room carrying a tray of food. The person sits down and puts the tray on a table in front of them;A person is walking to a room. The person is also holding some food. The person places the food on a table and sits down on a couch.,c120 0.00 13.00;c062 11.70 18.40;c011 7.00 31.00;c151 0.00 10.30;c119 11.70 18.30;c061 3.40 18.30;c009 11.70 18.30;c118 0.00 18.30;c059 5.80 11.30;c152 14.30 27.60;c032 5.70 12.20;c123 6.00 31.00;c012 7.80 16.60;c063 0.00 18.60,30.04\r\nJZULS,GFWE,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is sitting in a chair in their entryway. The person grasps a drinking glass from the table and leaves.,chair;cup/glass/bottle;dish;glass cup;table,\"A person is sitting in a chair by a door.  This person picks up a cup, stands up and walks away.;A person sitting in a chair in front of a staircase, then picks up an item off a table and walks out of the room.\",c151 0.00 30.00;c120 21.10 25.70;c110 20.80 24.90;c107 21.80 26.10;c059 0.00 27.40;c154 23.00 27.30,29.38\r\nTEV5K,ZDKC,Kitchen,6,7,Yes,A person opens the window and begings to drink a glass of water while holding a broom.,broom;cup;glass;window,A person opens their kitchen window. The person drinks some water while sweeping the floor with a red broom;person opens the shelf takes bottle and drinking water. then the person took a boom and holds it while drinking water,c106 7.10 16.20;c090 0.00 8.30;c106 15.70 23.50;c098 5.20 32.00,30.58\r\nPZ0ND,ENHU,Bedroom,5,7,Yes,A person is in their underwear holding a towel they just used to wipe themselves down after a workout. They toss the towel into a box and begin dressing.,box;clothes;shirts,\"Person takes off one white shirt and attempts to put on another shirt but that shirt is the color black.;A person is in the bedroom they take off their shirt and start to put on another shirt.;Person wiped his head with a black shirt, threw it in a box, picked up a white tshirt and put it on.\",c003 0.40 5.20;c155 0.60 6.10;c148 9.10 13.00;c002 2.50 8.60,11.54\r\nUG4M2,AT5D,Recreation room / Man cave,6,6,Yes,One person at a chair works on homework. Another person with a cup of coffee is fixing a cabinet.,bed;book;cabinet;chair;coffee;cup;door;homework;paper;table;towel,\"A person is sitting and writing. Another person comes in and starts to clean.;A person sitting down writes something onto some paper. Another comes through the door and messes with a door in the background;A man is sitting on a chair and writing in a book which is on his bed, using a calculator as a second person walks by very fast.\",c112 17.80 23.80;c113 13.60 22.50;c059 0.00 32.00;c145 0.00 32.00;c107 10.10 32.00;c014 0.00 32.00;c038 12.70 32.00;c011 0.00 32.00;c097 10.10 15.00;c026 0.00 32.00;c007 13.70 32.00,30.50\r\nKMZDA,BONA,Living room,6,6,Yes,A person is eating food and then sneezing while standing in front of a table in a hallway.,dish;food;plate;sandwich;table,\"Person standing in a room eating food out of a dish, puts the dish on the table then began to sneeze.;A person stands around in a room while dipping food onto a plate and eating it. The person then starts to either sneeze or choke.;A person is standing and eating some food while holding a plate. The person puts the plate somewhere and sneezes a few times.\",c009 24.20 30.80;c061 0.00 25.00;c062 22.20 32.40;c156 0.00 25.00;c118 0.00 26.00;c119 23.30 29.30;c068 24.20 29.30;c065 0.00 26.20;c153 25.10 34.00,32.88\r\nJTBXI,P2J3,Bedroom,6,7,Yes,A person is fixing a sofa in their bedroom. They grab a bag and start tidying up the room.,bag;bed;blanket;chair;floor;pillow,Person push a chair to another location but a bag on the shoulder then go over and straighten bed.;A person moves a chair around before picking up a bag from the floor and fixing their bed.,c020 17.60 42.00;c023 15.60 24.00;c075 26.20 42.00;c077 31.50 37.70;c076 32.30 36.70;c079 31.30 36.50;c077 38.00 42.00;c076 37.00 42.00;c079 35.10 41.20;c127 16.00 23.60,40.75\r\nVU996,SW82,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person walks into their closet holding a pillow and a blanket. The person places them on a shelf. The person turns off the closet light, and leaves the closet.\",blanket;closet/cabinet;door;light;pillow;shelf;towel,A person walked over to a door while holding a pillow. The person then opened up the door and walked into a closet. The person put the pillow into the closet and walked out of the room. The person then closed the door.;A person opens a door to a closet and puts some blankets away inside. The person then turns the light off and closes the door behind them.,c081 8.90 23.30;c104 0.00 4.00;c071 17.20 24.30;c105 21.20 26.80;c070 0.00 22.70;c006 23.40 31.00;c077 7.40 14.70;c034 0.00 15.60;c113 5.40 17.40;c033 0.00 17.60;c037 0.00 18.70;c075 11.20 21.40;c112 24.30 31.00;c114 7.10 21.80;c076 0.00 14.90;c141 0.60 8.10;c097 0.40 9.70;c008 0.40 7.00,30.21\r\nMOTWW,P2J3,Kitchen,5,6,Yes,\"A person is sitting at the kitchen table, eating a sandwich. The person smiles, stands up, and leaves.\",counter;doorway;food;sandwich;table,\"A person sitting on a counter picks up a sandwich and eats it. The person puts the sandwich back down, hops off the counter and walks to the other room.;A person is sitting on a kitchen counter eating a sandwich they get up and walk out of the room.;The person picked up a sandwich and ate it while sitting on the counter. Then the person walked to another room.\",c065 0.10 18.80;c067 2.00 17.00;c156 0.10 18.80;c154 20.60 26.90;c097 25.30 30.70;c010 0.00 25.20;c063 0.30 6.50;c061 0.40 18.80;c069 0.30 18.80;c062 3.60 8.00;c068 3.50 7.80,32.25\r\n2B577,ZDKC,Kitchen,7,7,Yes,A person is eating food from a pot on a stove in a kitchen. They grasp the pot and place it on the table.,dish;food;pot;stove;table,\"A person cooks on the stove and the takes the pot off the stove. The person places the pot onto a table.;A person stirs food in a pot on the store.  This person tastes it, and then picks up the pot and takes it to the table.;A person is tastes food on the stove, then picks up the pan and puts it on a table.\",c009 19.40 32.00;c061 0.60 31.80;c063 0.00 30.90;c147 0.00 20.20;c062 25.20 32.00;c156 0.50 22.60;c147 0.00 3.70;c119 24.60 32.00;c120 16.30 22.20;c118 16.50 30.80,30.71\r\n2XVWK,ARRB,Bedroom,6,7,Yes,A person tidying a bedroom begins throwing groceries through a doorway.,doorway;groceries,The person is clearing off items from a dresser into a clothes basket. Then the person is throwing items into the hallway from another dresser.;A person in a bedroom is putting clothes into a laundry basket and then the person throws several items through the doorway and onto the floor of the hallway outside the bedroom.,,31.92\r\nMHAGN,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is grasping a book in a study. They open the book, place it on a table, and run out of the room.\",book;door;table,\"This person grabbed a book off the shelf and look through it before, opening the door and leaving.;A person grabs a book from a shelf before running away and out of the front door.\",c026 2.90 18.10;c150 14.10 22.00;c009 13.00 18.40;c028 12.70 18.20;c141 16.60 22.00;c025 14.20 18.60;c027 7.00 12.60;c030 0.80 9.20;c006 17.70 22.00;c117 1.40 8.90;c032 5.80 18.60;c097 17.00 22.00,20.96\r\n83FK5,P2J3,Living room,6,7,Yes,A person is snuggling with a pillow and blanket and then tidying up dirty dishes in the living room.,blanket;clothes;dish;doorway;floor;pillow,\"This person picked two bowls up off the floor while holding a blanket in hand.;A person is hugging a pillow and blanket and swaying side to side, then puts them down, picks up two bowls off the floor and walks out the door.\",c070 0.00 43.00;c120 23.00 43.00;c076 0.00 43.00;c078 0.00 19.30;c127 23.60 31.50;c118 24.00 43.00;c000 0.00 43.00;c097 34.20 39.90;c119 26.50 43.00,41.58\r\n1HZGH,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is lying on a sofa snuggling under a blanket. They wake up, stretch and begin putting on their shoes.\",bed;blanket;shoe;sofa,\"A person laying on a couch rises from a sleeping position, sits up, stretches and proceeds to stand put on a pair of shoes.;A person is laying on a couch and wrapped in a blanket. They wake up and begin to stretch and yawn before putting on their shoes.\",c072 0.00 16.40;c055 16.70 32.20;c122 0.00 9.90;c154 5.50 23.20;c133 4.70 18.10;c146 0.00 8.70;c123 7.50 28.10,32.71\r\nMJPAH,QZTG,Kitchen,4,,No,A person is eating some food from a dish while drinking a glass of iced coffee. The person sets the glass down and takes a bag of chips from the shelf.,bag;chair;closet;cup;dish;food;glass;pantry;shelf;table,\"Someone is sitting at a table in the kitchen. This person is drinking something and then they grab something from their pantry.;The person is seated at a table. The person drinks from a glass and sets it down on the table. The person reaches over to a shelf to retrieve a bag and sets it on the table.;Person sitting at the table with with a glass of beverage in hand drank from the glass,reach to the cabinet get a bag of food put the bag down on the table.\",c106 0.00 4.00;c063 3.00 8.00;c059 0.00 8.00;c020 3.40 8.00;c011 0.00 8.00;c118 0.00 5.70;c009 0.90 5.60;c061 3.30 8.00;c023 3.30 8.00;c107 0.00 6.60,6.75\r\nS2S7I,GFWE,Dining room,7,7,Yes,\"A person walks into the dining room, and puts a bag of groceries down on the table.\",bag;groceries;table,\"The person walks into the room and puts a plastic bag on the table. The person then walks away and turns the camera off.;A is walking into a room, carrying a bag of food, and placing it on a table. The person is then walking out of the room.\",c130 5.20 9.90;c009 2.20 10.10;c020 0.40 7.90;c022 0.20 10.80,33.62\r\nW65SM,P2J3,Stairs,5,6,Yes,Person is pouring coffee and eating sandwich. Another person is snuggling with dishes.,cup/glass/bottle;dish;floor;food;sandwich,A person is sitting while hugging a dish. Another person pours a drink then starts eating a sandwich.;a person is sitting a pouring water into a glass. That same person is also eating a sandwich. Another person is sitting and holding some dishes.,c065 15.10 37.00;c156 15.30 37.00;c125 0.00 37.00;c118 0.00 37.00;c061 16.40 37.00;c149 24.30 37.00;c063 16.00 22.70;c107 0.00 37.00;c069 16.50 22.00;c067 16.50 37.00;c108 5.70 16.20,35.96\r\nZR19K,JTAS,Dining room,6,7,Yes,A person is in the dining room tidying up and fixing the sofa and doorknob.,blanket;couch;pillow;sofa;table,A young person folding a blanket  and tidying up the living room;There is a person folding a blanket that was on a sofa.  That person then moves a pillow and starts to staighten something on a table.;She is picking up a blanket from the sofa and fixing some thigs which are placed on table.and folding it and,c075 0.00 14.80;c073 0.00 4.50;c074 10.00 15.00;c071 10.40 15.00;c077 14.80 19.80;c070 0.00 14.60;c012 16.70 32.60;c073 0.00 23.80;c074 0.00 23.40,36.00\r\n5A9O4,I48P,Bedroom,6,6,Yes,\"A person is in a bedroom dressing while talking on a phone, they then walk to a wardrobe and grab a hairbrush.\",brush;clothes;hair;phone;wardrobe,\"A person was talking on the phone while walking around a room. . While talking, the person grabbed a jacket and put it on. The person then picked up a comb from a nearby counter and used it for grooming.;A person is on the phone and putting a jacket on. The person brushes their hair.\",c019 0.00 30.20;c148 1.00 19.00;c000 0.00 6.50;c015 0.00 5.40;c144 15.70 28.10,29.75\r\nARWNX,M7K8,Kitchen,6,6,Yes,A person walks up to their pantry and grabs a box. They put it back and run over to the counter to grab a sandwich.,box;doorway;food;sandwich,\"The person in the kitchen walked towards the door picked up a box turned around put the box down walked to the canter picked up a sandwich;A person is in the kitchen putting a box down, then they run over and grab their sandwich\",c040 2.30 11.50;c061 9.80 32.00;c067 9.80 32.00;c097 0.00 7.40;c043 1.40 8.10;c045 5.80 11.60;c042 5.20 11.50,30.54\r\n5R8BL,ENHU,Closet / Walk-in closet / Spear closet,5,6,Yes,A person opens their closet door and notices a pillow. They throw the pillow behind them and begin undressing while looking in the mirror.,closet/cabinet;clothes;door;mirror;pillow,Person walks into a room comes back out then looks into a mirror while taking off a jacket.;The video is being shot sideways. A person walks into a closet and gets a coat. The person is putting it on in front of a mirror.,c008 0.00 6.60;c096 10.10 22.00;c080 5.70 13.10;c155 12.10 22.00;c154 4.50 10.90;c113 0.00 22.00;c003 19.20 22.00;c079 4.20 9.60;c002 13.90 22.00;c097 2.80 8.50;c141 0.00 4.90,21.17\r\nCTIYN,JTAS,Bedroom,6,7,Yes,\"A person is lying across a chair, sneezing into a blanket.\",blanket;chair,A person is sitting in a chair under a blanket. They sneeze into the blanket 3 times.;A person is sitting in a chair covered with a blanket then sneezes into the blanket multiple times.,c072 0.00 31.00;c059 0.00 31.00;c153 7.50 19.90;c070 0.00 31.00,29.67\r\nB4ED1,B6UG,Home Office / Study (A room in a house used for work),7,7,Yes,A person is pouring water into a cup.  Then a person is putting homework on a desk that had been in a box.,chair;cup;desk;dish;food;glass;homework;paper;table,\"There is a person pouring coffee into a mug.  That same person then sits at a desk and starts looking at some papers.;A person pours a drink into a mug, sits down at a desk, opens a drawer and removes a folder then examines the contents inside the folder.\",c009 1.20 12.80;c106 11.50 23.20;c011 1.90 14.10;c117 5.00 22.20;c151 12.90 18.70;c108 23.50 32.80;c115 17.30 35.00;c118 0.00 15.80;c120 0.00 15.70;c061 0.00 15.80;c110 5.90 10.90;c145 24.00 35.00;c115 17.00 25.60;c014 20.70 35.00;c116 17.80 25.10;c107 5.30 15.70;c109 10.50 15.70;c059 13.20 35.00,34.12\r\nZB5J4,ZDKC,Kitchen,7,7,Yes,A person awakens in their kitchen in a chair using a large towel as a blanket. They open the refrigerator and wash a shelf.,blanket;bottle;chair;door;food;fridge;refrigerator,\"A person sits in a chair covered by a blanket before getting up and opening the fridge.;A person is sleeping and then wakes up and opens the fridge;A person is sitting in a chair in the kitchen asleep with a blanket, and the person wakes up and walks to the refrigerator and opens it and begins tidying the refrigerator.\",c072 0.00 24.50;c059 0.00 24.50;c154 16.20 26.70;c143 25.70 41.00;c074 21.90 28.90;c008 26.30 41.00;c070 0.00 24.30;c146 13.60 24.30;c063 27.30 41.00;c071 19.90 27.30,39.71\r\nH0FI9,GFWE,Pantry,5,6,Yes,A person in the pantry is standing next to a desk while watching some video on their laptop. They are smiling because the video is funny.,book;laptop,A person wearing a green sweater stands in place  and smiles at their computer.;Person in a jacket standing over a computer smiling while looking at the monitor. Then proceeds to look at the camera and lean over.,c051 0.00 29.10;c152 0.00 33.30;c029 7.10 28.70;c149 0.00 33.40,33.58\r\nLCLLN,M7K8,Living room,6,7,Yes,\"One person takes a glass from a shelf, wraps up in a blanket, sits in front of the television and starts eating.\",blanket;cup;dish;floor;food;glass;sofa/couch;television,\"Person picks up glass, cuddles a blanket, and eats some food.;The person took a glass of water from the shelf and drank. The person then set the glass down and snuggled under a blanket while eating food.;A person is sitting, drinking some water from a glass, and eating. The person then takes a blanket from somewhere and puts it on their head.\",c072 8.60 35.00;c107 0.40 7.60;c070 5.90 11.90;c106 1.40 6.90;c156 16.30 33.70;c062 0.00 9.50;c118 0.00 10.00;c123 0.00 35.00;c110 0.00 5.10;c061 0.00 35.00;c073 5.50 11.90;c109 2.60 8.70;c125 0.00 35.00,34.08\r\nVP4OG,DW3I,Living room,6,6,Yes,\"A person lying down reading a book begins drifting off, and starts watching their shoes instead.\",book;shoes;sofa/couch,\"A person is laying on the couch reading a book they put the book down and go to sleep.;A girl is laying on a couch holding a book while she reads, then she lays the book down on her chest and shuts her eyes to nap.\",c026 0.00 18.00;c122 0.00 31.00;c028 13.70 19.40;c032 0.00 17.80,30.12\r\nC0CMQ,CP6Y,Stairs,4,6,Yes,A person runs down the stairs while holding a box. They then open the door at the bottom of the stairs.,book;box;door,\"A person walks down the stairs holding something, and then opens a door and walks through it.;A person is holding a picture. The person is also walking down the stairs. The person then opens a door and walks through the doorway.\",c008 11.80 18.70;c040 0.00 20.00;c026 0.00 20.00;c141 11.10 17.70;c097 13.60 20.00;c006 16.80 20.00,19.17\r\n7LWW3,QBAO,Living room,6,7,Yes,\"One person works at a desk, then tidies up the sofa while holding something to eat.\",bag;book;chair;desk;food;homework;paper;sofa;something;table,A person is sitting on a chair at a desk working on some homework then they start to tidy op a sofa.;Person walks into a room sit down at the table looking at paper gets up to clean off sofa.;A person is walking into a room. The person is sitting and looking at a book. The person is taking food from somewhere and putting into a bag. The person takes the food somewhere.,c014 0.00 26.70;c151 0.20 7.40;c154 23.40 28.00;c059 1.80 27.80;c145 2.70 26.50;c023 31.00 38.40;c023 31.20 46.00;c063 20.20 27.80;c032 1.80 23.60;c117 9.70 18.60;c025 19.80 24.50;c011 2.30 27.60;c027 5.60 10.80,44.83\r\nYYLKT,CP6Y,Hallway,6,6,Yes,A person is standing in the hallway holding a blanket and a sandwich.  The person puts the blanket on the floor and takes a bite of the sandwich.,blanket;clothes;floor;food;sandwich,The person takes off a blanket that they had around their shoulders. The person then starts to eat some food they are holding in their hand.;A person is standing with a towel around their neck in a hallway and they put the towel down on the floor and begin to eat a sandwich.,c126 8.50 16.70;c065 12.50 24.00;c070 0.00 12.80;c154 0.00 24.00;c072 0.00 10.10;c156 13.40 24.00;c155 5.60 12.50;c071 7.70 15.30;c067 0.00 24.00;c061 0.00 24.00,23.21\r\nJVH7Q,I48P,Living room,5,6,Yes,A person is smiling and working on a phone by the window.,phone;window,\"A person is playing around on a phone while leaning against a piano.;A person walks over to a window, holding a cellphone. The person looks out the window and then starts to use the phone.\",c016 0.00 30.00;c092 0.00 3.70;c149 2.70 8.30;c015 0.00 30.00,29.08\r\nN93NK,M7K8,Bedroom,4,7,Yes,A person walks by a bag and leaves a book.,book;purse;table,A person walks across a room carrying a book. The person then sets the book down with the cover showing and walks away.;A person walks a book over to a box in their room and places it next to their purse.,c028 6.10 14.30;c009 6.60 13.50;c029 6.30 10.70;c152 5.00 10.70;c026 0.00 13.50,31.17\r\nSZKDA,V044,Home Office / Study (A room in a house used for work),6,5,Yes,A person walks into their bedroom playing a game on their phone. They sit on the sofa and watch television.,chair;phone;table;television,\"A person walks into the room holding a phone and sits down in a chair. They watch the television and then look at the phone and then back at the television.;A person walks into a room and sits in the chair they are using their phone while the sit and watch tv.;A person walks into a room, sits down in a red chair, watches a movie being shown on a computer, and looks at his phone while watching.\",c015 1.20 41.00;c151 7.30 15.90;c059 10.70 41.00;c132 9.50 41.00;c011 6.90 41.00;c016 4.60 11.70;c131 9.30 16.70,39.62\r\nWXBEO,JQ7D,Kitchen,5,7,Yes,\"A person is pours some water into a pot on the stove, then removes a can of soda from the refrigerator and begins drinking.\",can;cup;food;pot;refrigerator;spoon;stove;water,\"A person is stirring something in a pot on the oven. The person then goes to the refrigerator, grabs a beverage and starts drinking to quench their thirst.;A person cooks some food and pours some water into a pot on the stove, mixing it in. The person takes some soda out of the fridge and drinks it.\",c109 10.10 18.20;c143 19.40 26.30;c107 0.00 11.30;c142 17.90 23.70;c147 0.00 18.50;c143 14.20 21.20;c061 0.20 10.10;c063 14.60 23.90;c110 15.70 24.30;c106 20.90 30.80,29.92\r\nDX845,JTAS,Bathroom,7,7,Yes,A person walking into a bathroom is grasping a laptop. They place it in the sink as the walk towards the toilet.,doorway;laptop;sink,A person walks into a bathroom with their laptop they put their laptop in the sink and go over to the toilet and put the lid down.;Person walk into the room with a laptop  sit it on the bed then walk around the room.,c049 7.60 16.20;c047 5.80 16.40;c097 5.90 12.40,20.96\r\nWKME6,AT5D,Bedroom,6,6,Yes,One person in the doorway drinking coffee leaves the room. Another person is playing in front of a mirror.,bed;coffee;cup;doorway;hair;mirror,A person does their hair in a mirror as another drinks from a cup of coffee.;People are in a room.  One is sitting on the bed looking in a mirror.  The other person stands by the door and walks out.;One person is looking at themselves in the mirror while the person in the background is taking a drink and watching the person in the mirror.,c106 0.00 11.60;c096 0.00 34.00;c135 0.00 34.00;c149 12.10 26.20;c094 4.80 16.10;c093 0.00 34.00;c107 0.00 11.80;c144 2.30 11.80,33.17\r\n6E8GP,ZDKC,Closet / Walk-in closet / Spear closet,5,7,No,The person is opening a box and then smiling into a towel in the closet.,blanket;box;closet/cabinet;clothes,\"A person is looking through a box that is sitting on a counter. The person then opens a closet, pulls out a towel and folds it.;A person picks up a box and puts it back down, they open up their closet and pick up a blanket.\",c000 16.60 34.00;c002 16.60 21.90;c004 16.60 34.00;c040 0.00 8.30;c073 16.90 22.20;c113 10.80 18.30;c075 21.00 32.90;c042 6.60 11.40;c070 18.10 34.00;c043 4.90 9.90;c041 1.60 8.40,32.71\r\nYONR1,M7K8,Closet / Walk-in closet / Spear closet,6,5,Yes,A person is running with a phone while another person is taking a book off the floor.,book;floor;phone,A person jogs forwards and backwards and another person sits on the floor with a book.;There is one person jogging back and forth.  There is a different person sitting in the floor with a book.,c125 9.10 33.00;c026 8.50 33.00;c015 0.00 33.00;c150 2.90 33.00;c154 0.00 32.30;c030 4.80 13.50;c151 5.50 13.80,31.79\r\nIGZZG,CP6Y,Living room,5,7,Yes,\"One person is lying down, laughing and watching television, with a stack of homework nearby.\",book;floor;homework;paper;television,\"a person is lying on the ground while watching TV and reading a book. The person gets up only once but does not stand up, nor walks anywhere;The person is sitting on the floor watching television and reading books.\",c145 0.00 8.80;c132 7.30 19.00;c032 0.00 8.80;c125 5.40 11.60;c124 0.00 9.10,18.42\r\n358JF,M7K8,Kitchen,7,7,Yes,\"A person is working on their laptop at the kitchen table, eating a plate of food. The person takes a glass of water from nearby and drinks.\",chair;cup;dishes;food;glass;laptop;table;water,A person sits down at a table near a laptop. The person opens some yogurt and eats it. The person drinks some water from a glass and then stands up.;A person sits down at a laptop and has soup with a glass of water before leaving.,c106 18.80 28.90;c156 7.80 28.20;c051 1.20 21.80;c151 0.00 6.30;c011 2.30 27.40;c009 20.70 26.80;c059 1.70 27.70;c154 24.10 31.30;c110 18.00 24.70;c061 5.80 21.50;c107 18.60 27.30;c109 4.40 9.70,31.92\r\nQOYH2,4TV7,Bathroom,7,5,Yes,\"A person is looking into the mirror while dressing, the person takes a sip of their coffee that they are drinking.\",clothes;coffee;cup;mirror,A person puts on a jacket in the bathroom.  This person then takes a drink from a cup while standing.;There is a person in the bathroom putting on a shirt.  That same person then picks up a mug and drinks.,c106 17.50 25.30;c148 1.60 18.50;c107 15.00 32.00;c110 15.30 19.80;c002 1.40 10.50,30.83\r\nBHXEI,BONA,Hallway,6,7,Yes,A person opens and closes a medicine bottle then leaves a camera on the floor.,cup/glass/bottle;floor;medicine;phone/camera,\"A person is sitting on the floor they are trying to open a bottle they open the bottle and sit it back on the floor after closing the bottle. Then they get up and walk away.;A boy is sitting on a floor and unsuccessfully twisting the cap off of an object he holds, before getting up onto his feet.\",c125 0.00 28.50;c154 24.80 32.30;c128 0.00 20.90;c152 14.60 20.10;c109 23.10 27.90;c017 26.20 31.80;c015 24.70 31.50;c018 24.20 30.20;c107 0.00 28.00;c110 0.00 3.40,31.50\r\nBQZ52,P2J3,Bedroom,4,7,Yes,A person grasps the doorknob of a wardrobe and opens it. The person takes a shirt and dresses in it.,buttons;cabinet;closet;clothes;door;shirt;wardrobe,\"A person stands in front of a small closet, opens the door bends down, and takes out a long sleeve dress shirt. The person puts on the shirt and buttons it up.;A person opens the closet and gets dressed;A person puts on a shirt and buttons it up.\",c113 0.00 5.90;c141 0.00 3.80;c154 2.90 12.70;c008 0.00 5.30;c148 8.00 39.50;c002 1.90 10.00,40.96\r\n8J5YF,B6UG,Dining room,5,5,Yes,\"A person is sitting at a table with groceries on it, holding a picture.\",book;homework;paper;table,\"A person sits on a table and reads a paper;Person walk into the room sit on the table with a book in hand then began to look into it.;A person sits on a table while reading a magazine. The person moves the magazine around, still reading.\",c151 3.80 8.30;c145 8.90 32.00;c010 4.60 32.00;c115 2.30 32.00;c032 11.00 28.70;c026 2.50 32.00,30.62\r\nKKEX0,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,\"One person takes medicine, then laughs. Another person stops tidying up a towel on a chair to watch.\",blanket;chair;food;medicine;towel,\"Two people are standing in a room, one drinks medicine and smiles while the other folds a towel and places it on a chair next to him.;One person is folding a blanket, and the other is taking medicine;There is one person standing up taking some medicine. There is a different person who folds a blanket and puts it on a chair.\",c037 0.00 14.00;c149 8.20 13.10;c129 0.00 12.20;c034 6.70 12.10;c152 8.60 19.00;c156 6.00 12.10;c071 6.70 14.00;c075 0.00 10.90,17.79\r\nDOYQE,JTAS,Kitchen,6,6,Yes,A person is cooking at the stove. The person stops cooking to drink from a cup then they look at a picture.,coffee mug;cup;food;picture;skillet;spatula;stove,\"a person is at a stove cooking they pick up their coffee cup and take a drink they pick up a picture and look at it and then take another drink of coffee.;The person is cooking food on the stove using a pan and spatula. The person then takes a drink from a coffee cup and reads something.;A person is at a stove cooking in a pan. The person then grabs a cup from the counter, takes a drink, turns and picks up a paper on the other counter while sipping from the cup and reads the paper\",c147 0.00 21.10;c106 18.10 37.00;c107 18.30 37.00;c110 16.90 22.30;c106 19.20 28.40;c084 23.80 37.00;c088 22.80 37.00;c083 22.90 28.40,35.54\r\n2ZDFA,GMOW,Kitchen,6,7,Yes,A person is in the kitchen cooking on the stove with a blanket around their shoulders. They turn off the stove and leave the room.,blanket;doorway;food;pot;stove;towel,A person standing at a cooking with a towel over top their shoulders .The person turns away from the stove and walks out of the room.;A person is cooking on the stove with a towel wrapped around their shoulders they turn around and walk out.;A person is in the kitchen with a towel over themselves preparing a meal on the stove before walking away.,c070 0.00 32.80;c147 0.00 26.90;c033 0.00 34.00;c097 27.30 34.00,32.92\r\n3J9L5,M7K8,Entryway (A hall that is generally located at the entrance of a house),7,1,No,A person is eating and carrying a bag.  Then a person is throwing the bag at the light switch.,bag;floor;food;light,A person walks around a room before tossing a blanket at a wall. The person proceeds to walk away and a dog comes over to sniff the blanket.;A person throws a blanket at the wall and a dog walks over and sniffs it. The person leaves the frame of the camera.,c023 0.00 7.20;c024 2.80 9.00;c022 3.60 8.00;c126 2.90 10.40;c020 0.00 7.10;c156 1.00 6.60;c150 0.00 5.00,29.75\r\nUKSCV,P2J3,Hallway,5,6,Yes,A person is eating groceries while another person is dressing while staring at a mirror.,clothes;food;hair;mirror;shirt;window,\"A person is dressing in a hallway. Another person is standing behind him eating.;The person stands outdoors while putting on a dress shirt and another person stares at them while eating something.;A person is getting dressed and looking in the mirror, while another person is eating\",c156 7.70 23.50;c061 3.30 32.40;c148 0.00 11.40;c001 0.00 10.60;c000 0.00 3.70;c004 5.20 35.00;c092 14.90 22.50;c144 27.90 33.80;c096 14.60 22.90,34.17\r\nCPM4M,WK8I,Kitchen,7,7,Yes,A person opens the refrigerator and grabs milk. They pour the milk into cereal and sit on the sofa. They start eating the cereal.,chair;dish;food;milk;refrigerator;sofa;table,\"A person opens a refrigerator door, takes out a carton of milk, pours it into a bowl, replaces it, then walks to a sofa, sits down and starts eating from the bowl.;A person opens up the fridge, grabs something, pours it and then puts it back in the fridge. They walk out of the room and sit on the couch.\",c143 0.00 4.80;c123 26.10 30.00;c151 22.50 28.00;c156 26.30 30.00;c011 23.80 30.00;c119 12.10 19.20;c120 10.80 20.90;c142 3.30 9.00;c061 2.40 21.80;c059 23.30 30.00;c118 8.00 30.00,29.33\r\nCOBS0,VOOS,Laundry room,6,7,Yes,A laughing person leaves their laundry room holding a blanket and a towel.,blanket;clothes;doorway;towel;washing machine,\"A smiling person takes a towel and blanket off a washing machine and then walks with them to another room and puts them on a sofa.;A person picks up blankets from the laundry room.  This person walks around with them, and then puts them on a chair.;A woman is taking a blanket and laundry from a dryer. She carries the blanket through the doorway and into the living room where she puts it on the couch.\",c033 26.10 32.00;c035 6.70 14.00;c071 24.80 32.00;c034 24.70 32.00;c070 0.30 29.30;c073 0.00 7.00;c152 2.40 32.00;c005 0.00 32.00;c036 23.70 32.00;c149 0.00 32.00;c074 23.70 29.50;c097 4.10 9.20,31.17\r\nEEVD3,ZDKC,Kitchen,3,7,Yes,\"A person is holding the door to the refrigerator open. They pull a glass bowl of fruit out of the refrigerator. After closing the door, they begin eating the fruit.\",dish;door;food;glass;groceries;refrigerator,\"Person walk over to refrigerator open the door get some food out close the door and eat the food.;A person walks into the kitchen and opens the fridge.  This person get a bowl of food out and begins to eat it.;A man is walking to the fridge, which he opens and removes a snack to eat. He sits at the table in a chair as he begisn to eat.\",c143 2.00 7.90;c006 11.40 16.90;c156 18.40 32.00;c061 9.50 18.90;c130 15.40 32.00;c063 7.80 14.10;c118 10.70 32.00;c008 2.00 7.60;c120 8.60 14.30;c142 11.70 17.10,30.83\r\nFNBYE,ZDKC,Dining room,6,6,No,A person is seen pouring themselves some water and eating a sandwich. They begin sitting at the table looking through a box.,box;chair;cup;food;sandwich;table;water,Person sitting down at the table in the chair pour some water in glass then eat a sandwich stand up and open a box.;A person is sitting in a chair. A person is also eating . A person then takes a glass and pours water into it. The person is then standing and  opening a box.,c065 9.70 30.60;c041 14.70 21.20;c151 3.00 13.50;c011 0.00 26.00;c156 20.50 31.80;c154 18.80 28.30;c108 6.10 23.10;c039 26.50 39.00;c063 0.90 8.70;c009 20.90 25.10;c061 1.10 5.30;c109 12.00 25.10;c059 2.00 24.90;c110 6.50 10.80;c106 17.60 24.70;c067 1.50 8.90;c062 3.40 8.50;c107 5.30 27.40,38.29\r\nHEX2V,ZDKC,Bedroom,3,6,Yes,A person is laughing at a television and then running a broom across the floor in a bedroom.,broom;floor;sofa/couch;television,Person sitting in a chair laughing at the television then get up and start sweeping the floor;The person is watching television and laughing before standing up and sweeping the floor.,c127 19.20 31.00;c098 19.30 31.00;c131 0.00 16.50;c149 0.00 16.30;c154 13.10 18.00;c151 12.80 18.30;c132 0.00 18.30;c102 20.20 31.00;c152 14.40 19.70;c123 1.70 17.50,30.29\r\nZZ3HT,EDYS,Basement (A room below the ground floor),6,6,Yes,A person is throwing a wardrobe in a white closet and then closing the closet door.,cabinet;closet;clothe;door;shelf;towel,\"The  person walked towards shelf opened it took a shirt hold it and put it back closed the shelf and walked away.;Person walk over to a cabinet take a towel out then throw towel back into the cabinet.;She is standing by cupboard, nd trying to put  stuff in it.\",c006 8.20 16.40;c113 4.90 14.60;c002 3.60 11.70;c097 1.20 5.70;c035 2.40 8.00;c081 7.00 11.30;c112 7.70 15.40;c114 3.10 15.40;c036 6.80 12.40;c000 3.40 11.00;c004 4.30 10.80;c034 4.10 11.50;c008 6.30 12.50;c003 3.10 15.20;c033 3.10 15.20;c001 2.90 15.70;c154 0.00 36.00,35.08\r\nLKNZD,EDYS,Closet / Walk-in closet / Spear closet,6,6,Yes,A person runs a vacuum through the closet.  They laugh when a pile of clothes on the floor blocks their way.  They top and move them to a shelf.,closet;clothes;door;floor;shelf;towel;wardrobe;window,\"A person is throwing clothes on the floor then picks up the clothes and puts them in the closet. They then begin to tidy the room.;A person is cleaning out there garage;A man walks into a closet with a cupboard, picks something off the floor and places it in the cupboard. Reaches a gets a hose from the top of the cupboard, places it beside the cupboard and walks out\",c008 4.80 11.80;c126 0.00 6.50;c000 0.20 8.00;c003 1.70 9.00;c001 6.10 30.60;c081 6.50 28.10;c113 0.20 9.30;c151 3.30 10.10;c082 14.10 22.90;c090 14.40 21.30;c035 4.50 12.60;c036 0.30 4.80;c033 0.20 4.70;c114 3.00 30.20;c127 4.60 14.00;c097 0.00 5.50;c034 0.00 5.20,33.17\r\n3WMV4,CP6Y,Living room,6,7,Yes,A person looks out the window while eating a sandwich and drinking a glass of water.,dish;food;glass;sandwich;water;window,A person is eating while looking out their dining room window.;A person looks out of their window while eating a snack while standing in their living room.,c092 0.00 18.00;c065 3.10 9.10;c156 3.10 9.10;c118 0.00 18.00;c067 0.00 18.00;c106 1.50 5.60;c106 8.20 12.30;c061 0.00 18.00,17.38\r\nVXOE4,M7K8,Kitchen,6,6,Yes,\"A person is in a pantry standing on a chair, they then sit on the chair and start working on their laptop.\",chair;laptop,\"A person steps up onto a chair and then steps down.  The person picks up a laptop from the counter and steps back to sit down in the chair with it.  The person then stands up and walks across the kitchen with the laptop.;A person gets up on a step and then down, picks up a laptop, opens it and sets on the step.\",c060 0.00 10.10;c154 19.90 24.70;c049 20.70 32.00;c059 7.50 24.40;c051 11.00 25.00;c052 11.00 26.60;c050 7.20 11.40;c047 8.80 26.30;c151 8.20 12.50,31.25\r\nPEWH4,GFWE,Stairs,6,7,Yes,A person is grasping a sandwich while lying on a pillow.,floor;food;paper/notebook;pillow;sandwich,A person is sitting on the stairs they have a pillow they lay down on the stairs with their pillow and they eat a sandwich.;A person lays on the stairs and eats a sandwich,c067 0.00 33.00;c151 0.00 4.90;c156 9.70 24.50;c124 2.80 32.00;c061 0.00 33.00;c115 0.00 33.00,31.62\r\nDCRI5,ZDKC,Closet / Walk-in closet / Spear closet,5,1,No,\"A person sneezes as they're putting their clothes on a shelf in their closet.  They're watching the floor carefully as they reach for the doorknob, so that they don't step on their shoes on the closet's floor.\",closet;clothes;door;shelf,\"A man opens his closet door. Once done in the closet, the man tries to close it but cannot, as it is being blocked by an object.;A person opens a closet door and puts something on the top shelf. The person then continues to look inside the closet.\",c081 3.80 9.10;c141 10.20 31.00;c153 5.90 11.90;c113 0.40 5.50;c006 12.40 31.00;c003 3.80 9.10;c001 3.60 9.90;c000 0.00 8.70;c008 0.00 4.90;c112 8.00 12.80,30.25\r\nUG8WG,ENHU,Living room,4,,No,A person is undressing in the closet when they take out their phone. The person sits in a chair and begins watching something on their phone.,,A person carrying food enters their bedroom but trips and falls spilling everything across the room and grabbing their hip in pain.;A person walking into a room carrying a cup and plate. A person tripping over a pillow in the middle of the room.,,8.21\r\nDJ87X,GFWE,Bathroom,5,6,Yes,\"A person is looking out the window, then goes to the sink and washes their face.  The person drinks some water from the faucet then takes their phone out of the cabinet.\",cabinet;cup/glass/bottle;faucet;hands;mirror;phone;sink;water;window,\"A person walks to the window and stands looking out, then they wash their face and get a drink from the faucet, and finally get a phone out from under the cabinet and look at it and the mirror.;A person looks outside from a bathroom. The person turns the sink on and attempts to drink from it. The person pulls their phone out;A person looks out the bathroom window, then washes their face and drinks from the faucet then grabs a cell phone from under the sink.\",c112 21.50 28.40;c092 0.00 9.60;c015 21.80 33.00;c096 6.20 16.50;c113 20.80 28.70;c106 12.80 24.40;c018 19.20 26.80;c139 6.40 11.80,32.12\r\nLD9EC,AT5D,Bedroom,6,6,Yes,Person is washing clothes while smiling as another person is holding a camera.,floor;phone;towel;wall,A person is standing on a wall with a phone while another person is on the floor with a towel.;A person is standing against a wall holding a cell phone while another person is on his knees scrubbing the floor with a shirt;A person is standing and playing with a phone. Another person is sitting on the floor. That person is also tidying up some clothing.,c015 0.00 32.00;c033 0.00 3.90;c125 0.00 2.60;c127 0.00 32.00;c038 0.00 32.00;c016 0.00 32.00,30.92\r\nS5YJG,P2J3,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,\"A person is drinking coffee, while a other person is walking in circles with a broom.\",broom;coffee;cup;floor,\"Two individuals wearing plaid shirts stand in a room, one sweeps the floor in circles as the other sips from a coffee mug and watches.;A person is sweeping the floor in a living room.  Another person is watching the person and is drinking some kind of drink.\",c106 0.00 33.00;c102 0.00 33.00;c098 0.00 33.00;c107 0.00 33.00;c127 0.00 33.00,32.00\r\nBDJ84,JTAS,Bedroom,7,7,Yes,\"A person smiles as they fold a towel and put it onto the shelf. The person fixes the stack of towels, making them neat.\",blanket;closet/cabinet;shelf;towel,\"A person wearing a grey sweatsuit grabs a pink blanket from a nearby shelf, folds it, and then puts it away in a closet behind them.;A person is folding and putting laundry away.\",c081 19.30 26.40;c033 0.00 26.40;c152 0.50 8.70;c071 0.00 32.00;c114 0.00 32.00;c035 0.00 4.10;c034 18.70 29.90;c037 0.80 22.40,30.58\r\n5TM3H,P2J3,Kitchen,7,1,No,A person is sitting on a sofa while working on homework.,bag;chair;food;groceries;grocery;sofa,man sits in chair and does something but I can't tell what;Person sitting in a chair while adjusting a item sitting in the kitchen with a item on the counter.;A person in a blue checkered shirt appears to be sitting on a chair in a kitchen and working with some kind of small kitchen appliance.,c020 0.00 35.00;c123 0.00 35.00;c061 0.00 35.00;c059 0.00 35.00,33.71\r\n77HKW,ENHU,Closet / Walk-in closet / Spear closet,4,7,Yes,One person is in the doorway of the closet pouring and then drinking medicine.,bottle;doorway;medicine,\"A person wearing blue jeans and a red, unbuttoned, plaid shirt stands in front of a mirror before looking up and down and beginning to button the shirt.;The person stood in front of a mirror and unscrewed a bottle. The person poured the contents into a cup and drank from it.\",,10.00\r\nWDF45,ENHU,Kitchen,7,7,Yes,A person is watching something on their phone in the kitchen. They are smiling because it is funny. They start running around looking for a blanket.,blanket;phone;pillow;table,A person looks at their phone and then puts it on a table. The person grabs a blanket;A person is standing in a room while looking at a phone. The person then sets the phone on a nearby table. The person then walks over and picks up a blanket that is laying on a nearby chair. The person then walks back over to where the phone was left.;A person stands around in the kitchen looking at their phone. The person puts the phone down and picks up a blanket from a nearby table.,c070 8.30 14.00;c015 0.00 8.90;c017 5.30 10.20;c009 5.40 10.10;c149 0.20 6.90;c075 7.50 14.00;c073 6.00 13.10;c016 0.00 9.00;c152 0.40 7.20,13.00\r\nIDXM0,I48P,Garage,5,7,Yes,\"One person opens a box of shoes, then leaves the garage with a book.\",book;box;shelf;shoe,\"A person wearing red stands behind his vehicle inside his garage and rummages through boxes, the individual then picks a book out of a box, inspects a few pages and leaves.;A person in a garage is unpacking items from a box and placing them on a shelf, then finds a book, starts to read it and leaves the room.\",c054 9.20 20.20;c026 18.90 36.30;c041 0.00 7.10;c082 9.60 20.20;c030 18.40 22.50;c032 19.10 36.30;c027 20.20 27.70;c081 9.40 20.30,36.62\r\nFKK5R,CP6Y,Bedroom,7,7,Yes,\"A person is sitting in a chair drinking a cup of coffee.  The person stands up and turns on the light, waking another person on the bed with their head on a pillow.  The person with the coffee laughs.\",bed;chair;coffee;cup;glass;head;light;pillow;sofa/couch,\"A person sat in a chair and drank coffee for a while before getting up to turn on light, waking up another person sleeping in the same room.;The person is sitting in a chair, drinking from a mug, walks over to the lights and wakes up a person laying on the couch.\",c106 0.00 8.10;c104 12.70 19.90;c059 0.00 8.20;c154 3.70 9.70;c107 0.00 27.00;c122 0.00 24.90;c146 18.10 27.00;c133 18.40 27.00;c134 0.00 27.00,26.38\r\nEK5K1,ZDKC,Bedroom,3,5,Yes,A person in their bedroom is watching a video on their phone. They begin eating some food they found in a box. They look up at the light and start sneezing.,bed;box;food;phone,\"A person interacts with a cell phone then puts it down and opens a box, taking out a lollipop and then sneezing.;A person is sitting on a bed and looking at their cell phone and then the person takes a lollipop from a box and then sneezes.\",c040 20.30 35.50;c041 21.20 36.80;c042 30.20 36.40;c063 29.20 36.00;c017 18.80 24.30;c043 19.50 36.40;c061 30.90 44.00;c044 22.90 35.10;c135 0.00 44.00;c153 39.90 44.00;c015 0.00 23.50;c156 31.50 39.80;c016 0.00 22.80,42.79\r\nPXY5Q,0Z4M,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person opens the cabinet and takes out a glass of water.  The person puts the water down on the table, then walks to the wall and looks at a picture hanging there.\",cabinet;cup;dish;glass;picture;table;wall;water,\"The person opened a refrigerator door,get a can of drink drank from the can walked to the picture on the wall adjusted the picture.;The person took a cup from a desk cabinet and then drank from the cup. The person then looked at a picture on the wall.\",c009 19.00 24.60;c113 4.00 10.20;c112 9.00 13.00;c106 11.00 22.00;c088 23.00 33.00;c109 19.00 24.30;c107 7.00 23.50;c118 6.90 23.80;c083 24.10 32.20;c110 6.40 13.30,32.25\r\n0DVVD,JQ7D,Bathroom,7,7,Yes,A person closes the bathroom window begins playing with a vacuum.,vacuum;window,\"A person closes a window, then grabs a vacuum and vacuums the floor.;A person is opening a window in the bathroom then they get the vacuum and start vacuuming, then they pick up the vacuum.\",c137 7.80 31.00;c089 2.80 14.30;c090 0.10 10.30,29.62\r\nIUETR,ZDKC,Bedroom,6,6,Yes,A person opens the door and walks through the doorway. The person sneezes.,door,A person opens a door and walks into a bedroom. They sneeze then look around.;Person opens up the door go into the bedroom sneeze and then proceed to look around.,c008 0.00 8.10;c097 1.90 8.10;c153 9.50 15.50;c141 0.00 4.80,20.67\r\nQMHK8,ENHU,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person enters a bathroom and closes the door behind them.  The person hangs a plastic grocery bag on the doorknob.  The person undresses (removes socks and outer shirt) and puts the clothes into the bag hanging on the doorknob.  The person then takes the bag off the doorknob and throws the bag onto a shelf, and leaves the bathroom.\",bag;clothes;door;groceries;shelf;shoe,\"person walks into room holding a bag, puts it on door handle, then puts shoes in the bag and takes off sweater to put in bag, then puts bag on shelf;A person walks into a room, closes the door and puts a plastic bag on the handle.  This person puts their shoes and sweatshirt in the bag and puts it on the shelf, and walks out.;A person enters a room, closes the door, hangs a plastic bag on the door knob, then removes their shoes and sweatshirt and places them into the bag, then puts the bag on a shelf and walks out.\",c081 42.10 54.70;c006 0.90 14.10;c155 20.10 44.40;c056 12.70 21.70;c054 17.10 26.10;c141 1.20 9.60;c008 50.40 60.00;c020 0.00 16.70;c057 12.10 23.80;c001 18.30 45.50;c002 37.70 55.00;c023 39.50 46.40;c022 9.50 17.30;c097 0.00 8.20;c000 31.00 48.80;c021 7.40 16.40;c053 10.70 24.90;c082 42.40 56.70;c023 49.20 54.70,58.71\r\nYW5QQ,M7K8,Home Office / Study (A room in a house used for work),5,7,Yes,A person is working at the desk in the study.  The person looks at a picture on the desk and gets up and grabs a blanket that is laying in the doorway.  The person then closes the door.,blanket;chair;desk;door;paper/notebook;picture;table,Person sitting at a desk writing with a pen then gets up from the chair and shut the door.;A person is sitting in a chair while writing. The person picks up a photo and looks at it. The person stands up and walks to the door before closing it.,c011 0.00 22.60;c084 8.90 22.00;c006 22.90 29.70;c083 7.90 20.10;c086 17.70 22.30;c141 20.40 29.20;c059 0.00 22.80;c154 18.60 23.70;c009 16.50 21.80;c145 0.00 11.60;c088 8.10 21.20,31.92\r\nOQ54Y,M7K8,Kitchen,7,7,Yes,\"One person pours something from a refrigerator, then sits at a desk and starts working.\",chair;cup;dish;door;food;glass;homework;paper;refrigerator;something;table,A person opens a refrigerator door and grabs some milk. They pour the milk into a glass and then sit down at a table and drink it and begin working on homework.;Person walks over to the refrigerator open it up then get some juice out pour into a glass put it back into the refrigerator drink it on the way to sit at the table.;A person is opening a fridge and taking some food out of it. The person then pours some juice into a glass and drinks it. The person sits down.,c142 5.40 10.30;c143 0.00 4.90;c106 19.60 26.70;c143 13.40 18.20;c145 26.20 34.60;c006 3.10 10.30;c063 1.20 7.60;c008 0.00 10.30;c154 0.00 29.20;c118 6.50 15.40;c059 25.40 29.70;c011 26.60 31.10;c107 6.30 10.80;c109 31.00 35.00;c110 31.80 35.00;c151 31.10 35.00;c108 31.60 35.00,33.75\r\n9TM1K,AT5D,Home Office / Study (A room in a house used for work),5,2,Yes,\"A person is pouring some medicine on a desk, then leaves with a book.\",book;box;medicine;table,\"Person sitting opening and looking into a box, pick a book off the table then walks out of the room.;A person is sitting on a ledge. The person opens a box and looks at papers contained within. The person then takes a book from a table and opens it. The person then closes the book and sits up from the ledge. The person then walks away.;A person is sitting there taking stuff out of a box, the pit he box down and grab a book.\",c009 21.90 27.90;c027 24.50 29.90;c154 23.60 29.90;c041 0.00 8.10;c010 0.00 30.50;c115 8.00 13.20;c117 6.90 14.40;c042 23.90 28.10;c043 0.00 3.50;c044 0.30 25.30;c039 22.50 27.90;c025 25.10 32.00;c040 0.00 27.60;c026 25.00 32.00,30.58\r\n1BBIY,ZG5N,Closet / Walk-in closet / Spear closet,6,6,Yes,The person grabbed the picture off the shelf as the person was leaving hoping no one would see their taking it.,closet/cabinet;clothes;door;phone/camera;picture;shelf,\"A person is walking into a closet and begins looking through things, they then take a picture from a shelf and leave.;A person walks into a closet, rifles through clothing on hangers, picks up a framed picture, opens the door, leaves the room and closes the door.;A man came into the room, and looked through the closet. He then took a mirror and left.\",c004 7.40 16.90;c008 17.60 23.30;c087 19.60 24.90;c114 4.40 18.90;c112 2.30 11.80;c006 2.20 12.60;c082 7.80 17.40;c083 18.60 24.10;c097 3.00 7.50;c086 20.10 25.60;c141 3.20 9.60;c088 17.70 24.40;c084 19.70 25.00;c113 16.80 23.40,26.58\r\nFTYFA,AT5D,Hallway,5,7,Yes,A person turns on a light and then opens a door. They begin sitting on a chair while drinking a glass of water.,chair;cup;door;glass;light;water,\"A person opens a door, walks into a room, turns on a light, picks up a glass and drinks from it as they sit down in a chair.;A man enters through the door and turns on the light, then picks up his drink and begins drinking while sitting in a chair.\",c059 14.90 31.00;c008 0.00 4.90;c106 11.10 31.00;c104 4.10 8.80;c151 14.70 31.00;c097 0.00 4.90;c141 0.10 4.60;c107 8.60 31.00;c110 7.90 13.00;c105 0.60 5.50,30.38\r\nSX248,CRN5,Bathroom,7,7,Yes,A person is washing their hands in the sink then starts tidying up the area around the sink with a cloth. The person throws a towel through the doorway.,clothes;doorway;floor;hand;sink;towel,A person washes their hands with soap and water before wiping off the sink and toweling their hands.;A person washes hands then wipes off the water.,c038 25.30 36.90;c001 33.90 40.50;c139 6.00 28.40;c126 35.50 40.30;c036 32.00 36.90;c035 25.30 29.70,43.25\r\n9J0RB,ENHU,Bedroom,5,6,Yes,A person is watching a television in their bedroom while drinking a glass of milk. They  look in a mirror and tidy up the room.,bed;cup;dish;milk;mirror;pillow;table;television;tv,\"This person appears to be in their bedroom, watching tv, drinking milk, looking in mirror, picks up pillow and tosses it on bed.;A person holding a glass of milk walks towards a shelf, sets down the glass, picks up and fluffs a pillow, then throws the pillow to the side.;A person is standing in a room watching television while drinking something from a glass and they set the glass down and look into a mirror and the pick up a pillow from the floor and throw it somewhere out of view.\",c106 0.00 7.00;c080 7.70 14.60;c132 0.00 4.40;c077 8.00 14.00;c118 0.00 6.40;c119 1.80 6.40;c107 0.00 7.00;c109 2.10 7.00;c096 3.30 9.70;c076 8.00 14.30;c079 7.80 12.20;c009 1.60 6.80,15.62\r\n95GB4,4UGC,Living room,4,7,Yes,\"A person stands in the living room, playing with their phone. The person takes a picture of something, then washes their hands with hand sanitizer.\",camera;hand;phone;picture,\"There is a person checking their phone. That same person then takes a picture with a camera and uses hand sanitizer.;A person is standing and playing with a phone. The person puts the phone away and takes a picture. The person cleans their hands.;S person punches something into a mobile phone, then puts it in his pocket, takes a picture with a camera and uses sanitary gel on his hands.\",c016 0.00 11.20;c015 9.00 19.60;c087 8.80 19.80;c019 0.00 11.80;c139 18.30 31.00;c017 5.10 13.10;c018 9.30 16.60,30.04\r\n136V6,AT5D,Living room,6,6,Yes,\"A person walked in through the front door, closed the door behind them, kicked their shoes off and sat on the sofa.  After decompressing for a few minutes by reading a book, the person decided to tidy up the room.\",bed;book;broom;chair;door;shoe;sofa,\"A person walks in a door and kicks off their shoes.  They then go over to a sofa and recline on it while they flip through a book.  Finally, they pick up a broom and tidy up.;A person enters a home, quickly shuts the door while kicking of their shoes. The person then heads to a sofa and briefly sits down before getting back up and grabbing a duster.;A person is walking through a doorway and taking off their shoes. A person is then lying down on a bed and reading a book. The person puts the book down and walks to pick up a broom.\",c025 22.70 28.20;c027 13.50 18.20;c122 13.90 19.40;c058 5.00 10.50;c008 0.00 5.20;c151 13.00 18.40;c102 29.90 35.00;c026 12.10 31.00;c032 13.70 26.70;c057 5.00 10.70;c006 1.10 8.30;c098 29.50 35.00;c059 11.60 17.30;c029 21.20 26.70;c135 12.30 31.70;c097 0.00 5.40;c100 30.20 35.00;c154 26.30 32.20;c030 11.80 17.30;c149 22.50 28.90;c141 2.60 8.30;c028 26.00 31.00,34.04\r\n27ZT9,EDYS,Closet / Walk-in closet / Spear closet,6,5,Yes,A person is sneezing into a phone and then smiling while using the vacuum in the closet.,phone;shelf;vacuum,\"A person is talking on their phone in the garage they pick up the hose and put it in the closet.;A man is standing in a garage and talking on a phone, then picks up a garden hose and puts it down while continuing to talk.\",c019 1.00 28.70;c138 15.20 31.20;c152 6.60 12.20;c018 0.00 5.00;c081 12.70 29.60;c017 0.60 16.20;c015 0.80 32.50,32.96\r\n3588V,CP6Y,Stairs,7,7,Yes,A person holds groceries as they walk up the stairs laughing. Another person walks up the stairs carrying a chair.,bag;chair;groceries,\"Two people walk up the stairs, one is holding a chair and one is holding a book;A person is walking up the stairs carrying a bag of various items.  Another person is carrying a foldable chair and also walking up the stairs.\",c020 1.00 19.00;c152 5.20 10.00,18.33\r\nVEH0A,ENHU,Dining room,5,7,Yes,\"Person is lying on floor fixing door, then starts closing door and starts drinking coffee.\",cabinet;coffee;cup;door;floor;mug;table,\"Person sitting on the floor looking into a cabinet, Taking a cup from the table and drinking coffee out of the cup;A person is sitting on the floor and putting a book in a cupboard. Then he reaches for his cup of coffee and he begins to take a drink.;A person is sitting on the floor and closing a cabinet. The person is then grabbing a cup of coffee from a table and drinking it.\",c106 5.80 13.00;c006 0.00 5.50;c125 2.70 7.20;c113 0.00 2.50;c141 0.00 5.50;c007 0.00 4.40;c107 3.20 13.00;c140 0.00 4.40;c112 0.00 4.40;c110 3.80 9.30;c124 0.00 6.50,11.50\r\nYFJ9U,GE1M,Stairs,6,6,Yes,A person holding a box of pillows can be seen leaving the entryway.,box;clothes;door;floor;pillow;shoe,A person walks down steps and puts on shoes before picking up a box and heading out the door.;A person walks down the stairs and picks up a box and leaves.,c040 12.60 31.00;c127 12.30 18.50;c008 19.40 27.50;c055 2.20 13.10;c097 19.40 31.00;c043 11.80 31.00;c148 1.80 13.20;c141 18.60 27.50;c006 25.60 31.00;c077 15.00 21.70,30.29\r\nLLQBB,JTAS,Recreation room / Man cave,7,5,Yes,A person is holding a bag. The person starts laughing as they put the bag down and take off their shoes,bag;clothes;dishes;doorway;shoe,\"Person comes into the room  pull off shoes and then sneeze with hand over mouth.;A person walks into a room carrying a bag. The person throws the bag down, then takes their shoes off, finally laughing to themselves.\",c024 13.80 21.50;c149 26.10 33.00;c057 17.00 30.70;c001 18.00 33.00;c022 10.10 21.80;c058 14.40 22.50;c056 14.60 25.50;c152 25.60 33.00;c155 23.80 30.40;c020 12.00 21.70;c097 12.20 16.50,32.21\r\n0OP1K,ZDKC,Living room,5,6,Yes,A person in the dining room is drinking from a glass and standing in a doorway. They look in a mirror on the wall and leave.,cup;doorknob;doorway;glass;mirror,\"A person is drinking from a cup, then this person looks into a mirror and walks into the other room.;A person is drinking from a glass, then walks over to a mirror and looks at face, then walks out of the room.\",c096 15.10 30.10;c106 0.00 16.40;c107 0.00 33.00;c141 0.00 22.00,31.83\r\nVINM0,I48P,Living room,5,5,Yes,A person is holding shoes  before putting them down and laughing while grasping a broom.,broom;floor;shoe;window,\"A person puts his shoes down on the floor and then picks up a broom and looks out the window;A person is in a living room area while holding a pair of shoes, and the person puts down the shoes and picks up a broom and looks out the window and then begins to sweep.\",c054 2.70 9.60;c149 7.30 36.00;c127 27.40 36.00;c053 0.00 8.50;c092 15.20 31.70;c102 5.40 36.00;c100 4.70 10.10;c058 4.00 8.30;c098 5.60 36.00,35.12\r\nSOZ1G,ENHU,Bedroom,5,7,Yes,\"Person is lying in bed undressing, then starts drinking water from glass.\",bed;clothes;cup;dish;glass,A person is laying on a bed they sit up and grab a glass and take a drink they start to get up and take off their shirt.;A person is lying in bed.  This person sits up and drinks from a cup on the end of the bed.;A person is lying on a bed and is awakened. The person sits up and reaches for a glass of water. The person drinks some water. The person starts to stand up and undress.,c134 0.00 5.00;c106 4.00 12.00;c154 9.00 13.00;c155 9.00 13.00;c118 4.00 12.50;c120 3.40 8.10;c146 0.00 7.10;c133 0.00 7.10,11.67\r\nDV6CH,JTAS,Bedroom,5,7,Yes,A person opens their closet and is seen putting clothes in their closet. They begin smiling and then grasp the doorknob.,closet;clothes;door;hair;shelf,\"Person opens closet, picks up clothes on floor, folds it and place on top shelf. Then picks up clothes on floor, folds it and place on bottom shelf. Person then touches hair, smiles, walks towards door and grabs handle.;This person opened up their closet and placed two pairs of pants in the closet.;Person is picking up clothes from the floor then go over to open the down.\",c141 28.00 33.00;c002 5.00 25.00;c113 0.00 6.20;c152 24.20 30.60;c001 14.40 27.40;c000 5.20 20.00;c081 15.90 20.70;c008 0.00 5.80;c004 6.90 19.40;c149 24.80 32.20,31.83\r\nFTNCO,CP6Y,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person in the entryway is working on something on their phone. They start throwing some clothes at another person who is watching them oddly.,blanket;clothes;doorway;floor;phone;pillow;something;towel,A person admires another person. The other throws some clothes at the admiring person;A person standing by a door throwing two articles of clothing at another person. The first person is looking at a cell phone.;A person is standing. Another person is standing and playing with their phone. The second persons then throws clothing at the first person.,c015 0.00 18.00;c016 0.00 18.00;c000 0.00 7.60;c003 3.50 13.70;c080 2.50 9.20;c126 3.10 14.70;c074 3.30 13.10;c152 2.60 18.00;c036 3.50 13.10,16.54\r\n0LDN3,CP6Y,Kitchen,7,7,Yes,\"A person runs into the kitchen, talking on their phone. The person opens the refrigerator, takes something out, and closes it. The person quickly leaves.\",doorway;food;phone;refrigerator;sandwich;something,\"A person runs into the kitchen and opens the refrigerator. They remove something, close the refrigerator, and leave.;A person jogs around a staircase to a refrigerator, opens the fridge and takes something out, then jogs back around the staircase;A man walks quickly into a kitchen holding something, then opens the fridge, removes something, and trots away at the same pace.\",c015 0.00 18.00;c150 0.00 7.00;c143 5.00 10.00;c142 10.00 15.00;c067 9.30 18.00;c063 8.60 13.10;c097 3.30 7.60;c061 9.70 18.00;c069 9.70 15.10,16.71\r\nD01MJ,JTAS,Living room,4,6,Yes,\"A person is just waking up with a towel draped over them.  They stand up, smile, and walk towards the doorway.\",blanket;chair,\"A person is sleeping on a chair.  The person then awakens from their slumber and stands up.;A person is in the chair sleeping then wakes up and gets up from the chair.;A person appears to be sleeping in a recliner in a darkened room, then stretchs, gets up and walks away.\",c154 28.90 35.80;c059 0.00 31.40;c146 19.00 32.00;c072 0.00 35.40,37.46\r\nHZSDD,JQ7D,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,\"The person is standing in the entryway talking on the phone, then finishes, pickups the broom that's been leaning in the hallway, and leaves the room.\",broom;phone,\"A person is standing there talking on the phone, they hang up an grab a broom.;A person is standing in an entryway and talking on a cell phone, and the person then picks up a broom and walks out of view carrying the broom.\",c100 19.30 24.70;c019 0.00 21.50;c015 0.00 22.90;c152 0.00 6.60;c017 18.40 23.10,25.50\r\nICQZX,GFWE,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is opening their wardrobe and taking things out of it. Then, standing, the person takes a book from the wardrobe and opens it.\",book;closet;clothes;door;floor;shelf;shoe;wardrobe,\"Person walks into the closet to grab some shoes and a book.;A person is kneeling on the floor at a closet. The take shoes out of the closet stand up and pick up a book and start reading.;A person opens a closet door and takes things out, including a book that the person stands reading.\",c027 13.70 19.80;c026 13.60 31.00;c054 2.40 13.30;c113 0.00 5.80;c004 3.20 16.60;c114 0.00 31.00;c008 0.00 6.70;c053 3.80 9.20;c030 12.50 18.00;c141 0.00 6.00;c032 15.40 31.00;c151 0.00 3.50;c125 0.00 14.50;c154 9.40 14.70;c056 2.40 8.10,30.46\r\nSZVCR,BONA,Stairs,3,7,Yes,A person is running down the stairs holding a bottle of medicine.  The person throws the medicine onto the shelf and stops to look in the mirror.  The person fixes their hair and laughs at themselves.,hair;mirror,\"A person walks down some stairs holding a pen. The person puts it down and messes with their hair while looking at a mirror.;A person walks down some stairs, throws something onto a shelf, and then fixes their hair in a mirror.\",c096 8.10 31.00;c144 8.30 29.80;c152 25.00 31.00;c094 25.00 31.00,30.12\r\nXE19C,SW82,Bathroom,7,7,Yes,A person is drinking a cup of coffee.  The person then puts the cup in the sink and closes the door.,coffee;cup;dish;door;glass;hair;mirror;sink,\"A person is carrying a coffee cup and walks across a room into a bathroom. The person sets the cup on the counter and looks into a mirror, adjusting their hair. The person moves the cup to the sink and then walks out of the bathroom and closes the door.;A person walks into a bathroom and looks at themselves in the mirror. The person plays with their hair and puts a cup in the sink.\",c109 0.90 8.50;c110 0.00 5.60;c006 24.60 31.00;c107 0.00 6.30;c096 1.90 25.70;c097 0.00 5.00;c144 6.80 22.50;c119 3.00 9.00;c141 24.60 31.00,30.33\r\nXK92L,ENHU,Kitchen,7,6,Yes,A person is throwing groceries into the sink while running around the kitchen.,closet/cabinet;coffee;counter;cup;dish;drawer,\"A person stands in the kitchen holding a cup of coffee.  They put it down on the counter, walk away, then walk back and open a drawer.;A man stands by the counter in the kitchen preparing a drink, then briefly leaves the frame and returns.;One person is standing in the kitchen. That person puts something on the counter top and then opens a drawer.\",c107 0.00 3.80;c119 0.50 6.90;c109 0.00 5.40;c120 0.00 4.20;c113 7.00 11.00;c118 0.00 5.20,9.92\r\nXOOPP,GE1M,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person is standing on a chair putting a picture on the wall.,chair;picture;wall,A person brings a chair into a hallway.  This person then stands on the chair to position a picture on the wall.;A person walks in carrying a chair. The person puts the chair down and stands on it to put a picture up.,c084 0.00 11.20;c086 6.70 15.20;c088 12.10 17.80;c060 6.50 18.00;c154 6.00 18.00,17.21\r\nX95D0,CP6Y,Living room,7,7,Yes,\"A person is lying down on a couch in the living room. They have an itch in their nose, and so they look up at the light and begin sneezing. Then, they take a glass of water and start drinking from it.\",cup;glass;sofa;table;water,A person takes a nap on a couch in their living room before sitting up and drinking a glass of water.;A person is lying down on a couch and they sit up and drink from a glass of water they retrieved from a coffee table.,c122 0.00 16.80;c106 17.20 32.00;c146 11.70 17.80;c009 27.60 32.00;c146 0.00 16.20;c123 14.90 32.00,31.12\r\n3U6HO,CP6Y,Closet / Walk-in closet / Spear closet,7,7,Yes,One person is sitting drinking coffee while another is fixing a shelf with clothes stacked on top.,chair;coffee;cup;dish;shelf;water,\"One person is sitting in a chair drinking a cup of water. Another person is fixing a shelf.;A person sits while drinking from a mug. Another person stands by while fixing a shelf;People hang out in a room, one is drinking as the other is playing with something on the wall.\",c106 0.00 4.80;c082 0.00 5.60;c059 0.00 17.00;c118 0.00 17.00;c107 0.00 17.00,16.42\r\nOKXIQ,ZDKC,Kitchen,4,7,Yes,A person rifles through their cabinet to find the ingredients they need to cook a meal. They use the doorknob to open the cabinet and smile when they find what they need inside.,cabinet;food;groceries;shelf,The person looks in the above cabinet for items and fiddles with items. They then look in the side cabinet through other items.;Person looking through on the top shelf for a product while standing by a stove.,c114 2.00 23.90;c147 0.00 33.00;c112 20.40 26.00;c082 14.80 25.70;c130 10.00 21.00;c113 0.00 5.70,31.79\r\nD1XNV,VOOS,Kitchen,6,7,Yes,A person was tidying the sink while looking at a picture of somebody smiling,dish;picture;sink,A person does dishes in the sink while watching TV and smiling.;A person is washing dishes while looking at a picture and smiling.;A person looks at a picture of their family as they wash a pan.,c152 0.00 35.00;c121 0.00 35.00;c088 0.00 35.00;c118 22.40 35.00;c120 22.30 27.80,33.67\r\nY75AX,AT5D,Stairs,6,6,Yes,\"A person sits on the stairs, working on taking notes from a book. The person pauses, then watches something intently out the window.\",blinds;book;floor;stairs;window,\"A person is sitting on the stairs reading a book.  This person takes notes, and looks out of a window.;A person sitting on some steps makes notes in a notebook while reading from another book.\",c026 0.00 30.00;c032 0.00 17.80;c092 13.90 29.20;c027 11.40 17.20;c145 1.70 17.80;c152 25.20 30.00;c125 0.00 30.00;c115 0.00 30.00;c025 15.20 19.80,29.21\r\nN6FZ7,CP6Y,Living room,6,7,Yes,\"A person runs into the living room and grabs a bottle of medicine and a blanket.  The person sneezes and throws the blanket onto the floor, then puts the medicine down and grabs a vacuum from the corner.\",blanket;clothes;doorway;floor;jacket;table;vacuum,\"A person throws a blanket on the floor after sneezing and grabs a vacuum.;A person runs into a room, grabs something from a table and a blanket from a chair. The person then sneezes. The person then throws the blanket on the ground and runs over to use a vacuum.;A person is getting ready to leave then sneezes then cleans it up.\",c138 12.50 19.00;c126 7.60 13.70;c150 0.00 6.40;c002 3.10 7.80;c003 8.20 12.70;c000 3.50 12.80;c009 9.20 13.40;c137 12.30 19.00;c073 2.60 8.10;c071 8.00 12.90;c070 4.00 12.60;c074 8.20 12.80;c153 4.80 11.20;c097 0.00 5.00,18.17\r\nH7UYR,ZDKC,Kitchen,5,6,Yes,The person was cooking food on the stove for dinner while opening a bottle of beer.,can;dish;food;pan;sandwich;stove,A person is cooking in the kitchen;Person flipping a item in a pan on top of the stove checking the heat then turns it down.,c147 0.00 32.00;c061 0.00 32.00;c066 0.00 32.00;c118 0.00 24.50,30.54\r\n0O6RK,LXD5,Kitchen,7,7,Yes,A person puts a light inside of a refrigerator before closing the refrigerator door and then starts cooking on a stove.,door;food;light;refrigerator;stove,A person opens a refrigerator door and fixes a light.  The person closes the door and cooks food on the stove.;A person wanders into the kitchen and opens the fridge to look around before going to the stove and cooking their food.;A person opens their fridge and checks inside before returning to the stove where they are also cooking on.,c103 2.80 17.70;c008 0.60 7.40;c143 0.70 9.00;c006 17.00 23.60;c147 22.90 31.00;c142 15.50 23.50;c104 12.50 17.60,30.21\r\nAHBE8,LXD5,Living room,6,6,Yes,\"A person opens a box and puts in some shoes. They close the box, and smile.\",box;clothes;floor;laugh;shoe;table,\"Person looks around then puts shoes in pizza, sets it on chair and starts laughing.;A person is picking up some shoes and placing them into a box. The person picks the box up and places it somewhere else. The person stands up and is laughing.;A person picks up some shoes off the floor then looks around. Then the person puts the shoes in a pizza box that is laying on the floor. Next the person puts the box aside and laughs.\",c053 5.60 14.80;c054 12.30 22.80;c152 24.10 29.00;c001 12.00 26.00;c043 20.50 26.70;c042 21.80 26.80;c127 0.00 25.80;c040 20.10 26.70;c041 12.70 17.80;c039 18.10 23.50;c009 21.40 26.80;c149 21.00 29.00;c056 0.10 6.30,28.46\r\nJ5K87,I48P,Living room,5,7,Yes,A person is laughing on the phone while drinking juice and doing homework,book;chair;couch;glass;homework;phone;sofa,Person sitting on the couch talking on the telephone with a book on lap reaches to the table and picks up a glass and drinks from it.;Person sitting on the sofa on the cell phone talking while writing in a book pick up a glass and take a drink.;A person is sitting on a couch while talking on a cell phone and writing in a book and drinking a glass of orange juice.,c015 3.10 8.90;c149 15.40 26.50;c026 24.90 36.00;c123 0.00 36.00;c107 6.10 36.00;c059 0.00 36.00;c106 7.90 14.10;c110 6.10 11.50;c115 0.00 36.00;c109 32.50 36.00;c152 3.10 33.90;c027 0.00 4.50;c029 0.60 5.30;c032 2.80 36.00;c145 1.90 35.10,35.17\r\n72M7T,CP6Y,Closet / Walk-in closet / Spear closet,5,7,Yes,One person runs in and starts undressing while another person with a phone and camera watches.,camera;clothes;phone;sweater,\"person is looking at phone.  Person runs in and takes off shirt.;A person is watching a camera, and then open a mobile,then suddenly another person comes running and removes his sweater and tell something to first person.;A person is standing and holding a camera. The person is also playing with a phone. Another person rushes into the room and starts undressing.\",c015 0.00 18.00;c150 4.00 9.00;c155 6.00 18.00;c000 12.00 18.00;c155 14.00 18.00;c002 5.60 18.00;c016 0.00 5.10,17.25\r\nV53GK,I48P,Garage,6,7,Yes,A person is running in place while holding a phone. They grab a bag of groceries and leave.,bag;door;groceries;phone,\"A person is running in place for several seconds and then stops and grabs a white plastic bag, turns around and goes through the side garage door and into the house.;A man is running in place as he holds his phone in his room; then he stops, grabs a bag from a shelf, and exits the room.\",c008 27.30 33.00;c150 0.00 25.40;c023 22.40 28.30;c015 0.00 33.00;c097 27.80 33.00;c141 27.50 33.00;c020 24.00 33.00;c016 0.00 26.70,31.83\r\nAIJ0M,M7K8,Pantry,5,7,Yes,\"A person walks towards pantry drinking some water and holding a towel over one arm. The person, throws towel in pantry and takes out vacuum.\",broom;closet/cabinet;clothes;door;glass;towel;vacuum,\"There is a person drinking something.  That same person takes a towel and puts it in another room.  That person picks up a vacuum;The person walks by the camera takes a drink, opens the door, takes out a handheld vacuum, then turns it on before shutting off the camera.\",c106 1.00 7.00;c137 13.10 32.00;c036 10.20 15.00;c100 10.00 17.00;c109 2.80 8.60;c141 7.80 12.90;c033 0.50 12.80;c107 0.00 9.00;c001 8.60 14.80;c112 11.10 16.00;c035 0.00 9.50;c006 10.80 15.90;c034 7.80 14.50;c113 6.90 14.20;c008 7.40 13.10,31.17\r\nZPRJH,AT5D,Living room,6,6,Yes,\"A person sits in the door way, looking at various books on a shelf. The person pulls one out, quickly glances over it, and then throws it aside.\",book;door;floor;shelf,\"A guy stands up from sitting on the floor, walks to the bookcase and picks up a book. He leafs through the book quickly and tosses it back onto the bookcase. Then he walks into the bedroom and stands and looks around.;A person is looking at a book and then walks in the bedroom;A person is sitting on a floor, walks to a bookshelf and picks up a book, throws the book down, then walks out of the room\",c031 12.40 18.40;c154 0.00 8.30;c125 0.00 4.50;c081 13.00 18.20;c097 15.80 23.20;c115 7.40 16.90;c025 11.90 17.20;c026 7.90 17.00;c117 5.70 11.60;c030 5.70 11.60;c116 13.20 18.10;c032 8.50 17.00;c027 8.80 16.10;c028 13.80 18.10,30.92\r\nUUF84,AT5D,Living room,6,6,Yes,A person is opening a jar of medicine in a hallway.  The person takes the medicine and swallows it.  The person then begins undressing by removing their socks.  The person throws them onto a bed in a bedroom off of the hallway.,bed;box;chair;clothes;cup;doorway;food;medicine;shoe;sofa;table;water,\"A person opens a container and takes some things out of it. They walk over to a table, eat some food, and drink. The person goes to a bench and takes off their shoes;Person walking through the room stop to take some medicine with a glass of water\",c129 12.20 22.80;c155 24.50 33.00;c154 28.40 33.00;c057 24.50 32.50;c123 24.00 33.00;c151 23.40 28.70;c110 13.80 23.10;c059 24.50 32.70;c156 12.40 20.20;c097 10.00 14.10;c128 3.90 8.10;c044 3.30 7.60;c009 2.80 7.00;c135 25.00 29.30;c106 15.60 19.70,31.92\r\nGCI2J,AT5D,Living room,6,6,Yes,A person watches something on the screen of their camera. The person takes a pair of running shoes from nearby and puts them on.,camera;floor;phone;picture;shoe;table,Someone is taking a picture. They set the camera down and take shoes from the floor and sits down to put them on.;A person is standing and holding something. The person then sets the item down and then sits down and begins to put on a pair of shoes.;A person holds a camera up and takes some pictures. The person puts the camera down and puts some shoes on.,c017 8.30 17.30;c087 6.10 14.10;c151 18.40 23.90;c056 8.30 19.30;c055 15.60 32.00;c053 12.40 17.90;c054 15.30 32.00;c009 7.50 14.40;c125 19.60 32.00;c015 0.00 11.80;c016 0.00 11.50,30.62\r\nGIIF8,ENHU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is tidying the bags on the shelf.  The person is undressing in front of a mirror.,bag;closet/cabinet;clothes;counter;doorway;jacket;mirror;shelf,A person puts a bag on a shelf. Then they walk through the doorway and take their jacket off. They walk back through the doorway and lay the jacket down on the shelf.;A person puts some things away on a shelf. The person takes their hoodie off and puts it on the counter top.;A person is tidying up a shelf in the bathroom. The person is then undressing and walking. The person places their clothing on a shelf.,c081 0.00 8.20;c097 5.40 17.00;c001 0.00 8.60;c024 0.20 6.80;c155 5.20 17.00;c002 10.70 17.00;c022 1.20 8.00;c020 0.00 5.20;c114 0.00 8.70;c004 10.50 17.00;c096 7.30 16.00;c082 0.00 8.50;c148 5.30 15.90,16.12\r\nAV58B,I48P,Garage,3,7,Yes,A person is drinking coffee while sitting on a box in the garage.,box;chair;coffee;cup;dish;glass,Person sitting in a chair drink coffee out of a glass while looking around the room.;A person is sitting and drinking from a glass while switching the glass from one side to the other.;A person sits on a chair drinking from a cup while smiling as well.,c107 0.00 9.00;c059 0.00 37.00;c118 0.00 37.00;c106 0.00 37.00,35.79\r\nOQ9W3,CP6Y,Dining room,6,6,Yes,\"A person is drinking coffee, then closing a desk drawer and then working on homework in a dining room.\",book;cabinet;chair;coffee;cup;desk;drawer;homework;paper;shelf;table,\"A person is sitting at a table drinking coffee.  They close a drawer and do homework.;A person is drinking some thing than opening a drawer and writing some thing and again drinking some thing and than writing.;A man sat at the table drinking coffee. He rubbed his leg, then looked behind him for something. Not finding it, he looked back at the table and began writing.\",c014 14.10 27.00;c145 14.20 27.00;c106 0.00 4.90;c059 0.00 27.00;c011 0.00 27.00;c082 7.40 15.90;c110 20.00 26.30;c107 0.00 5.60;c032 1.00 7.90;c109 0.20 5.40,26.33\r\nYQ2M5,B6UG,Hallway,7,7,Yes,\"A person is standing at the top of the stairs, looking at a picture. The person lies down on the floor and begins playing with their phone.\",floor;phone;stairs,Person standing at the top of the stair walks down the steps and lay on the steps;A person stands in the dark and walks down some stairs. The person leans on the stairs looking at something in their hand.,c015 0.00 31.00;c016 7.60 31.00;c151 7.00 12.80;c124 9.10 31.00;c125 8.10 13.00,29.96\r\nPN1F2,EDYS,Entryway (A hall that is generally located at the entrance of a house),2,5,Yes,A person walks into their entryway drinking a cup of coffee and holding a pillow.,cup;doorway;food;glass;pillow,Person is holding pillow and walking around drinking from glass.;The person walked slowly down the hall holding a pillow and taking a few sips from a cup.,c106 5.20 17.10;c107 3.00 17.10;c076 2.10 17.30;c156 6.70 14.20;c079 0.00 17.10;c110 3.50 8.00;c097 7.50 13.50;c078 2.90 17.40,30.50\r\nO5V8D,GE1M,Stairs,7,7,Yes,\"A person is playing with their camera while sitting on the stairs. The person goes to take a picture of themselves, but sneezes just as the flash goes off.\",camera;phone;picture;stair,A person on a stairway taking pictures of pictures on the wall.The person turns and takes pictures of them-self on the steps and smiles.;Person standing on the stair taking picture with a camera while camera flashing a blue color;Person standing on the stairs taking pictures of a group of pictures on the wall.,c015 0.00 19.00;c152 10.50 19.00;c018 0.00 4.90;c153 12.60 19.00;c016 0.00 19.00;c087 0.00 5.90;c087 4.70 11.20,17.92\r\nHXR3Z,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,A person is working on a laptop at their home office while grasping a piece of food in one hand.,chair;food;hand;laptop;table,\"A person is sitting on a chair while looking at a laptop on a nearby table. The person then plays with the laptop.;A person is on their laptop, typing something with one hand.\",c052 0.00 34.00;c063 0.00 3.30;c062 12.40 19.70;c014 0.00 34.00;c051 0.00 23.40;c059 0.00 34.00;c156 0.00 34.00;c061 0.00 34.00;c011 0.00 34.00,33.42\r\nBJ3ZF,4L27,Living room,5,6,Yes,A person is closing a book.  Then a person is playing with a pillowcase that is on a pillow.,book;couch;pillow,Peron sits down on the couch and over fluffs the pillow.;A person sits on a sofa and closes a book. A person then picks up a pillow and throws it in the air. A person then puts the pillow on the sofa. A person then gets up and walks away;A person sits down on the couch and closes a large book. The person fluffs a pillow next to them and tosses it between their hands. The person then stands up.,,41.50\r\nAK9PN,4UGC,Living room,6,7,Yes,\"Person is putting vacuum cleaner away, then starts sneezing 2 times then drinks some coffee.\",closet;cup;door;floor;glass;sofa;vacuum,\"A person is vacuuming the floor the put the vacuum in the closet then they grab a coffee cup and sit on the sofa and drink their coffee.;A person turns on a vacuum and then puts it into a closet. The person picks up a mug and sneezes, then sits on a couch.;The person is holding a vacuum while hooking the cord to it and then puts it down and drags it backwards and opens a closet door and puts it away and whips their hands and then walks over to the couch and grabs a cup and then sneezes twice and then sits down and takes a drink.\",c106 26.00 32.00;c137 0.00 13.30;c151 23.70 29.90;c123 25.20 32.00;c110 16.10 21.00;c113 4.70 10.20;c112 10.80 16.10;c153 18.30 27.40;c127 1.20 11.60;c107 16.60 32.00;c141 4.20 10.20,30.92\r\nI7GZI,GFWE,Recreation room / Man cave,4,2,Yes,A person is running towards a chair.  Then a person is taking food off the chair.,chair;food,The person ran to the room pick up something from a chair and left.;A girl runs into the room and takes an item off of the chair where it has been sitting. Then she runs out of the room.,c063 0.00 5.70;c150 0.00 5.90,32.12\r\n5IPJA,ZDKC,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person can smile while sitting on a table in the office, A person can laugh with a pillow on their head in the office.\",chair;head;laptop;paper;pillow;table,Person sitting at a desk typing on the laptop put a pillow on head and began to type again.;A person is typing on their computer and then puts a pillow on their head.;A person was sitting on a chair and working on a laptop. The person then picked up a pillow. The pillow was then placed on the head. The person then smiled.,c145 0.00 17.30;c076 11.70 22.10;c152 15.00 27.90;c052 0.00 16.00;c011 0.00 32.00;c077 13.90 20.90;c149 16.10 21.80;c059 0.00 32.00;c051 0.00 32.00;c014 0.00 32.00;c079 13.10 18.90,31.12\r\nT1JWU,CP6Y,Stairs,7,6,Yes,A person walks down the stairs with a towel around their neck holding a bag. The person has to step over another person who is sitting on the stairs drinking from a cup.,bag;cup;dish;floor;glass;hair,\"The person is sitting on some stairs drinking something. Another person comes down the stares and squeezes by the person drinking.;A person sitting on a step of a staircase drinking out of a cup, another person coming down the steps, stepping over the other person.\",c020 5.60 23.00;c106 0.00 23.00;c125 0.00 23.00;c144 13.20 21.20;c118 2.50 8.10;c107 0.00 23.00,21.62\r\nFXGQI,ZDKC,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person is sitting on a chair and sneezing into the mirror they are holding.,chair;mirror;phone;towel,\"A person sitting in a chair looks at their phone They sneeze several times.;A person sits on a chair staring at a phone before they start sneezing and aggressively picking their nose with their fingers.;A person looks at their phone, sneezes and sniffs.\",c093 0.00 32.00;c096 0.00 32.00;c153 1.70 6.70;c153 5.30 11.50;c153 12.30 17.90;c059 0.00 32.00,30.96\r\nP0CET,4TV7,Bedroom,5,5,Yes,A person is dressing and another person is tidying up the items on a cabinet shelf.,closet;clothes;coat;doorway;mirror;shelf,A person takes some clothes from a closet and gets dressed while looking into a mirror. A second person starts tidying the closet.;A person getting a jacket out of a closet and putting it on while another person riffles through the same closet.;A person looks at clothes in a closet and puts on a jacket. Another person also starts to look in the closet.,c000 2.70 8.70;c148 5.50 28.40;c002 0.00 7.20;c096 6.50 15.00;c114 10.00 34.00;c097 5.20 10.20;c001 6.20 11.50,33.42\r\n9HTYB,JTAS,Basement (A room below the ground floor),7,7,Yes,A person wrapped in a blanket is laughing in the basement while holding a vacuum.,blanket;vacuum,The person looks at something ahead of them and smiles and laughs. They move their body from side to side while carrying a vacuum.;Person standing up with a blanket around her shoulder with a vacuum in hand laughing while holding the vacuum.,c137 0.00 29.00;c072 0.00 29.00;c149 0.20 29.00;c152 0.90 29.00;c070 0.00 29.00,27.83\r\nUQJ5W,ZDKC,Bathroom,5,7,Yes,\"A person walks into the bathroom, eating a sandwich, and opens the window. The person takes out their phone and takes a picture of something outside.\",camera;doorway;food;phone;picture;sandwich;something;window,\"A person walks into a bathroom and opens a window. They pull a phone out of their pocket and take a picture through the open window.;A person walks toward the bathroom, opens the window inside the shower and takes a cell phone photo through the open window.;Person walks into bathroom while holding food. Walks into shower opens the window and proceeds to take a picture out of the window.\",c065 0.00 4.20;c090 5.60 13.20;c156 0.00 19.40;c087 17.70 28.00;c015 14.00 28.00;c016 14.60 20.80;c067 0.00 28.00;c092 17.20 28.00;c097 0.00 6.60;c061 0.00 28.00,26.88\r\n1XOQ8,M7K8,Closet / Walk-in closet / Spear closet,6,7,Yes,A person walks into the closet looking for a vacuum. They start throwing shoes out of the way while smiling because they see the Vacuum in the back.,closet;floor;shoe;vacuum;wardrobe,\"A person is throwing items out of a closet, and then holds up a small vacuum cleaner that was in the closet.;A person bends down to take some shoes and a vacuum out of a closet.\",c054 0.70 15.40;c137 13.20 30.90;c138 12.00 19.30;c152 14.00 29.30;c056 0.00 10.70;c058 1.10 6.20;c114 0.00 31.00;c127 0.00 31.00;c053 1.10 6.20,29.75\r\n0N4KN,ZDKC,Dining room,3,7,Yes,A person is holding a sandwich in a dining room. The person sneezes and the light turns off.,chair;food;sandwich;table,\"A person sitting in a chair eating a sandwich.The person puts their hand to their face and sneezes into their hand.;A person sits at a table and eats.  this person continues to take bites, and then sneezes.;A person is sitting at the kitchen table eating a sandwich, then sneezes.\",c065 0.00 30.40;c067 0.00 33.20;c153 26.60 33.20;c059 0.00 34.00;c156 0.00 30.40;c011 0.00 34.00;c061 0.00 34.00;c063 0.00 2.70,32.67\r\n29OV5,CP6Y,Kitchen,7,7,Yes,A person standing in the kitchen holding a medicine bottle and a pharmacy store bag begins laughing while looking at the bottle.,bag;bottle;case;medicine,A person is holding a bottle and a case. They look at the bottle and laugh.;A person holds a container and a bottle of pills and laughs while looking at it.;A person is looking at a black bag in their left hand.  The person looks at a bottle in their right hand.  The person laughs while reading the bottle.,c128 0.00 17.00;c020 0.00 17.00;c149 3.60 17.00;c023 0.00 17.00;c152 2.90 17.00,15.92\r\nJSIRZ,JQ7D,Kitchen,5,7,Yes,\"A person is standing in front of a kitchen stove, cooking and talking on the phone.\",food;phone;pot;spoon;stove,A person cooks some food while talking on the phone. The person taste tests the food they are cooking.;A person is stirring something that's cooking on the top of a stove while also talking on a cell phone and taking tastes of the food they are cooking.,c015 0.00 30.00;c019 0.00 30.00;c147 0.00 30.00;c156 23.50 30.00;c156 1.60 6.20;c156 14.90 19.80,28.83\r\n3UXL9,P2J3,Living room,3,7,Yes,\"In the living room, a person is working on cleaning the floor with the vacuum.  Another person is washing the door.\",floor;vacuum;wall,\"This person is vacuuming the living room, while another person is interacting with the wall.;Two people standing in a family/living room. One person begins vacuuming the the floor while another person appears to watch the other vacuum then begins washing a door.;A person is walking and using a vacuum while watching television. Another person is standing and tidying up the wall with a towel.\",c137 8.10 34.00;c154 0.00 4.40;c127 0.00 34.00,32.58\r\nZTWJB,VOOS,Kitchen,6,7,Yes,A person throws a broom ferociously at the floor then begins to snuggle against clothes on the sofa.,blanket;broom;chair;clothes;floor;pillow;sofa,\"Person sweeping the floor throw broom down walk over to the sofa and sit down;A person is in the kitchen and they are sweeping with a broom. They then leave the kitchen and lay down on the couch with a pillow.;A person sweeps the kitchen floor, throws the broom onto the ground, and then curls up into a small couch.\",c123 3.00 32.00;c101 0.00 5.30;c126 0.00 5.30;c098 0.00 4.20;c102 0.00 3.60;c151 2.90 8.10;c070 15.60 20.90;c078 3.70 32.00;c127 0.00 4.80;c122 3.20 32.00;c072 4.10 32.00;c059 3.50 32.00,31.46\r\nF66WG,P2J3,Bathroom,5,7,Yes,\"A person throws shoes in the bathroom, A person eats while holding a camera in the bathroom.\",camera;door;floor;food;mirror;phone;sandwich;shoe,\"A person holding shoes enters a bathroom and eats in a doorway.;A person opens a door and walks into a room, they put their shoes on the ground and stand in the doorway eating something.;Person goes into the bathroom put shoes on the floor then began to eat something in hand.\",c015 9.00 19.00;c053 1.00 14.00;c156 18.70 30.30;c054 8.60 14.80;c141 4.30 12.30;c126 9.50 15.50;c008 4.50 11.90;c061 18.90 37.00;c097 5.60 13.40,35.67\r\n9YWJ6,P2J3,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,Standing in the entryway eating a sandwich a person is opening the door and another person is in the doorway grasping the door handle. The person with the sandwich is leaving.,bag;door;food;groceries;sandwhich;sandwich,\"Two people enter a room, where a third person stands. They mill about the room, doing nothing of interest.;A person is eating a sandwich in a room with two other people in sight. A person wearing a plaid shirt is right near the camera.\",c097 0.00 19.70;c008 9.50 20.10;c065 0.00 10.40;c020 0.00 35.00;c156 0.00 10.40;c141 5.70 11.80;c067 0.00 35.00;c061 0.00 35.00,34.04\r\nPLXUA,ZDKC,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person grasps a cup of coffee, then sneezes on a mirror in their closet.\",cup;glass;mirror;mug;sink;water,\"A person is looking in the mirror at themselves. A person is holding a glass of water.;He is drinking from cup in bathroom, and trying to see in his nostrils.;A person is standing in a bathroom while holding a cup in front of the mirror and the person sneezes two times.\",c094 7.00 14.40;c153 11.80 22.60;c107 1.10 32.00;c096 6.20 32.00;c110 0.00 4.80,30.83\r\nP12LH,M7K8,Home Office / Study (A room in a house used for work),7,7,Yes,One person is snuggling on the small sofa as another person tries to fix a camera.,camera;phone;pillow;sofa,\"Person holding a mobile phone sits down on a couch next to another person who is holding a pillow and starts to fiddle with the phone;Two people sit on the same couch, one with a pillow in their arms, and the other playing with the phone in their hands.\",c015 0.00 33.00;c123 0.00 33.00;c078 0.00 33.00;c016 0.00 33.00;c076 0.00 33.00,32.00\r\n2443O,4UGC,Hallway,6,7,Yes,\"A person walks down the hall, grasping a bag. The person takes out their phone and makes a call.\",bag;door;groceries;phone,\"The person walks into the hallway, picks up a grocery bag, then sits the bag down before answering the phone.;A person walks into a hallway, picks up a bag from the floor, stops, reaches into a pocket and takes out a phone then talks into it.;The person walks into the hall, sees a bag, picks up the bag, carries it a brief distance down the hall then sets the bag down again and makes a call.\",c020 3.50 15.10;c015 13.70 33.00;c097 0.00 4.50;c019 24.40 33.00;c130 3.20 16.20;c022 3.20 16.20;c018 10.70 18.00;c023 1.80 8.30,31.58\r\nNHYRG,DW3I,Closet / Walk-in closet / Spear closet,6,6,Yes,The person took a towel out of the box lying on the floor before leaving.,closet;clothes;doorway;hat;shelf,\"A person is seen running to the closet and putting things away or moving them around and taking out clothes.;The person is crouched down and walks toward a closet. They enter the closet and fumble with items in the closet. They leave the closet with some cloth.;A person goes into a closet and looks for an item, comes out with the item in hand and walks out.\",c000 33.80 39.60;c114 1.50 38.30;c002 8.60 37.60;c097 0.00 5.20;c082 0.80 36.60,43.12\r\nR5WMI,CP6Y,Hallway,4,7,Yes,One person plays with a camera while another person with a book and with hair in a towel sneezes.,book;camera;clothes;hair;phone;towel,\"{};A person takes some pictures on a camera, while another walks in, sneezes, and then walks past the picture taker.\",c026 5.00 16.00;c016 0.00 16.00;c153 5.20 11.20;c000 2.50 16.00;c144 2.50 9.00;c018 2.50 7.20;c038 6.90 12.40;c087 0.00 16.00;c015 0.00 16.00;c033 3.40 16.00,15.33\r\nUETQS,ZDKC,Kitchen,6,6,Yes,A person is opening a laptop on a table then cooking eggs on the stove.,chair;dish;food;laptop;stove;table,\"A person sits down at a table and opens a laptop. The person gets up and pours some water into a pan. The person puts the pan on the stove and turns a burner on.;A person sits in a chair and opens a laptop, then gets up to go to kitchen sink, gets a pan and sets it on the stove.\",c011 0.00 12.60;c048 1.40 11.20;c147 18.20 32.00;c151 0.00 5.90;c154 7.20 15.20;c063 22.10 32.00;c118 10.00 23.60;c120 10.00 23.60;c119 14.30 23.70;c062 25.80 32.00;c059 0.00 11.30;c061 23.30 31.50,30.96\r\nAF5BS,GFWE,Other,6,6,Yes,\"A person is holding their phone while watching television. The person checks their phone, then puts it down.\",chair;phone;sofa/couch;television,A person takes a seat on a couch and looks at their phone. They put down the phone and look at the television. They get off the couch and walk out of the frame.;A person sits on a couch.  The person then turns on the TV and then looks at a phone then leaves the room.,c015 0.00 17.70;c016 7.70 17.40;c017 13.40 18.80;c132 1.30 27.50;c151 0.00 3.80;c154 23.40 28.60;c059 0.00 28.40;c123 0.00 28.30,30.08\r\nOEM65,JTAS,Bedroom,6,6,Yes,A person is sneezing while snuggling a picture in the bed.,bed;blanket;floor;paper/notebook;picture,\"A person sits on a bed, sneezes a couple of times, and then starts to cradle a piece of paper in their hands while reading it intently.;Person sitting on a sofa and began to sneeze then pick up a picture to look at.\",c072 0.00 36.00;c084 4.20 36.00;c135 0.00 36.00;c153 0.00 6.80;c115 4.90 36.00;c124 0.00 36.00;c083 3.80 9.40;c088 5.10 36.00,35.38\r\nXQVXF,CP6Y,Kitchen,6,4,Yes,One person grasping a box starts tidying the kitchen as another person drinks something from the refrigerator.,counter;dish;door;food;fridge;glass;refrigerator;something;table;towel,\"A person opens the fridge and takes a glass of water.;A person is cleaning off a counter with a rag.  Another person opens an oven door to look inside then closes it.  This person then opens a fridge door, grabs a cup and drinks from it and then closes the door.;One person is cooking and another person looks in the oven then takes a glass of juice from the fridge and drinks from it.\",c142 17.40 27.40;c143 4.50 11.10;c013 13.00 28.00;c008 4.50 11.10;c118 13.30 28.00;c037 0.00 28.00;c012 0.00 28.00;c147 0.00 9.00;c038 14.00 28.00,27.46\r\nBEAAA,JQ7D,Hallway,6,7,Yes,A person is undressing and then dressing while on a chair and then eating food in a hallway.,chair;clothes;food;jacket;sandwich,\"A person is sitting on a chair eating food. The person undresses their jacket, tosses it on the floor, and then puts it back on and continues eating the food.;Person sitting in a chair eating then remove jacket put on the floor pick it up and put jacket back on.;A person in a chair removes one jacket and puts on another while eating a sandwich.\",c059 0.00 29.00;c156 0.00 3.50;c148 8.70 25.30;c061 0.00 29.00;c155 0.70 10.90;c001 6.00 11.80;c000 6.90 13.90;c065 0.00 4.10,27.96\r\n8WZJW,AT5D,Bedroom,6,7,Yes,Person is washing dust of desk. Another person is playing games on laptop.,bed;desk;game;laptop;shelf;sofa/couch;table;towel,\"One person sits in bed on a laptop while another slaps their desk with a rag of some sort.;Two people are in a room, one sitting on their laptop and the other attempting to clean some books on a desk.\",c052 0.00 32.00;c012 4.60 32.00;c135 0.00 32.00;c038 4.90 32.00;c082 5.00 32.00;c123 0.00 32.00;c033 0.00 32.00,30.79\r\nDACFC,CP6Y,Kitchen,5,7,Yes,A person is standing in the kitchen eating a sandwich. The person grabs the vacuum and cleans up the crumbs.,dish;floor;food;sandwich;table;vacuum,A person in standing in a kitchen eating a sandwich while holding a plate in the other hand. The person then puts the plate down and continues to eat the sandwich. The person walks across the room and grabs a vacuum cleaner and beings vacuuming the floor while continuing to eat the sandwich.;A person eats food then drops it then cleans it up.,c065 0.00 32.00;c137 9.80 32.00;c156 0.00 32.00;c063 0.00 2.60;c127 10.00 32.00;c138 9.20 14.90;c067 0.00 32.00;c119 0.00 9.50;c009 3.60 9.60;c118 0.00 9.50;c061 0.00 32.00,31.08\r\nN0ZPI,I48P,Closet / Walk-in closet / Spear closet,4,5,Yes,\"A person is grasping a cup of coffee in one hand, while standing at the closet entrance. They grab a towel from the closet and throw it on the floor.\",blanket;coffee;cup;doorway;floor;glass;hand;towel,\"A person is standing in a doorway holding a cup. They turn around, grab a towel, take a drink from the cup, and than throw the towel over their shoulder.;A person holding a thermos stands in the doorway. The person drinks from it and pulls a blue towel out, throwing it away.\",c106 14.40 20.80;c126 21.80 26.50;c034 22.10 27.00;c036 22.10 27.00;c107 0.00 31.00;c033 5.80 27.40;c035 4.50 12.50;c074 21.50 27.60;c070 6.40 25.90,30.08\r\nTCJCJ,ZDKC,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person throws a book on the sofa then smiles at self at the nearest mirror.,book;mirror;sofa,A person is standing by the front door reading they walk over to a mirror and smile in the mirror.;A person reads a book and then throws it onto a couch. The person looks at themselves into a mirror and winks at themselves.,c096 10.20 32.00;c025 2.20 8.30;c026 0.00 9.40;c031 4.80 10.50;c032 0.00 8.30;c152 12.20 32.00;c028 4.90 10.80;c116 4.60 9.60;c094 11.00 32.00;c115 0.00 9.30,30.75\r\nIONV9,MWAO,Basement (A room below the ground floor),6,5,Yes,A laughing person is drinking soda in their basement. They grab a box from a shelf and leave.,box;doorway;glass,\"A person stood in a garage, drank twice from a water bottle, then turned and picked up a box and carried it across the room while continuing to drink from the bottle.;A person stands in a garage while drinking from a glass of water before walking around while holding a box.\",c040 17.00 39.00;c043 16.40 22.10;c097 32.90 39.00;c106 0.00 6.20;c106 8.50 13.30;c152 4.10 9.90;c107 0.00 39.00;c149 4.10 9.30;c149 19.30 24.20,38.25\r\nG3UF4,CP6Y,Bathroom,5,6,Yes,A person opens a book then starts drinking some coffee.,book;coffee;cup;dish,A person is in the bathroom drinking a cup of coffee reading a book by a garbage can.;The person is drinking from an orange mug and reading a yellow book as the person stands by the garbage can.,c106 0.00 17.00;c032 0.00 17.00;c118 0.00 17.00;c115 0.00 17.00;c026 0.00 17.00;c107 0.00 17.00;c027 3.20 8.40,16.29\r\nMVX03,M7K8,Living room,7,7,Yes,A person is trying to fix their closet doorknob. They feel uncomfortable standing so they take off their shoes and sit down to continue.,door;floor;shoe,\"The person adjusted the sticker,bend down ,removed shoels and get .;A person fixes a door knob, then they take their shoes off and continue working in the door knob\",c140 0.00 31.40;c057 16.40 25.20;c154 27.80 33.80;c056 16.10 23.60;c007 0.00 19.40;c125 21.20 32.60;c151 20.40 25.20,33.38\r\nZ5URX,4TV7,Dining room,6,6,Yes,A person is fixing a sandwich while another person is taking out a box of supplies to do homework in the light from the window.,bag;book;chair;food;sandwich;table,Two people sitting at a desk.  One is making a sandwich the other is reading a book.;A person is sitting at a desk.  The person takes out bread and other ingredients and makes a sandwich.  The person next to them does the same.;A person arranges something on a desk as another person comes and joins them.,c059 0.00 57.00;c151 5.50 13.50;c066 0.00 57.00;c154 44.70 50.10;c011 0.00 57.00;c021 1.10 9.80;c069 5.30 11.20;c014 0.00 57.00;c026 16.70 26.00;c032 22.90 49.20;c061 5.80 57.00;c063 2.20 12.90;c062 8.10 12.60;c030 11.40 16.50;c009 12.30 16.80,55.88\r\nOZ02A,4TV7,Home Office / Study (A room in a house used for work),6,6,Yes,The person turned on the light in the dining room.  The person then closed the curtains on the window.  Another person showed up in the dining room.  The two played cards.  After the game they left and took the cards.,blinds;chair;desk;floor;game;homework;light;paper;phone/camera;table;window,\"A person walks in and sets down to work on some homework, a second person walks in to help them and then they both leave.;A light is turned on and then a person walks into a room, closes a window blind, and sits down and starts playing with cards. Another person comes in then kneels down briefly. Both people then get up and walk away.;A light turns on as a person walks into a room and closes the blinds. Another person joins in and they do something by a desk before walking out.\",c145 12.50 32.00;c151 9.00 18.30;c092 10.70 16.70;c089 10.50 16.10;c104 2.90 11.80;c154 20.90 30.00;c011 13.30 30.00;c015 12.10 37.10;c059 13.70 30.00;c009 12.70 17.30;c125 19.80 27.70;c127 29.60 35.30,40.79\r\nLQ0FJ,ENHU,Closet / Walk-in closet / Spear closet,4,7,Yes,\"One person is in the doorway wrapped in a blanket with a cup of coffee in hand. They start undressing, then get dressed into something else.\",blanket;clothes;coffee;cup;doorway;mirror;second shirt,\"Video is sideways.  Person is standing in front of mirror Removes blanket, drinks coffee, then removes shirt while walking into another room.  Picks up another shirt and puts it on.;A person is sitting and eating with a blanket on. The person takes the blanket off and walks into the closet  and changes their shirt.;A person is in a closet.  The person looks in the mirror and changes the clothes. Then the person walks out of the closet.\",c097 6.40 11.70;c074 0.50 10.20;c002 20.80 28.90;c107 0.00 6.30;c070 0.00 8.90;c106 0.00 6.30;c109 1.80 7.10;c148 23.60 34.00;c155 6.40 21.80;c003 5.20 22.50;c096 8.00 15.10;c000 16.70 30.50;c001 17.30 23.00,32.62\r\n77JGY,AT5D,Home Office / Study (A room in a house used for work),6,7,Yes,A person is eating a sandwich over their laptop and standing there taking selfies.,chair;desk;food;laptop;phone;picture;sandwich;table,\"The person is sitting at a desk eating a sandwich and looking at something on their laptop. They stand up and take a picture of themself.;A person sits down at a computer and eats some food. The person puts the food down on the table, picks up a phone and takes a selfie with it.;A person is sitting at a desk in a bedroom taking bites out of a sandwich, puts the sandwich down, picks up a cell, stands up and takes a selfie\",c051 0.00 22.10;c065 0.00 13.90;c156 0.00 13.90;c154 19.10 24.60;c011 0.00 23.70;c087 22.20 32.00;c014 0.00 22.30;c009 17.80 22.80;c016 20.90 32.00;c052 0.00 5.90;c062 15.30 22.80;c059 0.00 24.00;c067 0.00 22.10;c015 18.60 32.00;c018 18.40 23.50;c068 11.40 22.00;c061 0.00 15.40;c152 23.70 30.20,31.17\r\nQRSRE,M7K8,Bedroom,7,7,Yes,\"One person runs in past the chair and window, grasps the cabinet door while drinking, then leaves.\",bottle;closet;door;water,\"The person is drinking a bottle of water, and opens and closes the closet.;A person picks up a bottle of water from a desk and takes a drink as the person opens the closet door before leaving the room.;A person walks into their room, drinks something, opens the closet door and then walks out of frame.\",c008 2.10 12.20;c113 1.00 12.20;c112 3.50 7.80;c106 3.90 8.40;c110 1.00 6.10;c006 6.30 12.20;c150 0.00 6.30,33.00\r\nTH3M0,CP6Y,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person is walking across the entryway to retrieve a broom from the closet.  After grabbing it, the person sits down in a chair and taps the broom against the floor before getting up and putting it away in the same closet.\",broom;cabinet;chair;door;floor,\"A person opens a door and goes to a cabinet and pulls out a broom. The person sits down in a chair and sweeps. The person gets up and put the broom back into the cabinet.;a person walks through a door, takes out a broom from a cabinet, sits on a chair, and taps the broom against the floor before putting it back.;Person walks into house from front door. Person then sits down in chair, grabs a mop, and proceeds to mop the floor before standing back up.\",c098 14.50 30.80;c100 14.50 19.30;c008 0.00 4.70;c099 24.50 32.20;c059 18.80 25.80;c151 17.70 23.30;c112 27.20 33.00;c127 24.50 33.00;c006 0.50 7.40;c141 2.80 7.40;c113 12.00 19.50;c097 0.40 6.90;c154 21.40 27.90;c127 12.10 26.50;c102 24.20 33.00,31.75\r\nSM8Y0,CP6Y,Living room,6,7,Yes,A person is holding a camera while sitting on the edge of a table. The person takes a picture of something.,camera;chair;phone;picture;something;table,\"A person holding a phone is sitting in a room. The person takes pictures with the phone, moving the phone around in his hands.;Person crouching down near glass table. Person is taking multiple pictures of an object resting on top of table using the flash.\",c087 3.20 23.00;c015 0.00 23.00;c014 0.00 23.00;c059 0.00 23.00;c016 0.00 23.00;c011 0.00 23.00,21.71\r\nSNG4T,M7K8,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person sitting at their desk turns to reveal another person sitting in a chair, watching them.\",chair;clothes;desk,\"A person sat in a chair, then turned and sat back in the chair, revealing another person sitting behind and the two people laughed together for a moment until the first person turned back and reached forward.;Two people sit down in the same room, and both of them snicker at each other while one of them looks away from the camera.\",,30.04\r\nEIT66,ENHU,Hallway,5,7,Yes,A person smiles while playing on their phone. They then put a blanket in a box.,blanket;box;phone;towel,\"A person is standing at the top of the stairs, playing with a cell phone and laughing. After the person puts the phone in a pocket, they pick up a towel and put it in a box.;Person standing in the hall by the stairs while putting a blanket in the box.;A person stands in a hallway before placing a blanket in a box which is on the floor.\",c015 0.00 7.70;c016 0.00 6.80;c017 2.80 8.70;c073 4.70 10.50;c074 7.70 13.00;c152 0.00 6.20;c034 5.80 13.00;c070 4.70 13.00;c071 7.50 13.00,12.08\r\nNKE77,AT5D,Bedroom,4,1,Yes,A person is holding a bag in one hand and a glass of water in the other.  The person takes a drink of water and puts it down on the table.,bag;clothes;dish;glass;table;water,A person looks around and drinks something. The person puts the cup down and continues to stand still.;A person takes a drink of water while holding a book bag in their room.,c009 8.20 14.80;c106 19.10 27.90;c020 0.00 32.00;c000 0.00 32.00;c107 0.00 16.00;c119 10.00 16.30;c118 0.00 14.80;c109 10.00 15.60,30.75\r\nLQD66,ZDKC,Kitchen,6,7,Yes,After washing a dish in a sink a person then sneezes in the direction of a nearby window,dish;sink;towel;window,A person is washing a bowl in a sink.  This person then rinses the bowl and puts it on a towel.;A person washes dishes in the kitchen sink.,c092 30.70 37.00;c118 0.00 31.60;c121 0.00 30.50;c153 31.60 37.00;c038 6.20 19.30;c119 27.80 32.90;c120 0.00 3.60,36.21\r\n8S941,P2J3,Living room,3,5,Yes,A person is pouring coffee and another person is leaving the groceries in the box.,box;cup;dish;floor;food;glass,\"A person pours something into a mug while another sits on the floor putting things in a box;A person pours the contents of a can into a cup as another person sits on the floor putting items into an open box.;A person pours soda into a glass and drinks it, while another person is sitting on the floor putting stuff in a box.\",c108 0.00 35.00;c125 0.00 35.00;c062 0.00 35.00;c118 0.00 35.00;c063 0.00 35.00;c127 4.00 22.30;c107 0.00 35.00,33.75\r\nUMO9T,BPXZ,Other,5,7,Yes,A person is eating by the doorway while snuggling a blanket.,bag;blanket;chair;doorway;food;medicine;paper/notebook,\"A person sits covered in a blanket and starts swaying back and forth in a swaying motion while reading something in her hands.;The person sitting down on a chair cover with blanket  moving hand,feet and body.\",c072 0.00 26.00;c070 0.00 26.00;c115 0.00 26.00;c129 0.00 26.00;c156 2.70 26.00;c059 0.00 26.00;c020 0.00 26.00,25.21\r\n8LVCL,ZDKC,Closet / Walk-in closet / Spear closet,4,6,Yes,A person is undressing in the closet. A person puts shoes in a box. A person walks out the door holding a shirt.,box;closet/cabinet;clothes;doorway;floor,Person pull off jacket put it on the floor pick something off the floor take clothing off the rack and leave the room.;The person in front of opened closet took off jacket put it down on the closet floor and walked away.,c155 0.00 10.20;c002 24.20 30.30;c126 17.10 22.70;c097 30.70 35.90;c004 0.00 13.10;c114 0.00 36.00;c001 6.90 12.40;c000 5.60 13.30,34.54\r\n98W87,BKWQ,Kitchen,5,7,Yes,\"A person holding some groceries sets them down next to the stove, then takes a sandwich from a plate and begins eating.\",counter;dish;food;glass;groceries;plate;sandwich;stove;table,A person is holding a glass and putting it on the counter. A person then starts to eat a sandwich.;Person walking with a glass in head and is standing by the stove eating a sandwich.;A person stands in front of the stove and eats something from a plate and then walks away.,c119 7.40 14.20;c065 12.40 27.00;c156 10.20 26.20;c062 21.00 27.00;c009 19.70 27.00;c147 0.00 27.00;c061 10.60 26.20;c109 8.00 12.60;c063 10.10 14.90;c069 10.20 15.40;c068 21.30 27.00;c067 11.00 25.90;c130 2.50 12.10,26.42\r\n5D85P,ENHU,Bedroom,6,7,Yes,A person is watching something on their laptop then they close it and pick up some medicine.,hair;laptop;phone,A person is sitting on a chair with a laptop they close the laptop and pick up their phone.;A person sits down with a laptop in their lap. The person then closes the laptop screen shortly after.;A man is sitting in a room with a computer on his lap.  He begins to straighten his clothes and hair as if he's had an online conversation with someone.  He notices something and picks it up off the floor to examine it.,c051 0.00 13.00;c059 0.00 13.00;c015 0.00 13.00;c052 0.00 9.10;c047 0.00 13.00;c046 4.20 8.60;c144 0.90 5.10,11.96\r\nODM20,CO87,Dining room,7,7,Yes,\"A person sits at the dining room table, drinking a cup of coffee. The person looks out the window, and begins laughing.\",chair;coffee;cup;glass;table;window,Person sitting at the table drinking from a cup put the cup down on the table to look out window.;Person sitting at the table drinking out of a cup but it down then look out the window.,c106 5.50 13.60;c107 0.00 24.80;c009 18.40 24.60;c011 0.00 30.00;c092 21.50 30.00;c152 22.20 30.00;c109 18.60 25.10;c149 22.40 30.00;c059 0.00 30.00,28.96\r\n6PESI,JQ7D,Bedroom,6,7,Yes,A person is holding a pillow on the bed while playing on their phone.,bed;phone;pillow,A person is sitting on a bed snuggling a pillow and playing with their phone.;A girl sits on her bed while playing on her cell phone. She moves her fingers to text and type on her phone.,c015 0.00 32.00;c016 0.00 32.00;c078 0.00 32.00;c135 0.00 32.00;c076 0.00 32.00,30.92\r\nA33VQ,UO9Q,Dining room,5,7,Yes,A person is holding a chair and then opening a refrigerator in the dining room.,chair;refrigerator;webcam,\"A person while holding a chair opened a refrigerator and looked inside of it, they then walked over to the camera and turned it off.;A person carrying a folding chair opens then closes the refrigerator.\",c143 11.10 19.70;c142 21.00 29.40,30.88\r\nOXCDM,P2J3,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is standing in an entryway smiling as they hold groceries. Another person comes running into the entryway holding a box.,bag;box,A person is holding a bag and another people walks into the scene with a box.;A person wearing a short-sleeved checkered shirt moves slightly to the right as another individual carrying an orange box passes by.;A person stands with a bag in their hand and another comes jogging through with another item in their hand.,c040 6.50 15.50;c150 5.40 16.30;c020 0.00 34.00;c042 7.00 16.90;c043 10.80 16.50,32.58\r\n4PEL7,WK8I,Bathroom,6,7,Yes,\"A person is drinking water from the sink. Then the person walks into the living room and sits in front of the television, closing the bathroom door behind him.\",cup/glass/bottle;door;faucet;light;remote;sink;sofa/couch;television;water,\"There is a person in the bathroom looking in the mirror.  That person drinks water out of the sink, cuts off the light and shuts the door.  That same person walks into the living room, picks up the remote and sits on the couch.;A person drinks some water from a bathroom faucet. The person turns the light off and walks into a room to sit on the couch.\",c006 7.70 13.60;c106 0.00 8.70;c132 20.80 25.00;c141 8.10 14.00;c151 18.50 23.80;c097 7.00 13.00;c105 6.60 11.60;c123 18.60 23.70,23.96\r\n9YCQ3,ZDKC,Bathroom,4,6,Yes,\"Person is tidying the bathroom, standing in the doorway. They grasp the cabinet door and open it.\",cabinet;door,A person is furiously cleaning a toilet then proceeds to toss a piece of paper on the floor and open a cabinet.;A person cleans off a toilet with a cloth before checking the sink cabinet.,,34.83\r\nNTA1U,P2J3,Living room,4,7,Yes,A person is laughing at a box while another person is grasping a doorknob.,book;box;chair;table,A person is sitting in a chair with a book and another person is standing next to them.;A person is sitting in a chair looking at a package. Another person stands next to the first person.;Person sitting in a chair with a box in hand another person standing in the hall looking at a the camera.,c059 0.00 32.00;c026 0.00 32.00;c011 0.00 32.00;c043 1.20 32.00;c040 2.10 32.00,31.38\r\nHQ8BB,ENHU,Recreation room / Man cave,2,4,Yes,\"A person runs into the recreation room, turning the light on. The person closes the door behind them, and locks the doorknob.\",door;light,\"A person enters a dark room containing a television. The individual then shuts the door behind them and locks it.;The person opens the door, turns on the light, shuts the door and locks it.\",c104 2.50 9.20;c141 6.50 15.00;c006 5.90 14.70;c008 0.00 6.40;c007 12.50 17.00;c097 0.00 6.80,16.08\r\nAEP2A,ZDKC,Bathroom,3,5,Yes,A person is watching a medicine bottle.  Then a person is running out the door.,doorway;medicine,A person is holding a pill bottle and looking at it. then they leave the room.;There is a person picking up a medicine bottle and looking at it.  That person then leaves the room,c128 0.00 21.90;c097 15.60 23.00,21.96\r\nO8T6G,NMK2,Kitchen,7,6,Yes,\"By the doorway, one person is sitting and laughing while trying to open medicine from a bag.\",bag;chair;doorway;food;lunchbox,\"A person is smiling while sitting down on a chair, opening a lunchbox.;A person is sitting in a chair going through a bag in the bedroom.;Person sitting in a chair opening up a bag and taking out items from the bag.\",c021 0.00 10.60;c149 3.10 11.50;c059 0.00 35.00;c152 3.10 18.80;c063 18.80 26.90;c020 0.00 35.00,33.71\r\nOOKN5,BONA,Bathroom,6,7,Yes,A person in the bathroom is undressing by taking their jacket off and placing it in a box on a desk in the bathroom. They change their mind and begin dressing and putting the jacket back on.,box;clothes;coat,\"Person pull off jacket sat it on a box pick it back up and put it back on.;A person in a bathroom wearing a jacket, takes off the jacket and puts it in a cardboard box on the floor.  The person touches their chin with their right hand, then takes the jacket out of the box and puts it back on.\",c000 13.30 19.70;c044 16.60 27.80;c148 22.80 38.00;c155 0.00 12.70;c002 21.20 27.80;c039 9.60 19.70;c001 10.30 14.90;c041 9.40 13.80,36.75\r\nOTIA2,BPXZ,Home Office / Study (A room in a house used for work),4,7,No,A person is walking to turn on the light. Then the person began opening their medicine.,chair;doorway;light;medicine;table,\"A person walks through the doorway into the home office and turns on the light. They pick up a pill bottle off the desk and shake some of the contents into their hand. The person sets the pill bottle down, but then picks it back up again to read the label. They push the chair back a little more from the desk, and then look at the pills in their hand.;A person enters a room, turns on a lightswitch, and picks up a bottle on the desk.;A person walks into a room and turns on the light, picks up a bottle, opens and puts what's in it into her hand, then turns a desk chair.\",c104 0.00 4.40;c128 2.00 14.00;c097 0.00 5.00;c009 14.10 19.50,23.62\r\n6FV5P,GFWE,Hallway,6,7,Yes,A person is seen playing on their phone with a book in their hand. They close their phone and then pick up a bag.,bag;book;hand;phone,\"A person is standing in a doorway, holding a book and playing with a cellphone. The person puts down the cellphone and picks up a plastic bag.;A person looks at their phone while holding a book in the hallway. The person continues to look and picks up a bag from the stairs.\",c016 0.00 22.20;c026 0.00 33.00;c020 21.60 33.00;c152 12.00 18.70;c015 0.00 25.40;c032 18.20 23.00;c021 22.90 32.30;c087 2.80 11.30;c023 19.70 28.30,32.04\r\n83S5W,JQ7D,Hallway,6,7,Yes,\"A person enters a hallway and closes the door behind them. They sneeze and laugh, and then pick up an empty glass and a plate with a sandwich on it.\",dish;door;floor;food;glass;hands;plate;sandwich;sneeze,\"A person enters a room and sneezes before grabbing a plate of food off the floor.;A person enters a room through a brown wooden door, coughs and then picks up a plate of food from the ground before continuing to walk.;A person enters a house and closes the door behind them, sneezes, and then picks up a plate of food and a glass of water and walks down a hallway.\",c069 18.40 26.00;c149 17.80 27.00;c063 19.10 26.30;c118 15.40 27.00;c153 9.20 17.80;c061 16.20 27.00;c120 16.20 27.00;c067 15.10 21.90;c152 11.00 18.30;c006 5.80 12.40;c107 15.30 27.00;c008 5.10 11.50;c110 14.30 21.20;c127 14.10 22.60;c097 4.10 11.90,26.33\r\nXYJYK,BONA,Living room,4,2,Yes,A person is snuggling in a towel while opening bags of groceries.,bag;blanket;floor;food;groceries;shawl;towel,Person taking groceries out of a bag and laying them on the floor then but a blanket around the shoulder.;A person gets out various kinds of snacks like chips.  Then the person puts a towel around themself and sits there.,c020 0.00 4.00;c130 0.00 4.90;c033 22.80 29.10;c034 25.30 33.50;c063 8.40 14.10;c070 22.00 34.00;c073 22.00 28.80;c035 19.70 34.00;c125 30.60 34.00;c061 0.80 27.30;c062 0.80 23.70;c072 25.40 30.20;c061 0.00 4.90;c061 2.90 10.50;c061 9.90 14.70;c062 0.40 4.80;c062 5.00 12.00;c062 10.10 14.90;c072 29.20 34.00,32.58\r\nWM2J7,4UGC,Living room,7,6,Yes,\"A person is washing a window. They stop, and start tidying a cabinet.\",cabinet;door;shelf;towel;window,\"A man is standing and washing the window, then he moves to a china cabinet to open it and begin cleaning the figures inside it.;A person washes a window and a display case then opens the display case and moves something.\",c091 0.00 9.00;c112 27.00 31.00;c113 13.10 24.90;c038 0.00 8.40;c082 20.30 31.00;c092 0.00 10.50;c114 20.40 31.00;c008 17.50 23.80,30.46\r\nV1WN7,JTAS,Bedroom,2,3,Yes,A person is dressing while sitting on their bed. The person stands and begin taking their dishes to the sink and tidying the room.,bed;blanket;clothes;cup/glass/bottle;dish;hair;sweatshirt,\"Person in bedroom, sitting on bed, puts on sweater and then gets up and starts to tidy up room by picking up dishes and folding blanket.;A person sits on a chair and puts on a sweatshirt.  This person starts to tidy up the room and fold a blanket.;Person sitting on the chair putting on clothing pick up dishes and put them on the table\",c135 0.00 15.90;c119 0.00 13.90;c148 0.00 14.40;c154 12.40 37.00;c075 16.20 22.90;c148 24.10 37.00;c144 8.50 14.10;c000 0.00 4.70;c109 13.90 25.10;c001 22.90 37.00,36.00\r\n3R4DD,0Z4M,Home Office / Study (A room in a house used for work),4,7,Yes,A person picked up a lying towel from the floor then walked over to the dusty desk.,blanket;cabinet;chair;clothes;desk;floor;shirt;towel,Person picking clothes off floor then go over to a desk and sit in a chair.;A person picks up a towel from the floor of their bedroom. They then begin to fold the towel and sit down in a chair.;A person folds a towel and sits in a chair,c151 22.20 28.70;c059 24.70 34.00;c002 0.00 9.10;c004 5.90 18.40;c033 3.80 34.00;c037 5.60 34.00;c035 2.10 9.60;c127 2.30 8.50;c075 6.10 32.30,33.08\r\nDAA3F,JTAS,Bedroom,7,7,Yes,A person is awakening in the bedroom by the window. They then begin eating some groceries that are next to the bed.,bed;blanket;box;food;glasses;sofa/couch,\"A person covered with a blanket awakens in bed.  They sit up, put on their glasses, then take some food and begin to eat it.;A person wakes up out of bed, puts on glasses, and instantly starts eating potato chips or some kind of food.;The person awoke and put on their glasses. The person grabbed a bag of snacks and began eating from it.\",c134 23.70 28.60;c133 18.10 27.20;c156 24.80 29.30;c063 11.50 17.40;c135 1.50 33.00;c146 0.00 6.70;c061 12.30 33.00;c070 0.00 33.00;c123 7.50 33.00;c072 0.00 7.60;c040 13.20 33.00,32.00\r\nREWLB,AT5D,Bedroom,6,5,Yes,Person is standing by window fixing laptop. Another person is opening can of food.,bed;food;laptop;sofa/couch;table;window,\"Person sitting on a bed eating food out of a dish, another person taking an object of the desk.;Two people are in a bedroom. One person is sitting on a bed eating food out of a bowl. The other person is standing up and using a screwdriver to try to fix a laptop computer.;One is sitting on the bed and eating food from a plate. Another one is standing and and fixing something with a screwdriver.\",c061 6.30 15.50;c154 11.20 23.90;c156 16.90 29.00;c135 16.30 31.90;c047 0.00 4.10;c047 0.00 14.10;c047 11.50 18.90;c062 0.00 32.00;c123 0.00 32.00;c009 21.30 32.00,30.62\r\nK247M,M7K8,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is standing in the entryway holding a laptop and trying to turn a doorknob.,door;laptop,\"She tried to open a door while she was holding a laptop in her hand, but she could not open it.;A person holding a laptop computer is standing in an entryway and struggles to open a door.\",c141 0.00 35.00;c047 0.00 35.00;c008 0.00 35.00;c051 0.00 35.00;c052 0.00 35.00,34.42\r\nKS5JT,JTAS,Bathroom,7,7,Yes,A person turns on the light and then laughs in a doorway before tidying some of their toiletries.,doorway;light;table;various objects,\"A person walked into a room, turned on the light, stood in the doorway for a moment and laughed, then walked into the room and touched something in front of them.;A person stands at the doorway of a bathroom and turns on the light while laughing and smiling and then the person enters the bathroom and begins moving things around.\",c104 0.00 5.70;c149 1.80 18.00;c009 18.40 25.20;c097 0.20 5.20;c152 1.70 18.30,29.25\r\nG71O7,P2J3,Living room,4,4,Yes,\"A person leans against a door in the hallway, eating some food out of a bag. Their phone buzzes, and they begin laughing when they look at the screen.\",bag;door;food;phone,\"A person wearing a messenger bag unzips the bag and begins eating food contained inside, the individual then picks up a phone and begins speaking into it.;Person standing in a room with a bag on the shoulder took out a cell phone then make a call and talk.\",c019 36.90 48.00;c020 0.00 48.00;c063 4.20 16.90;c156 12.50 41.60;c149 43.80 48.00;c016 31.90 48.00;c061 12.50 33.80;c152 44.30 48.00;c018 30.70 36.20;c021 4.90 32.40;c015 31.00 48.00,47.42\r\nJDZV7,4UGC,Bathroom,6,7,Yes,\"A person washes their hands in the bathroom sink, then opens a cabinet door and places clothes inside.\",cabinet;clothes;door;hand;sink;towel;water,\"Person washing hands at sink, dries them and then picks up clothing, folds them before putting them away in the cabinet.;A person in a bathroom washing and drying their hands and then picks up a shirt and folds them, picks up a second folded shirt before opening and closing a cabinet door.;A person washes their hands in the sink before drying them off with a towel and placing towels on a shelf.\",c139 0.00 9.80;c113 22.70 32.00;c006 25.20 30.90;c004 12.30 27.80;c036 8.70 15.70;c035 8.60 15.70;c034 8.60 14.60;c000 13.20 22.30;c001 17.30 22.50;c033 6.90 14.30;c001 28.30 32.00;c002 12.60 17.80,31.04\r\nMMFQA,DW3I,Living room,6,6,Yes,The person is sitting on the sofa and watching TV. They stop watching and pick up a book from a nearby desk to read.,book;chair;sofa;table;television,\"A person plays around with a remote in their hand. The person presses a button on the remote and picks up a book and starts to read.;he took the controler in hand  turned off or on tv, and started to read a book which has blue hard cover\",c123 0.00 40.00;c009 8.70 17.70;c027 12.30 22.10;c032 12.30 40.00;c059 0.00 40.00;c132 0.00 14.60;c030 12.30 17.90;c026 0.00 40.00,38.67\r\nPRH15,DW3I,Pantry,6,6,Yes,\"Smiling, a person closes a cabinet after filling it with non-perishable groceries taken from a bag.\",bag;can;door;food;groceries;shelf,Someone is unleading grocery items onto a shelf from a black leather bag that is sitting on the floor.;Person taking cans from a black bag and putting then onto a shelf in a pantry.;A person gets food out of a bag and puts it into the pantry.  The person wipes off their hands when they are done.;A person is putting away cans of food.,c130 0.00 26.60;c020 28.40 39.00;c081 0.00 25.60;c020 0.60 6.00;c021 0.00 3.50;c152 0.00 4.10;c061 0.30 6.90;c061 5.00 11.60;c062 1.80 7.10;c062 6.70 12.00;c063 0.30 5.20;c063 5.20 9.60,37.75\r\nOPSF8,DW3I,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is eating at their desk. The person looks intently at a picture at the corner of their desk, and takes a drink of their coffee.\",chair;coffee;computer;cup;desk;food;medicine;mug;table,A person eats some food and drinks some coffee while sitting at a desk.;a person is drinking coffee and eating while looking at a computer;A person sitting at a desk eating some food and then drinking from a coffee cup before sitting back in a chair.;A person is at their desk and they take something with a drink before leaning back in their chair.,c011 0.00 31.00;c109 12.80 20.60;c156 0.00 10.10;c106 5.80 16.70;c107 5.80 20.20;c110 5.80 11.90;c061 5.80 20.20;c128 0.00 4.30;c129 1.80 13.50;c062 0.00 6.00;c059 0.00 31.00,30.46\r\nGZF5F,GE1M,Dining room,5,7,Yes,A person is in the dining room at the table with a glass and a person is standing pouring something in it.,cup;dish;glass;something;table,\"Person picks up a glass drinks pour more water in a glass then drink the water.;A person standing at a table drinking a glass of water, then pours another glass out of a pitcher and drinks it.\",c106 4.00 15.60;c107 6.20 14.60;c108 4.70 11.70;c109 5.00 11.90;c110 0.00 18.00;c009 8.00 18.00;c120 4.00 9.20;c119 9.40 14.40;c118 0.00 18.00,16.92\r\nJ3LY1,P2J3,Hallway,7,7,Yes,A person watches another person working in the hallway. The first person pulls out their camera and takes a picture.,camera;doorway;light;phone;picture,\"A person is looking at the switchboard, adjust the plug in it, then walks near another board, insert the charger in it, and keep the wire on the window, another person comes in with holding a camera in his hand takes a picture of a first person, who is bending and picking up some wire from the ground.;The person is staring at the floor then moves a wire from one spot to another as another person takes a picture.\",c015 13.90 37.00;c087 16.60 37.00;c016 14.10 37.00;c097 13.70 19.70;c103 12.60 23.90,36.12\r\nTQO6O,GFWE,Recreation room / Man cave,7,7,Yes,The person eats some food and then takes some homework out.,book;food;homework;paper;sandwich;sofa,A person eats some food while looking around the room. The person takes some paper and writes something on it with a pen;A person is sitting and eating. Then the person picks up a notepad and writes something.,c117 15.70 25.20;c145 16.10 35.00;c065 0.00 19.90;c156 0.00 20.40;c123 0.00 35.00;c026 22.10 31.90;c061 0.00 21.30;c062 0.00 19.90;c115 16.40 35.00,34.08\r\nR971Z,M7K8,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person opens the door to a walk-in closet and stares at the rows of clothes, twisting the doorknob idly while leaning against the door frame. They reach down and pick up dusty pair of shoes off of the floor; the cloud of dust causes them to begin sneezing.  The person sits down on the carpet and puts on the shoes.  They stand up and smile at themselves in the mirror, fixing their hair before exiting the room.\",closet;clothes;door;floor;hair;mirror;shoe,\"A person opens up a closet, rummages through it, pulls out some shoes, and then stares at themselves in a mirror while grooming their hair.;A person opens a closet, gets some shoes out, then sits down, puts them on, then adjusts their hair holding a mirror.\",c144 20.70 30.60;c151 10.80 20.90;c093 19.60 32.80;c096 19.60 33.10;c053 9.90 22.50;c008 0.00 6.10;c152 7.40 17.50;c113 0.00 7.20;c054 11.10 19.80;c094 19.40 25.00;c002 7.50 14.90;c154 14.00 23.40;c056 8.80 14.00;c114 1.60 12.10,35.92\r\n2BO2G,CP6Y,Dining room,7,7,Yes,\"A person is tidying up the dining room table.  The person grabs a box of medicine, a picture, and some homework and places them on the counter.  The person then sneezes.\",book;box;groceries;picture;tabel;table,\"A person goes over to the table and starts to tidy it up  then they walk over to the shelf and put things on the shelf then they sneeze.;A man is standing and arranging items on his desk, moving groceries onto the table from the counter. He stands as he does this work and never sits.\",c040 18.50 25.10;c009 2.20 15.80;c153 33.00 39.00;c130 19.20 25.90;c086 28.50 35.70;c012 0.00 39.00;c042 5.40 12.00;c086 17.30 26.60;c029 18.10 23.80,37.79\r\nF19VE,I48P,Kitchen,3,6,Yes,A person is eating some groceries while putting some of the groceries away.  The person is smiling.,bag;box;food;groceries;shelf,A person picks up some food and eats it. A person then grabs some groceries and puts them in the pantry.;The person takes food from a box and places it on the counter then puts other food away in a cupboard.,c130 12.80 31.60;c156 5.20 35.00;c040 19.70 32.80;c043 19.50 33.80;c061 11.80 34.60;c063 12.80 17.60;c063 20.40 24.90;c042 15.50 21.20;c062 6.70 16.10;c081 21.70 31.90;c022 6.40 11.90;c061 0.40 11.30;c063 0.00 5.00;c042 23.60 30.10;c020 0.70 13.10,33.58\r\n17P5V,4UGC,Home Office / Study (A room in a house used for work),7,7,Yes,A person walks into their study and throws a laptop down on a chair. The person gathers some dirty dishes and leaves.,chair;computer;couch;desk;dish;doorway;laptop;sofa;table,\"A person walks into a room holding a laptop, closes the laptop and put it on the couch, then picks up dishes from the couch and leaves the room;A person with a laptop walks into a room where another person is on a computer at a desk. They shut their laptop and place it on a couch. They pick up dishes from the couch and exit the room.;One person  is looking at photos on a computer and another person walks in with a laptop and puts the laptop on a love seat, picks up plates from the love seat and leaves.\",c046 6.70 16.40;c047 0.00 17.20;c049 11.50 19.00;c120 18.50 32.00;c011 0.00 4.10;c097 6.40 11.70,30.58\r\nJOMFO,JTAS,Laundry room,6,6,Yes,A person is sitting by a hamper and a box.  Then a person is throwing a blanket.,blanket;box;floor;towel,Person come in a room sat on the floor pick up a blanket put it back in a box take it out and throw it.;A person sits down on the floor with a blanket in their laptop. The person throws the blanket out of camera view.,c074 15.00 20.10;c151 0.00 6.70;c127 3.70 21.40;c125 2.00 20.70;c154 17.00 23.90;c075 11.40 19.70;c036 14.50 20.10;c044 2.10 10.30;c071 11.80 17.80;c126 14.20 20.10;c073 3.50 9.80,22.79\r\nP4KFQ,ENHU,Home Office / Study (A room in a house used for work),6,7,Yes,A person sits in the home office grasping a broom while working on a laptop.,broom;chair;laptop;table,\"A person is holding a broom and then sits down.;A person standing upright and holding a broom sits in a desk chair and maintains grip on the broom throughout.;A person sits down, holding a broom in his hand, and he begins to open his laptop and look at the screen.\",c098 0.00 9.00;c051 1.50 9.00;c151 0.00 5.40;c059 0.10 9.00;c011 0.00 9.00;c014 1.80 9.00;c052 1.40 9.00,7.75\r\n7RXMM,CP6Y,Bathroom,4,6,Yes,\"A person sits in a chair, holding a pair of shoes. The person looks into the mirror and begins laughing.\",chair;clothes;mirror;shoe,A person sitting on a folding chair in a white tile room stands up to inspect a mirror that is built into the wall.;The person sits on a chair next to a sink then stands up and looks in the mirror.,c053 0.00 26.00;c059 0.00 8.00;c096 5.30 26.00;c154 4.20 26.00;c000 0.00 26.00,25.04\r\nI3GIA,P2J3,Living room,7,7,Yes,\"A person is in the living room, wrapped in a blanket and smiling while watching another person use the vacuum.\",blanket;chair;floor;vacuum,\"People are in a room.  One is sitting down in a chair, the other is vacuuming the floor around him.;A person is sitting and snuggling with a blanket. Another person is walking around the room and is using a vacuum.\",c137 0.00 33.00;c154 0.00 33.00;c072 0.00 33.00;c127 0.00 33.00;c059 0.00 33.00,31.62\r\nWD12X,BONA,Bedroom,7,6,Yes,\"A person is closing the wardrobe, using the vacuum and then watching their self in the mirror of a bedroom.\",broom;closet/cabinet;door;hair;mirror;vacuum;wardrobe,A person closes the closet and looks in the mirror while holding a broom;A person using a broom to close cabinet doors and then walking up to a mirror and adjusting their hair.,c096 7.30 32.00;c144 10.70 32.00;c101 0.00 24.80;c006 0.00 16.00;c100 0.00 25.00;c098 0.00 16.90;c099 11.00 16.00;c112 2.40 7.30,31.42\r\nBVN7J,P2J3,Kitchen,7,7,Yes,One person is toweling off wet dishes them in a cabinet while another person is sitting at a table fixing an electronic item.,dish;shelf;table;towel,A person wipes dishes and puts them where they need to go.  Another person is attempting to fix and take apart a machine or computer.;A person is drying the dishes while other person is trying to fix something. They both are standing in kiitchen.,c119 26.20 36.00;c081 3.80 10.20;c081 14.80 21.20;c120 0.00 6.40;c120 6.70 12.70;c120 17.80 23.70;c033 0.00 36.00;c121 0.00 36.00;c118 16.40 36.00;c014 0.00 36.00;c038 0.00 9.00;c038 8.00 18.00,34.71\r\nUSPJK,ZDKC,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is throwing clothes and then playing air guitar with a broom in the Closet / Walk-in closet / Spear closet.,bag;broom;closet/cabinet;clothes,\"person picks up clothes off the ground in the closet and throws them out of the closet;A person looks through their closet and takes throws some clothes around. Then they use a broom as if it were a guitar.;A person looks through a box on the floor of a closet and pulls some clothes out, tossing them on the floor. The person takes a broom and pretends it is a guitar.\",c003 2.70 23.30;c098 18.80 32.00;c100 17.70 23.90;c002 0.50 24.40;c114 0.50 22.50;c154 3.20 9.60;c004 3.50 21.10,31.38\r\nV2ZO4,AT5D,Dining room,6,7,Yes,\"In the dining room, a person is standing near the window. Another person sneezes, and then washes their phone.\",cup/glass/bottle;dish;phone;table;towel;window,A person sneezes and then cleans a cell phone with a pink cloth. A second person stands by the window and looks out.;The people are standing around the table one person is looking out the window the other person in wiping an item with a rag.,c092 0.00 12.90;c153 7.50 14.10;c018 10.80 15.50;c121 10.60 32.00;c111 10.60 32.00;c038 10.60 32.00;c017 16.10 28.10;c014 0.00 32.00;c035 0.00 6.50;c009 4.10 9.80;c015 0.00 32.00;c034 4.60 9.20;c033 0.00 9.10,30.71\r\nOFFQ4,ARRB,Living room,7,7,Yes,A person snuggling with a blanket decides to pour some medicine,bag;blanket;bottle;couch;medicine;pillow;sofa,\"A person is sleeping on the couch with a blanket, then wakes up and opens some medicine;The person sleeping on the sofa woke up and lifted head up;A person is laying on the couch wrapped in a blanket. She gets up and begins to eat some food that has been sitting next to her.\",c072 0.00 26.00;c122 0.00 26.00;c128 17.50 23.00;c078 0.00 26.00;c146 0.00 16.90;c023 13.40 18.90;c020 13.90 20.80,24.96\r\nTCJWE,AT5D,Kitchen,6,7,Yes,\"Person number one was in the kitchen making laughing and making sandwich, while the other person smiled and swept with a broom.\",broom;floor;food;man;sandwich;sink,a man sweeping and another man preparing food.;A person sweeps the floor while another cooks on the kitchen counter. The two converse each other while completing their tasks.;A person stands and sweeps the floor with a broom while another person stands at the counter and prepares food and a drink.,c102 2.60 9.80;c066 6.30 16.70;c154 10.60 22.30;c063 0.00 32.00;c062 0.00 32.00;c098 0.00 32.00;c127 0.00 32.00;c061 0.00 14.90;c147 0.00 14.90,30.67\r\n6TC5G,GE1M,Entryway (A hall that is generally located at the entrance of a house),5,1,No,A person throws a pillow down then laughs as they turn off the light.,bag;blanket;closet/cabinet;clothes;doorway;floor;light;pillow;shelf,\"The person walks into the hallway from the door and begins hanging things in the closet. The person throws a bag on the closet floor. The person turns off the light.;A person walks in the closet and hangs their jackets up and then shuts off the light;A person puts some clothes onto some clothing racks, and then throws the rest on the floor below them.\",c105 14.00 18.00;c001 11.90 17.20;c002 0.00 5.20;c004 0.70 6.60;c000 0.70 9.60;c071 5.60 12.20;c070 0.00 4.10;c126 12.30 17.50;c114 1.90 7.80;c077 12.30 17.50;c152 13.30 18.00;c074 2.30 7.40;c097 0.00 4.00;c081 0.00 18.00,17.38\r\nQ948H,JTAS,Bedroom,6,6,Yes,\"A person grasps a book from the table.  They open it up, remove a small picture from it and close it again.\",bed;book;phone/camera;picture;shelf;sofa/couch;table,\"Person sitting on bed, reaches over and grabs a book from the table, opens it up takes a picture before returning the book back to the table.;A person sits on a bed, grabs a book off of a table, finds a picture in the book, puts the book back on the shelf, and stares at the picture in their hands.;A person leans over and grabs a book off a small table. The person takes a picture out and puts the book on the table again.\",c084 1.80 10.40;c027 5.90 25.10;c009 7.90 20.70;c135 9.90 26.80;c087 5.80 22.20;c081 17.80 33.10;c029 5.30 16.50;c123 0.00 34.00;c115 1.10 16.20;c083 11.90 16.50;c088 12.40 24.70;c028 24.30 30.60;c030 0.30 6.00;c026 1.10 30.80;c025 21.80 27.80,32.96\r\nBL7OF,I48P,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"A person throws a pair of shoes under the window. The person scratches a spot of dirt off of the window glass, then watches something outside.\",floor;shoe;window,\"A person tosses their shoes next to a window, opens the window, and starts staring out the window in an overtly intense manner.;The person throws shoes under the window, opens the blinds and looks outside.\",c053 0.00 4.00;c058 1.00 5.00;c092 6.00 37.00;c126 0.00 6.10,36.00\r\nPBEUF,M7K8,Bedroom,7,7,Yes,\"In the bedroom, a person is pouring a drink into a glass. The person then plays with their phone.\",chair;cup;glass;phone;table,\"A person is looking at something, then she picks up the glass and pour something in another glass, then she picks up the mobile and start looking at it and shake the chair and looks at the mobile.;A person sitting in a bedroom pours something from a medicine bottle into a cup and looks at a cell phone.\",c015 4.00 33.00;c018 2.50 11.20;c108 0.80 7.70;c110 0.00 6.90;c016 4.60 33.00;c107 0.00 10.30;c109 2.50 9.90;c011 0.00 33.00;c059 0.00 33.00,32.29\r\nT8VDU,JTAS,Living room,6,6,Yes,A person is sitting in a chair watching tv and laughing. They pick up a cup of coffee from a table nearby and take sips as they continue watching tv.,chair;cup;dish;glass;sofa/couch;table;television,\"A woman sits in a living room sofa while a television plays, the individual then grabs a red drinking glass from the table and takes a sip.;A person sits watching TV.\",c132 2.20 11.80;c106 9.80 21.50;c110 4.50 15.80;c059 17.10 27.60;c132 10.80 24.30;c011 0.00 34.00;c118 18.10 34.00;c107 17.50 34.00;c123 0.00 34.00;c152 1.30 7.00;c151 0.00 3.00,33.21\r\nRXCQR,I48P,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is laughing while trying on clothes and then working on homework in the Closet / Walk-in closet / Spear closet.,clothes;floor;homework;jacket;pants;paper,\"Person in a closet take coat off the shelf while another person looks and then sit down reading a book.;A person is in a closet and tries on a brown shirt, then later sits down to open some books on his lap.\",c148 2.10 26.00;c117 21.80 32.90;c145 26.30 37.90;c001 0.00 20.00;c151 25.00 31.90;c125 27.40 38.00;c002 0.00 7.80;c115 25.10 38.00,37.12\r\n9LTZT,EDYS,Kitchen,2,5,Yes,A person is in the bathroom undressing. They start washing their hands. They grab a glass and fill it with water from the sink.,cup;dish;glass;hand;sink;water,\"A person picks up a glass and drinks something from the glass, then puts the glass down and rubs his stomach to indicate he liked what he drank.;Person in a kitchen picks up multiple items before picking up a cup and taking a drink. Person then rubs their stomach and smirks.\",c106 13.60 22.90;c107 9.80 16.60;c120 8.30 16.10,30.29\r\n8O07M,4UGC,Stairs,5,6,Yes,A person is walking up the stairs then opening a cabinet door at the top of the stairs,closet;door;stairs,\"Person walking upstairs using hand rail goes to the closet, opens the door, and looks around for something.;A person walks up a set of stairs, opens a door, and stares intensely into the open door as if wondering what secrets are held beyond.;A person walks up a staircase and opens the door to a closet at the top of the stairs and stands there looking into the closet.\",c008 16.20 26.70;c141 17.10 23.80;c113 17.70 24.70,30.25\r\n9POJB,EDYS,Bedroom,3,3,Yes,A person is closing the medicine and snuggling in the bed.,blaket;blanket;chair;couch;cup/glass/bottle;dish;medicine;phone/camera,\"A person sitting in a chair opens a bottle of medicine, then puts it on the floor, then takes a blanket and covers up.;Person sitting in a chair drinking a something then put a blanket over body then stand up and walk out the room.;A person starts off at the camera. The person sits in a chair for a moment and then walks up to the camera and puts their hand over the front of it.\",c128 4.30 10.00;c154 2.20 7.20;c073 16.50 22.60;c128 7.30 14.60;c151 5.20 11.10;c059 14.00 27.90;c118 5.40 20.50;c017 0.00 9.10;c107 5.10 17.70;c109 12.00 18.20;c123 5.90 29.50;c070 16.70 29.20,31.38\r\n3KDI5,I48P,Stairs,7,7,Yes,\"One person sits on the stairs to dress into their shoes, then starts playing games on a laptop.\",clothes;floor;game;laptop;shoe,A person sits cross legged on stairs while putting on a pair of shoes and working on a laptop in a relaxed manner.;A person is sitting on the stairs putting on shoes.  Then the person uses their laptop while still sitting on the stairs.,c055 0.00 23.80;c048 21.70 28.00;c125 0.00 36.00;c056 0.00 23.30;c053 0.00 8.80;c148 0.00 23.10;c052 21.90 36.00;c047 21.40 36.00,34.58\r\nSN1VT,BONA,Bathroom,7,7,Yes,A person is standing in the bathroom playing with their hair.  The person sneezes and grabs a towel off the rack to wipe their nose.  The person throws the towel on the table and knocks over a glass.,floor;glass;hair;mirror;table;towel,A person is in the bathroom fixing their hair they sneeze and turn around and wipe their face on a towel then they through the towel on the floor and go over to a mirror and look in the mirror. And they hit the mirror.;A person is standing and fixing their hair. The person turns around and wipes their face on a towel. The person the looks in a mirror and fixes their hair.,c144 0.00 18.30;c033 15.60 26.20;c036 21.70 27.20;c153 12.50 19.00;c126 21.70 27.20;c035 17.40 24.60;c038 15.60 25.40;c034 21.20 27.50;c096 26.20 34.00,32.92\r\nBVDB6,ENHU,Bedroom,6,5,Yes,\"Person is walking through doorway snuggling with pair of shoes, then puts them on shelf and starts laughing.\",shelf,\"A person walks into a  room with some shoes, kneels down, and puts them on a shelf below a tv.;A man with a cleaning cloth enters a room which has a television monitor sitting on an open bookshelf in a corner.  He starts to dust the shelves with the cloth.\",,8.00\r\nCQ435,ZDKC,Dining room,1,6,Yes,A person in their dining room is running around while laughing because they see something funny on the television. They are also watching something funny on their laptop.,laptop;table;television,\"He was staring at TV, and then suddenly he turned around and went to pink laptop and tried to do something on it;A person watches the tv and then moves around the room, eventually looking at a small pink toy laptop on a table.\",c131 0.00 5.20;c132 0.00 5.30;c051 9.00 26.00;c150 1.30 12.80;c149 0.00 5.40;c014 8.60 26.00;c152 5.10 21.50;c048 9.10 13.70;c052 9.90 26.00,25.17\r\nD9PWE,WK8I,Living room,6,5,Yes,\"A person is vacuuming the sofa in their living room. The person walks to the bathroom, and closes the door. The person stands in front of the sink looking in the mirror.\",door;mirror;sink;sofa;vacuum,A person vacuums their coach before walking into the bathroom and looking at themselves in the mirror.;A person takes a vacuum and being to vacuum a couch. They put the vacuum down and walk into a bathroom and motion towards the mirror.,c096 23.30 30.00;c137 2.50 13.50;c152 26.30 30.00;c138 0.00 5.00;c097 16.00 21.00;c094 26.00 30.00,29.25\r\n8TZSC,CP6Y,Bedroom,4,7,Yes,One person is in the doorway with a broom smiling at another person sitting in front of a mirror getting dressed.,broom;clothes;comb;doorway;hair;jacket;mirror,Person is sitting on chair looking in mirror and putting clothes on and fixing their hair. Another person is standing in doorway and holding broom.;A person is looking in the mirror and puts on a jacket and brushes the hair.  In the back another person is watching him.;A person is sitting in front of a mirror and puts on a jacket and combs their hair while a second person stands in the room while holding a broom.,c096 0.00 19.00;c144 10.20 19.00;c098 0.00 19.00;c152 0.00 19.00;c059 0.00 19.00;c148 0.00 8.70,18.46\r\nAEAE2,GFWE,Kitchen,6,6,Yes,\"In the kitchen, the person is cooking as the radio is playing in the background. The radio suddenly announces that protesters are burning books outside the doorway of city hall.\",dish;food;pot;stove;window,A person is cooking over the stove. They continue to stir while looking at something.;The person is cooking. They are stirring something that is on the stove and standing at the stove watching the food cook.;A person at a stove in a kitchen in constantly using a spoon to stir a pan.,c147 1.00 33.00;c092 18.10 23.50;c118 0.00 33.00,31.79\r\nPJUM0,GFWE,Kitchen,6,6,Yes,\"A person stands in front of the refrigerator, grasping the door. The person pulls out a bottle of water, and pours it into a glass.\",cup;dish;door;glass;refrigerator;table;water,\"A person opens a refrigerator, removes a bottle, pours the contents into a glass and then drinks from the glass.;A person opens a fridge and takes out a bottle of water, removes the cap and places it on the counter, picks up a glass and pours water into it then takes a drink\",c142 2.00 7.90;c108 9.60 21.60;c006 2.00 7.90;c107 3.30 23.30;c106 19.50 29.20;c143 0.00 6.10;c120 7.10 13.50;c118 8.50 13.80;c109 18.20 23.20;c110 1.70 9.20;c009 7.10 11.90,31.83\r\n9M48H,GFWE,Kitchen,6,6,Yes,\"A person walks in, places camera on table, sneezes then goes to sink after throwing out tissue.\",cabinet;counter;napkin;phone;table;towel;window,\"A person walks into the kitchen, puts their phone down, and sneezes.  They then wipe their nose with a tissue and throw it away under the sink.  The person then goes to the sink, stares out the window, glances left, glances right, and then the video ends.;Someone is in the kitchen and sets a towel on the counter. They sneeze and blow their nose and throw away the napkin and looks out the window.;A person puts their phone on the kitchen counter and sneezes a few times. The person looks outside their kitchen window.;A person walks into the kitchen, puts a phone down on the counter, sneezes, wipes nose, throws the tissue away under the sink, then washes hands.\",c009 0.00 4.50;c153 1.60 13.00;c015 0.00 4.30;c017 0.00 8.70;c092 12.40 32.00,31.29\r\nVJVHM,P2J3,Kitchen,6,7,Yes,The person turns on a light and then works at washing a shelf.,closet/cabinet;cup/glass/bottle;dish;light;shelf;table,Person turns something on wall then walks to shelf and grabs something and puts it in bowl.;A person turns on their lights and places a magazine on the shelf before cleaning the shelf with a bowl of water.,c104 0.00 8.00;c081 14.60 25.50;c082 16.50 34.00;c114 10.00 15.70;c110 13.30 18.50;c118 13.80 34.00;c012 22.10 34.00;c119 15.00 34.00;c120 13.60 19.30;c107 13.30 34.00,33.25\r\nV2GC9,SW82,Pantry,7,6,Yes,\"Person A walks into the pantry with a bag of groceries.  Person A begins unpacking the bag and laying the items on the shelf, tidying as they go.\",bag;closet/cabinet;door;food;groceries;phone/camera;shelf,\"A person carrying groceries through a living space, setting something down on a stove and then opening a pantry door and putting groceries away.;A person walks through the house holding a bag, goes to the pantry and put groceries away.\",c021 0.90 19.40;c008 11.30 21.10;c020 2.30 13.90;c081 9.90 23.30;c130 10.10 24.20;c017 4.00 9.70;c151 18.00 24.00;c141 7.30 12.90;c113 7.20 13.20;c097 2.60 8.10;c006 0.00 2.60;c022 0.00 15.20;c062 13.30 32.00,30.58\r\nY0MCG,JTAS,Living room,6,7,Yes,\"A person puts a pillow down on the sofa, then lies down on it.\",pillow;sofa,\"A person picks up a pillow, fluffs it and puts it onto a couch, then lays on the couch with it under the person's head.;A woman stands and fluffs a pillow before throwing it onto a couch, which she lays down upon with her head on the pillow.\",c077 4.90 10.80;c079 0.00 3.40;c122 7.40 16.60;c151 7.10 13.10;c123 8.10 13.20;c080 5.50 11.20;c076 0.00 9.40;c078 12.40 32.00,30.67\r\nJT1XT,M7K8,Hallway,6,7,Yes,A person jiggles the door and smiles while talking on the phone.  Another person is watching intently.,door;hands;phone,\"Two people are in a hallway.  One is on a cell phone, holding on to the doorknob rocking and laughing.  The other has hands to her face and is also rocking.;The people are standing in the hallway. One person is talking on a phone, and one person is holding their hands to their face. The person on the phone gets off the phone and crouches down.;A person is by a door and is talking to someone on a phone.  There is another person next to the phone listening.\",c015 0.00 31.00;c019 0.00 30.40;c152 2.50 31.00;c141 0.30 30.40;c149 2.20 7.60;c018 0.00 31.00;c016 26.70 31.00,30.00\r\nLSH63,V044,Closet / Walk-in closet / Spear closet,5,1,No,\"A person is in a laundry room walking with a towel in a bag, they then put the bag on top of a table.\",bag;doorway,\"A man walks into a closet, folds up some bags and puts them away, then turns around, puts his hands in his pockets and walks out.;A person walks into the room carrying a bag and puts it away, then walks back out of the room.\",c022 10.00 16.90;c097 2.70 8.00;c020 2.80 15.50,21.04\r\n0PVKV,CO87,Bedroom,6,6,Yes,\"A person sitting in a bedroom is taking their medicine, afterwards they take a bite of their sandwich and leave the rest on their dresser.\",bed;cup;dresser;food;glass;medicine;sandwich;water,\"A person sitting on a bed reaches out to take medicine off of a dresser. The person opens the medicine, swallows the medicine and washes it down with a glass of water. The person then takes a sandwich of the dresser and begins eating it.;A person is sitting on a bed and picks up a bottle of medicine. The person removes a pill, picks up a cup of water, and takes the pill. The person then picks up a sandwich and starts eating it.;A person took her medicine and then ate something.\",c156 8.10 15.50;c106 9.50 15.20;c135 0.00 32.40;c129 0.00 15.20;c065 3.00 15.00;c154 4.70 20.40;c106 17.50 25.90;c128 23.40 30.60;c063 20.60 26.90;c109 18.50 23.90;c061 20.30 33.00;c107 0.00 10.50;c062 28.40 33.00;c067 21.10 33.00;c069 20.10 25.10;c110 0.00 4.60;c068 28.90 33.00,32.46\r\nJ6JNK,CO87,Bedroom,6,6,Yes,A person is awakening with clothes on and closing a wood door.,bed;door;hair;medicine;sandwich,\"A person wakes up from bed and closes the bedroom floor.;A person is laying in bed. They sit up and holding their head then sit on the edge of the bed before standing up and closing the door next to their bed.;A person is laying in bed, gets up and rubs their eyes while yawning before closing the door.\",c006 24.00 32.00;c146 0.90 10.80;c151 23.50 28.00;c154 24.00 29.20;c144 10.80 16.20;c133 0.00 14.30;c134 0.00 10.00;c141 24.20 29.20;c135 7.10 27.40,30.75\r\nC6C7Q,CO87,Bedroom,6,6,Yes,\"A person awakens from a deep sleep. They flip on a nightstand light, look at a wall clock, then flip the light off. They snuggle back into their blanket, going back to sleep.\",bed;blanket;clothes;door;light;pillow,\"The person gets up from bed and turns on a lamp. The person turns off the lamp, then goes back to bed.;A person wakes up and turns on a lamp and then they turn it off and go back to sleep;A person wakes up in a bedroom and turns on a light. They check the time and then go back to sleep.\",c146 0.00 19.10;c104 11.00 16.20;c072 23.10 32.70;c146 0.00 5.20;c078 23.90 33.00;c133 0.70 28.40;c134 0.00 33.00;c105 17.40 23.80;c070 22.30 33.00,31.58\r\nM18XP,BONA,Living room,7,5,Yes,\"A person opens a door and looks through, smiling. They close the door and set a book on a table.\",book;door;table,\"A person comes through the door. The person picks up some notebooks off a table and stacks them together;A person enters a room from outside, walks up to a glass table, then takes the stack of books that were on the table and shuffles them so they are neatly organized on top of one another.\",c006 2.50 11.20;c012 8.20 32.00;c009 8.00 32.00;c026 8.00 32.00;c141 0.00 8.90;c097 0.00 6.70;c028 9.70 32.00;c152 5.70 12.90;c008 0.00 8.60,31.25\r\n07QNG,V044,Bedroom,5,7,Yes,\"A person is in the bedroom doing homework and watching tv in the background. They stop to pour some water in a glass and take a drink, then they sit it down and get back to homework.\",bed;book;cup;dish;drink;homework;paper;television;tv;window,\"The person in the video is watching a video and writing something on a piece of paper, then gets up and gets something to drink and sits back down.;A person is sitting on a bed doing homework while they are watching tv the get up and pour a cup of juice then they sit back down on the bed and continue to do their homework.;A person is sitting and working on their homework. The person is also watching television. The person stands up, pours water, and drinks it. The person goes back to sitting and working on their homework.\",c145 0.00 27.30;c108 29.40 36.70;c151 41.00 49.40;c116 23.30 28.20;c106 34.40 43.30;c132 9.60 19.90;c154 24.70 30.40;c135 0.00 28.40;c118 27.80 44.70;c115 0.00 28.20;c026 46.20 56.00;c032 0.00 13.80;c107 28.90 44.70;c110 27.20 32.90,55.04\r\n9CCFC,ENHU,Home Office / Study (A room in a house used for work),1,,No,A laughing person is sitting in their study reading a book and eating a bag of chips.,book;chair;coffee;cup;desk;food;table,\"A person is sitting and laughing while reading a book. A person then holds a cup of coffee.;A person is sitting in a chair at a desk reading a book and eating something.;A person sits in a chair, reading a book. The person then turns and eats a bite of a small snack.\",c032 0.00 15.00;c149 1.00 7.00;c011 0.00 15.00;c059 0.00 15.00;c115 0.00 15.00;c063 4.10 12.10;c029 1.90 7.70;c152 1.30 7.20;c026 0.00 15.00;c156 4.70 13.60,14.42\r\nQ38XP,BONA,Bathroom,7,7,Yes,A person sits in the bathroom eating a bag of popcorn while watching a movie on their laptop. The person sets the laptop down on a table.,bag;chair;food;laptop;table;television,A person sits down and watches their laptop screen. The person takes some bites of some food and continues to watch the screen.;A person is sitting down while eating food. he is looking at the laptop. It is plugged in somewhere.,c051 0.00 32.00;c156 6.70 18.90;c059 0.00 32.00;c061 0.00 13.00;c011 0.00 31.50;c132 0.00 32.00,31.04\r\n5EIJ3,GFWE,Hallway,4,7,Yes,A person is talking on their phone laughing uncontrollably while standing next to a door. They bend over and begin rapidly licking the doorknob.,door;phone,\"A person is smiling and laughing while talking on a phone.  The person then begins to lick a doorknob.;A woman put a phone up to her ear and started laughing, she then started licking a doorknob before turning off the camera.;A person talking and laughing on the phone and then bending down to lick the door knob on the door.\",c019 0.00 38.00;c149 0.00 27.60;c152 0.40 23.50;c141 15.50 22.20;c015 0.00 38.00,37.29\r\n1VIQC,0Z4M,Recreation room / Man cave,5,7,Yes,\"A person is working at the desk grasping a pen.  The person puts the pen down and picks up a glass of water.  The person takes a drink of water and sneezes while drinking, spitting water all over a pillow resting on the desk.\",chair;cup;desk;glass;laptop;pen;pillow;table;water,A person is sitting at a desk using a computer they pick up a pen then they put it down and take a drink of something and spit it out on the floor and start yelling.;Person setting at a desk in front of a laptop then pick up a can then drink out of it.,c011 0.00 22.50;c106 12.70 25.60;c153 12.90 34.00;c059 0.00 34.00;c107 11.60 34.00;c110 11.30 24.10;c149 20.30 24.90;c051 0.00 6.30,32.71\r\nIV1S7,ENHU,Dining room,7,7,Yes,\"A person runs through the doorway into a dining room, removes a glass from a nearby cabinet, places it on the table, picks up a pitcher which was sitting on the table and pours themself a glass of whatever beverage or liquid it contains.\",cabinet;cup;dish;doorknob;glass;table,\"A person gets a glass out of a cupboard, puts the glass on the table, and then pours water into it.;A person takes a glass from a cabinet, places it on a table and pours water into it.\",c108 10.30 18.00;c110 4.70 11.70;c009 8.20 13.60;c112 5.80 10.80;c113 2.60 9.10;c150 0.50 6.40;c151 2.50 7.00;c119 7.80 13.40;c118 8.00 13.10;c120 4.00 10.10;c141 2.90 10.10;c107 5.80 13.30;c109 8.10 13.40,16.75\r\n844D4,CP6Y,Stairs,6,7,Yes,A person is walking down the stairs holding their laptop and a pile of homework.  The person puts the laptop onto a chair at the bottom of the stairs.,book;chair;homework;laptop;stairs,\"person getting down the stairs holing a paper and a laptop, kept the laptop on the chair holding the paper;The person carrying a laptop,working down the stair,put the laptop down on the chair at the bottom of the stair.;A person walks down the stairs with a laptop and puts it on a chair.\",c025 18.50 23.00;c026 17.90 23.00;c032 18.10 23.00;c051 0.00 20.20;c030 19.90 23.00;c115 0.00 21.90;c027 18.60 23.00;c047 0.00 21.50;c051 0.00 7.30;c051 3.60 8.60;c051 6.10 10.90;c049 14.90 21.50;c046 16.00 21.60,21.88\r\nYG9UR,CO87,Home Office / Study (A room in a house used for work),4,1,No,\"A person is sitting on the sofa, wrapped in a towel. The person reaches for their homework and begins to do it while drinking a can of soda.\",blanket;book;chair;glass;homework;paper;sofa;towel,\"A person sitting in a chair and snuggling with a towel is working on their homework.;A person was sitting on a chair. The person then bent over and picked up a book and a folder. The person then opened the book and began to read from it. While reading, the person grabbed a can from a window ledge and drank from it.;A woman in a towel starts studying from her book and then drinks some kind of beverage on her chair.\",c033 0.00 33.00;c145 11.10 33.00;c059 0.00 33.00;c072 0.00 33.00;c026 6.10 33.00;c116 1.20 10.00;c030 0.10 9.70;c123 0.00 33.00;c110 19.70 33.00;c107 19.70 33.00;c032 13.20 33.00;c106 23.20 29.80;c027 12.20 18.10,31.92\r\nCSHTJ,CP6Y,Living room,6,7,Yes,\"A person sits in a chair, holding a sandwich. The person laughs.\",chair;couch;food;sandwich;sofa,A person is sitting on a couch and eating a sandwich.;A person sits on their couch and flips the channel of a tv with a remote in their hands.;A person sits on the couch in a room while holding some bread in their hand.,c059 0.00 18.00;c065 0.00 18.00;c156 0.00 18.00;c123 0.00 18.00;c152 2.70 18.00;c149 2.70 18.00;c061 0.00 18.00;c067 0.00 18.00,16.58\r\nBW2OT,GFWE,Pantry,7,7,Yes,\"A person sits at a table, eating a sandwich. The person sees a picture, which causes them to smile.\",book;food;phone/camera;picture;sandwich;table,The person is eating a sandwich and then looks at a picture and smiles at it;The person is eating a sandwich and then smiling at something in her hand.,c084 12.10 31.70;c152 13.20 31.70;c009 10.10 14.70;c011 0.00 32.00;c063 0.00 5.20;c016 12.20 31.70;c062 9.60 15.00;c017 25.80 32.00;c065 0.00 13.90;c083 11.10 17.50;c067 0.00 14.50;c069 0.00 2.60;c085 12.20 31.20;c086 26.90 31.80;c029 13.30 18.10;c088 12.10 31.40;c068 0.00 14.40;c156 0.00 13.80;c061 0.00 13.90;c149 12.10 31.70,30.88\r\nOB660,ENHU,Dining room,6,7,Yes,\"A person waking up, covered in a blanket. They throw off the blanket, and run over to the window to look outside.\",blanket;chair;table;window,\"A person wakes up from being asleep at the table, throws a blanket off of them and runs to look out the window.;A person lies at the table while sitting.  This person jumps up and runs to the window and looks out.;A person wakes up from where they fell asleep at the table, gets up and runs to look out the window\",c150 0.00 5.60;c154 5.00 14.30;c011 2.40 11.20;c072 0.00 11.80;c146 0.30 10.40;c074 7.40 12.30;c059 0.00 11.50;c070 7.40 12.20;c092 7.20 15.00,14.42\r\n580G0,ENHU,Bedroom,6,7,Yes,\"A person awakens in bed. They pull a blanket off and toss it to the side. They sit up, take a sip of water, and put on their shoes.\",bed;blanket;cup;glass;shoe;water,\"person woke up , removed blanket, drink some water with the glass and got up from bed, wearing shoes;A person is laying in bed, gets up out of bed, drinks from a cup, and then puts their shoes on.;A person laying in a bed removes covers, sits up, picks up a glass of water on a table, takes a drink, stands up and puts on a pair of shoes\",c134 0.00 3.70;c074 1.70 6.40;c110 6.10 11.60;c106 6.60 14.70;c107 6.40 14.90;c055 14.80 22.00;c154 11.80 17.30;c109 10.50 15.60;c133 0.00 4.10;c071 0.00 6.90;c146 0.00 3.70,20.50\r\nBZ5N5,I48P,Kitchen,4,7,Yes,\"The person takes two glasses from the cabinet, pours drinks, and presents them on the table.\",cabinet;cup;dish;glass;table,The person is going through the cabinets and grabs two glasses and walks over to the counter and sits them down and pours water into both of them.;A person in the kitchen puts two glasses of water on the kitchen table and pours water from a bottle into both of the glasses.,c107 7.40 20.80;c009 13.30 21.50;c108 19.00 30.50;c110 2.20 16.80;c113 0.00 6.40;c107 12.40 18.30;c109 15.80 21.60;c112 10.80 16.40;c119 15.60 22.10;c120 0.00 16.80;c118 7.10 21.50,33.54\r\n2XXH8,M7K8,Bathroom,5,5,Yes,A person closes the medicine cabinet. This person sneezes and then checks themselves in the mirror before turning on the water in the sink.,cabinet;hands;mirror,A person is in the bathroom and looking into a mirror. They also sneeze one time while they are in the bathroom.;A person adjusts a mirror then nods head once. The person looks closely at self and probably washes hands. Then the person rubs nose and reaches to turn off camera.,c096 6.10 14.70;c139 10.80 25.00;c153 3.20 8.90,30.42\r\nOWUW8,ENHU,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person throws a towel on the floor of the closet, then starts sneezing while selecting a piece of clothing from a hanger.\",clothes;floor;towel,\"A person is fumbling around with a shirt and throws it down to the floor. The person then starts to pick out another shirt before sneezing.;The person uses a cloth then throws it on the floor, then holds another towel before sneezing.\",c033 0.00 3.90;c153 6.10 12.50;c154 0.00 13.00;c002 0.00 2.80;c003 0.30 4.60;c004 0.00 4.20;c126 0.50 5.00;c000 0.00 5.20;c001 0.00 4.90,11.54\r\nPFKQ9,GFWE,Living room,7,7,Yes,A person standing in the living room tidying with a vacuum grasping the handle while a laptop sits on the sofa.,floor;rug;vacuum,\"The person walked into their living room and started vacuuming the floor. The person looked at the camera and then continued to vacuum the floor before stopping and leaving the room.;The person knelt down to vacuum the floor. The person then stood up bending over to finish vacuuming, and walked away.\",c137 0.00 32.20;c127 0.50 26.20,33.75\r\nE7GV1,M7K8,Bedroom,5,7,Yes,A person holds a camera and sits on a bed.,bed;camera;phone,\"A person is looking at webcam, picks up the camera, with a dog sitting at her back,looks on side and at her dog, turn the camera up down and looks on side and try to adjust the webcam.;A person is sitting on a bed and playing/holding a camera. The person is not smiling.\",c015 0.00 33.00;c135 0.00 33.00;c087 1.30 33.00;c018 0.00 3.10;c016 0.70 32.70,31.62\r\n3JCEI,CP6Y,Bedroom,6,6,Yes,\"A person is laughing and using their laptop. They stop, get up, and throw some clothes on the floor.\",bed;chair;clothes;floor;food;laptop;sofa/couch;table,\"A person sits at a table laughing at a laptop.  This person then gets up and throws things on the floor from the table.;A person is smiling at their laptop, they get up and start throwing stuff off their desk\",c003 9.60 17.80;c052 0.00 11.30;c154 7.10 12.30;c135 0.00 11.30;c046 8.30 13.00;c064 10.40 15.10;c123 0.00 11.30;c059 0.00 11.10;c149 0.30 9.40;c047 15.10 21.00;c014 0.00 11.40;c011 0.00 11.50;c051 0.00 10.00;c126 9.00 17.50;c152 0.30 9.40,19.79\r\nFOMJM,SW82,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person walks into their entryway with a glass of iced coffee. They place it on the table. The person stands in the entryway playing a game on their phone.,cup;glass;phone;stand;table,A person sets down  her cup on a table. The person pulls out a phone and looks at it.;The person walked over and set a glass down on a table. The person stood by the door and played with a phone.,c009 0.00 5.60;c015 3.40 31.00;c016 11.10 31.00;c018 2.10 8.20;c107 0.00 4.90;c109 0.00 5.60,30.12\r\nXXS99,JQ7D,Bedroom,6,7,Yes,\"A person awakens in bed with a book on their chest. The person takes the book, stands up, and looks at a picture hanging on the wall.\",bed;blanket;book;mirror;picture,\"Person laying in bed, gets up, have book in hand, looks and open book, walks to mirror, looks in it.;A person is sleeping in bed. They wake up, look at a book before staring at a picture on the wall.;A person lying under the covers in bed gets up, removes a book that had been lying on his chest, and walks across the room where he looks at himself in the mirror.\",c135 12.20 20.30;c085 20.10 27.00;c088 19.00 30.00;c026 12.10 19.90;c030 15.90 24.60;c154 15.60 21.70;c134 0.00 13.50;c133 6.90 16.20;c025 14.80 20.00;c027 13.40 18.70;c146 6.30 13.00;c072 0.00 13.90,28.96\r\nQJM3B,M7K8,Dining room,6,7,Yes,\"A person sits in chair underneath a window, working on a book. The person laughs, closes the book, and stands.\",book;chair;sofa/couch;table,The person is fumbling through a book while a dog walks around the room. The person then gets up and stands there.;The person is flipping pages in a book as the person sits on the couch then stands up and smiles as the dog runs around the floor by the person's feet.,c026 0.00 31.00;c032 0.00 14.70;c059 0.00 15.90;c154 11.40 16.30;c011 0.00 25.50;c123 0.00 16.80;c027 0.00 15.30;c029 10.60 14.90;c152 10.30 18.40;c025 10.10 14.40,29.83\r\n3J85M,0Z4M,Home Office / Study (A room in a house used for work),5,2,No,A person is opening a box of food and then tidying up and next eating a sandwich in the pantry.,cabinet;chair;drawer;food;sandwich;table;television,\"A person is sitting at a desk, then proceeds to retrieve snacks from a drawer and eat them.;A person is sitting at a desk they open a drawer and take out some food and eat the food.;Person sitting in front of a computer at desk,opened the desk drawer get snack out and eating  the snack.\",c113 2.80 9.30;c062 6.80 14.60;c067 18.30 28.30;c059 0.00 36.00;c061 7.30 13.40;c065 19.50 27.60;c156 19.30 28.80;c011 0.00 36.00;c063 7.20 15.30;c068 7.90 15.50;c069 8.00 13.80,34.58\r\nQY2ZD,ZDKC,Other,7,7,Yes,A person is sitting in a chair while watching something on their laptop. The person then sneezes before continue to watch the laptop.,chair;laptop,\"A person sits in a chair with their feet propped up and uses a laptop computer that is sitting on their lap.;The person is using a small, pink, laptop while sitting in a plastic chair.\",c059 0.00 34.00;c052 0.00 34.00;c153 13.50 21.00;c051 0.00 34.00;c047 0.00 34.00,32.83\r\n1B9DK,P2J3,Entryway (A hall that is generally located at the entrance of a house),3,5,Yes,A person opens door and walks in holding groceries. A second person runs in sees themselves in the mirror and stop to fix their hair.,bag;door;groceries;hair;mirror,\"Two people walk in a room and one starts looking in a mirror, while the one holding a bag just watches;Two people enter a house at the same time and one person stands in front of a mirror and primps while the other person stands behind that person.\",c008 0.00 5.90;c094 26.30 33.00;c144 4.00 29.70;c150 1.30 7.70;c096 4.40 33.00;c020 1.60 8.20;c141 0.00 6.40;c097 0.00 6.40,32.33\r\n999BP,M7K8,Kitchen,6,6,Yes,A person leaves the groceries on the table. Same person then gets the coffee out of the bag and opens it.,bag;coffee;food;groceries;table,A person takes a brown bag out of a plastic bag and opens it. They stand there for a bit holding it before they set it down and walk away.;A girl takes a bag and puts it on the table before beginning to remove groceries from it. She unpacks the items and then walks away.,c021 9.40 16.80;c020 8.40 27.90;c009 24.40 31.20;c023 2.10 7.70;c063 6.50 14.70;c156 12.70 24.00;c022 0.00 6.40;c061 1.80 6.20;c062 25.60 29.70,32.58\r\nO87OF,GFWE,Dining room,5,6,Yes,A person is in the dining room putting clothes on the table.  The person grabs a bag off the table and puts a pillow in it.  The person closes the bag and grasps it as they leave.,bag;blanket;clothes;pillow;tabgle;table;towel,\"A person places a blanket on a table and then puts a pillow into a bag. The person then walks away.;Person puts jacket on table then grabs bag and puts pillow in it and walks away.;A person folds a green towel up and puts it on a table. The person stuffs a pillow into a small white bag, then carries the bag away.\",c009 0.00 10.50;c021 4.70 10.80;c000 0.00 6.00;c034 0.00 6.60;c023 2.60 9.40;c014 7.60 28.40;c077 6.00 33.00;c076 6.00 33.00;c001 0.00 6.00;c020 4.20 33.00,31.88\r\n76Z3W,ENHU,Kitchen,6,7,Yes,A person is running a vacuum while sneezing and then picking up clothes in a basement.,clothes;floor;table;towel;vacuum,A person is vacuuming the carpet while sneezing. The person puts the vacuum down and picks up some clothes then walks away.;The person kneels down then sneezes and uses a handheld vacuum before standing up and taking a green fabric and a hat and leaving the room.,c001 12.50 22.00;c137 0.00 16.10;c153 0.50 9.70;c127 0.30 19.10;c154 8.00 14.30;c004 14.00 22.00;c035 15.80 22.00;c002 13.90 22.00;c151 0.00 15.60;c012 14.10 22.00;c000 14.20 22.00;c127 14.50 22.00,20.62\r\nONMCW,I48P,Basement (A room below the ground floor),4,6,Yes,\"One person walks past a desk with a broom, works at cleaning for a bit, then takes a glass from the desk.\",broom;cup;floor;glass;table,\"A person walked into a room while holding a broom. The person then swept the floor. The person then stopped sweeping and organized some things on a table. The person then picked up a glass that was sitting on the table and continued to sweep.;A person in the room sweeping the floor with a broom,stoped pick up a glass from the desk and holding the glass.\",c102 3.10 36.00;c110 21.40 27.50;c127 2.90 36.00;c098 0.00 36.00;c107 21.70 36.00;c012 15.40 26.30,35.12\r\n8MQH6,LXD5,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is grasping some shoes. They look out a window and laugh.,closet;door;shelf;shoe,\"A person opens a closet door, takes a pair of shoes off the shelf and laughs while they hold the shoes.;A person opens up the closet and pokes around before pulling out some sneakers.;A person opens a closet and takes a pair of shoes off a shelf.\",c053 9.90 33.80;c149 13.10 34.00;c008 0.00 8.10;c113 0.00 8.10;c056 10.10 15.80;c053 9.90 15.80;c141 0.00 7.30,33.08\r\nQKTUU,JTAS,Living room,6,6,Yes,\"A person is seen drinking a glass of water standing in a doorway. They hold their phone while checking messages, then put their phone away and leave.\",cup;dish;doorway;glass;phone;water,The person takes a drink of a beverage and fumbles with her phone. They then walk away with the phone and the drink.;A person takes a sip from a glass of water and looks on their phone. The person puts the phone away and walks away.,c015 0.00 20.00;c016 0.00 16.70;c106 0.00 6.60;c107 0.00 20.00;c118 0.00 20.00,19.33\r\n3OLX3,B6UG,Living room,6,7,Yes,A person takes a bottle booze from a shelf and puts it on a table. They mix themselves a drink and begin eating dinner and drinking.,cup;dish;glass;medicine;shelf;table,\"person took some medicine from the shelf and took it into a glass , and poured some water into it, has some food and took the medicine;A person standing near a table grabs a bottle of soda. The person then pours the soda into a glass and takes several drinks from it.;The person takes an item from the shelf then drinks from a can.\",c082 0.00 21.60;c009 15.10 22.10;c129 20.80 27.50;c106 18.10 31.00;c128 2.20 12.50;c119 0.00 15.90;c108 6.50 21.60;c107 0.20 13.40;c154 0.00 31.00,29.88\r\nGH19N,CP6Y,Closet / Walk-in closet / Spear closet,7,6,Yes,Person is opening door to closet then starts dressing then puts homework on table.,book;closet/cabinet;clothes;door;jacket;table,\"There's is a person that opens the door to a room while holding a book, then puts on a jacket.;A person opens a door holding a book.  this person puts the book down, and puts on a jacket.;A person comes into the room holding a book. The person sits the book down on  a small table and puts a jacket on.\",c009 13.60 18.20;c026 2.40 18.00;c148 14.70 29.00;c028 25.80 29.00;c148 25.80 29.00;c001 14.10 29.00;c113 0.10 12.10;c000 14.50 26.30;c002 11.60 17.40;c097 3.40 9.90;c008 1.70 9.50,27.71\r\nYO3KO,4UGC,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person folds a towel and sets it on the table. The person smiles, then leaves through the doorway.\",clothes;door;shelf;table;towel;watch,\"A person takes a towel off their shoulder, folds it, and then lays it on a table. The person then exits the front door.;A person walking to the entry door of the house, folding a towel, then opening the door and going out the door.;The person walks tot he door, folds a towel from on the shoulder, checks the watch and opens the door to walk out.\",c097 24.60 32.00;c033 2.90 19.60;c008 22.30 30.90;c009 13.90 20.10;c034 13.80 20.20;c006 26.30 31.40;c141 21.90 28.60;c004 2.30 17.20;c037 2.30 18.10;c081 13.30 18.40,30.58\r\nUZOCD,P2J3,Living room,6,6,Yes,One person was smiling while using the vacuum. Another was sitting up on a shelf.,broom;floor;vacuum;window,\"A person is sitting by a window, while another individual is cleaning the floor with a vacuum.;Two people stand in a room, one sitting on a window rail, while another cleans the floor with a duster of some sort.;One person is sitting on the edge of the wall as another person vacuums the floor of the room.\",c137 0.00 32.00;c102 0.00 32.00;c127 0.00 32.00,31.29\r\nHRASP,ZDKC,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,A person turns on the light to an entryway and are seen throwing shoes on the floor.  They grab a glass of water and are then seen closing a door.,clothes;cup;dish;door;floor;glass;light;shoe,\"A person throws a pair of sandals to the ground before taking a sip from a glass, and then shutting the door to the room.;A person walks inside and turns on a light. The person takes a drink from a glass sitting on the cooler and shuts the door.\",c058 6.30 11.60;c104 2.70 7.90;c006 19.70 26.40;c008 0.00 3.80;c106 11.30 20.30;c104 17.40 26.60;c106 15.50 25.90;c097 16.30 28.80;c126 5.90 10.80;c119 16.60 23.50;c109 16.80 23.20;c003 5.50 11.80;c107 10.70 22.90;c141 0.00 6.30;c110 7.80 14.20,31.96\r\n1QP1S,P2J3,Bedroom,4,5,Yes,One person awakens while another person is eating something from a bag and laughing at a picture.,bed;food;picture;sandwich,\"A person is eating a sandwich and puts it on a table and another person awakens.;A person eats some food while standing up. Another person then wakes up and scratches their nose.;A person eats some sort of fruit, while another person  is lying down then later gets up to talk with the other person.\",c156 8.30 14.90;c146 14.80 21.20;c149 21.90 35.00;c065 4.40 17.80;c134 0.00 21.00;c085 27.70 35.00;c152 21.70 27.10;c135 18.80 35.00;c067 0.00 35.00;c061 0.00 35.00;c133 14.80 22.30;c088 15.00 30.00,33.67\r\n9O0NP,ZDKC,Dining room,7,7,Yes,A person throws a book into a box then starts tidying a table.,book;cup;glass;silverware;table;towel,\"A person looks at a book then throws it down and wipes off a table.;A person looks through a book.  This person puts the book down, and begins to clean off the table.;A person in a kitchen reads from a book, puts it on a box and then wipes down a table.\",c026 0.00 14.40;c031 5.10 13.60;c009 5.00 12.50;c012 6.70 32.00;c013 5.90 32.00;c038 5.60 32.00;c109 24.00 32.00;c035 24.00 32.00;c037 24.30 32.00;c033 24.00 32.00;c110 23.70 29.00;c025 3.10 7.70;c032 0.00 8.30,30.71\r\n5CN21,ZG5N,Garage,5,7,Yes,A person is standing in their garage holding a pillow and a book. They leave the room.,book;pillow,\"A person roams around in a kayak shop with a pillow in his hand.;A person is walking through a garage, past a wall of kayaks while holding a pillow.\",c026 0.00 3.80;c032 4.60 10.30;c076 11.60 17.50,25.29\r\nSV6KF,GE1M,Stairs,5,6,Yes,A person throws a broom at the stairs. A person smiles and picks up a laptop on the stairs.,book;broom;floor;steps,\"A person is sweeping the stairs.  This person throws the broom down, picks up a book and walks up the stairs.;The person is sweeping the stairs with a broom then picks up a book and walks up the stairs.\",c098 14.80 23.00;c099 14.80 23.00;c101 9.30 14.50;c102 0.00 13.10;c030 13.80 19.90;c127 0.00 13.10;c126 9.40 14.10;c026 14.10 23.00,22.25\r\nKCRQU,JQ7D,Kitchen,6,6,Yes,A person walks to the stove and begins cook. The person opens the refrigerator and takes out additional ingredients.,counter;doorway;food;fridge;groceries;ketchup etc;pot;refrigerator;stove;table,\"A person is cooking on the stove. A person then opens the refrigerator, and takes out groceries.;A person walks into the kitchen to the stove and stirs the pan on the stove, then opens the refrigerator and gets an item out and walks over to the counter.;A person enters the kitchen and begins to stir something that's cooking on the stove, and they open the refrigerator and take three items from it.\",c147 3.20 20.10;c142 25.30 32.00;c143 17.20 24.30;c009 24.70 32.00;c130 24.20 32.00;c152 26.10 32.00;c062 27.50 32.00;c061 24.40 32.00;c063 21.20 29.00;c097 0.80 6.50,30.58\r\nNTXXB,I48P,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person stands in the entryway, watching something out the window. The person sits down, takes out a camera, and takes a picture.\",camera;chair;phone;picture;window,A person is standing at a window looking out the turn and walk away they grab their camera and sit on a bench and aim it at the window.;A person is standing and looking out a window. The person sites down then takes a picture of something out the window with a phone.;The person stood and watched out of the window. Then the person took a camera from a table and sat on a chair to take pictures from the window.,c018 11.00 17.50;c092 0.00 10.90;c059 14.50 24.20;c087 16.90 26.90;c151 13.70 21.20;c015 13.50 37.00;c016 19.20 37.00,35.54\r\n3I6XT,B6UG,Other,6,3,Yes,A person is playing with a pillow while eating on the sofa.,chair;food;pillow;sandwich;sofa/couch,\"A person is sitting down with a pillow in their lap eating something then sneezing on the pillow.;A person is sitting on a chair and holding a pillow. They also eat a snack while they are sitting down.;The person is sitting by the door, eating an orange and holding a pillow for protection in front of them.\",c076 0.00 32.00;c156 0.00 32.00;c061 0.00 32.00;c059 0.00 32.00;c065 0.00 32.00;c067 0.00 32.00;c123 0.00 32.00,31.08\r\n5VUT9,JTAS,Kitchen,6,5,Yes,\"A person standing in the doorway holds a broom.  They sweep a bit, then put the broom aside and pour a cup of coffee.\",broom;cabinet;coffee;cup;dish;floor;laptop,\"A  person sweeping the floor looks at the laptop computer .The person proceeds to put the bromm aside and open a cabinet door get a cup out and pour a cup of coffee.;The person is holding a broom and half-heartedly sweeping a small area while glancing at a laptop computer on a counter.  The person then sets the broom against the counter, opens a cupboard, takes out a red coffee mug and picks up a coffee pot to pour coffee into the mug.;The person is sweeping in the kitchen, looking at a laptop, getting out a mug and pouring coffee into the mug.\",c107 11.00 18.00;c108 18.00 25.00;c098 0.00 10.00;c099 5.00 10.00;c113 8.00 13.00;c127 0.00 8.00;c051 0.90 8.00;c110 9.60 14.40;c120 7.90 15.30;c102 0.00 10.20;c118 10.10 27.00,26.00\r\n0UPBN,P2J3,Bedroom,4,7,Yes,One person wearing clothes is lying while watching another person walking with a box.,bed;box;clothes;shirt,\"One person is putting on clothes and then lying on a bed, another person is walking and holding a box.;A man wearing a white checkered shirt grabs a red checkered shirt and puts it on. The individual then lies down on a bed behind them.;A person puts on their shirt before laying down on their bed while another person holds a box.\",c040 19.30 31.80;c151 16.60 23.10;c134 19.60 34.00;c148 0.00 19.40,33.46\r\nPPY0W,M7K8,Kitchen,6,7,Yes,A person is holding a bag and leaving through the doorway.,bag;doorway,A person is walking out of a kitchen holding a bag.;The person leaves the room and does not come back.,c097 3.00 8.00;c020 0.00 7.80;c022 0.00 8.10,32.29\r\nJNK11,ARRB,Garage,7,7,Yes,A person puts a cup of coffee on the shelf then leaves the room while playing on a phone.,cup;dish;doorway;glass;phone;shelf,\"A person is caring a cup in a garage, places it down, and starts reading their phone intensely while walking through a door.;A person walks in a garage and puts something onto a shelf. The person then takes out their phone and walks away with phone in hand.\",c109 1.80 7.30;c081 1.80 7.30;c107 0.00 7.30;c015 0.00 25.00;c016 3.80 22.90;c119 1.70 7.10;c118 0.00 7.80;c152 0.00 4.60;c097 18.20 24.50,23.75\r\nK5NFS,GFWE,Bedroom,4,4,Yes,\"A person awakens on the floor of their study. The person sits up, throws their pillow aside, and straightens up the clothes that they are wearing.\",bed;clothes;floor;pillow,\"A person laying on the floor puts a pillow on the bed and gets up.  The person begins tidying their clothes.;A person wakes up, places a pillow on the bed, and continues to adjust their clothing.;A person wakes up from a sleep. Then puts the white pillow on the bed. The person then fixes the shirt and white jacket that is being worn.\",c077 2.70 9.40;c124 0.00 6.40;c146 0.00 6.60;c154 6.50 13.20;c004 9.90 15.40;c080 2.90 10.20;c079 2.70 9.00;c076 2.90 10.20,31.58\r\nRV5CK,V044,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is drinking coffee in the room and holding a big pile of laundry while trying to turn off the light.,clothes;cup;light;shelf,A person standing upright in a bathroom drinks from a glass for several seconds then reaches for the light switch and shuts off the lights.;A person is holding a blanket and standing at a sink drinking they reach over and turn off the light.,c105 27.10 34.00;c106 0.00 29.40;c000 0.00 34.00;c081 21.20 26.90,33.17\r\nFJM09,CP6Y,Hallway,5,4,Yes,A person is smiling while walking with a coffee in one hand and homework in the other.,book;coffee;cup;dish;hand;homework;paper;stairs,People are in a hallway.  One person paces while reading a book and drinking from a mug.  The other stands by the stairs.;A person is walking and reading a book. That same person is also drinking some coffee. Another person is standing still.,c106 1.40 9.40;c107 0.00 17.00;c115 0.00 17.00;c032 0.00 17.00;c118 0.00 17.00;c026 0.00 17.00,16.00\r\nYLEEO,CP6Y,Stairs,5,7,Yes,A person is grasping a doorway.  Then a person is leaving down or up the stairs while holding a sandwich.,book;door;food;sandwich,\"A person makes sure a door is all the way closed, and then this person begins to walk up stairs.;A person closes a door while holding a sandwich in one hand. The person then walks up some stairs.\",c067 0.00 15.00;c141 2.70 8.20;c026 0.00 15.00;c006 0.00 6.40;c061 0.00 15.00,14.04\r\nZC017,ZDKC,Living room,5,7,Yes,A person is sitting on the couch watching television.  The person tidies up some magazines on the coffee table then takes a bottle of medicine out of a box.,box;chair;coffee;cup;floor;glass;medicine;shelf;sofa;table;television,\"A person was watching tv, they then got up, reorganized some magazines on a table, and then took out some pills from a box.;The person watching television got up and began tidying up a small table. Then the person placed a box on the table and removed a bottle of medicine from it.\",c109 13.90 21.60;c123 0.00 9.30;c110 13.70 21.30;c041 20.40 28.20;c127 18.50 25.90;c081 14.40 21.70;c044 21.50 28.80;c043 18.50 25.00;c042 21.10 26.10;c012 10.20 18.80;c154 5.70 10.60;c128 24.80 32.00;c040 19.00 29.90;c132 0.00 13.10;c009 19.80 28.50;c059 0.00 9.60,30.71\r\n0TDOP,ZDKC,Dining room,5,7,Yes,A person is putting a box on the table. The person sits down on a chair and starts eating.,box;chair;dish;doorway;food;table,\"A person holding a brown cardboard box enters a kitchen, sets the box on the table, then begins eating from a can of food that is also on the table.;A person enters a kitchen with a box and sits down at a dining table and begins to eat something while sitting beside the box.\",c011 8.90 31.00;c059 7.20 31.00;c042 2.10 8.00;c151 6.60 13.60;c156 12.80 31.00;c061 12.20 31.00;c062 12.40 31.00;c097 0.00 3.50;c009 2.10 8.40;c040 0.00 6.70;c118 9.80 31.00,30.42\r\nEOUCM,M7K8,Dining room,6,6,Yes,\"A person is standing in front of the window holding a mirror and a box.  The person puts the mirror in the box and closes it, then throws the box on top of a pillow.\",box;mirror;pillow;window,\"A person is holding a box and a mirror. The person then put the mirror in the box and closed the box.;Person grabs a box and a mirror, puts the mirror in the box and closes it.\",c039 6.20 15.90;c041 13.40 19.90;c042 0.00 8.90;c093 0.00 9.30;c043 0.00 4.70;c040 0.00 10.20,30.50\r\n4VX01,SW82,Bathroom,6,7,Yes,\"In the bathroom, is person is sitting down on the ground while looking up at the mirror. They stand up and grab on a book on the country top, while tidying the counter top a bit. Then, they grab the doorknob and leave the bathroom.\",book;box;counter;door;eye wash;floor;shelf;table,\"A person sits down on the floor. The person stands up, picks up a book and closes the door and walks outside.;A person sits on the bathroom floor before getting up and walking out with something in hand.\",c141 19.10 31.00;c012 7.80 26.80;c026 7.20 31.00;c030 7.10 15.10;c154 3.30 10.50;c125 0.00 9.40;c082 7.20 23.90;c006 24.10 31.00;c040 5.40 31.00;c097 23.50 29.50,30.17\r\n44PFW,GE1M,Dining room,7,6,Yes,A person is walking while holding a bowl of food.  Then a person is opening the doorknob.,dish;door;food,A person eats out of a dog bowl while pacing.  He then opens a door and absconds from the premises.;Person is walking through a room eating out of a dish open the door and then leave the room;There is a person walking and eating something from a bowl.  That same person opens a door and leaves the room.,c141 17.20 21.70;c061 0.00 17.20;c156 0.00 17.70;c008 17.60 24.20;c097 18.90 26.00;c006 19.50 26.00;c118 0.00 26.00,24.71\r\nI9CDV,4UGC,Bathroom,6,6,Yes,A person is eating a sandwich as they get ready in the bathroom. The person throws the sandwich aside and takes a picture in the mirror with a camera.,camera;food;mirror;picture;sandwich,\"A person with a camera around neck standing in front of a mirror by the table,picked up food ate look in the mirror took picture of self image.;A person is eating a sandwich at the bathroom mirror and throws the sandwich and takes a picture of himself in the mirror.\",c096 9.00 14.40;c065 5.20 11.00;c156 5.20 11.00;c087 17.20 23.80;c064 7.20 12.10;c016 11.80 32.00;c061 0.00 11.40;c015 11.60 32.00,30.62\r\nPTAZ9,LXD5,Dining room,6,7,Yes,\"A person sits at the table, working on homework and eating a sandwich. The person stands up and gets something from a cabinet.\",bag;cabinet;chair;door;food;homework;paper;sandwich;table,\"A person sits at a table working on homework and eating a sandwich. They stand up, open a cabinet door, grasp a bag of food and close the cabinet door.;A person sits and writes something on a piece of paper while eating a sandwich. The person then stands up to grab something out of a cabinet and hands it to someone else.;There is a person sitting at a table eating a sandwich and  doing homework.  That same person stands up and takes something out of a cabinet.\",c112 18.80 24.20;c065 1.50 16.00;c145 0.00 16.80;c156 0.00 16.80;c020 18.00 31.00;c011 0.00 16.60;c113 13.40 19.50;c067 25.40 31.00;c154 12.60 17.20;c059 0.00 16.20;c061 17.30 24.20;c141 13.20 18.70;c069 0.00 8.60;c008 13.50 19.00;c014 0.00 16.20;c063 12.90 22.20;c152 17.90 26.60;c149 0.00 15.90;c023 16.20 22.30,30.08\r\n93REJ,AT5D,Home Office / Study (A room in a house used for work),5,7,Yes,A person is washing clothes and another person is grasping a glass.,chair;clothes;coffee;cup;floor;table;towel,A person is sitting in a chair having a drink while the other person is walking and picking up clothes.;A person paces in between two zebra-printed beds as another individual sits in a red chair in the same area.;A person sits in a chair in a bedroom while drinking from a cup and a second person paces the room and then puts something in a basket on the floor while kneeling at the basket.,c005 9.40 32.00;c059 0.00 32.00;c001 9.10 14.90;c106 3.40 10.50;c106 12.20 18.20;c011 0.00 32.00;c125 12.20 32.00;c151 11.40 16.20;c034 10.20 15.40;c035 8.80 13.90,30.75\r\nKF08J,JQ7D,Kitchen,6,7,No,\"A person is walking over to the sink, sneezing and wrapped in a blanket. The person takes a bottle of medicine off a shelf.\",blanket;closet/cabinet;food;glass;medicine;shelf;sink,\"A person walks into a kitchen covered in a blanket, grabs something out of a cabinet, and then starts sneezing profusely while starting at the object.;A person walks through the kitchen wrapped in a blanket while sneezing multiple times. The person takes something out of a cabinet and looks at it.\",c070 0.00 31.00;c072 0.00 31.00;c128 10.50 25.00;c153 3.30 10.40;c063 6.70 12.30;c112 8.60 13.10;c113 5.70 10.90,29.50\r\nXMI29,AT5D,Bedroom,6,6,Yes,A person is eating food while another person walks into the basement carrying groceries.,bed;bowl;box;couch;dish;doorway;food;tray,\"A person is sitting on a bed and eating. Another person comes and sits down.;A person is sitting on a bed eating.  Another person walks in with a tray of food and sits on the bed.;One person is sitting on a bed eating from a bowl as another person enters holding a tray of food, then also sits on the bed as the first person continues to eat\",c063 8.50 17.70;c156 0.00 32.00;c151 8.40 17.30;c135 0.00 32.00;c062 0.00 32.00;c118 0.00 32.00;c097 3.80 8.40;c040 0.30 32.00;c061 0.00 32.00,30.50\r\nFO24A,ENHU,Kitchen,5,7,Yes,A person awakens in their kitchen while sitting at the table holding a phone smiles and leaves.,chair;desk;phone/camera;table;towel,\"A person wakes up, and walks away.;The person is sitting with their head on the table. They lift their head and get up from the chair and walk away.;he was resting on table, but he stood up from there and went somewhere\",c011 0.00 6.90;c146 0.20 8.30;c154 2.70 8.70;c059 0.00 7.00;c152 2.40 8.90;c015 0.50 9.00,8.04\r\nI4ON2,ENHU,Kitchen,4,4,Yes,\"A person throws a book toward a light, then sits and laughs.\",book;cabinet;chair;shelf,\"A person holding a book and then throwing it somewhere and sitting down.;A person flips through some pages in a book, places the book down, and then sits down in a chair nearby.;A person flips through the pages in a book, puts the book down, and then sits down themselves into a chair.\",c025 0.00 3.90;c027 0.00 2.70;c032 0.00 3.90;c059 3.80 10.00;c026 0.00 4.80;c031 0.60 5.10;c151 3.10 8.50;c152 5.30 10.00;c028 0.90 5.50,8.71\r\nD7W4E,BONA,Pantry,6,7,Yes,\"A person puts a coffee cup on a shelf. They pick up a picture, look at it, and sneeze.\",cup/glass/bottle;dish;picture;shelf,\"A person puts a cup into a  cupboard. A person takes a picture out of the cupboard and sneezes it on a few times.;A person opening a cabinet and then putting something in it, then taking out a picture frame, looking at it and sneezing on it.\",c081 6.50 13.70;c084 12.10 32.00;c153 20.90 29.10;c119 6.00 15.20;c109 6.50 15.70;c088 11.70 32.00;c083 11.50 17.70,30.71\r\nB9FWR,JTAS,Living room,3,6,Yes,\"The person was playing with a pillow, putting it on the floor to use as a table.\",floor;pillow;table,A person sits on a couch and fluffs a pillow.  This person then puts a laptop on the pillow and starts typing.;A person fluffs up a pillow then puts it on the the floor and puts a laptop on top of it.,,31.25\r\nX3UEQ,ZDKC,Bedroom,6,7,Yes,A person is tidying up a cabinet in a bedroom.  The person knocks a book to the floor.  The person sneezes as they bend over to pick it up.,bag;book;cabinet;desk;shelf;table,A person is going through a cabinet;A person is going through a cabinet looking for something they are putting books into the cabinet.;A person rummages through a cabinet under a tv while the tv is on. The person continues to search and puts some things away.,c030 11.30 31.00;c114 0.00 31.00;c082 16.10 31.00;c012 3.70 31.00;c081 25.40 31.00,29.75\r\nTZEIN,ARRB,Garage,5,6,Yes,A person stands in the garage while grasping their phone and holding a cup of coffee.  They play games on their phone as they leave the garage while drinking coffee.,cup;doorway;phone,A person walks around the basement while texting on their phone and holding a cup of coffee as well.;A person drinks from a cup while looking at a phone and walking.,c106 8.60 27.00;c107 0.00 26.70;c015 0.00 26.50;c016 0.00 12.70;c018 0.00 27.00;c097 0.00 27.00,25.75\r\nQMKZV,V044,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is walking by a closet and starts undressing, after tossing their shirt into the closet they pick up their laptop and some dishes from the floor and hold it.\",cabinet;clothes;dish;floor;laptop;plate;shirt,a person takes off their shirt and then grabs their laptop and plate off the floor;A person undresses and then picks up their laptop;A person walks into the room and begins to undress and put clothes away and tidy up.,c127 19.90 29.70;c050 19.90 26.80;c120 23.30 30.00;c046 10.00 24.90;c003 6.30 18.50;c155 4.40 12.10;c002 4.10 11.60;c112 15.90 21.60;c001 12.70 22.40;c047 22.00 35.00;c004 11.50 18.50;c000 9.00 18.40,33.67\r\nTAQ25,GFWE,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person sits at a desk, smiling at their laptop. The person closes the laptop.\",chair;desk;laptop;table,A person sits down in a chair next to a laptop. The person closes the laptop screen while sitting;A person walks into the bedroom and sits down at her desk. She puts something on the desk before she turns away in her chair.,c011 2.20 29.00;c046 11.60 17.70;c151 0.40 6.20;c059 2.20 29.00;c152 4.30 16.50;c051 0.70 16.50,27.92\r\nATCOR,SW82,Hallway,4,7,Yes,A person is snuggling with a blanket sitting then gets up to turn off the light.,blanket;doorway;floor;light;towel,\"Person is sitting on the floor with knees up and blanket draped over shoulders and nuzzles in blankets before standing, taking off blanket, walking into other room and turning off the light before walking out of the room and sitting on the ground and draping the blanket over body again.;The person is sitting on the floor wrapped in a blanket, then gets up to turn off the light in a nearby room.  Follow by the return to the aforementioned spot to be wrapped in the same blanket.\",c071 0.00 5.80;c072 0.00 15.20;c073 11.20 19.10;c105 19.70 25.80;c151 24.10 30.50;c154 13.60 20.20;c033 0.00 17.50;c097 16.80 24.30;c125 0.00 19.30;c070 0.00 18.50,30.25\r\nGBD1Y,JQ7D,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is tidying a shelf and then leaving a sandwich on the floor in the entryway.,closet/cabinet;door;floor;food;sandwich;shelf;wardrobe,Person looking in the closet moving items on the shelf person moving clothes on hangers around the closet.;The person is moving items around in the closet before closing the door and walking away.;A person looks through a top shelf in a closet. The person then flips through some clothes in the closet then closes the door.,c126 28.10 33.00;c156 0.00 3.20;c156 2.80 7.60;c156 7.90 12.70;c097 29.40 34.00;c081 0.00 23.40;c006 26.20 31.30;c082 0.00 30.00;c061 0.00 32.50;c068 27.60 32.60;c062 27.60 32.60;c067 0.00 32.50;c065 0.00 3.00;c065 2.80 7.30;c114 0.00 28.80,32.88\r\n9U82D,BONA,Stairs,6,7,Yes,\"A person is dressing by the stairs by putting on a jacket. They start smiling as they look at a picture on their phone. Then, they start drinking a glass of coffee.\",clothes;coffee;cup;glass;phone,A person stands on the stairs and puts a jacket on.  this person takes their phone out and walks down and picks up a cup.;A person standing in a staircase puts on a jacket and looks at their cell phone and takes a sip from a cup while standing on the stairs.,c106 24.50 36.00;c015 13.20 36.00;c148 0.00 16.20;c001 0.00 8.10;c107 25.20 36.00;c018 13.80 19.70;c016 14.80 36.00;c000 0.00 2.50;c152 17.40 22.80,34.58\r\n7V4NJ,4UGC,Hallway,5,7,Yes,A person in a hallway sneezes and then throws their homework at a door.,book;door;floor;paper,\"A person stands in a hallway looking at a book.  This person sneezes, and then throws the book, then picks the book up.;A person reads a book while standing up, then sneezes a few times and continues reading afterwards. They then throw the book at a door and pick it up.\",c153 4.80 12.00;c117 24.30 29.80;c115 0.00 22.30;c025 15.80 21.20;c126 17.70 22.90;c127 24.40 30.60;c031 17.10 22.30;c026 0.00 22.10;c154 23.80 32.00;c116 18.60 22.60,30.71\r\nZ7KC1,ZDKC,Kitchen,6,7,Yes,A person is sitting on a desk in a kitchen. They grab the broom and run from the room.,broom;chair;doorknob;magazine;picture;table,\"Person is sitting at a desk staring at a magazine the gets up, grabs a broom, then runs towards the door.;A person is sitting at the table holding a broom they get up with the broom and they run to the front door.;A person sits at a kitchen table in a hoodie looking at a magazine, then stands up, picks up a broom and runs to the front door.\",c100 22.60 31.00;c150 24.60 29.80;c154 14.50 19.30;c011 0.00 18.70;c141 26.70 31.00;c059 0.00 19.30;c102 18.30 27.30;c098 17.60 31.00;c088 0.00 13.10,30.17\r\nRJZ3I,JTAS,Bedroom,6,7,Yes,\"A person starts tidying up the room with a broom.  They drop the broom, start laughing and simply walk out the door.\",broom;door;floor,\"A person sweeps a room and then begins to laugh, drops the broom, and runs away down the hall.;This person is sweeping in a doorway and then smiles and laughs at the camera before running away.;A person is sweeping  the floor.  The person starts laughing hysterically and drops the broom.  The person leaves the room.\",c098 0.00 23.10;c102 0.00 23.10;c149 11.40 27.00;c150 20.40 27.00;c127 0.00 24.00;c152 13.60 24.80;c097 20.90 26.10;c101 18.50 23.00,25.71\r\n65UVU,AT5D,Bedroom,5,4,Yes,\"A person opens the door to the bedroom, and walks in, carrying a box. The person throws the box onto a shelf, then takes another box from the same shelf.\",box;door;shelf,\"The person walks in a room and takes something off a shelf. They walk backwards while looking at this item.;A person puts a container on a top shelf, and takes another container off of it. The person flips the box around and looks at it.\",c081 4.20 16.00;c040 0.00 9.00;c008 0.00 3.20;c097 0.00 3.90;c042 5.10 9.30;c043 9.60 16.10,30.96\r\nBRBWJ,CP6Y,Closet / Walk-in closet / Spear closet,6,6,Yes,A person throws a pillow on a shelf and starts getting undressed.  The person puts their clothes on the shelf as well and smiles.,closer;clothes;doorway;jacket;man;shelf,a man throwing somethign and taking off his jacket.;A person opens the closet and undresses then closes the closet;A person walks into a bath room.  The person then takes the clothes off and throws them into a tub.,c081 1.90 6.40;c155 3.60 19.60;c003 2.60 7.20;c154 1.80 23.00;c001 0.00 20.60;c152 16.10 22.40,22.04\r\nYX3V0,M7K8,Living room,6,6,Yes,The person is standing behind the coffee table with a book in the person's hand.  The person sneeze three times.,book;table,A person is standing by the couch reading a book.;A person first walking towards a couch then picking up a magazine off a table.  The person then opens the magazine to cover the bottom half of the person's face.,c026 2.30 32.00;c027 4.20 8.70;c030 2.30 7.70;c032 5.10 32.00;c153 5.60 12.10;c149 5.80 32.00;c012 1.40 7.10;c029 3.90 13.50;c117 1.30 7.10;c152 8.20 13.20;c115 2.50 32.00,31.00\r\n4RT06,M7K8,Kitchen,6,6,Yes,\"A person enters the living room and turns on the light. The person walks to the refrigerator, opens the door, and takes out some food. The person begins to cook a meal.\",bag;dish;food;groceries;light;refrigerator;sandwich,\"A person turns on the light. Opens the refrigerator, takes out food, and makes a sandwich.;A person walks into a room, turns on the lights, opens a refrigerator, and starts taking food out of a bag.;A person walks into the kitchen to the refrigerator and gets food out, goes to the kitchen counter and prepares food.\",c062 0.00 3.40;c143 0.00 2.60;c104 0.00 4.30;c063 4.80 12.00;c143 1.90 8.50;c023 15.00 26.60;c020 15.00 26.60;c120 6.20 15.80;c066 13.90 32.00;c118 14.80 19.40;c130 10.10 15.50;c119 15.00 19.90;c142 7.30 13.50;c061 5.90 15.70,31.08\r\nW65FZ,M7K8,Bedroom,6,6,Yes,A person is in their living room fixing a ripped pillow while lying on the sofa.,pillow;sofa,A person picks at a pillow while sitting on the couch.;A person wearing a gray sweatshirt grabs a brown pillow and begins grabbing pieces of lint off of the pillow.;Person sitting on the sofa with a pillow in lap person began playing with the pillow,c123 0.00 31.00;c076 0.00 31.00;c078 0.00 31.00,30.08\r\n5GP8M,M7K8,Closet / Walk-in closet / Spear closet,7,6,Yes,A person walking into a walk-in closet holding a phone.  They start tidying up clothes when the pick up a picture and smile.,book;closet;clothes;door;phone;picture,A person takes a phone call as they open their closet door to pull out a photo. They laugh at it.;A person is on the phone as they grab something from the closet and smile as they read it.,c015 0.00 12.70;c084 9.60 34.00;c113 3.10 9.50;c017 6.50 14.00;c019 0.00 13.60;c085 10.10 30.90;c088 10.50 31.50;c152 11.00 31.50;c083 6.90 15.80;c029 11.00 30.90;c008 2.80 10.00;c026 9.00 33.00;c141 3.10 10.20;c030 8.50 14.00,32.75\r\n6B2FN,CP6Y,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person stands in the closet, smiling as they look in the mirror. The person turns, grabs a broom, then leaves.\",broom;doorway;hair;mirror;shelf,\"A person adjusts their hair with a comb. The person picks up a broom and walks outside the room they were currently in.;A person is standing in front of the mirror and fixing his hair. He turns and picks up a broom, then leaves the room with it.\",c094 0.50 7.60;c096 0.00 15.90;c098 14.30 25.00;c100 17.10 25.00;c152 1.20 7.20;c097 18.30 23.50;c144 0.00 6.20;c081 2.20 6.70,23.92\r\nU0P7W,ZDKC,Living room,4,6,Yes,A person is grasping a picture in the living room. The person then opens the cabinet and puts the picture inside.,book;cabinet;door;entertainment center;picture;shelf,\"A person looks at something in their hands and walks towards a tv. The person opens a cabinet and puts the thing inside.;A person stands in a kitchen, examining the cover of a CD or DVD, then walks over to a television cabinet and puts the item away there.\",c084 0.00 29.20;c086 22.00 29.70;c088 0.00 30.00;c112 25.70 31.60;c113 18.80 24.90;c115 0.00 28.30;c032 0.00 25.90;c116 22.20 29.60;c006 25.90 31.30;c145 0.00 26.20;c141 19.50 24.60;c008 19.80 24.40;c081 22.40 28.90;c028 22.40 29.10,31.88\r\nHSEH1,AT5D,Bedroom,5,7,Yes,A person is fixing a light while another is watching near a doorknob.,chair;light,\"A person is standing in the doorway while another person stands  on a chair and is fixing a light bulb.;A person Is fixing a light on the room, while another person looks on.\",c103 0.00 20.60;c152 19.40 32.00;c060 0.00 25.80;c104 10.00 22.60,31.25\r\n6KGZA,JTAS,Kitchen,7,7,Yes,A person is standing in front of the stove and dressing. They pick up a book from the counter and leave.,book;clothes;stove;table,\"A person walks into a kitchen, places a shirt on the counter, grabs the shirt off the counter and proceeds to put it on before walking away.;A person places some clothes on a stove before putting it on and walking out of the scene.\",c026 20.60 27.00;c148 8.10 23.10;c000 0.00 4.10;c001 0.00 4.30;c003 0.00 4.40;c030 20.80 26.10;c117 20.80 26.10;c002 4.40 10.30,25.54\r\nRKOOJ,EDYS,Living room,5,2,No,\"A person is sneezing into a mirror, then dressing and then getting a glass of water in a bathroom\",blanket;clothes;mirror;picture;shelf;sofa/couch,\"A person sits down, and looks at themselves in the mirror, then grabs a blanket, and gets up.;A person sits down on a couch and looks at a painting.  This person stands up and grabs the camera.;A person walks into the room holding a picture. He sits down on the couch or chair and looks at the picture before he sets it carefully aside.\",c096 3.10 13.40;c151 2.30 7.50;c154 22.20 27.30;c001 15.50 22.60;c002 9.70 14.70;c000 10.60 19.80;c084 3.20 13.10;c088 3.80 12.80;c123 3.40 26.80;c081 17.10 22.60;c093 1.90 14.10,29.83\r\nLRJKT,I48P,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person in a closet smiles as they drink their favorite beverage.  Taking a book off a shelf above their wardrobe, they grasp it tightly as they turn off the light and exit the closet.\",beverage;book;closet;cup/glass/bottle;doorway;light;phone/camera;shelf,\"A person drinks out of a glass, and plays on their cell phone while drinking;A person takes a sip of some drink while standing in a closet. The person takes something off the top shelf and looks at it.\",c081 9.80 14.80;c026 14.30 34.00;c030 11.20 20.70;c029 15.20 21.30;c019 4.00 9.50;c097 28.00 34.00;c110 0.00 5.50;c115 13.80 34.00;c105 28.50 33.20;c107 0.00 14.30;c109 9.30 14.70;c106 0.70 12.80;c032 14.30 30.50,33.29\r\nG2JR9,BONA,Pantry,6,7,Yes,A person fixing a light and then throwing their sandwich.,floor;food;light;sandwich,A person takes a lightbulb and tries to put it on a fixture. The lightbulb lights up;A person tries to put a lightbulb in a fixture. The light turns on and the person throws some bread on the floor.,c067 23.30 29.60;c103 0.30 25.00;c149 28.10 32.00;c126 24.10 30.90;c061 22.10 29.90;c068 24.50 30.30;c104 20.70 25.60;c152 25.20 32.00;c069 21.90 29.00;c064 25.60 30.60,31.00\r\nLGPWK,ZDKC,Living room,6,7,Yes,\"A person is sitting on a couch watching television and holding a remote. The person stands up, puts the remote on a shelf and then leaves.\",closet/cabinet;couch;remote;shelf;sofa;television;tv,\"The person is sitting in a relaxed pose on a couch. They are watching TV and controlling the TV with a remote. The person walks up to the TV, puts the remote in a cabinet, and walks away.;A person sitting on a couch is watching tv and holding a remote, then they get up, open a door on the entertainment center and put the remote in it.\",c122 0.00 22.90;c081 22.40 28.00;c132 0.00 23.00;c154 18.90 25.60;c113 24.20 29.30;c123 0.00 23.20;c112 26.90 32.20,32.17\r\nLZ2Y4,ZDKC,Living room,6,7,Yes,A person is drinking some coffee in their living room. They put the coffee down and begin running around while looking for a mirror.,coffee;cup;dish;hair;mirror;sofa/couch,\"A person sitting on the couch drinks some water. The person puts the cup down and runs out of the couch, and adjusts themselves in a mirror.;Person is siting on a sofa in a hat and hoodie drinking coffee, then runs to the kitchen and back to the living room to look in the mirror.\",c106 0.00 5.10;c107 0.00 15.10;c096 16.90 22.00;c150 11.80 20.10;c154 11.40 15.90;c118 0.00 15.20;c109 10.00 15.50;c123 0.00 15.90;c144 17.40 22.00;c119 10.40 15.30,21.08\r\nIOGR7,SW82,Kitchen,7,7,Yes,\"A person is on the floor fixing the sink. Then, laughing, the person stands up and walks over to a chair.\",cat;chair;closet/cabinet;door;floor;shelf;sink,The person is on the floor and fumbling with something in a cabinet while a cat joins them. They stand up and walk out of the kitchen and pick something up.;A person is laying on the floor as a cat walk around. They pet the cat and then get up.,c124 0.00 20.40;c154 19.70 28.30;c006 16.50 21.90;c112 18.50 22.70;c097 25.20 29.50;c152 24.40 29.20;c125 15.80 24.60;c152 20.00 31.00;c082 0.00 20.10;c141 17.10 22.20;c125 0.00 25.10,30.38\r\nI5OPP,ARRB,Laundry room,3,7,Yes,A person is standing in the laundry room while watching a video on their phone. They begin to eat some food.,food;phone;sandwich;washing machine,The person is leaning against the washing machine eating chips and watching a video on the phone.;A person stands in front of a washer eating a sandwich while looking at a mobile phone.,c015 0.00 26.00;c061 0.00 26.00;c156 0.00 26.00;c065 0.00 26.00;c016 0.00 26.00;c067 0.00 26.00,25.04\r\nLQC89,ENHU,Living room,4,7,Yes,A person playing in their rec room with their shoes laughs.  They smile as they take a sip of coffee and a bite of a sandwich laying on a paper towel.,book;cup;floor;food;mug;sandwich;shoe;table;towel,\"A person is sitting on the floor and holding a book. The person places the book down and grabs a cup from the table and drinks it. The person eats a sandwich from a paper towel on the floor.;A person sits on the floor while eating from a plate, and drinking from a mug on a table.;A person sits on the floor and throws their shoes before grabbing a cup from a small table and taking a drink.\",c033 9.50 15.00;c065 11.10 20.00;c067 10.80 20.00;c156 12.40 20.00;c125 0.00 20.00;c009 9.00 14.40;c106 5.30 11.90;c109 7.90 14.20;c069 10.20 16.40;c053 0.00 6.70;c110 3.20 9.50;c063 10.80 17.80;c107 3.90 14.20;c061 11.50 20.00,19.00\r\nUO4X0,BONA,Stairs,7,7,Yes,\"A person plays with their shoes on the stairs, A person tries to eat their pillow on the stairs.\",pillow;shoe,A person is on the stairs throwing shoes in the air then they pick up a pillow;Person standing on the stairs throwing shoes up in the air and playing with a pillow,c058 0.00 19.60;c152 17.50 30.80;c078 19.20 32.00;c053 0.00 19.30;c076 17.30 32.00;c079 17.10 22.20,31.08\r\nPC7H2,GFWE,Living room,6,7,Yes,\"A person is sitting at the table. The person walks over to the sofa, sneezing as the person sits down.\",chair;sofa;table;television,\"A person sits down in a chair at a table with their arms crossed. They move from the chair to the sofa and watch TV.;Person walks to dining table, pulls out chair and sits down, gets up, pushes chair in, walks to couch and sits down on couch;A person sits down at a table, then gets up and sits on the couch.\",c123 4.70 18.20;c011 4.70 17.70;c151 3.10 10.10;c154 8.60 17.00;c059 7.50 16.20;c152 0.00 6.70;c132 16.20 32.00;c152 0.00 32.00,31.17\r\n8RU1Q,BONA,Recreation room / Man cave,6,6,Yes,\"A person can grasp the doorknob to their man cave, A person can take their shoes off in their man cave.\",door;floor;shoe,\"A person opens a door and picks up shoes.  This person shakes the shoes, and then walks out of the room.;A person opens the door and walks in. The person bends down and beats their shoes on the floor. Then the person walks out the door.\",c053 9.60 30.00;c056 7.30 14.80;c141 0.00 29.70;c097 21.60 30.00;c008 0.00 4.40;c054 24.00 30.00;c126 11.90 25.10;c127 7.60 27.60;c057 8.20 28.90,28.67\r\nBI6Y4,GFWE,Kitchen,7,7,Yes,A person is holding a glass of wine while cooking at the stove.  The person then sits down at the table.,chair;cup;dish;food;glass;phone/camera;pot;stove;table,\"A person holding a glass goes over to a stove and moves a pot around, then the person walks back to a kitchen table and sits down, then the person gets up and walks away.;A person holding a glass walks over to a pot on a stove and shakes it. They then walk over to a table, pull out a chair, and sit down in it, before getting back up.;A person is cooking something on the stove and drinks out of a cup, and then sits on the chair at the dining table.\",c107 0.00 34.60;c147 0.10 5.10;c151 24.40 29.60;c011 25.30 33.10;c147 0.60 21.20;c154 28.70 33.90;c059 25.30 33.10;c016 20.10 25.10;c118 0.00 34.60;c106 4.60 9.80,34.46\r\nSROEU,GFWE,Kitchen,7,7,Yes,A person is seen putting a box away near the doorway. The person takes out their phone as they are opening a cabinet.,box;cabinet;door;phone;table,\"Person gets up, puts box in corner, open cabinet door, pulls out phone, looks in cabinet then at phone and walks towards camera.;A person has a box and puts it on the floor, opens a cabinet door with a phone in hand.;A person puts a box in a doorway while talking on the phone looking through a bottom cabinet in the kitchen.\",c015 3.90 32.00;c042 0.00 5.10;c113 1.10 8.50;c019 5.80 31.80;c040 0.00 4.60;c141 1.10 5.30;c018 6.10 32.00;c008 3.00 9.10,30.96\r\nQIT2W,V044,Living room,6,6,Yes,Person A is in a living room playing video games.  Person A takes spoonful of the food made for lunch and grabs a pillow.  Person A starts to begin working on Person A's homework.,book;bowl;couch;dish;food;laptop;notepad;paper;pen;pillow;sofa,\"A person is sitting on a couch while playing on their laptop. After eating from a bowl, they sat the laptop down beside them, place a pillow in their lap, and begin writing in a notepad;Person sitting on the sofa using a laptop sitting on a pillow and eating food.;Person sitting on the sofa with a laptop on the lap put the laptop down and start reading a book.\",c117 32.00 38.20;c061 12.10 21.90;c063 9.70 15.90;c079 30.50 36.00;c052 0.00 14.10;c145 34.20 44.00;c062 17.50 25.40;c077 30.90 38.20;c123 0.00 44.00;c156 9.90 22.80;c076 31.60 37.70;c026 28.30 44.00;c028 28.30 44.00;c119 10.10 23.70;c027 34.20 40.10;c115 33.30 40.50;c076 30.90 44.00;c051 0.00 32.10;c030 32.60 38.60;c049 25.70 32.50;c118 11.00 22.80;c032 35.20 44.00;c120 10.80 15.60;c047 0.00 32.50,43.21\r\nRKJFZ,ZDKC,Living room,4,6,Yes,A person is smiling and playing with a camera while while watching television.,camera;phone;sofa/couch;television,A person is liying on the couch watching tv and swinging there camera around.;A person is sitting on the couch in a living room while watching television and fidgeting with a small camera.,c015 19.30 31.00;c132 0.00 31.00;c016 0.00 31.00;c122 0.00 31.00,30.50\r\nCVDZM,ZDKC,Bedroom,3,7,Yes,\"A person is in a bedroom snuggling with a blanket, they then throw a homework book off the bed that was in their way.\",blanket;book;paper;pillow;towel,The person stood near a bed snuggling a blanket. They grabbed a notebook and threw it onto the bed. The person then continued snuggling the blanket.;A person is standing while snuggling a blanket. The person takes a book and throws it on the bed then continues to snuggle the blanket.,c116 14.60 22.20;c070 0.00 27.00;c072 1.20 27.00;c028 13.80 22.20;c078 0.10 17.60;c031 15.40 21.30;c026 14.90 20.90;c033 0.00 27.00,26.42\r\nARKBT,I48P,Laundry room,5,7,Yes,\"A person, sitting in a chair, takes some clothes from the dryer and throws them onto the shelf. The person smiles.\",chair;clothes;door;shelf;towel,A person gets clothes out of the dryer and throws them up onto a shelf.  This person then looks at the camera.;The persin opens the dryer door and begins folding clothes as the person sits in front of the dryer then closes the door of the dryer.,c059 0.00 29.00;c081 7.50 29.00;c001 7.20 29.00;c003 7.30 29.00;c008 0.00 5.40;c002 1.00 29.00;c006 24.70 29.00;c035 0.80 6.20;c033 1.10 11.70;c036 7.30 12.60;c034 7.30 12.60;c000 10.30 18.90;c004 1.40 27.10,28.21\r\n1CYLM,JTAS,Living room,7,6,Yes,A person is sitting in a chair holding a cup of coffee.  The person stands up and walks to the window to look outside.,chair;coffee;cup;sofa/couch,The person is drinking something from a cup while staring ahead. The person then gets up and walks a few steps forward and stands.;A person sits down on a couch and drinks from a mug. The person stands up in front of the camera and stands still.,c106 0.00 14.00;c154 10.20 17.70;c123 0.00 14.20;c107 0.00 18.20;c059 0.00 14.20,33.38\r\n3VWSP,V044,Bedroom,6,6,Yes,\"A person lying in the opening of a pantry stares at a picture on the wall.  They hold a phone to their ear, but before they can speak, they violently sneeze.\",floor;phone;sofa/couch,\"A person is lying on the floor they take their phone out of their pocket make a call and then they stand up.;A person lying on a bed answers their cell phone before angrily getting up and storming off.;A person lying on a bed takes a phone out of their pocket, answers a call and leaves the room.\",c015 11.00 30.00;c016 11.00 30.00;c018 11.00 15.90;c019 16.10 30.00;c154 24.60 30.00;c124 0.00 28.60;c153 18.20 23.40;c122 0.00 28.30,28.83\r\nH46LQ,UO9Q,Kitchen,3,7,Yes,\"A person is snuggling a pillow in their lap while they sit at a table, eating. They stand up and kick off their shoes.\",blanket;bowel;chair;food;pillow;shoe;table,\"A person sits at a table, holding a pillow, then starts eating from a bowel, stands up and kicks off their shoes.;A person sits down with a pillow and begins to eat from a bowl.  This person gets up and kicks their shoes off.;A person sits down and eats some food with a pillow in hand. The person gets up from the chair and kicks their slippers off.\",c057 26.60 35.00;c156 5.00 24.80;c059 2.60 27.40;c076 0.00 34.20;c151 1.70 6.80;c154 23.50 29.10;c011 2.30 28.00;c070 0.00 34.00,33.75\r\n83JOK,ARRB,Kitchen,6,6,Yes,\"A person is cooking something on a stove, then walks over to a cabinet and grasps an item to add to the pot.\",cabinet;food;stove,\"A person is in the kitchen, standing at the stove, stirring something in a pan very fast, then goes to the cupboard to get spices and puts it in the pan.;A person stirs some food in a pot on a stove, looks around, get some spices and puts them in the pot.\",c113 20.00 25.30;c147 0.00 31.00;c061 20.90 31.00;c063 20.90 25.00,29.75\r\nRIZ7Y,AT5D,Bedroom,6,7,Yes,A person is watching a video on their phone while waiting for the laundry. Another person runs past them and begins looking for something in a cabinet.,bed;cabinet;clothes;door;phone;something;video,\"A person is sitting on a bed looking at a phone.  Another person runs in and looks in a cabinet and runs out.;A person sits on a bed looking at their phone. Another person jogs in and rummages through a closet, then walks out.\",c113 14.40 20.00;c016 0.00 32.00;c150 12.70 18.60;c008 14.30 20.30;c135 0.00 32.00;c112 25.80 31.20;c097 12.70 17.20;c015 0.00 32.00;c114 15.80 29.80,31.25\r\nH411A,BONA,Living room,6,7,Yes,A person puts a pillow into a box. The person then sits at a desk and begins taping up the box.,box;floor;pillow;table;tape,\"Person is sitting on floor in front of low table, fluffing pillow.  He folds it, puts it in a box and closes the box.  He works on taping the box.;A person moves a pillow back and forth and throws it inside a box. The person tapes the box shut with some pink tape;Person put a pillow in a box close the box then began to tape the box up with pink tape.\",c039 7.60 33.00;c076 0.00 11.30;c077 6.50 11.30;c009 8.60 14.80;c125 0.00 33.00;c014 0.00 33.00;c042 8.70 14.70;c011 0.00 33.00;c079 0.00 2.60;c040 8.10 33.00;c043 7.80 14.20,32.00\r\nNACLT,ARRB,Dining room,7,7,Yes,\"A person walks into the dining room, carrying a pair of shoes. The person sets the shoes under the table, and runs out.\",clothes;doorway;floor;shoe;table,\"The person is walking past the couch while holding a pair of shoes and then bends down and puts them under the table and then turns around and joggs past the couch.;The person is walking down the hallway holding shoes, then puts the shoes under the table and jogs back down the hallway.\",c150 12.60 21.00;c053 0.00 10.60;c001 6.20 12.30;c056 0.00 9.60;c054 6.40 12.20;c126 6.60 12.00;c097 15.90 21.00,20.38\r\n4BEZX,ZDKC,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is seen holding a camera while opening a door. They begin tidying the area and they sit down in a chair.,camera;chair;cloth;door;phone;picture;towel,\"A person opens the door while holding onto a camera, the person then closes the door and wipes it down with a towel. Then the person sits down in a chair.;A person opens the door outside and holds a camera. The person closes the door and cleans the door with a rag. They then sit down in a chair.;A person opens the front door that leads outside, and holds a camera. The person closes the door and then wipes the door down with a pink rag, eventually sitting in a chair.\",c006 15.80 24.30;c015 1.70 24.10;c087 9.30 17.40;c016 1.50 17.60;c036 35.30 40.00;c033 0.00 44.00;c008 0.00 4.00;c038 19.90 38.00;c151 38.10 44.00;c034 35.30 40.60;c141 0.00 8.10;c059 39.60 44.00;c037 35.30 41.50;c035 18.20 23.50,43.29\r\n8XXNK,CP6Y,Bedroom,5,5,Yes,A person is taking food out of a box and watching tv on the sofa.,bed;box;food;remote;sofa;television,\"The person siting on bed  holding a box picked up a remote ,turned on television opened the  box picked up food from the box and ate it.;A person is sitting down on a bed watching television.  This person is also eating from a small box.;A person sits on their bed and eats from a box while watching TV.\",c040 0.00 21.00;c044 4.60 12.70;c062 8.00 14.40;c123 0.00 21.00;c041 3.00 9.00;c061 0.00 21.00;c063 8.00 19.00;c156 8.00 19.00;c043 0.00 21.00;c132 0.00 21.00;c135 0.00 21.00,19.58\r\nJZ45I,CP6Y,Recreation room / Man cave,4,5,Yes,A person is holding a book. They sit down and start reading and book and begin laughing. They reach the last page and tilt their head back in laughter. The person stands up and puts the book in a box.,bed;book;box;man;paper;sofa/couch;table,\"a man with a book and a piece of paper.;A person is standing doing their homework. They sit on a couch and plae a piece of paper on a table. They then open a box, put the book in a box, and close it.;A person sits down on a couch and starts reading a book .  Then the person looks bored and puts the book back\",c032 0.00 26.20;c151 0.40 8.30;c135 1.40 35.00;c009 7.50 14.40;c027 0.00 24.70;c029 5.80 30.60;c041 28.80 35.00;c149 6.90 16.50;c154 28.50 34.20;c039 28.30 35.00;c115 0.00 31.70;c025 21.00 29.80;c123 1.70 32.20;c152 19.80 30.80;c026 0.00 35.00,34.00\r\n39E0I,9809,Dining room,6,7,Yes,\"A person is playing with a blanket, while a second person is watching and turns on a vacuum.\",blanket;floor;towel;vacuum,A person runs around covered in a blanket and then crouches on the floor.  Another person is vacuuming.;A person runs around a table using a blanket as a cape then they kneel on the floor and hide under the blanket. While another person is vacuuming the floor.;A person is running around with a blanket like it is a cape. Then the person squats down and covers themself with the blanket. A younger person is vacuuming and watches the person that has the blanket.,c137 15.70 21.20;c137 17.40 32.00;c072 0.00 2.60;c151 0.00 8.60;c150 0.00 6.30;c152 22.10 27.70;c125 4.10 32.00;c033 0.00 32.00;c124 3.00 32.00;c138 15.00 20.40;c070 0.00 32.00,31.50\r\nW0YVE,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person runs into the entryway, eating a sandwich. The person puts the sandwich down.\",door;sandwich;table;window,\"A person runs up to a glass door, then pauses and takes a step back to set something down on a nearby table.;A person is running through a room they run to the door put down a plate and start to open the door.\",c067 6.30 10.90;c068 7.50 14.10;c150 4.40 10.00;c141 16.70 20.00;c009 8.20 14.10;c006 11.60 16.40;c089 11.80 16.90;c007 13.60 20.00;c092 16.80 20.00,19.21\r\nAYSTI,SW82,Bedroom,7,7,Yes,\"A person is in a bedroom watching television, then they start undressing their clothes as they start to yawn.\",bed;clothes;robe;socks;television,\"A person is laying in bed and holding a television remote. They put it on their side and begin undressing.;A person sits in a semi-reclining position on a bed, trying unsuccessfully to use a remote control and then undresses.\",c155 15.10 31.00;c000 22.40 31.00;c135 17.70 31.00;c134 0.00 21.20;c132 0.00 17.30,30.21\r\nE8JEJ,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,4,Yes,Person is sitting on floor trying to fix door then gas mad and starts throwing medicine.,door;floor;tools,\"A person is standing next to the door and trying to fix it. They open the door multiple times and then throw something to the floor.;A person opens and closes a door, while messing with the lock. The person throws some things onto the ground.\",c007 5.30 17.70;c126 16.20 22.70;c141 0.00 4.70;c141 3.30 8.50;c006 4.50 9.30;c140 5.60 19.10;c008 0.00 3.40,22.08\r\nXKU2U,P2J3,Living room,4,6,Yes,A person is sneezing as they dust a nearby mirror then they begin to put a bag on the table.,bag;mirror;table;towel,\"A person is wiping a mirror with a towel. They stop, sneeze, put the towel down and pick up a bag. The person then throws the bag.;A person cleans a mirror, then picks up a bag and puts it on a table.\",c009 19.20 26.50;c024 19.20 26.50;c095 0.00 14.00;c094 0.10 13.20;c033 0.00 20.10;c096 6.40 13.20;c038 0.00 12.90;c023 18.10 24.20;c020 19.10 25.20;c022 20.50 26.10;c153 9.00 16.40,32.38\r\n3AVAH,ENHU,Living room,6,7,Yes,A person is eating a sandwich in the living room and then leaves through the door.,chair;couch;dish;doorway;floor;food;sandwich,\"A person is sitting in a chair and eating a sandwich off of a plate. The person sets the sandwich back on the plate, stands up, and walks out of the room.;A person is sitting in a chair and eating. At the end the person stands up and walks out of the room.\",c065 0.10 7.20;c067 0.00 3.90;c156 0.10 6.30;c154 4.60 9.20;c119 4.10 12.00;c063 0.00 4.60;c062 2.50 7.90;c061 0.00 12.00;c123 0.00 8.60;c097 7.70 12.00;c059 0.00 8.70;c118 0.00 12.00,11.08\r\nSTGCD,AT5D,Bedroom,5,7,Yes,\"A person is sitting at their desk and doing their homework. Then, laughing, the person begins tidying up the room.\",bed;book;broom;calculator;chair;desk;floor;homework;man;paper;table,A person is sitting at a desk and did his homework.  He stands up and begins sweeping his bedroom.;A person is sitting at a desk doing homework they get up grab a broom and sweep the floor with it.;A person is doing the bills then sweeps the floor.,c011 0.00 19.50;c145 0.00 19.00;c154 13.80 21.90;c098 16.60 31.00;c127 16.70 31.00;c152 11.50 15.70;c059 0.00 18.10;c032 9.60 14.20;c010 0.00 17.80;c102 15.80 31.00;c014 0.00 14.00,30.38\r\nFPJ9D,0Z4M,Laundry room,3,4,No,A person is fixing their vacuum in their laundry room. They put the vacuum in a cabinet then sit on a chair.,cabinet;chair;clothes;laptop;table;vacuum,\"A person is messing with something and then sits down to play on their laptop;A person bending over, picking up a long yellow cord then placing it beneath a desk.\",c059 25.80 34.00;c151 24.40 30.40;c011 25.30 34.00;c051 25.30 30.60,33.42\r\n5WS7U,4UGC,Stairs,5,7,Yes,\"A person sit on the stairs to put on their shoes. The person then sneezes. Afterwards, they look in a mirror while laughing.\",clothes;doorway;floor;hair;mirror;shoe,\"The person steps down a couple  stairs then sits down and puts on shoes and the grabs a mirror while sneezing and whips their nose and then looks into it and fixes their hair and laughs.;The person walks sown the stairs, sits on the stairs, puts shoes on then sneezes and afterward looks in the mirrir.\",c053 8.00 23.20;c056 6.70 14.30;c094 31.00 40.00;c151 6.90 13.60;c055 13.60 21.70;c093 21.00 40.00;c096 31.60 40.00;c153 22.10 32.50;c154 8.00 29.80;c054 10.00 22.50;c125 5.30 9.50;c148 11.70 21.30;c152 36.60 40.00;c097 0.00 3.40;c144 33.50 37.90,38.54\r\nYPRUL,ZDKC,Kitchen,5,7,Yes,A person sneezes then looks in a mirror. The person closes the door and takes a drink of water.,door;glass;mirror;table;water,\"A person is holding a mirror and begins to sneeze. A person then closes a door, and drinks some water.;A person is sneezing and then looks in a mirror and wipes their face.  The person sets the mirror down and goes to the door and closes it.  The person comes back to the table and gets a drink.;A person standing in a kitchen sneezes, then picks up a mirror and looks at himself, then walks to the door of the room and closes it, then walks back into the room and takes a drink from a glass.\",c106 22.10 32.00;c006 15.50 26.70;c093 1.80 17.80;c153 0.00 8.10;c009 12.10 18.90;c096 6.00 16.30;c141 17.00 25.00;c097 16.30 22.90;c110 23.00 28.60;c109 28.30 32.00,30.67\r\n9YOI8,WK8I,Laundry room,6,7,Yes,\"A person opens the window in the laundry room. Breaths in the fresh air and smiles. The person sips their coffee, and closes the window.\",coffee;cup;dish;doorway;food;window,A person walks into the laundry room and opens the window. They look out for a second then lean back against the dryer and take a drink from the cup they are holding. They look back outside and close the window.;A person walks into the laundry room holding a cup of coffee before opening a window and drinking from the cup.,c106 14.80 22.70;c107 2.30 32.00;c089 24.60 30.30;c090 4.80 11.90;c118 0.20 32.00;c061 0.50 32.00;c092 3.40 18.20;c097 0.00 4.90,30.88\r\nNS0ZN,V044,Kitchen,6,7,Yes,\"A person watches a pot boil on the stove. The person is holding a stack of homework, which they set down on a desk.\",food;homework;paper;pot;stove,\"A person reads some papers and then cooks something on a stove.;The person is staring at some stapled papers. The person puts the papers down and puts a pen down. They then turn the fire on the burner off.;A person is standing in front of the stove in the kitchen reading a document, then puts the papers down to turn the knobs on the stove.\",c116 0.00 17.10;c145 0.00 11.90;c147 8.50 26.00;c115 0.00 17.20,25.29\r\nCD9GP,JQ7D,Bedroom,7,7,Yes,\"A person begins dressing in front of the television, then throws their phone on a desk.\",bed;clothes;desk;phone;table,\"A person puts on clothes as they sit on their bed.  They toss their phone on to a desk and stare at it.;A person sitting on the edge of a bed puts on a sweatshirt and a coat, then gets up and begins walking away.;Person sitting on a bed putting a sweatshirt and jacket on. Person then stand up and throws phone onto a computer desk\",c009 27.40 32.00;c154 23.50 28.90;c015 27.30 32.00;c148 0.00 25.80;c135 0.00 27.80;c001 0.00 26.60;c000 10.70 17.50;c002 10.20 15.30,31.17\r\nHOYUT,GFWE,Kitchen,7,7,Yes,A person is fixing the door on a pantry. The person wipes their face with a towel. The person opens and closes the pantry door. The person dusts their clothes off with the towel.,closet/cabinet;clothes;door;towel,\"A person walks towards a bedroom door, pauses to look upwards, grabs a towel and then uses it to rub their arms.;A person blots their face with a town, then tries their hands.\",c033 6.70 31.00;c008 10.20 16.00;c034 7.70 13.70;c113 10.80 16.30;c112 12.30 17.70;c038 16.40 22.20;c035 15.60 20.10;c006 11.80 17.50;c141 10.80 17.70;c000 7.10 13.60;c036 9.10 13.90,30.38\r\nRY8GH,CO87,Laundry room,6,6,Yes,\"A person in a laundry room is fixing their wardrobe, they then start snuggling with a freshly washed pillow.\",closet;clothing;pillow,\"Person is folding clothes and putting them in the cabinet then takes a pillow out the dryer and snuggle with it.;a woman in a laundry room folds and puts away some clothes, then reaches over into the dryer removing a pillow. She then sniffs the pill and rests her head on it while it is cradled in her arms\",,36.42\r\nVD58Y,ZDKC,Bedroom,5,7,Yes,\"A person is in a bedroom watching a video on their laptop, they then start sneezing as they get off the bed.\",bed;laptop;sofa/couch,\"A person types on a pink laptop. The person then puts the laptop aside, sneezes, and then stands up and walks toward a doorway;A person is sitting in a chair, playing on his laptop, he puts it down and gets up and leaves the room\",c134 0.00 19.50;c051 0.00 16.00;c153 13.90 21.10;c154 18.90 23.90;c123 0.00 23.10;c052 0.00 16.30;c047 0.00 16.80;c135 0.00 23.10;c049 10.10 16.90,23.33\r\n4G3ZF,M7K8,Dining room,7,7,Yes,A person is standing by the table and begins to eat some food. They then take a sip of coffee.,coffee;cup;food;table,\"A person is standing in the kitchen eating food;The person is eating a handful of food by the table swaying back and forth, then takes a drink and walks back to the camera.\",c061 0.00 34.00;c106 19.00 28.90;c107 24.90 34.00;c156 0.00 23.00;c110 19.60 24.50,32.96\r\nLPKPO,JQ7D,Dining room,7,7,Yes,\"A person is sitting at the dining room table watching a video on their phone. The person stands while laughing and grabs the dishes from the table. The person walks toward the kitchen, but stops in the doorway to finish the video.\",chair;dish;doorway;phone;table;video,A person sitting in a chair at a table and looks at a phone. The person then stands up with a plate and walks away.;The person is sitting at the table while looking and laughing at a cell phone and then stands up and grabs a plate that is sitting on the table  and starts to walks and stops by a chair.,c015 0.00 35.00;c097 20.90 29.90;c120 15.80 35.00;c154 14.20 23.00;c149 12.20 35.00;c059 0.00 21.30;c016 0.00 35.00;c152 12.20 35.00;c018 14.20 26.50;c119 13.40 35.00;c011 0.00 17.10;c118 14.10 35.00,34.17\r\nW4WQ0,EDYS,Hallway,6,6,Yes,A person walks down the hall eating some food and holding their phone.,food;phone,Person comes into a room eating some food looking at a phone then leave the room.;A person stands in a room eating and drinking while looking down at some items on a chair.,c015 0.00 34.30;c016 4.70 32.40;c062 28.00 33.60;c156 1.70 34.50;c061 0.00 33.80,35.29\r\nFAO7J,CO87,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is in their walk-in closet laughing at a video on their laptop. The person closes the laptop. Closes the door and leaves the closet.,closet/cabinet;door;laptop;light;video,\"A person is standing in a closet talking to someone and laughing on a laptop. They close the laptop and leave the closet turning the light off and closing the door behind them.;A person stands in their closet on a laptop, smiling at it. The person laughs at something on the laptop screen, turns the light off, and leaves the closet.\",c006 37.30 43.60;c047 0.00 44.90;c149 0.00 4.90;c046 0.00 38.80;c112 37.80 43.60;c052 0.00 31.80;c105 36.00 41.10;c141 37.10 43.40;c152 0.00 37.90;c097 33.30 41.60;c051 0.00 36.60,45.17\r\n29V7T,GFWE,Pantry,5,5,Yes,A person walks up to their pantry grasping dishes. Afterwards they take a broom and begin holding it upright.,broom;cup;dish;door;glasses;light,\"A person in a green hooded sweatshirt carries two clear glasses towards the doorway, and smiles at the camera before turning on the light and entering the bathroom. When the person reappears, they are holding a broom instead of the glasses.;A person carrying two drinking glasses walks to the far side of the room to enter the bathroom. The person then comes out of the bathroom holding a broom and stands there for a few seconds, posing.;A person walks into the bathroom, turns on the light, and comes out holding a broom\",c098 11.50 33.50;c100 11.50 33.50;c104 4.40 9.40;c107 0.00 9.70;c110 0.00 9.10;c152 1.60 6.60;c118 0.00 10.10;c119 0.00 9.30;c097 3.30 9.10;c109 5.10 14.70,32.92\r\nTUD6M,ENHU,Closet / Walk-in closet / Spear closet,5,7,Yes,A person opens the door to their closet and throws their blanket inside.,blanket;closet/cabinet;door;floor,A person opens a closet door and tosses a blanket onto the floor.;A person is opening a door. A person is then turning on a light. A person is then throwing a blanket into a closet.,c008 0.00 6.40;c070 0.00 7.90;c126 4.50 8.00;c141 0.00 5.10;c074 4.30 8.00;c113 0.00 5.10;c071 4.30 8.00,7.50\r\nQZ1BS,B6UG,Living room,4,3,Yes,\"A person lying down awakens in the basement, grabs a blanket, and goes through a doorway upstrairs\",blanket;door;floor;man,\"A person is lying down on the floor on a blanket. The person then stands up and folds the blanket, then walks to the front door, opens it, and walks outside to a stairway.;A person is laying down on a blanket.  This person gets up, folds up the blanket, and walks into another room.;The person is laying on the floor, gets up, picks up the blanket, folds it then walks out the door and starts up the stairs.\",c070 17.90 34.00;c075 10.30 22.70;c146 0.00 12.80;c154 4.50 14.80;c124 0.00 4.50;c073 9.40 16.90;c097 24.80 32.30;c141 22.00 30.00;c008 22.50 29.80;c072 0.00 5.00,33.04\r\nNBKCK,ENHU,Closet / Walk-in closet / Spear closet,7,7,No,\"A person, holding a cup of coffee, runs to the closet and opens the door. The person takes a roll of paper towels from the shelf.\",box;closet;cup;dish;door;light;shelf,\"A person walks into a closet, turns on the light and grabs a box, then walks out of the closet.;A person goes into the closet, grabs something and leaves;A person is carrying coffee and is walking into a closet. The person turns on a light and opens a door. The person takes towels out of the closet.\",c008 0.00 5.40;c107 0.00 9.00;c113 0.00 5.40;c104 0.00 3.20;c097 1.50 6.80;c118 0.00 9.00,8.08\r\nGY6NH,AT5D,Stairs,6,7,Yes,A person is drinking a box drink while walking down the stairs with a sandwich in the other hand.,glass;sandwich,\"A person walks down some stairs with food and drink in hand. The person takes a sip of the drink and then puts the cup down;A person is coming down from stair, while drinking fro glass and holding a sandwich in hand and came to table.\",,30.67\r\nD55ES,AT5D,Dining room,7,7,Yes,A person is smiling out a window and another person is undressing by the door.,clothes;doorway;shirt;window,\"A person stands in a doorway and starts to take off their clothes while another person looks out a window.;People are in a room.  One takes off their shirt and walks out.  The other stands by a window and stretches their arms out.;Two people stand in a room together, one of them eventually takes off their shirt while another looks at something outside a window.\",c092 0.00 33.00;c155 0.00 23.90;c154 0.00 33.00;c097 18.60 23.70;c148 3.30 24.00,31.88\r\nV26U3,UO9Q,Kitchen,5,7,Yes,A person is throwing a pillow at the refrigerator and then sitting in front of a television in the kitchen.,chair;laptop;pillow;refrigerator;table;television,\"A person walks into the kitchen and throws a pillow at the refrigerator, sits in a chair and then gets up and walks out of the kitchen.;A person walks into a kitchen, throws a pillow at the refrigerator, sits down in a chair, watches something on a tablet computer, gets up and walks away;A person walks into a room and throws a pillow at a refrigerator. They then sit on a chair at a table before leaving.\",c077 5.10 10.60;c080 5.10 10.60;c154 22.90 28.00;c059 11.40 26.60;c132 11.90 27.70;c151 9.50 15.10;c051 11.70 26.50;c011 11.10 26.80;c076 2.80 9.80,29.88\r\nGG3K5,ZDKC,Bedroom,5,7,Yes,A person in the bedroom is playing in the bed. The person start watching television.,bed;television,\"In a bedroom a person attempts to do a handstand on a bed, the person then waves arms behind their back and into the air frantically. The person then bounces and lays flat onto the bed. The person then attempts to hump the bed. The person then attempts to perform the snake on the bed. The person turns around on the bed, then gets up and reaches to turn on the television. The person lays back onto the bed and watches television.;A person kneeling on a bed with their head down swings their arms in the air and then collapses face down. The person then wiggles their arms, legs and torso while laying face down on the bed. The person then sits on the edge of the bed, turns on a television, lays backwards on the bed and watches the television.\",c132 19.50 31.00;c134 2.30 19.30;c135 15.30 24.60;c146 11.50 24.30;c133 11.30 24.30,31.96\r\nNG1Q8,M7K8,Closet / Walk-in closet / Spear closet,5,7,Yes,One person is tidying a wardrobe when another walks in grasping a pillow and blanket.,blanket;closet/cabinet;clothes;door;hangers;pillow;shelf;wardrobe,\"A girl is putting a folding table and hangers into a closet as another girl approaches with blankets and pillows, which she throws on the floor.;A person putting TV trays into a closet and getting hangers out, another person walks in with throw pillows.\",c076 6.00 32.00;c070 5.10 32.00;c114 0.00 30.70;c001 0.00 19.90;c081 9.60 28.30;c000 5.30 13.00;c112 26.30 31.80;c006 26.30 32.00;c082 7.70 30.00,30.75\r\nRJNAB,0Z4M,Garage,6,6,Yes,A person is drinking coffee and then working at a desk in a garage.,box;chair;desk;dish;fluid;glass;table,A person drinks from a cup. They open a box and rummage through it.;A person sits and drinks from a cup.  This person opens a box and looks at the contents while drinking.;A person drinks from a cup and looks through some items in a box.,c011 0.00 34.00;c044 26.50 31.30;c059 0.00 34.00;c120 0.00 34.00;c110 0.00 34.00;c118 0.00 34.00;c107 0.00 34.00;c041 7.20 12.10;c106 0.10 5.60;c106 14.20 19.70,32.71\r\nKIJG4,ENHU,Bedroom,5,6,Yes,A person is standing in front of a mirror in a basement. The person sneezes and puts on a pair of shoes.,clothes;floor;mirror;shoe,\"Person looking into the mirror with shoes in hand sneeze then put shoes on then looks back into the mirror..;A person is standing in front of a mirror while holding a pair of sandals, and they sneeze, and then they slip their feet into the sandals.\",c094 0.00 2.70;c055 2.40 12.00;c058 1.10 5.70;c126 1.50 6.00;c153 0.00 4.20;c053 0.00 5.80;c096 0.00 12.00;c148 2.50 11.40,11.04\r\nACQAV,M7K8,Living room,6,6,No,A person is in the living room tidying up several blankets on the couch.  Another person walks into the room holding a cup of coffee and smiling.,blanket;coffee;glass;sofa,\"A person walking in and out of a room with a coffee cup while another person folds some blankets. A dog looks on.;A person is putting a blanket over a couch, and then puts another blanket over that blanket.  Another person is standing drinking out of a coffee mug while smiling.\",,31.83\r\n0SFYS,GFWE,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person turns on the light then begins tidying the entryway by working a vacuum across the floor.,floor;light;something;vacuum,\"A person picks up a hand-held vacuum and starts to use it to clean the floor. The person then sets the vacuum down.;Person with a hand vacuum turned the light on bend down vacuum the floor,stopped vacuum got up put vacuum away.\",c137 6.80 29.60;c127 6.70 30.10;c154 25.60 32.00;c151 5.60 14.20;c138 0.00 6.30;c104 0.00 5.70,32.08\r\nX07QW,I48P,Recreation room / Man cave,4,7,Yes,A person undresses by taking off a jacket. Next the person takes a blanket from a cabinet and begin snuggling with it.,blanket;clothes;couch;drawer;jacket;shirt;sofa;table,\"Person standing in living room, takes off his jacket and then takes a blanket that is used to snuggle up with on the couch.;A person stands in a living room, then takes off a sweatshirt. The person then picks up a blanket and sits down on a couch, settling underneath the blanket.;The person removed their coat and placed it on a table. Then the person picked up a blanket and sat down on a sofa. The person was covered under the blanket.\",c072 20.60 28.00;c155 0.00 11.70;c151 21.70 27.80;c123 22.20 28.00;c009 7.70 13.40;c001 7.70 13.50;c073 11.70 19.80;c000 5.10 12.80;c002 12.20 19.90;c070 13.60 25.80,27.38\r\nNP0YG,CP6Y,Living room,4,1,Yes,\"One person with hair in a towel laughs at the television, while another walks in and throws down some homework.\",book;floor;homework;television,Person is watching television another person pops in and leaves very quickly.;A person is standing and watching television. Another person comes into the room and throws a book down on the floor at his feet.,c132 0.00 21.00;c026 9.30 13.80;c126 9.90 15.00;c031 9.60 15.50,20.25\r\nFDDDG,ENHU,Kitchen,5,7,Yes,A person is cooking at a stove while looking at their phone and laughing. They stop and put something in the refrigerator.,food;groceries;milk jug;pan;phone;refrigerator;stove,\"A person turns a burner on a stove in a kitchen, then takes a phone and looks at it and smiles, then puts a milk jug in a refrigerator.;A person stands at a stove and picks up a pan on the stovetop for just a second, then puts the pan back down before putting a bottle away in the fridge.;A person is in the kitchen cooking food.  They look at their phone and laugh.  The person grabs a bottle and puts it into the refrigerator.\",c142 12.40 16.00;c015 2.40 8.20;c147 0.00 5.90;c143 7.90 16.00;c147 0.00 16.00;c149 5.80 11.80;c152 5.80 11.20;c130 9.10 16.00;c017 7.40 12.10;c018 1.80 6.30;c016 2.50 11.30,15.25\r\nLV056,ENHU,Bedroom,7,7,Yes,\"A person is walking with a box. They stop, standing still and close he box quickly.\",box,The person walks forward with a cardboard box in their hands. They stop and look down at the box.;A person was holding a box. The person then walked to the center of a room while holding the box.,c040 0.00 4.00;c039 0.70 4.00,3.29\r\n30K2N,ZG5N,Garage,4,7,Yes,A person runs into a garage and turns on a light. They take something from a table and leave.,light;phone/camera;table;tool,A person is takes something from a table in a workshop and walks away.;A person takes an item from a worktable and then leaves the room.,c104 1.70 6.70;c150 5.20 10.60;c018 6.30 15.50;c015 11.40 17.20,22.62\r\nYGXX6,ENHU,Bathroom,4,1,No,A person is lying on the bathroom floor and there is a pillow and some clothes on the floor.  The same person then stands up and opens the bathroom door.,bag;faucet;hands;paper towel;sink,\"This person puts something in a bag, then washes there hands.;A person puts a container inside of a bag, and then washes their hands in a bathroom sink;A person is standing in a bathroom and placing some items into a bag. The person then washes their hands and is staring at themselves in the mirror.\",,12.08\r\nWM6RQ,GE1M,Kitchen,6,6,Yes,\"A person is opening the refrigerator. A person is walking over to a shelf, sneezing.\",cup/glass/bottle;dish;door;food;refrigerator;shelf,A person goes to the refrigerator and opens it. The person takes some items out and puts them on the counter. The person closes the refrigerator then takes an item off a shelf and puts it on the counter also.;Person open the refrigerator door and take food and a beer from the refrigerator to fix a meal.,c143 0.00 17.90;c062 7.70 13.10;c120 17.10 23.00;c061 6.70 12.70;c107 11.60 20.20;c110 2.70 10.10;c063 11.30 16.80;c142 12.60 18.00;c006 12.60 18.10;c109 7.80 19.50;c008 0.00 6.00;c153 16.50 22.20,22.21\r\n7TA23,ZDKC,Kitchen,6,7,Yes,A person in the kitchen is undressing by taking their jacket off. They begin throwing the jacket on the ground. Then they take a camera to take a picture of their shoes.,camera;clothes;doorway;floor;jacket;phone;picture;shoe;sofa;table,\"A person enters a room and takes off their jacket and puts it on the floor.The person proceeds to pick up a phone and walk across the room.The person takes picture of shoes on a sofa.;The person walks into the kitchen and takes off a jacket. They then pick something up and walk toward the side. They do something with the item, turn around, and walk back.;The person walks into the room, removes the jacket, walks to the couch, takes a picture of shoes on the back of the couch and walks away.\",c018 8.70 15.80;c097 0.00 3.50;c003 6.60 12.20;c015 10.00 29.70;c155 1.10 10.70;c126 6.10 11.00;c087 18.30 26.00;c017 10.00 30.00;c054 14.60 21.40;c016 17.70 30.00;c001 6.40 11.30;c000 4.50 11.00,29.42\r\nO1S9I,EDYS,Kitchen,1,1,No,A person is washing dishes in a sink and then snuggling under a blanket while watching television.,clothes;doorway;laundry;phone/camera;rag;stove;towel,\"A person cleans the stove, then leaves for the laundry room where they grab a towel.;A person wearing a white shirt uses a small rag to polish silver cookwear, the individual then leaves the room and walks down a dark hallway.;A person wipes down some pots and pans, walks away from them, and then takes some towels out of a bin.\",c033 0.00 11.10;c015 0.00 32.00;c037 0.00 10.00;c097 13.50 19.90;c002 24.00 32.00;c038 0.00 10.60,31.29\r\nN42Q1,CP6Y,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is opening a bottle of medicine and then taking a picture of the medicine in the entryway.,cup/glass/bottle;light;medicine;phone;picture,\"A person is in a entryway holding a medicine bottle,then decides to take a picture of it.;A person in an entryway is unscrewing the cap of a plastic bottle and using a cellphone to take a picture of what is inside the container.;A person looks at their phone, then opens up a medicine bottle. The person takes a picture of the bottle.\",c015 0.00 17.00;c087 6.30 17.00;c128 0.00 17.00;c128 0.70 8.30;c104 10.60 15.50;c016 0.00 4.80;c152 12.40 17.00;c107 0.00 17.00,16.08\r\nSB8G0,M7K8,Kitchen,7,6,Yes,A person is smiling and sitting in a chair.  Another person is tidying the food in the pantry.,cabinet;camera;chair;dish;food;shelf,\"A person is sitting on a chair while smiling at the camera.  Another person is in the back of a kitchen opening a cabinet, taking food out, and then closing the cabinet;The people are in a kitchen. One person is sitting and staring at something. The other person is fumbling with items in a cabinet.;Two people stand around in the kitchen, one of them sitting and smiling at the camera, the other looking through some cabinets for something.\",c063 9.40 16.60;c059 0.00 6.50;c152 0.00 4.00;c113 1.10 7.80;c082 4.40 28.60;c114 19.10 23.30;c112 25.40 29.50,31.25\r\n0HV07,ZDKC,Bedroom,2,5,Yes,\"A person walks into a bedroom holding clothes and a pair of shoes, they then place the shoes on the floor and the clothes on the bed.\",bed;clothes;doorway;floor;shoe;towel,Person walks into bedroom carrying a pair of shoes then begins to fold some clothes that are lying on the bed;A person enters a room holding what appears to be shoes and places the objects on a table.,c000 18.80 28.50;c003 18.60 28.80;c000 6.20 15.80;c001 9.40 30.00;c097 1.60 7.50;c053 0.00 13.60;c004 12.80 23.50;c036 19.60 28.70;c033 16.40 22.50;c097 27.70 30.00;c053 27.70 30.00;c037 27.70 30.00;c054 27.20 30.00,29.46\r\nC1TSW,I48P,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person plays with a vacuum next to a box while sitting on the floor.,box;floor;vacuum,\"A person sitting on the floor pulls a vacuum apart and checks it before putting it back together.;A person takes a power vacuum and messes with the nozzle, eventually putting it away. The person takes the trash part and looks inside.\",c136 0.00 40.00;c125 0.00 40.00;c127 0.00 40.00;c137 0.00 40.00,39.17\r\nF5UVQ,JTAS,Kitchen,4,5,Yes,\"A person is doing dishes in the kitchen. They are putting the clean dishes on a dish rack. They put their hand under the running water for a moment. Once they are finished, that turn off the lights and leave.\",cup/glass/bottle;dish;hand;light;water,\"The person is standing at the sink and appears to be washing a bowl. They then wash their hands a little bit, turn off a light, and leave.;People standing in the kitchen with a cabinet and a person washing in dishes at the sink.\",c139 23.50 38.00;c118 0.00 27.70;c119 23.00 30.90;c105 32.10 38.00;c121 0.00 22.90;c111 4.30 29.80,37.25\r\nNFA8R,SW82,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is standing in the doorway and taking clothes out of a box while a person wipes their shoes on a towel on the floor.,closet/cabinet;clothes;floor;shelf,A person starts folding clothes while stomping her feet up and down on a small yellow towel on the floor.;A person is in their closet taking clothes out of a box,c001 0.00 31.00;c004 0.00 31.00;c081 23.50 29.40;c002 0.00 4.40;c003 23.30 29.30;c000 0.00 5.50;c114 0.00 31.00;c082 0.00 31.00,30.25\r\nC6V75,GE1M,Hallway,5,6,Yes,\"A smiling person is putting on their shoes in the hallway. They begin dressing, put on their shoes, and leave.\",clothes;coat;door;scarf;shoe,\"The person puts on their shoes and coat, opens the door and walks out.;A person enters a hallway with hardwood floors, puts on a sweatshirt and shoes, then leaves the hallway through a door.;A person walks into a hallway and puts on a pair of shoes, a scarf, and a coat, and then exits the hallway through a door.\",c148 8.90 25.00;c008 26.50 32.70;c055 2.60 30.70;c002 10.70 25.10;c141 26.50 33.00;c000 10.40 16.70;c097 0.00 3.70;c006 27.90 33.00,31.54\r\nPGPSJ,CP6Y,Bathroom,5,7,Yes,A person is holding a box of pictures and going through it's contents one by one.  This person leaves one picture on the floor next to the box.,box;chair;floor;paper/notebook;picture,\"A person is sitting in a chair, holding a box, and looking at a picture. A person then puts down the box, and gets up and walks away.;A person looks at papers in a box.  This person then closes the box, sets it down, and walks away.;A person that is sitting sorts through a box, pulls multiple items briefly from the box, choses one item, closes the box and sets both the box and the item on the floor before standing and walking away.\",c126 20.60 28.30;c040 0.00 27.70;c059 0.00 28.20;c084 0.00 27.00;c039 19.10 25.30;c044 0.00 23.90;c154 24.50 31.00;c088 2.50 23.40;c086 7.40 12.90;c086 13.20 18.80;c086 17.30 23.00;c042 21.30 27.40;c117 7.20 13.30;c083 0.00 6.00;c083 9.00 13.90;c083 12.70 17.30,29.67\r\nBMONO,GFWE,Bedroom,5,7,Yes,\"A person is sitting down, sneezing, while working on their laptop.  They pick a book off the table, and start reading it.\",book;chair;desk;laptop;table,\"This person sneezes while watching something on the laptop, then picks up a book and starts reading.;A person sneezes a few times while looking at a laptop screen. The person then picks up a book and reads it.;A person sits at a desk seemingly protesting towards her computer screen. The person then grabs a book and starts to read it before placing back upon the desk.\",c051 0.00 18.80;c026 15.90 32.60;c028 28.60 33.00;c032 18.80 28.40;c153 0.00 17.80;c014 0.00 33.00;c025 19.10 32.00;c027 19.10 33.00;c030 15.70 33.00;c011 0.00 33.00;c009 0.00 33.00;c029 14.80 22.00;c059 0.00 33.00;c052 0.10 19.90,32.17\r\nJ4QHT,ZDKC,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is seen opening their closet doorway. They notice a camera and take it. They then begin working on it.,camera;closet;door;phone,\"A person through a doorway walks to a closet and opens it.  The person takes out a camera and looks at it;A person walked over to a closed and opened it, then they took out a camera.;The person walked to a closet and opened it. The person removed a camera from a high shelf and started playing with it.\",c097 0.00 3.20;c015 10.60 32.00;c018 8.60 14.50;c008 1.40 6.80;c087 24.60 32.00;c016 9.70 32.00;c141 0.80 7.10;c113 0.80 7.10,31.00\r\n2ZICJ,VOOS,Kitchen,4,4,Yes,A person is fixing the refrigerator quietly then leaves a cup of coffee inside the cabinet.,cabinet;coffee;cup;door;floor;fridge;mug;refrigerator;shelf,\"A person sitting on the floor drinks from a mug, which is then placed in a cabinet, opens a refrigerator door and does some work on the bottom of the door. The refrigerator door is then closed, the person then closes the cabinet door where the mug is, stands up and walks away.;This person is sitting on the floor, drinks some coffee, then opens the fridge and fixes a shelf.;A person drinks some water while sitting on the kitchen floor. The person opens the fridge and plays with the shelf inside.;A person is sitting on the floor drinking form a glass.  They open up a refrigerator and play wit the bottom shelf before closing it.  They then close a cabinet and stand up.\",c113 4.10 10.10;c109 1.00 6.70;c154 28.70 36.00;c142 25.60 30.50;c125 0.00 31.00;c106 0.00 4.80;c112 27.30 33.60;c107 0.00 6.90;c143 4.50 12.40;c081 0.60 8.70;c006 24.30 30.80;c124 0.00 34.30;c008 4.50 13.40,35.08\r\n41T8C,CP6Y,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person is sneezing while opening a box.  Then a person is walking towards a shelf and puts the box on it.,book;box;laptop;shelf,\"A person is standing in front of a door, opening a box that is opened after the person sneezes. Afterwards, the box is placed on the shelf.;A person is standing in a doorway holding a box. The person sneezes and then opens the box and closes it. The person carries the box across the room and sets it on a shelf.;person doing something at a door then sneezes and then wraps the book and puts the book on the shelf\",c081 12.30 20.50;c153 5.10 11.70;c025 0.00 18.70;c027 0.00 16.00;c026 0.00 20.20;c051 0.00 6.00;c046 2.10 14.80;c049 11.10 20.30;c028 13.10 20.70;c116 13.70 20.70;c115 0.00 18.90,21.25\r\n337O2,ZDKC,Kitchen,4,5,Yes,\"A person is standing in a dining room holding some dishes, they put them down on the table and take off their clothes and throw them to the side.\",clothes;cup/glass/bottle;dish;floor;food;table,A person puts a plate of food down on the kitchen table before taking off their jacket.;Person sat dish on table then takes off jacket throw the jacket then walk to sink and lend.,c118 0.00 3.40;c119 0.00 5.90;c009 0.20 6.20;c003 13.80 23.70;c155 6.20 17.40;c148 7.80 17.30;c126 16.00 22.70;c147 0.00 6.20;c107 0.00 5.10;c109 0.00 5.50,25.54\r\nKK7D4,JTAS,Living room,6,6,Yes,A person takes a towel and a blanket from the cabinet. The person leaves the room.,blanket;cabinet;door;towel,\"The  person opened the closet door pick a blanket fold it put it back,pick another blanket fold it carry it and walked away.;A person opens a closet door, takes out a towel, folds it, wraps a blanket around it and walks away.\",c034 11.70 18.90;c035 0.90 8.20;c113 0.00 6.00;c071 21.60 31.00;c008 0.00 6.40;c073 14.20 18.50;c097 26.20 30.70;c114 2.00 24.60;c075 14.20 18.50;c037 7.80 12.20;c033 2.60 7.50,30.42\r\nMZZK2,B6UG,Garage,5,7,Yes,A person is standing in the garage holding a book.  The person puts the book down on the table and turns off the light.  The person undresses and lays down on the floor.,book;clothes;floor;light;magazine;paper;rug;shelf;shirt;table;wall,\"A person is setting a magazine down on a table then turning on a light before undressing and laying on the floor.;A person stands and turns the light off.  This person takes their shirt off, and then lies down on the floor.;A person is reading a magazine.  Then the person turns the light off and takes off the shirt.  Then the person lies down on the ground.\",c124 21.20 32.00;c027 0.00 3.20;c116 2.20 8.70;c009 17.70 23.10;c026 0.00 6.40;c028 3.10 8.50;c155 8.40 21.00;c032 0.00 8.40;c115 0.00 7.90;c105 6.60 10.90;c151 21.00 26.30;c001 17.70 23.50;c025 2.70 9.30;c081 2.70 9.30,31.00\r\nN4S25,ARRB,Garage,7,6,Yes,A person in the garage is washing their phone screen using a cloth. They start putting their phone down on a chair and look at their clothes.,chair;cloth;phone,A person is scrubbing their phone with a cloth.  The person puts the phone down and looks at their feet.;The person is wiping an electronic device then puts it down on the chair and covers it with the rag.,,22.00\r\nH0P5D,AT5D,Dining room,6,5,Yes,One person was running into the table. The other was sitting on the laptop,doorway;laptop;table,A person is sitting on a laptop on the edge of a table. Another person walks in and hugs the first person;A person sits on their laptop on a kitchen table while another person enters and gives them a hug and they laugh.,c010 0.00 32.00;c011 0.00 32.00;c150 11.00 18.10;c097 11.80 16.40;c149 23.70 32.00;c152 19.20 32.00,30.71\r\nQCVZN,CP6Y,Living room,6,7,Yes,A person is taking a book off of a shelf and then working at a desk in a living room.,book;shelf;sofa/couch;table,A person takes a book off a shelf and sits down. The person begins to flip the pages of the book.;A person walks over to a shelf and picks up a book and walks over to a couch and sits down with the book and begins to read through it.,c026 6.50 16.50;c027 12.70 22.00;c030 6.20 12.00;c032 16.10 26.00;c151 13.20 19.40;c115 6.40 26.00;c117 6.00 12.80;c145 13.60 26.00;c123 14.20 26.00;c009 12.80 19.60;c014 15.50 26.00;c028 12.80 19.40;c011 14.20 26.00,25.29\r\nKB916,GFWE,Kitchen,6,6,Yes,\"A person stands at the kitchen sink, holding a towel. The person sets it down, picks up a half empty glass from nearby, and pours it down the drain.\",glass;sink;towel;window,\"Person washes a dish with a towel, sets dish and towel on counter, picks up a glass of water, and pours water out into a sink.;The person looked out of the window while holding a rag. The person set the rag down and picked up a glass of water. They poured the water down the sink.;A person stares out a window while holding a cloth. The person pours some water into the sink, still looking outside.\",c033 0.00 14.00;c034 8.70 14.00;c092 0.00 31.00;c035 0.00 13.10;c107 11.20 22.00;c109 17.10 21.70;c110 10.60 15.20,29.96\r\n8MS3V,GFWE,Kitchen,6,6,Yes,A person is holding a sandwich and snuggling a pillow.,bread;food;pillow;sandwich,\"A person hugging a pillow, holding a piece of bread, and swaying back and forth.;A person is holding a pillow while eating a sandwich in the kitchen;A person is in the kitchen snuggling a pillow they look around the kitchen.\",c076 0.00 31.00;c067 0.00 31.00;c154 0.00 31.00;c078 0.00 31.00;c061 0.00 31.00;c152 0.00 7.60,30.29\r\nU4J2Q,GFWE,Kitchen,6,6,Yes,\"A person is in a kitchen eating food, when they are finished they walk towards the sink holding the dishes.\",carrot;dish;food;plate;sink;window,\"a person eating something off a plate, then goes to the sink and puts the plate in it.;The person is standing and eating something off a plate. The person is staring ahead, and then they turn around and put the plate in the sink.;A person is standing at a kitchen counter in front of a plate of carrots from which the person eats, then turns and places the plate into the sink\",c061 0.00 22.10;c118 18.40 30.80;c156 0.00 24.80;c119 20.50 28.30;c063 0.00 20.40;c062 0.00 16.60;c120 17.90 31.00,30.42\r\nN0G70,M7K8,Kitchen,5,5,Yes,A person cooks a sandwich on a panini maker. The person then sneezes before picking up their phone.,food;phone;sandwich;window,A person takes some food and puts it in a waffle maker. The person sneezes and then looks on their phone. The person then stares outside a window.;A person puts food into a sandwich maker and then looks at their phone.,c015 7.00 31.20;c066 0.00 9.10;c147 2.70 10.10;c153 5.80 11.50;c016 7.30 32.00;c152 26.30 30.90;c062 1.10 8.40;c018 7.50 32.00;c067 0.20 8.40;c092 19.00 29.80,31.00\r\n0HGNK,M7K8,Kitchen,6,7,Yes,A person in the kitchen working on a laptop. A second person runs in and puts a box on the counter and leaves.,box;chair;laptop;table,\"A person is sitting at the table on a laptop,when another person comes in and puts box on the table.;A person is looking at laptop, go and sit on the chair, another person comes running, keep some packets and run away, first person is looking at camera, gets up and try to close it with hand.;There is a person sitting at an open laptop.  Another person walks by and places something on the table.\",c009 7.30 13.10;c042 7.30 13.10;c150 8.40 13.60;c011 0.00 33.00;c152 1.40 6.60;c059 0.00 32.70;c040 7.70 12.90;c014 0.00 32.20;c149 9.10 16.50;c154 28.00 36.00;c151 0.00 3.80;c152 10.30 15.20;c052 0.00 32.30;c051 1.50 26.50,35.21\r\n4U8WV,GFWE,Living room,7,4,Yes,A person stands next to a sofa and leaves a towel on top of it.,sofa;towel,A person standings near the end of a couch before laying a towel down on it and walking out of the room.;A person stands in front of a couch in a living room area while holding a small hand towel and the person puts the towel down on the couch and walks away.,c033 0.00 14.70;c036 8.00 14.90;c034 8.50 15.20,32.21\r\nUR5TU,DW3I,Pantry,6,6,Yes,\"A person, holding a towel, opens a cabinet in the pantry. The person looks around for a moment, closes the cabinet door, then runs out of the room.\",cabinet;cloth;door;shelf,\"A person opens a closet, and then closes it.;The person opens up a pantry door holding some clothing. The person looks in the pantry for a moment. The person closes the door and walks away.;A person opens a pantry door, looks inside for a few seconds, and then closes the door and walks away.;A girl opens the pantry door and begins selecting an item to take out of the cupboard. Then she removes her item, closes the door, and she leaves.\",c113 0.80 7.70;c006 20.20 27.10;c141 0.80 7.40;c008 0.40 7.40;c081 3.90 10.50;c112 21.00 28.80,32.58\r\nNB0IB,DW3I,Pantry,6,6,Yes,Person grabs a bag of chips from the pantry and begins to eat the chips.  Person wipes hand s on clothes after putting the chips back on the pantry shelf.,closet/cabinet;clothes;door;shelf;shelves,A person opens a pantry door and begins straightening up the shelves. The person wipes their hand on their clothes and then leaves.;A person opens their kitchen pantry doors and rummages around the food before brushing off their clothes and walking away.;A person opens the pantry and goes through things before wiping their sweater.,c008 0.00 5.50;c082 0.00 27.80;c004 23.80 30.70;c141 0.00 5.50;c113 0.00 5.50;c114 2.80 27.80,38.46\r\nTA8G7,CP6Y,Stairs,6,6,Yes,A person is holding a camera and watching someone vacuum on the stairs and laughing,camera;floor;phone;stairs;vacuum,\"A person is using a vacuum, while the other is sitting holding a phone.;A person is sitting on a flight of stairs holding a camera. The person is smiling and watching a vacuum cleaner being used.;A person is squatting on a staircase holding a camera while a vacuum hose is vacuuming the stairs below\",c015 0.00 18.00;c137 0.00 18.00;c149 0.10 17.50;c016 0.00 18.00;c087 5.50 10.30;c125 0.00 18.00;c152 0.60 9.80,16.75\r\nX7QXE,ENHU,Closet / Walk-in closet / Spear closet,4,5,Yes,\"One person throws down some homework, then takes a vacuum from the closet and leaves.\",doorway;floor;paper;shelf,\"A person holding papers throws them to the floor ,throws their arms up and reaches for something on the shelf.The person turns and walks out of the room.;A person drops something in the kitchen before walking by the camera.;A person is looking at their homework. The person drops the paper on the floor and reaches for a vacuum. The person walks out of the room.\",c116 1.00 7.00;c115 0.00 5.90;c097 4.60 9.70;c126 1.10 5.80,8.96\r\nB0SV3,ZDKC,Closet / Walk-in closet / Spear closet,6,6,Yes,A person walking into a closet turns on the light.  The person then grabs a book and drinks from a coffee cup.,book;closet;clothes;cup;dish;door;light;mug,\"A person walks over to their closet and opens the doors. They pause to turn on the light then grab a book off of the shelf. They hang onto the book and step back to take a drink.;A mean wearing a backwards baseball hate walks towards a closet, peers upwards, grabs a book and begins thumbing through it.\",c106 18.90 32.00;c110 20.30 28.60;c026 12.60 32.00;c030 13.70 22.00;c107 19.50 32.00;c004 12.50 22.60;c118 22.00 32.00;c104 7.10 11.40;c008 2.20 9.10;c141 2.00 8.90;c032 17.80 32.00;c113 1.70 8.60,30.58\r\n9LWQ6,JTAS,Bedroom,5,7,Yes,\"A person undresses and puts the clothes on the bed.  Next, they sit down and begin taking off their shoes.\",bed;clothes;floor;shoe;sofa/couch,A person walks into a room and takes off their sweatshirt and sits down.  This person then takes off their shoes.;A person takes a sweater off and throws it on a bed. The person then takes their shoes off and puts them away.,c135 9.00 24.00;c151 8.00 13.00;c057 11.00 21.00;c155 0.00 9.70;c003 5.30 11.60;c126 4.90 10.10;c001 1.10 10.00;c123 7.80 13.70;c054 11.90 24.00;c125 7.80 13.70,22.67\r\n7XCAP,ZDKC,Dining room,7,7,Yes,A person is smiling while they are opening their sandwich to look at the toppings while they are drinking a glass of water.,chair;cup;dish;glass;sandwich;table;water,\"A person is sitting on a chair inspecting their sandwich, they then begin to drink water from a glass cup.;A person sits down at a table and begins to flip some bread over. The person takes a drink of water.;A person pulling out a chair to sit in, sits down and makes a sandwich and drinks from a glass.\",c067 4.50 22.40;c059 0.60 32.00;c106 18.10 32.00;c151 0.00 6.30;c011 0.60 32.00;c118 18.90 32.00;c107 18.90 32.00;c152 25.20 30.70,30.54\r\n9TPP3,JQ7D,Laundry room,7,7,Yes,\"A person walks in, drinking coffee. They start working and folding clothes.\",clothes;coffee;cup;dish,A person drinks from a mug. The person walks the a washer then starts folding clothes on top of it.;A person is walking and drinking a cup of coffee. A person puts the coffee down. A person is then folding/tiding up some clothing.,c106 0.00 8.40;c107 4.40 9.30;c109 5.30 9.90;c004 6.80 31.00;c118 0.00 9.00;c005 5.90 31.00;c000 9.10 20.90;c000 21.20 29.30;c000 16.30 20.90;c001 16.60 21.80;c002 8.40 13.30;c002 19.20 24.10;c119 4.50 10.10,30.42\r\n1KC11,M7K8,Recreation room / Man cave,6,5,Yes,A person in their recreation room is drinking from a glass of water. They are watching something on their television while also watching something on their laptop.,couch;laptop;sofa;table;television,\"A person walks to a sofa and sits down, then starts looking at a laptop and television;A person walks into the living room they sit at the couch to work on their laptop while they are watching tv, then they leave the room.;A person walks in a room and sits on the couch, both looking at a laptop in front of them and watching the tv in the distance.\",c047 2.10 7.80;c151 1.10 5.80;c154 27.60 32.10;c009 2.70 7.60;c123 1.80 31.40;c051 3.60 26.90;c132 2.90 31.90;c051 2.70 8.90;c051 5.80 10.80;c051 14.20 19.00;c011 1.40 31.00;c132 4.10 8.90;c132 6.10 12.80;c132 11.00 16.60,36.04\r\n27KAK,WK8I,Bathroom,6,7,Yes,\"A person stands in front of the bathroom mirror, eating a sandwich. The person leaves.\",door;food;mirror;sandwich,A person in a bathroom is eating some type of food.  He spends about 15 seconds chewing the food before walking out of the door.;A person is standing at the sink in a bathroom while eating something and the person glances in the mirror and then leaves the bathroom after finishing what they were eating.,c065 0.00 29.50;c096 13.20 19.90;c156 0.00 29.50;c061 0.00 27.30;c008 28.90 33.00;c141 28.00 32.20;c097 31.10 35.00,33.71\r\nODD3K,M7K8,Living room,7,7,Yes,A person is laughing as they sit on a sofa. Another person walks into the living room while eating groceries.,apple;bag;chair;food;groceries;sofa,A person is sitting on the couch laughing while another person comes in holding a bag and eating something.;People were watching  something on the television.  One person was sitting on a couch laughing hysterically and the other person was standing up eating an apple.,c123 0.00 33.60;c151 0.00 4.90;c156 1.00 33.50;c020 0.00 35.00;c059 0.00 33.10;c152 0.50 34.70;c149 0.40 31.10;c154 28.30 34.20;c061 1.50 33.30,33.62\r\nITDHX,ZDKC,Bedroom,4,6,Yes,A person is eating a sandwich and then putting a pillow on the bed in the bedroom.,bed;food;picture;pillow;sandwich,A person stands in their bedroom eating a sandwich and then they pick up a pillow;A person takes a few bites of food and chews while picking up a pillow and placing it on a bed.,c077 22.50 33.00;c065 0.00 24.90;c156 0.00 24.60;c067 0.00 33.00;c079 18.20 26.10;c076 23.20 32.60;c061 0.00 33.00,32.33\r\nICQUJ,CP6Y,Home Office / Study (A room in a house used for work),5,7,Yes,A person is holding onto a vacuum in their office.  The person then starts eating some food.,chair;floor;food;laptop;sandwich;vacuum,The person is sitting in a chair holding the wand of a vacuum. The person also takes a bite of some food.;Person sitting chair pick up part of the vacuum then pick up a sandwich to eat.;A person turns on a power vacuum and then eats some food from a table they are sitting next to.,c061 16.40 22.00;c137 0.00 22.00;c156 14.40 22.00;c059 0.00 22.00;c051 0.00 22.00;c127 0.00 22.00;c065 13.80 22.00;c068 15.90 21.00;c069 12.90 20.40;c136 0.00 16.40,20.75\r\nAAQHJ,EDYS,Laundry room,7,7,Yes,A person is seen eating while watching television. They then begin drinking some water while holding a pillow.,chair;cup;dish;food;glass;pillow;table;television;water,\"A person is sitting on a chair and eating from a plate of food, they then place the food down and grab a pillow to snuggle with then takes a sip of water.;A person sits in a chair eating then drinks some coffee.;A person eating something off of a plate, setting the plate down and then taking a drink. The person picks up a pillow and then gets up out of the chair.\",c076 0.80 11.90;c156 4.30 16.70;c154 7.70 13.90;c061 15.30 28.90;c110 6.80 22.80;c106 15.00 24.50;c151 2.90 9.30;c059 5.70 15.00;c118 4.90 15.60;c009 11.90 27.80;c107 11.40 27.60;c011 4.30 28.60;c063 6.20 10.50;c119 10.70 16.70;c120 3.90 9.60;c078 16.40 26.70;c132 6.00 24.70;c077 13.60 21.30;c080 22.90 27.80;c109 19.50 28.40;c079 12.80 20.50,30.83\r\nM6ERH,GFWE,Dining room,6,7,Yes,\"A person is opening a jar of food after taking it off the shelf in the kitchen. They go to the dining room while eating, sitting down.\",chair;food;medicine;shelf;table,\"A person walked over to a cabinet and took out a jar. The person then sat down at a table with the jar. The person opened the jar and ate an item from it. The person then stood up and walked away.;Person grabs a jar of food from a cabinet, opens the jar, sits down and proceeds to eat out the jar just before disappearing from view.\",c063 0.00 5.20;c156 19.90 32.30;c151 14.70 19.90;c154 26.80 31.50;c062 11.60 20.70;c009 30.00 33.00;c011 30.00 33.00;c061 30.00 33.00;c059 29.40 33.00,32.00\r\nFQS5V,CP6Y,Recreation room / Man cave,7,7,Yes,A person is sitting at the desk playing a game on their phone.  The person laughs and then walks to the table and picks up a sandwich.,chair;desk;food;phone;sandwich;table,\"The person is sitting down fumbling with a phone. They stand up while staring at the phone. They then pick something up.;The person is using a cell phone, then stands up and walks to the table. The person then grabs a sandwich.\",c015 0.00 27.00;c016 0.00 25.40;c069 21.60 27.00;c011 0.00 18.90;c154 14.70 21.10;c149 15.00 22.00;c014 0.00 18.40;c063 22.40 27.00;c067 22.10 27.00;c059 0.00 19.70;c061 22.80 27.00;c152 16.70 22.30,25.75\r\nSJJLG,ENHU,Kitchen,5,6,Yes,A laughing person opens a cabinet in their kitchen and sits on a chair and watches television.,cabinet;chair;laptop;shelf;table,\"A person is opening a cabinet. A person then sits in a chair.;A person opens a cupboard in the kitchen.  This person then walks to the table and sits down on a chair.;A person opens a kitchen cabinet, then sits at a table in front of a laptop.\",c059 10.80 15.80;c112 6.30 10.80;c113 1.00 5.60;c151 10.60 15.20;c011 9.70 15.20;c051 6.50 18.00;c082 2.10 8.50,16.71\r\nMUWG4,EDYS,Bedroom,1,2,No,A person walks into the laundry room and turns on the light. The person sits down and looks into the mirror.,cabinet;chair;cup;door;food;light;table;water,\"Person walks into the room sit in the chair drink out of a glass. Person put something on the shelf and shut the door.;A person sits down and pours soda into a cup and drinks it then plays on their laptop;A man walks over to a chair and sits in it, then pours himself a drink from a can. He shuts his door with his hand on the door knob.\",c108 5.00 13.40;c151 0.00 9.20;c106 10.50 21.70;c112 19.80 26.50;c107 5.40 13.80;c109 15.30 23.20;c154 36.50 41.30;c006 19.40 27.00;c059 23.20 31.80;c061 4.30 34.80;c009 16.00 22.90;c110 3.70 9.60,42.25\r\nOWRDE,CP6Y,Stairs,5,7,Yes,Person A is drinking a soda and eating a candy bar next to a flight of stairs.  Person A quickly ties shoes and grabs a newly purchased vacuum nearby.,bottle;floor;food;sandals;shoe;vacuum;wrapper,\"This person is standing in front of a staircase. Person then unwraps & eats something, takes sup of water, then sits on stairs to put on shoes and then starts vacuuming.;A person quickly eats something, takes a sip of water and puts on tennis shoes. He then starts to vacuum the carpet.;A person is standing and eating some food. The person then drinks some water. The person sits down and puts on shoes. The person then stands up and starts using the vacuum.\",c137 34.60 45.00;c156 0.90 13.00;c154 29.80 37.50;c138 34.00 45.00;c057 12.30 22.20;c151 12.00 26.30;c055 20.80 36.90;c106 8.10 14.10;c125 12.70 36.20;c107 0.00 16.30;c109 12.30 16.90;c053 14.20 19.10;c062 3.90 9.00;c061 0.00 8.10,43.79\r\n7EJUR,GE1M,Kitchen,4,6,Yes,\"A person is cooking as the person watches television. Then, laughing, the person walks over to remove some food from the refrigerator.\",cup/glass/bottle;food;laptop;refrigerator;television,The person was preparing food in the kitchen while watching a video on a laptop. The person turned to the refrigerator and removed a container. They resumed preparing food.;A person is cooking some food while watching television on their laptop. The person then opens a fridge and takes some food from it and closes the fridge.,c142 12.30 17.20;c143 9.30 15.40;c063 10.60 16.90;c147 0.00 5.20;c051 0.40 10.30;c107 12.70 21.50;c109 15.30 20.10;c110 3.40 10.00,23.92\r\nVFAE3,JTAS,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is closing the door and leaving the room. A person is standing and holding clothes, which the person is putting onto a shelf.\",closet/cabinet;clothes;door;floor;shelf,A person walk out of a door and closes it partly and then the person comes back into the room. This same person folds laundry after coming back in.;A man is putting his shoes on while sitting on a bed. A girl walks past his doorway and closes the door with her hand on the knob.,c081 35.00 41.00;c006 0.60 7.00;c008 2.20 9.40;c000 6.60 41.00;c001 34.80 41.00;c004 8.10 41.00;c112 0.00 7.40;c127 6.60 41.00;c141 0.00 5.40;c002 7.50 13.50;c097 0.00 5.20,39.75\r\nYNY82,AT5D,Entryway (A hall that is generally located at the entrance of a house),7,3,Yes,A person in the entryway is standing there with a towel in one hand and a broom in the other hand. They start running toward a desk and place both items on the desk.,broom;desk;doorway;man;shelf;step stool;towel,\"a man walking in with a broom and sitting it on a step stool.;A man enters the house with a broom and towel, beginning to straighten up the house and the floor.;A person walks into a room from a doorway carrying a broom and a towel, puts both items down and then leaves the room as another person sits on a low wall outside.\",c099 11.60 19.00;c034 5.80 16.20;c097 0.00 7.10;c037 5.60 14.90;c154 0.00 3.40;c081 14.80 20.20;c102 12.20 18.00;c098 0.20 18.80;c033 0.00 19.60,30.83\r\nQ5K4X,CP6Y,Living room,5,7,Yes,Person enters the living room grasping a book and begins watching the ceiling light briefly before leaving.,book;door;picture;window,\"A person holding a book looks at a picture and walks out a door.;Person walks into the room looked at a picture on the wall and leave the room through a back door.;A person enters a living room area and looks up at a picture on the wall, and then the person leaves the room through a door which leads outside.\",c088 5.40 18.00;c115 1.40 20.60;c092 17.70 22.10;c097 17.80 24.00;c026 1.40 20.60;c008 18.00 24.00,23.38\r\nFORXE,CP6Y,Kitchen,7,7,Yes,A person is throwing a picture on the floor then decides to run with a bag of groceries.,bag;book;door;floor;groceries;picture;shelf;something,\"This person grabs something off a shelf, then they pick up a  bag and pace back and forth quickly,;A person drops something on the ground and runs around with a bag in their hand.;A person is standing looking at a shelf. The person turns and takes a piece of paper from another shelf and tosses it on the floor. The person then picks up a plastic shopping bag and walks away.\",c023 6.00 11.80;c150 7.60 14.30;c020 5.70 16.00;c126 2.50 9.40;c082 0.00 5.90;c097 11.30 16.00;c031 4.90 9.30;c026 2.90 8.80;c115 3.60 8.90,15.08\r\n8Q7ZI,CP6Y,Hallway,6,6,Yes,\"One person with a cup of coffee throws some food down on a desk by the door, then eats.\",cup;dish;floor;food;glass;sandwich;steps,\"person stands in a hallway holding a mug and something on a plate, the person drinks from a mug then starts to throw whatever was on the plate toward a small table;A person drinks from a cup, takes some pieces of food from a plate they are holding and throws them on a table, then walks down some steps towards the table as the person eats some of the food.\",c061 0.00 20.00;c106 0.00 3.90;c064 7.80 18.60;c107 0.00 20.00;c156 14.60 20.00;c062 4.50 20.00;c067 0.00 20.00;c126 5.20 10.10;c126 7.90 12.50;c118 0.00 20.00,18.92\r\n3UACJ,EDYS,Basement (A room below the ground floor),4,,No,\"A person laughs as they walk into the laundry room, carrying a broom and a vacuum cleaner.\",chair;clothes;cup;dish;glass;mug;phone/camera;sofa/couch;towel,A person gathers some clothes and tosses them aside. They then sit down in a chair and start drinking from a glass.;Person moving clothes off a chair then sit down in the chair drinking out of a glass while watching television.;A person picks up some clothes and tosses them aside. The person then sits down and takes a drink from a glass. Then the person stands up and exits.,c003 6.90 11.90;c151 11.70 17.00;c154 31.20 36.00;c106 13.40 34.30;c110 1.80 6.40;c033 6.20 12.30;c017 0.00 5.60;c123 11.10 39.00;c107 6.70 37.10;c059 12.60 35.20;c004 5.60 14.10;c109 32.90 37.90;c118 14.10 39.00,37.92\r\nPRHR7,CO87,Kitchen,6,6,Yes,A person is cooking something on a stove.  Then a person starts running and grabs a kitchen towel because the food spilled on the stove.,dish;food;something;stove;towel,\"A person is standing at a stove cooking. The person picks up a spoon and begins to stir a pot. Some liquid spills out of the pot and the person picks up a towel to clean it up.;A person stirs something in a pot on the stove, and as she is removing the spoon from the pot, spills something on the stove and wipes it up with a cloth.\",c147 0.00 25.40;c118 0.00 5.30;c033 22.70 28.00;c038 23.60 28.00;c035 22.60 27.40,26.54\r\nVBN1O,JTAS,Living room,7,7,Yes,\"A person enters through a doorway running, they stop and begin tidying a shelf.\",doorway;figures;shelf,A person comes running into the room. That same person then moves items on a shelf.;Person ran to a living room stoped and jogged a little walked to the wall touched picture on the wall moved the pictures to adjusted it.,c150 0.00 6.70;c082 5.40 34.00;c081 8.20 15.60;c097 0.00 5.00,33.46\r\nRKJ0C,ZDKC,Kitchen,7,7,Yes,A laughing person walks into their kitchen and sits at the table eating food.,chair;dish;door;food;light;table,\"A person closes a door while smiling, they then walk to the table and sit down and begin eating some food from a dish.;A person walks into a house laughing and switches on a light before walking into the kitchen, sitting down and eating.;A person closes the door in the entryway of a house and walks over to a dining table and sits down and begins eating something from a large pot.\",c011 8.20 32.00;c149 0.00 14.40;c151 9.10 17.90;c059 9.10 32.00;c156 13.50 32.00;c006 0.00 3.20;c152 0.00 20.70;c061 10.70 32.00;c010 8.40 14.40;c118 10.70 32.00;c141 0.00 3.40;c061 29.00 32.00;c010 29.00 32.00;c063 29.00 32.00,30.79\r\n4LNPN,V044,Pantry,6,6,Yes,A person is undressing in their pantry by taking their clothes off. They start washing their hands with some water that they found on a shelf in the cabinet.,clothes;cup/glass/bottle;hands;jacket shirt jar,\"A person quickly takes off their jacket and shirt, then pours liquid from a can onto their hands.;Person standing next two shelves takes of jacket then takes off shirt. Person then grabs a cup before pouring liquid onto each hand.\",c155 0.00 13.60;c111 0.00 31.80;c000 1.30 16.40;c002 0.00 16.10;c107 16.00 32.40;c001 5.10 11.10;c139 19.80 31.10;c110 14.70 21.90,33.04\r\nOPMF7,ARRB,Bedroom,6,6,Yes,A person is dressing near the doorway.  They begin sneezing and walk to the bed.,clothes;doorway;jacket;skirt,\"a person puts some clothes on and sneezes;A person puts on a pink tutu and then puts on a camo jacket. The person then sneezes.;A person is putting on some clothing. A person is also sneezing. Lastly, the person is walking.\",c153 9.40 14.30;c148 0.00 13.30;c002 3.50 9.40,17.75\r\n31LW5,ENHU,Bedroom,6,7,Yes,A person enters a bedroom holding a pillow. The person lies down in the room's bed and snuggles the pillow while falling asleep.,bed;doorway;pillow,\"A person walked into the room while holding a pillow. The person then laid down on a bed. The person was resting on the pillow.;A man came in his spacious bedroom which was clean, and immediately lied down on his stomuch and slept.\",c078 4.10 10.00;c134 4.10 10.00;c076 0.00 10.00;c097 0.00 3.60,9.08\r\nZKNPV,ENHU,Living room,5,5,Yes,A person is standing and smiling while watching television and then drinking coffee in a basement.,coffee;cup;dish;picture;television,A person is standing in a room watching the television.  This person is also drinking something while watching.;A person is standing in a room watching a television set.,c106 0.00 3.70;c107 0.00 5.00;c132 0.00 5.00;c118 0.00 5.00;c088 1.80 5.00,3.71\r\n5W1Z7,ENHU,Bedroom,6,6,Yes,\"A person is snuggling on a bed, then smiling as they put dirty dishes in a box in a recreation room / man cave.\",bed;box;cup/glass/bottle;dish;pillow,A person laying on a bed reaches over the end towards a box sitting on the floor.;A person is in their room putting stuff in a box,c134 0.00 8.00;c133 0.80 7.70;c119 4.20 8.00;c109 4.00 8.00;c078 0.00 6.20;c107 4.20 8.00;c146 1.20 6.40;c076 0.00 7.40,7.46\r\nKQ6XW,CP6Y,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is desperately trying to grasp something deep behind their wardrobe. They can't quite reach it so they rest and take a drink from their water bottle. They try again with a nearby broom.,broom;chair;closet/cabinet;cup/glass/bottle;shelf;table;water,\"A person moved a curtain aside, reached around behind it, sat down in a chair, then picked up a water bottle and drank from it, then grabbed a stick, stood up and placed it somewhere behind the curtain.;Person standing in a closet with a broom sweeping off the shelves then sat down and drink some water.\",c099 27.70 36.80;c106 15.70 25.20;c151 9.60 16.30;c154 23.70 34.80;c009 21.20 27.00;c113 0.00 5.10;c114 30.00 40.00;c082 30.00 39.70;c110 15.70 20.10;c107 15.50 26.00;c059 12.50 33.60;c100 25.90 31.50;c081 21.20 26.40;c098 26.30 40.00;c109 21.20 26.40,39.25\r\nSCFIN,QAT6,Kitchen,5,7,Yes,\"A person is washing their stove top. They throw a used paper towel in the garbage, and open the refrigerator and look inside.\",door;refrigerator;stove;towel,\"Person using a towel to wipe down the top and all around the stove, and then when finished puts the towel in the garbage and walks over to the refrigerator and opens it.;A person cleans a stove top with a rag, then throws it away and opens up the refrigerator door.;A person is in the kitchen cleaning the stove by wiping it down with a cloth. Then she walks over to the fridge and opens the fridge.\",c038 0.90 8.70;c008 5.40 19.40;c143 8.70 22.00,34.46\r\n1TZK5,AT5D,Bedroom,7,6,Yes,One person stands by the window eating food while another person holds homework.,book;food;homework;paper;window,A person stands in a room and writes things down in a notebook while another person stands in a corner eating a staring at them.;A person is writing things down while someone else is in the room drinking something.,c062 19.10 25.50;c145 0.00 32.00;c156 5.70 11.40;c063 0.00 11.40;c061 0.00 11.40;c026 0.00 7.40;c026 7.50 22.90,30.71\r\nS444Y,P2J3,Entryway (A hall that is generally located at the entrance of a house),5,4,Yes,A person is taking food out of a bag and throwing it in a trashcan in the entryway.,bag;clothes;floor;food,The person is slowly walking forward. They pick up a green bag and reach for something in the bag. They take things from the bag and put them on the floor.;A person walks into a room and grabs a bag and starts taking stuff out of the bag.,c023 6.30 11.70;c064 17.90 37.00;c126 26.20 37.00;c020 7.70 37.00;c000 7.20 37.00;c021 8.60 16.00,35.54\r\nXTYDU,GFWE,Bedroom,6,7,Yes,A person is washing a closet door and laughing at their laptop.,door;laptop;towel,\"A person walks into a room and rubs the closet door with a cloth while smiling at a laptop.;A person wipes down a closet door with a rag, laughing to themselves while doing so. The person points at a laptop screen as well.\",c051 2.90 34.00;c033 1.80 34.00;c038 2.30 34.00;c152 2.80 34.00;c149 2.80 34.00,32.83\r\nDLOS7,ZDKC,Bathroom,4,7,Yes,Person enters the bathroom and begins fixing the light that was not working.  Person then tidies up the room and sits on the toilet with their laptop for a moment before leaving.,chair;door;laptop;light;toilet;towel,\"A persno is fixing a light then they sit down holding a laptop and tyding up a door.;A person adjusts a ceiling lamp and sits down on a toilet seat. The person opens a pink laptop, then wipes down the door and wall with a cloth. The person gets up and leaves the room.;A person reaches up and touches a light above them. The person sits on a toilet and pulls out a pink laptop, wiping down the walls near him with a rag.\",c103 0.00 9.50;c047 11.70 16.90;c151 7.10 14.60;c006 18.90 24.20;c051 15.60 23.20;c038 20.40 39.10;c050 10.40 18.20;c059 10.40 39.70;c033 0.00 42.00;c154 34.90 40.80;c097 36.60 42.00;c048 13.80 20.90,41.42\r\nRFH6M,V044,Kitchen,6,6,Yes,A person is eating cheese while standing in front of the refrigerator while throwing a towel over their shoulder.,blanket;clothes;door;food;refrigerator;sandwich;towel,\"A person opens the refrigerator, grabs some food and a towel, and then eats the food.;A person pulls something out of the fridge. He starts eating it. He throws a pink towel over his shoulder.;The person opens the refrigerator,removes food, closes the door, eats what they remove from the refrigerator then puts a towel over the shoulder.\",c033 3.40 33.00;c035 13.90 20.00;c061 0.30 33.00;c006 0.30 5.70;c034 12.90 20.20;c142 0.00 5.40;c156 11.80 33.00;c143 0.00 3.80;c069 0.00 5.20;c000 13.90 18.70;c036 13.60 23.00;c065 8.60 19.50;c070 2.10 19.90;c008 0.00 4.90;c063 0.00 5.70;c069 30.50 33.00;c000 30.50 33.00,32.42\r\nW9BWJ,EDYS,Bedroom,3,5,No,\"After eating sushi, a person ran to the sink, washed their hands, and wiped them on a towel.\",chair;cup;glass,A person sits down and takes a drink and then picks something up.;A person is in a very small closet.  The person starts drinking something and then starts eating something and then leaves.;A person sits down takes a bite of food and then leaves.,c151 4.80 10.90;c154 11.10 17.60;c106 4.70 13.70;c059 5.00 15.60;c107 1.70 19.40;c109 15.50 21.60,32.42\r\nAFUBX,CO87,Hallway,3,7,Yes,\"A person grasps a bottle of medicine as they walk down the hallway. The person leaves through the door, turning off the light behind them.\",bottle;door;light;medicine;something,A person walks through a hallway playing with something in their hands.;A person walks down the hallway and the shuts the light off;A person is walking through a doorway and is holding a phone. The person then walks and turns off a light. The person walks out of the room.,c128 5.80 25.60;c097 7.60 14.20;c105 18.80 23.30,24.62\r\n4BIMI,4UGC,Pantry,7,7,Yes,A person is laughing as they kick off their shoes. Then the person beings drinking from a cup they take off a shelf.,cabinet;cup/glass/bottle;door;food;shelf;shoe,\"A person sneezes, then kicks their shoes off and grabs a drink out of the pantry and drinks it;A person laughs to themselves and opens the pantry door. The person kicks their shoes off, takes a cup, and starts drinking from it.\",c057 1.60 14.90;c149 4.90 22.40;c113 10.50 27.70;c057 28.20 37.00;c141 4.40 8.90;c110 18.80 23.70;c152 1.90 6.90;c061 18.60 38.00;c106 21.60 27.10;c106 24.60 30.70;c107 19.00 38.00;c008 3.80 8.70,37.42\r\nTS2DM,M7K8,Hallway,3,6,Yes,A person smiles as they check their phone. The person walks through a doorway.,doorway;phone;step,\"A person is standing in a doorway while smiling and holding a cellphone. Then, still smiling and holding the phone, the person walks forward and out of view.;A person is walking down a hallway while holding a cell phone and reading something on the phone and smiling very happily.\",c015 0.00 13.80;c016 0.00 13.80;c152 0.00 15.70;c154 0.00 9.20;c149 0.10 13.60;c097 3.10 10.00,31.83\r\nXX3RB,CP6Y,Dining room,6,7,Yes,The person was standing while eating at the table.  Afterward the same person was taking the food to the stove.,dish;doorway;food;sandwich;stove;table,A person is standing by a table eating something.  The person takes the plate with them to another room and sets the plate down.;Person standing in a room eating then leaves to go into another room with a dish in hand.,c063 9.90 28.90;c062 25.20 31.40;c097 20.00 25.10;c118 7.20 28.90;c119 24.80 30.00;c061 0.00 32.00;c156 0.00 31.20;c068 27.20 31.70;c065 0.00 27.10;c062 6.40 27.70;c120 0.00 32.00;c067 0.00 32.00,30.54\r\nKO2MY,CP6Y,Dining room,7,7,Yes,A person is standing in the dining room laughing. The person picks up a pillow off the floor and moves the vacuum out of the way whole eating a sandwich.,floor;food;pillow;sandwich;vacuum,\"A person is eating a sandwhich and walking around picking things up like pillows off the ground including a large vacuum.;A person laughs to themselves, then picks up a pillow while eating some toast. The person then puts a vacuum away.\",c065 0.00 8.60;c067 3.00 20.30;c137 12.50 20.30;c079 8.60 15.20;c149 2.50 10.90;c156 6.20 19.20;c127 5.30 10.50;c061 0.00 21.00;c152 0.00 7.90;c076 4.40 21.00;c138 9.20 21.00,19.67\r\n1DVV0,CP6Y,Bedroom,5,7,Yes,The person went to the bed and grabbed the laptop.  Time to work and eat at the same time.,bed;dish;flip-flops;laptop;plate,\"A person walks into the bedroom and takes a laptop from the bed. After picking up the laptop and a dish, the person puts on flip-flop shoes and walks towards back the door.;This person walked into their bedroom and pickup their laptop computer.;Person walks into the bedroom get into bed get laptop get out of the bed and leave the room.\",,23.92\r\nZ4Y04,JTAS,Kitchen,7,7,Yes,A person cooking food in the kitchen grasps something inside the stove.,closet/cabinet;dish;door;food;oven mitt;spoon;stove,\"A person stirs something on a kitchen stove. The person then puts on an oven mitten, opens the oven to look inside, and closes the oven.;A person is standing at a stove and cooking something, and then opens the oven door and reaches in to arrange something in the oven and then closes the oven door.\",c147 0.00 32.00;c008 14.30 29.40;c112 25.60 31.90;c062 18.20 31.40;c118 0.00 18.50,30.75\r\n55NRK,ZDKC,Living room,6,7,Yes,Person is sitting while reading a book. Person then begins sneezing and grabs a camera.,book;chair;man;phone,\"A man sitting with a book and sneezes after he grabs something.;A person is sitting in a chair reading a book, they rub their eyes.  They grab a watch from the cabinet and sneeze into their arm.;The person sat in a chair near a closet reading a book. The person reached over to grab a camera and looked at it while sneezing.\",c015 17.00 31.00;c032 0.00 16.50;c153 19.10 30.60;c059 0.00 31.00;c025 16.20 21.30;c026 0.00 31.00;c018 12.80 21.90,30.42\r\nZJRCS,AT5D,Kitchen,6,6,Yes,\"One person opens, then closes a window. Another person is drinking coffee and laughing with a phone in hand.\",coffee;cup;dish;phone;window,Person in the kitchen lending on the cabinet on a phone and drinking out a cup a boy walks in and go to the sink.;A person is standing and drinking some coffee. The person is also playing with their phone. Another person is walking into the room and looking out the window.,c015 0.00 32.00;c090 10.00 19.60;c106 0.00 32.00;c118 0.00 32.00;c016 0.00 32.00;c089 4.90 20.20;c152 10.80 21.90;c149 11.10 21.90;c107 0.00 32.00,31.08\r\nU588C,P2J3,Stairs,7,6,Yes,\"A person is walking up the stirs, wearing a towel and eating a sandwich. Another person is lying at the top of the stairs and playing on their phone.\",food;phone;sandwich;staircase;towel,One person ate a sandwich and walked up the stairs. Near the top of the stairs another person was sitting and playing with a phone.;A person takes several bites of an unknown food item while walking up the stairs in an outdoor area.,c015 5.70 34.00;c016 5.00 32.80;c065 0.00 34.00;c067 0.00 34.00;c156 0.00 34.00;c154 9.60 21.20;c033 3.90 33.90;c154 2.60 10.20;c061 0.00 33.10,32.71\r\n422BV,CP6Y,Recreation room / Man cave,4,7,Yes,The person put their shoes on and started tidying their desk by closing a book.,book;desk;shoe;table,The person walks over to a table while holding shoes.  The person places the shoes on the ground and puts them on their feet.  The person then organizes some books and papers that were placed on the table.;Person lending on the table put on some shoes then look into a book.,c012 10.40 21.00;c055 1.10 14.20;c026 10.50 17.80;c028 13.60 18.50;c030 10.30 15.40;c053 0.00 9.40;c026 1.10 7.60;c030 3.80 20.70;c054 5.10 13.70;c009 0.00 6.10;c116 10.00 20.30;c025 13.40 20.00;c032 10.40 16.00;c027 10.50 15.70,20.29\r\nNBSPH,AT5D,Dining room,5,7,Yes,One person opens a box and takes out a towel and a glass. Another person walks in with a book and homework.,book;box;cup;dish;doorway;glass;homework;paper;table;towel,\"A person is standing in front of a table. The person picks up a glass and takes a towel from a container. Another person enters, sits on the table, and reads while playing on a phone.;A person walks into a room carrying some things while another takes some rags out of a bowl. The other takes the rage over their shoulder.\",c035 11.70 17.80;c026 0.30 32.00;c145 12.80 32.00;c110 8.20 14.00;c145 26.80 32.00;c151 10.90 15.20;c010 26.80 32.00;c012 3.40 17.80;c118 9.20 15.80;c037 12.50 20.00;c109 10.80 15.80;c027 9.40 14.30;c033 12.20 21.10;c034 15.50 21.10;c097 0.00 6.90;c011 10.60 32.00;c009 11.10 16.20;c032 10.50 32.00,30.75\r\nKTXSD,ENHU,Pantry,6,7,Yes,A person is lying a bag down before closing the door of the pantry. The person then gets a glass off a shelf.,bag;closet/cabinet;cup;door;floor;glass;shelf,A person is kneeling in front of a cabinet holding a bag  they open the bag and then they put the bag down and close the cabinet and grab a glass off of the shelf.;A person is holding a bag. he sits down and takes something from the cupboard before picking up his glass of water from the counter top.,c022 1.20 6.20;c107 7.10 10.00;c151 0.30 5.40;c021 0.00 4.00;c020 0.00 5.80;c082 6.30 10.00;c125 0.00 10.00;c110 5.40 10.00;c112 2.70 8.40,9.38\r\nEJZZZ,M7K8,Kitchen,5,7,Yes,\"A person is looking at their phone and drinking a beverage. Another person walks in, still pulling on some of their clothes and dressing themselves.\",clothes;cup;phone,A person drinks from a mug and looks at a phone.  Another person walks in and zips up their jacket.;A person is taking sips from a coffee mug while looking at their cell phone while a second person is putting on a jacket behind the first person.,c015 0.00 31.00;c017 26.50 31.00;c148 2.40 10.70;c016 0.00 31.00;c148 4.00 31.00;c106 0.00 31.00;c107 0.00 31.00,30.12\r\nU2AO1,ENHU,Kitchen,6,6,Yes,\"Person A is in a pantry fixing the order of foods on a shelf.  When Person A is done, Person A opens the door bites into a snack.\",cabinet;counter;cup/glass/bottle;door;food;groceries;medicine;shelf,\"A person standing at a reaches up and gets food out and closes the doors.The person takes the food and opens it and starts eating.;A person closed a cabinet. The person then grabbed an object from another cabinet and ate it.;A person takes out and looks for something to eat.  When the person finds some kind of food, the person eats it.\",c006 0.00 4.60;c008 4.10 9.70;c156 10.50 17.00;c112 0.00 4.60;c113 4.10 9.70;c130 10.70 16.20;c114 0.00 10.80;c107 1.50 8.30;c082 0.00 8.50;c109 1.60 8.60;c061 5.50 17.00;c063 5.00 11.10,16.25\r\nJ9T5D,CP6Y,Living room,6,7,Yes,\"Person is sitting in a chair in the living room looking out the window. They get up tidying the room around them, they pick up a bag and start laughing.\",backpack;bag;box;chair;fiixture;floor;light;ottoman;pillow;statue;table;window,\"The person is sitting in a chair looking out a window then stands up and reaches up to adjust the fixture and then walks over to a chair straightens out the back and then adjusts the pillow and then walks over to an ottoman and adjusts it and puts a statue on it then walks over to the couch and dusts out a pillow and then moves another pillow to the end of the couch the reaches down and picks up a backpack and looks around and smiles.;A person stares intently out a window, gets up to clean the room a little bit, and finally picks up a backpack to throw over their shoulder.;A person is sitting and staring out the window. The person then stands up, fixes and light, and is tidying up a room. Lastly, the person picks up a bag.\",c059 0.00 8.50;c020 25.80 35.00;c023 25.80 35.00;c154 3.50 10.20;c152 29.50 35.00;c076 20.80 26.70;c009 17.40 23.60;c077 13.20 18.70;c077 21.30 27.10;c076 13.20 18.20;c127 15.90 23.00;c103 8.40 15.10;c040 15.40 20.90;c022 25.40 35.00;c012 17.30 23.80;c149 27.10 35.00,34.00\r\nWRCO6,ENHU,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is smiling at a picture while undressing and taking off shoes next to a wardrobe in a Closet / Walk-in closet / Spear closet.,book;clothes;hoodie;picture;shoe;wardrobe,\"A person takes off an article of clothing and then proceeds to remove both of their shoes one at a time.;The person takes off the sweatshirt, folds it and places it on a shelf behind them.\",c057 10.30 17.00;c085 0.00 4.40;c152 0.00 4.40;c155 1.90 10.70;c088 0.00 4.10;c086 0.00 4.40;c002 1.40 17.00;c026 0.00 5.00;c003 1.30 17.00;c032 0.00 5.30;c000 4.10 14.20;c084 0.00 4.70;c054 10.60 17.00;c001 9.40 15.60;c004 7.20 13.60,16.17\r\nVF49P,AT5D,Bedroom,6,6,Yes,A person is throwing a pillow towards the window. Then the person begins drinking water from a glass.,clothes;cup;doorway;glass;pillow;towel;water,\"A person walks into a bedroom, picks up a pillow and throws it, then picks up a glass and drinks from it.;A man walks into a bedroom and picks up bedding, which he throws before drinking water from a glass while standing.\",c080 2.80 10.10;c106 9.80 33.00;c003 2.90 9.50;c036 2.90 9.50;c097 0.00 3.90;c110 8.70 12.80,31.83\r\nCC0PK,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,\"One person with a cup of coffee grasps a book and smiles, while another person with a sandwich watches.\",book;glass;shelf,A person takes something down from a shelf and looks at it.;People are in a room talking.  One person is looking at a piece of paper.  They are both standing by a desk.;A person reads a book off a shelf while another stands around and watches them read it.,c026 1.60 18.00;c027 2.20 7.70;c030 1.50 7.00;c032 3.50 18.00;c110 0.00 5.20;c152 4.70 18.00;c029 4.70 18.00;c152 4.50 11.30;c029 4.50 11.30;c107 0.00 18.00,16.71\r\n3MX8V,M7K8,Basement (A room below the ground floor),6,6,Yes,A person is throwing a blanket.  Then a person is sneezing and putting the blanket on a shelf.,blanket;clothes;floor;shelf;towel,\"A person is going back with blanket, keeps is on a chair, then she comes back pick up the blanket, walks and keeps it on a rack,and walks back.;The person throws a sweater on the floor, picks it up, half-folds it, places it on a pile of things, then walks off screen.\",c070 3.50 13.80;c071 4.00 14.30;c074 8.70 17.60;c000 0.00 3.90;c001 4.80 13.80;c036 0.00 32.00;c002 0.00 22.00;c081 0.00 3.00;c033 0.00 22.00;c003 18.00 32.00;c035 2.60 9.20;c126 0.00 5.50;c034 7.30 14.10,31.38\r\nG5EAN,I48P,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is sitting in the doorway and then leaving through the doorway in the Closet / Walk-in closet / Spear closet.,doorway;floor,\"The person looks in all directions while in a seated position. They look forward and rub their hands together. They then get up and walk away.;A person is sitting on the floor in the doorway of a closet, and then stands up and exits the closet and walks out of view.\",c097 23.70 30.50;c154 20.30 27.70;c125 0.00 24.70,31.29\r\n21O5C,M7K8,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,\"A person runs through the doorway, eating a piece of food.\",doorway,A person jogs through the room of a house while a dog follows them;Person and dog in a living room standing near each other. Person runs out of room and the dog follows out of scene.,c150 3.00 9.00;c152 4.40 9.50;c097 2.60 7.50,30.42\r\nC7G1S,CP6Y,Kitchen,5,7,Yes,A person is in the kitchen washing dishes in the sink.  The person grabs a plate from the counter and scrapes the food off into the garbage while smiling.,dish;food;sink;table,\"This person washed the dishes over the sink.;A person is in a kitchen doing dishes, at a kitchen sink.\",c118 0.00 11.30;c121 0.00 8.70;c152 14.40 20.00;c063 7.40 12.30;c062 8.40 16.90;c119 5.60 11.10;c061 7.80 16.50;c064 11.80 16.90;c009 6.00 10.80,18.62\r\nHVFXT,JQ7D,Kitchen,7,7,Yes,The person is cooking at the stove. Then they have to go to the refrigerator and start grasping for the very back to get out the milk for the stew.,door;food;milk;pot;refrigerator;seasoning;spoon;stove,A person is cooking food on the stove in the kitchen;A person is cooking some food. The person is tasting the food. The person then opens the fridge and takes some milk from the fridge and closes the door.,c142 28.80 34.00;c143 16.60 23.90;c147 0.00 23.90;c006 26.80 32.80;c008 16.90 23.40;c156 9.00 15.50,32.79\r\n150E6,CP6Y,Hallway,5,7,Yes,One person wrapped in a blanket closes a book and watches as another person grasps a broom.,blanket;book;broom;chair;doorway;floor,A person reads a a magazine while sitting down. Another person takes a broom from a wall.;A person is sitting and snuggling with a blanket. The person is also reading a book. Another person is walking into the room and picking up a broom.,c072 0.00 17.00;c032 0.00 17.00;c098 5.40 17.00;c154 5.50 15.30;c097 2.60 8.50;c127 5.10 14.90;c100 5.10 15.50;c059 0.00 17.00;c026 0.00 17.00;c115 0.00 17.00,15.62\r\nTNDT2,ENHU,Basement (A room below the ground floor),6,7,Yes,\"A person is grasping a phone, then opening a laptop and drinking a glass of wine and eating food in a basement.\",cup;floor;food;glass;laptop;phone;sandwich,\"person talk on the phone, put it somewhere and then open laptop then drink water from glass and finally eat something;A person is sitting on the floor of a bedroom and looking at their cell phone and using a laptop while eating food from a plate and drinking from a glass.\",c015 0.00 6.80;c048 4.50 12.10;c106 7.20 19.40;c062 15.00 22.00;c125 0.00 22.00;c068 12.90 22.00;c051 5.50 11.70;c107 8.80 22.00;c156 16.00 22.00;c052 5.90 22.00;c063 14.60 21.40;c109 12.90 18.70;c050 5.50 12.20;c061 15.20 22.00;c065 16.00 22.00;c067 14.80 22.00;c110 1.40 8.60;c049 6.60 12.00;c051 7.70 22.00;c069 14.40 20.70;c018 0.00 4.30;c047 4.90 12.40,21.04\r\nS5U92,ZDKC,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person wrapped in a blanket begins tidying their entryway. They wipe a mirror with a towel and leave.,blanket;door;mirror;rag;towel,\"A person wrapped in a blanket is wiping down a door, they then walk over and begin washing a mirror.;A person wearing a blanket over their shoulders cleans a door then cleans a mirror.;The person had a blanket on their back as they cleaned the door with a rag. The person then walked to a mirror and began cleaning it as well.\",c095 16.50 32.00;c070 0.00 32.00;c072 0.00 32.00;c033 0.00 32.00;c038 0.00 14.80,30.62\r\n87Y64,AT5D,Bedroom,7,5,Yes,A person is throwing a book to another person.  The other person blocks it with a table and laughs.,bed;book;clothes;doorway;floor;table,a person is sitting on a bed then another person throws something at him and they chat;A person is sitting on a bed another person runs in and throws something at them they jump up and run to the other side of the room.;A person throws a book at another sitting on a bed. The two of them talk for a little bit while the thrower picks up something off the bed.,c028 7.40 14.40;c031 6.50 13.50;c154 0.00 5.50;c135 0.00 5.50;c009 7.50 14.70;c003 1.20 5.80;c152 3.60 9.40;c149 3.60 10.00;c097 0.40 4.90;c026 0.90 5.60;c150 0.40 6.10;c151 0.60 6.50;c030 6.50 12.20;c127 6.20 12.00,30.25\r\nT6K23,ZDKC,Bedroom,1,7,Yes,\"A person lays in bed, watching pictures scroll across their laptop screen. The person throws the laptop aside.\",bed;laptop;picture;sofa/couch,\"A man is sitting on the floor and watching television in a living room, using his laptop as a play back device.;A person is working on a laptop.\",c134 0.00 34.00;c051 0.00 34.00;c047 0.00 34.00;c088 0.00 34.00;c052 0.00 34.00;c122 0.00 34.00,32.88\r\nW5P6B,EDYS,Home Office / Study (A room in a house used for work),5,6,No,A person is sitting on the sofa drinking a can of soda.  The person takes a plate of food off the side table and leaves the room.,chair;light;vacuum,\"A person turns on a light while smiling and holding a vacuum.;A person is holding a hose and a pole they walk over to the bed and sit down then they get up and walk away.;A person sits in a chair while holding a stick and a hose, then stands up a\",c151 10.30 17.00;c152 12.40 25.40;c137 6.40 29.00;c154 20.40 26.30;c059 9.30 17.30;c149 12.60 23.50,30.00\r\nQCPXJ,GFWE,Basement (A room below the ground floor),6,7,Yes,A person holding a cup of coffee sits down in a chair.  The person lifts the coffee cup and drinks from it.,chair;coffee;cup;glass,A person walks over to a chair carrying a coffee mug they sit in the chair and look around the room.;A person sits in a chair and drinks coffee,c106 6.70 14.20;c107 2.20 35.00;c059 6.30 35.00;c151 4.50 10.20,33.92\r\nXEJ35,JQ7D,Stairs,5,7,No,A person is standing on the stairs while snuggling in a big towel and holding a book.,blanket;book;towel,\"A young boy who stood by stair case with towel wrapping around his neck, and who looked happy, opened a book and started to read,;A person is snuggling with a blanket and leaning up against a wall. The person opens a book and is reading it.\",c032 4.30 30.00;c033 0.00 7.00;c152 0.00 16.90;c072 0.00 30.00;c027 5.10 10.60;c029 10.70 17.10;c030 3.30 8.90;c026 3.80 30.00,29.46\r\nDR1ZU,ENHU,Hallway,2,6,Yes,A person is fixing the light near the stairs before turning it on.  Then the person leaves to grab their homework.,book;light;paper,\"A person wearing a sweatshirt screws a light bulb into a wall fixture, turns the light on, grabs a pamphlet and then leaves the room.;A person turns on the light and brings a book out.\",c103 0.00 5.70;c104 2.10 7.60;c030 8.20 15.00;c026 8.50 15.00;c027 9.80 15.00;c032 9.10 15.00;c115 8.40 15.00,13.54\r\nK8OB6,P2J3,Bedroom,5,6,Yes,One person with a sandwich walks past another person who is undressing. The second person then grasps a pillow to cover up.,clothes;cup/glass/bottle;doorway;food;pillow;sandwich;shirt;window,\"One person taking off his shirt and then hugging a pillow. Another person walking into the room and eating a sandwich.;A person removes a button-up shirt, then picks up a pillow and hugs it tightly. A second person enters the frame and walks to the far side of the room.;A person unbuttons their shirt and picks up a pillow. Another person walks into the room drinking from a cup and stares at the first person.\",c065 19.70 33.00;c076 9.10 33.00;c155 4.80 11.80;c001 6.90 12.00;c000 6.90 12.00;c061 0.00 33.00;c003 7.80 12.00;c079 8.50 13.60;c156 0.00 33.00;c097 7.80 14.80;c092 13.10 23.70;c067 0.00 33.00;c106 20.20 30.20,31.62\r\nQVBTC,I48P,Bathroom,6,7,Yes,A person smiles as they watch something out the window. The person goes to the sink and washes their face.,sink;window,A person stares curiously out of a window. The person then walks over to a sink and vigorously washes their face.;There is a person looking out a bathroom window.  That same person then washes their face in the sink.,c092 0.00 12.60,34.25\r\nZDWM7,M7K8,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person walks into the entryway, smiling while talking on the phone and eating a sandwich. The person sneezes so hard they have to grasp a chair to avoid falling over.\",chair;food;phone;sandwich,\"A person walks into a room holding a sandwich and talking on the phone.  That person walks up to a chair and leaves the room.;A person who is talking on their phone walks into a room with a dog standing on a chair, walks over to the dog and puts the phone up to the dog's ear and smiles, then walks away and the dog follows.\",c019 0.00 9.30;c065 0.00 9.50;c152 0.00 9.50;c156 0.00 9.20;c153 6.10 11.30;c016 0.00 14.90;c067 0.00 14.30;c061 0.00 14.50;c149 0.90 9.30;c015 0.00 14.30;c018 0.00 14.20,30.42\r\nT5SI3,ENHU,Kitchen,7,7,Yes,\"A person is laughing at a book, then placing it in a box and closing it.\",book;box;chair;paper;table,A person is sitting at the table reading a paper they get up and put the paper in a box.;A person sits at a table reading a book. The person then stands up and places the book into a box on the table while closing it.;The person is sitting at the table while looking at a book and then puts it in a box and stands up and starts to close the box.,c039 9.30 15.00;c154 8.10 12.90;c011 0.00 11.60;c025 0.00 6.10;c059 0.00 12.10;c116 6.10 12.90;c149 1.60 6.60;c029 2.50 9.90;c032 0.00 10.80;c012 9.80 15.00;c027 3.70 10.20;c026 0.00 14.60;c028 6.90 15.00;c115 0.00 14.90,13.58\r\nBFCU9,ENHU,Home Office / Study (A room in a house used for work),2,7,Yes,A person is holding some food and eating it. The put the food down and pick up a glass and take a drink from it.,chair;cup;desk;food;glass;shelf;snack;table,\"a person sitting at a desk, takes a snack, eats it then picks up a cup and drinks the contents, puts the cup down;A person is eating from a can, and also drinking from a yellow cup, while standing in a hallway.;A person eats something from a jar. The person then puts the jar down on a table, and picks up a cup. The person then takes a drink from the cup.\",c106 8.20 17.00;c156 0.20 5.30;c009 14.00 18.00;c059 0.00 18.00;c081 3.20 8.30;c011 0.00 18.00;c062 3.20 8.40;c061 0.00 8.20;c063 0.00 4.70,17.46\r\nLRDW5,JTAS,Bedroom,6,7,Yes,\"One person opens the wardrobe, takes items from a shelf and dresses before leaving the room.\",bed;closet;clothes;door;hair;sweater,A person get up off a bed and opens a closet door. The person begins to put clothes on and then leaves the room.;The person opened their closet and took out a sweater. The person dressed in the sweater and left the room closing the door behind them.;A person opens a closet door and takes a sweater from the closet and puts it on and then leaves the room while wearing the sweater.,c113 0.30 7.10;c008 0.20 8.60;c148 8.50 19.00;c144 16.60 24.30;c006 21.30 27.90;c001 6.70 20.50;c097 22.10 29.00;c000 6.00 15.80;c141 0.50 9.20;c002 6.00 11.00,27.54\r\nA9YQJ,P2J3,Kitchen,6,7,Yes,\"A person in the kitchen is running around while grasping a broom, as if they are looking for a mouse to swat. After being unable to find the mouse, they decide to leave the broom on top of a table and start fixing their hair.\",box;broom;floor;hair;stand,\"A person sweeping the kitchen floor, then sets down the broom and fixes their hair.;The person looks down at the floor and does something with an object they have in their hands. They put the object down, stretch, and rub their head.;A person is in the kitchen using a boom to clean with they set the broom down and straighten their back, then they fix their hair.\",c144 22.80 34.00;c098 0.00 23.80;c099 17.80 24.50;c102 0.00 24.10;c127 0.00 23.00,32.92\r\nYAHDM,RLWG,Stairs,5,6,Yes,\"A smiling person carries a broom down the stairs, rests it against a doorknob, then leaves the room.\",broom;doorway;stairs,\"A person was walking down the stair while holding a broom. The person then walked into a room and set the broom up against a wall. The person then smiled.;A person walks down a set of stairs holding a broom, walks into a room and sets the broom in a corner and turns around.\",c098 0.00 24.30;c097 15.80 21.90;c099 18.30 24.60,32.00\r\n14HG1,EDYS,Bedroom,4,,No,A person is laughing while using the vacuum and then grasping a pillow while sitting on the bed in a bedroom.,chair;clothes;doorway;floor;hoops;hose;phone;pillow;towel,A person grabs some hoops and towels and sits on the floor.;This person moved a large hose from the side of the bed to the doorway.;A person takes a rope of some sort and a blanket and sits in the doorway. The person takes the blanket back and walks towards the camera.,c154 20.20 24.80;c018 6.40 11.10;c125 16.10 21.70;c079 19.60 31.00;c059 15.90 24.90;c016 0.00 4.60;c151 0.70 5.50;c097 14.70 19.90,30.33\r\nXPXWY,I48P,Kitchen,5,5,Yes,\"A person starts sneezing into their phone, then the person starts pouring a drink on a table.\",closet/cabinet;door;glass;groceries;milk;pantry;refrigerator,\"A person opens a pantry door and sneezes. The person goes to the refrigerator, opens the door, removes juice and pours some. The person drinks the juice.;A person opened a pantry door, sneezed three times, then walked over to refrigerator, opened the door, took out a bottle of juice, poured some and then drank it and returned the bottle to the fridge.;A person opens a pantry door, sneezes, walks over to a refrigerator, removes a carton, pours the liquid in it into a cup then replaces the container in the refrigerator.\",c153 4.10 15.60;c142 17.70 23.40;c143 14.20 20.90;c008 0.00 9.80;c130 29.30 34.00;c110 21.20 26.40;c107 17.10 34.00;c113 0.00 5.30;c109 26.20 30.80;c106 24.20 30.20;c110 16.70 22.70;c108 21.90 28.30,33.08\r\nUOZES,JTAS,Bedroom,7,7,Yes,\"A person awakens and immediately checks their laptop. The person laughs and closes their laptop, then looks out the window.\",bed;blanket;laptop;pillow;sofa/couch;window,\"Person lying down, wakes up, picks up laptop, looks at it and laughs before shutting it while looking out the window.;Person laying down covered with blanket sat up typed on the laptop.;A person sleeping eventually gets up out of bed and stretches. The person pulls a laptop in their lap, laughs, and closes it.\",c050 19.70 27.40;c092 31.20 37.00;c146 13.30 25.70;c149 26.30 32.30;c134 0.00 37.00;c049 19.90 28.30;c078 0.00 15.90;c152 25.40 33.60;c047 21.00 37.00;c046 28.30 35.60;c076 0.00 15.90;c072 0.00 14.20;c051 21.90 33.00;c048 20.10 25.40;c135 22.10 37.00;c122 0.00 15.70;c133 11.30 24.80,36.42\r\nM17EM,CP6Y,Home Office / Study (A room in a house used for work),7,5,Yes,\"A person is working on their homework at the kitchen table. They are holding a calculator in their hand, because they are also doing math problems.\",book;chair;hand;homework;paper;phone;table,A person sitting in a chair does homework.;A person sits on a chair putting numbers into a calculator as they work on their homework.;A person is playing on their phone and doing homework,c011 0.00 18.00;c145 0.00 18.00;c059 0.00 18.00;c014 0.00 18.00;c032 0.00 18.00;c016 0.00 18.00;c015 0.00 18.00,17.38\r\nT42A2,AT5D,Bedroom,6,7,Yes,Two people are talking while grasping pillows. One of them walks over to a wardrobe and sneezes.,bed;blanket;closet;clothes;door;floor;pillow;wardrobe,\"People are sitting on a bed holding a blanket and talking.  One person gets up and looks in a cabinet and sneezes.;Two people sitting on a bed with a pillow in their laps, then one person getting up, walking across the room to open a cabinet door and then sneezing.\",c113 23.70 30.50;c076 0.00 24.30;c154 20.60 25.90;c125 0.00 25.10;c153 27.30 34.00;c000 0.00 25.10;c070 0.00 25.90;c001 19.60 24.80;c008 24.40 29.70;c135 0.00 25.00,32.75\r\n0FM93,P2J3,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is carrying a camera and a bag. The person leaves, closing the door behind them.\",bag;box;door,A person walks across a room and through a doorway while carrying a bag. The person then closes a door.;The person is walking from one room to another then slowly closes the door.,c020 0.00 39.00;c006 23.00 39.00;c097 16.50 23.20;c141 23.00 35.80;c040 0.00 39.00,38.12\r\nICOX1,VOOS,Living room,7,5,Yes,A person in their recreation room turns on the light after awakening o the sofa under a blanket sneezes.,blanket;light;shoe;sofa,\"A person is laying on a couch, gets up, turns the light on, and proceeds to sneeze into her hand.;Person waking up on the sofa getting up walking over to the light and turning it on.\",c104 16.90 23.80;c122 0.00 19.50;c153 18.10 25.10;c154 12.30 19.50;c055 10.90 18.20;c072 0.00 17.60;c146 7.90 15.80;c151 26.30 33.00;c073 6.10 17.60;c123 11.50 17.60;c071 11.80 16.60;c105 17.10 21.70;c070 0.00 14.10;c074 10.70 15.70,31.79\r\nPF7HH,EDYS,Other,5,4,Yes,A person is in the basement getting dressed and there is a book on the floor.  The same person then picks up a phone and starts running.,cabinet;chair;locker;phone;shelf,The person was looking for something in a tall locker.;A person walks into a cabinet and takes something out of it. The person puts it away and closes the cabinet door.;A man is in the garage talking on his phone as he opens the cupboard and begins moving an object in it.,c015 11.50 20.20;c018 5.00 15.10;c113 3.20 10.80;c017 16.80 21.60;c081 16.20 21.40,30.33\r\n51N2C,ZDKC,Kitchen,4,7,Yes,A person is undressing in the bathroom by removing their jacket. They start closing the door while holding a picture that they found on the counter.,clothes;door;paper/notebook;picture,A person takes off their jacket in the bathroom and picks up a info card off of the back of the toilet.;A person is standing and undressing. A person then is looking a picture and grasping a doorknob. The person is shutting a door.,c084 11.40 32.00;c083 11.00 17.50;c088 11.00 32.00;c003 7.80 16.00;c155 1.10 11.40;c001 8.30 13.70;c115 12.00 32.00;c141 15.80 32.00;c006 15.70 20.40,30.50\r\nZ2KJ5,ZDKC,Bedroom,4,6,Yes,\"A person lying on a bed, takes food out of a bag, then throws the bag.\",bag;bed;food;oreos,\"The person is lying down, and reaches into a bag of oreos. The person then takes an Oreo out and removes the top of it, and reveals the white inside. The person then takes a bite;This person reached in a plastic bag and grabbed a cookie that they ate while laying on their bed.;A person lies in their bed and goes through a bag before taking a cookie out and eating it.\",c134 0.00 33.00;c061 13.60 33.00;c021 4.20 16.80;c156 14.30 32.80;c063 4.90 16.00,31.71\r\nDFSHF,4UGC,Pantry,7,7,Yes,\"A person comes running in, carrying groceries. Then they open the door and start laughing.\",bag;box;closet;door;food;groceries;table,\"A person carrying a bunch of food sit it on a counter ,turns and open the closet doors .Proceeds to look at the shelf and back at the food.;A person holding crackers, grape nut cereal, and saltines sets the items on a kitchen counter and opens a food pantry.;A person puts food in the pantry while sneezing\",c008 10.00 17.40;c130 5.30 13.60;c113 10.00 17.40;c020 0.40 11.40;c062 5.50 12.80;c149 14.90 31.00;c141 10.90 16.90;c061 0.00 13.40;c042 6.40 13.70;c009 6.40 13.10;c040 0.60 14.00;c152 15.10 20.30;c152 18.00 23.20,30.42\r\nIBWAW,AT5D,Other,7,7,Yes,A person is holding a box. A person is eating a snack and sipping coffee. The person finishes and begins taking the box from the person.,box;coffee;cup;food;laptop;table,\"A guy is standing. He eats something out of his hand, drinks coffee out of the cup he's holding, then puts the cup on a table. All the while he is talking to another guy. Then he walks to the other guy and takes a box that the other guy is handing him and looks at it.;Two people are standing in a room talking. One person is drinking something out of a mug. That person sets the mug on a table and takes a box from the other person.;Two people in the room one swallowed something and drank from the glass,put the glass down and walked to the other person and got a box from the person hand and walked back looking at the box.\",c040 0.00 25.90;c109 17.50 23.30;c106 6.10 23.20;c156 1.40 9.40;c061 0.00 4.90;c107 0.00 16.90;c009 18.10 23.50;c043 21.00 26.50;c051 0.00 24.20;c063 21.30 26.50;c062 0.00 21.60,30.62\r\n7NXWU,GE1M,Living room,5,7,Yes,One person is drinking coffee while they are washing shoes.,clothes;coffee;cup;dish;shoe;sofa/couch;table,A person is sitting while cleaning shoes and drinking from a cup;A person is sitting on a couch while polishing shoes and while also drinking coffee or tea from a mug which he puts on a coffee table.,c053 0.00 26.00;c106 4.20 13.10;c005 0.00 6.20;c118 2.70 11.10;c119 9.10 14.50;c123 0.00 26.00;c054 1.00 5.70;c009 10.20 14.60;c011 0.00 26.00;c110 3.00 8.70;c107 3.00 14.50;c014 0.00 26.00,24.88\r\n7NOOM,0Z4M,Basement (A room below the ground floor),1,7,Yes,A person is smiling while sweeping with a broom and then pouring water into a glass from the cabinet in the basement.,broom;cup/glass/bottle;floor;water,A person picks up a broom and begins sweeping with it before picking up a bottle of water.;Person is sweeping the floor with a broom then going to get a drink of water.,c102 0.50 16.20;c149 2.50 13.40;c107 23.80 37.00;c127 0.00 27.60,35.58\r\nIAHN3,P2J3,Hallway,4,7,Yes,\"A person walks in with another person, holding some groceries, laughing and chatting.  One of the people pose, while the other takes a picture with their camera.  The person who had the picture taken of them leaves.\",bag;camera;groceries;phone;picture,two people are walking and talking and one takes pictures of the other;Two people walk side by side with ones hand around the other. One of the people picks up a camera and takes pictures of the other.;Two people are walking and smiling together at the same time. One person stands stile and the other person takes pictures of the first person. One person is carrying a bag of food.,c015 9.20 30.30;c149 2.10 8.90;c020 1.80 10.30;c087 9.20 30.00;c152 1.00 8.90;c018 7.40 16.00;c152 13.60 24.50;c016 2.90 25.10,31.25\r\n50E06,GFWE,Recreation room / Man cave,7,7,Yes,\"A person in their recreation room is eating some food while holding a glass of water. They are holding a towel in their right hand, and eventually begin throwing the towel towards the window.\",bed;blanket;chair;cup;food;glass;hand;medicine;shelf;sofa/couch;towel;water,\"Person sitting, eating and drinking water while holding towel, then throws towel somewhere.;A person is holding a towel and chewing on something. The person grabs a cup of water, swallows and then drinks from the cup. The person puts the cup down and throws the towel.\",c033 0.00 27.30;c036 23.30 27.60;c061 0.00 3.50;c106 15.90 24.90;c059 0.00 33.00;c156 0.00 5.10;c107 6.10 26.80;c123 0.00 33.00;c109 21.20 27.10;c074 23.00 27.80;c110 4.40 13.60;c129 13.80 25.00;c135 0.00 33.00;c081 21.00 26.70;c034 22.70 28.40,32.17\r\n727IZ,I48P,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is opening a cabinet, then working at a desk while smiling in a home office / study.\",book;cabinet;chair;desk;door;homework;paper;pencil;table,\"A person opens a cabinet and gets some homework out. They set the cabinet down on a desk, sit down in a chair in front of the desk, and get a pencil and start working on it.;A person wearing a long sleeved shirt opens a wooden cupboard, grabs a folder from inside, and then sits in a nearby computer chair and begins looking through the folder.;A person reaches into a cabinet and removes some papers, then sits on a chair to look at them while a computer boots up.\",c113 0.00 4.40;c009 16.30 20.80;c011 14.90 19.60;c115 11.70 20.40;c117 5.30 10.50;c145 24.40 36.00;c006 11.20 15.40;c008 0.00 3.60;c116 17.10 21.50;c032 14.50 19.90;c029 14.50 19.60;c059 14.20 20.10;c154 11.70 17.70;c112 10.00 14.70;c151 14.30 19.70,34.75\r\n00T1E,CP6Y,Bedroom,6,7,Yes,\"A person is lying in bed in their bedroom, looking at something on a laptop. They then close the laptop, get out of bed, put on a pair of shoes, and walk out the door.\",bed;door;laptop;shoe,\"A person lounges on a bed with a laptop.  this person gets up, puts on their shoes, and then walks out of the room.;A person lying down on a bed while looking at a laptop then stands up and puts on shoes and then exits the bedroom.\",c134 0.00 7.40;c046 0.70 6.30;c051 0.00 5.40;c055 4.30 12.00;c154 10.90 15.90;c135 4.00 15.50;c052 0.00 5.50;c097 15.20 20.00,19.04\r\nOP2SS,JTAS,Kitchen,4,7,Yes,A person smiles as they cook food on the stove. The person takes out their laptop and consults a recipe.,food;laptop;sandwich;skillet;spoon;stove,\"A person is cooking on the stove in the kitchen;A person turns the stove on, with a pot on top of it. The person mixes some food inside the pot and then picks up a laptop and looks at it.\",c047 20.40 32.00;c052 24.30 31.40;c147 0.00 22.80;c149 0.00 8.50;c066 0.00 23.90;c062 0.00 24.00;c051 21.60 32.00;c048 20.80 25.80;c050 20.40 26.70;c152 15.80 21.00;c049 28.40 32.00,31.42\r\nFMZOY,JTAS,Bedroom,6,5,Yes,A person is holding a book while working.  Then a person is leaving through the door.,book;door,\"A person stands and looks through a book.  This person then opens the door and walks out.;A person is standing in her bedroom and reading through a book as she holds it in her hand, still standing there.\",c008 35.00 41.10;c025 32.30 37.30;c026 0.00 39.70;c032 0.00 36.30;c097 37.10 41.60;c141 34.60 41.60;c027 0.00 3.70,42.25\r\n3IS9Y,4UGC,Stairs,6,6,Yes,A person is sitting on a step grasping a picture and then putting it in a box on the stairs.,box;framed photograph;picture;stairs,\"The person sitting on the stairs picked up a framed photograph, smiled at it, dusted it off, opened and closed a wooden box twice, dusted it off some more, then placed the frame face-down on top of it.;hE PICKED AN PICTURE FRAME AND OPENED THE BOX ADN LLOOKED IN TO IT, AND THOUGHT FOR A WHILE, AND PUT THE FRAME BACK ON BOX.;A person sitting in a staircase picks up a picture and looks at it and then puts the picture down on a box.\",c039 21.30 27.70;c041 18.00 23.40;c085 8.80 17.00;c083 3.50 9.50;c040 16.10 28.70;c084 6.40 19.30;c086 29.80 35.00;c152 8.40 15.30;c088 11.70 17.00,34.17\r\nBYWZ5,ZDKC,Dining room,2,3,Yes,A person in the dining room is holding a sandwich that they are about to eat. There is a laptop lying on the desk near them.,chair;desk;food;laptop;sandwich;table,a person sits at a table and looks at a laptop while eating;A person walked up to a table. The person pulls out a chair and sits down. The person then looks at a laptop sitting on the table.;A man walks to the kitchen table and sits down. There he begins eating a snack as he looks at the open laptop on the counter in front of him.,c065 4.90 31.00;c151 0.10 10.10;c059 1.20 31.00;c063 4.70 11.30;c069 3.20 21.20;c067 5.80 31.00;c051 5.50 26.40;c061 5.40 31.00;c011 4.70 31.00;c156 7.20 31.00,30.50\r\n21F9H,B6UG,Bedroom,4,7,Yes,A person walks into their bedroom drinking a glass of milk and taking their medicine. The person sits on a pillow.,bed;book;bottle;cell phone;doorway;food;medicine;pillow,\"A person is drinking a cup of coffee then taking a book fron a bed and sitting on a pillow.;A person walks around a room and then drinks a beverage before sitting down on a bed in a comfortable manner.;A person drinking some orange juice walks into a bedroom, puts a pillow down on the bed, and sits on the pillow.\",c151 24.20 30.50;c135 26.20 31.00;c030 2.40 8.20;c129 1.60 17.30;c097 0.00 2.90;c156 11.20 16.30;c077 21.00 26.90;c063 1.20 8.40;c107 0.00 31.00;c106 0.00 4.40;c154 0.00 28.80;c076 21.70 26.90,30.25\r\nI75CL,JQ7D,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,A person is running into the room and closes the door behind them with their shoe. They have groceries in both arms and a sandwich in their mouth.,bag;door;food;groceries;sandwich;shoe,\"A person is opening a door holding groceries then eating a sandwich.;A person enters the front door, carrying two paper grocery bags. The person then puts a piece of food in their mouth and looks around the room a few times.;A person opens a door and closes it behind them, with food in mouth and carrying some bags. The person looks at their shoes.\",c008 0.00 6.90;c020 3.00 12.30;c065 10.90 18.20;c020 2.70 29.00;c156 10.70 17.90;c057 16.60 25.80;c061 4.70 29.00;c006 2.70 9.40;c097 0.00 7.40;c141 0.00 7.00;c130 3.00 29.00,28.50\r\nIULK6,GFWE,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person holds a book next to a chair, then takes homework out of the book.\",book;chair;paper,A person is sitting in a chair they pick up a book and start doing their homework while sitting in the chair.;A person opens a book with a notepad in it and pulls out a pen and begins to write on it.,c145 3.60 32.00;c059 0.00 32.00;c025 8.00 13.80;c116 8.30 21.50;c027 3.90 9.50;c117 0.00 7.10;c026 0.00 14.50;c030 0.00 7.10;c028 8.90 14.60;c115 4.50 32.00;c032 22.00 32.00,31.12\r\nW7HR1,JTAS,Bathroom,6,7,Yes,The person was walking by the door of the bathroom and decided to start tidying up.  The person noticed a box that had been left on the floor.,box;door;floor,\"A person walks into the bathroom and tides up things on the counter before picking up a box from the floor and leaving.;A person walked into a room rearranged things on the canter,pick up a box from the floor and walked out of the room with the box in hand.\",c043 15.50 25.00;c097 3.30 9.70;c040 16.00 24.40,30.17\r\nOVD84,AT5D,Bedroom,7,7,Yes,One person lying under a blanket awakens when another runs through laughing and turns on the light.,bed;blanket;door;light,\"A person walks into the room and turns on a light.  Another person uncovers a blanket, gets out of bed and walks over to a door.;A person enters a bedroom and turns on a light, waking another person who had been laying in the bed.;A person turns on some lights while another person wakes up and gets up from lying in bed.\",c104 4.10 10.80;c074 10.60 22.90;c146 6.90 16.90;c154 18.60 26.00;c134 0.00 15.50;c008 0.80 9.70;c071 16.10 22.10;c135 18.90 24.40;c072 8.10 13.40;c097 1.10 8.50;c133 7.50 14.10,30.67\r\nUZ2AL,ENHU,Kitchen,5,6,Yes,A person is eating by the stove and watching the sink.,food;sandwich;sink;stove,a person is eating standing next to the stove;A person is standing in the Kitchen eating a sandwich.;A person in a kitchen is staring at the counter while eating.,c156 0.00 8.00;c061 0.00 7.80;c065 0.00 8.00,7.50\r\n0M0T4,ZDKC,Bedroom,5,1,No,\"A person walks into the bedroom and turns on the light, as they hit the switch they accidentally knock over the brook that was next to the door. They start undressing as the phone rings so they have to leave the bedroom to go get it.\",bed;clothes;coat;doorway;jacket;light;phone;table,\"A person walks into a room and turns on the light. The person then takes off a coat and puts it on a bed. The person then starts to play with a phone.;A person walks into a room, puts clothes on a bed, and starts walking around in a confused manner while texting on a phone. Eventually, the person walks out a door.;A person enters a bedroom, looks at some clothes, then grabs a phone and walks out.\",c015 41.40 51.70;c016 41.40 51.70;c001 9.90 20.50;c155 9.70 20.20;c002 2.30 55.00;c009 2.30 55.00;c097 50.10 55.00;c104 52.30 55.00,54.12\r\nAKO6M,ENHU,Bathroom,3,7,Yes,A person is putting a glass in the sink to fill it and taking a bag from a cabinet.,bag;cabinet;cup;door;glass;sink,\"A person fills up a cup with water form a sink. The person takes a bag from the bottom cabinet.;A person stands in the bathroom holding a glass, sets it down and gets a bag from inside the bathroom cabinet.\",c020 12.60 20.00;c023 12.70 19.90;c107 0.00 8.80;c109 3.30 10.70;c112 15.50 20.00;c113 10.20 15.50;c154 11.20 17.60;c111 0.00 12.60;c008 9.30 15.20;c006 13.90 19.40,18.58\r\nFAJEA,EDYS,Home Office / Study (A room in a house used for work),6,6,Yes,A person is seen on their laptop. They take some medicine and then take a drink of water after sneezing.,chair;cup/glass/bottle;desk;medicine;pillow;table;water,\"A person sits down in a chair at a desk with a pillow and begins taking a drink of medicine, they then look at a laptop.;A person sits on a chair holding a pillow at a desk. They pick up a bottle and drink medicine from it. They then drink from a cup.;A person sits down in a chair and crosses their legs. The person takes a sip out some drink in a cup.\",c129 14.30 23.50;c106 23.40 31.00;c151 3.10 11.90;c059 8.40 31.00;c076 3.00 30.20;c110 11.90 16.30;c009 17.70 22.20;c011 4.20 31.00;c107 12.00 22.60;c109 17.40 22.30,30.08\r\nM4FOP,M7K8,Recreation room / Man cave,6,6,Yes,The person is putting away groceries and then smiling at the window in the recreation room / man cave.,bag;groceries;shirt;window,A person picks up a bag and puts it down and then looks out the window.;A person puts stuff In a bag by the window and then looks out the window;A person crumples a bag before putting it down. A cat walks around as well.,c020 4.80 10.80;c130 6.20 11.30;c152 3.00 8.40;c022 5.40 10.00;c154 0.00 33.00;c021 0.40 7.10;c092 10.70 30.80;c023 0.00 5.10,32.12\r\nOHR82,CO87,Laundry room,5,7,Yes,A person is opening a box of laundry detergent on the table.  The person then is pouring the laundry detergent in the washing machine.,box;clothes;table,A person opens a container and pours some detergent into a cup. The person pours the detergent into a washer;A person filled up a cup with a liquid. The person then walked over to a washing machine and opened the lid. The person then poured the contents of the liquid into the washing machine and closed the door.,,27.83\r\nN8913,ZDKC,Bedroom,4,7,Yes,A person is standing in a bedroom holding a towel.  The person picks up a coffee from the nightstand and takes a drink.  The person is also watching television.,blanket;clothes;cup;shelf;television;towel;tv,The person is fumbling with a piece of clothing and then picks up a drink and takes a drink. They walk closer toward a TV that they are watching.;A person stands while holding a towel. The person picks up a mug and drinks from it. Then the person walks a few steps while looking at the television.,c106 7.30 24.40;c132 27.30 33.00;c033 0.00 33.00;c070 0.00 33.00;c081 18.30 24.90;c000 0.00 33.00;c109 17.80 24.40;c110 5.40 11.80,31.79\r\nV1BX9,CP6Y,Kitchen,6,7,Yes,A person is leaving the phone on the chair and another person is eating by the stove.,book;chair;dish;food;phone/camera;sink,a person eats something and another person sets something on a chair;Person standing in the kitchen by a table eating food and another person walk in and sat something in a chair.;A person eats some food in the kitchen while another person puts an item on a chair nearby.,c156 0.00 17.00;c028 2.00 8.00;c061 0.00 17.00;c015 0.00 8.80;c017 3.50 8.90;c116 3.00 8.70;c118 0.00 17.00;c152 8.50 12.80,15.50\r\nOVFVJ,ZDKC,Living room,6,7,Yes,\"A person walks into the living room, and takes a towel from the cabinet. The person then begins undressing.\",blanket;cabinet;clothes;door;towel,Person walking in a room going over to a cabinet pulling out a piece of garment going over to the sofa and place it on the sofa.;A person walks through the kitchen into the living room and pulls a blanket from the entertainment center and walks over to the couch and undresses.,c008 5.30 11.60;c034 12.80 26.00;c112 16.50 21.60;c155 22.10 34.00;c070 13.30 25.00;c000 29.40 34.00;c071 12.50 25.80;c148 22.10 33.80;c006 17.00 21.30;c035 12.50 26.80;c113 5.50 11.20;c097 0.00 3.30;c073 13.30 20.50;c033 15.80 25.10,33.12\r\n0A8CF,BONA,Other,5,7,Yes,A person is working on homework at a desk. The person pauses and drinks from a glass of water.,cup;desk;floor;glass;homework;paper;table;water,The person is sitting on the floor with a desk in front of them writing on some paper. The person puts the pen down and grabs a glass from beside the desk and takes a drink.;A person is sitting. The person is also working on their homework. A person then takes a glass from somewhere and drinks some water.,c014 0.00 27.40;c145 0.00 27.80;c106 25.50 33.00;c011 0.00 33.00;c125 0.00 33.00;c107 24.90 33.00;c110 24.90 33.00,32.17\r\nPAW5E,CP6Y,Kitchen,5,7,Yes,\"A person is standing in front of the stove eating food.  Another person comes and snuggles behind the person at the stove, and then steals their food.  The person at the stove laughs and walks to the window and looks out.\",doorway;food;person,\"Two people are standing together cuddling, before one person runs away with a food item.;Two people stand in the kitchen, one hugging the other from behind. The first person then reaches around and looks to steal a piece of whatever food is cooking before running away. The second person laughs.;A man is standing behind a woman. He kisses the woman and reaches for something she is holding before, both smiling, he exits the room.\",c061 7.70 13.70;c063 3.90 13.00;c156 10.50 15.10;c149 0.00 8.20;c150 10.50 15.10;c147 0.00 7.00;c097 10.60 16.60;c062 8.00 14.10,17.38\r\nPC92A,WK8I,Living room,4,7,Yes,\"a person walks past a television while grasping shoes in their hand, then sits down.\",bag;chair;hand;shoe;table;television,\"A person sits in a chair holding their shoes;A person walking from the kitchen to the living room with a item in hand, sitting down in a chair and leaning back.\",c053 0.00 32.00;c151 14.30 20.60;c020 0.00 32.00;c059 15.80 32.00;c011 16.10 32.00,30.67\r\n65ULK,ZDKC,Closet / Walk-in closet / Spear closet,2,5,Yes,\"One person walks in, grasps some clothes, and starts dressing in front of a mirror.\",closet;clothes;doorway;jacket;mirror;wardrobe,a person walks over to a closet and grabs a coat then puts it on looking in the mirror;A person walks through a room and gets a jacket out of the closet.  This person then puts the jacket on.;A person takes a coat from a closet and puts it on.,c096 18.00 31.00;c148 16.00 31.00;c001 17.00 28.50;c002 9.60 21.30;c000 7.50 23.70;c097 0.00 3.50,30.42\r\n95M0X,CP6Y,Hallway,5,7,Yes,One person with hair in a towel sneezes and snuggles another person with a stack of homework. Both persons laugh.,book;hair;homework;paper;towel,Two people are standing by the stairs one person is sneezing into a kleenex while another person is standing holding a book they first person walks over the other person and they hug and kiss.;a person sneezes in a hallway and then two people hug in the hallway,c115 0.00 17.00;c153 0.00 9.00;c029 0.00 6.50;c149 6.70 17.00;c026 0.00 17.00;c152 5.90 15.80,16.46\r\nQ5YDL,4UGC,Living room,6,6,Yes,A person is sitting on a sofa and playing a game on a laptop. They pick up a glass bowl from the end table and start eating potato chips.,book;dish;food;laptop;sofa;table,A person is sitting on the couch looking at a laptop.  This person eats from a bowl and relaxes.;A person sits on a sofa while paying on their laptop before grabbing a glass of water from a stool and drinking it.,c061 16.10 38.40;c051 0.00 16.50;c009 33.90 39.10;c156 20.10 37.30;c046 13.00 17.80;c119 33.30 39.90;c062 20.90 26.70;c118 15.80 38.40;c120 15.30 20.80;c123 0.00 52.00;c052 0.00 16.50;c032 0.00 17.50;c063 15.80 20.10;c046 15.80 20.30;c047 0.00 52.00,50.83\r\n610PZ,M7K8,Stairs,4,7,Yes,A person drinking coffee is standing in front of a door at the top of a stairway.,coffee;cup;dish;door;food,Person standing in the hall drinking out of a cup then bend over to pick something off the floor.;A girl stands at the top of a flight of stairs eating a snack and holding a cup of coffee. Then she kneels down onto the floor.,c106 0.20 7.90;c107 0.00 33.00;c152 21.50 26.50;c061 0.00 33.00;c118 0.20 33.00,31.92\r\nGT07A,I48P,Dining room,5,6,Yes,One person walks into the dining room and starts tidying up some stray shoes and homework that are lying around.,closet;clothes;clothing;doorway;floor;food;homework;paper/notebook;shoe;table,A person is picking some clothing up off of the floor in the dining room. The person places them in the closet and fiddles with some items on the table.;A person picks up shoes off the dining room floor then picks up and straightens paper on the table before walking out of the room.;A person walks into a room and cleans it up.,c012 17.80 34.00;c002 0.20 18.20;c156 6.50 34.00;c117 18.30 29.30;c056 0.30 5.00;c056 2.00 6.80;c056 5.50 10.00;c004 0.00 20.00;c097 13.50 19.80;c127 0.00 4.50;c127 1.70 7.20;c127 4.80 10.80;c054 12.50 19.20;c117 23.80 29.30;c053 4.00 20.70;c056 10.00 17.80;c115 25.70 34.00,33.29\r\nTESF6,BONA,Living room,7,6,Yes,One person at a sofa opens a box and puts a camera into it. Then this person holds the box and smiles.,box;camera;chair;floor;phone;sofa,Person sitting in a chair picks up a box open the box take a picture of the box then pick the up and play with it.;A person opens a box and fiddles with a camera before putting it in the box and laughing.;A person is sitting in a chair and playing with a cardboard box. Then he takes out his camera and puts it oin the box before closing the box.,c123 0.00 31.00;c015 8.30 22.90;c018 7.10 13.00;c040 21.30 31.00;c043 0.00 4.40;c149 21.30 31.00;c059 0.00 31.00;c016 11.40 20.90;c017 17.60 22.90;c039 18.90 25.30;c041 3.20 10.80;c152 21.00 31.00;c126 2.60 9.00;c042 2.90 10.10;c087 9.70 20.30,30.42\r\nV7YEJ,GFWE,Living room,6,6,Yes,\"A person awakens on the floor of their recreation room. The person, still lying there, grabs a dish of food from a nearby table and begins eating.\",dish;floor;food;phone;table;video,A person lying on the floor awakens and grabs a phone from a table and starts watching a video.;A person in laying on the floor.  This person reaches up to get a bowl and starts eating while still laying down.;There is a person laying on the floor.  That person sits up and picks something up off of a table.,c124 0.00 32.00;c118 6.40 32.00;c061 6.50 32.00;c146 0.00 7.70;c120 5.10 11.80;c063 5.90 12.40;c156 9.30 32.00;c156 9.90 16.90,30.92\r\nQYPLI,GFWE,Living room,6,6,Yes,\"A person in a recreation room is undressing by the door, they then start tidying up the pillows on the couch before sitting down.\",blanket;chair;clothes;couch;doorway;pillow;shirt;sofa,\"A person throws a towel on a couch. The person then adjusts some pillows on a nearby couch and sits on it.;A person with a sweater over the shoulder, walks into the room and throws sweater aside, goes over to the couch, straightens pillows and sits down.\",c123 19.40 32.00;c155 0.00 6.00;c151 17.00 24.10;c002 0.00 7.10;c001 0.00 8.00;c097 0.00 3.10;c075 8.90 13.40;c077 9.70 15.50;c076 4.50 9.40;c076 6.00 12.60;c076 10.30 15.50;c003 1.70 6.30,30.67\r\nWKSFS,GFWE,Living room,6,6,Yes,The person in the man cave is snuggling with a blanket because the person is cold.  The laptop is lying next to the person on the table.,blanket;dog;door;laptop;pillow;sofa,A person lying on a sofa with a dog.The person pushes the dog away .The person looks away to ward something.The dog jumps down.;A person is sitting on the couch with their dog.;A person sits on a couch with a dog and keeps pushing the dog away in an annoyed manner while reading something.;A person sits on the couch while pushing their dog away from them. The dog jumps down and the person continues to sit.,c076 0.00 30.00;c123 0.00 30.00;c072 0.00 30.00;c122 0.00 30.00,29.12\r\nFRSBQ,BONA,Bedroom,6,7,Yes,A person is in the bedroom standing next to the bed.  The same person than starts undressing next to the cabinet.,bed;blanket;clothes;covers;pillow;shirt,\"A person tidy up a bed.The person folds up a pillow and moves the covers around.The person takes off a shirt.;A person adjusts some blankets and folds them on a bed. The person adjusts some more sheets and then takes their shirt off.;Person folds towel on bed, fluffs pillows and straightens bed picks up ribbon and throws it aside, then takes off shirt\",c000 0.00 33.00;c004 0.00 23.10;c155 20.30 33.00;c002 0.00 5.50;c001 0.00 10.80;c071 2.00 10.00;c154 0.00 7.30;c079 12.90 17.50;c076 14.00 18.20;c075 1.40 9.70;c077 12.90 20.10;c070 3.00 9.70;c001 30.00 33.00;c071 30.00 33.00;c073 30.00 33.00,31.96\r\nRXELU,V2C2,Bathroom,7,7,Yes,A person walks into the bathroom and turns on the light. The person drinks from a cup of coffee. The person watches themselves in the mirror and smiles.,cup/glass/bottle;doorway;light;mirror;mug,\"A person is drinking coffee and smiling in the mirror;A person walks into a room, turns the light on and drinks some water, and then smiles into the mirror.\",c096 7.90 16.00;c104 2.50 6.60;c152 8.90 16.00;c154 2.60 16.00;c107 3.60 9.80;c094 8.50 16.00;c097 1.20 7.40;c106 3.70 9.70,14.88\r\nL4184,SW82,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is smiling, while fiddling with a Camera.  They kick their shoes off, throwing them across the floor.\",camera;shoes,\"A person is playing with a camera and throwing off shoes in an entryway,;A person stands in front of a door while playing with a camera. Then the person kicks off their shoes.;A person adjusts a camera and then kicks off their shoes.\",,30.21\r\nEEGGA,B6UG,Bedroom,3,6,Yes,A person is sitting on the sofa watching television with a blanket over their lap.  The person is grasping a bowl of popcorn and taking one piece out at a time to pop in their mouth.  The person puts the bowl of popcorn on the side table.,blanket;chair;food;sofa;table;television;towel,\"This person appears to be in a bedroom, sits in chair, places blanket in lap, picks food off of table and starts eating.;A person folding a towel sits down with the towel on their lap and begins eating.;A person sits down with an orange blanket on them. The person eats some food resting the container on the blanket.\",c132 7.40 28.50;c071 0.00 5.30;c009 26.70 31.00;c151 0.00 4.10;c156 15.90 22.20;c063 1.50 8.90;c059 0.00 4.60;c011 0.00 31.00;c070 0.00 31.00;c033 0.00 31.00;c061 3.10 31.00,30.08\r\nX8JVY,I48P,Entryway (A hall that is generally located at the entrance of a house),3,6,Yes,A person standing next to the doorway smiles as the person looks at groceries.,bag;book;door;food;groceries;medicine,\"A person enters a room holding a bag, and a book and closes the door. The person removes items from the bag, and walks away.;A man enters a house holding a bag, from which he begins to remove items and look at them before taking them into another room.;A person is closing a door and holding a bag of food. The person is opening a bag and taking from the bag and holding it. The person then walks out of the room.\",c097 0.00 4.50;c030 4.40 10.10;c006 0.00 6.00;c020 0.00 28.40;c026 6.10 24.30;c128 0.00 23.50;c008 0.00 3.30;c063 5.20 26.00;c115 5.50 29.30;c130 22.60 30.00;c021 3.00 8.90;c141 0.00 6.70;c062 23.30 30.00,29.25\r\n96ATI,0Z4M,Bedroom,6,7,Yes,A person is sneezing while carrying their laptop then begins to play with the clothes on the sofa.,bed;blanket;chair;clothes;laptop;sofa,Person standing in a room with a laptop the person began to cough sit the laptop on the table;Person standing up with a laptop in hand then began to cough sat the laptop on table then sat down in a chair.,c002 17.20 32.60;c052 0.00 22.70;c153 5.80 15.90;c151 24.30 32.40;c154 0.00 28.60;c059 25.00 35.00;c070 15.30 35.00;c073 15.10 34.90;c049 14.30 19.30;c059 24.50 29.30;c051 0.00 17.40;c135 25.00 35.00;c047 0.00 19.70;c004 23.30 35.00,33.92\r\nEHIOY,BONA,Laundry room,7,7,Yes,A person awakens in a laundry room sitting on a chair covered in a blanket and eats a plate of food.,blanket;chair;dish;food,A person is sleeping and then wakes up and eats a sandwich;A person is covered in a blanket and sleeping in a chair they wake up and grab a plate of food and start eating.,c061 19.40 36.00;c118 19.40 36.00;c072 0.00 36.00;c146 7.00 19.00;c063 18.50 24.90;c120 18.10 25.10;c059 0.00 36.00;c156 21.80 36.00;c119 18.30 36.00;c070 10.30 21.10,34.71\r\n4WO5F,ZDKC,Living room,4,7,Yes,One person with hair wrapped in a towel snuggles on a sofa grasping a cup of coffee.,cup;glass;shoe;sofa;towel,A person with a towel on their head and holding a cup walks to a couch and sits down and puts up their feet.;A person walks and sits on a couch with a mug in their hand and a towel on their head. The person curls up and drinks from the mug.,c106 21.50 30.90;c107 7.20 31.00;c123 2.10 8.90;c151 2.30 9.00;c057 3.70 10.10,30.42\r\nIIW0F,CP6Y,Living room,6,4,Yes,A person is grasping a blanket and fixing a phone.,blanket;phone;towel,A person is is putting together their phone while wearing a green blanket and orange sandals.;A person is looking at a phone and then picks up a blanket and puts it across their shoulder.,c015 0.00 46.00;c070 7.20 46.00;c071 7.00 15.90;c073 7.00 15.70;c037 7.00 14.30;c016 0.00 46.00;c033 7.40 46.00;c035 7.20 13.20,44.79\r\nM847G,CP6Y,Hallway,6,7,Yes,A person sneezed all over a picture.  The person then takes a blanket to clean it up while smiling.,blanket;chair;laptop;picture;towel,a person sits on a chair with a picture and wipes it with a towel;A person is sitting in a chair holding a framed picture and a blanket. The person sneezes on the picture and then wipes it off with the blanket.;A person sitting in a hallway wipes something clean.,c084 0.00 18.00;c088 0.00 18.00;c070 0.00 18.00;c153 5.10 10.10;c059 0.00 18.00;c047 0.00 18.00;c038 6.60 18.00;c037 6.60 18.00,16.54\r\n7AB3X,CP6Y,Bedroom,6,7,Yes,A person rises from bed and begins walking around a bedroom and drinking some coffee.  The person looks in a mirror and begins smiling while eating some breakfast food.,bed;coffee;cup;food;mirror,\"A person lays on a bed, gets up rapidly, paces around the room, and grabs something to drink out of a cup.;A person gets up out of a bed and walks around a room, eventually picking up a cup and some food and enjoying both.\",c094 17.50 29.00;c106 17.10 24.80;c134 0.00 7.90;c154 7.30 13.30;c146 1.20 9.60;c133 0.20 10.30;c063 20.80 25.50;c096 17.10 23.40;c107 15.80 29.00,27.58\r\n8YFD1,VOOS,Laundry room,5,7,Yes,A person looks into a mirror and starts undressing before taking a sip of coffee.,clothes;coffee;cup;dish;hair;mirror,\"Person is standing in laundry room looking fixing their hair while looking in mirror,then person starts undressing and drinking coffee.;A person fixes their hair in a mirror. The person puts the mirror down then takes off their jacket. Next the person picks up a mug and drinks from it.\",c093 0.00 9.70;c106 15.10 32.00;c155 7.10 18.80;c001 7.30 18.60;c118 14.60 32.00;c096 0.00 11.70;c120 10.70 24.00;c094 0.00 8.40;c144 0.00 8.70;c107 15.00 32.00;c000 10.60 16.90;c110 14.80 19.60,31.38\r\nOQSXX,I48P,Basement (A room below the ground floor),6,7,Yes,\"A person sits on a couch before getting up, grabbing a towel, and leaving through a door.\",blanket;door;sofa;television;towel,\"A person sits in a chair and watches TV before getting up, placing a towel on their shoulders and leaving the house.;One person is sitting on the sofa and then that person stands up and puts a towel on their shoulder. Lastly the person walks out the door.\",c033 8.60 26.30;c035 8.60 16.70;c006 20.80 29.00;c154 3.00 11.10;c123 0.00 7.60;c034 8.60 15.60;c008 14.10 23.50;c070 8.70 16.70;c132 0.00 8.10;c071 11.00 16.40;c073 9.10 14.70;c146 3.40 12.10;c097 20.00 28.50;c141 16.00 23.30;c070 8.60 26.30,28.50\r\n0IU3G,I48P,Hallway,3,7,Yes,\"A person is standing in the hallway, talking on the phone, and they look down at their shoes and laugh.\",phone;shoe,A person standing in the hallway on a cell phone with a hand on the hips.;A person talks on a phone while standing at the top of the stairs.,c019 0.00 37.00;c057 8.60 17.50;c015 0.00 37.00,36.00\r\nGYFM4,JTAS,Laundry room,7,7,Yes,A person turns on the light then sneezes while walking towards a shelf.,closet/cabinet;doorway;shelf,\"A person walks into a room and sneezes multiple times. The person looks at some items on a nearby shelf.;The person walks intot he room, sneezes 4 times and walks back to the closet and begins looking for something.\",c082 18.10 35.00;c153 2.40 17.10;c097 0.50 6.20;c114 18.30 35.00,33.75\r\nZQKVY,ENHU,Bedroom,4,7,Yes,\"A person runs into the bedroom, carrying a box. The person removes a blanket from the box, and puts it on the bed.\",bed;blanket;box;door,\"A person carrying  a box opened the  door came in put the box down opened the box and took out a comforter p lay the comforter on the bed.;A person enters a bedroom carrying a box which they put on the ground and remove a blanket from, putting it on the bed.\",c044 3.40 11.60;c070 3.20 13.80;c074 8.40 14.00;c150 0.00 5.40;c008 0.00 4.90;c097 0.00 4.40;c042 1.70 7.10;c071 8.50 14.00;c040 0.00 7.30;c073 3.80 9.90,13.04\r\n8B4ZP,JTAS,Living room,5,1,No,\"A person is in a man cave eating while reading a book, they then start undressing before turning off the light.\",book;chair;clothes;couch;food;light;sofa;table,\"a person is reading a book and eating while sitting then they stand up and take off a sweater;A person is sitting on a couch eating a snadwich while they are reading a book they put the book down stand up and take off their shirt they through their shirt down walk over and turn off the light and walk out.;A person sits on a couch reading a book while eating some food. The person puts the book down, stands up, and takes their sweater off.\",c105 46.40 49.00;c032 0.00 30.10;c155 38.40 47.80;c009 27.50 35.40;c028 27.50 34.20;c156 3.10 27.40;c154 31.60 40.20;c061 0.00 30.80;c123 0.00 36.10;c001 37.90 42.40;c027 0.00 4.20;c003 33.80 48.20;c063 2.10 7.30;c025 26.80 31.50;c026 0.00 33.20;c000 37.50 42.20;c062 29.20 34.40;c059 0.00 36.90,48.38\r\nCS7HY,ZDKC,Kitchen,6,7,Yes,\"A person walks into the kitchen holding a broom. They open a cabinet, pull out a pot, close it and start cooking.\",broom;cabinet;counter top;door;drawer;floor;food;pan;something;wall,\"A person is holding a broom and walks into a kitchen. They lean the broom against a wall and open a cabinet. They take out a pan from the cabinet and open a drawer to grab a something.;A person sweeps the floor and puts the broom away. The person takes a pan out of a shelf and puts it on a burner.;A person takes a broom to the kitchen, takes a pan from the cabinet and puts it on the stove.\",c113 6.40 18.50;c098 0.00 8.00;c147 15.90 32.00;c006 12.70 18.10;c127 0.00 3.10;c112 12.70 18.10;c008 5.70 11.10;c099 4.50 9.10,30.75\r\nW0XPU,NMK2,Bedroom,4,7,Yes,\"A person holds a pair of shoes. The person puts the shoes on, grabs a sandwich, and leaves.\",bed;clothes;food;sandwich;shoe,\"A person walks into a room and sits down on the bed. The person take of their shoes and then eat some food off of a plate.;Person sat on the bed and put on the bed then stand up and person looks in the cabinet.;Th person walks into the room, sits on the bed, puts on shoes and then picks up a phone as they walk to the corner of the room.\",c151 0.80 6.20;c156 20.60 26.50;c056 0.00 6.10;c065 20.90 26.00;c154 19.00 24.10;c135 2.70 24.00;c054 0.30 6.50;c061 18.30 32.00;c063 17.50 32.00;c148 2.80 21.60;c053 0.00 5.40;c055 2.10 16.00;c069 17.30 24.30;c067 18.00 32.00,31.17\r\nZ9RED,ZDKC,Bathroom,5,7,Yes,a person walks through a bathroom doorway and looks into the mirror while grasping onto toilet paper to wipe their nose after sneezing.,doorway;mirror;paper/notebook,A person walks into a bathroom and takes some toilet paper off the sink. The person sneezes in front of a mirror and rubs their nose with the toilet paper;Person walked into the doorway to the bathroom standing in the bathroom mirror looking into the mirror holding something in hand.,c096 2.50 32.00;c097 0.00 5.70;c153 15.70 24.00;c115 2.50 32.00,30.54\r\nR2AP7,4TV7,Stairs,6,6,Yes,A person is standing by a mirror on the stairs.  Another person is putting a picture on the shelf.,cup;doorway;hair;mirror;stairs,\"A person fixing their hair, as another person goes up the stairs, puts a cup on the top of the stairwell then comes back down the stairs;Person standing at the top of the stair combing hair another person runs up the stairs.;A person at the top of the stairs fixing hair, another person comes up the stairs and walks by and then comes down again.\",c150 23.70 34.20;c144 0.00 25.80;c097 3.00 17.60,43.21\r\nWEW2E,B6UG,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person walks in the entryway holding a bag.  The person pulls a blanket out of the bag and puts it on the floor, then turns off the light.\",bag;blanket;doorway;floor;towel,\"A person walks through a door with a backpack, removes a blanket from the backpack while placing it on the floor, and finally points to the wall.;A person walks into the room and takes a blanket out of a bag and lays it out on the floor.  That same person then cuts off the light.\",c020 0.00 8.00;c021 6.00 10.70;c022 4.70 9.50;c071 21.70 29.90;c033 18.70 25.40;c035 3.80 13.40;c034 22.90 29.50;c073 1.50 5.80;c126 6.20 12.00;c097 0.00 3.00;c070 6.00 27.20,33.33\r\nFQ2Q3,ENHU,Living room,3,5,No,\"A person sits at their desk and opens a drawer. The person takes out their homework, looks at it for a moment, then puts it away, watching television instead.\",book;chair;desk;homework;paper;table;television,A person is sitting at a desk in a chair under a window then turns to look at a playing TV;A person sits in a chair at a desk before turning around and begins watching TV.,c116 0.00 15.90;c027 2.10 6.70;c059 0.00 16.00;c117 7.30 12.00;c011 0.00 16.00;c132 11.90 16.00;c025 6.20 11.30;c115 1.80 13.50;c014 0.00 13.90;c145 4.50 11.30,15.46\r\nUNWMJ,GFWE,Living room,5,7,Yes,The person was undressing by the wardrobe. And the person was walking while talking on the phone.,clothes;phone,A person on the phone took their sweater off and continued to talk on the phone afterwards;A person places their phone on the stairs before removing their jacket and answering their phone.,c155 1.30 13.60;c018 0.00 2.80;c154 0.00 2.60;c017 0.00 3.90;c015 0.00 3.40;c019 13.30 32.00;c001 9.30 14.80;c000 8.60 14.70,31.25\r\n88ZT4,AT5D,Kitchen,5,6,Yes,\"A person sitting in kitchen, sets down their coffee and looks at there phone and leaves. A second person walks in wrapped in a blanket cape, looks around then drinks the coffee left on the table.\",blanket;counter top;cup;dish;doorway;mug;phone;table;window,\"A person walks into the kitchen with a mug in his hand and puts it on the counter, and picks up his phone. Another person later comes in and drinks from a mug.;A man walks into the kitchen with a cup in his hand. He sets it down. Then he enters again, this time wrapped in a blanket.\",c015 5.60 18.20;c106 20.10 32.00;c109 2.80 8.70;c070 11.90 32.00;c072 14.60 32.00;c018 6.00 17.80;c107 0.00 9.40;c110 0.00 9.70;c071 11.90 32.00;c092 18.90 32.00;c097 0.00 4.50;c016 5.70 17.20;c119 3.30 9.90;c009 4.20 9.30;c120 19.20 24.40,30.92\r\nX4BQG,M7K8,Kitchen,5,6,Yes,Person enters the Kitchen and opens a cabinet and places a sandwich inside the drawer.  Person then sneezes and and wipes nose with a towel.,cabinet;drawer;homework;paper;sandwich;towel,\"A person carrying homework opens a cupboard and puts their homework in, they then sneeze and use a towel to wipe their nose.;A person opens a cupboard and then a drawer and puts some paper inside. The person wipes their nose with a hand towel;A person is walking into a room and is carrying some food. The person opens a cabinet and draw. The person places the food and a draw. Lastly, the person  sneezes and holds a towel.\",c113 5.70 14.80;c038 13.40 30.20;c153 11.60 16.30;c115 1.40 13.60;c116 1.30 14.30;c112 3.40 9.20;c034 26.00 32.30;c035 12.10 17.90;c033 13.90 31.00,32.71\r\n8LLI3,LB3Q,Pantry,6,7,Yes,\"A person is playing with their phone in the pantry. The person takes a picture of some food on the shelf and leaves, closing the door behind them.\",cabinet;door;food;phone;picture;shelf,\"A person is standing in front of cabinets, looking at their phone. The person then takes a picture of food with their camera, closes the cabinets, and exits the room.;A person looks at a can with their cell phone while standing in a pantry.  This person then walks away.;A person stands in front of some shelves in a closet looking at his phone, then takes a picture of an item, puts it back on the shelf, closes the cabinet door and walks away.\",c081 9.00 14.10;c015 3.10 8.20;c006 11.70 16.80;c112 14.60 19.30;c016 0.00 21.00;c061 3.40 13.20;c097 16.00 21.00;c087 4.00 14.10;c008 0.00 18.40;c062 3.80 12.90;c063 3.00 8.50;c062 8.60 13.90,19.88\r\nU0BCE,GMOW,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is washing a box, then the person starts tidying up a desk.\",box;desk;rag;towel,\"The person is cleaning a box with a rag. They then begin to tidy up a desk.;Person is cleaning a box and then going toward as desk, where he is trying to fix something.;A person walks into a room with a box, wipes the box off with a rag, puts the box down, turns around and then organizes the items on top of a desk.\",,42.38\r\nMSVWC,GE1M,Stairs,5,7,Yes,\"A person is eating a sandwich while smiling, then the person starts throwing groceries.\",bag;floor;food;groceries;sandwich;stairs,\"Person sitting on a step eating a sandwich from a dish pick items off the floor and throw them.;A person is sitting on the stairs while eating a sandwich and they take two items from a bag and toss them away, out of view.\",c020 11.30 18.20;c130 14.10 19.90;c065 0.00 14.10;c067 0.00 14.00;c156 0.00 14.20;c126 13.00 19.10;c063 0.00 3.50;c149 0.50 5.50;c125 0.00 22.00;c152 0.50 5.50;c063 7.50 12.70;c062 7.70 12.50;c064 12.60 18.60;c061 0.00 11.60;c068 7.50 12.50,21.46\r\nPNRFK,I48P,Stairs,7,7,Yes,\"A person is dressing by a flight of stairs, they then take a sip of coffee and start playing with a vacuum.\",clothes;cup;glass;vacuum,\"A person gets dressed in some clothes, then takes a glass from the stairs and starts drinking.  They grasp a vacuum and walk away.;A person puts on a blue jacket and zips it up. The person takes a drink of some water and picks up a vacuum.;A person puts on a jacket hanging on a stair rail. The person takes a cup and drinks whatever is inside it. The person carries a vacuum away.\",c137 17.90 25.60;c106 11.30 17.60;c138 17.90 30.00;c107 11.20 18.00;c148 0.00 13.30;c000 0.00 6.00;c002 0.00 8.60,28.54\r\nFSOFF,CP6Y,Living room,4,5,Yes,A person is watching something on a laptop. Another person walks by the takes off their shoes.,laptop;shoe;sofa,A person sitting on a couch using a laptop. Another person walks in and sits down next to the first person and then proceeds to take their shoes off.;A person is sitting on a couch while using a laptop while a second person walks over and sits on the couch and begins taking off their shoes.,c051 0.00 21.00;c052 0.00 21.00;c123 0.00 21.00;c057 11.80 21.00;c053 11.80 21.00;c151 9.90 15.40;c047 0.00 21.00,19.79\r\nJQRMQ,I48P,Pantry,6,1,No,\"A person is sitting in the chair grasping their shoes.  The person washes their shoes with a washcloth, then puts them on the floor next to the vacuum.\",bag;box;closet/cabinet;door;food;groceries;light;pantry;shelf,\"A person opens a door and turns on a light. They take a box from a shelf and sneeze. They then close the door.;A person opens the pantry and turns on the light, the grab something off then shelf while sneezing;The person opens the door and removes an item then sneezes and puts it back before closing the door again.\",c043 10.80 21.80;c104 5.80 19.20;c105 12.20 25.50;c040 14.40 19.70;c153 11.50 16.70;c008 5.90 11.10;c006 5.40 23.40;c061 8.10 21.00;c149 13.00 18.70;c141 0.00 6.60;c152 13.00 20.20;c113 0.00 6.60;c023 25.30 28.00;c082 25.30 28.00;c112 25.20 28.00;c063 25.20 28.00;c130 25.30 28.00;c112 0.70 6.80;c063 8.50 13.70;c007 0.00 28.00,27.25\r\nRPXAC,CP6Y,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person sits in the closet, dressing themselves. The person takes a shirt from the shelf, and looks in the mirror as they put it on.\",chair;clothes;mirror,\"A seated person wearing a zip-up sweater removes the sweater, grabs a button-up shirt, and puts it on while standing up.;A person takes off a jacket, places it on their chair and then puts on a shirt.\",c096 18.40 32.00;c148 10.10 22.20;c154 18.10 32.00;c151 17.10 21.80;c002 8.10 12.30;c155 0.00 3.90;c059 0.00 21.90;c001 4.10 8.40,31.08\r\n0DD62,CP6Y,Recreation room / Man cave,7,7,Yes,Person grabs picture from shelf and starts snuggling with picture while laughing.,picture;shelf;table,A person stands in front of a desk.;The person picks up a picture and holds it to them and then looks upward. The person looks back down at the picture and stares.;A person takes a picture frame and holds it to their chest. The person continues but looks at the ceiling while doing so.,c084 2.70 18.00;c085 2.90 18.00;c088 0.00 7.90;c083 0.00 7.90;c152 4.70 17.60;c149 7.30 18.00,17.21\r\nOKHVL,ZDKC,Dining room,6,6,Yes,\"A person puts a sandwhich and a glass of water on a dining room table and sits on a chair.  The person takes a bite of the sandwhich then begins drinking the water.  After a few sips, the person puts the water down and smiles.\",chair;cup;food;glass;sandwich;table;water,\"The person walked to the table set down a plate of food glass of water on the table sit on chair ate food and drank water.;A person is holding a sandwich and glass of soft drinks, walks near the table sits on it, take a bite of a sandwich, drink from the glass, again take the bite, and drink.;A person sits down at the kitchen table and eats a sandwich and drinks water\",c106 16.80 37.00;c059 6.00 37.00;c151 0.00 10.10;c106 18.60 25.20;c011 9.40 37.00;c156 13.20 18.80;c065 13.20 20.10;c110 14.10 25.20;c009 20.40 26.40;c109 1.10 6.50;c063 11.00 15.60;c062 5.40 10.50;c061 11.40 37.00;c067 11.40 37.00;c068 5.10 9.80;c069 11.20 17.20;c107 11.60 37.00,36.04\r\nRG0JH,CP6Y,Bedroom,3,7,Yes,The person was holding a pair of shoes.  They started looking out the window and began sneezing.,bed;man;shoe;window,\"A man sitting on a bed, holding shoes and sneezing.;A person is sitting on the bed and looking out the window. A person then begins to laugh.;A person sits on the bed while holding shoes and sneezing while also looking out of their window.\",c092 2.40 11.20;c053 0.00 18.00;c153 6.30 15.90;c154 1.60 8.90;c135 0.00 8.10,17.29\r\n0Z1PC,BONA,Bedroom,6,7,Yes,\"A person walks into the room holding a towel and a pillow.  The person puts the them in the wardrobe, then looks in the mirror on the wall and smiles.\",blanket;cabinet;closet;door;mirror;pillow;shelf;towel;wall;wardrobe,A person enters a room and opens the doors of a closet and puts a pillow and blanket on the closet shelves and closes the closet doors and then stands in front of a mirror.;A person ins walking through a door way and is holding a pillow. The person opens a closet door and puts the pillow in there. The person is also tidying up the closet. The person then looks in a mirror and stairs at themselves.,c033 0.00 26.30;c113 10.40 17.70;c076 2.30 26.50;c077 18.00 25.10;c034 19.00 27.10;c076 3.40 9.40;c096 32.40 40.00;c113 5.00 22.00;c075 18.20 28.60;c082 11.00 32.70;c152 33.40 40.00;c006 25.00 32.50;c112 25.00 32.50;c097 1.10 7.40;c094 33.60 40.00;c114 11.80 28.80;c141 6.20 15.80;c071 18.80 29.60;c070 1.50 26.10;c008 5.60 16.80,38.83\r\n6XB10,P2J3,Bathroom,7,6,Yes,A person is seen tidying up the bathroom from clothes. They begin sneezing and walk out the doorway.,blanket;clothes;doorway;towel,A person walks through a doorway into a room and picks up clothes from the floor.  They begin sneezing as they walk out of the room.;A person walks through the door way into the bathroom and starts picking up laundry as they are walking out of the doorway they sneeze.,c000 7.40 37.00;c004 7.00 37.00;c097 0.00 9.00;c153 26.90 36.50;c035 8.50 26.90;c002 7.60 26.90;c075 5.20 35.00;c037 4.90 35.40,35.75\r\nOGLCO,JTAS,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is working on a laptop and eating chips out of a bag.,bag;floor;food;laptop,A person sits on the floor with a laptop.  this person eats food out of a bag while looking at the laptop.;A person sits on the floor looking at a laptop and eats food from a bag.,c047 0.00 8.80;c052 0.00 8.80;c156 4.20 14.00;c125 0.00 33.00;c061 2.10 33.00;c063 0.40 33.00;c062 0.10 8.20;c061 5.00 10.10;c061 15.90 22.90;c063 2.00 9.00;c051 0.00 33.00;c062 5.80 10.40;c062 16.50 22.90,31.58\r\nQVD5B,SW82,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person is in the entryway holding a bag and a blanket in both hands. They are grasping these items very hard, but eventually need to put them both down because they begin sneezing.\",bag;blanket;clothes;floor;hand;pillow;something,\"A person is standing in a room holding a purse and a blanket. They sneeze and drop the things on the floor then sneeze several more times.;A person holds a blanket while standing on a mat. The person sneezes and puts the thing down, sneezing more afterwards.\",c020 0.00 14.80;c153 8.70 25.90;c071 3.70 17.60;c154 0.00 17.60;c001 11.30 16.70;c077 12.00 16.70;c126 11.00 16.80;c070 0.00 31.00;c078 0.00 4.60;c022 11.00 16.50,30.17\r\nCWL92,ENHU,Hallway,5,7,Yes,A person will be leaving to go on a jog in a short while as they are grasping a pair of running shoes that were carefully chosen from a wardrobe earlier that day.,doorway;shoe,Person walk into the hallway then walks up the stairs with a bag in hand.;A person walks down a hall and up some stairs holding a pair of shoes.,c053 0.00 7.00;c097 0.00 3.30,6.33\r\nFBOF0,JQ7D,Bedroom,6,7,Yes,A person awakens in bed and turns on the television. The person throws the blanket off of the bed while watching television.,bed;blanket;television,\"A person laying in bed eventually rubs their eyes and turns off the tv in front of them. The person gets up out of bed.;A person lays in bed sleeping, eventually they rub their eyes and turn off the tv, getting up afterwards.\",c134 0.00 30.90;c072 0.00 28.70;c146 9.20 22.20;c154 30.30 34.00;c071 26.80 32.10;c132 17.10 34.00;c074 26.80 32.10;c133 2.00 20.40,33.38\r\nFYYFX,EBH9,Bedroom,6,6,Yes,\"Upon awakening, someone got out of bed and walked towards the window. Person could see men working on a pot hole on the street below. Person grabbed a camera and took a picture of the workers below. One was cute.\",bed;blanket;camera;desk;phone;picture;shoes;window,\"A person gets out of bed and looks out the window. Afterwards, the person walks across the room and takes their phone from a table to take photos out the window.;A person leaps from bed from under the covers and opens a window.  The person then takes a camera from a table and takes a picture of outside.;The person gets out of bed, looks out the window, picks something up, and takes that thing to the window. The person points the object out the window and stares.;Person get out of the bed go over to the window then walk over and get something to look out the window with.\",c133 0.00 4.80;c134 0.00 32.00;c018 8.60 14.10;c146 0.00 4.00;c133 8.70 14.00;c092 14.00 24.70;c015 9.60 32.00;c087 13.20 32.00;c154 0.20 7.40;c090 2.00 11.20;c072 0.00 2.80;c016 9.80 32.00,31.00\r\nFQ8FN,EBH9,Bedroom,6,6,Yes,A person is snuggling on a huge bed and then they put on their shoes.,bed;blanket;shoe,\"A person is in bed under the covers.  This person throws the blankets off, sits up, and puts their shoes on.;A person awakens in bed. The person throws the blanket off then sits on the bed and puts on some shoes.\",c054 14.90 25.10;c134 0.00 16.90;c135 14.30 32.00;c133 6.60 17.00;c055 14.60 26.60;c072 0.00 14.40;c146 11.80 17.20;c053 16.10 26.20,31.25\r\nHB02D,EBH9,Bedroom,6,6,Yes,A person is lying a big pillow and holding a tiny sandwich.,bed;blanket;food;pillow;sandwich,The person is sitting in bed snuggling a blanket while eating. They then lay down and continue to eat.;The person looks as though they are trying to brush their teeth or do something with their mouth while carrying an armful of sheets. They lie back on the bed and stick their tongue out.;A person is waking up from bed. He yawns and then lays back down while holding his pillow and his blanket in his hand.,c134 13.90 31.00;c135 0.00 15.30;c078 0.00 31.00;c065 0.00 31.00;c156 0.00 31.00;c152 0.00 12.50;c072 0.00 22.60;c061 0.00 31.00;c070 0.00 31.00;c076 0.00 31.00,30.46\r\n4J1AP,ENHU,Dining room,5,7,Yes,The person is sitting at the dining room table wrapped in a blanket.  The person is eating cereal and drinking orange juice.,blanket;bowl;chair;cup;food;glass;table,\"A person is sitting at a table wearing a blanket around their shoulders,  eating and drinking a glass of water.;A person is sitting at a table eating cereal;A person wrapped in a blanket is sitting at a table and eating something from a bowl. Lastly the person takes a drink from a cup.\",c156 0.00 20.80;c061 0.00 19.90;c011 0.00 22.00;c110 9.80 15.70;c107 10.20 22.00;c063 0.10 12.40;c059 0.00 22.00;c106 13.10 21.50;c072 0.00 22.00,20.54\r\nDM2XL,WK8I,Stairs,6,7,Yes,\"A person walks down the steps, holding a book and a pillow. When the person reaches the bottom, they leave.\",book;door;pillow,\"A person carries a pillow and book down a staircase, then opens the front door and goes outside.;A person is coming down from stairs with pillow in one hand and something else in other, opening a door and went out.\",c026 0.00 23.00;c076 0.00 23.00;c115 0.00 21.70;c154 0.00 2.70;c141 15.40 23.00;c006 17.60 23.00;c097 16.30 22.20;c008 15.40 20.90,22.42\r\nGYVK9,I48P,Dining room,5,7,Yes,\"One person fixes a crooked picture on the wall, then grasps some dishes and starts sneezing.\",dish;doorway;man;picture;plate;table;wall,\"A person is trying to straighten a picture on a wall they turn around and pick up a plate off of the table and then they sneezed several times then they walked out of the room.;A person straightens a picture frame on the wall in their dining room before sneezing several times and leaving the room.;A person adjusts a painting on the wall, then sneezes three times and walks out with a plate.\",c120 23.00 28.00;c153 17.60 22.50;c118 15.90 22.30;c088 0.00 14.80;c083 0.90 10.90;c097 24.30 29.10,28.83\r\nCESHR,ENHU,Bedroom,5,1,No,A laughing person is watching television in their bedroom laying on their bed with shoes on.,bed;picture;television,\"A man sits on his bed before leaning back onto it and laying down as though is he going to be taking a nap or sleeping for the night.;A person sits on a bed in an upstairs bedroom, kicks his feet in the air, then lies back on the bed with his hands behind his head.\",c134 2.10 7.00;c135 0.00 5.50;c132 0.00 6.30;c088 0.00 6.30,5.58\r\nDMO76,ARRB,Dining room,6,7,Yes,\"A person in their dining room is playing with their phone. They start running around while taking a picture using their phone. When they are done, they put their phone onto the sofa.\",phone;picture;sofa;table,\"A person stands at a table texting on a phone.  This person runs into the other room and holds the phone up.;A person is leaning on a dining table with their elbows while typing on their cell phone, and then the person runs into the adjacent living room and takes a selfie with the cell phone.\",c087 15.30 23.00;c015 0.00 23.00;c018 8.10 23.00;c150 11.60 20.40;c154 9.20 13.90;c014 0.00 13.80;c017 17.90 22.80;c016 0.00 13.60,22.08\r\n2XKVQ,M7K8,Bathroom,6,6,Yes,A person in the bathroom is washing a towel while grasping on a shelf.,clothes;shelf;sink;towel,\"The person washed the bathroom sink with a towel. With the other hand the person pointed at a shelf.;A person picked up a towel from a sink, shook it and held it over the sink while, at the same time, the person pointed with their left hand into a cabinet.;Person interacting with a towel inside of a sink, while holding one arm towards other towels on a shelf across the room.\",c033 5.30 33.00;c005 0.00 33.00;c035 0.00 4.50;c034 9.20 17.30,31.79\r\nHUWAZ,V044,Bedroom,5,7,Yes,A person is sitting on a bed and drinking coffee while watching television in a bedroom.,bed;chair;coffee;cup;television,The person is drinking something from a cup while watching TV. They take many sips while staring at the TV.;A person sits and watches TV while drinking from a cup of coffee.,c106 2.00 10.30;c107 0.00 73.00;c135 0.00 73.00;c132 0.00 73.00;c059 0.00 73.00,72.04\r\nRGNQD,ENHU,Recreation room / Man cave,5,6,Yes,\"A person is tidying a table, then laughing and smiling as they pick up dirty dishes in a recreation room / man cave.\",cup;dish;floor;food;table;television,\"Person in the room walked to the stool pick up a glass from the top of the stool walked in front of cabinet pick up a plate of the floor and walked away.;A person picks some containers off a table, a cup off the floor, and walks towards the camera.\",c012 0.00 6.40;c120 0.00 11.00;c110 3.60 10.80;c107 4.10 11.00;c127 4.10 10.60;c132 1.40 10.50;c063 0.00 5.30;c118 4.20 11.00,9.83\r\nZ6B6S,4UGC,Pantry,6,7,Yes,A person is grasping some groceries. They set the groceries down and tidy the area using a towel.,closet/cabinet;food;groceries;shelf;towel,\"A person stood in front of a pantry, removed some bananas, bread, and a jar of a peanut butter, then put them back on the shelves, picked up a towel, folded it, and used to dust the pantry shelves.;A person is taking some food from a shelf. The person is then putting the food back on the shelf. Finally, the person is tidying up the shelf.\",c037 14.80 22.10;c038 15.90 31.00;c034 14.40 20.30;c082 0.00 31.00;c062 0.00 18.10;c114 0.00 31.00;c063 0.00 18.10;c130 11.50 17.90;c033 14.50 31.00;c061 0.00 18.20;c081 9.90 18.20,29.96\r\n2DO31,BPXZ,Recreation room / Man cave,5,7,Yes,Person watches television while eating a bag of chips.  Person starts standing and putting the bag of chips on the floor.,bag;clothes;floor;food;shoe;sofa/couch;table;television,\"A person lays down on a couch and watches some tv. The person gets up and continues to watch the tv.;She is watching TV while resting on sofa, and eating something and now she got up and going somewhere.\",c132 0.00 14.20;c154 12.20 17.70;c061 0.00 15.50;c009 11.40 16.60;c062 11.80 16.80;c148 15.30 23.80;c055 15.80 23.70;c122 0.00 15.30,24.17\r\nT9Y1N,4UGC,Pantry,7,7,Yes,\"A person is sneezing on a box, then the person starts smiling and looks into a mirror.\",box;closet/cabinet;door;mirror;pantry,\"A person opens the doors to the pantry then the person picks up a box. The person opens the box then sneezes. After the person puts the box down the person looks into a mirror and smiles at it.;A person opens a pantry, then picks up a wooden box, sneezes on it, then looks into a mirror.\",c093 17.90 32.00;c096 21.20 32.00;c040 2.40 21.10;c042 13.90 21.30;c153 6.60 18.30;c094 22.30 32.00;c039 7.20 11.60;c041 5.00 10.90;c043 4.00 9.00;c152 22.40 32.00;c113 0.00 3.80;c008 0.00 3.80;c141 0.00 3.70,30.50\r\nLA266,CP6Y,Dining room,4,6,Yes,One person is sitting and eating by a light when another person begins sneezing while washing dishes.,chair;food;hand;mirror;sink;spoon;table,A person is sitting at the table eating while another person is at the sink doing dishes and sneezing.;A person is sitting At a table eating while another person is washing dishes;Person sitting at a table eating another person standing in front of a sink.,c156 0.00 13.60;c153 11.70 25.00;c059 0.00 13.90;c011 0.00 14.00;c139 14.10 25.00;c096 13.10 25.00,24.25\r\nF1V30,ZDKC,Kitchen,6,7,Yes,A person is tidying the counter and then washing a glass and dishes in a sink while smiling in a kitchen.,counter;cup/glass/bottle;dish;rag;shelf;sink;towel,A person holding a towel walks up to a counter and begins to prepare food;A person puts a bowl onto a counter. The person arranges the counter by moving cups and towels all over it.;The person walks with a cloth to the dirty counter and sink and cleans it off before starting to scrub the dishes.,c033 0.00 4.20;c121 25.70 33.00;c038 4.50 23.50;c119 1.20 6.00;c111 23.10 33.00;c082 0.70 24.10,31.67\r\nXZ2WT,AT5D,Hallway,6,7,Yes,\"One person opens a wardrobe, snuggles a blanket found inside, then closes the wardrobe.\",blanket;closet;clothes;door;mirror;shelf;wardrobe,\"A person walks into the closet, grabs a blanket and closes the closet;A person walks through a door way into a room with a dresser they open the dresser and take out a blanket and then they fold the blanket.\",c113 6.60 13.70;c073 16.50 32.00;c082 0.00 21.30;c002 0.00 32.00;c072 15.80 29.60;c070 15.30 32.00;c112 22.40 30.40;c006 22.10 29.80;c148 17.30 25.80;c096 25.50 29.90;c008 7.70 14.20;c075 11.10 19.90;c097 1.10 5.10;c070 10.40 14.80,30.83\r\nSKYIS,ENHU,Bathroom,5,7,Yes,A person puts a towel they are holding in the sink before looking at a mirror and laughing.,clothes;mirror;sink;towel,A person is in the bathroom looking in a mirror;A person is standing in a bathroom and looking at themselves in a mirror. The person is also tidying up a towel.,c033 0.00 3.90;c036 0.00 6.00;c096 3.40 8.00;c037 0.00 4.70;c152 3.50 8.00;c034 0.70 5.20;c001 1.00 5.40,7.08\r\nCYCEV,AT5D,Pantry,7,7,Yes,One person opens a window and sneezes. Another person with a box of groceries starts drinking.,bag;box;cup/glass/bottle;dish;doorway;food;groceries;hair;window,\"Two people are in a kitchen. One person is holding a tray and a cup of water. The person holding the tray drinks from the cup. The other person sneezes a bunch of times. The person holding the cup and tray sets it down and leaves the room with the sneezer.;One person is standing, holding some food, and drinking water. Another person is looking out the window and then sneezing.\",c020 0.00 11.70;c153 8.30 15.70;c144 20.40 25.00;c118 0.00 5.90;c092 0.00 4.80;c061 0.00 5.90;c097 23.10 27.90;c040 0.00 15.60;c106 2.30 9.70;c107 0.00 22.70;c109 18.00 23.00;c062 10.00 16.50,30.79\r\nJQAO5,JTAS,Other,7,5,Yes,A person walks into the living room and throws their stack of homework onto the shelf.,book;doorway;homework;paper;shelf,A person walks into a room with books in hand and puts them on a shelf.;A person walks into a room holding books and then sets them down;The person walked in to the room carrying books and put them somewhere and then walked away with empty hands.,c116 7.50 14.50;c026 0.00 11.10;c028 7.30 13.30;c115 0.00 11.30;c097 0.00 5.20,17.62\r\nTYWHY,I48P,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person runs into their home office, opens a cabinet, and takes their laptop from inside.\",cabinet;desk;door;laptop;table,\"A person runs into a room gets into a desk and takes a laptop out the open the laptop and put it on the desk and turn the laptop on.;A person runs into the room.  The person opens a cabinet, takes out a laptop computer and closes the cabinet.  The person clears a space on the cabinet and sets the computer on it and taps some keys while still standing.  Then the person stand there, just looking at the computer.;A person takes a laptop from a drawer and turns it on.\",c048 11.90 21.70;c112 7.60 14.20;c113 1.20 9.20;c150 0.00 5.00;c009 6.80 12.70;c049 11.30 16.60;c047 5.70 17.40;c006 9.70 14.60;c050 5.40 13.00;c052 15.80 33.00;c008 0.70 8.20;c051 13.70 33.00,31.96\r\nAFIRW,I48P,Bathroom,6,7,Yes,A person is smiling as they wash their hands in a bathroom. The person takes out their phone and takes a selfie picture.,hand;mirror;phone;picture;sink;towel,\"Person in bathroom who washes hands, dry hands who then takes out a phone and takes a picture.;A person at a sink and washes their hands, dries them, then returns the towel to its place before taking a photo of themselves.;A person washes their hands with soap and water in a sink. The person drys their hands off, pulls out their phone and holds it up to the mirror.\",c015 17.20 33.00;c139 0.00 6.60;c087 20.20 33.00;c152 4.40 11.30;c096 0.00 9.20;c016 16.50 33.00;c018 16.40 23.60,31.92\r\nACSP8,GE1M,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person sits in their home office, sorting through a box of clothes and shoes. The person loses interest, and begins playing with their phone.\",box;chair;clothes;phone;shoes;table,A person sitting on a folding chair rummages through a box in front of them. The individual grabs a few clothing items from the box and places them on a nearby table before grabbing a phone and looking at it.;Person sitting in a chair going through a box of clothes putting some on the table then use the cell phone.,c015 20.20 32.00;c044 0.00 5.40;c001 3.60 10.40;c004 0.00 23.60;c000 0.00 24.60;c059 0.00 32.00;c011 0.00 32.00;c016 22.10 32.00;c002 0.00 19.90;c018 20.60 25.30,31.08\r\n8ZPXA,ENHU,Bedroom,7,1,No,\"A person lies on a pillow on the floor of the living room, reading a book. The person throws the pillow aside and continues reading.\",bag;book;floor;pillow,An individual reads a book while lying down with a pillow for head support. The person then throws the pillow to the side and continues reading.;A person is lying on the floor with their head on a pillow and they are reading a book.,c032 0.00 11.00;c124 0.00 11.00;c078 0.00 8.00;c080 3.40 9.00;c024 4.00 8.60;c025 2.80 7.10;c023 3.10 7.90;c027 0.00 11.00;c026 0.00 11.00;c115 0.00 11.00;c126 3.90 8.50,10.38\r\nCPRBC,4UGC,Stairs,3,7,Yes,A person is watching television while eating and sitting on a towel that on the stairs.,banana;floor;food;sandwich;television,A person sitting at the bottom of the stair lean on the wall eating food and watching Television;A person is sitting on some steps eating a banana while watching a cartoon.,c132 6.30 31.00;c156 6.30 31.00;c065 5.40 31.00;c125 5.10 31.00;c061 5.10 31.00,30.04\r\nQ7TXX,M7K8,Stairs,6,6,Yes,\"A person is laughing as the walk up the stairs holding a glass cup, they then stand next to a chair at the top.\",chair;cup;dish;doorway;glass,\"A person holding a cup walks up some stairs while smiling.;A person holding a cup goes down the stairs, then up the stairs again.  The person stands smiling while holding the cup. The person leans on a chair.;A person walks up the stairs holding a glass, then smiles at the camera while she's holding the glass\",c107 0.00 32.00;c149 1.00 8.00;c152 5.00 32.00;c118 0.00 32.00;c097 0.00 3.40,30.71\r\nQASDI,M7K8,Living room,7,7,Yes,A person is holding the camera and grasping the laptop.,camera;laptop;phone,The person walks up to a laptop and picks it up. They are standing with the laptop and another object in the other hand. The person walks away with the object and laptop.;The person walked over to a stand and picked up a laptop while holding a cell phone and stood in the living room and looked around and then walk away.,c047 1.40 27.60;c015 0.00 27.40;c050 0.00 6.00;c051 2.60 27.30;c087 18.00 27.00,30.79\r\nLGJAR,P2J3,Bedroom,5,7,Yes,The person is lying on the bed and then awakening when the other person turns on a light in the bedroom.,bed;blanket;doorway;light,A person sits up in bed in a room. Another person walks in and turns on the light.;A person who is lying in bed under the covers sits up and another person enters the room and turns on the light.,c134 0.00 10.30;c133 2.60 12.40;c104 17.60 25.20;c146 2.60 12.00;c072 0.40 26.60;c135 4.50 33.00;c097 11.20 18.50;c103 17.40 33.00,32.25\r\nTK1VC,CP6Y,Living room,7,7,Yes,\"A person is standing in their living room and starts sneezing. They walk over to a cabinet, and take a book from it. They walk over to the couch with the book and start reading it.\",book;broom;cabinet;phone;sofa,\"a person sneezes and then grabs a broom and a phone;A person stands in a room and sneezes.  This person then picks up a broom and a book and then sits on the couch.;A person standing in a living room area begins sneezing, and then the person takes a broom and a book and sits down on the couch.\",c026 10.60 21.00;c030 10.80 18.40;c153 0.00 9.40;c151 15.10 21.00;c027 17.60 21.00;c123 17.10 21.00;c098 9.00 21.00;c102 10.50 15.00;c099 16.50 21.00;c117 11.90 17.10;c115 11.70 17.40;c100 10.90 16.00,20.21\r\n00607,CP6Y,Dining room,5,6,Yes,A person is working on cleaning up their dining room. They tightly grasp a broom and gather dust up from some crevices. They tidy up the batches in a dust pan and toss it all into a large bag.,broom;bucket;doorway;dust pan;duster;floor;shelf;shelves;table;trashcan,\"A person dusts off some shelves furniture, then sweeps under a doorway.;A person is tidying up the living room;A person was dusting furniture with a cloth. The person then picked up a broom and began to sweep the floor. The person then put the broom on the floor and picked up a trash bin.\",c098 9.50 31.40;c099 25.90 31.70;c100 9.50 15.10;c102 11.10 31.10;c012 0.00 9.20;c154 4.40 9.20;c127 10.00 29.10;c097 15.20 19.40,32.79\r\nAMT7R,SW82,Bedroom,7,6,Yes,\"A person is putting a picture onto the wall. Then, laughing and grasping the corner, the person turns and tells a person where to put the groceries.\",bed;doorway;picture;wall,\"A girl walks into a bedroom and hangs a photograph on the wall.;A person walks into a room, grabs a picture frame off of a bed, and hands it on the wall in a proud manner.;A person takes a picture frame and hangs it on the wall near some similarly shaped ones. The person holds it there and talks to the camera.\",c084 1.80 8.50;c086 4.30 12.50;c152 16.40 31.00;c097 0.00 31.00;c083 0.00 4.90;c085 18.20 23.10;c088 0.60 5.20,30.08\r\nA59CN,ARRB,Hallway,7,7,Yes,A person in the hallway is laughing at something they saw on their p hone. They begin putting a towel down next to the door and turn on the light.,blanket;door;floor;hallway;light;phone;something;towel,\"A person is walking holding a towel the sneezes and turns the light on.;She is walking on walkway, while holding her phone and blanket, and she is singing, then turned on a light.;The person is walking down the walkway playing in the phone as the person turns off the light and then turns it back on.\",c104 18.60 25.00;c153 14.30 19.80;c016 0.00 25.00;c034 13.50 22.30;c019 0.00 25.00;c074 13.60 22.30;c126 13.50 18.20;c097 5.10 10.80;c033 0.00 17.80;c070 0.00 17.50;c015 0.00 25.00;c036 13.20 18.10;c149 13.00 24.40,24.21\r\nKTDG0,ENHU,Laundry room,6,7,Yes,Person gets vacuum bag out of closet then is closing door to closet and starts tidying up room.,closet/cabinet;door;floor;vacuum,\"A person picks up a red portable vacuum from a counter, walks into a room, closed the door and then begins vacuuming the floor.;A person sets something on the ground before closing the door.\",c137 0.00 7.80;c138 0.00 5.40;c137 10.80 15.00;c006 4.00 12.30;c127 9.70 15.00;c097 1.70 8.30;c112 5.70 11.10,13.96\r\nBQ963,ZDKC,Bedroom,5,7,Yes,A person sits on a bed holding some dishes. They start playing with their phone.,bed;dish;phone,A person is sitting down holding plates and plays on their phone;Person sitting on a bed with dishes in the hand using a cell phone that came from a pocket.,c016 12.90 31.00;c118 0.00 31.00;c135 0.00 31.00;c015 12.30 31.00,30.46\r\nE89S9,CP6Y,Kitchen,7,7,Yes,A person is sitting on a chair.  A person is fixing a picture on the wall.,chair;paper/notebook;picture;shelf;table;wall,\"This person got up out of their chair and replaced the calendar on the wall.;The person sits in a chair, gets up and takes something off the wall. The person replaces it with a picture.\",c059 0.00 8.90;c154 4.60 10.40;c086 14.30 22.00;c009 10.60 17.20;c115 9.40 15.50;c084 4.30 11.70;c083 1.00 8.60;c117 3.40 9.70;c084 18.70 22.00;c083 18.70 22.00;c081 18.40 22.00;c116 9.70 16.80,20.58\r\nUVLL9,CP6Y,Living room,7,5,Yes,A person is watching another person who has sandwich and fixing a doorknob.,bed;door;floor;habdle;person;sandwich;sofa/couch;tools,a person with long pointy things messing with a door handle;A person kneels while eating and trying to clean a door handle as another person sits in the background watching.;A person is fixing the hinges of a door while someone else watches the process.,c140 0.00 22.00;c141 0.00 22.00;c007 0.00 22.00;c125 0.00 22.00;c123 0.00 22.00;c065 0.00 3.30;c135 0.00 22.00;c067 0.00 6.00,20.54\r\nXT9D4,CP6Y,Kitchen,6,7,Yes,A person is putting away groceries in the fridge. Their phone rings so they close the fridge door.,bag;cup/glass/bottle;door;food;groceries;phone;refrigerator,A person took several items out of a refrigerator and put them on a counter top. The person then closed the refrigerator door.;A person is putting food into the refrigerator and tidying it up. The person grabs a phone off of a counter and plays with it.,c015 27.60 34.00;c018 27.00 32.80;c020 0.00 3.80;c130 0.00 3.80;c008 0.00 32.00;c130 4.00 12.00;c062 0.00 25.90;c110 10.10 16.10;c063 0.00 31.30;c062 18.30 25.30;c006 25.50 30.60;c142 25.00 30.60;c110 0.00 5.20;c016 28.10 34.00;c143 0.00 30.60;c109 4.40 11.40,33.42\r\nMVPPS,BPXZ,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is laughing as they pour a cup of coffee from a thermos. The person picks up a piece of food from the table, and walks away.\",coffee;cup;doorway;food;glass;table,A person pours a drink into a cup. The person then drops some food into their hand and walks towards a window.;A person walking in a hallway pause and pour themselves coffee. They then take candy from a bag on a table and proceed into the kitchen.,c108 0.00 5.80;c009 3.80 10.00;c149 0.00 15.10;c097 0.00 3.40;c156 8.40 19.80;c062 14.60 19.90;c063 4.90 19.90;c061 6.40 19.90;c152 0.00 14.90;c109 4.20 9.80;c107 0.00 11.60,19.83\r\nX2JBJ,BONA,Living room,5,7,Yes,A person is standing by the cabinet and smiling at the book.,book;cabinet,\"A person is standing reading from a book open in the person's hands.;A person reads a book while standing up, and smiles while doing so. The person continues to flip the pages.\",c032 0.00 32.00;c152 6.00 18.00;c149 7.20 23.90;c029 10.50 32.00;c026 0.00 32.00,30.75\r\nZC59Y,BONA,Stairs,4,6,Yes,A person is opening a book while walking.  They pick up some dishes.,book;dish;floor;stairs,\"A person is walking down the stairs reading a book, they get to the bottom and sit down and pick up a plate with a sandwich on it.;The person is walking down the stairs while reading a book then sitting on the stairs.\",c032 3.40 35.00;c151 25.20 32.00;c120 30.50 35.00;c118 30.00 35.00;c027 2.80 10.20;c026 0.00 35.00;c125 26.40 35.00,34.00\r\nA1IUE,AT5D,Dining room,6,5,No,\"Person A is standing in the dining room doorway holding a tray of food, laughing.  Person B is throwing a towel in the air after clearing the table.\",chair;doorway;food;groceries;table;towel,\"Two people wearing checkered shirts stand in a kitchen, one dusts the table and throws the rag in the air as the other watches.;While one person stands in a doorway, another person walks over to a table carrying a towel. The second person proceeds to dust off the table with the towel and then tosses the towel into the air and catches it. The second person then sits down.\",c033 0.00 19.50;c038 7.40 17.70;c013 7.40 17.70;c151 17.40 32.00;c036 15.20 21.10;c061 0.00 32.00;c152 21.20 27.40;c035 0.00 23.40;c037 4.80 22.90;c012 0.00 17.50;c152 26.30 32.00;c130 2.90 10.60;c059 18.50 32.00;c011 18.80 32.00;c149 22.00 28.20,30.75\r\nEG0VZ,JTAS,Bedroom,6,6,Yes,\"A person awakens in their bedroom. They smile, grab a book and a broom and leave.\",bed;blanket;book;broom;covers;doorway;sofa/couch,\"A person sleeping on the couch, wakes up, yawns and stretches before grabbing a broom.;A person wrapped up in blankets gets up and stretches, and takes a book and broom and walks out of the room.\",c100 18.90 26.20;c030 16.30 22.70;c152 13.20 18.70;c098 19.80 27.10;c026 17.70 26.60;c146 4.90 18.40;c154 18.70 26.20;c097 22.80 27.50;c133 7.20 18.40;c135 12.50 21.70;c134 0.00 24.50;c122 0.00 11.60;c072 0.00 13.30;c117 17.00 22.20,26.83\r\n8T0DD,ENHU,Recreation room / Man cave,4,6,Yes,A person is smiling while undressing in front of a laptop that is placed on a bed.,bed;clothes;laptop,\"A person is typing on a laptop, placed on a bed. The person then removes their jacket and tosses it in the direction of the bed.;A person looks at a laptop computer that's on a bed. The person removes his jacket and tosses it onto the bed.;A person is standing. A person is undressing. A person is doing all of this while looking at their laptop.\",c052 0.00 3.80;c155 0.00 8.00;c003 5.40 8.00,7.29\r\n52KNA,LB3Q,Bathroom,4,6,Yes,\"A person walks into their bathroom holding a towel. The person cleans the glass on the mirror on the medicine cabinet. The person puts the towel down, and begins tidying up their bathroom.\",cabinet;doorway;glass;medicine;mirror;shelf;towel,\"A person was walking while carrying a blanket. The person then walked up to a mirror and began to clean it with the blanket. After cleaning the mirror, the person set the blanket on a nearby counter and began cleaning the counter top.;A man entered in bathroom, cleaned a mirror of little cuby and he moved some more stuff and put back to right place.\",c038 8.00 16.50;c095 8.00 17.00;c113 4.90 10.80;c037 12.70 20.70;c114 4.60 17.70;c097 0.00 5.30;c033 0.00 21.00;c152 6.60 17.40;c034 15.80 20.70;c036 15.80 20.70;c082 19.80 35.00;c096 3.90 18.10,34.46\r\nBM9NZ,P2J3,Bedroom,5,7,Yes,A person is snuggling with their pillow in bed. They get up and walk over to their wardrobe where they're is a plate of leftover food. They start eating.,bed;dish;food;pillow;sofa/couch;wardrobe,\"A man sits on the floor, holding and rocking with a pillow. Eventually, the man stands up.;A person is sitting and snuggling with a pillow. The person stands up and walks over to pick up some food. The person eats food.\",c063 19.70 25.20;c078 0.00 15.00;c156 24.10 30.80;c154 12.70 19.60;c122 0.00 18.10;c080 11.90 16.60;c077 11.60 16.40;c118 20.90 35.00;c061 24.10 29.10;c120 20.00 24.20;c076 0.00 17.80,33.67\r\nMZ3I3,P2J3,Hallway,7,7,Yes,A person is in the hallway undressing and talking on their phone. They grab a cup off the table and take a drink before leaving.,clothes;cup;glass;phone;table,\"A person unbuttons a jacket, grabs a phone off a table, starts talking on the phone, and then drinks out of a cup.;A person is standing in the entryway of a house and begins to undress, taking off an outer shirt, and then talks on a cell phone, and then takes a drink from a cup.\",c106 33.10 44.00;c019 17.80 31.20;c009 8.90 14.10;c155 0.00 12.90;c015 10.60 33.90;c001 8.60 13.70;c018 9.70 17.50;c016 11.80 32.90;c017 29.50 34.80;c107 32.50 44.00;c000 6.70 13.10;c110 31.20 36.90,42.50\r\nO6DJW,ENHU,Bathroom,5,7,Yes,Person fixes the laces on their shoes. They smile as they tidy up the food.,cabinet;clothes;dish;food;sandwich;shoe;toilet,\"A person is sitting on a toilet tying their shoe. The person grabs a plate from the cabinet and holds a sandwich on it.;A person is sitting on the toilet in the bathroom tying their shoes, then they pick up a plate with a sandwich.;A person ties their shoe while sitting on the toilet then picks up a plate of food.\",c061 5.00 10.90;c063 4.40 10.10;c152 7.80 13.00;c156 6.60 12.10;c120 4.40 10.20;c065 4.50 11.40;c067 6.70 12.10;c148 0.00 8.00;c118 5.80 13.00;c068 8.70 13.00;c069 8.60 13.00;c062 4.40 10.90;c149 7.50 13.00;c055 0.00 9.60,12.17\r\nUL5X4,BONA,Bedroom,4,6,Yes,\"A person opens up their sandwich, removes a piece of tomato, and throws it in the garbage. The person then takes a drink from a cup of coffee.\",bed;coffee;cup;dish;food;glass;paper/notebook;sandwich,He is standing up and looking at stuff and throwing in garbage and sat on bed and drank from cup.;Person sitting on bed stands up and looks at object before tossing it into a trash can. Person then sits down and takes a drink from a coffee mug.,c106 18.40 32.00;c067 0.00 19.90;c151 15.20 20.30;c154 2.50 7.60;c063 0.00 18.10;c109 17.30 32.00;c068 14.10 21.00;c118 17.90 32.00;c069 0.00 4.00;c064 11.90 17.80;c135 0.00 7.00;c061 4.60 15.80;c110 16.80 22.70;c116 0.00 20.20;c107 18.40 32.00,31.29\r\nK4Q7F,CP6Y,Hallway,7,7,Yes,A person leaves a bedroom carrying a book.  They stop at a picture in the hallway and smile.,book;doorway;picture,\"A person is walking out of a bedroom carrying a book, they turn and talk to someone out of the room and walk away.;A person holding a book walks out of the room and looks at a picture on the door.\",c026 0.00 17.00;c088 5.10 17.00;c152 5.10 17.00;c097 3.70 17.00;c032 0.00 9.40;c149 8.00 14.30,15.62\r\nME4YL,ENHU,Kitchen,6,1,No,A person in their kitchen is walking around and then they pick up both a towel and a blanket. They are tidying up their room. They open up their laptop and then put a book on top of the laptop.,blanket;book;clothes;counter;laptop;microwave;table;towel,\"A person is walking in a kitchen and tidying up,the person moves blanket and towel to the table then grabs a book and opens up s laptop.;A person is walking around and picking up loose items that are laying around the kitchen. They open a laptop and bring over a book over close to the computer.;A person walks into a kitchen and removes two items from the kitchen counter. The person then places those items elsewhere. The person then picks up a book and walks back to the kitchen counter.\",c071 4.60 11.20;c026 15.60 25.00;c030 15.20 20.60;c034 4.60 11.20;c073 2.20 8.20;c027 17.80 23.00;c032 17.20 23.50;c035 0.30 5.70;c074 5.50 11.10;c028 18.90 24.80;c033 3.80 10.20;c036 5.50 11.10;c009 4.80 10.50;c075 2.70 11.20;c048 10.50 17.00;c004 0.30 10.90;c000 0.00 9.20;c002 0.00 9.90;c001 4.30 13.90,23.75\r\nSM41Q,CP6Y,Living room,6,4,Yes,\"A person is sitting in their dining room. The person stands, grabs a laptop from a shelf, and leaves.\",chair;laptop;shelf;table,\"The person got up from the chair, took something from the top of the dresser, then walked out of sight while tucking something under the arm.;A person is sitting at a table reading something. the person gets up and grabs something off a box. the person walks away.;A person stands up after reading some paper, and takes a laptop and walks out of frame.\",c047 3.90 20.00;c050 3.70 13.00;c011 0.00 6.40;c010 0.00 6.30;c154 0.30 5.10;c059 0.00 5.10;c014 0.00 5.00,19.00\r\n2OJY8,ZDKC,Bedroom,3,5,Yes,A person is in a bedroom dressing. They sit down and open a box of dishes.,bed;box;chair;clothes;dish;jacket,\"The person is standing up and puts on a jacket,after the person grabs a box then sits and begins to put dishes in a box.;A person gets dressed in the bedroom then grabs a box and starts emptying it;A man wearing a black shirt walks toward a couch and grabs a sweatshirt. The individual then grabs a product box from the floor and sits down with it.\",c040 17.70 32.00;c151 22.10 29.20;c120 23.50 30.30;c119 23.90 30.10;c002 0.00 6.00;c148 3.00 15.70;c001 2.50 20.00;c043 18.00 24.40;c059 21.10 32.00;c041 23.10 28.70;c044 23.50 32.00;c000 0.80 11.60,30.88\r\nFFYL6,ENHU,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person puts a broom into the closet, and takes out a box. They pretend to start sneezing afterward, and then look at the camera, smiling.\",box;broom;closet,\"A person puts a broom away in a closet and takes a box out of the same  closet and sneezes.;A person puts a broom inside a closet. The person takes a box out, sneezes, and then smiles at the camera.\",c099 0.00 6.30;c040 5.40 15.00;c043 5.20 10.90;c153 9.90 15.00;c152 0.00 4.50;c098 0.00 6.20,13.71\r\nGGN5G,JTAS,Pantry,6,7,Yes,A person is standing in front of the cabinet and opening a box of food in the pantry.,box;cabinet;door;food;shelf,\"A person opens up the cabinet and looks for something, pulls out a box and sets it down.;A person looks in the cupboard for something.  The person finds a kind of food and looks at it.\",c043 10.60 30.20;c113 0.00 9.00;c082 8.70 17.10;c008 0.00 9.60;c063 11.90 22.40;c061 21.00 30.20;c040 12.40 31.00;c112 27.80 31.00,30.25\r\nXU2N8,AT5D,Home Office / Study (A room in a house used for work),4,6,Yes,One person snuggles up with a book while another opens a laptop and starts watching videos.,bed;book;chair;laptop;table;video,\"A person is playing on the computer while the other person is working on homework;A person sits on the bed reading a book, while another looks at a laptop screen in a chair next to them.\",c051 0.00 33.00;c052 0.00 33.00;c026 0.00 33.00;c032 0.00 33.00;c011 0.00 33.00;c059 0.00 33.00;c145 0.00 33.00;c135 0.00 33.00;c115 0.00 33.00;c014 0.00 33.00,31.54\r\nLSMNX,0Z4M,Other,5,4,Yes,A person is taking a chair and placing it by the door and  dresses self quickly.,chair;clothes;dish,\"A person grabs a dish and puts it in a chair, they then begin to tidy up their clothes.;A person picks up a pot and moves it away. The person adjusts their shirt and buttons it up.;A person lifts up an object and moves it before buttoning up their shirt.\",c148 5.10 13.60;c118 1.50 16.80;c119 10.40 17.80;c120 1.70 8.70;c004 15.50 35.00;c154 1.90 9.40,33.58\r\n3Q92U,EDYS,Bedroom,5,6,Yes,\"A person is in a recreational room sneezing into a pillow, they then walk towards the television and turn it off.\",doorway;pillow,\"A person picks up a pillow and starts snuggling with it. The person then drops the pillow and walks away. The person walks back into view, comes over, and grabs the camera.;A person takes a pillow and holds it up to his nose, walking away, and then back towards the camera.\",c076 1.50 11.30;c078 2.70 10.40;c153 2.50 11.30;c097 9.70 20.50;c077 6.40 11.50;c079 1.00 5.80,30.08\r\nA7KHN,GFWE,Living room,5,4,Yes,A person holds their phone while drinking a cup of coffee. The person sets their phone down on a desk.,coffee;cup;dish;glass;phone;table,\"A person walks over to a living room end table, leans over, and begins to drink out of a coffee cup, while holding a cell phone.;A person is drinking out of a mug while changing channels on television in the living room.\",c015 0.00 19.00;c106 0.00 18.00;c107 0.00 19.00;c118 0.90 19.00;c009 14.00 19.00;c017 13.80 19.00,18.42\r\nUR55B,CP6Y,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is sitting at a desk, working through an important work product. Another person walks in, holding a bag of groceries.\",bag;chair;desk;door;homework;paper;table,\"A person is sitting at a desk doing paperwork. Another person holding a bag walks into the room from outside and walks across the room.;A person flips through various pages of a binder, another individual then walks through the door of the room and passes by.;A person at a desk is flipping through pages of a book before someone walks in and then out of frame.\",c020 18.80 33.80;c014 0.00 35.00;c008 14.40 26.20;c059 0.00 35.00;c011 0.00 35.00;c141 24.70 29.70;c006 22.00 30.10;c145 0.00 35.00;c097 31.80 35.00;c115 31.80 35.00,33.75\r\n8N4O9,CO87,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person walks into the closet, turning on the light. The person opens the cabinet door, removes a towel, and then closes the door.\",blanket;closet/cabinet;clothes;door;light;shelf;towel,\"A person walks to a closet, opens the door, turns on the light, grasps a towel from a shelf, turns off the light, then leaves.;A person turns on a light and opens a door. The person walks inside and takes some towels out and turns the light off.;Person goes into the closet, turns on the light, grabs a towel, turns off the light and leaves the closet with the door still open.\",c033 13.70 23.00;c035 11.30 17.70;c008 1.40 7.40;c105 19.50 23.00;c104 6.30 10.80;c113 1.80 7.30;c141 1.40 6.60;c002 10.50 19.00;c112 1.00 7.30;c070 13.60 23.00;c097 3.20 9.40;c073 11.40 17.70,22.42\r\n72LJ3,ZDKC,Bedroom,6,7,Yes,\"A person is sitting on the bed with a blanket on their lap, holding a book and reading it.  The person laughs at their book and puts it down, then takes off their shoes and leaves.\",bed;blanket;book,A person reads a book while sitting on a bed. The person moves around and throws the book on the bed. The person then gets up.;The person is sitting on a bed under a blanket while reading a book and laughing and then the person throws the book and the blanket and then stands up and walks away.,c072 0.00 20.70;c135 0.00 24.10;c032 0.00 19.20;c154 19.40 24.90;c149 7.20 13.60;c152 0.00 26.00;c029 0.00 18.70;c028 14.90 19.70;c026 0.00 19.60;c025 14.60 18.90;c031 15.10 22.60;c115 0.00 19.00,24.83\r\n12XD3,GE1M,Bathroom,4,6,Yes,A person is eating while holding a picture and watching something out the window.,dish;food;picture;plate;sandwich;window,\"A person stands holding a plate with a sandwich on it and a picture. The person begins eating the sandwich, looks at the picture,  and then looks outy the window.;A person is holding a plate with a sandwich on it. The person then picks up the sandwich and takes a bite of it. The person then puts the sandwich back on the plate. The person then picks up the sandwich again and takes another bite. The person then puts the sandwich back on the plate.;A person is standing in the bathroom, holding a dish, and eating some food. The person is look at a picture and staring at themselves in a mirror.\",c084 0.00 21.00;c092 4.10 11.90;c156 0.00 4.00;c065 0.00 4.00;c088 1.40 7.90;c118 0.00 21.00;c061 0.00 4.80;c067 0.00 4.80,19.79\r\nJC3TE,P2J3,Stairs,6,7,Yes,A person is fixing a vacuum while another person is leaving a pile of clothes on the floor.,blanket;clothes;floor;vacuum,\"A person seated on a staircase moves to the side in order to let a passerby travel down the staircase.;A person carrying some blankets walks down steps where another person is sitting and sweeping, and the person puts the blankets on the ground.\",c125 1.30 16.10;c137 2.70 9.70;c000 0.00 31.00;c126 29.40 40.00;c074 31.20 36.30;c070 0.00 35.40;c003 31.00 35.00,39.21\r\nIALUY,AT5D,Bathroom,5,6,Yes,A person is sneezing while holding a towel.  Then a person is watching themself in a mirror.,hair;mirror;towel,\"A person is in a bathroom, sneezes, grabs a towel to wipe their face, then looks in the mirror;A person is standing in the doorway of a bathroom and he sneezes, and he then takes a towel from a rack and looks in the bathroom mirror.\",c033 9.50 20.40;c035 8.60 15.10;c038 10.90 19.70;c094 15.50 29.80;c096 15.00 31.00;c153 5.60 13.20;c144 17.80 25.50,29.71\r\nSANRG,ZDKC,Living room,6,7,Yes,\"A person is sitting in the living room folding a towel.  The person stands up and throws the towel onto the floor, then grabs some food from a mini refrigerator and smiles.\",blanket;cup/glass/bottle;floor;food;refrigerator;sofa;towel,A person is sitting on a couch and folds up a blanket.  This person gets up and gets something out of the fridge.;The person is sitting on a couch then grabs a towel off the other couch seat and folds it up.  The person then throws the folded towel on the ground and gets up and walks to the fridge.  The person then opens the fridge and takes something out.,c034 9.40 20.10;c063 20.70 33.00;c154 14.80 21.70;c126 13.30 21.20;c061 24.40 33.00;c143 20.90 28.20;c152 26.80 33.00;c123 0.00 20.50;c071 14.50 19.10;c073 0.00 3.60;c037 0.00 18.10;c110 26.50 31.30;c033 0.00 19.90;c107 25.70 33.00;c074 13.70 19.10;c075 2.00 18.60;c070 0.00 18.30;c036 13.70 18.80,31.79\r\nMWX5K,ENHU,Bedroom,6,7,Yes,A person is fixing a squeaky table leg then they beign to dress themselves in front of a mirror.,clothes;floor;mirror;screwdriver;shirt;table;walk,\"A person is kneeling on the floor fixing a table with a screwdriver. They walk away and grab a shirt to put on in the mirror.;A person takes a screwdriver to a table stand, the person then stands up and puts a jacket on.;A person is kneeling on the floor with out a shirt on trying to fix a table they stand up and pick up their shirt and put it on in front of a mirror.\",c096 9.90 19.00;c148 9.00 19.00;c000 9.00 14.00;c002 6.00 13.00;c001 8.40 17.20;c125 0.00 9.30;c154 4.30 9.50,17.79\r\nQYM5H,BONA,Living room,3,6,Yes,\"A person is throwing a towel on the ground in the hallway. They pick up a camera and start laughing at what they just did, and then take a picture of the towel.\",blanket;camera;clothes;floor;phone;picture;towel,A person throws a towel on the floor. The person stands up and walks back and forth with a camera in their hand;A person throws a blanket across the room and then marches in place as they look at a cellphone.,c087 16.50 31.00;c015 2.10 31.00;c034 0.00 3.50;c149 6.60 23.00;c074 0.00 5.20;c016 2.50 19.90;c126 0.00 5.20;c152 6.00 15.50;c036 0.00 5.20;c003 0.00 5.20,30.00\r\nR55C1,4UGC,Kitchen,7,7,Yes,A person sitting in a chair begins to sneeze.  They then pick up a camera and a bottle of medicine.,camera;chair;cup/glass/bottle;medicine;phone;prescription bottle;table,\"A person sat at a table, sneezed twice, then picked up a mug, examined it, and picked up a pill bottle and examined it.;A person who is sitting on dining chair picks up a black camera and studies it.\",c016 15.40 25.40;c017 19.80 25.40;c011 0.00 31.00;c128 21.70 26.40;c059 0.00 31.00;c015 13.60 25.40;c153 2.00 14.50;c018 12.50 20.60;c107 21.50 31.00;c009 19.20 25.10;c010 0.00 31.00,30.50\r\n5TKIB,CP6Y,Stairs,5,7,Yes,A person is tidying up clothes strewn on the stairs and then playing with toys in a bag on the stairs.,bag;blanket;clothes;floor;towel,There is a person standing on stairs folding a blanket.  That person then folds up a shirt and puts it in a bag.;A person folds a towel up and puts it on the stairs. The person takes another towel and folds that. A person pulls an item out of a bag;A person is standing on some stairs folding a blanket. The person folds another blanket then the person sits by a bag. The person opens the bag and takes some items out of it.,c075 0.00 21.20;c034 6.00 11.20;c127 6.50 21.30;c037 0.00 10.50;c071 6.00 11.40;c151 17.60 22.90;c021 18.20 23.70;c070 0.00 20.80,28.38\r\nAL1WC,LXD5,Kitchen,5,7,Yes,A person laughs as they cook food on the stove. The person takes some sauce from the cabinet and pours it on top of the food.,cup/glass/bottle;door;food;refrigerator;stove,There is a person in the kitchen. That same person gets something out of the refrigerator and pours in a pan that is cooking on the stove.;A person closes the fridge before pouring something on what they are making on the stove. They then close the lid.;The person closes the door and pours something onto the food in the pan on the stove top and replaces the lid.,c147 1.30 19.90;c142 0.00 4.90;c062 4.30 20.40;c143 0.00 31.00;c006 0.00 3.80;c152 16.80 23.80;c107 16.70 24.70;c110 16.40 22.20;c109 16.10 20.80,30.04\r\n13IS9,JTAS,Bedroom,6,6,Yes,\"A person is sitting and putting their shoes on. Then the person picks up their laptop and leaves, closing the door behind him.\",clothes;door;laptop;shoe;sofa/couch,\"A person puts some shoes on while sitting down. The person stands up and picks up a laptop while walking away.;A person is sitting down putting on their shoes, they stand up and pick up a laptop before they leave the room.\",c046 18.00 23.50;c055 3.00 14.20;c154 12.20 22.20;c148 0.00 15.10;c151 12.80 19.20;c050 17.00 23.30;c047 16.30 24.20;c123 0.00 18.70;c056 0.00 14.20;c097 18.70 28.00,27.04\r\nFQOGZ,BPXZ,Kitchen,7,7,Yes,\"A smiling person brings a bag of food to the dinning table.  The person begins sneezing after putting the food on the table.  The person then walks to the cabinet, gets some medicine and takes it.\",bag;bowl;cabinet;cat;cup;dish;food;medicine;table;water,\"A person is feeding their cat and then drinking some water in the kitchen.;A person puts food into a bowl for a cat.  This person starts to sneeze, and then takes something with a glass of water.;A person pours some food into a bowl on the table as they sneeze. Next the person walks to a cabinet and opens it to get medicine out. The person takes the medicine with a drink of water from a cup.\",c062 17.50 23.70;c129 25.00 33.80;c009 6.10 11.00;c106 24.20 32.80;c110 23.60 29.50;c119 23.10 30.70;c061 1.70 10.30;c022 5.80 11.10;c020 0.00 6.70;c128 14.10 24.50;c118 0.00 4.80;c120 20.50 26.80;c113 15.10 21.10;c107 24.10 34.00;c153 10.10 17.10,32.54\r\nB47TS,CP6Y,Dining room,6,7,Yes,\"A person is putting some medicine on their skin. They wipe their hands on a towel, and tidy the area around them.\",chair;hand;medicine;table;towel,\"A person is sitting at a table, they rub something on their hands and arms and than stand up and move an object to another part of the table.;A person is sitting on a table putting lotion on their hands and arms.  A person then gets up and cleans up the table.\",c154 12.40 17.90;c009 13.30 22.20;c139 0.00 15.90;c011 0.00 17.00;c014 0.00 17.00;c012 16.70 23.00;c059 0.00 17.20,21.79\r\nWC5QK,M7K8,Bedroom,7,7,Yes,A person in their bedroom begin undressing by removing a jacket and then putting a towel around them. They start sitting down on a chair that is next to a desk.,blanket;chair;clothes;gum;towel,\"A person is in a bedroom they take off their jaket and grab a blanket , they wrap the blanket around them and then they sit in a chair.;Person took off brown jacket, draped towels over shoulders, sat on chair, crossed legs and swiveled around a bit, before reaching forward and stopping video.\",c001 3.60 9.60;c059 17.20 31.00;c155 0.00 7.50;c151 15.80 21.20;c073 5.30 31.00;c034 5.20 31.00;c035 5.30 31.00;c033 7.00 18.40;c071 6.80 16.90;c070 9.60 31.00,30.38\r\nY2EID,CP6Y,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,One person with hair in a towel runs in and sneezes in the direction of a mirror.,door;hair;towel,\"A person comes in from outside with a towel on their head. The person sneezes into the towel a few times.;A person opens a door and closes the door leading back outside, running in with a towel on their head and then sneezing into it.\",c033 4.60 23.00;c144 16.80 23.00;c153 14.00 19.80;c141 3.40 10.70;c006 4.80 10.50;c097 3.90 9.90;c008 3.60 9.10,21.92\r\nV6H2O,I48P,Garage,5,5,Yes,A smiling person runs into their garage holding a phone and a glass of milk.,cup;dish;door;glass;phone,\"Person open the door and walks in with a glass and phone in hand then proceed to leave out the room.;A person walks through the door into a garage while they are drinking something they look at their phone take another drink and then they walk out.;A person enters a garage from a door connecting to a house, drinks from a glass, stands and looks at his phone, then drinks again, and turns around an goes back into the house.\",c106 8.10 14.50;c107 0.00 36.50;c006 0.00 5.90;c008 0.00 3.50;c016 10.70 29.10;c141 0.00 7.30;c150 3.50 10.50;c097 0.00 5.90;c118 0.00 38.00;c015 0.00 38.00,36.83\r\n6U47G,EDYS,Home Office / Study (A room in a house used for work),5,6,Yes,The guest. A blanket-covered sofa has become a bed in the study. A person is holding a banana and eating while undressing.,chair;food;phone/camera;sofa;television,\"The person sat on sofa then lay down get up walked away picked up food sat  back down on the sofa.;A man sits down on a couch, then leans sideways to lay down for a moment before rising up off the couch and walking out of the room.;A person sits down, get up, sits down again, takes a bite of food, then gets up again.\",c122 6.10 19.70;c123 5.30 15.50;c156 22.80 29.90;c154 26.60 33.20;c061 24.30 32.30;c017 0.00 5.50;c018 31.30 36.00;c132 6.80 16.00;c059 6.80 20.00;c151 6.00 12.10,34.62\r\nOUPCK,CP6Y,Bedroom,6,6,Yes,A person enters the doorway to their bedroom.  They are seen eating a paper towel and undressing.,clothes;doorway;food;jacket;paper/notebook;papers;picture;towel,A person walking into a room putting some papers in his mouth and taking off a shirt;A person walks through a doorway with something in their mouth. The person takes off their sweatshirt;Person walks through door with paper in their mouth. Person then proceeds to grab paper from mouth and take jacket off.,c033 0.00 22.00;c097 0.00 8.00;c155 11.00 21.00;c155 6.00 12.00;c115 0.70 22.00;c156 0.60 22.00;c000 16.50 22.00;c084 5.00 18.60;c002 3.20 21.00,20.50\r\n2U3X0,WK8I,Bathroom,7,7,Yes,A person turned the doorknob on the bathroom door and stepped inside. The person pulled a table in to the room. The person poured a bowl of cereal on the table and began eating while sitting on the toilet.,bowl;box;cereal;chair;dish;door;food;light;table,A person opened a door while holding a bowl and turned on a light. The person then walked out of the door and drug in a small table into the room. The person then sat down at the able while holding a bowl. The person then grabbed a box from a nearby counter. The person then poured something from the box into the bowl. The person then ate from the bowl.;A man is holding some food. He walks into the bathroom and brings a seat with him. He sits down and pours his cereal in the bathroom.,c009 13.30 26.20;c008 0.00 5.90;c141 0.00 5.20;c156 24.90 30.00;c151 10.20 16.10;c044 14.50 26.00;c119 0.00 17.30;c039 21.10 25.70;c040 0.00 3.60;c097 0.20 5.50;c043 13.60 18.70;c118 0.00 17.60;c061 0.00 6.70;c062 2.20 7.00;c063 16.90 25.00;c104 2.80 7.00;c042 14.20 26.00;c041 14.50 19.90;c059 12.30 30.00;c119 12.30 18.20;c011 11.50 30.00;c120 21.30 27.00,29.08\r\nKWHPI,BPXZ,Living room,3,5,No,\"A person throws a bag onto a chair. The person closes the open door behind them, and looks out a nearby window.\",bag;blinds;chair;door;sofa/couch;window,\"A person walks in the room, opens the blinds and looks out the window;A person comes inside a door then puts their bag on a couch then goes to a window and opens the blinds and looks through the window.\",c008 0.00 4.50;c092 12.30 25.00;c020 0.00 6.30;c060 11.60 25.00;c141 0.00 4.10;c151 11.00 16.50;c024 1.80 6.00;c123 11.30 25.00;c097 0.00 5.60,23.67\r\nYACA8,CO87,Kitchen,6,6,Yes,A person is tidying up and putting clothes and shoes away for company later.,clothes;floor;shoe,\"A person is folding laundry A person then picks up a pair of shoes off the floor. A person then picks up another pair of shoes off the floor. A person then continues to fold clothes;A person folding two pairs of pants and putting them in a laundry basket, then picking up many pair of shoes and sitting them down together.\",c053 9.60 19.00;c000 0.00 11.20;c001 3.40 11.80;c004 0.00 31.00;c058 9.60 19.90;c054 15.60 26.30;c003 1.00 8.50;c002 2.90 8.40;c056 15.90 23.90;c127 13.80 20.00,29.75\r\nZJ37U,GFWE,Living room,6,1,No,A person walks down the hall eating a sandwhich. The person turns off the light in the hallway and goes to watch some television.,chair;dog;doorway;food;light;remote;sandwich;table;television;tv,\"This person walks into living room holding a sandwich, turns off light, eating sandwich, sits in chair, puts on TV with remote, sits in chair and then gets up.;A person walked into a room while drinking from a juice box, picked up a remote control, turned on a TV, sat in a chair and a dog jumped up on the chair and sat next to the person while the person watched TV for a moment and then the person got up and crossed the room, then reached down to the right side.;A person enters a living room area and turns off a light, and then sits down in a chair and turns on the television and then stands up and turns the television off.\",c059 9.30 30.00;c105 2.50 7.00;c156 0.00 37.00;c154 26.30 31.80;c067 0.00 37.00;c132 9.30 32.30;c151 7.70 13.10;c061 0.00 37.00;c009 28.70 33.20;c065 0.00 12.20;c097 0.00 4.50,35.83\r\nF7TG5,CO87,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is laughing and undressing. Throwing a blanket onto the vacuum, the person sits on the sofa.\",blanket;clothes;desk;hair;sofa;vacuum,\"A smiling person begins undressing.  They throw their clothes on to a nearby desk, and then pick up a blanket from their sofa. They throw the blanket on top of a vacuum cleaner.;A person undressed, then moves a blanket out of the way and sits in a chair;The person removes a jacket, picks a blanket up off a chair, puts it on a vacuum cleaner, then sits down on a chair.\",c070 9.30 15.80;c149 0.00 11.30;c152 0.00 12.60;c003 6.90 13.10;c074 10.70 16.50;c155 0.00 10.80;c144 0.00 2.80;c071 10.00 16.10;c151 12.50 18.20;c073 9.40 15.10;c059 13.20 20.80,21.08\r\nVS7VS,B6UG,Living room,6,7,Yes,\"One person grasps a book from a shelf, then throws it to a person on the sofa who smiles back.\",book;closet/cabinet;floor;shelf,\"a person walks over to a shelf, picks up a book, and throws it while gesturing and laughing in a mischievous manner.;The person walks to the magazines, selects one then throws it before appearing to talk to someone off screen.\",c031 17.60 25.50;c152 12.90 24.50;c026 10.60 18.10;c028 12.00 19.10;c149 15.70 23.40;c126 13.50 19.40;c114 1.10 18.70;c117 3.10 17.00;c030 2.50 17.00;c115 2.50 18.10,29.67\r\n7835X,BONA,Home Office / Study (A room in a house used for work),7,7,Yes,A person throws shoes in the corner and tidies up the room with a towel.,clothes;floor;rag;shoe;towel,Person throw shoes into a corner then wipe the floor with a towel then move shoes.;A person is standing in a room and throws a pair of shoes in the corner and then begins to clean the floor with a towel while on all fours on the floor.,c038 4.60 32.00;c053 26.50 32.00;c058 0.00 5.70;c151 2.20 10.00;c003 0.00 5.70;c037 5.10 32.00;c126 0.00 5.70;c127 5.20 32.00;c054 0.00 5.70,30.75\r\nTM0BV,CP6Y,Stairs,6,7,Yes,A person is running down their stairs with a blanket in their left hand. They start taking their shoes off when they reach the bottom of the stairs.,blanket;clothes;shoe,A person carrying a blanket walks down the stairs and takes their shoes off when they reach the bottom.;A person walks down some stairs with a blanket in hand. The person takes their shoes off and puts them next to the stairs.,c070 2.80 8.30;c054 4.40 15.80;c057 4.40 15.10;c056 9.40 16.00;c053 4.60 15.60;c150 0.00 7.40;c155 4.50 13.50,16.17\r\nKGO3W,EDYS,Kitchen,5,6,Yes,A person turns on the light while holding homework in their hand. The person then begins eating and drinking food in the pantry.,book;cup;dish;homework;light;table,A person turns on the light while looking through a notebook. The person takes a drink of water.;There is a person holding some homework and they turn on a light.  That same person then drinks out of a glass.,c104 7.50 14.50;c109 20.90 28.10;c110 14.20 21.70;c120 15.70 24.10;c026 0.00 28.60;c107 16.30 20.90;c115 0.00 28.70;c106 17.10 25.80;c027 6.70 11.50;c025 12.80 17.40;c009 21.80 27.80,30.50\r\nPAS7F,EDYS,Living room,2,1,No,a person grasps a camera while throwing a towel into the washing machine.,bed;blanket;box;camera;chair;couch;sofa,The person is holding a box then sits down on the couch.;This person looked inside a small box before sitting down.;The person adjusts the camera then picks up an item and sits down before getting back up and turning off the camera.,c151 15.60 21.70;c039 7.90 12.50;c041 7.20 12.20;c043 5.60 11.50;c123 15.90 22.60;c154 18.30 24.60;c040 4.60 24.70;c042 19.70 26.30;c045 18.90 27.30;c015 21.40 31.00;c135 16.50 22.50;c073 13.90 18.50;c059 16.00 23.00,30.50\r\n5SBEY,CP6Y,Bedroom,5,7,Yes,A person throws a bag on the bed from the doorway then begins to drink a glass of water sitting on a desk.,bag;bed;chair;clothes;cup;doorway;glass;table;water,\"A person comes into a room and throws a bag down.  This person then sits down and drinks from a can.;A person throws a backpack onto a bed, sits down on another bed, and takes a drink out of a cup.\",c024 4.70 9.70;c107 10.40 16.00;c151 10.40 15.30;c106 11.90 16.00;c097 6.30 12.30;c135 12.00 16.00;c001 5.10 10.30;c022 4.10 11.10;c059 10.70 16.00;c110 9.70 16.00;c009 5.30 11.30,15.08\r\nW8CWW,ZDKC,Dining room,5,4,Yes,Person opens turns doorknob and enters into dining room sits down on chair and starts working on laptop.,chair;door;laptop;table,\"a person opens a door goes into a room and does something on his laptop;A person enters a room and sits down on a chair.  This person starts using a laptop on a table.;A person opens a door and enters a room, sitting down in front of a laptop screen and types away on the laptop.\",c011 0.00 31.00;c008 16.80 30.40;c014 5.60 31.00;c052 6.40 31.00;c051 5.60 31.00;c097 0.40 6.60;c141 0.00 3.20;c059 5.80 31.00;c151 3.80 10.30,30.38\r\nO7YEF,ENHU,Kitchen,7,7,Yes,\"A person is sitting in a chair, watching television and eating chips out of a bag.\",bag;chair;food;laptop;table,A person sits at a table in a chair and watches a laptop screen while eating some food in the kitchen.;A person is eating chips and playing on their laptop,c011 0.00 11.00;c063 0.00 11.00;c059 0.00 11.00;c156 0.00 11.00;c152 0.30 6.10;c152 3.80 8.50;c149 0.20 4.70;c051 0.00 11.00;c061 2.90 8.70,10.38\r\nOOWBP,LXD5,Bedroom,6,1,No,A person is eating and drinking in the hallway as they fix a picture on a small table.,cd;closet/cabinet;cloth;desk;drawer;phone/camera;picture;rag;shelf;table;towel;wardrobe,\"A person opens up a desk drawer and takes out a CD, looks at the CD, then places it back into the drawer and proceeds to wipe down the desk with a cloth.;Person walks over to a dresser, opens the dresser, and then proceeds to wipe the dresser before disappearing out of frame.;A person enters a bedroom and takes an object out of a dresser before cleaning the top of it.\",c012 23.10 48.30;c087 8.90 19.70;c114 4.50 45.90;c038 25.30 44.80;c082 25.50 44.80;c033 25.30 44.80,54.46\r\nTIPFG,CP6Y,Bedroom,3,7,Yes,\"One person opens a box and takes out a pair of shoes, while another person with coffee watches.\",box;chair;coffee;cup;shoe;sofa/couch,A man is sitting down and sipping from a cup as another man is straightening up shoes and items on a floor in front of him.;A man sits down and drinks something from out of a cup while a second person begins taking shoes out of a box on the floor.,c041 1.00 16.50;c054 3.20 13.50;c106 0.00 19.00;c056 5.30 13.50;c107 0.00 19.00;c040 5.30 17.20;c123 0.00 19.00;c042 10.60 19.00;c039 10.50 16.30;c044 0.00 12.00;c059 0.00 19.00,17.54\r\nDGHSW,M7K8,Living room,7,7,Yes,\"A person runs down the stairs, carrying a book and drinking a glass of juice. The person sets the glass down on a table at the bottom of the stairs and quickly runs off.\",book;dish;glass;table,\"A person runs through the door and sets a cup onto the table before leaving the room.;A girl walks downstairs, setting her mug on the table, before crossing the room and exiting from the other side of the frame.\",c026 11.00 19.40;c009 13.00 18.80;c150 13.10 19.60;c109 13.50 18.60;c107 10.80 17.80;c152 13.50 18.30;c119 13.60 18.90,32.50\r\n48XER,ARRB,Bathroom,6,7,Yes,\"A person begins tidying a cabinet, then begins fixing a towel by folding it\",cabinet;cupboard;door;table;towel,\"A person is kneeling on the floor in the bathroom and looking through the cabinet. The person stands up and folds up a towel.;A person is kneeling on the floor, rummaging through an under-sink cabinet. The person closes the cabinet and stands up. The person takes a towel from the counter and folds it.;A person kneels down and looks through some bathroom cabinets, afterwards getting up and folding up a pink towel on the counter.\",c112 9.80 15.70;c114 0.00 15.00;c037 11.70 31.70;c154 9.30 15.80;c006 9.60 16.10;c009 20.70 30.30;c033 13.60 26.00;c035 12.30 16.90;c113 0.00 2.50;c034 21.70 31.10,31.67\r\nC6N6Y,CP6Y,Dining room,6,7,Yes,A person in a dining room sitting on a chair is doing their homework while eating an apple.,apple;book;chair;food;homework;paper;table,A person is doing their homework and eating;Person sitting at the table then start writing in a book while eating an apple.,c145 0.00 18.00;c059 0.00 18.00;c156 0.00 6.40;c061 0.00 18.00;c014 0.00 18.00;c032 0.00 18.00;c011 0.00 18.00,16.88\r\nRRQEV,ENHU,Closet / Walk-in closet / Spear closet,3,5,Yes,\"A person tidies up a closet by putting a blanket on a shelf, then grabbing a stack of pictures and smiling at the top one.\",bag;blanket;book;closet/cabinet;clothes;picture;shelf;towel,A person is standing by a dresser folding clothes they put the clothes on a shelf and pick up a book.;A person is in a closet and the person is folding a blanket.  The person puts away the blanket and grabs a book and looks at it.;A person places some blankets on a shelf before looking over their homework.,c084 15.10 19.00;c075 0.00 12.60;c026 15.00 19.00;c030 12.30 18.40;c001 0.00 12.60;c071 4.70 11.30;c081 4.70 11.30;c032 13.30 19.00;c004 0.00 8.50;c033 0.00 8.30;c034 4.20 11.80;c114 0.00 12.70;c029 13.30 18.90;c073 0.00 3.90;c021 8.50 15.00,18.38\r\nC4QKE,B6UG,Hallway,3,4,Yes,One person stands by the door with a pillow and blanket smiling at a person who is cooking from a book of recipes.,bag;blanket;book;door;pillow,A person carrying a pillow and blanket walked few steps on the hall way stopped and leaned on the wall.;A person with a blanket and pillow stands against a wall.,c070 0.00 32.00;c076 0.00 32.00;c152 8.30 16.40;c149 8.50 29.60;c097 1.60 32.00;c020 0.00 32.00,31.17\r\n5INX3,V044,Bedroom,5,7,Yes,A person in their bedroom is playing with their laptop that is lying on a desk. They eventually start throwing a towel onto their bed while dressing by putting a jacket on.,chair;clothes;desk;jacket;laptop;nose;table;towel,\"A person is sitting at a desk on a laptop after picking their nose,the person wipes on a towel and puts on jacket.;A person wearing a red shirt uses a laptop while itching their ears and face. The individual then stands up and puts on a sweatshirt.;A person is sitting in a chair typing on a laptop computer then scratches different parts of his head, wipes his hands on a towel, stands up and puts on a jacket.\",c011 0.00 33.30;c059 0.00 32.60;c034 25.70 35.10;c051 0.00 34.20;c154 28.60 36.90;c148 32.50 46.00;c033 27.80 34.00;c000 32.20 46.00;c035 27.80 33.10;c052 0.00 31.10;c002 33.10 39.10,44.67\r\nJCT0K,GFWE,Closet / Walk-in closet / Spear closet,5,7,Yes,A person is opening the closet door then walks in while holding a bag.,bag;closet/cabinet;door,\"A woman holding a plastic grocery bag walks toward a hallway closet, opens the closet, then shuts it, and returns back to their original standing position.;Person walk down a hall with a bag in hand open the bag take something out and place it in the closet.\",c020 0.00 31.00;c006 2.60 10.20;c008 0.10 6.30;c141 0.00 10.40;c152 16.20 26.20;c113 0.10 6.20;c112 2.50 10.10,29.83\r\nVU760,M7K8,Living room,6,7,Yes,\"A person is standing in front of the sofa, watching television. The person moves a pillow out of the way and sits down.\",pillow;sofa;television,\"A person stands still watching tv and then sits down on a couch. A dog comes over and licks the person. The person stands up.;The person stands in front of the couch watching television, then sits on the couch with the dog to watch television before getting up and walking away.\",c132 0.00 31.10;c077 7.10 12.30;c123 9.00 31.20;c154 26.20 32.40;c151 7.30 13.00;c080 7.00 12.00,33.71\r\nLCA0Q,VOOS,Bathroom,5,7,Yes,A person is seen holding their laptop in the bathroom. They put their laptop next to the sink and begin working on it.,laptop;mirror,A person standing in a bathroom sets a laptop on the sink counter and proceeds to type for the remainder of the video.;A person plays with their laptop while in the bathroom on the bathroom sink.,c052 0.00 34.00;c096 0.00 34.00;c047 0.00 17.50;c051 0.00 34.00;c049 7.50 12.10,32.62\r\n541JP,ENHU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person dresses then walks out of the closet with a book to stand by a mirror.,book;clothes;doorway;mirror,\"A person wearing an un-buttoned plaid shirt begins to button the shirt, finishes buttoning, then moves in front of a hanging mirror.;A man is standing in his room and buttoning his shirt. Then he gathers his things and checks his reflection in front of a mirror.\",c026 7.50 14.00;c148 0.00 9.60;c117 7.30 12.30;c096 9.70 14.00;c115 5.80 14.00;c097 10.20 14.00,13.04\r\nU7AAB,CP6Y,Dining room,7,7,Yes,\"While standing in the dining room, person could hear person cooking in the kitchen. Person arranged the dishes on the table for dinner. Person could smell the food that was being prepared.\",cup/glass/bottle;dish;placemat;table,A person is standing at the table they are tidying up the table they place a dish on the table and look around.;A person is standing at a table in a kitchen moves arranges several dishes on the table then begins to look around.,c012 6.50 30.90;c119 3.60 28.10;c109 5.50 12.60;c152 31.80 36.00;c120 6.50 12.30,34.79\r\n2UQKZ,M7K8,Bedroom,7,5,Yes,\"As the person continued walking up to the mirror to get a better look at their hair, they decided to pick up the blanket lying on the bed.  Putting the blanket around them since there was a chill in the room they began laughing as if a childhood memory had appeared in their head, a memory of dressing up for Halloween with a broom in hand.\",bed;blanket;clothes;hair;hand;head;mirror,\"The person bent down looking in the mirror fixing hair,stood up pick a blanket and cover shoulder.;A person stares at a mirror and fixes their hair. The person then takes a blanket and wraps it around themselves.\",c094 5.60 17.80;c144 6.00 22.80;c148 19.50 36.00;c070 19.50 36.00;c073 19.30 24.70;c072 29.60 36.00;c096 5.30 22.90;c152 4.70 23.30,35.46\r\n2Z8G8,ZDKC,Living room,2,4,Yes,A person is seen grasping a bag of groceries. They put the bag on a shelf and stand up with a blanket.,bag;blanket;cabinet;clothes;couch;doorknob;shelf;towel,A person picks up a towel from a couch and puts it inside a cabinet. Then they walk over to another couch and grabs a blanket anf folds it.;A person walked towards a door and then picked up something and put it in the television cabinet. Lastly the person picked up a blanket and folded it.;A person is walking around a room. The person takes some clothes and places it in a cabinet. The person is then tidying up a blanket. The person is then walking away.,c075 14.90 29.40;c081 6.20 15.50;c112 11.00 16.20;c141 6.10 15.90;c113 5.90 11.90;c004 14.80 28.40;c071 0.00 31.00;c070 0.00 31.00;c073 15.10 28.40;c022 5.60 16.40,29.79\r\n93B2K,AT5D,Stairs,6,7,Yes,A person is dressing in clothes and another person is working on a laptop.,clothes;floor;laptop,A person is standing on stairs buttoning up his shirt and fixing his clothes. Another person is sitting on the steps typing on a laptop.;A person is sitting on the stairs and working on their laptop. Another person is standing and putting some clothes on.,c052 0.00 32.00;c148 0.00 23.90;c004 4.30 23.60;c125 0.00 32.00;c047 0.00 32.00;c051 0.00 32.00,30.75\r\nP6JGZ,ENHU,Kitchen,6,6,Yes,A person puts a roll of paper towels onto the table. The person leaves and closes the door.,cabinet;door;table;towel,\"a person gets some paper towels out of a cabinet;A person kneeling down, opening a cabinet, getting paper towel out of it, putting it on the table and then walking out of the room.;The person opened some cabinets and took out a roll of paper towels. The person set the paper towels on a table. The person then closed the cabinets and walked away.\",c009 3.40 9.20;c113 0.00 4.40;c141 0.00 4.10;c114 0.00 11.20;c034 2.90 9.30;c154 2.10 8.20;c112 6.10 11.30;c008 0.00 3.40;c033 1.40 8.40;c035 1.50 6.30;c006 6.30 11.60,11.46\r\n1W6ZK,0Z4M,Bedroom,5,6,Yes,\"A person is holding he doorknob to their laundry room door. They open the door and stand in the doorway undressing, They put their clothes in a box and leave.\",blanket;box;closet/cabinet;clothes;clothing;door;towel;trash bin,A person is behind a door after a couple of moments the person burst in and throws a piece of clothing in a trash bin.;A person opens a door and enters the room wearing a towel. A person then places the towel in the laundry and walks through the doorway.;A person opens a door and walks into the room.  That same person takes a blanket off and puts it in a box.,c097 0.80 9.70;c008 0.00 5.50;c033 6.40 23.40;c155 7.70 17.50;c001 20.10 25.20;c034 17.80 26.50;c113 0.00 10.70;c141 0.00 8.10;c071 17.80 26.50,32.92\r\nUSNON,BONA,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,\"A person stands in an entryway laughing, then grasps the doorknob, and closes the door.\",door;floor;hands,\"The person is dancing inside of a house while wearing a smile. The person is moving various body parts, bending at the waist and even touches the floor once with hands and knees. When done dancing, the person closed the entry door.;A person is laughing hysterically, falls on the floor, and then proceeds to close a door while still laughing with reckless abandon.;The person is standing by the door then start to frantically laugh and clap their hands and walk around the room and then walks back over to the door and closes it while still smiling.\",c006 21.50 30.30;c141 21.80 31.50;c154 2.90 9.10;c149 0.00 27.10;c152 0.00 4.00,30.75\r\nABOBW,DW3I,Home Office / Study (A room in a house used for work),6,6,Yes,A person fixes the crooked shelf by the door before leaving the study.,bookshelf;door,A person wearing a gray sweater and cargo pants moves close to a bookshelf before looking through the books then leaving.;Person walks into a room go over to a shelf leave the room then turn around and come back through the door.,,37.29\r\nFQM2N,DW3I,Living room,6,6,Yes,A person picks up a book lying on the desk.  The person stands and adjusts a picture hanging on the wall by the desk.,bed;book;desk;hair;mirror;picture,\"A person is  sitting down then grams a book and straightens up a picture frame before walking away.;A person sits in a chair, gets up, and places a picture frame on the wall before walking away out of the cameras range.;PERSON SITTING ON THE BED THEN GET UP GO OVER TO A MIRROR AND HANG A NECKLACE\",c026 0.00 7.70;c144 1.60 8.60;c154 5.10 12.00;c096 2.20 10.30;c135 0.00 3.20;c030 0.00 6.20;c059 0.00 10.00;c088 8.70 13.80;c084 16.50 27.60;c083 18.20 23.80,34.54\r\nMTOFZ,DW3I,Other,6,6,Yes,The person watching the glass was throwing medicine at their mouth.,chair;cup;food;glass;medicine;table,\"A person is putting medicine into their mouth and drinking from an empty glass.;Person eating while continuously looking at a glass pick up the glass and drink out of the glass.;A person looking at a glass, while tossing something into the mouth, then picks up the glass and drinks from it.\",c129 0.00 24.50;c106 19.40 30.00;c059 0.00 30.00;c156 0.00 21.30;c009 24.40 30.00,29.25\r\nBDZNW,WK8I,Bathroom,6,7,Yes,\"A person is doing the dishes in the bathroom sink.  They are holding on to the dish detergent bottle when they start laughing. They realize they are doing the dishes in the bathroom sink, instead of the kitchen.  They walk out of the bathroom, closing the door to it behind them.\",bowl;container;cup/glass/bottle;dish;door;hands;sink;towel,\"This person washes a bowl with a hand towel in the bathroom, grabs a container, and leaves.;Blank.;A person scrubs something in a bathroom sink. The person smiles to themselves and then walks out, closing the door.\",c006 28.70 34.00;c121 0.00 27.60;c097 28.70 34.00;c139 8.40 26.40;c152 23.40 29.50;c111 9.00 25.70;c141 28.80 34.00;c038 7.60 25.60,32.96\r\nECVER,ZDKC,Kitchen,5,6,Yes,A person is walking towards to the stove and then decides to sit on their desk and work on a laptop.,chair;laptop;stove;table,\"A person walks over to and looks at an oven, then sits down at a table and starts typing on a toy laptop.  It is a plastic outdoor type chair.;Person walking around the room go over to the stove then go to table sit down and play with a toy.;A person walks to the stove, and then sits down in a chair and plays on a toy pink laptop. The person types away on it.\",c052 10.30 32.00;c151 7.90 14.60;c011 7.50 32.00;c059 7.90 32.00;c014 11.90 32.00,30.62\r\nEYZXC,IY28,Kitchen,7,7,Yes,\"One person at a table pours something, then stands up and leaves, snuggling a blanket.\",blanket;chair;coffee;cup;dish;table,a person sits at a table and pours a cup of coffee then wraps up in a blanket;A person walks to a table and sits down in a chair they pour a cup of coffe pick up a blanket wrap the blanket around themselves and get up and walk out.;A person sits at a table and pours coffee into a mug.  That same person then stands up and wraps a blanket around them.,c072 20.30 32.30;c154 23.60 31.70;c151 24.20 37.70;c011 6.40 11.10;c108 8.90 23.20;c118 6.70 23.40;c107 7.90 23.40;c059 6.70 28.20;c070 20.70 25.50;c073 20.50 36.40;c109 18.20 23.40;c110 8.10 23.40,41.17\r\nEJFUA,ZDKC,Dining room,5,7,No,A person is snuggling with a pillow and then running in place while carrying shoes in the dining room.,pillow;shoe,\"A person is standing in the kitchen holding a pillow and shoes and starts running around;Person is standing in the kitchen holding a pillow and pair of shoes, then runs into the living room and back to the kitchen.\",c053 0.00 33.00;c076 0.00 33.00;c078 0.00 33.00;c150 13.10 21.00,31.54\r\nXUUP0,ARRB,Hallway,4,7,Yes,A person is standing on a towel while working on a laptop,laptop;picture;rug,\"A person is intensely working on a laptop computer in the middle of a hallway while standing on red fabric.;A person is standing in a hallway with a towel under their feet, while they are also using a laptop computer.\",c047 0.00 27.00;c154 0.00 27.00;c088 0.00 27.00;c052 0.00 27.00;c051 0.00 27.00,26.21\r\n823U4,BPXZ,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,The person is drinking coffee while working with the vacuum in the doorway.,coffee;vacuum,\"A person is vacuuming a carpet with one hand. The person drinks from a cup with the other hand.;A person vacuums a floor while holding a glass of water, sometimes taking sips of the water while vacuuming.\",,28.50\r\nI2QTB,AT5D,Kitchen,5,6,Yes,A person throws a towel into the sink. Another person pours a glass of water.,book;counter;dish;hair;shelf;sink;table;towel;water,\"A person throws a towel into a sink. Another person takes the towel out and sets it on the counter.;People are in a kitchen talking.  One throws a towel in the sink, and the other takes it out and puts in on the counter.;Two people stand in a  kitchen, one holding a rag the other looking at a sink. The one throws the rag into the sink.\",c036 10.90 16.10;c009 1.70 7.50;c033 0.00 14.70;c034 10.40 15.30;c081 2.00 8.70;c149 12.90 20.80;c144 22.40 29.70;c119 1.50 8.70,29.42\r\nW3SC3,CP6Y,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is sneezing as they return home in their entryway. The person begins laughing and opens the window. The person gathers up some dirty dishes that are laying around and continues into the home.,dish;door;floor;window,\"The person sneezed before walking in the home. The person immediately opened a window then picked up some clutter on the floor. The person then walked away.;A person is seen walking up a pathway outside a window, sneezing. The person comes in through the door and opens a window. The person then picks up two dishes that were on the floor and walks away.\",c090 8.00 15.20;c153 0.10 6.30;c120 14.10 19.30;c118 15.30 23.00;c127 14.30 20.50;c097 3.30 8.60;c141 2.30 10.40;c008 2.30 8.40;c006 4.40 9.90,21.88\r\nBFH78,AT5D,Home Office / Study (A room in a house used for work),4,7,Yes,A person is working at their table. They are holding a towel and begin smiling.,book;chair;phone/camera;table;towel,A person is sitting in a chair at a desk doing their home work they pick up a towel and wipe their hands on the towel.;AA person sits at their desk and writes some stuff into a book. The person holds a small towel while doing so.,c011 0.00 32.00;c033 21.00 32.00;c152 23.80 30.70;c018 7.70 12.70;c015 7.90 23.80;c009 0.00 32.00;c009 0.30 4.90;c016 8.50 15.10;c030 18.50 24.10;c115 18.80 24.10;c034 21.50 32.00;c037 22.20 32.00;c026 17.60 24.50;c116 19.30 23.90;c010 0.00 32.00;c027 14.40 19.90;c038 21.00 32.00;c028 18.70 23.20;c149 24.70 29.30;c117 17.90 22.40;c014 0.00 32.00;c035 20.70 25.00;c145 3.30 11.90;c059 0.00 32.00,30.83\r\nSKZUG,ENHU,Kitchen,7,7,Yes,A person is fixing the light in the refrigerator and then is cooking on a stove.,door;food;groceries;light;refrigerator;stove,A person closes the fridge and turns the stove on;A person is fixing a light in the refrigerator. The person closes the refrigerator door when they are done. Next the person touches the knobs on the stove.,c147 10.60 17.00;c143 0.00 13.20;c104 4.50 12.00;c154 7.80 12.80;c142 9.80 17.00;c130 0.00 13.90;c105 4.00 8.70;c006 8.90 13.60;c103 0.00 11.80,15.58\r\nOE2M1,AT5D,Bedroom,5,6,Yes,\"One person is standing next to a table, while a other person is taking groceries off the table.\",bag;box;dish;doorway;dresser;food;groceries;tray,\"A person is standing by a dresser looking into a box, while another person comes in takes the box away and leaves the room.;A person stands at a shelf looking at a box. Another person walks in and takes the box then walks back out of the room.;A person looks at a tray of food. Another person walks in the room, takes the tray of food, and walks out with it.\",c020 11.90 25.50;c097 17.10 26.80;c062 13.70 23.50;c043 12.90 19.30;c120 12.90 19.00;c063 12.90 18.70;c118 12.40 26.00;c130 12.40 26.00;c061 13.80 25.70;c040 13.30 25.50,30.58\r\nNQMMJ,BONA,Pantry,6,7,Yes,A person standing on a chair in the doorway to a pantry hunts about the shelf for some medicine.  They find it lying toward the back. They pick it up and shut the pantry door behind them as they leave.,cabinet;chair;cup/glass/bottle;dish;door;item;medicine;shelf;something,\"A person is moving things around on a shelf.  The person takes something off the shelf and closes the cabinet door.;A person straightening and rearranging the items in the cupboard and finding a item, closing the doors and walking away.;Person standing in front of cabinet with the door opened,looked trough the things on the shelf drop something pick someting from the shelf clossed the cabinet door and walked away.\",c006 26.80 34.90;c060 0.00 35.00;c112 28.40 35.00;c119 1.70 6.00;c118 0.90 5.70;c110 10.80 16.20;c082 0.00 30.50;c114 0.00 32.90,33.71\r\nB6T4P,BONA,Kitchen,7,7,No,\"In the pantry, a person is leaning on the vacuum and watching a camera while eating.\",camera;dish;floor;food;phone;plate;sandwich,A person sits on the floor eating a sandwich while holding a camera.;The person is eating something and staring at a phone. The person keeps picking up bites of food with their hand and eating the food.;A person eats some food while looking at a red camera. The person is sitting on the floor.,c015 0.00 32.00;c156 0.00 32.00;c118 0.00 32.00;c125 0.00 32.00;c063 0.00 32.00;c061 0.00 32.00;c016 28.50 32.00,30.50\r\nJ2XFQ,JQ7D,Kitchen,7,7,Yes,\"A person is running in place in front of the stove. They then open the refrigerator, and eat a sandwich.\",door;food;refrigerator;sandwich,\"A person is jogging in place in the kitchen. The person walks to the refrigerator and opens the door. The person takes a sandwich from the refrigerator and eats it.;A person in a hoodie is running in place in the kitchen before opening the fridge door and grabbing something to eat.;Person is running in place in the kitchen. Then proceeds to open the refrigerator, grab a sandwich, and take multiple bites.\",c065 18.70 30.00;c069 17.20 22.50;c156 19.30 30.00;c143 16.00 21.50;c067 18.40 30.00;c142 18.50 24.30;c150 0.00 18.80;c061 18.50 30.00;c008 16.10 21.80;c063 18.50 23.10,28.58\r\n3T785,AT5D,Living room,7,7,Yes,A person is fixing a camera while another person is dressing in front of a laptop.,blanket;camera;clothes;hair;laptop;phone;table;towel,a person putting a towel on their head and messing with a laptop.;One person puts a towel on their head while another watches.;A person is picking up a towel and blanket and wrapping himself in it while another person stands nearby and records it on his phone.,c050 14.10 20.30;c051 14.40 32.00;c015 0.00 32.00;c034 2.10 8.00;c087 0.00 32.00;c033 3.10 12.00;c144 15.00 20.30;c047 15.80 23.00;c148 5.80 21.20;c001 6.10 15.20;c049 16.10 24.10;c002 2.30 7.20,30.67\r\n9CL96,CP6Y,Recreation room / Man cave,4,7,Yes,A person is in a man cave opening a box and smiling while they stand near an open doorway.,box;doorway;something;window,A person standing in a doorway cuts open a box then smiles as they open it.;A person looks outside while clipping away at something in their hands. The person continues messing with the small thing in their hands.,c041 0.00 24.00;c152 26.70 32.00;c044 24.50 32.00;c092 0.00 3.60;c040 0.00 32.00,31.38\r\nLBJ0W,AT5D,Bedroom,4,2,No,A person throws their shoes by their desk before sitting in front to the mirror.,bed;chair;clothes;desk;mirror;shoe;table,\"A person sitting on a bed takes off their shoes. The person walks over to a desk, sits down, and looks in a mirror.;A person sitting on a zebra printed bed removes the shoes that they are wearing, then rises and walks to a desk with a mirror on top and sits there.;A person sitting on a bed taking shoes off, then getting up to go sit at a desk and look into a mirror.\",c096 17.30 25.80;c054 8.90 14.60;c151 16.10 22.00;c059 15.90 22.50;c057 0.00 14.10;c154 14.70 21.40;c135 0.00 15.50;c094 17.90 31.00;c053 1.00 14.00;c155 2.70 12.60;c011 15.90 31.00;c058 9.40 14.10,30.29\r\n90W31,GFWE,Kitchen,6,6,Yes,A person is grasping at a stove knob and cooking food in a pot.,dish;food;pot;stove,A person holds a pot on a stove and reaches off-screen.;A person is in the kitchen cooking dinner;A person cooks some food in a pot on the stove. The person holds their arm out while looking away.,c147 0.00 30.00;c118 0.00 30.00,29.25\r\nU33ZS,BONA,Living room,5,5,Yes,\"A person opens a bag, takes their laptop from inside, and begins working on homework. The person gives up and begins playing a game.\",bag;book;chair;homework;laptop;paper;table,A person is taking something out of a bag and opening it. the person is opening a book and writing in it.;The person gets a book out of the book bag and begins writing on the paper as they hold it on their lap.,c021 0.00 4.00;c020 0.00 32.00;c115 2.60 32.00;c145 14.20 32.00;c049 0.60 14.20;c026 2.90 32.00;c030 2.30 32.00;c022 0.00 32.00;c027 11.20 32.00;c117 1.50 7.70;c009 3.20 8.90;c014 0.00 32.00;c048 7.60 14.80;c050 0.50 9.10;c059 0.00 32.00;c011 0.00 32.00,30.75\r\nKY2KA,M7K8,Living room,5,7,Yes,\"One person takes a book from a wardrobe and sits by a television, then starts playing a game.\",book;box;cabinet;cards;floor;picture;shelf,A person takes a book from a shelf and then looks through a stack of cards.;A person gets a book from the shelf.  This person also has a board game and looks through the game box.;A person on their hands and knees takes a book from a cabinet before picking a box up from off the floor.,c030 3.70 9.50;c088 15.50 22.20;c113 0.40 7.50;c042 11.70 17.30;c043 11.30 15.70;c028 6.90 14.90;c041 17.70 22.60;c112 0.40 4.90;c026 2.60 15.30;c125 0.00 37.00;c044 21.50 26.80;c040 12.20 18.20,36.42\r\n6C0BK,M7K8,Bathroom,7,7,Yes,A person is putting a towel on a towel rack.  Then a person is grasping a phone.,phone;towel,\"person hangs up a hand-towel, grabs a cell phone and looks at the cell phone;A person is standing in a bathroom and the person hangs up a hand towel and then begins to look at their cell phone.\",c037 0.00 8.10;c016 5.10 31.00;c152 6.90 11.70;c034 0.30 7.80;c018 4.80 9.60;c015 5.00 31.00,30.25\r\n22O95,ENHU,Kitchen,4,6,Yes,A person awakens in a kitchen holding a phone and sitting at a table.,chair;desk;phone;table,A person checks their phone while sitting at a table.;A person is sleeping on a kitchen table then wakes up and looks at a cell phone.;The person is sitting in a chair while laying with their head on a table then lifts up their head and looks around and then looks at their cell phone.,,6.42\r\n4K0BP,GFWE,Pantry,7,7,Yes,A person is sitting in a chair in the pantry looking at their phone.  The person smiles at their phone and drinks a glass of water from the shelf.,chair;cup;dish;glass;phone;water,\"A person sits on a chair and looks at their phone.  This person drinks from a cup and then gets up and walks away.;A person sits down on their phone in a chair. The person takes a sip of some water, puts the water down and stands up out of the chair.\",c106 8.60 17.70;c151 0.00 5.50;c154 20.60 29.20;c059 0.00 29.10;c016 0.30 29.20;c152 0.60 30.60;c109 21.50 32.00;c015 0.00 30.60;c107 12.20 30.20;c120 11.10 17.20;c110 11.10 17.40,30.71\r\nPIJRH,JQ7D,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person walks into their study, holding a bag. The person removes a pillow from the bag, and smiles.\",bag;doorway;pillow,\"A person walks into a room carrying a bag they walk over to a desk and they take a pillow out of the bag and look at the pillow.;A person walks into a room and takes a pillow out of a bag, and looks at the pillow and smiles\",c076 8.90 32.00;c020 0.00 12.90;c152 12.50 32.00;c024 0.00 32.00;c097 0.00 5.50;c021 5.20 13.00;c077 7.90 32.00;c079 6.90 12.70;c022 7.90 13.60,30.54\r\nSLHDI,Q7QI,Kitchen,6,6,Yes,A person by the refrigerator was eating then sneezing into a towel,container of berries;door;food;groceries;refrigerator;towel,\"A person is closing a door then opening the refrigerator doors and eating something before sneezing on a towel.;A person opens the fridge and looks around, they woo their face with a towel and pulls some leftovers out of the fridge.;Person walks over to refrigerator. Person opens refrigerator, Proceeds to grab food and take a bite. Person then spits food into towel and shut the refrigerator.\",c156 21.60 26.10;c006 1.10 6.30;c142 32.40 40.00;c033 16.50 40.00;c063 10.40 21.70;c143 2.80 12.40;c130 6.10 37.20;c153 26.40 31.90;c061 16.90 35.20;c034 35.70 40.00;c008 3.00 8.00,38.58\r\nC4MUA,GFWE,Stairs,5,7,Yes,A person is walking up the stairs with some coffee.  Then a person is drinking it and picking up a pillow.,coffee;cup;door;pillow,\"a person walks in through a door drinking coffee then grabs and holds a pillow;A person walks in a doorway, takes a drink of something, and then picks up a pillow and holds it close.;The person walks through the door, takes a drink, bends down to pick up a pillow then holds both the mug and pillow.\",c076 4.80 31.00;c107 1.60 31.00;c106 1.80 7.90;c097 2.20 7.90;c079 4.80 10.60;c078 6.50 31.00,30.08\r\nZ0DO7,BONA,Living room,6,7,Yes,A person standing the hallway drinking a glass of water. They pick up a blanket.,blanket;cloth;cup;dish;floor;food;glass;towel;water,\"A person drinks from a glass then reaches down and picks up a blanket from the floor and kisses it then holds it.;A person stands in a room and drinks something out of a cup. The person then grabs a blanket and starts wiping themselves off with it.;A person takes a drink of something inside a cup, and then puts the cup down. The person then puts a blanket over their shoulder.\",c106 0.00 22.90;c061 0.00 24.80;c000 20.60 31.00;c127 20.60 28.90;c002 20.10 31.00;c072 27.70 31.00;c119 19.20 25.10;c037 21.60 31.00;c107 0.00 24.70;c109 20.10 24.70;c070 23.20 31.00;c073 22.00 27.70,29.62\r\nOEIR9,P2J3,Kitchen,1,3,Yes,A person is throwing homework while another person is eating food.,dish;food;homework;paper;pen;plate;table,One man is eating out of a dish the other man is writing on a piece of paper;A person stands eating food from a bowl while standing in the kitchen as another person makes notes on a piece of paper.;Two people are standing in a kitchen - one is eating food from a plate and the other person writing something on a piece of paper and then throws the paper down.,c012 0.00 9.60;c061 0.00 36.00;c145 9.30 36.00;c156 0.00 36.00;c118 0.00 36.00;c115 8.80 36.00;c117 9.00 16.50;c116 31.90 36.00,35.12\r\nEXW9K,ZDKC,Kitchen,5,7,Yes,A person in the kitchen is working on some homework that is lying on the table. They take a look at the stove and remember that they need to start cooking for dinner.,chair;food;frying pan;paper;pen;stove;table,A person sits at a table and writes something into a notebook. The person then stands up and proceeds to walk over to a kitchen stove.;A person writes in a notebook then goes to the stove.,c145 0.00 23.80;c147 26.10 33.00;c154 21.10 28.00;c011 0.00 25.10;c059 0.00 26.90;c014 0.00 26.90,32.33\r\nXRU9O,ARRB,Dining room,7,7,Yes,\"The person was standing in front of the pantry smiling and eating a sandwich, while the television was on.\",food;sandwich;wall,A person is standing against a wall eating a sandwich;A person is standing in the kitchen and eating a sandwich. They take a few bites of the sandwich.;A person stands in the kitchen and eats a sandwich.,c065 8.70 21.90;c067 5.60 12.90;c156 11.30 20.80;c061 0.00 29.00,28.17\r\nS4P5J,4TV7,Bathroom,4,4,Yes,A person is holding a box of cereal. Another person is smiling while putting away groceries.,bag;box;closet/cabinet;coffee;doorway;food;groceries;medicine;shelf;towel,\"A person is sitting on a toilet reading a box, when another person comes in with a bag of things and start putting them away then they arrange a towel and walk out.;Person sitting on a toilet reading a book another person comes into the bathroom and put s something into the cabinet.\",c040 0.00 42.00;c020 0.00 42.00;c152 33.70 38.50;c081 9.20 14.90;c130 5.90 24.80;c034 28.90 36.70;c035 27.90 32.90;c128 13.20 18.40;c113 4.90 10.10;c061 0.00 42.00;c112 27.70 33.60;c022 5.70 11.50;c097 2.40 7.20;c037 28.50 36.00;c021 7.50 13.60;c023 16.50 24.20,41.46\r\n43CF9,M7K8,Living room,6,6,Yes,Two people awaken and start snuggling on the sofa. Then they share a sandwich.,chair;couch;food;pillow;sandwich;sofa,A person sits on a sofa cuddling a pillow while another person holding a sandwich sits down next to them and cuddles them before sharing the sandwich.;Two people sit on a couch and snuggle together in a comfortable manner while munching on pieces of bread.;Two people sitting on the sofa with a dog both people snuggling with a pillow.,c065 21.10 32.50;c069 0.00 4.90;c078 0.00 15.90;c061 1.60 24.40;c151 0.00 4.00;c076 0.00 15.60;c152 1.90 34.00;c059 0.00 5.30;c067 0.00 24.80;c123 0.00 34.00;c149 6.40 34.00;c156 22.20 34.00;c068 19.30 24.10;c154 28.60 34.00;c063 19.60 25.30;c062 18.60 24.10,32.67\r\nXGS3K,BPXZ,Living room,6,6,Yes,\"A person throws a picture down on the sofa gently. The person then approaches the window across the room, and opens it.\",blind;book;curtains;door;phone/camera;picture;sofa;window,\"A person is putting a picture on a sofa before pulling back the blind of a sliding door and opening it.;A person standing in front of a television in a living room looks at a DVD case. The person walks across the room and sets the DVD case on a couch. The person then begins walking back across the room to open a set of vertical blinds and opens a sliding glass door. The person then begins to look outside into a covered outdoor porch and into a backyard.;A person is walking through a room looking at a picture.  The person puts the picture down on the couch, and then walks to a window and opens the blinds and the window and looks out the window.\",c087 1.40 8.40;c008 12.60 20.50;c032 0.00 5.30;c086 1.30 9.30;c016 0.00 6.60;c017 2.20 8.60;c092 11.80 23.00;c028 3.00 8.00;c090 8.30 16.30,22.08\r\n3C1ZN,JTAS,Living room,4,4,Yes,A person awakens on a sofa with a pillow and blanket. They get up and get dressed and leave.,blanket;pillow;sofa,\"A person laying on the couch covered by a blanket, sitting up, stretching, yawning, then picking up a pillow and squeezing it.;A person lying on a couch under the covers sits up, stretches several times, hugs their pillow and puts the pillow down.\",c076 23.50 32.00;c078 0.00 32.00;c122 0.00 32.00;c123 18.40 32.00;c146 10.70 26.40;c072 0.00 32.00;c079 23.30 27.50;c077 24.40 28.80,30.75\r\nL2502,0Z4M,Bedroom,7,5,Yes,A person sneezes as they walk past a glass mirror. The person stops and begins to undress.,clothes;glass;hair;hand;mirror;shirt,\"A person sneezes into their hand. A person then fixes their hair in a mirror and then takes their shirt off;Person begins to sneeze then cough, the person looks in the mirror and runs hands through their hair. The person then removes their shirt.;Person sneezes, pats chest then coughs, they then look in a mirror and run hands through their hair then unbutton and take of their shirt\",c096 14.40 31.40;c153 0.00 14.20;c155 16.90 35.00;c155 29.40 35.00;c144 14.20 31.10;c094 12.20 35.00;c152 0.00 16.40;c148 27.10 35.00,33.75\r\nAT9UV,ZDKC,Living room,6,7,Yes,A person dozing on a sofa with their head on a pillow awakens and then begins to watch television.,blanket;couch;hat;head;sofa;television,\"A person is laying on the couch using a blanket as a pillow. They wake up, rub their face, and begin to sit on the couch.;A person sleeping on the couch with a hat on, waking up, yawning and then sitting up to watch TV.;There is a person laying on a sofa with a blanket under their head  That same person then sits up and looks at television.\",c122 0.00 27.90;c123 27.20 36.00;c132 26.00 36.00;c146 13.30 27.20,35.00\r\n5E4XD,0Z4M,Bathroom,5,3,Yes,The person is smiling in the mirror and then fixing a vacuum in the pantry.,hair;mirror;tubing,\"A person goes over to a mirror and fixes their hair they pick up a tube and make a circle out of it.;A man is fixing his hair in front of a mirror in the bathroom, then picking up a rubber hose and playing with it.;A person combs his hair with his hands while looking at himself in a mirror, then picks up a yellow rubber tube and plays with it.\",,30.83\r\n9RRED,I48P,Basement (A room below the ground floor),6,5,Yes,A person is walking around a basement while drinking some water. The person takes off a pair of shoes and then sits down on a sofa.,blanket;bottle;chair;clothes;couch;shoe;sofa;table;water,\"A person wanders through a messy room, carrying and drinking from a plastic water bottle, stops at a coffee table, sets his bottle down, takes off his shoes, picks up the plastic bottle, walks to the couch, moves a blanket out of his way,  and sits down.;A person is walking through a messy room holding a water bottle.  This person takes off their shoes and sits on a couch.;A person walked around a room in a large circle while drinking from a water bottle, then walked to a couch, set down the bottle, kicked off their shoes, and sat down on the couch.\",c123 25.50 32.00;c151 24.70 32.00;c071 27.00 32.00;c106 0.00 5.80;c009 17.50 22.40;c057 18.30 25.30;c073 24.60 30.40;c059 27.00 32.00;c109 16.40 21.20;c107 0.00 20.90;c110 22.10 26.40;c003 24.60 29.80,30.67\r\nHBWLV,I48P,Dining room,5,7,Yes,A person turns on the light in the pantry. They pick up a box of food and sneeze. They laugh and close the door.,chair;clothes;floor;shoe;table,A person sitting in a chair is cleaning their shoes.  They put them on the floor and walk away.;A person sitting down scrubs some shoes down. The person then scrubs their other shoe down all over and then puts the shoes on the floor.;A person cleans their shoes while sitting in a chair. The person rubs down both shoes and then puts them on the ground.,c053 0.00 27.90;c058 0.00 31.50;c011 0.00 30.40;c004 0.00 28.70;c056 0.00 4.10;c059 0.00 28.90;c005 0.00 27.80;c154 25.50 32.20;c054 9.40 14.30;c054 23.40 27.90;c126 26.10 31.20;c009 9.40 14.30;c014 0.00 28.10;c012 24.40 31.20,31.58\r\n5TYXL,BONA,Stairs,5,5,Yes,A person is seen opening a box with dishes in it. They leave the dishes on the stairs and go retrieve a vacuum.,box;broom;cup/glass/bottle;dish;floor;stairs;vacuum,A person sits on the stairs and takes things out of a cardboard box and puts them on the steps.;A person sits on the stairs and begins to take dishes out of a box and put them on the step below him. Then he stands and takes the broom before leaving the steps.,c137 24.90 32.00;c041 0.00 7.70;c154 22.80 28.60;c138 24.50 31.10;c119 4.30 25.40;c120 2.70 25.40;c125 0.00 27.60;c110 4.00 8.90;c100 25.10 31.40;c044 3.80 25.70,30.58\r\n3LN8C,CP6Y,Stairs,5,3,Yes,\"A person is running up the stairs with a pillow. The get to the top and take off their shoes, putting them neatly on the ground.\",shoe,\"A person looks to the left before climbing two flights of stairs. When they reach the top landing, they take off their shoes and place them in front of a door.;Person standing in the hall and start running up the stairs get to the top and take off shoes then starts by down the street.\",c054 23.70 36.00;c057 23.00 31.90;c056 22.40 30.50;c056 28.10 32.80;c053 23.50 31.50,35.08\r\nRDVGK,CP6Y,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is sitting on shoes while another person is sneezing on a broom.,broom;floor;shoes,\"Person standing with a broom in hand then began to sneeze while another person sitting on the floor watching.;A person sneezes while holding a broom, while another person sits cross legged on the floor nearby.\",c098 0.00 16.00;c153 2.90 16.00;c125 0.00 16.00,15.38\r\nIEQWT,ZDKC,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"A person is about to exit their home when their hand lingers on the doorknob and they hesitate. They turn to look into a mirror and start smiling at themselves. Suddenly, they laugh when remembering something funny.\",door;hand;mirror;something,A person walks to a door and opens it slightly. The person looks away and appears to talk to someone.;Person walks over to a door and opens the door a few inches. Before opening the door all the way the person turns around and looks back.,c141 1.80 14.60;c008 2.10 8.90,26.96\r\nGMLPK,4UGC,Living room,7,7,Yes,A person standing in their living room smiles as they retrieve a sandwich from a bookshelf near their sofa.  They take it as they leave.,dish;doorway;food;plate;sandwich,\"A person is standing in the room looking around. The person reaches over and grabs a plate with a sandwich on it off of the bookshelf. The person then takes a bite of the sandwich. The person then walks out of the room.;A person wearing a plaid shirt itches themselves, grabs a sandwich, takes a bite and then exits the room.;A person is standing in a living room doing nothing. Then the person picks up a plate with a sandwich on it, takes a bite of the sandwich, and walks out of the room.\",c065 11.90 35.20;c069 11.00 22.40;c118 17.80 44.00;c156 11.90 35.20;c067 16.70 25.70;c120 37.10 44.00;c154 0.00 44.00;c061 19.50 37.80;c062 33.40 38.70;c063 16.50 22.80;c097 37.70 44.00,43.38\r\nL29HE,ENHU,Bedroom,6,7,Yes,\"A person is fixing a vacuum while sitting on the floor. They give up, exasperated, and grab a broom from the shelf.\",broom;floor;vacuum,\"Man sitting on the floor looking at a vacuum put the vacuum door get off the floor and get a broom.;A person is sitting on the floor. The person is holding and fixing a vacuum. The person then stands up, grabs a broom, and walks out of the room.\",c125 0.00 12.70;c100 9.30 16.40;c136 0.00 8.70;c154 9.10 17.30;c098 10.60 18.00;c137 0.00 12.40,16.71\r\nIQY10,ENHU,Home Office / Study (A room in a house used for work),4,7,Yes,A person is standing in a doorway holding a towel when they begin snuggling the towel and smiling.,blanket;clothes;doorway;towel,The person snuggles with a blanket.;A person hugs a coat.,c152 0.40 5.00;c072 0.00 5.00;c149 0.00 5.00;c000 0.00 5.00;c070 0.00 5.00,4.12\r\nFLDHS,CP6Y,Recreation room / Man cave,7,7,Yes,A person in their recreation room tidying up stands and folds a blanket and puts it in a box.,blanket;box;floor;shelf;table;towel,\"A person starts picking up things off the floor, picks up a blanket, folds it, and places the blanket into a box while closing the box.;A person is cleaning and tidying up the living room and are putting stuff in a box.\",c071 14.30 25.20;c041 4.70 14.80;c127 3.50 8.30;c042 5.40 12.80;c037 12.00 22.70;c070 11.60 22.60;c012 0.00 7.40;c039 20.50 27.80;c082 0.00 7.20;c075 11.70 22.00;c009 17.50 24.60;c073 11.40 17.90;c014 19.10 30.00,29.08\r\nY1HGC,M7K8,Bedroom,7,7,Yes,\"A person stands in the bedroom doorway, drinking a glass of water. The person walks over to a chair and sits down.\",camera;chair;cup;dish;doorway,\"a person walks in a doorway drinking some coffee then sits in chair and makes faces;A person is walking with a cup while drinking out of it, sitting down and making faces at the camera.;A person is walking and holding a glass of water. The person is drinking the water. Lastly, the person sits down and is holding the cup.\",c059 6.80 32.00;c106 1.70 12.10;c107 1.10 32.00;c097 0.20 9.80;c151 5.20 12.40;c152 26.10 30.70;c118 0.00 32.00,30.62\r\nQWKVM,AT5D,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"One person opens the door and puts a glass on the desk. Another person watches, then closes the door.\",bed;chair;cup;desk;door;glass;homework;paper/notebook;shelf;table,a person walks into a room and talks with another person while sitting;A man opens a door and enters a room while another man approaches the door and closes it. The first man sits on the edges of a bed to speak to the second man.;A man walks into the room and begins to talk. Another man gets up from the desk and closes the door as the first man sits on the bed.,c006 10.30 19.10;c151 12.30 18.20;c014 4.20 13.10;c008 0.00 5.20;c109 1.20 8.00;c082 1.40 13.60;c009 1.70 13.70;c116 1.70 13.70;c012 3.40 12.60;c153 3.70 8.90;c149 16.80 30.20;c097 0.00 4.80;c081 2.00 7.90;c135 13.40 32.00;c141 11.00 19.10;c152 18.80 30.10;c059 13.60 18.00,30.79\r\n3NKHT,VOOS,Kitchen,3,7,Yes,\"A person is standing in the pantry, gathering the groceries they need to fix dinner while reading the recipe on a laptop they are carrying.\",cabinet;counter;cup/glass/bottle;door;food;groceries;laptop;spices,someone holding a laptop and taking things out of a cabinet;A person is holding a laptop and grabbing stuff off the shelf.;A person on a computer is looking at a list of food items needed.  The person then takes various items out of the cupboards.,c047 0.00 33.00;c109 0.60 10.50;c062 0.00 29.80;c052 0.00 33.00;c113 9.40 14.70;c063 1.10 11.20;c063 11.40 19.20;c008 9.10 14.40;c051 0.00 3.10,32.12\r\nYE6UZ,GFWE,Bedroom,5,6,Yes,A person is tidying up the bedroom and moves some clothes off the bed and into a laundry basket. This person then opens a drawer looking for their phone.,basket;closet/cabinet;clothes;drawer;dresser;phone;towel,\"This person is in a bedroom, folding clothes, walks to dresser, gets something out of one of the drawers and holds it up for a few seconds.;A person started taking clothes off a bed and put them into a basket, they then opened a drawer and showed a phone to the camera.;A person is putting laundry and clothing into a basket in her bedroom. Then she takes her phone from a drawer and begins to work the camera on it.\",c001 1.80 26.60;c015 15.60 34.50;c034 0.00 7.70;c152 0.10 9.90;c002 0.00 4.80;c000 0.40 6.30;c018 15.00 23.00;c113 8.20 14.40;c004 0.20 9.90,34.38\r\nG30NS,I48P,Garage,4,7,Yes,The person is tidying up the garage. They place books and a blanket in a box and then close it.,blanket;book;box;floor;shelf;towel,\"Person putting things on a shelf while looking on a shelf and going through some boxes.;A person puts some things away onto a shelf in a garage. The person takes a large blanket and puts it into a box, as well as some more things, then puts the box down.\",c028 0.80 7.20;c043 17.10 37.60;c071 8.70 14.40;c154 11.10 34.80;c126 0.00 5.70;c075 5.10 11.40;c041 16.20 38.00;c040 16.40 38.00;c039 30.40 36.50;c044 22.70 28.80;c037 8.30 20.20;c081 0.40 7.60;c081 23.70 30.90;c035 7.00 14.00;c073 7.00 14.00;c127 0.00 6.30;c042 2.50 10.60;c082 0.40 7.60;c082 23.70 30.90;c070 9.20 19.80,37.42\r\nQXGK5,B6UG,Kitchen,6,5,Yes,A person is in their kitchen opening a bag when the phone rings and they run out of the room.,bag;doorway;phone,A person is in the kitchen there is a bag on the floor they bend down and go through the bag then they leave the kitchen.;There is a person looking through a bag that is in the floor.  That same person then checks their phone and leaves the area.,c021 1.90 8.10;c015 17.70 30.00;c016 18.40 30.00;c019 27.00 30.00;c097 26.20 30.00;c018 16.90 24.40,29.04\r\n4SBL5,BONA,Stairs,7,6,Yes,\"A person is grasping a bottle of medicine, then using a vacuum and finally lying on a step on the stairs.\",broom;cup/glass/bottle;floor;stairs,\"A person sweeps some stairs before laying on the steps.;A person sweeps some stairs outside while walking down the stairs. The person lays the broom on the railing and lays down on the stairs.;A person mops some stairs while walking down and  holding a bottle in their hand. When the person finishes, the person lays down on the stairs.\",c102 0.00 23.40;c124 27.90 34.00;c151 25.00 30.60;c109 24.30 29.60;c125 25.80 34.00;c099 22.20 28.30;c098 0.00 28.00;c107 0.00 30.80;c127 0.00 26.50,32.62\r\nV3SOF,BKWQ,Kitchen,5,7,Yes,\"One person tidies up the stove and refrigerator, then walks out.\",closet/cabinet;cup;dish;door;refrigerator;shelf;stove,\"A person walks into a kitchen, grabs pots and pans, puts them away, and then opens the fridge to remove something.;The person put away various dishes that were laying on the stove. The person then opened up the refrigerator and organized the food.\",c142 32.50 38.90;c143 20.00 28.20;c110 0.40 6.40;c112 4.00 9.00;c112 10.00 17.00;c113 2.90 8.70;c120 5.80 13.80;c081 1.80 8.50;c119 0.40 8.20;c119 5.80 15.30;c008 20.50 28.20;c118 0.70 8.50;c118 4.90 13.10,44.33\r\nBIJYC,I48P,Bedroom,6,7,Yes,\"A person is tidying a wardrobe, then running in place and next talking on a phone in a bedroom.\",clothes;cup/glass/bottle;mirror;phone;shelf;table;wardrobe,\"Person exercising in the room pick up a phone off the dresser began to talk on the phone;A man is tidying up items on a dresser before beginning to run in place; he stops to answer his phone, then continues running as he talks on it.;A person is fixing up their dresser, then begin running in place. After that they start talking on their cell phone\",c019 20.60 36.00;c150 24.80 36.00;c009 0.10 6.80;c109 0.00 7.10;c082 0.00 7.10;c018 19.10 23.90;c096 32.50 36.00,35.21\r\nD04GX,CP6Y,Entryway (A hall that is generally located at the entrance of a house),7,,No,A person is in their entryway holding a camera and a sandwich. They walk into the living room while eating the sandwich.,camera;door;food;phone;sandwich,A person opens a door and walks into the room. The person is holding a camera and eating a sandwich.;A person opens a door and walks into a room while eating.  This person has a camera around their neck.;A man came into the room while eating. He closed the door behind him and then looked around while pausing.,c065 0.00 5.70;c067 1.40 9.40;c015 8.70 14.00;c156 5.40 12.30;c006 1.60 9.20;c008 0.00 4.00;c141 2.20 6.40;c061 1.00 14.00;c097 1.00 5.30,13.08\r\nCLB72,I48P,Closet / Walk-in closet / Spear closet,4,5,No,\"A person turns on the light in a closet, opens a large container, then grasps a pillow from it.\",box;closet;doorway;light;pillow;shelf,\"Person turns on the light to a closet, walks in, pulls down box from the top shelf, takes a pillow out before returning the box.;A person walks into a closet and pulls out a box from the top shelf. The person then takes a pillow out of the box and places the box back while hugging the pillow.;A person takes a tub down from a closet shelf and takes a pillow from it.\",c076 25.90 37.00;c078 25.90 37.00;c097 0.20 7.30;c081 26.30 37.00;c040 5.10 14.70;c079 15.60 23.70;c104 0.00 3.60;c043 4.20 11.40;c044 15.90 22.30;c042 26.80 36.20;c039 20.60 30.10;c041 10.30 17.90,36.17\r\nD4D2T,CP6Y,Living room,4,7,Yes,A person is taking a sandwich out of a box while holding a towel.,blanket;box;food;sandwich;shirt;towel,\"A person is taking off a shirt. A person then opens a box and eats a sandwich.;A person holds a red towel.  This person picks up an item from a table and then eats it.;A person holding a towel, takes some food out of a box and eats it.\",c033 0.00 25.00;c065 8.70 25.00;c041 2.80 12.90;c156 13.90 25.00;c037 14.20 20.80;c034 0.00 6.50;c070 0.00 25.00;c044 9.40 15.10;c040 2.90 16.80;c062 9.50 25.00;c042 11.20 16.70;c063 3.00 7.80;c061 11.10 25.00,23.67\r\nBPT87,M7K8,Stairs,5,7,Yes,\"A person laughs as they walk down the stairs. The person hangs a towel from a broom stick, and leaves.\",broom;clothes;stair;towel,A person runs up and back down some stairs.  The person laughs and picks up a towel and a broom and puts them back down.;A person runs up some stairs and then comes back down. The person takes a towel and puts it on a stick and lays it on the railing;A person walks up then down the stairs then wraps a towel around a broom.,c034 13.60 31.10;c035 13.60 19.40;c099 13.40 31.30;c100 13.20 19.70;c000 13.70 21.30;c154 24.40 31.30;c152 8.00 20.00;c149 7.20 15.30;c033 12.60 29.20;c150 0.00 8.70;c098 11.80 29.50,32.67\r\nBVRAS,CP6Y,Stairs,7,7,Yes,A smiling person sets aside a broom and then is seen holding a sandwich.,broom;food;sandwich;stairs,\"A person is standing on some stairs, sweeping them with a broom.;A person sweeps a stair case and then leans the broom on the wall, while looking at something over the rails.\",c067 6.60 18.00;c098 0.00 11.30;c099 5.20 11.40;c102 0.00 10.00;c156 7.70 18.00;c154 0.00 18.00;c061 7.40 18.00,17.42\r\nOTL44,ENHU,Recreation room / Man cave,7,7,Yes,\"A person walks into the recreation room, carrying some dirty dishes. The person trips over a pillow on the floor and falls, throwing the dishes as they do so.\",cup/glass/bottle;dish;doorway;floor;pillow,\"A person wearing a blue sweatshirt walks into a room holding a plate of food and a coffee cup, the individual then trips over a pillow on the ground, dropping the items.;A person walks into a room carrying a cup and a plate, trips on a pillow that is laying on the floor and falls to their knees dropping the items they were carrying.\",c118 0.00 6.20;c107 0.00 5.50;c154 5.50 9.00;c097 0.00 4.30,8.21\r\nLIXE6,4UGC,Hallway,7,7,Yes,A person smile as they take a picture with a camera. Then the person leaves while grasping some food.,bag;banana;camera;doorway;doritos;food;phone;picture;table,After snapping a couple of pictures on a camera the person decides to grab a bag of Doritos chips and a banana.;A person with a camera takes a photo of something and looks at it before grabbing a bag of doritos and walking out.;A person looks through a camera and grabs a banana and a bag of snacks and leaves the room.,c015 0.00 20.70;c063 16.00 21.50;c097 23.40 34.00;c061 17.40 34.00;c087 1.70 13.70;c023 15.50 21.20;c016 0.00 19.00,33.38\r\nGKBSR,0Z4M,Laundry room,5,6,Yes,A person is standing in their laundry room. They are looking out the window and talking and laughing on their phone. They take a pillow and leave the room.,door;phone,\"someone walking through a door and talking on a phone;A person walks to a door, opens the door, and talks on their phone while looking around in the doorway.;A person is walking in a room, then go into the closet to talk on the phone.\",c015 7.60 22.80;c019 9.80 35.00;c097 6.20 16.60;c152 8.60 35.00;c008 0.00 2.70;c149 0.00 35.00;c141 0.00 2.70,33.54\r\nM014B,ZDKC,Kitchen,6,7,Yes,A person stands in their kitchen drinking milk and holding a bag. The person places the bag on the stove.,a cloth of some kind;bag;counter top;cup;food;milk;stove;towel,\"The person picks up a milk jug, drinks from it, places it back onto the counter top, and continues cooking.;A person drinks milk from a bottle and starts messing around with a kitchen stove in a strangely idle manner.;A person holding a bag of items, picks up a milk jug, takes a drink, covers a pot on a stove with a lid and then sets the bag of items down onto the stove.\",c147 14.50 24.40;c110 0.00 5.00;c033 0.00 31.00;c063 0.90 6.70;c061 1.60 20.00;c062 15.90 20.80;c020 0.00 23.80;c106 5.70 15.00;c061 28.30 31.00;c062 28.30 31.00;c020 28.30 31.00,30.12\r\n330R7,B6UG,Dining room,,,No,\"A person takes some dishes from a desk, and leaves the room.\",dishes,\"A person removes a lid off a dish, picks up a spoon and spoons food on a plate.  That same person puts the lid back on and leaves the room.;The person is scooping food onto a plate at the table then walks out of the room with the food.\",,31.50\r\nFXZI5,M7K8,Living room,6,6,Yes,A person is dressing in a towel while another person is lying on a pillow,blanket;chair;clothes;couch;pillow;sofa;towel,A person pulls a towel out from beneath a dog and wraps it around her waist while the dog yips at her. Another person lies on a couch.;person holds a tovel and stands next to the sofa with tovel wrapper around waist. another person sleeping on the sofa watches the dog comming over him;A person is lying down on a couch while a second person is standing beside the couch with a towel wrapped around their waist.,c033 0.80 6.70;c034 3.20 12.50;c148 3.00 12.40;c122 0.00 33.00;c070 0.00 6.20;c149 0.00 26.30;c152 5.30 12.90;c035 0.00 4.60,32.33\r\nT3R3K,CP6Y,Living room,6,6,Yes,\"A person is sitting in the living room, eating a candy bar while folding clothes. Another person uses the vacuum nearby.\",blanket;chair;clothes;floor;food;sofa;towel;vacuum,\"One person is tidying up clothes while eating and sitting on a sofa. The other person is vacuuming the floor all the meanwhile.;Two people in the room,one sit down on the sofa and folding clothes. The other bend down and vacuum the carpet.;A person is sitting on a couch and tidying up some clothes. The person is also eating. Another person is crouching on the floor using a vacuum.\",c137 0.00 22.00;c123 0.00 22.00;c004 3.40 18.80;c000 11.90 18.40;c059 0.00 22.00;c033 3.30 11.40;c063 1.80 7.00;c001 4.40 11.40;c001 8.50 16.80;c002 2.10 8.70;c002 7.40 12.80;c127 0.00 22.00;c061 0.00 22.00;c151 0.00 2.80;c075 3.70 18.70;c037 3.70 18.70,21.04\r\nP5YNX,NMK2,Living room,7,7,Yes,\"A person is sitting in a chair and working on their laptop. The phone rings and the person stands up and begins walking to answer it, pausing to move a pile of clothes out of their way.\",chair;clothes;laptop;phone;table,\"A person is sitting in the chair on their laptop, then they get up and talk on the phone;A person is on their laptop before they set it down and take a phone call.\",c047 0.00 14.00;c015 11.00 31.00;c019 14.30 31.00;c059 0.00 13.10;c051 0.00 11.80;c018 11.20 31.00;c154 8.20 31.00;c052 0.00 12.70;c049 0.00 13.10;c009 9.50 13.70,29.54\r\nAFCDN,B6UG,Kitchen,5,7,Yes,A person is seen watching something on their camera. They begin eating food that they pulled out of the refrigerator.,bag;camera;door;food;phone;refrigerator,Person holds a object hand sit on top of the refrigerator opens the refrigerator door get out food and began to eat.;A person is standing next to a refrigerator and takes a picture of something.  Then the person takes something out of the fridge and eats it.,c015 0.00 13.50;c061 15.60 30.00;c063 10.10 16.20;c142 17.20 23.10;c143 6.60 12.80;c156 24.90 30.00;c008 5.50 13.70;c087 0.00 7.20;c017 4.30 10.90;c021 11.10 18.70,29.42\r\n3AKML,I48P,Closet / Walk-in closet / Spear closet,6,7,Yes,\"One person runs through the doorway into the closet and starts dressing in front of a wardrobe, then leaves the closet with a box.\",box;closet;clothes;doorway;hangar;shelf;shirt,\"A person gets dressed in a walk in closet than grabs a box.;A man wearing a brown tee shirt enters a walk-in closet, grabs a striped sweatshirt from a hangar and puts it on. The individual then grabs a shoebox an leaves the closet.;A person is running into a closet, grabbing a shirt from the closet, and getting dressed. The person then takes a box off of a shelf and walks out of the closet.\",c043 30.00 41.00;c000 0.80 31.40;c148 1.80 33.20;c002 0.80 12.20;c001 8.60 33.60;c097 0.00 3.60;c040 35.20 41.00,39.92\r\n9BPW6,B6UG,Dining room,5,7,Yes,\"A person is snuggling up to a blanket, laughing as they watch television.\",blanket;chair;table;towel,\"A person picks up a blanket from a chair, wraps themselves in the blanket and then sits down in the chair and smiles.;The person walking around a chair  pick a cloth from the chair cover body with the cloth and sat on the chair.;A person is walking around. The person picks up a blanket and wraps it around them and then sits in a chair.\",c070 1.30 32.00;c073 1.70 7.80;c151 2.70 32.00;c059 9.20 32.00;c035 1.70 32.00;c034 3.20 32.00;c033 3.20 32.00;c011 8.80 32.00;c152 15.00 20.60;c152 17.70 23.20;c071 1.70 14.00;c072 12.40 32.00,31.17\r\nZVRBL,I48P,Kitchen,5,5,Yes,Person A is in a kitchen clearing a table of dirty plates.  Person A grasps the plates and takes them to the sink and begins washing the plates.,dish;food;sink;table,A person cleans off the dining table and brings everything to the sink where they wash the dishes.;A person takes two plates from the dining room table into the kitchen and begins to scrub and clean the plates.,c118 2.30 12.30;c119 8.10 16.60;c120 0.00 12.60;c121 11.30 33.00;c062 9.90 17.00;c012 0.00 6.10,31.62\r\nMEHNH,0Z4M,Bedroom,2,3,Yes,A person began to undress their clothes in daylight then started sneezing next to the door.,cabinet;closet;clothes;door;hangers;shirt;wardrobe,a person opens a wardrobe and takes off a shirt;A person is standing near the closet they open the closet and unbutton their shirt and take off their shirt.;A person is standing in front of the mirror and undressing. He buttons his shirt and removes it before walking out of the room.,c008 3.50 9.50;c155 5.00 29.50;c113 3.50 9.50;c141 3.70 9.70;c148 11.60 34.00,33.25\r\nXVLE2,ARRB,Entryway (A hall that is generally located at the entrance of a house),5,,No,A person leaves a sandwich on a plate so they can answer the phone while they sneeze at the same time.,hair;phone,\"A person answers the phone and sneezes;A person enters a house and has a sneeze, and then begins to talk on their cell phone while standing in front of the open door behind them.\",c015 3.30 24.00;c019 5.90 24.00;c153 4.20 9.80;c144 12.60 17.70;c018 1.60 8.10,23.25\r\nKOVTR,CP6Y,Recreation room / Man cave,6,6,Yes,\"A person awakens in their sofa, grasping their blanket tight and shivering. They stand up and walk to nearby cabinet where they pull out a pill bottle and take two pills.\",bed;blanket;cup/glass/bottle;flipflops;food;medicine;pill bottle;shoe;sofa;table,\"A person wakes up from sleeping, stays wrapped in the blanket they were using, and then takes some pills.;A person gets up from the couch, wrapped in a blanket, and takes some medicine;A person gets up from the bed, wraps the blanket around them, then pours a drink.\",c122 0.00 8.70;c072 0.00 36.00;c073 7.40 36.00;c146 4.20 14.20;c154 10.20 19.80;c156 20.40 36.00;c128 20.40 26.20;c071 6.80 18.20;c129 28.40 35.00;c134 0.00 8.00;c055 13.00 19.70;c133 2.90 9.90;c110 20.80 26.00;c135 5.60 16.30;c070 6.80 36.00,35.25\r\n4GHHK,M7K8,Pantry,5,7,Yes,A person is standing in the kitchen and opens the pantry. This person pulls out a dish and some bread and starts making a sandwich.,bag;bread;closet/cabinet;dish;food;knife;peanut butter;sandwich,A person opens a cabinet and takes out a paper plate and a loaf of bread. The person places two slices of bread on the plate and begins to make a sandwich.;A person is in the kitchen.  The person then takes bread out of the cupboard to make a sandwich.,c118 4.00 22.50;c119 18.50 23.70;c066 11.50 32.20;c154 0.00 10.20;c062 6.00 17.90;c020 6.00 15.00;c021 10.70 19.50;c112 5.20 9.30;c152 15.40 19.50;c061 14.00 18.40;c120 2.30 6.70;c063 4.20 9.00;c113 0.20 5.20,33.33\r\n2NXFV,M7K8,Living room,7,5,Yes,\"A person is lying down on their sofa, snuggling a pillow. Another person is sitting in a chair beside them, eating food out of a bag.\",bag;chair;food;pillow;sofa,\"A person is lying on the couch. Another person sits down on a chair next to them.  They reaches into a bag, pull something out and eat it. They then get out of their seat.;A person is lying down on a couch while hold a pillow, and a second person is sitting beside the couch and eating a snack, but I can't make out what the snack is that they're eating.\",c061 2.00 8.90;c076 0.00 31.00;c122 0.00 31.00;c151 0.00 3.40;c020 0.00 31.00;c063 2.40 8.90;c078 0.00 31.00;c156 4.70 31.00;c021 0.00 6.00;c149 4.00 12.40;c062 4.60 9.00;c154 26.90 31.00;c059 0.00 30.90;c123 0.00 31.00;c152 0.00 5.50;c152 5.30 11.60,30.50\r\nEFADI,CP6Y,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person in their closet is undressing by taking their jacket off. They begin pouring some medicine into a small cup. Afterwards, they hold the medicine up to a mirror.\",chair;clothes;coat;glass;medicine;shelf,\"There is a person standing up and taking off a shirt.  That same person takes some medicine off a shelf and pours it into a glass.;A person takes off their vest, puts in on a chair, and then puts something into a small cup.;The person takes of the vest the pours a liquid into a small bottle and looks to examine the contents.\",c128 6.10 21.00;c001 4.20 9.00;c155 0.00 8.20;c129 5.20 11.00;c003 4.00 8.80;c000 2.00 9.00;c081 11.40 16.40;c107 5.60 21.00,19.75\r\nE6RD3,ZDKC,Dining room,6,7,Yes,\"A person laughing at the dining table, takes a broom and goes through a doorway.\",broom;closet/cabinet;door;hair;table,\"A person is sitting at a table throwing a fit they get up and walk over to pick up a broom and then they walk out.;A person holds his head in his hands and laughs. Then the person stands up, picks up a broom, kicks open a door, and exits.\",c098 20.70 28.00;c149 0.00 7.60;c154 13.90 22.00;c100 19.80 26.00;c097 23.10 28.00;c011 0.00 20.20;c099 20.30 28.00;c144 5.80 17.50;c008 22.90 28.00;c152 0.00 28.00;c059 0.00 19.50;c113 22.10 28.00,27.21\r\nYIIFF,M7K8,Home Office / Study (A room in a house used for work),6,6,Yes,\"While tidying their office, a person straightened a picture on the wall, then picked up their clothes and began getting dressed.\",books;closet/cabinet;clothes;picture;shelf;sweater;sweatshirt;wall,\"A person is tidying up a shelf and straightens a picture hang on the wall. The person then picks up a sweater and puts it on while standing.;A person is organizing books on a shelf and then fixing a picture on a wall then putting on a sweatshirt.;A person organizes some things on a shelf, and then takes a sweatshirt and puts it on after adjusting a frame.;A person straightening books on a shelf, straightening a picture on the wall and putting on a sweater over her head.\",c083 5.70 15.30;c082 0.00 9.50;c148 19.10 31.00;c000 13.70 31.00;c088 6.80 15.00;c002 13.70 18.80;c114 0.00 10.90,30.17\r\nPZNVV,M7K8,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is tidying the area around the desk of their home office. The person picks up a bag and sneezes, which causes them to drop the bag.\",bag;notebook;paper holder;papers;table,The person standing rearranged the papers and some other things on the table  picked  up the bag on the top of the table and threw it down on floor.;A person flips through some papers on a  desk. The person takes a purse off the desk and puts it on the floor.;A person is standing by the counter going through a book and moving her purse. She begins to look down at the papers on the counter.,c022 11.20 18.60;c012 0.00 18.50;c023 12.90 20.30;c014 0.00 25.50;c020 13.10 19.70;c116 18.00 24.50,31.00\r\nKZR42,M7K8,Bedroom,6,6,Yes,\"A person is working on a doorknob in the doorway to their home office. The person begins staggering, lies down, and pulls out some medicine, which they take.\",bag;clothes;cup/glass/bottle;desk;door;floor;food;medicine;pills,\"She opens a bedroom door and falls to the ground. She takes a bottle of something out and smells it.;The person looks behind a door and does something with the lock. They lie down and open something, and a dog joins the person. The person puts something that was in the container in their mouth.;A person plays with a door knob and then sits down. The person pulls out a medicine bottle and takes some pills.\",c151 5.90 13.30;c128 16.50 26.30;c141 0.00 11.60;c129 16.20 27.30;c097 0.00 32.00;c140 0.00 8.20;c124 6.80 32.00;c156 20.60 27.20;c110 9.10 32.00;c110 8.40 16.70;c007 0.00 8.60;c107 9.90 32.00;c125 5.00 32.00,30.88\r\n2KGV3,CP6Y,Living room,6,7,Yes,\"A person is sitting on the couch eating a sandwich. The person is doing their homework as the person eats. Then the person leans forward to put their homework on the chair, laughing as the person does so.\",bed;book;couch;food;plate;sandwich;sofa;table,\"A person is sitting on a sofa reading a book and eating a sandwich. The person puts the book down to continue eating.;A person was writing in a book, they then took a bite of a sandwich. Then they put down the book, crossed their legs, and took another bite of the sandwich.;A person is sitting on a sofa while eating and reading a book. The person sits the book down and takes another bite of their food.\",c067 0.00 10.00;c156 2.60 13.10;c026 0.00 32.00;c032 0.00 32.00;c065 3.10 8.60;c068 5.70 12.30;c025 14.50 22.50;c028 18.20 23.90;c009 19.40 25.40;c115 0.00 23.70;c069 2.60 12.00;c145 0.00 23.70;c061 2.60 12.00;c135 0.00 32.00;c116 20.30 25.60;c123 0.00 32.00;c062 7.90 12.50;c063 2.60 7.20,30.75\r\n9FVR3,V044,Bedroom,6,7,Yes,\"A person is in their bedroom sitting on a bed with a blanket on their lap, and a laptop on the blanket while eating a cookie.\",bed;blanket;chair;food;laptop;sandwich;table,a person works on his laptop and eats something;A person sits on a bed cross legged on their laptop. The person eats some food while looking at their screen.;A person sits down on their laptop while eating some food. The person continues to eat and chew their phone while on their laptop.,c047 0.00 28.00;c051 0.00 28.00;c052 0.00 28.00;c135 0.00 28.00;c072 0.00 28.00;c156 0.00 28.00;c014 0.00 28.00;c061 6.10 28.00;c068 21.70 27.30;c069 6.10 11.50;c011 0.00 28.00;c065 6.50 28.00;c067 6.70 28.00,27.04\r\nFTH7M,P2J3,Hallway,4,5,Yes,A person is standing in front of a mirror fixing their hair. A second person walks in with a vacuum and begins undressing.,clothes;hair;mirror;vacuum,\"A person is standing in front of the mirror fixing their hair, while another person walks in carrying a vacuum they set the vacuum down and start taking off their shirt.;A person in a blue and white checkered shirts stands and looks at himself in a mirror while another person standing behind him removes his shirt.\",c096 0.90 32.00;c144 2.80 32.00;c155 13.20 32.00;c000 23.90 32.00;c002 12.70 27.90;c138 4.20 14.70;c137 4.00 16.60,30.96\r\nJ95U1,ZDKC,Dining room,4,7,Yes,A person is seen lying their head on a table. The look at their phone and begin laughing. They then turn on a nearby television.,chair;head;phone;table;television,\"A person sitting in a chair puts their head down on a table, then lifts it, looks at a cellphone, stands up and walks over to a tv and turns it on.;The person rested their head on the kitchen table for a moment. The person picked up a phone to play with it and smiled. The person then walked over and began watching TV.\",c016 10.30 28.30;c011 0.00 28.30;c132 30.70 38.00;c154 22.80 28.50;c017 10.10 38.00;c015 10.30 27.80;c059 0.00 27.90;c018 23.90 38.00;c152 18.00 22.50;c149 19.10 23.30,37.17\r\n40IEF,SW82,Living room,4,4,Yes,The person is lying in the bathroom doorway laughing at the phone.,floor;phone,A person sitting on the ground and plays on their phone.;A person is sitting on the floor scrolling through a phone.  The person finds something humorous to them and laughs.,c015 0.00 31.00;c016 0.00 31.00;c149 3.70 12.40;c125 0.00 31.00;c152 0.70 26.20;c124 0.00 31.00,30.00\r\nFK143,ZDKC,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is standing in the closet, looking through a cabinet. The person takes out a bottle of medicine, pours some into a small cup, and takes it.\",cabinet;cup;door;glass;medicine,A person walks over to the closet they open the closet and take out some medicine and then they take the medicine.;A person is opening a closet door. A person is taking and opening some medicine. The person is then consuming the medicine.,c113 0.00 11.20;c108 20.20 27.60;c129 31.20 37.00;c110 15.00 19.60;c141 2.20 6.60;c106 32.10 36.60;c008 4.40 9.50;c128 14.00 34.00;c107 20.00 28.00,36.46\r\nU08M9,GFWE,Hallway,7,4,Yes,A person is grasping the doorknob as they close the door and answer their phone.,closet/cabinet;door;phone,A person is standing in the hallway and talking on the phone. They continue to stand there and then walk towards the camera.;A person walks through the hall and talks on the phone,c006 0.00 5.90;c019 1.20 30.10;c141 0.00 6.50;c015 0.00 33.00;c112 0.00 6.50;c018 1.70 31.20,32.04\r\nCSPSU,BPXZ,Kitchen,4,5,Yes,A person stands in the doorway. The person walks over to a cabinet while drinking a glass of water.,cabinet;cup;dish;doorway;food;glass;shelf;water,A person walks in the kitchen drinking a coffee and straightening up the pantry;A person drinking from a disposable cup while walking into a kitchen. The person then opens some cupboards and adjusts some dishes.,c112 15.90 22.70;c113 7.50 12.50;c097 3.60 9.00;c106 0.80 7.60;c109 6.80 13.70;c110 0.00 12.80;c120 9.00 19.40;c107 10.30 17.10;c061 0.00 11.10;c082 10.20 18.20;c118 0.00 9.20;c110 10.60 16.10;c119 10.40 18.50;c081 12.20 18.00;c107 0.00 12.50;c114 9.00 19.30;c061 0.00 26.00,25.33\r\n5DFKT,M7K8,Pantry,4,7,Yes,A person is standing in a pantry holding a broom and drinking coffee.,broom;coffee;cup;dish;doorway;dustpan;food;table,\"Person is drinking coffee while holding broom, then walk to counter and sets cup down.;A person is standing while holding a broom and the person begins to take sips from a coffee mug while continuing to hold the broom.\",c106 0.60 31.00;c107 0.00 4.60;c098 0.00 32.00;c118 0.00 31.10;c061 0.00 31.10;c063 0.00 31.10;c062 0.00 31.10;c097 0.00 3.70;c009 26.20 31.30,30.92\r\nN86ED,M7K8,Pantry,7,7,Yes,\"A person stands in the pantry, eating a sandwich. The person opens a box of cookies then wipes their hands off of their clothes.\",box;counter;food;groceries;napkin;sandwich,\"Person standing in a kitchen smelling a sandwich and eating some cookies out of a box.;There is a person standing in a kitchin  who has a sandwich wrapped in a papertowl who keeps smelling it.  Once the person is finished smelling it, she puts it down on the counter then picks  up a box of crackers and starts to eat them.\",c067 0.00 9.60;c065 1.70 11.50;c040 9.60 26.50;c042 21.20 28.90;c044 12.80 22.70;c063 0.00 9.90;c156 0.00 8.50;c130 19.30 25.80;c041 8.50 14.40;c068 4.50 10.30;c069 0.00 5.20;c043 6.30 12.60;c062 4.80 10.30;c061 0.00 10.10;c039 18.20 24.10,31.71\r\nRPY8D,VOOS,Recreation room / Man cave,5,7,Yes,A person is holding a mirror and then snuggling under a blanket in a recreation room / man cave.,blanket;hair;mirror;sofa/couch,\"A person looks into a mirror and fixes their hair.  This person then lays down under a blanket on the couch.;The person, sitting on a couch, adjusts their hair using a mirror. The person grabs a blanket from the couch and wraps themselves in it. The person puts the mirror down and lays down with the blanket on the couch.\",c093 0.00 18.70;c072 16.90 32.00;c073 7.80 14.40;c059 0.00 14.60;c094 0.00 14.90;c144 0.00 10.90;c122 11.20 32.00;c123 0.00 15.20;c070 12.60 17.20;c096 0.00 17.60,30.62\r\n7JHW2,ARRB,Garage,5,7,Yes,\"A person runs into the garage, holding a laptop. The person puts the laptop down onto a table.\",doorway;laptop;table;watch,\"A person walks into a garage and sets a laptop computer on a counter. The person then stands looking at the computer.;A person walks into a room, places an object down onto a surface, steps back and stands still waiting.\",c047 0.00 7.00;c049 3.10 8.30;c009 3.00 8.30;c150 0.00 7.00;c097 0.00 3.30,19.96\r\nRCW5X,M7K8,Bedroom,6,7,Yes,A person is standing by the window grasping a bag.,bag;window,A person is holding a purse and staring out the window;A person is holding a purse and standing and staring out of a window.,c020 0.00 32.00;c092 0.00 23.10,30.71\r\nR5B50,ENHU,Bathroom,5,6,Yes,A person is fixing a vacuum.  Then a person is sitting and putting on clothes.,bag;chair;clothes;jacket;toilet;vacuum,\"person sitting on a toilet fixes as Dirt Devil with a screwdriver, puts down the handvac and puts on  a jacket;A person sits on the toilet and fixes and object before putting a jacket on.\",c136 0.00 14.10;c137 0.00 14.30;c002 12.10 19.80;c022 0.00 14.80;c020 0.00 15.00;c059 0.00 25.00;c021 0.00 16.30;c001 0.00 25.00;c000 12.30 25.00;c148 14.00 25.00,23.83\r\nLYY21,JTAS,Kitchen,6,7,Yes,\"A person is cooking at a stove, then grasping a cup of coffee in a kitchen.\",coffee;cup;dish;food;glass;stove,\"A person in a kitchen uses a spatula to stir a dish being prepared in a saucepan, then picks up a mug.;A person is cooking at the stove. The person stops cooking then picks up a mug and holds it in their hands.\",c107 16.60 34.00;c147 0.00 19.40;c110 14.90 20.90;c118 16.20 34.00;c110 14.60 34.00,33.08\r\n4KYZH,I48P,Kitchen,6,6,Yes,A person takes something out of the refrigerator and starts to eat it while they walk over to the stove to continue cooking something in a pot.,dishes;food;fridge;refrigerator;stove,\"A person opens the fridge and grabs something to eat, then goes to the stove and cooks something while continuing to eat.;A person opens the fridge and gets something before closing the door and moving to the stove to stir what he is making.;A person opens a refrigerator and removes something from it and then walks over and stirs something that's cooking in a pot on the top of the stove.\",c156 9.40 14.80;c143 0.00 4.20;c142 9.40 16.10;c147 15.80 38.00;c061 3.50 11.50;c063 2.40 11.90;c062 7.70 13.20,36.58\r\nYXC7P,ENHU,Hallway,6,7,Yes,\"A person is sitting down on the floor, grasping a tool and trying to fix a laptop. There is a book open, and the person is looking at the book for instructions.\",book;floor;food,A person sits at the top of some stairs and turns the page of a book they are reading while eating food.;The person is sitting in the hallway reading a boo and eating from a plate in front of them on the floor.,c032 0.00 11.00;c125 0.00 11.00;c145 1.60 10.40;c062 0.00 5.40;c027 1.70 8.60,9.96\r\nMS4GA,M7K8,Other,5,7,Yes,\"A person opens a door with the doorknob, then throws a broom inside.\",broom;closet/cabinet;door,\"A person opens a door and puts a broom inside.  This person then closes the door and walks away.;A person opens a closet door, puts a broom into the closet, closes the door and then walks away.\",c098 0.00 7.70;c099 2.80 9.10;c141 1.30 10.00;c006 5.40 11.50;c008 1.30 6.90;c097 1.00 9.90;c152 6.20 12.10;c112 6.00 13.00;c113 1.90 9.00,29.71\r\nQQMY8,ENHU,Bedroom,2,6,Yes,\"A person laughs as they undress. The person turns on a light, and takes a glass off of a table.\",closet;clothes;cup;dish;door;glass;light;mirror;shelf;table,\"A person is undressing and turning on a light then grabs a cup turns off the light and drinks it.;A person unzips a blue sweater, walks into a closet, sets the sweater down and exits while drinking from a green cup.;A person removes his jacket, walks into a closet, puts the jacket on a counter, turns out the light in the closet, and walks out.\",c106 6.70 14.00;c105 9.80 14.00;c104 0.80 5.40;c155 0.00 9.10;c000 4.00 11.70;c081 7.10 11.90;c001 3.80 11.70;c110 6.30 11.70;c097 4.80 9.40;c120 6.60 14.00,13.29\r\nB4TWR,AT5D,Hallway,4,2,Yes,One person is in the doorway snuggling a blanket and another person is putting clothes in a hall wardrobe.,blanket;clothes;doorway;shelf;towel;wardrobe,\"One person is folding some clothes and they put them on a shelf while another person begins snuggling with a blanket. They begin to talk and laugh.;A person is folding a towel while they other person hugs a blanket, then they start talking;The people are folding clothes and then one puts what they folded away as the other person decides to keep the shirt instead of put it away.\",c070 0.00 32.00;c072 2.50 32.00;c149 13.70 32.00;c004 0.00 16.10;c081 9.80 16.10;c075 0.20 14.70;c035 0.00 16.60;c073 0.00 15.30;c152 13.80 32.00;c000 0.00 32.00;c033 0.00 32.00;c034 9.60 17.10;c001 9.60 16.30;c071 9.60 16.30,30.88\r\n5I5E5,M7K8,Bedroom,7,7,Yes,\"A person is sitting as a desk in the bedroom. The person takes a tissue from a tissue box, and sneezes into it.\",box;chair;desk;mirror;table;tissue,A person is sitting at a desk they sneeze and look into a mirror;There is a person sitting in a chair.  That same person grabs a tissue and sneezes.,c011 0.00 29.00;c044 2.60 8.40;c153 4.20 10.10;c096 0.00 29.00;c059 0.00 29.00,27.71\r\nHT9YB,M7K8,Living room,5,4,Yes,A person on a couch beneath a blanket is working on a laptop and laughing.,blanket;laptop;phone/camera;sofa;something,A person watches something on their laptop. The person appears to talk someone outside the camera view. The person continues to watch the laptop;A person talks to someone offscreen and looks at a laptop screen while sitting down. The person continues to look at the laptop.,c052 1.60 49.40;c123 0.00 53.00;c149 0.00 9.00;c152 0.00 12.20;c018 47.00 53.00;c051 0.00 50.20;c047 0.00 52.50;c015 48.00 53.00,52.04\r\nLUQWY,EDYS,Living room,7,7,Yes,Person grabs laptop from book shelf then realized its not working then person sits down and starts fixing it.,bed;chair;laptop;shelf;sofa,\"A person grabs a laptop from the shelf and sits down on the couch. They open the laptop and begin working on it.;A person picks their laptop up and plays with it then gets up;A person walks in the room, grabs their laptop and starts playing on it.\",c048 8.30 20.50;c052 16.50 28.00;c151 3.30 8.00;c135 3.50 32.80;c123 5.30 32.80;c154 27.90 35.00;c046 24.80 33.10;c059 4.20 35.00;c051 13.60 28.10;c050 0.90 6.60;c047 1.20 35.00,34.12\r\nJMPKP,GFWE,Stairs,7,7,Yes,A person is seen walking to their closet with some shoes. They put the shoes away and begin sitting down on a chair.,chair;closet;door;shelf;shoe,\"A person is putting their shoes in a closet then sitting on a chair looking at the stairs.;A person, wearing a green sweatshirt, puts flip flops in a closet, closes the door and then sits in a chair at the bottom of a stair case.;Person walks into a hallway open a door to a closet put some shoes in the closet then sit in a chair.\",c053 0.00 9.80;c154 29.40 34.60;c054 5.10 9.80;c059 14.80 33.00;c058 3.90 10.00;c151 13.10 20.50;c008 2.80 8.80;c141 2.60 7.50;c081 4.80 10.70;c113 2.60 8.80;c006 6.90 14.50;c112 6.90 14.50;c152 15.10 22.50,35.58\r\nK6KNC,ENHU,Hallway,5,6,Yes,A person is sitting on a pillow and then smiling into a camera in a hallway.,floor;phone,The person is sitting down on the floor holding a phone. The person is smiling at the phone.;Person sitting on the floor in a hallway taking a picture with a cell phone.;A person is sitting on the floor. The person then takes their phone from somewhere. The person is then playing with their phone while smiling.,c152 1.50 7.00;c015 0.00 7.00;c125 0.00 7.00;c124 0.00 7.00;c087 2.70 7.00;c151 0.00 2.80,6.50\r\nWKVWF,JTAS,Living room,6,7,Yes,A person throws a picture onto a fold-up bed. The person takes a drink from a cup of coffee then begins tidying up the room.,book;box;cup;floor;mug;object;picture;sofa;table,\"A person throws a book onto the sofa, takes a drink from a mug, and then takes things out of a box.;A girl throws a book onto a couch. Then, still standing, she picks up a cup and begins to take a drink from it before leaving.;A person places a book on a chair while holding a cup of water than drinks from it and places their ipod in a box.\",c106 2.40 9.60;c116 0.00 4.20;c044 19.70 30.00;c043 18.90 23.70;c009 9.50 15.70;c028 0.00 4.30;c031 0.00 4.30;c109 9.70 15.90;c127 12.20 30.00;c107 0.00 14.40;c088 6.30 11.00;c040 18.60 30.00,29.08\r\n5UNMN,ENHU,Bedroom,4,7,Yes,A person is washing fingerprints off a door and then working on homework at a table in the home office / study.,chair;closet/cabinet;cloth;desk;door;notebook;paper;table,There is a person wiping a door with a towel.  That same person then sits in a chair at a desk.;A person scrubs their door before sitting at a desk.;A person cleaning a door with a black rag and then sitting down at a desk and turning the page on a book.,c145 8.90 15.00;c151 7.60 12.90;c059 7.30 13.00;c014 8.80 15.00;c114 0.00 9.10;c011 8.90 15.00,14.08\r\nOE2OX,EDYS,Closet / Walk-in closet / Spear closet,3,6,Yes,A person walks around a walk in closet carrying a blanket. The person takes some of the wardrobe from hangers and puts them on.,blanket;closet;clothes;doorway;shelf;wardrobe,\"A person enters a room, puts something into a closet, takes a shirt from a hook and puts it on.;A person walks into a room, puts away linens into a closet, puts on a red button up shirt and walks away.\",c070 0.50 11.90;c075 1.70 11.50;c148 2.20 15.40;c113 2.20 8.50;c071 4.70 13.00;c081 8.50 15.40;c002 2.20 9.90;c004 3.90 13.90;c097 0.00 3.80;c000 1.20 14.90;c112 11.90 18.00;c001 7.20 17.50,33.38\r\nWLV4Q,4UGC,Stairs,3,7,Yes,A person is standing on the stairs with a blanket. They begin to smile as the look through a book.,blanket;book;towel,A person has a towel and a book on the steps. They put the towel on their shoulder before flipping through the book.;There is a person holding a blanket over their shoulder.  That same person is also looking at a book.,c026 0.00 31.00;c070 0.00 31.00;c033 0.00 29.90;c029 9.80 16.80;c032 8.60 31.00;c027 9.80 15.00;c071 0.00 9.80;c152 10.60 16.50,29.83\r\nLDNE2,JQ7D,Dining room,4,7,Yes,\"A person walks into the dining room, carrying a vacuum cleaner. The person sets the vacuum down, takes a book from the table, and leaves.\",book;doorway;vacuum,\"A person carries a vacuum into a room, puts it down, picks up a book from a table and then leaves the room.;A person walks into a room with a vacuum, and then picks up a book off a table and beings to look through it, eventually leaving the room.\",c032 0.00 5.20;c137 0.00 2.50;c026 8.20 33.00;c030 23.00 33.00;c097 25.10 31.20;c138 0.00 6.80;c027 9.50 14.40,31.83\r\nGT43R,DH76,Bathroom,7,7,Yes,\"A person walks into the bathroom, sneezing and holding a blanket. The person takes a box of tissues from the shelf and walks out.\",blanket;box;doorway;light;shelf;towel,\"The person turns on a light, walks in the bathroom, and sneezes a few times. They fumble with something in the bathroom, pick something up, and leave.;A person walks into a dark bathroom, sneezing multiple times. The person then turns around, turns off the light again, and exits.\",c043 12.60 25.50;c070 4.00 22.40;c153 4.30 23.60;c104 2.10 9.30;c105 17.70 23.60;c040 14.70 22.30;c097 4.50 11.20;c033 3.80 22.10,34.00\r\nLD6TD,4UGC,Dining room,6,5,Yes,\"A person awakens in their dining room holding a book. They take the book, and a glass and leave.\",book;chair;cup;glass;table,\"A person is sitting in a chair sleeping while reading a book, they then pick up a glass and walk away.;A person is sitting and reading a book. The person grabs a book from a nearby table. The person then stands up and walks away while holding both the book and the glass.;Person in a room sitting at a table with a book in hand then get up and walk out the room.\",c107 19.60 25.70;c025 12.20 18.30;c032 0.00 9.40;c154 24.60 30.30;c011 0.00 14.00;c110 19.60 36.00;c026 0.00 36.00;c146 5.40 10.30;c059 0.00 29.10;c115 0.00 36.00,35.38\r\n9AC1T,CP6Y,Living room,7,5,Yes,One person was running instead of doing their homework. The other was working at the desk.,book;chair;desk;homework;paper;table,There are two people here. One person is sitting at the table and reading something. The other person is running around in circles.;A person sits at a table reading a book intensely while another person runs aimlessly in circles around the room.;A person sits down reading a book while another jogs around in circles in the same room.,c145 3.10 12.20;c150 8.00 18.00;c032 0.00 4.80;c011 3.10 12.20;c059 0.00 18.00;c014 0.00 18.00,17.25\r\nX2IUY,CP6Y,Kitchen,4,6,Yes,\"Person is standing in front of a stove cooking something, while another person is holding a camera.\",camera;dish;food;groceries;phone;stove,\"Two people stand at a cooking station, one grabs a cooking utensil and uses it while on looks on in inspection.;A person prepares food on the stove while another watches while holding an object.\",c015 0.00 19.00;c147 0.00 19.00;c087 0.00 19.00;c130 0.00 19.00;c118 0.00 19.00;c151 0.00 19.00;c154 0.00 19.00,17.83\r\nXRG9K,ENHU,Basement (A room below the ground floor),5,7,Yes,\"One person opens a box, then sneezes and takes a picture and a book out of the box.\",book;box;floor,\"Person is sitting on floor sneezing and opening box, then takes something out box.;The person is on the floor then sneezes before opening a box.\",c041 1.70 9.40;c044 5.50 11.50;c026 10.60 20.00;c027 11.20 17.30;c030 10.20 16.00;c032 11.40 20.00;c153 0.20 6.40;c043 0.00 20.00;c125 0.00 20.00,18.96\r\nKJRR9,CP6Y,Bathroom,7,7,Yes,\"A person grasps their bathroom doorknob and walks into the bathroom. The person turns on the light, and washes their hands.\",door;hand;light;mirror;sink,\"A person opens a door, turns on a light, walks in the room and washes their hands in a sink.;a person opens a door, turns on a sink, and starts washing some sort of object in the sink.;person is opening a door and turning light on, and taking soap from wall and washing his hands in sink.\",c141 1.60 7.10;c104 6.40 11.20;c139 10.80 26.00;c097 4.60 11.70;c008 2.40 9.20;c096 7.90 26.00,24.88\r\n0E6H9,4UGC,Garage,6,6,Yes,\"A person is drinking in the garage while standing in the doorway, playing with a camera.\",camera;cup/glass/bottle;doorway;food;phone;picture,A person in a garage door looks at their camera then drinks from a bottle.;A person is taking a picture of something. The person is also holding a bottle of liquid. The person is then drinking the liquid.,c016 0.00 21.30;c061 0.00 32.00;c087 6.60 12.70;c015 0.00 32.00;c107 0.00 32.00;c106 22.60 29.50;c088 15.10 20.70,30.58\r\nBJ7YW,ENHU,Bedroom,5,6,Yes,\"A person is tidying up the bedroom.  The television is on, the person is now washing the glass of the window.\",clothes;cup;desk;floor;glass;shoe;television;window,\"A person grabs some shoes and tidies them up then goes over and looks out a window.;Person standing in a room pick up some shoes and place them in a closet then go over to a painting.;A person watching tv, then a person picking something up off the ground and putting it in a closet. A person cleaning a window.\",c091 9.40 15.00;c132 0.00 2.60;c111 9.40 15.00;c127 3.60 8.30;c092 8.40 15.00;c056 0.00 6.50;c054 0.00 8.80,13.58\r\nU9NI5,CP6Y,Kitchen,7,7,Yes,\"A person is standing in the kitchen eating a sandwich.  The person picks up a glass of water and takes a drink, the runs to a mirror on the wall and watches themselves eat.\",cup;dish;doorway;food;glass;light;mirror;sandwich;table;wall;water,\"The person was eating a sandwich, and then took a drink. After that he moved to a mirror, turned the lights on, and took another bite of his sandwich.;A person is standing and eating and drinking from a cup. Then they walk into the bathroom and begin checking their hair in the mirror.\",c065 13.00 22.30;c106 3.30 11.20;c096 12.60 23.00;c156 0.00 5.10;c150 9.40 16.50;c118 0.00 23.00;c107 2.90 12.90;c067 0.00 23.00;c097 10.60 15.30;c109 7.00 13.30;c104 11.30 16.60;c061 0.00 23.00;c110 2.20 7.70;c009 6.50 12.70;c094 16.10 21.60;c069 0.00 4.60,21.58\r\n2KMGY,CP6Y,Hallway,6,7,Yes,\"A person can awaken next to a bag of groceries in the hallway, A person can undress while drinking coffee in the hallway.\",bag;clothes;cup;dish;drink;floor;jacket;table,\"A person places a bag on the floor and takes a cup from a table.;The person stands up from a seated position and rubs their eyes. They fumble with a bag, take a drink, and take their jacket off. They then pick up their drink again.;A person was sitting on the floor, then stood up, touched a plastic bag, then picked up a cup from a table and drank from it while starting to remove a jacket, then set the cup down and took the jacket all the way off, and then reached again for the cup.\",c021 3.70 9.20;c106 7.90 14.30;c107 6.70 14.90;c146 0.00 6.00;c000 11.90 21.00;c120 6.00 11.50;c110 5.90 11.50;c125 0.00 3.40;c009 10.60 15.50;c155 7.20 20.10;c154 0.00 5.00,19.54\r\n1P7GJ,GFWE,Bathroom,6,6,Yes,\"The person turned on the light in the bathroom. They began their cleaning routine by taking the garbage out from under the sink. The person then took out a broom from the closet, and swept the floor. After throwing the garbage bag by the door, the person washed their hands.\",bag;broom;closet/cabinet;door;floor;mop;trash can,\"Someone is in the bathroom looking for something in the cabinets and grabs a mop from a closet and starts mopping.;A person sweeps the bathroom floor, cleans up then washes their hands.;A person is the bathroom and they open a door to grab a broom and sweep things up.\",c102 20.60 32.50;c141 16.20 24.20;c008 16.40 23.60;c112 18.30 23.80;c098 19.80 32.50;c006 18.30 23.80;c099 28.50 34.50;c113 15.10 22.30;c100 18.50 24.60;c127 21.50 37.50,42.67\r\nU7O1U,M7K8,Hallway,5,7,Yes,One person grasping a vacuum sneezes as another person undresses under a light.,closet/cabinet;clothes;shirt;vacuum,\"A couple of people in a hallway .One person is undressing,the other person is carrying a vacuum.The people start laughing.;Two people are standing in the hallway one person is undressing while the other person is holding a vacuum.;A person takes off a sweatshirt while another person takes something from a closet.\",c137 1.10 27.80;c153 6.50 13.10;c155 6.20 16.50;c149 17.60 28.80;c138 0.00 3.80;c152 12.10 34.00;c114 0.00 34.00;c001 10.80 15.90;c003 10.80 16.10,32.58\r\n44T8B,GFWE,Bathroom,6,6,Yes,A person is in the bathroom smiling and washing his face. A table is nearby with coffee on it.,cabinet;hands;mirror;sink;water,A person is washing their face in the bathroom and smiling.;A person washes their hands in a bathroom and wipes their face down while smiling at the camera. The person rubs their hands on their face.;A person is standing at the bathroom sink and wets their hands and rubs their cheeks with the wet hands while smiling and looking at the mirror.,c152 7.80 31.00;c149 5.60 31.00;c096 0.00 10.50;c139 0.00 3.50;c094 3.50 10.50,29.62\r\nIFRT0,I48P,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is tidying with a broom. They stop, take medicine from their pocket, and read the label.\",broom;floor;medicine;paper/notebook,A person sweeps the floor with a broom then takes something from their pocket and looks at it.;A person is sweeping the floor and then takes out something from a pocket and starts reading it.,c098 0.00 20.70;c102 0.00 18.70;c128 16.20 32.00;c099 13.90 21.10;c127 0.00 20.50;c115 17.30 32.00,30.58\r\n4UXE3,M7K8,Kitchen,6,6,Yes,\"A person is cooking on the stovetop.  The person steps away from the stove to tidy up the counter, putting a glass in the sink.\",cabinet;dish;food;glass;sink;stove;table;windwo,A person pulls an item out of a cabinet and begins cooking. The person then dumps a glass in the sink and walks away.;A person opens a kitchen drawer to remove a spatula then stirs a pot that is on the stove before putting a cup in the sink.;A person takes a spatula from a drawer and cooks food.,c147 5.90 27.80;c118 6.10 15.30;c111 24.70 31.40;c119 28.40 34.00;c113 0.00 5.50;c120 4.60 9.40;c110 24.50 29.10;c109 25.60 31.10;c107 24.50 29.80,32.88\r\n2OREK,M7K8,Kitchen,6,6,Yes,A person is in the kitchen cooking by the window in the light while snuggling with their kitten,animal;dish;pot;window,A person stands in a kitchen and starts to cook something on the stove while looking out the window in a curious manner.;AA person holds their dog while standing in the kitchen. The person puts their dog down while cooking something in a pot.,c092 11.50 17.60;c118 0.60 4.90;c152 14.60 20.90,30.21\r\nHDCT0,M7K8,Kitchen,6,6,Yes,A person is in their kitchen laughing at a picture by the sink while cooking,counter;food;mirror;paper/notebook;picture,\"Person standing at counter, holding picture, laughing, then kicks up leg, looks away and back at the picture.;A person is standing at the kitchen sink reading they lift their leg and turn and talk to someone else while they are standing at the sink.;A person is standing at a sink reading a paper laughing and kicks up left leg then looks at the camera\",c149 0.00 32.00;c152 0.00 32.00;c088 0.00 32.00;c084 0.00 32.00;c096 0.00 32.00;c093 0.00 32.00;c115 28.90 32.00;c147 28.90 32.00;c085 28.90 32.00,30.88\r\nTDGNE,JQ7D,Kitchen,5,7,Yes,A person is cooking on the stove and eating an occasional bite from the pan. They turn and open the door to the refrigerator.,door;food;refrigerator;spoon;stove,\"A person standing at the stove in the kitchen, stirring whats in the pan and putting spice in it, then going to the refrigerator and opening it.;Person standing at the stove cooking a meal opens up and look into the refrigerator\",c143 22.90 29.00;c147 0.00 25.40;c156 3.50 8.60;c062 6.10 12.50;c008 22.00 27.80,27.88\r\nAOAY0,CP6Y,Living room,7,7,Yes,Two people are sitting on the couch drinking coffee while they are working on cleaning a picture.,book;coffee;cup;dish;picture;sofa;table;towel,\"A girl sits on a couch drinking from a cup, before picking something up from the floor and handing it to the boy who is sitting next to her.;A girl is sitting on a couch and drinking from a cup. The boy beside her is doing the same, then begins showing her a book, which they look at together.\",c106 0.00 11.80;c123 0.00 23.00;c088 0.00 6.90;c109 3.80 12.50;c026 0.00 8.00;c118 0.00 12.50;c011 0.00 23.00;c084 0.00 23.00;c088 0.00 23.00;c109 5.10 9.40;c009 4.20 9.90;c107 0.00 12.50;c033 0.00 23.00;c119 0.00 23.00,21.92\r\nVXJS4,SW82,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person walks through the doorway, smiling. The person checks their phone.\",clothes;door;phone,\"A person walks outside at night and looks at their phone. They do something that involves lots of button pushing.;A person opens the door and walks into a darkened room, and stands there while reading and texting on their phone.\",c015 0.00 31.00;c016 0.30 31.00;c152 0.00 7.10;c141 0.00 3.70;c008 0.00 4.00;c097 0.00 3.40,30.21\r\nHH1R7,4UGC,Kitchen,7,7,Yes,The person was looking at the cabinet by the sink when the person started sneezing because the person was cooking with pepper.,cabinet;dish;food;glass;pepper;pot;shelf;sink;water,\"A person is holding a glass of water and a pot then pouring the water down the sink while sneezing.;A person stands in a kitchen, grabs something out of the cabinet, sprinkles it into a pot, smells it, and starts sneezing furiously before putting it back into the cabinet.;A person in the kitchen looks inside the kitchen cabinet, sneezes from pepper they are pouring into a pot, and then puts the pepper into the cabinet.\",c113 0.50 6.60;c153 14.50 26.20;c120 7.40 21.70;c112 1.60 7.90;c063 7.20 22.00;c062 25.30 31.00;c118 6.90 22.60;c061 0.00 31.00;c081 26.50 31.00,29.62\r\n1GII3,CO87,Laundry room,7,7,Yes,\"A person stands in front of the washing machine. The person takes a piece of food from a nearby cabinet, and begins eating it.\",bag;cabinet;clothes;doorknob;food;towel,\"A person closes a washing machine, reaches into a cabinet, takes out a snack and begins to eat it.;A young lady is eating a bag of chips as she waits for her laundry to get done. She is inside the laundromat and she is observing the washing machine machine in which she has her clothes while eating a bag of chips.\",c063 7.20 12.20;c113 6.20 12.50;c156 18.70 25.00;c037 2.30 7.20;c038 2.60 7.20;c062 8.60 14.60;c112 7.50 12.90;c141 5.50 10.20;c036 1.60 6.60;c034 1.90 7.50;c035 1.40 6.00;c033 1.70 6.70;c020 7.00 30.00;c023 7.00 12.30;c005 0.00 3.90;c061 14.60 28.00;c021 10.50 18.80,28.67\r\n7E2AJ,ENHU,Bathroom,6,5,Yes,\"A person is lying down in their bathroom. They stand up and start undressing by taking their jacket off. They are hungry and want some food, and fortunately there is a sandwich on the counter that they begin eating.\",clothes;counter;floor;food;mirror;sandwich,\"A person is awakening on the floor, they then get up and begin to take off their clothes and throw them on the floor.;Person laying on bathroom floor, gets up, takes off coat and eats sandwich that is seating on side of sink;A person is lying on a bathroom floor and then they stand up and take off a jacket and throw it on the floor.\",c061 11.10 17.00;c065 12.10 17.00;c069 11.10 16.10;c003 7.90 12.60;c154 0.70 5.80;c156 12.10 17.00;c146 0.00 4.10;c063 9.90 15.20;c067 12.60 17.00;c001 7.90 12.80;c155 7.00 12.40;c155 2.00 12.10;c124 0.00 3.10;c096 2.70 10.90,16.25\r\nY8L60,ENHU,Pantry,5,7,Yes,A person is sneezing as they open the door and then they begin to smile at the camera to take a picture.,camera;closet/cabinet;door;floor;phone;picture,\"A person opens a cupboard, sneezes, and takes a camera out and smiles.;A person opens a small cabinet door, sneezes, and then takes a selfie with their phone.\",c008 0.00 4.80;c087 3.00 9.00;c015 2.80 9.00;c153 0.00 6.50;c152 3.80 9.00;c125 0.00 9.00;c141 0.00 2.80;c113 0.00 4.10;c018 2.30 9.00,8.42\r\nDBHN6,CP6Y,Stairs,6,5,Yes,One person runs up the stairs holding a pillow and another walks downstairs smiling with a sandwich in hand.,pillow;sandwich;stairs,A person going up the stairs with a pillow and another person coming down the stairs with something in the hand.;One person carries a pillow up the stairs and passes another person coming down the stairs.,c076 2.20 12.50;c067 5.10 12.90;c150 1.90 12.50,13.29\r\nCM6T8,ENHU,Closet / Walk-in closet / Spear closet,2,6,Yes,A person is opening their closet looking for a sandwich. They find the sandwich on a shelf in the closet and then start running out of the closet.,closet;dish;door;food;plate;sandwich;shelf,\"A person opens a door to a closet, then proceeds to walk in, grab a plate with a food item on it.  The person then takes a bite and walks out of the closet.;Person open up the door then take a dish off the shelf then proceed to walk out of the room.;The person walks into the closet and gets a plate of food from the room before walking back out.\",c065 5.20 12.60;c061 5.80 13.00;c063 1.80 8.40;c156 5.00 11.80;c120 6.80 13.00;c008 0.00 3.70;c067 5.40 12.60;c069 5.20 9.90;c141 0.00 3.80;c113 0.00 3.20;c097 0.50 5.20;c118 4.60 13.00,12.04\r\n6KG58,ENHU,Living room,5,,Yes,\"A person undresses, then throws their clothes onto a desk.\",clothes;shirt;table;television,\"A person takes off their hoodie while watching some tv, and puts it on a desk next to them.;A person is taking of a shirt in a bedroom.  The TV is on as they are taking the shirt off.\",c001 4.30 8.00;c009 3.60 8.00;c155 0.00 4.00;c003 3.70 8.00;c132 0.00 8.00,7.17\r\nHG7C2,4UGC,Bathroom,7,7,Yes,\"A person is undressing in the doorway, then the person starts smiling while holding a broom.\",broom;clothes;doorway,\"A person wearing a checkered shirt stands in a bathroom, removes the shirt, and then picks up a yellow broom.;The person removes a button down shirt, puts it on the counter, picks up a broom with dustpan and examines it.\",c098 17.70 31.00;c155 0.00 13.50;c152 21.90 30.90;c001 12.00 17.40;c100 17.10 23.60;c000 8.90 15.30,29.79\r\nOB9D0,JQ7D,Bedroom,6,7,Yes,\"A person is sitting on the bed, putting shoes on their feet. When they finish, they start playing with a camera, and take a picture of the shoes.\",bed;clothes;phone;shoe,A person is sitting on a bed they are putting their shoes on and tying them they pick up their phone and play a game on it.;A person seated on the edge of a bed with purple sheets grabs a pair of shoes and puts them on. The individual then begins gaming on a cell phone.;A person is tying shoes on the bed then playing a game on the phone.,c055 0.00 26.50;c135 0.00 33.00;c015 22.90 33.00;c016 23.40 33.00;c018 22.60 33.00;c056 0.00 25.30;c148 0.00 26.80,32.33\r\n86E2E,CP6Y,Home Office / Study (A room in a house used for work),5,7,Yes,A person is lying down and snuggling with a pillow and blanket and then eating food in a home office / study.,blanket;dish;floor;food;pillow,\"a person sits on the floor then lays down on a pillow with a blanket and eats something;A person sitting on the floor wraps a blanket around themselves, grabs a pillow, hugs it, tosses it down and lays down on it then begins to eat from a bowl on the floor;The person is sitting on the floor, then holds a pillow, before laying down and rolling around on the floor and eating as they are laying down.\",c078 2.20 8.20;c072 0.00 21.00;c156 15.30 20.80;c124 6.50 21.00;c126 3.60 8.20;c077 3.50 8.40;c125 0.00 8.80;c120 7.80 13.00;c080 3.60 8.50;c070 0.00 21.00;c079 1.40 6.20;c076 1.30 8.40;c119 7.80 13.10,19.83\r\n5NV2Z,CP6Y,Recreation room / Man cave,7,7,Yes,A person is grasping a cup of coffee in a recreation room. The person is walking toward the doorway.,cup;dish;door;window,A person takes a cup from a table and opens the front door.;A man walks into a room and picks up a red plastic cup that is on the table.  He looks inside the cup as he turns toward the door.  He walks to the door and opens it to look out.;A person walks into a room and takes a cup off a desk. The person opens a door leading outside and stands in the doorway.,c107 5.90 23.00;c008 13.20 23.00;c090 13.40 23.00;c153 3.30 8.40;c110 5.10 10.20;c118 8.20 17.00;c120 5.70 23.00;c092 15.70 23.00,22.33\r\nMKMFK,ARRB,Hallway,7,6,Yes,A person is sneezing onto a glass and then grasping shoes in a hallway.,cup;glass;shoe,\"A person walks through a hallway while drinking out of a cup. The person then bends over to pick a pair of shoes. The person then stares at the camera intently.;A person drinks from a cup, then picks up a pair of shoes.\",c053 5.60 24.00;c106 0.40 6.00;c107 0.00 24.00;c056 4.70 11.00,22.67\r\n2Y8XQ,ZDKC,Bathroom,5,7,Yes,A person pours some water in a glass then sneezes while holding a blanket.,blanket;bottle;clothes;cup;glass;towel;water,\"This person is sitting on a toilet, holding a towel and blanket; he pours something into a glass, drinks, and sneezes.;A person sitting on a toilet begins picking up objects that are placed on the surrounding floor. The objects include a pink blanket, drinking glass, and water bottle.;A person is sitting and holding some clothing. The person then pours some water and drinks it. Lastly, the person is sneezing.\",c106 15.20 22.80;c153 23.20 31.20;c033 0.00 32.00;c000 0.00 32.00;c107 3.80 13.80;c108 4.50 11.80;c110 3.50 8.50;c109 8.10 14.00;c070 0.00 32.00,30.58\r\n9J7EW,ZDKC,Kitchen,2,7,Yes,A person is holding a bag of groceries in a kitchen. They sit on a chair and remove their shoes.,bag;chair;groceries;paper/notebook;shoe,A person looks through a bag and walks and sits in a chair. The person then continues to look in the bag and takes off their flip flops;There is a person holding a bag.  That same person then sits in a chair and takes off their shoes.,c059 10.60 32.00;c057 18.20 25.40;c020 0.00 32.00;c021 0.00 9.10;c151 8.50 16.30;c059 3.90 18.20;c020 11.10 24.50;c151 17.70 29.30;c056 23.10 30.70;c115 1.10 32.00,30.67\r\nNX8X9,ZDKC,Dining room,6,7,Yes,\"One person wrapped in a blanket sits with a book, then leaves, taking a broom with them.\",blanket;book;broom;chair;table;towel,\"The person is looking at a book slip inside a book. They close the book and put it on a table. They take a broom, stand up, and walk away.;A person is sitting in a chair reading a book with a blanket wrapped around their neck.;A person is sitting in a chair in the kitchen with a blanket around their shoulders and reading a book, and the person puts down the book, picks up a broom, and leaves the kitchen.\",c100 19.60 26.30;c032 0.00 18.50;c154 20.50 26.30;c009 17.10 23.60;c059 0.00 24.00;c098 20.70 29.50;c026 0.00 19.00;c072 0.00 30.00;c025 13.80 18.20,28.92\r\nBM3UJ,CP6Y,Home Office / Study (A room in a house used for work),4,7,Yes,A person opens the door to their study and walks in holding a box and a glass. The person watches a movie on a computer.,chair;computer;cup;dish;door;glass;laptop;plate;table,\"A person walks in through a door carrying a book and a glass they sit down at a desk and put earphones in and watch something on the computer;A person opens the front door to their residence. Then they immediately go to their computer, and begin watching a video.;A person walks through the entryway holding a glass and box. The person sits down at a desk and watches a video on the computer.\",c107 6.40 17.30;c008 3.40 9.80;c151 14.20 19.20;c120 4.90 10.40;c006 5.90 12.90;c118 4.40 19.20;c141 1.10 9.30;c052 16.00 34.00;c119 12.80 18.20;c009 13.00 18.20;c109 13.50 18.50;c097 3.90 9.40;c059 15.00 34.00,32.92\r\nF2T43,GFWE,Recreation room / Man cave,6,4,Yes,A person is smiling as they look at something on their camera. The person begins laughing hysterically. The person leaves the room through the doorway.,camera;doorway;phone;sofa/couch;something,\"The person was sitting on the couch. The person smiled and laughed while playing on their phone. The person then stood up and walked away.;A person sits on a couch playing a handheld video game, then smiles, points to the game, laughs, then gets up and leaves.\",c015 0.00 24.00;c152 0.00 24.00;c149 0.00 24.70;c154 19.20 24.60;c016 0.00 24.00;c123 0.00 24.70,39.17\r\nHJ4B1,JTAS,Bedroom,7,7,Yes,\"A person awakens in  a bedroom, sits up, then looks over at a picture and some medicine that are placed next to a laptop.\",bed;blanket;laptop;medicine;picture;sofa/couch,The person awoke from the floor and moved a laptop. The person then picked up a photo and a bottle of medicine and looked at them.;Person in a bed covered in a blanket with a computer by their side. Person sits up grabs their phone and proceeds to read a label on a bottle.,c084 14.30 30.00;c128 20.20 30.00;c049 7.60 13.30;c146 2.10 10.70;c088 14.80 23.90;c133 0.80 8.70;c135 6.10 30.00;c134 0.00 7.10;c072 0.00 5.30;c083 13.10 19.90;c050 7.30 12.40;c122 0.00 7.10,28.92\r\nECFMO,I48P,Recreation room / Man cave,5,,Yes,\"One person stands in the doorway with a broom, sneezing.\",broom;door,\"A person is walking to the door they are using a broom they stand at the door and sneeze;The person is sweeping within a room towards an opened door while simultaneously being interrupted by sneezing.  The person then closes the door.;A person sweeps dirt out an open front door with a broom, sneezees several times, and then closes the door.\",c102 8.00 30.00;c153 3.10 15.50;c006 23.20 30.00;c141 24.70 29.70;c098 0.00 30.00,29.25\r\nRQRRD,P2J3,Bedroom,6,7,Yes,\"A person runs into the bedroom, quickly undressing. The person throws their dirty clothes onto a sofa, takes new clothes from a box, and quickly begins dressing again.\",box;clothes;doorway,\"A person runs into the the living room and stops by a chair and takes off their shirt then they pick up  a shirt and put it on.;A person walks into a room. Then takes off a white shirt, then puts it back on and looks at the camera.\",c000 21.00 29.50;c003 16.90 22.30;c148 9.40 48.00;c001 2.20 14.10;c002 5.20 11.80;c155 7.50 24.30;c000 6.80 14.60;c039 7.50 12.90;c041 5.90 11.10;c044 6.60 12.50;c097 0.00 4.80;c150 0.00 4.80,46.50\r\nBDY1V,ZDKC,Closet / Walk-in closet / Spear closet,5,7,Yes,One person undresses in front of a wardrobe and suddenly grasps a pillow to cover up with.,clothes;floor;pillow;wardrobe,\"A person is in the closet and undresses then grabs a pillow from out of the closet;A person takes off their hoodie while standing in front of a closet, and then takes a pillow from the closet and snuggles the pillow.\",c076 20.90 32.00;c078 25.00 32.00;c155 3.70 19.00;c002 20.70 26.70;c004 12.90 23.50;c077 0.00 5.70;c003 18.00 23.80;c001 18.00 23.80;c000 12.30 23.50;c079 20.30 26.30;c126 18.40 22.70,30.50\r\n2AG8W,ENHU,Hallway,5,7,Yes,A person walks through a doorway while undressing. They take off their shoes and jacket and start running through the hallway.,clothes;doorway;floor;robe;shoe,A person walks into the hallway and undresses before throwing their clothes into the closet and heading down the stairway.;A person coming out of a room taking a jacket off before throwing it into the room. Then the person takes off slippers and runs down a hallway.,c057 4.90 11.40;c097 0.00 6.00;c003 4.00 8.70;c155 0.00 6.40;c001 4.30 9.70;c000 1.90 9.70;c150 7.20 12.00;c126 4.10 8.70,10.96\r\nKERO6,V044,Dining room,7,7,Yes,A person is seen standing next to the stove. They begin pouring oil in a pan to make some food.,dish;food;ladle;pan;stove,\"A person is cooking on a stove, they place a pan on the oven and begin coating it.;A person is cooking on the stove. The person puts some food onto a pan. The person then swirls the sauce in the pan.\",c147 0.00 41.00;c061 10.80 33.30;c062 11.40 16.90;c063 9.60 17.10;c118 11.70 32.50,40.08\r\n5RPZA,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,Person is lying on floor watching television. Another person is playing with box.,box;floor;television,\"A person lying on the floor another person is tossing a box around while sitting on the floor..;A man is laying on the rug on the floor while another man plays with a box, sitting on the floor in front of the TV and spinning it.\",c124 0.00 29.00;c125 0.00 29.00;c045 0.00 29.00;c039 0.00 28.00;c041 0.50 27.20;c040 0.00 29.00;c132 0.00 29.00;c126 0.00 29.00;c042 0.00 29.00,27.96\r\nZIOET,ENHU,Bathroom,7,7,Yes,A person is throwing trash in a bag and then smiling while washing hands in the sink in the bathroom.,bag;hand;sink;towel;water bottle,A person puts a bottle of water in a bag on the sink.  The person then washes their hands in the sink.;A person stands in the bathroom and puts something into a plastic bag and then washes their hands.;The person is putting things into a plastic bag while standing in front of the sink in the kitchen.,,12.08\r\n3MSZA,JTAS,Living room,6,7,Yes,A person is eating in the doorway.  The person then is playing with the switch for the light.,doorway;food;light,A person is standing in the doorway eating chips. They then turn the light switch on and off several times.;A person is holding a bottle of water and eating a sandwich while standing in a doorway. They then turn a light on and off.;The person stood in the front entrance doorway eating snacks. The person then flipped the light switch near the door.,c105 22.70 29.70;c104 24.30 30.40;c156 0.00 25.90;c061 0.00 25.80;c152 3.70 8.40,30.96\r\nQUAFE,M7K8,Laundry room,6,4,No,A person is washing clothes and putting a bag on the shelf.,bag;box;clothes;cup/glass/bottle;shelf;wahing machine,\"A person grabs articles of clothing from a washing machine, rubs them between their hands, then grabs a paper bag and moves it across the room.;A girl is taking clothes out a a washer while doing laundry. She begins to reach for detergent on a shelf to add it to her wash.\",c081 13.90 20.50;c005 0.70 14.60;c020 11.30 20.50;c022 14.10 20.40;c023 11.50 16.70;c004 0.40 14.60;c001 0.00 14.70;c043 11.60 16.70;c042 13.70 20.50;c000 4.10 9.00;c000 8.20 12.90;c107 0.00 31.00;c002 0.00 31.00,29.88\r\n0LHWF,GFWE,Dining room,7,6,Yes,A person is sitting in the dining room eating a sandwich and holding a book.  The person looks out the window and sneezes.,book;chair;food;sandwich;table,\"A person sits in a chair and eats a sandwich while reading a book.;This person sat down at the table, ate a sandwich and read book, before getting up and leaving.;A person is sitting at a dining table while both eating a sandwich and reading a book, and the person sneezes one time during this.\",c027 0.00 6.70;c156 0.00 18.10;c059 0.00 4.10;c067 0.00 19.70;c151 0.00 4.10;c154 13.80 19.50;c011 0.10 18.60;c065 0.40 15.70;c030 0.00 4.70;c009 0.10 4.40;c032 2.70 15.00;c026 2.10 16.20;c152 14.00 18.50;c025 14.60 19.40;c061 0.00 20.00;c153 12.80 17.80;c028 0.00 4.00,30.08\r\n0V9WT,V044,Garage,4,6,Yes,\"A smiling person stands on a nest to a pile of clothes, then grabs a broom nearby.\",broom;clothes;floor,A person is standing in a messy room. They walk over to a broom and pick it up.;The person is standing in the room holding a broom and looking at the floor.,c152 0.00 9.50;c100 10.00 17.40;c127 14.20 22.60;c098 11.00 26.00,25.21\r\n3CLVI,SW82,Closet / Walk-in closet / Spear closet,5,5,Yes,\"A person grabs the doorknob and opens the door. The person stands in the doorway for a moment, then throws a towel onto the shelf.\",blanket;closet/cabinet;clothes;door;light;shelf;towel,\"A person walks towards a walk-in closet, flicks the lightswitch on, then leaves. The individual opens another nearby closet and retrieves a blanket, walks back to the original closet, and throws it inside.;Person is going in closet, looking for something, came out and went to another closet, found towel, and went back to previous one and threw it on the top.\",c081 24.20 30.20;c097 22.40 30.60;c008 16.30 22.30;c141 2.40 9.60;c006 18.50 24.70;c035 18.20 24.60;c036 24.20 30.00;c114 16.80 24.30;c071 18.90 29.30;c112 18.90 25.20;c113 3.20 11.10;c000 17.20 23.40;c000 18.80 28.80;c003 24.50 29.30;c001 24.80 29.40;c034 24.80 29.40;c002 17.40 24.00;c104 3.30 7.80,30.25\r\n3IAPG,ENHU,Closet / Walk-in closet / Spear closet,7,7,Yes,A smiling person is in or beside a closet getting dressed and packing a small overnight bag. While doing so they pause to take sips out of a coffee mug which they had previously placed on a nearby surface.,bag;closet/cabinet;clothes;cup;dresser;drink;floor;water;zipper pull,\"The person zippers the sweatshirt, kneels down and puts clothes in a bag then takes a drink from the top of the dresser.;A person is in the closet putting on a shirt they kneel down and go through a drawer then they pick up a cup and drink out of it.;A person zips up a hoodie and puts some towels into a bag of some sort. The person then takes a sip of some water.\",c106 15.40 24.70;c020 2.20 17.10;c002 3.70 10.90;c127 2.90 16.80;c021 3.80 8.50;c003 0.00 15.40;c148 0.00 13.70;c107 14.80 19.90;c001 24.50 27.00;c114 24.50 27.00;c109 24.40 27.00;c151 24.20 27.00;c110 24.10 27.00,26.42\r\nO3Y57,ENHU,Bedroom,5,7,Yes,\"Closing the door to the room, a person empties their bag and places a laptop on the bed. They begin sneezing several times in succession. Finally, they put the bag over their head and stop.\",bag;bed;clothes;door;laptop,\"A person wearing a red plaid shirt enters a bedroom, walks toward the bed, empties a backpack onto the bed, and then places the backpack on top of their head.;The person walked in the bedroom with a backpack and closed the door. The person removed a laptop from the backpack and dumped the rest of the contents. Then the person placed their head in the backpack.\",c021 10.70 18.60;c006 2.30 9.00;c153 23.70 31.00;c097 1.30 7.50;c003 17.90 27.10;c022 6.20 13.10;c050 12.40 19.30;c049 14.20 20.20;c023 0.00 12.60;c020 0.00 12.80;c141 1.00 8.30;c047 13.00 20.10,29.79\r\nRO8Y6,V044,Bathroom,7,7,Yes,Person walks into the bathroom and removes a camera from a grocery bag.  Person then pets camera like a dog a leaves the room.,bag;door;phone/camera;sink;something,\"The person went to the bathroom looked inside a bag on top of the sink took out something cleaned the thing with hands put the thing back in the bag,walked out of the bathroom;A person is in a bathroom looking at a bag.  They take an item out of the bag look at it then put it back in.  They leave the room and close the door.;A person enters a bathroom and takes something out of a bag and leaves the room.\",c021 9.00 14.00;c008 29.00 35.00;c097 0.00 4.90;c017 23.60 29.80;c015 10.60 28.50;c006 1.40 8.50;c018 10.60 15.40;c016 13.30 27.30,36.04\r\n7KW31,ENHU,Bathroom,6,7,Yes,A laughing person holding a broom starts undressing in front of the bathroom cabinet.,broom;clothes;jacket;mirror,\"A person is using a broom and taking off clothes;A person stands in front of a mirror with a broom. The person stands the broom against the sink then the person takes off their jacket.;The person is standing in the bathroom while holding a broom,  tapping it on the floor, looking in a mirror while taking off their jacket and wadding it up.\",c098 0.00 3.40;c099 1.60 6.90;c155 7.80 12.00;c003 9.40 12.00;c102 0.00 6.10;c096 0.00 5.10;c001 8.70 12.00;c148 4.30 12.00;c100 0.00 2.60,11.42\r\nHMA8E,CP6Y,Bedroom,4,6,Yes,The medicine was working on the person. The other was closing the window,bed;medicine;window,One person is laying on the bed another person is standing by the window.;Person #1 closed a window in the bedroom. Person #2 was asleep on the bed and they awoke. Person #2 slightly moved a remote control device on the bed.;A person closes the window while another gets up from what appears to be taking a nap on the bed nearby.,c089 1.30 13.70;c128 12.10 18.00;c134 0.00 14.20;c135 10.00 18.00;c146 2.70 7.50;c133 2.70 7.60;c092 0.00 18.00,17.04\r\nJ7BOV,P2J3,Living room,4,7,Yes,A person is putting a camera next to a towel and drinking some water.,camera;cup/glass/bottle;dish;phone;table;water,\"A person carrying a camera walks over to a table and puts it down, then picks up a cup of coffee and drinks.  They put the cup back on the table when they are finished drinking.;The person looking at their phone walked over and set their phone down on the table. The person took a cup from the table and drank from it.\",c015 0.00 9.90;c017 4.60 11.90;c106 10.10 29.40;c119 24.10 33.00;c109 24.40 32.90;c107 8.00 32.30;c009 5.80 11.20;c118 9.00 13.50;c120 8.40 12.70;c154 0.00 33.00;c110 8.00 12.40,32.38\r\n8D6PU,M7K8,Bedroom,6,6,Yes,A person walks into a bedroom holding a laptop and camera.,camera;cup/glass/bottle;doorway;laptop,A person is walking through a doorway while holding their laptop.;A person walks out of and then back into a room carrying an open laptop.,c047 0.00 39.00;c107 1.60 8.40;c097 1.00 6.60,37.88\r\n1F4JZ,GFWE,Bedroom,6,6,Yes,\"One person takes some medicine while standing in front of the mirror, then grasps the edge of the door.\",cup/glass/bottle;door;food;medicine;mirror,A person looks into a mirror while drinking something.  This person then pulls on a door and walks away.;A person is drinking in front of a mirror. The person appears to pull at the wall that the mirror is on.,c129 2.00 8.70;c096 4.90 27.10;c061 0.00 31.40;c094 0.00 4.10;c106 2.60 8.20;c094 6.80 28.20,31.96\r\nRGTLB,AT5D,Living room,5,7,Yes,A person is working on their laptop while sitting at a desk. The person smiles at something on the screen.,chair;laptop;table;video,A person sitting at the table in front of a laptop smiles at a video;A person sitting at a table takes a bite of food and then uses the mouse on a laptop.;A person sitting in a chair at the kitchen table eating food and working on a laptop computer.,c051 0.00 31.00;c152 9.30 16.70;c149 15.90 22.40;c059 0.00 31.00;c014 0.00 31.00;c011 0.00 31.00;c052 0.00 31.00,30.00\r\n75F82,CP6Y,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"A person is sneezing into a phone, then using a vacuum and then eating candy in an entryway.\",doorway;floor;food;sandwich;vacuum,A person is standing in a doorway sneezing. The person then grabs a vacuum cleaner and starts to vacuum the floor.;A person is standing at the door sneezing they pick up the vacuum and start vacuuming while they are eating a sandwich.;A person is standing in the door way sneezing then they get the vacuum and start vacuuming while they are sneezing.,c137 6.00 22.00;c153 0.00 9.40;c156 10.00 22.00;c097 0.00 10.90,20.75\r\n0IKE9,M7K8,Living room,7,7,Yes,\"The person was playing a game on the television screen, and took a drink while covered up with a blanket.\",chair;cup/glass/bottle;game;television,A person watches some tv with a Wii steering wheel in hand. The person takes a drink of water and plays with the wheel;A person sits on the couch and moves a small Wii wheel around while watching tv. The person takes a sip of water and continues with the wheel.,c132 0.00 36.00;c059 0.00 36.00;c107 14.00 21.10;c109 15.70 20.70;c106 14.80 19.90;c110 13.60 18.10,34.67\r\nH047B,M7K8,Kitchen,5,4,Yes,A person is working with a broom and dustpan. The person pours the dustpan in a garbage bag and closes it.,bag;broom;dust pan;floor,\"The person picks up a broom and a dust pan and sweeps something up from the kitchen floor. They put the contents in a plastic bag.;Th person bends down to pick up a dust pan and sweeps dirt into the dust pan with the broom, empties the dust pan into the garbage and holds the garbage bag.\",c020 9.20 32.00;c021 9.90 16.00;c098 0.00 11.70;c102 2.80 9.10;c100 0.00 4.90;c023 8.90 14.20;c127 2.60 9.70;c099 6.30 12.00,30.75\r\nGN0M8,GE1M,Hallway,6,7,Yes,\"A person is in a hallway tidying up the pictures on the wall, they then grasp a broom and walk through a open doorway.\",broom;doorway;picture;towel,\"A person straightens up and cleans pictures in the hallway, then grab a broom and walk out.;The person walks down the hallway, wipes off the picture frames and then leaves the hallway.\",c097 21.00 26.00;c100 18.60 24.80;c038 1.20 12.00;c088 1.20 22.90;c098 18.90 25.50;c083 1.50 11.60;c033 1.20 25.40,24.79\r\n8HW76,VOCP,Living room,5,7,Yes,A person is laughing and holding their blanket as the person lays on the sofa watching television.,blanket;clothes;picture;pillow;sofa;television,A person laying on a sofa is watching tv and using the remote control.;A person in a yellow shirt laying on a couch watching TV and adjusting the volume and then adjusting his body position.,c131 4.20 11.80;c132 0.00 34.00;c070 0.00 34.00;c072 0.00 34.00;c122 0.00 34.00;c149 4.70 12.30;c000 0.00 34.00;c076 0.00 34.00;c088 0.00 34.00;c078 0.00 34.00,32.50\r\nMLHCK,4UGC,Laundry room,5,7,Yes,A person is running in place with a towel around his neck and drinking a bottle of water in front of a mirror.,glass;mirror;towel;water,\"A man  is running in place in a laundry room before he picks up a mirror and watches himself as he drinks from a bottle of water.;A person runs in place, wipes their face with a towel around their neck, picks up a mirror and looks into it as they drink from a water bottle.\",c106 15.70 21.80;c093 9.70 32.00;c096 11.50 32.00;c150 0.00 7.90;c033 0.00 32.00;c110 6.90 12.00;c038 5.20 10.10;c107 7.00 32.00,31.08\r\nY7CGN,BONA,Living room,6,6,Yes,A smiling person walks into their pantry and takes of their shoes. The person grabs the broom and leaves.,broom;doorway;floor;shoe,A person picks up a broom from the floor. The person then takes some shoes and slams them a couple times on the floor. The person then walks away.;A person walks into a room and picks up a broom-like object.  While holding the broom-like object the person sets the broom-like object in their left hand they bend over to pick up a pair of shoes with their right hand.  The person taps the shoes on the floor a couple of times and then leaves with the shoes and the broom-like object.,c053 13.50 34.00;c056 20.80 34.00;c098 2.60 16.50;c099 10.50 16.00;c100 21.30 27.10;c054 12.00 31.10;c127 21.60 33.50;c097 0.00 3.00,32.96\r\nKOQGE,AT5D,Home Office / Study (A room in a house used for work),7,7,Yes,A person is doing homework on their laptop. Another person comes running throwing open the door.,chair;door;phone,\"A person sits in a chair while working on their phone.;A person is typing on the keyboard of a cellphone, and then another person comes into the room, gets the other person's attention, and then leaves the room.;A person is sitting in a chair at a desk while typing on a cell phone, and a second person enters the room, touches the sitting person on the shoulder, and then leaves the room again.\",c006 20.90 29.60;c008 8.80 17.80;c150 12.70 20.90;c016 0.00 32.00;c059 0.00 32.00;c097 12.30 17.50;c015 0.00 32.00,30.67\r\nMME0V,ARRB,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is fixing a door on the closet and throwing their phone on the floor in disgust,chair;door;knife,Person fixing the door to a closet and then gets frustrated and throws the knife on the chair.;Person standing by the door with a screwdriver tightening the screws on the doorknob get mad and throw the screwdriver in the chair.;A person takes a screwdriver to a doorknob while holding the door open. The person then throws the tool onto a nearby chair.,c007 0.00 26.40;c140 26.40 29.00;c141 26.00 29.00,28.29\r\n50EBU,V044,Bedroom,7,7,Yes,Person is standing by desk watching tv and eating sandwich.,food;sandwich;television,A person is standing in a red shirt and eating something while watching a television on a small desk;A person stands in front of a desk and watches something on their computer while eating.,c065 0.00 28.60;c067 0.00 35.00;c156 0.00 35.00;c132 0.00 35.00;c061 0.00 35.00,33.62\r\nM8OYC,I48P,Kitchen,5,6,Yes,A person walks in holding a bag of groceries. The person sets the bag on a chair.,bag;chair;closet/cabinet;door;food;groceries;shelf,A person walks into a room with a bag and puts it on a chair. The person pulls some things out of the bag and puts them into another room.;A person walks a bag into the kitchen and places boxes of food into the pantry.,c022 1.90 12.20;c114 18.10 27.10;c081 18.10 24.90;c097 17.60 22.50;c061 12.70 33.00;c020 1.70 11.50;c006 29.70 35.00;c112 30.00 35.00;c062 14.60 33.00;c063 12.40 21.60;c130 11.70 32.60,33.79\r\nGR4MX,BONA,Living room,7,4,Yes,A person was walking in the room with a vacuum while holding a towel,broom;floor;mop;towel,\"A person is standing and holding a mop, carrying a towel over one shoulder. The person walks across the room while playing with the mop.;A person holds a purple cleaning rag and sweeps the floor with it, walking around while doing so.\",c033 0.00 32.00;c098 28.60 32.00;c127 28.50 32.00;c102 28.60 32.00;c099 28.50 32.00,30.58\r\n8W829,P2J3,Entryway (A hall that is generally located at the entrance of a house),4,7,No,A person is putting a sandwich on a tray.  Then a person is holding groceries and walking out of the entryway.,bag;basket;doorway;groceries;sandwich;shelf,\"A person enters a room and puts a sandwich in a basket, picks up a bag, then walks outside.;A person walks into a room and puts something on a shelf. The person picks up a bag and slowly walks to a doorway. The person walks outside.;A person is standing in a doorway. The person puts and object in a basket. The person is walking with a bag of food through a doorway.\",c067 0.00 3.20;c068 2.10 7.50;c020 6.60 16.00;c097 17.40 29.30;c081 0.00 7.70;c082 3.00 7.90;c023 3.90 12.20;c023 5.10 36.00,34.54\r\n31YNM,4UGC,Living room,6,6,Yes,A person fixing a light then stops the drink some coffee.,chair;cup;drink;lamp;light;sofa/couch,\"A person is sitting in a chair. The person is inspecting the lamp. The person turns on the lamp. The person drinks from a cup from the side table.;A person is sitting in a chair and picks up then turns on a lamp. Then the person picks up a mug and drinks from it.;A person picks up a lamp, inspects it, tightens the bulb, turns it on and then drinks from a cup.\",c103 0.00 15.10;c104 6.50 13.70;c106 11.70 24.40;c107 12.60 24.70;c059 0.00 31.00;c109 25.50 31.00;c110 12.10 17.20;c123 0.00 31.00,30.38\r\nRLQ9K,P2J3,Hallway,4,6,Yes,\"A person laughs as they stand on the stairs, looking at a picture on the wall. The person takes out a bottle of medicine and takes some.\",cup/glass/bottle;food;medicine;window,\"A person is standing on the stairs they walk down the stairs and go over to the window and take some medicine while standing by the window.;A person stands on some wooden stairs, walks down and pours some sort of drink and drinks from it. The person does this twice.\",c129 16.10 30.70;c156 8.00 33.00;c092 0.00 6.40;c128 8.90 33.00;c128 12.70 17.10;c106 16.10 20.20,31.62\r\nJCFFS,JTAS,Bathroom,7,6,Yes,A person is drinking while looking in the mirror. Then they start fixing the sink.,bottle;mirror,A person drinks from a can while looking into the mirror.  This person puts the can down and touches things on the counter.;A person drinks something while staring into a bathroom mirror. The person then fixes their hair and washes something in the sink.,,30.42\r\nLXLW4,P2J3,Living room,5,5,No,A person is snuggling on a couch in a living room watching television. The person is grasping a cup of coffee.,chair;cup;glass;sofa/couch;table;television,\"A man is sitting in a chair watching tv and shaking back and forth.  He picks up water and drinks it.;A person sits on a chair watching television.  The person rocks back and forth, then drinks from a cup.;A person sits in a chair and rocks side to side while watching a tv in front of them. The person takes a drink out of a mug.\",c106 28.20 38.00;c107 28.40 38.00;c059 0.00 38.00;c132 0.00 38.00;c109 28.00 38.00;c123 0.00 38.00;c110 26.20 38.00,36.54\r\n8IDIY,ENHU,Recreation room / Man cave,5,6,Yes,A person throws a broom in the corner. The person takes a laptop from the desk and leaves.,broom;desk;laptop,A person puts their broom down and grabs their laptop then leaves the room;A person enters a room and tosses a broom into the corner of the room and picks up a laptop computer and leaves the room with the laptop.,c099 0.00 5.70;c046 3.70 9.10;c098 0.00 5.40;c050 3.10 8.90;c047 3.10 11.00,9.92\r\nIGF81,ZDKC,Dining room,3,7,Yes,\"A person is seen tidying up the room. They open a nearby wardrobe and find medicine, looking concerned and pouring the pills into their hand\",closet/cabinet;door;hand;medicine;table;towel,\"A person uses a rag to wipe off the table before grabbing some pills next to the tv.;Person in kitchen is wiping down table. Person then walks over to an entertainment stand in another room, opens up and cabinet and takes a pill bottle out.\",c128 25.00 32.30;c037 0.00 15.80;c038 0.10 12.40;c012 0.10 12.40;c013 0.10 12.40;c129 19.80 33.00;c113 17.30 21.70;c008 17.30 21.70;c112 19.80 24.60,31.96\r\nHP3HV,JTAS,Living room,6,6,Yes,A person is undressing on their bed and turns off their light while laughing.,clothes;glasses;light;shirt;sweater,\"The girl is taking off her sweatshirt one sleeve at a time, making sure to pull down her shirt as necessary and pushing her glasses back up.;A person takes off a sweater and throws it on the ground. The person then walks away.;A girl begins to undress while standing, then walks into another room after dropping her hoodie into the floor where she had been standing.\",c155 1.10 15.50;c152 11.70 17.20;c105 14.30 18.60;c000 9.50 14.40;c148 1.30 13.20,18.54\r\nHQ8ZM,CP6Y,Dining room,7,7,Yes,\"A person walks through the doorway, watching a video on their phone. The person puts their phone away.\",doorway;phone;table,\"A person places a phone on the table and walks away.;Person enters the room though the doorway with a cell phone in hand then walks around the room.;A person enters a room, then places their phone down on a table.\",c097 0.00 17.00;c015 0.00 17.00;c017 16.00 21.00;c009 16.00 21.00;c016 4.90 19.60,21.21\r\nQBUAT,GFWE,Bedroom,6,7,Yes,\"A person is undressing in the bedroom. The person takes a blanket from the cabinet, and begins dressing in pajamas.\",blanket;cabinet;closet;clothes;door,\"A person is standing by a closet taking off their jacket the open the closet and take out some pants, then they put the pants on.;A girl stands and begins to undress before reaching into the closet behind her and removing clothes, which she begins to put on, still standing there.\",c070 9.10 22.00;c155 0.00 9.70;c148 17.70 30.30;c113 6.80 13.80;c141 12.40 18.40;c002 18.20 26.40;c000 0.00 9.30;c074 15.40 21.50;c008 5.90 12.50;c073 8.60 15.80;c001 4.50 9.40;c006 12.40 18.40;c141 6.20 12.20;c071 17.10 21.80;c112 12.50 18.70;c002 16.90 22.60;c000 28.30 31.00;c004 28.30 31.00;c074 28.30 31.00,30.25\r\nSR8IK,9809,Recreation room / Man cave,7,7,Yes,A person awakens in a recreation room snuggling a book. They do their homework while drinking a glass of water.,book;chair;cup;desk;dish;glass;homework;paper;table,\"A person has their head down as if they were resting at a computer desk.  They then put their head up, take a drink from a cup on the table, and begin to look at/review a book on the table they are sitting at.;A sleeping person wakes up, takes a drink of water, and begins writing in the journal that is directly in front of them.;A person sitting down is sleeping with their head resting on a desk. The person wakes up, lifts their head, takes a drink from a glass, places the glass down and begins to write on a piece of paper.\",c106 4.60 14.90;c145 8.40 15.20;c146 1.80 18.20;c014 12.50 28.80;c107 0.00 31.20;c106 0.00 32.00;c011 0.00 32.00;c059 0.10 32.00;c120 5.40 11.50;c110 4.70 11.80;c009 13.50 20.40;c109 9.90 20.80;c032 13.20 32.00,30.58\r\n9EEGQ,AT5D,Kitchen,6,5,Yes,Person is putting dishes on shelf. Another person is tidying up and fixing pantry door.,dish;door;shelf,A person picks up some plats from the counter and sets them in the kitchen cabinet while another person fixes the door.;A person is putting plates on a shelf in a kitchen while a second person is working on a door or door frame in the entryway of the house.,c081 14.10 23.60;c119 8.40 24.50;c006 4.20 13.20;c008 0.30 5.70;c007 7.60 14.30;c118 7.50 24.70,31.00\r\nJOHZ0,P2J3,Kitchen,6,6,Yes,A person is taking a cup from the shelf and then drinking water by the sofa.,cup;dish;food;glass;shelf;table,\"a person is grabbing food off a shelf then drinks something;A person in a kitchen removes a small item from a shelf, then reaches over to a metal mug and takes a number of consecutive sips.;A person takes something off the shelf, then grabs a glass of water and drinks it\",c106 9.20 35.00;c009 3.60 9.60;c107 0.00 35.00;c110 0.00 3.40;c109 4.60 9.30;c118 0.00 8.40;c119 4.40 9.40;c120 0.00 5.70,33.54\r\n318CP,0Z4M,Bedroom,5,7,Yes,Person is lying on floor opening bag with sandwich in it then starts drinking coffee.,bag;bed;coffee;cup;floor;food;glass;sandwich;water,\"A person is laying on a bed. They reach into a bag and get a sandwich and eat it. Then they get a glass of water and start drinking.;A person lies down on a bed, gets a piece of bread out of a bag and eats it, and then drinks from a cup.;Person laying in the bed eating food that was took out of a bag then pick up a cup to drink.\",c065 7.10 22.10;c106 19.70 33.00;c107 20.50 33.00;c021 0.80 10.80;c156 8.70 23.60;c134 0.00 33.00;c061 9.30 23.60;c062 19.10 31.80;c020 0.60 30.40;c068 16.80 23.10;c069 3.70 15.00;c063 3.50 14.00;c067 8.40 21.90;c022 17.80 24.40;c023 0.00 6.70,32.38\r\nUM5II,B6UG,Home Office / Study (A room in a house used for work),5,7,Yes,A person is sneezing on the medicine while walking with dishes in the home office / study.,dish;food;medicine;table,A person is standing in front of a desk with a plate of food. The person eats a few bite and starts sneezing. The person walks to another desk and picks up some medicine and starts opening it.;A person is sneezing while eating;A person takes several bites of an unknown food item and then appears to start coughing.,c118 0.00 35.00;c153 0.90 7.70;c156 3.70 14.00;c128 11.30 35.00;c119 11.70 16.70;c062 10.80 17.70;c009 10.80 17.00;c061 0.00 17.00,33.71\r\nHS14N,I48P,Kitchen,3,6,Yes,\"A person runs into the kitchen and opens the cabinet. The person takes a dish from the top shelf and stands there for a moment, holding it.\",cabinet;dish;door;shelf,\"A person runs into the kitchen and opens a cabinet.  This person gets something out, and then walks away with it.;A person walks into a kitchen, opens a cabinet, gets a plate off the top shelf, closes the cabinet, stands and looks at the plate as if he is thinking, then walks out of the kitchen with the plate.\",c112 10.90 16.30;c150 2.70 8.50;c006 11.10 16.00;c120 5.90 14.10;c008 4.50 10.20;c118 10.60 32.00;c113 4.50 16.60,31.08\r\nF024X,M7K8,Recreation room / Man cave,4,4,Yes,\"A person undresses, then throws a pillow on a chair.\",chair;clothes;pillow;shoe,\"A person is taking off a jacket and dropping it on the floor. The person picks up a pillow and sets it on a chair.;A person takes off a jacket, puts a pillow on a chair and walks away.\",c077 9.00 14.00;c155 0.00 8.90;c002 1.00 12.00;c057 2.90 16.30;c076 7.60 13.50;c080 8.50 14.00,31.83\r\nZFT06,ZDKC,Kitchen,6,7,Yes,A person is laughing in front of the refrigerator.  The person then takes a glass out from the refrigerator.,cup;dish;door;glass;refrigerator,\"person stumbles up to a refrigerator, leans head on fridge then opens the door, bows twice, pulls out a glass and bows toward the fridge several times;The person looks at the refrigerator then opens the door and takes out a can as the person appears to be laughing nonstop.\",c107 19.40 31.00;c149 21.50 30.00;c143 8.70 16.10;c110 18.90 25.70;c142 19.60 27.50;c120 14.20 24.20;c118 24.60 31.00;c152 0.00 31.00;c008 8.60 14.80;c006 19.60 27.50,30.42\r\nO3HV7,JTAS,Bedroom,6,6,Yes,\"A person awakens and sits up in bed. They take a sip of coffee, grasp their clothes, and curl up and go back to sleep.\",bed;blanket;clothes;coffee;cup;glasses;pillow;yawn,\"A person sits up and yawns as they wake up. They put their glasses on, take a sip of coffee, and then lay back down with a blanket.;A person waking up, putting glasses on, drinking from a coffee cup and then laying back down and covering up.;A person wakes up, drinks some coffee and lays back down\",c133 3.40 18.30;c072 26.60 36.00;c109 20.20 27.30;c134 0.00 8.10;c146 4.80 14.00;c106 16.00 24.40;c109 10.00 16.00;c110 12.90 20.20;c107 15.90 28.70;c135 12.40 35.10;c078 29.90 36.00,34.58\r\nDOLQ1,ENHU,Bathroom,2,,No,A person stands on a pillow in the bathroom smiling and laughing while looking for medicine.,cabinet;medicine;pillow,\"A person stands on a pillow, opens a cabinet and takes out medicine.;A person opens the cabinet and gets out something to look at.;A person steps into a box and gets something out of a medicine cabinet.\",c113 2.50 8.10;c128 5.50 10.00,8.71\r\nMLWB5,JTAS,Living room,7,7,Yes,A person in the living room is lying down on the ground. They get up and start fixing their hair while wrapping their laptop in a towel.,floor;hair;laptop;towel,\"A person was sleeping on the floor before waking up and stretching. After stretching the person grabbed a towel from the ground and wrapped it around the person's laptop.;A girl is laying on the floor; she rises, stretches and yawns before beginning to gather her things and wrap them into a towel.\",c049 25.90 32.00;c050 18.80 26.80;c144 11.40 21.30;c033 19.40 32.00;c035 19.30 25.70;c047 17.30 32.00;c146 5.10 19.60;c124 0.00 10.50;c125 7.40 32.00,30.79\r\n47Y1V,EDYS,Bedroom,1,6,Yes,A person in the hallway holding a picture begins undressing and then starts pouring coffee on the floor.,ashtray;bowl;clothes;cup;dish;floor;paper/notebook;picture;shirt,\"A person is holding homework and grabs a cup from the floor;Person holds out hand then pick up a paper, shirt, dish, bowl and sat it on a table;A person adjusts the camera, picks up a piece of paper and reads from it while picking up items out of the floor and placing them on a table.\",c084 1.70 15.60;c000 1.80 13.00;c115 1.40 28.20;c001 3.90 13.10;c119 15.80 21.70,30.46\r\n8XJP7,ARRB,Living room,4,7,Yes,\"A person is tidying up the living room, picking up some dirty dishes. The person finds a half-eaten sandwich, and leaves the room.\",dish;food;garbage;table,\"A person walks into the living room and takes garbage from a table and places it onto a plate. Then the person proceeds to pick up another plate, and walk out of the living room into the kitchen.;A person walks into a room and starts picking up random things off of a table. The person then carries the items away.;A person walks into a room and gathers some things from the table onto some plates, carrying the plates away.\",c118 8.90 29.00;c120 13.10 29.00;c012 2.00 23.80;c119 11.40 16.60;c063 18.40 23.50,27.75\r\nUY0SK,CP6Y,Hallway,5,7,Yes,A person sneezes while tidying up their hallway. The sneeze and sit to eat a sandwich and watch the television in the next room.,chair;dish;floor;food;paper/notebook;sandwich;television,\"A person is wiping a wall. The person sneezes and then grabs a sandwich. The person takes a bite out of the sandwich while looking at a television.;A person scrubs down some walls, picks up a newspaper and sneezes. The person sits down and looks at the tv while eating.\",c065 14.50 28.00;c132 14.60 28.00;c151 9.40 18.20;c154 13.30 27.10;c067 12.80 19.60;c153 8.90 19.70;c156 22.90 28.00;c117 3.80 8.60;c059 11.40 19.30;c061 13.00 19.30;c116 10.90 16.50;c127 3.10 9.10;c120 13.20 18.00;c063 13.20 18.10;c069 13.20 18.10;c118 13.20 19.30,26.75\r\nAM3U4,M7K8,Closet / Walk-in closet / Spear closet,6,7,Yes,\"The person left a pair of pants on the chair, and ran over to the door to turn on the light.\",chair;closet;clothes;light;none,A person puts something in a closet and smiles then leaves.;The person ran towards a chair in front of a closet bend down looked back and walked away.;PERSON IN THE HALLWAY BY THE CLOSET DOOR IN FRONT OF A GREEN CHAIR THEN PERSON LEAVE THE ROOM.,c152 3.50 8.30;c104 1.20 6.40,30.58\r\nDPLMM,ENHU,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person in snuggling with a pillow, then lying on the floor, then turning off a light in a Closet / Walk-in closet / Spear closet.\",doorway;floor;light;pillow,\"A person lays down on the floor then gets up, shuts the light off and leaves;The picture is sideways. A seated person hugs a pillow then lays down on the floor. The person then stands up and turns off the light as he exits.\",c105 10.60 16.00;c077 7.10 13.20;c078 0.00 13.20;c124 4.10 13.60;c125 0.00 8.40;c154 9.20 14.90;c151 8.30 14.90;c146 8.20 12.80;c097 10.50 16.00;c076 0.00 11.50;c146 4.00 13.50;c079 7.50 12.80,15.17\r\n5GHV3,M7K8,Bedroom,6,7,Yes,A person is dressing by the bed and laughing at the book.,bed;book;clothes,A person is putting clothes on.  The person then picks up a book from off of a bed and smiles at it.  The person then walks away with the book in hand.;A person put on a green hoodie while picking up their phone and smiling while gesturing to the phone screen in a happy manner.;A person with a dog beside them puts a hoodie on.  Then the person takes a phone and starts looking at it.  Then both the dog and the person go and leave.,c026 11.90 32.60;c030 12.50 17.80;c148 0.40 13.40;c001 0.00 9.20;c029 13.50 32.60;c032 12.30 17.50;c152 13.30 32.60;c000 0.00 12.20;c149 11.90 31.30;c002 0.20 7.30,34.38\r\nM4Z0M,M7K8,Hallway,5,5,Yes,A person is eating a sandwich in a hallway and walking past a door.,door;food;sandwich,A person walked in front of camera towards door eating a sandwich turned around and walked back out of sight;A person walks by eating a sandwich.,c065 0.70 8.40;c067 0.00 8.40;c156 0.00 8.80;c061 0.00 8.90;c097 0.00 3.50,33.83\r\nZSAQG,AT5D,Bedroom,7,7,Yes,A person is playing with a mirror while another person is running with shoes.,doorway;hair;mirror;paper;shoe,A person looks in a mirror and fixes their hair.;Person is looking into a mirror while a person run by with shoes in hand.;A person looks in the mirror and fixes the hair on the head.  Another person runs across the room with shoes.,c096 12.60 32.00;c150 4.00 12.50;c144 12.20 32.00;c094 0.00 32.00;c093 0.00 32.00;c053 0.00 12.00;c097 6.90 11.40,30.75\r\nHXUI5,ENHU,Closet / Walk-in closet / Spear closet,5,7,Yes,A person dresses up in a jacket and shoes. The person looks in a mirror and fixes their hair. Then the person takes a picture of themselves in the mirror with a camera.,camera;clothes;hair;mirror;phone;picture;shoe,\"A person puts on shoes and a coat while grooming themselves in the mirror. The person then takes out a phone and takes a selfie.;A person is putting on some shoes. A person is also dressing. A person is looking at themselves in a mirror and fixing their hair. Finally, the person takes out their phone.\",c144 29.20 36.10;c055 0.00 14.50;c018 34.00 39.00;c148 13.40 28.70;c087 35.20 47.60;c015 34.80 49.00;c000 9.00 15.20;c096 25.60 49.00;c002 11.90 18.30,47.88\r\nZUU8W,P2J3,Bathroom,4,1,Yes,A person is in the bathroom washing a chair and another person with a laptop is smiling.,chair;clothes;laptop, another person is doing something in the shadows;The people are facing each other and moving toward something sitting on the floor between them.;A person is sitting and cleaning  chair at the same time.  Another person is also sitting down and is on a computer.,c052 0.00 37.00;c059 0.00 37.00;c005 0.00 37.00;c148 0.00 37.00;c047 0.00 37.00,35.96\r\nIKYAW,4UGC,Pantry,7,7,Yes,A person is smiling in the doorway of the pantry. Then they begin fixing the doorknob.,closet/cabinet;door;pantry,a person looks closely at items in a shelf and then proceeds to close the door in order to lock it.;A person stares into a pantry and then closes the door. The person sticks something into the doorknob of the pantry.,c140 12.50 32.00;c152 0.00 3.10;c006 4.80 12.80;c007 14.50 32.00;c112 4.80 12.80,30.75\r\nS407A,CP6Y,Home Office / Study (A room in a house used for work),7,7,Yes,A person is washing the dishes after eating a sandwich. The same person is then pouring a glass of water.,chair;cup;dish;glass;table;towel;water,\"A person is sitting in a chair, and pouring water into a glass.;A person sitting in a chair, in front of a desk with a computer. The person then begins cleaning then takes a drink from a bottle of water.;A person sitting at a computer pours some water.\",c118 0.00 6.40;c119 10.20 16.60;c108 13.20 21.40;c059 0.00 22.00;c121 0.90 15.10;c009 1.80 6.50;c009 8.10 12.80;c009 10.90 15.30;c110 2.80 7.40;c033 1.40 12.50;c014 0.00 21.40;c038 3.50 8.70;c034 13.10 22.00;c109 7.80 12.70;c107 2.60 12.70;c011 0.00 22.00,21.38\r\nXSVLL,M7K8,Living room,7,6,Yes,A person runs into the entryway and sits down at the table. The person takes out a mirror and watches themselves for a moment.,chair;door;mirror;table,\"A person runs around the house, touching a door while doing so.  The person then runs to a table, sits down in a chair, then looks at themself through a mirror.;A person runs to the door and runs back to sit down and look into a mirror.  This person looks into the mirror closely.;A person runs around the room and then sits down and looks at themselves in the mirror.\",c093 9.20 33.00;c096 8.80 33.00;c150 0.00 10.80;c151 6.80 12.50;c059 9.30 33.00;c011 9.30 33.00;c154 1.30 9.20;c010 27.00 33.00;c009 28.80 33.00;c097 4.70 9.30,31.83\r\n0HR01,SW82,Pantry,7,7,Yes,A person is holding a blanket.  Then a person is holding a light up to see better.,blanket;closet/cabinet;door;light,\"This person is holding a blanket, walks into the kitchen, opens a food pantry and shines a flashlight into it.;Person carrying a blanket opens a pantry and looks in with a flashlight as if trying to find something then a cat walks past the person;A person opens a pantry door and looks around inside the pantry with a flashlight while they are also holding a blanket.\",c070 0.00 31.00;c008 1.00 13.70;c113 0.90 12.10;c141 1.60 6.70,30.21\r\nAVSPS,ZDKC,Living room,7,7,Yes,A person is sitting down and eating food. The person uses a broom to clean up the  crumbs before leaving.,bowl;broom;couch;dish;floor;food;sofa;spoon,\"A person is sitting down on a sofa eating a bowl of food, when they finish they begin to sweep the floor with a broom.;A person is sitting on the couch eating soup, they drink the soup out of the bowl and pick up the broom and sweep the floor.;A person is sitting on a sofa eating cereal.  The person drinks all the milk from the bowl.  Then the person gets up and sweeps the floor with a broom.\",c102 27.80 49.00;c061 0.00 28.90;c156 0.00 28.90;c154 24.70 32.80;c123 0.00 28.90;c127 28.30 49.00;c119 26.60 32.60;c100 28.10 34.00;c098 29.00 34.30;c062 24.70 32.80;c118 0.00 28.90,48.46\r\nDCV2M,AT5D,Bedroom,6,7,Yes,A person is awakening after sleeping and looks at their phone. They then put their phone on their pillow and start undressing.,bed;clothes;phone;pillow;shirt,\"A guy is lying in bed and checks his phone before standing up and unbuttoning his shirt.;There is a person sleeping in a bed.  That person sits up and check their phone.  That same person stands up and starts to unbutton their shirt.;A person is lying on a bed and they sneeze, get up, check their phone and unbutton their shirt.\",c015 12.60 26.10;c154 17.60 24.60;c155 25.40 32.00;c146 3.00 13.60;c134 0.00 12.50;c133 0.00 15.40;c018 12.50 26.40;c016 13.90 26.10;c135 10.70 25.30,31.42\r\nK1QIV,4TV7,Bathroom,6,6,Yes,\"In the bathroom, the person was standing by the wardrobe.  The other person was smiling as they used the broom.\",broom;floor;mirror;sink;water,\"Person sweeping the bathroom while another person comes in looks in mirror and then leaves again.;A man is sweeping the bathroom floor as a woman comes in, looks in the mirror, and then leaves after a moment.;Two people in a bathroom. One person sweeping the floor behind the toilet making their way towards the sink. Other person walks in looks at the floor and continues to make their way out of view.\",c102 0.00 32.00;c152 15.50 32.00;c096 3.50 29.00;c154 0.00 32.00;c098 0.00 9.50;c098 13.50 18.60;c127 20.20 32.00,30.62\r\nVVQYB,4TV7,Bathroom,6,6,Yes,A person is running the sink in the bathroom to brush teeth.  Another person is laughing and sitting on a chair.,chair;doorway;sink,\"Person sitting at the sink while another person come in pick up toothpaste and toothbrush then brush teeth;A person sits in a bathroom, while another walks in. The person washes something in the bathroom sink and then brushes their teeth.\",c059 0.00 40.00;c097 2.50 7.50;c152 0.00 6.50;c149 9.60 15.50,39.17\r\nFR5FD,CP6Y,Recreation room / Man cave,5,6,No,A person is sitting at a desk drinking coffee by the window.  After taking a few sips the person gets up and leaves.,chair;coffee;cup;desk;dish;table;window,\"A person is sitting in a chair drinking from a mug, then stands up and walks out of the room.;There is a person sitting in a chair drinking coffee out of a mug.  That same person then gets up and leaves.\",c106 0.00 5.30;c011 0.00 20.20;c154 16.00 21.30;c118 0.00 23.00;c107 0.00 23.00;c092 0.00 19.50;c059 0.00 20.20,22.12\r\n2FG3P,687U,Garage,5,5,Yes,A person in the garage is working with a vacuum and starts walking with a box towards the door.,box;door;floor;phone;vacuum,A person talked on his phone in the laundry room.  The person interacted with the dryer during this process.;A person is kneeling down and playing with their phone.;A person calls someone on their phone. The person then hangs up rather quickly.,c019 1.50 13.40;c016 0.00 17.00;c015 0.00 17.00,16.42\r\nJ1KLV,AT5D,Stairs,3,6,Yes,\"A person walks up the stairs, playing with their phone while holding a blanket. The person opens the door at the top, walks through, then closes the door behind them.\",blanket;clothes;door;phone;towel,A person is walking up the stairs holding a towel;A person is slowly walking up the steps with a thing around their shoulder before they head out the door.,c015 0.00 30.00;c006 23.50 30.00;c008 16.20 26.40;c070 0.00 30.00;c097 25.00 29.40;c141 16.20 20.70;c033 0.00 30.00;c016 0.00 20.10;c000 0.00 30.00,29.12\r\nQ3Z4V,GE1M,Stairs,6,7,Yes,\"A person undresses while walking down the stairs, then sits down on the bottom stair next to a cup of coffee and starts fixing a button on the clothing removed.\",clothes;cup;doorway;floor;stairs,A person walks down a set of stairs while removing an article of clothing. The person then sits down and drinks something while looking at the article of clothing.;A person is walking down the stairs. The person is also undressing. The person then sits down and drinks from a glass while holding some clothing.,c106 16.80 24.60;c155 0.00 16.30;c151 14.20 21.50;c002 0.40 24.30;c000 9.50 32.00;c125 15.10 19.40;c109 21.80 26.00;c110 16.00 20.40;c097 0.50 4.80;c107 16.50 20.80,31.25\r\n6V20P,ENHU,Closet / Walk-in closet / Spear closet,2,6,Yes,A person is tidying the pillow on the shelf.  The person then is leaving the closet with a glass of water.,bottle;closet/cabinet;cloth;doorway;glass;pillow;shelf,A person standing in front of shelf put a black cloth on shelf picks a bottle of yellow liquid and walks out of the room.;A person puts a pillow on a shelf. They grab a cup and leave the room.;A person is putting stuff in their dresser and walk out of the closet,c081 0.00 6.40;c107 2.10 10.00;c110 2.30 7.10;c082 0.00 5.50;c097 4.10 9.40;c114 0.00 6.90,8.58\r\nLG7WK,ENHU,Home Office / Study (A room in a house used for work),5,5,Yes,\"One person lies down by a box with a picture on top, then suddenly awakens and watches the door.\",box;door;floor;picture,\"A person laying on a floor, then sits up, picks up a book and looks at it. The person sets the book back down and lays back down on the floor with his arms above his head.;A person lays on a floor, sits up to pick up an item and looks at it before putting it down and laying back down on the floor for a moment before getting startled.\",c044 0.00 5.70;c084 0.00 5.80;c088 0.00 7.00;c125 0.00 7.40;c083 0.00 5.80;c124 0.00 3.50,16.79\r\n1LEE4,JTAS,Kitchen,5,7,Yes,\"A person is in a kitchen running the water in the sink, they then start to sneeze before turning off the light.\",dish;hat;sink,A person turns on the water in the sink. The person begins to sneeze then the person turns off the water.;A person is in the kitchen running water in the sink to do dishes. Then she sneezes into her hand and walks away.,c153 8.60 18.60;c154 12.70 19.00;c121 0.00 19.30,22.71\r\n1TIAK,EDYS,Living room,6,7,Yes,A person takes a bottle of medicine off of the table and puts it on the window sill.  The person fixes some messy homework papers on the table.,cabinet;chair;doorway;homework;paper;shelf;table,\"person takes something off a table then puts in a cabinet, they leave the room then sit down and work on homework;A person picking up a water bottle, adjusting something on a shelf and then reading aloud from a stack of pares before adjusting the object on the shelf again.;A person puts something on a table then sits down and reads a magazine and then leaves.\",c115 8.50 14.00;c151 9.80 15.60;c081 3.10 8.90;c154 23.10 27.50;c059 12.60 16.80;c117 8.30 12.50;c145 11.40 15.80;c097 6.70 13.50,39.46\r\nJVOM3,4UGC,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"One person snuggles up with a book and a flashlight by the doorway, then closes the book and undresses, taking off their shoes.\",book;clothes;doorway;light;shoe;table,\"A person wearing a plaid shirt and holding a book shines a flashlight forward, sets the book down, and then removes the plaid shirt.;A person is standing in an entryway while snuggling with a book and holding a flashlight, and then the person removes their shoes and begins to undress.\",c026 0.00 20.30;c032 0.00 20.30;c025 11.40 18.00;c155 16.90 32.00;c057 25.10 34.30;c148 16.70 35.00;c009 15.20 20.70;c105 9.50 14.00;c104 4.70 9.40;c028 14.60 19.80;c003 30.70 35.00,38.17\r\n3B97C,JTAS,Kitchen,7,7,Yes,A person is running into their kitchen holding a laptop. They place it on a shelf and leave.,counter;laptop;microwave;shelf;stove;table,\"A person walks into the kitchen carrying a laptop. They set the laptop down on the counter and leave the room.;A person carrying a laptop quickly jaunts into a kitchen, sets the laptop on a stack of books, and then turns and leaves the room.;A person walks into the kitchen with their laptop and sets it down before walking out.\",c047 2.10 8.50;c081 10.60 17.80;c009 11.40 18.20;c150 3.70 8.70;c049 12.00 18.70,20.46\r\nHBL9L,ENHU,Stairs,4,7,Yes,A person is sitting on the stairs eating a sandwich and watching a move on their laptop. They begin playing a game on their laptop.,food;game;laptop;sandwich,A person sits on the stairs while eating and looking at their laptop that is sitting on their lap.;A person is playing on their laptop and eating a sandwich,c052 0.00 15.00;c065 1.90 8.80;c156 4.60 10.20;c061 1.40 8.60;c051 0.00 15.00;c067 1.40 8.40;c047 0.00 15.00;c068 3.30 8.40;c069 0.00 5.90;c063 0.60 6.80,13.75\r\n4H64T,ZDKC,Kitchen,6,7,Yes,A person turns on a television and opens a refrigerator and begins smiling while eating some leftovers from a take-out carton.,dish;doorway;food;refrigerator;television,\"A person turns on a tv, stops and looks at it, then walks to the kitchen, opens the refrigerator and takes out some food.;A person walks up to a television set, turns it on, then walks to a refrigerator and removes something from the refrigerator, then proceeds to take the top off a container of food and start to eat the food with a plastic fork.\",c142 21.50 28.50;c143 14.60 21.20;c132 2.30 13.20;c156 32.10 44.00;c062 24.70 30.70;c061 21.50 28.90;c097 0.00 42.00;c120 20.90 30.00;c063 20.60 30.00,42.96\r\nUYZKX,SW82,Closet / Walk-in closet / Spear closet,7,7,Yes,A person walks into the closet holding a blanket.  The person puts the blanket into a box on the floor and sneezes.,blanket;box;closet/cabinet;clothes;door;floor;light;towel,\"This person opened up their closet and placed a blanket in the closet, before sneezing.;A person is holding a blanket while standing in a bedroom, and then enters a walk-in closet with the blanket and begins to sneeze while inside the closet.\",c074 21.20 26.90;c153 22.70 31.00;c001 21.20 27.50;c141 2.90 10.10;c097 6.40 12.40;c000 0.00 27.00;c113 3.90 10.20;c104 2.60 7.30;c008 3.00 10.20;c071 21.60 27.30;c033 0.00 26.90;c070 0.00 31.00;c003 0.00 31.00,30.46\r\nKZS5M,CP6Y,Bedroom,6,7,Yes,\"A person enters the bedroom, closing the door and turning the light on. The person sits on the bed and watches the TV as the person eats a sandwich.\",bed;dish;door;food;light;sandwich;sofa/couch;television,\"A person takes their shoes off and closes the door. The person takes a remote off the couch and then sits down. The person then eats some food.;A person kicks the thing before the door and walks around the room a little, grabbing a remote and eating something.\",c006 2.10 8.50;c104 7.30 14.90;c135 18.40 37.00;c065 23.30 34.30;c156 22.00 36.80;c123 20.80 37.00;c120 22.60 27.70;c132 22.90 37.00;c069 22.00 27.80;c061 21.70 37.00;c151 19.90 25.10;c141 0.00 8.60;c063 21.70 28.50;c067 23.50 31.80;c097 0.00 7.90,35.83\r\nOMFVL,ZDKC,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,\"A person rattles a doorknob and smiles. The stop, walk a few feet away and pick up a box from a table.\",box;doorknob;table,\"A person tries opening a front door but gives up and picks up a box.;A person trying to open the front door, then walks over to a table and picks up an item to look at.\",c141 0.00 13.50;c040 19.70 32.00;c152 1.70 8.80;c140 6.80 13.90;c043 14.40 29.00,30.83\r\nVAV4C,ZDKC,Bathroom,4,7,Yes,\"A person is in a bathroom drinking from a cup and eating a sandwich, they then take their last bite and walk out the doorway.\",cup;dish;doorway;food;glass;sandwich,\"a person sitting on the toilet repeatedly takes a bite of food, then sips water, and repeats the process until he is finished with both and moves away.;The person is sitting on a closed toilet eating and drinking next to the shower stall in the bathroom.\",c097 43.30 48.00;c106 9.30 17.60;c065 13.80 23.50;c067 6.50 13.80;c156 13.80 23.50;c118 0.00 48.00;c061 0.00 36.00;c107 0.00 48.00;c154 41.60 46.80,47.00\r\nGI61S,ARRB,Garage,5,6,Yes,A person is fixing a light while holding a sandwich in one hand.,chair;food;light;sandwich,A person is standing on top of a car in a garage fixing a light while holding food in their hand.;A person is standing on a chair and fixing a light in their garage while holding a sandwich.,c103 0.00 24.00;c067 0.00 24.00;c061 0.00 24.00;c060 0.00 24.00,23.08\r\n74GN1,4UGC,Kitchen,7,7,Yes,A person is cooking something on the stove.   They turn off the burner and use two towels to grasp the pot off the stove.,dish;food;pot;stove;towel,A person is cooking on the stove and grabs towel to move the hot pan;A person is standing in kitchen next to a pot of food.  The person mixes it then checks to see if the pan is hot.    They then take two towels and pick up the pot.,c033 20.40 34.20;c147 0.00 22.10;c034 20.80 35.00;c120 25.70 33.60;c062 25.90 33.60;c061 26.10 36.10;c118 26.10 36.10;c063 26.10 36.10,38.96\r\nGHC5X,GE1M,Stairs,5,7,Yes,A person is sitting on the stairs closing a box. They start taking the box downstairs when they notice a glass on the stairs they forgot.,box;cup;doorway;glass,\"A person sits on some stairs and drinks some water. The person then packs up a box, picks up the box and walks down the stairs..;A person takes a glass of water and drinks. The person packs a box u and walks down the stairs with glass in hand.\",c039 2.60 18.80;c040 15.30 28.00;c107 0.00 5.90;c154 16.50 22.00;c097 24.80 28.00;c110 22.20 27.80;c106 0.00 4.30;c109 0.70 6.10;c043 15.40 20.40,27.00\r\nAWW55,0Z4M,Bedroom,4,6,Yes,A person is throwing pillows onto a sofa and then eating a sandwich and drinking out of a glass in the bedroom.,bed;clothes;cup;food;glass;pillow;sandwich;sofa;table,A person is walking around their bedroom cleaning up. After everything is put away they sit on their bed and start eating a sandwich.;A person puts a cup on the desk and sits down on a bed. The person eats some food while drinking some more from the cup.,c065 12.30 34.00;c067 11.00 34.00;c106 6.30 24.30;c107 4.50 26.30;c123 7.20 34.00;c156 12.50 34.00;c068 9.30 34.00;c004 0.00 6.30;c062 10.20 34.00;c003 0.00 4.00;c002 0.00 3.50;c061 9.80 34.00;c069 9.30 15.50;c009 9.00 13.80;c151 0.00 34.00;c001 0.00 32.00;c000 8.00 34.00;c135 0.00 34.00;c079 0.50 5.70;c063 10.00 16.20,33.29\r\nDD3Q1,JTAS,Living room,6,5,Yes,\"A person is sitting in a chair. The person leans over, grasping their shoes, and begins to put them on.\",chair;clothes;shoe;sofa/couch,The person is sitting on the love seat and putting on shoes.;A person is sitting on a couch in a living room area and begins to put on a pair of boots while sitting on the couch.,c055 2.10 18.30;c059 0.00 26.00;c148 2.50 26.00;c123 0.00 26.00;c053 2.10 12.80;c123 0.00 4.30;c056 0.30 7.80,25.08\r\nHYOQB,ENHU,Bedroom,6,5,Yes,A laughing person is in their bedroom watching television sitting on a bed. The person takes off their shoes and leaves.,bed;clothes;doorway;shoe;television,\"A person sits on a bed swinging their feet while watching TV. The person then takes their shoes off and hastily walks out of the room.;A person sits on a table swinging their legs, then kicks off their shoes and walks out.\",c135 0.00 5.30;c057 2.10 7.60;c131 0.00 5.00;c155 1.70 7.80;c132 0.00 5.30;c131 0.00 10.00;c154 1.30 5.90;c097 5.90 10.00,8.58\r\nR1KMF,JTAS,Living room,6,6,Yes,A person folds a towel and puts it into a bag. The person takes the bag and walks out of the room.,bag;blanket;door;towel,\"A person folds a towel and pushes it into a handbag. The persons turns, opens a door by turning the handle, and leaves the room without closing the door.;A person is standing and folding up a towel, and then stuffs the towel into a purse or handbag and opens a door and leaves the room.\",c023 10.30 18.50;c037 0.00 18.50;c022 11.10 23.30;c021 17.00 22.90;c075 0.00 14.70;c020 11.80 28.40;c034 13.40 21.30;c141 20.00 27.10;c033 0.00 19.50;c008 20.90 25.10;c097 23.40 27.70,28.17\r\nW7CR5,AT5D,Kitchen,5,7,Yes,A person is playing with a towel while another person is lying in a doorway.,blanket;towel,A person is standing in a dining area while repeatedly tossing an object in the air and catching it. A second person sitting in a doorway observing the first person. A third person is descending the stairs in the background.;A person stands in a dining room throwing a towel up and down while another person sits in a door way watching them.,c036 4.20 11.20;c070 0.00 32.00;c074 0.00 32.00;c152 25.60 31.20,30.83\r\nS7JTZ,BPXZ,Bathroom,5,7,Yes,\"A Person walks into the bathroom holding a camera and takes a selfie in the mirror. They set the camera on the shelf, sit on the side of the tub and take a timed picture.\",camera;doorway;hair;mirror;phone;picture;tub,\"A person is walking into a bathroom.  The person picks a phone off a counter and uses it to take pictures of their self.  The person bends down to pull out a container to place the phone on.  The person then sits down on the side of a bathtub to pose for another picture.;A woman is walking into a bathroom, where she begins to take selfies before gathering items from the floor by the toilet and sitting on the edge of a tub.\",c096 10.50 15.90;c087 3.00 14.50;c015 2.40 14.50;c151 22.40 29.00;c017 19.70 25.30;c097 0.00 4.10;c149 19.20 24.90;c016 0.70 16.20;c144 23.40 28.00;c152 3.30 14.20,28.38\r\nFT9PW,M7K8,Dining room,7,2,Yes,A person is holding a chair while another is tidying the refrigerator.,chair;fridge;refrigerator;table,\"A person is leaning on a table, while another person is doing something in the refrigerator.;A person walks to and  stands behind a chair with a dot standing on it. Another person is looking for something in a refrigerator.;a person is sifting through the fridge while another person is petting the dog.\",,31.04\r\nFQS7O,CP6Y,Living room,7,7,Yes,A person is doing their homework in the living room. The person starts fixing a wobbly table when the pick up towel they find on the floor. The person laughs.,blanket;book;floor;homework;paper;shelf;table;towel,\"A person is kneeling on the floor at a coffee table, doing homework. The person adjusts the table and then picks up a towel and stands up.;A person is sitting a table and working on their homework. The person then closes a book and picks up a pillow.\",c035 20.50 26.00;c125 0.00 23.60;c011 0.00 25.40;c145 0.00 15.80;c154 20.60 26.00;c012 9.10 23.60;c115 0.00 5.20;c033 21.00 26.00;c028 14.80 20.00;c025 6.90 11.50;c014 0.00 13.70;c037 21.00 26.00;c073 21.00 26.00;c070 21.60 26.00;c032 0.00 13.90;c082 8.50 24.30;c026 0.00 12.50,24.50\r\n3G1OQ,GE1M,Bedroom,7,7,Yes,A person is lying on their bed as they play a game on their phone. The person stands up and walks towards the mirror to fix their hair.,bed;game;hair;mirror;phone,Person sitting on the sofa using a cell phone stand up and go over to the mirror to comb hair.;A person is in bed texting on their phone before they get up and fix their hair in the mirror.,c134 0.00 17.80;c096 18.90 28.00;c144 22.70 28.00;c016 0.00 17.80;c154 15.50 21.10;c017 12.00 17.30;c015 0.00 17.30,27.46\r\nNBMH9,EDYS,Pantry,7,7,Yes,\"A person runs into the pantry, pulling the doorknob and closing the door behind them. The person sits down at a table.\",chair;door,\"A person walks into a room, closes the door and then comes back out of the room, sits in a chair and thinks.;A person is shutting and opening a door. A person is then fixing something on a shelf. A person is then sitting in a chair.\",c006 3.70 10.70;c008 6.30 12.60;c151 17.80 25.00;c059 21.40 37.60;c097 2.50 13.30,37.67\r\nSY5QP,BONA,Recreation room / Man cave,6,5,Yes,A person is standing in the room holding a sandwich.  The person puts the sandwich down and walks to the wardrobe get a glass of water and drinks it.,closet;cup;dish;door;food;glass;sandwich;wardrobe;water,A person is standing with a sandwich they put the sandwich down and go over to the fridge and take a drink out of the fridge and take a drink of the drink.;Person standing in a room eating a sandwich then get a can out of the cabinet and begin to drink.,c067 0.00 14.00;c113 17.70 24.30;c106 23.20 30.70;c154 0.00 12.10;c118 20.10 32.00;c006 21.20 26.40;c062 10.80 18.10;c107 20.00 32.00;c112 21.10 26.40;c008 17.40 25.20;c068 11.20 17.70;c110 19.70 24.90;c061 0.00 16.30,30.71\r\n6FJBD,4UGC,Living room,4,6,Yes,A person is closing their laptop. They pick up a box and leave.,box;chair;couch;doorway;laptop;man;sofa;table,\"A person sitting on a couch with a lap top.The person closes the laptop set it off to the side of a table.The person continues to pick up a box and opens it ,closes the lid and gets up and walks out of the room.;Person sitting on the sofa holding a laptop put it down and then pick up a box then get up and leave the room.;A person is sitting on a couch and looking at a laptop computer, and the person puts down the laptop and picks up a box and then stands up and leaves the room with the box.\",c039 17.30 21.90;c041 15.30 20.80;c046 4.80 10.60;c049 9.40 15.60;c052 0.00 7.90;c009 9.70 15.80;c040 14.20 31.00;c043 21.00 31.00;c047 0.00 15.80;c051 0.00 11.10;c154 21.40 27.00;c123 0.00 24.90;c097 25.60 31.00;c059 0.00 23.80,30.25\r\nWP5RH,BONA,Kitchen,6,5,Yes,A person is running in place under a doorway and then leaving with a brown bag lunch in the kitchen.,bag;counter top;doorway,\"A person runs through a doorway and stands on a counter.  That person gets a bag out of a cabinet and takes it with them.;Boy run into the room climb on the cabinet get a bag put something in it and run out room.;Person runs into kitchen, hops up on the counter and grabs a lunch box. Then proceeds to zip the lunch box and walk out of the kitchen.\",c020 20.40 34.00;c023 6.80 16.10;c097 0.00 3.80;c150 0.00 8.00,33.21\r\nTUJF4,I48P,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person walks into the entryway and takes a pair of shoes from under a chair.,chair;door;man;rug;shoe,\"A person is entering through the door. The person wipes their feet on the run. The person picks up a pair of shoes from underneath a chair and unties them.;A person opens a door and walks through it. The person shuts the door. The person then wipes their feet and picks up some shoes.;A person enters the house, wipes his bare feet and then picks up some shoes.\",c053 11.80 30.00;c006 4.50 11.00;c141 0.00 11.00;c097 2.40 10.20;c056 14.90 21.90;c008 0.90 8.20,29.42\r\nHSKVH,GFWE,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is putting medicine in the closet.  Then a person is closing the door and turning off a light.,closet/cabinet;cup/glass/bottle;door;food;groceries;light;medicine;shelf,A person takes a can and puts it inside a room. The person then leaves the frame of the camera.;A person is standing at the bottom of a staircase and places an object (which could be a cup or mug but it's difficult to tell) on the floor of a closet.,c006 4.00 10.30;c008 0.00 6.30;c141 0.00 11.00;c130 1.70 8.00;c081 0.80 7.40;c105 9.20 13.50;c128 0.00 7.20;c062 0.00 6.90;c113 0.80 5.80;c109 2.10 7.40;c112 4.60 10.10,30.58\r\nX87CU,M7K8,Kitchen,6,7,Yes,A person is eating in front of the stove. Another person is smiling while grasping a broom.,bag;broom;food,There's too people standing in a kitchen. One is standing near the stove and eating something out of a bag. The other is standing next to the other person holding a broom.;A person eats some food while another holds a broom in their hand. The both of them stare at the camera in the kitchen.;Two people are standing in a kitchen. One person is holding a broom. The other person is eating some food.,c098 0.00 34.00;c156 0.00 34.00;c152 0.00 34.00;c020 0.00 34.00;c149 0.00 34.00;c062 0.00 25.40;c061 0.00 34.00,33.33\r\nPDH7G,JQ7D,Bathroom,6,7,Yes,\"A person walks into a bathroom with a makeup bag, looks into the mirror and then leaves the room.\",bag;counter;doorway;hair;mirror;purse;table,\"A person walks into a bathroom and puts a bag down on the counter. They look at themselves in the mirror for a bit and then walk out.;The person walks down the hall into the bathroom and looks at themselves in the mirror before leaving.;The person walks down the hallway, puts a small purse on the counter top, checks themselves in the mirror, then walks back down the hallway.\",c096 5.80 26.30;c020 0.00 10.50;c009 4.90 10.80;c144 19.10 25.40;c022 4.90 10.10;c097 2.50 7.10,29.92\r\nEDSUD,GE1M,Hallway,7,1,No,A person throws their shoes on the hallway floor. They grasp a pillow that was on the floor of the hallway.,clothes;door;floor;jacket;pillow;shoe;something,Someone walks through a door and takes off their jacket and hangs it on the wall and then takes off their shoes and grabs a pillow from the ground before walking away.;The person comes in and takes off a jacket. They hang the jacket up and take off their shoes. They pick something up and walk away.;Person enters a hallway takes off a jacket then takes off shoes then grab a bag and leave the room.,c054 19.50 24.80;c076 21.20 26.00;c057 9.00 23.90;c079 21.20 26.00;c155 1.90 12.80;c097 0.00 5.40;c141 8.10 15.30;c058 19.80 24.50;c000 2.90 12.00;c008 0.00 4.10;c006 0.30 5.30;c001 7.30 12.80,25.00\r\nYWS08,EZUG,Bathroom,6,7,Yes,A person sitting on the toilet kicks off their shoes. The person then goes to the sink and begins running the water over their hands.,hand;shoe;sink;toilet,\"A girl stands from off the toilet seat, where she has been sitting, and walks over to the sink, where she begins to turn on the faucet with her hand.;A person takes their shoes off while sitting on the toilet, gets up and then washes their hands in the sink.\",c139 3.70 10.00;c154 2.10 7.20;c058 0.00 6.90;c054 0.40 5.30;c057 0.00 6.00,9.29\r\nNEA53,CP6Y,Stairs,7,7,Yes,A person is on their stairs holding their phone and a box of cereal. They laugh at something on the phone before leaving their house.,bag;doorway;food;phone;stairs,\"A person is looking at a phone, while holding food and walking down the stairs.;A person smiles as the person walks down the staircase and looks at the phone with a bag of chips under his arm.;A person is descending a staircase while holding his cell phone and also a bag of what might be potato chips but I'm not sure what's in the bag.\",c015 0.00 24.00;c016 0.00 19.20;c020 0.00 24.00;c097 19.50 24.00;c063 0.00 20.40;c061 0.00 24.00;c152 11.00 17.80,23.25\r\nK9EAZ,0Z4M,Laundry room,7,4,Yes,A person is running the vacuum and then dressing in front of the mirror in the laundry room.,clothes;hair;mirror,\"Person running in place in a room for exercise looks in a mirror then began to get dressed.;A person is jogging in place in a bathroom, then looks in a mirror and puts on a shirt.\",c096 5.60 34.00;c148 15.10 32.20;c150 0.00 10.00;c094 5.50 34.00;c000 13.30 23.40;c002 11.80 19.40;c152 0.50 7.60;c144 6.00 15.40,33.17\r\nM3OMM,ENHU,Hallway,5,7,Yes,A person in the hallway is undressing by taking their jacket off. They wrap a blanket around them and start fixing their clothes.,blanket;clothes,\"A man unzipping a jacket and placing it on a railing and then picking up a green blanket and wrapping it around himself.;A man begins to undress. Then he picks up a blanket and wraps himself up in it, still standing where he originally was.\",c070 10.20 22.00;c001 6.00 13.50;c073 8.10 15.10;c002 0.00 8.40;c155 0.00 8.40;c072 12.80 22.00,20.75\r\n47RAA,ZDKC,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person sets a cup down on the table, and pours coffee into it from a thermos. The person takes out their phone and begins playing with it, as they put some random items into a box.\",box;closet/cabinet;clothes;cup;dish;floor;glass;phone;shelf;something;table,\"A person pours liquid into a mug that is on a sink counter then takes items from the bottom of a closet and places them in a waste basket.;The person puts a mug on the sink, takes out the phone, puts it back in the pocket then walks to the closet and bends down.\",c016 17.80 33.80;c108 5.00 12.30;c082 33.60 43.00;c119 0.00 4.70;c017 26.20 40.40;c015 17.60 34.90;c018 17.20 33.40;c114 31.70 43.00;c127 35.70 43.00;c109 5.60 17.00;c002 33.60 43.00;c004 33.20 43.00;c001 33.00 43.00,41.96\r\nCDVXN,ARRB,Garage,5,6,Yes,A person is holding the doorknob.  The person then is taking a laptop out of the garage.,doorknob;doorway;laptop,Boy standing in a hallway with a laptop in hand looking up information on the laptop.;A person is holding a laptop and watching something on the screen. The person looks around and walks out of the room.,c047 0.00 24.10;c051 0.00 22.10;c097 19.70 24.50;c141 0.00 22.90,26.46\r\nYT2C3,4UGC,Pantry,6,7,Yes,A person opens the pantry door while holding their phone. The person takes a paper towel from the shelf and wipes off their phone screen.,closet/cabinet;counter;door;phone;shelf;table;towel,\"Person walks towards pantry, opens door, takes out phone, opens it and set out counter, plls out paper towel, clean phone with towel;A person opens the pantry, looks at their phone, gets a paper towel, and wipes their phone with it.;A person opens the doors of a pantry and begins to wipe their cell phone with a paper towel they got from inside the pantry.\",c033 13.10 31.00;c038 14.80 31.00;c008 0.70 10.20;c017 6.50 15.60;c009 19.60 30.30;c035 14.60 21.30;c081 12.50 18.60;c015 6.70 17.40;c018 6.50 12.50;c141 1.40 6.60;c113 1.50 10.40,30.42\r\nK6W5I,BPXZ,Kitchen,7,7,Yes,The person opens door and enters the kitchen.  The person places a bag of groceries on the counter.  The person then puts away the groceries.  The person throws the empty grocery bag in the trash.,bag;closet/cabinet;door;food;groceries;shelf;table,\"A woman carrying a grocery bag enters a house through a sliding glass door, sets the bag on the kitchen counter, then begins emptying its contents into a closet.;A person walks through the door with groceries in their hands, then the person puts the groceries on the table and begins to put them away.\",c022 3.40 10.70;c009 3.10 10.90;c130 3.30 18.20;c021 4.30 8.80;c020 0.00 14.00;c097 0.00 4.10;c062 4.80 31.00;c113 15.30 20.90;c008 15.30 20.50;c081 16.80 22.70,30.04\r\nK9UXS,SW82,Laundry room,7,7,Yes,\"A person sits in the doorway to the laundry room, sorting a box of clothes. The person smiles as they pull out a certain article of clothing.\",blanket;box;clothes;doorway;floor;picture,A person looks through a cardboard box.  This person finds socks and folds a shirt from the box.;A person is sitting and taking some clothing out of a box. The person is folding the clothing and placing it on the floor.,c000 0.00 20.40;c044 0.00 7.80;c001 5.90 11.70;c125 0.00 31.00;c002 0.00 19.80;c073 17.60 24.80;c075 22.00 31.00;c004 0.00 18.10,30.33\r\n1V30R,P2J3,Living room,1,5,Yes,\"By the window, one person watches as another lies on the floor trying to fix a broken vacuum cleaner.\",floor;vacuum;window,Person sitting on the floor putting a vacuum together while talking to another person.;One person is sitting on the floor putting together a vacuum while another person is standing in the corner of the room watching,c125 0.00 33.00;c136 0.00 33.00;c137 0.00 33.00;c092 0.00 33.00,31.83\r\n1XBU2,CP6Y,Dining room,5,7,Yes,\"Person is drinking tea from glass mug and eating a sandwich, another person is playing on laptop.\",chair;cup/glass/bottle;food;laptop;sandwich;table,\"People are sitting in a room.  One person is eating at a table, the other person is looking at a laptop and shaking their fist.;Person sitting at the table eating another person is sitting in a chair with a laptop.\",c047 0.00 18.00;c052 0.00 18.00;c065 0.00 18.00;c156 0.00 18.00;c149 6.20 14.60;c063 0.20 4.80;c067 0.00 7.70;c152 6.50 15.20;c106 4.30 10.90;c011 0.00 18.00;c051 0.00 18.00;c061 0.00 7.70;c059 0.00 18.00,16.58\r\nP0NLV,CP6Y,Kitchen,6,6,Yes,A person is working on homework at a table in the kitchen. The person throws a pencil in frustration.,book;chair;homework;paper;table,\"A man sits at a short desk and writes in a notebook, rubbing his head as he ponders his homework.;A person does their homework.\",c011 0.00 27.00;c145 0.00 27.00;c027 0.00 19.80;c026 4.80 12.70;c014 0.00 27.00;c059 0.00 27.00;c032 0.00 21.80,26.12\r\nUD0P0,P2J3,Living room,6,7,Yes,Two people are having fun playing a drinking game at a table. One person uses a camera to take a picture and capture the moment.,bottle;camera;chair;cup;floor;glass;phone;picture;table;water,\"2 people were pouring drinks for themselves then drinking the entire cup. One person stopped drinking and took a photo of the other.;Two people sat at a table pouring water in their cups and drinking repeatedly. Person #2 took a camera off the table and took a picture of person #1.;Two people are sitting on the floor and taking drinks from a low table, and one of the people takes a picture of the other one while he continues to drink.\",c087 17.50 25.80;c015 17.50 25.80;c009 0.00 5.00;c106 1.10 6.10;c087 0.00 3.60;c108 0.00 3.80;c108 6.00 12.00;c125 0.00 34.00;c018 17.00 22.00;c107 2.00 9.00;c107 9.00 15.00;c108 0.00 34.00;c059 0.00 34.00;c107 0.00 34.00;c109 0.00 4.50;c109 3.40 9.40;c110 12.00 18.30;c011 0.00 34.00;c016 16.50 34.00;c010 0.00 34.00,32.71\r\nXNGAV,ENHU,Hallway,3,7,Yes,\"A person is watching their phone intently. After a few seconds they stop, use their phone as a camera and take a selfie while sneezing.\",phone;picture,\"A person stands in a hallway, looking at a phone.  This person holds the phone up, and then sneezes.;A person is standing in a hallway looking at their phone.\",c015 0.00 12.00;c016 0.00 12.00;c087 6.20 12.00;c153 8.30 12.00,10.67\r\n7B6FP,ENHU,Living room,5,5,Yes,\"A person is in a living room playing with a book and flipping through the pages, they then leave out the door.\",book;door;floor,A person sits on the floor reading a book.  This person then stands up and walks through a door.;A person looks through a book while sitting on the floor then gets up and walks out.,c026 0.00 5.20;c032 0.00 15.50;c008 16.00 22.40;c154 11.50 18.70;c125 0.00 15.20;c141 16.40 22.00;c097 18.10 23.00;c025 9.70 15.50;c027 0.00 3.90,22.12\r\nTCOXG,4UGC,Home Office / Study (A room in a house used for work),5,5,Yes,\"A person takes a glass of water from the shelf and drinks from it. The person, still holding the glass, sits down on the sofa.\",book;chair;cup;shelf;sofa;table;television,A person is sitting at a desk using the computer while another person is at a book shelf they have a glass of water and they are drinking it. then they walk over to the couch and sit down.;A person places a book on a book shelf and then takes a sip of water from a glass and then sits down on a couch.,c106 9.50 31.00;c110 9.00 15.20;c151 21.30 27.80;c011 0.00 5.80;c081 5.30 12.10;c107 9.50 31.00;c123 21.30 31.00;c028 5.10 12.00;c132 25.10 31.00;c026 2.80 12.30;c059 0.00 5.80,30.21\r\nPOACA,I48P,Recreation room / Man cave,4,6,Yes,\"A person is in a man cave watching television, they then start to sneeze as they open up a homework book.\",book;couch;remote;sofa;table;television,\"The person is sitting on the couch watching television. The person picks a book up off the table and opens it. The person flips through the pages of the book. The person picks up the remote and changes the channel;A person is sitting on the couch, watching television and looking a a book.  This person uses the remote.;A person sitting on a couch, picks up a book off the coffee table and opens it to read while watching TV.\",c026 0.50 31.00;c027 2.20 7.80;c030 0.00 4.50;c032 25.20 31.00;c123 0.00 31.00;c132 0.00 31.00;c115 27.70 31.00,29.67\r\n26RQN,4UGC,Kitchen,5,7,Yes,\"a person is cooking on a stove, then the person starts washing a table.\",cake pan;dish;food;pot;spoon;stove;table;towel,\"A person is cooking on a stovetop, then walks over to wipe off the kitchen table.;A person is cooking on the stove, stirring a pot with a spoon, then picks up a paper towel, walks to a table and wipes it off.;A person stirs something in a pot on the stove, then walks over to a table, tears off a paper townel and starts to wipe off the table.\",c013 22.00 35.00;c147 0.00 18.40;c038 22.80 35.00;c119 28.60 34.10;c037 23.20 33.90;c012 23.50 35.00,33.75\r\nFV8CK,9809,Stairs,7,7,Yes,A person throws some clothes down the stairs.  Another person at the bottom of the stairs is holding a box and taking a drink.,bag;bottle;box;clothes;doorway;floor;glass;laundry,\"a person throws some clothes down the stairs to someone else who is holding something and drinks water;A person throws another person's laundry down the staircase possibly in anger.;A person bends to pick up laundry while another person watches from the foot of the stairs, taking a drink from a bottle of water.\",c040 0.00 7.70;c021 2.50 9.70;c003 4.00 26.30;c002 3.40 9.10;c097 2.50 7.70;c001 4.80 18.00;c126 14.60 22.50;c106 0.00 7.70,30.75\r\n8CCEV,ENHU,Bedroom,6,6,Yes,\"A person is snuggling a pillow with their laptop open.  They put the pillow down, and tidy up before turning on the television.\",desk;floor;laptop;man;pillow;remote;table;television;tv,\"A person is sitting on the floor with a pillow on his lap and laptop on the floor.  He takes the pillow off his lap and throws it across the room.  He picks up the laptop after closing it and sets it on the desk after getting up from the floor.  Then he turns on the TV;The person sitting down on the floor with a laptop,stood up closed the laptop put it away picked up a remote and turned on television;A person who is sitting on a floor with laptop, holding a pillow,, putting pillow aside, closing the laptop and picking up a pillow, throwing on to bed and putting the laptop on bed.\",c046 1.60 7.10;c052 4.20 10.60;c076 0.00 5.60;c154 6.30 16.20;c125 6.40 14.80;c050 4.50 12.60;c132 16.00 21.00;c080 7.20 12.20;c078 0.00 4.10;c127 5.10 10.00;c009 16.70 21.00;c047 5.50 13.90;c077 5.90 11.70;c049 6.10 13.90,20.04\r\n0RNG6,CP6Y,Hallway,6,6,Yes,\"A person walks down the hallway, wearing a pair of shoes and holding a blanket. They stop to look at a picture hanging on the wall. A smudge on it irritates them, so they take it off the wall, and, sitting in the middle of the hall, begin washing it with the corner of the blanket.\",doorway;floor;picture;robe;stairs;towel;wall,\"A person wearing a robe walks into the hallway and removes a picture from the wall. They sit on the stairs and clean it with a towel.;The person walks into a hallway, grabs a painting off the wall and then starts brushing it with a towel.;A person walks into a room with a green and blue towel on the shoulder and grabs a painting off the wall, and starts wiping it.\",c084 6.10 22.00;c083 4.50 12.70;c151 9.10 16.80;c038 13.10 22.00;c097 1.70 6.80;c088 8.30 12.90;c125 10.20 17.30;c033 2.10 22.00,20.96\r\nRSFGZ,K8D4,Stairs,6,6,Yes,\"A person standing on the stairs looks up at the light. They begin undressing by removing their sweater, and then they grab a broom and head down the stairs.\",broom;clothes;floor;head,\"A person walks down some stairs and takes their shirt off. The person picks a broom up and continues to walk down;A person undresses as they walk down the stairs, and then they grab a broom.\",c098 9.90 18.00;c154 0.00 18.00;c126 8.00 12.70;c003 7.70 12.30;c100 9.70 14.60;c155 1.60 10.20,17.25\r\nK0FAG,B6UG,Kitchen,6,6,Yes,\"A person is standing in their kitchen laughing and holding dishes, and a glass of milk.\",counter;cup;dish;food;glass;plate;sandwich;table,\"A person is smiling and holding a sandwich and a glass.;A person standing in a kitchen walks over to a counter-top. The person then picks up a plate with a sandwich, and a drinking cup. The person turns toward the camera and smiles and laughs. The person faces away from the camera and then back toward the camera continuing to smile.;A person is standing in a kitchen while holding a glass and a plate with a sandwich on it and smiling and talking to someone who is out of view.\",c118 0.10 31.00;c107 0.00 31.00;c149 11.00 21.10;c067 0.10 31.00;c152 11.00 21.10;c069 0.00 31.00;c061 0.40 31.00;c063 0.10 5.40;c120 0.00 5.40,29.71\r\nZF7YA,I48P,Stairs,6,7,Yes,\"A person runs down a few stairs, sits on a pillow, and begins fixing a door.\",door;floor;pillow;stairs,A person walks downstairs and opens a door. The person sits on a pillow on the floor and touches the doorknob. The person then fixes the door.;A person descends a staircase and then sits on the floor at the bottom of the stairs and does some kind of repair work on a door or door frame while sitting on the floor.;A person jogs down the stairs and then sits on a pillow by a door. The person tinkers with the hinges of the door out of clear view.,c007 9.90 38.00;c151 5.10 11.70;c125 5.30 11.70;c150 0.00 6.50;c141 12.50 18.00,37.21\r\nCR2IM,EDYS,Living room,7,6,No,A person is seen washing the stove. The person then sits down on the sofa snuggling up to a blanket.,blanket;chair;clothes;doorway;phone/camera;sofa;table;towel,A person is in the kitchen then they walk out and go get a blanket and wrap the blanket around them.;Person walking through the house sits in a chair with a blanket around the neck.,c070 20.60 25.60;c072 21.50 29.50;c123 19.90 29.80;c151 19.00 25.80;c154 25.40 30.90;c002 20.70 25.60;c035 20.70 25.60;c073 20.70 25.60;c009 14.50 22.80;c059 19.80 24.70;c033 20.90 31.40;c097 8.60 14.10;c034 22.30 27.20;c148 21.20 26.70;c015 17.40 23.00,31.08\r\nDHDCF,GFWE,Hallway,6,7,Yes,\"A person walks down the hall, smiling, while drinking a glass of water. The person turns off the light once they reach the end of the hall.\",cup;doorway;glass;light;water,A person wearing a green sweatshirt smiles and  walks towards the camera drinking from a glass.;A person is walking and drinking water from a glass.,c106 2.10 8.80;c105 4.80 10.60;c152 0.90 9.30;c107 0.00 10.30;c097 0.00 5.40,27.17\r\n8KRLV,ENHU,Closet / Walk-in closet / Spear closet,2,5,Yes,One person throws some shoes into a wardrobe and starts undressing in front of it.,clothes;dresser;shoe;wardrobe,A person is in a closet undressing;A person puts some things in a drawer and begins to take off their dark green sweatshirt.,c155 3.70 10.00;c000 2.30 10.00;c054 0.00 4.30;c053 0.00 4.00,9.17\r\n76TOK,0Z4M,Recreation room / Man cave,5,7,Yes,\"Person is drinking from glass, while watching videos on laptop.\",chair;cup;glass;laptop;pop can;table;water,\"A person sitting and watching something on a laptop while drinking something out of a pop can.;a person sits and drinks a beverage while staring intensely at the laptop computer sitting in their lap.;A man sits at his desk in a chair, where he is working on his laptop and taking sips from a can to drink.\",c051 0.00 34.00;c106 9.30 34.00;c059 0.00 34.00;c107 8.00 34.00;c014 0.00 34.00;c047 0.00 34.00;c110 8.20 13.30;c052 0.00 34.00,32.75\r\nMRZ44,CP6Y,Home Office / Study (A room in a house used for work),5,5,Yes,A person in their home office is standing up next to a table. They begin eating a sandwich that they have been holding for quite a while.,food;laptop;sandwich;table,The person is looking at a monitor and eating something. The person stands a couple feet from the screen and stares.;A person is standing. This same person is watching something on a computer screen while eating a sandwich.,c065 8.10 17.00;c051 0.00 17.00;c067 0.00 17.00;c061 0.00 17.00;c156 9.60 15.30,16.33\r\nMYBRN,CP6Y,Dining room,6,6,Yes,A person sneezing in the dining room picks up a bag and then closes a cabinet door.,bag;cabinet;door;shelf,A person walks inside and sneezes. The person takes a backpack and closes some cupboard doors and then stands up.;The person walked to the middle of the room and sneezed. The person then picked up a bag and closed some cabinets.,c112 12.10 21.00;c006 11.80 21.00;c020 5.80 19.60;c153 1.50 8.90;c082 13.30 23.00;c114 13.40 23.00;c023 7.80 23.00;c021 8.50 16.50,22.25\r\n32K2C,GFWE,Bedroom,6,7,Yes,A person is holding a laptop while lying on a sofa watching television.,hair;laptop;sofa;television,\"A person sitting on the couch, legs stretched out with a laptop on them, watching TV, reaching to fix hair and looking up.;A person sits on the couch with a laptop in their lap and watches some tv. The person looks between both frequently.\",c047 0.00 34.00;c123 0.00 34.00;c132 0.00 34.00;c144 11.90 20.50;c052 0.00 34.00;c122 0.00 34.00;c051 0.00 34.00,32.75\r\nH5CJD,BKWQ,Kitchen,3,7,Yes,A person is in a Kitchen cooking food on a stove.  The person then walks to the refrigerator and sneezes after opening the door.,door;food;pot;refrigerator;stove,\"A person cooks food on the stove in the kitchen;A person stirs up some food in a pot. The person opens a fridge then sneezes, and closes the fridge door.\",c006 19.30 25.70;c147 1.00 18.60;c153 16.20 26.90;c143 14.60 20.80;c142 19.90 25.60,26.38\r\nI52A6,4UGC,Laundry room,4,7,Yes,\"A person drinks a glass of water. The person pours the remainder out into a sink, then opens the dryer.\",counter;cup;door;dryer;glass;man;sink;water,A person is drinking glass of water in laundry room then goes to bathroom to pour it out and back again.;The person is taking a drink of some kind of liquid in a cup and then walks into the bathroom and pours it out and sits the cup on the counter and then the person whips his hands together and then walks back into the laundary room and opens the dryer door.;A person is drinking a glass of water in a laundry room and then takes the water to a sink and pours it out into the sink and then opens the door of the dryer in the laundry room.,c106 0.00 3.50;c107 0.00 22.20;c109 17.40 22.00;c008 30.30 35.80;c097 4.30 9.50;c097 9.90 15.60;c097 19.80 25.00,37.29\r\n01THT,GFWE,Kitchen,6,6,Yes,\"A person is pouring food into a dish that came from a set of dishes, while also holding the dish and sitting at a desk or table.\",desk;dish;food;table,A person pours something from one bowl into the other. The person then holds the full bowl.;A person picks up two bowls and feigns pouring something into the other bowl. The person continues to hold up the other bowl.,c118 2.30 32.00;c009 6.80 14.00;c011 0.00 32.00;c120 0.50 6.30;c119 8.10 12.80,30.62\r\n3JXKZ,GFWE,Recreation room / Man cave,7,7,Yes,A person is opening a bag.  A person is laughing at a text on the phone they are getting out of the bag.,bag;couch;phone;purse;sofa,The person is sitting on a couch and the person reaches into a bag/purse and gets a cell phone out and starts to mess with it while smiling and rocking back and forth with it in hand.;The person is sitting on a couch.  The person removes a phone from a bag and starts playing with it while smiling.;A person is sitting on a sofa and pulls a cellphone out of a bag. The person starts to look at the cellphone and smiles.,c015 1.10 33.00;c016 1.10 33.00;c018 0.00 5.90;c021 0.00 3.80;c149 5.00 33.00;c123 0.00 33.00;c152 5.00 33.00;c017 29.60 33.00,32.38\r\n4683D,AT5D,Bedroom,5,7,Yes,A person walks over to a chair and sneezes. Another person walks over to the chair while carrying a camera.,camera;chair;doorway;paper/notebook;phone;sofa/couch,A person is walking into the living room and moves papers off of a chair and then they sit down on a chair while another person walks into the living room carrying something then they walk out;The person is cleaning off a chair to sit then another person walks around the room before leaving.,c016 12.00 32.00;c059 8.70 14.90;c151 8.30 14.70;c097 11.80 16.30;c123 0.00 3.10;c153 7.00 12.10;c015 0.00 2.80;c015 6.90 11.70;c115 3.40 9.80;c152 21.20 26.50,30.62\r\n35ZZP,BONA,Kitchen,7,7,Yes,A person takes groceries from the refrigerator. A person pours a drink then makes a sandwich.,bag;closet/cabinet;cup/glass/bottle;food;groceries;refrigerator;sandwich;table,\"A person opens the food before they arrange the food they are eating.;A person opens a fridge and gets some food out. The person puts the food on the table and pours some drink into a mug, then fixes up a plate of food.\",c066 18.40 37.00;c143 0.00 3.80;c021 7.50 13.50;c147 7.10 37.00;c112 3.50 9.10;c014 6.40 37.00;c009 6.70 12.40;c113 0.00 4.20;c062 6.20 12.40;c108 9.50 19.30;c063 0.70 7.70;c023 0.00 7.70;c061 2.00 12.20;c020 2.00 12.20;c130 5.30 12.00;c142 0.40 8.90,36.42\r\nEW8GX,EBH9,Bedroom,6,6,Yes,\"One person opens a box and throws a camera and laptop inside, then, holding the box, laughs and runs out of the room.\",box;camera;doorway;laptop;phone,\"A person puts a laptop computer that is sitting on a bed into a box, and then holds the box over their head.  The person then walks through a doorway and then back to the bed to set the box down.;A person packs something up on their bed and carries it around before placing it back on the bed.\",c040 8.10 30.00;c017 0.00 7.10;c046 5.80 11.10;c049 7.10 14.70;c152 8.70 13.20;c015 0.00 7.10;c043 8.70 15.50;c097 15.40 20.70;c043 8.60 30.00;c047 3.00 12.10;c097 15.50 27.70;c042 26.50 30.00;c048 4.00 9.90,29.38\r\nD0Y4L,AT5D,Stairs,6,6,Yes,\"A person is closing the door at the top of the stairs. Smiling, the person walks down the stairs and over to the television.\",door;phone/camera;television,\"A man stands and closes the door, the walks down the stairs into another room, where he picks up his phone from a table in the hall.;A person closes the door to outside and walks down some stairs. The person continues to walk down and eventually gets a tv remote.\",c006 0.00 5.90;c132 27.20 31.00;c097 24.30 28.80;c018 25.80 30.60,30.04\r\nXHN6Y,JTAS,Kitchen,7,7,Yes,A person is cooking at the stove. The stop and pour some food into a bowl.,box;cabinet;dish;door;food;stove,A woman is cooking in a frying pan on the stove; she then removes a bowl from a cupboard and pours cereal into it.;A person is cooking something on the stove and then poured cereal into a bowl.,c061 19.80 27.00;c062 19.00 27.00;c147 0.00 9.70;c113 5.20 13.70;c040 19.40 27.00;c043 16.00 23.60;c112 8.20 13.70;c044 19.80 27.00;c120 7.60 16.60;c118 9.90 27.00;c008 6.50 10.90;c063 19.00 27.00,25.96\r\nAPLZS,ARRB,Dining room,6,7,Yes,\"A person sits in a chair drinking a cup of coffee. The person opens a box, looks inside, then closes the box back up.\",box;chair;coffee;cup;dish;table,Person sitting a table drinking from a coffee mug who decides to put it down on the table to look in the box on the chair.;A person sitting at a table is drinking from a mug then reaches into a box.;A person is sitting at a table drinking a cup of coffee then they lean over and spit their coffee into a box.,c107 0.00 22.00;c059 0.00 30.00;c041 17.70 26.10;c119 17.00 22.50;c118 0.00 22.20;c009 17.40 22.50;c039 24.30 30.00;c109 18.20 22.60;c011 0.00 30.00;c106 0.00 4.60;c106 1.50 7.80;c106 5.40 11.40,28.92\r\nO1PD3,V044,Bedroom,6,7,Yes,\"a person is walking next to a shelf wearing only a towel, walks over to the dresser to get dressed.\",clothes;mirror;shirt;towel;wardrobe,\"The person walked into a room went to the  wardrobe got a shirt and wear it.;A person walks into a room, stares into a mirror, puts a shirt on, and then walks away with satisfaction.;{}\",c148 9.40 26.00;c002 1.30 6.30;c096 7.10 21.70;c000 1.70 16.50,25.21\r\nYUTDC,V044,Kitchen,6,6,Yes,A person in the kitchen begins pouring themselves a glass of water and then drinking that glass of water. On a table nearby is a laptop and some shoes.,bottle;cup;dish;drink;glass;laptop;shelf,a person walks into the kitchen and pours a drink while looking at a laptop;A person walks into a kitchen and drinks something while standing in front of a laptop on the counter.;The person pours a drink and then drinks until the liquid is all gone.,c107 5.80 30.40;c108 6.30 14.60;c106 13.80 31.00;c119 2.50 31.00;c118 2.10 31.00;c120 3.90 8.00;c110 4.20 8.30;c109 10.90 15.10,30.04\r\nFQGW4,ENHU,Recreation room / Man cave,6,6,Yes,\"A person holding a cup and a beverage enters through the doorway of the recreation room.  They adroitly kick off their shoes and put the cup and beverage on a hard surface.  They begin carefully pouring the beverage into the cup, taking their time.  A surprise sneeze startles them, but doesn't cause them to spill anything.  They sit down in front of the television and enjoy their beverage.\",bottle;chair;cup;doorway;glass;milk;shoe;table;television;tv,\"A person walks into a room, kicks off their shoes, pours a glass of milk, sneezes, and sits down in a chair to take a drink and watch television.;A person enters a bedroom, kicks off their shoes, pours a glass of milk, sneezes and then sits down in a chair to watch tv.;A person walks into a room with a glass before pouring a glass of milk, sneezing and sitting down.\",c097 0.00 4.00;c057 3.20 8.00;c132 17.10 23.00;c153 15.00 20.60;c059 19.90 25.40;c054 1.40 8.40;c058 1.40 8.40;c151 19.30 25.30;c132 19.60 26.00;c110 17.80 22.40;c009 5.20 9.90;c108 10.60 17.90;c109 5.40 10.20;c106 22.00 26.00;c107 0.00 21.50,25.08\r\nVXEXI,AT5D,Kitchen,6,7,Yes,A person is sneezing on a book while another person is smiling at a cup of coffee.,book;chair;coffee;cup;dish;glass;sofa/couch;table,\"A person sat at a table and looked at a cup. Another person was standing and reading from a book.;Two people are in a room, one is sitting down with a cup while the other person is standing and reading. The person standing sneezes and continues to read while the other person remains seated.\",c026 0.00 32.00;c153 15.00 23.80;c154 0.00 32.00;c032 0.00 18.60;c107 0.00 17.60;c152 17.80 32.00;c011 0.00 32.00;c149 0.00 32.00;c145 0.00 32.00;c025 14.70 20.70;c123 0.00 32.00;c059 0.00 32.00;c110 2.60 10.00;c118 0.00 32.00;c119 11.90 17.90;c115 0.00 32.00,30.92\r\nGAOV2,CP6Y,Kitchen,5,3,No,A person is sneezing into a phone and then putting a laptop in a bag in a kitchen.,bag;bog;laptop;phone;table,The person is doing something on a phone. They sneeze and put things into a backpack and zip the backpack up.;There is a person looking at their phone.  That same person then sneezes and starts putting something in a bag.,c021 9.00 15.90;c049 12.00 21.50;c016 0.00 7.10;c020 19.20 25.00;c047 11.90 21.90;c015 0.00 12.90;c153 2.30 9.20;c014 0.00 25.00,23.88\r\n132HR,ENHU,Hallway,7,7,Yes,A laughing person runs up the stairs holding a plate of food and a mirror.,book;dish;doorway;food;mirror;plate;sandwich;stairs,A person runs into a room and up the stairs holding a plate and a book.;A person runs into the kitchen holding a plate of food in either hand.;A person up some stairs smiling while holding a plate of food.,c061 0.10 6.00;c093 0.10 6.00;c150 0.10 6.00;c152 0.50 6.00;c118 0.10 6.00;c026 0.00 6.00;c063 0.00 6.00;c097 0.00 4.60;c067 0.00 6.00,5.33\r\nZZ4GP,I48P,Kitchen,4,7,Yes,A person is cooking some food on the stove.  Then person then begins running the vacuum around the room.,floor;food;stove;vacuum,\"A person is standing at a stove cooking, and stirring a pot. The person then walks over, picks up a vacuum, and starts vacuuming the floor.;A person is cooking at a stove. He stops cooking and walks over to pick up a vacuum and proceeds to vacuum the floor\",c137 11.10 33.00;c147 0.00 11.90;c127 10.00 33.00,31.54\r\nHNPX7,I48P,Hallway,6,7,Yes,\"A person is playing with bag of shoes, then the person starts sneezing.\",bag;floor,\"A person is sitting on the floor in a hallway, holding a bag full of something. The person sneezes 3 times and then sets the bag aside.;The person sat in a hall opening a plastic bag. The person began sneezing and then put the bag away.\",c020 0.00 20.30;c021 0.00 5.90;c022 25.20 31.00;c153 12.80 29.70;c125 0.00 31.00,29.92\r\n9HG4Z,ENHU,Dining room,2,7,Yes,\"A person is closing a door, then laughing and finally putting food on a table in a dining room.\",bag;closet/cabinet;door;food;groceries;table,A person makes a sandwich;The person picks up a loaf of bread after walking through a small door and places a paper and the bread on the table.,c006 0.00 7.70;c062 8.30 18.00;c009 10.60 18.00;c154 0.00 18.00;c022 14.60 18.00;c112 0.00 3.20;c061 8.90 18.00;c130 8.90 18.00;c141 1.50 7.20;c063 6.20 13.30,17.08\r\nTIWRY,JTAS,Kitchen,6,6,Yes,A person is in their kitchen holding a bag of groceries and an empty glass. They wash the glass and leave.,bag;box;cup;dish;food;glass;groceries;shelf;sink;water,Person taking groceries out of bag and putting them away in the cabinet and then begins to wash dishes.;A person unpacks groceries in the kitchen before pouring themselves water.;A person with a bag in the kitchen unpacks their things and gets themselves a glass of water.,c111 18.20 27.00;c020 0.00 5.60;c130 2.40 12.60;c081 7.70 15.10;c043 7.60 12.40;c062 2.10 8.80;c040 2.00 16.60;c042 1.90 16.90;c121 20.00 27.00;c063 1.70 11.30;c021 0.30 5.60,26.46\r\nAX46Z,M7K8,Bedroom,5,5,Yes,A person is awakening in their bed and gets out.  They stub their foot on a chair and catches themself on a table and starts laughing.,bed;sofa/couch,\"A person lays down on a bed. The animal sitting on the bed climbs on the person. The person gets off the bed, pushes a chair out of the way. The person stands smiling, leaning on a chest of drawers.;The person lays down on the bed with the dog, then laughs as they lean against the dresser.\",c135 0.00 8.20;c146 1.20 7.20;c149 12.80 28.70;c154 5.60 12.80;c122 0.40 11.70;c134 0.20 13.90;c151 7.90 13.10;c152 12.60 29.20,31.75\r\n759MY,CP6Y,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person awakens in their home office, holding their phone. The person sets the phone down on the desk and stands up.\",bed;desk;phone/camera;remote control;shoe;sofa;something;table,\"A person is laying on the sofa. They get up, put on their shoes, and put something on the table and leave.;A person gets off the bed.;A person lays on the bed before getting up and putting on their shoes.\",c009 7.50 13.00;c154 14.60 19.90;c122 0.00 7.30;c055 11.90 17.40;c146 1.80 6.80;c123 9.10 13.80;c009 16.40 21.00;c054 14.40 19.60;c015 0.00 12.00;c133 1.50 8.10;c135 7.90 18.60;c018 1.90 6.90;c017 6.90 12.70;c134 0.00 7.80,20.21\r\nAB2V6,4UGC,Laundry room,6,6,Yes,A person is on the sofa sneezing while looking in a box. They stand up and pull out a laptop.,box;chair;laptop;sofa;table,\"A person was sitting on a couch and was opening and closing a box. The person then stood up and picked up a laptop from a nearby table. The person then opened the laptop computer.;A person looks at a small chest while sitting down on a couch. The person sneezes, then gets up and opens a laptop up.\",c039 5.10 10.00;c040 0.00 21.50;c047 17.50 31.00;c048 20.00 25.20;c123 0.00 16.80;c154 11.90 17.30;c153 6.80 13.50;c041 0.00 6.70;c009 11.90 20.90;c042 11.60 19.30;c051 22.10 31.00;c052 17.50 31.00;c059 0.00 18.00;c050 16.90 22.90,30.25\r\nQ7IQI,CP6Y,Home Office / Study (A room in a house used for work),7,7,Yes,A person is sneezing into a blanket and closing the homework.,blanket;book;chair;homework;laptop;paper;table;television,\"A person is having a blanket on him, sitting on a chair, looks at some books open it, and start sneezing with looking at the papers.;A person is wrapped in a blanket, looking at a book and sneezing\",c145 0.00 18.00;c072 0.00 18.00;c153 1.80 8.60;c059 0.00 18.00;c132 14.60 18.00;c027 0.00 4.50;c032 0.80 18.00;c014 0.00 18.00;c051 0.00 18.00,17.17\r\nLHTSI,GFWE,Living room,7,7,Yes,A person is working on the broken door.  Then a person is leaving with a picture.,book;closet;door;packaged item;picture;woman,a woman messing with a door that goes to a closet.;A person opens and examines a closet door then picks up an object and walks away.;A person messes with a door by opening and closing it. The person takes a cutting board and walks out of the picture.,c006 0.00 21.90;c008 0.00 22.60;c141 21.50 28.10;c083 19.60 27.20;c030 19.10 25.10;c113 0.00 18.80;c140 0.60 21.90;c117 18.80 24.50;c115 18.90 27.80;c152 20.30 26.20;c007 0.00 22.50,30.50\r\nSE2K2,M7K8,Kitchen,7,6,Yes,\"A person walks through a door, holding the doorknob firmly. Stunned by the spectacle awaiting on the other side of the door, the person comes to an abrupt stop and slumps to the floor, doorknob still in hand.\",door;floor;food;hand,A person opens the door to the kitchen and falls to the floor playfully as another person holding a bunch of bananas watches disapprovingly.;A person is standing in the kitchen holding bananas.  Another person goes into a closet then comes back out and shuts the door.  That person then sits in the floor smiling.,c006 4.90 31.00;c008 0.60 7.10;c141 6.20 32.80;c125 6.10 33.50;c151 3.60 11.70;c149 28.30 34.00;c061 0.00 34.00;c152 28.70 34.00;c097 0.00 6.60,32.96\r\n1ZWPP,ZG5N,Bathroom,7,7,Yes,\"A person is smiling in the mirror of their bathroom, before picking up some medicine.  They look at the bottle, then throw it back down.  They open the door and walk out of the room.\",bottle;door;hair;medicine;mirror;table,\"A person looks at themself in a mirror and adjusts their hair. They then pick up a bottle of medicine and read the label, after which they exit the bathroom through a door behind them.;A person looks into the mirror and moves hair while giving their self a slight grin.  The person then picks up a bottle, reads what is written, sets the bottle down, and then opens the door and walks out of the room.;There is a person looking at themselves in the mirror.  That same person looks at a medicine bottle and then puts it down and leaves.\",c128 7.70 14.80;c008 13.00 19.40;c094 1.30 6.30;c096 0.00 7.70;c152 2.60 7.70;c144 0.00 5.90;c009 11.00 16.00;c097 14.80 20.10;c141 12.80 19.50,23.33\r\n3HRNV,CP6Y,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is smiling in a study holding a bag, and a glass of milk. The person starts laughing.\",bag;cup;glass,A person is standing in a red robe and holding a bag.  This person is also holding a cup.;A person is holding a cup and a backpack while they stand in place.,c020 0.00 17.00;c107 0.00 17.00;c149 6.90 17.00;c152 0.30 4.80;c154 0.00 16.70,15.58\r\n77Z0Z,0Z4M,Living room,4,4,Yes,Person opens pantry grabs towel puts it on table and starts sneezing and laughing.,blanket;cabinet;desk;drawer;shirt;table;towel,\"A person opens a drawer and takes out a shirt. They fold it and put it on the desk. Then they laugh.;A person opens a drawer, pulls out some kind of cloth, and starts manically laughing at the cloth laying on the table.;A person is at a desk tidying up with a towel they put the towel down and start to watch a funny show they are laughing.\",c034 3.00 12.40;c149 9.90 34.00;c009 4.00 12.40;c113 0.00 4.50;c071 7.70 12.60;c070 0.30 12.40;c073 0.00 5.70;c037 3.90 11.60;c152 9.40 35.00,33.50\r\n3OZUX,AT5D,Living room,6,7,Yes,One person was taking some dishes out. The other was tidying up the glass mirror.,dish;food;mirror;towel,A person is washing a window while another person walks into the roomtowards the first person holding a plate of food;Person #1 was washing a mirror on the wall. Person #2 walked behind the other person while holding a plate.,c095 1.10 11.40;c118 8.60 32.00;c033 0.00 11.50;c038 0.70 11.50;c035 0.00 2.60;c156 22.20 32.00;c037 29.20 32.00;c096 29.10 32.00;c061 29.20 32.00,31.00\r\nD1NT7,V044,Bedroom,7,6,Yes,A person is seen throwing dishes in a box. They put the box on a bed and begin fixing their blanket.,bed;blanket;box;clothes;dish;floor;towel,A person is putting some plates in a box. They pick up the box and put it on a bed. They then pick up a blanket and fold it up.;A person is putting some dishes into a box. The person picks up the box and places it somewhere. The person then picks up a blanket and folds it.,c070 17.00 33.00;c075 17.20 33.00;c042 10.80 18.60;c119 3.20 9.50;c071 15.50 33.00;c127 9.40 16.30;c039 9.40 14.30;c037 15.50 33.00;c043 10.70 16.90;c073 15.50 21.30;c004 15.90 33.00,32.42\r\nWX711,AT5D,Living room,7,7,Yes,A person is drinking medicine while another person is smiling at homework.,bed;book;chair;couch;glass;magazine;medicine;paper;pill;water,\"Two people are seated looking at magazines. The nearer one puts his down to take some medicine with some water.;A person sits on a sofa reading a piece of paper intently while another person stares at them while drinking out of a cup.;Two people sit in a room talking to each other. One is reading, the other is eating and drinking.\",c115 20.50 27.70;c106 14.80 22.50;c129 9.40 18.00;c116 24.30 28.50;c135 0.00 32.00;c128 0.00 15.10;c107 0.00 32.00;c123 0.00 32.00;c026 0.00 32.00,30.75\r\nWWL0K,CP6Y,Stairs,6,6,Yes,A person is standing on the stairs holding a box of medicine and a blanket.  The person sneezes and throws the blanket on the floor before leaving.,blanket;book;floor;paper;phone;stairs;towel,\"a person wearing a blanket and holding a peper on stairs.;A person standing on the stairs with a magazine sneezes. The person then throws the blanket off the stairs and walks down the stairs.;A person is standing in a staircase with a blanket around their shoulders and looking at a book, and they sneeze, throw the blanket down on the floor, and descend the staircase and walk away.\",c070 0.00 14.60;c074 7.90 15.30;c126 8.40 16.70;c153 3.70 12.00;c026 0.00 18.00;c032 0.00 7.90;c071 10.50 15.00;c115 0.00 18.00;c072 0.00 12.40;c033 9.70 14.60,16.62\r\n7DEBA,GE1M,Stairs,6,6,Yes,A person is sneezing while holding a bag of groceries.,bag;groceries,A person is walking down the stairs carrying a bag. They are sneezing.;The person walks down the stairs holding a green bag and sneezes twice.,c020 0.00 11.00;c153 1.60 11.00,10.08\r\nVXZBA,P2J3,Living room,6,4,No,A person walks to a doorway and begins laughing. Another person is lying on a sofa watching the person in the doorway.,couch;person;sofa;tv,a person walking slowly through a room smiling.;Person walking through a room pass a sofa with a person is lying the person sits up.;A person is walking around the living room while another person is sleeping in a chair the first person walks by the one sleeping and they wake up and sit up.,c123 0.00 32.00;c149 20.30 25.90;c152 17.00 28.10;c146 15.40 22.10,31.38\r\nMIAE4,BPXZ,Bedroom,6,7,Yes,\"A person walks into the room, hangs a bag on the doorknob, then sits for a bit before leaving.\",bag;bed;cat;covers;door;purse;woman,The person walked in the room and hung a purse on the doorknob and then walked over to the bed shuffled the covers and then sat down for a little bit and then a cat walked into the room whiile the person was starting to walk out.;A person walks into a room while handing something onto a door. The person then sits on a bed for a while. The person proceeds to walk out of the room while looking around curiously.;Person walk through a doorway and sat on the bed then a cat comes in the room then the person leaves the room.,c020 2.00 7.60;c022 2.30 7.40;c151 9.00 14.30;c154 19.90 25.50;c135 11.40 24.50;c097 3.90 8.90,29.29\r\nG2AMK,ENHU,Basement (A room below the ground floor),3,7,Yes,\"A person is tidying up the basement as they're occasionally watching a television show playing in the background.  They fold a colorful blanket, as well as items from a pile of clothes, and leave the garments lying on the bed, in the basement.  They turn off the television and exit the basement, closing the door to it behind them.\",blanket;clothes;door;floor;remote;television,A person begins folding clothes while watching TV. The person abruptly turns the TV off and walks out of a door while closing it.;A person is folding clothes while watching tv,c008 22.10 27.90;c132 0.00 22.50;c004 0.00 20.20;c002 5.30 12.30;c000 6.10 21.00;c075 0.00 9.10;c001 14.30 20.60;c097 21.80 28.00;c006 24.00 28.00;c073 0.00 5.70;c127 5.90 20.90;c071 2.90 8.80,27.29\r\nZIP18,BONA,Bedroom,7,6,Yes,A person turns on a light in their bedroom and starts dressing. They stop and eat a sandwich while watching a video on their laptop.,bed;clothes;doorway;food;laptop;light;pants;sandwich,\"A person turns on a light and begins dressing, they then sit on their bed, grab a sandwich and take a bite, and begin playing on a laptop.;A person enters a room, turns on the light, put on pants, then sits down with a laptop.;A person walks into a bed room.  The person then puts on some type of jeans.  Then the person goes and looks at a computer.\",c065 25.20 31.80;c047 28.30 35.00;c148 1.90 25.00;c156 25.20 31.80;c135 21.10 26.20;c061 24.70 35.00;c151 20.00 26.00;c050 22.00 27.00;c097 0.00 3.70;c000 1.70 8.80;c104 0.00 4.00;c002 1.40 6.40,34.00\r\nLFDQF,I48P,Hallway,6,7,Yes,A person standing in a hallway is admiring a picture on the wall.  The person is drinking a glass of water and holding it up to the light to check it for impurities.  The person finishes the water and smiles in admiration at the picture.,cup;glass;light;medicine;picture;wall;water,\"A person wearing check shirt holding glass in hand taking a sip from glass and raising his hand stir the glass to inspect content and again drank.;A person is standing in front of a doorway and drinking a glass of water, occasionally holding the water up to the light.\",c088 0.00 8.10;c106 0.00 6.10;c129 11.20 23.00;c152 20.00 26.10,30.67\r\nTFWNO,ZDKC,Living room,4,5,Yes,A person in the living room is playing with a mirror while looking at themselves. They start eating some food while dropping a blanket on the ground.,blanket;dish;floor;food;mirror;table,\"The person is looking in the mirror, and then picks up and plate and eats from it, then picks up their robe that dropped on the floor.;A person looks into a mirror. The person then picks up a plate and eats some food, throwing a towel on the floor;A person who has a blanket over their shoulder is standing in front of a mirror and eating food from a plate with a fork and then sets the plate down on a table.\",c062 20.20 27.10;c070 0.00 24.50;c074 18.70 26.30;c096 0.00 13.80;c120 8.90 23.20;c063 9.00 15.10;c073 22.80 29.20;c075 25.50 31.00;c156 11.70 22.60;c072 0.00 22.40;c127 23.20 29.30;c009 21.00 26.80;c126 19.50 25.00;c061 9.80 26.80,29.67\r\nAEKYE,4UGC,Living room,6,7,Yes,\"A person is snuggling, and then watching  themself in a mirror, and finally eating a sandwich in a living room.\",chair;dish;food;mirror;pillow;sandwich;sofa,A person is sitting on a sofa hugging a pillow.  That same person then looks at themselves in a mirror and takes a bite of a sandwich.;The person is sitting on a couch while snuggling with a pillow. The person then picks up a mirror and looks into it. The person then sets the mirror down. The person then picks up a plate with food on it from a nearby take. The person then eats the food.;A person hugs a pillow as they sit on the couch and look at a handheld mirror.,c093 8.90 19.30;c096 9.80 18.70;c065 19.90 34.00;c156 19.50 34.00;c076 0.00 12.00;c123 0.00 34.00;c078 0.00 11.50;c077 0.00 11.80;c122 0.00 34.00;c120 18.60 23.70;c059 0.00 34.00;c061 19.70 34.00,32.58\r\nMCMTH,JTAS,Kitchen,6,6,Yes,A person is smiling as the person pours medicine into a glass. Then the person drinks it and begins washing the glass.,counter;cup;dish;glass;medicine;sink;table,\"A person grabs medicine and a cup of water from the kitchen counter. They drop the medicine in the cup and drink it. They put the cup in the sink and rinse it.;People pick up medicine and glass put the medicine in a glass then go to the sink.;A girl is taking some medicine from a counter and holding it in her hand, then taking it with sips of water from a glass, which she rinses in the sink.\",c129 11.40 23.80;c106 11.40 23.80;c111 21.00 35.00;c128 2.90 13.50;c107 4.90 16.40;c110 3.90 10.10;c152 7.80 14.90;c121 25.80 35.00,33.79\r\nMYQZJ,LXD5,Dining room,7,7,Yes,\"One person takes a picture from a desk, then washes the top of the desk.\",closet/cabinet;desk;item;picture;rag;shelf;table;towel,\"A person is opening a desk, they take out a picture and look at it, put it away, and begin washing the desk/;The person opens a drawer to remove a picture, the replaces the picture and wipes off the top of the dresser with a cloth.;A person takes a photo from a dresser drawer, puts it back in and then cleans the edge of the dresser with a rag.\",c084 10.00 19.70;c086 14.10 21.90;c088 8.90 17.30;c012 17.10 44.50;c033 25.00 44.00;c038 25.00 45.60;c114 5.60 45.10;c013 24.70 44.80;c082 6.50 28.20,54.46\r\nE84XY,JQ7D,Kitchen,5,6,Yes,A person is cooking at a stove while they take an object from a shelf and hold it.,cup/glass/bottle;dish;food;pot;shelf;spoon;stove,\"A person is cooking and stirring in a pan, and adding some spices in it, and ready to spray something.;The person is stirring the pot on the stove with a wooden spoon and adding spices and tasting.\",c147 0.00 28.00;c152 15.70 28.00;c118 0.00 28.00;c062 13.50 21.60;c156 6.60 16.60;c107 2.40 10.60,27.08\r\nABPGE,EDYS,Pantry,7,6,Yes,A person is opening their pantry looking for some food. They begin drinking a glass of water while also grabbing a book from their pantry.,book;cup;glass;shelf;water,\"A person walks to a shelf. The pick up a beverage and take a drink. Than they pick a book and begin to flip through it.;The person takes a drink from the shelf and drinks it, then takes a book from the shelf and flips through the pages before taking another book from the shelf and walking away.\",c026 10.60 30.00;c027 14.40 23.80;c032 14.30 30.80;c107 3.90 16.90;c106 4.20 17.20;c028 12.50 26.70;c081 23.70 29.20;c110 3.50 10.20;c030 10.50 18.60;c109 23.30 29.40;c025 20.70 25.60;c029 13.80 18.70,30.38\r\n06LBQ,M7K8,Recreation room / Man cave,6,7,Yes,A person is playing with a box and closing it after vacuuming their rec room.,box;floor;vacuum,\"A person is vacuuming the floor around an open box, then the person looks into the box and closes the lid.;A person uses a dust buster to clean the carpet, then squats down in front of a box, closes the top of the box, then appears to change their mind about the box and gets up.\",c137 0.00 23.90;c041 28.70 34.60;c039 21.60 26.60;c152 24.30 29.50;c127 0.00 24.30;c041 22.60 27.60,33.92\r\n2Q6SZ,AT5D,Kitchen,7,6,Yes,A person is eating near a window while another is leaving dishes in the sink.,dish;food;sink,\"People are in a kitchen.  One is eating from a bowl, the other puts an item into the sink and then looks at it.;A person walks into a kitchen while another eats some food. The first person stares out the window while the other eats.\",c118 3.10 14.00;c119 8.00 15.40;c156 0.00 32.00;c061 8.90 14.20;c120 2.50 8.50,30.75\r\n1F706,SW82,Pantry,6,6,Yes,\"A person runs to the doorway of the pantry. They pause, holding the doorway as they sneeze, before picking up a bag of food and leaving.\",bag;closet/cabinet;door;food;hair,\"A person runs down the hall, opens a pantry door, sneezes and goes through the pantry, pulls out a bag then closes the door.;A girl runs into the room, then looks in the closet for something to eat. She finally removes a snack and walks out of the room.\",c063 23.70 29.20;c023 23.70 29.20;c153 3.00 10.00;c113 0.00 5.20;c020 24.80 31.00;c150 0.00 3.40;c008 0.00 5.50;c141 0.00 5.80;c006 25.20 31.00;c112 26.00 31.00;c061 24.60 31.00;c144 4.90 11.00,30.04\r\nWK9HE,ZDKC,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is tidying their entryway while holding a broom. They wipe of a table and sit and play a game on their phone.,broom;cup;door;floor;phone;rag;table;towel;window,\"A person cleans a door and a table while holding a broom, then retrieves a mobile phone from their pocket and looks at it.;A person is cleaning the window of the front door holding a broom they are using a towel they walk over to the table and wipe it down with the towel.;The person is holding a cloth and is wiping down the window of the door, then the rest of the door before moving onto the glass topped table.\",c098 0.00 35.00;c013 18.30 30.00;c033 0.00 35.00;c111 0.00 7.60;c102 8.40 15.30;c015 27.30 35.00;c091 0.00 13.90;c038 18.60 34.20;c127 10.60 20.40;c016 28.70 35.00;c037 0.00 35.00;c007 0.00 15.10;c018 28.30 35.00;c012 18.10 32.00,33.96\r\nJ3RD3,AT5D,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person opens the door and grabs a broom from the other side. The person laughs as they use the broom to beat the dust out of a pillow.,broom;door;pillow,\"A person opens the door to a room, walks in, and closes the door. The person grabs a duster and a pillow. The person hits the pillow with the duster twice.;The person walked in through the door and picked up a broom. The person then also picked up a pillow.\",c098 12.10 32.00;c100 11.80 17.30;c102 21.70 32.00;c076 17.80 32.00;c079 17.70 22.60;c152 20.30 26.30;c149 20.60 32.00;c008 1.10 8.00;c006 5.30 10.80;c097 1.90 8.00,30.92\r\nBB7WL,EDYS,Bedroom,4,6,Yes,A person is tidying up the clothes in the person's wardrobe.  The person randomly throws clothes on the bed to help stays organized.,bed;closet;clothes;door;towel;wardrobe,\"A person opens a cabinet and takes a cloth out. The person then throws the cloth. The person then takes another cloth out of the cabinet and throws it as well.;The person takes socks out od the closet then throws them at a different room, then repeats the process with a shirt.\",c113 0.30 5.70;c001 10.50 15.60;c002 8.40 26.30;c033 7.80 15.10;c035 6.30 12.90;c036 10.40 15.30;c003 7.60 15.60;c008 0.00 4.10,30.54\r\nA3XXB,ENHU,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person is tidying a blanket, then closing a box.\",blanket;box;closet/cabinet;clothes;doorway;floor;shelf;towel,\"The person is standng in a closet folding a blanket and then steps out and grabs a box and then steps back into the closet and closes the box.;A person folds some clothes and puts them away on a shelf in a closet, then picks up a box and closes it.\",c040 4.80 12.00;c043 4.70 9.20;c070 0.00 6.20;c071 2.20 7.30;c075 0.00 5.60;c097 3.50 12.00;c041 3.50 12.00;c082 0.00 8.10;c037 0.00 7.90;c114 0.00 12.00;c127 4.40 12.00;c004 0.00 6.60;c081 1.90 7.10,11.25\r\nPXVRF,ZDKC,Living room,2,7,Yes,\"A person is standing in the living room, holding their phone. The person tosses the phone down onto a pillow on the sofa and smiles.\",phone;sofa,The person is standng in front of the couch messing wth a cell phone and then throws it and then steps away from the couch.;Person standing in a living room by the sofa with a cell phone in hand then walk over to the side.,c015 0.00 26.40;c016 0.00 24.90;c152 22.80 28.00;c017 20.80 25.40,29.08\r\nPT4XS,AT5D,Dining room,3,6,Yes,A person is sitting at the table watching another person washing dishes in the sink.  The person at the table walks over to the other person and snuggles them.,bag;book;chair;dish;doorway;food;plate;sink;table,\"A person is sitting at a table and is pushing a book and bag around the table. Afterwards, the person gets up and walks behind another person cleaning dishes in the sink and hugs them.;A person is sitting at the table and then gets up to watch the other person washing dishes;A person sits at the kitchen table with a book and a snack. He gets up and walks over to the sink, where he begins washing dishes.\",c030 2.00 21.00;c011 16.10 20.30;c154 14.90 21.70;c031 7.90 13.60;c121 21.60 32.00;c118 20.50 32.00;c097 18.50 23.30;c062 11.60 17.00;c059 0.00 20.80;c115 6.10 12.90;c152 21.90 32.00;c064 11.90 17.30,31.25\r\nEYXSM,AT5D,Bedroom,7,6,Yes,\"A person is watching out the window. Then, sneezing, the person picks up a towel and wipes their nose with it.\",bed;towel;window,\"A person sits on a bed while looking out of a window.  This person then sneezes and wipes their face with a towel.;A person sitting on a bed with legs crossed, looking out the window, then sneezing and picking up a towel to sneeze in.\",c092 0.00 23.60;c038 22.50 31.00;c153 19.80 26.20;c135 0.00 31.00;c152 22.50 27.20,29.58\r\nOJYDD,V044,Living room,7,7,Yes,A person is tidying clothes and pillow on a sofa and then pouring a glass of wine in a living room.,blanket;clothes;cup;dish;glass;pillow;sofa;table,A person holding a glass picks up clothes off the couch and folds them then sets his glass on the table.;A person places some blanket on the sofa before pouring a glass of water from on the table.,c107 21.30 37.00;c109 32.30 37.00;c001 14.20 20.20;c079 12.10 17.70;c110 20.00 26.00;c004 1.10 20.20;c118 21.30 37.00;c106 22.60 32.70;c108 21.10 33.20;c071 14.40 20.10;c009 29.60 35.40;c000 0.20 20.20;c075 11.50 17.90,36.04\r\nSH20Q,98ZU,Pantry,6,6,Yes,A person is pouring food into a bowl and then throwing a box into a trashcan in a pantry.,box;cereal;dish;food;pantry,\"The person carrying a bow walked to the cabinet get a box of cereal poured cereal in the bow,put the empty box of cereal in the trash and walked away.;A person is walking into a room and taking some food from a shelf. The person pour some food into a bowl and throws the box away. The person then walks out of the room.\",c040 9.10 14.00;c042 16.30 24.30;c061 20.40 25.90;c156 12.70 27.80;c043 7.60 13.20;c044 10.00 19.30;c063 8.50 19.20;c118 0.00 28.00;c064 3.50 24.10;c062 8.00 20.00;c041 4.70 12.40,27.25\r\nOU3XH,ZDKC,Dining room,3,7,Yes,\"A person sits at the dining room table, playing with their camera and looking at pictures. The person sets the camera down to eat a piece of food and take a drink of coffee.\",camera;chair;coffee;cup;food;phone;table,\"A person is sitting at a table holding a camera messing with it, the person puts the camera down and takes a bite of food then picks the camera back up;A person plays on their phone while sitting at a table. The person puts it down and eats some food off a plate. The person then takes a drink.;A person plays with their camera before eating some food and drinking from a cup of coffee at the kitchen table.\",c061 16.40 25.20;c106 26.70 32.60;c011 0.00 35.00;c110 23.80 29.70;c062 19.20 24.40;c063 16.60 25.60;c014 0.00 35.00;c017 14.00 18.70;c156 19.20 24.50;c107 23.10 34.00;c009 29.00 34.00;c059 0.00 35.00;c016 0.00 18.70;c015 0.00 18.70;c109 29.00 34.20,34.25\r\nVNMNF,ENHU,Living room,6,7,Yes,\"A person is watching television and undressing. They start to play with the TV remote before removing the batteries to try to fix it. They get angry, turn off the TV and start to read a book instead.\",book;chair;clothes;remote;television,\"A person is watching television then turns it off and decides to read a book.;A person unbuttons his shirt, then tries to use the remote control for the TV. Then the person turns off the TV, picks up a book from a shelf beneath the TV, sits down in a chair, and begins to read the book.;A person unbuttons their shirt, uses a remote control, then turns off the TV and sits down.\",c027 22.60 28.00;c032 0.00 28.00;c151 21.90 28.00;c059 21.90 28.00;c030 19.60 24.50;c132 0.00 12.60;c155 0.00 6.60;c026 19.00 28.00,27.17\r\nRT1JY,CP6Y,Bedroom,5,7,Yes,\"A person is in a bedroom undressing by the doorway, they then grasp the television remote and sit on a bed.\",bed;clothes;doorway;shoe;sofa/couch;television;towel,\"A person stands in a bedroom doorway, removes their sweatshirt, and then sits on a long sofa that is draped with a green carpet.;A person takes off a sweatshirt, puts it onto a bed, sits on the bed and points the remote control.\",c135 11.40 15.80;c132 14.50 17.00;c155 3.30 8.70;c151 11.10 17.00;c033 7.40 12.10;c054 10.80 16.30;c122 11.80 17.00;c057 9.60 16.70;c001 5.20 14.00;c097 0.00 14.00;c123 10.00 17.00;c001 9.80 14.40,16.42\r\nHRJX1,ZDKC,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,\"One person stands in the entryway tidying up around the door, then leaves with a glass, laughing.\",bottle;door;glass;towel,A person cleaning a front door with a cloth.The person turns and picks up a bottle and walks away .;Person dusting the door with a towel then leaves the room with towel on the shoulder.;A person cleans the frame of a door and the door window with a pink rag. The person puts the rag over their shoulder and walks away.,c033 0.00 3.70;c038 0.30 29.80,33.08\r\n6JLD4,4UGC,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person turns on a light in the closet, grabs a shirt, gets dressed, then closes the door.\",closet/cabinet;clothes;door;light,\"A person wearing a gray teeshirt enters a walk-in closet, turns on the lights, then grabs a plaid shirt. The individual puts the plaid shirt on, turns the lights off, and then leaves the closet.;A person enters a closet, puts on a shirt, then walks out and closes the door.\",c006 23.00 28.70;c105 21.00 25.30;c104 3.10 7.20;c148 11.20 19.00;c141 22.30 29.30;c112 21.80 29.30;c097 4.00 9.70;c000 7.50 15.40;c002 6.90 12.60,30.67\r\nM9NAG,JTAS,Living room,7,7,Yes,\"A person is lying on a pillow. Then the person stands and walks to the door. Opening the door, the person walks through the doorway.\",bed;blankets;couch;doorway;pillow;sofa,\"A person is sleeping on the sofa then gets up and leaves the room.;A person lays on the bed for a few moments before sitting up and stretching arms as if awakening. The person then stands up and walks out of the room.;A person sleeps on a makeshift bed on the floor. The person gets up, stretches, and then stands up to walk away.\",c078 0.00 19.90;c097 21.60 28.60;c154 20.80 28.30;c133 14.90 21.30;c134 0.00 18.70;c146 14.40 24.30,33.42\r\n07BSH,CO87,Living room,6,6,Yes,The person is vacuuming in the living room of their home.  They then realize they forgot to do their work of putting the groceries away.,bag;floor;groceries;vacuum,A person is vacuuming the living room floor then picks up some bags from the floor and leaves the room.;A person vacuums the floor in the living room before bending over and picking up two bags and walking out.,c137 0.00 27.00;c020 25.40 34.00;c127 0.00 28.80,33.04\r\nLFPWI,GFWE,Bathroom,4,7,Yes,A person is opening a door.  Then a person is undressing in front of a sink.,clothes;clothing;door;mirror;sink,\"The person opens the bathroom door and begins undressing, then looks down at the clothes/camera.;Person open the door then take off shirt in front of mirror pet the dog and leave.;A person opens a door, then takes off a sweatshirt.\",c008 0.00 7.20;c155 4.00 18.40;c155 12.20 19.80;c096 13.40 21.00;c004 4.00 17.60;c001 3.80 17.70;c141 0.00 4.80;c003 12.00 17.70,31.46\r\nLWRKS,M7K8,Living room,5,7,Yes,A person puts dishes onto a table that is next to a window. The person then turns a light on and leaves the room.,cup/glass/bottle;dish;light;table;window,\"A person walks into a room and sets things on the table.  This person turns a lamp on, and walks out of the room;A person walks into a room with a dog, sits a cup and a bottle on an end table, turns on a lamp and leaves the room. The dog jumps up on the chair to look at what's on the table.\",c104 3.30 11.80;c009 0.50 8.90;c118 0.00 8.30;c119 0.20 9.20;c110 0.00 7.00;c107 0.00 7.90;c154 6.00 11.50;c109 0.20 8.10;c092 28.30 32.00,31.21\r\nACKR6,ENHU,Dining room,5,7,Yes,A person throws a bag down on the dining table. They take off their shoes and hold them in their hands as they walk away.,bag;shoe;table,\"A person takes a backpack off and sits it on the table, then takes shoes off and walks out of the room.;A person puts a bag down on a desk  That same person then takes off their shoes and leaves.\",c020 0.00 3.20;c057 0.10 7.20;c022 0.00 4.50;c053 1.30 8.80;c009 0.00 4.20;c054 3.00 8.90,8.08\r\n7ZL8E,M7K8,Dining room,7,7,Yes,A person is sitting in a chair in the dining room.  The person is pouring odor eaters into their shoes.  The person tidies up their shoes and places them next to the cabinet.,box;chair;food;shoe,\"A person is sitting down and takes off their shoes. They hold each shoe and begin pouring something from a box into their shoes, before putting the shoes down on the floor.;A person is sitting down and taking their shoes off;A person takes off their shoes while sitting in a chair\",c059 0.00 32.00;c040 1.00 23.60;c057 16.50 25.90;c054 16.60 27.20;c053 0.00 12.60;c057 0.00 12.80;c053 16.20 23.80;c043 0.00 3.30;c042 14.70 19.80;c151 0.00 2.80;c154 27.70 32.00;c056 0.00 5.80;c062 4.30 12.50;c061 0.00 19.10,31.25\r\n807JJ,ZDKC,Living room,5,5,Yes,\"A person is standing by the sofa with a cleaning towel, tidying the living room.\",sofa;something;towel,\"A person is cleaning the sofa with a cloth;A person wipes down a couch with a wipe, organizing some things while doing so.\",c038 0.40 33.00,31.75\r\n4RKKP,ZDKC,Kitchen,4,7,Yes,A person takes a coffee mug from a box and inspects it. The person puts it back into the box.,box;cup/glass/bottle;dish;doorway,\"A person opens up a box in the kitchen.  This person finds a mug in the box, and then puts it back.;A person searches through a box, removes a cup from it, then puts it back in.\",c041 1.80 31.00;c044 1.80 30.00;c110 12.40 26.80;c043 1.70 30.50;c097 0.00 3.50;c042 25.40 31.00;c040 25.30 31.00;c039 23.70 30.80;c120 12.40 19.00;c109 21.90 26.70;c110 13.20 19.50,30.50\r\n1FIGA,EDYS,Bedroom,6,7,Yes,A person runs into the closet with a box. The person closes the box and puts it onto the shelf.,book;box;cabinet;door;shelf,A person picks up a box and takes it to a cabinet they open the cabinet and put the box in the cabinet.;A person picks up a book and reads it. The person opens a cupboard and puts the book inside and closes the door.;Person walk in a room go to the cabinet open it and put something in it closes the door and lock it.,c040 6.40 19.90;c043 4.30 9.90;c081 14.30 21.90;c112 17.90 27.10;c113 11.80 21.20;c042 5.70 25.60;c039 9.60 15.10;c041 8.40 13.80;c006 18.10 24.90;c008 12.30 19.50;c030 4.80 11.70;c028 15.50 23.70;c026 4.80 20.10,35.75\r\nW8XQ9,M7K8,Living room,6,6,Yes,A person is taking clothes off a table. The person is standing as the person begins folding them and putting them onto a chair.,chair;clothes;table;towel,\"A person picks up a jacket from the table, folds it up, and sets it nicely on a chair.  This person then walks away.;Person walks over to an end table, picks up a hoodie, folds it then lays the hoodie on a chair. The person pats the hoodie and looks at it for a few seconds before walking away\",c001 13.70 21.70;c002 0.00 7.20;c004 1.50 21.10;c154 0.80 28.70;c009 14.10 20.40;c037 0.30 22.20;c012 0.20 5.80;c000 0.60 20.90,28.96\r\nHAPCT,I48P,Bedroom,4,4,Yes,\"A person sits on a pillow in the bedroom, laughing and watching a movie. The person kicks off their shoes and continues to laugh.\",floor;pillow;shoe;television,\"a person sits on the floor, takes their shoes off, and starts laughing while watching the TV in front of them.;A person sits on the floor, watching television. The person then removes shoes. The person then laughs at the television program.\",c057 8.60 16.00;c149 5.80 19.10;c126 8.90 15.50;c125 0.00 34.00;c131 6.20 34.00;c132 0.00 34.00;c053 8.80 13.60;c152 5.50 34.00;c058 9.40 15.90,32.58\r\n7614L,I48P,Stairs,5,7,Yes,A person is wiping shoes with a towel and then laughing and grasping a broom on the stairs.,broom;cloth;floor;man;shoe;stairs;towel,\"A person sitting on a stairs wiping shoes off,picks up a broom and put it between his legs than unfold their legs and hold the broom between the their legs .;A person holding cleaning supplies sits down on a carpeted staircase and polishes a pair of shoes, then grabs a red broom from nearby.;A person is sitting on the steps holding shoes and a broom; the person puts the broom down, wipes off the shoes, puts them down then picks up the broom and sweeps.\",c000 0.00 7.20;c053 0.00 17.00;c099 0.00 5.40;c054 0.00 17.70;c098 14.60 27.00;c100 0.00 6.00;c033 0.00 17.70;c125 0.00 27.00;c038 1.90 11.90;c056 1.60 6.60,25.75\r\n02SKC,BONA,Bedroom,5,7,Yes,\"A smiling person snuggles a blanket on their bed, then grabs a camera, and puts it in a bag.\",bag;bed;blanket;camera;phone,Person laying in a bed pulling the blanket over body picked up a bag looked into it and put it down.;A person laying in bed pulls a blanket over themselves then takes their arms out to put something into a bag.,c021 22.20 27.00;c134 0.00 33.00;c020 20.10 32.90;c024 28.90 33.00;c017 18.80 28.10;c072 0.00 20.70;c022 20.50 33.00;c070 0.00 4.70;c152 3.50 8.80;c023 19.10 25.50,32.17\r\nVRXQX,V044,Dining room,5,6,Yes,\"A person is in a dining room dressing by a table, they then start smiling as they reach for a glass a take a sip from it.\",clothes;cup;dish;glass;table,Person walks into a room put on a jacket pick up a cup drinks then leave the room;A person is putting on clothes and drinking from a cup walking around.,c106 16.70 24.40;c148 4.00 13.50;c000 3.60 8.80;c118 15.80 20.70;c152 14.20 19.50;c120 15.50 20.40;c001 3.30 15.30;c109 25.40 30.90;c107 16.00 30.80;c110 16.00 21.30,30.92\r\nSAO1A,ENHU,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is sitting at a desk with their shoes on the desk, watching the computer monitor and drinking a soda. They reach and grab a bag of food off the desk without taking their eyes off the screen.\",bag;chair;cup;desk;food;glass;laptop;table;window,A person is sitting in a chair. The person then looks at a laptop that is sitting on a nearby table. The person then picks up a cup that was sitting on that table and takes a drink.;A person sitting on a chair in front of a desk looks at a laptop and then takes a drink from a cup,c011 0.00 14.00;c106 3.10 12.80;c109 7.00 14.00;c110 3.10 8.80;c063 8.80 14.00;c014 0.00 14.00;c051 0.00 14.00;c059 0.00 14.00;c107 3.50 13.50;c092 0.20 6.90,13.46\r\nBYP85,ENHU,Closet / Walk-in closet / Spear closet,7,6,Yes,\"A person in their closet retrieves some clothes off a shelf and begins dressing with them.  They tidy up a shelf in front of them, and grab a book bag off the floor. Snuggling it tightly to their chest, they leave.\",bag;clothes;doorway;hair;shelf,\"A person tool clothing off of a shelf and put it on. The person then picked up several items and put them on the shelf. The person then walked out of view.;A person standing in a room puts on a shirt and buttons it, puts items onto a shelf, picks up a backpack from the floor and walks out of the room carrying the backpack.\",c023 27.70 35.00;c001 23.60 29.70;c081 24.80 29.70;c148 2.40 22.50;c001 21.80 27.30;c004 20.20 30.30;c020 27.00 35.00;c144 19.40 24.90;c082 21.80 29.80;c000 0.00 7.10;c002 0.00 5.20;c003 21.80 29.80;c097 30.30 35.00,33.83\r\n20LDB,ZDKC,Living room,4,6,Yes,A person is tidying clothes on a sofa and then grasping a camera in a living room.,blanket;camera;clothes;phone;sofa;television,\"A person held their cell phone, then folded three items of laundry, then moved a pink blanket over to the side of a couch, then turned and looked at a television.;There is a person standing up doing something with a phone.  That person then begins to fold clothes that are on a sofa.\",c001 7.60 35.80;c004 0.30 36.40;c015 0.00 3.90;c071 25.10 36.00;c003 7.20 36.60;c000 0.90 29.50;c017 0.00 4.30;c132 32.80 39.00;c002 26.50 34.50;c075 26.30 34.70,38.04\r\nJ662Y,ARRB,Garage,7,7,Yes,A person finishes eating some food off a small plate and stands up. They go to get a broom and start tidying up the garage workspace. Some dust causes them to sneeze.,broom;dish;floor;food;hair;sandwich,A person sits on a chair and eats from a bowl.  This person gets up and starts sweeping the floor and sneezes.;A person sits in a chair eating something off of a plate. The person then stands up and starts sweeping the floor while sneezing.,c061 0.00 11.60;c102 8.40 29.60;c118 0.00 11.40;c156 0.00 9.70;c154 4.70 11.60;c153 25.80 32.00;c144 8.10 13.00;c100 8.10 14.80;c127 12.40 33.00;c065 0.00 5.40;c062 5.80 11.10;c059 0.00 9.20;c098 9.30 33.00,31.79\r\nMJYTA,BPXZ,Kitchen,6,6,Yes,The person is tidying dishes in the kitchen just before fixing food for their family for dinner.,cup/glass/bottle;dish;food;table,A person walks into a kitchen and takes some bowls out of the sink. The person puts the bowls on the table.;The person is in the kitchen. The person is setting the table for a meal. The person places bowls on the table and then silverware.,c119 1.20 28.00;c120 6.70 28.00;c062 2.30 10.10;c063 2.30 10.50;c110 17.10 25.80;c118 2.40 8.30;c109 19.70 24.60;c009 8.60 14.90,26.88\r\n4A28I,M7K8,Basement (A room below the ground floor),6,6,Yes,A person is smiling and laughing a person holding a bag with medicine.,bag;box;picture;shelf;wall,\"A person standing in a basement holding a brown paper bag.  They peak inside, before standing idly.   At the very end, they towards the top of the stairs.;A person is standing in the basement holding a bag and looking in it and then they look around the room.;A person is standing in the basement holding onto a bag and smiling when they look around.\",c154 0.00 31.00;c020 0.00 31.00;c152 2.30 10.60;c149 9.20 15.30;c021 0.00 31.00,29.50\r\nNAZ52,JQ7D,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person sits on the stairs, laughing as they go through a box. The person stands up and puts the box onto a shelf.\",bed;book;box;doorway;floor;picture;shelf,\"A teenager opened a box, and looked in to it, he found some cd's or photoes, and he was very happy to see those, and tubled over from joy. He closed the box and put ot in closet;A person is sitting on the steps, opens a box and looks at CDs while laughing, then closes the box and gets up to put it away.\",c040 1.10 17.90;c042 5.40 15.70;c149 23.80 33.00;c154 14.80 22.90;c039 21.30 27.20;c041 0.00 6.10;c081 27.40 34.00;c029 3.00 25.40;c084 3.60 24.90;c085 11.00 15.90;c125 0.00 28.70;c044 2.60 7.80;c097 27.10 32.30;c085 4.80 17.10;c152 3.80 18.60;c135 0.00 28.00,34.17\r\nJT537,BPXZ,Kitchen,6,7,Yes,A person is washing near the refrigerator with a broom before leaving the house,broom;door;floor,\"A person in the kitchen walking around and sweeping the floor. Then person put down broom, walked into living room and went outside through the door.;The person is sweeping the floor in the kitchen while a dog watches them. They finish and put the broom down and leave the room.;A person with a broom is sweeping the kitchen floor, a cat is watching and then the person walks out of the room.\",c098 0.00 10.40;c099 16.90 23.10;c102 0.00 9.30;c127 11.30 19.90;c097 16.70 24.20;c100 0.00 22.30,26.54\r\n0G50G,P2J3,Pantry,5,5,Yes,A person is throwing groceries onto their shelf while their friend watches in the background.,bag;chips;closet/cabinet;food;groceries;jam;shelf,\"A person is placing things on a shelf, while another person watches.;A person walks up to a shelf and begins stacking and organizing items while another person watches in the background.;A person puts some food items on the shelf nearby, while another scratches their head and watches them.\",c081 0.00 31.40;c020 0.00 33.00;c061 0.20 33.00;c062 0.00 33.00;c130 0.00 32.70;c130 0.00 16.10;c114 12.70 33.00;c082 12.70 33.00,31.58\r\nLTY2P,JQ7D,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"In the entryway, a person is standing with a blanket and is holding a glass.\",blanket;clothes;cup;glass;jacket;towel;water,The person is standing with a towel or throw on their shoulder drinking from a glass while appearing nervous.;A person holding a blanket and drinking a glass of water is standing in front of a door and looking around.;A person drinks from a glass while holding a blanket over their shoulder.,c106 1.20 22.50;c107 0.00 29.00;c070 0.00 29.00;c000 0.00 29.00;c033 0.00 29.00;c072 11.50 17.10;c152 2.30 8.80,27.75\r\nLLE9B,CP6Y,Bedroom,6,6,Yes,\"A person is watching a video on a laptop. The person begins eating a cookie, then places the laptop on a shelf.\",bed;food;laptop;shelf;sofa/couch;table;video,\"A person is sitting down and eating some food. The person then closes a laptop screen and puts it on a shelf;A person is siting at a table and eating some food while using a laptop computer, and then the person stands up and puts the laptop away.\",c046 14.30 22.40;c156 1.40 9.00;c154 17.30 22.90;c062 5.40 12.80;c049 19.30 24.80;c014 0.00 22.90;c051 0.00 21.20;c081 19.70 26.00;c135 0.00 21.70;c063 0.00 5.10;c061 0.00 11.70;c123 0.00 21.30;c011 0.00 21.20;c052 0.00 21.50;c047 17.90 25.50,25.71\r\n735W9,GFWE,Kitchen,6,6,Yes,A person is fixing the vacuum and putting a blanket on the table.,blanket;table;vacuum,A person is rigorously inspecting a vacuum cleaner on a table and then pulls out a blanket to place on the table.;A person takes a small vacuum and looks at it appearing to read something. The person then takes a large pillow and puts it on the table.,c009 16.80 23.80;c136 0.00 23.60;c071 22.00 31.00;c072 23.20 32.00;c137 0.00 22.90;c070 20.70 32.00;c014 0.00 21.00;c073 19.30 32.00,31.08\r\nB6XQZ,GFWE,Kitchen,7,7,Yes,A person walks to the stove and then looks at a laptop. They laugh at something on the screen.,laptop,A person walks into the kitchen and stand in front of an open cabinet;A person walks into a kitchen and laughs to themselves multiple times. The person then walks out of frame of the camera.,c149 3.10 17.90;c051 2.20 16.90;c152 2.90 16.90,30.75\r\nJ5DOP,SW82,Kitchen,6,7,Yes,A person is sitting and putting their shoes on. Then the person walks over to the refrigerator and begins to open it.,clothes;door;floor;refrigerator;shoe,A person fastening shoes on feet and then walking to the refrigerator and opening the door and looking in.;A person is sitting on the floor and putting on shoes. The person stands up and walks into the kitchen to open the refrigerator door.,c143 26.20 31.00;c154 20.20 25.40;c055 0.00 24.20;c148 0.00 24.30;c097 23.80 29.20;c008 25.80 31.00;c141 25.80 31.00;c125 0.00 23.20;c055 0.00 11.30,30.29\r\nF1LTO,ARRB,Dining room,2,3,Yes,\"One person - with a sandwich in hand - opens a cabinet with a laptop on a shelf, then closes the cabinet.\",cabinet;door;hand;laptop;sandwich;television,\"A person walks to a cabinet, opens the doors and looks in, closes the doors and then backs up looking at it.;A person opens the doors of an armoire and looks inside it for several moments before proceeding to close the armoire.\",c112 19.10 28.20;c113 0.00 8.70;c008 0.50 8.70;c131 4.60 13.50;c141 1.20 6.50;c006 20.60 26.90,29.04\r\nD8K7T,ENHU,Bedroom,5,7,Yes,A person throws a pillow then leaves through the doorway.,doorway;floor;pillow;towel,Person throwing a pillow and then proceed to walk out of the room into the hallway.;Person throws a pillow on the floor then leave the room through the door way.,c080 0.00 3.20;c097 0.90 5.00;c036 0.00 3.20;c076 0.00 3.00;c126 0.00 3.20,4.29\r\nLSKA2,BONA,Laundry room,7,7,Yes,A person walks into a laundry room and sees a sandwich lying on a chair. They look at the sandwich. They take the sandwich and start leaving the room.,chair;doorway;food;sandwich,\"A young person walks towards a purple plastic chair, picks up a sandwich from the chair, looks at it, then leaves.;A person looks closely at a sandwich sitting on a chair and then picks it up and leaves the room.\",c067 11.00 30.00;c069 10.00 19.70;c061 5.50 30.00;c097 26.80 30.00;c063 10.10 17.10,29.46\r\n"
  },
  {
    "path": "NLQ/2D-TAN/data/Charades-STA/Charades_v1_train.csv",
    "content": "id,subject,scene,quality,relevance,verified,script,objects,descriptions,actions,length\r\n46GP8,HR43,Kitchen,6,7,Yes,A person cooking on a stove while watching something out a window.,food;stove;window,A person cooks food on a stove before looking out of a window.,c092 11.90 21.20;c147 0.00 12.60,24.83\r\nN11GT,0KZ7,Stairs,6,7,Yes,\"One person opens up a folded blanket, then sneezes and leaves the stairs with a broom.\",blanket;broom;floor,\"Person at the bottom of the staircase shakes a blanket out, folds it, grabs a broom, and walks down the hallway.\",c098 8.60 14.20;c075 0.00 11.70;c127 0.00 15.20;c153 6.40 12.10,18.33\r\n0IH69,6RE8,Bedroom,6,5,Yes,A person is seen leaving a cabinet. They then begin fixing a picture that's on a shelf.,book;box;cabinet;shelf,\"A person is standing in a bedroom. They walk over to a box on a shelf and touch it, rearrange it.;A person organizes something on the wall. They look at it and keep fixing it\",,30.25\r\nKRF68,YA10,Laundry room,6,7,Yes,A person runs into their laundry room. They grasp the doorknob and close the door. The person starts dressing then leaves holding their phone.,clothes;door;phone,A person runs in and shuts door. The person grabs a sweater and puts it on. Then grabs phone and walks out.,c018 22.60 27.80;c141 4.10 9.60;c148 10.30 25.00;c006 4.20 10.90;c002 6.80 14.10;c150 0.00 9.90;c000 6.20 15.30,30.33\r\nMJO7C,6RE8,Kitchen,6,6,Yes,A person runs into their pantry holding a bottle of medicine. They grab the doorknob and close the door while watching a video on their phone.,cup;phone,A person runs in place while holding a bottle and a phone.,c015 0.00 32.00;c107 0.00 32.00,31.38\r\nS6MPZ,EA2K,Home Office / Study (A room in a house used for work),6,6,Yes,A person is eating at the desk and lying the phone down.,chair;desk;food;phone;plate;snacks;table,\"A person in a blue shirt is eating snacks off a glass table and having a conversation with somebody over the phone.;The person sitting on the chair by the desk eating food making phone call,finished with the phone hanged up the phone.\",c009 0.00 4.30;c011 0.00 39.00;c015 0.00 39.00;c019 0.00 39.00;c156 0.00 30.70;c059 0.00 39.00;c061 0.00 8.00;c061 5.00 11.50;c017 0.00 35.50;c063 0.00 3.70,38.46\r\n7HVU8,70CN,Hallway,6,7,Yes,A person is throwing items into a bag then starts fixing their clothes.,bag;clothes;floor;hair,\"A person is walking down a hallway and tidying up by putting some clothes in a bag, they then begin to brush themselves down.\",c020 0.00 5.60;c004 12.40 31.00;c001 0.00 10.00;c144 13.50 18.90;c127 0.00 5.00;c127 1.60 7.80;c127 6.30 12.30,29.62\r\nMCQO5,YMXV,Bedroom,5,,No,A person is undressing in the closet.  They put their clothes back into the wardrobe and drink a glass of water while looking at a picture.,bottle;clothes;picture;wardrobe;water,A person just got inside a room to put on a shirt and drink from a bottle of water in a bedroom.,c148 4.20 13.40;c106 29.60 33.00;c000 2.10 23.50;c107 21.40 33.00;c002 1.50 6.30;c110 20.60 25.90,31.58\r\nVPIYF,HJJ4,Recreation room / Man cave,7,7,Yes,A person is standing by a shelf and grasping his phone off of it.,phone;shelf,A person takes a phone off of a shelf and looks at it.,c015 1.80 11.00,10.29\r\nJSUF4,YMXV,Basement (A room below the ground floor),4,5,Yes,A person is sweeping up with a broom and putting things back in their place. They take break on the sofa and start drinking a water.,broom;bucket;cup/glass/bottle;floor;sofa;water,A person is cleaning the floor with a brush in their right hand and holding an orange bucket in their left hand. The person sets down the orange bucket and continues to clean. Then they also put down the brush and walk over to a white sofa and sit down. The person then picks up a bottle of water and drinks from it.,c123 16.10 32.00;c106 17.70 31.80;c102 0.00 12.40;c151 15.10 23.60;c127 0.00 15.50,30.54\r\n8WJIR,DJ17,Bedroom,6,5,Yes,A person in their bedroom is holding a glass of coffee that they picked up from the table. They are smiling because they see something funny on the television and then they start closing the bedroom door.,bed;coffee;cup;door;glass;table;television,\"A person sitting on a bed watching a television, drinking a cup of coffee. The person stands up and proceeds to close the doors, turns and goes back to the bed sits down and starts laughing and continues to drink the coffee.;A person sits on the bed watching television. They sip a cup of coffee, get up to close the closet, then sit back down.\",c009 4.10 12.90;c106 12.90 23.50;c006 7.40 17.60;c154 7.00 14.20;c107 0.00 10.30;c131 5.10 14.50;c107 15.50 36.00;c152 5.10 14.50;c132 0.60 11.20;c110 11.20 19.70;c151 10.00 20.80;c135 10.20 21.30;c109 5.50 13.60,34.71\r\nINQNU,H8N1,Bedroom,7,7,Yes,A laughing person is fixing a bed in their bedroom while drinking a glass of milk.,bed;blanket;clothes;cup;dish;glass;water,\"A person is tidying up a bed, they then sit down and take a drink from a glass then smile.;The person is organizing something in the distance, then takes a sip of a drink out of a cup\",c107 10.20 17.30;c135 8.60 14.60;c151 8.80 14.70;c106 9.20 14.80;c152 12.70 19.00;c004 0.00 11.90;c075 0.00 11.90;c118 9.60 19.00,18.46\r\nLI6LV,Z68L,Bathroom,7,7,Yes,\"In the bathroom, the person put a towel on the doorknob and started undressing.  Half way through they took some medicine from the counter and took it with a drink of water.\",clothes;glass;jacket;medicine;mirror;sink;sweater;towel;water,\"A person holding a towel places it on a hook. The person takes off a sweater and puts it down. The person turns towards the sink, picks up a bottle of medicine, opens it and takes out a pill, then picks up a glass of water used to take the pill;A person folds a towel and puts in on a counter. Then they take off their jacket and put it down. Then they go to the sink and get some medicine and a glass of water. They eat the medicine and drink the water.\",c034 0.00 6.70;c129 30.20 36.00;c106 31.40 36.00;c155 2.70 15.20;c148 13.30 19.40;c129 19.20 26.90;c001 0.00 6.50;c096 28.90 36.00;c002 0.00 6.50,34.71\r\nMGCM8,QB52,Bedroom,5,1,No,The young person was eating a sandwich while browsing on their laptop after working and standing all day long.,chair;desk;laptop;table,\"A person is sitting at a desk working on the computer and yawning.;A person is sitting at a desk using a computer, they yawn and rub their eyes.\",c011 0.00 32.00;c014 0.00 32.00;c059 0.00 32.00,30.75\r\nI8QJN,2RTW,Kitchen,6,6,Yes,\"A person awakens on the floor of the kitchen. The person gets up, putting their hand on the edge of the stove to help. The person walks to the sink, and pours a large glass of water.\",cup;floor;glass;sink;stove;water,\"A person laying on the floor stands and gets a drink.;A person is laying down and sleeping on the floor, they awaken and serve themselves a glass of water to drink.\",c124 0.00 11.30;c106 21.50 30.20;c154 6.50 16.60;c107 12.90 32.00;c146 6.80 12.70,30.92\r\nXC9EY,KFGP,Hallway,6,6,Yes,\"A person walks along the hallway, smiling as the person straightens a picture on the wall.  The person puts a glass down on a table.\",cup;dish;glass;picture;table;wall,\"A person walks down a hallway holding a glass, pausing to adjust a picture on the wall. The person continues on, putting  a glass on a table.\",c088 4.20 18.00;c109 15.90 21.50;c009 16.10 21.10;c118 0.00 21.00;c119 15.90 21.10;c107 0.00 20.90,25.29\r\nDOQ9Y,EA2K,Pantry,7,7,Yes,\"A person undressing by removing their jacket in the pantry. They are looking for some food, and when they find some groceries, they decide on leaving the pantry while closing the door.\",bag;clothes;door;food;groceries;jacket;shelf,\"Person taking off jacket and hanging it up, and then takes some things off the shelf before walking out and shutting the door.;A person takes a jacket off and puts it on a rack. They take some groceries off a shelf and carry them. They close a door\",c001 7.40 15.10;c006 34.00 40.90;c061 17.60 32.00;c097 30.10 41.80;c155 0.00 15.10;c081 24.20 35.30;c141 34.20 41.30;c020 30.30 42.00;c000 6.50 14.70;c023 13.00 20.50;c063 17.20 24.50;c063 21.50 28.40,41.29\r\nRK9II,EIO2,Laundry room,6,6,Yes,\"A person is tidying up with a broom. Laughing, the person walks to the small end table and leans the broom against it.\",mop;table,a person moping up a spill on a table,c012 10.30 35.00;c154 29.60 35.00,33.58\r\nQGQGZ,6RE8,Kitchen,6,6,Yes,A person opens the door into the kitchen then turns the light on in. They then proceed to put the groceries away.,dish;door;food;groceries;light,A person walks through a doorway and turns on a light. A person grabs food off a shelf.,c008 0.00 9.40;c104 10.40 15.00;c130 14.70 34.00;c118 18.80 34.00;c063 19.10 34.00;c061 18.90 33.80;c097 1.00 9.60,32.92\r\n5S1WQ,KQI6,Dining room,6,7,Yes,A person is closing the desk and then playing with a broom in the dining room.,broom;chair;desk;floor,\"A person throws a broom, then picks it up and tidies up. The person moves a chair to tidy under the desk.;A person walks into a room, picks up a broom and begins tidying the floor.  They pick up a chair to sweep the floor, then put it back in place.\",c101 0.00 2.60;c127 7.80 31.80;c102 6.40 30.80;c100 6.00 11.00;c098 6.20 30.70,31.46\r\nCUCBN,WQ8Z,Living room,4,6,Yes,A person smiles at a bag of groceries in the living room. A person leaves the groceries in the room and walks outside.,bag;couch;doorway;sofa;table,A person is sitting on a couch and looks into a bag that is on the table.  The person gets up from the couch and walks out of the room;A person is sitting on the sofa playing with groceries than gets up.,c154 7.40 12.90;c123 0.00 11.30;c009 3.70 10.90;c097 13.40 19.60,20.88\r\nSX0HE,ZSRZ,Hallway,6,7,Yes,\"In a hallway, a person drinks from a glass and then holds a a phone to the person's ear.\",boy;cup;glass;phone;water,a boy talking on a phone and drinking some water.;A person standing in the hallway drinking water and on the phone.,c107 0.00 12.00;c015 0.00 5.90;c019 2.90 12.00;c106 0.00 5.90,10.54\r\n72JYK,HJJ4,Stairs,6,7,Yes,\"A person turns out a light, and then sits on the bottom step of a flight of stairs, eating some snack food while they watch media on their laptop.\",floor;food;laptop;light;staircase,A person is turning off a light and sitting down on a staircase. The person opens a laptop and works on it while eating some food.,c048 6.70 12.00;c061 17.40 23.70;c151 2.60 8.30;c047 4.20 24.00;c052 8.00 24.00;c156 4.20 24.00;c125 4.20 24.00,23.12\r\nBDFDE,YMXV,Bedroom,6,6,Yes,A person is walking toward a chair. They sit in the chair and take some medicine.,chair;cup/glass/bottle;medicine,A person sits down on a chair and takes some medicine. The person then drinks some water.,c059 7.30 33.00;c151 5.40 11.20;c129 17.30 28.90;c106 20.50 29.80;c107 10.50 33.00,31.54\r\nH6N4Z,ID9V,Closet / Walk-in closet / Spear closet,3,7,No,A person is putting clothes away on a shelf in a walk-in closet. The person is watching a video on a phone as they do this.,closet;clothes;phone;shelf,A person is watching something on their phone while they are putting clothes on a shelf in the closet.,c113 0.00 7.20;c081 6.90 12.50;c015 0.00 29.00;c001 6.90 12.60;c114 2.90 29.00;c016 0.00 29.00,27.96\r\nOBTP8,YMXV,Bedroom,4,7,Yes,A person opens a door and enters a bedroom. They begin dressing in clothes and grab a box and leave.,bed;box;clothes;door;mirror;shirt,\"A person is walking, opens a door and looks in the mirror before grabbing a box.;A person walks through a door and looks into a mirror. They fix their shirt before grabbing a box off a bed.\",c008 3.50 11.80;c040 17.90 24.40;c096 9.20 17.70;c097 0.00 6.70;c155 9.40 21.30;c141 2.80 11.80,31.08\r\n4021N,ADN3,Laundry room,7,6,Yes,A person is tidying the laundry room. They throw a pillow into the corner and put a camera into a box.,box;clothes;pillow;trash can,A person walks into a laundry room carrying a pillow and places the pillow behind a trash can. The person then grabs a box off of a shelf and picks something off of the floor and places it into the box.,c040 8.00 27.80;c042 24.00 28.70;c076 0.00 9.90;c039 13.50 22.20;c041 8.80 14.30;c043 6.00 13.20;c000 2.10 10.40,30.33\r\nZSHWE,3531,Stairs,6,7,Yes,A person is walking down stairs while grasping a book.  The person has a towel draped over the person's shoulder and stops at the bottom of the stairs to undress.,book;clothes;towel,A person walks holding a book. He undresses from a towel and shirt.,c034 11.70 19.50;c026 0.00 23.50;c155 15.20 28.20;c035 10.50 17.50;c033 0.00 18.80;c001 22.00 27.80;c000 22.50 27.40;c002 15.70 26.60,30.75\r\nSFDTP,ZAWX,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,A person is seen dressing themselves. The person takes clothes out of the box and stands there looking at them.,box;clothes;towel,\"a person stretching, walks up to a box, and pulls a shirt out and hold it\",c044 14.80 22.30;c000 15.40 31.00;c154 0.00 31.00;c033 14.60 31.00;c035 14.30 31.00,30.50\r\nQ5EPP,ZEM0,Bathroom,6,4,Yes,A person opens a bottle of medicine and plays with food.,medicine,A person is standing in the bathroom and opening a container of medicine. They take some out of the package and swallow them.,c129 22.40 27.80;c128 2.10 40.00,38.75\r\nSK6FW,T7C3,Pantry,7,7,Yes,\"A person is undressing their warm clothes. They see a broom and start playing with it, pretending it is a microphone.\",broom;clothes,A person takes off clothes and sings into a broom.,c098 13.70 34.00;c155 0.00 18.80;c100 16.00 34.00;c003 5.00 11.30,32.67\r\nVHIG7,F3YX,Basement (A room below the ground floor),6,6,Yes,\"A person is eating food, then laughing at a laptop in a basement.\",bowl;food;laptop;table,A person eats some food from a bowl while looking at something on their laptop.,c061 0.00 5.50;c063 0.00 4.10;c051 0.00 29.00;c156 0.00 29.00;c052 0.00 29.00;c014 0.00 29.00,27.88\r\n0R6K4,KI4T,Closet / Walk-in closet / Spear closet,6,7,Yes,A person takes a glass of water from the desk and drinks it.,clothes;cup;dish;glass;table;water,A person looks at some clothes. A person then takes a glass of water and starts drinking from it. A person puts the glass on the table;A person looks at a wardrobe in a closet then picks up a glass of water from a table and takes a drink then returns the glass to the table.,c106 4.90 22.50;c107 4.60 9.60;c106 8.00 15.90;c009 18.40 23.90;c118 4.30 24.10,30.33\r\nPSPMA,BYF9,Living room,7,7,Yes,\"A person is seen watching television as they put on their shoes. They start laughing, then take a bit out of their food.\",chair;dish;food;shoe;television,A person sitting in a chair watching television puts on shoes and then eats food.,c055 2.50 30.30;c061 23.40 32.00;c063 20.40 28.80;c156 24.90 32.00;c132 0.00 32.00;c059 0.00 32.00;c119 0.00 6.50;c120 21.30 27.40;c062 25.20 32.00;c118 21.90 32.00,31.25\r\nMD41D,4I61,Living room,7,7,Yes,A person is standing at the window and watching outside. They take a photograph through the window using a camera.,camera;doorway;phone;window,\"A person walks into a room and begins looking out a window, they then snap a picture with a camera and leave.\",c015 6.70 39.50;c092 11.00 37.70;c087 38.50 42.00;c097 38.50 42.00,40.50\r\nSDXZ8,HR43,Kitchen,5,7,Yes,A person walks into their kitchen and starts tidying up. The person washes the dishes and then vacuums the floor.,dish;floor;plate;sink;vacuum,\"The person walks into the kitchen and starts to wash a plate. The person puts the plate on a drying rack. The person then walks over to grab a vacuum, unwraps the chord, and places the vacuum on the ground.;A person washes some dishes in a sink, They put the dish away. They take a vacuum and put it on the floor.\",c137 35.60 52.00;c138 33.50 38.80;c118 11.60 27.80;c121 8.30 24.70;c119 20.40 27.20;c127 40.00 52.00;c120 1.10 28.00,51.42\r\nS673O,SS3R,Living room,6,6,Yes,\"A person lies on a sofa in the living room, laughing as they watch television. The person pours a drink into their glass, and takes a bite of their sandwich.\",cup;food;glass;plate;sandwich;sofa,\"Person is lying on couch when she grabs a glass of water and takes a drink followed by eating food off a plate.;Person lying on the couch sits up, picks up a plate off the table and eats a bite\",c122 0.00 3.20;c065 24.40 31.40;c107 9.70 24.80;c123 0.90 35.00;c106 24.40 35.00;c122 0.00 18.80;c156 24.90 35.00;c067 32.00 35.00;c069 32.00 35.00;c063 32.00 35.00;c061 32.00 35.00,33.92\r\nU79C9,9PLL,Stairs,5,7,Yes,\"A person sits on stairs and takes off their shoes, then grabs a blanket and snuggles it.\",blanket;shoe;stairs,\"A person is sitting on some stairs taking off their shoes, they then begin to snuggle with a blanket.\",c072 20.00 36.00;c073 15.30 27.00;c057 3.20 17.50,34.88\r\nN915C,6RE8,Bedroom,6,7,Yes,\"A person is undressing as the person stands in front of the wardrobe. Then, wrapped in a blanket, the person picks up a broom and begins tidying the room.\",blanket;broom;clothes;doorway;floor,\"A person walks into a room and gets undressed.;A person walks into the room and undresses. They snuggle with a blanket, pick up a broom, and sweep the floor.\",c100 21.70 35.00;c102 20.90 35.00;c072 14.40 35.00;c155 0.00 16.60;c097 0.00 4.50;c127 23.60 35.00;c001 6.10 18.10;c073 15.40 28.60,33.83\r\nFXRMG,XXN8,Bedroom,7,7,Yes,\"A person takes a book from their desk. Holding the book, the person looks around and leaves the room.\",book;desk;door;table,\"A person picks up a book off of a table, looks around, and then opens a door, exits, and closes a door.;A person grabs a book from a desk and holds it as they look around. They set it on the desk before walking out the door.\",c009 18.50 23.60;c026 1.50 22.80;c006 23.60 29.30;c008 22.90 28.10;c097 23.40 31.10;c028 18.80 25.00;c030 0.00 5.80;c154 20.60 25.50;c032 1.30 7.30;c141 22.60 27.90,33.00\r\nP68QV,ZAWX,Dining room,5,7,Yes,A person is seen smiling and looking at their camera. They begin eating and then pick up a bag of groceries to put away.,animal cracker;bag;camera;doorway;food;phone;plate,\"A person is holding a camera and smiling at it. The person grabs some food off a plate and eats. The person grabs a bag from the table and carries it out the room.;The person looked at a phone, ate two animal crackers, too the bag from the counter then left the room.\",c020 23.60 29.80;c152 0.00 3.50;c016 0.00 15.80;c015 0.00 28.00;c023 23.10 32.00;c156 14.40 32.00;c062 12.70 32.00;c061 13.50 20.20;c097 26.50 32.00,30.58\r\n78XZ9,XXN8,Basement (A room below the ground floor),3,4,Yes,A person is standing on a box and smiling at a book.,book;box,Someone is in their basement. They walk to a box and stand on it with a book in their hand. They open the book and read from it and then they close it.,c025 27.30 32.40;c026 0.00 33.00;c027 6.30 20.10;c152 3.70 10.00;c029 2.00 33.00;c032 0.50 33.00;c149 5.80 33.00;c030 0.00 4.40,31.79\r\n0VOQC,YA10,Basement (A room below the ground floor),6,7,Yes,\"One person runs in with a phone, then eats something out of a bag, then closes the bag.\",bag;food;phone;sandwich,\"A person is eating some food.;A person runs into the room, bumps into a box, looks at a phone and sticks it in a pocket. The person then opens a bag containing a sandwich that has been held the whole time and removes the sandwich and begins eating it. The bag is then closed and the person walks away with it.\",c015 0.00 9.00;c021 5.40 10.50;c150 0.00 4.90;c017 0.00 9.50;c020 0.00 28.90;c156 5.80 25.30;c067 8.00 21.80;c065 12.00 20.70;c069 24.10 29.00,27.88\r\nE6Q95,L4ZP,Living room,7,5,Yes,A person is undressing and wrapping herself in a blanket. A person is walking to sit in front of the television and eat a sandwich.,blanket;clothes;food;medicine;sandwich;sofa/couch;television,A person takes of their coat and sits on a sofa and watches TV,c132 12.30 17.50;c072 11.00 18.00;c155 3.70 11.80;c151 3.10 8.10;c070 8.40 26.00;c061 14.00 26.00;c073 8.20 26.00;c156 14.00 26.00;c123 2.80 26.00,25.42\r\nG99VH,UTMU,Stairs,6,7,Yes,A person is smiling at a camera and then pouring medicine into a spoon on the stairs.,bottle;camera;cup;medicine;phone;picture;spoon;stairs,\"A person is sitting on the stairs and picks up a camera and takes a picture of themselves. They set down the camera, Then they pick up a bottle of medicine and pour it into a spoon. They close the lid to the bottle as they hold the spoon.;A person is sitting on the stairs taking a picture.  The person then puts down the camera and picks up a bottle of pink medicine and pours some in a spoon.\",c015 4.80 23.70;c018 9.20 19.30;c128 18.90 37.50;c087 17.40 33.40;c017 1.50 17.90;c129 7.10 15.60;c128 13.30 30.50;c107 19.90 29.10,38.75\r\nDWHPO,D0RU,Dining room,7,7,Yes,A person is sitting and smiling at another person who has a bag of food.,bag;chair;food;phone/camera;table,People sitting at a table eating food one take something out of a bag other person pick it up.;Two people are sitting in chairs at a table eating something. One person removes some food from their bag and places it on the table. The second person picks up the food.,c062 3.20 14.00;c063 1.30 7.60;c059 0.00 31.00;c011 0.00 31.00;c009 10.50 14.90;c020 8.80 15.10;c018 27.40 31.00;c017 15.70 21.30;c156 26.90 31.00;c015 3.90 8.80,30.42\r\nH603E,LTAC,Basement (A room below the ground floor),7,7,Yes,A person is reading a book while working on their laptop. The person puts the book down and starts eating.,book;chair;floor;food;laptop;paper;sandwich;table,\"A person is sitting in a chair looking at a paper, while working on a laptop.;The person is sitting and looking through some paper. The person then types something on a keyboard. They do this two times, put the paper on the ground, then eat something\",c026 0.00 28.90;c027 0.00 8.00;c032 0.00 28.40;c051 0.00 33.00;c059 0.00 33.00;c116 20.70 29.00;c115 0.00 7.50;c115 8.80 23.80;c052 3.20 15.10;c156 26.50 33.00;c014 0.00 33.00;c126 23.60 28.50;c061 24.40 33.00;c063 24.70 31.30;c145 0.00 27.40;c067 27.10 33.00;c011 0.00 33.00,32.33\r\nCBXVQ,8718,Pantry,7,7,Yes,\"A person stands in front of their pantry pulling food off of the shelf , they walk to the sink grasping a piece of fruit and began washing it.\",cabinet;cans;counter;faucet;food;hand;shelf;sink,A person enters the room and opens up a cabinet and gets several cans out and puts them on the counter. Then they turn on the faucet and wash their hands.;A person opens a cabinet and retrieves some food from a shelf in it. They then wash the top of a one of the cans in the sink.,c061 7.50 14.20;c063 0.40 10.20;c113 7.40 22.10;c139 18.80 35.00;c114 4.00 21.70,33.83\r\nPN4MI,9Y7F,Kitchen,3,5,Yes,One person stands drinking and laughing in the doorway as another person awakens with homework and a sandwich in front of them.,book;calculator;dish;doorway;food;glass;homework;paper;sandwich;table;water,\"A man in standing near a door way drinking a glass of water holding a piece of paper. Another man is sitting on a counter doing home work, while eating a sandwich.;Two persons are eating and drinking in a kitchen.  One operates a calculator doing their homework while the other holds papers.\",c145 3.60 13.80;c065 4.90 13.10;c149 15.60 29.90;c010 0.00 10.70;c014 0.00 32.00;c115 0.00 32.00;c118 0.00 32.00;c061 0.00 32.00;c152 0.30 6.90;c032 4.00 13.60;c156 17.70 25.40,30.50\r\nVJ2QS,3H6W,Dining room,6,7,Yes,\"One person pours something down the sink, then sits at the table and plays with their food.\",bag;bread;chair;cup;food;sink;table;water,\"A person dumps some water into a sink. The person sits in a chair and tosses a bag of bread in their hands;A person is pouring some water into a sink, they then sit down at a table and begin playing with some bread.\",c061 11.20 21.00;c059 10.30 21.30;c011 10.40 21.40;c063 11.40 15.80;c023 11.40 15.80;c024 11.80 20.50;c110 1.60 5.80;c154 0.00 14.50;c109 1.60 10.90;c064 10.00 21.70,23.75\r\nFI1LR,XXN8,Kitchen,5,7,Yes,A person is cooking on the stove and another person is putting up groceries.,basket;food;groceries;stove,A lady stands in her kitchen and unloads items from a basket and puts them into a cabinet while a second woman cooks behind her.,c130 4.40 31.70;c062 0.40 31.40,31.75\r\nAY08E,ZTV2,Bedroom,5,6,Yes,A person is in the bedroom holding some clothes.  Then the person starts smiling while looking at themselves in the mirror.,clothes;mirror,\"A person walks into a living room holding some clothes, then hugs the clothes and looks into a mirror and smiles.\",c094 10.30 23.00;c096 10.80 23.00;c152 10.80 23.00;c000 0.00 23.00,21.58\r\n7XNAI,ZSRZ,Recreation room / Man cave,7,7,Yes,A smiling person is walking into a recreation room has set a sandwich next to the person's laptop.,couch;food;glasses;laptop;pillows;sandwich;sofa;table,\"Person walks in room, bends and place food on table, sits on couch and types on laptop.;The person comes into view on the screen, sets down a sandwich, and sits down on a couch and gets on the computer.\",c152 7.70 12.80;c151 5.50 12.10;c123 5.60 13.00;c009 1.00 8.10;c062 1.00 8.10;c014 8.60 13.00;c052 7.50 13.00;c011 7.70 13.00,11.71\r\nIST7I,HR43,Living room,5,7,Yes,Person is snuggling with blanket watching television and eating food out of box.,blanket;box;food;laptop;sofa;television,\"A person is sitting on a sofa looking at a laptop on the coffee table. They open a box of Ritz crackers, fidget with a blanket, and begin eating the crackers.;person sits on a sofa and eats some food\",c061 16.60 28.50;c132 0.00 41.00;c041 0.00 4.20;c156 18.40 32.80;c070 35.00 41.00;c040 0.00 5.00;c044 22.10 29.70;c123 0.00 41.00,40.42\r\nOI3BC,2RTW,Bedroom,6,6,Yes,A person puts a towel onto a chair in their study. The person notices an open drawer in the nearby desk; the person closes it.,cabinet;chair;clothes;desktop;door;laptop;shelf;shirt;towel,\"A person enters the room carrying a towel.  They put it on a chair, then close the door of a cabinet.;A person walks to his room and puts his shirt on his chair. The person then is trying to look for something.\",c097 0.00 5.40;c033 0.00 5.90;c112 11.40 19.80;c001 0.50 8.20;c034 2.60 10.80;c006 11.50 24.60;c003 2.50 9.30;c082 10.80 24.20,29.71\r\nF4BJJ,2RTW,Bedroom,6,6,Yes,A smiling person runs through the doorway.  The person puts a bag down on the desk.  The person takes a book out of the bag and stands by the desk holding it.,bag;book;desk;paper;table,A person runs to a desk and takes a book out of their bookbag. They begin reading the book and smiling and nodding.,c027 10.50 30.00;c117 2.80 12.80;c020 1.50 12.50;c022 7.70 12.60;c026 7.30 30.00;c029 14.10 30.00;c032 9.90 30.00;c150 0.00 4.50;c009 0.60 12.00;c030 5.60 13.80;c023 4.80 12.00,29.04\r\n83654,2RTW,Bedroom,6,6,Yes,\"A person puts a sandwich down onto a desk. The person sits down at the desk, and opens a box.\",box;chair;desk;dish;sandwich;table,\"A person walks over to a desk carrying a plate with a sandwich on it sits down in the chair takes a box off of the desk and opens it.;Person walks in, sits down, and begins to look at a pair of shoes.This person carries a sandwich into their room and places it on the desk.\",c011 10.30 31.00;c151 5.00 15.10;c041 17.70 27.30;c009 6.10 12.80;c059 8.20 14.90;c067 0.00 10.10;c118 0.00 9.90;c068 0.00 13.10;c040 13.40 31.00;c119 0.00 12.60,29.83\r\n0G0YF,HR43,Kitchen,4,6,Yes,\"A person walks to a refrigerator, closes the refrigerator door, and then cooks at a stove.\",dish;food;stove,A person is opening the fridge then they are at the stove cooking the lift the pan several times.,c147 4.20 30.00;c118 15.40 21.70,29.38\r\n0R5GS,3531,Recreation room / Man cave,7,7,Yes,A person in the recreation room is walking around holding a box that they picked up from the desk. Their walking turns into running as they look into a mirror and see their reflection.,bench;box;mirror;room,\"A person walks into the room and grabs a box off of a bench. The person walks in circles while holding the box while looking in a mirror.;A person walks into a room, picks up a box, and begins walking in circles with the box in hand\",c040 1.60 32.00;c043 1.00 7.20;c096 11.80 29.60;c150 10.90 32.00,31.33\r\nPVB4S,D0RU,Stairs,6,7,Yes,\"A person is walking down the stairs holding a bag in their hand.  When they get to the bottom of the stairs, the person throws the bag next to the sofa.\",bag;bench;chair;floor;hand;stairs,\"The person walked down the stairs with a backpack and threw the backpack. The person picked it up and put it on a bench.;A person walks down some stairs holding a bag. They throw the bag on to the floor, pick it up and put it on a chair.\",c024 16.70 25.40;c023 5.50 18.40;c022 18.50 24.80;c127 23.40 30.30;c020 5.70 18.70,32.71\r\nN2OCX,PO5L,Basement (A room below the ground floor),7,7,Yes,\"A person laughs while holding a broom in the basement, then sneezes on a chair.\",broom;chair,A person holding a broom walks into the hallway laughing. They sneeze and leave the room.,c149 1.90 11.10;c153 6.70 13.50;c098 0.80 17.60,18.25\r\nQ5GVZ,OUKK,Hallway,5,7,Yes,A person is standing in the hallway holding a towel and a cup of coffee.  The person puts the towel onto a pile of clothes and fixes a crooked picture on the wall.,coffee;cup;picture;towel;wall,A person walks by while holding a cup of coffee and a towel. The person puts the towel on a table then adjusts the picture on the wall.,c107 3.40 15.00;c088 3.70 25.30;c034 11.00 16.40,29.21\r\nR7107,I4RP,Living room,6,6,Yes,\"A person is working on a sofa. Another person walks in with a bag of groceries, closing the door behind them.\",bag;door;groceries;laptop;sofa,\"A person is sitting on a sofa working on the laptop when another person walks in through the door carries groceries.;A person sits on a couch with a laptop while another person enters a doorway and opens a door with a bag, then closes it.\",c052 0.00 14.00;c008 0.20 7.80;c123 0.00 14.00;c020 3.20 14.00;c006 3.50 11.00,12.50\r\nUMOE4,I4RP,Living room,6,6,Yes,A person holds a box of pictures from a table in the entryway. Another person suddenly comes running through.,box;cards;laptop;picture;vacuum,\"The person is shuffling through cards while standing at a table. Another person sprints through the picture, past the original person standing there.;A person searches through a box and another person runs across the room.\",c044 5.00 10.70;c084 0.00 10.80;c083 6.50 11.10;c150 6.20 11.70;c154 0.00 12.00,11.38\r\nQLWQ4,P6LJ,Living room,5,6,Yes,\"A person is tidying up the room. They are holding a laundry bin and pick up a towel and a blanket nearby, and put it in the laundry bin.\",bag;blanket;box;clothes;hamper;shirt;table;towel,\"A person is putting clothes in a box, they then put a blanket in a basket and several other clothes.;Someone is in the living room and they grab a shirt from the table and fold it and then puts a bag and clothes in a hamper.\",c000 2.60 14.20;c002 21.40 36.00;c004 2.40 43.40;c001 21.40 43.40;c001 2.80 14.40;c003 21.20 29.40;c002 2.60 9.80;c073 3.10 8.90;c154 0.00 47.00;c071 4.20 14.20;c009 9.70 14.90;c012 9.30 14.90,45.92\r\nS9P0W,L4ZP,Bedroom,5,6,Yes,A person is seen holding a towel which they put into a box. They then start pouring themselves some water and turning off the light,box;cup/glass/bottle;light;towel,\"A person folds a towel, puts it in a box and then turns off the light.\",c105 27.10 32.60;c033 0.00 13.70;c034 7.20 13.50;c108 12.40 21.90;c037 0.00 12.10,38.25\r\nU1DTW,0KZ7,Garage,7,7,Yes,A person is tidying up with a broom. The person starts laughing because of something they noticed outside the window.,broom;floor;window,A person in blue jeans and a sweat shirt is inside a cluttered room and using a yellow broom to sweep the floor.,c098 0.00 34.00;c102 0.00 24.60;c092 21.80 34.00;c127 20.80 25.10,32.71\r\nR6CIX,4I2W,Living room,6,7,Yes,A person standing looks like they are fixing a door hinge but gets tired and sits on a sofa.,door;sofa,A person is fixing a door and then sits down on a couch.,c123 14.70 20.10;c007 0.00 11.40;c151 14.70 20.10,30.38\r\n2PREF,L4ZP,Kitchen,6,7,Yes,A person is in the kitchen holding a frying pan.  They put the pan on the stove and go to the shelf for a can of food.  The person opens the can and sets it next to the stove.,cabinet;dish;food;frying pan;groceries;shelf;stove;table,A person put a frying pan on the stove.  The person then turned on the stove.  The person then grabbed some food from the cabinet.;a person in kitchen walks over and puts pan on stove then goes to cabinet and pulls out cup off shelf then places it on table then walk over and looks in another cabinet.,c147 1.90 9.70;c113 8.20 15.10;c009 13.90 19.60;c119 0.00 6.00;c112 10.10 15.20;c062 9.90 19.70;c063 8.70 14.40;c061 10.00 19.10;c130 14.60 19.50;c118 0.00 5.50,24.96\r\n57J92,D0RU,Recreation room / Man cave,6,6,Yes,One person grasps a broom and smiles at another person who is eating a sandwich and watching the first person.,broom;floor;food;sandwich;television,A person is sweeping the floor with a broom. Another person is standing out of the way while eating something. The second person walks away.;person sweeps the floor and another eats a sandwich,c065 9.40 38.00;c098 0.00 38.00;c152 9.90 35.40;c127 0.00 38.00;c067 29.60 34.70;c102 1.10 38.00;c156 29.80 35.40;c132 0.00 38.00,36.62\r\nR2DA8,18IT,Kitchen,7,7,Yes,A person is seen sneezing while on their laptop. The person then begins throwing food on a plate from the fridge.,chair;dish;floor;food;laptop;plate;refrigerator;table,\"A person sitting on a chair and working on a laptop on a table sneezes. They get up and go to their kitchen where they sit a plate down on the floor and open their refrigerator.;A  person sitting in a chair working at a laptop, closing the laptop, getting up and walking to the kitchen, opening the fridge, and putting something on a plate in the middle of the floor.\",c119 22.50 30.70;c153 7.00 17.30;c011 0.00 19.60;c143 28.10 33.90;c052 0.00 17.70;c154 16.00 21.40;c059 0.00 20.00;c120 23.00 27.70;c126 32.70 44.30;c064 32.90 43.10,46.17\r\nVCU4P,ZAWX,Bedroom,7,6,Yes,A person is smiling and watching a person as the person folds a blanket and puts it into a cabinet.,blanket;cabinet;table,A woman is smiling at a young guy. The guy is picking up a blanket. He folds it and sets it on a cabinet. Then he begins walking around looking for something.,c070 1.10 21.40;c071 16.50 24.40;c075 1.10 19.90;c152 0.00 4.00;c009 16.30 24.00;c149 0.00 3.50,26.92\r\nU3OJV,0KZ7,Living room,7,7,Yes,A person is drinking coffee and grasping a phone with their other hand.,chair;coffee;cup;phone;water,\"A person is sitting in a chair, drinking from a glass and looking at a phone.;A person is sitting in a chair holding a cup and a phone. They drink water from the cup.\",c015 0.00 29.00;c106 0.00 29.00;c059 0.00 29.00;c016 0.00 29.00;c107 0.00 29.00,27.67\r\nPY5M4,YMXV,Bathroom,6,6,Yes,A person is standing in front of a mirror.  Then the person sneezes once into the sink.,counter;doorway;face;mirror;sink,A person is standing in front of a mirror and is looking at themself. They walk through a door and into a room with a sink.;A person looks in the mirror and touches their face. They walk through the doorway and lean over a sink.,,30.58\r\nT1CQE,JVLO,Bedroom,4,5,Yes,\"Person walks into the bedroom, takes their laptop out of a bag, and lies down on the bed.\",bag;bed;chair;doorway;floor;laptop,\"A person enters the doorway. A person grabs a bag off of a chair. A person then sits down and takes out a laptop.;A person walks into a room and picks up a book bag off of a chair. The person carries the bag across the room, and then sits down on a floor/bed, opens the bag, takes out a laptop computer and opens the computer.\",c021 18.90 27.40;c023 8.00 14.90;c050 21.40 29.90;c125 16.90 37.00;c022 17.30 29.70;c048 30.90 37.00;c135 17.50 37.00;c151 14.60 20.40;c020 6.90 31.30,35.62\r\nFPNT1,DXDI,Stairs,,7,Yes,A person walks up the stairs grasping a laptop and some homework.  Halfway up the stairs they throw the homework down.,book;box;homework;laptop;paper,\"A person walks up the stairs holding a laptop, and a book. The person throws the book on the floor and leaves.\",c047 0.00 18.50;c031 6.60 11.20;c040 0.00 14.10,17.88\r\n3ZKDY,C7O9,Living room,6,6,Yes,\"A person snuggling with a blanket asleep on the sofa, begins awakening and sitting up with a yawn.\",blanket;sofa,A person is sleeping on the sofa and wakes up.,c122 0.00 17.90;c072 0.00 18.00;c146 8.60 27.00,25.54\r\n3MAY9,C7O9,Pantry,7,6,Yes,\"A person holding a camera takes a picture of a cabinet.  They set the camera down, pick up a glass and start drinking as they turn out the light and walk away.\",camera;cup;glass;light;phone;picture;shelf;water,\"A person takes some pictures of a microwave. The person then drinks some water and turns off the closet light;A person is taking a picture with a camera. A person then drinks a glass of water, and turn off the light.\",c015 4.50 20.30;c108 11.70 19.40;c105 6.00 23.60;c106 7.00 19.60;c087 10.50 26.40;c107 11.60 27.00;c081 10.50 15.40;c017 10.40 15.30,25.79\r\n0TQZQ,T7C3,Pantry,6,7,No,\"A person stands in front of the medicine cabinet, reading a book. The person closes the book, and runs out of the bathroom.\",book;cabinet;doorway;medicine,A person abruptly walks out of a closet after standing there for a few seconds reading a book.,c025 14.60 18.80;c026 0.00 22.00;c032 0.00 18.80;c097 15.10 20.30,20.54\r\nG70A2,HJJ4,Laundry room,7,7,Yes,A person is sneezing and then starts tidying the book on the shelf.,book;shelf,A person sneezes. The person then picks up a book off a shelf.,c082 3.70 12.80;c153 0.00 6.80,12.04\r\nR00LO,D0RU,Kitchen,7,7,Yes,A person is walking toward a pantry while snuggling a blanket. The person grabs a sandwich.,blanket;dish;doorway;food;sandwich,\"A person walks through a door wrapped in a blanket. They walk to the pantry and grab food. They then eat the food.;A person walks through a doorway wearing a blanket, they then go to the fridge, take out some food, and begin to eat it\",c156 24.20 31.30;c063 15.70 21.20;c097 8.80 14.20;c073 8.30 33.00;c118 21.70 33.00;c067 21.70 33.00;c120 21.70 33.00;c061 20.30 33.00;c072 8.70 33.00;c065 23.90 33.00,31.75\r\nCMD0M,0RNU,Garage,5,7,Yes,A person is tidying up some junk on the shelf.  Then the person pours some liquid into a glass.,cup;glass;pitcher;radio;shelf;tools;water,a person tidies up a workspace in the garage then poors some water;A person is plugging in a radio. A person then pours themselves a glass of water.,c107 16.40 31.00;c108 17.70 30.70;c082 0.00 19.70;c110 16.10 31.00,29.58\r\n2WGSN,WQ8Z,Kitchen,7,7,Yes,A person drinks from a cup then puts it in the sink and begins washing it with a towel.,cup;dish;glass;towel,A person drinks from a glass.,c106 0.00 11.10;c107 0.00 12.00;c038 13.70 23.60;c111 8.00 18.30;c121 15.50 27.10;c109 0.00 12.20;c035 14.00 23.30;c110 7.40 12.40,28.00\r\nKV99H,KFGP,Home Office / Study (A room in a house used for work),5,6,Yes,Person opens desk to messy clutter of shoes and glasses. Person tidies up by throwing things into bag.,bag;book;cabinet;clothes;desk;papers;shoe,\"A person opens up a drawer and begins placing the items in that drawer in a plastic bag;A person opened a desk drawer and a plastic bag. The person removed shoes, papers and some other objects from the drawer and placed them in the bag.\",c021 2.10 13.00;c053 8.80 14.30;c020 1.00 31.00;c023 1.00 6.00;c054 8.00 17.00;c056 8.00 13.00;c028 16.00 23.00;c001 21.10 30.50,29.96\r\nEDVAM,QOQ4,Living room,6,7,Yes,\"A person is holding a pillow. Then, sneezing, the person gets up and begins closing the window.\",pillow;sofa/couch;window,A person is holding a pillow while sitting on a couch.  He stands up and goes to clothes a window.,c076 0.00 7.10;c089 10.20 16.00;c154 3.10 7.90;c123 0.00 7.00,15.21\r\nR1S1Z,28B0,Kitchen,6,6,Yes,\"A person is taking groceries from a bag and throwing them to a person as the person stands by the fridge, ready to put them away.\",bag;floor;food;groceries;refrigerator;shelf,A person tosses objects to another person and then throws a bag at them. Then both of them go crazy.,c024 9.80 15.00;c062 0.00 23.00;c020 0.00 17.40;c125 1.70 20.60;c081 3.50 20.70;c061 0.00 23.00;c154 16.20 21.60;c021 0.00 6.60;c143 2.00 6.00;c064 3.00 15.00;c130 3.00 15.00,21.67\r\nFDYQZ,PKND,Dining room,5,7,Yes,A person standing at a sink starts to undress. Another person runs by holding a pillow in their arms.,clothes;mirror;pillow;shirt,\"One person is undressing, while another person is holding a pillow and walking around the room.;Two people are in a room. One is undressing and redressing in front of a mirror while the other paces back and forth holding a pillow.\",c076 0.00 33.00;c155 6.10 16.10;c149 0.90 9.20;c152 0.90 9.20;c096 4.80 16.60,31.75\r\nV3DJ5,0KZ7,Living room,6,7,Yes,\"One person snuggling under a blanket sneezes, smiles, then takes a piece of food.\",blanket;couch;food;sofa,\"A person lays on the couch covered in blankets. After a little while, the person sneezes, smiles, and picks up a piece of food and eats it.;A person is laying on a sofa with a blanket while sneezing and eating.\",c072 0.00 27.00;c061 16.90 24.10;c063 14.20 24.20;c153 11.90 18.70;c152 14.20 21.70;c122 0.00 27.00;c156 14.30 27.00,26.25\r\n9GMHF,XXN8,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person is laughing as the person hangs their coat up in the cabinet. Then the person opens the door and reaches for a broom to sweep out the entryway.,broom;cabinet;clothes;coat;door,\"A person hangs up a red coat in a closet.  The person then opens another door, takes out a broom, and begins sweeping the hallway.\",c008 12.80 18.70;c100 14.30 19.90;c112 11.10 16.60;c006 12.30 17.30;c098 15.40 32.00;c102 17.30 32.00;c000 0.00 12.70;c004 0.00 13.70;c001 0.00 14.60,31.08\r\nG6MYM,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is in the entryway watching the mirror.  Another person is working on bringing in groceries to the house.,bag;door;food;groceries;hair;mirror;table,A person is standing in front of a mirror fixing their hair when another person comes in through the door holding a bag and goes to the table and puts groceries in the bag.;A person is looking at himself in the mirror and flexes. Another person walks in with a bag sand puts something in the bag;A person stands and poses in front of a mirror. Another person walks into the room holding a bag of food and starts putting the bag's contents onto the table.,c062 17.00 32.00;c096 0.00 32.00;c008 8.10 17.00;c144 16.80 23.90;c020 11.20 32.00;c130 14.70 32.00;c097 10.10 16.20;c021 15.40 32.00,30.58\r\n7HZHM,QOQ4,Bathroom,5,6,Yes,A person is undressing in front of the mirror. They sneeze and grab a tissue from the tissue box.,box;clothes;floor;jacket;mirror;sweat shirt;tissue,\"A person is taking off a jacket, while looking in the mirror. A person takes a tissue.;Person walks in bathroom, looks in mirror, takes off sweat shirt, sneezes, grabbed a tissue and walked out bathroom\",c044 3.00 14.50;c155 9.70 21.70;c153 15.20 25.30;c155 23.00 31.10;c096 3.20 9.70;c003 17.60 23.60;c126 16.90 23.40,31.29\r\nXOMJ4,KFGP,Home Office / Study (A room in a house used for work),7,6,No,\"A person is taking medicine out of the cabinet.  The person pours a tablespoon of the medicine and drinks it, then puts it back in the cabinet and sits in a chair.\",cabinet;chair;cup/glass/bottle;medicine;table,\"The person approach a desk and sets down a spoon. Then the person opens the drawer and pulls out a bottle of medicine. Proceeds, pouring the medicine into the spoon and drinks it, then puts the medicine back into the drawer. Finally the person sits down in the chair.\",c128 0.50 7.80;c129 0.30 19.00;c112 15.70 23.50;c151 19.20 24.80;c128 0.90 24.20;c059 19.50 30.00;c113 0.00 6.30;c009 0.20 5.60;c108 6.10 13.20;c011 20.50 25.40;c109 16.70 22.50;c107 2.30 22.00;c110 1.90 22.00,28.79\r\nL2ZZB,T7C3,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is undressing in the hallway by taking their  jacket off. They start lying down on a blanket while pulling out their phone.,blanket;clothes;floor;phone,\"A person undresses, lays down on a blanket, pulls out their phone and holds it, and wraps up in the blanket on the floor.\",c015 20.50 28.00;c155 0.00 19.30;c151 20.30 27.60;c001 14.40 22.30;c016 30.20 37.00;c072 30.00 37.00;c124 22.90 37.00;c001 0.00 29.40;c018 23.40 37.00;c016 23.40 37.00,36.29\r\n5ACD3,T7C3,Living room,6,6,Yes,\"A person lying on the floor in the living room is drinking their favorite beverage and watching something out the window.  They get up, bringing their empty glass with them, and put it on a table.\",bottle;cup;floor;glass;something;table;window,\"A person crawls on the floor to the window and looks out.  They pick up a bottle of wine and drink some.  They put the screw cap back on the wine.  As they stand up, they grab a glass from the floor and put it on a table.  They begin to walk away while holding the bottle of wine.\",c109 41.00 46.00;c092 3.00 30.00;c154 41.00 46.00;c009 41.00 46.00;c106 12.70 28.30,44.50\r\nUAT1F,ID9V,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is standing while holding a book in their home office. They then walk over to a desk, put the book down and open a laptop.\",book;desk;laptop;shelf;table,\"A person picks up a book and flips through the pages. They put the book down and open up a laptop.;A person picks up a book, flips through the pages, then puts it on a desk. They then open a laptop.\",c048 17.70 26.20;c025 9.80 15.60;c027 2.00 8.00;c030 0.50 7.80;c081 13.10 23.20;c009 13.70 20.40;c026 0.50 18.90;c028 15.00 20.40;c116 11.60 20.50;c052 18.00 25.10;c115 0.40 20.10,29.83\r\nMZOPX,4YWP,Dining room,6,6,Yes,A person is playing on their new laptop and then washes a glass they used earlier.,book;chair;cup;dish;glass;homework;laptop;sink;table;television,\"A person is working on a laptop, then they pick up a glass walk over to a sink and wash it;A person is on their laptop.  The person is viewing the laptop.  The person then gets up, goes to the sink, and begins washing a glass.\",c151 16.80 24.60;c052 0.00 19.20;c111 23.60 37.00;c121 22.30 37.00;c059 0.00 21.70;c011 0.00 24.30;c014 0.00 22.10;c051 0.00 22.10,36.46\r\nVLE11,4YWP,Dining room,6,6,Yes,\"A person is at a dining room table playing with a television remote, they then put the remote down and open up their homework book.\",book;chair;homework;paper;phone;remote;table;television,\"A person is sitting at a table playing with a phone, they then begin to work on homework.;A person is sitting at a table holding a remote control. They change the TV channel, then put the remote down and start working on homework.\",c027 22.20 29.70;c145 22.00 34.00;c011 0.00 34.00;c059 0.00 34.00;c014 22.70 34.00;c016 0.00 15.30;c117 21.20 29.40;c017 19.70 24.90;c015 0.00 24.70;c115 28.80 34.00;c028 21.00 26.90;c009 20.10 24.90;c032 24.50 34.00,33.08\r\nS67WR,0KZ7,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is fixing a vacuum then opens the door to leave.,door;vacuum,\"A person is standing in and entryway fixing a vacuum, they then open a door and proceed to leave.\",c008 24.10 30.00;c136 10.80 26.00,28.75\r\n00SL4,ECB2,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is opening a closet door. The person, smiling, then places a blanket on the shelf.\",blanket;closet/cabinet;clothes;door;shelf,\"A person opens a closet, places a blanket on the shelf, then closes the closet.\",c071 18.00 10.00;c081 18.00 10.00;c008 0.00 2.60;c001 2.40 8.90;c113 1.20 6.50;c112 6.00 10.00;c000 0.30 8.00,8.96\r\nSYMIR,FNK4,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person is standing in the hall undressing after work, taking off their shoes and jacket. This person places the shoes on a nearby towel.\",clothes;door;floor;shoe,\"the person is coming indoors then removing a sweater and hanging it on a doorknob, then removing shoes then taking back the sweater and exiting the room\",c057 12.90 33.00;c154 25.60 32.50;c155 5.30 14.60;c056 16.10 31.80;c002 6.20 13.50;c000 9.30 15.30;c097 0.10 7.10;c006 1.20 7.00;c001 9.30 15.30;c008 0.00 4.80;c126 17.70 31.10;c141 0.30 7.80,35.42\r\nU3VOM,KQI6,Bedroom,3,6,Yes,One person is lying on a blanket by the door when another person throws down some clothes and leaves.,bed;blanket;clothes;door;floor;television,\"A person is laying down on a bed with a blanket watching tv then another person comes and throws a pile of clothes on the floor.;A person is laying in their bed watching television, then a person walks in the room and throws a pile of clothes on the floor.\",c072 0.00 32.00;c001 13.10 23.40;c132 25.10 32.00;c000 9.90 19.90;c132 0.00 32.00;c134 0.00 32.00;c126 14.40 20.20;c003 14.40 20.20;c074 14.40 20.20;c070 7.90 19.10,30.58\r\nQ01UB,0RNU,Garage,6,6,Yes,A person is dressing by putting on a jacket. Then the person puts some shoes next to an open laptop.,clothes;jacket;shoe,A person picks up a jacket and puts it on. Then they take their shoes off and put it on a table.,c155 11.50 20.60;c148 0.00 14.50;c056 12.70 29.90;c054 24.90 32.40;c057 11.00 29.20,32.92\r\nS72J9,3H6W,Laundry room,4,7,Yes,A person drinks a glass of water while closing the dryer door. The person looks out the window.,bottle;cup;door;glass;water;window,\"A person picks up a glass of water and drinks it while closing a door.  A person takes a look out a window.;A person picks up a bottle of water off of the washer and drinks it. They close a cabinet door and walk out of the room. They go to the living room window and look out the window, and then leave.\",c006 3.10 11.50;c106 2.50 12.90;c092 15.50 26.20,28.21\r\n6EU06,ZAWX,Living room,5,5,Yes,\"A person can close a book in the hallway, A person can wash a table in the hallway.\",book;floor;homework;paper;table;towel,A person is sitting at a table. The person is putting away their homework and cleaning off the table.;A person is working on homework at the table. They put their homework away and clean the table.,c026 0.00 23.90;c011 0.00 32.00;c013 20.40 32.00;c012 6.10 21.60;c025 3.80 9.40;c038 20.90 32.00;c145 0.00 8.40;c116 5.50 21.50;c014 0.00 22.90;c030 1.50 6.30;c125 8.40 15.40;c126 8.70 15.70;c149 1.10 7.10;c032 0.00 9.50;c152 6.00 11.10;c035 20.10 25.20;c028 6.70 12.60,30.67\r\n4ZNNP,9Y7F,Living room,7,5,Yes,\"A person is standing in the doorway, while a other person leaves a camera nearby.\",doorway;stairs,A person is leaning in a doorway.  Another person walks past the other person.,,30.58\r\nPVVQS,LTAC,Living room,6,6,Yes,A person walks in the kitchen and turns on the light. The are laughing and begin throwing their shoes.,doorway;floor;hall;light;shoe,A person is walking through a doorway. A person then turns on a light and begins laughing. A person then throws their shoes down the hallway.;A person walks into a room carrying a pair of slippers and turns on the light. The person stands in the middle of the room smiling and then throws the slippers down a hallway.,c053 5.50 10.70;c104 5.00 10.60;c149 7.00 21.10;c058 23.00 29.00;c097 0.00 9.00;c152 7.00 29.00;c126 23.20 29.80;c054 23.40 31.10,30.58\r\nFU2HI,T7C3,Kitchen,6,1,No,A bag of groceries sit on a chair. A sneezing person is working a broom to death trying to sweep out the dusty corner.,broom;floor,A person is sweeping the floor with a broom.;The person is sweeping the floor over and over again.,c098 0.00 37.00;c102 0.00 37.00;c127 0.00 37.00,36.42\r\nD4CHP,Q4IF,Living room,6,7,Yes,A person is sitting down undressing themselves while they cover themselves with a blanket and lie down on a pillow.,blanket;clothes;pillow;shirt,\"A person is sitting on a mat on the floor and takes his shirt off.   When finished removing the shirt, the person pulls over a blanked and lies down on a pillow.;A person is sitting on the floor with a blanket and pillow, they then begin to undress and lay down to sleep.\",,29.58\r\nMI76A,6RE8,Living room,6,4,Yes,A person is lying on the sofa in their recreation room under a blanket and reading a book closes the book.,bed;blanket;book;sofa,A person is laying on a sofa reading a book while covered with a blanket. They then close the book and lay down.,c122 0.00 5.20;c025 0.10 4.20;c134 0.00 33.00;c028 0.00 9.30;c032 0.50 24.10,31.71\r\nWFVD3,L4ZP,Bathroom,7,6,Yes,\"A person standing in the doorway opening, throws a book inside near a laptop.\",book;door;floor;light,A person holds a book in a doorway. They turn the light off and throw the book in a room;A person is walking out of the bathroom with a book and then throws the book.,c025 0.00 12.40;c031 10.20 18.40;c105 8.70 14.30;c097 12.60 20.00;c026 0.00 21.00;c126 15.50 21.00;c027 0.70 5.70,20.29\r\nXHQT1,0RNU,Garage,6,7,Yes,A person is tidying shoes on a shelf in a garage. The person then walks through a doorway and exits the garage.,door;shelf;shoe,\"A person is tidying shoes on a shelf.  The person then walked out a door.;A person is tidying up shoes on a shelf. The person is rearranging the pairs of shoes. The person walks away, opens a door, goes through it, and closes it behind them.\",c053 1.50 26.80;c056 11.80 23.80;c141 27.40 32.40;c054 0.00 5.70;c097 26.40 34.20;c082 0.00 21.80;c008 27.70 33.40,33.67\r\nXECIL,UTJM,Pantry,7,7,Yes,\"A person is eating a sandwich in the pantry, and takes a bag of chips from the cabinet. The person wipes their hands with a paper towel.\",bag;cabinet;chips;food;napkin;sandwich;towel,\"Person eats sandwich, open cabinet, grab food out, pours food on plate, puts food away, grabs napkin, wipe mouth.\",c024 20.00 25.00;c068 16.00 23.00;c061 0.00 29.20;c063 12.20 18.80;c021 17.50 28.20;c024 26.20 32.70;c034 28.50 34.00;c065 0.00 27.50;c068 12.70 19.60;c113 9.90 14.50;c062 5.70 10.10;c020 12.70 21.90;c023 12.00 16.70;c033 23.10 34.00;c035 22.10 27.10;c067 1.50 5.60;c156 2.00 8.80;c112 10.50 17.20;c069 0.10 5.80,32.92\r\nTX020,1TZV,Garage,3,6,Yes,\"A person runs into the garage, eating a sandwich. The person puts on a pair of shoes and leaves.\",chair;doorway;shoe,\"A person runs into a garage and sits down. They put some shoes on and walk out.;person runs into garage, sits in chair, puts on shoes, and runs out of garage\",c150 0.00 7.00;c154 2.00 9.00;c059 4.00 16.00;c055 4.00 16.00;c054 4.00 16.00;c151 8.00 13.40;c097 0.60 5.90,21.54\r\nVAXUU,BYF9,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is seen taking a camera from their closet. They grasp the doorknob and begin closing the closet door.,camera;closet/cabinet;curtain;door;phone;shelf;wardrobe,\"A person moves a curtain and picks up a camera from the wardrobe. The person then leaves the room with the camera, closing the door behind themselves.;A person opens a curtain and gets a camera from a shelf. They then close a door\",c006 13.70 22.00;c015 2.70 22.00;c018 2.20 9.20;c113 0.00 3.20;c097 0.20 5.00,21.00\r\nB9YPQ,YMXV,Bedroom,7,5,Yes,A person is seen fixing a doorknob on a wardrobe. They then begin laughing and start to leave.,door;pockets;wardrobe,\"a person is closing a door to a wardrobe, then putting his hands in his pockets and smiling, then walking to another door and going through it.;The person closed the closet door walk towards the door and walk out the door.\",,30.92\r\nUKCTK,YMXV,Bedroom,5,7,Yes,\"One person takes a broom and a camera from the room and leaves, smiling.\",broom;closet;door;phone,\"A person picks up an item from the bedroom floor then pull their phone out of their pocket and looks at it before slowly exiting the room.;A person picks up a broom off the floor, then checks their phone. They walk into the closet and close the door.\",c015 5.00 32.00;c006 27.00 32.00;c098 1.70 32.00;c097 15.80 32.00,30.88\r\nAZC1I,YA10,Laundry room,5,7,Yes,\"A person is seen fixing a chair in the laundry room. They smile and sit in the chair, pulling out their laptop.\",chair;laptop,\"Person flips chair and tightens screws, sits on chair, and opens computer\",c048 19.00 30.60;c059 20.30 32.00;c151 19.50 27.00;c154 13.80 23.80;c052 24.90 31.80,30.71\r\nQ24KP,9Y7F,Bedroom,6,5,Yes,One person puts a blanket on a table while a other person is laughing next to a cabinet.,bed;blanket;clothes;table;towel,Person A walks into the room and puts a towel away while person B watches person A.;A person is standing in the bedroom. A second person picks up a towel off the bed then sits down.,c009 10.50 18.10;c035 2.90 15.50;c037 2.90 14.90;c033 3.10 16.90;c135 17.10 32.00;c001 10.00 17.10;c034 9.80 17.10;c151 15.80 21.70,30.71\r\nOOWJ9,P3TI,Dining room,6,7,Yes,A person is eating some food while they read a book. The pour a glass of water and start taking a drink.,book;bowl;cup;dish;food;glass;jug;table;water,A person sits at a table and eats from a bowl while reading a book. They pour a glass of water and drink.,c108 15.20 25.90;c106 21.70 33.10;c032 0.00 14.50;c011 0.00 35.00;c107 14.70 35.00;c061 0.00 19.90;c156 0.00 18.20;c109 22.10 34.80;c110 19.20 28.10;c118 0.00 6.10;c109 28.00 34.30,34.00\r\n5Z1CO,R1OT,Bedroom,5,4,Yes,\"A person is playing by trying to juggle the medicine, book, and food they just picked up while tidying.\",bed;book,\"Person tidies bed, sits on it, juggles objects,\",c031 12.60 26.00;c151 4.10 10.50;c135 3.90 10.90;c026 8.40 13.90,24.96\r\nDB4WX,L4ZP,Living room,5,7,Yes,\"A person is playing with a pillow. A person is smiling as the person watches her, leaning on a table.\",pillow,person is playing with a pet,c076 0.00 30.30;c154 23.00 28.30;c078 0.00 29.70,29.71\r\nUBVV7,KFGP,Hallway,6,7,Yes,Person puts blanket in box. Person smiles. Person eats small food item. Person closes box and puts box in closet.,blanket;box;food;something,A person folds a sheet and puts it into a box. The person then takes some food out of a bag and eats it. The person then takes the box and stores it away in a closet.,c075 0.00 8.50;c063 9.90 18.40;c039 19.20 27.10;c156 12.50 25.60;c151 6.70 20.10;c154 25.70 35.10;c042 4.00 38.00;c040 4.90 37.70;c044 4.90 37.70;c041 4.90 37.70;c043 23.90 35.70;c061 11.60 27.90;c062 16.20 28.20,37.17\r\nAGWQA,2Q9D,Laundry room,6,7,Yes,A person walks into a laundry room and throws a towel in the dryer closing the door. The person then fixes the placement of detergents on the shelf.,clothes;door;shelf;towel,A person is throwing laundry in the laundry machine then tidying up a shelf.,c082 5.90 30.50;c034 1.00 7.80;c001 1.00 7.80;c081 30.00 33.00;c005 30.00 33.00;c033 30.00 33.00;c081 10.20 16.40;c005 2.00 8.90;c033 0.00 7.10,32.00\r\nTJBGM,8718,Entryway (A hall that is generally located at the entrance of a house),5,4,Yes,A person is standing with a broom in the entryway.  The person then walking over to grab a book that's nearby.,book;broom;floor;shoes,A person sweeps the floor in the kitchen. They put down the broom and pick up a book and start reading.;The person is sweeping the floor. The person arranges some shoes. The person picks up a book and starts reading it.,c027 19.10 31.00;c032 19.50 31.00;c102 0.00 16.40;c127 0.00 15.90;c026 16.20 31.00;c030 15.60 20.80;c098 0.00 18.20,30.42\r\n0NFT7,5LWB,Other,6,6,Yes,A person is tidying up the garage by putting up some towels. A second person enters the doorway to hand the person a drink. The first person drinks from the glass as they walk out of the garage through the same doorway.,clothes;dish;door;floor;glass;laundry;towel,\"A person is walking and sorting laundry.  Person 1 puts laundry in piles on the floor.  Person two walks into the room holding two drinks and hands person 1 a drink, as person 1 walks out the door.;A person dropping clothes in a line and before exiting the room, Another person enters the room handing the person a drink\",c034 4.10 11.40;c000 0.10 7.40;c003 3.00 9.60;c001 3.10 9.90;c118 13.00 23.00;c126 5.40 9.70;c126 6.70 11.50;c097 11.30 18.50,22.00\r\nAX4EW,18IT,Dining room,6,6,Yes,A person is eating in a dining room and then sneezes. Another person takes a picture of the person sneezing with a camera.,camera;food;phone;picture;table,Person A is taking a picture of Person B while Person B eats good on a table and sneezes.;Person A is taking a picture of Person B and Person B is eating from a plate and sneezing.,c015 0.00 18.00;c156 1.50 14.10;c153 10.30 18.00;c087 0.00 18.00;c061 0.00 13.80;c011 0.00 18.00,16.67\r\nLT2IJ,LTAC,Laundry room,7,6,Yes,\"A person is putting and taking, boxes and pictures from a cabinet.\",book;box;cabinet;picture;shelf,\"A person talked some items from a shelf, flips through a magazine, and replaces the items.\",c043 6.00 14.50;c084 10.30 19.30;c032 14.20 22.30;c082 0.00 38.00;c042 2.50 9.60;c042 25.30 30.80;c081 26.30 31.40;c082 0.00 14.50;c042 12.50 17.40;c081 19.90 26.30;c117 13.80 19.70;c116 19.70 25.20;c115 14.40 25.00,37.12\r\nX0CKA,H8N1,Living room,4,6,Yes,Person is standing looking at a picture on a shelf. Person begins drinking a glass of water.,dish;glass;picture;sofa/couch;water,A person is looking at a picture then takes a drink from a glass.,c084 0.00 14.60;c088 0.00 15.50;c106 12.20 19.00;c118 11.70 19.40;c123 0.00 21.00,19.75\r\nJZ9L4,YMXV,Bedroom,6,7,Yes,A person is seen fixing clothes and sitting on a chair. The person begins holding a towel to put away.,chair;clothes;towel,\"The person is sitting down and starts buttoning up a shirt. When the person finishes buttoning the shirt, the person grabs a white towel. The person then stands up and puts the towel on a bed. The person grabs the chair and moves it out of the way.\",c059 0.00 27.90;c033 16.30 30.60;c148 0.10 15.20;c154 20.20 26.90,31.67\r\n003WS,P6LJ,Home Office / Study (A room in a house used for work),6,7,Yes,A person is grasping some medicine by the doorway.  Then a person started tidying the area near a light.,doorway;light;medicine,A person turns on the camera and opens the door.  The person then opens some medicine and paces it on the table.  The person then readjusts the table and turns off the camera.,,45.75\r\nMLDGN,HR43,Laundry room,5,3,Yes,A person in the laundry room is dressing by putting on some clothes. They see a picture on the laundry machine and start watching the picture.,clothes;picture;sponge,A person fixes the coat they are wearing and then cleans a picture frame with a sponge.,c088 6.10 11.50;c083 6.10 10.70;c084 8.90 19.00,18.04\r\nVPJLN,P6LJ,Living room,5,6,No,A person turns the doorknob and runs in through the entryway holding some clothes.,clothes;door,A person is holding laundry while going in and out of the door using the door know.,c000 0.00 21.60;c141 2.70 12.90;c150 16.40 23.40;c008 1.30 14.30,30.33\r\nCW9VO,LTAC,Living room,6,5,Yes,A person watching the television sneezes and grabs a tissue from the desk.,desk;hair;paper;television;tv,\"A person is standing and watching television while laughing, they then take a paper from a desk.;This person is standing in the living room, watching TV and then picks up a paper towel.\",c131 15.30 25.30;c132 0.00 32.20,34.25\r\nXCUOD,L4ZP,Kitchen,4,4,No,A person in a towel is dressing for work. Another person is eating food at the kitchen table.,bag;chair;chips;clothes;food;jacket;robe;snack;table;trash,\"A person is sitting in a chair holding a bag and eating a snack. They throw an object in a trash can as another person enters the room and takes a snack out of the bag and eats it, and then puts a jacket on and leaves the room.;This person is sitting in a chair eating chips, another person walks in and eats some chips as well, then puts on a robe.\",c061 0.00 26.50;c010 0.00 35.00;c148 20.50 31.80;c009 18.80 28.90;c156 1.70 21.40;c020 0.00 24.50;c063 0.00 14.10;c001 22.00 31.00;c059 0.00 35.00;c011 0.00 35.00;c062 2.90 17.00,34.04\r\nYQOPM,P6LJ,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person throws some clothes into a box. The person stands there for a moment, then removes the clothes and begins to fold them.\",box;clothes,A person is putting clothes from a box into a closet.,c001 3.40 19.20;c044 15.50 22.50;c002 0.00 3.20;c004 4.50 48.00;c000 0.00 20.40;c003 4.80 18.10,46.54\r\nVJ3B5,KFGP,Bathroom,7,7,Yes,A person is in the bathroom and there is an empty box in the sink.  The person picks up the box and throws it to the floor while laughing.,box;floor;sink,a person walks into a room.  The person takes a box from the sink and throws it to the floor,c040 5.10 10.10;c045 6.00 10.20;c126 6.00 10.20;c149 0.00 26.00;c043 5.20 10.10,24.50\r\n1D31Z,T7C3,Pantry,6,6,Yes,\"A person is fixing a sandwich in the pantry. The person laughs as they take a drink from a glass of water, then leaves through the doorway.\",bag;bread;cup;dish;doorway;food;glass;groceries;sandwich;shelf;water,A person is taking bread out of a bag and  drinking from a glass of water.,c097 33.80 39.90;c106 28.60 35.30;c020 0.00 16.50;c130 10.60 17.30;c022 10.40 17.50;c061 0.00 39.70;c081 10.80 17.30;c063 0.00 8.20;c067 26.30 39.90;c023 0.00 15.00;c066 11.90 30.30;c118 26.40 39.90,38.67\r\nLWP5F,UTMU,Garage,6,7,Yes,A person is seen grasping a sandwich eating it. The person begins opening a box and pulls out some clothes.,box;clothes;food;sandwich,A person is eating a sandwich.  The person is taking some clothes out of a box.,c040 13.40 32.00;c044 15.90 25.20;c065 0.00 17.60;c156 0.00 16.10;c041 14.20 20.00;c067 0.00 17.30;c002 14.40 32.00,30.54\r\nHDDU0,XXN8,Kitchen,6,6,Yes,\"A person is grasping their mug of coffee as the person works on their homework. Then, laughing, the person stands and walks to the refrigerator.\",cup;letter;paper;refrigerator,The person was holding a cup of coffee and reading a letter and walking in the kitchen.  The person was apparently getting ready for the work day.,c115 6.00 14.20;c107 0.00 36.00;c145 10.20 20.10;c117 4.90 14.90;c143 28.90 35.90;c116 14.80 22.90,35.21\r\nNMG2Z,DXDI,Basement (A room below the ground floor),4,7,Yes,\"A person is in a basement undressing from their clothes, they then start snuggling with their shirt by a closed door.\",clothes,A person takes off some clothes,c155 0.00 14.00;c000 10.70 32.00,30.92\r\nTU3IG,H8N1,Kitchen,7,7,Yes,A person is holding a box while taking some medicine.,box;cup;drink;food;glass;medicine;table,\"A person walks into the kitchen and sets a drink on a table. The person then opens a box and puts medicine in their mouth, and then picks up the drink and walks out of the room;a person eats food out of a box then takes a drink\",c041 0.30 10.60;c129 6.60 11.90;c106 10.10 16.70;c156 6.40 11.90;c128 0.30 18.10;c109 0.00 4.60;c044 0.70 12.60;c107 0.00 3.80;c110 8.70 18.10,19.08\r\nC1LJS,KFGP,Bedroom,6,7,Yes,\"A person opens the bedroom door, walks through, closes it, then lies down on the bed.\",bed;clothes;door,The person came into the room and got into the bed to rest.,c008 0.80 7.70;c134 14.80 32.00,31.42\r\nWFWTU,1TZV,Garage,7,7,Yes,\"A person runs into the garage, eating a piece of food. The person runs out, closing the door behind them.\",door;food,\"A person is running into a garage eating some food, they then leave and close the door behind them.\",c061 0.00 23.00;c006 18.30 23.00;c150 0.00 4.80;c156 0.00 17.90;c097 0.00 4.60,22.29\r\nKU2T0,9Y7F,Dining room,5,5,Yes,A person is snuggling with a pillow while another person is lying next to a book.,chair;pillow;table,One person is sitting in a chair tossing a pillow.  The other person is sitting in a chair with their head on the table.;a person tosses a pillow around in a chair as another sleeps on a table,c076 1.00 8.70;c080 0.00 5.20;c059 0.00 8.20;c011 0.00 25.90,30.42\r\n9WX7N,YMXV,Stairs,7,7,Yes,\"A person is sitting on the stairs with a pillow in their lap.  The person stands up and looks in the mirror, smiles, then sneezes.\",blanket;mirror;pillow,\"A person is sitting on the stairs holding a pillow and making hand gestures.  They appear in front of a mirror, sneeze and then use their hands to clean and prepare themselves.\",c096 14.80 33.00;c076 0.00 16.70;c153 17.30 24.60;c070 0.00 16.70,32.92\r\n8W0XJ,YMXV,Living room,5,5,Yes,A person closes the garage window and smiles. The person takes a camera from the shelf and snaps a picture.,camera;closet/cabinet;cupboard door;phone;picture;shelf;window,A person is closing some cupboard doors and then takes a photo of them with a camera.;A person looks out and closes a window.  Then take person takes a picture with a camera.,c087 12.00 33.00;c015 11.40 33.00;c154 10.30 16.30;c089 0.00 9.50;c018 13.90 33.00;c112 0.00 8.70;c016 13.90 33.00,31.75\r\nIUW9N,2Q9D,Bathroom,1,1,No,\"A person walks into the bathroom, closing the door behind them. The person looks in the mirror and adjusts their clothes.\",clothes;door;hair;hat;mirror,Someone walks into the bathroom and closes the door behind them. They look into the mirror and fix their hat.,c006 0.10 5.90;c096 3.20 31.00;c148 6.20 23.50;c004 17.60 28.60;c144 8.20 13.50;c097 0.00 5.80,30.29\r\n3H0PT,OUKK,Living room,6,7,Yes,A person is sitting at a desk eating food. They get up and leave the room closing the door behind them.,chair;desk;door;food;laptop,A man sitting at a desk with a laptop on a the keyboard tray gets up and leaves through a door.,c008 10.00 17.30;c061 0.00 4.10;c156 0.00 13.00;c154 8.30 13.40;c059 0.00 13.00;c141 10.50 16.40;c051 0.00 12.30;c097 13.30 18.00,17.42\r\n9JIHR,1OHU,Hallway,6,7,Yes,A person is lying on the floor on a hallway kicking a door. The person then gets up and walks towards a box in the hallway.,floor,A person is laying on the floor and kicking a door they stand up and walk over to a box,c124 0.00 16.70;c154 13.20 20.60,24.88\r\nW6QUC,YMXV,Living room,4,6,Yes,One person washes the window with a towel as another lies on the floor fixing a broken chair.,chair;closet/cabinet;floor;towel;window,A person lying on the floor is holding a chair as another person uses a towel to clean a window.,c124 0.00 32.00;c033 3.30 22.20;c038 3.10 20.50;c091 3.40 12.30;c114 2.50 27.80,31.00\r\nXBXKO,OUKK,Laundry room,3,6,Yes,A person is watching a video on their while washing clothes. The person takes some clothes out of the dryer and puts them into a box.,box;clothes;phone/camera;video,\"Person stands in laundry room, picks up smartphone, watches video on smartphone, grabs clothes from dryer.\",c002 30.30 36.70;c001 31.10 39.10;c087 2.00 13.00;c015 0.00 32.70;c016 0.00 32.70,39.96\r\nWYHPH,UTMU,Kitchen,6,5,Yes,A person laughing at a camera while awakening next to a cabinet.,cabinet;camera;floor;phone,\"A person is sitting in the kitchen, leaning against the cabinets. The person stretches and reveals they are holding a camera. The person laughs at the camera, and then stands up.;a person sits on the floor then looks at a camera\",c015 2.70 17.00;c154 11.50 17.00;c125 0.00 15.30,15.75\r\nGLH5S,P6LJ,Living room,7,,No,\"One person stands, opens a jar of medicine and sneezes, then puts it in a desk and closes it.\",chair;cup/glass/bottle;desk;medicine;table,\"A person sits in a chair. They stand up and take something from a table. They sneeze twice and put the thing back on the table;A person sits in a chair, stands up, examines a bottle of medicine, sneezes, then places the bottle on a table.\",c128 5.40 16.20;c153 15.70 23.00;c059 0.40 5.50;c009 9.50 14.60;c109 23.70 29.50;c107 14.10 19.30;c154 4.50 9.80;c109 20.70 25.20;c107 4.80 29.00,29.50\r\nUU5XI,XARO,Bathroom,7,7,Yes,A person is fixing the doorknob.  Then a person is taking groceries out of the room.,bag;doorknob;doorway;groceries;tool,\"A person is fixing a doorknob with a tool. The person picks up a bag and walks through the doorway.;A person is fixing a doorknob, then picks up their tools and walks away.\",c140 0.00 25.70;c022 26.20 31.00;c097 27.20 31.00;c020 26.10 31.00,30.33\r\nPK2F0,RJOM,Bedroom,7,7,Yes,\"A person walks into the bedroom holding a stack of clothing, they put the clothing down walk back to the door and close it they put away the clothing in the wardrobe and then lay down on the bed.\",bed;closet;clothes;door;shelf;wardrobe,\"A person is opening a door holding a pile of clothes then proceeds to put them away in a closet, they close the door and lay down on a bed.\",c006 11.90 19.20;c008 3.20 9.60;c113 3.30 10.20;c000 0.20 12.00;c001 0.00 11.40;c134 17.20 25.00;c097 0.00 5.00;c081 5.10 11.80;c112 8.40 14.00,24.12\r\nPXKFK,D0RU,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,A person is smiling at the light outside the door.  Then a person is taking groceries inside that were in a bag by the door.,bag;door;groceries;hallway,\"A person is walking through a hallway and then goes through a door way to pick up a plastic bag with stuff inside, the person then reaches into the bag.\",c023 22.80 37.00;c020 26.30 37.00;c021 26.00 32.70;c097 28.10 37.00,35.58\r\nJNLCW,A8P9,Kitchen,6,5,Yes,\"A person is eating a sandwich, grasping a cup of coffee, while trying to work on a laptop.\",coffee;glass;laptop;sandwich,\"This person picks up a coffee cup, then takes a bit of a sandwich.\",,25.25\r\n7AH3L,1TZV,Dining room,4,7,Yes,\"A person is walking around a table, then lying on the floor, then using a vacuum and finally taking off shoes in a dining room.\",floor;table;vacuum,Person walking around the room and walk completely around the table lay on the floor gets up and began to vacuum.,c137 21.10 34.00;c124 9.70 23.60;c154 13.40 21.60;c127 20.60 34.00,33.46\r\nC41G7,3531,Living room,5,5,Yes,\"A person is tidying the hallway with a broom. They stop, and start playing with a television.\",broom;floor;remote;television,A person is dusting their living room. They put the duster down and then pick up a remote and start changing the TV channels.,c132 2.80 9.30;c098 9.00 21.90;c099 10.80 23.30;c101 10.90 24.40;c102 22.40 29.20;c127 0.00 3.10,31.08\r\nOOOQT,8718,Kitchen,5,7,Yes,\"The person tidying the refrigerator stands near the doorway holding the door open, grasping at food.\",door;food;refrigerator;shelf,A person is standing in front of the refrigerator looking through the food on the shelves.;A person stands in the doorway of a refrigerator holding on to the door and moves food from shelf to shelf.,c062 0.00 31.00;c063 0.00 31.00;c082 1.30 31.00;c143 0.00 31.00,29.79\r\nO0C2Z,KQI6,Kitchen,5,2,Yes,A person is throwing food in a sink and then holding a broom in a kitchen.,broom;dish;doorway;food;light;sink,\"A person turns on a light, rinces some dishes, then walks around spinning a broom.\",c100 16.50 22.10;c119 0.00 19.70;c104 2.90 33.00;c121 10.80 18.70;c119 7.20 13.50;c097 0.00 6.40;c098 16.60 32.90;c104 3.40 7.80,31.54\r\nOEBAH,RXM9,Kitchen,6,6,Yes,A person is walking along the hall holding a pair of shoes for playing golf and a towel.,hair;shoe;towel,A person is walking in their kitchen holding a towel and shoes.;A person walks into the kitchen holding a towel and shoes. They pace back and forth.,c053 0.00 9.20;c033 0.00 22.80;c144 10.00 15.70,30.79\r\n17AZ5,RXM9,Kitchen,6,6,Yes,\"A person is dressing while walking down the hallway. The person sneezes, then takes out of bottle of medicine. The person turns out the light and leaves the hallway.\",cabinet;clothes;counter;door;jacket;light;medicine;shelf,\"A person takes a jacket off the counter and puts it on.  Then the person opens a cabinet, takes out medicine, and sneezes.;A person walks through the kitchen and picks up a sweater from the counter. The person then puts on the sweater and goes to the cabinet. The person opens the cabinet door, takes a bottle of medicine from the shelf, and sneezes. The person then turns off the light.\",c112 15.70 22.40;c128 16.30 31.50;c148 4.60 15.30;c153 10.50 15.30;c113 13.50 19.80;c002 0.80 8.30;c008 13.30 19.70;c141 13.50 22.40;c001 4.60 14.60,31.54\r\nYPZQ2,28B0,Hallway,7,7,Yes,\"The person is standing in the hallway with bags of groceries, while another person takes some of the groceries and leaves through the door.\",bag;doorway;groceries,A person is holding bags in a doorway while another person comes in and takes a bag then they both leave.,c020 0.00 27.00;c023 9.30 15.50;c097 7.80 12.70,26.33\r\nMMKKS,RXM9,Bedroom,6,6,Yes,\"Person of struggling to tidying up the hallway, by throwing stuff off the glass table.\",books;box;papers;shelf;table,A person in a small room throwing stuff off of a shelf.The boxes are all over the floor .The person continues to throw more boxes on the floor off the shelf.;a person throws stuff off a table;A person empties shelves by throwing or tossing everything off of them onto the floor.,c082 0.00 32.00;c043 16.70 22.90;c045 19.00 23.50;c042 26.00 30.60,30.88\r\nBWKJB,ZSRZ,Hallway,5,7,Yes,\"A person takes a blanket from a chair and laughs as they fold it. The person gets distracted by their phone, and begins playing with it.\",blanket;chair;phone;towel,The person is in a hallway folding towel and placed in chair.,c070 0.00 11.00;c071 5.10 11.30;c075 0.00 11.10;c015 7.30 18.00;c016 8.20 18.00;c073 0.00 4.40;c034 5.80 11.40,17.33\r\n7OPHI,KFGP,Other,4,6,Yes,\"A person opens their laptop and begins watching a video. After a moment, the person closes their laptop and grasps the doorknob.\",door;laptop;mouse;table,a person opening a laptop and checking their email,c046 25.00 34.00;c048 0.00 7.30;c052 2.50 29.10;c008 30.10 34.00;c014 0.00 34.00,33.04\r\nR0207,UTMU,Hallway,4,7,Yes,A person in the hallway lying on the floor. The person begins working on the laptop begins eating a sandwich at the doorway.,chair;doorway;floor;food;laptop;sandwich,A person is laying on the floor working on a laptop while eating a sandwich.,c124 0.00 34.00;c052 0.00 34.00;c065 6.00 34.00;c156 6.00 34.00;c068 28.40 33.90;c063 6.10 12.50;c059 0.00 5.80;c062 29.40 34.00;c067 14.10 19.50;c061 7.60 33.60;c069 5.50 12.10,33.21\r\nU75AZ,25TD,Laundry room,4,6,Yes,A person is undressing in the laundry room.  The person grasps the side of a chair to steady their balance and knocks a book onto the floor.,book;chair;clothes;floor;scarf;shoe,The person is taking off a scarf and a pair of shoes. The person knocks a book on the floor.;A person removes a scarf and their shoes.,c001 9.00 14.00;c126 16.00 21.00;c056 12.00 26.00;c057 12.00 26.00;c155 4.40 26.90,29.04\r\nMIV2M,HJJ4,Living room,5,7,Yes,A person opens a door and walks into their living room holding a bag. They pour them self a drink and sit on the sofa .,bag;chair;couch;door;glass;pitcher;sofa,A person walks through the door and closes it behind them as they enter the room. The person is holding a bag. They set it down on a chair and They pour a glass of water out of a pitcher. And then they sit down on the couch holding the glass.;A person opens a door and walks through and places a bag on a chair. The person then pours a glass of water and then sits down on a sofa.,c006 1.50 6.50;c020 0.00 8.80;c123 18.00 23.40;c151 18.00 23.40;c097 0.00 3.00;c008 0.00 4.30;c024 6.40 11.30;c059 17.90 25.00;c108 9.70 18.90;c022 6.40 10.80,24.38\r\nHXSMP,HJJ4,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person walks into the office, closes the door, and smiles into the mirror.\",door;mirror,A person walks into a room and closes a door. They then look at them self in the mirror on the back of the door and smiles.,c096 6.60 15.00;c006 2.80 10.40;c152 7.40 15.00;c097 1.00 6.60;c094 7.50 15.00,13.50\r\nOVICR,XXN8,Bedroom,4,6,Yes,A person is fixing a phone.  Then a person is sneezing while they put their homework in a pile.,bed;case;notebook;paper;phone,A person is taking of the case of their phone while sneezing then they begin to sort some notebooks.,c116 24.50 30.50;c015 0.00 20.50;c016 0.00 14.90;c153 11.30 21.30;c135 0.00 31.00;c115 18.70 30.70,30.50\r\nQGHR6,3531,Living room,6,6,Yes,A person in the living room is undressing by taking their jacket off. They begin eating some food and then take a broom that is lying by the window and placing it on the ground.,clothes;coat,A person is holding a coat,c000 0.00 3.00;c004 0.00 3.00,2.33\r\nZ3DBQ,2Q9D,Living room,6,6,Yes,Person opens door to apartment.  Person turns on the light.  Person carries bags of groceries up the stairs.  Person gets to the top of the stairs and throws down the bags of groceries.  The person lets out a big smile.,bag;door;groceries;stairs,A person walks into the house holding a bag. They walk up the stairs with the bags and then throw them over the railing onto the floor.;A man opens a door and enters a home. He has two bags in his hand. He climbs up the stairs and throws the bags over the railing.,c024 15.10 22.80;c006 4.70 10.70;c152 18.40 25.40;c020 2.70 22.40;c008 0.40 8.70;c130 14.80 22.40,26.67\r\nSL9ZD,2Q9D,Stairs,6,6,Yes,The person holding the box was working on setting up a chair on the second floor.,box;chair;floor,\"A person puts a box on the floor, sits down and fixes a chair.  The person then stands back up, picks up the box and moves the chair one more time.\",c125 4.70 18.70;c040 0.00 4.70;c042 0.00 5.50;c043 14.00 22.20;c151 3.60 10.50;c154 14.60 22.80,30.38\r\nAZZVK,2Q9D,Stairs,6,6,Yes,A person is tidying the house by sweeping a broom across the stairs. They are standing on the stairs with a light hanging above them.,broom;floor,A person sweeps the stairs with a broom.;A person is sweeping the stairs.,c098 0.00 32.00;c102 0.00 32.00;c127 21.30 32.00,30.67\r\nFO2RD,1OHU,Garage,7,7,Yes,A person smiles as they work on homework at a table. The person eats from a bag of chips.,chair;drawing;food;paper/notebook,A person is sitting down drawing while eating food.,c059 0.00 30.00;c061 0.00 30.00;c156 0.90 18.60;c145 27.20 30.00,29.04\r\nMS3E8,C7O9,Pantry,6,7,Yes,\"A person smiles as they walk into the pantry, carrying a holding a box. The person sets the box down on a table, and begins laughing as they put the groceries away.\",box;food;groceries;pantry;shelf,A person walks into the kitchen pantry and starts putting groceries away from a box.,c130 2.80 31.00;c044 3.10 8.20;c044 8.30 13.60;c044 12.60 17.40;c062 5.40 10.50;c062 9.80 15.00;c040 0.00 7.00;c081 0.00 31.00;c042 0.00 6.40,30.12\r\n1X765,PKND,Laundry room,5,7,Yes,\"A person is sitting in their laundry room, eating a sandwich and playing with their phone. The dryer finishes spinning and they walk to it to gather up all their clothes.\",chair;clothes;food;phone;sandwich;towel,A person is sitting and eating a sandwich while playing with a phone. the person then stands and removes clothes from a washing machine.,c016 1.50 29.50;c067 0.00 28.30;c156 0.00 7.20;c015 0.00 38.00;c065 0.00 27.00;c002 30.00 38.00;c154 24.00 29.00;c059 0.00 28.70;c033 31.20 38.00;c061 0.00 38.00;c005 30.40 38.00;c035 29.90 38.00,36.79\r\nRGHXS,4I2W,Kitchen,6,6,Yes,A person is laughing on the phone while washing a glass,cup;glas;phone,A person is talking on the phone while washing a glass cup.,c015 0.00 30.00;c019 0.00 30.00;c111 0.00 30.00,29.00\r\nVG9II,XXN8,Bedroom,2,5,Yes,A person is drinking coffee and scoots a chair to them. It has a pillow on it and the person puts their feet up to take a break.,chair;coffee;cup;dish;pillow,A person sits in a chair and drinks from a cup.  The person rests back.,c106 3.00 18.40;c059 1.60 31.90;c151 0.10 5.60;c154 27.20 32.20;c118 1.10 19.20;c120 0.40 5.20,32.33\r\nEN80R,AH2J,Kitchen,6,6,Yes,\"A person is cooking on a stove, then the person starts taking medicine to help with a sickness.\",food;medicine;spoon;stove,\"A person is cooking on a stove, they sneeze and reach over and take some medicine off a shelf and drink some.;A person is cooking at a stove, they then begin to sneeze and take some medicine off a shelf and take some.\",c128 7.70 13.90;c129 9.60 20.40;c147 0.00 4.00;c153 0.90 8.00,26.46\r\nHIOY0,D0RU,Home Office / Study (A room in a house used for work),5,4,Yes,A person wakes up on the sofa and takes the pillow out from under their head and throws it on the floor.  The person turns on the television and laughs at what's on it.,floor;head;pillow;sofa;television,\"There is a person laying down on a coach. Then they get up and leave the pillow on the ground, and then turn on the TV.\",c132 27.70 35.70;c123 10.90 16.60;c078 0.00 13.10;c149 32.50 37.00;c131 31.90 37.00;c122 0.00 14.80;c126 14.20 20.00;c080 14.20 20.00;c154 10.90 17.70;c146 0.00 12.80,36.42\r\nLZ07A,XXN8,Bathroom,7,7,Yes,\"A person is dressing as the person sits on the chair. Then, standing, the person reaches for their bag and leaves the room.\",bag;chair;clothes;jacket,\"A person puts some clothes on, and zips it up. A person takes their purse, stands up and walks away.;A person is putting on their jacket and standing up, before leaving the room.\",c020 18.80 30.30;c148 0.00 4.50;c059 0.00 21.50;c154 17.50 24.10;c148 0.70 16.00;c001 0.70 16.00;c023 19.40 28.40;c000 0.00 22.00,31.71\r\nXV8CH,ZAWX,Kitchen,6,6,Yes,\"A person is cooking at the stove, taking a spoon out of a drawer.  Another person walks in the door and puts their keys on the table.\",doorway;food;matches;spoon;stove;table;window,A person is cooking food at a stove while another person walks by and sets something on a table then walks out.;Person light a stove with a match then walk over and get a spoon another person walks out the door.,c009 19.50 26.00;c147 0.00 12.60;c097 16.80 21.60;c092 22.40 29.00,28.21\r\nJCKRL,DXDI,Recreation room / Man cave,5,7,Yes,\"A person is walking through a doorway and sneezing, then drinking coffee in a recreation room / man cave.\",coffee;cup;doorway;table,A person walks in the room and pulls a coffee cup off a table stands in the room drinking for a moment before replacing the cup on the table.;person walks in through a doorway then grabs a cup of coffee,c106 5.70 33.70;c109 32.00 36.40;c107 4.10 36.00;c110 3.20 36.60;c097 0.00 7.80,35.96\r\nRANB1,DJ17,Bedroom,6,6,Yes,A person is undressing in the mirror while a other person is lying in bed.,bed;chair;clothes;mirror;pillow,\"A person sitting in a chair gets undressed while looking in a mirror. They throw their clothes on the bed.;A person is sitting in a chair in front of a table and mirror, taking off a shirt. The person then puts the shirt on a bed.\",c096 0.00 34.00;c059 0.00 34.00;c155 0.00 22.00;c003 19.40 25.90;c001 20.70 25.90;c078 19.30 33.60;c134 18.30 34.00;c000 13.00 25.60,32.67\r\nVIKQG,54JK,Living room,7,7,Yes,A person runs into the living room and takes a pair of shoes from under a desk.,shoe,A person runs into the room picks up shoes and runs back out,c056 11.80 20.00;c150 9.50 20.00,19.08\r\nIR7CA,C7O9,Bathroom,5,7,Yes,A person is seen taking a broom to sweep the bathroom. They begin sneezing and start looking inside of a nearby cabinet.,broom;cabinet,A person sweeps a bathroom while sneezing before going through a cabinet.,c102 0.00 15.60;c113 8.20 15.00;c153 2.70 13.20;c100 0.00 4.60;c099 0.00 15.00;c114 11.50 28.50;c098 0.00 14.70,30.25\r\nK2L7F,BPRF,Bathroom,7,6,Yes,\"A person brings a broom into the bathroom.  The person sneezes violently three times.  They then lean the broom against the doorknob of the bathroom door, and they lie down on the floor of the bathroom in order to catch their breath from the sneezing.\",broom;door;floor,\"A person is sneezing while carrying a broom, then lies down on the floor.\",c124 14.30 32.00;c098 0.00 16.00;c153 3.00 14.00;c097 3.40 9.30,31.08\r\nJNWX7,G6WD,Kitchen,5,5,Yes,A person grabbing a drink out of the refrigerator. The person closes the door and pours the drink into a glass. The person leaves the glass on the counter.,cup;door;glass;refrigerator;table,A person is walking to the refrigerator and pouring a glass of water then puts it on a shelf.,c108 9.90 36.60;c143 1.90 8.20;c006 37.00 42.80;c109 32.30 39.20;c107 0.10 49.30;c142 36.70 42.80,51.58\r\nWLOCV,5LWB,Bedroom,6,6,Yes,A person is playing peek-a-boo with another person in front of a mirror. They then take selfies in front of the mirror with a camera.,doorway;mirror;phone;picture,\"There are two people in this video, one is covering their face while looking into a mirror and the other is holding a camera, holding it backwards while taking a picture of both of them.\",c097 11.50 18.90;c015 16.30 35.00;c087 20.00 35.00;c096 15.60 35.00,34.08\r\n94KP4,QB52,Bedroom,4,5,Yes,\"A person is standing in the bedroom eating a piece of fruit , they start looking on the table , they turn on the light so they can see better they pick up a book . Smile and leave the room .\",book;dish;food;light;table,\"A person stands in a room eating some food.  They put the dish down on a table then take a light, turn it on and shine it around the room.  They pick up a book off the bed.;Person walking with a dish in hand eating with a spoon put dish on the table uses a flashlight to shine on a item\",c105 16.10 28.10;c009 7.90 12.90;c156 0.00 12.50;c118 0.00 13.20;c119 7.60 13.50;c104 13.90 19.30;c061 0.00 12.00,30.29\r\n1Y5H7,YA10,Laundry room,7,7,Yes,A person is leaving the vacuum in the laundry room.  The person then then starts lying towels down.,clothes;laundry basket;vacuum,A person is putting a vacuum cleaner near the washer and putting clothes in a laundry basket.,c000 9.10 16.30;c001 12.00 22.20;c137 0.00 9.10;c138 2.60 9.40;c004 12.20 29.60,30.83\r\nKW4Y1,ID9V,Hallway,3,6,Yes,\"A person is undressing, then putting on clothes, and finally cleaning a mirror in a hallway.\",clothes;coat;doorway;mirror,A person walks in to  hall way takes their coat off and puts it back on and pulls the hood up.The person wipes a mirror off in a hall way.,c095 19.70 33.00;c096 4.40 34.70;c148 5.90 26.30;c155 0.00 11.10;c097 0.00 4.10;c000 2.00 17.30,34.38\r\nWYYUD,9Y7F,Bedroom,7,7,Yes,\"A person is undressing in bed. Smiling, a person is taking their clothes and putting them in the hamper.\",bed;clothes;robe,\"A person is laying in a bed and gets undressed and throws their robe.;A person awakens from bed, sits up, undresses, then throws their clothes on a rack.\",c134 0.00 13.40;c133 2.50 15.10;c146 2.50 15.10;c003 25.10 31.90;c135 11.40 35.00;c155 9.80 30.10;c155 26.70 35.00,33.58\r\nGKH4A,PKND,Living room,6,7,Yes,\"A person is using a vacuum to clean the foor. Then the person is tidying the sofa, taking a bag from the couch and setting it on the floor.\",bag;blanket;floor;food;sofa;vacuum,Vacuuming the floor in living room. the one is straightening up the sofa.  then takes food out of a bag,c137 0.00 9.60;c021 22.90 29.10;c063 24.80 33.00;c023 14.40 25.20;c022 21.50 27.90;c070 7.20 16.70;c020 14.10 27.70;c075 6.70 16.80,31.50\r\nFLCZA,Z755,Stairs,1,7,Yes,A person is lying on a blanket after drinking a glass of wine.,bed;blanket;cup;dish;glass,A person is sitting on a bed and then drinks from a cup and then lays down on the bed.,c106 0.00 8.60;c107 0.00 8.60;c119 4.10 8.90;c134 5.10 11.60;c135 0.00 11.10,10.67\r\n1BUFQ,PO5L,Living room,7,7,Yes,\"A person is walking back and forth in front of a television. They start sneezing, so they stop and stare at the ceiling to stop the sneezes. It works, so they smile while they sit and draw a picture.\",floor;homework;paper;television;televison,A person walks back and forth and then looks up. Then they take a piece of homework and write on it. Then they get back up and leave the room.;A person is walking in front of a televison back and fort then looking up and sitting on the floor to work on homework.,c132 0.00 41.00;c145 21.60 36.90;c125 22.80 38.50;c154 32.70 39.50;c151 22.60 28.80;c115 21.20 39.70;c117 20.60 25.40;c153 9.10 17.30,40.25\r\nKW3BO,DXDI,Laundry room,6,7,Yes,Person is eating box of candy and drinking coffee then starts laughing.,box;cup;food,\"A person is standing in front of the laundry room eating something from a box, and taking a drink of water from a cup. The person is moving back and forth and smiling.;A person eats some food and drinks something near a laundry machine\",c040 0.00 17.60;c106 6.60 13.10;c109 10.30 15.30;c156 0.00 6.80;c061 0.00 4.10;c042 12.60 17.30;c044 0.00 5.20;c107 5.90 15.00;c110 4.70 10.30;c149 11.00 23.90;c063 0.00 6.50;c152 11.20 28.50;c062 12.90 18.00,28.00\r\nCO1S9,DXDI,Pantry,7,7,Yes,\"One person walks into the pantry, grasps a box and a bag, then runs out.\",bag;box;food,A person removes a box and a bag from an open cabinet before leaving the room.,c043 1.70 8.00;c023 3.90 10.00;c150 6.70 12.70;c063 2.60 7.40;c061 2.80 12.90,12.88\r\nN588B,WQ8Z,Hallway,4,6,Yes,\"A person is in a hallway putting a camera in a box, then they close the box and carry it out the doorway.\",box;camera;door,A person is closing and carrying a box through a doorway.,c097 17.80 23.60;c039 4.90 17.90;c040 14.00 23.30;c043 12.90 23.60;c008 17.00 22.80,25.12\r\nZS1P1,T7C3,Home Office / Study (A room in a house used for work),5,6,Yes,One person sits working on a laptop laughing. A book is next to the laptop.,book;chair;laptop,A person works on a laptop while occasionally looking at an opened book.,c047 12.40 19.60;c052 24.60 35.20;c026 31.80 36.80;c032 31.80 37.80;c152 18.60 23.80;c059 0.00 41.00;c029 1.00 6.00,39.88\r\n2H5YP,D0RU,Bathroom,6,7,Yes,\"A person is tidying up the bathroom. The person puts something into the medicine cabinet, closes the cabinet door, then looks into the mirror for a moment.\",cleaning brush;floor;hair;mirror;toilet,The person cleaned the floor around the toilet with a brush and water. Then the person checked their hair in the mirror.,c096 50.60 60.00;c144 54.40 60.00;c127 4.50 29.20,59.04\r\nI6AZD,8718,Living room,2,6,Yes,\"A person is sitting on a sofa covered with a blanket. The person stands, removes their shoes, and lays down.\",blanket;shoe;sofa,A person readjusts a blanket.  The person the gets up and takes off their shoes then lies back down with the blanket.,c072 0.00 12.50;c057 13.00 19.40;c122 20.80 31.00;c123 0.00 12.80;c151 18.60 24.80;c154 5.80 13.40;c070 0.00 11.90;c071 6.10 13.90,30.00\r\n99DTF,6NQX,Stairs,7,7,Yes,A person is walking up the stairs while grasping a box. They pull a phone from the box.,box;phone,A man walks upstairs carrying a box and then looks at his phone.,c040 9.80 17.00;c015 11.40 17.00;c016 6.20 17.00,15.83\r\nQDINO,KFGP,Dining room,7,7,Yes,A person is lying on a pillow and then sneezing on dishes on a table in the dining room.,blanket;chair;pillow;table,A person is sitting at a table snuggling with a pillow. The person sneezes.,c078 0.00 17.70;c011 0.00 26.00;c153 19.30 25.70;c070 0.00 15.80;c059 0.00 26.00;c072 0.00 15.50;c071 12.00 17.60,25.42\r\n3CPVF,R1OT,Recreation room / Man cave,5,7,Yes,\"After tidying up, a person grasps for their wine glass as they sit down on the sofa holding their phone.\",bed;blanket;cup;glass;phone;sofa,A person came into a room has spread a blanket down a wooden sofa and decided to browse a cellphone.,c015 0.00 31.00;c122 14.80 31.00;c107 14.20 31.00;c151 9.30 15.10;c075 0.90 15.10;c016 10.60 31.00;c134 16.00 31.00,29.96\r\nQIQXR,P6LJ,Dining room,5,7,Yes,\"A person puts on shoes, then grasps the vacuum and begins cleaning the floors.\",clothes;floor;shoe;vacuum,Person putting on pink tennis shoes before vacuuming the rug around the room and under the table.,c137 15.80 63.70;c055 3.00 15.90;c127 26.10 61.40;c001 2.30 16.50,66.00\r\nSXYLN,YA10,Garage,6,7,Yes,A person in a garage is holding groceries and a sandwich. They put the bag down and start eating the sandwich. They throw the sandwich wrapper in the garbage and leave.,bag;floor;food;groceries;sandwich;trash can,\"A person is standing in a garage. The person throws a bag of groceries on the ground, eats a sandwich, and then throws the sandwich in the trash. The person then leaves the room.\",c065 3.40 23.60;c020 0.00 5.40;c024 19.90 25.70;c156 3.50 23.50;c130 0.40 6.20;c022 0.20 6.30;c126 0.00 6.60;c023 27.90 31.00;c067 27.90 31.00;c061 27.90 31.00,29.88\r\nI6B5D,HR43,Bathroom,4,6,Yes,A person is grasping at a towel while washing their teeth and reading homework.,bottle;clothes;clothing;paper;toothbrush;towel,A person is holding something in right hand and shaking it continually.  The person is holding a paper and article of clothing in the right hand.;A person brushing their teeth holding some papers.The person is reading a paper and holding a towel.The person starts to put the toothbrush back.,c000 0.00 39.00;c115 0.00 39.00;c033 0.00 39.00,38.08\r\nMJX48,CO1W,Stairs,4,7,Yes,\"A person puts a pair of shoes into a bag, then throws the bag up the stairs.\",bag;shoe;window,A person is putting shoes in a bag on the stairs. He throws the bag as well.,c024 18.50 23.50;c054 6.20 15.30;c058 8.20 14.40;c023 2.40 8.80;c092 1.00 6.40;c053 8.30 13.50;c020 3.20 23.10;c056 6.30 14.40;c021 4.40 9.90;c022 18.30 23.80,30.25\r\nYMGGV,I2IV,Living room,7,5,Yes,\"A person is watching television and smiling. Then, taking a blanket from the doorway, the person wraps it around herself.\",blanket;doorway;sofa/couch;television,\"A person sitting on couch turns on the TV. They get up, grab a blanket, and sit back down while wrapping the blanket around themself.\",c072 20.40 29.00;c132 0.00 15.00;c151 15.80 21.30;c154 8.50 13.80;c152 1.50 6.20;c073 11.70 17.90;c123 0.00 5.70;c070 13.90 22.00,28.29\r\nJ39ZC,KFGP,Home Office / Study (A room in a house used for work),6,6,Yes,A person is standing by a table.  A person is eating something from a box and drinking something.,bag;door;food;glass,A person stands in a doorway and drinks from a glass.;Someone is standing by a door eating something.,c061 20.90 26.30;c156 25.80 36.00;c020 0.00 36.00,35.17\r\nC5BMA,CCI9,Kitchen,5,6,Yes,\"The person was running through the kitchen, eating a sandwich and talking.  When the person finished running, the sandwich was put into the sink.\",doorway;food;plate;sandwich;trash can,\"The person walked over to the counter, picked up a sandwich, took a bite, placed it back down and then threw a portion of it away.;A person walks through the doorway into the kitchen. They pick up a sandwich and begin to eat it.\",c065 13.90 25.30;c067 9.00 33.30;c068 29.00 34.00;c156 14.10 22.80;c097 0.70 7.50;c064 28.80 34.00;c061 10.40 29.30,33.46\r\n2INEX,ZEM0,Dining room,,,Yes,A person enters the dining room and sets their cup of coffee down. They start grasping clothes out of a laundry basket and throwing them on the floor.,clothes;coffee;cup;dish;doorway;floor;laundry;table,Someone walks into a dining room with a cup in their hand. They place the cup on the table and sit down on the floor where they begin picking up clothes.;a person outs a coffee cup on a table and gets laundry and throws it on the floor where they sit,c125 6.90 30.70;c009 3.10 8.90;c107 1.30 8.30;c001 8.10 28.80;c003 8.10 28.80;c151 5.60 11.90;c002 8.10 28.80;c119 4.70 9.80;c097 0.00 7.20;c118 1.30 8.30;c154 27.60 36.70,36.12\r\nGV40M,CLH3,Bedroom,6,7,Yes,\"In a bedroom, a person is awakening. They look at a light and sneeze. Then they look towards the door and begin to get out of bed.\",bed;blanket;door;light,\"Person is awakening in bed by window then sneezes, , then gets up from bed and walks towards door.\",c146 5.30 11.80;c154 19.70 25.00;c072 0.00 13.00;c153 10.10 16.70;c070 15.40 24.90,23.67\r\nD8QFD,DXDI,Home Office / Study (A room in a house used for work),6,7,Yes,Person is playing on the phone near a window and smiling while he plays.,chair;phone,A person sits in a chair while playing on their phone.;a person sits in a chair using their phone,c016 0.00 31.00;c152 0.00 8.50;c059 0.00 31.00;c015 0.00 31.00,30.42\r\n0YXN6,JVLO,Kitchen,6,7,Yes,A person is smiling while reading a book.  Another person standing in the doorway sneezes and blows their nose.,book;chair;hands,\"A person flips through a notebook. A person smiles to another, who then sneezes and touches their nose;A person is sitting in a chair writing in a book while  another person is standing up sneezing\",c026 0.00 21.50;c153 17.60 27.90;c059 0.00 21.50;c029 10.90 21.20;c032 0.00 21.20;c115 0.00 21.20;c152 10.90 21.20;c149 10.90 32.00,31.38\r\nJ12SC,HJJ4,Stairs,5,7,Yes,A person takes their shoes off then opens a box and take a camera out while on some stairs.,box;camera;floor;phone;shoe,A person is sitting on the staircase taking off their shoes. The person takes a box off the staircase and takes a camera out of it. The person inspects the camera.,c015 16.20 27.00;c018 10.40 21.40;c040 8.70 19.80;c041 11.00 18.20;c043 7.80 15.20;c057 0.00 11.10;c044 10.80 21.80;c042 15.50 21.40;c087 20.30 27.00;c054 1.40 7.10;c016 16.10 27.00;c125 0.00 27.00,25.96\r\nH2ZYY,HR43,Bathroom,7,5,Yes,A person is opening the cabinet and taking their shoes off.,cabinet;clothes;floor;shoe,\"A person opens a cabinet, removes one of their shoes and throws it on the floor. They then close the cabinet, remove the other shoe, then throw that on the floor too.\",c112 6.90 13.60;c113 0.00 6.90;c057 2.40 8.70;c058 4.00 10.20;c056 9.10 17.80;c126 13.60 19.90;c002 3.30 7.90;c000 3.90 9.00;c003 5.10 10.10,23.17\r\nWMBOO,ZAWX,Pantry,7,7,Yes,\"A person opens the door to the pantry and begins stocking it with some groceries. The person picks up a roll of paper towels from the floor and places it on the shelf, then leaves.\",cabinet;door;floor;food;groceries;shelf;towel,\"A person sitting on the floor opens a cabinet, puts some items on the shelf, closes the cabinet, gets up and walks away.\",c081 7.20 30.30;c130 7.00 30.50;c125 0.00 33.80;c008 0.20 7.50;c130 4.30 19.80;c006 26.50 31.80;c154 28.30 34.00;c113 0.20 7.30;c114 4.20 30.70;c062 4.20 29.70,33.29\r\n3C36H,XXN8,Basement (A room below the ground floor),4,7,Yes,\"Person is sitting on chair doing homework, Another person opening bag and starts sneezing.\",bag;chair;paper,\"A person is holding a bag, while another person sits in a chair and begins writing.\",c059 0.60 34.00;c115 0.00 34.00;c145 0.50 30.70;c020 0.00 34.00;c021 3.10 10.00;c151 0.00 5.10;c154 27.40 32.70,32.54\r\nZYVTC,D0RU,Living room,,,No,\"A person is sitting on a pile of clothes eating food.  The person puts the food down and opens a book to read.  The person grabs their phone, gets up and leaves.\",book;clothes;food;hair;phone/camera;table,\"A young person coming into the room, sitting in a chair at a desk, eating some food, and opening a book, and then getting up from the chair.\",c027 17.30 38.50;c032 17.10 30.90;c063 3.90 16.70;c156 7.40 16.30;c151 1.30 7.50;c154 34.30 40.00;c061 5.00 16.70;c062 12.50 16.90;c145 17.30 31.30;c144 22.00 28.00;c011 2.10 38.10;c059 1.30 38.00;c014 17.00 33.50;c016 28.90 38.10,39.04\r\nJ40UT,EIO2,Bathroom,6,7,Yes,\"A person in a bathroom is holding a glass. The person drinks the last of the coffee in a glass, then washes a glass in the sink. And begins tidying up the bathroom.\",coffee;cup;glass;sink,{};A person is drinking a glass of coffee. A person then takes the cup and places the cup in the sink.,c106 0.00 5.50;c107 0.00 11.10,31.88\r\n9HGNV,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person walking into an entryway is snuggling a pillow and blanket.,blanket;door;pillow,\"A person is holding blankets and carries them through a doorway.;A person walks down a hallway and into a room, carrying and snuggling a pillow and blanket. The person walks across the room and over to a door, and then looks out the door.\",c076 4.50 33.00;c078 4.20 33.00;c070 3.40 33.00;c072 3.40 33.00;c097 5.60 11.40,31.75\r\nHQZ29,L4ZP,Kitchen,6,7,Yes,\"A person is smiling and pouring milk on a bowl of cereal, then using a towel to wipe up spilt milk and finally putting bowl in sink in kitchen.\",bowl;container;counter;dish;milk;sink;table;water,A person stands up in front of a table and pours milk into a bowl.  The person then puts a dish into the sink.;A person picks up a container and pours water into a bowl. Then they pick up a dish off of the counter and put them in the sink.,c118 16.90 24.40;c009 14.10 19.00;c119 20.10 26.30,31.50\r\nLW5O6,HJJ4,Dining room,6,7,Yes,\"A person is tidying up the dining room with a vacuum, then smiles as they find a pair of shoes under the table.\",bag;floor;shoe;table;vacuum,A person is vacuuming They stop and pick up shoes off the floor under the table while smiling.,c053 9.60 17.00;c137 0.00 13.10;c152 7.30 17.00;c023 9.50 16.00;c127 9.60 17.00;c127 0.00 13.50,15.62\r\nPKEZI,BYF9,Bedroom,7,7,Yes,\"Person A is in a bedroom eating a plate of food and reading a book.  Done eating, person A gets up and walks over to the wardrobe and begins undressing.\",bed;book;clothes;food;jacket;wardrobe,A person sits on a bed and looks at a book while eating some food. The person gets off the bed and takes off their jacket.;A person is sitting on a bed while reading a book and eating some food. They then stand up and take off their jacket.,c156 5.50 27.70;c155 29.10 40.00;c135 0.00 26.90;c026 0.00 28.10;c061 5.30 27.50;c154 28.50 40.00;c025 21.00 27.50;c028 22.30 28.70;c027 0.50 7.60;c032 0.30 28.30;c030 0.00 4.30;c030 0.00 34.50;c000 28.70 40.00;c002 28.30 40.00,38.58\r\nZHLLU,R1OT,Home Office / Study (A room in a house used for work),4,7,Yes,A person is sitting on the floor looking at a mirror then they begin to sneeze holding a pillow.,floor;mirror;pillow,\"A person is sitting down on the floor, looks into a mirror, sneezes and hugs a pillow.\",c076 0.00 26.00;c078 10.80 26.00;c125 0.00 26.00;c096 1.80 15.80;c153 7.40 12.60,24.96\r\nF50DT,XXN8,Stairs,4,7,Yes,A person is watching a laptop while another person is smiling at a camera.,camera;laptop;phone,A person is playing with a laptop while another person watches a video on their phone while sitting on the stairs.,c015 0.00 33.00;c047 0.00 33.00;c152 0.00 33.00;c087 0.00 32.60;c016 0.00 32.70;c149 0.00 33.00,31.96\r\nH3E1E,XXN8,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person sits in the garage, drinking a cup of coffee while reading a book.\",book;coffee;cup;dish;glass,\"A person drinks coffee, then flips through a book and drinks more coffee.\",c032 7.40 30.10;c106 0.00 6.10;c027 4.50 30.60;c118 0.00 7.80;c118 13.10 22.20;c028 0.00 28.00;c026 4.50 30.20;c030 4.10 30.70,33.62\r\nCXSYS,DXDI,Kitchen,6,7,Yes,A person sneezes into a bag while sitting in a chair. They get up and start cooking at the stove.,bag;chair;food;stove,A person sits in a chair with a bag and then sneezes. The person gets up and goes and cooks on a stove.,c020 0.00 12.90;c059 0.00 14.10;c147 13.00 24.00;c022 5.40 10.10;c154 5.60 11.00,23.38\r\n8HLKN,YMXV,Home Office / Study (A room in a house used for work),5,7,Yes,A person is laughing as they look at a laptop in a home office. The person is sitting a desk and has a towel draped over the person's shoulders.,chair;desk;laptop;scraf;towel,A person is shaking their head while they sit in front of their computer. They have a towel around their neck that they play with. They rock back and forth.;A person sitting at a decks in front of a lap top laughing and bouncing back and forth .The person grabs the scarf several times and keeps on laughing.,,30.96\r\nJL3VT,T7C3,Bedroom,7,7,Yes,A person runs into a bedroom and grabs a sandwich off a table. They walk out of the room.,dish;sandwich;table,A person walks over to a plate of food and picks it up and takes it from the room.,c067 5.00 20.00;c069 3.30 10.40;c120 3.30 8.60;c119 14.90 20.00;c118 4.50 17.00,19.38\r\n7P0HA,DXDI,Bathroom,6,6,Yes,\"One person throws a bottle of medicine in the sink, then washes up and runs out with a pillow.\",hand;medicine;pillow;sink;table,\"person puts a medicine bottle in the bathroom sink, takes it back and sets on counter, washes and dries hands, picks up a pillow and holds against their chest and walks away\",c076 21.50 27.00;c139 7.10 18.70;c009 4.90 10.30;c078 22.50 27.00;c128 0.70 6.30;c079 20.70 25.70,25.88\r\n2XG25,QB52,Bedroom,4,5,Yes,\"A person awakens in their bedroom.They look in a mirror, grab a laptop and leave.\",bed;blanket;mirror;phone;pillow,\"A person waking and getting out of bed, checking out their face, straightening up the cloths and picking up their phone and walking out of the room.;The person wakes, gets out of bed, checks themselves out in the mirror, grabs their phone and walks away.\",c096 14.80 24.30;c146 0.00 4.90;c133 0.00 11.00;c018 22.20 29.20;c015 22.30 29.80,30.54\r\nMD6P2,PKND,Recreation room / Man cave,6,7,Yes,\"A person is standing in the rec room grasping a bottle of medicine.  The person opens the medicine and pours it into a tablespoon.  After taking the medicine, the person closes the medicine and puts it back in a box.\",box;food;medicine;spoon;table,\"A person opens a bottle of medicine, pours some into a spoon, closes the medicine bottle and puts it into a box.\",c039 14.00 29.80;c129 0.00 8.80;c128 0.00 5.80;c041 5.00 13.40;c128 5.10 22.30;c129 13.20 28.80;c156 7.00 13.00;c040 11.60 19.10;c012 9.60 29.30;c009 14.20 19.30,31.71\r\nYYMLT,D0RU,Recreation room / Man cave,7,7,Yes,A person is laughing at doing the homework on the laptop while standing by the vacuum.,laptop,A person is using their laptop while laughing.,c051 3.50 32.00;c149 25.90 32.00;c152 15.80 20.70,31.17\r\nV1PRP,4OHY,Stairs,7,3,Yes,A person is seen snuggling while sitting on a chair. They begin vacuuming the stairs while standing up.,chair;floor;vacuum,A person sat up from sitting on the stairs and walked down to pick up a vacuum and start vacuuming the stairs.,c137 20.70 30.00;c151 9.50 15.90;c154 11.30 16.30;c059 0.00 14.80;c127 19.20 30.00,29.42\r\nX1R6D,KFGP,Bathroom,5,6,Yes,\"A person walks into the bathroom, laughing. The person closes the door behind them, and washes their hands in the sink.\",door;hand;sink;water,\"A person goes into a bathroom, closes the door, and washes their hands.;a person enters the bathroom and washes their hands\",c139 6.10 25.00;c006 2.20 8.90;c141 2.20 8.80;c097 0.00 5.40,23.88\r\n29LL7,PKND,Living room,5,6,Yes,\"One person runs through, grasps a pair of shoes and some clothes, then leaves laughing.\",clothes;doorway;shoe,A laughing person runs around the room grasping shoes and clothes before standing in a doorway then entering a very dark room.,c053 2.70 33.00;c149 9.60 16.20;c152 9.70 21.40;c000 8.10 17.60;c097 20.60 28.80;c002 8.10 13.50,31.54\r\n0OUEP,KQI6,Bedroom,6,5,Yes,\"Two persons are sitting on the bed snuggling.  One person is holding a camera and a glass of water.  The other person gets up, grabs the doorknob, and closes the door.\",bed;camera;closet/cabinet;door;glass;sofa/couch;water,Two people are sitting down. One person is drinking a soda beverage and the other person gets up and closes a door.,c106 8.40 18.70;c135 0.00 25.00;c006 26.20 33.00;c154 20.90 29.60;c016 1.70 10.40;c112 27.30 32.60;c123 0.00 26.60;c152 18.60 25.50;c015 2.70 10.60,32.33\r\n705RV,XXN8,Kitchen,7,7,No,A person is seen fixing a sandwich. They then start putting the sandwich on a table and begin taking some medicine.,bag;bread;cover;food;jar;medicine;sandwich;shelf;spoon;twist tie,\"Person removes bread from bag, uses spoon to pretend to spread something, puts bread down, opens jar, pours something from Jar, eats it and puts jar down;A person is making a sandwich, they then take some medicine.\",c067 4.30 21.20;c068 15.50 21.80;c021 1.80 9.40;c063 0.80 20.20;c129 18.10 26.90;c066 0.00 20.20;c154 0.00 30.30;c020 0.00 6.50;c023 0.00 9.50;c156 18.90 29.50;c128 17.50 30.30,30.42\r\nFKZTG,25TD,Hallway,6,6,Yes,A person takes a sandwich and a book from a table in the hallway. The person leaves.,bag;book;sandwich;table,\"The person walks to the table and takes off a sandwich, then turns around and takes a book off the table as well.\",c026 23.80 31.00;c067 12.50 22.70;c020 14.90 22.70;c150 24.20 30.00,30.42\r\nHOI88,XXN8,Recreation room / Man cave,6,7,Yes,A person is snuggling with a book while another person is grasping a desk.,book;couch;pillow;sofa;table,\"One person is sitting on the couch, holding a book, and rocking like they are sick or cold.  Another person comes and sits down next to the other person and lays her head down on the coffee table/desk.;person sits on the sofa and another person sits next to them and leans on a table\",c009 4.20 23.30;c026 10.70 17.40;c151 21.20 29.10;c123 11.70 21.60;c010 21.20 34.60;c011 2.60 31.90;c078 0.00 35.00;c154 27.90 34.40,34.12\r\nSBMQX,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is drinking a glass of juice while standing in the hall near the entrance to their house. A stranger is watching this scene through the side window.,cup;dish;glass;window,\"A person is drinking from a glass while standing. A second person is standing outside of the window, staring in.\",c106 0.00 31.00;c107 0.00 31.00;c118 0.00 8.40,30.29\r\nCYLQ0,ZAWX,Pantry,6,7,Yes,A person opens the door to a cabinet in their pantry. They grab a can of food and close the cabinet.,cabinet;doorway;food;spices,\"A person is walking into the kitchen, they then take some food from the cabinet and close the cabinet.;A person walks into the kitchen and opens the cabinet. They remove some spices.\",c061 7.90 15.30;c063 15.10 23.10;c112 12.10 21.10;c113 2.10 10.40;c097 10.20 29.00,30.50\r\nAEZDA,UO0Z,Hallway,7,6,Yes,A person is eating from a bag of groceries in a hallway then starts playing with a vacuum.,bag;desk;food;table;vacuum,a person eats out of a bag then sets it on the desk and turns on a vacuum;A person is eating some food from a bag.  Then they start using a vacuum to clean up.,c020 0.00 12.90;c137 9.90 18.10;c156 0.00 9.50;c061 0.00 12.70;c024 7.30 13.00;c137 10.30 36.00;c009 7.30 13.00;c022 5.50 13.60,35.00\r\n2BUDH,KQI6,Living room,6,6,Yes,One person was grasping for some food. And then they started drinking in the light.,chair;cup;dish;glass;table;water,\"A person walks in the room carrying some dishes. They place the dishes on a table and sit down in the chair.  Then they pick up a glass, pour water in it and take a drink.;A person is walking into the living room with something in her hand. They sit down and take a drink of water from a glass\",c108 20.70 25.50;c151 11.70 17.50;c119 8.00 14.10;c059 13.70 31.00;c118 4.00 12.00;c107 20.10 31.00;c110 4.40 18.10;c011 13.20 31.00;c106 21.50 31.00;c119 3.80 16.60;c009 10.80 16.70,29.83\r\n2ZFG4,KFGP,Other,6,6,Yes,A person in the hallway is washing a window near a chair. They are smiling.,door;rag;towel;window,A person is walking to a door and washing the window in the door with a towel.;A person is standing up and cleaning small window on a door.,c091 1.40 25.00,23.67\r\nW2TL1,LTAC,Home Office / Study (A room in a house used for work),7,7,Yes,A person is sitting at a desk and throwing food at a television.,desk;food;television,A person sitting on a table throws things at a television.,c064 0.00 32.00;c061 0.00 32.00,30.92\r\nG7LU9,KFGP,Hallway,6,6,Yes,\"Person is in room. Person smells cooking, Person opens doorknob. Person hears laughing. Person closes door, sad.\",door,\"A person is in a hall way.  That same person goes and opens the door, looks out and then closes it.\",c141 13.50 23.70;c006 10.00 17.20;c008 5.00 13.60;c097 11.20 15.80,23.96\r\nWEYV3,4OHY,Home Office / Study (A room in a house used for work),5,7,Yes,A person is seen eating a sandwich at their desk. They begin holding their phone to make a call.,desk;food;laptop;phone;sandwich;snack;table,A person is sitting at a table playing on a laptop and eating a snack. Then he picks up a phone and talks on it.;{};A person is eating while playing on their laptop and talking on their phone.,c014 0.00 30.00;c016 14.50 24.00;c065 0.00 5.50;c156 0.00 3.90;c052 0.00 12.50;c011 0.00 30.00;c067 0.00 30.00;c061 0.00 30.00;c019 18.80 30.00;c015 14.10 30.00,29.25\r\nBIK4X,WG9D,Bedroom,2,1,No,A person is lying on the sofa eating food.  They pick up a cup of coffee.,chair;cup;food;sandwich,A person is sitting in a chair eating a sandwich they pick up a drink;A person is sitting on a chair and eating.,c110 2.40 7.00;c061 0.00 6.20;c156 0.00 6.30;c059 0.00 7.00;c065 0.00 6.10,5.75\r\nE7ESG,D0RU,Living room,6,7,No,\"A person is lying down on a sofa, fast asleep. They awaken and look at the time on their phone. They then rush over to the desk, open a book and prepare to continue their homework.\",bed;book;chair;desk;phone;table,\"A person is laying on a bed. The person picks up a phone, looks at it, then immediately sits up. The person stands up, walks to a table and sits down to look at a book.\",c032 26.20 31.90;c016 14.10 20.30;c018 13.30 18.50;c154 17.00 23.90;c027 24.30 32.00;c015 11.10 28.60;c017 21.80 30.50;c146 11.90 20.40;c151 23.50 30.80;c134 0.00 23.60;c014 25.90 32.00;c059 25.40 32.00;c011 25.70 32.00;c145 27.80 32.00,31.42\r\nKZK6W,HR43,Kitchen,7,7,Yes,\"A person is cooking food on the stove. The person pours some oil into the pan, then drinks from a glass of water.\",cup;food;glass;stove;water,\"A person stands at a stove cooking some food.  They grab a bottle of oil, pour some into a pot and then put it back down. They take a glass of water from the counter and drink it.\",c106 0.00 6.30;c106 5.30 16.90;c109 8.70 22.20;c110 14.70 30.40;c147 14.70 36.00;c147 8.70 23.80,35.46\r\nA4SR3,QB52,Recreation room / Man cave,6,7,Yes,A person is eating while watching television. The person begins laughing and places their food on the table.,bowl;chair;dish;food;spoon;table,A person is eating with a bowl and spoon sitting in a chair.  The person enjoys this food and smiles.  The person then puts away the bowl and spoon.;A person is eating some food from a bowl while sitting.  The person puts the food aside and smiles.,c061 0.00 21.20;c062 17.10 23.80;c156 0.00 16.40;c149 12.30 31.00;c059 0.00 31.00;c152 13.30 31.00;c118 0.00 23.30,30.04\r\nCD11G,ZSRZ,Kitchen,7,7,Yes,\"A person is cooking food on a stove, then opening a refrigerator and eating in a kitchen.\",dish;food;knob;pot;refrigerator;stove,\"A person is cooking on the stove.  They then open the refrigerator and take a bite of food.;A person turns a knob and stirs a pot on a stove. The person then opens the refrigerator door and takes food out. The person takes a bite of the food, and closes the refrigerator.\",c156 9.80 16.20;c143 5.00 11.90;c143 4.20 18.90;c147 0.00 7.70;c142 13.70 19.00;c118 1.80 9.00,17.92\r\n0MFAM,ZAWX,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is standing in the doorway.  Then a person is grasping a broom.,broom;doorway,A person leans against a door. The person picks up a broom and twirls it in their hands.,c098 22.20 32.00;c100 22.90 28.30,31.25\r\nOVH9Y,UTMU,Bedroom,6,7,Yes,\"A person is lying in bed while watching television. After a few seconds the person gets back to working on cleaning the room. The person walks over to a vacuum turns it on, vacuuming the floor for a bit.\",bed;floor;phone;television;vacuum,\"A person is climbing into bed and holding a phone. The person then tosses the phone aside, gets out of bed, and starts vacuuming.;A person is laying down on a bet holding a remove and watching television, they then get up and begin vacuuming the floor.\",c134 0.00 19.80;c137 18.60 33.00;c154 20.50 33.00;c132 0.20 19.40;c127 17.90 33.00,32.08\r\n3W5GB,ZAWX,Closet / Walk-in closet / Spear closet,6,6,Yes,Person A is in a closet putting away some towels.  Person A throws one that is unpleasant looking and camera and a picture leaving the closet.,clothes;shelf;towel;wardrobe,\"A person looks through clothing on a shelf. They pick up a small towel, examine it, then throw it off to the side.\",c033 14.30 25.50;c035 13.50 18.60;c036 20.70 25.80;c152 26.00 32.00;c002 14.10 19.20;c003 20.70 25.70;c082 0.00 18.90,30.71\r\nEASCD,D0RU,Living room,7,7,Yes,The person pours out the rest of their soda into a glass and takes a drink.  Then they pick up their dirty dishes off the coffee table and carry them to the sink.,chair;cup;dish;glass;sink;soda;sofa/couch;table,\"A person is sitting on the bed brushing his hair with his hands. He pours a glass of soda and then takes a drink and sets the glass back down. He rearranges some dishes on the table and then grabs them, gets up, and takes them to the sink.\",c106 11.50 24.40;c107 10.40 24.00;c107 6.30 35.40;c123 0.00 35.00;c009 17.30 30.20;c012 19.80 32.30;c119 17.10 25.00;c120 12.50 25.00;c109 12.50 25.00;c011 0.00 36.40;c108 12.50 25.00;c118 13.10 24.40;c154 31.60 37.50;c110 3.20 8.80;c059 0.00 35.60,41.46\r\nO1LOW,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person walks through a door into a hall and sees a book and other items on the floor. They pick up the book and tidy the area.,book;door;floor;something;table,A person is picking books and other things off floor and another person also does the same.  They then put objects on a table in an entryway.,c008 1.60 9.30;c028 14.70 22.80;c127 7.80 25.10;c009 23.10 28.10;c026 8.00 27.00;c116 15.00 27.10;c117 8.30 27.60;c115 8.30 27.60;c030 9.40 17.60,31.17\r\n3BVG1,KQI6,Hallway,5,7,No,A person puts a broom inside a hallway closet and closes the door. Another person is sitting in the hallway.,broom;closet/cabinet;door;sofa/couch,\"A WOMAN IS HOLDING THE BROOM AND SWINGS IT IN THE AIR AND STARTS TO BROOM THE WALLS AND AIR, WHILE A MAN SITS ON A COUCH\",c098 0.00 20.60;c123 11.70 29.80;c097 4.00 12.00;c099 16.10 21.70;c141 18.40 24.10;c112 20.90 26.60,30.67\r\nP5SWU,KQI6,Living room,7,7,Yes,One person is holding the pillow while the other is fixing the television.,couch;pillow;sofa;television,\"Two people are sitting on a couch. One holds a pillow and one walks over to work on the television.;Person ,while sitting down, picks up a pillow and cuddles it.  Person fixes television.\",c076 0.80 18.90;c078 0.00 21.60;c079 0.30 6.00;c123 0.00 18.90;c132 19.60 28.10,30.58\r\n7B1CR,T7C3,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person sneezing at their phone then drinking out of a glass.,cup;glass;phone,A person holding a glass and a phone sneezes twice on the phone.,c106 16.70 29.00;c107 0.00 29.00;c015 0.00 23.70;c153 10.30 17.00;c016 0.00 19.30;c017 11.00 19.10,27.79\r\n2JKR8,PKND,Kitchen,6,6,Yes,A person is using a broom. After they are finished they leave it in the sink and begin taking some food to bring into another room.,broom;dish;doorway;floor;food;sink,A person sweeps the floor while another places food on a table.,c102 0.10 21.80;c062 22.00 33.00;c097 27.80 33.00;c118 23.30 33.00;c063 22.00 33.00;c099 5.70 24.90;c127 5.20 18.40,32.17\r\nWJFGC,KFGP,Stairs,5,7,Yes,A person is carrying a box with a laptop on top down the stairs. They stop and stand as they take the laptop and open it. They sit on the stairs and start to work on it.,box;floor;laptop,\"A person walks down stairs carrying a box, then they open the box, sit down, remove a laptop and begin to play on it.\",c050 10.40 17.40;c040 0.00 22.80;c041 9.80 15.60;c151 16.10 21.20;c125 16.30 37.00,35.79\r\nON2VH,YA10,Kitchen,7,7,Yes,\"One person cooks at the stove, then takes a book and a camera and leaves the room.\",book;food;phone/camera;stove,A person is stirring a pot on the stove then they walk over to the counter and pick up a book and walk out.,c030 18.10 23.70;c147 0.00 21.00;c015 21.40 30.40;c026 18.50 31.00,30.21\r\nFN457,9PLL,Bedroom,6,6,Yes,A person is smiling into a mirror while grasping a picture.,mirror;picture,A person is looking at themselves in the mirror and then looks at a picture.,c084 17.70 33.00;c096 0.00 18.20;c152 0.00 7.00;c088 17.90 33.00,32.00\r\nWOD0G,ZAWX,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person runs into the entryway, carrying a towel and a book. The person throws the towel onto the table.\",book;clothes;doorway;table;towel,\"A person is walking in the hallway holding a book and with a towel in thier shoulder, they then throw they towel on a table.\",c026 0.00 32.00;c009 10.80 20.20;c033 0.00 20.00;c034 10.80 20.20;c036 10.80 20.20;c097 0.00 13.90;c003 14.50 19.90,30.79\r\nJ4GX8,UTMU,Laundry room,4,5,Yes,\"The person can sneeze while holding a glass, The person can take their medicine while drinking a glass of water.\",cup;glass;medicine;water,\"A person is standing in the laundry room. They sneeze, then appear to take some medicine by swallowing it.\",c129 16.60 22.20;c106 18.80 27.30;c153 0.00 5.80;c107 0.00 8.40;c109 3.60 8.00;c107 15.80 27.90,29.21\r\nYJ2CM,ID9V,Kitchen,5,7,Yes,a person is holding a pillow while opening the stove.,pillow,A person is holding a pillow and opening a dishwasher.,c076 0.00 24.00,22.75\r\n3SIOT,XXN8,Recreation room / Man cave,6,6,Yes,ONe person was laughing while holding a blanket. The other was throwing around a bag,bag;blanket;clothes,A person is playing with a grocery bag. A second person is holding a blanket and laughing.,c024 0.00 6.70;c070 0.00 31.00;c149 0.00 31.00;c000 0.00 30.40,30.21\r\nWXUZK,M80J,Bedroom,7,7,Yes,Person A walks into the bedroom undressing and throwing the clothing onto a chair.  Person A them climbs onto the bed snuggling under the blanket and lying down.,bed;blanket;chair;clothes,A person is in their bedroom and undresses before getting in bed to go to sleep.,c072 17.20 24.20;c134 17.30 31.00;c155 0.00 14.70;c003 1.90 11.10;c000 1.40 8.70;c001 1.00 8.70,29.71\r\nGXIWH,6RE8,Living room,7,7,Yes,A person is smiling at the bag and opening the coffee.,bag;chair;coffee;cup;drink;table,\"a person looks at a bag on a chair then grabs a drink off a table;A person looks at a bag on a chair, pours coffee into a cup and drinks it.\",c106 27.50 35.00;c107 9.70 35.00;c110 7.50 16.10;c152 0.00 13.20;c108 14.50 31.80;c009 13.00 19.10,34.42\r\nH40VV,KQI6,Hallway,6,6,Yes,A person is holding the door while another person is walking with the dishes.,dish;door,\"A WOMAN WALKS TO THE DOOR, SLOWLY OPENS IT AND A MAN WALKS OUT HOLDING TWO TEAPOTS ON TRAYS. THE WOMEN THEN CLOSES THE DOOR AND THEN OPENS THE DOOR AND EXITS OUT AND REUNITES WITH THE MANAC\",c118 5.60 16.90;c008 1.40 11.70;c006 18.90 24.70;c120 7.10 12.40,30.92\r\nV7KBN,T7C3,Dining room,3,5,Yes,Person pouring a drink after taking a glass from a shelf.  Person sneezing after leaving dining room.,cup;glass;shelf;table,\"A person in dining room takes a glass off the shelf, puts it on table and pours juice in it. The person then picks up glass and leaves.\",c107 2.80 9.60;c108 10.30 21.60;c110 1.50 6.50;c009 4.90 10.50,29.21\r\n7W1ZI,JVLO,Living room,4,7,Yes,Two persons are playing cards on the floor.  One person takes all the cards and puts them back in the box and closes it.  The person gets up and puts the deck of cards on the shelf next to a book.,box;floor;shelf,\"Two people sit on the floor playing a game of cards. One person puts the cards in a box, stands and puts them on a shelf.\",c039 18.50 24.60;c125 0.00 25.70;c154 21.70 26.90;c042 21.40 29.00,30.12\r\n29T54,KFGP,Closet / Walk-in closet / Spear closet,6,7,Yes,\"One person stands and starts undressing, opening a wardrobe cabinet to get clothes.\",chair;closet;clothes;door;wardrobe,\"a person sits in a chair then takes off some clothes and puts in a closet where he removes other clothes;A person is sitting in a chair.  They stand up, start undressing and open the closet door.  The person takes some clothes from the closet and places them on a chair.\",c001 19.70 29.00;c003 23.10 29.00;c154 1.10 7.90;c059 0.00 6.40;c113 12.10 19.30;c000 2.90 17.10;c155 3.90 23.40;c008 12.20 19.60;c002 19.50 28.20;c141 13.20 19.00,28.12\r\nA9BDS,2Q9D,Dining room,6,6,Yes,A person is standing over the sink. The person carries a bag into the dining room and sets it on the table before sitting down and pouring himself a drink.,bag;chair;cup/glass/bottle;juice;sink;table,A man is by a sink and takes a bag of groceries and sets them on a table. Then he pours himself some juice and drinks it.,c011 10.10 33.00;c020 2.30 8.40;c151 9.80 15.70;c107 11.00 32.60;c110 10.60 16.00;c110 16.50 21.20;c022 7.30 14.60;c023 0.90 7.30;c059 10.70 33.00;c106 19.90 31.50;c009 9.00 14.10;c009 16.20 21.20;c108 13.50 19.70;c109 16.20 21.20;c107 10.90 20.50,32.17\r\nPTA97,AC0W,Closet / Walk-in closet / Spear closet,4,6,Yes,A person is seen fixing their hair at their closet. They start putting books inside the closet on a shelf.,book;closet/cabinet;floor;hair;shelf,An individual is combing their hair in the closet. They then put bottles of stuff on the shelf.,c081 13.60 29.90;c144 0.00 13.70;c127 9.60 16.40;c114 11.00 30.00;c028 15.20 21.50;c028 19.40 25.30;c030 10.70 18.80;c026 11.00 29.30,28.83\r\nMUAR4,M80J,Home Office / Study (A room in a house used for work),7,6,Yes,\"A person is sitting on a chair, when they get up and walk away leaving a laptop on a desk.\",chair;desk;laptop;table,A person sitting in a chair at a desk is working on their laptop. They get up and walk away.,c052 0.00 25.90;c059 0.00 29.60;c011 0.00 29.00;c014 0.00 26.00;c154 24.00 30.40,29.96\r\nVSWNF,9Y7F,Stairs,4,7,Yes,A person is sitting on the stairs with a blanket.  The person then starts tidying a pile of homework.,bag;blanket;book;homework;paper,A person is sitting on a staircase with a blanket. They rummage through several stacks of paper and stack everything in one pile.,c072 0.00 36.00;c116 17.40 36.00;c027 8.00 12.30;c115 8.10 13.00;c025 9.50 14.40;c030 5.50 10.40;c023 26.50 30.50;c026 6.00 12.50;c117 9.20 15.80;c028 6.90 22.60,34.92\r\n9FBAP,L4ZP,Kitchen,7,7,Yes,A person is laughing while opening the refrigerator and taking out a bag of carrots.,bag;refrigerator,A person walks into the kitchen passed the dog and goes to the refrigerator and takes a bag out and puts it on the counter.,c142 6.20 11.00;c143 2.00 7.40;c020 5.90 20.00;c023 4.50 9.70,18.83\r\nU6KQ7,Z755,Dining room,7,7,Yes,A person is putting the excess food away from the table while they see the other person leaving and closing the door behind them.,chair;door;food;table,\"People sitting at the table eating food one person leaves the room another person follow and close the door.;Three people are in a kitchen. One is walking, the other is sitting, and the last on is eating chips. One of them walks through a door and the other one closes the door.\",c063 0.00 5.00;c008 4.80 11.30;c156 0.00 4.10;c097 4.20 12.40;c006 8.90 15.00;c154 2.80 8.40;c059 0.00 15.00;c011 0.00 15.00;c062 0.00 7.60,14.08\r\nF76GD,3VLX,Bathroom,6,6,Yes,\"One person undresses, taking off a pair of shoes, then drinks from a glass and washes their hands.\",counter;cup;dish;glass;hand;shoe;sink;toilet;towel;water,\"A person enters the bathroom, sits on the toilet and removes their shoes. They then drink water from a glass on the counter, and follow up by washing their hands in the sink, then drying their hands on a towel.;A person walks into the bathroom and sits down to remove their shoes. They stand up, drink a glass of water, and wash their hands.\",c058 4.30 12.50;c106 11.80 19.90;c154 8.70 14.30;c057 3.50 12.20;c139 19.80 35.20;c151 0.70 6.80;c118 11.20 20.80;c120 10.70 15.80;c119 15.50 20.40,35.71\r\nWT9CR,KQI6,Basement (A room below the ground floor),6,6,Yes,One person is taking a picture with their laptop while another is playing by the door.,bed;door;phone;picture,\"One person is fixing a door while another person is taking pictures with a phone.;One person swinging a door open and close, and another person taking a picture of it on a camara.\",c008 1.50 7.80;c154 15.70 23.10;c016 0.00 33.00;c087 20.50 32.80;c015 0.00 33.00;c135 0.00 33.00,31.92\r\nT03KF,LTAC,Closet / Walk-in closet / Spear closet,5,7,Yes,The person is looking through their wardrobe and throwing clothes on the floor. They pick food up and begin eating it.,closet;clothes;floor;food;mirror;wardrobe,\"A person is looking into a mirror, the person then takes clothes out of a cabinet and throws them on the ground before eating some food.;a person looks in the mirror then grabs clothes from a closet and throws them on the floor then eats food\",c003 10.60 19.60;c061 21.60 32.00;c113 8.70 13.50;c126 10.60 19.60;c156 21.60 32.00;c096 3.10 12.60;c002 10.60 14.90,31.08\r\nFCBEQ,HR43,Kitchen,6,5,Yes,A person is seen pouring food in a glass. They then start watching television and smiling,crackers;cup;food;glass;laptop;video,\"The person pours some crackers into a cup as they use a laptop computer in the kitchen.;A person pours some food into a glass, then begins watching a video on their laptop.\",c061 0.00 8.60;c062 4.60 13.00;c063 0.00 2.80;c051 11.10 32.90;c108 4.10 13.00,32.29\r\nIA5TC,FNK4,Entryway (A hall that is generally located at the entrance of a house),2,6,Yes,A person is putting a box on the shelf and then closing the cabinet.,box;cabinet;door;floor;shelf,A person enters their house holding boxes and stuffs them on a shelf.,c040 2.30 12.30;c081 12.60 20.10;c112 26.40 32.00;c097 3.80 9.80;c141 8.90 15.40;c008 9.10 15.10;c127 12.10 26.00;c042 5.70 12.00;c042 12.10 21.50;c043 11.80 16.80;c114 12.80 29.40;c113 9.10 15.20;c097 0.00 18.60;c006 25.50 32.00;c141 24.00 32.00;c008 2.60 32.00;c127 7.70 20.00,30.71\r\nYXPTI,0KZ7,Laundry room,7,7,Yes,One person is washing tennis shoes and a pillow while another person with a phone is leaving through the doorway.,clothes;doorway;phone;pillow;shoe,\"A person puts some shoes and a pillow in the washing machine, closes the lid and turns it on. Another person stands in the doorway playing with a  phone, who then walks away.\",c015 0.00 14.90;c016 0.00 14.60;c077 10.50 21.80;c054 1.30 12.40;c005 0.00 29.00,27.67\r\nFBIVN,DXDI,Bedroom,6,7,Yes,\"A person is standing in the doorway, closes the door and grabs a pillow off a shelf and begins holding it.\",door;knob;pillow,\"A person is closing a door. A person holds a pillow.;Person in doorway looking at pillow. Then closes door, grabs pillow then looks at floor, then hold pillow with two hands.\",c076 4.90 21.00;c079 4.40 12.60;c006 1.60 10.30;c141 2.40 9.80;c097 1.70 9.30,20.33\r\n1RHDP,HJJ4,Bedroom,4,7,Yes,\"A person is walking with the vacuum. A pillow gets sucked up. The person rescues the pillow, and snuggles it.\",floor;pillow;vacuum,A person is vacuuming their room. They pick up a pillow from the floor and hug it.,c076 12.10 20.00;c079 12.30 18.70;c137 0.00 15.80;c127 0.00 16.00,18.75\r\nJ6L8A,Z68L,Kitchen,7,7,Yes,The person is holding a broom while tidying the counter.  They then start pouring water into a pot on the stove.,bowl;broom;counter;cup;dish;food;glass;pot;shelf;something;stove;table;water;windowsill,\"The person walks up to the shelf while holding a broom, and rearranges them on the counter. The person then picks up a glass of water and pours the water into a pot on the stove. The person then picks up a bowl and sets it back on the counter.;A person is standing by a sink holding a broom. They grab some stuff from the windowsill and put them on the counter. Then they grab a glass and pour something into a pot.\",c098 0.00 33.70;c109 23.00 28.30;c009 26.90 32.40;c147 16.20 27.20;c110 14.40 19.60;c118 15.00 28.00;c119 23.30 28.50;c120 25.90 32.40,33.71\r\nD19IR,ZAWX,Hallway,6,1,No,A person stands in a hallway looking out the window watching kids playing while holding a bag of groceries. The person is putting the bag on the floor to pick up the fallen broom so they don't trip over it.,bag;broom;doorway;floor;groceries;window,A person is sitting on a balcony. They then stand up with a bag of groceries. Nest they go inside and begin sweeping the inside of the living room.,c020 10.30 25.90;c102 23.30 32.00;c154 11.50 18.10;c127 22.10 32.00;c097 16.00 22.00,31.00\r\n4SN6Z,WQ8Z,Kitchen,2,6,Yes,\"One person stands up, tidies up some dishes, then closes the stove and starts to cook.\",chair;closet/cabinet;dish;door;shelf;stove,A person is sitting on a chair. They stand and put dishes on shelves in cabinets. They then go to the stove and close the door.,c119 4.90 12.20;c154 0.00 5.80;c006 15.60 21.00;c059 0.00 4.80;c119 13.10 19.90;c081 13.30 20.40;c113 12.60 17.80,32.75\r\nM1P59,70CN,Pantry,7,7,Yes,\"A person is eating in their pantry while playing on their phone. They grab a bag, and their shoes, and leave.\",bag;box;cabinet;cereal;food;pantry;phone;shelf;shoe,a person looks at their phone while eating food out of the pantry then grabs a bag and shoes;A person is looking at their phone. They take some cereal out of a box that's on a cabinet shelf and eat it. Then they get a bag out of the cabinet. They bend down and pick up a pair of shoes off of the floor and walk out of the room.,c015 0.00 16.30;c053 17.10 30.00;c020 13.70 30.00;c156 0.00 16.30;c016 0.00 15.70;c056 11.60 24.70;c023 12.50 19.00;c044 4.10 10.80;c063 4.10 10.80,29.42\r\nM1B7N,C7O9,Kitchen,6,7,Yes,\"A person cooks something in a pot on the stove, then reaches over to open a cabinet door to grab some dishes from the shelf and place them next to the stove.  They then take a sip of coffee from a cup.\",cabinet;cup;dish;door;food;plate;stove,\"Person cooking at stove, goes to a cabinet to get a plate, and then goes back to the stove and has a drink.\",c113 12.20 18.40;c147 1.30 14.20;c120 14.60 18.80;c110 20.50 27.90;c106 20.90 30.00;c141 11.80 16.10;c008 12.10 18.30;c119 17.60 23.40,29.00\r\nZL7E9,BYF9,Kitchen,3,6,Yes,\"One person takes medicine as another person laughs, standing at the stove with food.\",food;medicine;stove,A person laughs as they cook some food on the stove. Another person stands nearby with a bottle of medicine.  They open the bottle and drink some of the medicine.;One person opens and takes some medicine while another who is cooking on a stove watches and smiles.,c128 0.00 18.00;c147 0.00 18.00;c128 0.10 7.50;c149 0.30 9.60;c152 0.00 9.60;c129 8.30 16.90,16.71\r\n88LYX,HR43,Kitchen,7,7,Yes,\"A person is cooking on their stove. They stop momentarily, wash a glass, and go back to cooking.\",cup/glass/bottle;dish;food;sink;stove,There is a person cooking on a stove. That same person goes to the sink and does something..;A person is cooking on the stove and turns to the sink to do dishes then goes back to the stove.,c147 0.00 8.70;c111 8.50 16.40;c118 23.20 30.00,29.04\r\nS2RIQ,ZSRZ,Kitchen,5,7,Yes,\"A person stands in the kitchen, cooking food on the stove.\",food;stove,A person puts some food in a pot on the stove and cooks it.,c062 0.00 4.10;c147 0.00 13.00,11.92\r\nIVJWH,5LWB,Living room,6,7,Yes,A person is putting clothes on the sofa and begins sneezing at the smell of the food.,clothes;sofa,A person walks into the room throwing clothes on a sofa and then they begin to sneeze uncontrollably.,c003 1.60 7.00;c153 10.70 23.00,22.25\r\nX1RBM,Z68L,Bathroom,6,7,Yes,A person is playing with a mirror sitting on the toilet then begings to eat on top of the sink.,dish;food;mirror;plate;sandwich;sink,\"Girl sits on toilet and looks through box, then gets up ant eats something over the sink.;person sits and grabs a mirror then sneezes and eats food off a sink\",c093 0.00 19.70;c156 20.90 35.00;c154 16.90 21.90;c119 26.20 35.00;c068 29.30 35.00;c067 20.40 34.60;c065 21.40 34.60;c069 19.90 25.90,33.92\r\n48CYX,HJJ4,Bathroom,3,6,Yes,A person undresses in the bathroom. They begin washing themselves with a washcloth. They take a book from atop a shelf and walk out.,bath cloth;book;clothes;jacket;mirror;shelf;shirt;sink;towel,A person is taking off a shirt. A person then cleans themselves with a towel.;A person in the bathroom taking off jacket and freshening up with bath cloth.,c026 16.30 22.60;c030 17.50 22.10;c155 0.00 7.30;c096 0.00 20.80;c155 5.60 11.10;c001 6.80 11.60;c038 8.80 18.70;c000 1.40 10.80,22.67\r\n3SDJE,ZAWX,Kitchen,5,5,Yes,A person is closing the stove and then puts a cook book back where it belongs.,book;closet/cabinet;food;shelf;stove,The person is holding a book while stiring something on the  stove. Then the person closes  the book and then walks over to a cabinet and puts the book inside the cabinet and walks back over to the stove.,c025 7.00 14.10;c026 0.00 20.40;c028 13.80 20.20;c032 0.00 12.90;c147 0.00 13.00;c112 19.10 27.00;c113 13.20 18.40;c081 14.40 21.10,30.58\r\nSPKSE,T7C3,Kitchen,6,6,Yes,A person is grasping a phone the puts a towel down.,blanket;doorway;phone;towel,A person holds a towel as they talk on the phone.  They throw the towel to the floor and walk away.,c033 0.00 26.40;c036 20.90 27.00;c015 0.00 29.00;c019 2.70 29.00;c097 22.20 28.80;c070 0.00 27.30,28.12\r\nUGMJZ,XXN8,Laundry room,4,7,Yes,One person is throwing towels into the dryer. Another person is sitting on top of the dryer holding a book and reading.,blanket;book;clothes;dryer;towel,a person sits on a washing machine and ready while another person does laundry,c026 0.00 33.00;c035 11.40 33.00;c001 4.00 9.80;c003 6.20 11.70;c002 8.00 13.20;c073 7.70 13.70;c032 1.20 6.30,31.58\r\nN7AOK,ZAWX,Kitchen,7,7,Yes,\"A person walks into the kitchen, sneezing while grasping a blanket. The person takes a pillow from the chair and walks out.\",blanket;chair;doorway;pillow,A person is walking into the room and picks up a pillow after tossing aside a blanket. Afterwards they walk out of the room hugging the pillow.,c079 21.00 31.00;c074 13.40 24.10;c071 21.20 26.80;c097 0.40 7.20;c070 17.80 25.00,30.42\r\nM5C5L,3H6W,Kitchen,6,7,Yes,A person is smiling next to a refrigerator in the kitchen then proceeds to cook on a stove.,food;refrigerator;stove,A person is smiling next to a refrigerator then cooking something on the stove.,c152 0.60 13.10;c147 14.70 31.70,34.04\r\n07E49,KF7F,Living room,6,3,Yes,A person is in the living room sitting at a desk and a person is watching television.,chair;television;tv,A person is sitting and watching tv.;A person is sitting in a chair while watching television.,,32.96\r\n5IOQB,SIZN,Basement (A room below the ground floor),6,6,Yes,A person is laughing as they watch a video on their laptop. The person takes a drink from a glass of water.,chair;cup;glass;laptop;water,A person sitting in a chair laughs at something on their laptop. They drink a glass of water.;A person is sitting in a chair watching a laptop and laughing they take a drink of water,c051 0.00 21.80;c106 17.80 25.50;c149 9.00 20.00;c059 0.00 29.00;c047 0.00 29.00;c052 0.00 29.00;c152 9.50 21.00;c107 14.10 27.50,28.42\r\n1DYYP,3VLX,Kitchen,3,7,Yes,A person is holding a broom in the kitchen.  The person looks in the mirror and begins fixing hair. The person begins to sweep with the broom.,broom;floor;hair;mirror,A person is holding a broom in a kitchen. The person walks over to a mirror and adjusts their hair. The person sweeps the floor.,c144 3.40 24.40;c096 3.20 24.70;c102 0.00 10.50;c127 0.00 13.30,30.83\r\n5QJNP,PO5L,Kitchen,7,7,Yes,\"One person grasps a recipe book from a cabinet, then tidies up the contents of the cabinet and has a drink.\",book;cabinet;glass,\"Person walks into a room go over to the cabinet takes a book out the cabinet, look for something else in the cabinet then began to drink from a glass\",c025 13.10 18.50;c112 5.80 11.80;c113 3.90 9.30;c027 8.30 17.10;c106 26.50 32.80,38.21\r\nI2DHG,ZAWX,Bedroom,7,7,Yes,One person was undressing and then putting their clothes on the bed. Another was smiling while drinking coffee.,bed;clothes;coffee;couch;cup;doorway;shirt,\"One person walks into a room, takes off his coat, talks to another person on the couch who is drinking coffee.;A person walks through a doorway and into a bedroom.The person takes off a shirt and puts it on the bed. Another person is laying on a bed and drinking from a cup. The first person smiles.\",c001 0.00 11.40;c134 9.10 20.80;c107 9.30 22.70;c152 19.70 32.00;c097 0.00 5.20;c106 13.10 23.40;c155 0.80 11.40;c003 6.50 10.80,30.79\r\nX42YA,P6LJ,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"One person runs through, sits in a chair, and puts on shoes in front of a mirror.\",chair;door;shoe,\"a person walks out a door then runs back in and sits in a chair and puts shoes on;The person goes out a door and comes back in the door. The person then grabs a chair, sits down, and puts on their shoes.\",c059 14.30 32.30;c150 0.00 15.00;c154 0.00 2.70;c008 1.30 7.50;c151 12.30 19.00;c055 15.20 32.20;c097 2.20 8.00;c006 3.30 10.20,33.25\r\nA5YR8,OUKK,Living room,7,7,Yes,One person runs in past a chair and takes a stack of dishes from a cabinet with a picture on top.,cabinet;dish;door,Person grabs dishes from a cabinet.,c112 5.60 10.70;c113 1.70 6.60;c118 5.00 12.30;c008 1.00 5.90;c006 5.00 10.20,14.25\r\nNM65M,DXDI,Hallway,5,7,Yes,A person walks down the hall with a towel over their shoulder. The person picks up a pillow and briefly snuggles it against their chest.,blanket;pillow;shelf;stand;table,\"A person walks through a hallway, picks up a pillow, snuggles it and puts it back down on a stand.\",c076 5.80 17.00;c078 5.00 17.00;c079 4.30 10.40;c009 12.40 16.90;c074 12.10 16.90;c072 5.90 16.10;c071 12.60 17.00;c081 12.60 17.00;c070 4.80 17.00,15.75\r\nXPY4P,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person carrying a bag grasps the doorknob to the recreation room. The person, with the other hand, is eating a sandwich.\",backpack;door;food;sandwich,\"A person is holding a sandwich and eating it while grasping a doorknob.;This person puts their hand on the door knob, takes a bite of food, and then lets go of the door handle.;The person is standing at the door eating a sandwich with their hand on the doorknob while looking at the door.\",,30.54\r\nHKM3R,2RTW,Living room,6,6,Yes,Two persons are taking turns playing a game on a laptop on a desk. They are also eating snacks.,food;laptop;table,Two people are playing checkers on their laptop while they eat chips.,c011 0.00 32.00;c051 0.00 32.00;c052 0.00 32.00;c156 0.00 32.00,31.00\r\nRXLKF,P6LJ,Living room,4,5,Yes,A person is reading a book while snuggling on the sofa. They put the book down and begin standing while holding a cup of coffee,blanket;book;coffee;couch;cup;glass;sofa;tissue,\"Person walks to couch wearing blanket, grabs book, place on lap, straighten blanket, opens book, reads it, closes book, place on couch, gets up, grabs tissue, clean face, place tissue back;The girl is walking to the couch with a blanket around her. She sits down, picks up a book, and begins reading. Then, she puts down the book and stands, takes a drink, puts it down, and walks back to the camera.\",c025 23.80 28.70;c028 25.50 30.20;c106 29.50 36.30;c026 4.30 30.20;c029 15.00 26.20;c032 6.40 28.70;c107 27.00 37.30;c070 0.00 39.00;c027 5.40 15.20;c030 0.00 3.30;c123 1.80 9.40;c110 27.00 32.70;c109 27.60 32.70;c151 2.60 9.20;c072 0.00 4.10,38.08\r\nKWONB,ID9V,Closet / Walk-in closet / Spear closet,4,7,Yes,A person throws a wardrobe in the closet. A person tidy up the wardrobe and picks some food off the wardrobe.,bag;closet;clothes;door;food;jacket;salad mix;shelf,A person is throwing clothes into a closet and then rearranging them. The person finds a bag of salad mix in the closet.;A person opens the closet door and picks up a jacket and throws it. Then they look around and get a bag of snacks and hold it.,c061 21.70 31.00;c113 0.00 6.30;c008 0.00 6.00;c004 5.50 21.80;c023 19.60 25.40;c003 2.00 8.40;c082 4.80 22.00;c063 18.30 28.60;c112 24.60 31.00;c114 4.80 22.00;c000 2.00 8.40,29.58\r\n1RB92,XXN8,Dining room,5,4,Yes,A person is eating while looking at their laptop. Another person is standing nearby pushing a vacuum.,bag;chips;food;laptop;table;vacuum,\"A person is sitting and using a laptop while eating chips. Another person walks over and starts cleaning the table with a mini vacuum.;A person sits at a laptop eating some food out of a bag.  Another person begins tidying the table with a vacuum, then leaves.\",c052 0.00 36.00;c137 2.70 31.80;c156 0.00 36.00;c012 2.70 32.10;c051 0.00 12.20,34.62\r\nYORQM,5LWB,Bathroom,5,5,Yes,\"A person opens the bathroom door and walks through the doorway. The person walks to the window, and opens it.\",door;window,\"A person walks takes a stool, walks into a bathroom, stands on the stool, and then does something in the window.\",c092 16.90 25.00;c097 3.50 17.00;c090 18.00 25.00,24.00\r\n40TYU,2Q9D,Dining room,6,7,Yes,\"A person is sitting in a chair holding a box of food.  The person opens the box and pours its contents onto some dishes, then throws the box onto the floor.\",box;chair;dish;food;table,A person is sitting at a table and pours food out of a box onto a plate and throws the box.,c045 9.70 14.60;c059 0.00 28.00;c062 3.80 13.00;c011 0.00 28.00;c118 11.40 28.00,26.79\r\nIJWV9,EXQX,Bedroom,7,6,Yes,\"A person is sitting on the bed. The person begins drinking from a glass, watching himself in the mirror.\",coffee;cup;desk;floor;glass;mirror,A person sitting on the floor at a desk drinks coffee from a glass while looking in a mirror;A person is sitting on the floor drinking coffee at a desk while they look in the mirror and tidy their hair.,c093 0.00 2.59;c106 0.00 49.00;c125 0.00 2.59,59.08\r\n8APDH,KFGP,Kitchen,4,6,Yes,A person is holding a pot over the stove then pours the contents into the sink.,dish;food;pot;sink;stove,A man is cooking over a stove. Then he drains water from a pot into the sink.;A person holds a pot over a stove. They pour water into the sink,c147 0.00 14.00;c118 0.00 27.00;c062 13.30 22.20;c120 0.00 2.60,25.88\r\nTMA9G,D0RU,Kitchen,1,7,No,A person is walking to the refrigerator and throwing food inside the door.,door;food;refrigerator,\"A person is removing food from a counter top, they then open a refrigerator door and place the food inside before closing the door and leaving.\",c143 5.20 14.50;c062 5.00 15.10;c142 19.70 25.50;c061 1.30 13.50;c063 11.70 17.20;c006 19.50 25.30;c008 4.50 15.10;c097 2.30 7.10,39.08\r\nGT53K,ID9V,Entryway (A hall that is generally located at the entrance of a house),3,6,Yes,\"A person walks to a light and turns it on, then they begin eating food.\",bag;food;light,A person is holding a bag of food then turns on the light as keeps eating.,c061 7.20 28.00;c104 6.00 12.00;c156 8.60 28.00;c020 0.00 28.00,26.75\r\n19PNV,L4ZP,Hallway,6,6,Yes,\"A person is watching something out of the window. The person takes a blanket and pillow from nearby, and snuggles up to them.\",blanket;pillow;window,A person is standing by a doorway peeking in a room then they grab a pillow and blanket and snuggle while looking out a window.,c092 0.00 17.60;c070 14.60 35.00;c072 14.40 35.00;c076 14.60 35.00;c078 14.60 35.00;c073 14.70 21.30,34.12\r\nMD6C0,L4ZP,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"In the hallway, a person sees a glass sitting on a desk. They take the glass and wash it.\",cup;dish;door;glass;rag;shelf;table;towel,A person walks through the door and grabs a cloth and begins to clean a cup.;A man opens a door and walks in. He starts washing a cup.,c097 0.00 5.90;c111 4.70 42.00;c008 0.00 6.30;c082 3.90 42.00;c121 5.90 42.00;c006 1.10 7.70;c038 4.70 42.00,40.71\r\nQO1TO,L4ZP,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person holding homework is standing at a desk with a laptop on it.,book;desk;homework;laptop;paper;table,Walks into hall carrying a book. Messes with a laptop in the hallway. Opens books.;A person holding some homework walks into the entryway to a laptop on a table and starts working.,c014 2.00 34.00;c115 0.00 34.00;c145 13.80 34.00;c051 3.20 9.80;c052 7.60 16.00,33.21\r\n9QMRD,C7O9,Bathroom,5,7,Yes,One person is drinking at the sink while another is sneezing because of the light above.,clothes;light;mirror;sink;table,People standing by the sink someone throw clothes in room one began to sneeze at the sink;Sneezing in a mirror.,c153 0.00 32.00;c096 0.00 32.00,31.42\r\nZXHLY,D0RU,Bathroom,7,7,Yes,A person is smiling while washing the glass and then cleaning the door in the bathroom.,bucket;counter;cup;dish;door;glass;toilet;water,\"A person carries a glass to a water bucket and washes it before putting it on the back of a toilet.  Then they fill a bucket with water and throw it on a door.;Person walks in room with cup, washes cup with water that is in the bucket, shakes it out and place cup on sink. Then person begins splashing water on door.\",c108 2.00 16.00;c111 2.00 16.00;c107 0.00 20.00;c119 15.10 20.80;c008 21.30 26.10;c121 4.30 10.90;c109 15.70 21.00,31.58\r\nNVGDG,54JK,Bedroom,6,6,Yes,\"A person covered in a blanket awakens and sits up in bed.  They get up with the blanket, walk over to the wardrobe and place it on a shelf.\",blanket;couch;pillow;shelf;sofa;wardrobe,Young person sleeping on the couch and waking up and bunching up the blanket;A person lying on a sofa and covered by a blanket awakens.  They fold the blanket and place it on a wardrobe and retrieve an item from a shelf.,c070 12.70 32.80;c072 0.00 14.90;c082 28.80 33.00;c122 0.00 12.80;c071 14.00 31.80;c075 16.70 32.80;c146 1.70 15.20;c154 12.80 19.30;c123 9.80 16.80;c073 13.00 17.30,32.21\r\nMJPET,1TZV,Stairs,6,7,Yes,A person is tidying books left on the stairs before the person begins washing a chair.,books;chair;cloth;staircases;stairs;window,\"A person is sitting on the stairs picking up some books. They keep the books in their hands as they clean a chair.;The person piked up some debris on the stairs and then started to clean some other areas of the dwelling.  Specifically, the person cleaned a chair seat very thoroughly.\",,26.96\r\n3ZHEX,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,,No,\"A person returns home through the house's entryway, drinking a cup of coffee and eating a sandwich.\",coffee;door;food;glass;sandwich,\"A door opens and a person walks in holding a coffee mug and sandwich.  They eat a bite of their sandwich and a drink of coffee.;A person opens a door, walks through the doorway and closes the door while eating a sandwich and drinking some coffee.\",c065 7.30 14.50;c008 0.00 5.30;c006 1.40 9.40;c067 0.00 26.00;c107 0.00 26.00;c106 0.10 7.10;c061 0.00 26.00,24.96\r\nNR94C,YMXV,Bedroom,5,7,Yes,A person is dressing and picking up a bag.  Then a person is watching television through the doorway.,bag;bed;clothes;doorway;shirt;television;tv,a person grabs a shirt off the bed and puts it on then grabs a bag and leaves the room after watching tv;A person takes a shirt from their bed and puts it on. They then grab a backpack and put on one strap and take a couple steps to the doorwa to watch tv.,c020 13.60 33.00;c132 21.40 33.00;c023 15.70 23.50;c148 0.40 19.70;c002 0.00 9.50,31.75\r\n1U9TF,PO5L,Hallway,6,7,Yes,Person is standing by door with vacuum cleaner then starts sneezing.,vacuum,A person is holding a vacuum. A person begins sneezing.,c137 3.70 15.80;c153 10.00 19.40,22.00\r\nHS3XP,6RE8,Bedroom,6,7,Yes,\"A person stands in the bedroom, watching themselves in the mirror. The person turns off the light and goes to bed.\",light;mirror,A person is standing and staring at a mirror then turns around and turns off the light.,c105 9.60 14.00;c154 0.00 14.00;c096 0.00 11.50,12.62\r\n370X8,KFGP,Laundry room,6,7,Yes,The person is in the laundry room smiling while working on the laptop and talking on the phone.,laptop;phone;table,The person talked on a handheld phone while typing on a laptop keyboard.,c015 0.00 31.00;c019 0.00 31.00;c052 0.00 31.00;c152 0.70 31.00;c014 0.00 31.00,29.50\r\nLOSLI,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"Person 1 is standing in the doorway to the laundry room. They are taking off their shoes very slowly, one at a time, and then putting the shoes on a small table next to the washing machine. Person 1 then starts sneezing.\",clothes;doorway;floor;shoes;table,A person walks into a room and picks clothes up off the floor and place it on the table.,c009 8.00 14.10;c001 7.80 14.00;c002 5.60 14.10;c127 6.10 11.60;c153 10.40 15.50;c153 12.40 18.00,23.29\r\n24XHS,S053,Kitchen,7,6,Yes,\"The person begins eating medicine, and then begins laughing while opening the refrigerator\",medicine;refrigerator,A person is taking medicine while laughing in the kitchen before opening the fridge.,c129 3.80 14.70;c143 20.30 26.30;c149 16.00 24.10;c152 15.50 35.00;c142 27.10 32.50;c128 0.00 29.10,33.88\r\n3P2U4,BYF9,Living room,5,6,Yes,A person is snuggling a picture and another is walking by a door.,book;chair;door,\"Someone is sitting on a chair hugging a picture frame. At the same time, someone opens a door, walks out and closes it.;A person holds a book in a chair. Another person reaches up and opens a door and walks outside\",,19.46\r\n73NG4,2Q9D,Kitchen,6,7,Yes,\"A person is pouring a drink that they got from a refrigerator, holding the cup they take a seat at a table.\",chair;cup;food;glass;refrigerator;table,\"A person walks into the kitchen, opens the fridge, pours a glass of juice, then sits at the table and drinks it.\",c108 5.70 13.10;c142 14.20 20.00;c151 21.10 27.80;c143 0.00 5.80;c011 21.90 33.00;c062 6.00 12.40;c106 24.10 30.70;c107 15.50 33.00;c059 21.70 33.00;c110 2.60 7.80,32.04\r\n409X2,OUKK,Laundry room,3,7,Yes,One person grasps a blanket for coverage and starts undressing in the chair.,blanket;chair;clothes;towel,A person folds a blanket over themselves and they sit in a chair. After that they get up out of the chair.,c059 5.80 27.00;c072 6.00 27.50;c151 3.70 10.20;c154 22.30 27.90;c155 6.80 31.00;c033 1.10 10.30;c073 1.30 10.60,29.71\r\n5GEJS,YMXV,Bedroom,5,7,Yes,A person is in the bedroom tidying up clothes that are on the bed.  The person takes their shoes off and puts them under the desk and leaves.,bed;clothes;computer;desk;shoe,A person gets up from laying down in bed and moves a pile of laundry.  Then the person puts his shoes under a desk.,c003 4.00 14.00;c134 0.00 12.80;c154 13.80 19.50;c054 20.80 29.80;c001 5.70 12.60;c053 17.10 31.80;c056 18.00 27.00,33.25\r\n2XT4N,3H6W,Recreation room / Man cave,6,5,Yes,\"One person starts tidying up a shelf full of shoes and pictures, then runs out of the room, grasping a light on the way.\",light;shelf,A person orders around some stuff on a shelf before leaving the scene.,c082 0.60 16.50;c150 13.60 18.90;c105 12.90 17.40;c081 0.60 15.70,19.50\r\nNEM29,T7C3,Bedroom,5,7,Yes,\"A person is undressing while the person watches television. Then the person puts their clothes on the floor and sits down, eating a snack.\",bag;bed;clothes;floor;food;television,A person removed their jacket dropping it to the floor and then sat on their bed. The person then watched TV while eating a snack from a bag.,c132 4.00 17.80;c155 0.00 5.20;c156 8.20 24.60;c002 12.30 26.40;c135 14.20 33.00;c061 13.90 33.00;c020 13.80 33.00;c003 7.70 14.50;c151 13.90 19.20;c021 18.80 26.50;c063 22.40 28.30;c023 12.80 18.90,32.42\r\nJCGWC,ZSRZ,Kitchen,7,7,Yes,A person is standing in front of a refrigerator in a kitchen. They begin cooking on a stove.,dish;food;refrigerator;stove,\"A person is closing the refrigerator. A person is cooking food on the stove.;A person stands at the refrigerator.  They close the refrigerator door, then walks to the stove and starts cooking some food in a pot.\",c147 4.50 25.00;c142 0.00 7.00;c118 9.40 25.00,24.21\r\nYT3VH,70CN,Living room,6,7,Yes,Person is lying on floor by door fixing laptop then starts laughing at doorknob.,doorknob;floor;laptop,Person sits on the floor working on their laptop before turning towards the door and attempting to reach for the door knob.,c051 0.00 21.00;c052 0.00 21.00;c124 20.00 30.00;c125 0.00 21.00,29.08\r\nEDKXT,WG9D,Bathroom,4,7,Yes,\"A person in the bathroom is undressing by taking their jacket off. They place their jacket in a bag, and pick up a pillow on the floor. They start drinking from a glass of water.\",bag;clothes;cup;glass;mirror;pillow,A person takes off a shirt and puts it into a bag and then picks up a pillow and takes a drink.,c106 10.60 15.00;c022 3.50 11.10;c001 3.40 11.10;c076 7.90 15.00;c155 0.00 6.20;c000 0.00 8.40;c096 8.80 15.00,13.67\r\n4JWAH,QB52,Basement (A room below the ground floor),6,7,Yes,\"A person is standing in a basement grasping a phone, they then sit down and grab a pillow that is near by.\",bed;phone;pillow,\"A young person walks into the room, sits on the bed, picks up a pillow and puts it on his lap and picks up the phone and looks at it.;The person is standing up and sits down on the bed. The person picks up a pillow and holds it. The person picks up a phone and texts. The person puts the phone down.\",c076 3.40 32.00;c079 3.40 14.00;c016 13.50 31.60;c018 12.90 18.40;c135 0.20 32.00;c077 6.80 17.50;c015 14.10 32.00;c151 0.00 5.80,30.67\r\n4DWGO,6RE8,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person walks into the entryway and throws their phone onto the table. The person laughs as they put on their shoes.,chair;clothes;doorway;phone;shoe;table,A person enters a room throws their phone on a table and puts on their shoes.,c055 12.50 33.00;c148 15.80 33.00;c151 12.10 16.70;c059 12.40 33.00;c009 7.20 12.30;c017 0.00 4.80;c097 0.00 4.70;c152 16.90 33.00;c015 0.00 11.80,31.50\r\nKU3WI,0RNU,Garage,6,7,No,\"A person walks into the garage, holding a cup of coffee. The person fixes their shirt collar in the mirror.\",clothes;coffee;cup;door;mirror;shirt,A person enters the room holding a coffee cup and closes the door. Then they look in a mirror and fix their shirt.;A person opens the door and walks in to the garage. The person is holding a coffee cup. The person adjusts his clothing while looking in mirror.,c096 6.10 24.50;c006 0.90 8.80;c008 0.00 5.70;c107 0.00 25.00;c141 0.00 7.20;c097 0.00 6.90,23.75\r\nYUEB9,ID9V,Dining room,3,6,Yes,A person is eating and reading a book at the dining room table. They start sneezing and get up to look out a window.,bag;book;chair;food;table;window,A person is sitting in a chair and reading a book while eating a bag of chips.;There is a person sitting at a table reading a book and playing with a bag.  That same person sneezes a few times and then gets up and looks out the window.,c092 21.00 29.40;c153 11.60 21.90;c011 0.00 22.60;c154 17.70 26.20;c021 0.00 9.10;c059 0.00 23.30;c032 0.20 23.10;c156 0.00 22.30,29.58\r\nS3TR3,9OIA,Garage,7,7,Yes,A person is using a broom and sneezing. They sit down and take off their shoes.,broom;floor;shoe,A person sneezes while they sweep the garage door. They then sit down and take their shoes off.,c098 0.00 24.30;c057 21.50 33.20;c153 10.00 17.40;c056 21.50 33.20;c125 19.00 27.00,40.46\r\nK71S1,2Q9D,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,A person is opening a box and putting clothes into it.,blanket;box;clothes;floor,A person is putting clothes on a box on the floor then gets up and stares at the box.,c041 0.00 5.60;c042 1.30 9.30;c154 12.10 26.80;c001 5.00 18.30;c000 11.80 18.20;c125 0.80 24.30;c151 0.00 5.30;c002 4.60 9.80;c071 11.80 21.50;c073 10.10 14.90;c004 12.20 20.90,29.83\r\nX8I9J,XXN8,Living room,6,6,Yes,\"A person walks through a door laughing. And, they begin undressing starting with their shoes.\",boots;clothes;door;jacket;shirt;shoes;sleeves,\"A laughing person comes in through the door and takes off a jackets and a pair of boots.   Finally the person pulls up her sleeves.;A young person comes in the door and closes it , takes off a jacket, and boots\",c149 0.00 9.10;c001 7.70 21.50;c003 7.70 21.80;c155 7.40 22.70;c152 0.00 8.80;c006 0.00 4.60,30.71\r\nNV1M1,I4RP,Living room,6,6,Yes,One person is laughing running through the entryway with a laptop while another person is leaving with a vacuum.,floor;laptop;vacuum,A person runs through a room holding a laptop while another person is vacuuming.,c137 0.00 5.00;c047 0.00 3.20;c150 0.00 3.20;c127 0.00 5.00,3.96\r\nOA9W5,UTMU,Closet / Walk-in closet / Spear closet,5,7,Yes,A person in a closet is smiling while eating a sandwich and opening a book.,book;food;sandwich,The person is sitting in a closet eating a sandwich and reading a book.,c067 0.00 12.50;c026 8.40 35.00;c030 9.00 15.80;c152 0.00 4.10;c065 0.00 12.40;c068 6.60 12.00;c027 11.60 18.60;c032 11.60 35.00;c156 0.00 11.50;c061 0.00 4.40;c062 8.20 12.90;c063 0.00 3.00;c025 31.70 35.00,34.46\r\nG5LEA,XXN8,Kitchen,5,7,No,A person puts a towel on a cabinet shelf in the kitchen.  The person closes the cabinet door.,cabinet;shelf;towel,\"The person folded a towel and opened the cabinet. They placed the towel in the cabinet, closed it and walked away.\",c033 0.90 14.10;c034 7.90 15.30;c037 0.00 8.70;c112 13.10 22.30;c113 6.50 13.00;c081 6.90 15.00,30.29\r\nA4K1X,L4ZP,Stairs,6,6,Yes,\"The person is walking up the stairs, tidying the area by picking up books and clothes lying on the stairs.\",blanket;book;clothes;clothing;doorway;pillow;shoes;stairs,\"A young person picks up several things up off the stairs and carries them up stairs.;A person picks up clothes and shoes and a picture from the stairs.;Person walks in a door, and picks up clothing while walking up the steps\",c030 2.50 9.20;c002 10.80 25.90;c028 24.00 29.90;c117 3.30 8.50;c115 3.10 31.00;c000 6.30 11.30;c097 1.20 5.60;c070 20.20 25.10;c073 21.90 26.60,30.00\r\nY98NJ,WG9D,Living room,5,7,Yes,A person is seen laughing while looking at a picture on their phone. They then close their phone and begin leaving.,camera;phone;picture,\"A person looks at a camera, takes a picture and then walks away.;A person is standing and laughing at something on a phone.\",c087 0.00 3.00;c149 0.00 3.10;c015 0.00 4.00,2.54\r\nVSO80,YA10,Kitchen,7,7,Yes,A person walks into the kitchen and takes some food out of the refrigerator.  They eat the food and close the refrigerator before sitting down in a chair.,chair;dish;food;fridge;plate;refrigerator,\"A person opens a refrigerator door and gets some food out. The person begins eating and then sits down in a chair.;A person opens the fridge, takes out a plate, and starts eating, then sits down in a chair.\",c142 7.40 12.90;c059 19.60 32.00;c063 5.10 12.50;c118 8.20 32.00;c061 7.80 32.00;c156 11.10 32.00;c151 17.70 32.00;c143 1.00 13.30,31.50\r\nPRVHF,X5XO,Dining room,6,6,Yes,The person is fixing the cabinet while tidying a pile of shoes in the dining room.,cabinet;door;floor;shoe,Person walks over to the cabinet putting something in the cabinet then bend down to organize shoes,c053 15.50 34.00;c056 15.50 34.00;c113 0.00 15.40;c007 0.00 17.00;c054 13.80 34.00;c127 14.00 34.00;c112 8.60 16.00,32.96\r\n9J074,2Q9D,Laundry room,6,7,Yes,\"A person sits in the laundry room, folding clothes. The person puts the stack of folded clothes on top of a pillow on the table.\",clothes;pillow,A person sits on a dryer folding clothes. They then drop them on a pillow on the floor.,c004 0.00 28.00,29.42\r\nHXCGX,YMXV,Bedroom,6,7,Yes,A person is eating on a bed.  Then a person is fixing a box that was open at both ends.,bed;box;food,Person sitting on the bed eating pick up a box and open it put something in it and closes the box.;A person is sitting on the bed eating food. They grab a box and tidy it up.,c040 11.20 33.00;c135 0.00 33.00;c156 0.00 14.70;c061 0.00 14.90;c043 11.70 18.60;c039 25.00 33.00,32.08\r\nORM2H,0KZ7,Living room,5,7,Yes,Two people are snuggling on the sofa. One person is laughing and the other person is trying to work on homework.,homework;paper;sofa,Two people are sitting on the couch. One of them is writing in a book doing homework.,c145 0.00 29.00;c123 0.00 29.00;c152 0.00 29.00;c115 0.00 29.00,28.42\r\nLWJGN,WG9D,Home Office / Study (A room in a house used for work),5,7,Yes,A person is tidying a cabinet in a home office. The person sneezes and takes a drink of coffee.,cabinet;coffee;cup;shelf,\"A person is tidying up something on the cabinet. The person then sneezes, and picks up a glass of coffee from the cabinet and drinks it.\",c106 4.00 8.00;c110 3.10 7.80;c114 0.00 5.20;c153 1.40 6.50;c082 0.00 5.20,7.33\r\nCIGGJ,YA10,Laundry room,6,7,Yes,A person is throwing broken glass into a trashcan and then running a broom across the floor of a laundry room.,broom;floor;glass,\"Person is picking up glass from a laundry room floor. After picking up the large pieces of glass, they use a broom to finish sweeping it up.\",c127 0.00 17.30;c102 16.80 32.00;c154 13.40 18.70,30.83\r\n0WGTG,YMXV,Bedroom,7,1,No,A person grabs a tool bag off a table and laughs. The laughing is interrupted by several sneezes.,bag,A person is looking through a bag and then sneezes and picks up the bag.,c020 20.10 29.40;c021 0.00 4.60;c153 18.20 30.20;c023 19.30 24.10,31.08\r\nX29NF,T7C3,Bedroom,6,7,Yes,A person is sneezing while taking a bit of a sandwich then watches themselves undress in front of a mirror.,bed;clothes;clothing;food;mirror;sandwich,\"A person is sneezing while looking in the mirror. A person takes a bite of a sandwich, then takes off an article of clothing.;A person is sitting on a bed sneezing in front of a mirror.\",c094 0.00 8.00;c065 13.40 23.40;c155 18.10 31.30;c156 13.40 23.60;c135 0.00 44.00;c096 0.00 44.00;c067 11.70 21.10;c153 1.00 15.90;c000 16.60 36.70;c003 30.10 36.00,42.79\r\nIACBH,6RE8,Bedroom,5,7,Yes,A person is seen watching television and putting away clothes. They begin snuggling with a blanket and laying on a couch.,bed;blanket;computer;desk;television,A person is standing in front of a desk watching a computer monitor. The person throws a blanket on the bed and then lays down on the bed.;A person looks at a tv screen. The person throws a blanket onto a bed and lays on the bed while watching tv,c134 10.90 35.00;c132 0.00 35.00;c074 7.00 12.20;c072 12.80 35.00,34.42\r\nE23CT,JVLO,Garage,6,4,Yes,A person is standing in the garage holding a broom.  The person throws the broom into the corner and grabs a vacuum instead.  The person turns off the light and leaves the room.,broom;doorway;light;window,Person takes their broom and moves it into another room before walking towards the door.,c098 1.60 20.90;c099 12.70 20.70;c100 0.00 6.40;c105 22.60 30.50;c092 0.00 5.00;c097 5.10 11.70,31.67\r\nAXFJP,25TD,Laundry room,6,7,Yes,\"A person puts a bottle of medicine onto the shelf, then goes over to the washing machine to wash their clothes.\",clothes;doorway;drawer;food;laundry;medicine;washer;washing machine,\"person standing in laundry room, putting things away and putting a load of laundry onto washer;Person walks in room, open drawer, place can inside, closes drawer, grabs clothes and puts in on top of washer.\",c001 13.30 30.00;c000 8.90 13.80;c002 13.30 22.10;c097 0.00 4.20;c004 13.30 30.00,29.08\r\nHDX87,0KZ7,Laundry room,6,7,Yes,Two people walk into a laundry room. One person eats a sandwich while the other looks out a window.,food;sandwich;window,\"A person is looking out the window, while another person is eating a sandwich.\",c092 0.70 29.00;c065 0.40 29.00;c067 0.40 29.00;c156 0.70 29.00,28.42\r\nV1SQH,Z68L,Bathroom,6,6,Yes,\"A person runs into the bathroom, grasping a cup of coffee. The person drinks from the cup, and sets it down on a table.\",coffee;cup;doorway;mirror;shelf,\"A person is drinking a cup of coffee. A person then walks out the doorway.;A girl drinks from a glass while looking in the mirror.  She does this twice, and then leaves the bathroom.\",c107 0.40 13.20;c110 13.80 18.70;c106 14.70 20.80;c106 2.30 12.10;c109 8.20 15.20;c107 1.40 6.80;c081 20.10 25.70,27.96\r\n48WOM,Z68L,Bathroom,6,6,Yes,\"After entering the bathroom, a person looked in the cabinet, and began smiling when they found the box with the medicine in it. They then threw the bottle of medicine across the room.\",box;cabinet;doorway;medicine;shelf,\"A person is going through a shelf in the bathroom. The person takes some medicine out of the shelf and shakes it.;A person walks into the bathroom and removes some medicine from the cabinet. They throw the medicine and laugh.;A girl walks into a bathroom, opens a medicine cabinet and takes out a box. She opens the box and takes something out and tosses it somewhere.\",c113 3.70 8.80;c149 17.30 24.40;c128 12.20 20.10;c152 18.90 26.00;c097 1.50 6.60;c043 8.10 15.70;c040 4.20 10.20;c041 4.20 9.50;c044 11.50 15.80,24.67\r\n61N26,Z68L,Bathroom,6,6,Yes,A person is in the bathroom using their laptop with a broom next to them. They are sitting on the toilet holding the laptop.,broom;doorway;laptop,A person is taking a laptop and sitting on the toilet then they put a broom away and resume to working on their laptop.,c098 12.40 20.50;c099 12.90 20.90;c047 1.80 43.00;c052 0.80 43.00;c097 0.00 4.10,42.38\r\nIOBKP,CCI9,Bedroom,5,6,Yes,\"A person is snuggling in bed with a pillow and a book. They take a drink from a coffee cup, get up, and leave.\",bed;coffee;cup;dish;glass;pillow,Person is sleeping in bed with a pillow. He then sits up and drinks out of his cup that was placed on the floor near his bed.,c107 18.40 35.00;c135 12.20 24.20;c106 19.70 28.30;c076 0.00 15.00;c078 4.20 13.50;c110 14.10 23.70;c133 4.30 14.50;c109 28.10 35.00;c077 3.50 19.60;c154 23.30 33.30;c118 17.70 22.90;c146 3.60 17.60;c118 16.80 35.00;c152 28.60 35.00,34.17\r\nTCV1W,KQI6,Bedroom,6,7,Yes,\"A person walks into the bedroom, carrying a pillow. They turn off the light and close the door.\",blanket;door;light;pillow,\"A person grabs a pillow, walks out of the room, turns the light off in the other room and closes the door.\",c076 0.00 15.10;c105 13.20 18.20;c006 15.30 31.00;c141 14.80 31.00;c104 11.40 17.30;c072 0.00 31.00,29.96\r\nB8BSY,XXN8,Home Office / Study (A room in a house used for work),7,7,Yes,A person is playing with a camera next to a cup of coffee. The person sneezes.,camera;coffee;cup;table,\"A person, sitting next to a cup of coffee is texting on a smartphone while sneezing at the same time.\",c153 12.70 18.40;c016 0.00 32.90;c015 0.00 33.00;c011 0.00 33.00;c016 30.10 33.00;c015 30.10 33.00;c017 30.10 33.00;c011 30.10 33.00;c009 30.10 33.00,31.79\r\n7KZ20,BYF9,Living room,7,5,Yes,One person holds a vacuum while another watches them near a shelf.,vacuum,Two people standing in a living room while one person holds a vacuum cleaner.,c137 0.00 17.00;c152 7.30 17.00,15.83\r\nQSSCH,ZAWX,Basement (A room below the ground floor),5,4,Yes,A person runs into the basement and takes their laptop from the arm of the sofa. The person then quickly leaves.,doorway;laptop;sofa,the person came from top stairs and took laptop went again up from steps,c047 7.40 23.20;c097 8.80 15.80;c050 13.70 19.80,29.67\r\nVIN8S,6RE8,Hallway,5,7,Yes,Person walking into hallway is smiling then puts blanket on floor and take picture with camera.,blanket;camera;floor;phone;picture,A person is throwing a blanket on the floor then with a camera they begin to take pictures of the blanket.,c126 4.40 15.20;c074 3.80 17.90;c015 12.40 32.70;c087 13.30 29.50;c070 0.70 11.70;c071 7.80 12.30,33.83\r\nESTDK,T7C3,Pantry,6,7,Yes,\"One person opens a cabinet to pour something from a box into a glass, then laughs before putting the box back.\",box;cabinet;cup;food;glass;shelf,\"A person opens up the cabinet, removes a box, picks up a glass and fills the glass with the contents of the box.  The person puts the glass down, opens the cabinet and puts the box away.\",c107 8.50 30.90;c108 8.30 28.50;c113 0.00 9.20;c041 11.90 19.80;c044 8.10 24.90;c061 0.90 32.70;c039 27.40 33.20;c063 0.00 7.70;c081 24.60 33.40;c110 6.20 11.60;c062 22.30 28.00;c112 0.00 3.60;c043 0.50 5.60;c042 27.70 33.00;c109 21.00 27.20,32.62\r\nXUYCA,6RE8,Pantry,4,2,Yes,The person was tidying the books and clothes in the garage after the person was doen eating.,book;chair;dish;floor;food;shelf;table,A person sitting in a chair with a bowl of food.The person is eating the food .The person puts the bowl on a table and walks to a shelf and starts going though the food.;A person sits in a chair eating then stands up and walks to a shelf to tidy up books.,c156 0.00 9.20;c154 6.10 11.30;c061 0.00 9.00;c062 3.60 9.20;c009 4.10 9.80;c059 0.00 10.70;c118 1.20 7.60;c119 3.90 10.50;c082 20.40 31.00,30.42\r\n25BZ1,C7O9,Pantry,6,7,Yes,\"One person is at a chair dressing into a pair of shoes. Then, this person stands and runs out with their homework.\",chair;homework;paper;shoe,A person is sitting in a chair putting their shoes on.  That same person picks up paper off a cabinet and leaves the room.,c055 0.00 19.80;c059 0.00 21.40;c117 19.40 25.00;c115 19.70 25.00;c154 16.70 22.80;c150 19.30 25.00,24.46\r\nL5TI4,PKND,Living room,7,4,Yes,A person is putting food on the table. A person is doing their homework and eating a sandwich at the table.,food;homework;paper;sandwich;table,\"A person reaches into a red pot sitting on a glass table and pulls out some food.The person puts the food by their mouth, while writing in a book.\",c011 0.00 32.00;c061 0.80 32.00;c063 0.00 5.70;c067 0.80 32.00;c145 0.00 32.00;c062 27.20 32.00;c065 0.00 32.00;c069 0.00 5.20;c014 0.00 32.00;c009 0.00 32.00,30.50\r\nBXL9D,Z68L,Bathroom,7,7,Yes,Person is tidying up bathroom then starts washing food off doorknob.,cleaner;cleanser;doorknob;sink;sponge;towel,A person is cleaning a sink with cleaning products and a sponge. The person then starts cleaning the doorknob with the sponge.;A person is cleaning a sink with cleanser and a towel.  The person puts the cleanser down and washes a doorknob.,,44.08\r\nVFTRG,UTMU,Stairs,7,7,Yes,A person is lying down on the stairs grasping a pillow. They sit up and take off their shoes.,clothes;floor;pillow;shoe,\"A person is laying on stairs holding a pillow, the person then sits up and takes off shoes.\",c078 3.60 16.70;c057 8.50 21.10;c125 10.30 24.00;c076 0.00 24.00;c124 0.00 14.60;c155 11.60 22.50,23.25\r\n6HR54,BYF9,Dining room,6,6,Yes,\"One person is at a chair at the table smiling and enjoying a cup of coffee, while another is tidying up the area.\",chair;clothes;coffee;cup;dish;glass;table;towel,A younger person appears to be cleaning a table with a mitt on while an older person is sitting at the table and drinking out a glass.,c059 0.00 26.00;c107 0.00 26.00;c011 0.00 26.00;c106 0.00 26.00;c012 0.00 26.00;c013 0.00 26.00;c038 0.00 26.00;c038 0.00 4.20;c152 0.90 8.40;c118 0.00 26.00;c014 0.00 26.00,25.42\r\nKB0Y8,9OK1,Dining room,2,7,Yes,\"A person is in a dining room holding a bag near a table, after looking inside of it they get frustrated and throw it on the floor.\",bag;counter;floor,\"Person picks up purse from counter, opens it, looks into it, then throws it to the floor\",c020 0.00 8.90;c021 0.00 4.50;c024 4.80 9.00;c126 4.80 9.00,8.50\r\n2C253,HR43,Bedroom,7,7,Yes,A person is in their bedroom watching a video on their phone. They start drinking from a glass of water while putting a blanket on the floor.,bed;blanket;cup;floor;glass;phone,The person is sitting on the bed texting while doing so has a drink and to get more comfortable throws a blanket on the floor.;A person plays on their phone in a bed. They drink something from a glass and put a blanket down,c015 0.00 24.50;c126 20.50 27.00;c109 14.60 22.70;c151 19.10 27.00;c135 0.00 24.80;c016 0.00 22.50;c106 17.60 23.60;c074 21.20 27.00;c154 19.70 25.70;c073 21.20 27.00;c107 17.10 24.00;c110 16.20 21.60;c017 19.10 24.10;c071 21.20 27.00;c070 21.20 26.90,26.12\r\nJMA1R,KL48,Kitchen,6,6,Yes,A person is taking a kitchen towel out of a cabinet.  Then a person is opening the oven and turning on the stove.,cabinet;stove;towel,\"A  person walks into the kitchen, picks up a towel and checks something in the stove, then adjusts the dials on the stove an puts the towel on the counter.\",c034 4.10 9.50;c035 1.70 7.00;c033 2.30 8.90;c038 11.70 16.00,15.25\r\nCOPHL,EIO2,Living room,7,7,Yes,Person is awakening from falling asleep behind desk and opens book and starts doing homework.,book;chair;desk;homework;paper;pencil;table,\"A young man woke up rubbed his face, opened a book, and started writing in it.;A person is sitting at a table. They open up a book on the table and start writing on it with a pencil.\",c027 9.30 14.20;c145 13.70 31.00;c059 0.00 31.00;c014 9.50 31.00;c032 8.70 31.00;c146 2.80 12.70;c011 6.80 31.00,30.17\r\nZ5JZD,EE32,Pantry,5,3,No,A person is grasping medicine while standing in a pantry. The person is running their hands over various items until they stop and pick up a bag from the shelf.,bag;closet/cabinet;door;food;groceries;shelf,A person is putting some groceries in a bag away. The person then closes the pantry door.;A person takes a bag of groceries and takes the items out and puts them on a shelf.  That same person then closes the door to the cabinet and leaves,c081 6.30 19.80;c021 3.20 8.30;c008 1.30 7.00;c020 0.00 27.20;c006 19.90 25.70;c130 3.40 16.30;c063 0.60 19.20;c061 6.20 19.00;c062 0.60 23.70;c112 20.20 26.50;c113 1.30 7.20,27.17\r\nAZZ3W,4OHY,Bedroom,5,7,Yes,\"A person throws some dirty clothes from a chair. The person begins dressing, and finally puts on shoes.\",chair;clothes;shoe,\"The person tidies up their clothes off the floor. They get dressed, sit in the chair, and put on their shoes.\",c055 24.10 28.90;c059 22.00 26.90;c148 8.50 13.70;c151 20.80 25.70;c059 20.00 31.00;c004 0.00 7.00;c055 21.00 31.00;c002 5.80 12.10;c003 0.00 7.70;c000 7.20 11.90,30.00\r\nIPH08,HR43,Kitchen,7,7,Yes,A person in their kitchen is walking around while grasping their shoes in their hands. They put their shoes down and then pick up some dishes that they put into a sink.,cup/glass/bottle;dish;hand;shoe;sink,\"Person is holding shoes in hands, then sets them down on floor and starts putting dishes in sink.\",c119 6.10 18.00;c053 0.00 7.60;c120 7.30 12.40;c110 11.90 16.30;c109 15.00 19.00;c054 3.30 7.90,18.38\r\nK7FNC,YMXV,Home Office / Study (A room in a house used for work),4,5,Yes,\"A person is putting their hand on the doorknob, leaving. Then the person turns, watching, as a person sits into a chair and opens their laptop.\",chair;door;hand;laptop;table,A person opens a door and walks out. A person is sitting at their computer doing work.,c059 12.70 33.00;c141 0.00 5.50;c052 13.00 33.00;c008 0.70 9.80;c011 11.70 33.00;c051 19.20 33.00;c014 19.20 33.00;c097 2.20 7.80;c048 11.70 23.20,31.88\r\nL36YT,BYF9,Living room,6,7,Yes,A person grasps a broom and begins cleaning underneath a table. Another person throws a ball onto a sofa and sits down.,broom;floor;sofa;table,A person walks through their living room and picks up a broom and starts sweeping under a table. Another person walks in and sits on the sofa.,c123 17.80 22.00;c098 3.90 22.00;c100 3.80 10.00;c102 6.00 22.00;c151 16.90 22.00;c125 5.70 22.00;c127 5.90 22.00,20.75\r\nDLQIT,PO5L,Basement (A room below the ground floor),7,7,Yes,A person in their basement is playing with a chair. They start pouring themselves a glass of water and then start working on some homework.,book;chair;cup;glass;paper,\"The person walked to the end of the hall and sat on a chair, poured water into a glass took a drink and then briefly looked at a book before getting back up.;a person goes and sits on a chair and pours themselves a drink then does some work\",c115 7.40 37.50;c151 5.10 16.60;c108 12.40 18.30;c106 17.60 23.50;c059 7.00 12.90;c154 32.50 37.70;c027 28.90 34.20;c107 8.70 26.30;c030 21.80 28.50;c028 31.40 37.50;c025 29.20 35.40;c032 25.60 35.50;c026 22.90 36.90;c110 9.10 14.10,38.25\r\nFBHBP,PO5L,Recreation room / Man cave,4,1,No,A person is fixing a sandwich and then closing the picture next to the sofa.,chair;food;sandwich;sofa;table,\"Person walks in and sits on couch, picks up food from table, eats the food, then leaves.;A person sits on the sofa and eats some food.\",c065 9.20 14.70;c123 1.90 7.30;c151 0.00 7.30;c061 4.00 15.30;c062 8.10 15.60;c063 3.60 9.10;c156 9.50 14.70;c154 14.90 21.40;c059 1.90 8.00;c011 3.80 19.60,22.42\r\nD2GQH,ZAWX,Garage,4,6,Yes,A sneezing person is sitting in their garage. The person eats a sandwich while looking in a mirror.,food;mirror;sandwich,The person is sitting looking at something. The person sneezes. Another person is sitting near them. The person picks up a sandwich and takes a bite. The person looks in the mirror.,c065 14.10 32.00;c067 13.50 32.00;c069 12.80 18.30;c096 17.10 32.00;c153 0.00 3.70;c156 15.20 21.50;c061 14.40 32.00,30.71\r\nUXW88,KFGP,Bedroom,3,6,Yes,\"A person is lying on the bed playing a game on their phone.  The person gets up and puts their phone on the desk, then walks to the window and tidies up the curtains.\",bed;clothes;curtain;phone;table;window,A person is lying on the bed looking at a phone. A person gets up and fixes the curtain.,c134 0.00 12.70;c009 12.30 17.60;c015 11.80 17.90;c016 0.00 12.30;c154 12.70 26.10;c089 14.40 25.70;c004 21.10 26.40,25.96\r\nYL612,6RE8,Kitchen,1,6,Yes,\"A person is standing and holding a camera. Then, throwing a pile of clothes onto the floor, the person sits on the chair.\",chair;clothes;floor,This person picks up clothes form a basket and throws them on to the floor.,c126 12.40 18.30;c001 13.30 18.30;c003 12.90 18.40;c002 8.60 19.40,31.54\r\nEMMYX,XXN8,Pantry,6,6,Yes,A person is putting groceries in a closet and smiling as they are closing the door. They put a broom at the entrance.,broom;closet/cabinet;door;groceries;shelf,\"A person is putting groceries into a pantry, then shuts the pantry door and leans a broom against it and smiles.\",c099 23.60 32.00;c006 19.20 27.50;c130 0.00 22.00;c112 18.50 25.40;c081 0.50 6.40;c081 6.00 12.30,31.08\r\n5P0ON,2Q9D,Laundry room,7,7,Yes,\"A person is standing in their laundry room eating a cookie. The person grabs a vacuum to clean the crumbs. The put the vacuum back, grab a blanket from the dryer, and leaves.\",blanket;clothes;dryer;floor;food;shelf;vacuum,A person is standing in the laundry room eating. They grab a vacuum off the shelf and clean the floor before taking a blanket out of the dryer.,c073 25.40 34.00;c137 8.10 23.00;c156 0.00 8.00;c070 26.90 34.00;c081 17.40 25.30;c061 0.00 5.90;c000 25.50 34.00;c002 25.50 34.00;c127 8.30 22.00,32.58\r\nPOU1Z,3VLX,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person is tidying the closet and starts running the vacuum. They stop, pick up a broom and the vacuum and leave.\",brom;broom;closet;clothes;clothing;doorway;light;vacuum;wardrobe,\"The person goes into the closet and looks through clothes before vacuuming the floor and grabbing a broom.;A person is tidying up their closet. The person rearranges the clothes and starts to vacuum the floor in the closet. The person picks up a broom, turns off the light in the closet, and walks out of the closet.\",c098 29.80 38.70;c137 13.30 34.10;c004 0.00 16.20;c105 32.00 36.60;c114 1.60 23.00;c097 19.40 30.90,37.71\r\nJOLLV,2RTW,Living room,6,6,Yes,A person is snuggling under a blanket.  Another person is leaving the entryway to put food in the refrigerator.,bag;blanket;doorway;food;groceries;refrigerator;sofa,A person is sitting on the couch with a blanket trying to sleep while another person walks through with a bag of groceries and takes them to the fridge and puts them away.,c143 10.80 17.30;c062 13.30 33.00;c072 0.00 7.70;c130 13.30 33.00;c123 0.00 7.70;c020 4.00 33.00;c097 4.60 10.10,31.58\r\nXS6PF,2RTW,Living room,6,6,Yes,\"The person flings open the door and runs into the recreation room.  Grasping a sandwich and a blanket in their hands, they check the television to see if they made it before the show started.\",blanket;clothes;coat;couch;door;floor;food;remote;sandwich;sofa;television;tv,\"The person bursts into the front door holding a blanket and a sandwich in their hand and leaves the door open and then throws the blanket on the couch then goes back and shuts the door then grabs the tv remote, turns it on and then sits on the couch and then stands back up while grabbing the tv remote.;A person opens a door, walks in, throws clothes down and closes the door.  The person sits down, picks up a remote and turns on the TV.\",c006 7.70 13.90;c067 3.30 8.30;c071 5.40 10.10;c132 23.80 32.00;c154 18.20 23.60;c000 3.20 7.90;c123 14.70 22.50;c008 2.40 7.80;c070 3.80 9.80;c074 5.40 10.00;c151 13.80 19.40;c061 2.10 32.00;c126 5.70 10.10;c141 2.20 6.90,31.25\r\nE891N,2RTW,Living room,6,6,Yes,A Person holding a blanket around themselves and wearing nothing else but socks opens a wardrobe and begins talking to themselves about what they are going to wear today.,blanket;closet;clothing;couch;door;wardrobe,A person is wrapped in a blanket. A person then opens a wardrobe and looks for an article of clothing.;A person wraps himself in a blanket. A person then stands up and opens a closet door.,c070 0.00 32.00;c113 20.80 27.00;c073 12.80 28.80;c154 12.20 19.80;c072 0.00 32.00;c097 18.60 26.40;c008 20.20 28.80,31.42\r\nJXF3M,BYF9,Living room,7,7,Yes,\"An exhausted person is taking a nap in a chair at their dinner table. They awaken and walk up to a mirror, examining themselves.\",hair;mirror;table,\"Person sleeping on chair, then walks up to a mirror to clean up.\",c011 0.00 18.80;c059 0.00 19.00;c146 11.30 20.50;c154 12.20 21.20;c096 27.30 36.00;c144 29.40 36.00,34.58\r\n03OQS,YMXV,Bedroom,7,7,Yes,A person is grasping food while another person is throwing clothes.,clothes;dish;food,A person picks up some food. Another person enters the room and hangs up some clothes.,c003 13.30 33.00;c063 0.00 8.70;c120 1.00 13.60;c000 8.50 32.30;c001 9.60 26.50;c061 1.00 13.60,31.62\r\nG9IUG,L4ZP,Recreation room / Man cave,6,7,Yes,\"A person sits in the recreation room, wrapped in a blanket and reading a book. The person gets up and runs out, leaving the room.\",blanket;book;chair,\"A person is sitting in a chair with a blanket wrapped around their shoulders, reading a book. The person gets up suddenly and leaves the room.\",c026 0.00 32.00;c032 0.00 29.00;c072 0.00 31.50;c150 25.60 32.00;c154 25.30 30.70;c059 0.00 29.60;c145 0.00 27.50;c115 0.00 30.00;c028 25.20 30.00;c025 23.80 28.30,30.67\r\nFN71T,9PLL,Bathroom,7,7,Yes,A person is tidying up their bathroom while talking on their phone. They take a pile of clothes and close the door and leave.,clothes;door;phone;sink,\"A person walks into a bathroom talking on a phone. The person then begins pick things up off the floor and placing them into the sink. The person then picks up some clothes off the floor and walks out of the bathroom.;Person walks into bathroom, while talking on the phone. Person puts some stuff in the sink and then grabs clothes and walks out of bathroom, while still talking on the phone.\",c019 0.00 33.00;c002 20.00 28.40;c015 0.40 32.10;c097 0.00 5.70,31.83\r\nOVEXF,D0RU,Bedroom,7,1,No,\"One person is sitting in a towel closing a laptop, then the same person puts it on a shelf by some clothes.\",clothes;floor;laptop;shelf;something;towel,A person is sitting on the floor on a towel while on their laptop.,c046 14.00 18.90;c049 11.80 18.20;c081 23.30 29.40;c125 0.00 19.30;c047 0.00 18.80,31.33\r\n0Y8H0,3H6W,Kitchen,4,7,Yes,A person is running through the door and fixing a water for drinking from the sink.,counter;cup;doorway;mug;sink;water,\"A person runs through a living room and into a kitchen, picks up a coffee cup, fills it with water from a faucet, and takes a drink. The person then pours out the rest of the water and walks away.;A person runs into a kitchen to get a cup of water from the faucet only to pour most of the cup out.\",c106 10.50 17.40;c150 0.00 10.30;c109 13.70 18.80;c110 6.30 11.30;c097 0.00 3.90,19.17\r\nV3RAX,R1OT,Basement (A room below the ground floor),5,6,Yes,\"A person is undressing under a blanket, then tidying up dirty clothes and finally eating a sandwich in a basement.\",bed;blanket;clothes;cover;food;sandwich;shirt;table,A person is lying on a bed takes off clothes gets up tidys clothes eats something;A person laying bed under a cover takes their shirt off .The person removes the blanket and gets out of the bed.The person walks to a table and straightens clothes than takes a bite of a sandwich.,c065 20.80 29.00;c156 20.30 29.00;c061 21.10 29.00;c002 9.60 21.20;c072 0.00 12.90;c155 3.50 10.40;c154 10.70 16.00;c134 0.00 14.20;c063 21.10 29.00;c004 14.80 24.40;c000 10.60 19.50;c070 0.00 14.30;c001 14.80 19.50;c000 4.90 24.80;c074 7.10 15.60;c062 21.40 28.60,27.96\r\n0F1VF,HR43,Bedroom,6,5,Yes,\"One person throws a book on a shelf with a picture on it, then sits with some homework.\",book;paper;shelf,The person walks to put a book on a shelf. The person walks to pick up a piece of paper. The person walks and then sits down and looks at piece of paper they are holding. The person shows the piece of paper to the camera. The person walks again.,c081 0.00 5.40;c026 0.00 4.20;c115 4.80 21.90;c117 4.50 9.30;c151 6.00 10.90;c154 15.70 20.90;c028 0.00 4.50,29.71\r\nX3LEM,KQI6,Hallway,6,5,Yes,One person puts a picture next to a mirror as another person lies on the sofa with a phone.,chair;light;mirror;phone;picture;sofa,\"A person is taking a picture from a chair then putting it next to a mirror and turning on a light. Person B begins to sit on a couch.;A person picks up a picture off a chair and puts it on a wall. The person turns off the light. Another person takes a phone from a table and sits down on a sofa,\",c084 0.00 26.00;c123 26.70 32.00;c151 26.70 32.00;c105 10.30 21.50;c086 0.50 24.20;c096 15.10 21.50;c087 0.00 6.00;c018 22.50 29.00;c104 13.50 19.40;c015 25.00 32.00;c083 0.60 5.60;c088 3.30 24.30,30.96\r\nFM5D5,KFGP,Living room,5,7,Yes,\"A person walks into the living room, holding a bag of clothes. The person throws down the bag and sits on a chair.\",bag;chair;clothes,\"Person comes into living room, puts bag down, sits down, looks at bag again.\",c059 8.90 35.00;c004 11.00 18.10;c020 10.40 17.50;c022 11.30 17.50;c151 8.40 13.80;c024 4.20 11.80,33.58\r\nMN1MC,T7C3,Kitchen,7,7,Yes,A person is seen sneezing as they look at their laptop. They start grasping some food and take a bite but don't like how it tastes.,arm;dish;food;laptop;picture;sandwich,\"A person is standing, looking at a laptop, and sneezing. They then pick up a sandwich from a dish and take a bite;A person holds a laptop and sneezes into their arm. The person then sneezes again and eats a sandwich\",c061 18.70 31.00;c063 18.20 24.50;c047 0.00 31.00;c051 0.00 31.00;c156 16.70 29.10;c065 16.10 31.00;c153 2.70 7.60;c064 26.30 31.00;c088 0.00 17.70,30.42\r\nKT3MJ,HR43,Kitchen,6,6,Yes,\"A person grasps a heavy pot from the refrigerator, puts it on the stove, opens the lid to peek in, then starts cooking.\",food;refrigerator;stove,A person opens a refrigerator door and removes a pot then closes the door. The person puts the pot on a stove and turns on the gas flame.,c147 22.80 34.00;c142 5.20 10.30;c147 9.20 34.00;c143 0.00 3.80;c062 6.80 13.60;c063 0.00 8.40,32.54\r\n0MK2C,DXDI,Stairs,7,7,Yes,A person is running up the stairs holding a pair of shoes.  The person goes through a door.,doorway;shoe;stairs,A person runs up the stairs carrying a pair of shoes and opens a door.,c150 1.50 8.80;c053 1.10 8.80;c097 4.00 9.50,9.04\r\nIIFVE,HJJ4,Stairs,7,7,Yes,\"A person is throwing some clothes down a flight of stairs. They almost throw a towel, but change their mind and put it around their neck. They snuggle the towel and then walk away.\",blanket;clothes;towel,A person is throwing clothes on the floor then putting a towel around their neck and snuggling with it before walking up the stairs.,c033 0.00 24.30;c000 0.00 26.30;c003 1.90 9.70;c070 5.50 10.40,25.88\r\nHWL2J,C7O9,Kitchen,4,7,Yes,\"One person sneezes and laughs into the phone as another walks through the doorway, closing the doorknob behind them.\",doorknob;doorway;phone;television,A person is sneezing while laughing on the phone. Another person enters the room.,c097 13.20 22.30;c016 4.20 31.00;c153 0.00 8.40;c015 0.00 31.00,30.42\r\nHYEY7,P6LJ,Dining room,5,7,Yes,\"A person is using a vacuum to tidy up the room. Then, laughing, the person picks up a glass and begins to drink from it.\",cup;desk;floor;glass;mug;table;vacuum,\"A person turns on a vacuum cleaner, runs it over the carpet a few times, then turns it off, grabs a mug from the table in the same room, and drinks from it.;The person uses the vacuum to clean. They turn off the vacuum and take a sip of coffee from a mug on the desk.\",c137 1.40 34.80;c110 32.60 38.10;c106 33.40 40.90;c127 0.00 35.30;c107 32.80 42.10;c009 37.90 43.00;c109 38.10 43.00,42.92\r\n1PCR7,YMXV,Bedroom,5,5,Yes,\"A person is snuggling with a book, while a other person is undressing on a chair.\",bed;book;chair,A person is sitting on a chair. Another person sits on a bed reading.,c026 0.00 31.00;c032 0.00 31.00;c059 0.00 31.00;c029 7.10 13.30;c135 0.00 31.00,30.12\r\n8LAK1,T7C3,Dining room,7,7,Yes,A person holds a bag of food. The person opens a box and pulls out a pair of shoes.,bag;box;food;shoe,A person take food and a book off a box and opens it. The person finds a pair of shoes in a box and takes them out.,c053 16.90 22.50;c062 4.40 10.40;c044 7.00 29.00;c041 7.00 29.00;c056 26.40 29.00,28.38\r\nB2NBR,EIO2,Hallway,4,6,Yes,\"A person runs back and forth in their hallway. They accidentally hit their foot on a small table, stumble and crash against the doorknob with their arm. They sit on the floor, grasping the damaged limb.\",doorknob;floor;table;wardrobe,\"A MAN IS RUNNING THROUGH THE HALLWAY, HITS HIS BODY AGAINST THE WALL, IS IN PAIN AND FALLS TO THE FLOOR AND STARTS TO FLEX HIS ARMS WHILE ON THE FLOOR\",c125 8.70 31.00;c150 0.00 8.30;c151 6.70 13.30,30.50\r\nNAWO1,HR43,Kitchen,5,6,Yes,A person is cooking at a stove while on the phone. They start laughing.,dial;phone;stove,A person is preparing some food on the stove. The person is holding their phone and talking on it. The person adjusts the heat level dial on the stove.,c015 5.00 10.20;c019 6.90 49.00,48.08\r\nQQY8T,WQ8Z,Kitchen,5,6,Yes,A person takes a medicine bottle out of the cabinet and stands close to the vacuum and stares at it.,cabinet;medicine,\"A person is opening a cupboard in the kitchen. The person takes medicine out of the cabinet, and goes into the next room. A dog is also in the next room.\",c112 4.80 12.40;c113 0.00 6.20;c128 4.00 23.00,21.67\r\n9XXJ7,FNK4,Kitchen,7,7,Yes,A person is sneezing while turning a doorknob and then drinking coffee while talking on a phone in a living room.,coffee;cup;door;glass;phone,A person enters a kitchen while talking on the phone and holding a glass.;A person goes and closes a door and then picks up a phone off the counter.  The same person also starts drinking coffee out of a mug.,c106 11.40 18.50;c107 9.20 31.70;c141 0.60 6.80;c019 7.10 32.00;c152 8.30 13.70;c015 7.40 13.70;c018 5.90 11.40;c153 2.00 8.20;c006 0.60 6.80;c110 10.50 15.10;c097 5.40 10.80,30.75\r\n8RSZ4,Z68L,Recreation room / Man cave,6,7,Yes,\"A person is smiling, in the doorway.  They look out the window, and then decide to start undressing.\",clothes;doorway;window,A person looks out the window before taking her shoes off and her sweater.,c092 1.90 12.70;c155 12.10 30.00;c001 17.20 29.00;c000 13.00 17.30,28.79\r\nGX7SS,D0RU,Home Office / Study (A room in a house used for work),4,,No,A person walks through the door and starts to tidy up the sofa.,bench;door;mail;paper;sofa;towel,\"A person walks through a hallway, holding onto a towel. The person stops at a sofa, picks up some mail, hits the mail with his towel, and then begins tidying with the towel.;A person walks down a hall to a bench.The person picks up a paper and folds it and places it on a stand.The persons dust the bench off.\",c033 0.00 33.00,31.88\r\nWR2Q2,T7C3,Kitchen,4,6,Yes,One person stands eating a sandwich from the top of a stack of dishes. A broom is leaning nearby.,dish;food;sandwich,A person is eating a sandwich from a dish,c156 0.30 30.00;c065 0.00 7.60;c065 8.60 16.60,28.88\r\nFN0F8,ZEM0,Dining room,5,7,Yes,A person is in the dining room putting dishes on the table for dinner.  The person picks up homework that's in the way and throws it on the nearby counter.,dish;paper;table,A person holding some plates arranges the plates on a dining table and then reads from a piece of paper before putting the piece of paper away.,c116 31.30 36.80;c115 18.30 36.20;c119 1.50 28.30;c145 26.60 36.00,38.62\r\nHYR9Q,YA10,Kitchen,7,7,Yes,\"One person puts a laptop on a table, then leaves with a sandwich and a glass from the refrigerator.\",cup/glass/bottle;doorway;food;laptop;refrigerator;sandwich;table,A person walks into a room and puts their laptop on a table. They open the refrigerator and take out some food.,c142 19.70 26.70;c067 14.50 28.10;c047 0.00 7.10;c049 0.30 9.10;c097 0.00 4.10;c107 12.20 29.00;c009 1.60 9.00;c063 12.90 19.60;c069 14.60 20.60;c143 7.50 13.90,28.42\r\nL62J5,BYF9,Living room,6,7,Yes,A person is walking over to the table. The person takes some food and takes a picture of it.,doorway;food;phone;picture;plate;table,\"This person enter the living room, picks plate off of table and take a picture of it with their cellphone.;A person walks in from a door into a living room, then picks up a plate of food from a table and then takes a picture of the food using a camera phone.\",c063 7.50 14.00;c015 1.80 19.00;c087 8.90 19.00;c016 10.00 19.00;c097 1.10 5.50,18.46\r\n74P3C,WG9D,Kitchen,5,7,Yes,A person is washing a glass and then smiling while drinking coffee in a kitchen.,coffee;counter;cup;glass;hands;sink,A person walks over to a sink and washes a small glass cup. The person sets the cup on a counter and then picks up a coffee cup and takes a drink.;There is a person doing something at a sink.  That same person then picks up a glass of coffee and starts drinking it.,c109 3.50 7.80;c111 0.00 7.30;c106 6.50 11.50;c110 5.20 9.80;c139 0.00 7.70,10.62\r\nRM5IC,P6LJ,Kitchen,6,6,Yes,\"A person is standing by the stove and laughing. Then, sneezing, the person turns and bends to pick a pillow up off the floor.\",floor;pillow;stove,A person stands at the stove tidying dishes. They pick up a pillow from the floor and leave.,c079 14.80 23.40;c076 14.90 23.70,25.62\r\nG5ZOK,D0RU,Other,5,4,No,\"A person is sitting in the living room, sneezing while holding the medicine bag.\",bag;qtip;tissie,a man is sitting on a bench. he cleans in ear with a q-tip. the man blows his nose repeatedly.,c153 3.80 13.20;c021 10.00 18.60,32.42\r\nT3L2A,OUKK,Hallway,4,7,Yes,A person is standing in the hallway holding a camera and a plate of food.  The person takes a picture of themselves with the food.,camera;dish;food;phone;picture,A person takes a picture of themselves holding a plate of food in a hallway.,c118 2.60 31.00;c061 2.60 31.00;c087 6.00 31.00;c015 3.50 10.80,29.67\r\n03AA8,KQI6,Living room,5,7,Yes,One person stands by the sofa drinking and watching as another person runs in with a stack of dishes.,cup/glass/bottle;dish;doorway;food;sofa,One person is drinking and another person is sitting on sofa and taking dishes away,c120 9.90 18.50;c123 5.30 17.00;c120 3.70 30.70;c097 21.30 27.20;c106 3.50 12.80;c118 13.60 28.40;c063 15.30 34.00;c119 15.60 27.10;c154 14.10 20.20,32.54\r\nNMGIV,1TZV,Stairs,5,7,Yes,\"A person stands looking out of a window, sneezes, then walks up a set of stairs and grabs a towel.\",clothes;doorway;towel;window,A person is standing looking out a window when they sneeze then they walk up the stairs picking up a towel.,c092 0.00 15.50;c033 14.30 23.00;c153 8.10 14.50;c097 19.80 23.00;c004 14.50 23.00,22.29\r\nJUINA,9PLL,Kitchen,3,6,Yes,Person is standing on chair putting dishes on shelf and can't stop laughing.,cabinet;chair;dish;food;shelf,A person climbs up on a chair and puts dishes on a shelf. The person sneezes and smiles.;A person places some food into a cabinet while laughing.,c060 0.00 5.90;c082 9.80 17.70;c119 3.20 15.00;c152 15.20 22.70;c081 4.00 15.00;c118 0.00 10.80;c149 15.20 33.00;c062 0.00 10.90;c120 0.00 12.00;c153 9.70 18.50,32.38\r\nIPNEG,D0RU,Entryway (A hall that is generally located at the entrance of a house),4,1,No,A person is cooking a sandwich and watching the laptop.,dish;food;laptop;pan;sandwich;toast,A person is in the kitchen is cooking. They spread butter on a pan and place bread in it to make toast. They do this while looking at a laptop.,c051 30.30 36.00;c066 5.50 38.40;c147 5.90 38.80;c119 4.00 11.00;c062 12.30 21.00;c063 7.20 13.10;c061 7.90 22.80;c120 8.90 28.10,37.50\r\n5O0YS,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,\"A person is standing in the entryway while holding a pillow. As they are leaving the area, they start running to the door and the place their hand on the doorknob.\",door;face;hair;hand;pillow,\"Person standing holding pillow, touches hair, rest arm on door knob while touching face, runs out room with pillow.;A person is standing in the middle of a room holding a pillow, then runs out of the room through an entryway.\",c076 0.00 20.90;c150 15.80 22.00;c097 16.00 22.00,20.75\r\n1B2P0,3VLX,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person is walking into their closet, carrying shoes, blanket and a beverage. The person puts the blanket and shoes down. The person drinks from the beverage.\",blanket;clothes;cup/glass/bottle;shoe;wardrobe,\"A person is walking in a bedroom with an armful of stuff. The person walks into a wardrobe, sets down some shoes, folds a blanket, then picks up a cup and takes a drink.\",c053 0.10 15.00;c054 5.50 11.50;c070 0.50 21.00;c071 15.40 21.00;c075 11.50 20.60;c106 0.90 11.20;c001 0.60 20.90,24.92\r\nSILHS,D0RU,Living room,4,1,No,A person is holding a blanket. The person puts it into the wardrobe and begins walking over to the television.,blanket;chair;closet;doorway;remote;shelf;television;wardrobe,A person is putting a blanket in a wardrobe then using a remote to turn on the television,c070 0.00 8.80;c071 3.60 9.80;c113 0.40 6.60;c132 23.70 31.00;c151 22.60 28.20;c112 6.50 12.80;c097 10.50 17.10;c081 3.00 10.40;c059 22.80 31.00;c075 2.90 7.60,30.38\r\nQHNTC,JVLO,Hallway,6,5,Yes,\"A person sits in the basement, playing on their laptop. The person puts the laptop on a table and leaves.\",floor;laptop;table,A person is playing a game on their laptop while sitting on the floor and then the person gets up and picks up the laptop and places it on a table and walks out of the room.,c009 18.10 28.70;c052 0.00 19.60;c154 19.00 25.10;c051 0.00 22.30;c047 18.00 26.60;c125 0.00 22.10,29.96\r\nZWY3E,KFGP,Bedroom,4,7,Yes,A person puts on a pair of shoes. The person runs out of the room through the doorway.,bed;doorway;shoe,\"A person is sitting on the edge of a bed putting on shoes,once done, the person goes out of the doorway.;A person is putting on their shoes and tying them while sitting on their bed.\",c097 0.90 5.00;c154 0.70 4.80;c135 0.00 4.70;c055 0.00 4.60,32.50\r\nP3XT7,6RE8,Dining room,5,7,Yes,\"A person sits at the dining room table, folding a towel. The person stands up and puts the folded towel on top of a folded blanket.\",bed;blanket;chair;cup;table;towel;water,A person sitting at a table folds a towel on their lap then drinks some water. They get up and throw the towel on the bed.;The person is sitting at a table folding a towel in their lap. The person takes a drink from a water bottle before continuing to fold the towel. The person then gets up and puts the towel on a bed.,c011 0.00 27.00;c034 27.80 34.00;c154 22.50 28.30;c059 0.00 26.60;c106 11.50 18.50;c110 8.80 13.70;c070 0.00 13.00;c071 28.60 34.00;c009 18.80 24.80;c075 0.00 12.70,33.21\r\nKJWAH,C7O9,Pantry,7,6,Yes,A person throws a sandwich on a shelf in the pantry and then leaves.,food;sandwich,A person walks into a closet and throws a sandwich in the trash.  That same person then leaves the room.,c067 1.50 7.60;c156 0.60 9.70;c061 0.00 9.00;c064 3.60 9.00;c062 3.90 9.00,23.96\r\nECLIB,9PLL,Bedroom,4,7,Yes,A person is watching television and then smiling while grasping a cup of coffee in the hallway.,cup;dish;drink;floor;glass;picture;table;television;tv,A person is sitting on the floor watching tv and then they take a glass off of a table and hold onto it.;A person is watching television while sitting down on the floor.  The person then grabbed a drink.,c107 10.30 37.00;c152 10.90 28.50;c125 0.00 37.00;c132 0.00 37.00;c110 9.80 14.30;c088 0.00 37.00;c120 10.30 37.00,35.71\r\nNY5R2,HR43,Bedroom,5,6,Yes,\"One person runs into the bedroom, stands on a chair to reach a book, then leaves.\",book;chair,A person walks into a room carrying a chair and places the chair on the ground. Then the person proceeds to stand on top of the chair and pick up a book  that is sitting on the mantle. Afterwards the person gets off the chair and walks out of the room.,c060 5.60 28.40;c030 6.50 18.90;c154 4.00 11.90;c027 20.50 25.30;c026 7.60 30.00,29.12\r\n40FKN,UD06,Bedroom,7,7,Yes,A person is tidying the bedroom while holding and drinking coffee. A person picks up a laptop and puts it away.,bag;bed;blanket;coffee;cup;laptop,\"A person is drinking coffee from a mug. They move a bag from their bed, and then adjust the blankets on it.;a person drinks a cup of coffee then tidies the bed and puts laptop in a bag\",c106 0.00 12.00;c075 10.80 32.00,31.25\r\nZJPK8,D0RU,Bedroom,7,6,Yes,A person is opening the door to the bedroom.  The person is standing by a pile of clothes and puts a blanket on top of the pile.,blanket;clothes;door,\"A person carrying some clothes opens a door, picks up a blanket, then puts them all on a bed.\",c001 24.10 31.00;c008 5.50 15.00;c071 24.20 30.80;c073 10.10 18.90;c000 0.00 30.00;c097 9.20 15.00;c002 11.50 18.50;c070 13.10 29.40,32.54\r\nYDSYL,3H6W,Laundry room,3,6,Yes,\"A person is tidying up a laundry room by sweeping the floor, when they are done they smile and place the broom against the doorknob. After they bend down to tie their shoe.\",broom;dustpan;floor;shoes,\"Person picks up broom, sweeps and than sets broom down in order to tie shoes.\",c127 5.40 34.30;c102 3.60 34.30;c154 1.30 35.10,37.12\r\nD7MHV,4OHY,Kitchen,4,6,Yes,A person is holding the handle of a pan while cooking on the stove. They start walking towards the cabinet and bring out some dishes.,cabinet;dish;food;groceries;pot;spoon;stove,\"A person is cooking on the stove in the kitchen. They then go to the cabinet to get something out.;{};A person is cooking on the stove. A person then opens a cabinet, and gets groceries.\",c118 0.00 18.00;c120 20.60 29.60;c147 0.00 17.70;c113 19.60 30.00,29.46\r\n1B2QD,3H6W,Living room,6,6,Yes,A person is throwing food in a trashcan and then washing fingerprints off a door in a dining room.,door;trash,A person is throwing away a piece of trash. A person then starts to clean the door.,,29.75\r\nIWF0U,KQI6,Dining room,4,5,Yes,A person is pouring a drink in a glass and another person is snuggling a blanket.,blanket;chair;cup;doorway;glass;table,A person sits down at at table and pours a drink into a glass. Another person is folding a blanket.;A person walks through a doorway and sits on a chair.  The person picks up a bottle and pours a drink into a glass.  Another person folds a blanket.,c075 0.80 7.50;c108 5.40 19.30;c151 0.50 13.10;c059 4.60 21.00;c097 8.10 27.40;c011 2.10 20.30;c070 22.50 34.00;c009 23.60 30.40,33.00\r\n8DGUN,2RTW,Kitchen,6,6,Yes,The person is sitting in a chair by the stove cooking a recipe from the laptop.,chair;container;food;laptop;stove,\"A person is in the kitchen using a laptop while cooking at the stove. The person opens a container, takes something out of it and compares it to the computer.\",c059 0.00 34.00;c051 0.00 4.60;c147 9.20 32.00;c062 29.30 34.00;c061 22.10 32.00;c063 9.10 13.90,32.96\r\nSP8UG,2RTW,Kitchen,6,6,Yes,A person is standing at the kitchen counter and pouring a glass of water. They take their medicine then drink some water.,cup;glass;hand;medicine;pitcher;vitamins;water,A person is standing in front of a sink and pours water into a glass and then takes medicine.;The person pours a glass of water then takes a vitamin and drinks the water.,c107 26.60 31.30;c106 27.00 34.00;c128 17.30 25.00;c129 29.00 34.00;c108 0.30 17.00;c129 14.80 34.00,33.25\r\n5FYKE,YA10,Garage,6,7,Yes,A person walks into the garage while holding a cup of coffee and a camera.  They walk over to a shelf and set the camera down before taking a drink of coffee.,cup;mug;phone;shelf,A person puts something on a shelf. They drink something out of a mug. They walk away;A person is carrying a cup and phone in their garage. The person places their phone on the shelf in the garage. The person walks out from the garage.,c106 6.40 13.20;c107 0.00 30.00;c081 2.90 8.10,28.92\r\nHDHWS,T7C3,Stairs,7,7,Yes,A person is sitting on the stairs taking a selfie with a camera.  The person then is closing a notebook and gathering homework.,book;box;camera;floor;paper;phone;stairs,\"a person sits on some stairs with a camera and takes a picture of themselves, they then smile and grab a book then begin tidying up the stairs.;This person takes a photo, closes a few notebooks, then sets them down.\",c116 12.70 24.60;c025 9.40 15.60;c030 12.00 17.60;c152 0.00 6.90;c015 0.00 12.70;c154 14.90 20.30;c026 9.80 21.70;c028 16.70 24.80;c125 0.00 18.30;c027 10.40 18.70;c032 8.80 14.90;c017 6.30 12.80;c087 0.00 5.90;c117 9.70 15.10;c115 11.20 29.00,28.04\r\nK5CRM,5LWB,Hallway,7,7,Yes,A person is sitting in the hallway with a pillow in their lap.  The person puts the pillow on the floor and lays down on it.  Another person stands in the doorway holding a broom and drinking a cup of coffee.,broom;floor;pillow,One person is sitting in a room while another person is standing beside them and sweeping with a broom. The first person then proceeds to lay down and place their head on a pillow.,c076 0.00 13.00;c102 2.50 19.00;c124 7.10 19.00;c127 0.70 19.00;c079 6.40 11.40;c077 6.20 11.30;c098 0.00 19.00;c125 0.00 11.80;c078 0.00 10.90,17.58\r\nH5TGJ,0KZ7,Bedroom,3,6,Yes,\"A person awakens in a bedroom, takes a sweater from a bag and begins dressing in front of  a mirror.\",bag;bed;clothes;mirror,\"A person is sleeping in bed they wake up stand up go over to a bag and take out a jacket and put it on.;A person laying on a bed awakens, stands up and puts on some clothing they took out of a bag on the floor. The person looks at themselves in a mirror.\",c146 4.50 11.70;c133 4.50 11.70;c096 22.70 37.00;c154 9.00 16.30;c134 0.00 12.10;c148 13.20 37.00;c002 14.10 21.30;c000 14.10 28.20,35.92\r\n1AR0K,T7C3,Pantry,7,6,Yes,A person is running into the pantry with a broom.  Then a person is working on opening a bottle of medicine that has the lid on too tight so it is hard to open.,broom;doorway;medicine,\"A person walks into the bathroom holding a broom. The person puts the broom down and begins to open a bottle. The person struggles to open the bottle and gives up, walking out of the room.\",c098 11.10 18.60;c099 14.60 20.70;c128 17.00 50.70;c097 46.80 54.70,59.38\r\nIS3OX,LTAC,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person sneezed while sweeping with a broom and then sat in the doorway of the bathroom.,broom;doorway;floor,\"Person holding a broom, person sweeps entryway repeatedly, person sets down broom, person sits on the floor in the entryway, person sneezes?\",c102 0.00 32.10;c151 29.00 35.20;c127 0.00 30.50;c125 29.40 37.00,39.25\r\nUNGPY,D0RU,Bathroom,7,,No,\"A person can drink coffee in the office, A person can stand in their office while wearing a towel on their head.\",coffee;cup;dish;door;head,\"A person is drinking something. The person then places a camera on top of the bathroom toilet. The person then walks out the bathroom, and closes the door.\",c106 6.90 13.00;c107 0.00 13.90;c097 0.00 4.10;c006 14.60 20.20;c119 9.10 14.70;c110 4.60 9.60;c141 13.90 20.20,30.46\r\nZHDUR,DJ17,Bedroom,4,6,Yes,A person is dressing in front of the wardrobe  and then watching the phone in the recreation room / man cave.,button;closet;clothes;door;phone;wardrobe,\"A person is buttoning up their shirt in the closet. The person closes the closet and walks into the other room. The person grabs their phone and plays with it.;A person is standing while putting on a shirt. After buttoning all the buttons, the person closes the wardrobe, picks up their phone, and looks at it.\",c015 20.30 35.00;c016 20.30 35.00;c006 9.70 17.80;c148 0.00 15.10;c112 9.90 16.10;c097 17.20 23.10,33.83\r\nYYHX3,3H6W,Living room,7,7,Yes,A person takes some food to a table in their living room. They put a towel on the table before they set the food down on top of it.,box;food;table;towel,A person is putting a towel on a table then carrying a box and putting it on the table as well.,c033 1.40 9.10;c151 9.00 13.90;c009 5.20 11.60;c034 3.20 10.50;c011 8.20 13.60;c154 15.80 21.00;c040 16.10 22.50;c035 3.70 10.10;c061 9.20 14.40,22.83\r\nW86JJ,1OHU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person watches a video on their laptop. Another person puts a coffee mug into a box and walks away.,box;laptop,One person is putting something in a box and another is working on a laptop in a bathroom.,c051 0.00 32.00;c040 0.00 9.70;c047 0.00 32.00,30.75\r\nL11YV,PKND,Garage,7,7,Yes,A person in a garage who is holding a pillow and a bag of groceries sneezes.,bag;car;groceries;pillow,\"A person standing next to a car shouts something, then shakes a plastic bag and pillow, then rifles through the bag for a moment before brushing something off the car.\",c020 2.70 7.60;c021 17.30 22.90,32.08\r\nIXVGR,DXDI,Bedroom,4,7,Yes,\"A person is sitting down in a chair in their bedroom. They start pouring a glass of water onto some dishes, and then take a picture of the dishes through a mirror.\",chair;dishes;glass;phone/camera;table;water,A person is sitting at a table pouring something from a glass into a dish. The person then takes a drink from a cup.,c059 0.00 28.00;c017 22.20 27.40;c015 13.50 27.10;c011 0.00 28.00;c016 15.90 26.60,27.42\r\nQ4932,3531,Bedroom,4,6,Yes,A person is throwing a blanket on the bed and then jumps on it to eat a sandwich and smiles really big.,bed;blanket;dish;food;sandwich,\"The person throws a blanket on the bed. The person then jumps on the bed, begins eating some food, and laughs.;This person is in a bedroom, throws blanket on bed, jumps on bed, picks up sandwich and starts eating & laughing while rocking back and fourth.\",c135 1.90 32.00;c065 6.00 32.00;c156 5.70 32.00;c151 1.40 5.80;c149 7.40 14.80;c074 0.00 4.50;c067 8.00 13.70;c152 7.10 13.00;c061 3.90 11.10;c118 3.20 32.00,31.25\r\nVTY0J,8718,Kitchen,7,7,Yes,\"The person opens a refrigerator to get food, putting it in a microwave. They then sit down at a table and start playing on their phone while the food heats up.\",chair;food;phone;refrigerator;table,A person grabs food from a fridge and sits in a chair with a phone.,c063 0.00 7.90;c015 21.10 35.00;c143 0.00 2.70;c151 19.20 24.40;c142 3.70 8.10;c059 20.10 35.00;c061 2.40 16.50;c016 20.10 35.00;c062 8.90 13.80;c011 19.10 35.00,33.62\r\n5IDF4,9PLL,Hallway,4,6,Yes,A person runs down the hallway holding a book.  The person throws the book on the floor and grabs the doorknob to the bedroom.,book;door;floor,\"A man runs into a room, throws a book down onto the floor, and then stands with his hand on the doorknob.\",c031 10.70 16.00;c141 16.00 32.00;c126 10.70 16.00;c150 7.80 14.40;c116 0.00 15.50;c008 29.10 32.00;c030 0.00 15.20;c116 11.20 16.00;c097 8.70 13.80,31.04\r\n0BXRP,AH2J,Kitchen,7,7,Yes,\"One person grasps a bag of groceries by the sink and opens it up. Then, this person starts cooking at the stove.\",bag;food;groceries;stove,A person is taking groceries out of a bag and then they are starting the stove.,c130 1.90 22.60;c021 0.00 7.10;c147 19.40 28.00;c020 0.00 6.70;c062 5.00 10.70;c062 8.10 13.30;c062 11.10 16.60;c063 3.80 9.00;c063 7.00 12.40;c063 10.80 15.30;c022 16.60 21.70,27.42\r\nU2SJH,2RTW,Living room,6,6,Yes,\"A person lies on the floor, playing with their laptop. The person moves to a nearby sofa, and continues to play while eating a bag of chips.\",bag;chips;couch;floor;food;laptop;table,This person is laying flat on his stomach on a carpeted floor. Picks up laptop and walks over to the couch and starts eating chips while sitting on the couch being on the laptop.,c052 0.00 13.30;c124 0.00 13.60;c156 16.80 32.00;c151 12.10 18.70;c154 8.10 15.00;c009 13.80 20.50;c011 15.00 32.00;c014 23.70 32.00;c047 9.30 20.20;c050 9.30 20.80;c021 17.50 23.00;c062 20.20 26.80;c049 9.60 20.80;c123 12.90 32.00;c063 17.60 26.50;c009 18.80 24.20;c011 15.60 20.10;c014 14.70 30.50,30.58\r\nR08G9,YMXV,Bedroom,6,6,Yes,Person is grasping clothes. Another person is looking out window and starts sneezing.,clothes;window,A person picks up some clothes while another person looks out a window.,c092 13.40 33.00;c000 0.00 17.90;c002 0.00 15.40;c153 16.10 27.30,31.71\r\nFBL47,ZAWX,Pantry,3,6,Yes,A person is looking around a pantry and working on taking notes for a shopping list.  Another person enters the pantry and grabs a broom while handing a small laptop to the first person to check recipes for the shopping list.,laptop,A person marks things down in the pantry and another hands that person a laptop.,,30.75\r\nOYG5H,X5XO,Home Office / Study (A room in a house used for work),7,7,Yes,A person is throwing a book into a cabinet.  Then a person is throwing clothes out the door that don't belong in an office.,book;cabinet;clothes;door;floor,\"A person picks up a magazine, puts it away, then throws things into another room.\",c003 8.50 17.30;c028 2.00 9.60;c154 0.00 32.00;c127 0.00 32.00,30.83\r\nE2Q68,T7C3,Kitchen,6,6,Yes,A person is standing next to a mirror then starts opening a bag full of groceries.,bag;food;groceries;mirror;table,A person standing unties a yellow grocery bag and takes out three items and places them on a table.,c021 2.60 13.50;c023 0.00 6.50;c130 9.20 27.50;c009 9.20 15.10;c022 0.00 7.10;c020 0.00 30.00;c062 14.70 21.70;c062 19.80 27.50;c063 14.70 20.30;c063 20.00 26.40,28.96\r\nWTUGM,WG9D,Bedroom,4,6,Yes,A person is seen closing a box while taking out a camera. They begin snuggling up next the window with a blanket.,blanket;box,A person drops a box and picks up a blanket and puts it around their shoulders.,c045 0.00 3.70;c070 0.40 7.00;c072 0.00 7.00,5.79\r\nQ24GF,PKND,Kitchen,6,6,Yes,A person is standing with a hand on the doorknob then turns on the light. Another person is sitting in a chair looking at a phone.,chair;fridge;phone;refrigerator;table,A person is sitting at a table in a chair looking at a phone while the other person is putting something into the refrigerator.;A person checks their phone while another opens the fridge.,c015 0.00 6.10;c059 0.00 31.00;c011 0.00 31.00;c143 13.40 26.10;c152 0.00 31.00;c142 20.40 26.10;c016 0.00 5.10,30.46\r\nFIBCE,9PLL,Bathroom,5,7,Yes,\"Person is in the bathroom grasping a broom and sweeping the floor. They turn off the light, and then leave the room.\",broom;doorway;floor;light,\"A person is sweeping with a broom, they then turn off the light and walk out of the room.\",c127 0.00 17.70;c098 0.00 17.00;c102 0.00 17.70;c105 23.20 28.40;c097 23.30 30.00,31.58\r\nVL66E,9PLL,Stairs,5,5,Yes,Person is walking down the stairs holding a book and begins to sneeze. Person stops mid-stairs to sneeze a few times before continuing down the stairs. Person then picks up the broom by the doorway at the bottom of the stairs and stands there holding it.,book;broom;doorway;stairs,\"A person is standing on some stairs holding a book, they then start walking down the stairs and begin sneezing, the person grabs a broom ad begins tidying the doorway.\",c098 21.20 32.00;c100 19.30 25.60;c026 0.00 32.00;c153 3.30 19.40;c115 0.00 21.70;c097 23.10 31.10,31.29\r\nFCQS8,DXDI,Bathroom,5,6,Yes,A person walks into the bathroom then dresses. They then open the cabinet door and take out some medicine.,cabinet;clothes;coat;door;medicine;shirt,\"A person walks through a doorway, puts on a coat and grabs some medicine from a cabinet.;A person walks through the doorway of a bathroom and puts on a denim shirt. The person then reaches on a shelf, and looks at a bottle of prescription pills.\",c128 21.10 28.00;c097 0.00 4.80;c148 3.70 17.50;c113 16.10 21.30,26.96\r\n0VQQL,2RTW,Dining room,6,6,Yes,\"A person is lying on the floor, reading a book. The person sits up, stands up, walks to the door, and opens it.\",book;door;floor,\"A person is laying down on the floor reading a book they then get up and open the door and stand on the doorway.;A person is laying on the floor reading a book, then gets up and walks over to the door to look outside.\",c124 0.00 13.70;c008 17.80 26.40;c026 0.00 31.00;c154 13.70 20.70;c025 12.40 17.20;c032 0.00 16.10,29.58\r\nZIP5P,YA10,Living room,7,7,Yes,One person is playing with a camera while another is lying passed out by the door with medicine nearby.,camera;floor;food;medicine;phone;sofa,One person is on their camera leaning up against a couch while another is laying on the floor with medicine bottles next to them.;a person sits by the door playing on their phone as another person lays on the floor with food,c015 0.00 31.00;c123 0.00 31.00;c124 0.00 31.00;c016 0.00 31.00,30.21\r\n8ML3S,PKND,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is running around their closet. They start taking some bags out of the closet and then look into the mirror.,bag;clothes;mirror;shelf,\"A person is jogging around a room, then stops and rummages through a closet. The person picks up and reaches into a plastic bag.\",c020 4.80 24.40;c021 4.30 9.40;c023 3.20 8.80;c150 0.00 7.20;c152 4.80 32.00;c001 10.90 15.70;c001 16.00 20.90;c000 4.10 26.30;c081 10.80 15.50;c081 16.00 21.10,31.46\r\nXW1LX,WQ8Z,Bedroom,7,7,Yes,\"A person awakens in bed, sits up, and turns on the light next to the bed. The person grasps a box from the nightstand and opens it.\",bed;box;lamp;light,A person wakes up and turns on the lamp. They pick up a box and look inside it.,c104 13.50 21.10;c134 0.00 11.60;c133 0.00 9.20;c040 19.00 30.00;c041 19.00 30.00;c146 0.60 12.20,28.62\r\nB70WK,0KZ7,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person runs in place. Another person walks in holding a bag of groceries and smiles, and tosses a bottle of medicine to the other person.\",bag;can;door;glass;groceries;item,A person is running in place at the bottom of the stairs. Another person enters through the front door and reaches into a bag and takes something out and tosses it towards person one. Person one catches it and continues running in spot.;A person standing in a walkway dancing in place.Another person enters the door with a bag and thews a can to the other person.,c021 13.60 23.00;c020 12.60 29.00;c150 0.00 16.90;c097 11.90 18.80;c008 11.30 16.30;c006 14.40 19.40;c152 15.20 20.70,27.67\r\n564DX,HR43,Kitchen,5,7,Yes,\"A person takes a bottle of water from the refrigerator, then takes some medicine. The person sneezes.\",cup;door;medicine;refrigerator;water,\"Person opens fridge, retrieves drink, and takes a drink.\",c128 6.20 23.30;c142 3.20 8.40;c106 22.50 31.00;c128 6.70 13.40;c107 1.40 37.00;c143 0.00 5.90;c008 0.00 4.00;c109 19.20 23.90;c153 30.50 37.00;c110 1.40 8.40;c006 3.30 10.50,35.50\r\nZ4P5B,P6LJ,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is standing at the entryway holding a box. The person is eating a cookie.. The person opens the doorknob of the door at the entryway then closes it.,box;door;food;lock,\"The person walks, picks up a box of snacks, walks to the door, unlocks, opens and closes it and starts walking back\",c141 20.00 25.30;c040 0.50 31.10;c008 20.70 27.00;c156 4.50 22.30;c062 26.80 32.00;c061 1.10 25.80,31.42\r\n5VGLI,3VLX,Kitchen,5,7,Yes,A person watches as food cooks on the stove. The person leans back against the refrigerator.,food;pot;refrigerator;stove,A person is standing in the kitchen preparing food on the stove. The person leans against the refrigerator.,,27.42\r\nIAFF1,YA10,Garage,7,7,Yes,\"A person is tidying the garage with a broom, then they take a towel and start washing the broom handle.\",broom;floor;towel,A person sweeps the garage with a broom.  The person then seizes a towel and cleans the broom.;Person is sweeping with a broom in his garage. Person wipes down his broom handle with a towel.,c102 0.00 23.60;c038 19.00 33.00;c127 0.00 20.40,31.79\r\n78R4Y,DXDI,Basement (A room below the ground floor),4,7,Yes,A person is putting away groceries in refrigerator before closing its door.,bag;door;floor;food;groceries;grocery items;refrigerator;shelf;shelves,\"The person opens the refrigerator door and places items from a bag onto the shelves then wads up the bag before closing the door.;A person open the refrigerator, removes groceries from a bag and puts it in the refrigerator.\",c006 12.00 17.00;c142 12.00 17.00;c021 1.00 6.00;c130 1.60 6.70;c008 0.40 5.40;c143 0.00 4.70;c020 0.00 3.70;c024 11.00 15.40;c022 9.80 15.60;c063 3.30 14.70;c081 3.20 15.40;c126 11.20 15.50;c061 5.40 12.50;c062 1.70 13.80,17.71\r\nGZ4ZZ,ID9V,Recreation room / Man cave,5,1,No,A person is lying on a bed and tidying their homework.,homework;paper,A person is doing homework.,c145 0.00 32.10;c115 0.60 31.30,32.33\r\nY2QUJ,WG9D,Dining room,6,6,Yes,A person is eating a sandwich while brushing crumbs off their clothes. The person is grasping for a napkin because they are sneezing.,chair;food;sandwich;table,A person seated at a table eats a sandwich and then sneezes.,c065 0.00 3.90;c156 0.00 3.90;c153 1.00 7.00;c067 0.00 4.50;c063 0.00 4.20;c064 0.00 4.80;c069 0.00 4.30;c059 0.00 7.00;c011 0.00 7.00;c061 0.00 4.80;c062 0.50 4.80;c068 0.50 4.90,5.54\r\nSTAFD,VYKE,Bedroom,3,7,Yes,A person is taking their clothes off for the camera while eating in bed.,bag;bed;blanket;clothes;food;glasses;sandwich,\"A person is lying bed while eating a sandwich. The person takes off their jacket and shirt.;A person is lying down in a bed eating food while covered with a blanket. The person then quickly takes off their jacket and their glasses, then their sweatshirt. Then the person puts his glasses back on and continues eating.\",c003 27.10 46.40;c155 13.90 45.10;c134 0.00 63.00;c061 0.00 13.60;c065 3.30 12.00,62.38\r\nYRIBO,KFGP,Basement (A room below the ground floor),5,6,Yes,A person is walking down stairs carrying a camera.  The person then sneezes a drops the phone into a laundry bag of clothes.,bag;clothes,The person walks down the stairs with a bag of clothes.,,23.17\r\nZL55N,HJJ4,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is sneezing into a camera, then closing a door and then wiping the wall with a towel in an entryway.\",camera;door;phone;rag;towel;wall,\"A person takes a picture/video of themselves sneezing several times then puts the camera down and closes the open door behind them. Then they pick up a rag and wipe the wall.;A person is holding something and sneezing, they then close the door, grab a rag, and begin washing the area around them.\",c033 11.20 15.70;c038 11.70 22.60;c015 0.00 9.40;c153 1.00 9.00;c035 10.00 16.50;c006 6.30 13.50;c017 5.10 10.30;c141 7.50 13.70;c034 12.10 23.00,22.17\r\nQ366H,ZAWX,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,One person is sitting in the doorway snuggling with a book and a blanket when another person runs past.,book;chair;doorway;floor;homework;paper,\"A person does homework while sitting on the floor.;A person is sitting on the floor reading a book, another person walks by, and a third person is sitting in a chair.\",c026 3.70 11.70;c125 0.00 9.40;c115 8.60 25.40;c145 0.00 10.60;c059 22.30 32.00,30.71\r\nFQNPB,WG9D,Dining room,5,,No,A person is smiling as they look at the cabinet then they run around with a broom in their hands.,book;broom;cabinet;chair;cup;food;glass;hand;sandwich,\"A person drinks from a cup, then looks at  a book and throws it down.;There is a person sitting in a chair eating a sandwich and drinking with a book on their lap. That person picks up the book and puts it on a different chair.\",c106 0.40 6.50;c031 4.90 10.00;c065 0.00 4.60;c059 0.00 10.00;c156 0.00 4.90;c028 5.80 10.00;c032 3.90 9.40;c026 3.60 9.90,9.17\r\nAKKWU,OUKK,Bathroom,4,5,Yes,\"A person runs into the bathroom and opens the cabinet. The person takes a towel, leaves, and turns off the light behind them.\",bag;cabinet;light;shelf;towel,\"A person walked in to a bathroom, has opened a cabinet, grabbed a folded towel, and has left the bathroom.\",c113 38.00 13.00;c020 4.90 12.00;c112 4.90 9.80;c033 4.60 9.00;c081 2.40 7.50,12.17\r\nE64R4,0RNU,Garage,4,5,Yes,\"A person is dressing in their garage. They grab a blanket, and a cup of coffee and leave holding the items.\",blanket;clothes;cup;door;jacket;shelf;table,\"A person takes a jacket off a table and puts it on. Then they grab a blanket and a cup off the table and walk through a door.;Person puts on jacket, zips it up, grab blanket and cup, open door, walks in and closes door behind them.\",c107 27.70 32.80;c070 23.70 37.00;c008 30.80 36.40;c002 0.90 11.20;c110 26.30 33.70;c073 21.90 27.90;c006 32.30 37.00;c148 1.60 13.60;c097 28.40 36.40;c001 21.40 37.00,36.12\r\nDPCGS,PKND,Bedroom,6,6,Yes,Person is walking to laundry room smiling holding laptop in one hand and sandwich in another.,doorway;food;hand;laptop;sandwich,Person in a doorway walked in eating a sandwich with a a laptop in hand.;A person walks in through a doorway holding a laptop eating a sandwich they open their laptop and eat their sandwich.,c048 12.90 19.10;c065 2.40 9.80;c152 0.00 6.10;c156 2.10 9.80;c067 0.00 31.00;c097 0.00 5.40;c061 0.00 31.00,30.42\r\nQ3FZ6,PO5L,Bedroom,2,7,Yes,\"A person is in a bedroom tidying up and putting clothes in a box, they then grasp a bag and walk out the room.\",bag;clothes,A person sits down on a bed. The person begins folding up clothes. The person stands up and walks away.,c000 3.50 17.60;c001 11.90 18.90;c004 4.90 18.80;c151 0.00 5.50;c154 14.10 21.00;c023 13.90 19.00;c002 2.00 9.00,24.92\r\nDC94A,ZAWX,Bedroom,6,6,Yes,A person is opening a cabinet and putting away groceries and then playing with a toy in a garage.,bag;cabinet;chair;door;groceries;shelf;toys,\"A person puts groceries inside a cupboard. The person takes two stuffed toys from another cupboard, walks to a chair, sits in the chair, and plays with the toys.;A person places some items in a cabinet and plays with stuffed animals.\",c112 5.70 14.40;c020 8.60 19.30;c151 12.20 21.40;c059 16.20 26.70;c113 0.00 5.50;c130 2.10 8.10;c081 1.80 8.20,30.25\r\nAAH0C,9OK1,Bedroom,6,,No,A person is tidying their desk which sits under the window of the laundry room. The person pauses as they watch something out the window.,chair;clothes;desk;laptop;paper/notebook;something;table;window,A person places things in their desk and stares at their laptop.,c012 0.00 15.90;c116 0.00 9.50;c051 0.00 20.00;c059 0.00 20.00;c117 0.00 9.80,18.88\r\n8DE6J,YA10,Bathroom,7,7,Yes,\"A person stands in the bathroom, removing items from a box. The person puts them away in the cabinet, and then the person sneezes.\",box;cabinet,A person is in a bathroom and is taking things out of a box and then putting them into a cabinet under the sink.,c113 18.00 23.40;c044 0.70 18.90;c154 26.50 31.90;c112 17.00 30.90;c153 27.70 33.70,33.38\r\nT9DF0,P3TI,Stairs,6,6,Yes,A person is holding a pillow while smiling at the homework.,book;homework;paper;pillow;stairs,\"A person is standing on some stairs holding a pillow and some homework, they then open the homework and begin looking through it and smiling.\",c076 0.00 31.00;c115 0.00 31.00;c152 14.80 26.30;c029 11.70 20.90;c027 10.80 31.00;c026 0.00 31.00,29.75\r\n62VEF,YA10,Garage,4,6,No,\"The person was walking with a cup of coffee, and eating a sandwich at the same time.\",coffee;cup;food;glass;sandwich,Person is walking in his garage while eating a sandwich and drinking from a coffee cup.,c106 3.80 10.70;c106 22.00 30.10;c065 18.50 26.00;c156 18.50 26.00,32.88\r\n8CUWA,3VLX,Bathroom,7,7,Yes,A person is holding a glass mirror and then lying a towel on the cabinet in the bathroom.,cabinet;clothes;mirror;shelf;towel,\"The person walks to a shelf, picks up the mirror and puts a towel under it\",c096 1.40 18.50;c034 6.10 18.00;c035 6.20 18.20;c001 7.70 15.10;c082 11.00 20.20;c081 8.90 14.30,22.75\r\nKTOJX,C7O9,Living room,6,6,Yes,A person was undressing his clothes and needed to sit down in the chair to take off his shoes when suddenly he began sneezing.,broom;chair;clothes;floor;jacket;pillow;shoe;sneakers;sofa;towel,A person is taking out there jacket before sitting on a chair. This person then starts to take there sneakers off but has to stop due to constant sneezing.;A person takes off a sweater and throws it on the couch. The person then sits down and sneezes multiple times.,c059 7.50 31.00;c053 9.50 14.70;c151 6.80 12.40;c123 7.20 31.00;c000 4.70 9.60;c155 0.00 10.50;c153 8.30 31.00;c001 4.90 9.60,29.79\r\nNXM13,LX59,Living room,6,6,Yes,A person is lying down in a chair playing with a pillow as the person tosses it up into the air.,chair;pillow,A person is sitting in a chair playing with a pillow. They toss the pillow into the air several times.,c059 0.00 32.00;c080 0.00 32.00;c076 0.00 32.00,31.17\r\n0CX32,C7O9,Living room,6,6,Yes,\"A person runs into the living room, carrying a towel and a broom. The person walks over to the window and opens it.\",blanket;broom;towel;window,\"A person runs into the room carrying a broom and towel. They put the towel and broom on a sofa, then bend over and open a window.\",c033 2.20 8.30;c034 4.30 9.10;c090 10.30 22.80;c092 18.40 34.00;c098 5.10 11.00;c099 6.60 11.80;c150 0.00 4.50;c070 0.00 8.30;c101 6.10 11.30;c074 4.30 8.60;c036 2.80 8.80;c071 3.50 9.50,33.17\r\nLJ2J6,C7O9,Living room,6,6,Yes,\"Person holding broom, picks up towel from floor and throws it on couch. Person begins tidying up pillows on couch.\",broom;clothes;sofa;towel;window,\"A person is tidying up a sofa, while holding a broom.;A person tidied up a living room.  The person held a broom, but did not do much with it.  The person picked up clothes from the floor.\",c098 0.00 31.00;c034 0.20 7.20;c102 0.00 31.00,29.54\r\nGWZ2A,UO0Z,Bathroom,5,7,Yes,A person is drinking some coffee while standing in the bathroom.  The person then holds onto the sink for a moment.,coffee;cup;mirror;sink,\"A person is drinking a cup of coffee then looking at themselves in a mirror in front of the sink.;A person standing in front of a mirror ,holding a cup.The person takes a drink and places the cup on the sink and leans forward and looks in to  the mirror .\",c107 3.70 14.20;c109 0.00 5.20;c154 3.90 20.70;c096 6.20 17.00;c106 0.00 10.90,20.46\r\nSAIDX,ATJI,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"One person opens the door, walks in, and throws a blanket on the table.\",blanket;clothes;door;table,Person walks into a room and throws blanket onto a nearby table.,c074 3.90 8.90;c008 0.00 5.20;c009 3.70 9.00;c003 4.10 8.60;c097 0.20 5.40,9.58\r\nYFI1M,KFGP,Closet / Walk-in closet / Spear closet,5,5,Yes,\"A person begins undressing and grasping for new clothing. Their phone buzzes, and they reach for it and open it up.\",clothes;phone;shelf,A person is taking off a jacket and hat and hanging them up and looking at a phone.,c015 20.60 28.00;c018 20.20 26.10;c001 14.20 22.80;c016 20.20 28.00;c000 9.40 19.90;c155 3.90 13.70;c081 16.60 22.70,27.46\r\n8GRE9,XXN8,Kitchen,6,1,No,\"A person takes their phone from the shelf, sits down, and begins playing with it.\",door;food;shelf,\"A person opens then closes a door, they then start eating some food.;A person is in the kitchen. The person walks to a door, opens it and looks inside before closing it again. The person walks to the counter and begins eating a sandwich.\",,33.96\r\nF87KZ,3H6W,Kitchen,5,7,Yes,\"A person is cooking food on a stove, then laughing and opening a refrigerator in a kitchen.\",dish;door;food;refrigerator;stove,A person walks to a stove and starts cooking. They walk to the refrigerator and open the door and leave.,c143 18.00 23.70;c147 3.00 18.30;c008 17.40 23.70;c118 0.30 14.30,23.21\r\n0TJ7G,KFGP,Dining room,4,7,Yes,A person is watching a television in a dining room. The person is also pouring a glass of water into a cup next to a box.,box;chair;cup;glass;table;television;water,Person is sitting watching tv. Person them pours water into a mug.,c132 0.00 15.10;c108 18.60 26.50;c059 0.00 28.00;c011 0.00 28.00,27.00\r\nU3NKR,Z68L,Bathroom,6,6,Yes,Person is in the bathroom throwing the towel over the door while using the broom to clean the floor and pouring water in a plant.,broom;doorway;floor;spray;towel,\"Someone walks into a bathroom with a broom, spray, and towel. They put the towel on the door and spray the floor and begin brooming and then they leave.\",c098 3.80 47.40;c102 5.20 47.90;c127 5.20 47.90;c033 1.10 11.40;c034 4.20 11.40;c097 2.80 8.50,47.96\r\nG57R6,WQ8Z,Living room,7,7,Yes,A person in the living room is lying down while looking at a mirror. They start standing up while leaving the mirror on the ground and pick up a towel next to them.,blanket;mirror;towel,A person is laying on a couch looking into a mirror.  The person puts the mirror down and lifts up a towel.  The person then gets off the couch,c093 0.00 18.30;c096 0.00 17.50;c033 14.50 25.00;c154 15.40 23.00;c073 11.80 25.00;c075 11.80 25.00;c070 12.00 25.00,24.42\r\n1GQAJ,6RE8,Bedroom,6,7,Yes,\"A person walks in holding a broom, shutting the door behind them using the doorknob.  They start tidying up around the bed area.\",bed;broom;door;floor,\"A person opens the door to a bedroom, walks in holding a broom and begins to sweep the floor.\",c098 1.80 17.70;c102 5.90 24.80;c141 8.50 21.70;c008 10.90 31.10;c127 8.20 28.40;c097 0.20 6.30,33.42\r\n6C526,BYF9,Living room,4,7,Yes,A person is watching another person tidying clothes on a chair.,bed;chair;clothes;towel,\"Person sitting on bed folding clothes and putting on side of bed. Other person sitting on chair watching person fold clothes.;A person sitting on a bed picking up clothes from a chair, folding them and placing them on the bed while another person sits in a chair watching.\",c001 11.00 16.00;c002 13.00 18.00;c059 0.00 26.00;c135 0.00 26.00;c004 14.00 26.00;c035 13.80 18.50,25.42\r\nOVHFT,UTMU,Laundry room,6,7,No,A person is grasping a camera after taking a picture then decines to play with their sandwich.,clothes;door;floor;light;medicine;shoe,\"A person walked into the laundry room took of their shoes picked up a bottle and walked out;A person walks into a room, turns on a light and takes off their shoes, they then grab some medicine and leave.\",c056 7.60 17.60;c057 8.20 17.50;c104 6.30 12.90;c054 9.20 17.00;c006 2.30 9.50;c126 9.20 17.00;c058 9.20 17.00;c008 0.00 5.30;c155 8.50 15.60;c097 1.00 6.30,26.21\r\nYZI2P,OUKK,Living room,3,6,Yes,A person is seen closing the refrigerator door. They sit down in the sofa and begin playing a video game.,door;game;refrigerator;sofa;television;video,A person walks into the room and opens the door to the refrigerator and looks in.  They close the door and walk over to the sofa and sit down to play a video game.,c123 10.80 31.00;c006 4.70 10.20;c142 4.30 10.60;c151 10.10 15.00;c132 11.30 31.00,29.71\r\nQBXRP,PO5L,Bathroom,6,6,Yes,\"A person pours a glass of water down the sink. The person stands there for a moment, then takes a jewelry box from the counter.\",cup;sink;water,\"The person enters the bathroom, then picks up a cup and fills it with water from the sink. Then the person dumps the water out of the cup back into the sink, and finally picks something up from the sink and walks out of the bathroom with it.\",c107 7.70 17.30;c108 2.60 11.00,28.54\r\n0O36O,P6LJ,Living room,6,6,Yes,a person is laughing while closing a box resting on a desk,box;desk;table,A person is holding a box and closing it on a table or desk.;A person assembles a box and places it on the table.,c039 7.30 14.50;c009 5.80 14.40;c152 15.90 21.60,20.79\r\n7G0HB,P6LJ,Kitchen,6,6,Yes,\"A person looks through the entryway of his house to see some dishes on the kitchen table. The person begins walking towards them when they start sneezing out of nowhere. The person blows their nose, heads to the refrigerator and ignores the dirty dishes. The person opens the fridge, looks around and closes it. They walk to the table where they look frustrated because they see homework on the table next to the dishes that the person forgot to do.\",mouth;napkin;paper;refrigerator,\"A person begins to sneeze. A person then grabs a napkin and wipes their mouth. A person then opens a fridge, and closes it. A person picks up a paper and puts it back down.\",c142 32.70 37.40;c115 38.70 45.10;c153 6.90 14.00;c143 22.80 28.70;c117 37.70 42.70;c116 40.90 45.60,48.12\r\nS6DKG,P6LJ,Recreation room / Man cave,6,6,Yes,\"Person sneezes, then grasps for an empty box of tissue on the wardrobe.\",box;desk;shelf;table,\"A person sneezes before grabbing a box sitting on a table.;A person sneezes, then moves a box around on a table.;A person walks over to a desk, sneezes, fiddles with a box, and walks away.\",c043 10.30 18.10;c153 5.50 11.40;c012 13.10 18.70;c081 11.30 17.00,21.54\r\nMF8AX,C7O9,Kitchen,5,6,Yes,A person is running into a kitchen while holding dishes.  Then a person is putting the dishes down near a vaccuum in the kitchen.,dish;floor;vacuum,\"A person runs into a room, moves some dishes around on the floor, and touches the vaccuum before leaving.;A person places dishes on the floor around a vacuum cleaner.\",c119 9.70 18.70;c137 21.00 27.60;c127 3.60 24.00;c150 0.00 4.70,30.25\r\nC0EJT,XXN8,Recreation room / Man cave,6,6,Yes,Person is standing in the doorway and laughing in the mirror.,doorway;mirror,\"A person is standing in doorway, looks into the mirror and starts laughing to themselves.\",c094 0.00 31.80;c096 0.00 31.80;c149 0.00 32.00;c152 0.00 32.10,32.38\r\nD0YWV,RPBD,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person returns home, holding their phone, and closes the door. The person throws their phone onto the table.\",door;phone,A person is walking through a door the closing it and holding a phone in their hands.,c015 6.60 29.00;c006 6.70 13.20;c008 3.40 11.40;c097 3.10 11.60;c141 2.60 10.00,27.67\r\n56XCX,KFGP,Closet / Walk-in closet / Spear closet,5,7,Yes,The person grasps a pair of shoes from behind the cabinet door before sitting down to put them on.,cabinet;chair;door;shoe,A person walks down a hallway then sits in a chair to put on their shoes.,c055 9.60 30.70;c059 8.70 32.00;c151 6.60 12.70,30.83\r\nHD6GF,WG9D,Laundry room,4,5,Yes,The person is putting clothes on a cabinet.  They are smiling and then they start sneezing.,cabinet;clothes;shelf,A person is folding clothes and putting them in a cabinet.,c001 0.00 4.50;c002 0.00 7.00;c004 0.00 3.70;c152 0.00 7.00;c081 0.00 4.60,6.42\r\nUAIHK,OVS2,Bedroom,7,6,Yes,\"A person is awakening, then throwing a pillow, then dressing and finally using a laptop in a bedroom.\",bed;blanket;clothes;laptop;pants;pillow;shirt,\"A person wakes up and begins dressing, they then grab their laptop and open it and begin working.;A person is lying in bed. A person awakes. A person then puts on their pants and their shirt. A person then sits in bed and opens a laptop.\",c048 27.80 35.00;c154 4.90 13.60;c135 26.90 38.00;c146 0.00 4.80;c151 24.10 32.90;c134 0.00 6.30;c133 0.00 6.30;c148 8.80 29.80;c002 7.90 22.50;c072 0.00 2.90;c075 25.40 32.40,37.21\r\nP31E5,JVLO,Entryway (A hall that is generally located at the entrance of a house),7,1,No,A person is sneezing after taking a sip of coffee then watches the vacuum nearby.,cup;door;glass;shelf;soda,\"A boy walks up to a windowsill, takes a can of soda from it, then walks to the doorway and leans in the doorway drinking it.;A person walks into a room and takes a glass of a shelf. The person walks over to a door and drinks from the glass. The person then sneezes ans take another drink.\",c106 10.40 19.70;c110 2.00 9.00,31.00\r\nUCX0K,9PLL,Bathroom,6,7,Yes,A person is sneezing on a picture while a person is awakening in a blanket.,blanket,{},c072 0.00 20.80;c153 0.00 8.30,33.88\r\nHYD3N,ZAWX,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person is in the entryway holding a phone and putting a sandwich in a towel.,chair;dish;food;phone;plate;sandwich,Person standing holding plate of food and playing with phone in other hand. Person bends and place plate of food on chair and walks away.;A person is looking at a phone while holding a sandwich. A person puts a sandwich down on a chair.,c015 0.00 26.70;c016 0.00 26.70;c067 0.00 24.90;c118 0.00 25.50;c119 22.60 32.00;c062 20.40 27.00;c061 0.00 27.20;c068 20.40 27.00,30.88\r\nKYFKN,HR43,Bedroom,7,7,Yes,A person in the bedroom is tidying up laughing by the window and laughing while looking at the laptop on the bed.,bed;blinds;broom;floor;laptop;objects,\"A person is using a broom to tidy up a room they move the laptop and sweep the room.;A person sweeps the floor, adjusting a laptop, touching the blinds, and picking one object off the floor and putting it on the bed.\",c102 4.70 15.20;c127 11.30 17.20;c051 12.60 19.20;c098 0.00 30.00,28.88\r\nHYIZD,C7O9,Stairs,6,6,Yes,\"A person is grasping the handrail up the stairs, with a towel draped over their shoulder, and a broom in the other hand.  They start tidying up on the stairs with the towel and broom.\",broom;floor;rail;steps;towel,\"A couple of people cleaning a stairway.The one person is wiping down the railing of the stairs. The second person is carrying a broom and starts swiping the steps and smiling .;A person is holding a broom on the stairs they give the broom to the second person who begins sweeping, while the first person cleans the stairs with a towel.\",c033 0.90 31.00;c035 0.90 5.90;c038 2.20 31.00;c098 0.00 31.00;c100 0.30 5.60;c102 2.10 31.00;c127 2.80 31.00,30.17\r\n4MUXJ,6RE8,Kitchen,5,4,Yes,A person is taking groceries out of a bag and fixing the door in a pantry.,bag;door;groceries,\"A person is holding a bag of groceries. A person begins putting items in the bag. A person then puts the bag down, and closes the door.\",c008 23.70 29.10;c021 5.90 11.70;c130 8.50 13.90;c006 25.70 31.00;c020 0.90 25.70;c022 18.10 23.60,30.42\r\n9ALI5,XXN8,Bedroom,6,7,No,Person is lying on kitchen floor and smiling while doing homework and eating food.,floor;food;homework,A person is smiling while reading a book and eating something off a plate.,,30.25\r\nYJ06D,P6LJ,Recreation room / Man cave,7,7,Yes,A person is walking through the door. The person turns the light on and begins laughing as the person opens the wardrobe.,closet/cabinet;door;light;table;wardrobe,\"A person walks in the room, turns on the light and does something with a wardrobe.\",c008 0.80 7.70;c104 13.90 19.50;c154 26.80 34.40;c114 18.90 31.00,35.33\r\nG1BT8,ID9V,Garage,5,7,Yes,A person is tidying up a wardrobe dresser in a garage then grasps a book.,book;closet;wardrobe,A person opens and closes some drawers on a dreser. They take a book of the top and look at it.,c113 0.00 5.20;c032 20.60 28.20,27.58\r\nRXF2Q,6RE8,Entryway (A hall that is generally located at the entrance of a house),6,7,No,\"A person is walking over to their desk. Then, sitting down, the person opens up their laptop.\",clothes;desk;doorknob;doorway;hair;hat;laptop;table,\"A person enters the room and closes the door. They take off their hat, sniff it, and put it back on. They then sit at a desk and open the laptop.\",c011 23.60 35.00;c048 25.40 33.50;c001 3.50 20.40;c141 0.00 5.30;c151 20.50 28.20;c097 0.00 4.40;c144 5.10 13.00,34.33\r\nNGZQ9,H8N1,Dining room,5,7,Yes,\"A person stands in the dining room, drinking a glass of water. The person moves some clothes that are on the shelf, then sets the glass down in the cleared space.\",bag;clothes;counter;cup;glass;water,A person is drinking a cup of water then picks up a pile of clothes and puts then away. The person then sets cup down on counter and leaves.;a person drinks from a glass then grabs a bag and brings the glass back,c023 13.70 21.80;c000 14.10 20.00;c109 12.50 19.00;c106 0.30 6.20,35.25\r\nTTLFX,L4ZP,Bathroom,6,7,Yes,A person is standing in the bathroom looking at themselves in the mirror.  The person takes a pillow out of a box on the floor and tidies up the other items in the box underneath the pillow.,box;hair;mirror;pillow,A person grooms themselves while looking in a mirror. They then lean down and pull a pillow out of a box.,c079 10.70 16.60;c044 10.70 16.60;c096 0.00 11.70;c144 0.00 9.40,29.46\r\nP2HZG,DXDI,Kitchen,6,7,Yes,A person is laughing at a video on their laptop in their kitchen. They close the laptop and put it in a cabinet.,cabinet;laptop;shelf;table;video,\"A person is sitting at the dining room table and takes the laptop to the kitchen, an opens a cabinet.\",c046 4.00 10.20;c047 7.40 14.20;c112 23.20 29.20;c113 13.00 18.40;c081 16.00 26.90;c011 0.00 9.30,30.92\r\nGJJA1,6PZN,Bedroom,5,7,No,A person in the closet is holding some medicine in one hand a pillow in the other hand. They begin putting both items down and start playing with their phone.,bed;phone;pillow,A person holds a pillow and then folds a paper. The person puts down the paper and pillow and plays with a phone.;There is a person standing in the room holding a pillor and a phone. That same person puts the pillow on the bed and works on their phone.,c076 0.00 12.20;c015 0.00 33.00;c016 0.00 8.00;c080 7.20 12.10,32.42\r\nP3EW1,DLI2,Living room,6,7,Yes,A smiling person is sitting on a sofa in a living room taking off their shoes. The person starts eating a cookie.,cookie;food;shoe;sofa,A person sits on a sofa and takes off their shoes. The person then eats a cookie.,c053 9.30 14.30;c057 2.10 14.70;c123 0.00 40.00;c152 0.00 17.20;c156 16.50 39.80;c054 4.00 9.20;c063 10.10 15.30;c061 16.30 40.00,38.92\r\nO76N2,H8N1,Bathroom,7,7,Yes,A person is tidying up the bathroom by putting all the trash on the table into a bag. They are working very hard on this task.,bag;table,\"A person opens a bag and puts some items into it, before putting the bag on a table.\",c009 15.70 24.20;c021 0.00 9.50;c023 0.00 5.60,24.54\r\nTE34B,Z68L,Kitchen,6,6,Yes,\"The person is working at a computer, and gets a phone call. Person walks outside to get groceries from car and stores them under the sink.\",bag;closet/cabinet;groceries;laptop;phone;sink,\"A person walks into the room and works on a laptop.  They pick up a phone to answer it, then walk out of the room holding the phone.  They reenter the room holding a bag of groceries, which they place in the refrigerator, then walk out again.\",c015 8.60 26.50;c018 7.10 17.70;c130 58.30 69.60;c052 1.30 15.50;c020 55.40 68.50;c022 61.60 68.50;c113 60.90 65.60;c019 14.10 21.40,73.04\r\n1MD1H,4YWP,Living room,6,6,Yes,\"A person awakens on the sofa in a living room. The person, still lying there, removes their shoes, and grabs a bag from a nearby shelf.\",bag;blanket;clothes;floor;pillow;shoe;sofa,A person is sleeping on a couch with a blanket and pillow they wake up take off their shoes and go over to a table and grab a bag then they sit back down on the couch.,c020 21.10 33.00;c122 0.00 15.50;c146 6.60 13.50;c023 21.10 27.20;c154 19.10 27.90;c057 11.50 19.20;c073 10.80 18.10;c155 15.40 22.30;c021 22.90 31.80;c070 8.40 12.60;c072 0.00 11.90;c151 27.90 33.00;c078 0.00 9.30;c126 13.30 18.10;c123 28.40 33.00;c074 9.20 14.50;c058 13.00 23.00,32.50\r\nC5044,2RTW,Living room,6,6,Yes,\"Person walks into the living room while eating a sandwich.  Person turns on television and stands in front of it.  Person picks up bottle from coffee table, opens the bottle, and starts drinking.\",cup;food;remote;sandwich;table;television;tv;water bottle,\"person turns on tv, picks up water bottle and drinks from it.;A person walks into the room holding food, first they set the food on a table and pick up a cup, then they turn on the tv and drink from the cup while watching tv\",c009 4.70 13.30;c106 11.80 32.00;c132 7.90 32.00;c065 0.00 14.10,31.29\r\nTIGIP,2RTW,Living room,6,6,Yes,\"A person enters through the door way and sits down on a couch. They grab a blanket and pull it on to their lap, then reach over on to a table and grasp a remote. A person uses the remote to turn on the TV and watches tv.\",blanket;door;sofa;table;television,\"A person opens a door and walks in to a room then closes the door. The person sits on the sofa and puts a blanket to their legs, and turns a TV on with a remote which was on a table.\",c006 3.50 9.20;c070 10.10 22.20;c123 8.40 13.50;c008 0.00 5.80;c071 11.70 21.60;c132 19.70 39.00;c151 8.40 15.00;c072 10.60 39.00;c073 10.10 39.00;c097 2.30 6.50,37.62\r\n8TNSB,0KZ7,Basement (A room below the ground floor),6,7,Yes,A person opens the door and another person comes running through tripping on a pair of shoes.,door,A person opens a door. A second person runs through the door.,c008 2.80 10.10;c150 3.00 12.20;c141 0.00 8.60;c097 5.40 10.10,25.12\r\nMLBTH,2RTW,Living room,6,6,Yes,\"A person opens a laptop, then starts to eat some groceries left on the coffee table.\",bag;desk;food;groceries;laptop;sofa;table,A person is sitting on a sofa at a desk. The person opens up a laptop. The person then opens and eats a bag of food from a bag of groceries while looking at the computer.;A person sits on a sofa and opens a laptop. The person grabs food out of a bag and begins eating.,c011 0.00 32.00;c048 0.00 8.00;c051 4.00 32.00;c156 15.90 32.00;c021 13.00 21.00;c061 10.90 18.80;c062 17.90 23.10;c123 0.00 32.00;c063 9.50 15.60,30.54\r\n8X49S,HJJ4,Home Office / Study (A room in a house used for work),2,1,Yes,A person is fixing their laptop. They eat some food and drink some water.,chair;cup;desk;food;glass;laptop;sandwich;water,\"A person sits in a chair and eats a sandwich while drinking from a glass.;A person is sitting on a chair, typing on their laptop, located on their desk. The person takes a drink of water from a glass on the desk. The person then picks up a sandwich and takes a bite, and then goes back to typing.\",c106 7.00 13.70;c052 0.00 22.00;c156 1.40 8.40;c059 0.00 22.00;c065 1.30 8.50;c110 6.10 12.20;c063 9.00 14.00;c061 10.30 16.60,21.21\r\n6FASX,D0RU,Living room,7,7,Yes,\"A person stands on a chair in the closet, trying to reach something on a high shelf. The person gives up and gets down, then takes a drink from a glass of water.\",chair;cup;glass;shelf;something;water,A person moves a chair into a room then stands on it to reach for something high up on a shelf. They then move the chair and sit down on it in front of the TV.,c107 25.80 34.00;c059 26.60 34.00;c060 5.10 25.00;c151 26.00 34.00;c082 8.00 22.00,33.08\r\nD4XVH,9PLL,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,One person stands in the entryway with a book eating food from dishes on a shelf.,book;dishes;food;shelf,A person is walking in a hallway holding a book. They walk to a plate on a shelf and eat food from the plate.,c026 0.00 33.00;c156 8.90 31.40;c063 3.20 30.70;c061 2.70 30.90,31.54\r\n4N5P9,SR1C,Closet / Walk-in closet / Spear closet,7,6,Yes,A person is laughing while undressing in their closet. They put their phone on a table.,closet;clothes;phone;sweatshirt;t shirt,\"A person stands in a closet, holding a phone,  and takes off his sweatshirt and t shirt.;A person is standing in a closet laughing at something on their phone while undressing.\",c016 0.00 20.80;c149 0.00 33.00;c155 1.30 18.60;c155 20.30 27.10;c017 16.90 24.40;c152 0.00 33.00;c015 0.00 24.30,31.79\r\nIQ0ZX,WQ8Z,Living room,6,7,Yes,\"A person is snuggling with a blanket, then the person begins grasping a cup of coffee.\",blanket;coffee;cup;dish;glass;laptop;pillow;table,A person is snuggling with a blanket on a sofa and watching a video on a laptop while drinking from  a glass,c070 0.00 15.80;c072 0.30 14.00;c106 20.80 26.30;c010 0.00 27.00;c118 13.10 27.00;c076 0.00 15.60;c110 12.80 27.00;c052 0.00 3.40;c078 0.20 14.00;c051 0.00 3.50;c014 0.00 3.70;c107 13.10 27.00;c120 12.90 17.60,25.62\r\nY4LT8,KQI6,Kitchen,6,7,Yes,One person is sitting by a refrigerator.  Another person is washing dishes.,chair;dish;food;purse;refrigerator;sink,\"This person is sitting on a chair next to the refrigerator, takes out a purse, puts it back in the fridge, then the camera turns to a person washing dishes at the sink.;One person is opening a fridge and pulling out some food while another person washes a pot in the sink.  They both talk to each other.\",c063 5.30 12.30;c120 17.60 24.90;c059 0.00 19.40;c142 10.10 16.10;c062 5.30 18.90;c143 1.30 6.20;c121 17.30 31.00;c147 17.30 31.00,29.88\r\nUYJVE,PO5L,Home Office / Study (A room in a house used for work),4,7,Yes,\"A laptop sits on the cabinet a person is walking in, sneezing then is seen grasping the laptop and lying down on the sofa.\",closet/cabinet;laptop;sofa,A person walks into a room and begins sneezing. They take a laptop to sit down on the couch and play with it;A person is walking around the room sneezing they take a laptop and sit down with it and they open it then they get back up,c048 23.10 33.80;c123 22.10 37.50;c151 23.50 30.40;c153 9.60 16.70;c154 33.50 40.00;c113 14.10 22.80;c050 18.80 27.50;c046 31.10 35.90;c049 31.50 37.30;c047 18.40 35.50,39.12\r\nEWCV4,T7C3,Hallway,6,6,Yes,A person is lying on a pillow and removing their shoes and then closing a door in a hallway.,door;floor;pillow;shoe,\"A man is laying on a floor in the doorway, then takes his shoes off and stands and walks away, leaving his pillow on the floor.\",c078 0.00 18.20;c057 8.40 17.10;c154 17.50 27.40;c146 13.10 25.60;c124 0.00 6.70,30.21\r\nVF3Y0,WG9D,Kitchen,4,1,No,A person is seen tidying up their shoes. They then start working on eating some food.,bowel;dish;food;pot;rag;shoe;stove,\"A person wipes off the kitchen counter with a rag and then gets a pot and starts putting food from the pot onto a plate;A person is standing in a kitchen and appears to be knocking a shoe on the stove (presumably to knock dirt off.  They then put the shoe down, turn and grab a pot from the table behind them, put it on the stove, and begin to divide food up in bowelslk.\",c062 6.00 10.00;c054 0.00 5.00;c119 1.20 9.40;c120 1.20 7.80;c118 1.90 7.40,9.46\r\n9T11N,Z68L,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is in a office holding a picture, they then start sneezing into a small towel rag.\",chair;desk;paper/notebook;picture;table;towel,\"A person takes a seat behind the desk. While sitting, the person coughs into a towel while looking at a desk picture.;A person sits down at a desk and picks up a picture to look at.  While looking at the picture, the person sneezes four times and grabs a towel to sneeze in.  After the sneezing, the person puts down the towel and the picture and gets up from the desk.\",c033 6.20 31.00;c038 12.00 17.10;c088 0.00 11.20;c151 0.00 2.90;c011 0.60 31.00;c036 26.10 31.00;c084 0.00 31.00;c153 7.50 24.10;c009 26.50 31.00;c088 0.00 29.90;c115 0.00 30.50;c116 25.80 31.00;c117 0.00 4.40,30.46\r\nJI705,25TD,Laundry room,6,7,Yes,\"A person is laughing as they try to do their homework. The person stands up and stretches, then takes a bag of food from the nearby shelf.\",bag;book;food;homework;paper;shelf,A person sits on a chair doing homework and laughing. The person gets up and pulls a bag out of a cabinet.,c115 0.00 16.10;c063 20.60 26.60;c149 4.90 15.10;c062 18.00 32.00;c020 20.20 32.00;c154 10.80 18.70;c023 18.50 32.00;c029 3.70 13.90;c021 18.50 32.00;c152 3.50 16.10;c145 0.00 14.40;c116 10.50 17.00,30.54\r\nMJY7E,ZSRZ,Closet / Walk-in closet / Spear closet,6,6,Yes,A person throws a towel on top of a bag sitting in their walk in closet.  They then play a game on their phone as they leave the closet.,bad;bag;clothes;napkin;paper;phone;towel,\"Person throws napkin in bag, picks up phone, looks at it, walks away with it.;A person is standing in closet throw away a paper into a bag and then walks off while looking at their phone\",c018 0.00 2.70;c036 8.00 13.00;c003 0.00 4.40,11.96\r\nNDD35,UTMU,Hallway,6,7,Yes,A person is running down the hallway holding a bottle of medicine and a blanket.  The person sneezes and holds onto the doorknob of the closet door for stability.,blanket;door;medicine,A person runs down a hallway holding a blanket and a bottle of medicine. The person stops and holds onto a doorknob.,c128 0.00 28.30;c070 0.00 28.50;c141 3.40 28.50;c150 0.00 11.90,29.21\r\n4D5XD,YA10,Garage,6,7,Yes,\"A person puts on a pair of shoes, then leaves through the doorway.\",clothes;doorway;garage door;shoe,A person puts on some shoes. They walk out of the garage;A person is putting on their shoes in the garage. The person adjust their clothing and walks out of the garage.,c097 25.40 32.00;c055 0.40 25.60;c002 0.10 24.70;c001 0.30 24.80;c000 0.40 6.60,30.58\r\n3W31X,T7C3,Dining room,5,7,Yes,A person is laughing and sneezing while standing bu the table with the groceries.,bag;groceries;table,\"Person is standing, holding two bags with groceries and sneezing, then person puts groceries on table.\",c009 22.70 27.00;c153 0.90 7.20;c130 22.70 27.00;c149 21.00 27.00;c020 0.00 27.00;c022 23.10 27.00;c152 3.10 27.00,26.04\r\nY05U8,ZEM0,Dining room,4,4,Yes,\"A person is standing in the kitchen, reading a book. The person puts the book down and takes out their phone. The person grabs their coat and begins dressing to go outside.\",book;clothes;jacket;phone;table,\"A person sits down at a dining room table and starts flipping through a book, they pick up their phone and check it before putting their jacket on.\",c018 19.10 25.40;c154 21.40 26.60;c151 0.00 3.70;c032 0.00 22.00;c148 25.00 34.00;c151 21.00 26.00;c001 25.00 34.00;c011 0.00 24.50;c002 25.10 30.20;c025 18.60 23.30;c015 20.00 28.10;c026 0.00 24.70;c027 0.00 4.20;c017 22.90 28.60,34.25\r\nTYHA8,YMXV,Bedroom,6,6,Yes,\"One person tidies up stray clothes and a pillow, sneezes, then closes a box on a shelf.\",clothes;phone;pillow;shelf,A person is holding a phone. The person puts down the phone and starts to tidy up with a towel. A person then picks up the linens and moves them elsewhere.;The person picks up a phone and some pillows off of the bed. The person appears to be cleaning up the room.,c081 22.10 29.50;c076 12.90 26.90;c017 2.00 7.90;c079 14.60 26.90;c077 22.30 26.90,30.88\r\nVML1Z,ID9V,Closet / Walk-in closet / Spear closet,3,7,Yes,\"A  person stands, puts a broom in the closet, and then looks at the person's wardrobe in the closet.\",closet;door,A person opens the closet and is looking through it.,c113 0.00 6.20;c008 0.00 5.60,29.33\r\nK8HXX,5LWB,Stairs,6,7,Yes,\"A person is lying on the stairs, struggling with a pair or shoes. Another person sits at a nearby desk and watches, laughing.\",clothes;floor;shoe;steps,two people sit on the stairs while one tries to put his shoe on,c055 0.00 17.00;c149 0.00 17.00;c125 0.00 17.00;c148 0.00 17.00;c152 0.00 13.20,15.79\r\nAXJUB,P6LJ,Living room,6,5,Yes,\"A person is holding a towel in the basement. Smiling, the person picks up a sandwich and begins to eat it.\",blanket;food;sandwich;table;towel,\"A person carries a towel from the living room into the dining room. They pick up a sandwich from the table, walk back into the living room, and take a bite. The person fidgets with the towel for a second, takes another bite, puts the remainder of the sandwich back on the table and walks towards the camera to turn it off.\",c065 12.50 31.90;c067 11.20 31.90;c068 25.70 35.10;c069 6.70 15.90;c033 0.00 32.30;c156 0.00 36.20;c071 32.20 37.10;c063 4.70 13.00;c009 28.80 34.50;c070 0.00 36.90;c073 0.00 37.30;c061 4.50 34.00,37.08\r\nOWGPH,3H6W,Laundry room,7,5,Yes,\"A person is undressing in the laundry room, throwing their clothes into the desk. The person wraps a blanket around themselves.\",blanket;clothes;clothing,\"A person takes off clothing, and then takes a blanket and wraps themselves in it.\",c070 12.20 24.60;c072 12.60 25.70;c001 5.50 15.30;c003 7.40 15.30;c155 7.90 15.50,27.21\r\nZHGEV,YMXV,Bedroom,7,7,Yes,\"The person was wearing a towel, smiling while leaving wet footprints on the floor.  The person stopped in the doorway.\",door;towel,\"A person is walking into a room then stands in a doorway, they are wrapped in a towel.;Person walks out room is wet and wearing a towel, walks towards door, opens it and stands in doorway.\",c008 15.20 32.00,31.00\r\nX0O65,Z68L,Recreation room / Man cave,6,7,Yes,A person is walking  with a sandwich in their hand then they sneeze in front of a mirror.,hand;sandwich;table;towel;window,\"A person walks into a living room, holding a sandwich. The person looks at something on the table, sneezes, and then walks away.;A person walks around a living room while holding a towel.  The person then sneezes while looking at an object on a table.\",c067 2.60 26.60;c153 7.70 19.90;c092 19.50 25.90,28.38\r\nE7TLO,C7O9,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person walks into a closet and takes a camera off the shelf. A second person standing nearby, watching, walks to the closet and the person inside turns around a takes a picture.\",camera;chair;phone;picture;shelf,\"A person stands in a doorway while another person walks past into a closet, takes a camera off of a shelf and takes a picture.\",c087 24.90 32.00;c015 2.40 27.50;c059 2.10 27.80;c151 0.90 6.40,30.54\r\n45BIP,38MV,Bedroom,6,6,Yes,A person is tidying up in front of a mirror when another person comes running through the doorway wrapped in a blanket.,blanket;door;glass;pillow;shoe;water,\"A person is  picking up shoes from the floor then folding a blanket while another person walks in wearing a blanket on their shoulders.;A person grabbed shoes from the floor.  The person then folded a blanket.  Another person, wearing a snuggie, then attempted to distract the first person.  The first person ignored this tomfoolery.\",c070 11.30 23.20;c072 10.30 22.70;c054 0.00 13.70;c075 11.00 26.00,24.58\r\n2Q3ZJ,38MV,Bedroom,6,6,Yes,A person is undressing in front of a mirror and smiling at the reflection. Another person runs into the large closet while on the phone.,closet;clothes;doorway;mirror;phone;wardrobe,\"There is a person standing in front of a mirror taking their clothes off.  Another person walks into the closet while talking on the phone.;A man is standing in front of a mirror in his mirror undressing. He takes a jacket off, then a shirt, then an undershirt. His wife walks into the room past him and goes into the closet talking on the phone. He begins to take off his belt.\",c019 18.00 28.90;c113 19.50 25.80;c097 18.90 29.30;c096 0.00 29.40;c155 0.00 33.10;c112 20.30 29.40;c015 18.20 29.40;c002 0.00 33.10,38.33\r\n7GF4E,4OHY,Dining room,2,7,Yes,\"A person walks into the dining room, grasping a bag of food. The person puts the bag down on the table.\",bag;food;groceries;table,A person walks around a kitchen holding a bag of groceries. The person places the bag of groceries down on the table.,c020 0.00 23.00;c009 20.00 25.00,29.42\r\n3VEJY,HJJ4,Bedroom,6,7,Yes,A person is running around the bedroom with a pillow.  The person puts it down and then starts grasping at a bag.,pillow,A person is running around the bedroom holding a pillow,c076 0.00 10.90;c150 0.00 8.60;c080 6.20 10.90,16.50\r\nR979C,0KZ7,Kitchen,7,7,Yes,One person holds groceries and laughs at another person who is wrapped in a blanket cooking and holding a book of recipes.,bag;blanket;book;food;groceries;paper;pot;stove,\"A person is holding a bag and is standing behind a young person. The younger person is holding a notebook, wearing a blanket as a cape, and is stirring a pot on the stove.;Two people are in a kitchen.  Person 1 is holding a bag and laughing.  person 2 is wearing a blanket.  Person 2 is reading a book while cooking at the stove.\",c026 0.00 29.00;c147 0.00 29.00;c032 0.00 29.00;c149 0.00 29.00;c115 0.00 29.00;c020 0.00 29.00;c152 0.00 29.00,28.04\r\nS8X4A,QB52,Bathroom,6,6,Yes,A person in a bathroom starts sneezing and they walk out of the bathroom and set on their bed and turn on a television and start watching what is on the screen.,bed;doorway;mirror;television,\"A person sneezes in the bathroom, then walks into the bedroom where they use a remote control to interact with a TV.\",c135 9.40 31.00;c132 9.70 31.00;c153 1.30 8.30;c097 7.50 13.30;c096 0.70 10.10,30.04\r\nD0V0Y,D0RU,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"The person sneezes abruptly, then turns on the light.  They sit down and begin to put on their shoes.\",chair;door;light;shoe,\"A person walks through a door and into a room.  As the person enters, they sneeze three to four times, and then turn on a light.  After this they sit in a chair and begin to adjust their shoes.;A person walks through a doorway while sneezing.  The person then turns on a light, takes off a shoe, and puts another shoe on.\",c104 14.50 20.50;c151 21.80 35.00;c097 6.20 12.00;c057 25.30 35.00;c055 26.00 35.00;c153 7.20 16.60;c054 30.30 35.00;c059 22.50 30.00;c006 12.30 17.80;c056 25.00 32.70,33.92\r\nX8LT0,Z68L,Home Office / Study (A room in a house used for work),7,7,Yes,The person is standing in the home office opening a box in the doorway.,box;doorway;scissors;table,\"A person is trying to open a box, they then use scissors to cut the tape from the box to open it and remove an item.\",c039 46.90 54.80;c040 0.00 55.70;c041 2.80 40.10;c042 50.80 56.20;c044 40.70 48.60;c009 12.10 20.10;c043 16.10 21.50,56.46\r\nMUI01,XXN8,Bedroom,6,6,Yes,\"A person is grasping an armful of clothes. Then, standing, the person walks over to the television and begins dressing in front of it.\",clothes;hair;television,\"A woman moves a jacket, puts on a sweater, turns on a tv.\",c001 4.40 9.60;c148 14.10 28.90;c144 19.60 24.70;c003 0.40 9.60;c000 0.00 17.80;c002 0.00 17.80;c004 0.00 17.10,35.92\r\nSA9PB,NG2W,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is eating a snack while looking through their closet for a book. They find it up on a high shelf, underneath a blanket. They then pull out their phone, search for something and watch a video.\",book;closet;clothes;door;food;phone;sandwich,\"A person eats food, while looking for clothes in his closet. The person takes their phone out of their pocket and looks at it.;a person eats something as they look around in a closet and grab a book then pullout their phone\",c016 21.00 32.00;c156 3.30 9.00;c061 0.70 9.50;c015 18.20 32.00;c065 0.50 32.00,31.17\r\nMFQ5S,H8N1,Kitchen,6,7,Yes,Person is washing cabinet and shelf with cloth and starts smiling after looking at television.,cabinet;towel,\"A person walks into the kitchen and begins scrubbing the cabinet doors.;Person walks into the kitchen and starts cleaning the cabinets by wiping them down, opening and closing them.\",c113 0.00 5.30;c038 8.20 27.50;c114 0.00 32.20;c152 29.20 35.10;c112 6.00 12.80,39.08\r\nPDRVY,P6LJ,Kitchen,6,6,Yes,A person standing in the pantry opens a cabinet door only to see a bag. Then they throw something into the pantry.,bag;closet/cabinet;door;something,\"There is a person in the kitchen and they place something on the counter.  They walk over to a door, open the door and pick up a bag.  That same person then takes the bag into the room and closes the door.\",c020 10.70 26.90;c023 9.00 16.40;c006 17.80 25.00;c008 3.60 12.80;c113 4.00 12.40;c024 22.70 27.30;c112 17.90 24.60,26.71\r\nA6NH2,P6LJ,Kitchen,6,6,Yes,A person was leaving a bottle of medicine in the pantry while someone else was laughing at them while vacuuming out the pantry for not being able to reach the medicine shelf.,closet;counter;door;hose;medicine;vacuum,A person is vacuuming a closet in a kitchen using a hose for the clean up proccess.;A person in the kitchen opens a small closet door. The person places a vacuum cleaner attachment onto the end of a hose and vacuums out the closet.,c137 23.50 32.50;c008 3.00 20.00;c128 7.90 26.30;c137 26.60 125.00;c113 4.20 15.70;c114 62.00 125.00;c097 8.60 26.90,124.33\r\n5CZRC,9Y7F,Kitchen,5,7,Yes,A person is standing over the sink holding a sandwich. The person begins drinking water from a glass as the person eats.,cup;food;glass;sandwich;sink;something;water,A person is eating a piece of fruit and drinking a glass of water.,c106 7.10 17.20;c156 0.00 7.90;c110 3.00 11.40;c061 0.00 33.00,31.92\r\n8K46I,PO5L,Bedroom,4,4,Yes,A person sitting on the bed begins undressing while watching the television.,bed,A person gets on a bed and gets off a bed.,c134 1.90 26.60;c154 22.50 28.40,28.75\r\n6912B,QB52,Bedroom,6,7,Yes,A person is fixing their bed and then sits down on it. They are holding a laptop and begin watching videos.,bed;blanket;laptop,\"A person made a bed, then sat down on the bed, and picked up and used a laptop computer.\",c047 13.00 18.70;c048 14.70 21.20;c050 10.80 16.30;c052 18.70 29.50;c135 12.40 30.60;c151 11.50 17.90;c075 2.10 13.90,30.04\r\nE6PSM,AC0W,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is taking a book out of a box.  Then a person is laughing while glancing through the book.,book;box;door;floor,\"A person opens a door and walks into a room while holding a box. They open the box and pull out a book. They open up the book and laugh at it, then they walk out of the room.\",c041 10.00 27.20;c026 23.70 39.80;c027 26.20 38.20;c149 28.50 39.00;c045 23.20 28.30;c097 3.90 9.80;c044 22.00 27.90;c006 5.80 12.50;c008 0.90 9.60;c025 33.30 39.20;c032 24.50 38.60;c040 3.30 25.30;c126 23.20 28.10;c030 23.40 27.70,42.00\r\nT1FTD,S053,Laundry room,5,7,Yes,A person smiles as they pull a pillow from the dryer. The person closes the dryer door and puts the pillow onto a shelf.,clothes;door;pillow;shelf,A person enters a laundry room and opens the dryer the take out a pillow. They snuggle with it while smiling before putting it on a shelf.,c006 29.60 35.00;c008 15.40 24.50;c077 27.50 33.40;c078 24.50 31.00;c081 27.40 33.40;c152 24.80 30.20;c002 21.20 27.40;c076 24.00 32.40,33.88\r\nAZMVM,2Q9D,Bedroom,6,7,Yes,\"A person is undressing in the bedroom. The person, holding a pillow, walks to the cabinet and puts it away.\",bed;cabinet;clothes;pillow,\"A person is sitting on their bed undressing. They take their pillow and place it in a cabinet.;A person is sitting on a bed undressing out of the clothes, they then take a pillow and put it inside a cabinet.\",c076 14.60 26.00;c112 21.20 27.50;c154 15.60 20.40;c001 12.60 18.60;c077 18.50 28.00;c113 17.40 24.60;c135 0.00 19.70;c155 0.00 20.70;c003 13.90 18.20,31.04\r\nCOBEK,XXN8,Home Office / Study (A room in a house used for work),5,7,Yes,A person is washing a chair by a doorway.  A person is doing this while laughing and standing next to a cabinet.,cabinet;chair;towel,\"A person is cleaning their chair with a small towel.;a person cleaning a chair, opens and closes the cabinet then goes back to cleaning the chair while smiling\",c112 7.80 13.20;c113 7.40 12.90;c149 0.00 13.80;c152 0.00 13.50;c033 0.00 31.00;c038 0.00 11.80,30.46\r\nCH0PM,G6WD,Closet / Walk-in closet / Spear closet,4,6,Yes,\"A person is undressing in the closet, leaving their clothes on the ground.  They kick off their shoes, and stand up straight, stretching.\",camera;closet;clothes;door;floor;jacket;light;shirt;shoe,\"A person walks from one side of the room to another. They open the closet door and begin undressing. They throw their jacket and shirt on the bed, and stretch. They walk away from the closet and take the camera.;A person opens a door and walks inside a closet and takes their shirt off. Then they take their shoes off and stretch. Then they turn the light off and walk back across the room.\",c104 5.30 9.90;c057 21.90 30.30;c000 6.70 13.00;c155 8.80 24.00;c008 1.40 9.30;c003 15.60 24.00;c058 23.70 35.30;c001 10.30 25.60;c113 3.80 11.20;c126 26.10 34.80;c105 44.90 49.50,52.42\r\nEX1PY,XXN8,Kitchen,6,6,Yes,A person is closing a box on a shelf. The person then is drinking a cup of coffee.,box;closet/cabinet;coffee;cup;glass;shelf,The person takes a box off the shelf and puts it back. They then drink a cup of coffee,c082 0.00 15.10;c042 0.00 15.60;c043 0.90 9.80;c106 12.20 35.00;c110 0.00 15.90;c112 10.90 16.10,33.88\r\nRLS2I,WG9D,Recreation room / Man cave,5,7,Yes,A person walks into the room. The person takes a blanket from the shelf and leaves.,blanket;closet;doorway;towel,\"A person is walking into a room to grab a towel and then again back out of the room with the towel.;Person walks through doorway, opens closet, grabs towel, and walks back through doorway.\",c070 4.50 10.10;c033 4.50 10.10;c113 3.80 8.40;c097 5.50 11.00;c035 3.90 10.10,9.96\r\nJCBDT,YMXV,Bedroom,6,7,No,A person is taking a picture of a doorknob while a other person is holding a picture laughing at it.,bed;phone;picture,\"A person is playing with their phone while standing. A second person is talking on their phone, staring at a picture, while sitting on a bed.;A person is standing tapping on the screen of a cell phone and talking. Another person is sitting on a bed talking to a person on a cell phone.\",c152 23.30 27.70;c149 25.90 31.00;c016 0.00 23.10;c135 19.50 32.00;c084 19.10 32.00;c088 19.10 32.00;c015 0.00 32.00,30.96\r\nLK1AE,ID9V,Bathroom,6,7,Yes,A person is sitting by the sink. The person throws a towel down then turns off the light.,chair;light;towel,A person is grasping at a towel with some anger.  The person then throws the towel and turns the light off.,c033 0.00 21.50;c036 17.20 22.90;c105 21.20 26.80;c154 18.70 24.40;c059 0.00 22.90,27.96\r\nTAZGF,UO0Z,Hallway,7,7,Yes,A person is standing in the hallway holding a plate of food. The person walks to a chair and sits down.,chair;dish;food;sofa;table,\"A person is standing by the doorway holding a plate of food, they then put the plate on a table and sit down on a sofa.;A person is walking across a room with a dish they put it on the coffee table and then they sit on the couch.\",c061 0.00 9.90;c059 7.30 13.00;c123 7.30 13.00;c062 5.00 9.50;c154 6.70 11.00;c151 6.90 12.30;c118 1.00 8.90;c120 0.00 13.00;c063 0.00 13.00;c061 6.70 10.80;c009 4.50 10.50;c119 4.30 10.60;c011 7.36 13.00,12.04\r\nBN4VH,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person walks into the entryway, sneezing and carrying a blanket. The person picks up a box, and leaves.\",blanket;dish;doorway,A person walks into a room through a doorway holding a blanket yawning.  They pick up a bowl from a table and walk away.,c070 1.80 22.10;c120 14.30 18.90;c097 3.00 8.60;c118 15.40 21.40,31.33\r\n491X2,KFGP,Home Office / Study (A room in a house used for work),7,7,Yes,The person sits at a desk and works on a laptop. The person then washes the desk.,chair;desk;laptop;table;towel,A person sitting at a desk is working on a laptop. They stop to tidy the desk.,c052 0.00 19.70;c012 15.80 36.00;c154 32.50 36.00;c059 0.00 36.00;c014 0.00 20.40;c011 0.00 36.00;c037 23.10 36.00,35.29\r\nIS7PL,BYF9,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person walks into the closet, eating a sandwich. The person looks into the mirror.\",doorway;food;mirror;sandwich,A person walks into the bathroom eating a sandwich then looks in the mirror while eating.;Someone walks through the doorway eating a sandwich and then looks at themselves in a mirror.,c065 0.00 6.60;c067 0.00 22.00;c096 6.30 22.00;c156 8.40 16.80;c097 0.00 10.80;c061 0.00 22.00,20.75\r\nE2TCA,XXN8,Home Office / Study (A room in a house used for work),6,5,Yes,\"One person works on installing a shelf when another person runs in, laughing and drinking a glass of soda.\",cup;glass;shelf,A person is shaking a shelf while another person walks in drinking a glass of water.,c106 2.50 34.00,34.67\r\nFVTEU,P6LJ,Living room,6,6,Yes,A person is lying by a shelf with a book sitting on the blanket.,camera;floor,A person walks and then lies on the floor. The person first rests their head on their head and then lies down completely on the floor.;The person set the camera to video themselves lieing on the floor.,c154 38.70 44.50;c124 13.30 40.90;c151 3.50 20.40;c125 11.00 41.60,44.21\r\nAADCE,YMXV,Bedroom,5,6,Yes,A person is in their bedroom sitting down on a chair while drinking from a glass of water. They start taking their phone out of their pocket and read some messages on their phone.,chair;cup;phone;water bottle,The person is drinking water from a water bottle and playing on their phone.,c059 0.00 32.00;c015 14.80 32.00;c016 16.50 32.00;c106 0.00 14.50;c107 0.00 18.00;c018 14.80 20.70;c109 13.20 19.10,31.29\r\n04MTP,1OHU,Recreation room / Man cave,6,7,Yes,A person is sitting at their desk and laughing as they eat food.,bag;chair;computer;desk;food;table,\"A person is sitting in an office chair eating chips, the person then rests his arm on a computer screen for a bit.;person sits in a chair and eats some chips  and laughs\",c061 0.00 32.00;c011 0.00 32.00;c156 0.70 32.00;c020 0.00 32.00;c062 0.00 32.00;c063 0.00 32.00;c059 0.00 32.00,31.38\r\n7OW67,5LWB,Stairs,4,6,Yes,A person is taking a picture with a camera of another person that is standing on the stairs.,camera;hair;phone;picture;stairs,A person stood on a flight of stairs and took photos of another person who was at the bottom of the stairs engaging in a series of different poses.,c087 0.00 19.00;c015 0.00 19.00;c144 3.70 9.60,18.25\r\n2CFCW,KQI6,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person is holding a broom. Another person comes in with groceries and snuggles the other person.,bag;broom;groceries,A person enters the front door carrying a bag. The person walks over to a table where another person is. The people remove items from the bag.,c098 0.80 12.50;c099 6.80 18.70;c130 4.30 10.20;c020 19.50 31.00,29.88\r\nRO116,UTMU,Bedroom,5,7,Yes,A person is taking a glass out of a cabinet while holding a sandwich in a bedroom.,closet;cup;door;food;glass;mirror;toast;wardrobe,A person opens a wardrobe and grabs a cup out from it. The person is holding a piece of toast and walks away.;A person takes an object out of a closet in front of a mirror.,c107 5.80 20.80;c113 1.20 7.80;c112 0.00 15.00;c008 0.00 2.50;c061 0.00 23.00,21.83\r\nBVS38,0KZ7,Laundry room,7,7,Yes,A person is pouring laundry soap onto their clothes while another person is sitting and talking on the phone.,clothes;detergent;phone;washing machine,A person is putting clothes in the washer. Another person is standing and talking on the phone.,c015 0.00 29.00;c001 0.00 15.10;c005 0.00 29.00;c019 0.00 29.00,28.04\r\nVOWY1,HRH1,Bathroom,4,1,No,\"One person grasps a bag hanging on a doorknob and eats something from it, while watching to see if anyone is around.\",mirror,\"A person is standing looking in a mirror.;A person is looking in a mirror. The person moves out of view, and then reappears in front of the mirror.\",c096 0.00 5.00,24.42\r\n1Y09V,ZAWX,Other,7,7,Yes,\"A person drinks from a cup of coffee, then puts the cup down on a chair.\",chair;coffee;cup;dish;food;glass,A person is standing and drinking coffee from a cup. They put the cup on a chair and leave.,c106 3.20 23.60;c106 4.50 10.30;c107 0.00 28.10;c109 0.00 32.00;c118 0.00 32.00;c062 0.00 32.00;c119 0.00 32.00,30.79\r\n01ZWG,6RE8,Recreation room / Man cave,6,5,Yes,\"A person puts a laptop down onto a desk. The person sits at the desk, opens the laptop, and begins playing a game.\",chair;desk;game;laptop;table,\"A person sets their laptop down on a table, sits down, opens it, and begins working on it and smiling;a person opening a laptop, sitting in a seat then playing video games.\",c048 4.90 11.00;c011 7.20 13.50;c151 7.20 13.20;c059 7.00 34.00;c152 30.20 34.00;c009 4.20 10.20;c051 11.60 18.90;c014 18.50 33.70,32.75\r\n0CGMQ,EIO2,Living room,7,7,Yes,\"A person is sitting in a chair, watching television and laughing. They hear a knock, so they stand up and go to their door.\",chair;door;television,\"A person sits in a chair and watches TV while laughing, then gets up and goes to the door.\",c008 31.10 35.00;c059 0.00 27.10;c131 11.00 16.00;c149 20.30 26.00;c154 22.50 27.90;c132 0.00 26.20;c152 0.00 26.20;c141 14.90 27.10,34.04\r\n2SIO0,YMXV,Bedroom,5,5,Yes,A person is snuggling with a towel and then smiling at a television in a bedroom.,clothes;television;towel;tv,Laughing person dressed in a towel turns on a television.;A person fixes their clothes and then begins talking to a tv.,c131 2.10 17.40;c132 2.10 17.40;c152 17.00 22.10;c148 0.00 4.80;c033 18.30 26.50,31.08\r\n7UV4O,F56T,Bedroom,6,6,Yes,A person in the living room is putting a pillow onto the bed. They begin watching some food that is on a table nearby that person.,bed;bowl;pillow;table,\"A person puts two pillows on a bed, looks around and picks up a bowl from a table before putting the bowl back and leaving.\",c009 21.20 26.30;c076 1.20 13.50;c077 5.40 13.50;c080 4.70 13.70,31.96\r\nNZ7VY,LTAC,Living room,5,7,Yes,A person pours a cup of coffee from a thermos. The person puts the thermos into a shelf and continues working.,cabinet;coffee;couch;cup;glass;shelf;sofa;tablet;thermos;tray,\"The person poors coffee into a cup on a tray, walks to a cabinet, opens the door, then walks to a couch and sits down and checks a tablet;The person pours a cup of coffee into a glass and places it on the table. They put the coffee on the shelf then sit on the sofa.\",c108 3.40 14.30;c151 24.00 32.00;c109 3.50 14.20;c081 16.20 25.60;c123 22.80 29.70;c113 16.30 23.30;c112 18.80 25.60,30.75\r\nWJ1GN,ZAWX,Living room,6,4,Yes,\"A person is standing in front of a desk playing with a deck of cards.  The person tidies up the cards and puts them back into their box, then puts the box in a bag.  The person turns off the light and walks out.\",bag;box;cards;chair;table,A person is places cards into a box on a table.;A person is sitting in a chair holding some cards. They take some cards off the table and put them in a box. Then they grab a bag and put the box inside the bag.,c041 8.10 18.10;c020 14.70 31.00;c009 1.00 31.00;c059 0.00 31.00;c011 0.00 31.00;c039 8.70 18.70,29.96\r\n9SZG2,6RE8,Living room,7,1,No,A person is walking past the doorway then begins to smile as they put the groceries away.,door;food;items;mints;shelf,\"A person walks into a room. Picks up a package of mints from a shelf and takes one. The person fiddles with items on the shelf, picking up and object and putting it back down on the shelf;a person walks into a room and grabs food off a shelf then tidies up the shelf\",c097 0.00 3.70;c082 0.50 8.00;c063 3.60 12.60;c008 0.00 5.50;c006 0.00 6.30;c156 7.80 13.80,33.08\r\n33I4D,P6LJ,Dining room,5,7,Yes,\"A person fixes a cup of coffee before taking a drink of it.  When they are done, they put the cup on the table.\",chair;coffee;cup;dish;glass;jar;spoon;table,\"A person sits down at a table and picks up a jar.The person put stuff in a cup and stirs it .The person takes a drink of the cup.;A person sits in a chair, opens a bottle and puts something in a cup. They then take a drink from the cup.\",c106 38.60 47.60;c107 29.30 47.80;c011 5.80 49.10;c107 6.00 32.10;c151 3.00 9.30;c059 5.00 49.10;c108 13.30 28.50;c118 6.80 33.10;c009 25.80 32.60,50.04\r\nSQBEE,9PLL,Stairs,4,7,Yes,\"A person sits on the stairs, wrapped up in a blanket. The person is eating food.\",blanket;food,A person is eating with a blanket draped over them.,c072 0.00 37.00;c061 0.00 37.00;c156 1.20 6.50,35.71\r\n23X63,BYF9,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person picks up a hat from a table and puts it on. The person laughs then turns to wave at a second person, who is holding a broom.\",broom;door;floor;table,\"A person is sweeping the floor with the broom. Another person enters the room, walks to the table and picks up a hat. That person puts on the hat, waves at the person who is sweeping and walks out the door.\",c102 0.00 16.00;c008 11.80 16.00;c152 9.90 16.00;c098 0.00 16.00;c097 9.40 16.00;c127 0.00 16.00,15.50\r\n5KQL2,ZAWX,Pantry,6,5,Yes,A person is standing and holding a bag of groceries and then turning a doorknob of a pantry.,bag;cabinet;door;drawer;groceries;shelf,The person is holding a bag and opening and smelling items to possibly put in the bag then moves to opening a cabinet door.;The person puts an item from a shelf in a bag then picks up other items and puts them back on the shelf before opening a drawer.,c021 19.30 26.50;c020 0.50 5.60;c008 25.80 31.80;c020 0.60 32.00;c130 3.00 26.20;c113 25.60 31.30;c081 11.20 16.10;c082 0.00 28.50,31.00\r\nZ320B,ZEM0,Laundry room,5,7,Yes,A person is tidying up their laundry room with a broom. The person takes a blanket and folds it.,appliance;basket;blanket;broom;clothes;floor,\"Person holding broom, sweeps floor, puts broom in corner by door, picks up clothes from basket, folds it, and touch appliance.\",c000 18.10 45.00;c098 0.00 19.90;c099 14.50 20.50;c102 0.20 17.70;c127 0.60 17.90;c071 18.70 24.90;c073 17.60 22.50;c001 35.30 41.20;c075 33.90 41.00;c070 25.10 32.20,43.96\r\nGISE8,4YWP,Bathroom,6,6,Yes,\"While tidying the bathroom a person put a towel on a shelf, then began dressing after closing the door to a medicine cabinet.\",cabinet;closet;clothes;mirror;shelf;shirt;towel,A person is folding a towel. A person then puts a towel in a closet. A person then puts on a shirt.;The person folds a towel in the bathroom. The person puts the towel away on a shelf. The person then puts on a jacket while looking in the mirror.,c081 10.00 16.60;c037 4.20 19.00;c112 16.50 21.90;c034 13.80 19.50;c148 18.80 28.50,34.62\r\n3STO2,4YWP,Bathroom,6,6,Yes,A person wrapped in a towel is standing holding a cup of coffee and sneezing.,blanket;cup;dish;glass;tissue,\"A sick person enters the bathroom wearing a blanket over their shoulders. The person picks up a glass, drinks from it, puts it down, and sneezes into a tissue.;A person is sneezing and drinking from a mug,the person then decides to grab tissue for nose blowing.\",c153 14.40 20.40;c070 2.30 34.00;c107 5.10 21.40;c106 8.60 14.80;c110 13.60 27.20;c072 15.90 30.20;c118 4.60 22.70,33.08\r\nUFWD5,4YWP,Bathroom,6,6,Yes,\"A person runs into the bathroom, and turns on the light. The person opens a drawer, removes something, then turns to doorknob to leave. The door will not open.\",bottle;cabinet;door;floor,\"A person is walking through a door then sitting on the floor and taking something out of a cabinet before playing with a doorknob.;A person walks into a bathroom and closes the door. The person kneels to grab something from the cabinet under the sink, then tries to open the door again.\",c112 0.00 3.50;c006 0.00 7.00;c154 17.70 24.90;c008 0.00 3.70;c151 2.60 11.00;c097 0.00 4.50;c113 2.50 8.50;c125 5.50 20.90;c141 0.00 5.50;c114 5.80 24.90,33.08\r\nZ4Y02,7I3D,Kitchen,4,7,Yes,A person is standing in the kitchen with the refrigerator door open. They close the door and begin cooking on the stove.,dish;door;food;pot;refrigerator;spoon;stove,A person is in the kitchen looking in the fridge and then proceeding to stir something in a pot.,c006 10.30 18.20;c142 10.30 18.20;c147 13.70 34.20;c118 1.20 34.70,35.17\r\nK3193,9Y7F,Hallway,5,5,Yes,\"In the hallway, a person is sneezing by a sofa.  Another person is taking a towel to another room.\",chair;doorway;sofa;towel,\"A person sits next to another person on a bench. The first person sneezes. The second person leaves, grabs a towel, then hands it to the other person.\",c123 0.00 15.50;c033 22.50 32.00;c153 9.60 19.60;c151 0.00 4.30;c154 11.30 16.40;c059 24.80 32.00;c097 12.90 18.60;c035 22.80 27.90,30.58\r\nVRMNI,9Y7F,Kitchen,6,7,Yes,A person walks into the kitchen after opening the door.  The person turns on the light and starts washing the dishes as the person stands at the sink.  The person then starts putting the dishes on the shelf.,cabinet;dish;door;food;light;shelf;sink,\"a person enters through a doorway turns on a light then brings dishes to the sink washes them and puts in cabinet;A person walks through a door and closes it behind them. They turn on the light in the room, and pick up a dish with food remnants on it. They wash the dish in the sink and place it on a shelf above the counter.\",c006 2.70 7.70;c118 15.60 31.90;c081 29.80 35.00;c121 16.40 32.80;c008 0.00 4.20;c120 8.00 13.80;c104 5.60 11.00;c097 0.00 5.90;c119 12.90 17.90,33.75\r\n8Y7P5,0KZ7,Garage,7,7,Yes,A person is eating while sitting in a chair while another is running out a doorway.,chair;door;food;sandwich,One person runs out of the garage while another stays sitting in the garage and eats.;One person ran out of the door and the other person sat on a chair and ate a sandwich.,c059 0.00 30.00;c156 2.20 30.00;c150 0.00 5.00;c061 0.00 30.00;c065 2.00 30.00,28.75\r\nEE6R2,9Y7F,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,Person is standing in entryway sneezing and laughing. Another person is taking picture of homework.,bench;doorway;homework;paper;phone;picture,A person stands in the doorway. A second person is sitting outside taking a picture of their homework.;The person is standing in the doorway holding a piece of paper and  speaking to anther person.  The other person is sitting down looking at the phone in their hand.,c087 16.20 24.00;c016 14.90 31.00;c115 0.00 31.00;c015 0.00 31.00,30.46\r\n5EFQ7,LTAC,Living room,4,1,No,A person is holding a bottle of medicine and then fixing a desk in a recreation room / man cave.,table,A person is fixing a table.;A person is fixing a table.,,31.62\r\n450TW,L4ZP,Living room,5,7,Yes,A person is snuggling on the couch with a book and begins eating food. Their phone rings and they answer taking the call.,book;food;phone;sofa,\"A person sitting on the couch opens a book. They eat some food while reading the book, then answer the phone.\",c123 0.00 32.00;c063 6.30 13.70;c032 13.30 21.90;c019 25.60 32.00;c156 10.00 16.30;c027 1.40 8.70;c018 19.80 25.60;c026 0.00 32.00,30.62\r\nNSKMC,QOQ4,Dining room,5,6,Yes,A person is sitting on a chair next to a dining table. This person is doing their homework. The person is drinking a cup of water. The person starts closing the school book.,book;chair;coffee;cup;dish;homework;paper;table,a person sits in a chair doing work and drinks coffee;The person is sitting in a chair working on homework. They grab a cup off the table and drink some coffee.,c026 0.00 26.00;c145 0.60 13.20;c059 0.00 26.00;c009 16.30 21.90;c106 12.10 19.90;c032 0.00 26.00;c118 11.50 21.80;c115 0.00 26.00;c110 10.50 15.60,25.17\r\nCMEA6,9PLL,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person closes the door in the entryway, and laughs at a picture, while holding groceries.\",bag;basket;door;groceries;photos;picture;shelf,\"A person locks the door, picks up a basket, then stares at two photos on a ledge.\",c152 13.30 23.50;c088 21.30 30.70;c006 0.00 5.90;c020 8.50 32.00;c083 22.30 32.00;c023 6.80 32.00;c082 22.00 32.00,31.29\r\nSMLI0,PKND,Home Office / Study (A room in a house used for work),5,6,Yes,A person is holding a picture while sitting at a desk. They put the picture down and begin tidying up their desk area.,desk;picture;table,\"a person sitting at a desk, looking at a photo, puts the photo down and tidy's up the desk\",c012 6.30 33.00;c086 2.70 8.30,32.12\r\nL1MR4,WQ8Z,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is tidying up the entryway, and picks up some dirty dishes. The person walks over to the vacuum, but instead pulls out their phone and starts playing with it.\",broom;dish;floor;phone;vacuum,A person vacuums the floor and then picks up a coffee cup and plays with their phone.,c016 16.50 28.00;c118 11.40 28.00;c099 7.30 13.90;c018 16.60 28.00;c015 14.70 28.00;c127 4.30 12.30;c102 4.30 12.30,27.33\r\n154TJ,QOQ4,Hallway,7,7,Yes,Walking down the hallway a person holding their homework in their left hand.  They stop and begin putting the homework into a box.,book;homework;paper,A person is walking with homework in the hallway and then they put it on the floor.,c117 1.30 12.40;c026 9.80 13.00;c028 9.80 13.00,11.79\r\nIO712,EXQX,Living room,6,6,Yes,A person walks up to a window and shuts a light. The person then grasps a book and sits down at a table.,book;floor;table;window,\"The person closes a window and then picks up a book. The person then sits down,places the book on a table and starts to read the book.\",c089 0.00 5.90;c009 4.60 13.10;c011 5.50 29.70;c026 6.40 28.20;c027 7.00 14.30;c030 1.90 8.60;c117 1.90 12.50;c125 3.70 11.60;c032 6.70 31.50;c125 7.00 31.50,60.17\r\nXZPAS,BYF9,Bedroom,7,7,Yes,A person is awakening with a cup of coffee while another person is leaving a picture on the floor.,bed;cup;floor;glass;picture,A person is lying on the bed holding a glass. A different person is looking at a picture before putting the picture onto the floor.;a person is laying in bed holding a glass and another person sets something on the floor,c084 3.30 9.10;c107 6.20 15.00;c134 0.00 8.80;c088 2.90 8.30;c086 4.80 13.00;c106 9.30 14.40;c135 5.30 15.00,14.38\r\nI68J0,3VLX,Closet / Walk-in closet / Spear closet,7,7,Yes,A person runs into the closet and takes a book from the shelf. The person fixes the shelf to neaten it up then takes a picture of themselves.,book;closet;phone;picture;shelf;table,\"a person grabs a book in the closet and sets it on a table then tidies up and takes a selfie;A person runs to a closet, takes a book off of a shelf, opens the book and looks at it, then puts the book on a table. The person is then tidying up a shelf before pulling a phone out of a pocket and then taking a picture of themselves as they smile.\",c026 4.70 12.50;c030 3.20 9.10;c016 21.50 39.00;c009 7.20 12.50;c082 2.80 24.60;c027 4.10 10.80;c150 0.00 5.60;c087 26.50 35.10;c025 18.70 24.40;c015 25.20 30.90;c028 15.40 21.70,38.21\r\nFQ9QX,OUKK,Living room,6,7,Yes,Person grabs broom and starts tidying up a floor then picks up pillow from floor and starts sneezing.,broom;coffee;floor;pillow,A person is sweeping with a broom then sneezes on a pillow.,c127 4.90 31.00;c102 4.70 31.00;c079 23.00 31.00;c153 20.00 26.60;c076 18.30 29.00,30.42\r\nDE8T8,YMXV,Bedroom,2,6,Yes,Person is standing by shelf smiling while look in mirror.,hair;mirror,A person looks at themselves in the mirror and does poses.,c094 20.00 26.10;c096 5.70 32.00;c152 22.50 27.90;c144 29.30 32.00,31.21\r\nAB06W,BYF9,Bedroom,7,7,Yes,\"One person pours a glass of soda, then lies down to watch television from bed.\",bed;cup;dish;food;glass;shoe,\"A person is sitting on a bed. The person pours water into a glass, then lays down on the bed.\",c134 23.10 30.00;c135 0.00 28.80;c107 0.00 23.80;c108 0.80 16.70;c109 18.10 25.30;c062 16.20 22.20;c061 8.30 13.40;c119 18.40 23.40;c118 6.20 12.00;c057 22.20 27.40,29.25\r\nA7OCU,9PLL,Bathroom,3,7,Yes,\"A person in the bathroom is throwing some things into a trash can. They begin dressing by putting a jacket on, and then they put some dishes onto a chair in the bathroom.\",chair;clothes;dish,The person is putting a coat on and putting a dish on a chair.,c118 17.80 23.70;c119 19.10 25.00;c148 6.20 19.90,31.62\r\nFNM0L,4YWP,Basement (A room below the ground floor),6,7,Yes,A person is grasping some clothes.  Then a person is walking to the stove.,chair;clothes;mirror;stove;table;towel,\"the person sit in the chair put glasses, cleaning the mobile phone with some fear\",c059 2.10 32.00;c034 12.90 17.60;c035 7.20 14.40;c033 7.20 17.80;c093 7.70 32.00;c095 10.10 17.50;c151 0.00 7.70;c011 0.50 32.00;c009 27.40 32.00;c038 8.60 17.60;c014 8.10 32.00;c036 13.30 18.40,30.58\r\nURWJL,ZAWX,Bedroom,4,5,Yes,A person opens the door to the bedroom and stands in front of the wardrobe.  The person takes a book from the shelf of the wardrobe.,bed;book;curtain;door;mirror;shelf,\"This person opens up curtain to a bedroom, sits in bed for a few seconds and then goes into shelf / closet area.;Someone walks in to a room and sits on the bed. They grab a book from the shelf.\",c081 23.50 28.70;c026 20.20 34.00;c030 19.60 26.00;c151 8.40 13.50;c135 8.50 14.20;c028 30.20 34.00;c008 0.00 7.30;c097 2.40 7.40;c082 19.70 34.00;c154 11.80 17.60;c152 8.20 14.80;c025 18.10 22.20;c032 20.40 26.00;c096 7.00 11.20,32.88\r\nUY7BK,YMXV,Home Office / Study (A room in a house used for work),7,3,Yes,\"A person is walking into the room, holding their phone. The person begins smiling as the person looks out the window.\",doorway;phone;window,A man walks into an office and plays with his phone while looking out the window.,c092 18.10 29.30;c015 4.60 32.00;c097 1.00 7.50;c152 11.60 17.80;c017 27.60 32.00;c018 0.30 6.50,31.17\r\nG93A5,6PZN,Bathroom,5,7,Yes,\"A person in the bathroom is working on something on their phone. They are holding a mirror in the other hand, and then put the mirror down because they remember there is a big mirror in the bathroom.\",mirror;mirrow;phone;shower;towel,\"A person is standing in a shower wearing a towel holding a mirror, working on a phone. They set the mirror down and continue working on the phone.;A person is texting on their phone while holding a mirror.\",c093 0.00 16.40;c016 0.00 16.40,31.00\r\nOWZCZ,ZSRZ,Kitchen,6,6,Yes,\"Person is walking to refrigerator to get egg, then starts cooking it on stove while holding kitchen towel.\",food;refrigerator;stove,A person opens the refrigerator and gets some food out and then cooks on the stove.;A person is opening a refrigerator door and taking out food then cooking on the stove.,c147 8.40 22.20;c063 3.00 11.90;c142 4.60 11.60;c062 8.00 14.60;c143 0.00 5.10;c061 4.40 12.60,23.17\r\nTZZX3,XXN8,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person walks through the entryway, talking on a mobile phone. A sudden sneeze sends the person scrambling through pockets for some allergy medicine. After a few awkward attempts, the person puts the phone on a nearby surface. At last, medicine in hand, the person finds relief.\",clothes;doorway;hand;medicine;phone,\"A person is standing in a doorway, they are on their phone and they sneeze.  They begin taking medicine.\",c129 18.00 27.40;c019 0.00 17.10;c153 2.50 7.70;c097 13.90 21.00,30.00\r\n0WU7S,3VLX,Pantry,6,7,Yes,A person grasps the doorknob on a cabinet in a pantry and they open the cabinet and remove a bag of chips and they start eating the chips.,bag;cabinet;doorknob;food,A person takes a bag from a cabinet.,c023 6.20 11.50;c113 3.10 8.20;c156 17.70 34.00;c141 3.40 9.20;c112 8.00 14.50;c020 5.90 34.00;c021 10.60 17.10;c061 15.20 22.30;c061 16.90 29.00,32.71\r\nETAFB,EE32,Pantry,6,7,Yes,A person with a towel over their shoulders is running around the kitchen pantry and refrigerator grasping at various food objects.,closet/cabinet;food;refrigerator;towel,A person is wearing a blanket. A person then looks in the pantry for an item. The person then opens the refrigerator looking for food.,c033 0.00 33.90;c142 26.70 32.10;c143 13.40 18.90;c061 4.10 13.00;c112 10.00 16.70;c063 2.60 11.30;c063 15.70 20.60;c113 0.20 6.20,33.75\r\n2YK65,ZG1V,Living room,7,7,Yes,\"A person is opening a book, looking for a certain passage. They walk to the sofa and take a seat, furiously paging through the book.\",book;sofa,A lady stands in her living room reading a book.  She moves to the couch and sits down and continues to read.,c032 0.00 35.00;c151 9.20 14.10;c123 9.70 35.00;c027 0.00 35.00;c026 0.00 35.00,34.50\r\nXPTXP,EIO2,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person grabs the doorknob and closes the door. This person briefly snuggles a fresh towel as they get ready to bathe.,door;towel,A person holding a towel is turning a door knob. They take the towel and wrap it around their neck and continue standing still.,c141 0.00 9.70;c033 0.00 32.00,30.79\r\n6C65Z,5LWB,Kitchen,6,6,Yes,A person is closing the refrigerator and another person is watching the stove.,dish;door;food;mirror;pot;refrigerator;stove,\"A person walks into a room where another person is looking in the mirror.;A person walks into a kitchen and closes the refrigerator door. The person approaches another person, who is cooking on the oven. The first person reaches over and places a pot on the stove. Both people are standing in front of a mirror.\",c147 4.90 20.00;c094 11.00 20.00;c142 1.20 8.00;c119 7.50 20.00,19.00\r\n36AJ1,6RE8,Entryway (A hall that is generally located at the entrance of a house),3,6,Yes,\"A person is undressing in front of a mirror. Then, sneezing, the person puts their hand on the doorknob.\",button;clothes;door;hand;lock;mirror;shirt,The person used the mirror to unbutton a shirt and take it off then sneezed. The person opened the door then locked it and started to pull it shut.;A person is looking in the mirror and taking off their shirt. They turn around to leave the room and sneeze as they are walking.,c096 0.00 12.40;c141 15.30 21.60;c155 24.80 32.00;c153 9.30 16.60;c155 4.10 12.10;c008 20.50 30.50;c000 7.30 32.00;c097 23.10 32.00,30.58\r\nFTGSV,YA10,Closet / Walk-in closet / Spear closet,7,7,Yes,A person throws a can of coffee onto a table in the closet. The person leaves.,container;doorway;dressor;table,The person is standing with a blue container. The person then puts the container on a dresser and walks out of the room.,c009 3.60 12.50;c097 8.70 14.60,22.42\r\nCIG76,3VLX,Bathroom,6,7,Yes,\"Person is standing by door holding a book and drinking bottle of water, then starts pouring the rest of water in sink.\",book;doorway;glass;sink;water,\"Person is holding a book and glass. Person takes a drink of water and pours water out into a sink.;A person is standing in the doorway of a bathroom drinking out of a bottle while holding an open book. The person then pours out the contents of the bottle in the sink, and  places the cap back onto the bottle and walks out of the bathroom.\",c025 9.00 13.80;c026 0.00 33.00;c032 6.60 14.80;c106 10.60 17.50,32.21\r\n9IT59,5LWB,Hallway,6,5,Yes,A person is holding a pillow. They put it in a cabinet and smile.,cabinet;doorway;pillow,A person holding a pillow walks through a hallway and then puts it into a cabinet.,c112 8.90 14.10;c113 3.40 9.40;c076 0.00 10.10;c077 5.10 10.50;c097 0.00 4.90,21.50\r\nE780X,C7O9,Laundry room,6,6,Yes,\"A person is in a laundry room, leaving a pair of shoes on the floor and drinking out of a glass.\",cup;dish;floor;glass;shoe;something;water,\"A person puts shoes on the floor and drinks from a glass.;This person sets down something, picks up a glass and takes several drinks of water.\",c126 0.00 5.70;c107 6.70 12.80;c106 1.70 10.90;c054 0.00 5.70;c119 2.00 31.00;c110 2.00 31.00;c118 2.00 31.00,29.58\r\nFVDNY,HR43,Kitchen,5,6,Yes,A person is walking in back and forth between the refrigerator and a chair. Then they start running in place while cooking at the stove.,chair;dish;refrigerator;stove,A person is cheering back and forth. A person then begins running.,c150 17.00 33.00;c120 14.40 19.20;c119 15.70 20.30,31.54\r\nDLBRW,C7O9,Kitchen,3,6,Yes,A person is walking while pushing a vacuum then they grasp a dish before leaving and closing the door.,dish;door;food;vacuum,A person is vauuming a room they walk through a door way and set the vacuum down and pick up a dish and walks out of the room closing the door,c137 0.70 20.00;c118 17.40 33.00;c006 24.80 32.80;c097 24.30 32.80;c061 17.70 33.00,32.04\r\nMQSXF,0KZ7,Laundry room,6,5,No,\"A person is grasping a bottle of medicine, then watching their self make faces in a mirror in a laundry room.\",medicine;mirror,A person is holding a mirror and talking into it they also have a bottle of something in their other hand.,c128 0.00 26.00;c096 0.00 26.00;c093 0.00 26.00,25.17\r\n3QVSC,XXN8,Hallway,6,3,Yes,A person is playing with a broom while another person is fixing a picture,broom;phone/camera;picture,A  person is playing with a broom while another person looks at a picture.,c084 2.50 33.00;c098 0.00 33.00;c016 4.30 33.00;c088 4.10 33.00;c152 2.30 10.30;c149 1.10 8.40,31.92\r\nTCQ97,5LWB,Bedroom,6,6,Yes,A person is putting a pillow on the couch.  Another person is closing the wardrobe.,chair;closet;clothes;couch;pillow;sofa,A person throws a pillow and then sits on a couch.  A second person takes clothes off a chair and puts them in a closet.;A person throws a pillow and sits on a sofa while another person puts clothes into a closet.,c080 1.90 7.40;c001 10.50 19.70;c123 5.80 14.40;c000 9.70 18.70;c002 7.00 13.80;c004 6.90 19.70;c112 15.30 20.90;c113 12.80 17.30,25.04\r\n696GE,YA10,Bedroom,5,6,Yes,One person stands in the doorway pouring medicine as another person smiles and throws a pillow.,cup/glass/bottle;doorway;medicine;pillow,A person throws a towel while another pours some water.,c079 16.00 25.70;c152 19.00 27.00;c080 17.50 22.20;c108 20.20 25.30,25.92\r\n39TDM,4OHY,Other,6,5,Yes,A person sets a laptop on a shelf in the pantry.  The person watches a cute cat video on the laptop while snuggling a pillow.,chair;laptop;pillow;table,\"A person is holding a pillow while sitting in a chair. A person then begins sneezing.;This person is appears to be in a room, sneezing, sitting and on a laptop placed on a table.\",c076 0.00 33.00;c051 0.00 33.00;c059 0.00 33.00;c153 24.30 33.00;c009 0.00 9.80;c011 0.00 33.00,31.75\r\nKTQEL,9PLL,Living room,6,7,Yes,A person is standing with their hand on the doorknob. Then the person begins walking into the room and puts a picture on the shelf.,door;hand;picture;shelf,A person grasping a doorknob and holding a picture opens the door and walks into another room.  They place the picture they had in their hand on to a shelf.,c141 0.00 10.40;c084 0.00 22.70;c088 18.50 29.30;c081 8.00 23.00;c088 0.00 33.10;c008 0.60 11.90;c086 9.00 23.20,32.83\r\nN8N6U,YMXV,Bedroom,5,6,Yes,\"A person is playing on the sofa, then taking medicine and then leaving the recreation room / man cave.\",bed;cup/glass/bottle;doorway;medicine,\"A person is sitting on a bed, playing with a pillow. Then the person takes some medicine with a drink of water.\",c129 15.60 26.10;c151 22.10 28.00;c097 25.60 30.00;c154 21.90 28.70;c106 19.10 26.80;c135 0.00 28.90,29.42\r\n16OAM,T7C3,Home Office / Study (A room in a house used for work),7,5,Yes,A person is opening a laptop while standing in front of a table in the home office / study.,laptop;table,A person is in their office and using their laptop on top of a chair.,c046 19.50 24.90;c052 2.50 24.70,24.08\r\n4WX0H,YMXV,Bedroom,3,4,Yes,A person is snuggling with a blanket while a other person is laughing into a bag.,bag;bed;blanket,A person dresses in a blanket while another person sits on a bed and repeatedly stinks their head into a bag while laughing.;A person is wrapping themselves in a blanket while another person is putting their head in a bag and laughing.,c149 15.50 27.20;c135 14.60 33.00;c021 14.10 19.20,31.62\r\n372CC,6RE8,Recreation room / Man cave,7,7,Yes,A person on working on their laptop looks at a picture and starts sneezing.,chair;desktop;laptop;table,\"A person is sitting in front of a computer sneezing.;This person is sitting at a desk, watching something on laptop and then starts to sneeze.\",c051 0.00 31.00;c153 17.50 29.90;c011 0.00 31.00,30.50\r\nP2DV7,5LWB,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person runs into the entryway, holding a camera and smiling. The person takes a picture of something sitting on a shelf.\",camera;picture;shelf;something,A person walks through a door and takes a picture of something on a shelf.,c087 11.60 17.40;c015 2.00 18.00,17.25\r\nHHEIV,2RTW,Living room,6,6,Yes,A person is drinking coffee while smiling on the sofa.,coffee;couch;cup;glass;sofa;table;television,A person is sitting on a couch drinking from a cup and watching television. The person has their feet resting on the table in front.;A person is sitting on a couch drinking a cup of coffee watching television. The person is smiling and crossing their legs.,c106 5.00 14.50;c107 8.00 20.90;c123 5.00 10.10;c152 11.60 24.50;c132 13.40 29.90,31.17\r\nAMP3N,YMXV,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person working on a laptop begins undressing in front of the mirror.,clothes;laptop;mirror,A person is sitting at a computer. The person stands up and walks to a mirror. The person takes off their shirt. The person fixes their hair.,c051 0.00 14.40;c052 0.00 14.60;c096 13.70 32.00;c155 13.00 22.60;c154 9.30 16.40,30.96\r\nD07V2,HJJ4,Kitchen,6,7,Yes,\"A person is in the middle of the room with a cup of coffee. They open the refrigerator and start eating something they find there, then go to the stove to start cooking.\",coffee;cup;food;refrigerator,A person is  drinking a cup of coffee then opening the refrigerator and eating something. They when begin to play with dishes on the table.,c106 0.00 6.20;c156 6.40 20.60;c143 2.60 10.30;c063 7.90 16.70;c142 15.10 20.40;c107 0.00 28.00;c147 19.70 28.00,26.71\r\nRI2KG,BYF9,Stairs,7,7,Yes,A person is holding the door and another person is fixing the mirror.,door;mirror,A MAN IS PUTTING A RAKING A MIRROR AND SCRING SOMETHING ONTO THE BACK WHILE A WOMAN IS STANDING BY A DOOR WATCHING WITH HER HAND ON THE DOOR KNOB,c093 3.80 29.90,31.50\r\n4Y1AW,6RE8,Kitchen,7,6,Yes,\"A person is sitting in the pantry, eating some food while talking on the phone. The person pauses the conversation to take a picture of themselves.\",camera;chair;food;phone;picture,\"A person is sitting on a chair on their phone.  The person begins consuming food.  The person then takes a selfie with the phone.;The person is sitting in a chair talking on the phone. They eat some food, then take a picture of themself with a camera.\",c019 0.00 35.00;c061 0.00 26.30;c156 0.00 32.80;c059 0.00 35.00;c087 29.30 35.00;c063 14.60 20.30;c015 0.00 35.00;c016 23.00 35.00,34.21\r\nQS0AZ,HR43,Kitchen,6,7,Yes,\"A person is cooking at a stove. They open the refrigerator, take something out, and return to cooking.\",dish;door;food;groceries;refrigerator;stove,A person cooks on a stove and then gets food out of the refrigerator.,c142 10.00 17.00;c143 7.70 14.30;c147 0.00 14.40;c063 8.80 17.80;c118 0.00 4.60;c118 2.10 10.20;c130 11.40 16.60;c062 10.60 16.70;c008 6.60 13.50;c006 9.50 16.10,27.25\r\nZIU9C,ZAWX,Bedroom,7,6,Yes,A person takes a book off of the bed and puts it on the table.  The person opens the door and laughs before leaving.,bed;book;closet/cabinet;door;table,\"A person takes a book from a bed, walks through a doorway to another room and places it on a table. They walk over to a cabinet and open the door.\",c026 0.00 16.00;c030 0.00 5.00;c097 0.00 19.60;c028 9.80 15.70;c008 14.10 23.00;c009 9.80 15.70;c113 16.60 31.00,29.71\r\n9QI0W,HJJ4,Stairs,5,7,Yes,A person is sitting on the stairs with a blanket over their shoulders playing on their phone.,blanket;phone,A person sitting on some stairs is playing on their phone with a blanket draped over them.,c072 0.00 22.00;c016 0.00 22.00;c015 0.00 22.00;c070 0.00 22.00,21.46\r\nSUYMQ,T7C3,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"In the entryway, a person is sitting down while holding shoes in their hands. They begin to stand up and eat some food they found on the ground.\",dish;door;floor;food;hand;sandwich;shoe,A person is sitting down on the floor by an open door and holding a pair of shoes. They place the shoes on the ground and stand up and begin to eat a sandwich.,c156 14.80 37.00;c065 14.60 37.00;c061 11.90 37.00;c154 9.70 17.10;c054 6.80 16.80;c053 0.00 17.30;c118 12.10 37.00;c125 0.00 14.10;c006 33.30 37.00,36.00\r\nYYJ8I,BYF9,Hallway,5,7,Yes,\"A person leaves the hallway, holding a box and some shoes.\",box;container;door;something,\"A person walks down a hall and out a door while carrying something;a person holding a container, open the front door and goes through it.\",c040 2.60 21.00;c008 9.00 21.00;c141 7.20 21.00;c097 13.60 21.00,19.75\r\n7VHXG,PO5L,Kitchen,5,6,Yes,\"A person is standing at a stove while cooking. They take something from the refrigerator, and throw the wrapper in the garbage.\",food;refrigerator;something;stove;trash can,A person is cooking something on the stove. The person takes something from the refrigerator and throws it in the garbage.,c142 14.10 19.40;c143 12.30 18.10;c147 2.20 15.50;c064 22.60 29.20,28.88\r\n9OH7W,M794,Living room,6,7,Yes,A person is tidying a blanket that is on a chair.  Then a person is eating something that a person gets out of a bag.,bag;blanket;chair;clothes;food;something,\"This person is folding a blanket on a couch, then eats a snack.\",c020 16.00 32.20;c021 16.10 22.60;c075 0.00 16.00;c156 21.30 31.50;c071 11.60 18.20,32.08\r\nYPQ97,PKND,Bedroom,4,6,Yes,\"A person is holding a broom and a pair of shoes. The person puts the shoes on, then begins sweeping the floor with the broom.\",broom;floor;shoe,A man is using a broom to sweep a room while indoors. The man seems to be doing this as a choir.,c098 0.00 32.00;c127 2.50 32.00;c126 0.50 6.20;c053 0.00 5.90;c102 2.80 32.00;c054 1.30 6.10,31.25\r\n8BNBV,9PLL,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,Person A is walking through an entryway smiling and laughing about a joke heard earlier.  Person A walks through a doorway and turns on the television.,doorway;power cord,{},c097 14.90 20.20;c152 9.30 14.40,33.08\r\nKVYOZ,ECB2,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person sitting in a walk in closet sneezes and accidentally drops a picture they were holding. They stand up, pick up an empty glass, and leave the closet.\",cup;floor;mug;paper;picture,A person sits on the floor and then sneezes into a paper. The person picks up a mug and walks away.;A person is sitting in front of a closet looking at apicture they get up and grab a cup and walk out.,c084 0.00 5.00;c110 3.00 8.00;c154 0.00 2.60;c125 0.00 2.50;c086 1.20 6.00;c153 0.60 5.40;c115 0.00 5.50,8.08\r\n6BXG4,L852,Kitchen,7,7,Yes,A person is smiling while sitting in a chair. They then get up and fill a cup with water from the sink before drinking it.,chair;cup;mug;sink,\"person sitting in chair in kitchen holding mug, gets up, goes to sink and puts water in mug, then takes a drink.\",c107 0.00 22.00;c059 0.00 6.00;c106 9.40 18.50;c108 4.40 12.10;c154 0.30 5.60,20.62\r\nGJNI4,ZAWX,Laundry room,5,4,Yes,A person is standing in the doorway of a laundry room holding a mirror and watching a video on their phone. They sit the mirror on a table and drink from a bottle of soda.,cup/glass/bottle;hair;mirror;phone;table;video,\"A person watches a video on a phone, then puts it down, looks at a mirror, and then drinks from a bottle of water.\",c015 0.00 18.40;c016 0.00 15.50;c144 14.20 20.50;c017 12.10 18.80;c106 17.10 28.20;c009 11.60 18.80,30.25\r\nQQ9RN,ID9V,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is sneezing in the doorway then begins laughing at the television.,doorway,A person is laughing.,c149 2.00 23.60,22.83\r\n327L5,3H6W,Home Office / Study (A room in a house used for work),4,6,Yes,A person is pouring food into a pet dish and then working on a camera in the home office / study.,camera;dishes;food;phone,\"the person entered the room, adjusted himself and took camera sat before the TV and took some pictures and finally went out\",c015 18.90 40.10;c062 10.40 22.20;c018 18.90 23.40;c016 19.60 38.50,45.92\r\n79WPY,D0RU,Kitchen,5,7,Yes,A person is watching television.  Then a person is opening a refrigerator.,refrigerator;television,A person sits and watches television  while another person closes the door to a refrigerator and walks away.,c132 9.80 22.20;c142 27.80 33.00;c143 23.20 28.80,31.83\r\nFL4NG,0KZ7,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is holding a phone while undressing, then walks to the bed.\",chair;clothes;jacket;phone,A person holding a phone takes their jacket off and throws it on a chair.;A person is standing in the closet undressing and holding a phone then they throw their jacket on a chair.,c015 0.00 30.00;c155 0.00 26.80;c001 23.30 28.00;c003 23.00 28.00,29.50\r\n82990,BYF9,Dining room,6,5,Yes,One person puts down bags of groceries while another person with a bottle of medicine sneezes.,bag;chair;shirt;sneeze;table,\"Person sitting on chair near table sneeze multiple times and rubs hands in shirt. Other person walks in and places bag near table and walks away.;A person sitting at a table sneezes. Meanwhile, another person walks into the room and sets a bag on the floor under the table.\",,16.50\r\nYLIMP,EIO2,Pantry,6,7,Yes,\"A person walks into the pantry, wrapped in a blanket and sneezing. The person takes a pair of shoes from the corner and walks out.\",blanket;doorway;shoe,A person holds a blanket over their shoulders while bending down to put their shoes on.,c055 11.70 30.40;c070 0.00 55.00;c154 44.40 50.80;c097 2.60 8.20,53.58\r\nU9UI8,9Y7F,Recreation room / Man cave,7,7,Yes,A person is standing and drinking coffee while another is tidying up a box of stuff.,box;coffee;cup,One person is sitting on a bed looking through a box while the other person is standing and drinking from a mug,c044 4.10 32.00;c106 0.00 32.00;c040 2.70 8.00,30.54\r\n7QLMY,Z68L,Bedroom,5,6,Yes,\"A person runs into the room, closing the door behind them. The person props up a chair under the doorknob.\",chair;door,\"A woman runs into a room, grabs a chair and places it in front of the door she just ran through.\",c006 1.60 18.50;c150 2.80 9.30;c097 2.00 7.70,21.75\r\n7ZPHX,0KZ7,Bathroom,7,5,Yes,A person dresses in some clothing while in the bathroom.  They look over to a shelf and find a glass half full of gross liquid and laugh.,clothes;doorway;glass;mirror,Person standing in a doorway puts on a jacket looking in a mirror still standing in the doorway.;A person standing in a door straightening a jacket .Proceeds to put the jacket on turns and smiles in a mirror .,c000 0.00 9.70;c149 19.50 30.00;c096 11.70 24.20;c148 0.00 25.00,28.71\r\nV8JOH,FNK4,Hallway,4,6,Yes,A person closes a bottle of medicine and puts it on a book before leaving out a door.,book;door;floor;medicine,\"The person takes some medicine then puts the bottle down. The person then walks into a room and closes the door.;A person is standing in a doorway holding some medicine, they take some and then set the medicine on the floor and leave out the door, closing it behind them.\",c006 15.00 22.00;c128 0.00 8.80;c129 0.00 8.70;c097 13.10 18.50,23.04\r\nA015X,XXN8,Bedroom,5,7,Yes,\"A person is sitting and watching themselves in a mirror. The person stands up, grabs a stack of homework, and leaves.\",doorway;homework;mirror;paper,A person is looking into a mirror and then picks a folder of homework up off the table.,c116 16.70 29.60;c115 17.30 31.00;c117 17.00 21.60;c097 20.50 25.90;c097 23.40 28.20;c096 0.00 31.00,30.29\r\nD4AJ5,PO5L,Kitchen,6,7,Yes,A person is holding a cup of coffee and smiling to themselves in front of a stove.,cup;stove;table,A person walks in to a kitchen and takes a couple of drinks from a cup.The person turns and smiles and walk to the counter and puts the cup down .,c152 5.60 13.60;c106 3.60 9.40;c009 18.00 23.00,22.42\r\nOAL0G,C7O9,Living room,6,7,Yes,A person is standing in shoes and drinking coffee while another person is sneezing.,coffee;cup;shoes;sofa/couch,\"A person is sitting on a couch and starts sneezing. A second person is standing in front of the couch, sipping from a mug.\",c106 3.70 10.30;c107 0.00 7.70;c153 0.00 32.00;c123 0.00 32.00,30.71\r\nQO6RV,R1OT,Dining room,7,7,Yes,\"A person runs into the dining room holding a sandwich.  The person puts the sandwich into a lunch box and pours a glass of water, then turns off the light and leaves.\",box;cup;doorway;food;glass;light;pitcher;sandwich;table;water,\"person walks to table eating put something in a bowl pours water in a glass turns out a light;A person walks through a doorway eating food. Afterwards, the person takes a glass and pours some water from a pitcher before turning off the light.\",c105 23.20 30.00;c110 2.40 12.90;c097 0.00 6.50;c039 7.30 12.90;c065 0.00 6.40;c156 0.00 6.40;c061 0.00 9.50;c108 9.30 23.00,28.96\r\n4T97L,KQI6,Basement (A room below the ground floor),5,4,Yes,One person drinks coffee as another person runs in and starts tidying up a messy wardrobe.,cloth;coffee;cup;doorknob;doorway;light;towel,A person cools a cup of coffee while another turns the light on and fixes a door.;A person is standing in the kitchen and drinking from a white cup. A second person runs by and begins cleaning a doorknob.,c106 3.80 20.90;c107 0.00 20.90;c150 8.30 16.80;c140 13.50 31.00;c104 12.50 17.50;c038 12.90 31.00;c097 8.30 13.20;c033 7.00 31.00,29.79\r\n6BFKO,1OHU,Living room,2,4,Yes,\"a person is on their laptop, sitting on the stairs.  The laptop lights up and the person sneezes and accidentally throws the laptop down the stairs.\",laptop;light;phone/camera,\"person typing on laptop, then pulling on front of shirt\",c052 0.00 29.00;c104 23.80 29.00;c016 0.00 29.00;c015 0.00 29.00,28.42\r\nWTMMC,UTMU,Laundry room,7,7,Yes,\"A person is pouring detergent into a washer, then throwing clothes in washer and then drinking from a glass on the shelf in a laundry room.\",bag;clothes;cup;dryer;glass;shelf;washer,\"A person walks into a laundry room, pours laundry soap into a washer, then stuffs clothing into the washer. They take a drink from a cup and walk out of the room.\",c106 39.70 50.00;c001 17.10 43.40;c002 15.40 30.60;c005 15.10 42.50;c004 15.40 41.60;c023 15.10 20.20;c021 15.40 20.20;c000 16.20 22.00;c000 25.80 32.10;c000 30.10 35.90;c020 14.80 20.20,57.83\r\nB84SU,CCI9,Kitchen,4,5,Yes,\"In the kitchen, a person is undressing near the sink while another is running with a broom.\",broom;clothes;floor,2 people are in a room one is using a broom to clean with while the other one is undressing.;Person standing in the kitchen who takes off jacket while another person walks around sweeping the floor and looking on.,c098 0.00 32.00;c155 0.00 20.40;c127 0.00 32.00;c000 13.00 32.00,30.92\r\n6B328,28B0,Bedroom,7,7,Yes,\"A person is sleeping when the ringing of their phone on the night stand awakens them. They look at who is calling, turn the phone off and throw it off to the side. They grab some medicine from the stand and take a pill before going back to sleep.\",bed;desk;medicine;mirror;phone;table,\"The person is lying in a bed. The person picks up a phone, and takes some medicine. Another person can be seen in the mirror walking in circles.;A person is lying on their bed and grabs their phone before throwing it. Afterwards, the person takes some medicine from the desk and lays back down.\",c146 1.20 10.50;c134 0.00 17.90;c096 21.60 26.70;c015 6.10 15.90;c133 1.70 9.50;c129 18.70 29.30;c009 24.40 29.50;c017 11.00 16.60;c128 13.40 29.30;c016 6.80 14.80,30.46\r\nCBG3N,BYF9,Living room,5,6,Yes,One person sits on the sofa eating before leaving the room with a box and a stack of homework.,book;box;dish;food;homework;sofa,\"A person is sitting on a couch. The person begins eating some food from a plate. The person picks up some books, a box, and homework and begins to get up from the couch.;A person sits on a sofa nibbling on a snack; then the person picks up a book, box, and a dish, and leaves.\",c123 0.00 17.20;c156 0.00 8.80;c030 6.40 15.70;c026 6.90 18.00;c063 0.00 11.00;c062 0.00 10.80;c061 0.00 10.70,16.58\r\nISHJ4,EXQX,Stairs,3,6,Yes,A person opens a door and is dressing in a sweater while walking down the stairs. The person then turns the doorknob and opens the door to the closet to get a blanket.,blanket;clothes;door;stairs,\"A person closes a door and then walks up and down the stairs.  They go through the door, and then pick up clothes.  They do the same thing over again.\",c141 0.00 6.10;c006 0.00 5.80;c008 10.40 16.80;c073 16.10 56.50;c097 11.00 17.10;c070 19.30 31.00,59.12\r\n4N06O,XB0Z,Bathroom,7,7,Yes,A person awakens in a bathroom and throws a book through a doorway.,book;doorway;floor;pillow,a person lays on the floor in the bathroom holding a book then wakes up and throws it;A person is lying on the floor with a pillow and a book. A person awakens and begins to look at a book. A person then throws a book,c026 0.00 25.00;c028 21.00 26.80;c097 22.80 29.00;c146 4.00 12.20;c154 15.10 23.90;c124 0.00 8.00;c032 8.10 20.70;c031 21.30 26.30,28.50\r\nJISS4,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is laughing as they throw a pillow in the air then sit down and eat some food.,floor;food;pillow,A person laughs while throwing a pillow. Then they sit on the floor and eat some food.;a person stands by a door laughing throwing a pillow then sits on the floor and eats food,c080 0.00 9.50;c156 11.70 44.00;c149 0.00 2.90;c151 6.20 12.50;c125 10.70 44.00;c076 0.00 14.00,42.88\r\n35P3Q,Z68L,Bathroom,6,7,Yes,\"A person in a bathroom gasping dishes washes them in the sink. The person begins tidying up their bathroom, grabs a pile of clothes and leaves.\",clothes;dish;hands;sink,A person is washing dishes in a sink. A person then takes a load of clothes and walks out.,c118 0.00 7.30;c121 5.00 11.70;c000 8.30 20.10;c121 0.00 8.10;c002 25.80 30.70;c139 0.00 27.10,30.29\r\nQDZ38,PO5L,Bathroom,5,7,Yes,\"One person runs into the bathroom and tidies the sink and mirror, then leaves.\",doorway;hands;medicine;mirror;sink;towel,A person runs into the room and puts something on the sink. The person then washes the mirror with a towel.;A person runs into a bathroom and starts washing the mirror then moves a bunch of things around on the counter.,c095 9.80 15.60;c150 2.40 9.20;c038 9.80 15.60;c097 2.70 7.60;c139 15.20 21.20;c128 4.90 20.60,23.88\r\nZBDB5,JVLO,Bedroom,5,,Yes,A person closes a laptop in the bedroom and pours medicine into a spoon before drinking it.,bed;floor;food;laptop;medicine;shelf,\"Someone is sitting on the floor working on their laptop. They close it and grab medicine from a shelf and take it.;A person is sitting on a bed playing on a laptop, they close the laptop and grab some medicine and take some.\",c128 14.60 21.60;c129 18.50 26.50;c051 0.00 13.10;c046 9.40 14.60;c135 0.00 31.00;c125 0.00 31.00;c156 21.90 31.00;c061 11.50 25.90;c052 0.00 15.50,29.62\r\nJHRI6,HJJ4,Basement (A room below the ground floor),5,7,Yes,\"A person sits in a chair, holding their homework. The person throws the pages into the air and laughs.\",chair;floor;homework;paper,A person sitting on a chair throws their homework in the air and laughs.,c059 0.00 13.00;c149 5.10 13.00;c152 5.10 13.00;c115 0.00 7.50;c126 3.70 8.20,12.21\r\nY2PNC,9PLL,Hallway,5,7,Yes,A person is standing in a hallway laughing on their phone and staring out the window.,phone;window,Person is standing and talking on the phone while in the bedroom.,c015 0.00 32.00;c019 1.30 32.00;c092 7.90 32.00,31.29\r\n1EJKT,T7C3,Bedroom,4,7,Yes,A person is dressing and undressing while sneezing and then using a towel to wipe off doorknob in a bedroom.,clothes;doorknob,A person is dressing and sneezing then they begin undressing. The person then attempts the turn the doorknob.,c141 20.70 35.50;c148 0.00 5.60;c155 16.00 28.70;c153 9.70 20.60;c001 27.00 32.10;c000 0.00 18.30;c000 13.00 18.30;c003 26.80 31.90,42.33\r\n7JZTY,XXN8,Kitchen,6,6,Yes,\"A person sits at the dining room table, eating from a bag of food. The person smiles.\",bag;bottle;cup;food;table,\"A person is taking food out of a bag, eats the food, smiles, drinks from a bottle of water, smiles, and then puts the food back into the bag.;Person taking food from lunch bag, eating some, putting it back into the lunch bag, and then takes a drink from a soda bottle.\",c063 0.60 6.00;c021 1.00 10.30;c156 6.00 14.00;c106 21.90 31.50;c061 5.50 10.80;c011 0.00 33.00;c149 12.90 19.00;c149 19.00 25.50;c152 12.90 18.80;c152 19.10 25.40,31.67\r\nMEG11,HRH1,Pantry,7,7,Yes,A person is working hard at tidying up the pantry.  The person is cleaning up dishes from the pantry and bringing them to the sink.,dish;sink,A person grabs some dishes from a shelf in a cabinet and takes to the sink.,c118 12.60 23.60;c119 24.50 31.00;c120 19.60 30.80,30.29\r\nXWVDK,3VLX,Hallway,4,7,Yes,A person throws a bag of groceries onto the sofa.  They then walk out of the room.,bag;couch;groceries,A person walks into the room holding a bag of groceries. They throw the bag on a couch and then walk out of the room.,c020 2.10 12.10;c024 7.20 12.40;c130 7.60 12.30;c022 7.60 12.30,17.42\r\nKRT78,CCI9,Home Office / Study (A room in a house used for work),5,6,Yes,A person is in their study sitting on a chair doing their homework and eating a sandwich. They stop and watch a video on their computer.,chair;computer;food;homework;paper;sandwich;television;video,\"A person is sitting in a chair eating a sandwich, then working on homework, then watching a video on their computer\",c059 0.00 39.00;c145 0.00 22.50;c065 0.00 22.90;c156 0.00 23.10;c132 24.80 39.00;c115 0.00 39.00;c061 0.00 39.00,38.25\r\nD67MQ,5LWB,Laundry room,6,6,Yes,One person is at the laundry sink sneezing while another person taking some dishes watches.,clothes;doorway;floor;food;pot,\"A person is standing in a bathroom next to the washer. The person sneezes in the bathroom. Another person carries a pot into another room, sets it on the floor, and then sits down with it.\",c153 13.30 21.20;c125 28.60 33.00;c097 19.60 26.10;c151 25.30 33.00;c061 29.70 33.00,32.46\r\nTTQ3V,MX1B,Stairs,6,6,Yes,\"A person is running down their stairs while holding a blanket in one hand. When they reach the bottom, they start working on something on their laptop.\",blanket;floor;laptop;stairs;towel,\"Person walking downstairs carrying a towel, bends, picks up laptop, sits on steps and begins typing on it.;A person is running down the stairs holding a towel or blanket, they then pick up a laptop and begin to use it.\",c047 5.40 11.90;c048 0.00 3.70;c052 0.00 9.10;c070 5.40 12.20;c150 20.20 26.40;c151 16.80 30.20;c033 15.30 22.80;c050 6.60 11.60;c125 9.40 31.00,30.29\r\n7K9XM,D0RU,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person is grasping a book and then washing a mirror in a pantry.,book;clothes;mirror;rag;shelf;towel,\"A person is walking slowly up to a mirror. The person picks up a book from the shelf, and looks at their reflection in the mirror. The person then uses a towel to clean the mirror, and then leaves the room.;A person comes into the room, looks into the mirror, picks up a book, looks at the mirror, and picks up a rag and wipes off the mirror.\",c095 51.00 108.70;c096 47.20 107.40;c026 31.00 130.00;c030 31.00 51.20;c035 48.50 69.30;c032 43.90 48.60;c033 60.10 113.30;c004 29.10 35.00;c034 102.80 110.00;c038 64.00 89.30;c038 92.40 101.00;c027 40.70 48.60,129.29\r\nOXUKR,PKND,Living room,4,7,Yes,A person is lying on the sofa holding onto a pillow and watching television.  The person gets up and walks to the desk to pick up a sandwich and eats it.,blanket;couch;food;pillow;sandwich;sofa;television;tv,\"This person is in the living room, watching tv, laying on couch, holding a blanket, gets up and then starts eating.;A person is lying down on a couch with a blanket and pillow and watching TV. They get off the couch and drop the blanket on the floor.\",c132 0.00 15.50;c078 0.00 12.90;c070 0.00 17.00;c072 0.00 12.70;c076 0.00 13.50;c122 0.00 16.00;c154 12.50 18.40;c071 11.40 16.50;c067 13.80 32.00;c156 14.40 21.10;c065 14.50 21.10;c077 8.90 14.00;c068 12.00 17.60;c069 13.60 18.90,31.46\r\nSJGZ2,H8N1,Pantry,6,6,Yes,One person is tidying cans of food and washing the shelf in the pantry.,bag;cabinet;door;food;groceries;rag;shelf,\"The person opens the doors of the cupboard and cleans off the shelf, then clothes the doors.;Someone in their kitchen, rolls up a plastic bag and opens up a cabinet and organizes and closes it.\",c082 4.90 35.10;c112 31.70 38.10;c113 3.50 9.10;c114 4.90 35.30;c008 3.50 9.10;c130 2.90 35.50;c081 4.90 35.10,39.08\r\n39LQ8,KFGP,Dining room,6,7,Yes,\"A person puts their laptop down on the dining room table. The person takes a box from the same table, then runs out of the room.\",bag;box;laptop;table,\"A person walks over and sets a laptop down on a table. The person then opens a cardboard box, takes something out of it, and runs away.\",c049 1.80 8.60;c009 1.40 9.00;c041 7.40 16.40;c150 13.30 18.90;c023 12.50 17.50,21.33\r\nQJ11V,ZAWX,Living room,7,7,Yes,\"A person watches their phone. The person throws their phone down onto the couch, turns off the light, and leaves.\",chair;door;light;phone;rail;sofa;stair,\"A person standing in a room pulls out a phone and looks at it.The person proceeds to lay the phone in a chair walk out of the room to some stairs;A person is standing by a fridge, checking his phone. The person then puts the phone down and walks up stairs\",c104 16.80 21.20;c016 0.30 18.60;c017 14.10 18.90;c015 0.20 19.00,30.96\r\n0CVZN,XXN8,Bathroom,4,6,Yes,\"One person tidies up a shelf, then washes at the sink and leaves.\",shelf;sink;something,A WOMAN IS LOOKING FOR SOMETHING IN THE CLOSET. THE PERSON THEN TAKES A WIPE OUT AND STARTS TO CLEAN THE SINK AREA IN THE BATHROOM.,c082 0.00 7.20,29.75\r\nH8QM1,XXN8,Entryway (A hall that is generally located at the entrance of a house),6,4,No,Person is playing with dishes. Another person is sneezing in pillow.,book;tissue,One person is reading a book while another person is blowing their nose with a tissue.;a person reads a book while another sneezes,c153 0.30 5.10;c032 0.00 30.80;c029 6.70 32.00;c152 1.70 32.00;c026 0.00 32.00;c029 1.70 20.10,30.71\r\n15TWQ,KQI6,Bathroom,7,7,Yes,\"A person turns on the light and stands in front of a mirror.  The person smiles at themselves in the mirror and fixes their hair, then grabs a book off the shelf and leaves.\",book;doorway;hair;light;mirror,A person turns on a light and smiles into a mirror as they fix their hair. The person then walks away with a book.,c144 2.50 16.60;c104 0.90 5.70;c094 5.70 19.60;c096 1.60 19.90;c026 14.70 29.00;c152 5.30 20.60;c032 16.20 29.00;c097 18.40 26.80;c030 14.00 29.00;c027 15.90 23.90,27.50\r\nXQC9F,BRLP,Living room,7,7,Yes,\"A person is in a living room holding a bag, they then start tidying up all the clothes laying around and put the clothes into it.\",bag;clothes,This is a time lapse of a man folding laundry and putting it in a bag,c021 11.10 21.70;c003 30.60 35.00;c001 13.70 23.40;c004 0.00 35.00,34.46\r\n4HGD7,YA10,Bathroom,7,7,Yes,One person sneezes while pouring cleaner and tidying the bathroom. Another person runs in with a camera and a pair of shoes.,bottle;curling iron;doorway;hair dryer;shoe;sink,\"The person is pouring some fluid out of a spray bottle (with its spray nozzle removed) into the sink.  That person then picks up the hair dryer and wraps the electrical cord around it and then does the same to the curling iron.  Some other person comes running into the bathroom.;a person pours something into a sink, sneezes, and tidies up the bathroom, another person runs in holding shoes\",c153 4.60 10.40;c150 19.20 26.50;c097 21.80 27.80;c053 19.70 29.00,28.50\r\nSHVVB,9Y7F,Bedroom,6,4,Yes,One person takes some dishes and a camera from the study while another watches with a cup of coffee in hand.,book;chair;coffee;cup;dishes;food;glass;homework;sandwich;table,\"A person is sitting at a desk reading a book, drinking coffee and eating a sandwich. Another person is drinking coffee.;One person is drinking some coffee while another person sits at a desk doing some homework, the person at the desk the grabs a sandwich and a glass.\",c106 0.00 31.00;c010 0.00 31.00;c011 0.00 31.00;c063 0.00 31.00;c110 0.00 31.00;c117 0.00 31.00;c009 0.00 31.00;c145 0.00 20.30;c026 0.00 20.20;c014 0.00 20.20;c067 20.10 31.00;c061 0.00 31.00;c116 15.70 20.50;c107 17.50 27.40;c032 0.00 31.00;c115 0.00 31.00;c028 0.00 31.00;c069 0.00 31.00,30.00\r\n4GWNV,PO5L,Bathroom,3,7,Yes,\"Person closes a medicine cabinet while holding a camera and laughing. Person then leaves the room, pulling the door closed behind them.\",cabinet;door;phone/camera,A person closes a door and sneezes.;a person walks into a bathroom and sneezes while doing something with the cabinet then leaves,c006 10.60 17.80;c112 4.60 10.00;c015 3.60 12.80,19.21\r\n88TGX,X5XO,Kitchen,7,7,Yes,A person begins to laugh while opening the refrigerator door then begins to play with the dishes in the sink.,dish;door;refrigerator;sink,A person opens the refrigerator and looks inside of it before going to the sink and washing a few dishes.,c121 7.70 24.50;c142 4.10 9.50;c143 0.30 8.20,31.12\r\n4F76V,Z68L,Kitchen,7,7,Yes,A person is cooking while looking at their homework. The person then begins running and grabs the doorknob.,book;door;food;homework;paper;pencil;stove,\"A person cooking, and holding a book in the kitchen when the open the door.;A person is using a notebook, while cooking, then opens and closes a door.\",c141 19.80 27.90;c147 3.10 10.60;c008 19.80 26.30;c145 13.00 20.50;c026 0.00 29.00;c006 21.90 27.60;c115 0.00 29.00,28.25\r\n5MG4A,QRES,Kitchen,5,7,Yes,A person is walking with groceries towards the kitchen table while also undressing.,bag;chair;clothes;coat;groceries;hoodie;table,A person walks into a room with some groceries and puts them on a table. They take their jacket off and put it on a chair;A person carrying groceries enters the kitchen and sets a bag of groceries on the table before removing their coat and hanging it on a chair.,c009 3.20 10.00;c002 5.60 11.40;c130 3.40 10.40;c155 0.00 14.00;c020 0.00 8.90;c022 4.40 9.20,13.33\r\nS8TI7,Z68L,Bedroom,5,7,Yes,A person is sitting in the bedroom holding a sandwich. The begin eating and then start laughing out the window.,bed;sandwich;window,The person walks into the room and sits on a bed. The person looks out the window while sitting on the bed.;A person walks into a room and sits on a bed. The person then eats a sandwich and looks out the window. The person looks back at the camera and eats more of the sandwich.,c092 2.30 9.50;c151 0.00 4.30;c154 26.70 32.80;c135 0.20 15.80;c065 1.70 15.30,33.25\r\nP6P6L,2RTW,Dining room,6,6,Yes,\"A person is holding their laptop. The person sets down their laptop, and takes a pillow from the sofa.\",chair;picture;table,A person is looking at a picture. A person begins smiling,c152 19.50 26.90;c088 6.60 26.90;c059 0.00 31.00;c011 0.00 31.00,29.75\r\nFDU31,L4ZP,Kitchen,6,6,Yes,\"A person is tidying the pantry, alternately working with a broom and a vacuum.\",broom;floor;vacuum,\"Person sweeps part of the floor, then vacuums something up and picks broom back up and continues sweeping;A person is sweeping the floor, then vacuums the pile of dirt.\",c137 0.00 4.60;c102 0.00 3.50;c127 0.80 5.70,36.92\r\n06EDS,L4ZP,Kitchen,6,6,Yes,The person is leaving spices on the shelf in the pantry while they're cooking a sandwich in their kitchen.,bag;coffee;food;groceries;sandwich;shelf;stove,A person is putting groceries away. A person is cooking on the stove.;A person is standing in the kitchen and organizing groceries and spices. They then make a grilled cheese sandwich in a pan on the stove.,c081 0.00 25.40;c066 23.60 36.00;c147 23.90 36.00;c130 0.00 24.70;c062 22.30 36.00,35.46\r\nFM078,L4ZP,Kitchen,6,6,Yes,A person is tidying up the room.  The person lays a bag of coffee on a shelf.  The person takes groceries out of a bag and adds them to the shelf.,bag;box;closet/cabinet;dish;groceries;shelf;table,A person goes over to the table and tidys up the table then goes over to the counter and puts a box in the cabinet and takes groceries out of a bag and puts them away,c130 11.50 34.30;c021 30.10 36.20;c081 16.00 31.90;c042 12.30 19.40;c114 12.90 39.10;c113 12.70 19.80;c113 17.20 31.70;c112 27.70 31.90;c012 0.20 12.40;c119 0.90 7.30;c009 4.80 9.80,39.04\r\nFLQ59,ZSRZ,Kitchen,7,7,Yes,A person is laughing and pouring a drink in a glass by the stove.,cup;glass;pitcher;stove;water,\"a person pours a glass of water;A person stands in front of a stove. The person pours a glass of water, and sets the glass on the stove. The person then laughs.\",c108 0.10 7.40;c149 0.00 9.00,8.42\r\n41EQS,6RE8,Kitchen,4,7,Yes,\"One person throws a towel in a bag, then sits at a table and drinks.\",bag;blanket;cup/glass/bottle;table;towel;water,\"A person standing in a room holding a backpack and a towel .The person throws the towel in to a back pack.The person throws the back pack in to a chair.The person sits down in a chair and takes a drink of water.;the person is holding a towel and a bad. The person then throws the towel into the bag and tosses the bag onto a chair. The person picks up a bottle of water, sits down at the table, and starts to drink it.\",c034 0.00 10.90;c151 11.10 16.80;c011 11.40 33.00;c020 0.00 13.00;c024 6.80 13.80;c033 0.00 8.70;c036 0.00 9.30;c106 17.00 33.00;c075 0.00 7.90;c070 0.00 7.90;c071 3.60 8.70;c009 11.10 18.80;c107 10.60 33.00,31.88\r\nLNWWJ,0KZ7,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person walks into the closet, throwing a pillow onto a chair. The person leaves, closing the closet door.\",chair;clothes;door;pillow,A person walks into an attic and throws down a pillow.,c080 4.60 9.90;c003 3.60 9.70,21.92\r\nBNEQL,0KZ7,Laundry room,6,7,Yes,\"A person is dressing in the laundry room. The take a sip of coffee and laugh softly. They put down the coffee, fold a blanket, and then leave.\",blanket;clothes;coat;cup;dish;dryer,\"A person puts on a coat, takes a drink from a cup, and then folds a blanket.;A person is putting on their jacket and picking up the coffee cup to take a drink then they are folding a blanket.\",c075 19.30 49.80;c106 14.30 26.70;c148 0.00 20.00;c110 12.70 19.50;c000 0.00 19.50;c071 21.40 49.00;c001 0.00 21.80;c118 14.00 25.90,50.67\r\nQQD2X,Z68L,Bathroom,6,7,Yes,A person is running into the bathroom and turning on a light.  Then a person is walking to a window and opening it.,closet/cabinet;doorway;light;window,\"The person runs into the bathroom, turns on the light and opens up the window. The person walks out of the bathroom.\",c104 4.60 10.90;c090 7.50 17.20;c150 0.00 8.70;c097 3.20 9.90;c113 9.00 15.70,26.75\r\nFRX6I,BYF9,Kitchen,6,7,Yes,A person is sneezing on a towel while another person is smiling at a chair.,chair;towel,A person is sneezing into a towel while another person is standing by a chair and smiling.,c033 0.00 17.00;c153 0.00 17.00;c152 0.00 17.00;c034 0.00 17.00;c038 0.00 17.00,15.58\r\nVICUM,HR43,Kitchen,6,5,Yes,\"A person is standing at the refrigerator, sneezing. They begin opening and closing the door, repeatedly. Finally, they pull clothes out of the refrigerator and walk away.\",clothes;door;refrigerator,A person walks to a refrigerator and opens and closes the door multiple times. They then grab clothes from inside the refrigerator and close the door.,c000 24.10 30.00;c006 0.50 5.90;c142 0.50 5.90;c008 0.00 4.00;c143 0.00 4.00;c002 22.80 30.00;c141 0.00 26.80,28.83\r\n0NJ26,1OHU,Closet / Walk-in closet / Spear closet,4,6,No,A person is putting a blanket on the couch and then holding a bag as they sneeze.,bag;blanket;sofa;towel,A person is holding a towel and then lays it down while holding a trash bag full of clothes,c020 0.00 21.30;c071 0.00 13.40;c034 0.00 14.60;c075 17.90 31.00,30.38\r\nDXUQS,9PLL,Kitchen,4,6,Yes,A person in the kitchen is laughing while holding a broom and putting away groceries.,bag;broom;counter;floor;food;groceries;shelf,A person is sweeping the floor with one hand using a small broom. The person stops sweeping and takes some grocery items out of a bag on the kitchen counter.;The person is sweeping the floor and then proceeds to grab groceries from a can on the counter.,c130 17.50 26.90;c098 0.00 14.50;c102 0.00 14.90;c127 0.00 12.80;c149 10.80 16.40;c062 17.20 22.50;c063 16.00 34.00;c081 18.00 27.00;c061 16.00 34.00,32.71\r\nUK8KW,LWUV,Entryway (A hall that is generally located at the entrance of a house),2,4,Yes,A person stands in the door holding a sandwich.  They then begin snuggling with a blanket that they pick up off the floor.,blanket;clothes;door;floor;food;sandwich,Person in a doorway pick up blanket off the floor then eat a sandwich.;A person standing in a doorway eating a sandwich and picking up a blanket.,c070 17.90 31.00;c072 20.80 31.00;c067 20.20 31.00;c156 23.30 31.00;c000 17.00 31.00,29.75\r\nT4HF9,HJJ4,Bedroom,5,6,Yes,A person in  a dining room is dressing in front of a mirror before opening a doorway.,clothes;coat;door;jacket;mirror,\"A person puts on their jacket in front of a mirror. The person then opens the door;The person is putting on a coat in front of a mirror, they then open a door.\",c096 0.00 18.00;c008 14.30 21.70;c148 0.00 17.70,21.92\r\n8M0ZV,EIO2,Hallway,3,1,Yes,\"In the recreation room, a person is drinking while opening the door to find another person standing there with dishes.\",dish;door;food;glass;phone;plate;window,A person leans against the window looking at their phone. A second person walks in drinking a glass of water.;A person is standing by an open window holding a plate of food then another person walks in drinking a glass of water.,c008 22.10 31.00;c118 0.00 31.00;c106 27.50 31.00;c061 0.00 31.00;c097 24.80 30.20,30.08\r\nO7N6K,UTMU,Bedroom,6,7,Yes,\"A person opens the door to their bedroom, then takes their shoes off, and holds them up in the air.\",door;shoe;television,\"A person opens the door and enters the bedroom. The person takes off their shoes, holds them in the air, and waves them at the television. The person then walks through the room.;A person opens a door and takes their shoes off. They wave the shoes in the air.\",c008 0.00 5.60;c053 3.40 23.00;c056 17.60 23.00;c057 2.60 7.70;c097 0.30 7.10,22.00\r\nL8HMR,2Q9D,Laundry room,6,7,Yes,\"A person turns on the light in the laundry room, puts a blanket into the washing machine and pours in some detergent.  They then close the lid of the machine and start washing the blanket.\",blanket;box;doorway;shelf;soap;towel;washing machine,\"Person walking into laundry room with a blanket, puts it into a washer with some soap, and then turns it on.\",c071 3.40 14.00;c043 10.80 23.80;c070 0.00 14.00;c097 0.00 4.60;c034 3.60 13.50;c042 18.60 23.50;c081 18.10 23.60;c040 10.50 23.60,32.58\r\nHIC67,OVEP,Living room,7,7,Yes,A person folds a blanket and puts it on the sofa. The person picks up a glass of water and takes a drink.,blanket;cup;dish;glass;sofa;water,\"A person carries a blanket into the room, folds it and puts it on the sofa.  They pick up a glass of water from a table and drink it, then walk away.\",c071 0.80 8.70;c075 6.70 16.80;c106 1.80 14.40;c106 12.20 24.10;c110 8.20 21.10;c119 18.40 24.60;c120 13.20 19.10;c074 12.30 17.50;c070 0.00 16.50;c118 14.10 24.40,25.08\r\nPPCWE,OVEP,Stairs,7,7,Yes,\"A person walks down the stairs, playing with their phone. The person pauses to look at a picture that's hanging on the wall.\",light;phone;stairs,A person is running up the steps and then trips. Then the person proceeds to walk back down the steps while looking at their cell phone.;a person walks down the stairs and turns the lights off and on,c016 4.00 18.00;c150 0.00 6.00;c015 3.00 18.00,17.08\r\nVNQES,T7C3,Dining room,7,6,Yes,A laughing person is sitting in a dining room holding a box. They put the box on a table and stand in the doorway before leaving.,box;chair;doorway;table,\"A person is laughing at something in a box, they then put the box down on a table and leave the room.\",c040 0.00 40.00;c154 37.20 40.00;c042 23.90 31.00;c011 20.00 26.10;c149 6.00 13.40;c097 35.70 40.00;c059 0.00 26.90,39.21\r\nLTYK5,XXN8,Laundry room,6,7,Yes,A person is smiling in the laundry room  while putting clothes in the washer. They put a pair of shoes in the washer too.,clothes;door;dryer;shoe;smile,\"Person stooping and smiling, opens dryer, place clothes in then place shoes in. Person closes dryer, gets up and walks away.;The person first opens the dryer door to put clothes inside of the dryer. The person then closes the dryer door after putting the clothes inside of the dryer.\",c152 0.00 5.30;c154 16.20 21.20;c006 12.90 17.90;c054 7.80 13.40;c004 0.70 16.20;c008 0.00 5.10;c001 2.30 16.20,28.17\r\n6PL9Z,HJJ4,Living room,4,7,Yes,\"A person stands up from the sofa then takes a book, and blanket out of the room.\",blanket;book;sofa,\"person is sitting on a sofa, they then grab a blanket and a book and walk out of the room.\",c073 3.40 9.50;c026 6.20 11.30;c030 5.80 13.40;c123 0.00 6.40;c154 2.40 7.20;c070 3.50 21.00,19.67\r\nGK6GN,C7O9,Pantry,6,6,Yes,\"A person is standing in the pantry putting the groceries away in their proper place on the shelves, and in the cabinets, smiling all the while.\",bag;cup/glass/bottle;food;groceries;shelf,A person is taking groceries from a bag and putting it on shelves.,c020 0.00 30.00;c130 0.00 30.00;c152 0.00 30.00;c062 0.00 29.20;c081 0.00 5.70;c081 11.30 17.50;c081 14.70 20.90;c109 22.70 28.50;c063 0.00 3.90;c063 3.40 8.60;c063 6.80 12.10;c110 21.30 26.90,29.25\r\n7NBPG,OUKK,Kitchen,6,7,Yes,A person is standing in front of the stove holding a book.  The person throws the book onto the counter and walks to the sink to pick up a picture.  The person looks at the picture and laughs.,book;counter;picture;sink;stove,\"Person walks into kitchen reading a book.  Person tosses book on counter, picking up picture looking at it.\",c026 0.00 25.00;c031 20.20 25.10;c032 0.00 24.40;c084 23.20 31.00;c088 23.70 31.00;c027 0.00 4.80;c117 22.60 28.00;c028 20.20 25.30;c083 23.10 28.60;c025 20.10 24.40;c027 0.00 31.00;c117 0.00 31.00;c028 0.00 31.00,29.71\r\nL3JDK,DXDI,Kitchen,6,7,Yes,A person is cooking on the stove and putting medicine into the food.,food;medicine;stove,A person is cooking food on a stove they then take a medicine bottle and open it to put it in the food they are cooking.,c128 12.50 18.20;c147 0.00 32.00,31.00\r\n0M7YH,CO1W,Kitchen,6,6,Yes,\"A person opens a refrigerator, and begins drinking out of a jug of milk before closing it.\",cup/glass/bottle;food;refrigerator,\"person drinks milk from a fridge, they then walk out of the room.\",c143 2.00 7.70;c106 28.70 32.00;c061 6.30 28.10;c106 10.10 24.70,30.62\r\nMQ9PZ,70CN,Living room,6,4,Yes,\"A person is fixing a cabinet, then eating food and working on homework and finally tidying up the living room.\",book;boxes;cabinet;door;floor;items;shelf;snack;stuffed animal,\"A person is sitting on the floor fixing a cabinet door. They close the cabinet door and then pick up a snack and eat while opening up a book and looking at it. Then they pick up a stuffed animal off the floor and put it on top of the cabinet. They organize several boxes on the floor and reach up and touch the stuffed animal again.;A person is sitting on a floor fixing a cabinet door.  They close the door, open up a book, and start picking up items and placing them on the cabinet.\",c112 0.00 7.80;c114 10.80 18.90;c125 0.00 32.00;c006 0.00 7.80;c008 0.00 2.60;c027 6.10 11.80;c025 8.30 14.50;c032 7.70 12.80;c081 10.00 19.20;c028 7.20 13.40;c082 23.00 29.30;c127 3.60 10.10,30.88\r\n5DPC8,HR43,Bathroom,5,7,Yes,\"A person turns on the light in a bathroom, and then sits on a chair and looks at their phone before leaving.\",chair;doorway;light;phone,A person walksinto the bathroom and sits on a chair they take out their phone and look at it and then they get up and walk out.,c104 1.40 7.70;c016 11.80 35.20;c059 3.40 35.90;c151 3.90 11.00;c154 28.80 35.70;c097 33.90 37.00;c017 33.90 37.00;c018 33.90 37.00;c015 33.90 37.00,35.79\r\nKVWRK,0KZ7,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is walking up the stairs into a house.  The person is carrying a towel in one hand and a sandwich in the other.  The person is throwing crumbs from the sandwich onto the ground while taking the steps into the house.,blanket;food;hand;sandwich;towel,\"A person is walking up the stairs in the entryway, holding a towel, and shredding a sandwich onto the floor.\",c033 0.00 27.00;c061 0.00 27.00;c070 0.00 27.00,26.21\r\nSXMII,YMXV,Bedroom,6,6,Yes,\"A person is laying on the bed, propped up on a pillow. The person watches a person tidying up the room and picking up clothes off the floor.\",bed;blanket;clothes;floor;pillow,\"a person is laying in bed then sits on 2 pillows and throws a blanket on the floor then picks up the blanlet;A person awakens on a bed, arranges pillows and sits on theme, then gets up a grasps some clothes from the floor.\",c134 0.00 9.70;c077 21.50 25.70;c000 10.20 15.90;c154 21.40 27.40;c146 0.20 5.00;c074 23.60 28.60;c002 24.90 31.00;c003 7.90 13.50;c126 7.60 14.80;c004 24.40 33.00;c127 25.00 32.90;c135 6.60 23.30,31.92\r\nSAK7K,4I2W,Living room,7,7,Yes,\"Person is standing in the living room vacuuming, they stop and walk over to turn off the television. After turning off the television they start drinking a cup of coffee.\",coffee;cup;desk;dish;floor;table;television;vacuum,\"A person is vacuuming a room, they then turn off the television and take a drink of coffee.;A person vacuums the floor before turning the TV off an drinking a cup of coffee.\",c137 0.00 10.80;c106 23.50 30.00;c107 20.90 30.00;c110 19.20 26.50;c009 4.30 10.60;c118 21.00 30.00;c127 0.00 8.00,29.38\r\nRQRR6,D0RU,Recreation room / Man cave,4,6,Yes,The person is closing the laptop and then walking into the cabinet in the recreation room / man cave.,laptop,A person walks to their laptop and starts using it. They then close the laptop and walk away.,c046 16.70 24.50;c051 0.00 8.90;c052 5.40 21.30,33.58\r\n3J639,OUKK,Living room,3,6,Yes,A person is sitting on a towel on the floor holding their phone and watching television.  The person laughs at something on the television and walks to the couch to take a pillow off of it.,floor;pillow;sofa;something,A person is sitting on the floor. The person laughs. The person stands up and grabs a pillow from the couch. The person sets the pillow down on the floor. The person sits on the pillow.,c151 23.30 31.00;c154 11.90 21.70;c125 0.00 17.20;c126 16.50 22.60;c079 15.70 22.30;c077 18.10 22.40,29.71\r\nOL2QI,AC0W,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is standing in the closet putting a blanket on the shelf.  The person grabs a pillow off the shelf and throws it on the floor.,blanket;clothes;floor;pillow;shelf,An individual picked up a pillow and put it in the closet. They then threw something from the closet on the floor.,c074 19.70 29.40;c126 3.70 15.90;c076 12.80 18.20;c077 18.00 25.00;c081 18.70 25.40;c001 11.50 24.80,38.00\r\nDRGKV,Z68L,Bedroom,6,6,Yes,A person is standing in their bedroom while undressing by taking their jacket off. They put a picture onto their bed and hold a camera up towards the door.,bed;camera;clothes;door;phone;picture,A person walks into a bedroom and takes off a jacket and throwing it on the bed and then taking a picture.,c015 22.40 30.60;c087 21.00 29.00;c003 12.40 17.30;c155 3.90 14.30,31.88\r\nUKGO4,YA10,Home Office / Study (A room in a house used for work),7,4,No,A person is leaving with dishes.  Then a person comes back without the dishes.  A person is dressing and turning off a light.,clothes;cup/glass/bottle;dish;hat;light;plate;sweater,\"The person is holding a plate of something and walks away. They come back and put on a sweater and a hat, turn off the light, and leave the room.;A person is standing at a desk with a plate and cup they take them away and come back they take off their hat and put a shirt on then they put their hat back on and turn off the light.\",c120 0.00 7.50;c148 10.50 33.00;c118 0.00 6.90;c105 26.80 31.10;c119 0.00 3.60;c148 15.20 20.20;c001 10.70 15.70;c110 0.00 4.40;c107 0.00 4.40;c000 12.10 29.50,32.50\r\n7DGWM,YMXV,Bedroom,6,6,Yes,A person is grasping a towel in their hand then running up to a pillow and puts it on the floor.,bed;door;floor;pillow;towel,\"A person is walking into a bedroom with a towel. The person sits down on a bed, stands up and grabs the pillows. The person holds the pillows to their chest, then sets them on the floor while they close the bedroom door.;a person walks into a room with a towel then sits on his bed on a pillow and holds two pillows\",c033 8.90 15.70;c035 15.40 22.50;c077 5.50 13.20;c079 13.10 22.10;c151 15.40 26.60;c006 15.90 32.00;c034 26.40 32.00;c076 17.10 30.30;c150 2.20 8.20;c154 7.90 23.30;c135 4.40 11.20;c078 15.90 30.10;c097 0.60 6.50,31.04\r\nUIWY2,QOQ4,Basement (A room below the ground floor),6,7,Yes,\"A person stands on a chair in the basement, changing a light bulb. The person gets down from the chair and sits in it once the job is completed.\",chair;light,\"A person steps on a chair, changes a light bulb, then sits down in the chair.\",c103 2.00 22.40;c060 0.60 24.20;c151 23.30 28.90,28.54\r\n64HO1,FNK4,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person laughs as they walk into the entryway with a box of medicine and some food on a plate.,dish;door;food;glass,\"This person enters a home, stands in entry area for a while, holding a plate of food and a glass while smile and laughing.;A person walks into a home they are carrying a plate and a bottle of medicine they are laughing.\",c061 2.10 30.00;c149 2.90 30.00;c006 6.00 12.90;c152 2.30 30.00;c008 0.80 8.60;c118 1.40 30.00;c097 0.70 10.30,29.50\r\nPCXYE,5LWB,Garage,7,7,Yes,\"A person sits in the garage, grasping a cup of coffee. The person stares at a picture hanging on the wall.\",chair;coffee;cup;glass;shelf;wall,A person drinks from a cup while sitting in a chair before fixing a shelf.;A person is sitting on a bike and drinking from a white cup. They get up and walk over to a shelf and put it down.,c107 0.00 26.90;c106 0.20 14.30;c154 15.80 21.70;c082 21.30 36.00;c059 0.00 21.00;c110 0.00 26.40;c081 0.00 26.40;c109 0.00 26.40,34.54\r\nI5PU9,YMXV,Bathroom,6,1,No,A person is sneezing by a window and then grasping a camera in the laundry room.,clothes;phone;window,\"A person straightens some clothes, picks up a phone and plays with it.;A person holding a phone looks out a window and then straightens some clothes on a clothes line.\",c004 11.20 23.00;c015 19.80 33.00;c018 6.20 33.00;c002 7.80 23.40;c001 7.80 23.40;c016 19.20 33.00,32.04\r\n9OJXP,9PLL,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person opens the door and walks into their entryway holding a towel and a sandwich. They sneeze then leave the room.,door;towel,\"A person opens a door while holding a towel, sneezes and leaves.\",c008 5.60 17.40;c033 0.00 32.30;c153 15.40 26.90;c097 10.20 17.80,31.62\r\n8EYHC,H8N1,Living room,5,6,Yes,A person is seen sitting on a chair. They are working on their laptop and begin sneezing.,hair;none,A person is sneezing while sitting in a chair,c153 10.00 22.40;c144 23.20 27.00,26.33\r\nXOFEX,WQ8Z,Pantry,6,7,Yes,\"A person is grasping a camera, then working on a laptop in a pantry.\",camera;laptop;phone;table,A person is holding and touching a camera. The person then types away on a laptop;A person is trying to fix a camera then they put it down on the table and start to work on their laptop.,c052 13.20 31.00;c016 0.00 15.60;c017 12.30 17.20;c014 12.90 31.00;c009 12.00 17.20,29.79\r\nGFON7,D0RU,Bathroom,7,5,Yes,\"A person is laughing over the sink.  They turn, open the door, and walk out of the room.\",door;toilet,\"The person is laughing and standing next to a toiler, and walks out the bathroom.\",c149 0.00 13.50;c152 9.90 19.30;c097 13.10 22.90;c152 0.00 32.00,30.50\r\nT0V4O,5LWB,Bathroom,6,6,Yes,\"A person is fixing a mirror in the bathroom. The person takes medicine from the cabinet and begins leaving, running out of the room.\",box;cabinet;medicine;mirror,person hanging a shelf on a wall opens a box puts it up on a shelf,c093 0.00 23.90;c044 25.50 30.50;c096 0.00 23.40;c042 27.00 32.10;c041 23.30 30.80;c043 30.20 33.00;c039 30.20 33.00;c040 30.20 33.00,32.17\r\nMSN1B,UTMU,Living room,5,7,Yes,A laughing person awakens in their living room and holding a phone. They sit up and drink from a glass.,cup;glass;phone/camera;sofa,A person is lying on the couch and awakes. The person then grabs a cup of water and begins to drink it.;a person wakes up on the sofa and drinks some water then gets up,c106 8.30 14.70;c107 5.60 18.00;c110 6.70 11.50;c146 0.00 6.90;c154 17.80 23.10;c122 0.00 8.10;c015 0.00 9.90,23.46\r\n2QI8F,5LWB,Laundry room,5,7,Yes,A person grasps detergent from a shelf and pours it into a washing machine next to a window.,box;clothes;doorway;lid;scoop;table;washer;washing machine,\"Person carrying box of laundry detergent, puts a scoop of detergent into washing machine, closes lid, walks out, places box on table;The person adds a scoop of soap to the washer then walks away and sets the box down.\",c040 0.00 16.90;c042 9.70 18.80;c044 0.00 7.60;c009 10.20 20.50;c041 0.00 3.50;c097 8.40 13.90;c039 4.20 10.30;c041 0.00 14.00;c005 0.00 13.00;c039 9.70 14.20,21.42\r\nJJKNY,WG9D,Bathroom,4,7,Yes,A sneezing person is undressing in their bathroom and washing a dish in the sink and eating a sandwich.,clothes;dish;electric razor;food;sandwich;shirt;sink;sponge,\"A person takes off a shirt and puts it down.  Then the person puts a dish in the sink, begins to wash it before picking up some food and eating it.;A person takes off a shirt, sneezes, then starts to shave\",c065 6.50 11.00;c069 5.40 11.00;c119 2.10 7.50;c121 3.40 9.80;c156 5.80 11.00;c067 6.20 11.00;c118 2.50 7.30;c120 2.00 7.00;c155 0.00 4.80;c153 0.00 3.40;c002 0.00 6.10,9.79\r\nODFF6,PKND,Kitchen,7,7,Yes,\"Two people are laughing and playing by an old refrigerator, throwing a bag back and forth.\",bag;refrigerator,Two people toss a towel back and forth while one opens and closes a fridge.,c024 4.50 9.90;c142 6.10 12.30;c143 9.50 15.10;c149 19.50 32.00;c020 3.10 8.90,31.08\r\nEAPFO,KFGP,Bedroom,5,7,Yes,A person is watching television while snuggling up under a blanket in the bedroom.,bed;blanket;television,A person is lying in bed snuggling a blanket and watching television.,c072 0.00 34.00;c132 0.00 34.00;c070 5.70 20.30;c134 0.10 34.00,32.71\r\n1Q8WU,0KZ7,Stairs,3,6,Yes,A person is watching their step while holding a sandwich in one hand and medicine in the other when suddenly they sneeze and drop the medicine.,bottle;food;medicine;stairs,A young person is slowly walking down stairs while carrying a bottle. Near the bottom of the stairs the person appears to sneeze and drops the bottle.;A person walks down some stairs holding some medicine. A person throws the medicine on the ground,c153 16.80 23.40;c128 0.00 22.60;c061 0.00 26.00,25.17\r\nQSQK2,OUKK,Entryway (A hall that is generally located at the entrance of a house),3,6,Yes,A person is running through the doorway that leads into a house. The person stops to fix a picture they accidentally jostled.,door;picture,A person runs to their door but knocks down a picture. They straighten it and then exit the door.;A person runs and bumps a picture.  The person straightens the picture and opens a door.  The person walks through the doorway and closes the door.,c097 22.00 29.90;c150 7.00 12.70;c006 22.50 29.00;c008 19.20 26.80;c086 9.80 22.40;c141 18.70 25.60,29.71\r\nGOCDE,PO5L,Living room,3,7,Yes,A person sat down on the sofa after pouring a drink from the refrigerator. He continued playing his video game.,couch;glass;sofa;table;video game;water,\"A person pours water into a glass and sits on the couch and plays a video game.;person came from somewhere and sat on the Sofa, drank water and then played video games and left to somewhere\",c123 5.40 11.00;c107 1.80 14.00;c009 9.30 26.00;c108 3.60 9.00;c106 7.40 12.80;c110 2.20 7.70;c109 9.10 14.70;c154 19.00 25.20,25.42\r\nOS7VW,R1OT,Bedroom,1,1,No,\"A person is laughing as the person looks in the mirror. Then, smiling, the person reaches to open the cabinet.\",cabinet;mirror,A person is staring into a mirror.  He opens a cabinet.,c094 0.00 16.60;c113 10.80 31.00;c152 0.00 9.70;c154 0.00 31.00;c114 13.20 31.00;c096 0.00 31.00,29.96\r\nICL1M,QB52,Bedroom,5,5,Yes,\"A person is grasping a book, then standing and drinking coffee and eating food in a recreation room / man cave.\",bed;book;cup;glass;stand;water,\"A person is sitting on a bed in a dorm room, reading a book. Afterwards, the person picks up a glass of water and drinks it. After they stand up, the person puts down the glass.;A person is sitting on a bed reading a book. They close it and take a glass of water from a stand and take a drink before standing and putting it back down.\",c025 16.10 22.10;c026 0.00 31.00;c032 0.00 20.00;c154 22.80 29.20;c135 0.00 23.50;c106 20.10 26.20;c109 19.00 31.00,29.92\r\nIULMX,1OHU,Bedroom,7,7,Yes,\"One person awakens, then throws a pillow toward the wardrobe and smiles.\",bed;floor;pillow,\"A person is lying down snuggling a pillow. The person wakes up, throws the pillow, and then yawns.;The person wakes happily, throws the pillow to the side, and gets out of bed.\",c080 0.00 24.70;c146 1.60 11.00;c152 7.30 20.00;c134 0.00 28.00;c133 1.80 10.60;c077 11.80 18.10;c076 4.20 9.40;c135 24.90 28.00;c078 0.00 12.50;c126 14.40 20.70;c079 8.60 13.80,26.75\r\nAHLZY,P3TI,Bathroom,7,7,Yes,A person is washing their face and then dries it with a towel. Then they turn on the vacuum and start sneezing.,floor;hands;sink;towel;vacuum;water,A person is in a bathroom washing up then dries face and hands with a towel then proceeds to vacuum.;The person bends over the sink and rinses their face with water.  The person then dries their face and goes over to use the vacuum.,c137 18.60 34.00;c153 14.40 21.20;c038 12.00 22.60;c035 12.00 17.10;c153 21.80 32.10;c034 15.90 21.70;c127 19.40 28.80;c139 0.00 7.10,32.83\r\nWB17C,6RE8,Kitchen,6,7,Yes,\"A person opens the refrigerator and takes some groceries out, and starts cooking. They begin to sneeze uncontrollably.\",bag;counter;food;fridge;groceries;refrigerator;shirt,A person opens the fridge and takes out a bag. They close the fridge and walk over to the stove. They sneeze several times.;A person opened a fridge and took out some groceries.  The person then put the groceries on a kitchen counter.  The person than began sneezing alot.,c020 7.50 15.10;c142 10.60 16.20;c153 23.20 35.00;c143 0.90 7.20;c130 4.40 23.40;c063 4.40 15.10,34.08\r\nAM3R2,L4ZP,Living room,7,7,Yes,\"In the living room, a person is running around with a glass of coffee in one hand, and a pillow in the other hand.  Realizing how silly they look, they begin sitting down while throwing the pillow on the ground.\",blanket;cup;mug;pillow;sofa,A person runs around a room holding a pillow and mug. The person throws the pillow down and then sits down on a sofa.;A person runs around the room with a blanket and a cup and then sits on the sofa.,c076 0.00 13.90;c150 0.00 10.40;c123 10.80 27.00;c151 9.90 16.20;c080 8.80 14.80;c107 0.00 27.00,26.04\r\nLHMMJ,BYF9,Kitchen,5,7,Yes,\"A person sits in a chair in the kitchen. The person stands up to reach a dish in the cabinet, gets the dish, and then leaves.\",cabinet;chair;dishes;doorway;food,A person is reaching for food on the top shelf of a cabinet.,c059 0.00 9.30;c114 14.70 22.30;c154 4.30 9.30;c097 22.20 27.00;c063 16.50 22.30,25.50\r\n65M4K,6NQX,Kitchen,7,7,No,\"A person is cooking at a stove, then pouring food into dishes and then grasping a towel in a kitchen.\",dish;food;groceries;refrigerator;stove;towel,\"Person walking in the room open a refrigerator, getting food out cooking the food on the table\",c120 20.00 32.00;c062 3.90 27.90;c147 20.50 32.00;c143 0.00 5.40;c063 2.70 11.70;c130 13.40 21.00;c061 6.70 19.90,31.08\r\n95MOF,WG9D,Bathroom,5,6,Yes,A person is smiling and grasping a medicine bottle.  Then a person is grasping homework and leaving.,glass;homework;medicine,A person grabs a phone and book and leaves a bathroom.,,8.54\r\nYSL3Z,ZAWX,Living room,5,7,Yes,\"A person is snuggling a blanket and riding a broom like a witch, laughing and having a good time.\",blanket;broom;chair;towel,The person is wiping their face with a towel and playing on a broom.,c070 0.00 14.10;c100 13.10 31.00;c149 20.40 31.00;c154 10.30 31.00;c034 9.80 14.10;c038 0.00 12.30;c059 0.00 14.90;c152 18.50 31.00,29.88\r\nNY5LX,0KZ7,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is standing and fixing a shelf, then putting clothes in a bag in a Closet / Walk-in closet / Spear closet.\",bag;closet/cabinet;clothes;floor;shelf;towel;wardrobe,\"A person is doing something on a shelf, then putting clothes in a bag in a wardrobe\",c021 19.60 27.10;c082 0.00 14.10;c020 19.50 36.00;c001 19.80 36.00;c002 0.00 36.00;c081 0.00 21.20;c114 0.00 36.00;c004 0.00 36.00;c127 17.70 36.00;c154 0.00 36.00;c000 17.90 36.00;c023 17.40 24.00;c033 24.00 29.00;c035 22.90 28.70;c034 24.80 30.60,34.50\r\nOLH8O,C7O9,Hallway,6,6,Yes,A person is grasping a doorknob while another person is snuggling with a vacuum.,door;vacuum,There is a person picking up and hugging a vacuum.  There is another person holding onto a door and playing with the doorknob.;A person is holding a vacuum while another person grasps the door knob while the first person is cradleing the vacuum,c137 0.00 31.00;c141 16.00 20.90,30.12\r\n4C5S6,T7C3,Kitchen,6,7,Yes,A person is cooking at a stove. The open the refrigerator and start sneezing.,food;refrigerator;stove,\"A person is cooking on a stove, they then open the refrigerator door.\",c147 0.00 22.30;c143 19.50 26.40,34.46\r\nJUGS8,PKND,Closet / Walk-in closet / Spear closet,7,7,Yes,One person with a bottle of medicine and a camera sneezes while watching another person undressing.,clothes;cloths;cup;glass;medicine,\"Person A is holding a bottle of medicine and a cup and Person B is undressing and smiling.;A person is talking to another, and then takes off their shirt.\",c128 0.00 32.00;c107 13.70 23.70;c155 3.80 14.80;c152 0.00 6.80;c149 0.30 5.40;c000 14.10 26.90;c153 19.50 24.60,30.71\r\nPWR6D,T7C3,Home Office / Study (A room in a house used for work),5,5,Yes,\"A person is in a office smiling while working on their laptop, they then sneeze all over the table desk.\",chair;desk;laptop;table,\"A person is sitting typing on a laptop. In addition, the person is sneezing.\",c052 0.00 26.80;c011 0.00 32.00;c153 21.10 32.00;c152 0.00 23.30;c059 0.00 32.00,31.00\r\nV29QF,L4ZP,Hallway,6,6,Yes,\"A person is holding a towel in the hallway. The person looks into a mirror, and then leaves.\",bag;mirror;pantry;towel,\"A person walks down the hall with a towel.  That same person stops, looks in a mirror and walks into a room.;A person holding a bag looks into a pantry.\",c033 0.00 5.80;c096 9.10 16.50,20.50\r\nAXZVQ,XXN8,Pantry,5,7,Yes,\"A person stands on a chair, opens a cabinet, and tries to reach something on the top shelf.\",cabinet;chair;food;shelf,\"Person picks up chair, stands on it, and goes through cabinet.\",c060 2.30 32.00;c082 4.20 32.00;c113 3.50 10.10;c154 0.80 8.50;c063 6.30 12.10;c114 10.10 32.00;c063 21.40 32.00,30.71\r\nVKTYD,2RTW,Living room,6,6,Yes,\"A person enters the living room, and closes the door. The person takes a glass and some dishes from a table, and sits down.\",bowl;cup;dish;door;food;sofa;television,A person walks through a door into a room picks up dishes and a glass sits down on the couch and looks at dishes and a glass.;A person is walking into the living room picking up a bowl of food and inspecting a glass cup while sitting down.,c107 13.60 32.00;c006 2.80 11.00;c123 12.10 19.80;c118 7.40 32.00;c008 1.10 8.30;c151 12.60 18.30;c097 1.50 8.30;c132 3.80 32.00;c120 7.00 32.00,30.62\r\nH9F6S,ZAWX,Living room,7,7,Yes,\"A person is standing in the doorway, eating a sandwich. The person looks around and leaves.\",dish;doorway;food;sandwich,\"A person is standing in front of a door holding a dish, and eating a sandwich. The person looks around and leaves.\",c097 24.20 29.40;c065 0.00 19.00;c067 0.00 16.60;c156 1.10 28.90;c118 0.00 32.00,30.92\r\nII0EJ,4OHY,Stairs,7,7,Yes,A person is sitting on the stairs with a glass.  Then a person is sneezing and then looking out a window.,cup;curtain;floor;glass;stairs;water;window,\"A person sits on the stairs, twirling water in a glass. The person sneezes, then moves a curtain to look out the window.;A person sitting on stairs holds a glass and sneezes while putting the glass down, then looks out of a window.\",c092 14.70 31.00;c107 0.00 13.10;c153 9.10 18.40;c125 0.00 31.00;c109 7.60 14.90,29.92\r\n1X59T,0RNU,Hallway,6,6,Yes,A person runs toward a television next to a door. The person then opens that door.,door,A person is running to open a door;a person runs to a door that has a tv sitting in front of it and opens the door.,c008 1.20 9.00;c150 0.00 4.90;c141 0.90 8.60,7.83\r\nW8TE5,R8JJ,Living room,6,7,Yes,\"A person is sitting in the living room, holding their phone. The person takes a picture of themselves with the phone.\",couch;phone;picture;selfie;sofa,\"A person is sitting on a couch using a cell phone;This person appears to be in their living room, sitting on the couch and posing for the phone camera to take a selfie.\",c016 0.00 16.00;c123 0.00 16.00;c087 0.00 5.60;c152 0.00 16.00;c015 0.00 16.00;c087 2.30 12.00,15.38\r\nZLRFB,54JK,Bedroom,5,5,Yes,A person is tidying up their bedroom while watching television. The person then grabs some clothes out of their wardrobe and starts getting dressed.,clothes;sofa;television;wardrobe,\"Person walk in the room began tidying up the sofa go to the cabinet get a piece of clothing and put it on.;A person walks into a room and starts to tidy up. The person laughs at something on the TV, then begins to dress.\",c131 11.00 17.20;c132 11.00 20.50;c148 21.00 37.00;c149 11.00 17.20,36.12\r\n0XV7B,BYF9,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person opens a door and enters their closet while talking on their phone. The person sits on the chair in their closet, and puts on their shoes.\",chair;clothes;door;phone;shoe,A person opens a door and sits in a chair and puts their shoes on while talking on the phone.,c055 11.90 37.00;c059 9.00 37.00;c019 0.00 37.00;c151 7.40 13.30;c148 18.90 37.00;c097 5.20 9.90;c008 1.20 9.00;c152 8.80 14.40;c152 17.80 25.80,35.88\r\nVL20E,DXDI,Dining room,3,7,Yes,A person is sitting at the table fixing their phone. They begin sneezing and run out of the room.,chair;phone;table,A person is sitting at a table playing with a phone.  Then the person sneezes and runs away.,c015 0.00 19.60;c016 0.00 19.90;c153 14.20 23.00;c150 16.80 23.00;c154 15.80 21.20;c011 0.00 20.00;c009 11.70 18.40;c017 11.70 18.70;c059 0.00 20.10,22.04\r\nJSY2I,X5XO,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,The person is standing by a door and then sneezing into a bag of groceries in the entryway.,bag;door;groceries,a person opened and then closed a door. the person then stood for a moment and then sneezed.,c006 3.70 12.70;c008 0.00 6.90;c020 0.00 31.80;c006 0.00 8.60;c021 18.20 26.50;c153 9.60 16.40;c141 0.40 8.60;c097 0.00 6.00,30.54\r\nX5YL3,BYF9,Kitchen,6,7,Yes,A person holding a bag throws food into a refrigerator.,bag;food;green beans;groceries;refrigerator,a person with bags in their hands opens the refrigerator and takes groceries out of the bag and into the refrigerator.;A person holding a bag opens the refrigerator and places produce from the bag in the refrigerator. The person accidentally drops green beans on the floor in the process of placing the produce in the refrigerator and looks at the green beans as the person closes the refrigerator door.,c020 0.00 19.00;c062 5.40 14.80;c130 5.40 14.80;c020 0.00 2.80;c143 0.00 2.70;c142 13.00 19.00;c021 2.70 7.60;c061 5.70 10.50,18.38\r\nTHS0O,LTAC,Kitchen,5,7,Yes,A person is holding their phone. The person puts their phone onto the counter and picks up a piece of food.,food;phone;shelf,A person is walking around with a cell phone pressing his fingers on the screen. The person puts the phone on a shelf. The person picks up two pieces of a food item.,c015 0.00 24.50;c016 0.00 20.90;c017 17.10 24.50;c061 21.60 36.00;c063 21.60 27.50;c081 18.40 24.00,34.58\r\nQ0OEU,9OK1,Living room,6,6,Yes,One person is sitting at a desk opening a box. Another is leaving through the doorway.,box;desk;doorway,A person is opening a box on the desk.,c041 0.00 18.00,16.92\r\nJTUHP,PO5L,Kitchen,1,6,Yes,A person is cooking on a stove and working on a phone.,food;phone;stove,A person starts to prepare their food while looking at their phone.,c015 4.40 25.30;c147 2.90 23.60;c016 0.00 28.00,27.21\r\n4878H,ID9V,Living room,4,7,Yes,A person is laughing and snuggling a pillow and taking a sandwich.,chair;pillow,A person snuggles a pillow.,c078 0.00 5.70;c059 0.00 24.00;c076 0.00 23.60,22.50\r\nNMTRI,8718,Bedroom,3,4,Yes,\"A person awakens in bed, sits up, and takes a drink from a glass of water. The person eats a cookie.\",bed;blanket;cup;dish;food;glass;medicine;table,The person lies in bed and attempts to open and then eat something. The person drops the item they picked up.;A person is lying in bed. The person wakes up and opens some food and eats it. The person drinks from a glass.,c134 0.00 33.00;c106 22.00 31.40;c156 17.70 22.50;c133 0.00 5.20;c107 18.70 33.00;c146 0.00 5.20;c063 1.90 13.10;c118 3.80 10.70;c129 19.30 24.70;c072 0.50 5.80;c009 28.20 33.00,31.54\r\n0N6B0,BYF9,Bedroom,5,7,Yes,A person is sitting with a phone while someone is taking pictures with a camera.,bed;camera;phone;picture,A person takes a picture of a second person sitting on a bed holding a camera.,c087 3.80 23.40;c015 3.60 23.90;c016 2.80 23.10;c151 3.40 9.90;c135 5.20 27.00,25.83\r\n4Q3KR,D0RU,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is walking to the cabinet and tidying the shelf.,cabinet;duster;shelf,A person moves a bottle on a shelf and rearranges a few other objects. They they start dusting the shelf.,c114 4.70 17.10;c082 10.00 23.00,32.71\r\nAVVX3,BYF9,Living room,4,7,Yes,A person in a living room opens a medicine bottle. The bottle is empty so they throw it away and take a look at them self in a mirror.,floor;medicine;mirror,A person is sitting on a chair looking at medicine. The person throws the medicine on the floor and then looks into a mirror.,c128 0.00 6.40;c094 16.90 25.00;c154 12.10 17.80;c096 15.40 25.00;c126 10.50 15.40,23.79\r\nBU2R4,XXN8,Bathroom,5,6,Yes,A person is in the recreation room holding a glass of wine.  The person drinks the wine and puts it on the table.,cup;glass;table,\"A person drank water from a glass, paused, drank more water, then set the glass aside onto a counter.\",c106 0.00 16.00;c107 0.00 26.20;c109 20.30 27.30;c009 20.30 27.30,30.50\r\nWKHB3,1OHU,Kitchen,5,4,Yes,\"One person stands by a shelf with homework on it, then leaves with a sandwich.\",homework;sandwich;shelf,A person is looking at a piece of paper that's sitting on a counter. The person then takes a bagel off the counter and walks away.,,33.08\r\nLI5VF,6RE8,Bedroom,6,6,Yes,Person is walking to sink then puts bag with pillow in sink and starts laughing.,bag;clothes;floor;pillow;table;towels;wall,\"The person fluffed towels on the door then threw a pillow down on a low table before leaning against the wall and laughing.;a person tidy's some hanging clothes, then takes some pillows and puts them down while laughing\",c077 6.70 19.30;c149 18.10 28.20;c000 0.00 7.40;c003 4.90 11.80;c004 0.00 7.50;c126 6.40 14.00;c020 0.00 10.90;c022 5.70 12.40;c076 0.00 10.30,30.58\r\nHZA53,54JK,Bedroom,5,7,Yes,A person is standing on a chair with a broom. They are intently watching a bottle of medicine on the desk.,broom;mop botttle,A person is using a mop to try to reach a bottle,c098 0.00 32.00,30.54\r\nSHKHX,6RE8,Bedroom,5,5,No,\"A person drinks from a glass, then snuggles a laptop in the doorway of the garage.\",cup;door;glass;laptop;table,A person is drinking than grabs a laptop and leaves the room.,c097 23.70 29.80;c106 0.10 6.70;c047 20.60 27.70;c109 10.20 15.20;c006 26.50 32.00;c009 10.20 15.20;c107 0.00 8.30;c050 14.40 19.90;c141 26.30 31.50;c008 20.30 26.60,30.54\r\nUPZJ5,PKND,Hallway,7,7,Yes,One person grasps a picture by a window as another person leaves with homework in hand.,paper;window,a person is holding a clipboard and writing on it while another person is at the window.,c092 2.30 10.10;c145 0.00 9.80;c152 6.30 31.50,30.54\r\nJH47V,D0RU,Hallway,6,6,Yes,\"One person is pouring a soda and drinking, while nearby groceries are stacked in a box.\",box;chair;cup;dish;glass;groceries;table,The man pours mountain dew into a glass and drinks it while sitting. The camera then moves to a box.,c106 23.90 32.20;c108 0.00 17.00;c011 0.00 33.30;c118 0.00 23.80;c059 0.00 33.30;c109 0.00 23.50,36.96\r\nXRQDI,L4ZP,Hallway,5,7,Yes,Two persons are running up and down the hallway.  One person runs in a room and closes the door before the second person can get there.  The second person runs into the door and the first person opens the door and laughs at the second person.,door,\"Two people are running through a hallway, one runs into a doorway. The other person is laughing.;The people are chasing each other back and forth before walking out the door.\",c150 0.00 8.30;c149 7.20 15.80;c097 3.50 9.60;c152 18.00 20.00,19.29\r\n57A1A,PO5L,Laundry room,4,6,Yes,A person in a laundry room opens a cabinet and removes a broom that the person then throws on the floor.,broom;cabinet;door;floor,A person walks into a room and opens a laundry closet door. The person grabs a broom out of the closet and then tosses it.;A person is coming in through a door closes the door picks up a mop and throws it and walks out of the room.,c101 11.00 16.00;c126 11.00 16.00;c112 3.00 9.00;c006 3.00 9.00;c113 2.80 9.00,18.75\r\nGFALT,BYF9,Closet / Walk-in closet / Spear closet,6,7,Yes,A person leaves a medicine bottle inside the closet then begins to laugh as they take a sip of coffee.,coffee;cup,A person cleans off a chair while drinking coffee.,c106 5.20 12.10;c152 7.00 22.00,20.83\r\nH9V9I,XXN8,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person puts their laptop onto a desk, and walks out.\",desk;doorway;laptop;table,\"A  person is standing holding an open laptop. They begin working on the laptop, sit it down, then leave.\",c009 3.90 10.30;c046 6.60 12.70;c049 0.70 12.70;c097 9.90 15.70;c047 0.00 3.50,33.50\r\nRTULL,YMXV,Bathroom,5,5,Yes,A person is fixing the chair beside the table. Another person walks in to wash their hands.,chair;desk;hand;sink,A person is in a bedroom. The person picks up a chair and sets it down in front of a desk. A second person walks into a bathroom and washes hands under the tap.;A person lifts a chair into the air while another person washes their hands.,c139 19.70 33.00,31.54\r\nJ867Z,10FJ,Dining room,5,7,Yes,A person puts coffee on the table then throws a book down.,book;coffee;cup;table,\"A person walks up to a table and sets on a cup on it, then they throw down the book they were also holding and walk off.\",c009 3.40 16.30;c031 13.30 20.00;c109 3.50 15.40,24.83\r\nENCXV,DL3G,Home Office / Study (A room in a house used for work),7,7,Yes,A person is standing in their home office drinking from a glass of water. The person takes a medicine bottle from the desk and the glass and walks to their kitchen.,cup;desk;glass;medicine;water,A person gets a glass of water and then looks at some medication. The person takes the medication and then sets it on the desk and walks out of the room.,c106 7.40 28.80;c128 15.60 32.70;c107 0.00 33.00;c110 15.30 20.90,32.25\r\nWXMTI,9PLL,Bedroom,4,7,Yes,\"One person puts a pair of shoes into a bag, then grasps a box and smiles.\",bag;box;floor;shoe,\"A person is holding a bag and putting shoes inside, they then begin to pick up a heavy box and smile.\",c040 14.10 20.30;c020 0.00 3.30;c021 0.00 4.30;c054 0.80 8.60;c152 15.70 24.10;c127 0.00 8.60;c043 8.50 20.20,32.71\r\n2CR09,RJOM,Garage,5,6,Yes,A person runs into their garage and begin dressing holding a bag. They grab the doorknob and leave.,bag;clothes;door;sweater,\"A person runs into a garage and pulls clothes out of a bag. The person begins to get dressed and then runs back into the house.;Person walking into the garage, puts bag on car to pull out sweater and put it on before picking up the bag and going back into the house.\",c141 0.00 4.20;c020 0.00 8.20;c148 4.10 15.70;c000 6.00 10.90;c006 0.00 5.10;c008 0.00 3.70;c023 0.00 8.70;c097 0.00 4.30;c002 2.50 8.90;c022 4.60 8.90;c021 2.10 6.50,18.67\r\nOTT89,YMXV,Bedroom,7,1,No,A person is standing in the basement grasping a mirror. They person begins dressing and put on their shoes.,clothes;mirror;shoe,The person is looking at them-self in the mirror while buttoning their shirt and then putting on their shoes.,c096 0.00 18.80;c055 14.80 33.00;c148 0.00 33.00,31.62\r\nH4KNQ,X5XO,Stairs,4,6,Yes,\"A person walks down the stairs with dirty dishes, leaving them in the sink. They then go sit down in front of the television and turn it on, laughing when a funny joke is told on their favorite sitcom.\",dish;doorway;sink;stairs;television,\"A man walking downstairs with dishes in his hand, goes to the kitchen, puts the dishes in the sink, and then goes to the living room to sit down.\",c119 14.10 20.30;c132 27.40 33.00;c151 25.70 33.00;c097 7.90 15.80;c118 0.00 18.40,31.75\r\nNUMAW,2RTW,Kitchen,6,6,Yes,\"In the entryway, a person is smiling and using a vacuum.  Another person is sneezing and sitting in a chair at a desk.\",chair;floor;homework;table;vacuum,\"A person is sitting at a table doing homework, while another person is using a vacuum;One person is using a vacuum while another person is sitting at a table doing homework.\",c059 0.00 31.00;c137 0.00 31.00;c153 1.70 12.20;c011 0.00 31.00;c127 6.50 13.00;c152 23.00 28.40,30.50\r\nDHPNN,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is sitting at a desk, working. Another person is throwing food at the first person.\",chair;desk;food;homework;paper/notebook;table,\"A person is sitting at a desk working on homework, another person is thorwing food at person A.\",c011 0.00 32.00;c064 8.80 15.50;c149 0.00 4.60;c059 0.00 32.00;c145 5.10 32.00,30.71\r\n8GXNA,YMXV,Bedroom,6,4,Yes,A person walks into the closet holding a bag full of clothes.  The person takes the clothes out and places them on the shelf before leaving the room.,bag;bed;chair;clothes;door,\"A person is holding a bag then puts it on a bed and starts taking clothes out of it. They hang the clothes on a line and walk out through the door.;A person standing in a bedroom places a duffel bag on a bed and removes two articles of clothing, hangs them on a clothesline, then places the bag on a chair in the room. The person walks out of the room, closing the door.\",c020 0.00 8.00;c022 5.00 10.00;c000 8.00 15.00;c006 28.00 33.00;c021 5.30 11.50;c023 0.00 2.90;c001 10.50 16.70;c002 7.80 13.10;c141 25.20 33.00;c004 8.40 17.50;c097 24.30 33.00,31.58\r\n93EOJ,DBGJ,Laundry room,7,7,Yes,\"A person opens the dryer, and grasps a blanket from inside. The person sets the blanket down on a nearby desk.\",blanket;desk;dryer;table,Someone is opening a drying and taking a blanket from it and folding it.,c009 10.90 15.70;c070 2.10 14.90;c071 10.60 15.90;c073 1.70 9.30;c075 7.80 14.90,16.75\r\nRJIEO,ZAWX,Bedroom,4,7,Yes,\"Person walks into the bedroom, sits the bag of groceries on the bed, and turns on the television.\",bag;bed;remote;television,\"A person holding a plastic bag, puts the bag on the bed as well as sits on the bed then takes the remote and turns on the tv\",c132 17.00 27.50;c135 4.40 14.60;c151 2.90 12.70;c022 4.80 9.90,29.62\r\nGY9MZ,PKND,Other,7,7,Yes,\"The person was walking and laughing while drinking coffee, and moved the shoes to the bench in front of the door.\",coffee;cup;floor;shoe,\"A person is pacing back and forth, laughing and smiling while drinking from from a mug. They take off their shoes and kick them aside.;The person is walking back and forth with a cup in the hand while drinking from it and smiling. The person is also removing its shoes without bending.\",c106 0.00 5.00;c149 1.20 11.30;c152 0.80 12.00;c056 26.70 36.00;c057 26.70 36.00;c107 0.00 36.00;c127 21.80 36.00;c058 22.30 36.00,35.17\r\nYCY9G,0KZ7,Garage,6,7,Yes,A person walks into the garage carrying a glass. This person takes a few drinks while looking around before placing the glass on a shelf.,cup;glass;shelf,A person walks through the garage while drinking from a glass several times.,c081 28.10 34.50;c106 4.40 31.60,36.67\r\n4O9A6,KFGP,Other,5,7,Yes,The person fixes a light but abandons it to sit down and drink some coffee.,chair;coffee;cup;light;table,A person is standing on a chair and fixing something on the ceiling. Then the person sits down and takes a drink.,c106 25.60 32.00;c107 24.90 32.00;c103 0.00 21.70;c151 22.60 30.40;c060 0.00 25.30;c011 23.10 32.00;c059 24.00 32.00,31.46\r\nR025M,HJJ4,Garage,6,7,Yes,\"A person leaves a box of dishes in the garage, then works on something nearby.\",box;cabinet;table,\"A person sets a box down, opens a cabinet.;A person puts down a book and goes over to cabinet and opens it\",c042 0.00 5.00;c113 4.00 16.00;c009 0.00 4.40;c040 0.00 2.70;c112 3.00 16.00,15.67\r\n8OHDL,4OHY,Bedroom,6,7,Yes,\"A person is tidying up with a broom. Then, picking up a pillow and throwing it towards the refrigerator, the person leaves the room.\",broom;floor;pillow,A person is tidying up a room with a broom they then grab a pillow and throw it and walk through a doorway.,c080 12.30 17.60;c102 0.00 15.40;c098 0.00 16.00;c127 2.20 9.30;c126 11.10 18.80,29.67\r\nW74ZY,YMXV,Living room,4,1,No,\"A person is standing in the doorway, undressing. The person sits down on the sofa. The person quickly jumps up, begins dressing, and leaves.\",bed;clothes;doorway;sofa,\"A person is standing in a doorway.  The person walks to the bed and sits down.  The person stands up and jumps, and then puts a shirt on.  Then the person walks out of the door.;Person standing in the doorway, sits on couch and bounces then puts on a shirt.\",c151 5.90 12.10;c000 15.30 20.30;c002 14.20 19.80;c123 5.50 15.80;c148 13.50 33.00;c154 0.00 33.00,31.96\r\n8VVHR,YMXV,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is tidying a doorknob, then throws their phone on the sofa in the study.\",closet/cabinet;desk;door;phone;pillow;pone;rag,A person is washing a door with a rag before opening it. They pick up a phone off the desk and throw it on a pillow.;A person is cleaning a door then taking a phone and putting it on a bed.,c015 17.60 23.70;c018 11.30 17.30;c141 1.20 6.70;c017 17.60 24.30;c114 0.00 13.20;c113 7.30 13.80,30.54\r\nBWG9B,PKND,Living room,5,7,Yes,A person is sitting on the sofa holding a glass of water.  The person drinks the water and places it on the desk next to a bottle of medicine.,desk;glass;shoe;sofa;table;water,\"A person drinks from a cup then sits down on a sofa. The person sets down their cup and kicks off their shoes. The person then picks up, takes a drink, then sets down the glass again.;A person takes a glass of water from a table and drinks from it as they sit down on a blanket on the sofa.\",c106 0.20 5.30;c123 1.60 32.00;c151 1.40 7.60;c057 5.50 12.60;c109 13.60 19.20;c009 13.60 19.20;c110 0.00 3.90,31.25\r\nBPZE3,T7C3,Kitchen,7,7,Yes,A person is cooking on the stove while watching a movie on their phone,food;phone;stove,A person is cooking at the stove while looking at their phone.,c015 0.00 36.00;c016 0.00 36.00;c147 0.00 36.00,35.12\r\nC7V0X,0KZ7,Dining room,7,7,Yes,A person is throwing a pillow on the sofa then goes over to a table and takes a sip of coffee.,coffee;cup;pillow;sofa;table,A person in a dining room throws a pillow. They then walk to a table and drink from a cup.,c106 12.60 19.10;c107 15.40 28.50;c080 0.00 4.60;c077 0.00 3.60;c009 15.20 21.20,28.42\r\n5OIQ7,YMXV,Bedroom,6,7,Yes,\"A person awakens in a bedroom holding a phone. The person smiles and sneezes, and takes their medicine.\",bed;computer;cup/glass/bottle;desk;medicine;phone;table;water,\"a person gets out of bed and yawns.  the person take a drink of water from a bottle from a desk.;A person is getting up after laying in bed, then they sneeze and smile while they take their medicine with water.\",c146 0.00 6.80;c154 2.60 19.00;c009 15.10 25.50;c015 0.00 8.00;c152 0.50 13.90;c134 0.00 8.70;c106 12.90 27.10;c129 12.90 28.80;c107 24.10 33.00,31.67\r\nC4OY0,2Q9D,Garage,6,6,Yes,A person is running the vacuum in the garage. The person puts the vacuum away and takes out their phone to make a call.,floor;phone;vacuum,A person is vacuuming the floor in their garage before talking on their phone.,c019 23.70 32.00;c137 0.00 11.00;c015 18.70 32.00;c018 16.50 23.40;c127 0.00 11.90,30.54\r\nIU2OZ,Z68L,Home Office / Study (A room in a house used for work),5,7,Yes,A person is watching the desk and playing with the light.,light,A person is plugging in something and looking at it while a light flashes. Then they close it and set it down.,,31.67\r\n1O4ZZ,4OHY,Dining room,7,1,No,A person is standing in the dining room holding a broom.  The person picks up a book off the table and throws it.,book;broom;table,\"The person is holding a broom, tidying up the table and throws a book away.\",c012 0.00 25.50;c098 0.00 32.00;c009 19.30 25.80,31.29\r\n8R5DD,5LWB,Living room,7,6,Yes,A person is putting a blanket onto another person while they are holding a pillow. The second person is asleep and awakens.,blanket;pillow;sofa/couch,A person takes a blanket and uses it to cover another person who is sleeping on a couch.,c071 6.60 17.70;c146 18.00 26.00;c122 0.00 26.00;c070 0.00 17.20,25.08\r\n98NYF,1TZV,Stairs,4,1,No,\"A person awakens in their entryway holding a sandwich. They grab a towel, and run out of the room.\",clothes;doorway;floor;towel,A person is lying on the floor infront of the stairs they get up look around and grab their jacket and run up the stairs and leave.,c146 0.00 15.70;c150 13.60 21.00;c154 10.10 17.30;c124 0.00 7.30;c002 14.80 21.00;c125 4.80 15.00;c097 16.80 21.00;c035 14.90 19.60,20.12\r\nD7D89,6RE8,Living room,4,4,Yes,A person is seen fixing at a picture on their refrigerator.  They grab a glass from the table nearby and take a drink from it.,cabinet;cup;glass;picture;table,\"A person is looking at a picture on a cabinet.  They then walk over to a table, pick up a glass and drink.;A person looks at a picture on a cabinet. They walk to a table, get a glass of water and begin to drink.\",c106 12.60 15.00;c107 13.10 15.00;c110 12.50 15.00;c088 0.00 14.50;c154 0.00 15.00;c086 0.00 15.00,30.46\r\n201W8,WQ8Z,Bathroom,5,7,Yes,A person opens a book in the bathroom. A person closes the book and drinks water out of the sink.,book;glass;sink;water,\"A person stands in a bathroom, reading a book. The person then closes the book, fills a glass with water from the sink, and takes a sip.\",c106 21.50 28.60;c025 12.80 18.00;c026 0.00 29.00;c032 0.00 17.30;c108 16.20 22.00;c027 0.10 5.60,27.54\r\nCIIWP,6RE8,Bathroom,5,7,Yes,\"A person walks into the pantry and throws a bag onto the shelf. The person leaves, closing the door behind them.\",bag;door;shelf,A person walks into the bathroom and closes the door.,c006 14.50 23.20;c141 26.70 31.60;c020 1.10 8.10;c022 2.10 8.30;c024 2.40 8.30;c008 20.10 29.00;c097 13.40 18.30,31.33\r\nPFW9F,9PLL,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is standing in the entryway of the house. Holding a broom and smiling. They use the broom to sweep up as well as move some loose clothing on the floor.,broom;floor,A person is in a hallway sweeping with a broom and pushing along a towel on a floor.  The person is wearing a skirt.;A person is sweeping with a broom and pushes a towel that is on the floor.,c127 11.30 29.80;c098 0.00 37.00;c154 0.00 37.00;c152 6.90 13.50;c102 0.00 37.00,36.33\r\nJLQLC,9PLL,Bathroom,6,7,Yes,A person is holding a camera while they take a picture and then dressing themselves with black clothes.,camera;clothes;phone;picture,A person holds a camera then takes a picture of the wall before dressing.,c087 0.00 11.30;c015 0.00 45.00;c148 15.40 45.00;c016 0.00 16.80;c002 13.90 45.00;c018 0.00 45.00;c000 13.90 45.00,44.12\r\nSFPJ7,YA10,Living room,6,7,Yes,A person is lying on the sofa with a blanket. Then they get up and put some groceries on the coffee table.,bag;blanket;food;groceries;sofa;table,\"A person is sleeping on their sofa with a blanket over them. They get up, put the blanket aside, open a bag with some food and set it all on the table before walking away.;A person is lying on a couch with a blanket they get up get a bag and take some things out and put them on a coffee table and then they walk away.\",c009 13.90 23.20;c021 13.80 20.20;c062 14.10 23.20;c023 13.10 18.50;c122 0.00 12.50;c130 12.90 27.50;c022 18.40 26.30;c063 13.20 27.50;c071 8.20 13.50;c070 0.00 13.30;c072 0.00 10.90;c154 9.50 16.60;c020 13.60 23.50;c146 4.50 11.30,28.71\r\nVSS68,8718,Pantry,6,6,Yes,The person was opening the cabinet after leaving groceries no the table.,box;cabinet;groceries;shelf;table,A person put groceries in the cabinet in the kitchen.  The person then tidied the cabinet.,c130 1.10 8.30;c114 5.60 30.00;c113 0.70 6.10;c081 2.90 11.40;c082 10.10 29.10;c042 2.70 8.40,28.50\r\nZKNCV,YMXV,Closet / Walk-in closet / Spear closet,5,6,Yes,A person is grasping a blanket.  Then a person is closing a pillowcase after a person put a pillow in it.,blanket;pillow,\"A person is folding a blanket, and putting a pillowcase on a pillow.\",c076 20.70 33.00;c070 0.00 21.80;c075 0.00 22.10,32.38\r\nWEAT2,KFGP,Hallway,4,7,Yes,A person is walking down the hallway holding a coffee cup and a laptop and while trying to close it sneezes and drops the cup.,cup;floor;glass;laptop,The person is looking at their laptop walking down a hallway. The person sneezed and dropped the cup.,c107 1.10 23.00;c051 0.30 23.30;c153 17.00 25.20;c126 17.90 23.00;c047 0.00 26.00,25.12\r\nUVEPN,3H6W,Hallway,7,7,Yes,\"A person is in a hallway tidying up a stack of dishes, they then drink some coffee from a desk while carrying the dishes out the room.\",coffee;cup;dish,A person is picking up plates from the living room then drinking a cup of coffee.,c118 2.20 16.80;c106 10.80 17.00;c120 1.70 17.10,23.46\r\nAXYF9,LWUV,Living room,3,7,Yes,A person eating a sandwich next to another person pouring medicine.,camera;food;liquid;sandwich;sofa;television,\"A person is sitting on the sofa looking at a camera, while another person is eating a sandwich.;There's two people here. Both are sitting on the couch. One is eating a sandwich and the other is pouring something.\",c065 2.90 13.70;c067 5.50 20.80;c156 8.50 17.80;c123 0.00 32.00;c132 0.00 10.00,31.38\r\n5F1AW,X5XO,Closet / Walk-in closet / Spear closet,7,7,Yes,A person puts a book down onto the shelf. The person takes out their phone and begins playing with it.,book;phone;shelf,The person puts a book on the shelf then stands in the doorway looking at their phone.,c028 0.00 5.40;c081 0.00 5.40;c016 4.50 32.00;c015 3.60 32.00,30.92\r\nE6IL3,JVLO,Other,6,7,Yes,A person is smiling and closing the book and another person is on the bed.,blanket;book;floor,A person is sitting on the floor reading a magazine while another person sleeps atop a blanket on the floor nearby.;A person is sitting and reading a book while another person lays on blanket.,c025 28.00 32.00;c026 0.00 3.80;c027 0.00 2.70;c032 0.00 3.10;c152 0.00 3.70;c124 0.00 5.10;c125 0.00 3.80;c115 0.00 20.20,31.21\r\nCEQM1,HR43,Kitchen,7,7,Yes,A person is eating as they kick off their shoes. Then the person grasps a broom before leaving.,bag;broom;chips;counter;floor;food;shoe,The person is standing in the kitchen eating chips then kicks off the shoes and then puts the chips down on the counter and then grabs a broom.;A  person is slinging their shoes off and then eating chips in a kitchen before picking up a broom and walking.,c057 2.00 9.10;c098 22.10 28.00;c156 0.00 25.00;c062 20.20 25.30;c063 0.00 28.00;c061 0.00 24.90;c100 21.40 28.00;c126 2.00 9.30;c020 0.00 25.10;c063 0.00 3.10,26.83\r\n406LH,P6LJ,Living room,7,7,Yes,A person stands in the doorway eating a sandwich and then proceeds to walk across the room to a window and looks out.,curtain;dish;door;food;sandwich;shelf;window,\"A person opens a door and stand in the doorway eating food from a dish, they then close the door and go to a window and look out.;A woman walks to a door and opens it, grabs a bowl and eats something, and then walks to the window and opens the curtain.\",c092 21.30 31.10;c065 5.90 17.40;c156 5.70 17.90;c006 13.90 20.10;c008 1.40 9.00;c062 30.00 34.80;c141 1.40 7.50;c118 5.20 34.00;c097 3.00 19.00;c061 0.00 34.00;c081 30.00 35.00,34.17\r\nLURLC,YA10,Laundry room,5,7,Yes,\"A person starts sneezing when fixing a vacuum, then takes a bite out of sandwich\",floor;food;sandwich;vacuum,A person is fixing a vacuum while they are eating a sandwich,c136 0.00 17.90;c065 20.60 27.40;c156 20.60 27.40;c125 0.00 32.00,31.08\r\nET9EE,3VLX,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person runs into the closet, holding a box. The person puts the box onto a shelf.\",box;doorway;shelf,A person runs into a closet with a box they put the box on a top shelf in the closet then they walk out.,c081 6.00 19.30;c042 5.60 19.10;c043 0.80 6.50;c097 1.90 7.00;c040 0.90 11.80,20.17\r\n5C837,XKTB,Home Office / Study (A room in a house used for work),5,7,Yes,A person smiles as they watch the door. The person picks up a book and begins reading it.,book;door;table,\"A person is points at a door, holding and smiling at a book.;A person is sitting at a desk smiling and holding a book pointing at a page in the book.\",c026 12.00 34.00;c152 3.90 9.20;c011 0.00 34.00;c030 11.40 17.90;c029 15.90 30.90;c032 15.70 32.30;c027 10.20 18.90,33.29\r\nR5IQ5,2RTW,Living room,6,6,Yes,One person is smiling while on a phone at a desk. Another person goes by grasping a vacuum.,desk;phone;table;vacuum,\"Person sitting at a desk with a phone in hand having a conversion, another person walks to the door\",c019 0.00 32.00;c011 0.00 32.00;c152 15.60 27.30;c137 0.00 32.00,30.62\r\nNB0S4,2RTW,Recreation room / Man cave,6,6,Yes,One person is tidying up the entryway while another walks by and puts a bag on a shelf in the wardrobe.,bag;box;desk;phone;shelf;table;vacuum,The person takes a bag of chips off a table and rolls them up. They continue to tidy things up on the table while another person puts something on a shelf;A person is tidying up a coffee table. Another person comes in and places an item on a shelf.,c012 0.00 32.00;c042 24.10 30.60;c081 20.90 29.20;c022 6.40 12.70,30.54\r\nDCLLS,8718,Living room,3,5,Yes,A person is grasping a sandwich. They sit on a sofa and eat the sandwich.,food;sandwich;sofa,A person walks to a sofa and sits down. The person eats a sandwich.,c065 11.10 30.00;c067 2.40 30.00;c123 4.90 30.00;c151 3.30 8.90;c156 11.10 30.00;c061 0.00 30.00,29.38\r\nC5KNM,XOIK,Kitchen,6,6,Yes,\"The person turned off the stove and opened the door, seductively laughing and undressing.\",clothes;door;food;jacket;stove,\"A person walks through the doorway, and cooks on the stovetop. Afterwards, the person walks out of the kitchen and takes off a jacket.;A person enters, does something unseen with hands while laughing , then leaves while undressing before facing a doorway.\",c155 25.10 32.50;c097 28.50 37.00;c147 0.20 29.10;c141 29.60 37.00;c002 25.60 36.50;c000 25.60 33.40,36.25\r\nM43KR,YA10,Living room,6,7,Yes,\"A person takes their phone from their pocket, and takes a picture of their food. The person sneezes and drops their phone into the food.\",food;phone;picture;sofa/couch;table,A person is sitting on the couch playing with their phone before dropping it onto a plate of food.,c087 11.10 21.30;c016 6.80 13.90;c154 26.90 32.00;c015 4.80 17.60;c062 0.20 6.50;c011 0.00 32.00;c123 0.00 31.50,30.88\r\nH7DI3,HJJ4,Stairs,5,7,Yes,A person is standing on the stairs holding a pair of shoes. The person is also watching television on a mobile phone.,phone;shoe,A person is playing on their phone while holding shoes and sitting on the stairs.,c015 0.00 22.00;c053 0.00 22.00;c016 0.00 22.00,21.04\r\nK85A7,3531,Other,6,7,Yes,A person is snuggling with a pillow and looking at a laptop.  They begin sneezing.,floor;laptop;pillow,A person sits on the floor looking at a laptop while they hug a pillow in their arms.,c051 0.00 33.00;c078 0.00 33.00;c125 0.00 33.00;c076 0.00 33.00,32.25\r\nO9L1K,C7O9,Bathroom,7,7,Yes,A person sitting on the toilet pulls a laptop from a book bag and the closes it. They put the bag on the ground.,bag;book;laptop,Person sitting on a toilet while grabbing his laptop from his back pack.,c047 10.60 32.00;c048 10.60 22.00;c021 3.30 19.20;c020 0.00 28.70,31.00\r\n8EYST,CCI9,Stairs,3,,No,A person is snuggling with a towel and then opening a book on the stairs.,book;floor,person is reading and sitting in stairway,c032 0.00 33.00;c027 18.00 32.00;c026 0.00 33.00;c125 0.00 33.00,32.00\r\nGVX7E,LTAC,Kitchen,4,6,No,\"A smiling person at the dining room table does homework. The person eats some food, and then drinks some water.\",doorway;food;phone;sandwich;table;towel,\"a person walks through a doorway into a kitchen and eats food and then sneezes and drops a phone.;A person walks through a hallway while carrying a phone, picks up a sandwich from a towel on the table, and eats the sandwich. The person puts some of the sandwich back down on the towel and sneezes, dropping the phone they were carrying.\",c062 35.70 41.00;c156 5.50 30.20;c097 0.00 7.20;c153 25.20 31.40;c065 5.50 30.20;c061 5.30 28.40;c063 4.90 10.90;c015 0.00 41.00,40.29\r\n432NL,JVLO,Kitchen,4,6,Yes,\"One person is pouring medicine from the refrigerator, then another person by the window drinks it.\",food;medicine;refrigerator,A person goes to the fridge and takes out and opens a bottle of medicine. The person then gives the medicine to person #2. Person #2 drinks the medicine.,c128 17.90 30.20;c129 25.10 32.00;c142 13.60 20.30;c143 2.10 7.50;c156 26.60 32.00;c063 4.50 19.20;c061 13.90 32.00,31.46\r\nFIY0S,PKND,Dining room,5,5,Yes,One person was throwing the book. The other was taking out their clothes,book;cabinet;closet;clothes;letters;papers;table,A person picks up books and throws them on a table while another person looks inside and makes tidy a cabinet. the first person stops throwing books and puts one on a separate table.;A person throws mail on a table and then picks it back up while another person stands at an opened closet.,c028 0.00 29.00;c031 0.00 21.20;c114 0.00 32.00;c009 0.00 21.00;c116 22.70 30.70;c115 22.70 30.90,30.71\r\nLJ3AI,L4ZP,Living room,6,7,Yes,A person is sitting on the couch drinking a soda while doing homework. Another person walks into the room and begins to tidy up the clothes that are laying around the room.,clothes;cup;floor;glass;homework;paper;sofa,One person is sitting on a sofa doing homework and drinking for a glass. Another person comes in and picks up clothes off the floor.,c106 7.30 13.60;c123 0.50 7.70;c004 12.80 18.50;c145 18.60 24.40;c000 17.30 28.60;c127 14.50 29.80;c002 15.00 28.10,30.88\r\n2KAWJ,28B0,Dining room,6,6,Yes,A person is drinking from a glass.  Then a person starts running towards the doorway because they forgot they left their keys in the door lock.,chair;cup;door;glass;lanyard;table,\"the person is sitting on a chair at table, drinking from a glass who then gets up, leaves the room, and comes back holding a lanyard of some sort.;A person is sitting in the kitchen and eating food. They stand up and run out of the room through the doorway.\",c097 17.00 22.10;c106 0.90 18.20;c150 16.00 21.90;c154 15.00 20.00;c011 0.00 19.50;c009 25.70 30.60;c151 27.80 35.00;c059 29.00 33.60,33.96\r\nKI0YZ,HR43,Bedroom,6,7,Yes,A person is in their bedroom lying on a pillow while laughing at a picture they took on their camera. They get up while grasping the camera in their left hand.,bed;phone,\"A person throws himself of bed and adjust himself to lean up to use a phone, interacts with cell phone then leans up;A person is laying on a bed holding a phone, then they start playing with the phone and laughing\",c149 6.70 35.00;c016 2.80 35.00;c134 0.00 35.00;c152 6.00 35.00,34.12\r\n7B8EQ,H8N1,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person is undressing and then dressing in different clothes, then smiling and taking a picture with their phone in a Closet / Walk-in closet / Spear closet.\",clothes;mirror;phone;picture,\"A person is looking in the mirror, and then grabs a cellphone to take a picture of themselves with.\",c016 15.70 32.40;c096 10.70 33.00;c015 14.70 33.00;c018 14.40 19.70;c148 3.30 13.90;c087 16.50 33.00,32.08\r\nMY9UC,5LWB,Kitchen,6,6,Yes,A person is standing in a kitchen washing dishes.  Another person sits at a table in the kitchen watching a television. The first person opens the refrigerator.,cup;dish;kitchen;remote;sponge;table;television;water,\"A person is in the kitchen washing dishes.  A different person is sitting on the kitchen table, watching t.v.;A person is washing dishes using a sponge and pouring water for the dishes with a cup.  Another person uses a remote control.\",c132 19.90 31.00;c011 18.60 31.00;c121 0.00 6.10;c010 18.60 31.00;c118 0.00 6.10;c119 0.00 5.00,30.00\r\nEYV38,9OK1,Bedroom,6,6,Yes,\"A person is lying under a blanket just awakening, and another is sitting on the edge of the bed putting on shoes.\",bed;blanket;clothes;shoe,A person is putting shoes on while another person lays in bed.,c055 2.20 20.60;c134 0.00 24.40;c072 0.00 23.90;c146 18.40 23.60;c135 0.50 21.00;c151 16.40 22.00;c133 19.30 25.00;c001 0.00 8.00;c154 16.00 21.90,23.83\r\n4HFN2,HR43,Kitchen,5,6,Yes,\"A person is using a vacuum. They find a box by the door, and close it. Then they begin cooking.\",box;door;food;oven;vacuum,A person uses a vacuum and then puts a pot in an oven.,c006 31.80 38.00;c137 10.90 25.60;c147 27.50 38.00;c039 19.00 26.70,36.88\r\nN0N4I,HJJ4,Kitchen,3,7,Yes,\"A person is cooking on the stove. They open a cabinet, take out some medicine, and drink it.\",bowl;cabinet;cup/glass/bottle;food;medicine;shelf;spatula,He is stirring then he opens a cupboard and gets cough medicine.,c112 20.20 25.00;c147 0.00 8.70;c113 5.40 12.50;c128 7.40 17.10;c129 9.60 19.40;c061 0.00 8.40;c106 9.40 21.20;c081 18.90 24.50;c062 2.20 8.40,23.75\r\nJNFCE,KQI6,Living room,5,5,Yes,Person grasping the doorknob while playing with his/her towel.,doorknob;towel,\"the person walking in the room, having a cloth in hand, playing with the cloth and closed the door\",c140 19.40 27.70;c033 0.00 32.00;c035 1.80 6.40;c038 18.20 27.70;c036 29.00 32.00,31.25\r\nBYMO6,KFGP,Home Office / Study (A room in a house used for work),5,1,No,A person watches a video on the laptop while they try to fix their camera. The person tosses the camera onto the sofa.,chair;laptop;phone;tool,\"The person is sitting down looking at a computer. They are also messing with some small object, which they end up throwing on a couch.;a person fixing a phone with a screwdriver while watching a video on their laptop, tosses the tool away.\",c051 0.00 4.40;c017 19.30 24.80;c015 0.00 24.50;c016 0.00 24.30,25.58\r\nYKT8I,QOQ4,Bathroom,7,7,Yes,\"A person opens the door to the bathroom and walks in, carrying a pair of shoes. The person sets the shoes down and leaves.\",door;shoe;toilet,\"A person opens the door, walks in, puts a pair of shoes on the floor next to the toilet, then leaves.\",c008 0.00 4.70;c054 2.60 7.60;c053 0.00 7.80;c097 0.00 6.10,10.29\r\nZAJYX,8718,Kitchen,5,7,Yes,\"A person is cooking food on a stove, then tidying the kitchen and finally wiping down a cabinet in a kitchen.\",cabinet;food;stove;towel,\"A person is cooking some food on a stove, takes it to a sink. The person grabs a towel and wets it in the sink, then begins wiping down the cabinets.\",c114 14.60 30.00;c061 6.90 14.90;c062 7.00 18.60;c063 7.20 18.40;c147 0.00 11.20;c035 11.20 18.70;c038 15.60 30.00,29.46\r\nJL8XT,LTAC,Bedroom,6,7,Yes,A person is watching the phone and then working on cleaning the glass mirror in the bedroom.,closet/cabinet;mirror;phone;towel,A person plays with phone then cleans a mirror with a towel.;A person is looking at their phone while standing in front of a mirror. The person then cleans the mirror with a towel.,c015 0.00 34.00;c095 24.10 34.00;c033 0.00 34.00;c038 24.10 34.00;c016 0.00 27.30;c114 24.60 34.00,32.62\r\n5NJRH,CO1W,Living room,6,7,Yes,A person stands in the living room with a towel around their shoulders and laughs at a picture.,picture;towel,A person is standing by a couch looking at a picture holding a towel around their neck,c085 2.40 30.10;c033 0.00 31.00;c088 0.00 31.00,30.25\r\nFVYSO,OUKK,Bedroom,3,7,Yes,A person runs into the closet and puts a bottle of medicine on the shelf.  The person fixes a crooked mirror on the wall and sneezes.,glass;medicine;mirror;shelf;wall,looking in the closey,c093 11.40 18.90;c081 2.30 13.70;c082 2.30 13.70,22.29\r\nCDNNO,ZAWX,Bathroom,6,6,Yes,The person was talking on the phone while the person was tidying up. The person saw their reflection in the glass and smiled.,bottles;glass;mirror;phone;shampoo;shelf;shower,\"A person is standing in the shower talking on the phone. Using one hand to talk and the other to tidy up a shelf, the person finally turns and looks at a small mirror.;A person is in the shower talking on the phone and looking in the mirror.\",c019 0.00 31.00;c096 21.40 31.00;c082 10.90 20.20,30.21\r\nRVBQC,GE1O,Dining room,6,5,Yes,A person is walking with coffee and pours some on their clothes on accident.,cup,A person is walking with a coffee cup and spills some on their shirt.;Someone walks into the kitchen with a cup in their hands.,c107 4.90 14.50,14.21\r\nJVXMI,QOQ4,Bedroom,7,7,Yes,A person takes out their phone and begins laughing at something. The person uses the camera on their phone to take a picture of something.,phone;picture,Person in bedroom takes out phone and looks at it and takes a picture.,c087 9.70 19.00;c015 0.10 20.00;c152 1.90 11.00;c018 0.10 4.70;c016 1.90 20.00,19.25\r\nLH6LE,HR43,Kitchen,6,7,Yes,A person is in the kitchen and is seen eating a paper towel.  They are then seen holding some dishes then putting them away in the cabinet.,cabinet;dish;food;sandwich;shelf;towel,\"A person opens a cabinet, and starts to put away dishes. A person then begins eating a sandwich.;Person walks into a kitchen eating a sandwich. Person opens a cabinet and places a dish on a shelf. Person closes cabinet.\",c118 5.40 15.30;c033 0.00 31.00;c112 21.60 26.90;c119 15.20 22.00;c113 3.50 8.50;c081 8.70 15.20;c156 10.90 31.00;c120 5.60 12.20,29.58\r\nKQYR0,WQ8Z,Home Office / Study (A room in a house used for work),6,7,Yes,A person fixes some clothes on a desk then they takes some homework off a shelf.,book;clothes;desk;paper;shelf;table,\"A person picks up some clothes, folds them and puts them on a table. They pick up a book from a shelf and place it on the desk, then take the clothes and start walking away.;A person is folding clothes and picks up a book puts it on a desk and then picks up clothes and walks away\",c116 17.00 23.40;c009 6.90 11.90;c028 17.00 23.40;c009 13.00 17.40;c002 19.50 25.00;c082 0.00 23.70;c026 16.30 23.10;c030 16.40 20.90;c004 0.90 15.90,23.88\r\nNYA5N,BYF9,Home Office / Study (A room in a house used for work),4,7,Yes,\"A person stands in a home office, looking at pictures on their camera. The person begins laughing.\",phone,A person is standing and laughing while looking at a phone they are holding in their hands.;A person is laughing while looking at a phone.,c149 0.00 13.10;c015 0.00 17.00;c016 0.00 17.00,16.29\r\n0PCAF,Z68L,Bathroom,6,6,Yes,A person is walking up to the bathroom sink.  The person then starts smiling while looking at the mirror.,hair;mirror,A person is fixing hair in a mirror.,c096 0.00 33.70;c152 0.80 11.50;c144 6.72 34.00,32.62\r\nBIZ2R,PKND,Closet / Walk-in closet / Spear closet,7,7,Yes,\"In the closet, a person holds a mirror while another person is working on the door.\",closet;door;mirror;screwdriver;wardrobe,Some people are standing near a wardrobe. One person is trying to repair the wardrobe doors with a screwdriver. The other person is looking at themselves in a mirror.,c096 0.00 32.00;c007 0.90 13.60;c113 0.00 5.50;c152 21.40 32.00;c112 16.30 27.00;c093 0.00 32.00,30.50\r\nCKUYC,OUKK,Recreation room / Man cave,7,7,Yes,A person is sitting on a chair in the rec room playing a video game with a blanket across their lap.  The person puts the controller on the desk and picks up a towel off the shelf to wipe their forehead.,blanket;chair;game;sofa;table;towel;video,\"A person is sitting down on a sofa chair with a blanket on their lap and playing a video game in the living room.;A person sits down, with a blanket and controller. Then wipe their brow with a towel\",c059 1.00 31.00;c070 0.40 31.00;c151 0.00 5.60;c009 19.30 24.10;c073 0.20 7.80;c071 0.20 7.80;c072 3.80 31.00,29.75\r\nN2ZB3,18IT,Dining room,3,6,Yes,A person pours water into a glass. Another person runs through the room with a blanket over their head.,blanket;dish;doorway;glass;water,\"A person walks through a room wearing a blanket, while another person stands at a table pouring water.\",c070 0.00 5.00;c150 0.00 5.00;c118 0.00 5.00;c097 0.00 3.40,3.58\r\n7FVMQ,XXN8,Bedroom,4,7,Yes,A person is sitting on their bed taking a picture out of its frame.,bed;picture,A PERSON IS ATTEMPTING TO DE HOOK A PICTURE FROM A PICTURE FRAME AND IS TAKING OUT THE BACK OF A PICTURE FRAME.,c084 0.00 32.00,30.88\r\n6E4L5,YA10,Garage,7,6,Yes,\"A person stands by the door, eating a sandwich. The person takes out a camera and takes a picture of their half-eaten sandwich.\",camera;cell phone;food;picture;sandwich,This person is standing in the garage and eating food. Person then takes out what appears to be a phone and takes a picture of what he is eating.;A person stands in a garage eating a sandwich and then takes pictures.,c065 0.00 6.50;c156 6.40 15.80;c061 7.70 18.90;c087 10.80 24.60;c067 0.00 33.00;c018 11.80 16.80;c016 13.30 33.00;c015 12.60 33.00,32.50\r\nE40VQ,18IT,Bedroom,6,6,Yes,The person was drinking while doing homework. the other person was grasping the shelf.,chair;computer;doorway;homework;paper;shelf;table,\"One person walks into the room and cleans up some shelves, while another person is doing work at a desk on a computer.\",c145 5.80 21.50;c082 17.50 36.20;c014 30.50 44.20;c011 0.00 50.00;c059 0.00 50.00;c097 0.00 2.70,48.75\r\nY9JWG,2Q9D,Kitchen,7,7,Yes,\"A person is working in the kitchen, washing dishes at the sink while looking out the window.\",dish;sink;towel;window,A man is washing dishes in the kitchen by the window and a dog walks in.,c121 0.00 12.30;c038 0.00 12.60;c119 8.60 14.90;c092 1.50 8.00;c120 8.80 14.70;c118 7.10 16.30,30.67\r\nOXPD4,L4ZP,Bedroom,6,7,Yes,A person is watching a window while another person is tidying a cabinet.,cabinet;floor;television;window,One person is looking out their window while another person searches for something in a cabinet.,c092 0.00 25.10;c132 2.00 6.70;c125 0.00 33.00,32.08\r\nHSPTH,Z755,Dining room,4,5,Yes,A person is holding the door open while another person in leaving the dining room with a television.,door,The person opens the door for another person who walks into the room while the first person proceeded to close the door.,c006 1.60 5.00;c008 0.00 3.90;c141 0.00 5.00;c097 0.00 5.00,4.25\r\nIV7IZ,UTMU,Basement (A room below the ground floor),4,6,Yes,\"One person runs into the basement holding a box, then opens the box, which is full of shoes.\",box;shoe,A person runs in holding a box with shoes inside.,c053 6.90 22.70;c040 1.90 8.90;c150 2.00 8.80;c041 4.60 12.10,22.67\r\nPNC99,UTMU,Laundry room,4,7,Yes,a person is placing groceries and food in a washer and dryer while drinking a glass of wine.  afterwards they lie on the ground and sing row row row your boat.,box;cup;door;dryer;floor;glass;washer,\"A person is putting books in washer and dryer and then taking a sip of wine, they then begin to lay down on the floor.\",c106 12.40 23.10;c109 2.20 25.60;c042 0.10 13.20;c040 0.10 13.20;c125 24.70 39.00;c110 10.70 16.60;c006 5.50 10.70;c008 2.80 8.20;c107 11.80 24.90,38.38\r\n5HQJ8,ZAWX,Home Office / Study (A room in a house used for work),5,7,Yes,A person in their home office is fixing their clothes because they look a little messy. They begin sneezing when they look up at the light.,clothes;light,A person is folding clothes and sneezing as they look up at a light.,c000 0.00 21.60;c001 13.30 23.40;c153 19.40 31.00;c004 0.00 23.50,30.04\r\nI0IW5,5LWB,Living room,5,2,Yes,A person is sitting in the study reading a book.  Another person walks in eating a sandwich and puts the sandwich on the table.,book;chair;dish;doorway;sandwich;sofa/couch;table,\"A boy comes into the room eating a sandwich, puts it on the table, and then, sits on the couch and watches TV.\",c009 5.50 10.30;c068 5.50 10.30;c151 13.30 18.60;c097 2.30 7.70;c118 2.20 11.70;c026 0.00 19.00;c011 0.00 19.00;c065 2.40 10.30;c059 0.00 19.00;c119 5.70 13.20;c123 13.00 19.00;c032 0.00 19.00,17.54\r\nVB1HT,P6LJ,Kitchen,5,7,Yes,\"A person opens the door to the pantry and stands there for a moment, smiling. The person takes something from the cabinet, and closes the door.\",cabinet;door;hair;something,A person in the kitchen opens a door and looks outside. They then close the door.,c006 26.20 35.20;c008 5.70 30.40;c113 3.40 13.90;c141 2.80 10.40;c112 25.30 33.40;c144 2.50 9.40,35.88\r\nBEC09,0KZ7,Kitchen,7,7,Yes,A person in a kitchen is cooking food and then opening a box.,box;food;pot;stove,\"The person is standing at the stovr stirring a pot on top of the stove, The person turns to the left and opens a box on the counter then turns back to the stove to continue to stir the pot;Person standing at the stove stirring a pot, walks over to the counter to look in a box, and then back to the stove.\",c041 10.90 19.80;c147 0.00 16.00;c147 15.80 27.00;c062 12.40 19.40,26.21\r\nZDK40,2RTW,Living room,7,7,Yes,\"A person is kneeling and fixing the doorknob. Then, smiling, the person pulls a towel from a box on the floor and wipes their face with it.\",doorknob;floor;refrigerator;towel,\"A person is inside of a main room picking a door from the inside. He picks the lock successfully, opens the door a few inches and promptly shuts it. They then wipe the brow of their forehead with a towel.\",c141 0.00 20.80;c125 0.00 31.00;c140 0.00 17.60,30.29\r\nPVC93,9Y7F,Laundry room,5,6,Yes,\"A person is lying on the laundry room floor, doing homework. Another person stands in the doorway eating a sandwich.\",clothes;doorway;floor;food;homework;paper;sandwich,\"Two people are in a bedroom. One is laying on the ground doing homework, while the other stands in the doorway eating a sandwich.\",c124 0.00 31.00;c065 0.00 31.00;c145 0.00 31.00;c156 0.00 31.00;c061 0.00 31.00,30.38\r\nS1W8H,H8N1,Pantry,5,6,Yes,\"A person runs into the pantry and puts groceries onto the shelf.  The person fixes the cans of food so they're straight, then leaves the room.\",cabinet;counter;food;groceries;shelf,A person opens a cabinet in their kitchen and picks up some stuff from the counter and arranges them in the cabinet.;A person places food in a cabinet before leaving.,c081 5.60 27.90;c082 5.60 27.90;c114 5.60 27.90;c130 1.90 28.40;c113 1.20 6.60;c112 24.10 29.90;c062 2.60 28.40,30.75\r\n0GR11,XXN8,Kitchen,7,7,Yes,A person is playing a game on their laptop. They take a break to bite their sandwich.,food;game;laptop;sandwich,Person is working on a laptop computer. They close the laptop then eat a sandwich.,c046 17.80 24.70;c047 0.00 25.30;c052 0.00 25.60;c065 21.40 32.00;c069 20.20 26.40;c156 20.80 32.00;c063 21.40 32.00;c049 19.30 25.30;c067 22.40 32.00;c061 22.40 32.00,30.92\r\n58VZI,Z68L,Recreation room / Man cave,6,7,Yes,\"A person is sitting in a chair playing video games.  The person grabs a glass of water off the shelf and takes a drink, then grabs a pillow off the floor and puts it behind their back.\",bench;chair;cup;dish;floor;game;glass;pillow;television;tv;video;water,\"A person is playing a video game in front of a TV, while sitting on the bench. The person stops to drink some water, puts a pillow on the bench, and then walks away.;A person is sitting on a chair and playing a video game on a television, then drinking a glass of water and taking a pillow from the floor.\",c059 0.00 20.10;c106 0.80 14.00;c154 16.10 21.90;c079 16.10 21.20;c109 9.20 16.00;c119 9.20 16.00;c132 0.00 20.30;c077 16.50 23.40;c110 0.60 15.60;c107 0.10 15.80,34.79\r\n1SCZE,1OHU,Laundry room,6,6,Yes,A person is putting a bag in the wardrobe.  The person goes to the washer to start washing clothes.,bag;clothes;door;light;washing machine,\"a person grabs a bag and walks into the laundry room;A person picks up a bag and walks into the laundry room. They turn on the light, open the other door, and open the washing machine. They then pick up something from a shelf, looks at it, and sits it back down.\",c020 0.00 12.00;c022 8.00 12.00;c023 0.00 3.00;c104 7.00 11.00;c008 12.00 17.00,24.83\r\n1RNK6,3H6W,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is watching something out the window, then running with a box.\",box;closet/cabinet;shelf;window,\"A person is looking out a window, they then go to closet and take out a box and run out of the room.\",c040 8.00 14.20;c043 7.20 12.50;c092 0.00 5.00;c150 9.20 14.20;c114 6.70 14.00;c082 6.70 14.00,18.50\r\nLWEPB,6RE8,Bedroom,7,7,Yes,A person is sitting on a couch and holding a pillow. They watch a video on their phone and stand up and leave.,bed;chair;door;phone;pillow;sofa,\"A person is sitting on a chair with a pillow while looking at a phone. They stand up, put the pillow on a bed, open a door, leave and close the door.;A person is sitting down on a chair with a pillow on their lap and playing on their phone, they then set their pillow on their bed before walking away.\",c123 0.00 13.90;c077 10.10 15.30;c016 0.00 12.30;c076 8.40 15.40;c015 0.00 15.30;c154 9.90 16.80;c059 0.00 13.90;c006 20.60 26.10;c097 19.40 26.10;c141 18.70 26.30;c008 18.70 26.30;c017 11.40 16.60,30.12\r\nQJIAV,D0RU,Kitchen,6,6,Yes,\"A person is eating food at the kitchen table. They are smiling at the comedy movie that is on the television, as well.\",counter;food;television;tv,A person is standing at a counter eating and watching TV.,c132 0.00 33.00;c156 0.00 7.30;c152 2.50 9.40;c131 13.50 24.70;c061 14.10 24.70,32.17\r\nNHUV1,ZSRZ,Recreation room / Man cave,5,7,Yes,\"A person is in the recreation room, opening a bag.  They pull out a camera and start fixing it.\",bag;batteries;camera;chair;phone,\"person is sitting in chair holding a bag, taking a camera out of the bag and putting batteries in it.;A person is sitting in a chair opening a bag taking the phone out of the bag and then fixing the phone.\",c021 0.00 3.10;c016 5.40 19.00;c059 0.00 19.00;c018 0.00 7.10;c015 2.20 19.00,17.75\r\nNZX0U,ENC8,Kitchen,6,7,Yes,A person is cooking on the stove then walks toward the refrigerator.,cup;food;pot;sink;stove,A person walks into the kitchen and puts something on the stove then decides to leave.;A person is walking into the kitchen and cooking some food on the stove. The person grabs a cup and pours it out in the sink. The person walks out of the kitchen into the other room.,c147 3.90 13.40,31.50\r\nND3HH,LTAC,Stairs,5,5,Yes,A person is running down the stairs while smiling. They pick up their shoes which are by the doorway.,stairs,A person is walking down the stairs they pick something up at the bottom of the stairs.;A person is walking down the stairs when they pick up an object from the floor.,,30.50\r\nCGLK6,18IT,Bathroom,5,6,Yes,A person is playing on the phone while another person is tidying the towel.,phone;toilet;towel,A person is sitting the toilet playing with a phone. Another person is folding a towel in the bathroom with them.,c015 0.00 17.00;c016 0.00 17.00;c033 0.00 17.00;c037 0.00 17.00,15.79\r\n1W28T,D0RU,Recreation room / Man cave,6,7,Yes,A person is dressing in front of a window and sneezes on it.  The person walks away out the door.,clothes;door;hair;shirt,A person dresses by putting a shirt on then the person sneezes. The person then leaves through the doorway.;A person is putting on a shirt and sneezing they begin to self groom before walking out the door.,c148 4.50 12.80;c001 4.90 12.80;c097 19.20 24.90;c153 8.80 14.20;c144 16.80 21.40,30.71\r\nZ6ZYF,P6LJ,Kitchen,5,5,Yes,The person threw the dishes in the sink after the person was done eating a sandwich while doing homework in the recreation room.,chair;counter;dish;food;homework;paper/notebook;plate;sandwich;sink;table,\"A person runs across the room and sits down at a table and writes something. Afterwards, the person takes a dish from the table and places it on the counter in the kitchen.;A person is sitting at a table, eating something. The person stands up and carries the dish to the kitchen and outs it in the sink.\",c156 14.50 23.20;c059 2.40 23.00;c150 0.00 7.00;c119 21.60 29.10;c151 1.00 7.30;c011 2.20 26.40;c009 23.00 29.60;c154 0.00 4.00;c012 3.00 21.00;c120 18.00 23.00;c118 19.00 26.00;c145 7.40 22.10,30.25\r\n8VRJP,A8P9,Hallway,7,7,Yes,A person is walking down the hallway playing with their camera. The door at the end of the hall begins to open.,door,A person is standing in a hallway while a door slowly opens and the person shifts his gaze back and forth from the door.,,15.17\r\nGNNAE,XXN8,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is tidying up the things on the table. Then, smiling, the person sips from their mug of coffee.\",coffee;cup;table,A person is sitting in a chair working at a table and drinking from a cup.,c106 12.70 18.50;c009 0.70 14.70;c011 0.00 27.30;c107 10.70 20.50;c152 22.90 29.10;c014 0.00 29.80,29.42\r\nUZRQD,QB52,Basement (A room below the ground floor),4,5,Yes,\"A person plays with their camera on a fold up bed. The person checks their watch and jumps up, grabbing their homework and running out.\",bed;camera;homework;paper;phone;picture,\"A person is sitting on a bed taking pictures with their phone. They put the phone on a table, pick up a clipboard and leave.\",c117 22.90 29.80;c135 0.00 27.30;c154 23.30 28.60;c087 5.90 23.20;c017 20.30 26.90;c015 0.00 25.00;c016 0.80 23.20,30.88\r\nL218P,PO5L,Closet / Walk-in closet / Spear closet,5,6,Yes,A person throws a bag into the cabinet. The person laughs.,bag;box;closet/cabinet;doorway;floor;towel,\"A person throws a bag into a box and laughs.;A person walking into a room, throwing a bag on the floor, then sneezing.\",c024 3.00 8.00;c149 10.00 17.00;c127 7.50 12.80;c097 2.60 7.50;c020 1.80 8.20;c022 1.00 9.70;c114 5.50 13.30;c036 1.00 9.70,21.58\r\nSEDKM,PKND,Hallway,6,1,No,One person with hair in a towel laughs and puts a phone on a small table with a picture on it.,book;doorway;phone;picture;table;towel,\"A person, with a towel on their shoulder is holding a phone and laughing at a picture. The person sets the phone down and walks away. The person returns picks up the phone and laughs some more.\",c033 19.30 25.20;c009 7.40 12.80;c017 7.40 12.80;c149 0.50 6.50;c085 0.50 6.50;c097 10.90 16.20;c032 0.00 13.30;c029 24.30 33.00;c026 0.00 12.30,31.79\r\nC7P86,PKND,Laundry room,6,6,Yes,A person undresses and then picks up a book. Another person walks into the room holding a cup of coffee.,book;clothes;coffee;cup;shirt,A man takes his shirt off. Another woman comes in and drinks coffee. The man is reading while standing.,c107 10.80 32.00;c030 8.80 17.60;c106 11.80 32.00;c027 8.80 17.20;c032 8.70 32.00;c155 0.00 13.10;c002 4.80 13.30;c026 8.70 32.00,30.92\r\n4ZRHH,70CN,Bedroom,5,6,Yes,The person was in the doorway looking at their bed thinking of maybe eating before the person goes to sleep. The person was tired from working.,bag;bed;food,\"A person is standing in a bedroom with a bag in their hand. After looking around, the person puts the bag on the bed next to a pillow.;A person is standing in a bedroom and taking some food from a bag, they then set the bag on the bed.\",c020 0.00 30.30;c022 25.50 31.10;c061 0.00 30.30;c062 25.50 31.10,31.96\r\nP76PG,4I2W,Kitchen,7,6,Yes,A person is sitting on the sofa looking out the window while holding a pillow.,chair;pillow;window,This person is sitting down holding a pillow while looking out a window.;A person is sitting in a chair with a pillow in their lap looking out a window.,c076 0.00 10.80;c092 0.00 38.00;c059 0.00 38.00,36.58\r\nY5CF6,XARO,Other,6,7,Yes,A person holding a blanket is laughing in the doorway.,blanket;doorway;sunglasses;towel,\"A person standing in a doorway, with a blanket draped over one arm, puts on a pair of sunglasses and continues to stand in the doorway.\",c070 0.00 32.00;c152 8.30 32.00;c033 0.00 32.00,30.71\r\nB4GM6,BYF9,Stairs,7,7,Yes,A person is standing on some stairs taking off their shoes.  Then a person is throwing shoes down to the bottom of the stairs.,floor;hair;shoe;stairs,A person is standing on a stair in the stair case and removes their shoes and throws the shoes down to the bottom of the stairs.,c058 2.60 11.60;c054 2.60 7.50;c144 12.00 17.00;c053 2.30 6.80;c057 0.00 6.50;c126 2.60 7.50,16.12\r\n1HL2K,M80J,Bedroom,6,7,Yes,\"A person is sitting next to a window, then grasps a shoe out of bag.\",bag;clothes;shoe;window,\"A person sitting looking out the window, grabs a bag and takes out shoes then goes back to looking out the window.\",c092 0.00 6.00;c056 6.50 16.50;c020 1.40 26.70;c021 1.70 11.70;c002 22.30 31.00,29.92\r\nOUAIS,Z68L,Home Office / Study (A room in a house used for work),4,5,Yes,\"A person in their home office is lying down by the door. They get up and start dressing by putting on a sweater, and then opening the door and leaving.\",clothes;door;floor;jacket;pillow,\"A person is lying on the floor with their head on a pillow. The person puts on a jacket, throws the pillow and then gets up and leaves the room.;This person is laying on the floor, gets up and puts on a jacket, throws a pillow across the floor, and leaves the room.\",c008 31.20 36.70;c154 25.70 32.70;c124 0.00 13.20;c080 23.10 29.00;c148 11.90 26.40;c000 11.30 18.50;c146 4.60 15.10;c097 29.50 38.00;c002 11.70 20.00,37.42\r\nHOI6L,KQI6,Living room,7,6,Yes,A person throws the phone to another person.  The other person grasps it before hitting the doorway.,bed;bench;door;phone,\"Two people are sitting on a bed looking at a cell phone, one person throws the cell phone at the other. The person with the cell phone gets up and walks out of the room;Person #1 is playing with a phone sitting on a bench next to person #2. They then threw the phone at person #2 who took the phone and opened the door to walk out of the room.\",c097 28.50 33.00;c016 0.00 28.00;c154 22.40 28.00;c008 25.90 31.20;c015 0.00 23.00;c135 0.00 27.00,31.71\r\nNVBBD,YMXV,Bedroom,6,5,Yes,A person is seen grasping a doorknob. They open the door and start putting shoes on while sitting down.,chair;door;shoe,A person opens a door by grasping a doorknob and sits in a chair and puts on a shoe.;A person opens up a door and then sits on a chair and puts his shoes on.,c008 0.00 6.50;c141 0.00 7.30;c055 19.10 32.00;c151 3.60 17.30;c059 12.80 32.00;c054 10.50 17.50,31.17\r\n9I42K,2RTW,Kitchen,6,6,Yes,A person stands in the doorway of the pantry while eating a sandwich. The person opens their phone to check something.,food;phone;sandwich,A person is eating a sandwich and playing with their phone.,c065 0.00 32.00;c015 6.00 32.00;c016 6.30 32.00;c156 0.00 32.00;c061 0.00 32.00,30.58\r\nITODQ,FNK4,Dining room,6,5,Yes,\"A person is standing with their hand on the back of a chair. Laughing, the person walks to the table and picks up a blanket off it.\",blanket;chair;hand;table,\"Person is laughing then, grabs blanket of table and folds it and walks away holding blanket.;A person grasps a chair with a hand and begins laughing. The person then grasps a blanket off a table and walks away.\",c070 4.30 30.70;c073 3.70 9.50;c075 3.30 26.10;c149 0.00 6.30;c012 4.90 28.30;c009 4.90 28.30;c152 0.00 6.40,30.54\r\nSAFT3,YMXV,Home Office / Study (A room in a house used for work),3,2,No,\"A person starts out putting their laptop away.  They reach above the laptop, taking down a family picture and look at it.\",chair;desk;laptop;mouse;picture;table,A person walks across the room to their desk. They sit down in the chair and start looking at pictures on their laptop while using the computer mouse.;A person sits in a chair and works on a laptop on a desk.,c051 3.30 32.00;c052 3.60 32.00;c059 2.80 10.00;c014 5.20 32.00;c088 5.30 32.00,31.12\r\nAQ0CP,YMXV,Laundry room,6,6,Yes,A person is sneezing on a doorknob and then closing a door in a laundry room.,closet/cabinet;door,\"A person is looking through a doorway, sneezing. The person then closes the door, holding onto the doorknob. There are clothes hanging up nearby.\",c141 16.30 32.00;c006 14.90 26.60;c113 0.00 3.40;c008 0.00 4.00,30.88\r\n2QWGI,DJ17,Kitchen,6,6,Yes,A person was pouring some food into their bowl. Another was putting up a glass mirror,dish;food;glass;mirror;shelf,One person is looking in a glass mirror and another is taking food off a shelf.;A person is mixing something in a bowl while another person helps,c081 2.60 11.30;c118 1.60 23.50;c119 10.90 15.40,34.29\r\nAK1LN,WQ8Z,Pantry,5,7,Yes,A person is tidying the boxes of food on the shelf and then pouring cleaner into a towel and wiping down the door of the pantry.,box;closet/cabinet;door;food;shelf;towel,person in kitchen wiping cupboard,c062 0.30 9.90;c008 0.00 39.00;c082 0.00 17.50;c038 20.70 35.40;c114 0.00 36.00;c112 32.20 37.10,37.75\r\nX8A6H,UTMU,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person awakens on the floor of the closet, on top of their homework. The person puts the homework on the shelf and laughs.\",floor;homework;paper;shelf,\"The person is sleeping in a closet, they wake up and get a notebook.  They place the notebook on a shelf and walk out.\",c081 15.20 24.00;c116 15.20 24.20;c124 0.00 5.50;c146 1.20 7.80;c115 10.00 23.90;c154 15.10 28.40;c117 10.20 23.30;c125 0.00 17.00,28.21\r\nI20II,WG9D,Recreation room / Man cave,3,5,Yes,\"A person is lying down on their couch, snuggling with their blanket. They sit up and pick up a sandwich from the table in front of them.\",blanket;food;sandwich;sofa;table,A person is lying on a couch under a blanket and then sits up and reaches for a sandwich.,c067 3.80 7.00;c122 0.00 6.10;c072 0.00 6.20;c069 3.60 7.00;c061 3.90 7.00;c146 0.00 7.00,5.88\r\nO95PG,3531,Basement (A room below the ground floor),7,7,Yes,\"A person is grasping an object, then putting it down and leaving it on a shelf, then the person is grasping their clothes and partially undressing.\",clothes;shelf,A person places an object onto a shelf. They grab some clothes off a chair and undress.,c081 0.50 7.70;c002 5.50 19.30;c155 17.30 32.00;c000 5.70 32.00,31.38\r\nM2DD1,S053,Home Office / Study (A room in a house used for work),6,6,Yes,A person is laughing and leaving a book on the desk.,book;chair;desk;table,\"A person is sitting a desk reading a book. The person starts laughing, closes the book, gets up, and pushes in the chair before walking away.;A person is sitting at a table reading a book. The person smiles while reading.\",c032 0.00 30.70;c149 25.00 31.30;c152 25.00 31.30;c011 0.00 30.20;c154 26.70 32.00;c059 0.00 31.00;c025 21.00 27.40;c014 0.00 30.70,31.62\r\nCK5SW,0KZ7,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is sneezing while they open the door to the entryway. Then they are grasping a pillow they pick up off the floor.,door;floor;pillow,\"Person standing in entry way begins to open the door when starts to sneeze, and then picks up a pillow off the floor.\",c076 14.30 24.00;c008 0.30 13.30;c153 0.00 14.10;c079 12.00 18.20,23.00\r\n2LCLG,9Y7F,Bedroom,4,5,Yes,One person is leaving the bag and walking with a book to the stairs,bag;bed;book;doorway;hair,\"A person is getting a bag off the bed. A person then takes out a book grabs it and goes up the stairs.;A person picks up a bag and throws the book from it on to a bed.  They pick up the book and leave the room, walking up a flight of stairs with it.\",c026 19.10 32.00;c031 12.10 17.20;c020 3.30 22.50;c024 18.20 23.00;c030 9.50 20.00;c021 2.00 16.00;c097 20.80 26.80;c115 19.70 32.00;c144 20.50 26.10;c117 11.00 16.40,31.00\r\n2ODLD,0KZ7,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is sitting in the walk in closet undressing, then throws their shoes out the door.\",chair;clothes;door;shirt;shoe,\"A person is sitting in a chair, and taking off a shirt. A person then picks up shoes and throws them;A person is sitting in a closet taking off clothes, they then throw a pair of shoes out the door.\",c058 9.70 22.30;c001 6.70 13.00;c155 0.00 10.30;c059 0.00 23.00;c000 5.80 12.40;c003 7.20 13.00;c054 9.50 20.60;c053 9.90 19.80,21.54\r\n7B3J0,KFGP,Hallway,4,6,Yes,\"A person is walking down the hallway, holding a box that will be put away in the cabinet. A person then realizes the door is broken and then proceeds to fix it.\",box;cabinet;door;shelf,A person is struggling to place a small box in a cabinet.,c112 10.80 31.80;c113 4.00 9.60;c042 4.90 16.00;c040 0.00 14.60;c081 6.00 15.70;c114 20.70 35.50,35.42\r\nUXEL9,D0RU,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"The person was taking a box of old pictures out of the house to put under a window in the garage, and started opening the boxes.\",box;doorway;paper/notebook;picture;table,A person walks through a room with a box then puts it down on a table. They take things out of the box.;A person carries a box out the door and then takes pictures out of the box.,c040 0.00 19.10;c041 14.20 26.80;c042 0.00 18.40;c044 17.80 36.40;c097 6.00 12.00;c117 20.10 31.90;c009 11.40 18.70,35.58\r\nTZL6H,D0RU,Bedroom,4,5,Yes,A person in drinking water to swallow medicine and then washing a mirror in the hallway.,cloth;glass;medicine;mirror;water,The person put some medicine in their mouth and then drank some water out of a bottle. Then the person wiped the mirror.;Person takes medicine off the table takes it with a glass of water pick a piece of clothing up wipe the mirror.,c106 6.00 21.90;c095 24.00 32.00;c000 22.30 27.90;c129 0.00 8.00,30.75\r\n6U8AV,0KZ7,Laundry room,7,7,Yes,Two people are in the laundry room sitting on the ground. They are both laughing while holding a towel to the light.,clothes;floor;light;towel,\"Two people are sitting on the floor and holding a towel above their heads, laughing.\",c033 0.00 31.00;c149 0.00 31.00;c152 0.00 31.00;c125 0.00 31.00,30.21\r\nKAFV7,R1OT,Basement (A room below the ground floor),5,7,Yes,A person takes out their phone and takes a picture of something. The person puts their phone away and lies down on the sofa.,bed;phone;picture;sofa;table,A person takes a picture with their phone then lays on a sofa.,c015 0.00 28.00;c122 26.80 31.00;c087 10.90 15.20;c017 23.10 28.40;c134 26.50 31.00;c151 25.50 31.00;c016 0.00 26.90;c009 23.10 28.30,29.96\r\n6UMSJ,HR43,Kitchen,6,7,Yes,A person is cooking on the stove and pouring something into a pot on the stove while talking on their phone.,bag;food;pan;phone;pot;stove,\"A person is standing in front of a stove, takes food out of a bag, and pours it in to a pan. Afterwards, the man receives a phone call and answers it.;A person picks up a bag of food, reads the label and dumps the food into a pot on the stove.  The person then puts the bag down and answers a phone.\",c015 0.00 39.00;c061 0.00 36.90;c063 0.00 6.20;c019 0.00 31.30;c147 8.00 39.00;c021 0.00 4.10;c062 3.40 24.90;c018 9.00 13.70,38.46\r\n3O474,PKND,Closet / Walk-in closet / Spear closet,6,5,Yes,\"A person is undressing in their wardrobe closet. Another person is standing in the doorway, fixing their gaze on that person.\",closet;clothes;doorway;shirt;wardrobe,A person opens a wardrobe and undresses from their clothes while another person stands near the doorway.;A person is opening a wardrobe. Another person is watching a person take off a shirt.,c155 9.20 19.60;c155 14.70 22.50;c113 7.90 32.00;c152 0.70 5.80,31.46\r\nGK15U,YMXV,Recreation room / Man cave,6,6,Yes,\"A person sits on the sofa, eating a bag of chips and looking at pictures on their camera.\",bag;camera;food;picture;sofa,\"a person sits on the coach, surrounded by pillows while eating and playing on their phone\",c123 0.70 6.90;c156 27.90 33.00;c018 29.90 33.00;c016 29.90 33.00;c015 29.90 33.00,31.79\r\nFQ6OB,3H6W,Living room,5,7,Yes,A person is sleeping on a couch under a blanket and surrounded by homework. The person awakens and then sneezes.,blanket;book;couch;paper;pillow;sofa,A person is sleeping on a couch holding a book. The stretch one arm up over their head as they roll to put the book down on the floor and then sneeze several times. After they sneeze they throw off their blanket and get up from the couch.;Person is laying down on a couch with a book in his hand then begins sneezing and gets up from the couch.,c070 23.70 31.80;c072 0.00 31.20;c116 17.00 25.00;c122 0.00 23.70;c153 18.30 25.30;c071 24.80 30.10;c115 0.00 23.70;c146 13.90 33.00;c154 26.10 31.80;c026 0.00 23.10;c028 17.80 23.30,31.67\r\nXDT45,ID9V,Recreation room / Man cave,7,7,Yes,A person awakens and gets out of bed. They begin tidying the bed then leave out the door.,bed;blanket;door,\"A person is sleeping on a bed. The person wakes up and gets out of the bed, tidying up the bed afterwards. The person walks out of the room, only to return a moment later.\",c134 0.00 9.20;c135 4.70 12.50;c133 0.00 12.40;c146 0.00 11.70;c154 9.40 34.00;c075 12.70 26.80,33.46\r\n1KDFH,4I2W,Dining room,6,6,Yes,\"A person is sneezing while getting groceries off a shelf.  Then a person is standing taking shoes off of their feet, using only their other foot.\",bag;closet/cabinet;groceries;shelf;shoe,One person is taking off shoes; another is removing groceries from a shelf.,c153 13.90 23.40;c057 2.30 11.00;c113 6.80 14.40;c112 21.00 28.70;c023 12.50 23.80,32.00\r\n2OK9A,6RE8,Kitchen,5,1,No,\"A person stands in the pantry, wiping their hands on their clothes. The person picks up a blanket from the floor, and snuggles it.\",blanket;door;towel,\"a person hangs up a towel then puts a blanket over themselves and walks into doorway;This person is drying his hands off in the kitchen,, then folds a blanket.\",c073 8.80 14.30;c034 3.30 11.00;c037 2.30 10.20;c072 15.50 31.00;c033 1.60 8.20;c070 9.20 31.00,30.33\r\n8NW4J,YA10,Bedroom,7,7,Yes,\"A person is snuggling with a pillow and blanket, then putting away dirty clothes in a bedroom.\",basket;bed;blanket;clothes;doorway;hamper;pillow;towel,\"A person is lying on a bed holding a pillow.  They get up, pick up some clothes and put them in a hamper. They pick up the hamper and leave.;Person is lying in bed and removes the blanket and places it on the end of the bed.  Person then gathers clothes into a basket and walks away.\",c077 0.00 5.40;c001 10.50 16.60;c003 10.50 16.60;c133 0.00 5.60;c076 0.00 3.10;c078 0.00 3.90;c002 7.80 25.90;c154 20.20 26.00;c134 0.00 3.70;c036 20.20 25.40;c097 28.50 32.00;c072 0.00 2.90;c000 8.10 32.00;c070 1.70 8.50;c071 3.60 8.50,31.00\r\n1ZB73,6RE8,Home Office / Study (A room in a house used for work),6,7,Yes,A person is laughing at a picture hanging on the wall of the garage. The person sits at a table and begins playing a game on their laptop.,chair;desk;lap top computers;laptop;picture;table;tv,\"A young person watching TV and laughing at something and then getting up and walking over to a lap top computer and working on it.;A person is sitting at a table, pointing at a picture and laughing. The person gets up and moves to another chair at the table to work on a laptop.\",c085 0.00 8.30;c052 8.50 31.00;c151 5.20 12.80;c011 9.10 31.00;c149 0.00 8.90;c154 3.60 8.60;c059 9.00 31.00;c014 0.00 7.50,30.50\r\n901GH,YMXV,Home Office / Study (A room in a house used for work),4,7,Yes,Opening the window in the hallway while holding a towel the person begins sneezing.,cabinet;door;towel;window,\"The person is holding a towel. The person opens doors and wipes their face with a towel. The person then sneezed into the towel.;The person opens two doors on a wall cabinet, and repeatedly mops at thier face with a beige towel\",c090 0.00 10.50;c033 0.00 32.00;c153 8.20 13.50;c113 0.30 6.30,30.88\r\nZ1ZUI,UO0Z,Bedroom,6,7,Yes,\"A person is lying on a on the ground, relaxing with their head on a pillow. They stand up to grab a blanket, sneezing loudly in the process.\",blacnket;blanket;floor;head;pillow;sofa,Person lying on the floor on a pillow get up and picks up a blanket from the sofa then puts it back down.;A person is lying down with their head on a pillow.  The person stands up and picks up some blankets and pillows.,c070 10.50 17.80;c071 13.80 18.00;c154 5.50 12.00;c124 0.00 9.80;c146 4.30 9.80;c073 9.60 14.90;c074 14.10 18.00,16.83\r\nB5X50,WG9D,Dining room,7,6,Yes,\"A person is sitting at the table grasping a sandwich.  The person eats a bite of the sandwich, then puts it down on their plate.  The person grabs a towel and wipes their mouth with it.\",food;plate;sandwich;table;towel,\"A person sits at a table and eats a sandwich on a plate, then wipes their mouth with a towel.\",c065 0.00 6.20;c067 0.00 6.00;c033 2.00 7.00;c038 2.60 7.00;c156 0.00 6.70;c011 0.00 7.00;c062 1.50 6.00;c035 1.90 6.90;c068 1.70 6.20;c069 0.00 3.00;c061 0.00 4.90,5.79\r\nUK5AT,5LWB,Kitchen,6,7,Yes,A person is looking at themselves in a mirror when they receive a call on their phone. The person answers and smiles while talking for a few seconds before having to pause and sneeze. They resume the conversation and soon hang up.,hair;mirror;phone,\"A person is looking in a mirror. They then take their phone out of their pocket and talk on the phone while smiling. They sneeze, then talk on the phone.\",c015 4.60 38.00;c096 0.00 7.90;c152 8.30 19.00;c153 23.30 30.80;c144 0.00 7.50;c094 8.40 20.50;c019 8.10 25.10,36.58\r\nZBIUK,5LWB,Stairs,3,4,Yes,A person smiles as they watch something out of a window at the top of the stairs. The person gently taps on the glass.,cup;dish;glass;something,A person is holding a cup of coffee at the top of stairs. They then leave.,c107 2.20 29.60;c118 7.80 30.00,28.88\r\nNGMK1,H8N1,Living room,5,7,Yes,\"A person is standing in the living room, holding a glass of water. The person takes a drink and then sets the glass down on a shelf.\",cup;glass;shelf;television;tv;water,Person walks into the room drinks from a glass put the glass on top of the television and leave the room.;a person drinks out of a red cup then places it on top of the tv,c106 3.00 10.00;c154 2.00 16.00;c109 9.40 15.80,20.21\r\n7UP0Q,HJJ4,Stairs,6,7,Yes,A half awake person carrying a pillow and a handheld vacuum stumbles down the stairs while struggling to put on a hoodie in preparation for leaving their home.,broom;clothes;jacket;pillow;shirt;stairs;vacuum,\"A person walks down the stairs holding a pillow, broom and a shirt. When they get to the bottom of the stairs they struggle as they put on the shirt.;A person carrying a pillow, jacket, and broom is walking down the stairs while another person is in the kitchen. After reaching the bottom of the stairs, the person puts the jacket on.\",c137 0.00 24.00;c001 8.80 23.40;c148 9.00 24.00;c076 3.20 24.00;c000 2.70 24.00;c098 2.30 24.00,22.88\r\nVIDIE,P6LJ,Recreation room / Man cave,7,5,Yes,\"A person is holding a pair of shoes and a camera. The person sets the camera down on the desk, and throws the pair of shoes into the corner.\",camera;corner;desk;phone;shoe;table,\"The person turned on the camera, picked up shoes, and toss them in the corner.\",c053 2.00 22.00;c054 18.00 25.90;c058 18.00 25.90;c016 24.80 29.00;c012 13.30 20.20;c154 1.80 7.00;c017 0.00 29.00,27.75\r\nZ6OEM,ID9V,Bedroom,4,6,Yes,A person is dressing in front of a wardrobe while laughing on a phone.,closet;clothes;jacket;phone;shirt,A person talking on a phone opens up a closet door and then puts on a jacket. The person then continues talking on the phone.;A person is opening a closet while talking on a phone. A person then puts on a shirt. A person then grabs clothes from the floor.,c015 0.00 25.00;c149 5.80 25.00;c019 2.90 25.00;c148 6.00 20.30;c113 0.00 6.10;c002 2.80 12.10,23.96\r\nCJP4R,ZSRZ,Kitchen,7,7,Yes,A person throws some food into a pan and begins cooking it on the stove. The person takes out a camera and takes a picture.,camera;food;phone;picture;spoon;stove,A person throwing stuff in a pot on a stove.the person stirs the pot picks up a camera and takes a picture of the pot .,c015 6.80 16.00;c018 6.00 11.20;c147 0.00 9.40;c017 11.20 16.00;c061 0.00 3.40;c064 0.00 5.40;c087 6.60 15.60;c063 0.00 3.00;c062 0.00 3.50,14.75\r\nWAOE7,HR43,Kitchen,6,5,Yes,Person walking towards sandwich then starts putting it on glass plate and starts laughing.,dish;food;laptop;sandwich,A person is eating food while looking at a laptop.;A person makes a sandwich and puts it on a dish and then laughs while looking at a laptop.,c068 6.70 11.00;c061 0.50 10.90;c069 0.00 6.90;c062 4.30 11.50;c064 6.40 13.30;c063 0.00 4.90;c051 13.60 24.30,23.71\r\n0N8OZ,9Y7F,Kitchen,4,6,Yes,A person is smiling in a chair.  Another person is eating chips and doing homework on the sofa.,calculator;chair;food;homework;men;paper;table,two people sit at a table. One is eating and one is reading.  The one who is eating is also using a calculator.;two men sitting at a table and one using a calculator.,c059 0.00 32.00;c115 0.00 31.30;c156 0.00 32.00;c011 0.00 32.00;c062 3.70 9.10;c063 3.70 9.10;c145 0.00 32.00;c014 0.00 32.00,30.79\r\nE0U3R,KL48,Bedroom,6,7,Yes,A person tidying up the bedroom walks to the television and turns it off before sitting in a chair next to the door.,bed;blanket;chair;clothes;television;towel,\"A person is folding some clothes.  The person then puts the clothes on the bed, turns off the television, and sits in a chair.;Person tidying up the bedroom by folding clothes and making bed.\",c059 17.00 22.50;c151 16.40 21.80;c001 8.10 15.20;c004 5.60 13.10;c003 3.60 9.00;c075 4.90 15.30;c037 0.00 7.20;c132 12.20 22.00;c034 0.00 7.20,21.62\r\nCVTII,CCI9,Kitchen,5,7,Yes,\"A person is tidying the counter with a towel, then smiling as they cook food and take medicine in a kitchen.\",bottle;burner;counter;food;medicine;pan;shelf;spoon;stove,\"A person is tidying up a counter and cooking some food then they take a medicine bottle from a shelf and drink it.;This person is in the kitchen, stirs what they are cooking in the pan on the stove, then moves over to the shelf, picks up a bottle and then drinks.\",c129 26.20 33.00;c147 2.50 20.50;c129 18.80 33.00;c128 18.80 33.00,32.17\r\nW28C2,HR43,Kitchen,7,7,Yes,A person laughs as they cook on the stove. The person takes out a box of food and reads the instructions on the back.,box;closet/cabinet;dish;door;food;stove,A person is cooking and laughing. they grab food from a shelf in a cabinet and read the box while laughing.,c040 10.90 37.00;c043 9.80 15.40;c061 11.20 37.00;c149 4.10 11.30;c147 0.00 11.10;c063 11.20 17.80;c008 8.60 13.30;c118 0.00 3.80;c113 8.00 13.50;c152 0.00 11.10,35.75\r\n16V9S,DXDI,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is smiling while sweeping the closet with a broom Then the person leaves with some homework.,broom;floor;homework;paper;table;wardrobe,\"Person in a room sweeping a floor puts the broom against the wall pick up a book and leave the room.;A person is standing in front of an open wardrobe, sweeping with a broom. The person props the broom against a table, picks up homework from the floor of the closet, and walks away with it.\",c098 0.00 21.70;c102 0.00 16.40;c127 0.00 16.40;c100 0.00 17.00;c117 18.00 26.00;c009 13.00 20.00;c099 12.90 21.90,25.88\r\nB5NS3,8718,Bathroom,7,2,No,\"A person finishes dressing their bathroom.  They adjust a picture near the sink, and grasping the doorknob, open the door and exit the bathroom.\",clothes;clothing;door;light;mirror,\"A person is getting dressed in the bathroom they do their hair straighten their clothes tidy up the bathroom turn off the lights and leave.;The person is dressing themselves in front of a mirror, they straighten the door, turn off the light, and walk out of the room.\",c007 19.30 27.70;c141 20.20 28.40;c148 0.00 8.60;c105 20.10 29.10;c097 25.70 31.10;c096 6.30 16.60,30.58\r\n2NKX2,DXDI,Garage,4,7,Yes,\"One person takes a bottle of medicine from a desk, sits down, opens the medicine, and sneezes.\",chair;desk;medicine;stool,\"The person sits down and opens a medicine container, they then sneeze.;Person sitting down trying to open medicine and then sneezes in elbow.\",c151 1.80 8.20;c153 7.70 18.20;c128 3.80 13.80;c059 2.50 19.00,17.67\r\nUPL9S,D0RU,Hallway,4,3,Yes,\"One person holding homework puts a laptop in a cabinet by a sofa, then leaves the living room.\",homework;laptop;papers;table,\"A person walks in with a laptop and some papers, sets the laptop down on a small table, then walks away while looking at the papers;Person walks in holding laptop and homework, sets laptop on table.\",c049 55.20 80.50;c009 55.20 80.50;c051 69.40 128.10;c047 57.80 76.00,128.58\r\nAF8VD,BYF9,Living room,4,3,Yes,A person is watching television while getting dressed. The person then takes a sip of coffee out of a cup.,bed;clothes;coffee;cup;dish;glass;hair;television,A person sitting on the couch puts on a sweater while watching tv.  The person sips from a cup.,c132 0.00 21.00;c106 17.80 21.00;c148 0.00 16.30;c118 14.50 21.00;c144 7.40 12.70;c135 0.00 21.00,20.17\r\nD6D85,8718,Living room,3,4,Yes,The person is sitting in the dining room eating a sandwich while working on making a list for groceries.,chair;food;laptop;paper/notebook;sandwich;sofa,\"A person is  eating a sandwich on a chair, they then work on their laptop and go back to their sandwich.;Someone is sitting on a sofa and using a chair as a table to eat something off of it and then they turn to the side and type on their laptop.\",c065 19.00 27.40;c156 19.60 27.40;c123 0.00 25.00;c066 0.00 22.00;c067 0.00 3.10;c061 0.00 3.10;c145 5.60 24.60;c069 21.80 27.10;c068 1.90 6.70,30.25\r\nI8WPI,EXQX,Pantry,6,7,Yes,\"One person washes a glass and grasps a broom, then turns off the light and leaves the pantry.\",broom;cup;dish;doorway;glass;light,\"A person was washing their hands, and then cleans a green tool. After that they turn off the lights and leave the room.\",c111 0.00 10.70;c105 20.70 27.70;c097 21.00 29.20;c121 0.00 10.10,59.75\r\nMNEQ4,YMXV,Bedroom,5,6,Yes,\"A person is lying on the hallway floor, playing with their phone. The person takes a blanket from a nearby chair and covers up with it.\",bed;blanket;floor;phone,\"A person lying on the floor is playing with their phone. They grab a blanket from a bed next to them and wrap it around themself.;A person is lying on a floor playing with their phone, they then grab a blanket and begin to snuggle with it.\",c124 0.00 20.70;c015 0.00 21.00;c016 0.00 21.00;c070 18.20 33.00;c073 17.80 24.60;c071 18.10 27.60;c072 24.60 33.00,31.54\r\nXOIEY,4I2W,Living room,6,6,Yes,\"A person is on the ground rummaging through a large bag when they pull out a blanket and spread it across the ground. Another person is standing still above them, watching and eating an apple.\",bag;blanket;floor;towel,A person takes some blankets out of a bag.,c073 13.60 31.00;c021 6.00 11.50;c127 23.00 31.00;c035 11.00 17.00;c034 20.80 27.20;c033 11.10 26.40,29.67\r\nF8E1N,1OHU,Kitchen,6,6,Yes,\"A person throws a picture down on the table. Holding their phone, they snap a picture of the picture.\",beard;camera;counter;kitchen;pantry;phone;picture,\"A person is looking in the kitchen pantry. They take a couple of items and put them on the counter and take a picture of them.;A person is walking around their kitchen, then slams a card on the counter top to take a picture of it.\",c015 0.00 26.00;c087 11.30 23.90;c016 12.80 25.30;c088 4.50 17.10,25.00\r\nU6L1X,1OHU,Kitchen,6,6,Yes,Person Y walks to the pantry and turns on the light. The person picks up the broom and sweeps the kitchen floor. The person puts the broom back in the pantry and closes the door.,broom;closet/cabinet;door;dust pan;floor;light,\"A person grabs a broom throws a dust pan on to the floor and sweeps the floor. The person puts the broom back into the closet and shuts the door.;The person turned on the light in the pantry. The person took a broom from the pantry and swept the kitchen floor. They put the broom back away, shut the door and turned the light back off.\",c098 2.70 7.60;c100 1.30 7.60;c102 5.80 18.90;c126 4.20 9.70;c127 14.80 22.40;c006 21.40 27.30;c099 19.80 24.60;c104 0.00 3.00;c112 21.40 27.20,27.50\r\nGQ0H2,1OHU,Kitchen,6,6,Yes,A person is cooking and must get food and coffee from the pantry. They are drinking wine at the same time.,cup;drink;food;glass;oven;stove,\"A person is cooking something on the stove while holding a drink. They walk to a closet and take a couple of things off the shelf.;A person is cooking on a stove and holding a glass of water, they then over the oven and  grab food fron the pantry.\",c107 0.00 33.00;c061 25.00 33.00;c147 0.00 22.00;c110 18.10 33.00,31.83\r\n6VT4U,0RNU,Garage,6,7,Yes,\"A person is standing in their garage playing on their phone , they then pull off their shoes get a blanket from the shelf and make a bed on the floor.\",blanket;floor;phone;shelf;shoe,A person plays on a phone then puts it on a shelf before taking off shoes. The person then takes a blanket off the shelf and carefully puts it on the floor as if making a bed.,c071 15.80 37.00;c015 0.00 13.60;c017 7.50 14.50;c057 9.80 19.10;c126 17.10 36.30;c081 8.00 13.40;c016 0.00 12.00,35.58\r\nDJJ24,DXDI,Bedroom,7,7,Yes,A person dressing in a basement is opening a bag next to a chair.,bag;clothes;jacket,A person putting on a shirt and turns and picks up a pair of shorts and holds them in front of them self.The person looks off to the side .;A person puts on a jacket and picks up another bag.,c020 12.50 21.90;c023 9.40 16.50;c000 0.00 2.70;c002 0.00 2.80;c148 0.00 11.30,23.50\r\n5LVUF,YMXV,Bedroom,5,7,Yes,A person is smiling while fluffing a pillow.  Then a person is playing with the pillow by throwing it up in the air and catching it.,pillow,A person is sitting on a bed and throwing a pillow in the air over and over and catching it.,c080 0.00 32.00;c076 0.00 32.00,31.21\r\n2IX2Z,C7O9,Closet / Walk-in closet / Spear closet,3,6,Yes,A person is opening the medicine and watching the camera.,box;medicine,A person grabs a box off of a shelf and then opens thee box.;A person is in the pantry holding a box they shake something out of the box,c128 0.00 7.40,26.79\r\nUC33W,JVLO,Recreation room / Man cave,4,6,Yes,\"A person is sitting in a chair, laughing in the mirror.\",chair;desk;mirror,\"A person walks to a chair and sits down in front of a mirror. They look at themselves and smile at the mirror.;A person walks to a desk and sits down in a chair. After sitting, the person looks at them self in the mirror.\",c094 5.10 23.40;c096 9.60 21.00;c059 6.20 25.40;c151 10.40 29.20;c152 8.90 22.60,31.62\r\nNUSKJ,P6LJ,Kitchen,6,6,Yes,A person puts dishes in the sink then pours dish liquid over them while talking on the phone.,closet/cabinet;dish;phone;sink;soap,Someone walks through their kitchen talking on the phone. They put dishes in the sink and grab soap from under the sink.,c118 4.00 52.60;c120 3.80 53.00;c015 0.00 52.80;c019 0.00 8.00;c119 0.00 53.00;c113 32.10 36.90,52.38\r\nAR7ZK,ID9V,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is laughing while undressing, then putting food on a table in an entryway.\",clothes;coat;doorway;mirror;phone/camera;something,\"A person is taking off a coat. A person then begins to laugh.;A person is walking into a hallway, where the person looks into a mirror and removes a jacket, dropping it to the floor. The person looks at something and then puts it down.\",c155 0.70 18.10;c017 19.10 24.90;c097 0.00 4.80;c018 13.30 20.40;c003 1.90 18.60;c148 1.90 18.60;c001 2.00 18.60,26.75\r\nRZ9SZ,6RE8,Bedroom,6,7,Yes,\"A person is undressing in front of the mirror. The person picks up a towel then leaves, holding the towel.\",clothes;doorway;mirror;towel,\"Person walks into room,stands in front of a mirror,takes shirt off, grabs a towel and walks off\",c035 12.00 26.70;c096 4.50 15.90;c155 4.30 14.10;c002 11.20 17.90;c033 11.70 32.00;c097 0.00 3.10,31.46\r\nZYRB9,XXN8,Basement (A room below the ground floor),1,7,Yes,\"A person sits at a table, watching a movie on their laptop. The person takes a towel from nearby and dries their tears.\",chair;laptop;table;towel,\"the person sat in the chair watching the laptop, adjusting glasses and stood up\",c051 0.00 31.00;c154 0.00 2.90;c033 0.00 31.00;c151 0.00 2.80;c059 0.00 29.60,30.00\r\n6SS4H,WG9D,Kitchen,3,3,No,A person is drinking a cup of coffee. They sneeze and take dosage of cold medicine.,bag;clutter;cupboard;food;pillow;window,A person is putting a bag in the cupboard.  The person puts a pillow in the cupboard.;Person is in very cluttered kitchen area putting things into lower cupboards.,c077 1.90 7.00;c061 0.00 2.60,5.62\r\nPDK24,PO5L,Dining room,5,6,Yes,A person turns on the light in their dining room and start tidying up. They sit in a chair and start sneezing.,chair;hands;light;man;paper/notebook;papers;table,A person turns on the light and tidy's up an area on the counter before sitting down. When they sit down they start to sneeze into their hands and then get up and walk away.;a man moving some papers and then begins sneezing and stands back up.,c104 0.00 4.60;c059 15.30 25.00;c151 12.30 19.60;c153 16.90 23.80;c154 20.30 25.80;c117 6.80 11.90;c012 4.70 16.00;c010 13.60 24.70;c116 7.90 13.20,27.12\r\nRS3SQ,D0RU,Kitchen,6,4,Yes,A person is eating food from the refrigerator and then walking out the door in the dining room.,door;food;refrigerator,\"Man opens up the refrigerator looking for something, then grabs something and pops it into his mouth.\",c143 0.70 8.10;c156 13.20 20.30;c006 15.70 20.60;c062 12.90 17.90;c008 0.00 6.90,29.71\r\nGYRNY,PKND,Garage,6,5,Yes,\"A person sits on the floor of the garage, working on reattaching a doorknob to a door.\",car;door;floor;ground,A person is fixing a lock on car with a screwdriver.,c140 0.00 33.00;c125 0.00 33.00;c007 0.00 33.00;c006 12.40 22.90;c008 1.50 15.60,31.62\r\n9LO9F,5LWB,Bedroom,6,6,Yes,\"Person is holding a medicine while another person is lying down in bed, awakening.\",bed;doorway;medicine,A person is carrying medicine bottles and puts them near a person lying in bed.  The person in bed sits up and both start opening bottles.,c128 0.00 27.80;c135 27.40 37.00;c146 25.80 37.00;c128 31.60 37.00;c134 15.40 29.80;c133 22.30 30.00;c097 2.40 8.50,36.29\r\n2L7MW,25TD,Bathroom,6,6,Yes,A person standing in a bathroom watches a book in front of a mirror.,book;mirror,A person is standing in the bathroom. The person is looking at a book while standing near the bathroom mirror.,c025 3.50 8.40;c026 0.00 32.00;c027 0.00 3.10;c032 0.00 32.00,31.25\r\nZNH10,4OHY,Recreation room / Man cave,7,5,Yes,A person in their recreation room is lying down on the bed. They start washing their hands on a blanket that they found on the ground.,bed;blanket;hand;towel,A person is laying on a bed then rolls over and picks up a towel and wipes hands with that.;The person is laying down in the bed and rolls over and picks up a towel that was laying on the ground and shakes it.,c139 15.60 30.00;c134 0.00 30.00;c133 0.00 16.20;c033 14.70 30.00;c035 12.30 19.00;c070 14.80 30.00;c073 12.20 20.00,29.46\r\nRIUEI,KFGP,Hallway,6,7,Yes,\"A person drunkenly walks through a hallway, eating a sandwich. They turn on the light, take off their jacket and throw it in the floor before leaving the hallway to go into their bedroom.\",clothes;doorway;floor;food;light;sandwich,A person is drink walking eating a sandwich then they take off their jacket and walk into another room.,c003 23.70 29.70;c155 17.10 28.40;c065 3.70 12.00;c156 3.30 12.20;c126 24.10 29.80;c104 13.10 19.60;c097 14.20 22.40;c067 2.20 9.30;c061 2.00 9.60,32.29\r\nJLX1D,P6LJ,Living room,6,4,Yes,The person is standing by the window in the basement while eating crackers out of a box.,box;food;window,A person picks up a box of food from the coffee table and begins to eat while standing. They put the box down.,c040 1.60 47.20;c044 3.30 45.00;c156 2.60 46.20;c043 1.80 46.00;c042 1.80 46.20,48.04\r\nH8UJ3,P6LJ,Dining room,7,7,Yes,\"A person turns on the lights to the dining room.  Smiling, the person sits down on a chair and begins reading a book.\",book;chair;light;table,The person turned on the light.  The person sate in the chair.  The person opened the book and started studying.  The person got up and came to the camera.,c027 15.10 23.10;c104 0.00 8.60;c151 8.80 16.50;c032 18.30 49.90;c059 9.10 17.50;c154 45.60 50.70;c011 11.60 50.20,52.58\r\nOHLSE,PKND,Living room,4,5,Yes,\"A person opens the closet, takes a sandwich and some other groceries from the shelf, then closes the door. The person begins eating the sandwich.\",bottle;box;cabinet;door;food;sandwich;shelf;snack,A shirtless person is eating a something the opens a cabinet takes a box out moves a bottle then puts the box back;A person holding a snack touches a cabinet. He opens the cabinet and takes a box off the shelf and holds it. He eats a snack and then touches a bottle on the cabinet. Then he puts the box back on the shelf.,c081 19.10 31.70;c065 15.60 22.00;c154 0.00 32.00;c043 7.00 12.90;c113 0.00 4.10;c008 0.00 4.40;c156 17.00 22.20;c061 21.70 28.80;c042 28.10 32.00;c112 0.00 6.00;c040 11.80 31.20;c063 3.40 9.30;c041 8.10 23.60;c062 0.00 32.00;c044 11.20 31.80;c082 0.00 32.00,30.58\r\n48BUM,ZAWX,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person awakens at a desk, with homework in front of them. The person yawns and sneezes.\",blanket;book;desk;hair;homework;paper;table,\"A person is sitting at a desk doing their homework. A person then fixes their hair, and begins to sneeze.;A person is sitting at a table doing homework. The person stands up, messes with their hair, and sneezes.\",c145 0.00 12.40;c153 17.30 23.60;c154 8.00 13.50;c059 0.00 12.00;c011 0.00 12.30;c144 14.10 19.60;c070 15.90 21.30;c032 0.00 11.50;c026 0.00 12.60,30.58\r\nBOHLW,3531,Pantry,6,6,Yes,A person is washing a shelf in a pantry. The person is sneezing. The person uses a little vacuum to clean. The person shines a light to see where to vacuum.,broom;closet/cabinet;cup/glass/bottle;duster;light;shelf,person is cleaning up the cabinet with a duster while holding a flash light.,c104 23.90 29.80;c082 0.20 27.40;c114 0.00 27.50;c107 0.00 17.40;c102 16.00 23.00,32.08\r\nVXRCZ,0KZ7,Bathroom,7,7,Yes,\"A person laughs as they look out the window. The person takes a bite from a sandwich, then sneezes.\",food;sandwich;window,\"The person is looking out the window while laughing, they then eat a sandwich and sneeze.\",c092 0.00 11.60;c065 7.90 15.60;c149 0.00 6.00;c156 7.90 15.60;c153 13.70 20.20;c061 7.10 24.00,23.38\r\nA84J7,KFGP,Hallway,6,6,Yes,The person walks down the hallway holding on to their book.  They turn off the hall light as they leave the hallway and enter the bedroom.,book;door;light;paper,A person is walking through a hallway holding a paper they get to the end of the hallway and turn off the lights and go through a door.,c026 0.00 13.60;c105 13.40 19.20;c097 17.60 24.00;c115 0.00 13.50;c008 17.10 25.00,24.38\r\nXXYWL,WG9D,Bedroom,5,7,Yes,A person is eating a sandwich and then lays on top of a pillow after taking a sip of coffee.,chair;coffee;cup;food;sandwich;sofa/couch,\"A person is eating a sandwich, and drinking coffee. The person then gets up and lies down on the bed\",c107 0.50 5.40;c110 0.50 5.60;c067 0.00 2.80;c154 3.90 9.10;c106 1.40 6.90;c109 1.50 7.00;c065 0.00 4.50;c156 0.00 4.70;c059 0.00 8.30;c061 0.00 4.50;c122 6.40 10.00,8.62\r\nATUOW,QOQ4,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is tidying up in their office. The person puts papers on their shelf, then holds their hand out to open the cabinet as the person stands to reach it.\",chair;desk;papers;shelf;table,A person is sitting at a desk tidying up papers they put them on a shelf and pick up a book and put it on the shelf. then they get up.;A person is tidying up their desk then bends down to pick something down from the floor.,c154 28.80 37.00;c011 0.00 33.00;c012 0.00 37.00;c014 0.00 37.00;c081 12.30 20.00;c059 0.00 32.60,35.58\r\n0UQU6,6NQX,Bedroom,7,5,Yes,\"A person awakens in bed, grasps their laptop from nearby, grabs a box, and leaves.\",bed;blanket;box;doorway;eyewear;glasses;laptop,\"The person woke up, put on eyewear, looked at laptop, picked up a white box then left the room.;A person is laying in bed covered with a blanket.  The person sits up, puts on glasses and picks up a laptop. Then the person picks up a box from a table and walks through a doorway.\",c047 0.00 3.10;c134 0.00 2.50;c040 0.00 18.00;c146 9.90 17.00;c097 12.00 18.00;c050 7.20 13.40;c135 2.80 11.50;c043 10.70 16.00;c154 10.00 15.80;c072 0.00 7.80,17.04\r\n4Q766,T7C3,Hallway,5,7,Yes,A person in the hallway is taking medicine while playing with a vacuum.,cup/glass/bottle;medicine;shelf;vacuum,A person is standing at the base of a stairwell taking some medication and then tries to vacuum.,c129 0.00 10.30;c106 0.00 9.30;c137 12.60 40.00;c081 6.10 11.40,38.50\r\nZ7QTA,3VLX,Closet / Walk-in closet / Spear closet,6,7,Yes,\"The person was laughing at the doorknob of the closet. Then, the person began tidying up food that the person had brought into the closet.\",bag;box;closet/cabinet;doorknob;package;pillow;table,A person touches a doorknob on a door and laughs.The person proceeds to enter into the closet with a box and a package that was picked up off a stand by the door.The person put the package and box are put on a table in the closet.;A person is  grasping a doorknob then taking a pillow and a box and putting then inside a closet.,c141 0.00 9.70;c040 9.70 17.40;c042 14.70 23.20;c043 8.70 20.70;c009 13.90 22.80;c114 14.40 28.00;c022 11.30 18.10,26.75\r\nKZ746,BYF9,Closet / Walk-in closet / Spear closet,4,7,Yes,A person is sitting at a desk grasping a coffee cup while kicking off a shoe.,chair;coffee;cup;desk;dish;glass;shoe;table,A person is sitting in a chair. A person is also holding a cup in their hands.,c011 3.00 20.00;c107 7.90 20.00;c151 0.70 7.50;c057 4.80 10.70;c059 3.20 8.20;c110 7.90 13.20;c120 8.00 13.30,18.79\r\nJL1W2,PO5L,Kitchen,5,5,Yes,\"A person is putting groceries on their table. The person sneezes, then picks up their phone.\",bag;counter;groceries;table,\"The person walks across the camera, goes into another room seen from this one, picks up a bag and sets it on the counter, then sneezes.;The person walked through the kitchen carrying a plastic bag full of items.  The person then put the bag on the counter top area of the kitchen.\",c020 0.00 11.60;c023 0.00 10.80;c009 6.70 11.30;c153 9.00 17.00;c022 6.10 11.60,24.33\r\nWIYE2,9PLL,Bedroom,4,7,Yes,A person is standing next to the table drinking a glass of water.  The person puts the water down on the table and picks up their shoes and a pile of clothes from the floor.,blanket;clothes;cup;dish;floor;glass;shoe;table;water,\"A person drinks some water, then picks up some shoes and clothes from the floor and walks off.\",c002 21.20 29.70;c107 0.00 13.60;c106 0.00 11.70;c009 8.10 14.30;c056 15.30 23.00;c073 21.10 35.00;c119 8.40 15.00;c118 0.00 12.30;c127 16.50 29.20;c070 21.40 35.00;c075 20.90 32.80,33.88\r\nCH8XJ,DXDI,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person is fixing a doorknob, then the person starting throwing shoes into their closet.\",closet;doorknob;shoe;wardrobe,A person is fixing a wardrobe doorknob. They then open the closet and throw shoes inside.,c113 13.50 20.10;c058 16.90 25.40;c054 17.20 25.00,28.12\r\nEMWAP,ECB2,Bedroom,6,6,Yes,A person awakens on the sofa and jumps on. The person quickly eats a piece of food before running out of the room.,bed;door;food,\"The person sits up on the bed, then puts something in their mouth, and then stands up and walk to the bathroom.;A person is sitting on a bed, eating food and then leaves the room.\",c156 3.20 8.40;c133 0.00 6.90;c006 7.50 12.00;c061 0.00 8.00;c097 7.30 12.00;c008 6.30 11.50,11.08\r\nKX8VW,R1OT,Bedroom,6,6,Yes,\"A person is seen holding food. They begin pouring themselves some water and start  drinking it, while sitting on the sofa.\",bed;dish;food;glass;sofa;table;water,There is a person sitting on a bed eating something out of a bowl.  That same person then pours some water into a glass and drinks it.;Person sitting on the sofa eating out of a dish then pour some water drink and put back on the table.,c061 0.00 23.00;c106 13.00 20.70;c156 0.00 5.50;c135 0.00 23.00;c009 16.30 22.10;c109 13.30 18.10;c118 0.00 23.00;c108 5.90 15.40;c109 16.80 21.80;c107 13.00 21.60;c063 0.00 23.00;c063 0.00 4.40,21.96\r\n14A2O,9Y7F,Kitchen,5,7,Yes,A person is throwing a picture while another person is eating a sandwich.,floor;food;paper/notebook;picture;sandwich;something,\"Two people standing in a kitchen, one is cooking and eating one throws a picture on the floor.;Person looking at a picture and then decides to throw it while another person eats and walks around the kitchen.\",c065 0.00 6.80;c156 0.00 6.80;c061 0.00 3.40;c088 0.00 13.10;c084 0.00 12.60;c116 8.40 15.10;c152 9.10 16.00;c126 8.80 14.30,30.67\r\n8R0SZ,4OHY,Entryway (A hall that is generally located at the entrance of a house),7,5,Yes,\"A person runs through the doorway. The person pauses and stands there for a moment, before running back out and turning off the light behind them.\",doorway,\"A person runs through a doorway from inside to the outside gate and then grasps the gate. Along the way, the person changes a switch on the wall.\",c097 0.00 3.40;c150 0.00 9.70,28.96\r\nZWPS3,KQI6,Living room,5,5,Yes,A person puts groceries onto a table. Another person opens a can of soda and sits down on the sofa next to a laptop.,bag;chair;doorway;glass;groceries;laptop;sofa;table,\"A person walks through a doorway holding a bottle and a bag. The put the bottle and bag on a table, and sit on a chair. Another person sits on a chair working on a laptop.\",c052 15.20 31.00;c130 8.40 18.20;c123 13.30 31.00;c020 5.60 17.70;c009 11.60 17.90;c151 12.20 17.90;c097 5.30 11.70;c059 12.80 18.00;c022 12.50 17.60;c107 11.90 16.30;c109 11.60 17.30;c014 14.80 31.00;c110 15.40 21.80,30.17\r\n2CR02,KFGP,Recreation room / Man cave,6,7,Yes,A person is in the man cave watching television and sneezing while sitting on the chair.,arm;bottle;chair;hand;laptop;television;tv,A person is sitting holding a bottle and watching tv. The person sneezes into their arm twice and wipes their nose.;A person sneezed and sniffled while watching a video on a screen.,c059 0.00 26.00;c153 3.30 18.80;c132 0.00 26.00,24.50\r\nWZVHJ,C7O9,Kitchen,6,6,Yes,A person is smiling and walking towards the table while carrying a sandwich and a cup of coffee.,coffee;cup;food;glass;sandwich;table;window,\"A person walks into the room while drinking a cup of something and eating a sandwich.;A person is walking across the room while drinking from a cup and eating food. After walking over to the table, the person takes a bite and chews.;A person is drinking from a glass and eating a sandwich.\",c065 16.80 24.90;c106 3.90 21.40;c156 15.20 23.40;c067 0.00 28.00;c107 0.00 28.00;c061 0.00 28.00,26.71\r\nVU4J8,C7O9,Kitchen,6,6,Yes,One person is standing by the window holding and drinking from a glass.,coffee;cup;food;window,A person is standing by a window sipping on coffee while looking outside.;A person is eating and standing next to a window while they look outside.,c092 0.00 29.00;c106 0.00 5.40;c106 10.60 21.20;c107 0.00 29.00,28.33\r\nPON7X,C7O9,Dining room,6,6,Yes,A person is sitting at a dining table eating a sandwich while reading a book. Two children come into the room and begin to play and run around the table.,book;chair;food;sandwich;table,A person is sitting in a  chair at the table reading a book. Some more people run in circles around the table.;A person is sitting at the table reading a book when two people begin running around the table and the person take a bit of something.,c026 0.00 26.00;c032 0.00 26.00;c150 4.60 26.00;c059 0.00 26.00;c011 0.00 26.00;c010 0.00 26.00;c152 9.90 16.60;c067 15.10 21.40;c065 16.10 26.00;c149 9.60 26.00,24.71\r\nIJOAK,8718,Dining room,4,6,Yes,A person is sitting by a window and pouring food into a bowl,box;dish;doorway;food;window,A person holding a dish and some food walks into the room and stands next to the window.  They pour the food into the dish.,c061 0.00 39.00;c062 30.90 39.00;c097 0.00 3.70;c118 0.00 13.90;c119 9.50 13.90;c040 0.00 39.00;c063 19.00 25.10;c151 5.30 11.60;c044 13.60 19.30;c120 0.00 11.00;c041 0.00 15.50,38.38\r\nDNB5L,KFGP,Laundry room,5,7,Yes,\"A person grasps a box of laundry soap from the shelf, then pours the detergent into the machine and starts washing clothes.\",box;clothes;shelf,\"A person adjusts their pants.  A person then walks to a cabinet, picks up something, and interacts with a washer.\",,35.17\r\n2FW38,MX1B,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person in their home office is closing their door. They sit down in a chair and start working on their laptop, while grasping a broom in their left hand.\",broom;chair;door;duster;laptop;table,A person closes the door then sits down in a chair and uses a laptop while holding a duster.,c059 8.50 32.00;c052 12.50 32.00;c006 0.00 7.30;c151 0.00 12.50;c098 10.50 32.00;c154 0.00 9.80;c011 7.90 32.00;c008 0.00 3.80,30.50\r\nN9J83,YMXV,Dining room,6,5,Yes,A person is lying on a pillow and laughing at a television in a dining room.,floor;pillow;television,A person is lying on the floor with their head on a pillow while watching tv.;A person is laying down and watching TV.,c124 0.00 32.00;c132 0.00 32.00,31.04\r\nIYVVM,YA10,Garage,6,7,Yes,A person is washing a chair then they stand up to walk over to a phone that's on the floor.,chair;cloth;floor;phone,\"A person squatting down clean on a chair.The person walks over and bends over and picks up a phone and starts looking at the phone.;This person is cleaning a chair, stands up, picks up a phone and plays with it.\",c015 25.00 31.00;c016 25.00 31.00;c018 23.40 28.60;c154 19.20 24.20;c000 0.00 21.70,30.54\r\nCPDH9,2Q9D,Pantry,7,7,Yes,A person is standing in the pantry holding a glass of milk.  The person puts the glass on the shelf and grabs a bottle of medicine.,container;cup;food;glass;medicine;shelf,\"This person is drinking what appears to be chocolate milk. He goes to a kitchen cabinet and grabs something,perhaps vitamins, and leaves his milk on the shelf.\",c081 5.90 12.10;c107 1.30 11.70;c109 6.40 12.70;c063 9.90 16.10,27.62\r\nJUI9U,X5XO,Dining room,7,7,Yes,Person smiling as he/she opens the refrigerator while taking of his/her shoes.,boots;door;refrigerator;shoe,\"A person opens a refrigerator door. That person kneels down, unlaces and removes their boots. They stand up.\",c057 1.70 28.70;c143 0.00 3.40;c152 0.80 9.90;c154 20.10 27.20;c008 0.00 3.10,31.04\r\nTLCLG,YMXV,Other,6,5,Yes,\"A person is standing in the closet, talking on the phone while looking in the mirror. The person quickly runs out.\",door;hallway;mirror;phone;wardrobe,\"Person walks through the doorway with a phone in hand looks in the mirror and go for a run.;A person is talking on the phone, then looks in a mirror, leaves the room and runs down a hallway.\",c096 8.30 14.70;c015 0.00 6.60;c019 13.80 22.50;c150 23.60 32.90;c008 0.00 3.80;c097 22.70 28.60,31.79\r\nA0CJL,3VLX,Bedroom,5,7,Yes,A person is sitting on a chair typing on a laptop. The person is done typing and shuts off and closes the laptop. They grasp a mug and take a sip of their coffee.,chair;cup;dish;laptop;mug,\"This person sat in a chair at the end of a bed where a laptop had been set up.  They typed on a keyboard, closed it and proceeded to drink from a mug.\",c046 15.90 21.90;c052 2.40 19.90;c106 20.50 28.70;c107 19.70 29.00;c110 18.40 23.80;c059 2.20 29.00;c151 0.80 6.40;c118 19.00 29.00,27.75\r\n7HWK2,T7C3,Stairs,7,7,Yes,\"While seated on stairs, a person pours coffee into a cup and then dresses while looking at a book.\",book;clothes;cup;pot;sweater,\"A person is sitting on the stairs, pouring coffee from a pot into a glass. Afterwards, the person puts the cup down, puts on a sweater, and picks up a book.;A person is sitting on the stairs pouring a cup of coffee they pick up their sweater and a book they put on their sweater and look at a book\",c026 13.80 23.40;c002 15.60 27.90;c148 23.30 40.00;c108 0.00 12.50;c028 37.50 40.00;c000 37.50 40.00;c001 37.50 40.00;c032 37.50 40.00;c107 0.00 15.00;c030 17.00 23.00;c109 6.90 15.00,39.46\r\nR2ZYS,QB52,Bedroom,4,7,No,Person is lying on couch watching television then starts laughing and drinking cup of coffee,bed;coffee;cup;glass;television;tv,\"A person is laying on a bed eating while watching the television. They reach to the table and take a drink out of a glass.;A person lying on a bed ,drinking coffee, watching tv.\",c131 14.50 32.00;c106 5.10 18.80;c149 15.40 32.00;c134 0.00 32.00;c132 0.00 31.80,31.00\r\n8XCHK,9Y7F,Bedroom,6,7,Yes,\"One person runs in laughing wearing a blanket, and another person at a chair with homework smiles.\",blanket;book;chair;doorway;homework;paper,Person #1 is working on homework on the bed while sitting in a chair. Person #2 walks into the room with a blanket around their back.  Person #2 is smiling and talking with person #1.,c145 0.00 32.00;c059 0.00 32.00;c070 5.50 32.00;c152 7.30 32.00;c029 7.60 23.10;c149 5.80 23.40;c097 5.30 11.30,30.58\r\nL76ND,KFGP,Living room,6,7,Yes,\"Person walks into the Living room.  Person turns on the television.  Person sits in a chair, opens a box of cookies and eats the cookies.\",chair;food;television;tv,Person turns tv on and sits down on chair and starts watching tv and eating bag of chips.;Someone walks into the living room and turns on the TV and sits on a chair and eats something.,c059 9.20 31.00;c156 12.80 31.00;c062 9.60 17.70;c151 7.20 31.00;c061 4.20 31.00;c132 13.50 31.00,30.17\r\nHV20I,DXDI,Hallway,6,7,Yes,One person dresses in front of a mirror before leaving with a camera and a bottle of medicine.,camera;clothes;items;jacket;medicine;phone,A person standing in a hallway puts a jacket on and then bends down and picks up a camera and some medicine and carries them out of the room.;This person is standing in a hallway and putting on a jacket. This person also picks up a couple things and then walks off.,c015 12.00 18.40;c128 12.40 18.20;c148 0.00 13.50;c000 0.00 4.10;c001 0.00 10.20,19.00\r\nE5TW6,YMXV,Living room,6,7,Yes,A person was eating and drinking on the sofa.  A second person was lying on the sofa and talking on the phone.,bag;bed;bottle;food;phone;pillow;water,A person sitting on a bed eating out of a bag and drinking water.Another person laying on a bed talking on a phone.;A person sitting next to a pillow eats some food from a bag and drinks some water.  Another person is lying down nearby and talking on a phone.,c015 0.00 32.00;c076 0.00 32.00;c061 0.00 18.40;c135 0.00 32.00;c019 0.00 32.00;c156 0.00 17.90;c106 14.70 29.80;c134 0.00 32.00;c109 23.20 31.20;c110 13.90 26.00;c062 0.00 32.00;c107 14.20 30.70;c020 0.00 18.50,30.54\r\n08Y62,HR43,Kitchen,6,6,Yes,A person is cooking food on the stove while playing with the light switch,food;light;stove,\"A person is cooking on the stove. A person then turns off the light, and turns the light back on.\",c105 11.10 15.20;c104 11.20 15.50;c147 0.00 31.00,29.96\r\nLCKF3,BYF9,Recreation room / Man cave,5,6,Yes,A person is tidying and starts to use a vacuum. They look in a mirror and laugh.,floor;hair;mirror;vacuum,\"A person is vacuuming the floor and then looks into a mirror and smiles.;The person is vacuuming the floor, then they set the vacuum down and look at them self in the mirror.\",c094 15.70 26.00;c137 0.00 13.70;c154 10.80 16.40;c144 19.30 25.30;c127 0.00 15.10;c096 13.70 25.30,24.50\r\n0AGCS,HR43,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person stands in the doorway, holding a blanket before throwing it on a chair.\",blanket;chair;doorway,A person is standing in a doorway holding a blanket. The person throws the blanket on a chair.,c070 0.00 21.70;c074 17.60 22.50;c073 20.30 25.30,27.33\r\n2NV6L,D0RU,Bedroom,4,7,Yes,\"A person puts a pair of shoes into the closet, and takes a pillow from the shelf.\",bag;curtains;pillow;shelf;shoe,\"A person walks into a bedroom, then places shoes in a closet, then the person grabs a pillow from the closet, then tidies up the curtains and walks away.\",c053 5.70 21.10;c082 16.80 33.40;c076 19.00 34.00;c079 17.80 27.80;c054 3.70 19.00;c022 9.60 18.10;c078 19.50 26.30,33.25\r\nHKBKA,8718,Bedroom,6,7,Yes,\"A person walks up to the bed, eating a plate of food.\",bed;blanket;dish;food,\"A person walks over to a bed carrying a plate. After getting into bed, the person eats food from the plate.;A person grasping a dish of food, walks into a bedroom and lies on a bed, then gets under a blanket and begins eating.\",c134 11.90 24.90;c072 12.20 20.40;c118 4.80 16.00;c118 0.00 31.00;c061 0.00 31.00;c156 9.00 31.00;c120 9.00 31.00;c151 4.80 31.00;c151 5.10 11.00,30.08\r\n1Q6M7,PKND,Kitchen,7,7,Yes,\"A person is laughing as they look through the cabinet in the pantry. The person takes two items from the shelf, selects one, and leaves the other behind.\",bottle;cabinet;canister;food;hair,The people of Indian descent are repeatedly opening cabinets looking for a specific item. The item that they find is a blue canister with an orange top.;Some people are in the kitchen together opening the doors to the cabinets. They remove bottles from the cabinets. One person inspects the bottle and walks away. The other person strokes their hair.,c112 0.20 7.10;c113 0.00 5.20;c149 7.00 12.00;c063 0.50 6.50;c061 4.90 11.60,30.83\r\n2XVR0,UTMU,Kitchen,5,7,Yes,A person is seen grasping a sandwich as they do homework. They take some dishes and put them on a shelf.,dish;food;homework;paper;sandwich;shelf,\"A person is eating a sandwich while doing homework. A person then puts dishes away.;A person is  holding a sandwich while working on some homework, tehy then begin to put dishes away on a shelf.\",c068 13.80 20.00;c081 20.10 33.10;c119 14.30 21.30;c067 0.00 21.10;c145 2.20 19.80;c118 16.10 32.90;c061 0.00 24.30;c062 19.30 32.60,33.21\r\n5M49C,9Y7F,Home Office / Study (A room in a house used for work),6,7,Yes,One person is tidying the office with a broom. Another person holds a sandwich while playing a game on a laptop.,bed;broom;floor;laptop,A person is sitting on a bed working on a laptop while holding something. Another person is walking around sweeping with a broom.,c047 0.00 32.00;c052 0.00 32.00;c102 0.10 28.50;c135 0.00 32.00;c127 0.00 28.30,30.54\r\nR9TL9,4OHY,Dining room,6,7,Yes,A person is seen standing with a pair of shoes in their hands. They then start sneezing and pick up a vacuum,clothes;shoe;vacuum,A person is walking around while holding some shoes. The person sneezes then starts using a vacuum.,c137 22.20 31.00;c153 0.20 25.00;c053 0.00 31.00;c000 0.00 31.00,29.58\r\n9RA4P,P6LJ,Recreation room / Man cave,6,6,Yes,A person opens the door to the rec room and rushes to tidying the sofa for their friend.,blanket;closet/cabinet;door;pillow;sofa,\"A person walks to a door. They open and leave, then return. They tidy up a sofa.\",c006 3.10 12.00;c008 1.10 7.90;c097 2.10 7.90;c077 18.50 26.30;c075 27.20 43.50;c113 0.30 12.70;c071 27.40 40.60,51.12\r\n9PAQ4,HJJ4,Basement (A room below the ground floor),5,7,Yes,\"A person is in a basement working on a game on their phone, they then take off their shoes and run out the room.\",chair;phone;pocket;shoe,\"A person is sitting in a chair playing on their phone. The person takes off their shoes and walks away.;A person is sitting is sitting in a cluttered room, doing something on their cell phone.  Once they finish, they put their phone away, take their shoes off, get up from their chair, and walk away.\",c015 0.00 14.60;c154 14.80 19.40;c059 0.00 19.00;c057 11.90 16.70;c054 11.70 18.20;c058 11.40 18.20;c016 0.00 14.90,19.08\r\n6X0OV,BYF9,Living room,5,6,Yes,A person is standing in the living room holding a cup of coffee.  The person sits down in the chair and takes a bottle of medicine off the table.,chair;coffee;cup;glass;medicine;table,A person sits in a chair while holding a cup of coffee.,c107 0.00 18.00;c059 5.40 18.00;c011 2.60 18.00;c151 2.30 7.30,16.79\r\n229ZR,D0RU,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is sitting in a doorway while another person is playing with a door.,chair;door,\"One person is standing in a doorway and another person is sitting in a chair outside the doorway. The person in the doorway swings the door back and forth and the person in the chair swings their leg. The person from the doorway walks out of the picture.;A person is standing in a doorway, opening and closing a door, while another person is sitting in a chair kicking their leg\",c059 0.00 41.00;c152 28.80 34.80,40.42\r\n1ES35,28B0,Hallway,5,7,Yes,A person is playing with a camera and another person is holding a blanket.,blanket;camera;doorway;phone,\"A person standing in a hallway is holding a camera, while another person walks out from a room carrying a blanket talks to the person holding the camera then walks away.\",c070 0.10 13.40;c015 0.00 17.00;c097 0.90 12.30;c016 0.00 17.00,15.79\r\nSL9P2,3531,Basement (A room below the ground floor),6,5,Yes,\"In the basement, a person is playing on their laptop while drinking some medicine from a rather large cup.\",cup;floor;glass;laptop;medicine,person working on laptop sitting down taking medicine and drinking,c047 0.00 32.00;c106 26.00 32.00;c129 16.60 32.00;c108 19.10 27.20;c125 0.00 32.00;c128 10.20 32.00;c110 8.20 13.60;c109 25.50 31.10;c052 0.00 11.90,31.25\r\nHXQ55,3531,Kitchen,6,6,Yes,A person is standing in front of the window drinking a cup of coffee and holding a newspaper.  The person puts their coffee down on the desk and throws the newspaper in the garbage.,cup;glass;newspaper;paper/notebook,A person drinks while looking at a newspaper than throws it out.,c106 0.00 26.50;c109 21.80 29.50;c116 30.80 35.00;c115 0.00 35.00,33.75\r\n47Y1X,DXDI,Pantry,6,7,Yes,a person eating food in pantry smiling at the camera,bowl;counter;food;spoon,\"A person is eating food, they then smile as they are eating.;A person standing and just holding a bowl and eating food.\",c061 0.00 34.00;c156 0.00 34.00;c152 0.00 4.00,33.42\r\nMU54W,L4ZP,Living room,6,6,Yes,A person is smiling while snuggling a big fluffy blanket after cleaning the entryway with a vacuum.,blanket;doorway;vacuum,A person is holding a vacuum. A person is snuggling with a blanket.,c072 17.90 27.00;c137 0.00 12.00;c097 0.60 6.00;c073 9.70 24.60,26.04\r\n8ASRQ,L4ZP,Living room,6,6,Yes,\"After removing his shoes, the person stood abruptly and threw his book and homework in the corner eager to be done with school for the day.\",book;clothes;paper;phone;picture;shoe,\"A person is sitting down untying both of their shoes before getting up, throwing a book and then leaving the room.;A person takes off shoes while sitting on a chair.\",c031 12.00 17.00;c154 14.00 19.00;c030 11.50 19.00;c117 11.50 19.00;c057 0.00 15.40;c148 0.00 15.30,18.12\r\nW4C5O,XXN8,Hallway,5,7,Yes,A person drinks from a glass and then smiles while holding a towel.,cup;dish;glass;towel,\"A person is standing in front to a door holding a glass. The person takes a sip from the glass, smiles and then holds up a towel. The person repeats this two more times.\",c033 15.20 21.90;c106 0.00 8.20;c152 14.90 21.60;c118 0.00 29.80;c154 26.60 32.00,30.71\r\n6B8PQ,ID9V,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,A person dresses in winter clothes before taking a book and leaving the room.,book;clothes,\"A person dresses in some clothes next to a door, grabs a book, then walks through the doorway.\",,39.33\r\nDV31C,YRJD,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person throws a towel on a chair then takes the glass off the table.,cup;glass;table;towel,A person throws a towel onto a table and picks up a glass.,c009 39.10 48.00;c110 20.10 29.10,47.42\r\nYJFWW,YA10,Garage,6,7,Yes,\"One person runs into the garage with a phone and a cup of coffee, then starts playing with the phone.\",coffee;cup;glass;phone,A person runs into a garage holding a phone and a cup of coffee. The person plays on the phone.,c015 0.90 32.00;c016 0.90 32.00;c107 0.50 32.00;c150 0.00 6.10,30.71\r\n6FSAH,PO5L,Kitchen,5,7,Yes,A person takes food out of the wrapper and begins cooking it on the stove. The person checks their phone.,box;food;phone;stove,A person walks into a kitchen and approaches the stove. The person removes some food from its packaging and places it on the stove. The person then looks down at the phone.,c015 13.60 25.40;c061 1.20 15.80;c062 3.20 15.20;c063 3.10 15.20;c040 2.30 14.60;c042 2.30 14.60;c041 2.30 14.60;c016 13.70 25.00;c043 2.30 14.60,26.54\r\nEFI64,8718,Hallway,4,2,Yes,A person sits at a desk eating a banana with coffee watching their laptop,coffee;cup;desk;laptop;sofa,\"person sitting on the sofa, drinking coffee and watching laptop kept something on the desk;person sitting on the sofa, watching something in the laptop drinking some coffee\",c051 18.00 26.90;c106 0.00 5.70;c123 0.00 31.00;c107 0.00 2.60;c052 2.30 17.10;c107 0.00 31.00;c052 0.00 31.00;c109 0.00 31.00;c047 0.00 31.00,30.33\r\nA6UKL,DXDI,Living room,6,7,Yes,\"One person throws down their homework, then fixes a camera by a window before leaving the room.\",camera;chair;homework;paper/notebook;phone;shelf;sofa/couch,A person is holding their homework and puts it on a chair. A person then begins playing with a camera.;A person is walking to a shelf picks up a camera and then puts it down again and leaves the room,c015 7.10 25.20;c151 5.70 12.50;c081 14.80 23.40;c016 4.00 23.70;c017 16.60 23.60;c123 4.50 23.80;c154 19.60 24.70;c115 0.00 4.70;c116 0.00 5.40,25.42\r\nTX7K1,YMXV,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person sits at a desk, watching a movie on their laptop. The person opens a desk drawer and removes a picture in a frame, which they look at.\",chair;desk;drawer;laptop;shelf;table,A person is sitting at a computer desk looking at his laptop and shaking his hands. He then hits himself in the head. He opens a drawer and starts looking through it for something.,c051 0.00 16.40;c011 0.00 32.00;c149 0.00 14.20;c059 0.00 32.00;c082 0.00 32.00,31.21\r\nRVV5Q,UTMU,Basement (A room below the ground floor),4,6,Yes,A person walks into the basement and turns on the light.  The person stands in front of the table and takes a picture of it with their phone.,light;phone;picture;table,\"A person enters a basement, and begins to walk down some stairs. The person turns on a light switch and then looks at their phone.\",c016 6.80 17.70;c104 0.90 6.60;c015 1.00 19.00,17.88\r\nENFL6,DJ17,Bedroom,6,6,Yes,\"One person works on homework as another person holding a bag puts a blanket into it, then throws the bag down.\",bag;bed;blanket;clothes;homework;paper;shelf,A person is taking things off of a shelf and packing a bag while another person sits on the bed doing homework.;A person is taking some clothes off of a shelf and placing them in a bag. Another person is sitting on a bed doing homework.,c145 0.00 34.00;c020 3.60 26.60;c021 4.60 10.40;c022 3.90 18.60;c001 1.30 24.30;c135 0.00 34.00;c002 1.30 24.90;c023 2.80 7.60;c071 4.60 12.80,32.75\r\nR2RBJ,C7O9,Bathroom,7,7,Yes,A person sits in a chair while talking on the phone. The person takes a tissue and sneezes into it.,chair;kleenex;phone,A person is sitting and talking on the phone. The person grabs a kleenex quickly when they sneeze twice. Then they bring the phone back up to their ear.,c015 0.00 30.00;c059 0.00 30.00;c153 20.40 30.00;c019 0.00 30.00,29.38\r\n82XPD,Z68L,Bathroom,5,,No,\"A person starts sneezing after taking off a pair of shoes and has to open the bathroom door, laughing the whole while.\",door;light;mirror;shoes;sink;woman,A woman looking into a mirrow and turning a light on.;A person smiles at their reflection in the mirror then turn on the light.,c149 19.00 25.00;c104 17.90 22.10;c096 3.20 21.50,24.04\r\nNIEUC,QB52,Recreation room / Man cave,6,7,Yes,A person sitting next to a vacuum in a recreation room is watching a phone.,chair;phone;table,A person is sitting playing on a phone,c016 0.00 31.00;c011 0.00 31.00;c015 0.00 31.00;c059 0.00 31.00,29.54\r\nZLWXE,O1YY,Bedroom,5,6,Yes,\"The person was sitting at his desk laughing at a book he was reading.  Despite the book being funny, the person grew tired of it and threw it on the table and decided to go to bed.\",book;chair;desk;table,\"Person reading a book, laughing at what he is looking at, and then puts it down to leave the room\",c009 21.00 26.30;c025 19.90 25.00;c154 22.30 30.30;c029 0.90 12.40;c152 0.90 12.40;c011 0.00 28.10;c059 0.00 27.90;c032 0.00 37.00;c026 0.00 37.00,36.42\r\nH3CDC,5LWB,Bedroom,6,6,Yes,A person is opens the cabinet and takes out a towel.  The person holds the towel in one hand while taking off their shoes with the other.,blanket;cabinet;floor;hand;shoe;towel,There is a person that opens a cabinet and takes out a towel.  There is another person who is picking up shoes and clothes off the floor.,c035 2.20 7.80;c056 9.80 15.20;c112 3.20 7.90;c113 0.00 5.90;c073 2.40 8.70;c127 9.20 15.50;c070 2.50 9.40,19.29\r\nZRG93,HJJ4,Pantry,6,6,Yes,One person stands by a cabinet with a vacuum and sneezes. Another person throws a phone down on a table.,bag;cabinet;floor;phone;table;vacuum,\"A person is holding a vacuum and cleaning the floor in front of a cabinet. The person sneezes. Another person is standing in the room looking at a phone. The person throws a phone onto a table.;A person is vacuuming, sneezes, while another person throws a bag on the table.\",c015 0.00 5.70;c137 0.00 8.00;c153 0.00 6.40;c127 0.00 8.00;c009 0.50 5.30;c016 0.00 4.40,7.33\r\nQU2WL,D0RU,Recreation room / Man cave,7,7,Yes,\"The person is talking on the phone while sitting at their desk. They are eating a sandwich, and pouring a drink.\",bottle;chair;cup;desk;drink;food;phone;table,\"The person is on the phone, walking across the room.  He goes to the table, starts eating, sits down, also takes a drink, all while on the phone.;A person is walking around a room while talking on the phone. The person walks to a table, pours a drink and sits down.\",c015 0.00 35.00;c019 0.00 35.00;c151 19.70 35.00;c106 26.40 32.80;c059 22.10 35.00;c107 18.20 29.10;c061 8.80 20.80;c063 10.80 18.80;c110 17.90 26.70;c108 18.50 25.60;c156 12.00 19.10;c109 24.00 29.20;c011 20.60 35.00,34.21\r\n8L9LQ,2RTW,Bedroom,6,6,Yes,A person is sitting in a chair at a desk in the living room. The person drinks from a glass of water.,chair;cup;desk;glass;laptop;table;water,A person is sitting at a desk in front of a laptop drinking a glass of water.,c009 11.60 18.20;c106 0.00 32.00;c059 0.00 32.00,30.54\r\nJ3ZQS,2RTW,Living room,6,6,Yes,A person opens a bag and puts their homework inside. The person takes a drink of their coffee and leaves the room.,backpack;bag;book;coffee;cup;glass;homework;paper;sofa;table,\"A person sitting on a sofa grabs a backpack and takes out their homework. The person tidies the homework and puts in the bag. The person drinks from a cup of coffee, and then grabs the bag and leaves the room.;There is a person sitting on a sofa with a bag.  That person takes homework out of the bag and puts it back.  That same person drinks coffee from a mug.;A person sitting on a sofa takes a book out of a bag and puts it and some homework from a table in front of them back into the bag. They take a sip of coffee and then leave.\",c115 11.50 21.10;c123 0.00 34.00;c154 29.60 36.70;c106 25.90 33.80;c110 25.10 29.90;c116 4.60 24.30;c145 8.50 23.10;c023 0.00 4.10;c117 5.80 11.20;c021 1.30 7.50;c009 28.80 34.00;c011 0.00 35.40;c116 18.10 27.00,39.00\r\nQRZK5,T7C3,Living room,6,7,Yes,\"A person lying on their living room floor, eating a sandwich while watching TV and doing their homework, suddenly runs to a cabinet and retrieves a box.\",book;box;dishes;floor;food;homework;plate;sandwich;television,\"A person is lying on floor eating a sandwich, doing homework in a book and watching television, then puts a dish in a box;A person watching television and eating a sandwich while laying on the floor and reading book,after a while the person gets up to grab a box.\",c040 35.30 41.00;c065 12.10 18.70;c132 5.30 13.30;c132 12.90 19.70;c043 34.30 41.00;c067 0.00 41.00;c156 10.70 15.70;c154 33.10 37.50;c032 0.00 33.10;c124 0.00 35.10;c061 8.10 14.50,39.62\r\nPH3R3,WG9D,Dining room,7,7,Yes,A person is seen watching videos on their laptop. They begin drinking coffee from a cup.,chair;coffee;cup;laptop;table;video,\"the person sitting in front of the laptop, watching movie and drinking coffee\",c106 1.90 8.40;c051 0.00 9.00;c059 0.00 9.00;c011 0.00 9.00,8.29\r\n7C9RP,0KZ7,Bathroom,6,7,Yes,\"A person turns on the light in the bathroom, begins undressing, and sees another person snuggling with a glass.\",clothes;doorway;floor;glass;jacket;light;shirt,\"A person walks into a bathroom and turns on the light. The person walks over to the sink and begins taking off some clothes. Another person is sitting on the floor holding a glass in a corner.;A person is taking of a shirt, and a jacket, while another person is sitting on the floor.\",c104 1.60 5.90;c155 2.90 14.30;c001 10.30 15.60;c155 11.70 28.80;c097 0.10 5.60,27.62\r\n7ELBG,OUKK,Living room,6,7,Yes,A person is running around the table washing it with a washcloth.  The person puts a box on the table and pulls out a light and a blanket.  The person then sneezes.,blanket;bow;box;camera;cloth;light;picture;stand;table;towel,A person taking a cloth and wiping down a stand.The person picks up a box and puts it on a stand .The person takes a blanket out of the box and takes some picture.;A person carries a cleaning towel into the living room where they dust the coffee table while walking around it multiple times. They pick a box up from the floor and set it on the corner of the coffee table. The person removes a blanket and a flashlight from the box. They turn on the light and shine it in a few directions before turning it off and exiting the room.,c009 10.00 18.40;c070 14.20 37.60;c042 17.70 26.00;c033 20.80 38.00;c012 0.00 12.60;c073 13.70 23.80;c043 9.40 14.60;c104 23.10 31.00;c087 21.60 31.20;c013 0.00 12.80;c041 11.50 17.30;c044 14.40 28.10;c002 19.50 32.90,38.54\r\nXWQ3Z,PO5L,Hallway,6,5,Yes,A person is lying on a pile of clothes throwing pillows.,clothes;floor;pillow,A  person is lying on the floor and throws two pillows.;The person lays down in the hallway on a pile of clothes before grabbing two pillows and throwing them.,c076 1.00 13.60;c079 1.10 6.70;c080 6.40 14.50;c154 11.60 18.20;c124 0.00 16.40;c127 2.00 15.00;c151 1.00 7.40;c125 11.60 16.60,18.25\r\nQWTGZ,YA10,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is holding a pillow looking in their closet while playing a game on their phone,phone;pillow,A person holding a pillow looks at their phone. The person plays with their phone.,c015 0.00 31.00;c016 0.00 31.00;c076 0.00 31.00,30.25\r\nF56YP,HJJ4,Stairs,7,7,Yes,\"A person is closing a box and sneezing, then kissing a picture in a glass frame on the stairs.\",box;picture,\"There is a person sitting on the stairs holding a box,  That same person closes the box and sits it down beside them.  That same person then picks up a picture.\",c039 0.00 4.80;c040 0.00 9.00;c084 8.30 17.00;c042 0.00 9.70;c088 7.70 17.00;c083 7.50 13.60;c086 13.50 17.00,15.54\r\nCVX9F,6NQX,Kitchen,6,7,Yes,\"A person is in their kitchen holding a camera. They take a picture of the stove, and leave.\",camera;food;phone;picture;stove,There is a person putting something on top of a stove.  That same person then takes a picture of the stove with a camera.;A person is cooking at a stove they are using their phone to take pictures of the pan on the stove.,c087 0.00 6.70;c147 2.50 8.20;c015 5.10 14.10;c087 11.50 18.00;c016 2.00 17.00,16.58\r\n91SQ4,0RNU,Garage,4,,Yes,Person is opening box full of clothes then starts running to doorway.,box;clothes;door,A person is removing lots of clothes from a box.  The person then drops them and runs out of the room.,c000 4.50 17.70;c041 0.00 8.30;c150 13.70 20.30;c044 6.50 12.40;c006 15.90 21.00;c002 4.10 15.40;c008 14.70 19.90,19.88\r\nQTGM5,DLI2,Kitchen,6,7,Yes,A person laughs as they look into the refrigerator. The person takes an item from the shelf and leaves.,cup/glass/bottle;juice;refrigerator,A person is looking in the refrigerator for something and then grabs the juice.,c142 16.60 22.50;c143 1.50 11.00;c110 15.50 21.10;c107 17.30 25.50,31.58\r\n81QUM,YMXV,Bedroom,5,7,Yes,\"Person is tidying up floor with broom, then starts throwing shoes and starts laughing.\",broom;door;floor;shoe,\"Person bending down sweeping floor with broom. Then puts broom next to door. Then person picks up shoes and toss it to the other side of room, person claps and smiles.;A person is sweeping the floor. Then tosses some shoes.\",c126 18.80 24.40;c056 16.70 24.00;c098 0.00 19.60;c102 0.00 19.60;c152 22.70 29.40;c058 18.40 24.40;c099 15.00 19.70;c149 22.50 29.00;c127 0.00 19.30,30.75\r\nTVQO9,DXDI,Dining room,5,7,Yes,Person is standing in dining room snuggling with clothes while drinking cup of coffee.,blanket;clothes;cup;dish,The person holds a cup. The person rubs their face with clothes. The person takes a few steps. The person drinks from the cup and rubs their face with the clothes again.,c106 2.30 9.00;c107 0.00 32.00;c000 0.00 32.00;c072 0.00 9.00;c072 5.20 16.70;c118 0.00 32.00;c070 0.00 32.00,30.58\r\nGK7S7,YA10,Living room,6,7,Yes,\"A person is lying on the couch, drinking a glass of water.  A second person is walking around the room, using a camera to photograph the first person.\",camera;couch;cup;glass;phone;picture;sofa;water,A person is holding a camera and taking a picture of a person lying on a couch with a glass of water in their hands.;Person #1 is lying on a couch drinking from a glass and laughing. Person #2 is walking around taking pictures of person #1.,c106 0.00 5.00;c107 0.10 5.30;c122 0.00 4.30;c015 0.00 5.80;c087 1.60 7.40;c016 0.00 31.00,30.21\r\nQ81A4,R1OT,Dining room,5,6,Yes,A person is standing around with a towel over their shoulder grasping a broom.,broom;towel,A person throws a towel over their shoulder before holding and inspecting a broom.,c098 2.70 22.00;c033 0.00 6.20;c036 0.20 5.90;c100 2.70 22.00;c035 0.00 4.50,20.96\r\nZ5KH4,EXQX,Closet / Walk-in closet / Spear closet,5,5,Yes,\"A person is standing in the closet looking in the mirror.  The mirror is slightly crooked, so the person fixes it and grabs the broom from the corner.\",broom;mirror,The person is fixing a mirror on the wall. The the person walks over and picks up a broom and starts picking at it.,c096 0.00 41.30;c098 11.00 61.00,60.38\r\nMX9XB,8IB8,Bedroom,6,4,Yes,Person is sitting on chair opening bag of candy then starts throwing it at vacuum cleaner.,bag;chair;floor;food;vacuum,Person throwing food out of a bag at a vacuum while dancing around fast.;A person holds a bag of food and throws things at a vacuum cleaner before throwing the bag and walking away.,c020 0.00 34.60;c024 27.80 34.60;c064 28.30 36.00;c126 0.00 36.00;c021 0.00 4.10;c061 0.00 36.00,35.42\r\n3UO56,XXN8,Laundry room,5,6,Yes,A person is putting some clothes away. The person starts smiling when they look in a mirror.,clothes;mirror,person folding closes looks in a mirror smiling,,29.92\r\nEABOI,YMXV,Basement (A room below the ground floor),4,4,Yes,A person is lying on their bed surfing the web on their phone. They laugh at something funny they find online.,bed;phone,Person is lying in a bed and playing on a cell phone.,c015 0.00 34.00;c016 11.50 34.00;c134 0.00 34.00,32.83\r\nWIEI2,T7C3,Stairs,6,5,Yes,A person is smiling while holding a sandwich and a bag.,bag;groceries;sandwich;stairs,\"A person is sitting at the base of a stairwell with a grocery bag in one hand and a sandwich in the other. The person keeps looking at the sandwich as if hesitating to eat it.;A person, sitting on the stairs, is holding a bag of groceries and looking at a sandwich in their hand.  They are smiling.\",c020 0.00 33.00;c067 0.00 33.00,32.21\r\n40F42,R1OT,Basement (A room below the ground floor),3,5,Yes,\"A person is in a basement awakening by a small window, they then start dressing by a cabinet.\",bed;cabinet;closet;clothes;shirt,\"A person is lying in the bed and wakes up. A person opens a wardrobe, and takes off a shirt.;Person lying in the bed get up and go to the cabinet. and undress and look into the cabinet.\",c154 3.50 9.10;c134 0.00 7.50;c113 7.30 14.10;c146 0.00 8.10;c155 11.20 18.80;c001 17.20 21.70;c133 0.00 8.10,22.96\r\nZPUVC,P6LJ,Bedroom,6,6,Yes,\"One person runs in through the doorway, grasps a bag from the wardrobe and starts undressing.\",bag;closet;clothes;cloths;door;jacket;purse;wardrobe,\"A person opens a door, and then closes it. Then they take off their coat.;Someone walks out the room and runs back in. They open their wardrobe and grabs a purse and sets it on their dressing. Then, they take off their jacket.\",c097 0.20 5.00;c020 9.50 15.50;c023 12.90 21.30;c155 17.60 30.10;c022 0.00 3.90;c150 0.00 2.60;c113 0.00 3.00;c008 0.00 3.00;c112 10.20 15.80;c003 26.70 31.60;c000 25.10 30.20;c024 13.20 21.00,31.33\r\nUGF6Q,OUKK,Laundry room,3,5,Yes,A person is washing clothes in the laundry room while holding a book. The person puts the book down on the shelf and begins folding a blanket.,blanket;book;cabinet;clothes;cupboard;shelf;towel,\"A person read a book, put the book in a cupboard, opened a clothes dryer, removed a blanket from the dryer, and folded it.;Person standing in a room reading a book, person opens the dryer and take a blanket out and fold it\",c070 17.60 31.00;c073 16.80 23.00;c026 0.00 16.40;c028 11.10 18.20;c074 25.40 31.00;c029 6.80 12.90;c075 19.10 25.70;c032 9.20 14.50;c027 0.00 4.10;c081 9.80 16.30;c025 11.20 16.10;c035 18.70 23.90;c075 17.50 31.00;c032 0.00 15.10,29.67\r\nMUO4G,5LWB,Dining room,7,5,Yes,The person is laughing while opening the refrigerator and another person is at the table.,doorknob;refrigerator;table,\"A person is sitting on the counter, while another person is looking in the refrigerator.\",c143 4.70 12.80;c149 14.30 19.00;c010 0.00 6.70;c141 4.00 11.40;c152 5.50 19.00,18.46\r\n6QDZI,ZAWX,Bedroom,6,5,Yes,A person snuggles up to a towel in bed. The person opens a book and begins reading.,bed;book;towel,\"The person is laying on the bed sleeping. The person sits up, grabs a towel, and wipes their face with it. The person then stands up and grabs a book. The person sits down on the bed and starts reading the book.\",c026 12.70 18.60;c030 12.40 18.50;c134 0.00 5.80;c154 10.50 16.50;c027 14.30 19.90;c032 15.70 31.00;c135 16.50 31.00;c133 1.10 14.20;c036 8.80 13.80;c038 5.20 12.50;c035 3.60 9.20;c133 28.50 31.00;c036 28.50 31.00;c038 28.50 31.00;c035 28.50 31.00,30.50\r\nLOBSL,KASL,Recreation room / Man cave,7,7,Yes,\"A person walks over to the desk. The person takes a cup of coffee from the desk, and drinks from it.\",chair;coffee;cup;desk;door;glass;laptop;television,\"The person walked into the room and sat in the chair. The person then watched what was on the computer screens.;A person walks into a room, sits down in a chair and looks at a laptop. The person drinks coffee in a mug.\",c106 17.20 35.00;c047 14.00 20.30;c059 11.30 37.00;c008 0.40 6.70;c132 2.70 37.00;c097 1.10 6.70;c151 8.70 15.60,36.25\r\nBAFYG,0KZ7,Stairs,7,7,Yes,A person runs down their stairs when they suddenly stop when they see an insect walking across a picture hanging on the wall. They watch it closely until their phone rings.,doorway;phone;picture;wall,Person walks down stairs and examines a picture on wall.,c088 3.30 29.00;c097 0.00 7.60,28.38\r\nFC7C1,8718,Bathroom,5,7,Yes,A person is washing the mirror class with a paper towel. The person pours some window cleaner onto the paper towel and continues to work.,bottle;cleaner;cup;mirror;towel,A person is cleaning a mirror. A person then sprays more cleaner on a mirror.;A person is cleaning a mirror. A person picks up a spray bottle and sprays on the mirror.,c095 0.00 32.90;c033 10.70 33.00;c111 0.00 33.00;c038 0.00 6.30;c038 11.10 22.50;c107 3.10 11.50,32.00\r\n5T607,P6LJ,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is tidying up a shelf. The person is seeing the clock's reflection in the mirror and is running to the door and is turning the doorknob.,cabinet;door;mirror;shelf;table,\"A person walks to a draw and opens it. They remove some items, close the drawer, then run and open the door and close it.\",c008 29.50 37.90;c141 29.50 41.00;c006 33.30 39.90;c009 8.10 14.80;c150 27.10 34.80;c112 20.30 26.10;c012 5.80 30.50,41.21\r\n67PZ0,XXN8,Kitchen,6,6,Yes,\"A person walks into their kitchen eating a sandwich. The person turns on the kitchen light. The person grabs a glass, fills it with water, and begins drinking the water.\",glass;light;sandwich;water,A person is standing in the kitchen eating a sandwich. They then drink a glass of water.,,32.12\r\n5ZXR3,YMXV,Bedroom,5,,No,A person is fixing their camera in their laundry room. They smile in the mirror and leave.,clothes;door;mirror,A person is looking through a clothing in a closet. The person then goes to a mirror and tidies himself. The person then proceeds to open the door and walk out the room.,c096 13.90 25.70;c004 0.00 15.20;c006 27.00 32.00;c097 24.00 32.00;c008 21.80 27.60,31.08\r\nTJ3GZ,ID9V,Bedroom,4,7,Yes,A person is putting on shoes in the bedroom.  The person is drinking coffee and watching television.,chair;cup;shoe;television,\"A person sitting and watching television enjoying a cup of something, while watching the tv puts on shoes.\",c053 3.90 18.60;c055 5.80 20.80;c055 3.50 13.80;c132 10.10 30.00;c059 0.00 30.00;c106 8.90 18.00,28.88\r\nS37QK,9PLL,Bathroom,7,7,Yes,A person is standing in the bathroom grasping a sandwich.  The person throws the sandwich in the garbage and picks up a pile of clothes from the floor.  The person smiles and leaves the room.,clothes;doorway;floor;sandwich,\"A smiling person holding a sandwich throws it in the garbage bin, then picks up some clothes from the floor and leaves.\",c000 14.70 33.00;c127 12.60 24.80;c067 0.00 9.70;c068 3.30 9.90;c152 25.80 33.00;c002 12.80 33.00;c097 24.30 33.00,32.04\r\n9PSZA,QB52,Home Office / Study (A room in a house used for work),7,7,Yes,A person is throwing shoes and then grasping a medicine bottle in the recreation room / man cave.,chair;desk;floor;medicine;pill bottle;shoe;table,A person throws their shoes down and then picks up a bottle of medicine while sitting in a chair at a desk.;A person is sitting in chair looking at shoes that they then throw on the floor. They pick up a pill bottle and inspect it.,c128 8.70 31.00;c053 0.00 12.20;c011 0.00 31.00;c058 3.30 13.40;c126 4.00 13.90,30.04\r\nUJ69X,CCI9,Stairs,7,5,Yes,\"One person runs up the stairs drinking, then sneezes and throws down a stack of homework on a desk at the top of the stairs.\",homework;paper;table,A person is walking up stairs holding homework then places it on a table.;A person is walking up the stairs then they set some papers on a small table.,c116 17.00 24.20;c009 17.00 24.20;c154 0.00 32.00;c115 0.00 23.90,31.29\r\nEWY6I,5LWB,Dining room,7,7,Yes,A person drinks a cup of coffee and watches as someone sets some groceries on the table next to them.,bag;chair;coffee;cup;dish;glass;groceries;table,One person is putting groceries in a bag while another is sitting next to him in a chair drinking coffee.;There is a person standing at a table putting groceries in a bag.  There is another person sitting at the table drinking out of a glass.,c106 0.00 10.20;c011 0.00 25.00;c130 0.00 25.00;c020 0.00 25.00;c118 0.00 25.00;c059 0.00 25.00,23.92\r\n24XDE,YA10,Garage,6,7,Yes,A person puts a book on a shelf then begins dressing while smiling the whole time.,book;clothes;cup/glass/bottle;jacket;man;shelf,\"A person holding a book walks into a garage and places the book on a shelf. The person puts on a jacket, zips it up, and then adjust the bottom of the jacket.;a man putting a book on a shelf and putting on a jacket.\",c081 0.00 8.10;c028 0.00 8.40;c152 0.00 6.70;c148 10.20 20.50;c026 0.00 29.00;c148 4.40 14.20;c109 3.40 8.10,28.25\r\n8DQ3V,YMXV,Home Office / Study (A room in a house used for work),6,7,Yes,A person is smiling at a window while another person is snuggling with a laptop.,chair;laptop;window,\"There are two people in the video.  Person one is standing at a window talking and laughing.  person 2 walks into the room, sits at a computer, and puts his head down.;A person is looking out a window, laughing. Another person sits down in a chair and lays their head on a laptop.\",c092 0.00 13.50;c051 12.20 16.70;c152 0.00 3.80;c151 10.60 16.60;c149 0.00 2.50,31.79\r\nTX1HS,I4RP,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person walks into hallway sweeping with broom. They knock a glass off of a laptop, lying on the floor, pouring water out.\",broom;coffee;floor;glass;poster;wall,A person is standing in front of the front door sweeping the floor and knocking a glass beneath a poster that is on the wall.;A person is sweeping the entry way when they knock over a cup of coffee with their broom.,c127 0.00 3.70;c102 0.00 4.00,2.79\r\n6PST8,UTMU,Laundry room,5,7,Yes,\"A person while holding groceries in the laundry room, A person stands holding a broom in the laundry room.\",bag;broom;clothes;groceries,A person walks into the garage with groceries in their hand and picks up and holds a broom.,c098 2.60 35.00;c020 0.00 34.10;c100 1.10 37.00,36.46\r\n1VUDV,HR43,Kitchen,6,7,Yes,A person laughs as they cook food on the stove. The person takes a glass of water from the table and takes a drink.,dish;food;glass;pot;stove,There is a person standing at the stove cooking with pot.  That same person then walks over and picks up a glass and takes a drink.,c147 0.00 8.60;c149 13.90 22.50;c106 26.40 31.30;c107 18.00 32.00;c110 18.20 23.50;c120 18.20 23.50,30.50\r\n4Y8FU,LFHN,Bedroom,7,6,Yes,A person leaves food on the pillow in the bedroom. A person sits on the pillow and takes a nap.,banana;bed;food;pillow;window,The person walks in the room and puts a banana on the pillow and then climbs on the bed then leans up against the window and sits indian style and falls asleep.;A person walks into their bedroom and places a banana on the pillow. They then sit down on the bed and fall asleep sitting up.,c061 0.00 6.20;c062 1.00 7.10;c151 5.00 13.20;c135 8.50 33.00,31.88\r\nWVY77,2Q9D,Living room,6,6,Yes,\"A person walks into the room holding a laptop and a glass of soda, then leaves the room.\",blanket;cup;drink;glass;laptop;sofa;television,\"A person is holding a laptop and drinking a glass of soda then walking out of the room.;A person walks into the living room and takes some sips of something in a glass, then walks back out of the living room.\",c047 0.60 25.40;c106 2.30 20.10,26.96\r\n29UVO,2Q9D,Living room,6,6,Yes,The person is snuggling with a blanket on the sofa while watching television.,blanket;chair;couch;pillow;remote control;sofa;television;tv,A person is sitting on the couch snuggling a blanket and changing the channel on the TV.;The person snuggled with a blanket on the sofa in the living room. They used the TV remote.,c132 0.00 29.50;c072 0.80 12.30;c123 0.00 31.00;c059 0.00 31.00;c078 0.00 31.00;c070 0.00 31.00,29.88\r\nRRZU3,2Q9D,Living room,6,6,Yes,\"A person runs into the living room, holding a laptop. The person lies down on the couch, and takes a drink from a nearby cup of coffee.\",cup;dish;glass;laptop;sofa,\"A person runs into the room holding a laptop, and dives back-first onto a sofa.  The person opens the laptop then takes a drink from a coffee mug on the floor, setting the mug back down before typing on the laptop.\",c047 0.50 32.00;c051 4.70 32.00;c122 2.70 32.00;c107 7.50 23.40;c048 3.30 11.00;c052 6.50 32.00;c106 9.50 21.60;c150 0.00 6.30;c119 16.90 22.20;c151 2.00 32.00,31.00\r\nT0WKT,9Y7F,Stairs,5,5,Yes,\"One person tidies up the stairs, throwing a book and blanket in a big bag before closing it.\",bag;blanket;book;clothes;floor;table,\"A person is tidying something on the stairs, then he picks up a book and blanket and places them inside a bag.\",c021 26.30 32.00;c026 21.60 31.30;c030 16.40 25.90;c071 18.40 26.90;c023 23.20 29.50;c028 23.20 28.40;c070 18.20 29.90;c073 17.00 22.70;c127 2.30 32.00;c020 25.60 32.00;c001 17.00 30.00;c009 7.00 13.00;c002 17.00 21.00;c116 12.00 19.00;c117 9.00 17.00,30.83\r\nUQW95,ZSRZ,Kitchen,7,7,Yes,A person is cooking at the stove. The open a box of food and pour it into a pot.,box;food;good;stove,A person is cooking on the stove then they open a box and pour it in the pot they are cooking with.,c147 3.30 19.60;c041 8.00 15.80;c147 1.40 11.70,21.88\r\n2FECZ,0RNU,Garage,5,7,Yes,\"A person is tidying up their garage. They put a picture frame into a bag, and then start drinking from a glass of water.\",bag;box;cabinet;cup;glass;painting;phone/camera;picture;water,\"A person is standing in a kitchen and sorting through some boxes of rubbish. They place a painting in a bag and then drink from a cup,.;A person places a picture in a bag they took out of a box. They set it on a cabinet and take a drink of water from a nearby glass.\",c110 26.70 32.60;c020 3.50 28.80;c087 13.30 18.70;c044 13.30 18.70;c107 27.20 35.00;c106 27.20 35.00;c084 14.00 23.50;c086 17.40 25.70;c023 5.70 19.30,34.29\r\nT8O8Y,D0RU,Bedroom,4,7,Yes,A person is sitting on the bed holding their phone.  The person throws their phone onto the bedside table and gets up and walks to the mirror on the wall.  The person takes a camera off the shelf and takes a picture in the mirror.,bed;camera;mirror;phone;picture;shelf;table;wall,\"The person is sitting on the bed tapping his feet, and throws phone on the desk, the goes and picks up a camera and starts taking pics in mirror\",c096 23.30 36.00;c135 0.00 13.60;c018 20.90 26.10;c154 8.90 14.30;c016 0.00 12.60;c009 11.20 15.70;c017 11.40 16.00;c015 0.00 15.50,34.62\r\nW9XWS,CCI9,Living room,6,7,Yes,A person is standing in front of a mirror eating a sandwich. Another person is in the doorway laughing at them because the site is just funny.,food;mirror;sandwich,person is standing and eating a sandwich while looking in the mirrir. Another person stands close by laughing.,c065 1.20 33.60;c067 0.00 35.00;c156 1.20 33.80;c149 10.00 27.30;c061 0.00 35.00;c096 0.00 35.00,34.17\r\nEGY7O,8718,Kitchen,6,7,Yes,\"A person is cooking at the stove. They open the refrigerator, grab some ingredients, and close the frig door. They continue cooking.\",cabinet;door;food;refrigerator;stove,\"A person is  taking a pot from a cabinet an placing it on the stove, they then open the refrigerator and take out food to cook with.;Person walking  grabs a pot from the cabinet, takes it over to the stove, goes to the refrigerator to get some food, and then back to the stove to begin cooking the food.\",c006 2.40 10.30;c061 16.30 42.00;c147 27.50 39.00;c113 10.30 18.60;c143 10.30 18.60;c112 1.30 6.40;c062 33.30 38.80;c063 15.30 19.90;c142 15.90 22.80,41.38\r\nB4ZJR,T7C3,Pantry,7,7,Yes,A person stands in the doorway of the pantry while snuggling a pair of shoes.  They then walk from the doorway while smiling to pick up a bag of groceries.,bag;groceries;shoe,A person is holding a pair of shoes. A person then puts the shoes down and picks up a bag of groceries.,c053 3.10 19.30;c023 25.30 30.00;c020 26.50 30.00,29.04\r\nG3W9M,9PLL,Stairs,4,7,Yes,\"A person is on the stairs undressing. They grab their clothes, and a pillow and walk up the stairs.\",clothes;pillow;shirt,\"A person removes their shirt, picks up a pillow and goes up the stairs.\",c155 0.00 20.60;c076 20.60 32.00;c000 9.00 32.00;c079 18.80 25.00,31.29\r\nGHJCC,YMXV,Bedroom,4,4,Yes,A person is lying on a sofa watch a television and throws a pillow at the tv.,bed;pillow;sofa;television,a person is lying on a sofa surrounded by pillows then gets up and hits the TV with a pillow,c122 0.00 24.20;c076 0.00 32.00;c135 0.00 24.20;c078 0.00 24.30;c134 0.00 24.50;c079 21.40 27.30;c154 20.00 27.20;c132 0.00 23.40;c077 19.90 32.00,31.38\r\nG4O9P,UTMU,Garage,5,7,Yes,A person runs into the garage while laughing. The person then takes off their shoes and grabs a book.,book;clothes;shoe,The person runs in circles.  The person then takes off their shoes and reads a book.,c057 6.20 15.80;c058 7.80 16.30;c027 15.20 21.50;c032 15.90 23.40;c150 0.00 9.70;c026 14.40 25.00;c030 13.60 21.80;c155 6.20 15.40,24.38\r\nQDPR8,D0RU,Garage,6,7,Yes,\"A person is in their garage sitting on a chair eating food. They sneeze, and drop their plate. They sit at the table trying to fix the plate.\",bowl;chair;dish;floor;food;table,A person sits in a chair while eating and drops the bowl on the floor.,c059 6.40 49.60;c064 20.20 25.20;c156 7.90 19.60;c063 0.00 10.40;c061 2.10 24.90;c011 3.30 52.00;c127 33.60 48.30;c151 3.10 12.40;c118 1.60 24.90,50.88\r\n2HAMN,EIO2,Living room,6,6,Yes,A person is snuggling in the bed and working on their laptop.  Another person is watching television.,bed;chair;laptop;television;tv,\"Two people are in a room. One person is sitting on a chair watching television, while the other one is lying on the bed with a laptop.;One person is laying on the bed working on a laptop while another person is sitting in a chair watching tv.\",c134 0.00 32.00;c052 0.00 32.00;c059 0.00 32.00;c132 0.00 32.00;c051 0.00 32.00,30.67\r\nR88ZA,DXDI,Laundry room,7,7,Yes,A person is sitting in a laundry room holding a mirror. The person watches a television show.,floor;laptop;mirror;television,\"A person is sitting on the floor of the laundry room, watching TV, and playing with a mirror.\",c132 0.00 23.00;c093 0.00 23.00;c051 0.00 23.00;c125 0.00 23.00;c047 0.00 23.00,22.38\r\n4VCHD,D0RU,Recreation room / Man cave,6,7,Yes,\"A person opens the door to the recreation room, eating a sandwich. The person sits in a chair, and puts the sandwich away in a plastic bag.\",bag;chair;door;floor;food;sandwich,\"The person is eating and walking through the door. Once the person walked through the door, the person sat down on the chair to watch TV.\",c065 7.70 15.10;c024 16.50 25.30;c151 5.80 11.90;c059 5.80 11.30;c008 0.00 3.20;c156 7.30 14.20;c097 0.00 5.40;c062 11.40 19.10;c126 10.90 20.90,35.25\r\nL0YQM,Z68L,Bedroom,5,6,Yes,\"A person puts a book in a bag. They take the book out again, look at it, and start laughing.\",bag;book,A person walks over to a chair and opens up a backpack. The person pulls a book out of the back and begins looking at it and laughing at the book.,c021 1.50 12.60;c026 9.60 32.00;c149 9.90 15.60;c028 9.30 28.10;c032 9.60 26.50;c029 11.00 26.20;c115 9.70 27.70;c024 15.60 20.80;c020 1.20 21.00;c030 0.00 8.80;c022 15.60 20.80,30.75\r\nHKS9J,KQI6,Kitchen,6,7,Yes,One person is standing at the refrigerator drinking milk from the carton. Another person is standing by a table.,cup/glass/bottle;doorway;food;refrigerator;table,\"A person standing by a table walks to the refrigerator, opens it, takes out a glass and drinks.\",c143 3.40 10.00;c110 6.70 14.40;c106 11.90 20.10;c106 20.10 28.30;c061 16.70 28.30;c107 8.90 20.20;c097 1.10 6.30,30.58\r\n3VM0R,KQI6,Living room,7,7,Yes,A person is snuggling with a pillow on a chair.  Another person is putting a bag down on a desk.,bag;chair;couch;doorway;pillow;table,\"A person sits on a plastic chair before taking a pillow from the bed and snuggling with it. Afterwards, another person enters through the door and places a bag on the table.;A person is sitting down in a chair. They grab a pillow and cuddle with it. A second person walks in and places a bag on a table and walks away.\",c076 4.60 18.90;c079 0.00 7.70;c024 21.40 27.90;c009 21.40 27.40;c078 4.90 18.90;c059 0.00 18.90;c097 16.50 25.60;c022 20.70 27.60,30.58\r\n9ITO3,8718,Living room,5,4,No,Person places sandwich on desk. person walks to door and leaves.,clothes;desk;door;light;sandwich,A person is putting shoes on and a jacket before heading out the door.,c008 20.20 27.90;c141 19.60 25.60;c148 10.50 20.90;c104 18.60 22.90;c000 10.20 22.50;c097 19.70 27.80,31.21\r\nDOB0W,WG9D,Bedroom,4,6,Yes,\"A person runs into the bedroom carrying a camera and a sandwich. The person stands there for a moment, then takes a bite of the sandwich.\",camera;dish;doorway;food;phone;sandwich,A person walks into bedroom holding a camera and a plate of food. Person starts eating something.,c065 5.70 11.00;c067 0.00 11.00;c015 0.00 11.00;c156 5.60 11.00;c118 0.00 11.00;c097 0.00 3.80;c061 5.10 11.00;c063 0.00 6.70;c062 5.70 10.30,9.62\r\nX8MNV,D0RU,Bathroom,5,7,Yes,One person walks in eating while another is by the light working on a pair of tangled shoes.,bed;box;door;food;shoe;sofa,\"A person walks through a doorway into a living room. Another person is sitting on a sofa, put on their shoes.;The person is walking in the room holding some thing in their hand while another person is sitting on the bed bent down putting on shoes.\",c097 2.10 8.10;c123 7.00 34.00;c135 7.00 34.00;c055 7.80 34.00;c061 0.00 9.70,32.75\r\nSPG5Q,T7C3,Laundry room,7,7,Yes,A person is laughing and taking off shoes and then running in place while holding a towel in a laundry room.,clothes;floor;shoe;towel,A person takes off shoes in the laundry room and then runs in place while holding a towel.,c033 0.00 34.00;c150 11.20 34.00;c057 6.70 15.10;c126 3.40 14.60;c000 0.00 34.00,33.42\r\n5J7FQ,YMXV,Bedroom,5,2,Yes,\"A person is tidying. They watch their reflection in the mirror and smile. They stop to leave, turning the doorknob as they go.\",doorknob;doorway;floor;mirror;towel,Person tidys bed and mirror on the wall.,c096 7.80 17.60;c038 8.60 18.30;c033 0.00 26.80;c097 26.40 33.00;c126 22.90 27.70;c038 0.00 19.60,31.67\r\n1J3I0,HR43,Living room,3,6,Yes,\"One person closes a laptop, then lies down and snuggles with a book.\",book;couch;laptop;sofa,\"A person is sitting on a sofa closes laptop picks up a book then lays down and snuggles with the book.;A person is sitting on the couch playing with a laptop. After putting the laptop on the couch, the person picks up a book and snuggles with it on the couch.\",c046 0.00 7.80;c026 3.50 25.00;c122 5.40 25.00;c123 0.00 9.40;c049 2.30 7.10;c030 4.20 25.00,23.75\r\nQO0FI,T7C3,Laundry room,6,7,Yes,\"A person walks into a laundry room and sneezes.  They pick up a picture from a shelf, snuggling it as they leave, clutching it close to their chest.\",picture;shelf,A person walks into a laundry and takes a picture off a shelf. They snuggle with it.,c084 6.80 16.50;c083 4.60 10.70;c088 6.80 16.50;c153 0.70 6.20,24.83\r\nI9TIU,P6LJ,Living room,7,1,No,A person goes to open a door after sneezing while changing the bag in a vacuum.,door;floor;vacuum,\"A person opens the vaccuum to clean it, then begins sneezing and leaves the room through a doorway.\",c136 2.70 19.80;c008 21.20 28.00;c153 16.00 24.30;c006 28.50 34.80;c141 21.00 26.80;c126 12.00 18.10;c097 23.30 29.20,34.83\r\nU9SH3,3H6W,Home Office / Study (A room in a house used for work),5,7,Yes,A person is grasping onto a bottle of medicine as they are lying down in obvious distress.  A blanket covers the person's entire body except for the face.,blanket;bottle;floor;food;medicine,A person comes in to a room grabs a cover gets on the floor covers up .Than jumps up out of the cover and walks away.,c071 8.30 31.10;c073 6.90 18.60;c061 4.80 14.80;c154 25.40 32.00;c070 10.00 31.00;c072 9.90 31.00;c074 27.40 32.00;c128 1.90 16.90;c124 9.60 31.70,30.71\r\n7JDU4,X5XO,Basement (A room below the ground floor),5,7,Yes,\"A person runs into the basement and begins tidying the table. The person takes out a camera, and takes a picture.\",camera;paper/notebook;phone;picture;table;television,A person is walking down the stairs and organizes his table.  Afterwards he takes a picture.,c018 15.10 23.00;c150 0.00 6.70;c087 17.50 29.70;c116 10.20 16.80;c015 13.20 31.00,30.42\r\nNEFHO,WG9D,Bathroom,2,7,Yes,\"A person in the bathroom is undressing by taking their jacket off. They start laughing at a joke they remembered, and then take a glass of water off of the table and start drinking it.\",clothes;cup;glass;jacket;table,A person removes their jacket in a bathroom before drinking from a glass of water.,c106 8.60 15.00;c155 0.00 6.60;c002 0.00 8.00;c001 2.50 8.00,14.88\r\nK8MMX,6RE8,Garage,6,6,Yes,A person runs into the garage a throws a picture onto a desk.,door;paper;table,\"The person opens the door and enters the room holding some papers. The person walks to the desk and throws the papers down onto the desk. The person walks in a circle and returns to the desk. The person turns the papers around and reads them.;A person enters a room through a door, puts a piece of paper on a table, paces,  and then looks at the paper.\",c009 5.10 9.80;c008 0.00 4.90;c116 3.90 10.20;c097 0.50 8.50;c117 0.00 10.50;c115 0.20 10.10,30.96\r\n687WB,9PLL,Kitchen,6,6,Yes,\"A person is in the kitchen working on dinner, the stop for a minute to walk to the desk and look at something on the laptop before smiling and walking back to the stove.\",desk;dish;doorway;food;monitor;pot;stove;television,\"A person is putting the lid on a pot, the person lights the stove, puts the pot on the stove,  the person walks into the office and looks at the screen, and the person walks back into the kitchen to check on the pot that's on the stove.\",c147 10.80 20.00;c152 31.20 36.80;c097 17.80 24.60;c118 12.40 19.80;c132 19.40 26.20,39.92\r\n3VMTS,XXN8,Basement (A room below the ground floor),6,7,Yes,A person lying under a blanket on a sofa in a basement awakens.,blanket;sofa,\"A person lying on a sofa, yawns and stretches, gets up, sets a blanket aside, and walks away.\",c122 0.00 12.00;c071 18.10 24.80;c146 5.30 12.80;c154 19.50 24.70;c123 7.90 21.80;c070 18.20 24.50,30.54\r\n0IAGO,70CN,Dining room,7,7,Yes,A person takes off their shoes before they begin trying to fix a light.,chair;doorway;light;shoe,\"A person sits down in a chair and takes off their shoes, then stands on the chair and fixes a light then turns the light on.;A person walks into a dining room, sits down and takes off their shoes, stands up on a chair, and begins to fix a light.\",c104 13.00 21.00;c151 1.00 6.00;c060 10.00 15.00;c154 7.20 14.50;c059 1.00 11.70;c057 3.40 11.40;c103 13.80 24.00;c054 3.70 12.50;c097 0.00 4.60,28.38\r\nUT7R3,9OK1,Bedroom,5,6,Yes,A person is seen throwing dishes onto their bed. They begin fixing their bed but catch a glimpse of themselves in the mirror and begin fixing their hair.,bed;dish;hair;mirror;plate;sandwich,\"A person throws a sandwich and a plate on the bed. A person then looks in the mirror and starts brushing their hair.;A person throws some dishes on to their bed, and then combs their hair using a full length mirror.\",c144 9.60 21.00;c096 6.00 21.00;c119 0.00 5.20;c118 0.00 4.30,19.67\r\n5MF9Y,Z68L,Recreation room / Man cave,6,6,Yes,\"The person can run with a broom, The person can also play with their food\",bench;book;broom;floor;food,\"The person runs in the room holding a broom and starts to sweep the floor and then tosses a book on the bench and then leans the broom up against the wall and starts to eat and juggle fruit and then starts to run out of the room.;A person walks in, and starts to sweep. Then they juggle a little bit.\",c098 1.30 17.60;c102 3.90 15.30;c062 14.10 25.80;c064 14.80 20.30;c127 4.30 15.40;c099 13.60 19.80;c063 18.60 27.60;c150 0.60 6.50;c152 17.80 28.00;c149 17.70 28.00;c116 7.30 12.10,27.25\r\n8ICEM,9Y7F,Bedroom,5,7,Yes,\"One person sits with a sandwich, while another person gets clothes from a wardrobe before leaving.\",bed;cabinet;closet;clothes;cloths;food;sandwich;wardrobe,\"A person is sitting on a bed eating a sandwich. Another person opens the closet and takes out some clothes.;A person is eating a sandwich, while another person is grabbing cloths from a cabinet. Then they close the cabinet.\",c065 6.50 14.20;c156 19.90 25.80;c002 8.50 16.40;c112 9.90 26.90;c113 10.70 16.10;c135 0.00 32.00;c067 0.00 32.00;c068 0.00 32.00;c062 0.00 32.00;c061 0.00 32.00;c000 13.00 32.00,31.29\r\n0DJ4I,C7O9,Stairs,5,1,No,One person with a bag of groceries walks past another person tidying up with a broom.,bag;broom;groceries,A person is sweeping the floor while another walks up the stairs.,,30.12\r\nGC51E,D0RU,Stairs,1,7,Yes,\"A person on their stairs takes off their shoes, grabs a bag and eats the apple that was in the bag before leaving.\",apple;bag;food;ledge;shoe;stairs,A person walks up the stairs slowly. Then they take their shoes off. And then they take an apple out of a bag that's lying on a ledge and eat it. And then they walk out of the room.,c021 52.70 62.90;c057 37.40 56.70;c156 63.20 87.50;c063 55.80 66.00;c061 59.50 94.90,122.92\r\n8CQ9Y,QB52,Bedroom,5,1,Yes,A person is sneezing in the bed and playing on the phone.,bed;phone,\"Person lying in bed looking at phone and typing something, and then sneezes into elbow and puts the phone on the table.\",c015 0.00 31.00;c134 0.00 31.00;c153 1.50 7.30;c016 0.00 31.00;c017 27.30 31.00,30.21\r\nQ1L24,6NQX,Kitchen,7,7,Yes,A person is cooking at the stove then they walk around as they sweep with a broom.,broom;floor;food;stove,A person cooking on a stove  picks up a broom then begins sweeping the floor.,c102 8.20 28.00;c147 0.00 11.40;c127 8.20 28.00;c100 8.10 13.60;c100 9.00 28.00;c098 9.00 28.00,27.42\r\nEY8S6,I4RP,Living room,6,6,Yes,A person comes into the entryway to pour a cup of coffee for another person sitting at a small desk.,chair;coffee;cup;desk;laptop;table;video;water,\"A person is sitting in a chair. Another person pours coffee in the cup.;A person is sitting in a chair, another person brings water over and pours it.\",c011 0.00 18.00;c108 4.60 18.00;c107 0.00 18.00;c059 15.00 18.00,16.92\r\nF7KFE,0RNU,Garage,4,7,Yes,A person is fixing a television before walking away with a broom.,broom;floor,A person is fixing a tv in a garage when they stand up and grab a broom,c098 25.20 33.00;c100 25.40 33.00;c125 0.00 24.60,31.58\r\nSRQPI,I4RP,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"Two people walk into the entryway to their home, laughing. One person picks up a sandwich while the other closes the door and turns on a light.\",door;food;light;sandwich,2 people come in through a door one person goes to a table that has a sandwich on it and eats the sandwich the other person turns the lights on.;Two people enter the room and close the door. The second person turns on the light.,c006 12.70 20.00;c008 3.50 11.20;c104 17.60 23.00;c149 5.20 23.00;c065 15.40 22.90;c156 15.40 22.90;c097 7.00 22.50;c141 17.80 22.90,22.42\r\n3QXPC,KFGP,Bathroom,7,7,Yes,\"A person is in a bathroom putting medicine in a bag, they then grasp the doorknob and walk through the doorway.\",bag;closet/cabinet;door;medicine,\"A person walks into the bathroom and closes the door. They take a bag from the cabinet, place medicine in the bag, and leave.\",c020 14.30 35.00;c023 11.70 19.10;c097 0.60 7.00;c021 17.50 24.40;c141 3.00 9.50;c006 2.10 8.30;c008 0.00 5.90;c113 8.30 15.20;c112 14.40 20.70,34.21\r\nKP8VI,9Y7F,Kitchen,3,7,No,\"A person is sitting at their desk. Then, smiling, the person begins to take groceries out of a box.\",bed;bowl;food;fruit;groceries;man;table,a man sitting on a table and getting up and getting food out of a bowl.;Someone is sitting on their bed and laughs and goes into the kitchen and empties a bowl of fruit.,c130 14.00 32.00;c154 10.00 32.00;c010 0.00 11.00;c061 14.40 19.30;c061 16.10 21.00;c061 17.80 23.30;c063 13.90 32.00,30.83\r\nHITEM,DL3G,Home Office / Study (A room in a house used for work),6,6,Yes,A person is snuggling with a towel and throwing their homework away.,homework;paper;table;towel,\"A person is snuggling a towel, then starts doing homework on a table.\",c145 12.90 25.30;c033 0.00 36.00;c117 21.00 29.50,35.04\r\nCEHLQ,DL3G,Home Office / Study (A room in a house used for work),6,6,Yes,A person is putting books on a table and lying in a cozy chair.,book;chair;homework;paper;table,A person is sitting at adesk looking at books they put them on the desk and lean back to go to sleep.;A person is sitting at a desk looking through some books. They put the books in a stack on the desk then lean back in the chair to nap.,c116 0.00 27.30;c026 0.00 25.80;c028 0.00 27.40;c059 0.00 33.00;c011 0.00 33.00;c009 0.00 27.40;c032 0.00 26.90,31.54\r\nDSG0F,DL3G,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person walks through the doorway of their home office, laughing. The person drinks from a cup of coffee and then leaves, turning off the light behind them.\",cup;desk;dish;doorway;mug;room,\"A person walked into a room and picked up a coffee cup,looked at it, turned it around and drank from it.;A person picks up a cup off a desk and drinks out of it. They look at the cup then continue to drink before placing the cup on the desk and leaving.\",c106 1.30 13.10;c097 0.00 4.30;c107 0.00 32.00;c106 3.60 21.80;c110 0.00 8.60;c119 21.90 26.50;c120 0.50 6.80;c109 22.50 27.00,31.21\r\n77JB7,1OHU,Home Office / Study (A room in a house used for work),7,6,Yes,A person is smiling while opening the desk while another person is playing with shoes.,closet/cabinet;desk;shoe,A PERSON HAS A PAIR OF SHOES ON HER LAP AND IS FIXING THE SHOE LACES ON IT WHILE A MAN ENTERS THE FRAME HOLDING A WATER BOTTLE WHILE SMILING AND OPENING AND CLOSING A DRAWER,c053 0.00 44.00;c152 24.20 41.60;c154 23.90 42.90;c112 30.90 39.80;c113 26.50 34.40,43.21\r\nJHTO5,DXDI,Bathroom,5,7,Yes,A person is standing at the mirror smiling at themself. They open a cabinet and look inside.,cabinet;door;mirror,A person is standing in a bathroom looking in the mirror. The person proceeds to open a medicine cabinet door and look inside.;A person is smiling in the mirror and opens the medicine cabinet.,c096 0.00 2.80;c113 0.00 2.90;c008 0.00 2.90,14.54\r\n5B4HF,0RNU,Garage,6,7,Yes,A person walks through the doorway while drinking a cup of coffee. They take an item off the shelf and walk back.,bag;cup;dish;doorway;shelf;something,He walks through a door drinking from a cup. He walks to a counter and picks something off of it.,c081 13.00 18.30;c106 0.00 10.50;c097 0.00 10.00;c107 0.00 15.20;c020 15.10 27.00;c023 13.80 20.10;c118 1.00 27.50,26.88\r\nFIAJP,X5XO,Hallway,5,5,Yes,\"A person is in a hallway undressing by a door, they then smile as they grab a broom and walk away.\",broom;clothes;door;jacket;shirt;shoe,\"A person takes off their jacket and places it down on something, then takes off their shoes. They pick up a broom and walk to another room.;A person is taking off a shirt, and shoes. A person then grabs a broom and goes through a doorway.\",c098 18.20 31.00;c155 0.00 6.60;c054 3.70 20.50;c057 3.10 19.90;c001 0.40 6.20;c097 24.00 29.50;c100 18.10 23.10,29.75\r\nCXZW3,LTAC,Bedroom,6,7,Yes,person is tidying his wardrobe and trying to working on his homework at the same time.,notebook;paper;wardrobe,a person is cleaning a mirror on a wardrobe and making notes in a notebook,c115 0.00 32.00;c145 5.10 12.90,30.67\r\nH1J16,0KZ7,Stairs,6,7,Yes,One person is smiling with a small stack of dishes and another person with a bag is getting dressed on the stairs.,bag;clothes;dish,A person  dresses while holding a bag. Another person holds dishes.,c118 0.00 29.00;c020 0.00 29.00;c148 0.50 20.30;c000 0.00 12.80;c002 0.00 7.30,27.67\r\nQ8QGT,HR43,Bedroom,6,7,Yes,A person closes their bedroom door and sits on their bed. They are grasping a camera and a sandwich.,bed;door;food;juicebox;phone/camera;sandwich,\"A person closes a door while holding a sawich. The person walks to the bed and sits on it next to a laptop. The person holds a juice box and eats the sandwich.;A person sits on the bed next to their laptop with food in both hands. After sitting on the bed,the person just holds the food.\",c135 6.30 26.00;c065 7.50 13.90;c067 4.40 26.00;c061 4.40 26.00;c015 0.00 26.00,24.96\r\n3KZF7,ID9V,Dining room,3,7,Yes,A person throws some clothes and a towel on a table. Then the person dresses by putting on a jacket.,clothes;table;towel,Person folding clothes and wore a jacket and adjusting it,c000 0.00 9.10;c148 11.60 24.70;c009 3.40 10.00;c035 5.90 14.10;c001 0.00 5.10;c003 4.80 9.90;c004 19.40 29.10;c002 11.10 17.40,29.08\r\nC4MP2,T7C3,Stairs,7,7,Yes,A person is working on their homework on the stairs. The person takes a sandwich from their bag and stands up then begins leaving.,bag;book;paper;sandwich;stairs,\"The person is sitting on the stairs reading a book, they then set the book down and pull am object from a bag.;A person is sitting on the stairs reading. They close their book and sit it down. They then pick up a bag and take something out of it.\",c020 26.10 39.00;c021 29.00 38.10;c023 24.40 35.10;c116 22.10 32.20;c115 0.00 29.50;c145 0.00 28.00;c026 0.00 28.90;c069 29.00 36.00;c067 32.00 39.00;c032 0.00 27.00,38.17\r\n72VBG,YMXV,Bathroom,6,5,Yes,A person is snuggling with a towel and then walking near the window in a bathroom.,door;mirror;towel;window,person walks in a room looks in mirror and peeks out a window,c092 6.70 17.40;c096 4.40 10.90;c141 0.00 4.50;c008 0.00 4.50;c097 0.00 4.60,31.04\r\n0TM53,OUKK,Recreation room / Man cave,7,7,Yes,The person drinks a beer while laughing. The person then places a bag on a shelf.,bag;blanket;closet/cabinet;cup/glass/bottle;food;shelf,A person drinks something then takes a bag from a chair and puts it on a shelf.,c081 5.80 13.00;c022 5.80 13.00;c061 0.00 9.00;c075 6.30 13.00;c106 0.00 7.30;c114 5.00 13.00,11.92\r\nMBSW4,HJJ4,Stairs,4,7,Yes,A person is smiling as they carry a box down the stairs. The person stands at the bottom of the stairs and unpacks clothes from the box.,box;clothes,A person walks downstairs holding a box. They open the box and take out clothes and drop them on the floor while smiling.,c040 0.00 17.00;c041 5.40 12.40;c044 8.40 17.00;c000 12.00 17.00;c152 3.70 17.00;c003 10.70 15.20;c002 8.40 14.60,16.33\r\nXSBZ1,PO5L,Kitchen,7,7,Yes,\"A person is in a kitchen closing the box on some food, they then pour a cup of water into the sink.\",box;food;glass;sink;table;water,\"A person sets a plastic box on the table, puts the top on the box, and picks up a glass. The person then pours the glass of water into the sink, places the glass in the sinks, and walks away.;a person closes up some food then pours out some water\",c039 4.20 10.70;c009 7.50 15.20;c045 9.00 15.00;c109 16.00 21.60,24.88\r\nXE4IA,EIO2,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person in a basement is working on some homework while sitting in a chair, they then smile when finished and close their book.\",book;chair;desk;paper;table,\"A person sitting at a desk working on homework, then closes a book and relaxes.;Someone is sitting at a table doing homework.They then close their book and sit back.\",c025 19.50 29.70;c032 0.00 23.50;c059 0.00 31.00;c145 0.00 22.60;c011 0.00 31.00;c152 20.70 31.00;c014 0.00 21.40,30.25\r\nQ71PE,KQI6,Kitchen,6,7,Yes,\"One person is watching food cook on the stove, another person is watching them while they wash the dishes.\",dish;food;stove,A WOMAN IS WASHING DISHES WHILE A MAN NEXT TO HER IS CLEANING THE STOVE AREA NEXT TO HER.,c121 0.00 27.00;c147 4.90 32.00;c118 0.00 8.10,31.17\r\n9VK0J,UTMU,Closet / Walk-in closet / Spear closet,5,7,Yes,A person is standing around snuggling a blanket with a pillow under their shirt.,blanket;pillow,Person walks into the closet holding a pillow and blanket.,c070 0.80 29.00;c072 1.00 29.00;c076 2.10 28.50;c079 20.90 26.40,27.54\r\nBEUCN,YA10,Hallway,7,7,Yes,\"A person is sitting on the floor in their hallway, holding a phone. They stand up, pick up the vacuum cleaner and leave the room.\",doorway;floor;phone;vacuum,A person is sitting on the floor  playing with their phone they then get up and walk off with a vacuum.,c125 0.00 15.80;c137 15.80 24.30;c138 14.50 21.30;c015 0.00 20.80;c016 0.00 19.80;c154 11.20 17.70;c017 15.40 21.60;c097 19.10 24.40,27.00\r\nHHCFO,2RTW,Living room,6,6,Yes,\"A person holding a homework book sits on a small bench in the hall. They close the book after a few moments and put it into the backpack on the floor. They shoulder the backpack and walk out, flipping off the hall light as they pass.\",bag;book;door;homework;light;paper;table,\"A person is sitting down doing homework  they then put their homework away in a backpack, turn off the light and walk out the door.;A person is sitting on a table doing their homework. They close it and put it in their backpack. They put on their backpack and turn off the lights. They open the door, walk out and close it.\",c032 9.70 17.30;c145 0.00 12.20;c154 13.00 18.30;c026 0.00 25.00;c116 9.20 25.80;c105 25.90 32.60;c010 0.00 17.80;c006 29.60 35.00;c008 28.30 33.50;c141 28.40 33.00;c097 29.50 34.30;c021 15.90 30.40;c115 0.00 19.70;c020 15.50 35.00,33.96\r\nDG5TX,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person is watching something out of the window through a camera in the entryway to their home. The person  sets down the camera, and begins working on some paperwork.\",camera;chair;desk;notepad;paper/notebook;pen;phone;picture;something;table;window,There is a person standing at a window taking a picture of something with a camera. That same person then sits down and starts to write.;A person is playing a game on their phone and then sits down in a chair and writes with a pen in a paper notepad on their desk.,c092 0.00 24.80;c015 10.50 24.20;c151 17.40 24.60;c087 0.10 20.50;c145 18.60 31.00;c014 18.90 31.00;c011 19.10 31.00;c059 17.90 23.40,30.08\r\n3V7MT,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person walks through an entryway and stops to peer out a dark window. They reach over and flip off the light, as if to see outside better. The person sneezes unexpectedly, then pulls a tissue from their pocket and dabs at their nose.\",door;light;lock;window,A person comes the door shuts it and locks it.The person looks out the window .The person turns off the light and looks out the window and sneezes.;A person walks through a door and then closes it. Then turns off the light and sneezes.,c092 0.00 3.70;c006 0.00 3.10;c104 19.00 31.00;c153 20.00 29.00;c008 8.00 31.00;c097 0.00 2.90;c105 18.00 31.00,30.38\r\n0JA9E,DXDI,Living room,5,6,Yes,A person in the living room is throwing a towel and a blanket on the ground. They start standing up and walking away from the room.,blanket;clothes;couch;doorway;floor;jacket;sofa;towel,A person is sitting on a couch. They pick up a jacket and throw it on the floor and then they pick up a blanket and throw it on the floor. Then they get up and walk out of the room.;Person is sitting on the couch and throws clothes and a blanket on the floor then walks around the couch out of the picture.,c036 0.50 14.90;c154 10.90 16.40;c123 0.00 14.50;c126 2.30 12.20;c074 5.70 12.50;c003 1.20 8.60;c071 1.30 12.80;c097 19.00 25.10,26.21\r\nLKSBL,L4ZP,Kitchen,7,6,Yes,A person is pouring a drink from the refrigerator. A person is holding a pot as the person walks to the stove.,bowl;cabinet;dish;food;gallon of milk;glass;pan;pot;refrigerator;stove,\"A person and a dog walk into a kitchen, The person opens a cabinet, removes a glass then opens the refrigerator and removes a gallon of milk which the person then pours into the glass and returns the gallon of milk into the refrigerator. The person then opens another cabinet, takes a pan and places it on the stove.;A man opens a cabinet and pulls out a bowl.  He takes milk out of the fridge pours it in the bowl.  He takes pot out of the cabinet and puts it on the stove\",c142 6.20 11.60;c143 4.00 9.70;c112 1.80 7.10;c113 0.00 4.20;c143 16.10 22.40;c119 26.90 35.00;c120 1.10 6.10;c118 27.30 34.20;c063 5.90 11.80,34.21\r\n08AQS,JVLO,Stairs,5,7,Yes,A person is sitting on the stairs eating some food. Another person walks down the stairs to throw away a box.,box;food,\"A person is sitting and eating some food. Another person passes with a box in their hands, and throws it on a pile of stuff.\",c040 19.90 33.00;c042 28.60 33.00;c061 0.00 30.10;c062 0.00 30.00;c156 0.00 29.80;c045 29.10 33.00,32.33\r\n5TUZW,YMXV,Home Office / Study (A room in a house used for work),6,7,No,A person was taking dishes from a box. They then started sneezing into a nearby towel.,box;chair;closet/cabinet;cup/glass/bottle;dishes;laptop;table;towel,A person is sitting in a chair. The person takes some bottles out of a drawer and cleans them with a towel.,c038 15.90 31.70;c051 0.00 33.00;c014 0.00 33.00;c011 0.00 33.00;c110 0.00 33.00;c059 0.00 33.00;c033 13.20 33.00;c113 2.00 7.60,31.92\r\nSSP8C,QB52,Bedroom,6,7,Yes,A person awakens in bed. They get out of bed and tidy the blanket on the bed.,bed;blanket,A person is sleeping in a small bed in a concrete room. The person wakes up and starts making the bed.,c075 15.10 31.00;c134 0.00 11.50;c133 7.70 17.40;c146 8.10 17.50;c154 13.70 19.10;c070 14.90 31.00;c073 14.90 31.00,30.12\r\nXTMXQ,WG9D,Other,1,6,Yes,A person is holding a camera then sneezes while standing in the doorway.,camera;doorway;phone,{},c015 0.00 4.00;c153 0.00 4.00,2.92\r\nKATDX,PKND,Bedroom,4,6,Yes,\"One person runs in, grasps homework from a sofa and starts working. Another person is near the doorway drinking.\",book;door;glass;pad;paper;sofa,\"A person drinks out of a glass while standing looking out a door.  Another person walks through the door, sits on the couch and picks up a pad of paper.;One person is drinking a glass of water in a bedroom while the other is sitting down on the bed with a book\",c097 5.90 14.20;c123 14.10 32.00;c145 16.50 31.60;c151 12.20 18.80;c154 0.00 4.20;c115 13.80 32.00;c152 15.80 20.80,30.83\r\nSC5YW,QB52,Bedroom,5,3,Yes,\"A person is sitting on a sofa watching television when they begin laughing, then they get up and close their open cabinet.\",bed;cabinet;clothes;hair;television;window,\"This person is sitting on the bed looking out the window, then stands up.;A person is sitting on the end of a bed watching television, laughing and rubbing his face. The person then stands and touches some clothes that are hanging.\",c131 1.30 12.40;c114 26.00 31.00;c149 1.80 17.40;c154 24.20 29.80;c135 0.60 29.10;c132 0.00 29.40;c144 2.80 7.60;c152 0.00 6.70,30.21\r\n4DAGZ,Z68L,Kitchen,6,6,Yes,\"A person is working on something on a laptop. The person grasps a remote, and turns on a nearby television.\",laptop;remote;table;television,\"A person walked over to a laptop and did some work. The person then picked up the television remote, walked over to the television, and turned it on before walking away.\",c051 8.30 37.20;c052 8.30 37.20;c132 42.20 49.10;c009 6.70 11.50,52.54\r\nVSAA7,D0RU,Living room,5,5,Yes,\"After a long day working on homework at the desk, a person decided it was time to relax and begin snuggling under a blanket in the living room.\",bed;blanket;chair;desk;paper;table,\"A person is sitting in a chair at a desk reading papers.  The person stretches, walks to the bed, lays down and covers up with a blanket.;A person is sitting in a chair at a table. After briefly looking at a piece of paper, the person puts it down, yawns, gets up, and walks over to the bed before lying down and covering them self with a blanket.\",c011 0.00 24.10;c115 0.00 6.90;c072 30.60 37.00;c134 31.00 37.00;c014 0.00 24.50;c145 0.00 22.70;c154 18.50 25.60;c059 0.00 21.40,36.21\r\n4MKH4,XXN8,Hallway,6,6,Yes,\"A person grasps a box of dishes from the floor of the garage. Holding the box, the person looks around and leaves.\",box;dish;floor,A person picks up and holds a tray of dishes in the hallway.,c118 6.90 14.50;c154 2.20 8.00;c127 0.00 7.70;c127 0.00 31.00;c120 0.00 31.00,30.46\r\nS2FLE,P6LJ,Living room,6,6,Yes,A person is putting homework on a shelf.  Then a person is sneezing and taking a bag of groceries out of the living room.,bag;groceries;homework;paper;shelf,\"A person picked up the homework, put it on a shelf, sneezed, picked up a bag of groceries, and walked away.\",c115 0.00 15.30;c081 9.90 17.20;c153 15.20 25.50;c116 0.00 16.50;c023 23.30 28.70;c117 0.00 23.20;c020 22.50 29.10,30.42\r\n9N0BP,XXN8,Kitchen,5,7,Yes,A person is taking dishes from a cabinet and laughing on the phone.,closet/cabinet;dish;phone,A person walks into the frame holding a phone while talking on it. The person walks to the stove then picks up a plate. The person puts the plate down then walks back towards the camara.,c118 11.00 29.20;c015 3.60 32.00;c149 14.70 22.20;c119 5.70 15.30;c120 11.30 29.50;c113 5.60 12.00;c019 9.70 32.00,30.54\r\nL1BNN,YMXV,Bedroom,4,5,Yes,\"One person drinks some medicine, then sneezes and puts it back on a shelf.\",cup/glass/bottle;floor;medicine;shelf,A person is sitting while drinking medicine.  They put the medicine on a shelf and sneeze.,c081 19.60 28.70;c128 6.60 12.30;c129 2.00 10.20;c125 0.00 32.00;c106 0.00 6.00;c106 2.30 10.00,30.75\r\nLCZ8F,HJJ4,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person tidies up the wardrobe in a closet.  Once done, they take a couple of pictures from a shelf and leave.\",accordion;closet;door;picture;shelf,\"A person slid open a door of a closet, arranged some objects, grabbed a framed photo, turned around and left the scene.\",c084 18.90 27.00;c083 17.60 22.70;c082 15.50 22.60;c113 0.00 5.30;c008 0.00 5.30;c114 6.40 24.10,26.00\r\nZKNHG,Z68L,Bedroom,6,7,Yes,\"A person is undressing by their bedroom door, then they start playing with the camera on their phone getting ready to take a selfie.\",bed;camera;clothes;door;phone;picture,\"Person walks into a room,sits on the bed and undresses. The person gets up and play with the phone and take a picture.\",c016 0.00 8.20;c151 7.50 20.00;c135 12.60 42.50;c015 11.40 47.00;c155 0.50 15.40;c154 7.90 16.60;c087 26.20 39.20;c018 11.60 17.30;c001 13.00 47.00,46.17\r\n8U5TE,R1OT,Basement (A room below the ground floor),4,7,Yes,\"A person is in a basement eating off of a dish, they then get up and walk towards a door and close it.\",bed;closet/cabinet;dish;door;food,A person is sitting down eating from a bowl that they are holding..  The same person then gets up and closes the doors to the room.,c118 0.00 18.00;c006 7.20 16.40;c156 0.00 18.00;c154 4.80 9.90;c135 0.00 9.00;c063 0.00 8.00;c112 7.30 16.40,16.96\r\nBOQ5J,LTAC,Stairs,5,6,Yes,\"A person is sitting on the stairs, they then take their homework book out their bag and place it on a chair.\",bag;book;chair;paper,There is a person sitting in a window in some stairs. He takes out a book from his bag and begins flipping through it. He places the book on a chair.,c021 8.30 17.80;c027 15.40 27.10;c028 23.80 29.40;c116 23.80 29.40;c117 12.90 18.20;c115 13.70 29.40,35.54\r\nPB66Q,DLI2,Home Office / Study (A room in a house used for work),7,7,Yes,A sneezing person is sitting in their home office holding a book and a box.,book;box,A person is holding up a cardboard box and a book and sneezing.,c040 0.00 34.00;c026 0.00 34.00;c153 24.00 33.60,32.92\r\nP4BC1,ZAWX,Pantry,6,5,Yes,\"A person walks into the pantry, carrying a bag of groceries. The person opens the bag, but then abruptly stops and takes out their phone and smiles.\",bag;groceries;phone,a person walks through a hallway with a grocery bag and then looks at the phone.,c016 18.80 32.00;c020 2.80 32.00;c152 20.30 32.00,30.75\r\nQO0UU,DXDI,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person opening a door to their entry away stretches their arms as if they're just awakening. They carry a pillow and a cup of coffee up the entry way to a door.,cup;door;pillow,A person opens a door and walks in holding a pillow and a cup of coffee.,c107 8.20 15.40;c076 3.60 27.80;c008 0.40 5.80;c141 0.00 20.90,29.92\r\n8HHI3,0KZ7,Home Office / Study (A room in a house used for work),7,7,Yes,A person laughs as they open a box. The person takes a few pairs of shoes out of the box.,box;desk;shoe;table,A person opens a box.  The person takes some shoes from the box and places them on a desk.;A person is taking thinks out of a box on their desk.,c044 1.80 7.90;c009 3.10 9.80;c056 9.40 21.20;c053 2.90 8.00;c053 7.00 16.00;c149 21.90 28.00;c041 0.00 6.00;c152 2.70 8.30;c054 3.10 8.00;c054 6.10 11.00;c054 10.00 15.00,27.33\r\n5GK8W,UO0Z,Living room,7,7,Yes,A person awakens on the living room sofa and quickly checks their phone. The person laughs before hurriedly putting on their shoes and leaving.,bed;blanket;clothes;door;glasses;phone;shoe;sofa,\"A person is lying on the sofa snuggled in a blanket. A person wakes up. A person puts on their glasses. A person then looks at their phone.;A person is lying down on a sofa with a blanket. A person then puts on their glasses and looks at their phone. A person then puts on their shoes, grabs their phone and leave.\",c122 0.00 8.10;c016 7.90 15.60;c072 0.00 4.90;c015 5.80 18.40;c017 13.30 18.40;c146 0.00 6.80;c055 15.20 27.20;c134 0.00 6.40;c008 28.80 34.40;c097 30.40 35.00;c074 10.90 16.50;c135 1.10 27.70;c141 28.80 34.00;c018 5.80 11.20;c006 30.40 35.00;c071 11.60 16.50;c148 14.70 27.40;c133 0.00 7.10,34.04\r\n9NGOG,Z68L,Bathroom,6,7,Yes,A person is smiling at a pillow dearly then snuggles with a soft blanket.,blanket;doorway;mirror;pillow,\"A person walks into the bathroom holding a pillow and blanket. They snuggle with the blanket while looking in a mirror.;A person walks into the bathroom holding a pillow and blanket.  The person then throws the blanket over their shoulder, while looking into a mirror.\",c070 0.60 32.00;c072 0.80 32.00;c076 1.10 32.00;c097 0.60 5.50;c096 2.80 30.50,30.75\r\nBJI1D,WG9D,Dining room,6,7,Yes,A person is grasping a bag of groceries. They look at their phone and start undressing.,bag;clothes;phone;table,A person is standing at a table holding a phone they take off their shirt;A person is  holding a bag then setting it down a table before taking off their jacket.,c015 0.00 6.20;c155 2.20 8.00;c009 0.00 5.40;c020 0.00 5.40;c002 2.30 8.00;c022 0.00 4.90;c017 1.70 6.20,6.75\r\nX529R,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,A person sitting a desk pauses from the homework and takes a picture from the table that has been knocked over by some clutter. They fix the mess and put the picture back on the table.,book;computer;cup;desk;hat;homework;laptop;mouse;paper;pen;picture;shelf;sofa;table,\"A person is sitting at a table doing homework and touching a picture and a cup.;A person is sitting at a desk doing homework and stops to rearrange some things on their desk.;A person is sitting at a desk, holding an open book and doing homework. The person starts to tidy up their desk.\",c032 0.00 14.90;c088 9.80 32.00;c026 0.00 32.00;c011 0.00 32.00;c145 0.00 9.30;c115 0.00 32.00;c082 8.10 32.00,30.58\r\nN59H5,KFGP,Laundry room,5,6,Yes,\"A person is in the laundry room pulling clothes out of a bag and throwing them into the washer.  The person pulls their phone out of their pocket, looks at it, and grasps it while running out of the room.\",bag;clothes;phone,A person has a bag of clothes and puts them into a washing machine. Then takes out a phone and runs out of the room.,c021 0.50 6.40;c015 12.80 21.90;c001 1.10 16.00;c150 16.60 22.00,21.42\r\nE24EQ,KFGP,Home Office / Study (A room in a house used for work),5,7,Yes,A person in a home office is eating a sandwich while sitting in a chair and watching a video on their laptop.,chair;food;laptop;sandwich;table,A person is looking at a laptop while sitting in a chair and eating a sandwhich.,c065 0.00 31.00;c051 0.00 31.00;c059 0.00 31.00;c156 0.00 31.00;c067 0.00 31.00;c052 0.00 31.00;c061 0.00 31.00;c011 0.00 31.00,29.92\r\nSP6M4,WG9D,Home Office / Study (A room in a house used for work),2,5,Yes,A person is sitting at the desk working on their homework.  The person takes some food out of a bag and begins eating it.,bag;book;calculator;chair;desk;food;homework;sandwich;table,\"A person is sitting on a chair, looking at homework and using a calculator. The person then takes a sandwich out of the bag and eats the sandwich.;Person uses calculator, closes book, opens bag, grabs food, and eats food.\",c021 6.20 11.40;c063 7.70 13.00;c059 0.00 14.00;c025 2.70 7.50;c011 0.00 14.00;c061 8.00 14.00;c156 9.80 14.00;c065 9.80 14.00;c069 7.40 12.40;c116 3.60 8.30;c014 0.00 6.90,12.79\r\n2XSK6,P6LJ,Home Office / Study (A room in a house used for work),7,6,Yes,\"A person closes the door to the office, and then sits down in a chair at a desk. The person smiles.\",chair;desk;door;table,\"A person opens a door, walks out and closes the door.  They open the door again, walk in and close the door. Next, they sit in a chair at a desk.\",c059 22.50 30.80;c006 9.70 18.20;c008 0.40 6.20;c011 22.20 30.00;c151 16.70 26.30;c141 0.10 6.60;c097 2.80 7.90,31.96\r\nTANB8,UTMU,Kitchen,5,6,Yes,A person is sneezing while putting food into a cabinet and then grasping a kleenex in a kitchen.,cabinet;kleenex;shelf,A person puts something on a shelf and then sneezes and wipes their nose with a kleenex before closing the cabinet door.,c153 14.60 22.50;c113 2.90 7.50;c081 9.70 15.00,31.58\r\nZAO65,3VLX,Garage,6,6,Yes,A person opens a door and walks into a garage eating a cookie. They drink a coffee and take off their shoes.,cup;door;drink;food;shoe,\"PERSON WALKS INTO ROOM DRINKING SOMETHING,WALKS DOWNSTAIRS AND PULLS OFF SHOES AND WALKS AWAY\",c006 3.10 9.10;c008 1.40 7.20;c057 18.70 26.90;c106 7.30 14.10;c107 4.60 11.40;c156 7.90 13.80;c097 3.20 9.50;c061 0.00 28.00,26.75\r\n511AM,2Q9D,Laundry room,6,7,Yes,A person is seen pouring soap in the washer and working on clothes. They drink some coffee and then grab the doorknob to leave.,box;clothes;coffee;cup;door,Person is doing clothes then drinking coffee the person leaves the room grasping the doorknob,c141 22.10 26.80;c106 19.20 26.00;c107 22.00 28.50;c110 18.40 23.20;c005 0.00 22.50;c001 8.90 18.20;c040 0.00 11.80;c042 6.20 12.20;c006 14.80 19.70;c043 0.00 4.50,27.67\r\nVVP85,MYIX,Dining room,6,7,Yes,A person is sitting at a table while the drink coffee and smile at something they are watching on their phone.,chair;coffee;cup;phone;table,A person is sitting at a table looking at their phone while smiling. They pick up a coffee cup and drink from it.,c015 0.00 32.00;c106 6.20 32.00;c107 4.70 29.60;c152 17.50 32.00;c011 0.00 32.00;c016 0.00 6.20;c059 0.00 32.00;c009 11.50 32.00,30.96\r\nWGFU7,HR43,Kitchen,7,7,Yes,A person is cooking in their kitchen and drinking from a glass. They start doing the dishes and vacuuming the floor.,cup;dish;floor;laptop;pot;sink;vacuum,A person is working on their laptop in the kitchen. They turn to do something with the sink then they pick up a vacuum.;The person is cooking something on a stove while looking at a laptop. They pick up a vacuum and put it back down,c137 14.50 23.00;c118 0.00 7.60;c127 14.10 23.00;c111 3.10 17.40;c051 0.00 23.00;c119 0.00 7.10,22.29\r\n2D5GN,6RE8,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person stands in front of the shelf, looking for something. The person grasps a bottle of medicine from the shelf.\",medicine;shelf;something,A person walks into a room and begins tidying a shelf.  The pick up something and a bottle of medicine.  They walk away looking at the medicine and holding the other item.,c082 0.00 5.00;c128 15.00 29.00,31.83\r\nO495M,H8N1,Recreation room / Man cave,4,2,No,A person grasping a sandwich in a recreation room is standing in front of a window.,book;desk;table,A person is tidying a desk.;A person is holding a book and tidying up a table.,c012 4.00 17.30;c026 1.00 9.10;c030 0.30 5.50;c028 3.30 8.30,29.92\r\nHFW6H,18IT,Dining room,6,6,Yes,\"A laughing person begins undressing in the middle of their dining room, after setting down their coffee mug on top of a picture in a newspaper on the dining room table.  They throw their garments everywhere, before heading to the doorway of another room, grasping the door frame as they pass it.\",clothes;coffee;cup;doorway;floor;shirt;table,\"Two are holding coffee mugs and they both undress. Both people people place the coffe on the table and then throw their shirts on the ground and walk away.;A person is taking off a shirt, while another person takes off their shirt as well. A person then cleans a cup with the shirt, and they both throw the shirts on the floor.\",c097 41.10 47.40;c155 0.00 26.80;c003 36.40 41.70;c107 29.30 34.60;c126 35.10 43.30;c009 27.00 35.90;c000 16.50 30.50;c109 29.60 35.20,52.17\r\n2JT00,T7C3,Pantry,7,7,Yes,\"A person sits smiling in a pantry while holding a broom. They stand still a moment, and then pick up a plate holding a sandwich, that was on a chair.\",broom;chair;dish;floor;food;sandwich,\"A person sitting on the floor holding a broom stands up. They put the broom down, then pick up a sandwich off the chair and eat it.;a person is sitting on the floor holding a broom they get up and take a plate off of the chair the plate has a sandwich they take the sandwich in their hand\",c118 11.60 22.00;c099 14.40 20.10;c154 5.70 16.10;c156 15.30 22.00;c098 0.00 14.70;c067 13.80 22.00;c125 0.00 8.60;c120 13.80 22.00;c152 2.80 12.30;c061 12.90 22.00;c069 12.90 18.80;c063 12.90 18.90,21.46\r\nVYP2T,UD06,Kitchen,6,7,Yes,\"In the kitchen, one person opens a stove with groceries on top and smiles.\",groceries;stove,A person is looking through a bag of groceries that are on top the stove. A person then opens the oven and takes out a pot. The person open backs the stove and put he tray back in.,,30.92\r\nUEC1F,3H6W,Laundry room,7,7,Yes,A person is opening a bottle from a cabinet. They sniff the contents and return it to the shelf. They pick up some clothes and walk away.,blanket;clothes;cup/glass/bottle;shelf,A person comes into the laundry room picks up a bottle of detergent opens it and sniffs the contents then they pick up clotes and walk out.,c002 13.20 19.40;c107 1.70 7.50;c109 10.00 15.40;c073 12.60 18.00;c081 9.50 15.30;c000 12.80 18.70;c110 1.70 6.70;c070 12.70 18.70,21.42\r\n4ZSAR,0RNU,Garage,7,7,Yes,\"A person enters the garage through a door and starts tidying things up. They stop, pick up a cup of coffee, and sit in a chair.\",chair;coffee;cup;door;floor;glass;paper/notebook,\"A person walks into a room and closes a door. They start to tidy up. They they put item on a shelf, and sit on a chair with a coffee cup.\",c059 35.20 39.00;c107 30.30 39.00;c151 35.20 39.00;c116 16.90 25.70;c127 11.40 22.20;c115 17.10 26.60,38.08\r\nX89FW,T7C3,Home Office / Study (A room in a house used for work),5,7,Yes,A person is laughing at something outside the window then begins to work on cleaning the shelf.,book;chair;shelf;table;window,A person looks out a window and laughs.  They then start removing some items from a shelf and placing them on a nearby chair.;A person is looking out the window and laughing they move from the window and pick up some items off of a dresser and set them on a chair.,c092 0.00 18.20;c082 18.30 40.00;c149 1.30 6.30;c030 23.20 28.70;c028 24.70 30.90;c012 20.60 40.00,38.96\r\nGHJPQ,HJZQ,Bedroom,6,6,Yes,\"A person is lying on a soda in their bedroom. They get up and start walking towards a chair, and they decide to sit on the chair and pull out a camera to take a picture.\",camera;chair;phone,\"A person is asleep in a chair in the bedroom. The person wakes up, walks across the room, sits in a chair, and picks up a camera. The person holds the camera to their face.\",c015 5.60 22.20;c059 15.80 21.70;c154 14.70 24.50;c087 23.20 31.00,30.25\r\nP8OVC,0KZ7,Closet / Walk-in closet / Spear closet,4,6,Yes,A person is sitting on a pillow in the closet drinking a glass of water. The person picks up the dishes and begins leaving.,closet;cup;dish;floor;glass;plate;water,a person sits in a closet and drinks water then picks up dishes and leaves;A person is drinking while lying on the floor before getting up.,c106 0.00 5.70;c118 23.20 29.10;c154 24.00 29.80;c125 0.00 23.00,30.54\r\n66J84,D0RU,Garage,6,7,Yes,A person is laughing in the garage while holding a glass of water in their left hand and a blanket in their right hand.,blanket;clothes;cup;glass;hand;towel;water,Person walks into the room laughing and holding a glass. This person was also holding a blanket.,c070 7.60 32.90;c107 7.40 30.80;c106 21.70 30.00;c149 15.50 26.40;c033 7.10 32.10;c000 7.10 32.10,31.75\r\nFNM5E,HJJ4,Garage,3,7,Yes,\"A person is undress in the doorway, then they begin laughing and grab a doorknob and leave the room.\",clothes;door;sweater,\"A person is undressing and laughing, they then open the door and leave.;A person standing in front of a door.The person takes their coat off and starts laughing .The person turns and opens the door and walks out.\",c155 0.00 9.80;c000 5.80 17.00;c006 12.70 17.00;c008 10.60 14.70;c002 1.80 8.00;c149 7.10 12.10;c097 11.50 16.40,16.25\r\n6N2ZB,A8P9,Living room,6,7,Yes,A person is watching a bag of groceries then begins to play with the food on the sofa.,bag;food;groceries;sofa,A person is taking food out of a bag while sitting on a couch.,c123 0.00 20.00;c021 1.00 9.00;c062 2.40 20.00;c063 2.50 13.10;c130 3.30 13.10,18.88\r\nQT6X8,P6LJ,Hallway,6,6,Yes,A person left a blanket on the chair in the hallway while the house was being fixed up. The picture had to be covered as there weren't enough blankets.,blanket;chair;clothes;paper/notebook;picture,\"A person walks to a chair, picks up a blanket and throws it on the floor. They then hang a picture on the wall.\",c073 5.00 13.10;c074 8.10 14.90;c084 26.20 36.10;c086 32.90 38.20;c116 26.40 37.20;c003 4.60 15.20,38.92\r\nT2XVO,0KZ7,Stairs,5,7,Yes,A person is tidying up their house by sweeping the stairs with a broom. They notice a spot on the stairs they cannot sweep up. The person fetches a rag off a table and washes the spot away.,broom;chair;counter;cup/glass/bottle;doorway;floor;scrub;towel,A person is using a broom to tidy up the stairs. They go to a counter and pick up a scrub and clean more thoroughly.,c098 0.00 17.70;c099 11.50 18.20;c102 0.00 15.50;c106 1.50 12.10;c059 0.00 28.00;c033 15.60 28.00;c107 1.40 13.10;c127 0.00 18.30;c035 15.40 22.10;c038 18.40 28.00;c097 13.80 19.10,26.96\r\n2544C,18IT,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person throws a towel in their home office, A person does some light tidying in their office.\",broom;chair;clothes;desk;doorway;floor;shelf;table;towel,\"Person is in the bedroom cleaning up and putting items onto the shelf. They also begin to sweep up with a broom.;A person walks through a doorway folding a towel.  The person puts the towel on a shelf.  The person then moves items from a desk to the shelf.  Next, the person cleans the shelves with towel, straightens the chairs and sweeps the floor with a broom.\",c033 4.00 14.00;c036 0.00 6.00;c081 11.00 45.00;c098 0.00 3.17;c102 0.00 2.54;c127 0.00 3.16;c000 0.00 14.60;c034 10.60 15.80;c082 11.40 44.60;c100 50.70 78.70;c012 12.20 45.00;c097 75.90 82.00;c037 3.70 15.40,81.08\r\nGAC1W,OUKK,Entryway (A hall that is generally located at the entrance of a house),5,7,No,\"A person walks through the doorway of their home office, smiling and holding a broom.\",broom;door;dust pan,Person enter the room through a door with a broom and dust pan in hand then walk to another room.;A person enters the room and walks across it while holding a broom and dustpan.,c098 1.10 11.00;c097 0.30 7.10;c152 4.80 10.40;c008 0.30 5.80;c141 0.10 5.70;c006 4.50 9.80,10.42\r\nVKLP7,3531,Kitchen,5,5,Yes,A person is running up to the kitchen sink.  The person then starts watching the dishes next to the sink.,dishes;sink,A person runs to the sink and looks out of the window.,c150 0.00 6.30,32.96\r\nGE4SD,3H6W,Kitchen,5,7,Yes,A person is in the kitchen washing dishes and drinking coffee.  They are seen leaving the kitchen and turns off the light.,coffee;counter;cup;dish;faucet;glass;gloves;light;sink;sponge;water,\"A person puts on dish gloves and starts washing dishes in the sink. The person uses a sponge and dish soap. The person then picks up a glass of coffee and takes a sip,before putting the glass on the counter, turning off the water and light, and leaving the room.;A person puts on a pair of gloves and then turns on the faucet and starts doing dishes. Then they pick up a glass of water and take a drink. They set the cup down and turn off the faucet and then walk away.\",c106 27.90 36.30;c121 6.00 27.10;c105 37.90 50.00;c121 35.50 40.20;c109 32.80 37.80;c120 7.30 12.50;c118 8.20 26.60;c107 27.50 37.30;c110 26.50 31.70,48.67\r\nYW5C4,LWUV,Living room,5,6,Yes,A person is sneezing and closing their cabinet.  They start to take some medicine with a spoon.,cabinet;drawer;food;medicine;spoon,\"A person is in the living room, first they check the drawers under the TV, and then they take something from their hand and put it in their mouth;A person opens and closes a drawer, then sneezes. The person opens a bottle of medicine, pours some in a spoon and eats it.\",c128 10.00 18.00;c129 18.00 24.00;c113 1.00 7.00;c128 0.00 26.20;c112 4.00 9.60;c153 5.10 11.90;c156 18.20 25.90,26.17\r\n884C0,C7O9,Kitchen,6,6,Yes,A person holding a broom walks into the kitchen while sneezing at the same time.  They put the broom to the side as they walk over to the stove and continue cooking something on the stove.,broom;dish;floor;food;hand;pan;pot;spoon;stove,\"A person coughs while sweeping the floor. They stir some food up from a pan on the stove.;A person walks in a room holding a broom and coughs ,turns to the stove and stirs a spoon in a put on the stove .\",c098 0.00 9.60;c099 6.10 11.70;c147 11.50 31.00;c153 0.00 9.90;c127 0.00 5.30;c118 9.10 31.00,30.38\r\nKWQKH,PO5L,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is seen drinking coffee. They begin opening the closet and take out a vacuum,closet;coffee;cup;dish;door;drink;glass;light;vacuum;wardrobe,\"A person is standing in the hallway drinking. A person then takes a vacuum out the closet, closes the door, and turns off the light.;Person walks to a closet stop and drink coffee out of a glass open closet door and take out a vacuum\",c137 11.50 17.70;c106 3.80 12.30;c113 8.20 13.70;c138 10.00 17.00;c107 2.00 22.00;c006 9.00 20.00;c118 2.00 22.40;c008 9.20 14.00;c141 8.30 12.90;c105 17.00 21.50,23.42\r\n1O6PH,YMXV,Bedroom,4,5,Yes,A person is seen putting a pillow on a shelf. The person starts sneezing and then heads for the door.,chair;closet;door;pillow,\"The person is holding a pillow then picks up another pillow and places both on a chair. He walks over to the closet door, closes it and then stands there with his arm on the door.;A person picks up two pillows and puts them in a chair. They close the closet door and lean against it while sneezing.\",c006 14.80 22.40;c076 0.00 14.50;c077 5.90 14.50;c079 0.60 6.40,30.42\r\nP0DXX,0RNU,Garage,7,7,Yes,A person throws clothes and books into a box. The person then puts the box next to a television.,book;box;clothes;floor;trash,a person puts some trash in a box and sets it next to a tv;A person picking up stuff and putting it in a card board box.The person picks up the box and sits by a television .The person turns and walks away .,c030 6.10 20.50;c040 32.60 39.50;c043 31.80 37.90;c001 17.50 34.50;c154 27.70 32.70;c127 6.10 31.40;c031 7.90 21.50;c042 31.80 39.50;c000 17.30 35.30;c003 16.20 34.80;c151 8.20 31.40,52.00\r\nCLORP,2RTW,Living room,6,6,Yes,Person awakens from a nap on the couch.  Person turns on the television.  Person looks out of the window. Person then starts eating pizza from the table.  Person then sits back down and reads a book.,blanket;blinds;book;food;pizza;sofa;table;television;televison;window,\"A person is sleeping on a sofa. The person wakes up and sits up. The person stands up and turns on the television. The person opens the blinds and looks out the window. The person takes a piece of pizza from a box and eats it. The person sits down on the sofa, opens a book, and reads it.\",c011 0.50 10.10;c027 28.80 37.80;c132 28.90 40.00;c123 28.20 40.00;c092 14.60 24.40;c156 28.20 39.50;c154 3.60 14.00;c026 32.00 37.40;c032 32.60 40.00;c122 0.00 6.40;c090 17.30 25.00;c146 1.50 7.40;c151 29.70 35.80;c062 29.70 34.30;c063 25.50 31.00;c061 25.50 34.50;c030 31.70 36.80,38.62\r\nAMX7S,1TZV,Laundry room,5,7,Yes,A person sneezes while placing a pillow into the washing machine. Next the person walks away with some homework.,book;clothes;doorway;paper;pillow;washing machine,\"A person is putting a pillow into a washing machine and sneezes. Then the person closes the washing machine, picks up some papers, and walks away.;Person  trying to put a pillow into a washing machine, closes it, and then picks up a book and walks out.\",c076 0.00 8.80;c115 0.00 8.00;c117 21.00 24.00;c097 21.00 24.00;c005 21.00 24.00;c077 21.00 24.00,23.00\r\n9B9OE,Q4IF,Laundry room,5,7,Yes,\"A person puts some clothes in the washing machine, then closes the door. The person takes out their phone and begins playing with it.\",clothes;phone,A person is throwing clothes into a laundry machine. They pull out their phone from their pocket and start using it.,c015 15.60 33.00;c016 15.70 33.00;c000 0.00 3.10;c001 0.00 16.80;c005 0.00 17.50,32.17\r\nM9KMN,ZAWX,Home Office / Study (A room in a house used for work),6,5,Yes,A person is tidying a cabinet. Another person is sneezes while holding a book.,book;cabinet;table;towel,\"A person is stacking books on a desk. Another person walks in holding another book, then sneezes.\",c114 0.00 19.30;c026 16.70 32.00;c153 20.80 32.00;c028 0.00 5.80;c012 0.00 19.80;c037 9.00 19.50;c030 16.10 32.00;c032 0.00 2.90;c027 16.40 21.80;c025 20.20 25.30,30.62\r\nNCJ1X,8IOD,Closet / Walk-in closet / Spear closet,7,7,Yes,One person who is drinking a soda grasps some clothes and a camera from a chair.,chair;clothes;glass,Person walking into a room drinking out of a glass picking clothes out of a chair leaving the room,c000 8.10 26.80;c002 7.40 13.20;c001 12.30 17.80;c001 6.20 25.20,30.12\r\n39T0D,UD06,Garage,6,6,Yes,\"A person was looking for cooking utensils in the garage.  The person didn't find any, but did find an old bag with some dusty pictures in it.  The person started sneezing because of all the dust.\",bag;box;paper/notebook;picture,A person is in a garage looking through a bag of pictures and sneezes.,c084 11.80 35.00;c021 7.60 16.00;c153 17.30 33.50;c041 0.00 7.40;c117 12.50 28.90,33.58\r\nWU8I6,KFGP,Living room,6,7,Yes,A person pours a bit of medicine out from a bottle into a cup. The person smiles and sets the bottle down on a desk.,cup/glass/bottle;desk;medicine;table,\"A person walks into a room and pours medicine out of a bottle, sets the medicine on a desk, then walks out of the room.\",c128 1.20 20.60;c128 2.10 7.70;c009 15.60 22.20;c108 6.50 16.00,24.88\r\nRO3A2,UTMU,Kitchen,6,7,Yes,\"A person runs into the kitchen and begins washing dishes in the sink. The person pulls up a chair, sits down, and continues washing.\",chair;dish;hands;sink,The person was walking the dog and came back home to clean her hands in the kitchen.,c059 15.10 21.60;c151 14.60 21.00;c150 0.00 5.00;c139 1.00 14.00;c121 1.50 12.50,26.92\r\nQOWXK,3H6W,Basement (A room below the ground floor),5,7,Yes,\"A person is lying down in their basement while drinking some water from a glass that they found on a table. They are dressing by putting on a jacket, and then look at a picture that is on the desk.\",clothes;cup/glass/bottle;floor;picture;table,\"A person sits down, drinks something, puts on a coat, reaches for a picture and looks at it for a moment, then gets up and walks away.\",c084 32.20 44.30;c086 40.30 45.10;c086 32.70 45.10;c083 31.20 37.00;c106 8.40 18.50;c124 5.90 21.00;c151 3.80 10.10;c154 40.10 46.10;c125 15.70 45.10;c148 17.80 34.70,50.67\r\n6APUA,KQI6,Living room,4,6,Yes,A person is standing on a chair grasping a lightbulb. Another person is talking on the phone and smiling.,chair;couch;light;phone;sofa,A person stands on a chair to fix a light. A different person is lying on the couch talking on a phone.;A person moves a chair to the other end of the room and then stands on it and fixes a light. Another person is laying on a couch talking on the phone.,c019 15.70 32.00;c060 0.00 18.10;c122 14.80 32.00;c103 0.60 16.90,30.71\r\nCPZI6,0KZ7,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is holding their coffee while grasping the doorknob.,coffee;cup;door;glass;mug,\"There is a person drinking coffee with their other hand on a door.;Person standing at the door with hand on doorknob, and holding a red mug with the other hand.\",c107 0.00 25.00;c141 0.00 25.00,24.08\r\nP8UT3,T7C3,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person smiles as they stand in the doorway of an entryway, then picks up a bag of groceries and closes the door.\",bag;door;groceries,\"A person is standing in the doorway with a bag on the floor smiling, they then close the door and pick up the bag.\",c020 20.30 28.00;c023 17.80 25.00;c006 20.60 27.60;c152 11.80 21.00;c141 19.10 25.70,27.38\r\nQ7G9N,H8N1,Bedroom,6,7,Yes,\"A person is smiling as they look at something on their laptop. The person closes the laptop, looks out the window, and laughs.\",laptop;something;window,A person smiling looks out the window.,c092 5.30 18.00;c152 0.00 18.00,16.83\r\nBRS5P,A8P9,Dining room,7,7,Yes,Person standing in front of a mirror while holding a laptop.,laptop;mirror,A person is holding a laptop and looking in a mirror.  The person looks around the room.,c096 0.00 12.00;c047 0.00 12.00;c051 0.00 8.90,11.12\r\nKA9T3,YMXV,Bedroom,5,7,No,A person is standing on a pillow while another person is lying on a book.,clothes;hair;mirror;phone,Person is in their bedroom looking at their phone while another person is looking in the mirror and getting dressed.;A person picks up a phone off of a bed while another person is standing at a mirror fixing their hair.,c096 14.90 32.00;c015 0.50 17.50;c144 18.30 29.60;c016 0.00 16.70;c018 0.00 6.30;c148 14.00 19.50,30.75\r\n07AWM,ID9V,Dining room,5,7,Yes,One person plays games on a phone while snuggling a pillow and laughing.,game;phone;pillow,\"A person is holding a phone and cuddling with a pillow. The person sways back and worth while watching the game on their phone, and begins to laugh.\",c015 0.00 25.00;c076 0.00 25.00;c078 9.10 20.20;c149 15.20 25.00;c016 0.00 25.00,24.17\r\nRZIAJ,ZAWX,Basement (A room below the ground floor),5,6,Yes,A person is playing with the phone and closing the door.,bed;door;phone,\"A person is sitting on a bed playing a game on their phone, they then get up and close the door;A person sitting on a bed and playing a game on a cellphone decides to get up and close the door.\",c016 1.80 12.60;c006 22.50 31.00;c154 19.00 25.00;c135 0.00 5.60;c141 27.80 31.00;c015 0.00 31.00;c015 1.80 13.80;c015 12.40 25.30,30.21\r\nC1F1D,0KZ7,Closet / Walk-in closet / Spear closet,6,7,Yes,\"Person is sitting on floor reading book and drinking coffee, then starts talking on phone and sneezing.\",book;coffee;cup;floor;phone,A person is sitting on the floor holding a book and drinking a cup of coffee. The put the cup down and pick up and talk on a phone while sneezing.,c032 0.80 18.80;c106 0.00 5.70;c015 14.70 30.00;c019 16.80 30.00;c125 0.00 30.00;c153 25.30 29.80;c109 12.80 17.30;c018 14.20 21.90;c107 0.00 15.40;c026 0.00 30.00,29.12\r\nDSWBA,2Q9D,Pantry,4,4,Yes,A person is in a pantry holding a picture and grasping a chair as they stand on it to reach the top shelf.,chair;picture;shelf,A person pushes a chair into a pantry while holding a picture. The person climbs on the chair and takes an item down from a shelf. The person steps down from the chair and places the item on the counter.,c084 1.60 26.00;c060 9.00 22.50,24.75\r\nO7I5K,DJ17,Bedroom,6,6,Yes,A person in the bedroom is lying on a bag fixing a broom.,bag;broom;floor,A person sits down on a bag and grabs a broom. They fix the broom by winding something around it.,c098 5.20 36.00;c151 1.30 8.90;c125 3.30 36.00;c100 5.40 36.00,35.21\r\nW6210,SS3R,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is putting shoes on the shelf while grasping the doorknob.,cup;door;drawer;floor;shelf;shoe,\"A person crosses a carpeted room and picks up two shoes. Afterwards, the person turns and looks at the camera, puts the shoes on a shelf, and opens the door.;A person enters the room and picks up a cup from the floor, and then picks up another cup and puts them in a drawer and touches the doorknob.;A person walks into the entryway, picks up shoes, puts them on a shelf and then opens the door.\",c141 13.20 19.80;c081 13.60 20.60;c053 8.70 19.50;c056 8.70 14.50;c054 14.20 25.00;c127 2.90 9.90;c008 18.70 32.00,30.83\r\n1Z5FK,SS3R,Living room,6,6,Yes,A person sweeps with a broom before they start sneezing.  They sit on the sofa and play a video game.,broom;chair;floor;sofa;television,\"A person is sweeping, and then sneezes. Then they sit down and turn on the television.\",c098 0.00 11.70;c099 5.10 12.50;c123 16.40 33.00;c153 1.60 13.60;c151 17.10 25.10;c102 0.00 3.80;c127 0.00 4.10;c059 18.50 33.00,32.25\r\nDU7H1,BYF9,Dining room,7,7,Yes,A person is holding a cup of coffee while talking on the phone. The person puts the cup of coffee down and begins tidying the dining room table. The person starts to laugh and is smiling.,coffee;cup;dish;glass;phone;table;towel,\"A person is sitting at a table talking on the phone. The person takes a drink, gets up, grabs a rag and cleans the table, then sits back down\",c106 3.40 13.00;c012 9.40 32.10;c152 39.70 48.00;c154 8.00 16.00;c013 11.30 32.50;c019 1.30 13.20;c106 1.00 7.40;c151 26.90 35.60;c035 10.40 21.30;c119 4.10 11.30,46.54\r\nH0O39,EIO2,Bedroom,4,4,No,A person is awakening from beneath a blanket. The person is then putting on shoes and running down stairs.,bed;blanket;door;shoe,\"The person is lying in bed sleeping. They wake up and take off the blanket, then sit up and put on their shoes. The person then leaves and walks down the stairs.\",c072 0.00 7.80;c134 0.00 8.80;c133 0.00 10.40;c150 27.20 40.00;c135 7.00 32.20;c146 0.00 10.00;c154 28.20 33.00;c055 7.00 32.20;c056 7.00 22.60;c097 31.30 35.90;c008 29.90 35.10;c151 6.20 11.00,38.92\r\nT7T0S,HR43,Kitchen,5,7,Yes,\"A person stands over the stove, cooking food. The person turns on an additional light and smiles.\",food;light;pot;refrigerator;stove,A person is cooking something in a pot on a stove. Then they walk over to a light and turn it on.;This person stops by the stove to see what is cooking and then continues on to turn on the light.,c104 17.80 24.00;c147 0.00 13.30;c152 21.10 28.00,27.46\r\nVEX8Z,0KZ7,Stairs,3,5,Yes,A person is standing near a flight of stairs eating food out of a bag by a open window.,bag;food;window,\"A  person stands at the bottom of the stairs eating food from a bag, and looking out the window.\",c092 0.00 25.00;c063 0.00 25.00;c020 0.00 25.00;c061 0.00 25.00;c021 0.00 25.00,23.71\r\nXLF4J,0KZ7,Bedroom,6,5,Yes,A person is dressing in clothes and another person is working at the desk.,clothes;desk;homework;paper;table,\"The person got dressed for the the cold day in there room, while another person stood by her desk, writing on a piece of paper.;A person puts on some clothes.  Another person does homework on a desk.\",c014 0.00 29.00;c148 0.00 29.00;c145 0.00 29.00;c002 0.00 3.30,28.00\r\n069GJ,DXDI,Stairs,5,7,Yes,\"A person is smiling while holding a vacuum, then the person looks into a mirror and laughs.\",floor;mirror;vacuum,A person is standing by a stairway holding a vacuum cleaner and smiling. The person puts down the vacuum and turns to look into a mirror on the wall.,c137 0.00 17.60;c094 15.20 25.00;c152 15.20 25.00;c149 15.00 23.30;c096 14.40 25.00;c126 12.30 18.00,23.88\r\nH6ROK,ZAWX,Bedroom,7,7,Yes,\"A person is walking in, wrapped in a blanket. Throwing the blanket to the ground, the person looks at himself in the mirror.\",blanket;floor;hair;mirror;picture;towel,\"A person is walking through a door way covered in a blanket, they then remove the blanket and approach a mirror. They then look at themselves in the mirror.\",c096 17.20 31.00;c074 0.00 15.10;c144 17.70 26.70;c126 13.00 18.00;c036 12.70 17.90;c152 10.20 31.00;c094 17.20 31.00;c072 0.00 13.80;c152 13.30 19.60;c149 28.50 31.00;c073 28.50 31.00;c144 28.50 31.00;c126 28.50 31.00;c071 9.30 16.40;c070 9.30 16.20,30.50\r\n2SYBS,ID9V,Bedroom,5,5,Yes,A person sneezes while sitting on a bed then fluffs a pillow.,bed;pillow,\"A person sits on the bed and holds a pillow. A person then begins to sneeze, and throws the pillow back on the bed.\",c151 0.00 3.20;c076 5.00 31.60;c080 27.40 32.10;c153 8.10 20.30;c154 28.70 34.00,32.62\r\nURG8B,Z68L,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is drinking coffee and eating a snack while doing homework. The person stops and crumples up a piece of paper, throwing it into the trash can nearby.\",book;chair;coffee;cup;food;homework;mug;paper;pencil;table;trash can,\"The person sits down in a chair, opens a book, eats a cookie, takes a drink of coffee, and than throws away a piece of paper;The person sits on a chair, and takes a bite of something. They write something on some paper and take a sip of some coffee. They throw some paper away in a trash can\",c151 0.00 3.10;c059 0.00 31.00;c027 0.30 5.80;c145 0.00 30.80;c156 1.30 9.10;c106 13.50 22.00;c110 12.90 19.30;c011 0.00 31.00;c107 13.80 22.40;c014 2.50 31.00,29.96\r\nA6CF6,BYF9,Home Office / Study (A room in a house used for work),5,7,Yes,A person throws a box of groceries onto the table. The person opens the box and takes out an item.,bag;box;groceries;table,\"A person is throwing a box onto a desk, opening it up, and removing smaller boxes from it.\",c045 0.00 6.60;c020 17.10 23.00;c041 3.80 14.00;c044 11.50 22.60,22.33\r\nK4X20,T7C3,Dining room,6,7,Yes,\"A person leaves a bag of groceries on the table in the dining room, grabs a glass of water and starts drinking it in the doorway.\",bag;cup;doorway;glass;table,A person brings a bag to the kitchen table before drinking a glass of water.,c106 15.40 27.80;c020 0.00 8.00;c022 3.70 9.80;c097 13.40 19.20,32.42\r\n1SUIC,UTMU,Laundry room,7,7,Yes,\"In the laundry room, a person sneezes while putting a sandwich in a box.\",box,\"A person walks to a box in a laundry room, opens a box, puts something in then closes it.\",c039 9.20 16.00;c041 3.40 12.20,20.33\r\nS67HC,YA10,Garage,7,7,Yes,\"While washing a chair, a person stands up on it, and then begins playing air guitar with a broom.\",broom;chair,A person is wiping the the chair with a towel. The person picks up a broom and pretends it is a guitar,c098 18.50 32.00;c060 21.80 32.00;c154 16.00 21.60,31.04\r\nQYMWC,XXN8,Entryway (A hall that is generally located at the entrance of a house),7,1,No,A person moves a pair of shoes before resuming vacuuming. Another person runs in and starts playing with their hair.,book;tissue,Peron in black shirt blew her nose next to a table. Person Y in a red hoodie is standing near a door reading a book.;There is a person standing up reading a book. There is another person who sneezes,c032 0.00 32.00;c153 0.00 11.60;c026 0.00 32.00,30.71\r\n1HDAC,6RE8,Home Office / Study (A room in a house used for work),5,1,No,A laughing person is tidying their laundry room while watching television and holding a towel.,chair;laptop;television;towel,\"A person is dusting a chair with a towel, and shakes the towel repeatedly.;A person swings a towel around at a chair. They laugh at a video on the laptop.\",c033 0.00 33.00;c037 18.10 30.20;c051 5.10 22.30;c131 4.10 23.70;c149 0.00 33.00;c152 0.00 33.00,32.12\r\nFSWT4,Z68L,Bedroom,4,6,Yes,A person is undressing and putting the clothes on a shelf. They finish and start playing with a toy.,clothes;jacket;shelf;shoe,\"A person sits down on the bed, takes off their jacket and sets it on a table. They pick up another object and mess with it and then also set it on the table.\",c081 17.00 23.20;c155 0.00 17.00;c151 0.00 4.00;c001 17.40 23.20;c000 12.40 21.40;c054 0.60 8.80;c004 12.20 22.60;c057 1.00 8.20;c002 4.60 16.20,40.00\r\nOQU53,H8N1,Bathroom,2,7,Yes,\"A person throw a box into a bathroom cabinet. The person leaves, closing the door behind them.\",box;cabinet;door,\"A person is standing in the kitchen. The person opens cupboard door and places an item inside, before closing the door again. The person walks out of the room.\",c112 4.00 9.80;c113 0.00 3.30,13.46\r\nANA5N,XXN8,Bedroom,7,7,Yes,\"A person walks into the bedroom, grasping a towel and laughing. The person folds the towel and puts it away in a cabinet.\",cabinet;door;shelf;towel,person opens door smiling folds towel puts ina closet;A person shuts a door then opens it again to enter and bow to the camera while laughing. The person is carrying a towel that is placed on a shelf in a closet that the person opens. The person then walks away.,c033 2.00 22.30;c113 14.20 21.60;c149 1.70 10.70;c008 0.40 5.80;c081 15.40 23.50;c006 4.60 10.60;c112 4.30 10.30;c037 6.80 20.40;c034 14.80 21.80,29.29\r\n0Z36L,YMXV,Bedroom,5,7,Yes,Person is undressing and putting clothes in bag then hangs bag on door knob then starts sneezing by window.,bag;clothes;door;window,\"A person is putting clothing into a bag and zipping the bag up. Then they pick up the bag and sling it over their shoulder. Then they walk over to a doorway, but not through it. After that they walk over to a window and look out.\",c092 22.40 32.00;c001 0.00 6.80;c022 28.70 32.00;c141 17.20 23.50;c000 0.60 32.00;c021 0.00 32.00;c020 8.90 32.00;c002 0.00 5.50,30.71\r\n8MDSA,KFGP,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person is undressing in their closet. The person takes a towel from the shelf, turns off the light, and leaves.\",blanket;closet;clothes;coat;door;light;shelf;towel,\"A person puts their hat on a door. They take a jacket off and put it in a closet. They take something out of the closet and then turn the light off;A person walks into a hallway, opens the door, and hangs a coat in a closet. The person turns off the light and leaves the hallways.\",c081 17.20 24.80;c105 27.40 33.00;c155 5.60 14.20;c001 1.90 20.10;c008 9.70 16.20;c002 19.10 27.00;c070 19.50 33.00;c073 24.70 33.00;c112 24.80 31.60;c113 9.20 18.90,32.46\r\nGLLNH,YMXV,Bedroom,3,7,Yes,A person is sitting at a desk and opens a drawer. The person takes out a camera and takes a picture of something through the doorway.,chair;desk;doorway;drawer;phone;picture;table,\"A person sitting at a desk opens a drawer and takes out a phone. They then go to a doorway and take a picture.;This person opens a drawer at their desk, takes out their phone, then takes a picture in the doorway.\",c087 24.30 31.10;c018 14.30 20.80;c154 11.80 17.40;c015 16.40 32.00;c087 17.60 32.00;c016 16.50 32.00;c059 0.00 17.20;c011 0.00 17.20,31.04\r\nC6LW1,YMXV,Living room,6,7,Yes,A person is looking out the window and smiling.  The person is holding a camera and takes a picture of the outside.  The person picks up a glass of water from the desk and takes a drink.,camera;desk;glass;picture;table;water;window,A person looks out the window before drinking a bottle of water.,c092 0.00 9.00;c106 25.00 30.00;c152 5.00 11.00;c018 7.60 12.40;c110 21.10 25.80;c087 12.80 21.40;c017 19.40 24.30;c016 7.90 22.60;c009 18.90 24.00;c015 7.10 24.00,31.79\r\nCWPU8,OUKK,Living room,7,7,Yes,\"A person is sitting in the basement playing a guitar in front of a mirror.  The person puts the guitar in the case and closes it, then picks up a broom from the corner and starts sweeping.\",broom;corner;mirror,A man  walks over to the couch and picks up a guitar and sets down as if he is going to play but instead he puts the guitar away.,,52.79\r\nR6TI2,DXDI,Bathroom,6,7,Yes,A person is sitting on the bathroom floor on a pillow working on the doorknob they then stand up and leave the room.,door;floor;pillow,\"A person grasps doorknob, opens door, stands up, and walks out of room.;A person sits on a pillow on the floor fixing a doorknob then opens the door, stands and walks out.\",c125 0.00 27.20;c140 0.00 26.60;c141 22.50 27.20;c154 23.10 28.50;c008 22.90 29.20,30.12\r\n1OIPY,P6LJ,Living room,6,6,Yes,A person awakens in a chair with a sandwich lying next to them.  They grab hold of the sandwich while nodding and smiling.,chair;dish;food;plate;sandwich,A person sits in a chair and eats while laughing.;Someone is sitting on a chair in the kitchen and then grabs something from the counter and eats it and then puts it back.,c059 0.00 7.20;c068 14.80 36.90;c151 0.00 7.60;c118 14.80 21.40;c149 20.40 32.30;c065 17.80 30.90;c069 14.40 21.60;c156 17.80 30.90;c154 0.00 4.80;c061 18.00 36.10;c062 33.30 38.50;c063 15.60 21.80,39.88\r\nCZY4Q,P6LJ,Bedroom,6,7,Yes,A person puts their phone onto a shelf. The person picks up a sandwich and begins eating it.,camera;dish;food;phone;sandwich;shelf,There is a person with a phone.  That person puts the phone on a shelf and starts to eat a sandwich.;A person walks to a desk with food and then places a phone on it before eating and walking back to the camera,c015 0.00 10.60;c081 6.80 14.90;c067 12.00 42.40;c069 12.20 40.90;c017 5.70 13.60;c065 13.20 42.10;c068 37.30 43.60;c156 13.20 42.80;c120 11.30 42.80;c118 13.00 42.40;c119 36.40 42.80,42.88\r\nOIOIO,YMXV,Bedroom,4,3,Yes,A person throwing clothes at a door and dressing a vacuum,broom;cloth;floor;sweeper,A person standing in a room taking off teir jacket and trowing it to the floor.The person proceeds to grab a sweeper and starts placing a cloth on to the end of the sweeper.,c003 4.10 10.30;c127 13.20 33.00;c098 12.90 33.00,31.92\r\nITJZB,HJJ4,Recreation room / Man cave,5,7,Yes,\"A person is in a recreational room undressing and putting their clothes in a bag, they then walk to a sofa and sit.\",bag;clothes;sofa,A person removes some of their clothes and pack them into a bag. Then they sit down on a sofa.,c021 6.80 13.00;c001 8.00 15.30;c123 16.00 26.00;c155 0.00 8.80;c151 15.60 21.10,24.75\r\nECGY1,PO5L,Basement (A room below the ground floor),5,6,Yes,\"A person is in a basement walking towards a table, they then pick up a book and start laughing at the cover.\",book;picture;table,A person walks over to a table and picks up a book. They laugh while looking at it then set it back down and walk away.,c009 1.90 15.60;c026 4.50 12.30;c028 6.30 18.00;c030 3.70 15.00;c032 14.40 21.70;c149 5.30 18.10;c088 7.90 19.20;c084 7.40 18.80;c085 9.50 19.20;c029 9.10 18.40,20.88\r\nULAWO,D0RU,Stairs,6,7,Yes,\"A person runs down the stairs, holding a camera. The person takes a picture of a pile of clothes.\",bucket;camera;clothes;floor;phone;picture;stairs,a person walks down the stairs and drops something in a bucket;A person walks down stairs and takes a picture of clothes in a bucket on the floor.,c087 6.40 15.60;c015 10.20 15.60;c087 5.50 11.20,31.21\r\nZ6I0R,6RE8,Bedroom,4,6,Yes,\"A person walks into the dining room, playing with their phone. The person takes a drink from a glass of water, then sneezes and spills the water.\",cup;doorway;glass;phone;table;water,a person walks through a doorwaywhile using their phone then takes glass off table and sneezes;A person walked into a room from the outside. This person was wearing an orange shirt and sandals. The person was pressing buttons on a cell phone when the person sneezed onto a cup of water that was picked up. The cup was put down.,c015 0.00 9.00;c107 6.00 20.00;c009 12.00 17.00;c017 0.00 16.40;c097 0.00 9.00;c106 8.80 16.70;c109 7.40 20.60;c016 0.00 10.50,30.88\r\nQS6O1,PO5L,Kitchen,4,5,Yes,A person pours liquid into a cup then begins drinking it. Then the person puts food from the pantry into a bag.,bag;cup;food;glass,A person drinks from a glass and then puts food in a bag.,c020 12.00 24.90;c106 2.90 15.90;c064 14.00 25.00;c022 19.50 24.80;c023 15.40 20.40;c108 4.60 11.00;c021 16.40 22.60,24.33\r\nEHTB6,UTMU,Bathroom,7,7,Yes,A person is lying on a blanket while laughing at pictures on a camera.,blanket;camera;floor;phone,\"A girl is laying on a blanket on the floor, looking at and playing with her camera.\",c015 0.00 42.00;c149 0.00 42.00;c016 0.00 42.00;c124 0.00 42.00,41.00\r\nR0M34,T7C3,Kitchen,7,7,Yes,\"A person is standing by a stove cooking some food. The person opens the refrigerator, takes something out, and begins closing it.\",food;pot;refrigerator;stove,A person walks in to the kitchen and starts cooking. The person then takes something from the refrigerator.,c063 23.10 37.70;c142 30.80 37.90;c143 12.20 19.50;c147 0.10 15.30;c061 24.40 43.00,42.12\r\nA3Y9O,4OHY,Dining room,7,7,Yes,A person in their dining room is putting some groceries onto the floor. They grab a towel and start leaving the room.,bag;chair;clothes;doorway;floor;groceries;towel,\"The person took vegetables out of a plastic bag and then placed them onto the floor. The person then took a towel off of a chair and then walked out of the room with it.;Person takes toys out of bag and sets bag and toys onto ground, then picks up towel off of chair and walks out of the room.\",c033 15.70 29.00;c130 5.60 14.70;c020 0.00 7.40;c021 0.00 5.90;c022 7.60 14.60;c002 15.00 23.30;c000 15.60 29.00;c097 24.50 29.00;c023 0.00 29.00;c126 4.80 15.60,28.46\r\nLD8PU,BYF9,Kitchen,6,7,Yes,\"A person runs through the kitchen doorway, stands there for a moment, grabs a pair of shoes, then leaves.\",clothes;doorway;shoe,A person is walking into a room then proceeds to pick up something from the floor and walks away.,c097 0.50 6.70;c053 10.10 17.20;c150 1.00 7.90;c056 8.20 14.10;c002 8.20 14.20,17.71\r\nINT61,EIO2,Basement (A room below the ground floor),7,7,Yes,\"One person sits at a desk with a glass and some food. Another person sneezes, then leaves the basement.\",floor;sneeze;table;wall,\"The people are sitting near each other. The person is holding something. The person sneezes, then stands up and walks away.;Person sitting on table. Other person sitting on floor with hands in face, sneezes multiple times, gets up and walks away.\",c153 18.20 23.50;c154 19.90 24.50;c010 0.00 31.00;c125 0.00 15.50,30.42\r\nXSZ4H,F3YX,Kitchen,6,7,Yes,\"A person stands in the kitchen in front of the stove fixing dinner, they roll up your sleeves while cooking and then bend over and tie their shoe.\",food;pan;shoes;spatula;stove,A person is preparing a meal on the stove after a few seconds the person stops and bends to tie his shoes.,c147 0.00 18.20,26.17\r\n2LTCY,Z68L,Bathroom,7,5,Yes,\"After closing the wet shower curtain, a smiling person is grasping their falling towel being worn while taking a picture of themselves.\",phone;picture;shower curtain;towel,\"Person in a towel gets into shower, get out of show grabs phone from cabinet while dressed in towel, grabs phone takes selfie pictures.;A person walks into a shower and then walks out. They take their phone and take some selfies. They walk out of the bathroom\",c087 17.60 23.10;c033 6.50 11.50;c152 14.20 22.20;c087 12.70 18.80;c018 7.70 13.20;c015 8.90 29.30;c016 13.10 27.50,30.12\r\nIJ587,D0RU,Home Office / Study (A room in a house used for work),4,7,Yes,A person is eating a sandwich in front of a mirror then beings to laugh as they drink a glass of water.,cup;dish;food;fork;mirror;sandwich;water,The person is walking around a room eating some food form a can and taking a few drinks from a cup.,c106 20.50 29.00;c156 8.20 17.60;c154 0.00 2.50;c107 11.00 30.60;c118 0.00 32.00;c065 0.50 13.50;c061 0.40 13.50,31.38\r\nKI34A,KFGP,Home Office / Study (A room in a house used for work),4,7,Yes,\"A person is lying on a small sofa watching videos on a laptop, with shoes propped up. Soon, the person's eyes are closing.\",laptop;shoes;sofa;video,A person is laying in bed.,c122 0.00 25.00;c051 0.00 25.00;c047 0.00 25.00;c123 0.00 25.00,24.21\r\nKFD4I,6RE8,Living room,7,4,Yes,Person begins removing and drinking beers stashed in a bag.  Once complete he begins tidying up the room while watching television.,bag;clothe;desk;glass;table;television;water,A person puts some clothes down and pours some water into a glass before cleaning the desk.;Person takes water out of bag put it on the table after pouring some water in the glass and drinking it.,c106 20.50 31.00;c009 16.10 22.20;c009 11.50 16.30;c020 0.00 4.70;c012 21.30 30.90;c021 0.00 4.00;c109 11.50 16.30,30.38\r\nMUE7H,ENC8,Bedroom,6,7,Yes,\"A person is awakening, then sitting on a bed and putting on shoes and finally using a broom in a bedroom.\",bed;broom;floor;shoe,\"A person awakens on a bed. They sit up, put on their shoes then stand up.  They walk over to a broom, pick it up and begin tidying the floor with it.\",c098 22.80 47.50;c102 23.80 40.70;c133 0.00 8.30;c146 0.00 8.10;c055 6.60 21.00;c100 21.00 26.50;c134 0.00 8.10;c057 5.80 20.00;c154 16.70 23.50;c127 22.80 43.00,50.50\r\nSNECW,1OHU,Bedroom,7,6,Yes,A person awakens in their bedroom and turns on the light. The person opens a window and leaves.,bed;blinds;light;window,\"A person lying in bed a sleep. Jumps up walks to the light switch turns lights on. Proceeds to the window, looks out the blinds turns and leaves the room.;A person is sleeping. They wake up and turn on the light.  They then mess with the window blinds.\",c104 22.00 27.70;c092 25.90 33.90;c146 12.10 22.50;c154 22.50 31.00;c134 0.00 23.20;c090 25.60 31.50;c089 28.00 33.40,34.42\r\nAGELP,L4ZP,Kitchen,6,7,Yes,One person opens a window and starts sneezing. Another person takes a bag and a camera and leaves the kitchen.,bag;table;window,\"A person is looking out the window, and begins to open the window and sneeze. Another person grabs a bag off the table.\",c090 5.90 13.10;c092 4.60 23.40;c020 19.00 26.20;c153 9.80 15.40;c023 18.00 27.40;c089 13.20 21.10,29.12\r\nDF6FY,D0RU,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"One person is sitting with a book, snuggling a pillow and drinking from a glass.\",book;chair;cup;glass;pillow,A person is sitting down hugging a pillow while studying or reading then they begin to drink from a glass of water.,c106 10.90 18.90;c076 0.00 9.50;c078 20.20 30.10;c026 0.90 9.30;c032 0.00 12.20;c110 9.60 14.70;c109 19.10 23.90;c059 0.00 32.00,31.00\r\nKX90W,UTMU,Hallway,7,7,Yes,A person in a hallway walks to a cabinet where they find a pair of shoes that they put on to get ready to go running.,cabinet;closet;doorway;shoe;wardrobe,\"A person and a dog walk into a hallway.  Then the person opens a closet door and takes out some gym shoes, then the person changes into the shoes and leaves with the dog.;Person walks through a doorway, grabs shoes from a wardrobe. Person changes shoes and then jogs out of the room.\",c055 10.40 23.40;c113 0.90 9.10;c097 0.00 4.90;c112 5.10 10.50,29.42\r\nQRHJJ,T7C3,Home Office / Study (A room in a house used for work),6,7,Yes,A person takes a book from a cabinet. The person smiles as they look in the mirror.,book;mirror,A person is taking a boof off of a bookshelf. The person is holding a mirror and admires their reflection in it.,c093 8.30 33.00;c096 8.50 33.00;c030 0.00 5.50;c026 0.20 14.20;c032 0.00 12.80,31.54\r\n52D5Q,X5XO,Recreation room / Man cave,6,7,Yes,A person is laughing into a phone and then taking off shoes in the recreation room / man cave.,phone;shoe,\"A person is talking on the phone, then unties their boots and takes them off.\",c057 3.60 32.00;c017 1.90 7.60;c019 0.00 6.40;c149 0.00 4.20;c015 0.00 7.10,31.08\r\nPNOSZ,ZAWX,Bedroom,5,6,Yes,\"A person is smiling as the person looks at himself in the mirror. Then, laughing, the person goes to sit at their desk.\",hair;mirror,\"A person looking in a mirror straightening their hair ,proceeds to roll up shirt shelves.The person turns and walk to a chair and sits down.;A person is looking at themself in the mirror and then walks over to a chair and sits in it.\",c096 0.00 14.70;c152 7.30 14.70;c151 15.90 23.70;c059 19.50 32.00;c144 0.00 7.50;c094 0.00 13.90,31.38\r\nIF4Y9,BYF9,Bedroom,5,5,Yes,A person walks into their recreation room while talking on the phone.  They walk to the window and look outside before closing the window.,door;phone;window,The person is talking on the phone as they walk over to the bedroom window. The person closes the window.,c089 15.90 30.70;c019 0.00 33.00;c097 0.00 5.20;c006 15.80 30.40;c092 9.40 27.30,31.96\r\nKA3ER,ZAWX,Pantry,6,4,Yes,\"A person is tidying, and then walking with a box of groceries, and then turning a doorknob of a pantry.\",bag;box;cabinet;dish;food;groceries;objects;shelf;shelves;sliding door,\"A person is putting groceries on a shelf. A person then picks up a box, and opens a cabinet.;A person with a number of objects in their arms places them on a shelf and then removes a box to place into a cabinet.\",c040 18.50 29.60;c020 0.00 13.00;c043 10.70 17.50;c130 0.00 13.60;c113 14.90 22.10;c114 5.50 11.70;c062 1.20 7.40;c119 1.20 7.40;c081 1.20 7.40;c082 5.50 11.70,30.58\r\nAH4UW,XXN8,Laundry room,5,7,Yes,\"A person walks into the laundry room, holding a laptop. The person closes the door behind them.\",computer chair;door;laptop;something;table,A person walks in and flops down a laptop case. The person then shuts the door behind them and exits the scene.;A person is holding a something and walks into a room and closes the door. They put the thing on a table and walk off camera.,c049 0.00 5.20;c006 1.40 8.50;c009 0.00 5.70;c097 0.00 3.50;c047 0.00 5.10;c141 1.60 9.30,32.12\r\nGR130,4I2W,Bathroom,7,7,No,A person is snuggling a picture while grasping a dirty dish in the bathroom.,book;dish;food;paper;plate,A person is standing in a shower reading a paper and sneezing. The person picks some food up off of the floor.;person sneezes while holding a book then grabs food off the floor,c118 19.40 30.00;c153 2.00 18.00;c063 18.80 24.10;c061 18.70 29.80;c117 14.30 18.60;c116 17.00 22.40;c115 0.00 22.10,29.21\r\nZDX0Y,XARO,Stairs,5,7,Yes,A person is standing on the stairs holding a book.  The person takes clothes out of a box on the stairs and fixes the collar of a shirt.,book;box;clothes,\"Person is looking at a book, puts book in a box, and starts pulling clothes out from the box.\",c041 5.40 14.70;c026 0.00 16.70;c028 5.90 17.30;c044 9.40 26.10;c002 9.00 26.20;c000 17.60 32.00;c032 0.00 6.60,30.83\r\nRZDEA,C7O9,Stairs,5,6,Yes,A person is smiling with a glass in their hand. Then they sneeze as they hold up a camera to look at it.,camera;cup;dish;glass;phone;stairs,\"a person sits on the stairs with water then sneezes;A person is holding a glass and sitting on some stairs laughing and smiling, they then pick up a camera and begin to sneeze on it.\",c107 0.00 6.90;c109 0.00 5.00;c015 3.30 10.50;c018 6.20 14.90;c152 6.70 14.60;c153 18.70 28.60;c118 0.00 30.00;c016 10.70 30.00,28.83\r\n282ZZ,KFGP,Living room,6,7,Yes,A person puts on their shoes. The person then stands next to a table and begins eating a sandwich.,food;sandwich;shoe;table,A person is putting on a pair of shoes then eating a sandwich in the living room.,c065 18.50 26.20;c055 0.00 18.90;c156 18.50 26.20;c069 19.30 26.50,36.29\r\nIYCOH,YMXV,Bedroom,6,6,Yes,A person is watching television and then working on a laptop in a bedroom.,bed;laptop;television,\"person in room is working on computer, stands up.\",c052 18.10 32.00;c132 13.90 22.20;c154 16.40 22.70;c051 16.40 28.50;c135 0.00 13.10,30.83\r\nIADJE,5LWB,Hallway,5,6,Yes,Person is doing homework on floor. Another person is standing with groceries in hand and sneezing.,bag;floor;homework;paper,A person is sitting on the floor doing homework while a different person is standing holding a bag.;A person is sitting on the floor doing homework. While another person is holding a bag.,c125 0.00 4.00;c145 0.00 4.00;c020 0.00 4.00;c115 0.00 4.00,2.50\r\nJBJGX,ZG1V,Living room,5,7,Yes,While the person was doing their homework on their laptop the person decided undressing would make their more comfy while sitting there working.,clothes;coat;laptop;sofa,\"A person is sitting on the sofa with a laptop.;A person is sitting on a couch playing on a laptop, they close the laptop long enough to take a coat off, then opens the laptop back up.\",c046 12.30 19.90;c048 24.60 31.50;c155 12.50 25.20;c123 0.00 33.00;c002 12.20 23.40;c001 23.40 28.40;c052 0.00 19.10,32.17\r\n9O889,YMXV,Living room,5,3,Yes,A person is sitting in front of a laptop and then taking medicine on the stairs.,chair;computer;cup/glass/bottle;floor;laptop;medicine;shirt;table;water,The person is working on a laptop and takes moment to have a swig of water and take some medicine.;A person is sitting in a chair holding a bottle of water. They take some medicine and drink the water. Then they play on the computer.,c052 19.10 32.00;c059 0.00 32.00;c129 0.80 18.70;c109 16.10 21.80;c106 6.30 11.20;c011 0.00 32.00;c107 0.00 21.00;c014 0.00 32.00,31.12\r\n43FG9,WG9D,Bedroom,5,7,Yes,A person is closing a wardrobe and putting clothes on a chair.,chair;closet;clothes;door;towel;wardrobe,A person takes some folded clothes from a closet and tosses them onto a chair.,c113 0.00 4.40;c000 0.30 10.90;c001 3.20 8.70;c003 6.70 11.70;c008 0.00 3.20;c112 0.70 6.30;c006 0.50 5.50;c036 3.60 11.40;c033 0.50 11.30,16.00\r\n0PFL9,BPRF,Laundry room,7,7,Yes,\"A person fixes a picture in the laundry room, A person laughs on camera while in the laundry room.\",picture,A person is putting the back onto a picture frame while laughing.,c149 13.90 31.00,30.42\r\n64IAU,YMXV,Bedroom,3,6,Yes,\"One person is standing by a window when another person grasps the doorknob, opens it and starts laughing.\",closet;door;window,A person is leaning against and looking out into an open window while another person is opening the door and smiling.;person looks out the window and another person looks in a closet and talks to the first person while smiling,c141 14.00 19.10;c092 0.50 5.10;c149 24.00 32.00;c152 20.40 26.10;c008 17.60 23.80;c113 16.20 22.70,31.08\r\nRMS26,2Q9D,Laundry room,2,,No,A person is undressing in a walk in closet in front of a laptop. The person is standing next to a vacuum.  The person is also drinking a beer.,clothes;cup/glass/bottle;floor;laptop;vacuum,person takes of shirt drinking pop looking at laptop,c051 0.00 31.00;c155 0.00 6.60;c106 10.80 21.00;c126 3.00 7.60,30.42\r\n6VOCR,EA2K,Bathroom,5,7,Yes,\"A person approaches a bathroom and pauses in the doorway, stoops down, and removes their shoes.  The person then picks up the shoes, and holding them, walks over to the sink and places the shoes on the toilet seat.  The person then runs the faucet for a second and drinks some water from the tap by using a paper cup.\",glass;shoes;water,A person picks up shoes and puts them in the bathroom. The person then takes a glass and fills it with water.,,40.92\r\nV149B,DXDI,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is fixing a shelf, then sweeping with a broom, then washing a window in an entryway.\",broom;floor;shelf;table;window,\"A person is cleaning a desk, then picks up a broom and starts sweeping the floor, before washing windows with a cloth.\",c082 0.00 8.80;c102 6.70 17.10;c091 21.30 32.00;c154 4.50 9.90;c127 7.10 16.80;c012 0.00 9.30,31.50\r\n9335E,T7C3,Kitchen,7,7,Yes,\"One person sits and fixes a sandwich, then stands by the stove to do some cooking.\",cabinet;chair;dish;food;sandwich;stove,A person sits in a chair and makes a sandwich then stands to put the sandwich on the counter and begin cooking on a stove. the person then opens a cabinet and collects an item off of a shelf and puts it near the stove.;A person is sitting in a chair making a sandwich and cooking on the stove.,c066 1.10 21.40;c154 20.70 28.00;c147 23.80 35.40;c059 0.00 23.30;c113 37.50 43.00;c119 19.10 27.30;c118 0.00 27.30;c062 0.00 48.00,47.33\r\nHVBES,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"On the floor, the person saw a towel that had been used to clean the mirror.  The person immediately started running, leaving their shoes at the door.\",door;floor;shoe;towel,Person walking out of house leaving walking around a piece of clothing on the floor and not picking it up.,c150 11.00 16.90;c097 10.70 15.70;c057 8.10 14.70,31.38\r\nOEIRN,PO5L,Recreation room / Man cave,6,6,Yes,A person sits on a sofa eating a sandwich.  They pick up a bottle of medicine and take something out.  They take the medicine and then drink some water.,cup;food;glass;medicine;sandwich;sofa;table;water,\"A person sits on the sofa and eats a sandwich. They open a bottle of medicine and take some medicine.;A person walks in, sits on a couch and eats a sandwich. The person takes medicine off a table, opens it and takes some with a glass of water.  The medicine is put back and the person leaves.\",c065 2.30 18.00;c109 32.10 37.70;c128 17.30 23.70;c129 19.30 36.70;c156 2.30 18.40;c009 32.50 38.50;c067 1.00 20.20;c106 26.60 36.30;c110 25.60 30.00;c123 1.90 39.30;c154 35.10 40.10;c129 23.70 28.60;c068 19.70 27.30;c107 24.80 37.30;c128 15.40 38.70;c151 0.80 6.30;c011 3.30 40.50;c061 1.20 40.50,40.46\r\n30PG2,D0RU,Hallway,7,7,Yes,\"A person sits at a desk in the hallway, working on fixing a camera. The person gets frustrated and throws a screwdriver across the room.\",camera;chair;desk;phone;screwdriver;table,\"A person is sitting at a table fixing a phone.;A person is sitting in a chair fixing something with a screwdriver on a table. The person throws the screwdriver, and places an object onto the table.\",c009 23.20 28.10;c014 0.00 24.90;c015 22.20 27.30;c011 0.00 33.00;c016 0.00 10.20;c017 23.50 28.10;c059 0.00 33.00,31.58\r\nWLA52,G6WD,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person walks in the door holding a blanket in their hand.  The person puts down the blanket and picks up a broom, then leaves.\",blanket;broom;clothes;doorway,A person is holding a blanket. The person then puts down the blanket and picks up a broom.,c098 18.10 33.00;c100 18.80 25.60;c070 0.30 20.10;c071 15.80 23.00;c001 7.00 19.80;c097 17.50 30.20;c002 0.60 6.10;c000 1.30 18.40,35.08\r\nKP88I,ZAWX,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person in their home office is working by their desk. They start eating some food while looking up at the light, but they do not sneeze.\",chair;food;light;phone;sandwich;table,A person is fixing their phone while sitting in a chair and then eats some food.;a person is trying to clean an electronic device and takes a bite of a sandwich and stares at a light,c061 17.00 28.90;c156 16.80 28.30;c009 17.10 25.00;c065 18.20 27.80;c069 18.50 24.90;c059 0.00 28.40;c063 17.60 22.50;c068 21.00 25.30;c067 19.00 25.30,31.08\r\nQEFFJ,CCI9,Hallway,6,7,Yes,A person is sitting on a desk in a hallway looking in the mirror. The person drinks from a glass and leaves the room.,cup;desk;doorway;glass;mirror;table,\"A person is sitting on a desk while looking into a mirror. Then then put down the mirror, drink from a glass that was on the floor, then get up and walk away.\",c093 0.00 15.10;c096 0.00 15.50;c011 0.00 26.10;c106 12.60 25.00;c154 20.70 27.00;c110 11.50 19.00;c097 25.10 33.00;c109 13.10 19.00,32.38\r\nL09BS,ID9V,Recreation room / Man cave,6,6,Yes,\"A person in drinking coffee, and then opening a door in a recreation room / man cave.\",coffee;cup;door,A person stands in a entryway drinking coffee. The person opens a door.,c008 19.10 27.00;c106 0.00 20.20;c141 19.20 25.10;c107 0.00 27.00,25.62\r\nKHXGJ,WG9D,Hallway,7,7,Yes,One person runs in and grasps a pillow and stack of clothes from a chair.,chair;clothes;pillow,Person walks over and grabs clothes and a pillow from the chair.,c000 1.30 6.00;c076 0.80 6.00;c079 0.90 6.00;c002 0.90 6.00,4.67\r\nCEL4V,H8N1,Kitchen,6,7,Yes,\"A person takes a glass from the cabinet and fills it with water. The person drinks it, then sets the glass on a desk.\",cabinet;cup;dish;glass,\"A person gets a glass out of the cabinet and fills it with water, then takes a drink.\",c106 17.60 29.10;c113 0.00 5.60;c108 8.40 18.90;c112 1.60 6.60;c109 2.30 35.00;c120 0.00 35.00;c119 0.00 35.00;c107 1.70 31.30;c110 0.90 6.60,33.88\r\nIDDTF,HJJ4,Garage,5,7,Yes,A person walks into the garage snuggling up to a pillow and blanket while eating something.,blanket;door;food;pillow,Person comes into the room with a pillow and blanket in hand then leave the room.;A person walks into the room carrying a pillow and blanket. They take a bite out of something and then continue walking.,c076 0.70 13.00;c070 0.70 13.00;c156 3.90 11.10;c008 0.00 6.20;c079 12.40 15.00;c097 12.40 15.00,14.33\r\nZCH1J,DBGJ,Dining room,7,7,Yes,A person is sitting holding a laptop while eating next to a refrigerator.,bag;food;laptop;refrigerator,A person is sitting down and opening a bag of chips. They have a laptop on their lap that they are looking at while they eat.,c047 0.00 46.00;c051 0.00 46.00;c156 2.50 46.00;c021 0.00 8.00;c061 0.00 15.60;c061 14.50 23.20,44.58\r\nT6MFW,YMXV,Bathroom,4,5,Yes,A person is standing by the cabinet with the mirror and undressing.,mirror,A person flexes in front of the mirror.,,30.92\r\nRKU88,0KZ7,Bedroom,7,7,Yes,\"A person walks through the doorway into their bedroom, they walked to the wardrobe and start undressing. throwing down their dirty clothes as they come off.\",clothes;doorway;floor;jacket;mirror,\"A person walks through a hallway and looks in a mirror. They take a jacket off and throws it on the floor. Then they take a second jacket off and throw it on the floor.;Person going into the bedroom, stops and stands in from of the mirror, and then takes off her jacket and sweater.\",c097 0.00 4.80;c155 3.30 21.60;c096 3.00 25.00;c126 19.10 24.50;c003 8.70 13.40,24.42\r\nNKNVR,JVLO,Living room,3,7,Yes,Person is tidying up book shelf. Another person pouring tea and eating a cookie.,desk;food;shelf;snack;wires,The person appeared to be working with electronic wiring of some sort.  At the end of the video the person was eating something from a back which appeared to be chips of some sort.;A person sitting at a shelf begins cleaning the shelf. A second person eats food.,c082 0.00 17.90;c156 24.70 34.10,35.50\r\n2VCOB,1OHU,Pantry,7,7,Yes,A person is opening a sandwich bag in the pantry then starts closing the refrigerator nearby.,bag;closet;door;fridge;refrigerator,A person reaches into a cabinet and pulls a bag out. The person then closes the fridge door;A person reached in a closet and took out a plastic bag and looked in it. The person then walked to the refrigerator and closed it's door.,c020 4.30 27.00;c021 4.70 13.70;c023 0.00 8.30;c006 19.00 26.10;c142 19.00 26.10,25.71\r\nMCMCR,L4ZP,Living room,5,6,Yes,Person is sitting behind deck playing with picture. Another person is walking around and eating sandwich.,book;chair;food;phone;picture;table,\"A person is talking on the phone, while another person is looking at a book.;A person is walking around the room hiking their pants up while another person is sitting in a chair reading.\",c156 0.00 30.60;c059 0.00 32.00;c019 1.40 27.90;c088 4.70 10.10;c009 20.80 25.60;c084 8.00 13.20,30.58\r\n4GDTQ,DXDI,Kitchen,6,6,Yes,A person is standing in a kitchen holding a book and a watching television.,book;television;tv,A person is watching TV.  A person opens a book and then closes it.,c025 13.60 22.00;c026 0.00 28.00;c027 8.10 16.90;c032 0.00 28.00;c132 0.00 28.00,27.50\r\nIFO3G,EA2K,Bedroom,3,5,Yes,A person is watching the stove carefully.  The person then begins laughing as they open a cabinet.,bed;cabinet;floor;pan;refrigerator;stove,A person is sitting on a bed they then get up and start a fire on a pan to cook and open a cabinet door.;A person is sitting on the bed when they get up to light a stove. They then open up the cabinet to look inside,c113 30.50 37.00;c135 0.00 3.20;c125 2.90 33.30;c143 31.50 41.00;c154 0.00 4.00,40.38\r\n55DDW,D0RU,Recreation room / Man cave,7,7,Yes,\"A person is in their recreation room relaxing to a book under a dim light, after a long night after working, they sat their smiling in comfort.\",book;chair;desk;laptop;table,\"A person is seated at a desk, head on a book and sleeping (with eyes open). The person then awakens and smiles as the belly is exposed.;A person is sitting in a chair reading a book in front of a laptop.\",c152 31.90 40.00;c011 3.40 40.00;c059 3.40 40.00;c032 3.00 34.20;c146 32.00 40.00,38.75\r\nLNEAG,HR43,Laundry room,6,7,Yes,\"Person is holding picture, then puts picture on top of pillow then starts laughing.\",picture;pillow,\"The person is holding a framed picture. The person then puts the picture on top of a pillow, picks it back up and then puts it back onto the pillow.\",c084 0.00 25.00;c086 6.00 13.90;c085 10.30 21.70,24.08\r\nN4SA2,UTMU,Stairs,7,7,Yes,\"A person is sitting on some stairs playing with a coffee mug, they then put a towel around their neck, stand up and leave.\",clothes;cup;dog;stairs;towel,A person is sitting on the stairs playing with a cup while a dog is near them. They pick up a towel and put it around their shoulders before standing and leaving.,c107 0.00 17.10;c110 30.80 37.30;c033 17.80 36.80;c035 12.60 21.40;c154 33.30 39.10;c152 1.10 6.30;c148 26.20 31.30;c034 23.80 29.80,41.21\r\n16IDQ,Z68L,Entryway (A hall that is generally located at the entrance of a house),6,4,Yes,\"A person is sneezing into a camera, then closing a door and then wiping the wall with a towel in an entryway.\",door;phone;towel;wall,\"A person pushes open a door and takes a selfie with their phone.  They then clean the wall near the door with a towel.;Person opens door, looks outside, sneezes, and cleans wall with towel.\",c038 23.20 29.80;c008 0.00 4.20;c153 14.60 20.50;c015 4.40 12.00;c016 6.80 12.20;c034 0.00 4.20;c036 0.00 5.60;c033 0.00 4.20;c035 14.90 21.00,34.42\r\nHP94W,T7C3,Pantry,7,7,Yes,Person is putting phone on shelf while snuggling with teddy bear then starts laughing.,blanket;phone;pillow;shelf,\"The person is in the kitchen holding a pillow as if it were a phone. The person looks through a cabinet, and puts an actual phone down. The person appears to be talking into the pillow.;A person holding a pillow looks through the shelves. They continue to hold the pillow.\",c081 2.20 11.20;c076 0.00 35.00;c078 1.00 34.20;c152 7.20 35.00;c070 0.00 35.00,33.54\r\nLNR61,EIO2,Kitchen,6,6,Yes,\"A person stands in the entryway, holding a towel. The person throws the towel onto a nearby chair.\",chair;door;table;towel,\"a person with a towel on their shoulder stands in a doorway then throws the towel on a chair;A person leans up against a wall. Then throws a towel onto a table, then walks away.\",c036 12.00 22.10;c033 12.70 19.00,32.92\r\n20WZU,YA10,Basement (A room below the ground floor),5,7,Yes,A person is sneezing as they grasp a sandwich before opening a book.,book;food;sandwich;shelf,A person sneezes and then picks up a book off of a shelf. They open the book and look at it.;A person sneezes and takes a sandwich off a shelf. They eat the sandwich and pick up and open a book.,c065 0.00 6.50;c067 1.20 10.00;c027 13.20 21.50;c032 14.60 31.00;c153 0.00 4.90;c063 0.60 7.10;c156 4.80 10.80;c061 1.30 23.60;c026 12.30 31.00;c030 11.30 17.70,30.21\r\nVU0UY,UTMU,Garage,5,7,Yes,A person is sitting on a box in a garage eating a sandwich. The person sneezes.,box;food;sandwich,A person is sitting on a box eating a sandwich. The person looks around the room while eating and then sneezes.,c065 0.00 34.00;c156 0.00 34.00;c153 28.30 34.00;c067 0.00 34.00;c061 0.00 34.00,33.42\r\nV6XXN,Z68L,Bedroom,6,6,Yes,A person is in their bedroom lying on a pillow while laughing at a picture they took on their camera. They get up while grasping the camera in their left hand.,bed;camera;phone,\"A person walks into a room, lays on a bed, and looks at a phone.;The person walks into the room, lays down on the bed and is texting on their cell phone. The person gets up from the bed.\",c134 4.60 26.50;c015 2.60 29.00;c016 4.70 27.10;c018 3.30 29.00;c151 2.30 8.80;c135 3.40 27.70,28.46\r\nQDVXO,2RTW,Kitchen,6,6,Yes,\"A person is tidying their entryway with a broom. The person removes a picture frame from the wall, and washes it with glass cleaner.\",broom;cup;floor;picture,A person is sweeping the kitchen floor with a broom they set the broom down go over to a picture on the wall take it down use some cleaner and a paper towel and clean the picture.,c084 13.20 32.00;c083 13.50 20.10;c111 16.10 32.00;c102 0.00 15.20;c127 0.00 17.30;c098 0.00 14.60;c088 11.30 32.00,30.58\r\nV4Q75,QB52,Recreation room / Man cave,6,6,Yes,A person is drinking milk from a glass in their recreation room while watching television and eating a plate of food.,chair;cup;desk;dish;food;glass;table,\"A person is sitting in a chair, holding a dish of food, and eating from it. The person grabs a cup and drinks from it.;A person is eating food out of a dish while sitting at their desk. They drink some water out of a glass.\",c061 0.00 31.00;c118 0.00 31.00;c106 10.50 23.30;c107 10.60 23.30;c156 2.10 14.30;c059 0.00 31.00;c011 0.00 31.00,30.04\r\nN2GFQ,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A young person is walking thru a door, that person takes off their shoes and puts a bag on a shelf.  Then the person goes to wash their hands and face in a bathroom and said person is seen lying down on a couch.\",backpack;bag;clothes;couch;door;hand;mirror;shoe;sink;sofa;towel,\"A person walks into the front door,takes off their bag, shuts the door and takes their shoes off.  That same person then goes into the bathroom, washes their hands and dries them on a towel.  Then that person goes and lays down on a sofa.;a person walks in the door, kicks off shoes, puts down backpack, goes to the bathroom, washes hands and face then lays down on the couch.\",c155 4.00 12.00;c057 4.00 12.00;c139 14.00 30.00;c122 33.40 39.00;c022 6.90 13.50;c008 0.00 5.60;c096 25.10 30.10;c141 0.00 6.30;c097 0.00 7.30;c097 12.90 18.40;c020 7.00 12.90;c006 1.60 7.50;c096 16.10 21.60,37.62\r\nP23HN,5LWB,Living room,5,,No,One person grasping a bag of groceries walks by sneezing as a person snuggling on the sofa with a book watches.,bag;book;pillow;sofa;table,A person walks into a room and sets a bag on a table. They sit down on a couch and open up a book. They cuddle with a pillow while reading the book.,c024 0.40 5.50;c123 4.50 26.00;c026 5.10 26.00;c027 5.30 10.90;c151 2.70 8.50;c079 12.80 17.60;c032 5.20 26.00;c030 4.20 9.70;c009 0.20 5.50;c076 12.70 26.00;c022 0.20 5.30,25.25\r\nU6P8F,HJJ4,Garage,4,7,Yes,A person is standing in the garage with a broom.  The person is also drinking out of glass of water.,broom;cup;food;glass;table;water,\"The person is taking a break from cleaning a room, by drinking a glass of water\",c098 0.00 17.00;c106 1.80 17.00;c061 0.70 15.40;c009 12.10 17.00,15.50\r\n1F4YB,D0RU,Home Office / Study (A room in a house used for work),6,7,Yes,A person walking with a box in one hand while throwing a sandwich,box;sandwich,{},c067 0.00 13.20;c068 9.50 14.80;c040 0.00 33.00,31.92\r\n2IC8O,9Y7F,Dining room,4,2,Yes,One person is laughing by the mirror while another is grasping the television.,hair;mirror;table;television,A person is sitting in a chair watching television. Another person is sitting in a chair at a table fixing their hair while looking in a mirror.;A person is sitting in a chair while another person is sitting in a chair looking at himself in the mirror,c093 2.90 10.90;c096 6.90 18.30;c132 15.80 25.00;c059 0.00 7.10;c132 0.00 6.90;c152 11.20 17.50;c152 4.50 9.60;c144 7.00 18.30;c011 2.60 27.70,31.67\r\nC9HLB,ATX2,Home Office / Study (A room in a house used for work),7,5,Yes,One person is at a desk working on homework while holding a laptop. Then this person closes the laptop.,chair;desk;homework;laptop;paper/notebook,A person is typing on his laptop. Then he closes it.,c046 29.40 35.00;c047 0.00 35.00;c052 0.00 32.70;c145 0.00 35.00;c059 0.00 35.00,33.92\r\nVGU6Y,9PLL,Kitchen,6,7,Yes,One person runs in and takes a phone and a book while another person stands smiling with groceries in hand.,bag;book;groceries;hand;phone,A person holding a bag of groceries in one hand stands next to a counter.  Another person walks in and picks up a phone and some books.,c020 0.00 33.00;c015 10.40 33.00;c018 10.00 16.60;c026 8.40 33.00;c030 6.00 12.40;c016 23.80 30.60,32.46\r\nMRF8T,0KZ7,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person tidies up a closet by placing a box on the shelf neatly, then picks up a mirror lying on the shelf and smiles into it.\",box;mirror;shelf,A person puts some boxes on the top shelf and looks at themselves in the mirror.,c081 0.00 16.50;c042 0.00 16.50;c094 12.50 25.00;c152 12.50 25.00;c096 11.10 25.00;c093 10.40 25.00,24.08\r\nOKVGK,XXN8,Bedroom,7,7,Yes,\"The person enters the bedroom, closing the door and sitting at the desk. As the person begins undressing, they look seductively at themselves in the mirror\",chair;clothes;desk;door;mirror;phone/camera;table,\"The person is coming into her bedroom, sitting down and taking off her coat.\",c096 17.80 30.40;c006 2.10 8.00;c008 0.50 5.90;c151 5.80 11.20;c155 8.60 18.20;c154 28.90 34.30;c059 6.80 33.40;c018 16.00 22.10;c011 7.30 33.20;c093 17.90 32.00;c009 26.60 32.30;c015 17.40 27.00;c097 0.80 6.80;c016 17.40 27.00;c017 17.40 27.00,35.04\r\nEYABM,HR43,Kitchen,6,6,Yes,A person is holding a cup of coffee in one hand while cooking at the stove.,cup;food;mug;pan;stove,\"The person stands in front of the stove, cooking food in a pan and drinking from a mug.\",c106 0.00 4.10;c106 0.00 34.00;c147 0.00 34.00,32.79\r\nMI0ZQ,KL48,Bathroom,7,7,Yes,A person is holding their clothes as they enter the bathroom and start undressing. They take off their shoes once inside the bathroom.,clothes;counter;doorway;jacket;shoe;sink;table;towel;watch,\"A person puts a towel on the counter. A person takes off a jacket, bracelet, and shoes.;The person in the video is starting to undress. The person removes a jacket, then the watch that they are wearing, then they removed their shoes.\",c155 5.10 14.40;c034 0.00 4.40;c057 15.10 25.80;c155 0.90 27.30;c002 0.00 4.10;c097 0.00 2.50;c009 0.00 4.30;c009 9.40 14.40;c001 0.00 4.10,30.29\r\nVY1GQ,6RE8,Bathroom,5,7,Yes,A person in a bathroom washes their hands in the sink while smiling at their reflection. The person starts laughing after looking out the window.,cabinet;hand;medicine;mirror;sink;water;window,\"Person in bathroom turns of faucet, wash hands at sink, turns and looks at mirror, smiled. Then touched face, turned and looked at medicine shelf and laughed.;Person washing face and hand with water in the sink, looks into the mirror and medicine cabinet.\",c139 0.00 6.30;c152 9.70 20.80;c149 20.80 29.80;c096 9.70 20.80;c094 10.20 19.80;c092 18.00 29.90,34.46\r\n463UL,UTMU,Bedroom,6,7,Yes,\"A person is undressing and taking off shoes in a doorway, then drinking coffee in a bedroom.\",clothes;cup;doorway;glass;shoe,A person takes off clothes and shoes and gets a drink.,c057 6.10 14.30;c106 14.60 21.60;c155 0.00 8.90;c097 0.00 3.10,30.08\r\nWWNVG,ZAWX,Living room,6,5,Yes,One person grasps a bottle of medicine from a table in the hall as another person with a phone smiles and watches.,medicine;phone;table,There is a person standing in a room.  That person picks up medicine off the table and opens it.  There is another person in the room looking at a cellphone.,c016 9.60 30.00;c152 9.70 30.00;c015 10.00 30.00;c128 4.70 13.10,29.21\r\nV4YCA,HR43,Kitchen,6,7,Yes,A person laughs as they throw away some old food which they got from the refrigerator.,food;refrigerator,A laughing person opens a refrigerator and removes some food. The person throws the food in the garbage.,c142 15.30 22.10;c062 14.80 21.40;c064 14.90 21.80;c149 0.00 13.90;c143 0.00 5.70;c063 11.20 20.10,22.08\r\nRBAO4,9Y7F,Living room,1,1,No,\"Scene starts with a person walking home from work. The person opens the front door, sets their bag on the ground, and begins lying down on a couch while beginning to eat from a bag of potato chips.\",bag;bed;door;food;sofa,\"A person gets off a motorcycle, goes into a bedroom and sets a bag down, then lays on a sofa and takes a bite of food.\",c022 17.30 25.20;c006 9.10 15.70;c151 22.90 30.70;c020 11.40 24.10;c061 23.60 32.00;c122 21.40 32.00;c008 7.70 15.70;c156 22.80 32.00;c134 22.00 32.00;c097 8.10 15.30,31.12\r\nZVV1Y,2Q9D,Dining room,6,6,Yes,\"A person sits in a chair, putting on a pair of shoes. The person gets up, opens the door, and leaves.\",chair;door;shoe;table,A person is putting on their shoes in the dining room while sitting in a chair. They stand up and leave.,c059 0.00 21.40;c008 20.00 25.20;c055 0.00 20.60;c154 16.80 22.30;c011 0.00 2.60;c011 1.90 12.40,30.25\r\nYK7FT,25TD,Garage,5,6,Yes,A person puts running shoes into a garage cabinet before walking towards the door that leads into the house.,cabinet;corner;door;shoe,\"A person kneels down and puts some shoes behind a cabinet then struggles to get a door open.;A person holding a pair of shoes opens the door to a cabinet and places them in it. They then grasp a doorknob, struggling to open the door.\",c007 15.30 29.20;c113 4.10 11.10;c141 15.20 29.10;c008 2.90 8.90;c053 0.00 14.10;c054 5.60 14.10,31.42\r\nWRW74,FNK4,Laundry room,6,7,Yes,A person walks into the laundry room and turns on a light.  They are smiling as they search through a box of dishes.  They select a plate and grasp it as they exit the room.,box;dish;light;shelf,A person turns on a light and looks inside a box. The person pulls a dish out and turns the light off;A person turns on a light and grabs some dishes from a shelf.,c120 1.90 16.40;c104 4.70 13.10;c152 6.90 14.40;c120 11.90 24.90;c118 8.10 19.10;c041 3.70 9.30;c044 16.30 21.80;c105 19.90 24.40,25.79\r\nK2BY7,9PLL,Hallway,3,1,No,\"After throwing a towel on the floor by the doorway of the bath a person is dressing, walking in the hallway.\",clothes;doorway;floor;shirt,A person puts something on the floor then dresses and walks out of the room;A person is putting on clothes. They button up a shirt and then walk out of a room.,c097 21.20 30.00;c148 3.60 26.00;c000 0.00 13.50;c126 0.00 4.90;c150 23.00 29.60;c001 0.00 5.00,32.00\r\n0TIHC,YMXV,Bedroom,4,4,Yes,\"A person undresses and throws their clothes onto the floor.  The person grabs a laptop off the floor and opens it, then picks up a glass of water off the shelf.\",bed;box;clothes;cup;floor;laptop;table;water,\"A person is standing in the bedroom and throws clothes on the floor. The person then sits on the bed, takes a laptop from the floor, and tries to open it. The person gives up and sets it on the bed, and grabs a bottle of water from the floor. The person drinks the water.;A person balls up some clothes and throws them. A person then holds a laptop and puts it down. A person takes a water bottle and drinks from it\",c047 8.70 25.90;c151 7.80 32.00;c003 0.00 8.30;c106 22.90 30.50;c126 0.80 9.10;c155 0.00 9.30;c135 8.40 32.00;c040 7.80 25.10;c042 20.10 26.00;c110 22.00 27.70;c107 22.90 27.70,30.92\r\n8YNSB,ZAWX,Kitchen,6,6,Yes,\"A person is lying on the floor, reading a book. The person stands, walks over to a sink, and fills a glass of water.\",book;cup;dish;doorway;floor;glass;sink;water,\"A person is laying on the ground reading a book. The person then gets up, place the book down, walks to the kitchen and fills up a glass of water.\",c108 22.70 27.80;c025 7.10 12.50;c032 0.00 11.40;c124 0.00 11.40;c154 9.20 16.60;c121 22.10 31.00;c026 11.10 18.10;c120 20.10 25.50;c027 0.00 4.80;c028 11.60 18.00;c097 18.00 23.10,29.83\r\nCVX3K,D0RU,Kitchen,5,7,Yes,A person is drinking water with their medicine.  The person picks up the phone and continues working.,chair;desk;glass;medicine;phone;table;water,A person is sitting in a chair and takes some medicine and drinks water from a glass and then plays on their phone.;a person sits in a chair at a desk and takes some medicine then grabs their phone,c106 11.30 22.40;c016 18.40 34.00;c059 1.00 34.00;c011 1.00 34.00;c129 3.50 22.80;c107 12.30 23.30;c015 15.30 34.00;c018 15.00 20.00;c110 11.10 16.10;c109 17.00 23.40;c009 16.80 22.90,33.21\r\nW7SGQ,EA2K,Home Office / Study (A room in a house used for work),6,5,Yes,A person is eating a sandwich in front of a mirror and then holding a camera in a pantry.,camera;food;mirror;phone;picture;sandwich,\"A person eating a sandwich walks to a mirror and looks at themselves, then picks up a camera and prepares to take a picture.\",c015 15.10 34.00;c065 0.00 34.00;c067 0.00 34.00;c096 0.00 17.10;c156 0.00 34.00;c087 23.60 34.00;c018 13.90 19.30;c061 0.00 34.00;c016 15.60 34.00,32.88\r\nNOLQ7,HR43,Kitchen,4,7,Yes,A sneezing person walks into a kitchen and washes dishes in the sink.,dish;sink;towel,A person walks to the sink and sneezes while washing dishes. They put the dishes down and dry their hands with a towel.;A person walks in and washes a dish.  The person then puts away a dish and begins anew.,c118 6.10 27.30;c153 0.40 33.00;c121 4.40 29.40;c119 18.80 26.80,31.75\r\nD98TV,I4RP,Bedroom,6,6,Yes,A person is leaving a bag on the bed while washing the dust off the picture.,bag;bed;doorway;photo frame;picture;towel,\"A person walks into a room and puts a bag on the bed.  That same person picks up a picture and wipes it off with a cloth.;A person puts his bag onto his bed, then begins to polish a picture frame with a towel.\",c038 3.20 16.00;c022 1.40 7.50;c084 3.40 16.00;c033 0.00 16.00;c083 3.10 7.80;c097 0.00 3.90,14.83\r\nIL0JH,OUKK,Living room,4,7,Yes,\"A person is sitting at a desk, watching a slideshow of pictures on their laptop. The person stands up and leaves.\",door;laptop;table,A person is sitting and watching a computer.  The person gets up and goes through the door and goes outside.;A person sits at a table watching something on their laptop. They get up and leave.,c051 0.00 12.50;c008 11.50 18.50;c011 0.00 12.50;c097 8.40 16.30;c154 8.80 14.90;c052 0.00 13.00,18.04\r\nXED6W,3H6W,Pantry,7,7,Yes,\"A smiling person walks to the pantry door, then places a bag on the shelf. The person stands there for a moment looking at all the food.\",bag;cabinet;food;groceries;shelf,A person is putting items into a cabinet.;A person walks a bag over to a cabinet and places it inside.,c081 4.00 12.40;c062 0.00 13.40;c020 0.00 5.30;c022 3.50 11.70;c130 3.60 11.70,18.88\r\nOQ4SO,0KZ7,Bathroom,7,7,Yes,A person is holding a pillow with one hand and grasping a towel with the other.,blanket;doorway;hand;pillow;towel,A person stands in a doorway holding a pillow in one hand and a towel in the other.;Person standing in the doorway while holding a pillow and a towel in hand.,c076 0.00 32.00;c033 0.00 32.00;c070 0.00 32.00,31.29\r\nHHZUI,PFIO,Kitchen,6,6,Yes,A person is cooking at the stove in the kitchen.  They run over to a shelf and take a book from it.,book;cabinet;dish;food;shelf;stove,person cooks something on the stove then grabs a book out of the cabinet;A person is cooking on their stove.  They reach into a cabinet and retrieve a book off a shelf in it.,c026 26.00 34.00;c027 26.10 31.60;c147 0.00 26.70;c113 23.30 28.70;c032 24.20 34.00;c030 24.20 34.00;c112 24.00 30.30;c119 5.20 18.80,32.79\r\nBQKW5,0RNU,Laundry room,6,7,Yes,A person carries a box into the room and puts it under the window. The person takes out some towels and puts them in the washing machine.,box;clothes;towel,A person walks into a room holding a box and puts it near a window. The person takes towels out of the box and puts them in a washing machine.,c040 0.00 7.70;c044 4.70 25.80;c034 11.50 17.30;c035 5.00 16.20;c033 10.10 14.90;c005 11.90 32.70;c042 2.70 8.00;c001 11.70 33.20,32.54\r\nP7RQS,PKND,Kitchen,7,7,Yes,\"One person is at the table playing a game, and another person is at the refrigerator laughing.\",chair;game;phone/camera;refrigerator;table,A person is sitting at the table and playing with something. Another person comes into the room and opens the fridge and looks inside it while speaking to the other person.,c143 1.30 7.20;c149 1.80 7.10;c143 11.90 19.80;c152 0.00 2.50;c011 0.00 4.50;c059 3.10 10.20;c142 5.30 11.80;c016 0.00 4.10;c014 0.00 3.60,31.54\r\nGIZCL,PKND,Living room,6,6,Yes,One person holds a box of groceries while another person plays with a vacuum.,box;floor;groceries;vacuum,A person is vacuuming while the other person looks through a box of groceries.;A person is using a vacuum to clean a floor.,c137 23.70 32.00;c040 3.90 16.60;c044 24.80 32.00;c127 8.30 16.80;c138 23.10 32.00,31.08\r\nAB7ZD,CCI9,Living room,6,6,Yes,A person is grasping a vacuum while another person is laughing at dishes.,dish;vacuum,Person A is vacuuming while Person B is holding a pile of dishes.,c137 0.00 33.00;c118 0.00 33.00,31.62\r\n1YDCG,L4ZP,Kitchen,7,7,Yes,A person is cooking at the stove. They are walking in place while stirring a pot. They stop and tie their shoes.,dish;floor;food;pot;shoes;stove,\"There is a person tying their shoes.  That person then stirs something on the stove.;Person in the kitchen bending over to tie shoe, stops to stir a pot on the stove while shuffling feet back and forth, and then when done stirring goes back to trying to tie shoelaces.\",c147 5.30 25.10;c118 6.80 24.90,38.04\r\n3WAWR,XXN8,Home Office / Study (A room in a house used for work),5,5,Yes,\"A person is sipping on their coffee and they sneeze. They then open a desk drawer, pull out some medicine then close the drawer.\",bottle;cabinet;cup;desk;drawer;glass;medicine;table,Person is drinking from a cup then sneezes. Person open the drawer and takes out some medicine.;A person drinking from a cold cup.The person sneezes a couple of times.The person opens a draw and takes out some medicine and opens the bottle and takes some pills out.,c153 7.70 17.30;c129 18.90 24.40;c106 0.00 13.30;c154 21.60 27.30;c113 13.60 19.60;c011 0.00 25.00;c109 8.50 14.50;c107 0.00 13.40;c009 8.30 13.70,30.58\r\nNIH53,PO5L,Laundry room,5,6,Yes,\"A person is tidying the pantry. The person grasps a pair of shoes, but then sets them down to begin playing with their phone.\",phone;shoe;table,\"A person is grabbing shoes from a counter and a phone before leaving.;A person walks into a room tidys up a shelf, then they pick up a pair of shoes look at them and put them back down, then they pull their phone out of their pocket and look at it then they put it back in their pocket and leave the room.\",c053 11.30 19.00;c018 14.30 21.80;c009 11.20 19.20;c015 16.00 27.10,27.42\r\n0PKMF,ZAWX,Living room,4,5,No,Person A is sitting on a sofa in a basement smiling and laughing at a television show.  Person A picks up his mobile phone and checks the time.,chair;phone;television;tv,A person is sitting on a chair and watching TV while laughing. They take out and play on a phone.;A person is sitting in a chair watching TV and smiling. Then they take out their cell phone and start playing with it.,c015 20.70 32.00;c016 20.60 32.00;c152 0.20 4.90;c149 1.40 6.80;c059 0.00 32.00;c131 0.00 5.60,30.92\r\nR2G6S,P6LJ,Bedroom,5,5,Yes,\"A person is laughing and sitting at their desk, playing idly with the corner of a blanket as the person talks on the phone.\",blanket;chair;corner;desk;phone;table,This girl walked/stomped over to her desk in the corner and plopped herself down into the chair angrily. She picked up her phone angrily and called someone and started talking while jerking her blanket off the desk and onto her lap. When she was done she walked/stomped back toward the camera.,c071 10.80 48.30;c018 10.80 48.00;c071 17.00 26.10;c017 42.60 48.80;c070 35.20 46.80;c154 45.30 50.00;c059 3.20 44.60;c151 1.20 7.40;c011 2.70 48.50;c072 16.70 47.10;c019 11.10 47.80,49.21\r\n15FVJ,L4ZP,Bedroom,1,7,No,Person enters the bedroom and throws a pillow on a bed.  Person then grabs a box of candy off the desk and lays down in the bed and begins eating the candy.,bed;box;food;pillow;television;tv,\"A person holding a pillow lies in bed and eats while watching TV.;A person throws a pillow onto a bed.  That same person lays on the bed, opens a box and watches television.\",c076 0.90 7.90;c134 10.70 28.00;c156 13.30 28.00;c132 8.00 28.00;c080 2.90 8.20;c061 15.90 28.00;c040 7.70 19.90,27.29\r\nNK9RX,FNK4,Living room,6,4,No,A person takes a camera and puts it by a laptop then they begin drinking from a cup.,camera;cup;glass;laptop;phone;sofa,Person sitting on the sofa pick up a laptop and began using the laptop while drinking something from a glass,c047 0.00 9.40;c015 6.20 13.90;c018 5.10 10.50;c106 13.20 28.20;c123 0.00 32.00;c050 0.00 6.80;c049 4.00 9.10;c048 1.50 7.40;c016 6.20 13.90,30.75\r\nOVMCM,HJZQ,Recreation room / Man cave,7,7,Yes,\"A person awakens in a chair in their recreation room. The person takes a towel from the shelf, snuggles it, then walks out.\",chair;doorway;shelf;towel,A person awakens sitting in a chair. They then stand and walk to a shelf and wrap a towel around them before leaving.,c059 0.00 12.20;c035 12.90 19.80;c146 0.00 4.30;c154 6.10 12.70;c097 27.10 32.00;c033 17.20 32.00,30.92\r\nYE991,AH2J,Kitchen,6,7,Yes,A person cooking at the kitchen stove sneezes and then grasps a glass.,cup;food;glass;hand;pepper grinder;pot;stove,A person sneezed while drinking a glass of water at the stove.;A person standing at a stove cooking.The person grinds pepper in the pot sneezes and than takes a drink of water .,c106 18.40 28.00;c107 16.70 28.00;c109 22.80 28.00;c110 18.20 24.10;c147 0.00 21.60;c153 15.70 23.40,27.04\r\nLSAMR,XXN8,Bedroom,7,6,Yes,A person is opening a pillowcase and pulling out the pillow.  Then a person is tidying the doorway.,doorway;floor;pillow,A person is standing in a doorway taking a pillow out of its case then puts the pillow down and walks away.,c154 17.20 23.00;c125 7.50 21.50;c076 0.00 10.40;c097 17.50 24.20;c127 8.40 20.60,30.29\r\n5FCAU,KFGP,Hallway,6,7,Yes,A person is holding a glass while grasping a broom in the other hand.,broom;cup;glass;hand,A person is standing with a broom and then looks at a glass in their hand.  The person starts to walk away.,c107 0.00 29.00;c098 0.00 29.00,27.62\r\nSM0HI,QB52,Basement (A room below the ground floor),7,5,Yes,Person is snuggled up on a couch in the basement when the phone rings.  Person turns off the television and answers the phone and once the call is complete begins playing games on the same phone.,chair;phone,A sitting person picks up their phone and brings it to their ear. They nod and end the call then push buttons on the phone.;A person is sitting in a chair talking on a phone.,c015 1.50 31.00;c016 12.70 31.00;c019 2.80 17.60;c059 0.00 31.00,30.04\r\nZGTP8,Q4IF,Stairs,5,7,Yes,A person is sitting on the stairs with a box. The person grasps a pen out of the box and begin sneezing. The person then looks in the mirror.,box;mirror;picture,A person sitting in a stairwell opens a box and sneezes. He then picks up a picture frame and regards it.;There is a person sitting on the stairs with a box.  That person takes something out of a box and sneezes.  That same person then looks at a mirror.,c093 10.90 24.00;c039 1.50 6.80;c041 0.00 4.80;c153 2.90 10.00;c096 11.30 16.30;c040 0.00 9.40,23.17\r\nMOA3N,ZAWX,Living room,5,7,Yes,A person is seen tidying up their area with a broom. They start taking a box down from a shelf and look inside of it.,box;broom;floor,\"A person is using a broom to sweep the floor, then picks up a cardboard box and puts their hand into it.\",c102 0.00 24.90;c040 21.60 26.70;c041 23.10 31.00;c099 21.00 26.70;c127 0.00 25.20,30.25\r\n2X2C5,DXDI,Recreation room / Man cave,4,7,Yes,\"One person throws down a pair of shoes, then snuggles with a book before leaving the room.\",book;chair;something,A person throws something on the ground and sits in a chair. The person gets up and walks away;A person throws something onto the floor while holding a book. The person sits down on a chair and cuddles the book. The person walks out of the room.,c026 0.00 18.30;c151 2.40 7.30;c154 13.20 19.30;c059 3.60 17.70;c028 0.00 3.80,21.38\r\n1T3B4,PKND,Bedroom,3,7,Yes,A person is standing by a mirror and vacuuming the door opening.,doorway;mirror;vacuum,A person is vacuuming while in front of a mirror.;A person is vacuuming a bedroom doorway and it catches a curtain,c137 0.00 37.00,35.75\r\nGXZHG,6NQX,Bedroom,6,7,Yes,A person is working on homework and then starts running to the sofa.,book;chair;paper;sofa;table,A person is writing in a note book they get up and run to the couch and lay down,c145 0.00 10.80;c122 12.60 18.00;c150 8.10 14.70;c154 6.90 12.60;c032 0.00 11.80;c011 0.00 12.00;c059 0.00 12.60,16.58\r\nAWITI,YMXV,Bedroom,4,6,Yes,A person walks into the room and turns on the light.  The person throws a pillow on top of the cabinet and leaves.,cabinet;door;light;pillow;shelf,\"A person is standing in a doorway. They walk into a room, turn o the light, and take pillows off the bed and put them on a shelf.\",c104 0.00 10.40;c077 18.40 28.80;c079 9.90 15.90;c076 14.20 19.30;c081 23.40 29.50;c097 0.00 4.30;c006 2.30 7.90,30.88\r\n0POYO,DXDI,Entryway (A hall that is generally located at the entrance of a house),3,5,Yes,A person dresses by putting on a jacket while standing in the doorway. Next the person sneezes as they grab the doorknob.,clothes;door;jacket,A person is putting on a jacket. A person then sneezes and walks out the door.;A person is standing in the  door way they put their jacket on and walk out the front door.,c008 15.30 23.50;c141 15.70 23.10;c148 0.00 14.40;c006 17.40 25.00;c001 0.00 13.90;c000 0.00 10.20;c097 17.50 25.00,24.42\r\nEJJIO,8718,Kitchen,7,3,No,A person opens a cabinet and takes out some coffee and then closes the cabinet.,cabinet;can;counter;door;food;table,A person walks into a kitchen and opens a cabinet and pulls out some food. The person places the food onto the counter and begins cleaning the counter.;A person walking in a room goes to a cabinet and opens the doors looks in side .The person takes out a can food and sits it on the counter .,c112 10.40 23.20;c008 4.90 10.60;c013 21.30 29.00;c113 4.80 10.50,27.58\r\nR3S1V,9PLL,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A smiling person sweeps the hallway with a broom, then they run through the doorway.\",broom;doorway;floor,A person uses a broom to sweep up the floor;a person sweeps the floor then goes out a door,c098 0.00 31.00;c127 0.00 27.90;c097 24.80 29.50,30.21\r\nDQTAY,C7O9,Bedroom,6,6,Yes,A person is lying in bed and watching television. Another person is leaving for work and drinking a cup of coffee.,bed;cup;television;tv,\"A person is lounging on the bed watching TV. Another person walks over holding a cup and gives them a hug, and leaves.\",c134 0.00 29.00;c132 0.00 29.00;c107 0.00 23.80,27.71\r\nB3SF6,4I61,Bedroom,6,6,Yes,A person is watching television and then taking clothes out of a cabinet in a bedroom.,bed;cabinet;clothes;door;mirror;television,\"A person is walking into a bedroom and lays across the bed and adjusts the televisions, gets clothes out, then leaves.;A person walks to abed and lies down, watches television, then stands, open cabinet doors and removes clothes from the cabinet and throws them on the bed before leaving.\",c113 21.90 27.40;c000 24.00 30.10;c002 24.00 35.50;c008 20.20 25.90;c002 23.60 29.50;c001 25.70 36.70;c154 12.90 20.10;c134 4.40 17.10;c132 7.40 16.30,42.58\r\n86810,EIO2,Closet / Walk-in closet / Spear closet,6,6,Yes,One person was eating near the shelf. THe other was sneezing into a blanket.,blanket;food,One person is eating food and another is sneezing and wearing a blanket.,c072 0.00 32.00;c156 0.00 32.00;c153 0.10 32.00;c154 0.00 32.00;c061 8.40 17.90,30.67\r\nDR13T,BYF9,Stairs,6,7,Yes,The person is standing on a step smiling.  They pick up a book and a pillow.,book;pillow,A person takes a pillow and a book and holds onto them.,c026 10.90 22.00;c076 5.30 22.00,20.58\r\nXXIT4,4I2W,Home Office / Study (A room in a house used for work),7,6,Yes,\"A person is sitting in a chair and eating a sandwich. The person stands up, still eating, and walks over to their desk.\",chair;desk;food;sandwich;table,A person is sitting in a chair at a desk while eating a sandwich.,c059 0.00 6.10;c011 0.00 6.40;c065 2.90 18.90;c156 2.90 19.30;c067 0.00 34.00;c154 19.00 25.20,32.83\r\nE653K,OUKK,Home Office / Study (A room in a house used for work),4,7,Yes,\"A person is in the study putting their phone up on a shelf.  The person fixes the shelf a little because it's crooked, then grabs the doorknob and leaves.\",cup;door;glass;shelf,\"Someone walks up to a shelf and fixes it. They then open the front door and walk out.;Person walks in room with glass, place glass on shelf, straightens shelf, looks at it, opens door and walks out closing door behind.\",c081 7.00 12.00;c141 16.00 22.00;c006 21.00 27.00;c008 18.00 24.00;c109 7.00 12.00;c097 20.50 28.70,29.67\r\nKF2MN,5LWB,Garage,6,7,Yes,A person is laughing in the mirror while another person is opening a book.,book;mirror,A person is looking in and playing around with a mirror and another person is sitting down reading a book.,c032 0.00 28.00;c094 0.00 22.00;c096 0.00 22.10,26.92\r\n3TK88,G6WD,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,A person opens the door then puts a bag on the floor.,door;floor;light;towel;wardrobe,\"A person is looking through a wardrobe. A person then turns on a light. A person is holding a towel.;This person enters the bathroom, turns on the light, folds a towel and hangs it on the shower.\",c008 37.50 45.40;c033 0.00 34.30;c104 8.10 15.30;c097 40.20 48.40;c034 21.40 33.80,49.29\r\nF082Z,KQI6,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person in the entryway is playing on their phone while using the camera feature on their phone. They are smiling because they think it is funny. Eventually, they decide to take a picture of some food next to the sink.\",camera;phone;picture,A person is standing in a doorway holding a phone. The person walks to the kitchen counter and takes a picture.,c087 16.90 33.00;c015 0.00 33.00;c016 0.00 33.00,32.33\r\nZKC7M,1OHU,Stairs,6,6,Yes,A person in shoes is undressing while another person is awakening in the bright light.,clothes;floor;stairs;t-shirt,\"A person walked halfway up a flight of stairs, lifted the t-shirt being worn halfway off and over the person's head, and another person appeared from below and exited the stairway area.\",c155 6.20 37.00;c154 23.10 37.00;c124 20.80 27.70;c146 8.00 24.80;c125 25.10 33.60,35.58\r\nZEID0,0KZ7,Garage,7,7,Yes,One person is sneezing on homework while another person is closing a window.,homework;paper;window,A person sneezes while holding homework while another person looks out a window.,c115 0.00 28.00;c092 0.20 28.00;c153 0.00 4.00,26.96\r\n0O022,JVLO,Dining room,6,7,Yes,One person is closing the door while another is pouring a glass of water near a book on the table.,book;cabinet;cup;door;glass;table;water,\"A person closes a cabinet. Another person walks into the room and pours water from a glass, and then back into the container. A book is on the table next to the water.;A person is closing a cabinet door while another person is pouring water into a cup back and forth.\",c006 0.90 10.10;c108 13.00 21.80;c009 26.40 31.20;c112 0.00 9.70,32.25\r\nRE9O1,ZAWX,Stairs,7,2,Yes,\"A person stands in the doorway for a moment, before grabbing the doorknob and closing the door.\",door,A person walks through a doorway and closes it behind. The person then walks up a flight of stairs.,c006 14.40 24.30;c141 10.00 23.20;c097 10.90 22.20,27.79\r\nN1RJW,18IT,Hallway,7,7,Yes,\"A person holding a bundle of clothes with a pillow on top walks down the hallway, eating a cookie they're grasping in the hand not holding the garments.  They toss the bundle into a room, closing the door, and, watching where they walk so as not to step on anything, go back down the hallway.\",blanket;clothes;door;floor;pillow,A person is carrying some clothing into a room. They throw what they are carrying down. The person then closes the door to the room.  Then the person carefully steps around the stuff then goes back to the door and opens it again and leaves.,c126 17.30 23.60;c006 26.90 36.20;c074 0.00 21.90;c141 30.20 37.20;c003 0.00 21.90;c008 26.90 34.20;c070 0.00 23.20;c000 0.00 23.20;c097 56.10 67.00,66.33\r\nBUBT0,DXDI,Basement (A room below the ground floor),6,7,Yes,A person closes a box in the basement. A person sits in a chair and laughs at the closed box.,box;chair,A person closes a box. The person sits in a chair and laughs.,c039 0.00 17.80;c059 13.80 20.80;c149 16.80 31.60,31.21\r\nAMUDT,KFGP,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is in a office watching a video on their phone, they start continuously sneezing and afterwards wipe their nose on their clothes.\",chair;clothes;phone;video,A person is sitting down while on their phone.  The person is sitting down and is constantly sneezing.,c016 0.00 26.00;c153 11.10 16.60;c059 0.00 26.00;c015 0.00 26.00,24.71\r\nD5SB7,XXN8,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is sitting in the living room, holding a mirror. The person is watching themselves in the mirror.\",chair;mirror,A person is looking into a mirror.,c096 0.00 30.70;c059 0.00 32.00;c093 0.00 32.00,31.21\r\nO45BC,UTMU,Garage,3,7,Yes,A person puts down a laptop then throws some clothes on the floor.,clothes;floor;laptop,\"Person walks to garage door then set's laptop down, then throws clothing on floor.\",c001 9.10 16.20;c047 1.80 10.80;c126 11.10 16.10;c003 11.10 16.10;c049 0.60 11.00,23.88\r\nFPQRX,ENC8,Bedroom,6,7,Yes,\"One person awakens, throws a blanket towards the doorway, then smiles and starts getting dressed.\",bed;blanket;clothes;doorway;jacket;towel,Person lying on the bed pick up a blanket get out the bed walk to the door pick up a jacket and put it on.;The person is laying on the bed. The person grabs a towel and throws it on the ground. The person sits on the bed. The person stands up and puts on a jacket.,c074 4.60 10.80;c152 14.70 25.20;c154 23.20 28.70;c134 0.00 4.00;c146 0.00 11.10;c148 29.50 46.70;c033 5.10 10.80;c148 6.60 11.60;c036 4.80 11.10;c000 30.00 37.80;c003 4.80 11.10;c135 10.10 27.00,50.38\r\nQB8O7,2RTW,Kitchen,6,6,Yes,\"A person is sitting at a desk, smiling at a picture on a laptop. The person stands.\",laptop;table,A person sits at a desk with a laptop;A person seated at a table works on a laptop then stands while still looking at the laptop.,c154 31.50 37.00;c051 0.00 37.00;c152 0.00 8.00;c052 0.00 37.00,36.12\r\nPDTXL,UTMU,Stairs,4,7,Yes,A person is playing with their homework by the stairs. They put down their homework and walk down to a cabinet that is open. They start closing the cabinet.,book;door;stairs,The person is sitting and holding a book. The person starts to wave the book in front of her. The person gets up and walks down the stairs.;A person is holding a book and flipping it around. Then they set it down and walk down the stairs. They close a cabinet door and walk out of the room.,c026 0.00 17.70;c028 12.50 19.40;c154 17.70 24.20,34.42\r\nXAX61,Z68L,Kitchen,7,7,Yes,A person is opening bags of groceries and then takes out the vegetables and puts them in the sink.,bag;groceries;sink,A person walks into a kitchen then places groceries in the sink.,c021 5.50 10.50;c130 1.60 11.20;c022 3.80 9.70;c020 1.40 9.00,48.38\r\n7WOW1,Z68L,Recreation room / Man cave,7,7,Yes,A person is sitting in a chair in a rec room playing a game. The person turns and looks in a mirror.,chair;game;mirror,\"person is sitting and playing video game, turns over to mirror\",c059 0.00 36.00,35.12\r\n19ZGX,OUKK,Laundry room,4,6,Yes,The person drinks their coffee while standing. They then take their cup and set it on a table.,coffee;cup;dish;doorway;glass;table,A person drinks out of a coffee cup. Then the person sets the cup on the table.,c106 4.30 23.60;c009 17.80 24.40;c097 0.00 5.30;c118 0.00 23.00;c109 19.00 24.00;c119 17.50 24.40;c107 0.00 22.90,29.75\r\nO1D7K,BYF9,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person is tidying a wardrobe, then smiling at a picture, and then dressing in a Closet / Walk-in closet / Spear closet.\",chair;closet/cabinet;clothes;coat;duster;shelf;towel;wardrobe,A person stands in front of a wardrobe dusts the door.  Then the person puts on a coat.;A person cleans something in a wardrobe with a towel.  The person throws the towel onto a chair and puts on some clothes.,c148 18.70 37.00;c036 17.30 22.20;c114 0.00 14.60;c082 0.00 15.00,35.92\r\nDSHVL,1TZV,Laundry room,7,7,Yes,A person stands by a washer with a sandwich. The person sneezes then walks out through the doorway.,doorway;food;snack,A person is standing in front of a washer holding a snack. They sneeze and then walk out of the room.,c061 0.00 23.00;c097 17.30 23.00;c153 11.60 19.50,21.92\r\n2MTYU,3H6W,Kitchen,6,6,Yes,\"A person stands at the stove, cooking some food. The person reads from a cook book.\",book;food;pot;stove,A person walks into the kitchen holding a book and while standing in front of the stove the person shakes a pot back and forth while it's on the burner. The person then walks away from the stove.,c026 0.70 24.20;c030 0.00 4.30;c147 0.90 23.00;c025 19.30 24.90;c027 1.30 8.40;c032 3.60 23.90,26.50\r\nE7QDZ,Z68L,Bathroom,6,7,Yes,\"A person is laughing at themselves in the mirror, while working on putting the light back on\",light;mirror,A person walked to a sink and adjusted themselves in the mirror.  The person then turned on the light.,c096 3.50 21.20;c104 16.20 22.60;c149 19.00 24.80,24.04\r\nQEQJ3,XXN8,Other,7,5,Yes,\"One person walks in with a phone, tidies up the area, then leaves and closes the doorknob.\",blanket;clothes;door;phone;stuffed animal;towel,\"A person is playing with their phone before throwing a towel down and playing with a teddy bear.;A person is looking at something on a phone, they then grab a blanket and a toy then leave the room and close the door.\",c016 2.40 9.30;c006 15.10 24.30;c036 9.80 22.30;c075 6.10 13.20;c070 21.30 28.90;c097 25.80 32.00,30.54\r\nKZN8C,PO5L,Laundry room,4,7,Yes,A person eats a snack and then pours water into a glass on a washing machine. The person then looks out a window and puts the glass on a shelf.,beverage;camera;food;glass;shelf,A person is eating some food while holding a camera. A person then pours a beverage in a cup. A person then puts the camera on the shelf.;A person is eating and drinks from a glass.,c156 2.80 33.70;c062 11.00 16.20;c061 0.00 16.60;c108 12.60 22.90;c110 12.10 32.00;c107 12.70 25.00;c081 17.90 26.00;c109 17.90 26.00,34.21\r\n028CE,UTMU,Garage,6,6,Yes,\"A person is in a garage fixing a vacuum, they then start laughing as they get up and trip over a box.\",floor;vacuum,\"Person walks in room, bends and touch vacuum, stands up and walks out of room.\",c136 2.00 11.00;c149 9.30 14.60;c151 1.20 7.00;c154 8.60 14.20;c127 1.30 14.60,20.00\r\nOQFHT,R1OT,Hallway,6,7,Yes,A person walks in holding a bag of groceries. They pause in the doorway and set the bag on a chair.,chair;shoulder bag,\"a person puts a shoulder bag on a chair, stands there then picks the bag up and puts it back down again.\",,29.96\r\nSG99Q,2RTW,Kitchen,6,7,Yes,\"A person is washing a shelf with a moist paper towel. The person crumples up the paper towel, throws it into a trash bag, and sits down.\",chair;paper;shelf;table;towel,A person cleans a shelf before sitting down in a chair.;A person is wiping down shelves with a paper towel in the kitchen then throws the paper towel away and sits down in a chair.,c038 0.00 20.50;c082 0.00 20.50;c151 16.30 23.70;c059 19.50 31.00;c010 20.30 31.00,30.46\r\nZ2MBK,2Q9D,Laundry room,6,6,Yes,A person is standing in the doorway to the laundry room holding a sandwich. The person is drinking something from a cup.,coffee;cup;dog;doorway;food;glass;mug;sandwich,\"A person is standing in a doorway, drinking a glass of coffee and holding a sandwich. The person looks behind at a dog, and then continues to drink coffee.;A person standing in a door way drinking a cup of coffee and holding a sandwich turns and looks behind them self at a animal behind them.;The person is standing in the doorway of a laundry room, drinking from a green mug and looking behind at a small dog.\",c067 4.60 19.00;c106 6.90 14.80;c106 8.50 22.70;c107 13.50 31.00;c061 0.00 31.00,30.00\r\nH2B7U,2Q9D,Laundry room,6,6,Yes,A person throws the sofa covers in the washing machine.  They tidy the laundry room up before going to the door turning the doorknob and walk out.,blanket;clothes;door;shelf,\"A person is holding clothes then setting them down, then they tidy up the room before walking out the door.;A person walks into the laundry room and shoves clothes into the washing machine. They also put items that were on top of the dryer in the cabinet above the dryer.\",c070 0.00 3.40;c006 17.40 22.70;c071 0.00 5.40;c008 15.90 22.70;c000 0.00 4.20;c001 0.00 6.50;c005 0.00 8.00;c097 15.40 23.10;c081 4.50 18.10,27.21\r\n9BCZU,2Q9D,Laundry room,6,6,Yes,A person leaves the vacuum to go do the laundry. They undress and also toss a dirty blanket into the machine.,blanket;clothes;floor;vacuum,There is a person vacuuming in a laundry room. That same person then takes off their shirt and put the shirt and a blanket in the washing machine.,c071 25.00 32.10;c137 0.00 13.30;c155 18.60 26.60;c001 24.60 32.60;c005 26.10 34.00;c127 0.00 12.00;c000 22.10 30.10;c002 21.30 27.00,33.21\r\nHM7J7,6RE8,Pantry,6,4,Yes,\"A person is standing in the pantry doorway looking at the items on the shelf.  The person turns on the light and takes a picture off the shelf, looks at it, then throws it down on the ground.\",book;doorway;floor;light;picture;shelf,\"The person walks into the kitchen, turning on the light. The person picks up a picture off a shelf and looks at it for a moment before throwing it to the ground.\",c097 0.30 9.50;c104 0.00 4.40;c084 10.20 19.30;c088 12.30 20.10;c031 16.70 21.90;c126 16.70 21.90,30.08\r\nHJM82,XXN8,Hallway,6,6,Yes,A person drinks a cup of coffee while they talk on the phone. The person begins laughing.,coffee;cup;glass;phone,A person answers the phone and talks for a few seconds while drinking from a cup before finishing call and hanging up.,c019 1.00 34.00;c106 6.50 30.70;c149 7.40 28.40;c152 7.00 29.30;c018 0.00 5.00,34.33\r\nX1624,WG9D,Bathroom,7,7,Yes,\"A person in a bathroom holding a broom and their phone puts down their phone and sneezes, then begins undressing\",broom;clothes;clothing;jacket;mirror;phone,\"A person is looking in the mirror while holding a phone and broom, sneezes into their hand and begins to undress.;a person looks in the mirror, sneezes, and takes off a jacket while holding a brook\",c098 0.00 10.00;c015 0.00 6.30;c153 3.30 8.50;c096 0.00 6.30;c155 2.40 10.00,9.08\r\nX0JKJ,CCI9,Hallway,6,7,Yes,\"A person is using a vacuum on the hallway floor. The person puts the vacuum down, picks up a camera, and takes a picture.\",camera;floor;phone;picture;vacuum,A person is vacuuming the floor and then stops and picks up a camera to take a picture.,c015 20.90 34.00;c127 0.00 20.80;c137 0.00 20.80;c087 29.80 34.00;c018 19.10 34.00,33.46\r\nZED9E,2RTW,Living room,6,7,Yes,A person is in the living room eating a sandwich while fixing the vacuum.,food;sandwich;vacuum,A person eating a sandwich crouches next to a vacuum. The person fixes a vacuum cleaner.,c136 4.50 9.40;c065 0.00 3.10;c067 0.00 3.80;c156 0.30 4.90;c154 0.00 2.50,30.75\r\nIUVT3,KFGP,Bathroom,5,7,Yes,A person is opening the bathroom door.  Then the person starts grasping at the light.,door;light,\"A person opens a bathroom door, and touches a wall.\",c008 3.70 8.90,15.58\r\nYU9BS,3H6W,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person tidies the entryway as they smile. The person looks out the window, then turns the light off and leaves.\",light;table;umbrella;window,\"A person picks up an umbrella and other clothing items, puts them back, then looks out the window, then turns off the light.\",c092 22.30 30.60;c105 34.90 39.70;c012 1.80 15.30;c009 9.20 13.90,47.58\r\nNZG0R,4OHY,Kitchen,4,7,Yes,A person is smiling while closing the door to a refrigerator. They pick up a broom and walk away.,broom;door;refrigerator,A man walks across a kitchen and closes a refrigerator door. Then he bends down and picks up a broom. He waves the broom around as he walks out of the kitchen.,c142 3.00 12.20;c006 3.00 12.20;c098 9.70 27.20;c152 11.10 16.70;c097 20.30 26.60,28.38\r\n29CB7,PKND,Stairs,6,,Yes,\"One person tidies up stray books on the stairs and a crooked mirror, then smiles at the result.\",book;homework;mirror;paper;stairs,\"This person is walking up a set of stairs, carrying paper and a mirror.;A person walks up the stairs holding a book and a mirror. They trip and put the book down then laugh and keep walking.\",c093 0.00 31.00;c026 0.00 31.00;c152 7.50 15.50;c115 0.00 31.00;c149 0.10 15.90;c094 4.10 11.80;c096 0.00 11.50;c096 12.10 22.90,30.25\r\nJYC6G,PKND,Living room,4,7,Yes,\"As the person was dressing, the blanket from the bed was visable out of the corner of the person's eye.  The person was opening a cabinet.\",blanket;cabinet;closet;clothes;shirt,\"A person puts on some clothes and opens a closet.;A person picks up a shirt, and then puts it on. Then they grab a key, and unlock cabinet.\",c148 0.00 13.90;c000 0.20 7.10,31.58\r\nGC7L9,6RE8,Bedroom,7,6,Yes,A person goes to the window and opens it. Then the person turns and starts grasping groceries off the counter.,bag;curtain;objects;shelf;window,\"Person walks in room, opens curtain, opens window, spread arm out, walks to shelf, grab plastic bag, place objects in bag.;Person walks in room, opens curtain and window. Then looks out window and opens arm. Then walks over to shelf, picks up clear bag and put things in it.\",c090 4.10 14.50;c020 19.10 35.00;c021 19.10 26.00;c023 19.10 35.00,33.67\r\nTLBWW,4I2W,Living room,6,7,Yes,Person A is in a hallway getting undressed while walking to the bedroom.  Person throws a towel and some clothes into a nearby laundry basket.,bucket;clothes;doorway;towel,\"A person is walking through a doorway, they then begin to undress then grab some towels and throw them into a bucket.\",c034 17.80 30.00;c036 18.10 30.00;c155 0.00 17.80;c097 1.30 15.30;c001 13.50 26.90;c033 15.60 23.80;c035 16.10 23.90;c037 13.20 27.00;c000 12.20 26.40;c003 19.30 27.00,29.50\r\nL4VNK,3H6W,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person watches their phone as it sits on the table. The person grabs the phone and a book, and leaves.\",book;phone;table,Person walks over to a table by the door and picks a up a book and phone before walking away.,c026 9.00 14.90;c015 7.20 15.00;c018 6.00 12.00;c030 8.10 13.70,16.08\r\n9PXC0,CO1W,Bedroom,7,7,Yes,A person lying on a bed gets up  and grabs a box.  They open up the box and take out a book and camera.,bed;book;box;camera;phone,\"A person is lying in bed. A person gets up and looks into a box that has a camera, and a book\",c026 20.90 31.00;c015 16.20 26.30;c133 0.00 5.90;c043 8.00 15.00;c027 23.50 31.00;c134 0.00 8.70;c040 8.30 15.00;c044 11.30 23.80;c135 1.30 31.00;c041 11.20 19.10,30.25\r\nG8O8P,P6LJ,Dining room,7,7,Yes,A person is closing a door and while walking into a dining room is grasping their phone in their hand.,door;hand;phone,A person walks to the closet and opens the door.  The person goes into the closet and then closes the door.  The person walks to a table with a phone in the person's hand.,c015 0.00 36.00;c006 2.30 8.90;c008 5.10 11.30;c016 11.00 32.40;c141 1.60 7.00;c097 1.10 7.00,34.54\r\nMMY3N,XXN8,Kitchen,4,6,Yes,A person is washing a glass in the sink and another person is throwing a box in the trash.,box;cup;dish;glass;sink,A person is washing dishes. Another person puts a box into the garbage.,c111 1.60 30.20;c042 3.10 11.20;c121 1.40 29.10;c118 0.00 30.80,30.92\r\nKTL2G,9PLL,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person runs to the entryway while holding a broom, they close the door, and turn off the light.\",broom;door;floor;light,\"A person runs down a hall carrying a broom, closes a door and turns off a light, then walks away.\",c105 13.70 19.00;c006 7.80 17.90;c098 0.00 10.50;c099 6.00 10.80;c126 5.70 10.70;c097 0.90 10.20;c127 2.20 33.00,32.00\r\nEFD6M,PKND,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,\"One person snuggling a blanket throws the blanket at another person, who then closes a laptop and grasps the edge of the door.\",blanket;laptop;sofa/couch,A person is on their laptop and another person snuggles with a blanket.,c072 0.00 32.00;c051 0.00 21.10;c123 0.00 32.00;c049 13.30 22.90;c046 10.80 19.10,30.54\r\n57N4Z,ZAWX,Stairs,5,7,Yes,\"A person runs up the stairs, quickly dressing. The person grabs a cup of coffee from the top, turns off the light, and quickly runs back down.\",bed;cup;doorway;glass;hair;light;mirror,\"A person walks through a hallway and enters a bedroom. The person looks into a mirror, then picks up a tea cup and sips from it. The person then exits the room, turning off the light.;A person walks up some stairs and goes into a bedroom and looks into a mirror. The person then eats some food that is on the bed. The person then turns off the light and walks out of the room.\",c105 22.70 27.60;c106 16.00 24.70;c096 7.60 16.40;c144 9.10 14.40;c097 5.00 10.10,30.50\r\nRGZVZ,YA10,Dining room,6,7,Yes,A person holds a pair of shoes as they sit down in a chair. The person sneezes.,chair;shoe;table,A person is holding shoes and sneezing then they rub their throat and walk away.,c059 5.60 30.00;c151 3.50 10.60;c153 10.10 16.70;c053 0.00 30.00;c154 26.10 30.00;c011 6.40 30.00,28.79\r\n5ZHOX,UD06,Kitchen,6,7,Yes,\"A person is standing in front of the refrigerator. The person begins taking dishes out of it, sneezing as the person does so.\",dish;food;refrigerator,\"This person walks into the kitchen, opens the fridge, removes some items, then sneezes.\",c120 8.10 24.90;c142 21.20 27.40;c154 4.40 28.70;c153 12.40 18.30;c143 2.80 8.40;c063 10.00 26.40;c061 10.00 29.90,34.33\r\nZD3GI,UTMU,Living room,6,7,Yes,\"A person is holding a bottle of medicine, then pouring a glass of wine and then eating a sandwich in a living room.\",bed;cup;dish;food;glass;sandwich,\"A person is sitting on the bed. The person pours some wine into a glass, then swirls it while putting the bottle on the floor. The person grabs a sandwich, takes a bite, and then sips from their glass of wine.\",c107 14.20 44.00;c110 4.30 10.00;c067 24.80 44.00;c156 25.00 44.00;c106 28.20 35.50;c108 9.90 21.20;c065 25.00 31.80;c069 23.90 29.20;c135 0.00 44.00;c063 24.10 29.20;c061 24.50 44.00;c120 24.50 29.80;c119 39.20 44.00;c109 20.90 27.90,43.12\r\nMVTAL,PO5L,Kitchen,5,6,Yes,A person is standing in the kitchen looking out the window. They tidy up the area next to the stove.,stove;towel,\"A person walks in, looks out, picks up a towel and cleans the stove.;A person walks into a kitchen looking for something. They then begin to clean the stove with a towel.\",c033 18.50 30.80;c035 17.90 22.70;c034 35.70 41.00,40.46\r\n7HSUM,H8N1,Bathroom,3,6,Yes,Person is standing by cabinet fixing their hair while looking in mirror.,hair;mirror,A person looks a themself in a mirror and fixes their hair.,c144 0.00 36.00;c096 0.00 34.40,34.75\r\nE3S4O,D0RU,Living room,4,6,Yes,\"A person opens a window in the living room. That person then plays with the light switch, turning it on and off several times.\",light;picture;window,\"Person Walks across room, opens window treatments, turns on light\",c090 3.00 22.60;c104 18.80 32.00;c105 26.30 32.00;c083 2.60 8.20;c089 8.80 14.70;c154 0.00 2.50,30.92\r\n1K0SU,2Q9D,Closet / Walk-in closet / Spear closet,6,6,Yes,A person walks into the closet and turns on the light. The person is eating some food and drinking a glass of water.,cup;door;food;glass;light;sandwich;water,A man walks into a closet and is eating food and drinking water,c106 14.90 23.00;c104 4.40 9.40;c061 5.50 32.00;c156 6.50 32.00;c008 0.80 6.20;c107 0.00 32.00;c097 1.60 6.50;c067 0.00 32.00;c065 5.70 32.00;c006 2.10 8.70,31.25\r\nWR1QE,S053,Living room,4,7,Yes,\"A person opens a cabinet, and takes some medicine from the shelf. The person pours some of the medicine out into a small cup.\",cabinet;cup/glass/bottle;medicine;shelf,A person opens a cabinet and takes some medicine out.,c113 6.50 12.60;c112 11.00 15.90;c108 17.10 31.00;c110 9.10 21.20;c107 16.00 31.00,30.38\r\nM0KTN,D0RU,Recreation room / Man cave,6,6,Yes,The person is sitting down on a pillow. They are drinking from a glass. They grab a blanket and start putting it on themselves.,blanket;cup;floor;glass,A person is sitting on the floor. A person grabs a beverage and drinks it. A person then grabs a blanket and covers themselves.,c106 6.20 24.50;c107 6.00 26.50;c109 20.30 27.20;c070 24.30 34.00;c072 30.00 34.00;c073 23.50 28.80;c125 0.00 34.00,33.25\r\n2074D,KFGP,Hallway,5,6,Yes,\"A person is walking to the wardrobe. There, standing and laughing, the person turns the light on and reaches for a towel.\",dishes;doorway;light;towel;wardrobe,\"A person walks into the hallway and flips on a light switch.  The person then picks up a towel from a door handle, folds it, then throws it onto his shoulder before walking further.\",c104 3.30 11.20;c033 8.60 23.40;c035 5.40 13.70;c036 9.80 23.00;c037 15.60 23.60;c097 0.00 4.60;c152 7.20 20.80,22.67\r\nBLPAB,2Q9D,Bedroom,6,7,Yes,A person is working with a book.  Then a person is pouring something into a glass.,book;chair;cup;dish;glass;something,\"A person is sitting and doing homework with a book, then stops and pours  a glass of juice.\",c108 21.80 31.00;c028 15.40 22.40;c032 0.00 22.10;c026 0.00 22.10;c059 0.00 31.00;c025 14.50 20.00;c118 23.50 31.00;c145 0.00 18.50,30.46\r\nR0OI6,KQI6,Recreation room / Man cave,4,5,Yes,One person is lying on a sofa under a blanket playing games on a phone. Another person is drinking at a table and holding a sandwich.,bed;blanket;chair;game;paper;phone;sofa;table,\"A person is lying on a couch using their phone with a blanket covering them. Another person is sitting in a chair watching, laughing, and covering their eyes.;A person is lying under a blanket on a couch and playing on a phone. Another person is sitting on a chair laughing then drinks water from a bottle.\",c122 5.10 23.90;c015 14.10 29.10;c016 14.00 25.40;c149 12.10 24.20;c059 14.00 29.70;c070 0.00 15.30;c134 0.00 16.60;c072 0.00 16.60,30.96\r\nWYM1M,D0RU,Dining room,7,6,Yes,A person is taking a dosage of medicine. Another person walks in and begins playing a game on their cell phone.,box;game;medicine;phone,\"A person that is sitting on a chair, reaches for a plastic box with medicine inside, and takes the medicine.  Another person walks over to the table and sits in the chair while playing on a mobile phone.\",c128 0.00 12.50;c129 23.90 31.00;c151 23.70 31.00;c015 14.10 31.00;c016 14.40 31.00;c016 14.10 19.80;c044 0.30 10.20;c041 0.00 7.60,30.38\r\nA8LZE,8718,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person smiles as they walk through the doorway and close the door. The person pulls out their camera and starts playing with it.,camera;door;phone,\"A smiling person opens the door, walks through the doorway and closes the door.  They lean against the wall holding and fixing a camera.\",c006 1.10 7.50;c008 0.00 5.10;c016 3.50 30.00;c015 3.50 30.00;c152 0.20 7.60,29.33\r\n5FJRT,YFGW,Recreation room / Man cave,6,6,Yes,\"A person sits in a chair, wrapped in a blanket, watching television. The person laughs at something funny on TV.\",blanket;chair;television,A person is sitting in a chair watching television with a blanket over them.,c070 0.00 31.00;c059 0.00 31.00,30.04\r\n0PA3N,D0RU,Bedroom,4,5,Yes,A person is throwing shoes while another person is laughing at  a cup of coffee.,bed;floor;shoe,In a bedroom a person throws a pair of shoes on the floor.Another person joins and sits on the bed. The two chat for a moment before the second person exits the room.;A person throws shoes on the floor while the other sits on a bed to talk to the first person,c151 7.70 13.20;c154 19.20 26.00;c135 8.80 23.70;c058 2.70 8.80;c126 2.90 7.70,32.25\r\nEFSIN,C7O9,Kitchen,5,7,Yes,\"A person is washing dishes and drying them with a towel. Another person, standing nearby and holding a box, watches and smiles.\",box;cup/glass/bottle;dish;towel;washcloth,\"Person #1 is cleaning some dishes in the kitchen sink. Person #2 is standing behind person #1, holding a box and smiling.\",c121 0.00 10.90;c040 0.00 32.00;c152 0.00 7.50;c109 3.20 8.00;c110 1.20 6.50;c111 0.00 19.20;c038 15.70 32.00;c119 20.70 25.20;c120 23.20 28.30,30.71\r\nRYDUK,R1OT,Closet / Walk-in closet / Spear closet,7,7,Yes,A person begins undressing then puts the clothes in the closet. The person then grabs a broom and begins to tidy up.,broom;closet/cabinet;clothes;wardrobe,\"A person is standing at a wardrobe and takes off a shirt, placing it inside. The person then picks up a broom and starts wiping the wardrobe doors off with it.\",c100 5.40 22.00;c000 0.00 10.60;c155 0.00 10.70;c098 9.90 22.00;c102 10.10 22.00;c001 4.30 9.10;c155 3.50 8.30;c114 7.10 22.00;c002 0.00 6.60,20.96\r\n5QW1X,ZAWX,Kitchen,4,7,Yes,\"A person is sitting by a stove.  Then a person is opening a book, reading it, closing it.  Then a person turns off the stove.\",book;food;stove,\"A person sitting in the on the kitchen watches something cook on a stove. They open a book and begin reading, then check on the stove.;A person is sitting and cooking something on the stove.  The person opens and closes a book and then stands up\",c025 25.00 30.00;c027 7.00 13.40;c147 0.00 34.00;c026 4.90 30.80;c032 4.90 34.00;c028 27.10 34.00,32.67\r\nWQYET,JVLO,Home Office / Study (A room in a house used for work),6,1,No,One person pours some coffee into a glass and smiles at another person who is working at a desk.,cup;desk;floor;glass;papers;shelf;table;window,\"A person is pouring some water while looking out a window, another person is tidying a desk.;A person is playing with cups by a window while another person is behind searching for something in the desk.\",c012 10.30 32.00;c081 17.80 23.40;c125 9.70 32.00;c082 10.20 32.00,31.21\r\nTSI2S,D0RU,Bedroom,7,7,Yes,\"A person runs into a bedroom holding a broom. The set the broom down, pick up some food from a table, and start to sneeze before they can even take a bite.\",broom;food;table,A person runs through the room then puts a broom under the bed. They pick up some food from the table and sneeze.,c061 26.20 37.00;c063 21.20 27.30;c098 10.50 22.70;c099 15.80 22.20;c150 10.00 17.00;c153 28.00 37.00;c156 28.50 37.00;c152 10.30 19.30,35.62\r\nUSNFB,ZAWX,Kitchen,5,6,Yes,Person is grasping door handle while opening door. Another person is working on finishing homework.,chair;door;homework;paper;pen;table,A person is unlocking a door and opens it. Another person is at a table working on homework with a pen and paper.;Person opens door. Other person sitting at table writing with pen in pad.,c145 7.10 31.00;c008 0.00 12.30;c011 8.70 31.00;c059 8.10 31.00;c141 0.00 10.90;c014 9.30 31.00,29.71\r\nDPKMU,3531,Pantry,6,7,Yes,\"One person puts down a box by the door, then stands by the window and laughs.\",box;window,\"A person is holding a box, and puts it on the floor. A person looks out the window, and laughs.\",c040 0.00 6.30;c042 0.20 6.30;c092 5.80 32.00;c149 9.70 32.00;c152 9.30 20.60,31.04\r\n4S3UZ,JVLO,Living room,5,7,Yes,One person is sitting down smiling at the television and another person is by the door with a broom.,broom;floor;television,\"Person x is sitting down and watching tv smiling, camera pans to person y who is sweeping the floor, stops and then turns to leave the room.\",c098 25.10 36.00;c099 25.80 31.70;c152 14.30 23.20;c127 25.40 32.60;c132 0.00 28.00;c125 0.00 30.10,35.25\r\nBCONW,F56T,Kitchen,3,5,Yes,A person holding a bag pours water into a glass then puts the glass in the refrigerator.,cup;dish;fridge;refrigerator;water,a person walks into the kitchen and opens up the fridge and pours water into a cup and takes a drink.  The person puts it back in the fridge.,c107 0.70 28.90;c109 21.20 30.10;c143 2.10 7.60;c108 6.30 21.40;c142 5.50 13.30;c106 17.10 29.00;c110 4.50 11.40;c118 1.80 29.50,31.75\r\nQZPO6,0KZ7,Bathroom,7,7,Yes,A person is snuggling a bag while holding a mirror.,bag;floor;mirror;shelf,A person looks at a mirror while sitting down;Person sitting on the floor cleaning the mirror and seeing his face from the mirror with bag holding with him,c093 0.00 28.00;c096 0.00 28.00;c020 0.00 28.00;c125 0.00 28.00,26.96\r\nO8S0J,HJJ4,Bedroom,4,6,Yes,A person is sitting at a desk as they eat and drink coffee.,chair;cup;dish;food;table,A person is sitting at a desk eating a bowl of something and drinking a cup of coffee they set their cup on the desk,c106 6.30 17.90;c009 13.20 18.00;c156 0.00 8.40;c109 13.60 18.00;c011 0.00 18.00;c118 0.00 18.00;c059 0.00 18.00;c120 0.00 18.00;c061 0.00 18.00,17.08\r\nBBIMI,YA10,Bathroom,7,7,Yes,A person walks into the bathroom and throws a camera into a box next to the sink.  The person fixes some lotion bottles that have fallen down.,box;camera;sink,\"A person is walking into the bathroom, they then place something in a box and begin to tidy up the counter sink.\",,29.75\r\n1KFLX,ID9V,Bathroom,7,7,Yes,\"A person is sneezing and dressing, then closing a door and drinking coffee in a bathroom.\",clothes;coffee;cup;door;jacket;mirror,\"A person walks into the bathroom. They get dressed, then drink a cup of coffee.;A person puts on a jacket, picks up a cup, closes the door and then drinks from the cup.\",c106 15.00 29.00;c110 10.80 16.80;c006 14.00 20.60;c148 1.20 14.80;c107 14.50 19.90;c000 3.60 8.40;c001 8.20 14.70;c096 18.80 24.20,27.88\r\nDB3Y6,XXN8,Kitchen,4,6,Yes,Someone drinks a cup of coffee while another person is putting food on a plate.,bag;coffee;counter;cracker;cup;food;plate;table,Two people are in a kitchen. One is drinking from a mug while the other is grabbing crackers from a bag and putting them on a plate.;a person drinks some coffee and another person puts some food on a plate,c061 0.00 28.70;c063 0.00 28.70;c107 0.00 32.00;c062 1.40 7.10;c106 0.00 31.50;c009 0.00 7.10,30.58\r\nYVK8M,I4RP,Kitchen,6,6,Yes,The person is leaving the camera on the counter and the other person is leaving the refrigerator open after pouring a glass of milk.,camera;cup;glass;refrigerator;table;wardrobe,\"Person opening the refrigerator taking out some products, pouring milk in the glass then close the lid.\",c009 4.20 11.00;c108 8.10 17.60;c143 0.00 3.80,18.04\r\nNU0UK,I4RP,Kitchen,6,6,Yes,A person is leaving a pantry with bread to make a sandwich. Another person is watching while sitting at a table.,coffee;cup;dish;food;glass;refrigerator;sandwich;table,\"There is a person sitting at the table drinking from a glass.  There is another person standing at the table making a sandwich.;One person gets food out of a cabinet and begins to make a sandwich at a table. The other person is sitting at the table drinking coffee.;One person is sitting at a table drinking coffee, while another person is making a sandwich.\",c011 0.00 9.10;c009 2.50 7.60;c066 8.00 31.00;c106 1.20 15.70;c063 0.00 6.50;c106 0.00 4.90;c011 0.00 31.00;c107 0.00 31.00;c120 0.00 31.00,30.12\r\nYRPAR,PO5L,Hallway,5,7,Yes,\"A person is holding a laptop, then throwing a towel in a hallway.\",clothes;laptop;towel,A person is holding a laptop and throws a towel on the ground in a hallway.,c033 2.40 9.30;c036 9.70 14.90;c047 1.70 9.00;c003 9.70 14.40,18.46\r\nX10CG,KFGP,Recreation room / Man cave,5,5,Yes,The person is standing by the door in the entryway while drinking coffee and looking out the window.,coffee;cup;door;window,A person is standing at the door ad looking out of the glass. They are also drinking coffee from a small cup.,c106 0.00 19.50;c092 0.00 33.00,31.75\r\nCF55N,KFGP,Bathroom,5,7,Yes,\"The person smiles into a mirror while washing their hands. While leaving the bathroom, the person turns off the light.\",hand;light;mirror;toilet paper,A person is washing their hands while smiling in front of a mirror then turning off the light and playing with toilet paper.,c139 2.70 33.10;c105 30.40 34.60;c094 7.70 13.40;c096 6.70 13.70;c152 7.70 13.40,37.83\r\n99SGB,6IFG,Kitchen,6,6,Yes,A person was taking a box of cereal out of the cabinet and putting bananas in their bowl.,bananas;bowl;box;cabinet;cereal;cup;food;table,The person opened the cabinet and got out a box of Frosted Flakes and then walked over to the counter and sat the cereal down and grabbed a glass bowl and bananas and put them on top of the bowl.,c040 1.20 9.80;c042 4.60 9.80;c043 0.00 5.50;c112 0.30 5.90;c113 0.00 4.10;c110 6.10 11.60;c009 5.20 10.20;c062 5.20 9.20,12.88\r\nYJV3E,6IFG,Hallway,6,6,Yes,After grasping a blanket from the shelf the person began drinking water.,blanket;bottle;clothes;table;towel,A person is picking up a blanket from a table. The person then drinks some water from a bottle.;A person drinks from a bottle of water.;Person picks up a towel and a bottle and drinks from it before putting it back down.,c070 0.10 11.00;c073 0.00 5.00;c106 2.20 10.70;c009 6.00 11.00;c004 0.00 5.00;c000 0.00 11.00,9.58\r\nQZIRQ,6IFG,Kitchen,6,6,Yes,Person is lying on couch with laptop. Person is watching out window.,blanket;chair;laptop;shelf;water,A person is lying on a chair working on a laptop.;a person lays on a chair looking at laptop;A person is laying on chairs in their kitchen under a blanket.,c047 0.00 11.00;c052 0.00 11.00;c051 0.00 11.00;c059 0.00 11.00,10.42\r\n4ZJSI,JVLO,Entryway (A hall that is generally located at the entrance of a house),6,,No,A person walks to and opens a window. Meanwhile another person is holding a laptop and getting dressed.,clothes;door;laptop;towel,A person is walking into a house and opens a door. A second person picks up a shirt and smiles and leaves through the door.;A person walks outdoors and then opens a door and enters a house. A second person already inside holding a laptop takes clothes off of a bed and walks outside while smiling.,c008 6.50 17.40;c000 22.00 31.00;c002 17.70 26.30;c033 20.20 31.00;c047 12.50 30.50;c097 2.40 8.40,29.58\r\nZQ27G,I4RP,Closet / Walk-in closet / Spear closet,6,6,Yes,A person holding a blanket snuggles with it.  The person then puts the blanket down on a chair by where clothes are hanging.,blanket,\"A person is snuggling with a blanket on the doorway of a closet, they then throw the blanket on the floor.\",c070 0.00 4.80;c072 0.30 4.50;c071 0.00 4.70,6.04\r\nSFOPU,I4RP,Bedroom,6,6,Yes,A person is in a closet tidying the towels and dressing up next to the television.,bed;blanket;chair;clothes;doorway;light;towel,A person is folding towels on a bed they take them into the closet and sit them on a chair they walk over and get their jacket and put it on while another person in another room sits on a bed playing a video game.;he is folding stuff and saving them in a a closet,c001 3.20 10.10;c037 0.00 10.20;c148 10.80 25.00;c135 10.10 25.00;c059 10.20 25.00;c002 9.70 16.00;c033 0.00 9.40;c034 0.00 10.00;c097 4.40 10.00;c105 6.50 11.30;c035 2.90 11.10,24.42\r\nAJLGU,0KZ7,Kitchen,6,5,Yes,\"A person stands at the stove, cooking some food. The person takes a dish from the cabinet.\",bowl;cabinet;counter;dish;food;pot;spoon;stove;table,A person is cooking at the stove. They open the cabinet and remove a dish and place it on the counter.;A person is stirring something in a pot. They open a cabinet and take out a bowl to set on the counter.,c112 17.20 22.20;c113 12.90 18.60;c147 0.00 30.00;c120 14.70 19.30;c009 19.00 23.80;c119 19.30 24.40,29.08\r\n8BSG7,6RE8,Bedroom,5,6,Yes,\"A person is in a garage watching their laptop that is on a desk, afterwards they get up and open a door and walk out of it.\",chair;desk;door;laptop,\"A person is standing next to a desk and working on a laptop. The person sits down and looks at the laptop. The person leaves the room through a doorway.;A person sits down and get back up while using a laptop, gets up and leaves the room.\",c052 0.00 7.60;c008 16.70 21.60;c151 6.40 16.00;c059 11.20 15.90;c051 0.00 17.00;c006 17.30 24.00;c154 10.80 17.60,31.12\r\nPTPJL,UTMU,Kitchen,5,7,Yes,\"A person in the kitchen is playing with the dishes instead of washing them. After a while of deliberation, they start taking the dishes into the sink.\",dish;sink,A person is holding some dishes. A person is then taking the dishes from the stove to the sink.,c119 21.20 28.70;c120 26.30 32.00;c120 8.90 28.90;c118 0.00 26.70,30.67\r\n0J5T4,ID9V,Kitchen,5,7,Yes,\"A person takes some food from the refrigerator and eats. They pour a glass of water, take a drink, and set the cup near the stove.\",cup/glass/bottle;food;refrigerator;water,\"A person walks over to the refrigerator and takes out some food and begins eating it, they then get a bottle of water and take a drink.\",c106 19.60 33.40;c142 14.70 23.60;c143 0.70 7.60;c063 2.00 10.00;c110 9.30 14.40;c109 30.70 36.50,36.29\r\n8LWV7,ID9V,Bedroom,7,7,Yes,\"A person is sleeping with a sandwich. They awaken, and grasp the coffee from the table next to them and laughing.\",bed;blanket;coffee;cup;mug;table,A person lies down ona  bed. The person then gets up and drinks from a mug;A person awakens on a bed and grabs a coffee cup and drinks from it.,c106 13.40 29.50;c146 6.00 13.80;c134 0.00 29.40;c109 28.80 31.00;c072 28.80 31.00;c133 28.80 31.00;c135 9.10 30.50;c107 12.80 31.00;c110 11.10 18.00;c109 12.80 31.00;c133 0.00 12.50,30.04\r\nC8KER,G6WD,Pantry,6,6,Yes,\"A person grasps the doorknob to the pantry and opens the door. The person removes a beverage from the shelf, and drinks it.\",cabinet;cup;door;shelf,\"A person opens a cabinet door, pulls out a bottle and then closes the cabinet. The person then opens another cabinet and grabs a soda, and closes the cabinet. They drink the soda and leave\",c006 20.50 27.90;c081 21.90 33.30;c113 0.00 6.10;c110 15.80 25.20;c141 5.00 17.60;c008 9.90 32.90;c112 27.80 43.30;c106 34.80 44.40;c106 0.00 46.00,45.04\r\nL2HI2,0KZ7,Closet / Walk-in closet / Spear closet,7,7,Yes,\"Two people run through, playing at throwing a towel back and forth. One person, wrapped in a blanket, starts sneezing.\",blanket;towel,A person walks into a closet and begins hitting someone with a towel. The other person also hits back with a towel.,,27.33\r\nN00HR,YMXV,Bedroom,6,6,Yes,\"A person sits at a table, tidying the area around them. The person stops and looks out the window.\",bed;blanket;chair;table;window,\"A person is sitting in a chair smiling, moving around and putting their feet on a bed.  They then stand up and look out a window.;A person is turning and turning in a chair, is restless, then gets up and walks to look out a window.\",c011 0.00 23.10;c092 19.10 32.00;c154 19.30 24.90;c059 0.00 23.10;c152 4.10 10.30,31.25\r\nXE4FF,3H6W,Living room,6,5,Yes,A person walks through the entryway and puts the shoes they were holding on a shelf.,doorway;shelf;shoe;stand,A person walks from one room to anther room carrying shoe.The person places the shoes on a stand and proceeds to leave the room.,c081 8.50 14.80;c054 9.10 14.80;c053 1.90 6.80;c097 1.50 6.20,16.04\r\n3Z08H,PKND,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is throwing shoes and then sneezing while using a vacuum in an entryway.,doorway;floor;shoe;vacuum,\"A person walks into a room, takes off their shoes, picks up a vacuum, and starts vacuuming\",c137 11.60 33.00;c057 3.80 10.50;c138 10.00 16.20;c127 11.90 33.00;c097 1.30 8.00,31.54\r\nJZDL6,Z68L,Bedroom,6,5,Yes,Person looks in mirror then walks to closet grabs box of shoes puts them on and starts walking.,bed;clothes;mirror;shoe,A person checks them self out in the mirror. They grab shoes and sit on the bed while putting them on.,c096 1.00 8.00;c055 14.00 28.00;c151 25.00 30.00;c154 25.00 30.00;c135 9.00 14.00;c056 7.80 27.20;c148 14.20 29.00;c053 14.60 28.70,30.46\r\nDYY73,JVLO,Living room,5,7,Yes,A person is opening a book to read while eating food on the chair.,book;chair;food,\"a person is flipping through a book, opens a bpacket and eats something and goes back through flipping through pages and then eats food again\",c059 0.00 34.00;c032 0.00 34.00;c062 12.50 19.80;c156 14.10 34.00;c026 0.00 34.00;c115 0.00 34.00,32.50\r\nPB0JI,4OHY,Dining room,7,7,Yes,A person talking on the phone is putting a laptop on the table and sneezes into their arm.,chair;laptop;phone;table,\"A person is walking around a room carrying a laptop and talking on a phone.  The person then puts the laptop on a table, his arm on a chair, and sneezes.;A person is chatting on the phone while carrying a laptop around before sneezing.\",c009 8.30 18.30;c015 0.00 32.00;c019 0.00 24.60;c049 8.30 18.30;c153 18.40 29.10;c047 0.00 14.00;c051 11.50 17.90,31.00\r\nQYSER,D0RU,Living room,7,7,Yes,\"A person is lying down on a couch, messily eating a sandwich. Once they finish it, they sit up, look at a box filled with medicine on the table and smile.\",chair;dish;food;medicine;sandwich;sofa;table,\"person lays down on a couch eating a sandwich, then site up and looks at a container on the table containing pills\",c065 1.70 7.80;c122 0.00 16.90;c123 14.00 28.00;c156 0.50 14.00;c152 20.60 26.60;c119 10.00 14.80;c062 10.00 14.60;c069 0.00 3.90;c063 0.00 3.90;c059 13.60 28.50;c118 0.00 14.30;c061 1.10 13.10;c067 1.30 13.40;c149 20.10 27.20;c068 8.90 14.90,31.08\r\nJMTI2,XXN8,Home Office / Study (A room in a house used for work),4,5,Yes,\"A person is working at their desk, eating from a few dishes they have sitting to their side.\",chair;food;plate;table,a person eats some food while sitting at a table;a person eating grapes off of a plate.,c156 0.00 32.00;c011 0.00 32.00;c059 0.00 32.00;c063 1.40 6.50;c063 6.40 11.30;c063 11.10 17.60,30.92\r\nAVJFE,Q4IF,Kitchen,5,7,Yes,\"One person drinks and laughs at a table, then takes some food and their homework and leaves.\",book;chair;dishes;food;glass;homework;paper;table,Person is sitting at table eating and drinking. Person stands up and leaves room with books and a plate.;person sits in chair and takes a drink then eats and grabs some books,c061 22.90 30.90;c156 10.80 19.80;c030 19.00 26.90;c117 18.90 27.20;c011 0.00 27.20;c059 0.00 27.00;c154 22.60 31.10;c009 6.80 13.90;c027 15.30 21.70;c025 17.70 22.40;c106 0.00 7.30,32.04\r\n3SKPS,JVLO,Home Office / Study (A room in a house used for work),4,7,Yes,\"One person grasps medicine from a small table and starts pouring it, while another works on a laptop.\",can;cup;desk;laptop;medicine;table,\"One person is pouring a drink into a cup, while another man is sitting down and using a laptop computer.;A person pours some medicine at a desk. A second person is working on their laptop.\",c052 17.60 33.00;c009 0.10 15.40;c011 17.30 33.00,31.54\r\n8J2K5,0RNU,Hallway,7,6,Yes,A person is cleaning the floor with a vacuum in a hallway. The person is opening and closing doors as they vacuum.,door;floor;vacuum,\"A person is vacuuming the carpet, and then they open a door, and close it. Then they do that to another door.\",c006 30.20 36.00;c008 22.00 28.30;c137 0.00 9.30;c141 22.50 28.30,35.54\r\nH9U38,2RTW,Living room,6,6,Yes,A person is fixing their laptop at a table in the entryway to their home. The person closes the laptop and picks up a camera.,laptop;phone/camera;smartphone;table,The person is sitting on a table trying to fix a laptop. Then the person starts using a smartphone.,c052 0.00 26.00;c010 0.00 31.00;c046 21.10 26.00;c047 0.00 31.00;c051 0.00 26.30;c015 23.10 31.00;c018 22.90 31.00,30.17\r\nC2QK3,2RTW,Kitchen,6,6,Yes,A person is smiling and grasping a sandwich that was in the refrigerator.,dish;food;refrigerator;sandwich,\"A person is at the fridge they open the fridge they take out a sandwich they sniff it they look at it then they sniff it again then they stand there thinking about it.;A person opens up a refrigerator. The person pulls a sandwich out, looks at it, and then smells it.\",c067 3.80 31.00;c152 0.00 4.60;c143 0.00 6.40;c061 3.30 31.00;c063 0.00 7.80;c118 3.50 31.00,30.46\r\nFETME,2RTW,Living room,6,6,Yes,\"A person is sitting by a entryway holding a pen, they then pick up a homework book from the floor and place it on a shelf.\",book;desk;homework;paper;pen,\"A person is trying to use a pen. He picks up a notebook to see if it works. He is frustrated that it won't work.;A person is playing with a pen then they pick up a notebook from the floor, open it then set it on a desk and continues to play with a pen.\",c116 15.40 21.20;c115 8.20 19.80;c117 7.40 12.70;c025 13.80 19.40;c026 8.20 20.40;c027 10.20 15.70;c031 16.00 21.20;c145 10.20 18.90,30.42\r\nM704T,FYUL,Kitchen,5,7,Yes,\"A person is in the kitchen, sneezes, walks over to the sink and gets a paper towel to wipe their nose.  They Grab some food, and then leave the room.\",door;refridgerator;refrigerator;sink;towel,A person walks into the kitchen and proceeds to  open and close the fridge before reaching for a paper towel and sneezing into it.,c033 13.10 26.60;c035 11.60 19.60;c153 11.30 18.60;c143 5.10 13.20;c034 16.00 26.20;c036 18.50 26.20;c142 8.90 16.60;c008 4.90 10.00;c006 9.80 16.20,27.17\r\nYSABV,1OHU,Living room,7,7,Yes,\"A person puts a pile of clothes into the corner. The person laughs as they leave, turning off the light behind them.\",clothes;corner;floor;light,The person carried an armful of clothes across the room and then dropped them. The person the turned the light off and went around the corner.,c000 0.00 8.60;c001 4.20 10.10;c003 3.70 10.40;c105 9.20 18.00;c126 3.30 10.10;c152 14.30 19.30;c149 14.40 20.30,23.54\r\nOHVMG,C7O9,Stairs,5,7,Yes,One person wearing shoes is smiling and watching another person eating food.,bag;dish;food,A person is standing on the stairs eating a sandwich while talking to another person.,c061 0.00 32.00;c156 0.00 32.00;c149 0.00 6.00;c118 0.00 32.00;c062 0.00 32.00;c020 0.00 32.00;c152 0.00 4.60;c152 0.00 14.90;c063 0.00 32.00,30.71\r\n1E1VE,PO5L,Kitchen,1,6,Yes,A person is holding a vacuum and throwing a towel in a home office.,towel;vacuum,A person enters holding a towel. They grab a vacuum and throw the towel before leaving.,c137 0.90 15.80;c033 3.70 12.50;c036 8.30 12.50;c138 0.00 15.80,19.12\r\nGBOZR,YFGW,Bathroom,5,6,Yes,A person is playing with clothes while another person is fixing a cabinet.,clothes;floor,2 people are in the laundry room one is sitting on the floor while the other one is folding laundry.,c125 0.00 31.00;c004 0.00 31.00;c000 4.00 31.00,29.92\r\nBOOKV,DXDI,Recreation room / Man cave,4,6,Yes,\"A person in their man cave finishes tidying up the room, and plops down on a sofa to start watching their favorite show.  They lean back against a pillow on the sofa and grab a drink containing their favorite beverage.\",bag;clothes;glass;lamp;sofa;water;wire rack,\"A person is tidying up a room and then sitting down to watch tv;A person picking up a bag and tossing it, picking up a wire rack and taking it out of the room, tidying up the room slightly, sitting on the couch and picking up a glass of water and drinking it.\",c122 27.30 32.00;c151 20.30 26.90;c106 26.70 32.00;c003 3.50 8.10;c123 22.30 32.00;c000 1.50 7.50;c002 0.20 5.50,31.33\r\nF2KKH,YMXV,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is in their closet grasping a mirror and smiling. The person sits on a sofa and watches a video on their phone.,door;mirror;phone;picture;sofa/couch,A person enters a room and looks in the mirror. The person then sits down and starts playing on their phone.;The person shuts the door. The person then goes to the mirror on the wall and adjusts it. The person then sits down and scrolls through their phone.,c015 11.20 32.00;c016 11.50 32.00;c093 0.00 12.00;c096 0.00 12.30;c151 8.70 15.10;c006 0.00 4.50;c123 12.30 32.00;c083 0.00 10.90,31.04\r\nDC3PF,9Y7F,Hallway,5,6,Yes,One person is holding the doorway open while another is sneezing at the groceries.,doorway;food;groceries,A person walks to a doorway with groceries to show another person and begins sneezing.,c153 20.20 28.90;c061 3.40 31.00,30.00\r\nUJO36,D0RU,Living room,7,7,Yes,\"A person is pouring soda into a glass. Then, smiling, the person turns to the door and puts their hand on the doorknob.\",cup;dish;door;glass;hand;table,\"The guy walks to the table and picks up the Mountain Dew bottle and pours some into the glass. He picks up the glass, hears someone at the door and puts the glass down. He walks to the door and grabs the door handle but hears someone talking to him and turns to listen.\",c107 8.20 16.50;c108 1.90 9.30;c109 11.00 16.70;c110 7.70 13.90;c141 15.80 32.00;c152 18.90 32.00;c009 5.60 12.40;c119 10.80 16.50;c118 7.60 16.50,30.92\r\nO58M8,BYF9,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is laughing into a phone and then opening a door in the recreation room / man cave.,door;phone,A person is standing on a carpet and talking on a phone in the daytime.  She then walks to the door while still talking and opens the door and looks out.,c008 2.90 14.70;c019 0.00 18.00;c141 11.70 16.40;c015 0.00 18.00;c141 2.90 14.40;c097 12.60 18.00,16.67\r\n5R83A,1OHU,Stairs,6,6,Yes,A person is standing on the stairs holding a folded towel and a broom.  The person puts the towel on a stair and continues up with the broom.,broom;doorway;towel,A person is standing by the stairs holding a towel and a broom they put the towel on the stairs and carry the broom up the stairs.,c098 0.00 29.00;c100 13.30 29.00;c033 0.00 11.00;c034 5.70 12.90;c097 22.00 29.00,27.54\r\nECG4S,1OHU,Stairs,6,6,Yes,\"A person throws a box onto a table at the top of the stairs. The person takes something from the table, opens a nearby door, and walks through.\",box;bucket;clothes;doorway;stairs;table;towel;toys,\"A person is carrying a box up the stairs they put the box down and grab a towel and walk into another room.;Person climbs stairs, sets down a bucket, and picks up a towel.;Someone is walking up the stairs with a toy box and then they set it down and grab a towel as they walk through a door.\",c042 9.90 16.90;c097 18.30 27.00;c009 7.10 17.60;c043 0.00 17.80;c035 11.10 21.40;c033 12.70 27.00;c035 11.50 16.00;c000 11.20 27.00;c002 10.90 16.10,25.58\r\nCG45V,1OHU,Stairs,6,6,Yes,\"A person is standing on the stairs, holding a bag of clothes. The person puts the bag down at the top of the stairs, then returns to the bottom.\",bag;clothes;stairs,\"A person is standing in the stairs holding a bag of clothes, they then put the bag on top of the stairs and walk down.;A person is standing on the stairs holding a bag. The person walks up the stairs and puts the bad down then they walk down the stairs.\",c020 0.00 25.20;c022 2.40 26.60;c000 0.00 27.20;c001 0.00 26.90,28.21\r\n4RVZB,ZEM0,Dining room,7,7,No,A person is lying down and opening a box near a chair.,chair;phone/camera;table,A person sits down a table and begins reading a book. The person stops reading the book and looks at a phone. The person stands up to grab a jacket and put it on.,c059 0.00 26.40;c154 21.90 26.60;c017 23.10 27.90;c015 20.20 28.10;c011 0.00 26.60;c018 19.80 27.20,34.25\r\nKFZ55,0KZ7,Bedroom,7,7,Yes,A person is drowsy and still awakening from bed.  The person is sitting on top of the bed and taking their morning medicine and drinking from their morning cup of coffee.,bed;cup;medicine;mug,\"There is a person sitting on a bed with a mug and a bottle of medicine.  That person opens the medicine, takes some and then drinks for the mug.\",c135 0.00 30.00;c106 0.20 7.20;c129 13.60 22.60;c128 0.00 24.20;c128 5.80 14.80,28.75\r\nBPN95,UTMU,Garage,6,7,Yes,\"A smiling person is undressing in a garage. They grab a pile of dishes, turn off the light, and leave the room.\",clothes;cup/glass/bottle;dish;light,\"A person walks into the room, undresses, grasps a dish and turns out the light.\",c105 12.90 17.30;c118 7.50 17.60;c120 8.30 17.50;c155 1.10 10.00;c107 8.60 17.20;c110 6.60 12.60;c001 4.60 10.60,17.04\r\nP2EM5,Z68L,Home Office / Study (A room in a house used for work),7,7,Yes,A person is holding a pillow close to their chest.  The person then starts snuggling with it near the door.,blanket;pillow,\"A person looks at a pillow, then walks a few steps and hugs it.\",c076 0.00 22.00;c078 6.20 20.00;c152 9.00 20.00;c072 5.70 20.40;c070 0.00 22.00,20.88\r\nSE3WY,LWUV,Dining room,6,,No,A person is sneezing while trying to take medicine out of the cabinet. Then the person lays down. Another person comes in and takes the medicine away.,bag;blanket;desk;homework;paper;table,\"A person is sitting to a desk doing homework. The person then sneezes, and coughs. The person grabs a bag and gets up. The person then grabs a blanket and leaves.;A person is working on homework at the table and begins sneezing.\",c153 11.60 25.50;c154 19.70 28.20;c014 0.00 25.30;c116 0.00 25.00;c073 20.90 33.00;c023 20.20 33.00;c145 0.00 26.50,31.58\r\nE4C1C,4I2W,Garage,7,7,Yes,A person is eating food and holding a book then using a laptop in a garage.,book;food;laptop;sandwich;table,\"A person is sitting in a chair, eating a sandwich.  Looking at their laptop.  They pick up a book and start typing.\",c052 20.60 30.00;c061 0.00 18.50;c156 0.50 18.50;c009 16.90 22.10;c065 20.60 25.30;c067 0.00 18.70;c068 16.40 21.00,29.38\r\nXBPEJ,PO5L,Laundry room,5,,No,A person is lying in the doorway fixing a box.,box;washing machine,He takes a box off the washing machine and walks away.,c040 3.10 9.50;c043 3.10 9.80;c150 1.30 6.00,20.08\r\nMZK2X,KFGP,Recreation room / Man cave,6,7,Yes,A person is pouring things out of his bag. The person grabs the camera that falls out of the bag and takes a picture.,bag;camera;phone;picture;towel,A person dumps a towel and a camera out of a bag and then takes a picture with the camera.;A person is emptying a bag and finds a camera.,c015 14.70 28.10;c021 1.90 7.00;c087 18.60 27.80;c016 15.60 28.20;c018 12.90 18.30,27.83\r\n1UHL7,PKND,Bedroom,5,6,Yes,A person is undressing in front of a mirror and they put their shoes in a closet and close the door.,closet/cabinet;clothes;door;shelf;shoe,\"A person undresses in front of a mirror, picks up shoes from the floor and puts the clothes and shoes in a cabinet after opening its door.\",c008 12.20 20.10;c054 9.60 22.00;c155 0.00 12.20;c000 3.80 32.00;c112 22.10 32.00;c081 15.20 23.40;c152 21.50 30.30;c113 12.70 19.70;c006 23.50 32.00,31.25\r\nXHL3Z,D0RU,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is working on a laptop. The person sneezes, then takes some medicine.\",chair;coffee;cup;desk;laptop;medicine;table,\"A person sitting in a chair at a small desk works on a laptop. They sneeze and then take some medicine, washing it down with coffee.;Person sitting at a desk using a laptop take medicine out box and drink some water.\",c052 0.00 43.00;c153 26.20 33.10;c059 0.00 43.00;c106 38.70 43.00;c129 33.40 43.00;c011 0.00 43.00;c110 36.10 41.00,42.33\r\nJVV45,5LWB,Kitchen,6,7,Yes,A person is eating at a table in the kitchen off of multiple dishes. Another person is lying on the ground next to the refrigerator.,chair;dishes;floor;food;table,A person sitting at a table is eating with his hands while another person lays on the floor in a different room;a person eats at a table and another person lays in a doorway,c156 0.00 17.80;c061 0.00 18.60;c059 0.00 18.80;c124 14.40 28.00;c011 0.00 19.00,26.58\r\nY1HOV,YA10,Kitchen,7,7,Yes,A person sitting at a kitchen table grasps a sandwich.,dishes;food;sandwich;table,\"A person sitting at a table picks up a sandwich, puts it back down, and then stands up from the table.\",c067 6.00 24.50;c068 20.00 24.20;c011 0.00 25.20;c154 21.30 26.00;c061 5.90 24.20,24.92\r\nPDA4B,C7O9,Living room,4,7,Yes,A person is sitting on the sofa and awakens from sleep.  The person begins laughing when they look down at their phone.,phone;sofa,\"A person sits on a sofa, the looks at their phone and laughs.\",c016 7.60 28.00;c123 0.00 28.00;c149 9.40 23.30;c152 9.70 28.00;c015 0.00 28.00,27.38\r\n0W39H,KQI6,Living room,5,7,Yes,A person is pouring fresh coffee into their glass. This person then sits down and begins working on their computer.,coffee;cup;doorway;floor;glass;laptop;table,A person is pouring liquids between 2 cups. A person then walks into the living room and sits down in front of a laptop.,c108 0.20 9.80;c110 0.00 26.00;c151 16.60 22.80;c011 18.20 33.00;c125 18.00 33.00;c009 20.40 25.60;c052 23.20 33.00;c014 18.30 33.00;c109 19.40 23.90;c051 18.80 23.70;c107 0.50 9.50;c097 12.10 17.70,31.71\r\nD9FR4,P6LJ,Bedroom,6,6,Yes,One person is lying down laughing at the television with a sandwich in hand.,bed;hair;hand;phone/camera;plate;sandwich;television,A person lays down on a bed and begins eating a sandwich.;A person lays down on their bed and starts eating a sandwich from a plate. They laugh at something they see on their television as they hold their sandwich in their hand.,c131 17.90 23.40;c132 11.40 44.20;c151 0.00 8.10;c134 5.30 46.20;c135 3.60 9.30;c144 11.40 17.30;c015 0.00 3.00,48.50\r\nJ6TVB,ZTV2,Dining room,6,7,Yes,A person takes a cup of the table and drinks from it. Next the person begins to play with a phone.,cup;dish;glass;phone;table,A person is sitting at a table drinking from a glass.  That same person puts the glass down and checks their phone.,c106 0.00 21.90;c011 0.00 5.70;c016 21.60 31.00;c011 0.00 31.00;c018 20.50 25.30;c015 21.00 31.00;c110 0.00 3.50;c120 10.80 22.30;c107 10.50 22.50;c109 10.80 21.40;c119 10.50 20.50,29.62\r\nG8SWD,T7C3,Kitchen,7,7,Yes,\"One person closes the refrigerator, then cooks at the stove. Moments later, the person runs out of the room.\",dish;food;pot;refrigerator;stove,\"A person in their kitchen is looking in the refrigerator. The person shuts the door and walks over to the stove, reaches towards the back of the stove and stirs something in the pot. The person loos at something in another room and quickly leaves the kitchen.\",c142 9.60 14.40;c147 0.00 19.00;c150 25.00 28.00;c118 3.90 24.00;c143 0.00 5.00,26.88\r\nFYDYO,ZAWX,Pantry,7,7,Yes,\"A person is sitting in their pantry. They start looking up at the light and begin sneezing. Afterwards, they use their camera to take a picture of themselves.\",camera;floor;light;phone;picture,\"The person is sitting on the floor staring at a light,after sneezing, posing for a photo begins.;A person is sitting on the floor, they begin sneezing then take out a camera and snap some selfies of themselves while smiling.\",c087 18.40 30.00;c015 16.90 30.00;c153 10.40 18.90;c125 0.00 30.00;c152 17.20 30.00;c017 15.90 30.00;c018 15.00 30.00;c016 15.80 30.00,29.08\r\nKHWI5,3H6W,Living room,6,7,Yes,\"A person is sleeping and lying with their head on a pillow, then awakening and then using a phone in a living room.\",couch;phone;pillow;sofa,a person is sleeping on the couch then he wakes up and makes a phone call;A person wakes up on the couch and answer the telephone and has a brief conversation.,c015 11.40 18.30;c017 22.90 28.00;c018 10.00 15.00;c019 14.90 25.30;c146 6.30 13.80;c122 0.00 11.00;c123 9.90 28.00;c016 10.70 27.40,26.67\r\nPC0M6,2RTW,Bedroom,6,6,Yes,\"A person runs into their home office, throwing a box down onto their desk. The person closes the door behind them.\",box;desk;door;picture;pillow;table,A young person comes into the room and sets and object down and walks out the room;A person runs into a room and touches a tv. A person opens a door and leaves the room.,c083 0.90 9.80;c009 1.30 6.60;c042 1.30 6.60;c006 10.00 16.40;c008 8.60 14.00,25.25\r\n85ABO,2RTW,Bedroom,6,6,Yes,\"A person throws a pillow down onto the floor, then lies down. The person pulls out a picture, which they look at.\",floor;picture;pillow,A person throws a pillow on the floor then lays while gazing at a picture.,c077 0.00 4.50;c080 0.30 4.40;c124 2.10 26.00;c084 8.10 26.00;c088 9.50 26.00,25.46\r\nZ2A7Q,2RTW,Bedroom,6,6,Yes,\"A person walks into the home office, running. The person looks around wildly at the book shelf, and starts throwing all the books on the ground. The person stops mid movement, and looks at the armchair in the corner with the decorative pillow. They walk towards it, and throw the pillow aside to find their keys resting on the armchair.\",book;box;door;keys;phone/camera;shelf;something,\"This person is running into a room, pulls a few things off a shelf, then grabs something.;A person walks into a room and takes a few things off a shelf, puts them on the floor, and walks over near the bed to grab a set of keys.\",c042 17.20 22.10;c082 5.20 14.20;c031 5.20 14.20;c150 0.00 9.10;c030 5.70 10.60;c016 3.30 8.20,29.46\r\n8SA46,DJ17,Recreation room / Man cave,4,5,Yes,A person is closing the refrigerator and then opening a bag of groceries on a table in the recreation room / man cave.,bag;chair;doorway;food;groceries;refrigerator;table,\"A person is looking into a refrigerator. The person closes the fridge door, walks through the hallway, and sits down at a table. The person starts taking groceries out of a bag, and putting them on the table.;A person walks into a room and sits down at a table. They begin to remove groceries from a bag.\",c059 6.00 36.00;c130 6.60 36.00;c009 6.70 36.00;c011 6.70 36.00;c142 0.00 3.90;c097 1.70 6.70;c063 7.60 36.00,34.83\r\nBQ07S,G6WD,Bathroom,3,7,Yes,A person is pouring water in a glass and then sitting on a toilet and holding a phone in the bathroom.,cup;glass;phone;water,\"The person fills a cup with water, than sits on the toilet and plays on his phone.\",c016 16.90 41.00;c108 0.00 15.30;c151 14.10 20.90;c015 14.10 41.00;c154 35.60 41.00,40.12\r\nKPNJ5,0KZ7,Garage,6,7,Yes,\"A person is standing in the garage, looking for something on a shelf. Another person walks through the doorway, playing a game on their phone.\",doorway;phone;shelf;space between storage box;table;tray chair,\"The woman is searching for something in a garage or storage shed while a younger girl walks in concentrating on what is on her cell phone.;One person is cleaning up a shelf, while another person walks in playing on a phone.\",c016 16.50 21.50;c081 6.40 12.20;c097 12.50 17.60;c009 19.00 25.50;c015 12.10 29.00;c012 0.00 29.00,28.42\r\n70S6Y,P6LJ,Hallway,4,7,Yes,\"A person runs down the hallway, eating a sandwich. The person throws the rest of the sandwich into the trash, and then turns off the light.\",food;garbage can;light;sandwich,\"A person runs into a bedroom holding a sandwich, then takes a bite of the sandwich then throws the rest away in a garbage can, then turns a light out and leaves the room.\",c065 5.20 13.30;c067 5.20 15.40;c068 9.70 15.80;c105 13.10 19.80;c150 0.00 12.70;c156 5.00 14.10;c061 4.20 15.10;c062 8.90 14.80;c069 4.20 15.70,22.88\r\nN30A9,AC0W,Kitchen,7,7,Yes,A person is standing at a sink with a towel. The person runs water.,hands;sink;towel;water,\"A person is washing dishes and putting them into the dishwasher, then runs their hands through the water, dries their hands on a white towel before setting it down and leaving the room.\",c033 0.00 33.80;c038 1.00 27.10;c139 0.00 26.10,35.33\r\nDTJS6,T7C3,Bedroom,7,7,Yes,The person is walking with a broom and then running with a sandwich in the bedroom.,broom;food;sandwich;window,\"A person tidies a room with a broom.  They put the broom down and pick up a sandwich off the bed and begin eating it, look out the window, then start to look in various areas of the room.;This person is walking across the room while sweeping, then picks up some food, and looks out the window.\",c098 0.00 15.70;c150 28.80 35.80;c092 18.10 25.30;c061 16.00 39.00;c067 16.00 39.00;c099 4.80 16.10;c063 14.00 19.70,37.54\r\n107YZ,QB52,Bedroom,7,7,Yes,\"A person awakens in their bed. They look at the time and put the pillow over their face for a few seconds before reluctantly getting up. They go over to their wardrobe, pick out some clothes and begin dressing.\",bed;blanket;clothes;jacket;phone/camera;pillow;shirt,A person rubs their eyes while in bed. The person gets up out of bed and takes a shirt;A person is laying in bed under a blanket. They get up and pick up a jacket on a hanger from a nearby wardrobe and hold it up.,c134 0.00 24.00;c000 25.90 31.00;c078 6.60 13.90;c146 0.00 16.00;c070 12.00 19.30;c002 24.70 31.00;c133 0.00 20.40;c015 3.00 10.30,30.08\r\nU6QKX,ZSRZ,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is tidying a pillow in the closet. They then leave, holding a sandwich.\",closet/cabinet;food;pillow;sandwich;shelf;towel;wardrobe,A person is holding a pillow and cleaning it before putting it on a shelf and taking a sandwich and leaving.,c069 8.50 13.90;c077 8.00 14.20;c081 8.20 14.60;c061 6.90 15.00;c038 0.00 6.70;c035 0.00 3.00;c033 0.00 6.90;c114 0.00 12.80,14.29\r\nMUK89,ZAWX,Laundry room,4,4,Yes,\"A person closes the door of a dryer and laughs, then turns off a light.\",clothes;doorway;light;washing machine,\"The person presses buttons on the washing machine, then closes the washing machine. They then flip a switch and walk away.\",c105 21.10 26.90;c097 18.80 32.00;c005 17.70 22.50,30.71\r\n41FNM,PKND,Bedroom,6,6,Yes,One person is in the doorway laughing as another person is dressing in front of a picture on the wall.,cabinet;closet;clothes;cloths;doorway;wall,\"A person dresses then opens a cabinet while another person stands in a doorway and holds a wall.;Two people are talking, one is getting dressed, the other is cleaning a door.  The first person opens a closet.\",c148 4.00 10.50;c001 3.70 10.30;c113 15.30 29.20;c000 0.00 15.40,31.42\r\nDHVLP,EXQX,Basement (A room below the ground floor),4,5,No,A person walks into the garage holding a glass and trips over a pillow lying on the floor.,box;clothes;doorway;floor;glass;pillow,A person is picking up things from the floor and carrying them through a doorway.,c076 9.00 33.20;c040 0.00 64.00;c097 55.00 63.10,62.92\r\nLK13H,9Y7F,Stairs,5,4,Yes,\"A person stands on the stairs, grasping a picture. The person puts the picture down, picks up a laptop, and then leaves.\",laptop;picture,\"A person is standing on the stairs admiring a photo. They then grab their laptop off the stairs, walk downstairs, and leave.\",c088 0.00 18.20;c050 15.00 23.00;c047 17.60 32.00,30.88\r\n5K0KJ,2Q9D,Laundry room,5,5,Yes,A person is throwing a pillow into a washer and then holding a phone in the laundry room.,clothes;phone;pillow,A person walks into a laundry room and puts a pillow in the washer then grabs and works on a phone.,c015 18.00 30.00;c018 18.00 25.30;c016 14.00 30.00;c005 0.70 9.70,29.50\r\nU72GG,UTMU,Laundry room,6,7,Yes,A person is washing a pair of shoes.  The person then starts watching a video on their laptop.,clothes;detergent;laptop;shoe,\"A person put some shoes on the dryer.  The person then put detergent on the shoes.  The person then seized a laptop that was for some reason on the dryer, looked at it, then walked away.\",c050 16.60 26.20;c054 12.70 20.40;c005 1.90 19.20,38.58\r\n2U0QT,2RTW,Living room,6,6,Yes,\"In the rec room, there is a cabinet. A person opens the cabinet door, grabs a glass and starts drinking, and then closes the door.\",cabinet;cup;door;glass;television;water,A person standing in the living room bends down to open a cabinet.  They take a glass of water and drink it then close the cabinet door and watch some television.;A person opens a cabinet next to a television and takes a glass of water.  They close the cabinet and drink the water while watching television.,c106 10.00 18.30;c110 6.20 11.90;c113 2.30 7.20;c008 2.30 7.20;c107 6.20 32.00;c112 20.40 25.10;c006 20.40 25.10;c132 11.70 17.10,30.79\r\nPFLFU,KQI6,Bedroom,6,7,Yes,\"In the bedroom, a person is working at a table by the window.  Another person is fixing a television.\",laptop;sofa/couch;table;television,A person sits on a bed.  They work on a laptop that is sitting on a table.  Another person fixes a television nearby.;A person types on their laptop. Another person messes with the back of a tv,c052 0.00 31.00;c014 0.00 31.00;c132 14.30 31.00;c123 0.00 31.00,30.42\r\n72HTA,ZAWX,Laundry room,5,7,Yes,A person in a basement begins undressing. They take clothes off a table and put them in the washer then close the washer.,clothes;floor;washing machine,The person takes off clothes. The person puts clothes in washing machine and turns it on.,c155 1.00 12.50;c005 4.80 11.60;c155 9.00 25.80;c001 15.10 22.30;c004 7.50 14.60;c127 7.60 14.20;c002 0.00 11.00;c003 14.40 20.30;c004 0.10 31.00;c127 6.90 20.50;c002 6.90 20.50;c000 0.60 20.50,30.04\r\nI77FD,4I2W,Living room,6,6,Yes,One person is laughing and fixing a desk as another person is washing a table with dishes on it.,desk;dish;table;towel,\"A person is cleaning a table with a cloth and under dishes, while another person nearby adjusts a table.\",c119 9.00 20.00;c013 1.30 20.80;c009 0.00 31.00;c118 0.40 31.00;c014 0.00 31.00;c012 3.80 31.00;c120 5.70 11.20;c038 0.00 31.00,29.58\r\n8370R,EA2K,Garage,7,5,Yes,\"A person awakens while lying on a sofa with a box on their chest, in the garage.\",bed;box;shelf;sofa/couch,\"One person is lying on a bed holding a box they sit up and put the box down.;A person sits on a shelf with a box on their chest. A person gets up, looks at the box and puts it down.\",c040 0.00 33.00;c134 0.00 22.90;c122 0.00 18.40;c123 19.20 33.00,31.54\r\nPD30D,DXDI,Kitchen,7,7,Yes,A person is washing a sink while another person is holding a broom.,broom;dish;sink,A person is holding a broom while another person is at the sink. The person at the sink turns and walks out of the room,c098 0.00 36.00;c121 0.00 30.20,35.42\r\nYQ9ML,LTAC,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person runs into the closet and picks up a glass of water from the cabinet.  The person sneezes, then fixes their hair and takes a drink.  The person takes their phone out of their pocket and starts playing a game.\",cabinet;cup;doorway;glass;hair;phone;water,A person walks into a room and picks up a glass off a shelf. They smooth their hair with one hand and take a drink with the other. They set the glass back on the shelf and gets a phone out of their pocket and looks at it.,c015 25.20 32.00;c144 8.80 17.30;c106 13.50 20.50;c097 0.00 4.30;c016 25.20 32.00,31.25\r\nCLVGY,PKND,Bathroom,4,1,No,\"A person puts a box of clothes down on the bathroom counter. The person takes a tissue from a nearby tissue box, and sneezes into it.\",box;clothes;table,A person blows his nose with a towel.,c153 15.30 20.50;c005 1.70 6.40;c152 10.20 14.60,29.29\r\nKZTDH,DXDI,Bathroom,6,7,Yes,A person washes their hands then pours some coffee in the sink before picking up their homework.,coffee;cup;dish;doorway;hand;homework;mirror;mug;paper;sink;towel,\"A person washes their hands in a sink. A person wipes their hands on a towel and pours something from a mug into the sink;A person is washing their hands at the sink.  That same person then dumps coffee out of a mug into the sink, picks up some homework and leaves the room.\",c117 20.40 25.60;c109 12.70 21.50;c139 0.80 12.10;c097 20.90 26.80;c119 17.30 22.70;c118 12.10 22.80;c115 20.80 27.00;c096 0.00 12.10,26.08\r\nI5F23,C7O9,Kitchen,7,6,Yes,\"A person is walking to turn the light on. Then, laughing, the person begins to unpack groceries out of a box on the table.\",box;closet/cabinet;door;food;groceries;light;shelf;table,The person opens a cupboard and begins to empty contents from a box nearby into the cupboard.,c130 5.70 33.00;c044 5.80 11.60;c154 23.40 32.00;c062 6.30 11.30;c062 8.90 13.80;c043 6.00 10.60;c043 8.50 13.70;c061 6.00 11.30;c061 8.90 14.10;c008 2.60 9.70;c063 6.10 10.90;c063 8.50 13.70;c104 0.20 5.20;c113 2.80 9.20;c081 5.70 11.60;c081 8.20 15.30;c081 11.40 18.80;c141 2.50 8.20;c040 29.60 33.00,31.92\r\nWLKEF,BYF9,Living room,7,7,Yes,Two people are standing and laughing in front of the television; one is drinking and both hold dishes.,dish;food;television,2 people are standing in a living room and holding plates of food while laughing at the television. One person drinks from a glass.,c131 0.00 20.00;c154 0.00 20.00;c061 0.00 20.00;c118 0.00 20.00;c149 0.00 20.00;c132 0.00 20.00,18.71\r\nZURT8,KFGP,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is grasping a camera after taking a picture then snuggling against a warm blanket.,blanket;camera;clothes;phone;picture,\"A person is holding a camera, while holding and snuggling with a blanket.\",c072 10.60 25.00;c015 0.00 25.00;c087 0.00 11.70;c000 0.00 25.00,23.71\r\nF99PM,5LWB,Kitchen,6,6,Yes,\"A person is sitting in their laundry room. The person is laughing while fixing a broken leg on another chair. The person stands, opens a window, and puts the glue in a cabinet before leaving.\",cabinet;chair;closet;floor;wardrobe,A person is sitting down on a stool or chair and another person is fixing a chair then opening a wardrobe.;Person sitting on a stool talking to another person that person gets up and open the cabinet then lose it.,c059 0.00 32.00;c154 19.40 25.50;c113 25.10 30.40;c112 22.40 32.00;c152 4.10 16.00;c125 1.40 22.60,30.71\r\nIN2RL,9PLL,Living room,5,5,Yes,A person in their living room is watching the television. They begin throwing a box around the room while playing on their phone.,box;chair;clothes;floor;phone;table;television,Seated person picks up and plays with phone while watching television then throws boxes on floor.,c045 32.90 38.60;c132 0.00 36.40;c016 7.20 36.20;c126 34.10 39.00;c009 32.20 36.50;c015 6.00 36.50;c059 0.00 39.00,38.12\r\n2P273,PKND,Garage,6,7,Yes,\"A person is sitting in the car waiting for another person.  The other person is holding food in one hand and homework in the other, while trying to grab the doorknob to close the house door.\",bag;door;food;hand,\"One person is closing the house door, while the other person was getting in the passenger side of a vehicle.\",c141 3.10 22.40;c061 0.00 34.00;c006 3.10 22.40;c097 6.70 17.70;c020 0.00 3.00;c152 20.20 26.30,32.62\r\nQLQNJ,8IOD,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person runs in, holding a bag and a cup of coffee. The person throws the bag down.\",bag;chair;coffee;cup;desk;table,\"a person walks into a room throws a bag down and sits in a chair drinking coffee;A person is walking into a room with a cup of coffee, they then sit down in a chair at a desk.\",c106 14.30 25.20;c107 11.10 31.00;c150 9.40 15.70;c151 11.90 19.60;c011 14.30 31.00;c059 14.30 31.00,30.08\r\nGBDJX,KL48,Kitchen,5,7,Yes,A person grasps some food off of a shelf from a cabinet in the kitchen. The person eats the food after closing the cabinet,box;cabinet;door;food;shelf,\"A person opens a closet, takes out some cereal, closes the closet, eats some, and then walks away.\",c063 5.10 12.80;c112 8.80 14.80;c113 0.00 4.90;c156 15.50 24.00;c044 13.20 19.70;c041 10.60 15.60;c008 0.00 4.70;c043 5.60 12.20;c061 8.10 24.00;c040 7.70 24.00;c006 9.40 14.80,22.58\r\nCG7FL,6NQX,Stairs,6,7,Yes,\"The person is tidying with a broom.  They stop and pick up shoes, then throw the shoes and the broom down the stairs.\",broom;floor;shoe,\"A person is sweeping down some stairs, they then find some shoes near the top and throw the shoes and the broom down the stairs.\",c101 11.40 18.40;c053 10.60 18.20;c098 0.00 16.20;c102 0.00 16.10;c056 8.60 14.40;c058 10.60 20.00;c127 0.00 14.40;c126 11.70 17.90,18.58\r\nVXM6A,8IOD,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is tidying and picks up a towel from the floor. They put it in a box, and then close it and put it away.\",box;closet/cabinet;clothes;clothing;cloths;floor;shoe;towel,\"A person on a floor picking up things and putting them under the clothes.The person picks a box and put stuff in a box.The person gets up and leaves the room.;A person is sitting on the floor in the closet, tidying it up. The person folds a towel and places it in a box. The person puts the box under the closet shelf. The person stands up. The person looks through the clothing on the hangers. The person walks out of the closet.\",c039 14.30 20.20;c127 0.00 14.00;c001 13.00 18.50;c040 10.90 15.80;c125 7.20 12.00;c154 18.00 24.70;c000 20.20 27.60;c042 16.90 23.90;c043 1.80 7.60;c035 12.40 19.40;c034 13.10 19.70;c033 9.80 16.40;c037 7.40 20.50;c054 0.00 5.00;c114 0.00 27.60,30.21\r\n5AR9B,HJJ4,Garage,7,7,Yes,\"One person sits on a pillow with a cup of coffee, working at something on a shelf with a glass on it.\",cabinet;chair;coffee;cup;dish;shelf,someone sitting and drinking out of a cup;A person is sitting on a chair and drinks from a coffee cup. The person puts the cup on a cabinet and looks for something on a shelf.,c082 3.40 18.10;c106 0.00 5.90;c107 0.00 7.10;c059 0.00 19.00;c118 0.00 7.30;c114 3.70 19.00;c081 2.40 7.30,17.71\r\n9UNLE,6RE8,Living room,4,7,Yes,A person smiles as they look out the window. The person grasps a glass of water from the nearby table.,cup;glass;table;water;window,\"A person looks out a window, briefly picks up a phone,   smiles, then picks up a glass off a table and takes a drink of water.\",c092 0.00 20.90;c106 26.60 33.00;c152 0.00 21.10;c090 30.40 33.00,32.33\r\n9OEWM,LMEJ,Kitchen,4,6,Yes,\"A person is sitting at the table drinking from a glass. They get up, run in a circle around the table, then start turning the light on and off.\",chair;cup;glass;light;table,a person drinks something in the kitchen then runs around and turns on a light;A person is sitting at the table drinking a glass of something when they get up run around the table switch the lights on,c106 0.00 9.30;c104 12.00 17.20;c150 6.70 16.60;c154 4.90 10.00;c059 0.00 9.70;c011 0.00 10.00;c105 13.90 18.40;c105 15.70 20.30,20.29\r\nN9VOV,M80J,Recreation room / Man cave,5,7,Yes,A person is pouring a drink into a glass while standing in front of the window of the Man cave.,cup;glass;table,\"A person is walking around their bedroom. The person then pours some water into their glass, setting the glass and empty water bottle on their table.\",c107 5.60 27.20;c108 5.80 23.10;c109 20.80 27.50;c110 4.10 9.80;c009 19.00 24.30;c009 21.50 26.70,29.92\r\nOXKR5,0KZ7,Kitchen,6,6,Yes,A person smiles as they cook food on the stove. The person reads from a cook book.,book;food;stove,\"A person cooks at a stove, picks up a book, opens it ,  then reads it while continuing to cook.\",c026 3.10 26.00;c027 4.00 12.80;c032 7.40 26.00;c147 0.00 26.00;c030 2.70 8.00,25.50\r\nFGUUZ,9PLL,Stairs,5,7,Yes,A person is eating by the stairs. They start laughing because they are watching something on their laptop and then decide to pull out a camera and take a picture of themselves.,camera;food;laptop;stairs,A person is eating food while looking at a laptop and then takes a picture with a camera.;A person is sitting on the stairs while eating and playing on their laptop.,,32.42\r\nRSLIM,9Y7F,Kitchen,6,6,No,A person is standing by the shelf and another person is washing the shoes in the sink.,counter;shelf;shoe;sink;towel;water,\"A person wearing a towel around their waist is holding a pair of shoes. The person starts washing the shoes in the sink with water. A second person is leaning against the counter, touching the surface and the bottom of a shelf.;The person holding a tennis shoe went to the sink and clean the shoe.and held the shoe up on top of the table.\",c053 0.00 32.00,30.58\r\nWDCGH,LTAC,Living room,4,4,Yes,Person is lying on sofa snuggling with book while watching television.,book;chair;sofa;television,\"This person is sitting in a chair, reading a book and fiddling with it.\",c025 5.00 11.60;c026 3.40 11.20;c027 0.00 2.90;c032 0.00 3.80;c132 9.30 32.00;c123 0.00 32.00;c059 0.00 32.00;c145 0.00 11.50;c029 0.00 11.60,30.58\r\n8JTF4,2Q9D,Pantry,6,6,Yes,Person is grasping a sandwich and smiling at the light.,food;light;sandwich,A person in a pantry looks up toward the top shelf while holding a sandwich,c067 0.00 29.00;c152 0.00 29.00;c061 0.00 29.00,27.71\r\nAERV9,UTMU,Recreation room / Man cave,6,7,Yes,A person in their recreation room is playing with their laptop that is lying on top of a chair. They begin drinking some coffee.,chair;cup;floor;glass;laptop,A person sits in a chair and plays on a laptop. The person then starts to drink a beverage.,c059 1.40 36.40;c051 3.50 37.40;c106 10.30 29.90;c107 11.30 31.50;c151 0.80 8.30;c154 32.20 39.20;c125 4.10 36.80,40.38\r\n0CYBW,0R3Y,Kitchen,3,7,Yes,The person begins laughing while opening the bag of food and looking in the mirror.,bag;food;mirror,A person walks up to a mirror and eats something out of a bag of food.;A person laughs in a mirror while holding a bag.  The person opens the bag and eats some food.,,25.29\r\n4CV3F,8718,Other,5,6,Yes,\"A person puts a blanket down on the chair in the entryway to their home. The person, smiling, puts on a pair of shoes.\",blanket;chair;clothes;shoe,\"A person puts their shoes on the floor and a blanket across a chair, then sits on the chair and puts the shoes on.\",c055 4.00 29.00;c070 0.00 8.40;c059 3.60 29.00;c053 0.00 2.80;c054 0.00 3.70;c071 1.30 7.60;c151 2.70 9.80;c054 3.70 29.00;c148 7.10 29.00,27.79\r\nI713Z,4OHY,Kitchen,4,6,Yes,A person is playing on their laptop. A person is holding a bag of groceries as the person begins opening the fridge.,bag;chair;door;groceries;laptop;refrigerator,\"There is a person sitting in a chair using a laptop.  The same person put the open laptop in the chair and stands up.  They pick up a grocery bag, walk over to the refrigerator and open the door.\",c130 3.40 11.50;c047 7.50 16.80;c020 12.90 20.40;c154 16.10 22.90;c008 24.40 30.80;c059 0.00 9.50;c143 19.40 24.70,30.08\r\nJUNX2,18IT,Dining room,6,6,Yes,A person grasps a phone while holding on to the table in the dining room.,phone;table,A person looks at a phone they are holding while leaning on a table,c015 0.00 16.00;c016 0.00 16.00,15.46\r\nEJFBM,Z68L,Bedroom,5,7,Yes,A person holds a cup of coffee while watching television in the bedroom. The person takes a drink.,coffee;cup;dish;glass;sofa;television,\"Person enters the room, sits on the couch, watches TV, drinks from cup, and gets up and leaves room\",c106 8.90 15.10;c132 4.80 26.00;c107 0.40 26.00;c106 9.00 23.10;c151 1.70 7.80;c123 2.50 22.70;c154 17.80 24.10;c118 0.00 25.60,25.17\r\nIB987,YMXV,Bedroom,4,6,Yes,Person is lying on floor by doorway playing with clothes then starts throwing clothes.,clothes;floor,A person is lying on the floor and playing with clothes.,c124 0.00 32.00;c000 0.00 25.70;c003 15.70 26.10,31.04\r\nV0BVQ,HR43,Kitchen,4,7,Yes,\"A person is standing in the kitchen, eating a box of crackers. The person runs out and turns off the light.\",box;food;light,\"A person is opening a box of food to eat then turning off the light and running out of the room.;A person is opening a box of snacks and eating them.  They throw one, and leave the room turning off the lights.\",,20.08\r\nFWQYI,XXN8,Living room,6,6,Yes,A person is standing and holding a towel. The person walks over to the television and begins dusting it with the towel. Then the person begins tidying the rest of the room.,clothes;floor;shelf;television;towel;tv,A person cleans a tv with a towel and then picks up clothes off the floor. The person the cleans a shelf.;A person is tidying up the televison and putting clothes in a pile then tidying up a shelf.,c037 0.70 20.70;c038 1.10 17.80;c001 16.10 40.00;c127 19.10 25.40;c034 0.00 20.70;c033 0.00 20.70;c082 30.00 40.00,38.96\r\nF2EA8,L4ZP,Bedroom,4,4,Yes,\"A person is sitting at their desk, watching a person as the person is pouring coffee into a mug.\",chair;coffee;cup;desk;mug;table,\"A person is puring coffee into a coffee mug and passing the mug to Person B.;One person, who is standing, pours coffee for themselves and for another person who is sitting at a desk. Both people drink from their cups. The person who is sitting gets up and walks away.\",c106 10.00 19.90;c108 2.10 11.00;c009 5.90 14.70;c154 16.40 26.00;c059 0.00 23.70;c107 0.00 8.60;c110 9.90 19.30;c011 4.10 20.10;c108 18.60 28.00;c109 18.00 23.70,28.50\r\nDGSBQ,C7O9,Pantry,6,7,Yes,A person walks to their pantry holding a bag of groceries. The person puts the food away on a shelf before leaving the pantry.,bag;closet/cabinet;door;food;groceries;light;shelf,\"A person walks to the pantry and puts items in a bag, then puts the items down and exits the pantry and shuts the door.\",c062 0.00 27.00;c082 0.00 27.00;c130 0.00 27.00;c112 24.30 30.20;c061 5.00 13.60;c061 9.90 16.20;c105 23.20 27.80;c104 2.00 6.60;c097 0.30 5.80;c081 8.10 20.00;c006 24.10 30.90,30.50\r\nSFWBN,D0RU,Living room,4,1,No,\"A person is dressing under the window. Then, throwing their clothes onto a blanket, the person begins watching TV.\",chair;clothes;phone;shirt;television;tv;window,\"A person is dressing and takes their phone off of a table, they sit down in a chair and then put their phone back down on a table.  They grab there phone again,;Person putting on turquoise shirt, and then sitting down in a chair to begin to watch TV.\",c059 4.50 10.10;c132 11.00 32.00;c148 0.00 5.30;c018 2.50 7.40;c017 5.50 10.80;c016 7.50 15.50;c151 4.40 9.80;c003 0.60 5.30,31.00\r\n3BH39,BYF9,Living room,6,7,Yes,I person is laughing while working on their laptop that is resting on a table.,laptop;table,A person is sitting on a couch inside of a living room and doing something on their black laptop.,c011 0.00 20.00;c048 0.00 6.80;c052 2.70 20.00,18.79\r\nQ7RK6,6RE8,Living room,7,7,Yes,\"A person in the living room is undressing by taking their clothes off and placing them on top of a bed. They begin running towards a mirror, while also stepping over a pillow.\",bed;clothes;hair;mirror;pillow;shirt,\"A man takes off his shirt. He puts it down, a pillow falls and he picks it up and puts it on the bed. He looks in a mirror and fixes his hair. Scratches his arm and poses in front of the mirror.\",c077 7.60 13.40;c096 9.60 23.90;c155 0.00 5.50;c003 2.20 8.30;c144 9.70 15.80,30.00\r\n5U1IT,WG9D,Kitchen,5,7,Yes,The person is looking out the window and smiling.  They then walk to the sink and start sneezing.,,A person is sneezing.,c153 7.00 10.00,9.33\r\nH5RDP,YMXV,Bedroom,5,5,Yes,One person is playing on the sofa while another is snuggling with clothes.,bed;pillow;sofa,A person rocking back and forth on a bed with pillows on both side of them.The other person on the bed is asleep.;A person is sitting now inbetween two pillows dancing while another person is laying down sleeping.,c122 0.00 34.00;c123 0.00 34.00;c134 0.00 34.00;c135 0.00 34.00;c076 0.00 34.00;c078 0.00 34.00,33.00\r\nZ1LVD,28B0,Kitchen,6,7,Yes,\"A person opens the window, and then closes it. The person takes something from a shelf and leaves.\",cup;shelf;something;window,\"The person opens the window, looks out the window, closes the window. The person grabs a cup from the shelf. The person walks away.;A person walks over to a window and opens it. Then they look outside and close the window. Then grab something out of a cabinet.\",c089 9.60 17.80;c090 1.10 9.30;c092 5.30 12.10;c110 17.10 23.00,22.08\r\nAM4QC,YA10,Kitchen,7,7,Yes,A person opens the refrigerator and pulls out a sandwich.  The person closes the refrigerator and takes the sandwich to the counter and places it on top of some homework.,counter;door;food;homework;notepad;paper;refrigerator;sandwich;textbook,\"A person walked to the refrigerator, opened it and took out a sandwich, then walked to the counter and put it down on a notepad.\",c142 4.30 10.60;c145 10.50 25.00;c067 3.90 13.90;c068 8.30 14.20;c008 0.30 10.10;c061 4.50 14.50;c069 0.50 16.50;c062 0.40 16.80;c143 0.00 6.00;c006 3.60 10.60;c063 3.70 14.50,24.21\r\nQTRIN,6RE8,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person wrapped in a blanket and holding a pillow opens the door while laughing.,blanket;door;pillow,The person walked across the room wrapped in a blanket and carrying a pillow and opened a door.,c076 0.00 32.00;c008 25.10 32.00;c070 0.00 32.00,30.71\r\nWQWT0,UTMU,Home Office / Study (A room in a house used for work),4,6,Yes,A person opens a door and carries a dish with food on it to their desk. This person tidies up the area to make room for the dish. They then eat while looking over their work.,chair;computer;cup;desk;dish;door;food;plate;sandwich;table,\"A person enters a room holding a plate with some food on it. The person moves a cup to another desk. The person takes two bites of a sandwich while watching something on the computer. The person then puts the sandwich on the plate, stands up and walks out of the room.;someone holding a plate and sitting at a desk eating\",c009 4.90 16.90;c008 0.00 5.10;c120 0.90 16.90;c063 13.40 31.90;c154 30.80 37.00;c065 13.90 31.70;c011 11.00 16.70;c118 1.10 17.00;c061 14.10 28.30;c156 14.70 25.00;c012 3.10 14.30;c119 10.30 16.90;c062 10.30 16.90;c151 10.70 16.50;c059 10.70 16.50;c068 10.30 16.90;c014 15.00 33.00,36.17\r\nR6XU9,9Y7F,Stairs,3,7,Yes,A person is holding their shoes while sitting on the stairs.  The person picks ups a mirror and laughs at their reflection.,floor;mirror;shoe,A person puts on shoes and looks in mirror.;A person is sitting on the stairs putting on their shoes. They look into the mirror and smile.,c093 7.80 31.50;c094 8.40 32.00;c149 8.40 32.00;c152 8.40 32.00;c055 0.00 12.00;c096 8.90 32.00;c125 0.00 32.00,30.67\r\n6XT4W,T7C3,Stairs,7,7,No,A person on the stairs is playing with a dish towel.  The person looks at a picture nearby before leaving the area while carrying the towel.,phone;picture;staircase,\"A person throws their phone up in the air and catches it. The person grabs a photo from the stairs and looks at it. The person tosses their phone in the air again and drops it.;A person is standing in front of a stairway throwing a phone up in the air and catching it.  That same person picks up a picture that is on the stairs, looks at it and puts it back down.\",c084 12.90 24.10;c086 20.20 27.10;c083 11.80 16.40;c088 13.10 24.90,33.00\r\nYGYU5,HR43,Bedroom,6,6,No,\"person is sitting on a pile of clothes drinking coffee, then starts tidying.\",bed;clothes;coffee;cup;mug,\"A person sits down on the bed and drinks some coffee, then then begin to tidy clothes on the bed.;The person sitting on the bed drinking coffee,stand up and folding the clothes on top of bed.\",c107 0.00 24.70;c154 19.00 23.60;c135 4.80 23.00;c106 5.90 21.00;c151 0.00 3.30;c004 21.80 38.00,36.50\r\nPUY9Q,WQ8Z,Kitchen,6,6,Yes,\"A person is in a kitchen putting food away, they then grasp the rest of the groceries and walk away.\",bag;cabinet;food;groceries;shelf,A person takes groceries out of a bag and puts them into a cupboard.;The person walked into the kitchen carrying a bag. They then put groceries from the bag into the cabinets and left.,c113 2.00 7.00;c062 12.60 19.40;c112 15.80 21.20;c130 4.80 19.70;c020 0.80 23.70;c081 5.80 18.50,23.38\r\n00X3U,FNK4,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person standing in their closet shouts out the doorway that they can't find something.  They then retrieve a blanket, and run away, shutting the closet door behind them.\",blanket;closet;door,\"Person in closet calls out to someone before turning, grabbing a blanket leaving the closet shutting the door.\",c097 0.00 4.90;c073 9.70 15.40;c006 14.90 20.50;c150 17.10 22.00;c152 4.30 8.50;c070 10.20 22.00,21.08\r\nCPFLM,WQ8Z,Hallway,5,7,Yes,\"A person is sneezing into a pillow, then the person starts throwing clothes onto a chair.\",chair;clothes;pillow,Person standing in the living room sneezing into a pillow decides to take all the clothes that are hanging up and throw them onto a chair.,c001 8.10 23.00;c076 0.00 23.00;c153 0.00 9.90;c002 9.10 23.00;c078 1.80 6.50;c003 7.70 14.30;c003 10.30 17.20;c000 8.30 13.50;c000 10.80 16.10,22.04\r\nGX4B1,5LWB,Stairs,6,6,Yes,A person is tidying the bed and another person is walking to the sink.,bed;book;pillow;sink,two people walk over to the stairs then go throw things off a bed and run water;Two people walk up the stairs.  One person throws pillows and books around on a bed in a bedroom.  Another person walks to a sink and turns on a water faucet.,c031 13.40 22.00;c080 10.90 16.40,27.96\r\nOSVF7,EA2K,Basement (A room below the ground floor),5,6,Yes,\"A person laughing in the basement and grasping the frame of the doorway, decides not to leave. Instead, they stand there.  In the hand not grasping the doorway frame they're holding a cup of coffee.  Dropped food lies at their feet.\",cup;dish;doorway;glass,A person walks into a doorway before sipping from a glass.,c106 18.20 34.00;c097 2.80 33.80;c118 12.80 34.00,32.67\r\n9S0NZ,KFGP,Bathroom,5,6,Yes,A person is in the bathroom looking at the mirror while holding a camera.  Then the person runs out of the room,camera;mirror;phone;picture,\"A person taking a selfie of themselves in the bathroom mirror.;A person is standing in front of a sink looking at themselves in a mirror, they then pull out a camera and take a picture of themselves.\",c096 0.00 24.60;c015 0.00 24.60;c087 0.00 24.60;c016 0.00 27.00,26.33\r\nZ2UX3,0KZ7,Living room,7,7,Yes,\"A person is standing in the living room, laughing at a picture in a book.\",book,A person is laughing while looking at a book.,c029 0.00 29.00;c149 0.00 29.00;c032 0.00 29.00,27.62\r\nS29H6,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"A person is lying on the floor reading a book.  The person throws the book into a box and walks to the doorway, opens the door, and leaves.\",book;box;door;floor,\"A person sits on the floor in the entryway reading a book. They close the book and put it into a box. They stand up, open a door and walk through the doorway.\",c008 12.50 24.30;c097 19.30 26.70;c026 0.00 10.20;c032 0.00 9.20;c154 3.40 11.10;c028 6.40 14.90,29.92\r\n7JTEK,T7C3,Kitchen,7,7,Yes,One person is eating and laughing as they cook at the stove. Next to the stove is a glass and a bottle of medicine.,cup;dish;food;glass;sandwich;stove,\"A person is cooking while eating a sandwich they pick up a pill bottle and put it down on the counter.;A person is standing in their kitchen eating a sandwich and smiling while cooking some food on a stove, they then move a glass.\",c109 18.70 25.50;c149 18.30 24.80;c065 0.00 36.00;c107 15.50 24.40;c156 0.00 36.00;c147 0.00 36.00;c152 7.20 17.90;c061 0.00 36.00;c118 0.00 36.00;c069 18.00 36.00;c067 0.00 36.00;c068 31.40 36.00;c063 0.00 5.20;c062 0.50 6.20,35.29\r\nT9ZNR,P6LJ,Closet / Walk-in closet / Spear closet,6,7,Yes,A person goes into closet laughing as they pull out a vacuum. The person then sneezes and reaches back in closet and pulls out some medicine.,medicine;vacuum,Person walks in their closet and takes out their vacuum. Then sneezes after pulling it out of closet.,c138 2.60 11.30;c153 7.30 15.40,20.67\r\n6LR93,C7O9,Pantry,7,7,Yes,A person is tidying up some coffee containers in the pantry then starts working on cleaning some dishes.,closet/cabinet;dish;food;shelf;towel,\"A person is putting some food on a shelf in a pantry, they then grab some dishes and begin tidying them with a towel.;A person is putting something away in their pantry then they begin to wash dishes with a towel.\",c033 10.10 31.00;c038 10.10 31.00;c121 10.50 31.00;c062 0.00 14.90;c120 10.90 20.20;c118 11.70 31.00;c114 0.00 9.40;c119 21.80 26.60;c035 10.10 14.80;c082 0.00 12.90,29.75\r\nCVK5Z,Z68L,Home Office / Study (A room in a house used for work),6,6,Yes,A person is sitting in front of a box of shoes then begins to undress under a bright light.,box;clothes;floor;jacket;mirror;shoe;sweater,A person sits down on the floor to take some sandals out of  a box. After that they scoot forward and take off their sweater and throw it up on the bed. Finally they stand up again.;a person sits on the floor and opens a box then looks in the mirror and takes off jacket,c041 7.30 14.80;c044 13.40 22.60;c054 22.10 33.00;c151 0.00 8.60;c154 0.00 5.70;c155 12.70 26.80;c125 2.00 22.10;c042 12.00 19.50;c053 5.90 16.70;c056 6.10 17.00;c155 18.20 35.00;c096 18.20 35.00;c043 6.80 11.80;c003 26.70 32.50;c043 6.10 19.00,33.67\r\n4SW5W,2RTW,Living room,6,6,Yes,One person is eating by a shelf while another person is holding a doorknob.,door;food;table;television,One person is eating chips while talking to another person as one person is watching tv. The other person is holding a door knob with his back to the first person.;Two people are standing in a room. One is eating and watching television. The other is leaning on the door handle.,c141 0.00 32.00;c156 0.00 32.00;c132 0.00 32.00;c061 0.00 32.00,30.71\r\n5LFGO,0KZ7,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person in an entry way of a house is snuggling a vacuum cleaner and laughing.  They finish dressing by putting on a cap, and pick up what appears to be homework and some unhealthy snack food, taking both with them as they walk away.\",bag;book;clothes;floor;homework;paper;vacuum,A person fixes a vacuum before grabbing their homework and leaving.,c136 0.00 15.60;c115 27.20 38.00;c148 17.10 24.40;c127 23.00 31.70;c117 21.50 38.00;c030 22.60 38.00;c023 11.40 18.00,36.67\r\n58JKZ,KFGP,Dining room,6,6,Yes,\"The person was watching television in the dining room. Since they had a sore back, they were sitting on a pillow on the chair. They looked at the sofa longingly, but knew that it would be horrible for their back.\",chair;table;television,The person is watching television.  The person sat on a chair while watching television.,c132 0.00 15.20;c059 0.00 24.00;c010 0.00 24.00,22.92\r\nME7RO,DXDI,Bedroom,4,7,Yes,\"One person grasps a camera and points it at a person in the doorway with a cup of coffee, who smiles back.\",bed;camera;coffee mug;cup;dish;door;dresser;phone;picture,Person lying on bed take picture of person standing in doorway with a cup of coffee.;someone standing in a door way holding a cup,c015 0.00 10.00;c107 0.00 10.00;c152 2.10 10.00;c087 2.20 10.00;c118 0.00 10.00;c134 0.00 10.00,8.75\r\n1MZJF,CC8X,Living room,4,4,Yes,A person is grasping their shoes as the person pulls them off. Then the person walks to the television and begins sitting down on the floor in front of it.,chair;doorway;floor;shoe;television,\"The person takes off their shoes while sitting in a chair, walks to the living room, and sits down in front of the television.\",c125 16.90 25.00;c151 16.80 22.80;c154 11.00 17.80;c057 2.10 16.20;c059 0.00 17.70;c097 13.90 19.50;c132 20.70 25.00,24.04\r\n662ZU,QZQ4,Laundry room,6,5,Yes,A person walks by a mirror and picks up a lamp. They work on the faulty light.,light,A person walks into the laundry room and tries to fix a lamp that is sitting on top of the dryer.,c103 6.30 36.00,35.25\r\nDEXMO,D0RU,Hallway,7,5,Yes,A person is seen standing in the garage with a broom. They begin leaving to put some clothes away.,broom;clothes,A person tidies up with a broom.  They take some clothes from the floor and walk out of the room.,c002 19.10 25.00;c102 7.20 21.70;c000 16.80 32.00,31.00\r\n4MPPQ,0RNU,Garage,5,7,Yes,\"A person is grasping a vacuum. They set it down and begin working to fix it. The person gives up, and sets it in a cabinet.\",cabinet;floor;vacuum,a person is trying to fix their vacuum in the garage and puts it in cabinet;A person is on the floor fixing a vacuum.,c136 0.00 39.30;c125 0.00 40.00;c114 35.50 40.00,38.79\r\n23Y3I,ZEM0,Hallway,6,7,Yes,\"A person walks down the hallway, putting a towel over a door. The person then leaves.\",door;towel,A person walks through a room and into another area with a towel in their hand.  They open a door and throw the towel over the top of it.,c033 0.00 9.10;c034 3.40 14.30;c036 5.40 11.40;c008 12.40 25.50;c097 1.70 6.60,30.58\r\nH6BT7,ENC8,Bathroom,5,7,Yes,\"A person is standing in front of the mirror holding a box of shoes.  The person closes the box and puts it on top of a pile of clothes, then lays on the floor.\",box;clothes;doorway;floor;shoe,A person walks through a doorway holding a box. The person opens the box and moves some shoes around in the box. The person then closes the box and places it on the floor. The person the lies down on the floor.,c053 0.00 28.60;c040 0.00 28.90;c041 0.00 6.10;c124 33.10 54.00;c039 18.00 30.20;c041 0.00 22.70;c151 26.50 37.40;c097 0.00 6.40;c042 0.00 28.90;c044 11.20 22.00;c043 0.00 29.30;c126 22.70 28.90,62.58\r\n5FSDB,0KZ7,Bathroom,7,7,Yes,A person sits on the tub with a phone. Another person washes a glass.,cup;glass;hands;phone,A person washes out a glass repeatedly in the sink while a child plays on a phone.,c016 0.00 29.00;c111 0.00 29.00;c139 0.00 4.10;c015 0.00 4.00,28.00\r\nQ4SH4,HJJ4,Kitchen,4,7,Yes,A person is holding a pot. The person puts the pot onto the stove then takes a seat on a nearby chair.,chair;food;pot;sink;stove,someone putting a pot on the stove then sitting;A person is cooking on a stove the step away and sit down on a chair.,c059 3.20 11.00;c151 1.60 8.00;c147 0.00 5.60,9.96\r\nH32FR,18IT,Living room,6,6,Yes,\"A person walks all the way to the end of a hallway carrying a glass in one hand and two dishes (dinner plates) in the other.  The person suddenly turns around and sets the two plates down on the floor.  Then the person walks all the way to the opposite end of the hallway, taking the glass and setting it down on the floor at that end of the hallway, so the plates are at one end and the glass is at the other.\",cup;dish;door;floor;glass,2 people open a door and walk in a room. They put dishes in a corner and by the door then stand and talk.,c118 11.90 16.10;c120 8.70 12.90;c109 22.80 27.00;c008 1.10 5.30;c107 22.20 39.50;c119 9.50 18.60;c097 0.00 6.10;c141 0.00 4.90,40.96\r\n5BQMX,BYF9,Living room,6,6,Yes,A person is throwing a sofa pillow onto a sofa.  Then a person is turning off a light and opening the door.,chair;closet/cabinet;door;light;pillow;sofa;window,A person got out of a chair and moved a pillow on the couch. Than this person went to the door and opened it.,c080 3.20 8.10;c154 0.00 4.80;c077 3.20 7.90;c079 1.30 7.30;c059 0.00 4.00;c113 14.30 23.00;c008 15.20 23.00;c105 7.20 11.90;c092 18.90 23.00;c076 1.80 7.70,22.33\r\n7FTBS,P6LJ,Kitchen,6,7,Yes,\"Person is pouring coffee, walking to refrigerator, getting milk from shelf and pouring into mug. Then, person is sitting at table drinking coffee and is awakening.\",chair;coffee;cup;refrigerator;shelf;table,A person pours something into a cup. The person opens the refrigerator and takes something out. They pour more liquid into the cup. The person sits in a chair at the table and begin to drink.,c081 3.10 8.60;c009 39.20 44.70;c011 39.20 50.00;c151 46.30 51.00;c142 23.30 31.10;c009 2.50 7.60;c106 41.00 50.30;c143 20.00 25.80;c059 34.60 50.30;c109 1.50 7.80;c107 2.00 7.30;c110 1.30 6.50,50.50\r\nMSW4E,ID9V,Closet / Walk-in closet / Spear closet,4,6,Yes,A person is drinking coffee in a walk-in closet. The person is also eating some food. The person begins washing shelves in the closet. The person watches a video on a phone while the person is doing this.,coffee;cup;food;phone;video,A person is watching a video on a phone while drinking coffee and eating. The person wipes a shelf.,c015 0.00 30.00;c106 0.80 13.30;c107 0.10 13.00;c109 6.20 13.90;c063 10.00 16.50;c156 10.80 19.30;c016 0.00 30.00,28.71\r\nO7FDB,OUKK,Kitchen,6,7,Yes,\"The person went to the refrigerator and started putting beer on the shelf, while eating and talking on the phone.\",bottles;cup/glass/bottle;food;phone;refrigerator;shelf,One person is standing at the sink. Another person enters the room talking on their cell phone and opens the fridge. They put 3 bottles into the fridge and exit the room.;A person is talking on the phone as they walk over to a stool. They open the fridge and start putting some bottles inside it that were on the stool. Then they close the fridge and walk away.,c019 6.90 16.50;c142 11.10 22.80;c143 18.50 25.00;c081 18.30 24.00;c143 12.80 25.80;c142 21.00 29.60;c015 3.00 31.00;c062 6.30 26.10;c109 6.10 11.00;c109 10.00 15.30,30.00\r\nT5FHD,YA10,Bathroom,7,7,Yes,A person is washing a cabinet with a towel then the pick up a camera and leave the bathroom.,cabinet;camera;doorway;towel,\"The person kneels in front of the sink, wiping down the cabinet, then stands, grabs their camera, and walks out of the room.\",c038 0.00 23.10;c114 0.00 23.10;c033 0.00 30.50;c018 21.30 27.30;c097 22.80 28.20,30.29\r\nZAJAJ,Z68L,Recreation room / Man cave,5,7,Yes,A person snuggles against a big pillow then begins to tidy a dusty picture frame.,chair;laptop;picture;pillow,\"A person sits down on a chair while holding a pillow. They then take a framed picture and look at it before putting it back down.;The person picked up a pillow sat on chair cuddled with the pillow,sat up picked up a laptop cleaned the laptop and put it down.\",c076 0.50 10.00;c078 3.60 9.10;c083 12.20 17.60;c151 0.00 7.30;c077 2.40 12.20;c084 13.80 31.50;c088 11.60 34.90;c154 31.00 35.00;c059 2.10 34.00;c052 20.90 27.40;c048 24.10 29.10;c051 19.20 24.50;c049 27.30 32.20,33.79\r\nAPJQ8,WQ8Z,Laundry room,5,7,Yes,\"A person is standing in the room holding a blanket.  The person puts the blanket into the washing machine and closes it, then picks up a glass of water from the shelf.\",blanket;clothes;shelf,A person puts a blanket into a washer.,c071 4.20 11.10;c001 2.50 9.20;c005 2.70 12.20;c000 2.90 7.20,17.67\r\nJQY4L,5LWB,Hallway,5,4,Yes,One person walks in and watches from behind a desk as another person runs through with a box.,box;floor,\"A person walks through a hallway while looking for something, while another person runs through holding a box.\",c040 7.20 12.80;c150 7.20 13.60;c042 7.00 12.90;c127 7.50 14.30,20.50\r\nL4FWN,YMXV,Bedroom,,,No,A person is lying on the bed and laughing at the picture.,bed;phone/camera;picture,\"The person was laying in bed, playing on his cell phone, constantly moving around\",c085 11.10 17.10;c134 0.00 32.00;c149 0.00 17.00;c017 28.80 32.00;c135 28.80 32.00;c015 28.80 32.00;c016 28.80 32.00,30.75\r\nE7CJ0,YMXV,Bedroom,6,6,Yes,A person is holding a camera while another person is sneezing into a blanket.,blanket;camera;phone,A person is taking a picture while a different person sneezes while holding a blanket.,c070 14.90 33.00;c015 0.00 20.70;c153 15.90 24.70;c152 29.00 33.00;c016 0.00 17.00,32.04\r\nDCNQI,WG9D,Kitchen,4,7,Yes,\"A person is in a kitchen eating a snack, before leaving they pick up their phone from a nearby chair.\",chair;counter;dishes;doorway;food;phone;plate,There is a person eating food off a plate. That person then picks up a phone off a chair and walks away.;A person is eating from a plate of food and walking away.,c156 0.00 5.60;c097 7.00 11.40,10.67\r\nQ166J,YMXV,Living room,7,4,Yes,A person is sitting in a chair and talking on the phone. The person begins opening a book and doodling as the person talks.,book;chair;phone,\"A person is sitting in a chair at the bottom of some stairs talking on a phone and smiling, they then grab a book and begin to read it;A person is sitting answering their phone.  They talk on the phone and start going through a notebook.  They smile.\",c027 7.60 15.00;c029 6.30 18.70;c032 7.00 32.00;c015 0.00 32.00;c019 0.00 32.00;c152 5.80 22.20;c028 6.70 11.90;c059 0.00 32.00;c030 6.30 12.60,30.58\r\n8ESHT,KFGP,Living room,2,7,Yes,A person is standing holding some clothes. The person then sits down and opens a laptop.,blanket;clothes;laptop;television,\"A person walks in with some clothes, watches tv. The the person then sits down and looks at a laptop.\",c000 1.80 20.40;c001 8.10 17.20;c047 16.90 27.00;c050 16.50 24.70;c151 8.60 16.40;c001 2.20 8.10;c048 14.30 23.70;c151 14.20 19.40;c132 6.20 20.50;c052 13.20 27.00;c051 13.60 27.00;c070 1.30 15.80,26.38\r\nR1OUC,4I61,Laundry room,6,7,Yes,\"A person is opening a washer and laughing, then they vacuum and later polish a mirror in a laundry room.\",broom;door;floor;mirror;vacuum;washer,\"Person walks into the laundry room, opens the washer door, closes it, grabs a mirror to clean it, before grabbing a broom to sweep the floor.;A person is opening a washer then begins vacuuming. Afterwards they begin washing down a mirror.\",c093 27.10 32.70;c095 29.90 41.00;c127 15.20 29.60;c008 2.60 10.30;c097 4.30 13.70,40.29\r\n76BFU,9Y7F,Kitchen,6,6,Yes,A person is watching something out of the kitchen window while washing dishes. The person answers their phone.,dish;phone;something;window,\"A person takes a dish from the counter and washes it in the sink. They place the dish back on the counter, pull their phone out of their pocket, and begin to talk on the phone.\",c018 18.00 32.00;c019 18.10 32.00;c121 0.00 21.80;c119 15.80 22.60;c118 0.00 22.40,30.71\r\nTOUXU,KQI6,Living room,5,5,Yes,A person is lying in front of a refrigerator with a pillow when another person walks through the doorway.,chair;closet/cabinet;door;pillow;refrigerator,\"A person sitting in a chair holds a pillow. Another person walks in and checks the refrigerator, then walks to the door and looks outside.;A person is sitting on a chair snuggling with a pillow. A 2nd person enters the room opens and closes the refrigerator, then and opens the front door.\",c078 0.00 16.40;c142 8.30 13.70;c097 3.40 12.60;c143 5.30 12.80;c059 0.00 33.00;c008 5.10 10.90;c112 7.70 13.20;c113 5.40 11.50,31.62\r\nLTBKU,YMXV,Bedroom,4,6,Yes,\"A person is laughing as they watch a video on their camera. The person turns the camera off, puts it away, and leaves.\",camera;chair;game;phone;video,This person is playing a game on a phone while sitting and gets up and walks.;a person uses their phone in a chair then smiles and laughs,c149 6.50 12.70;c152 16.60 25.90;c016 0.00 30.40;c015 0.00 31.00;c059 0.00 30.00;c154 25.90 31.20,31.96\r\nGFH4E,EA2K,Bathroom,6,7,Yes,A person is standing in the bathroom looking out the window and holding a glass of water.  The person pours the water down the sink and puts it down on the counter.,cup;glass;sink;table;water;window,A person is holding a cup and looking out a window. They begin to slowly pour the water of water down the drain.,c107 0.00 14.70;c092 0.00 14.60,35.33\r\nX8DZV,P6LJ,Dining room,3,6,Yes,A person turns on a light and sits down on a chair drinking some water. The person begins standing and opens a box to grab a pillow.,box;chair;cup/glass/bottle;food;light;pillow;table;water,\"A person turns on a lamp then sits down at a desks and drinks from a glass. They stand up, remove a pillow from a box, and place the pillow on the chair.\",c059 6.50 12.90;c079 16.30 29.10;c151 6.30 13.30;c104 1.40 8.70;c106 8.60 17.80;c080 27.20 31.90;c154 15.60 21.90;c044 18.10 28.80;c045 24.80 30.10;c009 13.70 19.60;c061 7.60 19.10;c011 10.10 19.60;c041 16.40 28.60;c077 21.50 31.90,32.58\r\nON6CG,6RE8,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,The person grasps a table and then sneezes. They then point at the camera.,camera;table,\"A person walks over to a table, sneezes, and walks away.\",c153 1.30 12.20,30.33\r\nXKLW2,0KZ7,Entryway (A hall that is generally located at the entrance of a house),4,4,Yes,A person stands putting medicine in a glass as another person runs out the doorway laughing.,cup;doorway;glass;medicine;table,A person is pouring a drink in a cup while another person walks through the nearest doorway.,c097 8.20 13.70;c108 5.60 30.00;c128 0.00 30.00;c107 0.00 30.00,28.75\r\n1AI3U,Z68L,Bedroom,6,6,Yes,A person in the bedroom is working on something on their laptop. They are watching a picture that is sitting nearby as well.,chair;desk;laptop;paper;stick note;table;wall,\"A person sits down at a desk and works on the laptop. The person grabs a piece of paper off the wall.;This person walks over to desk and sits down in chair, goes on laptop to look at something, grabs sticky note off wall and places next to them.\",c059 5.20 53.00;c052 8.30 53.00;c014 5.20 53.00;c051 5.20 53.00;c151 1.10 7.90;c145 7.60 53.00;c011 5.70 53.00,51.58\r\nC9ZUO,0RNU,Garage,7,7,Yes,\"One person works on the garage door while lying down, with a cup of coffee and a phone on the floor next to them.\",blanket;door;floor;phone,There is a person laying on a blanket working on a garage door.;A person is lying on the floor on a blanket. A person is playing with a phone.,,31.29\r\nUIIF3,WG9D,Kitchen,4,7,Yes,A person is walking over to the stove. The person begins smiling as the person picks up their phone.,phone;stove,A person walked over and picked up a phone that was lying in front of a stove. The person smiled while looking at the phone and walking away.,c015 1.60 9.00;c018 0.60 6.60;c152 2.80 9.00,7.67\r\nQ9IYO,0KZ7,Stairs,6,7,Yes,\"A person is snuggling with a blanket, then the person starts playing with a book.\",blanket;book;stairs,A person is snuggling a blanket and reading a book on the stairs.,c026 0.00 24.00;c072 0.00 24.00;c070 0.00 24.00;c032 2.70 23.10;c027 3.50 9.50,23.00\r\nL0NFK,CCI9,Living room,6,7,Yes,Person 1 is snuggling with person 2 on the sofa. Person 1 starts playing with person 2 by throwing a pillow at them.,chair;floor;pillow;sofa,\"Two people are laughing and holding hands while sitting in chairs. One person throws a book at the other person.;A person is holding hands with another person, they are both sitting in chairs.  One person takes a pillow and hits the other person with the pillow.\",c080 19.00 25.00;c059 0.00 33.00;c149 0.00 30.00;c126 19.80 27.30;c152 0.00 17.70,32.00\r\nVNVRA,XXN8,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person takes a camera from the closet, closes the door, and puts it on a table.\",box;closet/cabinet;door;table,\"A person turns a door knob, opens a door takes a box out and sets it on a shelf.\",c009 4.80 9.60;c008 0.00 17.20;c043 0.50 5.80;c040 1.60 9.50;c006 7.10 18.60;c113 0.00 3.30;c042 5.30 10.00,32.92\r\nAYKC6,WG9D,Dining room,4,6,Yes,A person awakens in a chair with a book open in front of them. The person stands up and walks to the window.,chair;table,A person stands up.,c154 5.10 10.60;c146 0.30 7.30;c011 0.00 9.10;c059 0.00 9.10,11.92\r\nSFHY2,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person walked through the entryway smiling while throwing food towards the table.,door;food;mail;paper/notebook;table,\"A person opened a door and threw an object on a table.;a person walks through the door, throws mail to the side then continues to stand near the door.\",c009 4.80 9.90;c061 2.10 9.00;c064 4.10 9.40;c097 2.00 8.00;c116 4.50 9.30,25.54\r\nEN9TD,9OK1,Living room,,,Yes,A person is standing and drinking coffee.  They begin closing a box.,box;coffee;cup,\"A person in a living room standing and drinking a cup of coffee, then the person shuts a lid on a box that's sitting on a table.\",c106 3.30 10.60;c107 0.00 20.00;c039 13.30 20.00,19.25\r\n4BSR0,2RTW,Kitchen,6,6,Yes,A person is fixing coffee and cooking beside the sink.,cup;dish;food;knife;skillet;stove,\"A person stands in a kitchen, pouring coffee from one cup to another. Then the person stands at a stove, cutting up food into a skillet.\",c107 0.00 10.90;c109 3.50 11.00;c118 0.00 11.50;c147 3.40 28.00;c108 0.00 10.30,26.79\r\n1NDVD,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is grasping a camera to take a picture while putting on their wardrobe.,camera;clothes;jacket;phone;picture;sweatshirt,A person is taking pictures with a camera then puts on a sweatshirt.;A person is playing with a phone or camera and putting on a jacket next to the door way.,c015 0.00 10.60;c148 8.70 23.10;c016 19.10 27.00,26.33\r\nEB1RG,C7O9,Pantry,6,7,Yes,\"A person walks into the pantry while laughing.  They pick up a broom and a vacuum and watch the floor as they exit the pantry, still holding the broom and vacuum.\",broom;doorway;vacuum,A person walks into a pantry and moves the broom and then gets the vacuum and then takes the vacuum out of the pantry.,c100 2.80 13.50;c138 8.10 23.60;c098 3.60 29.00;c097 0.40 6.40;c137 24.10 29.00,28.04\r\nAZTTC,ZAWX,Other,6,6,Yes,A person is seen walking through the door with a book in their hand. They start closing the door and put the book in a cabinet.,book;door;shelf;table,\"A woman holding a book walks into a room. She stands in the doorway for a bit, then closes the door behind her and puts the book down on a desk.;someone holding a book and closing a door,\",c026 2.70 14.50;c006 12.80 22.00;c081 25.40 30.30;c097 16.60 22.10;c028 25.70 31.00,30.21\r\nNJM82,BYF9,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,\"A person is fixing the door in the doorway.  After being done, the person uses a broom to clean up and then sits down.\",bench;broom;chair;door;floor;phone;window,\"someone standing in a door way and then grabbing a broom and sweeping;A person is standing near a door texting and then they hold the door and reach something on it.  They then stomp something off their feet and walk over to grab a broom. They sweep up the floor, put the broom against the wall and sit on a bench.\",c007 0.00 26.40;c102 26.30 50.90;c151 47.90 53.00;c059 47.20 53.00;c127 27.60 50.90,51.96\r\nL9H3O,CCI9,Kitchen,6,5,Yes,Person enters the kitchen and pours a glass of cola and sits down at the table to drink it.  Upon finishing it Person takes the glass and rinses it before placing it in the sink and grabbing a sandwich and sitting back down again to eat it.,bottle;bread;chair;cup;food;glass;plate;sandwich;sink;table,A person getting up off a chair and walking to a counter .The person picks up a bottle of pop and pours in a glass and takes a drink of the glass of pop.The person proceeds to take a piece of brad and pulls a piece off and eats it .;There is a person sitting in a chair. That person walks into the kitchen and pours a drink into a glass.  That same person then puts the cup in a sink.,c065 28.00 34.00;c107 13.60 28.30;c109 23.80 28.80;c154 0.00 3.30;c106 16.00 24.00;c108 9.00 19.00;c009 14.00 19.00;c156 29.00 34.00;c059 0.00 3.00;c110 23.70 29.20,33.08\r\nL2LF6,KQI6,Bedroom,5,6,Yes,\"A person stands in the doorway, snuggling up to a pillow that they are holding.\",door;pillow;shoe,\"A person enters a room, closes the door behind them, picks up a pillow and starts cuddling with it.\",c097 1.30 10.30;c076 12.60 35.00;c078 12.60 35.00;c079 12.60 21.10;c006 4.40 14.90;c057 32.40 35.00,34.25\r\n5OB3W,XXN8,Kitchen,6,6,Yes,A person is seen putting groceries away sitting down. They begin opening bags and are startled when they begin pulling out dishes.,bag;dish;groceries;table,A person is taking groceries out of a bag and then setting them on a table. The person also took some plates out of the bag and set them on the table.;A person takes bags and dishes out of a shopping bag.,c130 0.00 30.20;c119 13.00 24.30;c120 13.00 24.30;c009 0.00 30.80;c021 0.00 6.30;c020 0.00 24.00;c118 13.00 24.10;c023 20.70 26.90,30.67\r\nAHLVF,KFGP,Bathroom,5,7,Yes,A person is standing in their bathroom looking in the mirror. The person is putting on their shoes and leaving the bathroom.,door;mirror;shoe,A person is washing the face and putting on shoes in a bathroom. The person then unlocks the door and walks out.,c096 0.00 9.10;c055 6.80 22.30;c097 28.40 33.30;c008 25.40 32.70,33.75\r\nP8Y27,YMXV,Pantry,5,4,Yes,\"A person throws a bag into the pantry, then fixes the window.\",bag;chair;window,\"The person picks up a bag and throws it into a chair. They pick it up and tidy it, then wash the window.;A person throws a bag on chair before opening some cabinets.\",c020 0.00 4.60;c024 0.60 5.10;c090 3.70 9.20;c091 5.40 10.60;c023 0.00 4.00,30.75\r\nWGZ29,P6LJ,Bedroom,6,7,Yes,The person is sitting on the bed while watching some television and drinking some water.,bed;cup/glass/bottle;television;water,A person sits on the bed holding a cup of coffee. The person drinks the coffee while sitting on the bed watching TV.,c135 1.80 12.50;c106 12.30 22.20;c151 0.00 8.70;c154 43.80 49.20;c107 0.00 50.50;c110 0.00 4.40;c132 8.00 48.90;c109 44.10 51.00,53.83\r\nI20N2,YMXV,Living room,6,4,Yes,\"A person is running toward the window.  After reaching the window, the person is throwing a towel up in the clothes hamper.\",cabinet;clothes;towel;window,\"A person is running and dancing through the room. The person peeks into a cabinet, picks up a towel, and then tidies the towel and throws it on a clothesline.;The person danced into the room and then folded a towel as a second person entered the door.\",c033 9.80 32.10;c035 8.40 14.00;c036 27.30 34.00;c037 10.50 34.00;c092 2.40 11.50;c150 0.00 7.80;c000 10.00 31.10;c002 7.90 15.30;c001 26.60 33.10;c003 26.60 33.10,32.83\r\nPW3GG,0KZ7,Closet / Walk-in closet / Spear closet,7,7,Yes,A person runs into their closet holding a broom. They tidy up and sweep the floor. They open the door and leave while smiling.,broom;closet;door;floor,A person is walking into a closet and sweeping with a broom then walks out.,c098 1.10 21.70;c102 1.10 22.30;c127 2.90 20.70;c008 17.50 23.60;c097 0.30 5.50,23.71\r\nOZ6SB,HJJ4,Garage,5,7,Yes,The person is putting dishes in a box.  They begin sneezing.,bottle;box;glass;shelf,\"The person entered the room with a box, and then the person took some items off a shelf and placed them in the box. At this point the person had a sneezing fit then left.;A man walks into a room and picks a glass up of of a shelf putting it into the box.  They sneeze a few times before walking out of the room.\",c040 0.00 19.30;c153 7.50 16.30,18.83\r\nGIA8M,PKND,Laundry room,5,6,Yes,A person is walking with a vacuum while another person is smiling at a pile of clothes.,floor;vacuum,A person chases another person around with a vacuum cleaner in the laundry room.,c137 0.00 31.00;c152 0.00 14.30;c127 0.00 31.00;c138 0.00 31.00,30.33\r\nXTZYM,YA10,Bedroom,7,7,Yes,A person holding a bag is dressing in their bedroom.They drink from a coffee cup and turn off the light.,bag;clothes;cup;glass;lamp;mug;sweater,\"A person is putting on a shirt, while holding a bag. The person then picks up a cup and starts drinking.;The person puts on a sweater, drinks from a mug, then turns off a lamp before walking toward a doorway.\",c106 21.80 29.00;c020 0.00 34.00;c107 21.40 26.20;c148 5.20 22.60;c148 0.00 3.60;c000 0.00 11.30;c001 4.40 23.10,32.75\r\n2CDEG,Z68L,Bathroom,6,7,Yes,A person is in the bathroom. The person smiles at the camera through a mirror. The person laughs and turns on the sink.,mirror;sink,A person walks into the room and looks in the mirror. They turn the faucet on and then off and exit the room.,c096 2.50 22.60,23.46\r\nQNQOG,FNK4,Living room,5,5,Yes,A person is undressing and throwing the clothes on the floor. They look out a window and start to sneeze.,clothes;floor;window,\"A person is walking in a living room. The person takes off a jacket, throwing it to the ground. The person then walks to a window and begins sneezing while looking out it.\",c001 4.40 10.70;c126 3.70 10.80;c153 15.00 27.00;c000 1.00 7.50;c003 4.70 9.20;c092 13.00 19.00;c155 0.00 4.80,26.29\r\nKLP7V,HJJ4,Dining room,6,7,Yes,a person is tidying and putting items on a shelf. The pick up a box and set it on the shelf and take drink of water.,box;closet/cabinet;glass;shelf,The person puts some items on the shelf before picking up and drinking from a glass of water.,c106 12.90 25.00;c081 4.60 10.10;c042 7.90 16.30;c114 0.00 17.30,23.79\r\nVFDQU,2RTW,Kitchen,6,6,Yes,The person entered the man cave and drank the drink from the refrigerator.  The person then looked in the mirror and started laughing at the lie the spouse told them about not loosing any hair.,cup;food;glass;hair;refrigerator;television,The person opens their refrigerator. They grab a cup and walk into the next room. The person takes a sip and messes with their hair.;A person opens the refrigerator and removes a glass. They drink out of it and stand watching the television.,c107 2.80 15.90;c142 2.30 7.00;c144 14.00 20.30;c149 22.00 26.60;c132 0.00 8.80;c106 5.30 16.20;c110 2.60 10.40;c143 0.00 5.30;c063 0.00 6.80,30.92\r\nKOAQD,2RTW,Living room,6,6,Yes,\"The person pours himself a drink, laughs, and then remembers the medicine they need to take.  After taking the medicine, the person undresses and covers them self with a blanket before turning on the TV.\",blanket;clothes;cup;glass;medicine;sofa;table;television,\"There is a person sitting on a sofa pouring water into a glass and drinking it.  That same person then takes some medicine, takes off their jacket and wraps up in a blanket.\",c128 12.20 20.50;c072 35.30 43.00;c108 0.00 7.40;c123 0.00 55.00;c129 11.70 26.10;c106 6.00 11.40;c155 24.80 36.10;c009 3.40 8.20;c070 33.10 55.00;c132 42.30 55.00;c107 0.00 12.20;c107 11.70 22.70,53.58\r\nG4JHX,2RTW,Living room,6,6,Yes,\"A person is standing in their man cave putting their laptop away in their bag, while rushing to fix the broken heater in the room.\",bag;couch;flashlight;heater;knife;laptop;sofa;vent,\"A person takes a laptop off of the couch, dusts it, and puts it a computer bag on the couch. Afterwards, the person turns around, pulls out a knife, and looks through a vent.;The person picked up a laptop and placed it in a bag on the sofa. The person then walked to a heater and began trying to fix it.;A person picks up a laptop and puts it in a bag. A person then picks up a screwdriver and starts fixing a vent.\",c020 4.80 10.00;c047 0.60 8.10;c050 0.00 5.00;c151 20.00 27.50;c021 5.20 17.40;c022 17.90 24.50,34.92\r\nT53HV,0RNU,Garage,6,7,Yes,a person is working on a television in a garage.  they pause and take out their phone to use as a light to further investigate the television.  they get irritated and throw a tool on the ground.,floor;light;phone;television,{};This person is in a garage. This person seems to be doing some repair on TV. Person then throws something.;A person kneeling on their garage floor is repairing a television. They use their mobile phone as a flashlight to better see what they're doing.,c104 12.40 17.10;c015 12.20 35.00;c126 30.40 35.00,34.21\r\nLA0DB,XXN8,Recreation room / Man cave,4,7,Yes,A person is throwing a pillow at the sofa.  Then a person is dressing next to a light.,clothes;light;pillow;sofa,A person is throwing pillows on a sofa and turning on a light.,c080 0.00 4.60;c104 3.60 9.70;c148 6.50 32.00;c001 1.10 31.30;c002 1.10 31.30;c000 1.10 31.30,30.75\r\nNOGF3,WG9D,Living room,4,3,Yes,\"A person, wrapped in a blanket, stands, then walks to get a sandwich.\",blanket;chair;man;sandwich;table,\"The person is sitting in a chair wearing a blanket, the person then gets up and walks to a table and bends to pick something up off of the table.;man with a blanket goes from sitting to standing.\",c072 0.00 7.00;c069 4.30 7.00;c154 0.70 5.80;c059 0.00 4.90;c070 0.00 7.00,6.46\r\nO18DS,6RE8,Living room,6,7,Yes,\"A person is standing in the doorway turning the light on. Laughing, the person reaches to take a book off the shelf.\",book;doorway;light;shelf,A person walks into a room and turns on the light. The person gets a book from a shelf and starts reading.,c104 6.20 13.10;c032 24.50 31.10;c030 14.90 33.00;c028 14.90 33.00;c027 14.90 33.00;c081 14.90 33.00;c097 0.00 11.60;c026 15.80 33.00;c025 19.40 24.20,32.08\r\nKBJL0,BYF9,Hallway,5,7,Yes,A person holding a sandwich walks down the hallway. That person then sits down and looks at some dishes.,,A person walks into a hallway holding some food and sits on some stairs.,c151 12.40 18.40,18.58\r\nAAGZ2,ENC8,Kitchen,2,5,Yes,A person enters and throws a pillow on the floor then starts cooking on a stove.,food;pot;seasoning;stove,The person walks in and starts cooking in his pot. The person grabs seasoning and puts it in the pot.,c147 11.00 33.80,48.79\r\n2UZUJ,HR43,Laundry room,5,7,Yes,Person is standing at the dryer trying to fix their laptop. Person begins to eat some food while tidying the area around them.,broom;floor;food;laptop;sandwich,\"a person holding a sandwich works on their laptop picks up a broom and starts sweeping then leaves the room.;A person is typing on a laptop that is sitting on top of a washer or dryer.  They type for a bit, and then when the screen goes dark, they pick up a broom and begin to sweep the area around where they were standing.\",c061 27.20 31.00;c052 0.00 17.50;c098 14.10 20.40;c102 15.90 30.70;c067 27.30 31.00;c127 16.40 24.50;c051 25.50 31.00,29.54\r\n9GUX4,6RE8,Bedroom,3,1,No,\"A person can laugh in front of a mirror in the hall, A person can dress while holding a bag of groceries in the hallway.\",bag;hair;hand;mirror;teeth,\"Person standing holding bag looking in mirror, touches face, lifts bag and look at it. Then looks back in mirror.;A person is standing in front of a mirror and messing with their hair. They grab a bag and start playing with their teeth.\",c020 6.40 31.00;c021 7.50 12.40;c094 15.60 31.00;c144 3.00 10.00;c096 0.00 12.00,30.12\r\n3GFIC,BYF9,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person plays a game on their laptop. The person laughs, closes the laptop, then looks out the window.\",game;laptop;sofa/couch;window,Someone is sitting on their bed using a laptop and then sets it aside and looks out the window.,c046 15.50 21.60;c047 0.00 20.30;c049 14.40 21.20;c052 0.00 18.50;c154 17.60 22.50;c123 0.00 22.00;c092 20.70 29.00;c051 0.00 20.90,28.17\r\nWHJ70,WQ8Z,Living room,4,7,Yes,A person is opening a cabinet and then smiling while wiping shoes with a towel in a living room.,blanket;cabinet;floor;pillow;shoe;towel;vacuum,A person carrying a pair of shoes and a towel opens a cabinet. Then they clean the shoes with the towel and get up and leave the room.;A person is vacuuming the floor. A person then grabs a pillow and walks away.,c053 0.00 4.30;c113 2.00 11.60;c038 8.90 14.80;c112 6.80 11.70;c070 0.00 28.00,26.58\r\nEKBW4,KQI6,Kitchen,5,6,Yes,One person is putting groceries away. Another person comes in through the door laughing.,closet/cabinet;cup/glass/bottle;cups;door;groceries;shelf,A person in a kitchen is standing up and stacking jars on a shelf. Another person walks through a door and smiles at the first person.;A person picks up a cup and puts it on a shelf. They pick up five more cups and put them all on the shelf. Another person walks into the room and stands in the doorway. They gesture their hands towards the shelf.,c130 1.20 21.30;c081 0.20 20.50;c097 15.90 23.80;c114 20.70 32.00;c109 0.30 20.50,30.88\r\nK87AC,6RE8,Bedroom,6,7,Yes,\"One person closes the door and starts undressing and then dressing with items from a cabinet, then leaves laughing.\",clothes;door,\"A person opens a door and walks through, closing the door behind them, then then undress, taking off a hat and shirt, and dress into something else. They then leave.;A person walks in the room and closes the door.  That person removes a headband and a shirt.  That same person the puts on a different shirt and leaves the room closing the door behind them.\",c008 0.00 4.90;c000 14.50 19.70;c148 7.60 12.70;c097 27.70 33.00;c006 0.70 10.20;c155 6.00 16.50;c148 12.50 31.30;c002 12.70 18.60;c001 8.60 16.40,31.92\r\nDHVYY,DXDI,Living room,2,7,Yes,A person is standing up while washing dishes and then goes to get a vacuum.,dish;table;vacuum,A person is washing dishes with a towel and placing them on a table before vacuuming the room.,c137 23.80 29.00;c121 7.30 14.50;c009 10.50 18.00;c118 0.00 17.30,28.21\r\nFRXS5,1OHU,Living room,7,7,Yes,A person runs in and begins tidying the room and running a vacuum next to a desk with a camera on top.,floor;toys;vacuum,\"The person runs into the room and picks up items from the floor, he then uses the vacuum on the carpet.;This person runs into the living room, picks up toys, then begins to vacuum.\",c137 12.30 31.00;c150 0.00 6.90;c127 2.80 8.70,29.71\r\nAUYOZ,3H6W,Laundry room,7,6,Yes,A person in the laundry room is drinking from a glass of water that they took off of a shelf. Then they start standing up and pull out their phone to watch a video.,chair;cup;dish;glass;phone;shelf,A person is sitting in a chair and drinking a beverage. A person then takes a phone from their pocket and plays with it.;a person sits on a chair and drinks some water then grabs his phone and walks out,c106 5.00 15.30;c016 17.40 29.70;c151 1.10 6.10;c059 2.00 18.30;c081 11.90 16.80;c015 16.90 28.80;c154 14.70 19.70;c119 11.00 17.10;c120 2.40 9.10;c018 15.60 20.30;c118 3.80 16.10,29.54\r\nABHC6,D0RU,Bedroom,5,6,Yes,A person is standing in a closet holding a bag. The person turns off the light.,bag;closet/cabinet;clothes;doorway;items;light;shelves,\"A person walked into a room holding a bag. The person walked over to some shelves, took down some items and put them in the bag. The person walked over to a light switch and turned it off before walking out of the room.;The person is putting clothing inside a backpack.\",c020 0.00 27.60;c021 2.50 12.00;c105 17.50 23.90;c001 2.50 20.00;c097 0.00 4.90;c113 3.00 10.20;c002 10.40 15.20;c000 10.70 16.20,32.17\r\nJSBMM,YA10,Bathroom,7,7,Yes,A person is seen lying their head on the counter near the sink. They look in the cabinet and then pour themselves some medicine. They then turn their head towards a nearby picture,cabinet;head;medicine;picture;sink;table,\"Person is resting head on sink, then takes medicine from the cabinet and drinks it.\",c113 6.10 12.10;c009 8.60 14.10;c129 14.80 25.90;c128 10.60 25.30,31.04\r\n2GGH3,UTMU,Kitchen,5,5,No,A person throws a box on the counter. The pick up a medicine bottle and open it.,box;medicine;table,\"A person is taking a box to the counter, opening medicine, then walking out of the room\",c009 3.90 10.20;c040 0.00 9.00;c128 9.30 21.70;c045 1.50 7.20;c042 0.00 7.60,27.92\r\nHUU4X,UTMU,Bathroom,5,7,Yes,A person is sneezing as they pick up a dusty pair of shoes then theu begin fixing the loose doorknob.,closet/cabinet;doorknob;doorway;shoe,\"Person walks into the bathroom and moves a pair a shoes, and then tries to fix the door knob.\",c054 5.50 13.60;c113 14.00 21.60;c097 0.00 4.90;c153 3.40 9.50;c056 0.60 7.20;c112 23.70 32.40;c140 12.10 31.90;c154 27.30 33.20,32.62\r\n6CGRP,LWUV,Bathroom,6,7,Yes,\"A person is tidying the room with a vacuum. They reach for the doorknob, and begin sneezing. When they pull their hand back they stop. They reach for it again and start sneezing. So they lie down on the floor and stare at the light.\",floor;hand;vacuum,A person is vacuuming the floor.  That same person then wipes their forehand and looks at their hand and then lays on the floor.,c137 0.00 11.70;c124 25.10 32.00,34.42\r\nEIB97,6RE8,Bedroom,7,6,Yes,A person is dressing in clothes from a hamper.  Then a person is putting the rest of the clothes from the hamper onto a counter.,bag;clothes;shelf,\"The person standing pull a shirt out of a bag put on the shirt buttoned the shirt pick the bag up get clothes from the bag and put it on the shelf.;A person took a shirt out of a bag and put it on, then put the bag on a shelf.\",c148 6.20 26.20;c020 22.90 33.00;c148 0.00 8.10;c002 0.00 3.60;c081 25.60 31.30;c000 0.00 10.10;c022 0.30 4.70;c082 25.30 33.00;c021 0.00 4.60;c001 22.40 33.00,32.29\r\nD0E8H,P6LJ,Dining room,5,5,Yes,One person wrapped in a blanket is in a chair eating a sandwich and drinking in between bites.,blanket;chair;cup/glass/bottle;food;sandwich;table,A person is wrapped in a blanket sitting at a table. They begin eating a sandwich and then take a drink.,c065 25.50 51.50;c059 10.40 17.10;c072 3.70 58.50;c156 20.70 53.40;c109 37.90 45.50;c154 53.30 59.70;c107 29.70 44.60;c151 8.00 16.50;c011 11.30 57.90;c110 29.70 36.70;c106 32.70 41.60,60.38\r\n6YGBD,JOL5,Home Office / Study (A room in a house used for work),7,5,Yes,\"A person is holding a sandwich in one hand, while drinking a glass of water with the other hand.\",chair;cup;desk;food;glass;hand;laptop;sandwich;table;water,\"This person is in a room, sitting at a desk, eating some food, drinking out of glass and is also reading something on their laptop.;A person is sitting at a table drinking from a glass while watching their laptop. They are holding a sandwich in their hand.\",c106 0.00 3.20;c067 0.00 10.40;c106 0.00 29.20;c051 0.00 31.00;c011 0.00 31.00;c156 6.10 22.20;c065 7.00 31.00;c059 0.00 31.00;c063 5.80 10.40;c061 0.00 31.00;c065 6.50 11.40,30.42\r\nTKAFY,D0RU,Bedroom,5,7,Yes,A person awakens and begins dressing. They then go and turn on the television sitting on the table.,bed;clothes;doorway;table;television,\"A person is laying down, they get up and get dressed.  They walk out of the room and turn on the TV.  They sit down on the couch.\",c009 23.90 31.50;c131 29.00 34.40;c146 0.00 9.80;c148 10.40 20.10;c151 23.70 31.10;c132 32.80 39.00;c134 0.00 5.40;c097 19.10 26.00,38.04\r\nKMAQ2,YA10,Living room,7,7,Yes,The person is fixing the alignment of a picture they have on the wall. The person then washes the picture to make it clean. The person then throws the cleaning rag down onto a blanket and walks away.,cup/glass/bottle;picture;towel;wall,A person adjusts a picture on a wall then cleans it with a towel and throws the towel on a bag.,c088 0.00 30.10;c036 23.10 28.00;c033 9.30 16.90;c110 7.60 13.90;c083 0.00 8.80,30.04\r\nVMQ20,HJJ4,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person walks into their home office, takes a camera from the chair, and runs out.\",chair;phone,A person removes a phone from a chair.,c150 3.20 8.00;c018 1.60 7.10;c015 2.00 7.30,7.38\r\nT4NAU,WQ8Z,Kitchen,6,7,Yes,\"A person in the kitchen is pouring themselves a glass of water. They start undressing by taking a jacket off, and then wrap a blanket around them that they find on a shelf. They look out the window.\",cabinet;clothes;cup;fridge;glass;refrigerator;table;water,\"A person opens a cabinet and puts something in then closes it, then opens their refrigerator to retrieve a glass of water,which they then drink from, and leave on a nearby table.;someone grabbing something out og a cabinet and then the fridge\",c106 14.90 19.30;c112 0.30 5.20;c143 3.40 8.30;c142 13.80 19.80;c113 0.00 3.80;c109 0.30 23.00;c009 17.60 22.80;c002 19.60 27.90;c001 23.50 28.20;c110 0.00 23.00;c108 6.80 16.60;c000 20.80 30.60;c155 21.00 31.30,35.92\r\nXSY2P,PKND,Kitchen,5,3,Yes,A person is dressing near a picture.  Then a person is undressing after spilling food on their clothes.,bag;clothes;laptop;shirt,a person puts on a shirt and puts his laptop in a bag;A person took a shirt from the pantry and put it before placing their laptop in a book bag.,c049 18.40 26.50;c020 25.50 31.70;c021 19.00 24.40;c148 4.00 20.20;c002 0.00 6.00;c023 24.10 31.70,31.58\r\nWBS4I,EIO2,Bedroom,6,5,Yes,A person walks into the bedroom and turns on the light.  The person picks up some homework off the shelf and walks out grasping it.,book;closet/cabinet;doorway;homework;light;paper;shelf,A person is  walking into a room and turns on a light. The person then begins to take a notebook out from the wardrobe and walks out.,c117 5.70 33.00;c104 1.00 5.40;c032 22.50 30.40;c112 8.90 15.50;c027 17.20 30.50;c026 14.20 20.90;c097 0.00 3.40;c113 14.20 20.40,32.00\r\nVI2TX,2RTW,Living room,6,6,Yes,One person is washing a hallway shelf while another person is eating a sandwich.,chair;desk;food;rag;sandwich;table;towel,\"Person A is tidying up a desk with a towel while Person B is sitting down on a chair eating a sandwich.;A person in a black shirt cleans a side table next to a television while a person in a long sleeved shirt sits in a chair, eating a sandwich.\",c065 0.00 32.00;c156 0.00 32.00;c013 0.00 32.00;c009 1.30 5.60;c061 6.90 12.30;c012 0.00 32.00;c038 0.00 32.00;c059 0.00 32.00,31.25\r\nK95WN,2RTW,Living room,6,6,Yes,One person is walking through the hall laughing with a phone in hand. Another is lying on a rug doing homework.,doorway;floor;paper;phone,A person is talking on a phone while another person is laying on the phone and doing their homework.,c145 3.50 32.00;c019 0.00 8.90;c097 3.00 8.00;c015 0.00 8.00;c124 4.00 32.00,30.58\r\nJTM7L,2RTW,Kitchen,6,6,Yes,The person used the doorknob on the front door to open the door for the persons throwing the ball towards the person.,ball;door;person,A person walked to the door and opened it and caught a ball that another person threw through the door into the room.;Person #1 opens the front door. Person #2 is on the other side with a football. They throw the ball to person #2 who catches it.,c141 5.70 12.60;c008 6.90 13.30,30.17\r\nRSG1C,Z68L,Kitchen,7,7,Yes,\"One person puts a bag in a cabinet, then starts washing the stove while laughing.\",bag;cabinet;door;shelf;stove,\"A person walks into the kitchen, opens the cabinet, and rearranges a bag in the cabinet. The person starts cleaning the top of the stove.\",c112 2.90 15.90;c113 4.90 12.70;c114 15.50 28.20;c152 17.30 37.00;c020 1.30 13.90;c022 0.90 16.50;c006 10.50 16.10;c008 1.10 6.20;c081 14.80 21.00;c154 9.20 16.50,36.08\r\nY9WZW,P6LJ,Dining room,6,6,Yes,\"A person is working on the their desk, which also happens to be the laundry room. They grasp a cup of coffee and take a long drink.\",chair;coffee;cup;desk;homework;paper/notebook;table,A person walks to a desk and starts working on some paperwork. They take a moment to drink some coffee before getting back up and walking across the room.;A girl is sitting at a desk in a chair. She is doing her homework on the counter. Then she drinks from a cup.,c014 2.20 36.00;c109 38.20 50.10;c154 43.40 51.00;c011 1.20 51.00;c106 32.70 46.60;c151 0.00 48.10;c145 7.20 36.00;c110 31.70 37.00;c107 32.00 37.20,49.54\r\nS7RGX,P6LJ,Kitchen,6,6,Yes,A person grabs the soap from the shelf and starts running some water in the sink. They sneeze from the mist and dust that is kicked up.,dish;shelf;sink;water,\"A person opens a cabinet in the kitchen, takes some detergent off the shelf and pours it into the sink. They put it back on the shelf, turn on the faucet of water, then cover their mouth and sneeze.\",c081 21.90 27.60;c153 30.00 39.50;c121 5.30 23.00,41.88\r\nF8SNW,P6LJ,Kitchen,6,6,Yes,A person walks into a laundry room to wash a blanket. After they are finished the leave the room and head towards a chair.,blanket;chair;sink;water,\"A person is turning on the rink while holding a blanket, then they deside to turn off the sink and place the blanket on the counter before sitting on a chair.;A person walks in holding a blanket.  They pour some water in the sink, then put the blanket on the counter.  They walk over to a chair and sit down.\",c070 2.90 44.30;c071 39.00 44.10;c059 47.10 53.80;c151 45.50 52.50;c154 49.60 54.70,54.25\r\n5NG8W,PKND,Bathroom,7,7,Yes,A person contemplates a picture while sitting on the toilet and working on their laptop.,laptop;phone;toilet,A person is sitting on the toilet playing with a laptop on their lap and holding a phone.;A guy is sitting on the toilet and playing with a phone and a laptop while smiling.,c051 0.10 32.40;c152 29.40 33.00;c149 29.70 33.00;c015 29.70 33.00;c016 29.70 33.00,31.67\r\nCUONA,YA10,Living room,6,7,Yes,A person stands in their living room holding a broom and watching the TV. They grab a box off the table and leave.,box;broom;television;tv,\"A person is standing in the living room watching TV, holding a broom. The person picks up a box and walks out of the room.;Person holding broom watches tv, then picks up a box off the coffee table and walks away\",c098 0.00 27.00;c132 0.00 19.90;c043 16.90 31.00,30.17\r\nP4DL9,DXDI,Kitchen,7,7,Yes,\"One person closes the refrigerator, then starts cooking at the stove. Finally, this person grasps a camera next to the sink.\",camera;food;pan;phone;refrigerator;stove,A person walks into the room and closes the refrigerator door.  That same person then starts cooking with a pan and picks a camera up off the counter.,c147 9.20 18.10;c018 25.00 32.20;c147 8.90 29.00;c142 0.00 7.20,32.42\r\nJ10KY,T7C3,Living room,7,7,Yes,A person is undressing with a piece of food in my mouth then throwing their homework on the floor.,clothes;floor;homework;paper,A person is angrily take of his shirt and scattering paper on the floor;There is a person who takes off a sweater and shirt.  That same person then picks up homework and throws it on the floor.,c126 23.80 31.90;c155 0.00 22.50,32.42\r\nOY50Q,P6LJ,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person takes a book from a desk. The person walks through the doorway, closing the door behind them.\",book;desk;door,A person picks up a book from a desk and goes out a door  The person comes back in holding the book.,c008 8.00 17.40;c026 1.70 17.50;c030 1.50 18.20;c097 8.30 18.20;c141 10.00 18.60;c006 12.70 18.80;c028 17.90 23.60,22.62\r\n646CU,0KZ7,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person is undressing their shoes, then the person starts playing with a light.\",light;shoe,A person is taking off their shoes and is holding a light.,c057 0.00 8.80;c104 7.20 12.80,28.75\r\nOO4FE,YA10,Dining room,7,7,Yes,A person throws a bag that was on the table then sits in a chair and opens a book.,bag;book;chair;table,\"A person walks over to a table and picks up a bag, which they then throw. They sit down at the table and grasp a book, flipping it open.\",c011 10.60 31.00;c024 0.10 6.60;c026 13.40 31.00;c027 12.00 18.60;c151 5.50 11.30;c030 10.40 18.30;c023 0.00 6.80;c012 0.00 6.90;c020 0.00 6.30;c032 14.30 31.00;c059 7.00 31.00,29.88\r\nX0VAO,4I2W,Living room,7,5,Yes,A person is seen sitting and looking at the television. They leave the television with a camera in their hands.,camera;chair;phone;television,A person is sitting in a chair watching television. A person then gets up while holding a camera.,c132 0.00 29.50;c015 20.20 32.00;c154 24.10 29.70;c016 27.10 32.00;c059 0.00 28.80,31.04\r\n52WDV,UTMU,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is dressing in a walk-in closet, watching their reflection in a mirror. The person picks up a book.\",book;closet;clothes;jacket;mirror;sweater,\"The person walked to the closet, took out a jacket, put it on, looked in the mirror, picked up a book and walked away.;A person walks to a closet and takes a sweat out and outs it on .The person looks in the mirror.The person bends down and picked up a book.\",c096 12.50 21.00;c027 19.50 26.70;c148 4.70 14.90;c000 0.90 8.70;c032 23.10 38.20;c026 22.20 38.90;c002 1.20 10.20,38.00\r\nAZFKK,XXN8,Bedroom,6,7,Yes,\"A person is throwing a box towards a chair.  Then a person is holding the box, taking things out, and putting them on the chair.\",box;chair;paper/notebook,A person is in a room opening a box and taking the contents out and putting them on a chair.,c040 0.00 5.30;c041 0.70 8.80;c042 0.00 5.50;c044 3.30 13.20;c117 9.80 16.10;c045 0.00 3.40;c043 1.30 7.60;c116 12.10 17.70,30.08\r\nDVO31,Z68L,Bedroom,6,7,Yes,\"A person is tidying bedding, then throwing clothes into a hamper, then running a vacuum and finally drinking from a glass in a bedroom.\",bed;blanket;clothes;cup;floor;glass;vacuum,The person straightened up a bed and also vacuumed something off the floor and bed.  The person removed a piece of clothing from the bed and took a drink of water.,c106 34.70 43.00;c110 33.80 40.20;c002 11.90 19.50;c137 17.60 34.30;c109 39.50 43.00;c000 11.50 19.50;c003 14.70 19.50;c107 33.60 43.00;c126 11.70 19.50;c001 12.10 19.30;c004 11.70 19.70;c075 0.00 14.90;c154 30.30 35.70,42.08\r\nAFY5E,BYF9,Bedroom,5,7,Yes,A person is opening the door to a bedroom.  The person is holding a glass of water and drinking it while standing next to the bed.  The person then starts tidying the area by the bed using a broom.,broom;cup;door;floor;glass,A person walks through a door into a bedroom carrying a broom and a cup.  The person starts sweeping the floor and drinking from the cup.,c102 10.60 32.00;c008 0.00 7.00;c106 5.10 14.60;c097 0.40 7.30;c127 10.40 32.00;c141 0.00 5.30;c107 0.40 32.00,31.29\r\nT2EIY,KQI6,Kitchen,6,3,Yes,A person in the laundry room is undressing by taking off their sweater. They are drinking a glass of water and putting some dishes onto a table in the laundry room.,clothes;cup;dish;glass;table;water,\"Person standing in kitchen putting on jacket, drinking a glass of water, and then walking into another room.\",c009 19.10 24.70;c106 17.40 23.90;c108 11.40 20.90;c119 28.60 32.00;c120 21.60 32.00;c118 21.60 32.00;c148 0.00 14.00,31.21\r\n2846J,YA10,Laundry room,7,7,Yes,\"A person walks through the doorway, holding a box. The person sets the box down, and stands over it for a moment, before leaving.\",box;doorway,\"A person enters the laundry room holding a box, then places the box on the floor. They look at the box, then leave the room.\",c040 0.00 9.70;c042 4.70 10.50;c097 0.00 6.50,30.25\r\n12QGZ,KQI6,Living room,7,7,Yes,A person is snuggling a pillow on the sofa while another person is leaving.,chair;phone/camera;pillow;sofa,The person on the right sits and plays with a pillow on the couch,c080 7.30 17.50;c123 0.00 23.40;c154 17.10 22.10;c059 0.00 24.70;c076 0.00 24.50;c016 0.00 23.20;c015 0.00 30.00,28.92\r\n9S0QC,EXQX,Bathroom,6,6,Yes,A person is throwing shoes at a pillow. Then the person starts leaving the room with the shoes.,bag;door;floor;shoe,A person is throwing a bag on the floor and putting on shoes,c055 6.10 21.00;c022 11.90 17.20;c008 24.40 30.50;c150 21.20 26.00;c141 23.30 29.10;c020 12.10 22.30;c021 9.70 16.90;c126 0.00 4.60,32.38\r\nW4Z9Z,DXDI,Garage,7,7,Yes,\"One person in a chair by a cabinet smiles while holding a mirror, then starts sneezing.\",chair;mirror,A person is sitting in a chair sneezing while holding a mirror.,c059 0.00 26.00;c093 0.00 26.00;c153 7.90 24.30,24.62\r\nNF9ZR,YMXV,Bedroom,4,3,Yes,\"One person opens a doorknob at the top of the stairs, while another person wrapped in a blanket starts dressing.\",blanket;closet/cabinet;clothes;door;lock;shirt,\"A person is pulling at a lock that's on a door. They open the door and go inside. Another person folds a green blanket and sets in on the bed, then picks up a blue shirt and puts it on.;A person is touching a doorknob and is trying to open a door. The person finally opens the door and goes into another room. Another person then gets out of bed and places a blanket on the bed. This person then finally puts on a shirt.\",c141 0.00 7.10;c074 17.30 23.20;c008 5.60 13.60;c070 12.40 22.70;c075 13.50 21.20;c154 11.60 16.50;c007 0.00 9.90;c148 21.70 32.00;c071 17.30 23.40;c113 4.70 12.50,30.88\r\n34IUI,ZEM0,Bedroom,6,7,Yes,\"A person is awakening and throws back a blanket. Then the person looks at a window, grasps a pillow and pulls it over their head\",bed;blanket;pillow,\"A person is sleeping, then wakes up, rubs their face, throws off the covers, and covers their face with a pillow.\",c072 0.00 11.60;c146 3.70 18.50;c077 14.80 20.70;c078 15.10 26.00;c074 12.30 17.20;c133 5.30 13.90;c076 15.00 26.00,25.17\r\nQJPA0,9Y7F,Pantry,,4,Yes,A person stands on a chair with dirty shoes looking for an ingredient.  The person throws the ingredient to another person who is cooking.,chair;closet/cabinet;food;glass;rag;shelf;stove,\"One person is standing on a chair wiping down some shelves, another person throws them a glass and they begin washing that.;One person is standing on a chair cleaning a shelf, while a different person is cooking on a stove. One person throws the other person a bottle.\",c060 0.00 28.00;c147 0.00 31.00;c082 0.00 14.00;c114 0.00 13.70;c064 14.00 18.90,30.46\r\nHLMQ8,3H6W,Bedroom,6,6,Yes,\"Holding a pair of shoes, the person walked out of the closet and opened the window, laughing about the absurdity of the situation.\",doorway;shoe;window,A man comes from a closet into the bedroom holding shoes. The man then pulls up the shudders over his windows and looks out before closing it.,c092 9.20 15.60;c053 0.00 17.00;c090 7.20 14.70;c149 0.00 7.30;c097 0.00 4.90;c058 13.10 17.00;c152 0.00 7.90,16.25\r\nLSVHK,YMXV,Bedroom,5,7,Yes,\"There was a towel hanging on the doorknob, so the person started threw it on the floor and started to leave the room.\",bed;door;towel,\"A person takes a towel off a door then throws it on the floor. The person then goes through the doorway.;A person takes a towel away from the door, casts it onto a bed, and walks out.\",c036 18.10 23.80;c141 20.80 25.40;c008 20.90 27.30;c097 24.40 32.00;c035 15.30 20.70;c033 17.50 23.50,31.33\r\nFX1T5,XXN8,Kitchen,7,7,Yes,A person sitting in a chair in a kitchen puts a picture in a book.,book;picture,\"A standing person holds up a picture, then a book, then both together and reads the back of them.\",c026 0.60 32.00;c084 0.00 32.00;c027 4.50 14.30;c032 8.30 32.00;c086 2.60 12.00;c088 3.80 11.70;c025 0.90 24.10,30.58\r\nILKXV,ZAWX,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person opens the door to the bathroom then walks through the doorway. The person the starts laughing as the pick up some clothes off the floor.,camera;clothes;door;floor;towel,A  person opens a door and walks down a long hallway towards the camera. They pick up a piece of clothing off the ground and fidget with it as they smile and appear to laugh a little.;a person goes into the house and picks up a towel off the floor and smiles,c000 18.60 27.20;c004 18.60 27.20;c152 19.70 32.00;c097 2.00 16.80;c002 18.00 24.30;c008 0.00 4.80;c149 26.60 32.00;c037 19.80 27.80;c127 14.30 24.00,30.71\r\nDP8U3,1OHU,Stairs,6,6,Yes,\"The person is walking up the stairs holding a blanket and laughing, the person then trips on a broom.\",bag;blanket;broom;floor;shoes,A person is laughing and snuggling a blanket then walks up the stairs and falls on a broom.;This person is holding a blanket and laughing. They then walk up the stairs and trip over a broom near the top.,c072 5.50 11.30;c149 0.20 22.20;c070 0.00 26.00;c073 6.90 22.60;c152 0.00 13.30;c124 15.80 26.00,25.38\r\n92TUQ,1OHU,Stairs,6,6,Yes,\"Person takes off shoes and carries a bag up the stairs.  After putting the bag at the top of the stairs, the person begins walking back down the stairs.\",bag;floor;shoe,\"A person carrying a canvas bag walks up a flight of stairs, kicking off their shoes halfway up it.;A person holding a bag takes off their shoes, then walks up the stairs, sets the bag down, and walks back downstairs.\",c020 0.00 21.00;c057 5.00 11.00;c126 5.00 11.30;c022 0.00 21.70,26.21\r\n9JZO3,1OHU,Stairs,6,6,Yes,\"The vacuum falls down the stairs, awakening the person snuggling with the pillow.\",pillow;stairs;vacuum,A person is sleeping on a staircase. The person tosses in their sleep. A vacuum falls on the person's head.,c146 16.70 30.00,29.25\r\nT9BED,ID9V,Closet / Walk-in closet / Spear closet,5,4,Yes,A person is drinking water out of a glass while standing in a walk-in closet. They are watching a show on their phone.,closet/cabinet;cup;flask;phone,\"A person opens a closet door, sits down, drinks from a flask while watching a cellphone.\",c106 14.60 22.90;c107 16.00 26.00;c015 4.40 26.00;c106 7.40 22.10;c113 0.00 5.70;c151 1.90 11.40,25.38\r\n85OEC,P6LJ,Recreation room / Man cave,4,5,Yes,\"A person is smiling as the person looks out the window. Then, sitting on the sofa, the person leans their back against a pillow.\",pillow;sofa;window,\"A person looks out a window, and then tidies the pillows on the sofa before sitting down on it.\",c076 23.00 31.10;c123 28.00 35.50;c092 3.20 24.30;c151 23.20 35.50,36.75\r\nD1VWG,25TD,Dining room,6,7,Yes,\"A person runs into the dining room, opens a box of dishes that is sitting on the table, and takes one out.\",box;chair;cup/glass/bottle;dish;doorway;table,\"A person walks into a room and sits at a table, They open a box and a take out a cup.\",c118 15.50 24.00;c039 16.20 22.00;c041 4.30 10.00;c011 4.40 24.00;c151 3.10 24.00;c009 2.70 23.60;c097 0.50 5.20;c109 18.30 23.70;c059 3.10 8.10;c044 14.30 19.60,22.71\r\n08QQS,R1OT,Bedroom,4,7,Yes,A person is walking around talking and drinking coffee.  After a little bit the person leaves the room by grasping the doorknob and opening the door.,coffee;cup;door,\"A person drinks from a coffee mug while walking around a room, then opens a door and leaves.\",c141 21.30 28.00;c008 23.70 30.10;c106 7.30 14.60;c107 0.00 29.80,29.96\r\nFS94F,D0RU,Entryway (A hall that is generally located at the entrance of a house),4,3,Yes,A person is pouring a drink into a glass. The person walks over to a picture and starts laughing and pointing at it.,bottle;cup;dish;doorknob;glass;table,\"A person walks over to a table and grabs a bottle and pours it in a glass. Then they walk over to a door and smile before grabbing the doorknob.;a person picks up a glass and a bottle, pours the contents from the bottle into the glass then walks over to the door and hold the knob\",c108 1.40 12.40;c149 13.30 30.80;c141 15.30 32.00;c152 15.20 32.00;c120 7.90 13.90;c109 11.30 16.90;c110 0.00 5.60;c118 8.40 15.60;c009 11.80 16.50;c107 0.80 12.10;c119 11.30 16.40,30.92\r\nXIVBU,HJJ4,Bedroom,5,7,Yes,Person is watching television lying in bed talking on phone and drinking water.,bed;bottle;glass;laptop;man;phone;television;water,\"A man talking on the phone, taking a drink and watching something on a laptop.;A person is talking on the phone while drinking a glass of water, while watching a laptop.\",c135 0.00 31.00;c106 0.00 6.50;c015 0.00 31.00;c019 0.00 31.00;c051 0.00 31.00;c132 0.00 31.00;c107 2.10 13.30;c107 13.50 26.80;c134 0.00 31.00,30.04\r\nI0588,TGGT,Kitchen,7,1,No,A person puts a box into the cabinet pantry. The person leaves after this task is completed.,box;cabinet;canter;food;shelf,\"The person came to the kitchen with a box put the box down on the counter closed the box and put it in the cabinet,touched cabinet with elbow and walk away.;A person puts a box on the counter and plays with it.  They then put it on a shelf in a cabinet.\",c112 19.30 24.90;c113 8.90 14.10;c039 6.30 12.60;c041 0.60 6.00;c062 8.00 22.00;c042 13.00 21.50;c081 13.00 21.60,30.67\r\nQ49E0,6RE8,Laundry room,6,7,Yes,A person is sitting on their bed and eating a snack as the person talks on the phone. The person gets up and walks over to the window.,bed;food;phone;window,\"A person is sitting on a bed talking on a phone and eating something, they then get up and look out a window.;Someone is sitting on their bed and talking on their phone. At the same time they are also eating something. They get up and look out the window.\",c092 24.80 33.00;c019 0.00 33.00;c061 0.00 8.90;c135 0.00 24.30;c015 0.00 33.00;c156 6.90 21.60;c154 18.50 27.40;c090 25.30 33.00,32.29\r\n05124,ZAWX,Basement (A room below the ground floor),4,5,Yes,\"A person walks into the basement, holding a camera and drinking a cup of coffee. The person sits down and begins taking pictures of themselves with the camera.\",camera;chair;coffee;cup;doorway;phone;picture;stairs,A person walking down a step drinking coffee and carrying a camera.The person proceeds to another room and sits sown and starts taking pictures of them self.;Person walked down the stairs while texting on phone and having a cup of coffee. Person then sat down in a chair near the table. The object in hand is a camera and person takes a couple of selfies.,c084 0.00 32.00;c107 0.00 32.00;c106 0.00 32.00;c015 0.00 32.00;c059 19.00 32.00;c016 0.00 32.00;c151 17.10 32.00;c097 12.20 17.10,30.54\r\n89MAO,54JK,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person dressing in the entryway sneezes, then grabs a sandwich and takes a picture of it with a camera.\",clothes;phone/camera;sandwich;sweatshirt,The person walks up to an open door. The person picks up a sweatshirt and puts it on. The person sneezes. The person picks up a sandwich and another object (I can't tell what the second object is),c067 15.80 25.00;c069 14.60 21.70;c148 0.00 16.60;c153 6.10 14.50;c015 14.90 25.00;c001 0.00 15.00;c002 0.00 14.50;c016 15.20 25.00;c087 16.90 25.00;c018 15.50 25.00,23.71\r\nVX1GX,8HLE,Kitchen,6,6,Yes,A person takes items from a cabinet and fixes a snack on the work table before eating it. Then the person pours a drink.,cabinet;chocolate bar;container;cup;dish;door;food;glass;oreo cook;plate;refrigerator;table;water,\"The person walked to the cabinet,opened it took out Oreo cook and a bar of chocolate  set them on the table and opened one Oreo cook and put a Pisce of chocolate on top of it.Get a jar of water from the refrigerator poured water to a cup.;A woman walks across a kitchen and gets cookies and a chocolate bar out of a cabinet. She walks and puts them on a table, and then breaks a cookie apart and sets it on a plate. She puts a piece of chocolate on the cookie and starts to eat it. She then walks and opens a refrigerator and takes out a container of water. She walks back to the table and fills a glass with water.\",c006 4.60 9.80;c113 0.00 5.40;c143 28.30 37.90;c009 8.00 17.10;c108 39.00 50.00;c063 0.90 6.90;c008 0.00 4.70;c062 7.80 12.50;c062 16.30 21.30;c118 39.50 50.00;c061 2.90 12.50;c061 13.40 21.50,48.79\r\n2J4MA,4OHY,Kitchen,5,7,Yes,A person is looking in a box that has clothes in it. They finish eating a sandwich and begin opening the refrigerator to find more food.,box;clothes;food;refrigerator;sandwich,A man is walking around eating a small bite of something while carrying a plate and looking for something to get him self out of the fridge.,c061 0.00 15.40;c156 0.00 6.30;c143 12.30 20.60,29.71\r\nY1BWP,XXN8,Hallway,6,6,Yes,\"A person opens the door, then stands in the doorway. The person sneezes, which causes them to drop the box that they were carrying.\",box;door;floor,A person opens a door with a box of tissues and they drop it. Then they put the kleenex back  in the box.,c040 4.50 11.30;c097 0.00 4.30;c008 3.60 10.10;c153 7.30 12.20;c042 20.40 26.20;c044 17.20 23.80;c043 10.30 16.30;c045 7.40 14.50;c152 18.10 26.50;c006 0.00 4.60;c126 7.10 12.20,30.29\r\nDTUJD,WG9D,Bedroom,7,4,Yes,A person is tidying up their bedroom and wants to clean the mirror so they spray the glass with cleanser and wipes down with a paper towel. The person then opens the closet door to hang up a piece of clothing.,cloth;cup;door;glass;mirror;towel,\"A person takes a cloth and spray cleaner bottle and cleans a mirror, then the person puts the cloth and cleaner on a table, then opens a closet door and puts some clothes on the top shelf.\",c002 11.50 17.00;c033 0.00 14.90;c111 1.10 11.80;c001 12.90 17.00;c095 1.10 11.40;c038 1.30 11.70;c008 13.20 17.00;c096 0.20 11.70;c034 9.20 13.80;c036 9.20 13.80,16.00\r\n8UQVB,XXN8,Bedroom,5,7,Yes,A person is sneezing while doing homework.  Then a person is watching their laptop screen.,book;homework;laptop;paper;table,Person sitting in front of a computer looking in a book doing homework then began to squeeze,c052 21.00 33.90;c145 0.00 22.70;c153 0.80 6.40;c011 0.00 34.20;c032 0.00 22.20;c051 20.60 33.70,34.50\r\nK0C0A,0EUL,Kitchen,6,7,Yes,\"A person sits in a chair and looks in the mirror, smiling. The person opens a bag of groceries and begins putting them away.\",bag;chair;groceries;mirror,A person is sitting in a chair looking at themself in a mirror.  They then begin to put groceries away.,c093 0.00 14.30;c096 0.00 12.70;c152 1.90 15.70;c094 1.70 9.70;c059 0.00 15.50;c021 15.00 21.30;c154 10.70 15.70;c130 23.60 38.00,37.38\r\nG8R5Q,HJJ4,Bedroom,4,7,Yes,A person is sitting in a box laughing in front of a mirror.,mirror,A person is singing in a mirror.,c094 0.00 14.00;c149 0.00 14.00;c152 0.00 14.00;c096 0.00 14.00;c154 10.80 14.00,12.79\r\n61Y90,DXDI,Basement (A room below the ground floor),3,6,Yes,A person is tidying a desk. Then the person grasps a light from a shelf.,desk;light;shelf;table,A person is tidying up a desk then touching a light before walking away.,c081 30.80 43.20;c012 0.00 32.40;c014 0.00 33.00,44.29\r\nCL9M5,T7C3,Pantry,6,5,Yes,A person is fixing the organization of the cabinet. The person begins laughing and takes medicine from the top shelf.,cabinet;food;medicine;shelf,A person is looking through the kitchen cabinet. They take the Pepto-Bismol off of the top shelf.,c128 27.60 32.00;c062 0.00 26.90;c061 0.00 20.10,30.92\r\nDP7DG,P6LJ,Living room,4,6,Yes,A person in a living room is putting dishes into a cabinet while they are holding open a box.,box;cabinet;dish;floor,The person is holding a box of dishes. She walks to the cabinet area and starts putting the dishes into the cabinet from the box.,c119 12.40 23.00;c040 0.00 29.70;c113 9.40 15.80;c041 0.00 4.10;c042 25.70 30.30;c127 27.70 31.00;c118 1.00 7.70;c043 0.00 4.40,29.92\r\n7YV59,DJ17,Bedroom,7,7,Yes,\"A person is washing their bedroom window. The person crumples up the paper towel they were using and throws it into the garbage can, which sits next to a television.\",floor;towel;trash can;window,A person makes tidy a window then throws the towel into a trash can.,c091 0.80 35.90;c092 0.70 34.20;c036 28.20 37.00;c038 1.20 37.00;c126 28.60 34.90,35.50\r\nLUU2S,8IOD,Living room,6,7,Yes,A person is lying on a blanket that is on a sofa. The person then takes a long drink of water.,dish;glass;sofa;water,Person sits on the couch drinking water out of a large glass.,c122 0.00 31.00;c106 0.10 22.90;c107 0.00 31.00;c118 0.00 31.00,30.25\r\nUI0QG,70CN,Dining room,6,7,Yes,\"A person leaves a bag of groceries and their dining room table, retrieving a fruit from it before leaving.  They play with the fruit as they walk through the dining room doorway.\",bag;banana;food;groceries;table,\"The person walked over to the table and put down some items.  The person picked up a banana, danced with it, and pretended it was a phone.\",c130 0.00 8.60;c022 0.00 8.60;c009 0.00 8.60;c063 3.50 8.70;c061 3.90 31.00;c021 0.10 5.70,30.08\r\nFIAJM,G547,Kitchen,7,5,Yes,A person is opening a drawer.  Then a person is tidying things on a table by the doorway.,chair;doorway;drawer;foor;kitchen;microwave;stove,\"Person standing in the kitchen looking through drawer, then tidying up the stovetop;someone opening a drawer and moving stuff on a stove\",,32.92\r\n4A81E,P6LJ,Living room,4,6,Yes,\"a person is sitting on a pillow that is on the floor of the living room.  They are sitting in front of the tv eating a sandwich, and getting angry at the show on the tv.  They get so angry that they throw the half eaten sandwich at the television.\",floor;food;pillow;sandwich,person is sitting down on a pillow on the floor and eating a plate of food then throws something at floor.,c125 7.80 35.70;c151 3.90 11.80;c156 14.10 34.60;c154 30.80 36.60;c061 2.30 32.90;c062 28.00 34.20;c064 28.20 34.20,36.96\r\n2MAZY,XXN8,Pantry,5,7,Yes,\"A person is sitting at a table and opening a box. the person begins to take groceries out of the box and put them on a shelf, sneezing as the person does so.\",box;groceries;shelf;table,The person opens a box and sneezes.  The person then places the contents from the box onto a shelf and sneezes twice more before closing the box.,c039 19.60 32.00;c040 0.00 32.00;c081 0.50 8.10;c081 5.90 11.80;c044 1.00 6.00;c044 6.10 11.00;c153 2.20 7.10;c153 9.50 14.30;c041 0.00 4.00,30.75\r\nC0207,T7C3,Kitchen,7,7,Yes,A person sits on the floor of the pantry with their back against a refrigerator and plays with a bottle of medicine.,floor;medicine;refrigerator,A person sits on their kitchen floor contemplating if they should take the medicine.,c128 0.00 37.00;c125 0.00 37.00,36.42\r\nU5M7E,EXQX,Bedroom,7,6,Yes,\"A person is holding their phone. The person leaves the room, throwing the phone onto the bed next to their camera.\",bed;camera;door;floor;phone,\"Person looking at phone, throws it onto the bed before walking out of the room closing the door.\",c017 11.50 16.70;c141 16.30 22.90;c006 16.30 24.30;c016 0.00 16.50;c015 0.00 16.40;c097 16.20 22.00;c126 11.00 16.20,30.25\r\n01K8X,EIO2,Kitchen,6,6,Yes,A person is washing dishes in their kitchen while laughing and drinking coffee. The person turns off the light and leaves.,bowl;cup;dish;door;plate;sink;water,\"A person is washing several dishes then the take a drink of water. Done with that they turn and leave the room through a door.;The person washed a plate, and two bowls, then took a drink before opening the door and walking out.\",c118 0.00 7.10;c107 21.10 25.50;c008 27.60 32.00;c119 5.40 23.20;c106 19.20 26.30;c121 0.00 19.20;c097 27.20 32.00,30.92\r\nHSH5R,ZAWX,Bedroom,7,5,Yes,\"A person is working at a desk, with a pad and pencil. Suddenly the person bangs on the top of a nearby television. Banging the set kicks up some dust, causing the person to sneeze.\",chair;paper;table;television;towel;tv,\"A person is sitting in a chair at a table working on some homework, they then stand up and begin washing a television with a towel.;Someone is sitting at a table writing on something. They get up and pick up a towel and clean the tv.\",c154 8.70 15.80;c145 0.00 13.50;c014 0.00 13.10;c011 0.00 13.00;c037 13.60 17.60;c059 0.00 4.00;c033 11.60 16.40;c038 16.60 21.00,30.92\r\n6TV29,YA10,Laundry room,5,7,Yes,A person puts clothes and a blanket into a washing machine and then pours detergent in. They close the lid of the washing machine and then leave.,blanket;clothes;detergent;door,\"A person is putting clothes into a washer. The person grabs detergent and puts them on the clothes. The person opens the door, and walks out.\",c070 1.80 16.90;c071 5.70 25.40;c148 11.90 29.00;c001 13.50 21.40;c008 24.00 39.90;c097 36.50 41.00;c006 37.10 41.00;c141 34.50 41.00;c005 0.00 41.00,40.33\r\nMTUR3,18IT,Bedroom,6,6,Yes,Two persons are snuggling in a bed and smiling at each other while both of them rest their heads on a pillow.,archway;bed;blanket;doorway;floor;heads;pillow,Two people walk together under an archway. They both lie down together in a bed and snuggle with a blanket while laughing.;Two people walk through a doorway and lay on a bed.  The people snuggle a blanket and prop up their heads on a pillow and smile.,c134 11.80 30.80;c152 30.80 50.00;c072 26.80 36.50;c151 5.90 18.50;c097 2.90 13.10;c149 30.00 50.00;c124 10.80 50.00,49.25\r\nYD26T,PO5L,Kitchen,4,7,Yes,One person with a towel on their shoulder sneezes while opening the stove to cook.,stove;towel,\"A person walks into the kitchen, stops and sneezes, moves some object on the counter and then walks out of the room.\",c033 2.80 21.40;c153 5.60 11.30,22.58\r\nBNSQN,BYF9,Living room,7,4,Yes,A person is walking through the doorway while laughing and grasping a vacuum.,doorway;vacuum,The person walks over to a canister vacuum and walks with it through a doorway.,c138 6.10 17.50;c097 16.30 28.00,27.46\r\nCVH2Y,BYF9,Stairs,7,7,Yes,A person is playing with a broom while another is laughing and putting shoes on.,broom;chair;shoe,A person is sitting in a chair putting on shoes and another person is playing with a broom.,c055 0.00 12.70;c098 0.00 22.00;c059 0.00 22.00;c053 0.00 4.50,21.21\r\nKSIYE,0KZ7,Basement (A room below the ground floor),6,6,Yes,\"A person was using a broom to clean the stairs.  While grasping at the wall, the clothes was knocked over and poured down the stairs.\",broom;floor;laundry basket;stairs,\"The person is sweeping the stairs starting at the bottom (!) and working up.  When he gets near the top, he slips and falls, sending a laundry basket tumbling down the stairs.\",c098 0.00 26.00;c102 0.00 25.40;c124 23.30 28.00,26.71\r\nNSHA7,YMXV,Basement (A room below the ground floor),6,,No,Person stands as they wrap themselves in a blanket. They laugh as they read a book.,bed;blanket;book;clothes;floor;laptop;papers,A person is kicking around a blanket on the floor.  They take a book off the bed and read it.;a person messes with some drity clothes on the floor then reads some papers,c027 16.10 27.60;c030 11.30 20.20;c032 15.70 32.00;c115 14.00 32.00;c117 14.00 32.00;c127 0.00 17.40;c026 15.00 32.00,31.33\r\n4YAR6,25TD,Laundry room,7,7,Yes,A person is sitting in a chair and working on homework.,book;chair;homework;paper,A person sitting on a stool in their laundry room reads their homework.,c059 0.00 36.00;c115 0.00 36.00;c032 0.00 36.00;c026 0.00 36.00,34.92\r\nHXLVN,LTAC,Bedroom,5,5,Yes,\"The person is in the basement, where there is a bed with a pillow and blanket, and a table sits nearby with some half-eaten food on a plate.  The person walks  from the bed to the table and stands for a moment looking at the food.  The person then returns to bed.\",dishes;pillow;table,\"A person is sitting down, and then gets up to look at a plate. Then goes pack to sitting.\",c151 23.80 30.20;c154 8.80 14.80,30.92\r\nSTG2D,WQ8Z,Kitchen,4,7,Yes,Person grasping handle on cabinet to get mirror after getting mirror person starts walking away from cabinet.,cabinet;door;mirror,A person opens a cabinet door and takes a mirror out. The person then walks away.,c093 4.80 13.90;c112 6.70 12.10;c008 0.00 5.50;c113 0.00 12.10;c113 0.40 5.70,14.67\r\nOM2NF,2Q9D,Kitchen,6,6,Yes,\"A person is sitting on a chair, drinking coffee and reading the newspaper.  The person then stands up, puts his shoes on and walks to the stove to cook breakfast.\",chair;class;clothes;coffee;cup;dish;food;newspaper;pan;paper/notebook;shoe;stove;table,\"A person is sitting at the table, drinking coffee from a glass while also reading  a newspaper. After a few seconds, the person folds the newspaper, puts it down, puts on shoes, and walks over to the stove to cook from a pan.;A person is reading a paper and drinking coffee, while sitting at the kitchen table.  He puts on his shoes, stands up and walks to cook at the oven.\",c107 0.00 5.30;c011 0.00 26.90;c109 5.90 10.80;c106 2.20 8.80;c056 22.90 29.70;c107 0.40 10.10;c059 0.00 35.20;c107 12.70 21.60;c154 30.80 36.50;c147 34.10 45.00;c055 23.70 34.80;c012 18.50 26.20;c115 0.00 25.80;c148 23.30 34.10;c014 7.00 26.00;c118 0.90 5.10,43.96\r\nCW4AU,OUKK,Recreation room / Man cave,4,7,Yes,A person awakens next to a table in a rec room. The person puts on shoes and runs around the room once.,shoe;table,A person sits on a table and reaches for something on the ground. They put their shoes on and run around the room.,c053 13.50 19.20;c010 0.00 27.90;c154 24.10 29.80;c055 18.50 27.90;c150 25.80 35.20;c054 17.00 28.60;c146 8.10 13.10;c151 0.00 3.60,34.71\r\nOCVY4,2Q9D,Kitchen,6,6,Yes,\"Person walks into the kitchen.  Person places groceries on the counter.  Person pulls food out of the grocery bag, puts it on a pan. Person puts pan of food on the stove.  Person then opens oven, puts pan in oven and closes the door.  Person then begins to tidy the kitchen counter.\",bag;cup;dish;food;frying pan;newspaper;oven;paper/notebook;stove;table,\"A person set a bag on a counter,got a frying pan and put food in it on a stove. Then the person put the frying pan in an oven and went to another  counter with a flowerpot on it. The person got a cup and a newspaper.\",c147 5.10 15.90;c021 1.30 7.40;c022 0.00 4.90;c062 3.90 10.00;c063 1.10 8.10;c020 0.00 5.50;c012 18.60 36.00;c116 21.70 34.90;c117 21.40 34.90;c119 8.90 19.70;c118 4.20 10.70,34.62\r\nO6FSN,2Q9D,Kitchen,6,6,Yes,\"A person opens the refridgerator, and just stands there for a moment. The person, smiling, grasps a dish filled with food and takes it.\",dish;door;food;plate;refrigerator;sandwich;table,A person is opening the refrigerator door and taking out a plate of food.;A person in a kitchen opens a refrigerator door and takes a plate of food out then walks away.,c008 0.00 4.80;c118 16.50 26.60;c120 16.60 27.00;c063 16.30 24.50;c061 15.20 28.00;c143 0.00 6.00;c142 18.70 24.30;c069 15.20 23.00,29.54\r\nDLCH0,G6WD,Pantry,6,7,Yes,The person was fixing the cabinet. While the person was grasping the door.,cabinet;door,A person opens a pantry and appears to be fixing the hinges.,c007 2.60 48.80;c008 0.00 4.40;c113 0.00 5.40;c141 0.00 3.90,48.50\r\nFEKJQ,4OHY,Kitchen,7,7,Yes,Person looks into a mirror and sneezes then leaves with their laptop.,laptop;mirror,A person is sneezing while looking at themselves in a mirror then picks up a laptop and walks out of the room.,c096 0.00 5.30;c047 21.60 31.00;c153 1.30 14.80;c050 17.60 31.00,29.62\r\nTW12W,KQI6,Bedroom,5,6,Yes,A person is throwing shoes and clothes onto the floor. Another person is sitting on the bed and eating a sandwich.,bed;blanket;clothes;floor;food;shoe;television,One person sits on a bed eating food and another person walks over and tosses shoes and clothing onto the floor.;A person sitting on a bed with their hands up to their face.Another person carrying a pair of shoes and clothes .The person starts throwing clothes on the floor.,c135 0.00 18.80;c156 4.20 17.30;c132 19.60 25.60;c053 15.80 24.90;c058 14.70 25.80;c000 22.10 28.60;c126 23.20 30.70;c003 23.20 30.70;c070 28.90 32.00;c061 28.80 32.00;c001 28.90 32.00;c074 22.00 32.00;c071 22.30 31.80;c073 22.10 27.70,30.88\r\nKXAIZ,3VLX,Kitchen,7,7,Yes,A person walks through a doorway and stands in the kitchen before opening a cabinet. A person tidies the food in the cabinet.,cabinet;door;face;food;items;shelf;things,\"A person walks in the room, touches their face and opens a cabinet door. They put something on one of the shelves and rearrange the other items in the cabinet.;A person walks into a kitchen and opens a cabinet. They start moving things around on the shelves.\",c113 8.10 14.30;c114 10.70 43.20;c097 0.40 5.70;c062 18.50 26.00;c063 9.00 44.00;c082 11.00 43.20;c061 22.60 28.80;c081 18.10 23.20,43.12\r\n869NM,BYF9,Hallway,7,7,Yes,A person is sitting in a chair with a laundry basket next to them.  The person takes a towel out of the basket and laughs while folding it.,blanket;box;chair;clothes;towel,\"A person is sitting down in the hallway then they begin to open a box and pull out a towel and begin to fold it.;A person is sitting on a chair.  The person opens a box, takes out at towel and folds it.\",c037 4.90 24.00;c059 0.00 24.00;c041 1.00 10.30;c044 4.10 12.80;c002 3.00 13.70;c073 3.00 14.00,23.04\r\nTQ9GQ,L4ZP,Kitchen,4,4,Yes,Person A is standing over the sink and turns on a nearby lamp.  Person B is tidying up the dishes next to Person A and then puts some cups into the cabinet.  Person B is pouring dirty contents of used cups into the sink.,cabinet;cup;dish;glass;light;shelf;sink,\"Two people are standing in a kitchen, one turns on a light while the other begins putting dishes away in a cabinet.;A person is alone on the kitchen doing dishes when another person joins and helps with the task also putting the dishes on a shelf.\",c109 26.10 32.60;c119 7.90 35.00;c112 29.00 35.50;c081 19.90 27.60,38.71\r\n16WZF,HJJ4,Bathroom,5,7,Yes,A person sneezes while holding a broom. They put the broom aside then watch as the fix their hair in the mirror.,broom;hair;mirror,A person sneezes while holding a broom. They put the broom down and begins fixing their hair in the mirror,c144 6.60 17.90;c098 0.00 7.80;c099 2.80 8.50;c096 6.00 18.00;c153 0.00 6.70,16.62\r\nF3ULU,6RE8,Kitchen,5,5,Yes,A person is holding a vase and poring the contents outside. The person is putting it on a shelf and walking out the door.,cup/glass/bottle;door;shelf;table,Person pouring something down the sink before walking out of the room.,c081 15.40 21.90;c009 12.70 20.90;c097 1.50 8.50;c109 15.80 21.30;c110 0.50 21.10,31.50\r\nRUMS5,38MV,Closet / Walk-in closet / Spear closet,6,6,Yes,\"One person runs into the closet and switches on the light to find some homework, while another person is laughing and closing the door.\",closet/cabinet;clothes;door;homework;light;phone/camera,\"A person walks into the closet, opens the door, gets in, grabs a flashlight and turns it on.  They take some homework from a bag and start looking at it.  Another person runs in while laughing, closes the door to the closet while the other person is still in there and runs out.\",c006 21.60 27.90;c008 0.00 5.50;c104 5.10 11.50;c150 24.30 29.60;c149 24.30 29.20;c002 0.60 26.50;c112 21.00 27.60;c113 0.00 4.90;c016 12.10 23.20;c000 9.00 16.10;c015 4.40 11.10,36.50\r\nWSS3R,38MV,Closet / Walk-in closet / Spear closet,6,6,Yes,A person in a towel starts dressing in the closet. Another person runs in and starts tidying up a messy cabinet.,clothes;door;hats;shirt;towel,\"A person standing a with a towel wrapped around their waist .The person is getting dressed when anther person comes in to the room and get a couple of hats out of the closet and puts them back.;The person is getting dressed in the closet when another person takes hats out of the closet then puts them away.;A person is in a closet, looking through clothes and begins dressing. Another person is sorting hats, and puts them in the closet.\",c000 10.50 16.80;c148 12.80 23.00;c148 16.60 36.60,39.54\r\nIUGG8,D0RU,Home Office / Study (A room in a house used for work),7,5,Yes,\"A person is grasping a glass of water. The person drinks from it. Then, taking their camera off the shelf, the person begins to prepare to take photos.\",bag;camera;cup;glass;phone;shelf;water,\"A person pours some water into a glass, then the person walks over to a shelf and picks up a camera and starts using it.\",c015 21.30 40.00;c108 1.30 8.50;c018 17.20 27.10;c021 17.40 25.10;c106 5.30 13.00,39.17\r\nH31ZH,F56T,Bedroom,7,7,Yes,A person is lying on a pillow in a bed while snuggling with a comfortable blanket.,bed;blanket;pillow,\"A person is sleeping in bed. They move around a little bit and continue sleeping.;A person is lying in bed snuggling with a blanket,\",c078 0.00 40.00;c072 0.00 40.00;c134 0.00 40.00,38.58\r\nLB4AR,HR43,Kitchen,7,7,Yes,A person throws their shoes through the doorway then grasps some items from the refrigerator.,bottles;coke;cup/glass/bottle;door;floor;fridge;refrigerator;shoe,\"a person takes off his shoes and throws them then opens the fridge and grabs some coke;A person is standing in the kitchen and removes both shoes and throws them into the next room. The person then proceeds to open the refrigerator door, and takes out two bottles from the refrigerator, and sets them down on top of the stove.\",c053 3.40 8.90;c143 9.60 16.70;c058 0.00 4.50;c056 0.00 3.00;c057 0.00 3.00;c109 21.60 27.50;c110 18.80 24.00;c126 0.00 4.10;c142 18.30 24.30,27.50\r\nS0Z00,YA10,Garage,6,6,Yes,\"One person puts down a phone, a book and a laptop, then sneezes and starts laughing.\",book;chair;clothes;laptop;phone,\"A person sets a phone on a chair, then a book, then a laptop. They then begin undressing.;A person is walking into a garage. The person is carrying a book and a phone. The person places the phone and books on the chair. The person laughs.\",c015 4.00 9.00;c025 16.00 20.00;c027 15.00 19.00;c017 4.40 9.10;c026 3.50 14.60;c149 20.40 31.00;c046 15.10 20.00;c032 5.90 11.20;c153 18.30 23.80;c049 9.70 15.00;c028 28.30 31.00;c047 28.30 31.00;c048 28.30 31.00;c152 28.30 31.00,30.29\r\nQU8YS,BYF9,Dining room,5,7,Yes,A person is the dining room watching television while drinking a cup of coffee. The same person then randomly starts smiling.,chair;coffee;cup;dish;glass;table;television,Someone is sitting at a table eating and drinking in a chair as she watches television.;A person is sitting at a table watching television. They drink water from a cup.,c106 6.50 22.00;c011 0.00 22.00;c132 0.00 22.00;c107 0.00 22.00;c059 0.00 22.00;c118 0.00 22.00,21.04\r\nKU656,0KZ7,Bedroom,6,7,Yes,\"A person awakens in bed. They pick up a towel from a shelf, leave, and close the door.\",bed;clothes;doorknob;doorway;shelf;towel,A person wakes up and grabs a towel off the shelf.,c134 0.00 6.80;c035 7.90 12.80;c146 0.00 7.30;c154 3.40 11.30;c082 7.30 13.20;c000 7.90 21.80;c097 15.00 21.10;c141 14.10 21.50;c002 8.70 23.00;c133 0.00 10.60,21.88\r\nN6R39,KQI6,Living room,5,6,Yes,One person closes the door just as another person who is eating at a desk throws food at the door.,bowl;door;drapes;floor;food;table,A person is sitting and throwing food toward a door. Another person closes the door.;A person sitting on a floor eating fruit from a bowl.The person straightens their hair.Another person enters the room and straightens the drapes turns and starts walk to ward the table.,c061 4.40 33.00;c063 5.50 10.10;c125 0.00 33.00;c006 21.00 27.00;c062 2.00 32.00;c064 25.00 29.00;c011 0.00 32.00,31.79\r\nH4YTC,LTAC,Laundry room,6,7,Yes,\"A person takes a broom from the corner and begins working on cleaning the floor. The person finishes up, turns off the light, and exits through the doorway.\",broom;corner;doorway;floor;light,A person in a kitchen takes a broom and sweeps the floor. The person then turns off the light and leave the room.,c102 0.20 28.90;c127 0.10 28.90;c105 27.30 32.90;c097 29.90 35.00,34.42\r\nVOX2S,PKND,Kitchen,7,7,Yes,a person walks out of the bathroom and sees another person taking groceries out the refrigerator and put them in the sink.,doorway;food;groceries;refrigerator;sink,A person walks out of a bathroom and motions to another person to go into the kitchen and open a refrigerator door and remove food.  The second person takes the food to a sink.;Two people walking through the house one look in the refrigerator get some food out carry it to the sink.,c142 17.10 23.30;c061 16.90 26.00;c143 13.30 19.40;c097 5.10 10.20;c063 14.70 26.80,34.67\r\nZ9IF5,Z68L,Bathroom,6,6,Yes,A person is sitting on the toilet with a towel wrapped around their shoulders. They stand up and tidy the area next to the sink.,sink;toilet;towel,\"A person wraps a towel around their shoulders. Sits on a closed toilet, gets up and goes to the sink and does something, then walks away.\",c151 0.50 7.50;c154 7.00 14.10;c033 0.00 31.00,29.50\r\n7EBTI,4I2W,Garage,7,7,Yes,A person is drinking in a garage. The person takes a bite of sandwich. The person spills something on their clothes and then leaves the room.,dish;doorway;food;glass;plate;sandwich;table,\"Person standing drinking from glass. Then puts glass down, picks up plate of food, eats food, puts down plate and continue eating food. Then placed food back on plate and walks out room.;A person is standing in front of a table drinking something from a glass. Afterwards, the person puts the glass down, picks up a plate with food and eats it. Lastly, the person puts the plate down and walks through the doorway.\",c065 7.00 29.10;c068 18.60 29.50;c156 7.00 25.50;c118 7.30 25.70;c120 19.20 26.90;c062 18.30 29.50;c097 25.50 32.00;c067 7.40 28.30;c069 4.20 9.40;c061 7.40 28.30;c063 24.50 29.10;c119 24.50 29.10;c154 3.60 10.50;c009 4.70 11.30,30.88\r\nLVLVR,T7C3,Pantry,7,7,Yes,\"A person sits next to a glass and a bag.  They open the bag, grasp something from it and begin eating.\",bag;banana;floor;food,A person sitting on the floor takes a banana out of a grocery bag and eats it.,c020 2.70 8.10;c021 4.10 10.50;c156 14.90 25.20;c125 0.00 34.00,32.71\r\nAZXRK,9Y7F,Dining room,7,7,Yes,A person is looking out the window in a dining room while closing a book. Another person is sitting at the table pouring a glass of water.,book;chair;cup;dish;glass;table;water,person sits at table with another person and mixes drink,c108 4.80 16.40;c151 1.70 8.20;c059 0.00 32.00;c011 0.00 32.00;c025 8.70 14.20;c032 0.00 14.50;c107 1.10 32.00;c118 0.80 32.00,30.58\r\nAFY37,XXN8,Basement (A room below the ground floor),5,6,Yes,\"One person puts a bag on the sofa and leaves, holding a cup of coffee and smiling.\",bag;coffee;cup;mug;sofa,A person set a plastic bag down on a couch. A person then took three sips out of a coffee mug and smacked their lips.,c024 0.60 6.60;c106 3.80 11.40;c106 7.20 15.30;c020 0.00 6.00,30.38\r\nHDMN4,6RE8,Bedroom,6,7,Yes,A person is grasping a glass of juice then undresses and lays down on a blanket.,bed;blanket;clothes;cup;glass;jacket;laptop;table,\"one person is in a bedroom taking a drink out of a glass takes off shirt straightens blanket and lays down on bed;A person is standing in front of a counter takes a sip from a glass. Afterwards, the person puts the glass down, takes off a jacket, and lies down on a bed next to a laptop.\",c075 17.30 23.80;c106 0.00 7.30;c001 14.10 19.30;c155 6.60 16.40;c134 20.90 31.00;c109 4.80 9.60;c071 16.80 23.50;c073 16.50 21.40;c135 19.80 24.70;c009 3.80 9.70,30.29\r\nIM4UD,PKND,Other,5,7,Yes,A person is undressing while another person is lying groceries on a towel.,bag;clothes;clothing;groceries;shirt;towel,\"A man is removing his shirt and walking around while another person is stooped over a shopping bag, removing groceries and putting them on a towel.;There is a person taking groceries out of a bag and placing them on the ground.  Another person that is also standing there, took their shirt off.\",c130 1.10 32.00;c021 0.00 4.30;c155 0.00 8.30;c155 4.30 32.00,30.58\r\nSL401,WG9D,Pantry,3,7,Yes,\"A person holding a box is walking into the pantry. They put the box down, open it, and take out some clothes from it.\",box;doorway;towel,A person walks into the kitchen and places a box on the counter.,c042 0.00 5.00;c097 0.00 3.40;c033 2.10 5.00;c035 2.10 5.00,4.33\r\nWI6NB,1OHU,Kitchen,6,6,Yes,\"Person walks into the kitchen, pours a cup of coffee, and opens a box of cookies.  Person stands, drinks coffee and eats cookies.  Person washes coffee mug, closes cookie box, and walks out.\",coffee maker;coffee mug;cup;dish;food,\"A person walks into the kitchen, grabs a coffee mug and drinks from it, eats a snack, walks to the sink and rinses the mug, then leaves the kitchen\",c106 4.50 20.00;c156 13.40 26.10;c121 31.60 41.40;c152 16.30 23.40;c118 3.60 37.20,44.50\r\nVQOBM,DXDI,Kitchen,5,6,Yes,A person takes a bag from the shelf and puts it onto a chair.,bag;cabinet;chair;door;stool,\"The person walked to the cabinet, opened the cabinet, removed a bag and placed it on a stool.;Person walks in kitchen, opens cabinet, grabs a bag, set it on chair, looks at bag.\",c020 5.40 15.10;c022 9.80 16.40;c023 3.10 13.40;c008 0.30 7.00;c113 0.30 7.00,16.75\r\nF1DQD,JVLO,Living room,6,7,Yes,\"A person is smiling and laughing at a table with another person, sharing food. One person picks up a book and points at a certain word and they begin laughing some more.\",book;chair;table,\"A person is sitting in a chair laughing with another individual in a chair, as they read a book together.\",c029 10.90 33.00;c032 11.00 33.00;c152 0.00 33.00;c059 0.00 33.00;c026 10.40 33.00;c030 9.60 17.10;c011 0.00 33.00;c149 0.00 33.00;c115 10.60 33.00;c027 11.80 16.50,31.92\r\nDWU60,4OHY,Dining room,4,6,Yes,A person is tidying up near the sink. Then the person kneels and begins fixing the leg of the table.,floor;sink;table;towel,A person is cleaning the walls around a sink. The person then kneels under a table and checks the table. The person uses the towel to clean the legs under the table.,c013 24.20 31.00;c151 8.20 14.40;c034 7.80 12.50;c035 23.90 28.30;c125 6.70 16.80;c127 7.80 31.00;c038 0.00 11.90;c012 7.20 31.00;c033 0.00 31.00,29.50\r\nFET0V,HR43,Bathroom,7,7,Yes,A laughing person enters their bathroom drinking soda and holding a laptop and homework.,cup;glass;homework;laptop;paper,\"A person is walking into the room, holding a laptop, a glass, and a piece of paper (homework). The person is looking at the laptop, talking, and laughing.\",c115 2.50 37.00;c106 4.30 33.10;c107 4.50 37.00;c047 1.80 37.00;c051 5.80 37.00;c149 10.50 37.00;c152 11.00 37.00,36.08\r\nBBZKE,9PLL,Kitchen,5,7,Yes,\"A person opens the door, holding a cup of coffee. The person looks around and smiles.\",cup;dish;glass,Person comes into the room walking around and around looking for something while smiling.,c107 0.00 36.00;c152 25.70 36.00;c118 0.00 36.00,34.50\r\n36EK5,40JH,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,One person is walking through the doorway and then sneezes. Then they stop at a mirror and fix their hair.,doorway;hair;mirror,A person is walking through a doorway and sneezing then goes to a mirror and fixes hair.,c096 7.20 33.00;c097 0.70 10.60;c144 8.20 33.00;c153 4.20 10.10,31.79\r\nYKD6U,Z68L,Bedroom,7,1,No,A person in the doorway of their bedroom holding a towel walks to the desk and sits on the chair while eating an apple.,chair;clothes;desk;door;food;table;towel,A person opens a door and tosses a towel to the side. They sit down at a desk and eat some food before getting up again.;a person walks into a room and tosses clothes on a bed then grabs some food and eats in a chair,c059 11.90 21.20;c011 18.30 33.40;c036 7.50 12.40;c151 11.50 17.50;c154 29.80 35.20;c063 9.10 14.80;c097 0.00 14.10;c033 7.50 18.60;c156 12.80 34.30;c008 1.80 14.20;c141 0.00 3.80;c034 2.20 6.60,36.46\r\n77HDM,UO0Z,Bathroom,7,7,Yes,\"A person sneezes into a paper towel. The person leaves the bathroom, turning off the light behind them.\",doorway;light;towel,A person blows their nose on the restroom before throwing their tissue away and walking out.,c105 12.00 16.30;c033 0.00 14.50;c036 10.50 14.90;c097 12.30 17.60,17.25\r\nGKVBS,0RNU,Garage,4,7,Yes,A person is fixing a vacuum. They put a tool on a shelf and laugh.,shelf;tools;vacuum,A person working on a vacuum cleaner on a floor .The person lays it on the floor and starts to take the bottom off .The person starts laughing and puts a tool on a shelf .,c136 0.00 35.00;c137 0.00 18.50;c081 31.60 37.60;c149 33.80 41.00;c151 0.00 4.20,39.75\r\nZISOA,T7C3,Stairs,5,7,Yes,\"A person runs up the stairs, holding a camera. The person turns out the light when they reach the top.\",camera;light;phone,A person walks up a stairway carrying a camera and turns out a light at the top of the stairs.,c015 0.00 8.10;c105 6.30 12.20,16.67\r\nXMANZ,1OHU,Hallway,6,6,Yes,A laughing person is sitting on a sofa in a hallway doing their homework.,chair;homework;paper,A person is sitting in a chair doing their homework and smiling.;There is a person sitting in a chair doing homework.,c145 0.00 32.00;c059 0.00 32.00;c152 8.50 23.60;c115 0.00 32.00,31.42\r\nHUOZ0,PKND,Basement (A room below the ground floor),4,2,Yes,A person is putting medicine next to a light.  Then a person is walking over to a book and picks it up.,book;light;medicine;table,\"the person in the room kept something in the table, took a book and reading it carefully\",c026 11.20 37.00;c027 12.30 19.90;c032 12.50 31.10;c030 11.60 19.20;c029 19.70 33.50;c009 3.40 9.60,36.08\r\nD444N,H8N1,Bedroom,4,6,Yes,\"Person hangs bag on doorknob, then starts watching funny videos on phone and starts laughing.\",bag;doorknob;phone;video,A person picks up a bag and places it on a doorknob. The person then sits down and begins playing on a phone watching a video.,c022 4.70 14.80;c015 16.30 31.00;c149 11.00 19.10;c151 0.00 10.20;c016 8.00 31.00;c152 14.40 20.80,29.71\r\n9JHH9,8718,Bathroom,6,7,Yes,\"A person is standing in the doorway of a bathroom while playing with the camera on their phone, then they start sneezing and close the door behind them.\",camera;door;phone,A guy is standing in the bathroom looking at his phone. When he looks up and sees someone filming him through the doorway he closes the bathroom door.,c006 24.80 30.00;c015 0.00 29.70;c016 0.00 29.70,28.67\r\nQODUB,YMXV,Bathroom,5,5,Yes,A person sits in a chair and watches out the window. The person raises a camera and takes a picture.,camera;phone;picture;window,A person is playing with their camera taking a picture of a window then closing the window.,c089 27.00 33.10;c092 0.00 31.00;c087 0.00 30.70;c015 0.00 30.90;c016 0.00 30.50,32.71\r\nU3T5A,2RTW,Kitchen,6,6,Yes,A person pouring a glass of water to drink starts laughing uncontrollably and spills the water on some food on a plate.,cabinet;cup;dish;food;glass;pitcher;plate;refrigerator;sandwich;shelf;shoes;table;water,\"person opened the shelf and took a glass and kept it on the tray, opened the refrigerator and took a jug of water anand poured it into the glass and drank it, kept the glass into the sink, took a plate of food into hands;{};A person opens a cabinet for a glass to get something to drink and also gets a pitcher out of the fridge.\",c118 18.70 25.90;c120 0.90 8.20;c108 8.40 16.30;c110 2.00 9.40;c143 3.30 9.50;c119 22.50 27.80;c106 16.60 22.30;c109 18.30 23.80;c120 22.50 27.90;c081 1.00 7.60;c009 1.00 7.00,32.00\r\nP73KX,6RE8,Home Office / Study (A room in a house used for work),6,5,Yes,\"A person enters their office and takes off their shoes. They close the door and sit down at their desk. Then the person pulls out a beer from the drawer, takes a drink and smiles as they think of something.\",chair;desk;door;floor;shoe;something;table,\"A person takes off their shoes then sits on a chair. They pour soda into a glass, then drink from the glass.\",c057 1.30 9.40;c011 10.50 20.40;c151 10.70 16.30;c059 10.30 16.30;c127 5.70 11.90,36.71\r\nPGGRZ,HJJ4,Recreation room / Man cave,6,7,Yes,A person is throwing a pillow and then snuggling with a towel in a recreation room / man cave.,blanket;chair;floor;pillow;towel,a person sits in a chair and throws a pillow then grabs a towel;A person is sitting in a chair. The person picks up a pillow off the floor and throws it across the room. The person then grabs a blanket from the floor and cuddles it.,c076 0.00 4.70;c079 0.00 4.30;c080 0.40 5.50;c072 4.80 13.00;c059 0.00 13.00;c126 0.20 6.30;c078 4.80 13.00;c073 3.10 8.60;c070 4.60 13.00,12.46\r\nIUOC0,BYF9,Home Office / Study (A room in a house used for work),5,5,Yes,\"A person runs into the middle of an office, holding a box and a sandwich in opposite hands.  They stand there a moment, before closing the door to the office and sitting down in the chair in front of the desk.  They begin watching something on their monitor as they enjoy their sandwich.\",box;chair;desk;door;food;sandwich;table,\"A person runs into the room and closes the door and then sits on the chair with a box and eats while looking at a computer.;A young person walking into a room shutting the door, eating a sandwich, holding a box, sitting in a chair, looking at a computer.\",c059 17.00 29.00;c006 11.10 16.70;c065 22.20 29.00;c011 16.60 29.00;c150 5.10 15.00;c151 15.40 29.00;c067 6.40 24.60;c156 21.20 29.00,28.46\r\nT9V1I,WQ8Z,Kitchen,6,3,Yes,\"A person walks into the pantry, watching a video on their phone. The person finds a cloth bag, which they snuggle against their face.\",bag;phone;towel,A person walks into the kitchen holding a phone and picks up a bag and snuggles with it.,c015 0.90 20.00;c038 8.10 18.50;c020 8.30 13.40;c016 16.40 20.00,18.88\r\n9L71W,D0RU,Bathroom,7,7,Yes,Person A is standing in the bathroom putting on clothes.  Person A reaches in a pocket and opens a wallet looks at a picture inside of wallet.,clothes;mirro;picture,\"A person is looking in the bathroom mirror and fixing their clothes. The person then walks towards the door, removes a wallet and takes out a picture. The person looks at the picture for a moment and then puts it back and continues to look through the wallet.\",c084 10.50 28.50;c088 30.20 33.00;c085 30.20 33.00;c152 30.20 33.00;c086 30.20 33.00,32.12\r\nEO9UA,9PLL,Kitchen,6,7,Yes,A person is seen washing a shelf. They take a broom and begin tidying the area nearby.,bowl;broom;floor;towel,A person washes a bowl with a towel before sweeping the floor.,c102 17.20 33.00;c127 0.00 18.50;c038 0.00 18.50;c037 0.00 13.10,32.00\r\nEN3QY,T7C3,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,\"A person is tidying the entryway with a vacuum, then looks out the window and closes the curtains.\",floor;vacuum;window,\"A person is vacuuming a hall. The person then stops to look out the window, then draws the shades.\",c092 20.30 32.20;c137 0.00 24.60;c127 0.00 27.90,33.00\r\nYV874,S053,Dining room,5,7,Yes,A person sneezes and bumps their head on door. The person sits down at the table to recover.,chair;door;head;table,A person sneezes and holds the head. The person then sits down at a table.,c153 1.40 9.30;c151 13.10 19.00;c059 14.20 31.00,30.25\r\nXI9LI,D0RU,Recreation room / Man cave,4,5,Yes,The person is smiling at the television  and taking a snack out of the refrigerator in the recreation room / man cave.,cup/glass/bottle;door;refrigerator;remote;television,\"A person standing in a living room and watching TV picks up a remote and point it at the TV, then the person walks over to a refrigerator and opens the door and reaches in.\",c131 6.70 21.80;c132 4.30 23.20;c143 19.20 26.30;c152 5.10 28.50;c008 19.60 26.30;c110 28.30 33.00;c149 6.80 14.20,31.54\r\nVYW49,YMXV,Bedroom,4,6,Yes,A person is tidying the pantry by sweeping with a broom. The person then throws down the broom and sits in a chair.,broom;chair;floor;table,\"A person is using a broom to sweep the floor of the room, then sits down in a chair.\",c059 18.00 32.00;c102 0.00 22.00;c151 21.00 27.50;c127 0.00 22.00;c011 29.20 32.00,31.17\r\nLKKQQ,5LWB,Garage,6,6,Yes,A person is laughing at a sheet of homework while another person is putting medicine on the floor.,floor;homework;paper,A person is doing homework and another drops something on the floor.,c145 0.00 19.40;c126 16.50 21.70;c154 20.30 25.00;c152 1.60 13.90;c127 16.60 25.00;c115 0.00 19.30,23.50\r\nRXNW7,T7C3,Kitchen,6,7,Yes,A person draws a picture of a window. Then they start running while grasping the picture.,doorway;homework;notebook;paper;pen,\"A person is standing in a doorway doing some homework, they then run out of the room.;Person uses a pen to write in a notebook while standing in the doorway to the kitchen before turning around and walking away.\",c115 0.00 27.90;c145 9.20 23.60,27.08\r\nFXIVQ,YA10,Dining room,7,7,Yes,\"One person with a sandwich on a dish walks up to a cabinet, gets a glass and starts drinking.\",cabinet;cup;dish;food;glass;sandwich;table,A person walks and grabs a class to drink out of. Then goes to set down a plate and glass.,c106 5.40 21.60;c109 20.60 24.00;c067 0.00 24.00;c119 20.30 24.00;c107 5.20 21.20;c110 1.30 9.30;c113 0.30 7.50;c068 15.80 24.00;c118 5.80 17.80;c120 8.00 24.00;c154 5.00 14.70;c009 20.90 24.00;c061 0.00 24.00,23.25\r\nGSIYV,KFGP,Living room,4,7,Yes,A person is putting a towel and other random clothes away after doing laundry and is smiling the whole time.,clothes;towel,\"A person in a bedroom folding clothes and a towel and then placing them on a chair, then the person picks up the pile of clothes smiles then walks away.\",c033 0.00 17.80;c035 25.00 30.80;c001 21.20 29.10;c034 6.20 12.10;c000 15.10 21.60;c002 14.60 21.60;c004 8.10 18.10;c037 0.00 11.10,30.42\r\nB8WPE,0RNU,Garage,6,7,Yes,\"A person is standing in a garage, looking through items stored there.  The person picks up a pillow and throws it aside before grabbing a vacuum cleaner.\",bed;books;box;radio;shelf;table;vacuum;window,someone going through things in a box and sitting stuff out of it;A person is sorting various objects from different boxes.  The person then finds a purple vacuum and picks it up.,c138 27.40 34.00;c040 12.30 20.30;c009 12.60 19.10;c082 2.80 18.60;c137 26.50 34.00,32.79\r\nTK76G,BYF9,Kitchen,4,6,Yes,A person is eating at the table while another person is wiping the glass with a towel then throws the towel into the sink.,food;glass;sink;table;towel,Two people are standing next to a table. One person take food from a plate while the other person is cleaning the table with a cloth.,c156 12.40 17.00;c034 10.80 16.00;c013 0.00 13.90;c033 0.00 14.20;c063 0.00 8.30;c012 0.00 16.40,15.58\r\nAI6KJ,BYF9,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person puts a bag onto the table. The person leaves, closing the door behind them.\",bag;door;table,A person walks into a room and puts their bag down. Then they go into another room.,c009 5.20 12.30;c022 5.00 12.30;c006 11.60 18.40;c020 0.00 13.10;c024 5.70 13.10;c141 10.00 15.70;c097 0.80 7.40,18.71\r\nSMRL1,0KZ7,Bathroom,5,6,Yes,\"A person stands above the sink, trying to wash a stain out of their clothes. The person laughs.\",clothes;sink,person standing and scraching leg,c004 0.00 33.00;c154 0.00 33.00,31.62\r\nKOF86,3VLX,Bathroom,7,7,Yes,A person is standing and undressing in front of a sink and then eating a sandwich in a bathroom.,clothes;food;jacket;mirror;sandwich;shirt;sink,\"A person is looking in a mirror and undressing, they then begin eating a sandwich.;person removed the jacket and kept it aside,also removed the shirt and kept it aside. took the sandwich kept beside the sink and eating it\",c065 24.50 31.60;c155 2.70 24.00;c096 23.30 40.00;c003 5.60 11.80;c061 22.10 40.00;c156 25.30 33.00,39.12\r\nEU10X,KQI6,Living room,5,7,Yes,\"One person is watching television, eating a snack and having coffee. Another person is playing games on the phone.\",chair;coffee;cup;food;game;phone;table;television,A person eats some food and watches television.  Another person sits next to them playing a game on a phone. The first person then drinks some coffee.,c106 17.90 22.70;c015 10.00 31.00;c016 9.90 31.00;c132 4.20 13.70;c156 0.00 8.20;c009 8.80 13.90;c011 0.00 31.00;c059 0.00 31.00;c061 0.00 14.00;c062 8.80 14.00,29.67\r\nMERBU,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"A person enters their house, coming into through the door and turning on the light.  In one hand they are holding a bag, and in the other grasping a phone.\",bag;cup;doorway;floor;food;ground;house,\"A person is running into a home only to fall on the floor and see another person eating a snack.;A person is running inside the house. A person then falls on the ground, while another person is holding a cup and food.\",c020 19.90 32.00;c150 0.00 18.80;c156 20.80 32.00;c125 17.70 22.80;c107 19.70 32.00;c097 6.30 11.80;c152 9.00 22.80,31.42\r\nNJ8KM,BYF9,Hallway,6,7,Yes,A person is standing in the hallway looking at themselves in the mirror.  The person walks to a nearby shelf and picks up a pair of shoes.,mirror;shelf;shoe,A person is fixing their hair while looking in a mirror. Then the person walks away and picks up some shoes.,c096 0.00 16.80;c056 17.50 23.00,21.88\r\n29E4A,P6LJ,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,Person is standing in hallway putting on shoes and starts dressing by mirror to go out and get groceries.,clothes;jacket;purse;shoe,\"A person is putting on shoes and clothes;A person is in an entryway, putting on shoes and a jacket and getting a purse, then walking away.\",c148 17.00 36.30;c055 2.80 19.90,43.67\r\n8817I,L4ZP,Bedroom,7,7,No,A person in a bedroom is walking to a wardrobe while undressing. Another person wearing a towel is using a camera to take pictures of the other person.,camera;clothes;coat;jacket;phone;picture,A person walks in to a room and takes off a coat .The other person walks in and takes a picture of the other person.Both person leave the room together.;Two people walk into the room. One person takes their jacket off. The other holds up a camera and takes a picture of the other person. They both exit the room.,c015 6.50 22.50;c155 0.90 9.00;c002 0.10 9.00;c003 4.90 9.90;c087 8.30 21.90;c018 2.20 27.00;c017 7.00 22.40;c018 3.70 9.00;c016 7.00 22.30,26.42\r\nKNN3G,0KZ7,Dining room,7,7,Yes,\"A person is tidying dirty dishes on a table, then pouring a cup of coffee and eating food in a dining room.\",coffee;cup;dish;food;glass;sandwich;table,\"A person stacks some dishes on the table, then pours some coffee into a glass.  They drink the coffee, then sit down, place the coffee on the table and take some food from a plate and begin eating.\",c109 0.00 12.90;c106 18.20 31.00;c109 12.20 21.20;c120 0.00 18.70;c009 0.10 22.00;c012 0.10 22.90;c151 17.80 24.60;c109 15.90 25.60;c119 3.50 14.60;c011 18.00 31.00;c063 22.40 31.00;c156 22.70 31.00;c108 10.70 22.00;c065 22.20 31.00;c067 21.90 31.00;c069 21.60 31.00;c107 13.60 21.40,30.21\r\n2GF6R,0KZ7,Living room,5,7,Yes,A person is awakening and then standing in front of a television while eating a sandwich in a living room.,couch;food;sandwich;sofa;television;tv,a person wakes up off the couch and eats while watching tv;A person was lying on the couch watching television to suddenly get up and take a bite of a sandwich.,c067 10.70 15.50;c146 3.50 13.20;c156 6.30 16.20;c132 2.80 8.70;c065 4.30 23.00;c069 0.00 4.20;c154 0.90 8.20;c122 0.00 2.50;c061 0.70 23.00,21.54\r\nOEYA3,OUKK,Closet / Walk-in closet / Spear closet,4,6,Yes,\"A person sits in a chair in the closet, putting on a pair of shoes. The person looks around and begins tidying the closet.\",chair;closet;clothes,\"The person sits down in a chair, looks around and then gets up and looks for something in the closet.;The person sits in a chair and then gets up, moving the chair they go into the closet.\",c059 0.00 11.20;c151 0.00 3.30;c004 12.80 31.00;c154 6.90 13.00;c114 12.50 31.00,29.71\r\nRY8ZS,XXN8,Closet / Walk-in closet / Spear closet,5,7,No,A person takes a blanket and drapes it over a mirror. The person smiles.,blanket;door;mirror;towel,A person is washing a mirror with a blanket. They then smile.,c095 0.00 15.10;c152 11.00 19.30;c006 0.00 23.50;c034 0.00 10.20;c036 0.90 11.50,30.17\r\nLF8HG,QB52,Basement (A room below the ground floor),6,6,Yes,\"A person is grasping a laptop, then the person starts playing with a camera they found.\",desk;game;laptop;something,\"A person sitting at a laptop at a desk.The person reaches over and picks up a game and starts playing with it .;A person sitting and looking at a laptop picks up something from a table, opens it and then holds it above their head.\",,30.25\r\n7UPGT,UTMU,Kitchen,6,5,Yes,A person standing in the kitchen is looking through their refrigerator. They are laughing because someone put a cup of coffee in there.,coffee;cup;food;glass;refrigerator,A person is looking into the fridge. A person then takes a cup out the fridge while smiling.;A person opens a fridge and and takes out some coffee while smiling and laughing.,c149 16.00 22.20;c152 16.00 22.20;c142 15.00 20.00;c107 14.00 23.00;c143 0.00 5.00;c110 13.90 19.70;c061 14.20 24.00;c063 5.00 11.20,23.21\r\nF1C8I,YA10,Living room,6,7,Yes,A person holding shoes is walking across a living room but stops and begins fixing a window.,shoe;window,\"Person walks to window while holding shoes, sets shoes down on floor and opens blind then picks up shoes and walks away.\",c054 6.20 13.30;c053 0.00 12.60;c092 0.10 30.10;c056 24.30 29.50,30.25\r\nKA8IR,XXN8,Kitchen,3,7,Yes,A person is standing in their room. The person removes some of their clothes before leaving to pick up some food.,bag;box;bread;chair;clothes;crackers;food;groceries;jacket,\"The person took off a jacket then held a box of crackers and a bag of bread.;Person is sitting, taking off jacket, gets up, walks away, grabs a box of crackers, walks away, come back with a loaf of bread.\",c001 4.20 14.30;c061 19.20 31.00;c063 11.10 26.10;c043 9.10 21.60;c155 0.00 8.40;c062 19.70 29.90;c154 7.10 12.20;c040 10.50 31.00;c020 19.70 29.60;c130 11.10 31.00,29.54\r\n4WUNC,UTMU,Kitchen,6,5,Yes,\"Mr. X opened the refrigerator and removed and sandwich, placing it onto a plate. Before eating the sandwich, the person could be seen opening a can of soda as well.  Perhaps it was unusual to stand up in the kitchen while eating their lunch, but Mr. X didn't care.  It was faster than going to a table.\",dish;drying rack;food;oven;plate;refrigerator;sandwich;soda can;table,\"The person opened the refrigerator and got a sandwich out, got a plate for the sandwich, and placed the plate on the oven. The person opened the fridge again and got a can of soda out and opened it, and placed it on the oven. The person then lifted the sandwich and shrugged while eating it.\",c142 5.70 14.20;c120 18.10 28.60;c067 23.40 39.00;c069 23.40 30.60;c143 0.00 6.70;c119 8.90 15.90;c065 25.90 39.00;c068 7.60 14.80;c156 27.00 39.00;c062 8.00 39.00;c061 8.00 30.00;c009 7.00 39.00;c063 3.00 27.00;c149 33.00 39.00,37.62\r\nXXX1O,LTAC,Living room,5,6,Yes,\"A person is eating out of a bag. Then the person stands, pouring a drink into a glass before reaching for their laptop and sitting on the sofa.\",bag;chair;cup;food;glass;laptop;sofa;table;thermos,\"a person sits at a table and pulls food out of a bag then pours a drink and sits on the couch using his laptop;A person sits at a table.  They take some food out of a bag and eat it, then stand up and pour some water into a glass.  They walk over to a sofa and sit down to work on a laptop.\",c021 0.00 5.40;c108 13.90 20.00;c156 3.00 13.10;c151 21.60 27.60;c063 0.00 5.80;c123 22.20 31.00;c154 11.00 15.70;c011 0.00 14.70;c059 0.00 14.80,30.42\r\nMOWLI,C7O9,Bathroom,7,7,Yes,A person walks into the bathroom by opening the door with the doorknob. A person plays a song on the radio and looks at a picture.,door;picture,A person is walking and opening a door they go in the door and pick up a tablet and play the tablet in the door way,c141 2.90 7.30;c008 2.90 11.30;c097 4.00 10.80;c083 19.20 24.60;c084 19.30 30.00,29.38\r\n4UR1F,ECB2,Bedroom,4,7,Yes,A person is standing next to the bed.  The person is holding a pillow then sneezes.,pillow,A person is standing in their room holding a pillow and they sneeze on it.,c076 0.00 4.00;c153 0.00 4.00,3.00\r\nY3KJW,0KZ7,Stairs,6,6,Yes,A person is playing with clothes while another person is tidying with a broom.,broom;clothes;floor;towel,\"Two people are standing at the bottom of the stairs, person one is sweeping the floor while person two is tossing clothes and a towel around and catching them.\",c000 0.00 29.00;c102 0.00 29.00;c033 0.00 29.00;c127 0.00 29.00,28.04\r\nDS5J7,3VLX,Living room,6,6,Yes,Shoes are all over the floor. In the dim light a smiling person is watching television. There are dirty dishes on the coffee table.,dishes;floor;remote;sofa/couch;table;television,Person is sitting on couch watching tv with feet on coffee table.  Person has dog on lap while changing channel with remote control.,c132 0.00 26.00;c152 17.30 26.00;c123 0.00 26.00,24.83\r\nRP64Z,D0RU,Stairs,6,5,Yes,The person is laughing as they clean the stairs.  They use the broom to sweep up the stairs and then they put the broom down and walk away.,broom;doorway;floor;mop,The person is mopping a couple of stairs and then walks away through a doorway.,c098 0.00 17.20;c102 0.00 17.10;c097 15.20 20.20;c127 0.00 14.60;c149 0.00 8.30,30.75\r\nOCYT9,ZAWX,Bathroom,5,7,Yes,A person is in the bathroom closing their laptop. They pour water in the sink and leave.,cup;dish;doorway;glass;laptop;sink;water,\"A person is holding an open laptop.  That person then closes the laptop, sets it down and walks into a kitchen.  In the kitchen, that same person pours water into a sink.;A person standing in a doorway with a laptop .The person closes the lap top and walks out the door way .The person walks to a sink and picks up a cup and pours water out.\",c046 6.90 15.80;c047 0.10 15.20;c049 16.40 32.00;c051 0.00 14.40;c120 22.40 27.30;c097 13.60 21.20;c052 0.00 16.10;c118 22.40 32.00,30.62\r\n9V66G,L4ZP,Bedroom,4,7,Yes,\"A person is throwing dishes into a wardrobe. They stop, turn around, and begin drinking a beverage while admiring their reflection in the mirror\",closet;cup/glass/bottle;dish;mirror;wardrobe,\"A person is cleaning up a room by putting the dishes into the wardrobe, then takes the time to look at themselves in a mirror.\",c119 5.60 15.60;c093 18.90 36.00;c096 20.50 36.00;c120 0.80 12.30;c113 4.70 13.00;c110 0.30 16.70;c112 12.20 17.20;c107 0.80 11.60;c109 0.80 11.60;c106 22.80 34.20,35.33\r\nSM5WL,6PZN,Bedroom,4,6,Yes,One person was leaving their blanket. The other was fixing some mistakes on their homework,bed;blanket;book;floor;homework;paper,\"A person is sitting on the floor and writing in a book. Another person takes off a blanket and sits up in bed.;There is a person sitting on the floor doing homework.  Another person is laying in bed and sits up, removing the blanket.\",c115 0.00 6.60;c145 3.00 32.00;c133 0.00 9.40;c125 0.00 32.00;c135 4.80 32.00;c134 0.00 8.30;c070 0.00 8.00;c075 6.20 17.10,31.00\r\nEFX3U,IK1O,Garage,7,7,Yes,A person closes a book and sets it on the table.  They then begin eating a sandwich.,book;food;sandwich;table,A person is reading a book and then eating a sandwich,c025 10.60 16.40;c026 0.00 19.50;c032 0.00 17.20;c065 17.90 32.00;c156 18.20 32.00;c061 17.80 32.00;c028 13.00 21.20,30.54\r\nMGBLJ,YMXV,Home Office / Study (A room in a house used for work),6,4,Yes,A person sneezes on a their food.  The person drinks water and looks out the window.,bottle;chair;desk;laptop;person;tv;water;window,\"A person adjusted something before sitting on the chair and taking a gulp of water and then standing to look out the window.;A person sitting in a chair gets up to look for something while holding a bottle of water, sits back down, then gets up again to peer out a window.\",c106 11.10 23.70;c092 22.20 32.00;c151 1.00 11.20;c154 0.00 9.80;c059 6.30 25.60,31.17\r\n3IRHH,ENC8,Kitchen,6,5,Yes,\"A person is cooking on the stove in the kitchen while reading a book, then puts it onto the counter.\",book;countertop;dish;doorway;food;stove;table,\"A person cooking at the stove picks up a book, sets it down and then leaves.\",c027 21.40 28.80;c009 24.60 30.50;c147 0.00 32.90;c117 0.70 7.30;c119 14.60 21.30;c097 29.80 36.20;c118 0.00 6.70,38.96\r\n6E6GF,P6LJ,Kitchen,6,7,Yes,A person turns the light on over the stove and begins cooking.  The person then starts throwing dishes in the sink.,dish;food;light;sink;stove,Someone is in the kitchen cooking something. They turn on a light and put dishes in a sink.,c104 4.20 10.10;c119 27.60 45.10;c147 5.10 25.70,47.33\r\nYLGF5,3H6W,Recreation room / Man cave,5,6,Yes,\"A person throws a towel on the top of a cabinet in their recreation room.  They sneeze and snuggle with a broom, as they kick off their shoes.\",broom;cabinet;clothes;shelf;shoe;towel,\"A person walking in to a room,throwing a cloth on top of a stand.Proceeds to pick up a broom and hug it and kicks off their shoes on the their feet.Proceeds to walk out of the room.\",c057 8.10 14.70;c033 0.00 6.70;c036 2.20 7.10;c100 4.00 8.80;c058 7.60 12.70;c098 4.70 17.70;c034 2.10 8.20;c152 5.30 17.50;c155 8.00 15.10;c081 2.20 7.70,17.17\r\nXDS14,18IT,Kitchen,6,6,Yes,A person is cooking while another person is eating leftovers from out of the refrigerator. The person who is cooking uses a towel to mop up a spill on the counter top.,dish;food;refrigerator;skillet;stove;towel,\"A person prepares a meal in a skillet on a stove, while another person retrieves some food from a refrigerator and begins to eat it.;A person with a towel on their shoulder cooks food on a stove. Another person walks to the refrigerator, takes out food, and eats it. The first person wipes off the stove with their towel.\",c142 0.00 9.60;c033 41.10 47.60;c063 0.00 8.50;c143 0.00 6.80;c038 43.60 57.00;c156 6.50 57.00;c061 5.00 57.00;c147 0.00 44.50;c118 0.00 57.00;c120 0.00 57.00,56.29\r\n4ZY8C,9Y7F,Kitchen,7,5,Yes,\"One person walks through with coffee, then puts a book in a bag and closes it.\",bag;book;coffee;cup/glass/bottle;shelf,\"Person is standing in the kitchen drinking from a coffee mug, and then walks over to close black bag.\",c031 20.80 27.40;c081 13.30 20.00;c025 20.30 25.60;c021 24.20 30.60;c106 0.70 6.80;c028 25.10 31.10;c030 16.00 20.90;c027 17.70 22.60;c032 18.70 23.70;c026 16.00 33.00;c109 0.00 19.50;c107 0.00 18.90,32.08\r\nQDOXA,4OHY,Bedroom,6,4,Yes,\"A person is undressing in a garage. They take of their shoes, put them in a bag, and sneeze.\",bag;chair;clothes;hand;shirt;shoes,\"A person takes off their shirt and sets it down. Then they bend over and pick up something off the floor. They sneeze a few times.;A person takes off a shirt and picks up stuff off the floor and puts it in a bag, and starts sneezing.\",c153 22.90 29.70;c155 7.80 15.60;c003 10.70 16.20;c001 10.10 15.00;c020 19.20 30.00;c000 9.00 14.10,29.50\r\nG3K6P,1OHU,Bedroom,6,6,Yes,Person sitting in study watching television is sipping from a glass. Person uses towel to wipe water up before putting glass back down.,bed;cup;dish;dresser;glass;television;towel;tv;water,\"A person is sitting in front of a tv drinking a glass of water they use a towel to clean off the dresser.;a person sits and watches tv while drinking water and wipes up with a towel;A person is sitting on a bed watching a television and picks up a glass and drinks something, then wipes a spill with a towel.\",c106 0.00 12.20;c038 8.20 31.00;c132 0.00 31.00;c110 0.00 4.60;c035 12.80 17.70;c118 0.00 31.00;c033 13.00 25.20;c107 0.00 31.00,30.46\r\nXVBTO,1OHU,Bathroom,6,6,Yes,The phone falls off the table while the person is busy opening the closet and dressing themselves.,clothes;door;pants;phone;shirt,\"A person behind a door putting a shirt on and pulling at their pants and drops their phone ,turns and looks around than turns back to the closet.\",c148 0.00 19.80;c001 0.00 20.30,20.96\r\nVYNEU,D0RU,Bedroom,5,7,Yes,\"A person stands in the doorway, wrapped in a blanket. The person sits down, drinking a glass of orange juice.\",bed;blanket;cup;doorway;glass,A person walks with a blanket wrapped around them and sits on a bed and then drinks from a glass.,c097 0.00 7.50;c072 0.00 33.00;c106 10.30 33.00;c151 7.00 15.00;c135 7.20 33.00,31.58\r\nSNU9T,3531,Bedroom,4,6,Yes,A person sits next to a mirror while eating medicine.,chair;cup;glass;medicine;water,\"A person is sitting in a chair taking medicine out of a box. He takes a drink of water out of a glass and then takes the medicine, then takes several more sips.;A person is sitting holding some medicine. They pick up a cup and drink some water and then eat the medicine.\",c107 11.10 32.00;c128 0.00 23.60;c128 0.00 10.60;c106 15.00 32.00;c129 10.70 29.50,31.25\r\nSXI64,2RTW,Kitchen,6,6,Yes,\"A person is standing alone and undressing in front of their mirror glass, wardrobe ajar, putting on a bright red blazer.\",clothes;hair;mirror,A person is standing in front of a mirror fixing their hair then they take off their shirt and put their jacket on.;A person is standing in the kitchen styling their hair while looking in the mirror. They change their clothes and continue to look in the mirror.,c096 0.00 33.00;c155 5.60 13.50;c144 0.00 9.90;c001 8.30 15.10;c003 9.50 15.10;c148 12.00 32.30;c002 10.60 16.80;c000 7.80 14.10,32.21\r\n5EDX4,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,a person is sitting and using a laptop and the stands and put the laptop in a box,box;desk;laptop;table,\"A person is using a laptop.  The person stands up, closes the laptop, opens a box and puts the laptop inside.;A person is sitting at a table working on a laptop, they then begin to put the laptop in a box.\",c046 15.70 25.40;c039 21.20 32.60;c154 17.90 27.60;c154 22.00 29.80;c049 26.30 33.00;c052 0.00 31.20;c041 26.30 33.00;c011 0.00 29.30;c051 0.00 26.00;c014 0.00 26.30,31.54\r\n7SXQS,2RTW,Kitchen,6,6,Yes,A person is closing the window in the dining room. They are then seen snuggling up with a blanket.,blanket;chair;laptop;table;window,\"A person is sitting at a table with a computer in front of them. The person stands up, closes the shutters of the window behind the table and computer, and puts on a blanket before sitting back down.;Person gets up from table and closes blinds at a window and then throws a blanket on and sits down and looks at the computer.\",c089 1.00 7.00;c072 18.20 32.00;c151 0.00 23.10;c011 19.10 32.00;c070 15.10 20.00;c073 11.00 17.50;c154 0.00 4.30;c051 0.00 2.50;c059 0.00 3.60,31.04\r\n9K0B6,T7C3,Living room,6,7,Yes,\"A person is fixing their television. The person stops, looks in the mirror, and laughs at themselves.\",hand;mouth;phone;remote;television,A person working on a television set. The person turns and looks at their ceil phone and laughs. The person coughs and puts their hand up to their mouth to cover the cough.;The person was playing with the back of the television.,,34.29\r\n914NC,BYF9,Stairs,5,4,Yes,A person smiled as she picked up a pillow in one hand and a cup of coffee in the other. The person walked up the stairs with them.,coffee;glass;hand;pillow,persons climb stairs holding something under arms,c079 0.00 16.00;c076 0.00 16.00,15.29\r\n3ZUVI,XXN8,Bathroom,6,6,Yes,\"One person throws a bag containing a book down, then opens and closes a cabinet.\",bag;book;cabinet;floor,\"person comes into bathroom with a bag, opens bag and takes out a book, puts it back then opens cabinet, looks inside then closes it and leaves.\",c112 7.90 13.20;c113 6.20 11.50;c020 0.00 7.40;c021 1.00 6.80;c026 0.00 5.60;c028 0.00 5.60;c030 0.00 3.40;c126 2.80 7.30;c024 2.80 7.60;c022 2.80 7.60,30.75\r\n9FH1E,1OHU,Dining room,4,7,Yes,A person is cooking a sandwich and another person is working on the light.,bag;dish;food;light;sandwich,A person is making a sandwich and another person is fixing a light.,c103 3.20 31.00;c066 0.00 34.00;c021 6.70 14.00;c023 0.60 4.80;c021 2.80 12.00;c119 0.00 4.00;c118 0.00 4.00;c120 21.00 25.80;c062 12.60 17.10;c022 19.80 24.30;c063 9.80 15.50,32.75\r\nQK5KC,2RTW,Living room,6,6,Yes,A person grasps and opens a book while sitting at a desk. Then this person watches as the doorknob turns.,book;chair;desk;doorway;table;television,A person is sitting at a desk looking at a book.;A person is sitting in a chair smiling and looking at a book.,c059 0.00 32.00;c149 8.50 22.10;c026 11.00 22.80;c032 11.10 22.40;c011 0.00 32.00;c152 12.40 22.20;c027 0.30 5.40;c132 24.50 32.00;c025 25.20 31.80;c030 0.00 3.70,30.83\r\n1IYEW,2RTW,Living room,6,6,Yes,Person is snuggling on the sofa with a blanket while watching TV in the study.,blanket;sofa;television;tv,A person is sitting on a sofa with a blanket wrapped around them watching television.;A person snuggling with his blanket while watching t.v.,c072 0.00 32.00;c123 0.00 32.00;c132 0.00 32.00;c070 0.00 32.00,30.71\r\nD2T7Z,XXN8,Living room,5,7,Yes,A person is lying on the sofa in the living room reading a book.  The person pulls a pillow out from behind their head and throws it on the floor.,book;chair;floor;head;pillow;sofa,A person holding a book lays down on a sofa and begins reading.  The person then pulls a pillow from behind and throws it onto the floor.  The person stands up and walks away.,c032 0.00 4.80;c079 6.90 21.40;c122 5.10 16.50;c154 18.50 31.00;c025 11.90 18.60;c027 1.40 8.80;c126 16.80 24.00;c080 16.50 24.30;c151 0.00 3.80;c026 0.00 26.00,30.46\r\nYVOM4,0KZ7,Garage,5,7,Yes,\"One person works at fixing a shelf when another person comes running through for a pair of shoes, laughing.\",doorway;shelf;shoes,\"A person is adjusting a shelf. Another person run in and grabs shoes, then runs back out.\",c150 9.10 18.30;c082 0.00 29.00;c097 9.00 13.70,28.04\r\nY716N,HR43,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is lying on the floor, using a book for a pillow. They sit up, grasping a bottle of medicine.\",book;bottle;floor;medicine,\"A person is lying down on the floor using a book as a pillow. The person wakes up, sits up, and grabs a bottle.\",c128 15.60 24.20;c124 0.00 15.70;c125 20.60 31.00,29.50\r\nMWAGL,AH2J,Kitchen,6,7,Yes,\"A person wakes up on a couch, takes food from a refrigerator, puts some on a shelf and then eats the rest.\",box;door;food;refrigerator;sofa,\"A person is lying on a sofa, they then sneeze and get up and walk into the kitchen and open the refrigerator. They take out some food and begin eating it while smiling\",c142 16.70 21.90;c063 15.40 21.50;c143 9.00 15.90;c008 9.20 21.70;c122 0.00 6.10;c154 3.80 10.90;c061 15.80 40.40;c044 21.20 30.20;c062 23.10 29.20;c146 0.00 5.70;c043 14.80 21.30;c040 14.80 27.50;c041 14.80 27.50;c042 14.80 27.50,41.42\r\nZZXQF,R1OT,Bedroom,4,7,Yes,A person is taking a medicine bottle and laughing  as the look at themselves in the mirror.,food;medicine;mirror;table,\"A person picks up medicine from a table, walks to the mirror and takes the medicine.;A person eats some medicine while looking in the mirror.\",c096 2.80 24.00;c128 0.00 8.70;c128 6.40 14.70;c156 9.40 16.80;c129 9.50 18.20,22.96\r\nAR4S6,HJJ4,Basement (A room below the ground floor),7,4,No,\"A person holding a vacuum cleaner and a plastic bag is tidying up the basement.  They're working their way across the room, putting detritus into the bag.  They see a pile of dirty dishes, so they pick them up and leave the vacuum cleaner and bag behind, closing the basement door behind them.\",bag;door;vacuum,A person is walking into the room carrying a vacuum and a bag. The person places things inside of the bag and then walks away.,c137 0.40 19.60;c020 0.00 20.60;c006 22.60 28.30;c008 20.90 26.60,28.58\r\nGJN99,UO0Z,Hallway,5,7,Yes,A person sits on the floor and plays a game on their laptop in front of a mirror.,floor;laptop,A person sits on a floor and works on a laptop.,c125 0.00 22.00;c052 0.00 22.00;c047 0.00 22.00;c051 0.00 22.00,20.58\r\nI0THD,ZAWX,Kitchen,7,6,Yes,A person is tidying up the counter because someone left groceries all over it.  Then a person is sneezing as the turn the doorknob.,closet/cabinet;doorknob;groceries;shelf;table,\"The person arranges groceries on a shelf, then walks to a cabinet and sneezes as they open it.\",c153 22.10 32.00;c113 20.90 32.00;c082 0.00 19.80,30.62\r\nTWU2U,6RE8,Kitchen,6,4,Yes,\"A person begins opening the refrigerator and taking groceries out of a bag. Grasping the door, the person opens it and puts the groceries away.\",bag;door;food;groceries;refrigerator,A person walks into the room and opens the refrigerator door.  The begin removing a bag of groceries and putting it on the counter.,c130 14.10 38.70;c022 14.10 23.60;c023 14.10 23.60;c008 10.10 17.90;c143 10.10 17.90;c020 14.50 23.20;c061 15.30 35.70;c063 14.50 38.30,40.29\r\n0RJKT,1TZV,Living room,7,7,Yes,\"A person undressing in the living room holds on to the clothes they've just taken off as they sit down on the floor. Holding their phone, they wave at an unseen person through a doorway, and start playing a game on their phone.\",clothes;floor;phone,A person taking off jacket and then sitting on the floor to play with cellphone.,c000 11.60 28.00;c015 15.40 28.00;c125 12.20 28.00;c151 8.60 16.60;c016 14.30 28.00;c155 0.00 18.30,26.92\r\n1UI6I,1OHU,Bedroom,6,6,Yes,A person is closing their wardrobe and getting dressed as they look in the mirror.,closet/cabinet;clothes;mirror;shirt;wardrobe,\"A person is dressing into some clothes, they then begin tidying up their wardrobe and look into a mirror.;A person is putting a shirt on.  They then close the closet drawer and try to stick a small mirror to it. The mirror falls and they pick it back up and look at themselves in it.\",c093 10.20 16.40;c096 11.70 16.70;c148 0.00 8.80;c113 0.00 8.70;c112 4.50 13.00,27.12\r\nET224,P6LJ,Hallway,6,6,Yes,\"A person is eating food as the person is lying on the floor. Then the person picks up their pillow and leaves, closing the door behind him.\",door;floor;food;hair;pillow,\"A person walked to a pillow, adjusted it, then laid down on the floor.  The person then grabbed some food and began eating it.  The person then opened a door, and put the pillow away.\",c063 12.10 21.60;c124 8.70 47.00;c078 9.30 46.40;c008 48.20 54.00;c151 2.00 9.00;c154 44.50 50.30;c080 55.80 61.30;c076 2.00 7.50;c076 5.60 11.80;c076 45.10 54.90;c141 54.90 59.80;c006 50.30 56.10;c156 15.70 50.60;c144 25.20 32.60;c097 47.60 54.90,61.12\r\nB9F4P,38MV,Bedroom,6,6,Yes,\"A person wrapped in a towel is holding a mirror, while another person is closing the door to the bedroom.\",closet;door;lock;mirror;phone/camera;towel,\"A person with a towel on holding mirror working their face,anther person walks in opens a door and locks it and turns and walks out.;A person is looking in the mirror picking over a face,another person goes towards the door to close and lock it.;A person is in a towel looking in a small mirror, while another person opens a closet door, puts something in and shuts it.\",c096 0.00 33.00;c141 9.50 18.10;c006 11.00 17.30;c093 0.00 33.00;c113 9.00 15.00;c015 0.00 33.00;c112 10.40 15.20,31.75\r\n5I4UT,38MV,Bedroom,6,6,Yes,\"A person was in the bedroom lying on a sofa when another person was vacuuming the floor. After the second person finished vacuuming, they left, closing the door behind them.\",bed;floor;picture;pillow;television,A person is lying down on the bed watching television.;Person laying on the bed looking at the television with his hand underneath his head he turn on the bed and turns back.;A person is watching TV in bed.,c078 0.00 39.00;c132 0.00 39.00;c134 0.00 39.00;c124 2.70 8.10;c088 3.30 10.70,37.79\r\nHJH7H,38MV,Bedroom,6,6,Yes,\"Two persons are snuggling on their bed. One person reaches over, grasping for the remote, and the turns off the television. The other person grabs a pillow and playfully hits the first person with it.\",bed;pillow;television,A person is lying in the bed with another person. A person then turns on the television. A person then throws a pillow at a person and gets up,c132 0.00 12.00;c080 11.00 16.00;c134 0.00 27.00;c154 9.00 14.00;c152 12.60 24.20,25.62\r\nGEAB1,4I2W,Living room,6,6,Yes,A person is seen smiling and watching television. The person takes  a bite of their sandwich and begins drinking water from a glass.,cup/glass/bottle;food;sandwich;television;water,\"A person is standing in the doorway watching television. The person then begins to eat a sandwich, and drink some water.\",c106 28.10 33.00;c067 13.80 30.70;c069 12.30 18.40;c065 14.70 29.90;c068 25.90 31.30;c156 14.90 30.50;c132 0.00 33.00;c063 13.80 19.00;c061 15.20 28.90;c062 25.40 30.70,31.75\r\nF8PNY,Z68L,Bedroom,6,5,Yes,A person is opening a window and then lying on a desk in a home office / study.,bed;chair;desk;table;window,\"The person knelt on the bed and did something to the window. Then the person sat down at the desk, but their head down and took a nap. At the very end, they woke up.;a person opens a window then sits a desk and lays their head down\",c011 12.40 18.80;c089 0.00 10.60;c151 8.50 18.70;c059 28.30 31.00,30.25\r\nL5842,JVLO,Living room,4,5,Yes,A person is grasping a pillow while eating food placed on a shelf.,food;pillow;shelf,\"A person puts a pillow on a shelf, picks it up and eats some food.\",c076 5.30 13.80;c081 8.10 17.80;c156 18.20 26.30;c149 24.70 31.80;c152 11.30 19.40;c152 17.90 24.60;c063 17.70 25.50,31.50\r\nH3LUW,Z68L,Bedroom,6,6,Yes,The person is sitting on a chair at a desk eating a sandwich. They are smiling at the camera as they grab a glass to drink from.,chair;cup;desk;food;glass;sandwich;table,A person is sitting down on a chair in front of a desk. The person proceeds to pick up a glass of water and drink out of it.,c106 21.90 36.00;c059 3.30 36.00;c011 3.70 36.00;c151 2.10 12.30;c152 20.30 36.00;c107 21.20 36.00;c067 3.90 36.00;c009 31.30 36.00;c062 11.10 17.20;c065 4.00 25.00;c110 21.00 35.00;c061 0.10 7.30;c063 0.50 8.00;c156 3.90 10.70;c109 25.80 35.70,35.42\r\nWJ6JM,T7C3,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person in their home study is holding a broom. They start taking the broom to the doorway, where they see a mirror and look at themselves momentarily.\",broom;doorway;mirror,\"A man in an office holding a broom stands up, grabs a mirror, and looks at himself.\",c093 4.20 29.00;c154 0.00 4.30;c152 13.20 29.00;c094 13.20 29.00,28.29\r\nDPJH4,28B0,Pantry,6,6,Yes,A person sneezes as they reach into a cabinet.  The person takes a can of food from a shelf.,cabinet;doorway;food;shelf,\"A person enters the kitchen, opens a cabinet, then sneezes. They remove food from the shelf and leave.\",c112 7.20 14.40;c113 5.20 12.70;c063 14.80 21.90;c153 11.50 17.70;c097 0.00 4.50;c061 14.70 25.30,26.62\r\nNCRCW,OUKK,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,A person walks into the dining room and sits on a pillow on the floor.  The person pulls a blanket out of a bag and snuggles the blanket.,bag;blanket;floor;pillow,person walked in his doorway and sat down hugging an object.,c072 6.20 22.80;c151 2.00 8.80;c079 5.30 10.20;c154 19.40 25.50;c078 6.70 23.10;c125 3.70 23.30;c077 19.30 24.90,25.12\r\nMPBM1,R1OT,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person walks into their entryway and closes the door. They take of their shoes and play a game on their phone while eating a sandwich.,door;food;phone;sandwich;shoes,\"A person enters doorway, puts on shoes, closes the door, then sits down to watch video on phone and eat a sandwich.\",c015 8.70 31.00;c065 11.20 26.60;c156 9.90 31.00;c151 7.80 16.30;c097 0.00 4.40,29.96\r\nOLSMC,WG9D,Recreation room / Man cave,7,7,Yes,A person is sneezing into the mirror and then leaving  a bag on the floor in the recreation room / man cave.,bag;clothes;floor;mirror,A person looking in a mirror takes off a satchel.,c096 0.00 4.80;c020 1.30 9.00;c153 0.00 4.10;c022 2.80 9.00;c024 6.20 9.00,8.46\r\n5MDL5,XXN8,Closet / Walk-in closet / Spear closet,4,7,No,\"A person puts a broom down inside their closet. They then feel their sinuses act up and try to control themselves, but eventually sneeze all over a pile of blankets.\",broom;cabinet,A person puts a broom into a closet and then sneezes.;A person places a broom into a pantry and begins to sneeze.,c099 0.00 5.80;c153 4.60 18.20;c098 0.00 6.50,31.79\r\nERC0T,KQI6,Living room,6,6,No,One person sits drinking by a window snuggling a pillow while another person fixes a light.,drink;light;pillow;sofa/couch,A person is sitting in a chair and holding a pillow while drinking something. A second person is standing on a chair while fixing a light.,c103 12.80 26.50;c076 0.00 33.00;c154 11.40 33.00;c123 0.00 15.70;c123 22.80 28.20,31.54\r\nONT61,P6LJ,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person puts a towel onto the shelf. The person looks at a picture hanging on the wall for a moment, sneezes, then leaves.\",blanket;closet;hair;mirror;picture;shelf;towel;wall,\"a person folds a blanket and puts it in a closet then looks in the mirror;The person folds the blanket, puts it inside the closet, and looks at the picture on the wall.\",c034 5.00 18.00;c081 5.30 18.00;c088 16.90 23.10;c075 17.70 27.70;c144 21.20 26.40;c033 0.00 21.40;c037 2.00 20.90,31.71\r\n47DR8,PKND,Bedroom,6,7,Yes,Person is walking and laughing while vacuuming next to the bed.,bed;floor;vacuum,A person is waving their arms while vacuuming the walls and floor.,c137 0.00 32.00;c127 0.00 4.00;c127 9.90 27.00;c152 0.00 32.00,31.38\r\n3RN5M,UTMU,Garage,4,5,Yes,\"A person walks into the garage, playing with their phone. The person puts their phone away, picks up a pillow, and sneezes, which causes them to drop the pillow.\",doorway;floor;phone;pillow,\"A person looks at their phone, picks a pillow off the floor and drops it back onto the floor.\",c080 11.40 17.60;c015 0.00 14.00;c079 11.30 16.90;c126 12.50 17.60;c097 0.00 3.80,19.33\r\n08F85,KFGP,Kitchen,7,7,Yes,\"A person walks to a shelf in a kitchen, opening the cabinet. The person is standing there, searching for medicine.\",cabinet;medicine;shelf,A person opens a cabinet and takes some medicine down from a shelf.,c128 21.30 29.90;c113 1.00 15.10;c081 25.30 31.00;c113 11.10 24.70;c081 7.60 17.20;c129 14.40 23.20,29.83\r\nWLE0F,L4ZP,Hallway,6,6,Yes,\"A person is taking a bag outside to their hallway. While doing this, they begin running around because they forgot to get their book from the other room.\",bag;doorway,A person walks into the hallway holding a bag. The person looks inside the bag and acts confused. The person walks from room to room.,c020 2.30 27.00;c021 3.30 9.20;c023 2.30 27.00;c150 15.50 24.90;c097 2.00 7.10,26.29\r\nOVYAC,Z68L,Recreation room / Man cave,7,6,Yes,A person is throwing clothes all over the room then begins to grasp a bag and picks up all the clothes.,bag;clothes;sofa,A person takes some clothes out of a bag and throws them on to a sofa. They then pick them up.;A person throw a bunch of clothes on the floor. Then they go around picking up the clothes and putting them in a bag.,c020 5.80 27.60;c021 7.10 13.80;c000 0.70 7.20;c001 3.00 8.20;c002 9.90 23.60;c003 1.30 8.50;c154 0.90 6.30,28.67\r\n7L0TN,28B0,Hallway,4,7,Yes,A person is standing in the hallway grasping shoes and a book while laughing quietly.,book;door;floor;shoe,\"A person opens a door and  walks in holding and reading a book. The person reaches down of camera and takes a pair of shoes, then walks out of view still reading the book.\",c053 12.20 32.30;c026 0.00 31.50;c032 0.70 31.40;c056 10.80 18.10;c008 0.00 6.10;c097 0.00 9.40;c127 10.30 19.70,31.54\r\nIFFPZ,WQ8Z,Bedroom,4,7,Yes,\"A person awakens in a bedroom.  They toss off a blanket while sitting up, then grab some clothes lying next to them and get out of bed.\",bed;blanket;dog,\"Person lying in bed is woken up by dog, gets up, and then leaves the room with the dog following.\",c134 0.00 17.80;c072 0.00 5.30;c146 2.00 8.20;c074 12.20 21.40;c133 2.40 24.90,24.17\r\nJ6WE2,6RE8,Bedroom,7,4,Yes,A person takes a pillow from a box and throws it down the hall.,bag;bed;doorway;pillow,A person takes a pillow out of a bag.  The person then puts the bag back on the chair.  The person then throws the pillow on a bed.;A person walks up to a table and opens a bag. They remove a pillow from the bag and throw it on the bed.,c076 27.40 33.40;c080 28.90 34.90;c021 2.20 12.70;c097 0.00 3.50;c022 22.90 30.50;c020 6.50 30.00;c079 8.00 15.60,36.29\r\nDIB6D,YA10,Bathroom,7,7,Yes,\"A person in the bathroom is smiling in the mirror while using their phone to take a picture of themselves. Afterwards, they start pouring a glass of water down the sink.\",cup;glass;mirror;phone;picture,A person is taking pictures in front of a mirror with their cell phone then drinks a glass of water and pours the rest of it out.,c087 0.00 18.20;c016 0.00 20.00;c106 18.90 24.40;c152 9.20 18.10;c094 0.00 18.10;c096 0.00 31.00;c110 15.90 21.50;c109 27.50 31.00;c015 0.00 19.70;c017 14.20 20.00;c094 28.30 31.00;c096 28.30 31.00,30.29\r\nXO3AI,ZAWX,Bedroom,4,6,Yes,\"A person is standing in front of a window, watching something outside. The person open the window, yells out, then closes the window. The person puts on their shoes and leaves.\",shoes;something;window,\"This person is in a room with a younger person, opens up window, then walks away as she is talking and smiling.;A perso is looking out the window. They open the window and grasp at it while laughing, then they put on their shoes.\",,34.50\r\nUCOGP,KFGP,Hallway,5,7,Yes,A person is holding a bag of groceries. A person is sitting in a chair in front of the wardrobe.,bag;chair,A person walks down a hallway snuggling a bag.  They sit down in a chair.,c020 1.10 32.00;c059 13.30 32.00;c151 12.60 20.10,30.96\r\n5GITI,XXN8,Dining room,6,6,Yes,A person is putting a towel down next to a glass.  Then a person is taking food off a table and eating it.,cup;food;glass;table;towel,\"A person is washing a glass vase. They put the towel down and begin to eat, then turn the vase over and continue eating.\",c009 1.10 7.20;c061 7.90 18.10;c109 17.00 24.20;c156 2.50 33.00;c033 0.00 6.10;c063 3.80 14.30;c034 0.90 6.40,32.08\r\nYWO77,0RNU,Garage,6,7,Yes,\"A person walks into the garage, grasping their camera. The person gently throws the camera on top of the television as they pass by.\",camera;doorway;phone;television,A person is walking through the doorway holding a camera then placing it on top of a television.,c017 9.90 14.60;c097 0.30 6.10;c015 3.80 16.60,16.38\r\nKVYBY,3H6W,Pantry,7,7,Yes,\"A person eating a cookie and standing at the door of their pantry, sneezes.  They knock off a broom as their body jerks from the force of their sneeze, and bump into a phone resting on a shelf, knocking it further back on the shelf slightly.\",broom;door;food,\"A person is eating some food. A person then begins to sneeze.;A person walks into a room, picks up food and starts eating.  That same person knocks a broom over and hits a cabinet door before leaving.\",c156 1.60 13.30;c153 9.80 16.30;c063 0.90 6.60;c061 1.70 16.70,19.17\r\n8B9CX,HR43,Bedroom,4,5,No,Person A is in a bedroom drinking a cup of coffee.  Person A realizes that person A is late and sets the coffee on the desk and runs out the door.,bed;coffee;cup;laptop,\"A person is sitting on their bed and drinking coffee while watching something on a laptop, they then get up and leave the room;A person sitting on the bed drinks a cup of coffee. They get up and run out of the room.\",c106 0.00 15.10;c107 0.00 18.60;c135 0.00 17.10,20.17\r\nBALXZ,0KZ7,Stairs,5,7,Yes,\"A person is running with their phone, then the person starts eating food and walks out of the door.\",door;food;phone;sandwich,\"A person runs down some stairs holding a phone and eating a sandwich, they then open the door and leave.;A person is walking down the stairs look at their phone. They take a bite out of their snack. Then they open the door and walk out.\",c006 8.40 15.30;c061 1.60 11.00;c156 1.60 11.10;c141 6.30 12.00;c008 7.00 13.00;c015 0.00 14.00;c150 0.00 4.00;c065 2.00 10.00;c097 6.40 14.70;c063 0.50 6.70,16.88\r\n2DPW0,PKND,Dining room,6,6,Yes,A person walks in and sets down a bag of groceries and starts drinking water until they sneeze spraying water everywhere.,cup/glass/bottle;dish;glass cup;groceries;table;water,The person walks to the table and drinks water out of a large cup or jug.,c106 6.20 17.20;c118 0.00 6.40;c130 0.00 8.00;c119 0.00 8.40;c107 4.30 21.10;c009 1.80 7.60;c120 3.60 9.10,31.29\r\nICPRQ,QB52,Basement (A room below the ground floor),4,3,Yes,A person watches television while working on homework at a desk.,chair;computer;desk;keyboard;laptop;table,person types on a keyboard and wipes face.;A person sits at a desk working on a laptop.,c014 0.00 24.20;c052 0.00 32.00;c059 0.00 32.00,30.58\r\nFJM2Y,ZAWX,Living room,5,7,No,A person is leaving groceries on a shelf and grasping a book.,bag;book;cabinet;groceries;shelf,A person holding a bag walks through a room and then places the bag into a cabinet. They take a book from the cabinet and close it.;a person walks around holding a bag then opens a cabinet and puts bag in cabinet then smiles and grabs a book,c020 10.50 16.70;c081 10.90 24.20;c030 20.20 29.80;c152 8.50 13.90;c020 0.00 7.30;c130 0.00 16.30;c026 24.90 31.00;c032 26.00 31.00;c113 7.60 14.20;c022 10.60 16.90;c115 15.90 22.80,30.29\r\nETT15,BYF9,Home Office / Study (A room in a house used for work),4,6,Yes,A person who is seated closes a book. They stand up and start tidying a desk.,book;chair;computer;desk;table;towel,\"The person is sitting at the desk with a computer. The person picks up a book, and then begins cleaning the desk and computer.;a person sits in a chair at a desk and grabs a book then cleans up with a towel\",c011 0.00 7.50;c012 8.40 26.00;c026 3.00 14.70;c154 5.70 12.40;c059 0.00 9.30;c025 3.80 8.80,25.50\r\n2C2AI,YMXV,Basement (A room below the ground floor),5,7,Yes,\"A person is in their basement playing on their laptop. They start sneezing while looking at the light. Afterwards, they look at their clothes that they are wearing through a mirror.\",clothes;laptop;mirror;shirt,\"A person is playing with a laptop. A person then begins to sneeze. A person then puts on their shirt, while looking in the mirror.\",c051 0.00 8.10;c096 14.60 32.00;c153 6.50 13.50;c154 4.60 10.80;c148 9.70 32.00,30.67\r\nSHMU7,KQI6,Kitchen,6,6,Yes,\"A person stands at the table, opening a bag of groceries. The person removes an item from the bag at eats it.\",bag;chair;food;groceries;table,\"A person places a bag of groceries on a table, sits down in a chair, and eats the food that was in the grocery bag.;A person puts some bags onto a table and sits down. They take some food out of the bag and eat it\",c022 1.00 7.00;c011 4.00 32.00;c130 1.00 32.00;c156 16.00 32.00;c063 7.00 15.50;c021 7.00 17.60;c009 1.20 6.00;c020 0.00 4.90;c151 4.70 10.20;c059 6.40 32.00;c152 4.30 19.00,30.92\r\n0ACZ8,YMXV,Bedroom,7,6,Yes,A person is smiling in the mirror and another person is tidying the bed.,bed;mirror;towel,A person looks at a mirror on the wall while smiling then another person begins tidying up a bed.,c094 0.00 10.20;c152 0.00 4.00;c096 0.00 22.90;c033 22.20 32.00,31.12\r\nHOLED,XXN8,Bathroom,4,7,Yes,\"A person is seen sitting down at a table. They begin pouring themselves some water, and leaning back in their chair as they take a sip\",chair;cup/glass/bottle;table;water,\"A person takes a bottle, pours out some water into a cup, and drinks from it.\",c011 0.00 32.00;c059 0.00 32.00;c106 9.30 28.20;c109 8.40 13.00;c108 1.90 8.00;c107 0.00 12.40;c152 1.70 13.30;c110 0.00 3.50,30.79\r\n4MFE0,R1OT,Home Office / Study (A room in a house used for work),6,5,Yes,\"A person runs into their study, eating a bag of chips. The person grasps a book from the desk, then leaves.\",bag;book;desk;doorway;food,\"A person is eating food and they look at a book on the table, they take the book and walk out of the door into another room.;A person enters a room through a doorway eating food from a bag they are holding. They flip through a book on a desk, before taking it with them as they leave the room.\",c020 0.40 8.60;c027 6.50 19.40;c032 11.70 20.90;c156 0.40 6.10;c026 13.80 24.00;c030 19.80 27.20;c061 0.00 24.40;c117 13.00 29.00;c097 20.00 29.00,27.96\r\nD8BTU,EE32,Pantry,5,7,Yes,A person walks into their pantry with a chair and the broom. They put the broom in the corner and sit on the chair and start cleaning the shelf.,broom;cabinet;chair;corner;door;shelf,\"A person walks into the room, wheeling in a chair and holding a broom. The person then sits on the chair, in front of a cabinet.  The person opens the cabinet door, sets the broom in the corner, and starts rearranging items on the shelf. The person then stands up and leaves the room.;A person walks in the kitchen and grabs a broom and sits down in a chair and puts the broom up and opens the cabinet door, then gets up out of the chair,leaves the cabinet door open and walks out of the kitchen\",c098 4.20 10.30;c099 6.20 10.90;c082 10.90 22.20;c059 6.80 22.70;c154 18.50 23.00;c113 5.40 12.50;c151 3.60 9.40;c114 10.50 20.70,23.33\r\nNSV0N,QB52,Recreation room / Man cave,4,5,Yes,A person runs into the recreation room and sits down at a desk. The person pulls out their camera and starts taking pictures.,chair;phone,\"A person sits down in a chair next to a bed and begins to use their cell phone.  They do not move from this spot, and stare at the phone while fidgeting in the chair.;A person sits in a chair and uses their phone.\",c151 0.90 8.10;c015 2.00 32.00;c016 2.00 32.00;c059 2.10 32.00,30.62\r\n622EX,2RTW,Living room,7,7,Yes,A person is cooking as the person watches television. A person is taking a pillow from the sofa over to the bed.,bed;food;pillow;pot;television,\"This person is mixing something while standing in the living room, watching television, sets down the pot, picks up a pillow and tosses it.\",c076 22.80 31.00;c079 21.20 27.60;c080 25.40 31.00;c147 0.00 26.10;c132 0.00 20.60,30.25\r\n2YO6G,HJJ4,Garage,5,7,Yes,A person is opening the refrigerator and taking groceries out.,cup;door;groceries;refrigerator,\"A person opens a refrigerator and removes to glass bottles of wine. They close the door, and leave.\",c142 6.30 11.00;c006 6.30 11.00;c143 0.00 5.00;c110 2.60 12.20,11.54\r\n9JPV3,KFGP,Hallway,4,6,Yes,A person closes the closet door and undresses while having a conversation on the phone.,clothes;coat;door;phone,\"A person is talking on the phone while taking off their jacket,;A man closes a closet door then takes off his coat and hangs it up, while talking on the phone.\",c019 0.00 30.00;c006 0.00 3.60;c155 1.90 30.00;c001 15.90 21.90;c000 16.20 22.30,29.00\r\nELFEW,OUKK,Laundry room,4,7,Yes,A person is sitting looking at a phone.  Then a person is putting a vaccuum in the doorway.,doorway;phone,\"A man is texting or typing on his cellphone while standing in front of an open door, and then proceeds to walk towards the open door\",c015 0.00 29.60,29.83\r\n41CZS,PO5L,Hallway,5,6,Yes,A person undresses by taking off a jacket. Then the person smiles while grasping a blanket up off the floor. Next the open a door.,blanket;clothes;door;floor,A person walks into a hallway and takes off their jacket they pick a blanket up and carry it into another room then they come back out and leave the hallway.,c126 8.10 13.50;c070 11.50 29.00;c008 14.30 23.40;c155 2.30 15.70;c001 12.50 23.50;c073 12.50 19.60;c097 18.60 23.70;c000 8.80 13.30;c003 7.10 13.90;c002 11.00 19.60,28.25\r\nMNXXD,UTMU,Kitchen,5,5,Yes,A person is holding their laptop while they tidy up a chair and drink a glass of water.,book;chair;cup;glass;laptop;water,\"A person takes a laptop off the shelf, moves a chair, gets a glass out of a cupboard and takes a drink.\",c047 2.50 34.00;c106 22.00 28.10;c026 2.80 33.10,33.25\r\nI6H4R,4I2W,Hallway,5,6,Yes,\"One person walks in, throws medicine in a bag, takes the bag, turns out the light and leaves.\",bag;door;light;wallet,The person puts their money in a wallet and place the wallet in a bag. They turn off the light and leave.,c105 15.90 20.30;c021 8.70 14.50;c097 0.00 4.30;c141 20.30 25.00;c006 18.60 26.00;c023 6.40 11.60;c020 6.80 24.60,30.50\r\n7G6F0,XARO,Bedroom,4,7,Yes,A person is seen holding clothes which they put in their closet. They then take a sip of coffee and open a nearby cabinet.,cabinet;clothes;coffee;cup;dish,This person is putting things away in the cabinet and drinking something from a cup.,c106 20.40 27.20;c001 0.00 22.30;c112 17.00 22.60;c110 19.80 25.00;c118 20.40 32.00,30.67\r\nTIY7F,ZSRZ,Kitchen,2,4,No,A person is drinking coffee in a kitchen. The person is also cooking a meal at the stove.,cup;food;glass;knob;pot;stove;water,\"Person drinks water from a glass put the glass down then began to stir something cooking on the stove.;Person picks glass from counter, drinks from it, put back on counter. Then turns on stove, stir food in pot with spoon.\",c147 0.00 14.00;c106 0.00 6.10,13.33\r\nPKRP5,6RE8,Recreation room / Man cave,7,7,Yes,A person is sitting at a desk and then tidying a cabinet in a recreation room / man cave.,chair;desk;item;something;table,A person walks in and sits down in a chair. The person starts shaking something and seems to tidy something on a desk.;There is a person sitting in a chair at a desk.  There is something in their hand that they are shaking.,c009 12.50 19.50;c011 0.00 32.00;c012 4.10 32.00;c151 2.90 10.70;c059 3.00 11.00,31.46\r\nHORZO,WG9D,Bathroom,7,7,Yes,\"A person walks into the bathroom, grasping a glass. The person fills the glass with water in the sink.\",cup;dish;door;glass;sink;water,\"a person opens the door, holding a cup and puts the cup under the faucet\",c108 4.80 10.00;c008 0.00 5.50;c097 0.00 6.20;c118 1.50 10.00,8.88\r\nOEHJD,BCLJ,Hallway,5,7,Yes,A person walks down the hallway using a vacuum. Another person looks at a picture and smiles.,doorway;floor;picture;vacuum,\"A young person standing in the hall looking at a picture, and another young person vacuuming the hall.\",c137 0.00 31.00;c152 0.00 31.00;c088 0.00 31.00;c127 0.00 31.00;c138 0.00 31.00;c097 0.00 16.90,30.29\r\nXP6CJ,9PLL,Kitchen,4,4,Yes,A person is sitting down and stands up. They reach for their laptop out of the cabinet and then start watching videos on it.,floor;keyboard;laptop;shoes,\"A person is sitting an putting on their shoes. A person then begins to play with a laptop.;A person sits on the floor. They stand up, walk over to a laptop and start typing on it.\",c051 12.00 41.00;c151 0.00 8.00;c125 1.20 13.40;c154 7.20 14.40;c052 12.80 41.00,39.92\r\nRIE30,PO5L,Living room,7,7,Yes,Person is grasping a picture. Person starts laughing. Person then starts drinking coffee.,cup;glass;picture;table,\"A person walks into a room holding a picture They start laughing, grab a cup off the table take the drink, place to cut back on the table and walked out of the room.;A person walking in the room holding a tablet, acting like they are talking to someone, drinking a beverage from a glass.\",c106 9.70 16.70;c110 7.70 14.40;c085 3.00 10.00;c109 10.00 17.00;c149 3.00 10.00;c084 1.00 17.00,18.88\r\nTZV01,UD06,Hallway,6,7,Yes,\"A person standing in their hallway uses a chair to reach and item on a shelf.  Grasping it, they carefully step down off the chair.\",book;box;chair;closet;doorway;shelf,\"A person walks down the hallway and reaches up for something. Then the same person leaves and comes back with a chair to stand on in order to reach higher.;A person walks through a hallway and reaches up to a shelf in a room. They bring over a chair, stand on it, reach a box at the same shelf and come down.\",c060 17.10 26.00;c154 17.10 26.00;c040 22.00 32.00;c026 22.40 28.30;c112 26.90 32.00;c115 23.70 28.50;c114 3.50 9.90;c097 3.80 9.10,31.42\r\n7SLK1,YMXV,Other,6,4,Yes,A person is holding a phone while another person is undressing and looking at their wardrobe.,clothes;door;phone,A person is standing in a doorway using a phone and another person is exercising in a doorway.;Person is standing while looking at their phone. Another person rubs their own body and slightly closes a door.,c015 0.00 13.60;c006 13.00 21.90;c016 0.00 13.80;c141 13.60 20.20,30.21\r\n297S4,P6LJ,Bedroom,6,7,Yes,\"A person stands on a chair in the closet, trying to reach something on the top shelf. The person gets down, picks up their coffee and leaves, closing the door behind them.\",chair;closet/cabinet;coffee;cup;door;shelf;something,\"A person goes to closet and stand on one leg on chair and takes something off shelf. The person then closes closet, takes a drink of coffee then leaves and closes door behind them.\",c060 6.20 26.50;c006 27.50 34.70;c008 46.30 52.70;c106 38.10 46.20;c107 38.60 47.50;c109 38.10 47.30;c141 37.00 48.90;c097 43.30 50.00;c112 28.50 34.70,54.50\r\nQNXGG,54JK,Recreation room / Man cave,6,6,Yes,A person is undressing near a shelf. Then they begin pouring medicine into a cup.,clothes;cup;glass;medicine;shelf,\"A person is walking past a shelf and undresing, they then take a medicine bottle open it and pour it into a glass of water.\",c107 10.90 22.00;c108 12.30 22.00;c128 9.20 16.00;c155 1.80 11.40;c001 0.10 9.10,20.96\r\n7FOBX,UTMU,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is taking off shoes, undressing and then using a vacuum in a Closet / Walk-in closet / Spear closet.\",clothes;floor;handle;power button;shoe;vacuum,\"Person standing taking off shoes, then jacket. Then person grabs vacuum handle and turns of appliance with foot. Person then begins to tidy up room with appliance. Then place handle back on appliance and turns it off with foot.\",c054 0.30 6.70;c057 9.10 18.80;c137 18.40 33.10;c057 21.00 35.20;c127 9.90 36.00;c003 6.70 12.20;c001 6.70 12.20,37.71\r\nG9JMG,JVLO,Living room,4,5,No,A person is kneeling on a pillow and watching television as the person is washing a shelf in the closet.,blanket;chair;pillow;shelf;television,\"A person takes a pillow, sits down in a chair in front of a television, and puts the pillow in their lap. After a few seconds, the person puts the pillow on a shelf, and stands up.;A man grabs a pillow from a shelf. He then walks to a chair sits and watches TV.  He stands and puts the pillow down and walks away.\",c076 0.10 24.90;c132 3.50 24.00;c154 19.50 24.70;c059 3.50 23.80;c077 20.10 25.20;c079 0.00 4.80;c151 2.80 8.30;c070 0.00 25.00,29.83\r\nFT3D7,WG9D,Dining room,6,7,Yes,A person is smiling while eating a sandwich. The person takes a box from the table and leaves the room.,book;box;chair;food;plate;sandwich;table,\"A person is sitting at a table eating a sandwich then they grab a box and leave the room.;The person is sitting at a table eating a sandwich, then stand up and carry a book away with them.\",c040 5.20 10.90;c154 5.90 10.80;c011 0.00 3.10;c065 0.00 8.80;c156 0.00 8.70;c026 4.40 12.00;c152 0.50 10.20;c149 4.30 9.60,11.33\r\nNAF1C,D0RU,Bedroom,5,7,Yes,A person is sitting on the floor with a pillow and laptop on their lap.  The person closes their laptop and gets up to look at a picture sitting on the bedside table.  The person laughs at the picture and leaves the room.,closet/cabinet;floor;laptop;picture;pillow,The person is sitting playing on their laptop. The person then gets up and looks at a picture while laughing. The person then opens a closet door.,c085 26.60 34.40;c051 0.60 22.00;c154 22.30 30.00;c125 1.30 24.60;c149 27.70 33.70;c088 26.60 31.70;c052 0.20 21.80;c113 31.40 36.70,37.04\r\nKP53W,9Y7F,Kitchen,5,6,Yes,\"A person is in the kitchen putting a broom away, and a person is closing a laptop.\",broom;floor;laptop,A person picks a broom up from the ground and throws it. Then they close a laptop that's on the counter.,c046 16.80 24.60;c101 10.20 15.40;c126 28.80 32.00,30.75\r\nU4FR1,EXQX,Entryway (A hall that is generally located at the entrance of a house),6,4,Yes,A person opens the door and turns on the light. They then begin tidying the closet with their broom.,broom;door;floor,\"The person opens the door, picks up a short broom and starts quickly sweeping something from the floor into the corner.\",c008 0.00 3.80;c102 5.10 46.00;c098 5.10 46.00;c127 5.10 46.00;c141 0.00 3.80,44.58\r\nLGS4C,YMXV,Entryway (A hall that is generally located at the entrance of a house),7,4,Yes,\"A person is running into the room holding their phone. Then, laughing, the person looks into the mirror.\",a comb;door;mirror;phone,The person is running towards a room and once there combs the hair while looking at the mirror. The person then slightly closes the door and looks at the cell phone.;A person runs in through their doorway and looks at a mirror. Then that person closes the door as the walk away with their phone in their hand.,c015 0.00 32.00;c016 16.00 32.00;c096 5.90 19.70;c150 0.00 11.30;c006 15.80 24.50;c149 27.60 32.00,30.96\r\nZ9W47,ID9V,Closet / Walk-in closet / Spear closet,5,7,Yes,A person throws some items in a box the smiles before turning off the light.,box;closet;door;light,A person opens a door. They throw something into a box and then look at the camera. They turn the light off;A person opens a closet door with a light on.  The person throws some objects in the box and puts it down.,c040 5.10 14.80;c045 10.90 15.70;c152 14.40 24.00;c008 0.00 5.90;c113 0.00 5.90;c042 0.00 16.10,23.04\r\nV34GF,0KZ7,Dining room,7,7,Yes,\"A person stands in the doorway, drinking a glass of water. The person puts the empty glass down on a desk.\",counter;cup;dish;doorway;glass;table;water,\"A person is standing drinking a glass of water. They put the glass on a counter and walk out of the room.;A person is standing in a doorway, drinking from a glass. They put it down on the counter and walk away.\",c107 0.00 19.20;c097 16.90 22.00;c106 0.00 19.50;c109 12.90 20.40;c009 12.80 20.50;c118 0.00 19.00,20.83\r\nAFUBV,CCI9,Stairs,6,7,Yes,A person is standing on their stairs drinking coffee and holding a pillow. They start smiling and start going up the stairs.,coffee;cup;dish;glass;pillow;stairs,\"A person is standing on the stairs, holding a pillow and drinking a coffee. The person then walks up the stairs and stops at the very top.\",c106 0.00 16.60;c107 0.00 33.00;c076 0.00 33.00;c118 0.00 33.00,32.00\r\nBV5CC,T7C3,Pantry,7,6,Yes,A person in their pantry is opening up their medicine cabinet. They take a sandwich from the cabinet and start eating it.,cabinet;door;food;medicine;sandwich;table,A person opens up a cupboard and takes medicine out and places it on the counter and then closes the door. They reach into an open cabinet and grab some food from a plate and start to eat.,c069 17.70 23.40;c113 0.60 5.60;c067 20.00 31.00;c112 14.30 22.00;c156 19.40 31.00;c006 12.90 21.30;c009 12.20 19.90;c063 6.90 12.40;c062 12.90 17.70,30.08\r\nLM4GS,T7C3,Dining room,5,7,Yes,A person awakens in a chair with a book open in front of them. The person stands up and walks to the window.,book;chair;desk;table;window,a person wakes up from a table and does homework.  The person then turns to a window and tries to open it.;There is a person sitting at a table doing homework with a book.  That person then gets up and looks out a window.,c059 0.00 29.40;c026 11.60 27.10;c032 7.90 26.00;c146 23.80 32.40;c154 30.30 47.00;c011 0.00 31.10;c090 31.20 47.00;c014 13.40 29.20,46.08\r\nZP5TG,5LWB,Living room,7,7,Yes,A person is eating food on the bed and another person is laughing.,chair;couch;dish;food;futon;table,\"2 people are sitting in the living room talking, 1 of them is eating food.;The people are sitting and talking to each other. One person is eating.\",c061 0.00 2.90;c156 0.00 5.80;c149 3.30 10.70;c059 0.00 38.10;c118 0.00 43.00;c123 0.00 43.00;c152 0.00 38.80,42.46\r\nTW46G,XXN8,Bathroom,7,6,Yes,A person is opening the desk and grasping the medicine.,cabinet;drawer;floor;medicine,\"A person is sitting on the floor, opens a drawer,takes some medication out of it, and swallows it.;A person is squatting down retrieving medicine from a cabinet drawer and proceeds to take it.\",c129 6.50 12.90;c112 3.50 8.50;c113 0.00 5.00;c125 0.00 31.00;c128 4.50 16.70,30.08\r\nJ3UGZ,0KZ7,Stairs,5,7,Yes,\"A laughing person is sitting on the stairs playing on their phone. They grab a book, and a broom and leave.\",book;phone,A person is lying on the stairs while playing on their phone before getting up with books.,c026 15.00 22.00;c016 0.00 18.20;c149 0.00 16.00;c151 15.90 20.90;c154 21.10 24.00;c152 21.10 24.00;c015 21.10 24.00,23.00\r\nXNBUT,WG9D,Closet / Walk-in closet / Spear closet,4,7,Yes,\"A person holds their phone in front of them and takes a picture with the camera. The person leaves the room, closing the door behind them.\",door;phone;picture;wall,\"A person holding a cell phone taking selfies.The person turn and goes to the door and goes out the door and closes it.;Someone is taking a picture of themselves, with their phone, from a very shiny wall. Then they walk out the door.\",c006 4.50 10.00;c015 0.00 10.00;c087 0.00 7.30;c141 4.50 10.00;c016 0.00 7.20,9.12\r\n04ZYD,9Y7F,Other,6,7,Yes,A person is laughing at a picture while another person is grasping a doorknob.,door;picture,\"One person is looking at a picture on a wall, while another person is fixing a door.;One person smiles while looking at a picture on a wall while another fixes a door and laughs.\",,30.42\r\n892RS,4OHY,Garage,5,6,Yes,A person is seen working in the garage on cleaning. He opens the cabinet and puts dishes inside and then begins to leave.,box;cabinet;dish;door;food;mirror;shelf;table;towel,\"A person is looking in the mirror, and tidying up with a towel. A person then picks up a dish and puts it in a cabinet.;A person is tidying up boxes, a mirror, sandwich, and a chair with a towel. The person puts down the towel and picks up the sandwich on a plate and puts it inside a cabinet then walks through a doorway out of the room.\",c118 16.90 26.20;c112 22.20 28.00;c034 15.50 20.80;c097 27.20 32.00;c119 21.70 26.60;c113 20.80 25.40;c033 0.00 19.40;c038 0.00 19.40;c096 0.00 8.60;c036 14.60 20.00;c006 22.30 27.90;c081 20.80 27.10;c154 0.00 32.00;c012 0.00 22.20;c120 28.80 32.00;c062 20.20 31.70;c008 21.10 26.80;c061 18.80 25.40,30.67\r\n21A0W,3531,Hallway,6,4,Yes,\"A person walks into the hallway eating a sandwich. Person stops at sideboard, picks up and takes medicine, washing it down with a glass of water.\",cup;dish;food;glass;medicine;sandwich;shelf;water,\"A person is walking through a room eating something. They open a drawer and pull an object out, then pick up a glass.\",c107 27.50 32.00;c110 26.90 32.00;c067 0.00 32.00;c128 13.20 29.80;c081 25.50 32.00;c119 25.80 32.00;c156 0.00 32.00;c065 0.00 32.00;c061 0.00 32.00,31.38\r\nTCGAY,3531,Other,5,7,Yes,A person is in their basement watching something on their phone. They put a glass onto a chair while washing their face with a cloth.,chair;cup;glass;phone;shelf;towel,\"A person playing with their phone reaches for a cup and a towel. They use the towel to wipe their face and set their phone on a chair.;A person is playing on a phone, they then stop and grab a glass off of a chair and start tidying themselves with a towel.\",c016 0.00 17.70;c107 18.30 27.60;c035 19.90 25.00;c038 21.30 32.00;c033 20.30 32.00;c081 17.30 23.40;c109 24.70 31.90;c017 13.70 21.80;c110 17.50 29.00;c034 20.60 32.00;c015 0.00 19.90,31.42\r\nW0A0Z,RPBD,Home Office / Study (A room in a house used for work),4,6,Yes,\"The person usually left the laptop on the dining room table, and was holding a cup of coffee and ready to do some homework.\",book;chair;cup;desk;homework;laptop;paper;table,A person is sitting at a desk working on a laptop and flipping through a book. The person holds a cup.;A person is sitting at a desk working on homework on their laptop.,c145 0.00 27.50;c107 0.80 13.00;c011 0.00 28.10;c027 9.00 16.00;c032 13.00 22.00;c109 26.00 30.00;c059 0.00 30.00;c014 0.00 30.00,29.25\r\nMT9NE,YA10,Bedroom,7,7,No,\"A person is in a bedroom opening a bag of snack food and eating it, they then lay their head down on a pillow.\",bag;bed;chips;food;pillow,\"A person walks across the bedroom, eating from a bag of chips. The person then lies on the bed, adjusts a pillow, and continues to eat from the bag.;A person is consuming food from a bag.  The person then lies down on a bed.  The person continues to eat in bed.\",c061 0.00 9.50;c020 20.70 31.00;c077 14.10 19.70;c156 2.10 11.30;c134 9.30 31.00;c021 0.00 5.80,30.04\r\n4FD1T,EIO2,Laundry room,6,6,Yes,\"One person is tidying up a sink in the laundry room when another person runs in with a box, smiles, then leaves.\",box;doorway;hands;shelf;sink,A person is washing something in laundry room and cleans sink. Another person walks in with a box and then walks out,c040 24.80 32.00;c152 25.70 31.40;c139 0.00 2.80;c082 2.00 15.60;c097 25.10 30.00,30.96\r\n2Z0LU,0RNU,Garage,6,7,Yes,\"A person lying on a blanket in the garage sits up, grasps a pair of shoes next to a vacuum and begins to put them on.\",blanket;clothes;floor;shoe,A person lying on a blanket sits up and puts on shoes.,c055 8.80 33.00;c148 8.70 33.00;c125 9.00 33.00;c146 0.00 8.90;c124 0.00 10.80;c056 8.70 14.30,31.79\r\nCXXVI,1TZV,Stairs,4,6,Yes,\"A person is standing on a book, while holding a broom and playing with a toy.\",broom;stuffed toy,A person is standing on a stairway holding a broom and playing with a small stuffed toy.,c098 0.00 27.00,25.88\r\nJ5WOX,KFGP,Bedroom,3,4,Yes,A person is lying on a bed with their head on a pillow while eating some food and looking at the television.,bed;food;head;pillow;television,Person laying on a bed with head resting on pillow watching television while eating food.,c134 0.00 31.00;c156 4.20 31.00;c132 0.10 31.00,30.17\r\nYBP5F,5LWB,Kitchen,7,7,Yes,A person is grasping a phone while another person is pouring medicine.,food;hair;phone,\"A person is standing in the kitchen. Another person walks into the kitchen, takes a phone of the fridge, and speaks on it while pacing.\",c015 8.80 28.00;c018 7.40 15.50;c019 13.00 28.00;c144 4.10 9.20;c147 2.50 28.00;c063 6.20 11.70,27.17\r\n6AVDE,5LWB,Stairs,6,7,Yes,A person is watching a bird out the window.  The person was eating some food while making a list of groceries to buy.,book;food;outside;stairs;table,a person stands outside near stairs and eats;A person watching something and eating some food from a table.,c061 12.60 17.90;c156 0.00 5.80;c027 25.30 34.00,33.08\r\n9CCDY,L4ZP,Bedroom,5,5,Yes,One person runs in and laughs at the television while drinking from a glass.,glass;television,Person walks into the room holding a glass of water. They proceed to watch TV while drinking the water and laughing at the show.,c131 6.80 16.40;c132 0.00 23.00;c149 5.20 17.60;c106 6.60 11.10,22.04\r\nXJLHC,XKTB,Home Office / Study (A room in a house used for work),5,5,Yes,\"A person sits at a desk working on a laptop.  They get up, close the lid to the laptop and walk toward the door.\",chair;laptop;table,\"the person is sitting and working on their laptop. The person gets up, closes the laptop, and walks away.\",c011 0.00 26.70;c046 25.50 31.10;c052 0.00 26.70;c154 22.10 29.20;c059 0.00 33.00;c051 0.00 31.70,31.96\r\n6R7QY,KQI6,Kitchen,5,5,Yes,One person is on a chair fixing a light while another is putting dishes in a cabinet.,chair;dish;doorway;food;light;pot;something;table,Someone stands on a chair to replace a lightbulb. A lady walks in with a pot and places it on a table.;a person stands on a chair and fixes something and another person brings food to a table,c118 21.90 31.00;c119 26.40 31.00;c060 0.00 4.30;c103 2.10 21.40;c009 26.40 31.00;c097 22.70 30.00,30.42\r\nR0OGE,9PLL,Kitchen,5,5,Yes,A person is tidying the desk and the drinking from a glass in the kitchen.,counter;cup;dish;glass;pans;pots;sink;table;water,\"S person clears off a sink counter and drinks from a glass.;A person is cleaning up a counter, then takes a drink of water.\",c106 32.30 44.00;c120 0.00 6.50;c012 30.20 37.60;c119 0.00 8.20,42.54\r\nGQR08,YMXV,Recreation room / Man cave,4,5,Yes,\"A person awakens holding a bag, and a towel. The person then leaves the room.\",backpack;bag;bed;door;towel,\"The person sits up in bed. The person gets a backpack and towel. The person puts on the backpack. The person gets out of bed. The person puts the towel on shoulder. The person goes through door.;A person is lying in a bed, they sit up, grab a bag and a towel, then leave.\",c020 0.00 7.60;c033 3.80 13.30;c023 0.20 10.20;c035 4.90 13.80;c154 5.10 15.50;c097 17.40 32.00,31.29\r\nE27NK,D0RU,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is sitting at a desk in an office at home. The person is doing their homework. The person stands, turns off the light, and leaves the room.\",book;chair;desk;door;homework;laptop;light;mouse;paper;pen;table,\"A person sits in a chair and looks at a laptop. The person opens a book up and clicks on a mouse. The person turns the light off and opens the door and leaves;A person is doing their homework using their laptop, then turns the light off and leaves.\",c145 6.10 24.20;c011 0.00 23.70;c154 18.00 24.90;c052 0.00 24.90;c006 25.00 33.00;c105 22.40 28.30;c014 0.00 24.70;c059 0.00 24.20;c027 5.30 26.40;c097 25.50 31.20;c032 7.00 26.30;c051 0.00 10.60;c025 5.10 9.80;c141 24.30 32.80;c008 24.20 29.50,31.67\r\n7YUJR,BYF9,Living room,6,7,Yes,One person tidies up with a broom and then a vacuum while another person holding a sandwich just smiles.,broom;floor;food;sandwich;vacuum,a woman is sweeping the floor and tidying up with a brook while a man is eating food and holding a phone;There is a person standing up eating a sandwich. There is another person sweep the floor with a broom and then vacuuming.,c102 0.00 15.40;c067 0.00 30.00;c156 0.00 30.00;c127 0.00 30.00,28.62\r\nW0RSP,OUKK,Bedroom,6,7,Yes,A person awakening in their bedroom then they take a picture with their camera. A person removes their blanket and they sneeze.,bed;blanket;camera;phone;picture,\"Person lying in bed. Picks up camera, takes picture then gets out of bed.;a person lays in bed and then takes a picture\",c015 2.70 11.80;c146 1.20 6.90;c133 0.00 6.80;c087 3.40 11.50;c070 0.00 15.00;c134 0.00 15.00;c072 0.00 15.00;c016 2.50 12.20,13.88\r\nHG8G1,T7C3,Dining room,7,7,Yes,A person is lying in the dining room floor eating a sandwich that is placed in a dish.  Then the person starts smiling randomly.,floor;food;sandwich,A person lying on a floor .The person is eating a sandwich in a doorway between two rooms eating this sandwich and smiling .,c124 0.00 38.00;c065 0.00 38.00;c067 0.00 38.00;c156 0.00 38.00;c152 26.00 38.00,36.83\r\nBWLA8,ID9V,Bedroom,6,7,Yes,A person is in the bedroom fixing the desk. Then they sit down and start opening the book.,book;chair;closet/cabinet;desk,\"A person fixes a desk drawer. The person sets down in a chair, picks up a book. The person looks through the book.\",c030 0.00 15.00;c032 15.90 30.40;c151 11.50 17.60;c112 6.00 13.00;c113 6.00 13.00;c059 11.00 18.10,30.04\r\nMFOVZ,ZAWX,Living room,4,3,Yes,\"A person is eating a sandwich, then cleaning window with a towel and finally running in place in an entryway.\",doorway;food;sandwich;towel;window,A persno is seen eating a sandwich then taking a towel and cleaning a window before walking out the doorway.;A person is eating a sandwich. A person then takes a towel and starts cleaning. A person then walks through a doorway.,c091 7.80 21.20;c065 0.00 4.90;c097 25.80 32.00;c062 0.50 6.00;c156 0.00 4.60,30.67\r\n30TL5,4YWP,Bathroom,6,6,Yes,A person is sitting in a bathroom reading a book by the sink. They then get up and start fixing a leaking pipe while lying on the ground.,book;chair;closet/cabinet;sink;toilet,A person is sitting on a toilet reading a book.  The person fixes the sink.,c025 0.20 8.70;c032 7.70 15.40;c154 9.20 26.30;c028 13.80 19.10;c059 0.00 17.40;c113 16.50 24.10;c026 0.00 18.90,33.50\r\nE5O0F,4YWP,Bathroom,6,6,Yes,\"A person closes their laptop, and places it on the shelf. The person washes their hands, dries them with a towel, then throws the towel aside.\",cabinet;hand;laptop;shelf;sink;toilet;towel,\"A person is sitting on the toilet working on their laptop. The person stands up, closes their laptop, places the laptop on top of the cabinet, and washes their hands. The person tosses the towel on the floor after drying their hands.;A person works on a laptop, then stands, closes the laptop and places it on a shelf before washing the person's hands in a sink and drying them with a towel that is thrown at the end.\",c047 10.60 21.30;c052 14.50 30.90;c081 2.60 19.50;c036 17.50 30.10;c046 11.70 16.70;c051 0.00 15.70;c139 17.50 33.90;c034 35.70 40.50;c154 10.40 16.50;c035 31.10 36.10;c033 32.50 40.10,39.79\r\nDPDER,4YWP,Bathroom,6,6,Yes,\"A person sitting on a toilet looks at a laptop on their lap. They scroll through a page, stop at an image, and begin to laugh. After a time, they eventually get up, flush the toilet, and walk out, toting the laptop. They flip the light off as they pass the switch.\",clothes;counter;door;laptop;light;table;toilet,\"A person sits on the toilet working on a laptop.  They get up, close the laptop and set it down on the table. They get dressed, grab the laptop and turn out the light before they leave.;A person is sitting on the toilet using a laptop. The person closes the laptop, puts it on the counter, then gets up and walks out of the bathroom.\",c148 17.90 24.10;c105 24.20 35.00;c154 12.70 21.20;c046 15.00 21.00;c052 0.00 17.80;c009 14.80 21.00;c047 0.00 21.70;c141 26.10 30.80;c008 26.30 35.00;c097 29.20 34.60,34.25\r\nE1U37,WG9D,Pantry,3,6,Yes,The person stands on a chair in the pantry and then puts a box on the ground.,box;chair;closet/cabinet;door;floor;food,A person taking something out of a cupboard and throwing it on the floor,c063 5.30 11.00;c064 7.30 11.00;c043 5.30 10.60;c045 6.60 11.00;c060 0.00 11.00;c113 0.00 3.10;c008 0.20 4.80;c126 5.10 10.00,10.25\r\nFSKKQ,2RTW,Living room,6,6,Yes,\"A person awakens in their recreation room and checks their phone. The person jumps up, fixes their clothes in the mirror, and quickly leaves.\",doorknob;doorway;hair;mirror;phone,\"A person is sleeping on the couch they wake up and grab their phone they jump off the couch and go to the mirror and fix their hair and walk out the door.;There is a person sleeping on a couch.. That person wakes up, checks their phone and then stands up.  They then talk to a mirror, look at themselves and walk out the door, closing it behind them.\",c015 16.20 31.10;c144 23.60 33.80;c154 21.70 27.40;c096 18.70 25.50;c146 6.80 19.10;c141 30.30 35.40;c018 16.00 21.80;c097 30.70 36.00,35.25\r\nA42FN,4OHY,Pantry,7,7,Yes,\"A person is seen eating a chip and looking at a picture. They pick up a broom and begin putting it away in a cabinet, and then close it.\",broom;cabinet;dish;food,\"PERSON IS KIND OF PACING, EATING SOMETHING, THE PERSON PUTS THE FOOD ON TABLE AND PICKS UP A BROOM AND PUTS THE BROOM AWAY\",c061 0.00 20.00;c063 0.50 5.70;c113 20.70 25.10;c099 0.20 13.60;c062 2.20 9.00;c112 8.40 22.70;c156 5.90 17.20;c118 0.00 20.30;c114 21.10 32.00;c119 15.10 20.20,30.96\r\nROEB7,3H6W,Recreation room / Man cave,5,5,Yes,A person runs into a recreation room holding a bag and a phone. They person then leaves.,bag;phone,A person holding a bag and a phone runs to the end of a room and then walks back out.,c015 0.00 16.50;c020 0.00 17.70;c150 4.00 10.90,17.12\r\nN7IH0,UTMU,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is sitting on the floor in a walk-in closet talking on the phone. The person also opens a bag and takes out medicine and ingests it.,bag;floor;medicine;phone,A person is sitting on the floor talking on the phone before taking some medicine out of a bag and taking the medicine.,c128 16.20 23.60;c129 19.90 29.10;c021 10.60 17.70;c019 0.00 36.00;c125 0.00 36.00;c023 7.00 14.20;c024 14.10 19.30;c023 7.50 36.00;c024 7.90 19.00;c015 0.00 36.00;c020 7.90 19.30,35.29\r\n391VK,ID9V,Closet / Walk-in closet / Spear closet,4,7,Yes,\"A person is fixing a shelf, then putting clothes in a wardrobe while laughing in a recreation room / man cave.\",closet/cabinet;clothes;shelf,A person is fixing a shelf and then moving clothes around.,c000 14.00 27.90;c003 15.00 19.60;c003 17.40 22.50;c082 0.00 15.00;c003 14.40 27.00;c112 24.20 31.00;c113 11.00 17.70;c001 15.00 20.80;c001 17.70 23.70,30.08\r\nHEIW9,4I2W,Kitchen,4,7,Yes,A person enters their kitchen holding a book. They put the book on top of the refrigerator and sit on a stool at a counter.,book;counter;doorway;refrigerator;stool,\"A person walks into a kitchen and puts a book on the refrigerator, then sits on a stool at the counter.\",c026 0.00 8.70;c028 3.90 10.20;c151 9.60 17.40;c097 0.00 4.90,28.67\r\nUHDEF,WG9D,Bedroom,5,6,Yes,\"A person is tidying their bed, while holding a broom.\",bed;blanket;broom;clothes;pillow;towel,\"Person bending down picking up clothes from bed and throwing it on the other side. Person is holding a broom under his arm.;A person has a broom under their arm, picks up a pillow, blanket and some clothes.\",c098 0.00 16.00;c000 4.00 16.00;c001 5.60 16.00;c002 4.10 16.00;c003 4.30 16.00;c004 4.60 16.00;c076 0.00 3.20;c033 2.10 7.40;c079 0.00 2.80;c037 1.80 7.60;c035 1.30 6.80;c077 0.00 3.90;c034 2.90 7.80,15.08\r\nUVRMR,9PLL,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is standing in the entryway in their home tidying up. They pick up a glass off the table and walk towards the kitchen.,cloth;counter;cup;dish;floor;items;medicine;shelf;table;towel;trash,The person is walking in a hallway picking up various items from the floor and putting them on the counter.;A person is walking through a hallway  then picks up trash that is on the floor and picka up a cup from a table and sets it on a counter.,c110 14.60 23.00;c009 28.90 35.00;c128 9.60 14.60;c120 0.50 6.70;c127 0.50 6.70;c127 4.20 10.40;c127 8.40 14.60;c081 2.40 7.90;c081 6.90 12.40;c081 10.10 15.30;c033 5.40 11.60;c109 0.50 8.00;c119 15.30 31.70;c118 15.30 31.60,33.54\r\nRYHHP,D0RU,Home Office / Study (A room in a house used for work),6,6,Yes,A person is snuggling with a mirror while another person is fixing a desk.,closet/cabinet;desk;drawer;floor;hair;mirror;phone/camera;table,\"A person is sitting on a table looking at themselves in a mirror and fixing their hair. They get up from the table and walk away when they're done.;2 people in a room, one is looking in a mirror, the other is digging through a desk drawer.\",c096 0.00 40.20;c011 0.00 39.20;c154 34.60 40.20;c144 0.00 16.20;c010 0.00 39.20;c016 0.00 40.50;c015 0.00 43.00;c114 0.00 43.00;c125 0.00 43.00,42.17\r\nY1BRA,WG9D,Hallway,5,7,Yes,A person is standing in the doorway drinking a cup of coffee and smiling.,cup;doorway;glass,\"A person is standing in a doorway, drinking coffee from a glass.\",c106 0.00 5.00;c107 0.00 5.00,4.04\r\n8EKYA,8718,Bedroom,6,7,Yes,A person is holding the doorknob to the dining room door.  The person is leaving the light on while carrying a pillow through the room.,door;pillow,A person holding a pillow walks into a room and sits down.,c076 1.70 21.40;c097 2.00 9.00;c008 0.00 7.00;c006 5.00 11.20,26.38\r\nF5C5M,KQI6,Living room,6,6,Yes,\"A person sits on the sofa, working on homework. The person takes out a camera and looks through some pictures.\",camera;chair;homework;paper;phone;picture;sofa,A woman thumbing through a notebook and then checking her phone or camera;A person sits on a sofa while doing their homework and takes a picture of it.,c015 22.90 32.00;c088 22.90 32.00;c145 0.00 21.70;c123 0.00 32.00;c087 22.90 32.00;c018 18.30 23.70;c016 20.50 32.00;c059 0.00 32.00;c115 0.00 32.00,30.54\r\nE5WJJ,18IT,Living room,5,3,Yes,\"A person is in the hallway tidying up. The fix a picture on the wall, and put on their shoes before running out the door.\",broom;chair;dish;door;picture;shelf;shoe;sofa;wall,a person is cleaning a room they straighten things then they get a duster and dust then they sit on a chair and put their shoes on and then they run out;A person is running toward the sofa then coming back from another room with a broom and putting a picture on the wall before putting on some shoes.,c150 37.50 45.00;c059 27.90 41.80;c055 28.60 41.50;c086 19.40 28.90;c119 15.70 21.00;c118 14.20 21.40;c082 8.30 16.00;c120 14.80 20.60;c097 0.00 2.70;c081 21.80 27.60,43.62\r\n9RLQK,HR43,Bathroom,5,7,Yes,a person is standing in front of a medicine cabinet while working at cleaning a dish in the sink.,dish;sink,A person does dishes in the sink.,c121 1.50 32.00,30.67\r\n37Y0B,HJJ4,Garage,5,7,Yes,\"One person walks into the garage pouring something into a glass, then opens and closes an old desk.\",box;cup;water,a person pours water into a cup and then opens up a box.;A person holds a small cup in their hand while pouring liquid into the cup from a container being held in the other hand,c108 0.00 9.00,15.12\r\nHAA4O,G6WD,Bathroom,7,7,Yes,\"A person walks into the bathroom, closes the door, grasps a camera from the counter, and takes a picture out the window.\",camera;door;phone;picture;table;window,A person walks into the bathroom and closes the door.  They pick up a camera from a table and take a picture of a view outside the window.  They place the camera back on the counter.,c015 13.60 40.40;c018 12.40 18.00;c006 4.60 13.20;c017 32.80 41.00;c087 16.00 30.20;c009 36.20 41.00;c097 2.60 9.20;c092 15.60 37.80,39.96\r\n1GQ73,C7O9,Hallway,6,6,Yes,A person in the laundry room is throwing a pillow at another person who is running around while holding some dishes.,pillow,2 people are in a hallway having a pillow fight one person has a green wig on,c080 0.00 4.60;c154 18.00 22.90;c149 1.20 32.00;c152 0.00 32.00,30.75\r\nHMTRB,0RNU,Garage,6,6,Yes,A person tidying a box in a garage is holding a phone.,box;phone,\"Person in the garage looking over a box turning it over, opening it and dusting it with hand while holding a phone.\",c041 8.80 15.10;c015 0.00 29.00;c040 1.50 11.70;c039 9.10 15.50,27.54\r\nW9U1O,WG9D,Bathroom,5,7,Yes,\"Person standing at the bathroom sink takes some medicine, smiles and then walks out the door.\",medicine;sink,\"A person is standing in the bathroom in front of a mirror.  That same person opens up some medicine, puts it in their mouth and drinks some water from a water bottle.  They then walk out the door.\",,17.46\r\nRVZ7X,38MV,Bathroom,5,6,Yes,A person is in the bathroom undressing by the cabinet. Another person is watching by the sink.,cabinet;clothes;mirror,Person A is standing in a corner while Person B walks in and begins to undress  and hang their coat and smile.;A person looks at themself in a mirror and starts undressing. They put their clothes in a cabinet in the bathroom.,c112 9.10 19.60;c152 17.70 33.00;c113 8.10 18.50;c155 2.90 23.70;c001 3.20 23.20;c000 7.00 13.00,34.75\r\n6EZH6,ID9V,Bedroom,5,6,Yes,A person is laughing and running while carrying a book and homework.,book;homework;paper,A person holds two books of homework and runs in place.,c115 0.00 21.00;c026 0.00 21.00;c149 1.20 19.40;c150 1.10 20.50,19.96\r\nF87XT,ZSRZ,Bedroom,6,7,Yes,\"A person is wrapped in a blanket, and they are standing in front of the mirror while smiling.\",blanket;mirror,A person is standing in the mirror twirling and smiling.,c070 0.00 10.00;c072 0.00 10.00;c096 0.00 10.00;c152 0.00 10.00;c094 0.00 10.00,9.33\r\nP9RNA,PO5L,Bathroom,6,7,Yes,\"A person is in a bathroom folding and fixing a towel, they then start laughing as they drop it on the floor by the doorway.\",floor;towel,A person is folding a towel.,c126 12.50 17.60;c033 1.40 16.50;c035 0.90 5.40;c036 12.50 17.40;c034 12.60 18.00;c037 1.50 16.50,23.33\r\nSTY6W,WG9D,Bedroom,6,7,Yes,A person is standing in their bedroom. The person drinks from a glass.  The person looks at a box on the dresser and smiles.,box;cup;glass;table;water,A person is standing near a table. The person drinks from a cup and grabs a box off the table and looks at it.;A person is drinking a glass of water and holding a box while smiling.,c040 3.90 11.00;c043 3.00 8.00;c106 0.00 6.20;c107 0.00 11.00;c152 4.80 11.00,9.79\r\n9TL3J,9PLL,Kitchen,4,7,Yes,\"A person is washing dishes while looking out the window. Then they drink a glass of water, and turn off the kitchen light.\",cup;dish;glass;light;shelf;sink;water;window,\"A person is washing dishes, then picks up a cup and drinks for it, and then turns off the light.;A person washes dishes and looks out a window before grabbing a cup full of water and drinking it, then deposits the cup into a sink before turning off the light.\",c119 16.70 23.90;c121 0.00 5.70;c105 31.90 36.90;c106 22.20 30.30;c121 3.70 13.00;c107 21.90 34.10;c081 29.00 34.60;c109 29.00 35.00,35.58\r\n68JOO,YMXV,Bedroom,4,1,Yes,\"a person snuggles with a pillow while smiling in a garage, then sits in a chair.\",chair;pillow;table,\"A person sitting in a chair snuggles a pillow. They stand up and snuggle it some more, and then sit back down in the chair, still snuggling away.\",c059 8.10 16.10;c076 0.00 3.70;c078 11.80 19.60;c151 8.10 16.10;c154 0.00 3.80;c011 10.40 32.00,30.58\r\nBKEYX,UTMU,Laundry room,5,7,Yes,\"The sink in the laundry room was pouring cold water onto the muddy pair of shoes, while the person drank a beer.\",cup/glass/bottle;shelf;shoe;sink;water,\"A person puts shoes onto a shelf, turns on the water faucet and then takes a drink from a bottle.\",c054 5.20 11.50;c081 4.50 13.60;c106 23.30 32.10,42.08\r\nXDVAY,XXN8,Bedroom,5,6,Yes,A person is awakening in bed.  Then a person is drinking from a glass.,bed;cup;glass,A person is laying on a bed and stretching. Th person then takes a mug and drinks from it.,c134 0.00 7.00;c135 3.00 33.00;c106 12.40 30.10;c107 11.00 33.00;c146 0.00 7.90;c133 0.00 33.00;c110 10.40 18.00,31.79\r\nEAGYP,YA10,Garage,5,6,Yes,A person is playing quiddith with a broom then smiling as they take a bite of their sandwich.,broom;food;plate;sandwich,\"A person in a garage runs around riding a broom and tossing something in the air, stops briefly to take a bite of of a sandwich on a shelf;A person is running around riding a broom in the garage. Then the person takes a bite of some food.\",c065 14.80 30.10;c068 24.20 31.20;c069 13.90 19.40;c156 15.40 29.60;c150 0.00 32.00;c063 14.50 19.40,31.38\r\nFMXZS,T7C3,Kitchen,7,7,Yes,\"A person  stands in front of an open refrigerator unloading a bag of groceries.  They then take a beverage out, close the refrigerator and begin drinking.\",bag;bottle;groceries;refrigerator,\"A person holding a bag of groceries in a kitchen, opens a refrigerator door and places the groceries inside, then takes a bottle of beer and drinks it.\",c143 0.00 7.90;c021 7.10 17.60;c130 1.70 29.10;c142 26.20 32.00;c020 7.30 19.20;c143 0.00 3.30;c106 34.50 44.00;c022 26.00 32.40,43.29\r\nSGUK6,C7O9,Stairs,6,6,Yes,\"A person is using a vacuum on the stairs, while eating a sandwich. The person drops the sandwich and laughs.\",carpet;food;sandwhich;sandwich;vacuum,A person is vacuuming the stairs while eating a sandwhich.,c137 0.00 28.00;c065 0.00 17.20;c067 0.00 17.20;c156 0.00 17.20;c061 0.00 16.30;c152 12.20 28.00;c149 12.20 28.00,26.71\r\nLP1F3,XXN8,Home Office / Study (A room in a house used for work),3,7,Yes,\"A person sitting at their desk begins sneezing uncontrollably. Person blows their nose with a towel and reaches for the doorknob, to leave.\",door;floor;towel,A person is sneezing. The person sneezes once in their arm. The person sneezes three times in a towel. The person reaches for a doorknob and exits.,c033 1.10 19.60;c034 11.70 20.60;c035 0.90 8.40;c141 17.30 26.20;c153 0.00 6.40;c154 18.30 26.20;c097 21.40 26.80;c125 0.00 23.70;c006 21.70 27.20;c008 17.90 25.40,32.62\r\nDIDRB,JVLO,Home Office / Study (A room in a house used for work),5,6,Yes,A person is pouring a drink in a glass and another person is tidying the table.,cloth;cup;desk;glass;laptop;table;window,\"A person walks to a window, picks up a glass and drinks from it. Meanwhile, another person is tidying up a desk with a laptop on it using a cloth.;Person #1 walked up to a window and drank from a cup. Person #2 was cleaning a table with a cloth.\",c106 0.00 14.00;c107 0.00 14.40;c013 10.50 31.00,30.25\r\nYH7K4,4OHY,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is sitting in the entryway, talking on their phone while drinking a cup of coffee. The person takes a chip from a bag and eats it.\",bag;coffee;cup;floor;food;phone,The person is sitting on the steps. The person looks at the phone and puts it down. The person picks up a cup and drinks. The person puts down the cup and takes some food out of a bag and eats it.,c015 0.00 14.00;c021 13.20 20.10;c106 5.00 16.40;c156 16.90 30.00;c107 3.10 30.00;c125 0.00 30.00,28.92\r\nTDD74,3H6W,Pantry,7,6,Yes,A person is grasping a pile of clothes in the pantry and then begins to dress more warmly in the doorway.,clothes,\"A person retrieves a pile of clothing from their kitchen, and finish dressing with some of the clothes in it.\",c000 1.20 10.20;c148 12.30 20.50;c002 2.20 7.60,30.25\r\nCK6OL,WG9D,Kitchen,5,7,No,A person is running with a bag of groceries then opens a cabinet and takes out a vacuum.,cabinet;clothes;towel,A person is putting clothes in a cabinet.;The person was standing up getting clothes and put  the clothes in the cabinet.,c001 0.00 4.20;c034 0.00 4.20,5.62\r\n7LYA9,D0RU,Bedroom,4,6,Yes,A person is laughing and smiling as they throw a pillow on the floor then begins to watch the camera on a desk.,floor;pillow,A person picks up a pillow from a bed and throws it on the floor.  They walk over to the pillow and kick it.,c076 8.10 14.50;c079 7.70 13.10;c080 10.30 15.00;c126 10.30 15.00;c149 9.70 22.20;c152 9.30 24.60,38.88\r\n4YL07,R1OT,Living room,5,7,Yes,A person is working on hanging up a picture above a desk. The stop working end begin pouring a glass of water to drink.,cup;desk;glass;picture;table;water,The man is hanging a picture on the wall and then he pours himself some water. He then continues to drink the water.,c107 15.00 31.00;c108 12.10 25.40;c106 24.10 31.00;c088 7.00 13.00;c083 0.00 3.20;c110 9.70 14.20;c009 20.40 25.30,29.96\r\nG13QI,UTMU,Bedroom,7,7,Yes,A person grasping a pillow walks over to a bed and begins to tidy the blanket on the bed.,bed;blanket;pillow,A person is tidying up a bed and blanket while holding a pillow.,c075 0.00 38.00;c076 0.00 38.00,37.12\r\nTBU3U,5LWB,Laundry room,5,6,Yes,A person walks into the laundry room and takes a pair of shoes from the chair. The person laughs.,chair;doorway;shoe,A person walks through a room and into a laundry room.  They pick up a pair of shoes that are sitting on a chair.,c056 7.50 14.60;c097 0.00 5.00,31.08\r\nPM2GT,KFGP,Dining room,6,7,Yes,One person puts a book in a bag on a table and closes it.,bag;book;table,A person puts a book on the table and then into a backpack. The person closes the bag and walks away.,c026 3.80 9.40;c009 5.00 9.90;c021 9.10 14.30;c020 4.20 9.60;c022 23.10 28.60,29.62\r\nKAHM2,EIO2,Kitchen,6,6,Yes,A person was running through the doorway with dishes that needed to be washed immediately after dinner.,dish;doorway;hand,a person does dishes in the kitchen. a person washes their hands in the sink.,c097 0.40 6.30;c118 1.80 13.30;c139 9.30 18.70;c121 1.90 35.00,34.08\r\nV58VE,D0RU,Bedroom,7,7,Yes,A person is seen snuggling up with their laptop on their bed. They are smiling while holding their laptop.,bed;clothes;laptop;pillow,A person is sitting on a bed with a pillow and laptop. The person is watching something on the laptop.,c047 10.80 33.00;c135 0.00 33.00;c152 16.60 23.20;c076 0.00 33.00;c052 0.00 33.00,31.54\r\nGADLP,TI4K,Kitchen,6,7,Yes,\"A person is standing near a cabinet, smiling for the picture they are taking of themselves using a camera.\",camera wall;phone;picture;table;woman,A woman looking at a phone and smiling.;a person is standing against a wall holding a camera and taking pictures of themself while they are smiling at the camera.,c015 0.00 32.00;c152 23.50 32.00;c087 9.80 32.00;c016 0.00 32.00,31.38\r\nVKKIQ,H8N1,Kitchen,4,6,Yes,A person opens a refrigerator and looks inside. The person takes out a bottle of iced coffee and closes the door.,cup;door;object;refrigerator,\"A person walks to a refridgerator, opens it, and takes something out of it, then closes the refrigerator and walks away.\",c142 11.20 17.00;c143 0.20 8.40;c107 5.60 11.00;c006 11.40 17.30;c008 0.30 7.40;c110 3.60 11.00,20.58\r\n53HOB,0KZ7,Garage,5,5,Yes,\"There is a person working to fix a broken chair, as another person runs in smiling, holding her homework that has a big, red A+.\",book;chair;homework;paper,A person is fixing a char. Another person walks in holding their homework up in the air.,c115 10.10 30.00;c026 10.10 30.00,28.75\r\nFVITB,T7C3,Kitchen,6,6,Yes,\"A person is smiling as they cook something on the stove, then walks over to the refrigerator to get a glass of water.\",cup;food;glass;pot;refrigerator;stove,Person in the kitchen cooking on the stove and then goes to the refrigerator to get a glass before closing it and returning to the stove.,c107 24.40 34.00;c142 22.00 28.80;c147 0.00 34.00;c143 19.80 25.30;c063 6.20 11.20,32.75\r\nA1QXA,Q4IF,Bathroom,7,7,Yes,\"A person is in the bathroom washing the window and smiling.  The person takes a broom from the corner, turns off the light and leaves the room.\",broom;corner;light;window,\"person throws objects from bucket out of window, grabs object and walks out of room\",,29.71\r\n3EHAJ,EIO2,Bathroom,6,7,Yes,A person in the bathroom is smiling at the clothes he choose and laughing at the homework that needs to be done.,clothes;desk;homework;mirror;paper;wardrobe,A person is sitting at a desk doing their homework. A person then takes a load of clothes and throws them in the wardrobe.,c000 0.00 14.00;c001 0.00 13.70;c145 8.50 31.00;c152 0.00 7.00;c149 0.00 7.00;c096 20.10 27.40,30.42\r\nQXI52,Z68L,Recreation room / Man cave,6,7,Yes,\"A person is sitting, watching the tv, trying to do their homework but keeps sneezing. They give up and leave exiting the doorway.\",book;chair;door;homework;paper;sofa/couch;television,\"A person is doing homework while their television is on. They sneeze a few times, then go to the door and leave.;A person is sitting on a chair while doing homework and watching television, then they start to sneeze, get up, and walk out of the room through a door.\",c097 22.30 31.90;c154 21.60 27.70;c006 26.20 32.00;c132 0.00 4.70;c115 0.00 25.90;c153 2.10 22.80;c008 24.30 30.50;c059 0.00 25.60;c123 0.00 25.90;c032 0.00 25.90,31.42\r\n22A2G,D0RU,Kitchen,6,7,Yes,A person is sitting on a chair reading a book. They begin sneezing as they close the book.,book;chair,\"A PERSON IS SITTING DOWN IN FRONT OF A PANTRY FULL OF THINGS WHILE FLIPPING THROUGH PAGES IN A BOOK, HE PLACES HIS HAND OVER HIS FACE\",c026 11.50 37.00;c059 13.00 37.00;c153 31.70 37.00;c025 30.80 35.90;c032 8.60 35.90,36.42\r\n2SKOA,HR43,Laundry room,6,6,Yes,A person is holding a towel and a pillow.  The person is standing by the washer and puts them inside to start washing them.,blanket;pillow;towel,A person puts a pillow and blanket in a washing machine.;A person is holding a pillow and blanket and shoving then in the washing machine,c034 8.00 20.40;c077 8.00 20.40;c071 5.60 12.70;c070 0.00 14.00;c076 0.00 14.00,25.17\r\nKCLMY,ZAWX,Laundry room,6,6,Yes,\"Person is walking into laundry room, another person is grasping clothes by the window.\",doorway;towel;window,A person is looking in a window,c092 10.00 16.90;c097 0.00 3.80;c035 10.60 16.60;c033 12.60 17.20,30.38\r\nDDUXF,D0RU,Kitchen,7,7,Yes,A person is standing by a laptop and watching someone else hold a glass.,food;laptop;plate;table,\"A person in a orange shirt is eating and nteracting with a laptop;a person looking down a laptop on a table while standing up and eating snacks, picks up the laptop and continues watching something on the laptop\",c047 17.80 32.20;c051 0.00 32.80;c156 0.00 32.90;c014 0.00 21.40;c050 18.20 26.00;c052 24.40 31.60,37.62\r\nR1RDT,8IOD,Bedroom,6,7,Yes,\"A person awakens in bed. They slowly sit up and check their phone that was sitting on a nearby table. Holding the phone, they get up, leave, and close the door behind them.\",bed;blanket;door;phone;spectacles;table,\"Someone wakes up from a bed and moves a blanket off of them then picks up a phone from a table and walks out of the room shutting the door behind them.;person wear spectacles, remove blanket and got up from bed. took the phone from the table and leave the bedroom closing the door.\",c134 5.00 13.00;c016 12.20 20.20;c006 20.70 26.10;c072 0.00 9.80;c146 0.00 7.30;c015 7.80 26.30;c154 10.10 19.30;c097 19.10 26.10,30.50\r\nYMM1Z,0KZ7,Kitchen,6,7,Yes,A person is cooking at the stove. The person runs to the refrigerator before leaving.,doorway;food;refrigerator;stove,A person is cooking food on the stove. A person then opens the fridge and leave.,c142 16.20 21.20;c147 0.00 16.40;c150 14.40 22.20;c143 14.90 20.30;c097 17.20 23.50,22.62\r\nY436W,6RE8,Bedroom,7,6,Yes,A person throws a book at the nearest window then closes the cabinet.,book;television;window,\"A person is looking in the closet. The person then gets a book, and throws the book in the closet. The person then begins looking out the window. The person then begins tidying up the curtains by the window.\",,32.29\r\nFL6DF,4I61,Living room,6,6,Yes,A person is opening a laptop and throwing a pillow.,blanket;couch;laptop;pillow;sofa,\"A person sits on a sofa and opens a laptop. A person picks up a blanket, and throws a pillow on the floor.;A person sitting down on a couch, opening a laptop,  grabs a blanket and a pillow and throws it.\",c047 0.40 19.70;c080 10.30 15.90;c154 15.30 20.10;c123 0.90 19.60;c073 6.00 13.80;c048 3.20 8.10;c151 0.00 4.90;c071 8.90 13.90;c075 6.00 13.60;c070 6.10 13.50;c049 14.60 19.70,23.12\r\nMRXEW,L4ZP,Hallway,1,5,Yes,\"A person closes their bedroom door, wiggles the doorknob, then grasps a box and sits down.\",box;doorway,A person is standing in a doorway. A person picks up a box then puts the box down.;A person is standing in a hallway they open a door and look in then they pick up a box and a piece of paper then they put it back down.,c040 13.40 27.20;c042 19.50 27.20;c043 10.80 18.00,35.42\r\n7N4TW,P6LJ,Bedroom,7,1,No,\"A person was in their bedroom undressing, then left the room to take a shower.  Upon returning, the person put some bedtime clothes on.    After tidying up a shelf in the closet for about 90 seconds, the person went to bed, getting under the covers, which included a blanket.  After five minutes, the person decided to watch television.\",bed;blanket;clothes;shelf;shoe;television,A person undresses out of a white long sleeve shirt only to put on another long sleeve brown shirt. They take their shoes off and climb into bed.;A person sits down on their bed and gets undressed. Then they get a new sweater and get dressed  before taking off their shoes and laying in bed under a blanket.,c134 78.10 83.80;c057 37.20 45.10;c135 10.60 88.00;c155 4.50 27.70;c002 36.30 50.70;c081 60.70 66.90;c072 76.80 83.80;c151 8.00 14.60;c148 38.00 61.60;c056 68.50 73.80;c001 58.50 68.60;c154 58.50 65.10;c000 20.20 32.50,87.00\r\nWZO6V,9PLL,Bathroom,3,5,Yes,\"A person enters a bathroom, closing the door behind them.  The person grabs a blanket from the shelf, gets wrapped up in it, grasping at it and shivering as though they are freezing cold.\",blanket;door,A person open door and enters room  then takes a blanket off a sink and wraps themself in it.,c008 0.00 7.00;c072 10.00 32.00;c073 3.20 8.60;c070 3.90 12.20;c097 0.80 7.50;c006 11.00 17.10;c071 8.50 15.40,31.21\r\n3PXGQ,I2IV,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is standing in the entryway, dressing themselves with winter clothes before leaving. The person looks at a picture on the wall and moves a broom out of the way of the door.\",broom;clothes;door;floor;picture;table;wall,\"A person puts on a sweater, checks the TV and picks up a broom.\",c100 23.70 29.50;c148 4.80 19.80;c000 0.20 11.00;c127 22.20 30.00;c012 0.00 9.80;c002 0.00 12.40;c001 3.00 20.50,29.33\r\nB3HCE,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person opens the door and walks in the entryway holding a bag of groceries.  The person closes the door and grabs a book off the desk before leaving to the kitchen.,bag;book;door;groceries,\"A person opens a door and walks in. They put a bag on a chair, pick up and open a book before leaving.\",c027 17.50 23.30;c022 4.40 12.10;c130 4.50 12.30;c006 10.40 17.70;c008 1.30 8.40;c097 4.40 10.20;c026 16.50 31.00;c030 15.90 20.60;c032 17.70 31.00;c141 2.20 20.30;c020 1.30 12.90,30.21\r\nAA104,BYF9,Home Office / Study (A room in a house used for work),5,6,Yes,A person is pouring liquid into a glass and sitting on a blanket in the home office / study.,bottle;chair;cup;glass;water,\"A person sitting on a blanket in a chair opens a bottle of water, pours some water in a glass and closes bottle.;While sitting in an office chair, a person pours water from a bottle into a glass.\",c108 3.80 15.70;c107 0.00 24.00,23.33\r\nEZ3CG,EXQX,Bathroom,6,2,Yes,A person is in the bathroom putting on clothes and playing on the laptop,doorway;floor;laptop;stand;table tray;towel,\"A person hangs up a towel in a bathroom, then walks to an adjoining room where they sit on the floor and use a laptop, which is resting on a pink table table.;The person is standing in the shower with a towel and then hangs it up and walks into the next room and bends down and grabs a laptop and sits it on a stand and then the person sits on the floor and proceeds to work/play on the laptop.\",c052 11.20 31.40;c125 10.00 31.70;c050 7.90 14.60;c151 5.20 14.00;c034 0.00 8.30;c097 2.50 7.40;c051 9.70 31.70,59.88\r\nGG4UR,3H6W,Living room,4,7,Yes,A person is seen watching television and sneezing.  They are then seen opening the door to a hallway closet and grab a towel.,closet;clothes;door;sofa;television;towel;wardrobe,A person is watching television on the sofa. They then move to a cabinet where they open it to retrieve a towel.;Person is sitting on couch watching television then opens door to closet and grabs a towel.,c113 10.00 15.40;c006 13.70 19.00;c132 0.00 3.60;c035 11.00 17.00;c008 10.00 15.00;c151 5.00 9.00;c002 11.80 21.00;c033 11.80 20.80;c112 13.40 18.80;c123 0.00 9.50;c153 0.00 4.90,19.71\r\nV4HY4,UTMU,Kitchen,2,7,Yes,\"A person stands in the doorway, watching something on the table. The person takes their phone from their pocket.\",doorway;phone,\"A person walks into the kitchen and stares at a table, they then take out a phone, stare at it for a minute, then leave the room.\",c015 10.10 16.30;c097 0.00 5.00,28.79\r\nKSPZY,YMXV,Bedroom,6,6,Yes,A person takes a broom from a cabinet and starts to sweep. Another person takes a picture of them and watches them sweep.,broom;camera;door;floor;phone;picture,A person is sweeping a room while another person photographs him with a camera.;A person takes a broom out of a closet and sweeps the floor.The other person walks in to the room and starts taking pictures of the person sweeping.,c102 1.40 33.00;c015 15.30 33.00;c087 15.60 33.00;c098 0.00 33.00;c006 0.00 3.80;c016 14.60 33.00;c127 1.60 33.00,32.04\r\nCYT5I,YA10,Bedroom,7,7,Yes,\"A person is standing beside their bed.  They place a towel on the bed, and then put their pillow on top of it.  They walk to the doorway of their bedroom and, closing the door, they smile.\",bed;blanket;door;pillow;towel,\"A person spreads a towel over a bed, then puts a pillow over it and leaves the room, closing the door after them.\",c097 19.70 27.20;c034 7.10 16.60;c006 20.90 27.50;c071 11.10 15.40;c074 10.80 15.00;c141 19.90 26.10;c070 0.00 15.40;c077 14.00 18.30,30.17\r\nZS9XR,Z68L,Living room,6,6,Yes,\"A person is eating food out of a bag and then stands, grasps a towel, and starts tidying up the room\",bag;couch;food;medicine;paper/notebook;shelf;sofa;table;towel,\"A person walks in the room, sits on a sofa and eats a snack. The person then tidies up the table and does some dusting.;A person sits on a couch and starts to eat food from a bag and then stands up to start cleaning with a towel.\",c063 1.50 9.10;c154 14.80 20.00;c020 0.00 18.80;c156 2.40 17.50;c151 0.20 5.80;c123 1.30 18.80;c012 15.10 41.90;c013 32.60 43.20;c082 16.20 23.90;c128 8.90 14.40;c116 23.30 33.30;c129 10.60 17.10,44.29\r\nNQ1V6,R1OT,Bathroom,7,7,Yes,A person stands at the toilet watching the phone.  The person feels their shoes get wet and starts undressing to change clothes.,clothes;phone;shoes,A person stands looking at a phone. Then the person puts the phone in a pocket and undresses.  The person then puts on different clothes.,c148 16.60 27.20;c015 0.00 7.40;c155 7.00 16.60;c001 12.30 16.90;c002 10.20 15.50,29.96\r\nNNUHF,9Y7F,Dining room,4,,No,One person holding a pair of shoes and another person grasping groceries are both leaving.,chair;food;groceries;shoe;stairs;table;tray,A person walks into the room s and sits down with a meal.  Another person walks down the stairs and talks to them.;A person walks in holding a tray of food and sits down at a table and begins to eat. A second person comes down the stairs holding shoes and watches the first person.,c151 1.60 9.10;c061 3.40 32.00;c009 0.80 9.30;c053 0.00 32.00;c062 0.00 9.60;c011 3.00 32.00;c059 2.30 8.00,30.92\r\nEM1K2,D0RU,Living room,7,5,Yes,\"A person is pouring a drink into a glass on a shelf. Then, running into the next room, the person sits down in front of the television.\",chair;cup;doorway;glass;television,\"A person pours water into a glass in a distant room then walks into another room, sits down and watches television.\",c108 0.00 6.50;c151 6.30 12.70;c132 8.00 32.00;c059 7.90 32.00;c097 3.40 8.20,30.88\r\nL5GEN,YMXV,Hallway,5,6,Yes,\"A person is walking over to the mirror. Then, standing in front of it, the person begins to reach for a hairbrush on their desk.\",desk;doorway;mirror;table,A person walks into a room and fixes their hair while looking into a mirror.,c096 2.70 25.90;c152 21.90 26.80;c097 13.10 19.70,30.42\r\nMAMJ8,D0RU,Kitchen,7,7,Yes,\"The person was closing the doorway to the pantry, and started to laugh at the kitchen table that was covered with after-school things.\",cup/glass/bottle;doorway;shelf;table,A person standing in the kitchen grabs a bottle and exits through a doorway.,c097 0.00 5.70;c107 24.70 31.20;c110 23.50 29.50;c082 1.70 10.80,30.67\r\n1DW7H,AC0W,Bathroom,6,7,Yes,\"A person is sitting on the toilet, toying with their phone. They laugh at something they see on the screen before standing up straight and looking at themselves in the mirror.\",mirror;phone;sink;toilet,\"A person is sitting on the toilet looking at their phone. Then the person gets up and is about to use the sink.;A person is sitting on top of a toilet while playing with their phone. Afterwards, the person gets up and looks at themself in the mirror.\",c016 0.00 29.10;c015 0.00 31.90;c096 27.90 32.00,31.12\r\nMN1O2,3VLX,Dining room,7,7,Yes,A person is tidying up the dining room with a vacuum. They look up at a mirror on the wall and smile.,floor;mirror;vacuum;wall,A peson is vacuuming while looking at themselves in a mirror on a wall.;A person running a vacuum around a table.The person proceeds to turn and look at them self in the mirror and smile .The person turns the sweep off and walks away.,c137 0.00 18.10;c137 1.90 9.70;c094 6.60 14.80;c096 9.20 14.10;c152 6.60 14.80;c127 0.00 19.00;c149 6.00 16.60,17.67\r\nX58SH,UTMU,Kitchen,5,7,Yes,\"A person is pouring coffee down the sink, then putting groceries away and then throwing trash in the garbage in the kitchen.\",cabinets;closet/cabinet;coffee;cup;dish;food;garbage can;groceries;kettle;kitchen;shelf;sink;stove;towel;trashcan,\"A person is walking in the kitchen and pours some coffee down the sink. The person the begins to place groceries into different cabinets. The person then grabs some trash off the stove and throws it into the garbage.;A person is cleaning/organizing a kitchen.  They dumped some water that was sitting in a kettle on the stove, then they grab some items from a bag and begin to put them away in the cabinets.  They take a food dish and empty to contents into the garbage under the sink.\",c130 16.00 26.60;c108 1.80 12.80;c063 25.90 31.10;c082 19.80 26.80;c034 14.40 26.80;c119 25.70 34.70;c113 18.00 23.40;c081 19.60 26.80,45.00\r\nGQ4PM,HJJ4,Basement (A room below the ground floor),5,6,Yes,A person standing next to a cabinet begins smiling while holding a picture.,picture,A person smiles at a picture that they are holding.,c084 0.00 9.00;c088 0.00 9.00;c152 0.00 9.00,8.12\r\nSYGU0,25TD,Bathroom,7,7,Yes,A person washes a glass in the sink. The person then laughs while turning the bathroom light off and leaves the room.,cup;glass,A person  washes a glass and laughs.,c111 0.00 14.80,21.42\r\nY9SMX,T7C3,Kitchen,6,7,Yes,A person is pouring a cup of coffee and  drinking it in front of a window and then opening the door of the refrigerator in a kitchen.,coffee;cup;door;glass;refrigerator;window,\"Person pours coffee into cup, then walks to window starts drinking coffee while looking outside window, then walks to refrigerator and opens refrigerator's door.\",c106 20.70 30.50;c008 43.10 50.00;c143 43.10 50.00;c092 20.20 44.10;c108 0.00 19.10;c109 46.70 50.00;c110 46.70 50.00;c107 46.70 50.00,48.67\r\nSN85M,EIO2,Laundry room,7,7,Yes,A person is watching out the door.  Then a person is throwing a box.,box;hair;pillow,A person leans on a hamper and then throws a box through a doorway and walks away.,c045 25.60 30.60;c144 0.00 5.70;c080 25.20 30.60,30.83\r\nHRFGY,2Q9D,Garage,7,7,Yes,A person sneezes while putting a book on the shelf.,book;shelf,This person is thumbing through a book and puts it on a shelf.  Then this person sneezes into his arm.,c028 10.40 16.60;c153 9.70 18.30;c025 6.60 11.30;c032 1.40 10.50;c081 9.90 16.10;c026 0.40 15.50;c027 1.00 5.60,22.00\r\n85LEB,YMXV,Bedroom,5,7,Yes,A person in the bedroom is drinking a glass of water while working on their laptop. They do not seem very happy and accidentally spill some water onto their bed.,bed;clothes;cup;glass;laptop;water,\"A person is sitting on a bed, they drink a bottle of water.  They stand up, take the water and spill it no the bed.\",c052 14.80 20.00;c106 0.00 4.70;c135 0.00 20.30;c154 16.30 22.00;c004 25.10 30.50;c107 0.00 32.00,31.25\r\nA53A6,C7O9,Kitchen,7,7,Yes,Person is sitting on chair by stover holding box of blankets.,blanket;box;chair,\"A person is sitting in a chair, with a box covered by a purple blanket lying in their lap. The person shifts once.\",c040 0.00 30.00;c059 0.00 30.00;c043 0.00 30.00,29.00\r\nJWVW9,BYF9,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A sneezing person awakens in their entryway holding a box and their homework.,book;chair;homework,\"A person in a chair sneezes while holding on to two books.;A person is sitting down, and then sneezes ,multiple times.\",c153 0.40 9.90;c059 0.00 21.00;c026 0.00 21.00,20.50\r\n03D66,KQI6,Bathroom,6,7,Yes,A person in their closet looks at them self in the mirror while holding a plate of food begins to eat the food.,dish;food;mirror,person carrying a plate of food looking in mirror eating,c120 0.00 8.50;c094 8.60 12.70;c061 4.50 9.30;c156 4.80 32.00;c096 9.00 32.00;c118 0.00 32.00,31.04\r\nE1TJI,YMXV,Bedroom,6,6,Yes,A person is fixing the pillow and another person is smiling at the picture.,bed;mirror;picture;pillow;television,\"A person is tidying their pillows and putting them on the bed. Another person starts sneezing and laughing in front of the mirror.;person adjusting the pillow covers and keeping the pillows on the bed properly, person enjoying th etelevision\",c076 0.00 11.40;c077 5.60 14.30;c152 21.70 33.70;c132 23.30 34.00;c153 22.50 27.00,32.58\r\nFZVQN,LMEJ,Living room,7,1,No,A person is seen holding a towel and taking a box off the couch and placing it on the floor.,box;floor;towel,A person is holding a towel and carrying a box and putting it on the floor before walking away.,c033 0.00 21.50;c042 6.20 17.20;c037 0.00 23.00;c041 6.10 16.20;c043 6.10 16.20;c040 6.20 16.20,21.71\r\nNIG0Z,XKTB,Bedroom,3,6,Yes,A person is closing their eyes as they take a sip of coffee.  The person is holding their coffee cup in their hand as they are standing near a box.,box;coffee;cup;sofa,There is a person sitting on a sofa drinking coffee.  That same person then picks up a box.;A person is sitting down drinking coffee  and smiling then taking a box and putting it on the floor.,c106 3.50 17.10;c040 18.60 25.60;c042 22.90 28.80;c151 22.10 26.90;c123 0.40 5.00;c107 1.60 13.00,31.33\r\nTTRAJ,Z68L,Kitchen,6,7,Yes,\"A person is plating food onto dishes, then sneezing on the food, followed by laughing in a kitchen.\",box;dish;food,A person is taking some food. A person begins to start sneezing.,c061 0.00 11.90;c062 4.50 12.30;c153 6.90 17.20;c118 0.00 25.20;c044 18.10 26.00;c063 0.00 26.00,25.25\r\nQX89T,YMXV,Bedroom,7,7,Yes,\"A person walks over to a chair, sits down, fixes their hair, and takes a picture in the mirror.\",doorway;hair;mirror;phone;picture,\"A person is coming out of the closet, they then sit on a chair in front of a mirror, they fix their hair before taking a picture of themselves.;A person sits down in a chair in front of a mirror, fixes his hair, and takes pictures of himself using his phone.\",c059 5.50 33.00;c144 5.80 18.80;c151 4.00 9.50;c087 20.10 33.00;c094 19.50 33.00;c018 14.70 20.30;c097 0.00 3.70;c016 15.50 33.00;c152 21.00 33.00;c096 3.20 33.00;c015 15.60 33.00,31.71\r\n2B3BL,UTMU,Closet / Walk-in closet / Spear closet,6,5,Yes,\"A person is tidying and throwing clothes into a bag, while sorting through their closet.\",bag;closet;clothes;clothing;wardrobe,A person opens a wardrobe door. The person grabs a bag from the floor and fills it with clothing. The person rearranges clothing inside the wardrobe.,c020 5.30 26.00;c113 0.00 7.60;c001 22.30 43.90;c021 8.90 17.70;c000 11.50 44.00;c004 16.50 44.00;c114 4.40 44.00;c002 4.20 39.10;c022 13.20 26.50;c023 5.70 11.20,42.88\r\nUWL8I,4I61,Stairs,6,7,Yes,\"A laughing person runs down the stairs holding a box, and a laptop.\",box;laptop;stairs,\"A person is walking up some stairs with a laptop, they then run back down carrying a box.\",c047 0.00 29.00;c040 20.50 27.30;c150 14.60 24.20,27.96\r\nAPVVG,OVS2,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person walks into the closet, undressing. The person emerges, wrapped in a towel. The person turns out the light and closes the door.\",pants;shirt;towel,A person steps in front of an open closet where they remove their shirt and shorts before stepping into the closet for a moment then stepping out with a blue towel around their hips.;A person is taking a shirt off. a person then takes their pants off. A person then wraps a towel around themselves.,,37.33\r\nL5G6N,3H6W,Bathroom,6,6,Yes,\"A person is closing the medicine cabinet, then lying in the tub and then turning off the light in the bathroom.\",bath tub;cabinet;light;shelf,\"a person closes cabinet drawers, then lies down in a bath tub, then gets up and turns off the light.\",c105 25.40 30.00;c112 0.10 9.10;c154 21.50 29.40;c082 0.50 7.90,38.25\r\nJJLTF,HR43,Kitchen,4,7,Yes,A person is cooking on the stove. Then they pick up their coffee and start sneezing.,cup;dish;stove,\"The person is drinking something in a mug, holding the mug and talking.;A person is drinking from a cup. The person sneezes. The person sits the cup on the stove.\",c107 2.90 35.00;c153 8.00 15.40;c106 5.30 12.00;c109 27.40 35.00;c118 2.40 35.00,33.75\r\n5E01W,H8N1,Bathroom,6,7,Yes,A person is pouring a glass of water down the sink. The person puts the glass down and gets out their phone.,dish;glass;phone;sink;water,A person empties a glass and checks their phone.,c016 9.50 20.40;c118 0.00 12.50;c018 10.30 19.90;c015 10.30 19.90,23.92\r\n7L4DW,YMXV,Basement (A room below the ground floor),5,5,Yes,A person undressing in a basement opens a bag while a television plays in the background.,bag;chair,\"A person is in a room holding a bag they sit the bag on a chair and go through the bag.;A person takes a bag, sets it on a chair and proceeds to look through it.\",c020 0.00 13.80;c021 4.40 17.70;c022 7.20 14.50;c023 0.00 3.60,31.29\r\n5J9HP,KFGP,Pantry,6,7,Yes,\"In the pantry is a sink and a cabinet. The person runs into the room, gets medicine from the cabinet and begins eating it.\",cabinet;food;medicine;sink,\"A person runs into the kitchen, opens the cupboards, removes a medicine bottle, and takes the medicine.\",c128 12.40 25.40;c129 20.60 28.10;c113 2.70 13.50;c156 20.80 27.20;c128 9.10 35.10;c150 0.00 7.00;c129 14.20 35.20,35.88\r\nXKM5R,UTMU,Bedroom,4,5,Yes,\"A person can drink a glass of OJ in their bedroom, A person can hold onto dishes in their bedroom.\",cup;dish;glass,\"The person stands by the bed, holding a plate and drinking from a glass. The person switches hands, holding the glass and plate. The person begins to walk away.\",c118 0.00 32.00;c106 0.00 29.20;c107 0.00 32.00,30.54\r\n2MR5K,4OHY,Living room,6,6,Yes,\"A person is working on a laptop. He sets it down, walks to the television and picks up a glass of water that has been set on top of it.\",cup;glass;laptop;television;water,A person is working on their laptop they then walk over to a television and grab a cup of water.,c107 22.40 33.00;c052 0.00 13.70;c047 9.90 16.00;c047 0.00 16.30;c051 0.00 15.00;c110 21.90 26.90;c049 9.70 16.30,32.38\r\nO5FR0,XXN8,Kitchen,6,7,Yes,A person is undressing by the window. They sneeze as they turn off the light.,clothes;window,A person stares into the camera and undresses then shows us a window.,c155 0.00 12.60;c000 0.00 21.70,30.92\r\nLWB5E,P6LJ,Laundry room,5,5,Yes,A person is laughing at the television and putting homework on the table.,homework;paper;table;television,A person places homework on the table after going over it.,c009 0.00 5.30;c116 0.00 4.50;c117 0.00 8.30;c117 21.90 31.20;c115 0.00 50.50,50.25\r\nNIRNP,YA10,Garage,3,7,Yes,A person is running across the garage towards a broom as they are holding a plastic bag. The person grabs the broom and sneezes.,bag;broom,\"A person runs over grabs, a broom, sneezes, places the broom down and walks away, all while carrying a plastic bag in one hand.\",c098 5.10 12.30;c099 6.80 12.70;c100 4.40 9.30;c020 3.10 17.90;c150 3.00 8.50;c153 5.20 10.70,16.88\r\n0KISF,YMXV,Stairs,4,6,Yes,\"A person is closing a door. The person begins laughing and then starts sitting on the stairs, folding a towel.\",blanket;door;stairs;towel,\"A person walks down a hallway, holding a towel, then stops to sit on the stairwell to fold and unfold the blanket, laughing.\",c033 0.00 31.00;c149 20.20 31.00;c151 7.80 13.20;c070 0.00 31.00;c075 4.00 30.40;c152 9.90 31.00,30.50\r\nYX0YS,C7O9,Stairs,6,7,Yes,\"A person is working on their laptop by the stairs in their house. While doing that, a second person is walking down the stairs with a cup of coffee.\",cup;glass;laptop;television,Person sitting on a staircase looking at laptop while another person walks downstairs.,c051 0.00 32.00;c107 11.80 21.80;c047 0.00 32.00,30.96\r\nA3OWG,DXDI,Dining room,5,7,Yes,\"Person is holding a vacuum, pushing it along. They laugh as they unplug it and pick up the broom to snuggle.\",broom;vacuum,\"A person is vacuuming. They unplug the vacuum, pick up a broom and hug it.\",c137 0.00 10.10;c098 12.10 19.00;c100 10.60 17.00;c152 10.10 19.00,17.54\r\nS6RYI,3H6W,Laundry room,5,6,Yes,\"One person grasps some dishes and groceries, then sneezes and starts drinking.\",bag;dish;glass,\"A person walks up to a washing machine and picks up a bag of groceries and a plate.  That same person then sneezes and picks up a glass.;A person walks in, grabs a bag and plate, sneezed, and then drinks a glass of water.\",c118 5.90 22.00;c120 17.30 23.00;c153 8.40 13.70;c020 2.80 22.20;c107 11.50 22.00;c106 11.70 21.90;c023 3.00 9.10,22.21\r\nMI7WU,X5XO,Recreation room / Man cave,6,7,Yes,\"A person sits in a chair, watching television. The person stands and leaves.\",chair;television,A person is sitting on a chair watching TV in a basement. They then stand and leave.,c132 0.00 23.30;c059 0.00 23.60;c154 19.00 24.90,31.96\r\n03TL7,D0RU,Kitchen,7,4,No,A person is playing with food and putting away groceries.,chair;clothes;cracker;food;man;shelf;table,\"The person is sitting down eating food. The person gets up and picks up some items from the ground, walks over to a shelf and places the items there.;a man eating a cracker and putting stuff on shelves.\",c061 13.80 21.50;c154 9.80 15.20;c156 0.00 8.90;c059 0.00 14.60;c081 26.60 37.70;c062 21.30 37.70;c011 0.00 15.00,38.12\r\nQKIYJ,CCI9,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is in the entryway at their home laughing and sneezing. They fix their hair in the mirror and adjust a picture on the wall.,doorway;hair;mirror;picture;wall,A person walks up to a mirror and fixes their hair.  They then adjust a picture hanging on the wall.,c144 0.00 10.70;c088 1.60 8.70;c096 14.70 27.90;c149 5.70 19.50;c153 7.70 17.90;c083 26.70 34.00;c097 0.00 4.50,32.71\r\nN8XDV,WG9D,Bedroom,5,7,Yes,\"A person is working in their bed while eating a sandwich. This person takes a look out the window, and then continues working.\",bed;book;curtain;dish;food;homework;phone/camera;sandwich;window,\"Person is sitting on a bed with legs stretched out, eating a sandwich and reading, then slides the curtain over and looks out the window;A person is sitting on a sofa working on their homework while taking a bite of a sandwich. Then the person turns to look out the window.\",c065 1.80 7.90;c092 8.80 16.10;c135 0.00 19.00;c115 15.70 19.00;c016 15.70 19.00;c119 15.70 19.00;c061 15.70 19.00;c032 0.00 12.00;c156 2.50 7.50;c015 0.00 10.00;c032 15.70 19.00;c156 15.70 19.00;c015 15.70 19.00;c062 15.70 19.00,17.67\r\n2K755,ZAWX,Laundry room,6,5,Yes,A person is playing with the stove and another person is undressing by the wardrobe.,clothes;dish;food;jacket;pot;shelf;stove;table,\"A person mixes something in a small pot, then another person takes off a jacket.;A person is eating some food from a dish at the stove, they then begin to tidy dishes around them, another person is undressing from some clothes.\",c147 0.00 3.10;c155 15.10 20.70;c156 0.00 5.50;c120 0.00 18.30;c009 19.60 31.00;c119 0.00 18.30;c001 19.60 31.00,30.21\r\n4IWYR,F56T,Bedroom,4,4,Yes,A person is sitting on a sofa throwing paper at the television.,bed;homework;paper;television,\"A person sits on a bed with some homework. The person balls ups some paper and throws it at a television.;A person walks over to a bed holding homework, then he begins throwing the homework off the bed.\",c132 2.50 9.30;c151 0.20 6.60;c135 1.60 30.00;c115 0.00 30.00,28.71\r\nJDQB8,ID9V,Laundry room,4,7,Yes,A person is smiling and laughing at the phone while grasping a bag.,bag;phone,A person is in a laundry room using their phone holding a bag,c015 0.00 21.50;c020 0.00 19.70;c019 0.00 22.00,21.17\r\n8ISS6,ZFCJ,Bedroom,6,6,Yes,A person is dressing in front of the door. Then the person starts holding a pillow.,clothes;clothing;door;pillow,A person takes a sweater from a door hanger and puts it on. Then they take a pillow and begin snuggling with it.;The person is getting dressed by the door in the bedroom. They then grasp a pillow and snuggle it.,c078 19.00 25.50;c148 0.00 20.00;c002 0.00 3.40;c076 17.40 33.00,31.67\r\n5I54H,18IT,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,\"A person is in a hallway standing by a table, they then pick up a towel and start sneezing into it.\",door;table;towel;watch,A person is walking through a door and puts their watch on a table. The person then takes a towel and wipes self with it while sneezing.,c009 6.30 12.90;c033 12.40 25.00;c153 15.90 21.20;c008 0.00 5.10,23.71\r\nE0IME,3531,Dining room,6,7,Yes,\"A person is eating while working on homework, then gets up and runs towards the window.\",book;chair;cracker;food;paper;pencil;table,A person is sitting at a table while eating a cracker and writing on a piece of paper with a pencil at the same time.  A moment later the person gets up and runs away.,c156 0.00 17.40;c150 29.70 35.00;c154 29.40 33.70;c032 3.00 32.90;c145 1.00 32.70;c061 4.70 32.50;c063 0.00 4.70;c059 0.00 32.90;c062 0.00 3.80;c064 28.50 33.50;c062 0.00 35.00;c011 0.00 33.40;c014 0.00 33.40,33.50\r\nIRF8X,XXN8,Home Office / Study (A room in a house used for work),5,7,Yes,A person is sneezing at the desk with the laptop sitting on it.,desk;laptop;table,A person is typing on a laptop repeatedly sneezing.,c014 0.00 32.00;c052 0.00 32.00;c153 5.90 12.50,30.79\r\nUD7R8,BYF9,Recreation room / Man cave,3,6,Yes,A person is sitting at a desk and putting on their shoes. The person sneezes and then leaves.,chair;door;shoe,A person puts on their shoes and sneezed before getting up.;THE PERSON IS SITTING AT A TABLE PUTTING ON THEIR SHOES. THEY THEN GET UP SNEEZE AND WALK ACROSS THE ROOM TO A DOOR AND OPEN IT.,c055 0.60 12.70;c153 9.90 15.40;c059 11.70 24.30;c055 22.10 30.00;c008 27.30 31.00;c056 0.70 19.50;c097 28.30 31.00;c141 27.10 31.00;c154 21.00 26.80,30.42\r\n2JTRG,ZAWX,Living room,5,4,Yes,\"A person is standing in the hallway, laughing as they eat a sandwich. The person finishes the sandwich and wipes their mouth with a paper towel.\",dishes;floor;food;plate;sandwich;table;towel,The person is sitting on the floor at a table eating a sandwich.;person sitting on the floor and eating a sandwich from the plate. finished the sandwich and cleaned hands with towel,c065 0.00 33.00;c035 25.10 33.00;c156 0.00 32.20;c125 0.00 33.00;c011 0.00 33.00;c062 7.90 15.80;c149 15.00 25.10;c152 15.00 25.20;c067 1.30 27.60;c063 1.20 5.50;c061 1.30 6.00;c033 25.70 33.00,31.79\r\nMLS4T,3H6W,Kitchen,7,6,Yes,A person throws a box of food onto the shelf. The person drinks from a glass of iced tea.,box;cup;glass;shelf,A person is putting a box on a shelf then taking a drink from a glass.,c040 2.60 10.50;c042 2.10 10.40;c081 9.10 20.80;c106 7.40 19.50;c107 5.20 20.10;c110 4.70 12.30;c045 2.30 7.50,25.33\r\nYGQ7E,BYF9,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person in their home office is working at their desk. They start tidying their desk, afterwards open the door.\",bag;chair;cloth;computer;desk;door;phone;table,\"A person sitting at a desk stands up, starts cleaning and then opens the door.;A person is sitting at a desk, working on a computer next to their phone. After a few seconds, the person stands up, picks up an orange bag, and places it further down the table before walking to the door.\",c011 0.00 8.90;c012 8.90 16.50;c154 7.60 12.20;c059 0.00 9.30;c014 0.00 18.80;c008 16.90 22.00,21.50\r\nOC6YU,T7C3,Dining room,6,7,Yes,\"A person pours a drink, sits in a chair, and then laughs as the person looks at the clothes the person is wearing.\",bottle;chair;clothes;glass;table,\"Person taking a bottle, opening it and pouring some into a glass before sitting down and and inspects shirt.\",c000 11.90 22.50;c059 9.60 18.50;c151 9.90 18.10;c011 12.10 38.00;c108 2.80 14.30;c009 11.20 17.40;c152 18.70 38.00,36.62\r\nPVSVG,C7O9,Pantry,6,7,Yes,A person is standing in the pantry holding a broom.  They pick up the coffee from the shelf and sneeze before laughing about it.,box;broom;coffee;shelf,\"A person is holding a broom while standing in a pantry, sneezes, takes an item off the shelf and laughs at it.\",c098 0.00 31.00;c149 4.20 31.00;c152 0.00 4.10;c043 1.20 9.60,30.38\r\n275W0,T7C3,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person grasping a sandwich in an entryway is putting a sandwich on a table.,dish;door;food;plate;sandwich,\"A person is standing outside the kitchen, carrying a plate of food. The person looks in through the door, enters the kitchen, and places the plate with the food next to the sink.;Person walks into the kitchen holding a plate with a sandwich on it. The person proceeds to put the sandwich on the plate down by the sink.\",c067 0.00 23.00;c068 14.00 19.20;c097 0.30 5.20;c118 0.00 23.00;c119 19.10 23.00;c061 0.00 13.00,21.71\r\nBCUTT,T7C3,Stairs,5,7,Yes,\"One person plays with a laptop and a mirror, then sneezes and puts the laptop on the stairs.\",floor;laptop;mirror,A person is sitting on the stairs with a laptop they have a handheld mirror they sneeze then they stand up.,c052 0.00 27.60;c093 0.00 32.00;c153 16.90 24.00;c125 0.00 30.00;c154 26.50 32.00;c096 5.30 13.90,30.79\r\nGWQ73,YMXV,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,A person is eating food slowly then plays with doorknob by twisting it left and right.,doorknob;eating;food,A person plays with a doorknob while eating.,c061 8.70 14.20;c140 0.00 32.00;c156 8.70 14.20,30.96\r\nHXAIA,YA10,Garage,5,5,Yes,\"A person is taking a vacuum cleaner into the garage to fix it.  Standing in the middle of the garage, they scratch their head, and then remember what cabinet the tool they need is in.  They leave the vacuum cleaner sitting on the floor while they go to get the tool they need.\",vaccum;vacuum,A person put a vaccum in the garage and then walked away from it. and scratched their head,c137 0.00 7.30,29.67\r\nSWZWL,PKND,Bedroom,6,6,Yes,Two people are snuggling on a bed. One person lifts their phone to take a picture of the two of them. The second person is grasping at the phone in an attempt to stop this from occurring.,bed;blanket;phone;picture,The two persons are searching for something through the bed sheets.;People are making a bed. The people tidy up the blankets on the bed. One person pulls out a phone and takes a picture of the second person.,c015 20.90 33.00;c016 21.80 33.00;c018 19.90 25.80;c075 0.00 25.20;c087 21.70 33.00;c071 0.00 25.00;c152 0.00 33.00;c070 0.00 32.00;c070 0.90 6.30;c073 0.70 6.60,31.75\r\nP71W7,HR43,Bathroom,5,4,Yes,A person turns the light on in the bathroom holding a camera. Then begin evil laughing.,camera;doorway;phone,A person is looking at the camera and laughing.,c015 0.00 32.00;c149 0.60 32.00;c097 0.00 3.10,30.71\r\n4YVE0,L4ZP,Bedroom,2,7,Yes,\"A person is grasping a pillow, then running in place while watching television in a basement.\",pillow;television;televison,A person is holding a pillow and walks over to a tv. The person does some exercises while holding the pillow.,c076 0.90 26.10;c078 10.70 26.20;c132 0.70 24.90,27.17\r\n5VS8B,KASL,Hallway,5,7,Yes,A person is awakening in a bed and taking the laptop off the chair.,bed;blanket;chair;doorway;laptop,A person is lying on a bed. A person gets up and carries a laptop down a hallway.,c047 9.30 24.90;c134 0.00 3.70;c097 14.60 25.10;c154 5.00 25.50;c072 0.00 8.50,24.88\r\n56JT8,Q4IF,Pantry,4,7,Yes,\"A person is eating food, then washing the floor, then running in place in the doorway of a pantry.\",dish;floor;food,A person is eating food off a plate and then puts the plate down. A person is sweeping the floor and then puts down the broom and walks out of the room.,c127 8.80 20.50;c061 0.00 8.20;c156 0.00 5.10;c118 0.00 9.20;c119 4.60 9.40,22.92\r\n3IJGQ,R1OT,Recreation room / Man cave,7,7,Yes,A person is seen smiling while eating some food. They put the dirty dishes on the table and take a sip of coffee.,coffee;cup;dish;food;sandwich;table,\"A person is watching something on the television and laughing at it, and also eating food and drinking coffee.;A person is lying down eating a sandwich, then they set it down and take a drink of coffee.\",c061 0.00 15.10;c118 0.00 16.90;c009 12.00 18.10;c156 0.00 16.40;c152 0.00 10.10;c065 0.00 14.30;c110 13.50 21.70;c107 14.80 31.00;c106 18.90 31.00,29.96\r\nQUPLC,6IFG,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person brings in food and groceries into the study and close the door behind them. They watch as someone else unpacks the bags.,bag;door;floor;food;groceries,\"A person comes into the room and sets a white bag on the floor.;A person walks into a home office carrying a bag of groceries, then the person puts the bag on the floor.;A person walks through a door carrying a bag. They place the bag on the floor and stand there looking at it with their hands on their hips.\",c130 5.60 11.60;c008 0.00 4.40;c020 4.60 10.00;c006 1.40 8.50;c062 5.60 11.60;c022 5.60 11.60;c097 0.00 4.50,11.42\r\nZ06HO,6IFG,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person is cleaning their home office by washing the windows, throwing away trash, and using a vacuum.\",clothes;cup;door;floor;garbage;rag;towel;vacuum;window,\"Person is wiping the Door and the glass next to it with a rag then walks over and grabs a vacuum to begin cleaning the floor.;A person picks up a towel and washes a door and window. They throw something away and move the trash can, then begin to vacuum.\",c127 6.80 16.10;c137 17.80 30.00;c091 0.20 12.20;c111 0.00 13.70;c003 6.50 11.40;c138 15.30 22.50;c126 6.60 11.70;c036 6.90 11.50;c038 0.60 10.10,29.25\r\nBAUQE,6IFG,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person is in a office fixing their wardrobe, afterwards they grasp a broom and start sweeping the floor.\",broom;clothes;floor,A person is sweeping up.,c100 5.00 10.20;c102 8.20 16.00;c127 0.10 5.40;c127 7.50 16.00;c004 0.00 7.00,14.62\r\n4UW2K,XXN8,Kitchen,5,7,Yes,A person is standing in front of a sink full of dishes and drinking a glass of water.  The person puts the glass down and takes the broom out of the corner.  The person grasps the broom while sweeping the floor.,broom;floor;glass;sink,\"a person going to the sink, filling up a glass of water, then putting the glass into the sink, picking up a broom then sweeping the floor.\",c102 15.30 20.30;c127 17.10 22.80;c106 3.90 18.00,30.62\r\n561H5,5LWB,Bedroom,4,7,Yes,\"A person is walking into the room, holding a towel. The person sits down and begins watching TV, eating a sandwich as the person does so.\",doorway;sandwich;television;towel,A person walks into a bedroom and sits down. He then pretends to eat something while watching t.v.,c151 5.50 11.40;c033 0.00 12.00;c065 12.90 18.80;c132 10.60 18.80;c067 12.20 17.40;c097 0.00 6.80,30.75\r\n4ISIX,6RE8,Home Office / Study (A room in a house used for work),4,2,Yes,A person is tidying some clothes. The throw a shirt on a sofa and walk away.,chair;clothes;door;socks,\"A person walks over to a chair, picks up some socks and throws them into another chair. Then they open a door, go through it and close it.;Person is standing and throwing clothes on chair, then walks away though doorway.\",c000 1.20 16.10;c002 15.60 21.70;c097 19.40 25.90;c008 18.60 25.90;c003 5.00 15.90,33.12\r\nZSJ2I,5LWB,Dining room,7,4,Yes,One person was pouring water into their glass. Another was closing the door in the doorway.,cup;door;glass;table;water,\"Two people sit at a table and drink water from glasses. One person gets up and walks through a doorway to another room and closes a door.;Person A and Person B are sitting at a table, Person B then purs water into a cup then Person A closes the front door.\",c006 23.40 32.00;c106 9.80 17.70;c011 0.00 19.50;c106 1.70 15.30;c097 12.70 23.70;c154 12.40 22.60;c011 0.00 4.60;c107 0.00 17.00;c141 22.80 32.00;c108 0.50 16.10,30.83\r\nM3IK4,D0RU,Garage,2,5,Yes,\"A person sits in a chair, holding a small piece of metal. They grasp it tight as vigorously try to clean it with a towel.\",blanket;chair;clothes;towel,A person is sitting on a chair with a towel cleaning something.,c059 0.00 34.00;c038 15.10 34.00;c000 0.00 34.00;c070 0.00 34.00,33.17\r\nCVPFH,0KZ7,Bathroom,6,7,Yes,A person is working on the light in a bathroom then starts undressing and putting their clothes on a shelf.,clothes;counter;light;shelf;something;table,\"Person looking into the mirror,adjust the lights above the mirror, takes off some clothing;A person turns on a light. They then take off their outer layers of clothing and place them on the counter top.\",c001 22.00 34.40;c104 0.00 13.20;c155 18.60 34.30;c000 13.50 35.00,33.75\r\nYC9FL,4OHY,Bedroom,4,7,Yes,A person is tidying up shoes then leaves and closes the door.,door;shoes;towel,\"A person tidy's their room with a towel. Then, walks out of that room and closes the door behind them.\",c006 1.80 9.80;c154 7.50 20.70;c038 3.00 20.00;c033 3.20 30.00,30.50\r\nOWAA9,XXN8,Bedroom,7,6,Yes,\"A person is holding a cup of coffee. The person sets the coffee down on a table and walks out, closing the door behind them.\",cup;dish;door;floor;glass;table,A person is holding a mug and then places it on a table and opens a door walks out of the room and closes the door.,c008 20.30 26.80;c009 16.20 21.90;c107 0.00 20.80;c154 18.20 23.00;c141 19.00 24.30;c119 15.70 21.40;c125 0.00 23.10;c097 20.60 26.30;c109 15.90 22.00;c006 21.40 28.20;c011 0.00 21.70,30.54\r\n5NE5A,W4E6,Hallway,6,6,Yes,\"The person was had a camera is their hand, walked down the hallway, then stood on the chair and the end of by the window.\",camera;chair;hand;phone;window,A person is holding a camera and then standing on a chair to look out a window.;A person holding a camera stands on a chair in front of a window and looks out.,c092 11.00 29.00;c015 0.00 29.00;c060 13.00 29.00;c087 1.60 13.70,27.54\r\nD9UBV,W4E6,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,The person is holding some shoes and a bag in their hands while standing in the hallway laughing.,bag;shoe,A person is standing in a doorway with a bag and shoes.  The person is laughing.,c020 0.00 28.00;c053 0.00 28.00;c149 0.00 28.00,27.25\r\nBGQIF,P6LJ,Living room,6,6,Yes,\"A person sits in the living room, eating some food from a few various dishes.\",dishes;food;pillow;sofa,\"A person is sitting on the couch and eating food.;The turned on the camera and then sat town on the sofa.  The person ate food, got up, and turned off the camera.\",c062 31.20 40.80;c156 7.90 19.50;c151 2.00 7.20;c154 39.00 43.70;c123 1.60 6.70;c077 2.90 9.40;c061 11.20 17.70;c061 20.60 37.40,44.79\r\nE3UFX,R8JJ,Dining room,5,7,Yes,\"A person stands on a chair, changing a light bulb. The person smiles when they complete the job.\",chair;light,A person steps onto a chair to screw in a light bulb.,c103 0.00 11.60;c060 0.00 12.10;c152 8.40 13.00,12.38\r\n5RET1,KQI6,Living room,6,4,Yes,Two people are snuggling on a couch in between several pillows. One person stands up to grab some food from a nearby cabinet.,blanket;food;pillow;sofa,A person is sitting on the couch. Another person enters the room while holding a pillow. This person sits on the couch and starts peeling an orange.,c123 0.00 32.00;c063 18.60 32.00;c076 6.70 32.00;c151 10.10 15.60;c071 11.00 21.90;c075 11.10 21.20;c077 6.50 21.80;c061 20.30 32.00,30.88\r\nWJ33D,D0RU,Living room,7,5,Yes,A person is lying in the closet holding a box.  The person pulls a towel out of the box and closes the box.  The person puts the towel on top of the wardrobe and sneezes.,box;clothes;floor;towel;wardrobe,Person is lying down on the flower moving legs. Person takes some clothes from a cabinet and stands up and then stares at the camera.,c035 11.20 17.10;c044 8.10 14.60;c154 15.80 23.10;c000 10.60 24.00;c002 8.80 19.10;c000 9.80 17.20;c124 0.00 20.20;c002 10.70 15.40;c153 22.40 29.80;c034 14.20 24.00;c033 14.20 24.00,31.42\r\nAPVAD,6RE8,Basement (A room below the ground floor),6,7,Yes,\"A person is undressing in the basement.  The person puts their clothes on top of a pillow and laughs, then picks a book up off the floor and runs out.\",book;clothes;door;floor;pillow,\"A person is taking off a shirt, places it down on a chair, picks up a box, and runs out the door.\",c003 12.70 21.00;c155 0.00 13.80;c150 17.10 31.00;c006 22.30 29.10;c008 21.10 26.20;c000 6.70 17.50;c080 11.50 16.50;c030 17.30 21.90,30.08\r\nX3952,2RTW,Bathroom,6,6,Yes,\"The person is undressing in the bathroom.  The person becomes cold, and walks to the bed, throws the blankets back, and gets into bed.\",bed;blanket;clothes;jacket;mirror,\"A person is in a bathroom, looking at them self in the mirror. After the person is finished looking, they take off their jacket, enter the bedroom, and lays down in bed with a blanket.\",c134 17.30 28.00;c072 12.40 25.90;c155 0.00 5.50;c070 11.60 28.00;c001 1.10 7.50;c151 10.00 15.80,26.54\r\n0HD9F,2RTW,Bathroom,6,6,Yes,A person is tidying up the room. Person is opening and closing the drawers around the sink. Person is straightening the picture on the wall.,cabinet;counter;picture;sink;table;wall,\"A person tidies the sink area of the bathroom.  They bend over to open and close some cabinet doors. They straighten up again to adjust a picture on the wall.;Person tidying up bathroom counter, looking in the cabinets, and then straightening up a picture.\",c083 19.30 28.00;c112 10.10 18.30;c113 9.50 17.00;c012 2.70 11.50,27.38\r\nE1TUD,2RTW,Bathroom,6,6,Yes,\"A person is undressing in the bathroom. The person turns off a television, begins dressing again, then grabs their homework and leaves.\",clothes;door;jacket;magazine;paper/notebook;remote;television;tv,\"A person is undressing in the bathroom. The person walks into the living room carrying the jacket and turns off the tv. The person puts the jacket back on and walks out of the door.;This person takes off there jacket, turns off the tv, then puts there jacket back on and leaves the room.;A person is dressing and undressing and then picking up a book and leaving.\",c155 0.00 5.60;c008 17.60 24.10;c000 0.90 7.00;c132 5.50 14.80;c148 11.10 21.20;c006 20.90 26.00;c001 9.70 19.40;c117 14.00 19.90;c097 19.10 25.20,25.38\r\nA0MZ9,9PLL,Stairs,6,7,Yes,\"One person closes a window, then walks up the stairs with a phone in hand.\",phone;window,\"A person closes a window, then picks up a phone from a table to answer it.  As they walk up the stairs, they are talking on the phone.\",c089 0.00 10.20;c015 9.80 34.00;c019 13.10 34.00,32.83\r\nEGNZB,OUKK,Hallway,5,7,Yes,\"As the person walked into the house carrying a bag of groceries, the person put the bag down on a chair and started thinking about cooking dinner.\",bag;chair;door;groceries,A person walks out a door. They then return with a bag of groceries and place the bag on a chair.,c020 12.10 22.20;c130 17.40 23.40;c141 1.80 7.20;c008 2.30 8.20;c097 2.00 8.00;c023 11.10 20.00;c022 11.10 20.00,26.67\r\n2URXS,ZFCJ,Living room,6,7,Yes,\"A person is snuggling into a pillow, then sneezing into their sandwich.\",couch;food;pillow;sandwich;sofa,a person is sleeping on the sofa and sneezes on food;A person is trying to get some rest and then leans up to sneeze on a plate of food.,c078 0.00 26.90;c153 23.70 34.00;c122 0.00 27.20;c146 23.20 30.20,33.00\r\n10J88,BYF9,Dining room,7,7,Yes,A person in the dining room is running around a table. They stop running and start playing with their phone.,phone;table,Person is skipping around a table on the living room. they also begin to use their phone.,c015 0.00 21.00;c016 8.00 21.00;c150 0.00 11.00,20.17\r\nOZ5SV,HJJ4,Bedroom,7,6,Yes,A person is lying in bed reading a book. They get up and undress before looking out a window.,bed;blinds;book;clothes;floor;hoodie;jacket;window,\"A person is lying on a bed reading a book. Afterwards, the person puts the book down, gets up, takes off a jacket, and looks out the window.;The person is lying on the bed reading a book then gets up, takes his shirt of and lokks out the window.\",c032 1.90 21.00;c134 0.00 5.00;c092 5.90 21.00;c154 5.80 15.80;c002 8.60 15.20;c026 0.00 8.30;c028 2.70 8.50;c025 2.70 7.30;c001 9.50 16.20;c155 9.50 16.20,19.96\r\nF17JD,L4ZP,Stairs,6,6,Yes,The person is standing on the stairs in their clothes while walking towards the bedroom door.,door,A person is standing at the top of the stairs they walk down the stairs and go out the door.,c006 19.30 26.90;c008 16.60 23.20;c141 16.90 22.80;c097 17.60 23.60,27.12\r\nP4HXN,A8P9,Laundry room,7,7,Yes,A person is in the laundry room pouring detergent into the washer while grasping their laptop in one arm attempting to complete their homework.,clothes;laptop;laundry detergent;washing machine,\"A person walks into the laundry room, picks up a laptop from a stack of clothes, pours detergent into the washing machine while looking at the laptop, and then puts the laptop back on the clothes.\",c047 2.50 32.80;c049 26.80 33.30;c052 10.20 32.30;c005 0.80 22.10,33.42\r\nIYNUU,L4ZP,Stairs,6,6,Yes,A person is laughing and smiling while using the vacuum on the stairs. The person takes their phone from their pocket and takes a picture of themselves.,camera;floor;pants pocket;phone;picture;vacuum,A person vacuums a stair then takes a selfie.;A person vacuums the steps of their stairs.  They pull a phone out of their pocket and use the camera to take a picture of themself.,c137 0.00 19.90;c154 13.60 20.80;c087 23.50 29.80;c017 27.90 33.00;c018 18.10 23.90;c015 19.80 32.90;c127 0.00 19.40,32.46\r\nUF91R,XXN8,Kitchen,5,7,Yes,A person started out on their laptop completing homework. A person got up and walked towards the refrigerator. A person reaches into the fridge and takes an apple. A person goes ahead and consumes the apple.,food;homework;laptop;refrigerator;table,A person is standing at a desk and typing on a laptop. They then close the laptop and walk over to the refrigerator to open it and retrieve some food.,c142 12.30 17.40;c143 9.90 14.30;c046 7.30 12.10;c014 0.00 10.80;c052 0.00 10.80;c156 14.10 31.00;c063 9.70 17.50;c061 11.30 31.00,30.12\r\n03XSP,9PLL,Kitchen,7,7,Yes,A person in the kitchen is working on something on their phone. They are watching the door carefully. They pick up some shoes and a towel and place them onto a chair.,chair;door;phone;shoe;something;towel,A person is standing in a doorway while looking at their phone. They inspect the wall and then pick up a towel and a pair of shoes and place them on a lawn chair.,c037 21.40 29.60;c016 0.00 13.60;c056 26.80 32.30;c035 24.10 33.50;c015 0.00 29.80;c054 27.10 34.00;c034 21.90 31.60,33.46\r\nR77MC,38MV,Bathroom,6,6,Yes,\"One person is standing pouring water into a glass, while another is working at tidying up the space by putting trash in a box.\",bag;box;clothes;coffee;cup;glass;hair,\"A person is standing in the bathroom at the sink counter. Another person comes in without a shirt on and carrying a box. The original person in the room puts down a glass and walks out, and is followed by the second person.;A person is getting a cup of water from the sink. Another person comes in, sits on the toilet, and removes items from a box.\",c040 3.00 34.00;c109 13.70 20.90;c151 3.80 31.70;c110 3.50 10.20;c151 4.20 9.50;c041 5.20 10.00;c107 6.80 15.00;c154 27.40 33.00;c152 5.80 34.00;c039 22.40 29.20,33.33\r\nNVQ84,38MV,Bathroom,6,6,Yes,\"In the bathroom, a person is throwing clothes in the laundry bag.  Another person is drinking coffee while combing their hair.\",bag;clothes;coffee;comb;cup;hair;laundry,\"One person is combing there hair, while another one is tidying up the laundry then drinks coffee.\",c144 0.00 44.00;c021 4.10 12.60;c151 1.70 8.70;c000 4.30 38.60;c004 4.10 39.30;c020 4.10 39.50;c106 8.80 19.10;c154 21.80 29.50;c001 5.40 26.10,43.29\r\nWKP5N,38MV,Kitchen,6,6,Yes,\"One person is dressing in front of a mirror with a bright light, while another person is taking medicine, eating a large pill.\",cabinet;chair;clothes;cup;drawer;glass;jacket;medicine;mirror;pills;shirt;table;water,A person gets medicine out of a drawer and takes it with a glass of water.  Another person looks in a mirror while dressing and smiles.;A person is sitting then the person opens a cabinet and takes out some medicine. The person stands and takes some medicine with some water. Another person beings dressing in a mirror by putting on a shirt.;Someone is sitting at a table and takes some pills while someone else walks in shirtless and puts on a jacket.,c107 3.60 11.80;c106 3.30 16.10;c128 10.20 21.70;c094 17.20 26.30;c154 10.80 22.60;c113 18.10 25.80;c148 19.60 32.70;c148 12.10 27.60;c110 13.20 19.10;c129 7.60 24.40;c148 3.60 17.50;c011 0.00 7.90;c109 21.00 25.80;c154 4.60 33.00;c096 4.10 26.60;c106 13.70 24.50;c152 22.90 28.20;c129 7.00 15.90;c059 0.00 8.90,31.92\r\nG2QG2,PKND,Kitchen,4,7,Yes,\"A person is opening the vacuum cartridge to dump out all of the dust, while another person is cooking dinner on the stove.\",bag;food;pan;stove;table;vacuum,A person is making food to eat. While another person is making food on the stove as well.;Two people are in the kitchen. One person is cooking on the stove using a pan while the other person is cleaning out the vacuum.,c147 0.00 31.00;c023 9.10 15.60;c022 22.90 31.00;c009 21.70 27.60;c020 10.10 29.40,29.92\r\nV6LP3,KFGP,Bathroom,6,7,Yes,\"A person is eating some food while drinking a cup of coffee. The person puts the food and coffee down, and sits down on the toilet.\",chair;coffee;cup;dish;food;glass,This person is standing while eating snacks and drinking from a cup before sitting down.,c106 9.00 27.80;c061 0.00 27.10;c156 0.00 25.90;c151 0.60 8.00;c062 23.70 28.90;c118 0.00 28.50;c119 24.20 28.90;c059 28.50 35.00,34.42\r\nUGKZ4,KQI6,Living room,4,4,Yes,A person is holding their phone as they sneeze a couple of times then opens the bag of groceries.,bag;chair;groceries;phone;sofa/couch,\"A person sits in a chair, holding a phone and sneezes several times before grabbing a bag and taking something out of it.;This person is playing on there phone, then sneezes several times, then opens a bag of groceries.\",c023 23.40 30.50;c015 0.00 33.00;c153 6.20 11.50;c059 0.00 33.00;c123 0.00 33.00,32.12\r\n0NZVB,E57O,Kitchen,5,6,Yes,A person is drinking from a glass. The person puts the drink back in the fridge and close the door.,cup;door;glass;refrigerator;shelf,\"The person gets something from the fridge, drinks it, then puts it back into the fridge.\",c106 11.50 17.70;c107 16.80 33.30;c006 36.90 40.90;c008 4.10 10.50;c154 38.00 43.00;c081 34.60 40.10;c143 3.70 17.20,42.25\r\n1CITG,ID9V,Bathroom,6,7,Yes,\"A person walks into a bathroom and turns on the light. They grab a bottle of medicine, and run out of the room.\",light;medicine,\"Person leaving the bathroom, comes back in and turns on the light, picks up a medicine bottle before leaving again.\",c104 4.60 10.60;c128 9.60 32.00,30.79\r\nLMX0P,DLI2,Home Office / Study (A room in a house used for work),7,6,Yes,\"A person lies back in a chair, playing with their phone.\",chair;phone,A person is playing with a phone and twirling it around.,c015 0.00 6.70;c016 18.90 33.50;c059 0.00 35.00,33.58\r\n51O3C,DXDI,Stairs,7,7,Yes,\"A person is playing with a mirror by the the stairs. They are undressing by taking their jacket off, and then place their jacket in a box that is nearby.\",box;clothes;coat;mirror,A person stands in front of a mirror and begins undressing. The person the places the coat into a box and walks away.,c096 0.00 11.60;c155 2.70 13.70;c001 8.50 16.90,18.46\r\nEP19T,D0RU,Living room,5,6,Yes,A person is running from the doorway then holds a camera with standing completely still.,camera;doorway,A person runs into his room and takes a picture with his camera.,c097 3.50 8.70;c150 3.50 10.90;c087 14.20 26.30;c015 0.00 32.00;c016 22.00 32.00,31.33\r\nGWDF9,9PLL,Entryway (A hall that is generally located at the entrance of a house),3,7,Yes,Person comes running through the front door. They turn on the light and begin tidying the area.,book;doorway;floor;lights;shelf;something;table;toys;tv,\"A person runs into the living room. The person bends down and starts picking up things off of the floor, tidying it up.;Person in entryway, runs in room, turns on light, bends and picks up toys on floor and place on shelf and behind TV.\",c150 2.70 13.00;c127 10.20 34.00;c081 14.90 32.10;c030 18.30 26.90;c009 20.20 33.10;c028 15.10 24.70;c097 0.00 11.60;c030 31.90 35.00;c009 31.90 35.00;c028 31.90 35.00;c097 31.90 35.00,33.79\r\nRYRQT,ZAWX,Kitchen,7,7,Yes,A person eating a slice bread sneezes on a mirror hung on a door and then walks away.,door;food;mirror;sandwich,\"A person is standing in front of a mirror while eating. They sneeze then leave the room through a doorway.;This person is eating something, then sneezes, and then walks out of the room.\",c156 0.00 27.20;c153 12.20 18.60;c061 0.00 29.50;c097 25.40 31.10;c065 0.20 27.10;c067 0.00 31.70,30.75\r\n05GIA,WG9D,Bathroom,5,7,Yes,\"A person is seen opening a cabinet and sneezing. They begin looking for some medicine but pull out a towel, lying it on the counter.\",cabinet;mirror;sink;table;towel,This person appears to be handling a towel in the bathroom.;A person picks up a towel from a cabinet and puts it on a table,c034 6.70 13.00;c035 3.00 10.40;c154 4.80 11.40;c009 7.20 13.00;c113 0.00 12.20,12.33\r\nZCULX,HJJ4,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is drinking water and eating a sandwich, then the person starts smiling tries to read a book.\",book;cup/glass/bottle;food;sandwich,A person is drinking water and eating while reading a book at a desk.,c032 15.60 26.00;c065 5.80 14.00;c106 0.00 8.00;c156 5.80 14.00;c027 12.90 18.30;c063 5.60 10.00;c115 12.90 26.00,24.75\r\nPQYWB,0R3Y,Laundry room,6,5,Yes,\"A person is washing clothes while playing games on their phone. Then the person puts away their phone and, closing the cabinet, exits the laundry room.\",clothes;door;phone;towel,A man is texting on his phone while trying to do his laundry. He closes the door behind him and continuous on with his day.,c016 0.00 37.20;c001 1.90 15.60;c141 29.50 36.10;c015 0.00 47.00;c036 1.50 15.40;c035 1.50 15.60;c097 31.40 37.20;c008 29.80 36.10;c033 2.10 11.00;c034 6.10 10.70;c006 31.80 40.00;c008 44.00 47.00;c033 44.00 47.00;c034 44.00 47.00;c006 44.00 47.00,45.79\r\n70FXC,T7C3,Bedroom,6,6,Yes,A person is sitting on a computer chair laughing and holding a glass. The person then sips coffee from the glass.,chair;cup;food;glass;water,\"A person is sitting on a chair smiling holding a glass of water, they then take a sip of water.;person sitting in a chair watches a screen holding a glass, then drinks out of it\",c059 0.00 35.00;c107 0.00 35.00;c106 24.70 32.40;c152 0.00 23.30;c156 24.00 35.00,33.50\r\nC8WLX,D0RU,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,The person walks into the hall and looks at a mirror. They then sit down and look at their shoes.,box;doorway;hair;mirror;phone/camera;shoe;table,A person walks through a doorway and fixes his hair in the mirror. Then he sits down and begins putting on a pair of shoes.;A person enters the room and checks their hair in a mirror before sitting down and retrieving a pair of shoes from beneath a table.,c094 1.80 9.10;c151 19.50 27.50;c097 8.70 16.80;c144 12.10 23.90;c055 24.20 35.00;c011 23.00 35.00;c059 20.60 28.00;c015 2.00 9.10;c056 25.20 35.00,34.42\r\nUVMZ8,ZAWX,Laundry room,7,7,Yes,A person turns on the light while playing on their phone. The person then starts drinking something from a cup.,coffee;cup;dish;light;phone,\"A person holding a phone turns on a light switch and then continues to play with their phone. Then they pick up a coffee cup and drink from it.;A person walks down a hallway playing with their phone, and then turns on a light. They then lean on an appliance and drink some coffee.\",c015 0.10 6.70;c104 7.00 17.60;c106 5.30 14.80;c107 7.90 20.80;c120 18.30 32.00;c118 18.30 32.00;c016 0.00 32.00,30.54\r\nKAMP0,1TZV,Garage,4,7,Yes,A person sits in a chair and laughs while watching the reflection in a mirror.,book;chair;mirror,\"A person sits in a chair in the garage, looking at himself in the mirror and laughing.\",c059 0.00 27.00;c093 0.00 27.00;c094 0.00 27.00;c096 0.00 27.00;c149 0.90 27.00;c026 0.00 27.00,26.25\r\nNO0WS,C7O9,Pantry,7,7,Yes,\"A person is standing in their pantry eating a cookie. They begin to put away their groceries, and grab the broom to sweep up the cookie crumbs.\",bag;box;broom;closet/cabinet;floor;food;groceries;shelf,\"the person is standing the room, eating something, and adjusting all the groceries into the rack and cleaning the room\",c020 0.00 11.10;c130 7.00 18.70;c156 0.00 10.20;c062 6.20 17.50;c102 17.70 31.00;c024 14.20 19.90;c100 15.60 21.40;c023 0.00 10.50;c081 8.50 12.80;c081 10.70 15.80;c063 5.90 11.10;c022 6.20 19.30;c042 6.20 18.50;c043 6.20 18.50;c114 6.20 18.50;c040 7.10 13.20;c098 14.70 31.00;c127 14.80 31.00;c023 7.30 13.20;c081 12.90 19.10;c061 0.00 7.80;c063 0.30 4.90,30.29\r\nUWEWX,LTAC,Living room,7,6,Yes,Person is sitting on chair next to cabinet and washing dust of picture with wet cloth.,book;chair;paper;picture;towel,\"A person is sitting in a chair, looking at a picture and wiping it with a small towel.;Person sitting in chair looking and cleaning a paper.\",c059 0.00 31.00;c088 0.00 31.00;c026 0.00 31.00;c115 0.00 31.00,30.42\r\nOSTTS,ZAWX,Closet / Walk-in closet / Spear closet,5,3,No,Person is standing in closet eating sandwich looking at laptop.,closet/cabinet;laptop;wardrobe,\"THERE IS A PERSON MISSING WITH STUFF IN A CLOSET, THE PERSON STOPS A FEW TIMES TO LOOK AT A LAPTOP\",c051 0.00 32.00;c114 0.00 23.10,30.71\r\nLFU36,YA10,Kitchen,7,7,Yes,A person holding a laptop opens the refrigerator door  and then places the laptop on the stove before drinking water.,cup;door;food;laptop;refrigerator;stove;water,\"A person holding a laptop puts it on the stove, opens a refrigerator, and grabs a glass and drinks from it.\",c142 13.40 18.60;c047 0.00 12.60;c006 13.40 18.60;c106 14.10 28.00;c143 2.70 9.10;c049 7.20 13.30;c110 12.00 17.90;c063 11.80 17.90,27.42\r\n5TLQE,HR43,Laundry room,6,7,Yes,\"A person is seen snuggling with a book. They begin smiling and start to close the book, to find some food.\",book,\"This person is looking at a book in the laundry room, closes the book, then walks out.\",c025 16.90 22.90;c026 0.00 23.80;c027 0.00 4.50;c032 1.40 10.10,25.00\r\nI1OLQ,2RTW,Living room,6,6,Yes,\"A person walks through the door smiling, closing the door behind them with a handful of groceries. The other person is sitting on the sofa watching.\",bag;chair;door;groceries;lock;sofa;television;tv,\"A person opens a door and walks into a room ,closes the door and locks it .The person has a blue bag full of food .Another person warching tv sitting on a couch ,watches the first person with the bag.;A person enters through a door while holding a bag. Another person is already inside sitting and watching television. They then both watch more television.\",c006 8.40 14.60;c020 7.40 32.00;c123 14.00 32.00;c152 14.40 32.00;c097 6.40 11.80;c008 5.80 12.60;c132 0.00 14.90;c021 26.00 32.00;c059 14.40 32.00;c132 14.40 32.00,30.67\r\nPRQSR,D0RU,Living room,6,6,Yes,A person takes their shoes off and throws them in the corner on top of a pillow.  The person walks to the window and closes it.,corner;floor;pillow;shoe;window,guy walking takes off shoes then walks away and closes a window,c089 20.40 27.20;c057 1.60 9.70;c054 6.00 12.00;c053 6.00 12.00;c126 6.00 12.00;c058 6.00 12.00,31.29\r\n67RSR,ID9V,Bedroom,6,7,Yes,\"After awakening, the person is throwing a small vanity mirror on their bed\",bed;floor;mirror,\"A person is lying down on the bed. A person wakes up, and starts to look at themselves in the mirror. A person then drops the mirror on the bed.\",c134 0.00 8.40;c133 4.40 16.70;c096 14.80 25.90;c146 5.60 16.40;c093 18.90 24.30;c126 20.00 26.20;c135 12.50 19.10,29.04\r\nWVB7F,BYF9,Hallway,7,7,Yes,A person sneezes and puts a blanket on then takes some medicine.,blanket;medicine,\"A person is sneezing. The person then walks over, takes a blanket and wraps himself in it. The person then takes a bottle of medicine and fiddles with it.\",c128 19.10 30.80;c072 6.90 34.00;c073 2.50 18.10;c153 0.00 7.50;c129 27.80 33.30,33.38\r\n6ZTL6,OUKK,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person in a walk-in closet grabs some dirty dishes next to a book,  while they are undressing and sneezing, they turn off the light and walk out.\",cup;shirt;sweater,\"A person kneels down near a closet, takes off a sweater, sneezes, and then gets up and walks away holding a cup.;A person is holding a cup, while taking off a shirt. A person then begins to sneeze.\",,23.38\r\n1YC83,UO0Z,Living room,6,7,Yes,A person is sitting in the living room eating a sandwich.  The person puts down their sandwich and puts on their shoes.,couch;food;plate;sandwich;shoe;sofa;table,The person stood up and put on his shoes;A person is sitting on the couch eating a sandwich off a plate. Next the person stands up and puts their sneakers on. The person then walks away.,c068 0.00 7.60;c156 0.00 12.70;c055 10.20 23.00;c065 0.00 9.00;c069 0.00 9.00;c154 8.00 13.00;c123 0.00 11.00;c063 0.00 5.70;c062 2.00 9.20,22.29\r\n39850,WQ8Z,Living room,5,7,Yes,\"A person is closing a book, then snuggling with a blanket on  a chair in  a living room.\",animal;blanket;book;couch;sofa;table,\"Person sitting on couch reading book, puts book down, grabs blanket, snuggles with it, lays head on couch, animal licks person face, person looks at animal.;A person is sitting on a couch reading a book they close the book put it down grab a blanket and lay down with it while their cat walks up to them\",c072 13.50 18.90;c026 0.00 14.60;c123 0.00 15.50;c009 9.80 15.00;c025 9.10 13.70;c032 0.00 14.80,28.12\r\nLRTNA,T7C3,Living room,4,7,Yes,\"A person walks in, grasping an armload of clothes. They set some clothes on the table and start throwing the rest of them.\",clothes;table,A person is holding a pile of clothes then putting then on a table then throwing the rest of the clothes up the stairs.,c000 1.60 32.80;c001 10.50 28.20;c003 10.80 28.50;c009 8.60 30.40;c002 0.00 35.00,34.12\r\n68K01,HR43,Kitchen,6,7,Yes,\"One person drinks some medicine from a sack of groceries, then tidies up the kitchen with a vacuum.\",bag;cup/glass/bottle;floor;groceries;vacuum,A person is taking groceries out a bag and putting them away. A person then picks up a vacuum and cleans the floor.;A person places a bag of groceries on the counter. They pick up a vacuum and begin cleaning the floor.,c020 0.20 20.00;c022 0.00 7.90;c137 18.10 33.00;c130 2.70 15.00;c110 0.00 20.00;c106 5.90 15.30;c107 11.30 19.20;c109 14.80 19.90;c021 0.00 5.60;c127 24.40 33.00,31.58\r\n472B0,F56T,Bedroom,4,3,No,A person is awakening from the sofa and opening a book.,bed;book,\"A person lies in bed before sitting up and reading a book.;A person is laying in bed asleep, then then awaken and begin reading a book.\",c030 14.60 20.50;c146 0.70 12.60;c134 0.00 8.70;c135 11.10 33.00;c133 0.90 12.60;c026 14.30 33.00;c027 14.90 33.00;c032 21.70 33.00,31.92\r\n4UYGY,QB52,Bedroom,6,7,Yes,\"One person awakens, then runs to the wardrobe to get a phone.\",bed;phone;shelf,\"A person awakens on a bed, stands, takes a phone off a shelf and plays with it.;A person is laying in bed sleeping. They awaken, get out of bed, and pick up their phone from the closet shelf.\",c015 18.30 31.00;c016 18.30 31.00;c018 17.50 22.70;c146 8.10 19.30;c134 0.00 20.50,29.96\r\n998SY,T7C3,Stairs,6,6,Yes,A person is closing a laptop and then sitting on a blanket on the stairs.,blanket;floor;laptop,\"A person looks at a laptop on a blanket on the stairs, then closes it and picks it up and sits on the blanket.\",c046 6.90 12.20;c151 7.90 16.60;c047 5.70 35.00;c125 10.20 35.00;c050 4.70 12.60,33.50\r\nM1FNW,FNK4,Living room,6,7,Yes,A person is grasping their phone. The person starts playing on their laptop.,chair;laptop;phone;table,\"A person is talking on a phone, then takes a laptop off a table and works on it while sitting in a chair.;A person sits in a chair working on their laptop.\",c051 1.50 32.00;c052 3.10 32.00;c059 0.00 32.00;c049 2.10 7.70;c152 27.10 32.00;c050 1.80 6.90;c047 2.00 6.90;c015 0.00 32.00,30.62\r\nLYO14,R1OT,Kitchen,4,7,Yes,Person is standing next to table pouring water in glass cup.,cup;dish;glass;pitcher;table;water,\"A person pours water from a pitcher into a glass. The person then stares at the glass of water, still on the table.\",c009 8.80 15.10;c108 0.40 15.10;c119 0.00 16.00;c118 0.10 16.00;c120 0.00 4.10,19.96\r\nHJ8U7,YMXV,Bedroom,3,6,Yes,A person is dressing in the entryway and there is a pillow on the floor.  The same person then starts drinking a glass of water while looking at the picture on the wall.,clothes;floor;glass;mirror;picture;wall;water,\"The person is buttoning a shirt in the bedroom. The person is then shuffling their feet on the floor (near a pillow), picks up a bottle of water, and drinks it while looking in the mirror on the wall. The person then puts the water back on the ground.\",c106 15.70 28.30;c148 0.00 13.40;c109 28.60 33.00;c096 18.60 29.60;c110 14.60 20.50,32.42\r\nTUPTT,BYF9,Other,4,7,Yes,A person is standing by the sink. The person walks through the door and sits down to put their shoes on.,door;mirror;shoe;sink,\"A person is washing up at the sink, then the person sits on a couch to put shoes on.\",c053 16.80 34.00;c096 0.00 10.00;c055 25.30 34.00;c097 10.20 16.90,33.42\r\nZXSRR,HR43,Kitchen,5,6,Yes,\"One person grasps a book from a shelf, then sits in the kitchen eating a sandwich and smiling at the book.\",book;food;laptop;sandwich,A person comes to stand by a laptop then begins eating a sandwich as they look at a book.,c065 5.80 37.00;c067 7.10 37.00;c026 0.00 37.00;c032 0.00 37.00;c156 7.30 37.00;c061 4.90 37.00;c063 4.90 37.00;c069 4.90 37.00;c049 0.00 4.60;c029 12.80 21.70;c030 0.70 37.00,36.46\r\n3Q3YY,F56T,Hallway,5,7,Yes,A person closes a door. A person is putting a vacuum into a box for storage.,box;closet/cabinet;door;vacuum,\"A person is coming into a room, putting a vacuum into a box, and then putting the boxed vacuum into another room and shutting the door before walking away.\",c039 22.50 29.80;c040 11.90 20.40;c040 26.00 37.60;c097 0.40 6.00;c114 33.80 41.60;c154 36.40 42.30;c041 14.70 22.70;c008 0.00 6.00;c043 11.70 43.40;c141 1.30 13.80;c042 11.70 43.40;c006 1.30 13.80,47.04\r\nCXGSD,ENC8,Hallway,5,5,Yes,\"One person stands up and throws a pillow toward the doorway, sneezes, then starts tidying up stray clothes.\",clothers;clothes;floor;pillow;television,Person is sitting watching television when he throws a pillow on the floor and walks down the hall to begin gather clothes.;A person sitting on the floor holding a pillow decides to get up and pick up clothing.,c000 5.30 29.20;c002 16.50 28.90;c080 1.50 13.50;c126 5.70 13.40;c001 16.50 29.70;c076 6.20 13.20;c154 4.30 11.10;c125 0.00 8.30;c132 0.00 8.40;c127 15.00 29.90;c079 6.60 11.40;c077 8.20 13.50;c004 14.80 29.50,32.88\r\nXQ4RB,JVLO,Kitchen,5,7,No,A person is sitting on the floor grasping a bag. Another person turns on the light and smiles.,bag;chair;doorway;fan;floor;light;switch,\"A person carrying a backpack sits down on a chair and puts the backpack on his lap. Afterwards, another person flips a switch to turn on a fan and a light.\",c104 23.60 29.20;c020 0.00 21.90;c151 0.00 10.40;c152 23.60 33.00;c154 21.30 33.00;c059 4.50 23.20;c097 22.10 27.10,32.29\r\n8GQJO,L4ZP,Recreation room / Man cave,6,6,Yes,A person sneezes in a chair with a pillow behind their head. They then grasp their head.,chair;head;pillow,\"A person sits in a chair with a pillow behind his head.  They sneeze, then put their hands on their head and hold them there.\",c059 0.00 24.00;c153 1.40 9.30,23.08\r\nNC1OC,L4ZP,Living room,6,6,Yes,\"Person walks into the living room, and turns on the television.  Person then sits down on the couch.  Person then starts to smile at something on the television.  Person the pulls out homework and begins to work on it at the coffee table.\",book;chair;homework;sofa;table;television;tv,A person walks into the room carrying some homework.  They turn on the television then sit down on the sofa.  They put their homework on a side table and begin working on it.;Someone walks up to a tv and turns it on. Then they sit on the soda and start doing homework.,c059 17.40 26.90;c151 16.70 26.70;c009 15.70 25.50;c132 16.20 26.90;c123 17.60 27.90;c014 27.20 49.00;c152 24.80 31.00;c115 0.00 26.40;c149 24.10 29.10;c028 16.20 21.60;c131 15.00 20.20;c032 28.40 35.80;c027 27.00 33.60;c026 25.30 31.20;c116 20.30 26.90;c145 28.40 49.00,47.83\r\nENT4H,L4ZP,Living room,6,6,Yes,A person takes a seat by a desk and begins working on a laptop.,computer;couch;desk;laptop;sofa;table,\"A person comes into the room sits on the sofa then uses a laptop sitting on a small desk.;This person sits on the couch, then works on the computer.;Someone sits on a couch and goes on begins typing on their laptop.\",c052 4.40 33.00;c014 2.80 33.00;c151 1.20 6.80;c123 1.50 33.00,32.12\r\n3G3PH,4I2W,Bedroom,3,4,Yes,Person is sitting in a chair and fixing a shelf.,cabinet;chair;shelf,Person looking into a cabinet moving items around in the cabinet while sitting in a chair.;A person is sitting on a chair and doing something in a cabinet,c059 0.00 31.00;c114 0.00 31.00,29.92\r\nW8ZTH,BYF9,Home Office / Study (A room in a house used for work),3,6,Yes,Person is lying on floor looking at box with laptop on top of it and sneezing.,floor,A person is lying on the floor in a home office type of room.  The person sneezes twice but never gets up off the floor.,c124 0.00 18.00;c153 3.30 14.90,16.96\r\nUUX4G,TGGT,Home Office / Study (A room in a house used for work),1,7,Yes,\"The person sat at the home office desk and ate food.  The person then turned on the lamp light, and began working on the computer.\",chair;desk;food;keyboard;light;monitor;table,\"Person walks up to desk and sits down and takes a bite out of a sandwich.  Person then turns on the light and begins using the Laptop.;A person walks up to a desk and takes a seat in a chair and eats something from the desk. The person reaches over to a lamp, and turns it on, then starts typing on a keyboard while looking at a computer monitor.\",c063 3.10 13.30;c011 1.70 32.00;c156 3.10 14.50;c104 14.90 20.90;c014 18.70 32.00;c151 0.00 6.60;c059 2.80 32.00,30.92\r\nXEGTL,YA10,Garage,5,7,Yes,\"One person tidies up around a chair with a broom, then laughs into a mirror.\",broom;chair;floor;mirror,The person is sweeping the garage floor. When the person finished sweeping they leaned the broom up against a chair and turned around to look in a mirror. While looking in the mirror the person was pointing at himself in the mirror and laughing.,c098 0.00 22.30;c102 0.00 20.60;c096 20.10 31.00;c099 15.70 22.60;c094 19.70 31.00;c149 22.60 28.90;c127 0.00 19.10,30.46\r\nVEV4O,Z68L,Recreation room / Man cave,6,7,No,\"A person throws a pillow, A person holds onto clothing.\",clothes;pillow,A person walks into the living room holding a shirt and throws a pillow onto a couch but misses and it lands on the floor,c000 1.10 27.90;c080 7.30 14.40;c076 2.40 11.90;c077 6.70 13.10,29.58\r\nG06QC,C7O9,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person drinking water, puts a broom back and takes out the vacuum.\",broom;cup;glass;vacuum,A person is holding a broom and takes a drink from a glass. The person puts the broom in the closet and gets out a vacuum.;A person is drinking a glass of water while holding a broom then takes vacuum out of closet.,c099 12.60 18.70;c106 0.00 5.30;c098 0.00 16.60;c138 16.80 25.00;c107 0.00 31.00,29.83\r\n4I00F,C7O9,Kitchen,6,6,Yes,\"The person is opening packages of groceries by the stove, then proceeds to fix a sandwich.\",bag;box;bread;counter;food;groceries;sandwich;stove,\"A person in a closet takes out some food and places it on a counter .The person proceeds to fix the food ,the person opens the bread.\",c066 0.00 29.00;c039 13.90 21.00;c020 18.10 23.50;c022 25.90 29.00;c061 4.90 9.70;c130 0.00 3.50;c042 9.30 18.20;c063 0.00 13.30;c021 20.10 27.90;c044 9.40 18.30;c041 9.50 15.80;c062 0.00 18.70;c040 10.10 17.80;c023 3.20 12.00;c043 6.60 15.90,28.08\r\n38NUC,9PLL,Living room,4,7,Yes,\"A person is in a living room  snuggling a blanket while sitting near a desk, they then start eating something out of a glass bowl.\",blanket;bowl;chair;food;medicine;table,A person is sitting in a chair with a blanket over them. They pick up some medicine and eat it.;A person sitting in a chair wrapped in a blanket .The person reaches out and picks up a piece of food and takes a bite.,c072 0.00 17.70;c156 13.10 33.00;c059 0.00 33.00;c061 16.20 33.00;c063 15.20 20.80;c011 0.00 33.00,32.42\r\nPRV4N,Z68L,Home Office / Study (A room in a house used for work),6,7,Yes,A person is standing by a desk holding a book and a glass.  The person puts the glass on the desk.,book;cup;desk;glass;table,\"A person walks over, takes a glass off a table, sips some while reading homework. The person then places the glass down and continues reading the homework. The person then walks away.\",c027 17.00 40.00;c009 13.00 18.00;c107 3.00 17.00;c026 0.00 46.00;c032 4.90 42.50;c106 10.10 15.60;c110 2.70 8.70;c109 11.60 18.30;c115 2.00 44.30,44.67\r\nCB1Z2,YMXV,Home Office / Study (A room in a house used for work),4,5,Yes,Person is sitting on chair doing homework. Another person is leaving room while holding box.,book;box;chair;doorway;homework;paper,A person is sitting in a chair writing in a book with a pen. Another person in the same room walks out while holding a box.,c040 16.90 22.00;c059 0.00 17.90;c145 0.00 17.90;c097 17.50 26.20;c026 0.00 18.20,31.17\r\nPWW6X,ZSRZ,Living room,6,7,Yes,\"One person stands and opens, then closes, a laptop on a table. A sandwich and some dishes are on the table.\",dishes;laptop;sandwich;sofa/couch;table,A person is sitting down then opening and closing a laptop and touching their sandwich.,c046 7.80 12.00;c048 2.00 7.40;c011 0.00 10.30;c154 1.90 7.70;c123 0.00 3.50,11.08\r\nRV48T,2RTW,Living room,6,6,Yes,A person runs in while holding groceries then stops to look at the television playing in the living room.,bag;door;groceries;television;tv,A person enters a room though a door carry a book bag and closes the door.The person stops and starts watching television.;A person walks through a door and watches TV.  That person then closes the door and holds a bag.,c020 2.70 32.00;c132 0.60 32.00;c097 0.30 5.80;c006 1.80 11.00,30.58\r\nXYTEU,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person takes a pile of clothes from a desk. Smiling, the person looks out the window.\",blinds;clothes;clothing;hair;hamper;window,A person is tidying up some clothes from a hamper. The person looks out the blinds out the window. The person adjusts their hair.,c092 10.10 30.00;c000 2.40 30.00;c004 2.40 30.00;c002 3.10 14.10;c144 24.00 30.00,29.17\r\nK4LQP,2RTW,Living room,6,6,Yes,\"A person holding a bag, gazes at the television, and taking a step forward.\",bag;cooking;television,A person holding a bag stands in the living room watching television.  They walk closer to the television to get a better view.;a person is watching a cooking show on television,c020 0.00 31.00;c132 0.00 31.00,30.42\r\nPV856,3VLX,Garage,6,7,Yes,\"A person opens a door in their garage and retrieve a broom from it. They take it and exit through the doorway, walking strangely.\",broom;door,A person opens a door and enters the garage through a doorway. Walks down stairs and across the room to pick up a broom then walks laboriously back up the stairs with it and through the doorway again then closes the door.,c097 0.20 6.00;c006 2.60 7.30;c008 27.70 33.30;c098 11.70 45.00;c141 0.00 8.80;c100 10.80 45.00,43.96\r\nX16WJ,WG9D,Other,6,5,Yes,\"One person sits down with a sandwich to work on some homework, drinks something from a glass, then leaves.\",chair;cup;dish;floor;food;glass;sandwich,\"A person sits down in a chair, puts down their drink , takes a bite of sandwich, picks up the drink ,takes a sip and then gets up to walk away.;A person sitting down in a chair and holding a plate and cup, puts the cup on the floor then takes a bite of a sandwich, then picks the cup up and takes a drink, then gets up.\",c109 0.00 4.30;c151 0.00 3.80;c118 0.00 16.00;c106 5.00 12.90;c065 0.80 6.70;c154 11.60 16.00;c059 0.00 2.80;c110 3.60 11.30;c061 0.00 16.00;c120 4.10 9.90;c107 0.00 3.30;c156 1.80 6.40,14.75\r\nOPSC0,2RTW,Living room,6,6,Yes,A person is sitting at a desk. Another person is putting groceries down on a table.,bag;desk;food;groceries;table,People comes in with a bag places food on the table and began it prepare it to eat.,c020 0.00 6.00;c130 0.30 32.00;c009 2.60 32.00;c062 3.10 32.00;c014 1.30 32.00,30.67\r\nNNG97,HR43,Home Office / Study (A room in a house used for work),7,7,Yes,A person throws a book onto the shelf and grasps a laptop.,book;laptop;shelf,A person puts a book on a shelf. The book falls off and the person puts the book back on the shelf. The person picks up a laptop and watches something on the screen.,c081 1.40 6.60;c028 0.60 6.40;c047 9.30 30.00;c051 11.30 30.00;c026 8.00 30.00;c031 0.00 2.60;c050 9.00 14.00;c052 10.00 30.00,28.50\r\nQCIV0,HJJ4,Stairs,6,7,Yes,\"A person is sitting by the stairs eating some food. They begin dressing by putting a jacket on, and then they look up and turn on the light.\",chair;clothes;food;light,A person is sitting in a chair next to a staircase eating. The then put their coat on and turn on a light.,c062 2.60 7.90;c104 15.20 21.00;c156 0.00 7.70;c001 5.10 16.00;c059 0.00 23.00;c000 4.80 18.30;c063 0.00 7.80;c148 4.80 19.00;c061 0.00 7.80;c002 4.30 18.80,21.83\r\nXUTJZ,T7C3,Bathroom,6,7,Yes,\"A person is grasping a broom, working in the bathroom doorway and looking out a window.\",broom;clothes;doorway;floor;window,Person sweeping outside a door in the hallway with a broom while looking into a room out the window,c098 0.00 36.00;c092 12.80 24.00;c102 0.00 36.00;c127 0.00 36.00,35.12\r\nOJVOV,4I2W,Garage,7,7,Yes,A person awakens in their garage sitting on a chair holding a towel and a mirror.,chair;mirror;towel,\"A person holding a mirror is sitting on a chair while holding a towel, then rubs that persons eyes.\",c093 23.10 31.00;c096 23.20 31.00;c033 21.10 31.00;c059 0.00 31.00;c038 23.40 31.00;c095 23.40 31.00,29.54\r\nO6DZ0,0KZ7,Bedroom,6,7,Yes,\"A person is tidying the mirror with a towel, and then starts playing air guitar, whipping the towel around.\",mirror;towel,A person is washing down a mirror with a towel and then begins to play air guitar with the towel.,c095 0.00 13.90;c033 0.00 28.00;c038 0.00 13.90;c094 8.10 28.00;c096 0.00 28.00,26.92\r\nML12Q,XXN8,Living room,7,7,Yes,A person is playing video games on the television while sitting on the sofa. The person begins laughing.,floor;game;sofa;television;video,\"A person sat down in front of a television.  The person then began to pretend to play a game.  The cat, not being fooled, walked into the frame and ruined the video.\",c131 0.80 28.00;c149 4.60 18.20;c154 25.80 32.00;c152 0.00 24.60;c125 0.00 30.40,30.58\r\n5ZGRN,4OHY,Kitchen,5,7,Yes,A person is putting food in a cupboard while smiling. They take out a sandwich from their bag.,bag;cabinet;food;sandwich,A person opens a cabinet and proceeds to put a bunch of food items into it.  A person then closes the cabinet and takes a sandwich out of a bag.,c021 0.00 6.90;c062 1.20 13.00;c069 3.40 19.30;c152 0.00 5.50;c154 7.00 21.30;c113 0.00 6.40;c112 9.60 15.80;c063 15.40 20.00;c061 15.80 30.00,28.92\r\nM4D35,WG9D,Kitchen,4,4,Yes,\"A person is holding their phone in the pantry. They start dressing by putting a jacket on, and then they grab a sandwich from the pantry.\",clothes;cup;food;jacket;phone;shelf;shirt,Person with a phone walked over pick up a jacket putting on the jacket and then go over to a table and pick of a cup.;The person is holding something (phone?) in his hand.  He picks up a shirt and puts it on. Then the person crosses the room and picks up a cup.,c015 0.00 13.00;c148 1.80 11.30;c063 9.90 13.00,12.29\r\nB76OZ,1OHU,Bedroom,6,1,No,A person is closing a medicine container while playing around with a glass cup.,bed;glass;medication in bottle;medicine;pillows;plastic up,\"A person is laying on a bed, smiling, tapping the finger on a jar.;This person is relaxing on a bed, propped up by pillows,  and tapping a bandaged finger on a glass while smiling.\",c152 8.80 16.20;c134 0.00 31.00;c107 0.00 31.00;c149 9.00 31.00,30.50\r\n2JWHI,2Q9D,Hallway,6,7,Yes,\"A person is grasping the doorknob to the laundry room, but cannot open it. The person gives up, throws their hands in the air, lays on the floor and covers up with a blanket.\",bag;blanket;clothes;doorknob;floor;hand,A person walks to a door holding a box. The person turns the doorknob but the door doesn't open. The person lays on the floor and snuggle with a blanket.,c141 1.50 10.00;c124 10.40 31.00;c126 8.00 13.50;c072 11.30 31.00;c024 7.80 12.40;c020 0.00 13.80,30.17\r\nHEOJM,JVLO,Bedroom,6,7,Yes,A person is throwing a pillow on the floor then watches the coffee on the table intensely.,cup;doorway;floor;pillow;table,\"A person walks into a bedroom, takes a pillow off of the bed, and throws the pillow on the floor. The person then stands in front of a table and looks at a cup.\",c126 2.70 9.90;c076 0.80 9.90;c077 3.70 10.30;c079 0.80 7.40;c080 2.70 9.70;c097 0.00 4.00,31.46\r\nZS2WD,3H6W,Living room,5,7,Yes,A person throws a pillow towards the sofa then leaves with their homework.,couch;paper;pillow,A person throws a pillow on the couch and then grabs some papers from the table,c080 0.10 5.20;c117 2.40 7.70;c076 0.00 4.75,17.33\r\nR4ENI,DBGJ,Laundry room,6,7,Yes,A person is holding a laptop and looks out the window. They sit down in a chair and begin drinking water and eating a sandwich.,chair;cup/glass/bottle;food;laptop;sandwich;water;window,A person holding a laptop opens window.  They sit down then drink some water and eat a sandwich.,c047 0.00 14.80;c106 10.90 17.80;c156 15.00 22.70;c090 3.00 12.10;c059 8.50 31.00;c065 15.90 21.20;c068 17.10 25.20;c092 3.10 11.60;c107 11.80 18.80,30.04\r\nDYGB7,YMXV,Bedroom,5,5,Yes,A person is in their living room sitting on a pillow and doing their homework. The person sneezes and starts tidying up.,floor;homework;paper;pillow;towel,person sitting on pillow on a floor gets up dusting floor,c116 6.60 13.20;c154 14.90 21.30;c127 13.20 32.00;c037 11.60 17.20;c079 27.40 32.00;c035 11.50 17.20;c153 5.80 11.30;c033 11.90 32.00;c076 27.90 32.00;c038 13.50 21.00;c038 17.90 30.50;c077 27.70 32.00;c125 0.00 19.30,30.58\r\nDFVXX,4I2W,Kitchen,6,7,Yes,A person is sitting near a refrigerator.  Then a person is leaving with a kitchen towel.,chair;towel,\"A person is sitting down on a chair,  they then get up grab a towel and begin to clean their face.;The person is sitting in the kitchen in a chair. The person stands up and takes a towel with them. The person leaves the room.\",c033 20.00 31.00;c035 20.00 31.00;c154 20.00 31.00;c059 0.00 24.00;c037 20.60 31.00,29.88\r\nXRMVW,ENC8,Hallway,4,6,Yes,\"One person throws a book in a chair, then grasps a glass and smiles.\",book;cup;doorway,A person is walking around smiling with a book in a hallway they put the  book on a chair and  pick up a  glass and then they leave the hallway.,c107 4.40 23.20;c152 5.90 21.80;c097 16.00 25.10;c026 0.00 5.50;c110 0.00 6.50,29.00\r\n4QSRS,ZAWX,Living room,5,5,Yes,A person puts a book down onto the table. The person then grasps a towel from the same table and runs out of the basement.,book;table;towel,Person is standing holding a book before putting it on a table and picking up a towel on the way out of the room.,c009 8.30 14.60;c033 12.50 32.00;c031 7.80 14.90;c035 10.80 27.20;c028 8.60 14.10;c032 2.40 7.30;c026 0.00 12.70,31.08\r\n342XO,Q4IF,Stairs,6,7,Yes,\"A person sits on the stairs, drinking a cup of coffee. The person takes off their shoes and throws them into the corner.\",coffee;corner;cup;dish;shoe,A person lying on the stairs drinks a cup of coffee.  They put the coffee cup down and begin taking off their shoes and throwing them on a pile of clothes at the corner of the stairs.,c106 0.00 27.40;c107 0.00 27.70;c109 23.20 29.40;c057 25.90 34.00;c058 27.00 33.10;c118 0.00 28.40,32.75\r\nTLDA3,YMXV,Bedroom,6,6,Yes,A person smiles as they put away groceries. They take their phone out to check a message.,groceries;phone;shelf,\"A person places some items under a desk, sits on a bed, immediately stands up, and begins playing on a phone.\",c130 1.50 8.60;c016 6.70 33.00;c151 5.70 10.90;c154 7.20 12.80;c081 3.30 8.90;c015 0.00 3.30,32.12\r\n9PWEK,CCI9,Other,6,6,Yes,One person with a camera watches and eats something as another person works on a broken light in the entryway.,food;hand;light;sandwich;something;wall,One person is touching something on  a wall and another person is eating food;A person is reaching for something on the wall and another person standing beside her eating.,c156 18.60 36.00;c061 3.90 10.50;c065 0.00 36.00;c067 0.00 36.00,34.50\r\n8FOD6,YMXV,Bedroom,3,6,Yes,\"Person is opening medicine cabinet, another person is washing television with glass cleaner.\",cabinet;medicine;television;towel;tv,A person is taking things out of a cabinet and another person is cleaning a television screen.;A person takes something out of a cabinet while another person wipes off a tv with a towel.,c038 16.40 33.00;c128 0.00 15.20,31.96\r\nZRITA,5LWB,Home Office / Study (A room in a house used for work),6,4,Yes,One person is lying on a small sofa with a sandwich and another person is tidying up a messy desk with a picture on it.,chair;desk;food;paper;phone;picture;sandwich;sofa;table,\"A person is lying on the couch, eating a sandwich. Another person is sitting at a desk in front of a computer, throwing pictures on the floor.;Two people in a room, one on sofa eating, the other at a table tossing items from table.\",c065 0.00 12.00;c122 0.00 14.60;c156 0.00 11.60;c059 0.00 25.00;c115 0.00 4.90;c115 2.90 7.90;c115 4.70 9.60;c011 0.00 25.00;c061 0.00 12.20,23.96\r\nKPHP5,ZAWX,Bedroom,5,7,Yes,A person is seen eating and turning on a light. They sit on their bed and snuggle with a blanket.,bed;blanket;clothes;doorway;food;light;sandwich,\"A person is eating a sandwich. A person then sits on a bed and continues eating the sandwich. A person then begins sneezing.;A person is eating a sandwich and turning on a light, they then sit on a bed and sneeze on a blanket.\",c070 23.40 32.00;c135 9.50 32.00;c156 0.00 24.30;c151 7.90 14.10;c065 0.00 26.00;c153 23.90 32.00;c104 2.30 10.40;c000 23.70 32.00;c061 0.00 11.50;c067 0.00 10.70;c097 0.00 11.00,30.58\r\nMTLT3,LWUV,Living room,5,6,Yes,\"A person is watching television in their study. They sneeze, grab a book and leave.\",book;door;sofa;television,\"A person is sitting on a sofa watching television. That same person, sneezes, picks up a book and walks out the door.;Person sits on couch, coughs, gets up and walks out the door.\",c153 23.30 32.40;c006 31.20 37.00;c008 30.40 35.70;c123 0.00 33.30;c132 0.00 33.20;c030 27.70 33.90;c026 28.10 36.10;c097 31.50 37.00;c141 31.90 36.10;c154 28.60 34.30,36.25\r\nM0AS3,H8N1,Bedroom,6,6,Yes,\"A person is grasping their medicine tightly, they begin drinking it while looking out the window.\",cup/glass/bottle;medicine;window,A person drinks coffee as they look out the window.,c092 0.00 31.00;c106 1.90 12.90;c107 1.80 13.20,30.08\r\nO3SQK,5LWB,Laundry room,5,7,Yes,A person sneezes before putting a pillow on top of the washing machine. Another person is eating food.,chair;dish;food;pillow,A person is holding  a pollow in the doorway while another person is sitting down eating a plate of food.,c076 0.00 26.00;c061 1.60 26.00;c156 5.90 26.00;c118 1.60 17.10;c059 0.00 26.00;c153 15.00 21.80,24.58\r\n7SAFU,LTAC,Bedroom,6,6,Yes,A person is awakening to a light and tidying a broom and towels.,bed;blanket;broom;clothes;floor;light;towel,A person is sleeping on a bed then wakes up when the light is turned on.  They then proceed to grab a broom and sweep the floor before pulling a towel off the door and folding it.;Person getting up out of bed and beginning to sweep around the room and folding a towel.,c037 26.70 36.00;c098 10.40 24.20;c146 1.00 7.10;c134 0.00 4.80;c133 1.70 8.10;c127 10.40 24.80;c000 26.20 36.00;c102 10.40 36.00;c033 26.00 36.00,34.96\r\nD1TY3,D0RU,Bedroom,2,5,Yes,\"One person takes a picture and leaves the room, while another person plays under a blanket.\",blanket;doorway;picture,A person in bed is waving the blanket back and forth in front of her face when someone else comes into the room and gets a box from near the television.,c070 0.00 36.00;c083 21.00 28.00;c097 18.00 24.30;c072 0.00 17.70,34.75\r\nX75PJ,XKTB,Hallway,3,7,Yes,\"A person is sneezing while running in place, then taking a picture with a camera and finally turning off a light in a hallway.\",camera;light;phone;picture,\"A person is running in place and sneezing, they then pull out a camera and take a selfie. Afterwards they walk out and turn off the light.\",c015 14.10 23.80;c087 18.40 23.80;c105 24.80 29.00;c153 3.00 11.70;c150 0.00 12.40,28.33\r\nAXKNF,KQI6,Dining room,7,7,Yes,\"A person is pouring some water into a glass, then leaves to grab a broom.\",broom;cup;floor;glass;table;water,\"A person picks up a bottle of water from a table and pours it into a cup, the walks away to grab a broom and begins sweeping.\",c108 6.40 12.50;c098 26.50 33.00;c100 26.40 31.30;c102 28.80 33.00;c127 24.80 33.00;c009 16.20 23.20,31.83\r\nW1KJ9,HJJ4,Recreation room / Man cave,3,5,Yes,A person is sitting in the recreation room at the desk smiling while trying to fix the light.,chair;light,A person unscrews a lightbulb while sitting.,c103 0.80 18.60;c059 0.00 20.00,18.54\r\nXP305,5LWB,Laundry room,4,5,Yes,A person is laughing and throwing a pillow on the shelf.,chair;floor;pillow,\"A person sits down and then stands up and picks up a pillow and throws it.;A person is sitting down on a chair, then then grab a pillow, throw it on the floor and laugh.\",c080 10.40 17.30;c149 14.60 19.00;c151 4.60 9.20;c154 7.10 12.50;c059 14.60 19.00;c126 12.90 17.80,17.88\r\nX8XQE,UTMU,Kitchen,7,7,Yes,\"A person is throwing away rotten food, then cooking dinner and finally using a camera in a kitchen.\",cabinet;food;garbage can;phone;picture;shelf;stove;trash,\"A person walks into the kitchen, throws something away, cooks something on the stove, and then takes a picture with their cellphone camera;A person walks into the kitchen and puts trash in the garbage can before shutting the cabinet. Afterwards, the person walks over to the stove top , stirs some food, takes out a their phone, and takes a photo.\",c112 7.90 13.80;c147 12.80 29.70;c015 31.20 38.80;c016 29.50 41.30;c087 31.60 40.30;c082 0.50 12.10,42.25\r\n1NT8P,XXN8,Bathroom,6,6,Yes,A person is tidying up a desk when they come across a picture and begin laughing.  The person then moves to a mirror and checks themselves out.,brush;hair;jar;makeup;mirror;picture;ponytail holder;table,The person placed objects in a basket then looked in a mirror and adjusted their hair.;The person is putting her makeup away and pulling her hair back in a ponytail.,c093 0.00 14.90;c096 8.00 22.10;c152 9.70 20.80;c012 23.00 31.10;c149 8.60 27.30;c144 16.30 25.40,33.17\r\nWWPEN,2RTW,Bedroom,6,6,Yes,A person is playing a game on a smartphone. The person sneezes. The person moves a vacuum out of the way and then opens a wardrobe.,bed;closet;clothes;door;man;phone;vacuum,\"A person is in a room, lying on a bed and playing a game on a cell phone. After a few seconds, the person gets up from the bed, walks to the closet, opens the door, and looks for clothes.;a man laying in bed playing on a phone, gets up and grabs a vacuum.\",c113 18.00 24.60;c154 8.00 14.60;c015 0.00 15.20;c008 16.90 24.20;c000 26.60 30.00;c134 0.00 13.00;c141 18.10 23.10;c016 0.00 12.10;c097 21.10 28.40,29.33\r\nVHOYB,EA2K,Laundry room,5,6,Yes,Person A is in a pantry fixing a faulty camera.  Person A puts down the camera onto a pillow and closes the door.,camera;door;floor;phone;picture,A person is sitting on the floor and takes a picture while smoking.,c018 0.60 10.20;c087 4.70 14.60;c125 0.00 20.00;c016 0.30 20.40;c006 17.00 27.40;c017 14.00 20.30;c015 0.40 19.80;c141 17.60 26.00,30.21\r\nZUU2X,KQI6,Bedroom,5,7,Yes,A person is standing in front of the television playing video games.  Another person walks in the door with a bag in their hands and turns on the light.,backpack;bag;bed;doorway;laptop;light;phone;television,\"Someone is sitting on their bed using their phone with their laptop and tv next to them turned on. Another person walks in and turns on the light and puts a bag on the sofa and his backpack next to the bed.;A person is sitting on a bed in a dark room, playing with a phone while the TV is playing in the background. A second person comes in and turns on the light. Finally, the second person puts a bag next to the bag.\",c020 14.20 22.50;c022 19.60 25.30;c015 0.00 15.10;c016 0.00 14.80;c135 0.00 32.00;c051 1.90 12.00;c097 9.30 16.20;c104 14.70 20.00,30.79\r\nCPH1Y,WQ8Z,Kitchen,5,7,Yes,A person takes something out of refrigerator and starts drinking it. Then they start laughing before they turn off the light.,cup;refrigerator,A person gets a drink out of the refrigerator and takes a sip. Then the person walks out of the room and turns off the light,c142 7.70 13.70;c143 6.20 12.60;c110 5.20 10.80;c106 7.90 18.30,24.46\r\nUTR56,YA10,Bathroom,4,5,Yes,One person holds a doorknob while another is sitting with a camera.,camera;doorknob,One person is sitting on the sink talking to someone else that is standing.,c141 16.90 23.50;c154 0.00 32.00;c015 0.00 32.00,30.92\r\n9ZQ0R,QB52,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person working in their home office is grasping a phone they're holding to their ear.  They take a sip of a beverage in a class on their desk, and adjust some homework near them.  They stop talking on the phone and sneeze.\",chair;computer;cup;desk;paper;phone;table,A person is sitting at  desk talking on the phone watching a computer. A person then begins to sneeze.;A person is sitting at a desk using a computer talking on their phone. they take a drink of their glass of water then they sneeze.,c014 0.00 31.00;c145 0.00 31.00;c019 0.00 22.10;c153 23.40 28.90;c059 0.00 31.00;c110 8.00 13.80;c015 0.00 21.50;c017 18.10 23.90;c109 10.20 16.20;c011 0.00 31.00;c106 8.30 16.50,30.21\r\nBFW9A,L4ZP,Kitchen,4,7,No,\"A person is standing in the laundry room holding a cup of coffee.  The person goes to the window and closes it, then wipes the glass with their sleeve.\",coffee;cup;glass;table;window,\"A young person drinking coffee, closing the window and wiping it down.\",c107 0.00 28.00;c106 0.00 5.00;c089 9.00 14.00;c091 10.50 27.50;c109 23.00 29.80;c009 23.00 29.80,28.75\r\nDH9JU,OUKK,Kitchen,2,6,Yes,The person is washing out the inside of their sink. Then person takes a broom and sweeps a spot on the floor.,broom;dish;floor;sink,Person walks into kitchen and begins to wash dishes. Person then sweeps the floor with a broom.,c098 8.40 31.00;c102 8.60 31.00;c127 8.60 31.00;c118 0.00 5.40;c121 0.00 14.80;c100 12.20 17.10;c119 0.00 3.60,29.71\r\nFNLLG,LTAC,Stairs,3,6,Yes,\"A person is walking down the stairs grasping onto the handrail.  The person stops and looks at a picture on the wall and briefly closes their eyes, then continues on and turns off the light when they get to the bottom of the stairs.\",picture,\"A casually-dressed person who appears to have just woken up sleepily walks down a set of steps, stares at a picture in front of a glass door and, shaking his head, turns and walks toward the camera.\",c088 6.30 13.00,30.58\r\nEFR6I,YMXV,Closet / Walk-in closet / Spear closet,5,5,Yes,\"A person is in their closet tidying up. They grab the doorknob, and a book and sneeze before leaving.\",book;door;paper;rag;towel,\"A person is using a cloth to clean a door. The person holds some papers and sneezes while fiddling with the doorknob.;A person is cleaning the door with a cloth rag. After finishing, the person puts down the rag, picks up a piece of paper, and sneezes twice.\",c026 19.00 35.20;c032 19.00 28.20;c141 21.20 34.70;c153 24.40 34.30;c115 19.00 34.80;c117 16.90 23.50;c038 0.00 17.20,34.88\r\n8QL4N,HJJ4,Kitchen,7,7,Yes,\"A person is cooking food on the stove. The person makes a sandwich with the cooked items, and eats it.\",food;sandwich;stove,A person is cooking on a stove they are making a sandwich and then they eat the sandwich,c065 12.00 23.00;c147 0.00 12.30;c156 12.10 23.00;c066 0.00 13.00;c062 10.00 23.00,22.00\r\n2LERW,BYF9,Bathroom,6,7,No,\"A person in the bathroom is throwing some garbage into the trash can. They start dressing by putting a jacket on, and then look up at the light and then grab a book on the counter.\",book;clothes;doorway;garbage;towel;towl;trash can,\"A person throws something in the garbage, then puts some towel around their back. They then walk away and pick up a book.;Person throws something away,. puts vest on, walks over to a book and picks it up\",c026 13.10 17.00;c030 11.40 17.00;c097 11.00 17.00;c002 4.20 14.20;c148 4.00 16.40;c116 11.60 17.00,16.21\r\nZAOWM,BYF9,Kitchen,6,7,Yes,One person is eating on the phone and the other is standing at the doorway.,dish;doorway;food;phone;plate,Woman on the phone and eating while a man in the doorway looks on.;A person is talking on the phone  eating from a plate of food while another person is standing at the doorway and staring at person A.,c015 0.00 22.00;c156 0.00 6.80;c061 0.00 22.00;c118 0.00 22.00;c019 0.00 22.00,20.71\r\nTKEKQ,WG9D,Kitchen,4,1,No,One person stands eating food from a box of groceries by the door.,box;door;food;groceries,A person walks into the kitchen to pick up a cell phone. They then leave the kitchen.,,7.67\r\n52IYR,6RE8,Other,6,5,Yes,\"A person sits at a desk, fixing a doorknob. The person finishes working, then stands up and leaves.\",doorknob;key,A person is playing with a doorknow wiggling a key left and right and then leaving the key in the keyhole.,c140 0.00 35.00,34.17\r\nN2TPE,KFGP,Laundry room,7,7,Yes,A person puts their laptop on the table before going to the laundry room to start washing their dirty clothes.,closet;clothes;door;lap top;laptop;table;washer;washing machine,\"person walks, puts laptop on table, opens closet, takes out clothes opens washing machine and puts the clothes in.;a man sitting a laptop on a table and doing laundry.\",c002 8.20 18.70;c049 1.50 8.00;c005 16.40 31.70;c113 6.80 12.70;c001 15.00 29.20;c009 1.30 8.30;c008 7.30 18.20,31.42\r\nWD6WB,5LWB,Bedroom,4,6,Yes,One person is fixing a squeaky doorknob. Another person is leaving the room with a broom in their hand.,broom;closet/cabinet;doorknob;doorway;floor,\"A person is fixing a doorknob, while another person is sweeping the floor with a broom.\",c140 11.40 20.00;c098 0.00 12.00;c102 0.00 12.10;c127 0.00 11.30;c113 9.20 14.80;c097 9.20 14.90,18.54\r\nFB895,KFGP,Home Office / Study (A room in a house used for work),5,6,Yes,The person is working on their laptop sitting on the sofa and playing music.,laptop;sofa,A person sits and types on their laptop computer.,c052 0.00 34.00;c123 0.00 34.00,32.58\r\nKD2H4,ZTDR,Kitchen,7,7,Yes,A person is washing dishes.  Then a person is opening the oven door.,dish;door;sink,A person is washing dishes in the sink. They finish up and turn off the water then open the oven door.;A person is washing dishes in the sink.  That same person then goes and opens the oven door.,c008 19.20 25.50;c121 0.00 12.60;c006 19.10 25.40,27.12\r\nVSZ4W,18IT,Kitchen,6,6,Yes,A person is sipping water from a glass while checking their appearance in a mirror.  Another person is sitting in a nearby chair and smiling while scanning the newspaper.,book;cup;glass;hair;mirror;newspaper;water,\"A person drinks from a glass and grooms themselves in a mirror while another person sits in a chair reading.;A person is looking at them self in the mirror while drinking from a glass. Meanwhile, another person is reading a newspaper while sitting in a chair.\",c106 0.00 5.00;c096 0.00 11.70;c059 6.70 23.00;c106 0.00 10.20;c032 6.90 23.00;c115 7.40 23.00;c144 1.20 10.60;c107 0.00 23.00,21.75\r\nDVT6L,1OHU,Bathroom,4,5,Yes,A person is laughing at a sink while another person is throwing shoes.,mirror;sink;towel;wardrobe,\"A person is looking at themselves in the mirror. Another person pops in twice to throw something down.;Person looking into the mirror with smile on face, another person walks into the room to throw something.\",c149 0.60 29.30;c094 0.50 30.00;c152 2.10 30.00;c036 0.80 7.50;c096 0.00 30.00,28.96\r\n94AT2,QB52,Home Office / Study (A room in a house used for work),5,5,Yes,\"A person is sitting in a chair in their garage, drinking and watching television.\",chair;desk;glass,\"A person is sitting on a chair by a desk, holding a glass of milk, and periodically sipping from it. The person appears to be watching something.;A person is sitting in an office chair drinking from a glass of milk\",c059 0.00 31.00;c106 6.60 10.90;c107 0.00 31.00;c152 0.00 7.30,30.04\r\nI3Q65,FNK4,Garage,5,6,Yes,A person is smiling as they use a broom to clean the floor of a garage. The person sits down and starts putting boxes on a shelf.,box;broom;floor;shelf,\"A person is sweeping with a broom,they then sit on the floor and begin to put boxes on a shelf then smiling.\",c102 0.00 7.00;c042 10.10 17.30;c151 2.80 10.00;c125 5.30 11.00;c081 10.30 24.10;c152 21.30 27.00;c154 6.50 12.70,25.71\r\nNKCXF,DXDI,Recreation room / Man cave,5,7,Yes,A person is grasping a pillow then they smile while fixing a camera.,camera;co;phone;pillow;sofa,The person sitting on the sofa folded a cloth and pick up a phone and text on it.;A person is sitting on a sofa holding and squeezing a pillow. The person puts down the pillow and picks up a camera and begins to play with it.,c076 0.00 15.30;c077 9.80 15.30;c015 11.60 29.00;c018 11.60 16.80;c152 15.90 29.00;c123 0.00 29.00;c078 4.90 14.60;c016 14.80 29.00;c017 25.80 29.00,27.92\r\nW2LM5,DXDI,Dining room,5,7,Yes,\"A person is standing and pacing, talking on the phone. The idly pick up a broom and start playing with it.\",broom;phone,A person is walking while talking on a phone.  The person picks up a broom and twirls it.,c015 0.00 5.40;c019 0.00 5.40;c098 0.10 5.40;c100 0.00 4.10,34.25\r\nXYSX1,6RE8,Kitchen,5,7,Yes,\"A person sits at a desk, watching the door. The person is smiling.\",table,A person is sitting on a table looking outside.;A person sits on a table and looks at a door.,c010 0.00 33.00;c152 6.20 33.00,31.54\r\n6Z9ZC,D0RU,Kitchen,6,4,No,A person is smiling and eating a sandwich. A person is throwing a blanket into the wardrobe.,blanket;closet;clothes;drawer;sandwich;stove;television;wardrobe,someone standing in a kitchen and someone putting clothes in a drawer.;A person was standing.  Then another person comes in and puts away some clothes.  The person then turns on the television.,c113 9.50 14.90;c071 9.80 17.50;c151 25.40 32.00;c001 10.20 18.10,30.96\r\n5EFVR,KFGP,Laundry room,6,6,Yes,\"A person standing, is watching their laptop while throwing their clothes into the washer, talking on the phone.\",clothes;laptop;phone,person talking on phone holding a laptop washing closes,c019 0.00 29.00;c047 0.00 29.00;c005 3.80 29.00;c051 0.00 29.00;c001 5.20 9.80;c001 8.60 13.40;c001 13.00 18.50;c002 3.40 8.40;c002 6.10 11.60;c002 9.90 16.00,27.75\r\nBAGJW,JVLO,Laundry room,7,6,Yes,A person throws a book down onto the desk. The person takes a towel from the dryer and begins to fold it.,book;desk;shelf;table;towel,A person stands up and puts a paper onto a table. The person then walks through a dorrway and folds a towel.,c037 14.90 32.00;c009 5.80 13.80;c033 14.00 32.00;c028 3.60 10.80;c116 3.60 10.80;c154 0.00 2.60;c081 3.60 10.70,31.00\r\nJQLD3,D0RU,Kitchen,6,7,Yes,A person is holding food and working near a table.,box;food;sandwich;table,\"A person sits at a table fixing a speaker. They take a sandwich from a plate on the table, eat some and then put it back on the plate.;A person sits at the table and eats some food.\",c061 6.00 11.90;c156 7.10 14.40;c011 0.00 31.00;c069 4.50 10.60;c065 9.70 16.30;c040 0.00 22.20;c067 7.30 15.50;c014 0.00 31.00;c065 8.50 13.50;c063 5.00 11.70;c068 10.30 15.50,30.29\r\nQ9H04,ZAWX,Recreation room / Man cave,7,6,Yes,\"A person is in the Rec room undressing and throwing their clothes about. Another person walks in eating a cracker, sees the first person, smiles and pulls out a camera.\",bag;clothes;food;jacket;television,\"A person is undressing and throwing clohtes on the ground while Person B is eating from a bag and laughing.;A person takes off their jacket and drops it on the floor, and is approached by another person eating a snack.  Both people have a discussion wherein each laughs several times.\",c155 1.60 6.90;c156 8.90 14.70;c152 7.90 13.10;c061 11.90 19.80;c149 23.40 31.00;c001 2.80 9.60;c132 7.30 12.90;c020 7.00 31.00;c003 3.20 10.20,29.92\r\nXIYIK,28B0,Bedroom,6,6,Yes,The person took a towel out of the box lying on the floor before leaving.,box;closet/cabinet;clothes;floor;towel,\"A person hanging up some clothes in a closet, then takes a towel from a box and leaves.;A person hangs clothes in a closet.  Then opens a box and takes out a towel.\",c033 16.30 25.70;c041 13.30 20.50;c044 13.90 23.80;c000 2.20 14.50;c001 1.90 14.30;c004 1.80 14.80;c114 4.60 22.40,29.96\r\n3JSX7,RPBD,Recreation room / Man cave,7,6,Yes,\"One person with hair in a towel stands up, works on a burnt-out light, then pours some medicine.\",chair;light;medicine;sofa;table;towel,\"The person stood up look around and stood still.;A person is sitting on the sofa with a towel on their head. A person then turns on a light. A person then opens a medicine bottle, and take some medicine.\",c104 7.20 15.60;c128 13.00 23.00;c154 0.00 5.60;c123 0.00 5.80;c011 0.00 6.60,31.58\r\nTPJJJ,XJUN,Living room,6,6,Yes,A person is lying on the sofa in the living room. The person takes their phone from their pocket and begins playing with it.,box;coffee;phona;phone;sofa,Person is sitting on a couch looking at the phone with legs crossed relaxing.;A person is lying on a sofa while playing on a phone.,c015 0.90 31.00;c016 1.80 31.00;c122 0.00 31.00;c146 0.00 4.30,30.00\r\nO8N4M,XJUN,Living room,6,6,Yes,\"A person awakens on the couch in the living room. The person takes a drink of coffee, picks up a box, and leaves the room.\",box;coffee;cup;glass;sofa,\"the person is sleeping on a couch, they wake up drink coffee, pick up a box and leave the room.\",c122 0.00 19.20;c106 14.00 24.50;c146 7.60 17.80;c154 20.50 27.90;c107 13.20 23.70;c123 10.40 25.30;c043 22.50 28.40;c110 12.70 19.40;c109 17.40 24.20;c040 23.60 32.00,31.00\r\nQERDA,XJUN,Living room,6,6,Yes,\"A person is working on tidying the room, straightening pictures on the wall and grasping the table to move it.\",clothes;floor;ottoman;picture;table,\"A person picks up clothes and puts them on the floor before straightening a picture on the wall and then moving an ottoman.;Person picks up blanket and throws it in a different spot, adjusts a picture on the wall, then walks over to coffee table to adjust it just right, cleaning up\",,31.00\r\nDY5VP,0KZ7,Stairs,6,7,Yes,\"The person watches a pillow fall down the downstairs, while they are eating a sandwich.\",floor;food;pillow;sandwich,A person is eating a sandwich. A pillow falls down the stairs at their feet.,c065 0.00 22.00;c067 0.00 22.00;c156 0.00 22.00;c126 0.00 6.50;c080 0.00 6.50;c061 0.00 22.00,21.21\r\nKTXE0,UD06,Bedroom,6,6,Yes,A person is working on homework at a dining room table. The person stops for a moment to eat a handful of cereal from a nearby box.,chair;computer;desk;food;keyboard;table,\"A person is sitting at a desk and watching a video on the computer while eating a snack.;This person is watching something on the computer, then eats some cereal.\",c011 0.00 2.50;c011 28.00 31.00;c059 0.00 31.00;c063 20.50 26.80;c014 0.00 31.00;c156 25.00 31.00;c061 22.60 31.00,30.42\r\nX7HCQ,9PLL,Stairs,5,7,Yes,\"A person throws a towel down onto the stairs, and takes their phone from their pocket.\",phone;towel,A person removes a towel from their neck and throws it on the floor. They take their phone out of their pocket and begin to play games.,c036 0.00 3.80;c016 1.90 34.00;c034 0.40 5.10;c015 3.10 34.00;c033 0.00 4.90,32.54\r\n4LU0G,KQI6,Dining room,7,7,Yes,A person is seen putting dishes on their desk. They start playing a game on their computer while doing their homework.,desk;dish;game;homework;paper;sofa/couch;table,\"A person walks over to a coffee table and puts some pots on it. She then sits down, types on a computer, opens a book and writes in it.\",c009 2.00 8.10;c011 5.60 11.10;c011 5.90 32.10;c145 24.10 32.70;c119 2.80 8.30;c151 5.80 11.10;c115 17.70 32.20;c118 0.00 7.80;c123 6.60 32.20,33.00\r\n9XOED,LTAC,Hallway,7,6,Yes,\"A person is in a laundry room playing with the light switch turning it on and off, they then hold their camera phone in their hand and start looking at pictures.\",light;phone,\"A person turns light switches on, then leans through a doorway, picks up a phone, and plays a video game\",c016 15.10 32.00;c105 0.00 15.80;c018 14.30 32.00;c017 14.30 32.00;c015 14.30 32.00,30.71\r\nYHFKO,I4RP,Laundry room,7,7,Yes,A person sneezes while putting clothes in the sink. Then they pick up their phone.,clothes;phone;washer,A person is loading laundry into a washer. The person grabs their phone and plays on it.,c015 4.50 9.00;c016 4.50 9.00;c001 0.80 6.60;c153 0.00 3.90,8.17\r\n472EJ,H8N1,Dining room,4,5,Yes,A person is seen eating while next to a window. They get up and begin throwing food back into the fridge.,food;fridge;refrigerator;window,\"Person goes to table picks up food and begins to eat it, they walk to fridge, open fridge and put food in there, then close fridge.\",c062 15.10 21.30;c142 22.30 28.20;c061 3.80 20.50;c063 0.20 8.20;c156 4.00 20.10;c143 18.00 28.10;c152 8.10 13.70,27.67\r\nZWDVG,BYF9,Bedroom,7,7,Yes,\"One person throws a bag down on a small table before grasping a vacuum, awakening another person who starts sneezing.\",bag;bed;bef;chair;floor;table;vacuum,The person is picking up a bag off the floor the person is vacuuming the floor with another person sitting on the bed.......;A person picks up an item off the floor and throws it on the bed. Then proceeds to clean the floor. The person on the bed was laying and then sat up and sneezed.,c022 0.00 7.90;c137 4.80 21.00;c154 6.90 21.00;c135 10.10 21.00;c127 1.00 21.00;c134 0.00 16.30;c146 7.00 14.20;c009 0.90 6.90;c133 7.70 21.00;c023 0.70 7.80;c024 2.10 7.40,20.29\r\nBQ6UI,6RE8,Bathroom,5,6,Yes,\"A person opens the bathroom window, washes their hands in the sink, then looks at a picture hanging on the wall.\",doorway;hand;picture;sink;wall;window,Person going into the bathroom to wash hands and then walks out again when finished.,c139 7.60 21.70;c097 28.70 34.00,33.00\r\nQNKDI,9Y7F,Recreation room / Man cave,4,6,Yes,\"watching television in the room, the person holding the book decides to stand up\",book;sofa/couch;television,A person is sitting on a bed watching TV while reading a book.,c027 18.60 27.30;c132 0.00 22.20;c026 0.00 33.00;c123 0.00 28.30;c032 18.30 33.00;c115 0.00 33.00;c154 24.90 33.00,32.21\r\nMEW6T,UP8Z,Laundry room,6,7,Yes,\"A person tidying up their laundry room finds a book with colorful pictures in it.  They sneeze as they blow the dust off its cover, and wipe their nose absentmindedly with a blanket.\",blanket;book;clothes;doorway;dvd;floor;towel,A person walks into the laundry room and picks up some clothes from the floor. The person folds the clothes. The person takes a dvd off of the shelf and sneezes.,c153 23.30 33.60;c004 0.00 21.90;c035 2.30 21.00;c037 2.30 21.00;c127 2.30 21.00;c030 18.70 31.50;c028 18.80 31.60;c001 33.90 37.00;c075 33.90 37.00;c032 33.90 37.00;c097 33.90 37.00;c026 33.90 37.00,35.88\r\n1FPW9,DXDI,Bedroom,5,7,Yes,A person awakens then fixes the blanket on a bed before drinking some coffee.,bed;blanket;covers;cup;dresser;glass,\"A person is lying in bed underneath a blanket. The person eventually gets out of bed, tidies the blanket, sits back on the bed, and drinks from a glass.;Person laying in bed, gets up, makes bed, sits on bed, picks up cup from dresser, drinks out of it, drinks out of it again.\",c072 2.10 10.50;c106 17.80 25.40;c135 16.10 31.00;c146 3.00 12.40;c075 9.80 18.00;c134 0.00 6.50;c133 2.40 12.90;c154 7.20 12.30;c110 16.90 31.00;c071 10.10 18.60;c107 17.00 31.00;c151 8.10 19.70,30.12\r\n6AGSX,WG9D,Kitchen,6,7,Yes,A person standing next to a chair in the kitchen drinks from a glass of water.,chair;cup;glass;water,A person is in their kitchen holding on to a chair while drinking a glass of water.,c106 0.00 7.00,6.17\r\nXQSXK,P6LJ,Bathroom,7,7,Yes,\"A person walks into the bathroom holding a phone. The person takes a tissue from the tissue box, and walks out.\",box;phone,\"A person walks into the bathroom. They place their phone down, grab a tissue, and leave.\",c044 12.20 18.80;c017 8.40 14.90;c015 1.70 14.70;c040 11.70 19.60;c043 11.50 16.10,22.67\r\n0D5I8,KQI6,Living room,5,7,Yes,\"A person sits on the sofa of the recreation room, playing video games. Another person watches on, and takes a picture.\",game;phone/camera;picture;sofa;video,A WOMAN IS SITTING ON THE SOFA PLAYING A GAME ON HER MOBILE PHONE AND A MAN STANDS UP FROM THE COUCH AND TAKES A PICTURE OF A WOMAN WHO IS SITTING ON THE COUCH,c087 17.70 32.00;c123 0.00 32.00;c154 13.90 21.10;c015 0.00 18.20;c016 0.00 18.10,30.58\r\n6KUUU,25TD,Laundry room,6,6,Yes,A person is dressing in the laundry room by putting on their shoes. The person then grabs a sandwich from the table and starts eating it.,chair;clothes;food;sandwich;shoe,A person is sitting on a stool. They put boots on a eat a sandwich.,c055 0.40 15.70;c065 21.00 32.00;c148 0.20 15.70;c156 20.80 32.00;c059 0.00 32.00;c067 14.20 25.00;c061 14.20 25.00;c000 0.00 4.50,31.42\r\nBSDSA,KQI6,Bathroom,6,1,No,A person is laughing and sneezing in front of a mirror and then sitting in a chair in a home office / study.,book;chair;couch;hands;mirror;sink;towel,\"A person walks to a sink,washes their face and looks in a mirror.  They walk to a chair, picking up a towel on the way.  They sit down and another person is lying on a couch.;A person walks into a bathroom and up to a sink.  That person uses the sink, looks in the mirror and grabs a towel.  That same person leaves the room and sits in a chair.\",c059 24.00 29.00;c096 2.00 7.00;c151 24.00 29.00;c033 22.00 27.00;c139 14.20 21.40;c030 24.70 30.40;c035 22.30 28.30,31.04\r\nHVUH9,I4RP,Laundry room,6,6,Yes,\"A person is tidying the area by putting shoes on a shelf, while another person walks in grasping a phone and sandwich.\",clothes;doorway;food;phone;sandwich;shelf;shoe;towel,A person puts their shoes on a shelf while another person walks in holding a phone and a sandwich.;A person places shoes on a dryer while another person holds a phone and food.,c081 0.00 5.10;c015 1.70 8.00;c053 0.00 3.60;c067 2.00 8.00;c054 0.00 4.40;c061 2.20 8.00,6.58\r\nO1NO0,I4RP,Kitchen,6,6,Yes,\"A person is washing and putting their clothes away, as another person is by the refrigerator grabbing their medicine.\",basket;clothes,\"A person is taking clothes out of a basket, while another person walks by.\",c000 3.50 8.00;c002 0.60 5.60;c004 0.00 8.00,6.83\r\nGWLAI,I4RP,Laundry room,6,6,Yes,\"A person is in the doorway grasping a pile of clothes, while another person is snuggling a towel fresh from the laundry.\",basket;blanket;clothes;medicine;refrigerator;towel,\"Person A is  opening a drier machine and snuggling with a towel while Person A is holding a basket of clothes.;A person opened a dryer while another person waited, holding a basket of laundry.\",c000 0.00 10.00;c000 5.00 10.00;c033 5.10 10.00;c035 0.00 10.00;c070 0.00 10.00;c002 0.00 10.00,9.21\r\nDMKRS,0RNU,Garage,6,6,Yes,A person standing on a blanket holds a light up to a bottle of medicine to carefully examine it.,light;medicine,A person takes a flashlight from a pocket and observes a bottle of medicine.,c128 0.00 37.00,35.58\r\n0KEZF,XXN8,Kitchen,5,7,Yes,\"A person is in a kitchen playing on their phone, they then smile as they put it into their bag.\",bag;phone,A person plays on a phone and smiles. She then puts the phone in her bag and walks away.,c016 0.00 17.90;c017 12.50 29.50;c020 0.00 32.00;c152 9.10 18.70;c021 12.70 28.20;c015 0.00 26.80,30.58\r\nKNXCB,BYF9,Bathroom,6,5,Yes,One person drinks medicine while another smiles and plays games on a phone.,doorway;medicine;phone,\"A person is standing in the doorway on their phone, while another person is eating by the bathroom sink;Person A is playing a game on his phone leaning against the door to the bathroom. Person B is inside the bathroom drinking a medicine.\",c016 0.00 18.00;c129 0.00 9.10;c015 0.00 18.00;c154 0.00 18.00,17.46\r\nKX7FC,S053,Kitchen,6,5,Yes,A person is lying on the floor fixing the sink. Then the person stands up and begins closing the cabinet over the sink.,cabinet;floor;sink,The person was lying on the floor fixing the sink. They stood up and closed the cabinets beneath the sink.,c112 32.00 38.00;c124 0.00 31.10;c154 26.20 34.30;c125 0.00 32.00,36.62\r\nXNYAH,JVLO,Dining room,6,6,Yes,A person is in a dining room eating at a table. They sneeze and walk to the mirror to clean their nose.,carrots;chair;food;mirror;table,A person is sitting at a desk eating some carrots. The person gets up and looks at themselves in the mirror.,c096 27.20 35.00;c156 0.00 24.20;c154 18.70 25.90;c011 0.00 22.80;c063 0.00 6.20;c059 0.00 22.80,33.88\r\nIWOUL,0KZ7,Closet / Walk-in closet / Spear closet,5,6,No,A person is standing in the doorway wearing a towel. Another person comes in smiling closing the door behind them.,clothes;door;towel,A person is wrapping a towel around them. Another person walks in and stands.,c008 0.80 13.20;c097 3.20 11.20;c033 11.60 24.20;c034 9.20 21.80;c152 11.90 30.00;c148 0.00 9.50,29.50\r\n5A3FT,UO0Z,Living room,6,6,Yes,\"A person is sitting at their desk doing homework. A person begins undressing, lying on the sofa when the person finishes.\",book;clothes;couch;homework;jacket;paper;sofa;table,A person is sitting on the couch working on homework. The person then takes off their jacket and lays down on the sofa.;The person is doing homework sitting on a couch. The person takes off their jacket and lays down.,c014 0.00 14.40;c145 0.00 14.40;c122 21.20 28.00;c123 0.00 25.80;c155 13.90 22.10;c001 11.70 17.70;c032 0.00 27.10,27.12\r\n9UZEY,ZSRZ,Bathroom,7,7,Yes,A person fixes items on the shelf then tidies the glass of the mirror.,cabinet;cloth;duster;mirror;shelf;sink;towel,\"A person opens a cabinet, rearranges some things, then starts dusting.;Person in the bathroom tidying up by putting things away in the cabinet, closing it, and then picking up a cloth and cleaning the mirror.\",c095 11.00 17.00;c112 8.90 14.20;c113 0.00 12.70;c114 0.10 12.80;c081 0.00 12.00;c038 11.00 17.00,16.25\r\nTD6CM,5LWB,Hallway,3,6,Yes,The person quickly threw off the towel and started dressing. Then they snuggled under the blanket until the tornado sirens stopped.,blanket;clothes;pants;shorts;towel,\"person takes off towel, put on pants then wraps themself in a blanket.\",c072 20.40 33.00;c148 4.00 14.00;c151 18.70 25.10;c073 0.00 4.80;c155 0.00 4.50;c000 0.50 7.50;c034 0.00 5.20;c036 0.00 4.70;c070 11.10 33.00,31.54\r\nT0PJG,D0RU,Living room,6,4,Yes,A person runs into the room and sits down on the side table.  The person picks up a towel and folds it while watching television.  The person puts the folded towel on the shelf.,bed;blanket;couch;doorway;shelf;sofa;television;tv,\"A person walks through the doorway and sits on the couch. They take a blanket and begin to fold it while watching TV.;A person walks into a bedroom and sits on the bed next to a person lying down. Both of the people then watch the television, while the person who entered the room sits on a bed, folds a blanket and puts it on a shelf.\",c097 2.30 10.90;c071 14.30 34.50;c132 14.80 35.00;c123 7.60 13.50;c075 11.00 25.60;c135 7.60 13.50;c154 26.60 31.30;c151 7.80 12.60;c070 11.40 34.00;c081 29.50 34.50,34.21\r\nXJH0X,PO5L,Laundry room,3,7,Yes,\"A person in the laundry room is taking some clothes out of the machine. They start washing their hands in the sink, and then take a pillow off of the ground.\",clothes;dish;drier;hand;pillow;sink,person is doing laundry and then proceeds to wash dishes in the sink. The person grabs a pillow.,c076 19.00 27.00;c139 10.50 23.90;c002 0.00 14.30;c079 20.70 26.10;c000 1.10 6.90;c121 11.70 22.10;c005 0.90 13.90,25.54\r\nNYPOF,WG9D,Closet / Walk-in closet / Spear closet,4,7,Yes,A person is getting their shoes and bag from the closet. While they are closing the door they are playing with their phone.,bag;closet/cabinet;clothes;door;phone;wardrobe,A person is taking a bag from a wardrobe while holding their phone in their other hand and the person closes the wardrobe door.,c006 6.60 13.00;c020 1.10 13.00;c023 0.90 6.20;c015 0.00 13.00;c113 6.20 12.20;c112 7.50 12.20;c002 0.90 6.20;c000 2.00 6.70,11.50\r\nABU7B,LTAC,Kitchen,7,7,Yes,A person in the kitchen is laughing because the dishes seem to be very dirty and piling up. They pick up a glass and start washing it in the sink.,cup;dish;glass;sink,A person walks into the kitchen and touches a pot a few times and then picks up a drinking glass and scrubs it clean.,c111 25.00 32.00;c121 21.10 32.00;c120 18.90 25.40;c152 3.90 23.80;c118 19.00 32.00,31.12\r\n40309,YMXV,Bedroom,6,5,Yes,A person is undressing in the doorway then begins to watch the camera placed on the cabinet.,closet/cabinet;clothes;door;laptop;table;television,\"A person gets dressed next to a laptop on a table, then opens a door.;A person is fixing themselves as they watch television. A person then opens a door and closes it.\",c008 22.40 29.20;c112 26.30 32.00;c113 21.90 28.90,31.00\r\n9BCOH,18IT,Bedroom,5,7,Yes,A person is snuggling on a bed while watching something on a laptop. Another person is sitting by them with a sandwich.,blanket;floor;laptop;sandwich,\"Two people are viewing a laptop screen while sitting and laying on the floor, one person covered in a blanket while the other holds a sandwich.;Two people are on the floor on a blanket.  One person is eating a sandwich while sitting on the floor looking at a laptop.  Another person is lying on the floor covered in a blanket looking at a laptop.\",c051 0.00 23.00;c067 0.00 23.00;c125 0.00 23.00,22.33\r\nV6ZO7,EXQX,Recreation room / Man cave,5,6,Yes,A person is sitting in the living room watching the phone light pulse.,floor;phone,\"A person is sitting on the floor, playing on his phone.\",c015 0.00 61.00;c016 0.00 61.00;c125 0.00 61.00,59.83\r\n1FGXJ,4OHY,Kitchen,6,7,Yes,A person eating food in the kitchen begins throwing coffee on the ground.,coffee;counter;cup;dish;food;man;plate;sandwich,A person is pacing in a kitchen eating some food off of a plate. The person then sets the plate and food on the counter and picks up a cup of coffee.;a man eating a sandwich and grabbing a cup acting weird.,c107 15.70 30.00;c061 0.00 20.10;c156 0.00 14.80;c118 0.00 20.60;c065 0.00 14.70;c119 15.40 20.40;c110 15.30 23.10,29.42\r\nMUGVM,HJZQ,Dining room,6,6,Yes,\"A person is washing the dining room table with a washcloth.  The person picks up a pile of homework to move it out of the way, then grasps the homework while they wash underneath.  The person puts the homework down and takes a drink of a glass of water while looking in the mirror on the wall.\",book;cup;glass;hair;mirror;paper;rag;table;towel;water,A person is cleaning a table with a rag and tidying up.  They pick up a glass and take a drink while looking at a mirror to fix their hair;A person is tidying up a table with a towel. They pick up a book while they are tidying up and place it back on the table when done. They then pick up a glass of water and drink from it while they fix their hair in a mirror.,c096 4.10 20.60;c110 17.70 25.30;c106 10.80 23.10;c037 15.10 22.30;c144 20.00 26.10;c116 13.30 19.70;c012 0.00 18.50;c013 0.00 6.90;c009 13.60 19.70;c038 0.00 7.20;c107 16.90 31.00,30.42\r\n7L7P4,P6LJ,Home Office / Study (A room in a house used for work),6,6,Yes,A person is putting a camera on a desk. Then the person starts laughing and grasping their knees.,camera;desk;floor;shelf;table,A person put a camera on a table.  The person then layed down on the floor and curled into a fetal position.,c009 3.40 8.70;c151 6.10 14.50;c154 19.10 25.10;c081 8.40 23.90;c125 3.90 8.70,24.92\r\n3HUXR,T7C3,Bedroom,7,7,Yes,\"A person is seen snuggling up while watching television. They begin opening a bag and take out food to eat, then turn off the light.\",bed;blanket;food;light;television;tv,\"A person is lying on a bed wrapped in a blanket.  They are eating something and watching TV.  They get up and turn off the light.;This person is laying down, eating something, while watching tv, then turns off the light.\",c061 0.00 36.60;c104 0.00 42.40;c156 0.00 37.20;c134 0.00 39.90;c070 0.00 42.20;c132 0.00 43.00;c105 37.40 42.60,41.62\r\nW4MEA,Z68L,Home Office / Study (A room in a house used for work),6,7,Yes,A person turns on a light then sits in a chair. The person then sneezes before drinking some water.,chair;computer;desk;dish;glass;laptop;light;table;water,\"A person is turning on a light.  The person then is sitting in a chair looking at a computer while sneezing and drinking water. The person gets up and leaves the desk.;A person is sitting at a desk.  They the turn on a light, sneeze while looking at the laptop, and drink a glass of water.\",c106 14.70 23.70;c104 0.30 5.30;c153 5.40 14.70;c011 0.00 30.10;c059 0.00 29.00;c154 24.70 30.10;c009 18.50 24.80;c014 0.00 8.50;c119 18.80 24.30;c118 15.20 24.80;c014 0.00 28.50;c120 14.10 24.30;c052 2.20 24.30,30.08\r\nE06A2,3H6W,Laundry room,5,7,Yes,\"A person sets a pair of shoes down next to the laundry machine and then begins sneezing.  Finally, they pick up a camera and stand next to the door.\",clothes;door;floor;phone;shoe,\"A person sets down some shoes and begins sneezing, they then grab a phone and stand in a doorway.;A person places clothes on the floor and begins to cough. A person then stands by a door.\",c153 4.00 13.10;c018 10.20 15.30;c015 10.40 16.60;c054 1.40 7.80;c053 1.90 7.30,31.25\r\nKDH19,1TZV,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person, holding a book, looks out the window. The person laughs.\",book;window,A person is looking out a window while holding a book.,c026 0.00 21.00;c092 1.30 21.00,20.46\r\nWJOR3,UD06,Home Office / Study (A room in a house used for work),6,7,Yes,A person grasps a bottle of medicine while watching a video on a laptop sitting on the desk.,desk;laptop;medicine;table,Person sitting down watching a laptop sitting on the desk while picking up medicine bottle and trying to open it.,c011 0.00 31.00;c128 4.10 31.00;c051 0.00 8.10,30.42\r\nTGKHG,Z68L,Recreation room / Man cave,5,5,Yes,\"A person opens the door and walks through the doorway, sneezing. The person is eating a sandwich.\",door;food;sandwich,The person went out the white door and then came back in. The person ate a sandwich while standing behind the bench. The person sneezed and then ate some more.,c065 17.70 35.40;c065 28.90 34.00;c097 1.60 8.50;c067 11.80 38.20;c008 1.50 7.40;c153 12.80 19.30;c063 12.00 39.00;c006 3.00 10.10,38.25\r\nVD8PU,2RTW,Living room,6,6,Yes,\"A person is walking away from their chair, towards the kitchen to put their dishes in the sink.\",bowl;chair;cup;desk;dish;doorway;glass;silverware;sink;table,\"A person was sitting at a desk in the living room, then got up and took a dirty glass, silverware and bowl to the kitchen and set them in the sink;A person is sitting in a chair holding a bowl, then picks up a spoon and glass off a table and then gets up and puts them all in a sink\",c059 0.00 15.20;c120 10.10 26.70;c109 8.20 27.00;c110 8.20 16.60;c107 5.60 16.90;c097 13.50 18.90;c118 0.00 20.90;c154 9.00 16.00;c011 0.00 14.30;c119 16.80 24.70,31.00\r\n29757,2RTW,Bedroom,6,6,Yes,A person is working on paperwork while lying in bed. The person stands up and runs to the mirror.,bed;homework;mirror;paper,A person is lying in the bed looking at homework. A person then gets up and looks in the mirror.,c134 0.00 23.40;c096 23.00 31.00;c150 20.10 26.90;c135 0.00 21.80;c115 0.00 23.40;c154 19.70 24.70,30.50\r\nG3CDA,3VLX,Living room,6,7,Yes,A person is grasping a towel from the sofa. A person is then sneezing while standing near the sofa in the Living room.,sofa;towel,\"A person walks into a room and picks up a towel off of a sofa. That person then folds the towel, sneezes and puts the folded towel down.\",c037 2.20 24.00;c153 9.10 16.70;c035 1.80 22.80;c034 12.70 23.10,23.08\r\nPM6U2,YA10,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person grasping a bag of groceries walks into closet.  They lift a blanket off a vacuum cleaner, and leave it on the floor, taking the vacuum cleaner in the hand they're not using to carry the groceries with.  Twirling the bag of groceries playfully, they walk out of the closet.\",bag;blanket;doorway;floor;vacuum,Person walks into a closet to get a vacuum while in the closet the person throws a blanket on the floor and leaves.,c126 5.40 14.10;c138 12.90 20.00;c070 6.90 14.30;c074 7.60 15.40;c137 13.70 23.90;c020 1.80 23.60;c073 5.70 14.10;c097 15.70 23.40,29.54\r\n7UZZI,KFGP,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is walking with a broom and sees some dishes. They pick up the dishes and start sneezing, they then leave the room.\",broom;dish,\"This person walks into the room with a broom, then pauses at the computer desk where they sneeze two or three times before leaving the room.\",c098 2.10 26.90;c118 16.50 26.00;c153 8.10 13.60,26.62\r\nBQ4IN,YMXV,Home Office / Study (A room in a house used for work),5,1,No,A person is fixing the leg on their desk. Then the person begins lying on the floor to reach it better. The person turns to look at the television as the person is working.,chair;desk;floor;table;television,A person puts his feet up on his desk then gets up and lays on the ground doing situps while watching tv.,c011 0.00 9.00;c124 7.00 33.00;c059 0.00 9.80;c154 5.50 10.80,31.79\r\n8TRIW,JVLO,Stairs,6,7,Yes,A person is drinking water after taking medicine and then tidying the steps with a broom on the stairs.,broom;cup/glass/bottle;doorway;floor;medicine;shelf;water,A person takes some medicine with a glass of water. The person then begins to sweep the stairs.,c129 4.10 14.10;c098 14.70 34.00;c102 17.00 34.00;c106 7.20 14.00;c110 0.10 16.90;c127 12.90 34.00;c097 12.60 27.90;c109 0.60 16.40;c081 2.40 7.40;c081 4.90 10.80;c100 14.20 34.00;c152 10.80 16.60,32.71\r\n80YWL,OUKK,Living room,5,6,Yes,\"One person puts a glass on a table and grasps a laptop, then closes the closet door.\",cup;door;glass;laptop;table,A person is drinking from a cup. The person puts the cup down on a table then looks at their laptop. The person walks to a door and closes it.,c106 0.00 4.20;c107 0.00 7.50;c109 2.50 8.10;c051 2.40 10.50;c009 2.30 7.30;c006 8.70 14.00,13.08\r\nLK3LF,BYF9,Living room,3,7,Yes,A person is in their living room watching a video on their laptop. They begin drinking some water while taking a pillow and placing it on the floor.,cup/glass/bottle;floor;laptop;pillow;sofa/couch;video;water,A person is sitting no a couch using their laptop.  They pick up a glass and drink from it.  They then put a pillow on to the floor.,c051 0.00 28.00;c106 12.10 22.20;c077 13.90 25.40;c110 7.30 13.80;c107 9.20 28.00;c079 13.40 21.00;c123 0.00 28.00;c126 18.50 24.80,27.04\r\n0SA65,QRES,Dining room,6,7,Yes,A person pushes away their dishes and plays on their laptop at the dinner table while a person quietly sits and watches.,dish;food;laptop;table,person kept the plate of sandwich aside and playing with laptop;A young girl pushes her meal in a cafe away so that she can interact with her computer.,c052 0.00 5.00;c119 0.00 3.00;c011 0.00 5.00;c014 0.00 5.00,3.71\r\n89IBC,UTMU,Pantry,7,1,No,\"One person is sitting down and laughing into the phone, with a sandwich and a pair of shoes nearby.\",box;food;napkin;sandwich,A person reaches and grabs a sandwich from the box and proceeds to eat the sandwhich for the rest of the video;A person grabs a sandwich out a closet. The person then proceeds to eating an using a napkin to wipe their mouth.,c065 0.70 18.90;c156 1.20 18.40;c067 0.00 29.00,27.96\r\nBID6Z,ZAWX,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is walking down the hallway holding a broom.  The person picks up a towel off the floor,  opens a closet door, puts the towel in the closet, and closes the door.\",broom;closet/cabinet;door;floor;shelf;towel,\"A person tidies up the floor with a broom, then picks up a towel from the floor and opens a door to a cabinet. They put the towel on a shelf and close the door.\",c006 29.80 34.00;c008 19.40 25.80;c127 0.00 22.60;c034 21.40 29.40;c035 17.30 24.80;c098 0.60 21.80;c102 1.10 24.10;c113 16.60 23.60;c112 22.10 33.00;c081 19.10 25.90,32.92\r\n9M9OB,KQI6,Bedroom,5,5,Yes,A person is playing with dirty clothes in the doorway then watches a towel on a table intensely.,clothes;doorway;robe,A person grabs a robe and tosses it back and forth.,c003 4.60 31.90;c097 1.50 8.30;c000 3.00 32.00,31.46\r\nKI6RS,KFGP,Dining room,6,7,Yes,\"A person is lying down on a sofa in their dining room. They grab a towel from the sofa, and start standing up while walking toward the doorway.\",clothes;cushion;sofa;towel,\"The person is laying on couch. Rubs head a few times,then sits up. Stands and grabs towel,leaves.\",c035 17.90 24.40;c122 0.00 23.70;c154 19.00 25.70;c000 18.80 27.20;c123 17.20 22.50,29.08\r\nUBC9N,KQI6,Dining room,4,7,Yes,One person sneezes and laughs while another smiles and pours medicine into a glass.,cup;glass;table;water,\"Someone is standing and laughing by a table. A second person comes in and places a cup on the table and pours them a drink as they being to laugh with them.;A person stands in a room laughing, then grabs a bottle of water from the table.  Another person walks in, takes the bottle of water from them and begins pouring it into a glass. Now they are both laughing.\",c107 23.10 32.00;c108 14.40 24.40;c109 10.30 16.60;c152 20.80 31.00;c009 10.40 16.10;c012 11.20 32.00;c153 0.00 9.40,30.58\r\nZZ2SF,YMXV,Bedroom,6,7,Yes,One person with a camera watches as another person with hair in a towel drinks medicine.,camera;cup/glass/bottle;medicine;phone;picture;towel,\"A person is taking a picture of somebody else with their phone, the other person with a towel wrapped around the head takes some medicine and drinks some water from a bottle.\",c015 0.00 17.60;c128 17.50 24.60;c087 0.00 19.00;c129 16.20 25.50;c016 0.00 15.10;c106 21.20 32.00,30.83\r\nSHTLT,6RE8,Kitchen,3,7,No,A person is closing the doorway to their kitchen after eating a sandwich.,door;food;sandwich;something,A person is eating a sandwich and walking around.,c065 0.00 33.00;c067 0.00 33.00;c097 11.60 18.20;c156 0.00 15.60;c141 16.30 24.20;c006 15.60 24.00;c061 0.00 33.00,32.33\r\n8L9AJ,9PLL,Hallway,6,7,Yes,A person is standing and takes a laptop out of a box. Then the person closes the box.,box;laptop,A person is looking into a box. A person takes out a laptop.,c039 18.60 31.20;c041 2.70 16.90;c047 12.60 33.00;c050 13.70 20.30;c044 13.70 20.30,32.38\r\nIZSPN,ZAWX,Bedroom,7,7,Yes,A person is opening a cabinet in their home office. They begin watching some video on their phone while tying their shoes.,cabinet;door;phone;shoe;video,\"A person walks into a room and opens a cabinet, they then watch a video on their phone while untying their shoe.\",c113 1.20 8.30;c015 3.10 32.00;c057 17.20 32.00;c151 9.10 18.00;c112 4.80 10.50;c008 0.90 6.20;c018 5.50 12.20;c016 12.00 32.00;c006 4.80 10.50,30.75\r\nT8DK4,EXQX,Pantry,6,7,Yes,A person is sitting in the pantry holding a mirror.  The person laughs and puts the mirror on the shelf.,floor;hair;mirror;shelf,\"A person is sitting on the floor smiling while looking at themselves in a mirror and touching their hair.;Person sitting on the floor looking into a mirror, smiling, fixing hair, and then putting it on the shelf.\",c094 0.00 16.20;c081 15.70 26.70;c149 0.00 10.50;c152 0.00 6.30;c125 0.00 31.00;c144 16.30 23.30;c096 3.50 23.30,30.42\r\nU896B,UD06,Living room,6,6,Yes,A person id laughing and undressing beside the chair next to the light.,cap;clothes;jacket;light;scarf,A person standing and laughing taking their hat and scarf.The person proceeds to keep laughing and taking off their jacket .;A person begins taking off their clothes while laughing.  They point at a light.,c152 0.00 34.00;c149 0.00 34.00;c155 0.00 5.30;c155 4.00 14.30,33.25\r\n9X208,CO1W,Bedroom,7,7,Yes,A person awakens in bed and quickly jumps up. The person grabs a towel from the table and walks out of the room.,bed;door;table;towel,\"A person lying on a bed awakes, stands up, takes a towel off of a table and then leaves by opening a door and walking through the doorway and then closing the door.;A person is lying down on a bed. A person then awakes, takes a towel, and walks out the door.\",c033 22.20 31.00;c134 0.00 23.10;c146 14.00 25.60;c154 21.60 27.40;c097 23.20 30.90;c035 22.20 26.80;c133 18.80 25.90;c008 24.00 30.40;c141 23.40 28.70,30.29\r\nQQUU5,SX9Y,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is holding a coffee and a bag in the entryway at home. They put the coffee down on the table, and close the front door.\",bag;coffee;cup;door;table,\"A person is drinking a cup of coffee, then sets it down, closes the door, and puts his bag down.\",c006 3.50 10.10;c020 0.00 14.40;c106 0.00 4.80;c009 1.10 6.40;c141 3.50 10.30,14.21\r\n8XICU,YA10,Living room,6,5,Yes,\"A person walks to the door, wrapped in a blanket. The person takes out their phone.\",blanket;phone;window,A person with a blanket on their shoulders walks to their front door. The person takes out a phone and plays with it.,c072 0.00 26.00;c015 9.80 26.00;c016 9.80 26.00;c092 7.00 12.00,25.08\r\nRJCNV,QOQ4,Dining room,6,7,Yes,\"A person is standing and opening the wardrobe. Then, closing it, the person sits at the table and begins to do their homework.\",book;chair;closet;door;homework;paper;table;wardrobe,\"The person opens a pantry closet, sits down, and opens a book on the table.   He starts going through the book and reading it.\",c011 11.50 29.00;c145 13.30 29.00;c151 10.80 16.30;c008 0.00 3.40;c027 12.20 17.90;c141 0.00 2.90;c059 11.20 29.00;c006 3.20 9.20;c032 13.00 29.00,28.33\r\n61KCY,37UI,Bathroom,6,7,Yes,\"A person is dressing, putting on on their clothes in the bathroom.  Then a person starts sneezing and picks up a box of tissues.\",box;clothes,A person dressed in front of a bathroom mirror. The person began to sneeze and took a tissue from a tissue box.,c040 21.40 30.60;c044 22.90 28.00;c148 0.00 22.00;c153 18.50 29.50;c001 8.50 17.00,30.50\r\nFPU57,Z68L,Living room,5,7,Yes,A person is holding a bottle of medicine and walking through the door in the recreation room / man cave.,door;hair;picture,\"A person walks into a house, sits on the couch and watches the television.\",c006 6.00 11.50;c008 1.00 9.00;c151 11.40 17.90;c088 16.70 24.40;c144 19.40 25.10;c144 16.20 28.90;c097 3.20 9.20;c141 4.20 9.00;c059 10.90 16.70;c154 24.90 30.30,33.42\r\nMHI9B,D0RU,Living room,7,6,Yes,A person pours coffee in a cup in a doorway and then tidies some papers.,cup;dish;doorway;drink;floor;glass;hair;paper/notebook;papers;table,\"A person walks through the door, pours coffee into a glass at the table and then picks up papers off of the floor.\",c107 26.50 32.50;c009 28.50 33.60;c097 0.00 9.60;c108 8.00 23.80;c118 8.90 32.90;c117 30.30 38.00;c127 30.70 38.00;c144 1.70 10.90,36.92\r\nCNQA9,PKND,Bedroom,,,No,\"A person lying in a bed awakens. They stand, grasp the picture next to the bed and begins to shake.\",bed;picture,Person laying in bed holding a picture up above head and looking at it.,c134 0.00 32.00;c084 0.00 32.00;c146 0.00 32.00;c149 1.30 32.00,31.38\r\nTD1KD,Z68L,Bedroom,6,6,Yes,\"A person running into the bedroom with their laptop, takes a glass and then leaves.\",cup;glass;laptop;table,\"Person walks into the room with a laptop, puts it onto the desk, and then picks up a glass of water before walking out.\",c107 18.20 26.30;c047 1.30 13.40;c009 6.00 13.30,27.38\r\nIJN3M,D0RU,Hallway,7,7,Yes,\"A person is in a hallway putting their shoes on, they then start playing with the camera on their phone before putting it in their pocket.\",camera;chair;phone;shoe,\"A person walks through a room, sits on a bench, puts on shoes, and fiddles with a phone\",c015 0.00 8.60;c016 25.00 42.00;c053 5.30 27.50;c151 3.60 8.60;c016 0.00 8.20;c055 4.40 28.10;c059 3.00 42.00,41.42\r\nVP6ID,D0RU,Home Office / Study (A room in a house used for work),3,6,Yes,\"A person is seen eating a sandwich and standing. They look at a vacuum and ignore it, continuing to eat.\",chair;food;sandwich;vacuum,person sitting in chair eating a sandwich stands up walks around,c065 3.90 31.80;c156 3.90 31.60;c061 0.00 39.00;c059 0.00 10.40;c067 0.00 39.00,37.96\r\nC6F8V,18IT,Bedroom,6,7,Yes,A person is standing in front of a mirror laughing while holding a pillow.,mirror;pillow,\"A person is holding a pillow while looking at themselves and smiling into a mirror.;Person looks into a mirror while holding a pillow, laughing and rocking himself.\",c094 0.00 12.00;c076 0.00 20.00;c149 14.00 19.00;c078 0.00 20.00;c096 0.00 20.00,18.58\r\nC4DFA,P3TI,Pantry,7,6,Yes,A person laughs as they take a bag of food from the shelf. The person takes an item from the bag and then closes it.,bag;counter;food;groceries;grocery;orange;shelf;table,\"A person is taking a grocery bag and placing the grocery items inside of the pantry.;The person grabs a bag from the pantry, takes a look inside and then starts bobbing his head up and down. After looking through the bag he grabs an orange, puts in on the kitchen counter, then rolls up the bag and puts it back where it was.\",c020 7.10 13.20;c023 0.00 9.50;c061 13.20 18.40;c063 13.20 18.40;c130 13.90 19.30;c021 6.20 12.50;c081 27.50 36.00;c062 13.20 19.50;c149 0.80 13.50;c009 13.40 19.50;c022 28.20 36.00,34.88\r\nPNAXO,UTMU,Dining room,4,7,Yes,A person is sitting at a dining table next to a window. Before them on the table is a sandwich. The person smiles and then grasps the sandwich to begin eating it.,chair;food;sandwich;table,A person is sitting at a table in a chair eating a sandwich.;The person sat at the dining room table eating a sandwich.,c065 4.10 34.00;c011 0.00 34.00;c156 4.10 34.00;c059 0.00 34.00;c067 0.00 34.00;c061 0.00 34.00;c069 0.00 5.00,32.92\r\n1G2QC,3531,Dining room,6,7,Yes,\"A person in the dining room is dressing by putting a jacket on. They begin drinking from a glass of water. Afterwards, they take a towel and wrap it around their phone.\",clothes;cup;glass;jacket;phone/camera;table;towel,A person puts a jacket on and takes a sip of water.,c106 12.90 28.80;c148 0.00 17.10;c001 24.80 35.00;c033 25.50 35.00;c009 22.80 28.50;c000 0.00 17.30;c035 25.90 35.00;c015 27.00 35.00,33.92\r\nU3EH7,HR43,Bathroom,6,7,Yes,One person with hair in a towel is playing games on a laptop and laughing.,laptop;toilet;towel,A person is sitting on the toilet with a towel wrapped around their head. They have a laptop on their lap and are laughing at the laptop.,c033 3.20 16.80;c047 8.00 15.60;c051 15.20 29.40;c149 10.20 35.30;c052 0.00 37.00,35.71\r\nOTMBG,DXDI,Laundry room,3,7,Yes,Person is sneezing in front of the window as they pull detergent from the cabinet. They snuggle a shirt as they put it into the washer.,washer,A person is grabbing an item and putting it on top of the washer. The same person then takes clothes out of the washer.,,21.92\r\nKLARI,D0RU,Bedroom,4,5,Yes,A person looks at a bag of groceries on the bed while standing then leaves.,bag;bed,\"A person looks through a backpack and takes out items, rubs some lotion on themselves, and leaves the items next tot he backpack as they walk away.\",c020 0.00 36.00;c021 0.80 36.00,39.67\r\nBBAVF,6RE8,Living room,7,7,Yes,A person is standing at the window watching the sky outside.  The person takes off their shoes and grasps them while walking to the door.,chair;door;shoe;window,\"The person looks out the window, sits down and takes off their shoes. Then they walk out of the room.\",c092 0.00 7.80;c154 12.10 19.70;c151 3.70 10.00;c057 6.00 16.40;c059 3.50 10.90;c053 10.70 20.30;c097 15.70 22.00;c056 7.20 16.40,30.62\r\nD4LRR,DYEW,Bedroom,6,7,Yes,A person smiles and takes a picture of themselves. The person throws the camera onto the bed and gets out their laptop.,bed;camera;laptop;phone;picture,A person is sitting on a bed taking a picture then they open a laptop and lay down on their bed.,c015 0.00 14.70;c134 19.20 31.00;c048 11.60 19.10;c152 20.00 31.00;c087 0.00 11.10;c016 0.00 11.60,30.42\r\nX2QWR,QB52,Living room,6,7,Yes,\"A person is in a living room watching television while sitting on a sofa, they stand up and before leaving turn off the light.\",light;remote;sofa;television,\"A person is sitting on a sofa, then picks up the TV remote, presses a button on it, then stands up and turns off a nearby lamp before walking away.\",c123 0.00 26.50;c105 25.70 31.00;c132 0.00 26.40;c154 23.40 30.10,30.04\r\nLW51F,HJJ4,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is washing a mirror and then closing a book in a entryway.,book;mirror;rag;towel,\"A person is standing holding an open book and a mirror. The person polishes the mirror with a cloth and then closes the book;The person is standing, holding a book and a mirror. The person polishes the mirror with a rag. The book is open. The person closes the book.\",c025 11.30 17.00;c026 0.00 17.00;c093 0.00 15.20;c033 0.00 6.20;c038 2.60 15.30;c095 0.00 15.20,16.17\r\nQ5BXH,T7C3,Pantry,7,7,Yes,A person is standing and working on putting groceries away.  The person is shutting the cabinet door.,cabinet;food;groceries;shelf,Person in the kitchen going putting groceries away and organizing them into the cabinet.,c114 0.00 48.00;c130 0.00 48.00;c081 0.00 48.00;c062 0.00 48.00,47.33\r\nL57L2,P6LJ,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person grasps a small bag of clothes. The person places this bag into a large box, and then closes the box and seals it with tape.\",bag;box;clothes;floor;tape,A person is picking up a bag and putting it in a box then they close the box and seal the box with tape.,c020 3.00 20.00;c022 15.40 21.90;c039 22.80 31.80;c151 19.70 28.10;c125 24.10 121.70;c042 14.70 26.20;c040 14.10 26.20,124.04\r\nBL9JK,4OHY,Garage,6,7,Yes,In a garage a person is running around in a circle holding a towel. The person is throwing food down on the floor in the center of the circle.,dish;floor;food;towel;tray,\"The person is going around in a circle holding a towel, after in which he throws something from a tray on the floor.\",c033 0.00 3.10;c126 23.20 31.30;c064 23.20 28.80;c120 21.80 28.30,31.25\r\nM91YM,D0RU,Kitchen,6,4,Yes,A person turns on the light then runs to the window and grasps it. They open the window.,doorway;light;window,\"A person enters their kitchen and turns on the light, and then closes a window.\",c104 4.20 8.30;c089 9.90 24.50;c090 7.70 24.00;c097 0.00 3.90,31.58\r\nS1UFD,C7O9,Pantry,5,7,No,A person is opening a bag and pulls out a sandwich then places it on a desk or a shelf before leaving.,bag;closet/cabinet;doorway;food;groceries;light;pantry;shelf,\"A person is putting food from a shelf into a bag, then then set the bag on the floor turn off the light and leave.;A person walks into the pantry with a bag and begins taking items off the shelves to put in the bag. The person then sets the bag down, leaves the pantry and turns off the light..\",c020 22.80 28.80;c097 0.00 5.90;c105 25.60 30.50;c062 6.70 20.80;c130 0.90 20.90;c081 2.20 8.20;c114 2.80 30.20,30.96\r\nZV4JV,L4ZP,Stairs,7,7,Yes,\"A person is standing and holding their phone. Then, leaving the phone, the person walks over to the doorway and picks a towel up off the floor.\",doorway;floor;phone;towel,\"The person is talking on a cell and walks down the stairs, picks up a rag up and looks out the window\",c033 18.60 24.00;c015 0.00 11.20;c035 17.50 23.40;c017 5.90 11.60,22.88\r\nL2N0G,3H6W,Kitchen,7,6,Yes,\"A person was standing on a towel. While standing on a towel, a person began closing a container of medicine.\",medicine;towel,A person opens up a medicine bottle after walking onto a towel.  They close it and walk away.,c128 3.70 8.10,19.83\r\nETY8D,H8N1,Kitchen,5,4,Yes,A person is sneezing as they try to put away groceries in their pantry. The person takes their phone out and snaps a picture of themselves. The person leaves.,cabinet;door;food;groceries;shelf,Person walks to cabinet. Person then sneezes as they put groceries away in the cabinet.;There is a person putting groceries into a cabinet.,c153 0.50 15.40;c112 11.60 16.90;c130 2.20 14.70;c061 7.70 16.50;c063 7.70 16.50;c006 11.10 17.00;c081 7.50 16.50;c062 7.50 16.50,19.92\r\n79QDP,T7C3,Stairs,7,7,Yes,A person takes a pillow off the step then sneezes as they hold their shoes.,pillow;shoe,A person is holding shoes and grabs a pillow from the stairs before sneezing.,c076 0.40 23.00;c153 10.10 17.00;c053 0.00 23.00,22.38\r\n87ZB1,3VLX,Bathroom,5,7,Yes,\"A person is sitting on the toilet with the lid down working on homework, using their lap as a table and drinking wine and laughing.\",dish;glass;homework;notepad;paper;pencil;table;toilet,\"Person is sitting on the toilet with paperwork and picks up a glass of wine from table, drinking wine and smiling and laughing.;Person sitting picks up a notepad and pencil, starts writing, then picks up a glass and drinks from it\",c145 0.00 22.10;c149 10.40 17.20;c152 10.40 24.00;c106 6.90 14.10;c120 4.80 11.10;c115 0.00 27.00;c118 5.90 27.00,25.50\r\nMKDCU,UTMU,Bedroom,7,6,Yes,A person awakens in their bedroom snuggling a pillow and smiling. They watch television before leaving.,bed;doorway;pillow;remote control;television,\"The person wakes up and turns on the television with a remote, watches television, and then gets out of bed.\",c076 0.00 34.20;c078 0.00 32.00;c154 27.80 37.60;c132 0.00 35.70;c077 28.20 33.60;c146 0.00 7.80;c097 33.80 38.00;c134 0.00 31.80,37.42\r\nLJ0JS,0KZ7,Garage,5,7,Yes,\"A person, wrapped in a blanket, drinks a glass of water as they look out the window. The person leaves.\",blanket;cup;doorway;glass;window,\"A person is looking out a window, clothed in a blanket.  The person periodically takes a drink from a glass.  The person then walks outside.\",c092 0.00 13.60;c072 0.00 27.00;c106 0.00 12.10;c107 0.00 25.90;c097 21.30 27.00,25.50\r\n6E4JA,EA2K,Garage,5,7,Yes,Person A is in a garage.  Person A takes a bite of a sandwich then reaches in a bag and takes out a music instrument and starts to play it.,bag;chair;food;sandwich,A person in the corner is eating food. They then pick up an object and look at it.,c065 0.00 4.30;c156 0.00 4.30;c151 5.20 12.30;c059 17.10 28.80;c021 7.30 16.00;c020 11.10 32.00;c061 0.00 22.70,30.83\r\nORUV6,ZSRZ,Bedroom,6,4,Yes,\"A person is watching a video on their phone while in their bedroom. They are sitting on the bed and smiling because the video is funny, and then they start drinking some coffee.\",bed;coffee;cup;glass;paper/notebook;phone;video,\"A person is sitting on a bed, looking at a video of something on their phone, smiling. The person then puts the phone on the bed, picks up a glass of coffee from the bed, and starts to drink.\",c135 0.00 25.00;c106 14.80 19.80;c107 12.50 25.00;c015 0.00 14.70;c152 0.00 16.30;c115 0.00 14.70;c116 10.70 19.80,24.00\r\n3XH1V,6RE8,Dining room,6,7,Yes,A person holding a pencil works on homework at the dining room table then looks at a television and smiles.,chair;homework;paper;table;television,Person sitting down watching television while writing at a table.,c011 0.00 39.00;c132 0.00 39.00;c145 0.00 39.00;c152 29.50 39.00;c059 0.00 39.00,38.08\r\nG6GQP,KFGP,Kitchen,6,1,No,A person is holding a book and laughing as the person stands in the doorway.,book;doorway,{},c032 0.00 15.20;c149 4.10 15.10;c026 0.00 29.00;c029 2.30 21.80;c152 2.70 29.00,27.79\r\n1221S,ENC8,Dining room,7,7,Yes,\"From the living room, the person could see the stove and cabinet in the kitchen.  The person started walking into the kitchen, putting the broom in the corner.\",broom;cabinet;corner;doorway;picture;stove,person gets out of chair and grabs a broom,c102 13.40 22.80;c097 15.50 21.60;c100 13.30 18.60;c154 7.70 12.50;c099 17.10 23.50;c098 13.60 23.00,38.08\r\nWP8D0,UTMU,Home Office / Study (A room in a house used for work),3,7,Yes,A person is seen opening the door to their home office.  They are seen drinking coffee while tidying up some papers on the desk.,beverage;chair;cup;desk;door;paper/notebook;table,A person walks into a office with a beverage they are drinking. The person then begins to look through some papers.,c011 3.80 12.10;c008 0.00 5.00;c106 5.50 24.20;c107 2.60 9.50;c151 4.50 11.40;c154 2.30 7.50;c145 8.60 20.00;c059 6.00 30.00;c009 8.00 12.90;c014 9.20 30.00;c097 1.00 6.80,28.92\r\nRS2H9,PKND,Living room,6,6,Yes,\"One person drinks coffee and watches as another person grasps food from a shelf and leaves, laughing.\",coffee;couch;cup;food;sofa;water jug,The person holding the water jug is standing and and walking in front of a person sitting on a couch who is sipping from a cup.;Person walking around with plastic container with food while another person is sitting on the couch drinking coffee.,c106 0.00 33.00;c061 10.00 33.00;c149 10.60 30.00;c123 0.00 33.00,31.92\r\nPHN7Z,DXDI,Living room,3,7,Yes,\"A person is grasping a vacuum, then dressing in clothes, and finally closing a door in a living room.\",clothes;door;vacuum,A person is vacuuming the floor before putting on a jacket and closing a door.,c006 20.00 27.00;c137 0.00 9.50;c148 6.40 18.10,30.08\r\n6YZOL,8718,Kitchen,6,7,Yes,A person holding a broom is laughing and closing a doorway.,broom;door;floor;something,\"This person is holding a broom, picks something up off the floor, then closes a door.;A person is holding a broom while picking things off a floor.  The person walks over to a door and closes it before inspecting the bottom of the broom.\",c098 0.00 32.00;c100 0.00 4.30;c127 5.00 12.30;c006 20.40 29.10,31.04\r\n00HFP,YMXV,Bedroom,4,4,Yes,A person is taking shoes off a shelf and throwing them on the floor.,floor;shoe,\"Someone enters a bedroom and picks up some shoes, then throws them down on the floor and plays with them.\",c126 13.60 21.90;c053 2.80 22.40;c058 19.50 26.90,31.08\r\n7OHQP,5LWB,Stairs,4,2,Yes,\"A person walks down the stairs and glances at themselves smiling in a small decorative mirror on the way down. They suddenly sneeze, and immediately their phone rings.\",hair;mirror;phone;stairs,A person is walking down the stairs then fixing their hair in the mirror right before they sneeze and take a phone call.,c096 3.80 14.70;c019 29.20 32.00;c144 6.60 14.20;c153 11.00 23.60;c018 23.90 31.20,31.29\r\nPO74I,KFGP,Stairs,6,7,Yes,\"A person runs up the stairs, then pauses halfway to look at a picture on the wall. The person gets a phone call, then opens their phone to accept the call.\",phone;stairs;wall,Person walking up stairs and then answers the phone and begins to talk.,c015 7.70 27.00;c018 5.80 11.70;c150 0.00 5.90,25.88\r\nWPPAT,WQ8Z,Living room,7,7,Yes,A person walks part the doorway then begins to take out the medicine bottle from the nearest cabinet.,cabinet;doorway,A person opens a cabinet and takes something out of it.,c113 16.60 24.10;c097 4.20 16.10;c112 20.50 25.70,27.38\r\nOBT3Q,KFGP,Hallway,6,6,Yes,One person with hair in a towel is in a chair pouring a soda then drinking it.,cup;glass;hair;towel,The person is sitting in a chair with a towel in their hair. They open a glass and drink out of it.,c106 5.80 30.00;c059 0.00 30.00;c107 0.00 30.00;c108 0.00 10.30,29.46\r\nRVLXD,HJJ4,Garage,5,6,Yes,A person is dressing then begins tidying a cabinet before turning the doorknob to leave.,cabinet;clothes;door;jacket,A person gets dressed in some clothes.  They open a cabinet then close it again.  They walk to a door and grab the doorknob to open the door.;A person is putting on a jacket and opening a cabitnet then closing it and holding a doorknob.,c112 17.50 23.50;c141 19.90 25.00;c006 16.60 23.40;c113 11.50 17.40;c148 0.00 14.70;c008 20.50 25.00,23.92\r\nNNUCA,A8P9,Closet / Walk-in closet / Spear closet,3,7,Yes,A person walks to the closet and smiles. They place a book in the closet and remove a pillow. Then the person closes the closet and sneezes.,book;closet/cabinet;door;pillow,\"A person walks into their closet and puts a book down. They pick up a pillow, close the door and sneeze before laughing.;A person walks into a room goes to the closet and takes out a pillow.The person closes the doors turn and starts sneezing.The person proceeds to walk away from the doors and laughs.\",c026 0.00 7.10;c031 1.60 6.80;c078 7.30 24.90;c153 15.00 19.90;c149 16.50 22.90;c028 0.50 7.40;c076 6.20 22.50;c079 3.50 9.80;c152 19.70 25.00;c006 7.00 14.80;c112 8.60 15.10,24.04\r\nI4IFT,P6LJ,Living room,6,7,Yes,\"A person is sitting on a stool and putting on their shoes. Smiling, the person crosses over to the window and puts their forehead against the glass.\",chair;curtain;shoe;window,A person is sitting down on a chair putting on some shoes then walks to the window and opens the curtain and looks out.,c090 15.50 32.30;c055 2.10 15.40;c154 11.50 17.10;c150 27.00 35.00;c092 16.00 31.00,34.21\r\nVSJ05,PKND,Other,4,6,Yes,\"A person sits in a chair, drinking a cup of coffee. The person looks into a mirror and laughs.\",chair;coffee;cup;glass;mirror,A person is sitting in a chair looking at themselves in a mirror and laughing while drinking coffee.,c106 0.00 20.70;c107 0.00 22.00;c059 0.00 32.00;c149 2.60 14.00;c152 2.40 32.00,31.46\r\nN1FIJ,Z755,Kitchen,7,1,No,A person reading a book watches through the doorway as another person is beginning to undress in the bathroom. The person in the bathroom notices and while smiling closes the door.,cup;door;glass;shelf,People in the kitchen drinking out of a glass then puts something on the shelf.;A person is drinking coffee in front of a shelf. Another person holding a cup stands next to the first person.,c106 0.80 34.00;c107 0.00 34.00,33.08\r\nAKNRA,PO5L,Living room,6,7,Yes,A person is sitting near the window. Then the person grabs a blanket and starts snuggling it.,blanket;floor;television,\"A person is walking, and sits on the floor. Then they grab a blanket, and then get up.;A person is sitting down by a door they pick up a pillow and snuggle it then they put down the pillow and get up and walk away.\",c151 2.30 8.80;c154 21.30 26.50;c125 4.80 25.30;c132 6.80 12.60,28.88\r\nH26YY,YA10,Garage,7,7,Yes,\"A person walks into the garage, carrying a stack of dirty dishes. The person puts the dishes down, eats a piece of food from one of them, then wipes their hands on their clothes.\",clothes;dish;doorway;food;hand;sandwich;shelf;shirt,\"A person walks into the garage and puts a plate of food on the shelf. The person then picks up the sandwich, eats it, brushes off their hands on their shirt, and walks away.;Person enters garage holding a plate with food. The person puts the plate on the shelf, eats the food, wipes his hand on his clothes then leaves.\",c065 9.10 23.80;c068 19.50 24.50;c119 3.40 9.40;c062 3.30 9.10;c156 8.20 23.00;c067 10.30 16.30;c069 6.00 12.50;c118 0.00 7.70;c061 0.40 5.20;c097 0.00 4.00;c081 3.70 8.60;c063 7.20 12.50,30.08\r\n9ITF3,H8N1,Bathroom,5,6,Yes,\"A person walks into the bathroom, holding a bag. The person puts the items from the bag away in the cabinets, then leaves, turning the light off behind them.\",bag;cabinet;groceries;light,\"A person puts a bag on top of the cabinet, takes out all the items and then turns off the light.\",c105 23.30 29.30;c020 0.00 29.90;c021 0.00 4.30;c022 0.00 4.60;c023 0.00 3.70;c130 0.00 26.20,30.71\r\nU928R,18IT,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person in a hallway is smiling and eating an apple stops and stands in the doorway to a pick up a bag off the floor.,bag;doorway;floor;food,\"A person is in the doorway eating a piece of fruit, and appearing to be sneezing.;A person is eating an apple and laughing standing in a doorway, then he grabs a bag\",c156 0.00 11.50;c149 0.00 16.20;c023 15.40 23.80;c152 0.00 13.50;c061 0.00 24.00;c097 12.50 24.00;c020 17.50 24.00,22.62\r\n6QSON,4OHY,Living room,5,6,Yes,\"A person is in a living room grasping a glass mug, they then open a bag containing groceries and place them on a desk.\",bag;cup;glass;table,A person carries a glass around a table and puts it on the table.  The person picks up a bag and takes something out of it and puts it on the table.;a person holds a cup and walks around a table then grabs a bag or box,c107 0.00 17.20;c021 15.50 24.30;c020 16.80 26.60;c022 22.90 28.00;c009 12.80 18.10;c109 9.50 17.40,30.67\r\nEXB02,KQI6,Entryway (A hall that is generally located at the entrance of a house),1,7,No,One person is tidying up with a broom while another person with a box watches and smiles from the doorway.,book;box;broom;chair;door;wall,A person is cleaning the wall with a broom. Another person then walks in holding a box.;Person #1 is sweeping the wall with a broom. Person #2 walks in through the door and points at the wall smiling and laughing. Person #2 is holding a plastic sandwich container.,c097 11.60 17.80;c098 0.00 9.50;c102 0.00 22.50;c152 1.90 15.60;c060 0.00 31.00;c149 13.40 31.00;c026 12.00 31.00,30.08\r\n9GKCA,DYEW,Basement (A room below the ground floor),5,7,Yes,A person awakens lying in a chair with their feet on a table and a blanket over them.,blanket;chair;table,A person is sitting on a chair covered in a blanket with their feet on a talbe and appear to be sleeping then they awaken and stretch.,c070 0.00 31.00;c072 0.00 31.00;c059 0.00 31.00;c146 13.60 29.60,30.38\r\nW8H3C,8718,Living room,5,6,Yes,\"One person takes a pillow, then sits by a table, puts a glass on it, and smiles.\",chair;desk;light;pillow;table,A person carries a heart pillow to their desk and sits in a chair.;A person is holding a pillow and sitting on a chair then proceeds to clean the pillow.,c076 0.00 3.10;c151 8.50 18.20;c059 14.20 31.00;c078 0.00 31.00;c011 12.00 31.00;c152 0.00 31.00;c104 1.60 8.00;c009 15.40 31.00,30.00\r\nQ3HZI,9Y7F,Living room,5,7,Yes,\"A person is taking a pillow from the sofa. Then, standing, the person begins opening the door to grab a bag of groceries.\",bag;door;pillow;sofa,\"A person takes a pillow off a sofa and snuggles it then carries through a door to the outside/ The person opens and picks up a bag of  from the floor there and carries both items back inside the house. Another person sleeps nearby, oblivious to the action.\",c076 0.00 14.00;c078 0.00 9.40;c008 8.60 17.70;c021 15.70 21.10;c141 9.50 14.00;c023 14.90 23.10;c079 0.00 3.70;c097 12.30 17.20,30.75\r\n2YJUQ,3H6W,Dining room,7,6,Yes,A person sits down at a dining room table while smiling. The person is pouring water into a glass. The person then takes a drink of the water and looks out the window.,chair;cup;glass;table;water;window,\"A person walks into the room, sits in a chair, and pours a glass of water. The person then looks through a window and places the glass on the table.\",c107 7.20 34.10;c092 23.60 31.60;c154 19.40 24.30;c106 13.40 22.80;c108 7.20 15.70;c011 4.30 9.70;c009 11.90 17.20;c151 19.00 24.10;c109 29.90 34.70;c152 3.40 18.40;c059 5.10 23.50,38.46\r\n7D6RR,P6LJ,Kitchen,7,7,Yes,A person is laughing while looking out the window. The person then starts walking towards the shelf to grab some spices.,shelf;window,A person is in the kitchen and takes something from the top of the refrigerator. They then put them on the counter.,,38.58\r\nJ8SHW,X5XO,Pantry,6,6,No,\"The person was working on organizing the cabinet. When the person was done working, the person made a sandwich.\",cabinet;food;sandwich;shelf,The person tidies up items in a kitchen cabinet. The person retrieves some bread and begins to make a sandwich.,c066 30.90 40.00;c112 25.00 32.40;c114 0.00 29.60;c063 0.00 32.20;c082 0.00 27.90,38.88\r\nJ95X1,T7C3,Bedroom,6,7,Yes,\"A person awakens and fluffs their pillow. The person stands up, walks to the desk, and opens their laptop.\",bed;laptop;pillow;table,\"The person was sleeping, then shaking a pillow before getting up and playing with the laptop.;A person is laying on a bed with a pillow they get up and go to a computer and turn it on\",c048 15.70 22.90;c134 29.10 40.10;c133 25.20 38.10;c078 0.00 19.30;c146 0.00 7.20;c154 19.10 28.30;c012 33.00 41.70,45.21\r\n5ZHUE,8718,Kitchen,6,7,Yes,A person is holding dishes over the sink and washing them.,dish;sink,A person is washing dishes in the kitchen at the sink,c121 5.60 33.00;c119 0.00 3.60;c120 2.00 10.90,32.25\r\n74S1R,25TD,Bathroom,7,5,Yes,\"A person walks through the doorway of the bathroom. The person stands there, looking into the mirror, as they eat from a dish of food.\",bag;doorway;food;light;mirror;sandwich,\"Person turns on light, walks in room, opens plastic bag containing sandwich, bites sandwich, and reseals sandwich in bag;A person walks through a doorway, carrying a bag with a sandwich inside of it. After turning on the light, the person takes the sandwich out of the bag and taking a bite.\",c097 2.10 8.40;c156 9.50 19.20;c020 4.00 14.00;c069 9.30 20.30;c061 4.30 13.50;c063 4.70 11.60;c104 0.00 6.50;c065 12.10 20.00;c021 9.30 16.80,27.83\r\nW4S0Q,KQI6,Living room,,7,Yes,One person holds a pillow to their face and sneezes while another person watches the television.,chair;pillow;sofa;television,There is a person sitting on a sofa watching television.  There is another person sitting in a chair holding a pillow.;A person is sitting on the sofa sleeping. A second person is sitting in a chair.,c123 1.80 32.00;c059 10.90 32.00;c132 2.00 32.00;c076 9.50 32.00,30.62\r\nRH44U,XXN8,Home Office / Study (A room in a house used for work),5,7,No,A person is sitting at a desk and holding a cup of coffee. The person stands up and takes a book off the shelf.,book;coffee;cup;desk;shelf;table,A person drank from a cup of coffee before putting it down on a desk. Then the person pulled a book from a shelf and flipped through the pages.,c107 0.00 10.80;c026 9.00 34.00;c030 7.10 12.80;c009 4.60 10.80;c106 2.40 23.30;c109 4.10 16.70;c027 7.00 23.50;c032 3.90 15.00;c011 18.10 33.80;c025 26.10 34.00,33.42\r\nQ6IU9,9PLL,Stairs,5,7,Yes,\"A person sits in a chair at the top of their stairs, working on the laptop. The person closes their laptop and takes out a sandwich, which they began eating.\",chair;food;laptop;sandwich,A person is sitting on the stairs in a chair with a laptop on their lap. They close the laptop and pick up a sandwich off of a ledge and eat it. Then they put the sandwich back on the ledge.,c065 18.30 24.90;c068 28.60 33.00;c069 15.10 22.30;c046 12.00 18.30;c052 0.00 16.30;c156 19.30 27.30;c051 0.00 17.30,32.17\r\nOYGP0,OUKK,Bedroom,1,7,Yes,A person is taking clothes out of a wardrobe and throwing them in a bag in the bedroom.,bag;closet;clothes;wardrobe,A person takes clothing out of their wardrobe and puts it in a bag.,c113 4.90 11.10;c020 1.70 8.10;c001 18.30 25.30;c004 9.90 22.70;c000 9.90 31.00,29.71\r\nBE51K,YMXV,Bedroom,4,5,Yes,A person is standing and looking out the window. Then the person puts down their bag of groceries and begins tidying the stairwell.,backpack;bag;bed;window,\"A person goes over to a window and looks out it, set a backpack down on a chair and then sat on a bed.;A person holding a bag looks out a window, and then sits down on their bed.\",c092 0.00 10.00;c020 0.00 3.70;c022 0.00 14.50;c151 4.60 19.80;c135 11.30 19.80,31.21\r\nYFBA1,R1OT,Recreation room / Man cave,3,7,Yes,A person runs into the recreation room through the doorway and grabs a book. The person opens the book and begins reading.,bed;book;doorway;sofa/couch,\"A person walks into a room, picks up a book, and lays down on a bed. They begin to read the book.;A person walks into a room and picks up a book .The person lays on the bed and starts flipping the pages of the book.\",c027 2.30 8.60;c030 0.60 6.10;c097 0.00 4.30;c134 3.90 10.40;c032 1.80 24.00;c122 1.70 24.00;c026 0.40 24.00;c151 0.30 7.40,22.96\r\nTVTV7,1TZV,Dining room,6,7,Yes,\"A person is snuggling with a table, then the person starts standing up and begins to vacuum.\",floor;table;vacuum,\"A person is lying on and snuggling with a table, they then get up and begin vacuuming the floor.\",c137 13.20 29.00;c011 0.00 16.90;c154 11.90 17.60;c127 12.60 29.00,28.04\r\n8TDNF,25TD,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is dressing while sitting on a chair.  Then a person is throwing a picture into the closet from the doorway.,chair;clothes;hoodie;mirror;scarf,A person is sitting in a chair and putting different clothes on.;A person is sitting in a chair in front of a mirror while putting on a jacket.,c059 0.00 35.00;c096 0.00 35.00;c148 0.00 34.70;c001 0.00 5.70,34.00\r\nI049A,QB52,Bedroom,4,7,No,\"A person is lying in bed. They awaken, get up, open a cabinet and take out some shoes, which they then put on.\",bed;shoe,A person is lying in bed. They wake up and put on some shoes.,c134 0.00 16.10;c135 16.60 23.50;c133 4.10 20.90;c146 4.10 20.90;c055 23.70 31.00,30.25\r\n830OE,JVLO,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,One person throws a pillow at a person drinking coffee. They both laugh and leave together.,cup;pillow,\"The person picks up what looks like a pillow and tosses it onto a pile of other pillow. The person then shakes hands with another person, goes into another room and shakes hands again.\",c076 0.00 6.80;c080 2.60 7.70;c149 6.30 12.00;c152 6.10 32.40,31.79\r\n2I871,JVLO,Hallway,6,6,Yes,\"One person is lying in the hall on the phone when another person runs in with some dishes, then leaves.\",bag;doorway;floor;groceries;phone,\"A person is laying on the floor listening to their phone. Another person walks into the room, puts a bag down, then runs away dancing.;A person lying down on the floor and another person running in to the house and setting something down on a counter and running out of the house.\",c015 0.00 14.90;c150 19.20 32.00;c020 11.80 22.40;c023 11.00 16.60;c124 0.00 14.60;c130 11.00 22.80;c097 13.60 18.80;c019 0.00 14.60,31.42\r\n91J8K,ZAWX,Bedroom,5,5,Yes,A person is grasping a doorknob while snuggling with a towel in their hand.,closet/cabinet;clothes;door;handle;shirt;towel;wardrobe,\"A person holding a towel trying to open a wooden door. The person try to open the door drops the towel picks it and proceeds to try and open the door, the door will not open for them.;A person is standing holding a towel. They unlock and try to get a wardrobe open but it don't come open.\",c141 7.50 16.70;c033 0.00 29.20;c000 0.00 29.20;c113 0.00 32.00,31.21\r\nQNPDC,BYF9,Dining room,7,7,Yes,\"One person puts a camera on the table, pours coffee, then leaves with a sandwich and the coffee.\",camera;coffee;cup;dish;phone;sandwich;table;thermos,\"A person walks into a room holding a phone. Puts phone on table, pours coffee and walks away holding coffee and sandwich.;A young person walking into the kitchen setting something down on the table and opening up the thermos and pouring coffee into a cup and walking away.\",c067 36.90 44.00;c015 5.70 11.50;c017 6.80 13.00;c108 11.10 24.60;c107 16.30 24.80;c120 37.10 44.00;c118 39.00 44.00;c009 5.30 12.50,42.88\r\n0J1AQ,3VLX,Dining room,5,5,Yes,A person is sitting in a chair working on fixing a pair of shoes. The person uses a laptop to pull up an instructional video on how to do the repairs.,chair;laptop;shoe;table;video,It seems as if the person is multi tasking by chatting online and trying to get a sneaker ready to put on but is distracted by what is on screen so the laptop is closed and sneak left on the table.,c046 31.40 38.50;c052 12.60 31.90;c059 2.50 38.30;c053 3.20 36.40;c154 34.30 39.50;c151 0.90 6.50;c051 12.20 36.20;c011 2.10 38.70;c054 8.90 14.00;c048 10.60 17.00,41.17\r\nLQGMM,P6LJ,Kitchen,4,5,Yes,A person is drinking soda standing by the refrigerator. A person reaches for spices on a shelf while the person is cooking.,bottle;cabinet;dish;food;glass;pot;something;stove;woman,a woman getting a drink and cooking on a stove.;A person drinks something from a bottle.  The person takes something from a cabinet and starts cooking on the stove.,c147 1.70 56.20;c113 21.50 32.70;c147 39.30 55.40;c120 28.40 37.00;c106 8.00 13.80;c061 28.10 34.40,57.33\r\nTOY9V,4B8G,Laundry room,5,7,Yes,\"A person is standing in front of a cabinet in the laundry room. The person closes the cabinet door, smiles, then looks out the window.\",cabinet;clothes;door;window,A person opens a cabinet then looks out a window.  The person has some clothes over his shoulder.,c113 0.00 7.00;c000 3.70 9.10;c090 12.00 29.40;c152 10.20 16.00;c112 6.70 13.60;c092 12.00 31.00,30.08\r\nFNRYR,6NQX,Kitchen,4,2,Yes,From the dining room the person could watch the stove while fixing the vacuum.,vacuum,There is a person on the floor working on a vacuum cleaner trying to get it to turn on.,c136 0.00 32.00;c137 0.00 32.00,30.75\r\nS3FY2,HJZQ,Bedroom,7,6,Yes,A person is playing with a towel and then walking around the bedroom  while putting away clothes.,clothes;towel,A person plays with a towel and rubs it on their neck while pacing back and forth. They then take off their shirt and throw it.,c000 27.70 31.00;c003 27.70 31.00;c155 23.00 31.00;c033 25.10 31.00;c152 0.00 6.60;c034 0.00 31.00,30.42\r\nW7J00,JVLO,Living room,3,1,No,A person is eating food and another person is washing clothes.,bag;clothes;doorway;food;stone wall;towel,A person is standing in a doorway eating a bag of food while smiling. A second person is outside throwing a towel against stone and rolling it into a ball.;A person is eating food from a bag. Another person is outside beating a towel on the cement.,c061 0.00 25.40;c156 0.40 24.00;c036 23.40 32.00;c020 0.00 24.90;c152 4.10 9.40;c000 22.50 32.00;c003 22.30 29.20;c001 25.20 32.00;c063 0.00 4.00;c062 0.00 6.40,31.25\r\n7O2LP,2RTW,Living room,6,6,Yes,A person runs into the door of the entryway to their home. The person gets upset and throws the dishes they were carrying onto the floor.,dish;door;floor;food;skateboard;table;television,\"A person is holding dishes while walking slowly, then they stumble on a door drip the dishes and then tries to pick them up.;A person walks through one room into another carrying dishes and drops some on the way and running into a door.\",c126 14.60 21.80;c118 0.00 20.80;c061 0.00 21.10;c127 23.20 28.30,30.71\r\n9KGIR,2RTW,Bathroom,6,6,Yes,\"A person drinks medicine from a cabinet with a light and a mirror, then puts the bottle away and closes the door.\",bottle;cabinet;cup;door;light;medicine;mirror,\"A person walks into a room and opens a cabinet. The person takes out a bottle of medicine and opens it, then pours some into a small cup. The person drinks the medicine, then puts the bottle back into the cabinet, then exits the room.;A person walks into a bathroom and opens a cabinet door and takes out a bottle. The person pours the contents of the bottle into a smaller container, drinks it, then places the cap back onto the bottle and places it under the sink and walks out of the bathroom.\",c112 2.10 8.80;c128 4.50 13.50;c129 8.70 25.20;c113 0.80 6.60;c128 2.20 23.40;c097 27.10 32.40,32.46\r\nBXRSI,2RTW,Living room,6,6,Yes,\"A person is tidying the entryway to their home with a broom. The person takes a remote, turns on the television, and continues working.\",broom;floor;television,There is a person sweeping the floor.  That same person pick up a remote and turn on the television,c102 0.00 41.00;c127 0.00 41.00,39.75\r\nJN2E8,L4ZP,Living room,6,5,Yes,\"A person, snuggling with a blanket, drinks a cup of coffee as they make their way across their entryway. The person throws the blanket down.\",blanket;coffee;cup;glass,A person drinks from a cup while wrapped in a blanket.  They then throw the blanket off of themself and walk away,c071 14.50 20.20;c072 0.00 16.00;c074 11.80 19.20;c106 0.00 13.90,21.04\r\nQNHM7,ID9V,Garage,7,7,Yes,\"Person is running to get coffee from shelf, then starts smiling and puts cup of coffee on table.\",coffee;cup;dish;glass;shelf;table,A person is running in a garage. They pick up a cup of coffee from a shelf and drink it before putting it on a table.,c106 6.50 13.90;c009 15.30 27.00;c109 10.10 19.20;c150 0.00 6.30;c009 10.10 19.10;c107 5.40 25.70;c106 5.00 26.00;c110 4.00 11.00;c118 5.70 25.60;c120 5.80 10.30;c119 19.50 25.10,26.00\r\nYPUYO,6RE8,Bedroom,4,5,Yes,\"A person smiles as they take a book from the cabinet. The person reads something, then begins laughing.\",book;something,The person walked into the room and bent over in front of a shelf and messed with some stuff and then got down on his knees and  picked up a book and opened it and then stood  back up and started to laungh uncontrollably.,c026 7.10 33.00;c029 13.60 33.00;c032 9.00 33.00;c149 15.50 33.00;c154 8.50 19.80;c027 8.50 16.80;c030 7.90 16.30;c152 15.30 33.00;c151 2.60 11.20,31.79\r\nWKU7H,UTMU,Kitchen,7,7,Yes,\"A person is tidying up the kitchen, putting away some utensils on a shelf above the stove. The person drinks from a cup of coffee.\",cabinet;coffee;counter;cup;door;drawer;item;shelf;stove,\"A person is closing a cabitnet door and putting an object in another cabit door and tidying up the kitchen, they then take a sip of coffee.;A person closes a drawer, takes something off a counter and puts it into a cabinet.  The person then puts something on a shelf, picks up a cup of something and drinks it, placing the cup on the counter when finished.\",c081 11.10 18.10;c112 4.80 11.70;c113 1.20 7.00;c006 4.80 11.70;c110 17.90 24.60;c106 20.60 33.50,35.79\r\n6VUKN,D0RU,Home Office / Study (A room in a house used for work),4,7,Yes,A person is drinking soda at their desk. Then the person stands and begins walking to the doorway.,chair;cup;desk;door;glass;laptop;table,a person sits in a chair and drinks water while using their laptop then puts on glasses and walks outside;A person is sitting at the computer desk drinking a glass of water. They are watching something on their laptop. The person puts on a pair of glasses and stands up. The person walks through a door to the outside.,c011 0.00 32.00;c106 2.60 14.90;c097 24.20 31.10;c154 18.00 22.00;c051 0.00 20.60;c059 0.00 21.20;c008 24.00 30.40,30.96\r\nI6UIG,9PLL,Kitchen,5,7,Yes,A person is playing on their laptop. then the person begins throwing food towards the door.,food;laptop,\"The person is staring at a laptop, then throws some food.\",c051 0.00 24.40;c064 20.20 31.50,38.54\r\n96GC9,0KZ7,Basement (A room below the ground floor),6,7,Yes,Two people are playing a board game. One person is drinking coffee while the other person has a sandwich.,chair;coffee;cup;food;game;mug;sandwich;table,Person A and Person B are sitting at a table drinking coffe and playing a board game.;Two people play a game. One person drinks something and the other eats some food,c106 0.00 10.90;c009 6.70 14.40;c011 0.00 30.00;c156 7.20 19.30;c110 0.00 5.40;c107 0.00 13.20;c107 11.70 23.90;c069 6.90 12.50;c061 6.70 16.60;c109 6.90 14.80;c067 7.60 17.40;c059 0.00 30.00;c068 11.00 16.60,29.50\r\nCRTUY,KFGP,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is tidying things in the closet including a bag and a box.  Then a person is throwing medicine out of the closet.,bag;box;closet/cabinet;door;floor;medicine;shelf;wardrobe,A person puts a bag and a box on a shelf in a closet and then closes the door to it.;Person walk to the cabinet open door but a box on the top shelf and throw something on the floor then shut the door.,c040 7.60 19.50;c043 6.10 13.00;c020 0.10 9.70;c022 4.90 10.90;c006 22.10 28.00;c024 0.40 7.80;c082 1.30 10.10;c042 8.20 14.60;c126 17.70 22.10;c112 21.50 28.00;c023 0.30 10.20;c081 6.20 10.60;c114 0.30 25.30,26.54\r\nB5226,0KZ7,Closet / Walk-in closet / Spear closet,4,7,Yes,A person is smiling while eating and drinking coffee in a closet. They pickup a towel and leave the closet.,clothes;coffee;cup;dresser;food;glass;sandwhich;sandwich;towel,\"The person in the video is standing up eating, and drinking from a cup;Person standing in attiac eating a sandwich and drinking coffee from a mug, and then grabs a towel from a laundry basket and walks out of the room.\",c033 22.90 31.00;c106 0.00 26.60;c156 0.00 24.70;c065 0.00 25.70;c062 19.40 26.20;c109 19.90 26.80;c061 0.00 26.30;c002 23.40 31.00;c107 0.00 26.50,30.17\r\n3FEYY,C7O9,Kitchen,6,7,Yes,\"One person washes a glass, then cooks at the stove for a moment before running out of the room.\",counter;cup;dish;food;ornament;pan;rag;spoon;stove;towel,\"A person is using a towel to wash a dish before putting the towel on an ornament. They walk to the stove, mix what's inside a pan and walk away.;A person is washing dishes in a sink with a rag.  They they walk to the stove and stir food in the pan.\",c109 10.60 16.40;c111 0.00 16.00;c118 0.00 16.30;c034 12.30 17.30;c121 0.00 16.30;c108 0.00 12.50;c110 12.00 20.30;c147 13.00 26.00;c119 0.70 18.10;c033 0.00 17.30;c038 0.00 17.00,30.00\r\nHCM54,2RTW,Living room,6,6,Yes,A person is undressing near a door in the living room while smiling at a picture on the wall.,clothes;door;picture;shirt;wall,Person standing in a room taking off clothing while looking up with the television on.;The person is standing there smiling. The person then takes off his shirt and continues to stand there.,c088 0.00 21.70;c152 4.00 10.50;c155 0.60 9.90,29.08\r\nTPSUY,EXQX,Living room,5,5,Yes,\"A person stands in the pantry grasping a broom. The person sets the broom down, picks up a pile of dirty clothes, and shakes their head in disbelief.\",broom;clothes;floor;head,A person holding a broom throws it.,c101 6.70 11.90;c098 0.00 11.50;c126 6.70 11.70;c099 6.00 12.00;c004 12.00 17.10;c098 0.00 28.90;c003 10.60 16.50;c126 11.20 17.40,31.75\r\nJ9UX5,2RTW,Living room,6,6,Yes,A person was standing in a room looking at themselves in the mirror snuggling a clearly precious blanket to their chest.,blanket;mirror,A person is hugging a blanket while looking into a mirror.,c072 0.00 31.00,30.38\r\nM3KS7,BYF9,Bathroom,6,7,Yes,\"One person sits in a chair, closes a book and watches as another person runs in and starts tidying up.\",book;chair;mitten;shelf,A person is sitting on a c hair reading a book. Another person runs into the room and dusts a shelf with a mitten.;The person is sitting on a chair in a bathroom reading a book. Another person comes in and starts washing a shelf.,,26.00\r\nVPBIO,9PLL,Kitchen,7,7,Yes,A person is putting groceries on the floor.  They start undressing and taking off their shoes.,bag;basket;clothes;floor;food;groceries;jacket;shoe,\"A person is holding a bag of groceries and putting them on the floor, then they begin to undress.;A person taking some things out of a basket and tossing them on the floor and then taking off his shoes and jacket.\",c020 0.50 5.50;c130 3.70 9.60;c000 20.20 25.50;c155 16.10 23.90;c057 22.10 30.80;c021 4.50 9.10;c062 0.20 16.10;c126 5.00 9.80,31.62\r\n3U6OZ,JVLO,Other,4,2,Yes,A person closes a window then sits in a chair and sneezes.,chair;doorway;window,\"A person walks into a room, closes a window, and then pulls out a chair and sits in it and then sneezes\",c059 18.60 24.90;c089 1.00 10.60;c151 14.40 25.50;c153 18.30 31.00;c097 0.00 3.40,30.25\r\nV8LFC,ZAWX,Stairs,6,5,Yes,\"The person was standing on the stairs while grasping shoes, and looking at the desk below.\",floor;shelf;shoe;stairs,A person walks up some stairs.  The person then picks up some shoes.  The person then begins looking under a cabinet.;A person is standing on the stairs and continue to walk to the top. When they get to the top they pick up some shoes on the landing and then bend down to look underneath a shelf. They put their hand under the shelf and move it around as if swatting something out.,c053 8.10 14.60;c124 14.40 31.00,30.25\r\nU8V9N,WQ8Z,Bathroom,6,6,Yes,\"A person sweeps a bathroom with a broom. They pause for a second and look out the window. They open the bathroom window. They take a dustpan, gather the debris, open a small plastic trash bin and dump the debris in the bin.\",broom;floor;window,A MAN IS TIDYING UP AND SWEEPING THE FLOOR INS HIS LAUNDRY ROOM AND TAKES HIS BROOM AND SWEEPS IT INTO SOMETHING AND EMPTIES IT INTO A BUCKET/TRASH CAN,c102 0.00 14.90;c098 0.00 48.00;c090 25.90 31.30;c092 18.90 31.10;c127 32.50 43.30,46.92\r\nKJOWG,3531,Other,5,6,Yes,A person is washing a mirror and then pouring food into a bowl in the recreation room / man cave.,floor;food;mirror;towel,A person sitting on the floor washes a mirror with a towel. They then pour something out of a bowl.,c062 28.40 32.00;c095 5.70 29.10;c125 0.00 32.00;c038 7.30 28.70,31.33\r\n6YZQO,H8N1,Bedroom,5,7,Yes,\"A person is standing in the doorway holding a pillow.  The person walks into the room and puts the pillow on the bed, then walks to the window and takes a picture of the outside with their phone.\",bag;phone;pillow;window,\"A person holds a pillow and puts it down, then holds a phone while walking to look out a window.\",c077 6.00 11.00;c092 15.00 26.00;c015 10.00 15.00;c018 8.20 18.20;c022 0.00 10.70;c017 20.20 33.00,32.25\r\nA58GR,UD06,Laundry room,7,7,Yes,\"A person is in a laundry room  playing with a box, they then laugh as they put a towel in it and close it.\",box;clothes;shelf;towel,\"a person takes a box from a shelf, opens it, puts clothes in it and closes it.;A person takes a box off a shelf and looks inside.  They then put a towel inside and close it.\",c000 19.70 24.80;c002 19.70 24.80;c040 5.20 33.00;c043 1.40 9.40;c039 21.60 33.00;c041 7.00 14.50;c001 16.30 26.10;c034 20.00 25.40,32.08\r\nQYV5R,MR42,Garage,6,7,Yes,A person holding a pillow puts a towel across the doorway and leaves.,blanket;doorway;pillow;towel,The person holding a pillow hung a towel over a doorway. They then left through the doorway.,c076 0.00 46.00;c097 40.00 45.60;c034 15.20 40.60;c071 5.90 39.90,45.33\r\nCG5KY,Z68L,Bedroom,7,7,Yes,A person is lying down on their bed in their bedroom. They begin taking out their phone and placing it on the desk in the room.,bed;desk;phone;table,\"The person was lying on a bed with a phone and after looking at the screen the person got up, walked over to a desk and sat the phone on it.\",c009 21.00 27.30;c134 0.00 22.80;c017 21.20 27.10;c154 25.20 31.70;c146 0.00 16.90;c135 20.10 30.10;c015 13.10 26.50;c133 0.00 16.90;c018 11.30 17.90,31.71\r\nFW5KJ,HJJ4,Garage,6,7,Yes,A person smiles as they put their sandwich down on a table.,bread;dish;food;sandwich;table,\"A person standing holding a slice of bread laughing,the person proceeds to lay the slice of bread on a table.;Person standing up by a table smiling then pick up a sandwich from a dish and put it back down.\",c009 0.00 4.40;c152 0.00 5.00;c061 0.00 4.00,4.00\r\nDLKWO,UD06,Kitchen,7,7,Yes,A person is grasping the latch to a window then starts cooking on the stove.,cabinet;cupboard;dish;pot;sink;stove;window,\"A person looks out a window then fills a pot with water and sets it on the stove.;Person reaching over and locking the window, goes to cupboard and gets a pot, goes over to the sink and fills it with water, and the puts it onto the stove.\",c113 5.00 15.00;c120 9.50 15.90;c089 0.00 3.10;c119 25.50 31.60,31.50\r\nTY68F,R1OT,Recreation room / Man cave,5,7,Yes,A person walks into a recreation room while drinking coffee and holding a phone and a blanket.,blanket;clothes;cup;curtain;doorway;phone;towel,A man walks from behind a curtain from another room and places a blanket over one shoulder. The person is looking at a cell phone and holding a coffee mug.,c016 0.00 22.00;c071 4.80 12.00;c107 0.00 22.00;c106 8.80 16.40;c015 0.00 22.00;c070 0.20 22.00;c033 0.00 9.70;c097 0.00 4.20;c000 0.00 10.10,20.96\r\nPCZZS,P6LJ,Recreation room / Man cave,4,7,Yes,\"A person stands in the recreation room, grasping a box. The person puts the box down and removes some clothes from it.\",blanket;box;clothes;table,A person grabs a box with clothes in it and empties it.,c044 19.30 36.30;c002 18.20 34.90;c001 0.10 19.90;c004 17.80 36.00;c042 0.40 20.10;c009 13.90 20.10;c040 0.40 20.50;c000 25.10 32.10;c070 18.50 27.60;c073 17.00 27.90,37.29\r\nRB9VI,6RE8,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person in an entryway holding a broom sweeping. They pick up a bag take out a bottle and drink from it. They leave while grasping the bottle.,backpack;bag;broom;cup;doorway;floor;glass,A person is sweeping the floor and throws the broom down.  They take a bottle out of a backpack and drink it as they leave.,c106 16.90 26.20;c110 13.60 24.00;c098 0.00 15.30;c102 0.00 16.70;c127 0.00 17.80;c107 14.00 28.00;c021 10.70 18.30;c101 7.90 14.90;c020 11.00 19.20;c097 23.60 28.90;c099 9.20 13.80;c100 0.00 2.60,30.92\r\nJ647I,XXN8,Living room,5,7,Yes,\"A person is running into the room to answer the phone. Then, sneezing, the person sits down on the sofa and wraps himself in a blanket.\",blanket;phone;sofa,woman wrapping herself in a blanket and playing with her dog,c123 11.80 32.00;c015 0.00 9.80;c016 0.00 9.70;c070 5.70 32.00;c072 5.70 32.00;c151 11.00 18.00;c150 0.00 2.90;c019 1.40 7.80;c073 5.70 10.90;c017 4.10 8.30;c153 2.10 6.90,31.29\r\nCRW0G,0KZ7,Closet / Walk-in closet / Spear closet,4,6,Yes,\"A person is sneezing into a mirror, then lying on the floor and finally drinking coffee in a Closet / Walk-in closet / Spear closet.\",attic;coffee;cup/glass/bottle;dish;floor;mirror,\"A person stands in the closet, looking into a mirror and sneezing. The person then lies on the floor, picks up a glass of coffee, and drinks from the glass.\",c124 11.50 28.00;c093 0.00 12.00;c153 0.00 3.50;c106 17.60 28.00;c096 0.00 9.80;c151 6.00 15.00;c094 3.80 8.50;c118 18.80 25.80;c146 16.90 22.30,26.96\r\nEUJK0,YMXV,Bedroom,5,5,Yes,\"A person is working on their laptop and laughing. They stop, pick up a book and read the back.\",bed;book;chair;laptop,\"A person sitting in a chair works on a laptop.  They place the laptop on a bed nearby and start reading a book.;A person is working on a laptop and laughing, they then close the laptop and put it down and grab a book.\",c026 20.60 32.00;c030 19.00 26.60;c046 14.30 22.10;c049 17.10 24.10;c059 0.00 32.00;c027 20.40 32.00;c032 20.90 32.00;c047 0.00 22.50;c149 0.00 22.10;c051 0.00 21.30;c029 20.70 32.00;c052 0.00 22.40;c152 25.40 32.00,31.29\r\nHKJUR,JVLO,Kitchen,5,6,Yes,The person is closing the refrigerator and drinking out of a box of wine from the refrigerator in the home office / study.,cup/glass/bottle;fridge;refrigerator;water,A person smiles while opening a refrigerator. The person takes some water out an drinks it.;a person smiles then grabs a water out of the fridge and drinks,c142 20.20 27.30;c106 19.70 33.00;c143 1.90 10.90;c152 6.10 11.70;c110 11.10 25.00,32.38\r\nSTYTN,A8P9,Kitchen,7,3,Yes,A person is taking groceries out of a box and then sitting on the floor of a pantry.,bag;box;can;floor;groceries,\"A person walks into their kitchen and grabs a bag out of a box. They put the bag back in the box and sit on the floor.;A person is looking in a bag of groceries,grabs a can, and then sits on the floor and stares at the oven.\",c125 15.60 24.30;c044 2.30 8.20;c151 14.10 20.40;c021 2.20 7.80;c154 19.30 25.20;c023 2.90 10.60;c022 10.00 16.30;c020 2.30 15.40,26.96\r\nMZHDX,LTAC,Bedroom,4,5,Yes,\"A person is sitting on the bed tidying up a pile of clothes.  The person picks up a towel from the pile and puts it to the side, then picks up a picture from the bedside table and looks at it.\",bed;blanket;clothes;paper/notebook;picture;table;towel,A person lays on a bed and gets up to grab things off a table.,c134 0.00 27.40;c012 25.00 32.00;c154 24.50 31.50;c000 0.00 26.70;c002 2.90 7.30;c002 8.20 13.00;c075 25.60 32.00;c004 0.00 26.50;c001 0.00 27.00;c117 25.30 32.00;c037 11.70 26.50,31.38\r\nKVGRN,5LWB,Hallway,6,5,Yes,\"A person, who is snuggling a teddybear, looks out the window and watches the stars. They then start taking pictures with their phone.\",phone;picture;stuffed animal;window,\"A person holds a stuffed animal whole leaning against a wall. The person then hugs, pulls out  a cell phone, and takes a picture from the window.\",c087 10.10 22.00;c092 0.00 5.20;c015 8.70 22.00,20.62\r\nC5LCU,6RE8,Home Office / Study (A room in a house used for work),5,3,Yes,\"A person in a home office opens a cabinet and grabs their laptop, they open their laptop and starts watching movies.\",chair;laptop;table,A person is sitting in a chair and opens a laptop and begins watching it.;A person walks across a room and sits down in a chair at a table.The person opens a laptop and starts working on the laptop.,c048 0.60 7.30;c051 2.00 33.00;c151 0.10 6.30;c059 0.40 33.00;c011 1.70 33.00,32.12\r\nD2CEL,CCI9,Living room,4,6,Yes,\"A person is standing in front of a mirror holding up two different shirts.  The person chooses one shirt and puts the other onto the sofa.  The person gets dressed with their chosen shirt and walks out, turning off the light behind them.\",clothes;clothing;pic;shirt;sofa,\"The people in the video are trying on a jacket, while the other person is swatting at something in the air.;A person is holding articles of clothing. Another person comes and takes an article of clothing from a person. A person puts on a shirt, while another person is looking at a picture.\",c000 0.00 8.80;c001 2.90 10.40;c148 21.80 32.80;c088 29.10 33.00;c002 4.20 12.90,32.38\r\nNY0IW,3H6W,Laundry room,7,7,Yes,A person is undressing in the laundry room.  They put some clothes on a table.  They grab a glass and are then seen leaving the room.,clothes;dish;jacket;table,\"This person takes off a jacket, sets it on the table, then walks out of the room.\",c001 10.70 15.80;c155 4.30 12.70;c009 10.70 15.80;c120 3.00 18.80,25.21\r\nCXF35,YMXV,Recreation room / Man cave,6,5,Yes,A person is seen watching videos on their laptop. They are lying on the couch and notice the doorknob is slowly turning.,bed;door;laptop;pillow;sofa;video,\"The person is watching a program on his laptop.  He sits on his bed, watches briefly, then gets up opens a door to get more lighting.\",c122 2.90 17.50;c141 14.60 22.90;c154 9.50 18.30;c135 2.60 17.20;c051 2.50 16.40;c123 0.50 17.10;c151 18.60 26.00;c008 13.70 20.60;c077 4.90 15.40;c076 5.10 14.00,30.67\r\nSSX6D,OUKK,Living room,3,4,Yes,A person is grasping their camera. The person's phone rings and they answer it while walking toward the cabinet.,cabinet;phone,\"This person walks into the living room, while playing on his phone.\",c016 16.50 26.70;c015 17.10 23.30,31.54\r\nN7GBK,WG9D,Laundry room,5,7,Yes,A person is standing and holding shoes while laughing and then throwing clothes and a towel into a washer in the laundry.,clothes;shoe;towel,Person drops something and puts clothes in washing machine.,c058 0.00 4.40;c034 2.00 6.00;c001 1.90 6.00;c054 0.00 4.40;c003 0.50 6.00;c005 0.50 6.00;c152 0.00 4.90;c053 0.00 4.40;c000 0.00 6.00,5.00\r\n3CW6P,YMXV,Bedroom,6,6,Yes,\"A person sweeps their basement with a broom. They tidy up, grab the doorknob open the door, and leave.\",bed;broom;door;floor;person;towel,The person is sweeping things from the ground. The person kneels over and sweeps from under their bed. The person gets up and opens the door.;someone sweeping a floor and under a bed.,c098 0.00 24.00;c102 0.00 24.00;c008 23.90 30.00;c154 19.50 24.40;c127 0.00 24.00;c036 24.50 29.40;c097 27.40 31.00;c038 20.60 28.10;c033 19.20 28.70;c099 15.60 20.90;c035 18.80 25.20;c101 15.60 20.90;c126 23.60 28.50,30.21\r\nB7SZJ,ZEM0,Bedroom,5,5,Yes,\"A person is taking clothes into the bedroom through the doorway.  The person opens the drawer, puts the clothes in, and closes the drawer before leaving the room.\",cabinet;closet;clothes;door;dresser,\"{};a person walks out a door holding clothes then comes back in and puts them in a drawer, goes out the door again and then comes back;A person carries an armful of clothes out of a bedroom door, closing the door. The person opens the door, enters the room, and closes the door. The person puts the clothes in a drawer of a dresser, closes the drawer, then walks out of the room, closing the door behind. The person opens the door and enters once more.\",c000 0.00 3.30;c006 2.50 7.50;c112 14.00 18.90;c000 5.70 14.60;c113 10.00 14.70;c008 4.90 10.70;c001 10.90 17.20;c002 5.50 18.00;c097 1.50 7.10;c097 4.50 10.50;c097 16.90 23.10,28.79\r\nMV0TX,Z68L,Home Office / Study (A room in a house used for work),7,7,Yes,A person is in their home office sitting down in a chair. They are closing a bottle of medicine while eating a sandwich.,chair;food;medicine;sandwich;table,\"A person sits down at a desk. The person picks up a jar of medicine and puts the lid back back on it, then starts to eat a sandwich. The person then puts down the sandwich and stands up.\",c059 0.50 27.00;c065 9.80 14.10;c067 8.80 15.90;c151 0.00 5.50;c154 22.80 27.00;c065 9.50 21.30;c128 3.30 17.70;c156 9.30 21.70;c011 0.30 27.00;c062 21.70 27.00;c009 20.60 26.50;c061 9.00 14.10;c069 7.20 13.20;c063 7.20 13.20;c068 21.20 26.10,25.88\r\nGBMNT,D0RU,Hallway,4,7,Yes,\"The person came down a hall holding many bags of groceries.  They were grasping the bags with both hands, but the bags were too heavy and the person had to set them down on a chair.\",bag;chair;doorway;food;groceries,A person sets down several packages on different chairs and adjusts the nearest two precisely.,c130 13.70 29.90;c020 0.00 17.50;c022 10.40 17.30;c023 10.10 17.50;c021 15.90 24.40;c097 0.00 5.60;c062 7.40 33.00,32.21\r\nD3N3P,HR43,Bedroom,5,6,Yes,A person is picking clothes out of a box and getting dressed and then throwing it across the room.,bed;box;clothes;floor;jacket,\"A person stands next to a bed and grabs a coat from the bed and puts it on. The person then grabs a box from the bed and throws it on the floor.;This person is in a bedroom, takes jacket out of box, puts jacket on and then tosses the box on the floor.\",c045 13.50 18.00;c148 0.00 15.80;c126 13.50 18.00;c002 0.00 3.30;c000 0.00 18.00,17.04\r\nK8RW9,0KZ7,Stairs,6,7,Yes,A person is grasping a pillow while walking down the stairs. Another person is smiling while turning on the light.,light;pillow,A person is walking down the stairs holding a pillow while another person turns on a light.,c104 12.60 19.50;c076 0.00 23.00,21.92\r\nYRJMX,ZAWX,Stairs,7,5,Yes,A person fixing a chair while another person is snuggling with a broom.,broom;chair;floor;stairs,One person is fixing a chair and another person is sweeping some stairs with a broom.,c098 17.40 32.00;c102 17.60 32.00;c127 17.30 32.00;c059 0.00 21.30,30.79\r\n8MLCU,10FJ,Kitchen,4,5,Yes,A person is working on tidying up the kitchen. They put a cereal box into the pantry and groceries into the refrigerator.,box;doorway;groceries;refrigerator,A person opens a bag of groceries and puts away a box of cereal. They then open the fridge and remove several items.,c130 3.50 29.50;c040 1.90 9.00;c042 4.40 10.20;c143 8.50 14.40;c097 4.70 10.30,29.08\r\nWVOQP,9PLL,Hallway,5,7,Yes,\"A person sits on a pillow, eating a sandwich and drinking a glass of water.\",cup;floor;food;glass;pillow;sandwich;water,A person looking at something on the wall and then proceed to sit down on the floor to eat a item on a plate,c068 16.60 21.30;c106 20.20 25.70;c151 0.00 38.00;c156 10.70 17.80;c107 34.70 38.00;c069 34.70 38.00;c110 34.70 38.00;c063 34.70 38.00;c065 9.40 19.80;c061 9.20 14.50;c125 0.90 8.80;c107 15.40 38.00;c110 14.90 38.00;c063 13.10 38.00,36.71\r\n34J80,KQI6,Living room,4,6,Yes,A person is drinking coffee. The person begins putting food into the cabinet.,chair;coffee;cup;food,A person is sitting on a chair drinking for a coffee cup. The person picks up an orange.,c106 2.90 22.40;c062 19.30 28.00;c059 0.00 31.00;c063 19.00 26.60,30.25\r\nD3PPI,YMXV,Recreation room / Man cave,7,6,Yes,\"Person is watching television while another person is walking towards the shelf, grasping the camera.\",camera;chair;monitor;phone;picture;shelf;television,\"Person is sitting in chair looking at monitor, another person walks in, picks up phone and takes a photograph of monitor.;A person sits in a chair and watches television, another person grabs a phone and takes a picture.\",c059 0.00 34.00;c015 19.00 34.00;c132 0.00 34.00;c087 25.30 34.00;c018 18.20 23.20;c016 19.50 34.00,33.42\r\nMXW4N,YMXV,Bedroom,6,7,Yes,A person is running with a book while another person is smiling at a camera.,camera;paper;phone,\"The person is jogging around in front of another person before running into a close, while the other person is holding up a phone and making faces.;A person runs into another room while carrying some papers, another person is using a phone.\",c015 3.00 18.60;c150 0.00 8.10;c152 4.90 32.50;c115 0.90 33.00;c019 10.00 33.00,31.67\r\nBHTPL,OVEP,Bedroom,5,7,Yes,A person takes a picture out of a cabinet and then puts it in a box.,box;closet/cabinet;paper/notebook;picture,\"A person stands in front of a mirror. The person pulls something out of a drawer, looks at it and places it into a box.\",c086 2.80 10.70;c083 2.00 10.70;c088 2.60 8.70;c113 0.00 5.10;c115 0.80 9.30;c117 0.00 6.90,10.50\r\nXFS7Z,P6LJ,Hallway,6,6,Yes,\"A person is holding some clothes, looking into the mirror. The person sneezes, then takes some medicine.\",closet;clothes;coat;jacket;medicine;scarf;table,\"A person walking in a room takes a coat and a scarf places them on a table ,open a medicine bottle and takes some pills.;Someone walks to a closet and grabs a couple jackets and puts them on a table and looks at them.\",c001 26.40 33.60;c153 23.30 31.70;c009 27.90 41.60;c129 37.10 46.70;c000 6.30 33.60;c128 28.60 46.70;c002 5.50 20.20;c003 6.30 33.80,48.58\r\nWREDC,P6LJ,Dining room,6,6,Yes,\"A person puts down a glass on a table. The person smiles, and leaves the room.\",cup;dish;table,A person is drinking from a cup before putting the cup on a table and walking away.,c009 15.20 24.00;c106 3.30 17.60;c107 2.30 21.30;c109 16.50 22.90;c119 14.90 22.90;c118 0.00 23.00;c110 0.00 12.00,26.04\r\nOMBR9,P6LJ,Living room,6,6,Yes,\"A person is sitting at a desk, watching television. The person pulls out a bag of chips, and eats one while drinking a can of soda.\",beverage;box;chair;clothes;cup;food;medicine;mirror;table;water bottle,A person is sitting in a chair. A person then starts to eat food. A person then drinks a beverage.;A person sits down at a chair. They open a bottle and place it on the table then begin eating food before taking a drink from the bottle.,c011 7.50 62.60;c154 58.60 64.30;c110 13.00 19.00;c151 4.50 13.10;c106 48.20 63.00;c062 44.00 51.60;c156 24.70 51.60;c009 20.50 64.90;c044 24.10 43.40;c059 5.80 14.40;c043 22.80 29.40;c040 25.40 35.90,65.17\r\nA5CRZ,P6LJ,Dining room,6,6,Yes,The person is eating at the desk in the dining room others food cooking through the doorway.,cup;dishes;door;food;hair;table,A person walks to a chair and sits at a table. They begin eating something from the table and look around.;someone sitting at a table with food and a drink;A person walks in and sits at table and begins eating from a dish.,c011 3.50 10.70;c061 8.00 45.90;c156 7.70 45.90;c059 4.00 46.60;c151 0.00 9.20;c011 4.70 46.40;c144 14.70 20.50,49.83\r\nFTG07,P6LJ,Bedroom,6,6,Yes,\"The person opened the door and entered the dining room to take the dishes to the table.  The person the went back through the door way, and shut the door.\",cup/glass/bottle;dish;door;table,\"A person grabs a dish, then walks in and then back out a door. Then sets the dishes back down and leaves, then comes back again.;A person grabbed dishes opened the door left briefly and came back.\",c008 8.50 17.10;c119 5.30 18.30;c009 21.60 40.70;c006 48.10 55.60;c118 5.30 35.50;c120 1.50 40.40;c119 28.90 48.30;c012 0.90 9.30;c110 5.00 9.60;c107 5.00 35.20;c097 12.80 18.30;c141 9.60 14.80;c141 12.30 19.20;c141 17.80 24.40,58.17\r\nOGK5Y,P6LJ,Living room,6,6,Yes,A person fixes a chair in the dining room. They stand up and put something on a shelf.,chair;desk;floor;screwdriver;table;tool,\"A person is kneeling onto the floor and pulling a chair out from underneath a desk. The person works on the chair with a screwdriver.;A young person walks into a room gets down on the floor, picks up a tool and fixes a chair and gets up and leaves.\",c154 33.10 39.30;c125 3.10 38.50,44.12\r\nAJRIJ,T7C3,Living room,4,7,Yes,A person snuggling with a pillow begins watching the doorway.,blanket;chair;doorway;pillow,A young person sitting in a chair hugging a pillow and rest their head wakes up and is looking at something.;A person hugging a pillow looking around a pole.The person proceeds to look around and leans forward to get a better look.,c076 0.00 33.00;c078 0.00 10.90;c059 0.00 33.00;c072 0.00 33.00,31.75\r\nZWE6N,P6LJ,Dining room,7,7,Yes,\"A person takes a cup of coffee from the table. With the other hand, the person grasps a bag of clothes they find nearby.\",bag;clothes;coffee;cup;glass;hand;table,A person takes a mug from the table and drinks from it. The person takes a bag and puts it back down.,c020 15.40 36.40;c107 2.20 37.70;c106 7.60 17.50;c009 32.90 39.00;c023 21.60 29.00;c022 30.70 36.00;c110 2.00 8.80,37.71\r\nGLGQJ,BYF9,Bedroom,6,6,Yes,A person is seen washing a window in their room. They start closing the window and look at their phone.,bed;bottle;cup;curtain;headboard;phone;shelf;towel;window,\"A person washing a window with a cloth and holding a spray bottle in their hand.The person put the spray bottle on the bed closes the window .The person picks up a phone and touches it.;A person is holding a bottle of window cleaner, cleaning an open window. The person places the window cleaner on the headboard of a bed, closes the window, then move the curtains to one side. The person then picks up a cell phone.\",c089 21.10 29.30;c091 0.00 17.60;c015 28.40 39.10;c016 28.60 39.30;c018 19.50 32.00;c111 0.00 10.10;c081 18.90 23.90;c038 0.00 21.70,39.46\r\nMO4WK,BYF9,Bedroom,7,7,Yes,A person sneezes while they work on their laptop at the desk.,bed;hands;laptop;table,\"A person sat on the edge of a bed, used a laptop computer, then sneezed.;A person is sitting on a bed using a laptop when they sneeze into their hands.\",c052 0.00 22.00;c153 13.10 19.80;c011 0.00 22.00;c135 0.00 22.00;c014 0.00 22.00;c051 0.00 22.00,21.50\r\n8D3M4,3VLX,Bedroom,7,7,Yes,A person is fixing a broken television and then opening and closing a medicine bottle.,desk;medicine;monitor;television,\"A person fiddles around with a television on a desk, apparently trying to fix it, and then opens a prescription medicine bottle.;a person tries to fix a monitor on a desk then opens a pill bottle\",c128 24.70 34.20,35.50\r\nFPXL7,JVLO,Living room,1,1,No,Person is grabs doorknob from shelf and starts laughing while throwing at book shelf.,book;doorknob;shelf;window,A person puts a book on a shelf then holds a doorknob.,c028 4.00 8.50;c141 13.60 34.00;c081 3.70 9.00;c089 18.40 25.60;c090 15.80 20.90;c116 4.50 9.80;c152 7.00 12.90,32.50\r\nEMH48,WG9D,Hallway,5,6,Yes,Person is holding a towel and walking towards the sofa.,towel;wardrobe,Person is walking with a tower in hand the person is going down the hall,c033 0.00 4.00,2.83\r\n48EEP,RPBD,Kitchen,6,7,Yes,A person is smiling and laughing by the stove while they look at a laptop.,laptop;stove,A person is standing in a kitchen in front of a stove watching a video on a laptop and laughing.,c051 0.00 31.00;c152 0.00 12.40;c149 0.00 5.90,29.96\r\nJ5FLP,ZAWX,Bedroom,5,6,Yes,A person is putting on lipstick in a mirror.  Another person is laughing by a cabinet.,clutter;lipstick;mirror;sofa/couch,\"A person is in the mirror putting on lipstick, a second person is rocking and laughing next to them.\",c149 12.00 30.00;c096 0.00 17.00;c096 16.80 24.90;c152 13.50 30.00;c123 11.70 30.00,29.08\r\n5D1FD,CO1W,Stairs,5,7,Yes,\"A person is eating some food from a bag. They smile, and turn on a light.\",bag;food;light;stairs,\"A person is sitting on some stairs eating something from a bag and smiling, they turn on a light.\",c061 0.00 31.00;c063 4.40 13.30;c104 22.20 29.90;c020 0.00 31.00;c156 9.10 17.40;c152 3.00 8.50;c021 5.20 10.40,30.38\r\nGM4QR,YA10,Living room,7,7,Yes,A person is sneezing while shaking out a blanket.  Then a person is leaving with some dishes.,blanket;dish,\"The person is folding a blanket, sneezing and picking up dishes off of a coffee table.\",c070 0.00 20.40;c075 0.00 20.50;c118 17.00 25.00;c120 17.00 30.00;c153 3.60 9.30;c071 13.70 20.40,28.75\r\n3YNPY,WQ8Z,Living room,6,7,Yes,A person puts a towel onto the shelf. The person then throws their keys onto the table and sits down in a chair.,chair;shelf;towel,The person puts a towel on a shelf and sits down in a chair.,c059 8.40 15.00;c081 2.60 7.10;c034 2.50 7.10;c151 6.80 12.90;c154 0.00 12.70;c036 2.30 7.40;c037 0.00 5.50;c033 0.00 7.10,14.00\r\n55FRY,F56T,Dining room,4,4,Yes,A person throws a book onto the dining room table while holding a glass.,book;bowl;chair;cup;table,a person throws a book onto a table and then sits down.  The person take a drink and then gets back up and leaves.;someone throwing a book on a table and sitting down and taking a drink,c106 12.90 23.20;c009 3.30 11.60;c151 8.30 16.30;c031 3.90 8.40;c154 22.60 28.30;c059 7.20 16.00;c011 11.60 26.70,32.08\r\nTOOYI,25TD,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is seen lying towels inside a box. The person begins smiling as they put the box on a shelf,blanket;box;shelf;towel,A person standing in front of their closet opens a box and places a two towels in the box. The person places the box in the closet and takes out a pair of gloves.,c039 12.20 19.10;c041 0.00 4.70;c042 16.70 25.00;c034 4.60 18.70;c081 17.20 25.00;c152 8.00 21.20;c040 0.00 24.90;c073 0.50 5.70;c071 1.60 7.40;c070 0.70 7.00,23.83\r\n1WAOU,JVLO,Living room,5,7,Yes,Person is walking around and drinking water. Another person is standing holding bag with sandwich.,cup/glass/bottle;doorway;food;glass juice pouch,A person is walking around drinking out of a glass while another person walks around dinking out of a juice pouch,c106 0.00 4.60;c097 17.00 23.50;c061 15.20 33.00,31.83\r\nTOE9V,HR43,Bedroom,6,6,Yes,\"A person closing a book and throwing it on the ground, who then puts a towel over top the book and dances around the book as if they are working a magic spell.\",book;clothes;floor;towel,A person throws a book and various clothes on the floor.;The person dropped a book and a towel on the ground near the bed. The person then began to shake and tremble.,c033 3.40 8.60;c034 3.90 9.30;c036 3.60 9.10;c026 0.00 5.00;c031 0.60 5.70;c003 4.20 9.60;c001 4.20 9.60;c126 1.10 5.70;c000 3.90 8.30,20.58\r\n2MGC1,T7C3,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person stands in the entryway with groceries. They begin to run in and out of the doorway. Afterwards they pour a drink.,bag;beverage;cup;door,\"A person holding a bag opens their door and walks out, but then comes back in and pours something into a cup.;The person was holding a bag and cup and left through the door. The person quickly came back through the door and poured a drink into the cub.\",c097 4.30 10.10;c020 0.00 36.00;c008 3.60 9.00;c006 4.90 11.20;c108 23.20 36.00;c141 8.40 13.30,35.21\r\nLLLXJ,0KZ7,Basement (A room below the ground floor),5,7,Yes,A person is holding a phone while another person is running with a bag.,bag;phone,A person is on the phone while another person walks back and forth with a bag.,c016 0.00 29.00;c020 0.00 3.70;c150 1.10 10.30;c015 0.00 29.00,27.67\r\nK7E8L,9PLL,Hallway,4,7,Yes,\"A person is tidying the hall with a broom. The person picks up a blanket and begins to fold it, then sneezes.\",blanket;broom;floor,\"A person sweeps their living room with a broom. They pick up a blanket from the floor and fold it neatly, and then sneeze.\",c102 0.00 11.50;c075 14.90 39.00;c153 33.20 38.70;c127 13.80 23.50;c098 0.00 13.20;c099 7.10 14.00;c073 14.70 20.80;c070 16.10 39.00,38.00\r\nW1QG3,4I61,Bedroom,6,6,Yes,A sneezing person is fixing a shelf in their bedroom and holding a box of tools.,box;cabinet;door;lock;shelf,The person is messing with their shoe cabinet.;A person carrying a box goes up to a cabinet. That person then does something to a shelf in the cabinet.,c040 5.60 37.50;c153 11.10 17.60;c081 21.00 35.10;c044 16.10 23.40;c007 27.00 36.70,38.92\r\nIKQLJ,Z68L,Bathroom,6,6,Yes,A person is sitting on the toilet with their laptop in their lap playing video games and drinking coffee.  While playing they hear running noises from the other room.,coffee;cup;doorway;game;laptop;video,A person sits on a toilet while browsing on a laptop and drinks a cup of coffee.,c107 0.00 8.00;c047 0.00 62.70;c051 10.60 55.80;c110 0.00 8.30;c049 4.30 14.30;c106 47.40 53.60;c154 54.30 61.80;c151 5.60 13.30;c109 47.70 55.50;c097 0.50 7.70;c052 8.70 57.10;c050 0.00 12.70,62.88\r\nI5L3Y,C7O9,Laundry room,6,6,Yes,A person is drinking coffee in a laundry room.  The door starts opening. Another person walks in holding a laptop.  The person puts the laptop down and then starts working with the first person folding laundry.,clothes;coffee;cup;door;laptop,A person is dolding a laptop and puts it down while another person is drinking coffee and tidying up the room.,c106 6.50 13.50;c047 5.70 13.50;c008 5.40 11.70;c004 13.10 34.00;c097 5.10 11.50;c051 4.90 34.00;c049 8.80 14.00,32.79\r\nE9EKR,ID9V,Bedroom,6,5,Yes,A person throws their shoes onto the bed before leaving the room.,bed;shoe,\"A person is sitting on a bed and taking off shoes, they then get up and look at the shoes then throw them on their bed and leave the room.\",c053 6.40 19.30;c058 15.20 19.70;c135 0.00 10.70;c154 6.40 11.50;c151 0.00 2.90;c056 6.30 13.40,29.54\r\n5ZXA3,6RE8,Home Office / Study (A room in a house used for work),6,6,Yes,A person is throwing homework on the table and closing the laptop.,homework;laptop;notebook;paper;pen;table,\"A person is standing next to a desk holding a pen, and writing something in a notebook. The person then places the notebook on the desk, and closes a laptop.\",c046 24.90 32.00;c051 23.50 29.40;c052 20.60 28.90;c009 15.10 20.80;c116 14.90 20.30;c115 0.00 20.30;c145 0.00 18.80,30.71\r\n099Y1,P6LJ,Kitchen,6,6,Yes,\"A person stands in the doorway, then gets a book for cooking from the pantry before walking out and closing the door.\",book;closet/cabinet;counter;door;table,\"The person walked through the kitchen, opened a door and took out an object which was then placed on a counter.\",c006 19.70 27.30;c026 16.50 23.10;c008 3.00 10.80;c030 10.40 23.90;c032 24.10 29.20;c009 24.50 30.60;c116 24.40 30.30;c141 2.20 10.40;c115 13.70 30.30;c113 2.20 16.00;c117 12.30 26.50;c112 20.20 32.00,31.00\r\nPV745,P6LJ,Kitchen,6,6,Yes,\"A person is sitting in the pantry, going through a box of groceries. The person begins dressing, puts on their shoes, and leaves.\",book;box;chair;clothes;door;food;groceries;shoe,\"There is a person sitting in a chair taking groceries out of a box.  That same person then stops and puts their shoes on.;A person sits down in a chair and puts a box on their lap, looking through it. They pull a book out of the box and other objects. Then they put the box on the ground and put on a pair of shoes.\",c026 12.60 26.50;c040 15.20 53.60;c054 32.10 69.70;c059 28.00 56.90;c154 40.50 49.20;c044 11.90 40.10;c130 11.50 39.00;c057 34.30 48.90;c041 2.40 18.50;c151 5.70 16.30;c042 29.90 41.90;c055 33.90 46.70;c059 5.70 50.30;c001 36.40 74.00;c062 22.20 35.00;c043 7.20 14.80;c063 11.20 23.60,73.21\r\nVURS5,P6LJ,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person is on top of a ladder, grasping for a can of food on the top shelf of the pantry.  Suddenly, the door closes, startling the person and throwing the person off the ladder.\",chair;closet;door;ladder;pantry;shelf,\"A person is standing on a chair and looks through a pantry;A person climbs onto a ladder to look on the top shelf of the closet.;The person is standing on a step ladder, while getting items out of a closet.\",,41.58\r\nF1FV0,FNK4,Basement (A room below the ground floor),7,6,Yes,\"A person is lying on the couch in the basement, watching television. The person is smiling at the show when they decide to send a text on their phone.\",blanket;couch;hands;phone;sofa,\"Person laying on couch with blanket and pillow, awakens, grabs phone, plays with it and throws hands up.;Someone is sleeping on a couch with a pillow and blanket the get woke up by their phone. It looks like they missed the call.\",c122 0.00 31.00;c152 0.00 3.40;c072 0.00 31.00;c146 0.00 3.40;c015 10.80 22.70;c016 15.00 29.90;c018 7.10 14.80,30.12\r\n6AQVX,C7O9,Pantry,6,7,Yes,A person is standing in front of a kitchen pantry drinking a cup of coffee and reading the back of a bag of coffee beans.,bag;coffee;cup;food;glass,A person is standing in a doorway reading a bag and drinking a cup of coffee.,c106 6.90 29.40;c107 0.00 32.00;c020 0.00 32.00;c061 0.00 32.00,30.79\r\nJ3UKN,YMXV,Bedroom,5,4,Yes,A person is eating some food in the garage. The person leaves through the doorway.,bag;bed;chair;doorway;food;scarf;table,\"A person is sitting in a chair next to a bed. The person is pulling pieces of something out of a small white cloth bag and eating it. The person sets the bag down, discards a scarf onto the bed and stands up. The person walks through a doorway toward another room.;a person taking something out of a bag and eating it.\",c097 23.00 34.00;c156 1.00 23.00;c063 0.00 7.10;c154 19.60 25.90;c021 0.00 5.10;c022 19.30 25.40;c059 0.00 25.30;c011 0.00 25.30;c020 0.00 24.60,32.92\r\n2P6ZP,ZAWX,Bedroom,3,7,Yes,\"One person puts a phone back on a table with a camera already on it, then starts eating a snack.\",camera;food;phone;sandwich;table,A person places their phone on the table before eating a cookie from the table.,c017 1.00 7.00;c009 1.30 6.60;c156 19.60 31.30;c152 22.10 28.90;c062 20.10 26.30;c061 22.10 28.90;c065 19.70 25.00;c154 0.00 32.00;c063 8.40 22.50;c015 0.00 6.70,31.46\r\n8JT6S,DXDI,Living room,6,7,Yes,\"A person walks to a sofa holding a pillow and a blanket, then smiles and lays down.\",blanket;couch;pillow;sofa,A person is holding a blanket and a pillow and proceeds to lay down with them on the couch.,c076 0.00 7.50;c077 3.20 7.50;c070 0.00 30.00;c071 5.40 11.20;c072 7.70 30.00;c122 6.30 11.70,29.50\r\nQWHFE,IK1O,Kitchen,5,6,Yes,The women was cooking dinner on the stove. The person pulled peppers from the refrigerator and continued working.,food;refrigerator;stove,Person is cooking at a stove and takes a pepper from the fridge.,c142 22.50 29.10;c143 15.70 21.20;c147 0.00 16.60;c062 22.00 30.00;c061 23.10 30.00;c063 22.30 27.10,29.42\r\n92II5,XXN8,Kitchen,6,7,Yes,A person plays with a phone while standing near the stove.,phone;stove,A person is standing in the kitchen in front of the stove while playing with their phone.,c016 0.00 33.00;c015 0.00 33.00,32.29\r\nVTYXW,T7C3,Kitchen,7,7,Yes,\"A person stands in front of the refrigerator.  They take out a pitcher and pour it into the sink.  Next, they go to the stove and stir something cooking in a pot.\",cup;door;food;glass;pitcher;pot;refrigerator;spoon;stove;water,A person is walking into a kitchen. The person opens the refrigerator and walks away. The person comes back and opens the refrigerator again and grabs a pitcher of water out of it and pours some into a glass. The person walks to the stove and stirs some food. The person walks away.;A person is opening the refrigerator door then pouring themselves a glass of water and cooking something on the stove.,c142 20.50 27.30;c108 26.50 38.40;c008 4.40 10.60;c143 4.40 10.60;c147 39.30 65.80;c110 22.60 41.90,71.21\r\n6QH7V,DXDI,Basement (A room below the ground floor),6,7,Yes,A person wrapped in a blanket and talking on a phone laughs as they take something from a medicine bottle and throw it on the floor.,blanket;floor;medicine;phone;table,A person is wrapped in a blanket on the telephone while talking the person opens a medicine bottle.,c126 19.80 26.60;c015 0.00 32.00;c019 1.80 7.20;c128 11.20 29.80;c009 11.20 18.00,30.67\r\n0JXN3,6RE8,Living room,5,7,Yes,A person is tidying their living room when they begin to sneeze. Their friend brings this person medicine from the shelf.,card;chair;clothes;rag;towel,A person throws clothes on a chair before sneezing.;A person flipping a rag around the room taking a card from someone and sneezing a lot.,c153 11.30 19.20;c003 3.70 9.90;c036 4.80 9.30,30.96\r\nOMHFD,XXN8,Home Office / Study (A room in a house used for work),5,7,No,A person is playing with their camera. The person takes out their phone and laughs at something on the screen.,camera;phone;something,A person is holding a camera and moving it around then puts it down and picks up a phone and starts laughing.,c015 0.00 32.00;c149 19.90 29.10;c018 17.60 22.50;c087 0.00 21.90;c152 15.30 29.20;c016 0.00 30.90;c017 14.90 22.70,30.75\r\n2R13Z,9Y7F,Home Office / Study (A room in a house used for work),5,6,Yes,One person is laughing holding a phone and another is putting homework and a laptop on a chair.,bed;chair;homework;laptop;paper;phone,A person sits while talking on a phone. Another person does work on a laptop and calculator.,c015 0.00 32.00;c019 0.00 32.00;c145 0.00 32.00;c052 3.40 11.70;c135 0.00 32.00,30.58\r\nBTN7H,Z68L,Living room,7,7,Yes,\"After closing the door, a smiling person begins to undress their clothes while grasping their phone to take selfies.\",clothes;door;phone;sweater;television;tv,\"Person closes their door after looking out of it. They then begin to take selfies with their phone after turning the tv off.;A person looks at something outside then closes the door.  After that the person takes her sweater off, turns off the TV, and takes a selfie.\",c015 21.70 40.00;c006 0.90 11.50;c155 8.10 25.50;c016 22.60 39.60;c152 31.00 36.30;c132 14.70 20.20;c018 22.10 27.80,38.75\r\nKS85E,UTMU,Garage,6,7,Yes,A person in the garage is smiling because they are eating some food that they found in a box.,box;food,\"A person is picking up a box, took some food out of it, and ate the food.\",c061 7.50 23.90;c063 4.60 13.00;c041 3.80 9.80;c156 12.50 24.60;c042 8.70 13.40;c044 5.40 11.40;c040 2.80 12.60;c043 1.90 13.10,26.83\r\nPEY34,HJJ4,Living room,7,7,Yes,\"A person begins laughing after drinking some water, then puts a box and a broom on a shelf.\",box;broom;cup/glass/bottle;shelf;water,A person is drinking a glass of water and putting a box on top of a shelf and holding a broom up.,c042 9.60 17.80;c081 11.00 17.90;c098 14.80 23.90;c106 0.00 5.20;c149 1.20 10.60,24.75\r\n5TF8P,C7O9,Pantry,6,6,Yes,One person was tidying up the coffee. The other was snuggling some food out.,closet/cabinet;food;groceries;pantry,\"a person does something in a pantry and another person comes to grab some cans;A person is looking in the pantry, as another person grabs groceries from the pantry.\",c061 2.00 29.00;c114 0.00 29.00;c063 3.30 29.00,28.38\r\n7RI1Y,4OHY,Living room,4,4,Yes,One person grasps a box and starts tidying the area around a table and wardrobe.,box;closet/cabinet,\"A person makes tidy chairs, a big box, and an umbrella all while holding a small box. The person then opens cabinet doors and makes them tidy also.\",c040 0.00 34.00;c114 22.10 29.40;c113 19.00 26.10;c112 22.90 31.20,33.00\r\nDIEEO,ZAWX,Pantry,4,7,Yes,A person in the pantry is drinking a glass of water. They begin laughing because their shoes are missing one of the pair.,cup;dish;food;glass;shoe,\"A person is drinking from a glass, then begins to laugh and dance has they have one shoe on.\",c107 0.00 7.80;c109 2.70 8.10;c106 0.00 7.80;c149 4.30 21.70;c118 0.00 7.80;c152 4.40 20.80;c061 0.00 8.60;c118 0.00 21.00;c152 6.00 10.60,30.58\r\nNJ0X1,5LWB,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,\"A person is in a entryway laughing while on their phone, they then grasp a chair and take a seat.\",chair;phone,A person is talking on a phone then sits in a chair.,c019 0.00 24.00;c059 17.50 24.00;c151 0.00 22.00,23.46\r\nYNIWQ,YMXV,Bedroom,6,6,Yes,\"One person grasps a book from a bag, laughs at it, then leaves the room.\",bag;bed;book;door;paper,\"A person is taking a book out of a bag. They put the book under their arm and go back to the bag. They zip it closed and then put it and the book down and turn and leave the room through a door.;A person digging through a bag, takes out a piece of paper, then closes up the bag and walks out of the room.\",c020 9.10 17.40;c024 13.10 22.60;c026 1.10 22.70;c028 18.20 23.00;c031 18.20 23.20;c008 21.00 30.30;c021 0.00 2.90;c025 4.10 11.00;c027 3.10 9.00;c030 0.00 5.70;c032 1.70 11.70;c006 27.60 32.00;c115 0.00 23.80;c116 15.40 24.10;c022 17.30 23.30;c117 17.50 23.30,31.08\r\nQUGLP,P6LJ,Entryway (A hall that is generally located at the entrance of a house),6,4,Yes,\"A person is standing in the doorway holding a bag of groceries. Laughing, the person walks to the window and looks out.\",bag;door;groceries;window,\"A person is picking a bag up off the floor. The person carries the bag to the door and opens the door. The person stands in the doorway, comes back in, and carries the bag into the dining room.;A person walks into their house with two bags of groceries. They then run towards the camera.\",c097 4.10 13.00;c020 1.80 31.60;c008 2.70 10.20;c023 0.50 5.30;c022 27.30 32.10;c141 3.10 7.90,32.71\r\n46Z16,L4ZP,Living room,5,7,Yes,\"The person is on a phone.  They are getting to ready to leave, and are finishing dressing. They button their shirt and put on their shoes.  As they walk to the door, they notice a broom has been left lying on the floor, so they grasp it by the handle and leave it leaning against the wall.\",broom;clothes;door;floor;phone;shoe;wall,A person is bending over getting dressed.  They button up their shirt slowly and then put their shoes on.  They grab a broom and move it across the room.,c015 2.10 49.00;c099 40.80 49.00;c055 0.00 7.60;c148 5.70 34.90;c057 32.80 42.60;c054 34.50 42.90;c057 2.40 21.60;c004 2.40 36.60;c054 0.00 5.90;c053 1.60 7.80;c019 0.40 49.00,48.33\r\nS1N2U,Z68L,Bedroom,5,7,Yes,A person lying in a bed awakens and grasps for a light on a nightstand. The person then sits up and puts on their shoes.,bed;light;shoe,A person is lying on the bed and then turns on a light and puts on their shoes.,c104 12.40 16.70;c134 0.00 18.20;c135 14.90 34.00;c055 22.80 33.30;c146 5.30 13.30;c133 5.90 20.00,33.04\r\nE6TED,KQI6,Living room,4,7,Yes,A person awakens and walks around before picking up a book. Another person drinks a glass of water.,book;cup;glass;table;water,A person is sitting in a chair then goes over and picks up a book another person is drinking a glass of water.,c026 9.40 18.00;c106 22.00 31.00;c154 2.60 7.50;c030 8.70 13.70;c107 15.50 24.80;c009 20.20 25.00;c109 20.10 25.00;c029 10.90 17.40;c110 15.20 23.30;c108 15.70 24.20,30.42\r\nIZZ3Y,DXDI,Laundry room,5,7,Yes,A person in the laundry room is eating medicine while opening a laptop.,bottle;cap;cup;glass;laptop;medicine;pills,\"A person takes some medicine with a drink of water. The person opens up a laptop computer, and takes another drink of water. The person then takes some more medicine with another drink of water.;person took some medicine from the bottle and take it with a glass of water, opened the laaptop and again had some medicine\",c048 10.40 18.10;c110 5.30 11.60;c128 0.80 8.10;c129 4.80 12.30;c106 8.00 14.60;c128 19.20 24.60;c051 14.10 34.00,33.12\r\nNILOB,KFGP,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person is sitting in a closet snuggling a book, and holding on to homework.\",book;doorway;homework;phone,A person is sitting in the closet holding books and talking on the phone.;A person is sitting in a doorway of a closet. The person's head is resting against a book propped up in the doorway and supported by a hand. The person is holding another  book and homework in the other hand.,c026 0.00 30.00,29.08\r\nMRNFI,KFGP,Laundry room,5,6,Yes,A person is opening the door. A person is watching a movie on their phone as the person waits for their laundry to finish.,door;phone,A person is standing looking at their phone then they open the door and they keep looking at their phone.,c006 1.60 10.20;c015 6.70 37.00;c016 8.70 37.00;c141 0.00 5.60,36.21\r\nFH9AB,Z68L,Home Office / Study (A room in a house used for work),7,7,Yes,A person is tidying up a table and then grabs the doorknob and closes the door.,door;table,\"Person is tiding the table, grasps the doorknob and  closes the door.\",c006 29.40 36.00;c141 29.00 33.40;c012 0.10 27.50,34.79\r\nNBIR0,S053,Hallway,6,6,Yes,\"One person undresses, then closes a cabinet which has a broom leaning on it.\",broom;closet/cabinet;clothes;door;floor;shirt;vacuum;wardrobe,\"The person is standing and they take off their glasses first and then their shirt. After which they close the door and pick up a broom and move a vacuum.;Person taking a rainbow shirt off, putting it in the closet, shutting the door, and then blocking the door with a vacuum.\",c006 15.90 23.00;c099 20.30 28.80;c155 1.50 14.40;c002 12.40 18.60;c138 31.10 33.00;c127 19.50 29.50;c003 11.10 19.70;c138 27.00 33.00;c112 17.50 23.20;c127 19.50 24.30;c003 5.80 10.60,32.29\r\n6NWDR,S053,Bedroom,6,6,Yes,\"A person walks in, sneezing. The person takes a bottle of medicine from the desk, pours some out, and swallows it.\",closet/cabinet;medicine;shelf;table,A person is sneezing. The person takes some medication out from a shelf and swallows it.;The person in the video sneezes then goes to the table and looks to take medication that was lying on the table,c128 14.30 33.00;c129 25.10 32.70;c153 1.20 14.90;c113 11.90 17.40,32.50\r\nT2J3M,S053,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is opening the door with the doorknob and putting clothes in the wardrobe.,closet;clothes;desk;door;glass;medicine;wardrobe,A person grabs a doorknob and opens a door and puts clothes in a wardrobe;a person came from left side opened the door went out and seen for some time and came inside,c006 24.80 32.00;c113 7.10 15.50;c001 13.10 25.40;c112 25.40 30.90;c008 9.20 15.80;c114 22.40 27.20;c097 12.00 19.20;c141 7.90 15.20;c141 15.20 27.70;c000 5.90 20.40,31.62\r\n215QU,YMXV,Bedroom,4,4,Yes,One person sits at a small table laughing and holding a laptop.,chair;laptop;table,A person is sitting at a desk typing on a laptop.,c051 0.00 33.00;c052 0.00 33.00;c011 0.00 33.00;c059 0.00 33.00;c014 0.00 33.00,31.50\r\nY4IIO,H8N1,Pantry,7,7,Yes,A person takes a drink of juice as they are tidying up their pantry. A few drops spill onto a cookbook on the edge of a shelf. They pick up a towel and wash it off.,cabinet;cupboard;rag;sack;shelf;table;towel,A person walks into the kitchen and picks up a rag and cleans the counter. They put the rag back into a cabinet and they walk out of the room.;A young person taking stuff out of a cupboard and putting it in a sack and putting it back in a cupboard.,c112 24.80 30.90;c113 0.00 5.20;c013 12.60 20.70;c082 13.30 20.30;c038 13.30 20.30;c114 20.40 30.20,33.88\r\nC83CD,PKND,Dining room,6,6,Yes,A person is sneezing as they put groceries on the table while another person is fixing a broken chair leg.,bag;chair;groceries;table,\"two people are in what appears to be a living room. One person is looking through a grocery bag, while the other person is picking up and putting down chairs.;A person is holding a chair while another person is holding a grocery bag.  One person picks up a chair.\",c020 0.00 5.50;c021 0.00 33.00,31.58\r\nC3CGB,ZAWX,Stairs,5,1,No,The person is sitting on the pillow and eating medicine on the stairs.,medicine;pillow,A person is sitting on the stairs and holding a pillow. They reach for a bottle of medicine and open it up. The person pours a cap full and drinks it.,c076 3.70 10.70;c128 12.60 18.30;c129 19.90 27.40,30.96\r\n0PGAD,WQ8Z,Laundry room,2,7,Yes,A person undresses then leaves by moving the vacuum out of the way and turning the doorknob.,clothes;door;undressing;vacuum,\"A person is walking towards a door, they stop and take off their jacket and before exiting the room they move the vacuum that is blocking the door and set it aside.\",c141 10.90 18.50;c155 1.50 11.80;c097 12.80 20.00;c008 11.60 17.50;c000 1.60 20.00,19.38\r\nSZWKQ,AH2J,Dining room,6,1,No,A person is sneezing and putting a camera in a bag. They laugh and leave the room.,bag;camera;phone,A person uses a camera then puts in a bag and sneezes then leaves the room.,c015 0.50 7.30;c153 7.00 16.20,16.62\r\nQUE13,WG9D,Laundry room,3,7,Yes,A person puts down a book and takes out a bottle of medicine.,cabinet;cup;doorway;phone,A person walks in the laundry room and opens and shuts a cabinet.;A person enters the room and puts their phone down. They open the cabinet.,c107 3.60 8.00;c113 1.20 6.60;c017 0.60 6.20;c097 0.00 4.50;c112 3.40 8.00,6.50\r\n8Q0EY,F56T,Kitchen,7,7,Yes,\"A person fixing dinner on the stove, holds a towel while removing it from the heat.\",food;spoon;stove;towel,A person is standing in a kitchen using a stove. The person puts a spoon in the pot and stirs it. The person then grabs a towel and removes the pot from the stove and moves it to the sink.,c147 0.00 30.00;c033 22.50 33.00,31.58\r\nRJF6F,BYF9,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is smiling and playing with a broom and then grasping a bottle of medicine in an entryway.,box;broom;medicine,The person is swinging around a broom like a weapon and dancing side to side with it. Then the person stops to pick up some kind of bottle.,c098 0.00 22.00;c044 14.20 22.00,21.04\r\nTS2TD,38MV,Living room,5,4,Yes,The person has lots of homework. Person brought a running coffee maker in the bedroom and open the first book to start.,book;chair;coffee;cup;homework;table,Picking up a cup of coffee and putting cream and sugar in it. Then they go and read a book.,c108 12.40 17.90;c032 28.90 35.00;c026 26.70 35.00;c028 26.20 35.00;c009 2.60 7.60;c110 6.40 12.10;c027 29.40 35.00;c059 27.40 33.40;c030 26.50 32.20;c151 26.50 32.10;c154 1.40 6.20;c152 0.20 5.40,33.75\r\nM52K2,3H6W,Laundry room,7,7,Yes,A person sitting on the floor in their laundry begins pouring a beverage from its original container into a glass.  They put the glass on a desk and pick up a bag with a blanket in it.  They play with the bag by swinging it around their head like a helicopter blade.,bag;clothes;cup;desk;floor;food;head;table,\"Person sits down on floor in laundry room and pours milk into cup, then walks to desk, then goes back by washing mashine puts clothes in bag and plays with it.\",c023 39.10 45.60;c009 28.10 36.10;c001 39.40 45.60;c108 7.30 16.60;c020 39.70 47.60;c000 39.70 46.70;c154 18.00 24.50;c126 48.70 57.00;c125 1.70 23.40;c151 0.80 7.10;c061 2.50 18.60;c062 17.70 22.80,56.21\r\nXLR4B,6RE8,Kitchen,5,6,Yes,\"A person is pouring water into a pot on the stove. Then, eating a sandwich, the person walks over to sit in front of the television.\",chair;computer;food;glass;laptop;sandwich;stove;table;television;water,\"A person is pouring some water into a pot on a stove and eating a sandwich, they then walk into a room and sit in a chair while watching a computer.;A person is cooking in the kitchen while eating a sandwich. They pour water into a pot, walk into a bedroom, and sit at a desk and watch TV.\",c065 5.30 31.00;c132 21.40 31.00;c059 21.40 31.00;c147 2.30 13.80;c067 0.10 31.00;c156 1.20 29.90;c151 18.20 26.10;c011 21.80 30.90;c061 0.40 8.50;c051 22.30 31.00,30.33\r\nSPDLO,T7C3,Pantry,7,7,Yes,A person opens the pantry and begins putting their food in the pantry. The person finishes and puts their dishes in the cabinet.,bag;cabinet;dish;food;gorceries;groceries;shelf,\"A person is taking food off of shelves and putting it into a bag, they then pick some dishes and put the on shelves as well.;A person is putting groceries away on a shelf, they then begin tidying up dishes.\",c119 24.40 42.00;c114 7.30 26.70;c062 0.00 24.70;c081 0.00 25.70;c120 22.90 42.00;c130 0.00 26.30;c063 0.00 23.60;c020 0.00 27.30;c082 26.40 42.00;c022 21.50 27.70,41.12\r\nSBOI8,0KZ7,Basement (A room below the ground floor),4,7,Yes,A person in a basement is eating from a dish before lying a book next to a mirror.,book;bowl;dishes;food;homework;magazine;mirror;paper;table,Person sitting at the table eating food out of a dish pick up a book and starting looking at it.;A person is eating at a table then putting a magazine by a mirror.,c156 0.00 14.80;c116 11.40 25.00;c011 0.00 25.00;c028 12.00 19.50,24.08\r\nO5N93,3531,Pantry,6,6,Yes,A smiling person is in their pantry eating a sandwich. The person grabs a box of cereal and leaves the pantry.,bag;container;dish;food;groceries;grocery;sandwich,\"Person  standing eating a sandwich, then proceed to walk over to a shelf and pick up a product.;A person is standing and eating a sandwich. he puts the sandwich down, grabs a container, and walks away.\",c065 0.00 27.30;c152 0.00 2.80;c156 0.00 27.30;c020 28.00 34.60;c068 23.60 29.00;c067 0.00 28.30;c119 24.80 29.00;c063 24.80 31.40;c062 23.10 28.10;c061 0.00 28.80;c118 0.00 28.70,33.71\r\nXMF8Y,UTMU,Living room,6,7,Yes,A person is eating food on the couch while taking pictures with a camera.,bed;camera;chair;couch;food;phone;picture;sofa,A person holding food walks into a room and sits down on a couch. They pick up a phone and take a picture of themselves while eating the food.,c061 0.00 29.00;c015 11.90 29.00;c156 0.00 29.00;c123 3.00 29.00;c151 1.20 9.10;c087 8.40 28.20;c134 0.00 5.30;c016 4.20 29.00;c122 1.20 29.00;c059 1.20 29.00;c018 4.80 9.50,27.71\r\nLFBCQ,HJJ4,Basement (A room below the ground floor),6,7,Yes,A person in a basement is opening a cabinet before closing a doorway.,cabinet;door,A person opens a cabinet door and looks in side.The person turns and closes the door.The person turns back to the cabinet.;A person wearing a hoodie opens a cabinet and looks inside. The person then closes a door to the outside that is open.,c113 0.60 6.50;c006 6.50 12.70;c008 0.60 6.50,13.25\r\nPXBN0,SIZN,Hallway,3,7,Yes,A person is pouring some medicine into their hand while standing in the hallway. Next they take a bite of some food.,food;phone;snack,A person is standing in a hallway holding a phone. They get a snack out of one pocket and then put their phone in the other pocket. They start to eat the snack.;A person is eating and checking their phone.,c061 3.80 28.20;c156 24.60 30.00,28.83\r\nEXG45,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"The person works on homework for awhile, then puts away the book used for references.\",book;chair;desk;homework;laptop;paper;pen;phone;table,\"A person is sitting at a desk, looking at a laptop and doing homework.  The person closes a book and puts the book away.;This person appears to be in the home office area. This person is at desk, writing something on paper and on their laptop.\",c025 23.20 28.80;c028 24.40 29.80;c145 0.00 26.60;c014 0.00 31.00;c052 0.00 26.90;c031 24.70 31.00;c030 22.40 27.60;c026 22.00 29.50,30.46\r\nUOI76,2RTW,Bedroom,6,6,Yes,The person is working in the home office.  Person is fixing a laptop at the desk.  Person grabs a water from the mini refrigerator in the office.  The person turns on a table light to see better.  The person sneezes.,bottle;desk;instrument;laptop;light;table,\"A person sits at a desk working on his laptop with an instrument.  He picks up a bottle, turns on a lamp, and puts the instrument down.;A person fix their laptop at their desk and turns on a light.\",c009 11.00 18.40;c110 8.80 15.60;c052 0.00 36.00;c011 0.00 36.00;c014 0.00 36.00;c109 7.50 18.70,35.21\r\nGN912,5LWB,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is eating a sandwich. The pick up some dishes and laugh.,dish;food;sandwich,A person is standing in a doorway holding a phone. The person then grabs a plate off food off of a table.,c118 14.80 21.00;c120 16.60 21.00;c149 17.20 21.00;c156 18.40 21.00;c065 18.40 21.00;c068 18.40 21.00;c061 18.40 21.00;c067 18.40 21.00,20.25\r\nNSM0B,BYF9,Stairs,6,6,Yes,\"A person runs up the stairs and takes a pair of shoes from below the window. Something outside catches the eye of the person, which causes them to smile.\",shoe;window,A person is walking up the stairs then looks out a window. They are also holding a pair of shoes.,c053 10.40 23.00;c092 8.80 23.00,21.58\r\n9GQRI,T7C3,Kitchen,7,6,Yes,A person cooking on the stove begins sneezing.  Then they begin tidying up the refrigerator.,bag;food;pot;refrigerator;spatula;stove,The person cooked a meal in a small pan with stirring.  The person sneezed over the cooking vessel and then went to the refrigerator and opened it.,c143 22.10 43.00;c147 0.00 24.10;c153 10.30 18.60;c023 24.80 29.50;c022 26.70 43.00,42.42\r\nANAR5,QB52,Recreation room / Man cave,6,7,Yes,A person is sitting in a chair while drinking and eating food from a bag.,bag;chair;cup;food,A person is sitting in a chair drinking coffee and eating food from a bag.,c106 0.00 7.90;c021 3.70 9.50;c059 0.00 31.00;c063 4.00 11.60;c156 3.10 11.60;c110 0.00 2.90;c109 1.20 6.40;c061 3.30 10.70;c107 0.00 7.10;c020 0.00 31.00,30.08\r\n0H04V,5LWB,Kitchen,6,6,Yes,\"A person walks through the doorway with their groceries, laughing at another person pouring something down the sink.\",bag;dish;doorway;sink,a person walks into his home holding a bag and another person fixes something under a sink;A person is goin up the stairs with a bag and goes into a kitchen where another person is doing something with a bowl and turns off the sink,c149 18.50 26.80;c020 0.00 5.50;c119 28.50 33.60;c119 13.90 21.00;c022 22.80 28.00,33.08\r\nTZSIE,IK1O,Bedroom,7,7,Yes,A person is opening a desk  then standing in a doorway looking around,chair;closet/cabinet;dek;desk;doorway;phone;table,\"a person sits at a desk and looks through the drawers then walks to the doorway and debates;A person closes their desk, opens it again and closes it. Then they get up and talk on the phone.\",c097 18.10 29.70;c154 12.80 19.60;c059 0.00 19.00;c113 0.00 3.10;c011 0.00 19.30;c112 0.00 6.80,31.04\r\nN67PL,LTAC,Dining room,7,7,Yes,A person is eating some food in their dining room. The are laughing while eating because they seem to have forgotten about closing their refrigerator door. They pick up a broom with their left hand.,broom;chair;food;plate;something;table,\"The person is sitting at a table talking and eating food. The person stands up and picks up a broom.;A person is eating at a table, then starts laughing, gets up and picks up something.\",c098 25.50 32.00;c156 0.00 24.50;c149 15.40 21.60;c154 22.50 27.70;c011 0.00 26.50;c152 6.00 22.20;c061 0.80 9.00;c062 4.40 9.20;c059 0.00 26.50;c100 24.10 31.70,30.54\r\nJCLES,KQI6,Living room,1,3,Yes,a person opening the cabinet gives a smile while putting a picture inside of it.,book;cabinet;couch;magazine;picture;table;wall,\"A person takes a off the wall, puts in a cabinet and then takes a book out of the cabinet.;A person is leaning against the wall holding a magazine. They sit down on a couch and put the magazine on a coffee table. They put the magazine in a drawer under the coffee table, and then they get out a book and put it on the coffee table.\",c112 15.00 20.90;c113 11.50 16.30;c084 0.00 8.00;c151 2.30 7.80;c030 23.60 29.50;c011 28.70 32.00;c117 28.70 32.00;c028 28.70 32.00,30.54\r\nTIS3Z,HR43,Kitchen,6,7,Yes,A person is grasping a coffee cup and eating a sandwich while looking around in the refrigerator.,cup;dish;door;food;refrigerator;sandwich,A person is holding a dish with a sandwich on it and a cup. The person walks over the refrigerator and looks in it while moving items around. The person puts their cup in it and closes the door.,c065 1.30 34.00;c142 27.60 34.00;c107 0.00 30.10;c156 2.10 34.00;c006 28.50 34.00;c067 1.50 12.90;c143 0.00 5.60;c118 0.00 34.00;c109 13.00 31.10,32.96\r\nJCNHL,BYF9,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person in the entryway is smiling because they see some dishes on the ground. Their smiling turns into laughing, and then they start undressing by taking their jacket off. They put their jacket inside of a box.\",box;clothes;dishes,A person is standing and then proceeds to take of their vest and place it in a box.,c041 19.10 27.60;c003 12.00 21.40;c152 0.40 8.80;c155 8.40 19.10;c004 20.50 28.00;c000 12.40 18.80;c001 20.20 26.80,27.04\r\nH4IT6,HJJ4,Bathroom,5,5,Yes,\"A person is leaving the bathroom, watching a video on their phone.  They laugh as they walk through the bathroom doorway.\",door;phone,someone holding a phone and laughing;A person walks through a doorway holding a phone and smiling.,c015 0.00 4.40;c097 0.40 8.90;c149 1.70 7.90;c019 0.00 8.90;c152 1.70 8.40;c016 0.00 8.90,8.71\r\nORJTD,M80J,Bedroom,6,7,Yes,\"A person sits on their bed, folding clothes. Once the clothes are folded, the person throws them into a basket.\",bed;clothes,A person is folding some clothes on a bed.  The person the puts the clothes away in a basket.,c135 0.00 32.00;c004 0.00 32.00;c001 10.40 26.10;c000 0.00 25.90;c003 24.60 32.00,31.04\r\n81NAT,UTMU,Dining room,4,7,Yes,\"A person is in a dining room undressing and removing their shoes, they then stand and grab a near by pillow before exiting the room.\",clothes;pillow;shoe,A person is undressing and puts their coat on a chair before picking up a pillow and walking out of the room.,c076 15.70 24.10;c155 2.80 13.60;c001 7.50 13.60;c056 12.30 18.20,25.21\r\n0H5VC,D0RU,Living room,6,6,Yes,A person is sitting on the sofa. The person pushes their homework aside and begins snuggling into their blanket.,bench;blanket;book;glasses;paper;pen;sofa;table,The person is studying a book then laying down on the bench and covering up with a blanket.;Someone is sitting on the sofa reading a book. They close the book and take off their glasses and set them aside. Then they lay down on the couch and cover themselves with a blanket.,c116 17.70 23.10;c122 22.80 33.00;c070 23.10 28.40;c025 14.70 19.80;c032 0.00 18.70;c145 0.00 20.60;c123 0.00 26.20;c072 21.40 33.00;c026 0.00 20.60;c028 15.90 20.70;c115 0.00 19.30;c073 20.70 27.00;c027 0.00 21.10;c009 15.90 20.40;c030 16.90 22.00;c071 22.20 27.50,32.00\r\n2H56B,40JH,Living room,6,7,Yes,A person is walking down the hallway holding a bag full of clothes.  The person puts the bag down and sits on the floor and begins to laugh.,bag;clothes;doorway;floor,A person walks a bag into a room and sits on the floor while laughing.,c125 2.50 33.00;c020 0.00 6.40;c000 0.00 6.40;c149 2.40 33.00;c151 1.40 10.40;c022 0.90 6.00;c097 0.00 3.10,32.33\r\nCN43X,JVLO,Living room,5,6,Yes,\"A person sits on a pillow, eating a bag of chips.\",bag;floor;food;pillow,person takes pillow from couch sits on floor eating chips smiles;A person takes a pillow and puts it in the floor.  That person sits down against the pillow and eats food that is in a bag.,c079 1.00 10.40;c023 9.60 17.70;c151 10.80 16.50;c156 13.70 33.40;c125 13.80 35.00;c152 4.70 9.40,33.67\r\nFE6RN,HJZQ,Stairs,3,2,Yes,\"The person sat by the window, holding a cup of coffee, while taking in the view of their backyard.\",chair;cup;food;glass;stairs,A person is walking up the stairs then sits down and begins drinking a beverage.;A person climbs a few stairs to sit in a chair halfway up the stairway.  They sit down and take several drinks from a glass they have in their hand.,c106 4.60 15.10;c107 4.70 11.70;c106 9.70 15.40;c107 11.40 16.60;c151 2.20 7.10;c059 2.30 8.00;c156 10.40 31.00,29.79\r\n3G4PN,HR43,Bedroom,6,7,Yes,A smiling person walks into their bedroom and starts playing a game on their phone while sitting on their bed. They grab a bag and leave.,bag;bed;phone,A person types on their phone while sitting on a bed.  They eventually get up off the bed while taking a bag with them.,c015 0.00 34.00;c016 0.00 33.80;c135 0.00 32.40;c154 26.40 34.20;c023 27.20 35.80;c017 26.80 31.50;c020 28.20 32.70;c152 23.10 29.20,35.29\r\nFHXKQ,70CN,Dining room,6,1,No,\"A person walks into the bathroom and begins washing their hands after  lying their phone down, on the edge of the sink.\",bag;banana;box;food;groceries;paper/notebook;table,\"A person places a bag on the kitchen table and talks to a banana.;A person is putting some groceries on a table, they then take out a banana and begin to dance around with it and pretend it's a phone.\",c020 0.00 4.90;c009 0.00 8.60;c130 0.00 8.30;c115 0.00 2.90;c116 0.00 3.80;c042 2.70 7.60;c063 3.60 31.00;c040 2.10 8.10;c021 0.00 5.10;c022 0.00 5.80;c061 2.40 24.90,30.08\r\nDR4R7,WQ8Z,Bedroom,6,6,Yes,\"A person walks into the room, grasping their laptop.  They put their laptop on the bed, look out the window, smile, and leave the room.\",bed;laptop;window,\"A person sets a laptop on a bed, looks out a window, then leaves the room.\",c092 6.00 17.60;c049 2.80 9.00;c152 10.90 17.10,19.25\r\nJXS3A,CO1W,Living room,4,6,Yes,A person throws some food on a table then starts playing with a camera.,camera;chair;phone;table,A person walks in and sits down. Then they look at their camera.,c015 4.10 31.00;c151 1.60 7.20;c018 3.00 8.10;c009 0.00 5.00;c016 5.10 31.00;c087 19.10 30.10;c059 1.90 31.00,30.25\r\nVA8NL,HR43,Home Office / Study (A room in a house used for work),6,6,Yes,A person is washing off the cabinet and the phone.  The person is leaving the office with the vacuum.,bag;cabinet;chair;phone;tissue;towel;vacuum,\"A person is cleaning their phone and a cabinet with a tissue. The person then picks up a bag and walks away;A person cleans a cabinet draw and their phone.  They then get up from the chair they were sitting in, taking a vacuum cleaner with them.\",c138 18.30 25.70;c015 3.20 20.00;c114 0.00 17.70;c154 20.10 25.70;c059 0.00 22.80;c038 0.00 21.84;c033 0.00 20.82,26.62\r\n9REZ6,PO5L,Laundry room,6,6,Yes,A person is putting medicine in a pantry then starts washing their shoes.,jar;medicine;shelf;shoe,\"a person grabs a jar then cleans his shoes;A person walks into the laundry room with some medicine. The person sets the medicine on a shelf, then picks up a shoe and sprays it. The person then walks away with the shoe.\",c053 10.90 28.30;c056 9.80 16.40;c128 1.30 11.80;c081 6.30 13.50,28.67\r\nQXT9W,P6LJ,Living room,6,6,Yes,A person is sitting in a chair in the living room holding a book and puts  it down to close the window.,book;cutain;hair;table;window,A person seats down in a chair with a book and opens it .The person lays the book on a stand and goes to a window and looks out .;A person sits down on a chair and reads a book. They then get up and look out the window.,c092 43.10 62.70;c025 33.90 39.90;c027 16.60 24.20;c151 12.00 18.30;c059 12.70 40.90;c026 5.80 42.20;c028 37.20 42.20;c154 37.50 42.80;c032 17.90 38.90;c030 3.20 9.50;c009 36.20 43.10;c011 10.70 43.10;c144 46.30 53.90,65.25\r\n7UQFM,P6LJ,Living room,6,6,Yes,\"A person walks into a living room and puts their phone in their pocket, afterwards they start drinking from a glass.\",bed;coffee;cup;floor;glass;groceries;phone;table,\"A person walks into the room with their phone.  That same person puts their phone in their pocket and picks up a cup of coffee and drinks it.;A person is playing with their phone. They put the phone in their pocket, pick up a mug of coffee, and take a drink.\",c106 18.80 30.60;c015 4.10 15.70;c016 6.00 11.00;c017 9.50 18.90;c107 14.80 32.50;c110 14.30 21.10;c009 27.60 32.70;c109 28.20 32.50,33.83\r\nT5E2T,P6LJ,Living room,6,6,Yes,A person is pouring coffee into their mouth and eating a muffin. A person is awakening from a bed and taking some groceries off of the floor.,coffee;cup;dish;floor;food;sofa;table,\"A person is laying on a couch, they then get up and vegin to pick up dishes from the floor and placing them on a table before taking a sip of coffee.\",c106 30.10 46.80;c127 20.60 33.60;c146 12.40 21.50;c009 20.90 29.50;c106 30.10 38.20;c110 26.70 36.30;c061 36.40 47.20;c156 37.60 44.60;c119 35.20 47.20;c063 18.70 31.70;c118 35.20 46.30;c154 0.00 21.50;c012 21.10 47.20;c120 21.10 47.20;c151 16.70 22.70;c122 6.30 20.50,48.58\r\nN50C6,PO5L,Kitchen,5,7,Yes,A person is holding a glass while running in place by the sink.,cup;glass,\"Person picks up an empty glass, then proceeds to run or jog in place.\",c107 4.20 9.60;c110 2.30 7.60;c150 5.70 17.60,20.67\r\n9HOV3,0KZ7,Dining room,5,6,Yes,A person sitting at a table with a sandwich in front of them grabs a bottle out of a bag of groceries sitting next to them and pours something into a glass.,bag;chair;cup;glass;groceries;table,There is a person sitting at a table. That same person takes a water bottle out of a bag and pours it into a glass.,c108 8.00 16.90;c011 0.00 23.00;c021 1.70 7.30;c109 18.00 22.90;c009 18.00 22.90;c110 1.00 7.80;c059 0.00 23.00,22.29\r\nLQK90,ZAWX,Living room,5,7,Yes,A person stands up from his desk where the person was working on a laptop.  The person has a coffee pot and begans pouring some coffee.,cup;desk;glass;laptop;table,a person is using a laptop and gets up and pours a drink into a cup.;a person sitting at a laptop and stands up and pours something to drink,c051 0.00 19.10;c107 20.60 31.00;c154 15.10 21.80;c052 0.00 19.30;c108 22.90 31.00;c011 0.00 20.20,30.50\r\nYDWN5,DXDI,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person tidying a wardrobe in an entryway is smiling and reaches for a doorknob.,cabinet;clothes;door;wardrobe,\"Person is looking through the cabinet, then close the cabinet door and walk away.;a person is looking into a closet with clothes hanging init.\",c141 0.00 13.00;c152 6.20 12.60;c006 6.10 13.70;c004 0.00 5.80;c112 6.40 13.40;c113 6.10 15.00;c114 0.00 9.40,13.62\r\nW0Y4E,Z68L,Bedroom,6,6,Yes,A person is throwing a blanket on the bed and then jumps on it to eat a sandwich and smiles really big.,bed;blanket;book;bowl;food;spoon;tablet,The person walks in and throws a comforter on the bed then proceeds to lay on it while eating food and scrolling on tablet.,c134 6.50 13.90;c072 6.50 12.70;c074 3.40 8.30;c156 8.70 19.40;c071 2.60 8.50;c073 0.00 6.10;c117 20.30 25.10;c115 21.40 28.40;c116 24.40 29.70;c061 10.20 24.90;c154 26.30 31.90;c029 22.20 28.20;c070 1.40 7.70,32.46\r\nLOP4H,P6LJ,Living room,6,6,Yes,A person is lying on the sofa. A person is dressing and hanging their clothes on the door.,clothes;door;pillow;sofa,\"A person lays down on the couch. They throw a pillow onto the floor. Then they stand up and put on a sweater, then takes it off and hangs it on the door.\",c122 3.40 18.60;c155 32.00 46.30;c151 3.10 8.70;c148 21.80 34.50;c154 14.40 19.70;c080 6.70 13.80;c123 3.10 17.90;c001 15.70 40.70,51.17\r\nM0P0H,WG9D,Bedroom,6,6,Yes,A person is seen drinking while looking at their laptop. They open their laptop and connect their camera to it.,box;camera;glass,\"Person standing, drinking from glass, looks at camera, looks down, picks up box, smiles at it.;a person drinks something and grabs a box\",c040 3.30 11.00;c107 0.00 11.00;c106 0.00 6.10,9.79\r\nQ9DW7,Z68L,Living room,5,5,Yes,\"Person A fell asleep on the couch in the living room while watching TV. Upon awakening, s/he is thirsty and reaches for a glass of water that is sitting on a nearby shelf. S/he is drinking the last sip of water.\",cup;glass;shelf;sofa;television;tv;water,\"A person lays down on a sofa and watches tv.The person puts glass on the shelf ,the person picks up the glass and takes a drink.The person gets up and walks out of the room.;The person went and lied down on the sofa to watch TV. The person then sat up and took a glass of water and drank. The person got up and left.\",c122 5.00 25.50;c106 26.30 32.30;c110 23.90 29.40;c154 36.10 41.60;c132 7.10 24.00;c109 29.30 36.40;c081 30.20 37.00,43.50\r\nFNPOB,UTMU,Kitchen,5,5,Yes,A person is taking off their shoes and then sits down to work on their laptop.,chair;laptop;shoe,\"A person walks into the kitchen and removes their shoes. They grab a laptop and sit on a chair.;The person walks in the kitchen and sits in a chair, and pulls out a laptop, then gets back up.\",c057 1.70 10.90;c048 11.20 19.10;c151 8.90 14.90;c059 9.90 31.00;c056 1.40 9.40,29.71\r\nD5IDA,9PLL,Kitchen,3,5,Yes,A person is sitting down in the kitchen while looking for some food. They find a sandwich and place it on some dishes while pouring themselves a glass of water.,bin;counter;cup;dish;floor;food;glass;pans;pitcher;sandwich;shelf;stove,\"A person bends down and opens up two bins and looks inside them, then slides them under a table. Then the person goes to the counter and stacks a pot on top of another pot, and takes the lid off of a sandwich. They set the sandwich on a different counter and then pour themselves a cup of water from a pitcher into a cup.;A person is crouched on the floor looking through pots.  The person stands and looks through pots on the counter top.  The person finds a sandwich and puts it into a pan on the stove.  The person pours something on the sandwich.\",c108 5.90 16.00;c068 24.50 33.40;c069 15.20 22.80;c118 28.80 38.10;c062 22.60 29.20;c082 0.00 39.00;c109 0.00 39.00;c110 0.00 39.00;c107 0.10 14.30;c067 21.60 29.00;c063 22.20 39.00;c154 10.30 16.20;c061 22.00 31.10;c120 0.10 8.00;c120 4.60 12.20;c120 15.60 21.10,37.75\r\nEBBKQ,5LWB,Living room,4,6,Yes,First person is standing on floor and sneezing into blanket while other person is standing by window with groceries.,television;tv,\"A person is watching a television.  Then she turns around and sneezes twice.;A person is looking at a television, then turns away from the TV, sneezes twice and turns partially back around.\",c153 7.70 15.00;c132 0.00 6.80,20.54\r\nIO3CI,KQI6,Living room,4,6,Yes,A person is smiling and eating with another person. Light is shining through the window.,bowl;chair;couch;food;pickles;sofa,\"Two people are sitting down on the sofa eating from a bowl of pickles and smiling at each other as they eat.;A person sits on a chair eating food, while another person sits on a couch also eating food.\",c152 5.70 11.00;c156 11.80 18.00;c123 0.00 4.90;c059 0.00 4.90;c063 0.00 30.70;c063 0.00 3.60,32.00\r\nKNX2Y,HJJ4,Kitchen,7,7,Yes,\"A person in the kitchen, playing with a camera, they begin laughing holding food.\",camera;chair;cup;food;glass;phone;picture;table,The person sat at a table taking pictures with a camera. The person set the camera down and picked up a glass of something from the table. They laughed while holding the glass.;A person holds a camera and takes pictures then picks up food and laughs before putting it on a table.,c015 0.00 3.40;c062 12.80 21.00;c009 11.30 16.80;c061 13.00 21.00;c149 13.00 21.00;c011 0.00 21.00;c087 0.00 15.10;c107 13.00 21.00;c017 12.00 16.80;c059 0.00 21.00;c016 0.00 16.00,20.00\r\nWPY0R,D0RU,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is holding a blanket while fearfully watching television.,blanket;sofa;television;tv,the person is huddled in a blanket;A person is snuggling a blanket on a sofa and watching television.,c072 8.90 33.00;c123 8.90 33.00;c132 8.90 33.00,32.08\r\nM6HL9,8718,Living room,3,5,Yes,\"The person opens a book. The person is writing on a piece of paper doing homework while watching T.V. Person fixes mistake on paper, turns off T.V.\",book;homework;paper,A person sits on a sofa with some books working on their homework.,c145 0.00 32.00;c032 0.00 32.00;c115 0.00 32.00,30.92\r\nPC3WT,BYF9,Stairs,4,7,Yes,\"A person is awakening after lying on a step, then standing, opening a window and lastly turning a doorknob by the stairs.\",doorknob;floor;window,A person is sitting on the stairs and then opens a window and plays with a doorknob.,c090 11.80 25.80;c141 31.40 37.00;c154 12.80 23.30;c146 1.80 7.90;c092 12.80 26.30;c125 0.70 11.60,35.67\r\nMJZJM,PKND,Other,6,6,Yes,A person turns on the light and begins undressing. Another person is sitting with a book in their hand.,book;light;wall,A person reaches out then walks around the room smiling while another person looks at a book.;There's two people standing in a room. One person is standing still looking at a book / magazine and the other is walking back and fourth.,c026 0.00 31.00;c152 13.60 31.00;c105 0.00 8.40;c032 0.00 31.00;c104 4.80 10.50,30.21\r\n7ZTGM,0KZ7,Kitchen,5,7,Yes,A person is washing the door on the refrigerator while waiting for dinner to finish cooking on the stove.,door;food;pot;refrigerator;spoon;stove,A person cooking and wiping down a refrigerator.The person turns away from the refrigerator and goes to the stove and stirs a spoon in a pot.,c007 0.00 24.00;c147 1.60 7.60,22.96\r\nZH4JE,ZAWX,Kitchen,5,7,Yes,\"A person picks up one book and opens that book, then puts it into a kitchen sink, still opened. The person turns around and picks up another book, and puts it on top of the open book in the sink.\",book;counter;table,\"The person is standing and reading a book. The person grabs the book and places it onto a different counter. The person then searches for a different book and places it on top of the original book.;This person appears to be in a kitchen. The person flips through book, places it counter, grabs another book and places it on top of the other book.\",c025 1.40 7.40;c027 30.90 35.00;c030 23.80 31.00;c032 0.00 9.40;c009 6.10 15.80;c026 6.30 14.10;c028 6.30 14.10,33.71\r\nCLW8L,BYF9,Bedroom,6,7,Yes,\"One person grasps a pillow from the bed, awakening another person who is under a blanket.\",bed;blanket;pillow,A person is sleeping when another comes and takes their pillow.,c079 7.10 13.10;c134 0.00 19.60;c072 0.00 20.10;c146 12.80 23.00,22.17\r\nA80GG,YA10,Living room,7,7,Yes,A person is cleaning their sofa with a vacuum. The person starts taking the cushions off of the sofa and throws them on the floor.,cushions;floor;sofa;vacuum,\"A person is using the vacuum to clean the sofa, and removing the cushions. The person is then throwing the cushions off the sofa.\",c137 0.00 34.00;c125 0.00 34.00,32.71\r\nBWZL2,T7C3,Pantry,6,6,Yes,A person walks into the pantry and throws some food on the shelf.  The person picks up a pile of dishes and tidies them up before leaving the room.,bag;cabinet;dish;food;groceries;pantry;shelf;sink,\"A person is taking groceries out of a bag and putting them in a cabinet.  They then pick up some dishes, wash them in the sink and put them in the cabinet.;a person is putting food in a bag from the pantry then he cleans some dishes\",c118 27.70 51.00;c120 25.90 32.70;c081 0.00 26.40;c130 0.00 26.40;c119 45.00 51.00;c121 39.80 49.00;c062 0.00 51.00;c022 0.00 27.20;c020 0.00 27.70,50.29\r\n17RPG,BYF9,Hallway,5,7,Yes,A person is standing in a hallway smiling while undressing and eating a sandwich while looking in the mirror.,clothes;food;mirror;sandwich,A person is standing in their bathroom while looking in the mirror. They take off their sweater and put it aside before eating the sandwich they are holding. They look in the mirror and watch themselves eat.,c096 0.00 7.00;c094 0.00 12.70;c065 27.70 33.00;c152 0.00 9.90;c156 26.70 33.00;c000 22.20 28.10;c003 24.10 30.20;c155 5.90 26.20,32.38\r\nDCFYV,XXN8,Basement (A room below the ground floor),5,6,Yes,A person is tidying clothes and another person is walking to the sofa.,clothes;doorway;sofa,A person folds clothes while sitting on a couch while a different person stands nearby.,c004 0.90 29.70;c123 0.30 29.60;c154 25.60 31.00;c002 0.00 4.40;c097 0.60 8.50;c001 8.80 23.70;c151 0.00 4.60;c000 0.00 25.30,32.25\r\nLHPQS,UO0Z,Kitchen,6,6,Yes,A person is smiling and closing the stove then starts to opening the camera.,camera;door;oven;person;phone;picture;stove,\"someone talking on a phone and looking into a stove;A person is holding their phone. They open and close their over door, then take a picture of something.\",c015 0.00 17.00;c087 8.70 16.10;c016 0.00 17.00,15.54\r\n63WHZ,KASL,Bedroom,7,7,Yes,A person is sitting at a desk tidying a rumpled towel.  Then a person is fixing a shelf.,chair;clothes;desk;laptop;shelf;table;towel,\"Person sitting in front of a computer folding a towel, and then getting up to measure a shelf.\",c012 0.00 21.50;c033 3.00 20.30;c154 19.20 24.70;c034 1.60 21.50;c082 30.80 38.10;c037 1.80 21.50;c051 0.00 23.00;c004 3.90 23.20;c052 0.00 23.40;c059 0.00 24.10,41.96\r\nJGYF6,3MIT,Living room,7,7,Yes,\"In the living room, a person is lying on the sofa sneezing and talking on the phone.\",phone;sofa;table,\"A person sneezes while sitting on a couch, then they get a phone call.\",c019 11.50 19.00;c123 0.00 19.00;c153 1.40 8.00;c016 0.00 2.80;c018 5.20 10.30;c011 0.00 19.00;c015 0.00 2.80,18.08\r\n2L6E2,UO0Z,Kitchen,5,6,Yes,\"A person is standing in the doorway holding some groceries. Then, laughing, the person walks to the refrigerator and begins opening it to put them away.\",bag;doorway;groceries;refrigerator,A person is walking into a kitchen and putting groceries into a refrigerator.,c020 0.00 3.40;c130 8.00 22.00;c143 3.50 9.00;c097 0.00 4.20;c022 0.00 24.00;c142 18.90 24.00;c021 6.10 11.60,23.46\r\nU3EUQ,9Y7F,Bedroom,5,7,Yes,\"One person lies under a blanket using the phone. Another person with a glass and a sandwich watches, then leaves.\",bed;blanket;glass;phone,\"a person laying down and watching a phone.;a person laying in bed looking at a phone, when the second person comes into the bedroom, peeks at the phone then walks back out of the room.\",,30.75\r\nMQRFK,6NQX,Kitchen,6,7,Yes,\"WHILE STANDING OVER THE SINK WASHING DISHES IN THE KITCHEN, PERSON NOTICES THE LIGHT ABOVE THE FOOD THAT'S COOKING OVER THE STOVE, IS GIVING OUT.\",dish;light;pan,a person washes some dishes and then fixes a light above the stove;The person washes a pan in the sink and then checks a light bulb in the vent hood above the stove.,c103 13.20 20.40;c121 0.00 14.00,22.67\r\nGPJ6E,OUKK,Bedroom,3,6,Yes,A person is tidying shoes left in disarray in the entryway.  Then a person is lying a blanket on a chair.,blanket;box;chair;clothes;floor;shoe,\"A person is tidying up shoes, they then grab a blanket from on top of a box and lay it over a chair.;Person walks in room, picks up shoes from floor, puts it in box, stands up, picks up blanket, put blanket on chair and walks out room.\",c054 3.40 16.20;c071 14.00 25.60;c073 14.00 20.80;c154 11.90 17.40;c127 2.90 16.30;c075 13.70 25.70;c001 18.70 25.40,29.71\r\nOQSPB,BYF9,Stairs,4,5,Yes,A person on the stairs holding a plate of food and a laptop. The person puts everything down and starts tidying up the stairs before leaving the house.,dish;floor;food;laptop;towel,person sat a laptop and some dishes on stairs dusting stairs,c050 0.00 13.80;c119 11.70 24.50;c154 9.80 34.00;c038 17.20 34.00;c118 0.00 8.00;c047 0.00 11.80;c033 11.40 34.00;c035 12.20 17.90;c127 16.50 30.80;c049 2.00 8.30,33.00\r\n720KV,4OHY,Home Office / Study (A room in a house used for work),6,6,Yes,A person was standing by the table grasping the pillow. The same person was watching the camera on the table.,bag;camera;chair;laptop;phone;pillow;table;towel,A person is holding a towel. A person then puts the towel on the table. A person then sits in a chair and looks at a laptop.;A person is holding a pillow playing with a camera while their laptop is open next to them.,c015 7.30 23.00;c017 7.50 23.00;c076 0.00 31.00;c020 0.00 31.00;c051 9.00 31.00,29.46\r\nS7CH5,OUKK,Living room,5,5,Yes,\"A person runs into the room, holding a pair of shoes. The person closes the door and puts the shoes on.\",door;shoe,\"SOMEONE OPENS THE DOOR, PUTS ON HIS SHOES WHILE STANDING UP AND LUNGES FOR THE DOOR AGAIN\",c055 3.00 11.00;c008 0.50 6.30;c150 2.00 10.00;c097 0.10 6.00,10.46\r\nZY8F2,8718,Living room,3,6,Yes,\"One person throws a blanket on the sofa and watches TV for a while, then runs out of the room.\",fish tank;sofa;television;tv,\"A person walking into the room, sitting on the couch, watching TV, talking to someone, and leaving the room.;Person sits down on the couch to watch television for awhile and then decides to get back up and walk away.\",c123 0.80 21.10;c151 0.00 5.50;c132 1.10 14.10;c154 24.00 30.00,29.38\r\nGF6TR,D0RU,Closet / Walk-in closet / Spear closet,7,7,Yes,The person runs into the closet while holding a pillow. The person then throws the pillow onto a shelf.,pillow;shelf,\"A person is running over to throw a pillow onto a shelf, then puts something else on the shelf.\",c081 4.10 9.40;c076 0.00 9.00;c077 1.80 9.00;c080 4.20 9.20;c150 0.00 4.90,31.92\r\nB53VP,YMXV,Bedroom,6,5,Yes,A person is grasping a pillow in one hand while snuggling in a blanket as they try to turn a doorknob.,blanket;door;floor;hand;pillow,\"A person is sitting on the floor, they take the pillow from the floor and put it on their bed and begin sneezing into their hands. They reach over to the door unlock it and try opening it.;a person sits on the floor holding a pillow and then sneezes before messing with a door\",c077 4.20 8.30;c079 0.00 5.50;c141 20.60 33.00;c125 0.00 22.00;c076 0.00 7.90;c153 13.20 18.80,31.62\r\nDV6OZ,Z68L,Bathroom,6,7,Yes,A person finishes washing their face. They go to exit the bathroom but notice the doorknob is squeaking. They pull out some oil from under the sink and try to fix it.,doorknob;mirror;sink;towel,\"A person washes their face than turns a doorknob.;a person washes their face, dries off with a towel, and then does something to a door knob\",c140 15.70 41.20;c096 4.10 16.50;c141 15.70 26.80,42.04\r\nV25D1,0KZ7,Closet / Walk-in closet / Spear closet,4,5,Yes,A person undresses in front of a mirror then stands in the doorway of the closet while eating a sandwich.,clothes;doorway;food;jacket;mirror;sandwich;wardrobe,\"A person is undressing in front of a mirror before standing in a doorway and eating a sandwich.;A person looks in the mirror, takes off a jacket and then picks up a sandwich from atop a wardrobe. They walk over to a doorway and begin to eat the sandwich.\",c065 8.60 14.40;c069 5.00 12.60;c156 8.60 14.40;c096 0.00 9.90;c067 4.80 29.00;c155 0.00 7.20;c061 4.90 29.00;c001 3.60 8.80;c063 4.60 12.40;c003 3.60 8.20,28.04\r\nMCHRP,4I61,Pantry,5,6,Yes,A person is uses the doorknob to open the door to the pantry.  They are sneezing and are seen putting their phone next to a box of cereal.,cabinet;door;phone;shelf,\"A person sneezes, opens a door, puts their phone on a shelf, then sneezes and leaves.;A person walks over to a door and sneezes then opens the door. They sneeze again before putting a phone inside a cabinet and then walk out of the room.\",c008 1.50 12.20;c141 1.90 12.50;c015 1.00 17.80;c153 1.90 19.90;c081 11.40 17.60;c097 5.40 13.10,24.33\r\nK0IGF,3H6W,Laundry room,6,7,Yes,\"A person is sneezing and undressing, then taking detergent off shelf and pouring it into a washer and finally cleaning a glass in a laundry room.\",clothes;cup;dish;glass;jacket,A person takes off their jacket and cleans off a glass.,c111 20.50 31.80;c155 1.10 9.30;c121 20.20 32.50;c153 2.50 11.40;c109 27.60 33.40;c110 20.30 33.00;c003 6.00 10.70,34.58\r\nYFZRG,KQI6,Bathroom,7,6,Yes,One person washes a mirror and tidies up while another person grasps a blanket.,blanket;cloth;light;mirror;sofa,A person turns on the light and then washes a mirror with a cloth. Another person stands up and goes to get a blanket.;A person turns on a light and steps up to a sink.The person wipes the mirror down with a cloth.Another person sitting on a sofa gets up and picks up a blanket and walks across the room.,c070 21.60 31.00;c095 3.90 19.10;c002 20.30 26.40;c104 0.00 4.60;c073 17.80 25.60;c000 21.60 29.70;c123 16.20 20.50;c154 16.30 20.90,30.25\r\nIBX56,HJZQ,Recreation room / Man cave,6,6,Yes,A person in the recreation room is eating a sandwich and start dressing in front of a mirror.,clothes;food;mirror;sandwich;shirt,\"A person standing in a living room and eating a sandwich, then walks over and looks into a mirror as the person wipes and adjust their shirt.;A person eats a sandwich, brushes their hands on their shirt and looks in the mirror.\",c065 0.90 11.50;c094 4.30 10.70;c156 11.90 22.90;c004 10.70 19.10;c096 22.10 31.00;c061 0.00 22.70;c067 0.00 22.70,30.42\r\n0PPPL,D0RU,Hallway,6,7,Yes,\"A person is walking down a hallway, drinking a glass of water with one hand and grasping their groceries with the other.\",bag;cup;dish;doorway;glass;groceries;paper/notebook;picture;water,A person is walking through a doorway and drinking from a glass.,c106 8.80 14.10;c106 17.10 23.10;c088 4.90 10.60;c117 11.40 18.90;c020 15.50 33.00;c023 14.70 21.00;c097 0.00 7.60;c118 4.50 32.90;c119 28.60 33.00,31.88\r\n1SJQX,2RTW,Kitchen,7,7,Yes,One person walks in holding a phone and throws down some homework before starting to cook.,closet/cabinet;food;homework;paper;phone,A person holding a phone picks up some homework then puts them down on the table.  They walk over to the stove too cook something in a pot.,c116 7.60 13.00;c015 0.00 14.30;c016 0.00 14.20;c147 13.20 31.00;c115 0.00 12.00;c156 23.00 31.00;c063 18.20 23.30;c017 9.60 14.20;c113 6.70 11.00,30.42\r\nZ1GUW,BYF9,Stairs,7,7,Yes,\"A person is grasping a towel and playing with it. Laughing, a person is putting clothes away.\",clothes;pillow;towel,A person takes a towel from a shelf and starts playing with it.  They then wrap the towel around themselves and pick some clothes up off the floor.,c033 8.00 25.00;c000 8.00 25.00;c001 20.00 25.00;c004 20.00 25.00;c002 20.00 25.00;c077 17.40 25.00,24.25\r\n7C13O,X3DN,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is tidying the area with a vacuum. They stop and sit in a chair when they are done.,animal;chair;vacuum,\"Person using vacuum to clean floor, looks back, then places vacuum in corner, sits on chair, then watches animal walks in room and walks out.\",c059 28.40 50.00;c137 23.70 31.10;c137 0.00 27.70;c151 26.60 32.90,49.33\r\nKV287,D0RU,Dining room,1,7,No,A walks in and puts a cup of coffee on a desk. Then the person leaves the room.,coffee;cup;desk;doorway;glass;table,\"A person walks through a doorway, holding a glass of coffee. The person then sets the coffee on the table, and leaves the room.\",c009 7.20 13.10;c107 0.60 11.70;c097 2.30 7.90;c097 0.00 16.90,30.75\r\nV5PK0,YA10,Kitchen,6,7,Yes,\"A person opens the refrigerator. They start throwing ingredients onto the stove. Then they realize they are holding a sandwich, and smile.\",condiment;food;frig;phone;stove,\"A person takes some things out of the fridge and then looks at his phone and laughs.;Person open frig, took out food, placed on stove. Then went back to frig, took out food place on stove multiple times. Person then looks at food item, smiles and looks at the stove.\",c143 0.00 3.70;c152 29.30 34.70;c062 24.10 31.60;c016 28.60 35.00;c149 29.30 34.70,33.83\r\nI9SSV,D0RU,Home Office / Study (A room in a house used for work),6,6,Yes,One person with a sandwich laughs at a picture as another tidies up shoes and a cabinet and then leaves.,chair;food;sandwich;shoe;table,\"A person is sitting on a chair, and picks up a sandwich from a table and takes a bite. Another person is sitting on a chair at a desk, and puts on a pair of shoes. The person then walks away.;A person picks up a sandwich and eats it. Another person is sitting in a chair and puts their shoes on. They get up from their chair and walk out of the room.\",c055 20.20 25.80;c154 32.30 37.20;c011 16.50 23.30;c156 4.80 10.80;c054 17.10 25.80;c065 4.60 11.50;c059 16.50 28.00;c055 19.40 35.50;c061 3.50 18.30,36.58\r\nBUL4V,ZAWX,Living room,6,6,Yes,A person is working on a book at a desk. The person begins looking out the window. The person closes the window blinds and returns to work.,book;chair;desk;homework;paper;table;window,\"A person is working on homework at a table. They get up and close the window, then sit back down.;a person sits and does homework at a table then they close a window\",c089 18.20 26.10;c151 25.70 31.00;c145 0.00 14.40;c154 18.80 25.90;c011 0.00 15.50;c059 0.00 16.20;c014 0.00 16.10;c032 0.00 13.70,30.25\r\nYDTH0,CCI9,Living room,7,7,Yes,\"A person is seen standing with their laptop. They then sit down on the sofa and start working on their laptop, putting a glass of water next to them\",cup;glass;laptop;sofa;table;water,A person sits down holding a laptop covered with a blanket. They pick up a glass of water and put it on the table.,c052 0.00 36.00;c107 28.40 33.80;c123 0.00 36.00;c151 0.00 3.40;c110 26.20 31.70;c009 29.50 34.80,34.50\r\nHEV65,ZAWX,Stairs,6,7,Yes,A person is running up the stairs with some clothes. The person opens a cabinet and begins putting clothes inside.,bag;cabinet;clothes,\"A person holding a bag walks up a stairway. They open the bag, look inside, close it and then put it into a cabinet.\",c112 26.70 32.00;c113 16.80 23.70;c021 6.60 12.00;c022 20.40 25.30;c020 0.00 24.50,30.79\r\nCFWP7,0RNU,Laundry room,7,7,Yes,A person puts some clothes on the shelf then throws their shoes on the ground.,clothes;shelf;shoe,A person is putting clothes on a shelf by a washer then they through their shoes on the ground.,c081 0.00 34.20;c058 31.70 37.00;c001 0.00 34.20;c002 0.00 36.20;c003 31.80 37.00;c004 0.00 36.20,36.08\r\nUIPJB,T7C3,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,Person is sneezing on the food while grasping a towel.,dish;food;towel,A person is standing in the doorway holding a towel and food. They appear to sneeze multiple times.,c033 0.00 24.00;c061 0.00 24.00;c153 2.50 8.70;c118 0.00 4.70,23.04\r\n94YTY,PO5L,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person walking into their entry way after opening their front door begins undressing. They sneeze from the chill and look in a mirror to see if they've mussed their hair.  They dump their clothes on a nearby cabinet and leave the entry way.,cabinet;clothes;door;hair;mirror;shirt,\"A person walks to a door, opens it, leaves the room and closes the door.  Then the person opens the door and walks back in, closing the door once again.  The person takes off clothes, fixes their hair, sneezes and puts the clothes on a cabinet.;Person going to the door, opening it, and going outside, and then comes back in again to take off shirt.\",c144 2.20 7.00;c155 5.50 19.00;c006 9.50 22.30;c155 16.00 24.20;c141 11.20 26.80;c001 17.70 30.30;c003 25.80 31.00;c008 1.80 7.50;c002 11.80 19.00;c097 3.30 8.50;c096 16.20 26.30;c153 24.80 29.50,33.25\r\nFO035,P6LJ,Living room,7,6,Yes,\"A person is awakening from a nap on their sofa. Smiling, the person stretches, then reaches out to grab their mug of coffee.\",blanket;coffee;couch;cup;head;lamp;pillow;sofa,\"someone sitting on a couch then covering up with a blanket;A person runs over to their sofa and snuggles up with a blanket. They fluff a pillow behind their head. They fall asleep and awaken, at which point they gulp down some coffee.\",c107 25.60 31.90;c146 20.60 28.40;c154 27.60 33.40;c150 29.40 34.00;c072 7.00 27.90;c106 26.20 32.60;c151 0.00 8.80,33.38\r\nMTA02,18IT,Kitchen,6,6,Yes,A person is holding a broom and another person is closing the refrigerator.,broom;floor;fridge;refrigerator,A person sweeps the floor with a broom while the other searches the fridge.,c102 4.70 26.00;c143 0.00 5.00;c127 4.70 26.00;c142 20.00 25.10,24.58\r\n13IJA,UTMU,Hallway,6,7,Yes,A person is seen sitting on a chair snuggling with a blanket. They pull off their blanket and tie their shoes before standing up.,blanket;chair;shoes,\"The person is sitting down holding a blanket. The person throws the blanket on the floor, ties their shoes, stands up and walks away.\",c070 0.00 7.00;c074 5.90 10.90;c059 0.00 27.90;c154 23.90 30.00;c072 0.00 9.00,31.04\r\nOOEHL,KQI6,Hallway,4,6,Yes,A person is walking through the door and then standing and holding a blanket in the hallway.,bed;blanket;closet;door,A person is standing in front of a closet then folding a blanket and holding it.;someone walking and grabbing a blanket and folding it,c070 5.50 32.00;c075 11.00 27.50;c071 23.60 32.00,31.00\r\nHONL7,9PLL,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,One person lying near the doorway throws down a book and starts playing games on a laptop.,book;floor;laptop,A person is holding a book and throwing it on the floor while working on a laptop.,c052 0.00 33.00;c031 0.00 10.10;c126 0.00 9.80;c116 1.00 11.00;c032 2.80 8.20;c124 0.00 33.00;c030 0.10 5.80,31.62\r\nR8I8E,9Y7F,Bedroom,6,7,Yes,\"A person is laughing, while a other person holding a bag in the doorway.\",bag;doorway,The person is standing in a bedroom,,30.25\r\nWBT2F,LTAC,Living room,6,7,Yes,\"One person puts a towel in a cabinet, closes it, then starts drinking coffee.\",cabinet;clothes;cup;door;glass;table;towel,A person folds a towel and opens a cabinet and puts the towel in then closes the door. Then they pick up a cup and drink from it.;Person folds a towel and puts it in a cabinet drawer then begins drinking out of a tea glass.,c106 12.20 32.00;c107 12.20 32.00;c112 7.70 15.30;c113 0.60 8.50;c033 0.00 13.00;c034 0.00 13.30;c006 7.40 16.20;c110 11.50 16.90;c000 0.00 10.20;c001 6.40 11.90,30.92\r\nPGKB4,ZAWX,Bedroom,7,6,Yes,\"A person runs into their recreation room, eating a sandwich. The person quickly opens their laptop and begins typing.\",bed;chair;food;laptop;sandwich;shelf,\"A person walks into a bedroom, grabs a sandwich, takes a bite of it, then proceeds to sit down on their bed, pull out their laptop, and turn it on.;The person walks to a shelf and picks up a sandwich and eats it. They then sit down and open their laptop.\",c048 14.70 22.40;c065 3.20 14.20;c156 3.20 14.20;c151 0.00 18.70;c052 17.10 32.00;c063 3.90 8.00;c059 14.50 32.00;c052 28.70 32.00;c063 28.70 32.00;c059 28.70 32.00,30.79\r\n7XKUI,UO0Z,Living room,5,6,Yes,\"A person sits on a chair while playing with their laptop. The person closes their laptop, sets it aside, and then leaves.\",couch;laptop;sofa;table,\"A person is sitting on a sofa working on their laptop, they then close the laptop, get up and walking into another room.;A person is sitting on a couch using a laptop. The person closes the laptop and leaves the room.\",c046 4.60 10.50;c051 0.00 8.60;c154 9.10 14.50;c123 0.00 12.80;c014 0.00 10.00;c151 9.20 13.80;c052 0.00 9.90,16.71\r\n1SMZZ,BYF9,Home Office / Study (A room in a house used for work),7,6,Yes,The person was drinking sitting in their chair. While the person grabbed their pillow to lie down.,chair;cup/glass/bottle;pillow;shelf,A person is sitting in a chair drinking water then takes a pillow from the bed.,c079 18.20 25.00;c059 0.00 15.00;c154 10.90 17.20;c081 13.60 19.50;c106 3.30 12.30;c107 0.00 20.00;c076 19.00 25.00;c109 0.00 20.00,23.75\r\nF9J4H,EIO2,Living room,5,3,Yes,A person is closing a door to the hallway while carrying clothes.  Then a person is leaving the hallway and picks up a pillow in addition to the clothes they were already carrying.,clothes;door;pillow,A person walks into a room holding some clothes. They grab a pillow and walk back out of the room with it.,c076 6.20 29.70;c079 5.30 11.10;c000 0.00 29.40;c097 0.00 3.70,30.25\r\nRSFBP,ZAWX,Stairs,6,6,Yes,A person sneezes while walking down the stairs.  The person takes their flip phone out of their pocket and opens it.  The person looks out the window and puts their hand on the glass.,glass;hand;phone;window,A person is walking down the stair sneezing and pulls out a phone then starts pushing against a glass window.,c015 15.10 24.20;c092 22.90 31.00;c153 5.70 12.20,29.96\r\nOOBMP,ZSRZ,Living room,3,7,Yes,A person standing in the doorway of the living room. They are holding a glass. They begin pouring the contents of the glass out on the floor.,cup;floor;glass,A person is holding a glass.,c107 0.00 9.00;c126 1.40 9.00,8.17\r\n5N26T,D0RU,Bathroom,6,7,Yes,A person opens up the door and carries a box inside  the bathrom. They look at themselves in the mirror. And open the medicine cabinet.,box;cabinet;door;hair;medicine;mirror,person going into a bathroom carring a bowl looking at mirror fixing hair,c096 20.70 32.60;c043 28.60 37.00;c008 29.10 37.00;c097 3.50 11.10;c144 8.90 15.60,35.71\r\nTETZ7,T7C3,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is standing in the entryway looking out the window.  The person grabs their camera and laughs as they leave through the doorway.,camera;door;picture;window,A person is looking out if a window than opens the door and leaves.,c092 0.00 10.40;c097 14.40 23.50;c149 7.00 12.60;c141 14.30 21.60;c152 6.30 12.40;c018 12.50 19.50;c008 14.00 20.60;c015 11.50 17.40,22.79\r\nO7IDF,KQI6,Bathroom,5,5,Yes,One person works on homework under a light as another person sneezes while tidying up the sink.,homework;light;sink,A man is sitting on the couch while holding a book and looking at a laptop. A woman is in the bathroom cleaning the sink.,,31.12\r\nQRLOG,0KZ7,Home Office / Study (A room in a house used for work),3,6,Yes,A person is leaving their desk and standing up to sweep the floor with a broom.,broom;chair;desk;phone;table,\"A person is sitting on a chair at a desk playing with a phone. They stand up, put the phone down and pick up a broom and start sweeping.;Someone is sitting a a desk on their phone and when they stand up they grab a broom and start sweeping.\",c098 8.00 12.90;c102 9.40 34.00;c154 6.30 11.30;c016 0.00 9.20;c059 0.00 9.50;c100 7.60 14.40;c011 0.00 10.00;c017 0.00 9.20,32.58\r\nSMQUM,3H6W,Living room,5,7,Yes,\"A person grasps a book, sits down on the sofa, then opens the book. The person begins to read.\",book;sofa,\"A person walks into a living room, picks up a book from the sofa, and sits on the sofa. The person then reads the book, and gets up from the sofa.\",c026 2.10 23.00;c030 1.20 6.40;c032 5.50 23.00;c123 4.00 23.00;c154 19.50 23.00;c151 4.00 8.60;c029 13.00 17.80;c027 5.20 22.90;c152 13.00 17.80,22.42\r\nVTICD,DXDI,Kitchen,6,6,Yes,\"A person is cooking at a stove, then pouring water down the sink and finally kissing a picture in a kitchen.\",food;picture;stove,A person cooks on the stove before kissing a picture.;A person is stirring a pan on the stove then they walk over to the sink then they pick up something off of the counter and sniff it,c084 21.50 32.00;c147 0.00 12.40,30.83\r\n50TLF,PO5L,Hallway,6,3,No,\"While standing in the room, one person takes a bottle of medicine from a box, drinks it and starts laughing.\",box;food;glass;medicine,\"A person takes a drink from a box in the hallway.;A person is walking and taking medicine from a box, and then sneezing.\",c044 4.20 10.00;c154 5.20 10.10;c129 10.10 20.40;c061 5.50 29.70;c063 4.90 29.70;c106 11.10 21.00,29.42\r\nX8Y9X,HR43,Bathroom,5,7,Yes,A person grasping a shelf in a bathroom. They put the shelf down and drink from a cup of coffee.,cup;dish;glass;shelf,A person is fixing a shelf. A person then grabs a cup and begins to drink a beverage.,c106 15.10 29.00;c107 13.20 29.00;c110 13.20 24.20;c082 0.00 15.90;c118 11.80 29.00,28.38\r\nMZ9X7,ZAWX,Bathroom,6,1,No,\"A person is grasping a box. The person sets the box down onto the bed, opens it, looks inside, and closes it.\",bed;box;cords;floor,a person opens a box and looks through it then closes it;Person walks into a room with a box in hand sits on the floor take something out of the box,c151 4.10 10.20;c125 5.80 32.00;c043 2.30 32.00;c041 5.80 32.00;c042 2.30 32.00;c040 2.30 32.00,31.04\r\n4RLYA,BYF9,Hallway,5,7,Yes,\"A person puts some dishes on a chair, then washes a mirror.\",chair;cup/glass/bottle;dish;mirror;towel,A person pours out coffee into a sink and rinses dishes in the sink before cleaning a mirror with a towel.,c118 0.00 27.20;c095 26.80 32.00;c121 1.30 24.20;c035 22.40 28.60;c033 24.60 32.00;c119 0.70 11.70;c038 24.80 32.00;c111 0.00 10.00;c111 8.50 19.40,31.25\r\nGWK2L,L4ZP,Home Office / Study (A room in a house used for work),3,7,Yes,\"The person in the study is tidying the paperwork in the box, and then they go over and start playing with the television.\",box;paper/notebook;picture;television;wardrobe,A man takes some pictures off of a wardrobe and puts them onto a box on a table.  They walk over to a television and turn it off.;A person is at a dresser taking things off of the dresser and putting them in a box they walk over to the tv and change the channel.,c132 28.90 38.00;c116 7.10 15.40;c117 5.60 11.30,37.67\r\n8MR9I,3H6W,Bathroom,6,7,Yes,A person is laughing and holding a phone while sitting next to the sink in a bathroom.,phone;tub,A person sits on the tub while talking on the phone and laughing.,c019 0.40 6.80;c149 0.80 6.50;c151 0.00 3.10;c154 14.20 19.70;c015 3.30 18.90;c152 6.50 18.80,25.42\r\n9EP7R,YMXV,Bedroom,4,6,Yes,\"One person sneezes into a pillow as another person runs into the hall, grasps a camera from a desk, and takes a picture.\",bed;camera;doorway;phone;picture;pillow,\"A person is sitting down on a bed with a pillow on their lap, then then begin to sob into their pillow. Another person comes in the room and takes a picture of Person A.\",c015 24.40 32.00;c076 0.00 19.40;c087 21.70 32.00;c018 15.10 32.00;c153 21.20 28.90;c018 17.00 22.20;c150 12.10 18.40;c097 11.60 16.90;c135 0.00 32.00;c153 8.00 13.10,31.29\r\n5C3NY,LTAC,Stairs,5,7,Yes,A person is eating a sandwich under a doorway and then tidying the stairs.,broom;doorway;floor;food;sandwich,person eating and sweeping at the bottom of stairs,c065 0.00 22.60;c156 0.00 22.80;c127 22.90 32.00;c098 21.20 32.00;c102 22.90 32.00;c061 0.00 32.00,30.50\r\nX9WTR,G6WD,Recreation room / Man cave,3,7,Yes,\"A person sits in a chair, watching television. The person moves to the sofa and takes homework out of a bag.\",bag;book;chair;homework;paper;sofa;table;television,A person sits down in a chair and watches TV. The person moves to a sofa and takes homework from their bag and begins to work on it.,c116 31.60 40.40;c145 36.40 58.80;c132 3.80 22.30;c123 22.50 63.00;c117 28.70 40.10;c059 0.00 25.20;c151 23.20 32.30;c154 19.60 28.10;c027 33.20 39.40;c009 31.90 38.10;c011 24.50 62.70;c032 35.10 62.40;c028 31.90 38.50;c030 23.80 33.00;c026 28.30 37.50,64.50\r\nZSSNJ,T7C3,Pantry,4,7,Yes,A person turns on the light in their pantry. They grab a broom. The stop and start laughing while playing on their phone.,broom;doorway;light;phone;television,person sweeps floor takes phone out of pocket laughing texting,c015 6.60 35.00;c102 2.10 7.20;c149 7.00 16.50;c098 1.40 6.70;c018 10.20 35.00;c097 0.00 4.40;c098 1.10 35.00;c018 3.20 12.20;c104 0.00 2.90;c152 12.50 35.00,34.42\r\nPHH49,BYF9,Living room,7,7,Yes,A person is laughing at a television then lying on clothes on the floor of a dining room.,floor;television,A person is watching televison then lays down on the floor and laughs.,c131 0.00 21.00;c149 0.00 21.00;c124 7.30 21.00;c125 8.30 13.80;c151 6.40 13.20;c132 0.00 9.80,19.75\r\nVLX0E,3VLX,Stairs,5,7,Yes,A person is seen holding a phone and looking at it. They begin laughing at a picture that they see.,floor;phone,A person is on their phone while laying on some steps and laughing.,c016 0.00 21.00;c149 8.30 21.00;c152 8.50 21.00;c125 0.00 21.00;c015 0.00 21.00,19.75\r\nY6ROG,L4ZP,Living room,6,6,Yes,\"A person is sitting at a desk laughing on the phone, while a laptop is falling out of a bag on the desk.\",backpack;bag;floor;phone;sofa;table,A person is sitting down talking on a phone  they then grab a backpack and throw it on the floor and smile.;A person sits on his couch talking on the phone.  Then he grabs something out of a bag.;A person is sitting down on the  sofa talking on the phone then throws backpack on the ground.,c019 0.00 30.00;c149 0.00 8.60;c123 0.00 30.00;c022 12.00 17.40;c152 0.00 10.50;c024 12.10 17.20;c015 0.00 30.00;c126 9.50 17.20;c023 8.00 17.20,29.38\r\n1UNXY,L4ZP,Hallway,6,6,Yes,Person walks down hallway while popping medicine in mouth and drinking a glass of water.  Person then stops in the hallway and straightens picture on the wall.  Person then starts tidying of the floor in the hallway by picking up clothes from the floor.,clothes;cup;floor;food;pill;shelf;water,\"This person takes a pill, drinks something, then starts tidying up the floor.\",c000 13.70 26.00;c004 13.70 24.40;c127 13.70 24.40;c106 1.00 6.50;c156 0.00 4.20;c082 9.00 16.20;c107 0.00 26.00,24.67\r\nYD9OX,38MV,Bathroom,5,1,No,\"A person carrying coffee grasps a towel from the bathroom and runs from the room, while another person closes the door and continues dressing.\",clothes;coffee;cup;door;towel,A person in the bathroom is putting on a jacket. Another person walks in to the bathroom while drinking coffee and grabs a towel then turns around and leaves.,c106 4.00 13.90;c033 3.50 16.50;c148 0.00 27.00;c107 2.20 16.10;c035 3.70 11.10,26.04\r\nIZTHW,9Y7F,Stairs,6,7,Yes,\"A person picks up a towel and a broom off the stairs, and begins tidying up by setting them aside. They sit down and look at their phone, laughing at what is on the screen\",broom;clothes;floor;phone;towel,\"A person dragged a broom while walking up stairs.  The person then picked up a shoe and placed it somewhere.  The person then haphazardly swept the stair steps.  Enough work being done for the day, the person then grabbed a phone and began playing with it.\",c098 0.00 18.90;c102 2.60 18.10;c034 24.00 29.00;c016 27.80 34.00;c151 22.00 27.50;c149 29.40 34.00;c127 1.30 27.30;c004 1.30 29.00;c018 25.60 34.00,32.83\r\nDQGYG,HR43,Kitchen,5,7,Yes,A person is sitting in a chair smiling. The person stands up and goes to the cabinet and then begins making a sandwich.,bread;cabinet;chair;dish;food,\"A person sits on a chair, stands up and takes bread from the cabinet, and places it on a dish.;A person is sitting on a chair in a the kitchen they get up open the cabinet take out some bread open the bread grab a plate and put the bread on the plate.\",c113 14.20 19.20;c059 0.00 16.10;c154 12.10 17.50;c119 31.80 40.40;c120 15.80 24.00;c063 14.20 40.00;c061 16.30 43.00;c062 35.30 40.20,41.92\r\nE5CP9,YMXV,Hallway,5,3,Yes,A person is leaving shoes in a cabinet while smiling.,shoe,A person standing in a hallway takes their shoes off one at a time and places them at the bottom of a stairway.,c057 0.40 25.20;c152 0.00 29.30,31.29\r\nV95RI,DXDI,Hallway,7,7,Yes,A person is holding dishes and pouring liquid onto a pillow.,dish;floor;glass;pillow,A person is holding a glass and some dishes. The person begins pouring water onto a pillow on the floor.;Person standing in the hallway taking a glass of water and pouring water onto a pillow that is laying on the floor while holding a dish.,c118 0.00 23.00;c124 0.00 19.00;c107 0.00 23.00,22.21\r\nQ7DEB,KFGP,Kitchen,5,7,Yes,A person is seen laughing with a broom in their hand. They start grasping a laptop which is playing videos.,broom;laptop,The person is walking around with a broom. The person picks up and checks their laptop.,c098 0.00 26.00;c047 13.30 26.00;c050 12.10 17.50,24.92\r\nNGHT9,JVLO,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,One person is walking with the laptop into the closet while another is sneezing at the bright light.,doorway;laptop;paper/notebook,the little boy walks into the house from outside withe a laptop in his hand and another boy from in the hose is sneezing.,c047 0.00 11.00;c153 10.10 29.10;c097 0.00 11.70;c115 0.00 10.70,29.38\r\n1JH1W,Z68L,Bathroom,5,6,Yes,Person looks at picture while washing hands at the sink. Person closes water spigot and walks out.,doorway;hand;picture;sink;water,The person walked into the bathroom and washed their hands. The person paused and looked at a picture hanging on the wall. They then dried their hands and left the room.,c139 0.50 24.20;c088 4.10 16.60;c097 1.60 7.10,42.25\r\n82XWA,0KZ7,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is awakening and then snuggling in a pile of clothes, then using the phone and smiling into a mirror in  Closet / Walk-in closet / Spear closet.\",blanket;clothes;floor;mirror;phone;wardrobe,Person lying on the floor snuggling clothes pick up a phone to use.  Picks up a mirror and look into it.;A person laying on the floor of a laundry room cuddles with some clothes. The person picks up a phone and sets it back down. The person picks up a mirror and looks at themselves.,c015 6.00 17.20;c018 5.90 10.90;c094 16.00 25.00;c146 0.00 10.20;c124 0.00 21.70;c017 6.20 17.60;c093 14.20 25.00;c152 18.10 23.30;c072 2.10 9.70;c072 0.50 21.60;c125 18.40 25.00;c000 0.10 21.60;c096 15.30 25.00,24.08\r\n8AT69,2RTW,Living room,7,7,Yes,A person is snuggling on the sofa with a blanket watching television.,blanket;sofa;television,A person sits on the sofa covered with a blanket and watches tv.,c072 0.00 31.00;c123 0.00 31.00;c132 0.00 31.00,30.46\r\nDAS12,8718,Bathroom,5,6,Yes,A person drinks coffee in the bathroom. The person then puts shoes into a bag and puts them on a shelf.,bag;cup;shelf;shoe;toilet,A person is sitting on the toilet drinking coffee. The person then grabs a bag and puts some shoes in it and puts the bag on a shelf.,c022 27.60 35.00;c081 27.80 35.00;c106 0.00 17.10;c154 13.60 21.00;c054 17.80 30.30;c023 14.80 19.90;c020 15.30 35.00;c021 15.90 22.50,33.79\r\nMS58Y,4I2W,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person is running through the doorway. They grasp a towel as they leave the room.,doorway;towel,A person walks up stairs into a house.  They grab a towel and wipe their brow and walk through a second doorway.,c033 9.50 31.00;c035 7.70 16.10;c038 10.90 18.80;c097 0.00 9.80;c150 0.00 9.00,29.83\r\nJOBFJ,ID9V,Bedroom,2,7,Yes,A person puts their shoes on a table then grasps a box off the floor.,box;chair;dresser;shelf;shoe;table,A person is picking up shoes and putting them on a table. They pick up a box and put it on the table.;A person holds shoes and puts them on top of a dresser. They pick up a box and shake it.,c056 0.00 6.40;c042 15.60 29.00;c009 0.10 17.20;c054 2.40 9.90;c040 15.60 29.00;c043 15.60 29.00;c053 0.60 8.80;c059 0.00 29.00;c151 0.00 4.40;c081 1.70 9.10,27.67\r\nQRWQ3,D0RU,Kitchen,7,7,Yes,\"A person is pouring some water into a pan that is on a stove. After a few second of pouring, the person turns the stove on and walks over to a box set on the counter. The box is then opened up and the person pulls out a bottle of medicine.\",box;container;dish;food;glass;medicine;pills;pot;shelf;stove;table;water,\"A person is cooking something on a stove. He then opens up a container and takes out some pills.;A person cooking on the stove, pours water into a pot, then lights the stove, and takes out pills.\",c041 26.10 33.30;c147 19.10 29.00;c128 31.30 37.00;c147 2.10 27.40;c081 12.80 18.40;c118 6.00 18.40;c119 13.00 18.40,35.71\r\nCSHUE,HJJ4,Kitchen,7,7,Yes,\"A person cooking in the kitchen sneezes into the crook of their arm.  They begin putting a blanket into their refrigerator, when they realize what they are doing, and put away something that actually goes into the refrigerator instead.\",blanket;bowl;dish;food;pan;refrigerator;spoon;stove;towel,\"A person is cooking some food at a stove, they then sneeze and grab a towel and begin to put it in the fridge, they stop, throw it down, then grab a dish and put it in the fridge.;This person got confused putting the wrongs items in the refrigerator while trying to cook.\",c074 12.80 18.10;c143 8.10 16.40;c153 3.10 10.70;c071 13.10 17.90;c142 18.00 23.00;c147 0.00 7.60;c120 14.60 20.00;c033 6.90 17.70;c034 13.50 17.90;c035 6.80 11.50,21.54\r\nSG8ZR,3H6W,Recreation room / Man cave,3,7,Yes,A person is snuggling on a couch with a blanket in a recreation room.  The person is opening a beer. The person puts the beer cap into a bag.,bag;blanket;drink;glass;sofa,A man sits on a couch and snuggles with a blanket before opening a drink and drinking from it.;a person sits on the sofa and snuggles with a blanket then drinks something and plays with a bag,c123 3.20 48.40;c072 2.20 19.70;c151 2.20 8.20;c154 44.70 50.90;c109 26.40 35.70;c022 33.90 41.40;c070 1.70 18.70;c020 32.20 40.90;c122 3.50 18.00;c106 28.40 33.90;c107 28.40 33.90;c021 32.40 40.70,49.83\r\nTDHM0,X5XO,Basement (A room below the ground floor),6,5,Yes,A person is grasping a doorknob and then sneezing into a phone in the basement.,door;phone,A person holds onto a doorknob and sneezes while looking at their phone.,c141 1.00 31.00;c016 6.00 29.00;c153 6.00 13.70;c008 25.80 31.00,30.29\r\nFU5NY,3VLX,Living room,6,7,Yes,\"A person carries a cardboard box over to the window in the living room, and sets it down on the floor.  They turn and walk away, leaving the box there by the window.  Walking away, they turn for just a moment, and looking back at the box they suddenly begin laughing.  After a few seconds of strange laughter, they continue to exit the living room.\",box;floor,A person walks into a room and throws a box onto the floor. They walk away and throw the box on the floor.,c045 3.50 12.10;c126 3.40 12.20;c042 4.30 9.60;c040 1.00 8.70,20.33\r\n9HVZN,0KZ7,Garage,6,7,Yes,\"A person walks into the garage, takes a pillow from the shelf, and leaves.\",doorway;pillow;shelf;something,person walks in a garage and gets a pillow and walks out,c079 13.20 28.00;c097 0.00 4.10;c076 12.50 28.00,27.33\r\nCK3H7,LTAC,Bedroom,5,7,Yes,\"A person is sitting at the desk folding clothes.  The person takes the clothes and puts them in the wardrobe, then lays on the bed under the blanket.\",bed;blanket;closet;clothes;desk;wardrobe,A person sits at a desk and put clothes away into a wardrobe.  The person then lays down on a bed and covers up with a blanket.,c113 20.90 26.50;c072 33.90 39.00;c134 35.00 39.00;c001 22.00 30.00;c004 0.00 30.50,38.21\r\nWL1DJ,TGGT,Bathroom,4,6,Yes,A person is taking a mirror from the bathroom shelf and laughing at the reflection in the mirror.,camera;mirror;picture;shelf,A person walking into a bathroom picking up a mirror and setting it back down.;Person walk into the bathroom pick a camera off the shelf and then began to take a picture while standing in front of a mirroe.,c096 18.90 33.10;c087 20.90 34.60;c017 29.90 35.00;c015 12.10 35.00;c081 5.00 11.20;c152 22.80 27.50,33.92\r\nMF09L,L4ZP,Kitchen,6,6,Yes,\"Person opens cabinet, pulls out dishes, closes cabinet and sets the table in the ding room.  Person then fills glasses with water. Person then takes drink from water.  Person then pulls camera from pocket and takes a picture of the table.\",bottle;cabinet;camera;cup;dish;glass;picture;table;water,\"A person opens a cabinet, grabs a few dishes, and sets the table, then pours water in a cup.;A person is walking to a china cabinet and taking dishes out. They then pour water in a glass and take a picture of it.\",c119 1.30 30.00;c113 0.00 10.50;c087 39.40 52.00;c118 30.10 40.80;c009 7.00 16.60;c120 0.00 29.50;c018 39.10 44.90;c109 10.10 15.60;c108 27.80 33.90;c110 7.50 12.00;c107 7.00 39.00;c106 32.00 37.00;c015 39.00 49.00;c016 39.00 49.00;c018 41.70 51.80;c109 0.00 50.00;c108 17.50 36.90;c112 0.30 47.00,51.33\r\nQIQUA,L4ZP,Living room,6,6,Yes,The person is running the vacuum and washing the window while laughing in the dining room.,floor;towel;vacuum;window,A person is cleaning the floor with a vacuum. A person is cleaning a window with a towel.,c137 1.10 36.00;c091 3.40 16.20,34.58\r\nFJXBX,L4ZP,Dining room,6,6,Yes,\"A person takes a book from a table in the dining room. The person closes the book, looks into the mirror, and smiles.\",book;hair;mirror;table,\"A person is picking a book up off the table and reading it. The person sets the book back down and walks over to a mirror and looks at their reflection in it.;A standing person picks up a book from a table, looks at it and puts it own, then walks to mirror to look into it while studying their face.\",c026 0.00 18.40;c032 0.60 17.40;c096 14.70 30.00;c025 8.00 13.00;c027 1.20 6.30;c144 16.80 24.00;c028 7.20 14.50;c030 0.00 5.80,29.29\r\nGUYVC,BYF9,Living room,4,7,Yes,One person works with a vacuum cleaning under a table while another person eats at a sofa.,floor;food;sofa;vacuum,Person A is sitting on a sofa eating and Person B is sitting down on the floor vacuuming the room.,c123 0.00 22.00;c137 0.00 22.00;c156 0.00 22.00;c127 0.00 22.00,21.50\r\nHS521,XXN8,Bathroom,6,7,Yes,A person in the bathroom talking on the phone and laughing. Then they open the door turn off the light and leave the bathroom.,door;light;phone,A person answered the phone.  The person then began talking of a phone.  A person then turned off the lights.,c105 24.10 29.70;c019 0.00 28.00;c149 6.80 14.70;c015 0.00 29.40,31.79\r\n1UFW1,LTAC,Pantry,7,7,Yes,A person is grasping a bottle of medicine and then working on organizing food on a shelf in the pantry.,bottle;box;food;medicine;shelf,\"The person is placing several items and on shelves and arranging the same items.;A person takes a bottle off a shelf, and then places bananas on the shelf. The person begins cleaning up the shelf.\",c128 0.10 13.90;c062 13.20 22.20;c081 13.70 26.80;c061 0.00 31.00;c063 0.00 5.20;c082 16.90 31.00,30.38\r\nR2KI4,L4ZP,Home Office / Study (A room in a house used for work),4,5,Yes,\"A person in their home office is walking around in circles while holding a camera. They stop and put down their camera, while drinking from a glass of water. There is a laptop on the table that the person turns on.\",cup;dish;glass;laptop;phone/camera;table;water,\"A person walks around in circles in a room, then picks up a glass off a table, drinks from it, and watches something on their laptop.\",c106 21.70 34.00;c051 20.40 33.60;c017 20.40 25.60;c018 2.30 7.10;c016 3.10 25.60;c015 2.10 25.20;c118 19.90 34.00;c052 27.00 34.00;c009 20.40 26.10,32.71\r\nRLA7N,9PLL,Kitchen,6,6,Yes,The person was cooking dinner while watching a cooking show on television.  The person then started washing dishes.,dish;food;television,A MAN IS MAKING SOMETHING ON A SKILLET AND TURNS AROUND TO LOOK INTO A NOTHER ROOM AND WALKS AND CLEANS A PLATE,c121 26.40 39.00;c147 5.00 13.50;c118 27.90 38.50;c120 26.00 30.90,37.79\r\n6RQHT,1OHU,Garage,3,6,Yes,\"A person is in their garage watching a small television sitting on a shelf. They dress in their winter clothes leave, and close the door.\",bike;clothes;counter;desk;jacket;phone,Someone is watching a video on their phone. They put on a jacket that they were holding in their hands and walks off.;someone stadning and watching something on a phone,c000 0.00 20.40;c148 10.20 21.60,22.00\r\nEHYXP,L4ZP,Hallway,6,1,No,One person fixes the place settings on the table by rearranging the dishes. Another person brings in a bag of groceries and places some food on the plates. Both people sit down and have a drink.,dish;door;window,\"A person is coming out the bathroom, when another person enters.;The person in the video is walking through the hallway and passes by another person, and smiling the whole time.\",c097 1.30 7.00;c152 2.20 7.70;c008 0.00 6.00;c120 3.40 9.80;c150 5.20 16.10;c141 1.80 6.60;c118 2.70 8.00,19.88\r\nGKII3,KFGP,Bathroom,6,7,Yes,\"A person is sitting in a bathroom holding a broom, they get up and as they are leaving they close the door behind them.\",broom;chair;door,A man is sitting in a bathroom with a broom.  He then stands up and walks out of the bathroom and closes the door.,c006 15.20 28.00;c098 0.00 28.00;c154 9.90 15.10;c059 0.00 14.00;c141 13.60 19.10;c097 15.30 21.80,27.04\r\nX91NG,P7D1,Entryway (A hall that is generally located at the entrance of a house),3,7,Yes,\"A person is in an entryway, watching out a window and tidying with a broom.\",broom;door;floor,A person sweeps dirt out of an open door and then closes the door and leans the broom the wall;A person is sweeping around a door and opens the door twice.,c102 0.00 33.10;c006 29.60 38.10;c098 0.00 38.50;c127 0.00 15.40;c008 22.50 27.80;c099 32.90 37.90;c141 12.80 17.70;c141 22.10 28.60,38.75\r\n3S6WL,QB52,Bedroom,5,1,No,\"A person puts some shoes in a box. They pick up a bag a hold it in the right hand, and leave.\",bag;bed;hands;shoe,\"A person is sitting on a bed rubbing their hands together. Then they take a shoe off the bed and grab a plastic bag, tie it up and walk away with it.;A person is sitting on a bed going through a bag before getting up.\",c020 10.10 32.00;c154 22.50 27.90;c135 0.00 24.40;c056 5.10 12.90;c021 10.30 24.20;c023 9.20 16.60,30.62\r\nK8H4G,HR43,Bedroom,7,7,Yes,A person stands in front of their bed pouring clothes out of a bag. Then the person leaves the room.,bag;bed;clothes,\"A person dumps some clothes from a bag onto their bed, they then walk out of the room.\",c001 0.00 13.70;c023 0.30 4.80;c020 0.00 3.60;c022 6.80 11.40;c021 1.00 6.30,23.38\r\nOJGGZ,L4ZP,Kitchen,4,5,Yes,\"A person is tidying the shelf, then pouring food into a bin, then putting away groceries and taking off shoes in the pantry.\",bowl;cabinet;containers;counter;cupboard;dish;food;glass;groceries;plate;shelf;shoe;table,\"A person is adjusting a plate on the counter, then they turn to the table and pour food from one container to another. Then they turn back to the counter and put the plate in the cupboard along with a glass. Then they take off their shoes.;a person tidies up some things in a kitchen and puts something in a bowl\",c081 32.90 41.60;c062 8.20 37.80;c113 30.30 36.90;c119 11.50 24.80;c130 6.60 41.40;c009 7.10 33.40;c057 38.30 45.00;c061 0.00 43.40;c112 32.70 42.90,44.21\r\nM2F66,DXDI,Laundry room,5,7,Yes,\"One person walks in, starts washing a load of clothes, tidies up a bit, then leaves with a book.\",book;bottle;closet/cabinet;clothes;detergent;door;washer,\"A person is putting clothes in the washing machine. The person puts detergent on the clothes. A person begins tidying up the shelf, grabs a book, closes the door, and walks away.;A person enters the room and puts some laundry in the washer. They get a bottle of detergent and put some in the washer. Then they close the washer door and put away the detergent bottle. They close the door to the laundry room and get a book and walk out of the room.\",c000 0.00 11.90;c026 40.30 49.00;c006 17.10 23.00;c008 1.10 10.70;c001 0.00 23.50;c002 0.00 5.10;c005 9.60 24.50;c107 8.90 14.30;c112 37.40 47.20;c097 0.00 5.90,48.33\r\nGCWNT,HJJ4,Bedroom,5,6,Yes,A person is tidying their wardrobe and closing the door and then grabbing some food,bowl;closet;door;food;shelf,\"The person is fixing stuff in the closet, and then picks up a bowl and starts eating.;A person closes a closet door and eats some food.\",c006 8.40 14.90;c061 12.30 24.00;c112 8.60 14.90;c114 0.00 11.80;c063 11.90 16.70;c156 14.70 24.00,22.88\r\n1JYPW,XXN8,Home Office / Study (A room in a house used for work),5,7,Yes,A person is tidying up their books and putting some boxes away.,book;box;shelf,Person moving books from one shelf to another trying to arrange stuff on the bookshelf.,c043 18.20 29.80;c030 0.00 18.30;c082 0.00 31.00;c026 0.00 3.50;c042 14.10 21.20;c028 0.00 18.10;c040 17.60 27.90;c081 0.00 21.90;c039 17.90 27.50,30.46\r\nIDACP,HJJ4,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"One person closes a desk, then dresses into a coat and a pair of shoes.\",clothes;coat;shoe;table,A person is fixing an item on a table. A person then puts on their coat and shoes.;The person walked into the entryway and closed a table drawer. The person then put on a coat and shoes.,c055 12.50 23.50;c148 4.90 14.40,22.96\r\nIKZJE,EXQX,Hallway,6,6,Yes,\"A person is washing the large picture on their wall. Then, smiling, the person picks up their camera and takes a photo of the picture.\",camera;phone;picture;towel;wall,A person is washing a picture on the wall with a towel. They take a photo of the picture with their camera.,c087 23.00 33.80;c015 9.30 33.80;c088 7.40 12.70;c018 21.70 28.20;c038 37.90 43.80;c035 0.00 5.20;c033 0.30 10.70;c016 8.40 34.40,64.75\r\nI7DWS,WG9D,Kitchen,5,7,Yes,One person stands holding a towel in front of the refrigerator while eating something.,food;something;towel,A person is standing by refrigerator holding a towel in one hand and sandwich in other.,c033 0.00 9.00;c156 0.00 9.00;c061 0.00 9.00,7.62\r\nOSENM,9PLL,Hallway,5,7,Yes,\"A person is pouring a glass of water in their hallway. They are sitting down and holding a camera, attempting to take a picture of themselves.\",camera;floor;glass;phone;picture;water,\"A person pours a glass of water onto the floor, then sits on the floor and takes a photo with a cell phone camera.\",c015 25.00 34.00;c151 5.50 14.90;c087 24.70 34.00;c109 5.30 10.80;c125 8.10 34.00;c107 0.00 10.60,33.08\r\nHL9YR,T7C3,Stairs,5,6,Yes,A person is sitting on the stairs working on their laptop while taking off their shoes. The person starts laughing then closes the laptop.,laptop;shoe;stairs,\"A person is sitting on the stairs looking at a laptop. They take of their shoes and put them on the floor.  They type while smiling before closing the laptop and coughing.;A person is sitting on some stairs using a laptop, they then take off their shoes and begin smiling and laughing. They close their laptop.\",c046 31.20 42.00;c051 0.00 6.10;c053 13.70 19.90;c152 18.80 35.40;c057 2.50 9.50;c047 0.00 42.00;c052 0.00 42.00;c054 1.90 27.50;c149 19.00 38.90;c056 1.50 27.90,40.67\r\nXXMN1,9Y7F,Kitchen,5,6,Yes,Person standing by pantry and holding box of groceries looks at another person and starts laughing.,bag;box;counter;food;groceries;table,A person is holding a box of groceries while another person leans against the counter. The person picks up some food out of the box and holds it up.;a couple of people standing and one person with a bag in a pan,c020 0.00 7.70;c044 16.20 22.50;c009 0.80 12.30;c063 16.80 22.00;c061 0.00 11.80;c149 21.20 32.00;c062 3.70 10.00,30.75\r\nXFLQH,D0RU,Bedroom,6,6,Yes,\"Two persons are lying on the bed snuggling.  One person gets up and opens a box next to the bed.  The person pulls dishes out of the box, smiles, and puts them on the shelf.\",bed;blanket;box;dish;shelf,\"a person is sleeping and wakes up and grabs a box and puts it on the bed, another person is in the bed, the first person puts something on a shelf;A person is lying in bed underneath a blanket. They get up and grab a box from a table and walk to the other side of the room. They take some items out of the box and place them on a shelf.\",c081 26.00 36.00;c041 21.00 26.00;c044 26.00 36.00;c119 29.00 36.00;c154 20.00 31.00;c072 15.00 36.00;c040 16.20 24.70;c043 12.80 26.80;c134 0.00 12.50;c120 23.10 36.00;c146 3.80 14.20;c074 7.30 13.30;c133 3.80 14.20,34.88\r\nWX4AP,BYF9,Bedroom,7,7,Yes,A person is playing on their laptop while drinking a glass of water. The person grabs a piece of food.,bed;cup;food;glass;laptop;table;water,A person is sitting at bed.  The person is on a laptop and takes a drink.,c106 9.50 16.50;c052 0.00 21.00;c107 7.90 18.60;c014 0.00 11.60;c051 0.00 21.00;c152 0.00 5.00;c011 0.00 21.00;c135 0.00 21.00;c110 8.20 12.80,20.50\r\n24B2K,3H6W,Basement (A room below the ground floor),7,7,Yes,A person is seen drinking water and eating a sandwich. They look in a box and start snuggling up to a blanket.,blanket;box;cup;dish;floor;food;sandwich,\"A person sits down behind a closed door and eats a sandwich, drinks water, looks at a box, and snuggles with a blanket before standing up.\",c073 33.10 39.80;c067 7.70 19.30;c040 27.10 36.80;c106 18.80 26.80;c072 34.70 47.90;c068 15.30 20.10;c039 27.70 36.30;c156 8.00 20.90;c154 44.40 50.60;c065 7.40 20.90;c069 5.00 12.00;c041 26.90 34.60;c151 3.40 11.70;c125 8.50 49.50;c109 22.60 28.70;c071 43.10 48.70;c152 36.60 47.90;c107 18.80 27.40;c118 6.60 19.30;c043 31.50 37.90;c070 34.70 49.20;c119 21.50 29.00;c042 31.50 37.30;c063 6.60 30.10;c062 6.90 30.30;c061 6.60 30.30;c120 6.60 30.30;c110 6.60 30.30,53.92\r\nUB3KO,3VLX,Kitchen,6,6,Yes,\"A person stands over the stove, cooking a piece of meat. The person consults a recipe on their laptop.\",dishes;food;laptop;sandwich;stove,a person turns on the stove and cooks something then opens their laptop;A person is cooking on a stove making a sandwich they open their laptop and work on it then they use the spatula to turn the sandwich.,c147 4.20 11.20;c048 20.80 26.30;c052 23.10 38.50;c147 1.00 8.90;c069 5.50 11.70;c061 7.00 20.30,42.92\r\n5B2K2,9Y7F,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,\"In the entryway, two people are snuggling and laughing while one keeps taking pictures of shoes.\",door;phone/camera;pic;shoes;wall,\"two people standing in a doorway to the outside, one person walks outside to take a picture of shoes;The people in the video are laughing and smiling and joking around with each other, while the other takes a pic of a object in the corner.\",c149 3.20 9.90;c087 22.60 31.00;c152 6.20 12.30,30.38\r\nO0R1A,EIO2,Bathroom,6,6,Yes,A person is throwing clothes into a laundry basket while another person is eating near a light in the kitchen.,bucket;cabinet;clothes;food;medicine;towel,\"A person throws a towel into a bucket. Another person is eating food off of a cabinet.;Person standing in room looking at bucket, throws clothes in bucket. Another person in room picking up object off counter and placing in mouth multiple times.\",c156 5.90 32.00;c034 1.70 8.60;c036 1.20 8.60;c003 1.10 8.80;c063 8.90 16.80;c063 13.10 20.20;c129 8.90 16.60;c129 13.20 20.20,30.83\r\n18HFG,UTMU,Kitchen,7,7,Yes,A person is holding a camera and taking a picture.,camera;phone;picture,A person is taking a picture of a shelf then walking away.,c015 0.10 23.40;c087 4.70 20.60;c018 0.20 7.70,24.79\r\nMV37M,BYF9,Kitchen,6,7,Yes,A person in the kitchen is eating some groceries. They begin throwing some clothes on the floor while laughing at how silly they seem.,floor;food;plate;towel,A person is standing in the kitchen eating some food off a plate. The person then picks up some towels and begins throwing them onto the floor.;A person is standing by a counter and eating some sort of food. Then they grab some rags and throw them on the ground and smile.,c126 10.10 18.50;c156 0.00 6.10;c063 0.00 6.80;c036 10.20 19.00;c152 15.40 24.00;c062 0.00 5.20;c061 0.00 5.00;c033 8.60 18.40;c035 7.70 12.50;c149 20.40 24.00,23.29\r\nT1XP2,D0RU,Home Office / Study (A room in a house used for work),4,7,Yes,\"Person 1 is standing in the middle of the study, arms folded, laughing at the television. Person 1 then walks to the door and begins sneezing.\",book;chair;door;picture;table;television,a person reading a book and then stands up and watches tv;A person is studying a book.  The person watches television and walks to a door to sneeze.,c153 18.10 31.10;c132 6.20 21.80;c011 0.20 11.30;c059 0.30 11.30;c088 1.20 9.60;c032 1.20 9.60,30.92\r\n1D2OX,EA2K,Closet / Walk-in closet / Spear closet,5,1,Yes,A person is tidying the cabinet with the shoes in it.  Then the person is walking while talking on their phone.,shelf;shoe,\"A person is picking up shoes from the shelf, and tidying up.;A person is putting shoes on a shelf and tidying up.\",c053 0.00 27.20;c081 6.70 14.10;c082 0.00 29.20;c054 0.00 29.70,30.83\r\nLZUAY,T7C3,Pantry,7,7,Yes,A person is standing in the doorway is fixing a sandwich while distracted by something outside the window.,container;dish;doorway;sandwich;window,\"A person stands in a doorway, making a sandwich while holding a container. The person is then looking out the window.\",c066 0.00 28.00;c092 8.30 28.00;c118 0.00 28.00,27.50\r\nW01LY,0KZ7,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is fixing a pair of shoes while another person is playing with a broom.,boom;broom;laces;shoe,A couple of people in a room .A person holding a broom spinning it in their hands.Another person sitting and lacing op a pair of shoes .,c053 0.00 6.50;c098 24.10 30.00;c152 0.00 30.00,29.12\r\n03M0K,L4ZP,Bedroom,7,7,Yes,A person is dressing while their clothes lay on the chair in front of her. Then the person opens their laptop and begins playing on it.,chair;clothes;laptop,A person is sitting down.  The person then puts on a jacket.  The person then sits back down and opens a laptop.,c048 7.50 13.90;c059 0.00 3.80;c151 6.50 11.90;c154 0.00 4.10;c148 0.20 9.90;c152 8.00 24.00;c052 7.90 24.00,23.42\r\n40WPV,38MV,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is taking shoes down from a shelf. Another person is holding bags of groceries.,bag;closet/cabinet;groceries;shelf;shoe,A woman grabs shoes from a shelf.  A man walks in with a bag.  The man leaves with the bag.,c053 0.70 15.50;c056 0.00 9.00;c020 2.40 34.10;c021 2.20 31.60;c023 2.20 31.60;c082 0.00 14.70;c114 0.00 14.70,37.92\r\n61UIO,D0RU,Living room,6,5,Yes,\"A person can pour a glass of milk in the garage, A person can laugh with a pillow on their head in the garage.\",a book;a bottle of sprite;and a stool;chair;cup;dish;head;pillow;table,\"This person  poured himself a drink, and then he sat in the chair and put a pilow behind his head and griped it and then started shaking his head back and forth, acting frustrated.;a person pours a drink on a cup on a table then sits in a chair and laughs holding a pillow on his head\",c119 0.00 5.90;c154 23.20 32.00;c009 7.20 15.40;c108 1.10 17.90;c076 0.00 30.00;c151 12.10 18.90;c059 14.80 27.80;c152 12.00 32.00,31.04\r\nYC3OE,HR43,Living room,7,6,Yes,A person is holding a box while undressing in a living room. They take their medicine and start tidying the room.,blanket;clothes;food;jacket;medicine;pillow;shirt;sofa;table,\"A person takes off their jacket and sits down on a couch. Then they open a bottle of medicine and take some, and then set the medicine down on a coffee table. Then They fold their jacket and pick up a blanket from the couch and fold it.;a person takes off a shirt then sits down and eats some food then tidies up\",c151 14.60 25.10;c004 17.80 29.20;c156 22.10 34.10;c004 30.70 36.50;c129 11.30 25.10;c155 0.00 8.70;c154 16.60 26.70;c009 7.80 17.10;c075 16.40 29.60;c123 25.40 38.60;c076 25.00 32.60;c002 2.50 12.60;c000 1.90 9.60;c077 27.40 39.00;c001 4.70 12.40,39.12\r\nTQGPM,2RTW,Living room,6,6,Yes,\"A person is watching television while sitting on a sofa. The person grasps a bag of groceries from the floor, and places the bag onto a nearby table.\",bag;couch;groceries;sofa;table;television;tv,\"This person is sitting on the couch watching T.V., then gets up and picks up a bag and sets it on the table.;The person sitting on the couch is watching TV. After watching for a few seconds, he picks up a bag of groceries and puts it on the dining room table.\",c023 14.50 21.60;c123 0.00 19.60;c154 14.70 20.40;c132 0.00 19.00;c009 21.50 27.40;c020 17.20 27.40;c022 16.20 26.40,30.88\r\nA6R22,2RTW,Living room,6,6,Yes,A person is smiling sitting at a small table opening a beer to pour it in a glass.,beverage;bottle;cup;table,A person is opening a bottle and pouring a beverage into a cup. A person then reads the label on the bottle.,c011 0.00 33.00;c108 0.70 19.30;c152 3.40 16.20;c110 2.70 17.50;c109 0.00 19.10;c107 0.00 19.60;c009 1.50 6.30;c009 10.30 17.00,31.62\r\nZOBZV,2RTW,Living room,6,6,Yes,\"A person walks back and forth, talking on the phone. The person stops and stands there for a moment, before hanging up and putting their phone on a shelf.\",floor;phone;shelf,The person is pacing back and forth as he is talking on the cell phone. He then hangs up and places his cellphone on a shelf.;A person is pacing around a living room while talking on a phone. The person puts the phone down on a shelf.,c019 0.00 40.00;c017 34.10 40.00;c015 0.00 39.20;c081 34.10 39.60,38.92\r\nZFT87,C7O9,Kitchen,7,7,Yes,\"A person is pouring some liquid into a pot as they cook at a stove. The open a cabinet and take out a picture, and set it next to the stove while they continue to cook and gaze at the photo.\",cabinet;cup/glass/bottle;dish;food;phone/camera;picture;pot;stove,\"a person makes some food on the stove and then looks at a picture;Person is in the kitchen at the stove, pours food into a pot, gets a picture out of the self and looks at it while cooks.\",c113 13.80 18.70;c087 15.00 25.10;c084 14.80 25.00;c147 0.00 16.30;c063 0.00 2.60;c088 21.70 30.00;c107 0.00 9.30;c118 9.00 15.50;c108 0.00 7.90;c110 0.00 10.10;c083 13.10 22.10,29.25\r\nQ5Y02,4I61,Bedroom,7,7,Yes,\"A person walks through the doorway into their bedroom. They put down a glass they were drinking from, and begin undressing. They start laughing at something they see through their window.\",clothes;coat;cup;doorway;floor;glass;hoodie;scarf;shirt;window,\"A person walking into a bedroom, drinking a glass of water. Then the person puts the water on the desk, takes off coat, puts the coat on the floor, straightens scarf while pointing towards a window, pulls down on hoodie , adjusts shirt, then takes the hoodie off.;A person walks into a room drinking a glass of water they remove 3 layers of clothing and look out the window and wave to someone.\",c106 0.00 10.50;c003 8.20 33.00;c155 8.70 33.00;c126 10.50 18.50;c092 12.70 25.70;c097 0.00 5.50,31.92\r\nDNXBJ,PKND,Other,5,6,Yes,A person is closing the cabinet and another person is dressing by the window.,cabinet;closet;clothes;door;wardrobe;window,A person is getting dressed while another person opens and closes a closet door.;A person is dressing while another person is opening a wardrobe and looking inside. The person dressing looks out a window.,c112 13.70 22.50;c008 0.70 8.10;c113 0.00 13.90;c148 0.00 27.70;c006 9.40 25.50;c113 22.30 31.10;c154 0.00 32.00,30.96\r\nVUXLB,H8N1,Kitchen,6,7,Yes,A person is just awakening as they groggily enter the kitchen to grab their morning coffee. They sit down in a chair and take a few sips before putting the coffee down on a table.,counter;cup;glass;table,\"A person walks to the counter and picks up a glass before drinking several sips. Afterwards, the person puts the glass back and walks away.;A person walks up to a kitchen counter, picks up a cup, and takes a drink. The person then sets the cup down and walks away.\",c009 22.80 29.40;c106 8.90 22.20;c109 20.00 27.00;c107 5.40 19.30;c110 1.70 11.70,30.75\r\nDRXNL,ZAWX,Closet / Walk-in closet / Spear closet,6,5,Yes,A person is throwing things into a box while another person is calmly putting things on a shelf.,book;box;closet/cabinet;clothes;shelf;table,\"A person throws clothes from a table into a box while another person takes books from the table and puts them on a shelf.;A person is putting some clothes from a table into a box, another person is tidying up some clothes by putting them on a shelf, they grab a book.\",c081 14.30 19.70;c001 1.80 10.50;c004 17.80 24.90;c030 12.90 17.80;c001 6.60 11.80;c040 0.00 15.10;c002 0.00 14.80;c026 13.20 32.00;c003 0.60 15.10;c028 12.30 32.00;c116 23.40 30.90;c012 0.00 32.00;c114 14.30 32.00,30.75\r\nYO9NC,R1OT,Bedroom,6,7,Yes,\"A person is lying down on the bed in the bedroom. They start undressing by taking their jacket off and putting it in a wardrobe. Then, they pick up a book and start watching the book.\",bed;book;closet/cabinet;clothes;door;shelf;wardrobe,A person is laying down on a bed then gets up and begins to undress. They then put their clothes in the closet and picks up a book to read.,c151 19.60 25.70;c154 1.20 6.50;c155 1.60 11.60;c001 7.60 19.90;c030 18.60 23.50;c146 0.00 5.20;c135 0.90 5.20;c113 11.10 18.40;c006 14.50 20.30;c133 0.00 5.20;c134 0.00 4.00;c030 18.70 31.00;c032 22.50 31.00;c112 14.50 20.30;c081 12.30 19.60;c027 21.70 31.00;c008 11.10 20.50;c026 18.60 31.00,29.96\r\nYJRBY,D0RU,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person is standing in the closet drinking a glass of water.  The person opens the wardrobe and takes out some clothes, then smiles.\",cup;glass;pillow;shelf,\"A person is standing in the living room drinking from a glass. They reach into a shelf and grab a pillow.;A person is standing in front of a shelf while sipping from a cup. Afterwards, the person grabs a pillow from the shelf.\",c106 4.70 22.30;c107 3.20 35.00;c152 27.90 35.00;c076 24.60 35.00;c079 22.00 29.20,33.58\r\n7CXYB,HR43,Kitchen,6,7,Yes,\"A person is eating in front of a refrigerator, then pouring water in a glass and then wiping down a counter in a kitchen.\",counter;cup;dish;fridge;glass;refriderator;refrigerator;stove;towel;water,\"A person is holding a glass, opens a fridge, and pours a glass of water. The person then cleans a counter and stove.;A person opens the fridge and places beverages inside of it.\",c108 12.60 44.00;c143 4.30 10.50;c033 26.30 44.00;c038 25.60 44.00;c107 0.00 20.90;c142 16.50 22.40;c106 18.00 26.80;c118 0.00 27.40,43.42\r\n55NNF,PO5L,Kitchen,7,7,Yes,\"A person is cooking, then begins opening a refrigerator and grabs a sandwich.\",counter;food;fridge;object;refrigerator;stove;table;toaster oven,\"A person cooks food on a stove while also going through the fridge.;A person walks into the room and opens up a toaster oven. They close it back and then open the refrigerator. They get an object out and set it on the counter, then walk out of the room.\",c147 2.60 17.90;c143 14.80 21.30;c142 18.20 24.30;c009 23.90 28.70,30.75\r\nMOKPE,D0RU,Bathroom,7,7,No,A person is putting medicine into a box under the window. The person begins pouring the medicine into a cup.,box;medicine,The person grabs a box and takes medicine out of the box. The person then puts the box back up on the ledge.,c041 1.60 9.20;c043 0.00 3.40;c039 12.30 17.20;c128 9.40 15.40;c044 3.10 16.80;c040 0.00 19.90;c042 13.60 21.20,36.12\r\nTR0TO,QRES,Stairs,6,7,Yes,\"A person walks up the stairs holding a sandwich. The person puts the sandwich down, picks up a camera, and walks back down the stairs.\",camera;desk;food;phone;sandwich;table,A child walking up the stairs and placing something on a desk and walking back down the stairs.;A person is walking up the stairs while eating a sandwich.  The person sets the sandwich down on a desk and grabs a camera.  The person then walks down the stairs with the camera.,c065 0.00 14.30;c068 9.50 14.80;c009 9.50 14.80;c067 0.00 14.30;c015 11.40 16.10;c156 0.00 14.30;c061 0.00 13.60;c018 10.80 16.60,24.96\r\nUFWKL,KQI6,Living room,7,1,No,A person is sneezing on a light and then working on homework in a pantry.,book;couch;desk;homework;paper;sofa;table,A person sitting on a sofa in front of a desk doing homework sneezes multiple times.;A person sitting on a couch reading a book sitting on a table then sneezing.,c145 0.00 5.00;c153 1.80 7.20;c123 0.00 30.00;c032 3.90 30.00;c027 3.50 8.30;c011 0.00 30.00;c014 6.60 30.00,29.38\r\n8CUHI,WQ8Z,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person sneezes then watches the television from the entryway while holding a towel.,blanket;doorway;towel,Person holding a towel walk in the room look around and more by the refrigerator.;A person wipes there face with a towel.  They stand in the doorway for a while and then enter the living room.,c033 0.00 23.00;c153 0.00 4.50;c070 0.00 23.00,21.75\r\n82X3Z,4OHY,Stairs,6,4,Yes,A person is seen playing on their laptop. They start drinking and eating some food while snuggling.,cup/glass/bottle;floor;food;laptop,\"A person is watching a laptop, sitting on the stairs while they eat some food.\",c051 0.00 13.10;c061 17.70 22.60;c156 17.30 24.70;c052 0.00 32.00;c125 0.00 32.00;c106 11.50 19.50;c063 16.60 22.10;c109 14.40 20.10,30.88\r\nYAPN7,PO5L,Recreation room / Man cave,4,7,Yes,\"A person undresses in the recreation room. The person lies down, snuggles up to a blanket, and takes a bite from a piece of food.\",bag;blanket;clothes;couch;floor;food;pillow;shirt;sofa;table,\"The person has come into the living room removed a shirt and wraps in a blanket and lied down, moments later they sit up and grab a snack.;Person walks into the room, sits on the couch and takes off shirt, covers up with a blanket and lies down before sitting up and eating some food from a bag.\",c155 2.30 6.60;c156 3.80 8.60;c151 6.90 10.90;c122 15.40 22.10;c002 27.60 33.30;c072 8.60 39.30;c022 21.80 38.40;c023 22.40 38.40;c009 22.40 38.40;c063 22.40 38.40;c062 26.20 31.80;c070 8.40 17.90;c071 13.90 23.10;c123 2.60 17.50;c000 6.50 11.30;c003 7.30 11.70;c073 8.40 15.20;c061 22.80 38.80;c020 22.20 37.20;c126 7.10 12.10;c021 22.60 27.70;c154 35.10 41.10,41.33\r\nJD3KW,OUKK,Home Office / Study (A room in a house used for work),7,7,Yes,A person is in the basement tidying up a shelf.  The person finds a small box and opens it up to find old pictures.  The person takes a couple out and then closes the box.,box;floor;picture;shelf,\"A person is searching a shelf for something. The something turns out to be a handful of pictures that they look through, then put away and walk away.\",c082 5.30 17.10;c086 29.90 43.10;c088 17.80 34.20;c154 38.60 44.20;c044 14.00 22.50;c084 17.80 41.70;c083 16.30 24.80;c151 10.50 19.10;c125 39.30 43.50;c039 34.70 43.10;c041 13.30 20.50,45.54\r\n5XCUV,QOQ4,Kitchen,6,7,Yes,A person is opening a recipe book. They are drinking a glass of water and take off their shoes.,clothes;counter;glass;kitchen granite top;shoe;table,A person is standing in the kitchen near the gas top.He drank something and removed his shoes later.;A person is in the kitchen doing something in the counter then they proceed to take of their shoes.,c057 20.90 29.00;c009 9.60 16.00;c056 20.90 29.00;c001 22.70 29.00;c106 0.00 6.50,27.88\r\n9D6WC,H8N1,Kitchen,7,7,Yes,A person in their kitchen is drinking some coffee while also watching some pictures that they took on their camera.,coffee;cup;glass;phone,The person picks up a phone and starts to text with it. The person then picks up a coffee mug and takes a sip then puts it back down and walks away.;Person walks up and picks up phone and begins playing with it while grabbing a sip of coffee from a nearby coffee cup.,c109 9.30 14.20;c016 0.70 19.50;c107 4.90 9.40;c110 3.30 9.10;c015 0.20 7.50;c106 4.70 13.70,19.71\r\n57RY4,9PLL,Kitchen,3,6,Yes,\"A person is sitting in a chair in a kitchen drinking coffee. They wash out the coffee cup, turn out the light and leave.\",chair;cup;glass;table,\"Person sits down at red chair near the stove, drinks water, walks toward door, turns around and heads back.\",c059 0.90 28.60;c106 1.70 27.30;c154 24.20 29.60;c009 26.90 36.20;c107 1.70 30.00;c109 24.70 34.60,35.58\r\nXAOUP,D0RU,Living room,6,7,Yes,\"Closing the door, a person begins walking to the table. The person picks up the phone and sits in the chair as the person begins to dial.\",chair;door;laptop;phone;table,A person walks through a doorway and sits in a chair.  The person turns on a laptop on a table and makes a phone call.,c059 7.70 33.00;c019 15.20 33.00;c011 7.10 33.00;c006 0.00 6.10;c151 6.00 11.70;c052 9.10 18.20;c015 15.20 33.00;c014 7.20 33.00,31.79\r\nF0PNU,BYF9,Stairs,7,7,Yes,\"Person is standing on stairs and looking at groceries that are on table, then person starts sneezing.\",stairs,A person is standing on the stairs looking at a table and then they sneeze.,c153 8.00 16.10,18.29\r\nOHNF4,BYF9,Bedroom,7,7,Yes,A person is sitting in their bedroom undressing. They drink milk from a glass and eat a sandwich.,bed;clothes;cup;dish;drink;food;glass;table,A person sitting on the bed gets undressed. They take a glass of water from the table and drink the water.;A person sits on the bed and begins to undress. The person then grabs some food and drink off the table.,c106 13.80 29.00;c155 0.00 17.70;c063 13.70 24.40;c135 0.00 29.00;c118 18.30 29.00;c110 18.10 23.80,27.62\r\n1NNFV,ZAWX,Kitchen,5,5,Yes,A person pours a cup of coffee and takes a drink.  The person puts the coffee on the desk and grabs a book and holds it.,book;bowl;coffee;cup;dish;homework;magazine;mug;table,\"A person is pouring some coffee from a pot into a cup, they then drink some then grab some homework and begin looking at it.;The person transfers coffee from a bowl into a mug and drinks the coffee. The person picks up a magazine off the table.\",c106 12.10 18.90;c026 21.50 30.30;c030 24.30 31.80;c108 0.00 10.00;c119 8.00 12.80;c115 22.70 32.00;c107 9.40 25.40;c032 28.40 32.00;c009 8.00 14.90;c110 15.70 22.00,30.71\r\nE661I,9Y7F,Living room,4,5,Yes,A person is sneezing while holding a towel while another person is running in shoes.,chair;doorway,A person sitting on a chair sneezes. Another person enters the door and runs to another room while the first person keeps sneezing.;A person sitting on a bench sneezing .Another person runs in to the room and goes though another door.The other person continues to sneeze.,c153 0.00 3.50;c150 6.40 13.80;c059 0.00 32.00;c097 5.80 11.20,30.62\r\nXQDQ4,YMXV,Home Office / Study (A room in a house used for work),3,7,Yes,\"A person is seen watching out the window, the person then begins drinking some water and looking in a box\",box;cup;water;window,\"A person is looking out a window. The person then picks up a bottle of water, takes a drink, picks up a box, and opens it.\",c041 16.40 27.10;c106 8.40 22.60;c092 0.00 12.20;c110 7.40 16.70,30.92\r\nJQ2SN,4OHY,Bedroom,6,5,Yes,\"person is eating food then sneezes on a vacuum, while in their bedroom.\",bed;dish;food;plate;sandwich,\"A person is sitting on a bed eating a sandwich.  They put the sandwich down, stand up and sneeze.;The person is sitting on the bed and eating a sandwich.\",c061 0.80 18.40;c156 0.10 17.80;c154 13.40 19.50;c135 0.00 18.30;c068 11.30 17.20;c062 12.50 18.00;c153 15.50 31.00;c065 1.30 13.10;c069 0.00 5.40;c119 12.20 18.10;c067 0.00 16.50;c118 0.00 17.80,29.75\r\n6B93R,D0RU,Kitchen,3,7,Yes,A person is eating food from various dishes and drinking a glass of water. The person smiles as they finish their food.,cup;dishes;food;glass;pots;water,\"A person opens and closes some dishes while eating food.  The person picks up a glass and drinks from it.;A person walks up to a kitchen counter and opens various lids of cooking pans, tasting some of the contents. Then the person takes a drink from a glass.\",c107 32.70 47.00;c106 38.00 46.40;c063 5.60 13.10;c156 12.80 21.90;c110 29.00 33.90;c062 6.80 12.20,46.21\r\n61RMD,D0RU,Hallway,7,7,Yes,A person is holding a cup of coffee and then fixing a camera in the entryway.,camera;coffee;cup;doorway;drink;phone;table,A person walks through a door with a drink and a camera.  The person drinks and puts the camera on a table.;A person is holding some coffee and they set a camera on a table,c015 0.00 10.10;c106 7.60 14.70;c097 0.00 5.30;c017 0.00 11.90;c009 2.20 11.50;c107 0.00 27.30;c016 11.60 29.50,30.96\r\nFM3TT,WG9D,Kitchen,5,7,Yes,A person is standing and working on the doorknob to the medicine cabinet.,cabinet;doorknob;medicine,Person opening a cabinet to take something and then closes it again.,c128 0.00 10.00;c113 2.80 10.00,8.83\r\nIC89C,ENC8,Kitchen,6,5,Yes,A person is cooking on a stove in the kitchen then starts fixing a vacuum.,food;pot;spoon;stove;vacuum,The person is cooking. The person grabs a spoon and stirs the pot. the person picks up a vacuum and tries to fix it.,c136 22.60 46.70;c137 17.90 48.50;c138 15.80 22.40;c147 2.40 15.60,52.21\r\n1N1UT,T7C3,Pantry,7,6,Yes,A person holding a book and eating a sandwich closes a door.,book;door;food;sandwich,A person eats some food and holds a book. they continue to eat as they look at the book and then they leave the room.;A person is eating a sandwich and looking at a book then they walk out of the room and turn on a light in another room.,c026 0.00 31.00;c032 0.40 31.00;c065 0.00 31.00;c006 24.30 30.70;c156 0.00 31.00;c061 0.00 26.00;c030 0.00 4.50;c141 24.50 30.60,29.71\r\nCBXI2,QB52,Bedroom,3,5,Yes,\"Person is lying in bed sleeping, then starts awakening due to loud noise from vacuum cleaner.\",bed,A person is asleep in bed then the person wakes up and sits up.,c134 0.00 31.00;c133 19.50 25.00;c146 19.50 25.00,30.04\r\nXJS1X,XXN8,Stairs,3,6,Yes,A person is carrying groceries and running down stairs. The person laughs and turns on a light at the bottom of the stairs.,bag;groceries;light,A person walks down a set of stairs carrying some bags of groceries and the person turns on a light.,c104 5.60 12.30;c020 0.00 7.50,30.79\r\n0RNRI,ZAWX,Dining room,5,5,Yes,\"A person in the dining room is walking around while holding a pillow in their hand. They put the pillow down, drink a glass of coffee, and then start undressing by taking their jacket off.\",clothes;coffee;cup;dish;floor;towel,\"A person is walking with some clothes, they then stop and take a drink of coffee and begin undressing.\",c000 0.00 18.20;c106 16.80 23.60;c110 15.70 21.10;c155 22.20 30.60;c118 15.40 20.50;c003 12.00 18.30;c107 15.40 20.50;c120 14.60 20.50;c034 12.00 18.30;c119 15.70 25.90;c109 15.70 25.90;c126 22.20 32.00;c033 0.00 17.70,31.04\r\nAFTMI,L4ZP,Laundry room,6,7,Yes,\"A person is sitting in the laundry room putting on their shoes.  The person takes a pillow from the shelf, looks at it, and smiles.\",chair;pillow;shelf;shoe;sofa,\"The person sitting on the sofa tied shoes,got up and picked up a pillow.;A person sitting on a chair puts on their shoes. They then take a pillow off a shelf.\",c053 13.50 19.00;c082 32.30 38.00;c079 32.30 37.80;c154 30.60 36.10;c123 0.00 34.80;c076 32.10 39.00;c152 34.20 39.00;c055 0.00 34.60;c059 0.00 35.10,38.25\r\n969Z9,HJJ4,Home Office / Study (A room in a house used for work),3,6,Yes,\"A person walks in, holding a camera. Then they look at themselves in the mirror and start laughing.\",camera;chair;desk;phone;table,There is a person sitting at a desk holding a camera;A person walks to a desk while holding a camera and sits down.,c015 0.00 7.60;c151 0.70 6.10;c011 0.80 7.40;c149 3.80 11.90;c152 3.70 13.00;c059 1.00 13.00,12.12\r\nIFQS1,HR43,Laundry room,5,6,Yes,\"Person is in the laundry room with a towel on their shoulder, grasping a blanket. They place the blanket into the dryer and close the dryer door. They then leave the laundry room.\",blanket;clothes;towel;washing machine,A person is grabbing some blankets from a bin next to a ladder and sticking them inside a washing machine.,c070 0.70 12.50;c071 8.70 13.30;c000 0.40 6.20;c034 0.80 6.30;c001 0.30 12.70;c033 0.50 6.10;c005 6.10 18.00,16.54\r\nK6DF2,YA10,Laundry room,6,7,Yes,A person is seen putting their water on a table. They then take their water and turn on a light after taking a drink.,glass;light;table;water,A person is holding a glass of water and putting it on a table then drinking from the glass of water. The person then turns on a light and walks away.,c104 21.40 27.50;c106 12.20 24.30;c009 4.20 10.40;c107 0.00 10.30;c109 5.20 10.40;c110 10.80 15.90,31.12\r\nUGQD0,CCI9,Hallway,7,1,Yes,A person is holding a phone and then opening and closing a bottle of medicine in the hallway,chair;glass;medicine;phone,\"A person is sitting in a chair holding a phone. The person gets up, grabs medicine, and opens and then closes it.\",c128 4.40 34.00;c151 6.80 16.40;c059 11.40 34.00;c128 9.80 21.70;c015 0.00 14.60;c154 0.10 6.80;c152 12.30 19.20;c016 28.10 34.00,32.71\r\nGIZ95,6RE8,Bedroom,6,6,Yes,A person is laying in there bedroom playing with there ink pen while doing homework. They look out the window and due to the bright sunlight sneeze.,bed;curtain;homework;paper;pen;window,\"A person is working on some homework while laying down and opening a window while they have a seizure.;Person laying on bed with paper and pen, write on paper, sits up and looks out window, lays back down, sits up again and look out window.\",c145 0.00 10.50;c090 23.80 32.00;c134 0.00 32.00;c092 24.40 32.00;c115 0.00 32.00,30.67\r\nQZCSM,ZSRZ,Bedroom,5,6,Yes,\"One person tidies up a mirror with a towel, smiles at their reflection, then leaves the room.\",mirror;smiling;towel,\"Person wipes mirror with towel, then smiles in it and walks away.\",c095 0.00 10.30;c033 0.00 10.50;c038 0.00 10.60;c094 2.50 10.00;c096 2.50 10.00;c037 0.00 6.00;c152 2.50 10.50,12.00\r\nV4PKW,BYF9,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is standing next to a door and holding a cup of coffee. They open the door, pick up a book from the ground, and leave.\",book;coffee;cup;door;glass,\"The person is standing in the room, drinking a glass of coffee. The person then opens a door, picks up a book, and leaves the room.\",c008 16.70 26.90;c030 13.20 20.50;c106 0.00 11.80;c026 15.70 27.00;c107 0.00 27.00;c097 21.70 27.00,26.38\r\nBBQIS,SR1C,Closet / Walk-in closet / Spear closet,6,7,Yes,A person walks into the closet and sits down. The person takes a pair of shoes from a box and puts them on.,box;floor;shoe,{},c125 7.80 17.40;c044 11.80 23.70;c055 23.90 28.70;c151 20.80 29.10;c154 28.50 38.70,41.71\r\nJSD0F,3H6W,Dining room,7,7,Yes,A person is laughing in their dining room holding a bag of groceries. they turn off the light and sneeze.,bag;groceries;light;table,A person is holding a bag of groceries and laughing. A person then turns off a light and begins sneezing.,c020 3.20 14.90;c105 15.70 22.10;c153 18.10 27.60;c022 7.60 14.50;c009 9.70 14.20;c152 5.20 16.20;c023 4.20 8.60,28.67\r\nRKGXU,ZSRZ,Kitchen,6,6,Yes,A person is eating some food that they found in the refrigerator in the kitchen. They are watching outside the window while also drinking a glass of coffee.,cup;dish;door;food;refrigerator,A person is in the kitchen opens the refrigerator takes out some food eats it closes the refrigarator then turns around and gets a drink of something,c063 0.90 9.20;c143 0.00 5.00;c106 14.70 23.40;c156 5.40 12.80;c107 20.20 26.00;c006 11.70 17.70;c142 11.90 17.50;c118 15.40 26.00;c110 14.90 22.90;c008 0.00 5.80;c061 4.80 18.40,25.29\r\n39SXL,D0RU,Laundry room,6,6,Yes,A person is walking down the hallway eating a sandwich.  The person looks at their shoes and smiles before grabbing the doorknob to the bedroom.,dish;doorknob;doorway;food;sandwich;shoes;television,A person walks in from outside eating a sandwich. The person walks into the living room and watches some television while eating. The person then touches a doorknob.,c065 6.60 30.20;c156 5.80 28.60;c152 35.60 42.00;c132 31.70 42.00;c067 1.90 33.70;c061 2.10 29.00;c097 3.10 8.30;c118 1.90 33.30,40.83\r\nLXSIG,HR43,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person is standing near a window while holding some clothes.,clothes;jacket;window,The person is holding a jacket. The person walks to the window and looks out the window. The person is scrunching up a jacket. The person walks away from the window.,c092 0.00 8.80;c000 0.00 29.00,28.12\r\nARESU,ZAWX,Recreation room / Man cave,6,6,Yes,\"One person is drinking at a table as another person puts some groceries on the table, then starts washing it.\",bag;book;chair;container;cup;dish;groceries;table,A person is sitting at a table. They take a sip from a cup thats on the table. Another person walks in with grocery bags and places them on the table and opens one to pull something out.;A person is sitting at a table drinking a bag of water.  A second person walks over to the table holding bags. Person 2 then takes a container out of the bags and dusts it off.,c020 0.50 5.60;c020 19.40 24.30;c022 19.50 24.80;c130 19.40 25.70;c009 19.20 25.70;c021 21.90 27.60;c011 0.00 32.00;c118 24.20 32.00;c026 11.50 18.00;c059 0.00 17.70;c119 18.00 25.10;c032 12.30 17.70;c106 2.20 9.30,30.96\r\nDJMZC,ZG1V,Bedroom,4,5,Yes,A person awakens in bed then they start watching a video play back on their camera.,bed;blanket;phone;pillow,\"A person is laying in bed, rubs their face and stretches, before sitting up and looking at their phone.;A person is lying down in bed.  The person then wakes up and checks their phone.\",c134 0.00 23.00;c133 6.20 14.20;c146 6.90 15.10;c015 12.20 23.00;c016 12.90 23.00;c018 11.80 17.30;c078 3.50 8.10,22.29\r\nCJELP,QB52,Recreation room / Man cave,6,7,Yes,A person sitting at a desk in a basement is laughing while turning on a light.,chair;desk;light;table,Person is sitting at a computer desk flashing a light against the wall;A person is sitting in a chair shining a light on a desk and looking around.,c011 0.00 32.00;c059 0.00 32.00;c152 1.80 32.00,30.54\r\nF5TL0,Z68L,Kitchen,6,7,Yes,\"A person is tidying the refrigerator, then dressing a salad and then having a cup of coffee in the kitchen.\",coffee;cup;food;glass;refrigerator,person opens frig takes food out fixing food picks up glass drinks sits it down,c106 17.10 24.20;c143 0.00 4.20;c109 22.70 29.50;c154 7.50 13.60;c110 17.10 21.90;c142 8.80 13.60;c061 26.30 32.00,31.25\r\n6Y0XA,ZAWX,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is sitting at a table, doing homework. The person smiles.\",books;chair;doorway;homework;paper;table,\"s person reading a couple of books and writing something;A person sits at a table and does homework while another person walks through the room, and the first person smiles.\",c145 0.00 29.90;c152 24.80 30.00;c059 0.00 30.00;c097 17.70 25.70,29.38\r\n4ZWLA,4I2W,Other,6,6,Yes,A person is walking with shoes while another person is sneezing on a vacuum.,clothes;crib;floor;shoes,\"2 people are pacing in a room, tidy it up a bit, one person sneezes.;Two people appear to be disoriented in a room used for storage.\",c001 5.50 17.80;c153 16.60 23.20;c127 5.50 15.80,29.17\r\nNSDFA,1OHU,Recreation room / Man cave,7,7,Yes,A person in their recreation room is running around with a box in their hand. They begin playing with their phone and then use it to take a picture of a bag lying on the ground.,box;phone;picture,A person is carrying a box around a room while holding a phone.  They put the box down and take a picture.,c015 0.00 36.00;c016 0.00 36.00;c040 0.00 29.00;c042 20.60 29.20;c087 25.70 36.00;c018 1.20 15.70,35.08\r\nNL7BY,WG9D,Recreation room / Man cave,5,6,Yes,\"A person is in a recreation room sitting doing homework, when they are finished they grasp a blanket and leave.\",blanket;book;chair;door;paper;towel,\"The person is sitting down looking through a book. The person puts the book away, stands up, picks up a blanket, and walks out of the room.;{}\",c070 0.00 8.80;c154 4.80 10.20;c025 2.70 8.40;c027 0.00 2.50;c032 0.00 6.60;c008 9.10 14.00;c116 3.10 9.70;c026 0.00 9.70;c059 0.00 9.80;c034 5.40 14.00;c033 6.20 14.00;c115 0.00 9.60;c035 6.00 14.00,13.50\r\nTSQBQ,KQI6,Living room,3,1,No,\"One person runs past a wardrobe pointing a camera, the other person smiles back.\",camera;door;phone,The person is holding a camera. The person walks towards a door and looks back while offering the camera to another person. The second person walks towards the first person and they exchange words.;A person is holding a phone and grapsing a doorknob while another person is trying to take a camera out of their hands.,c015 0.00 30.00;c152 20.90 30.00;c141 2.80 17.50,29.00\r\n5UUEP,2RTW,Living room,6,6,Yes,The person is in the man cave pouring some coffee into a mug while working on a picture.,coffee;cup;glass;paintbrush;painting;picture;pot;sofa/couch;table,There is a person sitting at a table.  That person pour some coffee into a cup.  That same person is painting a picture.;The video shows a person in a very cluttered room with a picture on the table.  The person pours some liquid from one container to another and then begins applying further brush strokes to the painting on the table.  The rest of the video is that person painting.,c011 0.00 33.00;c108 0.00 10.40;c014 2.00 33.00;c123 0.00 33.00,31.83\r\nQQG8X,2RTW,Living room,6,6,Yes,\"In person's man cave, the person is lying in a chair next to a toppled bottle of medicine that it appears failed to open. In person's drunken stupor person stands up leaving the medicine bottle intact while noticing the area is a complete mess. Person then attempts to get person's camera working so that person can document all of the damage done by person and person's friends at last night's party.\",camera;chair;phone;picture;sofa,A person is asleep at a chair  they then awaken get up and pick up a phone from the couch.;A person is a asleep in a chair wakes up and stumbles to a sofa and picks up a phone.The person proceeds to take pictures of the floor .,c015 24.90 33.00;c059 2.40 10.20;c146 0.00 6.00;c087 24.90 33.00;c018 15.40 33.00;c016 17.30 33.00;c154 7.20 12.50,31.67\r\nK2LY1,2RTW,Kitchen,6,6,Yes,\"A person is awakening from a nap. A person then walks through a doorway to the refrigerator, to find something to eat.\",bed;door;refrigerator,\"The person wakes up and then goes to their refrigerator, opens it, and looks around inside of it.;A person is sleeping on a small bed walks over to the refrigerator opens it and move some things around.\",c097 13.80 20.10;c143 16.50 23.30;c146 5.80 14.40;c154 9.90 15.60;c134 0.00 13.50,30.54\r\n4CAAH,HJJ4,Kitchen,7,7,Yes,\"Person gets yogurt from refrigerator then starts eating it, after done eating person puts dishes in sink and starts laughing.\",dishes;refrigerator;sink,\"There is a person in the kitchen,they open the door to the refridgerator and gets something to eat, then they walk over to the kitchen sink.\",,32.50\r\n3YC35,BYF9,Kitchen,4,7,Yes,\"A person is tidying the floor with a broom, then drinking from a glass and then turning a doorknob in the kitchen.\",broom;cup;dish;doorknob;floor;glass,\"A person picks up a broom that was sitting on the floor.   After cleaning the floor for a bit she picks up a drink from the counter, takes a sip, and puts it back down.   When finished with the broom it's put back on the floor and the door knob and locked are turned.;person took the broom from the floor and cleaned the floor, drank something in the glass, kept the broom on th efloor. and hold th edoorknob\",c127 0.80 17.40;c106 13.40 26.10;c107 14.60 26.40;c110 14.60 20.20;c099 27.40 32.70;c102 0.10 34.60;c141 28.70 36.00;c100 0.00 4.40;c098 0.00 32.50;c118 14.80 26.60,34.54\r\nDCFKL,9Y7F,Bathroom,6,5,Yes,A person is fixing the sink and another person is putting the sandwich down.,sink,The first person in the video is cleaning a sink in a bathroom. The second person is organizing a bedroom.,,30.83\r\nC1A2T,6RE8,Bedroom,5,7,Yes,\"A person opens the bedroom door, walks in, and takes a picture with their camera.\",camera;door;phone,A person walks into a room and begins walking around and taking pictures.,c015 10.70 20.30;c006 3.80 10.40;c008 0.00 7.90;c097 0.00 3.00,34.83\r\nZ9THH,YMXV,Bedroom,7,6,Yes,\"A person is seen tidying up the doorway. They look at a picture and then open a bag, putting it away.\",bag;bed;door;laptop;towel,\"A person is cleaning a wardrobe door with a towel. The person takes a backpack/bag from a bed and then throws it back onto the bed.;A person tidies a door with a towel.  They walk over to the bed and take a bag, walk over and look at their laptop, then put the bag on the bed again. They begin to walk towards the doorway.\",c020 17.60 26.30;c024 22.30 28.40;c033 0.00 19.70;c038 0.00 19.70;c023 16.80 23.00,31.29\r\nAM13K,5LWB,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,\"A person is standing in the entryway with their hand on the doorknob.  The person is holding their shoes in the other hand.  The person opens the door, smiles, and leaves.\",door;hand;shoe,A person is holding a pair of shoes while reaching out to the doorknob opens the door and walks into the entryway of the home. Another person is in the entry way smiling.,c008 3.80 16.00;c053 0.00 16.00;c141 0.00 8.70;c152 4.60 13.70,14.50\r\nTVBLW,PKND,Kitchen,6,5,Yes,\"A person stands in the pantry, eating a bag of chips. The person takes a paper towel from the shelf and cleans their hands.\",bottle;counter;food;hand;napkin;table,\"A person eats from a bottle at the table.;A person is standing at a counter taking some food out of a container and eating it.  They set the container down and put the lid on, then they wipe their mouth with a napkin and pick it up again.  They set the container down once more and wipe their mouth again.\",c061 0.00 33.00;c063 0.00 5.00;c156 11.00 19.00;c009 29.00 33.00;c062 17.20 22.20,32.46\r\n91T4S,KFGP,Bathroom,5,7,Yes,\"A person is sitting on the toilet while reading a book. The person places the book on a nearby table, stands, and leaves the room.\",book;table;toilet,\"A person is sitting on a toilet and reading a book, the person then closes and sets the book down on a small table then stands up and leaves.\",c009 15.70 21.20;c025 12.70 18.30;c026 0.00 15.80;c032 0.00 17.00;c154 17.90 23.30;c028 12.60 21.70,28.04\r\nMW2KW,8IOD,Dining room,5,6,Yes,A person is standing at table with some food while smiling at a laptop.,food;laptop;table,A person eats some food and types on their laptop. They smile and eat some more food;A person is  working on a laptop while eating while smiling.,c051 0.00 31.00;c061 0.00 31.00;c152 3.90 31.00;c156 0.00 31.00;c052 0.00 25.40;c014 0.00 25.50,30.29\r\nE6389,3VLX,Living room,6,7,Yes,\"A person holds their laptop. The person puts the laptop onto a shelf, then grasps their camera from nearby.\",camera;counter;doorway;laptop;phone;shelf;table,\"A person walks through a doorway while working on a laptop. They put the laptop on a shelf and pick up a camera from a table.;A person with a laptop walks through a room, then closes it and places it atop a shelf. They take a camera from a counter and look at it.\",c047 0.00 14.00;c015 14.00 29.00;c081 11.00 16.00;c097 0.00 7.00;c046 6.80 14.80;c049 9.80 18.30;c018 12.60 20.60,28.29\r\nJ5ZZQ,8718,Bedroom,5,6,Yes,\"A person wakes from bed and turns the light on by the doorway.  He then walks to the window and opens it, letting in the sun.\",bed;doorway;light;window,A person is turning the lights on in a dark room and tying up the curtain and bending over.,c104 12.30 16.50;c090 24.00 31.00,29.96\r\nIXJKT,DXDI,Hallway,4,7,Yes,\"A person dresses in a warm winter coat, picks up clothes and a towel from a chair, and runs out of the hallway.\",chair;clothes;jacket;towel,A person puts on a jacket and zips it closed. The person picks up towels and clothes from a nearby chair and runs out of the room.,c035 19.00 27.00;c002 19.40 27.00;c148 0.00 17.60;c150 21.70 26.80;c000 18.00 25.20,25.67\r\nH7Y0J,2RTW,Living room,6,6,Yes,A person awakens in a recreations room in front of a television while holding a broom.,broom;sofa;television,A person is lying down on the sofa with a broom.,c098 0.00 32.00;c132 18.70 32.00;c146 14.10 22.80;c122 0.00 21.00,30.58\r\nG41CL,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"The person walked into the rec room, shut the door and threw the cell phone on the bar.  The person then stood in front of the television and laughed at the show.\",door;phone/camera;table;television;tv,The person walks into the house before shutting the door. They then stand up while watching a TV;A person walks through a door and sets a remote down on the table and then watches tv.,c006 6.20 14.00;c149 13.70 31.00;c097 3.00 10.70;c131 13.70 31.00;c132 16.70 31.00;c009 10.50 16.20;c016 5.00 10.40;c017 10.50 16.20;c015 3.50 16.20;c152 13.40 31.00,30.42\r\nCTCO8,KQI6,Home Office / Study (A room in a house used for work),6,7,Yes,A person is playing on the laptop and another person is throwing clothes.,clothes;floor;laptop;towel,One person is watching a laptop and another person is throwing clothes at him in a home office.,c052 0.00 31.00;c003 17.50 23.60;c051 27.80 31.00;c126 27.80 31.00;c036 18.00 23.00;c036 22.70 27.00;c125 0.00 31.00;c033 3.10 22.30;c000 3.20 22.30;c000 22.40 26.70,29.75\r\nDSRSB,2RTW,Living room,6,6,Yes,A person is dressing in a wardrobe while holding a book while in the recreation room.,book;clothes;jacket,A person is reading a book and getting dressed. The person sneezes.;This person is reading a book while getting dressed.;Person putting on a jacket while attempting to read a book.,c001 0.00 22.70;c032 0.00 31.00;c148 0.00 22.50;c000 0.00 5.00;c026 0.00 31.00,30.42\r\nYINV4,BYF9,Home Office / Study (A room in a house used for work),7,7,Yes,A person is fixing a laptop and another person is throwing shoes in a bag.,bag;clothes;desk;laptop;shoe;table,Someone is throwing shoes into a bag. Another person is at a desk with their laptop.;person taking the shoes on by one and threw them in to a bag another person seeing the laptop on the desk,c054 0.60 10.50;c047 2.00 8.50;c014 5.30 15.00;c053 0.00 14.00;c058 0.00 14.00;c052 0.00 17.00;c056 0.00 14.00;c003 0.00 4.40;c003 3.30 8.20;c003 4.70 10.70,15.75\r\nUBYBQ,LWUV,Laundry room,6,5,Yes,A person throws a blanket on top of the dryer and takes a bite of food. The person opens the dryer and throws the blanket inside.,bag;blanket;clothes;doorway;food,A person is holding a blanket and a bag of chips then they throw the blanket and begin to eat. The person puts the blanket in the washer and walks out the door.,c070 0.00 8.90;c071 2.40 9.00;c156 5.50 28.60;c061 0.00 32.00;c001 0.00 4.30;c097 22.30 29.10;c020 0.00 32.00;c002 14.00 20.10;c000 0.00 3.90,30.62\r\nDJ7DG,LTAC,Kitchen,5,4,Yes,\"In the kitchen, a person is sitting down by the door. They stand up and start carefully leaving some dishes in the sink, and then walk toward a table.\",doorway;floor,\"A person sits on the floor in a doorway.  They stand up and walk out of the room.;A person sits on the floor and looks around, then stands up and walks through a hall and doorway.\",c154 11.70 18.00;c125 0.00 14.60,30.75\r\n8BG1T,Z68L,Recreation room / Man cave,7,7,Yes,A person sitting on the sofa drinking a beer and watching television.  The person laughs really hard at the television and uses a towel to wipe their forehead.,cup;sofa;television;towel,The person walks to the sofa and sits down. They drink out of a glass and laugh at the television. The person wipes their face with a towel.,c123 7.30 46.00;c106 7.60 43.70;c131 15.50 29.80;c151 7.10 17.30;c149 16.20 24.50;c151 4.60 11.10;c154 36.90 43.40;c033 38.10 46.00,45.46\r\nA4VK8,WG9D,Living room,4,7,Yes,A person is sitting on a couch snuggled up in a blanket talking on their phone. They hang up and take a sip of coffee and start eating.,blanket;coffee;cup;dish;food;phone;sandwich;sofa;table;towel;water,\"A person is sitting on a couch with a blanket around them talking on the phone. They put the phone down, drink from a cup, and grab a plate of food and start eating. Another person walks through the hallway in the background.;A person is sitting wrapped in a towel. A person is playing with their phone. A person then drinks a glass of water. A person then eats a sandwich.\",c017 5.10 9.90;c110 5.90 10.70;c156 14.30 19.00;c118 12.30 16.70;c065 14.30 19.00;c015 0.00 8.90;c019 0.00 6.20;c109 11.30 16.70;c070 0.00 14.90;c106 6.50 15.30;c069 11.90 19.00;c123 0.00 19.00;c009 9.00 16.00;c152 0.00 5.20;c072 0.00 19.00;c063 12.50 19.00,18.00\r\n8NGDR,2RTW,Living room,6,6,Yes,A person awakening from a nap on a sofa while holding a pillow walks over to the remote control.  Grasping the remote control the person turns on the television and starts watching a television program.,couch;pillow;sofa;television;tv,a person lays on the couch then gets up and holds a pillow and turns on the tv,c122 0.00 19.90;c123 15.70 26.10;c078 17.40 44.00;c146 11.60 20.10;c151 29.20 34.70;c154 21.30 26.30;c079 15.70 22.90;c132 32.00 44.00;c076 17.60 44.00,43.04\r\nRJN35,2RTW,Other,6,6,Yes,\"The person was throwing clothes on the floor, because he couldn't throw them over to the bed.\",bed;chair;clothes;desk;laptop;pillow;sofa;television,\"A person is folding up clothes.;person taking the clothes one by one From the sofa and folding them, and throwing them aside;A person picked up clothes off a couch and threw them toward a bed, but they landed on the floor.\",c004 0.00 35.00;c002 0.00 5.80;c003 7.90 34.10,34.17\r\nEQO9N,9Y7F,Bedroom,5,7,Yes,One person grasping a laptop watches from the door as another person is undressing with a pile of clothes nearby. Then the first person leaves.,chair;clothes;doorway;laptop;shirt,\"Person A is holding a laptop while Person B is putting clothes on a chair. Person B then begins to undress.;One person is undressing, while another person is playing on a laptop.\",c047 0.00 20.10;c155 3.00 32.00;c001 0.00 8.50;c002 20.10 28.00;c000 21.50 26.60;c097 10.50 17.20,30.92\r\nWSLMS,D0RU,Hallway,7,7,Yes,A person takes off shoes in a hallway while then leaving a glass on the floor next to the shoes.,can;cup;dish;doorway;floor;glass;shoe,\"The person walks out the room while drinking. When done, the person puts down the glass and takes off shoes\",c057 12.40 23.30;c106 5.40 15.20;c107 4.60 22.20;c109 16.40 24.90;c118 6.40 25.80;c097 6.10 11.50,30.62\r\nWUL5P,L4ZP,Kitchen,6,6,Yes,\"After opening the door to a doorway, a person heads over to the sink and starts lying on their back. Next, the person begins opening the cabinet and fixing the leaky faucet.\",door;floor;sink,A person is walking through the door then lays down on the floor and fixes the sink.,c008 0.00 6.00;c097 0.60 8.50;c124 21.00 33.00;c151 10.00 15.30,32.33\r\nI30LP,L4ZP,Kitchen,6,6,Yes,The person is sitting in the dining room chair while laughing at the television.,chair;laptop;table;television,\"A person is sitting at the table using a laptop and laughing.;someone sitting in front of a laptop, watching and laughing.;A person is sitting on a chair in front of a round table laughing at something on the laptop.\",c059 0.00 33.00;c131 0.00 6.90;c149 0.00 6.90;c051 0.00 33.00;c011 0.00 33.00,32.33\r\nRUOOY,L4ZP,Kitchen,6,6,Yes,The person is walking into the dining room to take a picture with their phone near the mirror.,mirror;phone;picture,The person walks into the room holding their phone. They then take a picture of themselves while holding another picture.;A person walks into a kitchen holding a mirror and a phone. They put the mirror on the counter. They look in the mirror then take a picture with their phone.,c016 12.20 28.80;c086 2.30 14.80;c087 13.10 19.80;c015 0.00 31.00,30.42\r\n0UFI4,WQ8Z,Living room,7,7,Yes,A person stands by an open window. The person sits and puts on a pair of shoes.,clothes;couch;shoe;sofa;window,A person walks towards the window and looks out of it and then walks towards a couch and sits down to tie their shoes.;Person walks to the window look out sit on the sofa put on shoes and get up.,c092 0.60 14.20;c154 40.30 48.00;c151 12.80 21.30;c123 12.80 47.10;c055 13.00 47.80;c000 14.90 33.30;c148 16.30 48.00,46.96\r\nED0VL,P6LJ,Pantry,5,4,Yes,\"One person puts homework and a small towel in a bag, then closes it.\",bag;book;closet/cabinet;door;towel;trash,The person put a towel and some books from the closet into a bag. The person then closed the bag and shut the door.;A person is walking to the trash and putting trash in a bag then closes door behind her.,c020 0.00 39.70;c021 3.70 10.00;c022 7.00 23.30;c023 0.00 3.80;c112 32.70 40.00;c114 4.60 21.70;c035 6.60 14.50;c097 1.50 34.80,39.00\r\nSX07Q,P6LJ,Pantry,4,4,Yes,The person is opening a box and pulls out a blanket. They then look in the mirror while holding the blanket close to them.,blanket;box;pantry,\"A person walks across the kitchen and pulls a blanket out of a box in the pantry, then walks across the floor and puts the blanket down.\",c044 16.60 24.00;c071 43.10 49.00;c043 4.80 15.80;c070 22.90 49.00;c073 21.90 31.70;c040 3.60 25.70;c041 5.50 24.20,48.25\r\n38ZFZ,T7C3,Kitchen,7,7,Yes,\"A person is in a kitchen sitting on a chair, grasping a book they use for homework they start flipping the pages.\",book;chair;homework,A person sits on a chair in the kitchen in front of some cabinets and near the stove.  The person is flipping through a thick book and looking at it.,c025 21.60 26.00;c026 0.00 26.00;c027 0.00 3.70;c032 0.00 26.00;c059 0.00 26.00;c115 0.00 26.00,24.54\r\nAAW5D,5LWB,Home Office / Study (A room in a house used for work),7,7,Yes,A person is sitting at the desk in the study.  The person opens a drawer and pulls out a mirror.  The person looks in the mirror then throws it back in the drawer and closes it.,chair;desk;mirror;paper/notebook;phone/camera;table,A person is sitting in a chair and messing around with stuff on a desk. They take their mirror out of the drawer and look at it.,c011 0.00 22.00;c093 8.40 20.00;c096 9.50 19.40;c017 15.70 20.20;c015 8.50 20.00;c117 0.00 2.70;c016 9.10 19.70;c059 0.00 22.00;c018 4.60 13.20;c014 0.00 10.00;c012 0.00 8.70;c145 0.00 7.00;c115 0.00 4.00;c009 0.00 4.10,21.38\r\nGXEJB,QB52,Bedroom,5,6,Yes,A person is playing on the phone while snuggling in bed.,bed;blanket;phone,A person is using their phone while they are laying in bed.,c134 0.00 31.00;c015 0.00 31.00;c016 0.00 31.00;c072 0.00 31.00,30.04\r\nVK0OU,Z68L,Bathroom,6,7,Yes,A person walks into the room holding a bottle of medicine.  The person pours a teaspoon of medicine and drinks it.  The person puts the medicine on the counter and picks up a pile of homework.,doorway;homework;medicine;paper/notebook;shower;table,A person walk into a bathroom holding a medicine bottle. The person opens the medicine and begins to pour some onto a spoon and drink the medicine. The person then places the medicine bottle into a shower. The person picks up some homework and begins reading.,c129 8.30 14.60;c097 0.00 3.00;c128 0.00 18.60;c117 18.90 24.10,32.12\r\nPABBK,M80J,Recreation room / Man cave,3,6,Yes,A person grabs a blanket and medicine. Then sits down and eats something.,bed;blanket;food;medicine;posters;something,\"A person enters a bedroom that is decorated with posters. After the person grabs a blanket, they sit on the bed and start eating from a bag.;A person grabs a blanket and medicine and sits down on the bed. They take the medicine then begin to eat food.\",c073 2.10 10.00;c156 17.40 31.00;c135 5.70 31.00;c128 7.00 18.10;c151 5.10 12.20;c063 17.30 31.00;c129 6.70 21.00,29.58\r\nXKPLB,KFGP,Bathroom,6,7,Yes,Person puts dishes in sink then starts running while leaving bathroom.,dish;door;sink,People enters the room put dishes on the sink and then quickly open the door and go out of it.,c118 1.00 20.40;c119 5.10 20.60;c150 18.10 23.20;c008 0.30 5.20;c097 1.50 6.50,22.83\r\nMYGJA,3H6W,Pantry,7,7,Yes,A person smiles as the grasp and turn the doorknob to open the pantry door. The person then places a blanket inside.,blanket;closet;clothes;door;towel,A person carried a towel to a closet.  The person then put away the towel into the cabinet.;a person is lying on a bed while another person comes in and puts a blanket  in the closet.,c008 5.70 11.60;c141 5.30 11.80;c071 9.10 15.00;c113 5.80 11.80;c033 1.20 14.50;c075 8.60 17.60;c001 8.60 17.90;c112 11.80 18.30;c114 11.40 18.30;c070 1.30 14.40;c006 11.50 18.00;c001 1.20 14.30,21.33\r\nFU5AP,KFGP,Living room,1,1,No,A person is putting on a wardrobe and then walking to go put on her shoes,clothes;shoe;wardrobe,Person puts on a sweater and then a jacket and puts them on in order.  Person then puts on shoes and walks away.;A man is dressing in warm clothes and then he puts on a pair of shoes and leaves.,c055 20.20 34.00;c148 0.00 21.30,34.42\r\nQC4R2,T7C3,Stairs,6,6,Yes,\"A person is standing in the hallway, holding a pair of shoes and a picture.  The same person then puts the picture on the floor and starts laughing.\",floor;picture;shoe,\"A person is standing at the bottom of some stairs holding a pair of shoes and looking at something, they put the thing down on the floor and begin laughing at it.\",c126 8.90 21.90;c149 16.60 29.80;c053 0.00 34.00;c086 12.10 18.60;c084 0.00 18.60,33.08\r\nSFIWO,KQI6,Living room,4,5,Yes,One person lies on a small sofa snuggling under a blanket. Another person enters and takes a pair of shoes from the hall.,blanket;chair;shoe;sofa,\"A WOMAN IS LYING DOWN ON A SOFA WHILE A MAN PASSES BY AND PICKS UP A PAIR OF SHOES, SITS DOWN TO PUT THEM ON\",c122 0.00 30.00;c055 24.00 30.00;c072 0.00 30.00;c151 22.90 28.60;c070 0.00 30.00;c059 22.50 30.00,29.46\r\nDYYLD,4OHY,Bedroom,5,6,Yes,A person is standing in their garage grasping a doorknob. The pull the door closed and walk to the window. they begin fixing the broken window lock.,door;window,A person is playing with a doorknob then closing a door and fixing a window.,c006 3.50 15.20;c141 0.00 19.40;c089 20.10 31.00;c008 0.00 19.10;c092 19.70 31.00;c090 19.80 31.00,29.58\r\nZUHRU,1OHU,Bathroom,5,6,Yes,\"One person runs into the bathroom with homework while another is tidying the area, putting items in a box.\",box;doorway;floor;homework;paper,A person is putting things away in a vox and another person comes in holding a binder then reading the contents of the binder.,c040 0.00 30.50;c115 16.60 32.00;c097 16.90 22.00;c127 0.00 5.10;c127 6.00 11.50,31.12\r\nIA7X9,UTMU,Hallway,4,7,Yes,A person is standing while putting shoes on.  Then a person is opening a laptop and walking down the hallway looking at the screen.,doorknob;doorway;laptop;shoe,\"A person comes through a doorway carrying a laptop, puts on shoes, opens the laptop and leaves.;Person in the hall with a laptop in hand put on some shoes open up the laptop then walk away.\",c047 0.00 26.00;c048 11.30 21.10;c051 10.90 24.10;c055 7.70 19.50;c141 0.00 4.00;c097 0.50 5.50;c052 15.80 25.50,25.25\r\nQTOJX,JVLO,Living room,2,5,Yes,A person is watching television and laughing. They take out their phone to check a message.,chair;phone;television;tv,\"A person is sitting in a chair watching television. They get up and pick up their phone.;a person laughs while sitting and watching tv, then they grab their phone\",c015 27.00 36.00;c149 2.20 15.00;c018 26.50 31.70;c132 0.00 25.10;c154 22.50 27.90;c059 0.00 26.10,34.71\r\nC1QDS,9Y7F,Kitchen,6,6,Yes,A person is pouring coffee while another person is running a sandwich to them.,coffee;cup;dish;glasses;sandwich,A person is pouring something back in forth in cups. Another person comes in talking to the first person that was in there.;Person is pouring coffee back and forth from one cup to the other while another person laughs at him also holding a sandwich.,c067 8.30 18.70;c107 0.00 4.30;c149 8.40 13.20;c108 0.00 12.10;c118 0.00 32.00,30.58\r\nF1OMV,4I61,Laundry room,5,4,Yes,\"One person grasping a cup of coffee closes a wardrobe, then leaves the laundry room.\",closet/cabinet;coffee;cup;door;glass;light;shelf,The person walks into a room while holding a cup and then proceeds to cut out the light in the room and close the door. then walks away.;A person is drinking coffee and turning off a light.,c106 0.90 8.00;c105 8.20 15.20;c006 9.70 17.20;c097 0.60 6.30;c112 10.10 16.90;c141 10.80 16.00;c107 0.00 15.90;c081 4.30 10.80,18.88\r\n3HVKR,C7O9,Dining room,6,6,Yes,One person walks in with a glass and smiles at another person who is eating from a sack of groceries.,bottle;box;chair;food;groceries;table,\"{};Person taking groceries out of paper bag on table, opening packages and eating from them.\",,27.79\r\nL0RDL,HR43,Bathroom,5,7,Yes,A person in the bathroom is washing a glass in the sink. There is a bag lying on a chair in the bathroom.,bag;chair;cup;glass;sink,\"A person washes a glass in a sink, and uses his free hand to push a bag on the chair out of the way.\",c111 0.00 32.00,30.83\r\n01KML,P3TI,Hallway,7,7,Yes,A person is laughing while using the vacuum cleaner in the hallway.  Then the person begins watching their laptop intently.,floor;laptop;vacuum,A  laughing person tidies a hallway with a vacuum.  They pick up a laptop and look at it while holding it.,c050 18.10 26.80;c051 22.00 35.00;c137 0.00 22.10;c149 2.40 21.40;c047 20.50 35.00;c127 0.00 22.90,33.67\r\nT8V10,Z68L,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person standing in the middle of an office begins undressing, leaving the discarded garments on the pillow of a couch. They pick up a cup, drinking deeply from it, and then take it and dirty dishes with them as they leave room.\",clothes;coffee;cup;dish;glass;sweater,\"A person is standing behind a desk taking off their sweater, then they take a drink from a cup, then grab a second cup and leave the room with both.;a person takes off a sweater and drinks some coffee from a table then grabs a glass and leaves\",c118 20.30 33.00;c106 12.20 25.40;c110 10.20 18.90;c120 22.40 29.70;c107 12.80 24.30;c155 4.00 14.40,32.46\r\n3HOJR,6RE8,Home Office / Study (A room in a house used for work),6,5,Yes,A person is holding food but it is too hot to hold.  Then a person is leaving with a bottle of medicine.,book;box;dish;food;glass;medicine,A person is flipping through a book vigorously. They then check their watch and realize it is time to go. They pick up their lunch and leave the room.,c061 16.20 26.10;c154 12.50 20.50;c043 24.30 35.00;c027 0.00 4.70;c120 12.50 27.30,33.67\r\n08XNM,JVLO,Living room,7,7,Yes,One person is standing by the television while the other is drinking by the door.,cup;doorway;glass;television;water,Someone is standing watching the tv. Someone else is standing in a doorway drinking something.;A person is standing watching television. Another person is standing in an open doorway drinking a glass of water.,c132 1.90 19.90;c106 18.50 27.40;c106 25.20 32.40,32.46\r\nMHTRY,ZSRZ,Hallway,6,7,Yes,A person is taking clothes and a towel through the hallway while watching their phone.,clothes;door;floor;phone;towel,A person is opening a door then picking up a pile of clothes that were on the floor and they are smiling.;A person opens a door and walks in to a hall.The person proceeds to bend over and pick up cloths off the floor .The person continues on down the hall with clothes in their arms.,c000 3.40 9.00;c035 2.40 9.00;c016 3.60 9.00;c127 1.50 7.50;c002 2.60 7.30;c015 0.30 9.00;c008 0.00 4.90;c152 0.00 9.00;c097 0.60 6.10,8.46\r\nYYKZ9,DJ17,Bedroom,6,6,Yes,A person is dressing in clothes while another person is playing with a pillow.,bed;clothes;pillow,Person puts on clothes while watching television with a person sitting behind the person with a pillow;Person puts a jacket on while another plays with a pillow sitting on the bed.,c076 0.00 34.20;c135 0.00 35.00;c148 0.00 27.80,34.33\r\n7POUA,FNK4,Living room,6,7,Yes,A person is snuggling with a book in a living room then starts playing with a mirror.,blanket;book;hair;mirror;sofa,A person is lying on a couch with a blanket covering them and they are reading a book. They snuggle with the blanket.;A person is sitting in a chair snuggling a blanket while reading a book. A person then begins to fix their hair in a mirror.,c026 0.00 19.70;c032 0.00 19.20;c093 15.20 32.00;c096 14.90 32.00;c072 0.00 32.00;c122 0.00 32.00;c144 21.60 32.00;c123 0.00 32.00;c028 12.70 19.20,31.00\r\n2XLVN,D0RU,Bathroom,5,3,Yes,Person A is in the bathroom.  Person opens the medicine cabinet and takes out a container of pills and a box of cotton balls.  Person puts on bandage and dresses a wound on forearm.,box;medicine;toilet,A person picks up a box off of a shelf in the bathroom. They open the box and set it down on the toilet. They pick out some medicine out of the box and rub it on their elbow.,c040 5.70 28.00;c041 6.70 14.50;c042 21.50 28.80;c128 5.70 37.00,38.46\r\n2RU6J,5LWB,Bedroom,4,7,No,a person lies a towel on the ground while talking on the phone. another person stands holding groceries.,bag;floor;groceries;phone,Person A is talking on the phone while Person B is standing holding a bag andthen Person A lays down on the floor.;The person walking around is talking on the phone and the other person is looking at the wall holding a bag.,c015 0.00 25.00;c019 0.40 25.00;c020 0.00 25.00;c124 16.70 25.00,24.42\r\nQZP8N,R1OT,Bathroom,5,7,Yes,A person opens the bathroom door and smiles when they look in the mirror.  The person picks up a bag of groceries and stands there looking inside until they find and pull out a book.,bag;book;door;groceries;mirror,\"The person walks into the bathroom and stares into the mirror. The person then picks up a bag of groceries, and picks up a book from a shelf to examine it.\",c032 21.20 30.00;c020 9.50 30.00;c096 0.30 12.00;c026 20.30 30.00;c097 0.00 4.50;c152 2.80 10.70;c030 19.90 25.20;c094 3.10 10.30;c023 9.00 16.20,28.96\r\nNRYS3,6RE8,Bathroom,6,7,Yes,A person is seen looking in the mirror fixing their hair. They then sit down and attempt to fix a laptop.,doorway;hair;laptop;mirror;table,\"A person combs hair in a mirror, then turns off light and uses laptop\",c144 0.60 17.60;c052 23.40 34.00;c014 24.40 34.00;c011 24.40 34.00;c097 17.10 25.50;c151 22.80 28.90;c096 1.10 16.00;c059 24.60 34.00,32.58\r\nX1KKZ,P6LJ,Living room,6,7,Yes,\"A person throws a pillow onto the sofa, then runs to the window. The person begins watching something out the window.\",curtains;pillow;sofa;something;window,{},c092 13.30 40.60;c076 0.00 13.70;c080 8.70 15.20;c150 0.00 17.70;c090 13.30 18.80,41.88\r\nNBMZ0,6RE8,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is sitting at a table grasping a medicine bottle.  After standing up from the chair, the person pours a pill out of the bottle into their open hand.\",chair;desk;glass;hand;laptop;medicine,\"A person is sitting at a desk and takes out some medicine and holds onto it.;A person is sitting at a desk looking at a laptop screen, then stands and grabs a container full of snacks to dispense some into their other hand.  The person then stands around idly for several moments before inspecting the snacks in their hand.\",c128 4.10 33.00;c128 5.80 10.80;c059 0.00 7.60;c154 2.80 8.60,31.92\r\n7P0JX,ZAWX,Bathroom,4,4,No,\"A person runs into the room and turns on the light.  The person grabs some medicine off the table and pours some into a measuring spoon.  The person drinks the medicine and walks out of the room, closing the door behind them.\",cup/glass/bottle;dish;door;light;medicine;spoon,\"A person turns on a light, opens some medicine and pours it on a spoon. They take the medicine, put it down and leave as they close the door.\",c006 29.30 35.00;c104 4.10 11.00;c128 9.60 20.60;c129 23.70 29.70;c109 26.90 32.50;c118 9.20 30.90;c119 26.60 33.00;c108 12.00 26.70;c107 10.30 32.00,34.00\r\nXIG01,C7O9,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is smiling and eating a sandwich while another person is closing a medicine bottle.,food;sandwich,The person is holding a sandwich and eats some of it. The person speaks to a child standing by them. The person is holding something and appears to try to open it.,c065 1.40 10.60;c067 0.00 5.40;c156 1.40 10.60;c061 0.00 30.00,29.25\r\n7HQLV,UEYI,Kitchen,5,1,No,A person is standing by the stove holding a cup of coffee. The person sets it on the table and begins unpacking their groceries.,bag;coffee;cup;mug;stove,\"A person is holding coffee, they pick up a bag.;A person standing at their stove drinks some coffee from a mug.\",c106 0.00 14.00;c020 17.70 35.00;c023 16.50 27.60;c107 0.00 14.00;c022 28.20 34.90,34.25\r\n7DODT,KFGP,Kitchen,6,7,Yes,A person is seen washing the stove. The person then reaches into a bag to pull out some cleanser and begins to watch outside of a window.,bag;cup/glass/bottle;stove;window,The person cleaned the stove with a towel.  The person then moved onto the windows with cleaning supplies.,c021 15.70 26.30;c107 17.10 30.00;c020 16.00 32.00,30.71\r\n1ERM9,KFGP,Bathroom,5,7,Yes,A person is in the bathroom washing their hands.  The person finishes and takes a camera out of a box on the back of the toilet.  The person takes a picture of themselves.,box;camera;hand;picture,A person is washing their hands in a sink . They then take a camera from a box and take a picture of them self.,c139 0.00 6.70;c039 10.60 19.00;c041 9.30 17.40;c044 10.00 18.50;c087 16.20 25.60;c018 13.90 20.20;c015 14.30 31.00,29.58\r\n9VKVA,0RNU,Garage,7,7,Yes,A person closes a bag then stands up with laptop before leaving.,bag;laptop,\"Person stooping digging in bag on ground, zips bag, picks up laptop and walks out garage with laptop.\",c021 0.10 10.40;c047 24.70 33.00;c050 22.20 29.10;c154 25.20 30.70,31.75\r\n106AY,JVLO,Hallway,6,6,Yes,Person is turning light on and putting shoes on. Another person is drinking and eating food.,bag;box;chair;cup/glass/bottle;doorway;floor;food;light;shoe;water,\"This person walks inside, flips a switch, picks up some shoes, then another person sits down and eats and drinks something.;A person walks into a room, grabs their shoes. Then another person sits down, drinks water and eats food.\",c053 9.90 21.20;c104 1.10 9.10;c156 29.10 35.00;c106 19.60 32.60;c054 10.90 20.60;c061 28.50 35.00;c151 17.90 23.60;c059 19.40 35.00;c062 30.20 35.00;c127 10.30 20.70;c042 15.00 20.20;c110 17.70 25.50;c097 0.00 7.80;c063 27.80 35.00;c107 19.30 31.40;c020 28.80 35.00;c109 23.70 32.80;c057 9.20 16.10;c021 29.00 35.00,34.00\r\n3EIRZ,0KZ7,Laundry room,5,6,Yes,A person turns on a light while eating a sandwich.  They then begin tidying up the room.,clothes;dishwasher;doorway;floor;food;sandwich;skirt,This person goes into the laundry room while eating foot and kicks around some laundry that is on the floor.;A person walks through the door while eating a sandwich. They kick a pile of clothes on the ground around.,c065 0.20 10.20;c067 0.00 27.00;c156 0.20 10.20;c004 3.70 11.30;c097 0.00 7.30;c127 14.50 20.40;c001 4.60 9.50,26.25\r\nOBO40,BYF9,Bathroom,4,7,Yes,A person sneezes while washing a blanket in the sink. Another person opens an app on his phone.,phone;sink;towel,Someone is in a bathroom using their phone. Another is at the sink with a towel and they sneeze.;Two people are in a bathroom. One person is standing near a toilet while looking at their smartphone while the other person is standing at a sink and washing their face.,c015 0.00 18.00;c016 0.00 18.00;c153 3.00 9.00,17.08\r\nJ8KPE,F56T,Kitchen,6,5,Yes,A person turns on the light going in to the kitchen.  They are seen taking some food from a shelf and start cooking.,cabinet;food;light;packet;shelf,\"A person walks over to a cabinet and takes out a bag of food.;Person turns on light, enters room , takes packet out of cupboard,closes cabinet and starts working on something on shelf just out of view of camera\",c063 7.90 18.90;c112 12.10 17.90;c147 15.70 41.00,39.67\r\nESM8H,YA10,Laundry room,6,7,Yes,One person walks in laughing and throws a pair of shoes and a dirty blanket into the laundry room.,blanket;clothes;shoe;towel,\"A person walks into the laundry room and throws his shoes, clothes, and a blanket on the ground. The person then laughs and walks out.\",c003 15.10 20.80;c058 16.80 22.00;c074 15.10 20.80;c149 7.30 28.00;c152 9.70 27.50;c000 7.90 20.50;c036 16.50 20.50;c033 7.30 20.80,30.00\r\nRO9RP,8718,Kitchen,7,7,Yes,\"A person is pouring something in a glass, then throwing it on a table.\",cup;glass;refrigerator;table;water,A person opens a refrigerator and pours a pitcher of water into a glass they are holding. Then they walk away and put the glass on a table.;A person is walking through a kitchen holding a glass the go to the fridge open it and take some water out and pour it into the glass. Then they walk over to a desk and sit the glass on the desk.,c108 5.00 15.10;c142 11.40 18.10;c107 8.30 25.80;c109 20.50 27.10;c009 20.50 27.10;c143 0.00 6.70;c012 24.60 30.00,29.17\r\nV1TET,0KZ7,Living room,5,7,Yes,Person is sitting on chair. Another Person is playing with towel.,blanket;chair;clothes;towel,\"A person folds a towel into different shapes and tosses it into the air, and wraps it around their arm or leg. A second person sits on a chair.\",c059 0.00 29.00;c033 0.00 29.00;c070 0.00 25.50;c070 22.20 26.90;c152 0.00 4.30;c036 21.10 28.20;c074 21.20 28.80;c003 21.20 29.00,28.42\r\nH8XPL,WG9D,Kitchen,5,6,Yes,A person in their recreation room is eating some food while drinking some coffee. They are playing with a book and seem pretty uninterested in the actual contents of the book.,broom,A person laughs and the grabs a broom.;A person standing with hands crossed jerks back and grabs a broom and walks off.,c100 1.40 7.00,5.88\r\n0WV3L,WQ8Z,Kitchen,1,6,Yes,\"A person is cooking food on the stove. The person opens a cabinet, takes out a bag of coffee, and closes the cabinet.\",bag;cabinet;food;stove,A person is cooking on a stove then opening a cabinet and taking a bag out.,c113 20.50 32.40;c147 0.00 21.70;c062 25.50 36.00;c063 23.40 36.00;c112 27.30 35.40,37.04\r\nCWUDQ,6RE8,Home Office / Study (A room in a house used for work),5,7,Yes,A person opens the door of the study and undresses in front of the television.,clothes;door;television,\"A person uses a door to enter a room, then removes their shirt while watching television.;A person opens a door and enter the room to look at a television while undressing out of clothes that are thrown to the side.\",c008 28.00 31.00;c006 5.90 11.60;c155 12.00 19.40;c155 15.50 24.10;c000 14.50 23.00;c001 16.70 23.00;c003 15.80 23.00;c097 0.60 10.10,30.46\r\nRGY38,CO1W,Bathroom,5,6,Yes,A person standing in front of a sink throws medicine before leaving out the door.,cup;door;medicine;mirror,A person is standing at a sink looking into a mirror. The person then picks up a bottle of medicine and looks at it. Then the person puts the bottle down and walks out of the room.;A person is looking at themselves in the mirror and then pick up a bottle of medicine and look at it. They throw the medication and walk out of the bathroom.,c128 9.30 25.00;c008 22.60 28.50;c096 0.00 7.20;c109 21.00 25.70;c097 24.30 30.10,30.33\r\nBSFVT,UTMU,Home Office / Study (A room in a house used for work),2,7,Yes,\"One person at a desk closes a laptop, then holds up a stack of homework.\",book;chair;desk;homework;laptop;paper;table,A person is at a desk and decides to close a laptop then hold up homework papers for viewing.;A person sitting in a chair at a desk closes a laptop then picks up homework from the desk and looks at it.,c046 0.00 5.40;c115 11.80 35.00;c009 1.70 6.50;c059 0.00 6.40;c117 4.10 10.20;c011 0.00 35.00;c030 11.40 16.80;c032 3.50 35.00;c014 0.00 35.00;c145 6.40 35.00;c027 8.10 13.80;c026 11.80 35.00,33.58\r\nA52N5,KQI6,Living room,6,7,Yes,A person in a garage is awakens on a sofa. The person opens a book and starts their doing homework.,blanket;book;homework;paper;pen;sofa,\"A person is lying on a sofa, covered in a blanket. The person then takes off the blanket, sits up, and reaches for the homework. The person then writes in the homework book.;A person is sleeping on a sofa, then wakes up and writes in a notebook\",c145 13.80 32.00;c027 13.10 20.60;c122 9.50 13.60;c123 13.10 32.00;c146 1.10 9.10;c071 3.70 12.20;c117 11.80 17.80;c072 0.00 8.10;c026 13.10 32.00;c074 3.60 14.90;c030 12.40 32.00;c115 12.40 32.00,31.00\r\nEL3N9,Z68L,Recreation room / Man cave,7,7,Yes,A person in their recreation room is seen opening groceries.  They leave the room and put the groceries away in the refrigerator and are seen closing the door.,bag;chair;door;groceries;refrigerator,\"A person walks in holding a bag of groceries and sits in a chair. The person looks in the bag and and then gets up out of the chair. The person walks to the refrigerator and placed the groceries inside of it.;person sat on the chair holding some groceries, opened the cover of groceries, reached near the refrigerator , opened the door and kept groceries into it.\",c142 30.30 36.10;c130 22.00 35.20;c143 19.30 26.00;c059 2.50 9.40;c020 2.00 19.90;c151 2.70 8.70;c022 22.90 33.10,36.08\r\nT5MLJ,HR43,Kitchen,6,7,Yes,The person is grasping their laptop near the stove with a devious expression on their face. They are glaring at the content of an unknown webpage and then start laughing out of uncontrollable rage.,cabinet;laptop;stove,The person is standing in the kitchen. The person is twitching and seemingly having some kind of fit while they hold a laptop.;A person in a kitchen holding a laptop is sneezing.,c047 0.00 34.00;c051 0.00 34.00;c149 24.60 33.70,33.46\r\nS7PLQ,JVLO,Garage,6,7,Yes,\"There is an old sofa in the garage, as well as a refrigerator.  The person closes the refrigerator door, walks over to the sofa and sits down.\",door;refrigerator;sofa,\"A person walks to the refrigerator, opens the door, closes it, then sits on a couch.\",c123 20.60 33.00;c142 14.30 19.30;c143 10.30 18.00;c151 19.00 27.00;c152 20.30 33.00,31.96\r\nYXP9P,UTMU,Stairs,7,7,Yes,\"A person pretends to start sneezing while sitting on some stairs. The person then grabs a tissue from a box of Kleenex, and wipes it on their wardrobe that they're wearing.\",box;floor;towel;wardrobe,A person squeezed and then picked out a kleenex out of a box and washed her wardrobe off with the kleenex,c153 0.00 6.40;c044 3.20 7.90;c125 0.00 35.00;c038 4.90 34.50,33.67\r\n9HTQ1,LTAC,Living room,7,3,Yes,\"A person sneezes into a pillow, A person tidies up a desk.\",desk;pillow;sofa;table;towel,\"A person sneezes while holding a pillow on a sofa. They then put the pillow down, stand up, and walk to a table that they begin to clean with a towel.;A person is holding a pillow and sneezing, then he gets up, picks up a towel and starts cleaning a table\",c076 0.00 19.20;c153 0.00 20.50;c012 18.90 32.00;c154 17.40 22.80;c123 0.00 13.20;c077 14.00 22.20,30.96\r\n1KOZ4,ZEM0,Bathroom,6,7,Yes,\"A person dresses in front of a mirror, then leaves a camera on a sink.\",camera;clothes;mirror;sink,Person putting on a shirt and looking  in the mirror before checking the laptop.,c094 20.30 32.90;c148 1.50 20.60,43.25\r\n0F0WE,KFGP,Hallway,4,7,Yes,\"A person is running down the hallway closing doors, then kissing a picture and finally does homework in a hallway.\",book;door;homework;paper;picture,\"The person runs down the hall checking doors and shutting them along the way. The person finishes with the door at the end of the hall, runs back to the middle of the hall, takes the picture off of the wall and kisses it. After this, the person squats against a wall and starts to read a notebook found on the floor.\",c006 6.50 13.90;c145 20.40 34.00;c150 1.30 10.40;c151 16.40 29.80;c026 19.70 30.90;c027 19.40 25.90;c030 17.90 24.60;c141 2.80 8.70;c083 12.70 21.40;c032 21.60 34.00,33.42\r\nS2XJW,Z68L,Living room,7,6,Yes,\"A person is opening a bag of food. The person sits, and grasps a nearby cup of coffee.\",bag;coffee;cup;food;glass;sofa;table,\"Person walks into the living room with food and sits on the sofa, before standing back up and leaving.;A person walks over to a couch and sits down, then starts eating some food. The person takes a drink from a cup then gets up and walks away.\",c106 10.30 20.60;c151 3.10 11.50;c154 0.00 6.10;c156 6.00 14.30;c123 5.30 13.20;c063 8.70 16.10;c009 18.60 23.60;c011 7.20 32.50;c023 0.40 4.90;c020 0.00 35.00;c021 4.80 9.80;c061 8.70 16.30,33.96\r\nNMC3H,5LWB,Kitchen,6,7,Yes,\"A person is undressing in front of a mirror, while another person is walking into the room to take a picture.\",camera;clothes;mirror;phone;picture;shirt,\"A person is undressing in the kitchen. They look in the mirror and stretch. Another person begins taking pictures with a camera.;This person takes off there shirt, flexes in the mirror, while another person takes photos.\",c094 6.40 11.60;c155 0.00 8.30;c015 11.70 17.80;c087 14.20 18.60;c096 0.00 14.40;c152 7.80 14.70;c001 4.70 9.30,22.92\r\n1P97N,0RNU,Garage,7,6,Yes,\"A person takes a book from on top of a television and opens it. The person stands there, reading.\",book;television,A person is holding a book. A person begins reading a book.,c026 0.00 32.00;c027 0.50 32.00;c030 0.30 5.30;c030 0.00 32.00;c032 3.60 32.00,30.92\r\nUZMMO,B64K,Bedroom,7,7,Yes,\"After tidying the bed, the person sat down to read a book.\",bed;blanket;book,A person makes a bed and puts pillows on the bed. The person takes a book from a table and sits on the bed to read it.,c135 20.90 37.00;c027 20.90 31.60;c026 17.20 37.00;c032 22.50 37.00;c075 0.50 15.60;c030 17.40 25.10,36.25\r\nBRJ0H,EIO2,Pantry,7,7,Yes,\"A person walks into the pantry, holding a dish. The person puts some food on their dish and walks out, closing the door behind them.\",dish;door;food,A person is walking through a doorway and making themselves in the kitchen a plate of food.,c141 29.00 36.00;c061 25.30 36.00;c118 25.60 36.00;c120 2.70 9.20;c097 0.00 5.00;c063 2.40 36.00;c062 5.00 21.50,35.12\r\nG9I7C,YMXV,Bedroom,6,6,Yes,A person is lying on a bed next to a window while sneezing and snuggling into a blanket.,bed;blanket;clothes;window,A person is lying in the bed. The person then gets up and wraps a blanket around them.,c134 0.00 18.80;c133 9.60 16.90;c154 12.10 20.60;c148 15.80 33.00;c070 13.90 32.30;c073 13.40 19.50;c135 11.60 17.60;c146 8.60 19.50,32.04\r\nXB2NM,3VLX,Garage,3,5,Yes,A person walks into the garage and closes the door. A person watches a desks and sits on the floor.,door;floor,A person is walking in through a door then sitting on the floor.,c125 16.10 25.00;c151 14.70 21.30;c097 0.50 5.60;c008 0.00 2.70,23.92\r\nHQGEJ,YA10,Laundry room,7,7,Yes,A person is opening a laptop and standing by a doorknob.,doorknob;laptop,person standing in front of washer holding a laptop opens and closes it,,32.79\r\n1L7XE,HJJ4,Kitchen,3,7,Yes,A person is smiling while opening a cabinet and grabbing a bag of food.,bag;cabinet;food,A person opens a cabinet and removes a bag of food. They close the cabinet and leave.,c063 0.80 8.90;c020 2.10 10.80;c112 4.50 10.10;c152 1.90 11.20;c113 0.20 4.90,10.54\r\nUZDEE,XXN8,Kitchen,7,4,Yes,\"A person is walking to the refrigerator. Then, standing and smiling, the person begins throwing fruit from the refrigerator onto their desk.\",desk;food;fruits;refrigerator;table,The person opens up a refridgerator to take out fruits that is palced on a desk.,c143 0.00 7.50;c009 7.80 13.10;c152 0.00 6.30;c063 2.00 24.20;c062 7.60 23.60,30.21\r\nHIO3X,Z68L,Bathroom,6,7,Yes,\"A person is seen sitting down tieing their shoes. They start pouring water in the sink and wash their hands, then walk through the doorway.\",cup/glass/bottle;hand;mirror;shoes;sink;towel;water,\"Person walks into the restroom and sits on the toilet. Then proceeds to wash their hands and dry them on a towel;A person sits on the toilet, and ties their shoes. Then pours out water, washes and dries their hands.\",c139 34.60 48.20;c151 2.50 9.50;c154 26.00 31.60;c038 46.00 53.20;c096 43.40 49.00;c035 46.30 54.00;c110 29.50 35.90,53.29\r\nWCKTP,PKND,Bedroom,6,7,Yes,One person stands by a cabinet and puts a camera inside while another person sits at the table.,bed;cabinet;closet;man;shelf;shelves,Person  is sitting down while Person B is standing bu the closet and tidying up.;A man putting something on a shelf and a woman sitting and watching.,c114 0.00 33.00;c082 0.40 9.00;c135 6.70 16.90;c081 3.00 9.50,32.00\r\nFYJJT,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,4,Yes,A person fixing a chair while another person is watching a box.,box;chair;floor;window,Person bends down picks up chair then walks chair to window and straightened it. Then person points at another person looking at and touching box. Other person looks at person.;A person picks up a chair and puts it by the window carefully. A second person sitting on the floor opens a box that is empty.,c040 20.50 26.90;c041 22.70 29.40;c154 0.00 5.00;c125 20.70 35.00,33.83\r\nUMXKN,PKND,Laundry room,5,7,Yes,\"A person is in a laundry room standing reading a book, they then put a bed sheet in the machine and start washing it.\",book;clothes;floor;shelf,A person is standing in the laundry room reading a book. They put the book down and put the clothes in the hamper.,c001 12.20 22.30;c032 0.00 9.90;c126 17.50 22.60;c003 17.50 22.60;c082 13.00 20.70;c002 9.00 17.00;c004 14.10 20.30;c026 4.10 32.00;c027 1.50 15.40;c025 15.20 20.70,31.46\r\nBNH5C,KFGP,Hallway,6,6,Yes,A person is sitting in a chair eating some food. The person spills some of the food onto their clothes. They stand up out of the chair to look at the mess they have made on themselves.,chair;clothes;dish;food,\"A person is sitting in a hallway eating out of a bowl. The person gets up, places the bowl down on the chair, and cleans himself off.\",c059 0.00 26.00;c156 0.00 26.00;c154 21.80 29.20;c118 0.00 28.80,32.17\r\nVOAAZ,3H6W,Laundry room,6,6,Yes,A person is seen pouring water from the sink. They begin dressing by taking clothes out of their bag. They then start watching something on their phone.,bag;clothes;phone;sink;tap;water,\"Person in the kitchen open the tap and he puts water in the plastic glass, pour down the water in the sink. Then he picks up his bag and take his jacket, wears his jacket and checks his phone\",c022 23.70 33.20;c000 30.40 37.60;c002 27.40 33.20;c021 26.90 34.10;c023 26.70 33.70;c148 27.20 40.30;c015 38.80 49.00;c016 37.80 50.00,49.42\r\nCO3LU,9PLL,Kitchen,6,6,No,\"A person is standing in front of the sink holding a sandwich.  The person eats the sandwich, then throws it in the garbage and turns off the light.\",food;garbage can;light;sandwich,\"A person is standing and eating a sandwich. The person turns and throws the sandwich in the garbage can, then walks over to the light switch and turns off the light.\",c065 0.00 33.50;c067 0.00 33.50;c068 26.30 33.70;c104 31.50 38.00;c156 0.00 30.90;c105 32.40 38.00;c062 28.20 33.10;c061 0.00 32.60,37.00\r\nES7QT,EIO2,Other,6,6,Yes,A person is sitting on a pillow and sneezing while playing with a picture at a table.,floor;paper/notebook;picture;pillow;table,A person is sitting on a pillow and looking at a picture on a table,c084 0.00 24.40;c088 0.60 24.40;c115 0.00 23.40;c125 0.00 32.00,30.67\r\n3FX0M,WG9D,Kitchen,2,7,Yes,A person is holding a plate in the sink as they wash it. They open a cabinet and insert the plate inside.,cabinet;dishes;shelf;sink,A man washing a dish and put it away in the cupboard.,c113 4.20 9.00;c081 4.00 9.00,7.71\r\nRCA3E,ZAWX,Bathroom,7,7,Yes,\"A person in the bathroom is taking a picture with their camera. In the other hand, they are grasping a bag with nothing in it, and after they are done, they are washing their hands in the sink.\",camera;hand;phone;sink,\"A person is standing in a bathroom and takes a video of something, another person walks in takes that person out and they go to wash their hands in a sink.\",c015 0.00 19.90;c139 23.40 31.00,29.88\r\nYM5CV,DXDI,Stairs,6,7,Yes,\"A person sits on the stairs, playing with their camera. The person smiles as they put the camera onto a desk.\",camera;phone;table,\"A person is sitting on stairs, holding a camera, then they get up and put the camera on a table;A person is sitting on the stairs playing with a camera they get up and put the camera on a table\",c015 0.00 23.70;c154 15.40 21.20;c009 18.90 24.80;c016 0.00 20.00,23.75\r\n1L220,D0RU,Pantry,6,6,Yes,A person is smiliing as they are walking in the doorway then they begin to eat as they use their phone.,doorway;food;phone,A person walks to a door and looks at their phone while standing in the doorway.,c016 32.60 110.70;c156 73.40 129.00;c063 89.00 97.80;c061 71.40 78.70;c061 89.00 101.80;c015 18.40 129.00;c097 43.50 56.30,135.75\r\nPKNT2,2RTW,Living room,6,6,Yes,\"A person sits in his chair, working on a report. They put the book down and turn on the television, smiling immediately.\",book;chair;desk;laptop;remote;table;television;tv,A person walks to their desk with a book in their hands and takes a seat. They go on their laptop and type and then place he book on the laptop. Then they turn and grab a remote to turn the tv on.,c026 0.00 22.40;c028 16.30 22.40;c059 0.00 40.00;c132 19.20 40.00;c151 0.00 4.50;c009 16.50 23.80;c115 0.00 6.70;c052 3.10 19.30,38.88\r\nDQFF2,YMXV,Other,5,5,Yes,A person is holding a bag. The person opens a window and throws the bag outside.,bag;window,A man has a bag and then he opens his window and puts the bag out the window.,c090 7.10 13.70;c020 4.60 19.30;c022 16.20 32.00,30.75\r\n5XKVP,HJJ4,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is sitting at the desk. In front of them are a blanket, shoes, and a book. They get up and begin throwing objects into the corner of the room.\",blanket;book;chair;clothes;desk;shelf;shoe;table,\"A person is sitting in a chair at a desk, they then stand up, grab some shoes from the desk, and throw the shoes.;A person is sitting on a chair. They stand an grab a blanket and shoes, and a book and throw them off camera.\",c074 4.00 9.00;c031 8.10 14.00;c012 3.10 13.90;c154 1.50 7.60;c059 0.00 6.30;c058 5.70 11.50;c030 7.50 14.00;c002 2.60 8.90;c056 5.10 12.00;c003 2.60 8.90,13.00\r\nSVEWD,DXDI,Bedroom,6,7,Yes,\"A person is in their bedroom working on their homework. The person grabs a laptop, sneezes, and leaves.\",bed;chair;desk;doorway;homework;laptop;paper;table,\"The person is sitting at a desk looking at papers. The person stands up from the desk and walks to the bed, picks up a laptop from the bed and walks out of the room;A person in a bedroom, sitting at a desk and doing homework gets up and picks up a laptop off a bed then walks out the door.\",c145 0.00 6.00;c047 17.20 23.50;c154 14.20 21.30;c011 0.00 7.90;c014 0.30 13.00;c153 19.60 25.80;c050 17.60 23.80;c097 22.00 29.20;c059 0.00 17.50,28.58\r\nZK05Q,L4ZP,Other,7,6,Yes,One person takes a book from a bathroom shelf and opens it.,book;doorway;shelf,\"A person walks in a room and opens a closet, taking out a book. They begin looking through the book.\",c030 6.20 15.00;c027 12.30 17.20;c032 12.40 30.00;c097 1.70 6.40,29.38\r\nE546V,L4ZP,Bathroom,4,7,Yes,\"A person is playing with a light switch, then the person starts laughing and walks out the door.\",light,A person turns a light on and off a bunch of times.,c104 0.00 22.40,22.17\r\nWVTVK,DXDI,Bathroom,5,7,Yes,\"A person is lying on the floor, snuggling with a broom next to the sink.\",broom;floor,A person is lying on the floor holding a broom.,c098 0.00 25.00;c124 0.00 25.00,23.67\r\n09KVK,T7C3,Kitchen,6,6,Yes,A person is walking and grasping a towel and then using a broom in a pantry.,broom;floor,The person is sweeping the floor with a broom;A person is using a broom to clean the floor.,c102 0.00 28.00;c127 0.00 28.00,27.21\r\nEZ7X3,9PLL,Stairs,6,7,Yes,A person is running up the stairs carrying a box. The person leaves the box on the top step.,box;stairs,Man going upstairs carrying a plastic container and leaving it on top of the stairs then going back down again.,c040 0.00 13.90;c042 7.70 13.70,31.62\r\nTX122,UTMU,Bedroom,6,7,Yes,A person awakens in their bedroom under a blanket. They watch television while drinking coffee.,bed;blanket;coffee;cup;dog;television,\"This person is laying in bed with 2 dogs, wakes up, and drinks from a cup.;Person is awakening in bed then turns tv on and starts drinking coffee.\",c106 17.10 37.00;c107 17.20 37.00;c146 2.50 11.50;c134 0.00 7.60;c133 2.50 11.50,35.92\r\nO8BH6,T7C3,Bathroom,7,7,Yes,A person is sitting in their bathroom on the floor watching a video on their phone. They move from sitting to lying down on the floor while putting their feet up against the door.,door;floor;phone,\"The person is sitting on the floor in the bathroom. The person is holding a cellphone and laughing at it. The person then lays down and props his feet on the door.;This person is sitting in the bathroom playing on there phone, then lays down and puts there feet on the door.\",c124 13.10 31.00;c125 0.00 20.30;c015 0.00 31.00;c149 5.20 12.80,30.42\r\nH51V5,4OHY,Kitchen,7,7,Yes,A person is opening a jar of something and putting it on a sandwich. They laugh and then put the food on a table.,apple;dish;food;glass;table,\"A person is taking food from a glass while laughing they put it on a plate. They then place a plate of food on a table.;A person is taking some food out of a glass and put it on a plate, they then laugh and set the food on a table and walk away.\",c061 10.80 21.80;c062 16.60 23.50;c009 16.60 23.50;c149 6.40 15.00;c119 16.50 23.10;c120 11.10 18.00;c063 1.50 8.50;c118 0.00 21.50,28.75\r\n2E8GU,5LWB,Stairs,7,7,Yes,A person is smiling and undressing while holding a broom by the desk.,broom;clothes;desk;floor;shirt;table,A person sweeps the floor with a broom.The person the places the broom on a desk. The person then begins taking off a shirt.;A person is sweeping with a broom and taking off clothes,c098 0.00 7.20;c102 1.80 8.70;c009 2.40 8.00;c155 5.70 22.40;c155 19.40 23.00;c000 18.20 23.00,22.38\r\nVQN81,3531,Stairs,6,7,Yes,A person is holding their shoes and sneezing on their food.,bowl;food;shoe,A person fixes the laces on the pair of shoes in their hand. The person also pokes at what is probably a bowl of food next to them.,c053 0.00 32.00;c153 8.60 14.70,31.25\r\nE184J,1OHU,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,\"The person ate food and drank coffee while the person worked, grasping the mug tightly in their left hand and their fork in the right.\",coffee;cup;dish;fork;phone,\"A person holding a cup of coffee  talks on a phone, then picks up a fork from the stairs.;A person is talking on the phone while holding a fork in one hand a coffee mug on the other. They are walking around in circles.\",c107 2.70 32.00;c015 0.00 32.00;c019 0.00 32.00;c118 0.00 32.00,31.04\r\n3AHLN,UO0Z,Hallway,7,7,Yes,\"A person is standing in the dining room and inspecting an overhead light. They stop, and take a drink of water from a glass.\",chair;cup;glass;light;stepladder;table;water,A person goes up a step ladder and adjusts a light. They come down and take a drink from a cup.,c103 6.70 13.00;c106 11.20 24.00;c009 11.00 15.50;c060 4.10 14.00,22.62\r\n00NN7,ZAWX,Pantry,5,7,Yes,A person puts some groceries away onto the shelf. The person begins playing with their laptop and closes the door.,bag;chair;char;closet/cabinet;door;groceries;laptop;shelf;table,\"Person entering the house with some groceries, put it in the shelf, sat in the chair and operated Laptop and finally closes the door;A person puts something onto a shelf, sits down in a chair, and plays on a laptop, then someone shuts a door\",c006 21.00 30.10;c020 0.00 9.70;c130 3.50 10.10;c052 14.00 24.40;c059 13.30 26.40;c097 0.00 6.40;c112 6.60 12.90;c014 14.90 23.90;c151 10.70 18.90,30.62\r\nWDY1G,ID9V,Bathroom,5,7,Yes,\"A person is washing their shoes in a sink, while holding a towel at the same time.\",hand;mirror;sink;towel,A person washes their hands and then cleans the sink while holding a towel.,c033 0.00 28.00;c139 0.00 14.00;c096 0.00 28.00;c038 0.00 28.00,26.96\r\nQYE21,2T2M,Home Office / Study (A room in a house used for work),5,7,Yes,A person is fixing their vacuum and notice it has become chilly so they stand and close the window.,vacuum;window,A person is trying to fix a vacuum cleaner.  They get up and close the window to the room they're in.,c089 21.90 30.70;c136 0.00 24.10;c154 18.00 25.10,30.00\r\nHX22J,HR43,Living room,3,6,Yes,A person is tidying the shelf. The person looks into a mirror and leaves.,bookend;dvds;mirror;shelf,\"The person walks to a shelf and straightens up the DVDs on the shelf, using a bookend. The person turns around and looks in a mirror and walks away.\",c082 0.40 22.50;c096 17.50 26.00,25.25\r\nIUBYO,WG9D,Bedroom,4,7,Yes,A person in the bedroom is snuggling with clothes and taking a broom off the bed.,bed;blanket;broom;clothes,Person is doing something with their sweater while sitting on the bed. They move the broom from off the bed and onto the floor.,c000 0.00 7.00;c098 1.80 7.00;c099 1.90 7.00;c100 2.00 6.40;c101 2.00 7.00;c070 0.00 7.00;c135 0.00 7.00,5.96\r\nGGAN0,BYF9,Dining room,7,7,Yes,A person sneezes before putting a box on the floor. Another person carries a bag and puts it on the table.,bag;box;floor;groceries;table,\"A person walks into the kitchen, sneezes and drops a box. Another person walks in and places a bag on the table.\",c022 18.40 24.00;c009 18.40 24.00;c153 7.70 13.20;c130 15.30 24.00;c020 15.80 24.00,22.75\r\nMMTED,DBGJ,Living room,6,7,Yes,A person is lying on a sofa with their head on a pillow.  The person suddenly sneezes and then lifts up their head to look out a window.,pillow;sofa;window,\"The person is sleeping on a sofa, then starts to stir.  The person, with some effort, manages to sit up and look out the window.\",c122 0.00 15.70;c092 12.70 23.00;c153 7.30 14.40,22.08\r\nLPT4A,XXN8,Dining room,5,5,Yes,One person is sitting working at a table when another person walks through holding groceries.,bag;chair;groceries;laptop;table,Some person was drinking and playing with the laptop.  Suddenly another person started dancing around the other person with groceries.  The other person was nonplussed.,c020 0.00 32.00;c011 0.00 32.00;c023 0.00 5.50;c051 0.00 32.00;c059 0.00 32.00,31.17\r\nSFHHR,KQI6,Living room,2,2,Yes,\"A person is sitting in a chair watching television and holding a cup of coffee.  The person puts the coffee on the table, then picks up a picture and looks at it.\",chair;coffee;cup;dish;glass;laptop;table;television,\"This person is sitting at a chair, watching television. The person picks up a glass of coffee and drinks it, and then sets the glass down.\",c009 21.50 28.00;c106 8.50 25.00;c059 0.00 32.00;c132 0.00 32.00;c120 9.10 28.10;c118 10.40 27.70;c052 0.00 32.00;c119 21.90 28.10,31.25\r\nTNEEH,BYF9,Bedroom,6,6,Yes,\"A person is sitting on a towel in the doorway fixing the doorknob.  The person gets up and walks to the bedside table and takes a drink from a glass of water, then leaves the room.\",cup;door;floor;glass;hammer;screwdriver;tool;towel;water,\"A person sitting on a towel on the kitchen floor uses a hammer and screwdriver to fix a door. The person puts the tools on the floor and walks over to the kitchen sink, grabs a glass of water and walks out of the room.;A person is sitting on a towel in an open doorway, working on the door with a tool. The person then gets up, walks over to a windowsill, picks up a tool, and leaves the room.\",c097 24.80 29.00;c140 0.00 14.10;c107 20.80 29.00;c110 20.80 25.50;c154 16.30 20.30;c007 0.00 15.00;c125 0.00 19.10,28.42\r\nADK5J,3H6W,Closet / Walk-in closet / Spear closet,7,7,Yes,A person smiles as they play with their camera. The person puts the camera onto the shelf.,camera;phone;shelf,\"A person i walking towards a closet smiling looking at their camera, they then put their camera on a shelf and walk away.\",c015 4.70 19.10;c081 15.20 20.80;c152 5.40 17.60;c017 14.70 20.60;c087 7.10 17.40;c016 4.60 18.10,23.75\r\nQNVMD,DLI2,Kitchen,7,7,Yes,A person is watching the stove and throwing the pillow in a bag.,bag;pillow;stove,\"A person in the kitchen looks at the stove, then puts a pillow into a grocery bag.\",c077 10.80 26.10;c076 7.40 37.00;c023 8.50 37.00;c020 8.70 37.00,35.58\r\nF0ZPW,UTMU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person holding a blanket eating a candy bar begins drinking from a glass and then washing a vacuum.,blanket;clothes;cup;dish;floor;food;glass;towel;vacuum,\"A person is sitting on the floor eating while holding a blanket. A person then drinks water, and then begins to clean an item.\",c070 0.00 40.00;c106 22.60 33.10;c107 20.20 32.50;c109 24.80 33.50;c110 19.40 30.10;c156 2.70 26.20;c125 0.00 40.00;c033 0.00 40.00;c000 0.00 40.00;c063 0.00 12.20;c038 28.50 40.00;c119 25.60 30.30;c061 0.40 27.00;c120 23.40 31.30;c062 19.60 25.80;c118 23.40 30.70,39.29\r\n6B7HM,UD06,Living room,6,6,Yes,\"A person is in a living room opening a box, afterwards they call someone on their phone and start smiling.\",box;phone;photos;sofa,\"A person is sitting on a sofa opening a box, they then grab a phone and make a phone call before walking away.;The person opens a box and starts looking at photos. The person then answers their phone and gets up from the couch.\",c123 0.00 28.90;c154 25.40 31.20;c019 24.00 31.20;c041 0.00 23.00;c152 24.90 30.00;c018 20.40 24.90,31.08\r\nA2Z46,UD06,Living room,6,6,Yes,A person awakens on the couch.  They tidy up by putting the books on the desk.,blanket;book;sofa;table,\"A person is seen sleeping on a couch with a book, they then close the book and place it on a table and begin tidying up the couch.\",c025 8.50 21.30;c122 0.00 21.60;c146 0.00 12.50;c154 16.60 29.50;c009 24.90 35.00;c074 27.10 33.30;c028 25.40 31.20;c026 0.00 31.10;c030 19.30 26.70;c071 29.10 33.90,33.75\r\nM7Y6V,YMXV,Home Office / Study (A room in a house used for work),6,7,Yes,A person eating food is watching something outside the window.,bag;box;chair;food;window,The person stood up while holding some type of food.  The person was eating the food that was in hand while looking out of the window.  The person continued to peak in and out of the window while eating the food.,c061 1.70 33.00;c092 5.30 31.60;c156 20.90 33.00;c154 0.00 4.40;c063 1.30 7.10;c059 0.00 3.80;c040 1.50 33.00;c044 4.40 9.50;c041 3.40 8.70;c020 3.10 33.00;c023 2.00 6.80,31.79\r\nV5XKZ,D0RU,Stairs,7,7,Yes,\"One person is standing on the stairs, talking on the phone and holding a bag of groceries.\",bag;groceries;phone,\"A person is standing on stairs, holding a bag of groceries while talking on a phone.\",c020 0.00 33.00;c015 0.00 33.00;c019 0.00 32.70,31.58\r\nTSYR3,HJJ4,Living room,6,7,Yes,A person is tidying the cabinet.  Then the person is standing with a broom to start sweeping.,broom;cabinet;floor,\"A person opens a cabinet and straightens up inside. After they close the cabinet, they pick up a broom and begin to sweep.\",c112 13.40 20.50;c113 0.00 11.10;c114 0.90 17.80;c098 16.10 28.00;c100 16.20 24.10;c102 16.00 28.00;c127 16.90 28.00,26.71\r\n6JGXL,QB52,Home Office / Study (A room in a house used for work),5,6,Yes,A person opening a bottle of medicine in the basement is seen leaving their homework on a table.,chair;computer;desk;laptop;medicine;table,\"A person is sitting at a desk typing on a laptop.  They pick up a bottle of medicine, open it, pour some out and walk away.;A person is sitting at a computer at a desk and working on it, they then take some medicine and leave.\",c154 16.30 22.30;c011 0.00 20.70;c014 0.00 20.90;c129 13.00 20.90;c059 0.00 20.70;c128 9.50 21.20,28.75\r\n7R4YS,YMXV,Bedroom,5,6,Yes,A person is running to the door.  A person is holding a bag.,bag;door,Person adjust clothes runs out the door in a hurry with backpack then comes back in the door.;A person is running in a room. They put on a bag and leave.,c022 2.20 10.10;c150 6.00 27.60;c152 0.00 8.50;c020 2.50 32.00;c023 6.00 11.20;c021 3.50 9.20;c097 8.10 14.00,31.12\r\nSY1JE,DXDI,Recreation room / Man cave,4,7,Yes,A person sets down a cup of coffee next to a picture.  They walk over and grasp the doorknob and open the door to leave the room.,cabinet;coffee;cup;door;shelf;table,A person sets a cup of coffee onto a a cabinet and then twists a doorknob to open a door.;A person is carrying a cup and places it on a shelf. The person walks out of the room through a doorway.,c008 8.50 17.20;c141 8.60 16.90;c106 2.20 10.80;c107 2.20 10.90;c109 2.10 11.20;c097 10.50 17.20;c009 5.10 10.40,17.12\r\nGMMVC,5LWB,Living room,6,6,Yes,A person is snuggling in a chair with a blanket.  Another person is closing a book and running to the door.,blanket;book;door;sofa/couch,\"A person sits on the couch, wrapped up in a blanket and watching a television. A second person is sitting on the couch with a book on their lap. The second person throws the book down on the couch and jumps up from the couch, walking to a door and entering it.\",c025 13.00 19.00;c026 0.00 16.00;c025 10.60 16.40;c028 11.70 17.50;c032 0.00 15.70;c072 0.00 19.00;c154 12.70 17.60;c116 11.20 17.40;c150 13.30 19.00;c071 0.00 6.30;c097 14.90 19.00;c008 14.80 19.00;c070 0.00 19.00;c123 0.00 19.00,17.83\r\nP4FXX,T7C3,Kitchen,4,7,Yes,A person is eating food while tidying the pantry with a broom. Then they close the door and turn off the light.,broom;door;floor;food;light;sandwich,A person in a kitchen is sweeping and snacking on food.,c105 26.20 34.30;c062 5.70 14.70;c156 5.70 15.80;c098 0.00 34.50;c102 0.00 24.10;c061 4.50 10.30;c063 3.40 8.60;c097 22.00 27.30;c069 3.00 8.60;c067 3.70 10.60;c127 0.00 7.40;c065 4.50 9.70,35.83\r\nVU7P7,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"One person runs in wearing a towel, grasps a book from a small table and sits down on a nearby sofa.\",book;doorway;sofa;table;towel,A person wearing a towel sits in a chair with a book.,c026 6.20 18.00;c123 8.40 18.00;c151 10.40 16.20;c115 5.40 18.00;c030 4.80 13.10;c029 2.80 8.30;c097 1.60 6.50,17.33\r\n3Z1YC,C7O9,Hallway,6,6,Yes,One person runs in with a broom and a bag and sneezes as another person tidies up the room with a vacuum.,bag;broom;floor;vacuum,A person is vacuuming then another person walks in holding a broom and a bag.,c020 15.30 28.80;c098 14.80 29.20;c137 0.00 32.00;c150 14.80 27.40;c127 0.00 32.00;c023 17.50 22.90,31.08\r\nOPJG1,KFGP,Entryway (A hall that is generally located at the entrance of a house),3,5,Yes,The person plays on a phone and then throws on  a pair of shoes.,phone;shoe,A person is standing by the doorway playing with a phone. A person then puts on their shoes.,c015 0.00 17.50;c016 0.00 17.50;c017 12.60 18.10;c055 15.50 31.40,30.58\r\nE0ZBC,2RTW,Living room,6,6,Yes,\"A person pours a cup of coffee from a thermos. The person picks up a book, and leaves the room.\",book;coffee;cup;sofa/couch;table,A person is pouring coffee into a cup.,c108 8.10 28.70;c154 36.80 42.20;c123 0.00 40.60;c011 0.00 40.80;c026 34.10 44.60;c107 0.00 34.30;c030 31.40 38.10,44.83\r\nUQPO0,P6LJ,Kitchen,6,6,Yes,\"A person walks to the shelf and grasps at a tool they are looking for. After not finding it, they sit in a nearby chair and look out the window.\",chair;closet/cabinet;shelf,\"someone walks over to a shelf and starts looking for something, then sits down in a chair\",c059 39.00 49.30;c082 6.60 32.40;c151 43.00 49.80;c114 7.60 34.20,50.29\r\nJTXUA,P6LJ,Living room,6,6,Yes,Person opens the door. Person closes a window. Person sits on the sofa. Person notices light bulb is out. Person fixes light bulb,couch;door;light;sofa;window,\"A person opens and closes a door, then walks over to the window, opens it and looks out.  Then the person sits on a couch, stands up and goes to inspect a light.;A person opens a door and grasps the doorknob. They then go and look out the window, before fixing a light and then sitting down on a sofa.\",c092 16.40 29.70;c090 15.80 25.20;c123 27.60 37.00;c006 5.30 13.30;c103 33.60 54.20;c154 32.70 37.60;c141 2.00 12.70;c151 28.50 33.90;c008 1.70 8.80,56.42\r\n785X2,P6LJ,Living room,6,6,Yes,\"A person awakened and ate some medicine off of the desk. A person watched the laptop, then closed it.\",bottle;box;chair;desk;laptop;medicine;pills;table,\"A person walks over to a chair and sits down, laying their head on the desk.  Then the person takes a bottle of medicine, opens it and takes some.  They then close a laptop.;A person is sitting down on a chair and laying their head down on a desk, they then awaken and take some medine and close a laptop.\",c129 24.00 39.70;c046 39.20 55.00;c151 1.30 8.50;c128 24.00 35.10;c011 3.20 52.70;c146 20.50 30.70;c154 47.90 54.10;c039 43.80 51.90;c059 3.20 53.00,54.21\r\nTF0KM,Z68L,Bedroom,7,7,Yes,A person is undressing near the window while watching themselves in a mirror.,bed;clothes;mirror;shirt;shoe;table,A person is sitting on a bed and fixing their shoes while looking in a mirror.  A person takes off their coat.;A person is sitting on a bed  and looking at themselves in a mirror while taking off their shoes and clothes.,c094 10.40 22.30;c151 0.00 2.50;c135 0.00 32.00;c155 13.50 26.30;c057 2.50 10.40;c011 0.00 29.60;c096 0.00 22.40;c001 24.20 30.00;c154 27.90 32.00,30.92\r\nGTK8W,JVLO,Living room,6,7,Yes,A person is closing a book they were just done reading then eating food while sittiing down.,bag;book;chair;food;magazine;window,\"A person is looking at a magazine in a chair.  The person gets up and takes a bag out of the window and sits back down in the chair.;There is a person sitting in a chair looking at a book.  That same person gets up, walks over to the window and picks up a bag of food.  That person then goes and sits back down.\",c061 25.50 32.10;c063 23.30 30.70;c026 0.00 26.00;c032 0.00 21.70;c154 18.50 26.00;c023 30.80 36.60;c059 32.60 38.00;c062 30.90 38.00;c025 18.80 25.10;c027 31.30 36.40;c151 32.40 38.00;c092 23.50 29.20;c115 0.00 28.60;c156 26.80 32.70,37.17\r\nJ3SQC,1OHU,Kitchen,6,7,Yes,A person is playing on their phone in their kitchen sitting on a pillow and a blanket on their lap. They sneeze and continue playing.,blanket;phone,A person is holding a blanket while looking at their phone they then begin to sneeze.,c070 0.00 28.00;c015 0.00 28.00;c016 0.00 28.00;c153 7.20 12.90;c152 0.00 2.90,26.88\r\n5Q3QB,0RNU,Garage,7,7,Yes,A person with a towel wrapped around their head is standing holding shoes while opening and closing the door.,closet/cabinet;door;shoe;towel,A person with a towel on their head holds a pair of shoes opens and closes a door multiple times.,c006 7.10 12.30;c008 5.00 10.90;c141 5.10 9.30;c053 0.00 37.00;c113 4.40 11.60;c113 9.90 17.00;c113 13.70 20.40,35.58\r\nS1XW9,JVLO,Bedroom,5,6,Yes,\"One person walks through the doorway, works on homework in a chair, then leaves, closing the doorknob.\",book;chair;door;homework;paper,\"A kid picks up his book, sits on a chair, puts his book on an opposite chair and begins writing in the book. Then, he closes the book, stands, walks out of the room and closes the door.\",c097 0.00 3.20;c145 5.20 27.90;c154 23.70 29.40;c141 25.90 34.00;c059 3.30 28.20;c151 2.20 8.70;c006 25.90 33.90;c025 22.70 29.20;c030 0.00 4.70;c027 4.30 8.80,33.38\r\nFKFU3,T7C3,Stairs,6,7,Yes,A person is grasping a book while smiling out the window,book;window,\"A person is standing on some stairs looking out a window and holding a book, they are smiling.\",c092 0.00 2.80;c026 0.00 3.00;c152 0.00 4.70,31.92\r\nL8FFR,0RNU,Garage,5,1,No,\"A person is undressing in their garage. They put a towel on a shelf, and leave.\",bag;blanket;chair;clothes;floor;lamp;lap;things;towel,\"A person is fixing a lamp on the floor, they then take a blanket from a chair and walk away.;This person is fixing a lamp on the floor, then gets up, picks up things, and leaves.\",c035 21.50 31.10;c154 22.60 29.10;c073 21.50 31.10;c127 0.00 25.50;c000 22.60 32.00;c023 24.50 31.80;c002 26.70 32.00,31.25\r\n99UA6,UTMU,Laundry room,5,5,Yes,Person was pouring laundry detergent into the washing machine. There was one last load of clothes that needed washing. Person closed the door of the washer and began tidying up the rest of the laundry room. Person turned off the light and headed upstairs.,clothes;door;light;sheets;shelf;washing machine,The person is putting sheets in the laundry machine. The person then puts soap in and starts the washing machine. The person turns off the light and leaves and closes a door.,c006 50.00 60.00;c105 52.10 59.30;c000 1.30 17.70;c081 22.40 31.70;c001 9.30 17.20;c002 6.00 13.00;c097 51.80 60.00;c005 0.00 50.70,59.38\r\n2P2ZC,AH2J,Bathroom,7,7,Yes,\"The person was fixing the cabinet light. The stopped, looked to either side, and then continued working.\",bulb;light,\"A person is trying to turn on a light, then turns it on. Then they turn it off.;A person in a bathroom fixing a light in front of a mirror, then turns the light off.\",c103 0.00 20.30;c105 24.70 29.00;c104 21.10 27.80,28.12\r\n3U1SS,0EUL,Living room,4,6,Yes,A person is lying on the living room floor holding a mirror.  The person fixes their hair and puts the mirror down.  The person gets up and takes the vacuum from the corner to the plug on the wall.,corner;floor;hair;mirror;vacuum;wall,personlaying on floor gets up and grabs a vacuum,c137 16.80 32.00;c144 0.00 14.70;c124 0.00 14.70;c154 10.90 20.20;c127 14.10 19.60;c138 17.30 25.00;c096 0.00 15.00,30.58\r\n5DYQR,PO5L,Bathroom,6,7,Yes,A person opens a cabinet and takes out a box of tissues.,box;cabinet;doorknob;kleenex,The person walked quickly into the room and opened the shelf.  The person took some Kleenex out of the closet and put it on the floor.,c041 2.20 12.30;c113 4.30 9.80;c151 9.60 16.10;c154 0.00 7.30;c112 7.30 13.40;c141 3.10 9.40,17.33\r\n06II2,3H6W,Living room,6,7,Yes,\"A person is holding a blanket on the sofa, then the person gets up and starts walking.\",blanket;sofa,A person is snuggling in a couch with a blanket then gets up and walks away.,c070 0.00 19.70;c072 2.50 18.90;c123 1.00 22.40;c151 0.00 5.40;c154 17.50 23.20,31.83\r\n81YUE,ZAWX,Bedroom,5,7,Yes,Person enters the bedroom and lays on the bed and starts watching television.  Person then begins undressing and places the robe on the table next to the bed.,bed;clothes;remote;table;television,\"Click the microphone and speak. Your dictated text will appear above. Edit if necessary, then click the arrow button to move the text down here.;A person is lying on a bed watching television and taking off clothes.\",c134 10.60 23.50;c155 20.90 29.70;c155 26.30 32.00;c132 16.60 25.70;c001 21.40 30.60,30.71\r\nBPWJI,HR43,Kitchen,7,6,Yes,A person is cooking some food on the stove. The person walks to the refrigerator and opens it.,food;refrigerator;stove,Person in the kitchen cooking at the stove who goes to the refrigerator and opens it looking for something.,c142 23.60 30.00;c147 0.00 16.90;c143 16.00 30.00,29.17\r\nJ0VXY,UTMU,Kitchen,3,6,Yes,\"A person in their kitchen is fixing their clothes because they look a little messy. Eventually, they take some medicine from a shelf and start tidying up the shelf.\",clothes;food;medicine;shelf;table,\"A person walks into the kitchen and dusts off their clothes. They pull some medicine from the shelf, set it on the counter and leave the room.\",c082 14.90 30.30;c004 0.20 15.50;c128 12.40 23.60;c009 6.60 20.70;c147 11.10 31.20,35.92\r\n0W4F6,9Y7F,Living room,4,3,Yes,\"A person runs down the hallway, and sits at a table at the end. The person opens their laptop and begins playing on it. Another person stands in the doorway and watches.\",chair;doorway;laptop;stairs;table;wardrobe,\"A man walks down the stairs and sits down at a table. He then opens his laptop. Someone is watching him from the doorway.;There are two people. One, is standing in the doorway watching another person walk down stairs. The person walking downstairs proceeds to move towards the table in the living room to work on their laptop.\",c011 9.30 31.00;c048 14.60 21.70;c151 8.50 14.20;c059 9.30 31.00;c052 21.20 31.00;c051 16.60 31.00,30.46\r\nIKOAX,0RNU,Garage,7,7,Yes,A person fixing a television stands and puts a camera on a shelf.,camera;phone;picture;shelf;television;tool,A person is kneeling down and using tools to work on a television. They stand up and take a picture with a camera that they then put on a shelf.,c081 26.20 31.00;c015 19.90 31.00;c017 25.10 31.00;c154 20.00 27.60;c087 20.30 28.70,29.92\r\nD87LI,2RTW,Living room,6,7,Yes,\"One person opens a laptop and starts playing, then closes it to use the phone.\",laptop;phone;sofa/couch;table,Person sitting on the couch typing on a laptop before closing it and picking up phone to look at it.,c015 15.60 31.00;c016 16.40 31.00;c046 14.90 19.60;c052 0.00 18.90;c014 0.00 31.00;c018 15.60 20.70;c011 0.00 31.00;c123 0.00 31.00,30.33\r\nC1AEV,OUKK,Bedroom,2,7,Yes,\"One person stands in front of a mirror with a book in hand, then watches over their shoulder.\",book;mirror,A person walks into a room hoding a book standing in front of a mirror they look around the room and try hard to see something in the room,c096 10.80 31.00;c026 0.00 31.00;c032 0.00 31.00,29.71\r\nCP3Q6,1OHU,Kitchen,6,5,Yes,A person awakens in their kitchen holding a pile of clothes. They begin cooking on the stove.,clothes;dish;food;stove;towel,A person is holding clothes and sleeping while standing they then wake up and take a pan from the oven and put it in the stove.,c147 16.40 29.00;c146 5.40 12.20;c000 0.00 29.00;c118 15.00 23.40;c033 0.00 29.00,28.21\r\n52GJU,HR43,Home Office / Study (A room in a house used for work),6,7,Yes,\"a person in a study walks to a window, then sneezes on their food.\",blinds;chair;window,\"A person pushes a chair out of the way and then walks to a window which they look out of. They begin to sneeze.;Person walks into room and moves chair, then opens blind and looks out window and sneezes.\",c092 3.00 11.00;c153 8.00 19.40,21.71\r\nAYXFY,BYF9,Dining room,5,7,Yes,Person is standing near table in dining room drinking coffee and eating cookie while talking on phone.,cup;food;mug;phone;table,\"A person is standing by a table talking on the phone, drinking out of a mug, and eating something.\",c106 2.40 13.50;c107 2.20 14.00;c109 7.20 13.40;c019 0.00 24.00;c009 6.60 13.70;c156 15.80 22.10,23.17\r\n3YGOV,OUKK,Laundry room,5,7,Yes,\"A person runs into the laundry machine. The person grabs a glass, snuggles with it, puts it down and then snuggles with a pillow.\",cup;doorway;glass;pillow,\"A person runs into a laundry room, drinks from a cup, hugs a pillow, and leaves.\",c106 6.60 12.70;c078 10.30 20.80;c150 0.50 5.90;c097 0.90 21.20,22.29\r\nCP07P,CCI9,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,A person in the entry way is holding some clothes. Another person is standing their smiling while fixing their hair to match a picture that they are looking at.,bag;clothes;doorway;hair;phone,A person is touching their hair while holding a clothes in a doorway while another person is talking on their phone.;A person is standing in a doorway holding a bag talking to another person who is standing there.,c144 0.00 7.30;c152 1.70 11.80;c000 0.00 32.00;c020 0.00 32.00;c149 1.70 14.90,30.92\r\nM8NEU,6RE8,Laundry room,2,7,Yes,A person runs into their bedroom and starts tidying up. They grab a blanket and open the door.,blanket;clothes;door;towel,\"A person runs into a room picks up some clothes off of a chair using the clothes to dust with. they pick up a blanket and leave the room.;A person is running into a room and then takes clothes and begins swinging them around, they finally select a blanket and leave the room closing the door behind them.\",c070 15.10 28.80;c006 23.50 29.00;c150 0.00 7.30;c004 4.10 18.80;c073 14.20 22.00;c008 0.00 5.00;c002 3.80 20.20;c037 6.60 20.20;c036 6.50 12.20;c033 6.50 20.00;c141 0.70 5.80;c035 4.10 9.70;c034 13.80 18.80,30.25\r\n4JH6O,3531,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,Running into the entryway with a blanket the person begins cooking in front of the mirror.,blanket;door;floor;food;mirror,A person runs into a room and sits down on the floor with a blanket in their lap. They stir a bowl of food while looking into a mirror.;a person walks into a door holding a blanket then sits on floor and eats food while looking in mirror,c070 0.00 10.70;c096 22.20 32.00;c151 0.00 5.90;c150 0.00 5.70;c072 2.10 32.00;c147 2.50 32.00;c125 0.00 32.00;c097 0.00 2.80,31.17\r\nF207R,9PLL,Living room,4,6,Yes,\"One person grasps a book from a cabinet, then closes it. Then this person drinks coffee and laughs at the book.\",book;cabinet;coffee;cup;shelf,A person opens a drawer and takes out a book. A person drinks coffee and puts it on the shelf.,c081 34.00 42.00;c026 10.80 34.70;c113 4.50 14.40;c106 26.10 40.00;c027 13.70 20.30;c032 16.10 42.00;c030 5.70 12.80,40.62\r\nAK9IB,OUKK,Home Office / Study (A room in a house used for work),5,7,Yes,A person is sitting in the study doing homework at the desk.  The person takes their shoes off and puts them in a box before closing it.,box;desk;homework;paper;shoe;table;television,\"A person sat down at a desk, wrote on a piece of paper, then the person removed their shoes and placed them in a box.\",c145 0.00 24.90;c057 21.10 29.00;c041 24.30 30.20;c054 24.50 31.40;c039 27.40 35.00;c151 0.00 4.90;c014 0.60 25.90,34.29\r\n6MH42,PO5L,Kitchen,5,6,Yes,\"A person, wrapped in a blanket, drinks a glass of orange juice. The person laughs as they wipe their mouth with a paper towel.\",blanket;cup;dish;glass;towel;water,\"A person is wearing a blanket on their shoulders while drinking water and sneezing, they then grab a towel and sneeze on the towel.;A person is snuggling a blanket, while drinking a glass of water. A person begins laughing, then grabbing a napkin and wiping their nose.\",c107 6.60 17.40;c149 12.70 21.90;c106 8.30 14.30;c072 13.20 21.90;c153 14.60 19.20;c119 11.00 16.40,33.75\r\nEPKTX,ATJI,Living room,7,1,Yes,A person walks into the living room eating a cookie. They sit on the sofa and wrap them self in a blanket and watch television.,blanket;food;remote control;sofa;television,A person eating food sits down on a sofa and covers themself with a blanket.  They turn on the television and start watching it.;A person walks in and sits on a sofa. He covers himself with a blanket and turns on the television.,c070 5.00 16.50;c132 16.10 24.00;c123 6.40 24.00;c156 0.00 24.00;c151 5.30 10.20;c061 0.00 24.00;c072 6.70 24.00,22.54\r\nG1A2O,H8N1,Living room,6,7,Yes,\"A person is sitting and eating in front of a television, then using a phone in a living room.\",chair;food;phone,\"A person is sitting down and eating something. The person then picks up a phone and starts talking.;A person is sitting eating something, and then talking on the phone.\",c019 18.80 29.70;c156 3.90 9.70;c061 3.90 10.90;c059 0.40 7.30,39.50\r\nVWAEL,D0RU,Bedroom,5,7,Yes,\"A person walks into the bedroom, and throws their phone onto the bed. The person opens a bag of coffee beans and sniffs them.\",bed;box;doorway;phone;shelf,\"A person enters the dining room while looking down at their mobile phone, then tosses it away before picking up a box on the shelf and smelling its contents.;A person walks into a room and looks at their phone. They put it on a shelf and then grab a box.\",c016 7.40 28.70;c043 24.70 30.50;c081 23.90 30.10;c040 24.90 37.00;c097 6.20 12.00;c015 7.60 28.30,36.21\r\nMILRI,ID9V,Closet / Walk-in closet / Spear closet,7,7,Yes,A person walks into the closet and throws a towel into the cabinet.,cabinet;closet;towel;wardrobe,A person is opening a closet and dancing then throws a towel on the shelf.,c036 20.00 28.10;c151 11.00 20.00;c113 2.10 9.60;c033 27.30 30.00,28.58\r\nPHIIX,L4ZP,Hallway,7,7,Yes,Person puts the pillow on the shelf and walks by the mirror.,doorway;mirror;pillow;shelf,\"This person is walking down a hallway with a pillow. They then began to fluff the pillow, then leave again down the hallway to a mirror.\",c096 19.50 25.50;c077 1.00 11.70;c097 12.40 16.90;c076 3.20 8.30;c080 4.20 8.70;c081 3.80 9.30;c097 0.00 4.80;c097 10.00 14.60;c097 17.00 21.80;c076 0.00 11.20,25.25\r\n6CMWO,XXN8,Closet / Walk-in closet / Spear closet,2,1,Yes,A person is undressing and looking at clothes in their closet. The person then notices a vacuum in their closer and starts laughing.,clothes;vacuum,A person takes off some clothes and puts them in a closet.  The person picks up a vacuum and laughs.,c001 7.10 21.90;c138 17.70 30.50;c155 0.00 6.80;c149 19.90 27.80;c137 17.90 29.20,31.50\r\nJW2HC,YA10,Bedroom,7,7,Yes,A person runs into a bedroom holding a sandwich and their homework. They eat the sandwich and start doing their homework.,bed;book;doorway;food;homework;paper;pen;sandwich,\"A person runs into a room holding a book and eating a sandwich.  They lay the book on a bed and start writing in it.;person entered the room by eating sandwich and reading a book, kept that book on the bed and took a pen and marking something in the book\",c116 3.00 8.20;c145 0.00 31.00;c067 0.00 31.00;c156 0.70 31.00;c028 3.00 8.20;c115 0.00 7.80;c065 1.00 6.00;c150 0.00 5.00;c026 0.00 7.80;c032 0.00 31.00;c097 0.00 4.80,30.42\r\n6XGUE,9PLL,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"One person eats a sandwich and opens a laptop, then starts playing games on it while propped on a pillow.\",dish;floor;food;game;laptop;pillow;sandwich,A man is sitting on the floor on a towel and playing a game as he munches on a sandwich.,c051 18.20 44.00;c065 4.40 10.80;c067 3.80 10.80;c156 3.40 10.80;c061 3.40 8.90;c118 0.00 17.90;c048 16.00 22.40;c125 0.00 44.00;c077 31.30 37.20,42.88\r\nZZN85,T7C3,Pantry,7,7,Yes,\"One person walks into the pantry with some dishes, then grasps a vacuum and runs out.\",cabinet;dish;shelf;vacuum,A person is putting dishes in a cabinet. That person then picks up the vacuum.;A person is putting dishes away in a cabinet. A person then carries a vaccum.,c137 11.10 28.00;c138 10.90 24.30;c118 1.20 9.80;c112 5.70 13.80;c119 3.80 9.70;c081 3.00 10.30,27.46\r\nKSDFR,0KZ7,Bedroom,6,6,Yes,One person with hair in a towel starts dressing in front of a mirror. Then this person pours something in a glass and drinks it.,clothes;cup;glass;hair;mirror;towel,\"A person standing in front of a mirror is getting dressed. They picked up a glass from the dresser in front of them and look at themself standing there, with a towel over their hair.\",c096 0.00 18.90;c106 23.10 32.00;c148 0.00 20.40;c108 19.50 26.90;c110 16.90 32.00,30.92\r\nW0624,H8N1,Bathroom,3,6,Yes,\"A person tidying the bathroom grasps a towel, then opens the cabinet.\",blanket;cabinet;food;groceries;table;towel,\"A person is putting groceries on a table, picks up a blanket, and opens a cabinet.;A person retrieves items and places them on a table, then grabs a towel before opening a cabinet.\",c113 23.10 30.00;c033 13.20 24.90;c130 0.30 16.70;c009 0.10 16.90;c035 12.40 17.80;c012 0.00 17.40;c070 13.70 24.60;c112 23.20 30.00;c062 3.00 16.90;c073 13.10 19.10;c063 4.20 13.70,29.21\r\nLP47Z,BYF9,Living room,5,7,Yes,\"A person is awakening on a sofa in their recreation room. The person stands and grabs their phone  from a shelf in a cabinet near the couch, and walks to the stairs.\",cabinet;doorway;phone;shelf;sofa,\"A person is laying on the sofa. They get up, put their shoes on, walk over to the shelf and grab their phone before leaving the room.\",c122 0.00 8.40;c018 12.70 21.10;c154 8.00 15.20;c097 20.10 25.50;c015 15.80 25.10,28.21\r\n6VM42,OUKK,Basement (A room below the ground floor),1,7,Yes,\"A person walks into the basement, holding groceries. The person sets the groceries down, takes a laptop from the table, and leaves.\",bag;groceries;laptop;table,\"A person walks into the room with two bags of groceries, lays them on the table, picks up the laptop and leaves.\",c050 9.80 16.80;c020 2.90 14.20;c130 3.00 14.30;c009 3.10 14.20;c022 3.50 13.00,17.12\r\nW5GEK,9PLL,Kitchen,6,7,Yes,A person walks through a door to the kitchen to turn the light on. The same person then approaches the sink and starts running the water.,door;light;sink;water,\"A person turned on a light and walked into a kitchen and then turned on the tap water, and continued to adjust the water temperature as it filled up the sink.\",c104 28.00 32.00;c097 0.00 5.10,31.00\r\n537I0,BYF9,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person puts a broom in the closet and closes the door. They turn to leave, and pick up a cup of coffee on the way out.\",broom;coffee;cup;door;glass,\"A person walks into a bathroom with a broom, leaves the broom, and closes the door. The person then picks up a container and walks out of the room.\",c099 1.60 11.90;c006 7.30 17.80;c110 3.10 14.10;c098 1.90 10.10;c107 14.30 22.00,21.29\r\n330ZE,HR43,Kitchen,6,4,Yes,A person is smiling while putting groceries on the table. Then they start cooking on the stove.,bag;food;groceries;stove;table,\"A person appears to be cooking in the kitchen.  They take some bagged food and put it on a rack off to the side in the kitchen.  After this, they head back to the stove and address something out of view.;A person places foot on a table while cooking on the stove.\",c147 13.00 29.00;c062 0.00 12.30;c009 0.50 12.90;c023 0.00 3.70;c063 0.00 3.70;c012 0.30 9.80;c061 0.00 11.60,28.21\r\n7BT7L,XNDY,Home Office / Study (A room in a house used for work),5,7,Yes,A person is grasping a sandwich and closing a desk drawer.,cabinet;chair;desk;food;sandwich;table,A person is eating a sandwich while sitting at a desk.;A person is seen eating a sandwich then closing an open cabinet.,c065 0.00 31.00;c011 0.00 31.00;c156 0.00 31.00;c059 0.00 31.00,29.50\r\nOOCOF,AH2J,Kitchen,7,7,Yes,\"A person is cooking at a stove, then tidying the refrigerator and finally running water in a sink in a kitchen.\",food;hand;refrigerator;shelf;sink;water,\"A person walks in to a room opens a refrigerator door and moves stuff around,the person proceeds to turn and wash their hands in the sink.\",c142 21.40 27.10;c154 20.80 26.00;c143 6.20 11.70;c139 23.60 31.00;c063 9.00 27.00;c147 0.00 31.00;c082 9.00 27.00,29.71\r\n78N0Z,IK1O,Home Office / Study (A room in a house used for work),5,6,Yes,\"Person is lying on chair doing homework, then starts eating bag of chips.\",chair;food;paper/notebook,A person is sitting in a chair before grabbing a bag of food and begins eating.,c063 15.90 22.10;c059 0.00 32.00;c156 21.10 32.00;c115 0.00 32.00;c061 17.30 32.00;c145 0.00 20.10,30.54\r\n0BWYH,T7C3,Kitchen,7,7,Yes,A person throws a bag of coffee onto the shelf. The person sneezes.,bag;food;shelf,A person walks to the cabinets to put something away and the person then sneezes and walks away,c081 0.10 7.30;c022 0.10 7.30;c153 5.00 13.10;c061 0.10 7.20;c062 2.40 7.10,23.67\r\nCZ0MP,UTMU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is standing and holding a mirror and a pillow in their entryway. They drink from a glass, and leave.\",cup;glass;mirror;pillow,person holding a pillow and phone drinking water,c076 0.00 26.00;c093 0.00 25.10;c106 2.40 22.00,28.38\r\nTLPMD,8718,Kitchen,5,7,Yes,\"A person is cooking at the stove. They walk over to the refrigerator, and then start pulling out food.\",food;fridge;groceries;refrigerator;stove,A person is using the stove in the kitchen before getting food from the fridge.,c143 14.70 21.90;c063 15.60 25.90;c147 1.60 16.90;c130 21.60 31.00;c062 21.40 31.00,30.33\r\nK1ADF,RXM9,Kitchen,6,6,Yes,The person is washing the cabinet in the hallway while holding a pillow.,cabinet;door;pillow;towel,A person is washing a cabinet in the kitchen. The person is holding a pillow.;There is a person holding a pillow wiping off the cabinet doors with a towel,c114 0.00 32.00;c076 0.00 32.00;c033 0.00 32.00;c038 0.00 32.00,31.21\r\nI5U4Q,1OHU,Bedroom,5,7,Yes,A person sets the camera on the wardrobe while another person holding their head begins sneezing.,bed;camera;head;phone;refridgerator;refrigerator;wardrobe,\"the person in the video is holding their head the whole time. After a while, the person sits down while another person puts a camera on top of the fridge;A person is sneezing and holding his head, another person puts a camera on a refrigerator.\",c017 11.10 20.80;c151 11.50 19.60,30.04\r\nBVHIE,D0RU,Hallway,6,1,No,\"A person is standing in their laundry room smiling in the mirror. They pick up their phone from the table, and leave.\",hair;mirror;phone;table,A person is looking into a mirror while smiling and then picks up a phone and walks away.,c016 19.20 24.70;c093 0.00 18.30;c152 0.00 11.70;c009 16.60 23.50;c149 6.40 19.40;c144 5.90 13.90;c096 0.00 19.70;c018 18.90 24.10;c015 18.70 25.20;c094 8.10 13.90,30.42\r\nAGZ28,5LWB,Bedroom,6,6,Yes,A person is closing a window and snuggling a picture.,bed;book;curtain;picture;window,\"A person walks over to a window, closes it, and shuts the curtain. The person then walks over, sits on a bed, and starts to flip through the pages of a book,;A person, checks a window, closes the curtain, sits on a bed and starts looking at pictures in a magazine.\",c089 0.00 8.60;c135 7.60 36.00;c088 8.30 36.00;c027 8.10 36.00;c032 9.10 36.00,34.75\r\n0USFX,DXDI,Pantry,4,7,Yes,\"A person is standing in their pantry putting away groceries. The person takes the vacuum, and leaves the pantry.\",bag;cabinet;door;groceries;vacuum,\"A person opens a cabinet, takes groceries out of a bag, closes the cabinet and leaves with the vacuum.;Person puts groceries on the shelf close the door then takes the vacuum out of the room\",c113 0.00 4.20;c006 14.30 19.50;c138 13.50 21.10;c130 2.40 17.10;c112 13.50 20.00;c020 0.00 16.40;c008 0.00 4.50;c022 13.00 17.50;c114 2.40 15.80,26.04\r\nBIL5H,5LWB,Garage,6,6,Yes,\"A person is sitting on a chair in the garage, playing with their thumbs. Another person comes through the doorway with a laptop in hand.\",chair;door;hand;laptop,\"A person is sitting in a chair, and clapping their hands. Another person walks in the door with a laptop.;A person sits on a chair clapping their hands. A second person walks through the door holding a laptop.\",c047 10.20 21.00;c097 12.40 18.90;c059 0.00 22.00,21.25\r\nYMIKV,S053,Bathroom,5,7,Yes,\"In the bathroom, a person is smiling and taking a vacuum out of the closet door.\",hair;mirror;vacuum,\"A person leans over the toilet to get or fix a vacuum, then looks in the mirror and messes with their hair while holding the vacuum.\",c137 10.80 32.00;c144 13.30 22.70;c096 14.20 21.40,30.75\r\nALXUC,3VLX,Kitchen,7,7,Yes,A person is grasping a sandwich above a stove and eats a bit of it.,food;sandwich,This person is eating a sandwich,c065 4.90 17.00;c067 3.50 17.00;c069 2.80 7.80;c156 4.50 17.00;c063 0.00 7.20;c061 3.00 17.00,15.54\r\n7GPSY,LTAC,Kitchen,4,7,Yes,Person walks into the kitchen and takes a sandwich off the towel and begins eating.  Shortly thereafter Person sneezes and drops the phone that was in hand.,doorway;food;hand;phone;sandwich;towel,\"A person walks through the hallway into the kitchen. The person takes a sandwich from the towel on the counter, eats it, and then begins sneezing. The person drops the phone they are holding onto the floor.\",c065 5.30 29.40;c156 10.70 34.90;c153 24.20 32.70;c063 5.10 27.60;c097 1.20 6.40,40.29\r\n0YTSJ,D0RU,Home Office / Study (A room in a house used for work),7,7,Yes,A person is working at a desk. They take a break and are drinking a glass of water and eating a sandwich.,chair;cup;desk;dish;food;glass;laptop;sandwich;table;water,\"A person sits in a chair looking at a laptop computer. The person leans back and takes off their glasses. They reach for a glass to take a drink, then put it down to grab a sandwich. The person takes a bite from the sandwich.\",c009 29.50 34.80;c109 28.80 33.90;c065 32.70 38.00;c069 30.70 36.30;c156 32.70 38.00;c107 22.70 34.10;c110 22.70 28.70;c067 30.50 38.00;c106 22.70 34.10;c059 0.00 38.00;c063 29.90 38.00;c061 29.00 38.00;c119 26.90 34.10;c118 22.90 33.00;c011 0.00 38.00;c120 23.20 33.90;c052 0.00 20.60,37.08\r\nX3EZR,9OK1,Bedroom,4,5,Yes,A person is closing a bag of chips while grasping a glass of water.,bag;bed;cup;desk;food;glass;water,\"A person sitting on a bed closes a bag, then picks up a glass of water from their desk. They then have the bag and the glass of water in their hands.;A person sitting on bed in a bedroom takes a glass of water from a table and opens a package of food.\",c020 0.00 10.00;c107 2.70 10.00;c110 1.20 6.40;c135 0.00 10.00,8.75\r\nWSZSL,QOQ4,Dining room,6,7,Yes,A person is sitting on a chair at the table in a dining room. The person stands and walks to the window. The person opens the window and leaves the dining room.,chair;table;window,A boy gets up from a chair and opens a window,c090 12.80 22.90;c059 0.00 7.10;c011 0.00 7.20;c154 2.10 7.10;c092 0.00 23.00,28.21\r\n8ZHLV,D0RU,Kitchen,5,6,Yes,A person is pouring juice into a glass.  Then a person is sitting on a chair to drink it.,bottle;chair;cup;dish;glass;phone;table,A person is looking at their phone and then pours a drink into a glass. A second person takes a drink from the glass.;A person grabs their bottle and pours a cup. Another person drinks from it.,c059 19.70 32.00;c106 21.20 29.20;c015 0.00 11.50;c107 0.20 18.80;c118 20.10 32.00;c009 7.10 12.00;c016 0.00 2.90;c011 18.00 32.00;c109 13.20 18.80;c108 7.70 16.40;c110 0.00 4.60,30.71\r\n7WG7A,1TZV,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person drinks some coffee then turns off the light and leaves out the door of the entryway.,coffee;cup;door;light,A person is holding a cup of coffee  and drinking it then turning off a light and walking out the door.,c008 23.10 32.00;c106 0.00 23.00;c105 21.00 26.00;c107 0.00 23.00;c141 24.60 32.00,30.92\r\nCZPU9,HR43,Bathroom,6,7,Yes,\"In the bathroom, the person put a towel on the doorknob and started undressing.  Half way through they took some medicine from the counter and took it with a drink of water.\",box;cabinet;clothes;door;glass;medicine;mirror;shirt;towel;water,\"A person is putting a towel on the doorknob. The person then takes off their shirt, puts the shirt on the ground, picks up a glass from the floor, and fills the glass with water. The person then takes out a box of medicine, takes the medicine, closes the cabinet door, and drinks some water.;A person puts clothes on a doorknob, then he undresses, picks up a glass from the floor, fills it in the sink and takes a drink, then opens a cabinet and closes it\",c034 0.00 5.20;c106 24.10 36.00;c113 13.60 29.70;c155 6.00 13.70;c129 18.60 24.90;c128 17.30 24.70;c129 20.50 27.70;c112 25.50 30.40;c001 0.00 11.60;c037 1.50 6.10;c035 0.00 4.10;c096 12.20 25.60;c000 0.00 3.40;c033 0.00 4.00;c006 2.30 8.40;c008 0.10 5.90,35.42\r\n4WYQ5,9PLL,Living room,5,1,No,\"A person walks into the living room, eating from a bag of chips. The person puts the bag into a box.\",bag;box;food,A person is eating some food from a bag. They throw the bag into a garbage box.,c020 0.00 36.00;c024 31.70 36.60;c039 32.70 37.00;c041 31.10 36.60;c061 0.00 30.10;c156 0.00 27.40;c021 0.50 10.10;c063 5.90 10.80,35.75\r\nB0LK0,T7C3,Pantry,6,7,Yes,\"A person is putting away groceries. They begin undressing, then look confused. They grab a glass from the shelf, get dressed, and leave.\",clothes;cup;glass;groceries;shelf;sweater,\"There is a person putting groceries on a shelf in a cabinet.  That same person then takes off a shirt.;Person putting away groceries on the pantry shelf, stops to take off sweater, then grabs a glass before deciding to put sweater back on.\",c110 20.00 26.60;c130 0.00 14.20;c148 25.00 43.90;c155 10.40 18.50;c001 25.00 43.90;c081 0.00 14.80,42.62\r\nHR6MF,KQI6,Living room,5,5,Yes,A person is running laughing at a desk while holding a broom.,broom;desk;doorway;duster;floor;laptop;table,\"A laughing person runs through the hallway, grabs a broom and starts tidying a table with a laptop on it.;This person walked in the room at a fast pace, picked up a little brrom / duster and and dusted the table around the laptop.\",c012 0.00 18.40;c098 1.60 8.20;c102 0.40 26.00;c150 0.00 3.80;c149 4.50 9.80;c012 9.50 15.70;c097 0.00 3.50;c127 11.60 27.60,30.08\r\n02GMI,KQI6,Bedroom,5,7,Yes,One person is standing in front of a mirror and another is working on homework on a bed.,bed;homework;mirror;paper;picture,Person walks into a room turns on the light looks into the mirror another person on the bed doing homework.,c135 12.20 28.40;c096 0.00 15.30;c115 12.70 31.00;c145 12.50 31.00,30.17\r\nQ2U7O,JVLO,Living room,3,6,Yes,A person is talking to another person in their living room while holding a glass of water. The other person is walking in circles around a pillow.,cup;dish;glass;pillow;water;window,A person walks over to a window and looks out of it. The person grabs a cup from the window sill and hands it to another person. The person walks in circles around a pillow thats on the floor.;A person takes a glass of water from a window and gives it to another person and then walks around a pillow.,c107 6.90 15.60;c110 2.20 8.20;c120 3.90 12.40;c118 3.50 16.20,33.42\r\nF0N38,2RTW,Kitchen,6,6,Yes,The person is vacuuming under the dining room table.  The person then stops vacuuming when someone calls the cell phone.  The person stands at the window and talks on the phone while laughing.,chair;floor;phone;table;vacuum,\"A person is vacuuming the floor under the table. The person pulls a chair out to get underneath the table. The person stops vacuuming and plays on their phone. The person calls someone on the phone.;A person is vacuuming the kitchen floor. He moves a chair to clean under the table, then he answers his phone.;A person is standing in the kitchen using a vacuum cleaner. The person pulls out a chair from the kitchen table and vacuums underneath the table. The person puts the vacuum cleaner in an upright position and takes out a cell phone from their pocket and answers a call.\",c137 0.00 32.00;c019 23.00 32.00;c015 18.90 32.00;c018 17.60 32.00;c127 0.00 21.00,30.88\r\n0RSFD,P6LJ,Laundry room,6,6,Yes,One person is removing items from a bag and throwing them in the sink. Then the person takes something from a shelf.,bag;cabinet;clothes;laundry detergent;sink;table,\"A person is taking clothes out of a bag and throwing them in the sink, they then take laundry detergent out of a cabinet.;The person picks up a bag and begins throwing articles of clothing into a sink. The person takes some laundry detergent from a cabinet and places it on the counter.\",c000 1.10 18.50;c021 1.50 11.60;c009 7.40 21.00;c003 9.20 19.10;c001 9.20 19.10;c002 4.10 19.10;c020 0.90 27.30,39.17\r\n3OUXT,P6LJ,Kitchen,6,6,Yes,\"A person is sitting at a desk in their laundry room. The person takes a notepad from a nearby cabinet, and begins scribbling something down.\",cabinet;chair;homework;paper/notebook;table,A person is sitting in a chair. A person then opens a cabinet and starts to do homework.,c011 4.80 48.40;c112 22.80 29.90;c113 13.30 21.10;c151 1.80 9.30;c154 44.40 49.70;c115 18.30 23.60;c117 17.60 22.30;c014 27.90 48.40;c059 4.30 48.90;c116 18.80 23.30;c145 28.10 47.90,50.17\r\nZHF60,P6LJ,Kitchen,6,6,Yes,The person is washing clothing in the laundry room sink just before leaving to get groceries.,cabinet;clothes;hand;liquid soap;purse;sink;towel;wash,There is a person that is folding clothes in the sink. They then open the cabinet and begin washing clothes in the sink. The person uses a towel to wash dry their hands and then walks off screen;A person is putting clothes in the sink and putting liquid soap on them. They proceed to dry their hands and she then grabs her purse and exits.,c113 12.70 19.10;c005 43.20 53.90;c001 7.70 16.70;c005 1.40 52.60;c000 0.30 12.70;c139 33.90 62.60;c004 1.00 16.70,66.96\r\nIJZI1,6NQX,Bathroom,7,7,Yes,\"A person walks through the doorway, smiling. The person quickly takes a tissue from the tissue box and sneezes into it.\",box;doorway;mirror,A person walks into a bathroom and sneezes into a towel that is taken out of a box. They then throw it in the toilet.,c097 0.00 8.40;c041 2.10 10.70;c044 7.10 15.30;c153 7.80 16.10;c039 13.30 18.00;c096 3.80 8.60,16.75\r\n5XEOB,PO5L,Laundry room,4,6,Yes,\"A person is smiling and laughing while using a broom, then closing a door in a pantry.\",broom;door,\"A person walks into a laundry room and grabs a broom. The person sweeps while laughing. They close the door, and leave.\",c098 8.20 13.70;c102 0.70 10.30;c006 6.50 17.20;c152 19.30 25.70;c149 6.60 16.60,25.54\r\nENJ7V,9PLL,Living room,7,7,Yes,A person is standing by the door playing a video game.  The person takes off their shoes and throws them on the floor next to a towel.,door;phone/camera;shoe;video,A person watches a video on a tablet computer while standing near a door and then removes his shoes and puts them on the floor.,c054 33.30 41.00;c057 16.90 34.90;c016 0.00 41.00;c015 0.00 41.00,39.79\r\nCCN3E,0KZ7,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is leaving the house carrying a bag, but stops to watch themselves in the mirror before walking out the door.\",bag;door;mirror,A person is  carrying a bag of groceries down a set of stairs. The person looks in the mirror at their reflection before walking out the door and closing it behind them.,c020 0.00 17.40;c096 3.60 13.70;c008 10.30 16.70;c097 13.10 19.00,20.83\r\nGFX2M,M80J,Hallway,4,7,Yes,A person stands in a doorway and eats a sandwich.,doorway;food;sandwich,A person is eating a sandwich in a doorframe. He tidy's his hair at one point.,c065 0.00 31.00;c067 0.00 31.00;c156 0.00 31.00;c061 0.00 31.00,29.67\r\nEBMIO,EXQX,Living room,5,1,No,A person is standing in their living room. The person opens a medicine bottle and takes out a pill. The person puts their medicine on the table. The person then sits on the couch snuggling a pillow.,doorway;floor;laptop;table;towel,A person is in a bathroom and they hang up a towel. Afterwards they walk to another room where they sit down on the floor to use a laptop.;A person puts a towel on the rack. Later that person sits down on the floor in front of a laptop on a table and works.,c052 9.70 30.50;c034 0.00 5.00;c125 9.70 31.70;c097 1.90 8.00;c033 0.00 3.80;c151 9.40 13.70;c014 9.70 31.70;c051 9.70 31.70,59.88\r\nK3IGM,9PLL,Bathroom,6,6,Yes,\"One person wrapped in a towel puts the towel on a shelf and starts dressing, then puts on a pair of shoes and sneezes.\",clothes;shirt;shoe;towel,\"A person is holding a towel, then puts the towel down. The person then puts on a shirt, and their shoes. The person then begins sneezing.;The person is buttoning up a shirt and putting on shoes.\",c033 0.00 6.10;c034 0.00 5.70;c055 20.60 37.90;c153 34.90 40.00;c148 5.10 21.60;c002 2.30 7.90;c056 19.20 38.50,39.21\r\n7TNNG,ZEM0,Dining room,5,5,Yes,A person is standing with a phone.  Then a person is sneezing while picking up their shoes.,phone;shoe,A person in a dining room is playing with their phone. They move around the room then pick up a pair of shoes and hold them as they continue playing with their phone.,c053 23.80 36.00;c016 0.00 34.70;c015 0.00 36.00,34.58\r\nGIC0G,JVLO,Stairs,5,6,Yes,A person is eating food. Another person takes a picture of them with a camera and then leaves.,camera;door;food;phone;picture,A person is eating food while sitting on the stairs. A second person is taking a picture with a camera.,c061 0.00 31.50;c015 14.90 30.00;c156 0.00 30.40;c087 14.70 28.80;c008 25.90 31.80;c097 27.80 33.00,31.58\r\nJC1DV,6RE8,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is smiling in the entryway while putting their shoes on the shelf.,clothes;doorway;shelf;shoe,A person places their shoes on a shelf.,c081 5.00 16.40;c054 0.00 17.30;c097 0.00 4.90;c004 7.10 16.10;c000 0.00 11.30;c000 8.20 13.30;c053 0.00 11.30;c053 8.20 13.30;c056 8.20 12.50,30.92\r\nEW3VV,P6LJ,Living room,6,6,Yes,A person is sitting on a sofa in a bedroom drinking a glass of milk. The person stands and grands their dish and leaves the room.,cup;dishes;glass;sofa,\"A person walks over to a sofa with a glass of water, sits on the sofa and begins drinking from the glass.\",c123 3.70 9.30;c106 7.30 16.30;c151 2.50 7.90;c154 1.90 7.20;c107 0.00 46.00,45.42\r\nHOIKF,YMXV,Bedroom,7,7,Yes,A person is lying with a broom while another person is working on a laptop.,broom;chair;computer;desk;floor;laptop;table,\"A person is lying on the floor with a broom, talking.  Another person sits at a desk and looks at a computer.;A person is lying on the floor with a broom. Another person is playing with a laptop.\",c051 0.00 21.70;c098 0.00 21.00;c124 0.00 22.50;c011 17.60 32.00;c059 17.70 32.00;c052 16.80 32.00;c152 0.00 11.80;c149 9.80 14.30,30.75\r\nRJFT8,18IT,Living room,4,7,Yes,\"A person is in a living room watching a video on their phone, they then get up and leave threw the doorway.\",doorway;phone;sofa/couch;video,A person is sitting on a couch. The person is watching a video on their phone. The person stands up and walks out of the room.,c015 44.20 47.00;c097 40.70 45.40;c154 35.20 45.40;c123 0.00 38.90,46.12\r\nMW2TQ,3VLX,Pantry,7,7,Yes,\"A person is in a pantry closing a box of food, they then start to laugh as they walk away out of the room.\",box;cabinet;door;food;shelf,\"This person is standing in the kitchen next to cabinet, closing a cereal box, placing it in cabinet, closing cabinet and than walks away.;A person grabbed a box from a pantry cabinet,and then placed it back on a shelf and went to another room.\",c039 1.00 9.00;c149 7.90 15.20;c081 6.30 13.20;c040 0.00 12.70;c112 9.90 16.50;c062 6.40 16.40;c042 6.40 16.40;c061 0.00 13.40,22.33\r\nZAIHG,CCI9,Bedroom,4,5,Yes,\"A person runs into their bedroom, watching a video on their laptop. The person sets the laptop down on a desk.\",laptop;table;video,A person holding a laptop walks into the room and puts it on a table near a window. The person then watches a video playing on the laptop.;The person is walking to a table to set the laptop on the table then stands there and looks at it.,c047 0.00 22.40;c050 0.00 18.10;c051 14.40 32.00;c009 8.40 18.90;c049 0.00 19.00,30.92\r\nIXY95,I2IV,Kitchen,6,6,Yes,A person is grasping their medicine and then walking over to their refrigerator to eat.,doorway;food;medicine;picture;refrigerator;sofa/couch;table,A person is looking at a picture. A person then opens a refrigerator and grabs some food.,c142 17.00 22.00;c143 13.00 18.00;c088 1.00 10.00;c063 14.10 24.00;c009 5.90 12.00;c061 15.90 24.00;c123 0.00 2.50;c097 11.20 16.50;c154 0.00 3.10;c128 1.10 11.60,22.71\r\nUCD2M,BYF9,Stairs,6,7,Yes,One person is eating food on the stairs while another grasping a handful of clothes is undressing and dressing.,clothes;food;hand,A MAN IS SITTING ON THE STAIRS WHILE PUTTING ON A SWEATER WHILE ANOTHER WOMAN IS SITTING ON THE STAIRS EATING SOMETHING,c061 0.00 26.00;c156 0.00 26.00;c148 1.40 26.00;c155 0.00 18.60,25.25\r\n038WZ,WQ8Z,Pantry,5,6,Yes,A person running toward the cabinet then begins opening the door by grabbing the doorknob.,cabinet;door;hallway,A person runs into the kitchen from the hallway. The person then opens and closes the cabinet doors.,c112 4.80 14.00;c113 3.70 11.50;c150 0.00 7.50,13.04\r\n99WON,KFGP,Stairs,5,6,Yes,\"A person runs up the stairs and sits in a chair at the top. The person pauses for a moment, grabs some food from nearby, then slowly walks back down the stairs.\",chair;food;phone/camera,A person runs up a flight of stairs and sits on a box at the top. The person then grabs something and walks back down.,c059 5.30 11.80;c063 11.00 17.30;c150 0.00 8.60;c151 5.30 11.30;c154 12.00 17.50;c017 9.50 15.10,27.58\r\nJ1YJ6,6RE8,Garage,7,7,Yes,\"A person walks into a garage, opens a window sits on a sofa and watches a video on their phone.\",chair;phone;window,\"A person is looking out a window while holding their phone, they then sit in a chair and begin smiling and playing a game on their phone;A person walks in and opens a window. Then they sit and look at their phone.\",c090 3.60 13.30;c092 3.80 15.80;c015 1.00 36.00;c016 12.00 36.00;c151 10.70 17.00;c059 12.70 36.00,34.88\r\nYH0BX,Z68L,Living room,6,7,Yes,\"A person stands near a sofa, grasping a towel. The person folds the towel and sets it down on the sofa.\",blanket;sofa;towel,A person is folding a towel and places it on a sofa.,c034 2.30 27.50;c075 2.70 26.80;c037 2.70 26.80;c071 22.10 26.80;c033 0.30 27.00,34.67\r\nL1Z8A,G6WD,Living room,6,,Yes,A person is sitting by a window. They get up and start holding up a mirror to their face.,mirror;sofa/couch;window,A person is sitting on a couch before grabbing a mirror and looking into it.,c093 28.40 51.60;c154 23.90 29.70;c123 0.40 23.30;c096 28.40 50.60,53.33\r\n00T4B,9OK1,Kitchen,7,7,Yes,A person in the kitchen was getting dressed for work while cooking.  They ended by putting on their shoes and turning off the light.,counter;door;light;shelf;shoe,\"A person walks to the front door from the kitchen.;A person is tidying a counter, then walks over to a door, turns off a light, and puts on shoes\",c055 10.90 20.30;c082 0.00 11.20,20.17\r\nKKCB9,3VLX,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person stands in the doorway wrapped in a blanket, eating a sandwich. The person smiles.\",blanket;doorway;food;sandwich,\"A person is wrapped in a blanket eating a sandwich in a doorway.  They start laughing.;A person covered in a blanket is standing in the doorway of a closet, eating a sandwich and smiling.\",c065 0.00 25.00;c070 0.00 25.00;c156 0.00 25.00;c149 10.60 25.00;c067 0.00 25.00;c072 0.00 25.00;c152 10.00 25.00,24.42\r\nX73XF,C7O9,Pantry,6,6,Yes,A person is vacuuming and tidying up their close. Another person walks in and grabs an item off the shelf.,closet/cabinet;food;shelf;vacuum,A person is cleaning using a vacuum when another person goes into the pantry and takes something from the shelf,c081 19.70 28.40;c137 0.00 31.00;c114 0.00 31.00;c063 19.50 29.30,30.50\r\n9LONJ,X5XO,Bathroom,6,7,Yes,A person is pouring coffee down the toilet and then undressing on a chair in the bathroom.,boots;chair;coffee;cup;toilet,Person pouring coffee down the toilet and putting the cup on top of the toilet before sitting down on chair to unlace boots.,c059 8.20 15.00;c151 8.80 14.00;c109 5.20 10.60;c108 0.00 7.30,31.25\r\nH7LQM,UTMU,Closet / Walk-in closet / Spear closet,4,7,Yes,A person is holding clothes in front of a closet door.  The person places the clothes to the side and begins tidying up the closet so that the clothes can be put away.,closet/cabinet;clothes;shelf,A person is in a closet tidying up some clothes.,c004 1.30 35.00;c114 6.90 24.20;c001 1.40 10.10;c082 7.50 23.00;c000 32.40 35.00;c002 32.40 35.00;c081 32.40 35.00,34.33\r\nEUMRR,UTMU,Bathroom,7,7,Yes,\"A person is washing their hands in the bathroom. After that, they begin sitting down while drinking some coffee and placing a pillow on top of the counter.\",coffee;cup;dish;floor;hand;pillow;table;towel,\"A person washes and dries their hands, then has a drink sitting on the toilet.\",c106 20.30 26.20;c077 29.70 36.00;c139 0.00 12.90;c151 14.80 21.00;c127 26.70 36.00;c038 9.40 18.30;c079 28.10 36.00;c076 27.90 35.40;c118 17.90 36.00;c107 17.90 36.00;c110 17.90 23.60,34.54\r\nY5P4Q,L4ZP,Kitchen,2,6,Yes,Person 1 is at the sink washing a mirror. Person 2 pulls a chair into the room and uses a broom to sweep the ceiling while smiling.,broom;chair;dish;sink,Some people are in a kitchen together. One person is watching dishes in the sink. The other person is sweeping the ceiling and walls with a broom while standing on a chair to be able to reach it.,c102 2.40 52.60;c060 0.10 53.00;c121 3.20 48.20,51.54\r\n144JW,0KZ7,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is sneezing into a towel while another person is watching a pillow.,floor;hallway;towel,\"A person is standing in a hallway, sneezing into a towel repeatedly.\",c153 0.00 3.70;c125 0.00 29.00;c033 0.00 29.00,28.42\r\nJUF24,3VLX,Kitchen,7,7,Yes,\"A person stands at the stove, cooking. The person takes some groceries out of a bag and begins adding them to their pot.\",bag;food;spoon;stove,A person turns on the stove and cooks some food. The person takes food out of a bag and puts in the pot. The person stirs the pot.,c022 5.20 21.70;c147 0.00 38.00;c063 18.40 26.90,37.08\r\nYZWQH,6RE8,Basement (A room below the ground floor),5,6,No,A person sitting on the couch in the basement is leaning on a pillow holding their cell phone and playing a poker game on the phone.,chair;phone;pillow,\"Person sitting on chair holding pillow on lap playing with phone begins to rock forward and back. Then person rocks side to side, then forward and back. Person then lifts pillow and place back on lap, rocks forward then back and side to side.\",c076 0.00 32.00;c015 0.00 32.00;c016 0.00 32.00;c059 0.00 32.00,30.50\r\nW495O,2RTW,Kitchen,6,6,Yes,\"One person is pouring water from the sink into a pan, then putting it on the stove.\",food;pan;sink;stove,\"a person filling a pan with water at the sink, then goes to the stove and starts cooking.\",c147 13.00 20.00;c147 16.80 32.00,30.96\r\nBFVX0,3VLX,Garage,7,7,Yes,A person is watching a television while standing up in a garage. The person then sits down in the garage and eats a sandwich.,chair;food;sandwich;table;television,A person is watching tv then they sit down to eat a sandwich,c065 11.40 26.00;c151 9.20 14.90;c156 11.40 26.00;c132 0.00 12.80;c059 10.10 15.00;c061 12.40 17.10;c011 10.90 15.80,25.42\r\nKJ428,XXN8,Hallway,3,6,Yes,A person is closing a cabinet and washing their wardrobe.,cabinet;door;towel;wardrobe,A person closes a door. They then wipe the door with a towel.,c006 0.00 3.60;c033 0.00 33.00;c038 0.10 29.00,31.71\r\nSGAGB,WQ8Z,Bedroom,4,6,Yes,A person in their bedroom is snuggling up with a pillow. They begin dressing by grabbing a jacket from their wardrobe and putting their clothes on.,bed;closet;clothes;pillow,\"A person sits on a bed and snuggles a pillow. The person then stands and goes to the closet. The person puts on a jacket, takes another jacket, and leaves the room.\",c076 0.00 11.50;c000 24.70 31.00;c002 13.70 19.40;c002 23.10 29.90;c078 0.00 14.10;c154 11.60 17.20;c148 13.10 24.90;c135 0.00 16.30;c001 12.00 28.90;c077 10.10 15.00,30.12\r\nW6GTP,3531,Stairs,7,7,Yes,A person grasping a camera and holding a pillow starts walking up the stairs.,camera;phone;pillow,A person with a bag walks up a stairway while checking their phone.,c076 0.00 32.00;c015 0.00 32.00;c016 0.00 5.50;c016 5.90 11.80,31.46\r\n07RDG,OUKK,Bedroom,1,7,Yes,\"One person walks in, puts down some dishes, and tidies up stray clothes and shoes before leaving.\",clothes;dish;floor;shoe,A person walks into the room and sets a plate on the desk. They then begin to pick up their clothes and shoes off of the floor.,c053 11.10 16.00;c119 1.70 7.50;c004 4.00 14.40;c127 3.80 19.10,29.67\r\nGA4DZ,9PLL,Bedroom,1,7,No,A person is awakening near a light.  Then a person adjusts a pillow under their head and continues lying there.,bed;floor;head;pillow,\"someone wakes up from a floor, and adjusts their pillow before laying back down and going to sleep;A person is lying on the floor and moving their head onto a pillow.\",c146 1.00 7.50;c124 0.00 34.00;c134 0.00 34.00,33.12\r\n1TAMK,3H6W,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"One person runs into the entryway, grasps a broom from a cabinet and leaves.\",broom;cabinet;door,\"A person is opening a door, and grabbed a broom.\",c098 3.30 11.10;c008 3.20 9.10;c112 4.70 10.30;c150 2.80 8.00;c100 3.60 11.10;c006 3.90 10.50;c113 3.50 9.60,17.88\r\nZDZFF,9OK1,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is seen working on putting a pillow on a shelf. The doorknob starts to turn and the door closes.,closet/cabinet;pillow;shelf,A person puts a pillow up on a shelf inside the closet.,c076 0.00 7.70;c077 0.00 7.70;c081 0.00 7.80;c080 0.70 5.10;c114 2.50 6.90,10.04\r\nCI7PQ,L4ZP,Kitchen,5,7,Yes,A person is cooking. Another person is eating a sandwich and putting a coffee cup in the sink.,coffee;cup;food;glass;sandwich;sink;stove,A person stands at the stove cooking some food.  Another person walks in holding a sandwich and begins eating it then grabs a cup of coffee and begins drinking.;A person standing at the stove is cooking. Another person walks in the room drinking coffee and eating a sandwich. The second person sets their cup in the sink and walks away.,c106 7.50 14.70;c065 11.20 30.50;c156 12.20 30.60;c147 0.00 34.00;c061 5.50 29.60,33.46\r\n5CT0V,PKND,Bedroom,5,7,Yes,\"One person runs in with a phone, plays with it, then throws it down. Another person is tidying up, straightening a picture.\",bed;magazine;newspaper;paper/notebook;phone,A person is standing and playing on a phone then throws it on the bed while another person is sitting on the bed reading a newspaper.;There is a person sitting on a bed looking at a magazine.  There is another person standing up doing something with a phone. That same person then throws the phone on the bed.,c015 0.00 10.00;c016 0.00 9.80;c135 0.00 33.00;c115 8.10 14.10,31.92\r\nGIIMN,Z68L,Bathroom,6,6,Yes,A person is looking at a picture in a magazine as they're eating food off a dish sitting on the corner of the sink in their bathroom.  They close the magazine and pick up a broom as they leave the bathroom.,book;broom;food;hair;sink,A person is reading while eating in the bathroom and grabs a broom.;A person opens and reads a book and occasionally eats food from a plate perched on a sink before grasping a broom and walking out of the room.,c098 21.20 29.30;c061 9.10 22.60;c156 9.80 23.20;c026 0.00 25.20;c027 0.00 3.60;c032 0.00 25.90;c100 21.90 26.60;c063 8.40 13.10;c144 0.00 3.10,31.33\r\nPN7CX,BYF9,Bedroom,7,6,Yes,\"A person is in a bedroom eating out of a dish, they then smile and grab a broom to start sweeping the floor.\",bed;broom;floor;food;sandwich;shoe,\"A person is sitting on the bed eating food. A person then puts on their shoes, picks up a broom and starts cleaning.;A person is laying on a bed, eating food. The person gets off of the bed and puts shoes on. The person then grabs a broom and begins sweeping the floor with it.\",c127 17.90 26.00;c102 18.00 26.00;c063 0.80 6.60;c054 12.90 20.50;c134 0.00 16.70;c098 17.00 26.00;c156 0.00 15.90;c154 11.00 21.00;c061 0.00 15.80;c055 11.60 20.70;c135 0.00 21.40;c065 0.00 15.60,25.25\r\nIJNBL,3H6W,Kitchen,7,6,Yes,The person worked hard to make dinner. They cooked and then cleaned the dishes. Finally they left through the doorway.,dish;door;food;oven;plate;stove;table,\"A person starts cooking on the stove and looking inside the oven.  Then they pick up a plate from the table and wash it in the sink before leaving the room.;A person is cooking food on a stove. A person opens the oven and then picks up a plate, washes it and puts it in the sink. A person then opens a door, closes, the door, and leaves.\",c119 16.90 29.90;c121 20.00 30.60;c147 0.30 15.60;c006 35.00 41.50;c097 32.90 40.40;c008 34.80 41.30;c120 16.90 21.50;c118 17.50 29.10,41.00\r\n6YTAJ,XKTB,Bedroom,4,6,Yes,\"A person is eating some food, sitting in a chair at a table. They turn a page in a book, pouring over the words intensely as they eat.\",book;desk;food;sandwich;table,\"a person is sitting at a desk eating and reading a book;This person is eating a sandwich, then starts reading a book.\",c009 0.00 3.90;c025 27.60 32.00;c032 3.10 31.50;c065 3.60 20.70;c061 0.70 31.20;c027 1.40 7.90;c156 22.50 31.50;c067 0.00 32.00;c062 26.40 32.00;c011 0.00 32.00;c026 27.60 32.00,31.08\r\n1PB6T,KFGP,Kitchen,5,7,Yes,The person is standing in the kitchen opening food while doing homework.,box;food;paper;pen,A person opens a box of food and sets it down on the counter. The person takes a pen paper and begins to write.,c062 0.00 3.80;c115 9.40 21.70;c145 9.50 27.00;c041 1.10 9.10;c117 8.40 17.30,25.92\r\nLR4XI,L4ZP,Kitchen,2,2,Yes,\"The person was drinking beer out of a glass, looking in the mirror and sneezing.\",chair;coffee;cup;phone;table,A person is sitting down at a table  drinking coffee and playing with their phone then sneezing.;A person drinks a cup of coffee and uses their phone at a kitchen table.,c153 18.90 26.50;c106 0.00 19.40;c015 4.40 28.00;c059 0.00 4.30;c011 0.00 28.00;c016 4.90 28.00,26.58\r\n3D0WV,ID9V,Bathroom,4,6,Yes,\"A person is working on a sink, then laughing as he grabs the doorknob.\",doorknob;sink,A person grasps and shakes a sink faucet. They then grasp a doorknob and tremble as the power of their conviction surges through them.,c141 17.30 31.00;c149 17.70 30.40,30.33\r\nDQ6U7,C7O9,Bedroom,7,1,No,\"A person is lying on the bed staring at a picture. Then, laughing, the person turns their attention back to the television.\",bed;picture;television,A person reclining on their bed is holding a picture as they watch television.,c084 0.00 30.00;c085 6.10 30.00;c088 5.80 30.00;c131 6.10 30.00;c134 0.00 30.00;c132 5.40 30.00;c149 5.40 30.00;c152 5.00 30.00,28.96\r\nY5PF5,D0RU,Kitchen,4,7,Yes,A person takes a tool from a shelf and begins working on a camera.,camera;phone;shelf,A person is holding a camera and walks over to a countertop and picks up a tool and starts working on the camera.,c016 9.50 33.00;c015 4.20 33.00,31.79\r\n5ADJT,T7C3,Bedroom,5,6,Yes,A person is laughing at a picture while walking to a mirror.,mirror,A person is on a bed looking into a mirror,c096 21.00 36.00,34.50\r\nF8A4G,UTMU,Garage,6,,Yes,\"A person turns the doorknob to open the garage door. They bend over to pick up a box, sneeze, and then leave.\",box;door;floor,\"A person walked into a room, opened a door, picked up a toolbox from the floor, and left the room.\",c008 1.80 9.70;c040 13.60 19.50;c043 7.10 16.50;c141 2.00 10.30;c042 7.30 25.00;c127 7.00 17.50,24.33\r\n1W2NR,D0RU,Other,6,6,Yes,A person in a recreation room is running around with a blanket around them. They appear to be cold. They stop and wash their hands at a sink and notice a box to the side of the sink.,blanket;doorway;hand;sink;water,Person walks into room though doorway then is walking around room wrapped in blanket sneezing then goes to sink to wash their hand.;A person runs out of a doorway with a blanket wrapped around them. The person walks over to a sink and splashes water on their face.,c072 2.20 29.80;c097 1.60 7.40;c139 22.00 29.10;c070 0.00 28.80;c153 9.90 16.50,32.42\r\n4CAHN,1TZV,Kitchen,6,7,Yes,A person is cooking food in a pot on the stove. The person grabs something out of the refrigerator and starts pouring it into the pot.,coffee;cup;door;food;glass;refrigerator;stove,\"A person stands at the stove cooking.  They go to the refrigerator, open the door, take out a glass of water, close the door and pour the water into the pot of food cooking on the stove.;A person is preparing a cup of coffee then they take a cup from the refrigerator and pour it on a mug.\",c142 19.90 24.50;c143 17.40 23.20;c110 18.90 23.90;c006 18.50 24.80;c008 17.40 23.40;c147 0.00 29.00;c063 17.70 24.40,28.42\r\n151DU,BRLP,Living room,7,7,Yes,A person grasps food from a shelf and holds the food in his hand while standing next to a sofa.,food;hand;shelf;sofa,A person waves their hand.  The person then grabs some food from the shelf then waves it around.,c063 7.00 15.00;c152 9.00 23.70;c061 8.50 33.00,31.71\r\nOJLFZ,PO5L,Living room,3,6,Yes,A person is seen playing a game on the couch. They take a sip of coffee and then open a box with clothes in it.,box;clothes;cup;floor;glass;remote;shorts;sofa;table,A person sits on the sofa and plays a video game before drinking from a glass and grabbing clothes.;A person walks to they're sofa and sits down with a remote control in their hands and plays a game with it. They set it down on the floor to grab a cup and take a sip. They set that on the table and pick up a box from the sofa and open it to pull out shorts.,c123 0.40 8.10;c151 0.00 5.20;c107 13.80 21.20;c009 13.80 18.70;c106 9.40 19.20;c110 8.80 14.50;c002 18.70 27.90;c040 15.20 32.30;c042 26.40 32.30;c041 18.20 25.90;c109 13.30 19.30;c000 20.70 33.10;c154 27.30 33.50;c001 27.30 33.30;c044 18.90 27.80,33.58\r\nZFZEN,FNK4,Bedroom,5,7,Yes,A person is awakening from their bed. The person goes to the wardrobe and finds clothes then begins dressing. They then leave through the doorway.,bed;blanket;closet/cabinet;clothes;door;hair;mirror,\"Person lying in bed, wakes up, gets out of bed and goes to a closet to get a sweater where it is put on and then leaves the room\",c000 11.90 31.20;c134 0.00 3.30;c097 36.10 44.50;c146 0.00 4.90;c148 23.90 40.50;c002 11.50 18.60;c133 0.00 4.00;c071 0.00 5.80;c154 2.40 8.00;c008 10.40 16.60;c144 36.70 42.70;c096 34.90 41.20;c112 15.30 20.80;c113 12.20 17.50;c141 39.60 44.90;c006 41.10 45.00,44.12\r\nN8SO1,LWUV,Living room,4,7,Yes,\"A person is holding a pair of shoes which they begin to put on. They stand up, pick up and hold a bag, and leave through a door.\",door;shoe,A person is putting on shoes and walking out the door.,c055 0.30 14.60;c097 19.00 30.00,28.88\r\n2H9YB,V8LI,Basement (A room below the ground floor),5,5,Yes,A person is fixing a light and then sneezing under the doorway in the basement.,door;light,A person replaces a lightbulb above a doorway and then turns on the light. They open another door and leave.;A person walks to a doorway and turns a light on above the door.  The person then walks through the door way and out another door.,c097 20.80 25.80;c104 16.70 21.60;c006 28.30 33.30;c008 26.90 31.60;c103 2.00 22.80,35.00\r\nYV0ZX,D0RU,Living room,4,3,Yes,The person is sitting on a chair in a recreation room looking at a box on the table in front of them.  The person opens the box and pulls out a medicine bottle and pours out the pills onto the table.,box;chair;glass;medicine;phone/camera;table,person is sitting down on his phone and opening a little basket of medicine,c011 0.00 39.00;c041 11.10 19.10;c059 0.00 39.00;c009 9.10 14.80;c017 9.10 14.80;c128 18.30 39.00;c016 0.00 13.30,38.21\r\n17DOT,1OHU,Living room,6,6,Yes,\"A person is sitting in a chair in the entryway to their home, watching television. The person stands, picks up a bag, and leaves the room.\",bag;chair;doorway;table,\"A person is sitting down in front of a table, they then pick up a bag from the floor and walk through a doorway.\",c059 0.00 16.10;c023 10.70 23.00;c154 13.60 23.00;c097 16.10 23.00;c020 9.80 21.10;c011 0.00 17.20,21.92\r\n5HGHH,1OHU,Hallway,6,6,Yes,The person is leaving a pair of shoes in a cabinet in the entryway and tidying up the area of any stray items.,chair;closet/cabinet;door;sandals;shelf;shoe,\"A person picked up a pair of shoes from a chair placed them in a closet and then folded the chair and placed it in another room.;The person takes a pair of sandals from a chair and places the sandals in a closet. The person picks up the chair, opens the door to another room and places the chair in it.\",c053 0.20 13.20;c054 8.70 16.90;c081 9.00 15.10;c113 6.50 11.30;c112 11.60 17.40,31.96\r\nEBOJG,D0RU,Bedroom,6,7,Yes,\"A person can run in place in front of a mirror in their bedroom, A person can sneeze while laying on a sofa placed in their bedroom.\",chair;mirror;sofa;wardrobe,\"A person walks over to a wardrobe and looks into the mirror on it. The person sneezes and then sits down in a chair near the wardrobe.;A person walks into a room walks over and looks at their self in a mirror and runs their fingers through their hair,sneezes and then sits down and sneezes again,and  they stretch out for a second\",c096 1.10 14.00;c153 13.10 23.80;c151 16.00 23.80;c059 16.70 45.00,44.42\r\n2RTH2,YMXV,Home Office / Study (A room in a house used for work),6,7,Yes,A person is tidying up a desk with a towel.  They pick up a glass of water and start drinking it.  They turn off the light.,bottle;chair;computer;desk;laptop;light;table;towel;water,\"The person cleans a desk, computer, and chair with a towel. The person puts the towel down. Then the person picks up a bottle of water and drinks some water. The person turns out the lights.;A person is cleaning a desk, chair and laptop with a towel.  They then pick up a bottle of water and drink it before turning off the light.\",c012 0.00 16.10;c106 12.50 24.10;c105 27.10 32.00;c034 11.60 17.00;c037 0.00 16.10;c109 23.00 29.10;c110 12.10 17.60;c154 24.40 29.70,31.21\r\n6ZSB2,0KZ7,Hallway,3,7,Yes,A person runs into a hallway and open a bag and remove a bottle of medicine.,bag;bottle;doorway;medicine,\"A person runs into a hallway, then takes a bottle of medicine from a bag then reads it.\",c128 2.30 21.00;c150 0.00 4.80;c107 1.70 21.00;c097 0.00 4.30;c021 0.60 7.20,19.75\r\n2PMYI,9PLL,Stairs,5,7,Yes,\"A person is lying on the stairs. They awaken, smiling, and start sweeping in the doorway with a broom.\",broom;doorway;floor,A person is laying on the stairs before standing up and picking up a broom. They then sweep the hallway with the broom.,c102 15.40 33.00;c097 17.00 30.50;c146 2.50 9.90;c152 5.00 12.20;c154 8.70 16.80;c127 18.60 33.00;c100 15.80 23.10;c098 16.50 33.00,32.38\r\nSCOML,0KZ7,Laundry room,6,6,Yes,A person dresses by putting on a jacket that they take off a table. Then the person throws a pillow across the room.,clothes;pillow;table,person wearing clothes and then throws the pillow somewhere,c079 18.90 27.00;c148 0.00 23.20;c077 19.20 25.70;c076 19.30 25.20;c080 20.10 26.20;c000 0.00 3.80,26.25\r\nO07KU,UTMU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is standing in the entryway holding a towel.  The person uses the towel to tidy up the window, then puts the towel down on the table.\",table;towel;window,A person uses a towel to clean a window and then puts the towel on a table.,c091 2.30 13.00;c038 2.20 13.00;c009 14.40 20.50;c034 15.00 20.20,23.96\r\nHNPC8,UTMU,Kitchen,4,7,Yes,I person is tidying up their pots on the shelf while cooking by the window.,closet/cabinet;dish;food;shelf;stove;window,A person is in a kitchen and puts away a pot. She then continues to cook something on the stove.,c147 9.80 26.00;c154 6.00 11.00;c114 0.00 11.00;c118 0.00 10.00;c113 0.00 3.10;c081 0.00 7.10;c112 5.80 11.90;c119 0.00 7.50,25.04\r\n2DPEC,ZAWX,Pantry,6,7,Yes,A person is sitting in a chair in their pantry pouring a glass of soda and watching a movie on their laptop.,bottle;chair;cup;glass;laptop;table;water,\"A person is sitting in a chair watching something on a laptop and getting a drink;person sitting in the chair, watching a movie in the laptop. opened the cap of the water bottle, poured some water in the glass and drank it\",c059 0.00 32.00;c108 10.10 24.10;c051 22.10 32.00;c106 23.80 32.00;c011 0.00 32.00,30.62\r\nPQZBX,0KZ7,Stairs,4,6,Yes,A person is tidying up a chair near some stairs by grasping some books and making a neat pile.,book;chair,Person standing in hallway picking up books and stacking them onto a chair.,c030 0.00 12.60;c026 0.00 16.20;c028 12.40 17.20,19.75\r\nURWX9,PKND,Living room,3,3,Yes,Two people are watching television in front of a window. The two persons put down their food and start snuggling.,food;sofa/couch;table;television;window,One person is standing watching tv while he is having a conversation with another person. The other person is following along with the conversation as they both sit down to watch tv.;Two people watch TV. Then they sit down at the same time on a couch and start to eat some food.,c063 22.10 31.00;c151 7.00 19.20;c132 14.50 22.80;c009 5.90 18.40;c061 0.00 17.30;c123 10.30 32.00,31.42\r\n004QE,Z68L,Bathroom,7,7,Yes,A person is opening a bottle of medicine and then standing while holding a cup of coffee in the bathroom.,coffee;container;cup;doorway;food;medicine;toilet,\"A person sits on a toilet holding a cup of coffee and a container of medicine, unscrews the lid of the container, then stands and takes a drink from the cup.\",c106 14.20 22.50;c107 0.00 32.00;c128 0.00 32.00;c128 7.30 13.20;c154 9.90 21.30;c151 3.20 11.20;c097 1.10 7.10;c061 2.10 32.00,30.58\r\n76DE2,PO5L,Bathroom,5,5,Yes,\"A person stands in the bathroom, watching something on their laptop which sits on a table. The person begins laughing.\",counter;laptop,\"A person walks over to the counter, and coughs twice.;The person in this video goes over to a computer and sees something humerous.\",c051 6.30 23.90;c149 9.90 17.30,24.42\r\nW2P61,0KZ7,Bathroom,5,5,Yes,A person is running some water in the sink. They tidy the area near the sink. Another person walks in holding some dishes and puts them in the sink.,dish;doorway;medicine;shelf;sink;water,A person is organizing some products around a bathroom sink. Another person walks in and places dishes in the sink and then walks out.,c119 11.20 25.40;c120 8.50 13.90;c128 8.40 13.80;c119 18.90 23.90;c082 0.00 29.00;c097 11.90 17.60,28.00\r\nXPOKK,WQ8Z,Living room,5,6,Yes,\"A person looks at a picture, throws a shoe, then starts drinking.\",beverage;couch;drink;floor;picture;pillow;shoe;table,\"A person is sitting on the floor looking at a picture. A person then drinks a beverage.;Person sitting on couch  looking a picture and deciding to leave it on the couch before he grabs a shoe, throws it, and then takes a drink from the table and drinks it.\",c054 8.20 16.00;c086 5.90 12.10;c088 4.10 10.80;c009 12.50 17.00;c080 9.40 14.00;c084 0.00 11.60;c123 0.00 27.00,25.54\r\n07LG5,HRH1,Home Office / Study (A room in a house used for work),6,5,Yes,A person is running and closing a cabinet then putting groceries in the refrigerator.,bag;cabinet;chair;computer;desk;door;food;jar;mouse;phone/camera;refrigerator;snacks;table,\"The video start with a person using a laptop and mouse. The person stands up and walks to a closet closing the door. Then the person walks into the kitchen and grabs some snacks from a shelf, tosses them into the fridge and then closes the fridge door.;A person is sitting in front of a desk working on a computer. The person quickly gets up and walks over to a cabinet door that is open, and closes the cabinet door. The person goes to a shelf in the kitchen and takes peanut butter and a bag and places it in the refrigerator.\",c154 7.60 14.30;c023 14.70 23.10;c011 0.00 13.30;c142 23.30 29.00;c143 14.60 21.40;c150 2.40 13.30;c024 4.90 18.10;c014 11.00 28.00;c006 7.30 21.10;c063 19.60 29.00;c062 19.60 29.00;c112 12.00 29.00;c059 0.00 12.30;c015 0.00 29.00,28.42\r\nWK6XX,C7O9,Kitchen,6,6,Yes,\"One person is laughing on the phone, while another is holding sacks of groceries.\",bag;chair;phone;sign;table,\"One person is sitting at the table in front of a  Happy Birthday  sign, laughing and talking on the phone. Next to the sitting person is a person standing, smiling and holding a bag.\",c015 0.00 32.00;c019 0.00 32.00;c149 0.00 32.00;c011 0.00 32.00;c152 0.00 32.00;c059 0.00 32.00;c020 0.00 32.00,30.79\r\nSQKR0,UTMU,Hallway,5,6,Yes,\"A person is fixing a shelf, then running down the hall and then taking off shoes in a hallway.\",mirror;shoe,\"Person walks down a hallway and looks at a mirror. Peron then runs back down the hallway and takes off their shoes and continues to run.;A person walks down the hallway and into the kitchen, then this person runs back down the hall way  before taking of their shoes.\",c150 8.30 14.50;c057 10.60 18.20,19.42\r\nH5ZG9,HR43,Kitchen,4,6,Yes,A person takes a sandwich out of the refrigerator and begins eating it while cooking something on the stove.,food;pot;refrigerator;sandwich;stove,\"A person opens a refrigerator and grabs a sandwich out of it then starts cooking on a stove.;A person opens the refrigerator, takes some food out and eats it.  Then the person closes the refrigerator, picks up a pot, puts it on the stove and turns on the stove.\",c065 9.10 31.20;c069 5.80 12.00;c156 9.10 32.00;c063 2.30 12.10;c142 9.10 14.00;c067 5.80 32.00;c147 12.90 32.00;c061 6.40 32.00;c143 0.00 3.80,30.67\r\nJFSJF,5LWB,Laundry room,6,7,Yes,A person is sitting on a chair in a laundry room.  The person is reading a book.  Another person walks into the laundry room and starts undressing while talking on the phone.,book;chair;clothes;doorway;phone,A person sits in a chair reading a book while another walks by.,c032 0.00 9.70;c059 0.00 9.70;c015 8.90 15.80;c026 0.00 27.00;c019 6.10 27.00;c003 23.60 27.00;c027 0.00 4.20;c097 5.90 11.00;c155 14.90 27.00,25.96\r\nPZ0MM,QB52,Kitchen,6,7,Yes,\"A person is standing next to the refrigerator, drinking some water.  They pour some more water into their cup, and walk to take a seat at the table.\",dish;doorway;glass;refrigerator;table;water,\"A person is sipping a glass of water. They walk over to the refrigerator to refill their cup. Then they walk through the doorway and set it down on a table.;A person stands in a kitchen, looking at a glass of water. The person drinks from the glass, then goes to the refrigerator and pours more water. The person then walks through a doorway and sets the glass on a table.\",c009 15.10 24.00;c106 0.00 8.00;c097 11.90 19.50;c119 15.10 20.60;c118 0.00 18.60;c108 5.70 14.50;c120 10.80 19.20,30.12\r\nX5QMG,C7O9,Dining room,6,6,Yes,\"One person with a book and a bag leaves the dining room, while another is tidying up by picking up a glass.\",bag;book;chair;cup;dish;glass;light;sign;table,\"Two people are at a kitchen table in front of a window that is decorated with a  happy birthday  sign. One person is sitting while the other is standing. After the standing person leaves with a bag, the sitting person fixes the positioning of the chairs.;Two people are in the dining room one standing the other sitting at the table. One grabs a grocery bag and book off the table and leaves. the second person gets up and arranges the chairs while holding a glass.\",c107 14.80 32.00;c023 2.50 10.20;c020 4.20 12.00;c154 8.30 15.10;c011 0.00 16.00;c110 14.30 22.00;c012 0.00 10.20;c022 4.80 10.60;c059 0.00 11.40;c120 14.20 19.10;c118 3.60 8.20,30.79\r\n7OXNH,OUKK,Basement (A room below the ground floor),3,5,Yes,A person walks into the basement drinking coffee and turns off the television.  The person puts the coffee down on the television and leaves the room.,coffee;cup;dish;television,\"The person walks into the living room, drinks from a white cup of coffee, and then sets it down in front of the television.\",c106 5.10 12.30;c107 4.00 25.20;c109 21.80 26.40;c119 19.20 27.00;c118 7.40 27.00,29.67\r\nVT64S,YMXV,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person takes a box of food from the table, and begins eating it.\",bag;box;food;table,The person is bending over in a chair. They reach in to a desk and remove a snack. They eat the snack.,c061 4.90 33.00;c063 3.50 10.00;c156 12.00 33.00;c020 5.40 33.00;c023 3.60 12.30;c011 0.00 33.00;c021 9.90 16.60,32.04\r\n93ESZ,9PLL,Stairs,5,7,Yes,\"A person sneezes on the stairs while holding a picture, then dresses up by the door.\",book;clothes;picture;shirt;stairs;window,There is a person holding a book standing on stairs by a window.  The person sneezes and walks away from the window.  The person then puts on another shirt over the one they are wearing.;An adult male uses the sunlight on steps to view a book then walks across a room and puts on a short sleeve button up shirt.,c148 5.60 12.10;c026 9.50 21.50;c030 13.20 24.50;c148 16.20 26.20;c153 9.10 19.40;c028 17.70 23.70;c032 0.00 5.20;c148 21.00 30.00;c002 18.60 25.00;c084 0.00 22.70;c086 17.70 22.70;c088 0.00 22.40,29.12\r\n944AK,JVLO,Stairs,5,5,No,\"A person is opening the door with their hand on the doorknob. Smiling, the person tosses a towel to the person on the stairs.\",door;towel,A person is walking down some steps with a towel around his neck and then opens a door.,c008 12.90 29.90;c033 0.00 32.00;c141 12.10 22.80;c152 24.70 29.90;c097 22.00 32.00,30.96\r\nIGEU5,2Q9D,Living room,5,7,Yes,A person is holding a pillow. The person throws the pillow onto the sofa.,pillow;sofa,In this video a person is standing in a room holding a pillow. The person then throws the pillow on tho the couch in the center of the room.,c080 16.20 21.70;c076 0.00 20.70,27.50\r\nD8YOL,4I2W,Living room,3,6,Yes,A person is seen working on their laptop. They begin laughing as they draw their eyes to a nearby television.,chair;laptop;television,\"{};Person sits on a chair working on their laptop, they glance over at the tv to see whats on.\",c132 0.10 14.90;c047 0.00 9.90;c051 0.00 9.90;c052 0.00 10.80;c059 0.00 11.20,29.29\r\nRJQL6,D0RU,Stairs,,5,Yes,A person is walking down the stairs holding a phone.  The person takes a towel off the shelf and plays with it.,clothes;phone;towel,A person is listening on the phone while going up the stairs.  The person picks up a towel and waves it around as they go up the stairs.,c033 7.90 32.00;c035 6.90 12.50;c015 0.00 32.00;c019 0.00 26.70;c000 7.70 32.00;c002 7.70 12.50,31.25\r\nF8UU2,T7C3,Kitchen,7,7,Yes,The person is putting up groceries and tidying the shelf.,bag;cabinet;counter;food;groceries;shelf,\"Person in kitchen bends down, places object on counter, bends down, places bag on counter, opens cabinet, takes food out, straightened cabinet, place food back in.;A person is picking up gabs of groceries from the floor. The person digs through the cabinets.\",c020 0.00 17.50;c023 0.00 16.50;c114 12.40 38.00;c063 11.60 38.00;c130 3.50 15.10;c020 5.70 13.00;c113 10.70 16.20;c062 31.50 38.00;c022 0.00 7.30;c082 12.40 38.00,36.71\r\nJOWAU,YA10,Bedroom,6,7,Yes,A person awakens the sits up as they kick off their shoes and look at their wardrobe.,bed;shoe,\"A person is lying on a bed sleeping. The person wakes up, takes off their shoes, and sits up.;A person awakens on a bed, takes off their shoes and sits up.\",c054 11.10 19.00;c146 5.40 12.80;c134 0.00 20.40;c135 16.20 27.00;c133 4.50 12.90;c057 10.80 19.80,25.92\r\nCLU7Z,L852,Living room,6,6,Yes,A person is opening a window and then taking a picture.,phone/camera;picture;window,\"A person opens a window, takes a picture out the window, and walks away.\",c087 10.70 21.90;c090 6.50 12.30;c016 9.80 24.80;c015 2.10 25.40;c092 8.20 25.80,26.46\r\nKW0K8,H8N1,Living room,1,7,No,\"A person is talking on the phone, laughing. The person sits down in a chair and sneezes.\",chair;phone,A person sits down on a chair while talking on phone and smiling.;Person is walking while talking on the phone then begins to sit on a chair.,c019 0.00 5.70;c059 4.50 9.40;c151 2.80 7.70;c152 8.00 12.00;c015 0.00 12.00,11.33\r\nJ9BXT,TGGT,Garage,6,6,Yes,\"A person was looking for cooking utensils in the garage.  The person didn't find any, but did find an old bag with some dusty pictures in it.  The person started sneezing because of all the dust.\",bag;book;photo album;picture;table,The person walked into a garage area.  The person searched for a bag and placed it on a table.  They pulled a photo album from the bag and sneezed.,c021 22.50 30.50;c086 27.20 32.60;c153 33.90 39.00;c009 23.60 32.90;c027 29.10 35.80;c023 19.20 24.70;c088 30.10 35.00;c028 28.20 32.80;c032 28.00 38.30;c030 17.70 31.20;c022 17.90 28.20,38.17\r\nR2VY3,KL48,Kitchen,7,7,Yes,\"A person is seen lying their sandwich on a plate. They begin walking up to the door and reach for the doorknob, opening it.\",closet/cabinet;dish;door;sandwich,A person is standing in the kitchen eating something. The person then goes to the pantry and opens the door.;There is a person in a kitchen .. That person walks to a door and opens it.,c141 2.30 6.70;c118 0.00 2.60;c008 2.60 7.00;c065 0.00 4.00;c067 0.00 6.10;c113 2.90 7.00;c068 1.80 6.30,6.33\r\nDYWR1,XXN8,Living room,6,6,Yes,A person is smiling as they look at their camera at the table. They notice their shoes are untied and bend down to tie them but begin sneezing.,camera;phone;shoes;table,A person is holding a phone or camera in the air then they beging to sneeze and they tie their shoelaces.,c015 0.00 6.90;c153 8.50 27.90;c087 0.60 6.20,30.42\r\nIH3GN,EIO2,Dining room,2,7,Yes,\"A person walks into the dining room, eating food from a box.\",box;doorway;food;table;towel,\"A person is walking through a doorway holding a towel and eating food, they then walk aroudn the room.;Person coming into the room eating, walking around in circles and looking on the table.\",c061 0.00 31.00;c156 0.00 31.00;c097 0.00 5.20,30.46\r\n8TIC7,YA10,Bathroom,6,7,Yes,\"A person runs through the bathroom doorway, eating a sandwich. The person takes a camera from the bathroom counter then quickly leaves.\",camera;doorway;food;mirror;phone;sandwich;vanity,\"A person runs through a doorway into the room eating a sandwich. The person looks at the mirror and picks up a camera from the vanity and then runs out.;A person runs into a bathroom while holding and eating a sandwich.  They pick up a camera and look into the mirror, and then exit back through the bathroom doorway.\",c018 9.70 14.10;c097 7.00 12.90;c065 6.10 15.30;c067 6.10 16.40;c150 5.00 12.20;c156 6.20 15.10;c061 5.90 17.60;c096 9.70 16.10;c062 10.70 15.70;c015 10.50 15.80,26.79\r\nR9NRA,2Q9D,Living room,6,6,Yes,Person A plops onto the couch taking off their shoes.  Person A is pouring a glass of water and snuggling into the couch to relax.,cup;dish;glass;pillow;pitcher;shoe;sofa;water,\"A person walked over to a sofa, sat down, and took off their shoes. The person then picked up a pitcher and a glass from the floor and filled the glass with water. The person put the pitcher back on the floor and put their head on the armrest of the sofa, while resting the glass on the sofa cushion.\",c107 15.10 32.00;c109 19.40 27.90;c122 23.90 32.00;c151 0.00 4.00;c110 11.40 17.60;c057 0.20 11.40;c123 0.00 32.00;c108 12.50 21.90;c119 8.90 28.70;c078 21.60 32.00;c118 8.90 28.70;c120 9.70 16.00,30.75\r\nWK5PL,PO5L,Closet / Walk-in closet / Spear closet,4,7,Yes,\"A person is closing a closet door after removing a box of clothes, they then throw the box on a chair and walk away.\",box;closet;door,A person is picking up a box from a closet then closing the door before throwing the box across the room.,c040 4.00 16.60;c112 6.40 12.40;c043 2.20 19.40;c042 2.20 19.40;c006 6.40 12.40,22.58\r\n9E89H,L4ZP,Bedroom,6,5,Yes,A person is fixing a camera. Another person is watching from the doorway.,chair;paper/notebook;sofa/couch;table,A person is sitting down in a room while another person stands.  They are fidgeting with an object on a table.;A person is sitting at a desk writing while another person watches the person at the desk gets up and they both walk out.,c154 39.00 44.70;c011 0.00 43.30;c014 11.80 43.50;c059 0.00 42.60;c123 0.00 44.00;c145 0.10 43.00,46.08\r\nFQIM2,WG9D,Bedroom,3,7,Yes,\"After undressing their clothes, a person proceeds to open a bedroom window.\",clothes;window,A person takes off a jacket and looks out the window.,c092 2.60 7.00;c001 0.00 4.20;c155 0.00 4.10;c003 0.00 4.90,5.88\r\nFTIPX,9Y7F,Bedroom,4,5,Yes,A person is lying on the couch with a blanket. Another person is holding a broom.,blanket;broom;chair;paper/notebook;sofa,A MAN IS SITTING DOWN ON A CHAIR WHILE READING A LETTER AND PUTS IT DOWN WHILE CONVERSING WITH ANOTHER MAN WHO IS STANDING UP.  UP,c072 0.00 31.00;c098 0.90 31.00;c154 1.00 31.00;c115 0.00 31.00;c059 0.00 31.00;c115 0.00 12.20;c070 0.00 22.00;c070 0.00 3.70,30.08\r\nGXDGV,0EUL,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person holding a camera reaches for a glass of water and drinks it.,camera;cup;glass;phone;water,A person puts a camera around their neck and then drinks from a glass.,c106 7.30 36.80;c107 6.70 37.00;c110 5.10 11.30;c017 3.20 8.60;c015 0.00 37.00,35.62\r\nS0YID,0KZ7,Kitchen,6,6,Yes,two people are in the kitchen  tidying up the cabinets while laughing and drinking coffee,cabinet;coffee;cup;dish;shelf,Two people are standing in a kitchen. One is holding a red cup and reaching into a cabinet. The other person is also holding a red cup and is stacking dishes into a cabinet.,c107 0.00 22.70;c114 21.30 28.00;c106 0.00 31.00;c118 0.00 31.00;c153 14.20 21.60;c119 0.20 6.00;c119 14.60 19.50;c119 17.20 22.40;c081 0.20 6.00;c081 14.20 19.20;c081 17.20 22.50;c120 0.00 4.10;c120 5.90 10.70;c120 12.10 17.70,29.83\r\nZ0Q5D,H8N1,Bedroom,4,7,Yes,A person is lying under a blanket on a  bed and smiling while holding a camera.,bag;bed;blanket;phone,Person pulls out phone and begins playing with it then sets it down and pulls the blanket further up.;A person is sitting in bed texting on a phone while holding a blanket. The person puts the phone down and pulls the blanket up.,c135 0.00 22.00;c072 0.00 22.00;c015 0.00 21.40;c017 13.20 18.30;c018 0.00 4.90;c021 0.00 3.70;c016 0.20 12.40,21.08\r\nZAJG5,DXDI,Bathroom,6,6,Yes,\"One person with a stack of clothes starts undressing, laughs, then washes up. A broom is in the bathroom.\",clothes;hand;shirt;sink,\"Person putting clothes on the sink takes off a jacket, wash face and hand at the sink.;The person in the bathroom puts a stack of clothes down. The person undresses and smiles. The person turns and washes with water from the sink.\",c000 0.00 5.30;c155 3.60 11.60;c155 8.40 13.20;c139 15.70 24.30;c001 0.60 6.20;c152 8.50 15.80;c004 0.00 5.40,30.92\r\nNFAA5,JVLO,Hallway,,,No,A person is running and smiling down the hall. Another person is holding some food and a cup of coffee.,back pack;backpack;bag;doorway;glass;phone,\"A person walking really fast out side on a sidewalk ,carrying a back pack coming in a door from outside .The person enters a room where there are people standing sitting and one is on a phone.;A person is walking into their home with a book bag in hand. Another person is in the house talking on the phone\",c152 22.90 32.00;c019 21.30 32.00;c015 21.50 32.00;c097 4.10 10.90;c020 0.00 23.60,31.25\r\nLQ0LM,PO5L,Bathroom,7,7,Yes,\"A person sitting on the toilet begins tidying up the area around them.  They stand up, grasping the sink counter to give leverage as they do.  Reaching for the medicine cabinet doorknob, they open it, letting the light from the bathroom shine in.  They take a sandwich out from the cabinet.\",cabinet;dish;medicine;sandwich;sink,A person walks into the bathroom the sits down on the toilet. They sort things on the sink then open the cabinet  below. They then get up and take a plate from there and close the cabinet and leave the room with the plate.,c112 12.10 17.90;c151 16.70 21.50;c113 14.00 19.00;c154 16.00 21.00;c120 20.00 25.00,31.33\r\nP7TT1,8IOD,Bathroom,5,7,Yes,\"One person throws some shoes in the corner, then tidies up some clothes on the floor and smiles.\",clothes;floor,A person is tidying up in  a bathroom they are folding clothes and throwing them on the floor,c127 0.00 32.00;c004 3.00 32.00;c000 3.60 11.50;c000 8.50 17.10;c000 14.20 22.20;c001 7.60 12.50;c001 13.10 17.40;c001 18.20 22.50;c125 3.80 32.00;c126 1.40 6.60;c002 5.80 15.00,30.50\r\nUCFCB,2RTW,Living room,6,6,Yes,\"After playing a few games, a person stands and puts a laptop in a bag.\",bag;couch;laptop;sofa,\"A person is using a laptop on the sofa, then closes it before standing up to put the laptop away in a bag.;Person sitting on couch typing on laptop. Person touches screen and type again. Person then closes laptop, get up and puts laptop away in bag.\",c021 27.00 33.00;c052 0.00 27.00;c047 0.00 32.90;c051 0.00 27.00;c046 22.20 26.70;c049 27.20 33.00;c154 23.70 28.50,31.83\r\n0M6IY,2RTW,Living room,6,6,Yes,Person sweeps the floor with a broom.   Person the puts the broom away. Person takes a nap on the sofa and awakens after hearing a noise.  Person answers the phone.,blanket;broom;couch;cover;floor;phone;sofa,A person sweeping a floor with a broom .The person places the broom against the wall walks across the room and gets on a couch and covers up.The person grabs their phone and holds it up to their ear.,c099 8.60 14.00;c122 13.80 24.60;c018 23.50 29.50;c146 20.60 27.20;c098 0.00 13.80;c102 0.00 12.90;c015 24.40 31.00;c019 25.60 31.00;c072 13.50 31.00;c127 0.00 13.40,30.29\r\nCV5YJ,2RTW,Living room,6,6,Yes,\"A person closes a phone and then takes a laptop from a shelf, leaving homework unattended.\",homework;laptop;paper;phone;shelf;sofa;table,A person is doing homework while on the phone. A person then gets up and grabs a laptop;Person sitting on couch writing a paper and then getting up to get something on a shelf.,c151 24.00 29.00;c019 0.00 26.00;c145 0.00 26.00;c123 0.00 28.70;c015 0.00 28.50;c047 28.10 35.00;c154 24.50 30.10;c017 22.50 28.50;c050 26.90 33.60;c014 0.00 26.00,33.75\r\n1OVB8,BYF9,Kitchen,5,3,Yes,A person turns on the light in their dining room. The person sneezes while playing a game on their  phone and sitting in a chair.,chair;light;phone;table,A person is sitting at a table while texting on a phone. The person sneezes and then turns off the lights.,c016 0.00 18.60;c059 0.00 18.90;c105 18.60 24.00;c153 11.30 17.80;c154 13.80 20.10;c011 0.00 18.90;c015 0.00 24.00,23.17\r\nN513D,2RTW,Living room,6,6,Yes,\"A person is putting a book in a hall cabinet, while another person is sitting and playing games on a phone.\",book;cabinet;game;phone;shelf;sofa/couch;table,\"Person one is sitting on the couch in the living room playing on their phone. Person two is holding a book, and places it into a cabinet shutting the door, and then leaving the room.;One person is sitting on a couch playing with a cell phone while another person looks at a book then puts the book into a storage table and walks away.\",c028 3.50 13.90;c113 13.80 30.70;c027 1.70 14.20;c015 5.50 13.30;c026 10.90 21.00;c032 5.90 18.40;c025 1.80 6.30;c027 0.00 6.00;c016 0.00 31.00;c026 0.00 10.80;c028 13.50 18.40;c112 15.00 19.80;c123 27.00 31.00;c081 4.40 16.40;c029 0.00 19.50;c123 0.00 31.00;c081 13.40 20.90,30.38\r\nXEEDH,2RTW,Living room,6,6,Yes,\"One person is leaving the area eating food, while another is tidying up books and pictures on a small table.\",bag;food;paper/notebook;table,A person is tidying up a table while another person is eating food from a bag before walking out the door.,c012 0.00 32.00;c061 0.00 21.70;c156 0.00 20.30;c116 0.60 17.90,30.54\r\nCPDJD,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person at a desk holds out a cup so another person can pour a cup of coffee before grabbing a bag and leaving.,bag;chair;coffee;cup;desk;door;table,A person is at a desk sitting down while another person is pouring coffee then taking a backpack and walking out the door.;A person sitting at the table pours coffee for a person standing up. The second person picks up their bag and leaves.,c020 11.30 20.90;c011 0.00 34.00;c108 1.10 12.40;c008 25.60 31.10;c059 0.00 34.00;c023 14.30 19.80;c006 30.90 34.00;c141 30.90 34.00;c097 30.90 34.00;c009 30.90 34.00;c109 12.30 17.30;c110 0.00 5.50;c107 0.00 17.60,32.83\r\nERGN3,C7O9,Pantry,6,7,Yes,\"A person sits in the pantry, eating a sandwich. The person finishes the sandwich, wraps up in a blanket, and laughs.\",blanket;food;sandwich,Person sitting in the kitchen eating and then covering up with a blanket.,c072 16.50 31.00;c065 0.00 17.60;c156 0.00 17.60;c073 13.20 28.00;c070 14.20 31.00,30.33\r\nAZZ7V,YMXV,Bedroom,5,5,Yes,\"The person was snuggling in bed with a pillow, and got up to start putting on clothes from the wardrobe.\",bed;blanket;clothes;pillow,\"The person holds a pillow in bed, moves around a little bit then gets up and hangs clothes that is strewn on the person's bed onto a rope with more clothes.;A person lying on a bed snuggling a pillow awakens.  They get out of bed and and begin grabbing clothes from a clothes line hung in the room.\",c076 0.00 13.90;c001 16.50 31.10;c004 16.80 31.40;c134 0.00 11.60;c000 11.00 28.80;c002 10.80 16.00;c146 11.30 20.80;c071 28.80 32.00;c154 28.80 32.00;c070 28.80 32.00;c075 28.80 32.00,30.75\r\nVTOBQ,YMXV,Home Office / Study (A room in a house used for work),7,7,Yes,A person is holding a broom and opening a window.,broom;doorway;window,a person walked in to the room with a stick with something on the end and opened the windows of the room,c090 10.60 27.70;c098 0.00 32.00;c097 0.00 4.50;c092 10.80 32.00,30.79\r\n1ZAN8,R1OT,Bathroom,6,7,Yes,\"A person is tidying up their bathroom. They clean the glass in the mirror, leave the room, and close the door.\",bottle;door;mirror;shelf;towel,person adjusting the shelf and  touched the towel an the hanger. cleaned the mirror with the towel on shoulder. left the room closing the door;A person tidied some items on a shelf and wiped  a mirror with a towel.  The person went through and closed a door.,c095 9.90 22.90;c082 0.00 9.90;c037 10.10 20.80;c006 23.00 32.00;c033 0.00 32.00;c097 22.80 29.00;c038 9.90 22.20,30.96\r\n5SJ89,KQI6,Bathroom,6,3,Yes,\"A person is fixing the doorknob on a door in the hallway.  A second person is lying on the floor, photographing the first person with a camera.\",case;door;floor;hardware;phone,A person is trying to take a picture with a cellphone.  Another person is trying to unlock the door in the bathroom.;One person is standing at the door doing something to the hardware using things from the case on the floor.  The other person is behind the first one giving directions and holding a camera.,c140 2.10 24.40;c015 0.00 32.00;c007 0.30 32.00;c087 17.40 32.00;c141 1.60 32.00;c016 0.00 32.00;c125 0.00 32.00,31.25\r\nT0LOH,3H6W,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A smiling person is standing in their entryway holding a pile of clothes. The person then sits on a chair.,blanket;chair;clothes,\"A person walks to door holding clothes while smiling. The person sits on a chair, stands and leaves.\",c152 1.70 20.70;c151 10.20 15.40;c000 0.20 21.70;c070 0.10 21.40;c073 0.00 4.20;c059 10.60 16.00;c072 3.00 20.20,21.50\r\nU2VK5,D0RU,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,Person standing by door with groceries starts smiling and laughing.,box;door;glasses;medicine;water bottle,\"A person walks through a doorway holding a box and laughs.;A person walks through a doorway carrying a yellow box with a wallet, glasses, medicine, and a water bottle in it.\",c152 14.40 27.20;c149 14.30 27.60;c097 9.50 24.90;c040 10.00 33.00,31.50\r\nQIBAJ,4I61,Laundry room,4,7,Yes,\"A person is in a laundry room grasping a broom, they then sit down and take a sip of water from a glass.\",broom;cup;dish;doorway;floor;glass;water,\"A person walks into the room, picks up a broom, sits on the floor and takes a drink of water from a glass that was on the floor. The person then puts the glass back on the floor,stands, and walks away with the broom.\",c106 16.30 23.40;c151 11.90 19.20;c154 23.80 29.40;c125 15.20 27.80;c109 21.50 27.80;c100 1.40 19.50;c098 1.50 31.20;c120 13.20 19.90;c097 1.00 6.30;c107 15.20 27.20;c110 12.70 19.20,31.75\r\nEGVGL,Z68L,Recreation room / Man cave,5,4,Yes,\"A person is lying on a couch, grasping a pillow and sneezing. They sit up, grab a picture from a bag, and look at it.\",bag;picture;pillow;sofa,A person is lying on a couch playing with a pillow. Then they open a bag and look at a picture.,c021 17.50 23.00;c076 0.00 21.40;c088 19.50 26.90;c122 0.00 17.80;c154 25.90 30.90,32.21\r\nQQRP2,EIO2,Home Office / Study (A room in a house used for work),5,7,Yes,A person is eating food and then throwing a wadded up piece of paper at the door of the home office / study.,chair;coat;door;food;lap top;something,{};A person sitting a computer desk working on a lap top,c061 0.00 12.60;c156 0.00 11.20,30.17\r\n2BS0V,HR43,Laundry room,6,7,Yes,\"One person walks in with a broom and a folded towel, then leaves, closing the door behind them.\",blanket;broom;door;dryer;towel,the person walks into the laundry room holding a towel and broom. The person closes the dryer and opens the door and walks out.,c008 24.90 31.30;c098 1.30 30.30;c033 0.10 30.30;c097 25.60 32.50;c070 0.20 31.30;c006 29.30 35.00;c141 24.90 30.10,34.17\r\nYBJJ0,HR43,Kitchen,6,7,Yes,\"A person is standing in their kitchen washing dishes in the sink. The person sneezes, and begins cooking dinner.\",dishes;sink,A person is putting some dishes into a sink,,36.12\r\nPIEHJ,4YWP,Dining room,5,7,Yes,A person is talking in their phone and smiling. They put down the phone and pick up a sandwich and start eating it.,chair;food;phone;sandwich;table,There is a person sitting at a table talking on the phone. That same person stops talking and starts eating a sandwich.,c065 30.00 38.00;c019 0.00 30.70;c156 30.90 38.00;c011 0.00 38.00;c017 27.60 33.50;c059 0.00 38.00;c149 16.10 21.90;c015 0.00 33.10;c152 0.00 38.00;c069 29.60 38.00,36.50\r\nJQKR5,UTMU,Living room,6,7,Yes,A person is sitting on a sofa in their living room while looking at some pictures in a photo album. The person closes the album and starts eating a sandwich.,bed;book;couch;food;picture;sandwich;sofa,A person sits on a couch and looks at a picture before taking a sandwich and eating it.,c065 26.40 32.70;c123 0.00 2.80;c156 26.40 41.90;c028 20.90 26.00;c061 23.90 43.00;c026 0.00 25.50;c135 0.00 43.00;c027 0.00 4.70;c025 19.70 24.90;c032 1.20 24.30;c067 25.10 43.00,42.00\r\n8IPWO,XXN8,Bedroom,4,7,Yes,A person is sitting down drinking water while reading a book and doing homework.,book;cup/glass/bottle;homework;water,The person sat down in a chair and took a drink of water. The person opened a book and flipped through some pages of two books.,c106 1.80 8.90;c027 8.70 14.40;c151 0.00 3.60;c025 29.50 32.00;c145 29.50 32.00;c032 29.50 32.00;c026 29.50 32.00;c030 29.50 32.00,31.21\r\n14Z7D,3531,Basement (A room below the ground floor),4,7,Yes,A person runs to the basement door while eating a sandwich. The person tries to open the door but the doorknob is locked. Realizing the door is locked the person goes and does the dishes.,door;food;sandwich,\"This person is eating, walking, and trying to open a door\",c141 4.50 23.20;c065 0.00 30.00;c156 0.00 29.40,30.92\r\nLBGFT,P6LJ,Living room,6,6,Yes,A person walks into a laundry room and sits on a chair. The person removes their wet shoes and grab a towel off a shelf.,chair;shelf;shoe;towel,A person walks over to a chair and sits down.  They take off their shoes. They grab a towel from the shelf then throw it back down.,c059 3.60 9.00;c036 16.50 21.40;c081 16.80 21.30;c151 4.00 8.90;c035 11.10 19.60;c057 4.30 15.00,21.42\r\nUKOAU,6RE8,Garage,7,7,Yes,A person is leaving dishes in the sink and then running in place in the garage.,dish;doorway;phone;sink,This person is standing in front of a window washing dishes.  That same person then leaves the room and goes into another room and is talking on the phone.,c150 9.90 23.90;c121 0.00 11.60;c019 21.70 31.00;c118 3.80 9.10;c119 6.20 12.30;c097 12.10 16.90,30.38\r\nA45RV,HRH1,Pantry,4,4,No,There is a blanket on a chair next to the pantry. A person comes in the kitchen and is laughing while opening the pantry door to get a can of food.,closet/cabinet;door;food;groceries;pantry;shelf,A person is seen closing a door then sneezing while grabbin good from a shelf.;A person is sneezing. A person then looks through a pantry for a grocery item,c008 4.60 11.10;c061 14.20 24.00;c063 14.20 24.00;c113 4.20 10.20,22.79\r\nOADOE,2Q9D,Kitchen,5,7,Yes,A person is standing in the kitchen next to the stove.  Then the person twists the doorknob and leaves the kitchen.,door;food;pot;stove,\"A man is standing at a stove cooking something. Then he leaves, closing the door behind him.;A person puts a pot on a stove, then turns around and walks away out a door.\",c141 18.10 23.40;c147 0.00 9.00;c006 21.10 25.00;c008 18.00 25.00;c097 20.40 25.00,24.46\r\nDN0CB,Z68L,Bathroom,6,5,Yes,\"A person grasps the light switch and starts putting on makeup, then finishes by tidying up the room before running out, bag in hand.\",bag;doorway;hair;hand;light;makeup equipment;mirror,\"An unidentified hand turns on a light switch. Then a full person enters the room holding a bag. The person opens the bag and removes make-up equipment and begins applying makeup while looking into a mirror. The person makes tidy the area, turns off the light and leaves holding the bag after putting the equipment back in the back and closing it.\",c105 66.80 77.00;c104 66.40 75.80;c020 20.50 31.90;c021 22.10 31.50;c096 36.10 59.50;c144 65.60 79.00;c023 62.50 79.00;c022 62.10 79.00;c097 19.00 26.50,77.67\r\n2ZXJ5,HJJ4,Living room,6,7,Yes,\"A person is sitting on their sofa drinking water, then the person starts sneezing into a pillow.\",couch;glass;ottoman;pillow;sofa;water,A person sitting on a sofa drinking water then puts the water down to sneeze into a pillow.,c076 9.00 16.80;c077 12.40 18.00;c106 0.00 10.10;c123 7.50 12.70;c153 8.70 18.00;c109 5.70 11.10,16.92\r\n58YA5,0KZ7,Living room,3,7,Yes,A person is snuggling on the couch then they pick up a phone from the table and begin to play with it.,couch;phone;sofa;table,A person is sitting on the couch and then stands up and takes a phone from the table and opens it and begins to look at the screen.,c123 0.00 12.80;c015 13.30 28.00;c016 15.60 28.00;c018 12.50 17.70;c154 8.30 13.40;c122 0.00 10.80,26.96\r\nLRJS4,3H6W,Recreation room / Man cave,6,7,Yes,\"A person is lying down, awakening, moves the book from their chest, and sneezing, gets up and looks in the mirror over the cabinet.\",book;cabinet;couch;hair;mirror;sofa,\"A person is lying on a sofa while holding a book, then sits up and sneezes before leaving the room to inspect himself in a mirror in the entryway.;A person is lying on a couch with a book, they then awaken and sneeze and walk over and take a mirror from a desk and look at themselves in it.\",c093 16.60 27.00;c096 18.20 27.00;c026 0.00 12.20;c154 6.40 12.20;c123 0.00 9.70;c094 20.60 25.20;c146 2.40 7.70;c153 5.70 11.70;c122 0.00 6.80;c144 18.20 24.40;c028 3.20 9.10,25.71\r\nDZVTI,4I2W,Kitchen,6,6,Yes,A person is closing a refrigerator while another person is fixing a vacuum.,floor;refrigerator;vacuum,A person opens the fridge while another puts together a vacuum.,c136 0.00 30.00;c143 1.90 13.20;c137 0.00 30.00;c127 19.90 30.00,29.08\r\nYPTDT,R1OT,Bedroom,5,5,Yes,A person is undressing in a bedroom. They throw the blanket off the bed and sit down.,bed;clothes;shirt,A person is sitting on a bed. They take off some clothes and throw them.;A person sitting on a bed takes off their shirt and throws it.,c135 15.10 31.00;c003 8.50 13.30;c155 0.40 13.00;c151 11.70 19.30,29.96\r\n1KKYX,MR42,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person runs into the closet, grasping a pair of shoes. The person places the shoes into a box in the corner.\",box;doorway;shoe;wardrobe,\"A person picks up shoes from the floor, carries them over to the wardrobe and places them inside a box.;The person picked up a pair of shoes from the floor next to a mirror. The person then took the shoes into a closet and placed them in a box. The person left the closet.\",c056 0.80 7.30;c097 8.90 14.40;c053 1.00 19.60,25.71\r\n4Q3N9,MR42,Bedroom,6,6,Yes,\"As the person walks into the closet smiling, they realized the glass mirror is dirty and starts laughing.\",doorway;mirror,A person walks in to a room and touches a mirror.The person turns and walks a crossed the room to another and walks in to it .;Someone walks into a room and looks at themselves in the mirror. They smile and walk into the bathroom.,c097 0.00 5.40;c094 5.30 11.20;c096 2.30 11.10;c152 6.00 11.00;c149 6.20 11.60,20.17\r\nELRP9,MR42,Bedroom,6,6,Yes,A person is taking food through a doorway while grasping the plate.,closet/cabinet;dish;doorway;food;glasses;plate,\"A person wearing glasses takes three pieces of paper off the bed, and then throws them back on the bed. Then, the person takes a plate of food off of their bed, and walks over to the\",c061 6.50 44.00;c063 5.90 12.80;c120 3.30 14.30;c097 22.70 37.70;c118 4.00 44.00;c113 14.80 20.70;c112 39.10 44.00,42.50\r\nS8TT8,D0RU,Living room,6,7,Yes,A person walks into the room and starts putting away clothes. They then sit down in a chair.,chair;clothes;floor;sunglasses,A person walks in a room and puts some clothes on a bench. Then the person sits down on a chair.,c059 23.50 31.60;c001 13.30 23.60;c004 12.10 23.70;c127 12.30 22.90;c002 24.00 30.00;c003 23.00 30.00,32.88\r\nD7ICK,YMXV,Living room,6,7,Yes,\"A person is walking into a bedroom, they close the door and turn on the television on as they turn their phone off.\",desk;door;phone;table;television,\"A person walks into a room and switches on a TV, then removes their phone from their pocket and looks at it. They then set down their phone on a desk and look back at the TV.;A person walks into a room and turns on a television, then starts playing with a phone before putting it on a desk\",c015 12.00 20.20;c132 7.00 32.00;c009 24.90 32.00;c097 0.00 5.70,31.00\r\n6B9D8,0KZ7,Stairs,3,7,Yes,A person is sitting on the stairs holding a laptop and has a blanket draped across their lap.  The person sneezes and fixes their glasses that became crooked.,blanket;glass;laptop;stairs;television,{};A person is sitting on stairs with a blanket working on their laptop.,c051 0.00 32.00;c072 0.00 32.00;c153 15.60 21.00,30.58\r\nIDFTJ,ZAWX,Stairs,4,6,Yes,A person is grasping a pair of shoes. They put them in a box and leave.,box;shoe;stairs,\"A person picks up a pair of shoes and puts them into a box, they the begin to walk down the stairs and smile.;The person takes a pair of shoes off a shelf and puts them into a box. The person then carries the box down the stairs\",c054 1.50 13.40;c154 18.70 24.20;c056 0.00 6.70;c042 19.30 31.00,29.54\r\n26YPV,BYF9,Closet / Walk-in closet / Spear closet,6,7,Yes,One person is closing the wardrobe while another is working on the light.,closet/cabinet;light;wardrobe,A girl opens and closes the cabinet door and touches the edges. A man is fixing the light fixture on the wall.,c103 0.00 22.00;c112 0.00 5.10,21.12\r\nUT4QT,XXN8,Bathroom,6,7,Yes,\"One person pours something in the sink and takes a drink, then throws a dirty towel by the door.\",cup;sink;towel,\"The person pours water into a cup from a sink. The person drinks some of the water, and dumps the rest out back into the sink.\",c033 20.30 26.20;c109 18.10 23.00;c106 7.90 20.10;c110 0.90 7.50,30.25\r\nHTEB3,WQ8Z,Living room,4,6,No,A person sitting with a book on a sofa. The person smiles then gets up and walks away.,book;couch;sofa;table;window,\"A person sits on a couch reading a book. The person then gets up and leaves the room.;The person is reading a book,  The person gets up and leaves the room.\",c032 0.00 22.90;c123 0.00 22.70;c154 18.90 23.30;c011 0.00 22.30,24.88\r\n19BHU,H8N1,Kitchen,6,6,Yes,A person is talking on the phone while they are throwing some trash away.  Then they stop and begin pouring out an old pot of water sitting on the stove.,bag;dish;food;groceries;phone;stove;water,Person is walks to sink pours water in pot and puts it on stove while talking on phone.,c147 2.10 29.20;c015 0.00 30.00;c019 0.00 29.10;c022 6.70 18.70;c119 16.90 26.50;c130 6.30 18.90,29.00\r\nS7FHA,HR43,Living room,4,7,Yes,A person is sitting in their living room. They are watching something on their laptop which is lying on the table. They get up and start walking towards the door.,door;laptop;sofa;table,A person is sitting on a couch working on a laptop. Then they get up and walk to the front door.,c052 0.00 24.80;c011 0.00 25.10;c154 19.70 25.10;c123 0.00 25.10;c049 0.00 3.10,26.21\r\n2SSGN,D0RU,Bathroom,5,7,Yes,A person is smiling at the light in the bathroom. The person then begins to tidy the clothes on the floor.,clothes;floor;light;towel,person in a bathroom rubbing eyes holing cloth throws water on the floor,c126 28.70 33.00;c154 0.00 14.20;c033 0.00 33.00;c034 17.90 24.40;c005 18.20 30.80,31.96\r\nAD9MO,XKTB,Closet / Walk-in closet / Spear closet,7,6,Yes,\"A person is putting a broom in the pantry. They close the door, turn off a light, and leave.\",broom;closet/cabinet;door;light,A person is opening a door and turning on and off a light while holding a broom.,c105 22.70 27.00;c006 18.20 25.60;c008 2.40 9.50;c099 1.50 10.20;c113 0.60 7.60;c098 0.00 7.30;c112 17.50 22.90,25.83\r\nG0BKH,3VLX,Closet / Walk-in closet / Spear closet,7,5,Yes,\"One person tidies up the area, throwing a pillow and some dishes into a large box.\",box;doorway;light;pillow;table,\"A person is taking a box from the closet and placing it on a table, they then begin to place pillows on the box and turns off the closet light.;A person picks up a box and sets it on a small table. They put a pillow into it and turn off the light in their closet.\",c040 3.20 10.90;c043 0.70 6.50;c077 21.90 30.70;c009 2.50 12.20;c042 2.10 17.90;c076 5.80 13.40;c105 7.80 24.30;c097 29.60 35.90,35.58\r\nQXEWQ,ZSRZ,Closet / Walk-in closet / Spear closet,3,6,Yes,A person is standing in the doorway and then taking a pillow out of the closet.,closet;door;pillow,\"A person is opening a closet door, they then take out a pillow and put it under their arm.;A person opens the closet door and removes a pillow from inside.\",c079 2.20 11.00;c113 0.70 7.10;c008 0.00 6.40,9.96\r\nW3LUB,X5XO,Stairs,7,7,Yes,\"A person is sitting on the stairs with a blanket over their lap and a glass of water in their hand.  The person drinks the water while looking at their phone, then stands up and walks down the stairs, throwing their phone into a bag at the bottom of the stairs.\",bag;blanket;cup;floor;glass;phone,A person is sitting on a stairway drinking something while looking at their phone. The person picks up a blanket and puts the phone into a bag.,c016 4.20 17.30;c106 0.00 10.50;c070 0.00 31.00;c154 15.00 21.30;c017 22.40 28.10;c072 0.00 17.20;c125 0.00 19.80;c015 6.00 16.40,30.29\r\n759UE,4I61,Bathroom,7,7,Yes,\"A person opens their bathroom door, then takes a box from the sink.\",box;door;sink,A person is opening a door and closing a box then walking away with the box.,c039 11.00 19.20;c043 17.90 27.10;c008 2.60 10.40;c141 2.30 9.90;c097 2.80 11.80;c040 18.70 26.80,28.83\r\nHPKU5,YMXV,Bedroom,5,6,Yes,\"Person is throwing blanket on shelf, another person is eating cooking looking at camera.\",blanket;food,Person is laughing while hanging up their blanket while another person eats food while sitting on the floor.;The person is folding and hanging clothes. Another person is sitting on the floor and eating.,,31.38\r\nBB25Z,EIO2,Bedroom,6,6,Yes,A person is sitting on the bed and smiling. The person begins standing and removing their clothes.,bed;clothes,Person lying on a bed stand up and take off a shirt then throw the shirt on the chair;A person is lying on a bed. They stand and begin undressing.,c134 0.00 10.50;c155 9.20 28.40;c003 25.30 31.00;c154 6.60 12.70;c001 26.20 30.80;c000 16.00 20.60,30.17\r\nU4XV9,QB52,Basement (A room below the ground floor),7,7,Yes,A person awakens then stands. The person puts on shoes then grabs a towel before leaving.,bed;shoe;towel,\"A person lying on a bed awakens.  They sit up and put on some shoes. Next, they stand up, grab a towel and walk away.;A person is lying in the bed. A person then gets up, puts on their shoes, and grabs a towel.\",c035 23.00 28.50;c146 2.50 10.40;c154 10.00 17.90;c055 12.40 26.10;c133 3.90 13.30;c133 3.70 31.00,30.04\r\nXF93D,DXDI,Laundry room,6,1,No,\"A person throws a broom into a large cabinet, and then lies down on a bean bag chair.\",broom;chair;closet/cabinet;door;floor,\"A person walks in, opens a door and puts broom in the closet.  They close the door and sit on a chair on the floor.;A person puts away a broom, then lays down.\",c059 7.40 25.00;c098 0.00 7.80;c099 2.50 8.00;c151 8.30 14.40;c124 8.60 25.00;c006 4.00 11.00;c113 22.30 25.00;c097 22.30 25.00;c008 22.30 25.00;c112 22.30 25.00,24.29\r\nIOZ8J,PKND,Pantry,4,6,Yes,\"A person is holding a bag of groceries. Then, turning the light on and sitting in a chair, the person begins putting the groceries in the lower cabinet.\",box;cabinet;groceries;light;shelf,\"This person walks into the Kitchen, turns on the light, and reorganizes a cabinet.\",c114 20.60 30.70;c130 7.80 29.80;c154 7.30 13.70;c082 11.10 33.00;c040 9.40 22.20;c081 15.50 20.50;c042 14.60 22.10,31.54\r\n815KV,CCI9,Bedroom,3,6,Yes,\"A person is standing in the bedroom, holding a camera.  The same person then puts the camera on the shelf and leaves the room.\",camera;closet/cabinet;doorway;shelf,A person puts something onto a shelf and then stands in a doorway.;A person walks to an open cabinet and puts a camera on a shelf. They walk to a doorway and stand there.,c081 4.00 12.00;c097 14.20 21.70;c114 5.20 12.30,32.00\r\nAZ5JS,6RE8,Bedroom,6,6,Yes,A person is holding a blanket in a doorway and smiling.,blanket;door,\"A person is tidying a blanket, then opens a door and closes it;A person is folding a blanket.  The person then opens and closes a door.\",c075 0.00 20.20;c006 23.70 32.00;c008 16.10 24.70;c070 29.10 32.00;c073 29.10 32.00;c152 29.10 32.00;c141 29.10 32.00,31.08\r\nIKBYS,ENC8,Bathroom,4,6,Yes,A person holds a medicine bottle. This person then looks at their phone and leaves.,cup/glass/bottle;doorway;medicine;phone,\"A person is standing in the bathroom doorway holding a bottle of medicine their phone rings so they take it out of their pocket and look at it, then they walk out of the bathroom.\",c015 3.70 11.10;c128 9.50 14.90;c017 3.60 14.40;c018 0.00 8.70;c097 10.50 16.20;c107 0.00 3.40,19.17\r\n7BX06,YA10,Living room,7,7,Yes,A person is lying with a blanket then they awaken and drink from a glass.,blanket;cup;face;glass;sofa;table,A person lying on couch covered in a blanket a sleep.The person wakes up and touches their face and proceeds to reach for a glass and take a drink.The person puts the glass back on the table and folds their arms on their chest.,c106 10.10 24.50;c107 9.10 24.90;c110 10.20 19.30;c072 0.00 28.00;c146 0.00 12.50;c122 0.00 28.00;c009 17.80 24.30,26.79\r\nMAO8N,0KZ7,Garage,5,7,Yes,A person is putting a towel in a box. The person then puts the box away on a shelf.,blanket;box;shelf;towel,\"A person is folding a towel and putting it in a box, then putting the box on a shelf.\",c039 21.00 28.00;c041 5.00 12.00;c042 25.00 37.00;c081 25.00 37.00;c075 0.00 20.00,35.58\r\nVFD5I,KL48,Kitchen,5,7,Yes,\"A person is washing their refrigerator. Then, opening it, the person begins putting away their groceries.\",bag;food;groceries;refrigerator,A person stands in the kitchen and cleans the fridge. They then start to put groceries away from a bag.,c142 26.20 34.00;c143 6.80 12.80;c130 8.50 26.30;c062 9.50 28.30;c020 25.20 34.00;c061 8.30 25.70;c063 8.20 24.80;c023 24.80 30.30,33.29\r\nMQFFN,D0RU,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,The person was holding onto the doorknob while playing with the camera.  The person then started fixing the mirror at the front door.,camera;door;mirror;phone,A person is standing up holding a camera and looking at it. They pick up a mirror and place it higher on the wall and look at it.,c015 0.00 32.00;c093 24.00 32.00;c096 26.70 32.00;c016 0.00 28.50,30.92\r\nG4MNO,6RE8,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is sitting in a chair watching television and smiling.  The person takes a book off the desk and walks out the door, turning off the light behind them.\",book;chair;desk;door;laptop;light;table;television,\"A person is laughing at a television, picks up a book, opens a door and turns off a light.;A person sits at a desk and laughs before opening a book, standing up, and walking through the door out of the room.\",c059 0.00 17.50;c008 21.30 27.00;c097 21.70 28.70;c011 0.00 17.30;c032 10.20 17.60;c131 0.00 7.50;c025 15.20 20.10;c030 7.80 13.50;c149 0.00 11.10;c027 9.40 17.00;c051 0.00 8.80;c026 7.90 22.20,32.50\r\nFO9B1,R1OT,Bedroom,6,6,Yes,A person holding a laptop and a sandwich puts them on a table and leaves.,doorway;food;laptop;table,Person places laptop onto the table before walking out the door.,c009 2.10 8.60;c047 0.00 8.30;c049 2.10 8.60;c097 5.50 10.00;c061 0.00 4.80;c062 0.00 4.80;c154 0.00 3.30,8.96\r\nP4MBS,IK1O,Living room,5,6,Yes,A person is wrapped in a blanket eating something while watching a video on a laptop. They stand up abruptly and close the lid of the laptop.,bag;blanket;chair;food;laptop;sofa/couch;something;video,A person is sitting in a chair watching a video on a laptop computer and eating a snack. The person then stands up and closes the computer.;A person sitting in a chair snuggling a blanket watched a video on a laptop and eats something out of a bag. the person then stands and closes the laptop.,c072 0.00 31.00;c046 22.00 27.20;c051 0.00 27.00;c156 1.60 6.20;c154 18.80 25.80;c059 0.00 25.10;c063 0.00 5.30;c123 0.00 24.30,29.92\r\nCSQLJ,XXN8,Recreation room / Man cave,5,6,Yes,A person is sneezing on a dusty book and another person is washing a very dirty window.,book;table;towel;window,A person sitting at a table reading a book while another person washed the windows with a towel.;One person is sitting and reading while another person walks in and cleans the window.,c091 1.50 30.80;c026 0.00 32.00;c033 0.90 32.00;c037 1.20 30.60;c038 1.20 30.60;c011 0.00 32.00;c032 0.00 32.00;c153 1.80 7.20;c153 7.70 13.30,31.38\r\nXXDHJ,LWUV,Living room,5,6,Yes,A person smiles as they turn on a light in the pantry and begin fixing a doorknob.,door;light,A person turns on a light then the person begins to work on a doorknob opening and closing the door.;A person is turning on a lamp. The person fiddles with a doorknob. The person opens the door and locks it from the inside and closes the door.,c104 0.20 7.80;c140 8.30 17.30;c141 7.80 13.70;c151 5.20 10.10;c008 10.60 20.00,23.83\r\nDAIN7,H8N1,Living room,5,6,Yes,A person walks over the shelf and picks up a camera. The person begins watching something on the camera's display screen.,phone,A person is holding a phone and playing with it.;A person in a living room walks over and picks up a phone. The person appears to be texting for a few seconds.  The person then puts the phone down and walks away.,c015 2.70 33.00;c016 4.50 31.00;c018 3.40 31.40;c017 25.90 32.30,35.92\r\nNWJER,9PLL,Bathroom,4,7,Yes,\"A person puts a book on the window sill in their bathroom, then starts dressing up.\",clothes;window,\"A person is standing in a bathroom. The person walks over to the window to look out it, then walk back to where the person was standing before. The person puts on a shirt.\",c092 1.40 9.60;c148 7.60 35.00;c000 31.90 35.00;c002 31.70 35.00,33.79\r\nVBML2,OUKK,Hallway,3,6,Yes,\"A person is putting their shoes against the wall.  They grab their laptop, and walk out of the room holding it.\",laptop;shoe;wall,A person in the hallway places a pair of shoes against the wall. They then pick up a laptop and walk away.,c053 2.30 20.10;c047 13.40 20.20,21.00\r\n5XCJ6,LTAC,Living room,6,6,Yes,A person doing homework in the living room leans on a pillow while eating a snack.  The person then tidies their area after they are done eating.,chair;clothes;homework;notebook;paper;pencil;pillow;sofa;table;wipe,\"A person takes several bites of food as they are sitting in a chair with a pillow, doing homework. The person stands up and grabs a cloth and begins to wipe the seat and arms of the chair.;The person is sitting on a couch, leaning on a pillow and writting on a notebook while eating then gets up to clean the couch.\",c078 0.00 25.50;c123 0.00 27.90;c145 0.00 25.00;c154 23.70 30.10;c002 22.00 27.90;c059 0.00 27.20;c011 0.00 27.20,31.71\r\n2NOVW,D0RU,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person opens up a medicine bottle of headache pills. They place the bottle back on the shelf, leaving it just where they had found it.\",medicine;shelf,A person takes a bowl off of a shelf and takes out some medicine.,c128 18.10 29.70;c081 27.70 32.00,30.58\r\nZF5CP,ZSRZ,Closet / Walk-in closet / Spear closet,7,7,Yes,A person sneezes as they are dressing in the doorway of a closet and in front of a mirror.,closet;clothes;coat;door;jacket;mirror,\"A person opens a closet, retrieves a jacket, and puts it on;There is a person that walks over to a closet and gets a coat and puts it on. The person closes the closet door.\",c148 5.60 19.90;c113 0.00 5.70;c002 2.40 10.50;c006 14.20 21.10;c001 11.60 26.30;c000 11.70 21.40;c008 0.00 4.90;c096 18.00 27.00;c112 15.90 21.80;c141 0.00 3.70,26.12\r\nOI7GQ,D0RU,Home Office / Study (A room in a house used for work),6,7,Yes,A person is standing in front of a mirror playing with their hair.  The person walks to the table and picks up a sandwich and takes a bite.  The person then puts the sandwich down.,food;hair;mirror;sandwich;table,A person sits in front of a mirror fixing his hair with his hands. The person then walks over to a table and takes a bite of food.,c096 0.00 21.90;c144 4.80 22.70;c156 26.10 33.00;c065 23.30 29.30;c069 21.70 26.80,31.58\r\n386XM,6RE8,Bedroom,6,4,Yes,A person returns home in the afternoon from work taking off their jacket and throwing it on a chair opening the closet and choosing more comfortable clothes to change into while watching the evening news on television.,chair;clothes;door;television,\"A person opens a door, looks at a television and removes clothing that gets placed on a chair. The person then resumes watching television.\",c155 3.90 14.30;c132 2.50 13.60;c008 0.00 5.30;c097 0.00 6.70;c000 8.30 16.50;c006 1.80 7.90;c141 0.00 6.10;c001 10.30 17.00,30.21\r\n8M5VK,2S0T,Living room,5,7,Yes,A person is standing in their living room washing a window with a towel. When finished the person walks to the vacuum and vacuums the carpet.,floor;towel;vacuum;window,A person is cleaning the window and vacuuming the floor.,c091 0.00 13.30;c137 11.30 35.00;c127 11.60 34.40,33.54\r\nLY74H,KQI6,Kitchen,4,5,Yes,\"A person is in a kitchen washing the stove with a sponge, they then work on unpacking a box.\",box;scrub pad;stove;window,\"The person is wiping down various objects in a kitchen, doing the cooktop, part of a counter, part of a window. Not a whole lot of vigourous scrubbing, just quick wipes of parts, so my guess is just cleaning up spatters after cooking.;Person cleaning he window and stove with a green cloth, and then closing a purple box.\",c039 25.30 31.60,33.42\r\nIYD9U,YMXV,Bedroom,4,4,Yes,A person is holding their camera and taking a picture of a blanket. The person runs to the blanket.,bed;blanket;cabinet;camera;phone;picture,\"Person is standing takes a couple pictures with his phone and grabs a blanket;A person took a picture of a blanket with their smart phone, unfolded the blanket, took another picture, then emerged from a closet and walked quickly to a bed and picked up the blanket.\",c070 11.10 17.00;c073 11.10 16.80;c150 23.10 27.90;c015 0.00 13.20;c087 3.90 10.00;c071 8.00 16.00;c075 25.90 32.00;c016 0.00 12.30,31.12\r\n511OL,L4ZP,Kitchen,6,6,Yes,\"A person is putting on their shoes and when finished, takes a camera from the shelf. The person is waking towards the window as he is eating the rest of his sandwich.\",cabinet;chair;counter;food;glass;rug;sandwich;shelf;shoe;table,\"A person sitting in a chair putting their shoes on.The person proceeds to get up out of the chair and picks up a sandwich and walk a crossed the room.;A person is sitting on a chair over a rug and puts their shoes on. After the shoes are on, the person gets up from the chair and walks over to a cabinet and finally to the table.;A person is sitting and puts on shoes.  The person gets up and walks to the kitchen and opens a cabinet and picks up a glass.\",c055 0.00 18.80;c154 15.90 30.00;c059 0.00 19.30;c054 0.00 18.80;c112 21.60 26.50;c061 14.90 30.00,29.08\r\nZCG3J,L4ZP,Kitchen,6,6,Yes,\"The person walks into the kitchen, and opens the cabinet. While smiling the person takes the laptop off the shelf.\",cabinet;chair;laptop;shelf;table,\"A person walks into the room and opens a couple of cabinets.  That same person takes a laptop off of a shelf in the cabinet, sits down at a table and opens the laptop.;Someone walks through their kitchen and opens up a cabinet. They grab a laptop and sit down at a table with it and they open it up.\",c049 1.00 7.30;c113 4.10 15.00;c151 6.40 12.80;c151 15.30 22.00;c048 16.90 23.20;c050 10.30 16.20;c011 15.20 26.00;c052 17.60 26.00;c112 4.90 9.90;c059 13.80 26.00;c014 17.30 26.00;c009 12.50 20.10;c047 9.10 19.70,24.71\r\nXRWBL,L4ZP,Dining room,6,6,Yes,\"A person is watching their phone ring in the mirror, while simultaneously drinking a cup of tap water.\",chair;mirror;phone;table,A person is sitting on a chair and looking at themselves in a mirror they then pick up their phone to talk.,c019 26.10 31.00;c093 0.00 31.00;c096 0.00 28.50;c059 0.00 31.00;c015 26.00 31.00;c018 24.20 30.40;c011 0.00 31.00,30.04\r\n51JUO,DBGJ,Dining room,6,7,Yes,A person sits on a chair at their dining room table working on folding dish towels.,chair;cup/glass/bottle;dishes;table;towel,A person folds a towel while drinking from a coffee mug.,c059 0.00 45.00;c037 0.00 45.00;c033 0.00 10.40;c033 0.00 45.00;c014 0.00 45.00;c011 0.00 45.00;c106 8.00 14.60,44.25\r\nES2QH,T7C3,Bathroom,7,7,Yes,\"A person is tidying up near a bathroom window, then starts sneezing and sits in a chair.\",chair;closet/cabinet;clothes,A person is putting things away then sneezing and sitting on a chair.,c059 33.50 40.00;c153 17.10 22.90;c114 0.20 33.00;c151 31.50 40.00;c001 37.40 40.00;c114 37.40 40.00;c151 37.40 40.00,39.38\r\nQOJ09,XXN8,Bedroom,4,,No,A person wakes up in the basement and walks to the desk and opens a book.  The person reads whats in the book and laughs.,bed;book;desk,A person wakes up and stretches. They get off their bed and take a book from the table. They open the book and laugh as they look through it and then set it down when they're done.,c025 23.30 28.50;c026 10.90 29.90;c027 12.10 17.90;c030 10.00 16.10;c135 4.50 12.60;c154 8.60 13.40;c149 13.90 27.50;c152 13.90 27.60;c028 24.10 29.90;c032 13.00 26.40;c146 0.70 7.50;c133 0.00 11.40;c029 16.20 24.40,29.96\r\nILF19,D0RU,Laundry room,5,5,Yes,A person awakens in a chair at a desk. The person looks around and laughs.,chair;desk,\"Person sitting in chair near a desk, person's head falling forward imitating falling to sleep, person awakens then laughs.\",c059 0.00 33.00;c146 0.00 16.00;c149 14.80 33.00;c152 14.50 33.00,31.71\r\nB0JWB,D0RU,Living room,6,7,Yes,a person lies a towel on the floor and then takes a book from a shelf before sitting down on the towel.,book;floor;shelf;towel,A person placed a towel on the ground then grabbed a book from the shelf and started reading it,c125 16.90 32.00;c032 16.90 32.00;c034 0.00 9.20;c151 14.60 20.90;c145 18.60 32.00;c033 0.00 9.50;c117 9.40 15.60,30.75\r\nNH9JS,YA10,Kitchen,5,7,Yes,A person is standing in front of the refrigerator grasping the handle and holding the door open.  The person grabs a bag of food out of the refrigerator and puts the bag into the cabinet.,bag;cabinet;door;food;refrigerator,the person opened the door of cup board and took something and kept it on another cup board,c112 18.80 29.60;c113 16.00 23.90;c020 11.90 20.60;c142 11.30 20.00;c008 15.40 23.80;c061 11.60 20.90;c063 11.00 18.80;c022 18.20 29.50;c023 14.50 19.80,29.25\r\nXWKKZ,38MV,Bedroom,6,6,Yes,\"The doorknob turns, allowing the person with the camera to enter. The person standing on the other side is drinking heavily.\",bottle;closet;door;mirror;phone/camera,\"A person walks into a room, and looks in the mirror.;Person opening door to a room, walking in and finding another person drinking in the closet.\",c008 0.20 6.30;c141 0.00 4.50;c096 13.80 19.60;c107 9.60 15.60;c015 13.80 20.10;c096 8.80 17.80;c107 8.80 25.80;c015 0.00 32.00;c106 9.40 16.20,30.83\r\nWY433,T7C3,Pantry,7,5,Yes,A person laughs as they walk through the doorway. The person takes a bottle of medicine from the shelf and pours some out into a cup.,cup;doorway;food;glass;shelf;something,\"a person walks into room laughing and pours something in a glass;Person comes in to the kitchen, grabs something from a shelf and pours it into cup while laughing.\",c107 0.00 26.00;c097 0.00 5.10;c149 6.40 12.60;c062 9.10 19.90;c152 0.00 26.00;c108 9.10 19.90,25.17\r\nEFNXW,JVLO,Kitchen,5,7,Yes,One person is drinking while sitting on the chair and the other is leaving the refrigerator.,chair;cup;doorway,Person #1 is sitting in a chair drinking from a cup. Person #2 walks behind person #1 into another room.,c059 0.00 23.60;c107 0.00 23.40;c097 27.90 32.00;c106 4.10 8.70;c106 6.00 11.10,31.25\r\nTCQXI,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is seen with a blanket. The person watches the blanket drop from their hands and as they bend down to pick it up, they sneeze.\",blanket;doorway;floor,\"A person is walking into a room carrying a blanket, they drop the blanket on the floor and grasp for it.;The person walks inside and drops a blanket on the floor. They go to pick it up and begin sneezing.\",c070 0.00 3.20;c153 0.00 4.00;c126 0.00 3.20;c097 5.90 11.80,30.96\r\nP0ILN,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person smiles at a picture on their phone. The person takes off their shoes and sits on the sofa.,chair;door;light;phone;shoe;sofa,\"A  smiling person holding a phone walks through an open door, closes it and turns on a light.  They sit on a sofa, take off their shoes and play with the phone.;A person walks in a doorway and closes the door. A person turns on the light and sits down while playing on their phone\",c016 17.50 32.00;c152 11.60 32.00;c057 13.90 20.70;c104 6.20 12.80;c015 0.00 32.00;c123 13.50 32.00;c151 12.40 17.60;c006 0.00 7.10;c097 0.00 4.90;c059 13.20 32.00,30.88\r\nBVGMT,HJZQ,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is walking down the hall. They begin tidying the television stand and throwing things in a box.,box;doorway;rag;table;television;towel,\"A person picks up a towel and starts cleaning a television.  The person throws something into a box and cleans a table.;a person walks to the tv, dusts it off, and throws some items in the box\",c038 8.00 22.30;c013 13.80 32.00;c033 4.60 32.00;c035 5.50 10.90;c097 0.00 3.70;c012 4.70 32.00,31.17\r\nYZ3TA,HJJ4,Recreation room / Man cave,7,7,Yes,A person is closing the laptop while watching the door.,laptop,Person sitting with a laptop on his lap and then decides to shut it.,c046 1.60 9.60;c051 0.00 6.20;c047 0.00 5.40,10.58\r\nP1LWC,WG9D,Dining room,6,7,Yes,\"A person walks into the dining room and picks up a glass of water from the desk.  The person takes a drink of water, then puts it down next to a bottle of medicine.  The person grabs a broom and starts tidying up the room.\",broom;cup;dish;floor;glass;table;water,A person drinks from a glass of water then begins sweeping.,c106 0.00 2.90;c102 2.40 8.00;c127 3.10 8.00;c109 0.00 4.40;c098 2.00 7.00;c107 0.00 4.30;c119 0.00 4.10;c009 0.00 4.60;c100 1.60 6.70,7.17\r\nQJXNG,YMXV,Bedroom,3,7,Yes,\"A person watches a video on their camera, then puts it into a bag. The person sets the bag down and fixes their hair in a mirror.\",bag;bed;camera;hair;mirror;phone,\"A person is sitting on a bed playing with a camera. The person stands up and place the phone into a bag. The person then begins looking into a mirror and fixing their hair.;A person sits on their bed and plays a game on their phone, they then grab a bag and put their phone in it then begin to fix their hair in front of a mirror.\",c144 14.10 33.00;c015 0.00 14.90;c154 0.00 12.00;c135 0.00 11.60;c017 10.40 17.20;c016 0.00 12.50;c021 10.40 15.60;c022 12.40 17.50;c096 13.80 33.00;c020 9.60 17.30;c023 9.60 17.30,31.83\r\n5XYPL,PKND,Pantry,5,7,Yes,\"A person walks past a table holding a bag of groceries. They drop the groceries, begin laughing, and reach for a nearby broom.\",bag;box;broom;groceries;table,A person is standing in a room and picks up a broom and grabs a bag of groceries and moves it to another spot.,c130 0.20 9.50;c024 20.10 28.90;c100 8.70 15.20;c149 3.70 12.70;c154 9.80 15.00;c023 20.50 26.80;c152 1.90 13.50;c098 10.30 32.00;c009 3.30 8.90;c012 17.80 27.80;c022 23.00 28.50;c020 21.10 28.10;c043 17.90 24.10;c040 0.00 6.70;c042 2.70 8.80,31.38\r\nOJFYD,DXDI,Basement (A room below the ground floor),5,7,Yes,\"A person washes a doorknob in the basement; then closes the door, and takes off their shoes.\",door;shoe,\"A PERSON IS WIPING DOWN A DOORKNOB, AFTER THEY ARE FINISHED THEY CLOSE THE DOOR AND TAKES THEIR SHOES OFF\",c141 0.00 10.40;c057 11.40 20.00;c140 0.00 10.90;c097 6.40 12.80,19.25\r\nG3OUM,9PLL,Kitchen,1,7,Yes,A person is cooking food on the stove.  Then a person is throwing a broom out of the kitchen because it was going to be in the way.,broom;floor;food;stove,A person is cooking on the stove. A person then takes a broom and throws it on the floor.,c147 3.40 17.70;c099 22.80 28.30;c101 22.70 28.30;c098 19.10 27.00;c100 18.70 23.10;c147 4.90 33.00;c126 22.80 27.80,32.00\r\nFPODN,WQ8Z,Recreation room / Man cave,7,7,Yes,Person opens the door to the man cave and places a laptop on the table.  Person then sits down on the couch and begins drinking a beverage before dozing off to sleep.,doorway;glass;laptop;sofa;table,A person carried a laptop and places it on a table and sips from a glass.,c009 9.30 20.70;c123 5.60 18.10;c048 17.90 33.90;c151 10.80 26.20;c009 14.60 32.50;c097 3.20 9.80;c011 11.30 30.60;c122 25.00 36.00;c051 16.70 25.70,34.58\r\nPX7K1,YA10,Living room,6,7,Yes,A person is sitting on there sofa with a pillow and they can't stop sneezing.,pillow;sofa,\"The person is sitting on the couch, sneezing continuously. There is a stack of pillows on the couch next to the person.\",c123 0.00 33.00;c153 0.70 33.00;c076 0.00 33.00,31.71\r\nH28KM,Z68L,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is smiling into a mirror and then running in place while holding a book in the entryway.,book;hair;mirror;shelf,\"A person holding a book picks up a mirror and looks at themself in it.  They then run in place while still holding the book.;A person walks to a shelf while holding a book, and looks at themselves in the mirror. After putting the mirror back on the  shelf, the person begins to run in place.\",c026 20.60 26.20;c094 15.30 20.10;c096 8.20 18.80;c150 22.20 30.40;c093 5.10 20.20,32.25\r\nFHAV0,ZAWX,Living room,5,5,Yes,\"One person sneezes while fixing a broken desk, laughs, then leaves with a book.\",book;chair;desk;floor;paper;table,a person works on a table while sitting on the floor;A person is fixing a table then taking a magazine or book from a chair.,c027 29.60 34.00;c154 24.60 33.30;c012 0.00 32.40;c059 0.00 31.60;c125 0.00 31.30;c117 27.40 34.00;c014 0.00 29.60;c030 28.10 34.00;c152 21.00 30.10;c115 29.10 34.00,33.04\r\nMIRSU,CCI9,Living room,4,7,Yes,\"A person is undressing in the living room. The person throws their clothes onto a table, and grasps a sandwich from the same table.\",clothes;food;sandwich;table,A person is undressing and then takes a sandwich off the table.,c067 9.20 33.00;c155 0.40 11.40;c063 8.90 14.30;c061 10.50 33.00;c002 0.00 12.00,32.38\r\nF1QR1,DXDI,Bedroom,4,7,Yes,\"sneezing, the person wipes their nose with a towel. they begin leaving as they grab the doorknob\",bed;clothes;door;towel,\"A person sitting on a bed , sneezing and than wiping their nose on a cloth. The person gets up and walks out of the room throw a door leaving the door open .;A person sits on a bed and sneezes. The person blows their nose into a towel and then gets up and opens a door walks out.\",c141 15.50 20.30;c034 9.30 15.20;c036 10.10 15.30;c154 13.70 18.10;c008 15.80 23.40;c033 5.60 15.30;c035 5.00 10.80;c153 1.30 8.30;c135 0.00 16.60;c003 23.40 26.00;c097 23.40 26.00;c000 23.40 26.00,25.33\r\nFDPHZ,ZAWX,Hallway,6,7,Yes,A person walks into the room holding a pair of shoes.  The person grabs a broom and turns off the light and leaves.,broom;doorway;light;shoe,A person walks down a hallway carrying shoes. The person grabs a broom and then turns off a light.,c098 11.10 32.00;c105 14.90 21.00;c053 0.00 32.00;c097 0.00 5.70;c100 11.40 17.10,30.67\r\nWXGLA,UTMU,Living room,3,6,Yes,\"A person is standing next to a couch with a broom. They start tidying, pick up a bag, and put it away.\",bag;broom;floor;sofa,A person cleans off a sofa with a handheld broom then picks up a bag on the floor and leaves.,c102 1.80 23.00;c023 19.40 28.30;c020 19.30 28.90;c127 0.80 5.90,31.25\r\nY3NN8,40JH,Bedroom,3,7,Yes,\"A person sits on their bed, snuggling a pillow. They sneeze and then walk over to their wardrobe.\",bed;doorknob;pillow;wardrobe,Someone is sitting cross-legged on their bed and hugs their pillow. They stand up and walk around the bed to their wardrobe and open its door.,c078 0.10 21.30;c135 0.00 22.50;c154 17.50 23.40;c141 23.90 34.00;c076 0.00 21.60,34.71\r\nL0OUW,WG9D,Bedroom,6,7,Yes,A person turns on the light before running to the mirror and laughing,light;mirror,\"The person turned on the light, walked into the room and looked in the mirror.\",c094 0.00 5.00;c104 0.00 2.90,3.79\r\nYSZVZ,ID9V,Garage,6,7,Yes,\"A person is sitting drinking coffee, then the person starts sneezing into a book.\",book;cup;dish,A person leans against something. They take a drink from a cup and then open a book. They sneeze while looking at the book.,c026 0.00 30.00;c027 11.40 17.00;c106 0.50 7.90;c118 0.00 30.00;c153 12.70 18.20;c117 0.00 29.20;c153 19.70 25.70;c115 0.00 30.00;c107 0.00 30.00,28.88\r\n5KGCY,OUKK,Dining room,4,7,Yes,Person is sitting in a chair grasping for a glass. They get the glass and start playing with it.,chair;cup;glass;table,Someone is sitting at a table. They grab a glass and tap on it.;A person sits in a chair. They take a glass off the table and start touching it,c107 10.90 22.00;c110 9.80 15.60;c059 0.00 22.00;c011 0.00 22.00,20.75\r\nG2VOP,C7O9,Laundry room,4,7,Yes,A person is sneezing as the person stands in the doorway. Then the person moves a chair out of the way and begins tidying up the room.,chair;clothes;doorway,\"A person stands in a doorway sneezing, they take a chair and then put clothes onto a shelf.\",c153 0.00 4.70;c004 14.80 26.00;c001 14.80 26.00;c002 7.00 19.20,25.38\r\n5TG2E,2RTW,Living room,6,6,Yes,\"After putting on shoes from a chair, a person stands and leaves the entryway, walking briskly.\",doorway;shoe;sofa,\"There is a person sitting on a sofa putting on their shoes. That same person then stands up and leaves the room.;There is a person sitting on the couch.  That person puts on their tennis shoes, ties the laces, stands up and then leaves the room.\",c154 29.40 33.90;c123 0.00 33.40;c055 1.30 9.70;c097 30.90 35.00,34.25\r\n8N939,2RTW,Bedroom,6,6,Yes,Person walks down the hallway while taking medicine with a glass of water.  Person stops in the hallway and stands in front of the mirror.  Person then runs down the hallway.,cup;dish;doorway;food;glass;hair;medicine;mirror;monitor;pill,\"A person walks into a room with a glass of water and a pill they stand and take the pill with a drink of the water then they go to the mirror fix their face then they take another drink and run out of the room.;The person walks into the rooming holding a glass. The person drinks from the glass, then swallows a pill and takes another drink from the glass. The person walks in front of the computer monitor and to check the reflection then walks out of the room again.\",c129 2.40 9.10;c106 0.40 7.60;c096 12.00 23.60;c150 23.80 31.00;c107 0.00 26.80;c156 3.10 10.30;c097 0.00 5.20;c118 0.00 27.50,30.17\r\nH41MY,WG9D,Kitchen,5,7,Yes,A person is eating near a shelf.  Then a person is drinking and adjusting their clothes they are wearing.,food;glass;jacket;sandwich;water,A person eats a sandwich and drinks water from a glass. Then they shake out their jacket.;The person is taking a bite of a sandwich then takes a sip of water then adjusts their jacket.,c156 0.00 19.00;c065 0.00 19.00;c106 3.60 13.60;c061 0.00 5.90;c067 0.00 5.80;c069 0.00 4.20;c068 0.00 5.80,17.88\r\n0ZOPH,P6LJ,Bedroom,4,7,Yes,A person is standing in the hallway throwing a pillow at the door.  The person washes the doorknob with a towel.,door;pillow;towel;wardrobe,A person throws a pillow then washes a doorknob with a towel.,c080 4.70 10.90;c141 9.70 31.60;c079 0.00 4.20;c077 4.50 9.50;c076 1.20 9.50,33.38\r\nQQTQN,UTMU,Stairs,6,7,Yes,The person is fixing a doorknob and eating a sandwich on the stairs.,floor;food;sandwich,A person is sitting on the stairs looking at something while eating a sandwich.,c065 15.60 35.00;c156 15.10 35.00;c067 14.40 35.00;c061 14.40 35.00;c125 0.00 35.00,33.83\r\nMURBT,CCI9,Kitchen,3,6,Yes,One person runs in with a sandwich and groceries. Another person walks in with a broom and starts working.,bag;broom;doorway;groceries,\"Two people walking into a room, one is holding a bag of groceries while the other is holding a broom and begins tidying the are around them with it.\",c098 0.00 33.00;c102 11.80 33.00;c020 0.00 33.00;c097 0.00 11.00,32.00\r\n7SKSD,OUKK,Laundry room,1,6,Yes,A person is undressing near a shelf.  Then a person is watching themself in a mirror.,clothes;mirror,\"A person walks into the room and stands in front a mirror placed in the corner, then removes their shirt.\",c096 1.00 12.10;c155 8.30 31.00,29.71\r\nFX7ZY,BYF9,Home Office / Study (A room in a house used for work),6,7,Yes,A person places a box on a table. They begin opening the box. They pull several books out of the box before throwing it to the floor.,book;box;desk;floor;table,\"A person is carrying a box to a desk and taking items out of it and placing them on the desk. The person then proceeds to throw the box on the floor.;This appears to be in office. This person carries box over to desk, takes items out of box, places them on desk and then places box on the floor.\",c126 16.20 21.00;c040 0.00 6.40;c044 2.30 18.70;c009 0.00 6.00;c041 2.00 7.00;c045 16.00 21.00;c009 6.00 18.00;c028 8.60 14.30;c039 15.60 20.70;c030 7.20 13.30;c042 0.90 6.90;c026 9.50 14.20,20.46\r\nVTOYP,4I61,Home Office / Study (A room in a house used for work),7,5,Yes,A person in a closet is fixing a broom that fell apart. The break a glass and start laughing.,broom;floor;vacuum,A person walks in to a doorway and works on a vacuum then laughs.,c149 14.10 24.30;c126 12.50 18.50;c136 0.00 17.10,28.17\r\nRBJ4E,T7C3,Bedroom,7,7,Yes,A person is leaving the bedroom with a vacuum.  Then they stop to walk over to the bed.,bed;vacuum,\"A person pushed a vacuum across the floor. The person then let go of the vacuum, walked over to a bed, and sat down.\",c137 0.00 12.50;c135 17.40 25.00;c151 16.90 22.60,23.75\r\nKBPI3,DXDI,Home Office / Study (A room in a house used for work),3,7,Yes,\"Person is putting blanket on desk, then starts laughing at glass full of water.\",blanket;chair;desk;table,A person is sitting in a chair. They pick up a blanket and throw it on a desk. They continue sitting in their chair.;This person is sitting in a chair talking to someone off screen.  The person folds a blanket and puts it on the desk next to them.,c009 3.50 11.10;c059 0.00 31.00;c071 0.10 10.70,30.33\r\nWBX8F,2Q9D,Laundry room,6,6,Yes,\"A person runs into the laundry room, then sits down to take their shoes off. The person turns the light on and then leaves the room, leaving the light on.\",clothes;doorway;floor;light;shoe,A person runs into the laundry room and sits down to take off their shoes. they stand back up turn on the light and leave the laundry room.,c057 2.50 27.10;c154 22.30 27.60;c104 25.20 30.00;c151 0.20 6.80;c097 0.00 3.30;c125 3.00 26.50,31.96\r\nGIW6N,D0RU,Kitchen,7,7,Yes,A person is seen snuggling on the couch while eating food. They get up and start leaving to get some medicine.,food;medicine;sofa,\"Person laying on sofa/couch, tossing and turning, eating, and then getting up to get a red box from on top of the refrigerator.\",c061 6.40 29.70;c122 0.00 29.50;c156 6.40 29.70;c154 24.80 32.30;c146 4.70 12.00,43.25\r\nO7KDK,6NQX,Bedroom,5,6,Yes,A person is running into the room and throwing clothes onto a shelf.,clothes;shelf,A person runs in to a bedroom and takes clothes off their bed and throws them on a shelf.,c003 3.10 12.00;c081 6.80 15.50;c150 0.00 6.20;c002 4.50 15.90,17.25\r\n04LAX,3H6W,Kitchen,4,7,Yes,\"A person walks to a refrigerator and puts their homework in it, then pours them self a drink of water.\",cup;refrigerator;shelf;water,\"A person walks over to a refrigerator, takes out some water, pours it into a glass, drinks from the glass, and then sets the glass back down on the counter.\",c106 20.20 27.30;c142 9.60 16.80;c143 5.60 13.60;c109 19.00 23.90;c108 13.90 22.70;c081 18.70 23.80,27.21\r\nDIR8Q,2Q9D,Laundry room,6,6,Yes,A person throws their phone onto a table. The person smiles and begins tidying some things while looking out a window.,clothes;food;groceries;items;phone;shelf;table,A person is playing with a phone and sets it on a table.  Then the person starts putting items on a shelf and tidying it up.;A person in the laundry room is on their cell phone. They then place the laundry soap onto the top shelf.,c081 4.50 10.70;c081 4.20 16.80;c016 0.00 6.80;c015 0.00 7.30;c017 3.00 8.00;c009 2.80 8.20;c082 5.10 9.90;c130 11.20 19.90,27.67\r\nVQWDG,2Q9D,Laundry room,6,6,Yes,In the laundry room is a person smiling. The pick up some food and groceries from a shelf and leave the room.,bag;food;groceries;shelf,A person is grabbing a bag of groceries from off a shelf.,c020 13.50 21.80;c061 13.50 22.00;c023 10.40 19.30,24.71\r\nJQW1R,2Q9D,Laundry room,6,6,Yes,A person is smiling while lying on the clothes dryer. they are taking a selfie with the camera on their phone.,dryer;man;phone;picture;washer;window,a man taking a selfie while laying on a washer and dryer.;A smiling person lying on a washing machine next to a window takes pictures with a phone.,c016 0.00 28.00;c015 0.00 28.00;c152 1.30 21.20;c087 0.10 28.00,26.58\r\n3K2QE,ZAWX,Bedroom,6,6,Yes,\"A person is sitting in the pantry, doing homework. The person kicks off their shoes and lies down on the floor, resuming their homework.\",floor;homework;paper;shoe,A person is sitting on the floor doing their homework. They set it aside and take off their shoes and then they lay down.,c124 18.20 32.00;c125 0.00 21.50;c116 6.90 13.00;c145 0.00 9.80;c057 11.90 19.90;c115 0.00 11.70,30.58\r\nD9F5V,QB52,Home Office / Study (A room in a house used for work),4,4,Yes,\"A person working at a desk stops to tidy the desk, and finds a bottle of medicine.\",bottle;chair;computer;desk;medicine;table,\"A person is on the computer. A person then takes a bottle and holds it.;A person is sitting at a desk and looking at something on their computer, they then pick up some medicine and begin to look at it.\",c014 2.50 21.40;c128 21.80 31.00;c059 0.00 31.00;c110 18.10 23.50;c110 19.00 31.00,30.04\r\n42MIK,HJJ4,Stairs,5,7,Yes,One person with food in one hand sneezes while tidying up the area with a towel.,towel,\"A person sitting on the stairs sneezes, then begins washing the stairs with a towel.;A person is sitting on the stairs they sneeze then they use a towel and squirt bottle to clean the railing\",c038 4.00 20.00;c153 0.10 7.00;c033 3.20 20.00,18.54\r\n45FWP,40JH,Kitchen,7,7,Yes,A person throws the spoiled food away in the kitchen. A person grabs some food and eats by the window and homework,dish;food;plate;stove,Person walk in the kitchen throw dish with food on the counter then begin to eat.;This person is eating some dough and in between doing so the person is cleaning up their kitchen quite a bit.,c061 0.00 5.90;c156 8.30 25.80;c118 0.00 5.90;c119 2.10 8.40;c120 5.10 9.50;c120 23.80 28.80;c120 25.70 30.30,37.42\r\nNC75G,Z68L,Bathroom,7,7,Yes,\"A person takes a towel from the shelf, puts it in a bag and closes the bag before leaving the bathroom.\",bag;shelf;towel,A person enters the bathroom and places a small towel in their bag,c020 1.10 18.90;c021 10.30 19.20;c034 10.40 16.10;c035 3.70 10.10,30.62\r\n93YXJ,38MV,Living room,4,3,Yes,\"A person is sitting at a table, and places some groceries onto a few dishes. The person smiles, stands up, and walks across the room.\",bag;chair;dish;food;groceries;plate;table,\"person takes some food from a bag and puts it on a plate;A person opens a bag of groceries, takes out some food and puts it on different dishes, then sets them on top of each other on a table.  They then stand up and leave.\",c119 18.90 43.20;c154 39.00 44.00;c063 5.30 14.40;c009 10.80 24.90;c118 1.40 15.70;c061 1.80 15.50;c059 0.00 42.60;c062 4.80 42.40;c021 2.50 7.80,42.67\r\nQWTGQ,6RE8,Hallway,5,3,No,A person turns on the light in the hallway and laughs at the homework they are holding before leaving.,light,A man in a green shirt flips a light switch looks up at a light fixture and gestures in disapproval.,c104 1.20 7.60;c149 4.50 26.30,30.17\r\nNFIQM,ZAWX,Bedroom,7,7,No,One person is in the doorway grasping a blanket while another person is washing some dishes in the basement sink.,bed;cup;jacket,A person walks into the room and takes their jacket off and throws it on the bed. Another person is laying on the bed drinking a cup of coffee. Both people smile.;A person removes a jacket while another drinks from a cup.,,30.79\r\nRRHEV,P3TI,Kitchen,7,7,Yes,\"One person starts cooking at the stove, watching it for a while. Then, they grasp a cup of coffee and run out.\",food;stove,A person is cooking on the stove. A person then runs out the kitchen,c147 0.00 27.60;c150 26.00 31.80,32.46\r\nCBW6S,3H6W,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person laughed in front of a window in their home office, A person throws an apple onto a sofa in their home office.\",ball;chair;sofa;table;window,\"A person enters the room and then sits down on a sofa, then gets back up and looks out the window. Then they laugh and throw a ball across the room.\",c092 5.70 11.00;c149 10.90 17.50;c151 1.80 7.10;c154 16.70 22.00;c011 8.50 21.30;c059 7.10 19.90;c152 9.90 17.50,23.04\r\nSQYTO,2RTW,Living room,6,6,Yes,\"A person watching television while eating a bag of chips, stands up and turns off the lights before leaving the room.\",bag;doorway;food;light;sofa;television,\"A person sits on a sofa eating some food from a bag they are holding and watching television. They get up and walk out, turning a light off as they exit the room.;A person sits on a sofa watching television. The person opens a bag of chips and begins eating them. The person then stands and walks out of the room, turning off a light on the way.\",c154 21.90 27.10;c063 0.00 25.40;c020 0.00 23.80;c156 0.00 25.80;c132 0.00 24.30;c061 0.00 4.30;c132 0.00 4.00;c105 0.50 4.60;c154 0.30 4.50;c123 0.00 4.30;c097 27.50 34.00;c062 18.50 23.50,32.71\r\n97086,UTMU,Home Office / Study (A room in a house used for work),7,7,Yes,A person is tidying up their desk then leaves their laptop while walking away.,desk;laptop;paper;table,\"A person shuffles papers on a desk, opens a laptop and walks away.;Person walks in room carrying object underarm and tidy up computer desk. Then places object on desk near computers.\",c048 18.40 27.30;c014 0.00 30.00;c115 0.00 21.20;c116 8.00 17.30;c049 17.10 26.50;c012 3.10 19.90;c047 17.50 23.70;c009 20.00 26.20;c117 8.70 13.20,29.33\r\nTNWWG,2RTW,Living room,6,6,Yes,\"The person is in the living room putting pillows on the wardrobe shelf, and fixing the sofa up.\",blanket;clothes;couch;jacket;pillow;shelf;shirt,\"A person picks several pieces of clothing off of a sofa and folds them. Then the person puts some pillows on a shelf. Then they begin to fold a blanket on the sofa again.;A person is tidying up the couch, puts some stuff on a shelf,;A person is standing in front of a couch folding clothes and a blanket then takes a pillow and puts it on a book self. Then goes back to folding blankets and clothes on the couch.\",c081 11.50 20.80;c001 13.90 20.10;c004 0.00 17.70;c077 11.10 16.90;c071 13.90 19.10;c001 2.80 9.20;c075 16.50 32.00;c002 0.00 5.60;c079 8.70 19.90;c000 0.00 4.20;c076 9.10 19.70,31.08\r\nKI0Q7,6RE8,Living room,5,7,Yes,A person dresses in the doorway. The person laughs as they put on a pair of shoes.,chair;clothes;doorway;shoe,A person gets dressed than sits down and puts on socks and shoes.,c055 18.00 35.00;c148 0.00 6.30;c151 3.00 8.50;c001 0.00 7.30;c059 4.40 35.00,34.42\r\nWETXR,C7O9,Bathroom,6,6,Yes,One person runs into the bathroom and stands by the door laughing as another person is fixing a burnt-out light.,door;light,\"The person is standing in the bathroom with their hand raised as if fixing a light. The other person enters the room, touches the door for a moment, and appears to be sneezing repeatedly.;The person runs into the bathroom to talk to another person inside of the bathroom and looks to sneeze a few times. The other person looks to be changing a lightbulb.\",c103 0.00 31.00;c153 9.30 13.90;c097 0.00 3.20,29.79\r\nHZTB1,G6WD,Dining room,7,7,Yes,The person is eating food out of the refrigerator and then laughing at something in a book in the dining room.,bag;book;food;refrigerator;something;table,\"This person opens the fridge, takes out a baggy, eats something, then closes the fridge and reads something funny.\",c063 0.30 18.10;c143 0.00 6.50;c156 18.70 27.20;c061 2.20 30.40;c142 26.70 33.30;c032 31.30 65.00;c149 36.10 64.00;c021 3.50 13.30;c021 4.80 22.00;c023 2.20 9.10;c020 2.20 30.10,64.58\r\nU36AB,T7C3,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is in a office opening the draw on their desk, they then take a drink of a beverage and sit back in a chair.\",chair;cup;desk,\"person moves keyboard, sits in chair, picks up and drinks from cup. Then puts cup on floor.\",c059 7.30 33.00;c151 5.20 11.60;c109 29.40 33.00;c106 15.40 30.00;c110 12.50 18.40,32.46\r\nFV684,1OHU,Bathroom,7,7,Yes,A person is checking themselves out and is smiling in the mirror. The person then starts tidying the bathroom counter and starts vacuuming.,mirror;sink;table;vacuum;wipe,A person fixes their hat and admires themselves in a mirror. They wipe down the table with a wipe. They start vacuuming the floor;A person is looking at themselves in a mirror smiling then tidying the sink and vacuuming the floor.,c137 17.10 34.00;c094 0.00 10.90;c152 0.00 10.20;c154 0.00 34.00,32.92\r\nJPEQK,QB52,Kitchen,6,7,Yes,\"A person is drinking water out of a sink, then the person starts playing with their phone.\",cup;dish;phone;sink;water,\"There is a person standing at the kitchen sink, they get themself a glass of water while looking out the window, then they turn there back towards the sink and plays on a phone\",c015 14.80 31.00;c016 14.80 31.00;c106 5.30 19.00;c110 4.40 13.80;c118 0.00 17.30,30.29\r\n5VINT,4I2W,Bedroom,4,6,Yes,\"A person is playing with a camera then leaves, closing the door behind them.\",camera;door;phone,\"A person takes a picture of themself with a camera.  They then walk through a doorway, shutting the door behind them.\",c006 24.40 32.00;c015 0.00 32.00;c016 0.00 27.00;c097 23.70 29.70,30.54\r\n19UA5,18IT,Living room,3,6,Yes,One person throws a book in a bag to another person who is standing and drinking by a mirror.,bag;book;bottle,Two people are standing in a room. One person is drinking from a bottle while standing with an open backpack.  The other person folds up a book and throws it in the open backpack.,c031 0.00 3.90;c020 0.00 4.00;c106 0.00 3.80;c026 0.00 3.80,3.17\r\nBMLFA,XXN8,Kitchen,7,5,Yes,\"A person is running the vacuum. A person is holding a box, which the person puts inside the refrigerator.\",box;groceries;refrigerator;vacuum,A person vacuumed a counter. The person then put a box away in the refrigerator before continuing to vacuum.,c142 18.80 25.40;c143 14.80 22.40;c137 0.00 16.40;c040 12.10 22.70;c042 15.20 22.50;c130 12.20 22.70,30.42\r\nWAD46,3VLX,Living room,6,7,Yes,Person snuggles on the sofa. They are playing a game on the phone as the tv is on in the background.,phone;sofa;television,A person is sitting on the sofa looking at a phone watching television.,c015 0.00 33.00;c016 0.00 33.00;c132 0.00 33.00;c122 0.00 33.00;c123 0.00 33.00,31.54\r\nGDS6Q,UTMU,Kitchen,4,7,Yes,A person in their kitchen is undressing by taking their jacket off. They start running around and eventually place a towel into the sink.,chair;clothes;coat;sink;towel,\"The person walks into a kitchen, removes their coat, and lays the coat on a chair. The person proceeds to jog in two quick circles around the kitchen. Then, the person grabs a dish towel and puts it in the sink. The person leaves the kitchen as a dog walks in.;This person enters the kitchen, takes off their jacket and lays it on the chair.  Then the person jogs around the kitchen a few times, grabs a towel and places it in the sink.\",c001 5.70 10.60;c035 14.00 19.20;c150 7.00 14.20;c034 15.30 21.80;c155 0.80 9.90;c002 0.80 9.90;c000 5.30 10.40;c033 15.10 20.60;c036 16.80 22.30,21.54\r\nTQMTC,WG9D,Bedroom,3,3,Yes,\"A person eats a sandwich in their bedroom, then runs to a desk.\",bed;dish;food;plate;sandwich,\"A person takes a bite of a sandwich and sits the rest on a plate. They then get up and walk away.;A person eats a sandwich off of a plate, and then gets off a bed\",c065 0.00 4.20;c068 0.00 4.20;c156 0.00 4.20;c154 1.90 5.00;c135 0.00 5.00;c061 0.00 4.20;c067 0.00 4.20;c062 0.20 4.20;c119 0.70 5.00;c118 0.00 5.00,4.29\r\n49NHJ,LTAC,Bathroom,5,6,Yes,A person is drinking water from the sink and smiling at the food.,beer;book;cup/glass/bottle;doorway;sink;table;water,\"The person is standing by a sink in a bathroom drinking water. The person walks out of the bathroom and stands by a table. The person picks an object from the table.;A person is drinking a beer in front of a sink, they then walk out and take an object from a table.\",c106 0.00 4.00;c032 20.60 36.00;c029 24.70 36.00;c097 18.70 25.40;c152 0.00 36.00,35.38\r\n0I0FX,ZAWX,Living room,6,5,Yes,\"A person is leaving a bag of groceries on a table, then washing a door and finally eating a sandwich in a garage.\",bag;door;food;groceries;rag;sandwich;table;towel,\"A person is walking into a room and sets a bag of groceries on a table, they then take a rag and begin washing the door, then they stop and pick up a sandwich and start eating it.;A person takes a bag and sets it down.  That person then picks up a towel and wipes a door.  That same person picks up a sandwich and takes a bite.\",c009 6.00 12.10;c022 6.00 12.30;c130 6.00 12.10;c069 23.90 29.00;c156 25.00 31.00;c038 12.60 24.50;c020 0.00 11.20;c061 24.70 31.00;c097 0.00 3.90,29.75\r\n9LHP3,KQI6,Living room,4,6,Yes,A person takes their shoes off and sits on a sofa. Another person runs around while dialing someone on their phone.,phone;shoe;sofa,persons one person sits putting on socks and shoes other person talking on phone,c019 24.70 32.20;c123 7.40 33.00;c055 28.70 33.00;c123 6.40 12.30;c151 6.40 12.30;c055 12.00 19.80;c054 2.10 11.10;c056 2.10 9.80;c015 16.60 32.20;c016 16.50 27.80;c053 5.00 10.90,31.79\r\nUL9LN,KFGP,Living room,7,7,Yes,Person opens door into wardrobe gets clothes out then walks to washing machine while holding clothes.,closet/cabinet;clothes;door;washer,\"A person is opening a closet and taking some clothes out, the person then takes the clothes over and puts them in the washer.\",c008 0.00 6.60;c005 21.50 29.00;c002 18.90 28.60;c000 20.10 27.50;c141 0.00 4.40;c113 0.00 5.40;c001 20.00 29.00,27.96\r\nAGN7Y,ID9V,Hallway,4,6,Yes,A person watches television while holding a laptop.  They then begin sneezing.,doorway;laptop,A person stands in a doorway holding a laptop. They sneeze a few times.,c047 0.00 25.00;c153 4.20 23.80,24.08\r\nVACHI,EE32,Bathroom,6,7,Yes,A person stands with a towel on their head then begins to run past the doorway quickly.,towel,A person is drying their hair with a towel and then leaves the room.,,14.17\r\nRMNL1,BYF9,Bedroom,5,7,Yes,A person is sitting on a chair holding their phone and playing a game on it.  Another person stands in the doorway and watches the person in the chair.,book;chair;doorway;phone;tablet,\"One person seems to be sitting down reading a book, while the other is standing and talking to him.;A person is sitting in a chair tapping on a tablet.  Another person stands nearby waiting.\",c016 0.00 24.00;c059 0.00 24.00;c154 0.00 24.00,22.88\r\nRR8M2,2T2M,Laundry room,1,6,Yes,A person is throwing their shoes on the shelf after working.,cabinet;dryer;shelf;shoe;washing machine,A person is taking off shoes and putting them on a dryer.  The person then opens a cabinet door and puts the shoes on a shelf.;A person takes off their shoes and puts them in the washing machine and gets soap off the shelf of the cupboard,c112 25.00 29.00;c113 21.20 26.70;c057 0.00 16.70;c054 22.00 29.00,27.67\r\nF9I6K,L4ZP,Hallway,6,6,Yes,A person runs through the doorway into the hall. The person is drinking a cup of coffee.,coffee;cup;doorway;glass;hallway,A person runs down a hallway carrying a glass of coffee. The person darts into different doorways and then runs past the camera.,c097 7.70 14.80;c107 0.00 22.20;c150 0.00 22.50,22.83\r\nCW645,L4ZP,Hallway,6,6,Yes,A person dropped a bag next to a sneezing person standing by a table.,bag,A person is standing by a chair they sneeze another person walks by bumps inot the person who just sneezed and they drop their bag.;A person standing in a room sneezes as another person walking by drops a bag.;A person is standing in a dining room. Another person walks in with a gymbag. The first person sneezes and the second person drops the gymbag,c154 8.30 14.50;c024 4.40 9.20;c153 3.80 8.50;c022 7.20 15.00;c023 7.20 15.00;c020 8.10 15.00,13.54\r\nYLNPX,L4ZP,Other,6,6,Yes,The person walked by the mirror in the hallway.  The person stopped and looked in the mirror. The person sneezed and laughed.  The person then washed the mirror off. The phone rang and the person pulled the phone out and answered the phone.,doorway;mirror;phone;rag;shelf;towel,\"A person is walking down the hallway and sneezes. A person begins to clean a mirror with a towel. A person then talks on a phone.;A person walks up to a mirror, sneezes, cleans the mirror, organizes the shelf, and then takes out of a cell phone and makes a call\",c015 29.00 39.00;c019 31.80 39.00;c095 5.20 31.50;c153 4.30 10.20;c081 7.10 37.50;c018 33.00 39.00;c033 8.60 33.40;c038 8.60 33.40;c097 2.20 7.40,37.96\r\nJBZF5,LTAC,Dining room,5,7,Yes,A person is in a dining room holding a bag while they laugh at something funny happening on their laptop.,bag;laptop;something;table,\"A smiling person with a bag on their shoulder stands at a desk.  They lean over to look at something on a laptop and laugh.;The person reaches for some objects an a table, and moves a couple around slighty. The person then looks at a laptop, and touches the mouse. The person stares at the screen and begins to smile. The person reaches for the mouse again, pulls their hand back, reaches again, and finally pulling back. The person pulls their bag so it hangs in front of them, and rest their hands on the bag.\",c020 0.00 32.00;c051 2.50 32.00;c149 2.90 32.00;c154 0.00 32.00;c152 2.90 32.00;c014 2.00 24.00;c012 0.00 7.40;c052 3.70 24.60,30.67\r\nUR7C8,KFGP,Hallway,6,7,Yes,\"A person is standing in the doorway. Closing the door, the person takes their shoes off and begins tidying up the room.\",closet/cabinet;clothes;coat;door;shoe,Person in the doorway shuts the door then take off shoes walk down the hallway open another door.;The person stands at the doorway for a moment then closes the door in the hallway. The person then removes their shoes and places them in a closet. The person then hangs up their coat in the closet.,c006 1.10 8.40;c000 16.10 28.30;c057 5.20 13.80;c054 10.70 18.80;c056 5.20 14.30;c002 16.10 21.90;c008 11.70 17.50;c141 1.50 9.70;c113 11.70 17.50;c001 21.70 29.60,32.83\r\nMJVDK,9Y7F,Bedroom,6,6,Yes,A person is sitting on a towel while another person is eating a sandwich.,bed;blanket;chair;food;paper/notebook;sandwich;towel,A person is sitting on a towel and another person is eating a sandwich.,c065 0.00 35.00;c151 0.00 7.60;c156 0.00 35.00;c071 0.00 7.20;c117 7.60 14.50;c061 0.00 35.00;c059 3.10 35.00;c135 0.50 6.20;c074 0.00 3.50;c067 0.00 35.00,33.79\r\nBZ1TH,QB52,Living room,6,4,Yes,A person smiles as they drink a glass of iced tea and read a book.,book;cup;glass;sofa,A person is drinking from a glass while reading a book sitting on a sofa.;A person sits on a sofa opening and reading a book.  They take a glass of water and drink some.,c106 3.00 11.30;c107 2.40 31.00;c110 1.90 7.90;c032 0.00 31.00;c123 0.00 31.00;c027 0.00 3.30,30.29\r\n75HWR,4YWP,Dining room,7,7,Yes,A person stands using a phone. Another person runs by with a sandwich in their hands.,food;hand;phone;sandwich;table,\"A person is standing, looking at their phone. Another person walks past, holding a sandwich on a plate.\",c015 0.00 38.00;c067 24.10 31.60;c150 27.10 31.60;c016 0.00 38.00;c061 26.30 30.70,37.00\r\nW1VO2,QB52,Bathroom,4,7,Yes,A person walks into the bathroom holding a book and smiling.  The person puts the book on the table and takes a drink of coffee that's sitting next to the sink.,book;coffee;cup;door;light;mirror;sink,Person walks into bathroom and turns on the light. Person reads a book then takes a drink of coffee. Person grabs the book while looking into the mirror.;A person opens the door and turns on the light. The person looks at a book and picks up a coffee cup and takes a drink.,c026 1.90 8.20;c032 4.50 13.10;c106 11.20 19.00;c104 1.00 5.90;c008 0.10 7.40;c110 10.90 15.20;c027 5.40 13.00;c097 0.00 8.80,30.04\r\n6OKDO,JVLO,Home Office / Study (A room in a house used for work),5,4,Yes,\"A person is washing a mirror, then tidying a desk, then using a broom in a home office / study.\",broom;desk;mirror;shelf;table,\"A person is looking in a mirror then begins tidying the area with a broom, afterwards they go over to a desk and begin tidying that with a broom.\",c012 17.00 33.00;c096 0.00 15.90;c098 0.00 20.00;c102 0.00 20.00;c082 20.33 33.00,32.42\r\nQLB69,KFGP,Hallway,5,6,Yes,A person is holding smiling and laughing while talking on the phone. The person picks up a piece of food and takes a bite.,food;phone;shelf,A person is standing up in a hallway and talking on the phone. This person also has a snack.,c062 11.50 23.10;c019 0.00 32.00;c152 0.00 32.00;c156 15.50 25.20;c081 18.80 23.90;c063 14.70 20.00;c015 0.00 32.00,31.46\r\nJ355F,2Q9D,Hallway,6,6,Yes,A person is walking down the hallway while holding a bag of clothes and playing on their phone.,bag;clothes;doorway;phone,A man holding a bag of laundry and talking on his phone walks down a hallway.,c016 0.00 25.00;c020 0.00 24.50;c000 0.00 22.80;c015 0.00 23.00;c097 0.00 5.80,24.29\r\nJVISI,D0RU,Recreation room / Man cave,6,6,Yes,A person is in man cave pouring coffee and taking his shoes off.,coffee;cup;dish;door;shoe;sofa/couch;table,A man walks in the entryway and sits down on a bench. Then he pours himself a drink and takes off his shoes. Then he takes a drink from the cup.,c057 21.70 35.60;c107 18.90 26.00;c106 31.80 39.00;c108 17.70 26.40;c006 3.40 12.50;c097 2.70 8.60;c118 18.10 26.20;c011 11.90 39.00;c123 11.90 39.00,37.54\r\nS0B9O,XXN8,Bathroom,5,6,Yes,A person wearing shoes is smiling as they wash the frame of a picture.,picture;shoes;towel,\"A person in a bathroom, is smiling and cleaning a picture frame.\",c152 1.40 15.10;c033 0.00 26.40;c038 4.80 24.20,30.50\r\nRH2YW,YA10,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person is standing next to a table holding a sandwich in their hand. They sit the sandwich on the table and pick up a book.,book;food;sandwich;table,\"A person standing next to a table eats a sandwich. They place the sandwich on the table and open a book.;A person is standing by a table and eating a sandwich, they then grab a book and begin reading it.\",c027 12.10 18.30;c065 2.30 8.50;c068 8.60 13.40;c009 8.80 14.90;c156 2.40 7.30;c061 0.00 12.90;c062 8.30 16.40;c067 0.00 17.20,30.38\r\nR2YKH,Z68L,Living room,6,7,Yes,A person throws their phone onto the sofa. The person smiles as they pour a drink into a glass.,cup;dish;glass;phone;sofa;table,A person sits down on a sofa and plays with their phone. The person sets the phone down and pours a drink. The person drinks the drink and stands up.,c016 5.00 20.80;c123 3.90 54.50;c108 33.10 44.10;c151 1.90 9.00;c015 5.90 24.70;c017 18.80 28.40;c154 50.00 57.00;c106 44.30 50.30;c118 43.80 51.40;c011 0.00 55.40;c009 43.50 51.70;c119 43.20 51.40;c018 4.20 21.90;c110 19.60 26.70;c109 29.50 46.90,56.12\r\nWEU2E,KFGP,Bedroom,7,5,No,\"A person is smiling while carrying a box of dishes into the bedroom. The person sets the box down, then begins to laugh.\",box;dishes;doorway;dresser;kitchen utensils,\"A person walks into a room with a box of kitchen utensils and sets them down before they start laughing.;A person walks into a bedroom carrying a box of dishes, the person then puts the box on top of a dresser and then begins to laugh.\",c040 3.00 15.60;c042 10.70 17.80;c152 14.30 23.40;c149 26.40 31.00;c097 3.00 8.00,30.12\r\nKZ7Y8,1OHU,Home Office / Study (A room in a house used for work),6,6,Yes,A person turns a doorknob opening up the door to a home office. The person smiles as they look out the window into the beautiful sunset.,door;window,\"A person opens a door, walks into a room, and begins looking out the window in the room.\",c008 1.80 11.10;c141 1.60 12.00;c092 11.00 29.00;c097 2.70 11.90,27.88\r\nP87UK,1OHU,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person in a office is grasping a bag, they start putting the contents of the bag onto a chair until it's empty.\",bag;chair;food;groceries;pillow;television,A person is holding a bag of groceries. A person then takes out groceries and puts them on a chair.;Person h ave bag in hand with groceries in it looking at the television then put food in a chair.;A person holds a bag of groceries while watching television.  They go over to a chair with a pillow on it and take out the groceries to throw on the pillow.,c021 10.30 17.70;c020 0.00 20.90;c130 13.90 22.40;c062 12.20 22.30;c132 0.00 11.80,22.79\r\nN93LD,1OHU,Bedroom,6,6,Yes,A person pours a cup of coffee. The person laughs at something they see on their laptop. The person closes their laptop and places it on a shelf.,cup;dish;laptop;mug;shelf;table,The person took out a mug from a cup and drank from the mug and pick up a laptop and put the laptop down;A person is pouring something from a cup into a mug. The person laughs and then tries to pick up and move a laptop from a bed onto a dresser.,c081 19.40 27.90;c049 16.60 27.90;c106 0.00 28.00;c154 0.00 28.00;c009 20.00 26.10;c118 0.00 28.00;c050 16.90 23.10;c046 16.00 20.90;c107 0.00 25.80;c047 16.80 25.10,27.17\r\nRUG1J,UTMU,Basement (A room below the ground floor),5,7,Yes,A person is snuggling with a pillow and then sneezing into a phone in a basement.,phone;pillow,\"Person is standing snuggling a pillow, they then sneeze into a phone.\",c078 0.00 13.40;c015 0.00 20.90;c153 10.00 14.40;c076 0.00 20.70,21.83\r\n3DUAO,P6LJ,Closet / Walk-in closet / Spear closet,6,4,Yes,A person is opening a container of coffee and also drinking a glass of cough medicine.,cup;dish;drink;glass;hair;jar;medicine,\"A person places a glass on a box before drinking from another glass.;The person walks into a closet, picks up a jar and takes the lid off. She sets the jar down and picks up a bottle off the shelf in the closet and then walks towards the camera.\",c107 3.90 20.40;c128 18.50 36.00;c129 15.90 35.70;c119 12.80 18.50;c110 4.60 11.00;c109 13.30 20.10;c110 17.60 22.80,34.71\r\n19SJ6,PKND,Kitchen,6,6,Yes,A person is washing something in a sink. Another person is sitting in a chair and laughing softly.,chair;counter;dish;pan;sink;table;water,\"A person is sitting down, while another person is washing dishes.;Person standing at sink washing dishes, other person walks in sits on chair, person places pan on counter.\",c059 5.00 10.80;c118 23.60 30.80;c119 16.50 23.40;c121 0.00 32.00;c009 8.30 15.30,31.25\r\nYBVUE,XXN8,Bathroom,4,7,Yes,A person is undressing and putting their clothes on the table. The person begins smiling and laughing as the person does it.,clothes;jacket;table,a person is taking off their coat and folds it in their hands while smiling. the person places the jacket down and finishes folding it.,c009 15.50 31.00;c155 0.00 10.90;c152 0.00 25.90;c001 17.20 31.00;c149 0.00 26.00,30.04\r\nRF3EW,LTAC,Stairs,6,7,Yes,\"A person is standing at the bottom of a flight of stairs working on a laptop, they then put it down and open up a homework book.\",book;laptop;papers,\"A person is standing on the stairs playing with a laptop. A person puts down the laptop, and begins to look at some papers.\",c046 3.90 14.30;c047 7.90 21.80;c051 14.00 22.30;c026 11.90 27.30;c030 8.90 34.60;c032 28.70 36.00;c052 0.00 29.40,34.67\r\nBZ0YN,DXDI,Kitchen,6,7,Yes,A person drinks some water by the sink then turns to start cooking at the stove.,cup/glass/bottle;food;glass spatula,A person is standing at the sink drinking a glass of water then they pick up the spatuala and walk to the stove.,c106 0.00 23.60;c107 0.00 24.50;c147 27.20 31.00,30.38\r\n677VJ,HR43,Bedroom,5,,Yes,A person in the bedroom is working on something on their laptop. They are watching a picture that is sitting nearby as well.,bed;laptop,A person is sitting on their bed  working on their laptop.;A person types on a laptop while in bed,c052 0.00 34.00;c135 0.00 34.00,33.00\r\nLVJ3U,Z68L,Home Office / Study (A room in a house used for work),6,7,Yes,A person stands in the room and turns on a light.  Then the person starts running around a chair in circles.,chair;clothes;floor;light,\"A person walks to a light switch and turns it on, runs around a chair twice, then leaves.;Person walk over to the light and turn it go then run around the chair and leave the room.\",c104 6.00 10.00;c150 0.00 27.00,26.38\r\nDHR83,C7O9,Kitchen,5,7,Yes,\"One person walks in with homework sneezing, while another person is standing under a light eating.\",food;homework;paper;sandwich;table,\"A person is standing at a counter, eating a sandwich. A second person walks to the counter, writing on homework.\",c116 0.30 5.40;c115 0.00 5.20;c145 1.40 32.00;c153 1.20 10.00;c156 0.00 32.00;c067 0.00 8.60;c014 1.50 32.00;c065 0.00 32.00;c009 0.60 5.40;c061 0.00 32.00,30.79\r\nIKPR3,QZQ4,Stairs,5,7,Yes,\"A person is eating a sandwich while sitting on the stairs. The person puts the food down, and quickly runs down the stairs.\",food;sandwich,A person sitting on a staircase is eating a sandwich. They then get up and run down the stairs.,c065 0.00 20.00;c061 0.00 15.90;c156 0.00 20.00;c150 9.80 20.00;c154 9.20 14.20;c067 0.00 10.90,19.17\r\nECCW2,0KZ7,Dining room,5,7,Yes,\"A person opens a bottle of medicine. After a moment, they close the medicine, and then start throwing dishes.\",bowl;chair;cup;dish;glass;medicine;plate;table,\"a person opens some medicine while sitting at a table then throws dishes;A person is sitting down, they open and look at a medicine bottle. They then pick up some dishes and throw them.\",c128 18.40 27.30;c059 0.00 29.00;c011 0.00 29.00;c128 3.00 9.60;c118 17.00 23.10;c120 16.70 21.70;c012 16.10 27.40;c119 22.90 27.60;c009 16.60 21.30;c110 20.50 26.60,27.67\r\nLENVX,AC0W,Kitchen,6,7,Yes,A person is washing dishes in a sink and then pouring coffee in a cup in a kitchen.,cup/glass/bottle;dish;sink,A person turns on the sink to do dishes. The person then pours something off screen.,c121 0.00 34.00;c107 0.80 7.80;c118 5.20 15.30,33.29\r\n0R4UI,Q4IF,Basement (A room below the ground floor),7,7,Yes,A person is sitting at a desk and pouring a cup of coffee in a basement.,coffee;cup;desk;mug;table,A person is drinking something out of a mug while sitting on a table. They then proceed to dump out the mug on the floor.,c106 0.00 3.80;c108 0.00 6.30;c011 0.00 8.00;c107 0.00 5.60,7.12\r\nTYKVA,M80J,Bedroom,7,7,Yes,One person is tidying the room and puts a pillow on the bed. Then the person walks to a desk and straightens some books there.,bed;book;box;pillow,a person tidies up their bed and puts the pillows back on then looks in a box;A person is putting a box on the floor then they begin to pick up pillows and place them on the bed.,c077 12.00 25.00;c041 0.00 5.00;c028 3.20 9.90,34.50\r\n76A29,I4RP,Kitchen,6,6,Yes,A person walked into the dining room taking a cup of coffee and a glass with the person.  The person put the cup and glass down on the table.,coffee;cup;table;water,A person is holding a cup of coffee and water. A person places the cups on a table.,c009 2.90 9.00;c107 0.00 9.00;c110 0.00 7.10,8.42\r\n485I1,JVLO,Living room,5,5,Yes,A person is watching television and drinking from a glass on the stairs.,chair;cup;doorway;television,A person is sitting on a chair  watching tv they then get up and drink coffee while going up the stairs.;A person sits in a chair and watches TV before walking up some stairs.,c106 24.40 31.00;c154 15.10 23.10;c059 0.00 12.40;c132 0.00 11.30;c097 12.10 20.20,30.46\r\n00ZCA,I4RP,Living room,6,6,Yes,Person enters the dining room and pulls chairs out from the table.  Person then turns doorknob and closet and opens closet. Person then takes out vacuum and vacuums under the table.  Person then puts chairs back and starts tidying up the dining room table.,chair;closet/cabinet;door;floor;vacuum,\"A person walks into a room and takes chairs out, they then take out a vacuum and tidy up the floor.;A person moves some chairs so they can plug in a vacuum cleaner and start vacuuming. They then take a duster and start dusting.\",c137 36.60 52.20;c141 10.50 16.90;c127 35.60 54.00;c113 10.50 16.40;c008 10.10 16.90;c112 23.60 35.50;c006 21.70 32.20;c138 24.90 42.40,92.88\r\n7TNGJ,H8N1,Bathroom,7,6,Yes,A person is seen opening the medicine cabinet. They begin pulling out medicine and eating it. They then walk out the doorway.,cabinet;doorway;medicine,\"A person is looking in the mirror, then opens a medicine cabinet, takes some medicine, and drinks a beverage from a cup.\",c112 17.70 26.50;c113 0.40 5.90;c129 9.70 14.70,27.08\r\nQJIRI,C7O9,Kitchen,5,7,Yes,One person is watching the doorway as another is grasping the groceries.,bag;box;doorway;food;groceries,A person is standing while holding groceries and another person is talking.,c020 0.00 32.00;c040 0.00 32.00;c061 0.00 32.00,31.08\r\nWH1PD,DXDI,Bedroom,5,7,Yes,A person in their bedroom is smiling because they are trying to take a picture through a mirror. They stop taking the picture and start drinking from a glass of water.,bed;camera;can;cup;glass;mirror;object;phone;picture;water,\"A person sitting on a bed takes pictures of their reflection in a mirror while laughing, followed by drinking from a glass of water taken from the floor;Person sitting on bed, looks at camera closely, puts camera down, picks up a can, drinks from it.\",c106 19.90 31.00;c152 0.00 17.20;c015 0.00 16.60;c135 0.00 31.00;c096 0.00 9.20;c017 12.00 19.80;c087 0.00 18.10;c016 0.00 16.30;c110 17.00 31.00,30.08\r\n3XUPT,YMXV,Closet / Walk-in closet / Spear closet,5,5,Yes,\"One person with a broom opens the bathroom door, then watches the person inside undressing and dressing.\",broom;clothes;door,\"Person walks to door with broom, then opens door and starts dressing.\",c098 0.00 13.40;c008 0.00 13.40;c148 9.50 32.00,31.12\r\n5OMSL,T7C3,Pantry,7,7,Yes,\"A smiling person holds a broom and looks at items in the pantry. They take a box and turn, leaving the pantry.\",box;broom;cabinet;pantry;shelf,\"A person holding a broom walks into the kitchen and goes to an open cabinet.  They look around the cabinet, take a box off the shelf and examine it.;a person holds a broom and looks in the pantry and grabs a box\",c098 0.00 37.00;c040 27.00 37.00;c043 26.10 31.90,35.92\r\nI6KKY,HR43,Kitchen,4,6,Yes,A person is smiling while opening a cabinet. The person takes a towel out..,blanket;cabinet;towel,\"A person walks into the room, opens a cabinet and removes a towel.  That same person then leaves.\",c033 3.00 15.00;c035 2.80 8.70;c112 8.80 14.80;c113 0.90 7.50;c073 2.40 15.00;c070 2.40 15.00;c152 0.00 15.00,14.12\r\nBCQWJ,YA10,Basement (A room below the ground floor),6,7,Yes,A person runs into the basement and grabs a pair of shoes and a camera. The person quickly walks back out.,doorway;phone/camera;shoe,A person runs in through a door picks up keys and shoes and runs back out.,c056 5.60 12.30;c150 2.20 19.90;c053 6.30 22.80;c097 3.30 7.70;c018 8.80 13.80;c015 9.50 19.90,24.83\r\nJ9P8D,YA10,Hallway,6,6,Yes,A person is running while holding a box and grasping a phone.,box;doorway;phone,\"Person is running up and down the hallway, in and out of rooms, while carrying a box under left arm and phone in right hand.\",c015 2.50 29.00;c040 1.90 29.00;c150 1.70 29.00;c097 2.90 8.90;c097 5.30 10.70,30.00\r\n32N81,DXDI,Stairs,6,7,Yes,A person is holding a glass of water and some dishes by their stairs. They put the dishes down and start putting some water into the glass of water.,dishes;glass;water,Person put a dish on the floor then get a pitcher off the stair pour water in the glass and walk off.,c154 1.70 6.70;c110 3.60 23.00;c107 0.00 23.00;c108 5.50 18.20,22.50\r\nZVCMM,UTMU,Kitchen,7,7,Yes,\"A person is eating food, then grasping a cabinet door and then putting dishes in a sink in a kitchen.\",cabinet;dish;door;food;sink,\"A person is standing in the kitchen eating something. The person opens a cabinet, then closes the cabinet. A person then starts tidying up the dishes in the sink.\",c119 16.60 27.00;c118 17.20 23.40;c119 18.20 23.40;c113 8.60 14.30;c156 3.70 10.90;c120 16.90 23.70;c061 0.00 27.00;c062 0.00 27.00;c112 14.10 20.90,26.38\r\n827O1,UTMU,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is in their home office running around looking for a box. When they find the box, they are smiling and inside the box they find a towel.\",box;clothes;dog;towel,The person enters searching for something then finds it in a chair and says something to a dog.,c040 11.40 16.40;c041 12.00 17.20;c042 16.20 22.10;c043 9.30 16.00;c044 13.10 19.40;c152 15.10 20.30;c000 13.90 25.60;c035 13.90 19.30;c033 14.30 25.60;c002 13.90 19.30,27.12\r\nU9B0R,8IOD,Hallway,6,7,Yes,\"Wrapped in a blanket, one person works on a problem in a book, then stands and plays with a box.\",blanket;book;box;pen,\"A person is sitting and writing in a book. Then they close it, put their pen away and flip a box after standing up.\",c025 18.00 26.10;c032 0.00 25.10;c154 22.20 30.40;c045 24.40 32.00;c043 24.40 32.00;c070 0.00 32.00;c116 18.00 24.00;c145 0.00 21.90;c026 0.00 23.60;c040 24.20 32.00;c115 0.00 23.00,31.00\r\nQL92H,P6LJ,Kitchen,4,7,Yes,\"A person is running in holding a bag. The person puts it down and, sitting on a chair, begins to reach for the cabinet.\",bag;book;cabinet;chair;doorway;table,A person enters a room sits down and takes a bag from a cabinet. The person stands up.,c059 6.90 15.30;c112 13.80 19.90;c113 8.70 14.20;c150 0.20 8.10;c151 5.80 11.60;c009 14.30 20.20;c097 18.40 23.00;c024 2.90 8.10;c026 13.80 20.30;c030 13.10 19.20;c154 10.60 16.50;c028 13.70 20.10;c097 2.00 7.00,21.75\r\n8K0Y5,HR43,Other,5,1,No,A person is sitting in their basement watching a video on on their phone and drinking from a glass.,cup;glass;phone,A person stands while drinking from a glass.  They check their phone with their other hand.,c015 3.00 33.00;c016 3.00 33.00;c106 1.00 33.00;c107 1.00 33.00,31.88\r\nIP2EA,6RE8,Bedroom,5,6,Yes,\"A person in their study eats a cookie, smiles. The person puts a towel on a shelf and leaves.\",bag;book;chair;clothing;desk;food;papers;shelf;table;towel,\"A person sits in a chair and eats before getting up and throwing a towel.;A person is sitting at a computer desk in a chair eating a snack.  While eating, the person picks up some papers to look through.  The person then gets up from the desk, gathers their trash, walks over to chair, moves a piece of clothing from the chair to a shelf, and then walks out of the room.\",c036 25.10 30.80;c156 0.00 23.70;c154 22.30 28.60;c059 0.00 26.00;c011 0.00 26.60;c116 8.50 20.20;c061 0.00 33.00;c020 0.00 24.90;c117 7.70 16.30;c009 14.90 19.80;c032 12.60 18.70;c022 18.10 25.50;c115 10.20 15.50,32.38\r\nWENGZ,PKND,Kitchen,6,5,Yes,A smiling person opens the refrigerator door taking out a sandwich.,door;food;refrigerator;sandwich,A person is standing in the kitchen. They open the fridge and take out a piece of food.,c065 6.60 32.00;c143 0.20 7.80;c152 0.00 15.80;c142 13.70 18.80;c061 5.40 32.00;c149 0.00 16.60,31.33\r\n54PFK,X5XO,Laundry room,5,7,Yes,A person leaves the room after grasping the box of laundry soap from the shelf.,detergent;shelf;stairs,\"Person is in basement, grabs detergent bottle and walks upstairs.\",,25.83\r\nT04MB,JVLO,Bedroom,5,6,Yes,One person is laughing into a mirror when another person grasps an old chair and starts to fix it.,hair;mirror;window,\"A person is looking in the mirror and fixing their hair, while another person carries a chair by the window.;A person fixes their hair in a mirror. Another person picks up a chair and moves it\",c096 0.00 15.70;c144 0.00 16.20;c094 6.70 16.00,31.46\r\nG1KTZ,XXN8,Bedroom,5,7,Yes,\"A person sits at a desk, drinking a glass of water. The person pauses and looks out the window.\",cup;desk;glass;table;water;window,\"A person sat down, drank some water, and then looked out of a window.\",c009 12.80 19.50;c092 16.90 31.60;c106 0.00 19.00;c154 14.90 20.30;c151 0.00 3.90,31.17\r\nYUOVC,PO5L,Living room,5,6,Yes,A person is late for class and is frantically dressing and undressing trying to decide on clothes to wear to school.  The person had just finished their homework last minute and the homework is sitting on a desk.,clothes;desk;floor;homework;paper/notebook,\"There is a person who picks up a shirt off the floor and puts in on.  That same person then takes off the shirt, puts on a robe, picks up homework off a desk and leaves the area.;A person walks into the room, takes some clothes off the floor and gets dressed.  They undress and put the clothes back on the floor, then redress in another item, grab some homework from a desk and walk away.\",c148 5.80 18.80;c002 1.90 7.70;c117 25.60 30.30;c155 15.50 22.10;c003 17.80 22.50,35.25\r\nXD03B,KQI6,Living room,2,5,Yes,One person puts a bag on a table as another person stands up holding a broom.,bag;book;broom;chair;doorway;table,A person walks in with a backpack. The person sits the backpack down. Another person walks in and begins sweeping.,c020 0.00 11.70;c022 5.60 11.50;c098 8.70 30.00;c102 8.70 30.00;c009 5.60 11.40;c030 18.00 30.00;c059 1.20 7.30;c032 18.30 29.20;c027 18.40 23.10;c025 18.60 30.00;c021 6.40 11.30;c097 7.80 23.00;c026 18.10 30.00,29.33\r\nOZPA9,T7C3,Dining room,6,7,Yes,A person sneezes as they turn on a light in the dining room. They then sit at the table to work on homework.,chair;homework;light;paper;table,\"A person walks into dining room and turns the light on, then sits down at the table ans starts writing something.\",c104 0.40 8.50;c145 12.80 45.00;c151 13.10 20.80;c011 14.60 45.00;c014 16.50 45.00;c059 16.30 45.00,43.50\r\n6SB75,PKND,Garage,7,5,Yes,Person is lying on floor playing with phone book in garage.,book;floor;phone,A person is laying on the ground reading something.,c032 0.50 19.30;c124 0.00 32.00;c126 16.70 25.40;c027 0.00 32.00;c026 0.00 32.00,31.38\r\nD2VU8,IPFF,Living room,7,5,Yes,A person is putting a camera on a shelf and then snuggling with a book on the sofa in the living room.,blanket;book;couch;laptop;phone;sofa;table,\"A person is sitting on a sofa with their phone they get up put the phone down then lay on the sofa with a blanket;The person gets up from the couch, walks to the table, puts the phone down, picks up a book, lays down on the couch, covers with a blanket then gets up and puts down the book.\",c026 5.70 21.00;c122 7.00 20.30;c154 0.30 5.20;c015 0.50 6.80;c017 2.80 8.20;c072 6.60 21.00;c016 0.60 8.00;c052 0.00 5.00;c025 15.50 19.50;c009 4.00 8.00;c152 9.00 14.00;c051 0.00 4.00;c073 6.00 14.00;c028 16.00 21.00;c030 5.30 10.10;c151 5.40 11.00;c029 9.40 15.30;c070 6.40 14.00;c014 0.00 4.20;c027 10.00 19.00;c123 0.00 4.70;c032 10.10 20.00,19.54\r\n987P8,HJJ4,Recreation room / Man cave,3,6,Yes,A person throws some clothes on the ground. The person then begins undressing by taking off a jacket. Next the person picks up a picture and stares at it.,blanket;chair;clothes;floor;picture,A person sitting in a chair throws a blanket in the floor.  That same person then takes off a shirt and throws that in the floor and picks up a picture.;A person sitting in a chair throws a blanket on the floor. The person removes their shirt and picks up a picture.,c084 9.40 22.00;c155 2.00 11.80;c074 0.00 5.20;c059 0.00 22.00;c126 0.00 4.20;c083 8.80 15.70;c003 0.00 4.20,20.75\r\n7M1D0,KFGP,Laundry room,7,7,Yes,The person is washing the towel in the laundry room after the person tried sneezing in the sink.,clothes;dryer;towel,A person is putting a towel into a dryer and closing it before walking to a corner and sneezing.,c034 7.20 17.10;c153 21.20 29.00;c005 8.00 20.40,28.25\r\nP27FO,2RTW,Bedroom,6,6,Yes,The person was happy they had just fixed the book shelf so they smiled.,book;shelf,\"The person put a book back on a book shelf,arranged the books and put hand on the book.;A person places a book onto a bookshelf, then the person straightens up the books on the shelf. The person takes a step back and looks around, and then places a hand on the books.\",c081 2.70 12.20;c082 10.10 23.20;c028 12.20 29.90;c154 16.00 27.00,30.50\r\nJ1EA0,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is standing by a door and grasping groceries.,bag;groceries,\"A person holds a bag open and looks through the groceries, then closes it and stands around aimlessly next to a door.\",c020 0.00 32.00;c021 0.00 14.50,31.17\r\n7T6MB,2RTW,Bedroom,6,6,Yes,Person takes off shoes. Person gets into bed with medicine. Person lies down.,bed;blanket;covers;desk;medicine;shoe,\"A person walks into a bedroom, removes his shoes, walks over to a bed, picks up a bottle of medicine and lays down.;Person walks in room, takes off shoes, walks towards desk, grabs medicine, lays in bed and puts cover on body.\",c128 8.00 32.00;c057 0.00 8.10;c134 10.20 32.00;c151 7.70 15.50;c056 0.00 6.90;c072 14.80 32.00,31.38\r\nCC6JC,R1OT,Bedroom,6,6,Yes,A person is holding a sandwich.  Then a person is smiling and looking at groceries that are in a bag.,bag;bed;food;sandwich;table,A person is sitting on a bed eating a sandwich. There is a bag of groceries on a table.;A person is sitting on a bed eating some food and smiling. They bend over and touch a bag on a table.,c065 0.00 5.00;c152 4.40 12.10;c135 0.00 21.00;c156 0.00 4.30;c021 10.80 15.90;c061 0.00 21.00,19.96\r\nLJS9V,BYF9,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is sitting by the front door, smiling at the television.\",chair;door;television,\"A person is sitting in a hallway smiling, and watching television  through an open door.\",c132 0.00 26.00;c152 0.00 5.80;c059 0.00 26.00,25.25\r\nK3T1B,WG9D,Hallway,2,6,Yes,\"A person smiles as they fix the door. The person laughs hysterically, then throws their bag of tools across the room.\",bag;door,Someone is banging on something by a door.,c152 2.30 10.10;c007 0.00 6.80,10.12\r\nQZ94G,BYF9,Living room,7,7,Yes,\"A person is lying down on a couch, snuggling with a pillow. Another person is doing homework on the floor while looking into the camera.\",bed;book;camera;floor;pen;phone;pillow,\"A person is lying on the bed, while another person is looking through a book and holding a camera.;A person is reading and marking up a book.  The person then closes the book and picks up a camera to play with.  Another person is fidgeting in a bed.\",c078 0.00 28.00;c015 10.30 28.00;c125 0.00 28.00;c134 0.00 28.00;c025 9.40 14.80;c032 0.00 13.10;c018 10.70 17.40;c145 0.00 14.20;c016 14.50 28.00,27.00\r\nYH85Z,PKND,Other,4,7,Yes,\"A person walks to their car, opens the trunk, and takes out a bag of food.\",bag;food;groceries,A person walks to the kitchen and grabs a bag of groceries.;A person wearing a towel goes outside to retrieve a bag of groceries.,c020 11.70 33.00;c021 26.00 33.00;c023 15.40 25.10;c061 27.40 33.00,31.58\r\nAPH4V,25TD,Closet / Walk-in closet / Spear closet,4,5,Yes,A person is seen putting clothes in their closet. After they are done they close their closet door and open the nearby window.,clothes;dishes;door;window,\"A person bends over and picks up clothing on hangers and puts the clothes in a closet. The person then closes the closet door, turns around and opens up a curtain and looks out a window.\",c001 6.30 17.60;c006 14.00 19.10;c092 18.70 32.00;c000 0.00 12.00;c090 16.80 28.80;c004 6.90 17.40,30.83\r\nAHZWF,DXDI,Bathroom,7,7,Yes,\"A person is sitting in the doorway. They stand up, smile very big, and begin pouring their coffee into the bathtub/shower while laughing hysterically.\",coffee;cup;doorway,A person holding a cup of coffee is crouching in a doorway.  They stand up and pour the coffee into the bathtub.,c154 6.10 12.70;c108 14.20 20.30;c107 0.00 10.40;c097 0.00 13.70,28.00\r\nF86M9,D0RU,Living room,7,7,Yes,A person is laughing at a television and then fixing a shelf in the dining room.,shelf;television,A person stands in the living room and laughs while watching a show on the television. He then leans over to tidy up the shelf.,c131 10.10 24.50;c132 0.00 26.70;c149 10.90 25.20;c152 0.00 18.90,30.62\r\nABK63,M80J,Recreation room / Man cave,6,7,Yes,A person is in the rec room snuggling with a pillow.  The person puts down the pillow and grabs a glass of water.  The person drinks the water and puts the glass into a box.,bed;cup;glass;pillow;water,\"The person gets into the bed and lies down. The person then hugs a pillow. After a few seconds of hugging the pillow, the person drinks from a glass of water.\",c078 2.70 17.20;c106 17.70 26.30;c076 2.20 19.30;c134 0.40 31.00,30.08\r\nSF9P7,3531,Bathroom,6,7,Yes,\"a person washes a glass in the bathroom, then throws a sponge on the shelf.\",dish;sponge,A person is scrubbing their bathroom. They wash the sink handles. They toss the sponge against a wall.,c154 22.90 31.50;c121 0.00 30.60,32.33\r\nFI2TP,LWUV,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person in their home office is working on some work on top of the table. They begin to have rampant sneezing, and stop doing what they are doing. They begin standing up while grabbing a blanket in one hand, and a bag in their other hand.\",backpack;bag;blanket;chair;homework;paper;pen;phone;picture;table,\"A person is working on their homework, they sneeze repeatedly, then pick up a blanket and a backpack, and walk away;This person appears to be in a kitchen, sitting at table, doing homework, looking at phone, sneezing, gets up and leaves the room.\",c023 21.20 26.10;c154 21.50 26.80;c145 0.00 24.10;c073 23.40 29.50;c153 13.00 23.70;c011 0.00 26.00;c014 30.00 33.00;c088 24.40 28.40;c070 22.90 29.50,31.58\r\nGXVX8,KQI6,Living room,6,5,Yes,\"A person is laughing on a sofa, while a other person is drinking form a glass.\",cup;doorway;glass;sofa,A person is lying on a couch. A 2nd person walks into the room and pours water into a cup. They then pick up a cup from a table and drinks from it.,c122 0.00 32.00;c106 9.50 27.50;c110 4.60 9.10;c152 18.00 32.00;c123 0.00 32.00;c097 1.10 7.50;c108 6.50 12.80;c107 5.40 15.50,30.71\r\n4EDGW,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,4,Yes,\"One person runs through the room laughing with a phone in hand, and another is eating a bite of food.\",doorway;food;hand;phone,A person walks into a house while talking on the phone and stands next to another person who is sitting down playing with another phone.,c016 11.20 18.80;c019 12.10 21.80;c149 12.10 21.80;c097 10.90 15.80,30.21\r\n4ZMEW,DXDI,Dining room,5,7,Yes,\"A person is in a dining room standing by a window, they then start to watch pictures from their camera and they laugh and giggle.\",corner;phone;window,a person looks out a window then plays on their phone in the corner of the room;A person stands and looks out the window. They then play on their phone while standing in the corner.,,30.04\r\nNTW37,HR43,Bathroom,4,7,Yes,A person in the bathroom is washing their shoes in the sink. They stand on top of a chair and then attempt to start closing the door while on the chair.,chair;door;shoe;sink,\"A person is washing shoes in a sink, then stands up on a chair and closes the door.\",c006 18.10 24.00;c060 14.50 23.10;c154 14.50 23.30;c054 13.00 18.50;c053 0.00 18.50,22.50\r\nXPDI1,KASL,Bedroom,6,5,Yes,A person is grasping some dishes and running through the doorway. They place the dishes on top of a pillow.,cup/glass/bottle;dish;doorway;pillow,\"This person runs into the room with a cup, places it on the bed, and admires it.\",c097 11.00 19.00;c118 0.00 8.00;c119 5.00 10.00;c120 17.00 22.00;c150 2.00 9.00;c107 0.00 10.90;c106 0.00 5.80;c109 0.00 10.60,29.25\r\nLV760,HJJ4,Hallway,7,7,Yes,A person stands in a hallway tidying some pictures. The person grasps a doorway and begins to fall.,doorway;picture,A person is looking at several pictures. A person then falls down on the floor,c088 0.00 15.40;c083 0.00 6.70,18.67\r\nD9AR5,ENC8,Kitchen,5,7,Yes,A person is cooking on the stove while holding a phone.,food;phone;stove,A person is cooking on a stove using a spoon they walk out of the room.,c015 0.00 32.60;c147 0.00 27.90,33.54\r\n9HNRY,KFGP,Laundry room,7,7,Yes,One person is sitting on a chair opening a box and sneezing at the dusty contents.,box;chair;paper/notebook,This person is opening a box and seems to be searching for something.The person also seems to be coughing a lot.,c041 0.00 22.00;c044 17.70 23.40;c059 0.00 28.00;c117 18.00 23.30;c153 4.00 9.50;c153 6.60 11.80;c115 18.50 28.00;c040 0.00 28.00,26.58\r\nLU82W,9OK1,Kitchen,5,6,Yes,\"In the pantry, a person walked in, threw the coffee down on the counter and grabbed a picture laughing.\",box;counter;paper;picture;table,A person throws a box onto the table. The person then picks up a picture from the table and begins to laugh.;A person throws a box onto a counter. Then they pick up a piece of paper and laugh at it.,c009 0.00 2.60;c084 0.30 13.00;c085 1.00 13.00;c083 0.00 4.30;c149 1.00 13.00;c040 0.00 13.00;c045 0.00 2.50;c152 1.10 13.00;c115 0.20 13.00,11.58\r\n6MJGP,0RNU,Garage,7,7,Yes,While sitting in the person's car with their laptop and after sneezing the person looks into their glove box for some medicine.,box;car;door;laptop;medicine,\"A person is sitting in a car working on a laptop they sneeze reach into the glove compartment and take out a bottle of medicine.;A person is sitting in a car and opening a laptop.  The person types on the laptop, sneezes, opens the glove compartment door and takes out a medicine bottle.\",c047 0.00 27.00;c052 1.00 17.00;c041 17.00 22.00;c048 0.00 4.20;c128 20.00 27.00;c039 20.10 24.90;c153 14.30 20.10,26.25\r\nTZF0X,0KZ7,Entryway (A hall that is generally located at the entrance of a house),7,5,Yes,A person walks into an entryway while holding a bag of clothes. The person lays the bag on the floor and starts taking off their shoes.,bag;door;floor;shoe;vacuum,\"A person enters a home, puts down her bag and takes her shoes off before picking the bag back up.;A person is  walking through the door they proceed totake off their shoes and pick up a bag next to a vacuum.\",c020 1.10 9.10;c057 9.10 13.70;c097 3.70 11.00;c022 2.20 9.00;c024 3.20 9.20;c023 15.70 21.70;c126 4.10 9.80,21.21\r\n0GFE8,UTMU,Closet / Walk-in closet / Spear closet,6,7,Yes,A person walks into their closet putting a box of clothes on a shelf. They turn and run out of the room.,box;shelf,\"A person carries a box and puts it on a shelf, then runs away.\",c081 0.00 13.40;c040 0.00 14.20;c042 1.60 14.40;c150 12.10 19.00,17.88\r\nCBLSW,3VLX,Kitchen,6,6,Yes,\"One person walks in and starts tidying up the stove and the sink, which has a dirty glass in it.\",cup;dish;glass;sink;stove;towel,\"A person walks into the kitchen grabs a wipe, cleans up the stove, and puts a glass in the sink.\",c109 24.70 31.30;c110 13.30 19.80;c118 14.20 30.90;c035 2.70 11.30,44.33\r\nT5GRP,YMXV,Home Office / Study (A room in a house used for work),6,7,No,A person is smiling at a laptop while another person is fixing a vacuum.,bedroom;chair;desk;laptop;laugh;roller;table,\"A person is sitting in front of a laptop laughing, the view pans and you see another person in the bedroom cleaning the walls.;Person sitting at desk with open laptop, touches desk and begins laughing throwing head back multiple time. Other person is using a roller on the walls.\",c051 0.00 21.40;c152 0.00 20.30;c011 0.00 21.20;c014 0.00 21.20;c149 0.00 16.20;c059 0.00 21.50,31.25\r\n7BQ1O,4I2W,Bedroom,6,6,Yes,A person walks into their garage and turns on the light. They open the garage door and another person pushes out an old sofa that was sitting outside. They both laugh.,door;light;table;wall,\"Two people walk into a room, turn on the lights and move a small bench or table out of the room.;Person in room wanting to move a table when another person comes in to help him and takes the table out of the room.\",c149 21.10 31.00;c104 2.20 6.60;c006 0.20 9.10;c008 5.30 12.50;c097 0.40 6.90,29.54\r\nVG8QP,1OHU,Kitchen,6,6,Yes,\"While fixing the chair, the person became thirsty. So the person went to the sink. After pouring out the old water from the glass, the person began filling it up with fresh tap water.\",chair;cup;dish;faucet;glass,\"A person pushes in a chair at the dining room table, then picks up a mostly empty glass of water to bring it into the kitchen and refill it from the faucet.\",c107 4.60 9.50;c109 10.70 19.90;c110 3.30 9.50;c120 0.00 12.20;c106 1.70 13.80;c108 16.30 27.00;c152 4.00 14.40;c118 0.00 30.50,30.50\r\nFJRGJ,1OHU,Kitchen,6,6,Yes,\"In a rush a person quickly opens the pantry door and throws cans of soup inside on the shelf.  The last can of soup they're about to put on the shelf, they pause and hold the can closer to their eyes and realize it's not what they have bought.\",can;closet/cabinet;door;pantry;shelf;table,\"A person is holding 4 cans, they walk over to a door, open it, then inspect the cans , then put them inside the pantry on the shelf.;The person was looking at several cans of food analyzing them and trying to make a decision.  The person walked to the cupboard and put them back.\",c008 4.90 10.50;c081 7.80 16.90;c113 4.60 10.50,32.04\r\nQ57HC,9PLL,Kitchen,6,7,Yes,A person is in their kitchen cooking on their stove. The person pours milk into the pot. They open a window and leave.,dish;food;stirrer;stove;window,A person is standing at the stove stirring a pot. Then they put down the stirrer and pick up a second pot to pour something into a third pot. They put down the third pot and open a window then walk to the other side of the room.,c090 31.00 39.20;c147 0.30 33.10;c118 16.80 32.10;c120 14.10 18.30;c119 26.20 30.40,41.71\r\n9T0AC,YMXV,Living room,6,7,Yes,One person with hair wrapped in a towel is on the sofa watching another person pouring medicine they took from a bag.,bag;hair;medicine;sofa;towel,A person is drying their hair with a towel. Another person walks in and sits on the sofa and gets medicine out of a bag.,c020 23.40 33.50;c123 0.00 34.00;c128 25.70 32.10;c129 28.30 34.00;c021 21.90 28.90;c033 0.00 22.60;c034 0.00 18.30;c038 0.00 18.00,32.88\r\nTZEJS,3H6W,Dining room,7,7,Yes,\"One person pours a drink and eats something, then leaves a pair of shoes in the doorway by a broom.\",broom;cereal;food;glass;shoe;table;water,After pouring a glass of water at a table a person begins to eat celery. They then go place their shoes on the floor by a closet.;The person is walked over and sat down at the table. The person pours himself a glass of water and starts eating. The person places his shoes next to the door.,c151 13.90 19.10;c061 6.80 18.10;c054 19.00 26.40;c156 6.00 17.00;c009 0.00 10.00;c011 2.00 17.00;c108 2.70 9.30;c063 6.30 10.80,29.08\r\nFU5BL,2RTW,Pantry,6,6,Yes,A person is watching a video on their phone. The person takes a picture of themselves with their phone's camera as they eat a bite of food.,chair;cup;desk;food;laptop;phone;sandwich;table,\"A person is sitting at a table with a laptop. The person is playing with their phone, and then picks up a sandwich and takes a bite. After putting it down, the person also puts the phone down and looks at their computer.;A person is sitting at a computer desk and playing on their phone.  While on the phone, they pick up a sandwich that is sitting on the desk and take a bite.  The person then puts the phone down and looks at something on the computer.;A person is sitting at a desk, looking at a phone. The person eats a sandwich, puts the phone down and begins reading their laptop.\",c061 11.10 23.00;c015 0.00 24.40;c156 12.20 33.00;c051 22.00 33.00;c062 10.40 25.10;c016 0.00 25.60;c065 9.80 23.50;c063 9.00 14.00;c017 20.00 25.00;c068 18.00 23.00;c011 0.00 33.00;c059 0.00 33.00;c014 0.00 33.00;c018 0.00 28.50,32.21\r\nPAWAE,2RTW,Living room,6,6,Yes,\"While watching the game on the television from the doorway, the person was playing a game on their phone.\",doorway;phone;television,A person is standing in the living room playing on their phone.;The person is playing a game of sorts on his phone while watching a basketball game in fast forward on the tv.,c016 0.00 33.00;c132 0.00 33.00;c015 0.00 33.00,31.62\r\nTYZ05,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is drinking a glass of water while eating a sandwich. The person sets down the glass, and sets down their food on a plate.\",chair;cup;dish;food;glass;laptop;sandwich;table;water,A person is sitting at a desk working on their laptop while eating a sandwich and drinking a glass of water.,c061 0.00 14.00;c106 8.70 34.00;c065 0.00 13.70;c156 0.00 13.70;c011 0.00 34.00;c052 0.00 34.00;c067 0.00 14.40;c051 0.00 34.00;c014 0.00 34.00;c118 1.10 15.80;c059 0.00 34.00,32.54\r\nRAQNI,JVLO,Recreation room / Man cave,5,7,Yes,A person is tidying up a pile of clothes. Another person is watching out a window.,blanket;chair;clothes;doorway;window,A person is folding blankets and putting them on a chair.  A second person is looking out a window.;A person picks up and folds a blanket and places it on a chair. Another person stands looking out of a window.,c001 9.80 18.60;c004 0.00 15.70;c092 23.60 33.00;c070 4.10 14.30;c071 10.10 20.40;c073 14.60 20.10;c075 8.10 16.20;c000 0.00 18.50;c097 19.20 24.70;c002 14.90 19.90,31.92\r\nDG1A5,PKND,Living room,6,6,Yes,\"A person is running over to the window. Then, holding a sandwich, the person begins sneezing as the person looks out the window.\",bars;sandwich;sill;something;window,A person is holding something and climbs up on a window sill. The person is pointing and looking out the window and smiling and touching the window bars with the item.;A person climbs up next to a window and starts laughing and moving arms as they repeatedly put a sandwich close to the window.,,30.38\r\n42PMR,0KZ7,Kitchen,6,7,Yes,\"A person is in a kitchen tidying the stove , they start playing with a box of cereal before placing it into the refrigerator.\",box;dish;food;refrigerator;stove,\"A person is tidying up the stove in the kitchen, they then take a sip of coffee then takes a box and puts it in the refrigerator.\",c142 35.50 40.00;c143 22.70 30.50;c040 15.50 40.00;c042 30.80 39.10;c043 14.50 19.90;c118 2.90 9.40;c120 3.00 7.80;c063 0.00 3.20;c063 14.50 19.90;c062 14.70 39.70;c119 0.00 6.90;c061 0.00 4.50,38.79\r\n5TNRZ,18IT,Living room,7,7,Yes,Coming from the bath into the hallway a person takes the towel from around the neck and throws it back into the bathroom. It lands on the sink in view. Another person comes down the hallway from the other end eating a muffin and waves is if leaving. Pan to person near bathroom.,blanket;doorway;towel,\"Person takes a towel from around neck and throws it into the bathroom while another person walks in, says hello and heads to the bathroom.\",c036 0.00 5.80;c070 3.50 16.00;c097 4.90 9.70;c033 0.00 5.10,15.17\r\nNCZOV,ECB2,Bedroom,6,7,Yes,\"A person grasps the doorknob of the door to a closet and opens it, then walks over to a desk and starts working on homework.\",closet;desk;door;homework;paper;wardrobe,A person opens a door on a doorknob and works on homework while standing next to a desk.,c145 2.90 19.00;c113 0.00 4.90;c008 0.00 4.90;c117 3.20 19.00;c115 3.20 19.00,18.42\r\nB0MFE,T7C3,Dining room,6,7,Yes,A person walks into the dining room carrying a towel and a blanket. The person smiles.,blanket;chair;doorway;something;table;towel,\"A person walks through a doorway holding some towels.  The person looks at something on a table and touches a chair.;Person coming into the room with a blanket, walks around the table and looks around then leaves again.\",c033 0.00 34.00;c070 0.00 34.00;c097 0.00 8.40,32.88\r\nLG73V,XXN8,Living room,5,7,Yes,\"One person puts a book into a cabinet and closes it, then sits down and throws their shoes into the corner.\",book;cabinet;corner;shoe,A person walks to a cabinet and opens it. They flip through a book then place it in the cabinet and close the door. Then they take off their shoes and sit down.,c112 11.10 16.00;c028 9.30 15.00;c113 1.70 7.90;c027 3.00 10.40;c151 0.90 10.60;c057 11.10 24.00;c025 7.40 12.80,33.42\r\nCY6U7,0KZ7,Basement (A room below the ground floor),3,6,Yes,\"A person is smiling as they sit in their basement holding their homework.  They set the homework down, stand up and grab some clothes as they leave through the doorway.\",bag;chair;clothes;door;homework;table;towel,Person is sitting reading a paper then stands up and grabs some clothes to leave the room.;A person sits in a chair and goes over their home before leaving the room with a bag.,c154 5.50 12.70;c059 0.00 10.30;c023 7.90 21.70;c002 7.80 22.00;c008 15.60 21.20;c014 0.00 15.00;c097 15.60 21.00;c033 8.70 22.50;c009 7.00 12.30;c011 0.00 10.10,23.00\r\nNPNB3,9PLL,Bathroom,6,7,Yes,\"A person is dressing in the bathroom. The person puts on a pair of shoes, sneezes, and takes a book from the counter.\",book;clothes;shoe,A standing person dresses and puts on shoes then sneezes and picks up a book.,c055 14.60 28.30;c148 0.00 15.60;c153 24.40 32.00;c117 28.20 32.00;c115 28.20 32.00,31.25\r\nU4NWI,8718,Home Office / Study (A room in a house used for work),6,6,Yes,A person is watching television in a home office. The person is holding a towel in the person's hands.,couch;sofa;television;towel,\"A person is sitting on a couch holding a towel. They fold the towel.;A person is sitting on a sofa in a dark room, watching television covered with a towel, then the person takes the towel, and folds it. The person then places the towel on his lap.\",c033 9.40 31.00;c037 10.30 31.00;c123 0.00 31.00;c132 0.00 31.00,29.92\r\nVUOQF,PKND,Kitchen,5,7,Yes,A person walks to the kitchen cabinet and grabs a box of cookies. The person smiles as they eat them.,box;cabinet;doorway;food;groceries,\"A person walks through a doorway, opens a cabinet and takes out a box.  The open the box, remove food and eat while smiling.;A person walks through a doorway and then opens a cabinet.  The person then takes some food out of the cabinet and eats it.\",c113 5.50 12.20;c156 12.60 31.90;c063 5.50 12.80;c152 13.40 32.20;c061 10.70 33.00;c097 0.10 5.50,31.75\r\n6W2MO,YMXV,Bedroom,4,3,Yes,A person is smiling while on the phone and then sneezing while taking off shoes in a dining room.,phone;shoe,\"A person is standing and talking on a phone, they then begin sneezing and pick up some shoes from the floor.\",c053 17.40 33.00;c056 15.50 24.30;c015 0.00 21.60;c019 0.00 21.90;c153 9.70 16.60;c016 13.90 19.80,32.04\r\nJCSTR,CO1W,Bedroom,6,7,Yes,A person is snuggling a teddy bear while watching something on their laptop. Another person is sitting beside them drinking coffee from a mug.,bed;cup;laptop;teddy bear,A person hugs a teddy bear while looking at a laptop while another person drinks from a coffee cup while sitting next to the first person.,c051 0.00 5.80;c106 2.10 9.30;c135 0.00 31.00;c107 0.00 31.00,30.25\r\n48IQL,JVLO,Stairs,2,4,Yes,\"A person is smiling and laughing as they use the vacuum on the stairs. They take a cup of coffee from the shelf, take a drink, then set it back down.\",chair;coffee;cup;doorway;glass;shelf;vacuum,\"A person walks on stairs, enters another room and grasps a glass off of a shelf. Then the person walks to a chair to sit and drink.\",c106 19.30 25.10;c107 17.80 34.00;c151 22.80 30.30;c152 6.60 13.40;c110 16.00 22.70;c059 24.50 30.10;c097 1.80 9.90;c097 9.70 15.10,32.96\r\nB2X4D,C7O9,Kitchen,7,7,Yes,One person walks to the stove with a cup of coffee while another person is in the doorway eating.,counter;cup;doorway;food;glass;stove;table,\"A person is standing in the kitchen eating in silence.  Another person comes in the kitchen and goes to the stove.  They put something down next to the stove, stand there for a bit, and seem to adjust something on top of the stove.;Person is standing in a doorway and eating in kitchen. Another person walks in and places a cop on the counter.\",c156 0.00 32.00;c061 0.00 32.00;c009 10.60 16.30;c109 11.20 32.00,30.71\r\n5OCXJ,2RTW,Living room,6,7,Yes,\"A person awakens in the living room, holding a travel mug of coffee. The person sets the mug down and looks in the mirror, fixing their clothes.\",clothes;clothing;cup;mirror;sofa,\"Person laying on the sofa get up look in the mirror while adjusting his clothes.;The person, asleep on the sofa, then suddenly tosses and turns before they awake.  Then, they stand-up and examine themselves in a mirror.\",c096 13.90 31.00;c146 2.80 15.20;c154 10.10 17.10;c122 0.00 14.40,29.92\r\nHB4AB,ZSRZ,Kitchen,6,7,Yes,\"A person grabs some food from a shelf in the kitchen. They start cooking, and laugh when they drop something.\",bowl;cabinet;drawer;food;pot;seasoning;spoon;stove;towel,A person turns on the stove and opens a cabinet and gets out a bowl. Then they open a drawer and get out a spoon and stir a pot with it. Then they drop a towel and laugh and pick it up.;A person is preparing a meal in a kitchen using a large pot and seasoning from a cabinet.,c062 2.90 7.10;c149 16.50 24.00;c112 6.40 12.70;c113 5.70 10.60;c147 0.00 24.00;c063 2.00 7.20,23.42\r\n3B81O,2Q9D,Kitchen,7,7,Yes,\"One person opens a window, washes dishes, puts away food, then closes the window.\",closet/cabinet;dish;food;shelf;window,A person opens a window then they wash some dishes in the sink. Next the person saves some groceries in the cabinet. The person closes the window.,c121 5.70 22.20;c089 28.60 34.00;c090 0.00 7.90;c062 19.70 26.80;c119 8.20 21.60;c092 0.00 7.40;c113 18.60 23.40;c112 24.20 29.30;c081 20.20 27.80,32.88\r\nOKL5S,UTMU,Kitchen,3,7,Yes,\"A person is pouring a glass of milk while standing in front of the refrigerator. The set the glass of milk down and look through a cabinet, sneezing.\",bottle;cabinet;cup;dish;glass,A person grabs a bottle from the kitchen and pours its contents into a cup. They set the two aside and open a cabinet and then they sneeze.,c107 5.50 19.10;c108 4.50 12.10;c113 13.40 22.30;c153 13.60 21.60;c119 9.40 15.40;c118 0.00 14.10;c109 9.40 15.30,33.50\r\n0ZYII,PKND,Living room,6,5,Yes,A person looked at picture above the television and then began washing and putting away the laundry.,clothes;living room;sofa/couch;television,A person is washing clothes while watching television in their living room.,c132 0.00 34.00;c123 0.00 34.00;c000 0.00 34.00;c004 0.00 34.00;c002 0.00 34.00,33.00\r\nN8WK8,1TZV,Living room,5,6,Yes,A person is grasping a light and closing a book.,book;light,A person stands near a door with their hand on a light while they hold a book in their other hand and read it.  They close the book.,c025 17.40 22.00;c026 0.00 22.00;c032 0.00 22.00,21.21\r\n1DGSW,T7C3,Stairs,7,7,Yes,A person grasps a pair of shoes and clothes and begins to get dressed as they peer over to look at a television.,clothes;floor;television;tv,A person gets dressed while watching tV on the stairs.,c132 1.80 39.00;c148 16.70 31.80;c127 0.30 5.80;c000 4.00 12.80,38.33\r\nJF0O8,KQI6,Living room,7,1,No,One person in the living room was sneezing while tying their shoes. After that they began running around holding a broom.,couch;mattress;pillow;sofa;tv,\"A person sitting down on a sofa with a pillow in their lap throws it across the room. Another person is sitting down as well.;This person is sitting on the couch holding a pillow, and then stands up and throws it across the room.\",c151 13.10 19.30;c154 2.60 10.30;c076 0.00 12.80;c080 9.00 16.50;c123 17.60 32.00,30.88\r\nGFJJ8,2RTW,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person opens the door to exit their house, hesitates, then closes it back up with their hand rubbing the doorknob. They turn to look in a mirror, pause for a moment, then throw their hat across the hall.\",door;hand;mirror,\"A person opens and closes a door, puts a hand on a doorknob and dances in front of a mirror in a living room.\",,30.00\r\nBUE2L,YMXV,Bedroom,6,6,Yes,\"A person stands in the bedroom, holding a glass of water while looking out the window.\",bed;closet;desk;doorway;glass;laptop;picture;water;window,\"A person is standing in a bedroom next to a bed, holding a bottle of water. The person begins walking to a closet and looking inside and all around the closet.;A person is standing near a bed holding a glass of water, they look out a door while another person is sitting at a desk and working on a laptop.\",c052 0.00 33.00,31.54\r\nG838Q,UTMU,Closet / Walk-in closet / Spear closet,3,6,Yes,A person takes a vacuum out of the closet and begins to tidy the closet. The person stands in the doorway of the closet and then replace the vacuum before closing the door.,broom;closet/cabinet;door;floor;vacuum,A person gets a vacuum out of a room and sweeps the front of the room. Then they lean against the doorway and put the vacuum back into the room.,c138 0.00 10.00;c102 7.60 18.70;c127 7.60 18.70;c114 8.10 18.40,32.08\r\nSRTW8,54JK,Recreation room / Man cave,6,6,Yes,\"A person awakens on a fold-up bed. The person, still lying in bed, reaches over and grabs something from a nearby desk.\",bed;blanket;bottle;couch;pillow;sofa,A person lies on a couch and takes something off a table;the person is laying down on the couch snuggling with a blanket. The person is smiling. the person then grabs a bottle from the table.,c134 0.00 9.10;c146 5.90 12.30;c122 8.20 15.30;c152 10.10 18.10,17.58\r\nTJPFT,UTMU,Dining room,6,7,Yes,\"A person is drinking a cup of cocoa while watching television. The person smiles, then spills some of their drink of their clothes.\",chair;clothes;cup;dish;glass;groceries;table;television,person holding cup sits down drinking wiping shirt,c106 1.00 9.90;c151 0.00 3.80;c132 0.00 4.30;c011 0.00 22.00;c059 0.00 22.00;c118 0.00 20.60;c119 15.70 20.60;c004 17.10 22.00,21.08\r\nUPUPM,PKND,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is lying in a pile of clothes in their home office. The person takes a picture of themselves with a camera, then begins throwing the clothes into the corner.\",bed;clothes;floor;phone,\"A person is laying on a bed playing with their phone. They start throwing clothes off the bed and smiling.;A person is lying on a bed looking at their phone, and the person begins picking up pieces of clothes from the bed and throwing them.\",c001 16.40 27.90;c002 12.60 18.30;c134 0.00 24.90;c016 1.70 33.00;c152 8.80 15.20;c003 16.60 27.90;c135 16.70 32.60;c126 11.00 31.50;c000 6.10 26.60;c015 0.00 33.00,31.71\r\nIRGXQ,ID9V,Hallway,6,6,Yes,A person runs through the doorway laughing. They pick up a camera and leave the room.,camera;doorway;phone,\"A person is running through the door playing with a phone, they then walk out of the door.;A person runs into a room, picks up a camera phone and then walks out.\",c015 10.30 25.20;c018 9.20 17.20;c097 2.80 8.70;c150 2.70 11.10;c016 11.30 29.00,28.29\r\nZDFOL,HJJ4,Home Office / Study (A room in a house used for work),5,7,Yes,\"One person sitting with a book suddenly awakens, dresses into a pair of shoes, and throws down the book.\",book;chair;desk;shoe;table,The person is sitting in a chair holding a book and then leans up very swiftly and puts on one shoe very fast and then the other and puts the book down very hard on the desk and then leaves the room swiftly.;A person reading a book and while holding the book the person decides to put on shoes and then exit.,c025 12.40 17.60;c028 12.20 17.10;c053 1.90 15.80;c059 0.00 17.40;c026 0.00 16.30;c032 0.00 4.30;c055 2.70 15.80;c009 12.20 17.20;c154 13.10 18.30,18.04\r\nJTTAP,4YWP,Bathroom,6,7,Yes,A person is drinking some water and putting a phone on a shelf in a medicine cabinet. Then the person closes the cabinet.,cabinet;cup;doorway;glass;mirror;phone;shelf;water,\"A person walks into view drinking from a glass.  The person then plays with their phone, the puts it away into the medicine shelf.;A person walks through the doorway with a glass of water.  They look in the mirror.  Next, they pick up a phone and look at it, then open a cabinet and put it on the shelf. They walk out of the room holding the glass of water.\",c081 16.30 22.00;c113 14.30 20.00;c016 7.90 18.00;c018 6.70 11.90;c107 1.30 10.00;c112 17.40 23.10;c015 7.40 18.60;c017 16.10 21.70;c106 0.60 11.00;c097 22.70 30.00,28.50\r\nW20LY,YMXV,Bedroom,5,5,Yes,A person is sitting on the couch smiling while talking on the phone. Then they reach over and place a towel on their shoulder.,chair;phone;scarf;towel,\"A person sits on a chair while talking on a phone. The person puts a towel around their shoulders.;A person is on the phone while sitting in a chair.  The person is laughing and seems to be enjoying their phone conversation.  They then reach over to the bed, grab a scarf, and put it around their neck.\",c019 0.00 32.00;c034 20.20 25.60;c059 0.00 32.00;c149 0.00 16.10;c152 0.00 32.00,30.58\r\nE75C2,2RTW,Kitchen,6,6,Yes,\"A person pours a cup of coffee. The person puts some sugar into it, then stares out the window.\",coffee;cup;food;glass;window,There is a person making coffee in a glass. That same person then opens the blinds and looks out the window.,c108 1.60 13.80;c092 24.90 32.00;c061 12.10 27.90,31.00\r\nQGLQ0,YMXV,Other,3,7,Yes,\"A person takes a bag from the floor, and puts it into a larger box. The person takes the box and leaves the room.\",bag;bed;box;door,\"A person is sitting on a bed.  They stand up, pick up a bag, put it in a box and carry the box outside.;A person sitting on a bed stands up and puts a canvas bag into a box. The person then picks up the box and brings it outside and walks away.\",c043 6.60 23.30;c022 1.10 10.60;c154 0.00 4.30;c135 0.00 32.00;c008 12.40 24.20;c040 7.00 32.00;c020 2.00 10.00,30.58\r\nC9ISQ,3H6W,Kitchen,5,5,Yes,\"A person was closing the laundry detergent cabinet, then was grasping the chair that the person was standing on in order to reach the cabinet\",cabinet;chair;clothes,A person stands on a chair and tries to get something from a cabinet.,c060 3.90 16.90;c112 5.60 13.70,21.42\r\n73E7V,3H6W,Dining room,6,7,Yes,\"While the person in the dining room is fixing the picture laying in front of them, they begin eating a bag of chips.\",bag;chair;computer;food;picture;table,\"A person walks in, sits down, and then opens a tablet. Then they eat some chips and walk away.\",c061 12.00 27.00;c063 11.00 16.00;c020 12.00 27.00;c023 11.00 16.00;c151 24.00 29.00;c062 10.40 30.00;c021 11.30 21.20;c156 14.70 28.60;c154 24.30 30.00;c012 1.80 29.50;c059 1.40 29.00;c083 0.80 15.60;c009 8.80 15.40;c022 24.70 29.50;c088 2.40 14.60;c086 10.00 14.70;c011 1.70 28.60,29.42\r\n7BLQD,KFGP,Home Office / Study (A room in a house used for work),6,6,Yes,\"Person A is in a study on a laptop doing homework.  Frustrated with the assignment, person A grasps at a nearby table-weight and fixes it upright.  Smiling in doing so, since the simple things in life matters.\",homework;laptop;paper,\"Typing on a keyboard, scratches head.  Reaches for something to right.\",c052 0.00 16.30;c145 0.00 15.80,24.58\r\nFV51S,6RE8,Recreation room / Man cave,7,7,Yes,A person opens a box and takes out a blanket. The person walks out of the room.,bag;blanket;door,A person took a blanket out of a bag.  The person then walked out the door carrying the blanket.;A person removes a blanket from a bag on the bed. The person then walks out of the room while carrying the blanket.,c070 6.00 24.50;c073 3.40 10.40;c021 0.00 6.10;c097 19.60 25.70;c020 0.00 18.80,30.54\r\nXMINJ,CLH3,Living room,3,7,Yes,A person standing in the Living room in front of the window next to the light washing their hands with a rag.,hand;towel,A person is standing in the living room and is wiping her hands with a towel.,c033 0.00 31.00;c038 0.00 31.00;c139 0.00 31.00,30.46\r\nWSB7W,BYF9,Hallway,7,7,Yes,A person is opening a laptop and working on the vacuum.,floor;laptop;vacuum,A person is standing near a vacuum in an entryway. The person opens a laptop and sits down.,c048 0.00 8.10;c051 8.80 18.00;c125 6.20 18.00;c047 0.00 18.00,16.79\r\nOINMN,X3DN,Closet / Walk-in closet / Spear closet,7,7,Yes,A person opens the door to a closet and throws a box onto a shelf while talking on their phone.,a person walks around;book;box;closet/cabinet;door;phone;shelf,{},c006 33.10 40.00;c015 0.00 46.00;c040 0.00 18.30;c081 22.90 35.30;c008 18.80 26.00;c019 0.00 46.00;c045 27.40 35.50;c028 13.40 18.50;c112 33.10 39.10;c028 12.90 32.10;c113 17.50 26.20,45.25\r\nKKONU,RPBD,Recreation room / Man cave,7,7,Yes,\"One person under a blanket awakens, throws off the blanket, then holds a cup of coffee and eats something.\",bed;blanket;bowel;bowl;cup;dish;food;mug;pillow;snack;sofa;table,\"A person was laying down on the sofa. They then get up and remove the blanket covering themselves, pick up a mug, and take some kind of snack from the bowel next to it.  The person sits and eats the snack while holding the mub.;Person is covered with blanket.  removes blanket, sits up, grabs cup, takes something from the bowl and starts chewing on it.\",c074 2.30 8.80;c110 6.50 12.00;c146 0.00 9.00;c123 6.00 34.00;c107 6.60 34.00;c156 8.50 18.60;c122 0.00 4.70;c011 6.60 34.00;c133 0.00 6.70;c118 7.30 34.00,33.21\r\n0FO58,9PLL,Hallway,5,6,Yes,A person is sneezing in the doorway.  Then a person is grabbing a cup of coffee and leaving.,coffee;cup;doorway;glass;shelf;water,\"A person is walking through a hallway sneezing, they then take some coffee from a shelf and walk through a doorway.;A person is sneezing. A person then takes a glass of water and walks away.\",c097 13.60 34.00;c107 12.40 17.60;c153 1.30 13.10,32.71\r\n02SK4,28B0,Dining room,7,7,Yes,A person walks into a dining room holding food.  The person looks at their reflection in the mirror in the dining room and then takes their food to the table and sits down. The person begins idly playing with the food.,chair;dish;doorway;food;mirror;table,\"The person walks into the room with a plate of food, sets it on a table sits down and eats while looking into a mirror.;Person walks in room touches face, looks in mirror, sits in chair, place arms on table, eats something from table.\",c062 6.70 11.10;c011 6.80 14.00;c156 15.40 30.00;c059 8.80 30.00;c096 4.30 10.10;c151 7.70 14.00;c009 6.60 11.40;c118 0.00 6.70;c097 0.00 4.00;c061 0.00 6.90,28.50\r\n7BFDL,3VLX,Stairs,6,6,Yes,A person holding some empty dishes and a glass is walking down the stairs.  They step over some homework on the bottom step and set the dishes and glass on a nearby cabinet.  They then start dressing by putting on a shirt and a cap.,book;bow;cabinet;clothe;cup;dish;dresser;glass;hat;plate,\"The person walking down the stairs put a plate and bow on top of dresser picked up clothes,hat and put them on walked out.;A person walks down stairs, stepping over a book as they walk, and puts a glass and a bowl on a cabinet. The person then dresses, and leaves.\",c109 10.60 15.80;c118 0.00 11.30;c107 0.00 16.40;c119 6.90 17.00;c148 13.20 32.30;c001 19.40 30.20;c000 11.60 28.00;c002 11.60 17.20,38.75\r\nQ8XEE,3H6W,Recreation room / Man cave,6,7,Yes,A person is using their laptop.  They are watching a video on the laptop while grasping for a sandwich sitting beside them.,couch;dish;food;laptop;sandwich;sofa,\"A person walks into a room and sits on the couch. They open up a laptop and pick up a sandwich.;This person sits on the couch, opens a laptop, then grabs some food.\",c065 10.20 20.00;c046 17.60 20.00;c051 5.70 20.00;c061 13.20 20.00;c069 12.70 20.00;c048 1.90 7.80;c151 0.20 6.20;c123 2.10 20.00;c063 12.50 18.00;c118 1.60 7.40;c052 3.30 20.00;c062 16.00 20.00,19.50\r\nB8W55,IK1O,Home Office / Study (A room in a house used for work),6,6,Yes,A person walks into the room drinking a cup of coffee. He places it on the desk and then opens one of the draws in the desk.,cabinet;chair;coffee;computer;cup;desk;laptop;table,\"A person walks into a room drinking some coffee, they sit in a chair at a desk and begin looking at a computer, they then begin looking through the desk.;A person drinking a cup of coffee walks into a room.  They sit down in a chair at a desk with a laptop on it and put the coffee on the desk.  The open a cabinet.\",c009 3.70 11.30;c106 0.00 8.30;c151 8.30 15.80;c059 10.50 32.00;c011 8.40 23.40;c107 3.80 12.40;c113 18.80 27.70;c109 5.00 11.20;c051 15.80 26.60,30.58\r\n6MUM6,4I2W,Stairs,6,6,Yes,\"A person approaches the bottom of an indoor staircase with a cup of coffee in one hand and two dishes (a cup and saucer) in the other.  With one foot on the bottom stair and the other still on the floor, the person pours some coffee into the cup and watches it slowly fill up to the brim.  The person takes a sip and smiles.\",cup;dish;glass;stairs,A person is walking down the stairs while the other person drinks.,c106 21.60 31.00;c108 5.50 12.00;c107 0.00 31.00;c108 10.40 19.70;c118 0.00 31.00,29.71\r\n4GCPM,3H6W,Kitchen,7,7,Yes,\"Person is grasping food out of refrigerator, then starts eating it in doorway.\",doorway;food;refrigerator,Person takes food from the refrigerator and then walks over and eats it in front of a doorway.,c061 3.80 11.60;c063 3.00 11.80;c142 5.50 13.40;c143 2.60 9.90;c156 17.30 37.10,38.50\r\n21E40,C7O9,Laundry room,7,7,Yes,\"One person is drinking coffee when another comes in sneezing, then grasps a blanket and towel.\",blanket;coffee;cup;doorway;towel,A person drinks from a cup while another grabs some towels.,c073 18.40 32.00;c107 0.00 32.00;c035 29.00 32.00;c106 29.00 32.00;c154 29.00 32.00;c097 29.00 32.00,30.92\r\nOLV1L,PO5L,Recreation room / Man cave,5,7,Yes,\"A person is working on a vacuum in the man cave, then sneezes and reaches for some medicine.\",cord;couch;food;medicine;object;sofa;table;vacuum,\"A person sits on a sofa and begins to fix a vacuum, they then sneeze, smile, and take a piece of food from a table and eat it then leave.;Person walks in room, sits down on couch, touches vacuum and cord, sneezes, picks up object from table, eats it and gets up and walks away.\",c128 20.20 29.30;c129 25.30 29.90;c153 15.40 20.20;c154 0.00 5.90;c123 3.30 30.80;c136 4.90 18.80;c151 2.40 7.90,32.79\r\nU6EKW,XXN8,Hallway,3,6,Yes,A person is taking a picture in the hallway while the person is grasping a towel.,phone;picture;towel,A person is taking pictures with a phone while holding a towel.;The person is holding a towel and a phone. The person is taking pictures of the room that they are inside of.,c033 0.00 28.00;c015 0.00 28.00;c087 0.00 28.00;c016 0.00 27.00,30.42\r\nHUNW6,YMXV,Bedroom,5,7,Yes,A person is eating food they got off a shelf.  Then a person is washing the floor with a towel.,floor;food;shelf;towel,\"A man is sitting at a laptop and eating food.  he stands up and takes laundry from the wall, and uses it to clean the floor around him.\",c033 17.30 32.00;c127 19.70 32.00;c061 0.20 18.50;c156 5.20 18.70;c154 15.10 20.10;c038 19.50 32.00,31.38\r\nLO7IU,EIO2,Kitchen,7,7,Yes,A person is in a kitchen pouring coffee in a cup. The spill and grab a towel to clean it up. They close the window and eat dinner.,cup;water,This person appears to be in a kitchen near a window and pouring water into a cup. Could be prepping tea.,,30.92\r\nBV28R,Z68L,Home Office / Study (A room in a house used for work),6,6,Yes,A person sits at the desk and fixes a laptop.  They stop and play a movie on the television.,chair;desk;laptop;remote;table;television,A person is sitting at the desk and examining a laptop. They grab a remote control and turn on a TV and watch it. Then they get up and walk away.,c052 0.00 12.20;c132 10.80 38.10;c011 0.00 37.90;c154 31.20 38.10;c059 0.00 32.80;c051 0.00 8.20;c047 0.00 8.40;c014 0.00 15.80,37.71\r\nIAK2E,Z68L,Bedroom,6,6,Yes,A person laughing and walking while holding a glass and a phone.,cup;desk;glass;phone,The person is talking on the phone while standing and drinking some water. They spin around as the conversation goes on and eventually walk off screen;A girl is walking around while talking on a phone and sipping from a glass of water.,c019 0.00 27.60;c107 0.00 27.30;c107 0.00 8.30;c015 0.00 25.80;c106 2.10 8.40;c149 4.40 11.30;c018 23.10 30.00;c152 0.00 7.10;c016 25.70 30.00,28.50\r\nT832F,H8N1,Bedroom,5,7,Yes,\"In the bedroom a person is grasping a blanket from the linen shelf, turns and is seen throwing the folded blanket on the bed.\",blanket;closet/cabinet;clothes;shelf;towel,\"person walks into room, grabs something from shelf, and throws it\",c074 6.10 10.80;c082 1.40 8.90;c003 5.60 10.80;c000 1.40 10.60;c002 1.40 10.70;c001 3.50 8.30;c036 6.50 11.20;c114 0.40 5.20,13.38\r\n1WEDJ,3531,Home Office / Study (A room in a house used for work),7,6,Yes,Person is grasping a pillow while vacuuming the floor. Person then takes homework from the desk and puts it in a bag.,bag;floor;homework;paper;pillow;table;vacuum,A person vacuums the floor while holding a pillow before placing homework in a bag.,c076 0.00 19.40;c116 16.70 34.60;c137 0.00 16.80;c021 24.30 31.70;c127 0.00 15.50;c020 24.30 35.00;c012 16.60 27.50;c117 22.10 33.40,33.71\r\nT28D7,H8N1,Kitchen,7,5,Yes,A person smiles as they cook food on the stove.,food;stove,A person is cooking on a stove and smiling.,c147 0.00 32.90;c152 6.60 13.30,32.21\r\nQB7ZN,D0RU,Pantry,5,6,Yes,A person in the garage is grasping onto a book while putting down some food onto a table. They are sitting down on a chair and decide to look at the light.,book;chair;food;light;table,A person looks at a book on a table then sits in chair and looks up.,c059 20.10 36.00;c151 16.60 24.10;c027 11.80 19.90;c011 19.80 36.00,34.79\r\n9R4AQ,0KZ7,Bathroom,5,6,Yes,A person standing drinking a glass of water  then smiles at the sandwich they have in their other hand.,cup;dish;food;glass;hand;sandwich;water,A person is standing eating food and drinking water.  They are laughing.;The person is holding a glass of water and a sandwich. The person drinks from the glass of water.,c067 0.00 29.00;c106 0.00 4.70;c106 3.80 9.70;c152 5.80 11.00;c118 0.00 29.00;c061 0.00 29.00;c149 13.10 29.00,28.42\r\n1X9A1,ZAWX,Bedroom,7,7,Yes,One person with a towel slung over a shoulder grasps a bottle of medicine from a table and drinks it.,doorway;medicine;table;towel,\"person is walking out of room holding towel, they then take some medicine.\",c129 20.60 29.40;c033 0.00 33.00;c128 13.10 33.00;c097 0.50 8.00,31.75\r\nT1KK1,D0RU,Living room,7,5,Yes,A person is putting coffee back in a cabinet while eating some food out of a glass container.,bed;coffee;cup;dish;food;shelf,\"A person is walking around drinking a cup of coffee then eating from a plate, they decide to sit down.\",c106 0.00 3.90;c109 0.70 8.20;c061 3.60 16.30;c156 5.30 17.30;c151 11.70 21.50;c135 16.90 29.30;c110 0.00 9.00;c081 4.20 8.80;c063 5.20 10.10;c063 8.30 16.80;c118 0.00 29.20;c120 0.00 3.10,31.75\r\n9RX96,T7C3,Stairs,5,7,Yes,\"A person is walking down the stairs holding their phone.  When the person reaches the bottom of the stairs, the person picks up a broom and begins tidying up the floor.  The person walks to the window and looks out, then laughs.\",broom;floor;window,person walks down a staircase. The person  grabs a broom at the base of the staircase and sweeps the floor. The person walks over and looks out the window and shakes their head.,c098 9.20 16.10;c102 13.90 31.20;c092 27.60 37.50;c127 10.50 30.20,39.12\r\n8X7D6,KQI6,Other,4,6,Yes,A person smiles as a pot of water boils on the stove. Another person closes a laptop and sets it on a blanket.,bed;bowl;dish;doorway;food;laptop;stove;table;television;water,A person takes a bowl from a shelf.  The person then fills the bowl with water from a sink.  The person then puts the bowl on the stove and turns the stove on.  The camera then cuts to another person in another room who is on a laptop.  The person then closes the laptop and watches the television.;A person grabs a bowl from a shelf and fills it with water before putting it on a stove. The person holding the camera walks to another room where someone else closes a laptop.,c147 12.20 22.90;c051 20.10 27.40;c152 16.60 22.80;c046 22.90 28.00;c049 26.80 34.00;c050 25.60 33.20;c047 26.60 34.00;c014 21.40 27.80;c118 0.60 17.70;c132 20.20 27.00;c135 19.80 34.00;c120 0.00 17.00;c011 20.40 31.90,32.67\r\nI31V9,WG9D,Bedroom,2,6,Yes,A person is in their bedroom holding a plate and eating a sandwich. They turn on a light and start doing their homework.,bed;book;dish;food;homework;light;paper;sandwich,\"a person was eating a sandwich, then turned on a light and picked up a book.;Person turns on light, sitting in bed, grabs a book, opens book and reads it\",c117 5.30 11.90;c065 0.00 4.50;c068 3.70 9.10;c119 3.60 9.20;c156 0.00 4.70;c027 7.80 13.00;c145 9.00 13.00;c067 0.00 8.00;c118 0.00 7.80;c104 2.50 7.40;c026 7.50 13.00;c032 7.50 13.00;c134 2.60 13.00,12.00\r\nT5JY8,XNDY,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is working on their laptop at the desk.  The person takes a drink from a cup of coffee, and grasps the cup while they walk to the window to gaze outside.\",chair;coffee;cup;desk;laptop;table;window,A person seated in a chair is working on a laptop on a desk before taking a sip of coffee and walking to a window that the person then looks out of.,c106 15.40 23.50;c052 0.00 19.00;c092 25.00 32.00;c154 19.10 25.50;c107 15.40 32.00;c011 0.00 23.30;c110 14.90 19.80;c059 0.00 24.40,31.50\r\nMC34P,QB52,Living room,5,7,No,A person sits at a table doing homework.  They pick up their phone next to a glass and begin playing a video game.,book;chair;phone;sofa;table,\"person reads out of a book then grabs their phone;A person is sitting in a chair reading a book, they then pick up their phone and begin to play on it.\",c015 18.00 31.00;c016 20.00 31.00;c018 18.00 23.00;c032 0.00 26.00;c059 0.00 31.00;c026 0.00 28.00;c123 0.00 31.00,30.17\r\nUECH4,9PLL,Hallway,6,6,Yes,A person is pouring coffee and then sneezing into a mirror in a hallway.,coffee;cup;dish;glass;mirror,\"A person pours some coffee, sneezes, and looks in the mirror.;Person pouring coffee in a glass began to sneeze while looking in the mirror.\",c096 23.00 32.00;c153 18.80 31.00;c107 0.00 33.00;c108 0.00 22.80;c118 0.00 33.00,32.00\r\nZRRC8,0KZ7,Bedroom,6,7,Yes,A person snuggling a blanket wakes up and the stands next to the bed. He then pulls a book out from under the blanket.,bed;blanket;book,\"A person gets out of bed and pulls out a book from under the covers;A person awakens in bed, puts back a blanket, stands up and takes a book.  They look at the book they are holding.\",c134 0.00 4.80;c133 0.60 8.90;c026 15.40 24.00;c030 13.70 19.70;c154 5.20 13.40;c146 0.60 8.90;c117 14.00 19.50,22.62\r\nEBCTL,ZSRZ,Kitchen,7,7,Yes,A person cooks a meal on a stove in the kitchen. A person puts extra ingredients in the refrigerator and tidies up the stove.,food;fridge;groceries;refrigerator;stove,A person is cooking on the stove before checking the fridge.,c143 8.00 13.00;c147 0.00 12.00;c130 6.20 12.60;c062 6.20 12.60;c142 9.00 15.10,20.88\r\nPCNB7,DXDI,Living room,6,6,Yes,\"A person is fixing their hair under the light. They grasp a pillow, and begin watching the broom in the corner.\",floor;hair;hiar;pillow,\"This person is standing in a room, fixing hair and then picks up a pillow off of the floor and holds it.;A person is standing in the middle of the room running their fingers through their hair. Then they pick up a pillow.\",c144 0.00 11.60;c076 10.00 26.00,25.17\r\n9B93K,P6LJ,Living room,6,6,Yes,\"A person is eating a sandwich in the dining room. The person leaves through the doorway, turning off the light behind them.\",dishes;door;food;glass;light;sandwich;table;water,\"A person goes to a table, picks up a sandwich and eats some.  The person puts the sandwich back, turns out the light and then goes out the door.  The person comes back in the room.;A person walks over to a desk, picks up a sandwich, and eats it while standing. They put the sandwich down, turn off the lamp, and leave through the doorway.\",c061 1.80 25.70;c063 1.80 25.70;c065 1.80 25.70;c068 20.00 25.70;c097 34.00 40.00;c062 23.00 30.40;c009 21.70 31.00;c105 27.90 36.60;c067 3.50 23.50;c069 2.00 10.40;c156 1.80 27.30;c141 30.10 37.90,44.25\r\nNCBNH,P6LJ,Dining room,6,6,Yes,\"Sitting in the dining room with the lights dimmed, the person began pouring a glass of milk. The visibility in the room was too low, and the person spilled the milk all over their clothes. They picked up a towel from the dining room table, and started dabbing the milk off of their shirt.\",clothes;cup;dish;glass;table;towel;water,A person is pouring a glass of water. A person then takes a towel and clean themselves of the water that was spilled on their clothing.;A person walks to a table and picks up water that they then pour into a glass while watching the camera. the person puts the glass of water on the table and picks up a towel to dry clothes on the person's chest that is now wet from the water. the person then runs back to the camera.,c108 7.10 33.80;c004 28.60 40.90;c033 28.80 41.00;c150 36.00 41.00;c009 28.20 34.40;c038 32.20 39.40;c035 27.50 34.00;c118 7.30 33.40;c107 7.30 33.40;c034 29.40 39.80,40.42\r\nGUCB4,P6LJ,Dining room,6,6,Yes,A person pours water into a glass and starts drinking while sitting at a table set with food and dishes.,bottle;chair;cup;desk;glass;mug;table;water,\"A person walks to a desk and sits down. The person pours water into a glass. Then the person drinks the glass of water. Finally, the person gets back up and walks away.;The person walks over to a chair and sits in it.  The person then pours some water into a mug and drinks from it.;A person sits at a table. They pour something into a glass and begin to drink it.\",c108 8.80 26.50;c059 5.00 10.90;c151 2.30 9.20;c106 25.90 39.30;c154 39.90 46.30;c107 24.20 42.90;c011 5.50 44.80;c110 7.10 11.40;c109 11.00 15.50,48.08\r\nSB7CW,T7C3,Pantry,6,6,Yes,\"One person wrapped in a blanket runs in sneezing, then opens a door to get some medicine.\",blanket;cabinet;door;medicine,\"The person is wrapped in a blanket and walks into the kitchen. The person opens the cabinet door and sneezes. The person takes the medicine out of the cabinet, sneezes, and reads the medicine. The person walks out of the kitchen with the medicine.;The person walks into the room covered in a blanket, opens the cabinet door, takes out a prescription, reads it, sneezes and coughs, then leaves the room.\",c128 6.20 34.00;c008 0.70 7.50;c153 1.70 10.00;c113 0.00 7.20;c070 0.00 33.50,33.42\r\nAYF5C,8718,Closet / Walk-in closet / Spear closet,7,7,Yes,\"One person plays with the light switch and smiles, then opens up some folded clothes and starts getting dressed.\",clothes;jacket;light,\"A person turns a closet light on and off multiple times while smiling, and then puts on a jacket.\",c105 0.00 17.00;c104 0.00 17.00;c152 3.60 16.60;c148 16.40 32.00,30.92\r\n2XJG9,5LWB,Stairs,6,6,Yes,Person is standing in doorway holding clothes. Another person is drinking sandwich and drinking water.,clothes;cup/glass/bottle;food;towel;vase;water bottle,Two people are talking to each other.,c106 24.70 30.00;c000 0.00 30.00;c107 0.00 11.70;c033 0.00 30.00;c110 0.00 8.70;c061 0.00 30.00;c109 8.10 29.50,29.25\r\nOQM2I,YMXV,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person is walking to the mirror. Then, closing the door, the person turns the light off and exits the room.\",door;hair;light;mirror,\"A person fixes their hair in a mirror. They then walk through a door and go outside, where they turn off a light.\",c094 0.00 5.60;c006 6.00 11.90;c096 0.00 6.30;c008 4.30 11.30;c097 5.90 15.10;c144 0.20 6.30,31.46\r\nM2T77,ZAWX,Entryway (A hall that is generally located at the entrance of a house),5,5,No,\"A person walks through the doorway, sneezing. The person throws their bag down on the table.\",bag;doorway;floor;table,\"A person walks through the doorway. They sneeze twice, then laugh and throw their bag on the floor.;A person walks in the hallway through a doorway, sneezes, then takes a bag off a table and throws it on the floor while laughing.\",,30.62\r\n09AT0,PKND,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is eating out of a bag while another person is standing next to a shelf.,bag;closet/cabinet;clothes;food;shelf;wardrobe door,The person takes a few steps away from the wardrobe holding a bag. The person takes something from the bag and bites it. The person closes the wardrobe door and looks at the other person.;a person is holding a bag in a closet and eating out of it,c020 3.80 31.00;c021 4.40 14.70;c082 10.30 31.00;c061 0.00 31.00;c112 1.80 7.90;c113 3.80 11.60;c114 0.00 31.00;c081 0.00 31.00,30.42\r\nD1UWI,ZSRZ,Kitchen,6,7,Yes,\"A person is pouring water down the sink, then cooking at a stove in a kitchen.\",cup;dish;food;sink;stove;water,A person is  taking a glass of water then puring it in the sink before cooking on a stove.,c110 0.00 3.00;c118 0.00 9.90;c107 0.00 9.90;c062 16.50 21.30,21.50\r\nNNG2V,D0RU,Bedroom,6,7,Yes,\"One person awakens as another, with hair in a towel, laughs while watching television.\",bed;blanket;hair;laptop;television,\"Person A is sleeping on a bed with a blanket and Person B is watching a video on a laptop, Person B decides to wake up Person A.;person is is sleeping in bed before being woken up by another person to watch television.\",c131 17.30 24.50;c132 0.00 10.80;c146 10.70 18.20;c149 19.40 24.90;c132 14.20 31.10;c059 0.00 32.00;c051 13.40 32.00,31.38\r\n485G9,ZAWX,Bedroom,6,6,Yes,A person walks into a closet. They see a camera on a chair. They grab the camera and sit on the chair and start studying the camera closely.,camera;chair;doorway;phone,\"A person is walking into a room and sitting on a chair with a camera.;The person walks from an entranceway into a bedroom, picks up a camera that was sitting in a chair, and then sits in the chair.  The person then inspects the camera while sitting down.\",c015 8.10 32.00;c059 13.30 32.00;c018 7.20 14.10;c016 10.40 32.00;c097 2.30 7.70;c151 12.40 19.80,30.67\r\n1EX1G,0KZ7,Laundry room,5,7,Yes,A person is seen holding the doorknob but then pulls out their phone. They begin smiling and watching their phone.,doorknob;phone,A person is grasping the doorknob to the laundry room holding a phone and playing with it.,c016 1.30 28.00;c141 0.00 28.00;c015 2.10 28.00,27.33\r\nOH3R9,2RTW,Pantry,6,7,Yes,A person is eating a sandwich while watching television. The person laughs and puts the sandwich down.,desk;food;fridge;hair;sandwich;shelves;table;television;worn clothing,a person standing at a table in front of a fridge;A person is standing in a kitchen area while leaning upon a chair.  This person appears to be watching TV while waiting for something.,c132 0.00 31.00;c009 4.00 9.80;c068 0.00 9.20;c144 26.20 31.00;c061 0.00 8.90,29.83\r\nFKJ9L,XXN8,Kitchen,7,7,Yes,A person puts a box on a shelf and then smiles.,box;cabinet;food;groceries;shelf,A person puts a box onto a shelf inside a cabinet and then smiles at the camera.;A person places a box in a cabinet while smiling.,c042 0.10 7.80;c081 0.10 7.80;c152 0.00 21.40;c130 0.40 7.80;c062 28.30 31.00;c061 28.30 31.00;c040 28.30 31.00,30.21\r\nTPH12,3H6W,Kitchen,6,6,Yes,A smiling person is in their kitchen reading a book. The person laughs and makes a phone call.,book;chair;phone;table,\"A person sits down in a chair and opens a book a little, before putting it down and bringing their phone to their ear.;A person reads a book while sitting at the kitchen table before answering their phone.\",c152 11.20 20.50;c151 0.00 7.30;c154 22.90 30.00;c059 0.70 28.80;c011 0.40 28.80;c016 12.20 28.80;c018 11.80 16.40;c032 0.50 15.00;c017 24.60 28.90;c030 0.20 6.00;c015 12.20 27.20;c028 10.90 15.60;c026 0.80 14.90;c019 12.50 27.50;c027 0.70 6.40;c025 9.80 15.80,29.58\r\nKTBKA,AC0W,Bathroom,7,7,Yes,\"A person is standing in the bathroom, grasping a blanket. The person opens the medicine cabinet and looks inside.\",blanket;cabinet;medicine;table,\"A person leans against the bathroom counter, holds a blanket against their face, then opens the medicine cabinet and looks inside, yawns an shuts the cabinet door.\",c072 0.00 9.50;c113 11.00 16.40;c075 5.30 14.90,29.54\r\nUCNVW,YMXV,Recreation room / Man cave,4,6,Yes,A person is playing on a laptop on a desk in a man cave. The person is holding the mouse to the computer.,chair;desk;laptop;mouse,\"The person is sitting at a table and playing a game on a laptop computer, during which the person manipulates the attached mouse.\",c052 0.00 32.00;c059 0.00 32.00;c051 0.00 21.40,30.96\r\nUVN96,L4ZP,Garage,6,6,Yes,A person smiles as they look through a cabinet in their home's entryway. The person laughs as they find an old camera in the back of the cabinet.,cabinet;phone,\"A person is standing in a cluttered room looking for something. The person opens a cabinet and pulls out an object, but continues to look around as if searching for something.;A person stumbles around a garage and takes a phone from a cabinet.\",c112 21.00 31.30;c113 9.80 16.50;c018 7.30 15.70;c016 11.70 21.60;c015 10.00 32.00,31.08\r\nFGY8R,L4ZP,Living room,6,6,Yes,A person opens their laptop. The person is eating a sandwich. The person types a few words before closing their laptop. The person stands up and leaves.,chair;door;food;laptop;plate;sandwich;table,A person is sitting on a table with their laptop on their lap. They pick up a sandwich and take a bite while working on the laptop. They put the laptop down on the table and get up and leave the room.;A young person sitting on a wooden piece of furniture working on a laptop and eating.,c052 0.00 5.40;c067 6.90 15.00;c154 12.20 20.70;c006 6.00 18.10;c010 10.70 21.50;c047 0.00 8.40;c065 10.40 17.70;c156 10.60 16.90;c008 22.60 28.00;c051 2.40 21.80;c048 0.00 5.70;c062 12.70 18.40;c063 9.30 16.50;c061 9.00 13.70;c097 22.70 27.90;c068 13.30 18.80;c059 1.80 6.50;c069 9.30 15.50;c046 16.30 21.60;c049 18.10 24.00,27.25\r\nD8A6R,D0RU,Kitchen,5,5,Yes,A person is running to the nearest table then leaving the bag of groceries on the sofa.,bag;bench;doorway,A person walks over to a bench and sets down a bag then continues walking away down a hall and out through a door.,,137.04\r\nF8HLI,3H6W,Living room,3,7,Yes,\"A person is playing with their laptop on a sofa, then the person gets up and starts running.\",laptop;sofa,\"Person sitting on couch with a laptop in lap, puts it down, gets up from the couch, and runs out of the room.\",c047 0.00 16.40;c123 0.00 18.10;c150 15.80 21.90;c154 14.50 19.10;c051 0.00 17.30;c151 0.00 22.00;c048 0.00 2.80;c046 13.00 17.80,23.29\r\n0V4B3,XXN8,Dining room,6,7,Yes,Person is sitting at dinning room table doing working on homework. Another person is drinking from glass cup.,cup;glass;homework;paper;something;table,two persons at a table one person is writing and one person drinking water,c011 0.00 34.00;c145 0.00 33.10;c106 0.30 6.60;c014 0.00 34.00;c107 0.00 34.00,32.54\r\nB8JAF,6RE8,Kitchen,4,4,Yes,A person is opening the wardrobe door. Then the person walks to the sink and begins washing the dishes.,closet/cabinet;dish;door;sink,\"Person walks out of room, walks into kitchen, opens up cabinet door, closes the cabinet door, and grabs a bowl and starts washing it\",c121 16.10 27.90;c006 10.00 19.50;c008 0.00 5.70;c113 7.90 12.50;c118 15.80 33.00,32.25\r\nPZQ5A,2RTW,Living room,6,6,Yes,\"The person reached for the doorknob while leaving the house. Before they could exit, they remembered to grab the camera that was lying on the side table by the door. The person then closed the door behind them.\",camera;cellphone;door;table,A person is grasping a doorknob then takes their camera that was at a desk and walks out the door.;The person grabs the cellphone and walks out the house.,c141 1.30 13.80;c008 6.10 13.00;c006 8.60 16.80;c097 8.60 16.80;c018 4.60 10.30,24.38\r\nD5886,2RTW,Living room,6,6,Yes,One person wrapped in a blanket runs through the entryway drinking something and holding a small stack of dishes.,blanket;bowl;cup;dish;door;food;television,A person opens the door and enters the room wearing a blanket and carrying both a cup and bowl. The person turns to watch the television and takes a sip from the cup.,c072 2.80 28.00;c118 2.60 28.00;c106 5.50 12.90;c107 4.90 28.00;c132 21.20 28.00;c008 0.00 6.50;c097 1.50 7.60;c061 2.60 28.00,27.08\r\n4NRPM,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is holding shoes while undressing by the table.,clothes;door;jacket;shoe,A person is standing holding their shoes when the take their jacket off and then they take their shoes that they are wearing off.;The person is watching TV before taking off their shoes and jacket. The person is holding blue sneakers as well.;A person holding shoes undresses out of some clothes next to a door.,c057 18.10 27.50;c155 0.40 18.50;c002 0.00 5.40;c053 0.00 31.00;c000 0.00 31.00,30.46\r\nG1CM7,NG2W,Home Office / Study (A room in a house used for work),3,7,Yes,A person is tidying up their desk. The person sits down and starts reading a book.,book;chair;cup/glass/bottle;desk;table;towel,A person is standing in front of a desk as they tidy it up. They sit i a chair and open and read a book.,c011 20.10 37.00;c012 0.00 19.50;c027 22.80 29.30;c032 24.60 37.00;c030 20.50 27.90;c059 18.40 37.00;c033 0.30 8.40;c026 21.20 37.00;c107 7.10 12.70;c110 11.60 20.20;c109 12.10 19.10;c151 15.10 23.60,35.58\r\nDIM24,YMXV,Home Office / Study (A room in a house used for work),5,7,Yes,A person is seen watching something in a bag. They begin standing and take some medicine out of the bag.,bag;chair;medicine;something,A person sitting in a chair pulls some medicine out of a bag and attempts to open it after standing up.;a person sits in a chair and looks in a bag then removes something,c020 0.00 31.60;c021 0.20 6.30;c128 18.10 26.50;c154 11.60 18.40;c059 0.00 15.50;c128 15.20 32.00,30.88\r\n16KTS,F3YX,Kitchen,7,7,Yes,A person is cooking some food on the stove.  Then the person opens up the refrigerator to look for something.,food;refrigerator;stove;utensil,A person is cooking something on the stove. They use some utensil on the pan. They go to the refrigerator and open it.,c143 20.70 31.00;c147 0.00 22.30,30.38\r\nI5KUM,18IT,Bathroom,4,5,Yes,A person is grasping the doorknob and smiling.  Another person is watching the person enter while taking some medicine.,cup/glass/bottle;door;medicine,Two people are standing in a hallway. One is holding some medicine. He puts a pill in his mouth and drinks from a cup while the other one has their hand on a doorknob. The person with their hand on the doorknob opens the door and reveals a bathroom.,c141 1.00 15.20;c128 0.00 7.30;c129 2.50 12.50;c109 3.90 14.00;c152 0.00 15.80;c008 7.50 18.00;c106 3.90 13.60,16.62\r\nQG4N1,DXDI,Living room,5,7,Yes,\"A person is taking pictures and laughing. They stop, undress, and then walk to a shelf and place the camera on it.\",camera;clothes;jacket;phone;picture;shelf;shirt couch;something,A person is taking pictures with a camera then puts it down and takes off their jacket. Then they take something and put it on a shelf.;A person is in a living room taking photos. The person removes an overshirt and puts the camera on a shelf.,c081 22.20 31.00;c015 0.00 15.20;c017 8.50 17.30;c155 10.20 19.50;c087 0.00 14.20;c016 0.00 13.70,29.58\r\nSAGM9,R1OT,Kitchen,5,7,Yes,A person is standing in front of the window taking a dosage of medicine. They begin drinking water to wash it down.,cup/glass/bottle;medicine;water;window,\"A person stands next to a table, and pulls out medicine while also placing water on the table. The person picked up the water, walked to window, and swallowed medicine.\",c092 9.90 31.00;c106 14.70 25.90;c129 10.60 16.40;c110 8.10 13.70;c107 1.90 11.20;c128 10.30 20.40,29.96\r\nOU3HS,EA2K,Living room,4,7,Yes,A person is seen fixing a sandwich and then sitting down on a sofa. They set the sandwich down on a nearby table while putting the remote into their hands.,chair;food;hand;sandwich;table;television,\"A person walks into a kitchen and makes a sandwich, then walks over to the table, and sits down;A person is using their hand to make a sandwich on a table\",c066 3.30 27.90;c059 29.40 40.00;c011 29.20 40.00;c067 21.40 35.70;c061 3.70 24.80;c068 19.10 30.70;c151 27.80 34.20;c132 35.00 40.00,38.92\r\nX6JKA,T7C3,Dining room,7,7,Yes,A person sneezes onto a glass and a stack of dishes. The person looks around coyly then smiles.,hair;table,a person sneezes at a table then looks around the room;A person is sneezing. A person then starts to fix their hair,c153 0.00 5.70,24.38\r\nVO45S,D0RU,Kitchen,5,7,Yes,\"A person is standing in the doorway, holding a box. The person walks over to the sink, puts the box down, and begins washing the glass in the sink.\",box;cup;dish;glass;sink,\"a person carries a box to the kitchen and then washes out a glass;a person holding a shoe box, walks into the kitchen, picks up the glass  from the sink then rinses it out.\",c040 0.00 13.20;c111 15.60 32.00;c042 9.10 14.10;c107 12.80 19.30;c121 16.70 27.70,31.08\r\nWHRBU,D0RU,Pantry,6,1,No,A person is sitting in the garage on a chair.  They stand up and pick up a bag of groceries next to the chair.,bag;chair,\"A person is sitting in a chair, winding up what looks like an auxilliary cord for a portable speaker. They wind up the object and they palce it into a backpack then they pick up the bag and walk out of the room with it.\",c020 19.00 24.10;c059 3.10 20.50;c023 19.50 24.60;c154 16.50 26.80;c021 17.10 23.00,31.58\r\n0K0LP,I4RP,Living room,6,6,Yes,A person puts away homework and starts eating snacks and watching television instead.,bag;blanket;chair;chips;computer;couch;food;homework;remote;sofa;television,\"A person is sitting at a computer with a notebook in front of them. The person then gets up, walks across the room, sits on the couch, and picks up a TV remote and a bag of food. The person uses the remote, then takes a handful of the food and eats it.;The person in the video, got up off the computer, opened a bag of chips, and sat on the sofa.\",c059 0.00 4.40;c132 8.10 13.90;c151 7.50 13.20;c123 8.10 28.00;c156 10.20 28.00;c154 0.10 5.30;c021 14.40 21.70;c061 6.40 28.00,26.58\r\nLEPM3,T7C3,Pantry,7,7,Yes,A person is opening a cabinet.  The person is grasping a jar which they put on a table.,cabinet;can;food;groceries;jar,A person is holding a can or jar and looking for something in a cabinet.,c113 1.30 8.30;c061 0.00 35.00;c130 30.70 35.00;c063 21.60 28.00;c062 30.60 35.00,34.25\r\nIHLXC,I4RP,Living room,6,6,Yes,\"A person awakens on a chair in their home office. The person moves to a nearby sofa, and begins snuggling up to a blanket.\",blanket;chair;sofa,A person is sitting in a chair. A person then grabs a blanket and lies down on the sofa.,c072 0.00 8.10;c122 1.30 7.20;c059 6.60 16.40;c154 6.90 17.00,16.33\r\nECMQU,XKTB,Basement (A room below the ground floor),6,6,Yes,\"A smiling person is dressing in their basement. They grab a glass of a shelf, and leave.\",clothes;cup;face;glass;jacket;sofa/couch,\"a person puts on a jacket then drinks out of a glass;Person sitting, putting on clothes, grabs and picks cup, place under chin and to mouth, gets up from couch.\",c107 16.80 25.60;c110 15.60 21.70;c152 0.00 6.50;c148 0.00 17.70;c148 0.00 5.30;c106 19.80 25.60;c154 22.80 28.50;c001 0.00 14.00;c123 0.00 26.10,29.75\r\nB1FY9,KQI6,Kitchen,5,7,Yes,A person is washing a doorknob and another is throwing food in a box.,dish;doorknob;food;plate;towel;trash can,One person standing got towel walked to the door clean the doorknob the other person get up and empty a plate of food in the  trash can;Person #1 took a cloth from a table and cleaned a doorknob with it. Person #2 had a plate of food and emptied it into the trash near the sink.,c061 16.50 24.20;c062 20.20 28.60;c118 16.80 25.50;c120 16.80 25.50;c035 1.60 6.60;c064 19.30 28.60;c033 1.10 32.00;c038 5.70 32.00,30.83\r\nB6HUA,1OHU,Bedroom,7,7,Yes,A person is smiling into a mirror then kicks a vacuum and starts laughing.,bed;mirror;vacuum,A person lying in bed is looking at a mirror and smiling and then kicks a vacuum.,c094 0.00 32.00;c152 0.00 25.50;c149 6.90 27.90;c134 0.00 32.00;c093 0.00 32.00,31.04\r\nKNDY2,28B0,Recreation room / Man cave,7,7,Yes,A person is sitting in a chair watching television. Another person is using a camera to take pictures.,camera;chair;picture;sofa/couch;television,two people are watching TV or playing video games.  One stands up and uses a camera to take pictures of the other.  Then the standing person walks out.,c059 0.00 22.00;c132 0.00 22.00;c154 5.90 11.40;c087 6.40 16.30;c015 0.00 21.10;c123 0.00 9.50;c016 0.00 18.80,21.42\r\nB8DL6,I2IV,Kitchen,6,6,Yes,A person pours a cup of coffee and sets it on the table. The person begins tidying the area around the table.,chair;cup;table;water,\"A person is pouring water into a cup. A person then starts tidying up a table.;Someone is sitting at a table pouring themselves a beverage. And, then they tidy up the table.\",c011 0.00 16.30;c154 11.20 17.40;c012 14.10 22.00;c108 0.00 12.30;c107 0.00 14.10,21.42\r\nWYZCW,I2IV,Living room,6,6,Yes,\"A person is putting on a pair of shoes in the recreation room. The person grabs their homework, opens the door, and leaves.\",chair;couch;door;homework;paper;shoe;sofa;table,\"A person is sitting on a couch and puts on a pair of shoes. They stand up, grab something off the table and walk out the door.;A person sitting in a chair, puts on their shoes, picks up some papers off of the table, and across the room, opening the door, and walking out.;Someone is sitting on the sofa putting on their shoes. They get up and grab papers from the table and walk out the door.\",c154 0.00 5.20;c008 9.10 16.30;c055 12.70 24.50;c055 23.80 29.80;c117 18.00 24.80;c154 17.30 22.80;c123 0.00 21.40;c115 19.20 31.00;c097 26.20 31.00,30.29\r\nC4KZ4,6RE8,Bedroom,6,5,Yes,A person in their bedroom is closing a book that is lying on their bed. They start tidying up their room and then place some medicine onto their sofa.,bed;book;container;medicine;picture;shelf;table,\"A person picks a book up off of a bed and puts it away, then they pick up a container and some pictures off of the bed and throw the pictures back on the bed;A person closes a book, picks it up off a table and moves it to a shelf. They then pick up a container from the table and start emptying it's contents.\",c025 0.60 5.80;c081 4.20 13.70,30.38\r\nG5KWF,C7O9,Pantry,7,7,Yes,A person is fixing a vacuum while another person is throwing a shoe at them.,clothes;doorway;shoe;vacuum,A person in the pantry doorway is fixing a vacuum. A second person throws clothes at the first person.;A person is fixing a vacuum cleaner in a doorway. A second person is throwing shoes at the other person.,c136 0.00 32.00;c058 2.80 22.70;c149 20.40 26.10;c152 6.10 12.90,30.67\r\nGDIW0,XXN8,Laundry room,5,7,Yes,\"A person is standing in the laundry room, working on their laptop. The person takes a break and looks out the window for a moment.\",laptop;window,A person opens a laptop.The person is standing and working on a laptop. They close the laptop and look out the window.,c046 16.60 24.00;c047 0.00 22.50;c052 0.00 20.90;c092 18.70 32.20;c051 0.00 19.60,32.29\r\nWMZME,KFGP,Bathroom,5,6,Yes,A person is fixing the doorknob to a bathroom.  The person finishes fixing the doorknob then uses the broom to tidy up the mess made fixing the doorknob.,broom;doorknob;doorway,A person is fixing a doorknob with a screwdriver.  The person is sitting on the toilet while doing so.  The person then seizes a broom and begins to pretend to sweep.,c100 24.90 32.30;c097 31.80 41.00;c140 0.00 26.50;c141 0.00 6.00;c141 12.20 19.00,40.42\r\n0QHR4,OUKK,Bedroom,6,7,Yes,\"Person walks into the closet and leans against the doorway, they eat some food and and work on opening a medicine container.\",closet;door;food;medicine,\"A person is opening the door to their closer and opening a medicine bottle that's in their hand.;The person opened the closet door. While standing in front of the closet, the person ate some food and began opening a bottle of medicine.\",c128 0.00 17.00;c113 0.00 7.10;c128 9.00 17.00;c156 3.30 8.90;c141 0.00 4.60;c008 0.00 5.30,15.71\r\n63XVB,D0RU,Bedroom,7,6,Yes,\"A person is taking some notes at a desk, smiling to themselves thoughtfully. The person then gets up and walks out the door, humming to themselves.\",book;chair;desk;door;laptop;table,\"Person sitting at a desk doing homework and writing in a book person walk out of the room through a curtain.;This person is sitting at a desk, writing in a book, while looking at a laptop.\",c011 0.00 29.00;c152 17.00 26.00;c154 26.00 31.00;c032 0.00 29.00;c052 0.00 29.00;c059 0.00 29.00;c145 0.00 3.70;c097 31.60 35.00,34.08\r\nVGAMG,QB52,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is in a office drinking from a glass while sitting in a chair, they then start to snuggle with a towel.\",chair;computer;cup;desk;dish;glass;laptop;table;towel,\"A person drinks out of a class while sitting at their desk and watching something on their laptop. They place the glass on the desk and hug a towel.;A person is sitting in a chair at a desk and drinking from a glass, they then begin to snuggle towel. They are staring at a computer.\",c106 0.00 13.80;c107 9.80 15.60;c110 4.00 13.60;c059 15.50 29.30;c009 18.40 26.60;c118 0.00 14.40;c120 0.00 3.10;c119 9.60 15.60,30.92\r\n5LJ3J,ID9V,Living room,2,7,Yes,One person snuggles with a fluffy towel on a chair and smiles at what's inside a box.,blanket;box;chair;towel,\"A person is sitting down snuggling a towel, then picks up a box and looks at it.\",c059 0.00 26.00;c040 0.00 26.00;c042 14.00 25.40;c072 0.00 16.10;c070 0.00 16.80;c041 12.90 17.80,25.46\r\nMKBH8,YA10,Kitchen,6,7,Yes,One person walks into the kitchen smiling holding dishes while the other is pouring medicine into a jar.,cup/glass/bottle;juice;medicine;table,A person pours a glass of juice and takes medicine. Another person walks in the room smiling.,c152 25.50 31.00;c009 0.00 31.00;c108 0.00 31.00,29.58\r\n8L08M,YMXV,Bedroom,6,6,Yes,\"A person is standing in a bedroom holding their shoes. They dress, and sit on a sofa.\",bed;clothes;shirt;shoe,A person is standing next to a bed and begins to take off some shoes. The person then sits down on the bed.;person holding the shoes and threw them aside and put on buttons to shirt and sat on the bed,c135 11.80 18.60;c148 5.30 16.00;c053 0.00 8.70;c058 4.50 9.30;c151 10.00 16.90,30.33\r\nPYE2T,6RE8,Bedroom,4,7,Yes,A person is watching the television while lying down and holding holding a phone.,bed;phone;television,A person lays down on a bed and checks their phone.;Person lays on the bed and begins to play with his cell phone.,c015 10.80 31.10;c151 3.40 12.50;c134 7.70 33.00;c132 6.30 33.00;c016 10.00 28.30,31.83\r\nQ9Q9L,PKND,Garage,5,7,Yes,A person is sitting on a chair in their garage. They leave and walk into the room with a bowl of food and a glass of soda.,chair;cup;dish;food;glass,Person stands up picks up glass and walks inside house. Before entering house they take a drink from glass.,c061 4.30 32.00;c106 17.00 32.00;c059 0.00 5.90;c154 0.80 6.40;c120 4.00 9.50;c107 4.30 32.00,31.42\r\n0DBQD,2RTW,Living room,6,6,Yes,A person was eating a sandwich on the couch while they watched television. The person was also drinking a glass of water. Another person was looking at photos in a camera. The person was snuggling a blanket.,dishes;food;glass;phone;sandwich;sofa;television,People are sitting on the sofa. One is eating a sandwich and watching television while the other is playing with their phone.;A person is eating a sandwich while sitting on a couch and watching TV.   Someone else on the couch is just sitting there and not paying attention.,c067 0.00 5.80;c123 0.00 32.00;c132 0.00 32.00;c132 0.00 5.10;c065 0.00 5.10;c156 0.00 5.10;c061 0.00 32.00;c106 8.60 17.80;c016 0.00 32.00,30.71\r\n61FWZ,2RTW,Kitchen,6,6,Yes,\"Person is in kitchen doing dishes, another person is sitting on couch holding glass.\",cup;dish;glass;sofa,A person is standing in the kitchen and washing dishes while another person sits on a sofa in the living room holding an empty glass,c123 14.10 32.00;c107 14.60 32.00;c121 0.00 18.60;c118 0.00 18.40,30.67\r\nARN8U,UO0Z,Living room,7,1,No,\"A person who is sitting in front of a window drinks something from a glass, then they pick up a towel and begin snuggling it.\",blanket;cup;glass;sofa/couch;something;table;towel;window,Person drinking something from a glass put the glass on a table lying down on the sofa with towel in arms,c106 0.00 19.30;c033 14.10 25.00;c107 0.00 13.30;c072 15.20 25.00;c011 0.00 18.20;c123 0.00 18.20;c070 13.90 25.00,24.50\r\n3H1EA,DBGJ,Dining room,6,7,Yes,\"A person throws a book onto the table, before pouring a beverage into a glass from a carton.\",book;cup;glass;table,\"A person reads a book, then throws it on the table. Next, they pour a glass of milk and drink it.\",c032 0.00 6.30;c107 7.80 18.90;c110 7.10 13.30;c025 1.10 6.10;c026 0.00 6.40;c106 17.40 23.00;c009 12.80 17.60;c031 1.90 6.70;c108 8.70 16.10,22.33\r\nQ6XGG,C7O9,Dining room,7,7,Yes,A person is playing with a sandwich while another person is watching something on their laptop.,chair;food;laptop;sandwich;something,\"two persons were in the room, one person sitting before the laptop and working, other person is standing and doing something with hands\",c059 0.00 32.00;c051 0.00 32.00;c156 24.80 32.00,30.96\r\nQT4WM,EA2K,Closet / Walk-in closet / Spear closet,6,5,No,A person is opening a cabinet in their closet. They start throwing out some of the pictures that they find in the cabinet.,cards;closet;door;floor;linen wardrobe;paper/notebook;picture,\"A person opens a linen closet, looks for something, then starts throwing cards on the floor.\",c113 1.40 9.30;c126 17.60 38.00;c088 19.10 25.40;c117 20.20 28.00;c008 1.70 9.70;c115 18.00 24.80;c086 26.20 33.60,37.17\r\nCN5G4,T7C3,Dining room,7,7,Yes,A person is sitting in the kitchen eating. The person then goes to get medicine from the cabinet and trips over the vacuum.,cabinet;chair;food;medicine;sandwich;table,\"The person is eating a sandwich then gets up to get their pills and falls.;A person eats a sandwich while sitting at the table. They get up to leave and fall over, then grab some medicine from a cabinet.\",c113 36.90 42.20;c011 0.00 17.40;c112 40.20 45.00;c156 0.00 27.90;c065 0.00 27.90;c061 0.00 5.50;c067 0.00 7.10;c059 0.00 29.50;c128 39.30 45.00,43.92\r\nVDXXV,UTMU,Bedroom,6,7,No,\"A person in their bedroom is lying on a pillow. They stand up, walk towards their wardrobe and start  taking some clothes out of the wardrobe.\",bed;closet;clothes;door;pillow;shelf;wardrobe,\"A person walks through the bedroom and looks at a shelf. The person then grabs a pillow and lies down on the bed. The person then gets up, leaves the room, opens a wardrobe, and brings a stack of clothes into the room.;A person walks into the room, looks at a shelf, then picks up a pillow. the person lies on the bed snuggling the pillow puts it down on the bed, gets up and walks to a closet to remove clothes after opening the closet door. The person shuts the door and returns with the clothes and begins to walk out of the room.\",c077 6.70 11.80;c000 26.00 39.00;c008 21.50 28.00;c113 21.50 28.00;c076 6.70 11.80;c078 8.70 21.90;c154 19.30 23.80;c006 29.80 35.50;c134 8.90 21.90;c002 24.50 31.30;c080 6.80 12.50,37.58\r\n70TVS,3H6W,Home Office / Study (A room in a house used for work),5,7,Yes,A person is undressing in a home office. The person is taking off clothes and shoes while watching TV.,chair;clothes;headset;shoe;table;television,\"A person sits down at a desk, takes off his shoes and jacket, puts on a headset, and listens to a program that is running on the computer. He then takes off his headset, gets up, and walks away.;A person walks in, sits down in chair, takes off shoes, takes off coat, puts on head phones, and watches television.\",c057 10.00 14.90;c151 8.50 13.40;c011 25.10 38.30;c155 16.40 26.70;c154 34.90 40.70;c057 9.40 19.90;c132 23.40 39.60;c059 9.10 39.60;c003 19.90 26.00,43.67\r\nTE074,UTMU,Stairs,6,7,Yes,The person grasps the rail of the stairs while talking on the phone. While continuing to grasp the phone the person looks at their sandwich.,food;phone;sandwich,A person is standing on the stairs while talking on the phone. A person is holding a sandwich while on the phone.,c019 0.00 32.00;c067 7.00 32.00;c063 4.10 11.80;c061 0.00 32.00;c015 0.00 32.00,31.08\r\nJX18W,ID9V,Bedroom,5,6,Yes,A person awakens then walks to the wardrobe while holding a blanket.,blanket;closet;door;wardrobe,\"A person is waking from sleeping on the floor with a blanket, they then open a closet door and look around.;A person stands holding a blanket, opens a closet door and looks inside at a wardrobe then walks back to turn off the camera.\",c070 8.00 16.30;c154 7.40 26.00;c008 14.40 23.20;c113 14.30 23.40;c146 0.00 12.40;c073 10.70 17.20,29.96\r\n1BEFM,PKND,Other,2,2,Yes,A person awakens in their garages sitting in a chair under a blanket. They eat a cookie and leave.,blankets;bowl;chair;food,A person is sitting on a chair with blankets on the floor and eating food.;A person is sitting in a chair. They are eating something from a bowl.,c059 0.00 30.00;c156 1.80 9.80;c061 2.60 8.20;c062 2.40 8.50;c062 14.30 20.50,29.33\r\n61BEP,D0RU,Hallway,6,7,Yes,\"A person is sitting on their sofa, playing a game using their phone. They notice it's getting dark so they stand up to turn on the light.\",game;light;phone;sofa,Person sitting on a bench playing a game on phone before getting up to turn on the light.,c104 30.70 37.00;c016 0.00 37.00;c154 28.20 33.60;c123 0.00 32.90;c015 0.00 37.00,36.33\r\n4P13T,EIO2,Living room,6,6,Yes,\"One person runs through, takes a bag, and leaves a stack of homework by the door.\",backpack;bag;book;door,\"A person takes a backpack and looks inside it. They remove a paper out of the bag and put it on a chair. The person walks outside with the backpack;A person runs into a living room and grabs a bag up, then the person starts taking books and magazines from the bag and places them on a chair, then the person puts the bag over their shoulder and runs out the front door.\",c020 1.60 8.70;c021 4.40 14.80;c023 0.00 4.80;c150 0.00 3.60;c030 18.40 24.60;c097 26.00 31.00;c028 11.00 17.00,31.08\r\n0BX9N,UTMU,Basement (A room below the ground floor),7,7,Yes,\"A person walks into the basement, throwing their homework into a garbage bag. The person sighs, then takes the homework back out of the bag.\",bag;book;counter;homework;paper;shelf;table,\"A person puts down a bag then picks up another and places it on a shelf. They open the bag and remove some papers.;Person walks in room carrying books, bends and place books on floor, grabs bag, place on counter, folds arm, opens bag, takes out books and holds them.\",c021 11.80 21.40;c115 17.60 24.00;c028 1.40 9.90;c020 3.90 10.00;c022 3.50 10.20;c117 12.30 24.00;c026 0.40 6.40;c009 5.10 11.30;c030 13.80 24.00;c023 0.00 9.80,22.58\r\nBRE3P,6IFG,Kitchen,6,6,Yes,Person puts groceries on the counter.  Person takes coffee out of the grocery bag and puts coffee and water in coffee maker.  Person pours coffee in mug and drinks coffee.,bag;coffee;cup;food;glass;groceries;table,\"A person walks in with a bag of groceries and places them on a counter.  That same person then pours coffee into a glass.;A person holding a bag of groceries walks into the kitchen, puts them on the counter, then pours a cup of coffee\",c130 1.60 16.10;c021 2.40 9.20;c108 20.40 27.40;c020 0.00 6.80;c106 24.40 31.00;c009 4.30 9.10;c110 28.00 31.00;c063 28.00 31.00;c062 28.00 31.00;c022 28.00 31.00;c061 0.00 13.60;c107 22.50 31.00;c109 4.00 9.10;c109 15.30 21.20;c147 10.90 23.50,29.96\r\nOCSVQ,6IFG,Kitchen,6,6,Yes,\"The person walks into the kitchen, kicking off their shoes as they enter the room.  Standing at the counter, they go through the mail and put on a pot of coffee.\",coffee;cup;dish;doorway;shoe,\"A person is walking through the doorway taking off their shoes, they then begin to check their mail and pour themselves some coffee.\",c057 0.20 7.10;c097 0.00 3.20;c108 11.90 19.50;c120 11.90 16.80;c118 11.90 21.00,19.58\r\nSWYUO,6IFG,Dining room,6,6,Yes,A person awakens from a nap from the loud noise of the television. The person gets up and turns the television off. The person begins to sneeze and then reaches for a box of tissue on top of a coffee table,chair;object;table,A person is sitting with their head on the table.  They get up and walk around the room;A person with head on table gets up and walks away from table then walks back and touch object on table.,c154 2.10 6.50;c011 0.00 3.20;c146 0.00 2.60;c059 0.00 5.10,14.58\r\nWT405,8IOD,Kitchen,6,5,Yes,A person pours a glass of water that they then place in the refrigerator.  They then begin watching a show on a laptop.,cup;dish;freezer;glass;laptop;refrigerator;sink;water;window,\"The person looked around, turned on the water at the sink, filled up a glass of water and put the glass in the refrigerator. They then began watching the laptop.;A person picked up a glass off of the counter top and proceeded to fill it with tap water, then she placed the glass in the freezer and began to watch something on a lap top that was sitting beside the sink.\",c108 6.10 16.70;c142 19.60 25.70;c051 0.00 6.40;c109 10.40 22.60;c143 14.20 23.30;c110 3.50 23.40;c120 3.50 23.40;c107 3.50 23.40;c119 3.50 23.40;c092 0.60 4.90,30.54\r\nZJR24,C7O9,Laundry room,6,6,Yes,A person takes out the vacuum and starts tidying the area. Another person brings a pillow that needs washing.,doorway;floor;pillow;vacuum,A person is vacumming the laundry room when another person comes in with a pillow  and puts it in the dryer.;A person vacuuming the floor in their laundry room. Another person enters with a pillow and puts it in the washer.,c076 17.30 28.20;c077 24.00 32.00;c137 0.00 32.00;c097 18.30 23.80;c127 9.30 32.00,30.92\r\nP3RRJ,C7O9,Laundry room,6,6,Yes,\"One person is smiling going through a box of old clothes, while another runs through the room with a sack of groceries.\",bag;box;clothes;doorway,\"A person is in a laundry room, taking clothes out of a box and laying them down next to it. A second person walks up to the first person carrying a shopping bag.\",c044 0.00 32.00;c000 0.00 31.40;c001 1.80 31.80;c150 20.20 26.20;c002 0.00 32.00;c020 20.20 27.90;c097 20.20 28.30;c004 0.00 32.00,30.58\r\nRGHT9,C7O9,Laundry room,6,6,Yes,\"In the laundry room, a person is washing a bag.  Another person is watching while laughing on the phone.\",clothes;laundry;phone;pillow;vacuum,There are two people in this video. One person is talking on the phone while the other is pulling clothes out of a bag.;The persons were in the laundry room.  One person folded laundry.  The other person talked on their phone.,c002 0.00 31.00;c015 0.00 31.00;c149 7.00 31.00;c004 0.00 31.00;c001 0.00 31.00;c019 0.00 31.00;c000 0.00 31.00;c005 0.00 31.00,30.42\r\nK34BE,BYF9,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person stands in the doorway, holding a broom. The person begins tidying.\",backpack;bag;broom;floor,\"A person is sweeping the floor with a broom, they then pick up a backpack and sweep underneath it.\",c098 14.80 18.00;c102 0.40 18.00;c127 0.00 18.00;c023 1.10 6.10;c020 2.60 18.00,16.71\r\nM3S4D,KFGP,Living room,6,7,Yes,\"The person runs into the room holding a box. The person puts down the box on the floor and holds a cup, acts as if taking a drink and then smiles.\",box;cup;floor;glass;shelf;table,\"The person runs into the room, puts a box on the ground, and picks up a glass from a table. The person then drinks from the glass.;A person runs in to a room with a box.The person puts the box down and picks up a cup of coffee and takes a drink.\",c042 1.20 11.00;c106 8.70 17.50;c150 2.90 8.70;c009 9.00 27.00;c040 0.00 4.10,25.75\r\nROL2T,9Y7F,Bedroom,3,6,No,\"One person in a towel starts dressing while another person sneezes, then laughs, from the doorway.\",clothes;doorway;hair;shirt,Two persons are standing around in a entryway.  One person sneezes while dancing.  The other takes off some clothes and puts on other clothes.;two people are standing in a room. one person put son a denim shirt. another person sneezes and then does some dancing in a doorway.,c153 5.80 11.90;c148 2.70 12.20;c148 12.00 31.00;c154 0.00 6.00;c155 7.90 14.60;c001 10.50 16.00;c002 2.70 8.50,30.38\r\nME7II,UTMU,Living room,5,6,Yes,\"Person is opening door while holding camera, then sits down on cough and starts watching television.\",door;sofa;television,A person opens a door and enters a room. The person then sits on the sofa and uses a remote. They then stand again.,c132 10.30 37.20;c006 0.90 7.90;c008 0.00 4.90;c151 5.40 11.20;c123 5.40 10.50;c097 0.00 6.20;c154 0.00 9.90,36.79\r\n1JGLR,1OHU,Garage,6,7,Yes,A person grasps a picture and walks toward a chair.,chair;picture,A person picks up a picture and examines it.  They walk around the room for a moment.,c084 0.40 29.00;c088 1.40 29.00;c083 0.40 5.80,28.04\r\nSU5W2,DXDI,Bedroom,4,7,Yes,A person is washing their window and laughing. They are also drinking coffee.,cleaning rag;cup;shelf;window,A person is cleaning the window sill then heads away drinking a beverage.;A person is dusting a window. Then they walk out of the room.,c091 0.10 25.00;c106 6.70 13.10;c082 22.20 25.00;c092 22.20 25.00;c107 22.20 25.00,24.17\r\nWRFZW,HJJ4,Bedroom,5,7,Yes,A person is seen working while sitting on a chair. They begin pouring themselves some water and taking medicine.,book;chair;cup;desk;dish;food;glass;homework;medicine;table;water,A person is sitting at a desk writing in a book.  That same person closes the book and then pours some water in a cup.  The person then opens some medicine and takes it with the water.;A person is sitting at a desk doing homework. THe person pours water into a glass and takes some medicine.,c059 0.00 30.00;c011 0.00 30.00;c129 13.80 28.70;c106 19.60 27.30;c128 11.40 18.90;c118 5.30 29.60;c107 5.30 14.70;c145 0.00 7.10;c108 5.30 14.60;c119 5.30 14.70;c014 0.00 8.10;c156 15.70 24.50;c109 4.10 15.70;c009 21.50 30.00,29.17\r\nU1OYB,PO5L,Home Office / Study (A room in a house used for work),3,7,Yes,A person in their home office is working on some homework at their desk. They stop and start playing with their shoes.,desk;homework;paper;shoe;table,A person is sitting to a desk doing homework. A person then picks up a shoe.,c145 2.00 16.40;c011 3.20 25.30;c053 15.60 26.00;c154 21.90 28.00;c056 13.10 19.60;c151 0.00 6.10;c058 16.00 25.60,27.33\r\nVT624,YMXV,Bedroom,7,7,Yes,A person is watching television in their bedroom. They sneeze and take medicine from a bottle.,bed;bottle;medicine;pillow;television,\"a person lounging on a bed with the television on adjusts his pillow then opens a container of medicine and drinks from it.;A person is laying on a pillow on a bed.  They sit up, open a medicine bottle, take some and sneeze.\",c129 13.80 32.00;c153 21.90 29.50;c134 0.00 8.80;c135 5.30 32.00;c077 0.00 4.60;c128 13.20 20.30;c107 6.20 32.00;c106 14.60 22.00;c132 0.20 12.90,30.96\r\nA96EQ,YMXV,Bedroom,7,7,Yes,A person holding a broom opens the door to the study and walks inside. They survey the room with a dissatisfied expression and then begin sweeping the floor.,broom;door;floor,The person pushes the door open and walks through the doorway into the room and begins to sweep the floor.,c008 0.00 6.70;c102 13.70 34.00;c127 15.70 34.00;c097 0.50 7.50;c098 2.80 34.00,33.29\r\nSKI92,HJJ4,Kitchen,6,7,Yes,The person was cooking dinner with the groceries from the store.  The person coughed while standing at the stove.,bag;food;groceries;spatula;stove,\"A person is cooking food on the stove. A person is looking through a bag of groceries, and then sneezes.;Is person is standing at a stove cooking.  The person takes groceries out of a bag to cook with them.  The person then sneezes.\",c147 0.00 28.00;c062 14.00 20.00;c021 10.00 18.00;c061 13.90 22.10;c063 10.80 19.30;c153 19.60 28.00,27.17\r\nMDXF4,38MV,Closet / Walk-in closet / Spear closet,6,6,Yes,A person was leaving a closet after putting a pillow away in it when another person opened the closet door and was drinking a glass of water.,closet;cup;door;glass;pillow;shelf;water,\"A person puts a pillow on the top shelf of a closet, closes the door and walks out.  Another person drinking a glass of water walks in and opens the closet door.  They begin rummaging in the closet.\",c006 6.10 12.20;c106 16.10 23.50;c113 18.50 26.30;c107 16.40 35.00;c008 20.00 26.30;c081 0.00 5.80;c112 6.60 12.30,34.42\r\n909RL,Z68L,Bedroom,6,7,Yes,\"A person in the bedroom is running around while drinking a glass of water. They stop and put the glass of water onto a table, while glaring out the window.\",cup;glass;table;water;window,\"Person picks up a glass cup from table, paces across room several times, drinks from glass of water places glass onto table, looks out window.\",c106 13.20 19.10;c009 15.20 20.40;c107 0.00 20.20;c092 16.50 30.00;c109 15.50 20.20,28.83\r\nC278V,KQI6,Living room,4,7,No,Two people are tidying up the clothes that are in a doorway. One person is putting clothes on the table while the other folds them.,blanket;clothes;doorway;sofa/couch;table,A WOMAN IS SITTING ON A SOFA FOLDING LAUNDRY AND THEN A MAN TAKES A PILE OF CLOTHES AND PUTS THEM ON THE TABLE. THE MAN THEN PROCEEDS TO HELP THE WOMAN FOLD THEM,c009 7.60 14.80;c097 1.50 7.20;c001 7.80 14.40;c000 1.50 12.20;c154 1.40 32.00;c075 10.70 32.00;c070 8.90 32.00;c123 28.60 32.00;c073 28.60 32.00;c003 28.60 32.00;c002 28.60 32.00,30.54\r\nPXYN8,XXN8,Living room,6,7,Yes,A person throws a blanket onto a sofa. Another person runs around holding a pile of clothes before letting them fall onto the floor.,clothes;floor,the person is playing with a pet,c126 8.40 14.40;c000 0.00 9.20;c003 8.10 14.40;c150 1.80 11.60;c001 0.00 12.70;c002 0.00 12.70;c004 0.00 5.80;c152 0.00 31.00,30.12\r\nU0X4P,YMXV,Bedroom,4,6,Yes,A person is watching something outside the window. The person takes off their shirt and throw it on the sofa.,bed;clothes;shirt;window,A person looks out the window. They then get undressed and throw their clothes on the bed.;The person looked out the window. The person walked away from the window and removed their shirt. They then threw their shirt onto a bed very hard.,c092 0.00 14.20;c003 26.20 30.80;c155 11.50 30.40;c002 29.70 33.00,31.96\r\nUEXO4,KFGP,Living room,6,7,Yes,\"A person awakens on a sofa. Still lying on the sofa, the person pulls a blanket from a nearby chair, rolls over, and goes back to sleep.\",blanket;chair;pillow;sofa,\"A person wakes up, grabs a blanket and procedes to cover themselves with it. They then go back to sleep.\",c072 6.40 26.00;c122 0.00 26.00;c146 0.00 11.40;c075 8.20 22.70;c078 0.00 10.20;c073 7.70 12.30,25.08\r\nTTZVW,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,A person opens a window. They then pick up and hold a cup of coffee and a small plate with a sandwich.,coffee;cup;dish;food;sandwich;window,A person is opening a window while they are holding a plate of food and drinking a cup of coffee.,c090 0.00 9.50;c106 22.00 27.20;c118 9.50 31.00;c107 11.40 31.00;c089 3.30 10.80;c061 9.30 31.00;c092 6.50 31.00;c107 16.30 23.10;c089 6.80 12.30;c110 11.40 16.90;c061 10.70 16.30;c092 14.00 24.00,30.17\r\nOMFOJ,2RTW,Recreation room / Man cave,6,6,Yes,\"A person is washing a window in their recreation room. The person opens the window, closes it, then puts their cleaning supplies down on a nearby shelf.\",glass;shelf;spray bottle;towel;window,\"A young person washes a window and then opens it and closes it.;A person washes a window with a towel, then slides it open and closed.;A person picks up a cleaning spray bottle and sprays the window.   After scrubbing the window, the person closes it and puts the cleaner down.\",c090 15.20 21.10;c089 17.90 24.70;c091 0.00 18.70;c081 19.70 25.20;c038 0.00 19.30,30.04\r\n2ZINN,2RTW,Bedroom,6,6,Yes,A person is sitting in a chair with a book smiling at the picture in the book.,book;chair;shelf;window,A smiling person sits in a chair at a desk holding a book in their lap and reading.;{};A person is sitting on a chair at a desk reading a book and smiling.,c026 0.00 31.00;c032 0.00 31.00;c059 0.00 31.00;c029 0.00 31.00;c152 0.00 31.00,30.21\r\nBFVDN,EIO2,Basement (A room below the ground floor),6,7,Yes,A person is smiling at their cup of coffe then putting a nearby pillow next to a blanket.,blanket;cup;glass;pillow;window,{},c107 0.00 32.00;c092 0.00 27.90,30.83\r\nFQDD1,4YWP,Bathroom,7,7,Yes,A person is undressing in the doorway of the bathroom and then washing the front of the cabinet.,cabinet;clothes;doorway;towel;washcloth,A person is undressing in a doorway and then starts to clean a cabinet in the bathroom.,c114 17.60 34.30;c155 0.00 17.00;c038 20.70 33.50;c112 31.30 36.00;c001 2.10 16.30,35.21\r\nDVBVZ,9Y7F,Dining room,6,6,Yes,One person takes a bag from a shelf and closes it while another person takes medicine and sneezes.,bag;chair;container;foil;medicine;shelf;table,\"Two people are sitting at a table, one person gets up and takes a bag from a shelf and opens it, the second person is sitting in front of a foil covered container and sneezes and opens the foil\",c021 20.20 32.00;c023 2.80 9.30;c153 14.20 20.70;c154 0.00 4.50;c022 2.00 11.90;c011 0.00 32.00;c009 2.00 12.00;c059 0.00 32.00,30.83\r\nNODDU,4I2W,Bedroom,5,4,Yes,A person in their garage is working on something on their phone. They take a camera and start taking pictures of themselves through a mirror.,camera;mirror;phone,\"A person types something on their phone, then picks up a camera and takes a picture while looking in a mirror.\",c096 21.70 31.00;c016 0.00 15.70;c015 11.90 31.00;c087 20.90 31.00,29.71\r\nQKOP0,HRH1,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person walks into their home closing the door behind them they are drinking a soda they sit it on the table next to the phone.,cup;dish;door;food;furniture;phone;table,\"The person, holding a cup, opens the door. The person walks through the door, though the kitchen, and into the living room. The person sits down on some furniture, possibly a table, and opens a plastic bottle of Coca Cola. The person is holding the phone to take a video.\",c008 0.00 6.60;c010 12.00 18.90;c097 3.00 9.90;c120 0.00 7.00;c063 15.50 20.50;c151 12.60 19.50,26.29\r\nKPWKY,CCI9,Stairs,7,6,Yes,One person grasping a cup of coffee starts sneezing as another person with a phone watches.,cup;phone,person is on a cell phone while the other person drinks from a cup,c106 0.00 19.10;c153 1.00 5.90;c107 0.00 32.00;c015 0.00 32.00;c016 0.00 17.00,31.29\r\nUJOLG,1OHU,Bedroom,6,6,Yes,\"A person walks into their studying, eating a sandwich and drinking a cup of coffee. The person sets the items down on a shelf, and takes off their shoes.\",coffee;dish;doorway;food;sandwich;shelf;shoe,A person is eating a sandwich and drinking coffee from a cup before walking through a doorway into another room to put the items on a shelf and take off shoes.,c067 0.00 19.60;c156 0.00 5.50;c097 8.70 14.40;c065 0.00 4.90;c057 15.30 20.10;c062 12.70 19.60;c119 12.40 20.00;c063 0.00 24.00;c061 0.00 10.80;c118 0.00 19.50;c069 0.00 19.50;c068 0.00 19.60;c120 0.00 19.50,23.33\r\nAPZUZ,T7C3,Kitchen,6,6,Yes,A person puts a sandwich on the shelf then drinks from a cup while taking off their shoes.,cup;dish;glass;sandwich;shelf;shoe,Person walk into a room with a sandwich in a dish drinks from a glass take off shoes put them on the floor.,c081 0.00 7.20;c106 4.20 14.50;c054 13.00 22.40;c068 0.00 6.10;c057 9.60 26.00;c119 0.40 6.10;c053 13.50 18.70;c107 0.00 31.00,30.38\r\n3LLXX,P6LJ,Kitchen,6,6,Yes,The person is sitting on the chair with a glass of water on hands. The person takes some medicine and drink some water. The person standing next to the first person is smiling.,chair;cup;medicine,A person is sitting in a chair. A person is holding a cup and taking some medicine.,c106 30.30 39.60;c151 0.00 9.40;c059 4.90 41.90;c154 37.70 47.00;c129 21.10 39.60;c128 7.90 29.50;c107 12.50 23.70;c110 12.50 23.70,46.08\r\nRG1XI,38MV,Recreation room / Man cave,5,5,Yes,A person is snuggling in bed when suddenly they get awakened by a light coming through the window.,bed;blanket;light;pillow;sofa;window,\"A person is lying on a sofa sleeping, they awaken and get up.;The person is sleeping and wakes up after tossing and turning a bit.\",c133 0.00 23.20;c146 0.00 22.80;c154 23.80 31.60;c122 0.00 9.30;c134 0.00 28.00;c072 0.00 26.00;c135 24.10 32.00,31.08\r\nGBPPR,0KZ7,Living room,6,7,Yes,A person is reading a book while eating some food. The person starts laughing and then stops to take a drink out of their cup.,book;couch;cup;dish;food;glass;sandwich;sofa,\"A person is sitting on the couch reading, and drinking from a glass with a snack in their hand.;Person sitting on the couch eating a sandwich and reading a book, laughing, and then picks up a glass and drinks.\",c026 0.00 31.00;c106 21.30 31.00;c061 0.00 31.00;c156 0.00 13.00;c123 0.00 31.00;c065 0.00 13.00;c118 19.70 31.00;c032 0.00 31.00;c152 12.20 27.70,30.17\r\nOIRJ0,X3DN,Dining room,7,7,Yes,A person is watching something out of the window. The person sits down at the table and laughs.,chair;sink;table;window,\"Person in kitchen, looks out window and behind them multiple time. Animal on floor sniffing around. Person walks to chair, sits down, laughs, animals jumps on person, person laughs, places hand on counter and laughs more.;A person is standing at the kitchen sink looking out the window, then walks to the table and sits down laughing.\",c092 0.00 10.10;c011 16.20 22.00;c151 16.00 21.80;c149 17.60 26.90;c059 16.60 40.00,39.46\r\n9IXS4,P6LJ,Pantry,3,5,Yes,A person is standing in the pantry holding a picture.  They turn off the light and leave.,book;light;picture,A person is holding a book and then turns off a light.,c105 14.60 20.40;c026 0.00 23.70;c115 21.90 25.00,23.83\r\nUFNPU,2Q9D,Laundry room,6,7,Yes,\"A person opens the door to the laundry room and walks in. The person grabs some food from the table and leaves, closing the door behind them.\",dish;door;food;table,\"A person walks into a laundry room, picks up a plate of food from a table, examines the food, and walks out of the laundry room with the plate of food, shutting the door.\",c063 7.00 25.40;c006 4.20 11.80;c008 1.90 7.30;c061 6.60 25.50;c141 19.20 24.20;c120 5.20 12.20;c118 6.60 23.50;c097 21.70 26.90,28.62\r\n5RY3S,D0RU,Hallway,7,5,Yes,The person holds a sandwich and a picture as they grasp the doorknob of a hallway closet.,doorknob;doorway;picture;sandwich,\"the person is first outside, then opened the door holding a brush and thinking to come inside\",c067 8.60 15.70;c140 12.30 22.30;c097 7.80 27.10;c141 5.70 25.70,30.71\r\nG11YN,EIO2,Laundry room,7,7,Yes,Person is lying on floor playing with box of pictures.,box;floor;picture,{},c124 0.00 32.00,30.83\r\nCDT32,KQI6,Basement (A room below the ground floor),4,4,No,A person smiled at self in a nearby mirror then threw a blanket on the floor.,blanket;floor;mirror,A person walks up to the mirror and then walks and picks up a blanket and throws it on the floor and walks away.,c074 13.20 22.20;c096 1.50 9.40;c126 14.40 21.80;c152 17.30 23.00;c071 16.80 21.00,31.58\r\nQVQNK,2RTW,Living room,6,6,Yes,\"A person walks into the living room, carrying a blanket and a pillow. The person puts the items down, grabs a towel, and leaves the room.\",blanket;clothes;couch;desk;pillow;shelf;sofa;towel,A person is walking into a room carrying clothing they throw it on the couch and then pick up a towel and walk out of the room;A person walks into a room with a pillow and blanket. They put them on a couch and grab a different blanket.;A person walks into the living room carrying clothes. They put them on the couch and grab a towel and leave the room.,c074 12.00 17.00;c035 14.00 19.00;c000 14.00 26.00;c077 12.30 16.60;c073 4.90 14.50;c001 22.20 27.60;c071 10.30 17.40;c003 12.60 18.00;c070 4.10 17.50;c002 13.50 19.20,30.42\r\nY6P1E,2RTW,Living room,6,6,Yes,The smiling person opened the desk drawer.  The person took out a pair of scissors and put them on the shelf by the desk.,cabinet;desk;table,A person is opening a cabinet door and takes out scissors and places them on a desk.,c009 19.20 24.70;c113 2.00 7.60,30.50\r\n001YG,2RTW,Bedroom,6,6,Yes,A person sits at a desk in the living room. The person laughs as they pick up a bag of groceries from under the desk.,bag;chair;groceries;table,\"A person is sitting at adesk they pick up a bag and then they get up;The person is sitting at the computer desk and bends over to pick up the garbage, which he sits on his lap, and then gets up carrying the garbage.\",c023 9.00 16.40;c011 0.00 29.30;c154 25.00 30.80;c020 12.70 32.00;c149 0.00 30.80;c059 0.00 32.00,30.62\r\nGK08Z,OUKK,Home Office / Study (A room in a house used for work),7,7,Yes,a person goes into the home office and opens the door and sits the box in the closet with the vacuum,box;closet;door,\"A person is opening a closet, putting a box inside, then closing the closet.\",c006 12.90 22.40;c008 1.90 9.60;c040 0.00 15.20;c042 8.20 15.30;c113 1.90 9.60;c112 12.30 22.70;c141 1.50 10.60,24.79\r\n4021D,XXN8,Home Office / Study (A room in a house used for work),5,7,No,\"A person stands in the bathroom, drinking a cup of coffee. The person sets the cup down on a table and walks out, closing the door.\",coffee;cup;door;glass;table,\"A person is standing in front of a table, drinking coffee from a glass. The person then sets the glass down on the table, leaves the room, and closes the door.\",c006 23.50 31.10;c106 0.00 24.60;c154 21.10 27.40,31.12\r\nUXET8,YMXV,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,Person is throwing towels into a bag. They open the door and put the bag on a table.,bag;door;table;towel,\"A person puts a towel in a bag. They open the door, then pick up their bag off the table.\",c008 8.30 15.40;c020 0.00 32.00;c034 1.70 9.80;c021 0.00 32.00;c036 2.90 8.00;c009 14.00 20.00;c033 0.00 7.70,30.62\r\nV2DAA,4OHY,Living room,7,7,Yes,A person sneezes while eating an apple sitting on a chair in their living room. They put a pillow behind their back and continue eating.,chair;food;pillow,A person is sitting in a chair eating. The person sneezes and then grabs a pillow.;Person sitting in a chair while eating some food then put a pillow in the chair.,c059 0.00 30.00;c076 14.70 20.10;c153 7.60 13.40;c156 0.00 30.00;c061 0.00 3.90;c077 14.10 23.20,29.50\r\nQNUIU,ZAWX,Home Office / Study (A room in a house used for work),5,4,Yes,\"A person stands over a desk, looking at their homework. The person takes the homework and throws it in the air, the pages scattering everywhere.\",floor;homework;paper;table,A person walks over to a table and looks through homework. They then throw the homework on the floor.;A person walks over to a table and flips through some papers. The person then picks up the stack of papers and throws it on the floor.,c116 16.60 31.00;c115 17.20 25.90;c117 17.20 22.90;c126 16.60 31.00;c012 16.00 22.10,30.21\r\n9GS13,P6LJ,Laundry room,6,6,Yes,The person walks into the laundry room with a bag of dirty clothes.  The person dumps the clothes in the washer.  The person then washes hands in the sink.  The person sits for a bit in the laundry room.  The person then takes the garment bag and leaves.,bag;chair;clothes;dishwasher;hand;sink;towel,\"A person puts clothes in a dishwasher then washes hands  and sits down and dries hands with a towel then stands, picks up bag and leaves.;A person walks into the kitchen carrying a bag of clothes and puts them into the dishwasher, then washes up at the sink, dries her hands and sits down.\",c003 7.20 20.50;c139 21.50 57.50;c154 67.70 74.00;c020 1.50 24.70;c021 6.50 12.40;c002 7.20 14.30;c151 54.20 64.00;c001 7.20 20.10;c033 53.10 71.30;c005 4.90 22.40;c034 66.20 71.30;c035 53.10 58.60,76.96\r\nG4KE3,P6LJ,Kitchen,6,6,Yes,A person is holding a laptop in the laundry room. They smile and place the laptop into an open cabinet.,box;cabinet;shelf,The person grabs a box walks back and forth looking for a place to sit the box and then reaches up on the top shef and puts it up there.;A person carries a box through the kitchen and places it in the cabinet.,c040 0.00 23.20;c042 16.90 24.00;c081 16.80 24.90;c043 0.60 15.90,26.42\r\nG87XG,P6LJ,Kitchen,6,6,Yes,A person runs into the laundry room while holding a sandwich. The person laughs and sits down in a chair.,book;chair;counter;table;woman,a woman running in a kitchen and sitting down with a book.;The person runs into the kitchen holding a book. They sit in a chair. They then get up and place the book on the counter.,c154 16.60 21.40;c059 7.30 12.50;c150 1.60 6.70;c151 7.30 12.40;c011 8.70 21.10;c026 2.80 22.10;c028 18.00 22.50,22.33\r\nTRHB9,DBGJ,Laundry room,6,7,Yes,A person is walking while holding a towel. They put the towel down and put on shoes.,dryer;seat;shoe;towel,\"A person is entering a laundry room, putting a towel on a dryer, and sitting down and putting shoes on.\",c034 2.10 9.10;c056 3.70 16.90;c151 2.10 8.30;c054 6.80 21.20;c033 0.00 7.10;c055 4.70 38.50;c154 1.70 6.70;c053 5.10 13.40,40.75\r\nXPZZL,9Y7F,Bedroom,5,5,Yes,\"A person is sitting and doing their homework. Then, standing, the person reaches up and begins taking books off a shelf.\",book;chair;homework;paper;shelf;table,The person is doing homework at a disk while sitting in a chair. He then searches through a book shelf.,c145 0.00 23.40;c154 19.20 25.60;c014 0.00 23.50;c082 24.00 33.00;c059 0.00 22.70,32.08\r\nINA5N,KQI6,Dining room,6,6,Yes,\"One person washes the window and shelf, and another walks through the room with a broom.\",broom;closet/cabinet;curtain;rag;shelf;towel;window,a person walks over and pushes a curtain to the side and starts to clean a window while another person walks by with a broom;A person holding a towel pushes apart some curtains.  Another person walks around waving a broom.  The first person is dusting with the towel.,c098 13.20 24.00;c082 3.30 14.60;c091 7.90 12.60;c033 1.80 20.90;c114 12.20 31.00,33.04\r\nVTEWM,YRJD,Bedroom,6,6,Yes,\"A person tidies up their bed, straightening the sheets and fluffing the pillow. The action reveals a book under the sheets, and the person gives a short, surprised laugh. The person then sits on the edge of the bed and opens the book, continuing their forgotten homework.\",bed;blanket;book;paper;pillow,\"A person walks over to a bed and moves a blanket and pillow, then picks up a book and looks at it, then walks off.;A person walked over to a bed and started to climb in. The person was about to get under the blanket, when the person found a book. The person sat on the edge of the bed flipping through the book for awhile before standing up and walking away.\",c154 36.20 41.50;c115 18.70 27.10;c077 12.00 20.60;c135 1.00 6.80;c030 10.60 16.70;c151 1.20 13.70;c117 12.00 22.20;c079 12.30 25.40;c026 15.70 36.50;c025 34.10 39.70;c073 6.00 16.00;c032 21.20 39.90;c027 20.30 29.40,45.92\r\n4JSK6,YRJD,Bedroom,6,6,Yes,\"A person awakens in bed. Still lying in bed, the person turns on the television and begins watching it.\",bed;blanket;book;shoe;television,Person is sitting on bad fixing blanket and watching television with book.,c135 3.60 39.80;c151 4.70 15.30;c154 29.50 38.70;c132 33.20 44.00;c057 3.60 9.70;c071 3.40 30.50;c027 12.40 29.50;c028 12.60 25.00;c055 27.40 35.30;c032 12.40 28.40;c075 4.00 16.80,42.83\r\nK197X,HR43,Kitchen,6,7,Yes,A person is standing at the stove cooking. They turn and watch a broom near the door very intently.,counter;food;pot;stove,A person is standing in a kitchen cooking something in a pot. They turn around and lean against a counter.;A person is cooking food on a stove.,c147 0.00 30.00,29.04\r\n8AZRX,UTMU,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is tidying up a closet by throwing towels in a bag, they they then grab a broom and turn off the light.\",apparel;bag;broom;brush;closet/cabinet;clothes;doorway;hamper;light;wardrobe,\"A person enters a closet and looks through clothes on hangers. They then bend over and begin looking for something down low. The person reaches up and retrieves a piece of clothing from a shelf and then turns and puts it in the hamper. They pick up a hand broom, turn off the light, and exit the closet.;a person goes to the closet and throws some clothes in a bag then grabs a brush\",c098 19.70 34.00;c100 19.50 26.00;c105 28.50 33.80;c021 15.30 21.90;c003 15.30 23.20;c004 0.30 25.30;c001 14.20 22.70;c097 29.80 34.00;c114 0.00 34.00,32.62\r\n0BNML,Z68L,Bedroom,5,7,Yes,Person is sitting on their bed holding a book. Person then stands up and put the book on the bed. They pick up a glass from a side table and then leave the room with the glass in hand.,bed;book;cup;glass;table,\"A person sitting on the bed opens a book and begins to read. They place the book on the bed, pick up a glass of water from the table, and leave.\",c110 26.60 33.60;c135 0.00 26.60;c025 16.40 23.20;c026 0.00 23.80;c027 2.20 9.60;c154 20.90 30.40;c031 25.30 29.80;c028 19.40 24.50;c107 27.90 35.70;c030 23.40 28.90;c032 0.00 24.20,37.79\r\nDP7KP,JVLO,Other,7,7,Yes,One person is throwing their homework while the other is laughing on the phone.,book;floor;homework;paper;phone,\"A person is writing something in a book, throws the book, then another person gets a phone call.\",c019 19.40 31.40;c145 0.00 16.10;c031 12.20 17.20;c152 19.10 34.00;c116 12.10 17.40;c015 17.30 34.00;c115 0.00 17.00;c125 0.00 19.70;c018 16.20 20.80,32.67\r\nE4FN6,Z68L,Bathroom,7,7,Yes,A person is standing by the sink.  A person is watching their towel as it falls off the towel rack.,hands;sink;towel,\"Person is standing in the bathroom washing their hands and touching a towel. Person picks the towel up from the floor, hangs it up, and leaves the room.\",c033 23.20 34.50;c034 29.10 35.00;c037 27.40 34.30;c139 10.00 24.00,33.75\r\nDMANO,6RE8,Bedroom,6,6,Yes,A person in the kitchen is running around while dressing by putting a jacket on. They take a camera out and point it towards a doorknob.,clothes;doorway;jacket;phone,\"A person dresses then plays on their phone while standing in a doorway.;A person is putting on a jacket, then plays on their phone.\",c015 19.60 28.30;c148 0.00 13.90;c000 0.00 14.20;c097 13.10 25.30;c016 13.40 34.00;c001 0.00 7.70,33.42\r\n9QYHQ,9Y7F,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person looks at the camera after walking through the doorway of a room, watching the camera-man as they walk into another room.\",chair;doorway;paper;sofa/couch,A person walks through a doorway. Another person sits on a chair while the other comes back and takes something from the chair;A person is walking into a room while another person sits on a bench the first person comes over to the person sitting on the bench and takes something from the bench,c097 4.10 11.70;c059 11.20 32.00;c123 9.00 32.00,30.58\r\nTXJK7,HR43,Living room,6,7,Yes,A person is fixing a light and then sitting on a blanket drinking wine in a living room.,beverage;bottle;couch;light;sofa;table,\"A person is fixing lights. A person then sits on the sofa, and begins drinking a beverage. The person puts the beverage down and walks away.;A person is fixing some string lights before sitting down on a couch. They grab a bottle and start drinking from it before putting it down on a table.\",c103 0.20 11.90;c151 6.80 15.60;c154 27.80 35.00;c123 7.50 35.00,33.96\r\nT342T,9PLL,Bathroom,6,7,Yes,\"A person is taking medicine and drinking water, then laughing and closing the door of a bathroom.\",cup/glass/bottle;door;medicine;water,A person is standing in a bathroom holding a bottle of medicine. The person opens the bottle and takes some medicine. The person then takes a drink of water and then places the bottle on the counter. The person then closes the door.,c106 17.90 28.90;c129 4.20 11.60;c109 12.10 18.00;c006 26.50 31.20;c128 0.00 17.90;c107 0.00 19.30;c110 0.00 3.50,32.38\r\nTIPUS,HJJ4,Other,4,5,Yes,\"One person grasps a book, then watches something visible in the mirror.\",book;doorway;mirror;shelf,\"A person grabs a book off a shelf.  The person then looks into a mirror on the shelf.;A person is standing in a doorway and looking at a book that they took from a shelf, they then look at themselves in a mirror.\",c030 2.40 11.20;c032 0.90 9.70;c093 7.60 13.50;c096 10.30 18.00;c081 0.00 2.80;c026 0.00 2.70;c082 0.00 3.10,16.75\r\nXSS0J,D0RU,Home Office / Study (A room in a house used for work),5,6,Yes,A person is putting something in their desk. The person opens their laptop.,closet/cabinet;desk;laptop;something,A person opens and looks in a drawer. They then open a laptop while standing.,c048 22.40 31.70;c113 9.20 15.70,31.04\r\nUQVO7,4OHY,Bathroom,6,6,Yes,A person is walking into a closet. They are putting a pillow into a bag and then sneeze.,bag;pillow,A person is putting a pillow into a bag on top of a toilet and starts sneezing while doing this.,c020 8.80 16.40;c077 2.70 16.70;c022 3.90 13.20;c021 3.90 10.10,29.54\r\nS4UF8,TGGT,Closet / Walk-in closet / Spear closet,6,7,Yes,The person enters the walk-in closet and looks in the mirror while drinking a cup of coffee and holding a sweater that needs to be folded.,closet;clothes;cup;door;hoodie;mirror,\"The person walks to a mirror with a cup. The person takes a sip of the cup. The person then flips a hoodie around in their hands, and then moves the closet door back and forth;A person walks into a closet drinking a cup of coffe and holding a sweatshirt they sit the coffee down and unfold the sweatshirt and open the closet door.\",c000 0.00 33.00;c106 3.60 10.90;c008 26.60 32.30;c113 18.80 26.60;c107 0.00 19.80;c112 25.80 33.00,31.71\r\n1YH1Y,ZSRZ,Bedroom,6,7,Yes,\"A person is grasping a bag. They take some clothes and a towel out of the bag, and begin dressing.\",bag;clothes;towel,A person opens a bag and takes some towels and clothes out. They pick up a piece of clothing and put it on.,c034 0.50 8.30;c020 0.00 3.80;c022 2.10 9.10;c000 0.00 5.80;c148 0.00 6.00;c148 7.20 19.50;c033 4.00 8.60;c035 3.50 7.70;c021 0.00 3.30;c023 0.00 22.00;c001 2.30 8.80;c002 6.30 10.90,20.62\r\nHQUHP,XXN8,Recreation room / Man cave,5,7,Yes,\"One person is sitting on a couch wrapped in a blanket and sneezing. Another person walks in holding a book, and turns on a light.\",blanket;book;couch;dog;light;sofa,A person is sitting on a couch Another person enters the room holding a book and turns on the light. A dog jumps on the couch and the first person plays with it as the second person leaves the room.;A person headbanged on a sofa.  Another person ran in holding a book then turned on a light.  A dog then ran in and ruined the video.,c026 5.70 33.00;c104 9.70 16.70;c123 0.00 33.00;c153 0.00 9.90;c032 16.40 22.00;c027 12.80 18.00,31.71\r\nTANH9,40JH,Living room,4,5,Yes,A person is watching a television while another person is smiling at food.,bowl;chair;dish;food;television,Two people are sitting in chairs watching Tv. One person is mixing food in a bowl.,c061 0.00 33.00;c131 15.40 21.20;c132 0.00 33.00;c152 12.40 22.60;c118 0.00 33.00;c059 0.00 33.00,32.38\r\nU77L6,WG9D,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,\"A person walks into the entryway, drinking coffee and carrying a book.\",book;coffee;cup;doorway,A person walks through a doorway while holding a mug and a book. They take a drink from their mug as they are walking.,c106 2.10 7.00;c107 0.00 7.00;c026 0.00 7.00;c097 0.80 7.00,5.50\r\n9GOUI,L4ZP,Stairs,6,6,Yes,\"A person smiles as they eat a sandwich and drink a cup of coffee on the stairs. The person runs up the stairs, leaving their food and drink behind.\",coffee;cup;dish;food;sandwich;stairs,\"A person is sitting on the stairs eating a sandwich and driking coffee, they then run up the stairs.;A person sitting on the stairs takes a bite of a sandwich and drinks some coffee before standing and running up the steps.\",c061 0.00 7.80;c106 3.50 9.50;c065 0.40 6.20;c156 0.30 6.50;c150 12.00 19.90;c154 10.10 16.00;c107 0.00 15.30;c118 0.00 15.30;c119 10.10 15.40,18.75\r\nEBTD6,3H6W,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is sneezing while opening a door, then eating a sandwich and finally running in place in a home office / study.\",dish;door;food;plate;sandwich;table,\"A person is sneezing as they open a door. A person then eats a sandwich. A person is running in place.;person opend the door,sneezed, came near to the laptop table and took the sandwich which was on the table, had the sandwich, kept the remaining sandwich on the table and did some workouts.\",c008 2.50 9.50;c065 14.20 26.20;c068 19.60 25.80;c069 11.40 18.60;c153 2.50 9.40;c009 20.60 26.80;c063 13.00 25.00;c156 15.90 21.70;c119 21.50 26.80;c120 20.70 27.00;c150 21.70 31.90;c118 13.40 24.90;c063 14.20 19.10,31.92\r\n8V97G,L4ZP,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person sits at the bottom of the stairs, tying their shoes. The person stands, and opens a nearby door.\",door;shoe;stair,\"A person tied their shoes, then proceeded to walk out a sliding glass door after they opened it.;The person sitting on the bottom of the stair tied shoes laces get up and walked out of the door.;A person is sitting down putting on some shoes then they get up and walk out the sliding door.\",c154 15.70 21.30;c008 17.90 26.00;c055 0.00 19.60;c097 21.50 27.30;c006 22.40 27.50,26.62\r\nWSS0V,OUKK,Dining room,7,7,Yes,The person grasps at a table and then opens a bag of chips.,bag;chair;food;table,A person sitting in a chair begins opening a bag of chips on a table.,c061 5.00 11.00;c021 5.60 11.00;c063 4.90 11.00;c020 4.90 11.00;c059 0.00 11.00;c011 0.00 11.00,10.12\r\nJJ7M6,8IOD,Kitchen,6,6,Yes,A person is cooking on the stove and then throwing food in the refrigerator,food;groceries;refrigerator;spoon;stove,A person standing at a stove and stirring something with a large spoon and turned the stove off. then this person picked up a bag of oranges and put them in the fridge.;A person is cooking on the stove. A person takes groceries and puts them in the refrigerator.,c142 25.90 31.00;c143 19.10 26.60;c147 0.00 16.30;c130 20.20 30.80;c062 20.00 30.70;c063 16.10 21.40;c061 17.10 25.50,30.29\r\nMI0UK,HJJ4,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is tidying the shoes by the door.  The person is throwing a pillow on the chair for the desk.,chair;floor;pillow;shoes,A person organizes the shoes next to the door. They then pick up the pillow from the floor and put it on the chair.,c077 4.90 10.90;c079 4.80 10.20;c080 5.80 11.00;c154 4.90 10.00;c127 0.00 7.90,10.08\r\nD0Q6H,ZAWX,Stairs,5,2,Yes,A person is taking some shoes from their closet. They sit at a nearby table and begin putting on their shoes.,floor;shoe;table,A person takes puts on some shoes while sitting on a stair.,c125 6.30 32.00;c056 4.40 11.60;c055 7.50 32.00;c151 5.50 11.00;c151 4.30 32.00,30.58\r\nL3Z0M,ECB2,Bathroom,6,6,Yes,A person is washing their hands at a sink in a bathroom. The person is smiling. The person takes a washcloth out of a box and dries their hands. The person turns off the bathroom light.,hand;light;sink;towel,A person is washing their hands in a sink while smiling. They dry their hands with a towel and turn off the light.,c139 0.00 9.60;c105 11.90 16.00;c152 0.00 16.00;c035 6.90 16.00;c034 11.10 16.00,15.17\r\n1IPYC,ZAWX,Entryway (A hall that is generally located at the entrance of a house),3,4,Yes,A person is closing a book and walking through the doorway.,book;doorway,\"A person standing while reading a book, then closes it and walks from one room to another room while looking around.\",c025 3.50 9.10;c026 0.00 34.00;c032 0.00 8.00;c097 17.40 34.00;c115 0.00 34.00,33.08\r\nF3A3T,HR43,Living room,5,6,Yes,A smiling person sits on a pillow in their living room eating a sandwich from a box.,box;food;pillow;sandwich;sofa,A person sits on a sofa and eats a sandwich.;A person sits on a pillow while eating a sandwich from a box.,c065 10.60 26.50;c156 10.60 26.50;c123 3.00 32.00;c076 0.00 3.90;c154 28.40 32.00;c063 7.30 13.30;c067 7.10 32.00;c061 7.40 32.00;c044 7.30 32.00;c068 28.80 32.00;c043 6.80 12.10;c040 0.40 32.00;c154 0.00 6.20;c151 0.00 6.10;c063 7.90 32.00,31.42\r\nDFJ3N,C7O9,Kitchen,6,6,Yes,A person is drinking water from a glass and puts a bag of groceries on the table. The person then begins cooking on the stove.,bag;cup;food;glass;groceries;stove;table;water,\"A person drinks from a glass, and then prepares food on a stove.\",c009 11.90 19.60;c106 1.70 12.10;c147 0.00 30.60;c020 0.00 13.80;c063 23.60 31.00;c022 9.30 15.60,29.58\r\nKS0FF,YMXV,Living room,5,6,Yes,A person is tidying up their desk and then leaves their laptop on the floor.,chair;desk;floor;laptop;table,\"A person is sitting in a chair, infront of a desk with a laptop. Person starts cleaning the exterior of their laptop, then lays laptop on the floor.\",c011 0.00 23.90;c154 19.60 27.90;c059 0.00 25.30;c014 4.00 24.30;c125 24.40 32.00;c047 11.00 30.20,30.96\r\n5V8WH,9PLL,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,A person runs closer holding their phone while laughing after they just walked directly into a closed door.,door;phone,A person walks through a doorway while talking on a phone.,c019 0.00 32.00;c008 10.70 16.90;c097 0.70 6.60;c015 0.00 32.00;c152 2.20 14.70,31.42\r\nROOLO,9PLL,Bedroom,6,7,Yes,A person is sitting next to a light.  A person is sneezing.  Then a person is leaning back against a pillow.,fan;floor;ground;light;pillow,\"A person sits on the ground, leans against a pillow, and sneezes. The person then adjusts the pillow while continuing to sit on the ground. There is a fan and light next to him on the ground.\",c151 0.00 6.60;c153 5.60 12.70;c125 1.50 33.00,31.79\r\nDW4YF,UTMU,Home Office / Study (A room in a house used for work),6,7,No,A person is drinking a cup of coffee. They begin grasping for a nearby back pillow before getting some work done.,chair;coffee;cup;glass;pillow;table,Person is sitting at desk drinking cup of coffee. They grab a pillow and put it behind their back and continue working.,c106 2.10 8.10;c077 7.40 19.20;c014 15.50 29.00;c079 8.60 14.20;c059 0.00 29.00,27.92\r\nOJ4IE,D0RU,Living room,6,7,Yes,First person is watching videos on laptop and laughing. Another person is leaving room and holding clothes and shoes.,clothes;door;laptop;shoes;table;video,\"A person is sitting at a desk watching a video on a laptop and laughing. Another person walks to a door while holding clothes and shoes. The 2nd person opens the door, and leaves.\",c052 0.00 31.00;c149 0.00 19.40;c000 15.60 26.90;c011 0.00 31.00;c008 16.90 25.40;c097 21.20 26.90;c051 0.00 31.00,30.50\r\nUANDB,3H6W,Laundry room,7,7,Yes,A person is washing a cabinet and then laughing while reading a book in a laundry room.,book;cabinet;drawer;napkin;table,\"The person wips the drawer with a napkin. The person sits down and starts reading a book, laughing.\",c026 14.00 26.00;c029 15.20 26.00;c032 14.10 27.00;c149 15.70 27.00;c154 20.60 27.00;c027 13.90 18.80;c114 0.10 12.70;c151 14.80 20.20;c013 2.50 11.60;c025 21.10 26.60,26.33\r\nFIV2P,LTAC,Stairs,5,5,Yes,A person is throwing food in a bag and smiling out the window.,bag;food;shelf;window,A person is putting small items into a bag. The person then places the bag on a windowsill and looks out the window.,c092 14.20 32.00;c081 14.50 19.40;c022 14.50 19.40;c020 0.00 19.60,31.04\r\nGLOMM,WG9D,Closet / Walk-in closet / Spear closet,4,4,Yes,The person is closing the wardrobe and dressing by the bed.,bed;closet;clothes;door;jacket;wardrobe,\"A person opens a wardrobe and peeks inside. The person then closes the wardrobe, picks up a jacket from the bed, and puts the jacket on.;Opens the closet then picks up his jacket and puts it on.\",c148 2.30 12.00;c113 0.00 4.00;c112 0.20 4.80;c002 1.20 12.00;c008 0.00 5.10;c000 1.10 12.00;c006 0.40 4.90,11.21\r\n119X3,P6LJ,Kitchen,6,6,Yes,The person is fixing the shelf that is near the doorway of the pantry while smiling.,doorway;glass;hair;medicine;phone/camera;shelf;stove;vacuum,A person is walking through a kitchen the stop at the doorway fix their hair then they lean into the doorway.;The person was putting something into a closet or pantry.;A person walks toward a doorway in the kitchen and peers outside while arranging something on a shelf.,c144 6.70 12.20;c087 10.70 14.70;c015 11.20 15.70,34.71\r\nJ3KT5,HJJ4,Bathroom,4,7,Yes,The person is cleaning the sink and starts pouring cleanser down the drain. They then start grasping a cloth and clean the glass on the mirror.,cleanser;mirror;sink;window,A person puts cleaner in the bathroom sink and wipes down the mirror,c095 7.60 20.00;c091 8.20 20.00,18.62\r\nJO6GB,9PLL,Living room,6,7,Yes,A person is seen dressing in front of their wardrobe. They then open their bag and start putting clothes into it.,bag;clothes;jacket;mirror;towel,\"A person is pulling a shirt right side out in front of a mirror and putting it on, then they turn around and put clothes into a backpack.;A person puts on a jacket and looks in the mirror. Then they get a towel and put it in a bag.\",c021 37.60 43.00;c000 35.20 43.00;c002 34.80 43.00;c148 0.00 35.00;c096 16.50 35.40;c035 34.80 39.40;c020 0.60 8.00;c034 38.60 43.00;c033 37.10 42.60;c023 0.00 4.80;c022 39.10 43.00,42.50\r\nX1XOL,9PLL,Stairs,6,7,Yes,\"A person is sitting on the stairs with a book in their lap, playing on their laptop. The person closes their laptop and stands up.\",book;laptop,\"A person is sitting on the stairs working on a laptop. The person closes the laptop, picks up a book and walks away.\",c046 18.90 26.90;c154 22.40 31.00;c052 0.70 25.00;c026 21.80 29.90;c051 0.10 24.50,31.62\r\nREOES,DXDI,Dining room,6,7,Yes,A person is sitting in a chair reading a book. They take out a camera and take a selfie while smiling.,book;camera;chair;phone;picture;table,\"someone sitting at a table and reading a book, then taking a selfie;A person is sitting at a table reading a book. A person then puts the book down and takes a picture of themselves.\",c015 15.70 26.00;c059 0.00 26.00;c027 0.00 15.90;c009 11.90 17.30;c087 16.60 26.00;c011 0.00 26.00;c032 0.00 16.60;c028 11.60 17.80;c016 16.10 26.00;c026 0.00 15.40;c152 15.20 26.00;c018 15.40 21.30,25.38\r\n0S9KN,ADN3,Home Office / Study (A room in a house used for work),5,7,Yes,A person sits at a desk in their study while grasping a pillow.  They drop the pillow on the ground and watch it as they leave the room.,chair;pillow;table,\"A person sits down in a chair in a home office and then hugs a pillow, then gets up and throws the pillow onto the floor and walks out.\",c076 0.00 16.70;c077 12.70 16.80;c078 0.50 15.90;c080 12.70 16.80;c011 0.00 15.60;c151 0.00 3.40;c059 0.00 15.50,19.17\r\nRSWXX,TGGT,Garage,4,6,Yes,\"A person is standing in the doorway to the garage, smiling as they look at a picture.\",doorway;picture,A person is holding a picture.  A person then looks wistfully at the picture.,,33.79\r\nIHVOF,CGE9,Living room,5,7,Yes,A person is lying on a sofa and holding a cup of coffee.,coffee;cup;dish;glass;sofa,\"Person laying on sofa, person holding a glass, person drinking (coffee) from glass\",c107 0.00 35.00;c122 0.00 35.00;c106 0.00 35.00;c118 3.60 15.40,33.75\r\n2U903,BYF9,Bedroom,4,3,Yes,A person is watching the mirror and standing on a blanket,mirror,The person is looking in the mirror and adjusts their hair and clothes. Next the person climbs on top of the bed and looks back into the mirror.,c096 0.00 13.00,26.00\r\nA75XI,UD06,Living room,5,7,Yes,\"A person is in a living room watching a video on their phone, they then take a drink of water from a glass.\",couch;cup;glass;phone;sofa;table;water,A person is sitting on a couch typing on their phone and drinking water out of a glass.;a person plays with their phone on the sofa and drinks from a glass,c109 27.20 33.00;c106 13.40 32.50;c016 0.00 33.00;c107 9.60 16.50;c110 9.90 17.60;c015 0.00 33.00;c123 0.00 33.00;c009 27.90 33.00,31.75\r\n18IDK,KFGP,Bedroom,6,,No,\"A person is lying in bed sleeping. The person awakens, reaches for a nearby book, opens it and starts reading.\",bed;book;sofa/couch,\"A person is lying in bed, he gets up and starts reading a book.\",c032 14.60 30.00;c134 0.00 30.00;c026 14.90 30.00;c122 0.00 30.00,28.54\r\nXY4C7,8718,Living room,5,5,Yes,A person is sitting on a pillow while wearing only a towel.  The person is working on homework.,book;couch;glasses;pillow;sofa,A person sitting on a couch opening up a paperback book and reading it and turning pages.;A person is on a couch in dim lighting reading a book on a specified subject with a pillow resting behind.,c032 0.00 31.00;c123 0.00 31.00;c027 0.00 8.80;c026 0.00 31.00,30.04\r\nCFDXI,PO5L,Bedroom,5,6,Yes,A person is in their bedroom sitting at a table covered in dishes eating an apple. They stand and begin tidying up.,apple;bed;dish;food;table,A person is eating an apple from a plate on a table.,c118 20.00 27.90;c119 16.60 25.80;c120 20.40 28.00;c009 11.60 19.20;c156 3.70 17.30;c154 14.30 27.10;c062 3.80 14.90;c063 1.50 18.70;c135 0.00 24.40;c061 1.80 18.60,27.08\r\nTGDWN,P6LJ,Kitchen,6,7,Yes,A person is tidying up some dishes. They take hold of the door and start closing it while smiling.,box;dish;door,\"A person places some dishes on the table.;A person takes some dishes out of a box, then closes a door.\",c006 21.40 29.20;c120 8.10 23.90;c119 19.60 24.00,30.54\r\n0C5IQ,R1OT,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,A person is grasping a towel and standing on a chair.,chair;doorway;towel,A person walks in through the doorway and grabs a towel and throws it around their should. They stand on a chair and switch the towel to the other shoulder a couple times.;A person walks into a room and stands on a chair with a towel.,c060 1.30 21.00;c033 1.00 21.00;c035 0.00 5.40;c097 0.00 3.80;c034 0.00 6.00;c034 8.30 14.60,19.96\r\nVLZ40,DXDI,Stairs,1,6,Yes,Person removes shoes and begins walking up the stairs grasping the rails but begins to struggle.  Person ends up sneezing and accidentally touching the picture on the wall before making it all the way upstairs.,clothes;floor;knees;shoe;stair;wall,\"Person sitting on stairs, takes off shoes, walks up stair, stops touches knee and wall, then continues to walk up stairs into another room.\",c054 0.30 11.10;c154 5.00 11.30;c057 0.00 9.30;c003 2.50 9.00;c125 0.00 9.10,22.92\r\nL8WFE,40JH,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,One person walks into the hall and throws a pillow at another person who is near the doorway eating.,blanket;dish;doorway;food;pillow;plate,A person is holding a blanket  then throws it on the ground while another person is eating from a plate.;A person carries a pillow and talks to another a person. The other person eats some food off a plate,c156 0.00 34.00;c118 0.00 34.00;c061 0.00 34.00;c076 0.00 5.80;c080 1.10 6.30,32.71\r\nQ9BRQ,9PLL,Entryway (A hall that is generally located at the entrance of a house),1,6,Yes,\"A person is lying in the entryway holing a bag, then starts dressing in more clothes.\",bag;clothes;floor;shirt,A person is sitting on the floor with a bag. A person then puts on a shirt.;A person is laying on the floor holding a bag. They stand up and pull a shirt out of the bag then put it on.,c020 0.00 16.00;c154 9.00 17.00;c022 9.40 15.90;c148 15.50 32.00;c124 0.00 13.40;c000 11.00 21.10,31.29\r\nAS7SG,JVLO,Recreation room / Man cave,6,7,Yes,One person walks in the doorway and eats a sandwich as another person tries to fix a laptop.,doorway;food;laptop;sandwich,\"Someone is walking through a door, then stands in the doorway eating a sandwich as another person plays on a laptop.\",c065 18.80 26.40;c047 16.70 27.70;c048 22.10 31.00;c097 1.80 22.30;c156 2.70 24.00;c065 3.60 26.30;c067 0.00 27.50;c061 0.00 26.80;c049 18.00 23.90,30.33\r\nSTSYP,I2IV,Dining room,6,7,Yes,A person walks into the dining room holding a camera.  The person puts the camera on the shelf and closes the window.,camera;shelf;window,The person walked into the dining room.  The person put a camera on a shelf.  The person then opened the window.,,20.17\r\nOAC4U,BYF9,Bedroom,6,7,Yes,A person walks into the bedroom and throws down the towel they have around them. They start getting dress in front of the desk while watching Tv when they notice they left the window open.,clothes;desk;doorway;floor;towel,\"A person is walking through a doorway with a towel on their shoulders, they then throw the towel on the floor and put a sweater on.\",c148 17.90 41.30;c126 7.80 12.50;c002 11.50 17.30;c155 17.90 35.40;c097 1.10 7.00;c003 7.20 12.70;c001 3.70 12.50;c000 0.00 12.30,43.54\r\n72VJD,KFGP,Living room,4,7,Yes,\"In the living room, a person is eating and tidying a sofa while holding a phone to their ear.\",blanket;clothes;food;phone;sofa,\"A person is talking on the phone while eating and grabbing a blanket.;A person stands in the living room eating some food and talking on the phone.  They reach over and grab a blanket from the sofa and begin folding it, then place it back on the sofa.\",c015 0.00 8.30;c019 0.00 32.00;c070 4.30 32.00;c075 0.00 32.00;c073 4.10 9.60;c001 14.80 21.20;c001 25.50 30.90,31.42\r\n6RQHP,PO5L,Kitchen,6,7,Yes,A person is cooking at a stove in a kitchen. The person then goes to the sink and washes some dishes. The person then sits in a chair.,chair;dish;food;stove,A person is cooking on the stove and sits in a chair.,c059 23.50 33.30;c147 3.10 11.90;c151 22.40 32.00;c121 13.40 21.10,37.42\r\nR390Z,KQI6,Kitchen,3,3,Yes,a person eats while smiling. another person takes a picture with their phone camera while wearing shoes.,camera;clothes;dish;food;phone;picture;shoe;sofa/couch,\"a woman is sitting on the couch eating something while a man stands up from the couch, takes a pair of shoes, picks up his shoes and proceeds to take a photo of him with his shoes\",c087 24.70 31.70;c015 19.20 32.00;c151 14.00 19.10;c016 20.10 27.40;c056 10.50 16.30;c156 0.00 32.00;c061 0.00 32.00;c055 28.40 32.00;c002 11.70 16.30;c154 8.30 12.90;c018 20.60 32.00;c062 0.00 13.80;c123 0.00 32.00;c118 0.00 32.00,30.71\r\nUJJ6Z,4I2W,Dining room,5,7,Yes,A person is closing a bottle of medicine.  Then a person is opening a book that was on a table.,book;cup/glass/bottle;medicine;table,\"A person is putting the top on a medicine bottle, then sets it on a table, picks up a book from the table and begins looking through it.\",c027 6.80 16.60;c032 7.30 35.00;c026 7.00 35.00;c030 7.00 12.00;c009 5.00 10.00;c128 0.00 10.50;c109 4.10 10.50,33.79\r\nRJU3H,LTAC,Dining room,7,,Yes,A person sits in a chair in the dining room holding a coffee cup. They begin working on a crossword puzzle.,book;chair;coffee;cup;mouth;paper;pen;table,\"Person sitting, holding paper drinking from cup multiple times, puts down cup, picks up pen, writes in paper, folds paper, touch mouth and continue writing.;A person is reading homework while sipping coffee and making faces like the coffee is hot, and then marking something on the homework.\",c059 0.00 32.00;c107 0.00 17.00;c145 0.00 32.00;c106 0.00 15.50;c115 0.00 32.00;c009 11.00 17.30;c032 0.00 32.00;c109 0.00 17.10;c011 0.00 32.00;c026 0.00 32.00,30.58\r\nDSXEN,9Y7F,Kitchen,7,7,Yes,A person is opening a cabinet and takes out some food. They start walking to a table and make a sandwich while sitting down.,cabinet;doorway;food;sandwich;shoes;table,A person takes food from a cabinet and walks it to the kitchen table.,c009 14.30 22.40;c061 7.90 32.00;c066 19.10 32.00;c151 13.50 19.00;c068 20.10 32.00;c097 10.10 16.40;c011 12.60 32.00;c063 0.00 10.50;c062 8.50 20.40,30.92\r\nYKVYR,4I61,Garage,5,7,Yes,Person closes the door to the garage and walks toward the garbage bag on the floor.  He then takes the garbage page and leave the garage.,bag;door,\"A person is closing the garage door. A person is holding a trash bag, and takes the bag outside.\",c020 5.00 21.50;c023 9.10 15.10,26.50\r\nDQ1TU,YMXV,Bedroom,5,5,Yes,One person takes a book from a chair and lies down with a pillow.,backpack;bag;bed;book;pillow;table,\"A person picks up a book from the desk, lays in bed with a pillow, and starts reading the book.;A person picks up a book from a desk. The person lays down on a bed, moves a backpack, and snuggles a pillow.  The person looks at the book.\",c078 10.50 33.00;c030 0.10 20.70;c032 0.40 33.00;c151 6.80 15.10;c134 12.40 23.40;c076 12.00 17.00;c079 10.10 15.60;c022 4.20 9.00;c025 4.50 9.30;c117 5.80 10.80;c026 0.70 33.00;c027 17.00 26.10;c135 9.00 17.80,31.88\r\n4G00A,HR43,Bedroom,6,7,Yes,\"A person is pouring themselves a glass of water and then they begin drinking from that glass of water. After they finish, they pick up two items on the floor; some shoes and a broom.\",bed;broom;cup;floor;glass;pitcher;shoes;water,\"A person is sitting on a bed and pouring some water into a glass, they drink some then pick up a broom and some shoes.\",c127 22.00 28.00;c107 0.00 25.50;c106 1.90 25.30;c098 24.30 34.00;c135 0.00 34.00;c109 0.00 25.70;c108 0.00 32.00;c109 18.90 25.50;c100 24.30 31.10;c108 0.00 5.90,32.83\r\nTMH6L,XXN8,Other,5,7,Yes,A person holds a glass while watching themselves in a mirror.,cup;glass;mirror,\"A person has decided to crouch while holding a mirror, staring at the mirror while also holding a glass in front a wall.\",c107 0.00 32.00;c154 18.20 32.00;c093 0.00 32.00;c096 0.00 26.00,31.21\r\nKTDXB,KFGP,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person walks into the entryway, grasping a pile of clothes and a pillow. The person opens the door and leaves the home.\",clothes;door;pillow,Person walks out holding items through their door including a pillow,c000 1.20 23.80;c001 2.60 26.30;c006 15.90 26.10;c008 2.70 19.90;c076 1.80 28.00;c141 12.20 19.30;c097 15.70 24.90,27.88\r\nPLH9O,Z755,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is opening a book. Another person is standing in a doorway.,book;closet;doorway,Person A is reading a book while Person B is in a closet cleaning the shelves.;A person is standing reading a book and another person is in a closet cleaning a shelf.,c026 0.00 8.00;c032 0.00 8.00,6.54\r\nJK4G2,HJJ4,Recreation room / Man cave,6,7,Yes,\"A person stands in the recreation room, holding a box. The person looks in the mirror and laughs.\",box;mirror,A person is standing in front of a mirror and holding a box and laughing.,c094 0.00 7.10;c096 1.60 7.40;c040 1.00 8.70;c149 1.00 9.90,9.83\r\n75GKF,ENC8,Kitchen,6,7,Yes,\"A person is cooking on the stove, then the person begins tidying up the sink.\",dish;food;pot;sink;stove;table,A person is standing in the kitchen. They are stirring something in a pot on the stove and then go to the sink. They then walk out of the kitchen.,c147 0.00 20.20;c119 15.20 20.90;c012 19.00 38.80,47.08\r\nRYQI0,D0RU,Bedroom,4,7,Yes,\"A person in the bedroom is holding a picture of their family. In the other hand, they are holding a pillow and begin throwing in toward the door.\",bed;covers;picture;pillow,Person sitting on bed pointing and talking at a picture and yelling at it. Then picks up a pillow and toss it to the other side of the room.;A person points to people in a photograph while sitting on the bed. They throw a pillow on the floor.,c076 9.30 24.50;c080 18.50 23.90;c084 0.00 23.20;c135 5.10 24.30;c088 0.00 22.80,30.92\r\nR6H5P,5LWB,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person grasping a large pile of clothes is standing in the entryway. A second person grasping a stack of dishes closes the door turns around and runs into the first person and clothes go everywhere.,chair;clothes;dish;door,\"A person throws a lot of clothes into a chair and falls down. A second person walks through the door holding dishes.;One person is holding laundry and another person holding dishes comes in the door and knocks the person that is holding laundry over, the person holding laundry falls into a chair then gets up smiling.\",c118 3.50 9.10;c097 0.00 6.10;c152 7.00 13.40;c006 2.70 12.10;c000 0.00 9.90;c118 0.00 15.00;c003 4.00 10.00,14.46\r\nATWCT,BYF9,Stairs,5,7,Yes,The person is sitting at the foot of the stairs putting on their shoes. They walk towards the door and turn off the light as they are leaving.,clothes;door;light;shoe,\"A person is sitting on the stairs putting on shoes, then opens a door.\",c008 17.90 30.00;c055 0.00 16.40;c154 13.20 18.50;c148 0.00 17.80;c141 18.60 28.40;c097 27.40 30.00;c141 25.10 29.40,29.33\r\n5TG5P,CCI9,Living room,6,6,Yes,Person A is running down the hallway with a pillow and encounters Person B smiling while carrying a bag of groceries.,bag;blanket;pillow;towel,a person holding a pillow walks in circles around another person holding a bag;A person walks around another person in a towel holding a pillow.,c076 0.00 32.00;c152 0.30 10.00;c070 0.00 32.00;c020 0.00 32.00;c149 1.10 29.30,31.29\r\n05WY6,2Q9D,Living room,6,7,Yes,\"A person is undressing on their sofa, then the person starts sneezing in a towel.\",clothes;shirt blanket dog;sofa;towel,a person sits on the couch and takes off their sweater then sneezes in a towel;A person is sitting on a couch and they are taking off their shirt they pick up a blanket and sneeze into it.,c123 0.00 31.00;c153 15.90 28.40;c155 3.30 20.10;c034 27.60 31.00;c033 27.60 31.00;c035 27.60 31.00,29.50\r\nXVHGO,28B0,Bedroom,7,5,Yes,A person takes a camera off of a bed. They stand over towards a window and watch the outdoors through the camera lens.,bed;camera;phone;picture;window,A person picks up a camera and sits on a bed.  The person takes pictures through a window and puts the camera down.,c015 2.20 41.00;c135 10.50 41.00;c092 10.70 39.80;c154 33.60 41.00;c151 8.70 15.20;c087 12.20 35.40;c016 6.70 35.20;c017 34.00 39.00;c018 4.10 10.70,39.50\r\nG752J,D0RU,Bedroom,3,5,Yes,A person is lying on a bed and playing with the light on a nightstand while another person is opening the door and exciting the bedroom.,bed;doorway;light;something,A person walks through a door while holding something. Another person is sitting on the bed and they are playing with the light.;A person walks through a doorway.  Another person is flicking the lights on and off while on the bed.  The other person smiles.,c105 17.60 22.70;c104 19.50 25.70;c135 8.10 19.50;c097 0.00 5.90;c152 15.90 23.00,30.83\r\nETQYM,D0RU,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is lying with the pillow and sneezing in a mirror.,floor;mirror;pillow,\"There is a person laying on the floor with a pillow underneath them.  The same person sits up and starts sneezing.  That person then grabs a small handheld mirror, looks into it and then stands up and walks way\",c078 0.00 19.60;c093 25.80 41.00;c096 25.60 37.80;c153 15.20 24.40;c124 0.00 20.20;c125 16.60 36.00;c146 0.00 20.20;c154 33.20 40.20;c076 32.60 41.00,39.96\r\nUNXLF,UTMU,Kitchen,4,7,Yes,A person in the kitchen is dressing by putting some clothes on. They begin playing with a towel by grasping it and twirling it in circles.,clothes;jacket;towel,\"A person walks into the room, puts on a jacket, zips it up and then takes a towel from the stove, swings it around and then folds it.\",c033 18.00 34.00;c037 29.10 34.00;c148 1.70 12.50;c001 3.80 12.50;c035 17.70 22.40;c002 1.00 6.00,33.38\r\nAGJH7,Q4IF,Bedroom,6,7,Yes,\"A person smiles and takes some clothes from a box, then closes it.\",box;clothes;doorway,\"Person opening a box, looking through it, taking some clothes out, and then leaves the room.\",c044 20.60 28.10;c000 14.70 24.60;c001 10.90 17.50;c002 25.70 34.00;c097 28.20 33.50;c039 23.70 32.20;c041 0.50 8.40,32.96\r\nF1MWB,Z68L,Bedroom,6,7,Yes,\"Person is walking to box to put groceries in there, then starts closing box and starts sneezing.\",bed;box;groceries;grocery;light,Person walk to the bed put something in  a box the sneeze then go over to turn off light;A person places a box on the bed while sneezing.,c130 4.70 16.10;c039 10.60 30.30;c153 14.10 24.00;c105 33.90 38.00,36.96\r\nVG94P,JVLO,Living room,6,5,Yes,\"A person sits on a chair drinking coffee, when they start laughing at something another person said.\",chair;cup;glass;water,A person is sitting in a chair drinking a glass of water. Then another person walks in and touches them on the shoulder and they both laugh.;A person is sitting on a chair drinking from a cup.  Another person walks in and pats him on the back. They both smile and laugh.,c106 0.00 12.60;c107 0.00 33.00;c059 0.00 33.00;c149 18.00 33.00;c152 12.30 33.00,32.12\r\n5X6S7,4OHY,Home Office / Study (A room in a house used for work),6,6,Yes,A person is in a home office grasping a camera phone while sitting down laughing at their desk.,chair;desk;keyboard;laptop;phone;table,A person is sitting in a chair smiling while playing with a laptop and phone.;A person sat at a desk and picked up a cell phone. The person pressed the screen several times and slid a finger along the screen to look for something on the phone.,c015 2.60 30.20;c016 7.40 30.50;c051 0.00 34.00;c152 0.00 14.30;c059 0.00 34.00;c052 0.00 34.00;c149 1.60 7.90;c011 0.00 34.00;c018 5.10 34.00;c014 0.00 34.00,32.92\r\nUBT4U,YMXV,Home Office / Study (A room in a house used for work),6,5,Yes,A person is opening the desk and fixing the homework.,chair;desk;drawer;table,\"A person is in a bedroom sitting on a chair by a desk. The person opens one of the desk drawers, rearranges some items in the drawer, then closes the drawer.;A person opens a desk drawer and tidies the inside. They close the drawer carefully.\",c012 0.00 32.00;c011 0.00 32.00;c059 0.00 32.00,31.21\r\nKQKNE,HR43,Bedroom,6,7,Yes,Person starts undressing than dressing again then looks at box with vacuum cleaner.,clothes;vacuum,A person is undressing and undressing and taking a vacuum out of a box,c138 20.80 27.00;c155 0.00 5.80;c148 4.70 16.30,26.12\r\nGY70Y,KFGP,Living room,3,7,Yes,A person is drinking water on the sofa. The person begins pouring it absently onto the floor as the person watches television.,chair;cup;sofa;television;water,\"A person sitting in a living room and watching TV while drinking from a cup, the person then tilts the cup to the side and pours water on the floor, then looks at the cup.\",c106 9.60 23.00;c123 0.00 33.00;c132 0.00 33.00;c059 0.00 33.00;c107 0.00 33.00,32.25\r\nZGHLY,PKND,Bedroom,6,6,Yes,A person stands in a doorway holding a laptop. They open the laptop and begin laughing uncontrollably before collapsing on the bed holding their side.,bed;doorway;laptop,\"A person is looking at a computer and laughing, they walk into a room,  they lay down on a bed with the computer, still laughing\",c134 10.10 32.00;c051 0.00 23.00;c149 4.40 32.00;c048 0.00 5.70;c046 22.90 32.00;c152 4.40 32.00,30.54\r\n9NRLA,0KZ7,Laundry room,6,7,Yes,\"A person is working in a laundry room washing clothes. They stop to eat some food, and drop a piece in the doorway. They pick it up and leave.\",clothes;doorway;dryer;floor;food;machine;something,\"A person is operating a dryer.  The person then closes the dryer.  The person then consumes some food and picks something off the floor.;A person puts clothes into a washing machine, closes the lid, turns on the machine, then picks up food and eats it while walking out of the room, pausing to pick up something on the way.\",c061 13.60 24.00;c001 0.00 3.10;c156 13.60 19.70;c001 21.40 25.70;c005 0.00 16.70;c127 20.90 26.80;c097 22.20 28.00,26.96\r\nCM5SK,I2IV,Recreation room / Man cave,7,7,Yes,\"A person is sneezing as the person stands in front of the refrigerator. Then, taking a book from the table, the person sits on the sofa and begins watching TV.\",book;refrigerator;sofa;table;television;tv,\"A person opens a fridge, sneezes, then walks over and sits on a sofa and begins reading a book.;A person opens the refrigerator, sneezes and then goes to start reading a book and turns on the TV.\",c142 1.10 7.10;c027 11.50 17.00;c153 0.60 5.60;c123 8.80 24.00;c151 7.60 13.20;c143 0.00 5.10;c117 8.50 14.60;c032 9.40 17.50;c115 8.90 22.90;c132 21.10 24.00,23.46\r\nFYR3P,BYF9,Bedroom,6,7,Yes,\"A person undresses and then grabs a towel. They stop in front of a mirror to look at themself, and then the person laughs.\",bed;chair;clothes;jacket;mirror;towel,A person takes their jacket off in front of a mirror and sets the jacket on a chair. The person then takes a towel from the bed and walks away.;Person trying on clothes looking in the mirror pick towel off the bed.,c035 9.50 17.80;c096 13.80 20.00;c155 0.00 10.00;c000 13.10 20.00;c001 6.00 11.10;c002 11.30 18.60,19.25\r\nRCD08,YA10,Laundry room,7,7,Yes,A person smiling at a mirror starts waving a towel around and starts laughing.,blanket;clothes;mirror;towel,A person is looking into a mirror and then waving a towel around while smiling.,c036 24.20 30.20;c094 1.30 8.70;c152 1.30 13.00;c073 6.70 12.70;c001 24.80 30.10;c000 7.20 29.50,31.00\r\nYCST7,WG9D,Kitchen,5,7,Yes,A person opens the pantry door and takes a towel from the cabinet.,cabinet;towel,The person is standing in the kitchen facing a cupboard. The person opens the cupboard and removes a towel.,c113 0.00 4.00;c035 0.70 5.00;c112 1.50 5.00,4.38\r\nB57IW,4OHY,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person turns on the light. They are opening a door and start watching a phone while holding a vacuum.,door;light;phone;vacuum,\"A person turns on a light, opens a door, takes a phone out of his pocket and looks at it and also grabs a vacuum.\",c137 19.00 31.00;c008 4.20 14.10;c104 0.00 7.10;c015 12.60 31.00;c018 11.10 17.10;c016 13.70 29.90;c138 18.80 24.80,30.08\r\nQD4GS,YMXV,Bedroom,5,3,Yes,\"A person was standing in the hallway with a glass of water, they drank some of the water and grabbed a towel from the doorway.\",cup;doorway;glass;towel;water,\"A person is drinking some water from a glass, they then stand in the doorway and pick up a towel and begin to wipe themselves down.\",c106 0.00 20.20;c107 0.00 20.70;c033 14.80 32.00;c038 16.40 32.00;c035 16.50 21.80;c109 14.00 19.90,31.08\r\nHU409,C7O9,Laundry room,6,7,Yes,\"A person is tidying up with a broom, then the person pulls the case off of a pillow and puts it in the washing machine.\",broom;clothes;floor;pillow,\"A person tidies up the floor with a broom, then bends over and picks up a pillow.  They take the cover off the pillow then puts the pillow away.\",c077 23.10 31.00;c079 15.60 22.50;c098 0.00 20.10;c102 0.00 19.60;c005 23.30 28.50;c080 26.70 31.00;c127 0.00 19.50,29.88\r\nZC8L5,YMXV,Bedroom,4,7,Yes,A person is seen sitting on their bed watching TV. They throw off their blanket and walk through the doorway.,blanket;chair;clothes;floor;television;tv,\"Person sitting on chair turns to watch tv. Then picks up clothes and throws it to the other room. Person then stands up, bends down, picks up clothes, stands up, bends down again to touch clothes.;A person is sitting in a chair watching television. They throw a some clothes on the floor.\",c059 29.00 32.00;c132 29.00 32.00;c074 17.20 24.20;c154 22.10 28.20;c132 0.00 20.00;c003 17.70 23.00;c126 16.90 23.10,30.96\r\nMH601,XXN8,Hallway,7,6,Yes,\"A person, laughing, runs into the dining room carrying a pile of clothes. The person throws the pile down onto the table.\",clothes;doorway;table,\"A person is laughing while holding clothes, throws them, and walks away.\",c009 2.80 7.70;c000 0.00 7.10;c001 2.80 7.90;c149 0.00 6.30;c152 0.00 11.30;c003 2.00 8.00;c097 0.00 6.30,30.83\r\nDVTAR,5LWB,Other,6,6,Yes,A person is sitting on a box. Another person is laughing while holding a sandwich.,box;bread;chair;food;sandwich;table,A person sitting in a box.Another person walks past and takes a bite of a sandwich.The other person in the box picks up a table.;A person is sitting in a box and holding a stool while another person walks around eating a sandwich,c065 10.90 17.30;c059 0.00 4.10;c156 10.90 17.30,21.25\r\nS7RXC,YMXV,Bedroom,4,3,Yes,A person runs into their hallway holding a bag. They turn on a light and open a medicine bottle.,bag;bed;box;closet/cabinet;doorway;drawer;light;medicine;phone,\"A person walks into a room carrying a backpack, they turn on the light, they place the backpack on the bed, and the person opens a container. The person needs scissors so they get them from the desk.;person walks into room carrying bag then plays with phone and gets something out of drawer\",c104 3.90 12.30;c021 11.20 31.00;c024 5.00 13.40;c128 18.70 31.00;c040 8.20 31.00;c041 9.00 16.30;c020 0.00 12.00;c097 0.00 4.90;c113 16.90 21.80,30.38\r\n58R8A,OUKK,Bathroom,6,7,Yes,A person is sitting on the side of the tub putting on their shoes.  The person picks up a towel laying in the doorway and turns off the light.,doorway;floor;light;shoe;towel,\"A person sits down to to put on their shoes, then picks up a towel, turns out the light and carries the towel out of the room.\",c033 11.70 17.80;c105 11.50 17.90;c097 11.60 18.30;c154 11.70 17.40;c035 9.30 17.20;c055 3.10 16.00;c151 0.10 7.10;c127 9.70 15.60,19.46\r\nCNSMI,ENC8,Kitchen,7,7,Yes,\"A person is in a kitchen washing the stove with a rag, they then take off their shoes and throw them in the corner of the room.\",floor;shoe;stove;towel,A person is cleaning up a stovetop then proceeds to take off a pair of shoes when done.,c033 17.60 28.30;c034 19.50 29.10;c038 19.30 30.20;c058 29.90 39.60;c057 30.80 37.70;c053 25.60 34.80;c126 29.70 36.00,41.62\r\n70SEI,XXN8,Kitchen,6,7,Yes,A person is sitting at the table drinking soda. Then the person walks to the sink and begins doing the dishes.,dish;glass;sink;table,This person is drinking a soda from a can while sitting in a chair. Then they get up and go to the sink to wash their hands.,c121 15.10 35.00;c154 10.10 16.90;c119 15.80 34.00;c011 0.00 14.80;c118 15.20 27.70;c119 22.10 27.10,38.08\r\n9SIZS,9Y7F,Bedroom,7,5,Yes,One person is washing the bed while the other is holding the bag.,bag;bed;blanket;clothes;floor,\"A person collects a pile of clothes on a bed and throws them on the floor. They then fluff up the blanket on the bed while another person stands with a bag and watches.;A person is tidying up some clothes on their bed and making their bed, another person stands nearby holding a bag and watching.\",c075 12.30 31.00;c000 10.30 17.00;c001 10.30 17.00;c004 10.30 17.00;c126 10.30 17.00;c071 13.90 31.00,29.67\r\nEUOT1,HR43,Kitchen,4,3,Yes,A smiling person walks into a kitchen and turns on a light and does their homework before leaving.,counter;doorway;homework;light;paper,A person walks into a room reading some homework and leans upon the counter before leaving again.;a person flips on a light and looks at some homework,c115 2.30 36.60;c104 0.50 4.90;c097 0.00 4.70,38.79\r\nIM3I0,3531,Living room,6,7,Yes,\"One person stands wrapped in a blanket, opens a bottle of medicine, then sits down.\",blanket;floor;medicine,A person is wrapped up in a blanket and then opens medicine and sits down on the floor.;A person wearing a blanket over their head opens a bottle of medicine. They sit on the floor and drink the medicine.,c072 0.00 32.00;c128 0.50 15.10;c151 14.80 22.60;c125 17.70 32.00;c128 0.00 4.50;c129 19.90 26.90,31.42\r\nLR6RZ,KQI6,Hallway,4,7,Yes,A person is running to the stove and cooking food.,doorway;food;stove,A person runs into the kitchen and starts making food at the stove.,c147 7.40 31.00;c150 2.80 11.40;c097 4.30 10.20,29.75\r\nGM4C2,2Q7U,Living room,6,6,Yes,A person is pouring medicine into a cup while working on their laptop.,glass;laptop;medicine,A person is sitting on a couch typing on a laptop. The person then pours some medicine and sets it on the table.,,29.96\r\n7SUTI,1OHU,Dining room,6,7,Yes,One person opens the window and starts sneezing as another person is in a chair smiling and holding a camera.,blinds;camera;chair;phone;table;window,\"A person is sitting in a chair at the table, looking at their camera. Another person walks into the room and opens the blinds in the window.;A person is taking a picture of themself on their phone. Another person looks out the window.\",c059 0.00 32.00;c090 9.20 25.90;c015 0.00 32.00;c011 0.00 32.00;c092 18.90 29.50;c016 0.00 32.00,31.46\r\nUFQK1,0KZ7,Kitchen,7,7,Yes,A person is cooking at a stove then washes a dish before putting it in a cabinet.,cabinet;dish;door;food;pot;shelf;sink;stove;water,\"A person cooks some food in a pot. They take a plate and wash it in the sink. They then put it away;A person stands at a stove cooking, then grabs a dish, washes it in the sink, walks over to a cabinet and opens it then puts the dish on a shelf in a cabinet.  They close the cabinet door.\",c112 21.70 28.00;c118 4.80 11.20;c113 20.90 25.80;c119 17.60 26.90;c121 7.60 21.20;c147 0.00 8.50;c120 4.90 12.00;c141 20.90 28.00;c006 24.20 28.00;c008 20.60 25.50;c081 21.40 27.70,26.96\r\nUB1QP,JVLO,Living room,6,7,Yes,A person is smiling while holding a phone while a other person is smiling at a towel.,clothes;doorway;phone;towel,A person is  talking on the phone and smiling and dancing and another person wraps themself in a blanket or towel.,c015 0.00 2.50;c019 0.00 22.20;c152 23.00 31.10;c034 18.60 29.10;c033 18.80 26.10;c097 19.40 25.10;c149 8.50 19.20;c148 20.10 32.00,31.25\r\n12VVC,KFGP,Laundry room,5,7,Yes,\"A person is standing on a chair in the laundry room, trying to reach a book on a high shelf.  The person sneezes and grabs the book, gets off the chair and puts it on the table.\",book;cabinet;chair;shelf;table,\"A person stands on a chair and reaches above a cabinet to get a book.;A person takes a book off a shelf, sneezes and places the book on a table.\",c026 10.10 20.90;c028 16.80 21.00;c030 9.60 14.90;c060 0.00 16.70,20.25\r\nW1AG7,D0RU,Home Office / Study (A room in a house used for work),7,6,Yes,A person is grasping their shoes while laughing as they sit at a desk.,chair;desk;shoe;table,person sits in a chair in front of a desk puts slippers on and is laughing,c011 9.30 38.00;c055 10.00 16.60;c149 0.00 36.30;c151 9.50 15.50;c059 8.40 38.00,37.00\r\nLOH86,ZAWX,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,I person is putting their camera on a table and tidying up their books.,book;camera;doorway;phone;table,A person walks from a doorway to a table while holding a camera.  The person plays with the camera while walking.  The person then puts the camera down and tidies books on the table.;A person is walking in through the doorway while playing with a camera in their hand. They set it down on a table and tidy up the books on the table.,c025 9.20 16.10;c015 0.00 11.30;c009 5.70 11.90;c026 6.80 30.00;c017 0.00 12.60;c012 8.30 30.00;c016 0.00 10.80;c097 0.00 4.60;c028 12.40 17.80;c028 14.10 22.30,28.96\r\nEQQ2T,YA10,Laundry room,6,7,Yes,A person took clothes out of the washer and put them in the dryer. The person put the dryer sheets back on the shelf and started smiling while walking to the trash can to throw away the lint from the lint-trap.,clothes;dryer;shelf;washer,Someone is grabbing clothes from a washer and puts them into the dryer and grabs something out of the dryer and throws it away.,c001 2.70 8.30;c003 6.40 12.00;c152 26.60 32.70;c002 0.10 6.20;c000 1.20 19.40;c005 1.70 33.00;c004 1.10 28.10;c081 16.30 21.80,32.17\r\n8W31Y,QB52,Bedroom,5,5,Yes,The person was on the sofa snuggling under the blanket with no clothes on while eating their favorite kind of candy. The person was having a good time.,bed;blanket;food;table,A person is laying in bed eating food off a table.;A person is lying in bed under a blanket and nibbling on some kind of food item.,c156 2.30 7.50;c134 0.00 32.00;c061 2.10 6.60;c072 0.00 32.00;c063 0.50 7.20,30.58\r\nZI2XH,T7C3,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person begins tidying a shelf, then proceeds by leaving a pillow as they leave the room\",book;closet/cabinet;desk;shelf,A person is putting a book on the shelf.;A person is holding books and then putting on shelf.,c081 0.00 25.20;c082 0.00 25.00;c026 0.00 24.70;c028 12.10 17.60;c028 14.20 21.10;c114 0.00 14.40,30.71\r\nGD9BQ,KQI6,Living room,4,7,Yes,One person is standing by the door watching television with a glass in hand when another runs in with a camera.,camer;cup;door;glass;phone;television,\"A person stands in the doorway holding a glass and looking at a camera. A television is on in the background.  A person runs in and takes the camera from them, then runs out the door.\",c107 0.00 32.00;c015 18.70 28.70;c150 18.70 28.70;c097 23.30 28.70;c016 0.00 23.80,30.88\r\nJMXK5,P6LJ,Bedroom,3,6,Yes,A person walks through a door way and grabs a picture off the wall. The person grasps this picture tightly and then takes a drink of water.,card;cup;dish;glass;photo;picture;wall,\"a person grabs a photo off the wall and smiles then drinks coffee;A woman turns around to get a cup of water, and realizes that a person left a note on the door. A woman then takes a sip and smiles.\",c088 4.20 14.00;c118 3.50 24.10;c106 16.70 24.20;c154 0.00 3.50;c152 13.20 20.20;c083 5.60 13.70;c084 11.60 26.60,26.54\r\nZ3AGB,W4E6,Closet / Walk-in closet / Spear closet,4,7,Yes,\"The person turned the doorknob, opened the door to the closet and turned on the light.  The person put folded clothes on the shelf.  The person sneezed from the dust in the closet.\",closet/cabinet;clothes;door;light;shelf,Person opens his closet door to put some cloths away. He sneezes a few times before stepping away from the closet.,c081 11.20 24.70;c141 1.40 7.60;c105 27.40 33.10;c000 7.20 23.50;c153 21.70 29.30;c082 10.10 23.30;c008 0.70 8.90;c104 4.30 10.50;c001 7.70 25.50;c114 10.30 37.00;c113 1.80 8.50;c097 10.50 16.80;c002 8.30 16.80;c004 8.30 16.80,36.08\r\nG8E71,HR43,Bathroom,6,7,Yes,\"A person is undressing and taking off shoes, then fixing a doorknob in a bathroom.\",blanket;clothes;door knob;doorknob;doorway;shoe,A person is undressing in a bathroom.  The person begins jiggling the door handle.;There is a person that takes off their jacket and shoes. That same person then fidgets with the doorknob.,c140 10.80 38.60;c056 4.50 12.00;c155 0.00 7.50;c074 1.50 7.90;c057 4.30 9.90;c053 6.30 13.60;c001 1.90 7.70;c058 4.70 12.00;c141 15.10 40.00;c097 37.00 40.00,39.33\r\nY3YE1,DJ17,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is leaving food on the floor while another person is smiling at a box.,box;floor;food;television,A person is holding a box standing on a bed. Another person puts cookies on the floor in front of the bed.,c040 2.20 33.00;c062 5.90 16.40;c126 5.50 12.10;c152 2.00 8.70;c132 16.90 29.90;c127 4.10 18.70,32.04\r\nJKZG5,WG9D,Dining room,6,5,Yes,\"One person walks in holding a bottle of medicine, then stands and drinks it before putting it on the table.\",cup;glass;medicine;table,\"A person pours liquid into a cup, drinks it, and places it on a table.\",c106 1.40 8.70;c129 0.50 8.60;c009 4.40 9.00;c107 0.00 9.00,8.04\r\nFVSB0,XXN8,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person holding clothes puts them in the wardrobe.  While standing and smiling, they begin to vacuum the closet floor.\",closet;clothes;doorknob;floor;vacuum;wardrobe,A person opens a cabinet and turns on the light.  The person then vacuums the cabinet after adjusting some things.,c113 0.00 5.00;c137 10.20 34.20;c152 9.00 17.70;c001 12.50 21.30;c114 11.40 20.10;c141 0.00 6.40,34.50\r\nAQIV7,T7C3,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,Person is standing by door wrapped in blanket looking in mirror and sneezing.,blanket;doorway;hand;mirror;towel,A person is wearing a towel like a cape and looking at themselves in a hand held mirror. They turn and sneeze then wipe their right hand over the towel. They sneeze again and do the same hand cleansing move. The sneeze a third time but the movie ends before they can clean up.;A person looks into a mirror while wrapped in a blanket. The person sneezes.,c070 0.00 39.00;c093 0.00 39.00;c096 0.00 12.70;c153 4.20 9.90,37.62\r\nGP49W,HR43,Bedroom,2,7,Yes,Person lying on the bed under a blanket. They smile as they look at a picture.,bed;blanket;paper;picture,\"PERSON IS LAYING IN BED LOOKING AT A PICTURE, THE PERSON STANDS UP AND WALKS AWAY;A person is lying bed while looking at a picture and holding onto a blanket.\",c072 0.00 36.00;c134 0.00 36.00;c084 0.00 36.00;c152 0.00 13.50;c154 31.30 36.00;c088 0.00 35.10;c115 0.00 36.00,35.38\r\nWIWZ1,Z755,Stairs,6,4,Yes,\"The person was running up the stairs with the dishes in their arms. At the top of the flight, their foot caught the lip of the stairs, and they began to lose their balance. Grasping for the desk at the top of the stairs, the person caught themselves before falling or breaking any dishes.\",cup;mug;stairs;steps,\"A person runs up some stairs with a mug and stumbles;A person holding a cup, walks up some stairs but nearly trips on the last step.\",,3.62\r\nRHU79,PKND,Living room,6,7,Yes,The person is fixing the television. The other person is putting a door mat under the doorway in the garage.,blanket;doorway;floor;television,A person turns on a TV while sitting on the floor. Another person is outside adjusting a blanket.;Person sitting in front of a television turn it with the remote while sitting on the floor.,c132 9.20 32.00;c125 0.00 32.00;c127 3.50 32.00,30.58\r\nR1DCJ,BYF9,Recreation room / Man cave,6,7,Yes,Person is taking cup of coffee from shelf and throwing candy on floor.,coffee;cup;floor;phone;shelf,A person takes a coffee mug off a shelf and throws a phone onto the floor.;A person takes a cup off a table.,c106 12.40 18.00;c126 10.40 15.70;c110 0.80 10.20;c107 0.80 18.00,16.58\r\nQLOW7,EIO2,Kitchen,6,6,Yes,A person is watching the stove while standing in the pantry with a book.,book;food;stove,\"Person standing reading paper then looks at stove and back at paper multiple times, folds arm and watch stove.\",c026 0.00 32.00;c032 0.00 4.40;c147 0.00 32.00;c115 0.00 32.00,31.42\r\nWJEVU,P6LJ,Recreation room / Man cave,6,6,Yes,A person is drinking a soda while doing their homework. Then the person reaches to turn the light off before putting their homework aside and snuggling on the couch.,blanket;book;cup;floor;glass;homework;light;paper;sofa,\"A person walks in and sits on a sofa.  They take a drink from a glass, put it back down, then looks at some homework.  They put the homework on the floor, then turn out the lights and snuggle with a blanket.\",c116 3.60 14.10;c145 26.60 48.60;c154 50.00 60.00;c106 7.70 30.60;c105 44.40 51.00;c117 27.20 36.20;c151 0.10 8.80;c106 15.40 23.00;c123 4.50 55.40;c071 55.00 59.00;c115 1.80 9.10;c073 48.20 52.20;c070 48.50 59.00;c028 4.20 10.60;c110 7.40 13.80;c074 53.80 59.00;c072 47.90 57.20;c126 40.20 46.00,59.00\r\nE0MK4,WG9D,Dining room,6,7,Yes,\"A person is eating a sandwich while sitting at a dining room table, they then take a book out their bag and start to read.\",bag;book;chair;food;sandwich;table,This person is sitting at their kitchen table eating a plate of food. They also pull out a book from their bag and begin reading.,c027 10.40 17.90;c065 0.90 10.00;c009 8.20 14.40;c156 0.70 9.40;c067 0.00 18.00;c059 0.00 18.00;c030 5.30 13.80;c068 5.10 10.10;c069 0.00 5.30;c011 0.00 18.00;c062 5.00 11.70,17.25\r\n1ZEJJ,PO5L,Hallway,7,7,Yes,\"A person is holding a book and sneezing, then they look in a mirror and start laughing.\",book;mirror;picture,\"A person holding a book walks into a hallway, then sneezes and looks into a mirror and points and laughs, then walks away.\",c094 9.70 18.80;c096 7.90 18.90;c026 1.70 21.30;c153 2.60 11.60;c149 8.70 18.90;c152 15.80 21.90;c085 10.40 18.60,21.42\r\n92FFB,UTMU,Entryway (A hall that is generally located at the entrance of a house),3,5,Yes,\"A person walks into the entryway, carrying a pillow. The person puts the pillow into a cabinet, and then leaves.\",cabinet;door;pillow;shelf;stairs,\"{};A person comes down the stairs carrying a pillow.  They then open a cabinet door and put the pillow inside, before closing the door and leaving.\",c076 0.00 9.90;c077 2.60 13.10;c112 6.00 16.90;c113 2.00 10.80;c006 7.30 16.40;c081 6.40 12.50,20.17\r\nPE41X,HR43,Kitchen,7,7,Yes,A person is in their kitchen sitting on a chair and holding a broom. The person stands and starting tidying the kitchen.,broom;chair;floor,A person is sitting on a chair holding a broom then they get up and start sweeping,c098 0.00 7.40;c154 15.50 21.70;c127 28.10 31.00;c059 28.10 31.00;c102 28.10 31.00,30.04\r\nXEASG,AC0W,Bathroom,5,6,Yes,A person is dressing in their bathroom and drinking coffee. The person grabs a towel and leaves the bathroom.,clothes;coffee;cup;dish;doorway;glass;jacket;towel,\"A person puts a sweater on and drinks from a glass.;A person is dressing themselves in front of a sink, they then drink a cup of coffee and grab a towel from the door.\",c033 26.20 34.00;c106 20.70 26.10;c148 4.50 23.40;c118 29.10 34.00;c000 1.10 24.00;c035 26.20 34.00;c097 26.40 33.00;c001 0.00 5.60,32.58\r\nDKV1Z,XXN8,Recreation room / Man cave,6,7,Yes,A person is eating and watching television.  Another person is grasping the cabinet and looking for a board game.,apple;cabinet;dog;floor;food;shelf;television;tv,\"The person is sitting and eating an apple in front of the television. Another person is sitting in front of a cabinet, tidying the contents, next to a dog.\",c114 0.00 33.00;c132 4.90 31.60;c156 0.00 33.00;c125 0.00 33.00;c061 0.00 33.00;c082 0.00 33.00,31.83\r\nFKZQN,5LWB,Bedroom,6,1,No,One person is holding a glass and smiling as another person walks up to a shelf and starts dressing.,bed;clothes;desk;glass;jacket;shelf;winter wear,\"The person is standing in a room. The person walks over to a desk, takes a jacket off the desk, and puts it on.;Picked up the clothes from the desk and started dressing\",c082 9.60 17.30;c152 0.00 31.50;c148 11.60 24.60;c154 0.00 32.00;c002 9.30 14.40;c001 16.20 28.10;c001 8.80 15.10;c135 0.00 32.00;c000 9.90 19.90,30.50\r\nWOOYQ,YMXV,Entryway (A hall that is generally located at the entrance of a house),5,3,No,A person holding a towel walks through the doorway and begins laughing. The run back out the doorway and come back with the broom they had forgotten.,broom;clothes;door;towel,Person is sitting down and stands up. Person takes a clothing item from a rack and walks out the door. Person walks back in and takes a broom and then walks out again.,c097 5.60 11.70;c099 14.40 22.50;c154 0.00 3.90;c033 1.30 6.30;c033 4.70 16.60;c008 4.00 9.60;c000 1.30 6.30;c000 4.70 16.60;c098 17.20 33.00;c141 4.70 11.90;c002 1.70 10.40;c100 16.50 23.80;c035 1.80 10.70,31.75\r\nJV524,ZSRZ,Closet / Walk-in closet / Spear closet,7,7,Yes,\"One person puts down a pair of shoes, then holds the doorknob and starts sneezing.\",box;closet/cabinet;door;shoe,\"A person opens a door and sneezes.;This person sets a pair of shoes on a box, closes a door, then sneezes.\",c053 0.00 4.80;c054 0.90 5.70;c153 3.80 9.00;c008 2.20 7.40;c112 2.40 7.70,8.46\r\n8L3OJ,8718,Living room,3,7,Yes,A person is holding a book. The person puts down the book and picks up a towel.,book;couch;sofa;towel,\"A person is opening and closing a book, before sitting down, folding a towel and smiling.;Person comes in the room with an open book, sits down on the couch, and the grabs a towel and folds it.\",,28.12\r\nWIPMO,T7C3,Laundry room,7,6,No,A person is smiling while looking at a picture album on a table.  The person starts closing the album.,book;picture,\"A person is standing in the laundry room, turning the pages of a book that is sitting on a washing machine. The person closes the book.\",c025 38.40 43.00;c088 0.00 43.00;c029 0.00 43.00;c032 0.00 43.00,42.00\r\nJJON5,BYF9,Kitchen,6,5,Yes,\"A person is seen standing on the stairs with some groceries. The person goes to the refrigerator to put away groceries and almost drops something, but grasps it just in time.\",bag;doorway;food;fridge;groceries;refrigerator,A person is holding a bag while standing on the stairs. The person walks through a doorway to the kitchen and opens the refrigerator. The person begins to take groceries out of the bag and put them in the refrigerator.;A person walks down the stairs holding a bag and places food into the fridge.,c020 0.00 29.00;c062 7.60 29.00;c130 0.00 29.00;c143 6.70 14.70;c097 3.00 8.30,27.79\r\n8QCBP,D0RU,Living room,7,7,Yes,\"A person is lying on the couch with their head propped on a pillow. Then the person reaches for a bag at their feet, opens it and pulls out some clothes.\",bag;clothes;head;pillow;sofa,A person lays of a sofa before placing clothes into a bag.,c001 17.20 32.00;c122 0.00 15.00;c021 14.20 20.90;c146 8.40 14.80;c002 15.90 23.20;c002 19.20 26.60;c023 11.80 17.90;c020 13.60 20.10,30.88\r\n9VW14,6RE8,Home Office / Study (A room in a house used for work),,5,Yes,Person is eating and sneezing while playing games next to glass shelf.,chair;computer;food;table,A person is eating food while sitting in a chair. The person begins to sneeze.;a person sits in a chair eating something and sneezes three times,c156 0.00 33.00;c153 7.10 24.30;c059 0.00 33.00;c061 0.00 33.00;c011 0.00 33.00,31.75\r\n8BMZQ,KFGP,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is tidying the entryway with a broom. The person finds a pile of dirty dishes, picks them up, then walks out of the room with them.\",broom;dish;floor,\"A person swept the floor with a broom. The person picked up a stack of dishes, while still holding the broom, and walked away.\",c098 0.00 24.00;c118 21.20 28.00;c102 0.00 23.00;c120 22.90 29.00;c127 0.00 22.80,27.92\r\nMVPQF,YA10,Kitchen,6,7,Yes,\"One person throws some clothes on a shelf, then starts to sneeze while eating in front of the refrigerator.\",bag;cabinet;clothes;cupboard door;food;plate;sandwich;shelf,\"The person takes what appears to be a couple of empty bags, squashes them up, opens a cupboard and puts the bags on the bottom shelf.  The person walks away from the cupboard, leaving the door open and walks toward the refrigerator.  The person picks up a sandwich from the countertop next to the refrigerator and proceeds to eat it.;A person puts clothes on a shelf. The person sneezes, picks up a sandwich, and eats it.\",c081 1.90 10.40;c153 10.90 16.20;c113 0.10 4.90;c022 1.70 10.70;c156 14.30 33.00;c065 14.30 33.00;c001 0.90 11.90;c067 15.30 32.70;c069 14.50 19.60;c063 13.50 18.50;c061 14.80 32.20,32.29\r\n2DDGF,KFGP,Hallway,5,7,Yes,A person is drinking water from a glass. Then the person puts their laptop on a shelf and begins tidying up.,closet;clothes;clothing;coffee;cup;dish;door;floor;laptop;mug;shelf;towel,\"A person drinks coffee and then opens a closet door. The person puts a laptop on a shelf and then grabs a shirt off a doorknob.;Person is drinking from a mug while holding a laptop. The person then proceeds to open the closet door to put away some goods, including a laptop and a piece of clothing.\",c106 0.00 5.30;c002 18.20 26.90;c047 0.00 25.90;c081 18.20 25.90;c008 12.10 21.90;c113 12.10 21.90;c033 30.80 36.00;c035 30.40 35.10;c127 24.30 32.50;c034 30.60 36.00;c118 0.00 36.00;c114 12.50 36.00,34.79\r\n0VKEE,DXDI,Garage,6,7,Yes,A person is smiling while taking food out of a box then they begin sneezing.,box;chair;dish;food,A person sits in a chair and removes a plate of food from a box while sneezing.;Person sitting on a chair opening a box takes a dish out of it began to sneezes with dish in hand.,c061 11.00 29.00;c041 0.00 7.80;c153 11.40 27.60;c118 23.30 29.00;c059 0.00 29.00;c040 0.00 13.20;c042 5.50 14.70;c044 4.40 11.30,28.21\r\nTC3BF,3H6W,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person sits in their home office, eating food and watching television.  They smile and laugh at something on the screen.\",chair;computer;desk;food;something;table;television,\"Person walks over to a desk sit in the chair use the computer then get out of chair and leave the room.;Person coming into the room, sitting at desk to watch television while eating some food, and then putting the food on the desk before leaving the room.\",c156 6.70 22.80;c151 1.10 7.70;c009 18.40 23.60;c149 9.10 15.50;c154 19.50 24.60;c059 0.00 5.40;c132 3.50 22.70;c061 7.10 23.30;c063 6.20 11.00,25.92\r\n98GQH,KFGP,Bathroom,5,7,No,A person is holding a picture. The person throws the picture aside and looks in the mirror.,mirror;paper/notebook;picture,\"A person is standing in the bathroom, looking at a picture.  The person tosses the picture, then looks in the mirror.\",c096 5.50 24.00;c084 0.00 8.10;c088 0.00 7.40;c115 0.00 7.30,22.83\r\nO8VYU,Z68L,Bathroom,6,6,Yes,\"A person is tidying the bathroom, picking up clothes from the floor. The person grabs a pair of shoes from the corner, and leaves.\",basket;clothes;corner;doorway;floor;light;shelf;shoe,\"A person walks in to a bathroom and puts a pair of shoes on the floor under the sink moves a basket out of the way turns and does something by the toilet.The persons bends down picks up the shoes and turns off the light.;Person walks into the bathroom put shoes on the floor, take something off the sink and put it on the shelf.\",c053 1.30 8.20;c056 0.60 8.20;c081 7.00 27.20;c097 0.60 8.00;c105 27.50 33.60;c082 0.90 8.60;c082 9.40 18.20,34.46\r\nUDDTR,Z68L,Bathroom,6,6,Yes,\"A person wrapped in a towel pours a half-filled glass into the sink, then places it on a small table next to the sink. They remove the towel and grab some clothes, beginning to dress themselves.\",clothes;corner;cup;doorway;floor;glass;light;shoes;sink;towel,\"A person enters the bathroom in a towel, dumps out a glass in a sink and drinks what is left inside , then starts putting on clothes;A person walks into the bathroom.  The person then gargles some water then drains the rest.  The person then puts on pants and takes off a towel.  The person then puts on a shirt.\",c106 4.40 10.50;c109 7.90 13.20;c148 37.50 51.10;c107 0.90 13.20;c033 33.00 38.90;c148 13.50 36.70;c034 33.50 39.10;c105 47.70 52.70;c110 0.70 13.20;c001 6.50 13.20;c097 0.00 6.50,53.33\r\nCTOQR,Z68L,Bathroom,6,6,Yes,The person is standing at the sink and washing their hands. They dry their hands on their pants and then start laughing about something. The person moves their hand to twist the doorknob of the bathroom door open. Then the person turns off the light as they leave.,door;hand;jeans;light;mirror;sink;soap;water,\"A person is washing their hands in the bathroom sink. The person shakes their hands off and laughs at their reflection in the mirror.;A person washes their hands at the sink while smiling in the mirror.;The person is washing their hands in the bathroom sink. They turn the sink on, pick up the soap, then lather and rinse their hands. After washing, they shake off their hands then wipe their hands on their jeans. Finally, they turn off the light and exit the bathroom.\",c141 25.30 30.00;c094 14.80 23.00;c152 15.40 21.80;c008 18.80 24.70;c139 0.00 17.90;c105 21.30 25.80;c096 3.90 8.40;c097 20.40 27.80,29.46\r\nHKSI2,XXN8,Bedroom,5,7,Yes,A person is walking to a desk that has a pillow on it.  Then a person is washing the desk.,desk;pillow;table;towel,Person walks over to the desk to clean and wipe it down with a cloth.,c012 1.80 24.00;c080 3.20 10.80;c038 8.00 26.60;c077 4.80 11.20,30.50\r\nNOJK1,YA10,Bedroom,7,6,Yes,A person awakens in a chair and looks around. The person takes their phone from the bed and checks it.,bed;chair;phone,A person awakens on a chair in a bedroom with their feet on the bed. They take a phone from a chair and play with the phone.,c015 24.50 29.00;c016 25.30 33.00;c059 11.70 19.30;c146 4.50 16.40;c018 23.70 29.00,32.29\r\nRWPS8,ZFCJ,Garage,7,7,Yes,A person is washing some shoes then begin to laugh when they see a picture.,clothes;counter;picture;rag;shoe,A person is scrubbing a shoe. They put the shoe on a counter and smile. Then they pick up a picture.;A person is cleaning a pair of shoes. A person then picks up a picture and starts smiling.,c084 20.50 29.00;c085 20.50 29.00;c053 0.00 23.20;c149 20.50 29.00;c152 17.70 24.30;c054 17.80 24.30;c004 0.00 24.20;c088 21.70 29.00;c005 0.00 24.20;c083 21.70 29.00,27.79\r\nQ8TB3,ZSRZ,Living room,6,6,Yes,\"One person sits down with a picture in front of a mirror, then opens up a bottle of medicine and starts sneezing.\",bottle;chair;picture,\"A person is looking at a picture. A person then sits down, and starts sneezing.;A person is looking at a picture. A person then begins sneezing while holding a medicine bottle.\",c084 1.00 9.90;c151 2.80 8.50;c088 1.00 9.90;c153 9.00 15.10;c086 5.50 10.10;c059 3.60 17.00,15.75\r\nMFWQ7,8718,Bathroom,5,7,Yes,\"A person runs into the bathroom, grasping their phone. The person sits in a chair, and begins playing with the phone.\",chair;doorway;phone,A person walked to the bathroom and sat on a chair.  The person then pulled up his pants.  A person then played with his phone.,c059 1.10 30.00;c016 0.00 30.00;c151 0.00 5.50;c097 27.30 30.00;c015 27.30 30.00,29.25\r\nPEKGD,WG9D,Living room,5,7,Yes,A person is holding a bag and throwing clothes by the chair.,bag;chair;clothes;towel,\"The person in a green shirt stands in a room while completely emptying the backpack of clothes, and dropping the clothes on a chair.\",c003 0.00 7.00;c020 0.00 7.00;c036 0.60 6.50,5.50\r\n00MFE,9OK1,Kitchen,6,6,Yes,\"A person in their pantry is drinking a glass of water. They start fixing their hair, and then take a broom and walk out of the pantry door.\",broom;counter;cup;glass;hair;water,\"The person is in the kitchen drinking a glass of water then tidied up her hair a bit,grabs the broom and leaves.;A person is standing at a counter and takes a drink of water.  The person puts the glass on the counter and plays with their hair. The person then takes a broom and walks out of the room.\",c106 0.00 9.30;c107 0.00 9.30;c098 15.30 20.00;c100 14.70 21.50;c144 5.70 18.70,20.54\r\n13IOT,YMXV,Bedroom,4,7,Yes,Person was laughing at something that was on television. Person began sneezing because their sinuses were acting up. Person got up off the couch and looked in the desk drawer to see if there was any sinus medicine was left. There was not.,desk;drawer;television,The person is watching television and laughing. The person starts to cough and proceeds to look through a drawer in a desk.,c131 0.00 8.30;c149 0.00 8.70;c132 0.00 8.80,31.62\r\nIQM7A,CO1W,Bathroom,5,7,Yes,A person is standing in their bathroom washing their hands. They grab their homework and their shoes and leave.,door;hand;homework;shoe;sink;towel,A person washes their hands in the sink then dries them on a towel. They pick up their homework and shoes and leave.;There is a person washing their hands in a sink and dries them with a towel.  That same person then picks up their homework and shoes and leaves the room.,c056 18.70 27.50;c139 0.00 11.60;c006 24.40 31.80;c097 25.50 30.60;c008 23.70 29.80;c035 14.70 22.90,30.88\r\nZYYKH,WG9D,Bathroom,4,7,Yes,\"A person is standing in the bathroom fixing the sink. They close the door, take their phone out of their pocket, and smile.\",door;phone;sink,A person in the bathroom stands up and looks at their phone,c016 3.60 11.00;c154 0.00 6.80;c015 3.20 11.00,9.62\r\nQZY6E,XXN8,Hallway,6,6,Yes,A person is standing on the stairs holding a pillow.  The person snuggles the pillow and throws it on a nearby chair.,chair;pillow,The person walks up the stairs and stops in the middle of the hallway and starts hugging a pillow. The person rocks back and forth hugging the pillow and then throws it down on a chair and walks away.,c078 1.20 22.50;c080 18.40 23.90,27.54\r\nY8M9P,2RTW,Bedroom,6,6,Yes,The person is laughing on the phone while sitting in a chair by the doorway in the home office,chair;phone,\"This person is on the phone, then starts laughing.\",c015 0.00 32.00;c019 0.00 32.00;c059 0.00 32.00;c149 7.00 14.60,31.08\r\nRV11J,T7C3,Living room,7,7,Yes,\"A person stands in the living room, playing with their camera. The person puts their camera away into a bag.\",bag;camera;phone,A person is pacing while holding a camera and looking through the view. They then put the camera into it's bag.,c015 0.00 39.10;c017 33.10 41.00;c022 33.10 41.00;c020 32.30 41.00;c023 31.70 37.10;c016 0.00 34.90,40.29\r\nU45LK,KFGP,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is standing in a closet organizing their wardrobe. As they are leaving, they close the door.\",closet/cabinet;clothes;door;wardrobe,A person is putting clothes away in a wardrobe. They close the wardrobe.,c006 29.30 36.00;c000 23.70 31.90;c113 24.20 30.10;c002 0.00 6.20;c001 1.70 8.80;c114 0.00 24.90;c004 0.00 32.60;c112 27.70 36.00,34.88\r\n40NIM,D0RU,Hallway,5,4,Yes,A person pulls up a chair and grabs a box as the stand on it. As the are holding it the start laughing.,box;chair,A  person laughs as they take a box that is sitting on a chair and walks away.,c043 5.60 18.70;c149 10.00 19.10;c152 13.00 19.30;c040 6.60 17.80,30.83\r\nDSWWV,25TD,Bathroom,6,7,Yes,\"A person puts on their glasses in front of a medicine cabinet with a mirror in their bathroom. They grab a camera and take a selfie using the mirror. They put the camera down, open the cabinet and grab a pill bottle.\",cabinet;medicine;mirror;phone;picture,\"A person stands in front of the mirror. They take their glasses off and pick up their phone. They take a picture of theirselves with the phone and then opens a cabinet and gets out a bottle of medicine.;A person is smiling and looking in a mirror with some glasses on, they take off the glasses and pull out a phone and take a picture then open the cabinet and grab some medicine.\",c094 0.00 2.50;c128 0.00 4.20;c112 0.00 4.00;c015 0.00 2.90;c087 0.00 3.50;c096 0.00 5.80;c015 6.90 14.70;c113 15.00 21.40;c152 0.50 4.90;c017 13.60 19.10;c018 3.00 7.80,21.67\r\nSNUVF,CCI9,Kitchen,5,5,Yes,A person turns on a light in their kitchen and sit at the table. They eat a sandwich and drink a glass of soda.,bench;cup;dish;food;glass;light;picture;plate;sandwich;wall,\"PERSON COMES IN TURNS ON LIGHT, SITS DOWN AND PICKS UP A PLATE WITH A SANDWICH ON IT AND PICKS UP A GLASS, GETS THE SANDWICH OFF THE PLATE AND PUTS PLATE DOWN AND STARTS EATING;A person is touching a picture on a wall. A person then sits down with a sandwich and a cup of water.\",c065 32.70 38.00;c104 0.00 7.40;c151 6.70 13.50;c067 31.90 37.00;c107 16.40 38.00;c156 33.00 38.00;c118 11.20 35.70;c062 26.00 31.10,37.04\r\nCU9RE,QB52,Basement (A room below the ground floor),6,5,Yes,A person is lying on the sofa with a blanket and is snuggling with themselves to get comfortable. Next to the sofa is a low cabinet with a small mirror laying on top.,bed;blanket;glass;water,\"Person is laying in the bed rub eyes, kick feet then pick up a glass drink from the glass;A person is laying in bed under a blanket. They grab a glass of water and take a drink.\",c072 0.00 28.30;c106 24.90 31.00;c134 0.00 31.00,30.25\r\nDH66I,KFGP,Living room,6,6,Yes,A person walks into the living room carrying a box of groceries. The person removes an item and begins eating it.,bag;box;coffee;food;groceries;something,A person carrying a box places it down on a sofa. They remove some food and eat it.,c042 3.50 9.90;c156 16.60 33.00;c061 30.10 33.00;c021 30.10 33.00;c044 30.10 33.00;c020 30.10 33.00;c023 9.40 33.00;c040 1.00 9.20;c063 9.70 18.70,32.04\r\nQEXP4,R1OT,Bedroom,6,7,Yes,A person in the bedroom is sitting on a bed folding a towel and starts washing a mirror.,bed;mirror;towel,While sitting on the bed the person folds a towel then gets up to wipe a mirror.,c135 0.00 13.10;c095 2.10 9.60;c033 7.30 19.40;c038 17.00 24.40;c154 11.80 23.80;c037 0.00 10.90,24.96\r\nWRXI4,T7C3,Laundry room,4,6,Yes,\"A person stands at the window, tapping on the glass. The person laughs and takes a towel from the dryer.\",glass;towel;window,\"This person is tapping on the window and looking out, laughing at the sight. Then the person puts a towel into the washing machine.\",c092 0.00 19.70;c034 27.00 32.00;c149 3.30 25.70;c035 22.30 32.00;c037 23.20 32.00;c033 22.30 32.00;c152 2.90 24.10,31.29\r\nOD1A5,KFGP,Bathroom,6,7,Yes,A person is standing in the bathroom washing their hands.  The person takes a camera out of a box on the back of the toilet and plays with it before putting it back.  The person turns off the light and leaves.,camera;door;hand;light;mirror;picture,\"the person came to bathroom, washed his hands seen in the mirror and then switched off the lights and went out of the room;A person washes their hands and takes a picture of themselves with a camera. That same person then cuts the light off and leaves the room.\",c139 0.10 11.80;c105 28.20 32.70;c087 17.00 23.60;c141 29.10 35.00;c097 30.30 35.00;c008 28.90 34.10;c006 31.00 35.00;c015 12.30 29.40;c096 25.30 29.60,34.46\r\nKEY1O,DLI2,Kitchen,4,6,Yes,A person is in their kitchen holding a glass of coffee and smiling.,cup;dish;glass;tea,someone standing in the kitchen smiling while holding a glass of tea,c107 0.00 35.00;c152 0.90 35.00;c118 0.00 35.00;c120 0.00 4.20,34.38\r\n3A4PE,UTMU,Living room,6,7,Yes,\"A person is vacuuming their living room floor. They sneeze, and lift a chair to vacuum under the chair. They find a ball and throw it to their dog.\",ball;chair;dog;floor;vacuum,\"A person walked into a room, turned on a vacuum cleaners, vacuumed the floor for a few moments, then picked up a ball and threw it to a dog.\",c127 0.00 27.00;c137 0.00 22.60;c153 7.40 16.90,34.92\r\nVMI2D,KFGP,Bathroom,6,7,Yes,A person is leaving the shoes by the sink and dressing in clothes.,clothes;hoodie sweatshirt;shoe,This person placed a pair of tennis shoes on a counter top and pulled a hoodie sweatshirt over their head to wear,c054 1.00 11.40;c148 15.30 36.00;c053 0.00 10.10;c001 9.90 33.80,35.33\r\nBE43L,DXDI,Dining room,6,6,Yes,\"One person walks into the pantry, pours something from a box, then sits and watches out the window.\",bowl;box;chair;closet/cabinet;dish;door;food;groceries;pantry;table;window,\"One person is alone in a dining room. They go to the cabinet to take a bowl out, and then they sit at the table and look out the window;person opens pantry, pours something into a bowl, sits down at table, and looks out a window.\",c009 15.70 24.70;c059 18.20 32.00;c011 19.40 32.00;c044 5.60 19.30;c041 5.40 19.30;c063 5.40 19.70;c113 0.00 4.70;c151 19.00 32.00;c008 0.00 20.40;c062 0.80 22.80;c112 15.30 20.90;c043 0.70 20.10;c061 1.60 23.60;c130 11.20 18.90;c006 14.70 20.60;c040 1.00 18.40;c042 11.90 18.70;c118 2.60 23.30;c141 0.00 3.60,31.50\r\nB9XZX,UO0Z,Kitchen,4,7,Yes,A person is cooking something on their stove. They pull out some butter from the refrigerator and drop it in the pan. They then take out some bottled beverage from a cabinet and drink while they wait on the food.,cabinet;cup;dish;food;refrigerator;stove,\"This person is in front of stove stirring something, walks over to the fridge, walks back to the stove, gets something out of cabinet and then drinks something.\",c113 11.00 16.70;c147 0.00 4.10;c143 2.90 8.70;c106 17.60 26.00;c147 8.60 14.80;c061 3.50 12.10;c063 3.50 12.10;c142 3.50 10.20;c118 0.00 5.00;c112 11.40 18.00,27.38\r\nYSBN0,HR43,Kitchen,6,6,Yes,One person stands at a stove loaded with dishes cooking and smiles at the window nearby.,dish;food;stove,A person is cooking on a stove they are standing by the stove,c147 0.00 11.40;c119 0.00 8.90;c120 0.00 6.00,28.54\r\n0TXYV,AH2J,Dining room,7,7,Yes,\"A person runs into the dining room, drinking a bottle of water while playing on their phone. The person takes a box from the table and leaves.\",book;box;cup;doorknob;glass;phone;table;water,Person walk into the room drinking water out of the glass using a cell phone and picking a book off the table,c009 0.00 8.90;c015 4.40 15.10;c106 9.70 16.30;c106 15.80 24.40;c030 6.20 14.10;c107 2.00 26.00;c016 2.00 26.00;c109 14.40 19.20;c141 21.60 26.00,25.21\r\nG4VTC,9Y7F,Bedroom,6,7,Yes,One person is snuggling a pillow and enjoying a cup of coffee while another is standing with a broom.,bed;broom;coffee;cup;doorway;glass;homework;paper;pillow,\"Someone is standing in a doorway with a broom and papers. They set the papers on the bed and broom. Someone is sitting on the bed hugging a pillow and drinking from a mug.;A person is standing in the door, with a broom, tiding up and drops a paper.  Another person is sitting on the bed drinking.\",c106 5.10 11.00;c076 4.40 31.00;c102 15.00 31.00;c135 4.20 31.00;c107 4.70 31.00;c098 0.00 8.50;c115 25.90 31.00,30.33\r\n1M89F,BYF9,Kitchen,6,6,Yes,A person in a pours and drinks some coffee from the glass before putting the glass in the sink.,can;cup;glass;sink;table,\"A person is pouring a drink into a cup. The person drinks the drink, walks away, and sits the cup into the sink.\",c106 8.40 16.70;c108 0.40 11.60;c009 5.60 10.90,22.12\r\nNTYC3,9PLL,Kitchen,5,7,Yes,\"A person was eating nest to the window in the kitchen, they opened their laptop and started to laugh.\",banana;food;laptop;video,\"A person is holding a banana, and then eats it. A person then puts down the banana and opens a laptop.;A person holding a banana peels it and eats it. They set it down, open a laptop and begin to watch a video.\",c048 22.10 31.60;c051 27.60 38.00;c156 3.00 24.60;c149 31.20 38.00;c062 0.00 7.00;c052 25.20 38.00;c061 0.00 24.40,36.67\r\n2N5VN,4I2W,Kitchen,6,6,Yes,One person is tidying the basement with a vacuum while another person is grasping a sandwich and drinking something.,dish;floor;food;glass;sandwich;vacuum,A person vacuums the floor while another drinks from a glass.,c137 0.00 30.00;c106 14.10 30.00;c065 0.00 15.90;c119 10.60 17.80;c127 0.00 30.00;c068 1.40 13.40;c118 0.00 15.20;c107 14.70 21.10;c067 0.00 12.60;c061 2.30 15.50;c062 11.30 19.90;c156 0.00 16.50,29.50\r\nCS01T,P6LJ,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is playing on their phone. Then, holding their camera, the person walks over to sit on the edge of their bed.\",bed;closet;phone,A person plays on their phone in a closet doorway. The person then sits on their bed.;A person is playing with their phone in the closet. They sit down on the bed.,c015 0.00 35.00;c016 5.30 34.70;c135 22.70 35.00,34.75\r\nI6IPP,4OHY,Home Office / Study (A room in a house used for work),4,7,Yes,A person laughs as they watch a video on their camera. The person takes a drink from a glass of water.,camera;chair;cup;glass;phone;picture;table;video;water,\"A person is sitting in a chair laughing at pictures on a camera and drinking.;The person is sitting on a chair in front of a laptop. The person picks up a camera from the desk and looks at the camera screen, smiling. Then the person picks up a glass and drinks water from it.\",c106 21.10 29.00;c015 0.00 30.00;c152 0.00 30.00;c085 0.00 30.00;c059 0.00 30.00;c016 0.00 19.60;c011 0.00 30.00,29.00\r\nQ77UW,1TZV,Basement (A room below the ground floor),5,7,Yes,\"A person is in a basement working on their homework, they then grab a pair of shoes and leave the room.\",chair;desk;homework;paper;shoe;stairs;table,\"A person is sitting at a desk doing homework.  They pick up some shoes and walk up some stairs.;Person sitting down at desk writing homework, and then grabs tennis shoes from desk, gets up and walks upstairs.\",c145 0.00 26.10;c056 21.90 29.30;c059 0.00 30.60;c011 0.00 30.20;c014 0.00 30.90;c154 22.60 31.30,35.58\r\n6LBDM,Z68L,Living room,6,6,Yes,\"Awakening from a good night's sleep with a mug of fresh coffee, the person sat in the living room. The person stared at the window, and noticed the dirtiness and stains. They got up from their chair and began washing the window furiously.\",chair;coffee;cup;doorway;window,A person sits down on a sofa with a cup of coffee and drinks it. The person gets up and looks out a window and then cleans the window.,c091 28.00 48.40;c106 8.40 24.80;c097 0.30 10.00;c059 6.00 19.40;c151 6.30 16.00;c154 15.10 25.30;c107 0.00 16.20;c092 18.70 34.40,51.75\r\n6JB5R,D0RU,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is eating a sandwich at their desk, when all of a sudden, they start sneezing.\",chair;desk;dishes;food;plate;sandwich;table,\"Person walks to desk, sits down on chair, eats a sandwich, sneezes in hand multiple times, wipes hand in clothes, gets up and walks away from desk.;Laptop sitting on a desk open a person walk in and sit in the chair eating a sandwich.\",c065 32.80 142.00;c156 32.00 146.00;c151 135.50 150.90;c068 118.60 142.80;c011 20.70 31.10;c153 103.20 133.10;c154 139.60 151.70;c059 20.70 31.10;c067 30.40 141.20,161.75\r\nUC3EK,WQ8Z,Kitchen,5,5,Yes,\"A person turns on the light in the basement.  They start tidying up until they find a bottle of medicine, which they throw into a trash can.\",counter;lights;object;table;trash can,\"Person walks in room, flips on lights, grab something off counter and took to another area, walks to other side and place object on counter, animal walks in and looks at person.;A person turns on the kitchen light and walks into the kitchen. The person then walks over to a table picks up some items, walks to the trash can, and throws them away.\",,32.62\r\nFJIMX,L4ZP,Bedroom,4,5,Yes,A person is smiling and laughing in front of a mirror and then putting clothes in a box in a bedroom.,blanket;box;clothes;floor,\"A person walks in and sits down while straightening their clothes.  They pick up a blanket, fold it and put it in a box.;The person walks and sits on the ground. They itch their foot and hold their head. They take a blanket and fold it up and put it on a box\",c152 0.60 11.20;c151 0.60 7.00;c075 19.90 31.00;c002 28.20 31.00;c001 28.20 31.00;c125 28.20 31.00;c004 18.80 31.00;c149 4.90 14.70;c127 18.40 31.00,30.12\r\n0ET8W,D0RU,Living room,6,5,Yes,\"A person runs into the living room through the doorway, smiling. The person opens the window, sneezes, then closes the window.\",doorway;hallway;window,A man jobs down a hallway and opens a window and looks like he sneezes,c097 7.40 13.50;c150 6.60 13.80;c153 21.50 31.40;c090 0.00 32.00,30.75\r\n8NDRG,6RE8,Bedroom,7,7,Yes,The person is lying on a pillow and then tidying stuff on a shelf in the laundry room.,bed;clothes;pillow;shelf;table;towel,A person is laying on a bed with a blanket and pillow then gets up and starts folding clothes next to a shelf.,c076 0.00 9.40;c001 13.60 22.80;c035 10.40 15.50;c033 11.90 18.20;c000 24.10 30.50;c034 22.80 27.70;c002 11.30 16.30;c004 11.30 32.00;c134 0.00 8.00,30.58\r\n6GY1M,JVLO,Basement (A room below the ground floor),4,6,Yes,\"A person walks in the room, smiles, sits in a chair and begins using a laptop.\",chair;laptop,person smiling walks to a desk and sits in chair and works on computer,c059 10.00 33.00;c052 11.50 33.00;c151 8.60 15.60;c152 2.00 9.20,31.96\r\nX62WQ,UO0Z,Living room,6,5,Yes,A person smiles as they take a picture of their homework with a camera. The person leaves.,book;paper;phone;sofa;table,A person is sitting on a couch playing with phone. They turn the page of a book on a coffee table in front of them and then get up and leave the room.;A person is sitting on a sofa playing with their phone they look through a book and then they stand up and walk out of the room all while still holding the phone.,c015 12.90 19.20;c154 4.40 11.90;c123 3.10 20.50;c016 3.50 15.20;c145 6.00 17.00;c027 6.00 13.00;c015 0.00 20.00;c014 0.00 18.40;c087 0.00 6.70;c032 5.90 15.70;c011 0.00 17.80,19.88\r\nV2MHO,6RE8,Bedroom,7,7,Yes,A person is sitting by a window. The person then grabs some clothes and throws them.,blanket;chair;clothes;curtain;window,\"This person is sitting in a chair, looking out a window, then throws a blanket across the room.;A person is sitting in a chair in front of a bed they are looking out a window they pick up  a blanket off of the bed and throw it and continue looking out the window.\",c092 0.00 14.40;c059 0.00 31.00;c074 8.80 17.80;c000 8.20 16.20;c003 11.00 16.80;c073 8.20 14.40;c070 8.20 16.10;c002 8.30 14.00,30.25\r\nSODJP,0KZ7,Living room,5,7,Yes,A person is laughing at a picture while another person is sitting in a chair.,chair;mirror;picture,\"A person is sitting in a chair in the living room. Another person is standing in front of a picture, laughing and kicking at the floor.\",c085 0.00 29.00;c059 0.00 29.00;c149 0.00 29.00;c096 0.00 29.00,28.04\r\n64SL1,3VLX,Stairs,5,7,Yes,\"A person finishes drinking a beverage and leaves the empty container on the stairs they're sitting on.  They twirl a blanket around in the air and laugh, and then grab a nearby broom and leave.\",blanket;broom;soda,\"A person sits on stairs drinking a soda. They stand and while laughing grab a blanket, and a broom and leave.\",c098 16.00 24.90;c100 16.00 25.20;c070 7.60 25.50;c073 6.50 12.40;c149 8.90 13.70;c154 4.60 10.60;c075 6.20 18.70;c152 9.20 23.60,25.62\r\n8XFAV,2Q9D,Kitchen,6,6,Yes,\"One person walks up to a cabinet, fixes a drink in a glass and starts drinking.\",cabinet;cup;door;glass;table,A person walks into the kitchen and opens a cabinet. They pour a glass of juice and drink it.,c106 14.10 31.00;c108 7.00 13.60;c113 0.00 6.30;c009 2.10 8.10;c109 2.00 7.80;c107 1.30 7.60;c107 2.90 17.80;c110 1.30 7.60;c110 2.90 17.80;c008 0.00 5.80,30.33\r\nLBG7L,2RTW,Kitchen,6,6,Yes,A person walks over to the table.  The person takes a laptop computer out of a bag and opens it.  The person puts sits in a chair and starts doing homework.,bag;chair;homework;laptop;paper;table,\"A person is carrying a bag into the kitchen. The person takes a laptop out from the bag and places it on the table. The person pulls out a chair at the table. The person takes some homework out from the bag and looks through it. The person sits in the chair, works on the homework, and the computer.;A person walks in and places a bag on a chair. The person removes a laptop from the bag and puts it on a table. The person picks up homework from off camera, sits and begins working on the laptop.\",c115 16.70 32.00;c047 5.30 14.90;c052 23.50 32.00;c011 18.80 32.00;c117 17.70 26.50;c048 9.60 17.60;c059 19.00 32.00;c020 0.00 14.10;c151 18.00 28.30;c116 20.50 26.00;c050 6.10 10.70,30.54\r\n31TDO,EXQX,Entryway (A hall that is generally located at the entrance of a house),5,1,No,\"One person walks in, turns on the light, then puts medicine down the sink and throws away the jar.\",dish;floor;food;light;table,\"person turns on light, sits down at a table, and opens a container of food.;The person turns on the light, then sits down at the table and eats some food.\",c104 12.60 29.10;c151 21.90 35.40;c011 37.40 49.70;c063 38.90 52.40;c011 20.10 37.20;c009 8.10 21.70;c061 11.70 30.00;c156 9.00 32.70;c119 9.00 32.70;c120 9.00 32.70;c125 9.00 32.70,59.58\r\nK224I,2RTW,Kitchen,6,6,Yes,A person sits in a chair in front of the stove. The person stands and watches as the food on the stove cooks.,bag;chair;food;homework;laptop;stove;table,A person is sitting on a chair in front of a stove staring at a pot.;{};A person is sitting in a chair by the stove watching the toaster.,c059 0.00 31.00;c147 0.00 31.00,30.38\r\n92Q8F,UTMU,Bedroom,5,6,Yes,A person awakens on a bed and starts watching television while sitting on a bed in a bedroom.,bed;dog;television;tv,A person is laying on a bed watching TV. They sit up and continue to watch TV. A dog comes in and the person pets the dog. The person then gets up from the bed.,c132 3.60 26.60;c134 0.00 7.60;c135 4.70 27.50;c146 1.70 7.10;c154 26.30 29.00;c133 0.70 8.10,28.42\r\n2WH4F,KI4T,Bathroom,7,1,No,A person is tidying a bathroom. The person folds a blanket and puts it away. The person starts undressing and puts the clothes on a chair in the bathroom.,blanket;cabinet;chair;clothes;door;medicine;shelf;sink;sweater,\"A person moves something from a cabinet to a shelf, picks up a blanket, folds it and puts it in a cabinet.  The person then takes off clothes and puts them on a chair.;A person standing at a sink putting stuff in a cabinet .Turns around picks up a blanket folds the blanket and open a door under the sink and places the blanket there.The person proceeds to take off his sweat shirt and throw it in a chair.\",c071 8.90 24.80;c001 25.20 31.00;c113 21.80 26.70;c006 22.70 27.60;c073 7.60 15.80;c003 24.50 31.00;c008 18.30 25.80;c070 6.80 25.30;c075 6.50 26.10;c155 21.60 31.00;c112 21.60 28.10;c113 19.00 24.50;c128 2.70 8.80;c081 2.20 8.10,30.50\r\nG4NOT,XXN8,Hallway,7,7,Yes,A person is playing with a camera while closing a doorway.,camera;door;phone;something,\"Person standing in hallway looks at camera, begins fixing camera/typing into smartphone, looks back to camera, walks through doorway, closes door and leaves frame.\",c016 0.00 25.90;c097 21.90 30.00;c006 22.90 28.30;c015 0.00 30.00,30.25\r\nTRFB0,KFGP,Bathroom,3,7,Yes,\"A person is washing their hands and looking into the bathroom mirror. They open the medicine cabinet and pull out a bottle of lotion. After applying lotion to their hands, they turn and start walking out the door.\",cabinet;hand;medicine;mirror;shelf;sink;water,The person walks into a bathroom and proceeds to wash hands.  The person then opens cabinet and pours something into palm.  The person rubs palms together and then walks out of the room.;a person washes their hands in a sink and grabs medicine out of the cabinet,c113 12.70 17.80;c139 0.00 13.10;c112 17.20 25.20;c081 19.00 24.10,32.25\r\n05ZNF,KQI6,Living room,5,3,Yes,\"Standing in a closet, a person is doing homework. The they put down the homework and pick up food.\",chair;dish;food;homework;laptop;paper;sofa,\"A person sitting in a chair writes in a notebook for homework while watching a laptop screen, then picks up a bowl of grapes and eats them.;There is a person sitting on a sofa doing homework.  That same person then picks up a bowl and eats some food.\",c116 17.70 23.70;c145 0.00 22.10;c063 20.60 32.00;c123 0.00 32.00;c059 0.00 32.00;c115 0.00 20.40;c061 19.80 25.40;c156 23.10 32.00;c051 5.10 13.00;c051 9.90 17.30;c120 20.90 26.30;c118 21.50 32.00,30.92\r\nYUGJJ,HJJ4,Garage,5,7,Yes,\"A person is taking medicine, then working on homework and finally closing a book in a garage.\",book;chair;homework;medicine;paper,a person is taking medicine while sitting down and then opens a book and writes in it.;Person sitting in a chair taking medicine out of a bottle pick a book and began to read,c128 0.00 11.30;c027 13.00 21.30;c115 10.70 39.00;c059 0.00 39.00;c128 0.00 3.30;c026 12.20 39.00;c032 19.20 35.30;c145 19.20 35.30;c129 8.00 13.90,37.83\r\nCI6H7,6NQX,Living room,7,7,Yes,A person is smiling and grasping a picture while snuggling on the sofa.,couch;phone/camera;picture;pillow;sofa,a person lays on the couch and holds a pillow while looking at a picture;the person looks at object in hand and lays down on the couch while flipping and hugging a pillow,c122 0.40 6.00;c084 0.00 17.00;c088 0.00 17.00;c076 0.00 17.00;c123 8.60 13.10;c085 2.20 7.30;c152 2.60 7.70;c088 2.40 6.80;c078 1.20 17.00;c015 0.00 17.00;c016 0.00 17.00,15.96\r\n9NL5G,6RE8,Bathroom,5,7,Yes,A person is standing by a sink and pouring coffee down it.,coffee;cup;sink,A person walks to the sink while drinking coffee then dumps it out into the sink.,c106 0.30 13.10,31.29\r\nVKBIV,UTMU,Recreation room / Man cave,3,5,Yes,A person sits on a chair in the rec room/man cave. A person looks at a picture on their phone and smiles.,chair;phone piano bench;phone/camera,A person sits at a piano on the piano bench using their phone to text someone.,c151 0.50 10.40;c154 24.10 29.80;c059 3.30 29.30;c016 3.20 30.10;c015 2.50 30.10;c152 11.30 26.40,31.21\r\nMVL2O,UTMU,Stairs,7,7,Yes,\"A person is playing games on a laptop, then tidying up dirty clothes on steps and finally turning off a light on the stairs.\",clothes;dog;laptop;light;stairs,\"A person is sitting on the stairs while doing something on their laptop. They close the laptop, stand up and pick up some clothes that are lying on the stairs. The person goes up the stairs turn the light off and their dog follows them.\",c047 19.50 39.00;c047 0.00 39.00;c046 15.30 24.40;c051 0.00 21.90;c000 26.40 38.60;c105 35.40 39.00;c052 0.00 21.80;c154 20.20 32.50;c002 28.70 39.00,38.29\r\nX2LBW,18IT,Bedroom,6,7,Yes,\"A person who is finishing dressing themselves walks into the dining room, clutching a pillow under one arm and a book under the other.  They put the pillow on a chair, and the book on the table. They open the book.  Then, they get up, leaving their book, and opening a window, to let some fresh air in.\",blanket;book;chair;clothes;doorway;mirror;paper;pillow;table;window,Person A and Person B are dressing while looking at a mirror they then grab pillows to sit on at a table and work on homework before opening a window.,c059 49.10 59.90;c077 40.60 47.60;c011 49.10 59.90;c089 60.70 69.00;c154 49.40 62.60;c010 49.10 59.90;c076 24.60 46.60;c009 41.60 51.00;c026 32.40 65.30;c148 0.00 9.80;c151 43.30 54.80;c145 46.70 63.60;c096 61.70 69.00;c097 31.40 39.80;c070 26.60 47.60;c000 0.00 4.70;c032 49.80 60.90;c073 24.60 32.00;c030 21.50 27.20;c014 48.40 56.80;c001 0.40 6.80,68.08\r\nIV8MD,0KZ7,Stairs,2,7,Yes,A person is laughing and grasping a blanket and then eating a sandwich on the stairs.,blanket;clothes;food;sandwich;stairway,\"Perso is looking at clothes at bottom of stairway, then picks up food and eat it.;A person standing at a bottom of stairs holding clothes,turns picks up food and starts eating while holding the clothes.\",c065 8.30 24.20;c069 7.60 13.50;c149 0.00 5.40;c061 8.10 25.00;c000 0.00 25.00;c067 11.10 21.60;c070 0.00 10.10;c156 8.10 14.40;c063 6.30 12.40,24.46\r\nB61CP,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is holding a broom in their hand and getting ready to clean. They look at a picture hanging on the wall and sneezes.,broom;floor;hand;picture;wall,A person is holding a broom. They look in a mirror and begin to sneeze. Then they start to sweep.,c098 0.00 25.00;c102 0.00 25.00;c153 7.40 13.20;c127 0.00 25.00;c088 2.10 22.70,23.58\r\nXJVQL,R1OT,Bedroom,5,7,Yes,\"A person is in bed, holding a book and working on their homework on their stand. They pick up a glass of water and take a drink.\",bed;cup;glass;homework;paper,A person is lying on the bed. A person then gets up and starts to do their homework. A person then has a glass of water for them to drink.,c135 0.00 21.00;c107 9.60 21.00;c145 0.00 12.00;c106 10.80 21.00;c115 0.00 21.00,19.96\r\nFDNWD,0KZ7,Bedroom,7,7,Yes,A person is sneezing while in front of the doorway.  The person lies down with a pillow under their head.,doorway;floor;pillow,\"Person standing in the doorway sneezing several times in elbow before going into the room, grabbing a pillow and lying down on the floor.\",c078 11.30 25.00;c097 4.80 11.30;c153 0.00 9.50;c124 14.10 25.00;c151 12.50 17.40,23.67\r\nS00C3,ZAWX,Bedroom,6,7,No,A person sits in a chair and ties their shoes. Then the person looks at a picture and smiles.,chair;picture;shoe,\"A WOMAN IS SITTING ON THE CHAIR AND FIXES HER SHOELACES AND LOOKS AROUND THE ROOM, SMILING.\",c055 0.00 19.30;c152 15.10 22.80;c059 0.00 31.00;c152 22.70 31.00,30.25\r\nMDZVU,XXN8,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is sneezing at their desk. Then, opening their cabinet, the person reaches inside for a box of tissues.\",desk;table,A girl leans over a desk and sneezes. She does something on the desk.,c009 0.20 7.00;c153 3.00 10.00,31.17\r\nOMX6W,XXN8,Closet / Walk-in closet / Spear closet,5,7,Yes,A person grabs the doorknob and starts opening the closet door. There is a container of medicine in the closet. The person starts pouring the medicine out of the container to inspect it.,closet/cabinet;door;medicine,\"A person opens a closet door, grabs some medicine, examines it and walks away.\",c141 0.50 7.40;c128 3.40 29.80;c008 0.30 7.20;c113 0.60 7.20,30.42\r\n8JR94,YA10,Laundry room,7,7,Yes,\"A person sits on a pillow in the laundry room, putting a condiment onto a sandwich. When finished, the person takes a bite.\",condiment;floor;food;pillow;sandwich,A person sits down on a pillow and puts some condiment on a sandwich. They then eat the sandwich.,c065 24.40 33.00;c067 0.80 33.00;c066 6.90 31.30;c151 0.00 5.70;c156 24.60 33.00;c061 0.00 33.00;c125 1.10 33.00;c063 23.60 28.70,32.38\r\nK7PVL,EIO2,Other,6,6,Yes,A person is putting away the groceries and another person is washing the glass.,bag;bowl;can;cup/glass/bottle;dish;floor;groceries;shelf,{},c020 1.60 11.10;c130 9.00 20.40;c151 0.20 12.40;c125 0.00 32.00;c119 19.40 32.00;c110 0.30 8.50;c118 0.00 24.80,30.96\r\nZ1H81,YMXV,Bedroom,6,2,Yes,A person in their garage walks to the doorway and turns on the light while grasping a pillow.,doorway;light;pillow,Person walks threw the door turn on the light pick up the pillows off the bed and adjust them.,c104 7.00 13.10;c076 12.40 33.00;c097 0.00 6.60,31.54\r\n55UAT,T7C3,Bedroom,6,6,Yes,A person is tidying some things on a table.  Then a person is throwing a phone onto a bed.,bed;phone;shelf;something;table,A person is tidying up things on a shelf. The person grabs something from the shelf and throws it onto the bed.;Person putting items on the shelf then get something out of pocket and throw it.,c081 0.00 10.20;c012 0.00 20.50;c009 0.70 6.60,26.75\r\nCBVUS,YMXV,Bedroom,5,7,Yes,A person is sneezing in the pillow and another person is tidying the medicine.,bed;pillow;towel,\"One person is sitting on a bed sneezing with a pillow in their lap, while another person is standing and cleans objects with a hand towel;A person is sneezing. A person is holding a pillow. Another person is using a towel to clean items.\",c076 0.00 19.70;c153 0.10 7.50;c033 18.30 33.70;c135 0.00 19.30;c038 16.00 34.00,32.79\r\nVGPCG,2Q9D,Garage,1,1,No,\"A person sits in the garage, watching their phone. The person puts on a pair of shoes and leaves, closing the door behind them.\",door;phone;shoe,\"A person is sitting in a garage on some steps looking at his phone.  He puts on his shows, stands up, and walks through the door.\",c055 8.10 22.70;c016 0.00 10.50;c008 23.90 32.30;c154 22.00 30.60;c006 25.50 32.00,31.50\r\n0FC0N,D0RU,Kitchen,6,5,Yes,A person who's originally sitting decides to go up to the refrigerator to begin pouring a glass of milk.,bag;chair;dish;food;glass;refrigerator;sandwich,A person is sitting down.  The person then got up and opened the fridge.  The person then grabbed some food.,c143 16.70 23.30;c154 12.60 17.40;c120 26.40 31.40;c020 20.70 34.00;c110 26.40 31.40;c063 20.70 25.30;c069 16.90 34.00;c061 19.20 34.00;c023 17.50 34.00;c142 28.20 34.00;c059 0.00 17.40,32.79\r\nN7X3T,KQI6,Kitchen,6,7,Yes,A person is washing dishes in the sink.  The person then starts taking a dish to the stove.,dish;sink;stove,\"A person washes dishes in a sink next to a stove, then takes a dish from the stove.\",c120 0.00 26.10;c121 0.00 19.50;c119 15.20 20.70;c118 0.00 25.60;c119 0.00 25.60,31.83\r\nS4PLU,UD06,Living room,6,7,Yes,A person runs into the living room and picks up a glass of water. The person drinks from it then wipes their mouth with a towel.,cup;glass;table;towel,A person is drinking some water before using a towel to wipe it off.,c038 17.40 23.70;c106 4.90 18.60;c009 14.20 20.60;c034 19.50 27.00;c035 16.20 24.10,30.42\r\nY6MUU,0RNU,Laundry room,7,7,Yes,A person standing in the laundry room holds a broom while watching a video on their phone.  They then pick up a bottle of medicine and walk through the door.,broom;cup/glass/bottle;door;medicine;phone;video,\"A person is holding a broom and watching a video on a phone. They grab a bottle, open a door and leave.\",c015 0.00 40.00;c128 28.70 40.00;c008 30.50 37.60;c097 32.80 40.00;c141 29.30 35.80;c110 26.50 32.50;c006 34.80 40.00;c098 0.00 40.00;c016 0.00 32.30,39.00\r\nXBB9P,HR43,Bedroom,7,5,Yes,A person is throwing clothes in a cabinet and then grasping a phone in a bedroom.,cabinet;clothes;door;phone,A person opens a door and starts arranging clothes inside. They then pick up their phone and put it to their ear before walking away.,c001 0.40 20.70;c113 0.00 4.50;c015 9.40 17.10;c008 0.00 4.60;c114 0.00 21.80,21.58\r\nLU3SU,X5XO,Closet / Walk-in closet / Spear closet,7,7,Yes,\"Person opens the closet and places a box on a table. They take clothes out of the box, and start dressing.\",box;closet/cabinet;clothes;door;light;table,person opens closet turns on light puts a box on a table and dresses,c009 8.00 15.70;c043 5.00 12.00;c148 13.30 32.00;c008 0.00 5.70;c002 5.30 10.70;c000 11.10 18.20;c097 8.60 13.50;c001 12.50 32.00;c113 0.00 5.10;c040 5.80 10.70;c104 2.80 8.10;c042 8.00 14.80,31.17\r\nG3A0B,5LWB,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is standing in a hallway, eating food and drinking coffee.\",coffee;cup;food,A person is standing in a doorway while eating and drinking coffee.,c106 10.40 19.00;c061 0.00 25.00;c156 0.00 25.00;c107 0.00 25.00;c149 19.00 25.00;c152 19.50 25.00,23.58\r\n8AKGE,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,\"A person is standing in the entryway smiling at something on their phone.  The person turns on the light and throws their phone on the table, then takes a drink of a glass of water.\",cup;dish;glass;light;phone;table,A person is looking at their phone and then turns on the light and takes a drink from a glass.,c009 12.90 19.10;c015 0.00 17.50;c106 14.60 25.60;c104 11.50 16.70;c152 0.00 13.70;c016 0.00 17.50;c118 15.00 26.30;c017 13.10 17.90;c110 14.70 19.40,26.96\r\nEE8OB,RJOM,Dining room,7,6,Yes,\"A person has a sandwich, walking into the dining room,  standing by the cabinet then goes to the light switch and turns on the light. Then sits on the pillow and eats the sandwich.\",chair;food;light;sandwich;table;woman,a woman walking in a house with a sandwich eating and sat down at a table.;A person is walking into a dining room where they sit down and eat.,c065 14.80 21.00;c156 14.80 21.00;c059 13.90 21.00;c011 13.90 21.00;c061 0.00 21.00;c151 11.80 19.00;c067 0.00 21.00,20.29\r\n4VYE5,D0RU,Bedroom,3,7,No,A person is in the bedroom standing by the bed when someone walks in and starts playing with the camera next to the door.,book;chair;clothes;cup;desk;glass;laptop;mug;table;turban,\"A person is sitting in a chair in front of a laptop. They drink from a mug while looking at the laptop. They put the mug back on top of a book. They stand up from the chair, wrap a turban around their head, and walk away from the desk.;Person sitting in a chair in front of a laptop pick a glass off the desk and drink get up from the chair leave the room\",c154 91.70 102.00;c014 12.20 94.90;c051 3.50 96.50;c106 36.60 73.70;c059 1.20 86.30;c032 4.30 82.30;c148 103.50 145.30;c109 65.70 77.60,157.42\r\nFTWBB,XARO,Living room,7,7,Yes,\"One person with a book watches and laughs as another person plays, making faces in front of the mirror.\",book;chair;mirror;sofa/couch,\"Person #1 is sitting in a chair, reading a book and laughing. Meanwhile Person #2 is looking at their reflection in the mirror.;Person sitting on a chair laughing and reading a book while another man looks at himself in the mirror.\",c026 0.00 31.00;c029 0.00 6.10;c149 0.00 6.10;c027 0.00 3.40;c032 0.00 31.00;c096 0.00 31.00;c059 0.00 31.00;c152 0.30 5.90;c152 8.00 12.80;c123 0.00 31.00,30.33\r\n2FLXE,OUKK,Laundry room,4,5,Yes,\"A person removes a pillow from the dryer, then closes the dryer door. The person puts the pillow on the window sill.\",door;pillow,A person is opening a dryer and taking a pillow out of the dryer and putting it on top of the dryer.,c006 7.60 13.20;c008 2.60 7.70;c076 3.10 16.00;c077 10.70 16.00;c079 3.60 10.40,14.58\r\nGG1X2,UTMU,Laundry room,7,7,Yes,\"A person opes the door and walks in, closing the door behind them.  The person turns on the light and takes their shoes off, then grabs a bottle of medicine off the shelf.\",cup/glass/bottle;door;gate;light;medicine;shelf;shoe,\"A person opens a gate, turns on a light, and removes their shoes. They take something from a shelf and walk out of frame.\",c006 3.00 11.10;c008 0.00 7.00;c057 9.20 17.00;c054 9.50 17.30;c128 15.70 25.00;c097 0.00 7.00;c107 15.80 25.10;c110 15.20 20.60;c053 8.60 14.10,26.21\r\nG4IV1,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person runs to the door. The person grasps the doorknob and opens the door.,door,\"A person jogs over to the door, turns the doorknob, opens the door and looks outside.\",c141 2.80 22.00;c008 5.90 12.40;c150 0.40 6.60,21.21\r\nR6QCQ,WG9D,Living room,4,7,Yes,\"A person awakens on a living room sofa, then gets up and watches themselves in the mirror before leaving the room.\",mirror;sofa,A person is sleeping on the couch and then gets up and checks his hat.,c096 10.30 18.80;c122 0.00 9.10;c146 2.10 9.00;c154 5.70 11.30,17.71\r\nSIREU,WG9D,Pantry,6,6,Yes,A person opens a doorknob and puts a glass on the top shelf.,cabinet;dish;glass;shelf,A person opens a cupboard. The person grabs for a glass in the cupboard.,c113 0.00 6.00;c119 0.00 4.30;c110 0.40 6.00,5.29\r\n9ONDD,3VLX,Kitchen,7,7,Yes,A person is cooking some food on the stove.  The person is closing the refrigerator after taking out some eggs.,food;refrigerator;stove,A person is cooking on a stove. THen they walk and open the refrigerator to grab eggs. Then set the eggs down.,c061 15.90 28.80;c063 15.90 26.10;c142 18.80 24.50;c062 22.30 32.40;c147 0.00 15.10;c143 13.50 20.50,31.88\r\n2TU40,EIO2,Kitchen,6,7,Yes,A person is putting a bag on the door.  Then a person is washing a spot of food off a blanket with a towel.,bag;blanket;clothes;door;hands;towel,\"A person entered his kitchen, hung up a bag, and wet a towel and began cleaning the blanket he was holding.\",c038 12.80 22.10;c020 0.00 3.10;c070 0.00 7.30;c035 0.00 31.00;c008 1.60 8.60;c022 0.00 12.00;c075 13.30 31.00;c139 12.70 18.00;c097 0.00 6.50;c141 0.30 5.60;c005 12.70 31.00,30.17\r\nF08QY,ZSRZ,Living room,5,6,Yes,\"One person opens up a bag and tidies up the area, putting a picture in the bag.\",bag;picture;sofa,A person is taking a bag and putting a picture inside the bag.;A persin is tidying up a couch and putting trash in a bag.,c021 0.00 3.60;c020 1.20 6.50;c020 0.00 14.00,12.92\r\n3MPY7,4I2W,Recreation room / Man cave,4,,No,A person is taking dishes into the pantry. They start laughing and hitting a chair.,dish;doorway;food;snacks,The person is pacing back and force. Subject continuously passes a white chair. Appears to be a young male of Arab decent. Subject holds snacks in his hand. (orange and something in a tupperware container),c118 0.00 31.00;c061 0.00 31.00;c097 0.00 5.40,29.62\r\n9K2TY,6PZN,Living room,6,6,Yes,Two persons are sitting on a sofa.  One person is working on putting a pillow case on a pillow when the other person throws a towel on the first person.,blanket;pillow;sofa;towel,The person is sitting on the sofa putting a pillow into a pillow case. The person throws a towel at the other person.,c123 0.00 32.00;c076 0.00 24.20;c077 19.00 24.20;c033 19.90 32.00;c036 27.40 32.00;c071 19.20 23.90;c070 0.00 23.60,30.62\r\nAQXBN,OUKK,Bedroom,2,7,Yes,\"A person is sitting on a sofa, browsing the internet with their laptop. A sweater is laying next to them. The person smiles at a joke they read online. The room is cold. The person sneezes, then puts on the sweater.\",clothes;laptop;sofa,\"A person sits down on a couch with a laptop, then picks up a jacket and puts it on.\",c047 0.00 3.80;c049 0.00 6.50;c051 0.00 4.80;c123 2.20 15.40;c151 0.00 6.30;c000 14.30 20.20,29.75\r\nFDIJX,BYF9,Living room,6,6,Yes,A person is throwing a towel while dressing in a blanket.,blanket;clothes;table;towel;wardrobe,A person wrapped in a blanket pulls out a towel and throws it onto a table.;Person standing in a room throwing a towel on the table while snuggling with a blanket.,c036 0.60 6.70;c072 12.40 18.00;c009 2.10 6.30;c155 0.00 17.10;c003 1.40 6.50;c070 0.00 18.00,16.88\r\n6UDGS,P6LJ,Living room,6,6,Yes,A person is standing in the doorway. The person puts on a pair of shoes.,door;shoe,\"The is a person who walks to a doorway of the closet and puts on their shoes.;A person opens a door, picks up their shoes off the floor and puts on their shoes, then closes the door.\",c055 9.70 19.00;c006 15.90 24.00;c053 5.50 14.70;c097 2.90 21.30;c008 1.80 22.90;c056 5.50 21.60,24.42\r\n4DZ33,P6LJ,Kitchen,6,6,Yes,\"A person puts a towel in the sink, rummages through some homework, then watches at the door before leaving.\",homework;paper/notebook;towel,A person is holding their homework and tidying up with a towel.,c037 0.00 17.60;c115 0.00 36.00;c117 0.00 3.00;c035 0.30 5.80;c034 11.30 17.40;c033 0.40 17.40,34.62\r\nN2XCF,P6LJ,Kitchen,6,6,Yes,The person was talking on the phone and entered the laundry room.  The person held the phone while putting clothes on the table from the dryer.  the person then undressed and put clothes in the washer.,blanket;clothes;dishwasher;door;phone,A person talking on a phone walks in to a kitchen takes clothes out of a dishwasher lays them on the counter.The person takes off their shirt and places it in the dish washer .;A person talking on a phone opens the door to their dishwasher and begins unloading clothes from it.,c008 4.30 23.40;c015 11.50 37.50;c070 28.80 51.10;c000 15.90 28.40;c002 24.10 46.70;c006 35.40 40.10;c017 36.40 41.90;c073 15.30 29.00;c155 37.90 52.60;c005 53.00 59.60;c001 15.30 33.80,62.88\r\nLJ2OE,S053,Bedroom,6,6,Yes,A person is snuggling with a pillow on a bed and laughing at a funny show on television.,bed;door;pillow;sofa;towel,A person is seen laying down on a bed  snu ggling with a pillow and laughing.;A person lying on a bed snuggling a pillow is laughing and playing with nose.,,30.67\r\n3O300,S053,Living room,6,6,Yes,\"A person throws a towel onto the sofa. The person leaves, closing the door behind them.\",clothes;door;sofa;towel,A person is  folding a towel or blanket then placing it on the sofa and walking out the door.,c037 7.50 24.70;c097 22.30 28.80;c004 8.30 25.20;c033 7.80 24.40,32.08\r\nGMQBY,S053,Basement (A room below the ground floor),6,6,Yes,A person is fixing a vacuum cleaner and watching a mirror.,floor;hands;machine;mirror;vacuum,\"The person is sitting on the floor in front of a mirror using the reflection and the help of their hands to fix a vacuum.;A person inspected a machine, including shaking it and checking how tight some parts of it were.\",c136 0.00 31.00;c096 7.50 31.00;c125 0.00 31.00,30.08\r\nQ36FS,PO5L,Living room,5,7,Yes,\"A person is grasping their phone, then the person begins laughing and looks out of the window.\",door;phone;window,\"A person sneezes, then looks out the window.;Person walking around looking at phone while bowing and then decides to look out of the window before leaving the room\",c092 11.60 22.00;c015 0.20 14.30;c152 4.80 14.50;c149 4.80 14.50,25.54\r\n09F15,2Q9D,Pantry,6,7,Yes,A person holding a book and wearing shoes enters a pantry. They take a shaker of black pepper out of the pantry. The person smells the pepper and then sneezes.,book;closet/cabinet;door;light,A person opens the pantry door and takes something off the shelf. The person sneezes.,c153 19.20 28.50;c115 0.40 9.10;c026 0.40 9.20;c104 2.50 8.00;c008 0.40 6.50;c113 0.40 6.50,30.04\r\nPUWX2,UTMU,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person walks up to their office window, then grasps a camera sitting on the window sill.\",camera;phone;window,\"A person walking into a room, going to a window and picking up their camera. The person proceeds to look at the camera turns and walks out of the room.\",c015 6.60 23.50;c018 19.50 25.70,30.29\r\nBDWIX,C7O9,Laundry room,7,6,Yes,A person takes off their shoes and begins washing clothes and then sneezes.,blanket;clothes;shoe;towel,\"A person takes off their shoes in front of their washing machine, and then loads it with dirty clothing.  They suddenly start violently sneezing.\",c000 11.30 23.40;c001 10.10 22.20;c003 10.20 22.20;c005 9.80 23.60;c153 19.60 31.00;c057 0.00 9.70;c034 10.80 23.90;c035 8.60 15.00;c071 15.80 22.20;c004 18.40 23.80;c054 0.00 12.40,30.17\r\nLNXMJ,C7O9,Kitchen,6,7,Yes,A person watches something out the window. The person turns the light off and leaves.,light;window,A person is looking through a microwave door window.  The person walks over and turns off a light.,c105 22.60 27.80;c092 0.00 22.00,29.42\r\nVVCK0,D0RU,Kitchen,3,4,Yes,A Person is eating beside the stove and another person is snuggling a bag.,bag;box;doorway;food;stove,A person is standing in the kitchen stirring something on the stove. A second person comes in and looks through a grocery bag. They select a box and walk away.;someone standing and eating and someone coming up with a bag,c021 18.40 23.80;c147 1.00 8.20;c097 12.30 18.90;c156 0.00 34.00;c061 0.10 34.00;c156 6.40 13.70;c061 6.00 13.80,32.75\r\nQHU9R,P6LJ,Living room,7,7,Yes,\"A person is vlogging themselves with a camera phone, smiling and snuggling a towel.\",camera;clothes;phone;towel,The person is holding a towel while making a video call on their phone.,c019 0.00 30.00;c033 0.00 31.00;c016 0.00 29.70;c000 0.00 31.00;c154 0.00 2.50;c015 0.00 31.00,30.17\r\n490S2,ZAWX,Pantry,6,7,Yes,A person is standing in the pantry drinking a glass of water.  The person puts the water down to check their phone.  The person grabs some groceries from the shelf and walks out.,cup;glass;groceries;phone;shelf;table;water,\"A person is standing in front of a pantry, drinking water from a glass. The person sets the glass down on a table, looks at their phone, then grabs some food from a shelf in the pantry.\",c016 11.40 23.50;c107 0.00 15.10;c015 12.10 22.60;c106 0.00 13.20;c109 9.30 14.90;c017 17.50 25.40;c018 8.70 16.10;c009 8.60 15.20,29.00\r\nD1C8J,3H6W,Home Office / Study (A room in a house used for work),7,7,Yes,A person is working on some homework. The person then gets up and sneezes while pushing the vacuum across the floor.,chair;floor;homework;paper;table;vacuum,\"Person walked into the room sit down write something on a book get up and left the room;Person coming into the room and sits in a chair at the table, gets back up and grabs the vacuum, and leaves vacuuming the rug.\",c145 1.90 18.10;c137 16.20 30.80;c059 1.40 18.30;c154 14.10 19.20;c011 2.20 18.60;c151 0.30 6.00,32.08\r\nTU1C9,ZAWX,Bedroom,7,7,Yes,A sneezing person is eating a donut and drinking coffee in a bedroom while wrapped in a blanket.,blanket;cup;floor;food;sandwich,A person wrapped in a blanket that is grasped by a hand sneezes and eats a sandwich then drinks from a cup.,c070 0.00 32.00;c153 0.00 8.00;c156 10.90 32.00;c065 10.90 20.70;c072 28.50 32.00;c106 28.00 32.00;c072 0.00 32.00;c125 0.00 32.00;c106 24.00 30.00,30.58\r\nVA8ZR,P6LJ,Pantry,7,7,Yes,\"A person opens the pantry door, turns on the light, takes a camera off the shelf and leaves.\",camera;closet/cabinet;door;light;shelf,A person opens a door and turns on a light and grabs a phone.,c008 4.10 14.30;c104 12.10 19.10;c018 20.70 28.40;c097 9.50 17.60;c113 6.40 13.50;c112 27.90 33.60,37.08\r\nJ3LZI,OUKK,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,A person is closing a bag.  Then a person is watching something that has fallen off a desk.,bag;something,A person is tying up a bag. They then interact with something on the floor before leaving.,c020 4.10 31.30;c154 5.00 9.30;c021 9.90 24.50;c022 23.10 31.60,34.75\r\nPQH3Q,4I2W,Bedroom,7,7,Yes,\"A person, wrapped in a towel, is watching themselves in the mirror. The person fixes their hair.\",bed;hair;mirror;towel,\"A person is sitting down wrapping a towel around their shoulders.  They stand up, look in the mirror and fix their hair.\",c096 21.10 30.00;c033 0.00 30.00;c144 21.30 30.00;c154 14.40 20.30;c135 0.00 18.60,29.00\r\nHTCKH,HJJ4,Recreation room / Man cave,7,7,Yes,A person is holding a broom and tidying up the room. They grab a box and put it on a shelf.,box;broom;floor;shelf,A person sweeping the floor with a broom picks up a box and places it on a shelf.,c081 11.70 18.20;c098 0.00 19.00;c102 0.00 13.00;c040 11.10 17.50;c042 11.90 18.40;c127 0.00 15.40;c043 10.40 15.50,18.12\r\nSPUPH,WG9D,Kitchen,6,6,Yes,A person is seen fixing a wardrobe. They pick up a towel and begin sneezing. They then eat a sandwich,cabinet;food;sandwich;something;table;towel,\"A person is looking through a cabinet. The person closes the cabinet, and starts to sneeze.;A person opens a cabinet and removes something and places it on the counter. They sneeze into a towel.\",c033 3.70 10.50;c153 3.50 9.70;c113 0.00 7.00;c009 6.00 10.90;c067 6.10 13.00;c061 6.10 13.00;c112 0.00 7.70;c156 7.60 13.00;c065 8.20 12.70;c063 2.60 9.10;c069 7.00 11.40,12.33\r\nFTETB,C7O9,Kitchen,4,5,Yes,\"A person takes food out of a box and then closes it, then they begin cooking on a stove.\",box;food;stove,A person is cooking on a stove they are holding a box and trying to open it. They take something out of the box. Then they put the box down and go back to cooking.,c039 5.50 10.80;c041 0.00 5.10;c147 9.70 31.00;c042 8.90 13.70;c044 0.20 11.60,29.88\r\nGNMBV,DXDI,Stairs,4,5,Yes,\"A person is undressing by the stairs by taking their jacket off. They start throwing pictures down the stairs, while pulling out some medicine from their left pocket.\",clothes;cup/glass/bottle;floor;medicine;phone,\"A young person holding a cell phone, taking off his coat and letting it drop onto the floor.;While undressing out of clothes, a person throws something down stairs, then holds a medicine bottle.\",c155 0.00 24.00;c128 15.50 24.00;c003 17.20 21.50;c107 14.30 24.00;c126 17.20 21.50;c110 12.00 19.20,23.46\r\nYT9AL,Z68L,Bathroom,7,6,Yes,A person is dressing in the doorway of a bathroom while they are smiling and laughing on their phone.,clothes;doorway;phone;shoe,\"A person picks up a phone and enters the bathroom through a doorway while talking on the phone. The person puts on  shoes and picks up clothes while laughing and dresses before walking out of the room.;A person picks up a phone, starts talking on it, and takes it to the bathroom. There the person puts on shoes and picks up clothes. The person puts on the clothes and walks out of the room while laughing and talking.\",c018 0.00 7.10;c149 46.10 53.80;c148 18.10 50.10;c015 35.10 43.10;c019 1.70 29.20;c152 41.30 47.60;c055 3.90 15.60;c097 2.80 7.90,56.54\r\nKO34N,6RE8,Laundry room,6,5,Yes,A person is grasping a phone and then undressing on a chair in the laundry room.,chair;clothes;phone,\"A standing person is talking on the phone, puts the phone on the chair, takes off their shirt, then looks through some other shirts.\",c015 0.00 11.10;c155 9.70 32.00;c016 0.00 10.50;c017 6.80 11.90;c003 11.90 19.10;c001 28.60 32.00,30.79\r\n8UGNK,L4ZP,Kitchen,6,7,Yes,A person leaves a towel on the floor then another person drinks a beer by the table.,glass,A person walks while holding a glass and drinking from it.,,28.17\r\n61WBK,9PLL,Stairs,5,6,Yes,A person is throwing clothes down the stairs.  Then a person is laughing while sweeping with a broom.,broom;clothes;floor;stairs;towel,A person throws a towel on a table. A person begins cleaning with a broom.;A person is putting an item on the stairs. A person begins tidying the stairs with a broom.,c000 0.00 3.30;c001 0.00 4.30;c098 1.40 6.90;c102 2.80 34.00;c034 0.00 4.30;c003 0.00 4.30;c127 2.30 22.30,32.71\r\n9SOKF,UTMU,Kitchen,5,7,Yes,\"A person is smiling in front of the refrigerator that has a picture on it, while grasping a stack of homework.\",book;dog;homework;paper;refrigerator,someone walks in the kitchen holding a stack of books and has a staring contest with their dog,c115 0.00 35.00;c152 0.20 9.90;c029 0.60 35.00;c026 0.00 35.00,34.08\r\nXRI58,HRH1,Stairs,7,7,Yes,A person is working on a chair at the bottom of the stairs. They begin laughing while eating some food.,chair;cup;food;homework;medicine;paper,\"A person holding a paper runs across a room and sits in a chair .The person takes a bottle and opens it and takes out pill and puts them in their mouth.The person jumps up and runs across the room.;A person runs and sits on a chair at the bottom of the stairs. The person does their homework, and eats food from a bag.\",c059 1.80 12.50;c156 6.20 18.90;c150 15.40 24.60;c061 6.40 14.10;c151 11.40 19.30;c115 16.70 24.10;c110 11.10 19.40;c154 16.50 22.80,25.83\r\nDSP2U,D0RU,Bedroom,6,3,Yes,A person walks into the closet and moves a pair of shoes from a chair. The person then sits down in the chair.,chair;shoe,A person walks into the room and sits in a chair. But not before removing a pair of shoes from the chair.,c059 15.80 22.00;c056 12.90 19.50;c151 15.70 22.30;c054 13.70 19.30;c053 13.70 19.30,32.96\r\nMURXK,0RNU,Garage,7,7,Yes,A person puts a camera onto the shelf. The person begins undressing.,camera;clothes;jacket;phone;shelf,A person is holding a camera. A person then takes off a jacket. A person takes off another jacket.;Person taking a camera and putting it on a shelf and then begins by taking off his jacket and other clothes.,c081 5.60 12.20;c015 0.00 9.70;c155 8.60 30.00;c016 0.00 10.60;c002 8.30 18.50;c000 8.30 18.30,29.04\r\nAST4H,JVLO,Living room,7,7,Yes,A person is laughing while walking with a box in front of the mirror.,box;doorway;hair;mirror,\"A person picks up a box, smiles and looks into a mirror.;A person picks up a box and walks through a doorway. The person then fixes their hair in a mirror\",c040 0.10 5.90;c094 2.20 16.10;c152 12.80 22.50;c144 13.90 25.80;c097 8.00 21.90;c043 2.00 31.00;c096 14.80 31.00,29.92\r\nF3Y5H,8HLE,Kitchen,6,6,Yes,The person must make coffee so they go to the pantry and retrieve the grounds. They tidy up by cleaning the pot. Then they throw the grounds into the coffee maker.,cabinet;coffee,A person is getting coffee from a cabinet. A person then pours water into the coffeemaker.,,54.83\r\nQX33M,8HLE,Pantry,6,6,Yes,\"A person is sitting in the pantry, looking into a mirror. The person stands, grabs a book, and leaves. They close the door behind them.\",book;door;hair;mirror,\"A person is sitting in a chair adjusting their hair in a mirror. The person stands up, grabs a book, and leaves the room.;a person sits in chair and looks in mirror then grabs a book and walks out door;A person is sitting in front of a mirror playing with their hair, then they stand up to grab a book and leave.\",c026 21.10 31.60;c096 0.00 25.10;c008 25.80 32.00;c030 20.50 25.90;c006 27.40 32.00;c154 20.30 25.30;c059 0.00 24.50;c144 0.00 21.20;c141 23.60 31.10;c094 0.00 24.30;c097 26.50 31.70,31.42\r\nB2NAS,PO5L,Recreation room / Man cave,2,6,Yes,A person is eating a sandwich in the man cave while they are tidying the table.,book;couch;food;paper;sandwich;sofa;table,A person sits on the couch and has a sandwich and then organizes items on a table.;Person walks in the room to sit on the couch and have a bite to eat before organizing the table.,c009 12.90 17.70;c065 4.60 16.90;c068 12.90 17.70;c151 0.80 7.90;c012 14.00 25.10;c067 2.10 18.00;c156 4.80 18.00;c154 24.90 29.00;c123 2.00 25.70;c116 15.70 23.00;c061 2.00 17.20,27.54\r\nZP4X6,3H6W,Living room,7,7,Yes,\"A person is lying on a sofa covered by a towel. They grasp a camera, and sneeze while trying to take a selfie.\",blanket;camera;phone;sofa;towel,\"Person is lying in on sofa covered with towel, holding camera phone and sneezing.;A person is laying down on a sofa. The person covers up with a blanket. The person takes a phone out from underneath them. The person sneezes. The person gets up off of the sofa.\",c122 0.00 20.80;c153 12.00 21.20;c151 0.00 4.20;c154 18.10 24.20;c015 7.10 25.50;c074 18.80 25.80;c071 0.20 7.70;c018 5.30 12.50;c016 7.90 21.40,25.88\r\nH378S,OUKK,Bedroom,3,7,Yes,A person is taking medicine and putting away a book.,book;medicine;shelf,A person opens up a bottle of pills and takes a pill out closes the bottle and places it on a bookshelf.,c128 6.60 13.90;c129 8.30 16.70;c082 19.60 28.00;c028 18.20 28.20;c115 4.40 28.20;c026 4.40 28.20;c081 17.60 21.90,29.67\r\nX3FAP,LTAC,Recreation room / Man cave,6,6,Yes,\"A person takes their laptop from on top of the television, and cleans the glass screen with a paper towel. The person then pours themselves a drink.\",glass;laptop;television;towel,\"A person takes a laptop off of a desk, cleans it with a towel, places the laptop down, and pours some water over his head.\",c038 5.20 16.00;c049 5.70 12.30;c050 10.50 17.30;c048 1.70 8.10;c033 20.10 26.30,36.83\r\nPN7N9,2Q9D,Stairs,6,6,Yes,\"A person is sitting on the stairs, holding a bag. The person puts the bag into a larger box, and closes it.\",bag;box,A person is sitting on the stairs holding a bag they put the bag in a box and close the box then they scratch their head.,c039 10.60 19.90;c041 3.40 11.90;c020 0.00 5.90;c022 4.00 13.70,30.04\r\n5L04F,2Q9D,Stairs,6,6,Yes,\"A person is sitting on the stairs, reading the label on a medicine bottle. The person laughs as they take a bite of a sandwich.\",food;medicine;object (unknown);sandwich;stairs,\"A person is sitting on a stairway looking at a bottle of pill and laughing, while eating something.;A person sitting on stairs laughs while looking at something and eating a sandwich.;A person sits on the stairs, holding something and laughing while eating food.\",c128 0.00 30.00;c065 12.60 30.00;c149 9.30 16.70;c156 12.60 30.00;c061 0.00 30.00;c067 0.00 30.00,28.83\r\nFWUV8,3VLX,Bedroom,4,6,Yes,A person drinks from a cup and then turns on a television and watches holding a pillow.,bed;cup;dish;glass;pillow;television,A person is drinking a glass of water and watching tv while holding a pillow.,c076 23.30 38.00;c106 6.90 19.00;c151 17.60 27.30;c132 17.00 38.00;c119 6.90 12.50;c135 16.70 25.70;c120 2.80 8.10,36.88\r\nATNBT,JVLO,Recreation room / Man cave,6,7,Yes,A person is standing watching television. Another person is sitting down working on homework that is on a laptop.,floor;laptop;television,A person is watching television while standing. A second person is sitting on the floor working on the laptop.,c052 15.30 31.00;c132 0.00 19.30;c125 28.40 31.00,30.33\r\nCMNU3,BYF9,Living room,6,5,Yes,One person is sitting on a couch reading a book and laughing. Another person is standing nearby grasping a glass.,book;cup;glass;sofa;table,A person is sitting on a couch reading a book. Another person standing next to them picks up a glass from the table.;A person is sitting on a sofa reading a book. Another person is standing by them and takes a glass off a table.,c123 0.00 14.00;c107 9.50 14.00;c110 6.70 13.70;c032 0.00 14.00;c026 0.00 14.00;c027 0.00 14.00;c029 4.00 14.00;c012 7.00 13.40;c152 4.00 14.00,13.50\r\nTKFY2,9PLL,Kitchen,4,6,Yes,A person is cooking in the kitchen. The person takes a bite of a sandwich and puts it down onto a stack of dishes.,dishes;food;sandwich,A person is cooking something in a pot on a stove. The person eats a bite of sandwich. The person is stirring the pot.,c065 10.70 17.20;c067 10.10 17.60;c068 12.90 18.30;c147 2.60 32.00;c156 9.80 18.00,31.38\r\nJ76NX,1OHU,Laundry room,6,6,Yes,The person tidying the room is walking toward a blanket with a book and camera on it.,blanket;box;clothes;coffee;food;glass;laundry detergent;phone;sandwich,\"A person is standing by the dryer with a camera they mess with box and fold some laundry they rearrange the laundry and stoop down to look at their phone.;person folds a shirt and then cleans up some clothes then grabs phone off the floor;A person is tidying up a laundry room and folding clothes, they then adjust their phone that is on the floor.\",c000 6.60 14.20;c042 0.00 4.50;c075 8.00 17.90;c001 16.70 22.20;c043 0.00 4.90;c004 5.00 23.10;c018 25.90 31.20;c017 27.40 32.20,31.71\r\nRE2CX,1OHU,Laundry room,6,6,Yes,\"The person standing by the mirror, tosses the towel they were holding into the washing machine.\",blanket;mirror;towel,There is a person looking into a mirror.  That same person takes a towel and puts it in the washing machine.,c096 0.00 10.90;c033 8.30 14.00;c034 13.60 23.00;c071 14.80 22.30;c070 8.10 21.70,27.88\r\nCA7T0,1OHU,Laundry room,6,6,Yes,\"A person is standing in the laundry room eating a sandwich and drinking a cup of coffee. The person sets down their food, and takes a box from on top of the dryer.\",box;clothes;cup;dish;doorway;food;mirror;sandwich;towel,A person is holding a cup and eating a sandwich. A person begins smiling. A person then drinks a beverage;A person is eating food and then drinks out of a cup. The person puts down the food and cup. Then takes some laundry detergent and walks away.,c107 0.00 35.10;c067 0.00 30.80;c062 24.50 30.20;c152 7.90 28.10;c106 3.60 27.70;c065 0.00 27.90;c061 0.00 27.90;c156 0.00 27.70;c002 28.00 40.00;c040 28.80 40.00;c068 23.50 29.50;c097 34.60 40.00;c118 0.00 28.30;c119 23.90 30.20;c043 28.40 40.00;c109 22.40 30.40,38.62\r\nIK72J,HR43,Kitchen,4,5,Yes,Person is washing stove while talking on phone then starts smiling.,door;oven;phone,A person cleans an oven while talking on the phone.,c019 4.00 41.00;c015 4.00 40.90;c008 1.60 6.60,39.83\r\nBA6DD,BYF9,Bedroom,6,4,Yes,A person is tidying the bed and then grasping a camera in the bedroom.,bed;camera,The person is meticulously making a bed by tucking the sheets around the corners of it and is also holding a heart shaped pillow.,c154 0.00 35.00,34.42\r\nW3DYV,1OHU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,The person is holding the doorknob and closes the door.  They start undressing and throw their hat in a box.,clothes;door;hat;shirt,\"Person holds doorknob, closes door, then takes off hat and takes shirt off.;A person closes a door.  The person then takes off their clothes.\",c141 0.00 3.30;c006 0.00 7.30;c155 4.30 32.00,31.29\r\nUJXBC,9PLL,Bathroom,6,7,Yes,A person runs into the bathroom door and hurts their knee. They sit down and inspect the damage in the mirror.,closet/cabinet;door;floor;mirror;phone/camera,A person runs down the hall and opens a door. They bang their knee and using a mirror sits down to examine it.,c008 1.70 8.10;c093 10.60 33.00;c151 5.20 16.00;c125 9.30 33.00;c016 13.60 25.90;c015 17.30 27.00;c097 0.00 5.00;c113 1.00 6.30,31.88\r\nQO49P,BYF9,Dining room,7,7,Yes,One person walks into the room and throws a pillow at a person who is having a cup of coffee.,coffee;cup;dishes;doorway;glass;pillow,A person walks into a dining room and throws a pillow on the ground. A second person picks up the pillow,c106 0.00 7.90;c080 2.20 7.80;c097 0.00 5.80,15.08\r\n3CFFJ,Z68L,Home Office / Study (A room in a house used for work),4,7,Yes,\"A person eats an apple sitting on a pillow, A person drinks milk while holding a broom.\",apple;broom;chair;desk;food;glass;pillow;table,\"A person is holding a broom and eating and apple. They put the apple down on a desk and pick up a glass and take a drink. They put the glass back on the desk;a person walks into a room, sits in a chair, is eating something and puts it down, and drinks milk from a glass.\",c098 1.50 34.00;c156 6.20 33.40;c151 4.00 10.40;c154 0.00 2.50;c009 0.00 6.20;c059 4.40 34.00;c106 31.40 34.00;c110 31.40 34.00;c061 19.40 33.40;c107 1.20 6.70;c063 16.20 23.40,33.38\r\nSD90M,9PLL,Living room,4,1,No,A person in the kitchen smiling by the sink. The begin running around the table.,table,A person is running several circles around something in the middle of the floor.,c150 9.60 34.00;c152 0.00 34.00,32.71\r\nQMTF2,UTMU,Basement (A room below the ground floor),6,7,Yes,A person in the basement is lying down on the ground with a blanket over them. They get up and begin throwing the blanket towards the door.,blanket;door;floor,person lays on floor covered in blanket sits up and throws blanket,c072 0.00 12.90;c124 0.00 13.00;c125 10.30 24.00;c146 6.60 13.90;c074 12.30 19.00,23.12\r\nY8ON2,3VLX,Bedroom,4,7,Yes,\"A person awakens on their bed, then throws a pillow on the floor.\",bed;blanket;floor;pillow,\"A person is lying in bed on a pillow. They stretch, and then throw the pillow on the floor.;a person is laying in bed and wakes up then throws a pillow\",c126 11.00 17.00;c134 0.00 17.00;c080 11.00 17.00;c146 10.00 15.00;c133 1.80 13.70,16.25\r\n22FJU,YA10,Laundry room,4,7,Yes,A person walks into the laundry room holding a picture.  They turn on the light and smile while pouring detergent in the washer.,clothes;detergent;light;picture;washing machine,\"A person walks into the room holding a picture, turns on a light, opens a washing machine, takes detergent from shelf and pours some into a washing machine, puts back the detergent and closes the lid to the machine.\",c104 6.40 11.10;c084 1.10 14.60;c005 9.20 32.00,30.67\r\nV3CWF,DXDI,Living room,5,7,Yes,A person is seen putting a book on a shelf. They then begin laughing at a picture.,book;picture;shelf,\"A person puts a book on a shelf, then picks up a picture, looks at it, then puts it back.\",c026 0.10 9.50;c084 5.90 28.00;c086 23.80 28.00;c088 6.00 28.00;c081 1.10 9.40;c083 6.20 10.60;c028 0.70 8.80;c085 6.20 28.00,26.71\r\nLKJE2,2RTW,Living room,6,6,Yes,\"A person in the entryway puts on their shoes. Then they grab a box from the floor, look around an smile, and turn out the lights as they leave.\",box;door;light switch;shoes,\"A person walks into a room, puts on their shoes, turns off a light, picks up a box, unlocks a door, open and shuts the door to leave.;A person puts on their shoes while standing. This person then picks up a shoebox and looks around. This person then turns out the lights and leaves the building, closing the door behind themselves.\",,34.25\r\n0UFGC,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,The person is opening the door knob in the entryway while closing the window before leaving.,door;window,\"A person opens a door, and opens a window. A person then goes out the door.\",c090 6.60 16.60;c141 0.90 8.00;c006 22.20 30.50;c008 0.00 7.20;c092 6.20 20.30;c089 5.70 16.30,30.79\r\nV2C4I,YA10,Kitchen,7,7,Yes,\"A person is standing in front of the refrigerator and holding a glass of water. They start to drink the water, spill some, and wipe it up with a towel.\",cup;dish;floor;glass;refrigerator;shelf;towel;water,\"Person standing by the refrigerator drinking water, the person spill the water then get a towel and wipe the floor.\",c033 8.40 21.10;c106 0.00 8.30;c127 11.40 19.30;c081 17.20 22.80;c034 18.80 27.80;c118 0.00 22.60;c037 20.20 27.50;c107 0.00 22.30;c154 15.30 20.70;c109 17.80 22.80;c035 7.90 12.30;c038 11.40 19.30,27.88\r\nH1J19,ZAWX,Garage,6,7,Yes,A person is standing in the doorway holding a sandwich in one hand and a blanket in the other.  The person sneezes and puts the sandwich down to pick up a bottle of medicine.,blanket;floor;food;medicine;sandwich;table;wall;window,\"A person holding a blanket is eating, then sneezes. They then put the food down on a nearby table and pick up some medicine, opening it.;Three people are in a room; one is standing looking out the window, one is lying on the floor, and one is eating. When the eating person sneezes, they put down the food and drink some medicine.\",c065 0.00 17.10;c070 0.00 27.80;c153 14.60 21.70;c009 17.80 23.20;c156 0.00 17.10;c062 17.80 23.20;c061 0.00 22.50,30.50\r\nZUKHZ,5LWB,Stairs,6,6,Yes,\"One person grasps a phone and a bottle of medicine, and another runs by eating a sandwich.\",cup;food;glass;medicine;phone;sandwich,\"a person is going up the stairs holding a drink. another person is going down the stairs, eating something while running down the stairs.\",c107 4.60 14.70;c065 12.20 17.50;c150 10.40 18.40;c156 12.20 17.70;c061 10.70 17.60;c128 4.00 13.50;c067 10.70 17.80,18.00\r\nS9SRM,2Q9D,Bedroom,7,7,Yes,A person walks into the bedroom carrying their coffee and sits down in a chair. The person kicks out there feet and starts drinking their coffee.,chair;coffee;cup;dish;door,A person is walking into their bedroom sitting on a chair drinking coffee.,c106 9.50 32.00;c107 0.00 32.00;c059 5.90 32.00;c151 5.20 10.50;c097 0.00 4.40;c008 0.00 3.10;c118 1.10 32.00;c006 0.50 6.70;c141 2.20 6.60,31.42\r\nSPDF6,UTMU,Living room,3,7,Yes,\"A person is throwing clothes into a bag. They wipe their face with a towel and throw the towel in the bag. They stand up, and leaving the bag where it sits, exit the room.\",bag;chair;clothes;towel,A person sitting in the living room throws towels and clothes into a bag as the person's dog watches.,c021 0.30 5.20;c033 12.40 23.30;c033 0.00 5.50;c035 0.00 2.80;c000 4.60 24.80;c002 3.60 24.40;c154 19.90 25.90;c021 0.60 10.10;c034 0.70 9.50;c036 2.70 11.50;c001 3.30 22.40;c003 0.60 13.90;c059 0.00 25.00;c004 0.00 16.10,30.00\r\nB2GXG,ID9V,Bedroom,4,7,Yes,\"A person who is lying down awakens, they get a towel from their wardrobe and begin snuggling it.\",closet;towel;wardrobe,A person gets up off the floor then opens a wardrobe and pulls out a towel and then holds it and rubs it on his face.,c033 16.20 36.00;c035 15.90 23.70;c154 11.40 22.20;c113 12.70 19.70,35.33\r\nV10LX,DXDI,Living room,7,7,Yes,\"a person drinks from a glass, then fixes the vacuum; while in the living room.\",cup;floor;glass;vacuum,\"Person standing, drinking from glass, puts glass on floor. Then turns and walks towards vacuum, touches handle, wiggles it, touch it with foot, bends down still touching handle to maneuver it.\",c106 0.00 10.40;c107 0.00 14.70;c109 8.70 15.50;c136 12.80 33.00;c137 12.60 33.00;c126 9.10 14.70,31.75\r\nHJ2JO,C7O9,Kitchen,6,6,Yes,A person by the refrigerator was eating then sneezing into a towel,food;refrigerator,A person is standing in a kitchen in front of a refrigerator eating. They walk into the living room and sneeze.,c156 0.00 8.40;c153 20.30 29.30;c061 0.00 11.60,29.62\r\n9K4HS,KFGP,Home Office / Study (A room in a house used for work),5,6,Yes,\"Smiling, one person puts down a cup of coffee and starts tidying homework in the office.\",coffee;glass;homework;paper;table,A person is cleaning and tidying up a desk area while standing.,c116 0.10 27.00;c012 0.00 27.00,26.04\r\nLZTH6,WG9D,Living room,5,7,Yes,A person is seen sitting on a couch looking at their phone. They begin playing a game and take a bite out of a sandwich.,food;game;phone;sandwich;sofa,\"A person is sitting on their sofa while playing around on their cellphone. They reach for some food that is sitting on the plate beside them, take a bite and put it back.\",c123 0.00 14.00;c065 7.70 12.60;c068 9.30 13.30;c069 6.30 13.00;c156 7.70 12.60;c063 6.40 13.30;c061 6.40 13.20,12.75\r\nDFD3T,T7C3,Pantry,6,7,Yes,A person is throwing some clothes on the floor.  Then the person begins fixing up the pantry's food.,cabinet;clothes;floor;food;groceries;shelf,A person is throwing some clothes on the floor of a kitchen then moves some boxes from a the counter to a cabinet.;A person is throwing some clothes on the floor. They start taking groceries off a counter and put them in a cabinet.,c061 12.00 17.30;c063 11.20 34.00;c001 0.00 9.50;c126 0.00 9.80;c062 12.00 32.50;c000 0.00 3.50;c003 0.00 10.00;c114 10.60 34.00;c081 10.70 20.30;c081 16.30 27.10;c130 10.70 20.30;c130 16.30 27.10;c082 25.30 34.00,32.58\r\nRXJ04,1S3H,Garage,5,1,No,A person is sitting and closing a blanket in a box.,blanket;box;door,A person walks into a room and folds up a blanket.  That person then puts the blanket in a box and leaves the room.,c039 36.80 52.20;c071 30.60 43.50;c075 8.80 36.70;c008 1.30 8.30;c006 4.60 10.70,59.71\r\nKS29V,EXQX,Hallway,4,4,Yes,\"A person is standing up, opening a door by turning the doorknob, while holding a pillow.\",bed;doorknob;doorway;pillow,A person is holding a pillow and grasping a doorknob.,c141 18.70 25.10;c076 0.00 6.20;c154 0.00 4.40;c135 0.00 2.60;c097 2.80 13.10,60.04\r\n00N38,KFGP,Hallway,7,6,Yes,\"A person walks down the hallway, undressing. The person throws their clothes onto a chair, then opens a door and walks through it.\",chair;clothes;door;hat;jacket,Someone walks through the hallway and removes their jacket and hat and places them on a chair. He walks off into a door in the hallway.,c001 8.30 18.20;c008 14.30 20.80;c155 2.30 20.00;c000 6.30 11.80;c141 16.90 21.60;c097 0.70 6.30,24.50\r\nMMV3D,G6WD,Laundry room,5,5,Yes,\"In the laundry room, a person is grasping a blanket and talking on the phone while trying to dress.\",blanket;clothes;phone,A person is on the phone while holding a blanket and dressing.,c070 0.00 7.70;c019 0.00 50.00;c148 4.40 42.00;c000 2.70 12.80;c015 0.00 7.40,49.08\r\nL2DR0,0RNU,Garage,7,7,Yes,\"A person in a garage throws a pillow, while holding a vacuum.\",pillow;vacuum,\"A person is vacuuming a pillow in the garage, the person then throws the pillow.\",c137 4.80 9.80;c076 0.00 19.50;c080 15.20 20.00;c138 0.80 13.50,26.42\r\n3DNW1,BYF9,Dining room,5,7,Yes,A person is in their dining room laughing while on their phone. They open a cabinet and grab a medicine bottle before running out of the room.,cabinet;chair;dish;medicine;phone;table,A person is sitting in a chair talking on the phone. Then they take medicine out of a cabinet and run out of the room.,c112 12.60 18.00;c113 9.40 14.80;c128 11.70 19.10;c150 15.10 20.00;c154 7.00 12.10;c120 11.00 20.00;c059 0.00 11.60;c118 11.20 20.00;c011 0.00 12.10;c019 0.00 20.00,18.88\r\nEJIKG,YA10,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"One person grasps a towel from the doorknob and sneezes into it, then sits and takes a book from a box.\",book;box;clothes;doorknob;towel,A person walk to a door and grabs a towel hanging on a doorknob. They wipe their face and put the towel in a box. They then sit down and read a book.,c027 12.90 19.30;c030 10.80 16.90;c032 14.00 27.80;c035 1.00 6.60;c151 8.90 14.60;c026 14.20 19.20;c000 3.30 8.50;c044 2.10 8.10,27.25\r\nHJJ32,D0RU,Basement (A room below the ground floor),5,7,Yes,A person is standing in the closet holding a bag.  The person throws the bag in the corner onto a table.,bag;corner;doorway;shelf;table;wardrobe,the person inside the room adjusting something in rack and packing his bag thrown in the bed and went out,c009 15.90 21.00;c024 15.90 21.00;c081 0.00 14.90;c020 0.00 20.70;c082 8.10 15.50;c097 24.60 30.80,31.42\r\nSLMQF,3H6W,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is undressing and then dressing while eating a sandwich, then putting a book on a shelf in a home office / study.\",book;chair;clothes;food;sandwich;shelf;table,\"A person takes off some clothes, Eats, Than puts clothes back on.;A person walks into the room, undresses, and puts the clothes down, eats a bite of sandwich, gets redressed, takes a book from a chair and places it on a shelf, then leaves again.\",c065 6.70 24.10;c030 22.10 27.10;c156 7.70 24.90;c148 13.70 20.70;c001 4.70 9.40;c028 23.10 29.90;c081 23.30 29.80;c148 9.90 24.40;c155 1.50 9.70;c069 6.20 13.90;c068 21.60 25.90;c002 10.90 19.90;c009 20.80 25.30;c063 17.90 23.60,33.38\r\nLQO5R,D0RU,Recreation room / Man cave,5,5,Yes,A person is smiling while watching television while sitting on the sofa.,chair;sofa;television,\"A person is watching television, takes their glasses off, then walks over to a chair and sits down.\",c132 4.90 34.00;c123 25.00 34.00;c151 23.60 30.00;c059 23.10 34.00,33.46\r\nHAIVQ,BPRF,Stairs,7,6,Yes,\"A person is throwing clothes down the stairs, then laughing and eating food on the stairs.\",clothes;food;stairs;towel,\"A person is throwing clothes down some stairs, they then begin eating something and laughing.\",c000 0.00 16.70;c001 7.60 14.70;c004 0.00 12.70;c061 17.00 32.00;c156 17.40 29.10;c149 11.30 19.20;c003 7.40 14.70;c036 0.00 3.60;c063 8.80 16.90,31.21\r\n92UB5,3531,Bedroom,6,6,Yes,Person is sitting at a desk in their bedroom contemplating their homework. They then get up grasping a pillow and throw it at the window looking upset.,blanket;book;desk;homework;paper;pillow;table,A person is doing their homework at a desk. A person then throws a blanket on a bed.,c011 0.00 26.60;c077 24.20 32.00;c145 0.00 25.70;c154 19.10 28.60;c032 0.00 23.10,30.92\r\nPP5KJ,YA10,Laundry room,5,7,Yes,\"A person in their laundry room takes a vacuum from a box. The person starts laughing, then leaves the room.\",box;clothes;vacuum,\"A person walks into a laundry room, and takes a vacuum out of a box. The person puts the vacuum in front of the dryer and fixes the box, then walks away.\",c137 5.00 16.00;c044 5.00 16.00;c149 5.80 23.70,27.96\r\nY6ZJI,YMXV,Home Office / Study (A room in a house used for work),6,5,Yes,A person throws grasps a small box and puts it into a bag. The person then throws the bag on a shelf.,bag;chair,A person sits down and puts something in a bag. The person then gets up and continues to ready his bag.,c020 8.20 22.50;c154 15.40 21.30;c023 0.00 22.70;c059 1.30 19.20;c021 1.00 9.00;c022 15.50 33.00;c151 15.00 20.80,31.79\r\nP36YW,3H6W,Living room,6,6,Yes,A person is seen opening the doorknob going into the living room.  They are seen standing and holding a pillow.  They put the pillow down on the table and are seen drinking a cup of coffee.,cup;dish;doorway;knob;pillow;shelf;table,The person is walking into a living room holding a pillow then sits the pillow down to drink from a coffee cup.,c076 7.50 20.30;c106 14.60 28.00;c110 14.80 23.00;c107 16.80 28.00;c141 1.40 8.10;c077 14.20 19.70;c109 23.20 28.00;c009 23.20 28.00;c097 4.00 9.20;c081 14.80 20.30;c120 16.40 21.80;c078 8.60 21.50,27.21\r\nKEPDQ,WG9D,Dining room,4,7,Yes,A person holding a dish with food on it while standing by a table.,dish;food;table,A person is wiping a dish before placing it on the table.,c118 0.00 6.00;c119 2.00 6.00;c009 2.00 6.00;c061 0.00 6.00;c062 2.10 6.00,5.04\r\nQQUI7,C7O9,Kitchen,6,6,Yes,\"One person runs into the kitchen with a box laughing, while another person sits with a laptop by a cabinet.\",box;clothes;laptop;shirt,\"A person looks at their laptop while another walks around with a box. The person pulls a shirt out of the box;Person #1 is watching a video on their laptop laughing. Person #2 walks in, running in circles holding a box. Person #2 places the box on the counter, laughing, and opens it up to reveal a shirt.\",c041 13.60 18.70;c044 14.70 32.00;c150 0.00 13.20;c040 0.10 12.10;c042 7.70 13.30;c051 0.00 32.00;c149 20.80 32.00;c000 25.90 32.00;c002 27.30 32.00;c152 0.00 13.80,30.58\r\nK47J5,Z68L,Home Office / Study (A room in a house used for work),7,7,Yes,A person in a home office takes of their shoes and takes their medicine while watching a video on their phone. The person then eats a cookie.,chair;dish;medicine;phone;shoe,A person holds onto a phone and sits in a chair and takes off their shoes and then takes some medicine.,c015 0.00 15.40;c129 14.20 29.00;c151 0.00 8.40;c128 13.10 25.70;c118 20.60 28.80;c057 6.30 14.20;c119 24.00 28.80;c059 4.40 29.00,28.21\r\nSXFG6,KFGP,Dining room,7,7,Yes,\"A person is holding a pillow and laughing. Taking the broom, the person begins running out of the room.\",broom;chair;pillow;table,\"A person sitting at a table hugs a pillow while laughing. They get up and leave.;A person sitting on chair holding a pillow, is laughing to themselves, they then get up grab a broom and leave.\",c076 0.00 22.30;c100 15.80 22.40;c149 0.00 16.90;c154 15.20 20.20;c059 0.00 18.90;c011 0.00 18.90;c098 16.40 25.00;c078 0.00 21.30,23.62\r\n3CGO0,5LWB,Bedroom,7,3,Yes,One person is snuggling with a book and another person leaves after tidying some clothes in a box.,bed;book;box;clothes;door,Person sitting on a bed looking a magazine when another person comes in to look in a laundry hamper before going out.,c041 3.70 9.20;c026 0.00 22.00;c135 0.00 22.00;c032 0.00 22.00;c008 15.70 21.80;c004 11.10 16.20;c097 14.60 20.90,21.42\r\nXNT6F,5LWB,Laundry room,7,7,Yes,\"A person is seen standing in the laundry room fixing up some clothes. They put a pillow on the ground and notice a camera, which they begin inspecting.\",camera;clothes;floor;phone;picture;pillow;shoes,A person is folding clothes. They pick up a pillow and throw it on the floor. Then they bend down and pick up a camera off the floor and take a picture.,c080 7.20 13.60;c018 9.60 18.20;c015 11.10 26.00;c087 13.10 26.00;c004 0.00 14.20;c001 0.00 11.40;c126 8.60 13.20;c002 0.00 10.80,25.42\r\nOLELC,UO0Z,Kitchen,7,7,Yes,A person is drinking coffee in the kitchen while cooking on the stove.,counter;cup;food;spoon;stove;table,\"The person takes a sip from a cup. The person moves something around on the stove, then takes another sip;A person is standing and drinking out of a coffee cup. They set the coffee cup down on the counter and pick up a spoon and start stirring something on the stove. Then they put the spoon down and pick the coffee cup back up and drink.\",c106 0.00 5.80;c107 1.00 5.70;c110 1.80 7.00;c147 3.10 10.70;c109 1.80 6.90;c009 1.90 6.90,15.96\r\n7WJUW,2RTW,Living room,6,6,Yes,Person opens a drawer and takes out a blanket. Person sits down on the sofa and snuggles with the blanket for a moment. Person notices the phone ringing. Person gets up and answers the phone.,blanket;cabinet;couch;door;phone;sofa;something;table;tv,\"A young person getting something out of a cabinet under the TV.;A person is kneeling down taking a blanket from a cabinet, they then take a phone from a table and answer the phone.;A person is taking a blanket. The person sits on the couch and wraps the blanket around them. The person answers a phone call.\",c008 0.00 4.90;c072 9.10 33.60;c123 11.50 36.00;c112 4.00 9.90;c070 2.00 12.00;c073 5.00 12.00;c151 9.00 18.00;c074 28.00 34.00;c113 0.00 9.00;c018 29.10 36.00;c019 29.10 36.00;c015 29.10 36.00,34.50\r\n7YMK9,2RTW,Living room,6,6,Yes,\"A person tidies some items on a table. The person folds a blanket and places it on the couch. They leave the room, closing the door behind them.\",blanket;couch;door;table,A person cleans up a table and then folds a blanket and sets it on the couch before opening the door and leaving the room.,c012 0.00 19.20;c006 36.30 41.00;c008 34.10 39.90;c075 15.80 35.60;c070 38.50 41.00;c141 38.50 41.00;c071 38.50 41.00,40.46\r\nKZ45F,2RTW,Living room,6,6,Yes,\"There is a young person snuggling on the couch with a large towel, the couch is next to a standing cabinet that holds movies and toys.\",blanket;phone;sofa,A person lying on the sofa snuggles with a blanket.;A person is laying on a sofa snuggling with a blanket.,c122 0.00 32.00;c070 0.00 32.00;c072 1.10 32.00,30.88\r\n9WLBQ,XXN8,Kitchen,2,7,Yes,A person is standing over the sink. A person begins putting groceries in the refrigerator.,bag;dish;eggs;food;groceries;lettuce;refrigerator;sink;sour cream,\"A person washes some dishes in the sink. They take some food out and put it somewhere else;Someone is in their kitchen washing dishes. They open the refrigerator and grab eggs, lettuce, sour cream and something else.\",c020 13.30 32.70;c143 12.10 19.60;c121 0.00 13.30;c063 12.90 34.00;c061 13.60 19.10;c062 14.80 20.90,32.88\r\nUKMK6,P6LJ,Kitchen,5,6,Yes,\"A person pulls a pillow out of the dryer, then snuggles with it. The person smiles, then puts the pillow in a cabinet.\",cabinet;pillow;shelf,A person took a pillow out of a dishwasher. The person snuggled with the pillow for a few seconds before placing it inside of a cabinet.,c076 14.60 50.10;c077 42.20 54.00;c078 17.90 42.10;c079 12.70 20.80;c112 47.80 54.20;c113 39.50 46.00;c081 39.20 53.10,55.25\r\n6HHCU,9Y7F,Stairs,5,5,Yes,One person walks up the stairs and takes a picture from a small table. Another person is smiling on the phone.,arm;camera;papers;phone;picture;stairs,\"A person walks up stairs and takes pictures with their phone including a picture of the other person on the stairs.;Person walking upstairs, stoops down and takes a picture of other person holding paper, stands up, turns around, raises arm, turns back around and looks at camera.\",c015 0.00 31.00;c087 10.80 17.30;c152 11.90 17.40;c154 12.00 17.90;c016 9.00 31.00;c154 8.80 31.00;c087 10.40 31.00,30.46\r\n2RRSO,ZAWX,Laundry room,5,6,Yes,A person is standing in the laundry room grasping a sandwich.  The person closes the lid to the washing machine and picks up a bottle of medicine before leaving.,bottle;clothes;food;medicine;sandwich;washing machine,\"a person holding a sandwich, opens the washing machine, lifts some clothes then puts them back then picks up a bottle from a shelf above the washing machine\",c067 0.00 31.00;c128 16.90 31.00;c154 0.00 31.00;c004 4.40 9.00;c061 4.60 31.00;c005 2.20 10.60,29.75\r\nTW3RS,1TZV,Garage,7,7,Yes,\"One person grasps a book and a mirror, then starts laughing into the mirror.\",book;chair;mirror,A person is picking up a book from a table and looking at themselves and smiling in a mirror.;A person grabs a book and a mirror from a chair and laughs in the mirror.,c094 3.90 28.00;c026 1.00 28.00;c149 4.10 28.00;c152 4.60 10.20;c093 1.50 28.00;c096 3.50 28.00;c030 0.70 5.10,26.96\r\nR0ZAU,BYF9,Kitchen,4,5,Yes,The person is grasping at the sink and then smiling at the laptop in the kitchen.,dishes;sink,A person is washing dishes in the sink.,,16.17\r\nKO80I,9PLL,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,One person is sitting holding a camera and a glass while propped against a pillow by the door.,camera;cup;door;floor;glass;phone;pillow,A person is sitting down on the floor holding a cup and a camera. They set the cup down on the floor and then pick it back up. Then they adjust a pillow that's behind them. They look down at the camera they're still holding.;Person sitting on the floor with a glass in hand using a camera after putting a pillow behind the back.,c015 0.00 33.00;c125 0.00 33.00;c077 18.00 23.10;c107 1.50 11.60;c016 10.20 19.50,32.00\r\nVMRAV,1OHU,Garage,7,7,Yes,A person enters a garage and turns on the light.  The person grabs a damp towel from a table and begins washing their car with it.  After a few seconds of washing the car the person throws the towel back onto the table and exits the garage.,door;light;table;towel,person turns on light grabs a napkin and wipes a toy and walks out the door,c104 7.50 17.60;c009 25.40 35.40;c097 36.60 40.00;c008 36.60 40.00,38.54\r\nCNVZX,8IOD,Bedroom,1,7,Yes,\"One person lies under a blanket, snuggling it. Then this person awakens and turns on the light.\",bed;blanket;light;pillow,\"A person laying in bed, wakes up stretching, then turns on the light.;A person awakens in a bed under a blanket with their head on a pillow. The person puts on glasses, and turns on a light.\",c104 0.00 7.50;c146 2.90 12.80;c133 3.30 13.50;c134 0.00 11.60,30.50\r\nMJ1T7,ZAWX,Stairs,3,7,Yes,A person is seen watching the doorway waiting for someone. They then begin running towards the doorway while carrying groceries.,bag;doorway,\"A person is looking at someithing on the stairs then walks to another room holding a bag;The woman in the video was searching for something that was on the floor.  After several seconds of searching, she left and walked into another room\",c154 0.00 24.30;c020 24.50 31.00;c023 20.10 30.50;c097 22.40 28.10,30.46\r\nXIUQJ,KFGP,Home Office / Study (A room in a house used for work),6,7,Yes,A person in a study is drinking a glass of water and puts it on the desk. They take off their shoes and begin washing them.,chair;cup;desk;glass;shoe;table;towel;water,The person is sitting down at a desk and drinking from a glass. They take their shoes off and start cleaning them.,c053 8.40 36.00;c107 0.00 11.10;c106 0.00 11.00;c011 0.00 36.00;c056 7.70 17.30;c054 21.20 26.30;c009 4.90 10.60;c057 21.60 26.60;c059 0.00 36.00;c038 10.10 21.70,35.08\r\n1BXYR,Z755,Living room,6,5,Yes,A person is washing a mirror. Another person is holding a book and laughing.,book;chair;mirror,A person is washing a mirror as another person reads a book and laughs from a chair.,c032 1.70 7.00;c095 0.00 7.00;c059 0.00 7.00;c149 0.00 4.40;c026 0.00 7.00;c029 1.30 7.00,5.62\r\nFDVBR,84PN,Dining room,6,7,Yes,\"A person stands in the dining room, looking at a picture on a shelf. The person turns and leaves.\",picture;shelf,\"A person is in a dining room, examining a picture. The person puts the picture on a shelf and leaves the room.\",c084 0.00 29.20;c086 19.20 27.00;c083 0.00 24.50;c081 19.70 27.50;c088 0.00 28.90,28.54\r\nM5XBZ,8718,Bathroom,6,6,Yes,\"A person is washing a mirror. They pick up a towel and dry the mirror, and smile.\",mirror;towel,A person is washing a mirror in a bathroom,c095 0.00 22.20;c038 0.00 23.50,31.08\r\nCUII4,DXDI,Pantry,7,7,Yes,\"A person pulls items of their wardrobe from the pantry where they've been insanely storing them. They dress and undress the same sweater, and finally pick up a pillow, also stored in their pantry. They walk away, eating the corner of the pillow.\",blanket;cabinet;clothes;clothing;floor;pantry;pillow;sweater,\"A person walks to a pantry, takes out some clothes from it, tosses one on the floor, and puts on another after taking it off again. Then proceeds to chew on a blanket.;A person opens a cabinet and takes some clothes out of it. They put a sweater on. They then take the sweater off and throw it on the floor. They take a pillow out and start chewing it\",c078 33.90 41.00;c155 24.80 34.80;c001 5.70 36.00;c002 0.40 13.10;c148 4.20 28.60;c113 0.00 5.80;c126 5.30 13.70;c076 32.00 41.00;c003 3.00 34.80,40.25\r\nJ88MJ,ZAWX,Bedroom,6,3,No,The person sneezed into a towel. They laugh. They turn off a light.,clothes;doorway;light;towel,\"A person sneezes into some clothes in a doorway.;Person stands in front of closet dancing and laughing. Person grabs a towel begins to sneeze, put towel up to face, starts laughing. Person throws towel down, turns off light, walks out room into hall then turns around, smiles and holds up hand.\",c033 10.30 21.90;c035 10.70 19.60;c105 22.20 28.40;c149 15.20 21.50;c034 8.90 22.60;c153 8.30 18.40;c152 15.00 23.50;c097 22.50 28.80;c000 8.40 22.10,30.62\r\nKR4EB,0KZ7,Basement (A room below the ground floor),6,6,Yes,A person is sneezing on dishes while another person is laughing at a towel.,dish;towel,A person holding a basket with dishes sneezes while another person holding a towel stands next to them.,c118 0.00 29.00;c153 0.00 29.00;c149 0.00 29.00;c033 0.00 29.00,28.04\r\n52MV9,P6LJ,Living room,7,6,Yes,\"Person walks through doorway into dining room, holding a sandwich. Person takes a bite of the sandwich and begins tidying up dining room table.\",camera;dish;door;food;lock;sandwich;shelf;table,\"A person holding a plate open a door and walks out.The person returns and closes the door and locks it.The person puts the plate on a shelf.The person takes a bite of a sandwich and starts picking paper up on a table.;A person walks out a door with a plate of food, walks back into the room, sets the plate down and walks into the kitchen eating a sandwich\",c009 32.60 39.10;c097 4.40 11.50;c067 7.90 14.00;c118 0.00 5.50;c065 22.40 32.70;c069 6.80 24.60;c156 22.40 32.70;c006 1.20 8.40;c008 5.10 11.50;c119 13.90 21.40;c061 15.00 72.00;c012 28.70 67.40,70.62\r\nJBHOL,PO5L,Hallway,5,7,Yes,A laughing person runs into their hallway grasping dishes and a pair of shoes.,bowl;dish;shoe,The person walks down the hallway with shoes in hand into a room then exits the room with the shoes and a bowl and walks back down the hallway.,c118 5.60 13.30;c120 5.60 13.30;c053 5.70 12.30;c150 5.40 13.50,20.58\r\nWCERV,D0RU,Bedroom,4,7,Yes,A person is snuggling in a blanket while sitting at a desk doing homework.,blanket;chair;homework;laptop;magazine;paper;pen;table,\"A person is sitting in a chair adjusting their blanket. Then they reach to their desk and pick up a magazine and pen to write something down. Then they put those items back on the desk.;A person is sitting in a chair at a table, they grab some homework off the table and start doing it, they then put the homework down and start working on their laptop.\",c070 1.30 28.40;c072 3.00 28.70;c117 7.60 23.00;c059 1.60 32.00;c071 1.40 8.40;c115 9.20 32.00;c009 25.50 32.00;c052 28.40 32.00;c145 16.50 31.00,31.00\r\nAF8IH,PKND,Kitchen,5,6,Yes,A person is putting clothes in the wardrobe. A person is standing at the sink washing dishes.,closet;clothes;dish;sink;wardrobe,A person tidies up items in a wardrobe cabinet. The person walks to the kitchen sink and begins washing some dishes.,c004 0.00 4.90;c121 11.80 33.00;c113 1.10 7.30;c114 0.00 5.60;c119 15.10 20.70;c120 22.70 33.00;c118 12.00 33.00,32.42\r\nRUH7A,5LWB,Home Office / Study (A room in a house used for work),5,4,Yes,A person is throwing a pillow in the office while taking medicine.,chair;glass;medicine;pillow,\"A person is holding a bottle of medicine. A person then sits in a chair.;A person is sitting at a table and takes a pill and quickly takes a drink of water from a cup at the table.   A few seconds later, the person angrily throws a pillow on the floor.\",,22.42\r\nBPHWQ,6RE8,Bedroom,6,6,Yes,\"A person is sitting in the living room holding their shoes.  The person puts on their shoes, takes the keys off the desk, and walks out the door.\",chair;desk;door;shoe;table,\"A person ties their shoe while sitting in a chair before getting up.;A person is sitting in a chair and putting on their shoes, then leaving the room.\",c011 0.00 26.50;c154 22.70 29.60;c059 0.00 26.50;c055 0.00 16.10,31.00\r\n94HKL,UTMU,Garage,3,7,Yes,Person was fixing a broken doorknob in the basement. Person needed more help. Person began opening a browser on laptop that was sitting on the table. Youtube might be a good source to get an instructional video.,floor;laptop;metal object,\"Person is working with some kind of tool, puts it down, picks up laptop and is looking at something on laptop.\",c047 10.40 31.00;c048 12.80 20.00;c049 10.80 16.00;c050 10.70 15.70;c051 16.00 31.00;c052 16.00 31.00;c125 0.00 31.00,30.46\r\n5D3X6,BYF9,Stairs,7,6,Yes,Two people are walking down the stairs taking. One person realizes they need to tie their shoe and the other person is holding a mirror.,shoes;stairs,Two people are walking down the stairs. They look down and see one of their shoes is untied.,,17.21\r\nYX0RG,PKND,Laundry room,6,6,Yes,\"Person is standing in laundry room drinking coffee, another person is snuggling with shoes.\",coffee;cup;dish;shoe,\"A person is walking around a room drinking coffee, while another person walks around the room and adjusts shoes.\",c106 0.00 32.00;c055 6.80 14.60;c107 0.00 4.70;c107 4.80 11.80;c107 18.20 23.60;c056 4.60 15.20;c118 0.00 4.70;c118 4.80 11.80;c118 18.20 23.60,31.42\r\nGZSTG,LTAC,Dining room,4,6,Yes,A person is tidying dirty dishes and a glass from a table and then standing under a doorway in a dining room.,cup/glass/bottle;dish;doorway;table,A person is washing some dishes and then goes and stands in a doorway.,c121 0.00 38.20;c118 5.90 12.10;c119 6.90 13.10;c109 21.10 28.10;c009 6.90 13.10;c009 31.40 38.00;c107 18.00 26.90,40.42\r\nRZY2I,WG9D,Bedroom,5,7,Yes,A person is standing in their bedroom undressing. They grab a bag and open a window before leaving.,bag;bed;clothes;coat;jacket;window,\"The person comes in and removes a coat, opens a window afterwards and proceeds to grab a bag and head out.;A person is taking off a jacket.\",c020 5.00 12.00;c023 4.00 9.00;c090 5.00 10.00;c155 0.00 5.00,11.29\r\n4L1E0,DXDI,Pantry,7,7,Yes,\"A person closes the pantry door, then they walk to a box and take their shoes off.\",box;cabinet;door;shoes,\"A person closes a cabinet door and takes off their shoes.;A person walks into the room, and takes their shoes off placing them next to a box.\",,16.62\r\nEW6RX,HR43,Bedroom,6,7,Yes,A person in the bedroom is standing while on the phone. The are laughing and eat a sandwich.,food;phone;sandwich,A person talks on phone while eating a sandwich.,c019 0.00 31.00;c065 0.00 31.00;c067 0.00 31.00;c156 2.50 7.30;c015 0.00 3.80,30.17\r\n2EPFZ,PKND,Bedroom,6,7,Yes,A person closes the closet then sits in a chair to put shoes on. Another person is tidying the bed.,bed;blanket;chair;closet;shoe,A person is opening a door. The person then closes the door. Another person is cleaning the bed. The person then begins to put on their shoes.,c055 16.10 31.30;c113 1.20 11.50;c059 13.30 32.20;c073 12.00 33.00;c074 15.70 23.80;c056 14.00 31.20;c151 13.60 19.30;c054 17.70 24.30;c075 13.50 33.00;c112 7.00 14.90,31.92\r\n293L4,EXQX,Kitchen,7,4,Yes,A person is cooking on a stove and then lying on the floor doing homework in the basement.,food;pot;sink;stove,A person is standing in the kitchen during some food in a pot. They then walk over to a sink and add water to another pot.,c147 0.00 19.60,60.75\r\n3CTZL,3H6W,Living room,5,7,Yes,\"A person is in a living room, putting on some clothes and closing a bottle of medicine.\",clothes;jacket;medicine;table,A person puts a jacket on and checks some medicine.,c148 2.00 16.00;c128 12.00 24.20;c001 2.50 15.70;c009 18.50 23.70;c000 3.50 10.10,27.25\r\nRVKKS,DXDI,Basement (A room below the ground floor),4,7,Yes,\"A person is lying on the floor on a towel. They are doing yoga. They sit up, smile, take a drink from a nearby water glass, and get up and leave.\",floor,A person is lying on the floor stretching. A person is sitting on the floor.,c124 0.00 14.80;c125 12.30 26.90;c154 22.30 29.10,28.71\r\nHL4V4,9PLL,Other,5,7,Yes,A person is seen washing their desk with a towel. The person then begins working on their desk while holding a pillow.,desk;floor;laptop;pillow;table;towel,A person is cleaning off a desk with a towel. The person is holding a pillow. The person puts a laptop on it and opens it.;There is a person wiping off a lap desk with a towel.  That same person puts a laptop on it and opens it.,c076 0.00 34.00;c011 0.00 34.00;c012 0.00 18.40;c038 0.00 18.20;c052 15.20 34.00;c051 29.60 34.00;c050 14.10 21.50;c033 0.00 17.60;c049 13.60 21.90;c047 12.90 20.90;c014 0.00 34.00;c125 0.00 34.00;c048 17.00 23.40;c009 14.10 21.90;c034 0.00 17.70,33.08\r\nNMC5N,ZAWX,Hallway,3,7,Yes,A person is talking on the phone while holding a cup of coffee. The person puts the cup of coffee down and starts running down the hallway back to their room.,cup;doorway;phone,The person is talking on the phone and holding a cup of coffee. The person puts the cup of coffee down. The person walks from the kitchen to another room.,c019 0.00 33.00;c107 0.00 14.00;c109 11.00 16.00;c097 15.10 26.60;c015 0.00 33.00,31.88\r\nMCNRZ,QB52,Dining room,7,7,Yes,A person is drinking a cup of coffee while fixing their laptop.,chair;coffee;cup;dish;laptop;table,A person sitting at a table fixes a laptop. The person drinks from a coffee cup and sets it back on the table.,c052 0.00 31.00;c109 17.80 22.70;c011 0.00 31.00;c106 15.00 24.00;c110 14.10 23.30;c009 17.80 25.80;c120 15.30 22.70;c047 0.00 31.00;c014 0.00 31.00;c048 0.00 2.80;c059 0.00 31.00;c119 18.00 24.00,30.04\r\n0O81T,P6LJ,Bedroom,6,6,Yes,\"While standing in the middle of old dishes and a broken vacum, someone started sneezing while drinking tea.  While the person is sneezing, the tea ends up being poured onto the dishes.\",dish;glass,\"There is a person drinking coffee from a mug.  That same person sneezes a couple of times;Person standing against a wall in a green dress, eating something and sneezing.\",c118 3.70 32.00;c153 11.50 21.10;c107 2.80 30.60;c106 5.50 11.90,31.04\r\n5I330,5LWB,Laundry room,6,7,Yes,A person is undressing in front of the sink.  The person then grasps a box of detergent off the shelf.,box;clothes;shelf;sink,\"The person takes off their shirt in the bathroom, places it on the sink, then takes a box off the shelf.\",c041 13.10 18.00;c155 0.60 13.70;c043 11.00 18.00,17.04\r\nJ4VCR,4OHY,Living room,7,7,Yes,Person is opening box of cookies then starts eating them while watching television.,chair;food;television,A person is sitting in a chair watching tv eating what looks to be chips;A person sits in a chair watching TV while eating food.,c156 10.40 21.50;c059 0.00 30.00;c061 2.60 30.00;c132 0.00 30.00,29.46\r\nHGK8M,9Y7F,Living room,4,4,Yes,One person puts some groceries by the door as another person tries to fix the window.,book;bowl;floor;window,One person is holding a bowl and another person is fixing the window. The person holding the bowl starts cleaning the floor.;A person is holding a book and putting it on the floor while another person is washing a window.,,30.29\r\nVRY89,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"In the entryway, a person is standing and looking at a picture on the wall. Then they close the door behind them.\",chair;door;picture;shoes,A person is is looking at a picture. A person then closes a door.;A person is staring at a picture and closing a door.,c006 26.30 32.00;c088 2.10 32.00,31.38\r\n6PZJ3,D0RU,Kitchen,5,7,Yes,One person walks in wrapped in a blanket and puts some food and a book by the sink.,blanket;book;dish;doorway;food;sink;table,\"a person wrapped in a blue blanket walked through a living room into a kitchen, dropped off a book and another item and then left the kitchen\",c026 0.00 13.60;c028 8.90 14.20;c072 0.00 20.00;c119 10.00 14.80;c062 10.00 14.80;c061 0.00 14.60;c009 10.00 14.80;c097 4.60 10.60,30.79\r\nMWUIN,HJJ4,Garage,6,7,Yes,\"A person runs into the garage holding a pillow. The person puts the pillow on a chair, sits down and drinks from glass.\",chair;cup;glass;pillow,A person carrying a pillow throws it in to a chair and sits on it.The person reaches over and grabs a glass and takes a drink of a liquid .The person places the glass back on table.,c106 8.00 21.00;c076 0.20 11.90;c080 2.10 8.20;c107 5.50 21.00;c110 5.10 12.70;c077 0.30 8.00;c059 5.50 21.00,20.50\r\nW7WJR,9PLL,Other,5,7,Yes,A laughing person is holding a blanket while sitting on a box. They turn on the light and leave.,blanket;clothes;doorway;floor;light,\"A person is sitting on the floor next to a doorway holding a blanket (or towel?).  The person stands up, turns on the light, and leaves the room.\",c104 14.70 21.60;c070 15.90 31.80;c154 14.40 32.00;c151 0.90 9.30;c125 3.70 17.00;c000 0.00 32.00;c097 23.20 31.50,30.54\r\nYA7M0,ZEM0,Garage,5,7,Yes,A person is sitting and folding their wardrobe. They take a sip of coffee and sneeze as they set the cup down.,chair;clothes;coffee;cup;glass;wardrobe,\"While sitting, a person tidies up clothes and then takes a sip of water from a glass.;A person is sitting in a chair and folding clothes, then takes a sip of coffee from a cup.\",c000 0.00 12.70;c004 0.00 36.10;c110 32.10 38.70;c106 34.00 42.30;c001 0.00 36.00;c004 18.00 36.00;c002 0.00 12.40;c002 14.80 28.80;c059 0.00 48.00,47.21\r\nWZRLQ,D0RU,Garage,7,7,Yes,\"A person sits in the garage, watching television. The person smiles, and takes a glass of water from a nearby shelf.\",chair;cup;dish;glass;shelf;television;water,\"There is a person sitting in a chair flipping through T.V channels, then grabs a glass off the shelf\",c106 30.30 36.00;c110 27.70 34.10;c132 0.00 36.00;c059 0.00 36.00;c120 28.60 34.00;c118 30.30 34.80,34.88\r\nFOA8D,HJJ4,Stairs,6,7,Yes,\"A person is standing on the stairs, holding a pair of shoes. The person sets the shoes down on a chair and begins playing with their phone.\",chair;phone;shoe;stairs,The person is standing on the bottoms step of stairs and places a pair of shoes on a wooden chair. The person then starts texting on their phone.,c015 3.70 23.00;c016 4.70 22.50;c053 0.00 7.20;c054 2.00 7.70,22.38\r\nXI9FM,T7C3,Bedroom,6,5,Yes,Person is drinking a glass of water as they rub their hair with a towel. Person sneezes as they pick up the clothes off the chair.,cup;glass;hair;towel;water,\"A person is standing still, drinking from a glass of water while they dry their hair with a towel.\",c106 0.00 33.00;c107 0.00 33.00;c033 0.00 33.00;c144 0.00 33.00,32.21\r\n6SWTR,KFGP,Closet / Walk-in closet / Spear closet,7,6,Yes,A smiling person start running into their closet. They sit on the sofa and read a book.,book;closet/cabinet;sofa,\"Person runs into the room and looks in the closet. Person then picks  a book up off of the sofa, and sits down to read it.\",c026 13.40 27.00;c027 16.20 27.00;c032 18.90 27.00;c123 14.00 27.00;c151 13.00 27.00;c114 2.50 14.10;c030 13.50 27.00;c025 22.30 27.00,25.79\r\nBRLNM,S053,Bedroom,4,6,Yes,A person sits on their bed eating food. After eating the food the person falls back lying on their bed drifting off to sleep.,bag;bed;food,A person is sitting on a bed and opens a bag of food and begins eating. The person closes the bag a goes to sleep.,c134 27.80 32.00;c135 0.00 30.30;c156 3.90 20.70;c020 0.00 30.00,31.08\r\nBLB6G,HR43,Living room,5,5,Yes,\"A person is awakening on a sofa, then playing, then cleaning a glass in a living room.\",cup;dish;glass;sofa;table,A person is awakening on a couch then tidying up a glass plate.,c111 14.80 31.30;c122 0.00 8.00;c146 3.60 14.70;c009 26.80 32.00;c118 13.00 32.00;c012 10.50 32.00;c123 6.30 32.00;c121 15.10 31.20,31.29\r\n1XK68,6RE8,Living room,5,6,Yes,\"A person walks into the entryway, smiling and grasping a broom. The person walks to the window and opens it.\",broom;window,Person coming into a room with a broom going to a window to look out and then walks out again.,c098 1.40 31.80;c092 14.20 23.30,31.96\r\nLDST7,D0RU,Bathroom,4,6,Yes,\"A person is opening their medicine cabinet in their bathroom, taking medicine out, closing the cabinet, shutting off the light, and leaving the bathroom.\",box;closet/cabinet;doorway;medicine,\"A person is standing in a bathroom. They take a box, then leave.\",c128 4.90 17.50;c043 5.20 11.10;c040 5.00 18.40;c097 11.10 16.80;c113 0.00 4.80,31.21\r\nJ7D0D,ZFCJ,Pantry,7,7,Yes,Person is standing in doorway eating sandwich and fixing pantry door.,cabinet;door;food,a person opens a cabinet and repairs it;The person opened a cabinet and begins to do something with their hands.  It's not visible exactly what they are doing with their hands.,c113 0.00 4.20;c156 0.00 27.00;c007 0.00 27.00;c061 0.00 27.00,26.29\r\nRQUGW,HJJ4,Garage,5,7,Yes,A person is opening a box by a window and then turns it upside down to pour out all the contents.,box;counter;window,\"a person opens up a box and dumps it out on the counter.;A person opens a box and turns it upside down, dumping its contents on the floor.\",c041 0.00 6.50;c044 3.50 10.80,9.92\r\n9A90E,6RE8,Kitchen,4,4,Yes,A person taking groceries out of the refrigerator and throwing them away.,bag;cup/glass/bottle;food;groceries;refrigerator,\"A person takes some food from the fridge, throws it somewhere, takes a bottle and sets it on top of the fridge, then takes more food and sets it down somewhere.\",c143 1.10 8.40;c130 19.80 30.20;c063 3.50 20.80;c109 15.20 21.40;c020 20.50 28.90;c023 20.10 25.80;c064 6.80 12.50;c024 21.00 30.30;c021 21.50 29.10,31.25\r\nC3JAS,ENC8,Hallway,4,6,Yes,\"A person works their way down their hallway with a broom.  They stop at a doorway and sneeze violently, grasping the door frame for support.  They continue their way down the hall.\",broom;doorway;floor,\"A person is sweeping a hallway and doorway with a broom, they then start sneezing and leave the room\",c098 0.00 48.90;c099 41.20 50.30;c102 0.00 45.50;c153 14.60 22.30;c127 0.00 17.80,52.62\r\nTJHFA,G6WD,Bedroom,4,7,Yes,A person is snuggling on the bed and then walking with a towel wrapped around their head in the bedroom.,bed;dog;head;towel,\"A person walks over to a bed, lays down, and starts petting and cuddling a dog. The person then stands up and walks around the bed continuing to pet the dog occasionally.\",c134 4.90 30.70;c154 29.10 33.90,53.04\r\n8Z9GW,XXN8,Closet / Walk-in closet / Spear closet,5,7,Yes,A person is standing in their closet dressing for work. The person sits on the chair and folds a blanket before leaving.,blanket;chair;clothes,\"The person gets dressed then picks up a blanket, sits down, and folds the blanket.\",c073 8.30 16.80;c075 12.50 23.30;c059 11.90 20.80;c148 0.00 14.00;c151 12.50 21.00;c070 12.40 32.00,30.67\r\n0XRD1,YMXV,Bathroom,6,6,Yes,\"A person is reading a book in the bathroom.  The person closes the book and puts it down next to the sink.  The person picks up a glass of water and takes a sip, then lies down on the floor.\",book;cup/glass/bottle;floor;water,\"A person is reading a book, then drinking water and then exercising on floor\",c025 0.00 7.40;c026 0.00 7.30;c027 0.00 3.90;c028 0.00 10.20;c106 8.90 21.70;c124 21.50 32.00;c107 7.80 19.60;c116 2.70 9.50;c125 18.50 25.00,31.00\r\n1GKWJ,T7C3,Stairs,7,7,Yes,A person laughing at a camera starting running for their homework.,camera;floor;homework;paper;phone;picture,A person is holding a camera and taking a picture they then work on some homework on the stairs.,c015 0.00 22.00;c145 19.60 36.00;c150 15.30 20.70;c087 5.40 15.60;c016 0.00 17.40;c117 18.00 27.30;c125 20.80 36.00;c017 12.70 17.70;c151 19.70 25.20,35.25\r\n7GIOE,9PLL,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person stands in the hallway, grasping their laptop. The person pulls up a slideshow and watches pictures as they pass over the screen.\",laptop;picture,A person is using their laptop to look at pictures and to type on the keyboard.,c088 4.10 35.00;c047 0.00 35.00;c051 0.00 35.00;c052 0.00 35.00,33.79\r\nNDLY5,ZAWX,Bedroom,7,7,Yes,\"A person lays in bed, snuggling a pillow close to their chest. They get out of bed and walk over to a mirror and begin undressing out of their pajamas.\",bed;clothes;hair;mirror;pillow,A person is laying in bed with a pillow before getting up and undressing.,c078 0.00 8.10;c134 0.00 14.50;c155 17.30 29.70;c080 9.60 16.50;c094 22.50 27.20;c076 0.00 14.10;c096 22.00 27.70;c146 4.40 16.80;c001 25.50 30.50;c144 15.80 21.30,30.58\r\n5QXCO,3VLX,Laundry room,5,7,Yes,\"After throwing clothes in washer, person picks up book that is lying in floor, before leaving room.\",book;clothes;washer,\"The person walks in with clothes in hand. The person puts the clothes in a washing machine and starts it. the person then picks up a book and flips through it, then walks out with it.\",c026 19.50 35.00;c032 22.20 35.00;c001 0.50 18.60;c027 22.20 28.90;c000 0.00 18.80;c005 13.60 22.30;c001 12.40 19.80;c030 20.80 35.00,33.50\r\nP2HRN,UTZR,Kitchen,6,7,Yes,A smiling person is in the kitchen putting up groceries and they knock over a glass of water and they quickly grasp a towel and wipe up the spill.,bag;food;groceries;shelf;towel,\"PERSON WALKS IN WITH A BAG, THE PERSON STARTS PUTTING GROCERIES AWAY THAT WAS IN THE BAG, PERSON CLEANS OFF COUNTERTOP AND WALKS AWAY\",c020 0.00 5.30;c130 1.60 20.70;c038 20.30 32.50;c081 3.60 8.50;c081 7.60 12.40;c062 0.00 16.30,36.17\r\nE2EHR,0KZ7,Laundry room,5,7,Yes,\"A person takes a bite from their sandwich, then places it on the table and begins putting laundry into the washing machine.\",clothes;food;sandwich;towel;washer,A person is eating a sandwich  then putting clothes in a washer machine.,c065 0.00 3.90;c005 2.70 28.00;c156 0.00 3.90;c001 2.60 24.80;c037 3.40 28.00;c004 3.20 28.00;c061 0.00 5.00,26.92\r\nKAU5T,YMXV,Hallway,6,5,Yes,\"A person drinks water from a glass and puts it down on a shelf, then runs out of the room.\",bed;cup;glass;shelf;water,\"A person sits on a bed and drinks some water. The person then gets up and places the bottle down, and runs out the door.\",c106 0.00 14.40;c150 21.50 33.00;c154 14.50 22.70;c135 0.00 18.10,31.75\r\nX95MU,D0RU,Hallway,7,7,Yes,A person wearing shoes is sitting and opening the lens on their camera.,camera;chair;clothes;phone;picture;shoe,\"A person is walking with a camera in their hands while putting on shoes, they then sit down on a chair and take a picture.;The person puts on their shoes then sits in a chair holding a camera. They take a picture.\",c015 0.00 37.00;c151 6.90 13.70;c059 8.40 37.00;c087 19.10 37.00;c055 0.50 8.20;c016 0.00 37.00,36.38\r\n0M1ZU,ZSRZ,Bedroom,7,7,Yes,A smiling person enters a bedroom sneezing and holding a book and a blanket.,blanket;book,\"A person walks in the room smiling, throws a book, and a blanket on a bed, and then sneezes.\",c071 0.00 3.40;c031 0.00 6.40;c152 1.50 8.60;c153 6.30 11.00;c028 1.60 8.50;c026 0.50 7.80;c070 0.60 11.00;c075 0.20 11.00,10.46\r\nU2B8U,Z755,Pantry,5,4,Yes,Two persons are watching a light in the pantry. Both persons have a broom. They are drinking.,coffee;cup;shelf,a person drinks coffee while looking at a shelf with another person;2 people are drinking coffee in the kitchen,c106 2.50 15.60,33.08\r\n8XC4G,3H6W,Bedroom,6,7,Yes,\"A person is lying on a bed and laughing at a book they're reading. The sit up, pick up some clothes, and dress.\",bed;blanket;book;clothes;couch;shirt;sofa;sweater,\"A person is laying on a couch under a blanket reading a book.  The person sits up and puts on a sweater.;A person is laying in bed reading a book.  They sit up, take off blankets and put a shirt on.\",c026 0.00 11.10;c032 0.00 8.90;c149 1.70 8.90;c073 5.10 11.80;c001 9.40 18.00;c002 8.10 13.90;c028 5.00 12.30;c134 0.00 11.20;c122 0.00 11.80;c025 4.60 9.40;c029 3.40 8.60;c135 6.80 18.00;c148 8.80 16.30;c152 1.90 18.00;c000 8.50 16.10,17.38\r\nDQEC3,C7O9,Kitchen,6,6,Yes,Person puts groceries away in the pantry.  Person pulls phone from pocket and answers it.  Person starts to smile.  Person opens bag of chips and eats while on the phone.  Person ends call and leaves the phone on a pantry shelf.,bag;cabinet;dishes;food;groceries;phone;shelf,\"A person opens a bag, takes groceries out and puts them on a shelf then begins talking on a phone. While talking, the person takes a bag off the shelf and begins food taken from it.;This person is in the pantry on their cell phone all while unloading groceries. They then take a small snack for themselves.\",c114 0.00 31.00;c114 0.00 8.30;c019 6.80 29.40;c020 0.00 10.20;c156 15.40 29.10;c081 0.00 7.10;c021 11.70 17.20;c061 27.80 31.00;c130 27.80 31.00;c063 27.80 31.00,29.75\r\n7B50N,YA10,Living room,7,7,Yes,A person is snuggling on the sofa. They turn on a light and watch tv.,pillow;sofa;television,Person is lying on sofa cuddling with pillow then gets up and sits back down on sofa and turns television on.;A person is holding a pillow laying on a couch they get up turn the light on then sit down and turn the tv on,c132 27.20 31.00;c122 0.00 31.00;c076 0.00 10.10;c078 0.00 10.10;c079 14.00 18.60;c123 10.20 31.00;c151 8.90 16.10;c154 6.40 12.00,30.38\r\nMOREL,C7O9,Kitchen,6,6,Yes,A person opens a pantry cabinet to take out dishes for the upcoming meal.,bowls;cabinet;counter;cup/glass/bottle;dish;door;groceries;light;pantry;plates;table,\"A person opens the cabinet. They take some dishes of a shelf and put it on the counter.;A person enters the pantry and retrieves several bowls and plates;Man opens a kitchen pantry door, picks up some dishes and sets them on the counter by the stove.\",c113 0.00 4.40;c130 18.50 24.80;c119 18.50 24.80;c120 0.70 22.00;c009 18.50 24.80;c141 0.00 2.70;c104 2.10 6.60;c118 5.10 24.80;c109 18.00 26.80;c114 6.50 30.00;c008 0.00 4.40;c097 0.10 7.90,29.42\r\nVQP1L,HR43,Kitchen,6,7,Yes,\"A person is standing with a broom in their hand, looking confused. They begin playing with a blanket, and throw it up into the air.\",blanket;broom;floor,A person tries to sweep with the wrong end of the broom. They flip it over and use the right end. They pick up a blanket and throw it back on the ground.,c070 15.40 24.00;c073 15.60 22.70;c074 17.70 23.80;c098 0.00 24.00;c102 0.00 24.00;c127 3.70 24.00;c127 11.30 19.50,23.12\r\nU7E1T,KQI6,Bedroom,6,5,Yes,A person is putting a glass down and another person is laughing and holding a broom.,bed;broom;cup;floor;hockey stick,\"One person sets down a cup on the floor, while another person is moving a hockey stick back and forth.\",c109 0.30 8.60;c102 1.70 32.00;c098 1.70 32.00;c127 1.50 23.10;c135 0.00 32.00;c107 0.00 8.50,30.75\r\nYOVS5,0KZ7,Hallway,4,6,Yes,\"A person is in a hallway lying on the floor, they then get up and leave through a doorway closing the door behind them.\",door;floor,\"A person is lying in the middle of a hallway when they awaken and walk into a room and close the door;A person awakens on a floor. The stand up, fix their clothes, walk into a room and close the door.\",c124 0.00 4.40;c097 6.70 20.80;c006 15.80 22.90;c154 5.60 13.70;c146 1.10 8.50,23.00\r\nMEYZ5,R1OT,Living room,6,6,Yes,A person is sitting on a couch playing on their laptop. The person gets up and closes the cabinet above their head.,bed;cabinet;head;laptop;paper;sofa,A person sitting on a sofa is doing their homework on a laptop.  They stand up and open a window on a cabinet behind their head.,c123 0.00 18.20;c047 0.00 17.60;c052 0.00 15.70;c113 15.40 25.40;c145 0.00 15.40;c154 13.90 19.40;c051 0.00 19.90;c135 0.00 18.50;c049 13.30 18.20,29.96\r\nYUCU2,UO0Z,Kitchen,6,7,Yes,\"A person is eating and cooking at a stove, then getting a glass of water in a kitchen.\",cabinet;cup;food;glass;pot;shelf;spoon;stove;water,Person cooking on the stove while eating food out of a dish then picks up a glass and drink water;A person is stirring a pot of food with a spoon. They eat some food and then get a glass out of a cabinet and fill it with water from the faucet. Then they take a drink.,c106 17.00 22.00;c156 0.00 15.70;c061 0.00 3.00;c110 10.50 16.00;c147 0.00 10.00;c113 9.50 15.00;c112 10.40 16.70;c081 15.40 21.80,20.67\r\nNLWBW,D0RU,Bedroom,7,7,Yes,\"A person leaves some groceries on the counter, while they go turn off the light in the garage. After they put away the groceries, they drink some water because they're thirsty.\",bag;cup/glass/bottle;door;groceries;light;table;water,A person closed a door and put a bag of groceries on a table. A person walked across a room and turns off a light. A person moves the bag again and takes a drink of water.,c009 1.20 7.60;c105 15.20 21.60;c130 28.60 35.20;c106 32.90 44.00;c130 0.00 13.20;c006 0.00 5.90;c022 2.10 8.50;c022 6.80 11.90;c023 6.20 10.80;c020 0.00 6.30;c020 6.40 10.80,43.04\r\n75HNO,9Y7F,Living room,5,5,Yes,One person who is tidying the area takes a pair of shoes and starts sneezing. Another person is working on homework.,bench;book;chair;floor;homework;paper;shoe,\"The person on the left is working on writing in a notebook. The person on the right squats down and picks up a pair of sneakers, cleans them and puts them back.;Two people appear to be in living room. One is sitting and writing something. The other person is kneeling down and cleaning a pair white shoes.\",c115 0.00 31.00;c059 0.00 31.00;c054 0.00 4.40;c032 0.00 31.00;c056 0.00 4.40;c053 10.10 31.00;c154 1.80 7.00;c151 4.00 8.90;c125 0.00 5.50,30.12\r\nD7KU2,XXN8,Hallway,6,7,Yes,A person is sitting in the doorway.  Then a person is putting a broom in a corner.,broom;doorknob;doorway;floor,A person is in the doorway then begins to grab a broom on the other side of the door.,c098 5.40 14.10;c154 2.10 7.70;c099 7.70 14.10;c125 0.00 6.10;c141 3.30 8.80,31.00\r\nHGLHS,D0RU,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person runs into the kitchen through the doorway, holding a pair of shoes. The person begins laughing.\",doorway;shoe,Person walks through a hallway holding some shoes looks back and walks back where from Person came from while flashing a smile.;A person walks around the house smiling holding a pair of shoes then walks past a doorway.,c097 1.50 6.70;c149 7.00 17.50;c152 5.80 17.80;c053 0.00 22.00,30.08\r\nWCLGY,4I2W,Bedroom,4,7,Yes,A person is laughing and throwing clothes on the bed.,bed;clothes;towel,A person is smiling and holding laundry. They shake out two pieces and thrown them on the bed and then wipe their face with a towel and throw it on the bed. They continue throwing the rest of the laundry on the bed.;A person is throwing clothes on a bed and wiping their face.,c003 14.40 22.20;c004 7.00 15.80;c000 0.00 31.00;c003 4.30 10.10;c038 19.70 26.10;c001 0.00 30.50,29.96\r\n5EEFP,Z68L,Home Office / Study (A room in a house used for work),5,7,Yes,A person walks in holding a towel then begins to sit down and wash their dirty shoes.,chair;shoe;towel,\"PERSON WALKS IN WITH A TOWEL, SITS DOWN AND PICKS UP SHOES OFF THE FLOOR AND STARTS CLEANING THEM UP, AFTER THE PERSON IS DONE THE PERSON STANDS UP AND WALKS OFF\",c033 0.00 31.80;c151 6.50 12.80;c054 0.00 4.20;c035 0.00 2.60;c154 0.60 5.20;c059 0.60 9.70;c053 6.30 32.00;c038 6.70 28.10,30.83\r\nOSHMX,D0RU,Bedroom,5,5,Yes,One person sits drinking coffee by the window before putting a small mirror in a bag.,bag;coffee;cup,\"A person drinks from a can, puts some stuff in a bag, and sits down.\",c106 6.90 12.10;c020 0.80 34.00;c021 4.80 19.80;c151 28.50 33.50,32.92\r\nSMS5G,JVLO,Entryway (A hall that is generally located at the entrance of a house),4,4,Yes,A person is grasping a glass and then throwing clothes under the doorway in the entryway.,clothes;cup;doorway;floor;glass;towel,\"A person walks into a room, takes a glass off the window, grabs clothing and throws it into another room.\",c003 20.80 27.10;c097 0.00 6.50;c107 5.20 32.00;c110 5.00 32.00;c002 12.80 27.30;c035 11.70 17.10;c126 20.90 25.70;c036 20.80 26.00,31.17\r\nLDBDD,D0RU,Living room,6,6,Yes,One person runs through the doorway and throws a pillow at a person eating a sandwich by a table.,chair;floor;food;pillow;sandwich;table,A person is sitting in a chair eating a sandwich. Someone walks in and throws something at the person and leaves.,c011 0.00 31.00;c156 0.00 29.10;c152 14.10 22.40;c149 16.80 24.10;c067 0.00 31.00;c065 0.00 31.00;c126 13.00 18.70;c061 0.00 31.00;c152 13.30 31.00;c059 0.00 31.00;c149 25.40 31.00,30.04\r\nJA3MN,DXDI,Bathroom,4,5,Yes,One person runs into the bathroom holding a glass and throws a towel over the doorknob.,counter;cup;dish;door;glass;table;towel,\"A person opens the door and runs in the room. They pick up a glass from a table and put it on a counter.  They pick up a towel and open the door, placing the towel on the doorknob.  Then they leave.;Person walks into bathroom, pick up a cup, puts it by the sink, grabs a towel and hangs it on the doorknob and walks out\",c033 6.20 16.50;c035 6.20 11.10;c150 2.20 8.90;c008 0.60 6.20;c034 5.00 18.00;c109 5.00 11.00;c141 12.00 18.00;c009 5.00 11.00;c119 6.80 11.30;c097 1.00 5.90;c118 1.00 11.30,23.79\r\nUTNL9,KFGP,Hallway,5,7,Yes,A person is in the hallway putting on shoes and holding a broom.,broom;floor;shoe,\"A person stands in a hallway, holding a broom and puts on shoes.\",c055 4.80 28.30;c098 0.00 30.00;c056 3.50 8.60;c127 0.00 5.00;c053 3.60 22.60,28.71\r\n80ADD,QB52,Living room,4,3,Yes,A person is watching television by a table.  They begin laughing and eating something.,beverage;cup;glass;remote;sofa;table;television;tv;water,\"The person is sitting on the couch with a remote control in their hand. They then pick up a beverage and take a drink from it. They ten set the beverage back down.;This person is watching tv, drinks some water, then goes back to watching tv.\",c149 14.50 20.70;c109 8.40 15.90;c132 0.00 31.00;c009 8.00 14.00;c106 4.00 12.00;c110 3.00 8.00;c123 0.00 31.00;c152 1.30 7.00,30.17\r\nZ6IAE,Z68L,Bathroom,5,6,Yes,A person looks out the window while laughing in the bathroom. A person then opens the door after dressing.,clothes;door;window,\"A person enters the room, looks out a window then dresses before opening a door.\",c092 5.30 18.60;c008 25.20 32.20;c148 16.20 27.70;c090 7.90 17.60;c000 17.70 23.40;c097 23.10 36.10,37.17\r\n0NM06,D0RU,Living room,6,6,Yes,A person walks over to a television and turns it off. The person then puts a book onto their desk and sits down.,book;chair;desk;table;television,\"A person is unplugging a item. The person then grabs a book, sits down and begins to read it.\",c009 15.40 20.90;c011 17.70 23.50;c027 15.50 20.90;c132 18.50 33.00;c059 19.50 25.00;c151 18.50 24.60;c032 19.80 33.00,31.50\r\nX0CVU,1OHU,Recreation room / Man cave,6,7,Yes,\"A person, holding a bad of food, looks out the window and laughs. The person takes a drink from a coffee mug.\",bag;blinds;chips;coffee;cup;dish;food;glass;something;window,\"A person is moving the blinds to look out the window. The person is holding a bag of chips, a glass, and something I cannot identify. The person uses the something to move the blinds.\",c090 0.00 6.80;c092 0.00 12.00;c107 1.80 35.00;c061 1.60 35.00;c020 1.40 35.00;c118 0.00 35.00;c106 15.20 23.40,34.25\r\n9AFQ7,P6LJ,Bedroom,6,6,Yes,A person is standing in front of their wardrobe. The person is eating a sandwich while drinking a glass of water.,closet;dish;door;food;glass;sandwich;wardrobe;water,\"This person closes a door, opens a closet, then eats and drink something.\",c065 13.10 47.60;c106 24.80 33.20;c106 15.60 46.70;c113 7.80 14.20;c006 2.10 10.50;c062 3.10 47.90;c110 15.30 46.70;c063 3.10 14.00;c119 3.40 18.10;c061 2.60 48.40;c107 14.60 46.90;c156 16.50 46.70;c141 8.00 14.70;c120 3.10 46.90;c109 15.60 46.40;c008 8.00 14.90;c118 3.40 50.00,48.75\r\nIUXP8,ZTV2,Kitchen,6,7,Yes,\"A person is holding a pillow while laughing, then they put it down and start cooking on a stove.\",dish;food;pillow;pot;stove,\"Person coming int the kitchen up to the stove while hugging a pillow, and then puts the pillow down on the floor to start stirring some food on the stove.\",c078 0.00 17.00;c147 16.10 30.00;c076 0.00 18.00;c118 14.70 30.00;c152 2.00 9.20,28.62\r\n2U0GH,9PLL,Kitchen,6,7,Yes,\"A person in their kitchen is undressing by taking their jacket off. They begin washing some dishes in their sink, while pouring some coffee out that they find in a glass nearby.\",clothes;dish;sink,A person is seen undressing then washing dishes in a sink.,c155 0.00 19.30;c121 16.00 33.00;c118 15.50 33.00;c154 0.00 33.00;c000 10.50 17.40;c002 0.00 17.40,32.38\r\nTPW1Z,R1OT,Recreation room / Man cave,5,7,Yes,A person is sitting and laughing at a television while drinking coffee in a recreation room / man cave.,coffee;cup;sofa;television,A person is sitting on a sofa drinking coffee and laughing at something they find funny in the television program they're watching.;Person is sitting on a couch watching television and drinking coffee at a relative fast pace.,c106 0.00 31.00;c107 0.00 31.00;c131 3.10 24.70;c149 2.70 25.10;c123 0.00 31.00;c132 0.00 31.00;c152 2.40 14.50,29.96\r\nRRS54,QB52,Bedroom,3,5,Yes,A person is lying down and snuggling under a blanket while using a laptop.,bed;blanket;laptop;pillow,\"person lying on the bed with blanket, doing some work in the laptop in between  putting hand on face;A person lying in bed working on a laptop.The person reaches up and rubs his eyes and proceeds to work on the lap top.\",c072 7.50 14.20;c051 0.00 31.00;c052 0.00 31.00;c134 0.00 31.00;c076 0.00 31.00,30.04\r\nHLUMT,XXN8,Bedroom,6,6,Yes,\"A person is working by the bed, putting polish on the floor. Taking the rug and moving it behind her, the person grasps for an object under the bed.\",bed;floor;shoe;towel,A person is seen bending down on the floor taking a book from under the bed.;A person cleans the floor with a towl and the pulls out shoes from under the bed.,c127 0.00 17.50;c151 0.00 4.00;c154 15.90 21.80;c056 13.40 18.00;c033 0.00 4.40;c053 13.40 18.90;c126 14.40 19.30;c125 0.00 20.70,30.04\r\n10LP3,AH2J,Bedroom,7,7,Yes,\"A person takes a blanket out of the wardrobe in a bedroom and throws it on the ground, then leaves the room.\",blanket;closet;doorway;floor;pillow;shelf,\"A person is walking towards a closet and taking a pillow from a shelf and throwing it on the floor then walking through a doorway.;A person is walking to a closet, grabs a blanket off of the shelf and throws it on the floor. The person then walks out of the room.\",c070 5.40 16.10;c073 4.90 16.10;c074 11.20 16.10;c097 0.00 3.80;c079 4.90 16.10;c126 11.20 16.10;c071 6.30 15.90,19.88\r\nZ5AZW,LTAC,Hallway,7,7,Yes,A person in the hallway holding a towel. The person throwing the towel on the shelf while standing next to a picture.,doorway;hallway;kitchen;shelf;towel,\"A person walks from a hallway into a kitchen, and throws a towel at a shelf.\",c033 0.00 9.60;c036 5.90 10.80;c097 0.00 3.80,30.33\r\nCJ0U1,4OHY,Kitchen,6,6,Yes,\"A person is taking a sandwich out of the refrigerator. Then, closing the door and smiling, the person turns the light off and leaves with their sandwich.\",doorway;food;light;refrigerator;sandwich,A person is opening the refrigerator and take out a sandwich. A person then turns off the light.,c105 18.80 24.30;c067 4.30 29.40;c142 3.80 10.90;c152 7.40 28.60;c143 0.00 5.80;c061 3.80 30.00;c063 2.00 9.80;c097 20.60 30.00,29.33\r\nKGMA5,H8N1,Kitchen,4,4,Yes,\"A person is standing in front of the cabinet. The person selects a piece of food, closes the cabinet door, then eats the food.\",cabinet;food,A person opens a cabinet and takes out some food.,c113 0.00 5.30;c063 9.50 20.10,20.75\r\n0TL9Y,Z68L,Bathroom,6,7,Yes,\"A person is in their bathroom dressing. They open the cabinet, take a picture from inside, and leave.\",clothes;cloths;doorway;jacket;picture,\"A person is putting on a jacket in the bathroom. The person is getting a piece of paper from the bathroom shelf.;A person puts on a jacket. Then they grab something from a shelf, and leave.\",c084 28.30 33.00;c148 0.00 18.30;c097 29.40 33.00;c001 0.00 6.90;c000 0.00 6.60;c002 0.00 3.60,31.88\r\nA7BUX,T7C3,Dining room,7,7,Yes,A person is sitting and eating a sandwich. Then the person stands up with their coffee and starts tidying.,bag;book;coffee;cup;food;sandwhich;sandwich;table,Person is sitting on teh kitchen table eating some food then grabs a cup of coffee and a book then gets up from the table.;A person is sitting at a table eating a sandwich with a cup of coffee they get up and clean the table up.,c065 0.00 15.70;c156 0.00 15.20;c010 0.00 14.40;c154 9.10 19.10;c107 9.60 34.00;c011 0.00 14.70;c061 0.00 11.80;c032 11.50 23.80;c026 16.60 28.60;c020 27.30 34.00;c028 18.40 26.60;c067 0.00 11.60;c012 10.10 34.00,32.58\r\nBW5MF,9OK1,Home Office / Study (A room in a house used for work),5,6,Yes,A person stands in the room and turns on a light.  Then the person starts running around a chair in circles.,chair;light,A person turns on a light .The person starts running around a chair several times in a sweat shirt and pants in complete circles .,c104 0.00 3.80;c150 0.20 21.00,20.38\r\nA58I2,YMXV,Bedroom,7,7,Yes,One person runs in with a towel around their waist to find another person sitting and opening a bag.,backpack;bag;chair;doorway;towel,\"A person places a towel on their shoulder and leaves through a doorway, another person sits on a chair and opens a backpack and sorts through it.\",c020 29.30 33.00;c021 9.10 14.90;c033 0.00 2.60;c034 0.00 4.10;c059 29.90 33.00;c097 30.30 33.00;c059 6.90 33.00;c097 2.00 7.30,32.04\r\nD8HN1,0KZ7,Bathroom,6,6,Yes,\"A person holding a sandwich and drinking a cup of coffee in front of their bathroom mirror makes a silly face at themselves.  They then leave the bathroom, closing the door behind them using one of their feet.\",coffee;cup;door;food;glass;mirror;sandwich,\"A person is drinking a cup of coffee and eating a sandwich in front of a mirror, they then close a door with their feet.;A person is in the bathroom looking into a mirror while the drink coffee and eat a sandwich they walk out of the bathroom and use their foot to close the door.\",c106 0.00 15.50;c094 1.60 6.90;c065 7.20 13.10;c006 23.90 28.90;c156 1.60 7.40;c096 0.00 20.50;c061 0.00 29.00;c097 22.70 28.10;c107 0.00 27.80;c152 15.20 20.30,27.62\r\nFQLS1,2RTW,Bedroom,6,6,Yes,A person is working a their black laptop and smiling for a camera.,corner;desk;hair;laptop;table,\"A person is sitting at a desk working on a laptop and smiling.;A person is sitting at a small desk in the corner of a room using a laptop computer with a mouse. The person turns their head, smiles, and then continues working on the laptop.\",c059 0.00 31.00;c011 0.00 31.00;c014 0.00 31.00;c051 0.00 31.00;c052 0.00 31.00;c152 6.80 13.10;c144 23.70 31.00,30.42\r\n33OVO,2RTW,Living room,6,6,Yes,\"The recreation room has a desk with a laptop and a chair in one corner. The person walks into the recreation room, they close the door behind them. The person is undressing as they walk over to the desk. They are in their underwear as they take a seat and start playing around with the laptop.\",chair;clothes;desk;door;laptop;table,\"A person opens a door and closes it. The person then takes off a shirt and sits down at their desk. The person starts looking at their computer.;A person opens a door, takes off clothes, sits in a chair and works on a laptop on a desk\",c011 16.30 31.00;c051 16.60 31.00;c151 12.20 19.90;c155 5.60 14.40;c000 6.30 14.70;c001 10.40 16.20;c097 0.10 8.50;c003 11.00 16.80;c141 0.00 7.00;c052 17.70 31.00;c006 3.20 9.10;c008 0.00 7.00,30.25\r\nXTACZ,2RTW,Basement (A room below the ground floor),6,6,Yes,\"A person is in a recreation room removing their shoes and undressing, they then put the TV on and turn off the light.\",camera;clothes;laptop;light;refrigerator;shoe;sofa/couch;television,\"A person takes off shoes and starts undressing, then turns off a light and sits down;the person in the room playing, removed his shirt and switched on the TV beside him and sat before the TV\",c105 18.20 24.00;c155 5.00 19.50;c057 0.00 9.20;c003 5.80 23.90;c132 22.10 31.00;c123 22.20 31.00,29.92\r\n5FDHU,PKND,Entryway (A hall that is generally located at the entrance of a house),3,4,Yes,A person is closing a door with one hand while eating a sandwich with the other and leaving the room.,door;food;sandwich,\"A person is eating a sandwich, while another person is standing, while the other person walks through the door.\",c065 0.20 6.10;c067 13.60 20.30;c156 0.20 6.10;c141 20.90 26.10;c061 0.00 35.00;c097 31.60 35.00;c141 4.80 9.70;c061 0.40 5.80;c063 0.00 3.50,34.21\r\n3V2HJ,BYF9,Recreation room / Man cave,5,6,Yes,A person puts their bag on the table while standing and drinking a soda. Another person comes in with a sandwich.,bag;cup;glass;sandwich;table,\"A WOMAN IS HOLING IN FRONT OF A TABLE, SHE PUTS SOMETHING ON THE TABLE AND DRINKS FROM A WATER BOTTLE WHILE A MAN PASSES BY BEHIND HER.\",c009 7.40 15.00;c106 11.70 23.00;c022 4.80 14.80,21.58\r\n63TU2,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,4,Yes,A person is playing in front of window and then pouring water into a plant on a shelf in the entryway.,dish;doorway;glass;plant;water;window,A person walks to some windows and locks them.  They bend down to pour water from a metal pitcher into a plant on the floor then walk through a doorway.;a person touching a window then bends down to water a plant and walks out of the room,c097 28.00 36.00;c120 18.80 23.70,34.62\r\nOA6XR,D0RU,Living room,6,6,Yes,A person is taking their homework to their room. They stop in the hallway and fix a painting on the wall. The person then grabs a blanket from the closet and walks to a room.,blanket;book;picture,A person walks over to the TV holding a book before carrying a blanket into another room.;Someone is walking to the living room and fixes a picture thats above the tv. They grab a blanket from a chair and walk into a room.,c070 14.20 23.40;c073 14.80 24.90;c026 0.00 24.50;c071 15.50 22.50,30.75\r\n27IOX,X5XO,Basement (A room below the ground floor),6,7,Yes,A person is taking pictures with a camera and then walking with a broom in the basement.,broom;camera;phone;picture,The person is turning in a circle as if trying to get a good picture while holding a camera.,c098 0.00 33.00;c087 0.00 33.00;c015 0.00 33.00,32.04\r\nWTPQ6,BYF9,Bedroom,7,7,Yes,A person is working on a laptop while another person is putting a broom away.,broom;chair;laptop,\"A person is sitting in a bedroom on a chair looking at a laptop. A second person appears on screen, picks up a broom, and carries it away.\",c098 11.00 17.00;c100 8.90 14.90;c047 0.00 17.00;c052 0.00 17.00;c051 0.00 17.00;c059 0.00 17.00,16.12\r\n9X8YH,WG9D,Dining room,3,7,Yes,One person runs in with a box of food and puts it down by a phone and a jar of medicine.,book;box;table,The person is placing a box onto a table.;A person walks over to a table and sets a book down on the table.,c009 0.00 4.00;c028 0.00 4.00;c042 0.00 5.00,3.58\r\nE33IO,1TZV,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person sneezes while pushing a vacuum then they laugh as the leave through the doorway.,door;vacuum,\"A person is using a vacuum, grasping a doorknob and leaving through a doorway.;A person running a vacuum clean in a hall. The person gets the sweeper hooked on a rug and sneezes and starts laughing.The person turn and walks out the door\",c097 14.40 20.00;c137 0.00 13.00;c149 8.50 13.80;c141 11.50 20.00;c008 11.40 17.20;c006 15.10 20.00,18.67\r\nSG2HN,C7O9,Bedroom,6,6,Yes,\"A person is standing at a mirror, dressing. Another person is taking pictures with a camera.\",bed;camera;chair;clothes;clothing;hoodie;mirror;phone;shirt,\"A person is playing with a phone, while another person is putting on a shirt.;A person using their phone videos another person who puts on a hoodie in front of a mirror.;A person is sitting on the edge of the bed and appears to be either playing a game on a phone or operating the camera. During this time, another person enters and puts on a front zip hooded sweatshirt while standing in front of a dresser and looking in the mirror.\",c015 0.00 32.00;c148 9.60 32.00;c096 9.60 32.00;c016 0.00 32.00;c152 0.90 11.20;c087 0.00 32.00;c002 1.80 13.00,30.58\r\nOOEME,C7O9,Bedroom,6,6,Yes,\"In the bedroom, a person is playing the television and watching it.  Another person is dressing by the wardrobe and is putting on their shoes.\",bed;clothes;shoe;television;tv,\"A person gets dressed while another sits on bed and watched TV.;two people are in a living room, one is putting on shoes and a hoodie while another is sitting and watching television\",c148 3.30 16.70;c135 0.00 32.00;c132 0.00 32.00;c055 13.30 32.00;c002 0.00 4.20;c000 0.00 12.10,30.92\r\n54CFS,C7O9,Bedroom,6,6,Yes,A person smiles into the mirror on the cabinet. Another person holding a sandwich starts laughing.,food;mirror;sandwich,\"A person is eating a sandwich, while another person is looking in the mirror. A person begins to sneeze.;A person is looking into a mirror, another person is eating a sandwich and drops it.  That person begins laughing.\",c094 0.00 32.00;c065 0.00 32.00;c096 0.00 32.00;c152 0.00 32.00;c149 11.40 32.00;c156 0.00 32.00;c061 0.00 6.30,30.71\r\nYHPLU,JVLO,Living room,6,6,Yes,One person is eating in the doorway while another is taking the chair.,bag;chair;doorway;food,a boy is holding a bag of chips and eats them while nodding his head. a person walks over with a chair and sits down and takes the bag of chips,c059 21.00 25.50;c156 11.50 24.30;c151 28.60 34.00;c061 0.00 34.00;c021 0.00 7.40;c020 0.00 34.00,32.58\r\nDYXY5,YMXV,Bathroom,3,6,Yes,\"One person takes medicine from a hall cabinet by a picture, then smiles in the mirror.\",cabinet;chair;cup/glass/bottle;medicine;mirror;water,\"While a person in sitting in a chair he reaches to grab medicine from a cabinet and takes it with a bottle of water that he picks up. The person stands from the chair and walks to a mirror in which the person looks at the reflection in the mirror.;A person is sitting in a chair then taking some medicine, swallowing it, and drinking water. They get up out of the chair and look into a mirror and start smiling.\",c096 24.00 33.00;c154 20.60 26.10;c106 7.40 15.70;c059 0.00 24.50;c129 0.30 8.20,32.50\r\nCF92N,CCI9,Living room,6,6,Yes,\"A person is walking through the door, then drinking coffee and watching television in a living room.\",chair;cup;door;glasses;television;water,\"A person is drinking a glass of water. A person then sits in a chair and watches television.;A person wearing glasses walks through a doorway while drinking tea from a glass. After entering the room, the person sits down on a chair in front of the television and watches while drinking.\",c132 2.80 32.00;c106 0.00 32.00;c151 13.60 20.10;c059 16.10 32.00;c097 0.00 5.30;c107 0.00 6.50,30.92\r\nN6XEV,ZEM0,Garage,3,7,Yes,\"A person sits in a chair in the garage, folding clothes and towels. The person smiles.\",blanket;clothes;towel,A person is folding a bunch of towels and clothes while standing up.,c033 0.00 35.40;c037 0.20 36.50;c152 31.90 38.00;c075 0.00 11.00;c000 20.20 30.80;c004 20.00 30.20,36.50\r\n3064K,3H6W,Living room,6,7,Yes,\"A person is folding clothes and putting them carefully next to them. They grab a sandwich, and laugh as they arrange it atop a pair of shoes.\",blanket;clothes;dish;food;plate;sandwich;sofa,\"person sat on the sofa and folded some clothes, took a plate of sandwich and kept it aside leaving the room;A person is sitting on a couch folding laundry then they pick up a plate with a sandwich and puts it on the couch and then the person walks away\",c001 8.20 18.00;c068 14.90 22.60;c154 21.90 28.70;c123 0.00 13.30;c004 0.40 18.60;c151 0.00 18.60;c119 19.20 25.00;c120 19.20 25.00;c075 3.00 8.10;c118 16.40 21.60;c062 19.30 24.30,27.54\r\nJBY4E,3H6W,Laundry room,6,7,Yes,\"A person is sitting with a blanket, laughing as they eat some food.\",blanket;chair;dish;food;sandwich,\"The person picks up some blankets, places on his lap and starts eating food. The person laughs a few times.\",c070 2.00 30.00;c061 6.40 31.90;c156 8.10 29.80;c151 1.10 7.30;c149 13.90 30.60;c154 26.00 31.90;c071 2.80 9.20;c065 7.80 12.60;c118 4.90 31.10;c073 1.10 6.50;c059 2.70 8.40;c069 5.40 10.50;c067 6.40 11.30;c120 5.40 10.40;c062 26.80 31.20,32.04\r\nCR1OK,QOQ4,Home Office / Study (A room in a house used for work),7,7,Yes,A person walks into the study talking on the phone. They go sit in the chair and start taking notes.,chair;clothes;desk;door;papers;phone;table,A person enters a room with a phone in hand and sits in a chair at a desk.;Person talking on a cell phone walks through a door and sits in a chair,c059 6.10 12.70;c015 2.30 21.00;c008 1.40 7.00;c097 1.70 8.20;c016 18.40 21.00;c141 18.40 21.00;c011 18.40 21.00;c006 9.40 14.00;c151 6.90 11.60;c019 1.60 21.00,20.38\r\nWN7T3,UD06,Kitchen,7,7,Yes,\"Person is leaving box on table, then looks out the window and starts sneezing.\",box;counter;table;window,\"A person walks into a kitchen and places a box on the counter. The person opens some blinds and looks through them, sneezes, and then continues to look through the blinds.\",c040 0.00 7.20;c092 6.60 32.00;c009 0.80 8.30;c153 13.50 20.40;c042 1.10 9.10,30.71\r\n6RXCP,8718,Kitchen,7,6,Yes,A person washes dishes before the person begins fixing the refrigerator.,dish;door;drying rack;liquid soap;refrigerator;shelf;water,\"A person is standing in front of the sink cleaning dishes. After finishing cleaning a plate, the person walks over to the refrigerator and opens it.;person washing the dishes in the sink, kept them in the shelf. reached the refrigerator and opened the door.\",c121 1.50 7.10;c143 22.20 27.00;c081 18.00 23.60;c008 23.20 28.60;c121 4.10 9.30;c118 2.20 23.50;c119 16.70 23.30,29.12\r\n8J723,UTMU,Laundry room,6,7,Yes,A person is holding a vacuum handle and pulling it across the room.  Then a person is sneezing and opening a window.,broom;vacuum;window,A person is vacuuming in the garage and looking out the window.,c137 0.00 25.80;c092 29.60 36.30;c098 0.00 40.00;c090 25.90 35.50;c102 0.00 25.20,38.92\r\nX2GNB,CCI9,Stairs,6,7,Yes,A person is drinking coffee and laughing at something on a laptop  while sitting on the stairs.,coffee;cup;floor;laptop,\"A person is sitting on some stairs looking at a laptop, smiling, and drinking something.;A person is sitting on the stairs working on their laptop and taking a sip of coffee, they then smile and keep drinking.\",c106 0.00 9.00;c125 0.00 33.00;c051 0.00 33.00;c152 0.00 33.00;c047 0.00 33.00,32.33\r\n2ZFNL,2S0T,Bedroom,5,7,Yes,\"A person is lying on the bed. Then, sitting up, the person begins removing their shoes and undressing.\",bed;clothes;floor;jacket;shoe,A person lying in a bed sits up and starts taking off their shoes and clothes and throwing them on the floor.;Someone is laying down and then they sit up and remove their shoes and jacket.,c134 0.00 21.00;c133 0.00 2.60;c003 15.50 20.10;c056 0.00 3.30;c126 2.70 7.00;c058 1.90 11.30;c135 0.00 21.00;c155 7.30 21.00;c057 0.00 9.80;c146 0.00 3.30;c001 14.90 20.50,19.54\r\nODMAZ,8718,Entryway (A hall that is generally located at the entrance of a house),4,3,Yes,Person is standing in hallway holding a glass. Person turns to look at picture on wall and smiles.,cup;glass;wall,\"A person is holding a glass, while leaning in a doorway.\",c107 0.00 30.00,29.46\r\nXU2MV,3VLX,Other,6,7,Yes,A person washes shoes while sitting next to a door.,bottle;cloth;door;floor;shoe;tissue;windex,\"PERSON SITTING ON THE FLOOR AND CLEANING THE SHOES WITH SOME CLOTH USING THE CLEANER;Using Windex and a tissue, a person is sitting on the floor in front of a door  while  intensely polishing a shoe.\",c053 0.70 46.00;c125 0.00 46.00,44.92\r\nYBZOU,ENC8,Bathroom,3,6,Yes,\"A person is working on cleaning up with a broom.  Then, the person leaves after looking in the mirror.\",broom;doorway;floor;mirror,\"A person grabs a broom that is in the bathroom and starts sweeping,when the person is finished they look at themselves in the mirror and then walks out of the bathroom.\",c102 2.00 24.00;c096 20.90 29.30;c127 4.91 22.87;c097 25.07 30.37,34.88\r\n243Y9,JVLO,Dining room,6,,No,A person is holding a pair of shoes getting ready for the day. Another person is sitting in a chair eating breakfast.,bag;chair;floor;food;shoe,The person takes shoes out of a shoe box and puts them on. A person sits on a chair and eats something out of a plastic bag.;A person getting tennis shoes out of a box and putting them on their feet .A person grabs a bag of food and sits down in a chair and starts eating.,c055 6.00 13.70;c151 21.80 28.00;c020 21.40 33.00;c053 0.00 9.10;c059 17.70 27.50;c156 20.50 28.50;c061 19.20 26.90;c056 0.00 7.90,32.08\r\n3MLVF,HR43,Kitchen,6,7,Yes,\"A person is cooking food on the stove. The person walks to the refrigerator and selects a beverage, then begins drinking it.\",coke bottle;cup;food;laptop;pot;refrigerator;stove,\"A person is cooking with a pot on the stove. Then, they open the refrigerator and take out a coke. The person then opens and drinks from the coke bottle.;A person is cooking on a stove while watching a video on a laptop. The open the refrigerator remove a soda and drink it before putting it on the stove.\",c142 16.10 21.20;c147 0.00 14.60;c143 11.50 16.60;c110 15.50 21.90;c109 28.70 32.00;c106 28.70 32.00,30.62\r\n8VNSV,P6LJ,Kitchen,6,6,Yes,A person is sitting on a chair watching someone cooking at the stove and reading a recipe book.,book;hair;stove,A person sits in a chair and reads a book in the kitchen.,c059 2.50 38.20;c032 4.30 37.80;c151 34.60 39.20;c144 21.30 27.70;c026 0.00 41.20;c027 4.10 38.00;c154 0.00 5.70;c028 0.00 41.20;c025 32.90 38.40,40.83\r\n2D98B,WQ8Z,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,A person in the entryway is laughing because they see a towel on the floor. They start opening a cabinet and pull out some medicine from the cabinet.,cabinet;door,A person is walking into the kitchen and to the cabinet.,c113 4.80 9.90;c112 12.90 17.00;c008 12.90 17.00,16.00\r\n5ZRFL,YMXV,Bedroom,5,5,Yes,\"A person opens their bedroom window, then takes a camera from their nightstand.\",phone;window,The person walks over to the window and opens it up. The person adjusts the window and then picks up a phone.,c015 24.30 32.00;c089 18.00 26.20;c090 6.70 12.60;c092 28.60 32.00;c018 28.60 32.00;c016 28.60 32.00,30.54\r\n42SEP,KFGP,Bathroom,6,6,Yes,A person is standing looking at their phone in the bathroom. They grab the doorknob and start leaving and sit down on a chair.,chair;doorknob;phone,A person is standing in bathroom playing on phone. The person reaches and grasps the doorknob then sits down on chair and keep splaying on phone.,c059 16.80 26.00;c015 0.00 26.00;c016 0.00 26.00;c141 12.90 19.00;c151 14.80 20.80,24.62\r\nNHLQ1,YA10,Garage,4,6,Yes,\"A person is seated and puts on their shoes. They stand up, start eating a sandwich, and then take a picture of themselves and the sandwich with their camera.\",camera;chair;dish;food;phone;picture;sandwich;shoe,\"A person sits on a chair holding a plate with a sandwich on it and a camera. The person puts on shoes then stands and takes a bite of the sandwich. The person puts the plate on the chair, before taking a picture with the camera.\",c065 24.30 32.00;c118 0.00 24.70;c015 0.00 32.00;c055 0.00 16.80;c154 13.90 19.90;c087 24.10 32.00;c059 0.00 18.00;c119 19.20 24.40;c018 21.20 32.00;c061 16.00 23.00;c156 17.30 23.00,31.12\r\nK0Y6X,EXQX,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person walks through the entryway working away on a laptop as the person moves along.  The person pauses to turn on a light.  The person sneezes as the person continue to walk along.,doorway;laptop;light,The person is carrying a laptop as they walk into the basement. The person turns on the light and opens their laptop to work on it.,c104 2.20 6.50;c047 4.60 18.90;c048 14.90 20.70;c052 16.70 31.80;c051 45.60 61.00;c097 0.00 4.10,60.25\r\nCF9QP,ZAWX,Living room,6,7,Yes,A person leaves a cup of coffee on the floor after taking a long sip then begins to eat from the bag of groceries.,bag;bed;cup;floor;food;glass;groceries,\"A person is sitting on the bed drinking a cup of coffee. They set the coffee down on the bed and open up a bag, and take some food out and start eating.;Person is sitting on the floor drinking out of a teacup then removes some food from a plastic bag and eats it.\",c021 13.60 20.90;c106 0.00 15.60;c156 13.40 25.60;c063 12.90 25.70;c109 10.80 16.80;c125 0.00 32.00;c061 16.20 25.30;c107 0.00 15.90,30.75\r\nX3KFE,D0RU,Recreation room / Man cave,7,7,Yes,A person is laughing as they are taking a picture with a camera then holds a glass up high and drinks the water in the glass.,bed;camera;cup;glass;phone;picture;sofa;table;water,\"A person is sitting on a sofa and takes a picture of theirself with a black camera. Then they hold up a glass of water, smile, and take a drink before setting the can back down. Then the person continues to look at the camera.;A person is sitting on a sofa taking a picture of themselves and smiling, they then hold a cup in the air and take a drink.\",c016 22.40 33.00;c106 14.40 21.30;c109 17.40 25.80;c152 4.90 11.40;c015 0.00 14.30;c087 0.00 10.90;c107 10.80 17.30;c106 10.90 18.90;c123 0.00 33.00;c009 20.80 25.90;c135 0.00 33.00,31.83\r\nO5D7S,F3YX,Dining room,7,5,Yes,\"A person sitting in their dining room is grasping the handle to a mug of coffee and typing on a laptop.  They get up, leaving the table and running out of the room.\",chair;cup/glass/bottle;doorway;laptop;table,There is a person sitting at a desk working on a laptop.;The person is sitting in a chair at the table on their laptop. The person gets up and walks out.,c052 2.70 16.90;c154 13.80 18.80;c059 0.00 17.70;c011 0.00 17.70;c107 0.00 18.70;c014 0.00 18.20;c097 15.60 21.00;c051 0.00 18.10,22.50\r\nEHT0A,HR43,Laundry room,7,7,Yes,\"One person runs into the laundry room and pours some liquid, then uses a towel to wash the front of a cabinet.\",cabinet;clothes;laundry;shelf,A person is doing laundry annd cleans the cabinet.,c114 15.40 25.00;c005 0.00 14.00;c082 15.00 25.00,24.42\r\nDD9YS,YA10,Hallway,5,6,Yes,A person is watching a vacuum while snuggling with food.,bag;food;vacuum,\"A person is standing in front of a vacuum, they are holding a bag of chips and hugging it. While they are hugging it they are rocking side to side while smiling.;A person is holding food and smiling while looking at a vacuum.\",c061 0.00 31.00;c152 0.00 31.00;c020 0.00 31.00,30.38\r\nVXNGC,CO1W,Stairs,7,7,Yes,A person is smiling at a laptop while wrapped in a blanket and standing on the stairs.,blanket;laptop,The person is standing on the stairs with a blanket on their back. They are smiling as they work on their laptop.,c072 0.00 31.00;c051 0.00 31.00;c152 5.30 17.30;c047 0.00 31.00;c052 26.00 31.00,30.29\r\nGYRQH,9Y7F,Bedroom,5,6,Yes,\"One person smiles at a mirror and starts undressing, then another person in the doorway throws a pillow at the first person.\",clothes;doorway;mirror;pillow,A person is  undressing in front of a mirror then another person walks in and throws a pillow to person A.,c076 17.40 30.40;c080 19.60 26.10;c097 16.90 24.90;c096 0.00 20.50;c155 5.60 20.10,31.33\r\nUVQWW,1OHU,Garage,7,6,Yes,A person is grasping a bag of groceries in a garage. The person throws the groceries onto a shelf.,bag;groceries;shelf,\"Patient holding a bag looking a shelf trying to decide where to put the bag, when cannot find a place decides to throw the bag on the shelf.\",c081 9.70 20.00;c020 0.00 20.40;c024 16.80 21.30,24.04\r\nGJC0W,PKND,Hallway,6,5,Yes,A person is laughing and opening a door in the hallway.  Another person is closing their laptop and putting a book on a shelf.,book;chair;door;laptop;mirror;shelf;table,\"A person is tidying up a shelf. A person then holds a book, while closing a door.;A person is sitting working on their laptop when they greet a person who just walked in the room then they get up and look at themselves in the mirror.\",c052 0.00 3.40;c154 4.30 11.40;c047 4.80 32.00;c097 14.70 25.80;c051 0.00 4.00;c059 0.00 9.60;c050 5.70 11.90;c046 5.70 10.70;c011 0.00 9.90,30.92\r\n65RS3,3H6W,Living room,7,2,No,\"A person is standing on their bed, then the person starts pouring water on a broom.\",broom;dish;doors;dustpan;jug;sofa;water,\"A person is standing on a sofa, then they are pouring water on a broom.;A person walks into a living room stands on the couch and then steppes down from the couch. The person then holds up a broom and dustpan in front of two doors, and pours water on the broom.\",c098 14.40 28.20;c118 14.20 27.60,29.71\r\nSFZ6Q,H8N1,Bathroom,4,6,Yes,A person is dressing next to a shelf.  Then a person is taking a toothbrush out of a cabinet.,cabinet;clothes;clothing;door;jacket;light;toothbrush,\"A person puts on some clothing. They take a toothbrush from a cabinet nearby.;A person is standing under a light while putting on a jacket. Afterwards, the person takes a toothbrush out and puts it in their mouth.\",c113 17.40 23.80;c000 0.00 7.20;c148 0.00 13.00;c008 14.60 26.20,29.75\r\nJ1RLO,9PLL,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,\"A person is leaving their home when they stand upon hearing the television still on in the next room. They close the door, put their bag down and go to turn it off.\",bag;door;television,A person wearing a book bag closes a door behind them.  They open it again and turn off a television in their home.,c006 0.00 7.90;c008 18.70 25.00;c097 0.00 8.00,32.62\r\n49ZI9,XXN8,Bathroom,6,5,Yes,\"A person is playing in the recreation room, throwing the pillow while washing the mirror.\",mirror;pillow;towel,A person is washing a mirror with a pillow and then a towel.;The person is playing with a pillow in front of the sink. They then grab a towel and wash the mirror.,,31.75\r\nDED50,UO0Z,Living room,7,7,Yes,A person awakens on a sofa in their home office. The person pours a cup of coffee and drinks it.,bed;blanket;coffee;cup;dish;food;glasses;mug;sofa,\"The person was laying on a sofa covered with blanket,sit up poured a coffee to a cup drank some of the coffee.;A person is sleeping on a sofa, they then wake up, put on some glasses, and begin drinking coffee.\",c122 0.00 7.30;c106 20.40 28.10;c107 15.00 33.00;c110 13.90 18.70;c146 2.60 9.00;c072 0.00 33.00;c108 15.20 21.90;c133 0.00 4.20;c061 10.40 33.00;c118 10.40 33.00;c135 2.80 33.00,31.79\r\nZCOSY,S053,Laundry room,6,6,Yes,A person is tidying up their clothes and fixing a light.,clothes;light,A person is in the laundry room folding laundry they reach up and turn the light on.;A person stands and folds laundry in a laundry room. The person turns on the light.,c104 16.30 31.00;c004 0.00 20.60,30.38\r\nP6SOI,S053,Laundry room,6,6,Yes,\"A person is in a laundry room fixing their hair in a mirror, after they are done working on it they open the door and leave the room.\",clothes;door;hair;mirror,\"There is a person standing in from of a mirror fixing their hair.  That same person opens the door, leaves the room and starts picking clothes up off the floor.;A person looks in a mirror in a laundry room. They then open the door and pick up clothes.\",c008 21.30 31.20;c002 27.90 33.00;c144 0.00 24.70;c096 0.00 27.60;c001 27.20 33.00;c004 30.20 33.00;c004 24.60 33.00;c097 24.40 31.10;c141 21.10 28.10,32.12\r\nW75CV,KFGP,Stairs,7,7,Yes,A smiling person awakens on the stairs holding a towel and a bag.,bag;blanket;floor;towel,\"A person is sitting at the bottom of some stairs holding a bag and a towel in his lap while they sleep, and then wakes up.\",c033 16.60 23.00;c020 0.00 23.00;c146 0.00 20.30;c070 0.00 23.00;c072 0.00 23.00;c125 0.00 23.00,22.00\r\nF31X6,BYF9,Dining room,7,7,Yes,\"A person is sitting in a chair and taking off their shoes. They pick up a piece of food in front of them, take a bite, and leave.\",chair;food;shoe,A person is sitting in a chair and takes off their shoes.  The person eats something off a plate.  The person then leaves the room.,c059 0.00 26.70;c057 0.80 19.20;c061 19.40 25.30;c156 20.10 25.70;c154 22.50 27.80;c053 7.20 12.70,28.08\r\n91ZUX,2RTW,Living room,6,6,Yes,The person is in the home office snuggling on the sofa while opening a book for homework.,bag;book;couch;pillow;sofa,\"A person is sitting on the couch and reading while holding on to a pillow.;A person is sitting on a sofa snuggling a pillow and looking at a book.;The person is sitting on a couch, reading a book while holding a bag.\",c020 0.00 32.00;c123 0.00 32.00;c026 0.00 32.00;c032 0.00 32.00;c078 0.00 32.00;c152 15.00 28.80;c115 0.00 32.00,31.08\r\nMRSYL,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person runs into their study, holding a bag of groceries. The person sets the groceries down and walks out of the room.\",bag;chair;groceries;laptop,\"A person runs into the room holding a bag of groceries.  They put them down on a chair, look at the laptop for a second then walk out of the room.\",c020 0.00 7.60;c130 3.00 8.00;c020 0.00 3.70;c022 0.00 6.00;c150 0.00 4.50,26.42\r\n1514T,C7O9,Pantry,7,7,Yes,\"A person is taking food from a shelf, then laughing as they close the door in a pantry.\",closet/cabinet;door;food;shelf,\"A person walks to their pantry and gathers some items from a shelf, laughs, then leaves and closes the door.\",c061 0.00 25.00;c063 0.00 24.30;c006 15.70 23.20;c149 6.50 25.00;c097 10.00 18.10;c114 0.00 12.10;c152 8.10 25.00;c112 13.30 23.50;c082 0.00 12.10,24.21\r\n4KO74,ZEM0,Bathroom,7,6,Yes,A person is smiling and putting coffee on the table.,coffee;cup,\"A person holds a mug in a bathroom and walks around, then smiles and sets it down.\",c152 11.40 23.30;c107 2.60 32.10;c149 25.00 34.70,34.29\r\nL3F3M,KQI6,Kitchen,6,5,Yes,One person is standing by a cabinet using the phone and another is eating and drinking from a take-out box.,food;glass;phone;table;water,A person is eating food and drinking water while sitting at a table. A second person is standing nearby while texting on a phone.;Person holding a phone while talking to a person sitting at a table eating some food.,c016 0.00 32.00;c156 0.00 22.50;c061 0.00 11.00;c106 13.90 21.20;c015 0.00 32.00;c062 0.00 32.00;c011 0.00 32.00;c063 0.00 32.00,31.46\r\nS2IG2,UTMU,Kitchen,4,6,Yes,\"Person A is in a kitchen pouring a glass of milk.  Person A puts the milk back into the refrigerator, takes a drink of the milk and grabs a nearby broom.\",broom;closet/cabinet;cup;drink;floor;refrigerator,A person pours a drink from the fridge and drinks it before grabbing a broom.,c143 0.00 5.60;c098 34.00 46.00;c108 12.10 21.00;c127 34.40 46.00;c100 32.70 38.90;c110 0.20 20.10;c106 26.00 34.60;c113 5.40 11.20;c142 1.80 7.60;c107 3.60 28.40,44.67\r\nG4WCE,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person walks into the house with groceries in both hands. They set them on the desk, and tidy the area around the bags.\",bag;desk;groceries;hand;shelf;table,A person opens the door and walks in carrying a bag of groceries in one hand. They put the bag on a desk then begin to tidy up the area next to a television.,c009 9.30 17.80;c022 9.30 15.50;c020 2.30 15.30;c130 8.70 15.30;c081 10.00 15.00;c012 13.80 34.00,33.33\r\nOSJW7,1OHU,Garage,6,7,Yes,\"A person is in a garage fixing the leg on a table, they then laugh as they walk towards a cabinet in search of more tools.\",cabinet;table,\"A person is trying to fix something in their garage, they finish and walk over to their toolbox. They open up the toolbox to put the tool away, but drop the tool, instead of picking it up they close the drawer, stand up and walk away.\",c112 21.10 27.70;c113 19.50 25.10;c012 0.00 13.00;c114 19.60 27.20,30.21\r\nPHIRP,ZSRZ,Living room,5,1,No,A person is holding groceries in the pantry.  The person then starts walking out of the pantry towards a vacuum.,bag;groceries,A person is holding a bag of groceries.,c020 0.00 8.00,6.88\r\nQCBIG,6RE8,Garage,5,7,Yes,\"A person is in a garage snuggling a blanket, they then start to undress by the doorway.\",blanket;chair;clothes;doorway;shirt,\"THERE IS A PERSON STANDING IN A ROOM WRAPPED IN A BLANKET,THE PERSON UNWRAPS FROM THE BLANKET AND THROWS IT TO THE SIDE, THE PERSON THEN TAKES OFF THEIR SHIRT AND STARTS TO WALK AROUND;person removed the blanket in which he was wrapped and kept it on the chair.removed the shirt and started walking\",c072 0.00 13.40;c074 11.90 17.60;c003 15.90 22.60;c155 13.70 22.60;c070 28.80 32.00;c071 28.80 32.00;c002 28.80 32.00;c070 0.00 14.30;c071 11.70 18.30;c002 13.70 20.00,30.75\r\nWT3IG,1OHU,Bathroom,6,6,Yes,\"A person is holding a camera, then the person starts working with a vacuum cleaning the floor.\",camera;floor;phone;picture;vacuum,A person is taking a picture of themselves on their phone and then bending over and using a vacuum.;A person is watching something on their phone they get the vacuum hose and start vacuuming.,c137 21.30 36.80;c127 22.30 29.90;c015 0.00 8.20;c017 19.50 25.90;c087 3.30 10.40,36.38\r\n18FTZ,XNDY,Living room,6,6,Yes,A person is sitting on the floor doing homework.  Then a person is eating over a sink.,book;doorway;floor;food;homework;pencil;sandwich,\"The person is sitting on the ground writing on a sheet of paper. The person licks his finger to turn the pages of a book and writes more things down. The person flips the pages some more, gets up and goes into the kitchen to eat something.;There is a person on the floor doing homework.  That same person then gets up and goes into another room.\",c125 0.00 22.10;c156 25.00 33.00;c154 17.90 23.60;c097 21.10 26.00;c061 22.80 33.00;c145 0.00 20.90;c063 21.80 26.80;c067 22.20 33.00;c065 25.90 33.00;c032 0.00 21.40,31.50\r\nVNOB8,PKND,Closet / Walk-in closet / Spear closet,7,6,Yes,A person walks into the closet and throws a blanket into a box on the floor.  The person takes a cup of coffee out of the cabinet and walks out.,blanket;box;cabinet;coffee,\"A person puts several blankets from a closet into a box, drinks from a mug of coffee, then walks away.\",,36.08\r\nPOHWK,T7C3,Kitchen,5,7,Yes,A person is sitting on the floor looking at a picture of one of the groceries from the shopping bag which needs to be put away.,bag;floor;groceries,\"A person is sitting on the floor and taking some groceries (a can) out of a plastic bag, then closing and opening the bag.\",c130 0.00 3.10;c125 0.00 31.00;c020 0.00 31.00,30.38\r\n7JSAI,KQI6,Living room,5,7,Yes,A person walks in grasping a bag of groceries. Another person standing near by starts smiling.,bag;doorway;groceries;table,\"A person walks into a house and than puts their bag on a glass table. Then, they start taking things out of their bag they set down.\",c130 16.60 22.50;c021 19.10 24.90;c022 16.50 22.90;c152 2.50 10.90;c009 17.20 31.00;c020 0.00 21.20;c097 6.90 13.20,30.25\r\nHOZ76,KQI6,Dining room,7,7,Yes,\"A person is sneezing next to a chair, while a other person is standing and takes a book.\",book;chair;doorway;table,There is a person sitting in the chair moving their legs.  Another person walks into the room and picks up a book off the table and looks at it.,c027 23.00 28.00;c030 20.00 25.00;c032 25.00 32.00;c059 0.00 32.00;c097 15.00 21.00;c026 20.90 32.00;c011 0.00 32.00,30.54\r\n1SVJS,QRES,Kitchen,5,7,Yes,\"A person is sitting, eating a sandwich, and using a laptop and then starts sneezing.\",food;laptop;sandwich,A person is sitting at a table while playing on a laptop.  The person takes a bite of a sandwich before sneezing twice.,c052 0.00 9.00;c065 0.00 5.40;c067 0.00 9.00;c156 0.00 5.10;c153 1.20 9.00;c051 0.00 9.00,7.88\r\nT0HLX,6RE8,Living room,6,1,No,\"One person puts shoes on a shelf in a cabinet, then stands and takes a drink of soda before leaving.\",cabinet;cup/glass/bottle;door;shelf;shoe;table,A person is standing in front of a desk drinking a soda. They the pick up shoes and put them on a shelf before leaving.,c081 20.70 28.50;c054 20.70 28.50;c006 28.40 33.00;c141 24.60 31.20;c097 27.00 33.00;c009 14.50 21.00;c008 25.40 32.70;c106 1.20 20.50,31.62\r\nBM9H4,HJJ4,Home Office / Study (A room in a house used for work),4,7,Yes,A person is holding a picture at a desk.  The person is smiling and eating an apple.,food;picture,A person is looking intently at a picture,c084 0.00 21.00;c088 0.00 21.00;c061 0.00 21.00;c156 2.60 21.00,19.83\r\nO4P08,YA10,Laundry room,6,7,Yes,A person is grasping a vacuum in a laundry room. They put it down and on a table and sneeze.,shelf;table;vacuum,The person is holding a vacuum for a little while then switches the vacuum to the other hand. The person puts the vacuum on a table and then sneezes.,c009 9.00 16.40;c137 0.00 16.70;c153 17.60 25.40;c081 8.90 16.40,30.21\r\nQC9M1,P6LJ,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person awakens by the desk in the entryway. They are holding a phone.,desk;floor;phone,\"person holding the desk, staring at back and forth and then sleeping on the floor and holding the phone and woke up again.;A person is walking over to a desk and lying on the floor next to it with their phone, sleeps, then gets up.\",c015 0.00 4.00;c018 35.10 42.70;c154 33.70 42.00;c124 12.10 32.60;c017 4.90 15.80;c146 23.50 37.10;c125 6.30 15.00,44.62\r\n81YF0,6RE8,Bedroom,7,6,Yes,A person is holding a towel in the hallway. They then star sneezing and drop the towel.,dishes;towel,A person throws a towel onto the floor and places it on a chair.,c036 12.60 17.90;c034 0.00 6.90;c033 3.30 18.20;c037 20.20 28.30;c035 21.80 28.60,30.33\r\n0XP8L,L4ZP,Kitchen,1,7,No,\"A person is putting food into a pan and cooking it. Smiling, the person walks over to where their laptop is playing a movie. The person begins sitting to watch the movie as their food cooks.\",chair;dish;food;laptop;pan;refrigerator;stove;table,\"A person takes a frying pan from a cupboard, puts it on a stove, then opens fridge and takes out food and puts it in a pan and walks to a chair and sits down.;The person grabs a pan out of a cabined and some food out of the refrigerator. They go sit at a table and work on a laptop.\",c063 6.20 15.00;c147 13.00 20.40;c052 19.70 37.00;c151 18.80 28.50;c011 21.40 37.00;c143 5.30 12.80;c120 0.00 9.70;c051 22.10 37.00;c119 0.20 9.50;c062 6.80 21.00;c061 10.60 20.60;c059 20.60 37.00;c014 20.30 37.00;c142 7.10 15.70;c118 0.60 9.10,36.46\r\nLSURK,0KZ7,Basement (A room below the ground floor),6,6,Yes,Person is sitting on chair drinking cup of coffee looking at bag of groceries.,bag;chair;coffee;cup;dish;mug,A person is sitting in a chair and drinking from a mug. The person is talking to a shopping bag.,c106 0.00 28.00;c107 0.00 28.00;c059 0.00 28.00;c118 0.00 28.00,27.33\r\nANJNU,4OHY,Living room,5,5,Yes,\"Person 1 is watching TV on the sofa while drinking coffee. Person 2 then runs in, turns the light off, and snuggles with person 1 on the sofa.\",coffee;cup;doorway;light;sofa,\"A person is sitting on the sofa drinking coffee. Another person runs into the room and starts pacing, and turns off the light.\",c123 0.00 31.00;c106 0.00 31.00;c107 0.00 31.00;c105 18.20 27.30;c097 1.80 7.50;c150 1.50 9.50,30.33\r\n29B3I,9PLL,Kitchen,5,7,Yes,The person is holding a broom while tidying the counter.  They then start pouring water into a pot on the stove.,broom;cup/glass/bottle;dish;food;stove,A person is tidying up the kitchen while holding a broom. The person turns the stove on and prepares from food.;A person is holding a broom. Then they go to turn on the stove.,c098 0.00 16.10;c147 18.00 41.00;c119 4.00 17.70;c109 3.60 18.10;c110 4.70 18.30;c102 0.00 7.20,40.29\r\n469ZJ,PO5L,Bedroom,6,6,Yes,A person is opening up their wardrobe and turning on the light before choosing which clothes to get dressed into.,box;clothes;cloths;doorway;drawer;light,\"A person walks in, opens and closes a drawer, then leaves. They were also grabbing some socks.;A person turns on the light and grabs some stuff from a box.\",c104 0.00 5.90;c097 2.20 8.70;c001 4.60 27.40,29.08\r\nRVYXB,6RE8,Living room,7,7,Yes,\"A person is sitting in a entryway working on a laptop, they then pour a cup of coffee before returning back to work.\",chair;coffee;cup;desk;food;glass;laptop;table,a person sits at a desk using their laptop then pours some food;Person is sitting at a desk looking at and typing on his laptop. Person gets up to pour coffee in cup and sits back down. Person then grabs cup.,c110 16.60 21.80;c154 13.10 19.20;c059 0.00 17.00;c108 18.40 26.20;c052 0.00 16.80;c151 26.50 32.00;c011 0.00 16.80,31.08\r\nTMYHM,T7C3,Kitchen,7,6,Yes,\"A person is in a kitchen watching a television show on their phone, they then smile and turn off the light as they walk away.\",phone,A person is playing on a phone and laughing. The person then walks away.;This person is receiving and sending texts from his phone in the kitchen.  When he is done he walks out of the kitchen.,c016 0.00 26.20;c152 22.10 29.00;c149 22.10 26.60;c015 0.00 29.00,28.29\r\nAVBDD,0KZ7,Garage,6,6,Yes,One person laughs and throws a pillow at another person who is wrapped in a blanket with hair in a towel.,pillow;table;towel,\"A person is sitting on a table with a towel on their head. Another person is holding a pillow and throws it at the other person sitting on the table.;The two persons are talking, one is sitting on a table and the other throws a pillow at the one sitting on the table.\",c080 3.60 9.30;c010 0.00 24.00,22.62\r\nW5RC5,PO5L,Living room,6,6,Yes,A person is leaving a recreation room putting medicine in their mouth and drinking a glass of water.,chair;cup;glass;medicine;sofa/couch;water,A person sits on a chair and takes medicine followed by a glass of water.,c059 2.40 18.30;c106 6.50 17.00;c151 0.90 7.00;c129 3.10 10.40;c154 13.60 18.20;c123 2.70 17.80,19.46\r\nEK19H,3H6W,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is eating a sandwich then smiles as the pick up a phone from the shelf.,closet;dish;door;dresser;food;sandwich,\"The person in the video went to the closet, got food out and ate it. Then placed the plate down. The person then grabbed something off the dresser and walked away.;A person come into the room hoding a plate with a sandwich they are eating the sandwich then go over to the desk and pick up a phone and leave the room.\",c065 4.50 15.60;c156 4.50 15.50;c152 15.00 22.20;c063 0.40 22.60;c119 13.60 18.90;c068 13.10 17.60;c067 3.90 17.50;c069 3.80 8.30;c062 14.00 18.80;c118 3.80 18.90;c120 3.20 8.20;c061 4.20 18.50,26.08\r\nTVJ0L,2Q9D,Hallway,7,7,Yes,A person leaves a book in the hallway and sits a vacuum in the hallway as well.,book;vacuum,\"This person sets a book in the hallway, then parks a vacuum in the hallway.\",c138 11.00 19.30;c031 2.40 7.70;c028 0.40 7.40,26.42\r\n8R48O,6RE8,Living room,5,5,Yes,A person throws their shoes at the sofa then begins to sneeze a couple times in the doorway.,shoes,A person is holding a pair of shoes then throws it on the floor before sneezing a couple of times.,,30.33\r\n508GC,XXN8,Bedroom,5,6,Yes,A person is standing in the dining room looking in the mirror and plucking their eyebrows.  The plucking makes the person sneeze and the person puts the tweezers down on the desk.,desk;mirror,A person is doing makeup while standing in front of a mirror.,,30.42\r\nQBOOH,L4ZP,Home Office / Study (A room in a house used for work),4,7,Yes,\"The person begins the scene by staring out the window, sipping a cup of coffee.  The person abruptly appears to make a decision, walks to the door of the office, opens it, walks through, and closes it.\",coffee;cup;door;window,A person is drinking coffe then looking out of a window. A person then walks out of the room with their coffee.,c006 19.60 25.90;c008 17.60 23.40;c092 0.00 8.30;c106 0.00 12.80;c107 0.00 28.00;c141 17.00 22.60;c097 18.70 23.80,26.67\r\nM02OO,0KZ7,Bedroom,3,7,Yes,A person is playing with a doorknob while another person is laughing in a doorway.,doorknob;doorway,Two people stand in a door way and talk and  laugh.,c149 0.00 4.90;c141 0.00 25.40;c152 0.00 28.00,27.33\r\nMC45U,2RTW,Living room,6,6,Yes,\"Person walks into the living room, takes off shoes and turns on the television.  Person pours a drink in a tumbler, takes a drink and undresses.  Person sits in a chair, covers up with a blanket, and watches television.\",blanket;chair;clothes;cup;door;shoe;television;water,A person walks in a closes the door then the person takes off their shoes. The person picks up a remote and turns the television. The person pours a drink then drinks it. Next the person undresses by taking off a jacket then snuggles in a blanket while sitting down and watching television.,c108 10.80 20.50;c151 27.90 36.90;c057 2.60 8.60;c106 14.00 25.00;c059 31.30 37.00;c155 19.40 30.50;c132 30.30 37.00;c073 24.50 35.90,35.58\r\nUX9RI,9Y7F,Living room,4,7,Yes,A person is laughing and throwing their phone onto a chair. A person is watching and laughing.,chair;phone,A person is looking at their phone and they throw it on a chair.,c149 4.10 24.70;c017 0.00 2.90;c016 0.00 2.60;c015 0.00 2.60;c019 0.00 2.60,30.71\r\n11TTU,3VLX,Living room,7,7,Yes,A person is pouring a drink into a glass while laughing at a picture that was found on a phone.,chair;cup;glass;phone;pitcher;table;water,A person sits on a table and puts their phone down while pouring  themselves a glass of water.;A person holding a phone enters the room and sits in a chair and puts the phone on a table. They pick up a pitcher and pour water into a glass.,c015 12.10 19.90;c151 0.70 7.90;c010 4.30 25.10;c108 6.40 16.70;c059 3.30 25.20;c154 21.90 26.60;c107 7.70 13.20;c152 14.80 20.10;c016 5.60 10.00;c109 9.80 15.40;c011 0.00 7.30;c110 5.80 11.70;c017 4.20 9.70,27.96\r\nWNSGZ,PKND,Dining room,5,6,Yes,A person is laughing at groceries while another person is dressing in clothes.,bag;clothes;groceries;table,one person puts groceries in a bag while another person puts on a shirt while smiling.;A person is taking groceries from a bag and putting them on a table before putting them back in the bag.  A second person is putting on clothes while smiling.,c152 0.10 32.00;c148 0.00 32.00;c020 0.00 32.00;c130 0.00 32.00;c009 0.00 32.00;c012 0.00 32.00,31.42\r\nFYU0D,2RTW,Living room,6,6,Yes,A person leaves a box and some groceries in the living room as they tidy up.,bag;box;food;groceries;homework;medicine;something;table,\"The person walks up to a coffee table holding a bag and a box. The person sets them both down and then begins to rearrange stuff on the coffee table.;A person carries a box and bag of groceries into the room and puts them on a table. The person then makes tidy the table that has homework, food, medicine, and a glass on it.\",c042 3.50 9.00;c130 5.00 10.30;c012 7.70 33.00;c020 0.00 9.30;c022 0.00 10.00,32.38\r\n955XE,8718,Kitchen,6,6,Yes,A person is wrapped in a blanket and washing a glass. The person then stands and leaves,blanket;glass;soap,\"person tightly wrapped the blanket on to the neck,washed a glass in the sink and kept it aside;A guy walks up to sink. He begins pulling the blanket he's wearing up away from his hands. He ties it up a bit. He turns the water on, washes the glass, sets it to on the counter, turns the water off, shakes his hands a bit, and turns and walks away.\",,30.38\r\nCM293,KFGP,Hallway,6,7,Yes,\"One person smiles and eats a bite of sandwich, then takes shoes and a laptop from the closet.\",closet;door;food;sandwich;shoe,\"A person is walking down the hallway eating a sandwich then they open a closet and take a pair of shoes out.;The person walks down a hallway while eating a sandwich, then opens a closet and pulls out a pair of shoes before walking away.\",c065 0.50 9.40;c156 0.40 9.70;c008 7.00 16.00;c113 7.00 16.00;c056 19.70 26.30;c152 0.00 8.80;c061 0.00 30.00;c097 26.60 30.00,29.42\r\nD32A4,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,A person was smiling while putting the picture of his daughter on his desk.,desk;paper;picture;table,A person is working on some homework  then they begin to take out a picture and smile while continuing the homework.,c084 4.00 13.90;c009 7.30 13.60;c152 5.10 15.00;c145 13.20 32.00;c088 4.00 19.90;c083 1.90 8.90;c014 11.80 32.00;c086 1.90 17.40;c115 12.40 19.30;c011 0.00 32.00,31.38\r\nFRLW2,9Y7F,Kitchen,6,7,Yes,A person is tidying up near the doorway. Then the person begins throwing shoes through the doorway into the hall.,bag;doorway;floor;shoe,\"A person picks up and puts away a bag, and then picks up and tosses some shoes.;A person walks into the hallway, picks up a bag from the floor and puts it in a trash can.  They pick up a pair of shoes and throw it through the doorway into the next room.\",c058 25.70 32.00;c022 8.60 15.40;c126 26.50 32.00;c023 3.40 9.40,31.46\r\n8NSDT,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,5,No,\"A person stands in their entryway, holding a camera. The person sets the camera down, then walks to a nearby table where they pick up some food.\",camera;doorway;food;phone;plate;sandwich;table,\"A person places a camera on a chair before eating food off a table.;A person walks into an entry way holding a camera. They put the camera on a table, and start eating a sandwich off a plate.\",c009 6.40 12.40;c015 0.00 11.90;c017 4.80 12.20;c061 15.50 21.50;c065 15.30 32.00;c097 0.00 3.40,30.92\r\n5VJ1X,3H6W,Bathroom,7,7,Yes,\"A person is standing in the bathroom washing their hands in the sink.  The person drys their hands on a towel, then throws the towel on the chair and takes a drink from a glass of water.\",chair;cup;dish;glass;hand;sink;towel;water,\"A young man walking into the bathroom, washing his hands, drying them, and then drinking a glass of water.\",c139 0.50 19.50;c034 8.90 19.60;c035 7.20 13.60;c106 16.80 28.40;c154 0.50 20.90;c118 18.50 28.60;c036 14.90 19.90;c119 23.80 29.10;c033 8.50 18.60;c151 17.20 22.50,29.04\r\nJ0JD1,T7C3,Entryway (A hall that is generally located at the entrance of a house),5,6,No,\"A person runs into the entryway, laughing. The person grabs their camera and a glass of water from the table.\",camera;cup;door;glass;phone;window,\"A person walks through a door, closes the door and looks through the window. That same person then picks up a glass.;A person is running through the door then they look out the window and grab a cup of coffee and a camera.\",c015 14.80 28.00;c150 0.00 4.00;c092 8.50 14.30;c097 10.80 17.80;c006 0.50 7.10;c149 0.00 15.00;c006 8.00 28.00;c107 15.20 28.00,26.54\r\nC4HHB,EE32,Laundry room,7,7,Yes,Person is standing by chair with box on it drinking water then starts sneezing.,cup/glass/bottle;dish;water,\"A person is drinking something from a cup, and then they proceed to sneeze.\",c106 1.80 14.00;c153 10.00 17.00;c119 8.60 15.30;c120 0.00 4.30;c118 0.00 15.20,16.42\r\nAAJI0,UTMU,Garage,6,7,Yes,A person is taking off shoes and then opening the window in the garage.,box;shoe;vent;window,\"A person stands next to a box.  They take off their shoes, then open a window and walk out of the room.;Person takes off shoes then opens a vent and walks away.\",c090 10.80 20.60;c054 1.00 11.80;c057 1.00 11.80,29.71\r\nFDOY9,Z68L,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,\"A person is pouring a cup of coffee, then drinking it and then sneezing and turning off a light in an entryway.\",coffee;cup;glass;light,A person pours coffee into a mug and stands at the doorway drinking coffee. The person sneezes and then turns off the light.,c105 26.40 35.70;c106 14.80 31.20;c153 20.50 32.30;c108 5.70 18.70;c107 5.90 38.00,37.38\r\n2J2EW,T7C3,Home Office / Study (A room in a house used for work),4,7,Yes,\"A person is in a home office holding a towel, they then open a bag of groceries and start removing them.\",bag;blanket;cans;towel,The person is sitting in a chair and holding a towel and a grocery bag full of cans. The person then starts to remove the cans from the bag and place them onto the floor one by one.,c021 4.10 20.70;c070 0.00 7.80;c020 0.00 36.00,34.92\r\n138LG,H8N1,Bedroom,2,3,Yes,A person is holding some homework.  The person is leaving the room and turning off the light.,door;light,A person is walking out of a doorway. The person shuts off the light as they leave.,c105 9.00 14.70;c097 7.40 12.80,18.00\r\nW3CPB,3VLX,Garage,6,6,Yes,Person A enters the garage and removes shoes and puts them on the floor.  Person then stands on a chair to try and fix the light that has been going out.,chair;door;floor;groud;light;shoe,\"A person is walking into a garage, they then take off their shoes and throw them on the floor, stand on a chair, and begin to fix a light.;The person walks through a door into a garage, removes shoes, and then stand on top of a chair.\",c103 10.40 21.00;c060 8.70 21.00;c008 0.00 4.10;c057 4.60 12.00;c126 6.00 11.60;c058 5.90 11.60;c097 0.00 4.80;c141 0.00 3.70,19.96\r\nEWBOG,3H6W,Bedroom,5,5,Yes,\"A person in sneezing on a doorknob, then eating a sandwich and finally using a vacuum in a hallway.\",dish;food;plate;sandwich;vacuum,\"A person walks in, sneezes and picks up a sandwich and plate from the couch.  They eat the sandwich, put the plate back, pick up the vacuum and start to vacuum before leaving.;A person sneezes before eating from a plate and vacuuming the floor.\",c065 9.50 22.30;c068 17.60 22.80;c153 3.60 11.60;c067 11.50 21.60;c069 9.80 15.50;c137 19.50 35.50;c156 11.50 21.30;c119 17.50 22.50;c061 9.50 22.70;c062 17.60 22.70;c063 9.50 15.20,34.71\r\n5Q0CX,T7C3,Living room,4,6,Yes,\"A person awakens and turns on a light. They get up and look out a window, smiling, before leaving the room.\",curtain;light;sofa;window,\"A person is sleeping on a couch, they then awaken, turn on the light and look out the window.;A person sleeping on a sofa wakes up and turns on a light.  The person moves a curtain and looks out a window.\",c104 14.20 18.70;c092 22.40 30.70;c146 0.50 12.40;c154 8.20 16.10;c122 0.00 4.80,35.00\r\n3FMAS,D0RU,Living room,7,7,Yes,A person is looking at a mirror near the doorway. The person smiles and takes a picture of themself.,doorway;hair;mirror;phone;picture,A person is looking in a mirror in a room while holding a phone. They then take a picture of them self.,c096 0.00 26.20;c154 1.70 23.20;c087 31.60 38.00;c015 0.00 38.00;c144 14.70 21.90;c016 22.70 38.00,37.12\r\n3ONCH,UTMU,Home Office / Study (A room in a house used for work),4,5,Yes,A person turns on the light in their home office.  They are seen putting their shoes into a box while laughing.,box;chair;dog;light;shoe,\"Person coming into the room, picks up shoes from chair, puts them in a box, and then walks out again.;A person picks up a box out of a chair and places shoes in to the box.The person picks up the box and puts it back in to the chair.The person pats a dog laugh and smiles and walks off.\",c039 12.10 21.20;c054 5.70 22.10;c152 4.90 23.60;c053 6.00 14.50;c041 5.20 15.40;c040 12.70 22.00;c042 17.50 22.20,24.46\r\nVSFCR,HR43,Living room,7,7,Yes,A person is drinking a cup of coffee on a couch and laughing while looking at a vacuum.,bed;cup;dog;sofa;unknown object,Person is sitting on bed with dog holding coffee cup and sipping out of it.  He looks to his right and examines the object sitting there after setting down his coffee cup.;A person is sitting on a bed with a cup drinking and laughing.,c123 0.00 39.00;c106 0.00 29.10;c149 3.10 39.00;c135 0.00 39.00;c107 0.00 29.10,37.88\r\nHNTS9,DXDI,Hallway,6,7,Yes,\"One person puts down a book and cup of coffee, fixes a hallway light and smiles.\",book;coffee;cup;floor;light,A person is sitting on the floor. The person then turns on a light.;A person walks into the hallway carrying a book and a cup of coffee.  They sit down and set the coffee and book on the floor.  They turn on a night light plugged into a wall socket.,c107 0.00 5.40;c104 9.00 19.00;c109 1.60 8.90;c151 1.40 7.00;c125 2.60 19.00,18.46\r\nVLMII,X5XO,Laundry room,6,7,No,A person is closing a laptop.  Then a person is undressing and puts the clothes they were wearing in the washer.,clothes;laptop,\"A person is in the basement, looking at a laptop. The person closes the laptop. The person walks to the washing machine, begins taking off clothes, and tossing them into the washing machine.\",c003 13.50 17.90;c046 2.00 7.50;c051 0.00 6.60;c052 0.00 5.40;c155 9.00 16.10;c001 8.40 18.10;c001 15.50 24.50,30.58\r\n75KQ6,HR43,Kitchen,7,6,Yes,A person is in the kitchen washing dishes and person is fixing a sandwich on a book.,counter;dish;food;hand;sandwich;sink;towel,\"A person is washing dishes in a sink.  They dry their hands with a towel and make a sandwich.;A person rinsed off dishes in a sink then places them to dry,wipes hands on a towel the continues on to make a sandwich\",c118 7.30 13.00;c119 8.80 16.30;c066 15.50 30.00;c121 0.00 13.50;c139 7.90 14.10;c061 16.30 22.00;c120 2.60 7.60,29.42\r\n57MEO,KFGP,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person runs in laughing and puts homework and a book on a desk.,book;desk;door;homework;paper;table,\"A person opens a door and walks into a room holding a book and some homework, they then put the book and homework on a desk.;A person opens the door and walks in holding a book and some homework, closing the door behind them.  They put the book and homework on a desk and walk away.\",c116 7.30 15.00;c115 0.80 14.20;c026 0.80 14.20;c028 7.30 15.00;c009 7.30 15.00;c008 0.00 4.90;c141 0.00 3.30;c097 0.00 3.90,21.54\r\n9FHVW,ZAWX,Recreation room / Man cave,7,5,Yes,\"In the rec room while one person looked up something on their phone, another walked in and grasped a drink from the refrigerator.\",cabinet/fridge;closet/cabinet;cup/glass/bottle;drink;phone,\"Person is playing on a cell phone, the other person opens the cabinet and takes something out and begins to drink from the cup.\",c016 0.00 16.30;c113 16.00 21.50;c112 19.00 23.70;c152 13.10 20.00;c106 23.60 30.80;c015 0.00 15.90,29.50\r\nW1SRN,DXDI,Hallway,7,7,Yes,\"A person turns on a light in the hallway, then opens the cabinet and throws a blanket on the floor. The person then begins snuggling the blanket.\",blanket;cabinet;doorway;floor;light,\"A person walks out of a bathroom and grabs a blanket from another bathroom. The person throws the blanket on the floor and then picks it up and snuggles it.;A person walks into a hallway, pulls a blanket out of a box and throws it on the floor. Then they pick it up and begin snuggling with the blanket.\",c126 14.00 19.70;c073 10.20 16.40;c097 0.00 5.10;c070 11.10 20.50;c072 20.50 33.00;c074 14.20 20.00;c113 6.40 12.20;c104 1.10 6.90,32.38\r\n170OQ,IK1O,Home Office / Study (A room in a house used for work),7,6,Yes,\"A person is eating a sandwich as the person checks their phone. Then, holding the phone, the person reaches to get a blanket from the floor.\",blanket;chair;computer;desk;floor;food;phone;sandwich;table,\"A person is sitting at a desk working on their computer while holding a phone, they then eat a sandwich and pick up a towel from the floor and put it on their lap.;A man is sitting at a desk eating a sandwich while typing on his phone.  He puts the sandwich on the desk and picks the blanket up off the floor.\",c065 0.00 18.20;c068 12.10 18.40;c073 14.80 23.90;c015 0.00 31.00;c011 0.00 31.00;c067 0.00 17.90;c070 16.80 25.30;c127 17.80 23.20;c156 0.00 15.70;c072 20.10 31.00;c059 0.00 31.00;c061 0.00 17.80;c071 17.20 24.50;c016 0.00 31.00,30.00\r\nN4Q0O,QB52,Basement (A room below the ground floor),4,7,Yes,A person awakens from under a blanket.  Then starts washing a chair.,bed;chair,\"A person is awakening on a bed, they then tidy up a chair and rub their face.;A person is lying on a bed. A person wakes up and starts cleaning a chair.\",c146 1.00 11.90;c154 7.40 12.20;c134 0.00 10.20;c133 4.20 11.90,30.33\r\nO0NVG,BYF9,Bedroom,5,7,Yes,\"A person walks into the bedroom, throwing their shoes in the corner. The person takes a glass from the shelf and pours a drink.\",bottle;clothes;cup;doorway;floor;glass;table,A girl walks into her bedroom and pours a drink into a glass from a bottle on the table.,c108 17.30 27.00;c107 11.50 27.00;c155 4.00 12.30;c097 2.60 9.70;c110 11.30 27.00;c009 15.00 20.60;c126 4.90 12.10,26.04\r\n5C6IS,DXDI,Laundry room,6,7,Yes,A person is seen closing a bag. They take clothes from the bag and begin leaving the room.,bag;clothes;dryer,A person closes a bag being held then reaches inside and pulls out clothes. The person places the bag on the dryer then walks away holding the clothes.,c021 5.30 10.60;c024 9.70 16.00;c002 7.40 15.00;c000 8.60 17.40;c022 10.30 15.40;c020 0.00 15.40,21.17\r\nLECWG,YMXV,Bedroom,6,6,No,One person sits in front of a mirror and dresses into a pair of shoes. Another person takes some groceries to the doorway.,bag;closet/cabinet;clothes;door;groceries;mirror;shoe,A person is sitting down dressing in front of a mirror and another person is carrying groceries and opening a door.,c096 3.30 11.00;c130 20.50 32.00;c020 21.30 30.10;c055 9.90 23.70;c148 0.00 12.50;c008 24.40 32.00;c022 19.90 32.00;c113 24.60 30.90;c000 0.00 5.60,31.38\r\nHONRP,3VLX,Basement (A room below the ground floor),7,7,Yes,a person carries shoes and clothes into the basement and throws them into a washer or dryer.  They then stand their looking at the washer or dryer.,clothes;shoe,\"A person enters the laundry room and puts clothes and shoes in the washer, then stands and looks at it.\",c000 3.70 24.20;c005 14.10 25.50;c053 3.80 20.60;c054 9.00 16.70;c001 13.80 24.20,31.46\r\nOBXY5,XXN8,Bathroom,6,7,Yes,\"A person walks into the bathroom holding a glass of water.  The person puts it down next to the sink and washes their hands, then stands in the doorway wiping their hands on their pants.\",doorway;glass;hand;sink;water,\"A person walks into the bathroom and washes their hands in the sink.  When finished washing, the person uses a shirt to dry the wet hands.\",c139 2.40 14.30;c109 0.50 5.40,30.33\r\n0P7U1,6RE8,Recreation room / Man cave,7,6,Yes,Person enters the Man Cave and closes the open drawer and retreats to the couch to watch some television.  Person then looks briefly at window then falls asleep.,bed;door;laptop;window,\"A person opens a door and enters a room. They sit down, then stand up and look out the window, then go lie in the bed.;This person opens and closes the door, sits down, looks out a window, then lays down.\",,30.88\r\nMNNDB,3H6W,Home Office / Study (A room in a house used for work),5,7,Yes,A person is eating a plate of food in their study. They leave holding a bag.,bag;chair;computer;dish;food;glass;table,\"A person enters the room and sits down at the desk with a snack.  After eating the snack, they stand up and leave the room holding a bag.;person comes into room.  Person sits in chair in front of computer.  Person starts eating food from dishes, then picks up bag, rises from chair, turns, and walks off screen.\",c023 14.40 21.90;c156 2.90 18.60;c154 16.50 22.20;c059 2.20 21.50;c020 15.00 23.10;c063 0.60 18.50;c151 0.70 6.90;c011 1.90 21.10;c118 0.60 7.10;c009 1.60 7.40;c061 3.10 18.50;c119 1.30 7.10;c062 14.90 23.60,24.54\r\n803H6,D0RU,Bedroom,6,4,Yes,A person is opening a window while another person is laughing at a pillow.,cabinet;picture;pillow;window,A person adjusts a picture then opens a cabinet door. Another person laughs at a pillow on the bed.;A person walks into a room and straightens a picture and opens the window another person comes in and throws a pillow around complaining about the pillow.,c090 6.30 12.30;c080 11.00 15.90;c113 6.30 12.30;c092 12.80 32.00;c077 21.30 27.20,30.79\r\nEHHRS,OUKK,Laundry room,4,7,Yes,\"A person opens the door to their laundry room and walks in. They turn on the light and stare at the wall, deep in thought. They suddenly sneeze and burst out laughing. They take out a bottle of medicine from their pocket and take a pill.\",food;light;medicine,A person turns on a light and then sneezes.  The person then takes some medicine.,c104 1.60 6.80;c129 14.20 21.70;c153 9.20 14.10;c061 13.70 22.90,29.71\r\nG5G8K,YMXV,Bedroom,7,6,Yes,A person is seen sneezing as they put a pillow away. They pull out a book and begin smiling.,book;pillow,\"A person is holding a pillow, puts it on a bed, and then sneezes. The person appears to be reading from a pamphlet and is possibly frustrated.\",c076 0.00 10.70;c077 3.30 10.00;c026 0.00 32.00;c153 4.40 32.00;c152 11.10 22.10;c115 0.00 32.00,31.08\r\nZO3EG,0RNU,Laundry room,6,7,Yes,\"A person undresses in the laundry room and throws the clothes into the open laundry machine.  They hold a bag open and toss some books in, and then leave with it.\",bag;book;clothes;door;washer;washing machine,\"person removed the jacket put it in the washing machine took the clothes from aside and threw it in the machine and closed the machine. took a bag and kept the books lying on the shelf into the bag and left the room;A person takes off a jacket and throws it and some other clothes in a washer. They open a bag and put some books from a shelf into it, open the door and leave.\",c020 10.00 39.00;c001 0.10 15.90;c026 17.60 26.20;c030 15.50 23.00;c005 1.60 11.50;c002 0.00 12.30;c021 12.10 18.80;c028 15.90 31.50;c155 0.90 9.40;c008 31.90 38.60;c003 6.00 13.40;c097 34.60 39.00;c000 3.50 10.00,38.04\r\nZ0O2V,KQI6,Kitchen,6,6,Yes,\"One person opens a cabinet with dishes on a shelf, then closes it. Another person in the doorway throws a book.\",book;cabinet;dish;doorway;shelf,A person cleans their counter as another enters the room.,c082 0.00 21.80;c118 0.00 9.60;c116 23.20 29.30;c081 5.10 10.20;c081 8.50 13.40;c119 5.30 10.20;c119 8.00 13.10;c119 11.20 16.20,32.21\r\nA0RW3,JVLO,Bathroom,3,6,Yes,A person is grasping a pillow near a mirror and sneezing.,mirror;pillow;window,\"person walks into room, grabs pillow, sneezes multiple times\",c076 11.10 32.00;c096 9.70 25.00;c153 14.70 32.00;c092 12.20 22.00,31.46\r\n36WU0,X5XO,Basement (A room below the ground floor),5,7,Yes,A person in their basement is playing with their shoes. They are watching some video on their laptop while grasping a glass of coffee in one hand.,cup;glass;laptop;shoe;table,A person is sitting while holding a glass and looking at a laptop. The person puts their shoe on the table and begins to play with their shoe with their hand.,c107 0.00 32.00;c051 0.00 32.00;c011 0.00 32.00,31.12\r\nJP60G,UO0Z,Kitchen,5,6,Yes,\"A person takes their shoes off and opens a cabinet, then sits down and plays with their camera.\",camera;closet/cabinet;phone;picture;refrigerator;shoe;sofa,\"A person is standing the kitchen they take off their shoes they go over to a cabinet and take out a phone they walk over the the couch and sit down and take a picture with their phone.;A person takes their shoes off int the kitchen and walks into the living room and sits on the couch, then uses the camera on their phone.\",c015 13.00 23.00;c056 0.00 7.00;c057 0.60 8.10;c151 11.70 17.80;c087 12.80 18.10;c123 13.90 23.00;c016 11.30 23.00;c054 2.60 8.00;c113 5.90 10.90,21.92\r\n2RJF6,JVLO,Bedroom,4,6,Yes,A person is working at a table on a laptop.  Another person is leaving the mirror with a brush.,doorway;hair;laptop;mirror;table,One person is sitting at a table and working on a laptop. another person is standing in front of a mirror brushing teeth and fixing hair.,c094 19.00 29.90;c096 19.00 29.90;c051 0.00 22.60;c011 0.00 22.00;c144 20.00 29.60;c052 0.00 22.10;c097 29.90 34.00,32.96\r\nJ3ZZH,4I61,Laundry room,6,5,Yes,\"A person awakens in a pantry. They put a box of food on the shelf, grab a laptop, and leave.\",box;cabinet;floor;laptop;shelf,\"The person is waking up in the kitchen floor. The person then grabs an object  and walks out.;A person lying on the floor awakens then stands and opens a cabinet. The person picks up a box and puts it on a shelf in a cabinet. the person closes the cabinet, turns and picks up a laptop that is carried out of the room.\",c047 29.30 37.60;c081 23.30 31.50;c043 23.30 31.50;c154 19.20 27.30;c112 27.10 32.50;c050 1.10 5.20;c042 0.50 4.70;c146 0.00 3.40;c124 0.00 2.70,40.29\r\nMYPU6,XXN8,Home Office / Study (A room in a house used for work),6,5,Yes,A person walks into the bathroom and throws a blanket on the chair.  The person picks up a glass of water and takes a drink.,blanket;chair;clothes;cup;medicine;water,\"A person walked to a chair, threw a towel onto it, then picked up a cup and drank from the cup.\",c106 3.20 31.00;c107 3.10 31.00;c070 0.50 6.20;c003 0.50 5.80;c129 5.10 31.00;c059 6.80 31.00,30.46\r\nTHW67,YA10,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is smiling while taking off their shoes. The person begins eating, then notices a towel on the floor. The person picks up the towel and throws it out of the room.\",clothes;dish;floor;food;plate;sandwich;shoe;table;towel,\"person removed the shoes and threw it aside, took a plate of sandwich from the table, ate some sandwich and kept it on the table. took clothes from the floor and threw it outside the room;A person takes his shoes of and throws them on the ground. They then pick up a plate and take a bite from a sandwich and sit the plate back on the table. They pick a towel up off the floor and throw it.\",c033 23.00 28.00;c057 0.00 11.00;c118 10.00 24.00;c065 12.00 22.00;c056 0.00 11.00;c126 0.60 4.80;c035 0.50 4.60;c058 0.00 3.00;c119 0.20 4.50;c068 0.00 4.00;c120 0.00 4.30;c127 22.70 30.00;c036 21.80 30.00;c156 11.70 25.80;c069 10.10 26.00;c002 0.20 12.80;c061 10.90 25.10;c062 20.40 27.70;c152 20.50 30.00;c063 11.20 16.40;c009 21.00 25.80;c067 11.70 22.50,29.04\r\nWZN0I,YMXV,Bedroom,4,5,Yes,A person throws a pillow through the doorway and begins playing with their phone.,bed;floor;phone;pillow,\"A person is taking pillows off a bed, fixing them and throwing them on the floor.  They then pick up a phone and play on it.;A person holding a pillow throws it on the floor. He picks up another pillow and throws that as well. He grabs a phone from his desk and starts using it.\",c076 0.00 5.70;c079 0.00 5.10;c015 13.50 32.00;c018 12.60 17.50;c126 1.90 7.70;c080 1.30 8.20;c016 14.00 32.00,31.00\r\nSZTNV,0KZ7,Hallway,7,7,Yes,Person is sitting on floor and eating sandwich. Another person is throwing food at door and laughing.,door;floor;food;sandwich,A person is standing and throwing things at the door.  Another person is sitting on the floor by the door eating a sandwich.,c125 0.00 30.00;c065 0.00 30.00;c067 0.00 30.00;c064 0.00 30.00;c156 0.00 30.00;c126 0.00 30.00;c062 0.00 30.00;c068 0.00 30.00;c061 0.00 30.00,28.71\r\nZZDBH,OUKK,Living room,5,7,Yes,Person is lying on couch watching television and talking on phone.,phone;sofa,A person walks in and lies down on a sofa while talking on a phone,c122 2.00 31.00;c019 2.00 31.00;c151 1.00 31.00;c015 1.00 31.00,29.71\r\n5SGU6,2Q9D,Pantry,7,7,Yes,\"A person is in a pantry opening a grocery bag, ignoring it's contents they decide to close the bag and put the dishes away first.\",bag;cabinet;dish;food;groceries;shelf;table,\"A person with a bag of rgroceries walks to their pantry and puts some things onto the shelves of their cabinets.;A person carries groceries in a bag to a cabinet, then opens and closes the bag and puts it on a counter. The person next opens a cabinet and puts dishes on a shelf.\",c021 1.00 9.40;c020 0.00 4.90;c081 6.00 11.00;c113 10.90 16.30;c119 13.90 18.80;c022 9.70 14.50;c130 9.70 14.50;c112 26.60 31.00;c009 9.90 14.30;c020 0.00 14.50;c062 8.40 14.50,30.04\r\nLCEM0,KQI6,Hallway,5,7,Yes,\"In the hallway, a person is sitting down on the ground while eating some groceries that the just bought. They look out the window while smiling because it is bright outside.\",dish;floor;food;laptop;plate;table,\"A person is sitting on the floor with a pate of food,  then then eat and work on their laptop before putting water on the floor.;A person is sitting on the floor with a plate of food. They eat a grape. They work on their laptop. They then move a bottle from the table and put the plate on the table,\",c156 0.20 12.60;c052 8.80 32.00;c118 0.00 29.50;c061 0.00 29.50;c125 0.00 32.00;c119 23.50 29.50;c009 23.80 29.20;c011 0.00 32.00;c063 0.70 10.90;c014 0.00 32.00;c062 21.30 27.20;c120 22.60 29.20;c051 8.50 17.50,31.25\r\n2DTZ3,UTMU,Home Office / Study (A room in a house used for work),5,7,Yes,A person is seen closing a door in the doorway. They start running past the door and pick up a cup of coffee.,coffee;cup;door,A person closes a door and runs to get a cup of coffee.,c006 0.30 7.30;c107 7.60 15.20;c150 4.90 16.40;c110 7.60 12.40,15.92\r\n4AQZ2,JVLO,Kitchen,2,4,Yes,\"One person puts groceries in a small refrigerator, then starts drinking and leaves, smiling at the reflection in the mirror on the way out.\",bag;food;groceries;hair;mirror;refrigerator,\"A person grabs some groceries from a chair and puts them in a fridge, then takes a drink of something, then checks his hair a mirror.\",c130 0.40 14.80;c096 26.20 33.00;c142 22.70 29.00;c020 0.00 14.80;c143 6.10 28.60;c144 26.20 33.00;c062 1.50 15.30,31.67\r\nA8SG6,0KZ7,Stairs,7,7,Yes,A person walks up the stairs with a bag on their shoulder and homework in their hands while eating something.,book;food;paper;sandwich;stairs,A PERSON IS WALKING UP THE STAIRS WHILE READING A BOOK AND EATING SOMETHING.;A person walking up a stair way .The person is holding a book and eating a sandwich while walking up the stairs .,c115 0.00 24.00;c156 0.00 24.00;c026 0.00 24.00;c032 0.00 24.00;c065 0.00 24.00;c067 0.00 24.00;c061 0.00 24.00,22.62\r\nQ34XB,DXDI,Stairs,6,7,Yes,A person undresses in front of a mirror. The person takes some clothes from a nearby table and begins dressing.,clothes;shirt,\"A person takes off a shirt, then puts on another shirt.\",c000 9.90 14.90;c001 2.30 10.80;c155 0.00 9.30;c148 10.70 26.00;c002 9.20 15.30,25.38\r\n7SQXM,X5XO,Stairs,5,7,Yes,Person A is Sitting on a stair step holding a laptop waiting for a friend wrapped up in a blanket.,blanket;floor;laptop,A person sitting on the stairs using a laptop with a blanket around the person shoulder keeping the person warm.,c051 0.00 32.00;c072 0.00 32.00;c125 0.00 32.00,30.88\r\n2STCL,XXN8,Bathroom,5,7,Yes,A person is undressing in front of the mirror in the recreation room / man cave and then lies a book on the floor.,book;clothes;floor;mirror;shelf;table,\"A WOMAN IS CROUCHING DOWN TO LOOK AT A MIRROR, TAKES OFF HER JACKET AND TAKES A BOOK AND PLACES IT ON THE TABLE\",c028 14.00 20.30;c096 1.40 17.80;c155 1.50 14.90;c002 11.40 17.10;c030 11.10 17.70;c026 11.70 17.50;c081 13.10 18.60;c001 3.80 12.80;c000 3.40 13.50;c009 3.40 14.00,30.50\r\nH8S4L,BYF9,Kitchen,7,6,Yes,\"A person is working on their laptop. The person takes a bottle of medicine from the cabinet, takes some and eats a bite of food, then continues working.\",cookie;laptop;medicine,\"A person types on a laptop. The person takes some medicine, then eats a cookie.\",c047 0.00 30.00;c052 0.00 7.80;c128 6.60 26.10;c129 14.80 19.90,28.96\r\n3W6TL,YA10,Bedroom,6,7,Yes,A person takes a pillow to the wardrobe before closing the door.,bed;closet;door;pillow;shelf,\"The person picks up a pillow, carries it to the closet and puts it away, then closes the door and walks away.;A person is walking towards the bed in a bedroom. The person then takes a pillow off of the bed and throws it into a closet, then shuts the door.\",c006 12.10 19.90;c076 0.40 14.80;c077 8.40 15.10;c079 0.00 8.00;c080 0.00 8.00;c081 10.20 15.20;c141 14.10 19.30;c112 13.10 20.10,22.21\r\nD7PI9,C7O9,Living room,4,7,Yes,One person is playing with a pair of shoes on the sofa while another person is opening up a vacuum.,clothes;shoe;sofa;vacuum,\"One person is cleaning and putting together a vacuum, and another person playing with their shoes.\",c053 0.00 32.00;c136 0.00 32.00;c123 0.00 32.00;c000 0.00 13.20;c002 8.90 14.60,30.75\r\nN9D4C,HJJ4,Recreation room / Man cave,6,7,Yes,\"A person is watching television in the man cave, the person then snuggle their pillow and smile.\",pillow;sofa/couch;television,\"The person turned on their television, watched the television, then snuggled with a pillow.\",c076 8.30 16.20;c078 8.30 16.20;c152 8.30 16.20;c132 0.00 12.30;c123 0.00 20.00,19.08\r\nK4UOG,3531,Dining room,4,5,Yes,\"A person stands at a desk, looking at a picture. The person takes a sandwich from a dish, takes a bite, and leaves.\",desk;food;picture;sandwich;table,\"A person is standing next to a table, staring at a picture. The person then takes a sandwich from the table, eats the sandwich, and walks away.;person lookin at the picture, took a sandwich from teh plate and ate it, kept the remaining sandwich in the plate\",c088 0.00 13.00;c065 13.00 29.00;c067 10.00 29.00;c156 13.00 29.00;c069 10.10 16.80;c061 10.90 29.80;c063 10.10 16.80;c068 24.10 29.80,32.25\r\nYCGJS,KQI6,Kitchen,5,5,Yes,A person takes items from the cabinet and makes a sandwich. The person smiles and leaves.,chair;dish;doorway;food;sandwich;table,\"A person walked into a kitchen, sat down at a table and prepared a sandwich.\",c066 12.90 30.20;c151 5.50 14.10;c154 25.80 31.30;c119 5.20 10.30;c011 8.00 14.40;c061 10.60 32.00;c118 0.00 10.10;c152 26.80 32.00;c097 1.40 6.30;c059 9.20 30.50;c062 5.20 10.30;c009 5.40 10.30,30.62\r\n82YF1,L4ZP,Recreation room / Man cave,4,7,Yes,A person throws a towel on a chair then puts down a cup.,cup;desk;doorway;dresser;shelf;towel,\"This person walks into a room which appears to be hold a towel and coffee mug. This person then places towel down, drinks from cup, places cup and dresser and then walks out of room.;Person walks in room carrying  towel and cup, shakes it out and throws it aside, then person drinks from cup and place it on desk. Person walks out of room.\",c106 14.80 21.60;c109 20.90 25.90;c034 12.70 17.40;c036 11.80 16.40;c107 10.80 23.30;c033 1.30 16.40;c035 2.20 16.40;c081 19.50 25.50;c097 0.00 4.20,28.62\r\n9F91I,ZAWX,Pantry,7,7,Yes,A person is taking a bag into the pantry.  Then a person is closing the bag and looking out the door.,bag;doorway,Person walks into kitchen and looks inside of bag. Person then exits the kitchen.,c021 6.10 18.20;c097 2.10 8.00;c020 0.00 33.00,31.79\r\nGAM0E,3VLX,Pantry,4,7,Yes,\"A person is standing, putting dishes onto a shelf. Then they sneeze.\",closet/cabinet;dish;shelf,A person puts dishes on a shelf.,c081 3.10 8.70;c119 2.70 18.30;c114 5.50 17.00;c153 13.80 21.00;c112 19.90 26.00,24.58\r\nTUTOD,YMXV,Bedroom,7,7,Yes,\"A person dresses next to a window,  A person lies with a blanket.\",bed;blanket;clothes;something;window,A person is dressing then lying down on a bed.,c148 0.00 21.40;c151 18.20 26.20;c134 21.40 33.00;c135 21.30 25.90,32.25\r\nWN2N7,HR43,Bedroom,7,7,Yes,A person is lying down on their bed in their bedroom. They begin taking out their phone and placing it on the desk in the room.,bed;phone,A person is lying in bed on their phone.,c134 0.00 26.00;c016 11.30 20.80;c015 0.70 7.20;c017 19.00 23.70;c018 9.80 14.60;c019 0.00 5.60,24.83\r\nKLO0K,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person is playing with a doorknob while another person is lying on a pillow.,door;floor;pillow,\"A person is holding a doorknob while smiling and dancing, another person grabs a pillow and lays down on the floor.;Person is holding onto the door and doing some strange dance then lays down on a pillow on the floor.\",c141 2.00 17.40;c076 13.40 19.70;c077 15.00 20.10;c152 2.80 7.30;c124 17.90 33.00;c126 14.10 19.80,31.79\r\n7W66P,9Y7F,Living room,4,7,Yes,\"A person is watching television. The person reaches for a box on the table and sits back on the couch, holding the box.\",box;chair;sofa;table;television,There is a person sitting at a table.  That person gets up and walks over to a television and picks up a box.  That same person then sits on the sofa and watches television;A person gets up from a chair and watches tv for a bit. They then pick up a box from a table and sit down on a sofa.,c123 0.00 5.40;c040 10.10 32.00;c151 18.40 23.60;c132 3.00 32.00;c132 6.60 12.70;c043 9.40 22.40;c154 0.00 6.40;c059 0.00 5.60,31.08\r\nZ04NK,XXN8,Dining room,6,7,Yes,A person is putting a book next to a phone and laughing.,book;hard drive;table,\"A person is sitting in a room holding an external hard drive and a textbook. She then puts them on the counter, gets up, and walks away.\",c026 0.00 4.20;c028 0.00 5.10;c152 0.00 10.60;c009 0.00 6.40;c149 3.90 10.60,30.96\r\nKRRBE,3H6W,Recreation room / Man cave,6,7,Yes,A person is in their man cave sitting in a chair and looking at a picture. They stand up and walk through a doorway.,book;chair;doorway;picture;tablet,A person is sitting on a chair using a tablet.  They throw it down and walk away.;A person is looking at a book. A person then goes into a dark room.,c097 11.60 18.50;c086 5.10 10.10;c154 5.00 11.10;c026 0.00 6.50;c032 0.00 9.30;c059 0.00 8.60;c084 0.00 8.80;c088 0.00 8.90,18.75\r\n12T13,2RTW,Bedroom,6,6,Yes,\"A person is smiling holding a towel and cup of coffee, while another person plays a game and then closes a laptop.\",chair;coffee;cup;desk;game;glass;homework;laptop;medicine;table;towel,\"A person is sitting at a table playing with a laptop. Another person is drinking coffee, while holding a towel.;A person is sitting at a table doing homework. Another person is standing over them holding a towel and a cup.;A person is working on the computer while another person is standing behind him. The person standing is smelling his coffee while talking. The person standing is also holding a towel.\",c051 0.00 32.00;c033 0.00 32.00;c014 0.00 32.00;c107 0.00 32.00;c011 0.00 32.00;c052 0.00 32.00;c059 0.00 32.00;c109 0.00 9.00;c034 12.10 22.00,30.58\r\nY4PAD,2RTW,Dining room,6,6,Yes,\"A person is playing a game at a desk covered in homework, and another person walks through with a bottle of medicine.\",chair;cup/glass/bottle;desk;doorway;drink;food;medicine;phone;table,\"A person is sitting at a desk and looking at their phone. Another person walks by with a drink.;A person is sitting at a desk using their phone, then another person walks behind them holding a bottle of medicine.;A person is sitting at a desk and playing with their phone\",c015 0.00 32.00;c016 0.00 32.00;c011 0.00 32.00;c061 12.80 21.40;c107 12.60 22.90;c063 12.50 22.80;c097 12.60 17.70;c059 0.00 32.00,30.75\r\nI8BC5,2RTW,Living room,6,6,Yes,\"A person walks into the entryway eating a sandwich, while another person leaves with a bag of groceries.\",bag;door;food;sandwich,\"A person walks in eating something and disappears from the video. Almost immediately after, another person carrying a full bag leaves the room.\",c020 12.90 21.50;c065 7.70 16.70;c156 8.00 17.00;c067 6.90 16.10;c061 6.90 16.10;c097 4.00 14.00;c023 12.40 24.10;c063 6.00 15.90,30.58\r\nZHOP3,5LWB,Living room,7,7,Yes,One person takes a blanket from a cabinet and watches as another person plays by dressing up in old clothes.,blanket;cabinet;clothes;couch;sofa,Two people are in a living room. One wearing a green shirt pulls a blanket from underneath an entertainment center. The other is trying on jackets that he then puts on a couch.;A person is watching television then takes out a blanket from a cabinet while another person behind him is putting on clothes.,c112 7.00 12.70;c000 10.70 18.00;c155 17.70 29.40;c073 2.50 11.10;c154 7.00 15.30;c113 0.10 6.50;c001 4.90 33.00;c002 3.90 23.10;c070 3.90 32.10;c148 0.00 33.00,31.92\r\n2MJA1,9PLL,Stairs,5,5,Yes,A person is playing on their laptop while sitting on the stairs. They decide to start undressing by removing their sweater and then start looking at a picture on their laptop.,clothes;laptop;sweater,A person is sitting in their stairway using their laptop. They then take off their sweater and continue with the laptop.,c047 0.00 32.00;c051 0.00 32.00;c052 0.00 32.00;c155 9.00 24.20;c001 16.70 28.10,31.38\r\n94EHE,DXDI,Garage,5,7,Yes,\"A person throws a pillow onto a shelf in the garage, then puts something into a box.\",box;pillow;shelf,A person walks into a room with  a pillow and throws it onto a shelf they pick something up off another shelf and put it back down and leave the room.,c043 4.80 15.50;c081 1.10 7.80;c080 2.20 8.90,21.54\r\n8KM5Q,0KZ7,Hallway,4,2,Yes,One person throws a book to another person who is eating food with a stack of homework and dishes nearby.,book;floor,A person is throwing a book to a person who is sitting by a doorway.,c031 0.00 2.90;c152 0.80 6.10;c125 0.00 30.00,29.46\r\nLK2XX,4I2W,Recreation room / Man cave,6,7,Yes,Standing by the television the person begins smiling while holding a picture.,envelope;paper/notebook;picture,A person is standing and holding an envelope while looking around the room.,c084 0.00 31.00;c152 5.70 31.00;c115 0.00 31.00,29.67\r\n2OWA8,UO0Z,Bedroom,6,7,Yes,\"A person is sitting in their bedroom grasping their laptop, they then put it away in a bag and walk away.\",bag;bed;doorway;laptop,\"peson holding a laptop, took a bag from the bad and kept th elaptop into the bag. got up from the bed and walked out of the room;A person sits on a bed and puts a laptop into a bag. The person stands up, puts the bag on one shoulder, and walks out of the room.\",c021 2.30 15.20;c049 3.10 15.20;c135 0.00 21.20;c020 2.50 29.00;c022 0.00 11.90;c154 17.20 24.40;c023 0.00 7.00;c097 19.20 25.40,28.38\r\n8WYAG,4I61,Living room,5,7,Yes,A person is tidying the clothes on the sofa and then watching a video on a laptop in a living room.,clothes;sofa,A person folds some clothes and puts them on the sofa. They stand up and walk away.,c001 0.00 32.00;c002 0.00 32.00;c004 0.00 32.00,31.50\r\nBT7FV,1OHU,Garage,5,6,Yes,A person is taking a book and sitting at a table.,book;chair;shelf,\"A person picks up a book off a shelf, sits down in a chair, opens the book and reads it.  The person then closes the book and puts it back.;A person is taking a book from a shelf and then sitting down on a chair and reading through the book. The person closes the book and places it back on the shelf.\",c025 17.30 26.20;c027 8.90 21.40;c032 8.90 21.40;c081 22.90 27.00;c026 2.50 25.30;c030 1.70 8.80;c151 1.80 12.70;c059 8.00 27.00,26.04\r\nPJ2NN,ZAWX,Bedroom,6,5,Yes,\"A person is running up to a doorway.  While smiling, they turn the doorknob.\",door,A person is fixing a door knob.,c140 15.30 31.00;c007 8.50 31.00,30.04\r\n1YTD7,1OHU,Kitchen,6,6,Yes,A person is lying on the floor doing homework. The person stands up quickly and opens the door.,door;floor;homework;paper,A person is laying down on the floor doing homework they then get up and open a door.,c008 24.40 30.90;c145 0.00 27.50;c124 0.00 26.90;c154 21.20 27.80;c141 24.30 29.60,30.33\r\n8NJD2,1OHU,Pantry,6,6,Yes,\"A person opens a large cabinet to get a broom, then puts the broom back and closes the door.\",broom;cabinet;close;door;dust pan;floor;homework,\"A person is standing by a washer they give a thumbs up and go over to the closet take a broom out look at the broom and put it back and close the closet.;Person standing in front of closet, gives two thumbs up, then opens closet, pulls out broom, shows the broom and the dust pan, replaces the broom and closes the closet.;A person opens the pantry, grabs a broom, puts it back in and closes the door.\",c098 5.80 21.10;c113 0.90 7.00;c100 5.90 21.00;c006 18.30 26.40;c008 0.60 7.60;c141 1.30 7.30;c112 19.00 25.80;c152 23.60 27.00,25.58\r\n1L2G1,2Q9D,Bathroom,5,6,Yes,\"A person runs into the bathroom, closing the door. The person sits in a chair and puts on a pair of shoes.\",chair;door;shoe,The person goes into the bathroom and sits down to put on their shoes.,c056 0.40 27.50;c151 0.00 7.60;c055 1.90 31.00;c006 0.00 5.30;c059 2.10 31.00,30.08\r\nPFCRB,T7C3,Dining room,7,7,Yes,A person is smiling while looking out the window. Then they look at their phone and start sneezing.,phone;window,A person is looking out the window holding a phone then they sneezed twice.,c092 0.00 3.80;c015 0.00 27.00;c153 15.30 22.30;c152 0.00 21.90,25.71\r\nCN108,BYF9,Living room,7,7,Yes,\"A person lying on the floor suddenly sneezes. They throw the blanket they've been wearing on top of themselves off, and stand up.  Working their way to a shelf, they grab a beverage, and begin drinking from it. Thirst quenched, they return to lying on the floor, wrapped in their blanket once again.\",blanket;floor;glass;shelf,\"A person is lying on the floor underneath a blanket. The  person stands up and takes a glass off a shelf, takes a drink and then lies back down on the floor.\",c072 0.00 4.90;c124 0.00 12.30;c154 11.00 17.60;c070 0.00 14.00;c081 21.80 26.70,33.71\r\nD2ES2,6RE8,Living room,6,6,Yes,A person is walking through a doorway while playing with a bag.,bag;doorway,A person standing in a room tosses a bag in the air and catches it. The person walks to another room swinging the bag while pacing back and forth.,c020 0.00 3.10;c023 0.00 2.90;c024 0.00 5.80;c097 10.70 15.60,31.29\r\n6PN8O,XXN8,Bathroom,5,7,Yes,\"The person was closing the shower door as they reached for the towel. After dressing, they leave the room turning out the light on their way out.\",clothes;door;light;towel,A person is in the bathroom holding a towel. They close the shower door and put on a jacket then turn off the light.,c105 23.00 30.90;c033 0.00 8.60;c148 5.70 27.80;c000 0.00 26.50,31.67\r\nORPD5,PKND,Bedroom,6,6,Yes,A person is standing by a stands in the dining room and takes clothes off the table. Another person walks in and gives them a picture.,clothes;phone/camera;picture;table;towel,A person is putting towels on a chair and talking with another person. Then the person puts the towels in a bowl to wash them.;A person is tidying up some clothes.  Another person shows them a picture and they both smile.,c000 0.00 10.50;c004 17.10 30.00;c085 3.70 16.50;c034 4.30 10.50;c001 0.00 30.00;c084 2.80 30.00;c088 5.90 16.50;c152 5.00 26.70;c015 2.50 13.70;c015 8.50 17.20;c035 0.00 5.20;c035 4.10 9.00;c035 16.00 20.50;c012 0.00 9.40;c033 0.00 7.70;c033 4.70 11.90;c149 8.10 17.50,29.17\r\nWTJQ0,BYF9,Living room,6,6,Yes,A person is putting food on a coffee table.  Another person is walking in the door with a pitcher of lemonade.,coffee;cup/glass/bottle;door;food;table,\"A person puts a plate of food on a table. Another person opens the door, walks through the room holding a pitcher of fluid.\",c006 8.10 17.30;c008 5.90 12.80;c061 0.00 9.10;c062 10.10 20.00;c009 0.10 7.30;c097 5.20 16.00;c107 5.20 20.00,18.58\r\nSQY6A,T7C3,Bathroom,1,1,No,A person is smiling at a pair of shoes while closing a box.,box;shoe,\"Person is sitting on the toilet, picks up shoes puts them back down, then picks up a box closes itand puts it back.\",c039 16.20 27.50;c053 6.50 14.80;c054 10.10 15.40;c152 2.10 34.00;c056 1.00 16.00,33.12\r\nZU8Q1,XXN8,Kitchen,5,6,Yes,\"A person is taking a sandwich from a shelf and walking over to the the table, where the person sits and opens their laptop.\",chair;closet/cabinet;dish;food;laptop;sandwich;shelf;table,The person walked to the kitchen and got a sandwich out of a cabinet.  The person then walked to a laptop and began operating it.,c068 5.20 14.90;c048 12.90 20.90;c062 7.70 16.50;c009 7.70 16.80;c151 10.20 21.40;c061 1.90 13.70;c112 4.90 12.00;c051 16.80 30.60;c118 1.50 13.10;c154 0.00 13.70;c011 13.90 32.00;c059 13.90 32.00;c052 14.50 29.30;c113 0.20 11.70;c069 0.50 13.70;c120 0.20 7.10,30.62\r\nHWLBL,KQI6,Living room,6,7,Yes,\"A person fixes a sandwich in their office, A person watches their laptop in their office.\",chair;floor;food;knife;laptop;sandwich;table,A person is sitting on the floor in their living room and is making a sandwich from ingredients on a coffee table. They interact with a laptop.;A person is placing food somewhere in their lap while doing something at the computer at the same time,c052 0.00 31.00;c067 0.00 18.40;c066 0.00 18.40;c068 13.90 19.30;c062 0.00 19.00;c125 0.00 31.00;c063 3.20 17.80;c059 0.00 31.00;c061 2.60 18.90;c011 0.00 31.00,30.33\r\nGANC6,KFGP,Dining room,6,7,Yes,\"A person grasps a box off the dining room chair, and puts it on the table.  They begin sweeping with the broom and start sneezing from the dust.\",box;broom;chair;table,A man picks p a box and then starts sweeping the dining room. He then sneezes and continues to sweep.,c042 1.70 7.10;c009 1.60 6.50;c102 3.90 28.00;c153 13.60 19.60;c040 1.00 6.30;c045 1.80 6.40;c043 0.70 5.70,27.38\r\nTLSUX,C7O9,Laundry room,6,7,Yes,Person is running though doorway then starts grasping a towel and starts sneezing into a towel.,clothes;doorway;towel,\"Person runs into the laundry room, picks up a towel, and begins to sneeze over and over again into the towel.\",c033 0.90 29.00;c097 0.00 4.20;c150 0.00 4.20;c153 2.70 29.00;c002 0.90 6.40;c000 1.20 29.00,27.71\r\n8FH2F,1OHU,Garage,4,6,Yes,A smiling person opens a door and enters a garage. The person drinks a coffee while sitting on a sofa.,chair;cup;door;glass;sofa,\"A person opens a door, enters the room smiling, closes the door and sits on the chair.  The person then drinks from the cup.;A person opens a door with a glass, he sits on a chair and drinks from the glass\",c006 10.40 17.60;c123 16.30 22.50;c107 8.30 13.10;c059 14.60 19.80;c008 1.40 9.30;c106 4.30 14.60;c152 10.30 20.60;c151 19.80 30.40;c097 7.40 13.80,29.92\r\nOVKWZ,L4ZP,Basement (A room below the ground floor),6,6,Yes,\"The person walks around the living room as they use the vacuum.  After finishing vacuuming, they clean the pictures on the wall, before leaving.\",cup;glass;picture;rag;television;towel;vaccuum;vacuum,\"A person is vacuuming the floor and holding a towel in their hand, then they clean a picture frame sitting at a table.;A person is vacuuming the floor, then wipes off a television with a rag.\",c111 19.30 29.80;c033 0.00 34.00;c137 0.00 18.00;c038 19.00 28.00,33.42\r\nXN64E,L4ZP,Stairs,6,6,Yes,A person is sitting on a couch and drinking a cup of coffee while watching television.,bag;bread;food;sandwich;stairs,\"A person climbs up some stairs with a bag of food. The person pulls out a sandwich and begins eating it.;A person walks up a flight of stairs, retrieves a slice of bread from a bag, then eats the slice of bread.\",c020 2.10 34.00;c067 8.40 34.00;c021 6.40 12.10;c156 14.50 34.00;c061 8.40 34.00;c065 15.00 34.00;c069 0.00 34.00,33.04\r\nOFPAE,L4ZP,Living room,6,6,Yes,A person awakens on a sofa. The person takes out their phone and looks at some pictures.,phone;picture;sofa;vacuum;wall,\"A person is sleeping on a couch, they then take out their phone and begin using it.;A person is sleeping on the couch with a hat on his face. The person wakes up and starts using the phone.\",c015 7.10 35.00;c122 0.00 35.00;c146 2.00 9.20;c016 6.60 35.00,33.67\r\nGDTYU,YA10,Laundry room,6,7,Yes,A person is holding a sandwich then decides to undress their clothes holding a broom.,broom;clothes;food;sandwich,A man is standing near his washing machine with a broom in his hand.  He begins to undress.,c098 0.00 29.00;c155 10.60 25.60;c061 0.00 12.40;c156 0.00 12.20;c062 6.70 11.90;c067 0.00 11.50;c065 0.00 10.50;c001 25.00 29.00;c000 22.00 29.00;c068 7.00 12.10;c002 13.90 29.00,28.42\r\nMOT57,O1YY,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is standing in their study drinking water. They put the water on the desk, and grab a  book of a shelf.\",book;cup/glass/bottle;desk;shelf;table;water,\"a person standing up while drinking water from a glass, puts the glass down on the table then picks up a book and reads the back\",c026 18.60 26.00;c106 0.00 14.50;c009 11.70 17.70;c032 20.00 26.00;c030 17.90 23.30,25.50\r\nD9UO2,38MV,Stairs,6,6,Yes,The person smiled as they walked down the stairs. The person was holding a bag of new clothes.,bag;clothes;towel,A person walks down the stairs. They pause to rearrange a bag before continuing down the stairs.,c020 4.90 10.50;c033 4.80 14.90;c034 7.80 15.10;c021 3.20 8.20;c035 4.20 10.90,20.50\r\nT8B7B,DXDI,Living room,3,7,Yes,A person is snuggling on a couch with a cup of coffee. The person sneezes then puts the coffee cup in a box.,box;cup/glass/bottle;phone;sofa,\"A person is lying on a sofa, holding a camera. The person sits up and sneezes, and then puts the camera in a box on the floor. The person closes the box.\",c039 22.30 28.80;c015 0.00 25.10;c017 19.60 25.40;c122 0.00 30.00;c123 16.70 23.30;c153 16.20 22.10;c109 20.00 27.70;c107 0.00 25.40,29.29\r\n706BT,T7C3,Hallway,7,7,Yes,A person is seen eating a sandwich in the doorway. They have an odd look on their face and open the sandwich to check its contents.,doorway;food;sandwich,A person stands in a doorway eating a sandwich while talking and shakes his head.,c065 0.00 25.00;c156 0.00 5.50;c152 25.30 33.00;c149 25.30 33.00,31.92\r\nDOUFF,UO0Z,Living room,4,5,Yes,A person laughs while standing up. The then take pictures off a table.,phone;picture;table,A person is taking a picture of a table with a phone.;A person is standing and taking a picture of something with their phone.,c087 8.80 18.00;c015 0.00 18.00,17.38\r\nKDYNB,WG9D,Bathroom,6,7,Yes,\"A person is standing by the light switch in the bathroom. That person is holding a book, reading the back cover of it.\",book;light,A person flips a book around to look at the back cover of it.,c032 0.00 4.00;c026 0.00 4.00,3.17\r\nV4HBP,D0RU,Bedroom,6,6,Yes,A person is lying down on their bed in the bedroom. They are fixing their clothes and then place a blanket on the ground and then finally throwing a box onto the bed.,bed;blanket;box;chair;towel,\"A person is sitting on a bed folding a towel.  They throw a blanket on the floor, pick up a box from a chair and throw it.;Person sits on a bed and folds a blanket and throws another blanket off the bed,.\",c043 20.40 29.40;c045 25.20 30.30;c070 0.00 11.30;c074 12.20 19.30;c135 26.60 32.00;c033 0.00 11.30;c034 10.90 15.90;c037 0.00 19.10;c040 21.50 27.20;c075 15.60 21.60;c071 11.70 18.80;c042 21.80 27.80,31.08\r\n15CQ9,0RNU,Laundry room,4,7,Yes,A person is drinking water and eating an energy bar. The person then takes a camera and points it outside a window.,camera;food;glass;water;window,\"A person takes a glass of water and drinks, then puts it back down.  They eat some food that they are holding in their hand the pick up a camera and take a picture outside a window.;A person stands in the laundry room holding some food.  They take a glass of water, drink it, then put it back down.  They eat some of the food, then grab a camera and take a picture outside a window.\",,32.50\r\n5SAAB,1OHU,Living room,6,6,Yes,\"The person vacuumed the living room and washed the windows.  The person then smiled, sat down, ate chips and watched television.\",chips;food;sofa;table;towel;vacuum;window,\"A person is vacuuming the floor  then they take a towel open the  window before sitting down on the sofa and eating food.;Person vacuums the floor, opens the blinds, sits on the sofa, puts a foot on the coffee table, picks up a bag of chips and eats some\",c009 4.80 11.50;c151 21.20 29.40;c090 12.50 22.80;c137 0.00 9.50;c123 24.20 32.00;c061 21.10 32.00;c035 12.30 18.00;c063 21.50 26.30;c156 27.20 32.00;c063 22.30 31.10,30.75\r\nOFB7A,1OHU,Living room,6,6,Yes,A person is sitting and snuggling on a couch drinking coffee with a picture on the table next to them.,chair;coffee;cup;picture,A person is drinking a cup of coffee.  The person smiles and looks at a picture.;A person sitting in a chair with a cup of coffee smiles.;A guy is sitting in a chair with a cup in his hand. He is pretending to drink something. At one point he stops to look at a picture on the table next to him.,c106 13.30 22.10;c152 14.60 21.50;c088 14.60 21.50;c059 0.00 30.00;c107 0.00 30.00,29.29\r\n86GSE,1OHU,Living room,6,6,Yes,A person walks over to a light and turns it on. The person sits down and takes off their shoes.,light;shoe;sofa,A person turns on a light and sits on the sofa and takes their shoes off.,c057 11.20 19.10;c104 5.30 10.90;c151 7.80 14.10;c123 10.10 20.00;c056 9.60 19.00;c053 10.30 20.00;c152 13.30 20.00,18.50\r\nJA49K,ZAWX,Kitchen,7,6,Yes,A person is standing at the window with a cup of coffee watching another person as they run by.,cup;dish;window;wrought iron,The person is drinking from a small cup while holding onto some wrought iron and looking out a window.  Another person walks up to the first person as the first person continues to drink.,c106 0.00 21.00;c092 0.00 21.00;c118 0.00 21.90,30.38\r\nR4FOQ,WG9D,Closet / Walk-in closet / Spear closet,7,6,Yes,\"A person takes a broom out of a closet, then looks out the window and begins to laugh.\",broom;cabinet;closet;wardrobe;window,A person is opening a cabinet and grabbing a broom. The person looks at a window and jumps.,c098 1.40 7.00;c100 0.60 5.10;c092 2.60 7.00;c113 0.00 3.00;c112 0.70 5.90,6.12\r\nI0HIX,0KZ7,Bedroom,7,7,Yes,A person is working at a desk. The person puts on a pair of shoes and sneezes.,desk;laptop;shoe;table,A person is working on a laptop on a desk and then putting on shoes.;A person sits at their desk working on their laptop before putting their shoes on.,c014 0.00 7.70;c052 0.00 7.40;c055 4.90 21.00;c153 18.20 23.20,25.83\r\nQ0BNP,PO5L,Bathroom,6,,Yes,\"A person walks into the closet holding a shirt.  The person opens the wardrobe and puts the shirt in there, then closes the wardrobe and starts to get undressed.  The person picks up a cup of coffee from on top of the wardrobe and takes a sip.\",clothes;coffee;cup;doorway;glass;shirt,\"A person walks into a bathroom with a shirt, then takes their shirt off, then drinks from a glass.\",c106 23.80 32.00;c155 14.90 26.20;c154 5.10 33.00;c002 21.20 33.00;c000 7.70 24.40;c097 8.60 13.80;c001 13.10 17.90,32.12\r\nMQHDC,PKND,Kitchen,4,5,Yes,A person is eating food in the doorway and then leaving shoes on the floor of the pantry.,doorway;floor;food;sandwich;shoes,A person in a room holding a apple.The person is walking around eating the apple and making motions with feet and hands .,c061 0.00 32.00;c156 0.00 32.00;c065 0.00 32.00,30.62\r\nG24CA,H8N1,Home Office / Study (A room in a house used for work),6,6,Yes,A person is tidying up their homework while sitting down in a chair laughing to themselves.,book;chair;homework;paper,A person is writing on papers with a pen while sitting in a chair.,c145 0.00 44.70;c059 0.00 55.00;c032 1.20 50.20;c026 0.00 51.20;c025 45.30 51.20;c029 4.20 20.40,54.00\r\nUZIER,SR1C,Bedroom,5,6,Yes,\"A person sets a box down onto a table. The person removes something from the box and begins playing with it, smiling.\",book;box;phone/camera;table,\"A person walks over to a nightstand and sets down a box. The person then opens the box, pulls out a tablet and plays with it.\",c009 4.40 11.00;c015 6.70 36.00;c026 0.40 6.50;c018 6.10 11.50;c016 8.60 36.00,34.58\r\nKCEJF,D0RU,Stairs,6,6,Yes,The person watches something out a window while taking the stairs. They then take a bit of a sandwich.,food;sandwich;window,A person is walking up the stairs eating a sandwich and looking in a window.,c065 1.10 9.30;c092 7.90 22.00;c156 2.70 13.60;c061 0.00 32.00,30.96\r\n19ZJB,YMXV,Living room,6,6,Yes,A person opens the wardrobe. Another person is putting books by the television.,book;door;paper;television;tv,\"This person opens a door, closes it, then another person watches the TV.;Person #1 unlocks a door into another room, then walks away. Person #2 comes in and places a small book on the television and points at the television.\",c026 16.90 23.90;c028 19.90 27.90;c006 7.90 14.30;c008 7.10 11.90;c141 6.90 11.70;c116 20.80 27.40;c115 16.80 24.00;c132 24.50 30.00,30.71\r\nD548M,9Y7F,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,\"A person walks through the doorway, holding a laptop. The person puts the laptop down onto the table.\",doorway;laptop;table,A person is standing outside with a laptop. They walk inside and place the laptop on a table.,c009 24.10 31.50;c097 14.00 23.70;c047 0.00 31.40;c049 24.10 31.40,30.71\r\nOFGBC,YA10,Hallway,4,6,Yes,One person with a bag over the shoulder is laughing into the phone with one hand on the doorknob as another person starts sneezing.,doorknob;phone,\"A person talked on a phone, laughed and and touched a doorknob. Another person watched and sneezed.\",c019 0.00 31.00;c149 11.00 18.00;c153 15.00 21.10;c141 0.00 15.30;c015 0.00 31.00,30.12\r\n2IS9G,4OHY,Bedroom,7,7,Yes,\"One person awakens, turns on the light, takes shoes and clothes, then walks to the doorknob.\",bed;clothes;doorknob;light;shoe,\"Person lying in the bed get up and turn on the light, pick up some clothes and shoes and go out the door.;Person is laying down in bedroom. Person gets up and turns on a light. Person picks up shoes and scarf from floor and shuts door.\",c000 27.80 31.00;c134 11.00 25.40;c146 1.00 9.20;c141 23.00 29.90;c002 19.60 24.20;c053 15.60 20.50;c104 10.20 14.80,29.75\r\nPZS0C,PKND,Bedroom,4,7,Yes,\"A person is awakening in their bedroom, they stand up and start undressing their wardrobe holding their socks in their hand before reaching for the doorknob.\",bed;clothes;doorknob;mirror;shirt,\"A person is laying on the bed, then they stand up and take off their shirt and walk over to the door while looking around the room.;A person who is sitting on a bed gets up, looks into the mirror, and takes off a shirt. The person then walks over to the door and grabs the doorknob.\",c141 20.20 32.00;c154 2.20 10.10;c146 0.00 6.80;c155 8.30 32.00;c135 2.20 8.60;c096 11.40 17.90;c133 0.00 4.80,31.17\r\n9J166,54JK,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"In the entryway, a person is opening a window while holding a book.\",book;window,A person is reading from a book and then opening a window.,c090 9.90 17.50;c026 0.00 23.00;c025 17.40 21.90;c032 0.00 21.70;c092 10.50 18.70;c089 18.60 23.00,21.96\r\nF796T,YMXV,Bathroom,5,6,Yes,A person walks into a bathroom and closes the door.  The person then watches a video on their phone while using the bathroom. The person reaches over and takes a tissue from a box. The person then starts playing a video game on their phone.,door;game;phone;video,A person walks into a bathroom and plays with their phone.;A person is standing in a doorway and walking through a door while playing a video game on a phone.,c016 9.90 32.00;c097 0.00 7.30;c006 8.60 13.60,31.17\r\n4C1KY,8HLE,Kitchen,6,6,Yes,\"A person is eating at a table, then stands to use a broom on the crumbs.\",book;broom;chair;floor;food;plate;table,\"A person reads a book and nibbles some food than gets up and sweeps the floor.;A person is sitting at a table reading and eating a cookie. The person puts down the book, stands up, grabs a broom, and starts to sweep.;A person sitting on a chair at a table and reading a bawdy book while they eat food off a plate gets up and starts sweeping the floor.\",c102 32.20 40.00;c156 0.00 20.60;c026 0.00 34.70;c032 0.00 34.30;c127 32.20 40.00;c154 30.30 37.00;c025 28.50 34.30;c028 30.10 35.40;c029 0.00 33.10;c011 0.00 34.50;c059 0.00 34.50,38.62\r\nV9XR6,8HLE,Kitchen,6,6,Yes,\"Person is working on a laptop and looks longingly at the bed.  Person then shakes head and goes to pantry. After looking around, person smiles hugely and takes coffee.\",bed;cabinet;chair;cup;laptop;table,A person is sitting at a desk using a laptop while another person is in the other room sleeping. then they get up and take a glass from the cabinet;A person sits in a chair at a table while working on a laptop. The person then gets up and opens a cabinet and takes something out.,c134 13.70 20.00;c152 33.80 39.00;c011 0.00 32.90;c113 31.70 37.70;c052 0.00 32.30;c154 23.70 30.20;c059 0.00 30.20;c110 33.70 39.00;c014 0.00 32.93,38.29\r\n38HNU,8HLE,Kitchen,6,6,Yes,A person in the pantry is sneezing into the coffee and laughing. There are groceries on the shelf.,coffee;dog;treat,\"A person gives their dog a before sneezing.;The person gives their dog a treat. The person then sniffs a bag of coffee which causes them to sneeze. They laugh. The person sniffs the coffee again, and sneezes again.\",c153 13.00 19.30;c149 13.00 22.40,30.83\r\nWV8SY,BYF9,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person opens a door, running into the house.  They drop their homework on a shelf before taking off their shoes.\",book;clothes;door;shelf;shoe;table,A person enters a room and takes off their shoes.,c008 13.10 19.00;c057 16.80 23.00;c150 12.80 20.00;c097 12.60 18.30;c009 15.30 21.70;c155 17.30 23.00;c081 15.40 21.00;c028 15.00 21.00,22.00\r\n5XAMJ,KFGP,Living room,6,7,Yes,\"A person watches a video on their laptop. They then close it and pick up their phone. After scrolling to an app, the person begins to laugh.\",chair;laptop;phone;video,\"The person looks at a laptop, closes it, and picks up the phone. The person looks at the phone and laughs.\",c046 10.10 16.20;c015 16.00 33.00;c149 23.00 33.00;c152 23.10 32.40;c047 0.00 14.60;c018 12.70 19.70;c051 0.00 15.00;c016 15.10 33.00;c059 0.00 33.00,32.17\r\n3C9L1,4OHY,Bedroom,5,7,Yes,A person is sitting on a blanket holding a laptop.  The person opens the laptop and begins playing a game on it.  The person gets up and puts the laptop on the table.,desk;floor;laptop;table,\"The person is sitting on the floor and opens his laptop on which the person begins working. Then the person stands up with the laptop and puts it on a desk.;A person is looking at a laptop, then gets up, and sets the computer down.\",c154 26.10 32.90;c009 31.20 35.00;c125 0.00 30.30;c047 0.00 35.00;c050 25.10 34.30;c051 3.90 28.60,34.46\r\n0A8ZT,2Q9D,Bedroom,7,7,Yes,\"A person is drinking medicine in their cabinet, then they begin playing on their phone.\",cabinet;cup/glass/bottle;medicine;phone;shelf,\"A person takes a dose of cough syrup, inspects the label on the bottle, sets the bottle on a shelf in a cabinet, and then takes their phone from their pocket and starts using it;A person a bottle of medicine form a shelf in a cabinet. They drink the medicine then look at the bottle. The person then begins to play on their phone.\",c015 25.60 34.00;c016 26.30 34.00;c129 10.40 19.40;c128 0.00 27.40;c081 22.10 27.40;c109 10.60 27.30;c018 26.50 34.00;c109 21.40 28.00;c018 25.00 30.00;c106 10.70 18.60;c108 4.90 13.00,33.33\r\nCJJ4Q,2RTW,Living room,6,6,Yes,A person laughs as they walk into the dining room. The person picks up some food and takes a bite as they begin watching television.,couch;food;sofa;table;television,\"A person is getting food off the table. A person then sits on the couch and eats while watching television.;A person walks over to a table, picks up some food, walks over to a chair and sits down. The person starts to eat the food while watching TV.;A person walks to the table and picks up some food They sit on the sofa and watch television while eating.\",c062 4.50 10.90;c151 0.00 8.30;c132 7.80 28.00;c156 7.20 22.10;c123 6.20 28.00;c061 1.90 28.00,26.88\r\nFQBHO,2RTW,Bedroom,6,6,Yes,A person is drinking while working on clothes at the end of the bed.,bed;can;clothes;cup;glass;laundry,A person holds a glass and drinks from it while tidying a pile of clothes on the bed.;The person takes a couple sips from an aluminum drink can. The person then starts rooting through laundry piled on top of the bed.,c107 0.00 27.00;c004 1.50 27.00;c106 0.00 3.70;c003 4.60 25.80,25.71\r\n9Z1A3,2RTW,Kitchen,6,6,Yes,\"A person is quickly dressing in the dining room, and puts on a pair of shoes. The person closes a nearby book, and replaces it on the shelf.\",book;clothes;coat;shoe,A person putting on a coat and shoes and picking up a book.;Person puts on a jacket then puts shoes on and gathers things on the floor.,c055 3.20 12.90;c148 0.00 6.90;c148 0.00 17.10;c115 10.70 25.80;c000 0.00 8.50;c117 10.00 16.30;c116 11.10 26.80;c001 0.00 10.50,26.67\r\nQU5KF,ID9V,Entryway (A hall that is generally located at the entrance of a house),3,7,Yes,A person is smiling at a mirror and then standing and using a camera in an entryway.,camera mirror;doorway;phone/camera;picture,A person walks through a door holding a camera and stands there taking pictures. While looking into a mirror.,c087 4.40 9.80;c097 0.00 3.60;c015 3.80 21.40;c016 3.70 21.50,23.17\r\n8SVWO,CCI9,Bedroom,6,6,Yes,A smiling person playing a game takes medicine then eats a sandwich.,bottle;bread;chair;dish;food;medicine;phone;plate;sandwich;tray,\"A person sitting in a chair in front of a bed is using a cell phone. The person bends down picks up a bottle and drinks from it, then picks up a plate with a sandwich on it, and only eats the cheese.;The person is sitting in a chair and is messing with a cell phone then he bends down and picks up a bottle and takes a drink and then puts it down then picks up a tray with some bread on it and takes a bite.\",c065 28.10 34.00;c069 24.50 34.00;c059 0.00 34.00;c016 0.00 15.10;c118 24.20 34.00;c067 29.10 33.50;c156 29.60 34.00;c015 0.00 29.50;c120 24.90 32.10;c063 26.30 33.50;c129 13.70 23.00,32.71\r\n7HV9Q,C7O9,Kitchen,7,7,Yes,One person is opening the laptop while another is playing with the camera.,camera;laptop;table,A person stands at a table and opens a laptop to work on it.  A person next to them is playing with a camera.,c048 0.00 10.80;c051 7.10 31.00;c014 0.00 31.00;c152 15.30 22.00;c052 0.00 31.00;c016 0.00 31.00,29.83\r\nGRJG1,5LWB,Kitchen,6,6,Yes,A person is fixing a blanket with a hole in it in a dining room. Another person comes in and starts undressing and taking off their clothes.,blanket;clothes;floor;shirt;table,\"A person stands near a table sewing some clothes. Another person enters the room and undresses then tosses their shirt on the floor. The person then picks the shirt up.;A person is sewing a blanket while another person enters the room, removes their shirt, and tosses it on the floor before leaving.  The second person returns moments later to retrieve the shirt on the floor.\",c000 0.00 24.00;c004 0.00 24.00;c155 12.50 17.60;c001 15.80 21.40;c003 11.00 16.00;c155 5.00 20.00;c002 15.00 21.00;c127 2.10 6.10;c014 0.00 7.00,22.67\r\nDDV1G,QB52,Bedroom,5,6,Yes,\"A person is awakening, then dressing, then sitting on a chair and finally eating a sandwich and doing homework in a bedroom.\",bed;chair;desk;table,\"A person is lying on a bed, then gets up and sits in a chair at a desk.;A person lying in bed gets up and interacts with something out of view. They sit down at a chair in front of a desk.\",c059 16.00 32.00;c146 0.00 6.00;c151 6.10 19.80;c011 16.00 32.00;c134 0.00 6.80;c014 18.80 32.00;c133 0.00 11.00,30.92\r\nHKOZM,KFGP,Bathroom,1,7,Yes,A person is running water in the sink and then standing on a box in the bathroom.,box;sink;water,\"A person walks into a bathroom, turns on the sink, steps up onto a stool and looks in the mirror.\",,24.71\r\nPG32H,M80J,Recreation room / Man cave,5,7,Yes,\"A person in a recreation room is standing by a window while dressing, they then grab a blanket and quickly fold it before walking away.\",blanket;clothes;shoes;table;window,\"A person is putting shoes on and dressing themselves, they then grab  a blanket and begin to fold it.;A person dresses, then folds a blanket and tidily puts it on a table near a window.\",c075 25.20 52.20;c148 14.50 26.60;c009 36.40 53.00;c002 0.10 27.90,52.21\r\nZQAMW,9PLL,Living room,5,7,Yes,A person is snuggling under a blanket watching television and then sneezing into a glass in a living room.,blanket;cup;dish;glass;television,\"Person is sitting in chair wrapped in blanket, watching TV, person grabs cup and begins to sneeze.\",c132 0.00 34.00;c110 18.50 25.00;c072 0.00 34.00;c153 20.50 34.00;c118 20.40 34.00;c120 19.40 24.20,33.08\r\nOO6BH,3H6W,Pantry,3,5,Yes,Person A is in a pantry and selects some bread to take to the table.  Person A grabs a broom and sneezes from the dust.,broom;closet/cabinet;door;food;shelf;table,A person walks to the pantry. They open the door and take out bread and put it on the table. They then grab a broom and sneeze.,c009 12.20 18.80;c098 17.90 29.90;c153 19.60 28.30;c063 10.10 15.30;c099 27.40 33.20;c062 12.80 17.60;c008 8.30 13.70;c081 8.70 38.10;c113 8.30 40.00;c141 8.30 13.00;c112 8.70 13.90;c100 17.70 24.20,38.96\r\n51801,3VLX,Dining room,7,7,Yes,A person is sitting at the table with some food. They drink from a cup while looking at the light.,chair;cup;dish;food;glass;table,\"A person is sitting on a chair eating and drinking from a glass while looking up at the ceiling.;A person sitting at a table, eating some chips, then takes a drink out of a glass.\",c063 2.80 9.60;c106 8.40 17.30;c009 12.30 20.60;c059 0.00 34.00;c011 0.00 34.00;c118 6.50 34.00;c119 6.70 17.30;c120 6.70 11.00,32.83\r\nUX8NQ,UTMU,Kitchen,6,7,Yes,\"A person is standing in front of a sink laughing and washing dishes, then using a broom the sweep the floor of a kitchen.\",broom;counter;dish;floor;hands;sink;towel,\"A person is washing dishes in a sink and smiling.  They pick up a towel, dry their hands and drop the towel. The person grabs a broom and starts sweeping.;A person smiles while washing a coffee mug, then dries their hands and sweeps the floor.\",c098 13.90 26.00;c149 1.80 12.80;c034 13.20 17.90;c127 14.00 26.00;c100 14.00 19.00;c035 11.00 17.00;c118 0.50 5.00;c121 1.00 12.90;c033 11.40 16.00;c139 12.00 17.80;c038 1.60 13.30;c102 14.30 26.00;c119 8.50 14.50;c120 0.00 4.80;c152 1.90 15.00,25.00\r\nX8AP2,QB52,Kitchen,5,7,Yes,\"A person is eating, then opening and closing a book, then using a phone and finally taking medicine in a living room.\",book;food;medicine;phone,\"A person is standing in a kitchen eating something while reading a book. The person plays on their phone, then takes opens a medicine bottle and takes the pills.\",c015 12.10 25.50;c129 22.30 31.00;c025 9.10 15.00;c026 0.00 17.90;c032 0.00 17.90;c156 1.50 12.90;c128 22.30 29.30,30.29\r\nAO8RW,ZEM0,Closet / Walk-in closet / Spear closet,7,7,Yes,A person in a walk-in closet is putting coffee on a shelf and dressing in a t-shirt. The person then opens the door with the doorknob.,book;clothes;coffee;hair;shelf;shirt,\"A person is putting a book on a shelf, they then pick out a shirt and put it on.;The person places a can of coffee on a shelf in the closet. The person then puts a shirt on and adjusts their clothes.\",c081 0.00 6.90;c148 11.70 34.20;c001 3.10 12.60;c002 2.20 17.20;c144 22.10 29.70,33.67\r\nQVYE2,YMXV,Bedroom,7,6,Yes,\"One person wrapped in a towel starts dressing, standing in front of a mirror, when another person runs in and watches.\",clothes;door;mirror;towel,\"A person is putting on a shirt in front of the mirror. The person then takes the towel off, just as another person runs through the room and through an open doorway.;A person puts on a shirt, and then another person comes in through the screen.\",c096 1.20 17.70;c148 0.00 33.00;c033 22.80 33.00;c000 0.00 3.60,31.54\r\n0KER3,0KZ7,Recreation room / Man cave,7,6,Yes,Person A is in the basement holding a mobile phone.  Person B is opening a box full of books.,book;box;chair;phone,A person is sitting opening a box and taking out a book while another person is standing playing on their phone.,c041 0.00 17.00;c044 13.60 24.40;c026 19.90 28.80;c015 0.00 29.00;c016 0.00 29.00;c028 11.70 17.00;c043 0.00 5.60;c030 9.10 14.90;c032 8.70 29.00;c040 0.00 29.00;c059 0.00 29.00,27.67\r\nQXBTG,6NQX,Living room,7,6,Yes,\"A person sets a box on a desk. They take a towel from the box, and use it to cover the box. They walk away, and start throwing shoes at the desk, trying to knock over the box and blanket.\",blanket;box;shoe;towel,\"A person opened a box, took a towel from the box, placed the towel over the box, stood up, walked away, took of their shoes, and then threw one shoe at the box on the table.\",c057 12.20 19.10;c039 0.30 6.00;c033 7.40 18.20;c035 3.10 9.80;c154 14.80 21.00;c058 14.40 21.00;c041 0.00 3.90;c070 2.40 8.50;c034 2.40 10.90;c040 0.00 5.70,20.38\r\n7NLXI,ENC8,Hallway,5,7,Yes,\"One person snuggles a pillow in the doorway, then starts sneezing.\",doorway;pillow,\"A person stands in a hallway, looking into a doorway. The person is holding a pillow, and starts sneezing. The person then walks down the hallway.\",c076 0.00 24.00;c153 8.40 17.50,25.92\r\nZXKUH,ZAWX,Laundry room,5,6,Yes,A smiling person is dressing in a laundry room. They grab a laptop off a shelf and leave.,clothes;doorway;laptop,A person is fixing their clothes. A person then picks up a laptop and walks away.,c004 0.00 21.10;c047 17.40 31.00;c148 0.00 21.40;c097 22.10 30.20;c050 17.50 24.60,30.50\r\nNYZ5Q,XXN8,Pantry,6,7,Yes,\"A person is tidying groceries in the pantry.  Then a person puts their phone down, forgets it, and leaves the pantry without getting it.\",cabinet;groceries;shelf,A person goes through a cabinet before walking away.;Person looking and putting things away in cabinet before walking out of the kitchen.,c154 12.60 18.00;c114 0.00 14.20;c082 0.00 13.00;c112 12.80 18.00,31.46\r\nPBV4T,WG9D,Bedroom,3,3,No,A person is throwing a broom to the floor.  The person then starts playing with a bag.,bed;chair;dish;food;glass;sandwich;table,\"A person is sitting in a chair eating, and then goes to lie down on the bed.;A person sitting in a chair eats a sandwich and drinks some water. They put the dishes on a table and lay down on the bed.\",c154 3.40 9.00;c059 0.00 8.50;c062 2.50 8.10;c134 5.10 10.00;c065 0.00 6.90;c061 0.00 4.10;c156 0.00 4.30;c119 3.00 8.10;c063 0.00 3.20;c151 5.30 10.00;c107 0.90 5.50;c109 2.90 8.10;c106 1.90 6.50;c067 0.00 4.20;c068 0.10 4.30;c069 0.00 2.60;c118 0.00 8.00;c110 1.20 5.40;c009 3.50 8.10,8.62\r\n8030U,UTMU,Bedroom,6,7,Yes,\"A person is lying on a pile of clothes, then sitting in front of a mirror in a bedroom.\",clothes;floor;hair;mirror,A person cuddles up in a pile of clothing. They they sit up and check their reflection in a mirror.,c096 17.20 35.70;c124 0.00 20.40;c000 0.00 22.50;c125 19.00 36.00;c144 27.50 36.00,35.25\r\n1JGRO,BPRF,Stairs,3,6,Yes,A person runs up the stairs but pauses in front of the window. The person begins watching something outside as they eat a sandwich.,burrito;food;window,A person looks out their window waving while also eating a burrito.,c092 2.40 31.00;c156 6.70 21.20;c061 0.00 31.00,30.42\r\nSCTNB,PKND,Hallway,6,7,Yes,A person opens the door and runs through the doorway. The person takes a pillow from a chair and runs back out.,door;pillow,\"The person runs to open a door, grabs a pillow, and waves it around outside.\",c008 0.50 6.60;c097 2.10 8.30;c076 5.40 32.00;c150 0.00 4.70;c079 6.30 32.00,31.42\r\nTE421,YMXV,Closet / Walk-in closet / Spear closet,6,5,Yes,One person in the doorway pours medicine and sneezes. Another person with a phone closes the door.,cup/glass/bottle;door;medicine;phone,A person takes some medicine then drinks some water. The person then gets in the closet. Another person walks up and closes the door while talking on the phone.,c019 19.10 33.00;c097 15.90 22.20;c129 1.20 6.50;c006 23.30 33.00;c153 16.10 21.80;c106 5.00 14.00,31.92\r\nNZ6PU,Z68L,Bathroom,6,6,No,A person is walking towards a light.  Then a person is putting their hand on a doorknob.,doorknob;hand;light,A person fiddles with a doorknob. She then turns off the light in the room.,c105 24.20 30.00;c140 6.40 30.00;c141 6.90 27.60,28.58\r\nMNBEI,6RE8,Bedroom,5,5,No,A person in the hallway is sitting down while putting on their shoes. They stand up and walk towards the doorway while knocking over a broom.,broom;chair;door;shoe,\"This person opens door and walks into the room. Closes door and proceeds to sit in the chair. Puts on shows and leaves the room.;The person opens the door and enters the room. The person then sits in a yellow chair and puts on his shoes. The person then gets up from the chair, kicks a broom around, and exits via the door the person came through.\",c097 0.00 4.60;c151 0.70 6.50;c055 6.50 18.40;c154 13.30 21.40;c059 0.40 10.20;c008 0.00 5.00;c006 0.00 4.90,30.25\r\nZHPZ1,XXN8,Bedroom,4,7,Yes,\"A person is sitting on the edge of the bed. The person is wrapped in a towel, which the person begins taking off.\",bed;blanket;towel,A woman wrapped in a towel sits on a bed.  She then removes the towel and walks away,c135 0.60 26.00;c033 19.70 28.70;c151 0.00 4.80;c154 22.90 27.80;c075 12.90 27.10;c070 0.00 29.80;c072 0.00 16.60,30.46\r\nV2I7S,KQI6,Living room,7,1,No,\"A person is standing as the person talks on their phone. The person begins watching a person as the person enters and walks to the desk, where the person puts down a pile of clothes.\",doorway;phone,A person is standing while talking on a phone. Another person enters the room and talks to the first person.,c015 0.00 33.00;c019 0.00 33.00;c097 11.10 16.50,31.58\r\n11DD3,BYF9,Bedroom,5,6,Yes,A person is closing a window and snuggling a picture.,bed;curtains;picture;shelf;window,\"A person is sitting on a bed, looking out the window.  The person stands up, shuts the window and closes the curtains.  The person sits back down on the bed and grabs a picture from the headboard.  The person looks at the picture, then pull it close to the chest and hugs it.\",c092 0.00 14.50;c088 15.60 32.00;c154 0.00 5.90;c089 1.10 11.40;c084 12.80 32.00;c152 15.90 32.00;c151 8.20 15.60;c083 12.40 17.50;c088 15.20 22.90;c082 13.90 18.50;c135 0.00 4.50,30.83\r\nLKYCT,ZAWX,Closet / Walk-in closet / Spear closet,7,5,Yes,\"A person walks into the living room, eating a sandwich and drinking a glass of milk.\",bed;cup;doorway;food;glass;sandwich,\"The person walks into the closet and sits down. They grab an sandwich off the shelf and eat it, then drink a glass of water.\",c065 10.30 24.80;c106 22.60 31.00;c151 3.80 10.10;c097 0.00 3.80;c156 6.50 25.30;c061 7.00 25.40;c063 6.80 25.30;c135 4.40 10.10;c062 21.00 26.00,30.38\r\nTGUKM,0RNU,Laundry room,5,7,Yes,A person throws a book past a laptop on the floor before walking over to the laptop and examining it with a light.,book;floor;laptop;light,A person throws a book across the room .The person proceeds to walk over to a laptop on the floor and bend down and pick it up .The person takes a flash light out and shines it on the lap top.,c026 0.00 3.30;c031 0.00 5.20;c126 0.00 5.20;c028 0.00 5.50;c047 9.90 33.00;c104 8.00 16.50;c052 8.90 33.00,32.04\r\n5YA6D,BYF9,Bedroom,6,5,Yes,\"A person is standing in the entry way, closing the front door while carrying a sack of groceries. They take off their shoes and walk further into the house.\",bag;clothes;door;groceries;shoe,\"A person is holding a bag. A person then closes a door, and takes off their shoes.;A person is holding a bag and enters a room. A person then takes off their shoes and walks away.\",c006 2.70 12.80;c020 0.00 32.00;c057 14.00 23.20;c155 12.10 23.00,31.21\r\nY5ZU3,JVLO,Living room,6,7,Yes,A person is sitting on the floor working on their homework.  The person stands up and grasps a broom from the corner and begins sweeping the floor.,broom;floor;homework;paper/notebook,\"A person sits on the floor cross legged while doing homework. After a few seconds, the person gets up, picks up a brush, and starts sweeping the floor.\",c125 0.00 18.70;c127 17.20 32.00;c098 16.40 32.00;c100 16.20 22.10;c102 17.30 32.00;c154 13.30 19.80;c116 0.00 18.60;c145 0.00 18.60;c115 0.00 18.60,30.58\r\n97HAH,6NQX,Kitchen,6,6,Yes,\"A person has a bag of groceries and places the bag on the table. The person starts putting things away, opening the refrigerator, and cabinet. Done, then gets a glass of water and is drinking in front of the stove.\",bag;bottle;cabinet;counter;cup;door;food;glass;groceries;pitcher;plate;refrigerator;table;water,A person walks into room with a bag and sets it down on a table. They get a bottle out of the bag and put it in the fridge and then go back and get a plate from the bag and put it inside a cabinet and close the cabinet door. Then they pour water into a glass from a pitcher and drink it and set the pitcher and glass back down on the counter.,c112 15.10 20.10;c143 4.90 10.50;c130 0.60 10.70;c113 11.70 17.20;c106 21.40 28.00;c110 16.70 22.60;c021 0.40 7.10;c062 1.00 11.10;c062 24.90 28.00,26.75\r\nJ4TLX,D0RU,Living room,5,6,Yes,A person is seen lying their head down on their desk next to a sandwich. They begin laughing and walk out the door.,chair;desk;door;head;table,Person sitting at a table with head down gets up laughing and then walks out of the room.,c149 18.50 29.60;c097 24.50 32.00;c146 15.80 22.90;c059 0.00 26.00;c152 19.20 26.80;c011 0.00 26.40;c154 22.50 27.30,30.96\r\nXJE4Y,YMXV,Laundry room,7,6,Yes,\"A person undresses and throws their clothes into the washing machine.  The person grabs a new shirt from the dryer, snuggles it, and gets dressed.  The person grabs a broom from the corner and sweeps up a pile of food on the floor.\",broom;clothes;door;floor,\"A person opens a door and throws clothing in another room. They then put on a shirt, pick up a broom and start sweeping the floor.\",c098 15.00 33.00;c102 14.80 33.00;c000 2.80 13.90;c003 0.00 7.60;c100 15.00 20.90;c127 15.80 33.00;c001 5.50 13.90;c002 0.00 6.40;c148 0.40 14.70;c008 0.00 3.40,31.62\r\n673VM,D0RU,Kitchen,3,3,No,\"A person walks into the bathroom, drinking a cup of coffee. The person sets the cup down onto a shelf and closes the door.\",camera;door;phone;shelf,\"A person stands and stares into the distance. Another person then takes a camera off a shelf, plays with it, then puts it back on the shelf.;A person stands in a kitchen looking at the doorway. Another person walks through the doorway and takes a camera from a shelf and examines it.  They put it back on the shelf, then pick it up again and walk away.\",c015 104.20 161.80;c017 147.00 159.10;c018 155.10 163.50;c097 91.70 102.80;c081 142.60 159.10;c016 102.40 165.30,178.42\r\n75ZOJ,YMXV,Home Office / Study (A room in a house used for work),5,6,Yes,A person is sitting in their office chair doing some homework. This person smiles as they take a break to relax and sip their drink.,bed;book;bottle;chair;laptop;paper;table;water bootle,\"A person is sitting in a chair next to a laptop reading a book. The person puts the book on the bed and drinks from a water bottle before picking the book back up and resuming reading.;A person is sitting in a chair, looking through papers/book.  Then the person drinks from a water bottle.\",c145 0.00 11.20;c026 24.90 32.00;c030 24.30 28.90;c032 0.00 12.00;c059 0.00 32.00;c025 5.80 10.90;c027 25.30 32.00;c031 7.40 12.30;c115 0.00 12.00;c106 14.10 20.60,31.21\r\nRM1FR,PO5L,Kitchen,6,7,Yes,\"One person opens a cabinet and tidies it up, then takes a picture from the cabinet.\",book;cabinet;door;shelf;tablet,The person walks in and opens a couple cabinets and rearranges some items in it. The person then closes the cabinets and picks up a tablet and takes a selfie.,c112 14.20 20.10;c113 3.20 10.70;c114 6.70 18.50;c008 3.20 9.50;c006 14.40 20.70;c082 7.20 19.40;c029 22.40 31.30;c152 22.40 31.90,35.46\r\n7W8E0,54JK,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is opening a cabinet, then grasping a pillow and finally using a camera in a Closet / Walk-in closet / Spear closet.\",camera;clothes;doorway;phone;pillow,A person grab a pillow and takes a selfie with it.,c015 7.90 20.00;c076 4.00 20.00;c018 7.20 12.90;c000 3.30 20.00;c097 0.00 4.70;c016 7.50 20.00;c154 0.00 20.00;c152 8.60 20.00,19.12\r\nLWBPP,ZSRZ,Closet / Walk-in closet / Spear closet,5,7,Yes,A person turns on the light and puts their sandwich down. The person smiles.,light;plate;sandwich,The person is entering the room and turning the light on;A person turns on a light in their closet and sets a sandwich down on a plate.,c067 0.00 9.70;c068 4.40 9.50;c104 1.80 6.30;c152 6.10 11.00,9.79\r\nCUD1T,HR43,Bedroom,6,7,Yes,A person is working on a laptop in the bedroom. A person laughs at something on their phone.,bed;laptop;phone,A person typing on a lap top sitting on a bed .The person looks at their cell phone at a text and starts laughing.;Person is sitting on their bed working on their laptop and laughing at their phone.,c015 10.00 28.00;c017 0.00 2.80;c018 8.70 14.50;c047 0.00 28.00;c052 0.00 13.90;c149 11.10 23.20;c135 0.00 28.00;c016 9.10 14.90,26.62\r\nZEC1D,P3TI,Pantry,7,7,Yes,A person is running their hands over the shelves of a pantry. The person is grasping a box they pull out of the pantry. The person takes a picture of the box with a camera.,box;camera;phone;picture,\"A person looks at items in a cabinet, takes a box out and holds it  then picks up a camera off a table and takes a picture of the box.\",c040 16.80 33.00;c043 16.80 26.80;c018 21.90 28.20;c087 23.30 33.00;c015 21.40 33.00;c016 21.50 33.00,31.54\r\nNHB5N,2RTW,Bedroom,6,6,Yes,A person who works from home is seated in his home office/study and staring at his computer screen while munching on a sandwich and keeping an eye on a pet dog that is snuggling on a blanket in a corner of the room.,chair;computer;desk;food;laptop;sandwhich;sandwich;table,\"A person is sitting at a desk  eating a sandwich then watching something on their laptop, they occasionally glance at their pet on the bed.;A person is eating something while on their computer.\",c065 0.00 32.00;c156 0.00 32.00;c067 0.00 32.00;c061 0.00 32.00;c011 0.00 32.00;c052 0.00 32.00;c059 0.00 32.00,30.75\r\nEXPOA,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"Person walks into the office at home.  Person is carrying coffee mug and drinking coffee.  Person sits at the desk.  Person then takes off shoes, undresses from work clothes and then dresses with comfortable clothes.\",chair;clothes;coffee;cup;desk;glass;laptop;table,A person is standing up drinking coffee then they sit at the desk and take their shirt off and put another shirt on.;The person walks into the room carrying a glass of coffee.  That person then sits at a desk with a open laptop sitting on it.  That same person then takes off their shirt and puts on a new one.,c009 10.20 16.20;c155 18.40 27.70;c059 10.90 16.70;c002 23.30 28.20;c011 12.30 23.20;c106 0.30 8.60;c151 8.60 16.70;c148 22.30 36.00;c001 22.40 27.30,35.38\r\nJHRXJ,IK1O,Hallway,6,5,Yes,A person is seen with food sitting on the floor. They are playing with the settings on a camera while they eat.,camera;floor;food;sandwich,\"A person is sitting on the floor in a doorway, fiddling with a camera. There is a sandwich in the person's lap.\",c061 0.00 32.00;c125 0.00 32.00;c016 0.00 32.00;c015 0.00 32.00;c067 0.00 32.00,31.08\r\nZ1LE8,PO5L,Living room,5,5,Yes,A person is sitting on a blanket watching television and eating a sandwich in a living room.,blanket;chair;couch;dish;food;plate;sandwich;sofa;table,The  person sat down pick up a plate with food ate food put the plate down get up and walked away.;A person sits down on a couch and picks up a plate of food off of a table and starts eating. They set the food down on the table and then get up and leave.,c065 5.20 22.00;c156 5.20 22.00;c123 3.00 22.30;c151 1.80 7.30;c154 18.20 23.20;c061 4.60 15.90;c118 3.70 9.10;c119 11.60 17.50;c069 3.90 9.20;c062 10.50 17.30;c068 10.50 17.60;c063 3.30 9.20;c067 5.20 15.50;c059 3.00 22.30,25.12\r\nK43ZC,0KZ7,Closet / Walk-in closet / Spear closet,3,7,No,A person eating a quick breakfast puts on a pair of shoes. A second person watches and waves goodbye as they grab their bag and head to work.,chair;clothes;floor;food;shoe,\"A person sitting down takes off their shoes or socks. Another person waves their hand, stands up and leaves.\",c057 0.00 28.00;c154 20.00 25.90;c156 2.20 7.40;c156 10.20 15.80;c156 16.50 22.10;c127 0.00 28.00;c059 0.00 25.50,26.96\r\nI8I5F,A8P9,Closet / Walk-in closet / Spear closet,6,7,Yes,A person begins tidying a cabinet and then starts to laugh happily while holding a pillow.,cabinet;closet;clothes;doorway;pillow;shelf;wardrobe,\"A person is holding a pillow and looking for items in a closet.;Person walk to the closet with a pillow in hand, takes item on the shelf and walks out the closet.\",c076 0.00 7.70;c081 6.10 11.80;c082 8.50 18.80;c149 15.50 28.00;c097 0.00 5.80;c004 5.70 19.20;c001 2.80 9.50,27.08\r\nCMZOB,D0RU,Other,5,7,Yes,Person picks up a small box and takes out medicine. Person then opens it and sees its empty so sets it back down. Person then leaves the room.,box;cabinet;cup;dish;doorway;drawer;shelf;table,\"A person walked over to a table and opened the drawer before picking up a cup and walking into another room.;Person enters the room, opens a drawer then closes it, opens a container on the table, closes it and places it back on the table then leaves the room.\",c039 10.40 16.10;c041 6.10 14.50;c113 0.70 7.90;c009 15.10 19.60;c081 14.90 20.10;c119 14.30 19.30;c042 8.80 14.70;c097 20.60 25.90;c120 4.70 9.60,31.62\r\n313G8,2RTW,Living room,6,6,Yes,A person finishes working on a minor problem with their phone before setting it on the cabinet. They then watch another person sitting on the sofa in the next room.,food;phone;sofa;table,\"Person A is standing there with his phone and shakes around a bit before placing it on a table then himself and Person B who is sitting at the couch make the same face covering there mouths.;A person is standing in the kitchen, looking at something on a phone. The person puts the phone down and looks at another person.\",c015 0.00 27.60;c017 21.90 27.60;c156 24.60 35.00;c123 0.00 35.00;c016 0.00 25.70;c009 21.70 28.10,33.88\r\nDD5SD,1TZV,Kitchen,6,7,Yes,A person is cooking on the stove.  Then the person washes the counter with a towel.,food;pot and spoon;shelf;stove;towel,The woman was in front of the stove stirring something she was cooking. Then moved over to the counter area and wiped something on the counter.,c147 0.00 13.90;c082 0.00 23.70;c037 0.00 26.00;c033 0.00 26.00;c038 0.00 26.00,25.17\r\n0F453,DXDI,Kitchen,6,7,Yes,\"Person is opening refrigerator and grabs some food, then starts laughing because they find homework in there.\",homework;paper;phone;refigerator;refrigerator,\"A person opens a fridge and takes out some homework while holding a phone.;The person opens a refrigerator, grabs a phone, then double checks before closing the door and ends up happily grabbing a stack of papers from the refrigerator as well.\",c117 11.40 20.00;c015 0.30 22.00;c143 0.30 7.90,21.12\r\nTAGS2,HRH1,Hallway,6,5,Yes,A person is laughing on the phone while closing a door.,door;phone,A person holding a phone up to their listening walking down a hall.The person is laughing while on the phone comes to a door and opens it and closes it several times .,c006 17.00 22.70;c008 14.50 21.20;c015 0.00 26.00;c019 0.00 26.00;c149 6.90 16.30,24.54\r\nJIGAJ,BYF9,Bedroom,7,7,Yes,\"A person is looking in the mirror on above the dresser in their bedroom. The person begins tidying up the dresser before turning off the light, leaving the room, and closing the door.\",door;light;mirror,\"A woman is looking in the mirror putting lipstick on. Then she smooths out her hair, and when walking out of the room she turns out the light and closes the door.\",c105 26.20 32.00;c096 2.10 17.10;c006 27.70 34.00;c141 27.70 33.00;c097 28.20 34.00,33.04\r\n60W9B,WQ8Z,Pantry,6,6,Yes,\"The person walked into the pantry where the vacuum and refrigerator was, opened it, and grasped a bottle of milk before turning to the stove to start cooking some oatmeal.\",cup/glass/bottle;food;refrigerator;stove,A person opens a refrigerator and puts something onto a counter next to a stove.,c142 4.80 10.70;c143 1.80 7.60;c147 10.20 21.00;c110 2.20 8.60,20.08\r\nPM1VD,D0RU,Home Office / Study (A room in a house used for work),4,4,Yes,\"A person is sitting on a sofa playing solitaire on their phone in their study, They grab a pile of dishes and leave, and close the door.\",bowls;chair;dish;door;food;phone,\"A person is sitting in a chair playing with their phone, they are swiping their phone with their thumb they get a plate of food and stand up walking out of the room closing the door;This person is sitting in a chair a his desk and appears to be playing a game on his mobile device. Person also picks up a couple of bowls and leaves the room shortly after.\",c016 0.00 107.20;c059 100.80 109.70;c120 104.10 145.80;c061 110.50 145.80;c063 107.30 126.50;c015 0.00 151.40,160.62\r\nQ18ZQ,ENC8,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is near a closet tidying up by putting a towel away, they then remove their shoes and put them away as well.\",closet;clothes;door;shoe;towel,\"A person is holding a towel. A person then opens a closet and put the towel, and their shoes in. A person then closes the door.\",c033 0.00 13.00;c053 17.80 34.30;c006 33.30 41.40;c034 8.30 19.60;c054 22.30 36.20;c113 2.50 13.40;c000 0.00 4.20;c001 0.20 11.70;c008 1.20 8.00;c112 32.90 39.90;c141 1.00 7.40,42.92\r\nN78RL,DXDI,Home Office / Study (A room in a house used for work),6,6,Yes,A person is standing in the doorway laughing.  They have groceries in their hand.,bag;doorway;groceries;piano;television,A person is standing in the doorway holding a bag.;A person is standing in the doorway while holding a bag. In front of the person sits a piano and a television.,c020 0.00 30.00;c097 0.00 30.00,28.75\r\nWT7GN,4I2W,Living room,6,7,Yes,\"A person is standing, smiling and holding a bag of groceries. They turn a doorknob and walk through a door.\",bag;door,A person is walking around a room holding a bag they open a door to another room,c020 0.00 32.00;c141 24.80 32.00;c008 26.20 32.00;c152 10.00 15.70;c097 27.80 32.00,31.42\r\n6YN3J,3531,Recreation room / Man cave,7,6,Yes,\"A person is sitting on the couch eating a sandwich.  The person puts the sandwich on the coffee table and sneezes, then laughs and walks to the mirror to check their teeth.\",coffee;dish;floor;food;mirror;sandwich;sofa;table,A person is sitting on the floor and eating a sandwich. They then sneeze and stand up. After doing so they look in the mirror at their face.,c096 22.10 32.00;c065 0.00 9.00;c153 10.40 16.90;c154 16.50 23.80;c009 5.80 13.10;c118 0.00 13.10;c119 6.10 13.10;c068 0.00 14.50;c061 0.00 9.80;c125 0.00 18.40;c062 8.30 13.00;c067 0.00 12.30;c156 0.00 15.30,31.25\r\nY5NDR,PO5L,Kitchen,4,7,Yes,A person walks into the kitchen and turns on the light. The begin running around undressing and then pick up a broom.,broom;clothes;floor;light;shirt,A person runs into the kitchen and undresses while running around. They grab a broom and begin to clean the floor.;A person is running while taking off their shirt. A person then starts sweeping the floor.,c102 12.40 21.60;c150 2.60 14.90;c155 5.50 12.20;c127 12.40 21.70;c104 1.00 6.50,23.12\r\nM2AKR,BYF9,Living room,5,7,Yes,A person is holding coffee and smiling at a picture.,coffee;cup;picture,A person is standing in a living room. The person is drinking from a mug. The person looks at a picture on the wall and smiles.,c106 0.50 8.00;c107 0.00 20.00;c088 5.40 20.00;c152 9.00 20.00,18.58\r\n8PXPO,T7C3,Kitchen,7,1,No,Person opens cabinet and gets vacuum cleaner and starts tidying up kitchen.,cabinet;dish;shelf;vacuum,A person carries a vacuum into the room and sets it down.  That same person starts putting dishes in a cabinet.;The person walks into the kitchen. The person sets down the vacuum cleaner. The person puts some dishes away.,c112 29.40 33.00;c114 10.00 31.60;c137 0.00 10.10;c138 0.00 7.40;c119 8.30 16.50;c081 11.20 18.90;c113 30.20 33.00,32.50\r\nZUYCL,YA10,Laundry room,7,7,Yes,A person takes a blanket from the washer and puts it into the dryer. The person takes out a camera and takes a picture of themselves.,blanket;camera;dryer;phone;television;washer;washing machine,The person in the video begins by walking to the far end of the room to the washer and taking something out that looks like a blanket or sheet. After closing the machine the person places the object in the dryer and closes it. Then the person takes out their phone and poses for a selfie.;A person walks to the washing machine and opens it. They take a blanket out and put it in the dryer. They take their phone out and takes a photo of themselves.,,29.54\r\nETS92,YMXV,Living room,6,7,Yes,\"A person is standing in front of the door. Closing it, the person turns and looks into the mirror, then opens the cabinet.\",door;hair;mirror;tv,A person closes a door and then looks into a mirror before opening a different door. The person then sits down on a chair.;Someone closes a door and looks at themselves in a mirror. Then they open another door and sit down.,c059 26.60 32.00;c006 11.90 16.50;c008 14.70 19.80;c096 4.60 9.00;c151 26.40 32.00;c144 6.70 12.00,31.17\r\n3QY79,P6LJ,Bathroom,7,7,Yes,\"A person spills some coffee on their shirt, so they begin undressing. They take some new clothes from a cabinet, then begin dressing again.\",cabinet;clothes;coffee;cup;doorway;glass;mug,\"A person walks into a bathroom and grabs a glass and takes a drink.  The person then puts away the glass and takes off their jacket.  The person then takes more clothes and puts them on.;A person walks into the bathroom. The person takes a sip from a white mug, then takes off a shirt. The person puts on a white sweater and walks out of the bathroom.\",c155 11.90 29.20;c109 8.90 15.60;c002 25.80 37.10;c106 1.60 11.30;c148 11.90 64.30;c001 21.50 29.50;c097 0.00 3.30;c000 21.50 29.50;c110 0.00 6.00;c107 1.00 13.60;c112 30.80 36.80;c113 25.80 32.50,66.21\r\nXNXW6,ZSRZ,Kitchen,7,7,Yes,A person is cooking on the stove then laughing with a camera.,camera;counter;food;knob;phone;pot;stove,\"The person is turning on the stove. They then begin to stir some food and after that they pick up a camera and look at it.;A person is standing in the kitchen in front of their stove, turns a knob on the stove, then stirs the contents inside of a pot. The person then picks up a cell phone from the counter next to the stove, looks at the cell phone and then laughs.\",c147 4.50 13.20;c149 10.50 18.00;c015 10.00 18.00;c018 9.70 14.40;c152 10.10 18.00,17.12\r\n09W8V,KFGP,Hallway,6,7,Yes,A person is standing in the hallway looking at a picture on the wall.  The person gets angry and throws the picture onto a nearby bed.,bed;doorway;picture;wall,\"A person standing in a hallway looking at a picture on the wall, hits the wall, then removes the picture from the wall, then walks into a room and throws the picture down into a bed.\",c084 13.20 25.90;c086 22.00 27.20;c083 12.30 19.20;c088 0.00 16.00;c086 12.60 26.80;c088 3.40 27.80;c097 20.10 26.00,29.79\r\n5JSFE,C7O9,Kitchen,7,7,Yes,Person is smiling and drinking coffee. Another person grabs doorknob to open door and grabs homework.,coffee;cup;door;homework;paper,A MAN IS DRINKING A CUP OF COFFEE BY THE DOOR AND ANOTHER BOY PASSES BY HIM TO OPEN A CLOSET DOOR TO GET A PEICE OF PAPER,c008 19.60 28.80;c117 21.90 29.00;c106 0.00 29.80;c141 19.90 28.80;c097 19.40 28.40;c107 0.00 32.00;c006 23.10 29.00,30.79\r\nP03FP,D0RU,Bathroom,6,7,Yes,A person is talking on the phone as they get ready in the bathroom. The person takes some food from a dish and eats it.,dishes;food;hair;phone;towel,A person is brushing hair while talking on the phone in the bathroom.,c019 3.20 21.90;c144 11.10 19.20;c063 24.00 29.10;c015 0.00 24.10;c033 0.00 32.00;c017 24.10 30.20;c156 26.30 31.70,31.25\r\nG4MDY,25TD,Kitchen,5,7,Yes,A person is standing in the kitchen grasping a bag of groceries.  The person turns on the light and takes the groceries out of the bag and puts them in the cabinet.,bag;cabinet;groceries;light;shelf,\"Person stands by door of kitchen holding a grocery bag, the person flips on the light, walks toward a cabinet and begins putting cans away\",c104 0.70 5.70;c130 8.20 25.60;c020 0.00 11.20;c081 8.60 13.20;c081 11.00 16.80;c081 14.70 20.00;c021 6.50 11.40;c022 6.20 10.80,25.42\r\nLEG82,4OHY,Home Office / Study (A room in a house used for work),4,6,Yes,A person is seen drinking from a glass at the table. They then start eating their food but start to sneeze between a bite.,chair;cup;dish;drink;food;glass;laptop;sandwich;table;water,\"This person is sitting at a desk on a computer, drinks something, eats a sandwich, then sneezes.;A person is sitting in a chair drinking water out of a glass. They set the glass down and pick up a sandwich and eat it. They put the sandwich down and sneeze. They pick it back up and eat again and then sneeze another time.\",c061 10.30 15.30;c011 0.00 31.00;c153 15.70 23.90;c065 10.30 18.30;c068 14.20 20.70;c106 0.00 10.40;c156 11.00 18.60;c059 0.00 31.00;c120 0.00 31.00;c107 0.00 11.90;c118 0.00 31.00;c069 9.70 31.00;c109 5.80 11.40;c051 1.60 18.30;c067 9.50 31.00,29.83\r\n4FGLC,ZAWX,Bedroom,6,4,No,A person undressing spills their coffee. Another person walks in folding a blanket.,chair;dish;food;sandwich,\"There are two people in the bedroom, one is sitting on the chair playing with their sandwich, while the other is watching and laughing at the person on the chair.;A person  is sitting in a chair eating while another person laughs.\",c059 0.00 21.80;c061 0.00 21.30;c149 17.80 31.00;c068 0.00 21.50;c118 0.00 21.30;c062 0.00 21.50;c069 0.00 21.60;c152 18.20 31.00;c063 0.00 7.50;c063 5.00 11.90;c063 8.70 18.10,30.42\r\nNYZL3,1OHU,Bedroom,5,7,Yes,\"A person is in a bedroom sitting doing homework, they then grab some food from a near by plate and start eating.\",dish;food;homework;paper;plate;sofa/couch,A person is sitting on their bed doing homework. They pick up a plate of food and eat some before setting it back down and continuing with their work.,c118 11.60 25.90;c119 20.90 25.80;c061 12.70 25.90;c063 12.50 17.90;c145 0.00 32.00;c123 0.00 32.00;c120 11.00 17.90;c115 0.00 15.30;c115 13.90 24.20,30.83\r\n68YR6,2RTW,Living room,6,6,Yes,A person is watching a football game playing on the television. Another person comes through the door and starts washing the window.,chair;cleaner;door;television;towel;tv;window,\"A person is sitting in a chair, watching television. Another person opens the door and walks in with a cleaner and towel and cleans the windows.;A person is sitting in a chair watching TV, and then, another person comes into the room and starts to clean the window.\",c091 21.00 32.00;c006 15.80 20.50;c008 15.20 19.50;c132 0.00 32.00;c038 18.10 32.00;c097 14.70 20.50,30.88\r\nQ96A8,2RTW,Living room,6,6,Yes,\"A person is fixing the leg of a table in their home office. Another person stands watching nearby, with a dish of food in their hands.\",desk;laptop,People sitting at a desk in front of a laptop go under the desk to adjust something on the desk.;Person fixing something under the computer desk while another person looks on.,,30.83\r\nO1XYF,2RTW,Recreation room / Man cave,6,6,Yes,A person turns the doorknob to the study and stands inside the room. Inside is another person sitting and eating a sandwich.,doorknob;doorway;food;laptop;sandwich,\"Person walks into a room and stop, while another person is at a desk eating a sandwich and watching something on a laptop.\",c141 0.00 6.80;c065 1.80 32.00;c067 0.90 32.00;c156 0.50 32.00;c097 0.00 5.40;c051 3.50 32.00,30.67\r\nG8YWY,HR43,Kitchen,5,7,Yes,\"Person is running to put food on stove, then grabs bottle of water and starts drinking it.\",cup/glass/bottle;dish;food;stove;water,\"A person is cooking on the stove. A person then grabs a bottle of water and drinks it.;A person walks up to the stove, turns it on and begins cooking some food on the stove.  They pick up a bottle of water and begin drinking.\",c106 10.20 27.00;c147 0.00 13.40;c107 9.60 27.00;c109 9.60 27.00;c118 6.10 13.00;c063 4.10 8.20;c062 4.20 8.80;c110 9.60 14.20,26.42\r\nY6BVF,Q4IF,Home Office / Study (A room in a house used for work),6,7,Yes,A person stands in their study drinking a cup of coffee. The person sits down and begins working on homework.,book;chair;coffee;cup;glass;homework;paper;pencil;table,\"A person is in a room taking sips from a cup. After they are done with drinking from the cup, they sit down and begin reading a book;This person is drinking something and then is writing answers to a homework assignment while reading a book.\",,32.42\r\nRXBUJ,UTMU,Dining room,7,6,Yes,\"A person is grasping a broom in the dining room.  Then, the person starts closing a window.\",window,\"PERSON WALKS IN ROOM HOLDING SOMETHING, THE PERSON PUTS THE OBJECT DOWN AND WALKS TO WINDOW ANS SHUTS THE WINDOW\",c089 2.00 13.30,25.12\r\nXJU8U,EIO2,Basement (A room below the ground floor),5,5,Yes,\"A person opens the basement door and walks in. The person grabs their phone and their shoes, and leaves.\",door;phone;shoe;table,\"A person walks through the doorway and picks up a phone from the table. After, the person takes their shoes from the floor, leaves the room, and closes the door.;A person opens the door, picks up a phone from the table, and picks up a pair of shoes from the floor. The person then exits the room and closes the door.\",c006 17.80 23.60;c053 12.10 19.40;c015 5.90 12.30;c097 1.30 6.70;c008 0.00 7.30;c018 4.50 11.70;c056 8.40 16.40;c141 1.30 7.10,30.25\r\nZVMAY,18IT,Living room,7,7,Yes,\"A person by the entryway is smiling because they are looking at a picture on their phone. They start grasping a glass of water and take a drink from it, while leaving their phone on the ground.\",cup;door;floor;glass;phone;pic;water,\"The person in the video is smiling, while he getting something to drink, then takes a knee to the ground.;person walks in the house while looking at their phone and laughing. They then get a glass of water and kneel while drinking it .\",c015 0.00 33.80;c106 32.50 38.80;c152 5.50 38.80;c151 25.60 32.30;c149 16.60 22.10;c108 16.60 24.80;c016 5.70 21.50;c125 26.20 43.00;c109 35.00 42.20;c008 2.20 9.30;c097 2.60 10.40,41.79\r\nM3EAQ,HJJ4,Basement (A room below the ground floor),7,7,Yes,A person is working on a laptop in the basement. The person begins laughing and grasping a pillow from the floor.,blanket;laptop;pillow,A person is using a laptop and then picks up a pillow and snuggles it.,c076 12.80 21.00;c078 12.00 21.00;c079 12.60 18.10;c052 0.00 21.00;c152 9.00 21.00;c149 9.00 21.00;c070 12.00 21.00;c051 0.00 21.00,19.67\r\n67MSU,6RE8,Kitchen,6,7,Yes,A person is standing in front of a refrigerator holding a bag of groceries. They open the refrigerator and place the groceries inside.,bag;groceries;refrigerator,A person opens a refrigerator and takes groceries out of a bag and puts the groceries away. The person then closes the refrigerator.,c130 2.70 23.80;c142 22.70 31.00;c020 3.60 13.20;c143 0.00 3.80;c022 20.40 26.60,30.29\r\n42MC3,0KZ7,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is opening and then closing a door, then turning a light  off and on and finally eating a sandwich in a Closet / Walk-in closet / Spear closet.\",door;food;light;sandwich,A person opens and closes a door repeatedly and then turns a light switch on and off repeatedly and then eats a sandwich.,c105 9.20 16.00;c104 10.50 16.80;c065 18.50 25.00;c006 0.00 3.20;c008 0.00 5.50;c156 18.50 25.00,23.67\r\nM40WF,BYF9,Living room,7,7,Yes,\"Two persons are sitting on the couch snuggling and playing video games.  One person gets up and looks in the mirror, then grabs a bag of groceries and takes it to the couch.\",bag;blanket;game;phone/camera;sofa,\"Two people are sitting on a sofa while one uses a controller to play a video game. The other person gets up and moves to a table and picks a bag up from a seat, moving it next to the person playing games.\",c020 25.50 37.00;c023 25.50 34.20;c024 31.50 37.00;c123 0.00 37.00;c154 13.20 19.20;c149 11.00 17.00;c016 1.80 7.80;c152 2.50 7.60;c073 28.00 35.30;c015 1.30 7.20;c018 0.00 4.40,36.04\r\n3GXB7,TCQW,Kitchen,6,6,Yes,\"A person is cooking near the window. The person crosses to a chair and, sitting, smiles in relief.\",chair;dish;food;table;window,A person prepares food on the stove before sitting down at the table.,c059 26.90 32.00;c147 0.00 21.00;c011 23.30 31.10;c152 26.40 32.00;c118 0.00 18.70,31.38\r\nYP1HM,ZAWX,Dining room,6,6,Yes,A person is laughing while doing their homework then they begin to tidy the mirror nearby.,book;paper;pen;table,\"A person finishes writing into a notebook, then gathers the surrounding books and organizes them together on top of the table in front of the person.;This person is sitting at a very small round table, writing something in a notebook, closes notebook and then places one on top of another.\",c116 31.40 36.00;c145 0.00 23.80;c149 12.70 18.60;c011 0.00 36.00;c152 0.30 36.00;c030 0.00 36.00;c012 0.00 36.00;c014 0.00 36.00;c028 0.00 35.90;c026 22.20 26.90;c026 24.50 29.00;c032 0.00 21.00;c025 18.60 24.00;c029 0.10 16.00,34.58\r\nL42OQ,9Y7F,Recreation room / Man cave,4,6,Yes,A person takes medicine before drinking water. Another person sits at a desk and eats a sandwich.,box;desk;food;medicine;sandwich;table;water,\"a man walks and places a vup on the table, takes a container full of medicine and shuffles through it. a man is standing in the back eating something\",c065 2.90 32.00;c009 0.00 4.60;c128 6.80 32.00;c156 2.90 32.00;c040 1.50 32.00;c044 3.20 32.00,30.75\r\nPSCWP,9PLL,Kitchen,5,6,Yes,\"A person is undressing in the kitchen by taking their clothes off. They begin tidying up the room, by removing some food that is found on the country and placing a sandwich into the trash can.\",clothes;counter;dish;food;sandwich;shirt;table,\"A person takes off his shirt, then starts cleaning the counter.;A person takes off their shirt and walks over to a table.  At that table, they pick up a sandwich and throw it in the trash.\",c064 23.60 29.50;c155 0.00 8.40;c013 10.00 18.20;c120 28.00 33.60;c118 28.90 36.00;c001 5.90 12.20;c003 7.20 11.90;c000 5.60 12.10;c062 10.40 36.00,35.25\r\nHA8MN,KQI6,Dining room,4,7,Yes,A person is standing in the dining room holding a book.  Another person is standing next to them holding a cup of coffee.  The person with the coffee takes the other person's book and throws it in the sink with the dishes and laughs.,book;coffee;cup;glass;sink,A person is sitting on a chair reading a book. A person is standing and drinking coffee and then takes the book away and puts it into a sink.,c026 0.00 24.10;c106 3.20 19.90;c149 24.70 32.00;c030 16.10 20.40;c028 16.10 27.40;c032 0.00 20.10,31.71\r\nEFIA2,D0RU,Hallway,6,7,Yes,A person is walking down the hallway carrying dirty dishes.  The person picks up a towel off the floor and smiles.,dish;doorway;floor;towel,A person is holding some dishes while walking.  The person then collects more dishes and puts them in the sink.,c118 3.10 28.90;c119 24.20 29.50;c033 9.10 17.40;c035 8.60 13.80;c097 5.50 10.90;c034 12.50 17.70;c121 27.90 33.00,31.75\r\n5N7DP,D0RU,Stairs,4,6,Yes,A person is throwing shoes down the stairs. They start sneezing and look at their phone.,phone;shoe;stairs,A person is walking down the stair and throws his shoes off their feet. A person then starts talking on the phone and begins sneezing.,c054 0.30 9.30;c015 0.00 34.00;c019 24.10 34.00;c153 11.50 34.00;c058 0.00 11.60;c057 0.30 14.90;c018 18.30 33.90,33.00\r\n1C6P3,9Y7F,Dining room,7,6,Yes,\"A person is holding a bottle of medicine, while a other person is standing holding a sandwich.\",bottle;chair;food;medicine;sandwhich;sandwich;table,A young person sitting at a glass table looks at a small medicine bottle while an older person who is eating a sandwich watches him.;The person sitting in the chair is taking holding medicine and the person standing is holding a sandwich.,c067 0.40 31.00;c128 0.00 31.00;c059 0.00 31.00;c065 0.70 8.60;c156 0.70 8.60;c011 0.00 31.00;c061 0.00 8.60;c061 0.00 31.00,30.04\r\nF44A2,KQI6,Dining room,4,5,Yes,A person in the dining room is sitting on a chair doing their homework. They finish and smiles while taking a picture with their camera.,book;camera;chair;homework;paper;phone;picture;table,\"A person is sitting at a table, looking through a book (homework). The person then picks up a camera from the table and takes a picture, smiling. There is also a glass of water on the table next to the person.;There is a person sitting in a chair at a table reading a book.  That same person picks up a camera and take a picture of themself.\",c115 0.00 16.10;c015 23.90 31.20;c152 25.80 32.00;c087 25.20 30.90;c018 19.20 25.10;c032 0.00 21.70;c011 0.00 33.00;c014 0.00 23.00;c016 20.10 33.00;c059 0.00 33.00;c028 0.00 3.30;c026 0.00 24.10,31.54\r\nM506V,EIO2,Living room,6,6,Yes,A person is holding their laptop and attempting to watch videos while tidying up the room and using a rag/paper towel to wash the surface of the coffee table or other appropriate furniture.,floor;laptop;table;towel,A person is holding a laptop and then grabs a towel and cleans a nearby table.,c033 1.40 13.70;c036 9.40 17.80;c038 4.40 17.50;c047 0.00 32.00;c051 0.00 32.00;c013 6.40 17.20;c127 3.10 17.20;c012 14.00 32.00,30.71\r\nEVHDE,D0RU,Home Office / Study (A room in a house used for work),6,1,No,\"A person in a home office is opening a grocery bag, afterwards they grab a coffee mug that was lying on the desk and walks away.\",bag;chair;coffee;cup;desk;dish;groceries;laptop;table,A person wearing glasses is using a laptop and carrying a cup of coffee.,c023 4.40 15.20;c011 0.00 26.90;c154 21.60 30.40;c107 20.70 29.00;c120 21.30 28.80;c059 0.00 26.10;c014 0.00 24.00;c052 0.00 24.70;c110 21.10 27.20,31.88\r\n36VYU,BYF9,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person puts a cup of coffee onto the table. The person takes a picture of the cup.,clothes;coffee;cup;floor;glass;phone/camera;picture;table,A person places a coffee mug on the table and plays on their phone.,c009 0.00 7.00;c109 0.30 6.90;c107 0.00 5.10;c154 21.80 25.00;c016 3.30 25.00;c015 0.00 25.00;c125 3.40 25.00,23.96\r\n1YAYG,L4ZP,Dining room,6,6,Yes,\"A person in a dining room is walking towards a table carrying some wet dishes, standing up they start to dry them off with a small towel.\",dish;doorway;table;towel,A person walks over to a table holding a dish they have a towel which they are wiping the dishes with.;A person places something on the table and washes dishes with a towel.,c009 1.90 9.80;c038 5.50 38.00;c121 5.10 38.00;c118 0.00 38.00;c119 3.00 9.10;c119 12.70 17.50;c119 21.10 26.40;c097 0.40 6.10;c033 0.00 38.00,37.25\r\nSSKK6,L4ZP,Kitchen,6,6,Yes,\"A person in a dining room is watching a sandwich placed on top of a table, they then take a bite and throw the rest in a bag.\",bag;chair;food;plate;sandwich;table,The person is sitting in a chair at the table examining the sandwich on a plate then the person picks up the sandwich and then puts it down then picks it up and takes a bite and then picks up a bag from off the table and then puts it in a bag and throws it on the table while still chewing.,c009 23.20 27.30;c065 12.80 33.00;c068 21.70 27.20;c020 20.70 27.30;c024 23.20 27.30;c011 0.00 5.20;c067 0.00 4.20;c069 0.00 2.90;c023 0.10 4.20;c156 0.00 5.20;c021 20.90 28.10;c061 11.70 23.80;c063 4.50 15.50;c022 22.70 28.40;c059 0.00 33.00;c062 20.10 28.30,32.21\r\n1ZBUS,L4ZP,Dining room,6,6,Yes,The person takes a pre-made sandwich out of a bag of groceries.  The person is standing by the dining room table. The person's child is playing at the far end of the table.,bag;food;groceries;sandwich;table,A person with a strange hat is sitting at a table playing with toys while another person walks into the room and  is standing at the table emptying a bag and gets a sandwich out and looks at the sandwich.;A person is sitting at a table. Another person walks over and puts a bag of groceries on the table.,c020 0.00 10.60;c022 4.00 13.60;c011 5.20 10.80;c067 11.00 21.80;c021 4.50 10.80;c009 2.10 8.30;c130 1.20 11.40;c011 0.00 22.00;c156 10.30 22.00,21.00\r\nCOM6M,WQ8Z,Kitchen,6,3,Yes,A person is in the basement putting dishes in a cabinet and closing the refrigerator.,cabinet;dish;refrigerator,The person put away the dishes in the cabinet and then closed the refrigerator and walked away.,c112 10.50 17.30;c114 0.00 15.90;c142 15.30 23.00;c119 2.50 15.90;c113 0.00 3.40;c120 0.00 14.80,23.71\r\nKSAGF,Z68L,Home Office / Study (A room in a house used for work),6,7,Yes,A person is standing in front of a laptop and then walking through a door in the home office / study.,door;laptop,Person walking over to desk and looking at laptop before leaving the room.,c051 0.00 8.10;c097 15.90 20.90,23.75\r\nOJT55,2Q9D,Laundry room,6,7,Yes,\"A person enters the laudry room and turns the light on. The person has pillow cases in a basket in their hand. The person then sets the basket down and prepares to wash the pillow cases by pouring detergent in the washer, putting the pillow cases inside, and starting the washer.\",hand;light;pillow,person carrys a bag and put stuff in a washer,,30.21\r\nYQSN8,PKND,Dining room,4,6,Yes,A person is holding a box while another person is closing a window.,box;window,2 people are in a dining room one person has a box and another person closses the window then one person tells the other person something and the other person looks at the window,c040 0.00 32.00;c089 3.40 13.80;c092 23.40 32.00,30.96\r\n61WIS,4I61,Recreation room / Man cave,7,7,Yes,A person inside of their recreation room is playing with something on their laptop. They are watching a video while also putting a pillow onto the ground.,floor;laptop;pillow;sofa,\"A person enters the room carrying a laptop. They sit down on the sofa and use the laptop for a few seconds before picking up a pillow and setting it on the floor. They type a few more seconds and leave the living room with their laptop.;A person with a laptop sits on a sofa and begins using it. They take a pillow and put it on the floor, then stand up and walk away.\",c047 0.80 7.00;c051 2.20 13.80;c077 9.60 16.10;c154 20.20 25.50;c123 0.00 5.60;c050 19.90 26.10;c052 0.00 23.90;c079 10.10 16.10;c151 0.60 6.20;c126 11.30 16.30;c049 21.30 25.80,26.88\r\nN79WJ,ZAWX,Hallway,6,5,Yes,One person wrapped in a blanket runs in and puts a picture on a shelf hanging by a mirror.,blanket;closet/cabinet;doorway;mirror;picture;shelf;wardrobe,\"A person is walking in a hallway holding a picture and wearing a blanket. They clean the picture, and put it on a shelf.\",c081 15.70 24.80;c084 0.00 22.50;c086 16.00 24.30;c088 6.50 28.80;c112 20.60 27.30;c097 3.60 12.10,30.96\r\nEUK1Y,8IOD,Bathroom,6,6,Yes,\"A person puts a book next to a dish in the bathroom, then pours some water into the sink.\",book;dish;sink;water,\"Person is standing in bathroom reading book, then walks towards sink and starts pouring water out of glass dish into a sink.\",c026 0.00 6.20;c032 0.00 4.00;c118 6.50 32.00;c116 1.50 7.20;c028 1.40 7.20,30.75\r\n6PYRZ,9PLL,Hallway,4,6,Yes,A person is throwing a pillow and then sneezing unto a plate of food in a hallway.,dish;food;pillow;plate,A person throws a pillow on the floor while holding a dish. They then sneeze.,c076 0.00 6.00;c080 1.80 6.00;c061 0.00 33.00;c153 9.10 23.00;c077 1.40 6.50;c118 0.00 7.00;c118 4.70 26.40,32.00\r\n8ATVC,C7O9,Laundry room,5,7,Yes,A person closes the door to the dryer in the laundry room then laughs as they start playing a video on their laptop nearby and almost knock over a cup of coffee.,clothes;door;dryer;laptop,A person closes a dryer. A person is looking at a laptop.,c006 0.00 9.90;c005 0.00 4.30,29.33\r\n3D81G,CCI9,Kitchen,4,3,No,A person is sitting at a table laughing at the television while eating food.,chair;dish;food;plate;table;television,\"A person is a eating a plate of food as they watch something on television;Person sitting in a chair with a dish eating food out of the dish, looking at television.\",c132 0.00 32.00;c061 0.00 32.00;c063 0.00 6.10;c156 0.00 8.70;c118 0.00 32.00;c059 0.00 32.00,31.29\r\nWFUK2,BYF9,Hallway,6,5,Yes,\"A person is standing in their hallway, while undressing by taking their jacket off. They are smiling and laughing because they see a funny picture on their desk.\",clothes;coat;picture;table,\"A person is taking off a jacket in the hallway. In addition, the person is looking at a picture on top of a table.;A person takes their coat off while standing up.\",c085 10.30 22.00;c155 0.00 13.30;c152 12.10 22.00;c149 9.20 22.00;c088 1.80 22.00;c002 0.00 13.60;c000 9.30 22.00,20.50\r\nN0DXI,5LWB,Stairs,4,6,Yes,A person stands grasping a towel. Another person looks at a picture while eating a sandwich.,food;picture;sandwich;towel,a person walks upstairs and grabs a towel while another person eats,c065 12.20 19.50;c033 3.50 11.60;c156 12.70 27.00;c061 12.10 18.60;c035 3.00 13.60,25.54\r\nECXEX,2RTW,Dining room,6,6,Yes,Person walks into the dining room carrying food on a plate.  Person places food on the table. Person then grabs plates off of the shelf and puts them on the table.  Person takes towel off of shoulder and wipes sweat off of the forehead.,dish;food;groceries;pantry;sandwich;shelf;table;towel,A person is holding a sandwich. A person then opens the pantry and puts groceries on the shelf.;Person enters room and grabs a plate off of a shelf then moves some things around a table before wiping off with a towel.;A person walks into the room with a towel and puts a plate of food on a table. The person the takes dishes from a shelf and puts them on the table. The person then washes themselves with the towel.,c009 5.00 12.50;c062 4.90 12.50;c033 21.90 31.80;c009 19.20 25.20;c130 4.90 12.30;c118 14.50 24.00;c120 14.50 24.00;c119 19.80 25.20;c061 0.00 7.90;c036 28.90 32.00;c035 28.70 32.00,31.17\r\nHURN7,2RTW,Kitchen,6,6,Yes,\"A person started to undress, starting with their shoes. After a person was cooking, they washed their hands in the sink.\",clothes;food;hand;shoe;sink,\"The person undresses, then starts cooking a meal and washes his hands.\",c057 0.00 6.00;c139 19.80 31.00;c155 2.00 13.00;c147 12.30 23.40;c062 11.10 19.10;c001 0.00 13.60,30.50\r\nMV9N4,RPBD,Kitchen,7,7,Yes,A person is cooking on a stove then starts drinking juice from out of the refrigerator.,food;glass;refrigerator;stove,A person is cooking on the stove and opens the refrigerator and pours a drink.,c147 0.00 30.00;c154 0.00 30.00;c143 3.70 8.80;c108 10.10 15.20;c107 15.00 30.00;c106 16.00 21.20;c142 15.00 20.00,28.96\r\n0CFQV,0KZ7,Bedroom,5,7,Yes,A person walking to their wardrobe and opening it and then looks into the mirror.,closet/cabinet;doorway;dresser;mirror,\"Person walks over to dresser and opens up the top drawer, and then stands looking at self in the mirror.\",c096 4.30 22.00;c113 2.00 6.80;c097 0.00 2.60,20.83\r\n2YT8V,CCI9,Living room,6,6,Yes,One person tidies the hall with a vacuum while another person holding groceries smiles.,bag;chair;groceries;vacuum,2 people are in a living room one person is vaccuming while the other person holds a bag and walks around;One person is vacuuming the floor and chair.  The other person is holding a bag and making motions like he wants to sit in the chair when it is vacuumed.,c137 0.00 32.00;c152 0.00 8.70;c020 0.00 32.00,31.29\r\nYLE12,9Y7F,Bedroom,6,5,Yes,A person is standing by a window while another is tidying the table.,book;desk;papers;table;window,a person tidies a desk in a bedroom while someone else watches;A Person cleans up papers and books on a desk while another watches them,c012 0.00 31.80;c117 3.00 9.60;c117 7.20 12.40;c117 9.90 16.40;c116 6.30 11.00;c116 8.40 13.30;c116 11.90 17.00,30.54\r\nEO6XX,0KZ7,Stairs,5,7,Yes,A person is standing on the stairs grasping a vacuum.  The person fixes the mirror on the wall that is crooked.,mirror;picture;vacuum;wall,A person stands at the top of the stairs holding a vacuum and looking in a mirror.,c096 11.70 30.00;c137 0.00 30.00;c083 8.10 30.00;c088 8.50 30.00,29.12\r\nG1JBI,H8N1,Pantry,4,7,Yes,A person is washing shelves in a pantry.  The person uses a towel to dust off the shelves.  The person rearranges some dishes on the shelves.  The person closes the pantry doors.,cabinet;dishes;door;shelf,A person opens a cabinet and tidies up the shelves. They close the cabinet and leave.;person opened the cabinet door and arranged the dishes properly from one shelf to another,c006 29.10 35.60;c008 0.00 5.40;c112 29.10 35.80;c113 0.00 5.40;c114 1.40 32.70;c081 0.90 36.90;c082 1.80 32.70;c141 0.50 8.50;c081 8.50 14.80,38.08\r\nNL1WG,D0RU,Kitchen,1,7,No,A person is standing by the refrigerator and watching a person as the person is lying on the sofa doing their homework.,bench;chair;laptop;refrigerator;sofa,\"A person is sitting on a bench with a laptop on the legs of the person,they have a brief interaction  with another person then continue to work on the laptop.;A person is standing in front of a refrigerator, then walk away. A person is sitting on a bench working on a laptop.\",c123 2.50 32.00;c047 6.50 32.00;c052 4.70 32.00;c059 0.00 32.00,31.00\r\nEIZFC,YMXV,Recreation room / Man cave,3,4,Yes,A person is working on tying shoes. Another person is laughing while looking at themselves in the mirror.,chair;mirror;shoe,A person is sitting on a chair while taking off their shoes. Another person walks up and is looking at themself in the mirror.,c096 12.60 32.00;c056 3.40 15.90;c149 24.50 32.00;c094 15.20 32.00;c059 0.00 32.00;c055 2.80 18.00,30.75\r\nYIV35,XKTB,Living room,6,6,Yes,A person is closes up a book that they were reading.  The person then sneezes as they go to pick up their sandwich.,book;couch;dish;food;plate;sandwich;sofa,\"A person is sitting on a sofa holding a book and nodding, then starts sneezing, picks up a sandwich and takes a bite.;A person is sitting on a striped couch, opens a book and begins to read it and turn some pages. The person puts the book down sneezes, and picks up a plate with a sandwich on it and takes a bite of the sandwich.\",c065 24.10 30.70;c068 26.10 30.70;c025 15.80 21.80;c027 0.60 7.30;c153 19.60 25.60;c118 22.60 30.90;c123 0.00 31.60;c067 23.50 30.70;c069 20.20 27.50;c026 0.00 21.10;c028 17.00 23.20;c154 27.60 32.00;c120 26.70 31.60;c156 23.60 30.60;c061 22.60 31.30;c032 0.00 21.00,30.75\r\n9I3HW,BYF9,Living room,4,4,Yes,A person is fixing the sandwich and holding a book.,bed;book;dish;food;sandwich;sofa,Person sitting on the sofa eating a sandwich out of a dish while holding a book.;A person is sitting on a bed with a book and a sandwich.  The person tucks the book away and begins putting the sandwich together.,c066 2.60 21.30;c026 0.00 22.00;c123 0.00 22.00;c061 0.00 22.00;c118 0.00 22.00;c067 1.30 22.00,20.62\r\nIM96T,BYF9,Stairs,6,7,Yes,One person is standing working on a broken light. Another person with hair in a towel is holding a cup of coffee.,cup;screw;stairs,Someone is standing at the top of the stairs screwing something into the wall. Another person is standing next to them on the stairs with a cup in their hands.,c107 0.00 23.00,22.46\r\nUN86L,HR43,Kitchen,6,7,Yes,\"A person in the kitchen is undressing by removing their clothes. After they are done, they start standing up and pick up a pillow on the ground, laughing at how silly the situation is.\",clothes;laptop;pillow,\"A person is undressing, they then pick up a pillow while smiling.;A person is standing in the kitchen with a laptop on the counter. After taking off their jacket, the person picks up a pillow and hits it.\",c076 20.80 33.00;c079 20.00 25.10;c155 0.00 23.60;c078 24.70 30.20;c001 17.40 24.30;c000 16.90 22.70;c078 19.00 32.60;c001 10.10 20.00;c000 10.10 20.30,31.79\r\nI4N6K,ZAWX,Home Office / Study (A room in a house used for work),4,4,Yes,\"A person is sitting in a chair, holding a stack of homework. The person throws the homework down on the desk, stands up, and leaves.\",book;chair;desk;homework;paper;table,A person is sitting at a desk and doing homework before standing up and leaving the room.,c145 0.00 21.80;c059 0.00 29.50;c012 14.90 26.10;c154 24.30 30.10;c028 20.30 25.60;c025 14.60 19.80;c116 20.10 25.80;c115 19.80 26.30;c032 0.00 19.60;c030 17.80 24.30;c026 19.10 25.50,33.46\r\n0M1X0,L4ZP,Hallway,7,7,Yes,A person is undressing by a chair while watching the doorway.,chair;clothes;clothing;doorway,\"A person starts to undress and put their clothes on a chair.;The person Removes two jackets, and places them on a chair one by one while standing in a doorway.\",c155 0.00 10.10;c001 6.10 14.60;c155 0.00 21.90;c001 17.90 27.80,29.21\r\nXTC0F,4OHY,Pantry,6,5,Yes,\"the person opens the pantry door and begins tidying the new groceries, throwing old food away\",bag;door;towel,A person walks into a room holding a towel then opens a bag and takes things out.;Person opens door and enters room.  Opens up plastic bag and removes a couple rags from it.,c008 0.00 9.90;c021 7.40 16.00;c033 12.50 26.00;c035 7.80 23.20;c037 4.30 31.00,29.75\r\nJNQOB,4I61,Garage,2,6,Yes,\"A person is working on their laptop, then the person starts laughing and grabs a vacuum.\",laptop;vacuum,\"A person enters a garage holding a laptop computer. The person then smiles while looking at the laptop, closes the lid on the laptop, and then grabs a vacuum and walks away.\",c138 14.40 19.20;c047 0.00 20.70;c052 0.00 16.90,25.46\r\nM2XIS,UO0Z,Living room,7,6,Yes,\"A person puts their laptop down on a desk. The person sits in the chair, and begins working.\",chair;doorway;laptop;sofa/couch;table,\"A person carrying a laptop walks into a room and sets his laptop down on a table and begins working.;A person carrying a laptop to a room , the person proceeds to put the lap top the table and sit down and opens it .\",c048 3.60 9.40;c051 6.30 22.00;c059 1.10 6.40;c049 0.00 6.40;c151 1.80 8.20;c009 0.00 5.90;c047 0.00 6.30;c097 0.00 3.70;c123 2.70 7.40;c052 4.80 12.30;c014 9.40 15.10,21.12\r\nMDOSW,KQI6,Home Office / Study (A room in a house used for work),7,6,Yes,\"One person is sitting and eating on a small sofa, and another with hair in a towel is sneezing and holding medicine.\",bag;food;hair;sofa;towel,Person a is sitting smelling some food. Person b walks into the room and begins drying their head off with a towel.;A person is eating out of a bag. Another person is drying their hair with a towel.,c038 8.00 30.00;c123 0.00 30.00;c061 0.00 29.40;c063 0.00 10.00;c156 0.00 12.00;c033 8.20 30.00;c020 0.00 13.50,29.42\r\nV2WXW,1OHU,Pantry,6,7,Yes,\"A person pulls a chair through the pantry doorway, stands on it and grasps for items on a shelf, then sneezes.\",box;chair;counter;doorway;food;shelf;something,This person is stepping up on a chair and grabs something off a shelf.;A person put a chair up to a pantry cupboard and climbed on it to reach something on the top shelf.,c060 11.10 24.90;c063 15.90 21.90;c152 0.00 5.60;c043 15.90 21.90,25.38\r\nM0ENV,6RE8,Bedroom,6,6,Yes,A person is playing games on the laptop and then becomes irritated and decides to throw coffee beans all over the floor.,chair;desk;floor;laptop;table,A person is sitting at a desk working on a laptop and throws an item onto the floor.;A person is sitting at a desk on a computer.,c052 0.00 24.20;c126 22.10 27.40;c059 0.00 32.00;c011 0.00 32.00,31.29\r\n9A58F,3H6W,Living room,4,7,Yes,A person is throwing down their shoes then opening a laptop.,floor;laptop;shoe,\"A person walks into the room, throws shoes on the floor, picks up a laptop and works on it while standing.\",c047 8.00 12.80;c052 10.90 21.00;c058 2.90 8.10;c046 15.90 21.20;c126 2.70 8.50;c048 6.40 12.90;c050 5.70 10.90;c049 16.50 21.30;c051 8.70 19.60,22.38\r\nW9XY8,H8N1,Kitchen,4,7,Yes,A person is opening a cupboard and grabs food and coffee off of a shelf. They are opening the wrapper of the food and throwing it away.,closet/cabinet;coffee;door;food;shelf,A person opens a cabinet and takes out some coffee. Then they leave.,c063 2.10 16.30;c113 1.10 8.40;c008 1.10 8.40,34.29\r\nH0R3P,9PLL,Stairs,6,6,Yes,\"A person is walking up some stairs holding a bag of groceries, when they reach the top they put the bag down.\",bag;basket of groceries;stairs,A person walks up the stairs holding a basket of groceries. They set the basket on the stairs and walk back down the stairs.,c020 0.00 9.10;c024 7.30 14.70;c022 6.60 12.80,33.79\r\nL37YS,RPBD,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is holding a dish as they try to turn the doorknob for the closet. Once it's open, the person pulls out a vacuum.\",closet;door;paper/notebook;vacuum,A person is opening the door to a closet. A person then gets the vacuum.,c137 14.50 28.90;c113 0.00 11.90;c141 0.00 12.10;c008 0.00 11.60;c115 0.00 32.00;c138 11.50 32.00,31.33\r\nXYWWG,D0RU,Bedroom,6,7,Yes,\"One person lying under a blanket with head on a pillow sneezes, while another person sits working at a desk.\",bed;blanket;desk;head;laptop;pillow;table,\"A person is laying in bed, and another in on their computer.\",c011 1.70 33.00;c014 1.10 33.00;c078 0.00 33.00;c072 0.00 33.00;c134 0.00 33.00;c052 1.10 11.70;c070 7.70 20.40,32.17\r\nGF6UG,BYF9,Stairs,4,1,No,A person with a towel on their head is taking a picture while someone else is watching them.,phone;picture;stairs;towel,\"Young people standing on the stairs, and one of them is playing with a phone.;A person holding a phone is standing above another person on a staircase in a home.\",c015 0.00 20.00;c087 0.00 20.00,18.62\r\nEI5M3,YA10,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person opens the wardrobe in a closet, puts in a clean towel, then grabs a pair of shoes and smiles.\",closet;clothes;door;shelf;shoe;towel;wardrobe,\"Person open a closet door, get shoes off the shelf after putting a towel on the shelf.;A person opens a closet door, enters a walk in closet and moves a towel from one shelf to another. The person then picks up a pair of shoes, looks at them, and walks out of the closet.\",c034 7.10 14.90;c053 12.60 24.00;c152 14.50 24.00;c008 0.00 8.20;c035 1.60 10.20;c056 12.70 19.50;c113 1.10 7.00;c002 11.40 20.40;c097 3.10 9.30;c081 7.90 14.90;c141 0.30 5.50,22.67\r\nNIPVQ,OUKK,Bedroom,3,7,Yes,A person is walking toward the cabinet. They are taking a pillow from the cabinet and then throwing it onto their bed.,closet;door;drawer;dresser;pillow,\"A person is opening a drawer, takes out a pillow and throws it.;A person opens a door and walks into the room. The person opens the drawer of a dresser, takes out a pillow and throws it.\",c076 4.30 10.30;c079 3.20 8.10;c080 6.40 10.60;c113 2.20 7.90,9.50\r\nI5ZWF,4OHY,Living room,6,5,Yes,\"A person is walking into a garage holding a pillow and a blanket, they then start laughing as they put them down on a chair.\",blanket;chair;floor;pillow;towel,A person throws and towel and a pillow on to a chair and the smells the towel.,c076 17.40 23.50;c080 17.40 24.20;c071 16.20 21.20;c074 15.60 21.20;c149 0.90 8.00;c077 19.00 23.90;c034 16.50 21.40;c035 27.00 31.00;c126 19.20 26.50;c036 15.60 21.70;c033 0.00 21.20,30.00\r\n857S9,0KZ7,Dining room,7,7,Yes,\"A person is laughing in a Dining room.  The person stops, and consumes a sandwich and some coffee and begins smiling.\",chair;coffee;cup;dish;flowers;food;glass;sandwich;table,\"A person is sitting at a table with flowers. After picking up the glass and drinking from it, the person finishes a bit of food that was on the table next to the glass.;The person is sitting at a dining room table smiling and drinking, and eating a sandwich.\",c065 7.90 36.00;c106 1.50 10.70;c152 0.00 7.90;c059 0.00 36.00;c156 8.00 36.00;c011 0.00 36.00;c107 1.60 12.70;c118 1.60 12.70;c109 1.60 13.10;c061 5.80 36.00,34.50\r\nCNX6I,BYF9,Dining room,6,7,Yes,A person is sitting in the dining room with a laptop. They stand and grasp the vacuum.,chair;desk;laptop;table;vacuum,\"A person is sitting at a table, working with a laptop. A person gets up, walks over to a vacuum cleaner, and picks it up.;A person sitting at a table using a laptop, gets up and grabs the vacuum.\",c137 11.20 19.00;c052 0.00 10.10;c154 4.30 11.90;c059 0.00 10.70;c011 0.00 11.00;c014 0.00 10.00,18.42\r\nANZ0S,JAEW,Kitchen,5,7,Yes,\"A person is walking to the refrigerator. The person opens it and takes a bottle of water out of it. Drinking, the person walks to a chair and sits down.\",chair;glass;refrigerator;water,A person walks into the kitchen and opens the fridge. They grab a bottle of water and take a seat on a chair.,c142 14.20 20.40;c143 0.00 6.90;c106 10.80 17.90;c059 18.90 30.00,28.62\r\nCHQ41,T7C3,Bathroom,5,7,Yes,\"A person in the bathroom is sitting down on the ground, holding a camera and some clothes. They begin drinking from a glass of water.\",camera;clothes;cup;floor;glass;phone;water,\"A person is sitting on the floor in the bathroom holding some laundry, using a camera, and taking a sip from a drink\",c106 12.10 23.50;c015 0.00 29.00;c000 0.90 29.00;c125 0.00 29.00;c109 19.50 29.00;c016 0.00 29.00,27.67\r\n8MX1T,CBGB,Bedroom,6,6,Yes,A person is fixing a broken shoe.  Then a person is drinking water near a door.,bed;cup;shoe,\"A min sits down and examines shoes before putting them on, then stands, and drinks from cup taken from a table. the person then walks away.\",c053 0.40 22.20;c055 15.80 23.50;c151 1.40 7.30;c154 19.20 25.10;c135 2.70 24.00;c107 20.30 31.70;c106 22.10 29.10;c109 26.10 31.70,32.21\r\nJHU46,DXDI,Garage,6,6,Yes,A person is seen holding some groceries. They begin taking food out of the grocery bag and then leave.,bag;food;groceries,\"A person walks through a garage with a shopping bag full of groceries, before removing an item and putting the bag down.\",c021 1.80 12.90;c063 4.60 14.70;c020 0.00 19.60;c022 10.00 15.90,25.25\r\n20YRU,EIO2,Hallway,4,6,Yes,\"A person is carrying a box with shoes in it. Another person is tidying up a messy hallway, and closing the doors in the hallway.\",bear;box;floor;paper;toys,\"A person is cleaning up paper from the floor. Another person is standing watching.;Persons standing in hallway, one person bends down and starts picking up paper and toys off the floor. Then tucks them under arm and stared at the floor. Other person watched while holding a box.\",c040 0.00 9.90;c127 0.10 31.00,30.50\r\nDOGYU,D0RU,Bedroom,4,6,Yes,A person is playing with a box on the floor. Another person is sitting in a chair and laughing.,box;chair;floor;girl,\"a girl taking some items out of a box while sitting on the floor.;There is a person sitting in a chair and one on the floor.  The person on the floor, opens a box, takes out a shoe box, puts it back in and recloses the box. The person in the chair is smiling and laughing.\",c125 0.00 32.00;c059 3.80 16.00;c039 19.30 32.00;c041 0.00 9.60;c044 0.60 8.70;c149 6.20 12.70;c152 5.90 12.70;c040 0.00 32.00,31.04\r\nNQKZB,HR43,Bedroom,4,6,Yes,\"A smiling person is tidying up their bedroom, they fluff their pillow, and place their clothes in a hamper.\",bed;blanket;clothes;hamper;pillow,\"A person is tidying up some clothes on their bed, then then fluff the pillows;A person is in their bedroom tidying up the bed, fluffing pillows, and putting clothes in the hamper\",c004 0.00 12.50;c076 13.20 31.90;c077 26.90 35.60;c079 11.80 18.10;c001 37.40 48.00;c075 0.00 16.50,46.62\r\nH4M0N,KFGP,Bathroom,6,7,Yes,One person grasping a towel sits on the edge of the sink and smiles into the phone.,phone;sink;towel,person sitting on a sink looking at phone,c033 0.00 25.00;c016 0.00 25.00;c015 0.00 25.00;c152 0.20 19.70,24.42\r\nJPEM7,T7C3,Dining room,6,7,Yes,\"A person runs into the dining room, eating some food. The person sits down in a chair.\",chair;floor;food;plate;sandwich;table,A person walks into a dining room and has a seat puts a sandwich down on a plate and begins to eat.;person walks in from another room and sits down to have a bite to eat.,c059 5.50 25.00;c151 5.50 14.70;c065 0.00 25.00;c068 6.70 13.10;c011 5.70 15.00;c011 11.10 25.00;c156 0.00 3.00;c067 3.10 11.50;c009 6.90 12.70,23.71\r\n1Q4SL,FNK4,Bathroom,7,7,Yes,\"A laughing person is drinking a soda in the bathroom. They grab their shoes, open the door, and leave.\",cup;door;glass;hair;light;mirror;shoe;soda can;water,\"A person laughs drinks and drinks Coke while seated on a sink, then stands and looks at themselves in a mirror before picking up shoes from the floor,  opening a door, turning off a light, and walking out of the room.;A person is sitting in a bathroom drinking some water from a glass and laughing, they then look at themselves in a mirror, pick up some shoes, and leave.\",c106 0.00 5.70;c149 0.00 3.10;c096 2.00 11.30;c056 19.00 27.10;c107 0.00 5.60;c105 27.40 32.00;c097 20.10 32.00;c144 9.00 15.00;c141 19.70 26.40;c053 15.20 32.00;c008 20.10 27.20,30.88\r\nX1EZQ,ZAWX,Bedroom,7,7,Yes,A person is lying down and eating a snack while doing their homework and grabs a book from their bag.,backpack;bag;book;floor;food;french fry;homework;paper;pen;plate,A person is laying on the floor working on homework while eating. The person pulls a book out of a bag.;A person is laying in bed writing in notebook. The person reaches over and grabs a french fry off a plate and eats it. The person then closes the notebook and reaches for a backpack and takes out a book.,c145 0.00 5.70;c021 22.10 29.20;c026 29.00 33.00;c156 2.00 11.30;c063 2.00 7.30;c124 0.00 16.10;c020 19.70 33.00,31.92\r\nHVZUQ,HJZQ,Bedroom,6,6,Yes,A person in their pantry is standing up while dressing themselves by putting on a jacket. They pick up a pillow and start watching themselves through a mirror.,chair;clothes;jacket;mirror;pillow;shelf,\"A person is taking a jacket from a shelf and dressing themself with it before grabbing a pillow and holding it.;A person is dressing with some clothing they took off of a shelf, they then grab a pillow and stare at themselves in a mirror.\",c076 18.30 25.20;c148 1.70 20.90;c002 0.00 6.60;c079 17.70 24.30,30.42\r\nQ9TIN,YA10,Basement (A room below the ground floor),4,6,Yes,A person is fixing a crooked mirror so it is straight.  Then a person is closing a door by holding the doorknob.,door;mirror,Person is fixing a mirror on a wall. Person looks at themselves in the mirror. Person shuts a door.,c141 18.80 24.80;c096 19.70 31.00;c006 18.90 27.00;c154 0.00 31.00,30.33\r\n53FPM,Z68L,Home Office / Study (A room in a house used for work),5,1,No,A person is undressing in their bedroom in front of a wardrobe. The person grabs a bag and leaves.,chair;cup/glass/bottle;desk;laptop;medicine;person;phone;table;water,\"A person sits down to a desk and looks at a laptop. The person then takes some medicine, and gets up.;This person appears to be in their home office area, sitting at desk on their laptop, taking pill out out bottle, poring water into glass, drinking and then getting up out of chair.\",c154 34.60 40.00;c059 0.00 5.30;c052 2.30 11.40;c129 28.00 38.40;c051 1.10 11.90;c106 30.90 37.70;c011 0.00 5.50;c009 26.20 38.00;c109 26.60 32.80;c014 1.50 40.00;c151 0.00 6.10;c108 24.10 30.40;c128 7.90 24.20;c110 21.20 25.60;c107 21.40 32.20,38.92\r\nIGH70,0KZ7,Stairs,4,7,Yes,\"A person is throwing their homework on the ground, then the person starts playing with a pillow.\",paper/notebook;pillow;stairs,A person sits in the stairs and shakes a pillow.,c076 2.80 27.00;c115 0.00 4.30,25.88\r\nV47ZW,4OHY,Living room,7,6,Yes,A person is holding a vacuum in their recreation room while undressing. The person begins tidying up while watching television.,clothes;floor;shirt;table;television;tv;vacuum,Person is vacuuming the floor while watching tv. The person also takes off their shirt and places it on the table..;person vacuums the floor then takes off a shirt and watches tv,c155 5.30 14.30;c137 4.50 30.00;c132 0.00 30.00;c001 10.30 14.70;c003 10.30 14.70;c127 13.10 30.00,29.50\r\nTTJNS,5LWB,Bathroom,7,7,Yes,A person is undressing in front of a light.  A person is then putting their clothes in a box that they had taken off.,clothes;hamper,Someone is in the bathroom undressing. They place their clothes inside a hamper.,c155 0.00 14.60;c001 3.30 14.80;c002 15.30 20.00,19.12\r\nEVGRN,9Y7F,Bedroom,6,6,Yes,A person is watching out the window and another person is playing on the bed.,bed;curtain;doorway;pen;window,Two people are sitting in beds that are across the room from each other. One person tugs on a window curtain while looking out of the window. The other person sits sideways on a bed and flips an ink pen up in the air.,c135 0.00 31.00;c092 6.70 24.90;c097 7.40 17.30,30.33\r\nR13US,4OHY,Kitchen,5,7,Yes,A person smiles in the mirror while they grasp a sandwich.,hair;mirror;phone/camera;sandwich,\"A person is smiling while holding a sandwich, they also look into a mirror at themself.\",c094 6.00 13.00;c067 0.00 30.00;c152 6.00 13.00;c154 0.00 30.00;c016 0.00 30.00;c015 0.00 30.00;c096 7.00 19.00;c144 9.90 16.00,29.04\r\nXUV0Y,3H6W,Living room,4,6,Yes,A person is grasping a box of clothes and then eating in a living room.,box;clothes;food;sandwich,\"A person walks into a room and picks up a box full of clothes. Then the person picks up a sandwich, takes a bite, sets the sandwich back down and walks away.;A person walks into the living room and grabs a box with clothes before picking up a sandwich and eating it.\",c040 3.00 22.40;c000 3.00 22.40;c067 9.50 20.50;c069 8.60 13.80;c156 14.20 20.40;c061 9.80 21.00;c063 8.60 14.70;c043 2.90 9.30;c062 15.90 20.90;c039 6.70 11.90;c002 4.70 9.90,24.29\r\n2HEUO,D0RU,Living room,5,4,Yes,A person is taking homework to the side table.  Then a person is holding dishes that were left there.,dish;food;homework;laptop;paper;table,\"A person is using a laptop and writing things down.  They are sitting down, wipe their nose and continue to write on a pad of paper.  They then pickup a pan from a table.\",c120 27.70 38.00;c011 0.00 38.00;c145 0.00 31.70;c010 0.00 38.00;c063 27.20 38.00;c014 0.00 38.00;c119 27.70 38.00;c061 27.70 38.00;c051 0.00 38.00,37.08\r\nYOOHJ,X5XO,Stairs,6,6,Yes,The person is holding a pillow and snuggling under a blanket on the stairs.,blanket;pillow,A man is wrapped up in a blanket and holding a pillow as he sits on the stairs.,c072 0.00 32.00;c076 0.00 32.00,31.29\r\nZ9XLJ,DXDI,Hallway,4,6,Yes,\"A person is walking in a hallway undressing their clothes, they then toss their shirt on a shelf in their closet.\",a coat;closet;clothes;door;jacket,\"The person walked into the hallway, stood by a door while taking his coat off. The person then threw his caot into a closet and walked back down the hallway.;A person walks down a hall and takes off their jacket .The person opens a closet door and throws the jacket in and closes the door.The person turns and walks back down the hall.\",c155 7.50 18.40;c008 11.90 18.80;c003 13.50 20.20;c006 15.70 21.50;c113 13.30 18.60;c097 0.00 4.60;c141 13.30 21.70;c112 15.60 21.20,24.58\r\nXSGYC,T7C3,Dining room,6,7,Yes,A person is holding a sandwich and then leaving a towel on the floor in a hallway.,blanket;clothes;dish;floor;food;plate;sandwich;shirtt;towel,\"A person is standing near a stairway, holding a sandwich on a plate in one hand and a towel in the other, which is dropped on the floor after they wipe their forehead with it.;A person is standing holding a plate of food and a shirt. person throws the shirt on the ground and walks  away.\",c065 0.00 19.70;c036 19.10 24.40;c003 19.10 24.40;c126 18.40 24.60;c118 0.00 27.00;c068 14.10 21.10;c061 0.00 27.00;c067 0.00 27.00;c070 0.00 22.00;c033 0.00 24.20;c069 20.20 27.00,26.04\r\nJ5TTU,9Y7F,Bathroom,6,6,Yes,A person is standing by some stairs holding a camera in their hand while washing their face with a towel.,blanket;box;camera;hand;medicine;phone;sink;table;towel,A person is holding a camera. The person sits the camera down and walks to a sink. The person washes their hands and wipes off their face with the towel as they dry their hands.;A person points a camera around then places it on the table.  The person then washes themselves in the sink and dries them self.,c015 0.00 19.30;c139 19.10 30.40;c033 26.60 34.00;c038 27.40 34.00;c009 13.50 21.30;c016 0.00 17.50,32.96\r\n4JQBM,9Y7F,Stairs,6,6,Yes,A person is standing on the stairs holding a blanket and a small box of medicine.,blanket;box;clothes;plastic container;steps,A person standing on a steps holding a blanket and a plastic container.The person places the blanket on to other arm and moves the plastic container to other hand.;A person standing on a flight of stairs is holding a blanket and a box.,c040 3.50 16.50;c070 0.00 14.00;c000 0.00 32.00,30.75\r\nHAR5P,9Y7F,Stairs,6,6,Yes,\"A person awakens on the stairs, with a book on their chest. The person closes the book, looks into a nearby mirror, and then runs to the top of the steps.\",book;hair;mirror,\"A person is asleep on the stairs with an open book on their chest, then then awaken and pick up a irror and fix thier hair before running up the stairs.\",c026 7.30 14.50;c096 13.80 27.90;c146 0.00 10.10;c150 25.20 33.00;c154 22.60 29.30;c144 16.30 23.50;c028 11.30 16.10;c093 14.10 29.30;c027 7.80 13.70;c032 8.30 13.50,31.54\r\n81R3C,6RE8,Bedroom,6,6,Yes,A person throws their lap down onto the table. The person looks out the window and leaves.,computer;door;laptop;table;window,\"The person picks up computer and puts it back down on the table. The person looks out the window, closes it, and walks out the door.;A person is holding a computer and then sets it down. Then they look out the window, and leave the room.\",c009 0.00 7.30;c089 14.70 23.60;c092 8.50 17.50;c006 24.30 31.00;c008 22.20 28.00;c049 0.10 7.80;c097 26.00 31.00;c047 0.00 6.10;c141 23.10 30.90,30.38\r\n5JVMD,HR43,Bedroom,5,6,Yes,\"A person puts clothes next to a vacuum, then pours a glass of water.\",bed;clothes;cup;glass;laptop;water,A person is holding a bottle of water while sitting in bed with a laptop.;Person is organizing items on a bed into a pile while pouring a drink into a cup the consuming it.,c106 18.00 24.00;c001 0.00 11.00;c107 0.00 29.00;c108 13.20 22.60;c003 0.00 10.30;c135 0.00 29.00,28.12\r\nZJNXZ,UTMU,Living room,7,7,Yes,\"A person is tidying up the living room, running the vacuum and working on cleaning the pillows on the sofa.\",blanket;vacuum,A person is folding a blanket while a dog sits on the sofa then the person vaccums the pillows while the dog plays with a toy,c137 10.90 48.00;c154 10.00 17.80;c075 0.00 11.90,46.96\r\nMVO1W,H8N1,Bathroom,6,6,Yes,\"Person is standing by mirror next to sink, then starts putting bag in sink.\",hair;mirror,Person is in the restroom looking in the mirror fixing their hair.,c096 0.00 14.80;c144 0.00 5.50,13.71\r\nO1J7D,2RTW,Kitchen,6,6,Yes,\"The person walks into the pantry, groceries in hand. They look mad as they shove things on the shelf. They grab a container of coffee and throw it out of the pantry. Then they go crazy and begin to throw everything off the shelves and on to the floor.\",bag;box;can;floor;food;groceries;jar;shelf,\"A person enters the kitchen and tidies up their pantry, then throws several grocery items on the floor.;The person walks into the kitchen holding a bag and takes objects one by one off of a shelf and drops them onto the floor.\",c126 7.00 31.40;c020 0.00 33.00;c064 6.20 12.00;c064 9.40 14.30;c064 13.00 18.00;c082 2.10 10.10,31.58\r\nH5DQ6,YMXV,Living room,6,1,No,One person washing the window smiles when another person starts sneezing after drinking some medicine.,cup/glass/bottle;medicine;window,The person appears to be cleaning or painting a window. They generously apply cleaner or other substance to the window. The scene changes to another person drinking a bottle of water. After they're finished drinking hey set the bottle down on a table.,c091 2.60 16.10;c090 0.00 15.90;c089 0.00 15.90;c153 12.40 19.50;c106 12.20 19.00;c109 20.40 25.60;c107 0.00 16.10,30.83\r\nBOKLM,HJZQ,Stairs,6,6,Yes,A person by the stairs is fixing their shoes. They start sneezing as they are finished fixing their shoes. They walk towards the doorway and put their hand on the doorknob.,door;floor;shoe,\"A standing person  then sits  to  put on shoes. The person stands again, sneezes, and walks to a door and begins to open it by grasping the handle.;A person standing on the stairs sits down and puts their shoes on. They walk over and open a door.\",c154 21.60 27.00;c054 7.20 16.30;c153 17.90 25.00;c151 6.70 12.40;c008 26.30 32.00;c055 0.00 21.60;c125 8.20 26.40,30.96\r\nM0KKW,DXDI,Kitchen,3,7,Yes,A person is holding a broom as this person is walking over to the refrigerator to grab a beer.,bottle;broom;refrigerator,\"A person walks into a kitchen with a broom and sets it down next to the refrigerator. The person opens the refrigerator, grabs a bottle out, closes the refrigerator, and walks away. The person leaves the bottle on a nearby counter.;A person is holding a broom. A person them opens a fridge, takes out an item and closes the fridge.\",c098 0.00 8.00;c099 3.20 7.90;c143 4.60 12.20;c142 10.10 15.50,16.25\r\nUZTIW,P6LJ,Living room,5,7,Yes,\"A person walks into the recreation room, carrying some dirty dishes. The person picks up a few more dishes from on top of a book, and leaves.\",book;cup/glass/bottle;dish;mug,\"A person grabs a dish, and the walks away.;A person walks over to a coffee table holding a mug. They pick up some dishes and leave the room.\",c120 12.10 17.90;c110 4.00 18.50,29.42\r\n4D7GX,ID9V,Hallway,3,1,No,\"A person is walking in the door, and grasping shoes\",clothes;door;shoe,Person coming through the door with shoes in hands shaking and waving them over the head.,c053 6.80 27.00;c008 4.20 10.40;c000 6.10 27.00;c097 4.80 13.70;c097 24.30 27.00,26.21\r\n334W9,BYF9,Bedroom,7,7,Yes,A person in the bedroom is fixing a vacuum to take a break and is drinking from a glass.,cup;glass;vacuum,A person is kneeling down working on a vacuum cleaner. Then they stand up and pick up a glass from a desk and drink from it.,c106 13.60 22.00;c136 0.00 12.70;c154 9.00 22.00,20.71\r\nOGA0C,I4RP,Kitchen,6,6,Yes,\"Person Y, and Person X sit on chairs in the dining room eating food, drinking wine, and laughing.\",bowl;chair;coffee;food;glass;table,There's two people sitting at the living room table. Both are eating out of their own separate bowls while talking to each other.;Two people are sitting at a table eating food and laughing while looking at each other.,c059 0.00 11.00;c156 0.00 11.00;c149 0.00 4.80;c063 0.00 11.00;c062 0.00 11.00;c061 0.00 11.00;c152 0.00 11.00;c011 0.00 11.00,9.54\r\nKUBPN,BCLJ,Hallway,6,7,Yes,Person is sitting on floor in hallway drinking coffee and eating sandwich. Another person is snuggling with clothes.,coffee;cup;floor;food;pillow;sandwich,A person that is sitting in a hallway is eating a sandwich and drinking coffee. Another person is lying on the floor in the hallway.,c124 0.00 32.00;c125 0.00 32.00;c106 0.00 32.00;c065 2.30 9.40;c156 2.30 9.40;c061 0.00 32.00;c078 0.00 32.00;c107 0.00 32.00,30.62\r\nUOBM0,ID9V,Garage,5,6,Yes,A person is smiling as the set some shoes on the table. They then open a container of medicine.,medicine;shoe;table,\"A person is standing in a garage looking at a pair of shoes, they then pick up a bottle of medicine from a table and take some.\",c128 7.00 30.00;c128 15.00 22.70;c129 17.60 30.00;c053 0.00 8.60;c056 0.00 6.10;c054 0.00 2.70,29.46\r\n024PD,G6WD,Dining room,7,7,Yes,\"In the dining room, a person is playing with book while watching a video on their phone. They have a towel wrapped on their head because it looks like they just took a shower.\",book;phone;table,A person flips through a magazine while talking on the phone and taking pictures.,c015 0.00 60.00;c032 0.00 58.70;c025 52.30 59.00;c028 2.10 10.60;c026 0.00 9.10;c009 1.50 10.60,59.04\r\nYBW3D,0KZ7,Stairs,7,7,Yes,Person A is walking up the stairs with a bag of groceries.  Person B is initially lying and asleep and awakens when Person A walks pass.  Person B grabs a broom and sweeps part of the stairs.,bag;broom;floor;groceries,\"A person is lying at the foot of the stairs. Another person runs past and up the stairs, holding onto a bag of groceries. The first person gets up from the floor and starts sweeping with a broom.;a person is lying at the bottom of a staircase while a child runs past them. They awaken to start sweeping the floor\",c102 20.50 26.80;c146 8.80 23.00;c124 5.10 19.60;c150 23.40 31.40;c020 1.10 9.40;c154 11.90 20.50;c127 15.90 34.00,32.71\r\nX226B,LTAC,Kitchen,6,7,Yes,A person is cooking in their kitchen. They grab a bottle of a shelf and sit in a chair and put a pillow behind their back.,bottle;chair;food;pillow;spatula;stove,\"a person is cooking something on the stove, they stop and then pick up a bottle,  and then sits down in a chair adjusting the pillows.;A person is cooking on the stove. Then they grab a bottle and sit down.\",c077 21.00 27.20;c059 20.70 29.60;c151 16.60 22.70;c147 0.00 9.50,30.67\r\nBTR60,G6WD,Closet / Walk-in closet / Spear closet,6,7,Yes,A person walks around their bed to get to the walk-in closet.  They have decided that it's time to put their newly washed wardrobe away in its proper place.,bed;closet;clothes;light,\"A person walking in the bedroom, goes through some clothes and puts them away int he closet.;A person walks to a closet and turns the light on.  The person picks up some clothes, folds them and puts them in the closet, before walking away.\",c004 2.90 65.00;c001 2.90 15.90;c001 11.90 32.60;c001 35.30 54.90;c114 7.70 15.60;c114 25.20 38.20;c114 42.90 55.60,69.58\r\n4FW7I,D0RU,Recreation room / Man cave,5,7,Yes,A person is closing the top of a sandwich.  Then a person is taking it over to the light and checking if it looks like a good sandwich or not.,dish;light;phone;sandwich,A person is playing on the phone while pressing buttons on their light switch. After a moment they walk away;A person turns on the lights while eating.,c065 0.00 32.00;c104 11.70 32.80;c118 0.00 30.20,31.88\r\n8WQOP,6RE8,Basement (A room below the ground floor),5,6,Yes,\"A sneezing person opens a basement door holding a box, and a mirror.\",bottle;box;door;mirror;table,\"A person is standing holding a mirror in one hand and a bottle in the other. They are looking into the mirror and they sneeze. They stop looking into the mirror and open a door and exit the room, closing it behind them.;This person is looking in the mirror, then sneezes, puts down the mirror and walks out of the room.\",c093 0.10 5.80;c096 9.30 21.20;c006 22.10 28.40;c008 15.50 26.10;c153 20.60 31.00;c097 19.80 27.50;c141 16.00 21.70;c040 0.00 25.90,30.46\r\nB6S6T,HR43,Laundry room,5,7,Yes,A person opens the dryer and throws a pillow inside. The person turns the dryer on then walks to the window.,bag;clothes;dryer;pillow;window,\"A person put a bag in the dryer and then looked out the window.  After doing so, the person proceeded to walk away.;A person puts a pillow in a clothes dryer. The person looks out the window.\",c076 0.00 6.60;c077 1.30 7.50;c092 8.10 12.80;c005 0.00 12.80;c001 0.00 6.70,27.58\r\nGNA1H,Q4IF,Home Office / Study (A room in a house used for work),7,7,Yes,Person is sitting doing homework. Another person is walking around drinking coffee and sneezing.,book;chair;coffee;cup;homework;paper,A person paces while drinking coffee then sneezes. Another person is doing homework while seated at a table.,c106 0.00 24.40;c107 0.00 31.00;c145 0.00 31.00;c153 21.50 27.90;c059 0.00 31.00;c026 0.00 31.00;c032 0.00 31.00,29.88\r\n808H5,YMXV,Bedroom,5,5,Yes,A person is sneezing as they take their allergy medicine with a drink of water in the doorway.,closet/cabinet;cup;desk;door;glass;laptop;medicine;mirror;water;wires,\"A person standing in front of a closet is making motions with his arms and hand like he is looking for something on his body and then drinking it.  Then he finds a bottle of water and drinks from it after opening the closet and standing halfway in it.;Person drinking some water while taking some medicine that was in the pocket, then opening the door\",c106 14.50 21.10;c008 12.80 19.00;c129 6.50 13.60;c110 10.50 15.90;c107 9.90 30.70;c113 12.00 18.70,30.75\r\nRYXCI,PO5L,Bedroom,6,6,Yes,A person awakens in a home office is vacuuming under their desk before leaving.,chair;desk;table;vacuum,A person sits down at a desk and rest their head on it. The person then vacuums.,c011 2.60 14.40;c137 12.40 26.00;c146 8.10 14.40;c154 10.40 15.50;c151 1.70 7.50;c059 3.10 13.60,27.58\r\nPQX96,C7O9,Living room,7,7,Yes,\"One person closes a window, then lies on the sofa playing with a flashlight and smiling.\",blinds;couch;light;sofa;window,The person closes the blinds and then sits on the couch. The person turns on and plays with a flashlight.;A person is looking out the window before sitting in a chair with a flashlight.,c123 13.20 19.20;c092 0.00 15.10;c151 12.40 17.80;c104 20.50 31.00;c089 1.20 14.80,30.38\r\n4L664,YA10,Basement (A room below the ground floor),5,6,Yes,A person is walking around while grasping a broom then they stop to fluff a pillow.,broom;floor;pillow,A person is walking with a broom and fluffing a pillow,c076 12.60 27.20;c079 12.20 18.10;c098 0.00 31.00;c077 13.00 26.70;c126 22.60 27.20,30.33\r\n4CHXK,1OHU,Recreation room / Man cave,6,6,Yes,\"The person walked into the home office, shut the door and stood by the window.  The person grabbed a glass from the desk and threw it on the floor.\",blinds;cup;door;floor;glass;towel;tv;window,\"A person carrying a glass enters the room through the doorway and closes the door. They walk to the window and look outside, then throw the glass on the floor.;A jumpy person hops into a room and looks out the blinds.    After checking out whats on the TV, the person slams something on the floor.\",c097 1.00 7.30;c092 12.60 20.00;c126 20.80 25.00;c109 21.20 25.00;c006 5.80 12.10,24.21\r\nUCPP8,P6LJ,Pantry,6,6,Yes,\"Person puts groceries away in the pantry Person almost drops a bottle of oil but is able to grasp it before it falls.  Person takes off shoes and rubs feet briefly. Before leaving pantry, person closes the door.\",closet/cabinet;door;groceries;pantry;shelf;shoe,\"A person is opening a pantry and putting objects inside, they then take their shoes off and walk away.;A person is putting away groceries in the pantry. A person then begins sneezing. A person then takes off their shoes and walks out the room.\",c141 0.50 9.50;c057 34.60 48.90;c054 34.90 48.60;c056 34.10 50.60;c008 1.60 10.60;c057 35.70 42.80;c130 22.10 38.30;c113 3.00 9.20;c081 17.40 24.80,55.46\r\nAJZYE,P6LJ,Kitchen,6,6,Yes,\"A person grasps the doorknob to the pantry. They open the door and grab out some honey, they pour the honey into some tea, and look out the window as they are drinking it.\",bottle;closet;cup;door;mug;pantry;spoon,\"A person is getting a bottle from in the pantry. A person pours a cup of coffee and drinks it.;A person opens a closet door, takes out a bottle half filled with liquid then picks up a mug and pours some of the liquid into it, stirs it with a spoon and starts drinking from the mug.\",c106 42.10 49.10;c008 2.30 10.30;c107 29.50 43.40;c141 0.00 6.80;c113 2.30 10.30;c006 9.60 17.60;c112 9.80 16.00,53.75\r\nNJU3G,4OHY,Other,7,6,Yes,A person runs into their garage while eating a sandwich. They start dressing while standing in the doorway.,clothes;dish;doorway;food;long sleeve shirt;plate;sandwich;table,\"A person is walking into a room eating a sandwich, they then set the sandwich down and begin dressing in the doorway.;This person walks into a room, eating a sandwich, puts plate down, picks up long sleeve shirt and then puts it on.\",c065 2.00 9.10;c068 13.30 18.70;c097 1.50 6.50;c119 13.40 18.80;c067 0.80 6.20;c156 2.00 8.80;c148 18.70 32.00;c002 15.30 21.40;c009 13.90 19.00;c000 16.10 24.50;c061 1.20 18.20;c118 0.80 18.10;c062 14.20 18.50,30.75\r\nT1NS2,HR43,Closet / Walk-in closet / Spear closet,4,5,Yes,A smiling person wrapped in a blanket is doing homework in a hallway and starts sneezing.,blanket;homework;paper,\"A person reads from some papers, while draped in a blanket, in front of an open closet.\",c070 0.00 37.00;c145 0.00 37.00;c115 0.00 37.00;c072 0.00 37.00,36.33\r\nDGPR1,UTMU,Stairs,6,7,Yes,A person is throwing a bag down the stairs.  Then a person is grasping a doorknob.,bag;doorknob;floor,A person throws clothes on the floor. The person then sits down and tries to open a door.,c141 5.90 31.00;c024 1.10 7.70;c125 8.30 31.00;c151 5.80 13.80;c020 0.00 5.00,29.83\r\n3VWR9,XXN8,Bathroom,7,7,No,\"A walks in and turns on the light.  The person throws a blanket onto the shelf and smiles, then closes the door.\",blanket;door;shelf;towel,Someone walks into the bathroom with a blanket that they put in a closet. They smile at the camera and close the door and walk off.,c081 3.60 11.30;c070 3.10 11.10;c071 3.30 11.00;c006 10.70 16.90;c152 8.10 13.20;c034 3.10 11.10;c141 9.80 15.20,30.79\r\n4KZHT,YA10,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is in their basement sitting on a chair eating a sandwich and working on their homework.,chair;food;homework;paper;sandwich,A person is eating a sandwich while sitting in a chair working on their homework.,c145 0.00 31.00;c065 1.30 31.00;c059 0.00 31.00;c156 1.20 31.00;c067 0.00 31.00,30.33\r\nDB07P,5LWB,Garage,6,6,Yes,A person is holding a box while another person is laughing at a light.,book;box;light;motorcycle,\"One person is holding a book, while another person is looking at a light.;A person is holding a box. Another person looks at a light and stands on a motorcycle.\",c149 0.00 7.80;c040 0.00 7.40,28.21\r\nFQWTE,KASL,Stairs,6,6,Yes,A person is running down the stairs holding a pair of shoes. They throw the shoes in a bag and start undressing.,bag;clothes;coat;jacket;satchel;shoe;stairs,A dog and a person come running down the stairs and grab a satchel. The person then takes off a jacket and continues on.;A person walks down the stairs quickly. Before they reach the bottom of the stairs the person picks up a bag and place a pair of shoes in it. The person then removes their coat and walks away.,c023 9.10 16.10;c054 9.90 17.50;c155 13.10 20.50;c002 12.60 21.00,25.79\r\n8NU39,ZEM0,Bedroom,6,7,Yes,\"A person sits on their bed, playing a game on their laptop. They reach over to the stand, take a sip of coffee and put it back down.\",bed;coffee;cup;laptop;mug;table,A person is sitting on a bed on a laptop and after a couple of moments drinks from a mug.;The person is looking at a laptop while sitting on their bed. They grab a coffee from the table and drink it.,c051 21.40 33.00;c135 0.00 33.00;c106 17.10 27.30;c009 23.20 31.90,31.71\r\nYQCYJ,25TD,Kitchen,7,7,Yes,\"A person takes a glass from the cabinet and washes it. The person then turns to walk away, but trips over a broom.\",broom;cabinet;cup;detergent;dish;faucet;floor;glass;towel;window,\"A person is cooking on a stove while another person is washing dishes in a sink.;While one person holds a baby and cooks, another takes a glass from the cabinet and washes it.\",c111 5.50 13.00;c100 26.90 36.00;c121 5.50 13.00;c038 5.30 13.50;c119 23.90 31.60;c113 0.00 4.60;c124 27.60 36.00;c092 0.00 3.20;c118 2.20 31.60;c112 4.10 8.80,34.75\r\nY8XYL,YMXV,Bedroom,5,4,Yes,A person sits in a chair in the garage. The person stands up and walks to the window.,chair;window,A person in a green shirt is sitting on a chair and fidgeting around before they start up and pace around the room.,c092 23.80 31.00;c059 0.00 14.50;c154 10.20 15.50,30.50\r\n5LH8B,XXN8,Bedroom,7,7,Yes,A person smiles as they look into the mirror. The person begins fixing their clothes.,clothes;mirror,A person smiled while looking in a mirror. The person then adjusted their clothes while continuing to look at their reflection in the mirror.,c094 0.40 10.90;c096 0.20 32.70;c152 0.40 11.10,31.58\r\nMUZMD,T7C3,Bedroom,6,7,Yes,A person walks into a bedroom holding a bottle of medicine and put it on the table. They start tidying the room while watching television.,bed;blanket;clothes;glass;medicine;table;television,Person walks into the room to clean make their bed while watching tv.;Person taking medicine from table go over to the bed tidy up the bed while watching televison,c070 18.20 35.30;c132 0.00 34.90;c128 0.10 14.10;c001 12.60 19.80;c075 22.00 39.00,37.79\r\nEF8O4,BYF9,Stairs,5,7,Yes,\"A person carries a chair up the steps and puts it under a desk at the top. The person walks back down, grasping the handrail.\",chair;desk;stairs,\"A person is walking up some stairs carrying a folded chair, they then set the chair near a desk\",,46.46\r\nGI7JM,C7O9,Laundry room,7,6,Yes,\"A person is working on a laptop, then is tidying medicine on a shelf.\",laptop;shelf,A person holds and works on a laptop then puts it down and begins picking up something from a shelf.,c047 0.00 28.10;c052 0.00 28.10;c049 22.30 27.40,28.04\r\nEQ4GN,D0RU,Living room,6,7,Yes,A person in a living room is taking medicine and drinks water from a glass afterwards. The person then begins tidying the living room.,cup/glass/bottle;dish;floor;food;liquid drink;medicine;pill / candy;towel,A person takes some medicine and then drinks a soda and then cleans dishes up off the floor.;This person appears to be in the living room. Consumes some type of candy / pill and drinks something after. This person then cleans dishes off of floor. and wipes off floor with a towel.,c120 23.30 35.00;c121 24.30 35.00;c129 0.00 12.00;c118 30.20 35.00;c109 19.30 24.00;c156 3.00 8.20;c127 30.90 35.00;c118 4.50 35.00;c106 7.80 24.50;c109 7.30 25.10;c156 6.60 25.20;c127 24.00 35.00,34.38\r\nO55V6,8718,Living room,6,7,Yes,A person is standing in the doorway of a closet laughing while they are holding a blanket out in front of them.,blanket;clothes;doorway,A laughing person folds a blanket in a doorway.,c070 0.00 30.00;c149 0.00 30.00;c152 0.00 30.00;c075 0.00 22.00;c004 0.00 22.00,29.38\r\n9IY50,R1OT,Basement (A room below the ground floor),3,7,Yes,\"A person is in a basement working on a table, they then start smiling as they grab a bag and walk away.\",bag;book;chair;jacket;pencil;sofa;table,\"the person writes something in the workbook, smiles,puts the pencil in the book, closes it, gets up and leaves.;A person is sitting on a sofa doing their homework. A person then grabs a bag and walks out.\",c011 0.00 21.80;c023 17.80 23.00;c152 5.00 20.80;c154 17.70 22.60;c059 0.00 21.70;c026 0.00 23.00;c145 0.00 19.50;c032 0.00 19.70,21.96\r\nJ4U86,0KZ7,Kitchen,5,5,Yes,A person is putting dishes in a sink in a kitchen. The person laughs and then stops to take some medicine.,dish;medicine;sink,A person is putting dished into a sink before looking out a window and then taking a drink from a bottle of medicine.,c129 28.30 36.20;c119 0.00 26.20;c149 21.70 27.60,35.54\r\nVTIUW,L4ZP,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is sitting alone at a desk. Suddenly their phones rings, they answer it and begin pouring coffee on their head.\",chair;cup;desk;mug;phone;table;tray stand,\"The person is sitting in a chair then looks to the left and then out the window and then grabs the cell phone off the tray  stand and starts to talk on it then turns back and forth quickly then picks up a mug from off a tray stand and holds it high in  the air.;Someone is sitting at a desk. Then they grab their phone from the desk and talk on it. And, they grab their cup and hold it above their head.\",c018 11.20 15.80;c019 15.10 23.00;c107 18.50 23.00;c110 18.40 22.70;c011 0.00 23.00;c015 8.40 21.80;c059 0.00 23.00,22.21\r\nP8ZU6,YA10,Recreation room / Man cave,5,6,Yes,\"A person is sitting in a chair playing a guitar.  The person puts the guitar down and takes off their shoes, then throws them into a pile of clothes.  The person gets up and grasps a broom and stands in the doorway looking at the room.\",broom;chair;clothes;doorway;shoe,\"A person is sitting and playing a guitar. The person then removes his shoes, stands and walks away after picking up a broom. The person finally stands in a doorway. Clothes are on the floor near the chair the person was sitting on.\",c059 0.00 21.10;c098 19.80 31.00;c057 10.30 18.40;c100 17.40 26.30;c154 16.00 23.10;c056 8.60 17.20;c054 10.70 17.00;c097 23.60 30.80;c155 9.80 21.40,30.33\r\n974PN,QB52,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person sits at their desk, smiling as they watch something on their laptop.\",chair;laptop;mirror;table,\"A person is sitting and laughing, while looking in a mirror.;A person is sitting in a chair looking at their laptop and laughing.\",c051 0.00 31.00;c152 0.00 8.40;c149 4.90 15.10;c059 0.00 31.00;c096 0.00 31.00;c011 0.00 31.00,30.50\r\n8GP10,XXN8,Kitchen,6,6,Yes,One person is fixing the window while they are eating a sandwich.,food;window,\"A person unlocks a window, then relocks it and adjusts the curtains.\",c092 0.00 27.00;c156 7.50 17.50;c089 0.00 12.30,26.25\r\nS38BY,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,The person is drinking coffee out of a mug while smiling in the entryway mirror.,coffee;cup;mirror,{};A person is drinking coffe while looking at themselves in a mirror and laughing over and over.,c152 14.80 19.70;c096 0.00 31.00;c106 0.00 26.60;c107 0.00 31.00;c149 4.80 31.00;c094 0.00 6.50,30.21\r\nJYDCI,EIO2,Bedroom,6,6,Yes,A person is awakening in a bed while another person is holding a glass container.,bed;blanket;cup,One person stands in the bedroom watching two people sleep while holding a cup. One of the sleeping people wakes up and looks at the person.,c133 17.70 32.00;c107 0.00 32.00;c146 17.20 32.00;c134 0.00 29.50;c072 0.00 28.90,30.79\r\nPB0TU,0KZ7,Living room,7,7,Yes,A person playing and laughing in the living room pretends to use their shoes as a phone.,floor;shoe,A person holds some shoes and pretends like one is a phone. They move the other one up and down;A person is sitting in the floor pretending to talk into one shoe while swinging the other.,c149 0.00 8.40;c125 0.00 25.00;c053 0.00 25.00;c152 0.00 25.00,23.71\r\nAIT3V,0RNU,Garage,6,7,Yes,A person is lying down next to a chair.  Then the person begins leaving after picking up a box.,box;door;floor,\"This person appears to be laying flat on their back in garage, gets up, picks up carboard box and walks out of garage.;A person lies on the floor in a garage, next to a chair and box. The person picks up the box and opens a door. The person then leaves the garage.\",c040 11.40 30.00;c043 10.80 17.70;c154 9.60 20.20;c124 0.00 17.40;c008 22.10 28.90;c125 0.00 18.60;c097 23.50 30.00,29.00\r\nDJ6ZW,HR43,Bathroom,6,6,Yes,A person is washing their face at the sink. They drink from a glass of water. They look at the mirror and smile. Then they turn the doorknob and leave.,cup;dish;doorknob;glass;hand;mirror;sink;water,A person is washing their hands in a sink. The person then fills the glass with water and drinks it.;Person goes into a room wash face and hands then drinks some water from a glass.,c096 2.00 28.30;c106 13.20 22.40;c108 2.00 16.90;c139 2.20 7.60;c107 13.20 22.50;c120 11.30 17.20,32.04\r\nS6W5T,BYF9,Hallway,3,7,Yes,A person is standing in the hallway smiling and taking a picture of themselves holding a glass of wine.  The person takes off their shoes and leaves them in the hall.,book;cup;glass;phone/camera;picture;shoe,\"A person is standing in a hallway holding a glass of water reading their phone, they kick off their shoes and walk out of the room.\",c107 0.00 27.00;c057 17.20 27.00;c029 0.40 5.40;c015 1.40 6.80;c016 1.00 6.40,26.38\r\n6ERRL,ZSRZ,Pantry,6,7,Yes,\"A person is washing shoes in the pantry, then sits with an open book and closes it.\",book;closet/cabinet;cloth;shelf;statue;table,\"A person dusts off a statue with a cloth then puts statue back on bookshelf, picks up a book from a table, sits on the table, looks at book briefly, then closes book.;A person is tidying up a shelf then grabs homework or book and sits down.\",c026 8.70 18.00;c027 8.80 13.40;c151 10.80 15.50;c082 1.40 12.10;c010 10.60 15.80;c025 13.90 18.00;c030 8.80 13.30;c145 13.20 17.40;c113 2.20 6.90,16.54\r\n6WZ1K,ZAWX,Bedroom,7,7,Yes,\"A person is sitting in a chair and working on their laptop. The phone rings and the person stands up and begins walking to answer it, pausing to move a pile of clothes out of their way.\",chair;clothes;laptop;phone;pillow;table,The person is clicking on his laptop. The person then takes a phone call. While on the call he walks around and moves a pillow out of the way.,c052 0.00 12.40;c019 14.70 32.00;c154 16.60 21.50;c018 8.40 32.00;c001 20.70 26.90;c002 20.60 26.80;c011 0.00 21.00;c080 21.40 26.60;c014 0.00 17.80;c015 9.90 32.00,30.92\r\nV2BCZ,HR43,Bedroom,6,7,Yes,\"A person is lying on their bed in their bedroom. They get up and start pouring some objects into a bag, and then they put that bag into a box.\",bag;bed;box;clothes,A person is waking up from bed then begins to put clothe in a bag then the bag into a box.,c022 17.40 28.00;c041 16.70 27.70;c134 0.00 9.40;c133 0.10 7.60;c154 3.40 12.30;c001 7.50 28.00;c021 7.60 19.90,27.42\r\nAXIW1,D0RU,Home Office / Study (A room in a house used for work),5,5,Yes,A person is working in a home office and making notes in a book. The person takes off the person's shoes and starts drinking some wine.,book;chair;cup/glass/bottle;shoe,\"A person is sitting down at a table, writing and studying from a textbook. They slip off their slippers and take a drink from a glass of water.\",c057 25.70 34.60;c032 0.00 29.40;c145 0.00 29.20;c059 0.00 38.00;c107 31.90 38.00;c106 32.90 38.00,37.42\r\nP2UBC,54JK,Recreation room / Man cave,6,7,Yes,\"A person awakens in their recreation room and sneeze. They put on their shoes, turn off the light, and leave.\",door;light;shoe;sofa,\"A person is awakening from laying down on a sofa, they then get up and sneeze then proceed to put on a pair of shoes and turning off a light and walking out the door.;A person is lying on a sofa, they awaken and begin sneezing, they then take a pair of shoes and put them on then open a door\",c055 4.50 13.00;c146 8.30 26.30;c154 15.10 23.10;c008 10.80 29.30;c056 21.60 32.80;c053 16.50 26.80;c056 16.10 21.80;c153 5.70 13.70;c122 0.00 9.30;c055 16.50 34.00;c141 29.60 34.00;c123 6.00 15.70;c152 1.20 8.00;c105 28.80 33.50,33.25\r\nM0RUS,XXN8,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,\"A person takes their phone out to check it, and smiles. The person walks through the doorway.\",doorway;phone,A person is using their smartphone before walking out of the room.,c097 18.70 25.50;c015 0.00 22.50;c016 0.00 21.40,31.54\r\nE6P07,JVLO,Stairs,6,6,Yes,A person at the top of the stairs begins opening a book. They take a look at the vacuum at the bottom of the stairs and begin laughing.,book;paper;stairs,someone reading a paper and walking down some stairs.;A person is reading a book and walking down the stairs and smiling.,c029 6.50 28.70;c032 1.50 13.30;c149 7.20 18.90;c152 3.30 21.40;c026 1.80 31.00,30.46\r\n3SNSC,QB52,Kitchen,5,6,Yes,\"A person is closing a book, then sneezing and finally taking medicine in a living room.\",book;medicine,A person stands in the kitchen reading a book. The person puts the book down and sneezes. They then take medicine from a pill bottle.,c025 11.60 18.20;c026 0.00 20.10;c027 0.00 5.20;c032 0.00 18.30;c153 16.00 23.60;c129 22.20 29.50;c028 14.80 21.90;c128 19.30 31.00,30.17\r\nUBUKL,PO5L,Living room,6,6,Yes,\"A person is lying in the chair in the man cave, while putting the cup of coffee on the table next to them.\",coffee;cup;dish;glass;sofa;table,Person walks into room and sits on couch and moves a cup to a table.;A person enters a room and sits on a couch. They take a coffee cup off a table and put it on another table.,c107 0.60 9.10;c110 4.90 13.60;c009 6.40 15.40;c109 11.60 18.00;c107 11.00 16.60;c009 12.00 18.70;c123 4.60 12.00;c154 3.10 8.50;c119 0.70 5.30;c120 0.50 4.60,22.58\r\nMB1MR,KFGP,Bedroom,4,5,Yes,\"A person reaches for their phone upon awakening on the couch in their basement, before putting on their shoes and heading for the door.\",door;head;phone;shoe;sofa,The person was lying down on a sofa.  The person then grabbed a phone next to them.  The person then got up.  The person then put on shoes.  The person got up and walked away.,c055 15.40 30.00;c122 0.00 15.80;c015 7.20 18.00;c146 0.00 7.70;c016 8.10 14.20;c154 26.50 32.10,31.62\r\nBBYHD,2Q9D,Garage,4,6,Yes,\"A person is walking with food in their hand, then they begin laughing and grab a doorknob.\",door;food;sandwich;stairs,someone standing eating something and going up some stairs though a door;A person eats a sandwich and then goes up some stairs.,c141 20.10 25.40;c156 2.10 21.90;c065 2.10 21.90;c061 0.00 27.00;c006 23.30 27.00;c008 20.50 27.00;c097 22.10 27.00,26.38\r\nDVDU2,D0RU,Dining room,6,5,Yes,One person sits at a desk playing with food on dishes while groceries are on the floor nearby.,chair;desk;dish;floor;food;groceries;table,\"Person sitting in chair, opens lid on bowl of food, grabs snack type food attempts tossing into mouth several times, drops food onto floor, then eats snack food, other person holding camera pans to floor with groceries scattered.;person stirs food, plays with food, and eats food.\",c064 15.50 23.80;c126 18.10 28.20;c156 24.70 30.20;c059 4.40 30.20;c061 11.60 23.60;c061 21.40 29.30;c063 11.60 17.90;c063 20.80 27.40;c120 3.10 9.70;c011 0.00 32.40;c062 24.40 28.80,32.71\r\nRIV6I,C7O9,Other,7,7,Yes,\"A person is sneezing on a doorknob, then the person begins lying down on a bag.\",bag;doorway;floor;hallway,\"The person was in  a hallway  standing up,then he benst his knees covered his face with both of his hands stood back up bents and cover his face again,stood up and then laying on the floor with a bag under his head.;A person standing in a doorway sneezing then decides to lay down.\",c153 0.00 12.40;c124 15.20 31.00,29.62\r\nWGUW8,CCI9,Bedroom,5,7,Yes,A person undresses in front of a mirror then throws their clothes in a bag.,bag;clothes;mirror,A person is getting undressed in front of a mirror and then puts the clothes in a bag.,c001 12.30 27.40;c096 0.60 33.00;c155 0.10 15.50,32.38\r\n0VQCH,WG9D,Living room,4,6,Yes,Person is putting polow on laptop then looks in mirror and starts laughing.,laptop;mirror;pillow;table,A person is looking in a mirror in the dining room while holding a pillow. The person puts a pillow on top of their laptop and laughs.,c094 2.20 7.00;c096 0.00 7.00;c149 2.40 7.00;c009 1.10 5.60;c080 0.10 6.50,5.50\r\nKAKSU,JVLO,Stairs,5,7,Yes,A person is throwing a broom because it has a bug on it.  Then a person is turning on a light and running away up or down the stairs.,broom;doorway;light,\"A person drops a broom on the floor, then turns out the light, walks out a door and climbs up then down some stairs before re-entering the house.\",c101 0.00 4.00;c105 2.00 8.50;c097 9.20 16.30;c104 5.20 10.30,31.08\r\nAVSN8,ZAWX,Kitchen,4,6,Yes,A person is fixing coffee and another person is opening the stove.,bowl;cup;dish;food;glass;match;stove,A person pours a drink from a bowl to a cup. Another person then enters and uses a match to start the stove stove top to cook food in a pot.;A person is stirring a pan on the stove and pouring it into a cup while another person puts a pan on the stove and lights the stove,c108 6.20 25.40;c147 22.00 32.00;c118 6.30 24.60;c119 21.50 26.30;c120 6.00 11.50,30.75\r\nLTA22,25TD,Pantry,7,7,Yes,\"A person takes a glass from the cabinet, and pours a drink into it.\",cabinet;cup;glass;groceries,A PERSON IS POURING MILK INTO A CUP AND PUTS THE MILK JUG BACK INTO THE FRIDGE.,c108 6.10 19.60;c112 0.00 7.20;c113 0.00 7.20;c130 17.10 23.20,25.25\r\n2ECXI,UTMU,Bedroom,3,5,Yes,A person is in their bed watching movies on their laptop. They smile at the movie and leave the room.,bed;blanket;laptop;pillow,\"A person is climbing into bed under a blanket then opening their laptop and adjusting their pillow.;A person walks in, lies on bed, opens laptop, gets up, and walks off.\",c134 2.10 8.10;c048 5.70 13.20;c070 1.00 8.70;c072 0.90 9.20;c047 1.40 8.60;c154 0.20 5.70;c076 10.10 15.40;c077 10.00 14.90;c051 8.60 19.30;c046 15.20 21.10;c079 9.20 14.00;c049 17.30 22.10,27.50\r\nZZ9RN,2RTW,Kitchen,6,7,Yes,\"One person fixes a sandwich by the stove and starts sneezing, then leaves the room.\",doorway;food;sandwich;stove,\"A person is making a sandwich on a stove. They sneeze, then walk away.\",c153 9.90 19.60;c066 0.00 8.30;c062 1.20 6.50;c063 12.30 18.40;c097 17.60 22.80;c061 0.00 6.50,30.08\r\n9IO0Y,3H6W,Living room,5,4,Yes,\"A person is lying on a towel on the floor with their feet up on a chair.  The person sits up and takes off their shoes, then puts their shoes on the table before leaving.\",chair;floor;shoe;table;towel,A person lies on the floor with their feet up on a chair. The person takes their shoes off and puts them on a table.,c057 16.20 24.30;c154 20.00 26.50;c124 6.50 17.70;c151 4.70 10.60;c009 25.00 36.80,36.00\r\nNVF2S,DXDI,Dining room,5,7,Yes,\"A person is smiling while on their laptop, then the person starts taking some medicine.\",chair;cup;glass;laptop;medicine;pills;table;water,\"This person is sitting at a table using their laptop, then they take some pills.;A person sits at a table working on a laptop.  They take a medicine bottle from the table, open it and take the medicine, then pick up a glass of water and drink it.\",c129 16.50 25.00;c106 21.30 29.70;c011 0.00 32.00;c128 14.30 19.90;c052 0.00 16.40;c009 18.80 23.40;c152 0.00 17.10;c059 0.00 32.00;c109 18.80 23.70;c110 13.40 18.20;c014 0.00 16.10;c107 13.50 23.00,30.96\r\nRPPCV,YMXV,Home Office / Study (A room in a house used for work),4,4,Yes,\"A person in standing in their pantry holding a towel and a laptop. They sneeze, then leave.\",chair;doorway;towel,\"A person is drying their face with a towel.  They straighten a chair, sneeze and walk through a doorway.;A person is straddling a chair and wiping their face with a towel. The person then looks at a laptop, sneezes and starts to walk out the door.\",c033 0.00 32.00;c038 0.00 10.30;c153 19.70 28.00;c097 27.30 32.00,30.75\r\n6N4BD,T7C3,Living room,7,7,Yes,\"A person wakes up in the middle of a hallway, and realizes they forgot to put away the bag of groceries, which is near them. They open the bag, and begin eating some unhealthy snack food from it.\",bag;floor;food;foood;groceries,\"A person sits up, opens a bog, and eats something.;A person is awakening from laying down on the floor, they then eat from a grocery bag.\",c021 14.50 25.10;c061 21.30 26.30;c156 22.30 34.00;c146 1.70 18.00;c125 7.20 34.00,33.25\r\nL347E,9PLL,Hallway,5,7,Yes,A person is working on fixing their camera then vegins to throw a broom on the floor.,broom;camera;floor;phone,A person is holding a camera and takes the battery out and puts it back in. Then the person drops a broom on the floor.,c126 28.30 33.80;c099 28.30 33.80;c016 0.00 27.00;c015 0.00 35.00,34.17\r\nV0XW3,HR43,Bathroom,7,6,Yes,A person is seen in the bathroom holding a camera.  They grab a drinking glass and take a sip of soda.  After they are finished they leave the room.,camera;cup;glass;phone;shelf,Person fixing a camera while standing by a sink person pick up glass and take a drink.,c106 20.50 25.90;c016 0.00 20.30;c015 0.00 26.00;c081 22.10 26.00,25.42\r\nDG33V,H8N1,Kitchen,6,6,Yes,A person is closing a refrigerator.  The person is taking leftovers to the table.,food;refrigerator;table,A person walks over to the refrigerator in the kitchen and opens it.  The person takes out a dish.  The person puts it on the table.,c142 13.20 19.60;c009 17.80 23.10;c063 5.60 20.20;c143 0.70 20.10;c062 17.80 27.50,30.29\r\n0ZUMU,EIO2,Living room,5,7,Yes,A person is standing in front of a mirror and another person is working on a television.,hair;mirror;television,A person is adjusting a TV on a desk. Another person standing nearby is grooming themselves while looking in a mirror.,c096 8.90 32.00;c144 10.80 32.00,30.75\r\nRNCN8,T7C3,Dining room,7,7,Yes,A person looks into the mirror and smiles. The person takes their laptop from a shelf and lies on the floor with it.,floor;laptop;mirror;phone/camera;picture;table,A person is holding a picture. A person then opens a laptop and lies down on the floor.;A person is looking at themselves in a mirror.  They then pickup their laptop and lay down on the floor with it. They open up the laptop and begin to work on it.,c048 18.20 26.10;c050 13.20 19.30;c093 0.00 14.10;c124 22.30 30.00;c009 9.10 14.00;c049 16.30 21.60;c015 0.00 16.20;c151 17.90 30.00;c051 20.10 30.00,29.38\r\nCCTIO,3VLX,Living room,6,7,Yes,A person walks into the living room and lies down on the couch. The person takes off their shoes and throws them under the window.,floor;shoe;sofa,\"A person walks in and sits on sofa and lies down instantly, takes of both shoes and and tosses them behind one out of time.\",c057 5.80 12.90;c058 9.40 16.50;c122 5.30 20.00;c123 4.10 8.90;c151 2.90 8.60;c126 9.90 15.70;c053 7.70 15.10,18.92\r\nGA4EI,1OHU,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is sitting in the closet holding a bag.  The person stands up and pulls a camera out of the bag and puts it up on the shelf before leaving the room.,bag;light;phone;shelf,person is sitting looking through a bag then finds a phone and puts the phone in a closet.;A person is sitting in a closet and seems to be laughing. The person then picks up a bag and the bag lights up. The person reaches into the bag and pulls out a cell phone. The cell phone is lit up. The person stands up and places the phone on a shelf and walks away.,c015 5.00 15.10;c018 9.50 19.90;c020 20.60 26.90;c154 14.10 30.00;c015 23.80 35.20;c081 24.00 29.10;c021 13.40 21.70;c017 30.30 36.60;c152 0.00 11.90;c104 29.40 35.20,35.79\r\nWCY52,ENC8,Kitchen,7,6,Yes,A person is cooking at a stove. The person then throws some clothes that they spot on the floor.,clothes;doorway;floor;food;pan;spice;stove,A person is cooking on a stove and sprinkling spices in a pan.  They pick up some clothes off the floor and throw them before leaving.;A person is cooking something in a pot on their stove. They pick some clothes off the floor and throw them towards the doorway.,c126 22.70 27.60;c147 9.30 17.00;c097 27.90 33.50;c001 21.30 27.40;c147 2.10 19.50;c003 22.70 28.80;c127 20.70 28.70;c000 21.30 26.70,35.67\r\nYXQWH,ZAWX,Hallway,5,6,Yes,\"A person stands in the hallway, holding a bag of groceries. The person puts the groceries into a cabinet.\",bag;cabinet;food;groceries;table,A person enters a house with a bag of groceries. They sit it down on top of a cabinet.,c130 23.30 30.20;c020 0.00 27.90;c021 23.30 31.00;c062 20.60 26.10;c009 20.60 26.10;c061 0.00 26.10;c022 20.60 26.10,30.25\r\nDUEEE,DYEW,Kitchen,7,7,Yes,\"A person is cooking food on the stove. The person takes a picture of the food with their phone, then puts the phone back into their pocket.\",dish;food;phone;stove,A person is cooking on a stove they grab their phone and check it and then continue cooking.,c016 11.10 25.60;c147 0.00 31.00;c015 12.00 26.30;c118 0.00 16.00;c018 12.30 26.20;c017 12.00 25.90;c087 12.80 26.30,30.38\r\nBP94L,0KZ7,Living room,6,7,Yes,\"A person sweeping their living room with a broom sneezes.  They prop the broom against the doorway and use the camera on their phone to take a picture of the clean floor, and then leave the living room.\",broom;floor;phone,\"A person is tidying up the floor with a broom, sneezes, and puts leans the broom against a wall. The person then takes a phone from a desk and looks at  it before walking out of the room.\",c127 0.00 13.60;c015 13.00 20.20;c102 0.00 12.30;c153 7.60 12.30;c098 0.00 14.70,22.96\r\nTOYP5,JVLO,Living room,4,6,Yes,A person is sitting down drinking a glass of soda then another person throws clothes angrily at the floor.,couch;cup;doorway;floor;food;glass;wall,Person sitting on floor drinking from glass multiple times. Another person walks in room and lash out at person.;Person sitting on floor drinking from glass multiple time. Other person walks in and another person is sitting on couch.,c125 0.00 25.50;c106 0.00 25.30;c107 0.00 24.90;c061 0.00 25.00;c097 22.40 27.50,29.38\r\nXXCS6,YMXV,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"A person stands in front of a window, watching something outside. The person slowly picks up a camera, and takes a picture out the window.\",camera;doorway;phone;picture;window,A person looks out a doorway and takes a picture of a second person with a phone.;a person looking out the door then takes the picture of another person posing outside.,c092 0.00 32.00;c154 0.00 32.00;c015 5.30 32.00;c087 16.80 32.00;c016 4.10 32.00,31.46\r\n4L6GZ,EA2K,Dining room,7,7,Yes,A person is in their dining room tidying up. They grasp the window handle and open it. They grasp the broom and begin sweeping.,broom;clothes;floor;table;window,A person folds up some homework before opening a window and sweeping the floor.,c102 29.80 39.00;c090 15.20 30.60;c127 29.30 39.00;c012 0.00 11.10;c092 15.20 28.70;c009 4.10 9.40;c002 9.00 15.50;c001 11.50 19.10,37.75\r\nVS2RI,5LWB,Living room,7,6,Yes,\"A person is finishing a tv show, smiling and shaking their head while turning off the television. The person then glances out the window before running up the stairs.\",chair;couch;remote;sofa;television;tv;window,\"The person is sitting on the couch and looking at the TV.  The person turns off the TV and looks out the window.  Then the person leaves the room.;This person appears to be in living room, sitting on chair, watching tv, looks out window and starts to leave room.\",c092 5.90 15.40;c154 3.60 8.90;c123 0.00 8.20;c132 0.00 8.50;c059 0.00 8.60;c150 11.60 16.00;c152 11.40 16.00,14.96\r\nUN6O9,0KZ7,Kitchen,7,7,Yes,A person is throwing clothes while another person is cooking on the stove.,cabinets;clothes;contertop;floor;food;stove,\"The person is throwing clothes onto the floor while the other person is stirring food on the stove.;A person is throwing clothes on the floor, while another is cooking on the stove\",c147 0.00 28.00;c003 0.00 20.40;c126 4.40 9.30;c126 7.50 12.80,27.33\r\nBLFEV,Z68L,Home Office / Study (A room in a house used for work),6,7,Yes,A person is seen working while sitting on a chair. They begin pouring themselves some water and taking medicine.,bottle;chair;cup;glass;laptop;medicine;pills;table,\"A person is sitting in a chair looking at a laptop.   They pick up a medicine bottle, take some out and put the bottle down.  Then they pour water into a glass and drink it while taking the medicine.  They stand up and leave.;A person is sitting down at a desk, using a laptop. Then the person takes pills out of a bottle, pours a glass of water. After that the person swallows the pills and water.\",c059 0.00 37.80;c154 34.00 40.00;c052 0.00 9.00;c106 28.60 35.90;c128 7.30 33.40;c108 20.30 29.10;c129 26.70 32.60;c014 0.00 9.90;c107 5.40 37.20;c110 5.60 38.00;c011 0.00 39.40,38.67\r\nCII5H,KFGP,Closet / Walk-in closet / Spear closet,5,6,Yes,A person is grasping a blanket. The person sneezes as the blanket is placed on a shelf.,blanket;closet;clothes;door;shelf;towel,\"Person with a blanket in hand open closet door, put clothing on the shelf and leaves the room.;A person walks into a hallway and opens a closet door, the person then folds and places a blanket on the top shelf of the closet then closes the door and walks away.\",c070 0.00 11.40;c081 11.00 19.80;c006 17.50 23.90;c113 1.50 8.70;c071 11.60 20.00;c008 2.10 7.40;c001 10.80 19.80;c034 10.80 20.40;c004 6.50 14.70;c033 0.00 15.50;c000 0.00 18.90;c112 16.40 24.30;c037 4.30 20.10,24.29\r\nTW2F4,QOQ4,Living room,5,7,Yes,A person is putting the phone on a shelf. Then the person begins undressing and wraps himself in a blanket before sitting on the sofa.,blanket;chair;clothes;jacket;sofa,A person undresses out of some clothes then grabs a blanket and wraps up in it then sits down.;A person takes of a jackets and throws it on a sofa. The person then picks up a blanket and wraps themselves in it and sit on the sofa.,c072 18.30 32.00;c123 26.50 32.00;c151 26.60 32.00;c000 12.90 18.50;c155 3.80 16.30;c059 26.10 32.00,31.42\r\nOXEMQ,2RTW,Living room,6,6,Yes,\"A person undresses in the entryway. The person opens a wardrobe, pulls out a new set of clothes and a blanket, and begins dressing.\",blanket;cabinet;clothes;shirt;table;towel,A person is dressing - takes off then puts on a shirt.;A person takes off their shirt. Then their grab a new one and put it on.;A person is changing and places a blanket on the table.,c074 10.10 18.20;c155 0.00 7.30;c148 20.00 30.00;c148 2.90 9.70;c001 4.60 9.80;c035 6.00 15.40;c033 11.00 17.10;c034 13.80 21.30;c000 4.50 10.40;c002 8.00 21.60;c009 6.10 10.90,29.46\r\nLIP4U,G6WD,Bedroom,5,7,Yes,One person is throwing a phone at another person who is undressing near the door.,bed;clothes;door;man;phone;shirt;something,a man and woman standing and she takes off her shirt.;A person undressed while the other person laughs.,c155 0.00 13.20;c149 0.80 34.00;c001 24.80 29.30;c000 16.30 20.40;c152 18.80 23.80;c002 28.80 34.00,33.46\r\n2PRCP,CO1W,Stairs,5,7,Yes,A person grasps a book from the shelf. The person laughs and takes a drink from a cup of coffee.,book;coffee;cup;stairs,A person walks up some stairs with a coffee mug. The person stops to grab and book and drink some coffee. The person then continues up the stairs.,c106 12.10 19.10;c026 5.30 31.00;c030 5.60 31.00;c152 8.60 14.90;c032 5.60 14.40;c107 2.80 31.00,30.25\r\nKC863,DXDI,Basement (A room below the ground floor),5,7,Yes,Person walks across the basement holding a book which is placed on a cabinet.  Shortly thereafter a camera is removed from the cabinet and the person leaves.,bag;book;cabinet;camera;phone;shelf,A person carries a book around and puts it on a shelf and then takes a camera out of a cabinet.;A person places a book on top of a cabinet and then retrieves a camera from a shelf.,c112 26.80 32.90;c113 23.60 30.60;c015 28.50 35.40;c026 0.00 4.60;c020 0.00 13.60;c081 9.90 17.80,35.08\r\nS8PVE,2RTW,Kitchen,6,6,Yes,\"A person is smiling and reminiscing while they are working on a new picture frame project, that will be hung over the bed.\",chair;frame;photograph;picture;table,\"A person is sitting at a desk with a box and a picture they take the picture out of the frame and look at it, then they put it back in the frame;A person is looking at a photograph and puts it in a frame.\",c084 5.20 29.40;c152 19.00 29.30;c011 0.00 31.00;c086 3.40 29.70;c059 0.00 31.00;c009 22.60 29.90;c088 15.00 21.80;c083 0.00 3.80,29.75\r\nBY6ZZ,KFGP,Dining room,6,7,Yes,A person is eating at a desk and then lying on a blanket in the dining room.,blanket;clothes;floor;food;table,A person is sitting at the table and eating some food. A person then lies on the floor and falls asleep on a blanket.;a person sits in a chair and eats some food then lays on some clothes on the floor,c072 16.40 27.00;c156 0.00 14.50;c011 0.00 15.40;c154 12.40 16.90;c124 15.50 27.00;c061 0.00 4.40;c061 1.80 10.70;c062 7.90 14.00;c009 7.90 14.00,26.29\r\nYS9RE,YA10,Garage,6,6,Yes,A person is lying on the ground next to a vacuum cleaner. They awaken and look confused. They take a picture of themselves.,blanket;floor;phone;picture,a person is lying in a garage and then he sits up and appears to take a selfie from his phone;A person is sleeping on the garage floor on a blanket. The person wakes up and picks up their phone to take a photo.,c087 22.20 29.00;c146 3.70 20.00;c124 0.00 7.40;c015 19.10 24.40;c016 18.90 29.00,28.29\r\nLK3BW,9OK1,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person opens the door, turns on the entryway light, then they close the door. The person then stares dreamily into a picture hanging on the wall.\",door;light;picture,A person walks through a doorway into a room and closes the door. Then they turn a light on in the hallway and look at themselves in the reflection of a picture.,c006 0.00 4.60;c008 0.00 3.50;c104 6.70 12.30;c088 3.30 15.00;c097 0.00 3.20,14.46\r\nY1KKI,I4RP,Kitchen,6,6,Yes,\"A person is taking groceries into the pantry, placing them on the shelf. Another person is smiling by the door.\",bag;cabinet;cup;dishwasher;groceries;shelf;stove,\"The people in the video are standing in the kitchen while one drinks from a cup, and the other is putting up groceries.;A person leans against a stove as they drink a cup of coffee. Another person takes groceries from a bag and places them on a shelf in a cabinet.\",c081 0.00 13.00;c130 0.00 13.00;c021 0.00 13.00;c114 0.00 13.00;c113 0.00 13.00;c107 0.00 13.00;c106 0.00 13.00,11.79\r\nNZCG8,D0RU,Home Office / Study (A room in a house used for work),5,7,Yes,A person is standing on a blanket while closing a laptop.,blanket;laptop;table,A person works on a laptop while standing on a blanket.,c046 22.40 30.70;c052 0.00 27.60;c014 0.00 30.40,31.71\r\nC9FMC,D0RU,Kitchen,6,6,Yes,A person is putting groceries into a refrigerator. A person is closing the kitchen door and pouring soda into their cup.,cup;door;food;glass;groceries;refrigerator,\"A person walks in to the kitchen, opens the refrigerator, and puts away groceries. Another person walks in, closes the door, and places a bottle on the table.\",c142 4.60 12.20;c130 0.00 9.40;c107 24.60 39.00;c006 21.40 29.40;c143 0.50 6.70;c130 0.00 4.50;c108 27.80 37.30;c062 27.80 37.30,37.71\r\nT35WB,D0RU,Living room,7,4,Yes,A person is sitting on a pillow watching the foor on their plate. They begin laughing at the movement of the food.,dishes;floor;food;pillow,A person sitting down on the floor on a pillow and plays with a plate of food on the floor and laughing.,c151 0.00 4.00;c149 16.40 23.50;c152 16.50 32.00;c125 0.00 32.00,31.12\r\n7QEQN,WG9D,Recreation room / Man cave,4,6,Yes,A person is fixing a light. The person then starts walking toward the cabinet.,cabinet;closet;door;light,A person stood on a cabinet and fixed a light. The person got down from the cabinet and walked over to a closet and locked it.;someone standing on top of a cabinet,c103 0.00 4.20,7.46\r\nZXTY5,LTAC,Stairs,4,5,Yes,A person runs up the stairs grasping a broom then touches a doorknob.,door;staircase;stairs,\"A person is walking up a staircase. The person closes a set of doors at the top of the staircase.;A person walks up some stairs, grabs a doorknob, then opens and closes a door.\",c141 10.40 32.00;c006 11.90 31.50;c008 26.70 32.00,30.50\r\n75RPN,3VLX,Closet / Walk-in closet / Spear closet,6,7,Yes,A person grasps a towel and a pillow from the shelf and smiles.,blanket;doorway;pillow;shelf;towel,\"Person walks into a room and go to the closet get a towel and a blanket off the shelf walks out of the closet;Person walks into the closet, reaches on the top shelf and takes a pillow and blanket down.\",c076 12.70 22.00;c073 1.60 12.70;c097 0.70 5.80;c079 10.20 16.80;c070 3.80 22.00;c152 13.70 22.00,21.38\r\nXBRO4,YA10,Home Office / Study (A room in a house used for work),5,7,Yes,\"One person works on homework for a moment, stands, then runs out of the study with a glass.\",chair;cup/glass/bottle;desk;doorway;paper;pen;table,Person sitting in a chair doing homework;Person sitting at the desk writing and the decides to get up and run out of the room.,c145 0.00 24.40;c150 24.70 30.10;c014 0.00 24.40;c059 0.00 24.40;c154 20.70 26.00;c097 25.60 31.00;c011 0.00 24.70;c110 22.30 27.50,30.54\r\nFM6KD,G6WD,Laundry room,5,7,Yes,\"A person is reading a book, laughing at something.  They stop reading, pick a bag off the floor, and start tidying around.\",bag;book;floor,Person is in the Laundry room picking up clothes and reading a book.,c020 29.60 36.10;c022 31.30 42.50;c029 3.90 10.40;c149 3.10 10.70;c127 43.30 52.00;c021 27.00 36.10;c027 0.00 6.10;c032 2.10 26.20;c023 28.00 33.30;c152 8.20 13.70;c025 22.20 27.70,50.83\r\nFFBK3,T7C3,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is walking to the light in the entry.  The person is grasping a book and putting it in a bag.,bag;book;light,A person walks into a room and looks at the light while holding a bag and a book. They put the book in a bag.,c020 3.00 34.00;c026 0.20 34.00;c028 22.30 29.10;c103 3.30 19.00,33.25\r\nTVDWJ,UO0Z,Living room,5,7,Yes,A person is tidying a sofa that has things on it.  Then a person is sitting on the sofa and drinking coffee.,coffee;cup;glass;phone;sofa;table,person cleaning the sofa by removing the phone and some box. took the coffee from the table and drank it.;A person sets a cup of coffee down on a table and tidies a sofa.  When they're done they sit down on the sofa and drink their coffee.,c106 8.80 23.00;c110 8.70 14.90;c151 7.30 15.10;c009 2.50 9.70;c018 2.40 9.40;c107 9.70 23.00;c123 8.80 23.00;c109 1.00 5.60;c011 9.00 23.00,22.50\r\n7FTZR,T7C3,Living room,6,6,Yes,\"A person is smiling at a picture, then begins grasping a bag.\",bag;picture,A person standing in a room holding a picture flips it over and looks at the back.The person bends over and picks up a bag off the floor and continue to look at the picture.,c023 16.20 24.00;c088 0.00 36.00;c020 15.60 36.00;c152 0.00 36.00;c084 0.00 36.00,34.54\r\nPVN01,2RTW,Kitchen,7,7,Yes,\"A person is fixing a sandwich at the desk. Then, taking their sandwich with her, the person walks to the doorway and puts their hand on the doorknob.\",doorknob;food;hand;sandwich,\"A person is in the kitchen preparing a sandwich when they walk to the door and turn the knob;A person is cooking, and mixing different ingredients. Then goes to the door.\",c141 17.60 22.70;c061 0.00 14.90;c061 11.60 19.10,29.17\r\nED6VQ,HJJ4,Bedroom,6,7,Yes,A person is holding a coffee cup and taking sips from it. They pick up a bottle of medicine and take some.,chair;coffee;cup;medicine;table,\"A person stands by a window drinking a cup of coffee.  They put the cup on a shelf, pick up a bottle of medicine, take some, then put the medicine back on the shelf.\",c128 8.50 17.50;c109 6.80 13.00;c106 0.00 10.40;c129 9.50 21.80;c011 0.00 25.00;c009 6.90 11.50;c059 0.00 25.00,24.38\r\nMEZVN,4I2W,Dining room,6,7,Yes,A sneezing person opens a door and walks into their dining room holding a pillow.,door;pillow,\"A person walks through a door into the dining room holding a pillow and sneezing, they then walk to the table.\",c008 0.00 6.60;c076 0.00 30.00;c153 1.40 11.20;c097 2.00 9.50,29.50\r\n0WHOH,1OHU,Bedroom,6,1,No,\"One person with hair in a towel undresses, then takes a pillow and leaves through the doorway.\",clothes;door;pillow;shirt;towel,\"A person is taking off a shirt, while a towel is on their head. A person then picks up a pillow and walks away.;Person with clothes on head, standing folding clothes. Bends down, picks up clothes and walks in the room.\",c097 23.10 29.60;c000 7.70 24.30;c155 0.00 11.00,29.46\r\n55OAL,2Q9D,Closet / Walk-in closet / Spear closet,6,6,Yes,A person grasps a blanket from a shelf of their closet. The person takes the blanket and leaves.,blanket;closet/cabinet;door;shelf,A person opens a closet door and takes a blanket off a shelf.  They tuck the blanket under their arm and walk away.,c070 7.50 20.50;c073 7.70 16.70;c113 8.80 15.00;c008 8.40 12.90;c112 12.00 16.80;c006 11.30 16.20,22.38\r\nSHZ84,FNK4,Kitchen,6,3,Yes,\"Person comes through doorway snuggling with blanket, then walks up to sink and starts pouring coffee out of cup.\",blanket;dishwasher;sink,\"A person picks up a blanket and takes it into the kitchen. The person picks up a cup, pours the contents into a sink and then places the now empty cup in a dishwasher that is first opened, then closed.\",c070 0.00 32.00;c073 0.00 7.10,31.04\r\n67EEN,PO5L,Living room,4,4,Yes,A person is sitting in a chair watching television. They stand up and begin walking toward a box resting on top of a table.,couch;sofa;table,A young person walking into a room sitting on a couch talking to someone getting up again and touching something on an end table.;A person walks into a room and sits on a sofa. They stand and moves something on a table.,c151 0.50 7.80;c154 12.80 18.70;c123 2.30 18.30,27.33\r\nVX82P,9PLL,Kitchen,6,7,Yes,\"A person is plating food onto dishes, then sneezing on the food, followed by laughing in a kitchen.\",dish;food,\"A person is making food, and then begins to sneeze.\",c118 0.00 33.00;c119 3.00 9.50;c061 4.60 33.00;c062 1.50 11.50;c153 7.30 19.80;c149 15.30 33.00;c120 5.20 9.90;c152 14.80 26.20,32.00\r\n64F1C,8IOD,Hallway,5,7,Yes,A person is tidying a shelf in the hallway.  The person is throwing a blanket on the floor.,blanket;closet/cabinet;clothes;floor;shel;towel,A person is folding towels and blankets and tidying up a closet shelf and throwing towels on the floor.,c074 22.60 27.70;c075 0.00 14.50;c126 22.30 27.40;c082 0.00 31.00;c036 22.50 28.30;c037 16.20 24.70;c114 12.00 31.00;c073 5.20 12.10;c002 0.00 8.80,30.00\r\n7UU9S,I4RP,Hallway,6,6,Yes,Two persons are standing in a hallway. The first person is in the process of fixing a broken light fixture. The second person is watching the first person and has a camera ready to take photographs of the broken light.,camera;chair;ladder;light;phone;vent,\"A person is standing in the hall on a latter attempting to fix a vent. Meanwhile, another person points a camera at the person on the ladder.\",c015 0.00 12.00;c087 0.00 4.90;c103 0.00 12.00;c060 0.00 12.00,10.54\r\nMA1ON,I4RP,Hallway,6,6,Yes,\"One person was running through the hallway when their shoes hit the chair and made them trip. The other person is seen standing over the first, asking if they are hurt.\",doorway;floor;hallway;stool;table,\"The person is running down a hallway in a house, bumps into a table and falls over.;The person walked down the hall and tripped over a stool, then another person checks on the person who fell.;A person runs in the hallway, trips on a table leg and falls.  Another person stands in the doorway watching.\",c150 0.00 2.60;c097 1.00 5.00;c124 1.00 5.00,4.29\r\nQQM8M,I4RP,Hallway,6,6,Yes,A person opens the door with one hand on the doorknob and another holding a phone. Another person has some food in the hall.,chair;door;food;hand;phone;shoes,A person is holding a phone and grasps a doorknob and another person with food in their walks with the first person through the door.;A person wearing shoes followed another person into a room.,c141 0.00 3.10;c061 0.00 4.00;c019 0.00 4.00;c008 0.00 4.00;c097 0.00 3.40;c015 0.00 4.00,2.62\r\nCMI7U,LTAC,Living room,4,5,Yes,The person is leaving dishes on the floor and the putting books on a shelf in the hallway.,book;chair;closet/cabinet;doorway;floor;shelf,\"A person is sitting on a chair holding books. The person stands and walks to cabinet, puts the books on a shelf, closes the cabinet door and walks away.\",c028 14.60 21.30;c081 12.00 17.60;c154 0.30 6.80;c113 7.20 12.30;c097 27.90 35.60;c059 0.00 5.20;c116 10.00 21.10,35.33\r\nTM0RL,P6LJ,Basement (A room below the ground floor),6,7,Yes,A person is walking in the basement holding a glass of water. They put the glass on a desk.,cup;desk;glass;table;water,A person walked around and got a drink.  A person then faced the entrance hallway.,c106 11.30 18.30;c107 1.30 26.80;c009 22.80 28.90,29.88\r\nLPR6Z,1TZV,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is dressing with some clothes from the closet.  Then the person leaves after turning the light off.,clothes;light;wardrobe,\"There is a person standing at a closet.  That same person puts on a sweater and a scarf, cuts the light off and leaves the room.\",c105 28.10 33.00;c148 0.00 31.10;c001 0.00 33.30,34.50\r\n1YBKW,XXN8,Closet / Walk-in closet / Spear closet,5,7,Yes,A person is standing in front of a glass mirror. They turn on the light and begin smiling into the mirror before getting dressed.,clothes;glass;light;mirror,A person is standing in front of a mirror. The person turns on a light and then beings getting dressed.,c094 0.00 9.50;c104 10.30 22.00;c152 0.00 7.70;c148 18.30 28.90;c096 6.60 11.10;c096 9.10 22.10;c000 0.00 10.60,30.46\r\nLF49A,DXDI,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is opening a bag in the closet. They pull out a picture and start fixing the frame.,bag;picture,A person is in a closet with a bag they take a picture out of the bag and look at it.,c084 9.70 27.00;c021 9.60 16.40;c024 9.30 14.40;c020 0.00 13.30,26.33\r\nV3B51,9PLL,Stairs,5,7,Yes,\"A person turns on the stairway light, drops a book and runs down the stairs, smiling.\",book;floor;light,\"A man is reading a book. He turns on the lights, put down the book and walks downstairs.\",c032 0.00 6.40;c104 1.20 8.80;c026 0.00 12.10;c126 8.10 12.60;c116 8.10 12.60,31.67\r\n3NOML,CO1W,Bathroom,7,7,Yes,A person walks into a bathroom holding a broom and sneezes. The person then leans the broom against a chair and starts undressing.,broom;chair;clothes;door;man,\"a man walks through a door with a broom and sneezes.;Person coming into bathroom with broom, and then beginning to take clothes off.\",c099 11.40 17.60;c155 15.80 31.00;c097 0.00 4.90;c001 25.20 31.00;c141 2.60 8.50;c008 0.00 3.70;c000 22.80 29.00;c006 2.30 8.40;c098 0.00 17.90;c001 16.10 31.00,30.33\r\nIHGNV,4OHY,Other,6,7,Yes,A person is standing in the pantry holding a bag of clothes.  The person opens the bag and takes the clothes out and puts them into a box on the floor.,bag;box;clothes;floor;towel,A person is holding a bag and they unzip it. They start to remove items of clothing from the bag and throw them into a box that is sitting on the floor.,c020 0.00 8.30;c021 4.40 18.20;c126 17.50 31.00;c001 17.50 31.00;c035 16.30 22.40;c033 11.10 21.70;c036 17.50 24.50;c003 20.80 29.90,29.79\r\n00YZL,HR43,Kitchen,3,7,Yes,\"A person stands above the stove, eating a sandwich and drinking a glass of juice. The person puts the remainder of their sandwich and juice into the refrigerator.\",cup;food;glass;refrigerator;sandwich,Person in kitchen eating a sandwich and taking a drink from a glass decides to walk over and open the refrigerator and then closes it.,c065 0.70 26.10;c106 9.50 34.00;c156 2.20 30.90;c143 25.40 34.00;c142 29.90 34.00;c067 0.70 31.10;c107 2.70 30.40,33.17\r\n2LMQF,0KZ7,Dining room,5,6,Yes,\"A person is sitting at the table, eating a sandwich. Then they are pouring a drink.\",chair;dish;food;glass;sandwich;table;water,A person is sitting at the table eating a sandwich. Then they pour water into another glass.;A person is eating a sandwich. They pour water into a cup.,c068 9.40 15.10;c009 9.40 15.10;c156 0.00 13.20;c065 0.00 11.60;c069 17.30 23.20;c011 0.00 30.00;c118 12.10 30.00;c062 10.40 15.10;c061 0.00 14.00;c108 13.80 22.90;c059 0.00 30.00;c119 19.20 24.50;c063 18.90 27.20,28.75\r\n47I6H,P6LJ,Hallway,5,7,Yes,\"A person is smiling as the person removes their shoes. Then, closing the door, the person reaches to turn the light on.\",door;light;shoe,\"A person took off shoes, shut the door, then turned on the light.\",c104 12.00 17.90;c057 2.20 10.50;c006 6.40 15.80,18.62\r\n9PP4V,5LWB,Stairs,6,7,Yes,\"The person noticed the usual inhabitants on the stairs - a book, a picture - and started sitting and playing with a phone.\",phone,The person is descending a flight of stairs. Then sits down at the foot of the stairs and begins typing on what appears to be a cell phone.,c151 11.10 17.30;c018 11.30 16.00;c016 13.90 32.00;c015 12.80 32.00,31.12\r\nA6GZT,8718,Dining room,6,7,Yes,The person sitting down was eating the delicious food that was inside the box that was on the table in from of them.,box;chair;food;table,A person is sitting at a table eating out of a box.,c044 0.00 29.00;c011 0.00 29.00;c063 15.90 26.00;c156 2.90 29.00;c059 0.00 29.00;c040 0.00 29.00;c061 0.00 29.00,28.17\r\nKJ8G2,KFGP,Laundry room,6,7,Yes,A person is opening laundry detergent.  Then a person is taking clean clothes out of hamper and putting them on a table.,clothes;container;cup/glass/bottle;table,\"A person opens some container on top of a laundry machine. They then take clothes and fold them, then place them on a table.\",c000 15.10 19.90;c001 14.20 19.90;c009 5.20 10.40;c107 0.00 10.30;c002 14.40 31.00;c004 14.70 31.00,29.96\r\nBLW4G,1OHU,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person in the entryway is undressing in front of a mirror. They stop, smile at the mirror and sneeze.\",hat;mirror;shirt,someone taking their hat off and looking into a mirror;A person takes off their hat looks in the mirror fixes their hair and starts to take off their shirt.,,24.54\r\nDM2HW,PO5L,Closet / Walk-in closet / Spear closet,4,5,Yes,\"A smiling person turns on the light in their closet. They take a box, and leave.\",box;light;wardrobe,\"A person turns on he light, walks into a wardrobe and takes a box. They then turn off the light and leave.\",c105 13.60 22.00;c104 5.50 17.50;c043 10.00 17.90,20.88\r\nIN2X5,JVLO,Living room,4,7,Yes,Person is washing doorknob. Another person is looking at funny videos on laptop and laughing.,chair;doorknob;laptop,\"One person is fixing a doorknob, while another person is watching a video on a laptop.;A person is standing in the door way fixing a door knob while another person is at a desk watching a laptop.\",,37.62\r\n34DKM,G6WD,Bathroom,5,6,Yes,\"One person tidies up, throwing things in a box, then grasps a bag hanging on the doorknob.\",bag;bottle;bucket;door;towel;tube;wastebasket,\"This person tidies up a bathroom counter, folds a towel, rearranges a waste bucket, picks up a bag, leaves, and returns.;The person tidied up his bathroom by throwing things away and folding a towel, and then left the room.\",c020 29.30 47.10;c023 29.10 47.10;c037 0.00 27.80;c035 4.80 9.80;c033 5.30 19.10;c034 19.30 24.60,50.12\r\n6BI70,YMXV,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person grabs a doorknob and opens the door, walking into a closet. They look at themselves in a full length mirror and begin dressing into a work outfit.\",clothes;cloths;door;hair;man;mirror,\"a man walking into a room and looking in the mirror.;A person walks into a room, gets dressed, and then checks themselves out.\",c141 1.10 10.60;c008 2.90 11.40;c096 8.40 31.60;c148 13.90 30.00;c097 4.40 10.20;c144 17.00 21.20;c004 7.60 13.60,31.38\r\n2WW04,3VLX,Bedroom,7,7,Yes,One person washes and then closes a folding chair next to a vacuum. Then the person watches something over their shoulder.,chair;desk;towel,A person is cleaning a chair with a towel.;A person in a room cleaning up a chair and them folding it up.,c033 0.00 4.90,32.21\r\nN5895,0KZ7,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person walks into their entryway holding a phone and a box. They watch a video on the phone.,box;phone;stairs,\"A person is walking down the stairs with a box,at the end of the stairs the person pulls out a phone.\",c040 0.00 26.00;c015 3.60 26.00;c018 3.40 8.20;c016 4.70 26.00,24.79\r\n5776I,BYF9,Living room,4,7,Yes,A person holds a picture and then sets it on a table. Another person throws their clothes onto a bed.,blanket;clothes;doorway;laptop;sofa;table,A person is sitting down on the couch with a blanket then places laptop on a table and another person throws clothes on the couch.;a person sits on a sofa using a computer and another person comes in and throws clothes,c000 5.50 13.50;c009 9.60 16.80;c051 0.00 3.60;c123 0.00 6.60;c001 8.30 17.10;c074 12.00 17.30;c003 12.00 17.30;c097 3.30 8.70,16.62\r\nDMI87,D0RU,Kitchen,3,6,Yes,One person washes at the sink with a towel and smiles at another person sitting and working on a camera.,camera;chair;hand;phone;towel,\"A standing, smiling person takes a towel and wipes their hands while another person sits and looks at a camera.\",c015 6.10 32.00;c033 3.40 10.40;c037 0.10 9.50;c152 18.10 25.60;c139 0.00 11.50;c059 4.70 32.00;c035 1.50 7.20;c016 5.20 32.00;c034 13.50 22.10,30.62\r\nNSUHV,BYF9,Kitchen,7,4,Yes,A person is grasping a sandwich in one hand while reading a book and laughing. They take a bite of sandwich and place it back down on the fast food bag.,bag;book;counter;food;plate;sandwich;table,\"A person is reading a book in front of a counter. They then remove a sandwich from a plate on that counter and put it in a bag.;A person reads a book, and then puts a sandwich into a bag on a table.\",c032 0.00 23.00;c067 6.60 21.10;c061 6.00 21.10;c063 8.50 15.30;c062 13.40 19.70;c069 9.00 15.70;c026 0.00 23.00;c068 12.40 17.80,22.25\r\n6VMGZ,5LWB,Bedroom,7,7,Yes,A person is sitting on the bed while folding clothes while another person is holding the remote to the television.,bed;clothes;remote;television,One person is sitting on a bed folding a shirt while another person is standing while changing the channels on a television with a remote control.,c135 0.00 21.30;c132 0.00 29.00;c004 0.00 21.60;c000 7.00 21.20,28.08\r\nBPDTY,3VLX,Garage,6,7,Yes,Person is walking to the shelf. They grab a bag from the shelf and laugh as they open it.,bag;shelf,A person takes a bag from a shelf. The person opens the bag and laughs at it.,c020 6.80 20.80;c021 11.10 18.70;c152 9.70 21.00;c023 6.60 18.50,19.62\r\nTWLUH,ID9V,Living room,6,7,Yes,\"One person with a cup of coffee opens a laptop at a desk, watches something and laughs.\",cup;laptop;table,A person is taking several drinks from his cup and watching something on his laptop,c048 0.00 6.80;c011 1.60 30.00;c106 2.30 27.50;c151 0.00 6.90;c047 0.00 6.90,28.88\r\nMFSGO,KFGP,Bathroom,5,7,Yes,\"One person grasps a pair of shoes, laughs and opens the window in the bathroom.\",shoe;window,A person walks into the bathroom and picks up their shoes before leaving the bathroom.,c053 4.30 22.50;c089 10.00 19.20;c090 9.90 17.60;c056 3.10 8.20,22.42\r\nM0QER,D0RU,Bathroom,6,7,Yes,A person is in the bathroom sitting on a chair reading a book.  The person puts the book down and grabs a broom to sweep the floor.,book;broom;chair;cleaning supplies;floor;stool;toilet,A person sits down on a stool in the bathroom and reads a book. The person then gets up and cleans the toilet.,c026 0.00 47.00;c032 0.50 45.10;c059 0.00 44.20;c151 0.00 3.60;c154 38.90 44.50;c116 42.10 47.60;c027 0.00 45.40;c025 37.40 47.90;c127 50.80 55.40;c028 42.10 47.30;c102 45.20 62.90,62.42\r\nRQJWI,2RTW,Kitchen,6,6,Yes,A person is throwing dishes into the sink. Another person is eating at a table.,chair;cup/glass/bottle;dish;food;sandwich;shelf;sink;table,A person is sitting at the table. A person then goes to the sink and start cleaning the dishes.,c119 0.00 27.80;c156 0.00 32.00;c011 0.00 32.00;c081 0.00 3.70;c120 4.20 10.50;c118 0.00 11.70;c082 0.00 32.00;c111 0.00 32.00;c065 0.00 32.00;c067 0.00 32.00;c059 0.00 32.00;c061 0.00 32.00,30.75\r\n7S3KW,2RTW,Kitchen,6,6,Yes,\"A person is sitting on the floor opening a box. Another person is walking around them, using a broom.\",box;broom;floor;laptop,A person is sitting on the floor in their living room looking through a small box. A second person is using a broom to sweep the floor.;There is a person sweeping the floor in this video. There is also another person sitting on the floor looking into the contents of a box.,c098 0.00 32.00;c039 26.80 32.00;c041 0.00 4.30;c127 0.00 32.00;c102 0.00 32.00;c125 0.00 32.00;c052 2.90 30.70,30.62\r\nUSXHZ,2RTW,Living room,6,6,Yes,A person is laughing and watching another person leave holding a bag and laptop.,bag;door;floor;laptop,Person A is sitting down on a sofa while Person B is  walking out the door holding their latptop and a backpack.;A person with a backpack opens the door to enter a living room where another person is watching TV.   After standing there for a minute the person continues walking and exits using a different door.,c020 0.00 18.70;c047 0.00 18.70;c097 4.00 17.00,30.25\r\nAQ3CP,5LWB,Bedroom,4,4,No,\"A person is snuggling a pair of shoes in the doorway of an office/study, while another is standing and undressing.\",chair;clothes;doorway;shoe,\"A person is sitting on a chair and puts on their shoes. Another person takes off their jacket.;Person sitting in a chair , put on some shoes, another person take off some clothing then walk away\",c155 21.40 31.00;c000 25.90 32.80;c059 0.00 3.30;c055 0.00 18.40,32.29\r\n3LLSZ,YMXV,Bedroom,4,6,Yes,One person walks in with a book to find another person behind the door undressing.,book;door,\"A person is walking around reading a book, and another person comes in the room and flexes.\",c026 0.00 22.00;c032 0.00 22.00;c097 18.60 29.30,31.71\r\n5AHQV,2Q9D,Garage,6,7,Yes,\"A person runs into the garage, turning on the light. The person throws a pillow into the corner and leaves.\",bag;door;floor;light;pillow;stairs,\"The person  came in  angry trew a bag over his head ,trew the bag down and walked out;A person goes into a storage area carrying something, angrily turns on the lights and carries a pillow downstairs. Then the person angrily swings the pillow around and throws the pillow on the floor. Then the person stomps back up the stairs.\",c104 0.10 4.80;c076 0.00 8.80;c080 6.30 14.60;c008 18.90 24.90;c141 1.30 6.60;c126 8.60 15.00;c097 0.00 6.30,26.17\r\nUJXLL,PO5L,Closet / Walk-in closet / Spear closet,1,6,Yes,\"A chair is outside the doorway of the closet, a person is standing in the doorway then starts tidying the clothes on the floor throwing them into a basket a few feet away.\",chair;clothes;doorway;floor;wardrobe,A person takes some clothes off a chair and throws them threw the doorway on to the floor in front of a wardrobe.,c126 6.60 13.40;c000 4.40 14.40;c001 8.40 16.20;c002 2.00 16.10;c003 6.60 25.80,29.54\r\n30LGT,JVLO,Living room,5,7,Yes,\"A person in the living room is sitting by the bed, reading a book while drinking some coffee. They start putting all items down and leaving room.\",book;cup;dish;floor;glass;magazine;window,\"While seated on the floor, a person is reading and browsing through a magazine or brochure while having a sip of his drink. Afterwards, the person stands up and walks out of the room and toward a doorway that leads outside.;The person sat on the floor reading a book and drinking from a glass. They then got up and walked to the window to look out.\",c118 3.90 13.10;c107 6.00 15.40;c026 10.40 17.60;c154 14.30 29.20;c125 0.00 18.00;c025 20.30 25.30;c032 0.00 13.60,32.58\r\n4VODV,XOIK,Hallway,6,6,Yes,Upon awakening in the hallway a person closed the bedroom door. The person began to undress before eating a sandwich out of the box.,box;clothes;door;floor;food;pillow;pizza;sandwich;shirt,\"A person appears to be asleep on the floor.  The person then wakes up, walks into the kitchen, closes a door to another room, then takes off their shirt and begins to eat a slice of pizza from a box on the stove.;A person who is lying on the floor awakens, takes off their shirt and gets some food.\",c065 29.90 36.00;c146 0.00 15.60;c124 0.00 10.30;c063 27.60 34.20;c000 24.80 30.20;c044 28.50 34.10;c003 26.00 30.40;c061 29.70 36.00;c041 25.80 32.50;c155 21.20 29.10,35.17\r\n74Q66,T7C3,Home Office / Study (A room in a house used for work),6,7,No,A person holding a pillow are seen going into their home office.  They are drinking some coffee while using the vacuum.,coffee;cup;floor;pillow;vacuum,\"A person is holding a pillow and mug, using a vacuum on the floor of their study. The person pauses for a moment to take a drink from his mug, then continues to vacuum.\",c076 0.00 26.00;c106 12.00 18.40;c107 0.00 26.00;c137 0.00 26.00;c127 0.00 26.00,24.96\r\nSCCZG,ZAWX,Living room,6,7,Yes,A person is seen holding a box with shoes in it. They start watching themselves in the mirror.,box;mirror;shoe,A person is holding a box with shoes in it. A person then walks to a mirror and starts looking at themselves.,c040 0.00 19.00;c053 4.00 19.90;c096 17.30 31.90,30.62\r\nTKWJB,T7C3,Kitchen,6,6,Yes,\"A person is running towards the stove they had left on.  They turn it off, turn around, walk to the table, and grasp some food.\",can;food;plate;sandwich;stove;table,\"A man walked to a stove, touched a dial, walked over to a counter, picked up a can, then picked up a sandwich and took a bite.;A person grabs a sandwich and takes a bite.\",c061 14.10 23.50;c065 22.10 31.40;c067 14.10 23.50;c156 22.10 31.40;c063 13.70 18.70;c062 18.10 23.20,32.08\r\nO1ILB,YA10,Garage,7,7,Yes,\"A person comes running into the garage, throws some medicine in the trash, grabs a laptop off a counter and runs out.\",bucket;laptop;shelf;something,\"A person walks into a garage and throws something into a bin.  That same person then picks up an open laptop off a shelf, closes it and walks way.;A person runs into the garage, throws something in a bucket, picks up a laptop from a shelf, closes it and then runs back out.\",c046 10.90 15.70;c047 8.90 17.00;c050 11.20 17.80;c150 12.40 18.00,26.54\r\nIXISD,CO1W,Living room,6,7,Yes,A person is laughing while watching television.  The person is putting their shoes on the floor and their feet on the coffee table.,floor;shoe;sofa;table;television,\"A person sits on a sofa watching television. They laugh, take off their shoes, leaving the shoes on the floor, and put their feet up on the table.\",c009 12.90 18.70;c149 3.90 13.10;c131 3.60 18.40;c057 8.20 13.50;c123 0.00 31.00;c132 0.00 31.00;c054 10.70 15.60,30.25\r\n0RROG,HR43,Living room,4,7,Yes,\"A person is fixing a light. They walk to the sofa, grab a pillow, and start hitting the light with it.\",light;pillow,Person putting up lights checking the ones that are out before getting frustrated and getting a pillow to hit them with.,c103 0.00 10.60;c076 14.90 18.90,27.38\r\n3LLDC,HJJ4,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person runs into their home office, carrying a bag and some shoes. The person sets those items down, then leaves.\",bag;shoe;table,A person comes in to a room and sets a bag and shoes on a desk .The person proceeds to turn and walk away .,c053 0.00 5.40;c054 0.00 5.60;c020 0.00 6.40;c022 1.50 6.80;c150 0.00 4.00;c009 0.00 7.70,7.21\r\n5HWX0,C7O9,Living room,4,6,Yes,A person sitting in the living room with a plate of food and a glass. Another person walks in with a box and sneezes on the first person's food.,box;food;sofa/couch;television,A person is watching television when another person walks in carrying a box and sneezes on some food.,c040 16.00 32.00;c153 17.70 30.40;c123 0.00 32.00;c132 0.00 32.00,30.67\r\nX00I8,C7O9,Home Office / Study (A room in a house used for work),6,6,Yes,One person is snuggling with a book on a chair in the laundry room. Another person runs in drinking and watches the first person,book;chair;coffeee;cup;dish;doorway,A person walks into a room holding a cup of coffee and drinking it.  Another person sits in a chair reading a book.,c059 0.00 30.00;c026 0.00 30.00;c032 0.00 30.00;c107 0.00 30.00;c118 0.00 30.00;c106 3.70 12.00;c097 0.00 3.50,29.29\r\nZBBP9,C7O9,Bathroom,6,6,Yes,\"One person pours something down the bathroom sink, then starts to sneeze. Another person is using a vacuum.\",cup;floor;sink;vaccuum;vacuum;water,\"A person pours water into a sink while sneezing, while another person vacuums.;One person is vacuuming the floor. Another person is standing by a sink pouring liquid out of a coffee cup and sneezing. A third person walks over and starts talking to the third person.\",c137 0.00 30.00;c153 0.10 30.00;c127 0.00 30.00,29.46\r\nU2FA5,YA10,Garage,3,7,Yes,\"A person begins washing their bag, then starts working on a laptop\",bag;chair;floor;laptop;towel,\"This person is in the garage wiping something off. Person then sits on chair and starts using their laptop.;A person is in a garage washing down a bag with a towel, they then sit in a chair and begin working on their laptop.\",c047 15.40 31.00;c050 15.20 22.50;c052 18.10 31.00;c154 11.50 18.60;c038 0.00 16.20;c024 11.90 16.80;c048 17.30 31.00;c051 17.60 31.00;c151 13.90 21.00;c059 16.40 21.60;c126 10.00 16.20,30.00\r\nXJH5D,ZAWX,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is sneezing while trying to dial a number on a cell phone.  Then a person is putting a towel on a counter because it had fallen on the floor.,desk;doorway;floor;phone;table;towel,\"This person is playing on their phone, then they sneeze, and then they pick up a towel off the floor.;A person is standing in a doorway using their phone then sneezes, and picks up a towel off the floor and puts it on a table.\",c016 0.00 16.70;c035 16.50 24.50;c015 0.00 16.30;c034 23.60 31.00;c009 25.80 30.80;c037 16.10 30.40;c127 16.10 30.40;c036 25.20 31.00;c033 15.90 30.20;c153 9.10 14.10,30.29\r\nN7ZBM,D0RU,Living room,7,7,Yes,\"A person can hold a blanket in the living room, A person can throw a broom in the living room.\",blanket;broom;towel,\"A person holds a blanket and picks up a broom and begins sweeping, they then throw the broom on the floor.\",c070 0.00 31.00;c098 6.10 13.00;c101 8.80 13.60;c075 22.50 31.00;c154 7.50 12.40;c033 0.00 31.00,30.46\r\nU6XPZ,1TZV,Stairs,2,7,Yes,\"A person puts a coffee down on a stool and walks up the stairs, carrying a box. They notice a crooked picture on the wall on their way up and take a moment to fix it.\",box;coffee;cup;picture,\"A person is standing on some stairs drinking coffee, they then set the coffee down on a chair and begin to walk up the stairs holding a box. They see a crooked picture on the wall and begin to fix it.\",c040 0.00 26.00;c088 9.10 26.00;c106 0.00 10.60;c107 0.00 9.10;c109 1.00 7.50;c083 10.30 26.00,24.79\r\n2ZTNY,UTMU,Stairs,7,7,Yes,\"A person approaches the bottom of an indoor staircase, holding a book and a blanket.  The person lies down with their back to the floor and puts their head on the bottom stair using the blanket as support.  The person then holds the book up and reads for a moment.\",blanket;book;floor,\"A person puts a blanket onto the stairs, lies on the floor and reads a book.\",c032 9.10 27.00;c124 9.00 27.00;c071 0.00 9.10;c151 0.00 11.30;c025 23.10 27.00;c026 3.80 27.00;c027 9.50 26.80,26.08\r\nTF6P8,KFGP,Closet / Walk-in closet / Spear closet,6,6,Yes,A smiling person is taking a box of clothes and throwing them into their closet. They take a picture in the closet and take it out.,box;closet/cabinet;picture,\"A person puts a box in a closet, then finds a picture in the closet, closes the closet door and walks away with the picture.\",c042 4.80 14.00;c083 13.30 19.40;c113 3.50 25.00;c112 21.00 26.00,27.54\r\nYUOQW,PKND,Stairs,5,1,No,A person is throwing food while another person is smiling at a picture.,bag;food;phone;picture,\"A person is sitting a smiling at a phone. Another person is holding a bag of groceries in the doorway.;A person is holding a phone, looking at a picture and smiling and laughing. Another person is standing behind with a bag.\",c085 0.00 34.00;c152 0.50 20.60;c020 0.00 34.00;c149 16.60 34.00;c084 2.40 11.60;c061 28.70 34.00;c015 4.90 12.40;c088 4.50 33.20,33.25\r\n4ETXZ,68KL,Bathroom,4,7,Yes,\"A person is standing in the bathroom, the light is off. The person walks over to the light, turns it on, picks up the blanket from the floor and walks out.\",blanket;floor;light,A person walks into a bathroom and turns the light on. They grab a blanket and walk out of the room.,c070 16.20 27.00;c104 10.20 15.40;c073 13.50 20.00,26.50\r\n9GA3H,CCI9,Stairs,5,6,Yes,One person is tidying the stairs with a broom as another person drinking from a glass starts sneezing.,broom;cup;glass,\"Person is sweeping stairs with broom, another person is standing on stairs drinking coffee and sneezes.\",c102 0.00 32.00;c106 0.00 32.00;c153 19.10 25.40;c107 0.00 32.00,30.92\r\n3CAPI,YMXV,Bedroom,6,7,Yes,A person is throwing clothes everywhere then begins to smile and they see a blanket.,blanket;clothes;cloths;floor,A person throws come clothes on the floor and bed.;A person throws cloths on the ground. And then they pick some up and start to fold them.,c003 3.70 10.50;c074 29.10 34.00;c126 1.40 6.90;c003 6.40 12.30;c001 0.00 12.80;c000 0.00 13.00;c071 14.10 33.90;c070 14.70 33.90;c075 14.50 33.90,32.71\r\nN14BK,UTMU,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is in a office tidying up with a vacuum, they then take their homework and place it into a bag.\",bag;floor;homework;paper;vacuum,A person vaccuum's their office.  They then put a notebook in a bag.,c137 0.00 26.00;c021 35.00 42.10;c116 39.30 45.00;c127 0.00 28.10;c020 38.10 43.30;c115 32.20 38.10;c022 38.60 45.40;c023 32.70 39.50,47.46\r\n9MOH2,8718,Bathroom,6,7,Yes,A person opens the cabinet and grasps some medicine from inside.,cabinet;doorway;medicine,A person is walking through a doorway then opening a medicine cabinet and holding a medicine bottle.,c113 5.70 16.60;c128 16.00 31.00;c097 0.00 9.20,29.50\r\nOB1XO,2Q9D,Bedroom,6,6,Yes,\"A person is dressing in their bedroom. They throw their pajamas in the hamper. The person puts on their shoes, grabs, their phone, and leaves.\",bed;clothes;doorknob;doorway;phone;shoe,A person is getting dressed while sitting on a bed before leaving.,c055 19.70 31.40;c148 0.00 20.10;c135 0.00 32.90;c097 33.30 38.00;c000 0.00 5.70;c002 0.20 7.20;c141 32.10 38.00;c154 28.90 33.80;c003 16.90 22.20,36.96\r\n9N44Y,HJJ4,Pantry,6,7,Yes,A person looks in the cabinets and smiles. They grab a picture from a shelf and snuggle it to their body.,box;cabinet;food;man;shelf,The person in the video opened the cabinet and grabbed a small blue box out. Then the person put the box to their chest and closed the cabinet. Lastly the person walked away.;A man taking something out of a cabinet and then hugging it.,c112 12.00 17.50;c113 0.00 5.20;c063 4.20 16.20,17.42\r\nR1B8I,KQI6,Entryway (A hall that is generally located at the entrance of a house),5,1,No,a person fixes their wardrobe closet. another person stands near a window and holds a broom.,broom;doorknob;window,This person is trying to break a lock while a woman watches.,c098 15.80 32.20;c140 0.00 18.30;c141 11.20 18.10;c092 15.60 32.20,37.04\r\nYPIKO,L4ZP,Living room,6,6,Yes,A person is smiling at the food and another person is pouring a drink at on the cabinet.,bottle;chair;drink;food;glass;television,\"A person is sitting, eating a watching television. Another person walks into the room and pours themselves a drink.;A person is sitting in a chair eating food while watching television, then another person enters the room and pours soda into a glass before leaving again.\",c061 30.70 35.70;c132 0.00 28.10;c156 3.00 9.10;c132 29.60 35.50;c059 29.60 37.00;c108 13.70 27.30;c107 8.00 33.60,35.62\r\nNHXI3,KQI6,Living room,6,6,Yes,A person smiles and takes a book from the table in the entryway before running away to another room.,book;cabinet;chair;doorway;light;sofa/couch;table,\"A person got up from a chair, grabbed a book and went into a different room and turned on the light.;A person is sitting in a chair in the living room and then opens a drawer under the table and takes out a book. The person then gets up from the chair, walks toward a doorway, stops and walks through another doorway and turns on the light. Then the person turns around a looks behind them self twice. The person then walks into the room which has the light on.\",c026 7.60 33.00;c154 9.20 15.00;c104 24.20 29.20;c113 4.00 10.90;c097 21.60 27.60;c059 0.00 13.50;c123 0.00 14.00;c030 4.50 13.40,31.58\r\nVX39P,Z68L,Bathroom,6,6,Yes,\"A person is tidying their bathroom. They close the window, and start scrubbing the doorway.\",doorway;towel;window,\"Person is cleaning the bathroom. Person is organizing items. Person closes the window, and wipes the door clean.\",c097 0.00 5.10;c089 25.30 34.10;c038 34.10 48.00,47.08\r\nNY8P3,ZAWX,Dining room,7,7,Yes,A person is working with a broom and then grasping a phone in the dining room.,broom;phone,A person is sweeping the floor and checking their phone.,c015 17.80 32.00;c102 0.00 21.20;c018 17.30 22.10;c016 18.60 32.00,30.62\r\nRYK18,YMXV,Bedroom,3,7,Yes,\"A person is in a bedroom sitting on a chair, they then start undressing from their clothes before turning off the light.\",chair;clothes;ligh,A person sits down and begins to undress then turns off a light.,c059 0.00 5.00;c105 28.20 33.00;c151 0.00 5.30;c155 16.40 30.20;c154 14.00 19.60;c003 25.50 30.50,31.58\r\n7FLXE,ZSRZ,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,\"A person is sitting on a blanket doing homework, crumpling up pieces of paper and throwing them.\",blanket;floor;homework;notebook;paper,\"A frustrated person is sitting on a red blanket  on the ground while working on homework. Clearly frustrated, the person rips the page out of the notebook, crumples it, and throws it against the wall.\",c115 0.00 14.80;c145 0.00 10.80;c125 0.00 15.00;c126 9.90 15.00,13.71\r\nDP1TV,ZSRZ,Pantry,6,6,Yes,\"A person is playing with a sandwich, and it lands on a shelf. They grasp the sandwich, but then sneeze.\",food;sandwich;shelf;towel,A young person tidying up stuff on shelves and laughing at an object;Person is moving around a sandwich and a paper towel before tossing it onto a shelf in the pantry and sneezing.,c067 0.00 7.50;c068 3.50 7.60;c081 3.50 7.60;c153 5.20 10.00;c037 0.00 7.10;c149 5.20 10.00;c062 2.90 7.60;c061 0.00 7.50;c152 6.70 10.00,9.12\r\nRSFII,D0RU,Dining room,6,6,Yes,\"A person runs to the window quickly and closes it. The person then walks to the cabinet, where they take something from the shelf.\",cabinet;doorknob;shelf;window,A person runs into the room and closes the window and then the door. The person takes something off of a shelf.,c082 25.30 35.70;c089 9.00 18.90;c114 28.80 37.00;c141 17.60 23.40,35.58\r\n6I0IH,2RTW,Living room,6,6,Yes,\"A person is sitting in their study as they talk on the phone. With the other hand, the person holds a piece of food.\",chair;coach;food;phone;table,A person is on their phone while sitting at a desk they have their foot on the couch and are rocking in their chair while eating a sandwich.;A person is sitting down and talking on the phone. Then they put their feet on the coach.,c019 0.00 30.00;c061 0.00 30.00;c011 0.00 30.00;c059 0.00 30.00,29.04\r\n618HP,XXN8,Home Office / Study (A room in a house used for work),4,7,Yes,A person is sitting a the table. The stand up and turn off the light before leaving.,doorway;light;table,person sitting on chair jumps up turns off light,c105 0.00 3.50;c154 15.20 21.20;c097 20.00 25.50,29.54\r\nNEE6E,0KZ7,Kitchen,7,7,Yes,A person is smiling at a picture on a desk while another person is awakening on the floor.,book;carpet;floor;picture;wall,A person  looks at a picture on a cabinet and laughs while a different person sits up from a blanket on the floor.;Two people one is  standing up talking into a tablet and the  other person laying on a carpet on the floor and then sit up.,c124 0.00 19.80;c125 25.00 29.00;c085 0.00 6.30;c152 0.00 5.70;c088 0.00 29.00;c146 14.90 29.00;c029 0.00 29.00,28.38\r\nHI81L,T7C3,Kitchen,6,7,Yes,\"Person is sitting on floor wrapped in blanket, then takes medicine out of box and starts laughing.\",blanket;bottle;box;floor;food;medicine,\"A person is sitting on the floor with a blanket.;A person is sitting in the middle of a kitchen with a blanket covering them. The person opens a small box and remove the contents. The person looks at a bottle, smiles and laughs.\",c040 0.00 6.80;c041 2.80 9.50;c128 6.20 12.00;c128 2.80 9.50;c125 0.00 6.60;c149 9.60 18.00;c152 9.60 18.00;c061 0.00 36.00;c072 0.00 36.00;c124 0.00 36.00,35.42\r\n7Z2KR,ID9V,Living room,,7,Yes,A person is laughing as they sit on a sofa. The person is watching the back of a medicine bottle.,chair;medicine;sofa,A person is sitting down holding a medicine bottle and holding their dogs face.,c123 0.10 27.00;c151 0.00 4.90;c128 0.00 27.00;c059 0.40 27.00,26.38\r\nD8OSC,JBB5,Bedroom,4,7,Yes,A person is seen taking a broom from a closet. They begin laughing as they accidentally drop their broom on their bed.,bed;broom;doorknob;doorway;floor,A person enters the room and closes the door. They pick up a broom and then throws it on the bed and starts laughing.,c098 1.30 7.40;c101 5.90 11.10;c149 7.10 17.90;c097 0.00 4.20;c127 3.70 9.20;c141 0.00 4.80;c100 0.60 10.90;c152 6.10 29.00;c099 5.40 10.90,27.79\r\nFC2TJ,Z68L,Bedroom,6,7,Yes,\"A person is alternately working with a vacuum and broom, walking around the bed while grasping one and holding the other.\",bed;broom;door;floor;vacuum,A person walks through a door with a vaccuum which the person uses on a bed as the person sweeps the floor at the same time.;A person walks through a door and vacuums around the bed.,c137 14.20 38.70;c127 7.90 38.90;c097 1.00 6.30;c138 4.00 41.80,43.08\r\nDZNYK,YA10,Bathroom,5,7,Yes,A person grasps a box from the cabinet. The person opens the box and laughs.,box;cabinet;counter;door;floor;shelf;table,\"A person is in a bathroom getting a box out of a cabinet,after opening it the person burst out laughing.;The person removes a box from a cabinet and almost drops it, then places it on the counter, opens it to view the contents and laughs at what is inside.\",c040 4.30 14.60;c041 11.90 21.60;c043 0.70 9.30;c113 0.00 4.10;c149 17.80 29.00;c154 2.20 10.80;c009 9.20 15.30;c081 8.80 15.50;c112 7.10 13.20;c125 0.70 9.30;c152 17.50 29.00;c151 0.00 5.20,28.04\r\n20NI0,XXN8,Closet / Walk-in closet / Spear closet,3,2,No,A person is washing a shelf.  Then a person is taking homework and a broom out of the entryway.,broom;homework;paper;shelf,A person is tidying some shelves and picks up some homework.  The person looks at the homework and picks up a broom.  The person puts the homework and broom down.,c116 26.20 33.00;c117 11.60 20.10;c082 0.00 12.20;c115 13.40 31.50;c099 18.60 27.10;c098 18.60 26.90;c081 26.60 31.60;c100 18.60 26.90,32.12\r\nOELNE,SX9Y,Bedroom,3,6,Yes,\"A person closes the frame of a picture, looks in the bedroom mirror, and leaves the bedroom.\",doorway;mirror;picture,A man is frustrated with a picture and throws it aside and then checks himself out in the mirror and scratches his chin before walking out of the room.,c096 4.70 15.70;c084 0.00 8.20;c086 4.00 8.50;c088 0.00 8.20;c097 12.50 17.70,24.33\r\nI6NJ6,HRH1,Bedroom,7,7,Yes,A person awakens in bed. They sit up and start to dress from a pile of clothes on the floor.,bed;blanket;clothes;floor;pants;pillow,\"A person is lying on the bed. A person then wakes up and puts on their pants.;A person jumps on a bed and lies down, covered with a blanket. A person then stands up, puts on shorts (found on the floor), and walks out of the room.\",c134 0.00 9.40;c148 13.50 22.30;c154 9.30 15.20;c072 0.00 8.00;c146 4.70 13.40;c133 4.70 13.40;c074 4.10 10.50;c002 13.70 19.60;c078 4.90 10.50;c073 0.90 6.20,23.71\r\nHMLJX,PKND,Bedroom,5,5,Yes,\"A person is lying in bed, working on their laptop. The person stands up and moves to a table, where they continue working.\",bed;chair;desk;homework;laptop;paper;table,A person sits on a bed using a laptop. The person then moves over to a desk and writes on a piece of paper.;A person working on their laptop on their bed gets up and goes to a desk. They sit down in a chair and star working homework.,c052 0.00 17.10;c134 0.00 12.30;c154 11.90 18.60;c151 15.50 21.40;c059 17.00 34.00;c011 16.20 34.00;c145 29.80 34.00;c116 22.00 27.30;c145 23.30 34.00;c117 21.30 28.20;c115 21.30 34.00,33.08\r\n9MOQ7,BYF9,Bedroom,7,7,Yes,\"A person can sneeze into a towel in their bedroom, A person can wash their vacuum in their bedroom.\",bed;shoe;towel;vacuum,\"A person is sitting in bed and sneezing. The person gets up and puts their shoes on. Next the person begins to wash a vacuum with a towel.;A person is sitting on a bed sneezing, they then get up, put their shoes on and begin to clean a vacuum.\",c033 19.90 33.00;c153 0.00 8.30;c154 12.20 18.30;c135 0.00 16.30;c055 13.90 20.20,32.12\r\nRXIAX,DXDI,Bedroom,7,6,Yes,\"Person is walking to box to put groceries in there, then starts closing box and starts sneezing.\",bag;bed;box;groceries,A person walks into a bedroom and places a bag of groceries on the bed. The person bends down and touches a box that is sitting on the floor.;A person puts a bag down on the bed and then looks at a box that is sitting on the floor.,c020 3.30 14.30;c130 8.90 14.80;c022 5.60 11.40;c153 12.80 23.50;c039 10.40 27.00,26.33\r\nUZIQS,OUKK,Laundry room,4,7,Yes,\"A person is watching their clothes wash in the washing machine from the doorway. The person takes a towel from a rack, folds it, and puts it into a cabinet.\",cabinet;chair;shelf;towel,\"A person takes a towel from a chair, folds it, then puts it on a shelf.;A person is taking a towel off of a chair and putting it in a cabinet.\",c034 22.70 31.00;c035 13.40 21.20;c037 17.20 28.10;c081 22.90 31.00;c033 14.00 27.50,29.71\r\n7VZ5M,D0RU,Home Office / Study (A room in a house used for work),5,7,Yes,A person drinks while sitting in a chair near a laptop. The same person then gets up from the desk and leaves.,chair;cup/glass/bottle;desk;drink;laptop;table,A person was drinking something while walking toward a desk that held a laptop. The person sat down and looked at something on the laptop before opening and closing a desk drawer. The person continued to drink and look at the laptop for a little while longer before standing up and walking away.,c059 2.20 8.30;c051 9.10 23.20;c011 4.30 24.90;c151 3.30 8.00;c154 19.70 24.70;c107 0.00 27.80;c106 5.00 11.40,30.92\r\nZXN6A,2RTW,Living room,6,6,Yes,A person is holding a sandwich and eating it with a glass of milk and some various other dishes around.,cup;dishes;food;glass;sandwich;sofa/couch;table,\"A person is sitting at a table eating a sandwich, and drinking a cup of coffee.\",c106 3.80 12.50;c065 0.00 31.00;c067 0.00 31.00;c156 0.00 31.00;c011 0.00 31.00;c109 4.30 9.90;c063 2.10 7.50;c009 10.10 15.90;c107 4.90 9.30;c123 0.00 4.70;c062 23.80 29.20;c061 7.00 21.70,30.46\r\n4U52R,HR43,Bedroom,7,7,Yes,A person is seen leaving a towel on their bed. They then begin fixing their bed and sit down with a broom,bed;box;broom;clothes;towel,\"A person is taking clothes and throwing them. A person then picks ups a broom;A person is moving clothes around on a bed.  They put a box on the floor, sit on the bed, pick up a broom and start fixing it.\",c098 13.70 30.00;c034 0.00 5.20;c151 14.30 22.50;c001 0.00 4.60;c033 5.20 10.20;c135 16.80 30.00;c042 8.50 15.00;c004 1.40 21.30,29.25\r\n13MWT,2RTW,Kitchen,6,6,Yes,\"A person walking into the dining room kicks off their shoes, sits down and dims the light.\",chair;light;shoe;table,\"A person walks over to the kitchen through the living room, and takes off their shoes before sitting down at a table and turning off a light with a remote.\",c105 15.40 22.80;c054 3.10 11.90;c056 2.80 11.40;c057 2.60 11.30;c059 12.40 32.00;c011 12.40 32.00,30.83\r\nWM8QQ,2RTW,Kitchen,6,6,Yes,Person places grocery bag on the table in the dining room.  Person then pulls food from the grocery bag and puts on the table.  Person then sneezes and laughs at how big the sneeze was.  Person sits down and starts eating the food.,bag;chair;food;groceries;table,\"A person walks into the kitchen with a blue bag full of food. After putting the bag on the table, the person takes some of the food out, sits down, and repeatedly touches their face before eating food from a bag.;A person takes a bag of groceries into a kitchen, takes some out, sits down and starts eating.\",c061 14.20 35.00;c021 25.10 31.60;c130 1.10 8.60;c153 11.80 18.20;c023 23.70 29.90;c009 1.40 13.80;c151 9.20 15.60;c063 0.00 12.40;c021 2.40 9.70;c020 0.00 6.90;c153 10.80 28.40;c022 4.80 11.90;c011 8.70 34.70,34.04\r\nAIYFU,R1OT,Living room,3,7,Yes,A person is sitting in the recreation room drinking juice as watch television. They start sneezing and as soon as they stop they walk over to a table and pick up some medicine and take it.,cup;dish;medicine;picture;table;television,\"A person is watching TV while drinking from a cup. They then sneeze, stand up and walk to a table with medicine on it.\",c132 0.00 18.40;c128 15.10 23.60;c153 3.60 17.10;c154 12.50 18.80;c119 0.00 10.90;c118 0.00 11.10;c009 0.00 11.40;c129 15.60 26.00;c088 0.00 18.40,24.96\r\nOK2TU,P6LJ,Living room,5,7,No,\"A person is tidying up and removing dishes. The person opens the door to take the dishes into the kitchen, smiling at their wife who is standing there.\",clothes;dish;door;remote;shelf;shirt;sweater;table,\"This person starts folding a shirt, puts it down, then grabs the remote and moves it to the desk, picks up a plate, then opens and closes the door.;This person picks up a shirt, folds it, places it on a table, then picks up a plate and opens the door.\",c008 33.50 42.00;c004 11.70 22.50;c006 37.70 46.00;c118 21.20 49.20;c004 1.00 19.00;c009 14.20 23.00;c000 9.20 17.00;c120 15.70 34.70;c001 11.20 18.50;c141 41.00 50.70,49.96\r\nT8XGN,9Y7F,Bedroom,4,7,Yes,One person opens a door and the other person is standing outside the door. The person is standing there holding their shoes.,door;shoe,A person gets up from a bed and opens a door. On the other side another person is waiting holding a pair of shoes.,c008 11.80 17.90;c053 15.10 31.00;c154 7.60 12.80;c152 23.51 31.00,30.04\r\n5NK4L,9Y7F,Bedroom,6,7,Yes,\"A person is tidying up the things in the cabinet. Then, sneezing, the person begins putting clothes into the wardrobe nearby.\",cabinet;clothes;wardrobe,A person retrieves some clothes from their wardrobe and places them in a cabinet.,c113 25.60 31.80;c114 27.30 35.00;c001 0.00 35.00;c004 0.00 33.60;c153 10.10 16.00;c000 8.10 16.60;c002 22.00 34.30,33.58\r\nSRHJV,PKND,Living room,6,6,Yes,A person is sitting on the sofa and eating a snack with a sports game playing in the background. They go to the refrigerator to grab another snack.,chocolate bar;doorway;food;refrigerator;sofa;television;tv,\"Two people are sitting on a sofa watching television, they both get up and one is smiling. They then walk to the refrigerator and begin taking snacks out and start eating them.;person are sitting in the living room watching tv, and suddenly they raise and go to the dining room to eat chocolate.\",c123 0.00 16.50;c156 24.00 33.00;c154 3.00 17.80;c143 17.00 23.00;c061 20.00 33.00;c152 27.00 33.00;c132 0.00 4.60;c097 18.80 24.60,32.25\r\nNZY1U,DXDI,Closet / Walk-in closet / Spear closet,4,7,Yes,\"Person is standing in closet, taking on phone drinking coffee and smiling.\",coffee;cup;glass;phone;wardrobe,\"A person is standing in a wardrobe, talking on the phone and holding a glass of coffee. The person then drinks from the glass.\",c015 0.00 29.00;c019 0.00 23.60;c106 19.90 28.00;c107 0.00 29.00,28.04\r\nZYLTE,ZSRZ,Living room,6,7,No,\"A person walks to the window, carrying a box, and watches something outside.\",box;table;window,\"person comes from somewhere, picks up the box and place it somewhere;A person picks up a box off a table and walks to a window to look out.\",c040 1.90 14.00;c092 6.20 14.00;c043 0.00 6.70,12.75\r\n9XFJX,T7C3,Hallway,6,6,Yes,A person walking through a hallway while grasping a glass leaves a pillow on the floor.,bag;cup;glass;pillow,A person is holding a glass and sets a pillow down.,c076 0.00 16.70;c107 0.00 23.00;c022 9.40 16.70,21.92\r\n9W63D,UTMU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is holding a camera and snuggling the picture.,camera;floor;paper/notebook;picture,\"A person is sitting in a closet hugging a picture, while holding a camera.\",c084 0.00 35.00;c015 0.00 35.00;c125 0.00 35.00;c115 0.00 35.00,33.75\r\n9YNN1,KQI6,Bathroom,6,6,Yes,\"One person is sneezing while tidying a shelf, and another runs in to look in the mirror.\",hair;mirror;shelf;table;towel,Person looking for something on the bathroom shelf when another person comes in and looks at self in the mirror.,c081 0.00 19.10;c082 0.00 18.50;c144 19.90 30.00;c096 20.20 30.00;c033 0.00 25.30;c082 0.00 6.60;c144 4.30 10.40;c096 2.70 10.40,29.42\r\nU5CDS,QRES,Bedroom,7,7,Yes,A person is standing by a window. The person sits in a chair and continues to look out the window intently.,chair;window,A person walked over to a window and looked outside. The person then walked back to a chair and sat down.,c059 5.10 10.90;c092 0.00 14.00;c151 5.10 10.90,13.21\r\nENC45,5LWB,Stairs,7,6,Yes,\"A person is sitting at a desk at the top of the stairs, eating a sandwich and drinking a glass of soda.\",cup;food;glass;sandwich;stairs,\"The person is sitting down on top of a bucket at the top of the stairs, eating and drinking from a glass.\",c065 0.00 13.30;c106 8.80 27.10;c156 0.00 14.00;c061 0.00 28.00;c067 0.00 28.00,26.54\r\nEJPO8,R1OT,Bedroom,6,7,Yes,A person is standing next to a desk holding a broom and a sandwich.,broom;desk;food;plate;sandwich;table,\"A person standing in a kitchen holding a broom, picks uo something off of the table and begins to eat it.;A person holding a broom waves it around as they pick up a sandwich from a plate on a desk and begin eating it.\",c065 3.10 31.00;c067 2.50 31.00;c069 2.10 9.20;c098 0.00 31.00;c009 12.70 22.00;c156 2.10 31.00;c061 4.00 31.00,29.96\r\nP5JRJ,0KZ7,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person in a closet is snuggling a blanket and grasping a book they wouldn't likely share with their family or friends.   They begin to walk out of the closet, towards their bed.\",bed;blanket;book;floor;wardrobe,Person with a blanket is sitting on the floor reading a book in front of the closet gets up and go lay on the bed.,c026 0.00 25.00;c032 0.00 25.00;c134 22.00 25.00;c070 0.00 19.30;c125 0.00 19.10;c072 0.00 20.40,24.46\r\nO8DER,ZAWX,Pantry,7,7,Yes,A person is seen laughing while talking on the phone. They begin tidying up the counter to put groceries on top of it.,box;chair;groceries;phone;shelf,\"A person is sitting in a chair talking on the phone while smiling.  They stand up, walk to a shelf and put a box on it.;A person sitting in a chair answers a cell phone, has a brief conversation on the cell phone then gets up from chair, walks over to a pantry and puts a box on the shelf. The person then straightens out some items on the shelf.\",c019 0.00 18.30;c154 16.70 22.60;c059 0.00 20.60;c082 22.30 32.00;c152 4.00 17.80;c015 0.00 20.00;c149 5.10 12.90;c081 21.70 28.60;c040 21.80 28.40;c043 17.20 24.40;c039 24.60 32.00;c017 16.40 21.00;c042 18.60 28.60,30.67\r\n0LNLR,XXN8,Living room,5,7,Yes,The person takes off their shoes and then sits on a sofa. They then lay down on the sofa.,boots;dog;sofa,\"A person walks to their couch, sits down and takes off their boots. They lay back on the couch to relax and their dog jumps on them and they pet it.\",c122 9.90 22.80;c123 1.90 13.90;c151 0.80 5.90;c154 21.60 31.00,29.62\r\nDPBID,8718,Basement (A room below the ground floor),7,7,Yes,The person is drinking water while snuggling on the basement sofa and doing homework.,book;cup;dish;hair;paper;pen;sofa,\"a person writing in a note book while holding a cup, takes a sip from the cup\",c123 0.00 31.00;c145 0.00 31.00;c106 0.00 13.20;c115 0.00 31.00;c144 12.00 16.90;c118 0.00 31.00;c026 0.00 31.00,30.08\r\n6N7G6,FASF,Dining room,5,6,Yes,\"A person puts their dish on the table, then sits down and covers themselves with a blanket.\",blanket;chair;dish;food;table,A person sits at the table with a plate of food. They then wrap a blanket around themself.,c119 0.00 4.40;c011 0.20 7.30;c072 18.10 35.00;c151 0.20 7.30;c009 0.00 4.70;c062 0.00 4.70;c070 11.60 35.00;c059 0.10 35.00;c061 0.00 7.50;c073 14.10 32.60;c063 0.00 8.90,34.29\r\nMX0CO,DXDI,Pantry,5,7,Yes,A person is standing by a vacuum.  They begin drinking water and pick up some dishes.,counter;dish;glass;table;water,A person picks up a glass from a counter and drinks from it before putting it down.  They then walk to a table and pick up dishes and leave.;A person is drinking a glass of water. A person then picks ups some dishes and walks away.,c106 0.00 6.80;c118 0.90 5.40;c120 0.00 5.20;c119 9.30 14.80,20.50\r\n250SN,HR43,Home Office / Study (A room in a house used for work),4,7,Yes,\"A person opens the door and runs into the room. The person takes a pair of shoes from under the window, and runs back out.\",door;shoe,A person is walking through a doorway. The person grabs a pair of shoes and puts them on. The person goes through the doorway and closes the door behind them.,c006 13.40 21.00;c008 1.50 6.20;c055 6.50 15.00;c150 11.60 17.20;c097 2.10 6.70;c053 5.20 10.00;c054 4.00 10.50;c056 4.00 10.50;c141 0.60 5.70;c053 0.00 3.60;c054 0.00 4.30;c056 0.00 3.40,19.96\r\nPW9P0,HJJ4,Home Office / Study (A room in a house used for work),6,7,Yes,A person is undressing in a home office then watches something out a window next to a picture.,chair;cloth;jacket;window,The person siting down took off jacket without standing up.;A person is sitting down undressing and looking out the window.,c092 6.30 14.00;c155 0.00 6.50;c155 2.50 10.30;c001 4.80 9.20;c000 2.70 9.00,13.21\r\n8NS1G,D0RU,Bedroom,6,6,Yes,A person stands in the closet with their hair wrapped in a towel. They pour a glass of milk then eat a sandwich.,cup;food;glass;hair;sandwich;shelf;towel,A person is drying their hair and looks at a shelf. The person pours a drink and takes a bite of a sandwich.,c108 15.30 25.50;c033 4.10 32.00;c065 24.70 31.00;c156 24.70 31.00;c081 15.00 26.50;c063 24.20 30.70;c061 24.20 32.00;c107 14.10 25.10,31.12\r\n6JKD6,Z68L,Bathroom,7,5,Yes,A person is standing in the bathroom opening a box and putting a mirror into the box.,box,A person enters a bathroom and takes something out of a box. They then put something back in the box.,c041 8.80 16.40;c044 11.30 17.50;c042 4.80 11.20;c039 23.80 30.20;c040 2.20 9.70,30.25\r\n8PRDP,OUKK,Kitchen,7,7,Yes,\"In the kitchen, a person is watching some video on their phone. They begin lying some dishes down in their sink while drinking some water from a glass.\",cup;dish;glass;phone;sink;video;water,\"A person is looking at a phone. The person then starts tidying up the dishes, and drinks a beverage from a cup.\",c016 3.00 14.10;c119 13.00 21.00;c015 1.70 31.00;c110 18.70 24.70;c106 20.10 28.70;c109 22.40 28.50;c120 10.70 16.10;c120 12.70 19.20;c120 15.80 20.40,29.54\r\nVCV6A,37UI,Kitchen,6,7,Yes,\"One person takes a sandwich and homework from a bag and starts working, then sneezes.\",bag;book;food;homework;paper;sandwich;table,\"Person walks into a room with a bag on the shoulder, takes the homework out of the bag began to write while eating a sandwich.;A person walks into a kitchen holding a bag they put the bag on the counter and take a book and pencil out of the bag. Then they write in the book. They also take a sandwich out of the bag and eat it.\",c065 0.20 4.30;c020 3.00 7.60;c009 11.80 17.30;c156 16.90 21.10;c145 15.00 32.00;c027 12.10 21.20;c030 5.20 14.70;c069 9.40 14.00;c061 14.60 22.90;c021 2.70 7.90;c117 4.70 9.80;c116 6.10 10.40;c115 5.30 10.60;c023 0.00 6.50;c022 0.30 6.50,31.25\r\nONA0S,D0RU,Living room,5,4,Yes,A person is sitting at a desk and opening the doorknob.,bench;desk;door,\"A barefooted and nervous person staring at a camera is sat on a bench and is opening a wooden door.;A person sitting on a bench, opens and closes a door, then opens it all the way.\",c141 9.10 17.90;c151 26.00 31.90;c154 18.10 23.80;c008 9.50 19.50,32.67\r\n6TJVS,EA2K,Dining room,7,7,Yes,A person is eating a sandwich and then sneezes into a phone.,chair;cup;dish;food;glass;milk;phone;sandwich;table,\"A person is sitting at a table eating a sandwich and drinking milk before sneezing, while also holding a phone.;This person is sitting at the table in the kitchen, eating food, drinking milk and than sneezes a few times.\",c065 2.40 9.00;c156 2.20 9.50;c009 9.20 15.20;c106 11.80 18.00;c015 0.00 33.00;c153 16.40 33.00;c011 0.00 33.00;c118 9.60 17.50;c067 0.00 33.00;c061 0.00 12.60;c019 0.00 8.50;c069 13.80 18.60;c120 12.30 17.30;c059 0.00 33.00;c067 0.00 11.90,32.33\r\n94LXD,D0RU,Closet / Walk-in closet / Spear closet,7,5,Yes,\"A person opens a laptop that is sitting on the shelf.  The person laughs at something on the laptop and closes it, then picks up a pillow and blanket and throws them on the floor.\",backpack;bag;blanket;cans;dishes;floor;laptop;man;shelf;towel,A man grabbing things on a shelf.;The person rummages through groceries in on the shelf. They pick up a bag and a towel and tidy up the floor.,c070 24.40 36.00;c082 2.80 17.00;c020 23.20 36.00;c033 24.40 35.90;c154 12.20 18.10;c023 23.20 28.80;c035 23.20 29.00;c021 31.50 36.00,34.54\r\nEOAR1,JVLO,Home Office / Study (A room in a house used for work),7,7,Yes,The person is putting food in the refrigerator and then tidying the desk in the home office / study.,desk;doorway;food;refrigerator;sandwich;table;window,\"A person walks to a window, picks something up out of it, and then takes the item to refrigerator. The person walks to a table and picks some items off of a desk and moves them.\",c142 11.80 18.30;c143 7.30 14.30;c012 19.70 35.00;c061 3.20 15.10;c062 9.60 16.60;c063 2.50 8.70;c092 1.20 7.90;c068 10.30 17.00;c097 0.00 3.90,33.62\r\n3MIWR,H8N1,Closet / Walk-in closet / Spear closet,6,7,Yes,The person is standing by a cabinet.  They grab a broom and start sneezing.,broom;cabinet;floor,A person  holds a broom and starts sweeping. The person then begins sneezing.;A person stands in front of some cabinets sweeping with a broom and turns to sneeze.,c098 2.60 21.10;c102 2.90 21.10;c153 8.30 13.00;c127 2.20 21.40,25.21\r\nT2S96,WG9D,Bedroom,5,7,Yes,\"Person is standing near window, grasping shoes and wiping them with towel.\",shoe;towel;window sill,A person is picking up a shoe form a window sill and washing it with a small towel.,c038 0.00 7.00;c053 0.00 2.50,5.62\r\nSFH7G,G6WD,Home Office / Study (A room in a house used for work),4,7,Yes,A person is putting food on a table and then throwing a ball through the doorway in the home office / study.,bag;doorway;food;sofa;table,The person sat on the couch and played ball with the dogs that were near the doorway.,c009 1.60 8.80;c151 2.60 9.60;c154 33.00 40.00;c123 2.20 38.60;c011 4.60 39.40;c062 1.00 8.60;c022 1.40 8.00,39.96\r\nIGOQK,D0RU,Entryway (A hall that is generally located at the entrance of a house),4,3,No,A person is pours a drink then grasps a book off a shelf and looks into a mirror.,bench;chair;door;phone;sofa/couch;towel,\"This person enters a little hallway area after closing door behind them. Then picks up towel off a bench, sits down, wipes self off, putting towel around them and then looking at their phone.;A man enters a room through a door and dries himself off with a towel before sitting down and draping it over him.\",c151 7.10 12.80;c033 5.50 34.00;c006 0.00 5.30;c097 0.00 6.10;c035 4.90 11.00;c059 7.00 13.30;c016 22.00 34.00;c141 0.00 5.10;c123 8.10 34.00,32.62\r\nTWZA4,KL48,Hallway,7,7,Yes,A person is taking a phone book off a hall table.  Then a person is opening it and dialing a phone.,book;phone;table,A person picks up a book from a table and opens it. They then make a phone call on a cell phone.,c015 9.90 18.30;c019 22.30 28.00;c027 0.50 6.70;c030 0.30 28.00;c032 1.20 28.00;c026 0.30 28.00;c030 0.00 4.20,27.42\r\nM1GW9,D0RU,Bedroom,3,6,Yes,\"The person is standing in the doorway grasping a pillow. Then the person reaches for the doorknob, opening the door and throwing the pillow onto the bed.\",bed;door;pillow,\"The person walks in his house entrance and grabs a pillow off the sofa in the living room. The person continues into his bedroom, throws the pillow on the bed and rearranges a couple other pillows before walking back out the room.\",c077 0.40 23.30;c008 3.80 9.90;c097 4.70 9.90;c076 1.20 14.20;c079 0.20 5.20;c006 22.00 27.50;c080 13.50 23.50;c141 21.90 27.30,32.00\r\nOL2JP,C7O9,Bathroom,7,6,Yes,\"A person is in a bathroom working on fixing the doorknob, they then laugh as the pick up a book from the toilet and walk out.\",book;door;paper;tool,A person is fixing a doorknob. A person then grabs a book and leaves.;A person takes a tool and fixes a broken door knob at the bathroom door.  The person then turns to the toilet and picks up a paper.,c140 0.00 14.10;c007 0.00 14.10;c115 23.30 28.30;c030 22.00 29.70;c026 23.00 29.50,29.38\r\nA3AV0,0KZ7,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"Two people are playing cards. They see something through the window. They stop playing, get up, and one person reaches for the doorknob to open the door and see what is outside.\",cards;door;floor;window,Two people are sitting on the floor playing cards. One of them gets up and then proceeds to open the door.,c008 22.50 29.00;c141 24.10 29.00;c154 15.50 25.60;c125 0.00 23.10,28.42\r\nZ6HSZ,YA10,Hallway,6,7,Yes,\"A person stands in the hallway, drinking a cup of coffee and eating a sandwich. They close a nearby open door before leaving the hallway.\",coffee;cup;door;food;sandwich,Person standing in the hallway drinking coffee and eating a sandwich who walks to the bathroom and shuts the door.,c006 19.40 26.50;c065 12.30 21.30;c106 0.10 18.60;c156 0.10 20.70;c061 0.00 26.60;c097 22.50 27.40;c141 19.40 25.60,30.38\r\n8PL34,Z68L,Bedroom,6,6,Yes,\"A person opens the door to their bedroom, then takes their shoes off, and holds them up in the air.\",bed;door;shoe,\"A person closes a door then sits on a bed and take off their shoes. The person then opens the door and throws the shoes on the floor.;A person closes a door, sits on the bed, takes off shoes, then opens the door and throws the shoes on the floor.\",c006 3.20 9.50;c151 9.20 14.20;c058 23.90 34.00;c008 18.20 29.40;c154 13.20 21.20;c135 9.70 20.40;c057 9.00 20.70;c053 11.00 32.10,33.38\r\nEI0F6,T7C3,Bathroom,3,7,Yes,\"A person is standing in the bathroom grasping a towel in their right hand.  The person puts down the towel and opens the medicine cabinet, takes out a bottle of medicine, and closes the cabinet.\",cabinet;medicine;towel,\"A person is holding a towel in the bathroom, opens a cabinet, takes out a medicine and closes the cabinet.\",c112 22.90 32.80;c113 2.40 16.10;c128 19.60 34.00;c033 0.00 34.00,33.42\r\nBLBJY,XXN8,Kitchen,3,7,Yes,A person laughs as they put down a dish of food. The person picks up a glass.,bowl;counter;cup;dish;food;glass,A person standing at a counter eating food from a bowl.The person picks up a cup and starts drinking it .The person turns to leave.;A person is eating food and laughing then they begin drinking from a cup.,c061 0.00 15.00;c118 0.00 15.40;c149 2.80 9.80;c156 0.00 13.00;c106 10.90 32.70,31.75\r\nAKEDL,XXN8,Kitchen,6,6,Yes,A person is walking to a window.  A person is holding medicine and a cup of water.,cup;fish oil;glass;medicine;window,The person is walking over to the window while holding up fish oil and a red cup before turning off the camera.,c107 0.00 31.00;c128 0.00 31.00;c092 0.80 9.40,30.38\r\n8VDZ7,UTMU,Laundry room,5,7,Yes,A person walks into their laundry room to start cleaning it with their vacuum when they notice their laundry is done and sits down to get their blanket out of the washer.,blanket;dryer;floor;vacuum,A person is vaccuming in a laundry room then sits on the floor near a drying machine and gets a blanket out of the machine.,c138 0.50 13.10;c137 0.20 18.30;c070 18.10 33.30;c073 16.10 25.90;c125 15.10 28.30;c151 14.10 27.10;c154 23.10 34.00,33.21\r\n9WGMG,PO5L,Pantry,5,6,Yes,\"A person runs into their pantry, smiling as they listen to music playing in the background (denoted by their head bobbing up and down, even if the sound is unheard).  They stand in the pantry doorway, as the light shines in from behind them.  Grabbing a beverage, they start drinking it, before closing the door.\",bottle;cup;shelf,\"A person bobs their head and picks up a juice bottle off a shelf, then takes a drink from it.;A person goes and dances, then grabs a bottle of orange juice and drinks it.\",c110 7.70 14.70;c106 12.60 21.80,22.25\r\nNU4XA,ZAWX,Home Office / Study (A room in a house used for work),6,7,Yes,A person smiles as they open the door to their home office. The person throws a bottle of medicine on the desk and sits down.,chair;door;glass;table;television,A person sitting in a chair holding a glass soda gets up and opens a door. They set their glass on a table and sit down in another chair.;Person sitting in a chair who gets up and walks into the house to sit and watch television.,c008 6.80 13.50;c152 2.80 8.20;c059 16.90 22.90;c132 26.60 32.00;c141 5.80 14.20;c149 0.90 24.20;c009 10.60 15.80;c107 0.00 15.50;c097 2.90 8.80;c154 1.40 7.80,30.75\r\nFAZXS,KFGP,Basement (A room below the ground floor),6,7,Yes,A person is in the basement tidying up a cabinet.  The person finds an old picture in a frame and throws it into a nearby cardboard box.,box;cabinet;paper/notebook;picture;table,\"A person walked to a counter, stacked some books, and put the books on top of a filing cabinet. Then the person pulled a picture from the counter and moved it to a nearby box.\",c084 19.90 27.30;c088 19.70 27.00;c012 0.10 9.90;c116 6.20 12.90;c117 5.40 10.80,29.75\r\nWYCRK,4OHY,Living room,5,7,Yes,\"A person walks over to the window, drinking a glass of water. The person picks up a broom and sweeps off some dust on the window sill.\",broom;cup;glass;water;window,A person looks out the window while holding a glass of water. They drink out of the glass then pick up a broom and sweep the window.,c092 0.00 13.90;c106 8.30 27.80;c100 24.70 31.00;c091 18.40 31.00;c106 8.70 17.80;c107 5.60 12.60;c102 18.40 31.00;c098 16.00 31.00,29.71\r\nQEG5O,QB52,Bedroom,5,7,No,A person awakens and gets up off the floor then they turn the doorknob on the cabinet while sneezing.,bed;books;pillow;shelf,\"A person is lying on the bed after the person begins to sneeze they stand up and walk over to the shelves.;A person is awakening in bed and as they get up they begin sneezing, they then begin searching for something on a shelf.\",c146 0.00 7.50;c153 5.60 11.10;c082 20.40 27.20;c134 0.00 2.90;c133 0.00 16.10,30.38\r\n08EPO,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is holding food while another person is eating a sandwich.,dish;food;sandwich,A person is walking around in circles while they eat a sandwich. A second person stands nearby while they also eat food.,c061 0.00 20.00;c065 9.70 15.70;c067 0.00 20.00;c156 10.10 15.80;c118 0.00 20.00,18.58\r\n83D9H,YMXV,Bedroom,7,5,Yes,A smiling person takes clothes from their bed and puts them in the closet.,bed;blanket;clothes;door;wardrobe,\"A person takes clothes off a bed, hangs them over his arm then walks to a partially open door. The person drops the clothes on the floor in front of the door;Person getting clothes off the bed proceeds to walk over and open the door then close it..\",c000 0.00 26.80;c003 23.20 28.20;c008 16.50 22.70;c002 0.00 16.80;c070 11.30 21.40;c001 21.00 27.10;c075 13.30 19.30;c006 16.10 22.50;c004 0.00 18.80,30.54\r\nIQSWM,2Q9D,Laundry room,6,7,Yes,A person in the laundry room is walking around while holding a sandwich. They eventually decide to stop walking and instead start leaving towards the door.,clothes;door;food;sandwich,Person is holding a sandwich and walking around his laundry room while looking at clothes on hangers. He then leaves the laundry room.,c067 0.00 27.00;c008 22.00 28.00;c006 23.30 28.00;c061 0.00 28.00;c097 21.30 25.70;c141 22.10 26.50,27.50\r\nY0CSN,YMXV,Pantry,6,7,Yes,A person is watching out the window and another person is working on homework.,closet/cabinet;homework;paper;window,A standing person looks out a window while another person seated behind him works on homework.,c092 0.00 19.70;c145 16.50 33.00;c113 0.00 19.70,31.54\r\nKL68V,6RE8,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person getting dressed puts on their shoes. They then walk out of the room with their phone in hand.,clothes;hand;phone;shoe,\"A person is sitting and dressing, including putting on shoes, before standing and walking away.\",c055 9.00 28.90;c148 0.00 12.20;c154 24.30 31.30,31.83\r\nHBQ33,IK1O,Home Office / Study (A room in a house used for work),6,4,Yes,A sneezing person takes medicine and throws it on a shelf.,chair;computer;desk;laptop;medicine;monitor;table,A person is sitting at a desk and sneezes.  The person briefly inspects a medicine bottle before dispensing the contents into their hand and taking them.  The person throws the medicine bottle back onto the desk and watches the computer screen.;A person sitting at a desk is watching a video on a computer. The person sneezes. They open a pill bottle and take some medicine.,c129 14.40 32.00;c153 0.00 8.90;c009 15.90 21.10;c011 0.00 32.00;c051 0.00 32.00;c059 0.00 32.00;c128 5.50 32.00,30.50\r\nR5CWJ,BYF9,Closet / Walk-in closet / Spear closet,5,7,No,Two people are laughing and snuggling in front of a mirror. Then one starts dressing and the other works with the vacuum.,clothes;floor;mirror;vacuum,Two laughing people hug then one starts vacuuming and another gets dressed in front of a mirror.,c096 0.00 3.00;c137 5.60 18.00;c149 1.90 9.60;c148 13.80 18.00;c152 0.00 10.80;c127 4.90 18.00,17.21\r\nPWJ3J,9PLL,Kitchen,4,7,Yes,Person A awakens from a nap in the kitchen because sneezing and quickly realizes there are groceries lying on the floor.  Person then takes the boxes of cereal and places them in the kitchen pantry.,bag;bed;floor;food;groceries;shelf,\"A person is sleeping on a floor, they then wake up and begin sneezing then get up and start putting away groceries.;A person was laying on a bed,the person proceeds to start to place groceries on the cot on a shelf.\",c124 0.00 13.90;c153 3.40 13.30;c130 21.20 29.10;c020 18.40 27.10;c146 9.20 20.90;c154 19.70 26.30;c081 21.40 36.00;c134 0.00 13.20;c022 20.40 35.70;c062 17.90 27.30,34.88\r\nTUVM8,YMXV,Living room,6,7,Yes,A person is holding a laptop as they sit on a sofa. As they watch the screen they begin laughing.,bed;laptop;pillow;sofa,\"A person is sitting on a bed laughing at a laptop.;This person is is sitting on a bed, typing on a laptop, and talking.\",c051 0.00 32.00;c149 0.00 11.20;c135 0.00 32.00;c123 0.00 31.20;c152 16.40 24.80,31.08\r\nTW6NZ,8718,Kitchen,5,5,Yes,A person sits down on the sofa and begins undressing.  They then pour themselves a glass of water to go with some food.,clothes;couch;cup;dish;doorway;glass;pitcher;refrigerator;shirt;sofa;water,\"A person is sitting on a couch and takes off their shirt before getting up and walking to the kitchen. After taking a glass from the counter, the person opens the fridge, takes out a pitcher of water, and smiles.;A person is sitting on a sofa and taking off some clothes, they then get up and get a glass and pour some water into it. They are smiling.\",c107 21.40 29.00;c110 19.40 25.00;c143 23.00 27.80;c108 25.70 34.00;c123 0.00 12.70;c155 1.60 12.40;c154 9.40 14.30;c152 21.40 27.40;c001 8.70 14.20;c002 0.00 12.40;c118 19.20 34.00;c097 13.10 17.60;c120 19.10 26.90;c003 8.20 12.90,32.75\r\nEO6OI,3H6W,Recreation room / Man cave,6,6,Yes,\"After running into the room a person is confronted by a mess. The person starts cleaning, washing a rag to wipe down the desk top, using the broom and the vacuum.\",blanket;broom;clothes;floor;table;towel;vacuum,The person is tidying up the room. The person grabs a towel and starts wiping the desk. The person grabs a broom and sweeps the floor.,c033 14.10 28.30;c038 19.30 28.70;c098 33.80 46.00;c037 3.90 10.20;c012 14.30 27.80;c102 33.10 45.10;c127 33.10 45.10;c138 25.20 33.70;c071 4.10 10.60;c070 3.90 10.20;c137 25.40 30.80;c003 5.70 12.20;c002 3.40 8.80;c035 13.60 18.80;c013 18.60 27.60;c000 13.60 27.80;c034 23.40 28.70;c001 23.80 29.00;c100 33.60 38.90;c004 3.40 10.20;c099 40.60 45.70,45.21\r\nWIOOY,ZAWX,Kitchen,4,4,Yes,\"Person puts bag of groceries on table, then starts running to stove and starts cooking.\",bag;dish;doorway;food;groceries;stove;table,The person is cooking something.,c024 2.50 10.40;c009 2.90 9.10;c147 12.40 27.00;c097 0.00 4.50;c097 8.10 13.40;c118 13.70 19.50;c020 0.00 8.50;c022 4.10 8.90,30.67\r\nL7HA6,P6LJ,Living room,4,7,Yes,A person is drinking from a can of soda as the person talks on the phone. The person stands in front of the mirror and begins undressing.,box;clothes;cup;glass;phone;shirt;table,\"a person pours a drink then talks on phone puts on shoes and drinks before taking off shirt;A person is drinking from a glass, putting it down on a desk and picking it up again while talking on then phone, then the person starts undressing.\",c009 6.20 11.40;c015 8.60 31.00;c017 27.00 32.90;c019 10.00 30.70;c106 15.00 26.70;c155 29.60 43.00;c018 0.00 8.40,47.08\r\nNALYS,X5XO,Closet / Walk-in closet / Spear closet,4,6,Yes,Person opens box of clothes and starts smiling while leaving closet.,box;clothes;doorway,\"Person opens box, takes out towel, looks at it, folds it back up and puts it in the box and carries box out of closet and opens again.\",c040 15.20 25.60;c042 17.60 28.10;c044 24.70 32.00;c001 2.90 12.20;c152 11.30 21.00;c039 11.40 17.90;c041 0.00 7.10;c043 14.10 23.20;c000 3.90 16.10;c002 5.30 17.80;c004 3.60 11.40;c097 17.60 24.30,30.88\r\nRF4OI,C7O9,Kitchen,7,6,Yes,A person is in a kitchen pouring coffee into a sink before leaving.,coffee;cup;dish;food;glass;hand;sink;towel,A person is standing at a sink drinking out of a glass. They pour the contents of the glass in the sink and leave the room.;A person is standing at the kitchen sink they take a drink and then the pour it out into the sink then they walk away. After washing their hands.,c106 0.40 6.00;c139 11.70 17.60;c110 0.00 14.30;c037 11.10 17.40;c119 7.50 15.40;c118 0.00 13.90;c156 0.30 6.70,26.58\r\n54VBR,0KZ7,Dining room,5,7,Yes,\"A person is in the dining room sitting at the table eating. Another person was lying on a sofa in the background - this person gets up and comes into the dining room, grabs a glass from the table and begins drinking the contents then sits in a chair at the table.\",chair;cup;doorway;food;glass;sandwich;sofa/couch;table,A person is sitting at a table eating a sandwich. Another person comes up and takes a drink from a glass. The second person sits down and keeps drinking.;A person is sitting at the table eating a sandwich while another person is lying on the couch the person on the couch gets up goes to the table takes a drink of water and sits down at the table.,c059 0.00 30.00;c106 13.00 18.70;c151 8.70 23.40;c011 0.00 30.00;c011 16.30 23.80;c107 11.90 18.60;c156 0.00 7.20;c065 0.00 7.30;c061 0.00 30.00;c154 7.70 22.50;c097 8.80 15.10;c122 0.00 10.50,28.75\r\n8BCI8,ENC8,Kitchen,5,6,Yes,\"A person is cooking food on a stove, and then smiling while opening a refrigerator in a kitchen.\",door;food;refrigerator;stove,\"A person is standing in their kitchen cooking at a stove, they smile and take some food from the refrigerator.\",c063 28.60 35.90;c143 21.60 29.40;c152 25.20 42.20;c142 28.00 35.00;c147 0.00 10.60;c006 28.10 35.10;c008 21.00 29.00,42.04\r\nDEJ35,DXDI,Recreation room / Man cave,4,7,Yes,A person awakens then dresses by putting on a jacket. Next the person picks up a sandwich and a dish before leaving.,clothes;cloths;couch;dish;food;sandwich;sofa;table,\"A person gets up, and puts on a shirt. Then they grab a plate.;Person lying on the couch who sits up, puts on a shirt, and then picks up dishes from table before walking out of the room.\",c146 0.60 8.90;c120 18.20 28.00;c118 19.20 25.70;c148 10.40 22.70;c122 0.00 6.50;c148 5.20 14.40;c063 19.20 25.40;c069 19.50 25.40;c123 3.70 23.50;c062 21.10 27.20;c011 6.00 23.50;c012 18.40 27.80;c067 18.60 25.50;c001 6.80 22.00;c154 19.80 27.70;c002 6.90 21.70;c063 25.10 28.00;c069 25.10 28.00;c123 25.10 28.00;c062 25.10 28.00,26.96\r\nQ37OS,C7O9,Stairs,6,6,Yes,\"A person is walking up the stairs, grasping a framed picture. Another person is running down the stairs and hits the picture frame with their arm and spills their coffee.\",coffee;cup;doorway;glass;laptop;picture;stairs,A person holding a picture walks up the stairs. Another person runs down holding a glass and bumps into them.;person walks up stairs carrying a picture while another walks down the stairs with a cup of water/coffee that spills on the both of them.,c107 9.40 18.90;c084 0.00 28.50;c097 14.30 18.80;c047 0.00 29.00,30.42\r\nHCSPE,QLEJ,Bedroom,6,6,Yes,A person turns the doorknob and enters their bedroom. They walk to the lamp and turn on the lamp. They close the door and puts their phone on the night table.,door;lamp;light;phone;table,\"A person walks though a door and turns on a lamp.The person walks to the other side of the room and closes a door .The person goes back to the stand and lay their phone down.;someone walks into a room holding a phone, opens the door, walks into the room, turns on the light, walks back over to the door, closes the door then walks back over to the light and puts down the phone\",c006 15.40 22.00;c008 0.00 5.20;c015 7.90 13.90;c017 23.10 30.60;c141 0.00 3.40;c104 5.50 11.20;c097 0.00 4.00,30.54\r\nH69BE,ZAWX,Entryway (A hall that is generally located at the entrance of a house),5,4,Yes,\"A person sits on a sofa, watching a movie on their laptop. The person takes their laptop and closes it.\",chair;laptop;sofa;table,A person is sitting in a chair watching a video on a laptop on a table. The person closes the laptop.,c051 0.00 22.90;c011 0.00 32.00;c046 17.50 27.80;c059 0.00 32.00,30.71\r\nHN362,8718,Dining room,5,6,Yes,\"A person is standing by a table, working on their laptop\",bag;case;chair;flowers;lap top;laptop;table,\"A person moving flowers ,sits down and opens a case takes out a lap top and opens it up and stands up to work.\",c009 16.20 23.50;c010 16.20 23.80;c049 16.20 24.10;c051 22.30 31.00;c151 1.40 6.70;c011 1.70 23.50;c048 19.60 26.10;c050 2.90 19.00;c154 19.20 24.40;c020 0.00 19.80;c014 18.00 31.00;c021 4.80 10.30;c059 1.10 23.60;c022 14.70 19.90,29.54\r\nARCUY,4I61,Home Office / Study (A room in a house used for work),7,7,Yes,A person is sitting near a cabinet.  Then a person is sneezing while fluffing a pillow.,cabinet;chair;drawer;lamp;pillow;recliner;vest,\"A person walks into the room and sits down in a recliner. The person adjusts a lamp. The person adjusts their jacket. The person grabs a pillow and fluffs it and sneezes while doing that. The person walks out of the room.;A person enters the living room, then closes a cabinet drawer and sits down in a recliner.  They adjust a floor lamp before zipping up their vest, then fluffs a pillow and sneezes several times before leaving the room.\",c076 18.80 39.30;c151 1.70 7.30;c153 15.60 34.90;c154 37.50 42.80;c059 2.60 42.20;c077 36.00 41.50,43.83\r\nB7DNX,3H6W,Living room,7,7,Yes,A person awakens in a living room. They eat a sandwich and drink a glass of soda.,chair;cup;dish;food;glass;sandwich;sofa/couch,A person is sitting in a chair eating a sandwich. A person then pours themselves a glass of water and drinks it.,c059 6.40 30.20;c065 6.50 21.90;c067 6.20 19.40;c106 19.00 29.30;c156 6.20 21.30;c062 16.90 22.40;c146 0.00 7.80;c118 5.20 22.10;c061 5.60 20.70;c123 3.10 30.30;c063 5.60 20.70;c119 17.50 21.90;c122 0.00 6.20;c120 4.40 10.40,29.92\r\n1Q5ST,ZSRZ,Hallway,7,7,Yes,A person is snuggling with a blanket and then putting a towel on their head in a hallway.,blanket;doorway;towel,A person is snuggling with a blanket and grabs a towel.,c072 0.00 5.50;c034 2.40 9.00;c097 0.00 4.60;c033 3.10 9.00;c035 2.30 7.90;c153 0.00 3.30,7.75\r\nRUK08,Z755,Pantry,5,6,Yes,A person is standing by a cabinet in the pantry.  Another person is watching a video on their phone and laughing.,cabinet;chair;containers;phone;shelf;video,A person is tidying up a cupboard while another sits on a chair while looking at a phone.,c015 3.70 9.00;c114 0.00 6.50;c154 0.00 7.20;c082 0.00 6.80;c016 3.00 9.00;c059 3.80 9.00,8.33\r\nMLLVP,DXDI,Other,6,5,Yes,\"One person wrapped in a towel runs through the doorway, drinks from a glass, then sneezes.\",cup;doorway;glass,A person is standing in the doorway drinking a glass of water before sneezing on themselves.,c106 4.10 10.50;c153 10.70 15.90;c107 0.00 21.00;c097 0.00 5.00,20.25\r\n76R37,PKND,Living room,6,7,Yes,\"A person walks into the living room carrying a vacuum. This person proceeds to get to work and vacuums around the area, including along the wall under the window.\",floor;vacuum;wall;window,\"Person in room, plugs up vacuum, vacuums floor, walks towards window and vacuums window.\",c137 0.00 29.30;c154 0.00 30.10;c091 20.80 25.80;c127 1.80 9.70,31.83\r\n4FS34,3H6W,Living room,7,7,Yes,\"A person is working on a desk, then the person gets up and starts grasping a broom.\",broom;chair;computer,A person sits in a chair and plays on the computer before tossing a broom back and forth.,c151 0.70 6.30;c059 1.80 20.50;c100 17.30 22.90;c098 17.40 25.60,25.79\r\nZ9B4Y,6RE8,Laundry room,7,6,Yes,A person walks into their laundry room. They put their book on a table and begin to do their homework.,book;clothes;pen;table,The person is searching through clothes in their closet while holding a book and pen. The person walks over to their desk and starts writing.,c009 10.90 16.60;c026 0.00 16.90;c012 24.40 32.00;c115 13.40 32.00;c145 17.80 27.10;c030 14.50 19.40;c000 0.70 8.00;c117 12.60 18.50;c032 15.60 26.60,31.33\r\n5AEB8,D0RU,Stairs,3,7,Yes,One person is sitting on the stairs wrapped in a blanket working on homework.,blanket;book;homework;paper;stairs,A person sits on the stairs covered with a blanket. The person does homework while sitting on the stairs.,c072 0.00 32.00;c145 4.40 32.00;c151 0.00 11.00;c070 0.00 32.00;c026 0.00 32.00,31.00\r\n88CD5,0KZ7,Kitchen,6,7,Yes,\"A person is cooking and eating food, while watching their self in a mirror in a kitchen.\",food;mirror;pot;sandwich;spoon;stove,\"Person stands at the stove looking in a mirror and stirring a pot, takes twp bites of something and keeps on stirring;A person stands at the stove holding a mirror.  They look in the mirror as they use a spoon to stir a pot of food.\",c147 0.00 23.00;c096 0.00 23.00;c061 0.00 23.00;c065 0.00 4.90,22.25\r\nSP1QS,H8N1,Kitchen,5,6,Yes,Person sitting on a chair watching coffee brew. Person pours coffee into a glass.,chair;coffee;cup;dish;glass;table,\"A person is sitting in a chair, they then get up and pour some coffee in a glass and leave\",c059 0.00 12.40;c154 7.60 13.30;c108 12.30 20.90;c009 8.40 21.90;c118 20.90 25.50;c011 0.20 11.60,25.62\r\n43UGG,D0RU,Hallway,5,6,Yes,\"A person is lying on the carpet eating a sandwich. Then, opening the door, the person reaches for their shoes and begins to put them on.\",dish;door;floor;food;sandwich;shoe,A person is eating a sandwich on the floor. Then gets up to walk down a hall. Then closes the door and puts on their shoes.,c067 1.50 12.90;c069 0.00 5.70;c156 4.10 11.80;c065 3.00 17.40;c068 11.30 18.20;c154 13.70 19.80;c055 43.40 54.00;c118 1.20 13.70;c125 0.00 18.50;c119 8.90 13.70,53.04\r\nYBO6N,PKND,Bedroom,7,7,No,\"A person runs into the laundry room holding a book.  The person grabs a glass of water off the top of the television and takes a drink, then puts it on the television.\",book;cabinet;cup;glass;light;television;water,\"A person watches television then picks up a glass of water and takes a drink, walks to another room and turns on a light,opens and closes a cabinet door in another room before turning off the light on the way back to the original room.;A person watches television while taking a drink, then goes into the bedroom to get something and comes back out.\",c110 2.60 8.20;c105 26.80 31.70;c112 22.20 28.00;c132 0.00 33.00;c106 4.50 10.40;c109 7.20 12.40;c104 15.20 20.80;c113 20.00 25.40,31.58\r\nM7KH7,Z68L,Bathroom,6,7,Yes,A person washes a glass by the window before putting it back on the shelf and leaving the room.,cup;dish;glass;shelf;towel;window,A person wipes a water glass with a cloth and then puts the glass on a shelf in front of a window.,c109 18.90 28.70;c081 18.90 28.70;c038 2.70 25.60;c033 2.10 35.80;c119 22.00 28.00;c118 3.30 24.10;c111 1.10 23.30;c121 1.10 23.30,39.00\r\n09QI0,L4ZP,Bedroom,6,6,Yes,A person is playing with a phone while another person is undressing on a blanket.,bed;clothes;phone,\"A person removes their clothes and puts them on a bed. Another person stands nearby smoking a cigarette and looking at their phone.;A person standing up smoking a cigarette, while looking at their cell phone and another person takes off their clothes.\",c015 0.00 33.00;c155 1.20 33.00;c002 0.00 33.00;c016 0.00 33.00;c001 5.00 32.40,31.79\r\n8G9A9,3H6W,Kitchen,4,6,Yes,A person smiles as the put a laptop and phone on the table. Next the person picks up a cup and begins drinking from it.,cup;food;glass;laptop;phone;table,\"A person walks in, sets their laptop and phone down, takes a drink and leaes/\",c106 8.60 21.10;c109 14.30 22.00;c009 4.40 14.20;c015 3.60 14.70;c047 3.40 14.50;c151 5.20 13.30;c107 10.00 21.10;c110 10.20 16.90;c011 8.70 28.30;c017 5.20 11.90;c049 6.10 13.40;c154 21.90 28.70;c051 19.00 26.20;c050 1.90 7.80;c048 17.80 22.70;c156 10.10 20.90;c046 22.10 27.60,27.71\r\nU1B27,EIO2,Entryway (A hall that is generally located at the entrance of a house),7,5,Yes,A person is opening the door and taking off their shoes.  Another person is holding groceries and carrying them through the hallway.,bag;bowl;door;groceries;shoe,Two people enter the room. One takes of his shoes. The other is carrying a bowl.,c020 3.90 14.10;c006 5.10 11.00;c057 4.10 31.00;c056 25.90 31.00;c097 0.90 6.90,30.33\r\nUCDL4,M80J,Bedroom,6,7,Yes,A person walks in the door of the bedroom and closes it.  The person takes a picture off the wall and puts it on the bedside table next to some homework.,door;homework;phone/camera;picture;table;wall,\"A person opens a door, walks through, and closes it. The person then takes a picture off the wall and looks at it before placing it down. The person then picks up another item and looks at it.\",c008 0.10 6.20;c086 9.20 26.30;c088 9.20 24.80;c006 4.00 9.00;c084 10.00 24.00;c083 9.00 14.00;c009 21.00 26.00;c087 9.00 14.00;c097 0.00 5.30,29.92\r\nF8E8C,F56T,Bedroom,4,6,Yes,A person is sitting on the couch watching television under a blanket.  The person sneezes and takes a drink of a glass of water.,bed;blanket;cup;glass;sofa;television;water,\"Person is sitting watching TV with a blanket. They sneeze and then take a drink from a cup on their counter. After that, they get up and leave the room.\",c106 12.60 26.10;c132 0.00 8.30;c153 7.40 13.80;c109 22.60 27.10;c110 11.30 16.10;c154 26.80 31.80;c135 0.00 30.80;c107 11.30 16.90;c150 26.50 33.00;c072 0.00 11.90,32.33\r\nGHJ8Z,D0RU,Kitchen,5,7,Yes,\"A person walks up to the stove and turns it on, then they place a pan onto the stove. Then they remove some medicine from the drawer and put it on the counter.\",box;cabinet;counter;food;medicine;stove,\"A person walks into a room and begins cooking food and then opens a box of medicine on the counter.;A person is cooking food on a stove, they then open a cabinet and take out medicine.\",c128 21.40 27.60;c147 2.60 20.40;c041 21.80 27.40;c062 10.40 21.70,31.75\r\n6YH19,PKND,Bedroom,7,7,Yes,A person awakens in a basement with their head on a table. The person opens a bottle of soda and watch a video on a laptop.,bottle;chair;desk;floor;glass;laptop;table,\"A person is sleeping at a desk. The person wakes up and stands up, grabs a bottle of water, and checks their laptop. The person drinks from the bottle of water, and goes back to working on the laptop.;a person sitting on the floor and grabbing a laptop that is on a bed.\",c051 17.90 35.00;c052 10.00 35.00;c146 1.50 6.60;c154 3.20 10.10;c125 0.00 7.70;c106 17.10 23.90;c009 20.10 24.90;c014 10.30 35.00,33.71\r\nNDH24,T7C3,Stairs,7,7,Yes,A person is grasping a laptop and a phone as the laugh on the stairs.,laptop;phone,\"A person is sitting on the stairs, laughing while they look at their computer screen. THey are also holding a phone.\",c047 0.00 37.00;c015 0.00 37.00;c149 5.70 37.00;c052 0.00 37.00,36.38\r\n1R9XW,TGGT,Closet / Walk-in closet / Spear closet,3,6,Yes,A person is snuggling in a blanket while smiling in a mirror,blanket;closet/cabinet;coor;door;mirror,\"A person opens and closes a closet door, then looks in the mirror on the door while shivering with a blanket around them.\",c072 0.00 35.00;c096 8.50 35.00;c112 8.10 16.00;c113 2.90 10.30;c008 0.00 6.70;c070 0.00 35.00;c006 1.20 9.60;c112 1.40 9.60;c113 0.00 5.90,33.71\r\nUVPSZ,9PLL,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,\"After closing the door, a person puts the dirty cloths into the basket sitting on the floor that need to be washed.\",clothes;door;floor;towel,A person walks through a doorway and closes the door. The person then sits on the floor and cleans up some clothes.,c125 8.10 35.00;c004 19.00 35.00;c006 3.70 12.30;c001 14.50 35.00;c035 14.50 35.00;c151 12.50 19.10;c036 14.80 35.00;c034 15.00 35.00;c002 15.00 35.00;c127 15.00 35.00;c097 0.00 5.50,33.58\r\nHZCXV,XXN8,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is laughing and standing on a box with the homework in hand.,folder;homework;paper;pencil;table,A person is standing on a table while doing homework.;A person stands on a table writing in a notebook. The person is smiling and laughing.,c149 0.00 20.30;c145 1.10 25.60;c152 0.00 31.20,32.08\r\nRF00I,P6LJ,Kitchen,6,6,Yes,A person is standing in their kitchen holding a sandwich and a cell phone. The person walks to a chair and sits down while talking on the phone. When they finish the sandwich they wash their plate and leave the kitchen.,chair;closet/cabinet;cup/glass/bottle;dish;food;phone;sandwich,The person in the video made a sandwich and answered a call in the kitchen.,c019 18.40 42.80;c065 26.50 43.30;c118 2.60 50.90;c059 16.90 43.30;c151 38.30 45.30;c113 46.40 53.00;c119 39.30 45.80;c110 1.60 8.10;c112 54.60 61.60;c121 40.30 94.70;c061 24.00 41.70;c154 38.30 43.80;c120 42.80 86.10;c015 15.30 43.30,101.88\r\n2QYZA,4I2W,Kitchen,6,5,Yes,\"One person opens a box and fixes something to eat, then puts the food on the table, pours a drink and starts eating.\",box;container;food;glass;pitcher;plate;table;water,A person opens a container and gets food out and puts it on a plate. Then they pour water from a pitcher into a glass and eats some of the food.;A man is standing in the kitchen and removes some food from a storage container and then pours water from a pitcher into a glass and takes a drink. He then takes a bite of the food.,c041 0.00 11.20;c063 0.00 27.80;c156 21.90 31.00;c062 8.30 12.90,29.75\r\nQ42EE,ZSRZ,Recreation room / Man cave,5,7,Yes,The person is lying on a sofa. They lean over and pick up food and eat it.,blanket;food;sofa,A person is lying on the sofa with a blanket. They reach down to grab and eat food which is on the floor.,c063 0.00 10.20;c122 0.00 14.00;c156 2.50 10.10;c072 0.00 14.00,13.00\r\nCXO6P,P6LJ,Dining room,5,6,Yes,\"A person walks into the dining room, wrapped in a blanket and sneezing. The person takes a sandwich from the table, and leaves.\",blanket;bowl;dish;food;sandwich;table,\"A person wrapped in a blanket walked around a room sneezing, picked up a bowl of soup and walked around.;A person wrapped in a blanket leaves the room and returns. The person appears to be sneezing or sick. The person picks up a plate and walks out of the room again.\",c067 15.10 23.10;c070 0.00 23.50;c118 15.00 23.10;c069 14.30 23.70;c153 5.70 16.00;c120 14.30 23.70;c072 0.00 4.40;c072 5.40 23.80;c061 15.10 23.20,28.46\r\nQ07CU,T7C3,Laundry room,7,7,Yes,\"A person is dressing near a window. They walk away, and turn out a light as they leave.\",clothes;doorway;light;shirt,\"A person puts on some clothes. They then turn off the light and walk out of the room.;This person is putting on a shirt, buttons it up, then walks out of the room and turns the light off.\",c105 30.30 35.00;c148 3.10 31.60;c002 0.00 4.20;c097 29.10 35.00,34.04\r\nNU09Z,ID9V,Kitchen,4,3,Yes,A person is sneezing while putting medicine int he pantry then starts walking towards the doorway.,cabinet;cupboard;medicine;shelf,A person is tidying some medicine on a shelf inside a cabinet.;A person is tidying up a shelf in the kitchen and putting medicine in a cupboard.,c112 16.00 21.70;c114 1.60 21.80;c082 13.30 17.80,24.58\r\n4O32W,2Q9D,Pantry,7,7,Yes,A person is standing in the doorway of the pantry. The person is holding a pair of shoes in one hand and drinking a glass of water with the other.,cup;doorway;glass;shoe;water,A person is holding shoes and drinking water in front of a pantry,c106 0.00 8.70;c053 0.00 31.00;c107 0.00 31.00,30.33\r\n3S70A,KFGP,Laundry room,5,7,Yes,A person is awakening near a door.  Then a person is throwing laundry on a table.,clothes;table,A person is putting their head down on a desk then they begin taking clothes from a basket and putting them on a table.,c001 14.60 24.60;c009 14.40 24.60;c146 4.30 13.90;c014 9.60 27.00,25.83\r\n4BZI6,R1OT,Living room,4,7,Yes,\"A person opens a box, looking for some old medicine tablets. They grasp something from the bottom of the box and pull it out. It's a large dusty pill bottle. The person wipes it off with a towel.\",box;cup/glass/bottle;floor;medicine;something;towel,\"A person opens a  bucket while sitting on the floor. They take a bottle out, and wipe it.\",c128 9.30 31.00;c038 15.00 31.00;c041 0.00 5.80;c107 8.70 31.00;c125 0.00 31.00,29.96\r\n73J9F,BYF9,Recreation room / Man cave,4,7,Yes,A person is washing a window while eating a sandwich.,food;sandwich;towel;window,A person washes a window while eating a sandwich.,c091 7.40 25.00;c065 0.00 25.00;c156 0.00 25.00;c061 0.00 25.00;c038 7.70 25.00,23.58\r\nUTAGQ,WG9D,Kitchen,3,,No,A person is grasping at a wrench that full underneath a sofa in the garage. After a few seconds the wrench is retrieved and the person puts it away. The person then walks up to a television and beings playing with it. The person changes the channels a few times and walks back to a sofa and sits down to enjoy the television.,book;food;pillow;plate;sandwich;sofa,\"The person sits on the couch. The person throws a plate aside while eating, and then picks up a book and starts reading.;A person is sitting down, and then grabs a book.\",c123 0.00 13.00;c030 6.40 11.50;c156 0.00 5.90;c078 0.00 6.00;c032 6.90 13.00;c065 2.80 8.00;c027 8.10 12.80;c026 7.70 13.00;c061 7.00 11.30,12.00\r\n44Y6S,D0RU,Bedroom,6,5,Yes,\"A person walks in the room and takes a camera out of a box.  The person opens the camera to check for batteries, then puts the camera on the desk and leaves.\",box;camera;desk;phone;table,A person comes into a room and picks up a camera. He plays with the camera and lays it on another table.,c009 36.50 42.80;c016 12.90 40.30;c017 35.40 41.30;c018 9.30 15.20;c015 9.30 41.50;c044 9.10 14.60,41.79\r\nDEZJ5,AC0W,Closet / Walk-in closet / Spear closet,5,7,Yes,Person is opening door to get box of shoes then starts laughing.,box;closet;door;shoe,A person opens a closet door. The person grabs a box from the shelf and grasps the shoes inside of it and laughs.;A person is hesitating while walking to a door. The person opens the door which is for a closet. The person is reaching up and bringing down a cardboard box. The person is reaching into the box and is looking at dark shoes. The person reacts by laughing. The person is closing the door and walking away.,c053 8.30 18.00;c006 14.20 20.00;c040 10.60 20.70;c044 8.60 14.80;c113 4.20 9.80;c056 10.00 26.00;c008 0.00 2.80;c043 0.00 12.00;c149 10.00 16.00;c141 18.00 25.00;c112 14.00 19.40,24.54\r\n3CKXF,OUKK,Hallway,5,6,Yes,\"A person runs down the hall, throwing a blanket onto a chair as they pass by. The person goes into a room and closes the door behind them.\",blanket;chair;door,\"A person puts a blanket on a chair, then the person goes through the door.\",c071 0.90 5.90;c008 2.50 7.60;c074 0.90 5.40;c097 2.40 7.50,7.25\r\nY25DQ,YMXV,Hallway,4,3,No,A person walks up and opens the door. That person looks for a laptop while sneezing. The person keeps finds a vacuum instead and begins smiling.,door;laptop,A person opens a door and enters a bedroom.,c008 8.40 17.20;c141 6.10 16.20;c097 14.00 22.10;c052 23.20 29.10,31.58\r\nR9382,HR43,Kitchen,6,7,Yes,\"A person is cooking at the stove. They walk to the refrigerator, pull out a sandwich, smile, and go turn off the stove.\",and fridge;door;food;pan;refrigerator;sandwich;stove,\"A person is standing at the stove cooking something in a pan. He then walks over to the fridge, opens the door, and pulls something out of the fridge that he eats.;A person is cooking on the stove. They go to to the refrigerator, open and close the door, and take out a sandwich and eat it while laughing.\",c142 13.40 20.30;c065 20.40 29.00;c069 9.10 21.90;c147 0.00 12.00;c152 16.70 26.60;c006 13.20 21.10;c143 8.80 19.90;c067 15.00 27.50;c147 0.00 29.00;c156 22.80 29.00;c061 13.10 29.00;c063 11.70 29.00;c062 9.50 29.00,27.62\r\nLRQXG,6RE8,Living room,7,7,Yes,A person is throwing some clothes into a pile. The person grabs a towel and sneezes into it.,chair;clothes;towel,\"A person throws random articles of clothing on to a chair, and then sneezes into a towel.;A person is putting clothes on a chair. A person then sneezes into a towel. A person then puts the towel on a chair.\",c033 0.00 29.80;c000 0.00 30.00;c001 1.80 13.10;c153 9.70 27.20;c001 22.90 32.00;c003 0.00 11.20;c002 9.80 14.90,30.71\r\n57NFY,UTMU,Kitchen,1,6,No,A person is sneezing into a mirror and then opening a cabinet in a kitchen.,cabinet;counter;mirror,\"A person walks into a kitchen, picks up a mirror off the counter, looks into it, and sneezes. The person puts down the mirror and opens a cabinet, looking inside. They close the cabinet and then walk out.;A person checks out their refection in the mirror before checking the cabinets.\",c112 27.00 34.40;c113 10.10 16.10;c093 1.40 11.60;c096 2.10 9.30;c153 2.90 8.60,37.62\r\nZOLVU,P6LJ,Living room,6,6,Yes,\"One person in a chair grasps a glass, pours soda into it, then starts sneezing and leaves the room.\",chair;cup;glass;phone/camera;table,A woman is recording herself sitting in a chair and sneezing after putting something near her face.,c107 11.60 21.50;c110 6.70 14.50;c059 4.90 27.40;c153 17.90 27.90;c151 5.10 10.20;c154 23.10 28.10;c017 0.00 2.80;c009 8.30 14.80;c109 8.00 14.10;c011 5.40 27.30;c108 10.50 20.70,32.79\r\nGM4UP,H8N1,Basement (A room below the ground floor),6,6,Yes,A person in their basement is watching some video on their phone while sitting on a sofa. They begin sneezing and then pull out some homework to work on.,book;homework;phone;sofa;video,A person is looking at a phone and smiling while sitting on a sofa. The person sneezes and grabs a book and opens it.;Person sitting on a sofa using a phone put the phone down and pick up homework.,c015 0.00 26.70;c016 0.00 26.70;c153 15.50 29.00;c027 26.90 32.70,35.62\r\nZP53M,MX1B,Bedroom,6,6,Yes,\"While tidying the closet together, one person sneezes as the other person throws a pair of shoes into a box.\",binder;book;box;floor;shelf;shoe;table;towel,Two people are cleaning a room.  One person is holding a dust rag and cleaning items. Person one puts shoes in a box.  Person 2 is cleaning a wall and puts a boo on table.  Person 2 dusts items on the table.;2 peoople are cleaning a room one is dusting a shelf the other is flipping out clothes and cleaning a desk,c058 3.50 15.40;c082 9.50 22.60;c126 2.60 13.70;c054 13.10 28.60;c009 5.40 19.40;c026 5.20 13.70;c030 4.50 9.50;c154 19.50 25.40;c028 6.90 13.40;c151 16.10 22.80;c012 10.90 31.40;c038 0.00 32.00,30.71\r\nA0ZW3,KFGP,Hallway,5,6,Yes,The person is awakening on a blanket and then sitting in front of a laptop in a closet.,floor;laptop,\"A person is lying on the floor a hallway, the person then sits up, grabs a laptop, opens it and looks at the screen;A person is sleeping on a floor.  The person sits up, picks up a laptop, opens it and begins looking at it.\",c047 17.30 33.00;c048 20.90 26.20;c146 9.00 15.80;c124 0.00 12.90;c125 17.30 33.00,32.42\r\nPHWKM,DXDI,Bedroom,7,7,Yes,A person is standing by the stairs holding a book. They start leaving the stairs area and place the book on top of a chair that is near by a desk.,book;desk;doorway;table,A person places a book on a desk.,c009 11.60 18.10;c028 11.60 18.20;c097 10.20 15.50;c025 8.10 12.50;c027 6.70 12.00;c026 0.00 17.70,20.29\r\nUU2LH,BYF9,Bedroom,6,7,Yes,A person in the bedroom is watching themselves through a mirror. They start playing with their shoes and find it funny that the shoes are not a matching pair.,bed;clothes;hair;hoodie;mirror;shoe,\"The person is fixing their hair and straightening their hoodie in front of a mirror. The person then sits on a bed, picks up two different shoes, claps them together, and looks inside of each one.0 0;Person standing in front of the mirror looking into it, then sit on the bed to put her shoes on.\",c053 11.30 25.00;c096 0.00 13.80;c151 9.60 16.40;c144 0.00 12.70;c135 10.90 25.00;c054 8.60 18.20;c000 11.10 25.00,24.25\r\n6FUDS,KFGP,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person is opening the blinds to their window, afterwards they sit down and continue eating some food out of a bowl.\",chair;dish;food;window,\"A person opens the blinds for a window, then the person sits down to eat some food.\",c090 9.70 17.00;c156 17.70 33.70;c151 15.60 21.70;c059 17.20 34.00;c118 17.20 34.00,32.50\r\n320VL,JVLO,Recreation room / Man cave,7,7,Yes,A person is laughing at a television and then smiling at a laptop in the recreation room / man cave.,box;chair;laptop;television,\"A person is watching a television, then turns and watches a laptop. Then the person stands and picks up something.\",c132 0.00 14.00;c051 10.70 32.00;c154 12.60 32.00;c152 0.00 26.40;c059 0.00 26.70;c042 21.80 32.00;c149 0.00 26.70,31.04\r\nVX7P0,S053,Living room,3,7,Yes,A person is sitting on the floor and looking out the window. They are snuggling with a pillow against their chest. Then they put the pillow down on the floor next to them.,floor;pillow;window,A person is sitting on the floor and snuggling with a pillow while looking out a window.  The person then drops the pillow.,c077 12.00 17.00;c078 0.00 15.00;c125 0.00 31.00;c092 0.00 31.00;c076 0.00 31.00,30.42\r\nA3MOW,D0RU,Living room,6,5,Yes,\"Person 1 is eating a sandwich while looking at a framed picture on a shelf. Person 1 is then smiling, before leaving the room through a doorway.\",chair;dish;doorway;food;picture;plate;sandwich;table,The person is sitting on a chair eating a sandwich then gets up and walks out the door.;The person sat in a chair eating a sandwich. They placed the sandwich on a table and got up and left the room. They looked at a family picture on their way out.,c088 16.00 21.60;c068 16.50 21.40;c156 0.00 19.70;c088 21.10 26.80;c065 0.00 16.90;c097 21.40 28.70;c154 18.10 24.90;c059 0.00 21.90;c009 16.20 21.90;c118 0.00 21.90;c061 0.00 21.80,34.62\r\nG5819,QB52,Recreation room / Man cave,6,6,Yes,Person is lying on couch watching television and eating bag of chips then starts sneezing.,bed;television,The person lied in bed on their side. The person was sneezing repeatedly.;Person lying in bed sneezing over and over again into elbow and wiping nose with arm and hand.,c153 0.00 16.60;c134 0.00 32.00;c132 0.00 32.00,31.00\r\nXVEM8,3MIT,Kitchen,5,7,Yes,A person is fixing the stove and anther person is watching through a camera.,stove,{};Person fixing a stove by lifting the hood and putting it back in place before leaving the room.,,25.46\r\n2VNXF,HR43,Home Office / Study (A room in a house used for work),6,6,Yes,A person is sitting at a desk in their office. The person takes their glass of coffee off the table and begins taking a drink. The person puts the dishes back on the table.,book;chair;coffee;cup;desk;dish;mug;plate;table,a person reads a book and drinks some coffee then moves a plate;A person sitting at desk drinking from a mug and staring at something.,c106 0.10 8.40;c009 13.60 22.20;c118 14.80 19.80;c059 0.00 23.00;c107 0.00 21.10;c011 0.00 23.00;c119 14.50 20.30;c120 13.80 20.80;c109 16.80 21.70;c110 0.00 4.90,22.38\r\nBVX8X,PO5L,Pantry,6,5,Yes,\"A person is standing in the room grasping a phone.  The person puts their phone down on the shelf and picks up a sandwich, then walks out the door, closing it behind them.\",cabinet;door;food;fridge;phone;refrigerator;sandwich;shelf,\"The person goes in the cabinet to grab a sandwich then goes to open the refrigerator for something.;This person is in the kitchen, looking at their phone, getting sandwich out of cabinet, opening fridge and then walking away.\",c067 12.50 22.40;c069 10.60 19.40;c008 5.00 13.50;c015 1.90 15.90;c143 20.30 26.70;c065 17.40 22.60;c156 17.10 22.40,30.25\r\nUN1PD,DXDI,Kitchen,6,7,Yes,A person is cooking at the stove then they wash a dish in the sink.,dish;food;sink;stove,a person is cooking on the stove and washes something in the sink;A person is cooking food on the stove. A person then starts to wash dishes.,c119 25.40 31.60;c147 0.00 16.50;c121 14.90 28.00;c120 14.50 19.20;c118 0.00 16.60,30.71\r\n34BYN,1OHU,Pantry,6,6,Yes,A person smiles as they take some food from the pantry. The person then leaves through the doorway.,doorway;food;groceries;shelf,\"Person smiles then walks towards a pantry and grabs some food, smiles again, and walks away.;A man goes into the pantry and arranges food. He takes some groceries from the pantry and smiles. Then he leaves with the groceries.\",c061 11.30 25.10;c063 21.70 28.90;c097 24.90 30.10;c152 14.50 22.10;c082 3.40 14.50,30.21\r\nCXKFB,1OHU,Kitchen,6,6,Yes,The person is standing with his or her backside leaning against the table.  The person grabs the broom and sweeps the floor.  The dust billows and causes the person to start sneezing.,broom;floor,A person is standing by a counter using a broom and then they start sneezing.,c102 4.40 13.50;c153 12.10 19.10;c127 5.40 14.10;c152 16.50 20.80,26.75\r\n7QWL3,KFGP,Closet / Walk-in closet / Spear closet,4,7,Yes,\"A person is standing in the closet, reading a book. The person closes the book and looks out the window.\",book;window,\"A person is standing in the closet reading a book. They close the book, and look out the window.\",c092 18.40 33.00;c025 15.10 20.40;c026 0.00 20.30;c032 0.00 20.10,32.29\r\nRKIC6,0KZ7,Stairs,5,7,Yes,One person takes a pair of shoes and homework and runs down the stairs. Another person tidies up stray dishes on the stairs.,bag;book;dish;floor;homework;paper;shoe,A person walks up a flight of stairs and picks up dishes as another person runs down the stairs carrying homework and a pair of shoes.,c053 0.00 6.40;c117 0.00 3.90;c120 0.40 35.00;c150 0.00 6.20;c023 0.00 6.40;c026 0.00 6.20;c127 3.70 33.10,33.75\r\n77KWE,YMXV,Home Office / Study (A room in a house used for work),,,No,\"A person throws a book onto the pantry shelf, then starts taking off their apron.\",book;chair;paper,\"A person is holding a notebook and throwing it on a chair, they then begin to dance around the room.;A person is walking with a book. The person throws the book on a chair then the person begins to stretch.\",c031 10.40 15.80;c115 0.00 15.80;c116 10.30 16.60,30.67\r\nD1D55,DXDI,Home Office / Study (A room in a house used for work),6,7,Yes,A person is tidying the home office/study. The person sneezes and then sits in a chair. The person looks at the door and begins to get up.,chair;desk;paper/notebook;papers;picture;table,\"The person arranging papers on the desk then sneezed and sat down on the chair.;A person is tidying up a desk before sitting in the office chair for a moment, then leaves the room.\",c059 22.10 36.70;c153 13.50 20.30;c151 19.90 26.50;c154 32.00 37.30;c117 0.00 8.20;c116 2.80 8.60;c009 0.60 17.00;c115 0.40 8.80;c086 1.30 14.10,36.50\r\nDZ1VH,BYF9,Stairs,7,7,Yes,\"A person takes some food from a desk at the top of the stairs. The person walks down the stairs, watching something off camera.\",camera;dish;food;phone;plate,A person picks up a plate and walks down the stairs while looking through a camera.;A person is walking down the stairs with a camera and a plate of food.,c015 5.90 22.00;c118 1.30 22.00;c063 0.00 5.00,21.04\r\n97LN9,YMXV,Bedroom,4,6,Yes,A person is walking through a doorway while another person is snuggling with a broom.,broom;doorway,A person is opening a door and steps sideways through the doorway. Another person lies down and cuddles and talks to the head of a broom.,,30.71\r\n0R0DJ,UTMU,Stairs,5,6,Yes,One person sitting on the stairs opens a laptop and smiles. A pair of shoes and dirty dishes are on the stairs nearby.,hair;laptop;stairs,The person is sitting on the stairs looking at a laptop computer. The person smiles and laughs as they look at the laptop.;A person sits on the stairs holding a laptop. They play on the laptop and then they touch their hair.,c047 0.00 7.50;c048 4.40 9.50;c051 6.20 27.00;c152 11.70 27.00;c052 4.50 27.00;c149 6.50 17.00,26.12\r\nX084M,V8LI,Hallway,5,6,Yes,A person is fixing a light in the garage. Another person is puts a towel around their head and takes pictures with a camera.,door;head;light,A person screws a lightbulb into a socket over their head above a doorway. They turn on the light and exit their house through the back door.;THE PERSON WALKS UP TO THE LIGHT AND TURNS IT ON. THEN THEY WALK TO THE DOOR AND OPEN IT.,c103 1.90 22.00;c104 11.30 21.80;c097 25.00 31.90;c008 23.60 29.80;c141 23.60 30.50,35.00\r\nJQW5G,9Y7F,Bedroom,7,7,Yes,\"One person is snuggling under a blanket, and another is tidying the room, putting a bag on a shelf.\",bag;bed;blanket;clothes;shelf,A person is sleeping in the bed with a blanket and another person is folding clothes and putting them on a shelf.,c081 24.40 31.00;c001 4.30 21.50;c000 4.30 21.50;c004 4.30 21.50;c134 0.00 6.20;c023 20.80 27.80;c072 10.10 15.20,29.92\r\nL8Y8D,G6WD,Kitchen,7,7,Yes,\"A person is cooking a meal on the stove, then opens the refrigerator and pours more water into the water pitcher.\",closet/cabinet;cup;dish;food;glass;pan;refrigerator;spoon;stove;water,\"Person stirs food on the stove, turns and gets a glas out of the cupboard and then goes to the refrigerator, gets some water, and drinks it;A person is standing in front of a stove, using a spatula to cook food in a pan. After a few seconds, the person turns around grabs a class, and fills it with water from the refrigerator and closing it.\",c120 21.80 29.90;c142 47.80 56.00;c147 0.00 29.10;c106 43.70 55.10;c108 33.30 46.60;c143 30.60 36.50;c110 27.80 33.50;c112 29.50 34.00;c113 27.80 33.50,54.71\r\nMU6UQ,D0RU,Dining room,4,6,Yes,\"A person is awakening in bed. Then, laughing, the person stands and goes to remove a sandwich from the refrigerator.\",bed;blanket;cup;doorway;food;refrigerator;sandwich,A person is getting up and walks to a refrigerator. He then grabs a bottle out of the refrierator.,c143 16.80 23.30;c146 0.00 4.40;c154 0.40 6.50;c110 22.50 30.70;c142 20.80 31.00;c133 0.00 7.00;c149 0.00 7.30;c134 0.00 6.20;c063 21.00 31.00;c070 0.00 31.00;c097 7.70 13.00;c152 0.00 4.70,30.21\r\nZSZS4,P6LJ,Living room,6,7,Yes,\"A person is taking the blanket off of the sofa, and wrapping it around them.  Then the person sits and works at their desk.\",blanket;desk;paper/notebook;sofa;table,A person picks up a blanket.  A person wraps the blanket over the person's shoulders and sits on the sofa.  The person gets back up and walks to the desk and sits down.  The person writes something on the desk then gets up and walks toward the camera,c014 22.20 41.00;c123 21.10 26.20;c072 11.40 16.80;c154 36.80 42.30;c117 14.80 20.50;c116 19.60 24.50;c070 5.60 14.70;c073 5.80 10.90;c151 11.80 18.30;c115 15.60 24.90;c117 13.50 26.60;c116 13.50 26.60;c145 22.60 40.40,42.38\r\nFZBK6,PO5L,Bedroom,5,6,Yes,A person walks in a bedroom and closes the door. They sit on the bed and put on a blanket and start watching television.,bed;blanket;covers;door;television,\"The person walks though a door to their  bedroom ,closing the door behind them. The person continues on into the room and climbs in to bed and throws the covers over himself.\",c132 11.50 21.00;c071 11.10 21.00;c134 8.20 21.00;c072 12.50 21.00;c097 0.00 5.20,20.12\r\n6VF2L,D0RU,Living room,7,7,Yes,A person walks into the room grasping a glass of water.  The person drinks some water then picks up a blanket from off the floor and throws it on top of a pile of clothes in the doorway.,blanket;clothes;cup;doorway;floor;glass;table;water,\"A person walks through a doorway, picks up a glass and drinks, then picks up laundry from the floor and places it on a chair.\",c097 7.70 15.80;c127 22.10 31.80;c001 24.30 32.50;c106 14.30 23.60;c071 24.70 32.30;c073 23.10 30.90;c070 22.90 32.10;c009 19.30 25.20,34.58\r\nJF36Q,2RTW,Living room,6,6,Yes,\"A person is in a recreation room opening a window, they then walk over to a table and closes a laptop.\",laptop;table;window,A person is looking out the window  they then close the wingow and the blinds then proceed to close the laptop on a table.,c089 0.00 7.80;c092 0.00 6.00;c046 25.40 31.00,29.58\r\n5HOAV,P6LJ,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is opening coffee and putting the camera on the shelf.,coffee;cup;dish;food;phone/camera;shelf;table,\"A person walks into a hallway places something on a table, then opens a jar of coffee and places the lid and then the jar on the table.\",c081 14.60 20.10;c109 21.30 27.00;c118 3.80 26.50;c009 14.50 19.60;c015 3.50 19.20;c061 3.60 26.80;c017 14.60 19.40;c062 21.50 26.80,26.17\r\nEWO2A,DXDI,Hallway,7,7,Yes,A person is watching their reflection in a mirror. They clean the mirror with a towel and then start running in place.,mirror;towel,\"A person is standing in front of a mirror looking at them selves they use a towel to clean the mirror, then they excersise in front of the mirror.\",c038 8.70 22.70;c095 8.70 22.70;c096 0.00 32.00,31.25\r\n9D37U,BYF9,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person kneels beneath their desk, using a vacuum to clean up some dirt. They stand up for a quick break and begin playing a short puzzle game on their phone.\",desk;dirt;floor;game;phone;vacuum,A person is using a vacuum cleaner on the floor. The person then takes a phone and begins to play with it.,c015 22.40 32.00;c016 22.50 32.00;c137 0.00 22.40;c127 5.50 22.80;c125 5.00 23.60,30.58\r\nEG1MY,YMXV,Bedroom,4,3,Yes,A person is seen sitting on a chair with their hands in the sink. They are holding a towel and began putting the towel on a towel rack,blanket;chair;clothes;television;towel;wire,This person is folding laundry and hanging it on a clothesline.;Person is sitting at a chair watching television with his arms crossed then grabs a blanket and folds and and places it on a clothing wire.,c033 5.70 14.60;c035 5.10 16.70;c132 3.40 10.80;c073 5.20 16.00;c004 5.70 32.00;c034 21.60 28.60;c037 5.20 30.00;c154 17.10 23.60,31.42\r\nK90LN,HR43,Kitchen,4,7,Yes,A person is cooking at the stove and opening rice from a bag into a pot.,bag;food;groceries;pot;stove,The person has a pan on the stove and pours the contents of a plastic bag in the pan. The person then checks to see if the stove is on.;A person standing at a stove cooking something in a pot on the stove.The person reaches and picks up a bag and pours it in to the pot.,c020 1.80 23.70;c021 2.90 9.30;c023 1.20 11.00;c147 0.00 29.00;c063 0.00 29.00;c061 0.00 29.00;c062 0.00 29.00;c130 0.00 29.00,28.17\r\nCA8KS,D0RU,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is walking and throwing a phone in a bag.,bag;chair;doorway;phone,A person walks through a door down a hallway holding a phone. The person places the phone into a backpack on a chair.;A person walks down a hall and throws their phone into a bag.,,30.54\r\nCO8ZB,5LWB,Stairs,6,7,Yes,\"A person is undressing, taking off their clothes as they are running up the stairs, holding their hand out to block the camera.\",clothes;stairs,A person undresses before running up the stairs.,c155 0.00 7.00;c150 7.60 14.70;c152 4.60 13.30;c000 3.70 14.40;c149 7.30 13.60,13.58\r\nTI9JB,UTMU,Laundry room,3,7,Yes,A person is laughing as they fold clothes in a laundry room. The person closes the washing machine door and folds a blanket.,blanket;clothes;door,A person is folding laundry. They close the dryer door and pick up a large sheet to fold up.,c006 19.70 25.80;c073 21.80 27.70;c000 0.00 10.10;c070 21.60 41.30;c075 21.80 41.70;c001 16.80 22.90;c004 0.00 21.90;c002 0.00 41.30,41.33\r\nKENG1,1OHU,Kitchen,6,6,Yes,\"The person puts on their shoes while smiling, then walks over to the cabinet and pours a glass of water.\",chair;cup;glass;shoe;water,\"There is a person that picks up a pair of shoes sits down and puts the shoes on, then stands up and walks into the kitchen and picks up a glass.;A man picks up a pair of slippers and sits down to put them on. He then stands up and walks to the kitchen where he pours himself a glass of water.\",c108 29.30 38.00;c151 2.70 9.10;c154 13.50 18.90;c055 5.30 12.10;c107 23.30 38.00;c152 4.00 38.00;c054 2.50 8.00;c056 0.00 6.10;c110 23.50 27.70;c059 4.00 17.70,37.42\r\n1T8RK,UD06,Bathroom,6,7,Yes,\"One person opens a bag and takes out a towel, then washes up.\",bag;hair;mirror;towel,A person is looking in the mirror. A person gets a bag and takes out a towel.;Person is fixing hair in mirror. then grabs bag from floor take towel out and gets it wet and start wiping their face.,c020 2.60 7.90;c021 3.70 11.50;c034 7.30 18.60;c023 1.80 7.10;c035 7.20 12.30;c096 0.00 4.10;c022 2.70 8.30;c038 17.10 33.00;c033 10.70 33.00;c144 0.00 4.10,31.58\r\n5J91T,QRES,Bathroom,6,4,Yes,\"A person opens a medicine cabinet in the laundry room. The person looks through the cabinet for a moment, looks into the mirror and sneezes. The person leaves the room.\",cabinet;doorway;medicine;mirror;shirt,A person opens a medicine cabinet then shuts it after looking at the medicine. The person then repeatedly sneezes in their shirt before leaving.,c096 0.00 17.00;c113 0.00 5.00;c153 4.20 12.80;c093 0.00 7.50;c097 16.00 21.00,20.04\r\nFZIW9,3VLX,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is standing in their closet smiling and holding a sandwich and a bag of food.,bag;closet;doorway;food;sandwich,\"A person is leaning in the doorway of a closet. The person is smiling, holding a bag of chips, and eating a sandwich.;A person is eating food in a closet.\",c061 0.00 7.90;c021 11.90 20.00;c067 26.80 34.00;c063 0.00 3.00;c065 16.20 34.00;c152 4.70 31.80;c156 4.50 34.00,32.71\r\n7BAUC,WG9D,Bedroom,6,5,Yes,\"A person is standing in their home office, grasping a book and drinking coffee.\",book;coffee;cup,Person drinking coffee from a coffee mug while holding a book.,c032 0.00 7.00;c106 4.00 8.00;c026 0.00 8.00;c107 0.00 8.00,7.12\r\nK8ZIK,RPBD,Kitchen,7,6,Yes,\"A person is drinking milk taken from the refrigerator, then cooking at the stove in a kitchen.\",cup;food;refrigerator;stove,A person is getting into a fridge they take some milk  out then they pour a glass of milk and drink it and close the fridge,c143 0.00 4.80;c147 22.10 30.00;c142 16.10 22.60;c108 7.30 15.20;c061 10.90 17.30;c063 4.90 11.00,29.33\r\nORW6Y,JVLO,Living room,6,6,Yes,One person puts a box on a shelf while another person holding a pillow starts sneezing.,blanket;box;doorway;pillow;shelf,A PERSON WALKS FROM THE ROAD INTO A HOUSE AND ENTERS INTO MULTIPLE ROOMS. ANOTHER PERSON ENTERS INTO THE FRAME AND SNEEZES MANY TIMES.,c040 0.00 24.60;c076 17.60 31.00;c153 21.80 31.00;c081 18.70 25.80;c070 16.40 31.00;c097 9.50 16.80;c042 18.80 24.80,30.12\r\nM23X2,0RNU,Garage,5,7,Yes,A person runs into the garage and grasps a bag. The person puts the bag into a cabinet and smiles.,bag;cabinet;doorway;drawer,\"The person ran into the garage, grabbed a bag, opened it, looked around, and put it in the drawer before smiling at the camera\",c020 3.70 16.00;c021 4.70 11.00;c022 10.60 16.40;c112 11.60 17.80;c113 9.60 14.90;c150 1.90 7.40;c152 17.00 23.00;c023 3.70 9.80;c097 1.70 6.70,22.00\r\nXO97L,P6LJ,Living room,4,5,Yes,\"A person is snuggling on the sofa. The person stands and walks to the window, where the person begins tidying the curtains.\",blanket;clothes;sofa;window,A person sits on a sofa with a blanket and a pillow. They start fixing their curtains.,c123 6.10 23.80;c070 1.10 24.10;c154 20.10 25.20;c151 5.30 10.40;c002 0.20 9.50;c004 0.20 9.50;c092 15.60 20.70,55.83\r\nXHB9U,DLI2,Bedroom,4,7,Yes,\"A person is in a bedroom holding a mirror, they then put it down and start dressing by a bed.\",bed;clothes;mirror;pants;table,\"Person grabs a mirror and looks herself up. Puts down the mirror on the bend, grabs pants and puts it on.;A person holding a hand mirror looks at themself in it. They then set it down on the bed and pick up a pair of pants, which they put on.\",c093 0.00 14.10;c096 0.00 15.30;c000 11.20 36.00;c148 11.20 36.00;c009 6.20 15.00;c001 14.30 34.60,35.00\r\nRXRAS,2RTW,Living room,6,6,Yes,A person is working to clean up and organize his recreation room and begins the process by playing a quick video game and then grasping some boxes containing old dishes and bed linens to take to the Salvation Army for donation.,box;clothes;controller;couch;dish;game;mirror;phone;table;television;tv,\"A person is tidying up a table, while watching television. A person then begins to play a video game. A person then picks up dishes off the sofa.;A person organizing a table, starts to play video games on a tv, then grabs a box off the couch.;A person is cleaning up a table and playing a video game the walks over and picks up a box.\",c118 0.00 14.20;c012 0.00 14.30;c132 11.10 30.50;c043 27.90 33.00;c009 0.50 8.30;c040 28.20 33.00,31.58\r\nCN480,WG9D,Bathroom,4,6,Yes,\"A person is dressing in front of the mirror. Then, grasping their hairbrush, the person walks over to sit on the edge of the bed.\",bed;mirror,\"A person adjusts hat while looking in mirror, then walks into a room and sits on bed.\",c135 4.90 8.00;c096 0.00 5.40;c151 3.50 8.00,7.46\r\nXS7RN,S053,Laundry room,6,6,Yes,A laughing person carries a box into the closet and lays it on the floor.  The person takes a pair of shoes out of the box and throws them in the corner.,book;box;clothes;floor;phone;shoe,\"A person is walking into a room with a box, they then sit down on the floor and take out and throw a book on the floor.;A person enters the room, sits on something, opens a box and removes shoes, and then stands up and put the box on a washing machine.\",c042 28.00 33.00;c125 10.50 31.90;c151 9.40 15.50;c031 21.40 26.90;c042 6.70 17.40;c041 12.30 19.50;c154 27.50 33.00;c056 13.60 30.70;c058 16.90 24.20;c126 12.60 18.20;c002 30.10 33.00,31.67\r\n4ZN66,S053,Laundry room,6,6,Yes,\"A person is tidying their closet. The person grasps a box, moves it, and then takes out their phone.\",bag;box;closet/cabinet;floor;phone;wardrobe,\"A person is looking through a wardrobe. A person starts tidying up the floor. A person picks up a box, and takes a phone out their pocket.\",c015 26.50 34.00;c016 27.00 34.00;c040 17.70 31.50;c022 9.10 17.60;c023 9.10 17.60;c043 19.40 30.50;c114 0.00 21.40;c020 10.10 16.60;c042 24.90 30.90;c018 26.50 33.20,32.79\r\nUETKQ,S053,Recreation room / Man cave,6,6,Yes,\"A person is standing in front of a closet putting a sandwich and a picture in a bag, they then leave the bag in the closet.\",bag;closet;door;food;sandwich,A person is putting a sandwhich in a bag and puts the bag in a closet. He then laughs at the ceiling.;A person opens a bag then puts a sandwich and something else inside. The person then closes the bag. Next the person opens the closet door and throws the bag inside. The person closes the door throws their head back laughing.;A person opens a bag and puts two sandwiches inside then opens a door and throws them inside a closet. The person then leans back and looks to the ceiling.,c113 18.10 23.10;c020 3.10 8.40;c024 11.90 19.30;c154 0.00 5.30;c149 23.40 28.20;c006 16.90 22.40;c021 0.00 4.80;c068 0.20 10.10;c113 13.50 22.40;c067 0.00 18.40;c061 0.00 7.10;c063 3.40 8.70;c062 0.80 10.50;c112 14.60 21.50;c069 3.10 9.30;c141 13.20 18.40;c022 15.50 20.70;c064 15.50 20.60;c008 13.00 25.70,30.50\r\nBVBZF,OUKK,Living room,5,7,Yes,\"A person fixes the picture on a television, then eats a banana.\",food;television,The person is eating a banana while trying to turn on the Television. He eventually turns on the television,c156 13.50 28.00;c061 11.90 25.90;c132 14.20 28.00,27.33\r\nEYQ6U,P6LJ,Bedroom,4,5,Yes,Person is leaning against pillow while eating a sandwich and pouring soda into glass. Person is watching television and smiling.,cup;food;glass;pillow;sandwich;television,A person turns on the camera then walks toward bed with a drink.  The person then takes something from the bed and puts it inside the cup.  The person then readjusts themselves and lies with the drink.  The person then turns on the television.  The person then turns off the camera.,c132 78.60 99.30;c108 32.60 43.10;c067 75.30 101.50;c156 81.80 90.10;c151 7.70 16.60;c154 0.70 7.40;c061 4.50 105.80,108.08\r\n7MI5Z,C7O9,Laundry room,6,7,Yes,A person is laughing while on the phone in the laundry room.  The person then walks over to some dishes to inspect them.,dish;phone,A person talks on a phone on the laundry then picks up dishes and examines them.,c015 0.00 29.00;c019 0.00 29.00;c118 17.90 29.00,28.42\r\nJ99Z8,BYF9,Kitchen,4,7,Yes,A person is seen watching something on their camera while eating food. They begin smiling as they finish their food.,camera;food;phone;table,A person is looking at a camera while eating a snack.,c015 0.00 25.80;c156 5.20 30.00;c152 0.40 9.20;c017 0.00 30.00;c009 4.00 30.00;c016 0.00 30.00,29.33\r\n80E3X,DYEW,Bedroom,7,7,Yes,A person awakens in bed and stands up. The person turns on the light and begins eating a bag of chips. The person looks at a picture hanging on the wall.,bag;bed;food;light;picture,\"A person awakens.  They sit up, turn on a light, grab a bag of food and begin eating while looking at a picture on a wall.\",c134 0.00 6.90;c020 12.00 31.00;c063 16.80 22.30;c156 19.00 31.00;c135 6.20 31.00;c104 8.80 14.10;c021 12.00 23.00;c146 0.00 10.80;c088 16.10 31.00;c133 0.90 7.80;c061 12.00 31.00,30.33\r\nUYFET,ZAWX,Bedroom,5,3,Yes,\"A person is standing and dressing in the doorway. Then, turning the light off, the person begins leaving the room.\",clothes;cuff;door;light;pants;shirt,This person buttons up shirt then straightens the sleeves and then straightens out pants exiting the rooms before turning the light out.;The person adjusted their clothes in their bedroom. The person then turned off the light and walked out of the bedroom into the hallway.,c105 20.50 25.00;c097 22.50 32.00;c004 1.90 14.70,31.42\r\nI4K7B,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,One person grasps a pillow from an entryway shelf and puts a folded blanket back on the shelf.,blanket;pillow;shelf,\"A person grabbed a pillow. The person grabbed a blanket as well.  The person then put the pillow on the shelf, then began to fold a blanket.\",c081 13.40 18.90;c077 14.00 19.00;c075 21.00 31.00;c074 13.10 31.00;c071 13.10 31.00;c152 0.00 31.00;c076 0.30 10.50;c070 6.50 20.30;c073 6.50 20.40;c079 0.00 19.00,30.42\r\nM5YLS,H8N1,Bathroom,7,7,Yes,A smiling person is sitting in their bathroom. They turn on the light and watch a video on their phone.,light;phone;video,A person is smiling while playing on the phone.,c016 8.50 27.90;c105 23.70 29.40;c152 14.30 22.20;c104 4.90 9.90;c015 7.00 28.50,29.83\r\nRF39W,H8N1,Kitchen,6,6,Yes,A person was putting food away on shelves.  They put away the coffee and medicine on the top shelf.,closet/cabinet;coffee;cup;food;medicine;shelf,A person in the kitchen puts away coffee and medicine into the cabinet.,c081 0.00 5.30;c062 6.80 15.00;c109 8.60 15.10;c114 0.90 22.40,27.83\r\n8E5AD,T7C3,Kitchen,7,7,Yes,The person is standing by the table holding a vacuum.  They begin eating.,cabinet;counter;food;sandwich;table;vacuum,\"Person standing in kitchen with vacuum looking at cabinet, turns around, put vacuum  near counter, picks up sandwich from bowl, eats it, looks up to ceiling and back down to sandwich.;Person is standing by cabinet and holding vacuum cleaner by table then sets it down and starts eating sandwich.\",c137 0.00 22.30;c156 21.30 33.00;c065 20.90 33.00;c069 18.00 26.10;c063 19.70 25.70;c067 21.20 33.00;c061 21.00 33.00,31.92\r\nY5VGQ,AH2J,Kitchen,7,7,Yes,A person sneezes next to the refrigerator in the kitchen and then begins tidying some dishes.,cabinet;cup;dishes;faucet;glass;refrigerator,\"Person walks into the kitchen and opens the refrigerator and closes it then sneezes person then grabs something off of the counter and places it in a cabinet before closing it and walking away.;A person enters a kitchen, opens the refrigerator door and then closes it and sneezes twice. Then the person turns around and grabs a coffee mug from the shelf and places it into a cupboard. The person turns on the water faucet and rearranges the dishes in the sink.\",,35.88\r\nTKOYQ,CCI9,Living room,6,6,Yes,One person is playing with a camera as another person throws them a picture taken from a box on a shelf.,book;box;camera;card;floor;phone;shelf,A person picks up a card and throws it at another person who is standing still and holding a camera.;A person walks up to a shelf and sets a box on it. This person takes some comic books off the shelf. Another person stands nearby fixing a camera. The first person throws a comic book at the other person.,c081 20.70 26.10;c016 7.40 12.50;c031 12.10 17.00;c030 0.00 5.10;c116 15.90 27.40;c126 9.40 18.30;c015 1.30 32.00;c026 0.00 17.00;c117 0.00 2.90;c115 0.00 16.60;c127 15.90 21.30,31.29\r\nI5LAC,KASL,Basement (A room below the ground floor),5,6,Yes,\"A person walks into the basement holding a bag, and a broom. They put the bag on the table, and sweep the floor. They sweep the trash into a dustpan and empty it into the bag.\",bag;broom;doorway;floor;table,Person coming downstairs to basement to sweep when a dog grabs the broom and won't let him sweep.,c098 0.00 39.30;c020 0.00 7.00;c009 2.10 7.70;c097 0.00 3.80;c127 4.40 40.20;c022 2.30 7.20,45.42\r\nH3241,5UGG,Home Office / Study (A room in a house used for work),6,7,Yes,A person is standing with a broom and another person is fixing a laptop.,broom;laptop;table,Person A is fixing a laptop while Person B is standing holding a broom.,c098 0.00 44.00;c011 0.00 44.00;c014 0.00 44.00,42.54\r\nAYMCZ,SIZN,Laundry room,6,7,Yes,\"A person is putting a pillow into a washer, then closing the door on the washer and finally opening a laptop in a laundry room.\",clothes;doorway;laptop;pillow;washer,A person is holding a pillow and putting it in the washing machine then opening a laptop and working on the laptop.,c077 4.40 13.50;c047 18.00 30.00;c048 18.70 25.20;c052 17.80 30.00;c005 3.80 16.50;c097 1.30 6.40,29.46\r\nA54DW,9Y7F,Kitchen,5,7,Yes,A person is sitting at a table in the kitchen doing homework.  Another person is drinking coffee at the table and smiling.,coffee;cup;homework;paper;table,A person is doing homework while sitting on a table. A second person drinks coffee and smiles at the first person.,c106 0.00 4.80;c145 0.30 11.10;c010 23.50 32.00;c152 19.10 26.10;c115 0.00 21.10;c107 0.00 6.40;c107 8.20 23.30,31.25\r\nFZ0LU,OUKK,Hallway,3,7,Yes,\"A person is in a hallway playing with a book by tossing it in the air, they then pick up a coffee mug from the floor and walk out the doorway with it.\",book;coffee;cup;doorway;floor,\"A person is walking down a hallway, pacing back and forth, juggling a book. The person then reaches down, grabs a glass of coffee, and walks into the kitchen.\",c097 2.50 10.20;c110 16.50 22.00;c115 6.30 21.40;c026 6.30 21.40;c031 6.30 21.40;c028 5.60 22.60;c154 2.30 23.60,29.71\r\nQN1WE,1OHU,Home Office / Study (A room in a house used for work),6,6,Yes,A person grasping a doorknob sneezes. The person lets go of the doorknob and turns toward a desk.,doorknob;laptop,\"A person holding a closet door sneezes, then walks over to a computer and stares at it for a while.\",c141 0.00 15.60;c153 7.50 14.50;c051 15.80 31.00,30.08\r\nRKCKK,2RTW,Pantry,6,6,Yes,\"The person was standing in the pantry trying to decide which food to have for dinner. They glanced around the room, and spotted a mirror on the shelf next to the cans of food. The person looked into the mirror, then began pouring some sauce into the pot they were holding.\",cook top;dish;food;jar;mirror;pan;pot;sauce;shelf,A person is in a kitchen in front of the stove top and a mirror. The person pulls food off a shelf and adds it to the pan that the person is cooking in.;A person grabs some food off a shelf and looks in a mirror while they unscrew a glass jar of pasta sauce.;a person holding a pot puts sauce in the pot from a pantry shelf.,c064 5.10 10.10;c154 0.00 30.60;c096 12.20 18.90;c061 15.00 31.00;c062 15.60 29.40;c063 2.50 10.10;c147 0.00 31.00;c118 0.00 22.30,30.08\r\n8MY8P,2RTW,Kitchen,6,6,Yes,\"A person takes some food from the shelf of a pantry. The person begins cooking it in a microwave, and takes a drink of coffee while waiting for it to finish.\",coffee;cup;dish;food;microwave;shelf,A person takes some food off the shelf and places it in the microwave. They grab a cup and start drinking from it.,c062 6.70 15.30;c063 0.60 7.10;c107 17.20 32.00;c106 19.90 26.70;c147 7.80 17.20;c120 0.80 7.80,30.58\r\n7K163,WG9D,Pantry,6,7,Yes,A person is closing a bag.  Then a person is leaving with a chair they are taking out of the pantry.,bag;chair,\"A person puts on a bag, picks up a chair and carries it away.\",c020 0.00 6.00,6.79\r\nHFYNW,HJJ4,Kitchen,6,7,Yes,A person is eating in the kitchen while sitting in a chair. They look up the light then they start sneezing.,chair;dishes;food;table,A person is sitting at a kitchen table eating and sneezes a couple times.;A person is eating food from a dish on a table and sneezing while sitting in a chair.,c059 0.00 20.00;c156 0.00 9.00;c153 14.50 19.00;c011 0.00 20.00,19.17\r\nVAIVN,DXDI,Living room,5,7,Yes,Person is lying on the couch in the living room enjoying a good book.  Person begins to snuggle with a blanket and kicks off shoes before falling asleep.,blanket;book;shoe;sofa,\"A person is laying on a sofa reading a book, the person grabs a blanket and covers up with it, and takes off their shoes.\",c025 3.50 12.20;c032 0.00 10.50;c072 10.80 24.80;c057 19.40 30.90;c122 0.00 40.00;c028 6.80 14.40;c026 0.00 14.00;c071 10.00 36.60;c073 10.20 16.50,39.29\r\n6SY23,HJJ4,Kitchen,7,7,Yes,\"The person is opening the dishwasher door, and then takes the dishes out of the dishwasher and places them in the cabinet.\",cabinet;dish;shelf,A person opens the dishwasher and starts putting dishes in the cabinet.,c112 23.40 28.00;c113 4.30 10.60;c119 8.40 28.00;c120 7.30 28.00;c114 17.00 28.00;c081 15.70 28.00;c118 12.20 28.00,26.96\r\nZOK5T,9OK1,Hallway,6,6,Yes,\"A person runs down the hallway, carrying a bag. The person leaves the bag on the shelf, and returns from where they came.\",bag;shelf,\"A person runs down a hallway, puts a bag on the shelf, then runs out of the hallway.\",c022 0.70 6.50;c081 0.70 6.50;c150 0.00 4.80,10.62\r\n9SNMR,KFGP,Laundry room,6,7,Yes,A person is grasping a towel. The person smiling as they take a picture.,doorway;phone/camera;picture;towel,A person walks with a towel while also using a phone.,c033 0.00 23.00;c018 3.90 9.40;c016 5.50 21.80;c017 17.80 23.00;c097 0.00 3.10;c015 4.20 23.00,21.79\r\nD7LMI,3H6W,Living room,7,5,Yes,A person is walking holding their shoes.  Then a person is grasping a tissue box off the counter.,box;dish;shelf;shoe,\"A person walks into a room holding a pair of shoes. They pick up a box and then put the box and the shoes on a shelf.;A person (or just a torso) holding shoes walks in begins holding a box, then puts both the box and shoes on a shelf.\",c040 7.20 22.70;c081 17.60 23.50;c053 3.40 22.10;c119 22.90 27.00;c118 19.70 27.00;c054 0.00 26.90;c056 1.50 6.70;c120 14.20 27.00,26.21\r\n5S2ZU,DXDI,Kitchen,6,7,Yes,\"A person is seen cooking on the stove. They leave for a moment and set down a chair, which they sit down on.\",chair;doorway;food;stove,A person is in the kitchen cooking. The person then goes and gets a chair and sits down.,c059 25.50 31.80;c147 0.00 18.50;c097 16.90 21.90,37.42\r\nKFOX4,Z68L,Bathroom,7,7,Yes,A person in the bathroom is taking medicine. The start throwing a blanket around.,blanket;floor;medicine,\"A person is holding a blanket, while taking some medicine. A person throws the blanket on the floor and picks it up.\",c129 8.20 14.00;c128 5.50 12.10;c071 20.90 28.10;c074 13.80 19.00;c073 25.60 31.00;c070 0.80 17.80;c126 14.00 19.00,34.67\r\nF6A4W,H8N1,Living room,4,5,Yes,\"A person is in a living room holding a cup of coffee, they then get up and start undressing by taking off their shoes by a table.\",chair;cup;dish;glass;shoe,A person sits down while drinking from a glass. They then remove their shoes and toss them aside.;Someone sits down while drinking from a glass and begins taking off their socks.,c057 8.40 13.10;c106 2.40 9.40;c151 0.00 5.90;c059 2.00 25.30;c058 7.10 15.80;c106 4.30 13.10;c056 8.00 15.10;c107 0.00 25.70;c119 21.80 28.00;c118 0.00 25.80,28.42\r\nXVNJC,P6LJ,Bedroom,4,5,Yes,\"A person is snuggling in bed watching TV, while eating a sandwich and looking at a picture.\",bed;blanket;book;picture,\"a person gets into bed, settles into pillow, picks up picture and looks at it, then gets up.\",c134 0.60 45.30;c027 23.70 41.10;c135 3.50 50.80;c032 25.30 46.00;c026 23.70 32.90;c070 1.90 12.20;c072 4.60 46.60,52.38\r\nUA2PO,6RE8,Bathroom,7,7,Yes,\"A person is dressing in the bathroom.  The person pulls their clothes from a bag, looks at the shirt, and laughs before putting it on.\",bag;clothes,A person in a closet grabs a bag of clothes. They select a shirt and put it on.,c021 4.00 10.60;c148 16.80 33.00;c023 3.00 8.70;c000 4.80 20.40,32.42\r\n7Z69Y,3VLX,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is tidying up their closet, afterwards they remove a bag from it and sit down on a chair and starts dressing.\",bag;chair;closet;clothes;doorway;shelf;towel;wardrobe,A person hold a bag in a closet. a person gets dressed in a closet while sitting on a chair.;A person is folding clothes in the closet and taking a bag and throwing it out the floor before grabbing a sweater then sitting down and putting it on.,c020 20.90 29.70;c151 35.90 41.30;c001 0.00 18.10;c004 0.00 20.70;c059 36.20 42.50;c148 38.50 58.00;c002 29.70 41.30;c114 0.00 40.20;c021 21.20 27.20;c023 19.80 26.30;c097 24.00 30.90;c022 23.50 29.50;c037 0.00 6.20;c081 7.90 18.40,56.58\r\nRHCFX,EA2K,Bedroom,5,7,Yes,Person is lying on bed snuggling with glass of coffee.,bed;book;coffee;cup;glass;man;pillow,A person is reading and drinking coffee on a bed. They lay down and continue to drink after closing the book.;a man laying on a bed with a book and something to drink.,c106 3.20 9.00;c134 0.00 34.00;c026 0.00 6.70;c107 0.00 34.00;c146 14.50 20.40;c078 23.10 28.60;c032 0.00 8.70,33.25\r\nE9FY2,ZAWX,Bedroom,6,6,Yes,\"A person is eating a sandwich, then undressing and finally smiling while using a laptop in a garage.\",bread;chair;clothes;computer;food;jacket;laptop;sandwich;table,\"A person is sitting on a chair next to a table. The person takes a sandwich from the table, eats the sandwich, and puts the sandwich back. The person then takes off a vest, and begins working on a laptop, also on the table.;This person eats some bread, then takes off a jacket, then works on the computer.\",c065 0.00 6.00;c156 0.00 5.50;c152 25.60 30.30;c052 15.10 32.00;c155 9.60 18.60;c059 0.00 32.00;c068 1.40 7.20;c001 3.50 19.60;c009 0.50 7.40;c067 0.00 7.50;c063 0.00 3.80;c061 0.00 6.60;c000 12.90 18.60;c062 1.50 7.20;c014 14.60 32.00;c011 0.00 32.00;c069 0.00 3.50,30.75\r\n6Y709,9Y7F,Kitchen,5,7,Yes,A person is opening the door to the kitchen and walks toward a window.  Another person is sitting at the kitchen table holding a bag.,bag;door;table;window,A person enters the kitchen holding a paper while another holds a book bag.,c010 0.00 32.00;c020 0.00 32.00;c092 6.00 15.20,30.75\r\n99XHN,YA10,Kitchen,7,7,Yes,A person is holding dishes while food is cooking on a stove in the background.,dish;food;microwave;stove,A guy in the kitchen waiting for the microwave to get done.,c118 0.00 28.00;c061 0.00 28.00;c147 0.00 28.00;c119 25.20 28.00,27.33\r\n14VCB,3531,Kitchen,6,6,Yes,One person sits in the doorway of the pantry drinking from a glass.,chair;cup;dish;glass,A person is sitting on a chair in a hallway drinking out of a glass .;A person is sitting on a chair and drinking something from a cup.,c106 0.00 6.20;c059 0.00 32.00;c107 0.00 32.00;c118 0.00 32.00,31.21\r\nIK4Q8,KQI6,Living room,7,7,Yes,One person on an old sofa opens a box and starts playing with it when another runs in with a broom.,box;broom;sofa;table,The person walks to the couch and sits down. They place a box on the table then begin to play with it. A second person with a broom walks through the room.,c098 2.20 16.10;c043 3.30 8.00;c045 15.60 32.00;c123 1.90 32.00;c151 0.60 5.70;c009 1.60 7.90;c040 12.40 17.30;c039 14.10 21.10;c041 17.80 23.80,30.83\r\nCZPFO,UTMU,Closet / Walk-in closet / Spear closet,3,7,Yes,A person fixes the vacuum in the closet then closes the door and picks up a broom.,broom;closet/cabinet;door;vacuum,\"A person opens up a closet door and closely inspects a vaccum cleaner.    After inspecting, the closet is closed up and a small hand held broom is picked up.\",c006 26.10 36.60;c008 0.20 6.90;c098 32.40 41.00;c136 3.50 29.50;c151 2.20 8.10;c112 25.90 35.50;c113 0.40 6.80,39.54\r\nIDW61,UTMU,Stairs,6,7,Yes,A person is standing on the stairs while drinking from a glass and holding a book.,book;cup,A person is standing in front of the stairs reading a book holding a glass.,c107 0.00 33.00;c026 0.00 33.00;c032 0.00 15.50;c027 0.30 7.30,32.12\r\nBQXVG,DXDI,Bathroom,5,6,Yes,Person walks into bathroom and places coffee on the counter.  Person then stands next to laptop and quickly runs from the room after hearing something alarming.,coffee mug;cup;dish;doorway;laptop;sink,\"A person enters a room, puts a mug down, then leans against a sink and does something on their laptop. The person then leaves the room.;A person walks into a bathroom with a cup, sits the cup down, they then go to their laptop to interact with it, and then runs out the bathroom.\",c052 6.20 16.30;c154 6.40 16.60;c109 1.30 6.10;c097 0.00 3.90;c150 13.20 18.10;c119 1.40 6.10;c107 0.00 5.80,18.00\r\nDKTVI,ZAWX,Kitchen,7,7,Yes,A person is playing with a towel while another person is watching food.,blanket;dish;doorway;food;towel,A person is playing with a towel.  Another person comes in the door and starts covering and uncovering dishes.;A person folds a towel while another person enters through a doorway and looks at food in various dishes.,c033 3.40 14.20;c036 7.00 13.60;c097 15.60 28.30;c062 25.70 32.00;c119 17.10 26.60;c061 26.00 30.60;c062 16.20 21.90;c118 18.00 24.20;c118 22.20 29.50;c075 0.00 14.50;c119 16.20 21.90,30.54\r\nBT1WN,18IT,Living room,6,6,Yes,One person leaves the hallway with a bag and a folded towel while another person works on a broken shelf.,bag;floor;paper;shelf;towel,\"The person grabs his belongings off the desk, while the other person is sitting on the floor fixing something.;A person is sitting by a shelf while another person comes over and puts a scarf on and leaves while the first person is sitting and tiding up\",c082 17.30 35.00;c034 5.70 18.50;c115 18.00 35.00;c125 0.00 35.00;c035 5.60 11.30;c081 0.40 5.10;c081 25.40 30.20,34.38\r\nENA3F,T7C3,Stairs,7,7,Yes,\"A person is smiling while hopping down the stairs on just one foot while putting on their shoes, despite still not being fully dressed yet and only wearing a wet towel.\",blanket;shoe;towel,A person walks down he stairs and puts on their shoes while wrapped in a towel.,c055 8.70 28.00;c070 0.00 28.00,27.04\r\nJU74I,3VLX,Bedroom,6,7,Yes,\"A person is standing in the bedroom holding a cup of coffee and watching television.  The person laughs at the television, then grabs their laptop off the bed and leaves.\",bed;coffee;cup;dish;laptop;television,A person looks into a mirror while drinking coffee and then carries a laptop out of the room.,c131 9.80 19.30;c132 0.00 18.40;c106 0.00 21.00;c047 13.80 21.00;c149 9.70 18.70;c107 0.00 21.00;c118 0.00 21.00;c051 0.00 16.70,19.92\r\nWMR4G,D0RU,Dining room,6,7,Yes,A person is putting a glass next to some food.  Then a person is watching the food cool off because it was very hot.,cup;food;glass;water,A person is holding a glass of water. A person then eats some food.;He walks over and sets down a glass and eats food from a bowl.,c061 14.30 19.80;c063 14.10 18.80;c109 10.00 17.10;c062 21.40 31.40;c107 3.50 16.10;c110 3.30 16.10;c156 21.40 34.00,33.17\r\nK5DIB,HJJ4,Garage,7,7,Yes,A person is snuggling in a blanket and laughing while looking at a book. The person then turns off the light and leaves.,blanket;book;chair;light;towel,Person is sitting in a living room reading a book wrapped in a blanket. Person gets up and turns off a light.,c072 0.00 16.30;c029 0.00 13.20;c105 12.20 18.40;c149 0.00 9.40;c154 12.10 19.00;c059 0.00 13.50;c032 0.00 10.30;c038 0.00 12.90;c026 0.00 12.40,20.67\r\n9C4JX,9PLL,Stairs,7,7,Yes,The person was holding a bag of groceries in one hand. They put them down and picked up a glass of water and started drinking it while looking at a picture.,bag;cup;glass;groceries;hand;picture;water,\"A person is standing on the stairs while holding a bag full of items, they set the bag down onto the stairs. They pick up a cup and take a drink, wipe their mouth with their hand and look at some pictures that are on the stairs.\",c020 0.00 9.40;c022 1.80 8.90;c106 11.00 22.70;c110 5.60 11.90;c022 4.20 34.80;c107 7.50 35.70;c088 1.80 25.00,34.50\r\nQHARF,CCI9,Kitchen,6,6,Yes,\"A person is holding a bag of food, like chips. Another person starts pouring a glass of water while running the faucet.\",bag;dish;food;table,\"Two people are standing in a room, one holding a bag and the other interacting with something on a table.;A person prepares food and eats it.  Another person holds a bag.\",c020 0.00 11.30;c121 0.00 33.00,31.96\r\nRZNSM,0KZ7,Bathroom,7,7,Yes,\"A person is drinking a glass of water standing in front of a window in a bathroom. The person then grabs a broom and starts sweeping, running the broom over the bathroom floor.\",broom;cup;floor;glass;water;window,\"A person is looking out a window and drinking some water from a glass, they then pick up a broom and begin sweeping the floor.\",c098 12.30 26.00;c102 12.00 26.00;c127 12.00 26.00;c109 10.70 19.00;c100 9.90 17.30;c092 0.00 13.70;c106 0.00 14.20;c107 0.00 14.20,25.12\r\nSBW7O,9PLL,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person standing in the entryway, peeks out the window. The person opens the door, and picks up a box.\",box;door;window,\"A person looks out a window, picks up a box from the doorway and opens the door.\",c092 0.00 12.50;c040 15.20 31.40;c043 26.70 32.00;c008 27.10 32.00,31.29\r\nOYNBC,HR43,Kitchen,4,3,Yes,A person is running around in their kitchen. They start pouring a glass of water into the sink and then place the empty glass into the refrigerator.,door;frege;refrigerator,\"A person is opening the fridge, then closes the fridge door.;The person was dance by                This person was dancing  by moving around shaking his hands,stop opened  refrigerator closed the refrigerator and walked away\",c150 0.00 13.60;c143 15.00 20.00;c142 18.10 22.70;c008 15.20 20.10;c006 17.40 22.20,24.46\r\nKKP3R,9Y7F,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is walking to the cabinet and fixing the clothes.,cabinet;clothes,A person is walking into a room opening a closet or wardrobe and putting clothes away.,c113 6.00 12.20;c114 13.90 31.00;c001 14.00 31.50;c004 8.40 30.70,31.96\r\nFSHB7,UTMU,Garage,5,7,Yes,A person is sitting on the floor while snuggling in a blanket with a book in their hand.,blanket;book;floor;hand,A person snuggled in a blanket is kneeling on the floor reading a book.,c028 30.10 34.00;c032 0.00 34.00;c072 0.00 34.00;c125 0.00 34.00;c027 0.00 13.60;c026 0.00 34.00;c027 1.20 6.70,33.21\r\nHSSOZ,AH2J,Kitchen,7,7,Yes,A person is cooking something at the stove then takes the pot and puts it into the sink.,dish;food;pot;sink;spoon;stove,A person turns the stove on and then stirs something inside the pot. They add some spices and then continue stirring. When finished they turn the stove off and put the dish in the sink.,c147 0.00 29.60;c119 22.30 33.90,34.00\r\nWBATR,8718,Kitchen,5,7,Yes,\"A person is drinking a glass of wine, eating food and then undressing in a hallway.\",box;clothes;cup;food;glass;shirt;table;water,\"Drinking water out of a glass takes out some food from package eating the food then takes off some clothing;This person drinks some water, picks up a box of food, eats it, then takes off a shirt.\",c061 24.60 32.50;c156 24.60 32.50;c041 1.20 13.90;c106 0.00 6.40;c155 27.20 34.00;c063 25.80 30.10;c062 26.10 31.50;c002 28.30 34.00;c107 0.00 5.40;c063 3.40 31.00;c009 0.50 5.50;c062 1.70 31.30;c109 0.50 5.40,33.33\r\n2MURI,A8P9,Kitchen,5,5,Yes,\"A person is grasping their phone, reading something on it. The person smiles then sets it down onto a pillow.\",doorway;phone,The person is standing in the kitchen looking at his phone,c017 8.00 13.80;c015 0.00 13.00;c016 0.00 13.00;c097 11.40 17.10,17.29\r\n7ZUE1,D0RU,Kitchen,4,6,Yes,A person is sitting on the sofa. The person gets up and walks over to the table.,glasses;sofa;table,\"A person is sitting on a couch, and then puts their glasses on before looking for something on a table.;A person is sitting on a sofa wiping their face and then putting on glasses and walking to another room.\",c123 0.00 18.50;c012 20.80 28.50;c154 14.80 20.40,31.67\r\nXWY6P,JVLO,Entryway (A hall that is generally located at the entrance of a house),4,3,No,A person is opening the closet door. This person is laughing and talking on the phone as they hang up a coat.  They put the phone down on a table and pick up a laptop.,clothes;door;phone;table;towel,\"A person is  walking inside of a house talking on a phone then grabs a towel and moves a chair.;A persons walks into a room. The person grabs their phone out of their pocket and puts to their ear, they continue walking into the room picking stuff up\",c008 0.00 9.70;c015 3.70 24.00;c035 9.90 21.50;c097 0.60 8.20;c141 0.00 5.90;c019 5.50 17.10;c149 6.10 14.40;c033 10.70 34.00;c009 12.80 17.80,32.50\r\n2JR26,HR43,Hallway,5,5,Yes,A person in the hallway is dressing by putting a jacket on and then wrapping a towel on their head. They start drinking some coffee from a glass.,clothes;coffee;cup;glass;head;towel,A person is putting on a jacket then wrapping head with a towel and drinking coffee.,c034 18.80 37.20;c106 29.40 38.00;c106 26.60 33.60;c148 5.00 19.50;c154 0.00 7.70;c110 24.30 31.10,38.04\r\nUG0TA,ZAWX,Pantry,7,7,Yes,\"A person open their pantry door and enters. They stand in the pantry and close the door. They sneeze, grab the broom and leave.\",broom;door,\"A person walks in the door, walks down a hallway, checks the pantry, walks into room, picks up a broom, sneezes, and walks away\",c098 22.30 31.00;c008 0.00 5.20;c153 22.70 30.90;c006 16.30 22.80;c097 0.00 5.70,30.50\r\nSMPEB,9PLL,Living room,3,3,Yes,\"A person closes the door while grasping food, and groceries.\",dish;door;floor;food,\"A person closes a door, then picks food and dishes up from the floor and walks away.;This person closes a door, then picks food up off the floor.\",c006 0.00 2.90;c061 0.00 5.20;c063 0.00 4.20;c118 0.30 5.20;c127 13.10 26.40;c120 19.70 27.10,32.33\r\nTXAG9,1OHU,Bathroom,6,4,Yes,\"A person stands in the bathroom holding a bottle of medicine. They place the medicine back on the shelf, close the door, and undress before getting in the shower.\",clothes;medicine;mirror;shoe;shower;towel,\"Person is standing by mirror closing medicine bottle, the walk  to tub takes shoes off and starts undressing.;A person is standing in front of a bathroom mirror putting the cap back on a bottle of medicine. The person puts down the bottle, walks over to the shower, takes off their shoes and gets in the shower. Then the person starts to take off their clothes.\",c155 2.30 19.80;c096 10.60 17.60;c056 14.10 26.60;c054 17.10 22.60;c057 16.70 23.40;c000 24.90 30.00;c001 24.90 30.00;c033 24.90 30.00,28.88\r\nCC610,9PLL,Kitchen,6,7,Yes,\"One person pours soda in a glass at the sink, then sits down with a book and sneezes.\",book;cup;dish;floor,A person pours something into a cup then the person sits down on the floor with a book and begins to sneeze.,c026 23.80 34.00;c108 3.60 15.10;c151 21.90 27.80;c153 25.00 34.00;c125 24.00 34.00;c121 0.00 22.70;c117 23.80 34.00,33.08\r\nUL7YC,KQI6,Dining room,4,6,Yes,One person is eating food from dishes when another person walks in with a book and takes a glass of soda.,book;chair;cup;dish;doorway;food;glass;table,The person came next the other person in order to pour himself a glass of water while holding a thick book.,c059 0.00 31.00;c026 7.60 31.00;c118 0.10 31.00;c156 2.70 31.00;c062 0.10 12.80;c106 25.60 31.00;c009 13.40 19.70;c063 22.80 28.40;c107 12.20 31.00;c061 1.50 7.20;c120 0.00 5.80;c110 11.90 17.40;c011 0.00 2.60;c097 6.70 14.70,30.42\r\nEOKJ0,PKND,Laundry room,5,7,No,\"A person is dressing by a closet, they then put their laptop in a bag and leave the room.\",book;clothes;clothing;doorknob;machine knobs;washing machine,\"Person is holding book and putting laundry in washing machine.;The person is standing reading a book and reaches over to grab some clothes to put in a washing machine. The person attempts to put the clothes in the machine a few times, turns a few knobs and then just puts the clothes on the floor.\",c026 0.00 7.80;c003 8.20 16.70;c005 7.90 19.30;c141 4.90 11.30;c001 9.00 19.00;c002 9.20 19.00;c029 0.00 11.30,31.46\r\n1PALI,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person walks into the entryway, holding a bottle of medicine. The person opens the window and throws the bottle out.\",curtains;doorway;window,Someone walks through their entryway and pushes the curtains aside to look out of the window.;A person is walking through the doorway  then they open a window and curtain.,c090 9.30 17.30;c092 6.80 13.50;c097 0.00 10.80;c089 7.80 16.90,16.62\r\nMICBC,VKG2,Pantry,6,6,Yes,\"A person lying down reading a book begins drifting off, and starts watching their shoes instead.\",book;chair;shoes,A person was sitting down in a pantry reading a book.  The person then looked at his shoes.,c026 0.00 35.00;c032 0.00 35.00;c059 0.00 35.00,33.50\r\n61TMQ,UTMU,Garage,6,7,Yes,A person is running in place. They stop to tie their shoes and eat a sandwich.,food;sandwich;shoes,A person is running in their garage. The person stops and ties their shoes. They pick up and bite a sandwich.,c065 18.00 35.00;c156 18.00 35.00;c067 16.30 35.00,33.83\r\nAEUVY,YA10,Basement (A room below the ground floor),6,7,Yes,A person is laughing while they play with a camera then they set it down to start sweeping with a broom.,broom;camera;chair;floor;phone,The person is standing there and laughing at his phone. The person then set the phone down on the chair and picks up the broom and proceeds to sweep the floor.;A person laughing at a camera and then sweeping the floor.,c015 0.00 21.70;c098 18.70 31.00;c102 18.30 31.00;c149 0.00 22.60;c127 18.60 31.00;c017 16.40 22.90;c016 0.00 21.40,30.21\r\nKFC28,WQ8Z,Living room,4,6,Yes,A person is putting on shoes and then closing a cabinet in the living room.,cabinet;chair;shoe;table,\"A person is sitting down on a chair and taking their shoes off, they then get up and close an open cabinet door.;A person sits down in a chair and immediately takes their shoes off. When done, the person stands up and closes a cabinet door.\",c112 29.20 35.00;c057 0.70 30.90;c154 27.00 32.00;c059 0.00 4.70;c056 0.70 30.90;c011 0.40 31.20;c014 0.20 31.20;c055 1.10 31.00,33.92\r\nYVH4J,D0RU,Bedroom,7,7,Yes,A person is propped up on a pillow watching television in the bedroom. The person then begins laughing for a few seconds in response to the television. Afterwards the person pulls a bag up from the ground and pulls out some papers to read.,bag;bed;laptop;paper/notebook;person;pillow;television,A person is laying on a bed on a pillow kicking their feet and smiling as they watch a video on a laptop across the room. They pick up a backpack and pick out some homework and look at it.;someone laying on a bed and watching something on a laptop.,c076 1.50 19.50;c131 15.00 21.10;c132 0.00 22.30;c021 33.00 38.20;c149 15.00 21.10;c152 16.00 22.80;c134 0.00 48.00;c117 36.80 45.90;c020 32.30 40.50;c051 0.00 36.30,46.67\r\nNYDRK,3531,Stairs,5,7,Yes,\"A person throws a towel down the stairs. They laugh, and then throw a book down the stairs too.\",book;stairs;towel,\"A person is walking down stairs, the person throws a towel and a book while smiling.;a person walks down stairs and throws a towel and book then looks around\",c031 10.60 15.90;c036 0.00 9.60;c035 0.80 6.20;c026 10.90 17.50;c152 7.10 29.00;c033 0.90 8.70,27.92\r\nOD38J,C7O9,Bathroom,6,6,Yes,One person is snuggling with a camera while another person is fixing a sink.,cabinet;camera;door;floor,\"A person is standing in a bathroom, holding a camera and snuggling with it. Another person is sitting on the floor in front of an open cabinet, tidying items.;two people are in a room.  Person one is crouched on the floor looking through a cabinet. Person 2 is standing behind person 1 watching and shaking their head.\",c114 0.00 27.00;c125 0.00 27.00;c019 0.00 20.40,26.21\r\nHJM37,DXDI,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"In the entryway, a person is closing a box.  The person then is sneezing by the window.\",box;window,A person is holding a box and begins looking out a window while sneezing.,c040 0.00 15.00;c153 6.00 15.00,14.46\r\nCG9ZL,JVLO,Living room,7,7,Yes,\"A person is walking towards the chair. Smiling, the person sits down and begins watching television.\",chair;doorway;television,A person walks through a doorway then sits in a chair and watches TV with a second person.,c132 4.90 33.00;c059 4.90 33.00;c151 9.10 15.20;c152 16.00 22.80;c097 3.50 10.20,32.17\r\n69F8P,YA10,Hallway,6,7,Yes,A person snuggling a pillow begins throwing a bag down the hall.,bag;doorway;floor;pillow,\"A person is standing in a doorway hugging a pillow.  The person then picks up a bag, and throws it down the hall.  The person gets the bag and throws it the other way down the hall.  The person repeats both actions once.\",c020 12.10 17.70;c024 13.70 19.20;c076 0.00 9.00;c078 0.00 9.00;c126 7.30 12.50;c126 11.40 16.10;c126 18.10 23.00;c023 6.70 12.10;c023 13.70 18.50;c023 19.70 24.70,29.12\r\n4HMTY,YMXV,Bathroom,4,5,Yes,A person is closing a desk and opening the back of a camera in the bathroom.,camera;phone,\"a person is fixing a cell phone and then starts to type on it.;person standing in the bathroom and cleaning the phone, checking the phone camera\",c015 3.90 13.80;c016 0.00 33.00,31.71\r\nUUPEV,HJZQ,Kitchen,5,1,Yes,A person is sneezing while holding a bag of groceries.  Then a person is playing along with a game show on television.,bag;game;groceries;something;television,\"A young man carrying a clear plastic bag containing fruit or vegetables of some sort walks into a room, places the bag on a chair and grabs a remote control.\",c020 0.00 9.70;c130 0.00 10.20;c153 0.00 4.60;c132 8.00 32.00;c022 4.30 10.00,30.58\r\nD0SCK,JVLO,Dining room,2,6,Yes,Person is standing in dining room eating sandwich. Another person grabs towel and broom.,broom;doorway;food;sandwich;towel,\"A person is standing, eating a sandwich, then walks into another room, picks up a broom and a towel, and turns back around.\",c033 23.20 33.00;c035 20.40 30.10;c065 0.00 21.20;c098 26.00 33.00;c100 26.10 33.00;c156 0.00 21.20;c097 19.10 23.50;c061 0.00 21.30,32.46\r\nB0BDR,ZAWX,Other,4,5,Yes,A person is holding food and sitting in a chair. They are slightly smiling.,chair;dish;food;plate;sandwich,A person holds a plate of food and sits down in a chair and then eats the food.;A person interacted with some food then placed it on a plate.  The person then sat at a chair.  The person then began consuming the food.,c059 3.70 32.00;c061 0.00 32.00;c151 0.20 9.90;c118 0.00 32.00;c156 13.30 32.00;c152 6.20 16.70;c065 18.10 31.30,30.83\r\n55PFS,9PLL,Kitchen,5,1,No,A person is holding a broom and throwing their medicine on the shelf.,broom;medicine;shelf,\"The person is trying to find where to put the seasoning at, and finally he just throws it randomly into the pantry.\",c098 0.00 21.20;c081 11.20 17.20;c128 0.00 17.20,31.62\r\nJPUUF,9PLL,Kitchen,3,5,Yes,\"A person is in a kitchen holding some dishes, they then stack them on a near by chair and walk away.\",chair;dish;table,\"A person is setting some dishes into a chair, the person then leaves the room.\",c120 0.00 29.80;c119 0.00 30.20;c012 0.00 9.10;c118 1.50 16.70,33.08\r\n0N7OQ,5LWB,Other,6,6,Yes,\"The people are playing on the stairs, chasing each other up and down, and throwing a small beanie bag back and forth.  One of the people takes a moment to have a beverage, drinking a large gulp from it.  The other person, sweating from the playing, begins undressing, leaving pieces of their wardrobe all along the stairs.\",bag;clothes;floor;glass;pillow;shirt;stairs,\"A person tosses a pillow to another person.  The people begin tossing the pillow at each other over a staircase.  One person drinks from a glass while the other takes off clothes.;There is 2 people tossing a bag back and fourth, they stop and start to go up the stairs, one of the comes back down the stairs to take off their shirt then proceeds to go up the stairs again\",c024 0.40 18.90;c155 20.10 33.40;c155 29.40 36.80;c080 0.00 7.60;c080 4.50 10.30;c003 28.10 34.30;c126 28.30 34.30,36.21\r\nH8BTR,KQI6,Recreation room / Man cave,6,6,Yes,A person takes a blanket and sets it on a table. Another person is drinking a glass of water.,blanket;chair;cup;glass;sofa/couch;table;television;towel;water,A person is getting up from a chair then grabbing a towel and sitting back down. Person B is sitting at a table and pours water into a cup.,c011 13.20 31.00;c070 2.80 15.90;c151 7.90 14.10;c108 17.40 23.80;c154 0.00 3.80;c035 2.00 9.30;c132 10.30 15.90;c106 22.40 31.00;c107 22.40 27.70;c073 2.20 8.00;c059 0.00 31.00;c123 0.00 31.00,29.83\r\nKR0SH,D0RU,Home Office / Study (A room in a house used for work),4,6,Yes,the person was working hard at finishing the homework.  Another person was fixing the mistakes in the homework under the light on the table.,book;chair;doorway;laptop;table,\"A person is sitting while on their computer. Then someone comes over to help them with something.;A person is typing on a laptop, another person come in and opens a book on the desk.  The second person and the first person both start pointing at the computer screen.\",c009 10.50 16.00;c052 0.00 31.00;c059 0.00 31.00;c028 10.50 16.00;c027 10.50 16.20;c011 0.00 31.00;c097 8.20 14.50;c116 10.10 16.20;c051 0.00 31.00,30.50\r\n8DL54,Z68L,Kitchen,7,7,Yes,A person is running around in their kitchen. They start pouring a glass of water into the sink and then place the empty glass into the refrigerator.,cup;dish;glass;refrigerator;sink,\"Person walks into the room with a glass of water, pours it down the sink, and then puts it in the refrigerator.\",c143 15.00 22.30;c107 0.70 23.80;c109 16.30 22.80;c142 20.30 27.80;c110 0.00 9.70;c118 0.00 22.10;c119 17.10 23.00,28.46\r\n6VUIO,QB52,Pantry,6,6,Yes,One person sits working on a laptop and drinking from a glass in the pantry.,chair;cup;glass;hand;laptop;water,\"A person is using a laptop while drinking a glass of water.;A person is sitting in a chair next to a desk with a laptop in their lap. After typing for a few seconds, the person takes a glass of water and drinks from it. The person then puts it down, and rubs their nose and mouth with their hand.\",c109 10.30 15.80;c110 5.10 11.90;c047 0.00 31.00;c051 0.00 31.00;c059 0.00 31.00;c106 5.50 14.60;c052 0.00 31.00;c107 6.60 15.50,30.04\r\nLZEWE,ZAWX,Bedroom,4,7,Yes,\"One person throws clothes in a box, then starts working with a broom, then sneezes into the mirror.\",box;broom;clothes;floor;hair;mirror,The person was picking up clothes and putting clothes into a box. The person then did a little sweeping and fixed their hair.,c102 11.10 25.60;c001 0.00 12.40;c004 0.00 2.90;c144 23.00 28.00;c127 12.00 25.00;c096 23.00 33.00,32.00\r\nX6D8E,2RTW,Living room,7,7,Yes,A person is tidying up the cabinet. The person walks to the sink and pours themselves a glass of water.,cabinet;cup;glass;shelf;sink;water,\"Person squatting down to look in a cabinet, and then goes to a kitchen cabinet to get a glass for a drink.\",c113 19.50 26.10;c107 26.00 32.00;c112 14.20 19.90;c108 23.40 30.50;c082 0.00 19.70;c110 21.20 26.90,31.08\r\nVAKF0,YA10,Bedroom,7,7,Yes,The person is taking food over to the bed.  They start laughing.,bed;cat;dish;doorway;food;plate;sandwich,\"A person walks into a bedroom holding a plate of food laughing, and standing at the foot of the bed with a cat on it.;The person walks into the bedroom and stands in front of the bed.. That person is carrying a plate of food.\",c061 3.90 30.00;c063 3.90 13.40;c149 10.30 30.00;c118 3.90 30.00;c067 9.90 14.60;c152 10.60 26.20;c097 3.40 9.30,29.25\r\nV62NW,2RTW,Living room,6,6,Yes,\"A person takes a book from a table. The person sneezes, which causes them to drop the book.\",book;doorway;table,Person walks into room grabs book of table opens it reads and sneezes then drop book on table.,c025 20.30 25.90;c027 10.40 23.70;c030 2.40 7.00;c032 2.90 13.00;c153 18.70 25.70;c026 2.00 24.80;c031 27.40 32.00;c097 0.00 3.20,30.58\r\nE2EXR,2RTW,Bedroom,6,6,Yes,\"The person on the laptop is laughing with somebody on the phone, and drinking beer.\",bottle;chair;cup;laptop;phone;table,A person is sitting at a desk in a chair rocking back and forth while talking on their phone and drinking something out of a bottle.;The person was sitting at a desk in the bedroom talking on the phone. The person was drinking from a bottle and smiling.,c106 16.10 22.60;c019 0.00 32.00;c051 0.00 32.00;c149 0.00 5.80;c011 0.00 32.00;c152 0.00 14.60,30.62\r\nD87UN,IAPQ,Living room,6,6,Yes,A person is sitting on the sofa while reading a book. They are also drinking from a cup.,book;cup;glass;sofa,A person is reading a book on the couch.  They are covered with a blanket and they're drinking a glass of water.,c026 0.00 30.00;c032 0.00 30.00;c122 0.00 30.00;c106 1.50 11.40;c107 1.60 21.30,29.04\r\nPHH6B,HJZQ,Kitchen,5,6,Yes,A person eating in the kitchen begins pouring a cup of coffee while watching television.,coffee;counter;cup;dish;food;plate;sandwich;shelf;table,\"A person holds a dish and eats some food and then pours coffee into a cup.;A person is standing in a kitchen, eating food from a plate. After taking a bite, the person holds the plate while pouring tea into a cup on the counter.\",c156 0.00 14.10;c009 25.10 31.00;c108 20.80 29.20;c108 14.90 22.40;c120 0.00 31.00;c118 0.00 31.00;c065 1.90 9.00;c067 0.00 9.00;c107 15.20 29.50;c110 14.80 19.50;c069 2.10 7.60;c109 24.90 29.70;c081 24.30 30.40;c061 3.70 8.70;c068 19.20 25.30,30.17\r\nD9EDE,9PLL,Kitchen,4,7,Yes,A person is holding a bag of groceries and sneezing. Then the person sets the groceries on the table and begins cooking.,bag;food;groceries;table,\"A person went from one room to another with a basket. The person unloaded the basket, started up a stove and put a pot on.\",c009 2.20 11.10;c020 0.00 7.40;c147 13.00 35.00;c021 2.90 10.60;c063 0.70 12.10,33.62\r\nQWZV5,4I2W,Living room,6,6,Yes,A person is cooking coffee while another person is tidying a blanket.,blanket;floor;food;pot;spoon;stove;table;towel,\"two persons, 1 person cleaning the towel and another person preparing something on the stove;Persons in room, one holds a towel, shakes it while the other cooks on the little stove. Another person is laying on the floor.\",c070 0.00 30.00;c037 0.00 30.00;c147 3.30 30.00;c124 0.00 30.00;c014 0.00 30.00;c075 0.00 30.00;c033 0.00 30.00,29.50\r\nDS22L,EA2K,Garage,7,7,Yes,A person is sitting at a desk with a pile of clothes in front of them.  The person throws the clothes onto the floor then takes a cup of coffee from the desk over to the shelf.,clothes;coffee;cup;desk;dish;floor;glass;shelf;table,A person throws clothes on the floor and drinks from a cup before standing.,c012 0.00 18.90;c106 19.00 26.30;c126 0.00 17.40;c003 0.00 17.80;c154 22.50 28.90;c119 29.30 37.20;c011 0.00 26.30;c014 0.00 18.30;c120 16.00 22.20;c118 16.20 36.10,36.92\r\nF6Z7U,D0RU,Kitchen,6,7,Yes,A person is closing a refrigerator while holding a blanket.,blanket;food;refrigerator;shelf,\"A person takes some things out of a refridgerator and tests them, closes the fridge, and then walks away.\",c142 5.70 12.50;c081 4.00 9.10;c156 1.70 7.00;c070 0.00 16.90;c063 3.10 8.50;c081 0.00 2.80;c156 4.50 9.10,30.92\r\nS1F6M,ZAWX,Bedroom,6,6,Yes,A person is walking down a hallway towards a door. They have trouble opening the door as they're grasping a cup.,cup;door;lock,The person in this video is holding a tea cup and is trying to open a door but is unable to do so.,c107 0.90 32.00;c141 14.30 25.70,30.92\r\n9RKTE,0KZ7,Basement (A room below the ground floor),6,7,Yes,A person is reaching for the doorknob while smiling really silly as another person is undressing while trying to talk on the phone.,closet/cabinet;clothes;door;phone;sweater,\"A person is standing in a hallway, talking on a phone and taking off a sweater. Another person is standing in the hallway, laughing and opening a door.;One person smiles and grasps a doorknob, another person undresses while talking on a phone.\",c019 0.00 27.00;c141 2.70 8.30;c152 0.00 27.00;c000 15.10 27.00;c155 5.40 18.90;c008 18.00 25.20;c015 0.00 27.00;c113 9.20 27.00,26.25\r\nQ3UAN,ZAWX,Kitchen,6,7,Yes,A person is washing dishes and another person fixing coffee.,cup;dish;food;pan;pot;stove;strainer;water,\"A person is cleaning a pot at a sink. Another person removes a pot from a hot plate, pours the contents through a strainer into another pot, whicks them, then pours some of that into a cup.;A person is washing dishes in the sink. Another person is boiling water on a stove, then filling a cup with the water.\",c118 0.00 32.00;c121 0.00 15.00;c108 21.20 32.00;c147 12.10 24.40;c121 0.00 32.00;c111 0.00 32.00,30.88\r\nWQ57B,0KZ7,Laundry room,6,7,Yes,\"A person snuggles a pillow pulled from the dryer and laughs, then picks up a broom.\",broom;dryer;floor;pillow,A person is taking a pillow out of the dryer. A person then starts sweeping with a broom.,c076 7.40 25.00;c127 17.90 25.00;c102 17.20 25.00;c100 15.60 22.10;c098 16.30 25.00,23.71\r\nCSLEP,Q4IF,Bedroom,4,6,Yes,A person is dressing under a blanket.  Then a person is working on drawing a picture.,bed;blanket;clothes;floor;homework;paper;pillow,\"A person is sleeping on the floor with a pillow and blanket, they then awaken and dress themselves before working on homework.;A person is lying on the floor with a pillow under a blanket on the floor. They then dress in a shirt and turn to do homeowrk.\",c145 30.90 42.00;c146 2.30 10.20;c148 3.90 22.20;c124 0.00 15.50;c001 5.20 21.00;c000 6.80 20.60;c002 6.60 13.20;c134 0.00 6.10;c072 0.00 5.70,40.83\r\nCIBGY,CO1W,Bathroom,5,7,Yes,A person is washing their hands while standing near a sink. The person moves a chair and leaves the bathroom.,chair;door;hand;sink;towel,\"This person is in the bathroom, washing hands at the sink, then uses towel to dry hands off and then walks out of the bathroom.;A person washes their hands in a sink and dry their hands off with a towel. They move a chair out of their way, and open a door, walking through it and leaving.\",c139 0.00 9.40;c008 24.20 29.80;c097 24.00 29.20;c006 26.30 31.00;c038 12.50 22.90,30.21\r\nG4853,4I2W,Garage,5,6,Yes,\"A person is sneezing into a phone, then laughing while opening a cabinet in a garage.\",cabinet;phone,\"A person who is holding their phone in their hand and pacing sneezes twice, then walks over to a cabinet and opens it.\",c015 0.00 31.00;c113 19.40 31.00;c153 3.20 13.30,29.75\r\nCOPFE,2RTW,Living room,6,6,Yes,a person is lying in a blanket but is awakened by the door slamming,blanket;sofa/couch,\"A person is sleeping on the couch covered in a blanket, they then awaken.\",c072 0.00 34.60;c146 30.80 36.00;c122 0.00 36.00,35.21\r\nGQGAE,2RTW,Kitchen,6,6,Yes,Person opens refrigerator while watching tv. Person opens desk looking for medicine.,cabinet;door;medicine;refrigerator;television,\"A person is opening a refrigerator. A person then opens a cabinet, and gets some medicine.;A person is looking in the fridge for something. The person then goes to a cabinet and takes out medicine while looking at television.\",c132 19.10 25.70;c143 0.00 6.30;c008 0.50 8.30;c128 16.50 32.00;c142 7.20 13.30;c129 27.00 32.00;c113 14.20 25.40;c112 24.70 29.00,30.79\r\nWW4MY,2RTW,Living room,6,6,Yes,\"Dishes are stacked everywhere, a half eaten sandwich on one. A person is sitting on the sofa drinking, eating chips. They close the box.\",bag;box;couch;cup;food;glass;laptop;sofa;table;televisoin,A person sitting on a couch eating out of a bag reaches for a glass and takes a drink sits the glass back down and closes the top on the lap top;A person is eating out of a bag on the sofa watching TV. Then they close their laptop.;A person is sitting on the couch and watching something while eating and drinking something.,c123 8.70 15.60;c107 21.00 30.80;c110 15.00 27.60;c021 7.50 23.00;c106 15.80 21.90;c109 15.80 21.90;c156 2.00 9.40;c061 0.00 6.60;c039 18.50 24.20;c063 0.00 6.40;c020 0.00 6.60,30.62\r\n3V4D7,XXN8,Kitchen,5,7,Yes,A person is sitting on a chair in the kitchen. They close a book they are holding and throw it on the floor in disgust.,book;chair;floor,Person walks to a chair and sits down and begins reading a book.  Flips through the pages then slams it on the ground.;The person sat in the chair and opened the book.  The person read the book for a little bit and then threw the book on the floor.  Then the person got out of the chair.,,30.04\r\nLN3WU,KFGP,Bathroom,6,7,Yes,A person walks into the bathroom while laughing on the phone. The persons leans on the sink as they take off their shoes using the hand not holding their phone and throw them in the corner.,door;hand;phone;shoe;sink,\"Person walks in bathroom holding phone, leans on sink, bends down takes off shoes and stands up straight.\",c019 1.00 25.00;c149 2.00 8.90;c015 1.70 14.60;c151 12.20 23.20;c057 8.30 17.60;c008 0.50 7.20;c097 2.00 8.00,23.67\r\n25QPB,DXDI,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,\"A person is dressing by the doorway of a entryway, they then open a wardrobe and start smiling at what is inside.\",closet;clothes;door;knob;shirt;sweater,\"A person in a doorway, putting on a sweater then opens a closet door and looks in then laughs.;A person is putting on a scarf and then opening a closet door to look to see what's inside\",c141 15.70 21.20;c148 0.00 18.30;c152 18.10 29.00;c008 17.00 25.00;c113 17.00 25.00;c001 0.00 6.20,27.62\r\nBV6VV,R1OT,Kitchen,3,6,Yes,\"A person is grasping a broom. The person begins tidying up the kitchen, then stops and lifts their sandwich from the plate on top of the stove.\",broom;dishes;food;sandwich;shelf;stove,A person is cleaning a shelf and holding a broom. They continue to tidy up before picking up a sandwich off the stove.,c102 0.00 22.60;c067 22.00 31.00;c061 22.90 31.00;c082 3.40 17.20,29.96\r\nN1EDG,2Q9D,Recreation room / Man cave,5,7,Yes,A person sits next to a box while watching tv and drinking coffee.,box;chair;coffee;cup;table;television,\"A person sit in  a chair drinking a cup of coffee and holding a box while watching television.  They reach over and put the cup of coffee on the desk.;A person is sitting in a chair holding a box and watching television, they are drinking a cup of coffee.\",c106 0.00 31.00;c107 0.00 31.00;c109 25.90 31.00;c040 0.00 31.00;c059 0.00 31.00;c132 0.00 31.00;c009 26.90 31.00,29.71\r\nYDLBN,D0RU,Home Office / Study (A room in a house used for work),6,7,Yes,One person is playing a game at a desk and another person with a cup of coffee is watching.,chair;coffee;cup;desk;game;glass;laptop,A person is sitting on a chair with a laptop on the table.  The person is playing a game on the laptop.  Another person is sitting at a chair holding a coffee cup,c107 14.10 34.00;c152 3.50 17.20;c051 4.00 18.30;c106 14.40 33.50;c059 0.00 34.00;c149 14.90 23.10;c052 0.00 34.00,33.46\r\nBKC9E,2RTW,Kitchen,6,6,Yes,\"A person is walking around the kitchen, smiling and talking on the phone while holding a sandwich in one hand.\",phone;sandwich,A person is talking on the phone. A person is holding a sandwich.;A person is walking around their kitchen talking on their phone while holding a sandwich,c067 1.50 32.00;c015 0.00 32.00;c019 0.00 32.00;c152 20.50 32.00,30.54\r\nZL61Y,2RTW,Dining room,6,6,Yes,A person runs into the kitchen and throws some homework on the table.,book;homework;paper;running;table,A person is holding homework and running. A person is looking through a book. A person the puts the homework on the table.,c009 0.80 6.90;c115 0.00 11.30;c117 0.00 11.80;c116 0.00 11.80,30.54\r\nG93PL,0KZ7,Bathroom,6,4,Yes,A person walks into the bathroom and holding their homework. The person sets the homework down onto a table.,hallway;homework;mirror;paper;table,A person walks through a hallway holding homework. The person then sets the homework on a table.,c116 2.80 14.40;c115 0.00 14.60;c009 4.50 14.70;c096 1.10 18.00,16.88\r\nAC9NI,KQI6,Living room,6,6,Yes,\"A person is standing in the dining room, laughing at something on television. The person turns off the television and walks through the doorway, leaving.\",chair;doorway;television;tv,A person watches TV while sitting in a chair before heading outdoors.;A person sits in a chair and watches television. They get up and turn off the television and then walk through a doorway.,c097 21.70 27.90;c154 8.50 13.40;c059 1.80 12.70;c132 0.00 12.80;c152 9.00 16.70;c131 1.00 10.00,31.29\r\n0OQVD,WG9D,Bedroom,7,7,Yes,A person talking on the phone drinking coffee is walking in circles.,cup;phone,\"The person is walking back and forth as they talk on a cell phone, while drinking coffee from a cup.\",c015 0.00 7.00;c106 0.00 2.60;c019 0.00 7.00,5.50\r\nWESPT,OUKK,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person runs into the entryway. The person opens the window, takes a broom, and begins shooing away some animals outside.\",broom;door;window,\"A guy goes to the door while holding a broom in his hand, looks out the door window, and sticks the broom out the door and shakes it off.;A person walks to the door with a broom and looks out a window, they then open the door and sweep something outside then close the door.\",c092 4.20 11.40;c098 3.80 24.00;c006 17.30 24.00;c008 7.40 14.10;c141 7.20 12.40;c100 3.50 17.30,25.58\r\n4BGWL,WG9D,Bedroom,5,6,Yes,\"A person takes something from inside a box sitting on a desk, looks at it, and smiles.\",box;sofa/couch,\"The person is sitting down, and picks up a package. The person begins to smile as they look through the box.\",c040 0.20 4.80;c041 0.60 5.80;c152 3.30 7.00;c123 0.00 7.00;c044 2.40 6.90;c043 0.10 4.50;c149 3.60 7.00,6.29\r\nOLEWM,D0RU,Living room,6,7,Yes,One person runs through the doorway and grasps a laptop and shoes. Another person is eating and pouring a drink.,chair;cup/glass/bottle;dish;doorway;food;laptop;shoes;table,A person is sitting in a chair eating and drinking from a glass as another person walks through a doorway.,c118 21.80 30.30;c097 23.10 30.00;c156 0.00 9.70;c050 16.60 28.00;c063 0.00 6.80;c059 0.00 31.00;c106 27.30 31.00;c107 23.10 29.10;c011 0.00 31.00,30.04\r\nHFTEO,YMXV,Bedroom,4,4,Yes,Person is lying on floor by doorway on pile of clothes doing homework and washing door.,clothes;door;floor;towel,\"A person is lying on the floor picking up clothes, then sits up and cleans a door.\",c004 1.90 11.80;c124 0.00 21.40;c001 6.10 12.70;c002 0.00 7.70;c000 0.00 12.40;c126 6.90 12.30;c003 0.00 11.50;c127 19.10 24.20;c125 18.00 32.00;c038 20.50 32.00,31.00\r\n1LSEQ,KFGP,Living room,7,7,Yes,A person is pouring cleanser into a cloth to clean the window. As the person wipes the glass they can be seen sneezing.,glass;table;towel;window,\"A person is standing next to a window holding a towel and a glass, then puts the glass on a table and starts washing the window with the towel;The person is washing a window with a towel. They begin to sneeze.\",c091 9.70 28.00;c153 13.50 18.60;c033 0.00 6.20;c038 2.50 9.50;c009 6.70 11.50,27.21\r\n0JP8Q,0KZ7,Living room,6,6,Yes,A person was eating in front of the television while another person was walking in with a vacuum.,chair;food;table;vacuum,A person is vacuuming the living room floor while another person sits in a chair and eats.,c011 0.00 29.00;c137 2.90 29.00;c156 0.00 29.00;c059 0.00 29.00;c138 0.00 20.70;c136 16.70 29.00,28.04\r\nSBT2X,YA10,Garage,6,7,Yes,\"A person enters a garage, closing the door after entering.  The person sees a pillow on top of the car and snuggles it for a brief moment.  After setting the pillow back on top of the car, the person then grabs a vacuum and exits the garage with it.\",door;pillow;vacuum,A person opens the door to the garage.  The person takes a pillow off a car and hugs it and puts it back.  The person takes a vacuum through the door.,c076 9.40 25.70;c077 20.70 26.70;c079 7.90 14.60;c006 1.00 7.00;c008 26.40 34.00;c137 25.00 34.00;c138 24.50 34.00;c078 7.10 27.20;c097 0.00 6.80;c141 0.00 6.80,33.17\r\n14TJT,C7O9,Laundry room,6,7,Yes,A person is eating a sandwich while the watching something on a laptop.,food;laptop;sandwich;something,Person holding a laptop and looking at the screen standing by the wall in a laundry room eating a sandwich.,c065 0.00 30.00;c047 0.00 30.00;c156 2.50 9.10;c061 0.00 30.00;c051 0.00 30.00;c067 0.00 30.00,28.75\r\n8ECJ1,KFGP,Bathroom,7,7,Yes,A person takes a huge gulp of coffee while struggling with their homework.  After a minute the person puts the glass down and starts laughing.,book;coffee;glass;homework;picture,Seated man reads book then drinks soda and laughs.,c032 0.00 13.70;c115 0.00 33.00;c106 11.10 21.40;c026 0.00 33.00;c152 23.40 33.00,31.58\r\nS16FI,S053,Laundry room,4,6,Yes,\"One person with hair in a towel walks around the room with a vacuum, then runs out.\",clothes;doorway;groceries;hair;shelf;towel;vacuum,The person is hanging clothes while holding a vacuum.,c137 0.00 30.00;c082 3.90 29.20;c004 2.00 24.10;c097 0.00 3.00,29.29\r\nNHD1J,4I2W,Living room,6,6,Yes,A person is undressing while watching tv. Another runs in with a sandwich and opens a laptop.,clothes;couch;dish;doorway;food;jacket;laptop;plate;sandwich;sofa;table;television;tv,\"One person standing in living room while watching tv and taking off jacket. Another person walks into living room, sits down on couch with a plate and opens up laptop.;A person is undressing while watching television and another person walks into the room and sits down and opens laptop.\",c132 4.00 14.20;c155 10.20 20.70;c123 8.20 27.50;c048 14.70 21.40;c151 7.10 19.00;c155 0.00 16.60;c132 0.00 31.00;c009 11.90 18.70;c002 14.60 24.40;c051 17.30 31.00;c097 5.80 12.60;c118 7.10 16.50;c061 7.00 18.10;c120 18.60 25.40;c119 14.00 18.60;c011 14.40 31.00;c062 13.20 18.40;c000 1.70 31.00;c068 13.20 18.40,29.75\r\n8VWV2,EXQX,Kitchen,7,7,Yes,\"A person is seen eating food at a table. They begin putting their dishes away in the sink, taking their time to wash them.\",dish;floor;food;sink;table,A person is doing dishes while another eats on the floor.,c121 14.60 57.10;c156 0.00 23.60;c154 7.50 15.30;c120 5.70 12.40;c011 1.60 7.30;c063 6.90 12.40;c125 0.00 7.30;c118 5.10 10.90;c119 52.50 58.30,59.17\r\nSF6NU,G6WD,Kitchen,5,6,Yes,One person runs in and grasps a bag from a cabinet by the door before leaving.,bag;cabinet;food,\"A person running, picking up a bag and looking at its contents.\",c020 4.20 19.70;c023 11.00 19.70;c113 0.00 6.70;c150 0.00 3.60;c061 3.20 19.70;c063 0.50 8.50,21.92\r\nXTRH7,2Q9D,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is smiling and running down the hall with a pile of clothes and a towel in his arms.,clothes;doorway;towel,A person enters a room holding a towel and walks away.;A person runs through the front door and goes straight through the living room with clothes in the person's hand.,c097 5.60 11.40;c033 5.80 18.10;c035 7.40 15.10;c000 7.40 15.10;c150 7.20 19.00,17.58\r\n4713W,2Q9D,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"While walking into through the doorway, the person started sneezing and dropped a book and a glass.\",book;cup;door;phone,A person enters a doorway carrying a phone. The person sneezes and drops their phone. The person leaves the phone on the ground and walks off.;Person opens door and walks in and stumbles and drops something on the floor and walks away.;A person is walking in the door and drops his glass on the carpet. The person then walks out of the picture.,c097 4.00 9.70;c153 9.90 20.80;c008 3.30 8.50,25.38\r\nSMMK4,2Q9D,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,The person is in the entryway opening a blanket and laughing while drinking coffee.,blanket;cup,A person is standing in the doorway unfolding a blanket they put the blanket over their shoulder and pick up a coffee cup off of the table and take a drink of coffee,c070 0.00 33.00;c106 12.50 19.50;c110 10.50 16.20;c152 14.40 33.00,31.58\r\n1HP1X,D0RU,Dining room,4,,No,A person throws a blanket over the door they are fixing.,blanket;door,A person takes a blanket off a chair and puts it out of sight.,c070 17.80 29.70;c071 22.90 32.00;c073 16.60 23.60;c074 21.20 28.00,32.92\r\nVVTJJ,KQI6,Dining room,4,7,Yes,A person is sitting at a table. The person laughs while looking at a phone on the table by a glass.,chair;cup;dish;doorway;glass;phone;table,{},c109 3.40 8.70;c009 3.40 8.60;c011 8.80 31.00;c151 6.40 13.20;c059 6.10 13.80;c097 0.00 8.60;c016 13.50 31.00;c119 3.10 9.60,29.83\r\n99596,WQ8Z,Bedroom,3,7,Yes,A person is awakening under a blanket and then putting on clothes in the bedroom.,bed;blanket;clothes;comforter;shirt,\"A person in bed wakes up. They get out from the blanket, begin dressing and stand up.;The person laying down on the bed stretched get up put on a shirt and walked away.\",c146 14.60 30.40;c154 35.10 42.40;c148 28.20 39.50;c133 15.10 26.40;c002 27.70 32.60,44.33\r\n7NW4V,Z68L,Kitchen,5,6,Yes,A person is tidying their kitchen while smiling. They grab a cup of coffee and sit on a chair.,chair;coffee;counter;cup;dish;laptop,\"A person is tidying up around a sink and then picks up a coffee cup, sits in a chair and takes a drink.;A person tidies the dishes on the kitchen counter, then sits in a chair with a cup of coffee watching their laptop.\",c106 22.90 32.00;c059 19.80 26.90;c151 19.80 26.90;c051 29.20 32.00;c110 17.80 32.00;c120 13.10 20.50,31.29\r\n92AO4,XXN8,Living room,5,6,No,\"One person runs in, takes a towel from the doorknob, and leaves.\",doorway;towel,A person runs into a room while holding a towel.,c033 0.80 9.50;c150 0.00 9.50;c097 0.00 4.60,29.38\r\nI3N3J,8IOD,Laundry room,7,6,Yes,A person grasping clothes off the floor then putting then into a washer. Next the person picks up a book then walks away.,book;clothes;floor,\"A person  throws clothes from the floor into a washing machine, then stands and picks up a book and opens it before walking out of the room while looking through the book.\",c127 0.00 19.70;c026 16.20 26.80;c032 16.30 27.20;c154 15.10 22.20;c027 17.50 24.90;c003 1.30 21.20;c002 0.30 5.60;c002 2.20 7.80;c001 1.60 6.10;c001 5.10 10.00;c004 0.90 19.70;c030 16.80 23.20,30.25\r\nQBQR3,0KZ7,Home Office / Study (A room in a house used for work),5,7,Yes,A person is grasping at some clothes on the floor.  Then the person stands up to hold a book.,book;chair,\"Person is sitting on a chair in front of a desk, person touches some clothes on the floor then stands up and picks up a book on the desk and reads it.;A person is sitting in a chair and stands up to read a book.\",c032 9.70 24.00;c154 8.00 13.60;c059 0.00 11.70;c027 11.90 21.00,22.96\r\nIWCXM,3VLX,Living room,7,7,Yes,\"One person runs into the room with a box, then stands in front of a table with a picture on it.\",box;doorway,A person running through a room with a box stops and makes abrupt halt.,c040 0.50 15.00;c150 0.50 7.70;c097 0.00 5.60,14.50\r\nIX64X,ZAWX,Home Office / Study (A room in a house used for work),6,4,Yes,One person washes a shelf with a towel as a person with a laptop watches.,closet/cabinet;laptop;shelf;towel,A person is cleaning a shelf. The person then looks at the laptop and then goes back to cleaning a shelf.,c051 0.00 33.00;c082 0.00 33.00;c033 0.00 33.00;c114 0.00 13.60;c114 11.80 20.70;c038 0.00 13.60;c038 11.80 20.70,31.71\r\nVOTA7,BYF9,Living room,5,7,Yes,\"A person is playing with a camera on the living room desk. Another person runs in, takes the camera, and runs out.\",camera;chair;desk;phone;table,a person sitting in the chair holding a camera and looking into it and another person came near to him and went out,c015 0.00 13.00;c011 0.00 19.00;c150 9.80 17.00;c087 0.00 9.40;c016 0.00 14.60;c059 0.00 19.00;c018 9.00 14.30,18.08\r\nH94MQ,PKND,Bathroom,6,7,Yes,A person opens the window and pours a juice box outside.,box;cup/glass/bottle;window,A person opens a window and waters plants in their window box.,c090 0.00 4.30;c108 8.40 34.00;c107 0.00 34.00,32.50\r\nEPP0O,CCI9,Stairs,5,5,No,A person laughs on camera while holding a broom in one hand and dishes in the other playing.,broom;dish;food;plate,\"A person is smiling and holding a broom while the other person takes food from a dish and eats it, they are standing on some stairs.;Two people standing and having a conversation while eating off of a plate.\",c118 0.00 33.00;c098 0.00 33.00;c149 0.00 7.40;c062 0.00 12.10;c063 0.00 22.40;c156 0.00 22.80,31.58\r\nH3XC1,0KZ7,Bedroom,5,7,Yes,Taking a box out of the wardrobe and sitting it on the bed. While another person is running across the room with a pillow.,bed;box;closet;pillow;wardrobe,\"A person is running around in the bedroom with a pillow, while another person is getting a box from a dressing table.;A person runs in with a pillow out out seven times. Another person touches a bed.\",c076 0.00 29.00;c040 1.70 15.40;c113 0.00 5.30;c150 0.00 29.00;c042 0.80 22.90,28.42\r\n0VQES,9Y7F,Home Office / Study (A room in a house used for work),4,5,Yes,A person holding a book while another person is smiling at a box.,book;box;shelf,\"A person is holding a book, while another person takes a box off a shelf and looks at it.;Person A is holding a book when Person B walks around him and grabs something off the shelf and looks at a piece of paper.\",c026 0.00 32.00;c040 9.30 32.00;c081 26.70 32.00;c043 7.60 29.80;c115 2.90 8.20;c042 25.60 32.00,30.67\r\nBLIFO,8IOD,Kitchen,6,6,Yes,\"A person is running to the cabinet, then the person is holding a towel to clean up a mess.\",cabinet;doorway;towel,A person runs in and opens the cabinet and then wipes it down with a rag.,c033 0.00 7.20;c037 2.40 10.80;c038 1.70 14.00;c113 1.00 9.10;c114 12.40 25.70;c150 0.40 7.50;c097 1.00 31.00;c097 2.10 6.90,30.38\r\nAWGMW,8IOD,Living room,6,7,Yes,\"A person is lying on a couch. They sit up and put on some shoes, take a sip of coffee, and then get up and run out the room.\",coffee;couch;cup;dish;doorway;glass;shoe;sofa,\"A person laying on the couch wakes up.  They put their shoes on, takes a sip of coffee, and then runs out of the room.;A person is lying on a couch. They put on their shoes and drink from a glass before running out of the room.\",c150 15.60 23.70;c110 8.00 14.30;c122 0.00 4.90;c154 15.20 19.90;c109 13.80 18.20;c055 6.20 12.60;c106 10.30 16.90;c120 8.20 18.20;c119 14.20 18.60;c097 15.80 23.60;c118 8.50 18.40,30.33\r\nB7IAK,XXN8,Kitchen,7,7,Yes,A person is grasping a phone next to a window. The person closes the curtains.,phone;window,A person stares at the camera and waves a phone at the camera. The person then closes the curtain to a window and leaves.,c015 0.00 16.00;c016 0.00 16.50,30.79\r\nF3RM9,28B0,Bedroom,3,7,Yes,One person is smiling at a picture while another is washing the window.,bed;book;picture;towel;window,a person sits while looking at a picture and another person washes a window;A person is sitting on a bed holding a picture when another person walks into the room and wipes a window with a towel.,c091 3.60 21.00;c038 3.60 21.00;c084 0.00 23.00;c152 17.20 21.90;c135 0.00 4.00;c088 0.00 4.80;c033 16.50 21.60;c035 17.60 22.50;c083 0.90 6.20;c029 4.20 9.30,22.25\r\nJ84TZ,ZSRZ,Living room,6,7,Yes,\"A person is awakening on a couch. The person grasps the blanket and begins playing with its corners, then starts to laugh while they get up and walk to the doorway.\",blanket;doorway;sofa,\"A person is lying on a couch, covered with a blanket. The person stretches and starts playing with the blanket. The person then puts the blanket over one shoulder and walks through a doorway.\",c097 16.20 21.00;c070 11.60 21.00;c146 0.00 6.50;c122 0.00 4.50;c072 0.00 5.20;c149 5.30 15.40;c154 12.20 18.40;c073 11.80 21.00,19.88\r\nIEXTB,YA10,Hallway,6,7,Yes,A person in the hallway is laughing at a picture they are looking at. They begin dressing by putting on a jacket that they took out of a bag.,bag;clothes;coat;picture,\"A man stands in a hallway looking and laughing at a picture hanging on the wall, then takes a jacket out of a bag on the floor and puts it on.\",c148 14.40 33.00;c085 3.40 13.00;c021 4.00 14.50;c149 6.40 13.80;c088 11.50 22.90;c002 21.20 33.00;c152 4.20 14.00;c000 13.10 22.30;c154 12.10 16.90,32.46\r\nW4U3V,P6LJ,Dining room,6,7,Yes,The person puts a glass down on a table.  The person also puts down the sandwich that the person was eating.,cup;dish;food;glass;sandwich;table,\"A person walks over to a table and places a dish down. They sip out of a cup then place the cup down, pick up the dish, and eat a sandwich.\",c106 11.50 18.60;c107 2.40 20.50;c009 8.00 20.10;c065 18.90 33.40;c156 18.70 33.60;c061 0.00 34.70;c120 0.00 9.40;c119 10.40 35.20;c118 0.80 34.50;c063 17.90 31.40;c062 17.80 32.50,36.88\r\nCWBHH,XXN8,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,\"Person is undressing in entryway,another person is putting homework on table.\",book;clothes;coat;dog;homework;jacket;table,\"A person walks over to a table next to another person, takes off a jacket, folds it up, and then wraps it around the waist. The person then walks away. During all this, a dog runs up underneath the table.;the person is reading a book, they then set the book down as another person walks into the , and that person takes off their coat and then ties the coat around their waist and walks away.\",c155 2.00 19.90;c028 3.40 10.10;c032 0.00 8.10;c000 33.10 36.00;c001 33.10 36.00,34.79\r\nBRLC0,0KZ7,Closet / Walk-in closet / Spear closet,6,7,Yes,First person in lying on floor while fixing chair. Another person eating sandwich and putting on shoes.,chair;floor;food;sandwich;shoe,One person is sitting and putting on shoes. Another person is lying down holding a chair above them while working on it.,c069 11.90 19.50;c055 1.30 29.00;c156 13.50 19.20;c065 0.00 3.40;c067 0.00 4.00;c067 11.20 19.80;c124 0.00 29.00,28.42\r\nVE5DN,T7C3,Kitchen,7,7,Yes,\"A person is lying in front of the refrigerator, sleeping. They wake up, put the pillow away in a cabinet, and begin sneezing by the stove.\",cabinet;floor;pillow;shelf;stove,\"Person is lying on the floor with a pillow on his head. Person wakes up, gets up, picks up the pillow, opens a cabinet and places the pillow inside.;A person awakens on a floor lying on a pillow. They pick up the pillow and put it on a shelf. The person then sneezes on a the stove\",c076 12.50 28.70;c077 20.00 29.20;c113 19.50 28.60;c153 28.20 34.00;c146 1.40 11.80;c081 19.40 31.00;c079 13.80 22.40;c124 0.00 10.60,32.58\r\nXRR22,D0RU,Living room,5,7,Yes,A person is standing on a chair fixing a light.  The person steps down and puts the old light on the shelf and grabs a pillow before leaving the room.,chair;light;pillow;shelf,\"Person pulling a chair to stand on to reach and change a light bulb then gets down to put the light bulb on a shelf, take a pillow, and walk out of the room.\",c103 10.60 35.40;c060 6.90 32.40;c081 35.40 46.80;c076 36.60 50.00;c082 12.10 27.50;c079 36.90 46.80,49.46\r\n1QT62,G6WD,Living room,6,7,Yes,\"A person is laughing while sitting on the sofa, playing video games. The person turns out their game system and puts the controller on the shelf.\",game;shelf;sofa;television;video,A person is sitting on the sofa and watching TV.,c123 0.20 45.50;c149 23.30 29.50;c132 1.30 47.40;c131 9.20 16.70;c151 0.00 4.70,54.38\r\nUKLQ1,T7C3,Hallway,5,7,Yes,\"A person grasps a bag off of a chair, turns on a light and then sits on the chair.\",bag;chair;light,\"A person picks up a bag of stuff from a chair and then walks to turn the light on. After turning the light on, they sit down in the chair.\",c104 6.90 12.90;c059 13.50 34.00;c020 1.60 18.80;c023 1.10 13.70;c022 13.80 19.30;c022 0.50 18.50;c151 13.30 21.10,32.92\r\nQG338,D0RU,Living room,6,3,Yes,A person grasping a sandwich looks at a picture of a person undressing.,clothes;cup/glass/bottle;door;food;picture;sandwich,\"the person open the door came inside and looking fo rsomething in the bench and ate bread;A person opens a door, eats a sandwich and looks at a picture.\",c065 15.80 23.40;c156 25.40 31.10;c088 4.90 14.40;c008 0.00 5.40;c067 11.20 36.00;c063 13.50 18.60;c110 28.20 36.00;c097 0.10 6.40;c069 12.80 19.10;c061 13.00 23.90,35.25\r\nO2OUX,9Y7F,Dining room,3,6,Yes,One person is in a chair with a laptop working on homework. Another person with a broom is leaving the room.,broom;chair;floor;laptop;table,A person is sitting at a table with a laptop another person is sweeping and putting a chair away.,c098 7.80 12.70;c102 10.10 15.00;c052 0.00 16.90;c046 13.50 17.90;c011 0.00 32.00;c127 4.90 12.90;c014 0.00 32.00;c059 0.00 32.00,30.58\r\nJ06RS,9PLL,Hallway,6,7,Yes,A person is laughing in the doorway and then grasping a box in the hallway.,box;doorway;floor,\"a person is standing in a doorway.  the person is smiling, then the person walks into a room and picks up a box;A person in a hall smiling and laughing bends over and picks up a box.The person carry's the box to another room .The person shakes the box .\",c097 2.80 16.10;c040 8.60 34.00;c149 2.70 9.00;c152 0.00 11.00;c043 8.30 18.10,33.21\r\nRBAO1,WQ8Z,Living room,6,7,Yes,A person drinking from a glass and grasping a towel.,blanket;cup;cushion;glass,The person was sitting on a cushion and took a drink from a beverage in a cup.  The person continued to take several more drinks from this glass.,c106 2.00 37.00;c070 0.00 37.00;c072 0.00 37.00,36.46\r\nAD28I,YA10,Hallway,7,7,Yes,A person is watching another person play with a broom and a blanket.,blanket;broom;floor,one person cleaning with broom wrapped in a blanket one person standing and watching,c102 2.20 10.00;c072 13.10 36.00;c100 14.80 20.00;c070 0.00 17.80;c073 8.90 18.10;c127 6.00 12.60;c098 15.50 22.30;c099 30.90 36.00,34.62\r\nXZM6Y,T7C3,Kitchen,5,7,Yes,\"One person with a sandwich closes a cabinet, then throws down the sandwich and runs out of the room.\",cabinet;food;sandwich;shelf,Person standing in front of open cabinets with something (possibly sandwich) in right hand looking through cabinets.  Appears to hear something.  Throws sandwich in trash and runs out.,c067 0.00 16.00;c068 11.70 16.20;c150 12.50 18.00;c061 0.00 16.30;c112 9.00 13.80;c081 11.10 16.10;c063 0.00 16.10,17.42\r\nPRVP0,QB52,Stairs,4,6,Yes,\"A person grasps their laptop from a shelf, then leaves through a doorway.\",doorway;laptop;shelf,\"The man picks up a laptop off the shelf, then walks through the doorway\",c050 5.20 22.60;c097 10.80 17.10;c047 5.50 22.60,30.08\r\nDD57W,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person in the entryway is working on their laptop while sitting on top of a pillow. They drop some medicine that they were holding in their left hand and then fix their clock to match the correct time.,floor;hand;laptop;pillow,A person is sitting on a pillow on the floor working on a laptop. They then play with their watch.,c052 10.30 22.60;c125 0.00 41.00,40.33\r\nNGMVI,4I2W,Bedroom,5,3,Yes,\"The person was undressing, taking off shoes and then snuggled under a blanket.\",blanket;clothes;laptop;shirt;shoe;table;towel,\"A person removes their outerwear while watching something on their laptop, then kick off their shoes. They then pick up a blanket and sneeze into it.;A person is taking off their shirt and shoes. Then they grab a towel off a table and sneeze into it.\",c058 8.80 24.20;c155 0.00 30.00;c153 21.50 29.30;c035 16.90 23.40;c033 16.60 30.00;c057 7.70 17.10;c001 0.00 12.00,29.46\r\nZWVNF,DXDI,Garage,6,6,Yes,A person is seen opening a bag. They pull out a camera and begin trying to fix it.,bag;camera;chair;phone,Person is searching through a bag where they find an old Polaroid camera. This is done while sitting in a chair.;A person opens a bag on a chair. They pull a camera out of the bag and look over it.,c020 0.00 5.50;c021 1.50 9.10;c015 8.90 17.00;c018 5.10 13.90;c059 0.00 33.00;c016 8.40 33.00;c023 0.00 6.00;c024 9.20 14.20,31.58\r\n4Z3PQ,YMXV,Bedroom,6,7,Yes,A person runs into their bedroom and closes the door. The person lies down on the sofa and takes a picture of themselves.,bed;door;phone/camera;picture;sofa,A person runs into a room and closes the door. They pick up a cellphone and take a picture while sitting on the couch.,c006 7.50 14.00;c123 13.10 32.00;c150 1.90 7.10;c151 12.50 17.70;c087 14.80 32.00;c015 14.20 32.00;c016 14.80 32.00;c088 25.70 32.00;c135 14.00 32.00;c097 0.00 7.40,31.04\r\n94ICP,HR43,Kitchen,7,6,Yes,A person cooks on a stove before smiling and putting dishes inside a refrigerator.,food;man;refrigerator;stove;towel;washcloth,a man cleaning up a mess on the stove while he is cooking.;A person is cooking on a stove they make a spill and clean it up with a towel then they put the pan in the fridge,c143 15.40 21.90;c147 0.00 7.20;c038 4.90 15.20,25.17\r\nVFS9P,KQI6,Garage,5,7,Yes,\"A person is grasping a cup of coffee, while a other person is sneezing next to a door.\",chair;coffee;cup;dish;door;glass;table;window,A person is making and then drinking tea. Then it pans to another person who is standing at a TV.,c107 5.00 18.90;c110 2.60 10.20;c106 3.30 10.20;c109 13.80 26.90;c151 5.30 23.40;c011 0.00 19.20;c118 5.90 18.90;c092 16.50 31.00;c059 0.00 18.70,30.33\r\n4SF59,0KZ7,Living room,7,4,No,A person takes a glass from the desk and smiles.,cup;dish;glass,A person is holding a glass.,c107 0.30 25.00;c152 2.40 7.20;c118 1.00 25.00;c110 1.00 25.00,24.08\r\nGRYTY,YMXV,Bedroom,1,1,No,A person is opening groceries while on the phone.  The person is also drinking water.,bed;cup/glass/bottle;dish;groceries;phone;water,\"A person is sitting on the bed on the phone, while looking at some snacks. The person then grabs a bottle of water and drinks it.\",c015 0.00 24.50;c019 0.00 25.00;c106 19.40 28.30;c154 26.80 32.00;c118 16.20 32.00;c017 0.00 20.70;c135 0.00 28.60;c120 16.50 32.00,31.38\r\nKOHWO,BYF9,Hallway,5,6,Yes,A person is seen snuggling up to their laptop. They start taking a sip of coffee and begin closing their laptop.,chair;cup;glass;laptop,\"A person is cuddling with a laptop. They pick up a cup and drink it, and then set it back down on a chair. They close the laptop.;A person is holding a laptop and drinking water from a cup that was sitting on a chair.\",c046 24.30 32.00;c047 0.00 32.00;c106 14.20 22.20,30.67\r\nTFM98,WG9D,Bathroom,4,7,Yes,\"A person wrapped in a blanket drinks water from a glass and take medicine, and then pour the rest of water in the sink.\",blanket;cup/glass/bottle;dish;medicine;sink;water,A person wearing a blanket takes some medicine and then pours water into a sink.,c106 1.50 9.10;c070 0.00 12.00;c129 0.40 8.60;c118 0.30 12.00,10.96\r\nFV9AL,OUKK,Hallway,3,4,Yes,The person takes the vacuum out of the closet and closes the door.  They watch their phone screen while vacuuming the hall.,door;floor;phone;vacuum,A person is opening a door and pushing a vacuum.,c137 10.10 31.00;c008 0.00 6.00;c127 11.10 31.00,29.67\r\nK48CQ,G6WD,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,Person is standing in doorway by steps drinking coffee then starts sneezing.,closet/cabinet;coffee;cup;dish;door;light,A person is drinking coffee while looking outside a window and sneezing.,c107 0.00 59.70;c153 21.10 36.80;c118 0.60 53.20;c097 0.00 7.00;c006 49.20 55.60;c112 48.10 57.30;c105 53.30 58.50;c106 1.50 26.00;c106 33.10 40.90,58.54\r\nM2O8G,0KZ7,Hallway,6,7,Yes,A person is holding some food.  They are standing by a light and they turn it off with their other hand.,food;light,\"The person is standing by a door holding some food. She sways side to side, and then turns off the light using the switch next to her.\",c061 0.00 14.90;c105 9.70 14.80,22.62\r\nB2EZB,BYF9,Living room,6,5,Yes,A person is vacuuming the floor and smiling. As they finish tidying up they drink from their coffee.,coffee;cup;floor;vacuum,A person vacuums the floor and under a bed. The person shuts the vacuum off and drinks coffee.,c106 28.20 33.00;c107 27.70 33.00;c137 0.00 24.60;c127 0.00 21.70,32.29\r\n4C4LC,YA10,Laundry room,4,7,Yes,A person laughs as they eat some food. The person turns out the light.,food;light;sandwich;vacuum;washer;water heater,\"A person is standing in a room next to a vacuum and water heater. With a sandwich in hand, the person eats while also turning off the light.;The person ate the sandwich slowly taking time to smile and laugh.  Approximately half way through eating the sandwich the person turned off the light.\",c061 0.00 32.00;c156 0.00 32.00;c067 0.00 32.00;c105 27.30 32.00;c149 0.00 27.40;c065 0.00 29.90;c152 0.00 2.50;c068 0.00 2.80;c068 7.30 12.20;c068 17.40 22.70;c062 0.00 2.80;c062 7.30 12.20;c062 17.40 22.70,31.50\r\nXQITP,8718,Bathroom,6,7,Yes,\"A person is sitting in the bathroom doorway playing with their shoes. Grasping the door knob, the person stands up.\",shoe;toilet,A person sitting on a toilet puts shoes on then stands up.,c053 0.40 16.90;c055 10.10 16.00;c154 28.70 33.00;c057 0.00 30.30,32.08\r\nEJL2F,4I2W,Recreation room / Man cave,6,6,Yes,A person opens a door and turns on the light in the recreation room and takes a picture.,book;card;chair;door;light;picture;table,A person walks through a door and turns on a light.  He picks a card up off the coffee table.;Person opens the door and turns the light on and walks in.  Grabs a picture off the table and begins to look at it.,c104 3.20 8.40;c084 16.40 32.00;c097 0.00 6.60;c029 15.70 27.90;c026 16.10 32.00;c030 16.00 21.80;c008 0.00 5.80;c032 14.70 32.00,30.58\r\nTFVSF,0KZ7,Bathroom,6,7,Yes,A person is tidying up in an enclosed bathroom with a broom. The person grasps onto the nearby doorknob to open the door.,broom;door;floor,A person is sweeping the floor with a broom then begins to grasp a doorknob.,c098 0.00 27.00;c102 0.00 21.00;c141 18.00 27.00;c127 0.00 21.00,25.50\r\n1EMLS,F56T,Dining room,7,7,No,A person is standing in front of a mirror and taking a picture in the dining room.,mirror;picture,\"The person keeps taking pictures at different angles, Appears to be taking selfies of their self in the mirror\",,38.08\r\n37SE6,XXN8,Dining room,5,6,Yes,A person is sitting at the table and drinking soda from a cup as the person works on their homework. Then the person stands and begins pouring more soda from a bottle.,chair;cup;glass;homework;paper;table,\"the person sit in the chair drank some juice and writing something with the pen, and drank water\",c106 0.60 11.80;c117 8.80 25.30;c011 0.00 26.20;c151 0.00 3.30;c059 0.00 26.00;c009 35.80 39.00;c145 35.80 39.00;c014 35.80 39.00;c108 35.80 39.00,37.67\r\nDINAV,2RTW,Living room,6,6,Yes,A person is pouring a hot cup of coffee and lying on a pillow.,beverage;cup;dish;sofa/couch;table,A person is pouring a beverage into a cup.,c108 0.00 12.00;c118 0.00 10.80;c011 0.00 14.70;c122 12.20 30.00;c119 8.70 13.60;c009 9.90 14.60,29.25\r\nC0WLP,X5XO,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is putting away clothes and tidying wardrobe in the Closet / Walk-in closet / Spear closet.,closet/cabinet;clothes;wardrobe,A person is hanging up clothes in a closet.,c001 0.00 33.00;c004 0.00 33.00;c000 0.00 19.60;c000 16.40 31.10;c114 0.00 33.00,31.62\r\nWHGAQ,9Y7F,Stairs,5,7,Yes,One person is working with a broom while another is leaving the box on the bottom of the steps.,box;broom;doorway;floor;stairs,A person is tidying up the stairs with a broom then another person leaves a box on the floor and leaves.,c040 5.10 14.10;c042 9.10 14.70;c098 0.00 31.00;c102 0.00 31.00;c097 11.50 16.70;c043 4.80 10.40;c127 0.00 8.70,29.58\r\nS8Q1Z,9PLL,Stairs,5,6,Yes,\"A person is laughing and tidying up, then picking up a glass and a pillow off the stairs.\",blanket;broom;cup;dish;floor;glass;pillow;stairs,\"A person is using a broom to clean the stairs and then the person picks up a pillow and a glass.;A person is sweeping the stairs, then picks up a pillow and a cup.\",c107 16.00 33.00;c076 11.30 33.00;c098 0.00 33.00;c102 0.00 14.30;c118 15.50 33.00;c070 10.80 33.00;c120 15.30 20.80;c127 0.00 14.20,32.38\r\nFGP46,T7C3,Bedroom,7,7,Yes,\"In the bedroom, a person is snuggling with a picture. They then start walking back and forth with a glass in their hand.\",cup;glass;paper/notebook;picture,A person is rubbing a picture on their clothes. Then a person holds a glass and walks back and forth.,c084 0.00 15.50;c107 14.30 41.00;c115 0.00 15.10,40.29\r\nNO9MI,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person walks to the door in their study. The person grabs a nearby book, opens the door, and leaves.\",book;door,A person in the kitchen is walking to the door and stop to pick up a book by the countertop before opening the door and walking out.;A person is walking across the room and picks up a book and reads through it. Afterward the person turns the doorknob and opens the door and walks out while holding the book in their hand.,c141 1.90 8.30;c026 5.00 27.00;c008 17.80 25.00;c097 21.50 27.00;c030 4.50 11.80,26.04\r\n0ZSFI,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"The person leaves the room through the door, then throws a small blanket over the doorknob.\",blanket;clothes;door;towel,A person walks into a room carrying towel they open the front door and place the towel on the doorknob then they go outside.,c008 8.20 17.00;c141 8.50 13.40;c070 5.50 11.00;c033 5.30 11.00;c034 20.10 29.00;c000 0.30 31.00;c001 0.00 31.00,30.46\r\nVYI5L,8IOD,Closet / Walk-in closet / Spear closet,4,7,Yes,A person is tidying some clothes while watching a video on their phone.,basket;blanket;closet/cabinet;clothes;phone,A person is standing next to a closet holding a phone. The person kicks an item across the floor and then moves a basket of clothes. The person then proceeds to move items of clothing inside the closet.,c015 0.00 31.00;c001 0.00 10.40;c004 7.30 31.00;c114 2.60 31.00;c016 0.00 31.00;c070 8.70 15.90,30.42\r\nWPZQ7,SX9Y,Laundry room,6,7,Yes,The person is standing in a hallway and opening a medicine bottle. The person takes off their shoes while closing the medicine bottle.,floor;medicine;shoe,\"A person open a medicine bottle, takes off his shoes and then closes the medicine bottle.\",c128 0.00 25.10;c128 0.00 2.50;c057 10.00 20.00;c126 13.50 18.60,25.71\r\nMC50M,28B0,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person is grasping a pile of clothes. They set them down, pick up a blanket, and sneeze.\",blanket;clothes;towel,\"A person puts clothes on the floor, picks up a blanket and then sneezes.\",c001 2.70 9.20;c070 5.00 15.00;c153 10.00 15.00;c035 0.10 15.00;c075 0.00 15.00;c034 0.00 15.00;c000 0.40 7.50;c073 5.00 11.10,14.25\r\nWX7AG,2RTW,Kitchen,6,6,Yes,A person drinking a glass of water turns on the kitchen lights and takes a selfie with a camera.,cup;glass;light;phone;table,\"A person drinking water out of a glass straighten their hair,places the glass on the table,the person steps forward turns on a light .The person steps back to the table and picks up a phone ,looks at the phone and places it back on the table.\",c109 5.50 10.70;c104 7.30 12.30;c015 11.00 28.00;c009 24.00 31.00;c107 0.00 10.90;c110 23.40 31.00;c106 0.00 9.40;c016 11.50 25.60;c087 12.70 24.80,29.96\r\nI7U0W,2RTW,Kitchen,6,6,Yes,A person stands in a kitchen grasping a phone. They sneeze and then reach for some medicine.,medicine;phone,A person is standing by the fridge holding there phone the sneeze and pick up a bottle of medicine off the top of the fridge;A person is standing in front of a refrigerator holding a phone. The person sneezes. They pick up a medicine bottle and read it.,c128 10.00 31.00;c019 22.20 30.70;c153 4.50 11.70;c015 0.00 31.00,30.38\r\nMTEOU,9PLL,Dining room,4,6,Yes,\"Person A is in a kitchen sitting in a chair, eating lunch.  Done eating, Person A takes the bowl and places it into the sink.\",chair;dish;food;plate;sink,\"The person is sitting in the kitchen eating food,when done, the person gets up and puts the plate away.;The person is mashing around food on plate and then eats the food then repeats a few times then gets up\",c059 0.00 54.00;c156 6.80 55.60;c154 49.10 56.20;c118 0.00 56.50;c061 0.00 58.10;c119 49.70 64.00,62.58\r\nA5XR5,D0RU,Home Office / Study (A room in a house used for work),6,7,Yes,A person is working on their laptop. The person kicks off their shoes and eats a piece of food.,chair;food;laptop;shoe;table,\"A person sits at a desk looking at a computer, then leans back and takes their shoes off, and eats some food and looks at the computer screen.\",c057 11.30 18.30;c051 0.00 34.00;c061 14.40 34.00;c156 15.10 34.00;c011 0.00 34.00;c052 0.00 15.00;c059 0.00 34.00;c063 13.80 19.40,32.79\r\nG82VI,0RNU,Garage,6,7,Yes,A person holding a box enters the garage.  They take out a laptop and begin fixing it.,box;computer;door;laptop;screwdriver,\"A person walks through a door carrying a box. The person then opens the box and takes out a laptop, places the box on the floor, takes a screwdriver from the shelf and tightens two screws.;Person opens door. walks into room, shuts door, opens a box and removes what appears to be a laptop computer, opens the computer, closes it, picks up a screwdriver and applies it to the computer.\",c046 17.30 22.00;c048 15.40 21.20;c041 5.60 13.40;c045 12.20 17.90;c006 1.50 7.00;c097 0.10 6.10;c047 13.00 35.00;c050 6.50 17.00;c044 6.50 17.00;c008 0.00 4.20;c040 0.00 17.20,34.46\r\nI7MEA,0KZ7,Kitchen,6,7,Yes,A person is cooking something they just poured from a box taken from the refrigerator.,box;burner;food;pot;refrigerator;spoon;stove,\"Person is in the kitchen stirring something in a pan on the burner of the stove.  She turns, opens the refrigerator, takes out a box and pours the contents into the pot and continues stirring;A person is preparing a pot of food in the kitchen on the stove. The person gets ingredients from the refrigerator and continues cooking.\",c041 6.10 11.20;c147 0.00 5.80;c147 0.00 27.00;c043 4.90 9.60;c143 2.20 7.30;c142 5.00 10.00,25.50\r\nNKOJ8,Z68L,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person walks through the doorway into an office.  They are laughing as they close the door, continuing to hold onto the doorknob.\",device;door;phone/camera,The person opens the door to pick up a device,c141 7.60 25.30;c097 6.00 17.90;c008 6.60 13.90;c149 8.40 22.30;c016 15.80 27.00;c018 13.50 21.80;c017 18.70 25.70;c152 7.90 22.50;c015 16.00 24.70,25.58\r\nNEQHK,C7O9,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is tidying a pillow while another person is laughing at a television.,doorway;pillow,A person is standing in a wardrobe. Another person is putting a pillowcase on a pillow in the wardrobe.;A person stands in a doorway and puts a pillow in a pillowcase. Another person stands next to them idly.,c076 0.00 31.00,30.25\r\nEK66A,JVLO,Bedroom,5,7,Yes,A person is watching another person put shoes in a box.,box;shoes,A PERSON IS STANDING AGAINST A WALL LOOKING AT A MAN WHO IS ASSEMBLING A BOX WHILE SITTING ON THE FLOOR,c040 5.00 31.00,30.46\r\n7VSIV,C7O9,Kitchen,6,6,Yes,In the laundry room a person standing on a chair is tidying the shelves. A second person walks in puts some dishes in first person's hands and leaves.,chair;doorway;shelf,\"A person is standing on a chair, while another person enters the room, looks and walks out.;a person stands on a chair and does something that is blocked from view, another person walks in and hands them something\",c060 0.00 11.30;c097 13.10 18.70;c082 0.00 10.70,30.42\r\nF1GWF,HR43,Kitchen,6,7,Yes,\"A person is in a kitchen grasping a cup from the cabinet, they then walk over to their laptop and open it.\",cabinet;cup;dish;glass;laptop,\"A person opens a cabinet, takes a glass out and then opens a laptop before leaving.\",c110 0.00 6.60;c113 0.00 3.70;c048 5.30 10.10;c112 2.90 7.90;c120 2.90 14.00;c118 0.00 14.00,12.79\r\nHCM5Y,HJJ4,Bedroom,6,7,Yes,A person eats while seated in front of a mirror and then leaves the room with a pillow.,dish;door;floor;food;mirror;pillow,A person is sitting on the floor eating some food while looking in a mirror. A person grabs a pillow and walks away.;Looks like eating something then grabs pillow and walks out door,c076 14.60 20.00;c096 3.60 9.00;c156 0.00 7.70;c154 10.50 16.70;c008 12.60 18.40;c125 0.00 8.40;c118 0.00 12.30;c078 10.20 15.00;c097 14.20 20.00,19.50\r\nHV2NI,HRH1,Stairs,5,5,Yes,\"The person standing on the stairs watching something out the window, they sneeze and end up losing interest in looking out the window they tightly grip their pillow and blanket and walk down the stairs.\",blanket;pillow;window,a person is standing looking out a window holding a pillow then they turn around and walk down the stairs,c092 0.00 16.30;c076 0.00 17.90;c070 0.00 25.00,23.75\r\nK5OQO,2RTW,Bathroom,5,7,Yes,\"One person puts a sandwich on the bathroom shelf and laughs, then closes the doorknob to the bathroom.\",bag;door;mirror;sandwich;shelf,\"A person closes a door, looks in the mirror and is standing there apparently thinking about something.\",c068 0.00 8.00;c006 5.20 11.70;c022 0.00 5.40;c020 0.00 5.40;c096 14.60 27.80,30.62\r\nEB4V9,H8N1,Living room,1,7,No,A person is playing with their phone and smiling. The person puts their phone down on the shelf.,chair,A person is sitting on a couch smiling.,c152 0.00 14.80;c059 0.00 22.00,21.08\r\n6KXR1,HJJ4,Garage,6,7,Yes,A laughing person is undressing in their garage in front of a shelf in a cabinet.,clothes;jacket,Person comes in smiling and then takes his jacket off while standing there.;This person appears to be standing in a garage. This person then takes off his jacket. That's all that happens.,c155 1.40 12.00;c149 0.00 10.40;c000 6.60 12.00;c152 0.00 12.00,11.38\r\nRKGG5,DXDI,Living room,7,7,Yes,A person playing with a broom in the living room suddenly decides to begin snuggling with a pillow.,broom;couch;floor;pillow;sofa,\"A person is twirling a broom while hugging a pillow and laying on a sofa.;Person sits on couch twirling broom, looks at broom, puts broom down, grabs pillow, lays down\",c098 0.00 10.60;c101 6.00 10.70;c076 7.00 21.00;c078 7.70 21.00;c079 7.00 11.50;c122 12.60 21.00;c126 4.90 11.20;c123 0.00 16.40,20.33\r\nMO0SA,DXDI,Hallway,7,7,Yes,\"A person sitting in a pile of dirty laundry, and holding a shoe they're trying to fix the sole of, kicks the door as they stretch out, lying on their back.  They snuggle the dirty laundry, sending a glass bottle suddenly rolling out from it.\",blanket;clothes;door;floor;shoe,\"A person is sitting in a hallway closes a door with their foot, and then the person lays down on the floor and falls asleep.\",c000 6.60 30.00;c006 6.10 12.90;c053 0.00 7.70;c054 0.00 9.10;c002 10.20 17.40;c070 21.10 28.90;c072 14.00 19.90;c124 8.20 30.00;c001 8.50 29.20;c125 0.00 8.50;c071 8.30 15.80,29.04\r\nSXAAN,Z68L,Bathroom,6,7,Yes,A person is in the bathroom throwing food away. There is a small television lying on the floor.,doorway;floor;food;garbage can;television,\"A person is in a bathroom throwing food away into a garbage can, she also picks some up from the floor as well.\",c126 10.70 15.60;c097 1.70 6.50,29.75\r\nA21M5,ID9V,Bedroom,2,6,Yes,\"One person opens and closes a book and then a box, then runs out of the room with a broom.\",book;box;broom;doorway,The person is standing in the doorway and holding a box and a book. The person opens the book and closes it. The person opens the box and closes it. The person picks up a broom and walks out of the doorway. The person walks back in the doorway with the broom.,c100 17.50 22.90;c026 0.00 8.20;c039 5.00 15.70;c041 0.00 4.40;c098 18.40 31.00;c025 2.90 8.80;c027 0.60 7.30;c040 4.70 19.80;c115 0.00 31.00;c097 22.20 31.00,29.71\r\nO1WVZ,YMXV,Bedroom,6,7,Yes,A person is holding a phone in a bedroom while eating a banana and standing in front of a wardrobe.,banana;bed;door;phone,\"This person is playing on the phone, starts eating a banana, then checks the door;A person uses his phone, then puts it down on the bed. They go over to a door, close it and eat a banana.\",,30.21\r\n9RVZL,70CN,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"Person is standing looking in mirror, then grabs broom and starts putting in next to wall and starts laughing.\",broom;chair;doorway;floor;mirror;wall,\"A person is looking into a mirror, then grabs a broom and tried to put it onto the wall.;Person standing in doorway looking into a green hand mirror, and then picks up a small, pink broom and puts it away by the chair.\",c093 0.00 32.00;c099 6.40 28.60;c100 5.90 12.60;c126 11.80 17.00;c127 25.40 32.00,31.25\r\n87EQI,DXDI,Stairs,6,7,Yes,\"One person stands on the stairs with a cup of coffee, then starts tidying up some food left on the stairs.\",coffee;cup;floor,Person standing on the stairs with a cup in hand sit down and organize items on the stairs.,c107 0.00 26.00;c151 9.00 13.40;c125 10.70 26.00;c127 14.90 24.10,24.71\r\nCVPQR,ZAWX,Recreation room / Man cave,7,7,Yes,\"A person is in a basement opening their laptop, they then grasp a chair a take a seat.\",chair;laptop;table,\"A person picks up a laptop, opens it, types something into it, then sits down.;A person retrieved laptop from a table stands for a few seconds then has a seat in a chair and continues on laptop.\",c047 0.00 32.00;c048 0.00 9.00;c050 0.00 9.80;c052 4.90 32.00;c059 17.20 32.00;c151 16.50 32.00;c011 19.10 32.00,30.58\r\nQKP9V,X5XO,Basement (A room below the ground floor),7,7,Yes,\"In the basemen, a person is laughing by themselves after they see a chair knocked over. They begin taking the chair towards the door.\",chair;closet/cabinet;door;floor,\"Person walks up to a chair that is turned over, picks it up, opens the door and carries it out of the basement;A person picks up a chair, opens a door to another room and puts it in there.\",c008 14.10 22.20;c149 1.00 8.50;c113 15.30 22.70,30.38\r\nCIL5L,T7C3,Home Office / Study (A room in a house used for work),7,6,Yes,A person in standing in front of a mirror starts working on a desk.,desk;laptop;mirror;paper/notebook;shelf;table,A person looks at themselves in a mirror.  That same person then starts working on a laptop on a desk.;A person is at a desk using a laptop tidying up the desk while holding a mirror.,c093 0.00 33.00;c012 5.30 33.00;c052 0.00 33.00;c116 6.50 12.10;c082 1.90 33.00;c154 0.00 33.00;c081 5.80 12.80;c117 5.80 12.80,32.46\r\n7LJ4G,UTMU,Closet / Walk-in closet / Spear closet,5,6,Yes,\"One person grasps a vacuum from a cabinet, starts to work on it, then throws it down and smiles.\",floor;vacuum,A person picks up a vacuum cleaner and then attempts to open it but gives up and leaves it alone and walks away.,c136 3.60 27.70;c152 24.90 33.80;c151 4.80 12.30;c154 28.30 34.80;c137 0.00 28.10;c125 4.10 31.50,33.79\r\nM7DIB,5LWB,Kitchen,4,6,Yes,A person looks out a window and smiles. They eat a bite of food and put a coffee cup in the sink.,cup;dish;food;mug;sink;window,A person in kitchen picks up a container and eats from it.  Person picking up a mug placing it into sink.,c110 11.60 16.00;c092 0.00 4.40;c063 2.10 7.30;c156 3.60 10.00;c119 4.50 10.50;c062 1.20 10.70;c118 1.60 10.20;c061 1.50 10.20;c120 12.10 17.70;c109 12.70 19.00;c107 12.30 18.60,20.58\r\n6AHBW,3VLX,Dining room,6,7,Yes,A person is drinking a glass of water and eating a sandwich then they wash the wall with a towel.,chair;cup;food;glass;sandwich;table;towel;wall;water,\"A person is sitting at a table eating a sandwich and drinking water from a glass. The person stands up and cleans the wall with a towel.;A person is eating something, and then takes a drink of water. THen grabs a towel and scrubs the wall.\",c038 14.50 30.60;c065 0.00 7.50;c156 0.00 6.60;c059 0.00 16.60;c106 3.80 14.50;c154 13.50 18.20;c011 0.00 17.20;c069 0.00 4.20;c061 0.00 7.10;c062 2.20 7.20;c067 0.00 7.80;c063 0.00 8.30;c068 1.30 7.40,29.75\r\n6AHD0,6NQX,Dining room,7,6,Yes,\"A person is in a Dining Room eating food.  The person sneezes, then grabs a broom and begins laughing.\",bowl;broom;couch;dish;food;sofa;table,A person is sitting on a sofa and eating some food from a bowl. They sneeze and stand up before going to pick up a broom.;A person is on the couch eating something. They then put the bowl down and sneeze. They get up and pick up a broom.,c061 0.00 16.20;c100 22.20 29.00;c153 11.00 17.40;c098 20.20 28.10;c156 1.50 12.40;c154 15.50 23.60;c123 0.30 8.50;c062 0.00 13.20;c118 0.00 17.70;c011 0.00 31.00,30.08\r\nC69Y1,EA2K,Kitchen,5,6,Yes,A person stands up from a chair and open a cabinet to take a glass out and pour water in it.,cabinet;chair;counter;cup;glass;soda;table;water,\"A person opens a cabinet and takes out a glass. They pour some water into the glass and sit down.;A person is in the kitchen,they grab a glass and begin to pour soda into the glass and then have a seat.\",c112 11.00 16.70;c106 38.30 42.50;c108 22.70 28.60;c151 39.90 43.00;c110 7.00 12.30;c113 3.00 11.20;c059 0.00 42.00,41.75\r\nE7DKD,RPBD,Stairs,6,7,Yes,\"A person standing on the stairs opens a bag full of clothing and books. They take out a small tennis ball and throw it at something out of frame, laughing as they hit whatever they were fixing to hit.\",bag;food,A person is opening a bag while they are standing on the stairs they take out a ball and throw it at someone while laughing.,c021 0.30 8.50;c149 22.60 30.00;c064 21.30 26.30;c063 15.60 23.50;c020 0.00 23.70,30.08\r\nJCUT2,2RTW,Kitchen,6,6,Yes,A person standing by the dinner table begins putting away the dishes when suddenly she trips over a chair.,chair;dish;shelf;table;window,\"A person is tidying up a table. A person is putting dishes on the shelf. A person falls down.;A person is tidying up a table by taking plates and putting them on a shelf. After finishing, the person trips on the chair and falls before getting back up.;A person moves dishes from the table to the pantry and falls on the floor.\",c012 0.00 14.50;c154 16.60 24.80;c081 0.00 6.10;c119 0.20 8.20;c120 0.00 5.30;c082 2.20 14.30,31.12\r\n7ZK3Y,2RTW,Living room,6,6,Yes,Person is standing grasping the chair in the living room near the table looking out the window.,chair;television;tv;window,A person is holding a chair while watching tv and looking out a window,c092 0.00 17.70;c132 13.90 31.00,30.25\r\nLDBGB,UTMU,Bedroom,7,7,Yes,\"A person in their bedroom is undressing by taking their jacket off and placing it on their bed. Then, they look out the window.\",clothes;jacket;television,A person walks into a room and removes their jacket while looking at the television.;A person is taking off a jacket.,c155 1.90 10.30,25.83\r\nISTQI,2RTW,Living room,6,6,Yes,\"A person grasps a book from the shelf, then pulls out a sofa bed and throws a pillow on it to snuggle.\",book;couch;pillow;shelf;sofa,\"A person is getting a book off of a shelf. A person then picks up a pillow and snuggles with it on the sofa.;A person takes a book off a shelf, sits on a couch with it and a pillow and begins to read.\",c082 0.00 7.40;c026 5.80 12.60;c078 15.60 32.00;c123 14.50 32.00;c151 11.30 19.10;c076 14.20 32.00;c122 17.10 32.00;c029 19.60 24.80;c032 17.30 32.00;c077 9.20 32.00;c030 3.00 11.50,30.58\r\nA30ZM,C7O9,Laundry room,7,7,Yes,\"A person is opening a bag, while a other person is laughing holding a phone.\",bag;phone,\"One person is looking through a bag, while another person is laughing at the phone.\",c020 0.00 32.00;c016 28.10 32.00;c149 0.00 32.00;c015 0.00 32.00;c021 0.00 4.30,30.62\r\nNLU6W,YMXV,Living room,6,4,Yes,\"A person is holding a pair of shoes. Then, laughing, the person puts them down and walks over to the window.\",chair;shoe;window,\"A person sitting down, picks up a pair of shoes, puts them down then stands up and walks to the window.\",c053 0.20 14.50;c092 15.90 32.00;c154 9.30 17.30;c054 8.40 14.10;c059 0.00 16.40;c056 2.60 8.80;c152 6.20 13.60,30.83\r\n0HGER,D0RU,Bedroom,5,4,Yes,A person is watching a video on their laptop in their basement while eating a sandwich.,chair;food;laptop;video,\"A person is sitting in a chair, eating, while watching videos on a laptop computer.;A person is sitting in a chair and watching a video on their laptop. They are eating some kind of food while watching it.\",,31.04\r\nXPQ0D,5LWB,Stairs,5,7,Yes,One person is running down the stairs grasping medicine and another is holding a camera.,camera;medicine;phone,A person runs down the stars while another uses their phone.,c015 8.10 23.00;c150 11.10 20.70;c016 8.00 23.00,22.12\r\nV24A5,XXN8,Kitchen,7,7,Yes,A person is eating food and leaving through the doorway.,dish;doorway;food,\"A person is standing in a doorway eating some food. The person puts down the food, then waves goodbye and walks through the doorway.\",c097 21.60 31.00;c061 0.00 24.20;c062 18.20 23.80;c156 0.00 24.10;c119 19.00 25.60;c118 0.00 25.30,30.38\r\n1WFWL,D0RU,Living room,7,5,Yes,A person is sitting by a window.  Then a person is putting a laptop close to a light.,bed;hair;laptop;sofa,Person is sitting on the end of the sofasofa fussing with hair and working on the laptop.;A person is sitting on a sofa with a laptop and adjusting positions.,c047 0.00 33.00;c052 0.70 33.00;c123 0.00 33.00;c135 0.00 33.00,31.67\r\nL8T4O,54JK,Living room,4,6,Yes,\"A person is in a living room grasping a laptop after taking it from a desk, they then take it out the room with them.\",door;laptop;table,Person is walking towards a table and picks up a laptop and walks towards the door and opens it.;A person walks past a television in order to retrieve a laptop from a small table.,c047 0.40 15.00;c050 0.00 6.30;c141 9.10 14.10;c152 0.00 9.30;c008 10.60 15.00,14.33\r\nX8KIS,Q4IF,Laundry room,5,7,Yes,A person is walking through a door and begins laughing as they drop their homework on the floor.,door;floor;homework;paper/notebook,A person walks through a doorway and drops papers. A person picks up papers.,c127 4.60 31.00;c097 0.00 6.80;c117 4.70 31.00,29.83\r\n4FTT5,D0RU,Stairs,5,5,Yes,A person taking their phone and laptop upstairs pauses to sneeze. This person then resumes walking up the stairs.,laptop;phone,\"A person walks slowly up a flight of stairs while carrying a laptop in one arm and a phone in the other, and pauses to sneeze.\",c015 18.30 84.60;c047 16.40 85.30;c153 34.20 57.90,127.04\r\nIA2O6,C7O9,Kitchen,6,6,Yes,A Person is playing with the vacuum and another person is tidying the clothes.,clothes;vacuum,\"A man folding socks in front of a closet another person is putting a cord on a vacuum clean , pulls the container and goes to empty the dirt out of it.\",c137 12.80 20.90;c137 0.00 13.70;c000 0.00 30.00;c004 0.00 30.00,29.25\r\nVGPYM,3H6W,Bedroom,6,5,Yes,\"While the person was pouring their coffee, the person was grasping the vacuum.\",coffee;cup;vacuum,person comes in the video late holding a mug pouring something in it.,c107 3.30 26.80;c152 13.10 24.90;c108 9.80 19.60,32.17\r\n8V9IX,YA10,Kitchen,7,7,Yes,Person is drying dishes with a towel and putting them into a cabinet. Then you see them leaving the room.,cabinet;dish;shelf;towel,\"A person is standing at the kitchen sink washing several dishes. Between each dish they look out the window in front of them. After washing, they put the dishes away in a cupboard and then leave the room.\",c118 0.00 8.90;c119 3.90 8.70;c119 25.50 35.40;c112 33.20 41.00;c033 16.40 28.70;c118 0.00 32.50;c120 25.70 37.40;c121 0.00 25.90;c113 31.20 38.40;c038 3.70 31.10;c081 31.80 37.00;c036 26.10 31.50,39.54\r\n539EH,DXDI,Basement (A room below the ground floor),7,7,Yes,\"Person puts box with shoes on table, then starts opening box, then takes picture of shoes with camera.\",box;camera;chair;shoe,\"A person sits in a chair and open a box while talking a picture of shoes.;A person puts a box on a chair, opens it and takes out shoes to look at. The person then picks up something and looks closer at the shoes with it.\",c040 0.00 8.10;c041 2.70 10.10;c044 5.40 16.50;c053 8.40 18.50;c054 6.60 18.20;c056 7.80 19.50;c059 0.00 35.00;c018 10.50 17.20;c015 10.10 35.00,33.58\r\nYVOVB,0KZ7,Basement (A room below the ground floor),7,7,Yes,A person is smiling while eating groceries from a box.,box;food;groceries;table,A person eats food directly from a box full of groceries sitting on top of a table.;A person goes through a box and eats some food.,c041 0.00 4.50;c152 9.10 17.80;c156 1.60 20.00;c061 0.70 27.40;c063 0.30 27.40;c044 0.00 5.40;c044 3.60 10.20;c044 12.20 18.70,27.29\r\nX6B0P,2RTW,Bedroom,7,7,Yes,A person is standing in the hallway undressing. The person goes to the sofa and and starts snuggling with a towel.,blanket;cat;clothes;shirt;sofa;sweater;towel,\"Person is standing and removes sweater, then goes to couch, sits down next to cat, picks up sweatshirt and cuddles it.;A person takes off their shirt and puts it on the floor. The person walks over to a couch, sits down, and cuddles a towel.\",c151 5.00 15.40;c001 17.50 27.30;c155 10.30 22.70;c033 12.80 31.00;c000 5.30 14.50;c003 5.20 14.80;c072 13.80 31.00;c071 12.30 21.80;c070 12.60 31.00;c123 14.30 31.00,30.42\r\n9MXDX,YA10,Living room,7,7,Yes,\"A person sits in the living room, drinking a glass of water while eating food from a few dishes. The person laughs.\",cup;dishes;food;glass;sandwich;sofa;table;television;water,person sitting on couch eating and drinking ans smiling;Person is sitting at a table watching television and eating food off of two plates and is laughing at what he is watching.,c061 6.40 11.90;c156 8.50 19.00;c152 18.40 27.80;c123 0.00 31.00;c109 5.70 12.10;c106 2.40 10.90;c149 18.10 27.70;c011 0.00 31.00;c132 0.00 31.00;c065 6.40 14.80,30.04\r\nBZ189,YA10,Bathroom,7,7,No,\"A person is washing their hands in the sink in the bathroom. Then they start undressing by taking their jacket off, and then pick up a pillow off of the ground.\",clothes;hand;jacket;mirror;pillow;sink;towel,\"A person washes their hands in a sink then dries them with a towel before undressing and picking up a pillow from the floor.;A person is standing in the bathroom in front of the mirror washing their hands. After drying their hands on a towel, the person takes off their jacket  and picks up a pillow from the floor.\",c139 0.10 12.80;c079 25.30 31.00;c155 13.60 25.50;c035 10.50 17.30;c076 25.80 31.00,30.50\r\nFLEU2,YMXV,Laundry room,3,,No,One person walks into the laundry room and tidies up the sink and the cabinet.,clothes,A person is cleaning up clothes that are hanging.,c004 0.00 32.00,30.58\r\n91H2P,WG9D,Kitchen,5,6,Yes,\"A person stands in the pantry, holding a camera. The person smiles and leaves, turning off the light as they go.\",doorway;light;phone/camera,A person smiles and walks out of the room and shuts the light off.,c105 2.00 5.00;c152 0.00 5.00;c015 0.00 2.60;c149 0.00 4.40;c097 0.10 5.00,4.29\r\nN8R3F,UTMU,Recreation room / Man cave,5,6,Yes,A person walks into a recreation room and throws a pair of shoes at a shelf.,clothes;floor;shoe,\"A person walks into a room, throws some shoes on the floor, then walks out again.\",c058 3.90 9.20;c003 4.20 8.80;c126 4.20 8.80,19.62\r\nTC749,D0RU,Home Office / Study (A room in a house used for work),7,1,No,\"A person fixes a chair in their office, A person holds onto groceries in their office.\",bag;chair;computer;floor;papers;pen;table,\"Person is sitting on floor writing on a chair.  The person stands up, picks up a bag and puts things in it.;The person is fixing a chair and then afterwards picks up a bag and begins to put objects into it.\",c154 30.10 38.00;c125 2.70 31.90;c012 32.10 38.00;c023 29.50 35.20;c020 29.50 38.00,37.25\r\n0JJIY,3VLX,Basement (A room below the ground floor),6,7,Yes,\"One person walks in, pours something into a glass, then grasps a picture and leaves.\",cup;glass;picture;pitcher,The person walks into the room and pours a pitcher of water into a cup. The person then grabs a picture and walks out.,c108 3.80 13.60;c084 13.90 21.70;c083 12.00 18.00;c107 2.40 15.20,21.83\r\nG1NFB,XXN8,Closet / Walk-in closet / Spear closet,5,7,Yes,A person is sneezing as the person dusts shelves. Then the person begins washing the mirror and the wardrobe.,closet/cabinet;door;mirror;shelf;towel;wardrobe,\"A person sneezes while putting away towels on a shelf. They then clean a mirror, close the door, and clean the door.\",c095 14.30 26.00;c153 0.00 3.70;c006 22.30 28.30;c082 0.00 25.00;c037 0.00 25.00;c038 13.30 25.30;c112 22.70 28.20;c114 1.40 27.00;c033 0.00 34.00,33.21\r\n7HWS7,XXN8,Living room,6,7,Yes,A person is seen snuggling on the couch with a laptop. They begin to open their laptop to get some work done.,laptop;sofa,\"Person lays on a sofa. Person opens a laptop, and then starts typing on laptop.\",c122 0.00 3.50;c048 0.00 4.70;c052 0.10 31.00;c123 0.00 31.00,29.58\r\nLDFM5,X5XO,Bathroom,7,7,Yes,Person is walking to bathroom with clothes on starts grasping cabinet knob opens it and gets fresh clothes out.,cabinet;clothes;doorway;shelf,\"This person walks into the bathroom, opens a cabinet, folds a few towels, and closes the cabinet.\",c112 20.70 32.00;c113 2.80 7.70;c000 13.90 29.50;c004 3.60 15.60;c002 19.60 25.90;c097 0.30 5.20;c002 2.90 32.00;c082 3.60 32.00,30.83\r\nQDRWK,KQI6,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is tidying up the floor. The person puts a book on a shelf while smiling.,book;door;floor;magazine;mop;shelf,\"Person walks in door with mop, walks through hallway to kitchen, mops floor, picks up magazine and puts on shelf.;Person opens the door and walks into the home and begins sweeping the floor before placing a book on a shelf.\",c026 22.40 28.90;c030 21.30 26.50;c152 22.70 28.70;c127 8.30 24.60;c028 21.80 30.00;c081 23.70 30.00;c154 0.00 30.00;c097 0.00 8.60;c008 0.00 6.60;c006 0.20 7.00,29.50\r\n0OMFD,Z68L,Bedroom,6,6,Yes,A person is picking clothes out of a box and getting dressed and then throwing it across the room.,bed;box;clothes,A person takes things from a box which sits on their bed and they get dressed.;Person walks over to the bed take clothes out of a box put the shirt on close the box and toss it.,c041 0.20 6.70;c148 2.80 8.90;c148 5.70 27.80;c001 2.70 9.10;c002 5.20 10.70;c044 0.00 8.90;c042 23.80 33.00;c045 23.80 33.00,32.04\r\n642HE,5LWB,Home Office / Study (A room in a house used for work),5,6,Yes,A person is eating on a chair and another person is holding a book next to them.,book;chair;computer;couch;food;sofa;table,There is a person sitting on a sofa holding a book. There is another peron sitting in a chair at a table eating.;One person is sitting on a couch holding a book and another on a chair at a desk eating.,c026 0.00 44.00;c156 1.20 44.00;c011 0.00 44.00;c152 31.10 38.30;c059 0.00 44.00;c115 0.00 44.00;c123 0.00 44.00,42.62\r\n1375X,C7O9,Pantry,6,7,Yes,\"A person is sneezing into a bag, then tidying with a broom while smiling in a pantry.\",bag;broom;closet/cabinet;floor;shelf;trash can,\"A person sneezes into a bag. Then they put it in a trash can and pick up a broom and start sweeping. Then they pick up a bag and put it on a shelf.;A person is standing in a pantry sneezing into a bag.  The person then puts the bag in a garbage, picks up a broom and sweeps while smiling.  Then the person picks up a bag from the floor and places it on a shelf.\",c020 0.00 8.60;c098 21.00 28.00;c102 8.70 29.00;c081 22.40 28.10;c022 5.30 11.80;c024 5.30 11.80;c100 8.40 13.00;c153 0.00 8.00;c114 8.40 29.00;c127 8.40 29.00;c152 10.00 22.80,28.50\r\nLRPBA,UTMU,Closet / Walk-in closet / Spear closet,5,5,Yes,A smiling person runs into their closet holding a mirror and a glass.,closet;cup;glass;mirror;phone/camera,A person runs in place and drinks from a glass in a closet.,c093 0.00 20.10;c106 7.70 13.30;c150 0.00 9.60;c015 0.20 19.80;c016 5.70 11.80,19.75\r\nO138M,0KZ7,Stairs,5,6,Yes,\"One person with hair in a towel sneezes and drinks some medicine, then runs up the stairs.\",bottle;glass;stairs;water,Person is standing there staring at a bottle on the floor and moving around it.  Person then picks it up and takes a sip from it and walks up the stairs.;A person is standing at the bottom of the stairs. They sneeze and then pick up a glass of water and drink from it. Then they walk up the stairs.,c153 6.20 12.70;c106 13.80 25.20;c107 11.90 28.00;c110 11.90 17.70,26.96\r\nF0OW8,5LWB,Stairs,6,7,Yes,\"A person takes some dirty dishes from a desk at the top of the stairs. The person finds a piece of food on one of the dishes, which the person smells, then eats.\",dish;food;snacks;stairs,\"a person walking up the stairs, bends down, picks up the dish, puts it down then picks up something on a dish and puts it in their mouth\",c118 7.60 13.60;c156 14.20 21.60;c063 6.40 25.00,23.96\r\nMSQA1,BYF9,Kitchen,6,7,Yes,\"A person enters the kitchen and opens the refrigerator.  After tidying the fridge for a moment, the person suddenly sneezes.  They then pull a sandwich out of the fridge and sit in a chair at the kitchen table and begin to eat the sandwich.\",chair;dish;doorway;food;fridge;refrigerator;sandwich,A person walks to the fridge and cleans off the fridge before sneezing and grabbing a sandwich.,c065 50.00 54.00;c143 11.30 18.80;c059 48.20 54.00;c153 28.40 35.90;c151 45.80 53.20;c156 49.20 54.00;c118 38.30 54.00;c120 35.90 43.40;c061 18.00 29.80;c063 17.20 29.20;c069 17.20 29.20;c097 0.00 5.50;c067 17.20 29.20,53.33\r\nYNJ86,XXN8,Bedroom,7,6,Yes,A person is smiling while reading a book. The person closes the book and takes a drink from a cup of coffee.,book;chair;coffee;cup;glass,Person is reading a book and drinking a beverage.,c026 0.00 19.80;c025 14.30 19.10;c027 0.00 4.50;c029 0.00 18.60;c106 16.50 30.60;c109 26.40 31.50;c110 26.40 32.00;c152 0.00 20.50;c032 0.00 17.70;c059 0.00 32.00;c107 19.40 26.10,30.75\r\n0UZ0Y,RJOM,Garage,6,7,Yes,\"A person is sneezing into a towel, then the person starts laughing and drinks their coffee.\",coffee;cup;dish;towel,\"A person stands in the garage next to a vehicle.  They take a towel from the hood of the truck and sneeze into it, throw it back on the hood while laughing, then take a cup of coffee and drink some.\",c153 0.00 5.80;c149 2.10 8.80;c110 3.20 10.10;c106 3.70 12.00;c107 3.10 12.00;c118 3.20 12.00,11.33\r\n9A5MP,1TZV,Garage,3,7,Yes,A person tidying the area with a broom stops and pulls a snack from a bag. The person eats the snack then walks to an open door and closes it.,bag;broom;door;floor;food,\"Person sweeping a room with a broom walks over to the table and pick up some food then walks through the door.;A person uses a broom to tidy up the garage, takes a bite of food removed from a bag, then closes the door.\",c098 0.00 34.00;c006 26.50 34.00;c156 9.30 25.60;c063 9.20 22.30;c102 0.00 15.30;c021 10.50 16.40;c127 0.00 15.10;c062 12.30 17.90,32.71\r\n5LPJL,KQI6,Living room,6,5,Yes,One person with hair in a towel puts medicine in a cabinet. Another person grasps a pile of homework and starts laughing.,book;floor;hair;homework;paper;shelf;sofa/couch;table;towel,One person is sitting on the floor flipping through the pages of a book that is sitting on a coffee table. A second person is sitting on a couch nearby and drying their hair with a towel. The second person then moves a paper from the top of the coffee table to the shelf below it.,c145 0.00 32.00;c038 0.00 15.20;c081 14.50 20.90;c027 0.00 32.00;c123 0.00 32.00;c033 0.00 17.60;c144 0.00 15.20;c032 0.00 32.00;c125 0.00 32.00;c012 16.70 28.50,31.12\r\nEO3G8,Q4IF,Recreation room / Man cave,7,7,Yes,\"A person walks over to the window and opens it. The person sneezes, then pulls out some medicine from their pocket and takes it.\",cup/glass/bottle;curtain;dish;door;medicine;paper/notebook;table;water;window,someone walking fast towards a window as they are sneezing;A person walks to a wind and opens it. they sneeze and put a pill in their mouth and drink water with it.,c129 16.70 24.60;c090 1.50 12.40;c153 4.80 13.90;c107 17.50 28.60;c009 12.30 20.20;c117 10.40 16.00;c119 18.80 27.30;c092 1.00 13.50;c097 0.00 3.40;c106 20.80 27.30;c120 17.50 23.10,31.38\r\n9INKU,6RE8,Garage,7,6,Yes,\"A person is running back and forth in the garage, trying to go as fast as possible. Their person is taking pictures of them with a camera and laughing.\",camera;doorway;phone;picture,\"A person  goes around a room taking video with their phone, and then goes outside to video tape a cloths line.\",c087 11.90 31.00;c015 11.90 31.00;c150 4.00 15.70;c097 10.80 16.00;c016 0.00 7.30,30.08\r\n1T2W4,T7C3,Laundry room,7,7,Yes,\"A person is sitting on the washing machine, snuggling a pillow. They jump down, open the washer, and throw a towel into it from across the room.\",clothes;pillow;towel;washing machine,A person snuggles with a pillow and then throws clothes into a washing machine.;A person is sitting on a washer snuggling a pillow they get up open the washer and throw clothes in the washer.,c078 0.00 16.20;c034 21.30 28.00;c154 13.00 20.30;c003 22.50 28.00;c002 20.60 27.10;c035 21.30 28.00;c004 15.10 28.00;c036 20.90 28.00;c076 0.00 17.00,27.38\r\nJKR9A,4I2W,Dining room,5,6,Yes,A person is seen grasping some groceries. They turn on a light and start fixing their hair.,bag;groceries;hair;light,A person picks a bag off the table and then turns on the light before fixing their hair.;A person is taking a bag from a table before turning on a light and touching their hair.,c144 15.90 31.00;c104 10.00 18.60;c020 1.90 31.00;c023 3.70 13.40,29.83\r\nOHBYF,D0RU,Hallway,6,6,Yes,\"One person tidies the area by putting shoes in a box, then closes the box and grasps it.\",box;floor;shoe,The person is bending over and picking up a pair of shoes and putting them in a box. Then they pick up the box.,c039 18.00 24.80;c040 20.90 29.80;c053 15.10 25.60;c056 22.70 35.00;c054 5.40 27.20;c043 5.40 12.00;c127 7.50 23.20,34.46\r\nZ7UOT,L4ZP,Recreation room / Man cave,5,6,Yes,\"A person is sitting with a towel covering their knees. They have medicine and a picture on their lap. The person stands, and everything falls to the floor.\",box;chair;floor;groceries;medicine;table;towel,A person is sitting in a chair holding a towel. A person then takes some groceries and puts it on their lap. A person then picks up items off the floor;A person sitting in a chair puts some medicine in their lap on a towel.  The person stands up and drops the medicine and towel  on the floor.  The person picks them up.,c034 14.30 21.20;c154 13.80 21.50;c043 24.10 31.00;c040 24.10 31.00;c059 0.00 21.60;c033 0.00 21.20;c127 19.50 31.00;c128 4.00 12.70;c011 0.00 20.60,30.46\r\n8FH96,ZSRZ,Kitchen,7,7,Yes,\"A person is cooking at a stove. Then they open the fridge, laugh at what's inside, then close the door.\",door;food;refrigerator;stove,\"A person is cooking food on the stove, they then smile and open the refrigerator door.;A woman is cooking on a stove. She opens the refrigerator while smiling, then closes the door.\",c006 7.90 19.00;c149 9.90 18.10;c152 9.80 18.10;c008 8.60 14.50;c147 0.00 11.00;c143 8.60 14.50,17.58\r\n59KH0,D0RU,Bedroom,4,5,Yes,One person grasps a pair of shoes and starts undressing. Another person smiles while playing games on a laptop.,clothes;game;hair;laptop;man;mirror;shoe;table,a man looking into a mirror and then taking his shirt off while a woman is on a laptop.;Person is Undressing in front of a mirror. Another person is playing games on their laptop.,c055 1.90 11.70;c155 7.40 15.40;c096 0.00 5.70;c052 12.80 24.80;c152 26.80 33.70;c002 7.70 15.30;c059 12.10 35.00;c051 12.10 35.00;c011 12.10 35.00;c014 12.30 35.00;c149 23.20 34.50;c144 0.00 3.90,34.00\r\n9HI9D,KFGP,Bathroom,5,7,Yes,A person is holding shoes that they have taken off.  The person lays the shoes on the floor by the sink.  The person opens the cabinet door and eats some anti-acids the person has taken out.,cabinet;door;floor;food;shoe;sink,\"A person walked in a laundry room, putting some shoes on the floor.  The person then rifled through the cabinet.\",c054 0.90 7.60;c113 4.80 15.30;c156 23.90 30.40;c053 0.00 8.00,30.79\r\n3GA59,0KZ7,Kitchen,7,7,Yes,\"One person, with a towel tucked at the waist, walks into the room and starts cooking at the stove. Then, this person runs out of the room with their homework.\",doorway;food;paper;pot;stove,The person starts stirring a pot that is on the stove. The person then grabs a sheet of paper and walks out.,c147 2.60 20.50;c150 17.70 23.30;c115 17.10 22.80;c117 16.90 21.70;c097 18.90 23.40,22.96\r\nLKQQO,UTMU,Living room,7,7,Yes,A person is seen putting coffee on a table. They then start eating some food while reading a book.,bag;book;coffee;food;shelf;table,A person in the living room stands up and moves something. They return and begin to read a book while snacking on a piece of food.,c032 13.60 33.00;c061 0.00 7.70;c009 2.00 11.20;c151 6.60 15.80;c154 0.00 6.00;c081 0.00 8.20;c027 8.00 33.00;c026 0.00 6.90;c156 13.40 33.00;c020 0.00 6.90,31.79\r\nQGIP7,JVLO,Living room,4,7,Yes,\"A person stands in front of the mirror, holding a glass of water. The person sets the water down on a nearby desk.\",cup;desk;glass;hair;mirror;shelf;water,\"This person grabs a cup, starts drinking, then sets the cup down and sits on a chair.;A person walks over to a shelf smiling. They grab a glass and drink from it while touching their hair. The person sits down and places the glass in a chair.\",c106 1.50 5.50;c094 2.40 6.70;c151 1.90 6.40;c152 10.20 14.30;c059 16.80 21.00;c144 6.00 14.00;c107 0.40 22.90;c096 2.10 20.10,30.04\r\n90L0S,PKND,Other,6,6,Yes,\"A person is putting a broom away in the linen closet, while another person is washing their wardrobe.\",broom;chair;cloth;door;floor;towel;vacuum;wardrobe,\"A person is cleaning a wardrove and other is sweeping the floor. The first person smiles at the other;Two people are cleaning a room. One is sitting and wiping the wardrobe before standing up. At the same time, the other person is using a broom and smiles at the camera.\",c102 1.40 32.00;c152 4.00 11.80;c127 1.40 32.00;c033 0.00 32.00;c137 12.90 32.00;c006 14.10 24.10,30.62\r\nBOH8J,DXDI,Living room,5,7,Yes,\"A person is throwing out trash and tidying a shelf, then cleaning a glass in a pantry.\",bag;book;closet/cabinet;glass;shelf;towel,\"A person picks up a bag off the floor and leaves the room, returning to access the shelf and cabinet.\",c082 13.80 46.70;c032 24.40 30.90;c022 41.30 47.20;c023 38.00 44.60;c113 27.40 33.10;c112 41.50 47.70;c038 29.50 44.80,47.00\r\nAXS82,HR43,Kitchen,6,6,Yes,\"A person is laughing while reading a book. They close the book, and begin fixing a sandwich.\",book;refrigerator;sandwich,\"Person  reading a book in the kitchen, puts away to pick up a plate of food, and then opens the refrigerator to look in.\",c025 13.70 19.20;c067 18.10 28.80;c149 3.40 16.50;c143 25.10 31.00;c026 0.00 20.00,29.92\r\nEAVWL,5LWB,Home Office / Study (A room in a house used for work),7,7,Yes,A person is holding a book and a cup of coffee. The person sets the cup down and opens the book.,book;coffee;cup;glass;sofa/couch,\"This person is sitting, puts a cup on the floor, and reads a book.\",c109 6.70 13.20;c027 9.70 24.00;c123 0.00 24.00;c032 9.00 24.00;c026 0.00 24.00,23.42\r\nVSLQT,ZFCJ,Bedroom,6,7,Yes,A person awakens in bed and immediately begins eating a sandwich from the nightstand. The person puts the sandwich down onto a dish.,bed;blanket;dish;food;pillow;sandwich,\"A person is sleeping in bed, they then awaken and take a sandwich from a plate and begin eating it.\",c065 4.20 40.00;c069 3.20 11.50;c134 0.00 40.00;c146 0.00 9.00;c067 8.30 35.70;c072 0.00 12.60;c133 0.00 8.40;c156 10.00 40.00;c061 4.80 35.10;c078 0.00 5.90;c063 3.80 11.70,38.54\r\nP3WQV,Z68L,Bedroom,5,6,Yes,\"A person is lying on a pile of clothes, then sitting in front of a mirror in a bedroom.\",bed;blanket;clothes;mirror,\"A person walks into a bedroom and lays down on a bed covered in clothes. The person then sits up, looks in the mirror, and leaves the room.;a person walks into a room and lays on a bed that are covered in clothes then they sit on bed and look in the mirror\",c096 29.00 43.30;c151 0.10 7.50;c134 3.90 28.50;c135 29.50 44.20;c072 9.90 31.20;c154 24.50 31.70,45.58\r\nGAO6V,C7O9,Kitchen,6,6,Yes,A person awakens in their kitchen holding a bottle of medicine. They begin cooking on the stove.,food;stove,A person is sleeping on a stove than wakes up and continues to cook.,c147 12.70 30.00;c146 5.50 11.80,29.25\r\nHH0VG,Z68L,Bathroom,6,7,Yes,Person turns the doorknob to the bathroom steps inside. Person straightens the picture  above the toilet then looks in the mirror while fixing hair. After putting hair gel in hair the person leaves the bathroom.,hair;mirror;picture,\"A person is looking at a picture. A person then begins to fix their hair, while looking in the mirror.\",c096 9.90 67.70;c144 13.40 73.00;c088 4.50 15.30;c083 4.10 12.40,71.79\r\n7XVS7,Z68L,Home Office / Study (A room in a house used for work),6,6,Yes,A person is pouring coffee in to a glass and snuggling up in a wool blanket.,blanket;chair;coffee;cup;desk;dish;laptop;table,A person is sitting down at a desk with a blanket pouring coffee.;A PERSON IS SITTING IN A CHAIR AT A DESK WITH A COMPUTER AND HAS A BLANKET IN THEIR LAP. THEY THEN ADJUST THE BLANKET AND PICK UP A POT OF COFFEE AND POUR THE COFFEE INTO A CUP;Someone is sitting down and puts a blanket over them. Then they pour themselves a cup of coffee and looks at their laptop.,c106 27.40 32.60;c109 3.70 8.70;c009 14.90 19.60;c051 16.40 40.00;c107 21.30 40.00;c070 0.00 40.00;c011 0.00 40.00;c106 20.30 33.70;c110 3.50 9.30;c072 0.00 40.00;c108 5.10 18.90;c059 0.00 40.00;c052 16.60 39.80;c014 16.40 36.90;c118 3.90 40.00,39.12\r\nEVHAZ,5LWB,Living room,6,6,Yes,\"In the garage, a person stands on a chair trying to change the light, while another person is watching them in a mirror.\",chair;light;mirror,A person stands on a chair while the other looks in a mirror.,c060 0.00 14.40;c103 0.00 14.40;c093 0.00 35.00;c096 0.00 35.00,34.33\r\nEQ1G5,28B0,Bedroom,7,6,Yes,A person is sitting at a desk while snuggling with a pillow.,chair;desk;pillow;table,\"A person sitting at a desk, tries to lay their head down comfortably on a pillow on the desk.\",c011 0.00 24.00;c076 0.00 6.60;c078 2.00 24.00;c059 0.00 24.00,22.92\r\nZ1VB4,3H6W,Kitchen,7,7,Yes,\"A person putting food away into their refrigerator in their kitchen tidies up the food already in it.  They put some boxes of prepared food near their stove, and start pouring water into a pot to begin cooking.\",box;food;refrigerator;stove,A person walks into the kitchen opens the fridge straightens things in the fridge grabs a box off of the counter. then goes over to the stove pours water into a pan and starts to cook then leaves the room.,c143 2.20 14.70;c063 6.90 14.70;c040 13.50 19.20;c142 11.20 17.30;c061 13.80 19.40;c043 13.50 19.70;c147 25.50 44.40;c143 2.50 7.90;c062 4.40 15.60,47.00\r\nNE37I,C7O9,Kitchen,6,7,Yes,Person cooking in the kitchen opens the stove and pulls out a pillow.,dish;food;pillow;stove,\"A person is cooking on a stove, they then reach in the oven and take out a pillow.\",c076 17.40 27.00;c079 16.10 22.20;c147 0.00 17.50;c062 0.00 17.50;c118 0.00 16.50,26.38\r\nCRH69,0RNU,Hallway,6,6,Yes,A person is grasping some clothes. The open a door and throw the clothes on the floor.,clothes;door;floor,A person is picking up clothes from the floor and throwing them on the floor of another room.,c126 20.90 25.00;c127 0.00 23.40;c008 18.20 24.80;c003 19.60 25.00;c004 1.40 23.90;c002 0.00 18.40;c141 17.70 25.00;c000 0.00 24.30,24.25\r\nAVH53,3H6W,Home Office / Study (A room in a house used for work),7,7,Yes,\"One person tidies up around the doorway with a broom, then smiles into a mirror before leaving.\",broom;hair;mirror,A person sweeps than grabs a mirror and fixes their hair.,c093 12.60 26.00;c098 0.80 17.00;c152 14.00 26.00;c144 13.40 26.00;c102 2.00 15.10,25.50\r\nU6GKR,KFGP,Bedroom,6,6,Yes,A person is grasping a glass in a bedroom. The person smiles then drinks iced coffee from the glass.,coffee;cup;glass,\"A person is standing and holding a cup. The person walks toward the camera, stops, drinks from the cup, then continues to walk.\",c106 6.60 18.60;c107 0.00 25.00,24.50\r\n809QT,4I61,Garage,6,6,Yes,A person is walking in the garage holding a book that they found on the desk. They start pacing faster and faster and eventually the walking has become running. Now they decide they are going to be leaving the garage.,book;shelf,\"A person walks into a garage and pick up a book from a shelf and begins running with the book.;A person walks over to a shelf and takes a book from it. Afterwards, the person repeatedly turns around and runs in circles.\",c026 4.00 23.00;c030 3.00 8.00;c150 9.00 23.00;c032 5.00 11.80,23.38\r\n7JZGN,YMXV,Bedroom,5,6,Yes,A person closes a book then snuggles on their bed while staring at a picture.,bed;book,The person flips through a booklet of some sorts then lays down on the bed then goes to sleep.,c134 7.40 32.00;c135 0.00 11.20;c025 5.90 13.10;c026 0.00 32.00;c027 0.00 5.80;c145 0.00 13.90;c115 0.00 32.00,30.71\r\n0M1PW,BYF9,Kitchen,7,7,Yes,A person is cooking over the stove. The person begins laughing as the person assembles a hot sandwich.,food;sandwich;stove;table;waffles,\"One person is cooking on a stove and smiling, while another person is making waffles.;Two people are cooking food in the kitchen. Person #1 is stirring a pot. Person #2 is grilling a sandwich. Person #1 is smiling.\",c066 0.00 20.00;c147 0.00 20.00;c152 1.90 17.00;c014 0.00 20.00,19.42\r\nDZV6Z,JVLO,Recreation room / Man cave,3,7,Yes,One person stands in the doorway watching as another person at a chair plays games and eats.,chair;doorway;food;game;phone;sandwich,\"A person is walking into the pantry and they see a second person already sitting in the pantry. The second person is playing on their phone while eating a sandwich. The first person walks over and looks to see what they are doing.;A person walks in, and another person is sitting on their phone.\",c156 12.60 33.00;c065 13.10 33.00;c016 13.10 33.00;c015 0.00 33.00;c097 0.00 10.50,32.00\r\nCUB69,HJJ4,Dining room,7,7,Yes,A person is eating at a table while they play on a laptop.,chair;dishes;food;laptop;plate;table,\"Person sitting in a chair eating food out a plate, then began to work on a laptop and looking carefully at the screen.;A person sitting in a chair picks up a snack from a plate and nibbles on it as they work on a laptop sitting on the table in front of them.\",c052 4.80 23.00;c011 0.00 23.00;c156 0.00 7.70;c059 0.00 23.00;c061 0.00 9.40;c010 0.00 23.00;c014 0.00 23.00,21.71\r\nBI86J,TGGT,Kitchen,7,7,Yes,\"A person is eating a sandwich while standing over the stove. The person sneezes, then sets their sandwich down on a nearby shelf.\",cabinet;food;hands;man;pan;sandwich;shelf;sneeze;spatula;spoon;stove,\"a man messing with a skillet on a stove and sneezing.;{};Person walks in kitchen holding food in hand and eating. Then touches pan on stove. Person then opens drawer, takes out spoon, place in pan. Then sneezes, then sneeze again, then opens cabinet, put food on counter, place food in cabinet, covered mouth and sneeze again.\",c147 4.60 19.50;c067 0.00 27.10;c156 6.00 14.20;c065 1.00 26.50;c068 0.00 26.50;c153 13.50 32.00;c061 0.30 28.20;c081 18.50 29.00;c113 16.00 22.90;c062 22.40 29.50,31.21\r\n6H4D1,G6WD,Pantry,6,6,Yes,A person is sitting on a towel then takes off their shoes.,floor;rug;shoe;towel,\"Person enter in the dining room and sit on the floor, take off both shoes and start to meditate in yoga position, then the person stand up an left the room.;A person sits on a towel on the floor and removes their shoes. The person meditates. The person stands up and leaves.\",c151 0.00 10.30;c125 0.00 10.10;c057 9.10 28.40;c154 44.30 51.00,50.33\r\nMPUJ7,9Y7F,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,One person is playing games on a laptop and another is working on fixing a phone still in a box.,box;floor;game;laptop;phone,A person is sitting on the floor in a doorway using a laptop. Another person is sitting on a shelf opening a box.,c015 11.60 16.50;c047 0.00 7.00;c052 13.10 31.00;c040 2.40 16.60;c044 21.30 31.00;c125 0.00 31.00,30.42\r\nYXN50,G6WD,Pantry,6,7,Yes,\"A person walks into the pantry grasping a glass of water.  The person takes a drink and puts the water on the shelf, then picks up a pile of dishes and walks out.\",cup;dish;food;glass;pot;shelf;water,The person was in the pantry. The person drank water. The person grabbed a pot from the pantry.,c081 18.70 25.20;c119 18.50 25.20;c107 0.00 24.30;c118 23.30 39.00;c106 0.70 19.70;c109 18.50 25.20;c063 0.00 6.20;c062 16.40 24.10;c120 22.00 29.80,38.38\r\n99GC2,WG9D,Bedroom,4,7,Yes,A person is sitting down in a chair in their bedroom while playing with their phone. They start sneezing.,chair;phone,A person is playing on the phone while sneezing.,c059 0.00 6.00;c015 0.00 3.80;c016 0.00 6.00;c153 1.80 6.00,4.62\r\nAIOTI,ZAWX,Bathroom,5,1,No,\"A person is smiling while holding a picture then, at the same time a person is sneezing into a sandwich.\",book;doorway;floor;phone;shelf;shower,\"A person is reading a book in the bathroom, then starts tidying a shelf but drops a phone off of it, then picks it up from the floor and walks off;The person was reading a book in the shower. They then tidy up the shampoo bottles. The person accidentally dropped their phone so they picked it up and left.\",c025 4.00 9.40;c028 5.10 10.30;c032 0.00 10.00;c015 8.60 19.30;c018 18.10 25.50;c082 8.00 19.30;c097 22.50 28.80;c127 17.80 23.90,30.62\r\nZCO4U,LTAC,Bedroom,5,4,Yes,\"A person is snuggling with a stuffed animal in a chair.  Then, the person is playing with it on the cabinet.\",bear;chair;floor;shelf;window,A peson is sitting on the floor playing with a bear in a chair. The person picks up the bear and goes by a window.;A person is sitting on the floor playing with a bear in a chair. A person then puts the bear in the window.,c059 19.10 27.90;c151 20.40 28.40;c125 0.00 18.80;c152 0.00 14.60;c081 15.90 21.60;c154 12.20 19.00,30.79\r\nMRKTD,PO5L,Bathroom,2,6,Yes,A person holding a towel sneezes into it then sets it down on a counter next to a box.,doorway;table;towel;washcloth,\"This person walks into the bathroom, then sneezes into a washcloth several times.\",c033 8.90 17.90;c009 16.70 21.50;c153 9.50 18.90;c035 7.30 14.40;c038 11.80 21.60;c036 14.60 21.70;c034 16.00 21.10;c097 18.70 24.40,24.42\r\n5MYL4,6RE8,Bedroom,7,7,Yes,A person is watching the cars pass by their window while eating in bed.,bag;bed;food;television,A person is sitting eating from a bag.;Person is sitting down on a bed eating out of a bag while watching television.,c135 0.00 31.00;c156 0.00 31.00;c020 0.00 31.00;c132 0.00 31.00;c061 0.00 31.00,30.46\r\nENQ1G,X3DN,Pantry,7,7,Yes,A person plays with a towel and wraps it around their head like a turban.  They smile at their silliness and start using the towel to wash the dust off a small television or desk in their pantry.,head;pantry;towel,\"Person taking a towel wrapping it around her head and dancing around the room, and then taking it off and cleaning the pantry.\",c033 0.00 7.10;c152 17.30 26.70;c149 0.00 5.90;c038 27.00 40.00,38.83\r\nX95FK,1OHU,Closet / Walk-in closet / Spear closet,5,5,Yes,\"A person laughing in their closet wags their finger at their vacuum cleaner.  They peer over their shoulder through the doorway to make sure no one has seen them being so silly.  Throwing a jacket on to a shelf, they grab their camera and run away.\",clothes;door;floor;hoodie;phone;rug;shelf;sweatshirt,The person was holding a phone and a sweatshirt. The person shook a finger and then put the sweatshirt in the room then walked away.;The person is standing in the hallway looking in a closet holding a phone and a hoodie. The person waves his finger back and forth then shuts closet door and walks away.,c081 17.90 25.70;c001 17.20 25.70;c015 0.00 29.00,27.92\r\nIWK2Y,UTMU,Basement (A room below the ground floor),5,6,Yes,A person is standing in the basement looking at a picture on the shelf.  The person grabs a pillow off the floor and runs to the door to leave.,door;floor;picture;pillow;shelf,A person is looking at objects on a shelf. They pick up a pillow off the floor and run away.,c127 5.50 10.80;c088 0.40 8.90;c079 5.50 11.00;c150 6.10 13.90,13.42\r\nSTB0G,UTMU,Kitchen,6,7,Yes,\"A person is in a kitchen washing the stove with a towel, they then grab a broom and start working on sweeping the floor.\",broom;floor;stove;towel,A person walks into the kitchen. The person grabs a towel and wipes down the stove. The person grabs a broom and sweeps the floor.,c098 19.70 37.40;c099 33.20 38.40;c100 33.00 39.70;c127 20.30 37.80;c100 19.70 24.30;c038 3.10 16.40;c037 12.20 21.00;c102 19.70 37.80,39.50\r\nUJMNV,T7C3,Pantry,7,7,Yes,The person is sneezing in a towel and then pouring liquid down the sink in the pantry.,sink;towel,A person is standing in the kitchen. They start sneezing into the towel that they are holding. The person picks up a cup of water and pour it into the sink.,c033 0.00 33.00;c153 0.00 6.10,31.88\r\nUIPXF,6RE8,Bedroom,7,7,Yes,A person is standing in the room holding a cup of coffee.  The person picks up a pile of dishes off the side table and laughs while walking through the doorway to the kitchen.,coffee;cup;dish;door;glass;table,\"A person is standing in a dining room, drinking from a mug. The person picks up some dishes from the table and walks out, closing the door.;A person is drinking a glass of coffee. A person then takes some dishes, and opens and closes a door.\",c012 14.30 21.00;c118 0.00 32.00;c008 20.30 26.00;c106 0.00 17.10;c097 19.20 29.60;c006 22.50 31.80;c120 13.10 32.00;c141 20.30 29.10,31.33\r\nU1LFT,YA10,Hallway,5,7,Yes,\"A person is in a hallway undressing by a box, they then throw the box on a cabinet after putting their shirt inside.\",box;cabinet;clothes;coat;doorway;shelf,\"A person is standing up talking off a coat.  The person folds the coat and puts it in the box. Then they pick up the box and put it on a shelf. The person walks out of the room.;A person takes off their shirt, puts it in a box, and sets the box on a small table in a hallway.\",c001 14.40 20.00;c042 16.00 23.20;c155 0.00 19.30;c004 15.10 21.90;c043 16.70 21.90,28.08\r\nJW313,0KZ7,Hallway,5,6,Yes,A person is grasping a glass of water while another person is tidying a picture frame on the wall.,cup;dish;glass;picture;towel,\"A person is washing a picture frame, while another person stands nearby holding a glass of water.\",c107 0.00 28.00;c083 0.00 28.00;c088 0.00 28.00;c118 0.00 28.00;c038 0.00 28.00;c084 0.00 28.00,27.29\r\nIO5UK,PO5L,Kitchen,5,6,Yes,\"A person is cooking at the stove, they pick up a glass of oil and start pouring it.\",cup/glass/bottle;food;oil;pan;spoon;stove,\"A person walks over to the stove in their kitchen, and touches a wooden spoon to the inside of a pan. The person then pours oil in the pan, and stirs it around with the wooden spoon.\",c147 2.30 21.80;c107 7.00 19.90;c110 7.60 20.40;c108 10.70 18.10,25.25\r\nCS8O0,4I2W,Recreation room / Man cave,4,5,Yes,\"A person runs into the recreation room, holding a laptop. The person puts the laptop down, picks up a towel, and folds it.\",blanket;doorway;laptop;table;towel,\"A person walks into a living room, put a laptop on the table and then begins folding a towel.\",c050 0.00 7.60;c037 9.30 29.00;c075 27.70 31.00;c009 27.70 31.00;c046 27.70 31.00;c049 27.70 31.00;c047 0.00 8.80;c035 9.70 14.60;c034 27.20 31.00;c097 0.00 2.60,29.46\r\nA6JLX,DXDI,Pantry,5,7,Yes,\"A person is running in with dishes, then opening food.\",box;closet/cabinet;dish;door;food;table,The person comes into the kitchen holding dishes that are placed on the table then proceeds to get more food from a pantry.;A person runs into the room. Sets dishes on a table and then opens the pantry and takes out a box.,c119 1.70 7.60;c150 0.00 5.30;c008 4.60 10.20;c040 8.80 18.00;c043 7.60 12.70;c063 7.00 12.90;c009 2.00 7.50;c041 4.70 10.10;c118 0.00 7.60;c113 4.70 10.30,16.75\r\nL5ZAB,3VLX,Living room,5,7,Yes,A person is sneezing into a glass and the walking over the clothes that are on the floor of the living room.,clothes;cup;floor;glass;sofa/couch,\"A person holding a glass and sitting on a couch sneezes, stands up, kicks some clothing on the ground, and then walks away.\",c107 0.00 11.60;c154 5.00 10.50;c153 0.40 6.90;c123 0.00 9.10,14.67\r\nHB9LP,2RTW,Kitchen,6,6,Yes,A person is fixing the stove light and tidying the groceries.,bag;food;groceries;stove,\"A person is cooking on a stove, they then take out groceries from a bag.;A person is turning on the stove, and checking to see if it is hot. Then they put something in a bag.\",c020 22.30 31.00;c147 0.00 23.50;c021 22.40 27.30;c063 23.90 29.90;c061 25.00 31.00,29.75\r\nXDRZ7,2RTW,Living room,6,6,Yes,A person is in their living room sneezing as they pass through the doorway and leaving the window.,doorway;window,\"A person is walking through a living room sneezing they stop at the window and look out through the blinds, then they walk out the door.\",c097 12.10 18.70;c092 8.00 14.80;c153 0.00 7.10,24.71\r\n6KIA4,Z68L,Bedroom,7,7,Yes,A person is tidying some things on a table.  Then a person is throwing a phone onto a bed.,bed;desk;dish;medicine;phone;table,A person is cleaning a room;Person takes items off the desk picks up a towel and wash the desk. Person walks over and put medicine away.,c012 0.00 22.20;c013 17.50 24.00;c009 20.00 24.30;c120 0.00 4.10,23.58\r\n8IBNY,P6LJ,Bedroom,6,6,Yes,\"A person is pours a drink on a desk, then starts to drink the medicine and closes a drawer on the desk.\",drawer;dresser;glass;medicine;something,A person pours a glass of water and takes some medicine.;A person pours something into a glass and takes some medicine.  The person closes a dresser drawer.,c128 22.50 34.10;c129 29.10 42.70;c108 9.60 17.20;c109 1.30 8.60;c109 12.20 18.50;c109 19.50 26.30;c110 1.00 6.60;c110 3.30 8.80;c110 7.60 14.70;c106 31.90 40.50,50.58\r\nU104F,KQI6,Living room,5,7,Yes,One person is playing on a laptop.  Another other person hits the other person with a pillow and laughs.,laptop;pillow,A person sits on the floor while on his laptop while another swings a pillow.,c051 0.00 23.00;c149 21.00 30.00;c052 0.00 30.00,29.46\r\n1UXVA,ZAWX,Kitchen,4,5,Yes,A person is eating food at a desk in the basement.  The person drinks a glass of water and takes the plate to the door and leaves.,chair;cup;desk;dish;door;food;glass;table;water,\"Person sitting at table in a chair eating some food out of a dish, drink some water gets up and takes plate.;Person is sitting down eating food and takes plate and leaves room.\",c061 11.60 16.70;c106 15.00 22.60;c156 8.30 16.70;c120 21.30 27.20;c097 28.10 32.00;c118 13.60 24.90;c059 1.10 25.90,30.62\r\nJ4RPL,HJJ4,Dining room,7,7,Yes,\"One person opens a box to get out homework, works for a while, then closes the box and starts playing with a big towel.\",box;homework;paper;table;towel,\"A person sits at a table. They take some homework out of a box, look at it, then put it back in the box.  They take a towel from their lap and begin throwing it in the air.\",c116 16.50 22.50;c117 0.00 4.80;c044 0.00 4.60;c035 20.80 26.80;c036 24.30 32.00;c011 0.00 32.00,30.67\r\n5VDT6,P6LJ,Bedroom,6,6,Yes,\"A person is tidying up as the person sips their coffee. Then, sneezing, the person begins throwing clothing off the bed and onto the floor.\",bed;blanket;clothes;coffee;cup;floor,A person drinks coffee while fixing a bed. The person then throws clothes on the floor.,c106 2.00 9.30;c126 18.30 23.10;c001 21.00 30.60;c107 1.50 31.90;c075 8.30 14.50;c003 18.60 31.30,33.25\r\n7L5W3,YMXV,Bedroom,4,6,Yes,A person is sitting in a chair and looking at a camera. They set the camera down on a shelf and smile.,camera;chair;phone,A person is sitting on a chair looking at a window. They then stand and grab a camera and throw it away.,c059 0.00 19.20;c015 20.60 31.30;c154 15.50 30.90;c151 26.40 31.60;c018 20.00 25.00,30.96\r\n5YN7H,Z755,Living room,3,4,Yes,The person is in the man cave walking towards the window after leaving a blanket on the sofa.,blanket;chair;sofa;window,A person is snuggling in a blanket in a chair. A person then looks through a window.;A person sits in a chair covered with a blanket. The person gets up and looks out a window.,c072 0.00 6.40;c092 3.00 12.00;c123 0.00 7.00;c074 3.60 8.50;c059 0.00 7.20;c090 6.00 11.50;c154 1.60 7.30,11.04\r\nF8M2Y,4OHY,Bedroom,6,6,Yes,A person is undressing in their basement. They grab a book from a cabinet and throw it into a basket.,bed;book;cabinet;card;closet;clothes;door;jacket;picture;shirt,\"A person is taking off their shirt, then they walk over to the closet and open it, and take out a card. They look at the card then throw it down.;A person is taking off their jacket which they toss on the bed. Then they walk over to their closet and open the door and grab a picture.\",c113 10.90 16.40;c027 15.50 19.90;c032 14.20 20.20;c003 7.30 12.40;c026 13.30 26.10;c031 21.60 26.40;c155 0.00 11.50;c001 7.10 12.30;c112 26.80 30.00,29.29\r\n4U20P,0KZ7,Dining room,7,7,Yes,A person is laughing at a vacuum while another person is sneezing on dishes.,cup;dish;glass;vacuum,\"A young woman standing and holding a glass and a measuring cup and sneezing several times.;one person holding glasses ad sneezing , other person was playing with the vacuum cleaner\",c153 0.00 29.00;c107 0.00 29.00;c152 0.00 29.00;c149 0.00 29.00;c118 0.00 29.00,28.38\r\nZSREG,WG9D,Laundry room,4,7,Yes,A person stood in the doorway grasping a phone.  Then a person started tidying a shelf while smiling.,cabinet;doorway;phone;shelf,\"man inspects something in his hand, perhaps a list. Moves to his right in a small kitchen like area and opens a cabinet door that is at eye level.\",c113 0.70 7.80;c017 2.80 8.10;c015 0.00 6.00,14.67\r\nVA7IT,1OHU,Bedroom,7,2,Yes,\"One person snuggles a pillow in the doorway, then throws the pillow down and starts tidying up stray dishes.\",blanket;closet/cabinet;cup/glass/bottle;dish;doorway;floor;pillow;trash,\"There is a person sleeping on the floor with a pillow in front of a doorway. That same person jumps up, throws the pillow and throws away some trash.\",c080 14.50 22.00;c124 0.00 17.40;c074 14.60 19.30;c114 20.00 27.90;c146 12.00 16.60;c119 25.90 32.00;c110 20.00 27.00;c072 0.00 15.20;c154 11.60 20.80,30.75\r\n8JMY5,BYF9,Kitchen,7,7,Yes,A person is taking a sandwich off the stove.  They then begin sneezing.,dish;sandwich;stove,A person picks up a plate with a sandwich on it from the stove and sneezes.,c067 1.40 17.00;c069 1.30 6.40;c153 3.00 17.00;c118 1.20 17.00,16.33\r\nE53CQ,YMXV,Living room,4,6,Yes,A person is grasping a towel and undressing by the doorway.,doorway;towel,A person stands next to a mirror in a doorway.  They dress in a towel.;A person is holding a towel.,,30.75\r\nMDUG6,Z68L,Kitchen,6,6,Yes,A person was cooking at the stove while watching a movie on the television.,food;pot;spoon;stove;tv,A young person stirring a pot and watching something on a tv.,c147 1.20 38.10,42.88\r\nK1M15,Z68L,Kitchen,6,6,Yes,\"A person puts a pot on the stove. The person pulls out their phone, and smiles when they look at it.\",dish;food;phone;stove,A person is putting water in a pank and cooking while playing with their phone and smiling.,c016 14.40 28.90;c147 10.20 15.00;c152 26.30 30.60;c147 3.90 15.30;c119 5.00 16.80;c015 12.20 30.60;c018 26.40 32.00,31.17\r\nLQEB5,UTMU,Laundry room,6,4,Yes,A person is seen undressing in the laundry room. They throw their clothes in a box and then pick up a vacuum.,box;clothes;shirt;vacuum,\"A person walks in the room, takes off a shirt and throws it in a box. Then the person picks up a vacuum cleaner and leaves.\",c137 11.30 22.20;c138 11.10 19.70;c001 6.50 11.80;c003 6.50 11.80;c155 1.50 9.60,27.04\r\nI79Q6,XXN8,Kitchen,7,6,Yes,A person is seen grasping a box. The person then puts the box in the refrigerator and pulls out some juice. They then pour themselves a glass of juice,box;cup;dish;food;refrigerator;sauce,A person walks to refrigerator opening it and putting a box in. Person picks up a bottle of something up and pretends to pour it into cup and then pretends to drink it before walking away.,c042 0.40 8.10;c143 1.20 8.10;c106 14.20 24.60;c108 13.20 21.30;c110 9.10 18.80;c119 21.70 26.60;c118 10.60 26.60;c063 6.80 13.50;c061 7.10 26.70,30.04\r\nKJK56,8IOD,Living room,3,6,Yes,A person is drinking a pop and taking their shoes off.  The person goes to the doorknob and starts laughing while talking on the phone.,cup/glass/bottle;door;phone;shoe;sofa,\"A person is sitting on the sofa holding a phone and drinking a soda. The person begins talking on the phone and laughing. The person takes off their shoes,and goes to the door and opens it.\",c015 0.00 31.00;c141 14.50 31.00;c123 0.00 14.60;c019 8.70 31.00;c149 15.00 31.00;c057 4.80 13.90;c152 14.40 31.00;c106 0.70 12.70;c154 10.30 15.20;c008 24.10 31.00;c107 0.00 13.90,30.00\r\nYA379,W4E6,Hallway,6,6,Yes,The person is walking down the hallway holding a cup of coffee before having a sneezing fit in front of the window.,cup;glass;hand;window,\"There is a person that walks into the room holding a glass, the person stops and sneezes a few times and then walks away.;A person walks into the hallway drinking from a cup, looks out a window, sneezes in their hand and walks away.\",c092 4.30 26.20;c107 0.70 27.00;c153 8.50 23.00;c106 2.70 8.70,25.62\r\n4RBVB,KFGP,Laundry room,5,7,Yes,A person is tidying up the laundry room while washing clothes. The person sits on a to chair read a book while waiting for the load to finish.,book;chair;closet/cabinet;clothes;door;shelf,\"A person puts laundry detergent and fabric softener into the cupboard then sits down, picks up a book and starts reading it.\",c027 17.70 26.70;c059 15.90 37.00;c151 15.20 23.20;c008 2.30 8.30;c030 14.90 22.30;c026 15.20 37.00;c006 11.60 17.40;c032 17.50 37.00;c113 1.80 8.50;c112 11.30 17.60;c081 3.00 15.80,35.79\r\n73XDD,UTMU,Living room,6,7,Yes,A person is in their living room doorway holding a towel. They begin undressing before sitting on the couch.,clothes;doorway;pillow;sofa;towel,A person walks into a room where a dog is standing.  The person takes off a coat and places it into a chair and sits on the couch.,c123 0.00 6.30;c097 3.40 13.60;c155 16.20 22.80;c151 7.50 24.80;c076 0.00 29.00;c000 0.00 13.90;c001 9.20 13.60,27.54\r\nPROQY,0KZ7,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,One person runs into the entryway with a towel and starts tidying up a mirror hanging there.,mirror;towel,A person is standing at the bottom of some stairs and cleaning a mirror with a towel.,c095 0.00 29.00;c033 0.00 29.00;c150 0.00 3.00;c038 0.00 29.00,27.67\r\nRBNLA,3H6W,Laundry room,7,7,Yes,\"A person is in a laundry room grasping their phone, they then start tidying up before turning off the light.\",box;door;light;phone;shelf,\"A person enter a laundry room playing on a phone. they grab something off a shelf and close the door, turn out the light and leave.\",c105 25.40 32.00;c015 0.00 26.90;c016 1.80 28.50;c006 21.60 28.50;c042 13.40 19.70;c141 22.10 27.20;c081 13.40 19.70,36.50\r\nEW6K9,P3TI,Stairs,3,7,Yes,Person is sitting on chair drinking coffee and throwing clothes down stairs and smiling.,chair;clothes;cloths;coffee;cup;towel,A person sitting in a chair drinking coffee and throwing cloths down the stair.The person does this several times.,c106 0.00 9.10;c107 4.60 12.10;c059 0.00 38.00;c001 8.90 15.50;c003 13.60 19.40;c152 34.20 38.00;c003 24.10 29.90;c036 24.60 29.80,37.42\r\nIQIBE,I2IV,Hallway,6,7,Yes,\"A person sits at the window, smiling. The person turns their attention to the mirror, and they begin laughing.\",mirror;window,A person is seen sitting by a window then begins laughing while they look at themselves in the mirror nearby.,c094 22.10 30.00;c096 22.10 30.00;c092 0.00 14.70;c149 11.90 30.00,29.17\r\nOHZG5,2RTW,Dining room,6,6,Yes,\"A Person is drinking coffee while wrapped in a blanket in the kitchen. They are holding a newspaper, and laughing while reading.\",blanket;chair;coffee;cup;food;paper;shelf;table,A person wrapped in a blanket sits at a table reading the paper and drinking a cup of coffee. They laugh as they read the paper.;A person is sitting at a table reading a newspaper and drinking coffee.,c009 6.40 11.30;c106 0.00 6.00;c072 0.00 32.00;c149 7.30 14.00;c011 0.00 32.00;c115 0.00 32.00;c059 0.00 32.00,31.04\r\nI7HPL,2RTW,Kitchen,6,6,Yes,\"A person sits at the table, takes food from a bowl and begins eating it.\",chair;dish;food;table,A person is sitting at the table and eating.,c156 0.00 31.00;c011 0.00 31.00;c059 0.00 31.00;c118 8.20 22.10,30.46\r\nYBVVZ,2RTW,Kitchen,6,6,Yes,\"A person is tidying the room, washing the table and putting food on a shelf.\",dish;food;shelf;table;towel,A person is picking up a plate of food on a table. A person is tidying a table. A person begins to clean a table.;{};A person starts to tidy up a table. The person wipes the table with a towel. They then put food on a shelf.,c063 28.80 33.80;c012 0.00 12.40;c062 15.20 23.10;c062 24.70 36.00;c013 9.80 33.50;c012 29.30 36.00;c119 23.80 36.00;c081 16.80 36.00,35.12\r\n50N4E,3VLX,Bathroom,6,7,Yes,\"A person is in a bathroom running the water in the sink and washing a dish, they then hold the dish in their hand before turning off the light.\",bowl;dish;light;sink,A person is washing a bowl in the sink and then leaves the room and turns off the light,c105 22.40 26.80;c121 0.00 20.90;c120 16.00 27.00;c118 0.00 27.00,25.50\r\nZKGKR,DXDI,Dining room,5,7,Yes,\"A person is undressing, then closing a window and then picking up dirty dishes in a dining room.\",clothes;coat;dish;table;window,Aa person is undressing and putting their jacket on a chair then closes the window and picks up dishes.;A person takes off their coat and hangs it on a chair then they close the window and pick some dishes up off of the table as they walk away.,c118 14.90 30.00;c089 9.50 15.90;c120 20.50 30.00;c001 0.00 11.30;c119 14.70 28.30;c001 6.40 11.40;c155 0.00 8.00;c012 15.00 28.50;c092 8.70 17.30,28.58\r\nGFFJM,T7C3,Bathroom,7,7,Yes,A person in their bathroom is eating some food while putting their shoes on. They eventually leave the room by turning the light off and grabbing the doorknob.,door;food;light;shoe,\"A person is sitting on a toilet putting on his shoes while eating, then stands up to stretch turns off the light and closes the door.\",c105 25.40 32.00;c141 24.80 31.60;c156 0.00 26.50;c006 24.20 32.00;c055 0.00 19.90;c097 23.30 31.20;c154 15.70 22.10;c154 18.50 31.30;c061 0.00 31.50,31.33\r\nXKH7W,UTMU,Garage,6,7,Yes,A person in the garage is laughing at a memory they just remembered. They start drinking from a glass of water while eating some food. Then they begin sneezing.,cup;floor;food;glass;water,Person sits down holding a cup and food.  Person takes a sip from glass and eats food.  Person gets up and exits room.,c106 8.10 13.60;c156 12.10 17.30;c125 0.00 33.40;c061 0.00 34.00;c151 0.00 5.50,33.21\r\nFY9UT,9OK1,Bedroom,5,7,Yes,A person is snuggling a blanket on the bed while holding a picture and fixing the frame.,bed;blanket;picture,\"A person is laying on a bed, then picks up a framed picture next to them and looks at it. They then put it back down on the bed.\",c072 12.90 17.00;c134 0.00 17.00;c088 0.70 15.70;c084 0.60 15.40,16.42\r\nKU4UP,LTAC,Kitchen,6,5,Yes,A person is opening a window.  Then a person is pouring something into a cooking pot near a picture.,cup;glass;shelf;something,A person takes a cup from a shelf and pours a drink.;Person grabs a liquid from a cabinet shelf and begins poring it into a glass.,c108 11.20 30.80;c110 2.00 8.00;c107 3.70 10.00,30.62\r\nE40Y8,P6LJ,Kitchen,4,7,Yes,A person opens a box of cookies and eats one. The person wipes their mouth with a paper towel.,box;food;towel,A person is in the kitchen. They open a box of cereal and begin to eat out of the box. They then grab a paper towel and wipe their face.,c040 11.90 39.00;c156 13.80 54.80;c044 11.60 17.80;c041 11.30 17.00;c042 33.40 43.10;c033 43.20 55.00;c043 11.90 41.70;c063 1.30 55.00;c061 15.20 55.00,54.42\r\nPVCFQ,D0RU,Stairs,6,7,Yes,A person is laughing on the phone while holding clothes and then they sneeze.,clothes;phone;towel,\"A person holding some clothes walks up a few steps, then stops and picks up their phone to start speaking. They sneeze.\",c015 0.00 39.00;c019 2.90 39.00;c000 0.00 39.00;c153 22.30 32.00;c033 0.00 39.00,37.96\r\nEMYSA,Z68L,Kitchen,7,6,Yes,A person is standing in the kitchen. The person takes a bag from the refrigerator and opens it.,bag;bread;food;refrigerator,person took a piece of bread out of the refrigerator and wrapped it in a bag,c143 1.70 8.50;c023 5.00 12.30;c154 1.20 8.30;c021 4.70 27.00;c142 2.30 8.70;c020 5.80 26.30;c061 11.40 23.50;c063 10.90 15.40,25.75\r\nPVAJ8,ECB2,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person tidying up their closet sneezes.  They finish folding some clothes, and grab the closet doorknob before leaving, pulling the door shut behind them.\",closet/cabinet;clothes;clothing;door;floor;shelf;towel;wardrobe,A person is taking some clothes from a wardrobe and folding them. The person is then placing the items back into the wardrobe. The person closes the wardrobe and the person walks away.,c006 29.20 37.90;c000 7.50 17.90;c001 3.30 9.70;c004 0.00 18.40;c002 5.70 12.40;c081 4.00 9.60;c126 26.70 33.40;c154 0.00 39.00;c153 14.60 20.70;c127 7.10 17.50;c037 0.30 7.30;c034 3.50 9.00;c112 29.20 37.50;c114 0.00 33.00;c035 18.00 39.00,37.67\r\nIJ3QB,3H6W,Living room,6,5,Yes,A person is opening medicine and then fixing a sandwich.,couch;dish;food;medicine;plate;sandwich;sofa,\"Person sits down on sofa, opens up medicine bottle, picks up plate, picks up sandwich from plate, sets down sandwich and plate, then gets up from sofa.;A person sitting on a couch opening medicine and holding sandwich.\",c067 10.20 19.20;c069 8.90 18.00;c154 20.20 25.00;c123 0.00 5.20;c119 16.20 23.10;c068 8.70 22.10;c151 0.00 7.00;c118 8.10 22.00;c128 2.20 12.30;c062 8.30 21.90,24.12\r\nZ5FNI,KFGP,Hallway,6,7,Yes,A person is leaving the hallway while turning off the light and closing the door.,door;hallway;light,A person walks down a hallway and opens a door before walking through it.,c006 18.30 26.10;c008 15.10 22.70;c105 12.50 19.00;c097 8.30 18.60,27.79\r\nVNYVI,HR43,Kitchen,6,6,Yes,A person is washing the refrigerator door then begins cooking food at the stove.,door;fridge;stove,\"A person is cooking food on the stove. A person then opens the door of the fridge, then closes the door.\",,32.79\r\n0I1S5,ZAWX,Bedroom,5,7,Yes,A person is grasping a blanket off a table.  Then a person is watch clothes fall off the table onto the floor.,blanket;clothes;floor;table,Person picking up blanket from table and knocking the rest of the clothes on the floor.,c126 4.20 13.60;c000 5.10 23.10;c009 13.10 22.50;c070 4.20 22.20;c001 17.00 24.80;c152 16.60 22.50;c012 1.20 15.10;c002 2.00 19.20,30.38\r\nOWENO,ZSRZ,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person miles at a picture then walks away while holding some dishes.,book;dish;doorway;picture,A person stands in the hallway holding some dishes and looking at a picture.,c088 0.00 7.10;c118 0.00 8.00;c029 0.00 6.10;c097 4.60 8.00;c032 0.00 6.00;c026 0.00 8.00;c152 0.00 6.40,7.17\r\n7G34J,ID9V,Hallway,5,7,Yes,\"A person is sitting in front of a doorway, then the person start fixing a door.\",door,\"A person is sitting in front of a door, doing something with the doorknob or beginning to install one (hard to tell if a knob is there already or not).;A person is sitting on the floor, trying to figure out how to open a door.\",,26.79\r\nJOYAJ,UO0Z,Kitchen,6,7,Yes,\"A person is cooking on the stove. The person looks in the refrigerator for something, then closes the door.\",door;food;refrigerator;stove,\"A person is cooking something on a stove, they then go to the refrigerator and open it. They look through the refrigerator and finding nothing they close it and go back to the stove.\",c008 6.70 15.20;c143 6.60 15.20;c154 12.20 17.90;c142 13.40 19.40;c147 0.00 8.80;c151 8.80 14.10;c061 9.10 18.00,20.00\r\n6JACT,L4ZP,Stairs,6,7,Yes,\"A person stands at the top of the stairs, taking a blanket from the shelf. The person checks their watch as they take a drink from a glass of water.\",blanket;cup;glass;shelf;water,A person standing on stairs pulls a blanket off a shelf and drapes it over his shoulder and takes a drink of water. Person checls their watch then starts down the stairs.,c106 6.50 20.00;c070 0.00 10.70;c107 0.00 23.00;c073 0.00 4.80,22.04\r\nWM336,3H6W,Dining room,6,6,Yes,\"One person grasps some homework from a bag on a table, then closes the bag and starts tidying up the table while smiling and laughing.\",bag;dishes;food;homework;paper;table,\"A person is getting homework our of a bag.;A person is taking some homework from a backpack that was sitting on their table while smiling, they then begin to tidy up the table.\",c117 7.00 14.20;c009 9.50 14.90;c152 15.80 27.50;c116 7.90 14.50;c021 4.90 11.40;c012 16.10 25.70;c020 5.30 13.60;c062 17.90 26.70;c022 13.80 19.80;c115 7.70 14.30;c023 2.90 8.90;c149 15.50 27.40;c061 16.50 25.10;c063 16.40 25.50;c024 14.30 19.40,27.92\r\nG3WBE,D0RU,Home Office / Study (A room in a house used for work),7,5,Yes,A person in their home office is sitting on the sofa while looking into the mirror. They are watching some video on their phone while drinking from a glass of water.,chair;computer desk;cup;dish;glass;mirror;phone;table;water,\"A person sits down, adjusts his hair, looks at his phone, and takes a drink from a cup.;A person sitting at a computer desk is looking at them self in a mirror while drinking from a glass and looking at their phone.\",c109 38.60 43.70;c106 33.30 42.60;c018 23.00 28.80;c009 38.80 43.10;c120 31.70 36.40;c015 0.00 46.00;c151 0.00 4.70;c096 3.80 16.10;c010 1.80 44.40;c016 4.70 36.40,44.58\r\nG81JB,ENC8,Kitchen,4,6,Yes,\"A PERSON IS COOKIng on a stove, then running a vacuum and finally wiping a cabinet in a kitchen.\",cabinet;floor;food;stove;towel;vacuum,\"A person is cooking in the kitchen they look for a spoon get the spoon stir the pot on the stove , then they pick up the vacuum and vacuum the floor then they get  a towel and wipe the cabinets down.;A person is cooking in a kitchen. They grab a vacuum and begin to tidy up the floor. They wipe a cabinet with a sponge.\",c114 31.50 39.80;c137 12.40 32.20;c035 30.30 42.20;c147 3.70 11.30;c127 18.60 30.70;c138 12.10 22.60,47.79\r\nATI0Z,LTAC,Basement (A room below the ground floor),6,7,Yes,A person is sitting in a dark basement. The person stands up and turns on a light. The person picks up a broom and begins tidying the basement floor with it.,broom;floor;light,A person is sitting on the floor  and then stands up and turns on a light and sweeps the floor with a broom.,c125 0.00 9.80;c104 9.00 17.10;c102 14.70 33.00;c154 5.60 11.40;c098 14.00 33.00;c100 14.00 19.00,32.38\r\nZI3BR,D0RU,Stairs,5,1,No,A person is smiling out the window while grasping the clothes.,blanker;blanket;person;stairs;towel,A person is walking up the stairs. They grab a blanket and carry it  with them.;a person walking up stairs and grabbing a blanket.,c070 7.40 22.30;c073 14.30 19.70;c075 16.50 21.70;c033 12.30 17.70,30.75\r\n9BHU1,XXN8,Hallway,5,7,Yes,A person is throwing towels on top of running shoes.,shoe;towel,\"A person puts down a pair of shoes and places a towel on them, then removes the towel and covers the shoes again, several times.\",c034 0.10 18.60;c035 1.60 16.30;c054 0.00 20.00,29.67\r\n1B9C8,Z68L,Bathroom,5,7,Yes,A person is sitting on the toilet holding a picture then opens and closes a medicine bottle.,doorway;medicine;picture;toilet,\"A person sits down on a toilet and goes back and forth between looking at a picture, and tending to their medicine bottle. They then get up and walk out of the room.\",c084 0.00 28.00;c128 0.00 28.00;c151 0.00 5.80;c154 22.00 27.20;c088 0.00 25.40;c097 0.00 28.00,27.17\r\n9F691,KQI6,Dining room,5,7,Yes,A person is in the dining room standing by a desk and another person grasping the phone.,chair;desk;phone;table,\"a young woman sitting in a chair, and a man walks into the room and picks up the cell phone and uses it.;Person #1 was sitting in a chair when person #2 walked in. Person #2 picked up a phone from a table and began playing with it and laughing while talking to the other person.\",c018 14.40 20.40;c149 25.30 31.30;c011 0.00 14.50;c016 15.00 32.00;c059 0.00 14.50,30.83\r\nIK8PA,6RE8,Kitchen,4,5,Yes,A person is walking with a blanket.  Then a person is sneezing while picking up homework off the floor.,blanket;floor;homework;paper;shelf;towel,\"This person is pacing in the kitchen, picks up a paper from the floor and puts it on a shelf, then puts other things on the floor away.\",c127 0.00 10.70;c116 6.40 16.00;c117 12.30 21.80;c070 14.30 25.40;c153 9.50 21.60;c081 21.20 31.70;c082 22.40 27.70;c033 0.00 32.00,31.08\r\nV9JJL,WG9D,Bathroom,5,7,Yes,A person walks into the bathroom putting away items in the cabinet. After they are done the person picks up a broom and begins sneezing.,broom;cabinet;counter;door;items;medicine;shelf;table;vanity,\"A person holdinga broom clears items from a counter. The person the puts the items in a cabinet and sneezes.;A person walks into a bathroom and cleans up a vanity.  The person puts items on the vanity away.  The person grabs a broom, and then sneezes.\",c153 12.40 17.00;c012 1.70 16.10;c128 3.00 8.60;c008 0.00 3.70;c097 0.00 4.20;c082 0.80 8.80,16.33\r\n8I352,L4ZP,Dining room,5,7,No,A person stands in the doorway to their dining room talking on the phone. They walk to the cabinet and put away their China. The person sits at the table and wipes the table with a towel.,cabinet;chair;doorway;phone;table;towel,Person walks into room talking on telephone sits down at the table and begins to clean it with a towel.,c097 0.00 4.30;c011 16.80 30.00;c015 0.00 16.10;c059 14.90 30.00;c114 4.10 14.10;c033 16.30 30.00;c012 15.90 30.00;c019 0.00 13.70,28.83\r\nXU2BY,KFGP,Bathroom,5,6,Yes,A person is smiling while holding a laptop and a sandwich.,food;laptop;sandwich,A person is holding a sandwich while also holding a laptop in a bathroom.,c067 0.00 34.00;c047 0.00 34.00;c061 0.00 34.00,32.83\r\nR4BTI,18IT,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person is in a entryway sneezing by the doorway, they then start undressing and put their clothes in a bag.\",bag;clothes;doorway;table,A person walks into the doorway and sneezes. They then stretch and take off their shirt and put it into a bag on a table.,c097 0.00 5.50;c000 30.60 39.50;c153 1.70 15.00;c155 17.50 34.80;c009 32.40 40.00;c001 32.40 40.00,39.21\r\nV4BBC,ZSRZ,Closet / Walk-in closet / Spear closet,6,7,Yes,Person is working on laptop in closet then grabs pillow from shelf and starts snuggling with it.,laptop;pillow,\"A person types something on a laptop, then grabs a pillow from an upper shelf.\",c052 0.00 7.40;c079 3.70 10.40;c076 6.50 13.00,11.62\r\n55AH5,R1OT,Recreation room / Man cave,5,6,Yes,Person opens the door and begins walking towards the sofa.  Person then sits down and consumes a small amount of food then falls asleep.,bed;door;food;sofa,\"A person walks into the room, sits down on a chair, and eats some food off a plate before falling asleep.;A person walks opens a door and walks into a room.  That person goes to a sofa, takes a bite of food and lays down\",c122 15.10 21.80;c008 0.00 5.30;c156 5.10 12.00;c123 5.50 18.60;c061 5.50 14.80;c151 4.00 9.10;c134 15.10 26.00;c097 0.00 5.10,24.96\r\nA4N6Z,8718,Living room,4,7,Yes,A person is playing video games on a television while lying on the floor. The person stands up and moves to a nearby sofa.,floor;game;sofa;television,The person is lying on the floor playing a video game on television. The person stands up and sits on a sofa and continues to play the video game.,c123 13.60 31.00;c124 0.00 16.30;c154 12.40 18.80;c151 14.20 20.50;c132 0.00 31.00,29.96\r\n5UFCJ,4OHY,Kitchen,5,7,Yes,One person standing at the window puts medicine into a glass and drinks it.,cup;glass;liquid;medicine;window,\"A person, standing and looking out a window, pours medicine into a glass and takes a drink\",c106 24.10 30.00;c107 0.00 30.00;c108 4.20 16.00;c092 22.40 30.00;c129 20.20 30.00,29.38\r\nL58KN,YMXV,Bedroom,4,6,Yes,\"A person is in their bedroom holding a towel. They put the towel down, and open a window.\",cabinet;clothes;towel;window,\"folding a towel, throwing it down, walking to window, opening a cabinet or window and looking around\",c090 13.50 31.00;c036 8.50 13.60;c113 13.50 31.00;c033 0.00 13.40;c034 8.20 13.60;c004 0.00 13.60,30.42\r\nAH1N1,S395,Living room,7,7,Yes,\"A person opens a coffee jar in their living room. They pour it on a towel, and leave.\",coffee;food;sofa;table;towel,a person sits on sofa and pours something on a towel on a table;A person sits on a sofa and empties food on the table.,c151 0.00 6.30;c154 20.50 26.20;c123 1.20 24.60;c009 11.00 23.20;c062 0.00 24.50;c034 0.20 11.00,28.92\r\n6KJGX,3VLX,Kitchen,7,7,Yes,A person throws a broom on the floor before starting to cook on a stove.,broom;floor;food;knob;pot;spoon;stirrer;stove,\"a person grabs a broom and throws it on the floor then turns on the stove;Person walks in kitchen, picks up broom, looks at it, throws it across the room, turns on stove, picks up spoon, grabs pot, starts stirring spoon in pot. Animal laying on floor moves head.\",c098 0.60 7.60;c099 6.20 12.80;c101 6.20 12.80;c147 11.70 31.00;c100 0.00 4.90;c126 7.10 12.60,30.25\r\nOSUXM,BYF9,Living room,7,7,Yes,\"A person stands in the closet, looking into a mirror. The person smiles, then pulls out their phone and takes a picture.\",mirror;phone,A person is looking into a mirror. The person smiles into the mirror and then looks at a phone.,c015 11.70 27.00;c016 12.30 27.00;c094 0.00 16.40;c096 0.00 16.20;c152 1.50 16.30,26.17\r\n95HQC,PKND,Bedroom,7,7,Yes,\"A person is undressing while the person holds the camera and snaps photos of him. The, holding their hand up, the person walks over to the wardrobe and opens it.\",cabinet;camera;clothes;phone;shirt;wardrobe,a person looks at their phone then takes off their shirt opens a cabinet and takes a selfie;Person standing looking at phone while taking off shirt and filming it.,c015 0.00 31.00;c155 2.30 11.30;c113 9.50 25.80;c016 0.00 31.00;c087 7.70 31.00,29.92\r\nFGBXJ,HR43,Living room,2,6,Yes,\"a person sits laughing on the sofa, then opens a book.\",book;sofa,\"A person is laughing, sitting on a couch. The person lays down, and then sits back up. The person then reaches for a book and opens it.\",c122 0.00 5.00;c027 18.40 27.20;c032 15.30 31.00;c123 0.00 31.00;c026 17.10 31.00;c030 17.40 24.70;c149 0.00 31.00;c029 16.00 26.90;c025 26.80 31.00;c152 0.00 28.30,29.96\r\nOO139,YMXV,Bedroom,6,3,Yes,A person is undressing in front of a mirror.  Then a person is grasping their hairbrush while watching their phone.,hair;mirror;phone,A person is combing their hair and looking in the mirror. The person then gets a phone from on the bed and looks at it.,c096 0.20 25.60;c015 0.00 9.60;c016 0.00 9.70;c144 0.00 25.90;c018 22.40 28.40,31.54\r\nR4V8W,YMXV,Bedroom,5,4,No,A person is taking a pillow and a blanket to a couch.  Another person is standing by a desk.,bed;blanket;pillow,A person is tidying up a bed. The person folds up the blanket and stacks it on top of the pillows. Another person watches the other person make the bed.;The person makes the bed by tidying the pillows and blanket. A second person watches.,c077 0.00 13.00;c075 11.00 23.00,31.50\r\nQN4MZ,2RTW,Dining room,6,6,Yes,The person kept sneezing while vacuuming in the dining room from all the dust on the china cabinet while tidying the house.,floor;vacuum,person took the vacuum cleaner and was cleaning the floor with the vacuum cleaner.,c137 0.00 30.00;c153 0.00 10.20;c127 0.00 30.00,28.79\r\nWYZ5D,UTMU,Kitchen,5,7,Yes,A person runs into their kitchen holding their shoes and a book.,book;doorway;shoe;towel,A person is holding shoes and a book. A person is running around a kitchen,c026 0.50 20.80;c150 0.80 21.70;c053 0.20 21.10;c033 11.20 15.30;c097 0.60 5.10,23.50\r\nM5UQR,CCI9,Living room,3,5,Yes,A person is playing in the mirror and another person is lying the camera down.,camera;floor;hair;mirror;phone,\"A person is sitting in a chair looking into a mirror and fixing their hair and smiling, another person is looking at a camera that they set on the floor.;A person is looking into a mirror while sitting in a chair another person comes up to them while they are playing on their phone and the first person who is sitting in the chair is fixing their hair\",c096 0.00 33.00;c017 12.40 19.70;c152 17.30 32.80;c015 0.00 16.10;c144 0.00 33.00;c059 0.00 33.00;c093 0.00 33.00;c126 13.10 17.90;c016 0.00 17.10,32.38\r\n2F7AQ,HR43,Kitchen,5,7,Yes,A person is playing on a laptop then begins cooking at the stove.,food;laptop;pot;stove,A person is working on a  laptop in the kitchen. The person starts cooking on the stove.,c052 0.00 14.40;c147 11.80 32.00,30.67\r\n654PD,4OHY,Stairs,7,7,Yes,A person is smiling at a picture and then opening a book on the stairs.,book;paper;phone;stairs,\"A person is standing on some stairs using a phone;A person is looking at a piece of paper while walking on stairs. He puts the paper down, picks up a book, and reads while standing on the stairs.\",c116 7.60 13.80;c115 0.00 13.20;c027 11.70 17.50;c028 8.60 13.40;c026 0.00 13.20,29.42\r\nBART9,PKND,Pantry,4,6,Yes,\"A person throws some groceries onto the chair, laughs, and leaves.\",bag;chair;groceries,\"A person puts groceries onto a chair, then takes them off the chair.\",c020 0.00 10.00;c130 15.90 22.20;c154 0.00 34.00;c022 4.10 10.20;c022 14.60 19.60;c023 12.90 17.90;c152 4.90 22.00;c021 2.60 7.70;c021 13.60 18.90,32.79\r\nVPB1Z,Z68L,Bedroom,6,7,Yes,A person is sitting on the floor playing with a gadget. The stand up and grab a book off a desk and leaf through the pages.,book;desk;floor;phone/camera;table,A person is sitting on the floor looking at something that is then put on a shelf. The person then picks up a book and looks at it.,c026 18.50 36.00;c125 0.00 36.00;c009 16.00 21.80;c015 0.00 24.20;c027 20.60 26.50,35.25\r\n937EW,KFGP,Closet / Walk-in closet / Spear closet,5,7,Yes,Person puts clothes away. Person watches picture. Person takes dirty clothes away.,closet/cabinet;clothes;floor;picture,A person is putting clothes in a closet. The person then takes a blanket out of the closet and walks away.,c004 0.00 33.00;c001 0.00 9.00;c114 25.00 33.00;c088 13.90 24.20;c000 0.00 9.90;c000 7.80 17.90;c127 22.60 31.40;c002 0.00 5.00;c002 6.70 14.10,31.71\r\nMNC10,PO5L,Closet / Walk-in closet / Spear closet,3,5,Yes,\"A person throws a broom in the corner, then grasps a box of food from the shelf.\",box;broom;corner;food;shelf,A person person throws a broom in to the corner of a closet. The person takes bread out of the closet and walks away.,c098 0.00 13.20;c101 7.60 14.00;c063 11.70 17.50;c040 11.90 19.80;c043 10.40 22.00,21.08\r\nU5B14,L852,Bathroom,7,7,Yes,A person is sitting in a chair in the bathroom. The person takes some lotion from the shelf and puts it on their skin.,cabinet;chair;sink,someone sitting on a chair and grabbing something out of a medicine cabinet.;A person is sitting in a chair in the bathroom they get up take a bottle of lotion and rub it on their hands,c059 0.00 3.00;c154 0.00 3.00;c113 2.00 7.00;c112 28.00 31.00,30.00\r\nKF42S,5LWB,Stairs,6,6,Yes,A person is snuggling under a blanket and then leaving food on  the stairs,blanket,A person is sitting on some steps while wrapped in a blanket. They stand up and walk up a set of stairs.,c070 0.00 19.40;c072 0.00 19.40;c154 10.60 16.60,19.54\r\nJOUM7,UTZR,Living room,5,7,Yes,A person in the living room is working on something on their phone. They begin eating some food from a bag that they found on the sofa.,chair;food;phone;sofa,A person is sitting in a chair and playing with a phone. The person grabs a bag of chips and eats it. The person then gets up and leaves.,c015 3.50 32.30;c016 4.30 31.10;c059 3.60 31.30;c063 12.10 22.90;c154 26.60 31.60;c156 19.20 30.10,32.96\r\nJ53NS,25TD,Living room,7,6,Yes,A person is leaving dishes on the table and putting the vacuum by the chair.,chair;cup;dish;glass;mug;table;vacuum,\"A person takes a mug, plays with it, and then puts it back down. The person then gets a vacuum cleaner and begins to vacuum.;There is a person sitting at a table with a glass.  That same person then gets up and gets a vacuum.\",c138 17.60 30.00;c154 11.00 16.30;c107 0.00 12.00;c059 0.00 3.40;c119 6.20 14.30;c110 0.00 6.40,28.58\r\n6VJI0,9Y7F,Bedroom,4,6,Yes,A person is smiling at a laptop while another person is standing on a towel.,bed;clothes;laptop;towel,Two people are in  a bedroom. One is working on a laptop. The other is folding clothes and holding a piece of paper.,c047 0.00 32.00;c052 0.00 32.00;c033 0.00 32.00;c152 28.50 32.00;c135 28.50 32.00;c051 28.50 32.00;c000 28.50 32.00,30.50\r\n0X49F,G6WD,Entryway (A hall that is generally located at the entrance of a house),5,1,No,A person walks into the room and turns on the light.  The person puts a towel over the shower curtain rod and leaves through the door.,box;clothes;door;jacket;sweater,A person walks through a door carrying a box than puts it down and puts on a sweater.;a person carries a box into a room then puts on a jacket,c042 0.00 23.70;c148 22.90 43.20;c097 1.40 41.30;c002 17.70 23.20;c040 0.00 23.00,42.88\r\nKUOT7,4OHY,Garage,7,7,Yes,A person is washing their shoes in the garage. They are laughing at a video that is playing on a laptop in the garage.,clothes;laptop;rag;shoe;table;towel,The person is using a towel to clean his shoes while taking a brief pause to view laptop.;A person is standing in a dirty room while polishing shoes with a rag. The person takes a break and smiles while looking at the laptop on the table.,c053 0.00 31.00;c051 13.60 31.00;c033 0.00 24.40;c038 0.00 12.30;c152 6.80 12.30;c000 0.00 31.00,29.62\r\nI5MCA,ATJI,Bathroom,5,5,Yes,\"One person runs into the bathroom with a sandwich, then washes up at the sink and walks out.\",counter;doorway;faucet;food;hand;sandwich;sink;towel,\"A person walks into the bathroom eating a sandwich.  That person puts the sandwich down, washes their hands, and dries them on a towel.;A person walks into the bathroom and sets their sandwich down on the sink then turns on the water and washes their hands. They dry their hands and pick their sandwich back up and walk back out of the room.\",c067 0.80 5.90;c097 1.90 7.30;c139 7.20 17.20;c062 5.30 10.80;c068 5.30 10.80,31.00\r\nJP7V4,HJJ4,Garage,7,7,Yes,\"A person is washing a glass. Smiling, they pull out a vacuum, and then begin washing it as well.\",bottle;faucet;sink;towel;vacuum;water,\"Person holding bottle, turns on faucet, rinse bottle out, turn off water, place bottle in sink. Then grabs vacuum, pulls near sinks, grabs towel, turns on water, wet towel, turns off water and wipes handle to vacuum.;A person is standing by a sink washing a bottle. The person sets the bottle aside and moves a vacuum over near the sink and starts to clean the vacuum with a damp paper towel.\",c138 8.30 15.60;c038 17.40 25.00;c111 0.00 12.20;c033 11.80 25.00;c152 12.90 25.00;c035 11.50 17.70,23.83\r\nIKJB4,XKTB,Home Office / Study (A room in a house used for work),3,7,Yes,A person throws their homework onto a desk. The person sneezes.,desk;homework;paper;table,\"A person is throwing their homework on a desk, they then sneeze.\",c116 14.50 23.60;c009 14.50 23.60;c153 23.20 29.40;c115 14.60 21.60,29.29\r\nKS5VD,0KZ7,Kitchen,7,7,Yes,\"A person is cooking at a stove. They stop, look out a window, and leave.\",doorway;food;pot;stove;window,There is a person stirring a pot on the stove. That same person walks over to and looks out a window before leaving the room.,c092 14.00 23.60;c147 0.00 17.70;c097 22.70 27.80,26.92\r\nI562C,6RE8,Living room,6,5,Yes,A person opens the garage door and looks outside as if waiting for someone. They go and sit down in a chair where they drink some coffee and eat a small plate of food.,chair;cup;dish;door;food;glass;table,A person opens a door than walks to a chair and sits down to eat and drink.,c061 15.20 36.00;c107 21.70 33.80;c059 14.00 36.00;c151 13.00 19.10;c118 15.20 36.00;c141 0.00 15.20;c011 13.80 36.00;c110 20.90 26.80;c120 14.50 19.90;c156 15.20 25.70;c006 8.60 14.70;c106 22.80 33.10;c008 0.60 5.70,35.12\r\nREH2U,G6WD,Bedroom,6,6,Yes,\"One person awakens in bed, grasps the pillow and plays with it, then sneezes and starts laughing.\",bed;blaket;blanket;pillow,A person is lying on a bed snuggling a pillow and blanket.;A person is laying on the bed they pick up the pillow then put it down they sneeze they sit up the dog jumps up with them then they get up,c134 0.00 35.70;c076 24.70 42.20;c153 13.70 24.00;c154 36.30 44.00;c070 0.00 42.40;c072 0.00 38.10;c078 0.00 13.30;c079 10.60 41.40;c077 26.30 44.00,43.46\r\nDYVUY,8718,Bathroom,6,7,Yes,\"A person stands in the bathroom, grasping a book. The person leaves and turns the light off behind them.\",book;door;light,\"A person walks into a bathroom and picks up a book.  That same person then leaves, shutting off the light and closes the door.;A person walks into the bathroom and starts reading a book, then leaves the bathroom, turns off the light and shuts the door.\",c105 23.60 28.00;c032 1.50 25.10;c006 24.80 31.00;c027 0.70 26.80;c026 5.70 31.00;c027 0.90 7.10;c141 24.20 31.00;c025 21.40 25.90;c097 0.00 3.50,30.21\r\n52CKM,Z68L,Bedroom,7,7,Yes,A person is drinking a cup of water while laying down on a bed. The person looks at a reflection in the mirror before setting a laptop on the bed and opening up the top.,bed;laptop;mirror,A person lays down on their bed. They then sit up and fix their hair in a mirror. They then grab and open a laptop.,c134 0.00 11.50;c096 10.40 24.50;c048 24.90 31.60;c047 28.70 35.00,33.79\r\nOSIKP,X5XO,Living room,6,7,Yes,A person in the living room is working while sitting on a chair. They are holding a book in one hand and then start eating some food.,book;chair;couch;food;sandwich,A person is sitting in a chair turning the pages of a book. The person then picks up a sandwich and takes a bite;someone sitting and reading a book while eating,c063 21.90 27.90;c032 0.00 32.00;c156 22.20 27.60;c065 22.20 27.30;c026 0.00 32.00,30.79\r\nQEFJF,ZAWX,Kitchen,5,6,Yes,\"A person is eating in the dining room. They finish, and tidy up the table. They take their dishes and start putting them on top of one another.\",counter;dish;food;sandwich;table,\"Two people are standing in a kitchen.  One person is eating a sandwich.  Person 1 puts the sandwich down, and tidies a counter.  person two is standing behind person one looking exasperated.;Person eating from a plate and when finished goes to the table to clean and tidy up the dishes while another person looks on.\",c156 0.00 9.40;c061 0.00 11.40;c012 8.10 32.00;c118 0.00 9.40;c009 16.80 21.70;c119 16.80 32.00;c120 8.30 14.80,30.71\r\nZ1EEF,LWUV,Bathroom,7,7,Yes,One person was sitting holding a broom. The other was snuggling in some food.,bag;bathtub;broom;chair;chips;food;toilet,Two people are in the bathroom.  One person is sitting on the toilet eating potato chips.  One person is sitting on the bathtub holding a broom.;A person is sitting on a toilet eating chips. Another person is sitting on the bathtub holding a broom. The person eating the chips cuddles the bag and gives a thumbs up.,c061 0.00 33.00;c098 0.00 33.00;c020 0.00 33.00;c156 0.00 8.60;c059 0.00 33.00,31.58\r\nUVP3F,P6LJ,Dining room,4,5,Yes,A person in the dining room walks to the refrigerator laughing. Then he opens up a bag of groceries that are sitting on the table.,bag;groceries;refrigerator;table,A person opens the refrigerator then the go to the table and take some groceries out of a bag.,c143 4.10 13.00;c009 15.00 24.20;c142 7.90 13.30,24.75\r\nM5W51,EIO2,Basement (A room below the ground floor),6,7,Yes,\"In a basement, a person sleeping at a table awakens, and takes food that is next to them and begins to walk.\",chair;dish;food;table,\"A person is lying down at a table.  The person then wakes up and puts away a plate of food.;A person is sleeping at a table with a plate of pasta in front of him. The video speeds up as the person wakes up, grabs his plate and leave the table.\",c011 0.00 17.20;c146 13.30 26.90;c154 23.80 28.60;c120 24.60 31.00;c063 23.00 31.00;c059 0.00 27.00;c119 28.00 31.00;c118 24.30 31.00,30.33\r\nNEO0V,P6LJ,Bathroom,6,6,Yes,\"A person is standing at a desk, grasping a towel. The person sneezes and uses the towel to cover their mouth and nose.\",towel,\"A person is walking in the kitchen they pick up a towel and sneeze into it.;A person picks up a white towel. It looks like she is going to fold it, but then she sneezes into it.\",c037 4.60 19.40;c153 13.60 27.50;c033 0.70 26.70,26.75\r\nI164P,P6LJ,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person takes a glass from a chair in the entryway to their home. The person walks out of the house through the doorway.,chair;coffee;dish;door;glass,A person is taking a coffee cup from a chair before opening the door and walking away.;A person walks over to a chair and picks up a glass from it. Then they grasp a doorknob and walk through a door.,c097 16.60 24.40;c008 14.00 21.50;c141 14.10 20.60;c118 8.70 20.80;c120 7.60 12.90;c110 7.60 12.90,35.00\r\nGPR89,P6LJ,Living room,6,6,Yes,A person is sitting on a desk working on homework. They begin fixing their work when out of sudden frustration they end up throwing their work down to the ground.,book;cabinet;homework;paper;shelf;table,\"A person is tidying up a table they take a book and go and sit down on a cabinet and do work they then throw all their papers on the floor.;A person picks up papers, sits on cabinet, and writes on papers.;A person takes a stack of papers off a table, then sits on a shelf and looks through the stack, dropping them to the floor.\",c154 53.20 59.00;c012 0.00 11.70;c117 19.00 44.80;c145 27.20 41.60;c151 0.00 19.70;c030 42.60 53.10;c115 1.80 55.70;c116 51.10 56.90,59.00\r\nSTDCJ,ZAWX,Home Office / Study (A room in a house used for work),5,7,Yes,A person is opening a doorway to a pantry while watching a video that is playing on their laptop.,cabinet;doorway;floor;food;laptop;picture;stool;table;video,\"a person sitting and watching a laptop and grabbing something from a cabinet;A person, seated on the floor, while watching a computer, opens a cabinet, gets something out, puts it back, and then shuts the cabinet.\",c051 0.00 12.40;c113 8.90 15.10;c063 12.40 18.40;c088 0.00 12.90,30.54\r\nB8IYJ,ZSRZ,Kitchen,5,6,Yes,A person is cooking something on the stove.  They kick off their shoes and then begin eating.,food;lid;pan;pot;seasoning;shoe;stove,\"a person cooking at the stove, then kicks off their shoes and tries the food.;A person in the kitchen preparing a meal and sampling food.\",c058 8.80 15.10;c147 0.00 12.40;c156 13.50 19.00,18.50\r\n3RSJV,T7C3,Bedroom,7,7,Yes,A person enters their bedroom and closes the door. They sit on the bed and drink a glass of soda while watching television.,bed;cup;glass;television;towel;water,Person walks into the room and sits down on their bed. They proceed to watch TV and drink a glass a water.;A person is walking into a room and tiyding up the bed. The person sits on the bed and drinks from a glass. The person watches television.,c135 12.10 35.00;c107 11.10 35.00;c151 9.20 16.10;c131 7.70 13.60;c106 15.10 22.50;c132 11.90 34.20;c036 8.40 13.70,33.50\r\n0NN7I,X5XO,Other,5,6,Yes,Person is throwing a towel towards a pillow and putting a book away.,book;clothes;floor;pillow;towel,A person picks up a towel and a book and puts them away.,c034 0.50 8.70;c028 6.60 26.30;c004 0.20 8.20;c127 0.00 8.20;c036 1.90 8.10;c152 28.40 32.00,31.12\r\nYQ6Z6,UTMU,Laundry room,5,7,Yes,\"A person walks into the laundry room, smiling. The person takes a pillow from the dryer and exits through the doorway.\",door;dryer;gate;pillow,\"Person opens door and walks into laundry room and takes pillow out of dryer. Person the leaves and closes door.;A person opens a gate to a laundry room, then takes a pillow out of a dryer.\",c097 0.00 5.40;c079 5.50 16.30;c006 16.80 22.90;c008 3.50 10.30;c076 7.00 22.80,22.75\r\nKRLT7,3H6W,Recreation room / Man cave,4,6,Yes,A person is throwing clothes on the floor and then holding a camera and taking a picture in a recreation room / man cave.,camera;clothes;floor;phone;picture,People walks in the room throw a pile of clothes onto the floor get a camera out of pocket then take a picture of the clothes,c015 10.30 22.80;c018 10.30 22.80;c003 4.70 12.50;c126 6.50 12.00;c087 10.60 22.80;c000 3.60 12.10,24.83\r\nING5Z,6RE8,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is working on homework. The person puts the homework into a bag and gets up, holding the bag.\",bag;chair;homework;paper;table,A person sitting in a chair does homework at the table.,c145 0.00 12.30;c059 0.00 27.00;c116 28.50 35.00;c023 28.30 35.00;c014 0.00 31.30;c011 0.00 31.70,34.46\r\nZ0IE9,OUKK,Laundry room,7,7,Yes,\"One person grasps a chair while fixing a light, then leaves the room with a glass.\",chair;glass;light,\"A PERSON IS FIXING A LIGHT IN A ROOM, WHEN HE TURNS IT THE LIGHT TURNS ON BRIGHTLY AND THE PERSON EXITS OUT OF THE FRAME\",c103 1.40 17.40;c154 14.80 20.80;c104 12.20 18.50,24.00\r\nX7R9N,IK1O,Living room,7,6,Yes,A person was holding a sandwich. The person had a sandwich as they were on their laptop. The person also drank some water as they watched a funny YouTube video.,cup/glass/bottle;laptop;picture;sandwich;sofa/couch;video;water,A person is sitting on the sofa watching a video on their laptop while drinking a glass of water. There is a sandwich on the sofa.,c106 4.90 12.70;c051 0.00 32.00;c123 0.00 32.00;c047 0.00 32.00;c107 0.00 32.00;c088 0.00 32.00,30.62\r\nGQKIU,R8JJ,Kitchen,6,6,Yes,A person is pouring coffee to later drink with the food they made earlier.,coffee;cup,A person is staring at a coffee maker as it drips coffee they then proceed to take their coffee cup.,c107 10.50 16.00;c110 9.80 16.00,15.00\r\nMPBRL,2RTW,Kitchen,6,6,Yes,\"The person is sitting by themselves in the dinning room. They are digging into their food with gusto while watching their phone in their left hand. The person starts laughing at something on his phone. They finally stop laughing and pour themselves a glass of juice but since they are watching their phone, they miss the cup. The person exists the room in a hurry and comes back with a towel to mop up the mess on the table.\",chair;doorway;food;phone;table;towel,A person sits at his table in the kitchen and eats while also looking at hos phone before grabbing a towel to wipe down the table.,c015 1.00 9.20;c013 24.30 33.40;c156 0.00 5.60;c016 0.00 22.50;c012 28.50 34.00;c154 16.90 24.00;c011 0.00 22.20;c059 0.00 22.50;c035 25.30 32.50;c061 0.00 6.40;c063 0.30 5.60;c038 28.70 34.00;c097 22.10 28.90,32.79\r\nTBCYB,2RTW,Living room,6,6,Yes,\"A person runs into the dining room, holding a laptop. The person throws the laptop onto a nearby sofa.\",couch;food;laptop;something;table;towel;wall,\"The person runs through the living room and throws a laptop on the couch and runs into the wall by the front door.;A person is walking around and throws a laptop onto the couch, they take something off of a table and walk away.\",,29.83\r\n6LNYW,KQI6,Bedroom,4,6,Yes,One person walks in and throws a pillow at another person who is tidying with a broom. The second person then sneezes.,blanket;broom;pillow,A person is tidying up a room by cleaning the walls and Person B throws a pillow on the floor. Person A then begins to sneeze and they are cleaning.,c080 19.10 26.00;c098 0.00 35.00;c102 0.00 35.20;c153 22.50 28.40;c074 20.30 25.60,37.71\r\nKK8N9,WG9D,Closet / Walk-in closet / Spear closet,5,6,Yes,\"A person is eating a sandwich in their closet. They are also drinking some coffee. They start watching a video on their phone and they find it funny, so they start laughing.\",coffee;cup;phone,\"A person eats, drinks coffee, then takes a phone off a shelf and in a cabinet and laughs while looking at it.\",c106 0.00 8.40;c107 0.00 9.60;c015 5.90 13.00;c018 5.70 11.00;c149 7.80 13.00;c109 2.50 7.70;c152 8.90 13.00;c016 5.80 13.00,12.17\r\nQEV60,HJJ4,Bedroom,5,7,Yes,A person is tidying up their bedroom by putting all a pillow on the ground. They look up at the mirror and start laughing uncontrollably.,floor;mirror;pillow,The person fluffs a pillow and puts it on the bed.  The person sits down and looks in the mirror.,c077 2.70 8.50;c079 0.00 4.60;c096 7.40 19.00;c076 0.00 8.30;c125 0.00 19.00,18.00\r\nX7GVM,KQI6,Kitchen,6,6,Yes,A person in the kitchen is eating some food that is on the table. They are watching some video on their phone.,food;phone;table;video,A young woman looking a video on her phone and eating food off a plate.,c015 0.00 33.00;c063 13.20 26.80;c156 23.10 33.00;c016 0.00 33.00,31.58\r\nG537E,3H6W,Kitchen,5,6,Yes,\"A person is cooking and eating, then sneezing on a glass and finally putting away groceries in a pantry.\",closet/cabinet;food;glass;groceries;shelf,Person standing by stove cooking and eating walk over to a cabinet to put groceries on the shelf,c147 1.70 23.60;c156 1.30 16.90;c130 23.90 40.00;c061 2.70 15.70;c114 27.80 36.60;c081 27.80 36.60;c153 13.30 22.60;c062 27.80 36.60,39.12\r\n3H09L,5LWB,Bedroom,6,7,Yes,One person holding a pair of shoes is laughing at another person opening a window because of the smell.,bed;doorway;shoe;window,\"Two people are talking and laughing while one holds a pair of shoes, then the other stands up and opens a window.\",c090 13.00 24.40;c149 0.00 10.20;c154 0.00 30.00;c053 2.90 15.00;c152 0.00 18.00;c135 0.00 14.40,28.83\r\n02XLP,8718,Recreation room / Man cave,6,6,Yes,\"A person is standing at a stove and cooking, then eating a sandwich in a recreation room / man cave.\",food;sandwich;stove,A person stands at a stove cooking something in a pot.  They take a sandwich from a plate and begin eating it.,c065 18.40 32.00;c069 13.60 20.10;c147 0.00 17.60;c156 16.10 32.00;c067 14.40 32.00,30.92\r\nAWBEC,BYF9,Stairs,6,7,Yes,A person is holding a vacuum and then laughing while reading a book on the stairs.,book;vacuum,A person stands on the stairs holding a vacuum.  They are also holding a book and reading.,c026 0.00 19.00;c032 0.00 19.00;c137 0.00 19.00,18.12\r\nXULW2,I4RP,Kitchen,6,6,Yes,A person is sweeping one part of the floor with a broom as another person is running a vacuum cleaner. The first person pauses and pours some water into a glass.,broom;cup;glass;hand;vacuum;water,\"A person is sweeping, and then pours a glass of water.;a person is sweeping and pours themselve a glass of water while another person is vacuuming\",c137 0.00 13.00;c098 0.00 4.60;c102 0.00 3.60;c108 3.00 12.00;c099 0.00 5.10;c107 2.80 13.00,12.00\r\nDPBI3,4OHY,Living room,6,6,Yes,A person is walking over to the sink. A person is laughing and taking a box off the table.,box;sink;table,\"A person walks over and touches the sink.  That same person then picks up a box off of a table.;The person is casually pacing near a dinner table, he spots a box on the table, picks it up the observe it smiles then sets it back down.\",c040 17.30 30.00;c043 20.80 30.00;c149 12.00 18.70;c152 12.90 19.40,29.46\r\nAQ69X,25TD,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person takes some clothes from the wardrobe and begins dressing. The person finishes putting on the clothes, puts on a pair of shoes, and leaves.\",box;clothes;floor;shoe;wardrobe,a person is sitting in a closet and putting on shoes. the person then stands up and leaves.,c053 0.00 5.30;c055 0.10 12.70;c056 0.00 3.80;c148 0.00 28.60;c154 24.60 31.00;c125 0.00 30.80;c044 0.00 4.10,30.21\r\n119W9,F45S,Kitchen,6,7,Yes,A person closes the refrigerator door then begins cooking food on the stove.,door;food;refrigerator;stove,A person is standing at a fridge looking into it.  The person closes the door and walks to the stove.;A person is looking into the fridge they eat something out of the fridge then close the fridge door and walk over to the stove,c147 15.00 26.00;c142 4.20 9.70,25.08\r\nJSTSD,PO5L,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person throws a sandwich in the entryway. A person laughs at the sandwich and grabs a phone on the ground.,phone,A person is in the entry way daning then picks up a phone that was on the floor.,c015 12.00 23.00;c018 12.40 18.00;c149 1.70 13.60,22.21\r\nAXKNP,DXDI,Laundry room,6,7,Yes,A person in the laundry room holding a phone and smiling. The person begins watching a glass that is on the shelf.,clothes;phone;shelf,\"A person is smiling and playing on their phone, they then look at clothes on a  shelf\",c016 0.00 17.10;c152 0.00 8.10;c015 0.00 30.00,28.96\r\nWZP3R,6RE8,Living room,3,1,No,A person is sitting on a sofa grasping for shoes to finish dressing.,buttons;chair;clothes;shirt;shoe,\"A person sits in a chair and buttons their shirt and then picks up a pair of shoes.;The person sits on the chair, buttons a shirt, and picks up shoes.\",c053 20.20 30.90;c151 1.80 8.80;c059 5.10 31.00;c148 6.10 21.40;c004 5.80 21.10;c056 18.30 24.50;c054 20.60 31.00,30.08\r\nA2DDA,QB52,Stairs,3,2,Yes,\"A person is on some stairs, opening some medicine and fixing a laptop.\",bottle;medicine;phone;pill;stairs,\"This person is sitting on some steps, opens up a bottle of maybe medicine, swallows a pill etc and then looks at their phone.;A person sits on the stairs holding a bottle of medicine. They open the bottle and take some medicine.  They put the bottle down and pick up a phone. They begin fixing the phone.\",c128 0.00 14.70;c128 0.00 5.60;c015 12.70 17.90;c129 4.90 10.80;c018 20.50 29.30,30.17\r\nWQQ4Q,I2IV,Kitchen,4,7,Yes,\"Person is standing at the sink in the kitchen, tidying dishes in the sink. Person is then walking to the refrigerator and fixing a sandwich for lunch.\",dish;food;hands;refrigerator;sandwich;sink,A person washes some dishes in a sink.  They then take some food out of the refrigerator and start making a sandwich.,c142 10.80 24.00;c143 9.40 15.40;c118 16.80 27.60;c143 8.20 22.40;c120 16.20 30.70;c066 24.30 41.00;c121 0.00 11.80;c139 3.40 11.40;c063 15.80 20.80;c062 29.10 36.70,40.04\r\n77AL0,0KZ7,Dining room,5,7,Yes,\"One person fixes a crooked picture, then leaves, while another person stands with medicine and food in hand.\",food;hand;medicine;picture,Two people are standing in a dining room. One of the people is present in the same spot for the entirety of the video holding a medicine container and a piece of food. The other person walks toward the wall shortly after the start of the video to reach for and  straighten  a picture on the wall.,c061 0.00 32.00;c128 0.00 32.00;c083 1.10 27.70,31.29\r\nEF2YJ,WQ8Z,Kitchen,3,7,Yes,A person is standing at the stove cooking. They grab a coffee cup from the cupboard and sneeze.,cup;food;stove,A person is cooking on a stove they walk over to the cabinet open it take something out and go back over to the stove while holding a coffee mug.,c147 10.00 25.60;c107 23.90 37.00;c110 23.70 29.90,35.88\r\n45D5U,X5XO,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person laughed while sweeping with a broom and then threw a camera on a table.,broom;camera;floor;phone;table,person is sweeping floor with phone in hand then puts phone on table,c102 0.00 33.00;c017 25.10 30.70;c009 25.40 30.80;c127 0.00 33.00,31.79\r\nX0BEF,C7O9,Kitchen,6,6,Yes,A person is throwing shoes while another person is holding a cup of coffee.,coffee;cup;floor;glass;pantry;shoe,A person is throwing shoes at another person and on the floor. The other person is drinking a cup of coffee.;The person in the video is throwing shoes at the other person who is standing near the pantry drinking out a cup.,c053 0.00 9.00;c054 4.00 14.00;c056 8.50 14.40;c106 18.30 27.10;c058 5.20 17.10;c058 0.50 11.10;c107 0.00 31.00;c152 0.00 31.00;c149 4.60 10.70,29.88\r\nL8V10,KFGP,Bathroom,7,7,Yes,\"A person is grasping a bottle of medicine, then putting on shoes and then smiling into a mirror in a bathroom.\",glass;medicine;mirror;shoe;sink,\"A young coming into the bathroom and putting on  shoes;a person looks at him self in the mirror, puts on shoes, and looks in mirror again\",c128 1.30 8.40;c094 20.30 29.00;c152 18.40 29.00;c055 6.00 21.00,28.38\r\nILQ2R,CCI9,Hallway,6,6,Yes,A running person comes into their hallway to look at a picture on the wall. They turn off the light and leave.,doorway;light;picture;wall,A person walks through a room and looks at a picture on the wall. They touch it and then exit the room.,c088 0.40 25.10;c105 17.30 23.30;c097 0.00 5.00,32.00\r\n6R6RS,R1OT,Bedroom,4,6,Yes,A person is lying on the floor in a basement snuggling a blanket. Person puts on their shoes before standing.,blanket;floor;shoe,A person is laying down on the floor cuddling a blanket. They get up and put their shoes on.,c055 14.40 23.60;c124 0.00 23.40;c154 22.60 30.80;c070 0.00 31.00,29.96\r\nFQ282,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is tidying the entryway, picking up and holding clothes and a blanket.\",bag;blanket;clothes;coat;floor,\"A person put clothing into a bag. The person then began folding a blanket and pants, and then took a coat off of a hanger.\",c000 7.20 15.20;c070 17.40 31.10;c075 21.90 42.50;c002 15.00 25.20;c004 15.90 46.00;c073 15.20 23.70;c001 6.70 19.40;c127 0.00 11.80;c022 0.00 8.70;c021 0.50 9.40,44.62\r\n9VZOY,ID9V,Bedroom,6,7,Yes,\"A person is sitting on their bed after awakening, grabs some medicine and downs it with a glass of water\",bed;box;cup;food;glass;medicine;pillow;water,\"A person is lying in the bed. A person then awakens. A person is opening and taking some medicine.;A person lying on a pillow awakens in bed. They sit up, grasp a box of medicine, take some, then drink a glass of water.\",c128 7.20 20.20;c106 17.70 30.80;c135 4.00 32.00;c146 0.00 10.10;c129 7.20 27.70;c156 14.60 20.20;c133 0.00 6.30;c041 11.10 17.60;c062 14.70 20.00;c063 12.40 19.50,30.79\r\nSTAZI,BYF9,Kitchen,7,7,Yes,A person is talking to another person as they're both walking through a kitchen.  One is holding a picture of a recipe they're fond of. They start taking out pans to cook it.  The other person grabs a broom and begins sweeping the floor. They run the broom up along a door to get the dust off a doorknob.,book;broom;door;floor;food,Someone walks in holding a book. He puts the book away as a girl follows him and begins to sweep up with a broom.,c006 1.80 24.00;c141 5.80 16.60;c102 16.80 32.40;c026 6.40 27.50;c127 18.90 37.00;c098 18.40 37.00;c028 12.90 19.70;c032 2.20 18.40;c097 0.00 17.10;c147 18.80 37.00,36.33\r\nTZ548,BYF9,Bedroom,7,7,Yes,A person is walking through a doorway while another person is grasping a bag.,bag;doorway,A person walks through a doorway while another person takes a bag off a bed.,c097 7.40 12.80;c023 9.40 20.00;c020 8.90 20.00,18.96\r\nKY28J,ZAWX,Bedroom,3,6,Yes,\"A person is eating at their desk, while another person while another person is watching tv on their laptop.\",bed;computer;floor;food;laptop;sandwich;stool;table,The person is eating something they are holding in their hand. The person is beating on a pink stool as if playing drums. The people are sitting and seem to be listening to music coming from a laptop computer. The person is interacting with a computer.;A person sitting on the chair plays with a table while eating a sandwich. A second person sitting on the bed is playing on a laptop.,c051 13.70 21.10;c156 8.40 15.20;c065 0.00 15.60;c135 0.00 31.00;c061 0.00 15.80;c125 0.00 31.00;c052 11.90 31.00,29.50\r\n8TSH9,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,The person is in the entryway where they are washing the mirror and cabinet down while sneezing.,box;desk;hand;mirror;sofa;table;towel,A person is cleaning a mirror and sneezing.;A person cleans a mirror and a table with a towel.;A person is cleaning a mirror and a desk and is sneezing while cleaning.,c012 10.60 21.00;c095 0.00 32.00;c153 3.40 28.00;c037 11.20 16.40,30.67\r\n9OMY1,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person sits at a desk, opening a box. The person stands up and moves to a nearby sofa, box in hand.\",box;chair;coach;couch;sofa;table;television;tv,\"A person opens and sorts through a shoe box, then stands and walks to the couch to sit down and watch tv.;A person is sitting in a chair holding a box.  They open the box, look through it, close it and carry it to the couch.  They sit down and watch TV.\",c011 0.00 19.10;c123 22.00 28.00;c041 1.20 6.30;c151 22.00 28.00;c059 0.00 19.50;c132 20.30 32.00;c154 15.20 20.80,30.71\r\nJLGLU,ZAWX,Bedroom,6,7,Yes,\"A person opens their bedroom door, fixes the doorknob, then closes it while holding a towel.\",dishes;door;lock;towel,\"The person is unlocking the door to enter the room and get a towel,then leave the room again.\",c008 0.00 5.90;c141 0.00 6.40;c033 18.30 31.00;c035 15.40 22.90;c006 19.00 28.30,30.00\r\n42K3H,WG9D,Home Office / Study (A room in a house used for work),5,6,Yes,A person in a study is closing a door while standing. Then they begin smiling at the doorway.,closet/cabinet;door;mirror,A person is looking at themselves in the mirror holding a doorknob and opening and closing the door.;The person closed the door then opened it.,c006 0.00 3.60;c008 0.00 5.00;c112 0.00 3.90,3.50\r\nUR6CU,HJJ4,Kitchen,5,7,Yes,\"A person is cooking food on the stove. They turn on a light above the stove, and eat some food on a plate next to the stove.\",food;light;pot;spoon;stove,A person standing at a stove cooking stirring a spoon in a pot. Turns walks over to the wall and turns on a light.The person proceeds to go back to the stove pick up some food and take a bite and lay it back down .,c156 8.30 14.90;c063 12.90 18.60;c147 0.00 12.70,22.38\r\nUH0BN,T7C3,Pantry,7,7,Yes,A person undressing in the pantry throws clothing out of the doorway.,clothes,A person is standing in a kitchen taking off their clothes they throw their clothes into another room.,c155 1.10 32.60;c003 16.10 23.70,34.08\r\nXRVQL,HR43,Bathroom,7,7,Yes,\"A person is sitting on the toilet eating a sandwich, then throws food on the floor.\",dish;floor;food;sandwich;toilet,\"A person is sitting on a toilet holding a dish with a sandwich on it, they take the sandwich off, take a bite, then throw the sandwich on the floor.;a person sits on the toilet and eats something then throws it on the floor shaking their head\",c061 0.00 17.80;c067 0.00 18.00;c126 13.30 18.80;c063 2.80 8.50;c065 4.70 11.70;c064 12.40 19.20,24.00\r\n7DU77,YMXV,Bedroom,7,1,No,A person is in the bathroom fixing the doorknob.  The person takes a glass of water from the table and laughs before taking a drink.,bed;cup;door;glass;shoes;table;water,\"A person closes a door, takes a bottle off a table, sits down and drinks from the bottle. The person then gets up.\",c106 11.30 21.30;c151 10.20 20.00;c110 8.30 14.60;c141 0.00 9.70;c154 27.80 32.90;c006 0.00 5.80;c107 10.00 33.00;c135 15.70 32.50;c097 0.00 5.00,31.50\r\nF24GU,JVLO,Basement (A room below the ground floor),7,7,Yes,Person is standing by window. Another person is sitting on couch looking at picture.,book;floor;picture;window,A person walks to a window and looks outside. A 2nd person is lying on the floor on a blanket looking at a picture.,c092 1.10 14.20;c088 15.20 32.00;c124 10.80 18.70;c032 11.40 32.00,31.17\r\nIZ2XX,4OHY,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person is holding a book. Walking over to their desk, the person sets the book down and begins laughing.\",book;desk;door;table,A person walks into a room through a door.  That same person sets books on a table.;A person opens a door and walks into a room carrying books. They put the books down on a table and laugh.,c009 8.40 16.40;c026 0.60 16.60;c149 12.60 29.00;c006 2.90 10.60;c152 12.70 29.00;c028 9.10 14.20;c097 0.00 5.30,27.67\r\nKFKH5,ZAWX,Recreation room / Man cave,5,6,Yes,A person is walking to a chair in a recreation room. The person is carrying food. The person starts throwing the food on the ground.,book;paper,A person is walking while holding a paper.  They throw the paper on the floor.;THE PERSON WALKS THROUGH A DOORWAY HOLDING A BOOK. THEY THEN THROW THE BOOK ON THE FLOOR.,,29.96\r\nCUZND,PFIO,Bathroom,4,7,Yes,A person is smiling and laughing at the bathroom mirror.  The person is using a camera to take a selfie by taking a picture of the mirror.  The person is making sure that the light is perfect for the photo.,camera;door;light;mirror;phone;picture,\"A person is looking in a mirror and they snap a picture of themselves with a phone, they then turn on the light and begin smiling in the mirror and playing with their phone.;A person is taking a selfie before opening the door and turning the light on.\",c104 12.50 17.40;c152 11.20 17.00;c149 29.70 36.70;c015 0.00 38.00;c008 16.90 24.10;c006 20.30 26.30;c016 0.00 20.20;c141 16.60 21.30;c097 18.00 24.50;c087 0.00 3.50;c087 12.00 17.40;c096 30.50 34.70,37.04\r\nGO761,BYF9,Living room,4,5,Yes,A person is walking towards a light.  A person is putting a sofa pillow back on the sofa that had fallen on the floor.,floor;light;pillow;sofa,A person walks into a living room. The person then picks up a cushion off the floor and places it on a couch. The person then turns off the light.,c105 14.30 19.00;c079 3.50 9.70;c077 3.00 12.00,18.04\r\nZ2MY2,UTMU,Bedroom,5,7,Yes,a person is taking selfies with a camera with a towel on their head.  Music is playing in the background.  the person then throws the towel off of their head.,bed;phone;towel,Person walks into bedroom sits down on their bed and takes selfie with phone then takes towel off head and gets up.;A person comes into a room with their hair wrapped in a towel and their phone they sit on the bed and play with their phone they take the towel off their head and throw the towel.,c015 2.70 20.60;c151 1.60 6.00;c016 1.20 27.00;c135 1.20 6.00;c087 2.50 21.70;c036 20.30 26.90;c154 22.90 27.00;c033 17.50 24.30,26.33\r\n97NNW,8IOD,Kitchen,7,7,Yes,A person is cooking food on the stove.  The person is putting dishes in the sink.,dish;food;sink;stove,A person is cooking on a stove and then gathers dishes to wash.,c147 0.00 14.20;c119 17.80 31.00;c120 13.10 21.10,30.42\r\n0ZC7L,UTMU,Stairs,6,7,Yes,A person on the stairs is tidying up. The person stands and looks in a mirror. They turn on the light then start playing on their phone.,floor;light;mirror;phone,A person started to look in the mirror after climbing up the stairs and has decided to sit down to look at a cellphone.,c093 8.20 17.80;c016 23.10 39.00;c154 13.10 20.30;c151 16.50 26.10;c127 0.00 12.60;c094 10.10 19.00;c015 23.50 39.00,37.71\r\nKONWE,Z68L,Bedroom,5,7,Yes,A person is sitting on the bed grasping a pillow.  The person smiles and stands up and throws the pillow onto the side table.,bed;pillow;table,A person is snuggling with a pillow. A person then throws the pillow on a table.,c009 4.30 20.60;c076 8.70 18.70;c078 8.10 23.60;c135 10.00 27.40;c151 4.30 20.50;c154 7.90 25.20;c080 17.60 22.50,28.75\r\nNOP6W,0RNU,Garage,6,1,No,A person seated on a blanket is watching a television with no picture. The person then takes dishes and begins washing them.,broom;screwdriver;television;tv,someone kneeling by a broken tv trying to fix it;A person in a garage fixes a TV. The person picks up a broom and walks away.,c098 25.70 33.00,31.58\r\nXNO6M,X5XO,Living room,6,7,Yes,\"A person is in a living room holding a cup of coffee, they then walk to the light switch and turn off the light.\",coffee;cup;dish;doorway;glass;light,A person is holding a cup while watching tv. A person turns off the light and watches tv.,c105 16.80 21.70;c107 0.00 27.00;c118 0.00 27.00;c097 14.80 23.90,25.58\r\nB5VY1,BYF9,Kitchen,4,5,Yes,A person is taking a glass to the sink and then walking to the refrigerator to put away groceries in the kitchen.,cup;dish;doorway;food;glass;groceries;refrigerator;shelf;sink,\"A person walks  through a doorway holding a glass, puts the glass in a sink, then opens the refrigerator door and removes groceries. The person puts the groceries on a counter\",c109 2.70 11.10;c107 0.00 12.00;c143 9.70 16.00;c097 0.20 5.70;c061 12.40 20.20;c081 15.40 20.20;c062 12.40 20.20;c118 0.00 9.50;c063 9.60 22.00;c119 6.10 12.30,21.42\r\nM2KU5,BYF9,Hallway,4,7,Yes,\"A person is tidying up a pile of shoes. They pick up a picture, look at it, and snuggle it to their body.\",floor;picture;shoe,A person is sitting on the floor in a hallway. They clean 2 pair of shoes. They then look at and hug a picture.,c088 32.20 38.70;c053 4.00 32.10;c125 0.00 40.00,38.71\r\nBMF6X,6RE8,Kitchen,5,7,Yes,\"A person is drinking a soda as the person stands in front of the refrigerator. Then the person walks towards the living room, throwing their shoes out of the way as the person does so.\",cup;floor;food;glass;refrigerator;shoe,the person takes an item out of the fridge and throws ishoes on the floor,c143 0.00 6.20;c106 6.60 15.00;c110 2.70 10.00;c142 0.00 12.80;c061 3.80 9.80;c058 10.80 24.30;c107 5.00 10.60;c154 18.10 31.90;c126 10.60 26.60;c109 17.00 22.90,33.21\r\nLI5MN,DBGJ,Home Office / Study (A room in a house used for work),6,4,Yes,A person is sitting at a table. The person is fixing something while sipping coffee.,chair;something;table,A person is sitting at a desk taking apart a device and putting it back together.,c011 0.00 43.00;c059 0.00 43.00,41.58\r\nUMT5R,T7C3,Kitchen,6,6,Yes,A person is cooking on the stove. They close a bag of rice and put it back on the shelf.,bag;closet/cabinet;food;shelf;stove,A person is cooking on a stove they close a bag and put it back in the cabinet.,c081 21.50 31.00;c147 0.00 31.00;c061 2.00 21.20;c022 23.40 31.00;c113 18.70 24.60;c020 1.40 7.50;c023 0.00 6.00;c062 21.50 31.00,29.71\r\nQ1SV4,2RTW,Living room,6,6,Yes,The person is fixing the vacuum in the loving room while throwing the box around.,box;shelf;vacuum,\"A person is holding a box. A person then holds a vacuum.;a person picks up an empty shoe box, puts it down, messes with the vacuum, picks the shoe box up again then puts it back down again.\",c040 0.00 24.10;c136 7.30 31.00;c043 3.00 9.20;c042 1.50 7.60;c045 1.10 7.60,30.50\r\n56U6A,2RTW,Bedroom,6,6,Yes,\"A person is looking for a book, grasping at the top of a high shelf, and instead pulls a picture of a smiling person. The first person looks in the mirror and cries.\",book;mirror;picture;shelf,A person is reaching up on a book shelf straightening books when the grab a tablet and sit down on the bed in front of the mirror.,c096 18.70 31.00;c082 0.00 23.00;c084 14.50 31.00;c028 0.60 10.90;c151 17.80 27.70;c088 16.40 31.00,30.17\r\nBCX7K,6RE8,Bedroom,6,6,Yes,\"A person awakens in thier dining room and grabs a bottle of medicine, and a box of raisins. They eat the raisins and leave.\",bottle;chair;desk;food;hand;table,A man sitting in a chair looking at something in his hand. Then he takes a bag with food and pours it in his hand and starts eating it.;A person is sitting in a chair looking at a bottle. Then they grab a bag of food off a table and start eating.,,31.42\r\nTDNV3,5LWB,Dining room,5,7,Yes,\"A person is sitting at the table eating food.  The person gets up and takes a picture off the shelf, then tidies the other items on the shelf.\",chair;food;sandwich;shelf;table,Two people are sitting down at a table eating a sandwich. One person takes some food off the other persons plate. One of the people stands up and begins straightening up a shelf.,c082 22.20 35.00;c156 9.60 16.50;c154 19.20 35.00;c065 6.90 17.60;c011 0.00 24.00;c059 0.00 22.80;c061 9.40 17.30;c068 12.80 17.50,33.54\r\nUVP5I,CCI9,Stairs,5,7,Yes,\"A person is pouring coffee on the stairs, while a other person is playing with a mirror on the stairs.\",coffee;cup/glass/bottle;dish;hair;mirror;stairs,\"A person is sitting on some stairs looking at themselves in a mirror, the other person is pouring coffee on the stairs.\",c093 2.40 18.40;c096 0.00 20.50;c144 0.00 6.10;c118 0.00 32.00;c107 0.00 32.00,31.29\r\nY2YO6,0KZ7,Stairs,7,6,Yes,One person is working on a loose doorknob at the top of the stairs and another is putting folded clothes on the stairs.,clothes;door;floor;towel,A person is fixing a doorknob. A second person begins folding clothes on the stairs.,c140 0.00 31.00;c001 0.00 30.60;c004 1.10 30.80;c127 0.50 31.00;c006 0.00 31.00;c034 0.00 31.00,29.79\r\nGLS7U,3531,Dining room,7,7,Yes,A person is sitting in a chair at the desk eating food.  The person takes a bottle of medicine out of a paper bag.,bag;chair;desk;food;laptop;medicine;table,A person is sitting on a chair eating then they begin to take a medicine bottle out of a bag.,c011 0.00 32.00;c061 0.00 25.40;c021 15.80 30.20;c128 20.30 32.00;c059 0.00 32.00;c156 0.00 25.60;c051 0.01 18.10,31.17\r\nE0AEN,G6WD,Closet / Walk-in closet / Spear closet,6,7,Yes,A person opens the doorknob to the closet. This person throws some clothes onto a rack and takes a book off a shelf before tidying up some misaligned coat hangers.,bag;bed;book;cabinet;closet;clothes;door;hangers;shelf;wardrobe,\"a person opens a closet then puts clothes from a bag in it and a book off the bed;A person opens the door to their wardrobe and puts clothes away on the shelves. The person picks up a book from the bed and also puts it on the shelf, along with hangers lying on the cabinet.\",c028 11.60 22.00;c008 0.00 5.20;c081 6.20 42.40;c113 0.00 4.70;c001 3.40 12.20;c112 39.50 46.00;c004 3.70 12.00;c006 39.50 46.00;c141 40.60 46.00,45.29\r\n7EEF0,0KZ7,Kitchen,7,7,Yes,\"A person is in a kitchen cooking on a stove, they then start smiling at a picture that is near by.\",food;picture;stove,A person cooks something on the stove while smiling at a framed picture of the United States flag.,c088 2.50 18.20;c147 0.00 25.00;c152 2.70 12.60,23.67\r\n1DNAX,UTMU,Closet / Walk-in closet / Spear closet,6,7,Yes,\"Person is walking to open closet door, then person turns light on grabs broom and starts sneezing.\",broom;closet;door;light,\"The person is opening the doors to the closet, and turns on the light. The person then picks up a broom and dustpan, sneezes, and walks away from the closet.\",c008 0.40 6.90;c100 9.80 18.30;c104 6.90 12.00;c153 13.20 20.90;c113 0.50 8.10;c141 0.50 6.10,28.12\r\nMI4SN,WQ8Z,Living room,7,7,Yes,A person is awakening on a sofa and then undressing in front of a window in a living room.,clothes;couch;jacket;sofa;window,\"A person is laying on a couch. They get up and look out the window, then they take their jacket out.;A person is lying on a couch they get up look around go to the window open the window take off their jacket\",c122 0.00 27.00;c146 8.00 27.00;c155 33.00 46.00;c154 26.00 33.00;c002 33.00 46.00;c092 29.70 46.00;c123 0.00 33.20,45.17\r\nS1LY3,9PLL,Living room,5,7,Yes,\"A sneezing person is sitting on a sofa in their living room doing their homework, and watching a video on a laptop.\",book;chair;laptop;paper;pencil,This person is taking notes while watching a video of some kind on a laptop.;someone sitting down and writing on some paper with a pencil,c051 26.30 38.00;c059 15.10 38.00;c115 0.00 30.30;c026 0.00 30.30;c115 17.30 28.40;c116 26.10 30.70;c145 2.40 28.30;c117 0.00 2.90;c032 0.00 28.60,36.67\r\nBM5B8,QZQ4,Kitchen,6,6,Yes,\"The person turned off the stove and opened the door, seductively laughing and undressing.\",closet;clothes;door;fridge;hat;jacket;shirt;stove,\"someone taking off their jacket in a kitchen;The person is standing in a kitchen, and reaching over the stove. The person walks away opens a door removes hat, and takes off a shirt.\",c008 11.40 23.80;c141 11.50 22.00;c155 18.10 31.00;c113 13.30 22.00,29.96\r\nS1PWD,Q4IF,Living room,5,6,Yes,The person washes the glass over a picture frame and then drinks something.,cup;dish;glass;phone/camera;photo;picture;sofa;table;towel,\"A person takes a picture from a table and begins to clean it with a towel.  They put the picture back on the table, then pick up a glass and begin drinking.;This person picks up a photo and starts polishing it, sets it down, then takes a drink.\",c084 0.00 19.80;c083 0.00 3.20;c106 20.70 26.40;c038 0.50 8.30;c086 0.00 3.80;c086 14.60 20.20;c088 0.00 3.50;c107 0.00 19.30;c087 0.00 4.50;c034 0.00 3.90;c118 17.00 31.00;c110 16.50 21.70;c123 0.00 31.00;c033 0.00 19.00;c009 15.00 20.10,29.83\r\nAOQ7C,L4ZP,Hallway,6,6,Yes,A person closed the door and put a chair in front of it before running to check the doorknob at the end of the hall.,chair;door,\"A person walks to a room and closes a door, then puts a chair on it. They then run through to a second door, open it, lock a third door, then come back and close the second door.;A person walks into the room, closes the door, places a chair in front of the door, then runs down the hallway and out the door.\",c141 0.30 6.10;c006 0.00 6.00;c008 12.60 18.30;c150 7.50 17.40;c097 0.00 3.70,28.25\r\nBABV1,ID9V,Pantry,4,7,Yes,A person is tidying a shelf. The stop and take a drink of water while looking out a window.,glass;shelf;window,The person in the video is straightening out objects on a shelf and taking a sip from a glass;A person is tidying up a shelf while they are drinking a cup of coffee then they move over to look out the window.,,28.46\r\n7RBKP,8718,Kitchen,7,7,No,\"A person is smiling at some food in the closet. They then leave, holding some groceries.\",bag;cabinet;food;groceries;shelf,A person walks over to a cabinet and starts taking out food.;A person walks up to the cabinet in the kitchen takes out some cans and looks at the camera and shows the cans.,c061 4.80 32.00;c062 4.50 32.00;c130 4.60 32.00;c152 10.00 31.90;c113 0.00 7.50;c081 27.70 32.00;c022 0.00 8.20;c082 5.50 32.00;c112 21.60 27.60;c081 12.30 23.10;c114 5.90 14.20,30.62\r\n1XFP6,JVLO,Bedroom,5,3,Yes,A person is picking up a pillow and throwing it on the couch while grasping their coffee in one hand.,coffee;cup;doorway;floor;hand;pillow;sofa,\"Person walks into room, picks up pillow from bed, throws pillow on the the ground, grabs cup from windows sill, lays on floor and drinks from cups.\",c107 9.10 15.10;c077 3.00 16.20;c151 22.50 29.70;c124 27.40 31.00;c097 0.00 22.00,30.42\r\nGKSL2,BYF9,Living room,5,7,Yes,A person is in their living room eating a cookie and drinking a cup of milk. The person is sitting on a window sill and talking on the phone.,chair;cup;drinking;food;phone;table;window,The person sits in a chair eating a snack and drinking something. The person sets the drink down on a table. Then the person gets up to sit at the window and talk on a phone.;This person appears to be sitting in a living room. This person is drinking and eating food. Then picks up phone and walks over to open window to talk.,c015 24.50 39.00;c106 9.20 17.60;c109 15.90 21.40;c151 0.00 4.70;c009 15.90 21.40;c019 24.40 39.00;c107 0.00 21.60;c156 6.10 13.20;c154 14.40 22.40;c059 0.00 18.50;c092 24.20 33.40,38.42\r\nAQ5M6,PO5L,Bathroom,2,6,Yes,\"A person walked into the bathroom and turned on the light.  The person was smiling in the mirror as the person was throwing towels over the shower rack, right before getting dressed.\",clothes;doorway;floor;light;mirror;towel,Person walks into their room and turns the light on and off. The person then moves towards the mirror before getting dressed.;a person turns a light on and off then walks out with a towel and puts on a shirt,c033 9.80 18.20;c094 6.70 16.90;c105 0.00 7.70;c148 15.80 30.00;c036 11.40 18.60;c096 6.80 16.60;c104 4.80 9.50;c152 7.30 16.30;c148 14.80 22.30;c126 12.70 18.10;c003 12.30 17.80;c002 0.20 5.80;c097 0.70 6.60,29.42\r\nFPFFN,BYF9,Living room,7,7,Yes,\"A person is in a living room and takes their phone out their pocket, they then run to the light switch and turn it off.\",doorway;light;phone,\"Person is walking across room holding a phone, then turns lights off and walks through doorway.\",c015 3.00 9.60;c105 13.70 19.00;c097 15.70 19.00;c016 5.00 15.20,18.21\r\nOE751,1OHU,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person is looking through their clothes while talking on the phone. They pick out an item then leave the closet, closing the door behind them.\",blanket;closet;clothes;coat;door;phone,Person is talking on the phone. He grabs his coat and closes the closet.,c113 5.00 27.40;c019 12.00 23.40;c008 7.00 24.60;c002 11.30 27.30;c000 20.10 34.00;c015 0.00 34.00;c006 21.10 34.00;c070 19.60 34.00;c112 21.90 33.40;c141 0.00 2.80;c073 18.40 23.80,33.17\r\n1HGEX,KASL,Home Office / Study (A room in a house used for work),6,6,Yes,\"Sitting with shoes propped up, a person opens a book from the cabinet and snuggles into the cushions of the chair.\",book;chair;computer;desk;headphones;pillow;shelf;shoes;stool;table;window,\"A person sits on a chair in front of their desk, watching a computer. The person puts their feet up on a stool. The person then puts on headphones, picks up a book from the desk, and starts looking at the book.;A person puts feet up on a stool, puts on headphones, picks up a book from a desk, and rocks in chair.;A person is sitting in a chair at a desk while watching a computer monitor. The person picks up a book then opens it and looks at it before closing it.\",c027 16.80 24.40;c032 16.00 31.00;c059 0.00 31.00;c011 0.00 31.00;c014 0.00 31.00;c025 26.80 31.00;c026 15.10 31.00;c030 15.10 21.10,29.96\r\nNT2HT,KASL,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is holding a book. The person walks to a nearby window, and opens it.\",book;box;chair;computer;monitors;table;window,\"The person is sitting in a chair lookng at computer monitors and then the person stands up and reaches for a book then sits back down and opens the book while glancing at the computer monitor then glances at the window and looks at the book while swinging back and forth in the chair and then the person stands up and put the book on the boxes while walking away.;A person gets up from the computer and grabs a book. The person flips through the book, then puts it back on the table.\",c025 17.50 23.30;c027 4.20 12.50;c030 0.00 6.50;c154 18.10 23.80;c026 1.80 25.70;c028 21.90 26.00;c032 6.70 22.10;c059 0.00 23.30;c009 21.60 26.50,29.96\r\nSUKBV,BYF9,Bedroom,7,4,Yes,\"A person sits in the sofa, snuggling up to a blanket and pillow. Another person brings them a bottle of liquid medicine, which they pour out into the cap.\",bed;blanket;cup/glass/bottle;medicine;pillow;sofa,A person is sitting on a sofa with a blanket and a pollow then another person walks up to person A.;A person sits on the edge of a bed and adjusts a blanket and pillow while being approached by another person.,c076 0.00 4.80;c077 0.00 5.30;c123 0.00 18.00;c070 0.00 18.00;c071 0.00 18.00;c135 0.00 18.00;c110 0.00 4.60;c079 3.40 11.40;c072 0.00 18.00;c128 0.00 6.90;c075 0.00 7.90;c075 8.30 14.50,16.96\r\nU03TA,9PLL,Stairs,5,6,Yes,A person is seen taking a pillow upstairs. They set the pillow on a desk and then start leaving.,bench;chair;cushion;pillow;stairs;table,\"A man holds a pillow and walks up a flight of stairs, then puts the pillow down on a bench and walks back down the stairs.;A person is standing at the bottom of some stairs holding a cushion. They walk to the top of the stairs and put the cushion on a chair. Then they walk back down the stairs.\",c076 0.00 13.40;c077 7.10 15.20;c009 7.10 15.20,30.75\r\nZ1A0Q,G6WD,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person in the entryway is sitting down in the doorway. They begin sneezing uncontrollably, and then stand up and pick up a broom while smiling oddly.\",broom;doorway,A person sits in a doorway and sneezes before grabbing a broom.,c098 22.10 42.80;c153 6.00 19.20;c100 18.60 25.20;c154 15.00 22.80;c151 0.00 6.10,42.96\r\nF8TWE,YMXV,Bedroom,6,5,Yes,A person is watching a box while another person is putting a bag down.,bag;box,A person is holding a box. Another person sets their backpack down on the floor.,c040 0.00 24.50;c024 25.20 31.80;c020 21.30 29.40;c022 25.40 33.00;c041 0.00 3.80,31.96\r\nOFNQV,CCI9,Living room,4,5,Yes,A person is in the office watching television with a blanket and a book on their lap.  The person smiles and throws the book on the floor.,book;chair;floor;television,A person is sitting in front of a TV while holding a book. They set the book down on the floor.,c126 23.40 30.90;c132 0.00 34.80;c025 24.90 31.10;c026 0.00 30.10;c031 22.70 32.30;c032 0.20 28.10;c028 23.40 30.60;c059 0.00 35.00,33.79\r\nHGZ0V,BYF9,Closet / Walk-in closet / Spear closet,4,7,Yes,\"One person opens a sandwich and starts sneezing, while another takes food from the desk.\",desk;dish;food;sandwich,Person picks up sandwich from desk and sneezes.,c067 2.20 19.00;c061 2.00 19.00;c063 1.20 12.40;c153 8.20 19.00;c120 1.70 6.80;c118 2.90 19.00;c069 3.30 13.60,18.42\r\n5V8OI,KFGP,Laundry room,6,7,Yes,A person appears to be fixing a squeaky cabinet door by opening it and closing it and laughing.,cabinet,The person opens and closes cabinets above a washing machine as if they are looking for something.,c112 3.10 10.30;c113 0.30 7.40;c154 0.00 4.10,28.17\r\nMC6J7,ID9V,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person is standing in front of the closet and undressing. They throw the clothes in the closet, take out a vacuum, and walk away smiling.\",closet;clothes;door;vacuum;wardrobe,\"A person opens the door of a wardrobe, undresses and puts the clothes in the wardrobe, then grabs a vacuum and smiles.\",c137 19.60 33.30;c113 0.00 6.20;c152 21.30 33.10;c001 8.50 17.20;c138 19.30 32.60;c155 3.90 14.50;c008 0.00 6.10;c003 11.50 17.70;c006 23.70 33.10;c000 8.60 17.00;c002 8.00 17.20;c112 23.00 33.10,33.04\r\nA0T30,PO5L,Kitchen,6,7,Yes,\"A person is in a kitchen putting a pot on the stove, they then take a small towel and wipe their wet hands dry.\",dish;door;food;hand;pot;stove;table;towel,A person takes a pot from a cabinet and places it on the stove. They take a towel from a table and wipe their hands with it.;Person walks into a room pull a pot out of the cabinet put it on the stove then proceed to wash hands with towel.,c033 0.80 11.40;c035 7.60 15.20;c147 12.00 21.60;c009 9.70 24.20;c034 13.80 24.20;c120 5.80 13.50;c119 6.70 13.50;c036 19.80 24.30,27.67\r\nEDXBD,QOQ4,Home Office / Study (A room in a house used for work),7,7,Yes,A person sitting at a desk begins sneezing. The person gets up and turns the doorknob as the person is leaving the room.,chair;desk;door;table,\"A person is sitting at a desk, and then gets up and walks over to open a door.\",c141 9.30 14.00;c011 0.00 9.70;c014 0.00 10.10;c154 6.10 11.20;c059 0.00 10.40;c008 9.20 14.00,12.83\r\n01KM1,L4ZP,Kitchen,5,7,Yes,A person in the kitchen is playing with a blanket while working at their desk. They are eating some food while also taking a sip of some coffee.,blanket;chair;cup;drink;food;glass;homework;paper/notebook;pen;table,A person wraps a blanket around them to stay warm as they sit at a kitchen table.  They are writing a note and eating and drinking while writing.;a person sits in a chair and wraps themselves in a blanket then does homework and eats and drinks,c063 17.40 28.70;c059 0.00 33.00;c071 0.00 10.30;c156 15.20 26.30;c106 24.40 33.00;c011 0.00 33.00;c072 0.00 33.00;c145 7.20 28.80,31.71\r\nKZSA9,OUKK,Living room,4,7,Yes,\"A person opens a box and takes a blanket out, then closes the box.\",blanket;box;floor,\"A person walks into a room, sits down on a couch and unpacks a box. Then the person leaves.\",c039 19.50 29.60;c041 9.50 17.70;c151 7.50 15.70;c154 23.30 30.30;c070 13.20 20.90;c071 15.10 21.10;c044 9.80 19.00;c073 23.60 30.90;c125 8.30 26.40,29.71\r\nV115C,KFGP,Hallway,6,6,Yes,\"A person undresses while walking down a hallway. The person takes a towel from a chair, and throws the clothes onto a desk.\",chair;clothes;desk;shirt;table;towel,\"A person takes off his shirt, picks up a towel off a chair, and lays his shirt on a desk.;A person walks down the hall and takes off their shirt. The person picks up a towel on a chair in the hallway and puts it over their shoulder.\",c001 17.60 25.00;c009 17.20 24.20;c033 14.60 24.70;c000 8.80 20.60;c155 1.40 15.20;c002 1.30 17.70;c003 18.20 23.00,23.71\r\nN5U8Z,BYF9,Hallway,6,6,Yes,A person is standing in front of a mirror getting dressed.  The person walks down the hallway and looks at a picture on the wall and smiles.,clothes;door;jacket;mirror;picture;sink,\"This person i putting on a jacket in the mirror and then walking down the hall.;A person looks in a mirror at himself while zipping up a gray jacket, then walks off.\",c096 0.00 2.60;c154 24.00 37.40;c148 0.00 24.20;c088 21.00 37.40;c001 0.00 23.80,39.25\r\n6J8NE,KFGP,Hallway,6,6,Yes,Person releases doorknob as they step into hallway. Person reaches down and grasps bag handles and begins walking down hallway holding bag tightly.,bag;door;towel,\"A person came through a door and picked up a bag, then walked all the way down the hall.;Person stands in doorway, closes door, picks up clothes and walks down hallway.\",c023 3.10 22.20;c141 0.00 7.50;c020 4.10 17.70;c006 0.00 5.30,23.54\r\nAI4NP,HJJ4,Bedroom,5,7,Yes,A person is sneezing while taking clothes out of the cabinet before undressing.,cabinet;clothes;floor;table,A person is going through a cabinet they take off their shirt and take a shirt out of the cabinet.;a person is kneeling on the floor they open the cabinet and take out some clothes then they take off their jacket,c113 1.00 7.70;c155 7.00 17.00;c125 0.00 17.00;c002 3.60 11.40;c112 5.60 10.80;c009 11.90 17.00,15.67\r\n5LETG,4I2W,Stairs,6,7,Yes,\"A person is running up the stairs holding a sandwich. Laughing, the person reaches out and turns the light on.\",dish;food;light;sandwich;stairs,A person is walking up a set of stairs holding a sandwich and smiling. The person turns on a light and laughs.;The person walks up the stairs holding a sandwich and smiling. The person reaches the top of the stairs and flips a switch near a door.,c104 16.60 23.50;c067 0.00 30.00;c152 15.60 25.30;c149 14.40 25.30;c118 0.00 30.00;c061 0.00 30.00,29.21\r\nV1JIC,T7C3,Living room,7,7,Yes,A person takes shoes off and grasp a pillow to put under a head and lie on a couch.,floor;head;pillow;shoe;sofa,\"A person is sitting on a sofa, taking off their shoes. The person picks up a pillow, places it on the sofa, and lays down.\",c122 16.10 28.00;c077 11.20 16.40;c079 9.30 15.80;c123 0.00 18.90;c078 14.60 28.00;c054 6.10 13.10;c057 0.00 9.70;c126 0.00 11.40,26.92\r\n88ZZV,EIO2,Pantry,5,6,Yes,A person in the pantry is drinking a glass of water and throwing their shoes next to the door.,cup;doorway;glass;shoe,A person is standing in the doorway. A person then takes off their shoes. A person then grabs a glass of water and drinks.,c053 6.60 15.30;c106 0.00 11.60;c057 6.60 24.20,30.54\r\nF650A,1TZV,Garage,7,7,Yes,\"A person is in the garage tidying up with a broom. They notice a bag lying on the floor, pick it up and put it in a box.\",bag;box;broom;floor,Person sweeps up their garage with a broom before picking up a plastic bag and placing it on a box.,c020 11.00 21.60;c023 10.30 18.30;c098 0.00 27.00;c022 11.20 19.90;c024 11.20 20.00;c127 0.00 14.80;c102 0.00 15.10,25.88\r\nZATTZ,T7C3,Kitchen,7,7,Yes,A person is holding some dishes then puts then down. The person then begins cooking at the stove.,closet/cabinet;dish;food;stove,A person sits a pile of dishes down on the counter so that they can cook something on the stove.,c118 0.00 8.70;c119 1.70 9.20;c147 19.20 34.00;c113 13.60 22.20,33.46\r\nJKZUM,6RE8,Home Office / Study (A room in a house used for work),5,6,Yes,A person is tidying their home office and holding a picture. They turn off the light and leave.,door;light;paper;table;towel,\"A person is opening a door, and closing it. A person then looks at a paper, and then walks out the door.;A person walks into a room through a door and walks to a table..  A person grabs a paper from the desk, and tosses a towel on the floor. The person then leaves the room and shuts off the light\",c006 1.20 7.00;c008 0.00 5.10;c115 10.60 23.80;c117 10.60 20.30;c097 0.30 6.00;c141 2.00 7.50,32.33\r\nWT2C0,X5XO,Living room,5,1,No,\"A person walks into a entryway smiling while carrying a bag, they then take a small towel out their bag and use it to wipe the sweat from their forehead.\",book;chair;food;sandwich,There is a person sitting in a chair reading a book and eating a sandwich;A person sitting in a chair with a book reading.The person continues you to turn pages reaches over and picks up a sandwich and takes a bite.,c065 21.60 32.00;c032 0.00 32.00;c059 0.00 32.00;c156 21.60 32.00;c067 28.50 32.00;c061 28.00 32.00;c026 0.00 32.00;c069 28.00 32.00,30.79\r\n19MUM,0KZ7,Garage,5,6,Yes,\"A person is looking through items on a shelf.  They pick up a hand mirror and glance at their reflection before putting it down, then drink from a water bottle before leaving the garage and closing the door behind them.\",cup/glass/bottle;dish;door;mirror;shelves;sink;water,a person is looking for something in a garage then drinks some water and walks out;A person is washing dishes in a sink. A person is looking in the mirror at themselves. A person then grabs something to drink. A person then opens a door and walks out.,c093 4.20 13.00;c096 5.30 11.50;c006 27.80 32.00;c094 5.00 11.00;c106 9.00 23.00;c008 24.00 32.00;c121 0.00 7.00;c097 24.10 32.00,30.92\r\n5FHH2,HJJ4,Basement (A room below the ground floor),5,7,Yes,\"A person sits in the basement, folding clothes. The person throws the stack of clothes onto a pillow.\",chair;clothes;pillow;towel,A person is folding clothes while sitting down next to a pillow.,c004 0.00 26.00;c034 0.00 3.40;c001 0.00 3.40;c037 0.00 26.00;c003 21.30 26.00;c059 0.00 26.00,24.79\r\nJG7BS,C7O9,Pantry,7,7,Yes,One person pours a drink from a shelf and starts drinking while another person stands by the door with a vacuum.,bottle;glass;shelf;vacuum,\"Person #1 is standing in the pantry pouring a drink, then drinking from the glass and placing the bottle on a shelf. Person #2 is standing just outside the pantry leaning on a vacuum, watching the other person.\",c137 0.00 32.00;c109 11.80 16.90;c107 0.00 32.00;c108 3.10 11.50;c106 14.70 20.40;c106 18.90 25.80,30.62\r\nPIRMO,UTMU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person in a closet putting a blanket away. While drinking a glass of water the find a box.,blanket;box;closet/cabinet;cup;medicine;shelf;towel,A person puts a blanket on the shelf in the closet. The person takes a cup off the shelf and drinks from it. The person then takes a box off the shelf and opens it before walking away.;A person  putting a towel on a shelf. A person then takes some medicine.,c071 0.40 7.70;c043 10.70 17.10;c034 1.30 8.90;c110 3.50 8.60;c041 12.40 20.00;c106 4.50 11.20;c081 8.20 14.50;c114 2.30 15.80,22.46\r\nIBYHY,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,One person was snuggling with a pillow. Another was walking with no clothes on.,clothes;doorway;entryway;pillow,\"A person is standing snuggling a pillow while another person stands and covers themsevels with a pillow and then they walk to the door using the pillow to cover themselves;Person standing in entryway holding and hugging a pillow. Another person in doorway holds a pillow and walks in room, looks at camera.\",c000 0.00 20.00;c076 0.00 20.00;c078 0.00 20.00;c079 0.00 20.00,19.42\r\n2GQDN,C7O9,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person opens the closet, takes a sandwich and some other groceries from the shelf, then lies on the floor and starts eating them.\",bag;box;closet/cabinet;door;floor;food;groceries;sandwich;shelf,\"A person opens a door and walks into a wardrobe. The person rearranges groceries and boxes from the shelf, places boxes on the floor, and sits down on the floor. The person then lounges and eats a sandwich.;A person opens a door and takes some food off a shelf and places it on the floor. The person sits on the floor and begins eating the food.\",c008 7.10 15.40;c042 15.80 31.00;c065 21.20 31.00;c020 3.60 20.70;c156 21.20 31.00;c041 4.10 9.00;c151 15.90 25.80;c154 0.00 20.80;c097 0.00 7.90;c063 3.30 21.70;c124 20.30 31.00;c113 0.00 6.70,30.29\r\nJ4QIT,WG9D,Recreation room / Man cave,4,4,Yes,A person in their recreation room is walking around with a bag of medicine in their hand. They begin laughing about something funny they remembered and then begin leaving the room.,book,A person laughs at a book.;A person is holding a book. They open the book and look at it and laugh.,c149 2.40 8.00;c026 0.00 9.00;c027 0.00 4.00;c029 2.60 9.00;c152 2.70 9.00,8.12\r\nR87CC,8718,Recreation room / Man cave,5,7,Yes,The person is grasping the doorknob in the man cave and they are sneezing while holding a blanket.,blanket;door;sofa,\"A person is sitting on a sofa snuggling with a blanket, they get up, open a door, then leave.;a person sits on the sofa, covered with a blanket. The person gets up and turns a doorknob to exit a room.\",c141 17.40 28.00;c072 0.00 6.00;c154 0.60 5.50;c123 0.00 2.80;c006 15.60 22.20;c008 8.60 15.00;c070 0.00 21.90;c097 11.00 21.20,26.83\r\n0IFCL,YA10,Laundry room,7,7,Yes,A person closes the door and starts tidying the shelf.  Then they start leaving.,door;items;shelf;something,A person closes a door. The person tidies up items on a shelf above the washer/dryer. The person opens the door and leaves.;There is a person shutting a door.  That person then moves somethings on a shelf and leaves through the door.,c006 0.00 5.10;c008 32.30 38.90;c082 1.90 35.60;c141 0.00 4.10,39.04\r\nABXKN,Z68L,Bathroom,7,7,Yes,\"In the bathroom a person ran in while dressing, kicking the vacuum out of the way, then grabbing a small box on the sink.\",box;clothes;jacket;shirt;sink;tissues,\"A person walks into the shower and puts on a jacket. They take a box of tissues from the sink.;A person walks into a bathroom and begins to put on and zip up a shirt.  They grab a box from the sink and put it between their legs while they finish zipping up the shirt.  Once this is complete, they take the box and leave the room.\",c040 11.70 19.30;c043 10.10 16.50;c000 3.00 8.10;c148 5.40 13.30,32.25\r\n6703W,HR43,Living room,5,5,Yes,A person is sitting at a table of groceries while drinking from a cup. Next the person begins doing homework.,coffee;cup;glass;homework;paper;sofa;table,aperson sits on the sofa and drinks out of a glass off a table then grabs some paper;A person is sitting down  drinking coffee and looking over their homework.,c009 10.60 17.20;c117 14.50 44.00;c106 7.00 14.00;c123 0.00 44.00;c115 14.70 44.00,42.79\r\nWGM7C,BYF9,Kitchen,6,5,Yes,\"A person is hanging out in the kitchen making coffee. Another person runs in, takes the coffee off of the shelf, and smiles.\",coffee;cup;food;glass;lighter;shelf;stove,A person is in the kitchen making themselves a cup of coffee. Another person walks in and grabs something off the shelf.;a person is making a drink on the stove and another person comes in and takes something off a cabinet,c108 9.60 19.60;c147 22.30 28.00;c109 5.70 10.90;c062 5.70 10.90;c063 7.60 12.00;c081 5.70 10.40,26.92\r\nB3RHF,0KZ7,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person lying on the floor in an entry way is snuggling a pile of freshly cleaned clothes.  They are watching some food they have in front of them, as if it's going to get up and move away.  When it doesn't, they start eating it.\",blanket;clothes;floor;food,A person lying on the floor snuggles with a blanket and eats food.,c124 0.00 25.00;c061 12.20 25.00;c156 15.20 21.00;c072 0.00 15.60,24.46\r\nW25MK,X5XO,Kitchen,6,7,Yes,\"A person is grasping a book, reading it.  They get frustrated and throw it down on the table.\",book,\"A person leans against a wall reading a book. They close the book, throw it down on the counter, and leave.\",c025 20.50 25.40;c026 0.00 24.50;c032 0.00 24.70,30.21\r\n9D2T4,6SWZ,Hallway,6,6,Yes,A person is in the hallway throwing a pillow and standing near the box.,box;pillow,A guy is standing in a hallway holding a pillow. He tosses the pillow. There is a box at his feet and he nudges the box.,c076 0.00 8.30;c080 4.20 9.60,30.88\r\n7XLMZ,0KZ7,Stairs,7,7,Yes,A person was sneezing and throwing clothes while a second person sat on the stairs eating a small portion of food.,clothes;floor;sandwich;towel,A person is playing with their clothes throwing them up in the air while sneezing uncontrollably.,c000 0.00 30.00;c003 0.00 30.00;c153 0.00 30.00;c036 0.00 5.80;c036 3.10 8.60;c036 7.70 13.00;c125 0.00 30.00;c033 0.00 30.00;c065 0.00 30.00;c067 0.00 30.00,28.75\r\nQIYU4,KL48,Closet / Walk-in closet / Spear closet,4,1,No,\"A person opens the door to a closet and starts tidying up, they then start laughing before turning off the light.\",book;box;closet;door;homework;light;paper,\"a person goes into a closet and messes with something and walks out with a book;A person opens the door, goes into the closet and starts looking through toys. Then they turn off the light, grab homework and leave.\",c105 1.90 23.90;c008 0.00 25.10;c039 7.20 21.30;c006 20.00 26.00;c154 1.00 22.00;c117 1.00 22.00;c041 4.00 9.00;c112 21.10 26.80;c104 1.60 6.40;c141 0.00 3.30;c113 0.00 4.90,25.92\r\nPWTN2,C7O9,Bathroom,6,7,Yes,One person is working with a vacuum when another runs into the bathroom to get a book left there.,book;doorway;vacuum,A person is standing in the bathroom fixing a vacuum to clean the floor.,c136 0.00 32.00;c150 14.10 20.70;c097 14.60 20.10,30.58\r\n428VQ,YMXV,Home Office / Study (A room in a house used for work),5,6,Yes,\"A person stands in the doorway, grasping a book. The person is watching something across the room.\",book;doorway;homework;paper,A person is looking at some homework in a doorway.;A person is holding a piece of paper in the doorway. They continue to pace about.,c115 0.00 33.00;c026 0.00 33.00;c032 0.00 5.40;c025 3.80 8.50;c027 0.00 8.00;c097 0.30 7.00,32.38\r\nGSQX3,KFGP,Stairs,5,7,Yes,A person is walking down the stairs while holding dishes to bring to the sink when they start sneezing on the way down.,dish;groceries;sink,A person is walking down the stairs carrying dishes. They start sneezing a lot.,c120 1.10 27.00;c153 9.00 14.60;c118 0.70 27.00,25.75\r\n1IQ8H,QOQ4,Kitchen,7,7,Yes,A person is standing and grasping a pan at the stove. Then they take the pan over to the sink.,pan;sink;stove,The person took a pan off the stove and put it in the sink.,,14.33\r\nG9SRO,D0RU,Living room,6,5,Yes,A person is standing by the television and fixing a sandwich.,sandwich;television,\"A person places things on a table while another lays down behind him, then looks at the television.\",,33.12\r\n7R8ZU,BYF9,Stairs,7,7,Yes,A person is sitting on the stairs with a laptop doing homework. They leave and begin standing in front of a stove to start cooking.,doorway;floor;food;laptop;stove,The person sat on the stairs working on a laptop. The person closed the laptop and set it down. They walked down the stairs and began preparing food on the stove.,c046 14.00 20.80;c047 0.00 19.80;c052 0.00 19.70;c154 16.90 22.70;c147 22.10 33.00;c125 0.00 21.40;c097 19.40 24.70;c051 0.00 17.10,32.33\r\nPURYC,ID9V,Kitchen,7,7,Yes,A person is grasping for the groceries from the refrigerator that they wish to cook.,bag;cup/glass/bottle;door;food;groceries;refrigerator,The person opened the refrigerator and removed several groceries.;The person was getting things out of the refrigerator.  It looked like the person was making a meal. The person took out several things to eat.,c020 0.00 34.60;c143 0.00 2.50;c107 1.20 35.00;c063 8.00 35.00;c110 1.20 35.00;c061 4.90 35.00;c008 0.00 5.70,33.71\r\nNR9L2,8IOD,Kitchen,6,7,Yes,\"Person is standing by stove cooking something in pan, then salt from cabinet and sprinkles it on food.\",cabinet;food;pan;stove,\"Person in the kitchen who begins to cook, puts some oil in the pan and then goes to the cabinet for something to use for cooking.\",c113 16.40 23.70;c062 18.30 27.80;c147 0.00 20.10;c061 0.00 32.00;c063 0.00 32.00;c112 15.30 23.20,30.92\r\nKTKWL,YMXV,Entryway (A hall that is generally located at the entrance of a house),3,5,Yes,A person takes a box and grasps it as the place it by the door.,box;door,\"Person taking a package from the doorway, opens the door, and then inspects the box.\",c008 11.40 20.80;c041 19.40 25.80;c040 10.60 32.00;c043 4.10 15.20,31.00\r\n6NBQ6,D0RU,Living room,4,7,Yes,A person is watching their self in the mirror and then pouring water into a plant on the shelf in the recreation room / man cave.,mirror;plant;shelf,\"Person checks themselves out in a mirror and then reaches to get something off of a shelf, accidentally knocks plastic plant off of shelf\",c082 17.70 33.00;c096 0.00 18.30;c093 0.00 33.00;c081 18.80 33.00,32.21\r\n8SAEO,OUKK,Bathroom,4,7,Yes,\"A person in the bathroom is undressing by removing their sweater. There is a pillow on the counter for some reason. They begin laughing since they see themselves in the mirror and think they look silly, so they begin dressing by putting the sweater back on.\",clothes;mirror;shirt,A person undressed in a bathroom. A person puts their shirt back on and leaves the room.,c155 1.20 9.50;c148 18.60 27.60;c096 0.00 4.70,28.12\r\nLGCTV,YA10,Living room,3,5,Yes,A person working on a laptop in a basement stops and begins tidying some clothes.,book;chair;clothes;laptop;shirt,\"a person is sitting in a chair looking at a laptop.  They stand up, put the laptop on the chair, picks up some clothes and starts to fold them.;There is a person sitting in a chair with a laptop.  That same person stands up, shuts the laptop and places in on the chair.  That same person then picks up a shirt off the back of the chair.\",c004 17.00 33.00;c046 10.30 18.50;c047 0.00 20.80;c052 0.00 16.90;c154 14.00 20.50;c059 0.00 19.20;c028 13.00 21.00;c032 0.00 16.00;c000 18.00 33.00,32.42\r\nL0CK7,KQI6,Bedroom,5,3,Yes,A person is standing in the room watching a small television on the shelf.  The person picks up a glass of water from the shelf and sits on the bed.,bed;cup;dish;glass;water,A person is standing a computer. The person is looking at the monitor. The person reaches for a glass and takes a sip. The person sits down on a bed.,c135 27.80 32.00;c106 13.30 20.50;c110 11.60 16.70;c151 26.00 32.00;c118 11.90 26.10,31.29\r\n45Z2A,WG9D,Recreation room / Man cave,6,7,Yes,\"A person awakens on the couch and sits up. The person takes some clothes from a nearby bag, then closes the bag.\",bag;clothes;sofa,\"A person is laying down on a sofa, sits up and begin taking clothes out of a bag.\",c001 5.90 10.00;c122 0.00 3.60;c123 1.10 10.00;c020 1.70 7.30;c021 3.20 8.30;c146 0.00 4.10;c003 5.50 10.00,9.29\r\nNCDE3,1OHU,Kitchen,6,6,Yes,The person is leaving the room. The person is eating by the refrigerator and using a towel to clean the table.,blanket;clothes;food;refridgerator;sandwich;table,A young person holding a blanket and eating something and using the blanket to wipe the table.;A person was holding a blanket while consuming a sandwich.  The person then wiped a table with the blanket.  The person then walked away and smiled.;A person walks into a kitchen eating some food and then walks into a living room,c070 0.00 27.00;c152 5.20 11.80;c013 14.80 20.50;c065 0.00 10.70;c012 13.00 21.50;c156 0.00 10.70;c000 0.00 27.00,26.46\r\nKDK62,YMXV,Home Office / Study (A room in a house used for work),6,4,Yes,\"A person opens the closet, opens it and takes out a towel, holding it they walk to the television and clean the screen.\",door;phone;television;towel;tv monitor,\"The person comes in the room grabs a towel and begins to dust the TV after checking a phone.;There's a person that walks into a small office (maybe bedroom, picks up a phone & places it down on desk, picks up a towel or something and starts wiping off the TV / monitor.\",c033 2.10 32.00;c035 1.90 9.30;c037 17.70 28.60;c008 0.00 4.30;c017 6.60 13.10;c018 3.50 10.80;c038 10.00 20.90,31.21\r\nHA1XJ,1OHU,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,Person looks out door window. Person drinks from cup and laughs. Person pours drink down.,cup;door;window,\"A person is standing next to a sliding door, with a dog on the other side, outdoors. The person smiles at the camera while drinking from a glass, and finally upends the cup.\",c106 1.00 7.60;c107 0.00 5.30;c092 0.00 3.40;c149 4.80 12.80;c152 7.80 13.00,17.75\r\n8C8FI,1OHU,Living room,6,6,Yes,A person is sitting by a window and throwing shoes down the stairs,door;glass;shoe;window,A person is sitting on the stairs with a shoes they go to the window and look out side.;A person flicks a tower.  The person then leaves the room and looks out a window.,c053 3.00 8.00;c090 20.80 29.00;c154 5.80 10.70;c092 17.80 29.00,28.46\r\nI1CUU,ECB2,Bathroom,6,7,Yes,A person is tidying the bathroom and picking up clothes from the floor. They pick up a broom and sweep. They put the broom down and laugh.,broom;clothes;floor,\"A person is folding laundry and then picks up a broom or something and starts moving it around then laughs.;Person picking up clothing from the floor, folding and putting away, and the sweeps the floor with a smile.\",c098 18.20 28.50;c127 18.20 29.70;c001 1.90 17.80;c149 26.30 31.00;c152 26.30 31.00;c004 0.00 17.80;c002 0.00 2.50;c002 4.60 9.10;c000 0.00 7.30;c000 4.80 11.90,30.08\r\nQPX3S,RJOM,Kitchen,6,7,Yes,\"A person looks out the window as they have food cooking on the stove. The person walks over and grabs something out of the pan, eating it.\",food;stove;window,\"A person is looking out the window, then begins to cook some food on the stove.\",c092 0.00 4.20;c062 6.40 11.40;c147 2.80 14.00;c156 6.50 14.00;c061 6.70 13.60,12.50\r\n5G9SV,WG9D,Home Office / Study (A room in a house used for work),6,2,Yes,The person is drinking water while working.  They then pick up a picture and put it on a shelf.,book;chair;cup;dish;picture;shelf,a person drinks something while sitting on a chair and then stands up and puts a picture on a shelf.;someone sitting and drinking with a book on their lap.,c081 6.10 15.00;c106 0.00 6.70;c084 8.80 13.90;c154 5.90 11.30;c026 0.00 11.80;c059 0.00 10.10;c086 8.30 15.00;c117 5.80 12.00;c115 0.00 12.00;c120 1.60 9.20;c083 8.50 12.70;c088 8.80 15.00;c119 2.20 9.40;c118 0.00 6.20;c116 6.00 12.50,13.71\r\n71QKB,Z68L,Kitchen,7,7,Yes,A person eats a sandwich in the kitchen while looking at pictures on a laptop. The person smiles.,food;laptop;sandwich,A person eating a sandwich while standing and working at a laptop. The person then leaves the room.,c052 0.00 30.00;c065 0.00 3.60;c067 0.00 29.90;c156 0.00 3.60,29.46\r\nXZ0KV,D0RU,Living room,6,1,No,A person is taking a basket of laundry to the table.  The person is opening the laptop on the table.,chair;food;laptop;table,Person sitting in a chair at a table eating from the bowl and looking at a laptop;a person eats something and then opens up his laptop and types something,c011 0.00 41.00;c051 0.00 41.00;c059 0.00 41.00;c156 0.00 41.00;c048 7.30 14.90;c061 0.00 41.00;c063 0.00 10.90;c063 10.30 15.90;c052 11.90 24.30;c010 0.00 34.60;c014 11.90 24.30,40.21\r\n1LZ53,6RE8,Bedroom,6,6,Yes,\"A person sitting on a bed stands up, walks over to the glass window to close it.\",bed;cutain;tv;window,\"Person sitting on bed watching TV, gets up, walks to window and begin closing curtains.;A person laying in a bed gets up and fixes a window.\",c135 1.70 13.00;c089 19.20 31.40;c154 7.40 14.70;c090 18.40 29.60,33.42\r\nB4MNI,3H6W,Living room,6,7,Yes,\"A person is pouring a cup of coffee, then sneezing and finally taking medicine while snuggling with a blanket in a living room.\",blanket;bottle;coffee;cup;medicine;pillow;sofa;water,\"A person sits on the couch and pours water from one cup into another. They take a drink of water and then sneeze. Then they get a bottle of medicine from a nearby table and eat some medicine. Then they snuggle with a pillow, and then they get up and leave the room.;The person sits on a couch. The person pours coffee from a cup to another cup. The person sneezes a few times then eats some medicine. The person snuggles with their blanket.\",c108 4.80 11.90;c129 23.80 35.20;c151 0.30 6.10;c123 2.50 8.60;c106 8.40 15.80;c153 18.10 25.30;c078 33.70 43.60;c128 21.70 27.50;c072 33.70 44.00;c154 40.50 45.80;c107 4.80 18.30;c109 11.10 16.70;c110 5.00 16.50,45.08\r\n9NES7,FNK4,Dining room,7,7,Yes,A person is grasping the edge of a table with some dishes and a glass on it in front of them.  The person then is throwing a pillow on a chair.,chair;pillow;table,\"A person leaning on a table in a dining room walks over and gets a pillow, then takes it back to the table and throws it on a chair then smiles.;A person is standing by a table, they then grab a pillow and set it on a chair and smile.\",c077 16.40 23.50;c152 14.70 22.10,28.42\r\nPS29P,KFGP,Stairs,6,6,Yes,A person is running down the stairs holding a broom.  The person sneezes and throws the broom on the floor next to a bag of groceries.,broom;floor;stairs,A person ran down the stairs with a broom and sneezed into his arm.,c098 0.00 12.60;c101 8.30 13.70;c126 8.50 13.70;c150 0.00 8.90;c153 4.80 12.10;c099 9.40 13.90,18.17\r\nRW587,4I2W,Dining room,6,6,Yes,A person accidentally dropped food on the floor while gathering the dishes. That person started laughing non-stop while running toward the far end of the table to get paper towels.,newspaper;table;tissue,\"The person appears to be tidying up various items, including newspaper, on a table. The person walks to the other end of the table to grab a few tissues.\",c012 0.00 14.50;c149 12.10 26.30;c152 9.50 30.00,28.67\r\n8MIK9,EIO2,Living room,6,6,Yes,\"A person is fixing a television. Another person walks in, eating some food, and watches.\",food;tv,A person is installing a TV. Another man is walking around and watching him while eating food.,c061 0.00 4.30;c156 16.50 32.00,30.67\r\nRBC8N,EXQX,Bedroom,6,7,Yes,\"A person is eating as the person looks at their laptop. A person is walking towards him, holding a pillow.\",floor;food;laptop;pillow;table,\"a person is sitting on a floor eating and watching something on a laptop, someone else brings them 2 pillows;A person is sitting down eating food and watching something on their laptop, another person then brings person A a pillow.\",c077 44.50 55.40;c052 0.00 61.00;c156 0.00 61.00;c125 0.00 61.00;c063 0.40 8.60;c061 0.40 28.30;c079 16.40 25.20;c062 2.50 7.70,60.29\r\nBR8B3,1OHU,Living room,6,6,Yes,\"A person is lying on a sofa, smiling while eating a sandwich.\",couch;dish;food;sandwich;sofa,A person is lying on a couch eating a sandwich.;A person is lying on a couch with a dish on their stomach while they eat some food.,c061 19.90 32.00;c122 0.00 32.00;c065 20.00 32.00;c152 12.30 21.10;c156 19.90 32.00;c118 0.00 32.00;c069 19.10 24.60;c067 0.00 5.70;c068 1.90 6.60,30.75\r\nIBJMY,6RE8,Bathroom,6,6,Yes,\"A person walks in bathroom and turns on light, The person closes door and pours water into glass.\",cup;dish;doorway;glass,A person turns on a light and walks into a room and fills a glass with water.,c107 0.00 31.00;c108 0.00 31.00;c097 0.00 6.40;c118 0.00 31.00,30.21\r\n113YU,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person opens a cabinet in their entryway, and removes a pillow. The person places the pillow on a nearby chair, and closes the cabinet.\",cabinet;chair;door;pillow,A person is taking a pillow from a cabinet and placing it on a chiar then closing the door on the cabinet.,c112 19.70 26.90;c113 1.50 6.90;c077 2.90 13.10;c006 20.50 26.40,30.33\r\n0XB7U,2RTW,Kitchen,6,6,Yes,\"A person is reading a book. The person grabs a nearby towel, and sneezes into it. The person then washes their hands.\",book;clothes;hand;sink;soap;towel,\"A person is looking through a book. The person is grabbing a towel and sneezing into it. The person puts the towel down, walks to the sink, and washes their hands.\",c033 10.60 15.10;c036 14.30 19.20;c026 0.00 13.90;c139 21.60 31.00;c035 10.00 19.30;c025 8.80 13.40;c032 0.00 12.60;c153 10.80 17.50;c002 12.60 16.90,30.38\r\nJ27HW,XARO,Dining room,6,7,Yes,A person is sitting in a chair in the dining room looking at their phone.  The person laughs at something on their phone and puts it down to eat some food.,chair;food;phone;table,\"A person sits at a table on their phone, then laughs and takes a bite of food.\",c061 26.20 32.00;c059 0.00 32.00;c015 0.00 29.30;c149 19.80 29.10;c156 26.70 32.00;c011 0.00 32.00;c009 24.90 30.00;c016 0.00 28.90,30.92\r\nWPR8G,YMXV,Bedroom,7,5,Yes,A person is seen taking their camera and looking at it. They begin sneezing as they bend down to tie their shoes.,bed;floor;phone;shoe,\"A person picks up a phone from a bed and starts playing on it. Then they set it back down on the bed and bend down to put their shoes on.;A person is looking at their phone, they then begin putting on some shoes.\",c015 1.80 6.10;c016 2.10 20.10;c055 19.00 26.90;c054 18.00 23.00;c127 17.40 26.90,31.21\r\nE89O3,T7C3,Stairs,7,7,Yes,\"A person walks up the stairs in a towel, dressing. The person walks through a doorway.\",clothes;door;shirt;stairs;towel,A person is walking up the stairs in a towel and starts to get dressed. At the top of the stairs they button up the shirt and open a door to enter a room.;Person walk up the stair putting on clothing with a towel wrapped around the waist,c097 1.50 12.40;c148 8.20 16.50;c000 13.20 22.10;c148 14.40 22.10;c006 26.30 31.00,30.42\r\nUCT5X,ENC8,Bedroom,6,6,Yes,\"A person is lying on a bed and then awakens. They get up, throw some clothes on the bed and walk out through a doorway.\",bed;clothes;doorway,\"There is a person laying down on the bed, that person gets up, and puts some pants on the bed and walks out of the room, the person returns.\",c001 4.50 11.00;c097 8.70 15.40;c134 0.00 9.50;c154 2.80 9.70;c146 0.50 8.60;c004 5.60 11.00,25.71\r\nO52BL,XXN8,Bedroom,7,7,Yes,\"One person gets dressed, then tidies up a desk and puts a laptop in a bag.\",bag;case;clothes;desk;jacket;laptop;phone;table,\"A person is standing up, they put their jacket on.  They take their phone out of their pocket, and put it back in.  They take their laptop and put it in a bag.;A person is sitting at a desk and putting a jacket on. Then they grab their phone and put it in their pocket. Then they grab their laptop and put it in it's case.\",c050 16.70 31.00;c012 16.80 33.00;c148 0.00 20.20;c017 13.50 22.30;c001 0.00 20.20;c049 18.30 29.40;c021 21.80 28.70,31.88\r\nWZY7C,18IT,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person runs into their study, and throws a towel onto the shelf. The person then walks over to a table, where they open a drawer.\",drawer;shelf;towel,\"A person runs through the door with a towel, throws the towel on a shelf, and then searches for an object in a desk drawer.\",c081 0.60 5.70;c033 0.00 4.50;c036 0.50 5.70;c150 0.00 4.40;c034 0.70 5.40,14.75\r\nLWINQ,L4ZP,Living room,6,6,Yes,\"A person begins undressing and wraps himself in a towel. Then the person sits on the sofa, playing with their blanket.\",blanket;clothes;jacket;sofa;towel,Person walks in a room place a towel around the waist then sit on the sofa with blanket over the head.;Someone is removing their jacket and wraps a towel around them and sits on a couch. They then cover themselves with a blanket.,c123 9.80 17.80;c151 6.60 18.30;c000 0.00 27.30;c034 1.30 12.20;c073 12.30 20.60;c155 0.00 6.70;c070 13.10 31.00,29.50\r\nELATN,CO1W,Bathroom,6,7,Yes,A person is holding a sandwich and a dish in their hands as the sneeze in front of a mirror in the bathroom.,dish;food;hand;mirror;plate;sandwich,A person is standing in the bathroom holding a sandwich on a plate. The person is looking in the mirror and sneezes twice into his hand.,c067 0.00 31.00;c096 0.00 29.40;c118 0.00 31.00;c153 1.60 8.80;c061 0.00 31.00,30.25\r\nKFGXC,9PLL,Entryway (A hall that is generally located at the entrance of a house),3,4,Yes,A person is walking through the entryway eating food. They stop in front of a mirror and fix their hair.,dish;food;hair;hallway;mirror;plate,A person is walking down a hallway eating a sandwich and holding a dish. The person looks into a mirror and adjusts their hair.;someone holding a plate and stopping to look into a mirror,c144 15.50 30.50;c062 10.80 17.70;c118 0.00 14.80;c061 0.00 18.90;c096 14.90 32.00;c119 0.00 17.50,31.29\r\nVD0H8,DXDI,Closet / Walk-in closet / Spear closet,7,6,Yes,\"Person A is in a walk-In Closet tidying up the linens.  Seeing a favorite sheet, Person A stops and smiles, sets the sheet into a box and grabs a nearby broom.\",blanket;box;broom;closet;clothes;door;towel,\"A person takes some clothes from a closet and throws them in a box, they then pick up a broom;someone grabbing blanket items in a closet\",c098 21.50 31.00;c100 21.60 31.00;c073 1.30 26.50;c002 1.30 27.10;c037 0.00 25.60;c035 1.80 8.80;c114 0.00 31.00;c036 20.30 25.80,30.04\r\n5KOTU,5UGG,Hallway,6,6,Yes,\"A person grasps a bottle of medicine. The person takes a jacket from the wardrobe, puts it on, and leaves.\",closet;clothes;door;jacket;shoes,\"a person looks in a closet and pulls out a jacket then puts on shoes and leaves;A person is in a hallway they open a door and go in the closet they get a jacket and put it on, then they go out the front door.\",c148 12.40 25.80;c008 1.10 8.30;c002 7.80 18.90;c006 14.70 19.80;c112 14.90 20.60;c113 1.80 7.00,38.21\r\n0QA8P,Z68L,Bathroom,7,7,Yes,The person undressed from all clothes and stood in front of the mirror.  The person then put the clothes and the shoes in the corner.,clothes;corner;mirror;shoe,A person walks into the bathroom and takes off their shoes.  The person then takes off some clothes and fold them.  The person the leaves the clothes in the bathroom.,c155 7.30 28.10;c154 43.80 50.40;c151 36.50 43.40;c057 0.00 9.80;c004 34.20 43.10;c001 38.10 43.60;c054 1.10 9.50;c000 15.30 47.80;c001 42.50 48.30,51.67\r\nL8120,3VLX,Kitchen,6,6,Yes,\"A person is smiling and taking in groceries, then drinking coffee and finally turning doorknob in a pantry.\",bag;cabinet;coffee;cup;dish;door;groceries,\"A person came out into the kitchen holding a bag, then drank a beverage such as a cup of coffee;A person walks in through a door with a bag while holding a cup of coffee, they set the bag down and get another bag and open a cupboard while smiling.\",c020 0.00 29.00;c141 14.70 22.00;c106 18.10 26.10;c020 3.00 11.30;c113 22.70 29.00;c118 3.70 29.00;c022 0.00 29.00;c006 0.00 19.30;c097 26.50 29.00;c008 26.50 29.00;c112 26.50 29.00;c152 26.50 29.00,28.46\r\nB7LO8,WG9D,Laundry room,6,7,Yes,A person picks up clothes off the chair and gets dressed.  The person finds a phone in the pocket and throws it on top of the chair.,chair;clothes;phone,Person picks up jacket. Then the person starts putting on the jacket they picked up from the chair.,c001 2.90 9.70;c148 2.20 19.00;c002 0.00 5.90;c018 14.50 19.00;c015 14.70 19.00,18.17\r\nDRPO3,6RE8,Other,6,5,Yes,The person is drinking a beverage while holding groceries.  They grab the doorknob.,bag;bottle;door;groceries;shelf;table;water,\"A person opens a bottle and drinks water from it, before putting it on a shelf. The person then picks up a bag of groceries, takes some things out, then puts them back in. The person then grabs the doorknob of a nearby door.;This person appears to be in a back room, picks up bottle of water & drinks, places it down on shelf, opens up bag and then starts to open door.\",c020 11.30 32.00;c141 26.20 32.00;c106 0.70 7.00;c081 9.00 13.70;c008 29.30 32.00;c021 13.70 25.90;c023 10.80 15.90;c009 7.90 13.90,31.25\r\n2TBSE,KFGP,Dining room,4,6,Yes,The person was taking a book from the dining room table and laughing at the box of shoes lying on the floor next to the broom.,book;table,\"A person walks up to a desk and picks up a book and flips through it, looks towards the camera and shakes their head and proceeds to walk away. Another person is sitting at the kitchen table.\",c026 4.00 19.10;c030 4.20 9.40;c152 8.40 18.30;c032 5.40 10.70;c025 5.80 10.00;c154 1.80 6.30,21.62\r\n2BFZG,9Y7F,Bedroom,6,5,Yes,\"In the entryway, a person is dressing while holding food. Another person is tidying and picks up a book and a pillow.\",bag;bed;blanket;book;clothes;food;pillow;towel,a person tidies up a bed as another person puts on a shirt while holding something;2 people are in aroom one person is holding a pillow the other is holding a bag the one holding a pillow picked up something from the bed.,c026 9.10 31.00;c076 10.20 31.00;c061 0.00 31.00;c020 0.00 31.00;c148 17.40 31.00;c115 4.20 31.00,30.42\r\nIKZN3,3H6W,Home Office / Study (A room in a house used for work),7,7,Yes,The person sat in the chair and poured himself a drink. The person then turned on the camera and started playing Minecraft.,chair;computer;desk;glass;pitcher;table;water,\"A person sits down in a chair, pours a glass of water, then begins playing a game on the computer.;A person walks into the room carrying a pitcher of water and a glass.  They sit in a chair at a desk and pour some water then set both on the desk.  They play a video game on a computer, then stand up and walk away.\",c059 3.50 33.60;c151 2.60 7.50;c154 29.80 34.80;c009 8.30 13.50;c011 10.00 33.40;c107 3.30 12.10;c109 8.10 13.50;c108 3.60 11.90,34.08\r\nJI3ZF,BYF9,Hallway,6,7,Yes,A person is tidying up clothes on the floor.  The person holds up a towel and takes it with them and leaves.,clothes;door;floor;towel,A person bends down to pick up a clothing item. The person folds the the clothing item. The person picks up another clothing item and folds it. The person picks up a third item and carries it with them to a door. The person exits.,c000 0.00 13.40;c004 10.40 25.00;c033 5.30 14.30;c035 5.70 14.80;c001 15.40 26.00;c127 0.00 18.60;c035 14.60 22.60;c004 0.00 18.60;c002 13.70 27.00;c141 19.60 26.20;c097 21.60 27.00;c008 20.90 27.00,26.00\r\nMMGTX,KFGP,Laundry room,7,7,Yes,A person is holding up clothes for inspection after they have taken them out of a box. The person then begins to dress themselves.,box;clothes,A person takes a shirt out of a box in a laundry room. The person then puts the shirt on and buttons it up.,c000 1.00 11.00;c002 1.00 5.50;c040 0.00 7.00;c044 0.00 5.00;c148 7.20 36.00;c042 2.20 7.00,35.25\r\n3HF45,3H6W,Laundry room,6,7,Yes,A person in their laundry room is taking their clothes and placing them on a desk. They start running around after they are done doing that.,clothes,A person takes clothes out of a dryer.,c002 3.40 9.90;c001 3.00 12.00;c000 3.00 12.00;c150 10.00 29.00,27.62\r\nGHARQ,YA10,Garage,6,7,Yes,\"A person is standing next to a broom, eating from a plate balanced on a pillow.\",broom;dish;food;pillow;sandwich,A person is eating a sandwich on a plate and holding a pillow standing next to a broom.,c076 19.00 25.60;c118 27.10 31.00;c156 9.90 22.70;c065 9.90 23.80;c061 0.00 31.00,30.46\r\n7Y4K6,4OHY,Bedroom,5,7,Yes,\"A person in the bedroom is walking around looking for a book. When they find the book in the cabinet, they start smiling and laughing at how silly of a place to put this book.\",cabinet,A person is checking a cabinet for something than walks to the closet.,c113 19.30 24.90;c112 12.20 18.20,29.83\r\nLC1NU,T7C3,Hallway,7,7,Yes,\"A person is lying on the floor eating a sandwich.  The person gets up and walks down the hallway to turn off the light, then picks up a pile of clothes off the floor.\",clothes;floor;food;light;sandwich,\"Person laying on the floor eating a sandwich who gets up to turn the light off, and then picks up some clothes.\",c000 23.70 39.00;c065 0.00 19.00;c105 18.70 24.40;c156 0.00 19.80;c154 14.10 21.00;c124 0.00 17.90;c004 22.90 39.00;c002 22.10 39.00;c061 0.00 2.80;c061 1.10 13.30;c068 9.90 17.70;c063 0.00 4.50,38.29\r\nHE8TC,C7O9,Pantry,6,6,Yes,A person is tidying the dishes and another person is playing with the vacuum.,bowl;closet/cabinet;dish;food;shelf;vacuum,\"Person #1 knelt by the pantry fixing the vacuum. Person #2 was tidying up items on the pantry shelves.;There is 2 people, 1 is messing with a bowl and food in the pantry, and the other person appears to be working on a vacuum\",c118 1.70 11.50;c136 0.00 32.00;c114 0.00 13.00;c137 20.80 32.00;c082 0.00 13.00,30.58\r\nFHPRK,KFGP,Home Office / Study (A room in a house used for work),1,4,Yes,\"A person is sitting at a table in the office, which he/she is using as a desk, working on writing something.  The person picks up a glass of water and drinks it.\",book;cup;desk;glass;laptop;table;water,A person is holding a pencil and sitting on a chair in front of a desk while flipping through some paper and writing on it. The person then proceeds to pick up a glass of water and have a drink from it.,c011 0.00 31.00;c106 22.80 30.10;c032 0.00 11.70;c051 0.00 3.30;c026 0.00 23.90;c032 0.00 23.80;c115 0.10 23.20;c145 10.50 21.70;c027 0.10 9.30,29.83\r\nDOL47,Z68L,Recreation room / Man cave,7,7,Yes,A person is standing in the recreation room holding a sandwich.  Same person walks over to the refrigerator and opens the door.  Person looks inside the refrigerator and closes the door.,door;food;refrigerator;sandwich,person walks infront of Tv than opens refrigator,c006 19.50 25.40;c143 14.50 20.60;c061 0.00 28.00;c142 19.20 25.10,27.12\r\nIU5TH,QOQ4,Bedroom,6,7,Yes,A person closes their laptop then sits up to grab some food.,bag;chair;food;laptop;sandwich,A person is sitting in a chair working on a laptop and then they close the laptop and grab a bag of food.,c046 6.60 14.20;c063 10.00 17.60;c059 0.00 19.00;c023 11.00 18.60;c021 12.30 19.00;c020 13.50 19.00;c052 0.00 14.50;c069 12.20 19.00;c047 0.00 19.00,18.33\r\nASNER,0KZ7,Garage,5,7,Yes,\"One person runs around the garage with a box, grasping clothes that are strewn around. This person starts sneezing.\",box;clothes;floor,A person runs around their garage picking clothes up off the floor and puts them in a box. The person sneezes several times.,c040 0.00 25.00;c001 0.00 25.00;c150 0.00 25.00;c153 10.40 25.00;c002 0.00 25.00;c127 0.00 14.90;c000 1.00 25.00;c004 0.80 14.60,24.08\r\n13YII,2Q9D,Kitchen,6,7,Yes,A person is putting food in the cabinet and then sneezing in front of the window in the kitchen.,bag;box;cabinet;cup/glass/bottle;door;food;groceries;shelf;window,A person is putting things in a kitchen cupboard. The person sneezes three times. The person walks away.,c112 11.30 18.80;c113 0.00 5.00;c061 0.60 15.70;c062 1.00 16.90;c153 11.40 25.70;c023 7.10 11.50;c107 0.00 5.10;c022 7.50 12.80;c042 8.00 13.90;c008 0.50 4.70;c130 2.00 7.90;c109 0.00 4.20;c063 4.90 10.10;c020 7.30 13.20;c114 0.30 14.30;c110 0.00 4.00;c081 0.00 7.60;c081 4.90 10.50,26.04\r\nJJGEU,PO5L,Bathroom,6,6,Yes,A person in the bathroom is eating some food that is on some dishes. They start pouring some water onto a book that is lying on a desk.,book;cup/glass/bottle;dish;food;sandwich;water,\"A person walks into the bathroom and eats food from a plate, then gets a cup of water from the tap and dumps it on a book.\",c026 20.00 32.00;c118 0.00 17.90;c156 4.20 17.60;c106 15.00 26.00;c061 0.60 16.30;c107 14.00 29.90;c109 21.00 30.00;c067 1.30 16.00;c120 0.20 16.50;c108 14.00 19.90;c065 3.90 14.90;c119 10.80 16.00;c029 19.60 32.00,31.08\r\nYJV7W,1OHU,Recreation room / Man cave,5,6,Yes,A person is standing in a Recreation room / Man cave holding a camera.  The person begins dressing then takes a picture of a light in the room.,clothes;light;phone;picture;shirt,a person puts on a shirt then looks at a light and takes a picture of it;Person putting on shirt  and then turns on the light while looking a camera phone to take a picture of self.,c104 1.80 12.00;c148 9.60 16.60;c087 9.60 24.50;c015 0.00 28.00;c016 0.00 3.10;c016 2.50 8.50,27.12\r\nSSH5I,5LWB,Living room,6,7,Yes,\"A person sits on their sofa, eating some food off of a dish in front of them. They feel a sudden chill and hold a nearby blanket close to their their body.\",blanket;couch;dish;food;sofa;table;television;tv,\"The person is eating while watching tv, and then grabs a blanket and wraps it around themselves to keep warm;The person is sitting on the couch in front of a coffee table.  The person is snacking while watching TV.  The person cuddled up in a fuzzy colorful blanket.\",c118 0.00 13.20;c072 19.00 31.00;c123 0.00 31.00;c156 0.00 13.30;c132 7.10 16.00;c011 0.00 31.00;c063 0.00 5.10,29.75\r\nOIZT9,LWUV,Living room,6,7,Yes,\"In the hallway, a person sneezes and drops groceries. Another person starts laughing at them and takes a picture with a camera.\",bag;door;groceries;phone;picture,A person is walking in the door with groceries. The person puts the groceries on the floor. Another person is looking at a phone.;A person carries some groceries in the door while another person comes on screen and takes a picture of them doing that.,c130 9.80 15.80;c020 6.20 13.80;c087 19.00 26.00;c016 19.00 27.80;c097 6.40 11.40;c015 12.90 30.20;c022 9.10 16.20,30.50\r\nPW16K,ZFCJ,Kitchen,5,7,Yes,\"A person cooks at a stove.  They walk over to the refrigerator, take out a soda and begin drinking.\",cup/glass/bottle;drink;food;refrigerator;stove,A person is doing some cooking on the stove.  The person then walks over to the refrigerator to have a drink.,c142 26.10 33.10;c143 23.00 30.10;c147 0.00 22.10;c106 28.90 42.00,40.58\r\n5JIGM,PO5L,Kitchen,5,7,Yes,\"A person is in a kitchen washing dishes, they then grasp some food on the counter and put it in the refrigerator.\",bottle;cup;dish;door;faucet;food;glass;refrigerator;sink,\"A person enters a room , washes a glass out at the sink. The person turns and goes to the refrigerator and places something in the inside of it. The person than goes out of the room.;A person walked up to the sink, cleaned some dishes and/or glassware present in the sink, and grabbed an item to put back into the refrigerator before walking away\",c119 6.10 21.90;c143 17.60 23.80;c063 19.60 27.60;c111 4.60 23.40;c006 21.50 28.00;c118 2.20 18.40;c121 2.80 16.40;c062 14.70 25.70;c111 7.10 15.90;c008 18.00 25.00,27.92\r\n7KEON,0RNU,Garage,5,6,Yes,A person is holding their homework in the doorway then they put a book on the floor.,book;doorway;floor;homework,A person stands in a doorway and looks at their homework. The person then puts a book on the floor.,c026 0.00 24.50;c028 18.80 25.60;c126 18.90 24.80;c115 0.00 26.00,25.29\r\n1WLKW,9OK1,Dining room,5,5,Yes,One person holding a vacuum cleaner watches a video on a laptop about how to vacuum while eating and dropping crumbs everywhere.,food;laptop;sandwich;vacuum,A person is standing while eating a sandwich. The person is also holding a vacuum and looking at a laptop.;A person is eating a sandwich while holding a vacuum.,c137 0.00 15.00;c051 0.00 15.00;c156 0.00 15.00;c065 0.00 15.00;c153 10.14 15.00;c067 0.00 15.00,14.17\r\n03EW0,XXN8,Recreation room / Man cave,5,7,Yes,A person is throwing a box while standing near a desk.,box,A person stares into the camera and repeatedly tosses a box and catchesit  in front of a fan.,c045 0.00 2.60;c040 0.00 30.90,31.12\r\nE6A0Y,3H6W,Laundry room,6,7,Yes,\"A person stands in the laundry room doorway, then heads over to the washing machine to put something in it while looking at a laptop on a shelf nearby.\",clothes;doorway;head;laptop;refrigerator;shelf;something;washer,Person walks into a room put a piece of clothing in a washer then leaves the room.;The person walked quickly into the laundry area.  The person stopped momentarily and then put some clothes in the washer.,c097 0.00 7.00;c001 5.00 11.00;c000 0.80 9.90;c005 5.90 13.40,15.00\r\nWWVFH,2Q9D,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is sitting in front of a closet snuggling a towel, they then get up and turn off the television.\",blanket;chair;television;towel,A person sitting in a chair rubbing his face on a blanket.The person gets up and turns off the tv and sits back down and start rubbing their face on the blanket again.;A person is sitting in a swivel chair and creepily snuggling with a towel. They get up and turn off a television and then go back to their towel snuggling.,c033 0.70 26.50;c154 22.60 27.60;c059 0.00 26.60;c152 0.00 24.00;c038 0.00 24.00,31.92\r\nY3B48,4I2W,Bedroom,6,6,Yes,A person is sneezing on a mirror and then closing a laptop in a home office / study.,chair;laptop;mirror,one person is in a bedroom in front of a mirror straigtens chair closes laptop;A person sneezes while looking into a mirror. A person then touches a chair and closes a laptop lid,c096 0.00 14.60;c046 14.10 26.10;c153 0.00 12.80,29.46\r\nNQPM5,R1OT,Bathroom,6,5,Yes,\"A person is seen sitting down tieing their shoes. They start pouring water in the sink and wash their hands, then walk through the doorway.\",chair;doorway;faucet;hand;shoe;water,\"There is a person sitting in a chair putting shoes on.  That person then washes their hands off at a faucet, stands up and walks away.;A person is sitting in a chair putting on their shoes. Afterwards, the person washes their hands with water, gets up from the chair, and walks out through the doorway.\",c097 13.00 21.00;c139 6.00 16.60;c059 0.00 16.60;c055 0.00 10.10;c054 0.00 10.20;c154 11.60 16.70,19.96\r\n8BNUT,BYF9,Bedroom,5,6,Yes,Person enters the bedroom and stands next to the light switch for a moment before turning the lights on.  Then person begins pouring soda into the glass on the desk and consumes it.,cup;doorway;drink;light;table;water,\"A person is standing in a doorway and turning on a light.  The person goes to a table and pours a drink and drinks it.;This person appears to walk into a bedroom, stand in door way for a couple seconds, turns light on, walks over to the table and then pours some water into a cup.\",c106 30.80 37.00;c108 24.20 30.90;c110 23.00 28.10;c107 19.90 37.00;c109 24.40 32.70;c104 10.30 17.30,35.50\r\n4HZ3B,ZAWX,Other,,5,Yes,A person is seen with a bag of groceries sitting on the couch. They get up and begin putting groceries on the table.,bag;chair;food;groceries;sofa;table,A person is sitting on a chair holding a bag of groceries. The person stands up and empties the bag onto a table.,c123 0.00 15.50;c009 15.50 32.00;c020 0.00 32.00;c059 0.00 15.90;c063 15.50 32.00;c062 16.20 32.00;c021 14.70 19.50;c154 13.20 18.40,30.58\r\nQ071E,HRH1,Kitchen,6,6,Yes,A person is sitting at a desk snuggling with a blanket on their lap. They are watching a video on a computer and eating some food.,bag;blanket;chair;food;table,A person is sitting at atable with a bag of food and a towel they open the bag and eat some food then they get up leaving the towel;person sat on the chair.sat on the chair and started eating from a packet. left the chair leaving the packet on the table,c070 0.50 27.30;c009 23.00 29.00;c063 3.40 13.00;c011 0.00 25.20;c059 0.00 27.80;c061 5.90 27.70;c021 2.40 10.70,27.67\r\nMBAUA,KQI6,Living room,5,4,Yes,\"A person is in a hallway sitting by a box, they then get up and stand by a light switch before turning it off.\",box;couch;light,\"Woman wearing a purple dress sitting on the couch who suddenly jumps up to shut off the light.;The person was sitting on the couch, then stood up and adjusted the lights.\",,31.21\r\nVQD0Z,WG9D,Bedroom,3,7,Yes,\"One person throws a book on a shelf with a picture on it, then sits with some homework.\",bed;book,\"A person is reading a book in a bed.;This person is in a bedroom. This person throws something on the floor, gets into bed and then opens up a book.\",c026 1.60 9.00;c027 2.50 8.00;c032 2.50 9.00;c151 0.10 6.20;c134 2.40 9.00;c135 2.80 9.00,8.17\r\nLC2T0,BYF9,Hallway,7,7,Yes,\"When one person walks by wearing a towel and sneezing, another person working on a laptop laughs.\",chair;laptop;phone/camera;stairs;towel,The person was sitting on a chair staring at a laptop screen when another person came into view and went up the stairs.,c047 0.00 16.00;c051 0.00 16.00;c016 0.00 16.00;c059 0.00 16.00,15.04\r\nXSRBI,HJJ4,Home Office / Study (A room in a house used for work),4,7,Yes,A person is takes a glass from a box then leaves.,box;chair;cup;desk;glass;table,\"a person grabs something off a desk;A person sitting at a desk takes a glass from a box, then leaves the room.\",c044 0.70 6.40;c110 1.80 8.70;c154 2.50 7.30;c059 0.00 3.20;c011 0.00 3.20,8.62\r\nEOD1J,9PLL,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,Person is leaving his/her coffee and walking towards his/her shoes.,cup;glass;shoe;water,\"A person is standing in a hallway drinking a glass of water. The person sets the glass down and picks up a pair of shoes. They sit down and put start to put the shoes on.;A person is walking down a hall drinking some water from a glass, they then stop and grab a pair of shoes and start putting them on.\",c053 14.40 26.50;c109 1.70 8.30;c054 20.40 25.40;c055 11.90 32.00;c151 20.70 29.40;c107 0.00 8.30;c106 0.00 6.20;c056 13.80 21.30,30.92\r\n0YOXV,CLH3,Kitchen,6,7,Yes,Person is smiling at picture on phone and drinking bottle of water.,cup;glass;phone;water,A person is drinking water from a bottle while looking at their phone and smiling.,c015 0.00 31.00;c106 0.00 31.00;c106 0.00 5.00;c152 2.10 10.00;c016 0.00 31.00;c149 2.40 31.00,30.29\r\nMNS8T,DSOY,Kitchen,7,6,Yes,A person laughs at the food cooking on the stove. The person takes a towel and begins cleaning up the preparation area.,counter;food;rag;stove;table;towel,\"A person is cooking some food on a stove, they then grab a rag and begin tidying up the area around them.;A person is cooking on a stove using a pot and spoon they pick up the towel and clean the counter off.\",c038 10.30 30.00;c147 0.00 14.20;c013 10.50 29.40,28.88\r\nL5I5D,0KZ7,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is laughing in an entryway while holding a pillow and then turns a doorknob.,doorknob;pillow,There is a person standing up and hugging a pillow. That same person then reaches over and touches the doorknob.,c141 16.00 25.00;c078 0.00 25.00;c149 0.00 15.70;c152 0.00 14.40;c076 0.00 25.00,23.71\r\nDANN2,OUKK,Bathroom,5,,No,\"A person is in a bathroom opening the faucet to the sink to wash their hands, after they start watching a television show on their phone.\",doorway;hand;phone;sink;television,\"A person walks into a bathroom, watches a video on their phone, then washes their phone in the sink.\",c139 14.10 27.30;c015 1.20 16.80;c097 0.00 5.00,28.83\r\nC1BON,KFGP,Bathroom,6,7,Yes,A person puts a box on the countertop next to a mirror. They kick off a shoe while playing with their phone.,box;phone;shoe;sink,\"A man carries a box into the bathroom and puts it on the sink, then leans against the sink and begins texting on his phone.;A person carrying a box puts the box on the sink.The person takes their shoes off and looks at their phone leaning against a sink.\",c016 2.20 28.00;c042 0.40 8.60;c057 6.60 19.10;c015 2.80 28.00,26.88\r\nUY08H,1TZV,Closet / Walk-in closet / Spear closet,6,7,Yes,\"One person walks into the closet with a box and starts undressing. Then, this person runs out of the room with a phone.\",box;clothes;phone;shirt,\"A person enters a room, places a box on the floor, takes off her sweater and puts it into the box, checks her phone, and leaves.;A person enters a small room carrying a box. Then the person takes off a long sleeve shirt, looks at a cell phone, and then walks out of the room.\",c040 0.00 2.60;c042 0.00 2.70;c015 0.00 4.00;c155 0.00 3.60;c001 8.60 21.80,22.29\r\nKUBUA,KFGP,Home Office / Study (A room in a house used for work),7,6,Yes,A person places a broom against a doorknob then grasps a laptop and starts to play on it.,broom;doorknob;laptop;table,A person is laying a broom on a doorknob before typing on a laptop.,c099 0.00 6.10;c052 5.20 38.00;c014 5.00 38.00,37.04\r\n9RZ97,T7C3,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is in a office sitting at a desk, they then start working on some homework while taking sips from a cup.\",book;chair;computer;cup;desk;drink;monitor;pad;paper;pen;table,\"A person sitting in a chair at a desk in front of a computer.The person turns opens a book and writes something down the person leans forward and picks up a drink.;Person looking at monitor, turns, looks at book, write on pad with pen, picks up cup, drinks from it, puts it back on floor and continues writing.\",c011 0.00 36.00;c115 0.00 36.00;c106 20.50 36.00;c109 28.10 36.00;c026 0.00 36.00;c032 0.00 36.00;c014 0.00 35.90;c145 0.50 36.00;c107 20.50 31.80;c110 21.00 27.40;c027 0.10 6.60;c059 0.00 36.00,35.42\r\n2Z59F,KFGP,Bedroom,6,7,Yes,A person is working at the desk in the bedroom.  That person is closing their homework and getting up from the chair.,book;chair;desk;homework;paper;table,A person sitting at a desk writing in a journal.,c011 0.00 26.00;c145 0.00 26.00;c059 0.00 26.00;c032 0.00 23.50;c014 0.00 26.00;c154 22.00 26.00;c010 0.00 26.00,25.38\r\n6MCD9,ZSRZ,Kitchen,7,7,Yes,A person is fixing their shoes in the kitchen. The person stands up and grabs some food from the cabinet then begins cooking it.,cabinet;cupboard;food;oven;shoe;spatula,A person standing in the kitchen bends over to remove their shoes and then opens a cupboard and turns on the oven.  They stir the food in the pot on the stove with a spatula.,c112 9.60 15.00;c113 6.30 12.60;c057 0.00 8.00;c147 8.60 23.00;c056 0.00 8.30;c063 7.80 12.50;c062 8.90 13.50;c061 11.30 15.70,21.96\r\n6G96Q,G6WD,Kitchen,3,7,Yes,A person is pouring something into a pot on the stove.  Then a person is taking their shoes off.,floor;food;pan;pot;shoe;something;stove;water,\"A person pours water from a bottle into a pan on a stove, removes shoes, then pours the water from the pan into the sink.;Person standing at stove putting water into a pot decides to take off shoes and then pours the water in the pot into the sink.\",c147 0.00 23.00;c056 20.60 35.10;c057 19.80 35.10;c126 24.00 29.70,40.33\r\n5YGND,YMXV,Bedroom,6,7,Yes,A person is putting a box in the doorway.  The a person is sitting with the box and seeing what is in it.,box;chair;door;stool,Person walk over and open the door move thing around on the floor sit on the chair;A person fidgets with a door before sitting down on a stool.,c151 0.80 6.90;c008 0.00 6.00;c059 17.50 32.00;c154 6.70 13.20,30.58\r\nWA7WD,D0RU,Home Office / Study (A room in a house used for work),7,7,Yes,A person is lying on the floor using their laptop.  They open a lunch bag and take out a sandwich.  They grasp the sandwich with both hands while eating it.,backpack;bag;container;dish;floor;food;laptop;sandwich,\"a person laying on the floor, watching something on their laptop, goes in their bag, pulls out a container, opens it, takes out a sandwich and begins to eat it.\",c051 0.00 32.00;c065 25.30 32.00;c067 21.20 32.00;c124 0.00 20.10;c125 16.10 32.00;c021 14.70 20.90;c156 24.20 32.00;c063 13.80 32.00;c052 0.00 32.00;c061 13.80 32.00;c023 13.80 20.90;c069 13.80 32.00;c118 15.30 24.50;c020 11.50 19.00;c120 14.20 19.60;c119 19.00 25.20,31.46\r\nDQ46N,UD06,Kitchen,6,6,Yes,\"A person sits in a chair in the kitchen. The person stands up to reach a dish in the cabinet, gets the dish, and then leaves.\",cabinet;chair;cup;dish,A person was sitting in a chair in the kitchen. They then got up and rearranged some cups in a cabinet. The person then left the kitchen.,c112 22.40 28.70;c114 6.10 26.70;c059 0.00 6.70;c113 4.40 9.60;c154 2.30 7.60;c110 6.20 11.50;c118 24.70 31.70;c120 4.70 28.70;c119 15.20 26.90,31.04\r\n56PK0,P6LJ,Kitchen,6,6,Yes,A person takes a blanket out of a box.  The person sits on a stool and snuggles with the blanket.  The person puts the blanket into the washing machine.,blanket;box;chair;dishwasher,\"A person is picking a box up off of the floor. The person takes a blanket out form the box. The person folds it up and sits on a chair. The person puts the blanket into a dishwasher.;A person picks up a box and takes a blanket out of it. They sit down in a chair and start snuggling the blanket.  After soiling the blanket it, they load it into their dishwasher.\",c059 23.60 34.80;c040 3.70 16.90;c070 8.70 42.00;c075 2.80 26.70;c154 31.00 37.90;c041 2.60 11.60;c072 13.70 35.70;c151 21.80 26.90;c073 8.10 14.70;c071 35.20 42.70,43.67\r\nM1TZR,P6LJ,Kitchen,6,6,Yes,\"A person sits in their laundry room, eating a sandwich. The person sets their sandwich down, takes a towel from the shelf, and laughs.\",chair;clothes;dish;doorway;food;phone;plate;sandwich;shelf;sink;towel,\"A person holding a plate sits down in a chair in a kitchen, the person then eats a sandwich, then gets up and places the plate on the counter then gets a towel from a cupboard and walks away.;A person in kitchen sits on chair and begins eating, puts dishes in sink then the person stands up and takes a towel out of a cabinet.\",c118 1.40 32.80;c000 30.90 36.40;c065 11.80 26.30;c068 22.30 30.20;c035 27.50 36.20;c118 2.70 8.50;c154 24.90 32.10;c151 2.10 8.50;c067 0.00 33.20;c033 30.20 37.70;c156 10.30 28.70;c059 4.20 30.40;c119 24.00 31.20,37.33\r\nXWBF1,P6LJ,Kitchen,6,6,Yes,A person standing by the doorway is taking clothes out of the hamper and folding them while talking on the phone.  The person notices a stain on a white shirt and walks to the sink and begins pouring bleach on the shirt.,clothes;phone;sink,A person walks into the room talking on their phone.  That same person then starts folding laundry and goes to the sink and does something.,c019 3.60 14.30;c004 4.30 49.20;c004 51.20 70.30;c002 68.40 71.00;c015 68.40 71.00;c001 68.40 71.00,70.42\r\nOBS75,EIO2,Bathroom,4,6,Yes,A person was washing dishes. Another was sitting near the door.,chair;dish;sink,\"A person nods their head before a second person begins to wash their hands. While the other person is washing their hands the first person continues to nod their head and move their hands every few seconds.;A person is sitting on a chair, and the 2nd person is at the sink watching dishes,\",c118 0.00 31.00;c121 0.00 31.00;c059 0.00 31.00,30.25\r\nYFH0D,9Y7F,Bedroom,6,6,Yes,One person is tidying up the bag while another is working on the picture on the wall.,bag;clothes;picture;sofa/couch;wall,A person is sitting on a bed while putting things into a backpack. A second person is standing on a bed while fixing a picture on the wall.,c086 0.00 12.60;c002 2.00 9.50;c123 0.00 32.00;c083 0.00 32.00;c020 0.00 32.00;c088 13.20 21.70;c084 13.10 21.20;c021 0.00 7.10,30.75\r\nT2FSV,UTMU,Living room,5,7,Yes,A person is tidying dirty clothes lying on a couch and then using a vacuum in a living room.,clothes;sofa;vacuum,A person is walking over to a sofa and is folding laundry then continues to vacuum.,c137 23.70 38.00;c004 2.40 26.00,36.62\r\n9SP9P,D0RU,Living room,6,6,Yes,A person sits in a chair while holding a sandwich and starts drinking from a cup.,chair;cup;food;glass;mug;sandwich,A person is sitting in a chair while eating and drinking from a coffee cup.;A person sits in a chair and eats and drinks.,c059 0.00 33.00;c106 5.70 13.00;c067 0.90 33.00;c110 0.10 33.00;c063 0.40 33.00;c069 0.60 5.70;c107 0.00 33.00;c061 0.90 28.30,31.88\r\nPIMO4,4OHY,Recreation room / Man cave,7,5,Yes,\"A person is running into the room holding a pillow. Then, sitting on a chair, the person turns the light on and begins playing on their phone.\",chair;light;phone/camera;pillow,A person ran around in a circle twice holding a pillow and then sat in a chair.,c059 12.30 31.00;c076 0.00 31.00;c150 1.80 10.30;c151 11.20 17.20;c016 28.10 31.00;c015 28.10 31.00,30.04\r\n1SKLG,KQI6,Kitchen,7,7,Yes,One person is smiling with a broom while the other is cooking the groceries.,blanket;broom;floor;food;something;stove;towel,a person holding a blanket is fixing something on the stove and another person comes in to sweep;A person is cooking something on the stove.  Another person starts sweeping the floor with a broom.,c102 19.30 29.20;c152 24.00 31.00;c147 0.00 31.00;c127 19.30 29.20;c033 0.00 31.00,30.42\r\nSZJ09,9Y7F,Bedroom,6,6,Yes,\"A person is working on a table, while a other person is walking by with a book.\",book;chair;doorway;table,\"A person is sitting in a chair reading a book. Another person walks into the room, also holding a book, walks out again.\",c011 0.00 18.10;c032 3.80 17.90;c059 18.70 32.00;c097 15.30 20.10;c027 6.30 11.20;c026 2.60 21.60,30.58\r\nEGPAO,T4PK,Living room,5,7,No,A person is in the man cave lying on the sofa and holding a cup of coffee.,coffee;cup;dish;glass;sofa,\"a person lays on the sofa drinking from a mug and smiles;A person is laying down on a couch drinking from a coffee mug, smiling, moving his leg, and moving his head from side to side.\",c106 0.00 8.50;c107 2.70 11.60;c122 0.00 31.00;c152 14.50 21.40;c118 0.00 31.00,29.96\r\nM79TJ,YA10,Kitchen,7,7,Yes,\"A person takes some dishes, walks over to a box, sits down in front of it, and begins putting the dishes inside.\",box;counter;dish;floor;plates,A person is in their kitchen. They grab dishes from the counter and kneel down to the floor and place the dishes in a box.;This person appears to be in a kitchen. Picks up plates from counter and then places them inside a box.,c118 1.40 21.30;c151 4.90 10.80;c120 0.80 11.20;c119 6.50 21.10;c154 22.80 28.00;c125 6.30 27.70,27.54\r\nPNVRJ,D0RU,Recreation room / Man cave,7,7,Yes,\"A person stands in the doorway to the recreation room, sneezing and grasping a blanket.\",blanket;doorway,\"A person walks out of a room and sneezes, then picks up a blanket while still sneezing then puts the blanket over this persons back and walks away.\",c070 9.60 28.70;c072 9.70 28.30;c073 8.80 15.90;c097 0.00 6.90;c153 0.00 11.90,30.88\r\nUB00R,YA10,Garage,4,6,Yes,A person plays with food on a chair and then drinks medicine.,chair;dish;food;medicine;sandwich,\"A person is sitting in a chair eating a sandwich that they have on a plate, they then grab some medicine and take a sip then stand up.;A person is sitting on a chair holding a dish with a sandwich on it. The person eats the sandwich and drinks some water from a bottle. The person stands up to walk away.\",c061 0.00 16.80;c154 22.00 27.00;c118 0.00 27.00;c156 0.00 15.50,26.46\r\n3OAGK,4OHY,Bedroom,7,7,Yes,A person is taking a towel from a cabinet and closing the doorway.,blanket;cabinet;door;towel,A person removes a towel from the cabinet and then closes the bedroom door.,c035 2.20 8.20;c070 9.40 26.30;c073 3.90 8.90;c006 21.60 30.00;c112 13.80 21.20,29.21\r\nOM5R4,KFGP,Bedroom,5,5,Yes,\"After awakening, the person walked from the bed to their closet to pick out a more comfortable pillow. They snuggled it to test it out.\",bed;closet;door;pillow;shoe;slippers,\"a person is lying in bed then puts on slippers and grabs a towel out of a closet to cuddle with;A person wakes up and gets our of bed. The person then opens closet, takes out a pill and presses his face into it.\",c134 0.00 10.40;c078 18.30 26.00;c008 14.20 21.00;c076 18.00 26.00;c146 5.00 11.00;c154 9.00 15.00;c113 14.00 19.00;c079 15.90 26.00;c055 7.80 14.40;c133 1.80 9.50,25.00\r\nZRXQ1,C7O9,Laundry room,6,6,Yes,A person is standing by the light in the laundry room.  Another person is running to get some clothes to wear from her wardrobe.,ceiling;doorway;light,\"A person is looking at the ceiling, and another person runs out the room.;Person A and person B are looking up at a light. Person A runs out of the room while Person B reaches for the light.\",c150 13.90 20.60;c097 15.20 19.70,31.50\r\nCEPB8,C7O9,Laundry room,6,6,Yes,A person is taking clothes out of the dryer and folding them on the table.  Another person is closing the washing machine in the laundry room.,clothes;cloths;towel;washing machine,\"A person is folding clothes out of a dryer another person comes in and closes the dryer door.;A person is taking cloths out of the washing machine, and then folding them. Then another person walks in and out.\",c034 4.90 9.80;c037 0.90 8.10;c004 8.60 18.00;c002 0.00 5.40;c035 0.00 4.20;c004 0.20 32.00;c005 0.00 32.00;c152 20.40 26.00;c001 0.00 32.00,30.71\r\n5MSZP,C7O9,Laundry room,6,6,Yes,A person is smiling while folding towels. Another person is sitting in a chair eating a sandwich.,chair;clothes;food;sandwich;towel,Person A is looking at their phone while smiling and putting towels away and Person B is eating a sandwich sitting down on a chair.,c065 1.10 7.90;c059 5.50 15.60;c034 22.20 27.30;c152 5.80 17.50;c156 13.50 20.10;c004 0.00 32.00,31.21\r\nU8X15,1OHU,Living room,6,6,Yes,A person is in the doorway of the kitchen taking a picture of a sneezing person with a phone's camera.,camera;phone;picture,A person stands in a room holding a camera.  Another person walks into the room and the first person hands them a camera.  They take the camera and prepare to take a picture while the other person sneezes as they begin to pose for the picture.;A person holding a phone is standing in their living room.  They give their phone to another person who takes a picture as the first person sneezes.,c152 16.40 21.50;c015 10.20 15.70;c153 13.80 20.70;c087 10.30 20.20;c017 2.50 8.40;c016 10.70 20.30,23.12\r\n59X8N,1OHU,Kitchen,6,6,Yes,\"A person in bed clothes is pouring from a cereal box. Some spills on the floor and the person is grasping a broom to sweep. Then, the person is pouring milk, eating breakfast and smiling.\",bowl;box;broom;dish;floor;food;milk,Person pours cereal into a bowl but makes a mess and cleans up the floor with a broom.  Then pours milk into the cereal bowl and eats it.;A person pour cereal into a bowl. They spill some on the floor. They sweep the floor and pour milk on it and eat the cereal.,c127 9.90 24.90;c099 17.00 24.70;c040 0.00 12.10;c156 29.30 38.00;c098 9.20 25.10;c062 0.00 12.30;c063 28.40 33.70;c061 0.00 13.40;c102 11.20 23.30;c062 6.40 12.80;c100 9.00 15.20;c118 0.00 11.30;c118 22.60 28.50,37.25\r\nO8PO3,L4ZP,Hallway,7,7,Yes,\"A person opens a door. Another person hands them a stack of dishes and runs away, laughing.\",dish;doorway,A person hands off some dishes to another person.,c120 1.80 10.00;c150 12.80 18.10;c149 3.10 17.20;c097 2.00 6.50;c097 4.80 9.30,19.88\r\n83XF0,WG9D,Recreation room / Man cave,7,7,Yes,\"A person opens the door, walks in and grabs a pillow and a blanket. The person walks back out, closing the door behind them.\",blanket;door;pillow;towel,\"A person enters a door, picks up a blanket and pillow and leaves through the door.\",c073 1.80 7.40;c008 0.00 3.90;c079 4.10 9.50;c141 0.00 4.50;c071 4.80 13.00;c097 8.10 13.00;c035 2.50 13.00;c070 2.00 13.00,12.00\r\nOUTGB,2Q9D,Kitchen,6,6,Yes,A person is standing by the sink. The person opens the door and reaches for their shoes before sitting and putting them on.,door;floor;shoe;sink,The person walked away from the kitchen to get shoes.  The person put on shoes.  The person tied shoes.,c055 10.60 37.00;c151 8.60 16.90;c125 10.80 37.00,35.88\r\n4J494,PKND,Laundry room,6,7,Yes,A person is taking a pile of clothes from a washing machine. The person tidies the clothes and turns off the light.,clothes;light,A person takes some clothes out of a washing machine and tidies them.  They walk over to a light and turn it off.,c105 25.80 31.00;c000 5.00 31.00;c002 0.10 14.00;c004 9.40 30.30;c002 4.70 30.10,30.38\r\nQ1K00,2RTW,Kitchen,6,6,Yes,\"Person walks into the kitchen.  Person takes off shoes, moves curtain looks out of the window.  Person then starts to wash the dishes in the sink.\",blinds;dish;door;shoe;sink;window,\"A person opens the door, enters the room and takes off their shoes.  They open a window and look outside, then go to the sink and begin washing dishes.;A person enters the room through a doorway and closes the door. Then they kick off their shoes and open the blinds. Then they walk to the sink and wash dishes.\",c092 8.60 15.40;c057 2.60 8.30;c008 0.00 5.70;c090 8.80 14.80;c121 14.30 32.00;c097 0.00 5.20;c118 21.60 32.00,30.79\r\n0M9ZO,2RTW,Kitchen,6,6,Yes,\"Person takes off shoes and starts making a sandwich in the kitchen.  Person begins smiling after finishing sandwich, and then starts tidying up the counter.\",food;refrigerator;sandwich;shoe;sofa/couch,A person is tking off their shoes then taking food out of the refrigerator and making a sandwich. The person then tidies up the kitchen.,c057 0.00 4.80;c066 10.50 17.30;c063 8.80 22.00;c061 7.70 16.30;c053 0.00 3.50;c154 1.70 32.00;c143 6.20 13.30;c123 0.00 6.00;c142 8.60 14.00;c054 0.50 5.20;c062 4.20 9.10;c152 15.60 21.10;c068 15.10 21.00,30.79\r\nANXB8,CCI9,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person is drinking a bottle of water and eating a sandwich as they are heading to exit the house. They take the last bite of the sandwich and put their hand on the doorknob to leave, but suddenly sneeze.\",bottle;door;food;sandwich;water,A person is holding a bottle and eating some food. They take a drink and then walk through the doorway while holding the doorknob from the other side.;a person stands in a doorway eating and drinking water then walks out,c065 0.00 5.20;c106 3.60 14.10;c156 0.00 5.20;c061 0.00 8.50;c097 13.30 22.10;c067 0.00 33.00;c141 13.50 33.00;c008 18.90 23.80;c006 15.10 33.00;c107 0.00 33.00,31.83\r\nUDAQU,0EUL,Hallway,6,6,Yes,A person is sneezing on their sandwich and then throwing it on to a book.,animal;book;floor;food;game;hair;sandwich;sneeze,\"A person is sitting on the floor holding a sandwich. A person then begins to sneeze. A person puts a sandwich on top of a book.;Person sitting on floor rubbing nose, sneezing, touching hair, sneezing multiple times. Person has game in hand looking at it. Person watches animal walk by.;A person is sitting holding a sandwich when they begin to sneeze. They throw the sandwich down on a book.\",c067 0.00 20.60;c153 0.00 12.00;c125 0.00 32.00;c061 0.00 20.20;c068 15.30 20.40,31.12\r\nSLIH4,3H6W,Living room,6,7,Yes,\"A person stands in the living room drinking coffee.  Smiling, they walk over to the doorway and leave, closing the door behind them.\",coffee;cup;door,A person is drinking a cup of coffee when walking out of a doorway and closing the door.,c097 10.80 15.50;c006 13.00 17.90;c106 1.80 8.30;c107 1.70 15.50,17.88\r\nFNPEY,0EUL,Living room,6,6,Yes,A person is snuggling a warm towel while running through a hallway. At the end of the hallway the person hangs their towel onto a light.,blanket;light;towel,\"A person hugged a towel, ran across a room and hung the towel on a lamp, then turned away from it.\",c033 0.00 13.40;c034 8.70 18.00;c150 0.00 7.00;c072 0.00 8.60,18.62\r\nNLM0B,0EUL,Hallway,6,6,Yes,A person is snuggling a pillow and holding a box.,box;floor;pillow,A person is sitting on the floor against a wall they are snuggling a pillow and holding a box and looking in the box.;Someone is hugging a pillow while holding an open box and then they close the box.,c078 0.00 34.00;c125 0.00 34.00;c039 10.60 15.60;c040 0.00 34.00,33.04\r\n2NZ5C,0KZ7,Stairs,6,7,Yes,A person is undressing under the light and then dressing in front of the window on the stairs.,clothes;light;stairs;window,\"A person is standing on some stairs under a light dressing, they then go down and begin dressing by a window.;A person undresses while standing on the stairs. A person stands in front of a window and get dressed.\",c148 15.90 33.00;c000 11.40 23.00;c001 10.80 16.60;c148 11.10 16.70;c155 0.00 14.50;c002 11.90 18.20,31.96\r\nNWFOF,OUKK,Living room,4,7,Yes,\"A person is seen smiling and sitting in a chair in an entryway. After looking out the window for a few seconds, they stand up and begin leaving through a doorway.\",chair;door;window,\"A person sits down in a chair, then turns to look out a window in a door. The person then gets up and walks to the door and goes outside.\",c059 0.00 21.50;c092 7.10 20.90;c097 19.80 26.60;c152 0.00 9.00;c151 0.00 3.80;c141 7.20 21.20;c008 17.40 22.10,29.71\r\nGQYR9,T7C3,Dining room,6,7,Yes,\"One person grasps a camera and works on it, then drinks from a glass.\",camera;chair;cup;glass;phone;table,A person is sitting at a table looking at a camera.  That same person places the camera down and takes a drink from a glass.,c106 25.00 35.00;c015 0.00 27.60;c011 0.00 35.00;c059 0.00 35.00;c016 0.00 27.60,33.92\r\nA1NKP,D0RU,Kitchen,7,7,Yes,\"A person is standing in the kitchen, wrapped in a blanket, drinking a cup of coffee and eating a bowl of soup. The person throw the empty soup can into the trash.\",blanket;coffee;dish;food;glass,\"A man stands, wrapped in a blanket. He is standing over the sink and drinking from a coffee cup.\",c156 11.60 17.60;c107 0.00 32.00;c110 0.00 32.00;c120 13.30 22.00;c106 0.00 32.00;c072 0.00 32.00,30.75\r\nRHVM2,8718,Living room,5,5,Yes,A person is playing on their phone and looking up occasionally and keeps watching out the window.,couch;phone;sofa;window,a person is sitting at the sofa on their phone then looks out a window twice;Person sitting on couch looking on couch who gets up and down to look out the window.,c015 0.00 31.00;c092 7.00 16.70;c123 0.00 31.00;c151 9.10 14.80;c016 0.00 7.00;c154 3.90 9.40,29.96\r\nHWHLG,PO5L,Bedroom,6,6,Yes,A person is in the bedroom tidying up. They stop to look at the window watching as a bird fly's by. They hear the phone ring so they leave the room to go answer it.,blinds;camera;clothes;curtains;shoes;window,\"A person makes tidy clothes on the floor then opens window curtains and looks outside. The person puts an empty hand to an ear, then runs over and turns off the camera.;The person moved clothes and shoes from by the wall, looked out the window then left abruptly because of hearing something.\",c092 7.90 18.00;c150 17.90 24.30;c004 1.80 11.60;c090 7.70 12.80,25.42\r\n6KDQO,JVLO,Living room,6,6,Yes,\"A person is seen standing, drinking coffee. They sit down on the sofa putting the coffee cup down on a table.\",can;chair;cup;food;glass;sofa;window ledge,\"A person is sitting in a chair.  They get up from the chair, grab a can from the window ledge next to them, and then sit down on a sofa.  The person smells the contents of the can three times, gets up, puts the can down in the chair they were originally sitting in, and walks off.;A person picks up a glass from a shelf, sits on a sofa and begins drinking from it, then stand up, puts the glass on a chair and walks away.\",c123 7.00 27.10;c109 18.60 28.60;c154 21.30 27.50;c106 9.90 18.60;c110 2.30 7.40;c151 4.90 10.50;c059 6.70 24.40;c063 2.30 7.10;c061 2.20 28.00;c062 23.50 28.70,29.79\r\nGVHM9,28B0,Laundry room,6,6,Yes,A person is holding their homework then holds a bag of freshly washed laundry.,basket;book;clothes;paper,A person is standing and looking at a paper while they reach down and pick up a full laundry basket. Some of the clothes spill out of the basket as it is pick up.,c002 4.20 12.60;c115 0.00 18.00;c032 0.00 18.00,17.42\r\nXBTN7,3H6W,Recreation room / Man cave,6,7,Yes,A person throws a pile of clothes onto the sofa and looks at themselves in the mirror. The person drinks from a bottle of water.,clothes;cup/glass/bottle;mirror;sofa;towel;water,\"A person walks in and throws clothes on the sofa. The person then sits on the sofa and looks at themselves in a mirror, and drinks from a bottle of water before standing up and leaving.\",c123 6.50 25.30;c106 13.20 21.50;c151 6.30 13.20;c154 18.70 26.20;c003 1.30 9.30;c034 0.00 7.30;c036 0.00 7.20;c096 20.40 27.00;c033 0.20 6.90,25.92\r\nLPJWM,KASL,Laundry room,6,7,Yes,A person is in the laundry room undressing the pillow and laughing at the camera.,camera;clothes;pillow,A person is pulling clothes off of a pillow.,c002 0.70 20.40;c149 9.60 34.00;c152 8.20 16.20;c076 0.70 19.10;c001 0.00 3.20,33.46\r\nGWXD9,UO0Z,Living room,6,7,Yes,\"A person is pouring a cup of coffee, then putting the cup on a table, then doing homework in a living room.\",book;chair;coffee;couch;cup;glass;paper;pencil;sofa;something;table,A person is sitting on a couch. They grab something and pour it in to a cup then put them both down and grab a pencil and start doing work or studying.;The person was sitting on a chair and poured a beverage into a container.  The person then opened a book and began reading it.,c108 0.00 7.00;c117 1.00 11.20;c011 0.00 23.40;c032 0.00 23.30;c123 0.00 24.00;c059 0.00 23.80;c145 7.60 24.00,22.50\r\n29JK6,4I61,Pantry,7,7,Yes,\"A person is standing in their pantry while putting some groceries into the right place. They begin undressing by taking their jacket off, and then they grab a broom and leave the pantry.\",broom;cabinet;clothes;door;groceries;light;shelf;vacuum,\"A person walks into a bathroom, puts groceries on a shelf and then closes the cabinet. They then remove their jacket, pick up a broom, and close the door while leaving.;A person is walking into a pantry and putting groceries away, they then undress while grabbing a broom then walk out and closing the door behind them.\",c130 0.00 12.90;c155 13.00 22.00;c002 13.00 22.00;c006 29.40 35.90;c004 17.70 26.00;c097 0.60 6.00;c001 17.70 26.00;c141 24.10 30.50;c138 21.80 31.70;c081 4.40 13.10;c105 22.90 27.00;c112 24.60 30.00,34.50\r\n186EF,DXDI,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,A person standing with a broom smiles as the person begins removing clothes.,broom;clothes;jacket;shirt,\"The person is holding a broom then takes a jacket off before tossing it into another room and starting to take off a shirt.;A person holds a broom, then begins to undress.\",c098 0.00 7.90;c152 0.00 18.00;c155 3.30 18.00;c099 2.80 8.10;c001 11.30 16.00,16.67\r\n3C8OG,R1OT,Home Office / Study (A room in a house used for work),7,6,Yes,A person is drinking wine out of a box and then taking a book out of a bag in the home office / study.,bag;book;bottle;chair;desk;food;laptop;table,A person sitting in a chair uses a laptop. They take a bottle and drink something. They then take a book from their bag and open it.;A person is working on a laptop and then takes a drink. The person the opens a bag and pulls out a book and opens it.,c026 24.10 31.00;c052 0.00 4.70;c011 0.00 4.00;c021 18.60 29.20;c027 24.70 31.00;c009 14.50 23.00;c059 0.00 31.00;c110 0.70 5.60;c115 23.50 31.00;c051 0.00 4.40;c023 18.90 23.50;c014 0.60 14.30;c061 2.80 16.60;c106 7.50 13.00,29.96\r\n3LFV6,1OHU,Living room,6,6,Yes,\"A person is sitting in the doorway to their study. The person stands up, walks to the corner, and retrieves a towel.\",blanket;corner;doorway;floor;towel,\"After sitting on the floor and playing a video game, this person gets up and picks up a towel.;Person is sitting on the floor, the person begins to start looking around, then the person gets up and grabs a blanket off the floor\",c154 18.00 26.20;c125 0.00 21.90;c037 24.30 31.00;c035 24.30 31.00;c033 24.30 31.00,29.62\r\nHZ3AM,18IT,Other,6,6,Yes,Person is cooking as another person is grasping a mirror by the sink.,food;laptop;mirror;pot;towel,\"A person is looking at a laptop, while another person is looking in a mirror.;someone cooking and watching a laptop while someone is cleaning a mirror.\",c147 0.00 42.00;c051 0.00 42.00;c095 10.10 25.20;c038 10.10 25.20,40.96\r\nGCTH8,DXDI,Garage,7,6,Yes,A person drinks some coffee as the work on a sink in the garage.,coffee mug;cup;faucet;sink;water,\"A person is standing at a sink and drinking from a coffee mug.  They are adjusting and/or testing the sink to by inspecting it, and testing the water flow.;The person is turning the water on and off several times. They also look at the sink and look like they are cleaning it. The whole time they are doing this they are drinking something.\",c106 0.70 7.30;c151 15.90 21.80;c154 20.30 27.50,30.08\r\n0JHMW,HJJ4,Bathroom,5,7,Yes,A person is drinking water while washing pillows in the doorway,cup;dish;pillow;water,\"A person is drinking water from a glass. The person puts the glass down, and wipes a pillow with a towel.\",c106 0.00 8.40;c076 6.60 17.00;c109 4.30 9.20;c119 0.00 9.50;c079 6.70 17.00,16.25\r\n9M5UE,D0RU,Living room,5,7,Yes,A person is playing with their phone in the living room. The person picks up a cup of coffee and drinks from it.,chair;chiar;coffee;cup;dish;phone;table,A person is sitting on a chair drinking a cup of coffee while looking at hteir phone.,c015 0.00 32.00;c016 0.00 32.00;c106 11.10 32.00;c011 0.00 32.00;c118 9.20 32.00;c109 14.30 19.40;c059 0.00 32.00;c009 8.10 12.90;c120 11.50 16.90;c119 21.00 25.60;c107 11.10 16.80,31.08\r\nH5V2Y,2RTW,Living room,6,6,Yes,\"In the living room, the person was eating a sandwich and drinking coffee.  The other person was running to grab their homework which was dropped in the doorway.\",chair;cup;food;sandwich;sofa;table,A person is eating a sandwich and drinking a cup of coffee.;A person is sitting on a sofa  eating a sandwich from a plate and drinking from a cup that are on a table.,c156 3.30 13.70;c106 3.50 13.90;c065 0.00 31.00;c156 0.00 31.00;c011 0.00 31.00;c059 0.00 31.00;c009 8.00 14.00,30.46\r\nWA3CG,I12L,Bathroom,7,7,Yes,Person A is in a bathroom snuggling with a stuff animal.  Person A sneezes and grasps a bottle of medicine from the medicine cabinet and reaches for the doorknob to leave.,cabinet;light,A person not fully in view enters holding something and opens a cabinet.,c113 5.40 13.40;c105 11.40 15.60;c112 9.70 14.30,17.12\r\n5Q6N6,ATJI,Bathroom,5,7,Yes,\"A person is standing in front of their mirror with a camera, smiling as they take pictures of themselves.\",camera;mirror;phone;picture,A person walks into a bathroom and looks at themselves in the mirror while taking a picture of themselves.,c087 3.50 14.90;c015 3.60 20.60;c094 2.40 17.70;c096 3.20 21.60;c152 2.60 19.60;c016 2.60 20.20,22.75\r\nR74DE,T7C3,Dining room,6,6,Yes,A person is running around with a towel.  The person then starts grasping at a pillow.,blanket;pillow;towel,Person places a towel on his shoulder and paces around the room several times.  Person then throws the towel on the floor and picks up a pillow and hugs it.,c078 20.70 40.90;c079 18.10 24.30;c033 0.00 22.70;c036 18.10 23.30;c074 17.00 22.90;c072 0.00 22.90;c070 0.00 22.70;c071 17.20 22.70,40.46\r\nX3ASU,P6LJ,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is sitting on a chair, smiling, and taking a selfie with a book.\",book;chair;phone;picture;table,\"A person is sitting in a chair reading a book, they then close the book and smile while taking a picture of themselves.;A person walks to a chair, sits down, picks up a book and opens it. The person takes a selfie with a phone, puts the book down, gets up and walks away.\",c025 12.10 17.90;c027 2.10 14.90;c030 2.10 9.40;c059 0.50 5.90;c151 0.30 5.90;c154 27.80 32.80;c015 14.20 31.20;c018 14.10 19.90;c026 2.30 32.60;c017 26.50 31.50;c028 28.60 33.30;c009 25.80 30.70;c010 4.10 32.00;c016 23.70 28.20;c032 26.00 31.20,32.67\r\nOOE32,XXN8,Living room,6,5,Yes,A person grasps a box from the table. The person opens the box and sneezes.,box;table,Person is sitting then grabs box of kleenex off table. Then person is sneezing while grasping kleenex then leaves.,c040 0.70 28.10;c042 23.30 28.60;c043 0.00 3.00;c009 23.30 28.30;c011 0.00 27.10;c153 12.80 18.80;c154 22.80 28.90;c041 3.50 27.00,31.88\r\nJL5O0,28B0,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person stands in an entryway to their home eating a sandwich. The person looks at their phone and begins laughing at a picture on the screen before putting the phone on a table. The person leaves the entryway still smiling about what was on the phone.,doorway;food;phone;picture;sandwich;table,\"A person walked in, and put something on a table.  A cat attempted to intercept him, but failed.\",c009 6.30 11.80;c017 6.40 11.90;c152 4.60 11.90;c061 0.00 19.60;c067 0.00 19.60;c097 1.10 7.70;c065 8.20 14.70,18.50\r\nEAYK6,9Y7F,Dining room,6,6,Yes,A person is laughing on the phone and another person is fixing the camera.,camera;chair;phone,\"Two men, one is seated at a table, looking at his phone and laughing, the man in the blue shirt is standing beind him holding a camera and looking and manipulating it while pacing.;There is a person sitting on a chair playing with a phone. There is another person holding and doing something to a camera.\",c015 0.00 32.00;c016 0.00 32.00;c149 15.60 32.00;c059 0.00 32.00,30.58\r\nKELYK,HJJ4,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person lying by their shoes suddenly awakens and starts vacuuming.,carpet;floor;shoes;vacuum,\"person is lying on the floor on the shoes.  Person startles, stands up, turns on the vacuum and starts vacuuming the floor.\",c146 1.50 13.20;c154 9.90 17.30;c124 0.00 10.30;c137 7.70 22.00,21.50\r\nJC9SA,Z68L,Kitchen,6,7,Yes,The person enters the kitchen and walks to the refrigerator. The person opens the door and gasps and the red juice spilled all over the bottom shelf. The person grabs some paper towels from the table and wipes up the mess in the refrigerator. The person leaves the kitchen after throwing the paper towels in the garbage.,door;food;refrigerator;shelf;table;towel,A person opens the door to their refrigerator and cleans a shelf in it with a moist paper towel from a nearby table.,c082 9.90 20.70;c143 19.30 47.50;c008 17.20 32.10;c035 26.00 33.80;c142 0.00 7.00;c006 8.90 16.50;c033 17.40 24.80;c038 31.20 43.00;c151 21.00 33.50;c063 9.60 36.60;c062 9.60 36.60,47.38\r\nQ6WH2,XXN8,Kitchen,6,6,Yes,A person is sitting while eating food that is on dishes.  Then a person is standing up and picking up a book.,book;dishes;food;sandwich,\"A person is holding a dish and eating food, before putting the dish down and picking up a book and reading it.\",c032 32.80 36.00;c062 33.30 36.00;c065 0.00 27.80;c026 27.40 36.00;c027 29.50 36.00;c061 0.00 28.00,35.25\r\nSBHID,5LWB,Bedroom,5,7,Yes,\"While standing in the entryway, person tried the doorknob to the bedroom. The door was unlocked. Person opened the door and could see another person watching tv while laying in bed. Person in the bedroom was fixing to go to sleep. Person then retreats to the kitchen and grabs a soda out of the refrigerator.\",bed;bottle;door;fridge;pillow;refrigerator;remote;water,\"A person holds a doorknob and opens the door to enter the room. Another person is lying on a bed with a remote.  That person puts the remote down and places a pillow over their head.  The first person walks to the refrigerator, opens it takes a bottle out and drinks from it.;There are two people here. One opens up door and walks into the room. The other person is already in the room laying on the bed and then turns over to go to sleep. The first person walks to kitchen, opens up fridge and gets some water to drink.\",c008 0.70 10.70;c142 29.70 36.90;c134 6.70 27.10;c076 17.70 27.10;c078 18.10 27.10;c141 0.00 8.80;c143 25.40 32.90;c077 17.90 26.30;c006 30.80 37.50;c110 29.70 35.60;c107 31.20 40.00;c097 3.00 8.80;c106 35.10 40.00;c079 18.10 23.20,38.54\r\nEKPAQ,XXN8,Bathroom,4,6,Yes,A person is sneezing by a shelf.  Then a person is grasping at a light switch.,light,A person is standing front of a sink while sneezing.  The person then plays with a light switch.,c153 0.00 13.00,30.12\r\nB7HDN,XKTB,Dining room,6,7,Yes,\"A person eats a sandwich while watching television.  They pause to laugh at something on the screen, then resumes eating.\",food;sandwich,The person is sitting and eating a sandwich. The person starts laughing as he is eating.,c065 15.00 27.00;c067 5.00 31.00;c149 15.00 22.00;c156 15.00 27.00;c152 15.30 26.90;c061 6.00 12.30,30.58\r\nK801K,MV5U,Living room,7,7,Yes,A person is lying on a pillow then opens a bottle of medicine.,bottle;coffee table;couch;medicine;pillow;sofa,A person lays on the couch. They pick up a bottle of medicine from the coffee table and open it.;A person is sleeping on a sofa and then wakes up to open a bottle of medicine,c078 0.00 14.50;c128 12.50 22.70;c122 0.00 34.00;c146 6.10 34.00;c129 9.50 34.00,32.83\r\n9FGB6,OUKK,Pantry,6,7,No,A person holding a bag opens a door to a pantry. They begin grasping at different items on shelves and throwing those items into a bag.,bag;closet/cabinet;door;food;groceries;something,The person is opening the cabinets in a pantry. The person is also putting items from the pantry into a bag.,c008 0.20 9.00;c020 0.00 22.50;c112 0.00 25.00;c130 2.30 22.50;c063 18.50 25.00,24.04\r\nPT0D1,HBVV,Bedroom,6,7,Yes,A person is awakening in the morning in a bedroom. The person turns on a light and picks up a coffee mug from the nightstand and drinks the coffee.,bed;blanket;cup;light;person;pillow;sheet,\"A person is lying down in the bed, waking up, and turns on the light. The person then grabs a cup and drinks a beverage.;someone laying in a bed and turning a light on and getting a drink\",c106 13.90 25.00;c107 13.80 25.00;c104 10.40 17.00;c146 0.00 14.40;c134 0.00 4.70;c078 0.00 4.30;c110 14.20 19.10;c110 14.20 25.00,23.62\r\n5S587,KFGP,Bedroom,6,7,Yes,\"After looking out the window, a person walks to their phone to watch a funny clip sent by a friend.\",curtain;phone;table;window,\"A person opens a curtain and looks outside. Then they pick up a cell phone from a table and start dialing.;A person walks to window, opens it and looks out. The person then walks over to the bed and picks up phone and smiles.\",c015 15.30 31.00;c090 0.00 4.30;c092 0.60 13.40;c152 20.20 26.50;c018 14.10 22.90,30.00\r\nC0LZD,QB52,Recreation room / Man cave,3,7,Yes,\"A person takes an open bottle of medicine from the desk, reads the label, laughs, then closes the bottle with a top.\",chair;desk;medicine;table,There is a person sitting at a desk.  That same person picks up a medicine bottle and puts the lid on it.,c011 0.00 31.00;c009 17.20 22.70;c059 0.00 31.00;c129 0.00 11.20,30.04\r\nIOL8Q,YA10,Bathroom,6,7,Yes,A person is tidying inside a cabinet and pulling things out.  Then a person is throwing a bag out of the room.,bag;cabinet;household items;sink,A person takes items from a cabinet under a sink.;A person is taking items out of the drawer underneath their sink and then placing them back in there,c023 21.20 12.00;c024 20.90 12.00;c114 0.00 12.00,30.38\r\n8HII5,EIO2,Dining room,6,6,Yes,One person was smiling at the television. The other person was playing on the phone.,chair;game;phone,A person sitting in a chair laughing .Another person sitting in a chair holding a game and playing it while laughing.;2 people are sitting on chairs in a room one person is holding a phone and playing a game on it.,c016 0.00 31.00;c149 10.20 31.00;c059 0.00 31.00;c015 0.00 31.00,30.50\r\nMQZKO,6RE8,Bedroom,7,7,Yes,A person is smiling at the camera while lying on the bed.,bed;blanket;eyes,\"Person lying in bed smiling, raises head, open mouth, and rubs eyes.\",c134 0.00 35.10;c152 2.00 35.00;c072 0.00 37.70,36.54\r\nFR063,PO5L,Hallway,6,7,Yes,A person is dressing in the hallway next to a chair then starts walking towards a box of clothes.,box;chair;clothes;floor;shirt,Person walks down the hallway while carrying a shirt. They stop at the end of the hallway and stops at the chair. They turn the shirt right side out and put it on. They walk back down the hallway and pick up a box and carry it away.,c043 20.40 27.40;c148 9.40 21.20;c000 1.80 13.40;c042 22.80 29.00;c001 2.90 9.60;c127 20.60 26.40,28.12\r\n97Y6T,XXN8,Hallway,5,7,Yes,A person sits talking on their phone. They then start closing a wardrobe in the room.,closet/cabinet;door;phone;wardrobe,The person is listening to someone on the phone. They then smile and hang up the phone. They close the closet door and stand up.;A person is talking on a phone and sitting on the ground. they then close a door and get up.,c015 0.00 6.30;c019 0.00 7.40;c154 2.80 22.40;c006 15.50 33.00;c112 24.80 30.70;c018 22.50 33.00;c141 24.80 29.70,31.58\r\n3R95N,KFGP,Laundry room,6,6,Yes,\"A person was standing by a running washing machine. They open the washing machine, throw in a blanket and a pillow case, and start the cycle again.\",blanket;clothes;pillow,\"A Person is putting a towel and a blanket, that are covered in dirt, into a washer.\",c071 12.20 23.40;c005 6.00 27.00;c001 6.00 27.00,34.17\r\nQI3JB,G6WD,Recreation room / Man cave,5,7,Yes,A person is grasping a sandwich in their chair.  The person is laughing at the TV.,chair;food;sandwich;sofa/couch;television,A person sits on a couch holding a sandwich and watches TV while laughing and pointing.,c067 1.70 46.30;c059 1.40 59.80;c149 2.90 19.70;c123 1.40 60.10;c061 1.40 59.20;c154 0.00 3.20;c132 1.70 60.40,61.08\r\n6AJX0,4I61,Pantry,7,7,Yes,\"A person is running towards their pantry. They pick up some groceries and a pillow that are inside the pantry, but then decide on leaving the pillow in the pantry and then close the door of the pantry.\",bag;closet/cabinet;counter;door;groceries;laptop;light;pillow,\"A person opens a door, grabs a laptop, turns on the light, and closes the door back.;The person walks into a bathroom to put a bag of groceries down and grabs a pillow.\",c006 7.80 13.20;c008 1.10 6.50;c105 6.60 11.00;c022 2.10 7.00;c076 6.00 15.30;c113 0.90 7.10;c112 7.20 13.40;c097 1.50 7.00,20.00\r\nSBG5F,6RE8,Living room,4,7,Yes,\"A person is pouring water into a glass. Then, laughing, the person walks to the table and sits down.\",dish;glass;table;water,\"A person opens a bottle of water and pours it into a glass on a table, then sits in a chair\",c011 23.60 33.00;c151 23.60 33.00;c107 0.10 23.10;c109 18.10 23.70;c108 6.00 16.40;c107 14.10 23.10;c109 6.50 15.90;c120 0.60 4.90,31.92\r\n6LGTT,4I61,Pantry,4,6,Yes,\"I person is walking into the pantry smiling, then they pick up a can of food, and shut the pantry door, turning the doorknob.\",cabinet;door;food;light;medicine;shelf,\"A person walks into a laundry room, smiles, then opens a cabinet and takes some medicine out. They leave and close the door.;A person walked into a pantry to grab a can of food off of a shelf.\",c061 7.90 22.80;c006 15.70 22.20;c113 6.00 10.90;c063 6.70 12.00;c141 15.20 23.10;c152 9.00 16.90;c112 10.40 18.00;c105 14.00 19.10,24.96\r\nYEH3H,QB52,Kitchen,5,5,Yes,A person laughing in the kitchen is pouring water in a glass at the sink.,cup;glass;water;window,A person standing in the kitchen looking out a window takes a drinkl of water;A smiling person pours a glass of water at a sink and takes a drink.,c106 12.30 21.20;c107 12.30 31.00;c108 9.70 14.80;c152 0.00 7.30;c092 5.10 30.90,30.04\r\n60XA3,S053,Home Office / Study (A room in a house used for work),6,6,Yes,A person in a bathroom is laughing while sitting on a chair and fixing their wardrobe.,chair;clothes;shirt,The person in this video is sitting down trying to get their shirt on. They are laughing and having a bit of a hard time getting the shirt on.;Person is sitting down in  a chair laughing. the person is also trying to put a shirt on and button it up while laughing.,c059 0.00 31.00;c149 0.00 29.60;c148 0.00 31.00;c152 0.00 31.00,29.88\r\nDFG9M,S053,Bedroom,6,6,Yes,A person is snuggling under a blanket in the bed before sneezing and going to the bathroom.,bed;blanket;doorway;mirror;shelf,\"A person is lying on a bed covered with a blanket they get up and run into the bathroom and look into the mirror.;A person is laying on a bed under a blanket they sneeze then they run out of the room into the bathroom.;A person was under the covers on a bed, got up and ran to the bathroom and looked in the mirror\",c072 0.00 11.50;c154 9.00 13.00;c134 0.00 12.00;c096 14.00 31.00;c146 5.20 13.10;c097 10.50 15.40;c133 2.90 13.10;c074 8.50 13.80,29.88\r\n4JQKA,S053,Bathroom,6,6,Yes,\"A person undresses in front of a bathroom mirror. They open the mirror to reveal a cabinet, and grab a pill bottle. After holding it in their hand for a moment, the person opens the bottle and takes a pill. They place the bottle back onto the cabinet shelf and close the mirrored door.\",cabinet;clothes;medicine;shelf,\"A person stands and undresses then opens  the  mirrored -door medicine cabinet, removes medicine from a shelf and then takes that medicine and closes the cabinet door.\",c113 8.00 15.00;c155 2.80 12.00;c129 13.00 30.00;c112 28.60 33.90;c128 12.30 32.30,32.54\r\nFKAGD,PKND,Bedroom,7,7,Yes,A person is grasping a book with a sandwich in their hand and another person is throwing a picture on the floor.,bed;book;food;sandwich,There are two people standing in a bedroom. One throws something on the bed while standing still. The other is eating a sandwich while looking at a book / magazine.;A couple of people in a bed room with books .One throws the book to the bed and stands and grins.The other person is pacing back and forth with a book and eating food with a book open,c026 10.00 33.00;c029 10.50 33.00;c032 17.80 25.20;c067 13.60 22.70;c061 13.50 23.00;c028 4.30 9.30;c031 4.30 10.10;c065 0.00 6.30;c156 13.80 21.00;c115 0.00 32.00,31.58\r\nSCHOY,3H6W,Bathroom,7,7,Yes,\"A person is undressing in the bathroom. They take a drink from a glass, and wash the glass. They turn off the light and leave the room.\",clothes;cup;door;glass;jacket;light,A person takes off their jacket and drinks a glass of water before turning off a light.;A person is taking off their jacket they picked up a glass of water took a drink then dumped the rest out in the sink. then they left the room and turned off the lights.,c105 20.90 26.60;c106 4.40 14.00;c155 0.00 7.30;c001 2.90 8.10;c000 3.00 7.90;c141 22.00 27.20;c097 24.00 29.50;c111 14.40 19.90;c008 22.00 27.70;c110 4.10 16.30;c107 3.90 16.70;c109 11.10 22.00,30.33\r\nXDP02,5LWB,Stairs,5,1,No,\"One person with groceries runs through sneezing, awakening another person with a pillow and a book.\",bed;boo;box;floor;stairs,\"one person is laying down holding a book, another person comes up stairs holding a box and sneezing;The person is grabbing a box while sneezing and places it somewhere, meanwhile the other person, laying on the floor, wakes up.\",c153 2.80 17.00;c146 7.30 13.70;c040 2.70 14.40;c124 0.00 11.30,15.92\r\n1HHP1,0KZ7,Bathroom,6,7,Yes,A person is putting clothes on the floor. Another person is grasping a broom.,broom;clothes;floor;towel,A person holds a broom in a bathroom while another person tosses clothes individually on the floor.,c126 0.00 27.10;c098 0.00 28.00;c003 0.10 27.20;c000 0.00 26.40;c034 0.00 5.30;c001 2.00 26.70;c154 0.00 28.00,27.29\r\n5KZLW,9Y7F,Recreation room / Man cave,7,7,Yes,One person sits and smiles at another person standing in the doorway with a camera.,camera;chair;doorway;phone,\"Two people are in a room facing each other. One is sitting in a chair laughing. While the other is standing in the doorway on his phone.;A person is sitting in a chair laughing while another person is standing in a doorway, taking pictures of them with a camera.\",c152 9.50 16.50;c059 0.00 15.30;c149 9.60 15.40;c015 0.00 32.00,30.50\r\nZ7O9G,P6LJ,Laundry room,7,7,Yes,\"A person stands in the laundry room, holding a camera. The person sets the camera down, and takes a drink from a glass of water.\",camera;clothes;cup;food;glass;hair;phone;shelf;water,A person standing in their living room is on their camera. They then set their cell phone down and pick up a cup of water to sip.,c106 22.10 30.10;c015 0.00 18.10;c017 0.00 39.00;c107 17.20 37.10;c109 31.20 37.30;c017 20.90 25.80;c016 2.80 22.20;c110 16.60 21.00;c144 4.30 9.70;c061 16.80 23.90;c081 20.90 26.00,38.38\r\nA18EX,ZAWX,Closet / Walk-in closet / Spear closet,5,5,Yes,A person is playing with a sandwich while another person is laughing at a doorknob.,bed;dish;food;plate;sandwich,\"Person #1 sat on their bed holding a plate with a sandwich. Person #2 stood near the bed smiling at person #1.;A person plays with a sandwich on a plate. Another person stands and watches them, laughing.\",c067 0.00 21.80;c066 0.00 21.80;c149 17.30 31.00;c152 18.70 31.00;c135 0.00 23.00;c118 0.00 23.20;c061 0.00 21.60,30.42\r\nMLKK5,BYF9,Home Office / Study (A room in a house used for work),7,7,Yes,Standing in the home office a person sets up a camera. They begin drinking a glass of water that was sitting on a shelf.,camera;cup;glass;phone;shelf;water,A person is holding a camera and placing it on top a speaker. The person then grabs a glass of water and drinks it.,c081 10.20 16.10;c106 21.00 26.00;c107 20.70 26.00;c015 0.00 17.90;c017 12.60 18.40;c110 18.80 26.00;c087 3.00 20.90,24.79\r\n3YY88,OUKK,Laundry room,3,5,Yes,One person washes the window and shelf before walking to the door with the vacuum.,cabinet;door;mirror;shelf;towel;window,\"A person is in the laundry room using a towel to wipe down the mirror and shelves.;Person  opening cabinet to get a cloth, cleans window, and then walks out of the room.\",c091 12.00 22.70;c033 0.00 22.70;c038 3.50 24.70;c113 0.00 13.70;c082 6.70 13.80;c114 0.00 13.80;c112 9.80 15.60,29.42\r\nHWYTN,EIO2,Living room,7,6,Yes,A person is lying on a pillow while another person is running in shoes.,floor;man;pillow,A man laying on the floor and another man running past.;A person is lying on the floor with a pillow while another person runs out the room.,c150 0.00 4.00;c124 0.00 31.00,30.33\r\nYJQO3,2Q9D,Bedroom,7,7,Yes,Person A is getting dressed for work and putting on his tie.  He puts down his phone on the dresser onto a cardboard box.,box;clothes;phone;shelf;table;tie,A person is putting on a tie in the bedroom. The person then takes a phone of their pocket and sets it in a box (on a table).;a person is putting on clothes and puts their phone in a box,c017 22.70 32.80;c009 24.60 33.00;c148 0.00 25.90;c018 23.30 28.00;c081 28.10 32.80;c015 24.00 32.80,31.96\r\n883AD,T7C3,Stairs,7,7,Yes,A person is taking medicine and then snuggling with a blanket on the stairs.,blanket;food;medicine;stairs,\"A person is sitting on stairs, taking some medicine. The person then takes a blanket from their lap, and lies down on the stairs.\",c129 1.10 12.60;c071 20.00 33.50;c072 19.20 34.00;c156 6.30 11.90;c070 12.60 34.00,33.08\r\nXQWLY,L852,Home Office / Study (A room in a house used for work),7,6,Yes,A person is putting a book on a chair.  The person is holding a box of pasta and is putting it on a shelf.,book;box;chair;food;shelf;table,\"A person  is holding 2 books, they put one down on a chair and looks at the other one for a moment then walks over to the book case and puts the other book up;A person places a book on a chair while holding a box of food. They place the box on a shelf.\",c026 0.00 18.00;c028 7.30 12.10;c081 7.30 12.10;c009 5.70 14.10,17.29\r\nWF8WM,PKND,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person watches themselves in the mirror while putting on their shoes. The person smiles.,mirror;shoe,A person is putting on shoes while looking in the mirror. A person then begins to laugh.;Person is looking in the mirror laughing while putting their shoes on.,c094 0.00 7.10;c053 0.00 6.10;c055 0.40 7.10;c152 0.00 7.10;c149 0.00 7.20;c096 0.00 33.00,31.62\r\nHVXXQ,Z755,Dining room,4,7,Yes,A person is taking a sandwich in the dining room.  Another person is laughing and putting dishes on the table.,dish;doorway;sandwich;table,A lady is putting paper plates on the table while a guy picks up a sandwich that was sitting there.,c119 0.00 7.00;c120 0.70 5.70;c069 0.70 5.70;c009 0.00 7.00;c118 0.00 7.00;c152 0.00 6.50;c097 0.00 3.40,5.71\r\nPQ0DQ,9Y7F,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is eating a sandwich while another person is tidying groceries.,bag;bench;chair;floor;food;groceries;plate,\"A person sat on a floor, took some food item from a plastic bag, and placed it on a plate while another person sat on a bench across the room.;A couple of people in a room,one person is sitting on the floor fixing food.The other person is sitting in a chair waiting television and eating food.\",c061 0.00 32.00;c125 0.00 32.00;c062 0.00 32.00;c059 0.00 32.00,30.58\r\n7FNZZ,OUKK,Basement (A room below the ground floor),5,7,Yes,\"A person is tidying up their basement. The person grasps a blanket, folds it, and puts it down on a desk.\",blanket;cover;floor;table,A person sits down on the floor and folds a blanket and puts it on the table.;A person walks in to room gets on the floor and folds a cover and places the cover on a table.The person stands up next to the table.,c075 14.60 28.90;c125 10.80 30.40;c127 11.60 23.50;c009 20.40 29.50;c154 9.20 15.90;c071 20.20 30.40,29.75\r\nAPTS7,KFGP,Laundry room,6,7,Yes,A person is washing items in the laundry room beneath a picture on the wall. They are watching something on a laptop as they do their chore and they laugh at something they're watching.,clothes;laptop;person;washer,\"a person putting clothes into a washer while holding a laptop;A person puts clothes in a washer while holding a laptop. The person shuts the washer, begins looking at the laptop smiling and laughing.\",c051 0.00 32.00;c001 0.00 7.30;c005 1.20 10.40;c047 0.00 12.10;c049 8.50 13.80;c152 9.10 15.90;c004 0.80 9.60;c149 4.30 21.70;c002 0.00 7.10,30.92\r\nQXCUP,KFGP,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person is taking photos with their camera. Then, putting the camera down, the person stands in front of the clothing and begins tidying the garments.\",camera;closet/cabinet;clothes;door;phone;picture;wardrobe,Person walks into the closet began to take picture with a camera more some clothes are then close door.;A person stands in a hallway and takes a few pictures with a camera. The person puts the camera down and puts clothes away in a closet.,c015 0.00 15.30;c001 28.60 38.40;c006 34.40 40.00;c087 0.00 12.40;c001 15.00 22.30;c016 5.50 15.20;c112 33.80 39.70;c017 11.00 19.80;c114 22.00 37.20,38.62\r\nE8468,ZAWX,Living room,6,6,Yes,A person is in their living room fixing a picture on a wall. They grab the doorknob and close the door. They pour a cup of coffee and leave.,coffee;cup;dish;door;picture;wall,\"A person is holding a picture and putting it on the wall. A person then closes the door, and then pours coffee in a cup.\",c006 11.50 20.70;c108 22.10 32.00;c141 13.50 19.30;c086 0.10 12.70;c084 0.00 12.90;c118 22.20 32.00,30.58\r\n24SKP,BYF9,Stairs,4,6,Yes,\"One person is tidying the stairs with a broom. Another person walks by in a towel laughing on the phone, then leaves.\",broom;phone;stairs;towel,A person stands and sweeps stairs while another person walks down in a shower cap while talking on the phone,c019 9.80 23.00;c098 0.00 23.00;c033 10.30 20.10;c102 0.00 23.00,22.12\r\n7ZCXJ,ZAWX,Bedroom,6,6,Yes,\"A person awakens on the floor, snuggling with a blanket. The person stands up and looks in a mirror. The person notices that their clothes are dirty, so they begin undressing and throwing their clothes through the doorway.\",blanket;clothes;doorway;floor;mirror;towel,A person is lying on the floor before getting up and throwing a jacket.,c074 21.20 29.00;c124 0.00 9.20;c154 4.30 14.90;c155 15.70 23.50;c126 22.10 28.40;c038 13.40 18.90;c033 0.00 19.20;c125 5.50 12.60,30.67\r\nLKN3Z,JVLO,Bathroom,5,4,Yes,A person is drinking a soda in front of a mirror then they being to eat a bag of chips at the doorway.,cup;doorway;food;glass;mirror;shelf,A person picks a bottle up off a ledge and takes a drink from it. Then puts it up on a different ledge and starts to  leave the room but turns back.,c061 25.50 35.00;c097 24.30 34.50;c107 10.80 23.60;c096 11.30 25.40;c063 23.50 31.30;c106 7.30 15.50;c109 20.80 29.30;c156 27.50 35.00;c081 21.30 26.90,33.67\r\nQBIOX,YA10,Garage,6,7,Yes,A person is walking around the garage holding a picture.  Same person then picks up a broom and starts running in the garage.,broom;brrom;floor;man;picture;tablet,\"A person is walking around in a garage, holding a framed picture. The person walks back and forth over a broom. The person then picks up the broom and runs out of the room.;A man with a tablet walking in circles and picks up a broom and runs out.\",c098 23.10 31.90;c100 23.10 31.90;c150 25.70 31.90;c084 0.00 31.90;c088 0.00 29.90,30.79\r\nU5KRD,1OHU,Bedroom,6,6,Yes,A person is sneezing while tidying a garage strewn with old clothes. The person then throws the clothes onto a blanket.,bag;clothes;something,\"A person is in a garage. The person is moving things around, picking up a bag of clothes and setting it further away.;A person standing in the middle of an incredibly messy room picks up a bag full of clothing and sets it on the heap of refuse.\",,27.29\r\nDJR5H,1OHU,Living room,6,6,Yes,The person is taking things off of a shelf and throwing them into a box on the floor near the sofa while watching television.,floor;shelf;sofa;television;trash,\"A person is watching television, while throwing something in the trash. A person then sits on the sofa.\",c126 14.40 22.20;c082 2.70 16.90;c123 20.20 31.00;c151 18.80 27.30;c132 0.00 31.00,30.29\r\nGQT29,1OHU,Garage,6,6,Yes,\"A person is tidying some things around the garage and using the vacuum. The person finishes, then begins working on homework.\",book;floor;paper;vacuum,A person is fixing a vacuum and then they take a book off the shelf and they lean against the wall and read the book;A person vacuums the garage then grabs something to read.,c127 6.30 14.10;c136 0.00 6.20;c145 3.60 11.40;c032 17.10 25.90;c030 15.20 23.80;c115 17.90 32.00;c138 0.00 19.10;c117 17.70 32.00,31.25\r\nP4WRI,8718,Bathroom,6,6,Yes,A person in a bathroom watches themselves in a mirror and then open and close the mirror door. Then they wash their hands and dry them on a towel. Then they pick up a bag of groceries on the floor and walk away.,bathroom;hand;mirror;sink;towel,A person washes their hands in the sink while looking in the mirror. Then they dry their hands on a towel.;A man is washing his hands in the bathroom sink and then dries his hands off with a towel.,c096 5.80 18.80;c139 0.50 33.00;c033 25.50 33.00,31.67\r\n320ZB,Q4IF,Living room,4,7,Yes,A person is throwing a blanket on a chair and smiling at the door.,chair;clothes;door;towel,\"A person throws a towel onto a chair and smiles, while standing in a doorway.\",c152 0.70 31.00;c000 0.00 3.00;c033 0.00 3.00;c003 0.00 4.70;c036 0.00 4.20;c033 0.00 31.00,29.67\r\n7J5AA,UTMU,Laundry room,3,6,Yes,A person turns on the light in the laundry room and sits down on a chair. They drink a cup of coffee while watching the washing machine do its work.,chair;coffee;cup;dish;light,A person turns on a light and then sits in a chair while drinking coffee.,c106 5.20 19.10;c104 8.90 17.90;c059 9.20 24.00;c151 14.30 30.30;c118 2.80 32.00,30.75\r\nK0X80,D0RU,Kitchen,6,7,Yes,A person looks into the mirror as they grasp the front door's doorknob. The person opens the door and leaves.,door;mirror,\"A person walked to a mirror.  A person then adjusted themselves.  Having satisfied this need, the person then left, leaving the door open.\",c096 4.20 17.20;c141 2.50 24.20;c008 3.10 8.60;c097 18.50 24.50,30.75\r\nCK0FH,2RTW,Dining room,6,6,Yes,A person in the dining room is smiling at a picture and watching the door.,chair;door;picture;table,\"A person is sitting at a desk smiling at a picture then looking at the door.;A person is sitting at a table, looking at a picture. The person smiles at the picture, then glances up at the door. The person stares at the door, then looks back at the picture.\",c084 0.00 32.00;c011 0.00 32.00;c152 7.50 32.00;c088 0.00 32.00;c059 0.00 32.00,30.54\r\nI7DGO,2RTW,Kitchen,6,6,Yes,A person is washing dishes and then stops to drink medicine,cap;cup;dish;medicine,\"A person does dishes at the sink and takes a shot of medicine.;A person washes dishes in a sink, then opens a bottle of medicine, pours some into a cap and takes a drink of it.\",c129 20.20 32.00;c121 0.00 26.40;c110 23.00 28.50;c108 21.70 28.80;c106 24.70 31.00;c111 0.00 20.70,30.79\r\nNYXJ6,2RTW,Dining room,6,6,Yes,\"A person arrives through the door, puts their bag on the dining room table and removes their materials before sitting on the chair and working on their homework.\",bag;chair;door;floor;homework;paper;table,A person is sitting at the table doing homework. A person then grabs a bag and goes through the door.,c020 10.40 29.00;c059 24.70 37.00;c097 0.00 6.90;c008 1.40 9.60;c145 25.90 37.00;c011 25.60 37.00;c009 12.40 25.80;c009 16.40 21.50;c024 22.70 27.80;c014 25.40 37.00;c126 22.70 27.80;c022 22.70 27.80;c117 20.30 26.90;c115 31.50 36.80;c116 31.00 37.00;c021 12.60 19.70,36.00\r\n4ATDB,YMXV,Bathroom,2,4,Yes,A person grasps a doorknob then turns off a light and leaves.,door;light,someone walking into the bathroom with the light on then walks out into the hallway then turns the light off and goes back into the bathroom,c141 5.70 21.80;c105 13.30 21.80;c104 7.80 24.80;c154 0.00 30.90;c008 6.60 12.50;c097 7.20 12.80,29.96\r\nA3M94,0RNU,Garage,7,6,No,A person standing near a window undresses by removing a winter coat and then pours water into a box.,cabinet;floor;tools;vacuum,This person is kneeling while fixing a vacuum.;A person is kneeling and using some tools to work on a vacuum. They pick the vacuum up and put it in a cabinet.,c136 4.40 40.00;c137 0.00 9.40,38.79\r\nRVWK8,KFGP,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person walks into the closet, laughing and sneezing. The person person takes some medicine from the shelf and takes some.\",closet;door;food;medicine,\"A person walks over to a door, sneezes, opens the door, takes some pills out of a closet and swallows them, closes the door and walks away.\",c129 18.70 24.00;c153 4.40 13.90;c141 10.20 17.40;c113 10.20 17.40;c112 23.40 32.00;c156 14.90 32.00;c006 23.40 29.60;c128 14.90 32.00;c063 14.30 19.30;c008 9.90 17.40;c061 14.80 22.70,31.33\r\n1DL0E,3531,Other,6,6,Yes,A person is sitting in their laundry room on a chair. They are holding a glass of water in one hand and they pull out a camera to take a picture.,camera;chair;cup;glass;phone,Person removes a camera from a case and takes a picture while sitting in a chair and holding a glass.,c107 0.00 32.00;c059 0.00 32.00;c015 13.60 32.00;c016 12.50 32.00;c087 19.70 32.00;c018 3.20 16.70,31.25\r\nTMATS,YA10,Closet / Walk-in closet / Spear closet,4,7,Yes,\"Person is snuggling with pair of shoes, then starts smiling and puts shoes on pillow.\",pillow;shoe,Person is on his knees in the closet with a pair of shoes and a pillow.,c053 0.00 18.10;c054 12.10 17.90;c152 11.00 32.00,30.92\r\n5D351,P6LJ,Bedroom,4,5,Yes,\"A person is washing their shoes as the person sits at their desk. Then, laughing, the person throws the shoes over by the vacuum in the corner.\",chair;desk;shoe;table,\"A person walks into a room, sits down on a chair and takes their shoes off and cleans them. They then throw their shoes on the floor;Someone is sitting down and they remove a shoe and start cleaning it and they do it to their other shoe and then throw the shoes.\",c011 1.00 29.50;c057 3.60 22.00;c151 0.00 5.00;c059 1.10 29.50;c053 4.80 19.30;c058 23.30 29.40;c056 3.00 10.00,29.58\r\n9ILM6,C7O9,Kitchen,6,6,Yes,\"A person is eating a bag of chips and drinking a cup of coffee in the pantry. The person sets down the coffee, grabs a glass of water, and runs out of the room.\",bag;coffee;cup;food,A person opens a bag of food and eats some while holding a cup of coffee.  They put the cup of coffee on the counter and walk out.;Someone is in the pantry of their kitchen eating and drinking something.,c107 0.00 29.10;c020 0.00 28.10;c156 0.00 26.70;c061 0.00 28.10;c109 20.80 26.00;c021 0.00 9.20;c063 26.70 30.00;c062 26.70 30.00;c106 26.70 30.00,28.67\r\n35W7G,3H6W,Bathroom,6,6,Yes,A person is undressing and putting a bathrobe on a chair.  The person is sneezing by the door.,bathroom;clothes;door;shirt,A person stands in a bathroom and removed their robe. They then walk out and stand in front of a door before sneezing many times.;A person walks into a room takes off their shirt leaves the room and stands by a door sneezing.,c155 0.00 11.80;c153 14.10 23.60;c155 6.40 26.00;c001 6.50 12.20;c000 3.10 10.80,25.29\r\nXPE7J,HR43,Bedroom,4,7,Yes,A person is sitting on a blanket while laughing at their clothes.,bed;clothes,\"A person is sitting on a bed, picking up clothes and looking at them before putting them back on the bed.;A person digging through laundry, nodding and smiling at it.\",c000 0.00 37.00;c001 0.00 37.00;c002 0.00 37.00;c135 0.00 37.00;c152 0.00 37.00;c004 0.00 37.00;c149 0.00 37.00,35.71\r\nENDIE,T7C3,Stairs,6,7,Yes,A person holding a sandwich in the doorway is putting groceries down and starts drinking water.,bag;cup/glass/bottle;doorway;floor;groceries;sandwich;water,A person puts down a bag of groceries and drinks from a glass while holding a sandwich.,c067 3.80 33.00;c130 0.40 10.90;c097 0.00 5.70;c020 0.00 7.00;c126 0.30 8.30;c022 0.30 8.30;c106 5.90 16.70;c107 3.80 10.10;c107 12.00 22.70,32.25\r\n9N76L,HR43,Kitchen,5,7,Yes,A person laughs at a picture then drinks liquid from a dish.,dish;food;picture,\"A person is looking at their dish. And then eat it, and put it down.;A person is looking at a picture laughing. A laptop is open on the counter. The person eats food from a container.\",c084 0.00 24.50;c085 0.00 23.20;c118 17.20 37.80;c119 34.00 38.00;c149 0.00 23.20;c156 23.70 36.80;c088 0.00 24.50;c061 17.00 38.00;c152 0.00 24.20,37.21\r\nJX8SN,ZSRZ,Bedroom,6,5,Yes,A person stands and eats something. The person then sweeps at blanket with a broom.,bed;broom;clothes;floor;woman,a woman stands up and starts sweeping some clothes on the floor.;A person is getting up from a bed then grabs a brook and sweeps the floor.,c098 6.10 10.60;c102 7.60 13.00;c154 0.00 3.40;c135 0.00 3.20;c127 6.80 11.70;c004 7.50 12.20;c100 5.90 13.00,12.25\r\nN99GA,3H6W,Living room,7,7,Yes,A person is holding a broom while walking towards some food.,broom,A person enter the room holding a broom. Then they walk out of the room.,c098 4.60 17.90,20.33\r\nQRR1S,XKTB,Living room,6,6,Yes,A person plays with their hair as they look into a mirror.  They begin undressing and put the clothes next to a towel on the sofa.,clothes;hair;mirror;sofa;towel,\"A person is sitting on a couch checking out his hair in a hand mirror.  The person sits forward, takes off his jacket and stands up.\",c096 0.00 13.60;c123 0.00 23.30;c144 0.00 8.30;c155 10.20 22.30;c154 19.20 24.00;c001 13.20 22.20;c093 0.00 13.60,23.29\r\n2GRGY,H8N1,Kitchen,6,5,Yes,Person opens refrigerator grabs sandwich then opens panty and starts pouring juice into a cup.,cup;glass;refrigerator,The person opens a refrigerator and takes out juice and pours it into a glass.,c142 27.40 35.90;c143 0.00 7.90;c108 19.80 28.30,35.92\r\n3UZ88,DYEW,Bedroom,6,7,Yes,A person stands in the doorway. The person turns off the light and leaves.,door;light,\"A person is standing in a doorway breathing they turn off the light clothes the door and leave the room.;A person is standing in a doorway, staring down the hallway. The person turns off the light, and shuts the door.\",c105 23.50 28.00;c006 24.60 30.90;c097 24.40 30.70;c141 24.40 30.70,30.33\r\nXF41L,38MV,Bedroom,6,6,Yes,Person walks into the closet while holding a phone.  Person hangs up the phone then takes off shoes.  Person sits in the closet and makes another call on the phone.,chair;closet;clothes;door;floor;phone;refrigerator;shoe;table,\"A person is talking on a phone and opening a closet door.  The person then takes a chair from the closet, sits on it, puts the phone on a table and takes off their shoes.  Then the person picks up the phone and continues talking.;A person opened a closet while talking on his phone.  The person then took off his shoes, sitting down on a chair he seized from the closet.  The person then continued his telephone conversation.\",c015 21.40 30.80;c059 15.80 40.00;c113 2.20 9.30;c017 15.00 20.10;c054 17.10 24.60;c008 2.10 10.00;c015 0.00 17.80;c019 0.00 20.00;c057 16.30 23.60;c151 14.20 19.40;c018 0.00 20.30;c126 17.30 24.00,38.58\r\nJQHIC,38MV,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person is sitting in a chair in the closet, surrounded by clothes. Another person opens the door to the closet, and is startled to find the first person there.\",closet;clothes;door,A person is opening a closet then taking clothes out when they get scared by the a person hiding in the closet.,c008 7.00 13.40;c000 8.90 22.10;c113 6.60 14.80;c002 12.20 23.50;c001 14.00 22.10;c152 20.40 32.00;c154 4.70 32.00,31.08\r\nVNQJ0,38MV,Closet / Walk-in closet / Spear closet,6,6,Yes,\"One person is sitting in the closet wrapped in a towel, while another is tidying the area with a broom.\",broom;chair;closet/cabinet;clothes;floor;shoe;towel;wardrobe,\"A person is looking through a wardrobe, while another person is cleaning with a broom.;A person is sitting down in their closet naked in a towel and another person comes holding a broom and tidies up the room.\",c053 14.50 21.50;c056 14.30 21.30;c054 14.70 21.50;c058 14.70 21.50;c033 0.00 32.00;c102 11.20 26.80;c127 14.50 27.00;c059 0.00 32.00;c114 0.00 32.00;c004 0.00 32.00,31.42\r\nEED7D,9PLL,Bathroom,3,7,Yes,\"A person is standing in their bathroom on the phone smiling while talking. The person takes a picture of themself with their phone, and takes off their wet shoes before leaving the bathroom\",phone;picture;shoe,\"Person talking on a standing and talking on a telephone, and then takes a picture before taking off shoes and leaving the room.\",c019 0.00 24.70;c058 37.70 50.00;c087 20.40 40.90;c057 36.90 50.00;c016 0.00 3.70;c015 0.00 50.00;c149 10.60 19.20,49.00\r\nD52S5,D0RU,Dining room,5,7,Yes,\"A person is pouring a drink into the cup on their desk. Then, sitting down at the desk, the person reaches behind the person to open the cabinet.\",bottle;cabinet;chair;cup;desk;food;glass;shelf;table,\"A person enters the room and picks up some food off a table and eats it. Then he picks up a bottle of gatorade and holds it, then sets it back on the table. he sits down in a chair and eats some more food and another person enters the room and goes to pick up something off of a bottom shelf.;The person takes a bite and then grabs a drink from a bottle. The person then takes a seat at the table. Another person then comes into the scene.\",c011 19.10 32.30;c151 16.40 23.60;c156 6.20 12.90;c059 16.40 23.60;c106 21.40 33.00;c113 25.20 33.00;c009 4.70 14.50;c107 10.50 25.40,32.00\r\nBMVXJ,PO5L,Kitchen,7,7,Yes,\"A person is in a kitchen grasping something out of the refrigerator, they then smile as they put it down on a table.\",refrigerator;something;table,\"A person walks into a room and opens up the refrigerator.  That same person removes something from the refrigerator, places it on the table, and then leaves the room.\",c142 8.00 15.30;c143 3.80 9.80;c009 13.60 18.40,25.79\r\nNA5F9,ZSRZ,Pantry,6,7,Yes,A person is smiling while putting away groceries. The person picks up a glass of liquid and drinks from it.,cup;glass;groceries,A person is putting things into a closet and then takes a drink from a glass.,c130 0.00 14.90;c106 18.00 24.00,23.46\r\n6BUU6,XXN8,Hallway,4,6,Yes,A person is closing the hallway door grasping the doorknob. The person then begins walking away with a laptop in their hands.,door;hand;laptop,person holding a laptop opens and closes a door,c141 0.00 9.20;c050 5.30 11.80;c006 0.00 3.20;c049 29.00 32.00;c047 29.20 32.00;c047 0.00 12.40,30.88\r\nT7N6A,BYF9,Living room,7,7,Yes,\"Person is tidying up, picking a towel up from the ground. They walk across the room to grab the vacuum.\",blanket;floor;towel;vacuum,A person cleans a sofa and then picks up a towel from the floor. The person next walks to a vacuum and grasps it.,c137 30.90 37.00;c033 14.90 36.00;c035 9.70 19.40;c070 10.90 37.00;c038 0.00 10.80;c075 10.90 37.00;c127 10.90 37.00;c073 10.90 37.00,35.83\r\nY7WEK,ID9V,Living room,6,7,Yes,\"A person is sitting in a chair, looking at an album of pictures. The person closes the photo album.\",book;sofa,\"This person grabs a book, starts flipping through it, then closes it.;A person sits on a chair, reading a book. The person then closes the book.\",c025 24.60 29.20;c026 0.00 29.20;c032 0.00 29.20;c123 0.00 30.00,29.33\r\nFTQRE,25TD,Kitchen,6,7,Yes,\"One person holding homework throws it on a shelf, then starts working with a broom.\",broom;floor;homework;paper,A person is holding theyr homework and then setting it down to sweep the room.,c116 2.60 15.80;c115 0.00 15.30;c098 13.60 31.00;c102 13.60 31.00;c127 14.00 31.00,29.58\r\nNSF4N,1OHU,Kitchen,7,7,Yes,A person opens the refrigerator and takes out some ingredients. The person begins cooking the items on the stove.,food;refrigerator;stove,A person goes the fridge and opens it they take out the milk and cheese they pour the milk in a pan and put the cheese in and cook it on the stove.,c143 2.10 9.00;c147 24.20 37.00;c142 10.90 17.40;c061 11.10 17.20;c062 19.10 24.40;c063 20.40 25.30,35.75\r\nWXTXF,DXDI,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person sitting behind a desk sneezes, then walks to a vacuum by a doorway.\",chair;desk;man;table;vacuum,\"A person is sitting in a chair at a desk. They appear to sneeze or cough. Then, the person stands up and walks away from the desk and turns to look at the vacuum.;a man sitting at a desk and sneezing.\",c011 0.00 15.90;c014 0.00 15.90;c153 5.40 11.90;c154 10.80 16.40;c059 0.00 15.60,20.50\r\n3NE5P,70CN,Kitchen,5,7,Yes,\"A person is cooking food at a stove, then eating, and finally using a camera in a kitchen.\",camera;dish;food;stove,A person is cooking on the stove before taking a selfie wit ha camera.,c147 0.00 10.00;c087 14.80 26.10;c015 12.10 32.00;c118 0.00 4.00;c016 13.60 25.90,30.54\r\n7XBPE,L852,Kitchen,7,1,No,A person smiles as they take a bag from the refrigerator.,bag;cabinets;counter;door;refrigerator,\"A person is standing in the kitchen in front of the refrigerator they open the refrigerator door up and takes out a bag.;This person is standing next to a fridge.  The person opens the door of the fridge and pulls something out, holds it in their hand and continues to stand there.\",c020 3.90 14.00;c143 0.00 6.40;c008 0.00 6.40;c142 4.60 10.20;c023 2.30 8.70,13.04\r\nZRBO7,ZAWX,Living room,5,5,Yes,Person is running to glass table then sits down on chair and starts smiling.,chair;doorway;television,A person walks into a room to sit down and start to watch something funny on TV.;A person sits in a chair and watches television moments later the person laughs.,c059 12.00 17.00;c152 19.00 23.00;c131 20.00 31.00;c151 8.60 17.90;c132 12.80 31.00;c149 19.00 31.00;c097 2.10 7.60,30.25\r\nVOU8V,KFGP,Stairs,7,7,Yes,\"A person is sitting on the stairs, drinking a glass of water. The person pulls a medicine bottle from their pocket.\",cup;dish;glass;phone/camera;water,a person is sitting on stairs drinking water out of a glass. The person then takes out a phone and looks at it.,c106 0.00 10.90;c016 22.10 29.00;c118 0.00 29.00,28.08\r\nY3QYR,YA10,Garage,6,6,Yes,A person holding a broom decides to leave their homework and walk out the door.,book;broom;floor;paper,\"a person is reading something in a garage holding a broom then throws the paper on the ground;A person is standing reading a book in a garage,after finishing the person proceeds to leave the area.\",c098 0.00 17.10;c031 10.20 16.70;c126 10.20 16.80;c032 0.00 14.20;c025 8.40 13.30;c026 0.00 15.10;c028 11.10 15.60,24.08\r\n0IJ8T,KQI6,Bathroom,4,1,No,\"One person is fixing the doorknob and another smiles, putting a book on a shelf and then tidying the shelf.\",doorknob;light;tool;towel,A person turns on a light and uses a tool to fix a doorknob. Another person enters and flails a small towel.;a person messes with a door handle and another person wipes off with a towel,c140 4.10 11.70;c037 15.60 24.30;c033 14.90 32.00,31.17\r\n18CTK,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,One person is laughing running through the entryway with a laptop while another person is leaving with a vacuum.,book;doorway;laptop;vacuum,\"A person comes running through a door holding a laptop and disappears into the kitchen. Afterwards, a second person walks outside carrying a vacuum.\",c137 6.60 16.00;c138 6.10 16.10;c047 0.60 7.80;c150 0.80 8.20;c026 1.80 7.50,26.88\r\nUPYPG,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person holds a box of pictures from a table in the entryway. Another person suddenly comes running through.,box;doorway;picture,\"The person took pictures out of a box, looked at them and put them back. Another person ran through the doorway.;The person pulls a picture out of a box and puts it back. Another person runs through the doorway.\",c150 16.00 21.80;c086 1.10 21.50;c088 1.50 31.00;c150 16.20 31.00;c084 2.60 25.50;c084 1.10 9.80;c083 0.40 6.30;c044 0.00 6.40,30.46\r\nBGKCD,2RTW,Living room,6,6,Yes,\"A person is working on a sofa. Another person walks in with a bag of groceries, closing the door behind them.\",bag;couch;door;groceries;paper;pen;sofa;table,People sitting at table writing another person enter the room with a bag in hand and lend on table;A person is writing something while sitting on the couch. Then another person walks in with a bag.,c123 0.00 35.00;c020 24.50 35.00;c011 0.00 35.00;c145 0.00 35.00;c014 0.00 35.00;c115 1.70 35.00,33.50\r\n3L7Y9,4I2W,Kitchen,7,7,Yes,\"A person sits in the kitchen, wrapped in a towel, sneezing while drinking a cup of coffee.\",chair;coffee;cup;mug;towel,\"The person wearing a towel around his shoulders is sitting in a chair drinking from a mug. After taking a sip from the mug, the person sneezes.\",c033 21.40 28.60;c106 0.00 13.90;c153 10.60 22.90;c059 0.00 30.00,29.25\r\nDK1F7,3VLX,Dining room,6,7,Yes,Person 1 is standing and holding a broom. They then pick up a glass and begin drinking.,broom;cup;glass;table,\"A woman standing in a room holding a broom. She loooks at the broom, then picks up a glass of water off the table and takes a sip.;A person is standing in a dining room inspecting a broom they have in their hand.  They then grab a glass of water on the table, take two drinks, and then put the glass down and walk away.\",c098 0.00 25.00;c106 11.00 24.00;c009 19.90 25.00,24.00\r\n0NVG2,M80J,Bedroom,6,7,Yes,A person sits on the bed and takes their shoes off. The person then begins to eat and drink the food that is on the side table.,bag;bed;chips;cup/glass/bottle;food;shoe;table;water,\"The person was sitting on the bed, took off shoes, took a drink from the bottle of water, then ate a snack from the bag.;Someone is sitting on their bed taking off their shoes. They grab a bottle of water and drink out of it. They then grab a bag of chips and eat some.\",c054 0.00 14.40;c009 15.50 21.30;c061 17.20 26.60;c156 22.60 31.00;c057 0.00 13.60;c135 0.00 31.00;c063 16.70 23.90;c106 10.20 20.70;c023 17.60 23.00;c021 20.10 30.10;c020 19.90 31.00,30.17\r\nGYAR9,T7C3,Bedroom,7,7,Yes,A person is sitting on the bed watching television and grasping a blanket.  The person throws the blanket on the floor and takes a drink of a glass of water that is sitting on the desk.,bed;blanket;clothes;desk;floor;glass;television;water,person sitting on bed watching tv throws closes on floor takes a drink,c126 19.30 30.50;c106 28.40 39.00;c135 0.00 39.00;c074 18.70 29.90;c070 0.00 23.80;c132 0.00 39.00;c107 25.50 39.00;c001 20.00 28.00,37.96\r\nWH1S5,ATJI,Kitchen,6,6,Yes,The person threw the sandwich down with a look of disgust. The person grasped the edge of the sink and spit out their bite.,clothes;food;sandwich;sink,A person is walking into the kitchen eating a sandwich then throwing the sandwich down the sink in disgust.,c065 8.40 25.20;c067 8.10 27.70;c068 23.10 28.80;c156 8.40 25.50;c061 7.50 27.30;c069 6.80 11.50,35.88\r\n25O6O,BYF9,Bedroom,6,7,Yes,\"A person is laughing and tidying, then putting a bottle of medicine on a desk in a bedroom.\",bed;blanket;clothes;medicine;something;towel,\"A person is taking clothes off a bed and folding them. The person is setting the folded clothes on something. The person then smooths out the bed's surface.;Person is tidying up bed, folding blanket and clothes.\",c001 3.40 20.90;c001 11.60 23.00;c075 1.90 12.00;c004 2.10 25.00;c002 0.00 15.80;c037 0.00 11.90;c128 16.60 34.00;c000 11.30 18.40,32.79\r\nYLRVT,6PZN,Bedroom,3,7,Yes,A person is undressing in front of a mirror. The throw some clothes on a bed.,clothes;mirror,A person standing in front of a mirror takes off his hoodie then takes off his shirt while watching his reflection in the mirror.,c096 0.00 32.00;c155 2.70 21.50;c003 10.90 16.10,31.38\r\n56LMQ,XXN8,Pantry,5,6,Yes,A person is opening the pantry door.  Then a person is laughing while getting dirty dishes from in there.,cabinet;dishes;door,\"A person is opening a cabinet and taking dishes out while laughing uncontrollably at themselves.;A person walks into the kitchen, they open a cabinet door and takes a dish out, they turn and smile, they leave the cabinet door open and walks out of the room\",,30.12\r\nWRW7O,2RTW,Kitchen,6,6,Yes,\"A person smiles as they run into the pantry holding a blanket. The person puts some food onto a dish, and runs out.\",blanket;bowl;chair;clothes;coat;dish;food;plate;table,\"A person puts a blanket on the back of a chair, picks up a bowl of food, puts food on a plate and walks away.;A person comes in and takes off jacketand puts it on the back of the chair,then the person proceeds to dish out food into a bowl, and walks away\",c070 1.00 7.00;c118 16.40 21.90;c063 4.20 20.90;c001 1.00 7.00;c009 16.80 21.90;c071 1.30 6.70;c119 16.80 21.40;c062 4.50 20.70;c061 3.70 21.10;c000 0.90 6.30;c150 17.70 26.00,25.38\r\nS1LQF,6RE8,Bedroom,6,7,Yes,One person pours and drinks medicine while watching the door to see if anyone's coming.,bottle;dish;glass;man;medicine;table;water,A man pouring some water out of a bottle and putting into a glass.;Person is standing in bedroom and grabs a pill from a pill bottle. Person opens a bottle of water. Person pours water in glass and drinks it while taking pill.,c106 14.50 22.60;c014 0.00 19.30;c109 31.60 38.00;c108 3.20 14.60;c107 3.00 17.60;c107 10.80 38.00;c009 2.30 7.00;c118 13.20 38.00;c110 3.00 7.60,37.08\r\nKSAU8,3H6W,Laundry room,7,7,Yes,A person grasping a bag leaves the laundry room and turns of the light.,bag;clothes;light,\"A person picking up a bag of clothes ,turns and walks back across the room and turns off the light. The person proceed to leave the room.\",c105 7.80 13.90;c020 0.60 16.80;c023 1.00 8.70;c000 0.80 8.70,16.33\r\nD740L,P6LJ,Living room,4,6,Yes,A person is holding a bag of clothes. The person laughs as they begin to remove clothes from the bag.,bag;clothes;couch;floor,\"Place walks in room grabs bag, hold bag, opens bag, takes clothes out and throws on couch, then throws empty bag on floor.;Someone is in the living room and they pick up a bag of clothes and start emptying it onto the couch.\",c000 3.60 33.00;c002 1.30 10.10;c021 11.60 21.40;c001 14.30 26.60;c020 2.10 31.40;c023 1.20 6.40;c002 14.30 26.60;c150 0.00 5.00;c024 26.40 31.50;c003 15.90 26.80,31.71\r\nD85MK,KQI6,Kitchen,7,7,Yes,A person is holding a book as they lean on the stove. Another person is sitting a plate on a shelf.,book;dish;shelf;stove,A person is reading a book while another person is putting dishes inside of a stove.,c119 6.50 33.00;c032 1.40 33.00;c154 4.90 10.00;c115 1.50 33.00;c120 3.50 7.50;c120 6.80 12.60;c120 12.10 17.70;c118 3.80 11.60;c118 10.00 17.90;c118 20.50 25.80;c081 4.90 12.10;c081 11.30 15.50;c081 16.10 20.60,32.08\r\nXHGV7,LWUV,Pantry,5,7,Yes,A person is tidying a shelf in a pantry. The person is standing on a chair to reach the higher shelves.,cabinet;can;chair;food;shelf,A person opens a cabinet and rearranges some items. The person takes a can of food out of the cabinet and then rearranges a few more items.,c081 9.20 39.60;c082 6.40 40.00;c113 1.00 10.00;c114 0.00 40.00;c061 8.40 40.00;c060 22.30 40.00,39.33\r\nORAT0,3H6W,Living room,5,6,Yes,\"One person throws a book on a table and eats something, then leaves the room with a cup of coffee.\",chair;coffeemug;cup;food;homework;paper;sandwich;table,\"A person puts homework on the table. A person then sits and eats a sandwich. A person then gets a cup and walks away.;Person comes into the dining room and sits at the table, picks up a a sandwich,  picks up a coffee mug, and walks out of the room.\",c010 4.10 12.00;c156 8.00 16.10;c154 4.10 9.10;c059 4.50 12.60;c011 4.50 12.60;c107 18.60 27.20;c151 5.80 11.80;c065 8.80 20.60;c116 4.10 10.40;c061 7.50 21.70,30.62\r\nLDL8D,1TZV,Basement (A room below the ground floor),7,7,Yes,A person is laughing while playing on their phone in their basement while sitting on a pillow. They eat a sandwich while watching a video on a phone.,chair;dresser;food;phone;sandwich;table,A person is sitting on a chair at the table playing on their phone and eating a sandwich.;Person sitting at dresser looking at her phone laughing and eating a sandwich.,c015 0.00 23.00;c065 7.50 23.00;c149 0.00 9.50;c156 7.50 23.00;c059 0.00 23.00;c016 0.00 23.00,21.54\r\nJ0SZG,T7C3,Laundry room,7,5,Yes,\"A person puts a blanket in the washing machine, then opens the door and starts tidying.\",blanket;clothes;door;dryer;washing machine,A person is putting a blanket into a washing machine and clothes into a dryer as the person pauses frequently to push a door open.;A person loads their washer with clothes while occasionally tapping the door to the laundry room open.,c008 8.00 14.40;c071 0.00 9.70;c070 0.00 8.40;c073 0.00 7.80;c001 19.40 31.00;c005 19.40 31.00;c002 20.60 28.70;c000 0.00 9.30,30.25\r\nD6161,5LWB,Living room,6,7,Yes,\"A person is running in their living room while holding a bag. They see some food on the table and pause for a bit, then continue to run.\",bag;doorway;food;table,\"A person runs through a room with a bag, stops briefly to look at some food on the table and then leaves.\",c020 3.90 13.00;c150 4.30 13.00;c097 8.90 13.00,12.29\r\nPXU2P,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,A person is the office was lying on the chair instead of working on the person's homework.,hair;table,\"A person is sitting on a chair. A person then begins to fix their hair.;A man is sitting at a desk, falling asleep with and ignoring the homework on the desk.\",c059 0.00 31.00;c011 0.00 31.00,30.33\r\nV7PGV,HR43,Laundry room,6,7,Yes,\"A person is in a laundry room working on folding a towel by the doorway, they then run out the room as the turn off the light\",doorway;light;towel,\"The person is folding a towel in the laundry room. The person then puts the towel down, turns off the light, and runs out of the room.\",c105 20.90 26.80;c034 19.50 25.10;c033 0.00 23.80;c150 22.80 27.00;c037 0.00 23.30,25.96\r\nYVFBN,4I2W,Stairs,7,7,Yes,\"A person is sitting in a chair at the top of the stairs, eating a sandwich and smiling.\",chair;food;sandwich;stair,\"The person sat on the top of stair holding food,then ate some of the food.;A person is sitting on a chair eating a sandwich, then starts laughing while eating the sandWICH\",c059 0.00 30.00;c065 0.00 30.00;c156 0.00 30.00;c152 18.50 30.00;c061 0.00 30.00;c067 0.00 30.00;c149 13.60 30.00,29.42\r\nSMVKB,YMXV,Bedroom,6,4,Yes,A person is in the garage holding a pillow and standing close to the doorway.  Then the person starts smiling.,closet/cabinet;door;pillow,\"person holding a pillow laughing opens a door;The person is holding a pillow and moving it around playfully. The person appears to be playing around with the pillow. The person is smiling and laughing. The person eventually moves toward the closet, opens the door, and steps halfway inside.\",c076 0.00 32.00;c149 9.00 18.60;c008 16.50 23.60;c079 0.00 3.60;c152 12.90 22.80;c078 1.90 16.20;c113 16.80 22.80;c006 28.40 32.00,31.25\r\n8Z4UY,WG9D,Bathroom,2,6,Yes,The person is grasping medicine. The person washes their hands in the sink.,dish;hand;man;medicine;mirror;sink,The person takes an object from a counter top and begins to run water over the object and washes hands.;a man putting something under running water in the sink.,c139 1.50 11.00;c121 1.90 11.00,9.83\r\nAHL6X,C7O9,Living room,7,7,Yes,Two people are snuggling on the couch and  laughing at the television in the living room when the phone rings.,food;phone;sofa;television,Two people are sitting on the sofa watching television and laughing. One person starts playing on their phone.,c123 0.00 34.00;c016 13.70 34.00;c149 0.00 34.00;c132 0.00 34.00;c061 10.40 34.00;c156 11.10 34.00;c152 0.00 34.00;c131 0.00 34.00;c063 10.40 14.90;c063 15.70 21.20,33.08\r\nOHS4T,YA10,Bathroom,7,7,Yes,\"A person runs into the bathroom and closes the door. The person stands in front of the mirror, then sits down in a chair.\",chair;door;mirror,A person runs into a bathroom and closes a door. The person looks in the mirror. The person then sits on a chair.,c096 4.10 17.10;c059 16.20 31.00;c006 0.40 7.20;c150 0.00 4.70;c141 0.70 7.50;c097 0.00 5.50;c151 14.50 20.90,30.54\r\nSJ6X6,FNK4,Garage,6,7,Yes,A person runs into the garage a throws a book at a pillow.,book;floor;pillow,\"Person  picking up a book in the road, and then runs up the driveway into the garage, throws the book into red pillow over and over again before stopping.\",c031 7.90 12.80;c076 21.90 26.00;c150 1.70 10.30;c126 8.20 23.70,24.71\r\nTHORO,EIO2,Living room,6,7,Yes,The person is sitting down in a chair. They then start running over to pick up a towel off the floor.,chair;floor;towel,the person is sitting in a chair and then they get up and pick up a towel,c127 27.00 32.00;c059 0.00 30.30;c154 22.70 29.00;c033 24.80 32.00;c035 25.90 32.00,30.75\r\nRDHNQ,2Q9D,Garage,3,7,Yes,\"A person turns on the light in the garage, and takes off their shoes, putting them on the ground. They take their phone out of their pocket and begin playing a mobile game before going inside.\",clothes;doorway;game;light;phone;shoe,\"A person turns on a light, walks down some steps and takes off their shoes.\",c104 0.20 5.00;c015 16.30 38.00;c057 4.90 14.20;c016 16.00 38.00;c097 0.00 6.50;c018 23.30 38.00,37.38\r\nKKA4X,HR43,Bedroom,3,5,Yes,One person sits on the edge of the bed eating and laughs while playing at kicking the shoes lined up on the floor.,bed;floor;shoes,\"A person is sitting down on a bed, repeatedly kicking their feet on the floor.\",c135 0.00 25.00,24.38\r\nIX12S,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is holding a broom while another person is grasping a camera.,broom;camera;phone;window,A person walks toward an entryway holding a broom. A second person begins to record the first person on a camera.,c015 16.30 32.00;c092 11.00 16.70;c087 13.40 32.00;c016 13.00 32.00,31.29\r\n2SQ8M,DLI2,Living room,5,7,Yes,\"A person is sitting on the sofa, playing with a towel\",face;sofa;towel,A person is sitting on a sofa and picks up a towel. The person moves the towel around with their hands and rubs it on their face.,c033 0.00 33.00;c035 0.00 4.60;c123 0.00 33.00,32.38\r\n4NIBA,HR43,Bedroom,3,5,Yes,A person is undressing in their bedroom in front of a wardrobe. The person grabs a bag and leaves.,bag;clothes;shirt,\"A person hangs a bag on a hook and then takes their shirt off.  That same person then picks up the bag and walks out the room.;After hanging up a bag, a person removes their shirt before retrieving the bag and leaving the room.\",c020 10.90 20.40;c023 9.30 15.60;c155 1.30 12.80;c001 0.00 21.00;c000 0.00 21.00,21.08\r\nWJ13E,3H6W,Kitchen,6,6,Yes,The person took off their shoes to relax their feet after cooking at the stove all day and fixing their glasses. The person was tired.,floor;food;glasses;pot;screwdriver;shoe;stove,\"A person enters a kitchen, grabs a pot and starts to cook. The person sets the pot aside and then uses a screwdriver to fix a pair of glasses. The person then walks into another room and removes their shoes.\",c057 32.60 44.90;c147 0.00 33.00;c056 32.10 42.30;c126 33.50 40.60;c058 34.50 44.90,47.58\r\n8175C,ID9V,Bedroom,5,5,Yes,A person plays with a towel in the man cave. A person leaves the light on in the man cave and exits the room.,door;towel,A person is grabbing a towel and spinning it around very fast then opening a door and leaving.;A person is tossing a towel around before leaving a room.,c036 0.20 30.50;c008 27.80 33.20;c033 0.20 22.90;c141 6.80 12.10;c097 32.50 37.00,36.04\r\nP14L7,YMXV,Bedroom,4,6,Yes,\"A person is sitting on a sofa looking in a mirror in their bedroom. They drink from a cup, and start undressing.\",bed;clothes;man;mirror;pillow;shirt,\"A person is lying on a bed, then stands up and fixes the pillow.  They walk to a mirror, look in it while undressing, and then hang up the clothes.;a man sitting and then standing up and looking into a mirror and then taking his shirt off.\",c096 5.90 13.40;c155 6.90 28.40;c154 0.00 7.10;c135 0.00 6.20;c002 17.90 27.40;c001 14.50 32.00;c000 14.50 32.00;c001 28.80 32.00;c000 25.40 29.40,30.75\r\nDKR7B,X5XO,Bathroom,7,7,Yes,A person in the bathroom is standing on a chair. They look into the glass mirror and start playing with their hair.,bathtub;hair;light;mirror,\"A person is standing on a chair to replace a light bulb.  Once the light is on, the person fixes their hair in the mirror.;A person is standing on the edge of a bathtub touching a light overhead. The person steps down from the bathtub, and fixes their hair in the mirror.\",c096 2.70 32.00;c144 3.10 32.00;c103 0.00 3.90,31.08\r\nQCAUL,YA10,Dining room,6,7,Yes,A person throws some food on the table then puts their shoes on a chair.,chair;clothes;cup;dish;food;groceries;plate;sandwich;shoe;table,A person puts food on the table and a plate than takes their shoes off and places them in a chair.The person turns the shoes around and walks off.;A person puts a cup and a book on a table. A person then takes off their shoes and puts them on a chair.,c009 2.60 7.80;c054 8.60 19.20;c057 16.40 23.00;c107 2.10 7.10;c056 16.00 20.80;c155 8.40 18.90;c119 3.60 10.00;c130 2.60 10.30;c062 3.80 10.30;c068 3.50 9.10,26.21\r\nRFMRB,YMXV,Bedroom,5,5,Yes,\"One person is on a chair wrapped in a blanket with hair in a towel, drinking and eating.\",bed;blanket;chair;computer;cup;desk;table;water,\"A person is putting a blanket on a chair, and then grabs  a bottle of water and drinks from it.;a man holding a blanket and putting it on a chair and grabbing a bottle of water.\",c070 0.00 10.50;c071 10.10 17.10;c075 11.90 17.40;c106 20.80 26.40;c110 16.90 21.70,31.42\r\nNGXV2,ZAWX,Bedroom,4,6,Yes,\"A person is watching a movie on their laptop. Smiling, the person reaches for a book on top of their wardrobe.\",book;cabinet;chair;laptop,\"A person is sitting in a chair, looking at a laptop. The person stands up and walks to a cabinet. The person opens the cabinet, removes a book, then sits back in the chair before opening the book.\",c026 18.00 32.00;c030 18.00 23.00;c151 14.00 19.00;c059 0.00 17.00;c051 0.00 18.70;c027 28.40 32.00;c032 22.20 32.00;c154 13.90 19.80;c113 17.00 24.30;c112 20.00 26.50;c029 24.10 29.80,31.42\r\nRRFE7,ID9V,Kitchen,7,7,Yes,A person is laughing while cooking on the stove and looking at their phone at the same time.,food;phone;pot;stove,A person in a kitchen cooking over a stove while using a phone and laughing.,c015 8.50 20.10;c149 0.00 7.10;c147 0.00 12.90,23.92\r\nKAKC6,T7C3,Home Office / Study (A room in a house used for work),7,7,Yes,\"In the home office,  a person is working by reading a book. As they hear some noise from outside, they begin closing their book and start drinking from a glass of water on top of their desk.\",book;chair;cup;desk;table;water,person sits at their disk while drinking a glass of water. They seemed to be disturbed by something as this person continuously looks towards the door.;A person is sitting at a desk reading a book they look around and then pick up a glass and take a drink they look around again and then take another drink.,c011 0.00 38.00;c106 18.50 38.00;c107 19.60 38.00;c059 0.00 38.00;c032 0.00 18.40;c025 17.20 22.10;c110 19.90 25.20;c026 0.00 38.00,36.79\r\n5B8M5,ZAWX,Laundry room,7,7,Yes,\"A person sits in a chair in the laundry room, watching their clothes in the dryer. The person is eating food.\",chair;clothes;dish;food,A person is sitting in a chair and eating something. The person then gets up and checks the washing machine.,c059 0.00 32.00;c005 10.00 20.00;c156 0.00 32.00;c151 16.50 23.20;c154 8.80 15.40;c061 0.00 32.00;c118 0.00 32.00,30.71\r\nWJNJJ,8718,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is watching television while playing with a doorknob.,doorknob;television,\"A person is standing in a closet holding a doorknob, they are watching television.\",c132 6.80 12.20;c141 0.90 10.60,27.42\r\nOUBUX,YMXV,Bedroom,4,6,Yes,One person grasps a bag and eats from it while sitting on a chair with a pillow at a desk.,bag;chair;food;pillow,Someone is sitting in a chair.  They place a pillow and a backpack on their lap. Then they eat a snack that was inside the backpack.,c020 4.00 33.00;c022 2.00 7.00;c059 0.00 33.00;c079 0.00 5.00;c021 3.10 9.60;c023 1.30 8.80;c077 0.00 7.40;c156 11.50 33.00;c063 8.80 13.90;c061 8.50 13.60;c062 27.70 33.00,31.71\r\nNWGVT,KQI6,Kitchen,6,7,Yes,One person is fixing coffee to drink.  The other person walks to the sink and puts a glass in it.,coffee;cup;dish;food;pan,A person is heating some liquid and pouring it into a cup to make some coffee.,c108 1.20 13.80;c107 10.60 32.00;c120 0.00 4.60;c121 23.80 32.00;c118 0.00 4.80;c119 8.10 15.40;c110 10.70 22.40;c061 0.00 15.10,30.67\r\n3W6CP,9Y7F,Living room,3,5,Yes,A person is fixing a door while another is smiling at a picture.,door;picture;sofa/couch,A person is fiddling with a door. The camera pans over to two other people regarding a picture.,c088 5.20 32.00;c007 0.00 32.00;c140 14.30 32.00;c123 4.90 32.00;c083 22.30 31.70,30.75\r\nJIR5V,Z68L,Living room,5,5,Yes,A person is pouring medicine into a spoon and the putting something under a blanket in the recreation room / man cave.,bench;blanket;chair;medicine;something;television;towel,\"A person sits down on a bench, opens a container of medicine, pours a spoonful, and then gets up and walks away with the filled spoon.;Person enter the room sat down on a chair began to watch the television then got up and walked out of the room.\",c128 10.30 18.90;c059 3.80 30.50;c151 2.50 8.50;c132 18.20 30.90;c034 0.00 8.00;c154 26.30 31.70;c075 14.30 25.20,30.71\r\nL071S,BYF9,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"One person takes medicine from a shelf and leaves, while another person lies down snuggling a blanket.\",blanket;door;floor;shelf;table,\"A person is laying down with a blanket on the floor. Another person is walking into the room and taking something out of a shelf and opening the door.;Two people are in a room.  person one lays down on the floor and covers themself in a blanket.  Person two walks to a table, picks up some items, and opens a door.\",c070 1.00 26.00;c071 0.00 6.10;c072 2.60 26.00;c008 16.10 23.60;c124 1.70 26.00;c151 0.70 7.90,24.67\r\nE6O95,ZG1V,Bathroom,5,6,Yes,A person walks by a sink in the bathroom and is leaving a coffee on the counter.,counter;cup;mug;sink;table,\"A person grabs a cup from the bathroom, then sets it on the sink.;A person goes to retrieve a mug then places it on a countertop.\",c109 4.60 10.10;c107 3.00 10.20;c009 5.30 10.30,11.12\r\nJZ46A,YMXV,Bedroom,5,6,Yes,\"A person is lying on the floor, watching a movie on their laptop. The person takes a pillow from nearby, and puts it under their head.\",floor;head;laptop;pillow,A person is lying on the floor and watching a video on their laptop. They reach for a pillow to place under their head and continue watching.,c051 0.00 31.00;c124 0.00 31.00;c077 7.30 17.40;c079 7.60 17.40,29.58\r\nIBNKL,UO0Z,Kitchen,5,7,Yes,A person is cooking at a stove. They take an item from a shelf and set it on the counter. They tidy the counter and continue cooking.,cabinet;cup;dish;food;plate;shelf;something;stove;table,There is a person cookingon the stove.  That person opens a cabinet and takes something off of a shelf.  That same person then puts some dishes in the sink.;A person is cooking on the stove when they reach into the cabinet to grab some salt.The person then reaches for a cup of water and drinks it before setting the cup back on the table. The person then picks up a plate from the table and moves it into the cupboard above.,c081 11.80 19.10;c009 3.50 10.20;c109 3.40 10.20;c119 6.80 13.50;c147 0.00 7.50;c012 6.30 21.10;c119 15.00 20.00;c113 4.10 10.70;c114 14.20 20.40;c110 4.10 11.00;c118 13.30 21.10;c120 13.30 19.40;c112 6.60 11.30;c106 19.80 25.10,27.58\r\n5HJ2H,EA2K,Stairs,7,7,Yes,A person walks up their stairs holding a sandwich and a phone. The person starts tidying up the stairs.,bag;floor;food;phone;sandwich;shoe,\"A person tidies items from the stairs while attempting to ascend them, all while eating a sandwich.;A person walks up the stairs while holding a phone and eating a sandwich. The person moves around items on the stairs, including a pair of shoes.\",c065 0.00 5.10;c053 6.00 11.80;c156 0.00 5.10;c127 3.30 31.40;c054 21.10 28.50;c015 0.00 33.00,31.92\r\nH3MG3,9PLL,Stairs,3,7,Yes,A person is sitting on at the bottom of a set of stairs untying their shoes. They put the shoes in a box and then leave though a door.,box;door;floor;shoe;stairs,\"Person sitting on steps, untie shoes, takes it off and put it in box near steps. Person then gets up, walks towards doorway, walks in another room and closes door.\",c054 12.50 20.30;c057 0.50 17.60;c006 25.30 32.00;c154 14.20 20.90;c127 13.00 19.80,31.17\r\n5N7EW,2RTW,Kitchen,6,6,Yes,\"the person opened a door, walked to the stove and put a pot of coffee on the stove to cook.\",door;food;lock;pot;stove,\"The person entered their home or apartment and immediately went to turn on the stove and began to boil some water.;A person walks in through the front door, closes and locks it. The person then walks into the kitchen and places a small pot on the front burner and turns on the stove.\",c097 0.00 3.10;c006 0.00 3.20;c008 2.50 8.90;c147 15.50 31.00,30.08\r\nL80CV,9PLL,Kitchen,5,6,Yes,A person is seen snuggling with a blanket. They then begin opening bags of groceries to put food away.,bag;blanket;food;groceries;noodles;pot;scissors,\"This person is trying to get warm with a blanket, then starts cooking a meal.;Wrapping themselves in a blanket and cooking food\",c061 12.00 36.00;c062 13.90 36.00;c020 15.60 36.00;c070 0.00 36.00;c021 13.90 31.20;c147 26.10 36.00;c072 0.00 36.00,34.88\r\n5ZDNU,DXDI,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person standing in their closet starts undressing, putting their clothes items into a wardrobe as they do.  They pick up a pile of homework from the closet floor, walking out of the closet and away.\",book;box;closet;clothes;jacket / sweater;wardrobe,\"This person is standing in their closet, takes off their jacket / sweater and then picks up a box off the floor and walks away.;A person standing in a closet takes off a jacket. The person puts away the jacket, picks up a box, and walks out of the closet.\",c155 0.00 8.30;c043 15.90 24.00;c001 4.10 14.00;c030 16.40 21.40,23.29\r\nU46OX,2RTW,Living room,6,6,Yes,A person is fixing their shelf while watching the doorway.,book;man;paper;shelf;tv,\"There is a man messing with books on a book shelf and looking around.;While the TV is on, the person rearranges items on a shelf. After finding room, the person puts a stack of papers on the shelf.\",c082 0.00 32.00;c081 0.00 32.00;c028 0.00 31.10,30.62\r\nRS9D9,UTMU,Closet / Walk-in closet / Spear closet,6,7,Yes,A person in the closet is smiling and sitting in a chair while dressing and reading a book.,book;chair;closet;clothes;woman,\"A person sits on a chair, dresses in clothes, and opens then reads a book.;A woman putting a jacket on in front of a wardrobe and reading a book.\",c027 25.00 37.20;c059 1.10 6.40;c001 5.30 24.00;c026 24.00 38.50;c032 27.30 36.80;c151 0.90 6.00;c148 1.30 26.30;c000 0.00 16.30;c025 32.20 38.20,38.21\r\n8IUTG,2RTW,Kitchen,6,6,Yes,\"A person is holding a camera bag. They open the bag, look inside, and then close it.\",bag;table,A person opens a bag on a table and sneezes in it then roots around in it.;A person is opening a bag on a table and looking for something;A person opens a bag on a table and tries to fix the zipper on it.,c021 0.40 11.30,30.42\r\nJWPS5,2RTW,Living room,6,6,Yes,A person is eating a sandwich while watching television. The person sets down their sandwich and begins folding a towel.,food;sandwich;sofa;television;towel,A person is sitting on a couch watching tv and eating a sandwich they stand up and pick up a towel and start to fold it.,c037 13.10 31.20;c065 0.00 14.60;c156 0.00 15.50;c154 14.30 21.20;c123 0.00 18.40;c132 0.00 19.80;c061 0.00 17.20;c034 13.20 32.00;c067 0.00 17.10;c068 10.70 17.20;c033 13.20 32.00,30.67\r\nO630X,8IOD,Stairs,7,7,Yes,\"A person is walking down the stairs holding a book. The person stops, sits down on the stairs, and starts working on homework in the book. The person falls asleep while doing the homework and then suddenly awakens and goes back to working.\",book;homework;paper;pencil;stairs,A person is walking down some stairs then they sit at the bottom and begin working on their homework. A minute later the begin to fall asleep.,c145 13.00 37.00;c026 0.00 37.00;c146 29.10 34.90;c115 1.40 17.70;c151 0.00 8.80;c115 12.50 19.20;c032 15.40 35.60;c151 3.90 11.70;c027 7.70 15.20,35.75\r\n11HOM,HJJ4,Hallway,4,7,Yes,A person is sneezing in the doorway while grasping a camera.,camera;doorway;phone,A person is standing in the doorway holding a camera.  The person sneezes twice into his elbow. The person then continues to walk through the doorway.,c015 0.00 9.00;c153 0.30 9.00,7.92\r\nPNM2H,Z68L,Bedroom,5,6,Yes,A person is standing by a bed and then takes a vacuum to the other side of the room.,floor;vacuum,The person walked in the bedroom and vacuumed the area around the bed. The person turned the vacuum off.,c137 13.10 40.90;c138 3.40 15.00;c127 15.10 40.90,44.88\r\nE5518,HJZQ,Recreation room / Man cave,4,6,Yes,A person holding a book and coffee smiles as a person on the sofa undresses and laughs.,book;cup,\"A person is holding a cup, standing up against a wall, all while holding a book.;Person walks around holding a cup and book talking and looking at something.\",c026 0.00 33.00;c152 2.30 17.10;c107 0.00 33.00;c154 0.00 33.00,31.71\r\nMSCYV,KFGP,Basement (A room below the ground floor),7,7,Yes,A person awakens in the basement next to a box of groceries. The person smiles and laughs.,box;chair;groceries,\"A person awakens in a chair next to a box of groceries and smiles.;A person is sitting on a chair next to a box, they then get up and smile at the box.\",c146 10.90 20.80;c152 16.00 26.00;c059 0.00 26.00,25.21\r\nJFU3J,YA10,Laundry room,4,7,Yes,\"A person is washing a shirt and looking defeated. They turn off the light, lie down on the floor, and pull a towel over their head.\",blanket;clothes;floor;light;pants;towel;wash machine;washing machine,\"Person removes pants from wash machine, puts pants back in wash machine, shuts the lid, turns the light off, lays in the floor and covers head with blanket.;A person is taking something out of the washing machine. They look at it and throw it back in. They then turn off the light, lay on the floor and cover their head with a blanket.\",c000 1.50 21.90;c002 0.70 9.90;c124 26.20 34.00;c034 28.40 34.00;c001 18.50 23.20;c005 22.60 34.00;c105 22.40 26.70;c071 18.50 23.20,33.38\r\nQLYV5,ZAWX,Kitchen,2,2,Yes,A person is working on the camera and another person is washing the blanket.,camera;phone;picture;sink;towel,A person is sitting on something messing with their phone while another person does the dishes;A person is taking a picture with a camera while another person is washing towels in a sink.,c015 2.60 11.60;c087 4.00 12.20;c016 0.00 13.50,29.33\r\n2MDHE,JVLO,Entryway (A hall that is generally located at the entrance of a house),7,7,No,A person is grasping groceries in a plastic bag while another person is eating food and drinking out of a glass.,bag;chips;cup;door;floor;food;groceries;soda,A person walked through a door carrying something into a room where another person sat on the floor eating chips and drinking soda.;One person walks through the door with a bag while another person is sitting on the floor eating and drinking.,c020 0.00 12.10;c020 11.00 19.50;c106 25.00 31.20;c156 10.70 25.90;c125 11.00 32.00;c097 1.90 10.10;c061 0.00 29.16,30.96\r\nCU3JE,3VLX,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person is grasping a laptop tightly in their hand, then the person begins taking clothes off the shelf.\",closet;clothes;dresser;laptop;table,\"A person walks in, picks up a laptop from the bedside table, then removes 3 articles of clothing from the closet and sets them where the laptop was.;A person walks into the room, picks up a laptop and then they take some clothes from the top shelf of a closet and set them down on a dresser.\",c047 3.30 27.00;c001 10.00 26.20;c002 6.70 23.80;c009 9.50 14.00;c009 14.90 19.50,26.38\r\nWMD0E,KFGP,Entryway (A hall that is generally located at the entrance of a house),3,7,Yes,\"A person is sitting on a box in the entryway, look at their phone. The person puts their phone away.\",box;chair;phone,A person is sitting on a box in a hallway playing on a phone. The person the puts the phone away.,c015 0.00 21.20;c016 0.00 23.40;c017 12.90 23.80;c059 0.00 30.00,29.25\r\n1X7OW,BYF9,Living room,7,7,Yes,A person lying on a sofa is watching television. Another person sneezes while eating in a nearby chair.,chair;dish;food;plate;sandwich;sofa;television,\"A person sitting on a chair eats food from a plate while another person reclines on a sofa nearby, flipping through television channels with a remote.\",c059 0.00 16.00;c122 0.00 16.00;c118 0.00 16.00;c132 0.00 16.00;c153 0.00 7.90;c156 5.20 16.00;c067 5.80 11.40,14.75\r\nG8V6N,WG9D,Bedroom,7,7,Yes,A person is eating in front of a window then begins to undress slowly in front of their laptop.,clothes;food;laptop;window,A person is taking off a grey sweater in order to drop the sweater on the floor while standing next a a bed.,c092 0.00 4.40;c156 0.00 5.80;c155 0.00 6.00;c001 0.00 6.00,4.96\r\nDVHIB,4I2W,Dining room,5,7,Yes,\"One person walks in and takes a book from a bag, then puts a sandwich and a bottle of medicine in the bag.\",bag;book;canister;doorway;medicine;sandwich,Person taking something out of a pink polka dot purse and putting a canister back in the purse.,c020 1.00 31.00;c021 0.80 11.00;c026 11.90 18.60;c030 11.60 19.20;c031 11.80 19.40;c067 19.00 25.50;c068 20.00 27.60;c097 0.00 4.10,29.92\r\nGR5N6,28B0,Recreation room / Man cave,4,7,Yes,A person is sitting on a sofa and opening a book. They stand up and throw the book through a doorway.,book;chair;couch;guitar;sofa;window blinds,\"This person is sitting on the couch reading a book. Evidently there is something disturbing on what he read because after reading a page he got up and threw the book against a makeshift curtain inside the house.;A person is sitting on the couch reading a book. They stand up, throw the book across the room, and leave.\",c026 0.30 14.00;c031 10.20 17.90;c032 1.80 13.60;c123 0.00 14.30;c059 0.00 13.70;c025 9.30 14.10;c027 1.80 14.30;c030 0.00 18.00;c154 10.10 18.00,16.88\r\nYG2EP,HR43,Bathroom,5,6,Yes,\"A person walks threw the bathroom doorway holding a towel, the person lays down in the floor laughing.\",doorway;floor;towel,A person is holding a towel and lays down on the floor of the bathroom.,c033 0.00 37.00;c124 4.50 37.00;c151 1.60 9.30;c097 0.00 3.30;c125 0.90 37.00,36.29\r\nGC1Q1,5LWB,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person opening a door is carrying a towel and clothes. They put the towel and clothes on a chair before they sit down.,chair;clothes;door;towel,\"a person opens the door holding a stack of folded laundry, sets it in a chair and then sits on it.\",c000 0.00 11.30;c008 0.00 5.10;c034 6.60 11.60;c059 8.30 17.00;c151 7.50 15.70;c001 5.50 11.50;c097 0.00 7.90,16.08\r\nBKNO9,Z68L,Recreation room / Man cave,7,7,Yes,A person runs into the room and throws a towel onto a pile of clothes.,clothes;coac;sofa/couch;towel,A person runs and then throws something into a coach. Then leaves again.,c001 0.50 8.40;c034 0.50 8.40;c150 0.50 7.10;c154 12.10 17.70;c000 0.60 7.30;c033 0.60 7.30;c036 3.40 8.30;c151 5.00 11.50;c123 6.40 11.00;c003 3.10 8.10,24.67\r\nM4FW0,6RE8,Dining room,6,5,Yes,A person is standing and holding a bag of groceries. The person walks to put them down on a desk.,bag;desk;doorway;table,\"The person walks to the desk holding a bag. The person places several contents from the bag onto the desk, lastly placing the bag on the desk.\",c009 12.20 24.30;c020 0.00 5.50;c021 2.00 10.30;c022 21.30 34.00;c097 0.00 5.80,33.25\r\n0XV4T,70CN,Laundry room,5,7,Yes,A person pours some liquid into a cup then takes a drink. Next the person puts a blanket in the washer then grabs some food the dryer.,blanket;bread;clothes;cup;dryer;food;pitcher;towel;washer,\"A person is in the laundry room they pour water into a glass with a straw they take a drink out of the straw. Then they put clothes into the washer, then they pick up a loaf of bread and look around.;This person pours a glass of water, drinks from it, puts clothes in the washer, then takes a loaf of bread from the dryer.\",c061 20.10 31.00;c109 6.00 13.40;c071 10.90 17.30;c106 4.80 10.00;c110 2.40 8.20;c001 9.40 18.00;c005 9.80 17.40;c063 16.20 24.40;c107 0.00 2.80;c108 0.00 6.50;c035 10.00 15.90;c033 9.80 17.60;c034 11.30 17.70,30.00\r\nICXAE,CCI9,Living room,6,7,Yes,A person is opening the food and lying the broom by the door.,broom;chair;dish;food;jar,\"A person is sitting in a chair with food. A person then grabs a broom and puts it by the door.;This person is sitting in a chair and then opens up some type of container / jar. Person then gets up off of chair, picks up broom and places it behind door and then walks back.\",c098 10.30 25.10;c099 17.70 25.40;c061 0.00 34.00;c154 8.10 13.40;c059 0.00 13.40;c118 0.00 34.00,33.08\r\nO9WFN,YRJD,Kitchen,6,6,Yes,\"A person opens the door to their closet, pouring coffee into a cup from a thermos. The person sets the cup down, and begins undressing.\",closet/cabinet;coffee;cup;dish;door;table,A person is  opening a door then puring coffe into a coffee cup then undressing.,c108 8.00 16.30;c008 0.00 6.60;c113 0.00 4.80;c120 11.60 18.80;c009 11.80 18.90,33.04\r\nCGPBZ,Z68L,Recreation room / Man cave,6,7,Yes,\"A person is tidying with a broom.  They stop, sit down in a chair, and start undressing afterwards.\",broom;chair;clothes;coat;floor;shoe;sweater;woman,A person showed up in a living room in order to sweep up the floor and take of some shoes and a sweater.;a woman sweeping and then sits down and takes off her shoes.,c059 20.60 36.80;c151 17.90 25.90;c154 30.80 37.00;c056 20.60 30.70;c102 0.00 21.00;c155 26.30 36.10;c057 22.00 29.30;c127 0.00 20.50,35.79\r\nIA9Z5,5LWB,Stairs,7,4,Yes,One person walks in and opens the window. Another person in the doorway smiles with a bag of groceries in hand.,bag;stair;window,A person is walking up the stairs then closing a window while another person is waving a bag around in the air.,c020 3.70 25.00;c152 5.40 16.90;c021 6.70 14.50,24.12\r\n3D94R,HR43,Kitchen,5,4,Yes,\"A person is in a kitchen running the water in the sink, they then start laughing as they pick up some food from the counter and walk away.\",counter;food,A person is standing up and grabbing something to eat.;A person makes some food and then takes a bite,c061 5.70 16.00;c063 0.80 7.70;c156 3.70 15.20,15.33\r\nCI1I6,6RE8,Bedroom,6,5,Yes,One person sits in front of a mirror grasping a handful of clothes from a nearby wardrobe.,clothes;hand;mirror;wardrobe,Person picking up blankets and towels tidying up the room.,,32.50\r\nMBL7E,P6LJ,Bedroom,6,6,Yes,A person is walking towards the closet door. The person opens the door and stands their looking. The person grabs the vacuum and leaves.,door;vacuum,Person walks in room and looks in closet. After looking in the closet person takes out vacuum from closet.,,27.83\r\n4DZB6,I4RP,Kitchen,6,6,Yes,A person is taking a basket of laundry to set it on a chair.  Another person is holding the light switch to turn off the light.,clothes;something;table,A person walks past another person carrying laundry.;A person carries something and sets it down.,c000 0.00 8.00;c009 1.10 8.00;c001 1.10 8.00,7.04\r\nTCCQL,C7O9,Kitchen,6,6,Yes,\"A person is holding a medicine bottle and taking a dose, while another person is playing games on a laptop.\",bottle;chair;cup;laptop;medicine;sitting;standing;table,\"A person is sitting at the table working on a laptop. Another person is standing beside them and takes some medication. The person drinks from a bottle.;Two people are at a table, one standing, one sitting.\",c052 0.00 32.00;c129 8.00 13.00;c106 17.00 25.00;c107 17.00 28.00;c011 0.00 32.00;c128 0.00 32.00;c051 0.00 32.00,30.62\r\nCZ65V,I4RP,Laundry room,6,6,Yes,\"A person is standing and pouring water to wash shoes in the laundry room, when another person walks in with a stack of dishes.\",clothes;shoe,\"A person is holding some shoes, while another person walks in the room.\",c053 0.00 8.00;c000 0.00 8.00,7.21\r\n0OE6M,I4RP,Laundry room,6,6,Yes,\"One person is undressing, placing dirty clothes in the hamper and wrapping up in a towel. Another person is sitting playing a game.\",clothes;jacket;towel,A person is taking off a jacket. A person then wraps a towel around them.;Person takes off jacket then grabbed towel and wrapped it around their waster.,c148 5.70 13.00;c034 6.00 12.20;c155 0.00 7.60;c003 3.40 8.00;c035 4.50 11.90,11.79\r\n7TJ14,4I2W,Kitchen,4,4,Yes,\"One person gets food from a shelf in a cabinet and fixes something to eat, then runs out eating.\",cabinet;dish;food;shelf;something,\"This person walks to a cabinet, opens it, pulls out some food, and eats it.\",c112 12.70 19.30;c063 5.40 18.20;c113 0.00 6.70;c061 2.20 23.50;c156 19.10 26.60;c062 0.60 18.00;c118 16.80 33.00;c120 17.60 33.00,32.33\r\nEKLVV,DXDI,Bedroom,6,7,Yes,A person holds a towel as they look out the window. The person takes a jacket from the desk and begins dressing.,clothes;sweater,A person is holding a sweater before putting it on.,c148 13.10 26.90;c000 0.00 15.80;c002 0.00 27.00;c001 0.00 27.00,25.92\r\n978PS,HR43,Living room,3,6,Yes,\"A person walks into the living room with a camera and some homework, but stop to stand in front of the tv and watch it.\",camera;homework;paper;phone;television,\"The person walks into the living room. The person is holding homework papers and a camera. The person looks at the TV, and then puts the camera into the person's other hand.\",c015 0.00 29.00;c115 0.00 29.00;c132 0.10 29.00,27.83\r\n1THHL,ZAWX,Pantry,6,7,Yes,Person is opening medicine cabinets and grabs towel and starts smiling.,box;cabinet;floor;medicine;towel,A person sits on the floor and goes through their cabinet.,c114 2.00 15.70;c152 14.00 27.80;c125 0.00 31.00;c113 0.00 5.10;c040 3.00 14.70,30.46\r\nG4E4S,3H6W,Kitchen,7,7,Yes,\"A person is carrying clothes in their kitchen. They put them down and take off their shoes. They pour detergent on the clothes, and begin washing their clothes.\",chair;closet door;closet/cabinet;clothes;shoe;table;washing machine,\"A person is carrying clothes and goes to sit down to take off shoes then goes over to wash the clothes.;The person came to the kitchen carrying laundry put the laundry down,sat on a chair took off shoes get up put the laundry in washing machine\",c151 14.40 28.10;c000 4.70 9.60;c057 17.40 27.80;c154 24.10 28.40;c059 16.50 26.90;c005 33.80 57.50;c001 4.40 11.10;c112 53.20 60.00;c011 16.50 27.50,60.67\r\nLRLNC,QB52,Bedroom,6,6,Yes,A person sits near a cabinet wrapped in a blanket working on a laptop.,bed;blanket;phone;picture,A person is sitting on a bed texting on a phone.  Then the person puts the phone down.;The person is sitting on a bed covered in a blanket. The person is texting on a phone. The person puts the phone down on the bed.,c072 0.00 31.00;c135 0.00 31.00;c015 0.00 31.00;c016 0.00 31.00;c017 27.70 31.00;c088 0.00 31.00,30.00\r\nUTLK1,KQI6,Living room,4,5,Yes,A person is holding a picture and another is opening a window.,book;calendar;curtains;window,A man is standing holding a calendar and is flipping through it. The woman in the scene walks up to the window and opens the closed curtain.,c092 12.80 33.00;c091 12.30 33.00;c032 0.00 9.80;c090 12.30 33.00,31.67\r\nWCIBT,EXQX,Entryway (A hall that is generally located at the entrance of a house),5,,No,\"A person runs into their home's entryway, throwing a bag on the table. The person turns off the light and leaves.\",bag;door;floor;light,\"A person walks into a room and throws a bag on the floor before turning off the light.;A person opens a door, walks through a doorway, and then closes the door.  The person then sets a bag down on the floor, turns off a light, and then walks away.\",c105 0.00 62.00;c024 2.20 6.80;c126 2.80 6.80;c097 0.00 4.10;c006 7.40 11.70;c008 0.00 2.60;c022 1.30 7.50;c020 0.00 5.60,60.58\r\nS1BYH,1TZV,Garage,7,7,Yes,A person is laughing and running with a box and some clothes.,box,A person runs back and fourth in their garage while holding a box.,c040 0.00 29.00;c150 0.00 29.00,28.04\r\nLB006,5LWB,Other,6,6,Yes,A person comes walking into the garage with a box while another person begins playing with a toy from a box.,box;floor;toy,A person walks in with a box. Another person takes an item out the box and plays with it.,c040 0.00 10.00;c042 4.60 10.40;c044 13.40 16.00;c125 13.40 16.00;c041 13.40 16.00,15.38\r\nDUAOJ,9PLL,Garage,5,7,Yes,\"A sneezing person walks into a kitchen eating a cookie, turns on a light and sits on a chair.\",chair;food;light;man,\"A person is sneezing and walking into a kitchen, they then eat something and turn on a light then sit down in a chair.;A man sneezing and turning a light on and sitting down,\",c104 0.00 9.50;c059 6.90 16.60;c153 1.60 13.70;c156 7.80 18.50;c151 12.30 27.00,31.04\r\nBQAUC,3H6W,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person walks to the closet with a pair of shoes. The person puts the shoes away, looks into the mirror, then runs off.\",mirror;shoe,A person puts shoes on a shelf and then looks in a mirror.,c093 6.40 14.30;c054 2.10 8.00;c053 2.30 9.90;c150 10.10 15.60;c096 6.90 14.00,17.67\r\nG1BSD,2RTW,Kitchen,6,6,Yes,The person sat at the table with another person.  They both poured drinks and ate food.  Then one person grabbed a box off of the shelf and opened it.  They ate cookies out of the box.,chips;cup;food;glass;package;pitcher;plate;sandwich;shelf;table;water,\"A person is pouring a cup of water, while another person is getting a glass of water poured for them.;There's two people sitting at a kitchen table. One pours water into both of their glasses to drink. Both are eating chips or something off of plate. The one who pours the water also grabs something off the shelf next to him, opens it and starts eating.;These 2 people are sitting at a table, one person pours water into 2 cups, then they both begin eating.\",c108 0.00 13.00;c107 0.00 19.50;c106 10.20 15.10;c011 0.00 36.00;c156 13.90 19.50;c063 11.40 16.10,35.29\r\nN3SBJ,2RTW,Dining room,6,6,Yes,\"One person is in the dining room grasping a sandwich, while another is tidying up the area with a vacuum.\",chair;floor;food;sandwich;table;vacuum,\"A person is sitting at a table with a sandwich while a second person vaccuums the floor.;This person is sitting at a table eating a sandwhich, another person starts vacuuming.\",c137 11.90 31.20;c067 0.00 32.00;c011 0.00 32.00;c065 16.10 22.00;c059 0.00 32.00;c156 16.10 22.00;c127 13.50 32.00;c061 0.00 32.00,31.25\r\nICALV,2RTW,Kitchen,6,6,Yes,One person is eating the remains of a sandwich and chatting on the phone while watching another person wash the table.,cup/glass/bottle;dish;food;phone;sandwich;table;towel,\"A person is talking on the phone and eating, while another person is tidying up a table.;one person is eating and talking on the phone while another wipes off a table;One person is eating a sandwich and talking on a phone while another person moves dishes around while cleaning a table.\",c015 0.00 32.00;c067 4.10 19.80;c156 0.00 6.20;c013 0.00 32.00;c156 0.00 32.00;c019 0.00 32.00;c012 0.00 32.00;c061 0.00 32.00;c110 0.00 32.00;c120 0.00 32.00;c119 0.00 32.00;c009 0.00 32.00;c118 9.90 19.70;c065 0.00 32.00;c109 9.70 20.10,31.21\r\n1HAYV,LTAC,Living room,4,4,Yes,\"A person is sitting in the hallway, eating a sandwich and drinking a cup of coffee. The person stands up and walks through a doorway.\",chair;coffee;cup;doorway;food;glass;sandwich;table,Person sitting in a chair eating a sandwich and drinking out of a glass then gets up and walks out of the room.,c106 1.60 8.20;c065 0.00 4.30;c106 19.70 26.40;c156 24.10 30.30;c107 0.00 37.50;c011 0.00 38.30;c059 0.00 37.70;c067 0.00 39.00,37.75\r\n291LH,3531,Living room,6,6,Yes,\"A person is on the sofa watching television, drinking tea, and smiling.\",chair;cup;dish;sofa;television;tv;water,\"Person smiling, sitting on chair looking at tv, holding and drinking from a cup.;A person is sitting in a chair watching television and drinking water out of a cup.\",c118 0.00 33.00;c123 0.00 33.00;c152 0.00 33.00;c132 0.00 33.00;c106 0.70 6.70;c106 9.10 16.30;c106 19.00 26.20,31.75\r\nV7LTE,5LWB,Stairs,4,6,Yes,A person is dressing on the stairs.  Then a person is playing with a picture while turning a doorknob.,clothes;door,A person is grabbing a vest and putting it on. The person fans themselves. The person opens a door.,c141 13.10 23.00;c148 0.80 11.30;c008 12.90 23.00;c002 0.00 11.70;c000 0.00 11.10,21.75\r\nCOT5L,P6LJ,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is holding a cup of coffee and a bottle of medicine. After taking a swig of each, the person sets them on a table.\",coffee;cup;glass;medicine;table,\"A person walks over to table and picks up some medicine, opens it and takes some followed by a drink of coffee.\",c129 16.00 27.90;c128 14.50 29.40;c129 21.20 32.40;c106 28.70 37.20;c107 22.40 41.40;c110 21.20 40.40;c109 21.30 40.40;c009 21.20 40.40,49.83\r\nF6PKX,YMXV,Home Office / Study (A room in a house used for work),6,6,Yes,\"While sitting in front of the mirror, person was grasping the idea of updating person's wardrobe. Person stood up, and began walking towards the window.\",hair;mirror;window,\"A person sits and looks into a mirror before standing, walking to an open window and looking outside.\",c092 19.10 33.00;c096 0.00 17.00;c154 12.00 18.80;c144 0.00 11.70;c059 0.00 16.20,32.21\r\nPNIHG,BYF9,Dining room,7,7,Yes,One person in the doorway laughs and then leaves as another person smiles by a shelf.,cabinet;doorway,Person one is standing beside a cabinet with their hand on it while smiling. Person two walks through the room looking happily around walks into the other room.;A person is standing at a desk smiling while another person walks through the room and leaves the room.,c097 9.20 15.00;c149 2.30 10.90;c152 1.90 10.60,14.17\r\n82ZNR,UO0Z,Kitchen,4,7,Yes,A person is cooking by the stove. Then the person dumps their coffee into the sink and begins washing the mug.,coffee mug;cup;dish;food;hands;lid;pot;sink;stove;wooden spoon,\"A person is standing in front of a stove and takes the lid off of a small pot, stirs the contents with a wooden spoon. The person then places the lid on the pot and grabs a coffee mug, pours out the contents, and washes it in the sink.\",c107 6.30 12.60;c109 5.90 12.90;c147 0.00 10.60;c108 7.10 13.10;c110 6.80 11.20;c139 28.30 31.00;c111 7.90 31.00;c121 7.90 31.00;c118 7.90 31.00;c120 6.00 11.10;c119 27.40 31.00,30.29\r\n0RQZC,D0RU,Recreation room / Man cave,6,5,Yes,One person sits in a chair with a pillow laughing at a picture on the shelf.,chair;picture;pillow;shelf,\"A person rocked in a chair, holding a pillow.  The camera then zoomed in and focused on a random photograph.\",c076 0.00 33.00;c059 0.00 33.00,32.33\r\nXF28F,1TZV,Bathroom,6,6,Yes,\"A person is laughing. They pull their clothes off of a shelf and begin playing, pretending that their clothes are running around the room.\",clothes;counter;doorway;jacket;shirt;table,The person picks up the clothes off the counter and shakes them in the air while walking around in a circle.;A person is swinging a jacket in between a doorway and a room.,c000 0.00 27.00;c012 0.00 27.00;c004 0.00 27.00;c152 0.00 27.00,26.21\r\nF5XQM,P3TI,Kitchen,7,7,Yes,A person puts dishes into a bag and then closes the bag tightly.,bag,A person is putting things in a bag then closing the bag when they are done.,c021 2.20 10.20,34.67\r\nSV7U3,XXN8,Garage,5,7,Yes,A person is standing by the sink washing a glass.,cup;dish;sink;something,A person is washing a cup in a bathroom.,c111 0.00 31.30;c121 0.00 32.20,32.46\r\nACMHK,4OHY,Kitchen,6,7,Yes,A person is eating some food in the kitchen. They are sitting on the chair and then they begin sneezing when they look up at the light.,dish;food;hair;hand;plate,\"A person is walking around the kitchen eating something. They sit down in a chair and fix their hair. The sneeze.;A person is eating food off a plate.  They then sit in a chair, smooth their hair and sneeze.\",c059 15.00 33.00;c156 0.00 33.00;c153 22.00 30.00;c118 0.00 33.00;c061 0.00 33.00;c151 13.40 19.80;c144 16.00 23.00;c120 30.10 33.00;c119 30.10 33.00,32.00\r\n83KZR,EA2K,Stairs,7,7,Yes,A person is watching a door at the top of bottom of the stairs.  Then a person is going up or down the stairs and is closing the door and picking up a sofa pillow.,door;pillow;sofa;stairs,\"A person walks up some stairs up to an open door, and they shut the door, pick up a pillow and walk up more stairs.\",c006 10.20 22.90;c076 22.40 27.30;c079 19.60 26.60;c141 12.00 20.20,35.38\r\nXY2M3,BYF9,Bedroom,7,7,Yes,\"A person working out in their bedroom finishes their yoga routing and takes a breather, sitting on the bed.  They grab a book they've been putting off reading, and run towards the bedroom's doorway, to go get coffee.\",bed;book;doorway;mat;mirror,A person is standing on a mat doing moves.They then walk over to the bed and sit down and pick up a book. Then they standing up with the book and run out of the room.,c135 22.40 30.40;c026 23.20 33.00;c030 21.60 28.30;c032 23.30 33.00;c097 28.20 33.00;c151 20.80 28.10;c150 25.90 33.00;c154 26.60 31.50;c096 0.10 24.10,32.17\r\nMR8CK,KASL,Bedroom,7,7,Yes,A person is walking towards the mirror in their bedroom. The person looks back at a chair in the bedroom and grasps a towel and places it atop the chair.,chair;clothes;mirror;towel,A person enters a room and picks up some towels and folds them and sets them on a chair.,c034 5.60 32.00;c037 5.80 32.00;c004 5.90 22.40;c033 20.40 28.60,31.08\r\nFQAAB,T7C3,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person is running through the door then is resting in the doorway. Then they are closing the door while looking at their phone,door;phone,A person runs up the stairs and stands in a doorway. They take a phone from their pocket and close the door.,c006 28.30 37.00;c015 25.70 37.00;c097 0.00 5.80;c150 0.00 6.30;c018 24.90 32.40,35.75\r\nR3Z2O,KFGP,Bedroom,6,5,Yes,\"A person is lying in bed. The phone rings, but they ignore it and snuggle with their pillow.\",bed;phone;pillow,A person was lying down in bed.  A person then began playing with his phone.  The person looks depressed.,c078 0.00 31.00;c134 0.00 31.00;c016 2.00 10.40;c015 1.30 10.80,30.42\r\nMT6C2,0KZ7,Kitchen,5,7,Yes,A person runs into the kitchen holding a pillow. They open a window and begin cooking.,counter;doorway;food;pillow;stove;window,\"A person runs in the room carrying a pillow.  They put the pillow on a counter and open a window.  The person then goes to the stove and cooks.;A person runs into the kitchen holding a pillow they put the pillow down and open the window, then they go to the stove and start cooking.\",c076 0.00 4.80;c077 0.70 5.60;c090 2.80 10.50;c150 0.00 3.70;c147 10.00 23.00;c097 0.00 4.20,22.25\r\nDNWCR,70CN,Living room,7,7,Yes,\"A person runs into the living room, holding a camera and a pair of shoes. The person puts the camera down and puts on the shoes.\",couch;phone;shoe;sofa,\"A person runs into the living room while carrying shoes, sits on the couch, and puts on the shoes.;A person runs through a living room, sits down on a couch, setting a phone down. The person then begins putting on shoes.\",c053 0.00 3.70;c056 0.00 3.40;c151 0.00 5.00;c055 0.00 7.00;c055 1.40 32.00;c150 0.00 4.50;c123 0.70 32.00;c053 0.00 27.10,30.92\r\n29WOY,LTAC,Home Office / Study (A room in a house used for work),3,1,No,A person is opening a book and snuggling with a towel.,blanket;book;chair;towel,A person is sitting in a chair and folds a towel while looking at some papers.,c026 0.00 6.70;c037 3.00 32.00;c035 1.40 32.00;c059 0.00 32.00;c034 1.40 32.00;c075 1.10 32.00;c027 0.00 5.40;c115 0.00 7.00;c028 0.90 6.90,30.50\r\nHOGVD,HR43,Home Office / Study (A room in a house used for work),7,7,Yes,A person smiles as they go through a bag of groceries on the desk. The person opens one of the items and begins eating it.,bag;chair;food;groceries,A person picks up a bag and takes out some chips and eats one. The person puts the chips back in the bag.,c021 0.00 8.30;c156 13.50 25.40;c059 0.00 26.00,25.12\r\nNDYOR,YMXV,Bedroom,7,7,Yes,A person walks into the bedroom and begins tidying. The person takes their phone from the floor and places it on a shelf.,bed;blanket;desk;doorway;phone;pillow;table,A person walks into a bedroom straightens their pillows fixes there blanket  then they pick up a phone and set it on a desk.;A person walks over to a bed and tidies it up. The person picks up a phone and walks to the desk to set it down.,c015 18.70 28.70;c017 23.40 29.50;c018 17.60 23.90;c075 2.40 18.70;c009 23.60 31.80;c079 1.90 7.20;c016 19.30 26.90;c097 0.00 2.50;c073 4.30 12.90;c074 0.70 8.30;c071 4.60 18.70;c077 0.70 8.30,31.54\r\nRO8N5,6RE8,Basement (A room below the ground floor),5,1,No,A person is sitting in a chair watching television. The person begins pouring a can of soda into a cup and starts drinking out of it.,chair;cup;dish;food;glass;table;television,\"A person is sitting in a chair watching a television, pours a drink and then drinks from the glass.\",c106 19.50 32.00;c107 19.30 32.00;c108 4.30 25.00;c059 0.00 32.00;c132 0.00 32.00;c118 20.10 32.00;c009 17.50 23.50;c061 19.80 32.00,30.83\r\nKHHIV,0KZ7,Hallway,5,6,Yes,\"A person is smiling as the person walks down the hallway, talking on the phone.  The person plays with their hair as they walk through the doorway.\",doorway;hair;phone,A person is walking in a hallway and talking on their phone while playing with their hair.,c015 0.00 14.30;c019 0.00 14.50;c097 4.80 11.10,17.21\r\nKAQNT,9OK1,Laundry room,7,7,Yes,\"A person is in a laundry room playing with a broom, they then close their laptop that is resting on top of a desk.\",broom;counter;floor;laptop;table,A person is sweeping the floor with a broom. Then they go and close a laptop that's on a counter. And then they dance.;A person sweeps the floor with a broom and then swings the broom. They play with something on a table,c046 5.70 10.70;c102 0.00 6.60;c012 6.80 11.40;c127 0.00 6.60;c098 0.00 14.00,13.33\r\nS2EXT,YMXV,Bedroom,4,6,Yes,A person grasps the doorknob and opens the door. The person picks up a box and moves it across the room.,book;box;door;medicine,\"Man letting himself into a room, picks up a yellow box and tries to open it.\",c128 13.50 31.90;c008 2.70 12.10;c041 26.50 32.00;c141 4.00 9.80;c026 13.40 32.00;c097 7.30 15.80,30.96\r\nGCK0H,2RTW,Living room,7,6,Yes,A person is watching the doorway and holding a pillow.,doorway;pillow,A person sitting on the couch and watching his door with a pillow on his lap.,c076 0.00 31.00,30.29\r\nPM107,1OHU,Stairs,6,6,Yes,\"Person slings bag over back, and grabs a box.  Then the person walks to the top of the stairs.  Person puts down the bag and the box at the top of the stairs.  Person opens curtains, and starts watching out of the window.\",bag;box;doorway;stairs;window,A person is holding a bag. A person grabs a box and goes up the stairs. A person then looks through a window.,c040 6.60 16.70;c020 13.40 18.20;c092 23.80 33.00;c097 16.80 22.70;c043 5.90 10.80;c042 13.70 18.50,32.38\r\n41ZY4,1OHU,Living room,6,6,Yes,A person awakens on the stairs with a sandwich in their hand. The person takes a bite of the sandwich while intently watching the door.,floor;food;sandwich,\"A person is asleep on the stairs holding a sandwich. The person wakes up and eats the sandwich,;A person is sleeping while holding a sandwich. They then wake up and begin to eat the sandwich.\",c065 14.30 29.00;c146 12.70 18.50;c156 14.40 29.00;c124 0.00 23.10,27.75\r\nUSZCJ,1OHU,Stairs,6,6,Yes,\"Person opens door to room, steps inside and shuts the door.  Person carries up groceries up the stairs.  While walking up the stairs, the person looks out of the window.and laughs.\",bag;door;groceries;man;stairs;steps;window,\"A person comes though a door carrying a bag ,looks up at the ceiling closes the door and continues to walk up some steps.The person looks out a window and continues s up the steps.;man holding a bog walks through a door and continues up some stairs.;A person comes in a door carrying a bag and goes up some stairs.\",c006 1.00 8.00;c020 0.00 4.10;c008 0.00 3.30;c097 0.00 5.60,24.96\r\nT82IE,HJZQ,Kitchen,5,6,Yes,\"One person walks through drinking from a glass, sits at a desk, then leaves with a book.\",book;cup;desk;doorway;glass;table,\"A person drinks from a glass, then puts the glass on the table and sits on the table while looking at a book.;A person is walking through a room and drinking from a glass. The person then puts the glass on the desk, sits on a desk, and flips through a book. The person gets up from the desk and exits through the doorway.\",c026 18.30 29.50;c030 7.50 22.00;c106 0.00 5.00;c109 0.00 9.00;c011 0.70 11.40;c154 19.60 30.00;c027 8.80 14.10;c032 9.80 17.40;c107 0.00 8.00;c009 3.40 8.50;c010 4.70 11.50;c097 28.50 33.00;c025 12.90 17.60;c151 4.70 11.70,31.71\r\nHGSB7,YMXV,Bedroom,5,5,Yes,A person is lying on the floor of the basement underneath a chair which is holding their laptop.  The person gets up and takes their laptop and puts it in the cabinet.,cabinet;chair;floor;laptop,A person lying on the floor stands up and walks over to a chair and table.  The person picks up a laptop resting on the chair and sets it down on the table before sitting in the chair.,c059 23.00 32.00;c124 0.00 6.90;c154 0.70 10.20;c050 13.40 20.20;c151 20.60 27.90,31.33\r\nGW2Y8,ZAWX,Bedroom,6,7,Yes,A person is playing a game on their laptop. The person takes a sandwich from a dish and takes a bite. The person then drinks from a glass of water.,cup;floor;food;game;glass;laptop;sandwich;table;water,A person is playing on their laptop sitting down while eating a sandwich and drinking a glass of water.,c052 0.00 8.90;c065 8.00 25.90;c106 23.40 33.00;c156 8.30 24.60;c062 6.20 20.20;c061 6.40 19.40;c063 6.70 33.00;c110 22.90 33.00;c014 0.00 33.00;c069 7.90 19.80;c125 0.00 33.00;c107 23.00 33.00;c109 28.50 33.00;c068 14.10 19.80,32.25\r\nK7HQG,9Y7F,Dining room,7,7,Yes,A person is sneezing while eating lunch and drinking coffee in a dining room. Another person is putting a picture on the wall.,chair;dish;food;picture;table,A person is sitting in a chair at the table eating food. Another person is hanging a picture on a wall.;A person is at a table eating and drinking while another person is hanging a picture on the wall.,c156 0.60 31.00;c011 0.00 31.00;c059 0.00 31.00;c084 0.00 12.00;c088 0.00 12.00;c086 8.00 23.10;c061 0.00 31.00,30.38\r\nWVNBE,4I61,Living room,6,6,Yes,A smiling person is dressing in their recreation room standing in front of a wardrobe. They grab a vacuum and start vacuuming the floor.,clothes;floor;mirror;shelf chair;vacuum;vest,\"A person walks into a room, picks up a jacket and puts it on, then inspects themselves in a mirror. After that they pick up a nearby vacuum and start cleaning the floor.;a person grabbing a vest and putting it on in front of a mirror.\",c127 21.20 44.00;c137 22.50 41.20;c148 4.60 23.50;c094 9.70 23.30;c002 3.10 8.40;c138 22.50 27.60,42.58\r\nV8H9M,QHW8,Bedroom,7,7,Yes,\"A person is running the vacuum outside the closet. The stop, grab a box from the closet, and resume their work vacuuming.\",box;floor;groceries;vacuum;wardrobe,The man vacuums the carpet and then grabs a box from the shelf in the closet and sets it on the ground before returning to vacuuming the carpet.,c137 0.00 32.00;c042 8.90 16.80;c043 8.30 16.80;c127 0.00 11.50;c126 11.40 16.50;c130 9.40 16.50,31.08\r\n83V0A,ZSRZ,Kitchen,7,5,Yes,A person is at the kitchen stove cooking a meal and they move to the sink and look out the window before setting down to look at a cook book.,book;boy;chair;dish;food;stove;window,\"a kid cooking, looking out a window and sitting with a book.;A person is cooking food on the stove. The person turns around to look out of a window. The person sits in a chair and starts reading a book.\",c027 12.10 18.30;c030 8.60 14.40;c092 3.40 11.70;c147 0.00 6.70;c151 9.40 16.60;c059 9.40 16.60;c118 0.00 7.20;c152 0.00 21.00;c032 12.00 21.00;c026 10.10 21.00,19.92\r\nMR66M,D0RU,Recreation room / Man cave,6,7,Yes,A person is walking while holding a pair of shoes.  The person then starts taking food from a table.,dish;doorway;food;shoe;table,\"A person is is holding a pair of shoes, while eating food from a dish.;A person walks into a room carrying some shoes, they then pick up a dish of food and set it on a table and eat some food from it.\",c063 22.00 33.00;c097 7.80 14.60;c156 22.50 32.40;c053 4.60 33.00;c120 19.90 26.10;c118 20.50 26.00;c009 20.50 26.10;c119 20.50 26.10;c061 22.30 28.60,32.12\r\nAKALB,YMXV,Bedroom,1,7,No,A person is lying on the bed. The person sits up and begins throwing their pillows at the table.,bed;pillow;table,A person laying on a bed sits up and throws a pillow,c134 0.00 10.70;c135 9.30 33.00;c080 14.40 20.40;c009 11.50 19.20,31.71\r\n4SGC9,X5XO,Kitchen,7,7,Yes,\"A person is in a kitchen laughing as they view pictures from their camera phone, they then grasp the door to the refrigerator and opens it.\",door;phone;refrigerator,A person was one their phone. then the person opened the fridge.,c143 17.00 31.00;c016 0.00 19.00;c015 0.00 21.40;c017 15.10 21.70,30.29\r\nA10NL,DXDI,Other,4,5,Yes,A person stands in the doorway. The person takes a laptop from a desk.,doorway;laptop,\"A person is standing in a doorway, then takes a few steps backwards and picks up a laptop, then goes back to the doorway and proceeds to stand there.\",c097 15.00 21.00;c047 11.80 21.00;c050 11.00 19.60,20.21\r\nJ06YV,ID9V,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person opens the closet door, undresses and throws the clothes inside. The grab a towel, close the door and leave.\",towel,\"A person opens a closet and removes a jacket.  The person then removes a green towel from the closet, and waves before walking away.\",,31.29\r\nK9GJF,Z68L,Bathroom,7,7,Yes,\"One person closes a box and puts it on the sink, then holds the doorknob for a moment.\",box;door;mirror;sink,A person is holding a box then closing the box and holding onto a doorknob then walking away.,c039 9.20 17.90;c040 2.10 17.60;c096 15.50 20.00;c097 0.00 5.00;c042 6.20 19.80;c006 17.60 30.10,30.12\r\nY1FKP,LTAC,Stairs,5,6,Yes,\"A person is sitting on the floor looking at pictures. They get up, look out the window, and laugh softly.\",book;floor;wall;window,A person is sitting on the floor looking at a book then the person gets up and walks to a window. The person laughs as they look out the window.;A person is sitting by the wall looking at a book.  The person gets up and looks out the window.,c092 20.70 32.00;c125 0.00 20.80;c149 21.90 32.00;c154 16.60 23.30;c032 0.00 20.80;c152 21.30 31.40;c115 0.00 32.00;c025 9.40 15.50;c026 0.00 32.00,31.25\r\nTS75H,YA10,Garage,2,5,Yes,A person holding medicine sneezes twice before sitting down next to food.,cup;floor;food;medicine;sandwhich;sandwich,\"A person sneezed, then kneels down, grabs a bite to eat.;A person is standing in a garage sneezing and holding a bottle of medicine sneezing they sit down and put the bottle on the floor and they eat a sandwich\",c128 0.00 13.60;c151 8.10 15.70;c125 11.70 31.00;c153 0.90 6.10;c065 13.60 30.40;c156 15.40 20.00;c107 0.00 13.60;c061 14.20 30.40;c063 13.60 18.20;c062 26.30 30.60,30.08\r\n5VUQE,D0RU,Living room,7,7,Yes,A person is lying on the sofa watching television while grasping a box of tissues.,box;napkin;remote;sofa;television,A person is laying down on a bed playing with a remove then turning on the television. The person then takes a napkin out of a box and wipes nose.,c041 10.00 15.00;c044 10.00 19.00;c122 0.00 32.00;c132 0.00 32.00,30.92\r\nZCH7N,3H6W,Recreation room / Man cave,5,6,Yes,A person is eating a sandwich then they being playing with their phone.,chair;dish;food;phone;sandwich;sofa,\"A person is sitting on a sofa eating a sandwich on a plate, they then take out their phone and begin playing with it.;A person sits down on a sofa. The person picks up a sandwich and begins eating it. The person then picks up a phone and plays with it. Finally, the person stands up and leaves.\",c015 12.60 27.80;c017 23.50 28.70;c065 2.10 15.50;c068 11.50 16.70;c156 2.20 15.50;c154 24.70 31.00;c123 0.00 29.00;c016 14.70 27.90;c018 12.10 17.90;c067 3.20 15.40;c069 1.80 7.50;c151 1.20 6.60;c119 0.00 16.00;c120 1.90 16.90;c118 5.10 16.30;c059 2.10 29.60,30.25\r\nQRULM,4YWP,Bathroom,2,7,Yes,\"A person washes their hands in the sink slowly, watching the water pour down the drain. The person then dries them off with a towel, and begins looking at a picture and smiling to themselves.\",hand;picture;sink;towel;water,A person is washing their hands in a sink and then dries their hands with a towel and looks at a picture.,c084 29.70 36.00;c033 23.30 36.00;c139 0.00 30.30;c152 30.80 36.00;c088 28.50 36.00;c035 23.70 34.10;c083 28.60 34.20,35.38\r\nZYDGF,WQ8Z,Bathroom,6,7,Yes,\"A person gets some water to drink from the sink.  They turn off the faucet, reach under the sink, and take a bag out.\",bag;closet/cabinet;cup/glass/bottle;door;sink;water,{},c020 13.30 21.90;c023 13.20 20.40;c106 3.00 13.30;c006 12.70 18.00;c113 11.70 20.60;c107 0.00 15.40;c008 11.60 18.00;c112 12.70 18.10,21.38\r\nCDNV7,KQI6,Dining room,5,1,No,A person laughs as they tidy a walk in closet. Another person turns on a light before leaving with dishes from the closet.,dish;light;table;towel,Person moving things on a table to clean it while another person comes in and turns on the light before picking up dishes and leaving.,c104 18.40 23.80;c118 2.20 10.20;c013 0.00 20.60;c038 0.00 20.80;c012 0.00 21.50,29.79\r\nL4DUU,ZAWX,Kitchen,7,7,Yes,\"A person is eating a sandwich. They look around, set a camera down, and leave.\",camera;doorway;food;phone;sandwich;table,The person is holding a camera and eating a sandwich. The person is waving the camera around. The person puts the camera down. The person walks out of the room,c015 0.00 26.20;c017 20.10 27.50;c065 18.40 24.90;c067 0.00 27.80;c009 21.60 26.40;c016 0.00 24.80;c156 0.00 33.00;c097 24.90 30.00,31.58\r\nB32MT,S053,Bathroom,7,7,Yes,\"A person is in their bathroom sitting by the door, they then open a cabinet remove a item then turn off the light.\",beard;cabinet;door;light;medicine;mirror;object,\"The person is sitting on the sink in the bathroom, touching their facial hair and looking in the mirror. Then the person opens the cabinet mirror, takes out an object, looks at it and turns off the light.\",c113 12.00 16.90;c105 21.60 31.00;c128 13.30 24.70;c112 16.50 23.00;c096 5.90 16.60,30.00\r\nS5NC8,9Y7F,Living room,7,6,Yes,Person watching a movie while another person leaves some medicine by the table.,dish;doorway;food;homework;laptop;medicine;table,\"A person is looking at something on a laptop, another person then walks in and sets some homework and medicine on a table, then walks out.;a person looks at their computer and another person sets something on a table\",c128 8.80 16.70;c009 11.40 16.70;c051 0.00 12.30;c097 16.70 24.70;c118 7.90 16.10;c014 0.00 32.00;c062 10.40 17.30;c061 8.30 15.30;c119 8.30 15.30,30.83\r\nVG0GK,5LWB,Home Office / Study (A room in a house used for work),6,6,Yes,\"The person is sitting in their office, eating breakfast and watching television while they fix a camera sitting on top of a box.\",camera;chair;desk;dish;food;laptop;man;phone;table;television;tv,The person is sitting in a chair putting a dish down onto a table while watching T.V. then playing with a camera.;a man sitting at a desk holding something in his hand.,c132 0.00 11.70;c015 2.90 22.00;c156 0.00 4.40;c059 0.00 22.00;c011 0.00 22.00;c016 3.60 22.00;c018 1.90 7.00;c062 0.00 5.40;c119 0.00 5.40;c061 0.00 3.60;c118 0.00 4.00;c014 3.60 22.00;c009 0.00 4.90,21.00\r\nDAJT8,TD8O,Dining room,6,6,Yes,A person finishes a phone call and is laughing.  The person is leaving the dining room and turns off the light on the way out.,chair;light;phone;table,A person sits in a chair and talks on their phone. The person then gets up from the chair and turns off the light.;A man is walking into a dining room talking on a phone and he sits down in a chair at the table; he gets up and turns off the light.,,21.62\r\nBZWSJ,8718,Kitchen,4,5,Yes,A person is grasping at some coffee.  Then they begin to tidy up a pile of shoes.,broom;coffee;counter;cup;items;mug,\"A person drinks from a cup before putting the cup on a counter.  The person then straightens items on the floor, picks up a broom and begins sweeping.;Person leaning against the counter drinking coffee, puts the mug on the counter and picks a broom and begins sweeping.\",c106 1.80 8.60;c109 10.50 16.30;c100 22.80 32.00;c107 2.60 23.10;c098 23.40 32.00;c102 23.90 32.00,31.33\r\nOXC4X,0KZ7,Bedroom,6,7,Yes,A person opens a wardrobe and takes out a pair of shoes and some clothes. They get dressed and leave the room.,clothes;shoe,A person takes some clothes from a shelf and gets dressed.,c055 24.80 35.30;c148 6.10 12.90;c148 6.10 21.50;c002 0.00 7.80,37.38\r\n02V54,1TZV,Stairs,6,7,Yes,A person is sneezing while walking up the stairs holding a towel. They then begin to snuggle a pillow that they found on the stairs.,blanket;pillow;towel,\"A person is walking up some stairs carrying a towel, they then grab a pillow and begin to snuggle it.;A person is  walking up the stairs holding a blanket then picking up a pillow and snuggling with it.\",c076 4.80 19.00;c078 8.40 19.00;c072 5.90 19.00,18.33\r\nE7FGK,UTMU,Bedroom,5,7,Yes,\"A person walks into the room and picks up a glass of water from the shelf.  The person sits on the bed and grabs a bottle of medicine from the bedside table, then takes some medicine and drinks the water.\",bed;cup;dish;glass;medicine;television;tv;water nightstand,A person sits on their bed and watched TV while taking medicine.;A young person walking into a room sitting on the bed and opening them up and taking some pills with water.,c135 4.50 30.80;c106 16.50 23.10;c129 13.90 23.00;c128 2.30 16.60;c107 14.80 24.30;c151 4.00 9.40;c118 3.10 28.30;c154 26.50 31.40;c132 14.30 22.50,30.75\r\nNUW2S,P6LJ,Bedroom,6,6,Yes,A person is awakening on a chair while snuggling with a pillow/,chair;pillow;table,\"A person sits on a chair and takes a pillow. They lay their head on a desk. They hold the pillow in their arms, stand up, and puts the pillow down.;A person walks to a chair and sits down. The person hold a pillow while sleeping on a table. The person wakes up and continues to hold the pillow.\",c059 1.00 36.60;c146 15.40 24.90;c151 0.50 7.90;c154 31.10 37.80;c076 0.60 38.70;c009 29.40 39.00;c011 4.10 36.30,37.79\r\nF9RY4,9Y7F,Basement (A room below the ground floor),5,6,Yes,Two people are drinking wine and snuggling in a bed by a coffee table.,bed;cup/glass/bottle;glasses;hands;sofa;table;water,\"Person A and Person B are playing a hand game while drinking a glass of water then they set their water on a table.;Two people are  sitting on a bed.  Each person is drinking. While drinking, they slap hands.  They then put the drinks on a table, and slap hands more.\",c009 14.90 20.70;c106 0.00 15.90;c123 0.00 32.00;c107 0.00 20.20;c152 5.20 11.30;c135 0.00 32.00,30.58\r\nU37WC,PO5L,Bedroom,6,7,Yes,\"A person is dressing and then undressing, then sneezing into a towel and finally eating a sandwich in a bedroom.\",bed;clothes;food;man;sandwich;shirt;towel,The person put on a shirt. The person then took off their shirt and sneezed. The person grabbed a sandwich and took a bite.;A man putting on a shirt and then taking it off and sneezing.,c065 22.90 29.20;c153 18.10 24.20;c156 22.90 29.20;c148 1.20 27.50;c034 20.70 25.30;c068 25.80 30.30;c067 23.10 30.30;c155 13.10 19.40;c000 1.70 11.50;c002 3.50 10.80;c033 18.40 24.50;c001 16.50 25.80;c003 15.70 27.70,32.08\r\nBIV8M,H8N1,Kitchen,4,7,Yes,A person is fixing coffee and taking groceries out of the cupboard in the kitchen.,closet/cabinet;coffee;cup;dish;groceries;shelf,a person making coffee opening and closing cupboards,c109 0.00 5.10;c130 7.70 16.80;c081 7.20 19.20;c119 0.00 6.50;c118 0.00 6.20;c113 5.00 10.70;c082 6.10 19.60,22.38\r\nB7T3B,D0RU,Bedroom,5,7,Yes,One person takes a picture from a box before lying in front of the window.,bed;box;doorway;photograph;picture;window,\"A person walks through a doorway.  Then they take a photograph from a box and lay on a bed to gaze at it.;A person walked into a room and looked out a window before pulling a picture out of a box. Then the person walked over to a bed, stretched out on the bed and looked at the picture.\",c092 7.90 14.50;c083 5.00 19.70;c044 12.20 22.00;c134 9.30 29.40;c097 20.40 28.40;c084 9.90 32.00;c088 9.90 32.00,31.25\r\nM5S4U,PO5L,Dining room,5,6,Yes,\"One person tidies up with a broom, then washes the front of a cabinet.\",broom;cabinet;cloth;floor;table;towel,a person sweeping and cleaning off cabinets;A person comes into the kitchen and starts sweeping the floor.  That same person then takes a cloth and wipes down a cabinet door.,c102 5.00 17.00;c114 19.00 28.00;c127 5.00 17.00;c036 26.40 30.90;c034 26.40 30.90;c033 19.20 30.10;c038 19.50 29.00,31.33\r\nIAQQZ,KFGP,Bathroom,5,6,Yes,Person is washing the doorknob with a towel and sitting the medicine on the counter.,doorknob;medicine;table;towel,A person is placing medicine on their sink in the bathroom.,,27.38\r\nTCM46,1TZV,Stairs,6,7,Yes,\"A person is grasping a book, then opening it, next taking off shoes and finally turning off a light on the stairs.\",book;light;shoe,A person standing in a hall picks up a book turns takes their shoes off .The person turns and turns the light off.,c026 0.00 24.00;c027 3.30 21.60;c032 3.80 12.60;c054 14.80 20.00;c057 13.90 18.90;c105 19.00 24.00,23.00\r\nO2294,YMXV,Bedroom,3,1,No,\"A person is standing in front of a sink, then undressing and then opening a bag in a garage.\",bag;clothes;doorway;shirt;sink;television,A person is taking off their shirt. A person then watches television.;The person turned off the sink and walked through the doorway into another room. The person undressed while watching television. The person then opened a bag.,c001 14.00 19.00;c155 4.70 18.90;c132 16.60 29.70;c021 22.60 32.00;c097 3.30 12.50;c002 3.10 18.30;c003 14.40 19.30,30.92\r\n8BBX0,28B0,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is walking into the room holding a bag of groceries. Putting them down, the person reaches out to grasp the door.\",bag;door;groceries,A person is walking from one room into another carrying a grocery bag.  That same person stops and pats the cat on the head before opening the door and leaving the house,c008 12.30 19.30;c020 0.00 25.60;c023 18.50 25.10;c097 20.20 25.60;c022 8.10 14.60;c006 19.70 25.50,25.75\r\nHKY1M,UTMU,Hallway,6,6,Yes,A person is tidying a cabinet and then sneezing into a mirror in a hallway.,cabinet;clothes;mirror;phone/camera,\"A person in a hallway reaches up for something in a closet, looks into a mirror, and has a sudden sneeze.\",c096 11.90 20.60;c004 0.50 14.90;c114 0.50 14.90;c153 13.60 19.30;c018 10.10 15.20;c087 13.20 20.40;c016 11.50 20.60;c015 10.70 22.70,23.67\r\nZKOCS,KQI6,Kitchen,7,,No,\"A person in their garage is gasping very hard onto a plate of food. They have something stuck in their nose, and start putting down the plate of food while sneezing.\",chair;dish;food;plate;table,\"A person in purple clothes carries a plate of food to a glass table. Sitting down at the table, the person begins eating from the plate.;A person walks in and is holding a plate of food,the person then sits down and begins to eat.\",c120 1.90 10.60;c063 1.50 9.10;c009 3.40 11.00;c156 11.80 20.60;c119 5.40 13.70;c061 11.10 27.70;c151 6.10 18.10;c059 7.60 31.00;c118 4.60 12.20;c011 9.00 17.50;c011 8.10 31.00,30.00\r\n75AX5,ENC8,Kitchen,6,6,Yes,\"A person runs into the kitchen and begins cooking food. The person sneezes onto the food, looks around, and shrugs. The person opens the refrigerator.\",bag;dish;door;food;man;pot;refrigerator;stove,A man running into the kitchen and putting stuff on the stove and sneezing.;A person comes into a room and grabs a pot and puts it on a stove.The person turns and gets a bag and try to open and puts it back .The person sneezes and turns to the refrigerator and opens the door.,c143 36.70 47.90;c062 13.40 25.10;c147 2.20 12.30;c153 32.20 38.00;c147 11.50 24.50;c023 13.10 22.40;c142 43.30 50.00;c061 18.70 34.90;c063 18.70 28.80;c150 0.40 7.60;c008 42.30 47.60;c118 7.50 12.90;c022 29.30 35.90;c120 7.00 11.50;c119 8.10 13.10,52.92\r\nUPJWV,ENC8,Kitchen,6,7,Yes,\"A person is cooking food on the stove. The person turns the stove off, turns out the light, and runs out.\",food;light;stove,\"A person is cooking on a stove. They turn off the light, and run out of the kitchen.\",c105 19.50 24.90;c147 9.70 19.20;c150 24.00 29.40,34.33\r\nOX5TB,WQ8Z,Living room,4,7,Yes,\"A person is dressing in clothes, then playing a game on a laptop and then grasping a box in a recreation room / man cave.\",box;clothes;couch;jacket;laptop;sofa,\"A person is putting on a jacket while using a laptop, then picks up a box.;A person is watching a laptop when the standup and put their jacket on then they sit back down and play on the laptop then they pick up a box\",c052 12.90 40.20;c040 36.80 44.00;c148 0.00 12.40;c123 0.00 9.10;c042 37.30 44.00,43.04\r\nG71VM,H8N1,Kitchen,3,6,Yes,\"A person is in a kitchen putting food in a cabinet, they then take a drink of water when they are done.\",cabinet;cup;dish;food;glass;shelf,\"A person places dishes in on a shelf before drinking from a glass of water.;A person is in the kitchen, they first open up cabinets, and then they begin placing things inside. After they take a drink from a cup the scene is over\",c106 26.90 33.60;c114 14.30 25.60;c119 19.30 26.10;c112 22.30 26.80;c152 30.30 35.70;c113 1.70 13.20,35.38\r\nNXUA9,YMXV,Home Office / Study (A room in a house used for work),5,5,Yes,\"A person is fixing the light on the wall. Then, laughing, the person walks over to the sink and washes their hands.\",doorway;hand;light;sink;wall,A person is standing on a chair to check the lights on the ceiling then goes and washes their hands.,c103 2.60 9.70;c139 15.80 26.00;c154 0.00 12.60;c097 13.10 19.00,31.46\r\n5NF0R,P6LJ,Living room,5,6,No,\"A person is sitting while the person looks at a picture. Then, throwing the picture into a box, the person picks up their camera.\",box;phone;sofa;table,\"A person sits down on a couch, puts a box on a table and begins to play with their phone;A woman puts a box on a table and plays on her phone.\",c015 24.00 31.50;c151 0.90 6.90;c009 5.90 13.00;c154 27.50 32.10;c123 0.40 7.00;c016 23.40 31.90;c042 2.90 12.20,32.33\r\nSVQFY,3531,Kitchen,6,6,Yes,\"In the kitchen, a person drinking coffee and eating a sandwich starts tidying up.\",coffee;cup;food;man;napkin;sandwich;sink;table,\"A person is drinking coffee, while eating a sandwich. A person puts the cup in the sink and begins tidying up.;a man sipping out of a cup and eating something.\",c065 8.10 22.30;c067 8.60 24.90;c106 0.00 9.40;c107 0.00 29.00;c156 14.30 24.90;c109 27.00 34.00;c068 7.60 27.60;c069 7.60 27.60;c110 0.00 27.40,32.92\r\nIXL74,4OHY,Kitchen,6,1,No,\"A person is sitting in a chair and eating at their desk. Smiling, the person begins to do their homework.\",chair;counter;food;pan;pot;stove;table,\"A person is eating at a counter, smiling, then starts to cook.;Someone is eating food while sitting on a chair, then messing with the stove and shaking a pot\",c059 0.00 17.90;c156 0.00 17.90;c154 12.60 19.30;c152 3.40 18.30;c147 14.60 35.00;c011 0.00 16.90,33.54\r\n3ZOI4,T7C3,Home Office / Study (A room in a house used for work),7,7,Yes,A person is running into the study holding a camera begins throwing food on the floor.,bag;camera;chair;floor;food;groceries;phone,\"A person is walking around a room holding bags and a camera they put one of the bags down untangle the others put another bag down then tie up the last bag and put it down.;A person is carrying a bag of groceries and a camera, they then set the groceries on the floor.\",c015 0.00 10.20;c126 5.30 11.50;c020 0.00 24.70;c022 18.50 25.50;c130 18.50 25.50;c024 14.00 19.00,25.58\r\nXTHL8,9PLL,Kitchen,5,6,Yes,A person is watching a bag that looks like it might fall off a counter.  Then a person is cooking in a pot on the stove.,dish;food;pot;stove;utensil,\"A person is standing in their kitchen, they walk over to their stove and light it. The person puts a pot on the stove, picks up a utensil and starts stirring the contents of the pot.\",c147 11.80 33.00;c119 11.20 18.10;c118 10.40 17.90,31.75\r\nCDIW7,KFGP,Hallway,4,6,Yes,One person walks in and puts a box of groceries on the floor under a window.,box;floor;groceries,A person walks down a hallway and puts a box in front of a door.,c130 6.30 13.60;c040 2.60 8.60;c042 6.60 13.50,20.29\r\nTJKGJ,UTMU,Kitchen,6,5,Yes,\"A person is washing the cabinet with a towel.  The person closes the cabinet, grabs a cup of coffee and sits down next to the window.\",cabinet;chair;coffee;counter;cup;dish;door;towel;window,\"A person cleans a cabinet door with a rag and then closes the door and puts the rag on a counter.  They pick up a cup, take a drink and sit in a chair while looking out a window.;A person walks up to a cupboard in the kitchen and starts rubbing it down with a rag. They close the cupboard, sit the rag down, grab a mug and sit down in a chair and take a sip and look out the window.\",c033 0.00 18.20;c092 23.50 33.00;c114 0.00 14.80;c107 16.30 33.00;c151 18.80 24.10;c059 20.10 33.00;c038 0.00 17.90;c112 11.10 18.40;c106 21.90 33.00;c110 14.70 23.50;c006 9.40 17.70;c154 0.70 21.60;c118 16.30 33.00,32.04\r\nB17UQ,YMXV,Recreation room / Man cave,5,4,Yes,A person is fixing the pillows on the sofa before putting the remote on the table to watch the television.,bed;pillow;sofa;table;television,A person is sitting on a sofa watching television. The person puts the remote on the table then fluffs a pillow before laying back.,c077 21.70 29.50;c123 0.00 33.00;c009 4.30 12.30;c132 1.00 11.80;c079 21.70 26.50;c135 1.30 33.00,31.50\r\nTPHRR,ZAWX,Kitchen,4,5,Yes,A person is smiling as the person sits at the table. The person puts their groceries away and begins cooking.,burner;chair;counter;food;match;spatula;stove;table,A person is sitting in a chair and smiling. Then they get up and go over to a counter. They move some food out of the way and then light a match. They use the match to light a burner.;A person is smiling and sitting on a chair then begins to tidy the counter and turns on the stove and begins to cook.,c147 16.30 36.20;c152 1.00 8.00;c154 10.00 15.00;c059 0.00 13.00;c012 12.00 19.00;c062 14.30 20.30,36.50\r\nRJDH2,Z68L,Bedroom,7,7,No,Person is sitting at a desk in their bedroom contemplating their homework. They then get up grasping a pillow and throw it at the window looking upset.,bed;blanket;book;chair;desk;homework;laptop;paper;pillow;table;window,\"A person sits in a chair, holding homework. The person looks at the homework, puts it on the desk, and walks over to the bed. The person then removes the pillow from the bed and throws it against the window.;A person is sitting down at a desk holding their homework. The person looks at a laptop and stands up. The person walks over to the bed, grabs a pillow, and throws the pillow against the wall.\",c009 13.60 20.70;c014 0.00 20.10;c115 0.00 20.50;c079 18.30 24.50;c154 15.50 21.40;c059 0.00 20.80;c011 0.00 16.80;c116 12.80 19.80;c080 17.00 26.60;c026 0.00 19.30;c027 3.80 10.00;c025 12.40 18.60;c151 0.00 4.80;c028 13.90 19.50;c032 1.90 16.10,29.58\r\nGQCUX,XXN8,Bedroom,7,7,Yes,A person puts a glass on a blanket and laughs.,bed;blanket;cup;glass,A person lying on a blanket on a bed is laughing while they pound a glass against the blanket. The person then stands and walks away.;A person laying on a bed picks up a glass and puts it down.  The person laughs.,c107 0.00 7.90;c149 0.00 19.00;c134 0.00 19.80;c072 0.00 18.70;c110 0.00 4.50,30.58\r\nWEVQH,YA10,Living room,4,6,No,A person is standing by a sofa. They begin to throw clothes from a bag.,bag;clothes;clothing,A person is picking up a bag from the floor. The person takes clothing out from the bag and throws it off of the floor.,c003 8.80 26.00;c020 5.80 26.00;c021 5.20 11.60;c023 4.60 10.90;c002 7.10 20.60;c022 21.30 26.00;c024 21.70 26.00,25.29\r\n0WLCJ,XXN8,Living room,5,7,Yes,A person throws a blanket on the sofa.  The person then watches the doorknob to see if it will turn.,blanket;doorknob;sofa,Person throws blanket onto couch. Person then walks to door and grabs the doorknob.,c074 1.80 7.20;c141 6.80 15.60;c071 0.00 2.60,30.92\r\nVG0NZ,3H6W,Bedroom,5,7,Yes,A person eats some food then they begin laughing at something playing on their phone.,phone;sandwich,A person is walking around the room eating and looking at a phone.;The person walks in and eats a sandwich while looking at their phone and laughing.,,20.17\r\nG2J63,YMXV,Bathroom,4,3,Yes,Person is standing by sink looking in mirror. Another person is sitting on chair and throwing towel on floor.,floor;hair;mirror;sink;towel,A person washes their face while looking in a mirror. Another person sits in a chair and drops a towel on the floor.,c036 16.60 22.80;c059 13.70 32.00;c096 0.00 16.90;c126 14.40 22.70;c034 17.10 22.50;c144 0.00 5.80,31.46\r\nVVMYX,WQ8Z,Kitchen,7,6,Yes,A person pours a drink before going to stand by the door to take their medicine.,food;glass;medicine,\"A person is standing in a kitchen. Pours something into a glass, takes pills and leaves.\",c129 20.10 34.10;c107 0.00 9.90;c110 8.60 14.50;c109 8.60 23.40;c108 0.00 10.50;c156 27.30 34.70,35.25\r\nJCWVV,6NQX,Living room,5,7,Yes,A person is walking with a book to the table.  The person is grasping a towel to dry the table.,book;cloth;couch;cup;rag;sofa;table;towel,\"A person walks into a room holding a book, puts it down and sits on a couch. Then they get up and grab a rag and start wiping down a table. They move a cup out of the way.;Person coming into the room carrying a book, puts the book on the table, and then starts to clean the table with a cloth.\",c009 0.00 9.70;c033 5.50 12.80;c123 3.00 13.40;c026 0.00 9.50;c013 8.00 25.00;c028 5.20 10.60;c151 2.30 9.00;c154 9.00 15.30;c011 4.70 13.30;c012 9.90 25.00;c115 0.00 9.70;c116 5.00 10.00;c038 9.40 25.00,24.33\r\nM3H7V,8718,Living room,3,6,Yes,A person is watching television while undressing in the doorway.,clothes;doorway;pants;shirt;shoes;television;tv,someone taking their shirt and shoes off while watching tv;A person is standing in a doorway while watching a television. The person starts removing clothes and then smiles.,c155 6.60 24.90;c132 0.00 30.00;c002 12.50 18.30;c003 2.80 8.20,28.58\r\nYIK5I,9PLL,Living room,5,7,Yes,\"A person is sitting at their desk watching television. Then the person stands and begins tidying up the room, opening the door to air it out.\",book;chair;couch;door;floor;man;notepad;papers;pen;shelf;table;television;tv,A man messing with papers and opening his front door.;Person is sitting down writing in a notepad and watching tv. Person gets up to remove objects on shelf and open door. Person then sits back down.,c008 20.10 28.50;c151 29.40 34.00;c154 9.50 14.90;c009 13.20 20.20;c132 0.00 12.50;c082 12.70 22.10;c032 0.00 8.40;c014 0.00 11.30;c081 15.20 22.40;c028 14.50 19.30;c127 13.40 20.80;c011 0.00 13.90;c059 0.00 13.10;c145 0.00 11.00;c115 13.20 19.20;c027 0.00 4.50,32.67\r\nMQGVS,UTMU,Laundry room,5,7,Yes,\"A person stands in the laundry room, washing a blanket in the sink. The person sneezes.\",blanket;floor;head;towel;washing machine,\"A person picks up a blanket from the floor, rubs it against something unknown puts it on top of a washing machine. The person then hangs their head and leaves.\",c070 4.40 26.60;c071 20.70 27.10;c073 3.00 9.70;c074 22.20 28.20;c075 5.90 13.00;c127 4.30 27.10;c037 4.10 27.10;c153 23.30 28.40,32.17\r\nOFCU3,YMXV,Bedroom,6,5,Yes,A person is sitting working on homework then they get up and run with a pillow.,book;homework;paper;pillow,A person is reading some pages taken out of a book. The person then picks up a pillow off the bed and goes to put it in the closet.,c116 24.80 30.30;c115 0.00 28.10;c079 25.20 31.90;c154 24.00 30.50;c032 0.00 28.00;c076 25.20 32.00;c077 27.40 32.00;c028 23.20 29.10;c027 0.00 3.20;c025 22.60 28.30,31.04\r\n88Z3M,DXDI,Dining room,6,7,Yes,A person is walking through the doorway and then begins watching out the window.,door;window,\"A person walks through a door way into a room walks over to the window and looks out.;The person walks into the dining room, thinks for a second, and then looks out the window\",c092 10.30 28.00;c097 0.90 5.40,27.17\r\nB5YYS,ZAWX,Bathroom,6,7,Yes,A person runs into the bathroom and undresses quickly while trying to close the door which won't close because the broom is leaned against the door jam.,clothes;door;vest,Person walks into the bathroom and removes her vest.  Person tries to close the door but there is a broom in the way.,c006 14.30 22.60;c155 5.50 15.50,31.08\r\nPYIA3,2RTW,Kitchen,6,7,Yes,\"A person is putting a bag into the refrigerator. Grasping the handle, the person turns and begins watching TV over their shoulder.\",bag;food;refrigerator;television,\"The person was holding a bag. They walked to the refrigerator to put the bag inside. While the person held the refrigerator door open, they watched television.;The person walks to the refrigerator, and opens it, then begins to watch the television.\",c143 1.40 7.00;c132 5.60 31.00;c063 3.30 10.30,29.58\r\nNBAGZ,1TZV,Laundry room,4,7,Yes,\"One person throws down a towel, then pours something into the sink.\",cup/glass/bottle;dish;sink;something;table;towel,Person walks into a laundry room pick up some clothes pour something from a cup then turn on the water at the sink,c033 0.00 3.70;c009 15.50 20.80;c035 0.00 4.10;c107 3.50 23.20;c111 6.40 18.60;c036 0.00 4.50;c118 3.00 26.00;c110 3.00 26.00,24.75\r\n6FYKZ,RXM9,Living room,6,6,Yes,\"A person leaves a broom in the corner by the washing machine.  The person tidies up the area, putting a laptop on a shelf by the wardrobe.\",book;broom;dresser drawer;laptop;paper;shelf;tablet,\"A places a broom by a dryer and carries some books around.;A person puts away a broom beside the washing machine. Grabs some homework off the top of the washing machine and walks over to put it away. The person picks up clothes off the floor and puts them inside a dresser drawer and tidys a few things on top. The person walks back to the washing machine and closes a tablet, then picks it up and walks away.\",c116 4.30 13.60;c026 3.30 22.40;c028 5.20 12.30;c099 0.00 5.20;c082 14.40 26.20;c050 25.10 30.30;c046 26.10 31.40,32.08\r\nTU2GE,RXM9,Laundry room,6,6,Yes,\"Person walks into laundry room while talking on the phone.  Person then ends call, pulls out towels from the dryer, and begins to fold the towels. Person then grabs a towel close to face, smells it, and smiles.  Person finishes folding towels, puts them on the shelf and walks out.\",clothes;phone;towel,A person is talking on a phone and taking clothes and a towel from a dryer.,c002 14.90 20.40;c035 10.10 16.30;c019 0.00 9.50;c002 10.00 16.60;c015 0.00 10.30;c017 4.50 10.30;c004 11.20 29.50,30.67\r\n3WRE7,RXM9,Garage,6,6,Yes,\"A person is working on homework in the laundry room. The person stands up, smiles, and leaves through the doorway.\",book;door;floor;homework;paper;pen,\"A person is sitting on the floor doing homework, they then get up and walk out the door.;The person is sitting in front of a washing machine and copying words from a larger book into a smaller book.\",c097 27.30 32.00;c145 0.00 29.90;c154 26.40 32.00;c125 0.00 28.20;c032 0.00 29.50;c026 0.00 32.00,30.62\r\n5XLBY,YMXV,Home Office / Study (A room in a house used for work),5,6,Yes,\"Person is walking and smiling, then puts book on table.\",book;doorway;table,\"A person walks into a room holding a book, then puts it down on a nearby desk.\",c028 27.70 32.00;c009 27.80 32.00;c115 0.00 32.00;c097 0.00 3.90,30.83\r\nZA7ST,Q4IF,Kitchen,7,7,Yes,A person is sneezing while opening medicine.  Then a person is picking up a bag.,bag;box;medicine;packet;shelf,A person reaches for some medicine on a shelf and tries to open it.The person sneezes a couple of times and keeps trying to open the medicine.The person bends over and picks up a box.;{};A person takes a pack off of a shelf and continue to open the package.The person sneezes a couple of times and bends over and picks up a box .,c128 0.40 7.60;c153 9.00 16.70;c041 30.40 35.00;c044 27.70 34.30;c128 0.00 31.60;c021 25.70 34.30;c023 28.20 32.40;c020 31.80 35.00,33.75\r\n4C31V,YMXV,Living room,4,1,No,A person is in the basement lying on the couch with a blanket laughing while watching television.,blanket;floor;television,\"A person is laying on the floor and covering up with a blanket. The person is watching television.;A person is laying on the floor, snuggling a blanket, and watching television.\",c072 0.00 33.00;c124 0.00 33.00;c132 0.00 33.00,32.25\r\nN39RU,9Y7F,Dining room,7,6,Yes,Two people are laughing as they finish up their sandwiches and glasses of wine at the dinner table. They then get up to leave the room.,cup;food;glass;sandwich;table,TWO PEOPLE ARE SITTING ACROSS FROM EACH OTHER WHILE EATING. THEY TOAST TO SOMETHING AND THEN GET UP FROM THEIR SEATS AND WALK AWAY,c011 0.00 27.70;c065 0.00 13.10;c106 9.20 25.20;c149 19.90 25.80;c154 22.40 28.30;c156 0.00 7.30;c110 8.00 16.90;c109 18.70 24.20,30.33\r\n7H7PN,6PZN,Living room,5,5,Yes,\"A person opens a box and rummages through a bunch of clothing. Another person sits at a chair, watching them.\",bag;blanket;chair;clothes;clothing;floor,\"A person is sitting on the ground, taking clothes out of a bag and tidying them in stacks. Another person is sitting on a chair, watching the first person.;Two people are in a room.  One person is sitting on the floor angrily taking clothing and a blanket out of a duffel bag. The other person is sitting in a chair passively watching the person remove the objects from the bag.\",c059 0.00 31.00;c000 8.40 29.00;c001 14.40 22.80;c004 22.30 31.00;c125 0.00 31.00;c021 0.00 5.20;c002 2.40 8.40,30.38\r\n1Q4P9,BYF9,Home Office / Study (A room in a house used for work),6,6,Yes,A person is sneezing into a towel and then grasping a book in the recreation room / man cave.,bed;book;towel,A person is sneezing into a towel while sitting on a couch and then picks up a book.,c026 17.80 22.00;c033 0.00 22.00;c153 0.00 11.40;c154 10.30 16.20;c135 0.00 15.40,20.96\r\nTYYZK,5LWB,Bathroom,3,1,No,\"A person walks into the bathroom, holding a laptop bag. The person removes their laptop, then closes the bag.\",bag;doorway;laptop;paper/notebook;toilet,A person wearing a backpack walks into a bathroom and sits on the toilet. The person takes off the backpack and takes out a laptop computer. The person then zips the bag closed.,c021 17.70 26.40;c047 23.50 42.00;c151 9.20 15.20;c097 2.30 10.30;c117 17.00 40.50;c050 16.80 40.10,41.38\r\nPRA3Z,BYF9,Bedroom,7,7,Yes,A person is eating a bag of chips as they talk on the phone. The person drinks from a can of soda.,bag;can;food;phone,\"A person is sitting on a bed while eating food from a bag, they take a bite and put it back into the bag. They reach behind them to grab a drink and take a sip, all while talking on the phone.\",,20.04\r\nIIJ5I,C7O9,Kitchen,3,7,Yes,A person awakens in their kitchen holding their homework. They begin cooking on the stove.,food;frying pan;paper;stove,The person dropped paper inside the stove and reached in to get it out before stirring something on the stove.,c147 15.50 29.00;c116 13.10 20.40;c115 7.80 19.80,28.25\r\n59CDL,D0RU,Bedroom,5,6,Yes,A person standing in the doorway of their recreation room eating a sandwich walks to the window and sits in the chair to stare outside.,chair;doorway;food;sandwich;window,\"The person is standing and eating a sandwich by the doorway. Still eating the sandwich, the person walks to the chair and sits down to look out the window.\",c092 21.70 33.00;c065 0.00 33.00;c059 21.10 33.00;c156 0.00 33.00;c151 20.10 25.90;c067 0.00 33.00,32.00\r\nY91JG,BYF9,Stairs,5,5,Yes,A person is leaving books on a table and then sneezing into a mirror on the stairs.,book;table,A person is going up the stairs holding a book.  That person sets it down and sneezes.,c009 3.80 11.40;c153 7.20 16.60;c028 4.60 11.30;c026 0.40 10.90,18.04\r\nTIJOY,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person sits at the bottom of the stairs, grabs some dishes out of their groceries, and begins eating. Another person walks up and pours their drink out.\",bag;cup;floor;food;groceries;stairs,\"A person is sitting on the stairs with a bag they open the bag take out some food and eat while another person comes over with a glass of water they take a drink walk behind the person with the bag and dump out their water.;Person sitting on steps, opens a bag, takes some food out, and eats while another person walks in drinking and goes upstairs.\",c106 17.70 26.80;c156 6.30 14.60;c021 3.10 11.90;c063 7.90 13.50;c110 18.20 33.00;c061 2.80 21.70;c125 0.00 21.70;c020 2.00 21.90,31.75\r\nM6XX6,YMXV,Bedroom,4,5,Yes,A person is sitting in a doorway laughing while holding a pillow.,floor;pillow,A person is sitting on the floor hugging a pillow and laughing.,c078 9.00 33.00;c149 0.00 33.00;c152 0.00 33.00;c125 0.00 33.00,31.92\r\nXNR76,HR43,Bedroom,7,7,Yes,\"a person playing a game on their bed, get's up and grasps a doorknob.\",bed;doorknob;phone,A person plays on their phone while sitting in bed.;A person is sitting on a bed texting on a phone. Then they get up off the bed and touch a doorknob.,c135 0.00 31.20;c154 27.20 35.00;c015 0.00 35.00;c016 0.00 32.50,33.67\r\n2Q2LA,H8N1,Kitchen,5,7,Yes,\"A person is tidying dirty dishes, putting food in the refrigerator and then leaving a kitchen.\",dish;food;refrigerator,Person entering in the kitchen puts the dishes appropriatley,c142 14.10 19.80;c143 8.50 14.80;c118 0.30 5.10;c062 7.50 19.50;c119 0.00 10.10;c120 0.00 8.00,21.46\r\nR8OTI,C7O9,Pantry,7,7,Yes,A person walks through the doorway of a pantry and start tidying up a few dishes before leaving.,dishes;doorway;garbage can;groceries;shelf,This person walks into a pantry and arranges dishes on a shelf before walking away.;A person enters the pantry and rummages through several items before arranging the garbage can and leaving.,c097 0.00 6.30;c082 2.00 21.30;c130 17.60 24.00,30.58\r\nDGMDT,4I2W,Living room,5,4,Yes,\"A person walks down the hall, opening a sandwich. The person gets out their phone and takes a call.\",bag;food;phone;sandwich;table,\"A person is walking around a room and picks up a bag off of a table.  They inspect the contents of the bag, put the bag down, and then pick up their phone and answer it.;Person walks around in room, grabs bag, opens it and looks in it. Person puts bag back on table, picks up phone and talks on it.\",c067 14.20 30.00;c015 22.00 30.00;c022 20.80 26.80;c023 3.90 11.70;c018 23.60 30.00;c016 22.80 30.00;c021 3.40 16.40;c061 7.60 23.80;c020 5.80 26.50;c019 26.50 30.00,29.25\r\n8CJML,LWUV,Hallway,6,6,Yes,\"A person is in a hallway tidying with a broom, they then snuggle with a pillow they got from a table.\",broom;floor;pillow,A person is sweeping the floor with a broom when they are done they pick up a pillow and snuggle with it then they leave the room.,c102 0.20 23.40;c078 17.60 30.00;c127 0.10 24.40;c100 0.70 7.20;c079 16.30 22.80,29.29\r\n5O31N,P6LJ,Hallway,5,7,Yes,\"One person puts a chair against the door to keep it closed, then smiles and starts undressing.\",chair;clothes;door,\"A person closes a door and places a chair in front of it and begins taking off her clothes;A person closes a door, then moves a chair in front of the door. They then get undressed and throw their clothes on the chair.\",c006 2.10 9.10;c155 22.80 35.90;c155 31.90 42.00;c003 33.10 38.80;c002 34.80 40.40;c097 1.30 12.60;c000 32.10 42.00;c001 32.10 42.00,40.58\r\nKRZW8,D0RU,Other,4,7,Yes,Person sitting with their laptop open looks at their phone and starts laughing.,floor;laptop;phone,A person is sitting on a carpet with a laptop on their lap. The person then picks up cell phone and smiles while looking at it.;A person sitting on the floor looking at their computer and then checks their cellphone smiling and laughing.,c047 2.00 33.00;c052 2.00 18.00;c015 17.00 33.00;c016 17.00 33.00;c149 21.00 32.00;c152 28.00 33.00;c125 0.00 33.00,31.54\r\nRK4U5,0RNU,Garage,7,7,Yes,A person takes a picture from a bag then throws it down.,bag;book;floor;magazine;picture;table,\"This person picks up a bag, pulls something out, and begins looking at it, then throws it on the floor.;person takes magazine out of bad and throws it on the ground\",c021 0.00 6.30;c126 25.00 30.00;c020 0.50 11.40;c031 25.10 30.00;c032 8.30 28.80;c026 6.30 29.90;c012 0.00 11.70,29.38\r\nQFDKV,ATJI,Kitchen,6,6,Yes,\"A person walks into the pantry to get a bag of coffee, then smiles and grabs a box of cookies too.\",box;coffee;cup,A person is fixing their hair. A person then gets a cup of coffee. A person then picks up a box and holds it.;The person walks towards the kitchen cabinets and looks through them. The person finds a package.,c040 14.50 28.40;c152 20.10 28.10,32.96\r\n51ZY5,ATJI,Kitchen,6,6,Yes,A person takes a picture of a sandwich that they just made. The person looks at the picture and laughs.,phone;picture,\"A person walks into the kitchen holding their phone they take a picture  and laughing then they walk back out.;A person is walking into the kitchen and laughing at their phone, they then run out of the kitchen.\",c085 7.70 15.80;c149 7.70 15.80;c015 4.90 15.50;c150 11.40 17.30;c087 5.60 12.10;c016 5.20 16.70,23.12\r\n7GYR4,HR43,Living room,6,7,Yes,A person lying on the sofa grabs a bag and puts it on the floor. The person sits up and takes a drink of coffee.,bag;couch;cup;dish;mug;sofa,A person is sitting on the couch and picks up a bag and then takes a drink from a mug.,c106 20.70 28.70;c123 0.00 31.00;c119 27.70 31.00;c120 20.00 25.20;c118 25.60 31.00,30.46\r\nC3HIN,DXDI,Home Office / Study (A room in a house used for work),6,7,Yes,A person is in their home office undressing by taking their clothes off. They are smiling because they are happy. They take a sip from a glass of coffee.,chair;clothes;coffee;cup;desk;dish;glass;picture;table,\"A person is sitting on a chair at a desk, smiling at a picture. The person then takes off their shirt, and picks up a glass of coffee from the desk. The person takes a sip of coffee.;A person is sitting at a desk they take of their jacket and put it on the back of a chair and then they take a drink of their coffee.\",c152 0.00 4.00;c059 0.00 21.00;c110 9.80 19.90;c107 10.30 20.30;c155 0.00 11.70;c011 0.00 21.00;c152 0.00 9.70;c106 11.70 17.90;c109 14.10 21.00;c001 4.50 13.50;c118 9.30 20.60,20.42\r\n2TWI2,LTAC,Living room,7,7,Yes,A person is holding a sandwich then processds to sneeze next to a table.,doorway;food;sandwich,A person enters a room and stands around holding a sandwich.,c067 0.00 36.00;c097 0.00 2.50;c061 0.00 36.00,35.25\r\nA2EY4,F56T,Kitchen,5,7,Yes,Person is sitting by refrigerator  playing with blanket and pair of shoes.,blanket;refrigerator;shoe,\"A person walks into the room holding shoes and wearing a blanket. the person opens a refrigerator door, closes it and plays with the shoes then snuggles in the blanket.\",c072 15.80 24.40;c142 3.20 8.60;c143 1.50 6.90;c053 0.00 33.00;c070 1.22 33.00,31.54\r\nGV9M4,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,\"A person opens the closet door, drinking a glass of water. The person looks into the mirror, then takes a vacuum cleaner.\",broom;cup;dish;door;glass;mirror;water;window,\"A person opens a door and walks through into a room, they then take a drink from a glass while looking out a window. Afterwards they look into a mirror and smile then grab a broom.;A person walks through a door, takes a drink from a glass of water, checks his appearance in a mirror, and then picks up a broom.\",c106 12.40 17.00;c100 24.20 29.20;c152 24.50 29.20;c094 18.10 26.20;c008 1.30 10.90;c098 24.00 31.00;c097 6.00 12.60;c109 13.70 19.10;c092 20.40 26.10;c110 13.30 19.40;c118 10.00 27.10;c107 10.00 27.90;c109 5.70 28.30;c092 6.00 30.70;c110 8.30 28.00,30.21\r\nW7EHF,5LWB,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is opening a box.  A person is tidying the contents of a box including a phone and pillow.,box;floor;phone;pillow,\"A person is standing in a doorway.The open a box, and put a pillow and a phone into the box before closing it.\",c017 10.10 20.40;c039 23.10 29.00;c041 0.00 9.90;c077 16.70 24.00;c125 5.00 29.00,27.79\r\nEDPTO,P6LJ,Living room,5,7,Yes,\"A person is grasping a blanket. Then the person walks to stand by the window, putting the blanket down and picking up a sandwich to eat.\",blanket;clothes;food;plate;sandwich;window,\"A person is folding a blanket, then looks out a window.;A person holding a blanket looks out of a window. They then pick up a plate and take a bite from a sandwich on it.\",c092 16.80 22.80;c065 32.90 37.30;c067 31.50 36.90;c070 6.70 27.40;c075 7.10 12.70;c156 28.20 34.30;c000 0.00 27.20;c061 22.80 39.30,40.29\r\nOZIJ7,D0RU,Bedroom,7,6,Yes,A person in the bedroom is laughing and smiling because they just realized that the desk is blocking the door.,bed;blankets;desk;person,A person is lying on a bed and then laughs at a glass sitting on a table.;someone laying in a bed and smiling and laughing,c134 35.20 38.00;c149 15.30 23.80,37.21\r\n23YS1,Z68L,Kitchen,6,7,Yes,A person walks into the kitchen with a bag of groceries and sets them down. Using a chair to stand on they put a tin of coffee away on a shelf.,bag;cabinet;chair;dishes;door;glass;groceries;shelf;towel,\"A person walks into a kitchen with a bag of groceries. The person sets the groceries on a counter, and then begins to put them away. The person moves a chair to stand on, opens a cabinet door, and puts groceries away there. The person then closes the door, and puts the chair away.;A person walks to the kitchen washes dishes then grabs a chair and cleans the shelf on top of the sink.\",c060 29.10 43.00;c130 10.40 18.60;c082 33.60 43.00;c114 33.90 43.30,60.25\r\n9GLQZ,C7O9,Stairs,5,7,Yes,One person runs up the stairs with groceries when another person passes eating a sandwich.,bag;box;food;groceries;sandwich;stairs,As a person runs up the stairs another person walks down eating a sandwich.;a person holding a box runs up stairs and almost bumps into another person walking down the stairs while eating a sandwich. the person stops at the bottom of the stairs and finishes the sandwich.,c065 2.60 32.00;c020 0.00 8.60;c150 0.00 7.80;c156 3.20 32.00;c154 7.80 15.80;c067 0.50 32.00;c061 0.80 32.00,30.71\r\nG183W,OUKK,Living room,2,7,Yes,\"One person opens a chair, puts a blanket on it, then lies down and starts drinking and smiling.\",blanket;chair;cup;dish,A person put a blanket on a chair then begins to sit on the chair and drinks from a cup and smiles.,c059 11.30 35.30;c152 15.60 20.50;c151 11.50 17.10;c154 30.90 35.60;c118 13.60 36.50;c107 13.10 36.90;c106 17.10 29.50;c070 0.70 13.60;c071 0.00 14.00,36.25\r\nJAOPD,WQ8Z,Bedroom,6,7,Yes,\"A person walks into a bedroom, putting a bag on a shelf. They take their homework out of the bag and start playing air guitar with it.\",bag;book;paper,\"A person walks into a room with a backpack, removes a book, plays air guitar with it, and leaves.;A white male entered a bedroom.  He placed his book bag onto the bed.  He removed a book from his bag and used it to play air guitar.\",c020 0.20 11.80;c022 3.50 9.10;c115 7.80 25.00;c117 7.60 12.10;c024 4.00 9.20;c026 8.00 24.00,26.12\r\n5Q8C7,C7O9,Pantry,5,6,Yes,A person laughs as they pour of a bowl of cereal. The person sets the bowl down on a chair and takes a picture on their phone.,box;cereal;dish;food;phone;table,A person is making cereal and checks their phone.,c016 18.40 31.00;c087 22.90 31.00;c062 15.20 20.70;c044 6.50 13.00;c118 28.20 31.00;c009 28.20 31.00;c015 28.20 31.00,30.12\r\nYMFWC,9PLL,Bathroom,5,7,Yes,A person is tidying the towels in the bathroom. They pick up some shoes off the floor and smile.,clothes;floor;shoe;towel,\"A person hangs a towel on the wall, then puts shoes outside the door on the floor.\",c034 2.10 10.20;c127 8.00 16.00;c054 13.70 20.40;c001 8.50 19.60;c037 0.00 10.20,31.33\r\nDZ2J6,Z68L,Recreation room / Man cave,6,6,Yes,A person sitting on a couch is eating food while working on their laptop which sits on top of a pillow on their lap.,chair;food;laptop;pillow;sofa,A person is eating an apple while looking at a laptop which is sitting on a  pillow.,c061 0.00 31.00;c051 0.60 31.00;c076 0.00 7.00;c156 0.00 31.00;c151 1.60 9.80;c154 26.80 31.00;c078 0.00 5.60;c059 1.80 29.50;c047 0.00 31.00,29.96\r\n10INO,18IT,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is pouring a cup of coffee from the coffee pot. The person puts the pot back and checks their phone.,ball;chair;coffee;cup;door;newspaper;papers;phone;table;towel,A person is walking into a room with a ball in their hands and towel wrapped around their neck. They begin to read a newspaper and drink coffee then play on their phone.;a person walking through a door with a sports ball and sits down at a table for a drink,c008 2.80 13.30;c015 56.40 88.00;c151 12.00 22.50;c011 8.50 88.00;c106 44.20 62.60;c016 62.10 83.10;c097 2.80 10.30;c017 81.30 87.10;c110 24.60 30.40;c009 8.00 12.90;c018 61.20 66.60;c059 15.00 88.00,87.21\r\nG64VQ,HJZQ,Stairs,6,6,Yes,A person is undressing on their stairs playing a game on the phone. The person puts the phone on the stairs and grabs a pile of dishes before leaving.,clothes;dish;phone;shirt;stairs,A person is standing on the stairs taking off their shirt with a phone in their hand then  they pick up dishes from the floor and leave.;a person holding a phone and takin goff their shirt while on stairs.,c015 0.00 3.80;c120 26.60 31.00;c155 0.10 25.40;c118 27.10 31.00;c000 18.90 31.00,30.08\r\n654CH,C7O9,Other,6,7,Yes,One person holding a phone and coffee watches laughing as another person throws homework across the room.,coffee;cup;homework;paper;phone,One person holding a cellphone and a cup as the other person throws multiple papers in the air.,c015 0.00 32.00;c107 0.00 32.00;c149 5.40 14.30;c154 0.00 32.00;c016 0.00 32.00;c117 0.00 32.00;c115 0.00 32.00;c152 0.00 32.00,30.75\r\nY0CA0,FNK4,Kitchen,7,7,Yes,A person is closing the cabinet while watching the stove.,cabinet;food;stove,A person is cooking on a stove while opening and closing cabinets.;A person is standing in front of a stove. There is a saucepan on the stove and the person appears to be cooking something. While the person is cooking they are also rummaging through several cabinets before walking out of the frame.,c113 8.70 14.70;c147 15.60 22.30;c147 17.20 28.60;c112 6.50 12.40,30.88\r\n87ZOX,C7O9,Stairs,6,6,Yes,A person stands on the stairs with a bag and a book while drinking from a mug.,bag;book;coffee;cup;laptop,A person is standing on the stairs drinking a cup of coffee while holding a bag and a book;The person hides on the stairs while drinking coffee and holding a laptop and bag.,c026 0.00 31.00;c020 0.00 31.00;c106 0.00 7.00,29.58\r\nPMVT7,C7O9,Stairs,6,6,Yes,Person is grasping the laptop and camera as they are eating a sandwich on the stairs.,book;food;laptop;sandwich,The person hides on the stairs with a laptop while eating a sandwich.;A person is standing at the stairs holding a book and eating.,c026 0.00 30.00;c065 0.00 30.00;c047 0.00 30.00;c156 0.00 30.00;c061 0.00 30.00;c067 0.00 30.00;c115 0.00 30.00,29.25\r\nKD3SK,C7O9,Stairs,6,6,Yes,\"A person stands on the stairs, talking on the phone. The person goes to the top, where they take a blanket from the shelf and snuggle up to it.\",blanket;phone;shelf,A person is talking on a phone.  Then they take a blanket from a shelf and snuggle with it.;Someone is standing on the stairs talking on their phone and then they go up to a closet and grab a blanket that they hug.,c072 19.60 26.50;c073 16.80 23.40;c017 12.20 18.20;c019 0.00 16.90;c070 17.00 30.00;c015 0.00 19.20,28.92\r\nX4DOF,PO5L,Living room,4,5,Yes,A person grasping a pillow is watching out a window.,floor;pillow;window,A person is picking up a pillow from the floor then walking over to the window and looking outside.,c092 3.50 13.60;c076 0.70 16.20;c126 11.80 17.00;c077 11.80 17.00;c079 0.00 5.50,18.08\r\nIJPY2,9Y7F,Kitchen,5,7,Yes,One person stands holding a box and a cup of coffee as another starts undressing by a desk.,box;clothes;coffee;cup;dish;shirt;table,\"a person is drinking out of a cup while holding a box, another person takes off a shirt in the background;A person stands while holding a box and drinking some coffee.  Another person begins undressing and looking at homework on a table in the background.\",c040 0.00 31.00;c106 0.00 31.00;c107 0.00 16.90;c155 0.00 31.00;c009 24.10 29.90;c118 0.00 31.00,30.33\r\n0DDYA,Z68L,Kitchen,5,5,Yes,\"A person is watching themselves in a mirror. The person puts on a pair of shoes, and runs out of the room.\",light;mirror;shoe,A person turns on a light and looks into a mirror. The person turns off the light then puts their shoes on.,c055 26.10 37.10;c096 7.60 27.30;c105 34.80 39.90;c104 3.50 9.90,42.50\r\nGS711,HJJ4,Recreation room / Man cave,7,6,Yes,\"A person is sitting in front of a mirror in their den, drinking out of a paper bag.\",bag;cup/glass/bottle;face;mirror,A person sitting in front of mirror holding a bottle in a brown paper bag. The person takes the bottle and tips it up and drinks and continues to look at them self in the mirror and touches their chin.,c096 1.90 14.00;c020 0.00 5.20;c106 0.00 5.80,20.50\r\nQZURX,ZAWX,Bedroom,6,6,Yes,\"A person is looking in the cabinet, and sneezes.  They take something off the shelf, and walk away.\",cabinet;shelf;something,A person stands by a desk and then grabs something from a shelf and walks out of the room.,,30.71\r\nPVZ3C,UTMU,Kitchen,5,7,Yes,Person is sitting on floor looking at picture on phone and laughing.,floor;phone,A person sits down on the kitchen floor while looking at their phone and then gets up,,25.21\r\n6E7Q4,8718,Living room,2,6,Yes,A person is putting a laptop on a shelf and then walks out the door,book;boots;computer;door;laptop;shelf,A person sitting on a couch types something on a computer. The person then stands up and places a book on a shelf underneath a television. The person then moves a pair of boots and opens a door.,c081 14.70 23.70;c051 0.00 12.30;c008 26.90 32.00;c052 2.20 10.90;c154 6.90 12.80;c028 9.10 22.30;c026 0.00 18.10,31.21\r\nX9T4M,0KZ7,Hallway,5,5,Yes,A person is running through the hallway with a glass.  Another person is watching and holding a broom.,broom;cup;glass,A person runs back and forth up and down a hallway while holding a glass while another person holds a broom and watches.,c098 0.00 29.00;c107 0.00 29.00;c150 0.00 29.00,28.04\r\nJTZZW,6RE8,Bedroom,6,5,Yes,\"One person grasps a laptop from a box on a shelf, watches a video on it, then closes the laptop and leaves.\",bed;chair;laptop;shelf;video,\"A person picks up a laptop off of a shelf they walk over to a chair and sit down and begin watching a video off of the laptop.;A person takes a laptop off a shelf, opens it once sitting in a chair, then sets it on a bed and watches a video.\",c047 2.20 8.30;c049 14.80 21.80;c051 17.80 32.00;c048 8.20 13.80;c050 0.00 7.30;c151 6.80 12.00;c059 7.70 32.00,31.33\r\nN3OKQ,4I2W,Living room,7,7,Yes,\"A person sits at a desk. The person grasps some dirty dishes, stands up, and leaves.\",chair;desk;dish;food;laptop;table,\"A person is sitting in a chair at a desk working on a laptop, they then grab a dish of food and leave.;A person sits at a desk using a laptop. The person looks at a plate of food, picks it up and gets up from their chair to walk away.\",c118 9.50 31.80;c011 0.00 23.90;c052 0.00 20.30;c154 13.60 21.30;c059 0.00 17.80;c051 0.00 19.70;c120 7.90 14.80;c063 8.00 13.60;c061 7.40 27.80;c014 0.00 27.00,31.88\r\nNBV2S,6RE8,Living room,5,7,Yes,A person is sitting in front of the television and opening a laptop.,laptop;television,A person is sitting in a chair while watching TV with a laptop in their lap.,c047 0.00 32.00;c132 0.00 32.00;c052 1.70 32.00,30.58\r\n72R6A,3VLX,Kitchen,6,7,Yes,\"One person washes the front of the refrigerator, then starts fixing the stove, using a flashlight to get a closer look.\",flashlight;refrigerator;spray bottle;stove;towel,A person picks up a towel and cleans the front of the fridge. They then open the stove and look inside of it with a flashlight.,c038 4.60 22.40;c035 0.30 6.60;c033 1.10 26.20;c034 19.90 26.50,50.88\r\nZIWZH,F56T,Kitchen,4,7,Yes,A person sitting in the kitchen looks at the cabinet and is holding a box.,box;cabinet;chair,A person is sitting on a chair opening a box and looking at a cabinet.;A person walks into a room holding a box. The person sits down in a chair and begins to open and close the box.,c041 1.60 13.50;c151 0.00 5.40;c059 1.60 35.00;c039 0.00 5.20,33.83\r\nF5OZ5,P6LJ,Living room,4,5,Yes,A person is in the basement throwing a pillow while laughing at the mirror.,floor;hair;pillow,A person carrying a pillow toward a lamp.The person play with their hair.The person throws the pillow behind them.;The person is holding a pillow while playing with their hair. They throw the pillow on the floor,c076 2.60 23.60;c080 19.50 25.00;c144 11.00 19.80;c126 19.90 26.00,27.71\r\n0EJAG,KFGP,Home Office / Study (A room in a house used for work),7,7,Yes,A laughing person has a blanket wrapped around their shoulders.  The person sits a glass and a sandwich down on the desk.  The person picks up the glass and drinks from it.,blanket;cup;desk;dish;food;glass;sandwich;table,\"Person walks into a bedroom , with a blanket over his shoulders, carrying a string and a dish of food.  He puts them on the desk and then picks up his drink to drink it.\",c009 2.30 12.40;c106 8.50 27.00;c107 10.20 27.00;c149 0.10 11.50;c118 0.00 10.60;c061 0.10 9.60;c063 0.00 5.90,26.25\r\nYMT5U,YMXV,Living room,6,7,Yes,A person is washing the desk and another person is closing the wardrobe.,bottle;door;man;rag;table;towel,\"There are two people in a bedroom, one of the people wearing a blue shirt is cleaning up some water he spilled while the second person in a black shirt is closing a door;A man holding a bottle and rag wiping off a desk/\",c012 0.70 18.10;c033 0.00 20.30;c038 1.60 21.30;c013 1.10 20.90;c006 18.70 28.00,31.00\r\nQO7SM,JVLO,Living room,3,7,Yes,\"One person is sitting, snuggling with a book by the window. Another person walks through with a phone.\",book;doorway;phone;sofa/couch;window,\"a man is sitting down and flips through a magazine and then hugs the magazine. A man is walking, talking on the phone.\",c032 0.00 14.80;c123 0.00 19.20;c015 16.30 32.00;c026 0.00 19.20;c025 9.30 15.40;c097 16.40 23.70;c149 15.80 23.90;c019 16.30 25.90;c029 4.80 11.60;c152 4.50 11.60,31.46\r\nBYDSE,QB52,Bedroom,5,4,Yes,A person awakens in their basement on a sofa with their head on a pillow. They stand and begins undressing.,bed;blanket;clothes;head;pillow;socks,A person is laying in bed with a blanket on them. They get up and sit up on the bed. They take their socks off.;A person awakens in a bed under a blanket with their head on a pillow. They sit up and undress.,c146 2.40 14.00;c155 20.10 32.00;c134 0.00 21.80;c072 0.00 16.30,30.58\r\n3AE3T,4OHY,Living room,6,7,Yes,A person is putting a laptop down near a person watching tv on a sofa.,doorway;floor;laptop;sofa;table;television,\"A person walks in a room carrying a laptop.  They person then places the laptop on a table and walks around the room while a second person sits on a sofa.;This person walks into the living room, sets a laptop on a table, then walks in a circle.\",c123 4.80 19.50;c047 0.00 13.60;c097 0.00 3.20;c009 2.10 7.10;c132 1.40 30.00;c049 2.10 7.10,29.33\r\nRRDAM,DXDI,Laundry room,7,7,Yes,Person walks through the doorway of a laundry room grasping a pillow and blanket. They place them in the washer and then run from the room.,blanket;clothes;door;pillow;washing machine,\"A person walks into the laundry room from the doorway, holding a pillow and blanket. The person puts both items in the washing machine and closes the door. The person then runs out of the room.\",c070 1.80 14.00;c076 1.50 12.70;c097 1.90 8.50;c150 18.70 24.00;c071 4.40 14.60;c077 10.80 18.50;c006 15.70 23.00;c001 6.00 13.90;c005 6.90 18.20,26.17\r\nR3O7U,54JK,Bedroom,5,7,Yes,\"A person is washing a window. They turn around, and start grasping a mug of coffee. They take a large drink and then run away.\",bed;can;cloth;cup/glass/bottle;dish;window,A person washing a window over top of a bed .The person throws the cloth on to the bed.The person turns and grabs a drink and takes a drink.;Person comes int to the room to the window and starts cleaning the window with a cloth that is thrown on the bed when finished.,c091 1.40 19.70;c000 3.10 25.40;c001 17.30 24.10;c003 17.30 24.10;c120 21.10 26.00;c109 32.50 38.60;c106 23.20 34.40,38.08\r\nNDBXV,3VLX,Hallway,7,7,Yes,A person is seen grasping a vacuum while laughing. They begin cleaning the area but notice a camera which they start to fiddle with.,camera;floor;person;phone;shelf;vacuum,A person walks in and starts to use a vacuum cleaner. They take a camera from a shelf and play with it before putting it back on the shelf.;a person using a vacuum and grabbing something off a shelf,c137 2.50 19.80;c015 18.30 46.00;c017 42.70 46.00;c018 17.70 23.70;c127 8.40 19.80,45.17\r\nFERH5,KFGP,Bathroom,4,7,Yes,Person is opening medicine cabinet and takes picture with camera and then starts sneezing.,cabinet;camera;medicine;picture,A person is opening their medicine cabinet and taking a picture then they sneeze as they close the medicine cabinet.,c112 26.00 31.00;c113 3.30 9.40;c153 17.30 22.20;c016 6.10 17.00;c015 0.10 10.00,30.04\r\n100U3,HJZQ,Bathroom,5,5,Yes,\"A person opens a bottle of medicine and looks inside. They throw the medicine in the sink, sneeze, and walk away.\",medicine;sink,\"An individual is pouring a substance into the sink, and sneezing afterwards.\",c128 0.00 5.60;c153 13.70 21.00,31.29\r\nBSF19,1TZV,Bathroom,7,7,Yes,A person grasps a bottle of medicine from the bathroom and throws it out the window.,cup/glass/bottle;medicine;shelf;tub;window,\"The person is throwing something out of the window while standing in the bathroom.;A person is standing in a bathroom, they pick up some medicine, open it and smell it, then throw it out the window.\",c128 2.00 11.00;c092 0.00 13.00;c089 0.00 18.10;c107 0.00 14.00,19.38\r\nO7OD2,PO5L,Hallway,7,7,Yes,\"A person is holding a bottle of medicine, then eating a sandwich and finally standing under the doorway in a hallway.\",cup/glass/bottle;doorway;food;medicine;sandwich,\"A person is holding a medicine bottle and eating a sandwich, they walk into another room then out and walk away.\",c097 21.30 26.10;c065 8.00 16.10;c156 8.00 16.10;c128 4.40 10.90;c061 0.50 27.90;c107 2.90 28.20,29.00\r\nYH70K,KQI6,Living room,6,6,Yes,One person walks in with a stack of dishes and another runs in with groceries.,bag;dish;doorway;groceries;table,A person is tidying up a desk. The person then walks over and puts some items on a table. Meanwhile another person walks past the first.,c119 21.50 26.80;c097 11.60 16.80;c120 1.50 12.10;c009 21.60 26.90;c012 0.00 12.20;c020 10.90 21.20;c118 8.60 23.00,31.50\r\nXET54,4OHY,Kitchen,3,3,Yes,\"A person is throwing a pillow onto the sofa. Then the person leaves the room, closing the door behind her.\",door;pillow;sofa,\"A person enters the kitchen holding a pillow, puts a pillow on a sofa, then exits the kitchen, closing the door behind them.\",c006 15.30 23.50;c076 9.80 15.70;c077 11.40 18.70;c097 9.30 16.20;c141 19.30 26.50;c080 9.90 17.90;c079 12.80 18.20,31.71\r\nOJIRT,P6LJ,Kitchen,6,6,Yes,\"A person is putting some clothes into a bag. The person closes up the bag, and then throws it into the corner.\",bag;clothes;towel,\"The person walks over and picks up a bag. They then begin to shove clothes into the bag before tying it off;A girl is standing in a kitchen, putting clothes into a garbage bag.\",c000 6.60 33.40;c021 3.30 11.90;c020 3.30 32.50;c024 27.60 33.50;c001 7.80 26.70;c033 13.80 21.90,34.25\r\n1X0M3,P6LJ,Kitchen,6,6,Yes,\"Grasping a box from a grocery bag, a person stands in the pantry and starts putting coffee in a glass container.\",bag;box;glass;groceries,A person is taking a box from a bag of groceries and doing something with a glass.,c130 15.50 21.90;c021 5.70 14.20;c043 7.50 15.00;c023 0.00 6.00,52.92\r\nVS7DA,P6LJ,Kitchen,6,6,Yes,\"Person turns the doorknob, opens the door to the pantry and turns the light on.  Person fixes the shelf in the pantry, smiles, and closes the pantry.\",closet/cabinet;door;light;shelf,Person open door and turns light on grabs something from self.;The person opens the pantry and turns on the light. They take something off the shelf then close the door.,c104 12.70 18.10;c141 2.40 10.60;c082 21.50 31.10;c006 30.60 38.20;c008 2.00 10.80;c097 10.10 19.50;c112 31.60 37.80;c113 4.00 11.40,39.75\r\nNS216,HJJ4,Bedroom,7,7,Yes,One person is awakening in their bedroom to an alarm from a phone. They try to turn it off but are not watching where they are grabbing and accidentally knock a book off of the nightstand.,bed;book;phone;table,\"A person is asleep on a bed. The person then halfway wakes up, knocking over a book and phone on a nearby table.;A person awakens on a bed and knocks a book and a phone off a table.\",c146 0.90 15.00;c134 0.00 15.00;c133 0.90 15.00,13.83\r\nWIUQN,HJJ4,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person drinking their favorite beverage in their home office opens a desk draw and retrieve a phone from it.  They look at a picture on it, and then begin playing a mobile game on it.\",chair;cup/glass/bottle;desk;drink;phone;picture;shelf;table,A person sitting at a desk takes a drink. The person picks up a phone and starts playing with it.,c015 6.80 26.00;c016 7.10 26.00;c018 4.90 10.90;c011 0.00 26.00;c009 2.90 8.30;c106 0.00 6.90;c059 0.00 26.00;c081 2.90 8.30,25.04\r\nS2L5Z,O1YY,Home Office / Study (A room in a house used for work),7,4,Yes,\"One person runs in, throws a camera on a chair, takes a stack of dishes and leaves.\",camera;chair;dish;phone;table,\"A person walks into the office and puts a camera on a chair, grasps a stack of dishes then walks away.\",c017 5.00 11.30;c120 9.80 18.40;c012 9.40 17.70;c118 10.90 18.10,29.88\r\nDKEB0,D0RU,Living room,6,6,Yes,A person is grasping for a cup of coffee while they are laughing at a picture they see in the newspaper.,bed;cup;floor;newspaper;picture,A person is sitting on the floor looking at a newspaper. They turn and grab a coffee cup and take several sips from it. Then they look up at the camera person and laugh.,c106 17.80 23.70;c109 26.70 33.50;c084 21.50 28.90;c088 20.00 27.10;c125 0.00 13.60;c107 11.70 17.50;c110 11.40 17.50;c152 14.80 19.80;c149 24.10 29.80;c134 0.00 23.90,32.62\r\n300LS,L4ZP,Hallway,6,7,Yes,a sandwich is sitting in the doorway of a hall. A person is laughing as they are running and jumping over the sandwich back and forth.,doorway;sandwich,A person is running in a hallway back and forth and there's a plate with food on it in the middle of the hallway.,c150 0.00 21.00;c097 16.50 21.00,19.83\r\nW882Y,L4ZP,Kitchen,5,6,Yes,A person is putting a bag on the counter. They begin opening the bag when their phone goes off. They start smiling as they look at their phone.,bag;counter;phone,A person walks into a room carrying a bag. They put the bag on the counter and retrieve a phone from the pocket of their pajamas and start talking on it.,c019 30.40 35.00;c021 17.50 28.00;c015 26.10 35.00;c018 24.00 32.50;c022 2.50 35.00;c020 0.00 13.40;c154 0.00 35.00;c023 0.00 35.00,34.46\r\n7P5R2,9PLL,Hallway,6,6,Yes,A person is opening a door and smiling. The person then grabs a bag from in the room and pulls out their homework.,bag;book;door,\"A person opens a door and picks up a bag. they get a book out of it, open it up, and look at it.;A person enters through a door. The person bends over to grab a bag and takes a book out of the bag.\",c021 13.40 20.50;c008 1.80 16.10;c027 22.20 32.30;c030 14.50 24.40;c032 20.40 34.00;c097 1.60 16.60;c141 6.00 15.10;c023 13.70 19.20;c020 15.20 34.00;c026 16.70 34.00,32.71\r\nNLXQE,HR43,Kitchen,5,7,Yes,A person eating in the kitchen is holding a box as they stand next to the refrigerator.,bag;box;food;refrigerator,a person eats some food in the kitchen and then smiles and laughs;Person in the kitchen standing there holding a box of cereal and bag of chips eating from them.,c040 0.00 31.80;c156 0.00 32.00;c061 0.00 32.00;c020 9.60 31.60;c152 0.00 31.80;c149 18.10 27.90,30.83\r\n7FAB3,XXN8,Kitchen,6,6,Yes,A person is standing in the kitchen opening a refrigerator. They take out some food from the refrigerator.,food;refrigerator;table,A person is standing in the kitchen in front of the refrigerator. They open the fridge and take out multiple food items and set them on the counter.,c063 5.50 32.00;c143 1.30 8.20;c062 7.20 32.00;c009 7.20 32.00,31.04\r\nJG7UX,KFGP,Kitchen,5,6,Yes,A person is undressing in front of the wardrobe. The person begins taking their clothes off the floor and walks them ot the hamper. Then the person opens the refrigerator.,cabinet;clothes;door;floor;refrigerator;wardrobe,A person opens a cabinet to place their hat inside. They then put a jacket into a bag and open the fridge.,c155 0.00 11.10;c154 0.00 19.00;c143 22.00 29.00;c113 0.00 3.70;c001 16.50 23.40;c004 10.60 21.50;c008 0.00 3.50;c002 10.40 16.20;c003 16.40 21.80;c112 9.30 18.30,27.58\r\nGFVSV,Z68L,Recreation room / Man cave,7,6,Yes,A person is snuggling on the couch with a comfy pillow. The person pours themselves a drink and opens a book to start reading.,book;chair;cup;pillow;sofa,\"A person holding a book sits down and pours some liquid, takes a drink and puts the cup down. They then open the book.\",c078 0.00 40.00;c026 4.70 40.00;c027 22.30 34.00;c151 0.00 5.00;c025 32.80 40.00;c027 20.70 28.10;c109 16.20 25.70;c108 3.90 18.40;c032 22.90 37.40;c106 14.40 21.20;c059 0.00 5.40;c110 5.50 11.90;c107 0.00 10.10,39.46\r\nBW03C,4I2W,Living room,7,4,Yes,\"A person is grasping a picture, while lying on a sofa in the basement.\",book;paper;picture;sofa;table,\"A person is sleeping on a sofa, they then wake up and pick up a picture from a table and begin looking at it.;The person siting on the sofa picked up a paper from the table and was reading from the paper.\",c084 9.10 31.00;c088 11.40 31.00;c123 0.00 31.00;c030 8.70 15.20;c032 10.90 31.00;c026 9.30 31.00;c115 9.60 31.00,29.62\r\nIU2XH,YA10,Bathroom,6,7,Yes,\"A person standing in the doorway of a bathroom holds a package of medicine closer to examine a picture on it, then opens it, takes something out and then leaves the package on the counter.\",counter;medicine;something,Person standing in front of a doorway in a bathroom trying to remove something from pack.,c128 0.00 21.50;c128 17.00 31.00,30.42\r\nIET7H,YA10,Hallway,6,6,Yes,A person opening a doorknob in a hallway is pouring groceries out of a bag.,bag;closet;door;floor;food,A person enters the room holding a bag. They open the bag and pour out a bunch of objects on the floor as they open the closet.;A person is carrying a bag of food. Everything in the bag falls out while they are opening the door.,c020 0.00 24.00;c113 7.50 17.20;c008 7.50 17.20;c006 16.50 21.70;c022 19.80 24.00;c126 19.80 24.00;c024 18.90 24.00;c097 0.00 3.90;c141 2.10 22.80,22.71\r\n7L18C,6RE8,Garage,4,7,Yes,\"A person is lying on a fold-up bed in the garage, playing a game on their laptop. The person checks their phone, quickly gets up, and leaves.\",bed;clothes;doorway;laptop;phone,Person sitting on the bed looking at his laptop. He then stands up and walks away with his cell phone.,c015 16.30 25.70;c018 10.60 20.20;c135 11.90 21.70;c047 2.50 17.10;c049 13.70 23.40;c052 1.10 10.60;c016 17.10 27.70;c134 0.00 18.90;c051 0.00 18.00;c154 18.60 25.30;c097 23.90 30.70,30.75\r\nOM66H,QB52,Dining room,7,7,No,\"A person is seen watching a sandwich on their table. They try and ignore the sandwich by reading a book, but they start sneezing.\",book;chair;table,A person is sitting in a chair at a table. They are reading a book.,c032 0.00 31.00;c011 0.00 31.00;c153 21.30 28.50;c059 0.00 31.00,30.04\r\nVDK6L,1OHU,Bedroom,7,6,Yes,A person is playing on a laptop while another person is taking pictures of a mirror.,laptop;mirror;shelf,A woman is sitting on the bed playing with a laptop while a man is moving a mirror to the nightstand.,c052 0.00 32.00;c093 1.20 10.70;c094 0.90 5.70;c081 5.70 11.40,30.58\r\nWKDPZ,Q4IF,Living room,6,4,Yes,A person is holding a picture at a desk. Then the person walks out of the room.,art piece;chair;desk;picture;table,\"{};A person is sitting on a chair looking at a picture.  The person puts the picture on a table, gets up, and walks away.;A person is sitting in a chair looking at a piece of art. The person rocks back in the chair a few times and then brushes the art piece off. The person then gets up from the chair and walks out of the room.\",c084 0.00 26.40;c059 0.00 27.50;c088 0.00 25.50;c086 21.50 26.50;c154 23.30 32.00;c009 20.70 27.60,30.62\r\nI1CS8,4I2W,Bathroom,6,5,Yes,\"A person sits in the bathroom, watching a video on their camera. The person looks out the window.\",floor;phone;window,\"A person is sitting on the floor, watching something on their phone. They then stand up and look out the window.;A person is sitting on the floor looking at their phone.  The person gets up and looks out a window.\",c092 23.10 31.00;c154 21.30 27.50;c015 0.00 31.00;c016 0.00 27.10;c125 0.00 26.80,29.92\r\n2FC4V,5LWB,Kitchen,4,7,Yes,\"A person is standing in the kitchen holding a broom.  The person sneezes, laughs, then opens the door.\",broom;closet/cabinet;counter;door;floor,\"A person is sweeping up a kitchen then stops and sneezes and moves along to a cabinet.;A person using a broom to clean a room starts to sneeze.   After a few sneezes, the person smiles and heads out of the room.\",c098 0.00 25.10;c102 0.00 10.50;c149 8.90 19.40;c152 18.40 28.40;c127 0.00 10.80;c113 27.50 35.00;c153 7.50 22.20,34.46\r\nYV521,R1OT,Bedroom,3,6,Yes,A person is opening a book while doing homework.  They put the book on a shelf and start sneezing.,bed;book;paper;pencil;shelf,\"This person is sitting on a bed, reading a book, writes some notes in it, then puts the book away.;A person is sitting on a bed with an open book. They're turning pages and writing in the book before putting on a shelf behind him.\",c116 0.00 10.30;c145 1.20 7.90;c026 12.00 26.90;c032 5.40 22.70;c135 9.00 17.30;c081 20.60 28.70;c115 0.00 23.90;c025 15.50 22.10;c027 0.00 2.80;c153 24.60 30.20;c028 20.60 28.00,29.96\r\nVN8SW,D0RU,Closet / Walk-in closet / Spear closet,6,1,No,The person is sitting on a table and then walking in shoes in the closet.,clothes;floor;laptop;shoe;table,\"A person is looking at a computer screen, and then they put on some shoes.;Person looking at something on a laptop before putting on blue tennis shoes.\",c052 0.00 19.10;c055 16.90 33.00;c004 17.30 29.10;c051 0.00 16.10;c127 14.30 28.30,32.46\r\nB69CF,UTMU,Basement (A room below the ground floor),7,7,Yes,A person is laying on an a pillow in the basement and begins awakening. They stand up and go close an open window.,floor;pillow;window,A person is laying down with her head on a pillow and then gets up to close a window and then walks back over the the camera.,c078 0.00 7.10;c089 14.00 20.60;c154 6.30 11.90;c124 0.00 10.20;c146 0.60 9.60,23.58\r\nKFGEF,H8N1,Laundry room,3,5,Yes,A person takes selfies while playing and holding a coffee cup and a book bag on a washing machine.,bag;book;chair;coffee;cup;glass;phone/camera,A person sits down and takes a drink of coffee while holding a phone and looking at it.,c106 21.40 28.60;c106 2.70 9.50;c151 0.00 6.30;c016 0.00 7.10;c087 4.60 21.50;c107 2.70 22.40;c059 2.10 7.80;c152 28.20 33.10;c109 16.80 22.80;c018 0.00 3.70;c110 2.30 6.50;c154 31.80 37.30;c015 0.00 36.10;c016 18.30 35.00;c087 18.30 32.90;c017 31.00 36.30,37.42\r\nG6LYD,6RE8,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is smiling as they turn the doorknob then they throw their clothes on the floor.,clothes;door;floor,A person is throwing clothes on the floor.,c126 9.40 14.10;c003 9.40 14.10;c003 12.90 18.30;c006 0.00 5.10;c002 7.80 20.10,30.67\r\n47532,I2IV,Dining room,7,1,No,One person throws a picture from a shelf while drinking and laughing maniacally.,broom;clothes;floor;jacket;mirror;picture;sweater;table,\"A person walks over to a table and picks up a jacket and puts it on, after they get the jacket on the stand there looking at a picture for a moment then turns and walks away;A person picks up a sweater from a table and puts it on, before looking at a picture, and then moving a broom.\",c088 17.40 23.60;c002 0.00 5.20;c148 0.30 21.20;c096 17.50 23.70;c127 23.70 29.80,29.33\r\nGEJPM,4I61,Dining room,7,7,Yes,\"The china cabinet was holding a collection of glass items, while the person was washing them each individually.  The person left the cleaned glass items on the table.\",cabinet;cup;dish;glass;shelf;table,A person is opening a cabinet and getting a dish. A person puts the dishes on the table then closes the cabinet.,c112 29.10 34.30;c009 12.20 16.80;c107 5.50 15.80;c109 16.50 21.40;c113 1.10 7.20;c107 23.00 28.00;c119 19.10 29.10;c110 3.20 9.70;c110 13.40 20.50;c111 4.50 17.20;c082 0.90 35.30;c121 4.50 17.00,38.42\r\nO5JIS,0KZ7,Bathroom,7,7,Yes,One person is standing at the sink and sneezes. Another person comes in carrying a towel and eating a banana. The person at the sink takes some medicine.,food;medicine;sink;towel,\"A person looks around a bathroom and sneezes, then picks up a bottle of medicine and drinks some. Another person walks in who is eating something.\",c128 14.40 32.00;c153 8.40 14.50;c033 12.70 32.00;c129 23.40 29.80;c061 10.10 32.00;c156 10.10 32.00,30.50\r\nH1GWM,ZAWX,Laundry room,6,7,Yes,\"A person is tidying up by the sink. The person walks to the doorway, holding a broom.\",broom;doorway;floor;hands;sink,\"A person washes their hand in a sink. They then grab a broom and walk through multiple doorways, sweeping.\",c098 8.10 33.00;c100 6.80 12.40;c102 25.90 33.00;c097 13.70 19.60;c152 19.00 25.10;c139 0.00 7.90;c127 27.80 33.00,32.00\r\n3PTQK,YA10,Home Office / Study (A room in a house used for work),7,7,Yes,A person is walking to the desk taking the broom.,broom;desk;table,A person walks across a room and props a broom against a desk.,c009 18.30 26.00;c098 7.80 26.00;c099 13.10 19.30,24.75\r\nF9K8L,D0RU,Kitchen,5,4,Yes,A person runs into the kitchen and sets a pair of shoes on a chair. The person watches something out the window.,chair;shoe;something;window,A person runs into his kitchen and puts a pair of shoes on a chair while he opens a window screen and rearranges some things on a shelf.,c053 0.00 7.40;c092 2.90 29.60;c054 2.10 7.20;c090 6.70 14.10;c150 0.30 5.80;c058 1.70 7.20,30.62\r\nK9BLQ,H8N1,Closet / Walk-in closet / Spear closet,1,,No,\"The person was putting shoes from the hallway into the cabinet, and just sat on the floor.\",bed;cabinet;clothing;cupboard;floor;shoe,\"A person is sitting on a bed. They open and close a cupboard. They look around the room.;A person is sitting on the floor, and puts an article of clothing in a cabinet.\",c112 7.50 14.10;c113 0.50 6.50;c054 0.00 11.30;c125 0.00 28.00,27.17\r\nCPG4Y,HJJ4,Stairs,7,7,Yes,A person is walking up some stairs while holding a bag of groceries. The person stops walking for a brief moment to sneeze.,bag;groceries;stairs,A person is walking up a set of stairs carrying a bag of groceries. The person sneezes and continues walking up the stairs.,c020 0.00 5.20;c153 1.20 7.20,12.38\r\n82B2V,UD06,Bedroom,4,7,Yes,A person is fixing an old pair of shoes then starts lying down while taking a picture.,bed;camera;phone;picture;shoe,A person is holding a pair of shoes. A person then takes a camera and takes a picture of the shoes.;A person is cleaning shoes then decided to take picture of the freshly shined items.,c054 7.00 14.00;c016 12.10 32.00;c087 12.10 32.00;c018 9.00 17.00;c135 0.00 32.00;c053 0.00 26.80;c015 10.00 32.00,30.54\r\n3CIVD,HR43,Kitchen,6,7,Yes,A person walks by the stove while wrapped in a blanket and eating some food.,blanket;food,A person walks in a kitchen eating a bag of chips while wrapped in a blanket.,c061 2.50 24.00;c156 14.80 21.10;c072 0.00 24.00;c070 0.00 24.00,22.58\r\nN5Z8Z,3H6W,Kitchen,4,6,Yes,Person enters the dining room and closes the oven that was left open.  Immediately thereafter shoes and a sandwich are removed from the counter.,dish;food;oven;plate;sandwich;shoe,\"A person closes an oven and grabs a plate and shoes.;A person is closing a dishwasher. A person then grabs a sandwich, and a pair of shoes.\",c053 10.10 16.30;c118 9.20 16.90;c120 11.00 16.90;c054 9.30 24.00;c063 6.70 13.40;c061 8.00 18.50,23.21\r\n5GPOJ,HJJ4,Living room,7,7,Yes,\"A smiling person working on homework, stops to watch television.\",book;couch;paper;pencil;remote;sofa;television;tv,A person is sitting on the couch writing in a book. Then they put the book down and pick up the remote and turn on the TV. The sit back and cross their legs.;A person is sitting on the couch writing in a book. The person puts the book down and begins watching TV.,c116 9.40 14.40;c145 0.00 13.00;c123 0.00 26.00;c026 0.00 14.10;c115 0.00 13.70;c132 13.00 26.00;c025 8.50 13.50;c028 9.60 14.70,25.21\r\nYTBQM,ENC8,Kitchen,6,7,Yes,A person drinks a glass of water while they cook food on the stove.,cup;food;glass;stove;water,a person stands in a kitchen drinking a glass of water. They then cook food on a stove. The person then leaves.,c106 0.00 27.60;c107 0.00 27.20;c147 4.10 27.00,41.92\r\nO441U,KFGP,Closet / Walk-in closet / Spear closet,4,7,Yes,A person in a closet puts a towel in a bag and sneezes before they begin dressing for work.,bag;closet/cabinet;clothes;doorknob;towel,\"a person walks down a hallway, takes something out of a closet, puts it in a bag, puts on a coat, and walks away.\",c020 0.00 21.20;c034 1.90 21.50;c148 12.00 28.00;c001 2.70 12.20;c112 11.30 18.10;c141 0.00 4.60;c022 15.60 21.40;c002 13.50 19.90;c113 0.00 6.60,26.83\r\nGGER2,D0RU,Home Office / Study (A room in a house used for work),6,7,No,A person is fixing the door to their home office while sitting in the doorway. The person is playing an instructional video on their laptop showing them how to complete the job.,door;floor;laptop,A person fixes the top latch of the door. The person works on a laptop. The person fixes the bottom latch of the door.,c051 10.10 31.80;c052 10.60 31.80;c007 0.00 34.00;c125 8.30 34.00,33.04\r\nT6OAB,0KZ7,Bathroom,4,6,Yes,The person stood in front of the medicine cabinet and then decided to grasp the light switch.,cabinet;light;medicine;mirror,A person opens the medicine cabinet doors. Then the person flicks the light switch.,c105 22.40 28.00;c104 21.00 26.00;c112 9.10 15.40;c113 0.00 5.80;c096 0.10 6.80,28.38\r\nINKPE,3H6W,Kitchen,4,7,Yes,\"A person cooking in the kitchen walks over to their stove and picks up a glass item from it.  They put it in the sink for washing and take a clean glass out of the dishwasher, closing it behind them.  They push a chair out of the way and put the clean glass on the table.\",cup;dishwasher;food;pot;stove;table,\"Person walks into the kitchen to the and goes to the stove to cook, walks over to the dishwasher to get a cup, and puts the cup on the table before leaving the room.\",c009 26.40 31.50;c147 1.50 8.60;c107 5.50 10.50;c109 16.70 22.00;c110 6.70 12.60,31.92\r\n80FWF,UTMU,Kitchen,5,7,Yes,\"A person is in a kitchen. The person opens a drawer, takes out a towel, and closes the drawer. They turn on the light and leave.\",drawer;light;stove;towel,\"A person in a kitchen grabs a towel from a drawer and places it on the stoves handle.;A person is grabbing a towel, then turns on a light.\",c033 5.00 13.70;c034 9.00 15.40;c035 2.30 12.40;c037 6.70 15.70;c104 0.20 5.60;c105 13.00 18.10,22.17\r\nZJ54N,PO5L,Hallway,4,7,Yes,A person is eating food from a bag. Next then begin undressing by taking off a jacket.,bag;clothes;floor;food,A person walking down a hall holding a bag of food stopping at the end of a hall eating out of a bag .Proceeds to take off jacket and walk back up the hall,c020 0.10 20.70;c022 16.70 22.10;c061 5.10 9.90;c156 2.90 20.60;c155 18.70 27.60;c126 22.80 28.50;c063 4.10 20.40;c062 16.90 22.80;c001 23.40 28.00;c000 18.70 27.40;c021 2.20 7.20,29.67\r\nD9DSH,YA10,Garage,6,7,Yes,A person fixes a vacuum in the garage while grasping a picture of instructions.,book;vacuum,\"A person is in a garage and appears to be working on/inspecting a vacuum cleaner.  They appear to be consulting a book or instructions, attempting to repair the device.;Person holding a book and looking at a book fixing a vacuum remove a part from the vacuum.\",c136 0.00 31.00;c026 0.00 31.00;c032 0.00 26.00;c115 0.00 31.00,30.54\r\n24KQ5,5LWB,Living room,6,6,Yes,A Person is watching television and another person is closing the refrigerator.,doorway;television,2 people are standing the doorway watching tv while one of the persons walk to the fridge and opens it.,c132 0.00 11.40;c097 10.80 15.30,27.17\r\nPEIV4,P6LJ,Kitchen,7,7,Yes,A person is standing by a desk and fixing a box,box;desk;table,A person grabs a box and cleans it off in her kitchen.,c039 13.30 59.50;c043 0.90 6.50;c042 58.70 64.30;c009 58.70 64.30;c040 1.20 64.00,64.88\r\nQSBXK,4OHY,Bedroom,7,5,Yes,A person is holding a sandwich as the person talks on the phone. A person is fixing the cabinet.,cabinet;doorknob;phone;sandwich,The person is walking around their bedroom talking on the phone while holding a sandwich. They try to open a cabinet but it is closed.,c067 0.00 31.00;c019 0.00 31.00;c015 0.00 31.00;c141 13.50 19.60;c141 20.00 29.50,29.46\r\nUO607,EE32,Pantry,6,5,Yes,A person began walking over to the pantry to put away groceries when they began grasping at their wardrobe.,bag;body;cabinet;cupboard;groceries,A person opens a cupboard and puts things from a bag into it. They search their person for something and close the cupboard.;A person walks intot he kitchen holding a bag of groceries they open the cabinet and put the groceries away then they feel around in the pocket for something and leave the kitchen.,c113 1.40 7.60;c021 3.00 11.80;c112 19.90 25.70;c020 0.00 28.00;c130 5.40 17.80,27.17\r\nXB4HN,0KZ7,Laundry room,5,7,Yes,\"A person is pouring detergent into a washer, then taking off shoes and finally using a broom in a laundry room.\",broom;clothes;detergent;door;floor;shoe;washer,A person puts some detergent into a washer then closes the door. They pick up a broom and start sweeping the floor along some clothes.;A person empties a cup into a washing machine. They then pick up a broom as they kick off their shoes and start sweeping the floor.,c098 9.90 27.00;c102 14.60 27.00;c057 10.80 19.40;c127 12.50 27.00;c006 6.20 13.30;c005 0.00 11.60,25.50\r\n3P38N,ZAWX,Stairs,7,7,Yes,\"A person is sitting and reading a book. Then, laughing, the person stands and walks over to the wardrobe.\",book;chair;wardrobe,A person is sitting in a chair reading a book and laughing. Then they get up.;A person sits in a chair and laughs as they read a book.  They stand up and walk over to a wardrobe.,c025 23.00 27.70;c029 4.70 11.20;c149 13.90 18.40;c026 0.00 35.00;c032 0.00 27.00;c154 23.00 29.00;c059 0.00 27.00;c152 4.50 23.70;c027 0.40 7.80,34.17\r\n7326A,KQI6,Living room,3,4,Yes,Person is lying on blanket fixing table. Another person is standing and taking picture with camera of table.,blanket;camera;couch;phone;picture;sofa;table,A person rifles through a drawer while sitting on  a daybed while another person looks at their phone;One person sitting on a sofa holding a phone person wiping the table with a cloth.,c123 26.90 32.00;c015 21.60 32.00;c016 21.60 32.00;c011 1.10 32.00;c087 19.00 32.00;c012 0.00 30.10,30.88\r\nYNRI0,AH2J,Dining room,7,7,Yes,A person grasps some coffee off a table then stands up to leave.,chair;coffee;cup;door;table,\"Person sitting at the table in a chair drinking coffee getting up from the chair and close the door.;Person in a blue, flowered dress sitting at dining room table drinking coffee when suddenly gets up and walks out.\",c010 0.00 15.90;c059 0.00 15.70;c106 0.80 16.10;c154 12.00 19.70;c011 0.00 20.00;c006 17.60 23.00;c107 0.00 14.50,21.54\r\nBZ5AU,ZAWX,Hallway,6,7,Yes,A person is dressing in front of the mirror. The person begins smiling as the person is watching himself put on their clothes.,clothes;hair;mirror,A person is buttoning their shirt and tidying their clothes. They check their hair and outfit in a mirror then smile.,c094 10.50 30.80;c004 4.10 30.50;c148 1.20 16.00;c152 26.60 31.00;c096 0.00 22.40;c144 11.40 18.50;c149 23.30 31.00,30.42\r\n6JB9M,KASL,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is holding a laptop and starts to pour some medicine.,laptop;medicine,A person is standing up holding an open laptop.  The same person then opens some medicine and takes it with water.,c129 22.00 30.20;c047 0.00 35.00;c128 19.40 28.50;c052 3.30 10.70,33.96\r\n857LD,3H6W,Living room,3,6,Yes,\"A person is standing in the hallway while watching the door. They start closing the door, and then moving to a nearby chair where there is a bottle of medicine on top of the chair.\",door;medicine,\"A person is standing by the door way. A person closes the door. A person then picks up medicine, and puts it back down.\",c128 15.40 20.80;c006 8.80 17.30,26.96\r\nDGPUE,PKND,Living room,5,4,No,The person takes a glass and drinks from it while walking. The person then leaves through a door.,cup;door;food;glass;mirror,\"A person is sitting in a chair, looking at something. The person drinks from a cup and then leans forward to touch a door.\",c106 13.50 21.90;c107 0.00 3.10;c061 0.00 32.00;c152 0.00 32.00;c096 0.00 32.00,31.29\r\nJXA4F,KFGP,Bathroom,4,4,Yes,A person is laughing a taking a picture with the camera on their phone when they are supposed to be working.,hair;hat;phone;picture,A person is taking selfies with their phone in the bathroom. The person changes the position of the hat on their head and makes different poses for the photos.,c015 0.00 31.00;c016 0.00 31.00;c087 4.10 31.00;c149 18.80 31.00;c152 4.20 11.10;c144 21.10 27.40,30.38\r\nSW64W,8IOD,Home Office / Study (A room in a house used for work),5,7,Yes,\"In the home office, a person is sitting at a table and is opening a laptop.\",chair;desk;lamp;laptop;papers;person;table,a person straightening out their desk and opening up their laptop;A person is sitting at a desk. They tidy up the desk and then open their laptop.  They then turn the laptop on.,c048 6.40 13.90;c052 15.30 26.50;c011 0.00 14.40;c059 0.00 28.50;c012 0.00 6.70,30.54\r\nMY5CQ,6RE8,Living room,6,7,Yes,A person closes their laptop then picks up their book and smile as they read.,book;chair;desk;laptop;table,A person is sitting in a chair at a laptop playing on it. Suddenly they take out a book and begin reading it;Person is sitting at desk and working on his laptop. Person closes laptop and opens a book while smiling.,c052 0.00 8.00;c152 3.80 10.80;c059 0.00 13.50;c011 0.00 29.80;c032 15.00 32.00;c027 14.00 19.60;c026 15.50 32.00;c046 11.50 17.40;c014 0.50 32.00,31.42\r\n9Q1N7,9Y7F,Stairs,5,6,Yes,\"A person is running to the bed. The person picks up a pillow and, laughing, begins snuggling with it.\",bed;doorway;floor;pillow,A person is sitting on the stairs. They get up and run down the stairs then pick up a pillow off the bed.,c079 19.30 32.00;c150 7.50 17.50;c154 4.90 11.80;c097 12.60 18.90;c125 0.00 11.70,30.62\r\nSHTQ9,P6LJ,Living room,4,6,Yes,\"One person runs through, grasps a picture, then leaves a stack of clothes on the sofa.\",clothes;picture;sofa,The person runs in the living room with a pile of clothes in arms. The person picks a picture up from a table and looks at it. Then the person places the pile of clothes on the sofa.,c084 1.90 10.90;c088 11.00 17.50;c000 1.50 11.50;c001 4.70 13.40;c150 0.00 5.60;c083 11.60 21.00;c003 0.00 15.50,20.38\r\nK1D2G,YMXV,Bedroom,5,7,Yes,\"A person is running into a bedroom holding a towel, and wrapped in a blanket. The person starts tidying the room.\",bed;blanket;clothes;doorway;floor;towel,\"A person walks through a doorway while holding a towel. The person then fixes the blanket on the bed. Next the person begins washing the floor with a towel.;a person walking into the room tidying the bed and blanket, and cleaning the floor with a rag.\",c075 5.10 15.10;c033 14.40 19.80;c038 16.50 32.00;c097 0.00 4.20;c127 13.50 32.00;c074 8.50 16.80,30.83\r\nDQDJW,Z68L,Recreation room / Man cave,6,7,No,\"A person cooks food with a towel over their shoulder, A person works on homework with a light on.\",book;dish;food;homework;paper;sofa/couch,\"A person walks into the living and sets a plate of food down, they then begin working on homework.\",c061 0.00 5.00;c115 21.60 32.00;c145 26.70 32.00;c062 0.00 5.30;c117 18.30 32.00;c151 7.30 15.90;c119 0.00 8.90;c118 0.00 3.60;c032 22.90 32.00;c026 21.30 32.00;c123 3.70 9.40;c027 23.20 29.90;c030 19.60 27.10,31.46\r\n8YKGP,3H6W,Kitchen,5,6,Yes,A person is cooking at the stove in their kitchen. The person fixes their nearby spice shelf by returning spices from the stovetop to their original location on the shelf.,closet/cabinet;door;food;pot;shelf;stove,\"A person cooks something on a stove. Then puts things away in a shelf.;Person walks into to the kitchen to the stove to stir a pot, picks up some spices and puts them in the cabinet shutting the door.\",c081 35.70 40.30;c147 1.60 25.10;c062 27.20 35.20;c114 31.20 40.10,42.21\r\nMWZJY,2RTW,Kitchen,5,5,Yes,A person runs into the pantry. The person takes a roll of paper towels from the cabinet and leaves.,door;shelf;towel,\"A person runs into the kitchen, grabs some paper towels, and runs outside.;A person goes running from one room, through another room and into the kitchen.  In the kitchen, that person grabs a roll of paper towels off of a shelf and goes out the door with them.\",c035 4.00 9.00;c006 11.00 16.00;c008 9.00 14.00;c150 1.00 8.00;c141 9.10 16.10;c097 9.90 30.00,29.25\r\nD09K3,4I2W,Recreation room / Man cave,6,6,Yes,A person is standing by a chair holding a glass. They begin opening a door.,can;chair;cup/glass/bottle;door,A person is holding a can and adjusting a chair. The person walks to a door and opens it and peers inside.,c008 22.00 30.00;c107 0.00 30.00;c097 21.20 30.00;c141 21.20 30.00,29.33\r\nUWRQV,L4ZP,Kitchen,6,6,Yes,\"A person walked into the pantry without their shoes, watching Netflix on their laptop, in search of food.\",cabinet;doorknob;food;laptop,\"A person is walking with a laptop. The person opens a cabinet and takes some food off the shelf. The person then closes the cabinet door.;A person walks through a kitchen while working on a laptop, opens a cabinet and gets some food out and sets the food on the counter.\",c047 0.30 31.00;c052 8.80 15.00;c062 14.30 22.30;c063 12.50 22.00;c112 26.40 31.00;c113 6.90 12.50;c141 7.00 12.50,30.50\r\n7UGF7,Z68L,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is awakening in a office while resting their head on a book, afterwards they start eating a snack and drinking some coffee.\",beverage;book;chair;coffee;cup;desk;doorknob;food;glass;head;table;wardrobe,\"A person is lying down on a table. A person awakens and drinks a beverage. A person then begins to eat food, and then gets up.;A person wakes up at the desk, starts drinking coffee, and looks at their laptop while eating.  Then gets up and leaves.;A person is sitting at a desk looking very sleepy. They then sit up and drink from a  cup and  eat a snack.\",c154 42.40 49.00;c106 13.50 30.60;c146 3.80 16.80;c107 14.00 30.90;c156 27.80 48.10;c063 27.80 43.70;c011 0.00 46.60;c061 33.70 39.60,48.42\r\nI8LEO,Z68L,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is standing in their wardrobe and sneezing on a doorknob.,closet;clothes;wardrobe,Person walk to the closet looks through the clothes steps back and began to sneeze then look through the clothes in the closet again.;Someone walks up to their clothes that are hanging up and then she sneezes.,c113 2.60 9.90;c153 9.60 20.50;c004 23.70 29.00,28.67\r\nE18UD,Z68L,Home Office / Study (A room in a house used for work),6,6,Yes,\"The person was in the study, watching the football game.  The person put the food bag on the table and poured themself a beer.\",cup/glass/bottle;food;laptop;table,A peron is sitting down at a desk working on a laptop  they then pour beer onto a cup and eat food.,c156 14.90 39.00;c108 2.60 17.00;c063 13.20 21.40;c061 14.10 19.50;c051 13.70 39.00;c011 0.00 39.00,37.88\r\nHG00H,T7C3,Bathroom,7,7,Yes,A person is dressing in front of a mirror and then taking a picture in front of a cabinet in the bathroom.,camera;clothes;doorway;phone;picture,A person is standing in a doorway putting on a shirt.  They take a camera out and take a picture.;A person puts on some clothes.  The person then takes out a camera and takes a picture.,c015 26.20 32.60;c148 0.00 26.10;c087 28.20 36.00;c018 23.90 30.50,34.92\r\nOB7UK,LTAC,Recreation room / Man cave,7,6,Yes,A person is playing on the sofa and then snuggling with a pillow in the recreation room / man cave.,couch;mobile;phone;pillow;plastic bag;sofa,\"A man sitting on a couch plays a game on his mobile device, then puts a pillow behind his back.;person sits on a sofa and plays on his phone then grabs a pillow\",c077 17.50 26.00;c016 0.00 20.10;c079 14.00 18.80;c015 0.00 28.50,31.38\r\nX9ULK,2RTW,Bathroom,6,6,Yes,\"After dressing in the bathroom, a person poured themselves a cup of coffee, then stood at door, turning the doorknob, only to find the door was locked.\",clothes;clothing;cup;dishes;door;glass;jacket;mirror;mug,\"A person is folding some clothes up in the bathroom. The person puts on a jacket in the bathroom after folding it. The person pours something to drink from one cup to another cup. The person picks up the dishes and grasps the doorknob to leave.;The person is putting on clothe, and pours a cup of coffee on to another cup.\",c108 16.80 26.40;c141 24.40 31.00;c107 16.20 26.30;c110 22.30 31.00;c148 4.80 18.70;c004 0.00 8.80;c001 28.40 31.00;c096 28.40 31.00;c000 28.40 31.00,30.33\r\n7EHQU,2RTW,Bathroom,6,6,Yes,A person puts down a blanket by the tub.  The person takes a container out of the bathroom cabinet and pours liquid into a small plastic cup.  The person drinks the liquid and throws away the cup.,blanket;cabinet;cup;glass;towel,\"The person sets a towel on the ground. The person then opens a cabinet, pulls out a cup and takes a sip from the cup.\",c106 15.70 32.70;c112 8.80 15.80;c070 0.50 8.10;c108 12.00 21.40;c113 6.10 12.60;c071 0.00 8.70;c034 0.00 8.70;c107 8.50 35.00;c033 0.00 6.90;c110 8.50 15.50;c109 8.50 35.00,33.71\r\nVEKTO,2RTW,Kitchen,6,6,Yes,A person leaving a book and shoes on the floor while washing the broom.,book;broom;floor;shoe;towel,\"A person holding a broom, a pair of shoes and a book is in the room.  They put the shoes and books on the floor, then take a towel and begin tidying the broom with it.;The person puts a pair of shoes and a book on the floor, then begins to wipe a broom with a towel paper.\",c026 0.00 7.50;c028 0.90 7.30;c098 0.00 30.00;c054 0.00 7.00;c035 4.00 10.00;c038 5.70 30.00;c033 4.70 30.00,29.17\r\nL1S6P,3H6W,Kitchen,5,6,Yes,A person runs into the pantry and opens a bag of chips. The person takes a picture of them eating one with their phone.,bag;chips;cupboard;food;phone,\"A person runs into the kitchen, opens a bag of chips and eats it.;A person runs into the kitchen in front of an open cupboard, and pulls out a bag of chips. The person eats some of the snacks, places a hand in their pocket and pulls out a cell phone and looks at it.\",c015 15.50 28.80;c061 14.30 20.10;c020 4.30 13.50;c022 10.10 18.30;c150 0.00 6.50;c018 15.50 22.30;c063 2.80 11.70;c021 6.40 14.40;c023 2.00 11.60;c156 6.80 19.00;c062 10.10 18.30,29.79\r\nGKBX9,HR43,Kitchen,6,6,Yes,\"Person A is in a kitchen cooking a meal.  Person A looks into a nearby bag of groceries, takes out an item to cook and gets a glass of water.\",cup/glass/bottle;eggs;food;laptop;man;pot;stove;water bottle,\"A person is looking at a laptop while cooking on a stove and then takes a drink of water.;a man in a kitchen with some eggs, a laptop and a pot.\",c106 9.00 19.00;c147 0.00 12.00;c052 0.00 3.10,18.75\r\nGU43L,2Q9D,Stairs,6,7,Yes,Person walks up the stairs after taking off shoes. Person picks up the dirty clothes on the stairs.  Person gets to the top of the stairs and while sitting on the top step.,clothes;floor;shoe,Person takes their shoes off and walks to the top of the stairs.,c000 0.00 6.40;c151 14.90 21.00;c004 9.50 21.40;c125 16.70 30.00;c057 0.00 6.60;c053 0.00 7.10,29.38\r\n1LKPL,BYF9,Kitchen,7,7,Yes,A person is tidying the kitchen and wiping the counter with a towel.  Another person is smiling and taking a picture with a camera.,book;camera;dish;food;phone;picture;pot;stove;towel;trash can,Someone is in the kitchen cooking something while another person is standing and taking pictures of them.;A person in a kitchen throwing stuff away and putting things up.The other person is taking pictures of the person doing all the work.The one person places pots on the stove.,c087 0.00 6.20;c015 0.00 35.00;c154 0.00 35.00;c062 6.70 19.30;c087 0.50 12.30;c016 0.00 35.00;c119 1.40 8.20;c116 11.60 18.10;c030 11.60 18.10,33.58\r\nZCZ3X,Z68L,Kitchen,6,7,Yes,\"A person is standing in their kitchen, watching TV as they dry dishes with a towel.\",dish;television;towel,A person washes dishes with a  towel while watching television.,c033 3.00 13.60;c132 19.10 30.50;c121 1.00 13.00,30.46\r\nSKUOZ,WG9D,Living room,5,6,Yes,A smiling person is fixing a window in their living room with a towel over their shoulder.,window,A person sits and wipes the window with something.,c091 0.00 10.00;c152 0.00 10.00,9.12\r\nKNGUT,9Y7F,Kitchen,5,6,Yes,A person is eating something from a bag while another person is pouring water down the sink.,bag;bed;cup;food;sink;water,A person pours some water into a sink. Another person is sitting on a bed holding a bag.;A person pours out a cup of water into a sink.  Another person sitting on a bed is eating food out of a bag.,c020 0.00 31.00;c021 0.00 5.00;c156 24.00 31.00;c107 2.30 7.20;c135 0.00 31.00,30.42\r\n5GWS2,3531,Bedroom,6,6,Yes,The person is sitting on a bed and reading a book.  They then look in a mirror and start fixing their hair.,bed;book;comb;hair;mirror,A person is sitting on a bed looking through a book. They put down the book and look at themselves in a mirror and comb their hair.,c096 22.10 33.00;c144 25.20 33.00;c025 19.00 26.10;c026 0.00 15.90;c028 19.20 24.60;c032 0.00 16.20;c135 0.00 33.00,31.58\r\n1WWJZ,8VYB,Kitchen,7,7,Yes,\"A person is in a kitchen putting beverages away in the refrigerator, they then fix the dishes near the sink.\",dish;glass;refrigerator;sink,A person grabs a container a shelf and puts it in the refrigerator. They grab and drink out of a glass. They then was dishes in the sink.,c121 25.70 40.00;c142 9.90 16.90;c143 0.50 8.10;c109 8.20 16.90;c106 9.70 15.70;c110 7.00 17.40,39.04\r\nIBRFM,WQ8Z,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is in a office sitting at a desk and holding a picture, they then get up and reach for the doorknob.\",chair;doorknob;picture;table,\"The person sat in a chair, looking at a framed picture, then rose and walked to the door.;{}\",c011 0.00 10.00;c084 0.00 18.00;c154 6.30 12.00;c059 0.00 10.00;c088 0.00 18.00;c141 13.50 18.00,17.00\r\n0G2SC,2RTW,Living room,6,6,Yes,The person is laughing in the entryway while another person is carrying in groceries to put by the sink.,bag;counter;doorway;groceries;shelf,A person stands in the doorway laughing as another person brings in groceries. The first smiles.;Person #1 smiled as person #2 walked through the doorway. Person #2 walked to the kitchen with a bag and began removing groceries from the bag.;Person standing in room with hands on hip laughing in open doorway. Another person carrying bags walks in the kitchen. Person looks at other person.,c081 15.80 23.20;c149 0.00 17.20;c152 24.60 32.00;c130 17.50 27.70;c020 12.20 22.60;c097 9.50 18.80;c021 18.60 23.80;c022 17.80 22.90,30.75\r\nO283L,YA10,Dining room,5,6,Yes,A person is eating at the table.  They are sitting in a chair and sneezing.,chair;cup;food;glass;hand;leg;sandwich;table,The person is sitting in a chair at a table eating a sandwich and then sneezes and whips their hand on their pant leg and then takes another bit and glances at the door and then takes a drink out of the glass on the table then takes another bite and sneezes again.;A person is sitting at a table eating a sandwich. The person sneezes. The person takes a drink and sneezes again.,c156 0.00 21.40;c106 16.50 27.20;c109 19.40 27.20;c065 0.00 20.40;c068 22.40 30.00;c059 0.00 31.00;c153 5.40 13.30;c107 17.00 25.10;c110 15.90 22.70;c067 0.00 29.10;c011 0.00 31.00;c009 20.60 27.20;c069 13.70 22.20;c061 19.70 25.50;c063 12.90 21.10,30.12\r\nMYZLT,OUKK,Closet / Walk-in closet / Spear closet,5,7,Yes,A person is seen watching something on their phone while holding a vacuum. After standing for a little while they pick up a nearby towel.,broom;doorway;napkin;phone;towel;vacuum,\"A person in a doorway standing very still on a phone and holding a broom,at the last moment the person grabs a towel.;A person is standing in front of a closet holding a broom and watching something on their phone, they then grab a napkin and leave.\",c015 0.60 38.30;c033 34.30 39.30;c035 33.50 38.70;c137 0.20 39.90;c016 0.20 37.90,39.75\r\nIC4D5,R1OT,Kitchen,4,5,Yes,A person is laughing in the kitchen next to the stove and there is a pillow on the floor.  Then the person starts undressing.,clothes;desk;shirt;table,A person is laughing while holding onto a desk. The person then undresses.;A person leans on a table and then takes their shirt off.,c155 18.10 25.30,29.96\r\n69GFN,HR43,Living room,6,6,Yes,\"After undressing, except for shoes, a person is tidying the room and straightens a picture.\",clothes;cloths;picture;sofa;table,\"A person sits on a sofa and gets undressed while looking at a picture on the table.;A person takes off their shirt, and then gets up.\",c088 1.60 12.40;c155 4.10 19.50;c155 8.40 15.60;c123 14.50 30.30;c088 6.30 15.70;c001 4.90 9.80,33.04\r\n5Y3VW,KFGP,Bathroom,5,7,Yes,\"A person is sitting on the edge of the tub with a towel on their lap.  The person puts the towel over the shower curtain and picks up a book from inside the cabinet, then runs out of the room.\",cabinet;medicine;towel,A man hangs up a towel and then takes something from a cabinet,c033 0.00 14.00;c154 3.00 9.30;c037 3.40 14.10;c034 8.00 14.30;c128 14.40 19.70;c113 12.10 18.50,21.62\r\n98KNP,OUKK,Recreation room / Man cave,4,6,Yes,\"The person started waking up, and looked down to see that the person's shoes were still on.  The person was lying on the table, and when the person realized this the person started laughing.\",table,A person is lying across a table and then looks at their foot.,c010 0.00 14.40;c151 0.00 7.00;c154 21.90 28.10,27.67\r\nGADDK,BYF9,Dining room,6,6,Yes,A person is walking and holding a sandwich and a cup of coffee in the dining room.,coffee;cup;food;glass;phone/camera;sandwich,A person walks around a kitchen holding a cup in one hand and sandwich in the other hand.,c107 1.80 20.00;c067 2.80 20.00;c015 2.10 20.00;c061 2.10 20.00;c016 2.10 20.00,18.79\r\nKUQLC,WQ8Z,Laundry room,1,1,No,\"The person is snuggling a blanket next to the laundry room door, and then they stop and begin playing with the doorknob.\",doorway,A person is standing in a doorway of a laundry room.,,21.75\r\n8Y4YD,YMXV,Recreation room / Man cave,6,6,Yes,Person walking towards a chair while laughing while another person holds a camera.,bed;chair;doorway;man;phone;picture,A person walks through a doorway into a room and drags a chair from underneath a desk to the side with him. Another person is sitting on the bed taking pictures with their phone.;a man grabs a chair from behind while another man films him.,c015 18.00 32.00;c097 0.00 18.10;c135 19.90 32.00;c087 17.70 32.00;c152 22.20 32.00,30.88\r\n1YSGI,C7O9,Laundry room,7,7,Yes,A person stands in the doorway of the laundry room grasping a box with a blanket on top they walk to the washer and put the blanket inside and start washing it.,blanket;box;clothes;doorway;machine,\"A person leaves a doorway, takes a blanket from a  box that the person is holding and puts them in a washing machine. the person then puts the box on a dryer.\",c071 5.20 23.60;c040 0.00 24.80;c042 17.50 25.50;c044 4.10 20.10;c097 0.00 9.50;c001 4.50 18.90,27.62\r\nDA7E9,3VLX,Kitchen,6,7,Yes,\"A person is cooking at the stove, throwing ingredients into the skillet. They pick up a book, a cookbook, to look for the next step, and begin working some more on the meal.\",book;food;stove,A person is cooking food on a stove and then picks up a book. The person reads the book and then continues cooking.,c030 9.40 15.70;c032 10.90 25.80;c147 1.20 13.20;c061 0.00 13.70;c117 9.40 27.90;c026 9.40 27.90;c027 9.40 27.90;c025 9.40 27.90;c028 21.80 28.40,31.92\r\nGOK03,T7C3,Pantry,6,7,Yes,A person is smiling while taking food and coffee out of pantry.,coffee;desk;food,\"A person removes some coffee from a shelf, then puts it down on the counter before removing several more items in boxes.;Person walks into the room open the cabinet door get coffee and food off the shelf\",c062 10.00 17.50;c061 29.30 40.00;c063 27.30 33.60,39.29\r\n8BA61,PO5L,Recreation room / Man cave,3,7,Yes,\"A person is laying on a sofa in a Recreation room / Man cave taking a nap.  After awakening, the person sits up and eats a sandwich.\",food;pillow;sandwich;sofa;table,\"A person enters the living room and takes a nap on the sofa.  They then wake up, eat a snack, and leave the room.;A person walks into a room and lies down on the sofa with a pillow they reach up on a shelf then they sit up and eat a sandwich and walk out of the room.\",c065 19.30 30.50;c122 2.10 21.10;c156 19.30 30.50;c154 26.50 32.00;c076 1.70 6.30;c063 19.10 30.30;c078 4.30 21.30;c151 0.00 7.10;c061 20.20 30.30;c009 25.10 30.30,34.00\r\nY6419,KFGP,Kitchen,3,3,No,\"A person is putting some dishes in the sink, smiling when thinking of a happy memory.\",bowl;cabinets;counter;dish;man;sink,a man grabbing things out of a bowl on a counter.;A person in the kitchen is pretending to wash dishes.,c118 8.60 13.60;c119 0.00 24.80;c120 0.00 24.80;c121 22.70 28.90,27.83\r\nMZGMN,BYF9,Bedroom,7,7,Yes,\"A person opens a box on the floor and throws a book into the box, then closes the box.  The person takes a glass off the shelf and leaves the room, closing the door behind them.\",book;box;cup;door;floor;glass;shelf,A person opens up a box and throws a book into it. The person takes a glass off a shelf and closes a door.,c041 0.00 7.80;c125 0.00 15.30;c082 12.80 19.70;c031 5.50 13.70;c006 18.90 27.00;c107 12.60 22.80;c039 8.60 14.00;c097 18.00 24.10;c028 5.90 11.50,25.71\r\n3YVPG,3VLX,Closet / Walk-in closet / Spear closet,6,6,Yes,\"A person is sneezing into a sandwich, then pouring a glass of wine and then lying on a blanket in a Closet / Walk-in closet / Spear closet.\",blanket;book;bottle;cup;floor;glass;phone;table,\"A person is holding a book, and places the book on a table. The person begins to sneeze. The person then grabs a beverage and pours it in a glass. The person then picks up a blanket and sits on the floor with it.;A person is standing in their closet holding their phone and sneezing. Afterwards, the person pours a glass of wine and drinks it. After putting down the glass and bottle, the person lays down on the floor with a blanket.\",c072 22.00 29.00;c107 12.00 42.00;c153 18.00 32.00;c009 0.00 2.60;c124 32.00 39.00;c109 19.40 25.50;c125 30.50 35.70;c071 25.60 32.00;c151 30.50 35.90;c108 8.50 18.30;c110 6.60 14.50;c073 23.50 29.80;c154 0.00 41.10;c070 24.10 32.70;c127 28.40 34.50;c106 15.70 22.80;c126 26.60 31.40,41.08\r\nJO8M2,YMXV,Bedroom,5,6,Yes,\"A person is standing in the bathroom getting dressed.  The person looks in the mirror briefly, then takes a bottle of medicine out of a box and puts it into the medicine cabinet.\",clothes;medicine;mirror,A person is dressing in front of a mirror. They pick up something and walk to a desk.,c096 0.00 4.80;c148 0.00 17.70;c004 0.00 17.70,31.58\r\nJL6MG,LWUV,Kitchen,6,5,Yes,\"A person pours a drink, grasps a sandwich from a plate and walks over to the dining room table to sit down in front of a laptop.\",chair;cup;dish;food;juice;phone/camera;sandwich;table,\"This person is pouring a drink, then sits at a table and starts eating, then takes a drink.;A person is puring juice in a glass cup then sitting down at a table and eating a sandwich and drinking juice.\",c065 25.60 41.00;c156 24.40 36.20;c011 16.10 41.00;c063 9.30 23.70;c109 15.10 23.50;c151 14.90 22.10;c059 16.50 41.00;c069 38.30 41.00;c067 38.30 41.00;c110 38.30 41.00;c068 38.30 41.00;c009 38.30 41.00;c108 0.00 9.40;c118 8.90 20.70;c106 10.10 21.50;c061 24.20 32.60;c120 0.40 37.20;c107 0.00 35.40;c087 0.00 41.00;c062 0.00 41.00,39.83\r\nNNZON,18IT,Living room,7,6,Yes,\"Two people are snuggling on a chair by a window when one sneezes, causing the other person to smile.\",chair;sofa,\"Persno A and Person B sit down on the couch, Person A sneezes and Person B laughs at Person A.;Two people go over to the sofa and sit down with a smile, one man began to sneeze.\",c153 7.90 19.00;c152 9.10 19.00;c151 0.00 3.40;c123 0.00 8.30;c149 9.40 19.00,17.71\r\nM8NZA,ZAWX,Kitchen,6,7,Yes,\"Using a chair to reach a shelf above the entryway, a person grasping a book to put back in its proper place.\",book;chair;closet/cabinet;shelf,A person stands on a chair and goes through a shelf.,c060 3.00 32.00;c082 6.40 31.50;c154 1.30 8.10;c028 8.70 31.60;c030 8.70 31.60;c113 4.90 10.40;c026 8.90 24.50;c112 27.00 32.00,31.50\r\nSFK5D,EE32,Kitchen,6,7,Yes,\"A person is standing at the kitchen sink, washing dishes.  The person pauses what they're doing in order to sneeze five times.  This is ridiculous, and it makes the person smile and laugh a little bit.  They then continue to wash the dishes.\",dish;sink,A person is washing dishes in the sink. The person then sneezes a few times before continuing to wash the dish.,c121 0.00 18.00;c153 3.10 14.70;c120 10.30 15.00;c118 10.30 18.00;c154 0.00 18.00,16.75\r\n43OGO,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is holding homework while another person is putting shoes in a bag.,floor;homework;paper;shoe,\"One person is working on homework, another is putting shoes in a box.\",c145 0.00 14.40;c054 18.10 32.00;c151 16.00 32.00;c125 0.00 19.10,31.29\r\nCC87Z,L4ZP,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"The person opened the door to the room, entered and closed the door.  The person then took the bag off of the table and went upstairs.\",bag;door,A person is walking in the door. A person then grabs a bag and leaves,c006 7.50 18.10;c008 4.20 12.60;c020 13.60 30.20;c097 6.60 14.00;c141 8.10 16.30;c150 17.60 32.00;c023 13.60 32.00,31.12\r\nLFC6D,ZAWX,Stairs,6,4,No,\"A person is in a basement working on a messy desk, they then start sneezing as they walk by a window.\",bag;chair;doorway;glasses;stairs;table;towel;window,{},c009 13.50 20.20;c011 0.00 20.60;c092 26.90 32.00;c153 19.00 26.50;c154 15.70 21.40;c152 20.20 26.40;c097 22.20 27.30;c091 28.60 32.00;c059 0.00 20.60;c151 16.30 21.60,31.04\r\nTU4IL,CCI9,Garage,4,7,Yes,\"There is a laptop on the small phone desk in the hallway. A person, standing, is laughing and smiling while talking on the landline.\",garage;phone,This person is talking on the phone while standing in the garage.,c015 0.00 32.00;c019 0.00 32.00,30.92\r\nRDUOV,KQI6,Dining room,7,5,Yes,\"In the hallway, a person is putting a broom in a closet.  Another person is taking dishes and a glass to the kitchen.\",broom;dish;doorway;table,A person is swinging a broom around and puts it down then another person comes and grabs some dishes and takes them to the kitchen.,c099 9.30 15.90;c119 30.10 34.00;c118 14.70 34.00;c097 23.10 28.50;c119 27.60 32.80;c118 15.20 20.40;c012 13.60 25.80;c120 13.60 25.50;c098 0.00 15.60,33.04\r\n3JJ7C,LTAC,Bedroom,6,7,Yes,\"A person is closing a wardrobe, then throwing cutlery into a sink in a recreation room / man cave.\",closet;dish;mirror;shelf;sink;wardrobe,The person tidy's up a shelf. The person then grabs something out of a cupboard and walks over to the sink.,c113 6.10 11.20;c082 0.00 9.90;c096 6.70 17.70;c119 24.20 32.90;c112 14.70 19.40,31.67\r\n6SY30,8718,Bathroom,6,7,Yes,\"A person is closing a cabinet door, then washing a doorknob in an entryway.\",cabinet;door;mirror;towel,\"There is a person wiping off a cabinet, door and doorknob with a towel.;A person is using a towel and cleaning a mirror. A person is cleaning a door knob.\",c114 0.00 5.60;c038 9.20 31.00;c033 0.00 31.00,29.75\r\nBKXN4,6RE8,Bedroom,6,6,Yes,\"A person is in a garage working on a laptop, they then start dressing by putting their shoes on and grab a towel before leaving.\",chair;clothes;door;floor;laptop;shoe;table;towel,The person was working on laptop then proceeded to put shoes on and head out the door.;A person is sitting at a desk using a laptop. They grab their shoes and put them on. Then they grab a towel off a chair.,c055 6.40 26.40;c052 0.70 9.20;c035 24.80 31.50;c148 6.40 26.50;c011 0.40 12.20;c056 6.00 23.70;c033 23.80 32.00;c036 25.70 32.00;c154 22.40 28.90;c059 0.20 26.90;c054 12.80 26.40;c008 29.20 32.00;c000 25.90 32.00,31.33\r\nD3KN2,8718,Dining room,6,7,Yes,A person runs into the dining room and sneezes. The person takes a stack of homework from the desk.,book;desk;doorway;homework;paper;shoe,A person walks over to a desk and picks up homework then puts on shoes and walks to a door;A sneezing person runs into a room and grabs homework. They walk to another room and put on their shoes.,c117 2.00 9.00;c150 0.00 3.00;c153 0.00 4.00;c055 13.00 22.00;c027 5.20 10.00;c032 5.30 24.00;c097 7.00 12.80;c026 2.20 24.00;c030 1.90 7.00,22.75\r\nWJQPA,S053,Pantry,7,7,Yes,A person walks to the doorway of the pantry.  The person is drinking from a cup.  The person lays a blanket down on a shelf.,blanket;cabinet;doorway;glass;shelf;towel,\"A person opens a cabinet, places a blanket in the cabinet, and closes the cabinet.\",c071 17.40 31.00;c113 9.60 17.20;c112 25.60 34.00;c034 17.00 29.10;c114 17.20 34.00,32.88\r\nN9TRF,3H6W,Kitchen,7,7,Yes,\"A person in their kitchen is undressing by taking their jacket off. They take out their phone and put it on top of the table, while fixing their hair.\",clothes;hair;phone;table,\"The person sat down and too off their jacket. The person grabs a brush, brushes their hair and takes a cell phone out of their pocket. The person gets up and walks away.\",c009 13.10 18.50;c155 3.60 14.80;c017 12.80 18.30;c154 20.60 25.90;c015 12.50 18.50;c001 7.60 14.40;c011 2.60 24.70;c144 14.00 23.80;c059 3.00 25.20;c151 1.50 7.20,27.88\r\nZ9WWJ,0KZ7,Basement (A room below the ground floor),6,7,Yes,\"A person runs into the basement, holding a broom. The person throws the broom into a corner then looks out the window.\",broom;window,A person runs down the stairs holding a broom. They go to a window and look outside.,c092 4.40 25.00;c098 0.00 6.90;c150 0.00 7.50;c101 3.30 7.40;c099 3.30 7.40,24.08\r\nJY0I5,WG9D,Bathroom,5,7,Yes,\"A person is standing in the bathroom washing their face.  The person takes a towel out of a bag and wipes their face, then picks up a broom and begins sweeping the floor.\",bag;broom;floor;mirror;towel,\"Man standing in a bathroom looks in a mirror wets, then dries face, moves bag, and sweeps floor.\",c022 4.50 10.00;c023 2.80 9.00;c102 10.20 15.00;c038 5.80 12.90;c127 10.50 15.00;c033 5.30 13.60;c096 0.00 4.20,14.08\r\nS6N22,H8N1,Kitchen,4,6,Yes,\"A person is in a kitchen tidying up the stove, they then look at a message on their phone and start laughing.\",counter;cup;phone;shelf,A person is tidying up the kitchen counter then grabs their phone plays with it then puts it down.;A person is in the kitchen cleaning they grab a watter bottle then put it down then they grab a phone they use a towel to clean the counters.,c015 14.30 24.80;c111 8.60 14.20;c110 6.20 12.50;c082 0.70 14.70;c109 4.40 10.80;c017 16.30 24.80,24.62\r\nITJIY,I2IV,Bedroom,7,6,Yes,\"A person is sitting in a chair and eating at the table. Then, smiling, the person walks over to the wardrobe.\",chair;closet;food;table;wardrobe,A person is sitting at a desk eating. They stand up and walk to a wardrobe and open it.,c059 0.00 12.90;c113 13.30 20.00;c011 0.00 13.20;c156 0.00 12.10;c154 8.90 14.30;c062 0.00 3.30;c063 0.00 2.70,18.54\r\nOX3BI,WQ8Z,Pantry,5,7,Yes,A person walks into the pantry and turns on the light. The person throws something onto the table and then walks out.,book;homework;light;table,Aa person is walking to the kitchen and throws a notebook on the nearest table.;A person is putting their homework on the table.,c009 7.60 12.50;c028 8.20 12.70;c026 3.00 12.20;c104 4.70 9.80,18.25\r\n7D99X,4OHY,Bedroom,3,5,Yes,a person eats a sandwich while putting dishes into a box and setting them on the floor,box;cup/glass/bottle;floor;food;groceries;sandwich,The person is eating a sandwich and walking through the room stopping to throw items in a box.,c065 0.00 30.00;c067 0.00 30.00;c156 0.00 30.00;c061 0.00 30.00;c130 18.00 30.00;c107 0.00 15.00;c109 7.80 16.90;c044 23.00 30.00,29.21\r\nSM1QV,ZAWX,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is washing the mirror over the table while sneezing in the entryway.,mirror;table,the person cleaning the mirror neatly and got sneeze while cleaning the mirror,c096 0.00 32.00;c095 0.00 32.00;c153 9.00 14.00;c153 12.00 16.40,31.04\r\n0SBT3,WG9D,Living room,5,7,Yes,A person in a living room is sitting on a sofa is eating a sandwich opens a book.,book;food;sandwich;sofa,A person is sitting on a sofa eating a sandwich and reading a book.,c026 1.50 7.00;c027 1.80 7.00;c123 0.00 7.00;c067 0.00 6.30;c156 0.00 6.70;c065 0.00 5.10;c068 0.80 5.30;c032 2.30 7.00;c069 0.00 3.60;c030 1.60 6.00,6.25\r\nDML20,0KZ7,Basement (A room below the ground floor),6,6,Yes,A person takes off their shoes then sits on a pillow while laughing.,floor;pillow;shoe,A person is rocking back and forth on the floor with a pillow underneath.,c057 0.00 6.40;c151 5.60 14.60;c125 7.00 29.00,27.62\r\nD260T,9Y7F,Kitchen,6,6,Yes,One person snuggles a pillow and watches as another person sneezes while tidying up a cabinet.,cabinet;pillow;shelf,\"A person is holding a pillow, while another person is fixing a shelf and sneezing.;The person is flipping a pillow. The person on the left sneezed. The person on the right laughed.\",c080 2.20 7.20;c114 0.60 12.50;c153 9.10 15.70;c081 4.10 9.10;c076 0.00 32.00;c082 0.80 12.50,30.71\r\nB6487,KQI6,Kitchen,2,5,Yes,A person is pouring a glass of juice from the refrigerator and then washing a table in the kitchen.,cup;glass;refrigerator;table,A person opens a refrigerator and takes out a glass and a drink. The person pours the drink and wipes down the counter.,c108 14.30 23.30;c142 2.50 7.40;c143 0.00 4.30;c009 8.70 13.90;c110 0.00 36.00;c109 0.00 36.00,34.92\r\nL1PKF,C7O9,Kitchen,6,6,Yes,One person laughs in the doorway while tidying with a broom as another person is undressing by a box in the closet.,box;broom;clothes;jacket,\"One person sweeps the floor with a broom while another person undresses and takes off shoes, putting the clothes on a box.;A person is sweeping with a broom, while another person is taking off a jacket.\",,30.75\r\nPNA9N,0KZ7,Bathroom,7,7,Yes,A person is washing a box while another person is grasping a mirror.,box;mirror,\"A person is cleaning a box, while another person looks at themselves in a mirror.\",c093 0.00 26.60;c096 0.00 29.00,27.62\r\nDVPL2,YA10,Closet / Walk-in closet / Spear closet,7,7,Yes,A person throws a bag into a cabinet. The person sneezes then drinks from a cup of coffee.,closet/cabinet;cup;doorway;jug;safe,A person is carrying a cup and jug. The person walks into the closet and places the jug into a safe. The person drinks from the cup.,c106 13.30 20.80;c107 0.00 3.30;c153 17.90 23.50;c113 4.00 10.50;c112 8.90 13.90;c097 0.40 6.00,28.42\r\nZY2B1,BYF9,Living room,7,6,Yes,\"A person is folding a pile of clothes. When finished, the person throws the pile onto a shelf, then leaves.\",clothes;clothing;door;floor;shelf,\"someone folding a couple of articles of clothing;A person stands and folds some clothes, the throws the clothes at a shelf and leaves the room through a door.\",c081 15.50 22.30;c006 16.60 24.90;c003 16.60 24.70;c004 1.10 21.10;c002 5.40 10.40;c000 0.00 9.30;c141 17.40 23.40;c001 15.00 20.10;c126 15.70 20.60,26.50\r\nCICFF,7RMV,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person by the entry way is opening up a box. They pull out their phone and start grasping it firmly with their left hand. Then they take a picture with their phone.,door;man;phone;table,Someone walks through a doorway and takes a phone from the table and begins using it.;a man grabbing something off of a table and holding it up.,c015 7.40 47.00;c016 7.00 47.00;c018 5.60 15.80;c097 0.00 6.40;c087 24.30 46.90,46.00\r\n6C4DV,UTMU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person runs to the closet and puts a glass on the shelf. The person takes a picture.,closet;cup;doorway;glass;phone;picture;shelf;something,\"A person runs into a closet, moves a glass form one place to another on a shelf, and then takes a photo of the glass with their cell phone. The person then walks out of frame.;This person runs into the closet, sets something on the shelf, then takes a picture of it.\",c109 0.20 7.30;c081 0.20 7.30;c150 0.00 4.60;c015 4.90 18.80;c110 1.20 7.10;c087 8.30 15.60;c097 0.00 3.90;c114 0.50 7.00;c016 5.00 20.50;c018 0.50 8.20,21.88\r\nM8CDW,I1YH,Pantry,7,7,Yes,\"A person is sitting in a chair talking to a close friend, holding the phone tight against their face.\",chair;phone,A person is sitting in a chair in the pantry and talking on the phone.,c019 0.00 34.00;c059 0.00 34.00,32.79\r\nPNCWY,HJJ4,Stairs,6,7,Yes,A person is dressing by putting on a jacket they pick up from a pile of clothes. Then they walk up the stairs while holding some groceries.,bag;clothes;groceries;jacket;stairs,\"A person walks over to the stairs,puts on a jacket,and then grabs a bag and walks up the stairs;Person walks near stairs, picks up jacket and puts it on. Then bends down, picks up bag and walks upstairs.\",c020 7.50 21.00;c148 0.00 11.30;c154 8.50 13.60;c023 10.30 21.00;c002 0.00 4.30,20.25\r\nNP0OB,BYF9,Living room,7,7,Yes,A person is smiling at the person's reflection in a mirror in the living room. The person sneezes and drops the bag that the person was holding.,bag;mirror,Person walks into a room holding a bag and looks in a mirror. Sneezes and drops bag.,c096 1.30 14.00;c020 2.60 18.00;c152 2.60 12.90;c153 11.80 19.30,18.54\r\n9OIS0,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is throwing a towel over the doorknob while holding a light.,clothes;door;towel;wardrobe,A person is standing holding a towel and a lamp the walk over to the door and try to put the towel on the door knob but it keeps falling off.;A person holding wardrobe walks to a door and puts a shirt on the door handle.,c141 5.80 12.80;c033 0.00 27.00;c034 5.50 27.00;c001 4.60 27.00;c097 8.30 14.50,26.33\r\nF4TXY,JVLO,Home Office / Study (A room in a house used for work),5,6,Yes,\"One person takes a bottle of medicine from the desk, grasps it tightly, then drinks it.\",desk;food;medicine;table,\"A person is walking to a table and picks up some medicine from a desk, they then take a drink of the medicine.\",c128 4.90 11.10;c129 7.00 29.30;c061 3.90 33.20;c009 28.40 34.00;c062 26.70 34.00;c063 3.20 13.40,32.58\r\nIGT82,37UI,Bathroom,6,7,Yes,One person walks through the doorway and grasps some medicine on a shelf before running out.,cabinet;cup;door;medicine;shelf,\"This person walks into the bathroom, goes to medicine cabinet, gets a bottle of something and then leaves the bathroom.;A person walks through a door and opens a cabinet.  The person picks up some medicine and leaves with it.\",c081 2.50 12.90;c097 0.00 6.90;c150 21.70 29.80;c113 0.10 7.80;c110 1.30 9.00;c008 1.40 6.60;c128 5.00 31.00,29.75\r\n7DZY6,JVLO,Recreation room / Man cave,5,5,Yes,A person is lying on the floor in a man cave holding shoes in their hands.  Another person is walking into the room holding a broom.,broom;doorway;floor;shoe,\"One person is laying on the floor, then sits up and shows off a pair of new shoes. Another person in a purple shirt walks to another room, and picks up what could be a broom\",c098 24.20 29.90;c100 21.00 32.00;c053 6.10 16.60;c056 4.20 10.70;c124 0.00 8.10;c097 12.80 18.70;c125 4.20 16.90,31.08\r\n55MRE,HJJ4,Garage,4,7,Yes,A person eating food starts throwing blankets into a pile in the garage.,blanket;clothes;floor;food,\"A person eats while throwing clothes on the floor.;person standing and eating food, removing blankets and clothes and throwing them on to floor\",c156 0.00 4.10;c126 0.00 3.20;c003 0.00 3.70;c061 0.00 22.00;c000 3.70 9.30;c000 6.80 14.00;c002 3.70 9.90;c002 6.40 15.20,21.04\r\nUKLGU,1OHU,Dining room,7,7,Yes,A person is snuggling with a blanket. The person smiles after the turn the water on at the sink.,blanket;sink;water,\"A person wrapped in a blanket looks around the room. The person removes the blanket, walks over to the sink and turns on the water.\",c070 0.00 37.00;c152 33.60 37.00;c072 0.00 24.60,36.42\r\n3C9R2,ZAWX,Home Office / Study (A room in a house used for work),4,6,Yes,A person is smiling and watching a video playing on the laptop on the desk.,chair;desk;laptop;man;table;video,\"a man sitting and watching something on a laptop, while laughing.;A person is watching a video on a laptop while sitting in a chair at a desk.\",c011 0.00 31.00;c051 0.00 31.00;c152 17.50 23.40;c059 0.00 31.00;c149 16.20 23.40,30.46\r\nKGU21,T7C3,Dining room,5,7,Yes,A person is standing by the window laughing and eating while holding coffee.,coffee;cup;dish;food;plate;sandwich;table;window,The person is standing by a window and looking out all the while the person is snacking on a sandwich.;A person eating a sandwich and holding a coffee cup looks out the window and laughs. The person sets the coffee cup on a table.,c092 0.00 33.00;c156 0.00 33.00;c067 0.00 33.00;c107 0.00 33.00;c149 12.20 23.20;c065 3.60 27.40;c068 4.40 10.80;c109 27.20 33.00;c061 0.10 10.00;c009 26.90 32.80;c118 0.00 33.00,31.83\r\n9YI82,XXN8,Home Office / Study (A room in a house used for work),6,6,Yes,A person is smiling as they read a book. The person laughs and puts the book down on a table.,book;table,\"A person is smiling and reading a book. The person then laughs and nods, and places the book on the table.\",c009 22.70 27.50;c029 0.30 21.80;c032 12.30 21.60;c152 0.00 30.90;c149 18.90 26.10;c025 18.90 24.70;c028 22.30 28.10;c026 0.00 27.00,30.33\r\nDJG7A,XKTB,Other,6,6,Yes,A person walks to a shelf and puts some clothes on it. Next the person walks away while grasping a broom.,blanket;boxes;broom;clothes,A person walksin a puts a blanket down. Then they do a dance.;A person places some clothes down.  The person then begins to tidy up and clean with a small broom.,c098 13.90 31.20;c102 15.50 29.50;c001 1.90 11.90;c004 10.20 30.30,30.75\r\nLITXP,I4RP,Hallway,6,6,Yes,One person is sneezing while tidying up with a vacuum. Another person runs through the room with a pair of shoes in hand.,doorway;shoe,A person is sneezing while another person is walking through the hallway holding a pair of shoes.,c153 0.00 7.00;c053 0.00 7.00;c097 0.40 6.00,6.21\r\nEI1W1,I4RP,Bedroom,6,6,Yes,A person is dressing in front of the mirror. Another person is smiling and watching with a hand grasping the doorknob.,clothes;door;jacket;mirror,\"Person A is dressing self while looking at a television, Person B is grasping a doorknob while looking at person A.;A person puts on a jacket while looking in the mirror and another person is standing by the door.\",c141 0.00 7.00;c148 0.00 7.00,6.08\r\nGIC6A,LCOB,Hallway,6,4,No,\"A person is smiling as the person is walking into the room, holding a sandwich. A person is leaving the room, wrapped in a blanket.\",blanket;doorway;sandwich,\"A person enters through a doorway holding a sandwich. The person picks up a blanket, puts it around the shoulders and walks back to the doorway.\",c067 0.00 7.70;c070 6.60 17.30;c073 7.20 13.10;c097 0.00 2.70;c065 0.00 11.20,16.88\r\nEDBSA,4OHY,Living room,4,7,Yes,A person walks over to their sofa and starts to snuggle a pillow.,pillow;sofa,\"The person is walking across a living room. The person picks up a pillow from the sofa and sits down on the sofa. The person puts their head back, as if upset, then hugs the pillow.\",c123 6.30 31.00;c076 6.50 31.00;c078 7.10 31.00;c079 5.70 13.50;c151 6.00 13.90,29.71\r\nLUZNA,YMXV,Bedroom,3,3,Yes,A person is tidying the sofa and fixing the phone.,phone,A person wipes down a bed sheet with a rag and proceeds to take out their phone from their pocket and places it on top of a pillow.,c017 26.70 32.00;c015 20.70 32.00;c087 20.30 29.30,31.29\r\nTNG97,D0RU,Hallway,6,7,Yes,\"A person walks down the hallway, holding a cup of coffee. The person pauses at a doorway, takes a look inside, then continues walking.\",coffee;cup;doorway;glass,\"A person walks through the hallway, holding a mug of coffee. The person stops to look at a table, and then walks into a kitchen, where the person drinks coffee.\",c097 12.60 23.00;c106 22.00 31.00;c107 0.00 31.00,30.00\r\n3GY40,9Y7F,Dining room,5,7,Yes,A person is sneezing on dishes while another person is throwing a pillow.,bag;chair;dishes;doorway;food;pillow;table,\"A person is eating at a table and then sneezes. A second person throws a pillow at the first person and then sits down.;A person is sitting at a table with some food. After sneezing, another person enters the room and sits down next to the first person and laughs.\",c080 7.40 15.70;c151 11.50 21.40;c063 16.80 24.70;c059 9.50 32.00;c149 20.60 32.00;c153 6.00 11.00;c011 15.00 21.00;c097 6.00 11.70;c020 4.60 12.80;c061 1.10 8.10,30.71\r\nJXNEN,5LWB,Home Office / Study (A room in a house used for work),6,7,Yes,A person is working at a computer. Another person walks in with a towel around their shoulders and eating a sandwich. They point at the person who is working and laughs at them.,chair;computer;desk;doorway;food;sandwich;sofa;table;towel,A person is sitting at a desk and working on a computer.  Another person walks by with a towel draped around their neck and eating a sandwich. They sit down on a sofa.;A person is sitting at a desk on a computer. Another person walks in a sits down while eating a sandwich. They have a towel around them.,c061 12.10 27.00;c156 11.10 24.20;c151 10.20 20.00;c014 0.00 27.00;c065 10.40 17.70;c149 15.50 27.00;c123 15.50 27.00;c067 12.00 27.00;c059 0.00 27.00;c152 21.40 27.00;c097 10.00 15.10,25.75\r\n3OQ8M,P6LJ,Living room,6,6,Yes,The person was throwing the clothes and as they fell they grasped the doorway.,clothes;door;floor,\"The person carries some clothes towards the door, throws the clothes on the floor, lays down, gets up and walks back\",c003 2.50 11.10;c152 17.90 25.60;c154 17.40 24.80;c124 8.90 23.70;c151 7.00 12.50;c008 13.10 17.80;c154 7.30 13.10;c124 9.50 15.60;c000 0.00 10.60;c006 17.10 22.10;c126 2.80 11.00;c141 13.00 18.20,25.17\r\nWEIS2,ZAWX,Bedroom,5,6,Yes,A person is seen holding a camera while inspecting it. They begin leaving the room and go look at themselves in a mirror.,bed;camera;hair;mirror;phone,A person plays with a camera on their bed before getting up and checking the mirror.,c016 2.50 20.70;c094 22.00 32.00;c154 14.10 20.40;c096 22.60 32.00;c152 15.70 20.90;c135 0.00 18.60;c015 0.00 20.10;c144 15.00 26.00,30.67\r\nEY6P4,YMXV,Home Office / Study (A room in a house used for work),6,7,Yes,A person grabs a doorknob and opens a door to their study. The person opens a window and reads a book.,book;closet/cabinet;door;television;window,Person opens a door and then walks over and opens a window while reading a book.,c026 0.00 3.20;c141 0.00 2.90;c008 0.00 2.90;c113 0.50 7.00;c032 4.80 11.00;c132 7.80 14.10,31.00\r\n3EDV7,XXN8,Laundry room,6,7,Yes,A person tosses clothes into their washer.  They close its door and turn the machine on. They pick up a pillow to be washed later and snuggle it.,clothes;door;pillow,\"A person puts some clothes in the washing machine, turns it on, picks up a pillow and snuggles with it, then walks away.\",c005 2.60 10.40;c078 5.30 13.40;c001 0.30 16.30;c076 7.70 31.00,30.25\r\nTVBN3,D0RU,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is walking in, holding a coffee.  They take a sip, smile, and pick up their phone to make a call.\",coffee;cup;dish;doorway;phone,\"Person walks into room drinking from mug, picks up phone from table and talks on it\",c106 5.40 22.40;c019 28.90 33.00;c097 1.90 8.00;c118 2.10 33.00;c016 20.40 32.00;c018 19.60 25.40;c015 20.70 33.00;c107 3.00 33.00,31.50\r\nW98IU,6RE8,Bedroom,6,6,Yes,A person is standing in the hallway while smiling because they saw something funny outside of their window. They see a chair nearby and start walking towards it.,chair;floor;window,\"A person standing in a bedroom and looking out a window while smiling, then turns around and walks towards a chair, then moves the chair and then sits down.\",c059 23.50 31.00;c092 0.00 13.40;c152 0.00 15.20;c151 22.50 28.70;c127 16.20 21.40,30.25\r\nS4EEQ,PKND,Closet / Walk-in closet / Spear closet,6,6,Yes,One person watches with one hand on the doorknob as another person starts undressing near folded clothes on a shelf.,closet;clothers;clothes;door;shelf,Person A and person B are standing near each other as Person A keeps a cabinet door open and Person B removes clothes.;2 people are in the bedroom one person is opening a closet door while another person is taking off their shirt the first person leaves through the closet,c155 4.40 11.70;c113 7.00 18.10;c002 12.60 23.30;c008 4.40 14.30;c006 0.60 8.20;c006 12.00 18.10;c008 23.90 32.50;c097 26.40 33.50;c001 20.30 34.00,32.79\r\nQZZ0T,QB52,Bedroom,4,6,Yes,A person is snuggling with a pillow then gets up to tidy some clothes off the floor.,bed;clothers;pillow;socks,\"Person puts a pillow on his lap while sitting on a bed and watching television.  Person then throws pillow aside and grabs some socks.;A person is sitting and holding a pillow, then they put the pillow to the side and get up to bend down and pick up some socks.\",,30.04\r\nFQDS1,ZAWX,Bathroom,3,7,Yes,A person is in their bathroom reading a book. They stop and start tidying up. The phone falls. They attempt to fix the phone. They sweep then leave.,book;doorway;phone;shelf,\"A person is reading a book. A person then fixes items on a shelf, then picks up a phone.;There is a person holding a book. That same person, then straightens up items on a shelf, picks a phone up off the floor and walks away.\",c015 7.70 18.90;c026 0.00 9.20;c028 4.90 10.00;c032 0.00 8.60;c082 7.80 19.60;c097 22.20 27.90,30.62\r\nP81OP,5LWB,Bedroom,6,6,Yes,\"A person is laying in bed, reading a book. Another person, laying next to them, awakens and smiles at them, turning on the light on the nightstand and giving them a good morning kiss.\",bed;book;shelf,\"A person is lying on a bed, then gets up, and leaves. Another just stays on the bed reading.;A person is lying on the bed, as another person is lying own reading a book. A person then picks an item off a shelf and puts it back.\",c134 6.00 22.00;c026 9.00 29.00;c146 19.00 26.00;c154 23.00 28.00;c133 16.70 28.10;c032 9.40 22.90;c152 29.50 36.40,36.00\r\nEBJN1,9PLL,Hallway,5,7,Yes,A person is holding a laptop and then drinking coffee while looking out the window in the living room.,coffee;cup;dish;laptop;window,\"A person is holding a lap top and drinking from a cup, then they look out the window.\",c047 0.00 36.00;c106 2.20 36.00;c107 0.00 36.00;c092 20.70 36.00;c118 0.00 36.00,34.62\r\nLE5F4,H8N1,Hallway,6,4,Yes,A person takes a camera from the chair and begins playing with it.,hair;phone,A person is seen playing with their phone with a serious look on their face.;A person is texting on their phone.,c015 4.30 23.20;c144 12.40 18.70;c154 0.00 7.30;c016 2.70 22.60;c018 0.00 6.20,25.21\r\nIJ01G,6RE8,Bedroom,6,6,Yes,A person is leaving their desk smiling to go watch television in their bed.,bed;door;laptop;television,\"A person enters a room through a door, then sits down on a bed to watch television.;A person opens a door, walks in the room and closes the door before lying on a bed watching television.\",c135 5.10 33.00;c006 0.90 5.60;c132 1.60 33.00;c097 0.00 5.40;c141 0.00 5.40;c051 3.00 33.00;c134 6.30 33.00;c008 0.00 5.40,32.38\r\n7U9EW,JVLO,Kitchen,3,7,Yes,One person is eating near the doorway while another is taking the broom.,broom;doorway;food,Person standing in the room eating food another person walk through the doorway and pick up a broom.;A person eats in a doorway then another walks through the doorway and picks up a broom from the floor and leaves back out the doorway.,c100 19.70 24.50;c156 15.30 28.40;c061 5.30 10.70;c098 19.50 31.60;c097 12.10 18.30,32.33\r\nNJCDX,RXM9,Kitchen,6,6,Yes,\"A person is grasping the doorknob to a cabinet door that contains homework supplies. Meanwhile, the person is drinking a soda.\",cabinet;cup;dish;doorknob;food;paper,\"A person is at a cabinet they take a drink of something and open the cabinet door, they take food and a book out of the cabinet then they close the cabinet door.\",c141 0.00 14.00;c106 0.00 32.00;c112 22.40 32.00;c113 4.10 13.20;c117 13.00 25.00;c063 12.90 25.40;c118 0.00 32.00;c107 0.00 32.00,30.58\r\n0VMUZ,HR43,Laundry room,6,7,Yes,In the laundry room the person is washing their clothes while laughing and holding a picture.,clothes;detergent;phone/camera;picture;washing machine,\"This person pours detergent into the washing machine, then looks at a picture.\",c084 10.50 16.70;c088 10.60 28.00;c005 0.00 12.70;c004 0.00 12.60;c018 9.70 28.00;c001 0.00 13.70,26.75\r\nFVJ9V,XARO,Dining room,4,6,Yes,\"The person was standing on a box, with the pillow inside.  The person got off the box and started to close it.\",box;pillow,A person stands on their luggage before closing it.,c039 12.00 31.00,30.33\r\n5DRVF,JVLO,Living room,5,1,No,\"One person pours coffee, sneezes, then laughs, causing another person on a sofa to awaken.\",chair;cup;dish;doorway;glass;sofa;water;window,A person is playing with two cups in front of a mirror and sneezing while another person gets up from a chair or sofa and walks towards a window.;A person pours some water into a glass. The person the sneezes. Another person gets up out of a chair and walks away,c153 9.40 18.70;c108 0.00 14.20;c123 16.60 27.50;c149 12.20 21.50;c092 0.00 16.40;c059 16.90 27.50;c154 22.60 28.10;c097 26.30 31.90;c118 0.00 14.40;c152 13.30 21.10;c154 0.00 21.40,31.25\r\nRXED2,7M1U,Living room,5,6,Yes,A person is in the living room working on their homework while watching television.  The person sneezes on their book and wipes it off.,book;homework;paper;sofa/couch;television,There is a person sitting on a chair in front of the television.  That person is writing and then they sneeze two times.  They then wipe off the paper they are writing on.,c145 0.00 32.00;c153 11.00 16.60;c026 0.00 32.00;c123 0.00 32.00;c032 0.00 32.00;c115 0.00 32.00,31.25\r\n8FP8X,4I2W,Living room,6,6,Yes,A person in the hallway is washing a glass. They put the glass down and start grasping a broom they find nearby the doorway.,broom;glass;table;towel,A person is cleaning a glass with a towel. They then drop the towel on a nearby table and pick up a broom.;A person is holding a towel. Then throws it aside to pick up a broom.,c098 17.40 29.10;c033 3.80 13.10;c034 10.80 19.20;c036 11.30 19.30;c009 11.30 19.60;c100 17.60 24.50;c107 0.00 17.00;c038 0.00 15.60;c109 11.50 17.00;c111 0.00 15.50,29.54\r\nRGE8C,YA10,Laundry room,7,7,Yes,\"A person, deciding that their shoes were too dirty began washing them in the laundry room, but realized that there was already a blanket in the wash, they smiled, and decided to try again later.\",blanket;clothes;shoe,\"A person is taking off their shoes. A person then takes a look a clothes in a washer, and puts back on their shoes.\",c071 9.50 23.50;c055 16.40 28.90;c000 11.40 17.10;c070 12.00 17.20;c053 4.40 9.80;c057 0.00 8.90;c002 11.10 17.10;c005 9.20 21.70;c056 0.00 31.00;c152 0.00 30.40,29.88\r\nG2UYF,BYF9,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person is in the man cave holding a broom while another person is playing with a bag.,bag;broom;sofa/couch,A person sits on the sofa and opens a bag.  Another person stands nearby holding a broom.,c098 0.00 18.00;c021 0.00 4.10;c020 0.00 18.00;c123 0.00 18.00,16.58\r\n61XR6,YA10,Laundry room,7,7,Yes,Person is working on completing the laundry in the laundry room and puts all of the completed laundry on the dryer.  Person then stands on a chair to fix the light that needed replacing.,chair;clothes;door;light;towel,A person is putting clothes from a washing machine into a dryer. A person then grabs a chair and turns on a light.,c060 22.10 35.00;c103 23.20 32.40;c104 23.20 32.30;c001 4.90 19.80;c002 4.60 19.30;c006 12.00 17.80;c034 3.40 8.90;c008 0.00 4.70;c035 1.20 7.20;c154 22.20 35.00;c033 3.00 15.50,33.62\r\nQ07NE,YMXV,Bedroom,6,4,Yes,\"A person is working out, then using a towel off a shelf and then leaving the recreation room / man cave.\",chair;closet;clothes;door;laptop;mouse;table;towel,\"A person is working on their laptop and then picks up a towel and opens a closet door.;A person is doing work on a laptop,after a while, the person gets up grabs a towel and goes to a closet.\",c033 5.40 11.20;c151 1.40 6.80;c052 0.00 5.50;c008 15.50 22.70;c113 15.50 22.70;c000 7.10 14.10;c035 4.50 10.40;c097 22.00 29.60;c002 3.80 9.80;c059 0.00 5.80;c011 0.00 5.70;c154 1.20 6.90;c141 15.50 21.20,30.62\r\n1ELWC,HR43,Bathroom,4,6,Yes,\"A person is opening a cabinet in the bathroom, takes out some medicine, then runs through the bathroom door.\",cabinet;door;medicine,\"Person opens medicine cabinet door and grabs medicine, closes medicine cabinet door, then runs away.\",c112 1.60 9.40;c006 1.10 9.50;c128 2.50 26.20;c113 0.00 4.70;c150 22.30 28.00,27.29\r\n0D5JP,6RE8,Dining room,6,6,Yes,\"One person runs into the garage grasping a cup of coffee, then snuggles up by a window with a book.\",book;coffee;cup;glass;window,\"Person runs to table,grabs coffee drinks it and then grabs book of table and runs to look outside  window.\",c092 20.60 31.00;c106 3.00 17.80;c026 13.90 31.00;c150 0.00 7.90,30.29\r\nCA5OI,6RE8,Recreation room / Man cave,6,7,Yes,The person is opening a door and then tidying the desk in the recreation room / man cave.,bag;desk;door;table;television;towel,A person is opening a door while holding a towel. A person then begins cleaning a table.;A person comes through a door with a towel and begins cleaning a desk.,c008 1.00 7.30;c012 8.20 31.00;c033 3.00 31.00;c013 16.60 31.00;c132 10.10 31.00;c020 8.90 14.00;c097 0.90 8.10,30.29\r\nK7X5G,XXN8,Living room,5,7,Yes,\"The person was watching the laptop with the lights turned down low, and started to close the laptop.\",bed;laptop,A person opens their laptop.  The person is sitting down and starts using their laptop.  The person then closes their laptop.,c046 24.40 32.20;c154 28.70 34.00;c151 0.30 5.80;c135 1.80 32.70;c052 4.10 29.00,32.58\r\nCHBAS,EIO2,Bathroom,5,7,Yes,A person is in a bathroom doorway undressing. The person throws their clothes in a pantry and grasp the doorknob and open the door.,clothes;clothing;door,The person is taking of shirt throwing it into another room,c006 16.50 25.10;c003 6.40 13.20;c155 0.00 7.40;c154 0.00 4.90,30.08\r\nDXVRB,DXDI,Stairs,7,7,Yes,\"A person is snuggling a towel on the stairs while grasping a picture and looking sad, rocking back and forth.\",blanket;picture;towel,A person sitting on the stairs is cuddling a towel and holding a picture.,c033 0.00 26.00;c084 0.00 26.00;c070 0.00 26.00;c072 0.00 26.00,25.25\r\nT6BS9,DXDI,Hallway,6,6,Yes,Person A is walking through and entryway holding a mobile phone and a pair of shoes.  Person A turns the doornobo and throws the shoes into a closet.,closet;door;shoe,\"This person is carrying some shoes, opens a closet, and throws the shoes inside.;A person walks through a hallway with shoes in their hand. They open a door and throw the shoes in.\",c008 3.80 9.90;c058 4.70 11.20;c006 3.80 10.40;c053 0.00 9.80;c112 7.30 12.50;c113 4.50 10.90;c097 0.00 4.00,14.92\r\n91YZH,9PLL,Kitchen,7,7,Yes,A person is smiling while holding a bag of groceries before putting the groceries on a desk,bag;desk;food;groceries;red can,\"A person walks into the room carrying  basket with wrapped grocery items inside, goes over to what appears to be a red trash can. takes them out and places them on top\",c020 0.00 31.90;c130 4.10 32.50;c062 6.30 32.90;c154 28.20 34.00;c063 5.60 10.60;c063 8.30 13.10;c063 10.50 15.90;c152 2.60 11.10;c061 0.00 30.90;c021 2.80 8.50,33.17\r\nMMFXQ,DXDI,Pantry,4,7,Yes,A person sneezes while throwing groceries from a bag into the pantry.,bag;cabinet;groceries;pantry;shelf,A person is putting groceries away in the pantry. A person then begins sneezing.;A person takes some groceries from a bag and puts them on a shelf in a cabinet.  They sneeze and continue to put the groceries in the cabinet.,c020 0.00 16.00;c153 1.10 6.40;c081 4.30 9.40;c130 0.00 15.10;c114 0.00 15.10,15.33\r\nXRLG6,PKND,Closet / Walk-in closet / Spear closet,6,6,Yes,\"Two people are lying on a blanket, working underneath a cabinet as they check the tightness of the screws from the cabinet to the closet wall.\",desk;floor,A person fixes a desk while lying on the floor.;Person lying on the floor working underneath a desk another person is helping with the work.,c124 0.00 32.00,30.92\r\nWF7TY,5LWB,Garage,5,7,Yes,A person is taking off shoes and then walking with a sandwich in the garage.,food;motorcycle;sandwich;shoe,\"A person gets off a motorcycle, takes off shoes, grabs a sandwich and walks off camera.\",c057 3.60 12.00;c067 10.90 19.50;c154 3.60 7.90;c061 10.80 21.00;c063 8.70 21.00,19.67\r\nPW6CO,KFGP,Hallway,6,7,Yes,\"A person awakens on the floor of the hallway, next to their school bag and their homework. The person smiles awkwardly.\",bag;floor;homework,\"A PERSON IS LYING DOWN ON THE FLOOR AND MOVES HIS FOOT A LITLE BIT, SITS UP FROM THE FLOOR AND SHAKES HIS HEAD\",c124 0.00 21.60;c146 17.90 29.00;c152 20.40 29.00,28.33\r\nGWUM6,XXN8,Kitchen,6,6,Yes,A person is seen putting dishes away. The person is closing a cabinet and then they sit down on a chair.,cabinet;chair;dish;door,The person put away the dishes in the cabinet and sat down. The person then got up.,c113 1.10 9.90;c119 4.00 10.60;c059 9.10 32.50;c151 8.30 14.00;c154 28.20 33.00;c141 2.00 10.60;c118 0.00 10.10;c008 2.20 9.80,32.00\r\nYYGJV,XB0Z,Hallway,5,7,Yes,A person is grasping some homework while standing in the hallway. The person then picks up a pillow off the floor.,book;doorway;floor;paper;pillow,A person walked through a doorway with a notebook. He opened the notebook and glanced at it briefly. The person then picked a pillow up off the ground and continued walking.,c127 2.90 12.90;c079 2.80 11.70;c115 0.00 14.00;c097 0.00 13.30;c076 5.10 12.20;c026 0.00 6.70,12.83\r\nIJT65,3H6W,Laundry room,5,7,Yes,A person is putting medicine on a shelf and then sneezing on food in the laundry room.,clothes;food;medicine;shelf,A person is sneezing into a bowl as they place their medicine on a dryer.,c061 5.50 17.60;c128 5.00 11.10;c081 5.10 18.80;c153 9.00 16.60,23.38\r\nDECCY,JVLO,Living room,7,7,Yes,\"A person is holding a book.  Then a person is taking a chair a few feet over from where it was before, sitting on it, and reading the book.\",book;chair;desk;wall,\"A person goes and retrieves a book from a desk and then grabs a chair,sits in it and begins to read.;A person stands in front of a wall, and picks up a book from a desk. The person then sits down in a white chair.\",c059 16.90 34.00;c026 6.60 34.00;c027 3.70 11.00;c030 3.20 10.80;c032 18.80 34.00;c151 15.60 23.20;c145 19.30 34.00;c117 3.90 24.50,32.50\r\nI16D7,HJJ4,Bathroom,7,7,Yes,\"A person stands in the bathroom, pouring water out of a glass into the sink. The person puts the glass on a shelf and runs out.\",cup;dish;glass;mirror;shelf;sink;water,A person standing at a sink pours water from a glass down a sink.sink;A person is standing in front of a mirror pouring out a glass of water they place the glass on the shelf and run out of the room.,c081 4.20 9.50;c109 4.20 9.60;c150 5.60 11.00;c096 0.00 10.00;c119 4.20 9.30,9.67\r\nV70F7,YMXV,Bedroom,6,7,Yes,One person was standing holding the camera. The other was grasping the doorknob,camera;closet;door;hair;mirror;phone,\"A person is fixing his hair while looking at a camera. Another person enters the room and closes the door.;This person is using their camera as a mirror to do their hair, and another person walks out of the closet from behind them.\",c015 0.00 21.90;c141 15.50 22.70;c144 3.80 12.10;c006 17.90 25.60;c113 13.10 18.90;c112 14.10 33.00,31.79\r\nZSL58,YMXV,Bedroom,5,7,Yes,A person smiling at a window and then closing the door in the doorway.,cabinet;door;window,A person is laughing in front of a window then closes an open cabinet door.;A person is looking out a window and laughing. A person then closes a wardrobe door.,c112 0.00 32.00;c152 0.00 18.10;c149 0.00 13.20;c092 0.00 18.10;c006 16.90 30.40,30.96\r\nAMLI4,6RE8,Recreation room / Man cave,4,5,Yes,A person is in the Recreation room working out. They stop for a moment to sneeze then get out and walk to a talk to take some sinus medicine. They pour a glass of water into a dish and take the medicine.,beverage and table;bottle;cup;mirror;shelf;water,A person is exercising while looking in the mirror.  They then walk to a shelf and pour some water from a bottle into a cup and take a drink.;THE PERSON IS STANDING IN A ROOM EXCISING WHILE LOOKING AT THEMSELVES IN A MIRROR. THEY THEN WALK ACROSS A ROOM AND PICK UP A BEVERAGE FROM A SHELF AND TAKES A DRINK.,c108 18.50 26.40;c106 25.60 32.00;c081 22.50 29.10;c107 25.10 32.00;c110 25.90 32.00;c096 0.00 18.10;c153 21.90 28.80,30.58\r\nCRNL5,XNDY,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person is leaving their shoes standing straight up on a shelf.,shelf;shoe,A person is untying their shoes and putting them on a shelf,c054 18.60 30.20;c081 20.40 30.20;c057 20.20 31.00,30.00\r\nP981O,EXQX,Kitchen,6,5,Yes,A person is dressing while staring at a picture on the wall. Then the person closes the door behind the person and walks over to the sink.,door;hair;mirror;picture;sink;wall,A person does their hair while looking in the mirror.,c096 0.00 21.90;c006 21.30 31.10;c144 1.70 25.60,61.29\r\nKKX90,YMXV,Stairs,6,5,Yes,A person is standing on the stairs holding a broom.  The person throws the broom on the floor and takes a mirror off of the wall.,broom;floor;mirror;wall,\"A person is standing on stairs, then uses a broom on the floor. The person begins fixing a mirror on the wall.\",c093 13.70 31.00;c098 0.00 17.70;c102 0.00 17.70;c096 16.60 25.30;c127 5.00 17.60,30.17\r\n0OSJY,DXDI,Bedroom,5,7,Yes,\"A person sits on their bed holding a broom, then runs to touch the doorknob.\",bed;broom;doorknob,A person is sitting on a bed holding a broom. The person quickly jumps up and grabs the bedroom door's doorknob.,c098 0.00 13.60;c099 8.60 14.70;c141 10.20 27.60;c135 0.00 13.50;c150 8.80 15.70;c154 9.00 14.60,27.88\r\nLVTRJ,UTMU,Basement (A room below the ground floor),7,7,Yes,\"A person is in the basement washing their shoes.  The person pours cleaner on their shoes and puts them down to let them soak.  The person takes a cup of coffee and sandwich off the table, takes a bite and smiles.\",clothes;coffee;cup;food;sandwich;shelf;shoe;soap,\"The person puts a pair of shoes in the sink, turns on the water and adds laundry soap to the shoes. The person picks up a sandwich and drink and starts to eat the sandwich and takes a drink out of the cup.\",c065 30.30 37.80;c106 33.80 42.40;c054 0.00 9.40;c156 28.90 36.30;c081 17.60 23.10;c005 4.20 23.10;c067 30.10 44.00;c063 23.80 31.80;c061 25.00 44.00;c069 24.20 29.70,42.50\r\nIM2WK,YA10,Bedroom,7,7,Yes,A person throws some clothes onto a chair. The person then lies down in bed.,bed;chair;clothes;towel,\"Person walks in room holding clothes, puts clothes on chair, lays down in bed, fluffs pillow and crosses legs and arms.\",c000 1.60 10.00;c001 4.70 11.20;c134 10.30 31.00;c034 4.50 11.10;c003 4.40 11.40,30.29\r\n013SD,Z755,Bedroom,7,7,Yes,\"A person was leaving a box in the bedroom. They started walking away, and then they turned around to turn the bedroom light off.\",box;doorway;light,\"A person puts a box on a bed then walks out the room, turning off a light before they leave.\",c040 0.00 5.70;c042 0.00 4.30;c105 5.80 10.00;c097 3.90 8.70,9.38\r\nYRX5H,P6LJ,Entryway (A hall that is generally located at the entrance of a house),3,7,Yes,A person is standing in the entryway eating some food.  The person sneezes and puts down the food to grab the vacuum.,bag;door;food;vacuum,\"A person is holding a bag, while holding a door open. A person then begins sneezing. A person then grabs a vacuum.;Someone is at the entrance and opens the door and eats something from a bag. They close the door and move a vacuum out of the way.\",c061 0.00 28.60;c138 27.10 37.10;c008 1.50 6.60;c137 27.30 35.00;c156 11.90 19.90;c006 14.80 21.70;c020 0.00 4.30;c062 36.50 39.00;c097 36.50 39.00;c021 36.50 39.00;c022 36.50 39.00,38.50\r\nGPSIM,3H6W,Kitchen,6,6,Yes,\"FROM THE STOVE IN THE KITCHEN, WHERE PERSON IS FIXING SOMETHING TO EAT, PERSON LOOKS OVER AT THE TELEVISION IN THE NEXT ROOM AND DECIDES ON EATING IN THERE INSTEAD.\",chair;closet/cabinet;dish;food;sofa;stove;television,The person prepared some food in the kitchen. They walked over and sat on the sofa to watch television and eat the food.;A person walks to the stove and puts food on a plate. The person then sits on a sofa and watches television,c151 1.10 13.60;c118 5.80 21.90;c061 9.40 26.70;c123 16.10 31.80;c120 0.00 14.40;c063 1.40 14.40;c132 18.30 29.50;c156 18.40 29.80;c062 2.30 7.70;c112 5.50 10.50;c059 17.90 29.80;c113 4.00 9.40,32.58\r\nMWC7V,2RTW,Bathroom,7,7,Yes,Person is sitting on pillow in bathroom and playing games on phone.,floor;game;phone;pillow,A person is sitting on a rug on the floor playing a game on their phone. The person is also sitting on a pillow,c125 0.00 24.00;c016 0.00 4.70;c015 1.20 7.80,30.25\r\nQFDVO,0KZ7,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,One person grasps a broom and laughs at another person who smiles from the doorway with dishes in hand.,broom;cup/glass/bottle;dish;doorway;hand,Two people are standing in a doorway. One is holding a broom and the other one is holding a dish and a cup.,c098 0.00 29.00;c118 0.00 29.00;c149 0.00 29.00;c152 0.00 29.00;c107 0.00 29.00,28.42\r\nWNW0S,PKND,Living room,7,7,Yes,\"The person can run with a broom, The person can lie next to a box on the kitchen table.\",broom;floor,\"A person runs around the room holding a broom then lies down on floor, leaning against a cabinet, while staring at the camera.\",c098 0.00 11.80;c150 0.00 11.70;c151 10.80 16.90;c124 13.20 33.00;c152 0.00 33.00;c125 11.60 16.40;c149 1.00 33.00;c124 29.70 33.00;c152 29.70 33.00;c149 29.70 33.00,31.62\r\nDINJ4,4OHY,Bedroom,7,6,Yes,\"A person holding a pillow, grasps the blanket on their bed.\",bed;blanket;pillow,A person is walking around the bedroom holding their pillow they scratch their nose and pick up clothing;A person walks their bedroom snuggling a pillow.  They pick up a blanket from their bed and shake it.,c076 0.00 31.00;c070 18.00 31.00;c073 17.10 23.00,29.92\r\nBJXRT,KQI6,Living room,3,6,Yes,\"A person holding a blanket opens a kitchen cabinet. They look inside it, walk away, and begin sitting in a chair.\",blanket;chair;dish;doorway;light;towel,\"A person picks up a blanket from a chair, walks around the house, then sits in a chair hugging the blanket.\",c059 32.10 36.00;c070 1.50 36.00;c151 29.90 36.00;c097 4.10 9.40;c097 5.90 11.30;c120 16.60 24.30;c104 7.70 12.90;c035 0.00 7.10;c072 1.20 16.20;c073 0.00 9.00,35.04\r\nQ2Z3E,S395,Bathroom,7,7,Yes,A person is holding a towel in the bathroom. They then begin watching a picture on the wall.,picture;towel,A person standing in a bathroom and holding a towel while looking at a picture.,c033 0.00 26.90;c037 0.00 9.10;c088 3.70 27.20,29.92\r\nXR54W,T7C3,Dining room,5,7,Yes,A person takes a pillow from under the window. The person fluffs the pillow and laughs.,pillow,He shakes a pillow very vigorously.,c076 0.00 33.00;c079 0.00 8.10;c149 8.00 18.30;c152 8.80 27.40,32.17\r\nDQ0EE,18IT,Bedroom,6,6,Yes,One person is standing by the window holding a camera when another person snuggling a person awakens.,bed;blanket;camera;floor;phone;picture,2 people are in a room.  Person one is standing and taking video.  Person two is laying on a bed under a blanket.  person two wakes up and gets out of bed.;Person lying in bed under a blanket who wakes up because somebody is in the room taking a picture.,c146 12.00 17.00;c072 2.00 15.00;c134 0.00 15.00;c087 0.00 6.00;c015 0.00 26.00;c133 12.40 26.00;c154 14.90 26.00;c016 0.00 26.00;c124 0.00 16.90,24.96\r\nE16EO,XXN8,Hallway,4,6,Yes,A person is sitting in a hallway grasping vacuum as the person tries to clean a portion of the floor. The person has to move a chair to be accurate.,chair;floor;vacuum,A person is vacuuming the floor. They move a chair out of the way to vacuum around it.,c127 2.30 28.70;c137 2.10 27.60,30.12\r\nCJHFD,D0RU,Kitchen,,1,Yes,\"A person takes a sandwich from the cabinet. The person puts some pepper on the sandwich, which causes them to sneeze.\",dish;door;food;medicine;refrigerator;sandwich;shelf,A person holds a plate of food and opens a refrigerator and then sneezes.;A person holding a sandwich opens and closes a refrigerator door then starts sneezing after sprinkling pepper on the sandwich.,c067 0.00 5.90;c153 18.60 29.10;c118 0.00 33.00;c128 10.70 33.00;c081 28.50 33.00,32.42\r\nGYB9U,9Y7F,Bedroom,7,7,Yes,\"A person is playing with their phone in bed while another person lies next to them, watching television.\",bed;paper/notebook;phone;television,Two people are laying on a couch while watching TV. One of them is also playing on their cell phone.,c132 2.10 32.00;c134 0.00 32.00;c015 0.00 32.00;c016 0.00 5.60;c016 7.80 25.20;c115 0.00 6.50,31.17\r\nR5L98,R1OT,Bedroom,6,7,Yes,A person leaves their bathroom and comes into the bedroom in a towel.  They tidy the clothes on the bed in preparation of dressing.,bed;clothes;door;light switch;shirt;towel,A person with a towel around his waist opens a door and walks through and then closes it behind him. He fixes a shirt on the bed.;A person enters a room through a doorway and closes the door. Then they brush themselves off and flip a light switch. They walk to a bed and pat a shirt that's lying on top of the bed. They scratch themselves and then pat the shirt some more.,c006 15.90 26.80;c008 23.10 29.00;c097 24.30 31.00;c141 1.60 8.00;c004 3.70 12.70,29.96\r\nPE4BQ,9Y7F,Kitchen,2,7,Yes,A person is putting a sandwich on the table and watching the weather outside the window above a sink.,food;sandwich;sink;table;window,A guy walks to a table and puts the food he is holding down on a table. Then he walks back where he was above the kitchen sink and looks out the window.,c092 6.90 32.00;c009 0.00 6.30;c068 0.00 6.30;c062 0.00 6.30,30.75\r\n0JQ26,5LWB,Living room,7,7,Yes,One person takes something from a shelf and pours while another sits holding a glass.,cup;glass;pitcher;shelf;sofa/couch,\"This person grabs a pitcher, pours it into a glass that another person is holding,\",c107 0.00 20.00;c108 2.50 20.00;c123 0.00 20.00,18.96\r\nU4W3C,2Q9D,Closet / Walk-in closet / Spear closet,7,7,Yes,\"One person puts down a book, then starts tidying up the closet. When finished, the person sits down with the book.\",book;closet;clothes;floor;shoe,\"A person walks into a closet, kneels down to the floor moves/organizes a couple pairs of shoes, and then sits down to open their book and begin to read.;He puts a book down and then kneels down and starts tidying some shoes up. Then he sits down and starts reading.\",c004 2.40 19.00;c025 0.00 4.60;c032 17.30 29.00;c113 11.40 17.00;c026 17.00 29.00;c151 0.00 5.00;c054 0.70 14.40;c125 16.60 29.00;c030 0.00 29.00;c127 1.00 17.60;c027 17.90 29.00;c028 0.00 4.60;c114 1.40 18.00,28.42\r\nQ4TKG,6RE8,Living room,6,7,Yes,\"A person sits in a chair grasping a pillow. They throw the pillow, pick up a medicine bottle, and read the label.\",bottle;chair;medicine;pillow,The person picks up a pillow and tosses it around a bit before throwing it on a bed next to him.  The person then picks up a bottle and examines it.;There is a person sitting in a chair holding a pillow.  That same person throws the pillow on the bed and picks up some medicine.,c076 1.30 10.20;c077 6.30 11.00;c079 0.00 4.90;c080 6.20 10.70;c059 0.00 34.00;c107 7.60 34.00,32.62\r\nABFGZ,DXDI,Stairs,6,7,Yes,Person is standing next to mirror holding box of food then starts laughing.,box;food,A person holding a box shakes and laughs.,c040 0.00 20.00;c149 2.50 17.10;c061 0.00 20.00;c152 2.20 16.60,19.00\r\n3X6SI,HJJ4,Recreation room / Man cave,6,7,Yes,\"A person puts a book into a cabinet, then sits down.\",book;cabinet;chair;man;shelf,A man grabbing messing with books and then sitting down.;A person  is tidying a book shelf then sits on a chair next to a light.,c114 0.40 12.20;c059 9.70 16.00;c151 10.70 15.40;c082 0.40 12.70;c032 2.30 12.60,18.04\r\nWWHLD,C7O9,Pantry,6,6,Yes,\"A person in the pantry is laughing at another person who is holding some shoes in their hands. That person is tidying up the pantry, but is annoyed at the another person because they are holding some dishes that appear to be dirty.\",blanket;box;closet/cabinet;dish;shelf,\"2 people are in a pantry putting things away one person is holding a dish the other looks like they are holding a box;A person is holding a dish and laughing, while another person is holding a blanket.\",c040 0.00 28.00;c118 0.00 28.00;c082 0.00 28.00;c114 0.00 28.00,27.38\r\n1ECM2,YA10,Closet / Walk-in closet / Spear closet,7,7,Yes,A person throws a broom down the puts a sandwich on a shelf.,broom;closet;doorway;food;sandwich;shelf,\"A person walks into a closet with a broom, they throw the broom on the floor and put a sandwich on a shelf, they then leave.;A person is holding a brook while walking in a closet, they look at their clothes and walk away.\",c098 0.00 7.80;c062 7.90 13.80;c097 1.10 6.90;c099 3.40 8.80;c156 0.10 11.90;c061 0.00 13.60,25.17\r\nSSUZA,0KZ7,Garage,7,7,Yes,\"A person takes a chair and sets it next to the window, then closes the window.\",chair;window,A person moves a chair in front of a window. They then try to open the window.,c090 8.80 19.90;c092 8.70 20.70,23.71\r\nRBCU4,5LWB,Stairs,6,6,Yes,\"Two people are snuggling in the basement under a window, sitting on a bean bag.  When they're done playing with each other, a person gets up, taking a book with them. The other person stays in the basement, tidying up, and picking up some dirty dishes.\",book;dish,\"Two people are playing on some stairs, one person then takes a book and walks down the stairs and the other puts some things in a bowl and walks down as well.\",c118 29.50 38.00;c120 26.70 37.20;c026 20.60 27.20;c030 17.80 24.40;c154 22.70 27.80;c152 24.90 36.10;c149 0.00 23.00,37.04\r\n3LM6H,4OHY,Living room,5,5,Yes,A person in the garage begins undressing while holding a broom and laughing. The person then picks up a box.,box;broom;clothes;shirt,A person is holding a broom while taking off their shirt. The the person picks up a box.;Person with a broom in hand remove a piece of clothing pick up a box with a smile,c098 11.60 22.80;c040 19.30 28.00;c155 3.60 13.50;c155 11.00 20.30;c152 9.50 17.90;c003 0.00 20.30;c043 20.90 30.00,29.46\r\nB6ZIW,T7C3,Stairs,7,7,Yes,\"A person is throwing food up the stairs. They take a picture off the wall, and start snuggling it.\",bag;clothes;food;groceries;picture;stairs;wall,\"A person throws three bags on the stairs and then picks up a picture off the wall and cuddles with it.;A person holding a bag of groceries opens it up and throws food onto the stairs. They then take a picture off the wall, look at it for a second, then snuggle it.\",c084 14.80 35.00;c083 14.30 20.50;c088 16.50 23.20;c063 0.00 13.60;c064 0.00 14.60;c024 0.00 15.10;c020 1.70 8.90;c003 3.40 8.90,33.50\r\n7L2RT,9OK1,Bedroom,4,6,Yes,\"A person is sitting in a chair with a book.  The person cuddles the book and tells it that he loves it, and then throws the book saying they take it back.\",book;chair;floor,A person sits in a chair and throws a book.,c031 3.20 8.50;c059 0.00 9.00;c126 3.10 8.00,8.08\r\nYXI7M,Z68L,Bathroom,5,7,Yes,The person is washing the blanket and leaving the light on in the bathroom.,blanket;doorway;light;sink,\"A person goes into the bathroom and turns on the light and starts to gently clean a blanket.;A person walks into a bathroom, and begins spot washing a blanket in the sink, then walks away.\",c070 3.00 41.30;c097 1.20 6.70,49.67\r\nU3ANG,UTMU,Closet / Walk-in closet / Spear closet,6,6,Yes,A person is holding a laptop while opening the closet. The person begins tidying up the clothes and puts the laptop in a box.,book;boxes;closet;clothes;folder;laptop;shelf,The person opened a closet door and acted as if they were searching for checking between the cloths and on the shelf under things . She than proceeded to place a book or folder in a box on the top shelf. She than turned away from the closet and walked away leaving the doors standing open.,c113 0.40 11.40;c028 25.70 35.60;c049 25.30 36.00;c114 7.80 28.90;c047 0.00 32.80;c081 25.30 35.20,40.71\r\n493WS,ZSRZ,Kitchen,6,7,Yes,\"A person is at the stove cooking. They walk to the refrigerator, look irritated as if they cannot find what they are looking for, and begin throwing things out of it.\",food;pot;refrigerator;stove,There is a person stirring a pot on the stove. The same person then opens the refrigerator door and looks for something.,c147 0.00 11.20;c143 7.50 13.40;c142 15.50 20.00;c063 8.90 20.00,19.21\r\nTQXMV,3H6W,Living room,4,5,Yes,A person is smiling while leaving the living room.  The person is placing a book in a bag and is getting ready for the first day of college.,back pack;bag;book,A persons walks in to a room and picks up a back pack and puts books in to it .The person proceeds to put the back pack on their shoulder and walk out of the room.,c021 2.30 6.80;c028 3.90 11.20;c030 2.80 7.90;c020 1.70 15.40;c023 1.70 15.40;c026 3.20 8.30;c029 3.20 8.10;c152 9.60 14.70,17.08\r\n6F5W0,YA10,Bedroom,7,7,Yes,A person is in a bedroom undressing after working for the day while another person drinks coffee and asks what food the first person would like to eat.,bed;clothes;coffee;cup/glass/bottle;food;shoes,\"a man is unbuttoning his shirt, takes it off and places it on the bed while talking with a woman who is sitting on the bed.\",c155 0.00 19.00;c001 21.60 26.90;c107 0.00 3.00;c107 6.30 18.10;c106 0.00 10.30;c135 0.00 30.00,29.08\r\n5P6HZ,WQ8Z,Home Office / Study (A room in a house used for work),6,6,Yes,A person is holding a light while playing with a camera.,camera;chair;light;phone,A person is standing holding a flash light and a camera. They examine the camera.,c015 0.00 32.00;c059 0.00 32.00;c104 3.50 32.00;c016 0.00 32.00,31.33\r\nAOBWQ,4OHY,Bedroom,5,4,Yes,A person is vacuuming their room when they begin sneezing. They look on a table and begin throwing clothes on it.,bed;chair;clothes;clothing;cloths,A person is cleaning up cloths off a bed. Then they toss them aside.;A person starts picking clothes up off the bed. The person then coughs a few times and picks more clothes off the bed and then some off of a chair. The person then drops a few pieces of clothing onto the floor.,c000 0.70 32.00;c003 22.70 30.30;c002 0.50 19.80;c004 1.00 32.00,31.08\r\nGMTL9,D0RU,Garage,4,5,Yes,A person is sitting on a sofa in their garage eating a sandwich and drinking a soda while watching a video on their laptop.,chair;cup;dish;food;glass;laptop;sandwich;sofa;video,A person was sitting on a sofa with a laptop on their lap. The person was eating a sandwich and drinking from a glass while watching a video on the laptop.,c106 19.10 29.90;c047 4.90 32.00;c123 4.30 32.00;c067 10.00 22.80;c065 14.20 20.70;c119 16.40 21.60;c061 10.80 21.10;c051 11.40 32.00;c059 4.30 32.00;c069 10.00 17.10;c068 16.40 21.90;c156 14.20 22.80;c118 11.30 22.40,30.83\r\nJ6P6H,ECB2,Closet / Walk-in closet / Spear closet,4,7,Yes,\"A person is awakening, then grasping a vacuum, then eating a sandwich and lastly turning off a light in a Closet / Walk-in closet / Spear closet.\",closet;floor;food;light;sandwich,The person is sitting in their closet. The person starts eating a sandwich. the person stands up to turn off their light.,c065 9.50 17.40;c105 17.20 23.00;c156 9.50 17.40;c154 14.30 21.20;c063 12.10 18.40;c061 11.80 20.60;c125 0.00 23.00,21.58\r\nLC8T4,ID9V,Kitchen,6,6,No,A person is smiling while working on the stove and the refrigerator.,food;pan;refrigerator;stove,\"PERSON COOKING SOME THING ON THE STOVE, OPENED AND CLOSED THE DOOR OF THE REFRIGERATOR, AGAIN BACK TO THE STOVE AND COOKED SOMETHING\",c142 15.50 21.20;c143 9.90 15.20;c147 0.00 12.60,28.33\r\nFKM2X,XARO,Stairs,6,7,Yes,\"One person walks up the stairs with groceries while another person, propped on a pillow, watches and plays with a camera.\",camera;groceries;pillow,A person carrying a bag walks up the stairs while another person sits on pillows at the bottom of the stairs and films a video.,,30.42\r\nVKDLS,5UGG,Basement (A room below the ground floor),5,7,Yes,\"A person is smiling as they read a book, sitting in a chair. The person leaves.\",book;chair,\"A person is sitting in a chair reading, and gets up and walks away.\",c059 0.00 17.80;c026 0.00 18.70;c154 12.60 18.80;c029 0.00 16.70;c032 0.00 16.30,19.17\r\nCCY5I,0KZ7,Bathroom,7,7,Yes,A person is playing with a towel while another person is holding a doorknob.,clothes;doorknob;towel,A person is folding a towel while another person holds onto a doorknob.,c037 0.00 29.00;c141 0.00 29.00;c000 0.00 29.00,27.67\r\nTXMF9,UTMU,Home Office / Study (A room in a house used for work),7,7,Yes,A person gets dressed then laughs while walking to a vacuum by the window.,baseboard heater;clothes;floor;jacket;vacuum;window,\"A person walks into frame and puts on a jacket. The person walks around, stands next to a vacuum cleaner, and then walks away out of frame.;This person is getting dressed, then walks to the window.\",c148 0.00 15.70,27.71\r\n37GL4,5LWB,Bedroom,6,6,Yes,A person is eating on the bed and another person is playing in the mirror.,bed;food;hair;mirror,Person A and Person B are walking up the stairs. Person A is fixing their hair in a mirror and Person B is eating from a bowl on a bed.,c096 14.60 27.00;c135 11.50 27.00;c156 12.90 27.00;c144 14.70 27.00,25.67\r\nBB8Q0,8718,Bedroom,5,7,Yes,\"A person sits in a chair, eating a box of crackers. The person looks out the window.\",bag;box;chair;food;table;window,Person sitting at a table in a chair opening a box look out the window while sitting something from a bag.,c041 0.00 4.00;c090 1.90 7.50;c156 12.90 25.80;c011 0.00 30.00;c059 0.00 30.00;c042 0.00 5.00;c092 13.30 30.00;c021 1.00 5.80;c040 0.00 5.30;c063 0.00 3.60;c023 0.00 3.90;c043 0.00 4.20;c061 0.00 13.30,28.67\r\n5U92L,PO5L,Recreation room / Man cave,6,6,Yes,A person undresses and throws clothes on a book then looks at their homework smiling.,clothers;clothes;dish;fan;person;plate;shirt;table,a person taking off their shirt and walking away;A person is undressing then holding a plate in the middle of a room.,c155 4.00 12.00;c118 10.00 20.00;c003 7.20 12.70;c009 15.40 21.60,24.08\r\nZX1R7,0KZ7,Bedroom,4,7,Yes,One person takes a pillow and some dishes from the room after watching another person opening and closing a phone.,bed;dish;phone;pillow,A person is sitting on bed while another person walks up and takes a plate and a pillow and walks away with them.,c076 12.60 20.10;c118 9.40 20.10;c015 0.00 27.00;c120 9.40 20.10;c135 0.00 27.00;c079 12.60 20.00,25.83\r\nM6LFI,WG9D,Dining room,3,5,Yes,A person is undressing in front of a mirror and then opening a sandwich in a bag and then leaving the dining room.,bag;clothes;food;mirror;sandwich;table,A person walks into the room and takes their jacket off. They get a sandwich out of a bag that's on the table and then exit the room.,c068 7.00 12.00;c069 5.50 11.00;c021 4.00 9.50;c155 1.00 8.00;c009 7.00 13.40;c063 8.30 12.60;c001 3.70 8.50,14.00\r\nSP89Y,BYF9,Hallway,4,1,No,A person is smiling at the television while leaving the door open in the Closet / Walk-in closet / Spear closet.,door;television,A person looks around a doorway at a television.,c132 2.10 20.00;c097 0.80 6.10,18.75\r\nLKHKF,YMXV,Bedroom,7,6,Yes,A person smiles as they read a book on the sofa. The person begins laughing hysterically.,bed;book,A person is sitting on a bed while reading a book and laughing.,c032 0.00 32.00;c152 16.70 28.90;c149 16.40 29.20;c026 0.00 32.00;c135 0.00 32.00,30.88\r\nZG1EM,C7O9,Laundry room,7,7,Yes,A person dressing by putting a jacket on. Then the person undresses by taking the jacket back off. Next the person sits on a chair then drinks from a glass.,chair;clothes;coat;cup;doorway;glass,\"A person is putting on a jacket. The they take the jacket off and sit down, grab a mug and take a drink.;A person is standing in a doorway putting on a coat.  Then the person takes the coat off, sits down on a chair, picks up a cup and drinks from it.\",c106 23.40 32.00;c148 0.00 15.00;c151 20.20 27.40;c002 0.00 3.60;c003 18.10 24.20;c059 20.80 26.70;c107 24.70 32.00;c155 13.40 22.10;c148 18.40 24.80;c001 18.00 23.40,31.17\r\nELBLK,4OHY,Basement (A room below the ground floor),7,7,Yes,A person in their basement is watching something on their phone while smiling and walking around. They start eating a sandwich that they find on top of a desk.,food;phone;sandwich,\"Person is walking back and fourth messing with a phone, then the person walks over and picks a sandwich up and starts eating it\",c015 0.00 31.00;c016 0.00 19.30;c065 20.70 31.00;c067 17.60 31.00;c152 7.90 27.00;c156 20.10 31.00;c063 16.20 21.10;c061 15.80 31.00;c149 7.30 17.40;c063 15.90 31.00,30.04\r\nNDK49,YMXV,Bedroom,5,5,Yes,A person was running by the window. Then they started playing at the mirror.,mirror;window,\"A person is running in a bedroom. They look out the window, then dance while looking in the mirror.\",c096 12.30 33.00;c150 5.20 22.30,31.71\r\n2FH2V,6NQX,Kitchen,6,4,Yes,A person holding groceries sneezes before finding a place to put them on a chair.,bag;chair;doorknob;doorway;groceries,\"Person walks into the kitchen, sneezes, and puts a green bag of groceries on the chair in the kitchen before leaving the room.\",c130 0.00 13.70;c153 3.90 9.20;c022 6.40 14.10;c141 0.00 3.10;c097 0.00 3.70,13.67\r\nC8BKE,KQI6,Bedroom,4,7,No,\"A person carrying groceries sets them down on a blanket on the floor, sits beside them, then takes a bottle from a grocery bag and drinks from it.\",bag;bed;bottle;doorway;groceries;shoe,\"A person walks through their front door, takes their shoes off and then sits down on a sofa. They put their groceries on the bed and take out some water and take a sip.;Person walks through doorway with groceries, takes off shoes, sits down on bed, and retrieves a bottle of water from bag and drinks it.\",c021 13.40 18.00;c151 12.20 17.00;c097 3.10 9.90;c130 11.00 16.50;c020 3.60 12.80;c022 9.80 15.80;c057 6.60 12.30;c135 12.20 17.70;c107 10.70 32.90;c106 20.60 29.00,33.71\r\n1TGKL,QB52,Recreation room / Man cave,6,6,Yes,A person is using a laptop and smiling. They pull a blanket over them and drinks something from a glass.,blanket;cup;glass;laptop;something;table,\"Person sitting at a desk on a laptop snuggle with a blanket, pick up a glass and drink something out of the glass\",c072 9.80 18.60;c051 0.00 13.60;c106 14.60 26.50;c011 0.00 11.80,31.00\r\n0RPJX,Z68L,Recreation room / Man cave,7,6,Yes,A person in the recreation room is eating a sandwich and start dressing in front of a mirror.,clothes;mirror;sofa,A person is sitting on the sofa looking at themselves in the mirror. A person then begins to put on a sweater.;A person is sitting in a chair in front of a mirror eating a sandwich they put the sandwich down and start to put on a shirt.,c096 0.00 34.00;c123 0.00 34.00;c148 10.70 34.00;c001 10.70 18.40,33.42\r\nU1BQ0,4OHY,Kitchen,3,4,Yes,A person is seen putting dishes away and starts throwing them in boxes. They begin sitting down with a blanket looking disheartened.,blanket;box;clothes;containers;dish;floor;towel,\"A guy is standing by a chair and table and is pushing some dishes/containers to the floor and tossing others into a box. He picks a blanket up off a chair, spreads it on the floor and sits on it.\",c071 13.60 28.60;c118 0.00 11.80;c120 4.80 14.90;c151 21.10 31.00;c070 10.80 18.40;c073 10.80 16.30;c119 0.00 14.30;c127 20.00 31.00;c035 11.10 20.10;c033 10.90 18.80;c034 14.20 19.70;c045 0.00 3.90;c125 16.90 21.80;c036 12.30 27.10;c037 12.30 19.40;c003 11.80 19.30;c126 11.70 19.30,29.71\r\nJIWY2,DXDI,Dining room,6,7,Yes,A person is seen eating some food and drinking coffee. They begin smiling and look out the window,bowl;cup;food;fork;mug;table;window,A person is sitting at a table and eating food out of a plastic container. They take a drink from a mug and then look out the window.;A person eats cereal and drinks a cup of coffee at the kitchen table.,c106 7.00 18.80;c092 16.50 29.00;c156 0.00 12.20;c011 0.00 29.00;c061 0.00 12.10,27.96\r\nIVP8Q,2RTW,Living room,6,6,Yes,\"A person lying down watching their favorite show, as another person is leaving their homework on the shelf for them.\",paper;shelf;sofa;television,\"A person is sitting on a couch watching television. A second person walks in past the person on the couch, and places paper on a shelf.;A person is lying on a couch watching television. Another person puts papers on a shelf.\",c116 18.10 32.00;c081 16.30 29.90;c122 0.00 32.00;c132 0.00 32.00;c123 0.00 32.00;c115 10.10 32.00,30.62\r\n3L3LC,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person walks into an entryway and notices a large pile of shoes next to the door but then is surprised to see another person standing in an adjacent room and smiling while undressing.,clothes;door;jacket;table,A person walks into a house through a door while another person walks into the kitchen and takes their coat off and fixes their clothes.;A person walks through a door and fusses with their clothing. Meanwhile another person who was already in the room takes off their jacket.,c006 2.30 8.30;c008 0.00 6.80;c152 3.70 15.50;c155 4.30 18.90;c097 0.50 5.20;c141 0.00 4.90;c009 16.80 22.70;c001 11.80 22.70,30.58\r\nIYU90,2RTW,Kitchen,6,6,Yes,A person is running and throwing shoes to another person who is sitting in a chair,chair;door;floor;shoe,\"A person is sitting on a chair in the kitchen. Another person runs by and hands them a pair of shoes which they place on the floor as the other person leaves the house.;A person runnings in, and throws a pair of shoes at another person. The other person is just sitting in a chair.\",c053 1.50 11.50;c054 6.40 12.20;c150 0.10 7.40;c006 4.40 10.60;c008 4.00 9.20;c097 3.50 9.50;c126 5.30 11.50;c141 3.00 8.10;c056 2.60 11.30;c059 0.00 32.00,30.54\r\nS1J2Q,KQI6,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,One person is running to the refrigerator while another is holding the clothes.,bed;blanket;cabinet;clothes;doorway;food;light;man;refrigerator,\"a woman folding clothes on a bed and a man getting into a cabinet.;A person throws clothes onto a bed and runs to another room, turns on a light and opens a refrigerator. Another person is near the bed folding clothes, this person picks up a pile of clothes and walks over near the refrigerator before walking away.\",c002 4.40 11.20;c000 5.00 29.90;c150 0.20 7.50;c143 10.80 20.80;c004 0.00 9.70;c142 22.30 28.40;c075 0.00 29.70;c070 0.00 4.80;c063 28.50 32.00;c097 1.80 7.20;c073 0.00 4.70;c062 27.90 32.00,31.25\r\nK56PA,PO5L,Living room,4,7,Yes,A person is holding a box and dressing in their living room. They walk to the sofa and sit down.,box;clothes;floor;laptop;shirt;sofa,A person walks into a room holding a box. They put the box on the floor and pic up their shirt which they put on. Then they sit down on the couch and look at their computer screen.;A person carries a box into the room and puts it on the floor before putting a shirt on and sitting down on the sofa to look at a laptop.,c042 5.20 10.70;c123 15.90 21.70;c151 15.60 22.40;c148 10.10 19.60;c000 7.60 15.40;c040 1.20 11.50,25.46\r\nNBE4C,HR43,Bathroom,6,7,Yes,A laughing person walks into their bathroom playing a game on their phone and close the door. They grab a medicine bottle and take medicine while looking in the mirror.,bottle;door;light;medicine;mirror;phone,\"A person turns on a light, walks while texting on the phone, closes the door and puts the phone in a pocket.  The person picks up a medicine bottle and takes some.;A person walks in texting, then closes the door. Then they pick up and put down a bottle.\",c015 1.50 11.10;c096 18.20 26.70;c006 27.60 32.00;c016 6.50 17.90;c128 18.50 32.00;c129 18.50 32.00;c097 4.50 10.70;c141 9.30 15.90;c017 14.50 22.20,31.46\r\nDB52Q,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is fixing a shelf in the entryway to a home. Another person walks through the doorway, pours some water into a cup, and offers it to the first person. The first person takes it and begins drinking.\",cabinet;cup;dish;doorway;glass;hammer;pitcher;shelf;table;water,\"A person opens a cabinet door and fixes it with a hammer.  Another person comes through the doorway and picks up a pitcher of water from a table.  Then the person pours water into a glass and gives it the the other person, who drinks it.\",c107 18.10 32.00;c110 16.00 21.60;c154 23.50 28.60;c106 24.30 32.00;c108 17.00 24.60;c112 11.70 16.20;c118 15.40 32.00;c113 0.00 5.00;c120 15.40 28.00;c119 23.80 30.60,31.08\r\nOWS57,ZAWX,Bedroom,6,6,Yes,One person was opening the window. The other was sneezing right into the mirror.,mirror;window,\"A person stands up, opens a window, as another person in the same room sneezes while looking into a mirror.\",c096 21.10 32.00;c090 11.20 21.10;c153 21.10 27.70;c154 2.20 8.60,30.71\r\nDERF4,M80J,Bedroom,6,7,Yes,A person is dressing near the door.  Then a person is working at a desk.,clothes;desk;door;laptop,\"A person is standing in a kitchen, putting on a shirt. The person then walks to a desk.\",c148 1.00 22.50;c000 0.60 17.20;c002 0.60 17.20;c052 26.90 34.00;c001 14.50 26.10,32.96\r\nNHUCA,O1YY,Kitchen,6,7,Yes,A person pours a cup of coffee while holding a box of cereal. They read the nutritional content.,box;coffee;cup;food;glass,A person picks up a box from the counter with their let hand and reads it and with the right hand picks up a coffee pot and pours coffee into a cup.,c040 0.00 27.00;c108 0.60 7.40;c061 0.00 27.00,26.46\r\n1S6FD,HRH1,Hallway,6,7,Yes,A person walks in the hallway with a blanket on their shoulders. The person then stops and sits down on the floor to look at  some homework.,blanket;floor;paper;wall,A person is walking down a hallway with a blanket at a certain point the person sits and looks at a paper.;A person is walking through a hallway carrying a sheet and a piece of paper when the stop and press themselves against the wall.,c070 0.00 28.00;c115 0.00 28.00;c151 12.70 21.30;c125 17.30 28.00,27.33\r\n7HLTQ,PO5L,Laundry room,4,4,Yes,A person begins pouring a glass of coffee.  They then turn on the light and begin fixing the laundry machine.,clothes;coffee;cup;glass;laundry machine,A [erson is puring themselves coffee then fixing a laundry machine before walking away.,c106 8.60 17.00;c108 2.90 11.20;c005 17.50 36.00;c109 12.40 19.20;c107 2.20 19.60;c110 1.50 7.00,34.75\r\nY7MSY,BYF9,Stairs,6,7,Yes,The person is holding a pillow.  They go to the doorway after putting the pillow on the floor.,doorway;floor;pillow;stairs,A person is snuggling with a pillow as they walk down the stairs. A person then puts the pillow on the floor.,c076 0.00 20.50;c078 0.00 17.30;c126 15.80 20.70;c080 16.10 23.20;c152 8.80 14.00;c077 15.00 20.20,22.67\r\n0DY8C,4I2W,Living room,6,3,Yes,A person is laughing on the phone while watching the television.,chair;phone;television,A person is smiling while siting in a chair and playing with their phone while also watching tv.;A person sitting in a chair on a phone and watching television in a living room.,c132 0.00 9.00;c016 6.00 21.00;c132 18.00 30.00;c059 0.00 30.00,28.71\r\nDWBS3,D0RU,Dining room,6,7,Yes,One person is eating and smiling at the table with some food and an open book.,bed;book;food;table,The person is sitting down reading a book while eating some food.,c032 0.00 29.10;c063 23.10 28.10;c011 0.00 32.00;c156 0.00 3.80;c009 9.70 32.00;c061 0.00 28.10;c027 0.00 32.00;c014 0.00 32.00;c135 0.00 32.00,30.71\r\nUIERL,3H6W,Living room,7,6,Yes,\"A person is running place, then playing a game on a laptop, and then eating food in a hallway.\",couch;dish;food;laptop;man;plate,\"a man running in place and playing on a laptop and stops to eat.;A person jogging ,turn and works on their lap top .The person walks to a desk and picks up some food and start eating.\",c061 14.30 19.60;c156 15.60 24.90;c051 7.10 16.90;c063 13.50 19.20;c150 0.90 10.20;c118 15.40 25.30;c052 6.40 17.20,27.83\r\n8ZO48,2RTW,Bedroom,6,6,Yes,A person is awakened on the bed. They throw down a pillow and grab the laptop from the chair and sit down.,bed;book;chair;laptop;pillow,\"There is a person laying in bed. That same person wakes up, throw the pillow aside and stands up.  That person then picks up a laptop and sits in a chair;A person is laying on a bed, throws a pillow, picks up a book, and sits on a chair.\",c059 16.50 23.40;c080 4.70 11.30;c154 9.70 17.40;c134 0.00 16.70;c047 11.50 27.00;c146 5.20 13.30;c151 15.60 20.60;c050 10.30 16.30;c133 4.30 9.10,26.21\r\nOJIEC,ZSRZ,Kitchen,7,7,Yes,\"A person is cooking on their stove, then they try opening a jar with a towel.\",food;jar;pot;stove;towel,\"A person is cooking on a stove.;A person is standing at a stove cooking. The person puts something into a pot, and then uses a towel to open a jar.\",c035 5.70 12.20;c147 0.40 9.40,16.12\r\nENQUT,9PLL,Bathroom,7,7,Yes,A person is in the bathroom washing their face.  The person takes off their shoes and throws them on the floor underneath the table.,doorway;faucet;floor;hands;shoe,\"A person is washing their hands and face with water from a faucet. They pick up a bar of soap and scrub their hands and face, continue to rinse off. Then they take their shoes off and set them in a corner of the room.\",c054 34.40 41.00;c057 26.80 38.40;c126 36.80 41.00;c139 5.00 11.20;c097 34.00 39.20,40.17\r\nWEIJ6,A8P9,Laundry room,7,7,Yes,A person is throwing the medicine on a towel!  Then a person is leaving through the door in a huff!,door;floor;medicine;towel,\"Person going into laundry room, throws down something, goes out, and then comes back in.\",c036 7.20 15.00;c006 15.90 22.00;c126 8.80 14.50;c033 6.00 13.20;c035 4.30 10.10;c141 14.10 19.50;c008 20.40 26.30;c097 14.20 19.60,27.92\r\nKQT19,C7O9,Bathroom,6,7,Yes,A person grasping a box and talking on the phone walks into the bathroom and looks down at another person working under the sink.,box;closet/cabinet;cup/glass/bottle;floor;phone;sink,A person is going through a cabinet under a sink.  Another person goes into the bathroom and stands over them holding a box.,c015 12.30 32.00;c040 7.70 15.10;c107 5.50 32.00;c114 0.00 32.00;c019 5.20 32.00;c125 0.00 32.00,31.08\r\nH8F1C,XXN8,Bathroom,6,1,No,\"A person is holding a book, walking past a large picture on the wall. Then, smiling, the person begins undressing.\",book;clothes;picture;wall,\"A woman is in a bathroom. She looks at the picture on the wall,smiles, puts down a book and takes off her jacket.\",c152 0.00 4.70;c028 4.90 11.00;c152 1.50 7.80;c155 7.30 18.00;c026 0.00 9.30;c088 0.70 6.10;c001 12.80 27.50,30.21\r\nKZODG,2RTW,Living room,6,6,Yes,\"A person sits in front of a television, occasionally glancing from it to the laptop also in front of them, and back again. They close the laptop after a moment and pick up their phone. They select an app and begin playing a game on the phone's touchscreen.\",laptop;phone;sofa;table;television,\"A person is sitting watching television. The person closes a laptop on the coffee table then uses the phone.;A person is dividing their attention between a television, a laptop, and a mobile phone while sitting on a sofa.;Person watching television and the, shuts the laptop and picks up the phone.\",c046 15.30 22.90;c016 16.80 32.00;c123 0.00 32.00;c132 0.00 22.20;c015 16.00 32.00,31.33\r\nQ1JBR,YMXV,Home Office / Study (A room in a house used for work),6,7,Yes,A person is snuggling with a broom while another person is sneezing on a picture.,broom,a person holding a broom spins it around a few times.  Another person sneezes several times.,c153 16.00 33.00;c098 0.00 19.30,31.79\r\n3DO95,2RTW,Living room,6,6,Yes,\"A person awakens from a nap on a couch. The person adjusts the pillow so that they can sit up against it, then picks up a nearby book and a highlighter. The person continues working, marking things in the book.\",book;marker;notepad;pillow;sofa,A person is sleeping on the couch. The person gets up quickly and grabs a notepad and a marker. They take the top off the marker and begin writing.,c122 0.00 15.90;c123 13.60 33.00;c077 13.60 23.00;c026 27.00 33.00;c030 19.80 28.10;c032 28.00 33.00;c117 21.10 33.00;c146 10.70 33.00,32.04\r\n3ND23,2RTW,Living room,6,6,Yes,The person tidied up the books next to the picture on the table.  The person then went from standing to sitting and snuggled up to watch a television show.,blanket;book;sofa;table;television,\"A tidies up some books and then places them on a table. They sit on a sofa, put a blanket around them and watch television.;Person cleaning up coffee table before snuggling under a blanket to watch television.\",c028 1.40 9.30;c011 9.00 31.00;c151 6.20 12.80;c123 8.10 13.90;c026 1.40 9.50;c009 0.30 10.90;c132 14.20 31.00;c030 0.00 8.10;c073 11.60 20.20;c072 16.00 31.00;c071 9.90 19.90;c012 0.00 10.50,30.50\r\nWCCY7,QB52,Recreation room / Man cave,4,4,Yes,A person is snuggling a towel while undressing by a cabinet.,bed;blanket;clothes;nose;shirt,\"There is a person sitting on a bed holding a blanket who is playing with first the shirt on the persons back then with clothes that are hanging on hangers in a closet.;This person takes their arm out of the sleeve of their shirt while holding onto a blanket, then they go to digging in their closet for clothes.\",c070 0.00 31.00;c004 8.50 16.40;c135 0.00 31.00;c148 1.80 11.30;c072 4.30 31.00,30.04\r\nT3FJH,ZAWX,Living room,3,5,Yes,A person drinks from a wine glass while walking with a towel on their shoulder.,blanket;cup;doorway;glass;television;towel,Person is drinking out of a glass while walking around with a towel around the shoulder.;A person is sipping water while walking around their room. They have a towel over their shoulder. The person pauses to view the television.,c106 0.00 4.20;c106 12.20 18.60;c097 0.00 9.40;c070 0.00 32.00;c152 16.70 23.70;c033 0.00 32.00;c107 0.00 32.00;c132 0.00 16.40,30.92\r\nD1O6N,YMXV,Bedroom,6,3,Yes,One person walks to the window smiling while another is laughing under a blanket on the sofa.,bed;blanket;pillow;sofa;window,Person is walking and talking by a window to someone in a bed with a pillow under arm.;A laughing person begins talking to a window.  Another person lying on top of a blanket on a bed leans on a pillow.,c092 1.30 7.40;c152 19.20 29.30;c149 19.20 29.50;c134 18.00 25.60;c076 16.80 32.00;c135 16.80 32.00,30.96\r\n2C6ER,YMXV,Bedroom,5,6,Yes,A person is fixing a television and then closing a window in an entryway.,cabinet;television;tv;window,A person is fixing the television. A person then closes a cabinet.;a person looks around on a tv then closes a cabinet,c112 13.90 32.10;c089 13.90 32.00,31.96\r\nNPEA3,ZAWX,Bedroom,7,6,Yes,\"A person is sitting on the bed playing with a pillow and watching television.  The person stands up and goes to the door, grabs the doorknob, and closes the door.\",bed;door;pillow;television,the person in the bed playing with pillow by raising up and down and closed the door,c140 24.20 31.00;c135 0.00 8.10;c006 23.10 29.90;c076 0.00 6.70;c077 19.90 25.10;c080 12.30 21.90,30.42\r\n4986V,KQI6,Living room,5,7,Yes,\"One the sofa in front of the television, one person snuggles another person who sneezes while doing homework.\",book;homework;sofa;table;television,\"Two people sat on a couch, watching TV, while one of the people paged through a notebook, and then sneezed twice.\",c132 0.00 22.40;c123 0.00 32.00;c014 0.00 32.00;c145 0.00 32.00;c032 0.00 32.00;c153 16.70 30.20,31.08\r\nYAXGX,XXN8,Bedroom,4,7,Yes,A person is standing near a window in the basement. They pick up a book off of a shelf and open it and smile.,book;floor;shelf;window,A person picks up a book from the floor. They open it and look through the pages while smiling and laughing. They close it and walk away.;A person picks up a book and laughs while reading through it. They close the book and leave.,c027 4.90 26.30;c029 6.70 14.70;c152 6.40 14.10;c149 6.40 15.80;c032 4.70 26.60;c030 22.00 29.20;c026 2.90 29.10;c025 21.20 26.60,30.33\r\nTAGC0,KFGP,Basement (A room below the ground floor),7,7,Yes,\"A person is tidying up the basement by folding towels that are down there. The person gets a phone call and takes a phone out of a pocket answering the call, after talking for 5 seconds the person begins laughing.\",blanket;phone;towel,\"A man enters and picks up a towel from the bed. He begins folding it, then answers his phone and walks away to take a call.\",c033 1.30 24.10;c037 1.30 24.10;c015 24.00 38.70;c018 20.30 28.00;c019 26.50 38.90;c075 1.50 24.50,38.46\r\nMLK57,0KZ7,Bedroom,6,7,Yes,\"A person awakens in a bedroom, looks at a clock, scrambles out of bed while throwing a blanket on the floor and rapidly begins grabbing clothes out of a wardrobe.\",bed;blanket;closet;clothes;floor;wardrobe,The person awoke from under a blanket on the bed. They threw the blanket to the ground and began looking through their wardrobe.;A person is lying on the bed waking up running around getting clothes out of the dresser.,c113 19.70 25.60;c134 0.00 17.30;c126 18.90 27.00;c154 20.00 27.00;c072 4.60 11.30;c146 12.90 18.90;c002 21.00 27.00;c133 13.50 23.30,26.25\r\nUNOW9,9PLL,Kitchen,5,6,Yes,A person is holding a bag in their kitchen while undressing. They take off their shoes and sneeze.,bag;clothes;floor;shirt;shoe,\"This person takes off a shirt, picks up a bag, then takes off shoes.;A person is taking off a shirt. A person then picks up a bag, and takes off their shoes. A person then begins to sneeze.\",c020 8.40 33.00;c023 8.90 16.90;c001 6.80 14.00;c155 0.00 23.00;c057 11.60 22.80;c126 8.10 13.10;c126 13.10 18.50;c003 8.10 13.10,32.00\r\nP9R08,Z68L,Living room,7,6,Yes,\"A person walks into the room, grasping a picture and stops to look in the mirror\",clothes;clothing;hair;mirror;picture;shelf,\"This person is in the living room area, fixes hair, fixes top, places picture frame on entertainment area shelf, picks it back up and then walks away.;A person holding a picture looks into a mirror and adjusts their hair. They put the picture on a shelf and continue looking into the mirror, adjusting their clothing.\",c094 12.20 32.60;c084 14.40 32.00;c081 13.80 22.10;c096 9.50 19.40;c086 15.60 22.90;c144 13.00 18.00;c084 14.40 20.50;c083 23.40 29.10,40.96\r\n1LARL,2RTW,Living room,6,6,Yes,\"A person is standing in front of a cabinet. The person takes a sandwich, smiles, and then sits down.\",bag;cabinet;chair;food;sandwich;sofa/couch,The person is standing at a desk looking in a drawer. They then grab a bad and pull out a sandwich. The person sits down and sniffs the sandwich,c112 2.30 7.00;c113 1.70 6.70;c067 4.40 31.00;c069 3.60 10.20;c152 4.90 18.90;c151 15.10 20.20;c063 3.50 8.60;c061 3.80 31.00;c123 16.20 31.00;c021 6.80 14.50,30.46\r\nYFPHS,2RTW,Living room,6,6,Yes,The person is tidying the wardrobe in the entryway while laughing at the television.,cabinet;clothes;clothing;laundry;medication;shelf;table;television;tv,\"A person is tidying up some clothes from on top of a hamper. The person folds the clothes up. The person organizes items on the shelf too. The person takes some medication out from the shelf.;a person folding laundry as they watch the tv, goes to get something in a draw.\",c113 16.60 23.20;c132 0.00 31.00;c004 0.00 19.50;c009 8.10 13.40;c009 15.20 20.90,30.42\r\nX2Q00,2RTW,Dining room,6,6,Yes,\"After eating and browsing on their laptop, the person debating on tidying up or reading a book.\",book;chair;food;laptop;sandwich;television,\"A person is sitting on a chiar while they are on their laptop eating a sandwich, they then grab a book form a table.;Person sitting down and typing on a lap top while eating and reaching for a book.\",c026 26.20 37.00;c051 0.00 27.10;c156 1.40 9.60;c061 0.00 4.90;c052 0.00 5.10;c059 0.00 37.00;c030 24.20 30.90;c061 0.00 37.00;c032 23.70 33.80;c052 0.00 26.00,36.08\r\nMNJWH,YMXV,Bathroom,5,4,Yes,One person grasping a pillow and a book laughs from the doorway as another person is inside the room undressing.,bed;book;door;pillow,\"This person gets out of bed, holds a pillow and a book, while smiling, and talking to the pillow. Another person is in the corner flexing.;A person is sitting on a bed and holding a book, then grabs a pillow and stands.  The person walks across the room and discusses the book with the pillow.  A second person is flexing in the opposite corner of the room.\",c076 0.00 13.80;c026 1.80 12.10;c149 4.40 9.80;c154 0.00 2.90;c152 24.80 31.00;c029 0.80 16.10,30.42\r\n71J7E,D0RU,Pantry,4,5,No,A person is putting a broom in a corner.  Then a person is watching a bug walk across a shelf.,broom;corner;shelf,A person walks into a pantry with a broom. They put the broom in a corner and begin tidying a shelf.,c082 14.90 33.00;c098 3.70 12.40;c099 7.80 18.70;c100 3.70 18.30,31.58\r\nSPJIE,1TZV,Garage,5,6,Yes,A person is holding their coffee while laughing at a picture.,book;chair;coffee;cup;glass;picture,\"a person sits in a chair  rocking while looking at a picture holding a cup;A person sits on a chair, looking at a picture and drinking coffee from a glass. The person rocks back and forth, and laughs.\",c085 0.60 28.00;c107 0.00 28.00;c088 0.00 28.00;c106 0.00 3.60;c084 0.00 28.00;c149 0.00 28.00;c059 0.00 28.00;c032 25.00 28.00,26.96\r\nEIK9W,A66R,Hallway,6,6,Yes,A person puts down their groceries and cup of coffee next to a box. They notice a stain on the wall and try to wash it.,bag;cup;dish;mug;sponge;wall,\"The person was holding a bag and a mug,walked and look at the wall came back with a sponge and cleaned the wall with the sponge.;A person looks at a wall while holding a cup. They leave and return with a towel and wash the wall.\",c118 0.30 12.20;c118 0.50 6.10;c107 0.50 6.80,35.88\r\nDDWK5,A66R,Living room,6,6,Yes,\"A person looks in the mirror, then grasps a camera from the hall cabinet to take a selfie picture.\",cabinet;camera;door;phone;picture,\"person opened the cabinet, put some thing and closed the door. went out of the room and came back, opend the cabinet , took the phone and took some selfies with the phone\",c112 3.10 9.10;c113 0.00 4.00;c018 13.50 19.60;c087 16.30 22.60;c006 3.10 9.10;c015 0.10 6.10,32.88\r\n25YVM,A66R,Kitchen,6,6,Yes,The person entered the enterway opening the door and running through it.  The person does to the sink and puts the person dirty dishes in it.,dish;doorway;sink;water,\"A person walks into the kitchen carrying a dish.  They walk to the sink, turn on the faucet and wash the plate with water and a sponge.;A person walks into the kitchen holding dishes. The person then washes the dishes in the sink.\",c121 11.00 26.60;c121 1.70 7.20;c118 0.00 27.30;c119 0.00 9.80,33.71\r\nJIS2Q,HJJ4,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person comes through the doorway in an entryway holding a bag. The person puts the bag down then leaves.,bag;door;end table;floor;photo,\"The person came from around the corner, in the house with a purse. Then the person place the bag down by the entrance of the door, opened the door and left.;A person enters the room and sets down a bag before leaving the house.\",c097 0.30 5.80;c008 6.40 12.00;c022 2.00 7.40;c020 0.00 8.30;c141 6.20 11.10,13.67\r\nVUNSQ,D0RU,Living room,4,1,No,A person runs into their home office holding a broom is laughing at a video on a laptop.,broom;laptop;video,\"a person walks into a room carrying a broom, and looks at a video on his laptop\",c051 1.40 35.00;c098 0.00 34.60;c152 8.60 33.90,33.71\r\nO6T0T,P6LJ,Bathroom,6,7,Yes,One person wrapped in a towel throws away a bottle of medicine and leaves the bathroom.,bottle;doorway;garbage can;medicine;sink;towel;trash,\"A person takes a bottle and walks into a bathroom.  They are setting the bottle down, then throwing the bottle into the trash.;A person entered a bathroom, picked something up and looked at it and then threw it away.\",c128 11.60 23.80;c097 0.00 5.40,28.58\r\nDDX0N,YMXV,Home Office / Study (A room in a house used for work),6,4,Yes,One person was fixing the camera. The other person was grasping the groceries,bag;camera;doorway;groceries;phone,A person is taking a selfie next to a mirror. Then anotherperson walks in with a bag of groceries.,c015 0.00 33.00;c020 20.20 33.00;c097 15.20 21.10,31.83\r\nH76DJ,JVLO,Living room,6,7,Yes,A person is washing the top shelf then begins to laugh after throwing a pillow on the floor.,broom;floor;pillow;shelf;window,A person stands in front of a window and begins to clean a shelf. The person then picks up a pillow and places it on the ground.;A person is cleaning their window with a broom and throws a pillow on the floor.,c082 0.00 25.50;c079 25.50 32.40;c126 27.30 33.00;c102 2.00 19.40,31.92\r\nKG20W,KQI6,Bathroom,6,5,Yes,One person leaves closing a bag as another runs in holding a pillow.,bag;doorway;pillow,A MAN IS OPENING A BACKPACK THAT IS HANGING FROM A DOOR KNOB FROM THE BATHROO DOOR WHILE A WOMAN WALKS AROUND HOLDING A BLANKET/PILLOW,c076 16.20 31.80;c097 21.40 29.00;c021 1.30 8.00,31.33\r\nXYTFC,28B0,Bathroom,7,7,Yes,\"One person takes a fresh towel from the cabinet and snuggles it, then sneezes into it.\",cabinet;counter;table;towel,\"A person opens a cabinet and removes a towel.  He pats his face with the towel, sneezes into it, then tosses it on the sinktop.;Person walks into room, opens cabinet, grabs a towel, sniffs it, puts it to neck, sneezes in it, places towel on counter and walks out room.\",c113 3.00 10.40;c033 5.60 32.90;c035 4.80 12.60;c036 26.20 33.00;c153 15.20 28.60;c009 23.80 33.00;c034 26.80 32.40,32.17\r\nMMRRV,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person puts a vacuum in the corner of their entryway. The person sees a stuffed animal, which they briefly snuggle, before turning off the light and leaving.\",door;light;pillow;vacuum,\"A person is carrying a vacuum they sit it down and pick up a pillow from a shelf they snuggle the pillow then put it down and turn off the light and go out the door.;A person carrying a vacuum sets it down on the floor. They hug a pillow then set it down, turn off the light, and leave.\",c105 0.00 3.18;c008 19.00 25.00;c078 6.00 18.00;c137 0.00 5.60;c006 21.40 28.00;c077 6.50 17.90;c079 5.30 12.20;c138 0.00 8.20;c097 20.30 27.90,26.54\r\nTSBB8,3VLX,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person walks into a closet and touches the doorknob, then sneezes on their phone.\",doorknob;doorway;light;phone,\"A person holding a phone walks to the closet and grasps the doorknob of the open door.  While looking inside, they sneeze then turn out the light.;A person walks to their closet grabs the doorknob sneezes uses their phone then turns the light off.\",c141 2.60 10.60;c105 6.00 12.30;c097 16.00 22.70;c016 2.90 14.40;c015 0.00 24.00;c153 5.40 12.10,22.88\r\nYEHFQ,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person returns home via their entryway, eating a sandwich and carrying a bag of books. The person smiles as they set the bag down.\",backpack;bag;door;food;sandwich,\"A person comes in a door holding a backpack, locks the door and sets the backpack down.  The person starts eating something.;A person enters the front door holding a bag and a sandwich. The person sets the bag down and takes a bite from the sandwich.\",c020 8.10 22.60;c022 18.60 24.30;c156 20.70 32.00;c097 6.60 13.50,30.67\r\n0CQL8,KFGP,Closet / Walk-in closet / Spear closet,4,7,Yes,A person is walking holding a box of clothes then begins to throw the clothes at the shelves in the closet.,box;closet;clothes;door;wardrobe,\"A person holding a box opens a closet, removes some clothes from the box and puts them in. They then close the closet and walk away.\",c040 0.00 30.00;c001 5.70 25.00;c113 0.30 9.70;c002 5.80 13.70;c112 27.00 30.00;c044 27.00 30.00;c141 27.00 30.00;c008 0.50 6.20;c003 9.00 23.20;c006 20.50 29.20,28.92\r\nR28EY,9Y7F,Other,7,7,Yes,Person is playing with pillow and blanket. Another person is looking in mirror and eating.,blanket;clothes;coat;food;mirror;pillow;sandwich,One young person throwing a coat over his shoulder and tossing around a pillow and another person eating a sandwich and looking in a mirror;Two people are standing in a room. One person is tossing a pillow in the air and wearing a blanket on their shoulder. The other person is eating some food and looking at himself in a mirror.,c070 0.00 32.00;c076 0.00 32.00;c065 0.90 32.00;c096 2.60 32.00;c080 0.00 32.00;c061 0.00 32.00;c000 0.00 32.00,30.67\r\nTE5P7,WG9D,Pantry,7,7,Yes,\"A person is opening the refrigerator, then pouring a drink and then sitting at a table in a pantry.\",bottle;counter;food;glass;refrigerator,\"a person getting a bottle out of a refrigerator, pouring a drink in a glass and drinking it then sitting the bottle and glass on a counter\",c142 0.70 5.90;c143 0.00 4.70;c107 0.50 18.00;c110 5.80 17.80;c108 6.70 13.80;c106 10.40 15.80;c109 12.40 16.80;c063 0.60 5.20,17.12\r\nHFWE9,D0RU,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is standing at a table, eating a sandwich while reading a book.\",book;food;sandwich;table,A person is standing at a desk and eating a sandwich while looking over some homework/notes.,c065 0.00 29.30;c067 0.00 30.00;c069 0.00 3.10;c032 0.00 32.00;c156 0.00 31.20,31.38\r\nO3HAK,2RTW,Living room,6,6,Yes,\"Two persons are snuggling while lying on a large chair, when one grasps a phone that starts ringing.\",chair;phone/camera,A person is lying down in a chair on another person's lap.,c059 0.00 31.00;c015 23.00 31.00;c016 24.40 31.00,30.50\r\n8F17S,2RTW,Living room,6,6,Yes,A person is standing by a cabinet in the living room drinking some water. Another person is smiling and eating a sandwich.,closet/cabinet;couch;cup;food;glass;sandwich;shelf;snack;sofa;television;tv;water,A person is drinking from a glass while another sits on a sofa.;One person is sitting on a couch eating a snack and another person is standing drinking a glass of water. The person holding the glass opens and then closes a cabinet. That person continues to drink the water and puts one hand in their pocket.;Two people were watching TV. Person #1 was standing and drinking from a glass of water. Person #2 was sitting on a couch eating a snack.,c106 0.00 4.50;c065 0.00 10.30;c152 2.90 8.80;c156 0.00 10.30;c123 0.00 32.00;c107 0.00 32.00;c113 10.00 15.80;c112 13.20 18.20;c061 0.00 3.70;c082 0.30 8.30;c132 2.30 7.50,30.75\r\nD23WM,2RTW,Kitchen,6,6,Yes,The person was watching the stove as another person was laughing at a picture on the phone.,cabinet;food;oven;phone;picture;sandwich;stove;water,\"A person stands in the kitchen, looking at a picture on their phone and laughing. Another person stands in front of the oven, watching as their food cooks.;There's two people standing in the kitchen. One is at the stove cooking some food and the other is standing behind him and looking at his phone.;the person is cooking near the gas other person is using his mobile\",c152 0.20 28.40;c015 0.00 32.00;c149 0.50 32.00;c147 0.00 32.00;c016 0.00 32.00,30.71\r\n9JZCC,4I2W,Bedroom,3,7,Yes,\"A person walks over the the bed, smiling at something on their phone. The person lies down on the bed.\",bed;phone,The person paces around the bedroom holding a phone. The person smiles at the phone. The person lies down on the bed.,c015 0.00 14.80;c134 18.80 31.00;c152 12.80 18.50;c016 0.00 20.20;c151 17.20 23.30,29.46\r\nA1VTR,T7C3,Home Office / Study (A room in a house used for work),5,5,Yes,A person in their home office is working on something by their desk. They start undressing by taking their jacket off. Then take their phone out and start watching a video on their phone.,clothes;computer;desk;homework;paper;pencil;phone;shirt,\"A person is doing their homework. The person then takes off their shirt, and looks at their phone.;This person is writing something down at a desk, while looking at the computer, then starts undressing.\",c015 27.00 40.00;c016 29.80 40.00;c155 15.20 29.70;c145 0.00 18.60;c001 23.70 29.90,39.46\r\nPFTHZ,D0RU,Recreation room / Man cave,7,4,Yes,A person is standing in front of an open refrigerator and then closing the door and then cooking in a recreation room / man cave.,door;food;refrigerator,\"The person is looking inside of the refrigerator. The person takes something into the other room, and walks back in.\",c142 4.10 14.30;c061 8.90 25.00;c063 8.10 13.90;c156 21.20 25.00;c097 13.20 19.30,23.75\r\n866F1,9OK1,Bedroom,5,6,Yes,A person is watching something on their laptop while grasping some clothes they picked up from the floor.,blanket;clothes;laptop,A person is stting on a bed talking into a computer screen folding clothes,c051 0.00 11.00;c000 0.00 11.00;c004 0.00 6.90;c152 7.60 11.00;c072 0.00 5.10;c070 0.00 11.00,10.08\r\n41O3J,YRJD,Bedroom,5,1,No,One person wrapped in a blanket with hair in a towel opens a book and puts away them homework.,bed;blanket;book;clothes;hair;towel,A person covered in a blanket and a towel wrapped around their hair is reading a book.  They put the blanket on the bed.;A person undresses and holds a book. The person then sits on the bed and reads the book.,c026 0.00 41.70;c032 6.80 40.30;c154 35.00 40.30;c135 21.10 26.80;c155 6.40 12.90;c036 16.50 21.30;c033 16.30 21.10;c071 10.00 19.00;c151 19.90 25.80;c070 0.00 15.20;c027 3.00 9.40;c003 15.70 21.60;c074 9.60 19.70,41.96\r\nFL7X4,3MIT,Stairs,7,7,Yes,\"A person is walking down the stairs holding a glass water and laughing.  The person stops to look in the mirror on the wall, then sits down on the stairs to pick up some clothes.\",blanket;cup;glass;hair;man;mirror;stairs;towel;water,\"man on some stairs, drinking water, looking into a mirror and grabbing a blanket.;A person is walking down some steps holding a glass. The person takes a look in the mirror, touches their hair, drinks from the glass, and picks up a blanket from the stairs.\",c106 2.10 9.70;c107 0.00 18.00;c151 6.70 14.00;c070 9.70 18.00;c035 8.50 18.00;c144 5.50 11.30;c033 8.50 18.00;c073 8.50 18.00,17.08\r\nSVA4D,6PZN,Living room,6,6,Yes,A person is tidying with a broom while another person is putting a laptop on the floor.,broom;floor;laptop,\"A person sweeps the floor with a broom while another stands holding a laptop, then after the floor is cleared, they place it on the floor.\",c047 0.00 24.10;c102 0.00 32.00;c127 0.00 32.00;c098 0.00 32.00;c049 19.30 24.60,30.88\r\nPCF14,WG9D,Pantry,4,5,Yes,\"A person puts a vacuum in the pantry, then they take their shoes off and leave the room.\",clothes;counter;shoe;vacuum,\"A person walks into a kitchen, puts down a vacuum cleaner, then removes their shoes before walking out again.;A person sets a vacuum cleaner down and takes off their shoes.\",c137 0.00 6.40;c058 7.50 12.60;c056 7.50 12.60;c057 7.50 12.60;c155 4.10 12.60,13.00\r\nDFEG2,UO0Z,Living room,6,7,Yes,A person is undressing and taking off their shoes.  Then a person is eating and looking at some homework that is on a coffee table.,book;clothes;couch;food;homework;paper;shoe;sofa;table,\"a man taking off his coat and shoes and sitting down to read and eat.;The person undresses, takes off their shoes, and sits on the couch. They begin to eat some food while working on their homework.\",c011 9.10 21.00;c156 14.30 21.00;c061 14.80 21.00;c145 12.60 21.00;c155 0.00 6.60;c151 10.40 15.30;c123 11.30 21.00;c057 3.80 12.10;c001 0.00 12.90;c117 10.80 18.40,20.33\r\nBI4PK,ZSRZ,Kitchen,7,7,Yes,\"A person cooking in the kitchen throws some spices on what they're about to put in their skillet.  They turn off their stove and open a nearby window, giving the impression they aren't pleased with the smells they've awakened in their dish.\",dish;food;stove,A person prepares food in the kitchen.;A person in the kitchen is preparing some food then walks to the sink.,c118 0.60 9.00;c119 4.10 11.30;c120 3.30 10.60;c147 3.40 14.60;c147 15.10 20.40;c062 5.30 10.90;c061 2.80 10.90;c063 2.80 10.90,20.67\r\n81G9S,KQI6,Bedroom,4,4,No,A person is fixing a desk and another person is running with a box.,bed;box;cabinet;cup;draw,\"A person is sitting on a bed holding a box, they insert the box inside a cabinet;a person fixing a draw in a cabinet when someone else takes an object off the table and walks to another room with\",c110 0.00 3.10;c112 11.30 18.60;c135 0.00 32.00;c043 0.00 8.60,31.21\r\nNB6F5,WG9D,Recreation room / Man cave,4,7,Yes,\"A person is sitting in a chair grasping a paper bag.  The person opens the bag and pulls out a sandwich.  The person takes a bite of the sandwich, then gets up and turns off the light before leaving the room.\",bag;chair;envelope;food;light;sandwich,A person is sitting in a chair with an envelope in their hand. They remove some food from the envelope take then take a bite. They get up and walk away and turn the light off.,c065 4.40 13.60;c067 2.00 10.60;c059 0.00 10.60;c156 2.80 11.70;c154 7.10 12.50;c105 11.40 16.00;c061 1.70 10.30;c021 0.00 6.70;c020 0.00 8.90,14.62\r\n0BLSL,C7O9,Kitchen,6,7,Yes,\"A person is cooking at a stove. They start playing on their phone and twirling a glass in one hand. They walk over to the sink, set the glass inside, and go back to cooking.\",cup;food;glass;sink;stove,A person stands at the stove cooking some food.  They pick up a glass and play with it then put it in a sink.,c107 5.50 20.40;c109 14.20 20.60;c110 4.30 10.60;c147 0.00 8.30,26.08\r\nB5R5B,PKND,Hallway,7,7,Yes,\"A person runs down the hallway, holding a sandwich. The person takes out their phone and answers it.\",door;food;phone;sandwich;stairs,a person runs in and talks on the phone while holding food;A person runs inside excitedly with a sandwich in hand and pulls out their phone and has a conversation.,c015 3.80 32.00;c018 1.50 7.50;c019 4.40 32.00;c067 0.00 32.00;c150 0.00 6.10;c061 0.00 32.00;c149 26.10 32.00;c152 26.00 32.00;c152 1.60 32.00,31.38\r\nWTBB2,PKND,Bedroom,6,,No,A person is using a vacuum to tide up the room. They kneel down with a broom getting the little pieces that couldn't be reached with the vacuum. They stand up and inspect their work.,book;floor;vacuum,\"The person was standing up reading a book,then bent down and changed the vacuum  parts  holding  the book under a chin.;A person holding a book kneels down and fixes a vacuum on the floor.\",c136 14.40 32.00;c026 0.00 32.00;c032 22.60 30.30;c137 3.00 32.00;c115 0.00 32.00;c125 1.90 32.00,31.42\r\nRJPOO,CO1W,Hallway,6,5,Yes,A person is drinking coffee and smiling at a picture.,cup;picture,A person is drinking a cup of coffee looking at a picture on the wall.,c106 3.30 31.00;c152 2.10 28.80;c088 0.00 31.00;c107 0.00 31.00,30.25\r\nJP1KG,YMXV,Bedroom,3,1,No,Person is putting bag of groceries on floor then looks in mirror and starts sneezing.,bag;floor;groceries;hair;mirror,person zipping a bag puts it on shoulder and walks to mirror tides closes,c096 8.20 32.00;c023 0.00 13.60;c144 11.00 16.10;c020 0.00 32.00,30.96\r\nXHG13,YA10,Basement (A room below the ground floor),4,7,Yes,\"One person pours something and starts drinking, then throws some dishes into a box.\",box;cup;dish,\"A person standing in a room holding a plate and a cup, the person then pours the drink into another cup and then drinks it, then the person places the plate and cup into a box on the floor and then leaves.\",c118 0.00 26.00;c107 0.00 23.10;c119 14.40 20.40;c108 0.00 11.20,25.21\r\nTF8NL,3H6W,Bathroom,6,5,Yes,A person is seen through the doorway throwing medicine into a toilet.  This person is is awakening from a weekend long drug binge and on the verge of throwing up.,blanket;doorway;pillow;sofa;toilet,A person is throwing something into the toilet. A person is lying on a sofa and begins to sneeze.;A person throws something into the toilet. A person is then lying on the sofa in a blanket.,c097 0.00 5.40;c072 7.50 20.50;c146 15.00 22.00;c154 17.00 22.00;c122 7.60 14.80;c074 14.60 21.10;c078 7.50 15.50,20.75\r\nT87QE,9PLL,Bathroom,5,7,Yes,A person is sitting on a chair drinking a glass of water then begins to undress their clothes with a smile.,chair;clothes;cup;glass,A person is sitting in a chair drinking coffee. The person puts the mug on the floor and takes of their shirt.,c059 0.00 37.00;c106 2.10 18.30;c155 21.80 34.90;c152 31.60 37.00;c000 32.10 37.00;c107 0.00 3.30;c107 6.20 11.10;c109 14.40 22.20,35.67\r\nI5Q2Z,KQI6,Dining room,6,7,Yes,One person is standing pouring coffee and another is washing off some food with a towel.,chair;coffee;cup;food;table;towel,\"a woman is holding two cups of tea and pours one from one to another. a man holds and orange and prepares to eat his food while sitting on a chair;A person is pouring coffee between two cups, and then gives one to another person. That person is sitting and eating.\",c061 0.00 5.50;c108 0.00 5.40;c156 12.60 16.80;c108 12.40 27.10;c059 0.00 32.00;c107 25.50 32.00;c062 0.00 32.00;c011 0.00 32.00;c063 0.00 32.00,30.71\r\nZOMM2,5LWB,Living room,5,4,Yes,A person is standing in the bathroom with some coffee.  The person then grasps at a sandwich on the vanity.,coffee;cup;doorway;food;sandwich,\"The person is walking around an apartment and looking around, in one room the person picks up a sandwitch.\",c069 22.10 30.60;c107 12.60 32.00;c067 24.10 32.00;c156 24.10 32.00;c065 26.10 32.00;c061 24.10 32.00;c097 18.40 23.50;c063 20.80 29.00,31.42\r\nEM0B6,HR43,Living room,4,6,Yes,A person is sitting by a coffee table then take a drink of water before eating a sandwich.,food;glass;sandwich;sofa,A person is sitting on the sofa drinking from a glass and eating.,c106 3.60 20.70;c065 17.60 30.00;c156 18.90 30.00;c123 0.00 30.00;c061 17.70 23.10;c067 17.70 23.10;c110 4.30 12.80;c069 16.10 23.20;c107 4.80 19.80;c063 16.90 22.50;c062 27.30 30.00;c109 14.90 19.80,29.42\r\n27JQL,D0RU,Bedroom,6,7,Yes,A person is sitting at the desk grasping a towel.  The person throws the towel into a box on the floor and eats a sandwich.,box;chair;desk;dish;floor;food;sandwich;table;towel,\"A person is cleaning up a desk area, they use a towel to wipe their face. They then eat a sandwich.\",c038 4.50 9.40;c126 6.70 11.90;c065 17.70 24.10;c156 23.20 29.20;c034 6.40 11.90;c011 0.00 32.00;c036 6.80 11.60;c059 0.00 32.00;c118 14.60 32.00;c061 16.90 32.00;c035 3.00 12.10,30.92\r\nFNNTW,H8N1,Bedroom,5,7,Yes,A person is playing with the phone while smiling. The person drinks from a cup of coffee.,coffee;cup;glass;phone,A person who is sitting down is looking at their phone and pressing buttons while smiling and periodically drinking from a glass.,c107 10.50 19.60;c106 26.00 32.00;c016 0.00 28.60;c107 25.50 32.40;c110 25.50 32.20;c109 13.20 20.20;c015 0.00 35.00,34.00\r\nAMIHY,2Q9D,Dining room,6,7,Yes,\"A person is sitting and eating a sandwich, then taking medicine in a dining room.\",chair;cup;food;glass;medicine;sandwich;table;water,\"A person is sitting at a table eating a sandwich they pick up a bottle of pills and take a few with a drink of water;A person is sitting at a table, eating a sandwich. The person picks up some medicine and takes it with a glass of water.\",c128 10.50 21.60;c156 0.00 13.80;c128 9.00 15.80;c129 17.10 27.90;c106 18.90 29.30;c011 0.00 30.00;c062 2.90 13.50;c110 18.40 29.50;c061 0.00 13.80;c063 0.00 3.80;c059 0.00 30.00;c107 18.30 23.50,29.38\r\n5EFZ1,HJJ4,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is putting a bag of groceries down in the entryway.  The person is sneezing and then straightens a picture on the wall.,bag;groceries;picture,\"A person is standing in the entryway, they sneeze then they straighten a picture on the wall.\",c020 0.00 3.50;c022 0.00 4.90;c153 0.00 9.30;c083 6.50 11.50;c083 6.50 17.00,16.17\r\nAEJ4T,X5XO,Kitchen,6,6,Yes,\"Person A is sitting in a kitchen looking out the window watching a scene outside.  Once bored, Person A opens a book and goes back to doing homework.\",book;chair;homework;paper;window,\"A person sitting on a chair, stares out a window. The person starts to do homework.\",c026 6.90 32.00;c027 6.40 14.00;c032 6.40 32.00;c115 0.00 11.70;c145 14.10 32.00;c092 0.00 8.30;c059 0.00 32.00,30.58\r\n8S9AF,ZAWX,Other,4,5,Yes,A person is washing a table while standing. They take a towel and put it over their phone.,chair;clothes;doorway;floor;table;towel,\"A person is cleaning a table. A person then puts a towel on a chair.;A person sits on the floor and cleans a table with a towel. The person puts the towel down, stands up and walks away.\",c033 19.90 25.30;c038 0.00 19.40;c154 16.10 20.80;c013 0.00 18.10;c011 0.00 21.00;c097 25.80 32.00;c012 0.00 21.70;c034 19.90 25.60;c000 0.00 20.70;c001 19.30 26.30,30.58\r\nWHVP2,ZAWX,Other,6,7,Yes,A person is laughing and getting coffee from a shelf.  Then a person is smiling and getting a coffee cup from a different shelf.,chair;coffee;cup;dish;doorway;shelf;table;window,\"A person is sitting in a chair smiling, they then get up and take some coffee and put it on a table.;A person sitting in a chair stands up, walks over to a shelf, picks up a cup of coffee, then walks to another room and puts the cup down.\",c107 0.00 9.20;c107 28.60 32.00;c154 0.30 7.20;c110 4.40 10.00;c152 0.00 32.00;c009 0.00 4.00;c097 9.50 14.10;c118 4.30 22.50;c092 0.00 6.00;c120 4.30 22.50;c097 7.00 13.00;c119 17.00 23.00,30.54\r\n8D464,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person watches the screen of their camera. The person takes a picture of a laptop, turns off the light, and leaves.\",camera;corner;door;light;phone;picture,A person is standing holding a phone then they take a picture of a table turn off the light and proceed to walk out the door.;A person is standing while playing o their phone. They turn off the light. They then leave.,c015 0.00 30.00;c105 14.80 20.10;c087 11.50 17.30;c087 5.70 17.60;c015 0.00 7.40;c016 0.00 17.50;c097 22.90 28.60,28.88\r\n56ASU,IK1O,Laundry room,3,6,Yes,A person in a laundry room turns on a light and is pouring detergent onto clothes they are washing.,clothes;cup;doorway;laundry detergent;light;soap;washer;washing machine,\"A person enters the room and turns on the light. They walk to the washer and and open it and then they pour some laundry detergent into a cup.;A person walks through the doorway and kitchen into the laundry room, opens the washing machine lid and pours in detergent.\",c005 13.50 35.00;c104 4.60 9.20;c097 0.20 6.90,33.67\r\nSHP4R,Q4IF,Kitchen,7,4,Yes,A person is eating food out of the refrigerator. They grasp a drink on the top shelf of the fridge.,cup/glass/bottle;food;refrigerator,\"A person opens the refrigerator, takes out some food and eats it.\",c143 0.00 7.50;c061 6.30 24.00;c156 5.60 18.50;c063 5.80 10.70;c110 18.30 22.70;c142 6.00 12.10,22.83\r\nO2DXE,HJJ4,Entryway (A hall that is generally located at the entrance of a house),6,4,Yes,A person lying down looks in a mirror. They pull the blanket over their head then start undressing from under the blanket.,blanket;floor;head;mirror,\"A person lying on the floor looks over at the mirror, then covers up their head with a blanket.\",c071 3.00 10.60;c096 0.20 6.80;c124 0.00 20.00,19.00\r\nVLYM4,PO5L,Kitchen,5,6,Yes,A person is sneezing and using a vacuum and then sitting at a table and eating food in a kitchen.,bar;chair;counter;floor;food;sandwich;table;vacuum,\"A person walks into the kitchen, sneezes, and starts vacuuming. The person sits down at the bar and eats a sandwich.;A person is in the kitchen and turns on a vacuum cleaner.  They run the vacuum cleaner over the carpet a few times, and then turn it off and leave the kitchen.  They then sit at the counter in the adjacent room and take a bit of some food, then get up and leave the shot.\",c061 26.10 37.20;c156 25.90 37.20;c151 23.10 30.70;c065 26.50 36.00;c011 22.50 35.80;c137 9.10 24.70;c153 6.70 11.70;c059 24.70 30.30;c150 0.00 5.60;c069 29.80 39.20;c068 27.50 33.80;c127 8.10 17.80,39.46\r\nMBGPJ,2Q9D,Garage,5,7,Yes,A person gets up from a chair where they've been sitting and opens a refrigerator. They get a glass and take a drink.,chair;cup;glass;refrigerator,\"A guy is sitting in a chair. He stands up, walks to a refrigerator, opens it and takes out a glass and drinks what is in it.\",c106 14.50 23.60;c110 13.70 20.90;c143 10.50 18.10;c107 13.70 28.00;c154 8.10 13.90;c059 0.00 12.80;c142 22.90 28.00;c142 10.90 16.90,26.58\r\nK9KDK,KQI6,Kitchen,6,7,Yes,One person is playing at the laptop while another is cooking food.,counter;food;laptop;pot;stove;table,Someone is standing at a kitchen counter on their laptop. Another person is mixing something in a pot on the stove.;A person is working on a laptop on a table while another person cooks some food in a pot on the stove.,c052 0.00 32.00;c147 5.30 28.70;c051 0.00 9.20,31.21\r\n73X8Q,YA10,Laundry room,6,6,No,A person grabs their laptop cell phone.  They are drinking something and walking away from the camera.,cup;doorway;dryer;glass;laptop;phone,\"A person walks over to a dryer, picks up a phone a puts it in their pocket.  They then drink from their glass, close and pick up a laptop before leaving the room.;A person takes a phone off the dryer and puts it in a pocket.  Then the person drinks from a cup, picks up a laptop, and walks through a doorway.\",c047 7.80 15.20;c050 8.20 14.70;c015 0.90 6.10;c017 4.50 10.60;c018 0.60 6.20;c097 13.20 22.30;c046 9.10 14.10;c107 0.00 31.00;c106 5.60 11.20,30.29\r\nXDFPV,KQI6,Living room,5,2,No,One person leaves the desk as another walks in with a phone and starts playing games.,chair;couch;doorway;phone;table,\"Two people sit on chairs in a living room. One person stands, takes a phone, plays on the phone and walks away. The second person does the same.;A person gets up and grabs their phone. Another person gets up.\",c015 4.30 32.00;c016 7.80 32.00;c018 4.70 18.50;c097 5.20 32.00;c059 0.00 8.70;c011 0.00 14.20;c123 0.00 10.20;c154 5.00 11.30,30.50\r\n796XH,D0RU,Kitchen,7,6,Yes,A person is standing in front of the refrigerator holding a glass of water and a sandwich.  The person eats the sandwich and puts the glass down on the stove.,glass,\"A person walked in a circle a couple of times, then walked into the kitchen and back into the living area.\",,34.62\r\nPQBGG,EA2K,Living room,6,6,Yes,A person is in the garage walking around to the window holding a sandwich while undressing his shoes.,bag;chair;door;sandwich;shoe;window,\"There is a person walking down a hall and they look out a door.  That same person then sits down, starts to eat a sandwich and takes off their shoes.;A person is carrying a bag. A person then looks out a window. A person then sits in a chair and eats a sandwich while taking off their shoes.\",c151 20.10 25.30;c057 23.50 41.00;c067 0.00 10.10;c020 0.00 31.70;c059 26.70 41.00;c092 4.10 10.10,40.42\r\n56XKK,AH2J,Living room,6,7,Yes,\"The person brought the groceries in the house, sat them down on the table, and then put them away. They them went to the sofa to lay under a blanket and watch tv\",bag;blanket;couch;cup;door;food;groceries;remote;shelf;sofa;table;television,\"The person comes in the door and puts the bag of groceries down. The person then puts away a few groceries before laying down on the couch to watch tv.;A person enters the front door and sets a plastic bag on the table.  They remove a cup from the bag and place it on a shelf then they lay down, get under a blanket and turn on the television.\",c130 4.30 12.30;c072 26.90 39.00;c151 24.20 35.30;c021 3.60 18.10;c008 12.20 20.80;c070 23.10 39.00;c020 0.00 11.60;c006 0.00 8.30;c081 7.00 13.90;c009 4.90 12.50;c122 26.30 39.00;c022 4.30 14.30;c132 26.10 39.00;c097 11.20 17.90;c061 0.00 39.00,38.17\r\n2FL0X,KFGP,Hallway,4,7,Yes,The person runs to the basement and grabs the doorknob and opens the door. The person fixes a vacuum.,door,\"A person is running down the hallway, opens a door, grabs a chair, and looks for something in a bin.\",c008 2.80 9.60;c141 2.80 9.40;c150 1.00 6.80;c097 3.10 8.90,32.92\r\nTLJRV,EA2K,Kitchen,6,6,Yes,\"The person was tidying up the garage, when they saw a picture from high school. The picture was under some dishes in a box, so the person cleared them away. After washing the picture frame, they sat in the garage examining the photo.\",box;chair;dish;picture;sink;table,\"A person is holding a box. A person is holding dishes and looking at a picture. A person then sits in a chair.;A person takes a box from under the sink and puts it on a counter.  They remove some dishes and a picture.  Next, they hold the picture and clean it, eventually sitting down in a chair to look more closely at the picture.\",c041 4.40 11.60;c154 2.30 9.30;c120 7.80 23.60;c043 3.80 30.60;c151 8.30 27.60;c041 14.70 40.00;c009 11.00 34.30;c042 5.50 14.60;c119 8.50 20.20;c151 23.40 34.30;c119 13.20 23.20;c085 14.90 33.20;c088 13.80 44.00;c118 8.70 20.20;c084 14.20 43.70;c083 13.60 19.70;c044 8.00 17.60;c059 26.60 44.00,42.71\r\nG2WHU,HJJ4,Home Office / Study (A room in a house used for work),6,7,Yes,A person plays with a glass in their hand as they laugh at the homework in front of them.,bottle;chair;glass,A person is sitting in a chair playing with a glass.;A person is sitting in a chair holding a bottle and spinning it in their hand.,c059 0.00 13.00;c107 0.00 13.00,11.58\r\n293PC,5LWB,Living room,4,4,Yes,A person is fixing a broken chair then begins to play with the bag of groceries next the doorway.,bag;chair;groceries,A person is looking at a chair. A person gets an item out of a bag.,c020 17.50 26.00;c021 14.70 21.60,25.25\r\n2G59W,EE32,Hallway,5,7,Yes,A person is seen sitting while looking at their phone. They put their phone away and begin holding their clothes.,clothes;floor;phone,A person is looking at a cellphone while seated in the hallway. The person puts the cellphone down. The person picks up some clothing items.,c000 6.60 14.00;c004 5.90 14.00;c015 0.00 7.90;c016 0.00 8.10;c017 3.80 8.60;c125 0.00 14.00;c002 6.30 12.10,12.54\r\n92QGQ,1OHU,Laundry room,7,7,Yes,A person takes a blanket out of the dryer then puts in some clothes.  They then sit in a chair and snuggle into the blanket.,blanket;chair;clothes;doorway;drawer;dryer,\"A person puts clothes in a dryer, takes a blanket out, wraps it around them and sits in a chair.;A person holding a bundle of clothes puts them into a drawer, then takes a blanket and goes to sit in a chair.\",c000 0.00 11.40;c070 7.30 31.00;c059 22.60 31.00;c073 0.00 12.60;c151 21.40 29.00;c001 3.40 12.90;c097 12.20 20.70;c003 8.30 13.70;c097 1.60 6.00;c072 27.10 31.00,29.92\r\nPAXNL,3H6W,Living room,4,6,Yes,\"A person is eating food in a chair, then is running out.\",chair;food,\"person came, sat on the chair and ate some food. got up from the chair and left from there\",c059 0.60 22.10;c061 25.70 29.00;c151 25.60 29.00;c156 25.70 29.00;c154 25.70 29.00,27.62\r\nX4CZH,EA2K,Closet / Walk-in closet / Spear closet,7,7,Yes,The person went over to the window and turned on the light.  After opening it the person fixed the light bulb!,light;screwdriver;window,A person is looking out a window. Then they turn on and off a light switch. They reach up and take the light bulb from over head. They examine it and tap it with a screwdriver.,c103 10.70 36.00;c092 0.00 6.00;c104 3.60 10.30;c090 0.00 5.90;c105 5.90 12.00,34.88\r\n41SB2,3H6W,Bathroom,5,7,Yes,\"A person is standing on a chair changing a lightbulb, then closing a cabinet and finally using a broom in a bathroom.\",broom;cabinet;chair;door;floor;light,\"A person stands up, fixes a light, closes a cabinet door and starts sweeping.;person stand up on the chair and fix the light properly. got down from the chair, reached the cabinet, closed the door and cleaned the floor.\",c060 2.00 11.00;c112 11.00 16.00;c102 15.00 23.00;c103 3.00 10.00;c113 10.70 16.80;c127 13.20 24.00;c154 1.20 11.10,23.42\r\n2QXXW,0KZ7,Hallway,5,6,Yes,A person is standing with a sandwich in one hand and turns a doorknob with the other.  The person then walks through the door.,door;food;hand;sandwich,\"A WOMAN IS STANDING IN FRONT OF A DOOR HOLDING SOMETHING, OPENS THE DOOR SLOWLY AND ENTERS INTO ANOTHER ROOM\",c008 8.40 35.40;c141 10.60 36.00;c067 0.00 36.00;c097 13.40 33.30;c061 0.00 36.00,34.50\r\nWNYV6,0RNU,Garage,6,7,Yes,A person puts a laptop into the cabinet. The person looks around and smiles.,cabinet;door;laptop;shelf,A person is standing with their laptop they open the laptop then close it and put it in a cabinet they look around and walk away.;A person is holding a laptop. The open and close it. They open a cabinet then put it on a shelf in a cabinet and close the door.,c112 12.90 18.70;c113 10.60 15.60;c046 6.10 12.90;c048 4.30 9.80;c081 11.50 16.30;c006 12.90 18.70;c047 0.00 16.50;c051 4.80 13.20;c049 11.30 18.40,25.17\r\nG3K2N,ZAWX,Bedroom,6,7,Yes,\"A person is sitting on a bed in the basement. That person is holding a sandwich, ready to eat it.\",bed;dish;hand;sandwich,A person is sitting on a bed in a bedroom holding a sandwich on a plate.;A person is sitting on a bed while holding a sandwich on a plate. They start to pick it up but change their mind and put it back on the plate and then wipe their hands on their pants.,c135 0.00 30.50;c067 0.00 30.70;c118 0.00 31.00,30.33\r\nFABO7,1TZV,Hallway,5,7,Yes,Person is talking on phone while standing next to vacuum cleaner then starts smiling at picture on wall.,phone;picture;vacuum;wall,\"A person is standing in the hallway in front of a picture, and beside a vacuum cleaner talking on a cell phone.\",c015 0.00 32.00;c019 0.00 32.00;c088 8.40 32.00;c152 25.90 32.00,31.29\r\n8EU89,EIO2,Laundry room,6,6,Yes,\"A person opens the door and enters their laundry room. The person sits on a pillow on a chair, and begins undressing.\",chair;clothes;door;pillow;towel,A person is turning off a light then sitting on a chair and taking off their shirt.,c008 1.90 7.60;c155 13.50 28.20;c059 5.80 11.50;c151 5.80 11.50;c003 24.10 29.60;c033 0.00 8.00;c097 2.40 8.20,30.08\r\n5IVO1,YMXV,Bedroom,6,4,Yes,A person awakens in their recreation room on a sofa holding a book. The person starts dressing and runs from the room,bed;book;clothes;shirt,A person is lying on a bed while looking at a book. The person stands up and puts a shirt on.;A person is sitting on the bed. A person then begins to look through a book. A person then puts on a shirt.,c032 0.00 14.60;c135 0.00 17.10;c148 12.10 32.00;c030 0.00 7.30;c026 0.00 14.70;c025 9.30 14.40;c150 27.60 32.00;c027 4.60 9.90;c028 9.90 15.20;c154 12.50 32.00,31.38\r\nMYB7P,UO0Z,Pantry,6,7,Yes,A person is grasping their camera. A person is eating as the person stands in front of the refrigerator.,camera;food;phone;picture;refrigerator;sandwich,A person takes a picture with their phone and eats a sandwich.;A person standing in their kitchen in front of their refrigerator uses their camera to take a picture of themself. They then take a bite out of a sandwich.,c015 0.00 11.60;c087 4.00 10.00;c065 8.60 15.00;c067 12.30 17.20;c087 6.10 15.30;c061 10.60 15.70;c156 12.40 17.40;c061 0.00 21.00;c156 5.70 21.00;c016 0.00 9.10,19.58\r\nTD3HC,BYF9,Bedroom,6,7,Yes,\"A person throws a blanket on their bed, then fixes the drawer on the wardrobe.\",bed;blanket;closet;table;wardrobe,A person is throwing a blanket on a bed and then looking inside the wardrobe.,c071 0.00 6.10;c074 0.00 5.90;c113 8.80 17.60;c009 0.00 5.00,24.58\r\n63T5I,9PLL,Stairs,5,7,Yes,\"A person is running up the stairs holding a picture, they then stop running and work on getting the camera on their phone working.\",phone;picture,A person is running up the stairs holding a game in one hand and their phone in the other at the top of the stairs they search for service with their phone.;The person walked up the stairs holding a picture. They stopped at the top of the stairs to take some photographs with their phone.,,31.62\r\nDK59J,ZAWX,Closet / Walk-in closet / Spear closet,5,2,Yes,A person is in their recreation room holding a book and a bag. The person opens the book and sneezes.,bag;book;hair,\"A person is standing, holding a bag, and smiling. The person then opens a book and reads it but not before sneezing.;A person stands holding a bag and a book and sneezes.\",c027 12.30 25.40;c032 12.30 25.70;c153 21.10 29.30;c025 19.90 25.20;c026 0.00 31.00;c144 25.60 31.00;c029 4.50 17.90;c020 0.00 31.00,30.33\r\nWFD5Z,YA10,Dining room,7,7,Yes,\"A person is playing on their laptop. The person closes the laptop, takes a bite of a sandwich, and sneezes.\",chair;dish;food;laptop;sandwich;table,\"A person is sitting at a table working on a laptop and laughing, they then close the laptop and proceed to eating a sandwich and sneeze.;Person is sitting on chair playing games on laptop and laughing, then closes laptop and starts eating sandwich and sneezes.\",c046 6.50 11.70;c051 0.00 10.00;c153 25.10 31.60;c011 0.00 32.00;c059 0.00 32.00;c067 10.90 18.60;c063 9.10 15.80;c065 12.30 27.20;c156 12.30 27.20;c052 0.00 10.50;c014 0.00 10.50;c068 14.10 19.20;c061 11.30 18.50;c069 9.10 18.80;c062 9.90 18.10;c120 9.60 15.80,31.33\r\n69EK6,KFGP,Stairs,6,7,Yes,A person walks down the stairs while talking on their phone. The person hangs up the phone and puts it down on the table at the bottom.,door;phone;table,A person walks down the stairs while talking on the phone. They place the phone on a table and walk through a door.;A person is walking down the stairs talking on their phone they get to the bottom and put their phone on a table and open a door and go in another room.,c017 27.00 34.40;c019 0.00 31.90;c009 27.50 33.90;c008 30.80 37.00;c097 32.40 37.00;c018 0.00 34.00,36.42\r\n42E9I,HR43,Kitchen,6,6,Yes,\"A person stands in front of the open refrigerator, wrapped in a blanket. The person takes a bottle and drinks from it.\",blanket;cup/glass/bottle;door;drink;refrigerator,There is a person with a blanket wrapped around them standing at the refrigerator with the door open.  That same person takes something out of the refrigerator. drinks it. puts it back and closes the door.,c072 0.00 34.00;c142 31.00 34.00;c006 31.00 34.00;c106 17.00 23.20,33.29\r\nSVO89,S395,Laundry room,7,7,Yes,\"A person working with a laptop on a washing machine, takes a book off of a shelf and turns to leave. The person turns the doorknob, leaves, then closes the door behind him.\",book;door;laptop,\"This person is typing on a laptop, grabs a book, then walks out of the room.\",c026 16.00 21.20;c030 14.70 21.20;c006 19.00 25.60;c008 17.60 23.20;c141 19.10 24.40;c097 18.10 25.10;c115 15.10 22.70;c052 0.00 18.10,26.75\r\n9207X,WQ8Z,Living room,5,5,Yes,A person is throwing their phone on a chair.  Then opening the cabinet.,cabinet;phone;table,\"Person walks into room, throws phone onto couch, and checks cabinet.\",c113 9.50 16.00;c015 1.10 7.80;c112 18.10 22.00;c009 4.90 10.30;c151 8.70 14.40,20.88\r\nMDG2T,6RE8,Living room,6,7,Yes,\"A person is sitting at the table holding a glass of water.  The person puts the water down and walks to a cabinet and grabs a towel.  The person wipes their face with the towel, then throws it on the floor.\",chair;cup;dish;floor;glass;table;towel;water,A person is sitting in a chair drinking a glass of water. A person then gets up and cleans their face in a towel. The person throws the towel on the floor. The person then picks up a blanket and starts to snuggle with it.,c126 13.80 20.40;c109 5.70 12.40;c033 9.20 19.60;c035 8.30 14.10;c106 0.00 10.40;c127 24.90 31.80;c107 0.00 16.10;c110 0.00 6.10;c034 14.80 24.80;c036 15.00 23.90;c011 0.00 16.10;c059 0.00 14.90;c119 6.00 10.70;c118 0.00 11.00;c009 6.00 10.70;c154 6.40 11.80,30.54\r\n3DLKC,18IT,Living room,6,6,Yes,\"A person is sitting on the sofa doing their homework.  Another person opens the door and throws a towel at the person on the couch, then closes the door and leaves.  The person on the couch tidies their hair and continues working on their homework.\",desk;door;hair;homework;notebook;paper;pen;scarf;sofa;table;towel,\"A person is writing in a notebook at a desk sitting on a sofa. Another person opens the door, takes off a scarf, and throws it on the person at the desk. The person at the desk rubs their head with the scarf and the other person leaves. The person at the desk continues working.;A person is sitting at a table doing homework.  A second person opens a door, walks in, throws a towel at the first person and then leaves, closing the door. The first person rubs their hair with the towel.\",c144 13.50 26.60;c008 0.00 5.60;c014 0.00 34.00;c036 4.30 9.40;c145 0.00 34.00;c123 0.00 34.00;c097 0.00 5.50;c035 11.00 17.70;c011 0.00 34.00;c033 2.80 8.40,32.92\r\nWZ351,D0RU,Hallway,5,7,No,A person is standing by the window smiling at the bag.,bag;window,A person is smiling and walking while holding a book bag.,c020 0.00 34.00;c152 0.40 16.20,32.62\r\nCY2J2,G6WD,Living room,7,7,Yes,One person grasps a bag as another person opens a vacuum and starts fixing it.,bag;chair;floor;vacuum,A person is sitting on the floor and taking apart a vacuum cleaner. The person is talking to another person as they do this.,c136 13.30 42.40;c137 6.60 42.70;c151 1.10 10.40;c154 45.00 52.00;c059 0.00 52.00;c125 1.60 47.50,50.83\r\nWBBTU,YA10,Kitchen,7,7,Yes,\"A person walks to a refrigerator, grasps a sandwich and begins cooking at a stove.\",food;refrigerator;stove,A person enters the kitchen opens the fridge takes out something goes to the stove and cooks food.,c147 13.10 32.00;c143 1.00 12.00;c142 3.10 7.80;c061 5.80 21.60;c156 5.60 25.20;c063 8.60 12.90,31.12\r\nYXJBA,T7C3,Living room,6,6,Yes,\"One person walks in with a book and blanket, then starts eating and drinking.\",blanket;book;bowl;dish;food;glass;paper;table;towel,\"A person snuggling a blanket walks in holding and reading a book that is put on a table. The person picks up a dish of food and eats,  then picks up a glass and drinks.;a person has a blanket on and sets some paper on a table then eats out of a bowl and gets a drink\",c032 0.00 8.80;c061 6.40 41.00;c009 2.00 10.80;c026 0.00 9.60;c072 0.00 41.00;c156 9.20 41.00;c116 4.20 10.80;c106 20.60 26.20;c118 7.40 41.00;c120 7.20 13.00;c063 6.80 14.60;c070 0.00 41.00,40.04\r\nA1U0W,18IT,Living room,6,7,Yes,Person is watching another person that is playing with pillow and box.,box;pillow,A person is playing with a box and a pillow on the floor while another person walks in and watches.,,15.42\r\nAVA41,3VLX,Bathroom,6,7,Yes,\"A person closes the bathroom door, and stands at the sink. The person takes a bottle of medicine from the cabinet and then leaves.\",cabinet;door;medicine;mirror,a person walks into a bathroom looks int the mirror takes something out of a medicine cabinet then leaves the room;A person walks into a bathroom and closes the door. They stare at themselves in the mirror and then they open the medicine cabinet and grab some medicine and they walk out the door.,c008 24.40 32.00;c113 15.30 21.80;c154 9.00 17.00;c096 9.00 18.00;c141 30.30 33.00;c129 30.30 33.00;c097 30.30 33.00;c006 1.50 9.30;c128 18.60 29.40;c112 20.10 25.50,32.21\r\nP4UXI,EXQX,Pantry,3,5,Yes,\"Person 1 is sitting on the floor in the pantry, talking on the phone in an animated fashion. Person 2 walks into the pantry, picks up a coffee pot sitting on a nearby shelf, and pours a cup of coffee.\",coffee;cup;doorway;floor;glass;phone;shelf,A person is sitting on the floor talking on a phone. It cuts to another person walking down a hallway and sitting next to the first person and pouring both of them a drink.,c108 20.00 31.90;c019 0.00 61.00;c125 0.00 61.00;c151 16.10 22.20;c097 7.70 15.30,60.29\r\nESAIY,DXDI,Bedroom,6,7,Yes,A person is seen eating some medicine. They start fixing their hair and adjusting the pillow on their bed.,bed;cup;glass;hair;medicine;pillow,\"A person is sitting on a bed, opening a bottle of medicine.  They take the medicine with a glass of water, put it away. They fix their hair and straighten the pillows.;A person is sitting on a bed talking medicine and fixing pillows.\",c135 0.00 37.00;c128 0.00 4.90;c106 5.70 14.80;c128 0.00 11.10;c144 17.30 29.50;c129 0.70 11.60,35.62\r\nM8I61,9Y7F,Stairs,7,7,Yes,A person is walking down the stairs while drinking a glass of water in one hand and holding medicine in the other.  The person sneezes as they get to the bottom of the stairs.,dish;glass;hand;medicine;water,a person comes down the stairs  while holding a class of water and sneezes while coming down the stairs,c128 0.90 32.00;c153 15.60 28.50;c107 0.90 19.80;c118 0.90 19.80,30.62\r\nQYF31,ECB2,Bedroom,5,7,Yes,\"A person undressing in their bedroom smiles as they take down a pillow from a shelf in their wardrobe.  Leaving their clothing on the floor, they put their special pillow on the bed, and then laughing, they retrieve a camera from a nearby desk.\",clothes;phone;pillow,A person is taking off their shirt and they turn around and take a pillow off of a shelf they throw the pillow on the bed. Then they pick up a camera.,c016 7.70 12.00;c155 0.00 4.70;c015 6.80 12.00;c080 4.90 10.40,11.17\r\nU32ZC,BYF9,Basement (A room below the ground floor),1,7,No,A person is holding a bag of groceries. Another person takes the bag from the first person and sets it on a chair.,bag;chair;groceries,\"the person walking into the room, other person came and took the bag and kept on the chair\",c022 6.40 12.70;c020 0.00 11.90;c023 0.00 10.70,15.29\r\nJELL2,0KZ7,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is laughing and smiling in front of a window and then eating a sandwich in an entryway.,food;sandwich;window,\"A person is looking out a window and laughing, they then pick up a sandwich and begin eating it.\",c092 0.00 16.50;c065 12.10 26.00;c067 11.50 26.00;c069 11.30 26.00;c149 0.00 9.20;c152 0.00 11.20;c156 12.50 26.00;c061 11.80 16.50;c063 10.50 16.10,25.17\r\n06R14,DXDI,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,One person is lying in the entryway by a chair and some shoes. This person starts sneezing.,chair;floor,There is a person laying on the floor in front of a door.;A person is laying on the floor next to a chair and then sneezes.,c153 7.70 21.00;c124 0.00 22.00,20.67\r\nIHSRC,YA10,Hallway,6,7,Yes,\"A person takes a pair of shoes out of a bag and puts them on.  The person looks at a picture on the wall, fixes it so it's straight, then laughs at the picture.\",bag;picture;shoe;wall,\"A person takes shoes out of a bag, puts them on, then adjusts a picture on the wall while smiling.;A person takes some shoes out of a bag and puts them on, they then begin to adjust a crooked picture on a wall the laugh.\",c021 0.00 4.00;c085 26.10 32.00;c088 17.00 32.00;c152 26.10 32.00;c055 1.10 12.50;c083 18.00 27.80;c149 26.10 31.30;c056 0.00 4.30,31.21\r\nVUSFK,KFGP,Hallway,7,7,Yes,\"A person is in a hallway snuggling a blanket, they then take their phone out to make a call before walking away.\",blanket;phone,A person standing in the hallway cuddling with a blanket and holding a phone.,c072 0.00 17.40;c015 15.70 22.90;c070 0.00 24.10,28.79\r\nES10S,WQ8Z,Living room,5,7,Yes,\"A person is sitting on their couch holding a pillow, watching TV. Then they get up from the couch, and turn on the light.\",light;pillow;sofa;television,A person in a blue shirt is sitting on a red couch. They stand up and turn a light on before walking away.,c104 16.70 22.30;c123 0.00 21.10;c076 0.00 18.90;c077 14.70 21.00;c154 16.00 21.60;c131 8.00 16.00,24.12\r\n7WIRG,3H6W,Living room,5,6,Yes,\"One person grasps a broom and a box from an old wardrobe, then leaves the room.\",box;broom,A person takes a box and a broom and leaves the room.,c040 4.10 15.40;c098 7.80 15.40;c100 7.40 15.50;c043 4.10 12.00,23.25\r\nSJJ35,2RTW,Living room,6,6,Yes,The person was pouring a drink in the study.  The person put the drink on the table and was holding the dish with the pizza on it.,chair;coffee;cup;desk;dish;food;glass;laptop;sandwich;table;television,\"A person is pouring a cup of coffee. A person is then holding a sandwich, while looking at a laptop.;A person pours coffee into a cup and places it on a desk. They eat a sandwich while watching something on their laptop.;A young person drinking coffee from a cup and picking up a sandwich.\",c106 0.00 5.60;c118 0.00 7.40;c011 0.00 26.00;c051 0.00 26.00;c156 10.30 15.40;c059 0.00 26.00;c107 0.00 8.80;c108 0.00 5.90;c009 1.80 8.80;c067 5.30 26.00;c061 6.30 26.00;c119 2.10 8.00,25.00\r\nX28IF,2RTW,Living room,6,6,Yes,\"A person awakens in a chair in their home office. The person turns off the television, pours a cup of coffee, and begins working on their laptop.\",chair;coffee;cup;desk;dish;glass;laptop;remote;table;television,\"A person sits in a chair at a desk watching television then turn the television off. They pour a cup of coffee and put it on the desk next to a laptop that they begin working on.;Person turn of the television got up sat down at the desk pour coffee in a glass then began working on the laptop;A person is sitting at a desk. They turn off the tv, and then begin to use their computer.\",c109 7.70 17.50;c052 13.80 27.00;c011 0.00 27.00;c108 8.40 14.60;c059 0.00 27.00;c132 0.00 10.00;c012 6.70 17.20;c051 14.20 27.00;c110 6.90 17.40;c014 15.50 27.00;c146 0.00 7.80;c119 6.80 17.50;c120 7.50 17.90;c107 7.50 16.90,25.88\r\nEWH3D,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,A person is taking look a their wardrobe and then leaving a table that they were sitting at.,chair;clothes;computer;desk;laptop;table,\"A person is sitting on a swivel chair at a desk in front of a computer. After a few seconds, the person spins around in the chair, tidies up some clothes, and walks away.\",c011 0.00 3.80;c154 25.80 31.50;c000 0.10 28.90;c059 0.00 30.50;c001 0.10 29.00;c051 0.00 2.70;c004 0.10 29.00,32.50\r\nK21RO,4OHY,Pantry,7,7,Yes,\"A  person opens the pantry door, pulls out a book, laughs; then puts the book back on the shelf.\",book;cabinet;cupboard;door;shelf,\"A person enters a room. The person opens a cupboard door, takes out a book, flips through it, then puts it back on the shelf and shuts the door.;The person walked into the room, opened the cupboard, took out a book, looked at the book, put it back in the cupboard, then closed the cupboard door.\",c030 9.10 29.40;c112 27.00 31.00;c026 13.90 22.40;c028 21.20 29.10;c032 25.10 31.00;c006 25.10 31.00;c113 5.90 12.90;c115 12.40 28.60;c097 0.00 5.00,29.83\r\n953I1,PO5L,Laundry room,5,6,Yes,A person takes a glass off of a shelf and pours water into it. The person then returns the glass to the shelf.,can;cup;glass;shelf,A person walks in to a room and picks up a glass and pours pop in to a glass. The person takes a drink and puts the glass on the shelf and walks away.,c108 6.30 13.50;c110 4.30 11.00;c106 6.40 16.60;c107 6.50 18.20;c109 14.00 21.10;c081 14.00 20.20,22.92\r\n0AYPZ,BYF9,Recreation room / Man cave,7,5,Yes,A person is holding a vacuum in the Recreation Room/Man Cave. They are smiling at the coffee near the door.,floor;vacuum;window,The person is vacuuming the floor.;Persons walks to a vacuum and begins cleaning the floor with it.,c137 10.30 25.00;c127 10.30 25.00;c092 8.90 25.00,23.54\r\nPPKP0,DXDI,Laundry room,6,7,Yes,A person is standing in their laundry room holding a plate of food. The person sits on a chair and sips a cup of coffee.,chair;coffee;cup;dish;food;glass,\"A person holds a plate with some food on it, then puts it down, sits down on a chair and drinks some coffee.\",c106 11.90 22.30;c061 0.00 10.10;c059 11.40 30.00;c151 8.40 15.30;c118 0.00 10.10;c119 5.80 12.20,28.83\r\n95M38,DXDI,Living room,2,5,Yes,A person is drinking a cup of coffee while watching television. The person puts the cup of coffee down on the table and sneezes.,chair;coffee;cup;glass;table,a person is sitting and takes a drink then sets glass on table and sneezes;A person is sitting down eating they then put their coffee cup down a table and sneeze.,c009 20.60 26.10;c106 6.70 14.30;c153 23.10 29.60;c109 20.50 26.10;c059 0.00 30.00;c107 0.00 25.20,28.92\r\nQXEWB,18IT,Living room,7,6,Yes,A person is throwing a book and the playing under the doorway in the living room.,book;couch;door;sofa,\"A person throws a book onto a couch, runs through a room and hides behind a door.;A person throws a book on a sofa.The person squats down and starts running around the room.The person runs to the door and hides behind it.\",c031 0.00 3.70;c150 0.00 11.30,13.79\r\nJUZ3I,JVLO,Living room,3,7,Yes,Person 1 turns on a light and points a camera at person 2 who is smiling and playing a game on their phone.,camera;chair;phone,One person is sitting in a chair playing on a phone. another person is standing and using a camera to take a picture of the seated person.;A person is standing and taking pictures of a person sitting in a chair. The person sitting in the chair is playing with their phone.,,30.67\r\n6HWQJ,KFGP,Hallway,5,7,Yes,A person is sneezing in the doorway.  Then a person is laughing while carrying their homework down the hall.,book;doorway;homework;paper,A person is standing in a doorway and then starts sneezing.  A person laughs as they walk down the hallway.,c115 0.00 26.00;c153 0.00 21.10;c026 0.00 24.20,24.62\r\nVEHER,PO5L,Laundry room,4,7,Yes,\"A person runs into the laundry room, grasps a box of clothes, and quickly leaves through the doorway.\",bag;box;clothes;doorway;drier,A person comes in to a room and grabs clothes off of a drier and leaves the room. The person returns and walks back across the room.,c040 2.80 9.90;c097 14.00 18.70;c000 3.40 9.90;c043 1.80 9.80;c150 3.30 10.30;c002 2.00 10.40;c020 18.20 21.00;c023 18.20 21.00,20.08\r\nLW1W2,D0RU,Kitchen,7,7,Yes,A person is in the kitchen drinking coffee. They began playing with the food on the counter.,coffee;cup;dish;food,\"A person is standing in a kitchen, holding a mug. The person is picking up food from a bowl and tossing it, and sipping from the mug.\",c106 9.80 18.10;c107 8.10 16.00;c061 16.10 22.30;c064 16.10 25.10;c107 16.30 23.70;c118 0.00 32.00;c063 5.70 14.90,30.71\r\nAFAXI,0KZ7,Bedroom,7,6,Yes,\"One person who is lying down awakens, then sneezes. A vacuum is leaning against the wardrobe.\",bed,\"A person is lying on their bed. After a few seconds, the person sits up and crosses their legs while sitting on the bed.;A person is lying on a bed they sit up and sneeze.\",c146 9.20 19.30;c153 17.70 24.30;c134 0.00 16.70;c135 15.70 28.00;c133 12.90 20.80,26.96\r\nD95PM,XXN8,Kitchen,5,6,Yes,A person holds a sandwich and walks past a window.,food;sandwich;window,\"The person walked back and forth several times in front of a kitchen window, holding two pieces of bread in her hand while doing so.\",c067 0.00 26.80;c061 0.00 26.80,30.17\r\n5O281,YMXV,Bedroom,5,5,Yes,A person is grasping a laptop while laughing at a box.,box;desk;laptop;table,Working on computer.  PIcks up something (box?)  Attempts to open it.;The person is sitting at a desk in front of a laptop and trying to open a box.,c052 0.00 12.40;c043 7.90 13.60;c011 0.00 32.00;c014 0.00 32.00;c040 7.70 32.00,30.88\r\n84893,9Y7F,Bedroom,3,5,Yes,\"A person throws shoes on the floor, while a other person stands by a window.\",bed;blanket;clothes;doorway;floor;shoe;window,\"A person looks out a window while they finish getting dressed. Another person walks in and throws some shoes on the floor.;A person is looking out a window in a bedroom, gathering up some clothes that are spread out on one of the beds.  Another person comes in and throws their shoes to the ground and begins to talk to the other person.  They have an interaction before the video ends.\",c126 14.50 20.90;c053 13.60 19.70;c001 0.70 15.90;c092 0.00 3.50;c058 15.20 20.50;c000 13.60 19.20;c004 1.20 15.30;c003 8.70 15.60;c097 13.30 19.70;c075 7.80 15.30,30.46\r\nNL0QB,IK1O,Living room,5,6,Yes,\"A person is playing on their laptop. Then, standing, the person puts the laptop down and walks over to the refrigerator.\",laptop;refrigerator;table,\"A person interacted with a laptop standing up.  The person then closed the laptop, walked to the fridge, and opened it.\",c143 16.70 25.50;c046 11.90 17.00;c052 0.00 13.70;c014 0.00 15.50,29.88\r\nJ5CAN,54JK,Bedroom,7,7,Yes,A person snuggling a book awakens from bed then walks to the wardrobe and closes it.,bed;book;cabinet;drawer;sofa,\"a person is sitting on the sofa holding a book then yawns and closes a drawer;Person lying on a bed sleeping with a book on chest, awakens, puts the book down on the couch, and gets up walking to shut a drawer.\",c133 0.30 6.80;c025 3.50 8.60;c146 0.40 6.60;c154 6.60 12.00;c112 10.50 15.00;c123 5.30 10.70;c028 4.50 10.10;c026 2.30 9.60;c122 0.00 8.40;c032 2.40 9.30,14.33\r\nXGL67,SR1C,Bedroom,7,7,No,\"A person is in the bedroom tidying up the clothes on the bed.  After putting the clothes in the drawer, the person grabs the vacuum and turns it on.\",bed;clothes;floor;vacuum,A person is in the bedroom.  The person puts clothes from the bed into the dresser.  The person uses a vacuum on the floor.,c004 0.00 14.50;c001 0.00 16.70;c002 0.00 16.40;c001 0.00 6.20;c127 22.50 32.00;c137 16.20 32.00;c002 0.00 6.50,31.33\r\nACJR6,0KZ7,Living room,6,7,Yes,A person is in the living room playing with a pillow and another person is fixing the door.,door;floor;pillow,\"A person is sitting on the floor and playing with a pillow, while another person is closing the locks on a front door.\",c076 0.00 14.00;c080 9.30 15.00;c125 0.00 28.00;c140 0.00 28.00,26.96\r\nS47DI,QB52,Kitchen,6,7,Yes,A person is walking to the refrigerator and tidying the food.,bag;door;food;refrigerator,A person is opening a fridge and tidying it up inside.;A person is opening a refridgarator and rearranging things inside of it then they close the fridge door.,c063 10.80 23.10;c006 24.30 31.00;c008 0.00 7.50;c143 0.00 7.20;c142 24.10 31.00;c022 17.90 23.10;c023 17.00 21.70;c062 9.70 20.50,30.33\r\nTCN06,G6WD,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person walks in, halting in the doorway a second, holding their backpack.  They get an annoyed expression, pick up a blanket laying on the floor, and leave the room.\",bag;blanket;doorway;floor,A person goes out a door and comes back in.  The person picks up a blanket off the floor and shakes it.,c073 10.50 21.70;c127 10.00 21.70;c097 0.00 6.90;c075 12.30 18.80;c070 13.60 27.30;c020 0.00 27.00,32.88\r\nXX7ZJ,HR43,Kitchen,5,5,Yes,Person is standing in doorway with bag of groceries and starts smiling while looking at camera.,bag;doorway;food,The person standing in the doorway is holding a bag of bottles and stands in front of the camera.,c020 0.00 24.00;c152 12.00 17.00;c061 0.10 24.00,22.67\r\nFS3SY,IK1O,Garage,6,7,Yes,A person eating a sandwich in a garage is also grasping a cup of coffee.,chair;coffee;cup;food;glass;sandwich,A person is sitting on a chair eating a sandwich and holding a glass of coffee.,c107 0.00 32.00;c065 0.00 32.00;c156 0.00 32.00;c059 0.00 32.00;c061 0.00 32.00,30.62\r\n3Z7KH,JVLO,Kitchen,7,7,Yes,A person is taking medicine while sneezing on a book.,book;floor;medicine,\"A person is sitting on a floor, leafing through a magazine. He then sneezes, takes out some substance, wipes some on his face and inhales some more.\",c025 17.60 22.20;c026 0.00 22.00;c125 0.00 32.00;c153 12.50 20.40;c028 17.10 25.00;c032 0.00 17.50;c029 29.50 32.00;c145 29.50 32.00;c125 29.50 32.00;c153 29.50 32.00;c028 29.50 32.00;c032 29.50 32.00,31.46\r\n55V6Z,2RTW,Recreation room / Man cave,7,7,Yes,\"In their person cave, the husband was putting dirty dishes into the box to take upstairs, all the while laughing.\",box;dish;television,A person is watching a television and laughing while putting dishes in a box.,c119 2.20 11.00;c039 17.60 24.60;c040 20.10 31.00;c149 18.60 29.60;c132 16.50 31.00;c119 1.20 20.20;c118 28.10 31.00;c043 28.10 31.00;c041 28.00 31.00;c120 28.10 31.00,30.08\r\n1K4ZT,9Y7F,Bedroom,7,4,Yes,A person opens the cabinet and takes out laundry soap.  They then take the broom out of the laundry room.,broom;cabinet;clothes;doorway;hallway;shelf,A person is looking for something on a shelf.   That same person then goes and picks up a broom.;The man is searching through a stack of clothes then goes and gets a broom in the hallway. He finally looks around.,c114 0.00 12.80;c100 15.10 32.00;c082 0.00 10.80;c098 15.40 32.00;c004 0.00 6.60;c097 12.30 18.20,30.75\r\nTZ27E,HR43,Bedroom,5,6,Yes,\"A person running into the bedroom with their laptop, takes a glass and then leaves.\",cup;dish;glass;laptop,A person is putting a laptop on a bed and then picking up a glass cup from the bed.,c110 9.00 14.00;c049 5.10 10.80;c118 10.80 17.60;c109 13.60 19.00;c120 9.00 14.20,18.12\r\n22ROE,G6WD,Living room,6,7,Yes,\"The person was standing next to the window, playing with the things on the shelf.\",book;cup;glass;shelf,A person picks up a glass off a shelf. That same person then picks up a book.;A person takes a glass from a shelf as well as a book and other objects.,c081 9.70 15.70;c030 11.70 18.50;c110 0.10 5.90;c109 9.70 15.50;c026 14.50 20.30;c025 21.80 27.90;c027 14.00 21.20;c028 22.70 30.80,45.75\r\n8N7NZ,EIO2,Bedroom,7,6,Yes,A person is standing up folding a blanket.  Then a person is leaving the blanket on a shelf.,blanket;chair;closet/cabinet;shelf,A person is sitting in a chair covered in a blanket. They stand up and put the blanket away into a cabinet.,c081 20.30 28.20;c072 0.00 15.30;c154 5.40 11.70;c059 0.00 10.00;c070 0.00 26.10;c071 19.80 26.50;c112 22.60 32.00;c113 16.50 23.90,31.29\r\nPPUOO,28B0,Bathroom,5,7,Yes,\"A person grasps the doorknob to open the door. The person enters the bathroom laughing, taking a bite of their sandwich. The person then opens a cabinet and starts throwing a towel inside.\",cabinet;door;food;towel,\"A person is opening a door to the bathroom, then grabs a towel to put it away, and then finally leaves.\",c034 6.20 16.70;c036 6.40 16.90;c141 12.30 19.90;c112 12.10 19.80;c033 9.80 17.40;c035 8.50 17.30;c037 12.20 19.50;c008 0.00 4.50;c113 7.80 13.80;c156 2.20 9.10,24.04\r\nL8N31,YMXV,Home Office / Study (A room in a house used for work),4,3,Yes,\"A person is sitting on the floor next to a pile of clothes and a laptop.  The person opens the laptop and watches a video, then stands up, turns off the light, and leaves.\",chair;desk;door;laptop;light;picture;table,\"A person sits in a chair at a desk watching something on a laptop.  They get up, turn out the light and go through the doorway, holding the doorknob as if they are about to close the door behind them.;A person sits on a chair at their desk and works on their laptop. They get up and turn off the light, and grasping the doorknob, stand in the doorway to their office.\",c051 0.00 12.80;c105 21.20 26.90;c011 0.00 22.50;c006 26.20 32.00;c052 0.00 23.60;c154 18.90 24.30;c059 0.00 23.00;c097 24.50 32.00;c014 0.00 23.30;c088 0.00 20.80,31.29\r\nHD57S,9PLL,Stairs,5,7,Yes,\"A person walks down the stairs, holding a sandwich and some dirty dishes. The person sets down the dishes and tidies up some dirty clothes laying on the steps.\",bags;clothes;dish;floor;food;plate;sandwich;stairway,A person walks down a set of stairs carrying a plate. The person tidies up some clothing while holding a piece of food in their hand.;A person is walking down a dirty staircase with a plate of food and a sandwich. The person puts down the plate while still holding the sandwich and picks up bags that are on the staircase.,c000 13.60 34.00;c119 1.30 14.50;c061 0.00 34.00;c118 0.30 16.30;c004 13.00 31.60;c127 12.50 30.80;c002 27.00 34.00,32.54\r\nTAGEG,WQ8Z,Hallway,6,7,Yes,\"A person is in a hallway tidying up with a broom, they then laugh as they pick up some dishes from the floor.\",bowl;broom;closet/cabinet;dish;floor;shelf,a person sweeps the floor then puts a bowl away in the cabinet.,c127 8.20 17.00;c102 0.00 11.20;c119 14.20 20.00;c118 9.00 19.50;c114 15.10 20.00;c120 8.70 13.20;c081 13.30 19.30;c112 15.30 20.00;c113 13.20 17.80,19.00\r\nMTZ0T,6NQX,Bathroom,7,7,Yes,A person plays with a box in the bathroom. A person pours coffee down the toilet and flushes it.,box;coffee;cup,A person standing in the bathroom shakes a box. The person sets the box on a counter. The person opens the toilet lid and pours coffee from a cup in to the toilet.,c108 7.40 15.70,17.54\r\nSWIQN,HR43,Hallway,6,6,Yes,A person is throwing a towel into a hamper in the hall.  A person then getting clothes from a different hamper near a doorway of a room off the hall.  A person throws those clothes into the same hamper in the hall.,bag;clothes;towel,\"Person walks into a room and throws a towel into the laundry, and then goes into a bag, takes some clothes out to put in the laundry basket.\",c002 4.60 15.90;c000 0.00 7.00;c000 12.80 19.60;c000 16.00 23.10;c001 3.00 7.70;c003 3.00 7.70,24.75\r\nKXCSL,Z68L,Recreation room / Man cave,6,7,Yes,A person is standing in front of an opening refrigerator and taking out dishes of food and then sitting on the floor of the recreation room / man cave.,dish;floor;food;fridge;refrigerator,A person grabs food from a fridge and sits on the floor.,c063 0.00 6.50;c125 12.10 31.00;c143 0.00 3.70;c151 7.20 16.10;c120 0.00 7.40;c061 0.00 7.40;c142 3.10 9.50;c062 1.60 7.30,30.04\r\nU0ACD,BYF9,Hallway,5,7,Yes,A person is tidying the homework and drinking the medicine.,book;floor;medicine;vent lid,\"A person is kneeling in a hallway cleaning an air vent, the person then takes some medicine and then stands up.\",c129 21.00 28.30;c154 24.30 30.00;c026 0.40 9.90;c127 0.00 10.90;c125 0.00 27.90,28.50\r\nQ7YXN,C7O9,Laundry room,6,7,Yes,A person moves chair while using a broom.  They are tidying up and putting clothes in the washing machine.,broom;chair;clothes;dryer;floor,A person doing several chores including laundry and sweeping with a broom.,c099 12.60 21.80;c102 0.00 21.80;c001 12.30 31.00;c003 12.60 31.00;c098 0.00 16.10;c000 12.90 21.30;c002 12.90 21.60;c005 12.40 27.20;c127 0.00 16.30,30.38\r\nZDEYU,WG9D,Bedroom,7,6,Yes,\"A person in their man cave is laughing at their mirror. After a while, they begin playing with a pillow in an odd manner.\",mirror;pillow,A person is looking at themselves in a mirror. The person laughs. The person grabs a pillow and spins it on their finger.,,8.54\r\n2YXJO,0KZ7,Bathroom,7,7,Yes,\"One person is sitting undressing, taking off shoes, when another person runs in with a broom and a pillow.\",broom;clothes;pillow;shoe,person taking off shirt and another person walks in with a broom,c076 8.90 27.00;c098 8.50 27.00;c057 18.70 25.70;c155 4.20 17.40;c150 7.60 13.90;c001 13.00 19.50,25.83\r\nDJVZQ,4OHY,Kitchen,7,4,Yes,\"A person runs into the kitchen, eating some food. The person pours a cup of coffee, then leaves.\",cup;dish;doorway;food;glass;pan,\"This person walks into the kitchen, picks up a pan, and starts eating out of it, then pours milk into a glass.\",c108 24.10 34.10;c063 0.80 26.10;c107 23.20 35.00;c109 24.40 35.30;c061 1.40 27.00;c156 2.40 27.40;c118 2.80 29.10;c097 0.00 3.10;c119 24.30 29.30;c120 2.40 7.90,35.46\r\nRT07R,9Y7F,Living room,6,5,Yes,A person is smiling at a shelf while another person is playing with a camera.,phone;some object,Two people are in the video. They are mostly pacing around. One is playing with something,c015 0.00 32.00,30.75\r\nWTGVG,HR43,Kitchen,6,7,Yes,A person is working in the kitchen holding some groceries.  They are seen tidying up some things in the refrigerator.,bag;beer;bottle;food;fridge;groceries;man;refrigerator;shelf,\"Person has bag in hand, opens fridge takes beer out of bag, places beer in fridge, tidies fridge then closes fridge.;A man putting a couple of bottle into a fridge and straightening it up.\",c020 0.00 9.10;c142 27.80 32.00;c130 6.40 11.60;c143 0.20 4.80;c062 5.40 12.70;c082 19.70 30.70,31.46\r\n9UDMH,P6LJ,Living room,6,6,Yes,\"The person is sitting on the sofa in the living room while watching the television, drinking coffee and opening the newspaper.\",book;cabinet;coffee;cup;glass;sofa;table;television;window,\"person reached the sofa, took remote and on the television, took the coffee from the table and drank it. took a book from the table and read it.;A person is walking to the sofa and sitting then turns on tv and drinks coffe and reads a magazine.\",c107 9.80 24.30;c123 3.00 51.80;c032 25.00 49.40;c154 46.00 51.50;c151 2.50 9.60;c154 1.90 7.50;c106 10.60 23.50;c110 10.10 19.30;c132 8.50 23.00;c109 11.40 23.50;c009 38.90 43.40;c116 46.00 51.30;c117 21.60 28.20;c115 24.20 51.30,52.38\r\n5XA4R,P6LJ,Living room,6,6,Yes,\"A person is smiling and laughing, watching the television from a comfy chair with a big pillow.\",pillow;sofa;television,A person goes and sits on the sofa and puts a pillow in their lap.  That same person then uses the remote and cuts on the television.;Person getting up and to go sit on a couch and watch television before getting back up.,c123 1.40 8.80;c151 0.00 8.80;c076 4.80 25.70;c132 6.50 24.00;c154 19.00 25.10,26.21\r\nWV9FZ,5LWB,Kitchen,6,6,Yes,\"First person is using a camera to record his homework for a film class, while sitting on a couch.  Second person is being recorded, while eating potato chips and running in place.\",bed;camera;chair;counter;food;package;phone;plastic bag;sofa;table,A young person sitting at a counter eating something out of a plastic bag. Another person in another room filming the first person.;The first person is sitting at the table in the kitchen. The person takes food from a package and eats the food. The second person is sitting on a couch in the living room and taking a video of the first person with a camera.,c123 0.00 30.00;c015 0.00 30.00;c061 3.40 8.90;c063 3.00 8.20;c156 4.40 11.20;c011 0.00 14.30;c011 23.00 30.00;c016 0.00 30.00;c059 0.00 30.00,28.58\r\nT38JM,PO5L,Kitchen,5,7,No,\"A person tidying the kitchen with a broom, takes off their shoes, and laughs.\",broom;floor;shoes;sink;swiffer,A person with a broom cleans the floor. They put the broom down and begin laughing.;someone with a swiffer and then taking their shoes off,c098 0.00 15.40;c099 9.20 15.30;c102 1.50 14.30;c149 14.30 23.20;c127 1.40 15.00,24.75\r\nUQJ58,G6WD,Bathroom,6,7,Yes,A person grasps the window and opens it. The person laughs and then closes the door.,door;window,A person is looking out a window. They then open the window and laugh before closing the door.,c090 3.10 10.40;c092 0.00 6.00;c006 25.60 32.40;c149 7.80 29.30,34.92\r\n3LUUF,UTMU,Dining room,7,7,Yes,A person is stand by a shelf and takes a picture down.,picture;shelf,\"A person walks in, takes a picture from a shelf, then walks out.\",c083 10.10 18.80,33.62\r\nWPRJD,6RE8,Home Office / Study (A room in a house used for work),7,7,Yes,A person is tidying clothes that had been thrown all over a chair.  Then a person is drinking coffee.,blanket;chair;clothes;coffee;cup;mug;shelf;towel,\"The person folded two towels, threw them on the chair and took a drink from an orange mug.;The person folded clothing and threw them onto a chair. They then took a cup from a shelf and drank.\",c106 18.60 32.00;c003 0.00 24.30;c037 0.00 24.40;c110 17.90 26.30;c107 17.80 32.00;c002 0.00 21.60;c004 0.00 21.60;c034 0.00 21.60;c071 8.40 13.00;c070 0.00 12.80;c074 8.40 13.00;c033 10.20 21.30;c075 0.00 12.10,30.88\r\nS027B,WQ8Z,Kitchen,5,7,Yes,A smiling person enters their pantry grasping a broom and a laptop.,broom;laptop;table,The person walks into the room carrying a broom and a laptop. Then the person places down the broom next to a table and places laptop on the table and picks up the broom again.,c098 3.40 14.00;c050 3.40 17.30;c049 9.80 16.90;c009 9.90 16.50,19.17\r\nYXSI7,ZTV2,Recreation room / Man cave,5,7,Yes,\"A person walks through a doorway and sits on a chair, then they start to sneeze.\",chair;couch;door;sofa,\"A person opens the front door and walks into the living room. The person sits down on the sofa and starts sneezing.;The person walked into the room through the door, walked to sit down on the couch, moved something from the seat of the couch, sat down, and proceeded to have a sneezing fit.\",c097 1.60 7.60;c153 13.10 20.70;c008 0.90 6.10;c059 10.20 24.00;c151 9.00 14.40;c006 2.30 8.20;c123 10.20 24.00;c141 1.30 8.30,23.25\r\nE51QT,25TD,Living room,7,6,Yes,\"One person runs in, puts a box and a picture in a cabinet, then joins a person on the sofa to snuggle and smile.\",book;box;cabinet;picture;sofa;table,a person is laying on the couch reading something while a person cuddles up to them and touches the book,c122 0.00 33.00;c152 13.50 26.50;c151 8.60 16.40;c029 13.00 25.90;c032 0.00 33.00;c009 5.40 11.00,31.62\r\n35C4E,YRJD,Bedroom,6,6,Yes,\"A person grabs sits on the floor of a hallway. The person stands up, grabs the doorknob, opens the door, and leaves.\",book;desk;door;floor;light;phone/camera,\"A person sits on the floor and then stands back up. They open the door, walk through, close the door, and then they come back in and walk.;A person sat on the floor.  The person then got up, opened the door, and left.  The person then returned.\",c125 7.50 27.10;c151 5.90 14.20;c008 21.60 30.80;c154 14.10 23.70;c097 21.00 38.40;c018 33.80 40.00,38.50\r\nUGWOG,YRJD,Bedroom,6,6,Yes,A person stops at the hall desk to tidy it up.  The person turns on a light and takes a book off of the desk and puts it into a drawer.,book;closet/cabinet;light;shelf,A person turns on the lights. And then they pick up a book.,c104 10.70 20.10;c026 39.60 49.50;c031 44.20 50.90;c112 49.80 55.00;c105 10.40 20.40;c081 52.00 55.00;c028 52.00 55.00;c030 52.00 55.00,53.83\r\nSIUU5,6RE8,Pantry,5,7,Yes,\"A person opens the pantry, turn on the light and is holding a medicine bottle in their hand.\",cup/glass/bottle;door;hand;light;medicine,\"Person open door, walks in, turns on the light, walked into another room and looked at object in hand.\",c128 7.40 31.00;c104 6.60 12.20;c008 0.60 7.20;c097 2.50 8.40;c107 8.30 31.00,30.29\r\n78XRT,9Y7F,Bedroom,7,4,Yes,\"One person throws a pillow, causing another person who is opening a desk to sneeze.\",bed;chair;desk;pillow;table,\"A person is sitting in a chair at a desk and they sneeze. Another person that is sitting on a bed throws a pillow at the first person.;One person is sitting on a bed snuggling a pillow, they throw the pillow at another person who is looking in a desk, the person at the desk begins sneezing.\",c011 0.00 31.00;c080 7.90 17.00;c153 6.40 12.10;c059 0.00 31.00;c135 0.00 31.00;c149 9.30 31.00;c010 0.00 31.00,30.46\r\nGP5CT,JVLO,Living room,6,6,Yes,A person is laughing while the sweep with a broom then smiling while they drink a glass of water.,broom;cup;floor;glass;water,The person is walking around the house sweeping the floor with a  make shift broom and then the person walks over to a window while smiling and picks up a cup and takes many drinks.;a person sweeps the floor then drinks something,c107 14.90 31.00;c098 0.00 16.80;c102 0.00 16.80;c152 0.10 31.00;c127 0.00 16.80;c106 15.80 31.00;c099 12.80 17.80;c149 12.30 17.40,30.38\r\nUWV5O,9PLL,Recreation room / Man cave,3,7,Yes,A person is eating a sandwich while holding a blanket in the hallway.,blanket;food;sandwich,A person is holding a blanket and eating a sandwich.,c070 0.00 33.00;c065 0.00 33.00;c067 0.00 33.00;c156 0.00 33.00;c061 0.00 33.00,31.71\r\nXZGIR,XXN8,Bathroom,7,7,Yes,A person is sitting on the edge of the tub holding a towel. They grab the phone that is sitting on a nearby table.,phone;table;towel,person sits on a tub holding a towel texting on phone,c033 0.00 31.20;c015 7.50 32.00;c151 0.00 4.30;c011 0.00 29.80;c154 25.20 31.20,30.75\r\nJRSPH,YMXV,Other,5,3,Yes,A person is sitting in a chair in the garage putting on their shoes.  The person sneezes and stands and walks back into the house through the door.,bed;chair;door;shoe,someone taking off their shoes and then walking through a door;A person sitting in a chair takes off their shoes. Then the person gets up from their chair and walks into a bedroom.,c059 0.00 14.20;c154 8.60 15.00;c097 11.50 22.80;c057 0.00 12.10;c008 11.50 17.70,31.67\r\nOEUGC,YA10,Bedroom,6,7,Yes,\"In the bedroom, a person opens a laptop and sneezes. The person then dresses  in warmer clothing before opening a bottle of medicine.\",bed;clothes;cup/glass/bottle;jacket;laptop;medicine;shelf,\"A person picks up a laptop from the bed, opens it, powers it on, and then sneezes.  The person wipes his hand and puts the laptop down.  The person then puts in a jacket that was sitting off the to side, picks up some medicine from a table, and takes a drink.;A person is standing by a bed they pick up a laptop then they sneeze they put on a jacket and walk over to the shelf and take a drink from a medicine bottle\",c129 33.80 37.00;c047 0.00 16.50;c148 14.10 30.20;c153 6.90 12.50;c106 33.80 37.00;c049 11.60 18.30;c050 0.00 6.30;c110 28.00 34.20;c052 0.00 17.40;c002 14.30 20.10;c107 28.00 37.00;c046 12.30 17.00,36.17\r\n4PCSC,0KZ7,Hallway,7,7,Yes,\"One person stands in the doorway, pours a drink and drinks it, then throws clothes to another person awakening from under a blanket.\",blanket;clothes;cup;doorway;floor;glass;hallway;towel,\"A person is standing and pouring a glass of water from a jar, while holding clothes. Another person is lying on the floor in the hallway, covered by a blanket, and wakes up as person 1 throws clothes on them.;A person is standing in a doorway and is pouring water into a glass, they then drink it and throw some clothes at someone who is awakening on the floor.\",c106 4.00 15.00;c108 0.00 7.00;c146 15.00 23.00;c124 0.00 18.00;c003 17.00 21.80;c107 0.00 28.00;c000 0.00 21.40;c070 15.40 20.90;c036 17.00 22.80;c125 20.10 28.00,26.92\r\nHTGZV,2Q9D,Dining room,5,6,Yes,\"The person sitting on the chair was grasping a bottle of medicine, as they were coughing and sneezing over a fine sandwich.\",chair;medicine;sandwich;table,A person sneezes repeatedly while holding some medicine. The person is sitting in front of their sandwhich.,c059 0.00 27.00;c128 0.00 27.00;c153 0.00 27.00;c011 0.00 27.00,25.75\r\nFI2DL,BYF9,Hallway,3,4,Yes,One person runs through playing a game while another walks around a table with a vacuum.,door;floor;table;vacuum,\"One person comes inside and walks down the hall around a table. Another person brings a vacuum into the hall.;One person enters a door and closes it and goes around a table, while another person vacuums around the table.\",c137 11.90 22.00;c138 11.90 21.20;c006 5.50 11.10;c150 7.40 15.60;c008 1.60 9.40;c127 18.00 22.00,20.50\r\nA8T8V,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,The person is snuggling with a towel in the walk-in closet while playing with the phone.,doorway;phone;towel,A person walks in a door and picks up a towel.  The person dries off with the towel and starts playing with a phone.,c016 17.60 34.00;c151 7.50 13.80;c097 0.00 4.60;c038 6.50 16.20;c038 21.20 29.40;c033 5.20 34.00;c035 4.90 9.80;c015 16.50 34.00,32.62\r\nAAS9S,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"After using a vacuum in the hall, a person puts a small towel on the doorknob, then leaves the area smiling.\",doorknob;floor;towel;vacuum;white rag,A person is vacuuming the floor they then take a towel and hang it on a doorknob.;The person in the video is first seen vacuming an area in a back and forth motion. After a couple passes the person then puts the vacuum against the wall and picks up a white rag which he places on a nearby doorknob.,c127 0.00 18.30;c137 0.00 18.30;c034 19.40 29.80;c035 18.90 25.60;c033 19.40 28.60,31.21\r\nJ8JOQ,2RTW,Bedroom,6,6,Yes,Person walks down the hallway and sits at the desk with the phone.  Person picks up the phone and calls someone.  Person then ends call and puts the phone back on the base.,chair;desk;doorway;phone;table,\"A person walks into a room and sits in a comfy chair. The person picks up a phone and calls someone. The person finishes their call and puts the phone down.;There is a person sitting at a desk talking on the phone.;A person walks into a bedroom, and sits down in a computer chair. The person answers a cell phone and then places it on a desk.\",c151 4.80 12.30;c009 26.50 32.00;c019 12.80 26.90;c059 10.00 32.00;c018 1.00 5.30;c015 1.00 32.00;c017 29.10 32.00;c097 0.00 4.60,31.04\r\nPPXPA,2RTW,Bedroom,6,6,Yes,The person sneezing was opening a book by the window.,book;chair;laptop;paper;table;window,\"A person is reading a book on his desk. The person then takes a paper towel and wipes his nose with it.;The person was sitting in a chair reading a book, then sneezed. The person turned the page of the book then used a paper towel to wipe off nose and hands.\",c026 0.50 16.60;c027 3.40 9.20;c028 6.00 15.70;c059 0.50 32.00;c117 1.80 10.50;c153 1.30 8.50;c032 1.00 32.00;c011 0.00 32.00,31.46\r\nTS880,G6WD,Bedroom,3,6,Yes,A person is holding a box and then dressing in the doorway of the bedroom.,box;closet;clothes;doorway;jacket,\"a person walks into a closet with a box then finds a place to put it down and puts on a jacket;a person walks through a doorway with a box, puts on a jacket and zips it up\",c097 0.00 7.40;c042 13.20 23.50;c148 20.30 38.50;c040 0.00 21.10;c002 19.70 26.20,42.88\r\nQ8HQM,5LWB,Bedroom,4,7,Yes,A person smiles as they look at themselves in the mirror. Another person stands in the doorway and sneezes.,doorway;mirror,There is 2 people in this video. 1 is fixing their hair and the other one keeps sneezing and takes steps,c096 0.00 11.70;c152 7.90 13.30;c153 3.30 10.60,24.75\r\nTJBNP,D0RU,Living room,6,6,Yes,One person is fixing something at their desk. Another person is standing and holding a pillow,blanket;desk;drawer;floor;pillow,\"A person is sitting on the floor fixing  a drawer, while another person stands nearby snuggling with a pillow.;A person sitting on the floor fixes a desk drawer. A second person is standing hugging a pillow.\",c078 0.00 38.20;c125 0.00 42.00;c070 0.00 42.00,40.88\r\nK0Z9V,2RTW,Kitchen,6,6,Yes,\"A person is cooking in the kitchen and spills an entire container of pepper. The person starts sneezing repeatedly from the pepper and runs out of the doorway, almost tripping over a chair on the way out.\",dish;door;food;pan;stove;table,\"A person puts a pan on the stove and then brings a plate over to a table. The person then falls towards the door, opens it, and leaves.;This person is cooking in the kitchen, walks to the table, starts sneezing, then leaves the room.;A person is cooking on the stove then proceeds to grab dishes on a table before running out the door.\",c009 5.00 11.00;c008 14.00 19.00;c097 13.70 20.30;c153 8.10 15.80;c147 0.00 5.50;c006 15.80 20.70;c120 0.00 4.60;c141 13.10 19.70,30.71\r\nZG8KO,KQI6,Kitchen,7,7,Yes,\"A person is sitting down, eating some food.  They finish up, smile, and pick up a book and start reading it.\",book;food,\"A person sits on the floor, eating something in a red container before setting the container aside and opening a book.\",,32.75\r\nFQA3W,HR43,Bedroom,4,7,Yes,\"A person in their bedroom is playing with their shoes. Once they have put their shoes on, they start briskly running towards the door and grab onto the doorknob.\",bed;clothes;door;shoe,\"A person, sitting on a bed, picks up a shoe and puts it on.  The person ties the shoe, stands up and grabs the doorknob.;A person is sitting on their bed putting on their shoes, they then grab a doorknob.\",c141 5.90 21.10;c154 18.40 22.00;c135 0.00 22.00;c053 0.00 10.30;c056 0.00 6.50;c055 0.10 21.10;c148 0.00 21.90,21.38\r\nMY7NU,4OHY,Living room,7,7,Yes,A person throws something on the sofa then begins to play with a broom.,broom;cloth;couch;floor;sofa;towel,A person walks around a room carrying a piece of cloth. The person tosses the cloth onto a sofa and picks up a broom. The person walks around sweeping with the broom and swinging it.;a person throws something on a couch then sweeps,c098 8.90 13.50;c100 7.60 13.20;c102 12.90 21.10;c003 4.90 9.80;c127 10.40 30.00;c033 0.00 9.20;c036 4.90 9.90,29.33\r\n0GYRH,XXN8,Bedroom,5,5,Yes,\"A person is holding a book. A person is standing and holding a bag of groceries, smiling.\",bag;book;groceries;jar,\"The person is skimming through the pages of the book, and takes out a jar of something out of the bag.\",c021 18.80 24.10;c020 22.60 29.40;c032 0.20 21.40;c027 0.00 5.20;c026 0.00 33.00;c025 16.20 21.40,31.96\r\nWIOCA,PKND,Stairs,3,5,Yes,Person A is running down the stairs sneezing and encounters Person B talking on the phone while carrying a pair of shoes.,phone;rail;stairs,A person running up a stairs.Another coming down the stair talking on a phone.The person on the steps start laughing.The person on the phone is laughing as well.;A smiling person is running up the stairs. A 2nd person stands on the stairs smiling and talking on a phone,c015 6.10 32.00;c019 11.90 19.50;c152 1.70 32.00;c149 0.20 8.20,30.92\r\n2ZG3U,8718,Kitchen,5,7,Yes,A person is watching television while lying on a sofa. The person gets up and begins pouring soda into a cup.,bottle;couch;counter;cup;frig;glass;handle;sofa;television,\"Person laying on couch gets up, walks into kitchen, opens frig, takes drink out, open it and pour juice in a cup that on the counter.;A person laying on a couch watching tv  jumps up walks to the kitchen opens the refrigerator door get juice out and pours a glass of juice .\",c108 26.30 32.00;c122 0.00 12.80;c154 9.20 14.80;c143 16.00 21.50;c132 0.00 12.60,31.42\r\nP2JL6,6NQX,Stairs,5,7,Yes,\"A person stands atop the stairs, watching something out the window. The person takes a picture with their camera, then leaves.\",camera;phone;stairs;window,\"A person stands by a window, and then looks at a camera and walks up the stairs.\",c092 0.00 6.60;c015 1.80 11.00;c087 0.30 6.90;c016 0.30 6.90,15.25\r\n1SCAZ,4I2W,Dining room,5,6,Yes,The person was tidying the table.  Then the person was watching the light coming through the window.,light;table;towel;window,A person is wiping a table.  The person then walks over to a window and looks outside.,c012 0.00 12.50;c092 9.70 31.00;c033 0.00 31.00;c038 0.00 7.30,30.50\r\nKFHLP,A8P9,Recreation room / Man cave,6,7,Yes,\"A person runs into the room and puts a plate of food on the table.  The person goes back to the door and closes the door, then takes a picture of their food with their phone.\",dish;door;food;phone;picture;table,\"A person runs into the room and throws a plate with food down onto their table, they run back and slam their door with anger, and then walk back and sit down and take a picture of their food with their phone.\",c119 0.00 4.40;c062 0.00 4.50;c009 0.00 5.30;c006 2.50 7.70;c150 0.00 3.90;c015 0.00 19.00;c151 5.40 10.80;c118 0.00 4.00;c016 7.90 17.70,17.75\r\n06NUT,L4ZP,Living room,7,6,Yes,\"A person enters the living room carrying a bag of groceries in one hand and a book in the other.  After sneezing three times, the person throws the book onto the couch in order to reach for a facial tissue.  The person sets down the grocery bag on the floor in order to do a nose blow.\",bag;groceries;tissue,A person is carrying a bag of groceries around the living room. The person goes into a sneezing frenzy and sits the bag of groceries on the floor and uses a tissue on their nose.,c130 15.20 21.20;c020 0.00 20.30;c153 1.20 24.50;c022 16.20 21.30,28.83\r\n2JYRQ,2RTW,Bathroom,6,6,Yes,\"The person was in the bathroom washing the tile floor. While working on the floor, they saw the dust on the window. The person stood up and wiped the window clean, and then promptly walked out the doorway of the bathroom.\",floor;window,\"The person washes the floor, then looks and washes the window.;A person is scrubbing their bathroom floor. Then the person stands up and walks to the window, and starts scrubbing the bathroom window.\",c091 15.40 23.80;c154 9.70 14.90;c127 0.00 13.40;c125 0.00 14.50,28.04\r\nVD6P1,2RTW,Bathroom,6,6,Yes,A person is smiling in the medicine cabinet mirror and grasping a shelf.,cabinet;clothes;drawer;hair;mirror,\"A person is standing in front of a mirror in the bathroom. The person opens a small drawer,  scratches his back and fixes his hair.\",c094 0.00 26.00;c113 0.00 7.50;c152 0.00 26.00;c144 7.00 13.10;c096 0.00 26.00,25.38\r\nSAT9P,2RTW,Bathroom,6,6,Yes,\"Seeing something out the bathroom window, the person pulled up a chair. Watching intently, they grabbed a blanket from the linen closet and began snuggling up. After a little while, the person picked up a book from the counter, and began reading for their homework.\",blanket;book;chair;clothes;drawer;shirt;window,\"A person pulls out a chair and sits in it. They open a drawer and take out a blanket, pu it around their shoulders and open a book.;a man looks out a bathroom window then sits down in a chair, puts on a shirt then reads a book.\",c092 0.00 9.40;c026 19.50 29.00;c030 20.40 25.80;c072 12.30 29.00;c151 6.10 15.30;c027 20.40 29.00;c032 17.40 29.00;c073 11.30 22.00;c059 7.10 29.00;c148 9.00 21.80,28.46\r\n8AKRP,3VLX,Bathroom,7,7,Yes,A person is sitting on the toilet and drinking coffee. They stand up and put the cup into the sink and sneeze.,cup;dish;glass;sink;toilet,A person is sitting on a toilet drinking from a cup. The person puts the cup into the sink and then sneezes.,c106 0.00 6.90;c109 11.60 18.80;c154 10.70 15.90;c153 15.80 21.00;c118 0.00 18.60,19.92\r\n55BOW,KFGP,Kitchen,3,7,Yes,\"One person sits in the kitchen and drinks, then leaves with a pair of shoes under one arm and a stack of dishes.\",bottle;chair;clothes;dish;doorway;glass;shoe;table,\"A person is sitting on a chair. HOlding a bottle of water from which the person drinks from. The person places the bottle on a counter, picks up his shoes stands up and picks up a hat then walks out the doorway;The person in the video is drinking out of a glass, then gathering their things and leaving the vicinity.\",c056 11.50 17.50;c154 12.30 18.70;c011 0.00 16.30;c097 24.10 29.40;c059 0.00 16.70;c119 16.40 23.10;c106 0.00 10.40;c118 17.20 23.60;c000 13.10 20.00;c120 16.00 29.10,32.17\r\nSOI68,FNK4,Bathroom,7,6,Yes,The person is pouring food down the toilet in the bathroom and then running the vacuum over the floor.,box;cereal;doorway;food;toilet;vacuum,A person begins to pour cereal down the toilet then plugs in the vacuum and begins to vacuum the floor.,c062 9.10 17.50;c137 25.40 33.00;c042 11.50 16.60;c043 0.50 6.10;c097 10.90 16.10,31.71\r\nJT6DX,9PLL,Stairs,6,7,Yes,A person is smiling and carrying groceries up stairs. The person grasps the handrail and pauses to smile in a mirror.,bag;groceries;mirror,A person walks up the stairs while holding a bag of groceries. They pick up a mirror and look into it.,c020 0.00 33.00;c093 12.60 33.00;c094 15.30 33.00;c096 13.10 33.00,32.38\r\nHPEE5,KFGP,Hallway,7,6,Yes,The person is leaving through the doorway while holding a stack of homework.,books;clothes;door;hallway;homework;paper;walking,\"A person is walking down a hallway carrying some clothes, they then open a door and walk in and close the door.;A guy is walking down a hallway with books in hand and exits through a door.\",c097 8.60 23.00;c115 0.80 25.00;c008 12.60 21.40;c116 0.00 25.00;c117 0.00 25.00;c000 0.00 25.00;c006 20.30 25.00,24.21\r\nTXQWJ,UO0Z,Kitchen,7,7,Yes,A person is drinking a glass of water in front of a refrigerator in a kitchen. The person then walks to the counter and starts unpacking groceries.,bag;counter;cup;food;glass;groceries;light,\"The person is standing in the kitchen, drinking something from a cup. The person takes some items from a grocery bag on the counter, then wads up the bag.;A person drinks from a glass, walks over and puts it on the counter and starts taking groceries from a bag.\",c106 0.00 8.50;c109 5.30 11.00;c021 7.60 12.50;c063 7.90 17.60;c130 7.90 17.60,18.00\r\n1DGC9,0KZ7,Bathroom,7,6,Yes,\"A person awakens in the bathroom. They were asleep in the bathtub. They pick up the pillow they were using, grab their phone from the bathroom counter, leave the room and close the door behind them.\",door;floor;phone;pillow;table,A person awakens in a closet snuggling their pillow.  They stand up and grab their phone off a table and then leave through a door.,c076 6.80 25.00;c079 3.80 9.40;c008 20.50 25.00;c154 9.10 14.10;c078 0.00 14.80;c015 14.20 24.10;c006 18.60 25.00;c146 0.00 7.80;c097 19.30 25.00;c018 14.30 21.00;c124 0.00 5.80,24.04\r\nZZ89F,BYF9,Kitchen,5,7,Yes,A person is watching the doorway. The person then opens the refrigerator and begins pouring a drink.,dish;door;glass;refrigerator,A person walks into a kitchen through a doorway and opens the refrigerator. They take out a beverage and pour it into a glass.,c097 0.00 9.60;c142 13.60 20.60;c143 7.40 14.00;c008 7.40 13.50;c108 22.20 36.00;c118 21.30 26.50,34.62\r\nOO2SF,KFGP,Closet / Walk-in closet / Spear closet,3,6,Yes,\"One person stands in front of a cabinet and undresses, then leaves with a book and a box.\",book;box;cabinet;clothes;doorway,\"This person is taking off a shirt, grabs a box, and walks down the hallway.\",c113 0.00 5.10;c040 26.40 32.00;c155 0.90 28.70;c097 27.90 32.00;c043 26.20 31.00;c001 23.00 28.10,30.79\r\nLX54K,9PLL,Stairs,6,6,Yes,A person is lying at the bottom of the stairs smiling while picking up dropped groceries and a towel.,food;groceries;towel,A man is falling asleep on a set of stairs and then holds his food.,c033 0.00 33.00;c152 16.70 33.00;c063 18.60 26.30;c035 14.90 22.00;c061 19.90 33.00,31.92\r\n4JKLQ,F56T,Pantry,7,6,Yes,A person is walking into the pantry with some food.  The person sets the food down before leaving with some clothes.,cabinet;clothes;floor;food;groceries;shelf;shirt,\"A person opens a cabinet and puts some food inside, then takes out one item and places it on the floor. They pick up clothes from the floor and walk away.;A person walks into the kitchen, places some items in a cabinet, closes it, then picks up a shirt and folds it.\",c000 25.30 35.20;c061 0.40 15.20;c063 10.20 19.60;c154 21.70 27.10;c113 1.50 8.30;c002 23.90 35.10;c062 5.00 18.40;c112 16.40 24.80;c004 23.90 35.90;c114 6.00 25.10;c127 24.10 35.60;c081 6.40 18.40;c130 6.20 25.70,34.75\r\nPB7PQ,UTMU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person stands in front of a mirror, then picks up a book, and opens the front door.\",book;cabinet;dog;door;floor;hair;mirror;phone,\"The person is fixing their hair, when finished the person picks up a book then let's the dog inside.;a person looks in the mirror then grabs something off the floor and opens the door to let a dog in\",c026 9.30 29.70;c096 0.80 10.70;c141 14.40 28.20;c032 8.40 25.00;c008 14.70 21.30;c144 0.80 10.30;c015 8.70 29.40;c006 20.80 27.70;c017 24.60 29.80;c018 7.30 13.50,30.58\r\nWF3NY,XXN8,Bedroom,2,7,Yes,\"A person is holding a broom as the person sweeps in front of the wardrobe. Then, opening the cabinet, the person reaches in to grab something.\",broom;closet;clothes;floor;wardrobe,A person walks to a closet and fusses with a broom then opens the closet and removes clothing,c113 16.00 23.00;c098 0.00 18.10;c099 13.80 19.90;c098 0.00 6.50;c102 0.00 19.10;c002 18.20 25.20;c127 7.60 19.10,31.04\r\nTBPLW,EIO2,Laundry room,6,7,Yes,A person is holding clothes. The person opens the dryer and put their shoes inside.,clothes;doorway;laundry machine,A person walks into a laundry room and puts clothes into a machine and turns the machine on.,c000 0.00 32.00;c005 17.90 32.00;c097 0.00 32.00,30.96\r\nJY6TC,1TZV,Bedroom,7,6,Yes,\"A person awakens in their bedroom. They dress, grab a glass, and their homework and leave.\",bed;cup;doorway;homework;mirror;paper/notebook,There is a person laying in bed.  That person then gets up and takes some homework and something off of a dresser.;A person is lying on the bed they get up go to the dresser pick up some paper and a glass and leave the room.,c110 10.60 16.40;c146 0.00 6.80;c154 8.30 16.20;c134 0.00 4.00;c116 10.00 21.00;c107 10.80 21.00;c135 0.80 9.70;c096 7.40 14.10;c097 14.80 21.00,20.12\r\nTMTAC,UTMU,Kitchen,6,7,Yes,A person is seen throwing groceries on the counter. They begin opening a bag and pull out some shoes,bag;shoe,A person puts a bag on the counter and then takes shoes out of the bag and walks away.,c020 2.30 8.90;c053 9.00 21.70;c022 4.50 9.70;c021 6.80 11.40;c056 7.80 13.40,21.96\r\nW6AXV,KFGP,Bathroom,3,6,Yes,\"A person pours out the last bit of coffee from their mug, then washes the mug. The person walks through the doorway to leave.\",coffee;mug;sink,The person was  holding coffee cup standing by the  bathroom sink empty the coffee cup washed the cup and walked out of the bathroom.;A person washes a coffee mug in the sink.,,28.46\r\nKJNME,PO5L,Living room,6,6,Yes,A person is holding a sandwich in a dining room. They laugh at something on the television.,fan;sandwich;television,\"A person walks into the room holding a sandwich, makes some jerky movements, turns around and walks out.\",c067 3.20 16.80;c132 3.10 12.70,17.12\r\n0CESB,M80J,Bedroom,4,6,Yes,A person watches themselves while standing in front of a mirror. The person turns and picks up a blanket from the table.,blanket;mirror;table,\"A person stands in front of a mirror playing with their hair.  They pick up a blanket from a table, then walk away.\",c096 0.00 22.80;c070 21.30 32.00;c075 23.30 32.00;c073 20.00 27.00,30.79\r\nV2JOF,UTMU,Laundry room,6,6,Yes,A person in their laundry room holding a blanket turns on the light smiles before putting the blanket on a shelf.,blanket;clothes;light;shelf;washing machine,\"A person stands in the laundry room next to the washer with a blanket in arms. The person stands looking at the camera, and turns on a light before turning around and loading the washer.\",c104 2.60 8.80;c000 0.00 22.20;c001 15.40 26.50;c081 11.50 26.50;c071 11.50 26.50,35.00\r\nO7NI6,Q4IF,Living room,4,5,Yes,\"A person opens a door and walks over to a bed, laying some folded up towels on it. They pick up one and snuggle it.\",blanket;door;floor;pillow;towel,A person enters a  door carrying an armful of blankets. The person tosses them onto the floor and then sits down beside them. The person snuggles one of the blankets while smiling.;A person comes into a room carrying a blancket and a pillow they sit the blanket on the floor then they sit on the floor and snuggle the pillow.,c071 1.50 11.00;c076 9.00 24.00;c008 0.00 4.30;c151 2.00 13.50;c125 8.90 24.00;c078 11.00 24.00;c097 0.00 4.90;c080 1.50 13.40;c126 1.50 13.40;c070 0.00 12.30;c141 0.00 4.60;c077 0.00 10.90;c033 9.80 24.00;c036 0.00 10.70;c034 0.00 10.70;c037 2.60 12.40,22.58\r\nLVGX3,YA10,Kitchen,7,7,Yes,\"A person is cooking while standing at the stove. They put the lid on the pot, and step away while beginning to undress. They stop undressing when they step on a pillow, pick it up, and start playing with it while leaning on the refrigerator.\",clothes;floor;food;fridge;pillow;pot;refrigerator;shirt;stove,\"This person is in the kitchen, stirring on on stove, takes shirt off, picks up pillow off of floor, walks over to fridge, leans on it and tosses pillow around in air.;A person is cooking on a stove. They then begin undressing, and pick up a pillow from the floor. They lean on a refrigerator and play with the pillow.\",c076 13.60 32.00;c147 0.00 7.80;c155 8.90 15.20;c079 15.70 26.40;c080 21.60 26.90;c080 24.00 30.00;c127 15.90 23.30,31.08\r\n7HEWH,ZAWX,Kitchen,4,6,Yes,A person is sitting down in a kitchen while drinking coffee. The person begin standing up after a few seconds and walks over to the sink to start washing dirty dishes.,chair;coffee;cup;dish;sink;table;water,A person is sitting down on a chair drinking from a coffee mug. The person stands up and walks over to the kitchen sink and washes a plate.;A person is sitting in a chair while drinking from a cup. The person then washes a dish in the sink.,c118 0.00 17.00;c106 0.00 16.00;c109 12.00 18.70;c059 0.00 19.60;c120 18.60 24.40;c107 0.00 16.30;c154 14.60 21.60;c121 17.50 32.00;c009 12.30 18.70;c119 12.30 18.70,30.62\r\n4X2JC,D0RU,Living room,6,6,Yes,\"A person is snuggling a blanket on the ground.  They stop, pick up some food, and start eating it.\",blanket;bowl;floor;food,A person is laying on the floor with a blanket covering them. The person has a bowl of food next them. The person begins eating the food in the bowl.,c061 19.50 32.00;c072 0.00 32.00;c156 20.10 32.00;c124 0.00 25.20;c063 22.50 32.00;c125 19.80 32.00,31.12\r\nCEM0H,2RTW,Living room,6,6,Yes,A person is holding a broom and looking at a picture. They drink some water.,broom;cup;glass;painting;picture;table,\"A person is holding a broom while looking at a picture on top of a tv they take a drink of water.;A person is standing in front of a painting holding a broom. The person picks up a glass of water, drinks from it and then places it on a table.\",c098 0.00 19.10;c106 15.60 26.10;c088 0.00 31.00;c009 18.20 29.50;c109 28.50 31.00;c107 28.50 31.00,30.50\r\nAWCQN,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person closes the door to their house's entryway. The person puts down their laptop, then leaves through the door from which they entered.\",book;door;homework;laptop;paper;table;window,\"A person walks into his house. The person stacks a laptop on a desk. Then, the person walks out of the house.;A person grasps a door as they enter a room holding a laptop. They place it on a pile of homework lying on a table and leave the room.\",c008 20.80 28.20;c154 18.00 23.80;c117 9.10 16.20;c028 9.10 16.20;c009 10.90 16.20;c012 12.20 22.90;c026 12.80 20.50;c141 6.50 12.20;c116 21.40 27.70;c006 22.90 32.00,30.71\r\nQLKSV,6RE8,Bedroom,6,6,Yes,One person is wrapped in a blanket eating and drinking at a small table.,bag;beverage container;blanket;chair;cup/glass/bottle;food;medicine;table,A person is sitting near a table drinking a beverage and eating something.,c011 0.00 31.00;c156 23.20 28.70;c129 0.00 9.60;c020 0.00 9.50;c021 0.00 5.00;c072 0.00 31.00;c059 0.00 31.00;c106 11.10 16.00,30.46\r\n7KA3L,CCI9,Stairs,4,6,Yes,A person with a blanket wrapped around them is grasping a bottle of medicine. They read the label and smile.,blanket;cup/glass/bottle;medicine,A person is wrapped in a blanket looking a bottle of medicine while sitting on the stairs.,c072 0.00 33.00;c128 0.00 33.00;c152 14.00 33.00;c107 0.00 33.00,32.00\r\nVE52Z,CCI9,Kitchen,6,6,Yes,A person in the hallway holding a sandwich. The look in the mirror and begin throwing the sandwich around.,chair;doorway;floor;food;mirror;sandwich,A person walks in the room eating a sandwich.  They look in the mirror and then throw the sandwich on the floor.;A person walks into a room and crosses the floor to a mirror.The person takes a bite of a sandwich. The person throws the food to the floor.,c065 4.40 10.70;c064 30.70 36.00;c156 23.40 29.00;c061 0.00 36.00;c096 4.00 29.50;c126 26.00 36.00;c097 0.00 5.60;c059 0.00 36.00;c067 0.00 36.00,35.46\r\n9YRHF,DXDI,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is sneezing then throwing a towel on the floor and finally drinking coffee in a Closet / Walk-in closet / Spear closet.,clothes;coffee;cup;floor;towel;wardrobe,A person is standing in a closet holding a towel and a cup of coffee. The person sneezes. The person throw the towel on the ground.,c033 0.00 9.00;c036 4.70 10.00;c106 8.50 24.00;c107 0.00 24.00;c126 4.70 9.90;c153 0.00 5.30;c003 3.40 10.50,23.50\r\nQ3QC8,XXN8,Bathroom,3,7,Yes,A person puts their laptop down on the sink.  The person watches the person's reflection as the person smiles into the mirror.,laptop;mirror;sink,A person puts a laptop down by the sink then smiles into a mirror.,c094 5.90 23.60;c049 1.00 8.40;c152 6.00 23.60;c047 0.00 7.90,29.96\r\nRS4ZC,9PLL,Hallway,7,7,Yes,\"A person is eating food, and takes a picture of it. The person runs down the hall.\",doorway;food;phone/camera;picture,\"A person eats a snack, then takes a cellphone picture with it before leaving the room.\",c087 10.40 20.10;c061 0.00 7.70;c156 0.00 4.00;c150 18.90 26.20;c097 18.10 25.50;c015 7.10 22.10;c016 7.10 22.30,30.92\r\n3WD4E,9PLL,Bathroom,6,7,Yes,A person is tidying up some items that are lying around then puts a laptop in a bag.,bag;counter;floor;laptop;pants;person;shelf;sink;table;toilet;trash can,This person appears to be tidying up in the bathroom and grooming himself.;Someone grabs things from the floor and puts them on the counter. Then they grab a bag.,c154 0.10 5.50;c009 0.60 13.10;c081 1.20 7.10;c081 6.30 11.20;c020 22.20 36.00;c127 0.00 17.90;c023 10.50 15.80;c049 30.50 36.00;c022 11.80 17.90,35.25\r\n8XJUM,D0RU,Closet / Walk-in closet / Spear closet,5,1,No,A person opens up their closet and places some groceries on a shelf. The person realizes that they need to fix the shelf soon.,shelf;tennis racket,Person grabs a tennis racket from a shelf and then walks into a dining room. Person rearranges items on another shelf.,,38.33\r\nZ6HEA,ZAWX,Laundry room,6,5,Yes,A person runs into the laundry room and throws a towel in the washing machine. The person sits as a desk and drinks and cup of coffee and eats a sandwich.,chair;clothes;cup/glass/bottle;doorway;floor;food;sandwich;towel;washer,\"Person goes into the laundry room to wash some clothes. They then  proceed into the kitchen, sit down, and then begin to eat.\",c034 0.00 6.60;c151 0.00 16.40;c005 2.60 11.40;c067 16.90 32.00;c033 0.00 6.80;c063 16.00 21.80;c125 9.10 16.20;c106 18.30 24.30;c156 20.40 26.90;c097 7.70 13.30;c059 0.00 13.90;c061 16.00 32.00;c065 16.60 32.00,30.92\r\nWWCQE,25TD,Bathroom,6,7,Yes,A person is dressing and putting on shoes.  Then a person is grasping their homework off the counter while leaving.,clothes;doorway;hair;homework;mirror;paper/notebook;shoe;table,A person is sitting on a toilet while tying their shoes. They get up and pick up their homework off the table and walk out of the room.,c055 0.00 25.20;c154 20.60 26.40;c097 27.40 31.00;c000 0.00 6.30;c096 22.00 27.80;c144 22.10 27.60;c117 25.00 29.90;c115 24.50 31.00,30.46\r\nCEZ0A,WQ8Z,Kitchen,6,7,Yes,A person is laughing while on the phone then starts opening a window.,phone;window,A person is walking around talking on their phone in a kitchen.,c092 11.00 18.00;c019 0.00 24.00;c018 0.00 24.00,23.46\r\n287ST,25TD,Closet / Walk-in closet / Spear closet,6,7,Yes,A person undresses and puts their clothing into a bag. They notice a book on the floor and kneel down to inspect it. They stand back up and look at themselves in the mirror on the door.,bag;book;closet/cabinet;clothes;door;floor;mirror,\"Young woman in a closet placing an item in a bag and looking at a book, then turning to look at herself in a mirror.\",c021 4.30 10.20;c027 19.30 26.40;c096 27.20 36.00;c001 3.10 19.60;c154 27.00 32.70;c026 20.20 31.50;c029 20.90 29.80;c114 0.00 17.40;c004 8.10 16.30;c125 16.30 32.40,34.88\r\nDC4XY,6RE8,Dining room,7,7,Yes,A person is seen walking past a chair. They then begin sneezing and they sit in the chair with a mirror in their hands,hair;mirror,A man is walking and sneezes. The man sits down and looks at himself in a small mirror.,c093 0.00 30.70;c059 9.90 31.20;c153 4.90 11.40;c151 8.30 14.30;c144 21.20 30.50;c096 10.50 30.50,35.00\r\nHETLN,3VLX,Stairs,6,7,Yes,A person is sitting on the stairs with some food. The smile as they drink from a glass.,box;crackers;cup;food;staircase,A person is sitting on a set of stairs holding a box of crackers and a cup of water. The person is smiling as they drink from the cup.,c061 1.20 8.90;c106 5.60 17.00;c107 6.60 17.10;c152 5.50 13.00;c040 0.00 8.30;c042 4.00 9.40;c043 0.40 7.30,20.62\r\nJ8KES,C7O9,Laundry room,7,7,Yes,A person is holding a coffee cup while a other person is closing the doorway.,coffee;doorway;glass,A person is closing a door while talking and another person is drinking coffee from a glass,,30.75\r\nU9LKA,Z68L,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is in a office watching their laptop that is on their desk, they then get up open the door and walk out.\",chair;desk;door;laptop;table,\"person sits down in front of laptop, stands up and goes through doorway\",c008 14.60 21.40;c014 0.00 12.80;c154 9.70 24.40;c052 0.00 10.70;c051 0.00 10.70;c151 0.00 3.00;c059 0.00 13.30;c011 0.00 13.40;c141 14.50 20.10;c097 18.50 24.00,25.67\r\n10AEA,KI4T,Laundry room,5,7,Yes,\"A person throws a stack of towels onto a desk. After the stack falls over, the person fixes it.\",table;towel,A person throws some towels before folding them and places them on a table.;A person throws some towels on the ground and then picks them up and folds them.,c009 6.40 16.10;c035 0.00 3.50;c037 4.90 31.00;c034 8.00 31.00;c036 0.60 6.00;c033 0.00 4.80,30.33\r\n77SCM,ZSRZ,Hallway,5,7,Yes,A person leaves through the doorway while grasping a laptop.,doorway;laptop,A person standing holding a laptop closes the lid.The person proceeds to carry the lap top and walk out of the room.,c046 0.00 3.10;c047 0.20 5.60;c097 1.40 6.50,9.38\r\nBYSQ7,LWUV,Bedroom,4,7,Yes,\"A person sits in a chair while drinking water. The person then starts grasping their shoes, takes off their shoes, and dance around the chair.\",chair;cup;shoe,\"Person sits down and begins to drink from a cup, and then gets up and starts dancing around the chair with a shoe in hand.\",c106 0.60 14.90;c053 24.70 37.10;c059 0.00 5.70;c151 0.00 4.60;c154 14.20 27.20;c057 27.30 34.30;c110 1.20 5.40;c109 14.10 18.40,36.88\r\n81DW6,28B0,Kitchen,6,7,Yes,A person is tidying up their refrigerator. Another person holding a camera asks them to turn around. The first person does and smiles for a photo.,camera;phone;refrigerator,A person walks over to a fridge and opens it and a person with a camera walks over and takes a picture of the person by the fridge.,c015 6.70 18.00;c143 0.00 22.00;c154 13.10 19.00,21.08\r\nPZ2W1,18IT,Dining room,6,7,Yes,A person in a dining room turns on the light while drinking from a glass sits at the table and looks at their phone.,cup;glass;phone;table;water,\"A person is drinking a glass of water. Then they begin playing with their phone while sitting on the table.;A man is drinking water then sits on the table and continues to drink.  He picks up his phone and looks at it, then scratches his chest.\",c016 18.50 38.00;c106 2.10 9.20;c010 9.30 38.00;c018 18.40 23.30;c015 18.70 38.00,36.96\r\nZFQNZ,WQ8Z,Kitchen,6,6,Yes,A person cooking in their kitchen opens their refrigerator and gets some food from it. They lie it near the stove.,counter;food;refrigerator;stove;table,\"A person is looking in a refrigerator and take out some food, they then begin cooking some food at a stove.;A person opens the refrigerator and takes something out. They place it on the counter and then start cooking on the stove.\",c142 8.90 13.80;c009 13.20 18.30;c062 11.50 17.30;c147 14.00 23.10;c143 1.50 7.80;c061 9.80 18.30;c063 9.90 15.30,28.29\r\nWQSYC,UTMU,Bedroom,4,3,Yes,Person is sitting on sofa smiling doing homework and drinking from bottle of water.,bed;book;cup/glass/bottle;homework;paper;water,A person lies on a bed and works on their homework and then drinks some water from a bottle.;a person sits in bed and reads a book then drinks water,c106 13.50 21.00;c145 5.00 12.80;c135 0.20 30.00;c032 3.10 12.50;c026 0.00 13.80;c027 2.70 7.10;c134 0.90 30.00;c025 26.70 30.00,29.12\r\n0DJ6R,UO0Z,Living room,7,7,Yes,\"A person opens a desk drawer and takes something out. The person goes to leave, but pauses in the doorway.\",doorway;drawer;phone,\"A person is standing in a kitchen, takes a phone out of a drawer, stands in a doorway and plays with the phone.;A person opens a drawer and take out a phone. The person then walks over and stands in a doorway, and starts using the phone.\",c016 2.70 16.60;c015 2.00 18.00,16.83\r\n7QQJ1,9Y7F,Living room,6,7,Yes,\"Two people are holding hands, snuggling under a blanket on a sofa.\",blanket;hand;paper/notebook;sofa,People playing on the sofa with a blanket around both one has book on the lap looking at it.,c123 0.00 32.00;c072 0.00 32.00;c070 0.00 32.00;c115 0.00 32.00;c152 0.00 32.00,30.58\r\nRE1M6,DXDI,Home Office / Study (A room in a house used for work),6,6,Yes,A person is standing next to a desk and arranging a pile of homework. They take a pencil and fix a mistake they spot in their work. They leave the room and turn off a light.,desk;doorway;light;paper;pencil;table,A person is straightening a stack of papers on the desk. They then pick up a pencil and write on the paper. They then turn off the light and leave the room.,c115 1.30 10.10;c145 10.20 22.50;c014 10.20 23.00;c105 21.60 26.10;c097 23.00 28.00;c117 0.00 22.70;c116 0.00 22.70,27.04\r\nNVKDC,OUKK,Entryway (A hall that is generally located at the entrance of a house),3,6,Yes,\"A person stands in the entryway, holding a bag. The person puts the bag onto a shelf, and then sneezes.\",bag;shelf,A person puts a bag down on a shelf. They then walk away.,c020 7.00 13.20;c081 8.80 14.00;c153 10.20 15.30;c022 8.50 14.10,16.83\r\nTKRIZ,8IOD,Hallway,6,7,Yes,A person dressing in a hallway is putting a picture on a desk.,clothes;desk;doorway;picture;table,A person is getting dressed and walks a picture over to their desk.,c084 22.90 31.90;c009 27.60 31.90;c148 0.00 25.60;c097 22.20 27.80;c001 3.40 21.00;c086 22.70 32.00;c083 21.90 26.90,31.42\r\nHYRBL,QB52,Home Office / Study (A room in a house used for work),5,5,Yes,A person is drinking a glass of water. Then they throw a pillow across the room in the study.,chair;cup;dish;glass;pillow;table,a person sits in a chair and takes a drink then he moves a pillor;A person is sitting in a chair and taking a drink out of a glass they pick up a pillow and throw it to the side then they pick up the glass and take a drink,c106 0.00 17.80;c080 18.50 30.10;c059 0.00 31.00;c118 0.00 16.30;c009 10.40 16.00;c077 19.10 26.80,30.12\r\nPZQIN,XXN8,Kitchen,7,7,Yes,\"A person opens the pantry door. The person stands there for a moment, holding a sandwich in a paper towel, before closing the door and leaving.\",door;food;sandwich;towel,A person is holding a sandwich in a paper towel. They close a cabinet and leave.,c006 15.40 22.60;c067 0.00 23.50;c008 0.00 3.40;c061 0.00 22.60,30.42\r\n06CKN,25TD,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person opens a cabinet door, throws their sandwich onto a shelf, and closes the door.\",bag;cabinet;closet;door;food;sandwich;shelf,\"A young person is checking something in a plastic bag and then puts it in the closet.;A person smelling a sandwich, throws it down, then opens the closet.\",c113 8.60 25.70;c006 17.60 26.00;c081 12.50 19.40;c113 7.20 14.60;c064 13.40 18.40;c061 0.00 10.70;c062 12.40 18.40;c112 15.20 26.00,25.42\r\nYPTHX,0RNU,Garage,7,7,Yes,A person takes a phone from a bag and puts it in their pocket. They pour a glass of water and take a drink.,bag;cup;glass;phone;water,A person grabs a bag and takes out a phone. The put the phone in their pocket and pour a glass of water and drink it.,c020 0.00 15.70;c015 4.30 17.70;c106 19.50 38.00;c021 0.00 10.30;c017 6.70 18.10;c107 15.80 38.00;c022 0.00 10.70;c018 6.90 17.70;c022 5.80 12.00;c018 1.90 12.40,36.92\r\n7XJLH,OUKK,Kitchen,2,4,Yes,\"A person is cooking dinner in the kitchen. The person takes a drink from a glass of water, then takes out a camera and snaps a picture of their meal.\",camera;cup;food;glass;picture;water,\"a man enters the kitchen, opens the lid of a pot and sits. he then takes a cup and takes a drink from it\",c106 16.90 24.10;c147 1.30 19.90;c109 19.60 24.80;c110 16.50 22.30,29.71\r\nVYMZC,P6LJ,Living room,5,7,Yes,\"A person turns the light off as the person leaving. Then, walking back in, the person grabs their mug of coffee from the table.\",coffee;cup;light;table,A person walks over to a lamp and turns it off. They then pick up a mug from the coffee table and leave the room.,c105 4.40 11.90;c110 15.50 22.70;c107 16.80 27.40,30.33\r\nK8AUX,4I2W,Pantry,7,7,Yes,\"A person is standing in the pantry drinking a cup of coffee.  The person sneezes and laughs, then grabs some dishes and walks out.\",bag;box;coffee;cup;dish;doorway;food;glass;groceries;items,The person is drinking from a cup and laughing.  They then take items out of a box and walk out the door.;A laughing person is drinking some coffee from a glass.  They pick up a bag  of groceries and some food and walk out the room through an open doorway.,c106 0.00 10.60;c023 20.50 30.10;c107 0.00 31.00;c149 6.30 15.80;c097 22.40 31.00;c110 0.00 31.00;c063 22.10 27.00;c120 18.00 23.20;c109 15.20 20.00,29.54\r\nFYP5L,YMXV,Bedroom,4,6,Yes,A person runs in laughing and takes shoes down from a shelf.,door;laptop;shoe,\"There is a person running down a hall and into a room.  Once in that room, that person looks at an open laptop on a desk and picks up a pair of shoes off the floor.;A person runs down a hall, they walk into a room and take some shoes out from behind a door.\",c053 18.50 32.00;c150 0.00 9.20;c056 17.40 32.00;c097 3.60 11.90,31.25\r\nC6B3T,KQI6,Living room,7,7,Yes,A person is sneezing after drinking a glass of water then smiles at their laptop lovingly.,bottle;desk;floor;laptop;table;water,\"A person is sitting in front of a laptop, takes a drink of water, and laughs at what is on the screen of the laptop.;A person sits at a desk working on a laptop, they take a drink of water then wash their face with some and begin laughing.\",c051 0.00 32.00;c106 3.80 10.80;c152 14.60 20.90;c149 24.10 29.00;c011 0.00 32.00;c052 0.00 5.10;c125 0.00 32.00,31.21\r\nNB42S,S053,Kitchen,5,7,Yes,One person tidies up by putting away food in the refrigerator and throwing out old sandwiches.,dish;food;refrigerator;sandwich,Person in the kitchen going back and forth from the refrigerator making something.,c143 1.10 31.00;c062 0.00 10.10;c068 0.00 10.70;c119 0.00 20.00,30.38\r\n0HD0T,4I2W,Bedroom,6,6,Yes,\"A person is tidying up items in the garage, when another person shows up in the doorway and smiles.  The person walks in and opens the cabinet, takes out a pillow, and puts it on the floor.\",cabinet;closet;doorway;drawer;dresser;floor;pillow;stool;table;towel;toy,A person using a rag to dry and put the finishing touches on a freshly painted stool. Another person enters the room and retrieves a pillow out of a drawer.;A person brushes off a table with a towel while another person stands in the doorway. They continue to brush and clean with the towel as the other person walks in the room and opens a cabinet. The other person pulls out a toy from the cabinet and throws it on the floor.,c079 18.70 25.30;c097 11.90 19.00;c126 23.10 28.20;c113 17.10 23.30;c038 0.00 28.40;c033 0.00 30.00;c013 0.00 30.00,29.25\r\nPVBUM,KFGP,Hallway,6,6,Yes,A person leaves their laptop by their shoes in the hallway. They walk back and forth.,floor;laptop;shoes,person walked near shoes and kept laptop near the shoes and walking on the floor;A person is walking down the hallway. A person puts something on the floor.,,28.12\r\n9CDB6,9Y7F,Stairs,6,4,Yes,Person playing with his/her broom while another person puts a broom away.,broom;floor;stairs;towel,\"A person is waving a broom around, a second person comes and takes it and throws it.;A person is sweeping the stairs while wearing a towel. Another person runs up, takes the broom, and throws it in the air.\",c098 0.00 11.20;c101 2.30 15.40;c102 13.40 22.60;c150 15.80 28.80;c127 2.00 13.90,30.46\r\nLT13Z,EIO2,Living room,6,6,Yes,A person is undressing by the mirror and another person is fixing the door.,clothes;comb;door;hair;mirror;shirt,The person in the orange shorts goes to a mirror and fixes his hair and then proceeds to take their shirt off. The person on the left is fiddling with the door handle.;A couple of people in a room.One person is combing their hair in a mirror .The other person is opening and closing a door.,c007 0.60 31.50;c096 4.80 28.00;c155 10.10 21.20;c144 8.30 14.00;c002 24.60 32.00;c000 15.20 31.50;c141 0.00 31.50,30.75\r\n2WX2Z,DBGJ,Basement (A room below the ground floor),6,6,Yes,\"One person walks in, grasps a pair of shoes from a shelf by an old desk, then leaves smiling.\",closet/cabinet;desk;door;shelf;shoe,A person enters the laundry room to reach into a cabinet and remove a stuffed animal from the shelf.,c082 4.20 11.10;c152 7.60 12.70;c056 2.80 14.00;c113 2.20 11.10;c053 2.20 11.10;c008 2.30 8.60;c112 5.90 11.70;c006 6.10 11.30,12.96\r\n1ROX7,P3TI,Dining room,7,7,Yes,\"A person is eating, then wiping a towel over a glass, then throwing a ball in a dining room.\",chair;food;glass;table;towel,\"A person is sitting at a table eating some food, they then grab a towel and begin tidying a glass. They throw the glass.;A person is sitting at a table eating and throwing a ball.\",c156 0.00 13.40;c059 0.00 37.00;c011 0.00 37.00;c038 11.60 24.30,36.08\r\nSYUNE,1TZV,Garage,6,6,Yes,\"A person is taking a glass of a shelf, then undressing and putting the glass back on the shelf in a garage.\",chair;clothes;cup;glass;shelf;table;water,\"A person is holding a glass of water while taking off their jacket, when they are done the set the glass of water on a table.;A person is in the garage. The person picks up a glass from a shelf, looks at it, then proceeds to remove a jacket. The person puts the shirt on a chair and the glass back on the shelf.\",c107 0.00 20.00;c110 0.00 4.60;c155 3.10 14.20;c109 14.40 20.00;c081 14.40 20.00;c001 11.60 17.60;c000 8.30 16.50,18.67\r\nZ1DBB,P6LJ,Bedroom,6,7,Yes,A person is grasping a sandwich in their hand. Then the person picks up a pile of clothes and begins throwing them onto the table.,clothes;counter;dish;food;hamper;hand;plate;sandwich;table,A person walks across the room and back. Then they go back across the room and pick up a plate of food and eat from it. Then they brush themselves off. Then they put the plate back on the counter. Then they brush themselves off and take clothes out of a hamper and throw them across the room.;a person eats from a plate in a bedroom and then tosses some laundry from a basket.,c003 22.70 44.40;c065 12.80 24.00;c156 12.40 23.50;c002 26.30 39.30;c119 18.00 25.30;c118 11.50 24.40,44.83\r\n6FYXS,EE32,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person walks to the closet and puts a pillow inside the closet.  The same person than grabs a bag from the floor and leaves the room, smiling.\",bag;closet/cabinet;door;floor;pillow,A person opens a closet door and takes out a pillow. They pick up a bag from the floor while snuggling with the pillow and walk out of the room.,c078 7.40 17.20;c079 5.10 12.50;c020 11.00 18.50;c006 8.00 13.80;c076 6.50 18.50;c008 1.60 7.90;c113 1.10 8.70;c023 10.40 15.30;c112 7.80 13.90,19.62\r\nUNKXB,0KZ7,Kitchen,6,7,Yes,A person is eating a sandwich and cooking at a stove.,food;pot;sandwich;spoon;stove,A person is eating a sandwich while cooking food on a stove.;A person is standing in a kitchen eating a sandwich and stirring a pot with a spoon.,c065 0.00 25.00;c156 0.00 25.00;c147 0.00 25.00;c061 0.00 25.00,23.67\r\nGMSTS,9PLL,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"One person gets dressed into clothes in the entryway, then leaves with a book from a desk.\",clothes;paper/notebook;shirt,A person is holding a short and dressing themselves with it and then proceed to walk away.,c148 0.90 23.30;c117 29.40 34.30;c000 0.00 9.90,34.25\r\nT84EQ,28B0,Bedroom,4,7,Yes,A person is lying on a pillow covered with a blanket. The person begins drinking soda from a can.,bed;blanket;cup;glass;pillow;soda,\"A person is laying in bed with a blanket and pillow, they then awaken and take a sip of soda then lay bak down.;A person is laying in a bed under a blanket and reaches for a drink on the night stand. The person takes a drink and goes back  to sleep.\",c072 16.90 24.40;c106 4.30 16.90;c134 0.00 4.80;c146 0.80 7.00;c109 13.30 18.10;c110 4.00 8.60;c078 15.50 24.80;c070 14.50 20.70,29.42\r\nWGJ8T,6RE8,Living room,6,7,Yes,\"A person is in a hallway dressing by a table, they then start smiling when they see a picture on the wall.\",chair;clothes;shirt;television;tv,A person is sitting on a chair watching a video on a laptop while putting on a shirt. The person then stands up and continues to watch tv.;A person gets dressed and gets up from a chair while watching TV,c148 0.00 6.00;c132 0.00 34.00;c152 22.40 34.00;c154 5.80 10.50,32.50\r\nZP6LO,ID9V,Garage,4,6,Yes,A person is snuggling in a blanket while drinking from a cup and looking at a laptop.,blanket;cup;laptop,A person is wrapped in  a blanket drinking a cup of coffee and dancing watching something on a laptop.,c072 0.00 30.40;c051 0.70 29.00;c106 0.00 7.20;c106 8.80 16.00;c107 0.00 31.00;c070 0.00 31.00,29.50\r\nLPHVE,X5XO,Hallway,6,6,Yes,Person eats a sandwich while standing next to the pile of clothes.,clothes;food;hand;mouth;sandwich;stairs;wall,\"A person is leaning on a stairway and eating a sandwich, and then wipes their mouth with a hand.;A person is eating a sandwhich and looking around while leaning up against a wall.\",c065 0.00 33.00;c156 0.00 33.00;c067 0.00 33.00,31.58\r\n16S3C,YA10,Home Office / Study (A room in a house used for work),7,7,Yes,A person is standing in the doorway of their office taking a picture of the sandwich with a phone.,doorway;food;phone;picture;sandwich,\"A person is leaning in the doorway of an office, eating something. The person takes out their cell phone, looks at it and puts it away.;A person leaning on a doorway eats a sandwich. The person takes out their phone and looks at a picture on it.\",c065 0.00 14.60;c088 18.70 28.00;c015 14.40 22.10;c156 0.00 18.70;c088 6.70 17.80;c061 0.00 31.00;c067 0.00 31.00;c016 8.00 31.00;c087 19.80 28.20,30.46\r\nH59EA,YMXV,Bedroom,6,4,Yes,Person is standing by doorway holding blanket and snuggling with it.,blanket;doorway,A person wraps a blanket around themself.,,32.17\r\n3XM7Q,1OHU,Bedroom,6,7,Yes,A person throws a blanket on the bed. Another person sits a soda can on a table.,bed;blanket;clothes;drink;shelf;table,A person is walking and putting a drink on a shelf and another person is putting a blanket on the bed.,c071 16.80 25.70;c009 20.30 26.20;c081 10.60 17.10;c000 16.90 25.50;c074 20.90 25.50,30.75\r\nYLEK5,2RTW,Kitchen,6,6,Yes,The person is in the pantry to get dressed.  The person lies the clothes on the table next to the soft blanket.,clothes;jacket;table,\"A person putting a coat on in a kitchen ,the person picks up clothes from a chair and grabs a socks off a table ,the person puts the clothes back on the table\",c009 18.90 27.00;c000 11.30 25.50;c148 0.00 14.50;c001 18.70 27.30;c001 10.40 28.00;c004 10.60 28.00;c012 10.80 21.60,27.38\r\nDFPOJ,2RTW,Kitchen,6,6,Yes,\"A person stands in the pantry, holding a book. The person sets the book down, removes their shoes, and begins fixing a sandwich.\",bag;book;food;sandwich;shelf;shoe;table,\"A person is looking at a book, then they grab a bag of food, and take off their shoes.;A person was reading a book, then grabs a bag off the shelf, takes off their shoes and starts to make food.\",c009 12.00 27.10;c026 0.00 31.00;c057 7.90 19.20;c023 3.90 12.00;c061 28.40 31.00;c066 28.40 31.00;c014 28.40 31.00;c032 28.40 31.00,30.42\r\n0RJ18,2RTW,Pantry,6,6,Yes,A person is opening medicine and putting it on a table.,bottle;counter;cup;medicine;table,There is a person holding a medicine bottle.  That same person sets the bottle on a table.;A person opens the top off a bottle and sets the top on the counter and walks away then comes back to the bottle.,c109 9.70 15.60;c128 0.00 15.70;c009 9.70 15.80,25.33\r\nHL5OP,10FJ,Dining room,3,7,Yes,A person is laughing while throwing food in the trash bin and then removing dirty dishes from a table in the dining room.,bag;dish;food;plate;table;trashcan,\"A person empties food from a bag into a trash can. They then pick up a plate from a table, and come back for another plate from the table.;A person walks over to a trashcan, opens the lid, and throws several objects away. The the same person grabs a plate off a table.\",c064 14.40 21.70;c120 28.50 35.10;c012 28.90 37.00;c021 16.60 22.30;c118 20.10 27.00;c149 14.60 20.40;c020 0.00 21.20;c120 19.00 27.90;c024 8.40 21.50;c119 19.40 35.40,36.46\r\nW3I8W,KQI6,Living room,6,6,Yes,A person is lying on a towel watching television. Another person walks into the room and turns off the light.,bed;blanket;floor;light;television;towel;tv,\"A person takes a towel off a bed and puts it on the floor. They start watching television when another person walks in and turns off the light.;One person lays a towel and the floor and lies down to watch tv, while another person turns off a light.\",c034 0.00 11.30;c124 7.20 15.30;c035 0.00 5.10;c105 20.70 27.20;c151 5.30 12.20;c132 9.00 31.00;c071 0.00 10.40,30.46\r\nVGTX8,CCI9,Living room,4,2,No,A person was running down the hall to close the window.  The person was trying to work but the open window was making it chilly.,book;door;window,\"A person is walking to the front door than grabs a book,;A person walks across the room, looks out the window, turns around to grab a book, and then closes the same window.\",c006 10.00 21.20;c026 22.50 30.00;c090 12.00 18.40;c089 29.30 35.00;c030 22.10 29.20,34.17\r\nQ4UO4,1TZV,Kitchen,6,7,Yes,\"A person cooking in their kitchen washes a dirty glass that was beside their stove.  Then, they open the door to the refrigerator and stand in front of it, deciding what they need, before grabbing some groceries out of it.\",bag;container;door;faucet;food;fridge;groceries;hand;refrigerator;sink;stove,The person in the video is preparing a meal at the stove.;A person is cooking on a stove before washing their hands and taking a bag from the fridge.,c143 14.70 23.10;c147 0.00 8.30;c023 24.80 30.40;c139 7.20 13.60;c061 22.40 32.00;c006 27.40 32.00;c063 22.40 31.30;c008 16.20 22.70;c062 28.20 32.00;c130 28.00 32.00,30.54\r\nT7TV9,1OHU,Stairs,6,6,Yes,Person is sitting on stairs holding shoes and taking to doorknob and laughing.,clothes;floor;shoe,\"There is a person sitting on  stairs, holding a pair of shoes and laughing.\",c149 6.40 18.20;c053 0.00 29.00;c125 0.00 29.00;c152 6.70 17.00;c000 0.00 29.00,28.25\r\nPMG3A,0KZ7,Living room,5,7,Yes,A person sitting in a chair in a basement holds an old picture. Another person who is tidying up some old dishes laughs at the picture.,book;cabinet;chair;cup;dish;glass;picture;table,One person is looking at a picture while sitting in a chair.  The other person is taking dishes and glasses from a shelf and putting them on a table before picking them up and leaving the room.;One person is sitting in a chair holding a book. Another person touches a glass and then picks up another glass out of a cabinet and puts in on the table. The person stacks all the cups together  and takes them out of the room.,c109 3.40 9.60;c119 0.30 6.60;c120 17.20 27.80;c026 0.00 28.00;c110 0.00 7.70;c120 0.00 28.00;c059 0.00 28.00;c088 0.00 28.00;c009 1.20 16.20;c118 0.00 6.60;c012 1.40 24.50;c084 0.00 28.00;c118 1.40 23.60,26.96\r\nCPF9H,YA10,Home Office / Study (A room in a house used for work),7,7,Yes,A person is sitting down at their desk smiling as they read a book,book;chair;desk,\"The person is sitting in a chair with his legs crossed and is reading a book and smiling and laughing.;This person is sitting on a chair at their desk, reading a book and laughing as they flips the page.\",c026 0.00 36.00;c029 3.20 36.00;c032 0.00 36.00;c152 3.40 36.00;c059 0.00 36.00;c149 3.90 9.80,34.67\r\nK1X2C,Z755,Basement (A room below the ground floor),2,6,Yes,Person A and B are sitting in the basement. Person A is angered by B always taking photos with his camera. Person A argues all B does is take photos of random objects like a broom. Person B argues in response that he also has a picture of a door.,bed;camera;phone;picture,Two people are talking in a disgustingly messy room. One is holding a camera and looking at a picture.,c015 0.00 12.00;c088 5.00 12.00;c135 0.00 3.20;c087 7.90 12.00;c016 7.70 11.80;c135 0.00 12.00;c016 0.00 12.00,11.33\r\n8YZ8X,1OHU,Living room,5,6,Yes,\"Two persons are snuggling on the couch watching television.  One person is grasping the remote.  The other person gets up and grabs a pillow from the chair and throws it on the couch, then turns off the light and sits back down.\",chair;light;pillow;sofa;television,A person is sitting on a couch. Another person falls on the person sitting. The second person stands up and sits next to the first person.,c077 21.80 30.80;c122 2.40 23.70;c123 0.00 43.00;c151 26.40 34.90;c154 18.40 24.50;c079 22.80 27.40;c080 23.60 28.30;c105 25.50 29.90,41.67\r\nBZD0Q,CCI9,Home Office / Study (A room in a house used for work),3,7,Yes,Walking into the office holding coffee the person picks up a bag.,bag;brief case;cup;doorway;glass;table,\"A person walking down a hall drinking from a cup. The person proceeds to the desk and picks up a brief case turns and walks out the room down a hall.;A person is drinking from a glass while walking through a doorway. After setting the glass on a table, the person picks up a bag and walks out through the same doorway.\",c020 14.90 32.00;c109 11.30 17.30;c106 0.00 15.80;c097 3.70 10.20;c023 12.90 22.80;c107 0.00 17.80,30.92\r\nFUT86,D0RU,Living room,4,6,Yes,One person closes a desk with a camera and book on top. Another person eats from a bag of groceries.,bag;book;cabinet;camera;chair;desk;food;groceries;phone;sandwich;table,\"a person sits at a desk and sets a camera on a book, another person pulls something out of a bag and sets it on table then eats a sandwich;A person sitting in a chair at a desk opens a drawer and puts a camera on top of a book sitting on the desk.  Another person sitting in a chair at a table takes some food out of a bag of groceries and places it on the table, then eats a sandwich.\",c009 6.30 12.10;c015 0.00 11.10;c021 17.50 23.60;c156 26.30 36.10;c063 25.50 34.10;c009 21.90 27.00;c011 0.00 12.40;c017 4.60 11.10;c022 21.90 27.20;c065 24.60 34.80;c113 0.00 5.80;c059 0.00 13.40;c020 15.60 26.90;c130 21.30 26.70;c069 24.40 30.50;c016 0.00 12.10;c061 16.40 39.00;c068 16.40 39.00,37.88\r\n42UH8,PO5L,Hallway,3,6,Yes,Person is holding glass of coffee looking at vacuum cleaner then starts eating cookies.,cup;food;mug,\"A person stands in a hallway while drinking from a mug and eating something.  They stand in the hallway for a brief time, then they walk out of the hallway into another room.;Person walking down hallway and stands there eating something and drinking from a mug while looking at the vacuum.\",c106 4.10 11.20;c156 9.00 22.00;c061 8.80 17.70;c107 0.00 27.00,25.88\r\nYPG4G,HJJ4,Dining room,6,7,Yes,A person holding a pair of shoes opens a window and starts tidying up their dining room.,book;chair;lamp;pillow;sofa;tablecloth;window,A person is holding a book. The person then begins tidying the sofa.;A person walked in and opened a window.  The person then put a pillow they were holding on a chair.  The person then adjusted a tablecloth and lamp on a table.,,26.67\r\nHC62A,JVLO,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,\"A person sits in a chair. The person opens a bag of groceries, takes a piece of food out, and eats a piece.\",bag;chair;food;television;tv,A person sits down in a chair to watch television. The person takes a bag of food from the window and eats it while watching television.;a person sits in a chair and watches tv then eats come chips,c059 0.00 4.90;c021 8.30 14.60;c151 0.00 4.90;c020 6.40 33.00;c061 6.40 33.00;c156 11.10 33.00;c132 0.00 33.00;c063 5.50 12.20,31.58\r\nAPQSV,KFGP,Basement (A room below the ground floor),6,7,Yes,A smiling person opens the door to their basement and plates a towel on a shelf.,closet/cabinet;clothes;door;shelf;towel,\"The person comes out of a room holding a towel. The person folds the towel, opens another door, and puts the towel on a shelf, closes the door and walks away.\",c081 16.50 24.60;c033 2.30 18.90;c034 14.00 21.50;c037 14.80 21.60;c006 3.60 13.80;c008 2.60 9.70;c113 10.50 23.60;c001 13.30 22.60,26.83\r\n8RFDF,WG9D,Recreation room / Man cave,4,6,Yes,A person is playing in their recreation room with a laptop on their bed. They start closing their laptop while putting a blanket over it.,bed;blanket;chair;laptop;table,\"A person closes a laptop, takes a blanket and places it over the closed laptop.\",c046 0.90 5.60;c071 3.10 7.00;c151 3.50 7.00;c154 2.00 6.90;c011 0.00 4.40;c059 0.00 4.40;c073 1.50 7.00,6.12\r\nYM213,8718,Bathroom,6,7,Yes,\"A person is opening and closing the door on themselves. They finally stop, and simply stand in the doorway, and are watching something just out of sight, with a glass in their hand.\",cup;door;glass,\"A person, holding a glass, opens and closes a door from inside a bathroom. The person walks out of the bathroom and opens and closes the door a few more times. The person leans against the doorway.\",c097 5.90 11.70;c107 0.00 31.00;c006 0.00 3.60;c008 0.20 5.30;c141 5.30 11.70,29.67\r\n51J43,9Y7F,Hallway,6,7,Yes,A person is undressing by the doorway while another person is running with a bag of food.,bag;clothes;door;food;shirt,\"A person takes their shirt off while another person carrying a bag leaves the room.;A person takes off their shirt. Meanwhile, a person holding a bag runs through the room and exits.\",c097 6.90 14.00;c150 5.10 10.60;c155 11.10 32.00;c061 5.00 13.00;c004 13.95 32.00,30.67\r\n79YH2,R1OT,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is standing in the entryway looking in the mirror.  The person looks at their phone before leaving the house.,door;mirror;phone;window,A person is looking into a mirror while holding their phone. They then open the door and leave.,c015 0.00 32.00;c094 10.30 22.30;c096 0.00 29.50;c008 20.80 32.00;c092 0.00 21.40,30.96\r\nZ70KK,R1OT,Kitchen,5,6,Yes,\"A person is tidying the counter, then taking out the trash, then cleaning the stove and finally wiping down the doorway in a kitchen.\",bag;broom;desk;dishes;doorway;floor;stove;table;towel,\"PERSON IS WASHING TABLE AND OTHER THINGS DOWN, THE PERSON FINISHES WITH THAT AND PICKS UP A BROOM AND STARTS TO SWEEP;A person is tidying up a desk by putting things in a bag, they then begin tidying up a stove then g over and grab a broom and begin sweeping.\",c012 0.00 8.00;c013 8.00 15.00;c098 21.00 32.00;c100 21.00 26.00;c102 23.00 32.00;c127 21.60 32.00;c033 11.50 23.20;c009 0.00 7.70;c022 7.90 13.00;c038 10.10 15.20,30.96\r\n813XE,OUKK,Living room,3,3,Yes,A person opens a cabinet in a living room and leaves a camera there before running out of the doorway.,cabinet;camera;door;phone,\"A person is holding a camera. They put the camera in a cabinet and then walk across the room, open a door, and go inside, shutting the door behind them.\",c017 1.00 6.00;c113 0.00 4.00;c154 3.00 8.00;c008 6.00 11.00;c015 0.00 6.30;c112 2.50 7.60;c097 7.70 14.00;c141 5.90 14.00;c006 8.10 14.00,13.42\r\nH1XBH,AH2J,Living room,5,7,Yes,\"A person is putting a pillow on a sofa, then eating and then using a broom in a living room.\",bag;broom;floor;food;pillow;sofa,There is a person who takes a pillow and puts in with them on the sofa.  That same person eats some chips and gets up a sweeps up the crumbs with a broom.;A person is holding a pillow. A person then sits on the sofa and begins to eat some food. A person then gets up and leave. A person then grabs a broom and dustpan.,c076 0.00 6.80;c123 3.90 18.60;c156 8.30 14.70;c154 14.40 20.10;c063 6.20 12.70;c077 1.20 7.20;c102 17.60 28.00;c151 1.60 8.40;c020 5.50 17.30;c021 6.10 11.60;c100 18.10 23.80;c127 21.40 28.00;c023 3.90 17.20;c061 6.20 17.30,27.38\r\nOAHDH,UO0Z,Kitchen,7,6,Yes,A person is cooking something in a pot on the stove. The person turns off the fire and takes the pot and puts it in the sink.,dish;food;sink;something;stove,\"A person is cooking something on a stove. The person stirs the pot, and then takes it to the sink. The person sets the pot in the sink and turns it on.\",c147 0.00 17.60;c119 13.90 20.60;c118 13.10 20.80;c121 17.10 23.00,21.92\r\nMNGT1,KFGP,Stairs,5,7,Yes,\"A person was sitting on the stairs playing with the light settings on a laptop screen. When the screen got to the highest setting, the person closed the laptop and put it in a bag.\",bag;laptop;shoulder,\"A person sits on the stairs working on their laptop.  They close the laptop, put it in a bag, then puts the bag over their shoulder\",c046 10.70 16.80;c052 1.70 14.30;c049 13.00 19.90;c023 16.10 22.20;c020 16.60 34.70;c022 28.00 35.00;c047 0.00 29.80;c021 23.30 28.10;c048 0.00 4.70,33.67\r\n5H1P1,ZAWX,Laundry room,6,7,Yes,The person laughs at something on a laptop screen. The person then tidies up clothes from the dryer.,clothes;laptop,a person laughing at a show on the laptop then goes to the washing machine and takes out some clothing then folds it,c051 0.00 9.40;c004 19.00 25.80;c149 0.00 11.40;c005 10.50 32.00;c002 10.70 32.00;c000 10.80 32.00,30.83\r\nBD0S7,C7O9,Kitchen,6,6,Yes,Person is in pantry tidying up shelf. Second person walks in takes picture of first person with camera. First person falls and ends up lying on floor.,camera;floor;phone;picture;shelf,Person is rearranging items on a shelf in a closet. Second person takes a picture. First person falls down.,c015 0.00 3.20;c124 0.00 4.80;c087 0.00 3.40;c082 0.00 14.80,27.71\r\nHIJBX,2RTW,Living room,6,6,Yes,\"In the living room doorway, a person is putting their hand on the doorknob.  Another person is tidying the sofa and the pillows.\",bag;blanket;door;pillow;sofa,Person A is grasping a doorknob while Person B is tidying a couch.;Two people are in a room. One person is holding onto a doorknob while the other person is folding a blanket on a sofa. One of the people is also putting a pillow on top of the blanket.,c076 13.20 24.20;c077 12.90 24.20;c141 0.00 32.00;c075 0.00 16.90;c022 14.00 32.00;c070 0.00 16.90;c071 0.00 16.90,31.08\r\nMHUSZ,2RTW,Living room,6,6,Yes,The person is using a camera to film another person using a vacuum to tidy up. Person 2 smiles and points at cabinet for supplies.,camera;floor;vacuum,\"A person is using a vacuum while another person is playing on their phone;One person vacuums the floor, while another person takes pictures of the person vacuuming.\",c137 0.00 27.50;c015 0.00 32.00;c087 0.00 32.00,31.46\r\nUG6NT,2RTW,Living room,6,6,Yes,A person is throwing a pillow while another person is sitting and holding a camera.,mirror;phone;pillow;sofa,\"A person is throwing a pillow, while another person is looking in the mirror on a sofa.;Person #1 is taking selfies with their phone, sitting on the couch. Person #2 throws a pillow across the room and walks around.\",c152 0.00 8.80;c015 0.00 32.00;c080 1.10 8.30;c076 0.00 4.20;c087 0.00 32.00;c016 0.00 32.00,30.71\r\nS2KYK,DXDI,Pantry,6,6,Yes,A person is sitting in a chair while wrapped in a blanket. They then laugh as the look at their laptop.,blanket;chair;laptop,A person is watching something on their laptop while they are sitting down with a blanket wrapped around them.,c051 5.50 18.00;c059 0.00 18.00;c072 0.00 18.00;c149 6.00 18.00;c152 6.40 15.70,17.42\r\nYY5D1,EIO2,Living room,5,7,Yes,A person is lying on a towel in the living room while eating food.,floor;food;towel;window;wrapper,{};This person appears to be laying on the floor flat on their back in front to the right side of the window inside a room.,c124 0.00 31.00,30.17\r\nKHWG2,EIO2,Living room,6,7,Yes,\"In the hallway, a person is walking around holding a towel. In the other hand, they have a glass of water that they contemplate drinking from, but instead decide leaving it on the ground.\",cup;floor;glass;towel;water,A person walks around holding a towel and drinking from a glass.;A person is pacing back and forth drinking water and swinging a towel.,c106 0.70 21.70;c106 2.10 9.30;c107 0.00 27.80;c109 23.80 29.70;c033 0.00 31.00,30.25\r\nSVQL5,HR43,Bedroom,7,7,Yes,A person is snuggling in their bed in their bedroom. They pick up a box on the floor and start throwing it towards the door.,bed;blanket;box;door;floor,\"A person is laying in the bed with a blanket then picks up a box and throws it on the floor.;A person is laying down, then hold a box.\",c126 19.30 25.00;c045 19.30 25.00;c134 0.00 25.00;c072 0.00 25.00;c146 0.00 25.00,23.79\r\nCX5ZM,PO5L,Kitchen,4,5,Yes,\"A person tidies up the kitchen with a broom, then walk over to the stove and start cooking something on the stove.\",broom;dish;drawer;floor;food;something;stove,\"The person standing  picked a broom swept the floor lay the broom against the wall,opened the bottom of stove get something out.;A person is sweeping the floor. A person then opens a drawer\",c099 8.70 16.00;c102 0.20 14.20;c147 16.00 24.60;c119 15.30 20.90;c127 0.50 13.90,27.33\r\nGQCUO,PKND,Bedroom,6,4,No,A person is holding a book while lying down on the floor trying to fix the vacuum cleaner.,book;floor;vacuum,\"A person vacuuming around a bed, then kneeling and continuing to vacuum under the bed.\",c137 0.00 16.10;c127 16.20 33.00;c154 28.20 33.00,31.54\r\nVSR11,PKND,Basement (A room below the ground floor),7,6,Yes,A person smiles while using a vacuum on the basement floor. Another person sneezes while using a broom.,broom;floor;vacuum,\"One person is vacuuming the floor, another is sweeping the window with a broom.\",c137 0.00 33.00;c127 0.00 33.00;c102 0.00 33.00,31.54\r\nBB5DY,6RE8,Living room,6,6,Yes,A person is seen putting their homework on the table. They then take a blanket and begin snuggling with it after sitting down.,blanket;chair;homework;paper;table,A person sits in a chair and reads before wrapping up in a blanket.,c145 0.00 22.00;c072 21.60 37.00;c009 15.10 20.90;c059 0.00 37.00;c115 0.20 19.30;c116 15.00 19.90;c073 18.40 25.80;c154 16.40 23.50;c151 0.20 6.90,36.04\r\n0FJSU,PO5L,Home Office / Study (A room in a house used for work),7,7,Yes,A person is tidying up their shelf with a towel and then they walk out of the room.,cleaning;table;towel,This person appears to be in a living room. Person appears to be cleaning a table or something. Person then walks away after.;A person walks toward the front door and clean off a table. The person walks back out of the room.,c038 3.00 13.00;c012 3.00 13.00;c013 3.00 13.00;c033 0.80 16.80,17.79\r\n3KWFT,MKUT,Bathroom,7,7,Yes,\"One person runs into the bathroom with a book and a broom, starts tidying up a cabinet, then sneezes.\",book;broom;cabinet,A person walks into a bathroom and starts cleaning the bathroom they put things into a cabinet and then they sneeze,c114 5.60 30.00;c026 2.30 6.90;c099 0.00 6.30;c153 24.80 31.00;c112 17.90 26.00;c113 15.00 21.20,30.42\r\n1TW98,DLI2,Bedroom,3,6,Yes,A person is holding some homework and a book before closing a door.,book;closet/cabinet;door;paper,\"The person has a packet of paper in one hand and a book in the other, walks away from camera and shuts door and then walks back towards camera\",c026 2.00 8.80;c006 12.40 21.50;c115 0.00 16.00;c117 0.00 4.20;c030 0.00 4.10;c112 12.20 22.00,29.33\r\n9JI9W,I64U,Pantry,5,5,Yes,\"Smiling to themselves, Person stands while wrapped in a blanket, looking longingly at a glass, then sneezes strongly.\",cup;dish;glass,A person is looking at a glass. A person then begins sneezing.,c107 0.00 45.00;c153 27.50 36.40;c109 44.40 47.00;c118 0.00 29.90;c109 38.40 46.60;c152 0.00 31.30,46.38\r\nNFXPI,R1OT,Kitchen,5,6,Yes,\"One person walks into the basement and tidies a messy desk, then washes a dirty mirror.\",desk;doorway;mirror;table;towel,\"person walks into room with towel on shoulder, tidies up table, and cleans mirror;Person enter the room organize the table pick up a towel off the table and clean the mirror.\",c012 9.90 21.50;c095 21.60 31.00;c033 17.40 24.40;c097 0.00 4.10;c038 22.20 31.00,29.96\r\nCPZZ1,ENC8,Bathroom,6,7,Yes,\"A person runs into their bathroom and takes a small box out of their medicine cabinet. They close it and look in the mirror, running their fingers through their hair.\",cabinet;doorway;hair;medicine;mirror,\"A person runs into a bathroom and reaches in a cabinet and takes out some medicine, they then look in a mirror and begin smoothing down their hair.\",c096 4.10 9.80;c128 15.90 45.70;c144 31.10 38.60;c112 12.30 18.00;c113 6.20 11.60;c150 2.00 7.20;c097 1.50 6.70,46.88\r\n7WIKW,UTMU,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"One person stands and pours coffee into a glass, then snuggles up with a pillow to work on something in a box.\",box;coffee;cup;doorway;floor;glass;pillow;shelf;something,\"A person walks over, pours a glass of water, picks up a pillow and snuggles with it. Then the person kneels down, opens a suitcase, rummages through it, gets up, and walks away.\",c108 2.70 11.10;c077 22.50 29.60;c078 14.50 22.70;c079 13.10 18.50;c154 38.70 44.10;c081 8.20 16.00;c042 36.70 41.80;c125 19.40 27.60;c151 19.10 40.10;c041 20.50 27.10;c097 40.70 45.00,44.46\r\nPT0L3,UTMU,Garage,5,7,Yes,The person is holding a phone and sitting on a pillow in the garage.,phone;pillow,\"A person is sitting on a pillow on the floor, looking at a cell phone. The person never looks away from the phone, and taps the screen several times.\",c015 0.00 36.00;c016 0.00 36.00,35.12\r\nIFTEQ,KQI6,Hallway,6,6,Yes,A person is lying under the doorway doing homework and then playing with a toy in the hallway.,baby;doll;laptop;table,\"A person is looking at a laptop. Then they're playing with a doll putting clothes on it.;A person sitting at a table, using a laptop, then gets a baby and puts a hat on it.\",c051 0.00 33.00;c011 0.00 33.00;c052 0.00 11.70,31.88\r\nY4P3C,ZEM0,Dining room,3,7,Yes,The person was drinking a glass of water. And was walking and talking on the phone.,chair;cup;phone;table,Someone is on their phone in the dining room. They sit down and stand up and pick up a cup from the table and drink from it.;A person is talking on their phone they sit at a table then they get up and take a drink out of a glass then they walk around all while talking on their phone.,c107 22.20 39.30;c154 18.00 24.00;c059 4.90 22.00;c106 0.40 4.60;c110 0.20 4.40;c151 0.00 2.80;c011 0.00 4.20;c019 0.00 41.00;c015 0.00 41.00;c009 35.90 41.00;c109 35.90 41.00,40.29\r\nNSEZ8,WG9D,Dining room,7,7,Yes,A person puts a towel down and picks up a book. The person sits down and begins reading.,book;chair;table;towel,\"A person carrying a towel,places it on a chair.The person sits down and opens a book and starts to read from the book.;A person sits down at a table and begins reading a book.\",c027 3.00 8.00;c151 2.00 7.00;c059 2.00 7.00;c034 0.00 4.80,7.12\r\nWER6W,L4ZP,Pantry,6,6,Yes,A person is fixing a window in a pantry. They grab a mirror out of their pocket and sneeze.,phone/camera;tool;window,\"A person is standing in front of a window in a bedroom. The person begins fixing the window. In the middle of fixing the window, the person sneezes.\",c153 32.20 37.90;c016 32.20 42.90;c089 20.70 45.30,47.79\r\nFBNUZ,D0RU,Bathroom,5,6,Yes,A person is drinking water at the sink.  Then the person is tidying the bathroom and washing off the mirror.,bucket;floor;phone;plate;toilet;water,A person spits water on to the floor and then starts scrubbing it.;a person gets some water in the bathroom out of a bucket then cleans the toilet and grabs their phone,,35.08\r\n06OKE,PKND,Living room,5,4,Yes,Person is putting medicine on towel then starts smiling and drinks bottle of water.,cup/glass/bottle;medicine;sofa;table;towel;water,A person puts a towel on a table while smiling. They pick up and put medicine back on a table.  They sit on the sofa and drink from a container.,c034 0.00 5.00;c106 14.00 20.00;c151 7.00 12.00;c123 7.00 12.00;c128 9.20 23.20;c152 2.80 10.10;c011 9.80 32.00;c009 8.10 13.70,31.08\r\nI4OFW,ZSRZ,Hallway,6,6,Yes,A person is tidying the hallway by using a broom and sweeping under a table.  The person is closing the door.,broom;door;table,A person sweeps dirt under a table with a broom. The person closes a door.,c006 6.80 13.00;c102 0.00 10.60;c098 0.00 13.00,12.04\r\n0ISSH,UD06,Hallway,7,7,Yes,\"person is lying in a hallway snuggling a pillow, under a blanket.\",blanket;floor;pillow,A person is snuggling with a pillow and blanket in the hallway.,c078 0.00 32.00;c072 0.00 32.00;c124 0.00 32.00,30.58\r\nV9DQI,6RE8,Living room,6,7,Yes,A person is in a recreation room sitting at a desk watching television while eating an apple and sneezing.,chair;food;laptop;television,A person eats while seated in a chair and then sneezes.;A person is sitting at a chair consuming some food.  The person then watches television and sneezes.,c156 0.00 13.10;c153 10.30 22.40;c059 0.00 33.00;c132 18.90 30.90;c061 0.00 33.00;c051 19.00 25.10,31.54\r\nCWV2Y,FNK4,Garage,7,7,Yes,A person is fixing a laptop. They put their tools on a shelf when they're done.,laptop;shelf;tool,Person has laptop and appears to be removing something from the bottom.  Then takes removed objects and tools across garage to shelf.,c081 27.10 32.00;c052 0.00 28.90,31.04\r\nIAC2W,BYF9,Stairs,5,7,Yes,A person is standing and using a vacuum to clean the stairs. The person is smiling and has a blanket draped over the person's arm.,blanket;clothes;vacuum,A man vacuuming stairs and holding a blanket.,c137 0.00 20.00;c070 0.00 20.00;c000 0.00 20.00,18.50\r\nME4D5,BYF9,Home Office / Study (A room in a house used for work),7,7,Yes,A person is seen snuggling on their chair. They start sneezing and reach for a nearby box on their desk.,box;chair;desk;table,\"A person is sitting in a chair at a desk laughing. They then sneeze and reach for a box on a nearby table.;A person is sitting in a chair near a desk laughing, they then start sneezing and grasp a box\",c011 0.00 24.00;c040 20.20 24.00;c059 0.00 24.00;c153 7.50 14.70;c149 0.00 11.20,23.04\r\n2Z2CS,YA10,Home Office / Study (A room in a house used for work),6,7,Yes,A person standing by the window is fixing a camera,camera;phone,A person standing in front of a window is fixing a camera.,c016 0.00 31.00;c015 0.00 31.00,30.54\r\nYX3W8,PO5L,Entryway (A hall that is generally located at the entrance of a house),2,7,Yes,A person is throwing clothes on a chair and then working on a vacuum in an entryway.,chair;clothes;floor;table;towel;vacuum,a person grabs clothes off the floor then sits down and plays with a vacuum;A person is tidying up some clothes by throwing them on a chair then lies on the floor and begins to work on a vacuum.,c001 0.10 7.60;c151 0.00 9.90;c002 0.00 4.30;c003 3.10 7.60;c136 8.60 23.80;c154 21.20 27.80;c124 6.30 12.80;c036 2.80 7.60;c035 0.00 4.80;c033 0.50 7.20;c009 3.50 7.80;c125 7.10 25.60,28.08\r\n5L09N,T7C3,Home Office / Study (A room in a house used for work),4,4,Yes,A person is taking off shoes and then fixing a camera in a home office / study.,camera;chair;phone;shoe,\"The person is sitting in a chair, taking off their shoes. The person then picks up a camera, examines it, and takes a picture.;A person taking off their shoes while sitting in a chair.The person picks up a phone and starts looking at it.\",c057 0.40 6.50;c015 15.00 40.00;c018 13.60 19.80;c059 0.00 40.00;c057 4.90 12.10;c087 33.10 40.00;c054 7.10 14.20;c016 14.20 40.00,39.42\r\nHC5JH,L4ZP,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,A person is leaving the entryway with dishes.  Another person is playing with a camera.,dish;door;phone;picture,2 people are in the room one has a phone and takes a picture of another holding a plate the one holding the plate walks out of the room;There is a person holding a phone.. Another person walks up with a camera and both people take a picture of each other. One person then leaves through a door.,c008 16.50 22.00;c118 3.10 22.30;c015 0.00 26.00;c006 21.00 26.00;c087 4.00 18.00;c120 12.10 25.20;c019 0.00 26.00;c097 15.70 24.90;c141 15.70 24.90,25.42\r\n4WMDU,T7C3,Kitchen,6,,Yes,A person is opening bags of groceries that sit next to a vacuum while drinking from a glass.,bag;counter;cup;food;glass;groceries;shelf;table;water;wine,\"A person holding a glass drinking and carrying a bag of food.The person opens the bag and starts taking food out of the bag .Takes another drink of water .;Person walks in room carrying bag and wine glass. Then drinks wine and puts glass on counter, then digs in bag and takes something out and place on shelf. Then drinks out of glass again.\",c020 0.90 33.00;c130 8.90 22.80;c107 19.80 30.50;c110 19.60 26.20;c009 3.30 8.10;c063 7.10 14.30;c021 4.40 12.70;c020 8.10 14.20;c106 0.20 7.80;c109 2.60 7.90;c081 9.20 15.60,31.92\r\nJFXG8,HR43,Kitchen,6,7,Yes,\"A person opens the refrigerator and removes a pot, then close the refrigerator.  They put the pot on the stove and start cooking.\",dish;food;pot;refrigerator;stove,\"Person opening refrigerator to take a pot out, puts it onto the stove and begins to cook with it.\",c142 4.90 11.40;c147 9.50 29.00;c143 0.00 4.10;c119 6.10 14.10;c118 4.70 13.90;c120 3.80 9.70,28.04\r\nPFOD8,8718,Kitchen,6,7,Yes,The person is eating over the sink while holding a glass.,cup;food;glass;medicine;sink,A person is holding a cup of water at the sink.,c107 0.00 15.00;c156 1.00 9.80;c106 12.00 15.00;c108 12.00 15.00;c129 12.00 15.00,13.96\r\n5311V,R1OT,Basement (A room below the ground floor),7,7,Yes,\"A person runs up to a mirror in the basement, smiles, then picks up a book.\",book;doorway;mirror,\"A person walks into a room. The person looks in the mirror and smiles, and then picks up a book.\",c094 4.40 12.60;c096 2.10 12.80;c030 9.60 15.00;c152 4.40 12.60;c097 0.00 6.20,13.96\r\nY2LH1,XXN8,Other,7,,No,One person drinks and plays games on the phone while sitting wrapped in a blanket by the door of the office.,bottle;cap;door;game;phone;water,\"a person drinks some water standing by a door and plays on their phone;A person removes a cap from a bottle of water, takes a drink, then replaces the cap and sets the bottle down. The person starts playing a video game on a handheld device.\",c106 0.10 8.30;c015 6.60 31.00;c016 6.90 28.10;c018 6.50 10.60,29.96\r\nNHTSB,9PLL,Bathroom,5,7,Yes,The person was pouring medicine while talking on the phone.  They then turned off the light while smiling.,light;medicine;phone,Person is talking on a cell phone while pouring medicine out of a bottle and then turns out the light.,c019 0.60 27.60;c105 23.60 33.00;c015 0.00 29.20;c152 0.00 28.30,32.38\r\nS2TC7,C7O9,Pantry,6,7,Yes,A person stands in the doorway way of the pantry as they put away groceries. The person sneezes when they are done with the groceries.,bag;box;food;groceries;pantry;shelf,A person is wrapped in a towel. A person then goes the pantry and takes some groceries.,c020 0.00 19.00;c153 16.90 31.00;c081 2.40 19.40;c130 0.00 19.70;c042 10.80 17.00;c062 0.00 21.20,30.04\r\nBAXWA,8IOD,Bathroom,3,6,Yes,A person is smiling as the sweep the bathroom floor with a broom. The person then pours some water out of a cup into the sink.,broom;floor;glass;sink;table,\"The person is sweeping the bathroom, then pours a glass of water down a drain.\",c102 0.00 32.00;c127 0.00 32.00;c098 0.00 32.00;c009 23.00 29.80;c110 16.70 22.60;c107 16.50 27.80;c109 16.40 27.80,30.88\r\nMGDO2,C7O9,Closet / Walk-in closet / Spear closet,6,6,Yes,\"The people awake from a slumber on the bottom of the closet floor.  A cup of coffee and some food are next to them.  They ignore it, choosing instead to go back to snuggling, before leaving the closet and closing the door behind them.\",a cup;door;floor,2 people are lying down in a closet one person get up and the other person gets up and they walk out,c124 0.00 19.00;c154 11.40 23.50;c006 24.80 29.00;c097 21.00 26.40;c141 19.10 29.00,27.88\r\n1SLTT,L852,Dining room,7,7,Yes,A person grasping a cup of coffee in the dining room leaves a phone on a table.,cup/glass/bottle;mug;phone;table,\"A person drinking from a mug,then placing phone on table and glancing out of window.\",c015 0.00 15.00;c017 9.00 15.20;c009 9.00 15.20;c106 4.50 8.70,25.62\r\nT7449,YA10,Home Office / Study (A room in a house used for work),7,7,Yes,In the home office a person is standing with a broom between their legs and a blanket tied around their shoulders. Another person holding a sandwich starts laughing at first person.,blanket;broom;food;sandwich,A MAN AND WOMAN ARE TALKING AND LAUGHING WITH EACH OTHER. THE MAN IS HOLDING SOMETHING AND THE WOMAN HAS A BLANKET AROUND HER WITH A BROOM UNDER HER LEGS - ACTING LIKE A WHICH,c067 0.00 28.00;c098 0.00 28.00;c072 0.00 28.00;c149 0.30 28.00;c061 0.00 28.00,27.12\r\nVVJE0,LTAC,Stairs,6,7,Yes,A person is closing a box and then throwing a towel down the steps on the stairs.,box;floor;towel,A person is standing on the stairs opening and looking through various boxes. The person then balls up a towel and throws it down the stairs and then walks down the stairs.,c039 0.00 9.00;c041 6.00 13.00;c036 22.00 28.00;c044 2.20 19.60;c126 5.60 11.00;c126 8.80 14.70;c126 15.10 20.20;c040 0.00 10.00;c040 7.30 15.60;c042 6.00 10.60;c042 10.00 15.40;c043 6.80 11.60;c127 17.30 23.60;c044 0.00 10.00;c126 21.00 26.40,30.83\r\nFW1L0,D0RU,Kitchen,7,7,Yes,A person is opening a box and eating by the stove.,food;pot;stove,A person is getting some food from a pot. The person moves the pot and puts it on another counter.,c156 2.00 8.50;c154 0.00 24.80,30.75\r\nZS66D,HR43,Home Office / Study (A room in a house used for work),5,7,Yes,A person laughs as they take a bag from the table. The person takes a drink from a bottle of water.,bag;cup/glass/bottle;table;water,\"A person is laughing while picking up a bag from a table, then puts the bag down and grabs a bottle of water and takes a drink.\",c009 9.80 17.10;c011 0.00 27.00;c023 0.00 6.00;c106 15.40 24.10;c149 0.00 9.00;c107 12.50 27.00;c152 0.00 17.60;c022 10.70 16.00;c110 11.70 18.30;c020 0.00 15.80,25.79\r\n38BDO,3531,Other,6,6,Yes,A person is playing on a phone in their laundry room and drinking milk. They put a blanket in a box and put it on a shelf.,blanket;box;closet;cup;floor;glass;person;phone;shelf;towel;water,\"a person texts on his phone, takes a drink, puts a folded blanket in a box, picks up the box and puts it in a closet;A person is sitting on the floor playing with a cell phone while picking up and drinking water. After finishing, the person gets up, puts a blanket in a box, and puts it on a shelf.\",c039 22.40 28.30;c081 25.80 34.00;c154 20.80 29.30;c125 0.00 8.50;c071 20.30 34.00;c016 0.00 23.80;c113 26.80 32.50;c110 4.50 14.60;c042 28.00 34.00;c033 20.80 27.30;c041 21.90 27.40;c106 5.40 14.10,33.42\r\n1US0H,ZAWX,Closet / Walk-in closet / Spear closet,4,5,Yes,A person is sneezing into a wardrobe and then dressing in front of a mirror in the basement.,closet;clothes;hair;mirror;towel,The person stand in front of closet. The person sneezes in a towel. The person looks in mirror and fixes hair and clothes.;A person stands in a room before sneezing into a towel. They then check their reflection in the mirror.,c096 12.60 31.00;c153 5.80 15.40;c033 7.40 15.10;c144 15.50 28.10;c003 9.80 15.00;c000 5.90 15.10,29.83\r\nV00AL,H8N1,Recreation room / Man cave,6,6,Yes,\"A person is lying on a sofa in a rec room, laughing while on the phone.\",phone;sofa;television,person laying down smiling on phone;a person talks on the phone and smiles,c019 0.00 7.40;c149 6.10 12.00;c152 13.70 19.40;c123 0.00 22.00,20.67\r\nNDWYP,BYF9,Stairs,6,6,Yes,One person pours liquid to wash the stairs as another person leaves with the vacuum and closes the doorknob.,doorknob;vacuum,A person is standing on the stairs pouring water on the floor. Another person walks by with a vacuum to a door and grabs the doorknob.,c137 3.20 16.20;c141 16.20 24.00;c138 2.30 8.60,23.12\r\nQ5ZIL,EIO2,Living room,1,1,No,The person is sitting at the table.  They begin sneezing and take some medicine.,chair;glass;medicine;table;water,A person is sitting to a table with a glass of water. A person then opens a medicine bottle and takes the medicine.,c153 0.00 6.70;c128 8.70 24.60;c129 26.70 34.00;c059 0.00 34.00,32.54\r\nZ0KN7,0RNU,Garage,7,7,Yes,\"A person sits on the floor watching a laptop. The person then shines a light at glass next to the laptop, before standing up and leaving the garage.\",cup;door;floor;glass;laptop,\"A person is sitting on a floor looking at a laptop, they then grab a glass and something, after that they leave.;This person is sitting on the floor, picks up a cup, looks at a laptop, then walks out of the room.\",c107 4.50 32.00;c125 0.00 26.10;c051 0.00 7.10;c154 22.50 27.40;c006 27.90 32.00;c008 27.10 32.00,30.88\r\n57QQ7,KFGP,Dining room,7,7,Yes,\"A person is sitting at a desk and laughing while reading a book, then pouring a cup of coffee in the dining room.\",book;coffee;cup;desk;dish;glass;mug;pan;table,A person is reading a book and smiling. The person then pours something from a pan in a mug.;A person smiles at something while reading a book at the table. They pour coffee into a glass.,c029 2.40 13.20;c149 3.30 9.30;c108 13.30 22.50;c009 19.50 24.80;c152 1.40 13.20;c118 12.90 25.00;c027 8.90 13.80;c032 0.00 14.20;c026 0.00 14.70;c011 0.00 25.00;c025 9.50 14.00;c028 10.00 14.70,24.12\r\nZWVO3,PKND,Dining room,6,6,Yes,A person is putting a sandwich in a cooler while another person is smiling from the doorway.,,A person is smiling and adjusting the camera while someone else is cleaning something in the background.,c152 0.00 11.40,30.62\r\nKFI7N,DXDI,Home Office / Study (A room in a house used for work),5,6,Yes,A person walks through a doorway into an office and then throws a broom onto the ground.,broom;doorway;floor,A person enters a room holding a broom. They throw the broom on the floor.,c097 0.00 5.30;c098 0.50 11.40;c101 5.50 10.00;c126 4.50 9.90,11.38\r\n87EXS,PKND,Kitchen,4,4,Yes,Person is fixing cabinet. Another person is grasping a sandwich.,cabinet;sandwich;screwdriver,\"One person worked on a kitchen cabinet with a screwdriver, while another person walked around the kitchen and into another room holding a sandwich.\",c112 26.30 32.00;c113 0.00 3.90;c067 0.00 32.00;c066 2.10 13.80,31.42\r\nCO4AU,HJJ4,Living room,5,7,Yes,A person grasps some food as they take a drink from a cup of coffee. The person sneezes.,chair;coffee;cup;dish;food;phone;sofa/couch,\"The person is sitting and drinking, they pick up their phone and then sneeze.;A person is sitting in a chair, the person is holding a cup, and grabs their phone off the table. The person sneezes.\",c106 1.00 8.50;c107 0.00 3.90;c153 6.10 12.40;c015 2.20 13.00;c059 0.00 13.00;c123 0.00 13.00;c061 1.20 13.00;c118 0.00 13.00,12.12\r\nFMOKR,0KZ7,Stairs,5,7,Yes,One person is sitting by a window snuggling with a phone and another is standing getting dressed into warm clothes.,clothes;jacket,A person picks up a shirt and jacket off the stairs and begins to get dressed.,c148 0.20 38.00;c002 0.00 3.70,37.04\r\n1M8EE,6RE8,Recreation room / Man cave,7,6,Yes,\"A person is walking into their recreation room. The person sits at their desk and begins watching television. The person turns the television off, and leaves the room.\",chair;desk;television;tv,\"a person sits in a chair and watches tv;The person sits in a chair and watches television, scratches their head and laughs, then they turn off the television and walk to the door.\",c131 22.60 27.40;c151 3.30 8.90;c154 26.10 31.10;c132 0.30 29.40;c059 4.40 30.10,32.96\r\nW70PA,9PLL,Kitchen,7,7,Yes,Person is lying on floor holding a picture of sandwich.,floor;food;sandwich,\"A person with food in one hand lays down on the floor. Holding the food with the hand, the person squirms on the floor mildly while looking at the food, grinning.\",c124 1.00 32.00;c067 0.00 32.00;c152 3.80 15.00;c061 0.00 32.00,31.33\r\n12LGF,ID9V,Bedroom,7,6,Yes,\"One person with hair in a towel walks into the room eating, then closes an open laptop before walking out.\",bag;doorway;food;laptop,There is a person standing in a doorway eating food from a bag.  That same person then closes a laptop that is on the floor.;A person walks through a doorway eating food from a bag.  The person closes a laptop.,,29.79\r\nNJZR7,HJJ4,Home Office / Study (A room in a house used for work),5,3,Yes,A person walks into the room holding an open laptop and a cup of coffee.,laptop;shelf,A person walks over to shelf carrying a laptop and a cup they sit them on the shelf and open the laptop.;A person is holding a laptop  and places it on a shelf.,c049 3.00 8.00;c081 3.00 8.00;c047 0.00 9.00;c048 5.10 11.00,10.25\r\nUBDB5,YA10,Laundry room,4,7,Yes,\"A person throws a blanket into the corner, puts on shoes, and leaves.\",blanket;floor;shoe,A person throws a blanket on the ground and then ties their shoes.,c074 1.10 6.20;c055 3.60 21.30;c125 3.10 19.40;c071 0.00 6.00,24.83\r\nWGEEK,OUKK,Home Office / Study (A room in a house used for work),1,5,Yes,\"A person is standing in their study, looking in the mirror. The person takes a box from the desk and leaves.\",book;box;coffee;desk;hands;mirror,{};The person is looking in a mirror before taking a box of a desk and leaving.;Person looking in the mirror with hands on hip pick up a book then turns around and proceed to walk out of the room,,17.17\r\nZPNW7,7I3D,Hallway,5,7,Yes,A person is snuggling with a pillow then they put it on a pile of clothes. Next they begin to wash the wall with a towel.,blanket;doorway;hall;pillow;rug;towel;wall,The  person went and picked up a pillow snuggled with the pillow put it down pick up a rug used it to cleaned wall.;A person is walking through a doorway. The person carries a pillow and blanket through the doorway into the hallway. The person cuddles the pillow. The person takes the blanket and wipes down the wall with it.,c076 32.50 52.70;c079 26.50 33.00;c097 23.70 28.80;c038 52.90 68.90;c035 51.20 55.90;c071 30.70 35.80;c033 27.90 35.50;c034 30.70 35.80;c078 32.20 53.40,70.38\r\n4ZDSO,HJJ4,Garage,7,7,Yes,A person is holding a vacuum and tidying up some books.,book;shelf;vacuum,\"A person adjusts books on a desk, while holding a vacuum with their other hand.\",c137 0.00 18.00;c082 0.00 17.50,16.50\r\nNH1CD,UO0Z,Dining room,6,5,Yes,A person is walking with food and closing a cabinet.,cabinet;cereal;food,A person is eating cereal from a box. The person walks around the room and closes a kitchen cabinet door.;Person walking around the room while eating cereal who goes to the kitchen and shuts the cabinet door.,,15.62\r\nOR3G4,HJJ4,Kitchen,5,7,Yes,\"One person grasps a towel to put over a shoulder and starts cooking at the stove, then watches what's cooking for a few moments.\",clothes;food;spatula;stove;towel,\"A person stands in front of a stove, cooking something in a pan. Before picking up the spatula and stirring, the person puts a towel over their shoulder.\",c033 0.00 24.00;c034 0.00 9.30;c035 0.00 9.20;c147 5.80 24.00;c000 0.00 8.20,23.12\r\nFXBGY,HR43,Laundry room,7,7,Yes,A person laughs and sneezes while holding a bag of groceries.,bag;chair,\"A person sneezes repeatedly while sitting on a chair andholding a bag.;A person holding a bag, sitting in a chair sneezes. The person laughs each time they sneeze.\",c020 0.00 32.00;c149 0.50 6.80;c153 0.00 32.00;c059 0.00 32.00,30.71\r\nHA02S,QZQ4,Kitchen,6,6,Yes,\"The person walks into their home, carrying a brand new broom in. The person then stands in the entryway, holding the broom deciding where to put it.\",broom;closet;door;floor;table,\"A person opens a door then comes through the doorway with a broom. The person goes to a pantry and puts the broom inside then closes the door.;A person enter a room with a broom and looks around, then walks to the closet and puts it in.\",c098 1.30 35.80;c099 31.40 38.00;c006 32.70 38.00;c008 0.00 5.30;c097 0.90 7.00,36.62\r\n1NVWD,4OHY,Living room,6,7,Yes,A person is washing a cell phone.  Then a person puts it in a bag.  A person is running with the phone in the bag.,bag;doorway;hand;phone;rag;table;towel,\"A person wiped his hands with a towel.  The person then put the towel on a table.  The person then grabbed a bag off the table then walked out.;A guy is cleaning a phone. Then, he puts the rag down, puts the phone in a purse, and takes the purse into a different room.\",c017 9.70 15.70;c021 0.00 4.40;c023 0.00 3.00;c038 0.00 6.60;c139 0.00 6.30;c150 13.30 22.50;c097 17.30 22.50;c037 0.00 13.30;c009 9.40 14.80;c034 8.00 13.90;c033 0.00 13.60,29.67\r\nGD1LA,D0RU,Living room,7,7,Yes,A person is sitting on the couch in the living room holding a blanket in their lap.  The grabs a camera from the nearby desk and lays down.,blanket;camera;desk;phone;sofa,A person is sitting in a chair with a blanket. The person grabs a camera and lies down on the chair and starts taking pictures.,c015 18.10 36.00;c070 0.00 32.80;c122 30.20 36.00;c072 0.00 32.90;c016 13.60 36.00,34.54\r\nV31YX,9PLL,Kitchen,3,4,Yes,A person is eating a sandwich and then throwing trash into a bag in the kitchen.,bag;book;counter;dish;food;plate;sandwich,\"A person takes some food from a plate and eats some, then place the remainder in a bag.;A person is writing something at the counter, then eating snack.  They put stuff away in the basket.\",c065 7.00 23.80;c156 7.00 16.90;c063 5.20 10.80;c061 0.00 27.30;c118 0.00 9.90,31.38\r\nWZA37,BYF9,Living room,7,1,No,One person is undressing and dressing when another person opens the door holding a camera.,dish;door;food;phone;plate,\"A person is talking on the phone while eating food off a dish. Another person stands in the doorway and watches.;A person is holding a plate of food and eating while talking on the phone,  while another person stands in the doorway.\",c015 0.00 5.80;c061 0.00 22.00;c156 8.40 14.80;c118 0.00 22.00;c019 0.00 22.00,20.71\r\n16UNJ,KFGP,Laundry room,5,7,Yes,A person in a laundry room picks up a pair of shoes lying on a table then opens a washing machine.,clothes;doorway;shoe;table,A person walks in the room and picks up a pair of shoes from a table.,c056 6.10 14.00;c097 0.00 6.30;c053 6.50 26.00,25.42\r\nQRM8K,YA10,Bedroom,7,6,Yes,A person in lying on a pillow and then drinking a cup of coffee and eating a sandwich in a bedroom.,bed;cup;dish;food;pillow;plate;sandwich;table,\"A person is lying in bed near a plate with a sandwich on it.  The person then picks up the plate and eats the sandwich. The person straightens the pillow and takes a cup off the table, drinks from it and puts it back.;A person who is laying on the bed picks up a plate and takes a bit out of a sandwich. They then pick up a cup and drink from it.\",c067 0.70 33.00;c110 16.20 24.00;c120 14.40 25.60;c068 2.10 14.60;c107 15.00 30.80;c106 15.00 31.20;c156 0.00 33.00;c134 0.00 33.00;c065 3.40 12.20;c069 1.00 7.40;c109 23.30 30.40;c118 1.00 19.80;c009 22.90 30.50;c061 3.10 11.20,31.88\r\nMX4FM,3H6W,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is seen watching their coffee intently. They begin sneezing and then lay their head down on the desk.,chair;coffee;cup;desk;table,\"A person picks up a coffee cup and looks inside. Then they set the coffee cup down and sneeze. Then they sit down at a desk with their head down, and they get up and leave the room.\",c110 1.60 9.10;c011 20.50 34.10;c153 12.80 20.80;c151 19.60 25.30;c154 29.20 34.30;c059 19.40 33.70,37.50\r\nSUI1X,KFGP,Hallway,4,7,Yes,A person is opening a bag and putting a laptop into it while kneeling with one knee on the ground.,bag;book;floor;laptop,A man in the hallway opens his backpack and puts an item in it. He then checks the front of it  and zippers it back up.,c021 1.70 10.30;c125 0.00 29.00;c028 8.10 19.30;c154 23.40 29.00;c020 0.00 26.40,27.54\r\nPOLVK,ZAWX,Laundry room,7,5,Yes,A person in the laundry room is smiling because they smell their clothes and they smell very fresh. They start snuggling with the clothes before putting them on a desk.,clothes;door;towel;washing machine,\"There is a person standing in front of a washing machine. That person picks up clothing out of it.  That person then smells the clothing, sneezes on it, wipes their face on the clothing and throws it in the floor.;A person takes clothes out of the washing machine. That same person then sneezes on the clothes and throws it in the floor.\",c000 3.40 20.60;c153 7.50 17.50;c002 3.10 11.20;c008 0.00 4.80;c034 12.60 24.90;c152 5.80 12.00;c033 2.80 20.80;c035 2.50 8.30,30.71\r\n0RP6B,Z68L,Home Office / Study (A room in a house used for work),6,6,Yes,\"After closing the curtains near the desk, a person sits on a chair near the doorway to open book and unexpectedly discover that a picture has fallen from it which is now lying on the floor.\",book;chair;floor;picture,\"A person closes curtains above a bed and then sits in a chair, takes a book from a table, picks up something from the floor, and reads the book.\",c026 12.80 37.00;c027 14.20 22.50;c059 13.50 37.00;c127 17.50 27.80;c151 12.60 19.50;c086 23.00 28.10;c088 20.70 26.70;c025 23.80 28.50;c032 26.10 36.60;c028 9.50 37.00;c030 9.50 37.00,35.96\r\nW2NHA,LTAC,Living room,7,7,Yes,A person is seen laughing while watching television. They then leave the room and grab a broom and start sweeping.,broom;floor;television,This person is standing and watching television.  The person is rocking back and forth from laughter.  The person then picks up a broom and starts cleaning the floor with it.;A person is laughing at a television.  The person then walks away and begins sweeping a hallway with a broom.,c098 20.00 32.00;c149 0.00 9.60;c127 20.70 32.00;c102 21.00 32.00;c132 0.00 20.00;c131 0.00 10.50;c152 1.40 19.30,30.79\r\nTEQU4,0KZ7,Garage,7,7,Yes,\"One person sits down by a broom, then starts watching something on a phone while eating.\",broom;chair;food;phone;sandwich,A person is sitting down eating a sandwich and looking at a phone while a broom is right in front of them.;A person sits down while holding a sandwich and phone. The person begins eating   the sandwich and looking at the phone.,c015 1.00 9.00;c151 0.00 4.20;c156 3.30 27.00;c065 3.30 27.00;c059 0.00 4.20;c061 0.00 27.00;c016 1.40 27.00,26.25\r\n5E8IN,3VLX,Garage,4,7,Yes,A person runs into the garage grasping a pile of books with a pair of shoes on top.,book;shoe,A person enters a garage with books in hand.,c026 0.90 24.00;c150 0.90 9.10;c053 1.20 24.00;c056 1.20 24.00,22.88\r\n8J5S4,Z68L,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is seen eating while looking at a picture. They start smiling and then turn off the nearby light.,food;light;paper/notebook;picture,A person is eating while looking at a picture and then turns off the lights.,c084 4.40 29.00;c105 19.40 24.80;c156 1.50 15.40;c115 0.00 28.40;c061 0.00 28.50,27.88\r\n0M2DO,D0RU,Bathroom,6,7,Yes,A person in a bathroom opens a cabinet. They are taking clothes out and putting them in the doorway.,cabinet;clothes;doorway,\"A person opens a cabinet, takes out clothes, walks through a doorway then throws the clothes on the floor.\",c113 4.90 11.90;c097 18.10 27.10;c003 14.80 25.70;c000 13.30 20.40;c002 4.20 14.80,31.92\r\nW8WRK,HR43,Kitchen,6,6,Yes,A person is cooking on a stove. Then they pick up a box and start playing with it.,box;food;groceries;pot;stove,\"A person is standing at a stove while cooking food in a pot.  During the cooking process, the person picks up a box of food and begins to juggle it around.  The person then pantomimes taking a 'drink' from the box, puts it down, and returns to cooking.;A person standing at a stove cooking. The person picks the box up and start throwing it back and forth in their hands.tips the box up and acts like they are eating it.\",c147 0.00 9.90;c040 9.10 34.00;c042 29.40 34.00;c043 9.20 14.90;c045 0.00 29.30;c061 9.40 20.00;c061 16.70 22.50;c064 9.40 14.70;c064 12.20 19.00;c064 21.60 26.50;c061 9.60 34.00;c130 29.70 34.00;c063 9.10 15.40;c064 13.00 34.00,33.00\r\n8M1TG,KQI6,Living room,5,4,Yes,a person smiles while putting a broom away. another person closes a cabinet and walks away.,broom;door;floor,\"A person sweeps the floor and another closes the door.;a person sweeping the floor with the broom, when another person walks over to close a door.\",c102 0.00 17.20;c152 17.90 22.40;c006 18.10 23.50;c127 23.80 32.00;c098 0.00 20.40;c141 24.20 32.00;c099 14.40 20.60,30.62\r\nVP3WN,YMXV,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person awakens at a desk, then takes medicine from a box, and pours a glass of water.\",bottle;cabinet;chair;desk;drawer;floor;medicine;table;water,\"A person is sitting on a chair, asleep on the desk. The person then opens a drawer in the desk, removes some medicine, takes the medicine, and drinks some water. The person then sets the water on the floor.;A person is laying on a desk,after a while the person opens a drawer to retrieve medicine for consumption.\",c106 15.00 22.00;c146 0.00 5.00;c113 0.00 5.00;c128 4.60 11.40;c011 0.00 4.00;c059 1.90 32.00;c129 7.40 24.00;c109 23.60 32.00;c110 9.00 15.70;c107 9.60 31.60,31.38\r\nBCO3C,JVLO,Other,5,4,Yes,A person eating food and drinking coffee is tidying a shelf.,cup;dish;drink;food;sandwich,\"A person is standing in front of a closed window eating some food, the person then picks up a small stainless steel cup and drinks from it.\",c061 0.00 31.00;c106 11.60 31.00;c156 0.00 26.80;c107 10.00 31.00;c110 10.00 15.00;c119 27.40 31.00;c118 11.20 31.00;c065 0.10 31.00;c067 0.00 31.00;c069 0.00 3.70;c063 0.00 3.70;c120 9.80 15.60,30.25\r\nIME5D,9PLL,Stairs,6,7,Yes,\"A person puts walks down the stairs, grasping a bag of food. The person puts the food on the shelf.\",bag;food;shelf;stairs,A person walks down some stairs. The person picks up a bag of groceries and beings walking down a hallway. The person then places the bag of groceries on a shelf.,c081 15.70 25.40;c063 0.10 26.50;c020 1.60 23.60,32.46\r\n5OLVC,P6LJ,Kitchen,7,7,Yes,\"A person walks into the kitchen, then pours a glass of water from the sink. The person turns to the refrigerator, and then opens it.\",cup;dish;glass;refrigerator;sink;something;water,A person turns on a camera then walks to a kitchen counter.  The person then fills a cup with water then checks the fridge.,c143 23.10 29.80;c106 18.10 23.40;c118 4.80 24.70;c109 19.40 24.70;c110 4.80 11.20;c108 7.20 19.80;c142 27.10 31.60;c120 4.60 9.80;c121 7.10 19.60;c119 19.70 24.70,32.33\r\n9AFSH,4OHY,Living room,6,7,Yes,A person is throwing a pillow onto a chair.  Then a person is running towards a blanket.,chair;pillow;sofa/couch,A person throws a pillow on a chair and gets up and runs around.,c080 3.50 10.70;c059 0.00 11.90;c150 11.70 22.00;c076 0.00 6.40;c123 0.00 10.50;c077 2.40 7.20,30.38\r\nRO429,HR43,Kitchen,7,7,Yes,\"The person was holding the groceries while heading to the refrigerator. The person set them inside, and then proceeded to cook dinner on the stove.\",bag;food;groceries;pot;refrigerator;stove,A person opens the refrigerator and puts a bag inside.  That same person then goes to the stove and is cooking with a pot.,c130 0.20 7.40;c143 0.00 6.40;c142 5.20 11.30;c147 9.30 32.00;c022 0.00 5.60;c062 0.80 8.40,31.04\r\n3X52E,Z68L,Bedroom,7,7,Yes,\"A person in the bedroom is undressing by removing their jacket and they put this jacket on a desk. Then, they start throwing a blanket on the ground.\",blanket;clothes;desk;floor;table,\"This person takes off a sweater, then sets it on a desk. The person then folds a blanket and sets it on the floor.;A person is undressing and they set their clothes on a desk, they then grab a blanket off their bed and throw it on the floor.\",c009 0.00 33.00;c071 17.00 23.70;c075 15.70 23.90;c070 0.00 3.80;c073 0.00 3.70;c000 0.00 3.10;c004 0.00 3.10;c155 0.00 2.90;c126 0.00 3.80;c001 0.00 3.30;c002 0.40 11.30;c074 14.60 19.80,32.08\r\nDBT6E,ZAWX,Bedroom,5,7,Yes,A person puts their laptop bag down on the floor. The person smiles as they remove their laptop from the bag.,bag;floor;laptop,Someone walks into a room and takes off their backpack and sits on the floor. They take out a laptop from their bag and open it.,c048 21.80 31.80;c125 10.80 33.00;c020 6.60 15.10;c021 13.50 23.40;c151 11.00 16.10;c022 8.60 15.10,31.62\r\nJDG40,D0RU,Living room,7,7,Yes,A person fixing a shelf while sneezing toward the table.,floor;shelf;table,A person is sitting on the floor fixing something on a shelf. The person then begins to sneeze.,c082 0.00 27.70;c153 16.20 27.30;c014 0.00 27.00;c154 22.40 28.50;c125 0.00 28.70,34.62\r\nN7243,BPRF,Kitchen,6,7,Yes,\"A person is sitting in a chair looking at a picture.  The person smiles and snuggles the picture, then puts the picture in the cabinet.  The person grabs a cup of coffee off the shelf and leaves.\",cabinet;chair;coffee;cup;glass;picture;shelf,A person is holding a framed picture and looking at it while smiling. They then embrace it before standing up and putting it into a cabinet. They pull out a cup from the cabinet and drink something.,c081 9.10 17.40;c106 15.50 32.00;c107 13.80 24.60;c113 7.70 14.90;c086 5.50 11.80;c154 6.80 14.00;c059 0.00 10.40;c088 0.00 9.70;c084 0.00 18.10,30.67\r\nNI4JV,CCI9,Stairs,6,6,Yes,A person standing on stairs fixing a laptop while another person is grasping a glass.,laptop,A person is on the stairs uses a laptop while another person watches.,c051 0.00 33.00;c047 0.00 33.00;c152 25.60 33.00,31.62\r\nHPFF1,ZAWX,Basement (A room below the ground floor),7,7,Yes,The person was fixing the television in their basement. As the person worked at the desk the person smiled at their progress.,television;towel,A person is fixing a television on a wall. Then the person grabs a towel and wipes off the screen of the television.,c152 21.80 32.00;c035 6.10 11.50;c033 6.90 21.80;c034 18.00 22.90;c038 7.80 21.50,30.67\r\nTON6G,2Q9D,Garage,7,7,Yes,A person is holding a laptop. The person puts the laptop down on a table and runs out of the garage.,box;door;laptop,A person holding a laptop places it on a box and leaves the scene.;A person is holding a laptop. The person closes and sets down the laptop. The person runs up the stairs and out of the door.,c046 13.20 18.60;c047 0.20 17.20;c150 17.70 25.60;c008 18.60 24.60;c141 18.50 23.40;c052 0.00 18.60;c097 19.30 25.20;c051 0.00 17.40,25.79\r\nC4E9X,OUKK,Laundry room,7,7,Yes,\"One person pours coffee, then stands by the laundry cabinet working.\",cabinet;clothes;coffee;cup,A person is in the laundry room pouring a cup of coffee. They then open a cabinet.,c106 9.40 16.60;c108 0.00 11.10;c113 16.90 23.80;c107 0.00 21.60;c109 13.50 21.50,25.25\r\nNH3LX,Z68L,Living room,6,6,Yes,The person putting the phone by the book begins drinking.,book;glass;phone;sofa/couch;table,\"A person walks over and sits down on a couch while talking on a phone. They then take a glass of water and drink from it, get up, and walk away.\",c019 0.80 28.70;c151 2.90 9.70;c154 36.10 41.40;c109 33.30 38.60;c015 1.00 31.00;c110 26.80 31.70;c123 4.90 40.30;c106 28.80 36.40;c009 32.40 39.20,42.96\r\n4JOAD,R1OT,Kitchen,5,7,Yes,The person puts groceries down and starts tidying the counter with a towel. Then they start walking toward the door.,bag;counter;door;groceries;rag;shelf;towel,A person sets down their bag beside the counter. They pick up a rag and begin to clean the kitchen counter with before they turn to walk across the room and out the door.,c020 0.00 3.40;c130 0.00 5.80;c034 14.80 21.40;c038 9.60 17.60;c033 4.10 9.10;c082 2.80 7.80;c033 2.50 20.80;c082 2.50 20.80;c022 0.00 4.90;c035 2.10 7.00,24.96\r\n5U70R,C7O9,Stairs,3,5,Yes,A person is walking down the stairs holding a vacuum.  Another person is at the bottom of the step with a laptop.  The person closes the laptop and takes their camera out of their pocket.,camera;laptop;stairs;vacuum,A person is sitting on the stairs with their laptop. Another person walks down the stairs with a vacuum. Then the person sitting closes the laptop and grabs their camera.,c137 7.60 25.60;c046 25.80 34.00;c047 0.00 34.00;c016 27.50 34.00;c051 0.00 10.90,32.92\r\nWT59C,YMXV,Bedroom,4,6,Yes,A person is grasping a book and throwing a broom on the floor.,book;broom;floor,A person is looking through a book. The person picks up a broom then throws it onto the floor.,c098 14.30 22.30;c027 5.40 11.20;c126 17.60 23.10;c115 0.00 32.00,30.71\r\nWJT09,BYF9,Entryway (A hall that is generally located at the entrance of a house),6,5,No,A person is grasping a bag of groceries while walking in the door. Another person is taking medicine while leaving out the door.,bag;door,A person wearing a bathrobe and holding a bag walks through a door way. Then a another person leaves through that same doorway.,c006 7.80 14.00;c008 5.90 11.30;c020 6.70 17.50;c097 7.10 12.60;c141 9.20 13.70,17.17\r\nBIW43,WG9D,Bedroom,5,7,Yes,Person is grasping vacuum cleaner and laughing while talking on phone.,bed;phone;vacuum,\"A person is on the bed with a vacuum, while talking on the phone.;A person is laying on the bed next to a vacuum while talking on the phone.\",c019 0.00 7.00;c016 0.00 7.00;c137 0.00 7.00;c134 0.00 7.00;c149 2.00 7.00;c135 0.00 7.00;c152 2.00 7.00,6.42\r\nBJO5X,UTMU,Dining room,4,7,Yes,A person is laughing while standing on a chair in the Dining room while eating off of small dishes.,chair;cup;food;table,\"A person inters the room ,climbs up on a chair and proceeds to eat something out of a cup while standing on the chair.The person climbs off the chair puts the cup on the table and proceeds to leave the room.;A person walks into a room and stands on a chair, they then begin eating some food.\",c060 1.60 29.90;c156 5.30 24.10;c061 2.10 30.30,31.54\r\nFXC28,HRH1,Bedroom,5,7,Yes,\"A person is lying on the bed doing homework. They are surrounded by groceries. They stop doing the work, and play with the groceries for a moment. Then they lay on their back, and throw a blanket in the air repeatedly.\",bed;blanket;food;groceries;paper,There is a person laying in bed writing on paper.  That same person then stops and moves a bag of chips.  That same person then picks up a blanket and tosses it in the air.,c145 0.90 9.10;c134 4.60 12.70;c071 14.30 25.90;c130 10.90 22.00;c115 0.00 9.50;c062 11.40 20.00;c074 18.30 30.10;c074 25.50 30.10,33.79\r\n1H6PS,C7O9,Laundry room,6,6,Yes,\"A person is leaving a room with a sandwich, then they start sneezing on the food.\",doorway;food;sandwich,\"a person eats some food and then sneezes in a doorway;The person is walking from the laundry room into the doorway. The person is holding and eating a sandwich. The person sneezes on the sandwich repeatedly. The person tries to wipe off the sandwich, but then sneezes on it again. The person walks through the doorway.\",c065 0.00 6.80;c067 0.00 26.00;c061 0.00 26.00;c153 2.80 25.10;c156 0.00 6.80;c097 20.20 26.00,25.38\r\n16CWY,YMXV,Laundry room,2,4,Yes,\"A person is laughing as the person looks at a picture. Then, smiling, the person sits down to put their shoes on.\",chair;shoe;table;television;tv,\"A person is sitting in a chair watching television while laughing. While watching, the person puts their shoes on.;Someone is sitting on a chair watching tv and laughing. They then put on shoes.\",c053 8.80 14.20;c056 8.10 12.90;c152 0.00 6.40;c131 0.00 5.80;c055 8.60 33.00;c149 0.00 13.40;c059 0.00 33.00;c132 0.00 33.00;c011 0.00 33.00,31.54\r\nHDP39,18IT,Home Office / Study (A room in a house used for work),6,6,Yes,A person is watching their homework on a shelf and another person is wearing a towel and drinking water.,book;chair;cup/glass/bottle;desk;homework;paper;shelf;table;towel;water,A shirtless person drinks out of a bottle. Another person sits at a desk does homework then stand up and reaches for some notebooks.;A person wearing a towel drinks water from a bottle. Another person working at a desk stands up and rummages through the shelf.,c082 13.40 35.00;c145 0.00 16.50;c154 0.00 35.00;c011 0.00 16.00;c116 0.00 15.00;c106 0.00 13.00;c059 0.00 16.00;c107 0.00 35.00;c032 1.60 16.20,34.08\r\nDY9AE,DBGJ,Bedroom,7,7,Yes,A person is grasping a sandwich then sneezes and and starts laughing while looking at a bag.,bag;bed;food;plate;sandwich,A person eats food while sitting on a bed before sneezing and grabbing a bag of food.;A person sitting on a bed is eating a sandwich from a plate they're holding. They sneeze and grasp a clear bag with bread in it.,c020 12.90 27.00;c023 11.90 18.90;c067 0.00 13.50;c149 14.10 27.00;c065 0.40 11.00;c153 7.40 15.70;c135 0.00 27.00;c061 0.00 13.00;c156 0.00 9.50;c152 13.80 27.00,26.38\r\nGN4SJ,9PLL,Kitchen,4,7,Yes,\"One person eats from a bag, then puts the bag in a box and takes the box to the window.\",bag;container;dish;food;light;window,A person is holding a bag and eats something. The person picks up a container and holds it to the window.;The person put their hand in the bag and eats a piece of food.  The person then folds the bag of food up and puts it into a plastic covered container and holds it up in the light.,c020 2.40 8.20;c156 0.00 6.60;c061 18.30 34.00;c062 2.80 14.00;c118 20.10 27.20;c063 14.20 25.30;c022 5.40 21.50;c120 16.00 21.20;c092 9.00 14.00,32.71\r\nKPXQ0,ZAWX,Other,3,7,Yes,\"One person grasping a flashlight takes a laptop from a chair in the closet, then starts sneezing.\",chair;doorway;flashlight;laptop,The person walks in the room holding a flashlight and lays the flashlight on a chair.  They then pick up a laptop and sneeze.,c047 13.60 29.80;c050 12.00 18.80;c153 17.20 24.40;c097 0.00 5.30;c049 23.60 31.00,30.04\r\nXKGMC,5LWB,Hallway,6,6,Yes,A person is standing on a towel while another person is running towards a vacuum.,stairs;wall,\"A person is running down the stairs, while another stares at the wall.;A person is standing at the bottom of a staircase. Another person runs down the stairs.\",c150 3.10 12.60,12.50\r\n5M17J,2RTW,Kitchen,6,6,Yes,\"A person is taking items from a box, opening cabinet doors, and putting things on a shelf.\",box;cabinet;door;food;groceries;shelf;stove,\"The person opens a box containing spices and opens a cabinet. The person places spices on cabinet.;A person begins unpacking groceries from a box they've placed on their stove, and putting them onto a shelf in a nearby cabinet.\",c113 4.00 23.70;c041 8.70 18.60;c081 19.10 32.40;c008 14.20 26.60;c061 0.00 37.00;c044 5.10 37.00;c114 4.60 10.60;c062 3.80 9.70;c130 4.00 9.50,36.38\r\n78LXZ,HR43,Laundry room,5,7,Yes,\"One person takes a stack of clothes and a book from the laundry room, then starts smiling.\",book;clothes;doorway,A person walks into the laundry  room with a pile of clothes picks up a book and walks back out.,c026 0.00 9.50;c000 0.00 17.00;c002 14.20 17.00;c097 14.20 17.00;c030 14.20 17.00,16.17\r\nCL29C,2RTW,Bedroom,6,6,Yes,\"A person is sitting at a desk, holding a phone to their ear.\",chair;desk;laptop;phone;table,A person is sitting at a desk in front of a laptop talking on the phone with their legs crossed.;A person is sitting in a chair in front of a laptop talking on a phone.,c015 0.00 31.00;c011 0.00 31.00;c019 0.00 31.00;c059 0.00 31.00,30.42\r\nG7GVD,KASL,Dining room,6,7,Yes,A person smiles as they work at their laptop at the dining room table. The person kicks off their shoes and leans back.,chair;foot;laptop;phone;shoe;table,\"A person is sitting at a table working on a laptop. After looking at the laptop for a few seconds, the person puts their foot up on the table and takes off a shoe.;The person was working on a laptop on a table and checking their phone. The person kicked off a shoe rested their leg on the table\",c052 5.70 23.90;c057 21.90 27.70;c009 4.00 9.70;c152 22.20 47.10;c016 2.70 9.00;c059 0.00 51.00;c011 0.00 51.00;c149 19.90 25.20,49.75\r\nRECCV,KFGP,Hallway,5,7,Yes,\"A person is lying on a blanket by the closet door, playing a game of hide-and-seek.\",blanket;door;floor;game,The person is lying on the floor clutching a towel and looking at something.,c070 5.00 35.00;c124 0.00 35.00,34.04\r\nVOBBG,XXN8,Kitchen,5,6,Yes,\"A person is sitting at the dining room table. The person is holding their mobile phone. The person takes a picture of their food, then begins eating their dinner. The person finishes then takes the dishes to the kitchen.\",chair;dish;food;phone,\"A person sitting and eating food from a plate, looks at a phone then gets up and takes the dish to near the sink, pausing to look at the camera.\",c015 1.10 21.60;c016 0.00 21.80;c061 0.00 18.80;c156 0.10 19.50;c154 16.70 24.40;c120 16.80 27.90;c063 16.70 28.00;c059 0.00 22.70;c087 4.90 14.60;c017 16.80 22.10;c119 21.90 28.30;c118 17.60 25.70,30.58\r\nJUCOK,DXDI,Bathroom,6,7,Yes,A person is eating food on while sitting on the toilet. The person then places the dirty dishes into a box and closes it.,box;dish;floor;food;plate;toilet,\"A person is sitting on a toilet holding a plate, eating the food off it.  The person puts the plate in a box and closes the box.;A person sits on the toilet in the bathroom, eating food from a plate. The person then sets the plate in a box on the floor, and shuts the box.\",c039 18.40 28.90;c156 0.00 21.50;c118 0.00 21.30;c119 16.90 22.50,30.38\r\nAH32F,EIO2,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is in the entryway putting a broom in the corner.  The person picks up a glass from the table and walks it to the kitchen.,broom;corner;cup;dish;doorway;glass;table,Person grabs mop and begins to straighten up table. They then grab a glass and exits the room.,c107 17.10 34.00;c009 17.40 22.10;c097 0.00 3.60;c012 17.30 28.70;c120 19.60 33.10,32.92\r\n3AEF5,4OHY,Closet / Walk-in closet / Spear closet,4,6,Yes,\"One person puts a blanket in a box, then stands on a chair to put it in a cabinet.\",box;cabinet;chair;shelf;towel,\"The person folds a towel, and puts it in a box. They carry the box, and then stand on a chair to put the box on top of something.;A person puts a towel into a box in a closet. Then then close the box, and put it on a shelf.\",c039 2.80 8.40;c042 20.70 31.00;c034 0.00 6.30;c036 27.60 31.00;c040 27.70 31.00;c043 27.70 31.00;c033 0.00 4.10;c081 7.20 31.00;c060 16.10 31.00,29.67\r\nJYG8P,YMXV,Living room,6,5,Yes,A person is washing the window.  Then the person sits in front of the television.,closet/cabinet;television;towel;window,A person is washing a cabinet window and then washes the entire cabinet.,c091 0.00 19.30;c132 0.00 31.00;c033 5.60 31.00;c038 5.20 31.00;c114 0.00 31.00,30.50\r\nZP8AL,D0RU,Hallway,5,5,Yes,\"A person runs into the room, holding a pillow. The person throws the pillow back out through the doorway.\",doorway;floor;pillow,A person runs through a doorway holding a pillow before throwing the pillow onto the floor.,c076 5.60 16.10;c097 5.90 11.30;c150 13.00 19.00;c126 10.70 16.40;c080 10.70 16.40,30.92\r\nKZPBC,PKND,Other,7,7,Yes,A person walks to a blanket on the floor and takes off their shoes.  The person lays down and opens a book to read.,blanket;book;floor,\"a person walking around, then decides to lay down on a blanket on the floor, opens and reads a book\",c124 14.20 40.00;c027 11.20 18.60;c026 8.30 40.00;c032 14.60 40.00;c029 14.20 33.80,39.46\r\nE3UZP,Z68L,Bedroom,7,7,Yes,\"A person is in a bedroom working on sweeping the floor with a broom, they then grasp a chair on move it out of the way.\",broom;chair;floor,A person is sweeping the floor with a broom and moves a chair out of the way.,c102 0.00 33.00;c127 0.00 9.80;c098 0.00 33.00,31.75\r\nKNIZK,D0RU,Bedroom,7,7,Yes,\"A person awakens in a chair, with a book on their chest. The person takes a glass of water from a nearby table and takes a drink.\",book;chair;cup,\"Person lays on chair holding book. Then sits up, picks up a cup and drinks from it.\",c110 27.30 33.70;c059 0.00 35.00;c146 22.60 31.00;c107 29.00 35.00;c106 29.20 35.00;c026 0.00 35.00,34.08\r\nUS6P9,L4ZP,Living room,6,6,Yes,A person is holding a picture when suddenly their phone rings. They quickly sit down before answering.,light;phone;picture;shelf,\"Person standing holding a picture and looking at it, turns on the light, then sets the picture down to answer the phone.;A person turns on a light, while holding a picture.  He puts the picture down and answers the phone.\",c088 0.00 21.50;c019 20.30 25.00;c104 1.50 7.70;c086 17.00 22.80;c015 18.40 25.00;c084 0.00 22.90;c018 17.20 23.20,24.12\r\nCR5G1,YMXV,Bedroom,5,6,Yes,\"A person is walking into the room and talking on the phone. Then, laughing, the person sits down and covers himself with a blanket.\",blanket;floor;phone,The person talks on the phone. Then the person sits on the floor and covers themself with a blanket.,c015 0.00 17.00;c019 0.00 16.30;c072 23.90 33.00;c073 13.10 18.60;c151 8.80 14.90;c125 10.90 26.90;c124 11.80 33.00;c070 13.60 27.10,32.12\r\nVS5IY,UTMU,Home Office / Study (A room in a house used for work),7,7,Yes,A person walks into their office and puts a glass of milk on a table. The person starts tidying up some paperwork on their desk and starts getting dressed for work.,bag;book;clothes;coat;cup;desk;glass;papers;purse;table,The person walks in to the room puts a glass down and begins to tidy up papers.The person then grabs a coat and purse and walks away.;A person places a glass on a table before getting dressed and leaving.,c012 3.60 15.50;c109 1.00 7.50;c009 1.90 7.30;c148 14.10 26.00;c002 12.40 18.10;c023 23.50 29.70;c000 13.70 20.30;c020 24.60 32.00;c116 4.30 10.20;c028 9.40 15.20,31.29\r\nA2XH1,D0RU,Entryway (A hall that is generally located at the entrance of a house),7,5,Yes,A person is eating a sandwich and then lying in the doorway of the entryway.,dish;doorway;floor;food;sandwich,A person is eating a morsel of food. He then sits down against a wall and continues to eat it.,c065 0.00 33.00;c067 0.00 33.00;c156 2.40 33.00;c151 12.10 19.80;c152 29.40 33.00;c149 30.20 33.00;c061 0.00 33.00;c063 0.00 6.90;c125 14.30 33.00;c118 0.00 33.00,32.33\r\n74DPG,UTMU,Kitchen,6,7,Yes,\"Person is  wrapped in blanket sitting on chair pouring tea in cup, then starts drinking it.\",blanket;chair;dish;glass;towel,\"A person walks into a kitchen with a towel draped over the shoulders. The person sits at a chair next to the stove, takes a mug and sips from it, then gets up and walks away.\",c059 5.70 15.80;c072 7.50 38.40;c059 7.90 38.40;c033 0.00 41.00;c110 4.90 12.30;c119 34.60 40.00;c070 0.00 41.00;c108 10.70 19.40;c154 34.60 40.40;c118 4.90 39.40;c106 20.70 36.60;c109 15.80 22.00;c151 7.10 13.10;c107 4.90 21.60,40.42\r\nSXDG5,EA2K,Garage,7,7,Yes,A smiling person turns on the light in their garage and does their homework while laughing.,book;chair;desk;homework;light;paper;pen;table,\"The person walks into a room turns on the light, sits and begins to work on homework.;A person turns on a light and proceeds to go to a desk.The person sits down and smiles ,picks up a book and flips the pages.The person starts writing and smiling.\",c104 1.00 14.20;c152 13.80 22.70;c151 13.90 20.90;c011 15.70 40.00;c059 14.90 40.00;c145 16.30 40.00;c149 15.70 40.00;c014 16.90 40.00;c032 19.50 40.00;c115 0.00 14.80,39.21\r\nYJ888,0RNU,Garage,5,7,Yes,\"While seated on a blanket, a person opens a bag and removes a snack that the person then eats. The person then closes the bag.\",bag;floor;food,a person sits on the floor and gets some food out of a bag;A person is sitting on a blanket in a garage they open their bag and take out something to eat they look around and close the bag,c021 0.00 12.90;c156 10.40 15.80;c125 0.00 35.00;c020 0.70 35.00,33.50\r\nW4W97,0KZ7,Laundry room,3,1,No,\"A person is sneezing while tidying the laundry room. They look at their reflection in a mirror, smile, and take a drink from a glass.\",clothes;cup;floor;glass;towel,Person walking through the room kick and moving clothes picking up a grass and drink from the glass,c106 13.90 21.60;c003 2.10 9.60;c126 2.50 9.20;c127 2.30 9.10;c107 13.50 22.20;c110 13.30 23.00;c152 13.20 18.30;c109 13.20 21.90;c036 5.10 9.40;c004 2.00 9.40;c037 4.80 9.10,22.25\r\nVTAX3,BYF9,Living room,7,7,Yes,One person is wrapped in a blanket watching something on a laptop. Another person is throwing food at the person on the couch and laughing.,blanket;food;laptop;sofa,A person walks over to another person who is on a laptop and starts throwing food at the person.,c047 0.00 17.00;c072 0.00 17.00;c122 0.00 17.00;c064 4.10 16.80;c149 12.80 17.00;c152 4.60 17.00,16.25\r\nRHYAJ,R1OT,Bedroom,4,4,Yes,A person is snuggling a pillow while throwing the homework.,bed;blanket;book;homework;paper;pillow,A person is review notes in their bed before snuggling up with a pillow.,c115 0.00 16.90;c072 14.50 30.00;c028 12.60 17.50;c116 10.50 15.20;c078 18.40 30.00;c027 0.00 16.40;c026 0.00 16.60;c031 13.50 18.10;c134 0.00 30.00,28.96\r\n9NV2G,HRH1,Bedroom,6,7,Yes,A person awakens in bed and grasps a cup of coffee on the nightstand. The person opens a box and looks inside.,bed;blanket;box;coffee;cup;glass,Person lying in bed pick up a glass of coffee from a table pick up something off the table and look at it,c134 0.00 34.00;c106 11.00 20.00;c107 7.10 20.90;c109 14.30 23.10;c072 0.00 34.00;c146 2.50 10.10,33.12\r\n57QKQ,EIO2,Pantry,6,6,Yes,\"One person opens a window and puts a blanket on the table, smiling.\",blanket;clothes;window,\"A person wearing a blanket walks in, throws the blanket toward the floor and looks out the window. The person then walks away.\",c092 1.00 12.50;c074 9.10 16.30;c090 3.30 10.90;c003 12.00 16.60,29.96\r\nLUYWY,YMXV,Bedroom,5,7,Yes,A person is laughing at a book while taking a picture.,book;camera;chair;phone;picture,\"Someone is sitting on a chair reading a book. They take out a camera and start taking pictures of the pages.;A person is sitting in a chair , reading a book. While laughing at the book, the person takes out their phone and looks at it.\",c026 0.00 12.60;c027 16.50 22.20;c032 0.00 12.60;c059 0.00 31.00;c087 10.80 31.00;c015 19.10 26.80;c025 7.30 12.60;c016 8.10 31.00;c028 0.00 13.80,30.50\r\nY5826,AH2J,Kitchen,7,7,Yes,A person is cooking at a stove then they begin to play with some food that's on the counter.,food;homework;stove,A person is cooking food on a stove. A person is looking at homework.,c147 0.00 4.20;c147 2.70 27.40;c064 10.80 33.80;c064 23.90 35.00,33.50\r\nIZ978,Z68L,Bathroom,5,7,Yes,A person is sitting on a toilet undressing. The person stands up and grasps their camera phone in the person's hand.  The takes a picture of themself with their camera phone against the door of the bathroom.,battery;camera;clothes;door;hand;jacket;phone;picture;toilet,\"A person is sitting on a toilet, picks up a phone and battery that are on the ground, puts the battery into the phone, takes off a jacket, then stands and takes selfies against the bathroom door.;Person undressing in the bathroom after picking something off the floor then take a picture.\",c018 0.00 15.70;c154 26.20 32.00;c000 24.40 30.00;c015 0.00 17.30;c155 13.50 28.60;c087 29.60 35.90,39.62\r\nORD96,LTAC,Laundry room,7,7,Yes,A person is standing in their laundry room with a pillow in their left hand. They put the pillow down and pick up some groceries that they start washing under the sink.,blanket;bowl;clothes;food;hand;pillow;sink;something,A person is standing around with a blanket. The person then drops the blanket on the floor and walks to a sink to wash hands.;A person is holding a pillow.  The person the drops a pillow.  The person then takes something from a bowl and washes it in the sink.  The person then smacks the bowl to the ground.,c139 11.80 31.00;c076 0.00 12.30;c061 13.20 31.00;c080 8.30 13.10;c003 8.50 14.60;c063 14.10 31.00;c000 0.00 13.10,30.38\r\nCALKE,3H6W,Dining room,7,7,Yes,\"A person is in a dining room dressing and putting on shoes, they then smile as they tidy up the table.\",clothes;shoe;table;towel,A man enters the room and sits on the chair as he puts on his coat and shoes. Then he begins to unpack groceries and put them on the table.,c148 12.00 27.60;c151 7.90 13.10;c055 18.10 26.90;c152 28.00 47.20;c009 28.50 44.60;c011 9.90 15.80;c033 38.20 48.20;c038 38.20 48.20;c002 10.80 28.40;c012 26.80 47.50;c013 26.80 47.50,48.33\r\nW6TFQ,LTAC,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is eating food in the entryway, the they sneeze as they open the door.\",closet/cabinet;door;food,A person is standing by a door eating food out of a container. The person then opens the doorway.,c008 19.60 33.00;c061 0.00 33.00;c062 14.30 22.00;c156 0.00 20.70;c113 22.50 27.40,32.17\r\nAOMNM,OUKK,Closet / Walk-in closet / Spear closet,2,5,Yes,\"A person runs into the closet, carrying a pile of clothes. The person begins working on putting the clothes away.\",closet;clothes;floor,A person is running to their closet with some clothes in their hand. They put them on the top shelf before bending down to look at something.,c001 0.80 31.00;c150 0.00 5.10;c127 26.80 31.00;c114 4.90 31.00,29.75\r\n4FXUI,D0RU,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person sits at their desk, working on their laptop. The person closes the laptop and smiles.\",chair;desk;door;laptop;table,\"A person is sitting at a desk typing on a laptop.  The person scratches their head, types more, closes the computer and walks out of the room.;A person sitting at a lap top and desk .The person is working on the computer.The person gets up and halfway closes the top on the computer.The person proceeds to leave the room\",c046 35.00 42.30;c051 0.00 37.90;c011 0.00 41.20;c154 35.00 41.90;c052 0.00 41.20;c059 0.00 41.00,44.25\r\nUPCQK,P6LJ,Basement (A room below the ground floor),5,6,Yes,A person is standing in the basement folding clothes.  The person grabs a blanket from the pile and puts it to the side.,blanket;clothes;table;towel,\"A person folds a towel, and then takes a bunch of cloths and puts them aside.\",c000 1.00 18.60;c002 0.70 5.60;c070 16.00 29.00;c073 15.80 21.60;c001 13.10 19.70;c004 1.00 19.50;c071 20.30 29.60;c012 2.00 18.90;c150 0.00 5.90;c034 23.80 28.50;c035 17.50 24.60;c009 21.80 29.60,29.92\r\nEVU9O,2RTW,Living room,6,6,Yes,A person is snuggling with a pillow on the couch in the recreation room.  Another person is sneezing by the door.,blanket;chair;pillow;sofa;towel,\"Someone is sitting on a sofa hugging a pillow. Another person off to the side sneezes and wipes their hands on a towel.;The person is sitting on a couch holding onto a pillow,while the other person stands and watched while touching a towel.\",c123 0.00 32.00;c078 0.00 32.00;c153 16.00 25.30;c035 20.30 26.70;c072 0.00 20.00,30.67\r\nC1LVJ,XXN8,Dining room,7,7,Yes,\"One person grasps a pillow from a chair and starts playing with it, then puts the pillow down.\",chair;pillow,A person picks up a pillow from a chair and starts playing with the pillow.,c076 0.00 18.40;c080 0.20 18.10;c154 14.70 20.00;c077 13.80 18.60;c079 0.00 4.30;c152 0.00 5.70,30.38\r\nFPJKR,L4ZP,Bedroom,6,6,Yes,A person runs into their home office and takes a glass from the shelf. The person quickly leaves.,cup;doorway;glass;shelf,A person runs into a room and takes a glass off of a shelf and then leaves the room.,c107 4.10 14.60;c150 10.50 15.50;c097 11.00 16.70;c110 4.20 9.40,21.62\r\nJJ47B,KFGP,Hallway,6,7,Yes,\"The person is sitting in a chair in the hallway, then takes a phone from a small cabinet next to the chair.\",cabinet;chair;phone,A person is sitting on a chair and pulls a phone from a cabinet.,c018 12.60 19.30;c059 0.00 29.00;c113 10.50 21.10;c015 14.20 29.00;c016 17.80 29.00,27.83\r\nXLXJ3,BYF9,Closet / Walk-in closet / Spear closet,6,7,Yes,A person is grasping a blanket in one hand and a laptop in the other. They drop the blanket and laugh.,blanket;floor;hand;laptop;towel,two persons standing and laughing one person holding a laptop and drops a blanket,c047 0.00 17.00;c074 2.20 7.70;c149 5.50 17.00;c126 2.70 7.40;c152 0.00 17.00;c036 2.60 7.10,15.71\r\n7KAVM,D0RU,Home Office / Study (A room in a house used for work),3,5,Yes,One person is sitting on a pillow drinking when another person takes a bag from the doorway.,bag;bottle;chair;doorway;floor;stool,A person sitting stool holding a plastic bottle.The person takes a drink from the bottle.Another person enters the room carrying a bag and lays it on a table.;A person is sitting on a chair and drinking from a bottle. Another person picks up a bag from the floor and places it to the side as they walk out of the room.,c020 9.40 25.30;c021 11.40 17.30;c022 16.70 25.50;c023 10.30 25.50;c097 8.90 18.00;c125 0.00 32.00;c107 0.00 13.70;c107 12.90 21.20;c107 18.60 25.00;c106 9.10 13.70;c127 10.30 15.70,30.58\r\nVMOBC,P6LJ,Living room,5,7,Yes,\"A person walks down the hall, eating a sandwich. The person turns to one of the doors, opens it, and leaves through that doorway.\",door;food;sandwich,A person walks back and forth eating a sandwich before opening a door and leaving.,c065 6.50 20.50;c097 20.40 26.70;c008 18.90 26.00;c156 6.50 21.50;c067 3.90 34.00;c061 3.90 34.00;c141 18.90 27.40,32.67\r\nTVCQF,18IT,Home Office / Study (A room in a house used for work),6,6,Yes,One person in the doorway pours a drink and starts drinking. Another person closes a box on a shelf that has a stack of homework on it.,book;bottle;box;closet;desk;doorway;paper;table;water,\"A person is drinking water, while another person is opening a box.;A person walks in a room and pours a bit of water out, then stands in the doorway drinking the water from a bottle.  Another person in the room gets up from their desk, goes to the closet and begins to look through a box.\",c041 12.00 17.00;c145 6.00 12.00;c097 0.00 4.00;c154 8.90 15.00;c106 4.70 10.70;c039 12.30 24.70;c011 6.50 13.90,24.46\r\nM8MP0,0RNU,Garage,6,7,Yes,\"One person fixes a light in the garage, then leaves with a bundle of clothes.\",clothes;cloths;light,A person is putting together a lamp. Then they grab some cloths and leave.,c000 22.60 32.00;c103 0.00 25.80;c154 22.60 30.80;c002 23.40 32.00,31.25\r\nV4H5D,WG9D,Bathroom,3,6,Yes,A person gets dressed while holding a glass and looking in the mirror.,clothes;cup;glass;jacket;mirror,\"A person puts on a jacket while looking in the mirror and picks up a glass.;The person was standing ,put on a jacket adjusted the jacket looked in the mirror put on the jacket hoodie.\",c107 13.30 31.00;c096 7.10 16.80;c148 0.00 15.60,29.92\r\n5GG5W,ID9V,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is holding shoes as they stand in a walk-in closet. The person then grasps the doorknob and leaves the closet.,closet;door;shoe;wardrobe,\"A person opens a door to a wardrobe and goes inside. That same person then picks up a pair of shoes.;A person opens a closet, and gets a pair of shoes. A person then closes the closet door.\",c053 7.10 17.80;c154 5.40 15.10;c113 0.00 8.20;c151 2.30 10.00;c008 0.00 8.00;c056 5.40 27.80;c112 23.50 30.00,28.88\r\n6QW3Y,6NQX,Stairs,7,7,Yes,A person throws their bag down on the stairs. A person grabs their homework out of the bag and closes the bag.,bag;book;doorway;homework;paper;pillow,A person throws a bag downstairs. That same person walks down the stairs and brings up some homework.,c117 5.30 21.80;c024 0.00 3.50;c097 0.50 8.80;c080 0.00 2.50;c026 17.10 26.00,25.04\r\nACAK4,4OHY,Recreation room / Man cave,6,7,Yes,\"A person in their recreation room is playing with their laptop. They pick up a towel and start snuggling into it, while also sneezing because they may be allergic to something on the towel.\",bed;blanket;laptop;sofa;table;towel,A person is sitting on a couch working on a laptop.  The person takes a towel from a chair and sneezes.;A person sits at a table working on their laptop. They grab a blanket then begin sneezing.,c033 16.90 31.00;c038 15.00 27.30;c052 0.00 13.20;c123 0.00 31.00;c073 12.90 18.80;c035 13.60 22.10;c051 2.90 8.10;c153 18.70 24.60;c011 0.00 31.00;c070 12.40 31.00,29.67\r\nX0FW6,UO0Z,Kitchen,6,5,Yes,\"A person runs into the kitchen, then sits down and removes their shoes. The person stands up out of the chair and walks to the door, putting their hand on the doorknob.\",door;hand;shoe;sofa,\"A person is running through a living room. The person sits on a couch, takes shoes off, then stands up. The person walks to a door and grabs the doorknob.\",c057 2.30 11.10;c150 0.00 4.80;c154 7.10 12.60;c141 10.50 14.00;c058 4.50 10.90;c151 1.00 5.70;c123 1.20 5.80;c008 10.46 14.00,12.58\r\nA5PL0,P3TI,Kitchen,6,6,Yes,A person is grasping at some medicine that's on the counter.  The person then opens up a bag of groceries to look inside.,bag;counter;groceries;medicine,Person in kitchen standing at counter looking at some medicine bottles decides to open up grocery bag and take a look in.,c021 17.60 31.00;c128 0.00 20.40,37.54\r\nXLQ6X,ZEM0,Living room,4,7,Yes,A person throws a pillow and blanket on the sofa before leaving the living room and closing the door.,blanket;camera;door;pillow;sofa,\"Person walks in with blankets, throws blankets onto sofa, and walks through doorway out of room.;The person turns the camera on, then walks across the room out of view of the camera and then walks back into the room holding some blankets and throws them on the couch and then walks into a different room, shuts the door and then opens it and walks over to the camera and turns it off.\",c070 7.20 13.10;c006 17.30 23.20;c076 8.10 13.30;c080 13.00 18.00;c097 15.70 21.10;c074 10.30 15.70;c008 24.10 29.50;c071 10.20 18.20,34.62\r\n9HIE0,9Y7F,Kitchen,5,6,Yes,A person is cooking food on the stove. Another person is smiling as they enter the room.,doorway;food;stove,\"A person is cooking something on a stove, another person walks in and begins sneezing.;A person is cooking on the stove when another person walks through the door way and comes over to the first person and plays with a phone.\",c147 0.00 8.50;c097 8.90 19.00;c061 0.90 9.70;c152 16.70 25.70,30.67\r\nE8C24,YA10,Kitchen,7,7,Yes,A person is running into the kitchen to check on the stove. They have left a pot of food cooking on the stove and they put down the book they were carrying on the counter next to them.,book;food;stove,A person runs into the kitchen holding a book.  They put it down next to the stove and begin cooking food on the stove.,c026 0.50 8.90;c028 3.30 9.20;c150 0.20 6.70;c147 5.00 20.90,24.12\r\nOG1LT,WG9D,Kitchen,4,1,No,\"One person runs past a chair and takes a glass from a wardrobe, then closes it.\",cabinet;chair;cup;glass;something,\"The person walks into the kitchen, opens a cabinet, and removes an item that appears to be a coffee cup or glass.;a person grabs something out of a vabinet\",c110 4.50 9.90;c113 2.60 8.10;c112 5.70 10.00,9.12\r\nYD8BF,HJJ4,Dining room,4,7,Yes,A person awakens sitting at a table in a dining room holding a pillow. The person starts laughing a leaves.,chair;pillow;table,A person is lying with a pillow on a table. The person awakens and walks away;A person awakens from a table.  The person was sleeping on the table with a pillow on a chair.,c010 0.00 12.20;c076 0.00 12.40;c077 1.80 9.30;c146 0.00 6.60;c154 6.80 12.90;c059 0.00 12.00;c078 0.00 5.80;c152 4.00 11.70;c011 0.00 12.00;c009 3.90 12.40,12.75\r\n83J53,5LWB,Stairs,7,7,Yes,\"One person runs down the stairs laughing holding a cup of coffee, while another person is fixing the doorknob.\",coffee;cup;doorknob,Person is trying to fix a doorknob. Second person walks down stairs holding a cup.,c140 0.00 18.20;c107 11.20 21.70;c141 0.00 20.20,30.00\r\nDSGVL,4I2W,Home Office / Study (A room in a house used for work),6,7,Yes,Person tidies up the desk in the home office and the places the laptop on top of it.  Person then sits down and beings to play games on the computer.,chair;desk;duster;laptop;table;towel,\"This person is dusting a table, sets down a laptop, then sits down and works on the computer.;Person is tidying a desk with a towel, while holding a laptop. Person sits down on a chair and puts the laptop on the desk.\",c048 14.90 21.40;c151 14.10 21.00;c059 14.10 21.00;c052 14.70 30.60;c014 14.10 31.00;c009 9.10 17.10;c012 0.00 16.30;c011 16.10 31.00;c049 9.10 16.30;c033 0.00 12.40;c047 0.00 19.30;c051 16.40 31.00;c050 0.00 2.60,30.00\r\nRTEO8,KFGP,Kitchen,6,7,Yes,\"One person throws down a pair of shoes, grasps some groceries and leaves the kitchen.\",box;floor;groceries;shoe,The person comes into the kitchen and throws some shoes on the floor. The person then takes some grocery items off of the counter.,c058 3.70 9.10;c040 12.60 22.30;c126 3.90 9.30;c043 11.20 17.50,23.21\r\n69TAU,KFGP,Bedroom,6,6,Yes,A person is standing in a living room playing with a pillow while grasping the arm of a sofa.,pillow,A person is holding a pillow and moving it up and down while standing next to a couch and holding on to the couch.,c076 0.00 35.00;c080 5.70 11.40,34.25\r\nFRC6O,KFGP,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person sits down on the table and opens their laptop and puts it on their lap.  They decide to watch television but the remote is on on the dining table, so they get up and walk to the table to get the remote.\",chair;desk;laptop;remote;table;televison,\"A person walks over to a desk, grabs a laptop, opens it, and sits down. The person then gets up and grabs a remote from a table.;a person goes and sits by his computer and plays with his laptop then grabs a remote off a table;A man sits down at a desk and opens a laptop. Then he places the laptop on a desk.\",c048 4.40 14.30;c151 0.00 6.90;c154 17.00 22.70;c011 0.00 8.60;c051 4.70 20.50;c047 7.30 19.10;c049 15.00 20.90;c059 2.50 21.80;c050 3.10 11.20,27.33\r\nV6M35,KFGP,Living room,6,6,Yes,\"A person lying on their sofa sits up to take a sip of coffee, then puts down their phone and grasps a pillow.\",coffee;couch;cup;pillow;sofa,\"A person is lying down on the couch. They sit up and sip from a cup and then grab a pillow and hold on to it.;A person is lying on a couch, then sits up and drinks from a cup.\",c122 0.00 14.00;c076 28.50 38.00;c106 16.60 27.50;c107 16.60 29.90;c146 10.60 38.00,36.88\r\nLLOGB,4JV9,Bedroom,6,7,Yes,\"A person walks into the bedroom, holding a glass of water. The person sets the glass down and lies on the bed, taking their phone out as they do so.\",bed;chair;cup;door;glass;phone,person walks through a door and sets a glass on a chair then pulls out their phone and lays in bed;The person walked into the bedroom and placed a glass of water on a chair. The person took out their phone and lied down on the bed to play with the phone.,c107 0.60 9.00;c015 9.40 31.00;c018 8.70 14.10;c109 1.90 10.20;c016 9.20 31.00;c134 13.70 31.00;c097 0.00 6.70,30.25\r\nKXO5Q,8IOD,Stairs,6,7,Yes,A person begins snuggling with a blanket before fixing a broom.,blanket;broom,A person is under a blanket lying on the stairs then they pick up a broom and fix it.,c072 0.00 16.00;c098 13.10 32.00,30.75\r\n1WI77,4I2W,Kitchen,6,6,Yes,\"A person holding a camera looks in a window at another person standing in front of their pantry, holding on to the door. The person at the pantry takes out a can and when closing the door, notices the person at the window.\",bottle;cup;door;phone,\"A person grabs a doorknob, opens a door and picks up a bottle from the floor from within. Another person is standing nearby with a phone in their hands.;The person opens a door and picks up an empty bottle while another person leans against a wall using a phone.\",c008 0.90 9.80;c141 0.00 6.20;c110 4.80 20.10;c016 0.00 30.00;c015 0.00 30.00,28.92\r\nY3C08,WG9D,Pantry,4,7,Yes,\"A person puts a towel into the pantry, A person eats while placing a pillow into the pantry.\",cabinet;clothes;food;pillow;towel,The person puts a towel and pillow in a cabinet.;A person is putting items away in the kitchen while eating.  They put a clothe and a pillow in a cabinet underneath a counter while eating some food.,c077 2.00 7.00;c034 0.00 4.20;c001 0.00 3.80,5.62\r\nD2ORL,6RE8,Recreation room / Man cave,1,2,No,A person is on the phone laughing while holding a pillow.,bed;phone;pillow,A person is talking on the phone and then walks into a bedroom. Then pick up a pillow off a bed and sits down and keeps talking.,c076 20.40 41.00;c019 1.80 41.00;c149 30.80 41.00;c151 22.20 29.20;c135 23.80 41.00;c079 20.60 25.80;c015 0.00 41.00;c135 22.40 28.20,40.00\r\nA0CZE,JVLO,Living room,7,7,Yes,A person runs through the doorway with a phone then drinks something from the refrigerator.,beverage;cup/glass/bottle;doorway;phone;refrigerator,\"A person walks through a doorway while using a phone. They then open a refrigerator, take out a beverage and drink.\",c142 14.60 21.50;c143 11.60 18.50;c015 0.00 16.20;c019 2.10 12.90;c097 1.90 8.10;c110 16.00 22.10;c016 1.20 14.40;c106 18.40 27.30;c107 16.80 31.00,30.21\r\nYXBXH,0KZ7,Garage,5,7,Yes,\"A person is sitting in the garage, drinking from a glass and looking at their phone.\",chair;cup;glass;phone,A person is sitting down in a garage  taking a drink out of a glass while playing on a phone.,c016 3.50 14.30;c106 0.00 8.80;c107 5.40 13.90;c059 0.00 28.00;c015 0.00 28.00,26.96\r\nTEPWB,0RNU,Laundry room,3,7,Yes,A person takes a bag out of the washing machine and throws it into the dryer. The person then sips repeatedly from a cup of coffee.,bag;book case;clothes;coffee;cup;door;dryer;washer,\"a person pulls a bag out of the washing machine and puts it in the dryer then drinks coffee;The person opened the washer and put some clothes in it.  The person closed the washer, and relaxed drinking a beverage.\",c106 18.00 24.90;c001 3.50 16.10;c022 10.30 16.30;c020 3.10 15.80,30.58\r\n6ALEL,0KZ7,Hallway,7,7,Yes,\"A person walking down the hallway and finishing dressing themself, leaves their bathroom towel on the floor.  They pick up some conveniently placed food from a niche in their hallway and start eating it.\",clothes;doorway;floor;food;jacket;sandwich;towel,\"The person puts on a jacket then takes a bite of a sandwich.;A person drops a towel and is standing in a hallway putting on clothes, they then take a sandwich and begin eating it.\",c033 0.00 14.70;c036 10.60 16.60;c061 20.20 27.00;c065 20.70 27.00;c148 9.70 16.40;c126 11.00 16.70;c034 11.60 16.90;c148 0.00 17.20;c063 18.70 24.20;c156 21.90 27.00;c067 20.30 27.00;c069 19.30 24.30;c097 16.20 22.00,25.88\r\nNOSZ3,18IT,Living room,6,4,Yes,A person is in the hallway fixing a light while another person is drinking from a bag.,bag;chair;cup/glass/bottle;light,A MAN IS FIXING A LIGHT IN A LIVING ROOM WHILE A MAN IS STANDING BEHIND HIM EATING SOMETHING,c103 0.00 10.00;c020 0.00 10.00;c106 0.20 10.00;c107 0.00 10.00;c060 0.00 10.00;c110 0.00 4.80,8.83\r\n2O5NR,BYF9,Bedroom,7,7,Yes,A person is lying on clothes while another is playing with a camera.,bed;camera;clothes;phone;picture;shoes,One person is lying on a bed. Another person is standing and taking pictures in the bedroom.;A person is standing in a room taking picture of some who is sleeping on a bed,c015 0.00 19.00;c134 0.00 19.00;c087 0.00 19.00;c016 0.00 19.00,18.00\r\n3Z223,D0RU,Hallway,6,6,Yes,A person is sitting on a blanket.  A person is smiling and reading a book.,blanket;book;floor,Someone is sitting on a blanket on the floor and drinking from a glass as he flips through a book.,c026 3.90 33.00;c032 3.70 33.00;c152 13.40 33.00;c029 6.30 10.40;c149 6.30 18.00;c149 13.70 19.60;c125 3.40 33.00,31.71\r\nSU8PN,0KZ7,Living room,7,7,Yes,\"In the living room,a person is throwing a pillow at another person. That person is smiling because they think it is funny, and they throw a book back at the other person.\",book;pillow;sofa/couch,The people in the video were throwing a pillow and book at each other,c031 5.80 14.30;c080 0.00 6.00;c152 14.30 21.60;c077 0.00 28.00;c076 0.00 28.00;c030 0.00 28.00;c026 0.00 28.00;c079 0.60 11.60;c123 0.00 27.20;c025 12.00 25.70,27.33\r\n6WWB3,T7C3,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,A person is smiling while walking with a blanket wrapped around their neck and grasping a bag of groceries.,bag;blanket;door;groceries,\"A person walks through a door with a blanket wrapped around them, while holding groceries.\",c070 16.40 30.80;c020 3.20 30.50;c020 16.70 22.30;c006 6.20 16.10;c097 2.30 9.90,29.62\r\n5M9JX,T7C3,Stairs,7,7,Yes,A person is standing on their stairs eating a sandwich and drinking a soda from a glass while staring in a mirror.,cup;food;glass;mirror;sandwich;water,\"A person isdrinking a glass of water and holding a mirror, they then begin to try to eat the mirror in their hands.;A person is standing at the base of a flight of stairs, and is drinking water from a glass, while holding a mirror and a food item in their other hand.  They are eating the food and drinking the water.\",c093 0.00 28.00;c106 0.00 5.40;c065 2.50 8.80;c156 2.40 9.00;c061 0.00 28.00;c067 0.00 28.00;c107 0.00 28.00,27.33\r\nW2DAK,UTMU,Laundry room,6,7,Yes,A person is washing clothes in a laundry room. The person takes a dryer sheet out of a box. The person holds the dryer sheet and then drops it on the floor. The person uses a broom to sweep it up.,box;broom;dryer;floor,\"A person walks into a laundry room, closes the door to the dryer, and takes out a dryer sheet from a box. The person then drops the dryer sheet on the floor, and sweeps it up with a broom.\",c126 23.40 29.80;c127 26.90 36.80;c041 9.50 17.40;c102 26.70 37.40;c040 2.10 19.40;c044 10.90 19.60,39.04\r\nCSYES,XXN8,Laundry room,6,4,Yes,\"A person sits in a chair, folding towels. The person puts them on the table, takes out their phone, and begins playing with it.\",blanket;chair;phone;table;towel,A young person folding a towel.,c034 2.40 14.90;c033 0.00 13.30;c034 9.60 17.00;c009 9.60 17.50;c015 10.40 31.00;c018 10.70 17.00;c016 10.90 31.00;c037 0.00 13.60;c075 0.00 13.60,30.42\r\nA2771,KQI6,Living room,4,7,Yes,One person washes a window with a towel while another person takes a laptop from a shelf.,laptop;shelf;towel;window,A person washes a window with a towel.  Another person takes a laptop from a shelf next to the television.,c091 1.20 32.00;c047 20.00 32.00;c050 19.70 32.00;c033 1.20 32.00;c038 2.80 32.00,30.92\r\nBZ171,L4ZP,Bedroom,6,7,Yes,A person is awakening and sitting up. The person reaches for their laptop and accidentally knocks a glass off the nightstand.,bed;cup;floor;glass;laptop;table,a person lays in bed then knocks over a glass and looks at his laptop;A person lying on their bed reaches for a glass and knocks it on to the floor. They sit up on their bed and start looking at something on their laptop.,c109 14.70 20.90;c047 18.30 30.00;c051 19.80 30.00;c146 0.00 9.70;c134 0.00 10.90;c126 10.80 16.80;c052 20.80 30.00;c127 13.80 20.70;c050 18.30 25.80;c135 19.80 30.00;c133 0.00 9.50;c009 14.80 21.20,29.00\r\nNV4FC,YMXV,Bedroom,4,6,Yes,\"A person grasps a pair of shoes, and throws them into the corner. The person then takes a book from the table and walks out.\",bed;book;clothes;corner;door;shoe;table,\"A person is sitting on their bed. They take off their shoes and throw them aside. They get up and walk up to a table and grab a book. Then they open the door and walk out.;A person is sitting on their bed and takes off the shoes before throwing them in a corner. After getting up from the bed and taking a book from a table, the person leaves the room trough a doorway.\",c026 20.00 26.80;c030 19.60 25.80;c135 0.00 3.10;c057 0.00 8.20;c025 22.40 27.50;c027 21.80 26.80;c053 12.50 19.10;c058 15.70 21.30;c154 18.10 23.30;c008 24.30 30.30;c097 26.00 32.00;c001 5.50 10.40;c117 21.50 26.10,31.08\r\nXFRYR,XXN8,Kitchen,3,7,Yes,The person is standing on a chair with a hand held light.  The person is taking a box of cereal from the top shelf.,box;cabinet;chair;cupboard;food;hand;shelf,\"The person is standing up on something, opening a cupboard, and removing a box of cereal. The person then walks away.;A person takes some boxes out of a cabinet.\",c043 5.40 15.20;c060 0.00 17.10;c063 6.80 14.30;c112 8.80 16.20;c061 8.90 16.90,30.58\r\nUB2EJ,R1OT,Hallway,6,6,Yes,\"A person is standing in their hallway dressing and drinking a glass of iced coffee. They grab a box, and leave.\",box;clothes;coffee;cup;floor;glass;shirt,A person has just put on a shirt and takes a sip of coffee from the glass they are holding. The person then picks up a box on the floor and walks away.;A person is putting their shirt on they take a drink and pickup a box and walk down the hall.,c043 4.90 11.10;c107 0.00 10.40;c148 0.00 4.80;c001 0.00 4.80;c106 0.80 9.10,20.96\r\nOWLRQ,HJJ4,Basement (A room below the ground floor),5,7,Yes,\"A person is sitting in their basement opening up a book. They stop and pull out a camera, and take a picture with the camera. Then, they start sneezing.\",book;camera;chair;floor;phone;picture,\"While sitting in a chair the person was reading a book, took a picture then proceeded to sneeze twice.;The person is sitting in a chair in a basement reading a book,after done the person decides to take pictures.\",c032 0.00 11.40;c015 12.70 18.40;c153 23.80 31.30;c059 0.00 32.00;c087 17.60 23.00;c028 8.50 13.40;c016 12.70 23.30;c017 20.10 25.90;c025 7.50 11.70;c018 10.20 15.30;c027 0.00 5.60;c026 0.00 13.10,31.25\r\nJQG43,JVLO,Home Office / Study (A room in a house used for work),5,6,Yes,The person is opening the laptop and then laughing into the mirror in the hallway.,hair;laptop;mirror;table,\"sits down at computer, opens laptop.  gets up, walks across room, checks hair in mirror\",c094 19.10 36.00;c048 5.70 18.20;c151 2.00 7.80;c154 14.70 21.00;c144 18.90 36.00;c059 2.70 18.40;c096 19.10 36.00;c011 5.70 18.70,34.79\r\n1AC4H,OUKK,Living room,2,7,Yes,a person is working on homework and drinking a soda at the table under a window,drinking;floor;glass;homework;paper;soda;table;window,a person walks to a table and sits down to write something while drinking a pepsi,c011 2.30 31.00;c145 4.30 31.00;c151 0.00 6.80;c125 0.70 31.00;c106 7.00 31.00;c110 5.20 31.00;c107 5.20 31.00;c014 1.10 31.00,29.75\r\n6W82I,4I2W,Dining room,6,6,Yes,\"A person is working on changing a light bulb in the garage. Another person brings them a cup of coffee, which the first person grasps.\",chair;cup;wall;water,This person is standing on a chair and fixing something on the wall. Another person walks in to the room and hands the person a cup of water.;A person is standing on a chair doing something to a wall.  Another person enters and hands the person a cup of something.,c107 14.20 30.00;c110 14.10 21.70;c060 0.00 30.00,28.92\r\n3ZH9Z,6RE8,Dining room,6,7,Yes,\"A person is eating at their desk. Then, taking their plate, the person walks into the kitchen, pausing to check their reflection in the mirror.\",chair;desk;dish;doorway;food;mirror;table;television,\"A person is sitting down at a desk eating while watching tv, then stands up and walks away with the dish.\",c011 0.00 10.00;c156 0.00 9.70;c154 6.00 11.20;c119 6.50 26.70;c118 6.20 26.60;c097 16.30 20.80;c063 0.00 3.80;c120 6.00 20.30;c132 0.00 13.10;c059 0.00 10.80,32.67\r\nNF4B8,ID9V,Bedroom,5,7,Yes,\"A person is dressing after closing the door, and grabs a towel off the chair\",closet;clothes;door;jacket;towel,A person picks up a coat out of the closet and gets dressed. They grab a towel.;person took the jacket from the cabinet and closed the door. put on jacket. person took a towel with one hand and taken it into another hand.,,26.54\r\nXC8DF,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is fixing their clothes and starts smiling. They pick up a cup of coffee on a nearby table and start leaving.,clothes;coffee;cup;dish;glass;table,A person walks down hallway zipping up jacket. The person grabs a coffee cup from a table and walks away.,c110 16.00 20.90;c152 9.20 16.80;c107 16.20 22.90;c118 16.20 22.90;c004 1.00 7.30;c120 16.20 22.90,23.12\r\n5DJ3S,UTMU,Dining room,6,7,Yes,\"A person sits in a chair, drinking a cup of coffee and looking out the window. The person snuggles up to a blanket.\",blanket;chair;cup;glass;table;window,\"A person is sitting in a chair on a table, and drinking a beverage. The person then begins to snuggle with a blanket.\",c070 14.10 26.00;c072 16.30 26.00;c106 5.60 11.20;c107 1.90 13.70;c059 0.00 26.00;c011 0.00 5.90;c073 13.00 26.00;c152 16.90 26.00;c151 0.00 4.40;c009 6.10 13.90;c092 7.30 18.00,25.38\r\nAMQ2W,0KZ7,Laundry room,7,7,Yes,Person is standing by door talking on phone and playing with doorknob.,doorknob;phone,A person is messing with a doorknob while talking on a phone,c019 0.00 26.00;c141 12.20 26.00;c015 0.00 26.00,24.79\r\nHY9LW,T7C3,Kitchen,7,7,Yes,\"One person pours something down a sink stacked with dishes, then smiles and leaves the room.\",cup;dish;glass;sink;something,A person is pouring water into a sink.;Person walk over to the sink pour out something in the sink then walk out of the room.,c118 0.00 34.80;c152 21.30 31.10;c107 0.00 34.60,33.75\r\nAJTDO,TGGT,Laundry room,4,7,Yes,\"There is a person in the laundry room that is washing a load of towels, while the towels are being washed the person is undressing pillows of their cases.\",basket;cases;clothes;machine;pillow;towel,\"Person walks in laundry room, takes clothes off machine, put in basket, throws cases to the side, tosses pillows in basket\",c076 8.70 25.30;c080 20.80 25.30;c034 0.00 11.40;c077 9.00 18.50;c033 0.00 7.70;c000 0.00 7.70,36.75\r\nQ0XQX,HJJ4,Bathroom,6,7,Yes,A person is fixing a shelf in the cabinet then they wash their hands.,cabinet;door;faucet;hand;mirror;shelf;towel,A person opens a cabinet and then closes it. And then they turn on the faucet and wash their hands. They dry off their hands with a towel.;A person is standing at a medicine cabinet tidying up the cabinet they close the door and wash their hands and dry them with a towel,c139 11.30 24.00;c114 0.00 14.30;c081 0.00 14.50;c033 17.00 24.00;c006 9.10 14.70;c038 16.40 24.00;c112 9.20 14.70;c082 0.90 13.80;c096 9.60 24.00,23.04\r\nV73YI,5LWB,Home Office / Study (A room in a house used for work),6,6,Yes,Two people are snuggling on a sofa and then one person begins throwing a pillow through the doorway in the home office / study.,doorway;pillow;sofa,Two people sit on a sofa and rock back and forth.  One person picks up a pillow and throws it at the door.,c080 16.20 22.20;c123 0.00 17.60;c154 13.60 18.90,21.79\r\n1ESKX,T7C3,Kitchen,6,7,Yes,\"A person smiles as they look out the window, holding a camera. The person raises the camera and takes a picture.\",camera;phone;picture;window,A person looks out a window then takes a picture with a camera.,c092 6.60 25.20;c015 14.50 33.10;c087 19.30 33.10;c018 19.90 39.00,38.29\r\nX7TIA,HJJ4,Kitchen,5,7,Yes,Person is eating in the doorway. They are laughing and talking on the phone.,apple;doorway;food;phone,The person is holding a phone to their ear and talking into it. The person takes a bite from an apple. The person smiles and seems to laugh.;A person is standing in the kitchen on their cell phone.  They are eating some food while talking and laughing on the phone.,c015 0.00 20.00;c019 0.00 20.00;c156 0.00 20.00;c149 1.90 16.90;c152 2.10 17.10;c061 0.00 20.00,19.29\r\nP73UC,QB52,Bedroom,6,6,Yes,A person awakens in bed. The person tidies their bed then takes a camera to the window to take a picture.,bed;blanket;phone;picture;sheets,\"A person gets out of bed, arranges the sheets on the bed, and looks at a mobile phone.;A person is laying in bed, gets up and fixes the blankets.  The person takes a phone from a pocket and takes a picture with it.\",c133 1.30 9.50;c146 1.30 9.50;c075 9.90 18.90;c018 15.90 30.00;c017 17.60 31.00;c134 0.00 4.40;c154 6.60 12.10;c087 17.60 31.00;c015 17.10 30.90;c016 17.10 30.90,30.08\r\nKFM5Q,WQ8Z,Living room,5,7,Yes,\"One person holds a blanket and snuggles it, then starts playing with the buttons on a camera.\",blanket;camera;computer;couch;laptop;phone;pillow;sofa;table,\"A person is sitting on a couch with a dog watching the computer. The person snuggles with a blanket, takes their phone and plays with it.;A person is sitting on their couch looking at their laptop. They pick up a blanket and start to snuggle with it. They pick up a camera from the table.\",c015 13.30 28.70;c070 0.10 14.70;c073 0.00 16.30;c123 0.00 29.00;c018 14.90 29.00;c072 0.60 17.70;c078 1.80 16.90;c076 0.10 29.00;c071 0.40 5.90;c016 14.90 29.00,27.75\r\n1KJI0,HJJ4,Kitchen,6,7,Yes,A person is cooking something on the stove and then goes to the refrigerator and begins pouring a drink.,cup/glass/bottle;door;food;milk;refrigerator;stove,A person is cooking food on a stove then opens a refrigerator to pour milk.,c147 0.00 9.80;c143 6.60 13.20;c008 7.50 13.20;c061 11.60 30.00;c108 18.30 25.40,29.50\r\nSXX9L,PKND,Bedroom,6,6,Yes,\"Person is fixing the blanket while laughing while another person sits by the desk, eating bread.\",blanket;food,The person is sitting and is covered with blanket and continues to cuddle in it over and over as another person walks around.,c072 0.00 33.00;c149 0.00 10.70;c156 0.00 33.00;c061 0.00 33.00;c070 0.00 33.00,31.54\r\nDN6QU,C7O9,Pantry,7,6,Yes,\"A person is smiling while looking at some medicine, then puts it down.  Then the person grasps for a camera, picking it up.\",medicine;phone;picture;shelf,\"Person standing in the pantry trying to open some medicine, puts it back on the shelf, and then picks up a camera and tries to take a picture.\",c015 7.60 29.00;c087 17.30 22.70;c128 0.00 6.90;c081 4.80 9.50;c016 0.00 7.80,27.75\r\n8VSV6,HJJ4,Recreation room / Man cave,6,7,Yes,\"A person is lying on the floor, then awakening and walking towards a desk and then sitting on a chair in a recreation room / man cave.\",chair;floor;table,A person lying on the floor gets up and sits in a chair.,c124 0.00 10.70;c059 9.40 17.00;c154 4.60 11.40;c011 9.20 17.00;c146 0.00 8.10,15.67\r\nL8XSB,AC0W,Stairs,7,7,Yes,A person is walking on the stairs putting a towel on a light.,light;towel,A person walks upstairs and places a towel over a lamp.,c034 10.80 16.70;c033 8.30 15.70,23.83\r\n6EHR7,P6LJ,Kitchen,6,6,Yes,\"a person is lying on a pillow and awakens, puts on shoes, and leaves\",floor;pillow;shoe,A person is sleeping on the floor with a pillow. The person wakes up and puts on some shoes.,c146 12.00 18.40;c154 19.00 25.20;c055 21.00 36.00;c124 4.60 17.60,39.92\r\nDEQ73,P6LJ,Kitchen,6,6,Yes,a person is washing the kitchen with a broom and then leaving through the door,broom;floor;notebook;paper,A person walks in to a kitchen and picks up a piece of paper and starts sweeping the floor with the paper.;A person is sweeping the floor with a notebook and looking everywhere.,c098 0.00 2.50;c100 8.00 12.00;c102 0.00 6.20;c127 0.00 6.20;c115 0.00 46.80,49.21\r\nFP7N3,P6LJ,Kitchen,6,6,Yes,A person grasps a glass out of the cabinet and closes it. The person walks to the sink and fills the glass up with water.,cabinet;cup;dish;door;sink;water,\"A person walks through a kitchen they go to the cabinet open the cabinet take a cup out go over to the sink fill the cup with water then set the cup on the counter and walk away.;A person walks into the kitchen, opens the door of a cabinet, takes out a cup, closes the door, walks to the sink, pours some water into the cup, then put the cup on the counter.  They walk away.\",c006 5.10 10.40;c112 5.10 10.70;c107 18.60 27.10;c109 20.90 27.80;c113 1.60 10.50;c118 3.90 26.20;c120 3.90 26.20;c119 3.90 26.20;c108 10.60 22.50,28.83\r\nI80TD,9Y7F,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is walking through the doorway as a person is taking a bag of groceries over to the window.,bag;doorway;groceries;window,A person walks through a doorway with a bag of groceries then places the bag on a window sill.,c130 19.10 24.20;c020 0.00 24.20;c022 18.80 24.00;c090 14.80 22.20;c097 0.00 6.30,30.96\r\nUIHDF,XXN8,Bedroom,4,7,Yes,A person is standing in the doorway smiling.  The person opens grabs some medicine off of a chair and opens the door.,chair;closet/cabinet;door;medicine,A person opens a door after smiling into the camera.,c008 7.50 13.80;c152 0.00 4.30;c113 7.50 13.60;c128 1.10 10.90;c112 9.60 15.80,30.25\r\nIJZ4F,ZSRZ,Kitchen,7,7,Yes,A person is taking dishes from the cabinet and then starts cooking at the stove.,bowl;cabinet;cup;dish;food;stove,\"This person appears to be in kitchen, getting something out of cabinet and then stirring something they are cooking on the stove.;The person took a bowl and cup down from the cupboard then stirred the pot on the stove.\",c118 0.80 5.80;c120 0.00 4.80;c112 3.70 9.50;c113 0.00 3.90;c147 6.90 19.00;c119 0.00 9.80,18.38\r\nTM9I6,DXDI,Kitchen,6,7,Yes,A person stands in the kitchen in front of the stove cooking and smiling before walking over to the table and picking up a box.,box;dish;food;stove;table,A person is  cooking some food then grabbing a box from a table.,c147 0.00 24.30;c043 25.10 31.00;c061 25.10 31.00;c152 21.60 27.60;c040 24.80 31.00;c118 0.10 7.40,30.50\r\nZD5YK,YMXV,Stairs,6,7,Yes,A person is standing on their stairs holding a phone and a towel. The person puts the towel on the stairs and leaves.,blanket;phone;stairs;towel,A person is playing with a phone and holding a towel.  They throw the towel on the floor and walk up the stairs.,c015 0.00 32.00;c016 0.00 21.00;c033 0.00 23.20;c036 17.50 23.70;c071 18.60 23.70;c070 0.00 23.50,30.92\r\nIEZFM,4OHY,Home Office / Study (A room in a house used for work),6,7,Yes,A person walks in the doorway and turns the light on. The person closes the door  and begins working from a laptop.,door;laptop;light;table,\"Person walking to wall turning lights on, closing door then sitting down at desk opening laptop and working on it.\",c104 1.40 8.30;c006 4.00 16.40;c048 18.70 31.00;c052 20.00 31.00;c151 17.30 26.30;c051 25.40 31.00;c011 21.20 31.00,29.92\r\nDHR5F,2RTW,Living room,6,6,Yes,\"The person walks through the door into the living room, then turns on the light and takes the phone in hand.\",door;light;phone;switch;table,\"A person enters a room turns a light on and off and checks their phone.;A person opens a door and closes it behind them. The person turns on the lights. The person then picks up a cell phone off of a table, and begins typing on the cell phone.\",c016 13.80 31.00;c008 0.00 7.50;c104 8.30 14.30;c018 12.00 16.90;c097 2.10 10.20;c015 12.90 31.00;c018 13.40 19.60;c141 3.90 10.80,30.38\r\n75MO8,Q4IF,Recreation room / Man cave,5,7,Yes,\"A person runs into the recreation room, eating a piece of food and drinking a glass of water. The person sets the items down and leaves.\",dish;food;glass;sandwich;something;table;water,\"A person runs over to a table, quickly eats some food and drinks some water, and then leaves.\",c106 11.30 25.70;c061 0.20 27.30;c150 0.00 8.90;c156 0.50 16.30;c063 1.00 6.20;c119 19.70 25.40;c009 19.00 25.50;c063 1.40 23.60;c119 0.80 24.90;c065 2.20 10.20;c118 0.80 24.90,29.71\r\nZ2DEZ,YMXV,Bedroom,5,4,Yes,A laughing person wrapped in a blanket sitting at a desk stands and starts dressing.,bed;blanket;chair;clothes;floor;shirt,\"A person picks a blanket up from the ground and places it on the bed. The person then sits briefly in a chair, picks up a shirt from the bed, and puts the shirt on.;A person gets up from the floor and places blanket on the bed. Afterwards, the person takes a shirt and puts it on.\",c071 0.00 8.20;c151 5.60 14.10;c148 15.60 32.00;c002 13.00 18.70;c002 15.80 22.20;c073 0.00 10.00;c154 0.20 8.50;c001 21.60 32.00;c074 0.90 8.00;c070 0.00 5.90;c075 0.00 8.20,30.83\r\n7XR13,OKL0,Pantry,6,5,Yes,\"A person is grasping a can of food, and then leaving their shoes on the floor\",boots;can;closet/cabinet;door;food;shelf;shoe;table,A person holding boots takes a can of food out of a pantry.;person holding shoes open the shelf and then bought a can and put had put on the table.,c053 0.00 23.80;c054 18.80 24.90;c061 11.80 28.70;c062 23.30 29.00;c063 12.80 19.50;c009 25.00 29.00;c113 0.40 4.40;c008 0.40 4.40;c141 0.00 4.00,28.21\r\nMUVB8,H8N1,Living room,5,7,Yes,\"A person is awakening on the sofa. Then, laughing, the person begins snuggling back into it before reaching to turn on the light on the table.\",light;sofa;window,The person is lying down then gets up turn on a light.,c122 0.00 18.80;c104 18.00 22.90;c146 0.00 18.00;c123 0.00 25.00;c092 13.40 24.70,24.46\r\nF64IO,A8P9,Kitchen,7,7,Yes,A person stands in front of a cabinet and eats a sandwich.,counter;dish;food;sandwich;table,\"a person eats a sandwich;Person standing in the standing at the counter, puts plate of food on the counter, takes a bit of food, slams it on the counter, and then runs out of the room.\",c068 5.20 9.90;c156 0.10 9.20;c009 0.00 2.50;c118 0.00 2.70;c119 0.00 2.70;c065 0.00 8.30,10.33\r\nLY2GQ,9PLL,Stairs,6,1,No,\"A person holding a broom walks up and down the stairs, brushing nonchalantly on each step. They put the broom down and pull out a vial of medicine from their pocket, then toss it down the stairs.\",broom;floor;medicine,\"A person is walking up and down a set of stairs while holding a broom and sweeping the steps. The person takes a bottle of medicine out of their pocket, flip it in the air, and then set it on the stairs.\",c098 0.00 28.20;c102 0.00 28.80;c099 19.80 26.30;c101 20.10 25.90;c127 7.60 25.90;c100 0.00 27.00,35.62\r\n9VBJ5,V8LI,Kitchen,6,5,Yes,The person is eating food and throwing coffee out in the pantry.,coffee;cup;dish;food;glass;sing;sink;water,\"A person is eating some food, they then drink some coffee and begin washing the glass out in the sink.;The person is eating food. They then drink a cup of coffee then wash the glass in the sink\",c061 0.00 18.20;c106 16.30 28.80;c156 0.00 18.40;c111 25.40 39.50;c063 6.10 11.10;c107 16.50 40.00;c121 30.00 40.00,39.42\r\nO1YWR,1OHU,Bedroom,7,7,Yes,A person is undressing by grasping and removing some of their clothes and putting the clothes in a bag on their bed.,bag;clothes;sweater,The person is taking off his sweater and fumbling with it. He manages to fold it and put it in the bag.,c155 0.00 11.50;c021 21.10 27.80;c002 0.00 11.20;c000 4.80 28.30;c004 26.30 33.00;c001 20.60 31.40,31.58\r\nCZO8C,2RTW,Kitchen,6,6,Yes,The person is vacuuming in the dining room under the table.  The person looks out the window and sees someone familiar.  The person stands at the window smiling.,chair;floor;table;vacuum;window,A person vacuums the floor underneath a table and then looks out a window.;A person is moving a chair to vacuum the floor under a table in the kitchen.,,31.46\r\nXYGU1,2RTW,Kitchen,6,6,Yes,\"A person is standing a dining room holding a book. Person sits at table, picks up cup of coffee, kicks off shoes and begins to read.\",book;chair;cup;shoe;table,\"The person is holding a book. He sits down in a chair and places the book on the table. He kicks off his shoes, opens the book, and takes a drink from a cup. He sets  the cup down and begins to read the book.\",c026 0.00 2.90;c028 0.00 2.90;c009 0.00 2.90;c057 10.00 14.00;c107 0.00 2.80;c027 11.80 20.50;c032 14.40 32.00;c011 4.70 32.00;c106 14.60 20.90;c151 3.00 9.40;c014 3.00 32.00,31.25\r\nWJ1E7,2RTW,Kitchen,6,6,Yes,\"A person grasps a pair a shoes. The person puts the shoes down, sits a table, and begins doing homework.\",chair;notebook;paper;shoe;table,\"A person walks over to a collection of footwear on the floor and picks up a pair of sneakers to briefly inspect them before setting them back down, then walks over to a table and begins writing in a notebook.;Someone picks up their shoes and checks their shoelaces. This person puts then down and then walks into the kitchen, sits down and opens a notebook and begins to write into it.\",c145 18.60 33.00;c151 15.20 21.60;c053 0.40 15.10;c011 15.20 33.00;c014 17.40 33.00;c054 8.70 14.10;c115 18.20 33.00;c059 17.10 33.00,32.33\r\nXFT37,OUKK,Entryway (A hall that is generally located at the entrance of a house),7,1,No,A person is awakening by the doorway.  Then a person is opening the door and picking up a box of groceries amazon had delivered.,box;door;floor,A person trips and falls down then gets up and opened the front door and picks up a package that as delivered.,c008 8.90 16.80;c043 12.80 23.60;c154 6.80 12.40;c040 12.30 23.50;c006 12.90 20.30;c124 0.00 11.70;c040 21.10 24.00;c006 21.10 24.00;c124 21.10 24.00,23.00\r\nJIOD0,YMXV,Bedroom,4,,No,A person was seen leaving the basement after tidying up the blanket and mirror located inside.,blanket;door;floor;mirror,A person is getting a blanket off the floor. The person then puts the blanket on the bed and goes out the door.,c070 15.80 20.50;c075 5.30 19.40;c154 7.60 14.20;c151 1.50 12.60;c141 19.40 25.00;c125 0.00 5.70;c006 26.90 32.00;c071 2.90 21.30;c008 19.00 26.20;c073 2.90 21.30;c097 20.50 29.50;c074 16.80 21.40;c127 0.00 7.70,30.54\r\nIWMW1,PO5L,Hallway,5,7,Yes,Person is walking down the hallway while opening up a cola and begins drinking it.  Person then sees food on the floor and grabs a towel to tidy up the mess on the floor.,dish;doorway;drink;floor;glass;towel;water,A person walks out of the room and returns with a soda. They tidy some dishes off the floor and leave.;A person is drinking a glass of water. A person uses a towel and cleans the floor.,c127 12.20 25.80;c118 21.70 27.60;c106 6.50 12.30;c097 0.00 27.50,27.46\r\nTVS1P,KFGP,Bathroom,4,4,Yes,A person is snuggling a blanket.  Then a person is standing up to turn off the light.,blanket;light;toilet;towel,\"A person is sitting while snuggling and sleeping with a blanket then awakens and turns out the light.;A person sits on a toilet snuggling a towel, they then get up and leave, turning off the light.\",c105 21.40 25.90;c072 0.00 24.70;c154 17.00 23.60,25.79\r\nK5IAK,CCI9,Bedroom,5,7,Yes,Person enters the bedroom holding a vacuum and begins to vacuum the room.  Once finished Person begins working on homework that was on the desk.,book;broom;desk;doorway;floor;homework;paper;vacuum,\"A person is using a broom to clean the floor, then picks up some homework up off a desk.\",c117 9.30 23.30;c137 10.60 17.10;c102 10.00 30.50;c032 30.80 34.00;c027 30.80 34.00;c026 30.80 34.00;c127 0.00 29.00;c097 0.00 9.20;c030 24.20 34.00,32.71\r\nU7Z37,HR43,Kitchen,6,6,Yes,A person is fixing a cup of coffee after closing the door on the stove,door;food;kettle;stove,A person is cooking on a stove they open the oven and then they light the burner for the coffee pot.;A person ovens an over door and then begins to cook on a stove top.,c006 4.00 9.50;c147 6.40 30.00,29.29\r\nWIQ2O,1OHU,Garage,6,7,Yes,A person is seen drinking from a glass while sitting on a chair. The person gets up and begins tidying the area.,chair;cup;floor;glass;object;trash can,\"someone sitting and drinking while smiling;Person sitting on floor smiling holding a glass, drinks from glass, wipes mouth, changes hands, drinks again, stands up from chair, bends down to pick up object and stuff object in trash.\",c106 4.00 10.20;c107 0.00 7.70;c059 0.00 25.90;c154 21.90 27.80;c152 0.00 8.00,31.38\r\nZLH9E,2RTW,Bedroom,6,6,Yes,A person is in their office sitting at a desk while throwing balled up pieces of paper at the door.,bed;chair;desk;floor;laptop;paper;table,A person sits in a chair at a desk crumpling paper and throwing it on the floor or in a garbage bin under the desk.;A person is sitting at a desk picking up things and throwing toward the garbage can.,c011 0.00 32.00;c126 4.90 10.90;c115 0.50 10.90;c115 8.60 21.90;c117 0.00 4.30;c117 7.40 12.10,30.62\r\nWDB4S,2RTW,Bedroom,6,6,Yes,\"A person is walking into a office holding a laptop, they are smiling while brushing off their wardrobe.\",book;bottles;desk;laptop;table,A person is walking into a room carrying a laptop. The person goes to the desk and tidies it up. The person lays the laptop onto the desk.;A person walks in to a room carrying a book.The person goes to a desk and starts moving stuff around on the desk.The  person wipes stuff off the desk .;A person walks into a room holding a tablet then they begin to tidy up a desk and set the tablet down.,c009 26.20 31.90;c012 15.80 28.90;c028 24.70 31.90;c026 3.50 30.70,33.17\r\nV3LMY,2RTW,Living room,6,6,Yes,Person drinks coffee. Person walks to sink and pours out the rest.,coffee;couch;counter;cup;faucet;sink;sofa;table;water,\"The person is sitting on a couch and then reaches for the cup and takes a drink and then puts the cup down on the table then stands up walks into the kitchen and pours out the coffee and rinses out the cup with the residue still in the bottom of the cup and then sits it on the counter.;A person is sitting on the couch drinking a cup of coffee, they then get up and pur the coffee down the sink.\",c109 24.00 32.00;c107 7.90 23.90;c123 0.00 12.70;c107 0.00 11.30;c106 2.60 9.70;c110 0.00 7.70;c154 6.70 16.50;c010 0.00 12.40;c111 28.90 32.00,30.88\r\n0L07S,0KZ7,Stairs,6,6,Yes,\"While sitting on the stairs, person talked on the phone while others were in the living room watching television. The house was full of laughter.\",floor;phone;stairs;window,A person is sitting on the stairs talking on their phone .;Someone is sitting on the stairs talking on the phone while looking out the window.,c019 0.00 26.50;c125 0.00 28.00;c015 0.00 28.00;c092 0.00 28.00,26.83\r\nLTQS9,0KZ7,Stairs,6,6,Yes,A person is sitting on a chair at the top of the stairs. The person grabs a broom and begins tidying the area around them.,broom;chair;floor;stairs,A person is sitting on a chair and then sweeping with a broom.;A person is sitting at the top of a staircase. They pick up a broom and begin sweeping the stairs.,c102 3.60 16.40;c102 12.90 21.90;c059 17.10 27.00;c154 6.80 15.40;c102 10.80 33.00;c125 0.00 14.00,31.96\r\nQUGSS,CCI9,Kitchen,3,6,Yes,\"A person drinking milk and eating a sandwich, A person laughing by a window.\",food;glass;sandwich;window,A person is standing in the kitchen drinking out of a glass and eating a sandwich.  He walks over to the window and looks out of it.,c092 15.00 23.80;c065 2.10 11.20;c156 1.90 11.20;c061 1.30 7.10;c152 8.50 13.10;c061 0.00 34.00;c106 0.00 7.10;c107 0.00 34.00,32.71\r\nCGNBJ,LTAC,Bedroom,6,5,Yes,A person is in their closet tidying up. They put away a towel and some clothes. The person leaves while eating an apple.,cabinet;closet;clothes;floor;food;homework;paper;shelf;wardrobe,\"A person is picking papers up from the floor and then opens a cabinet and throws clothes on the floor. The person then eats an apple.;A person picks up papers from the floor, they throw them on the floor, open a closet and begin throwing clothes onto the floor.  They pick up an apple and begin eating it as they walk out of the room,\",c156 30.80 39.00;c116 0.00 17.70;c082 16.50 33.90;c113 14.20 21.70;c126 17.30 23.40;c061 28.20 39.00;c003 17.10 24.50;c114 16.90 30.40;c063 28.20 34.10,38.12\r\nP6S89,MPG5,Bathroom,7,5,Yes,\"A person is smiling and washing a mirror, then taking medicine and then standing in the doorway of a bathroom.\",doorway;medicine;mirror;towel,A person is cleaning a mirror then taking some medicine before walking out the doorway.,c097 24.10 32.00;c129 8.80 27.00;c095 0.00 11.80;c034 8.60 13.10;c096 0.00 11.80,32.17\r\nSPJVR,9Y7F,Dining room,7,6,Yes,\"A person stands in the doorway, snuggling up to a blanket. The person wraps up the blanket and throws it into the other room.\",blanket;doorway;floor,A person is standing with a blanket wrapped around his shoulders. He takes the blanket off and starts to fold it. Then he rolls it up and throws it through a doorway into another room.,c070 0.00 18.40;c074 13.90 19.30;c075 1.30 16.80;c126 13.50 19.30;c152 24.80 30.90,30.25\r\nS0LA8,YMXV,Bedroom,4,7,Yes,\"Person is standing in the middle of the room holding a book. Person then throws the book onto the desk. Person leaves the bedroom, turning the doorknob to open the door and turning the light off.\",book;door;floor;light;paper;table,\"A person is standing up looking at papers and throws them on a table.  Then the person opens the door, turns off the light, and leaves the room.;A person holding a piece of paper throws it on the floor. They turn off the light and leave through the doorway.\",c141 13.80 20.20;c026 0.00 12.20;c032 0.00 11.70;c097 24.20 33.00;c008 16.20 21.60;c031 7.40 12.20;c105 22.10 26.40;c126 7.40 12.20;c115 0.00 12.20;c006 13.80 19.30,31.88\r\nQFVMA,Z68L,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person is is working standing back and forth when their homework in their hands. They go to the window, strand up straight and look out.\",bed;desk;hand;homework;laptop;paper;table;television;window,A person is exercising in front of their desk while they watch television.  They pick up some homework and hold it in their hands before putting it back down and stretching in front of their bed while they look out the window.;There is a person standing at a desk with a laptop and homework.  That person then walks over and looks out a window.,c116 21.00 26.10;c115 11.20 25.00;c117 11.20 15.90;c092 23.30 34.00;c014 0.00 26.60;c152 13.00 18.30;c051 0.00 11.50;c051 12.80 18.30;c051 14.50 22.00,32.54\r\n279W6,X8R3,Living room,5,6,Yes,\"A person sits on the sofa, snuggling up to a pillow, playing video games.\",controller;couch;pillow;sofa;television,\"A person is sitting on the couch, and snuggling with a pillow. The person is also holding a controller, and playing video games while looking at the television.;A person sits on a couch, snuggles with a pillow and plays with a game controller.\",c078 3.40 10.80;c123 2.60 32.00;c151 1.60 6.70,31.42\r\nPT2Z0,3H6W,Bathroom,6,7,Yes,A person is washing a glass in the bathroom.  Then the person throws a bag onto the ground.,bag;cup;glass;hands;mirror;sink;tumbler,\"This person appears to be in a bathroom. This person rinses cup in the sink, picks up bag and then throw it down.;A person washes a tumbler in the sink, then throws a plastic bag onto the floor.\",c111 0.00 13.70;c024 11.00 20.00;c139 2.70 13.90,18.67\r\nXWQ1D,HR43,Bathroom,4,7,Yes,\"A person is tidying up their bathroom by sweeping the floor with a broom. They sneeze, wash their hands, and grab a pair of shoes that are on the floor before leaving the room.\",broom;chair;cleaning supplies;floor;hand;shoe;sink,\"A person is tidying up the bathroom with a broom while also taking their shoes off. After finishing, the person leaves the broom, washes their hands, picks up their shoes, and leaves.;A person sweeps a bathroom floor then washes their hands.\",c102 0.00 17.50;c056 0.00 4.60;c127 0.00 19.10;c139 15.10 28.00;c056 24.60 29.20,30.54\r\nRHAJX,L4ZP,Bedroom,7,7,Yes,\"A person is lying on a bed under a wide mirror. Sitting up, the person begins putting on their slippers, then goes to pick up their laptop off the shelf.\",bed;laptop;shelf;shoe;slippers;wardrobe,\"A person is awakening from laying on a bed, they then put their shoes on and take a laptop from a shelf and open it.;A man is laying in bed and wakes up and puts on his slippers. Then he stands up and picks up a laptop from a wardrobe.\",c133 0.00 6.70;c050 20.20 29.40;c154 11.40 17.60;c146 0.00 6.10;c054 4.50 15.80;c134 0.00 7.40;c135 3.70 16.70;c055 5.20 15.80;c051 21.60 30.00,29.33\r\n9O0HH,2RTW,Kitchen,6,6,Yes,Person grabs a bag of chips from the pantry and starts eating them in the kitchen.  Person turns on television on the counter.  While eating the chips the person pulls out some food and starts cooking it in a pan on the stove.,closet/cabinet;food;remote;stove;television,\"A person is taking food out from a cabinet then using the remote to turn on the televison, after that the person grabs food from the refrigerator and begins to cook.\",c061 15.30 37.00;c156 18.20 25.50;c147 32.40 37.00;c063 0.00 6.70;c112 1.50 6.40;c113 0.00 3.60;c062 23.10 30.40,36.38\r\nWFJJE,2RTW,Kitchen,6,6,Yes,\"A person is in a kitchen holding a phone to their ear, they then start working on a sandwich placed on their counter top.\",bread;food;lunch meat;phone;sandwich;table,A person holding a phone makes a sandwich.;A person makes a sandwich while talking on a phone.,c015 0.00 32.00;c009 6.10 11.90;c066 0.00 32.00;c019 0.00 32.00,31.04\r\nQN42P,2RTW,Kitchen,6,6,Yes,A person is sitting in a chair eating a bag of potato chips. The person stares at the picture on the chip bag.,ag;chair;food;phone;picture;sandwich;table,\"A person sitting in a chair at a table with a bag eating,the person continues to eat and reads the bag .;Person sitting at the table eating food looking at a picture on the bag and reading it.;A person is sitting down at a table eating food from a bag and looks at the bag.\",c020 0.00 31.00;c059 0.00 31.00;c088 7.10 31.00;c061 0.00 31.00;c063 0.30 6.30;c023 20.30 26.20;c156 0.00 31.00;c011 0.00 31.00,30.46\r\nEOA7I,6RE8,Entryway (A hall that is generally located at the entrance of a house),5,3,Yes,A person is lying on the floor looking at their phone. They get up and turn the doorknob to answer the door but the person is already walking away.,door;floor;phone,\"Person is lying on floor playing with phone, then gets up and grasps door handle and opens door and looks outside.\",c016 0.00 18.10;c124 0.00 17.40;c154 12.10 18.30;c141 16.90 25.20;c008 17.10 25.70,30.67\r\nFYH25,LTAC,Laundry room,6,7,No,A person is seen closing their laptop. The person then pours himself a glass of water and takes some medicine.,cup;glass;laptop;medicine;water,\"The person closes a laptop. The person then picks up a glass of water and pours it on his head. The person opens a packet of pills, takes one out of the packet and then swallows the pill with a drink of water from the glass\",c046 0.00 4.70;c106 33.30 38.00;c129 30.20 38.00;c128 10.80 35.50,36.54\r\n7ICIA,KFGP,Other,4,4,Yes,A person puts the towel the person was holding into the washing machine.  The person lays the cell phone the person had been holding onto the window ledge.,blanket;closet/cabinet;door;ledge;phone;towel;washer;window,\"A person folds a towel and puts it in a washer and then closes the door. And then they pick up a phone and put it on a ledge.;A man picks up a towel, crumples it up a bit and puts it in a machine.   He then goes to the window, and sets his phone down on the seal.\",c034 0.70 12.60;c017 15.70 28.00;c006 8.80 16.50;c015 11.50 28.00;c071 0.00 14.60;c113 5.00 17.30;c070 0.60 11.00,27.25\r\n3QGLU,KFGP,Kitchen,6,6,Yes,\"Person walks into the kitchen.  Person opens the refrigerator door, takes the camera from pocket and takes a picture of the inside.  Person then closes the refrigerator.\",camera;door;groceries;phone;picture;refrigerator,\"A guy into the kitchen and opens the refrigerator door. He looks at the groceries, takes out his phone, pushes some buttons, takes a picture of some groceries in the refrigerator, puts his phone back in his pocket, then closes the refrigerator and walks away.\",c015 9.70 32.40;c017 28.90 33.50;c142 29.40 35.00;c143 2.90 9.70;c016 10.40 31.90,33.50\r\nTC015,LTAC,Laundry room,6,7,Yes,A person walks into the room carrying a pillow.  The person puts the pillow in the cabinet and picks up a broom and starts sweeping.,blanket;broom;cabinet;doorway;floor;shelf,A person puts  blanket on a shelf then grabs a broom and begins sweeping the area around them.;A person sets a blanket on a shelf in the laundry room then uses a broom to tidy up.,c102 7.20 32.00;c070 0.00 6.60;c071 2.40 9.00;c081 1.40 9.40;c127 6.60 32.00,30.58\r\nAY5CS,JVLO,Bedroom,7,5,Yes,A person is lying in a blanket in a bed with its eyes closed while television is on.,bed;pillow;television,A person is laying down with their head on a pillow. The TV is on in the background.;A person is laying or sleeping with the television on on the floor with a pillow smiling.,c134 0.00 33.00;c132 8.50 33.00;c152 8.90 15.50,32.38\r\nBD4P9,9Y7F,Living room,6,6,Yes,A person is sitting at their bed as they are awakening and turning on the light.,chair;light;sofa,A person is sitting on a bench and turns on a light.;Someone is sitting on a couch staring in the distance. They stand up and turn on a light.,c059 0.00 24.60;c154 17.80 24.30;c104 21.70 28.40;c123 0.00 21.80,30.67\r\nCRJGZ,9Y7F,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,Person opens door to Entryway and closes door.  Person sets keys on table.  Person sits in chair.  Person then gets up and leaves.,chair;door;keys;shelf;table,A person opens and walks through a door.  The person closes the door and puts keys on a table and sits in a chair.  The person opens and goes through the door again.,c008 0.40 10.30;c151 16.50 23.40;c009 10.10 18.20;c006 7.00 13.50;c059 17.60 25.90;c154 21.70 26.80;c097 0.60 8.60;c141 2.40 7.80;c081 12.20 18.10,30.58\r\nRGIZ7,9Y7F,Living room,6,6,Yes,\"A person closes a laptop, then laughs while looking out the window.\",bed;chair;lap top;laptop;sofa;window,\"A person sitting on a sofa with a open laptop is working on the lap top ,pulls the curtain aside and looks out and laughs .;A person works on a laptop, then closes it. They look out a window.\",c090 14.10 20.30;c092 15.40 25.00;c046 9.20 16.30;c051 0.00 13.10;c052 0.00 13.10;c059 0.00 32.00;c149 21.50 26.40;c135 0.00 32.00,30.67\r\nIBIWF,UD06,Living room,4,7,Yes,\"A person is playing with their camera. The person sets it onto the shelf, then begins tidying the area.\",bag;book;camera;phone;picture;shelf;table,\"A person is looking at a camera, they then set the camera on a table and grab a bag and begin tidying up things by putting them in the bag.;A person is messing with a camera they put it on a table and they start to tidy up the room they pick up a bag and put things into it.\",c016 0.00 14.50;c081 10.50 15.60;c020 23.10 28.30;c009 23.40 29.10;c015 0.00 11.60;c086 9.10 15.90;c017 6.80 12.10,30.79\r\n23QFL,PO5L,Recreation room / Man cave,4,7,Yes,\"A person is laughing and sneezing while grasping a broom, and then using a laptop in a recreation room / man cave.\",broom;couch;laptop;sofa,A person walks into a room holding a broom. They sit down on a couch and laugh. Then they cough and start playing with a laptop.;A person is sitting on the sofa with a broom. A person then begins sneezing. A person then looks at a laptop. A person then gets up off the sofa and walk away.,c051 14.40 28.20;c098 0.00 23.60;c153 4.20 12.70;c151 0.60 7.00;c154 24.50 30.20;c123 2.50 28.50,30.92\r\n94HB1,ZAWX,Home Office / Study (A room in a house used for work),5,7,Yes,A person is working on a desk.  Then a person is closing a drawer after putting a glass pen in it.,book;closet/cabinet;desk;table,A person is doing homework at a desk,c014 0.00 31.30;c011 0.00 33.00;c145 0.00 9.30;c027 5.40 11.90;c113 26.80 33.00,32.33\r\n06X2V,D0RU,Living room,6,7,Yes,A person smiles at himself in a mirror while playing with his camera.  The person then takes a towel out of a box.,box;camera;mirror;phone;towel,A man is holding a camera standing near a door.  He wipes his face in a mirror and picks up a blanket from a box before walking out of the room.,c044 15.20 22.60;c094 0.10 10.60;c035 16.80 23.90;c015 6.10 27.40;c152 0.00 7.70;c096 10.20 18.70;c149 8.40 17.60;c016 0.00 19.90;c038 22.70 27.80;c033 17.20 28.50,35.79\r\nWTFOC,HR43,Hallway,6,7,Yes,A person is fixing their clothes while standing in the hallway. They look toward the doorway and start running toward the door.,clothes;door,A person is wiping a shirt in a hallway. They open a closet door and look inside.,c008 18.40 23.00;c004 11.50 20.10;c097 18.40 23.00,21.75\r\nJ3V1D,XNDY,Recreation room / Man cave,4,6,Yes,A person drinks a beer while smiling and laughing. The person then takes off their shoes and gets up from their chair.,beer;bottle;chair;floor;glass;shoe,There is a person sitting in a chair drinking from a glass bottle.  That person then takes off their shoes and stands up.;A person is sitting in a chair and drinking a whole bottle of beer in one drink.,c059 0.00 26.70;c154 22.70 27.20;c057 19.60 25.60;c106 0.00 22.30;c107 0.00 32.00,31.00\r\nYBXCT,PO5L,Closet / Walk-in closet / Spear closet,3,6,Yes,\"A person is near a closet holding a towel, they then open the closet and remove a digital camera from it and puts it into their pocket.\",closet/cabinet;door;shelf;towel,A person walks over to the closet and grabs a towel.,c035 3.10 29.00;c113 1.90 8.40;c112 4.40 10.60;c081 3.50 9.20;c033 6.70 15.00;c008 1.90 8.40,27.58\r\n4J8YT,ZSRZ,Closet / Walk-in closet / Spear closet,4,7,Yes,A person is tidying in a closet with a broom. Then they start putting things from the closet into a box.,box;broom;closet;items,A person is sweeping inside of a closet.  The person then reaches to the shelf of the closest and takes things from a shelf and puts them in a box.;A person is sweeping a room they take something off of the shelf and put them into the box.,c102 0.00 10.30;c098 0.00 19.00;c114 0.00 19.00,17.96\r\nGLIC0,2RTW,Bedroom,6,6,Yes,A person is holding a bag of clothes and then starts undressing in front of a mirror,bag;clothes;jacket,a person is standing holding a bag they look in the bag and start to take off their jacket then they put the bag down and start to take off their shirt.;A person holding a bag of clothing removes their jacket and sets it down. The person then sets down the bag.,c020 0.00 29.80;c021 0.00 8.20;c155 3.90 20.80;c002 6.50 24.40;c001 21.10 26.70;c022 22.20 28.70;c000 17.10 26.50,30.83\r\nAZO8U,2RTW,Kitchen,6,6,Yes,A person is washing dishes and then starts tidying up by the window.,dish;glass;paper towel;table,\"the person stands facing away from the camera and washes dishes.  the person finishes, rinses of their hands, dries them on a towel, goes to a crowded table and moves the stuff around.\",c121 0.00 27.90;c107 3.30 27.90;c012 33.10 40.00;c107 12.70 40.00;c111 1.30 15.10,39.21\r\nOW9LO,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is tidying up the office with a towel, cleaning off the table and eating food remains and drinking leftover water.\",bag;book;cup;desk;food;glass;table;talbe;towel;water,A person is putting away a book while tidying up a desk they then take a sip of water and eat food.;A person puts a book in a bag as they tidy around a desk with a small towel. They then quaff some water from a glass and eat some snack food.,c012 9.50 19.20;c106 9.20 20.30;c156 19.70 30.00;c061 15.10 32.00;c061 0.00 5.10,30.71\r\nK9HPB,I4RP,Laundry room,6,7,Yes,A person is standing in a laundry room watching the washing machine go round.  The person folds a towel then walks to the other side of the room to pick up their phone.,phone;towel,person folds towel and places it on washing machine and pulls out phone,c015 6.50 11.00;c034 5.00 10.50;c037 0.00 10.70;c035 1.00 10.60;c016 6.20 11.00;c033 0.00 10.60,9.79\r\nE7Q3R,3H6W,Dining room,4,6,Yes,\"A person runs into their dining room, puts their coffee on the table, and takes off their shoes.\",chair;coffee;cup;dish;shoe;table,\"Person walks into the kitchen, places a cup of coffee on the table and removes his shoes.\",c057 9.70 18.70;c151 3.80 9.80;c009 5.20 12.40;c154 18.60 23.40;c109 5.20 12.40;c107 3.00 12.10;c150 19.20 23.90;c118 2.90 12.10;c107 0.00 2.80;c059 0.00 23.00;c150 0.00 2.60;c011 4.00 23.10;c118 0.00 2.80,27.71\r\n2CDOS,3H6W,Living room,6,6,Yes,A person is undressing and throwing articles of clothing at a television set that has a picture set on top of it.,clothes;floor;sweaters,A person walks in to a room to closet .The person takes off two sweaters and throws them on the floor and walks away .,c000 14.70 20.10;c001 10.40 22.20;c003 9.90 20.70;c155 2.40 20.00;c126 10.60 20.70,23.54\r\nOKYYQ,3VLX,Kitchen,7,7,Yes,\"One person closes a book, stands and starts tidying up a shelf in a cabinet, then smiles and leaves the kitchen.\",book;cabinet;shelf,A person reads a book then stands and then opens and begins tidying up a cabinet before giving the camera a smile while closing the cabinet door.,c032 0.00 12.60;c112 24.40 28.00;c113 7.90 15.60;c114 11.00 27.70;c154 5.60 12.10;c152 23.70 28.00;c082 9.00 28.00;c026 0.00 10.00;c025 2.50 8.50;c116 2.30 10.30,27.12\r\nFACX2,CO1W,Bedroom,7,7,Yes,The person was lying on the bed while trying to fix a camera.,bed;camera;phone;screwdriver,Using a screwdriver on a camera while laying in bed,c134 0.00 31.00;c016 0.00 31.00;c015 0.00 31.00,30.46\r\nM149H,KFGP,Dining room,6,7,Yes,Person is sitting on chair in dining room and looks at groceries and starts smiling.,chair;desk;food;groceries;table,A person is sitting in a chair looking at groceries on the table.;a person sits at a desk and looks at some food,c059 0.00 23.00;c130 0.00 23.00;c152 1.10 18.10;c011 0.00 23.00;c061 6.40 11.80;c063 4.70 9.70;c012 14.10 19.50;c062 11.20 15.30,22.38\r\nFIJ3D,YA10,Living room,7,7,Yes,A person opens a book then plays with a laptop.,book;laptop;shelf,\"A person takes a book off of a shelf and starts reading it. The person puts the book down. The person then opens a laptop and starts working on it.;A person takes a book off of a shelf,turns and lays the book on the couch.The person picks up a lap top and opens it and starts working on it.\",c047 19.30 31.00;c050 17.40 23.50;c025 16.30 21.40;c027 1.40 11.10;c030 0.00 5.30;c048 19.00 26.70;c052 23.60 31.00;c026 0.50 22.70;c028 18.10 22.90;c032 4.70 20.90;c051 22.10 31.00,29.79\r\nIKYVB,1OHU,Laundry room,5,7,Yes,A person is putting pillows away on a shelf in the laundry room. The person sits down then they're away.,chair;closet/cabinet;doorway;pillow;shelf;stool,\"A person put away a pillow in the laundry room.  The person then unfolded a chair and sat on it.  The person then left.;A person is fixing a pillow and placing it on a shelf. Then they unfold a step stool and sit on it, before standing and leaving.\",c076 0.00 2.70;c077 0.00 8.20;c081 0.00 7.50;c151 7.60 24.90;c059 10.00 23.70;c097 24.80 28.00;c114 24.80 28.00,26.88\r\nN7130,YMXV,Recreation room / Man cave,7,6,Yes,\"A person grabs a doorknob and enters their recreation room. They put their phone in their pocket, then they walk to a sofa and sit down.\",bed;door;phone;pillow,A person opens a door and puts a phone in their pocket. A person then sits on the bed.;A person opens a doow and walks through the doorway. They check their pockets then sit down on the bed.,c017 5.60 13.50;c151 11.50 32.00;c135 12.50 32.00;c015 5.00 10.50;c008 0.00 5.60;c097 1.60 7.70;c078 12.90 31.40;c134 12.70 32.00,30.88\r\nNWNUY,C7O9,Pantry,7,7,Yes,\"A person person smiles as they fix a shelf in the pantry, then put some food on it.\",box;counter;food;groceries;shelf,A person organizes and puts away some food onto a shelf;A person is adding containers of food one by one from a kitchen counter to a pantry.,c061 14.80 20.40;c062 18.50 25.80;c063 11.10 17.30;c081 9.90 28.00;c040 0.60 5.10;c130 11.40 28.00,27.00\r\nUISBN,D0RU,Living room,6,7,Yes,A person is fixing a chair while smiling at a picture.,chair;floor;screwdriver,A person is sitting on the floor fixing a folded chair with a screwdriver. The person then unfolds the chair and continues using the screwdriver. The person folds the chair into the closed position.,c152 11.40 33.00;c125 0.00 33.00,31.58\r\nQJ389,5LWB,Dining room,2,5,Yes,A person is opening a window and another person is grasping a book.,book;chair;table;window,\"A person is interacting with a window.  Another person sits in a chair, picks up a book from the table and reads it.;A person sitting at a table on  a chair picks up a book, opens it and begins to read it while another person looks out a window and tries unsuccessfully to open it.\",c026 7.90 18.00;c030 4.30 14.00;c092 0.00 18.00;c027 10.10 15.10;c032 11.10 18.00;c011 0.00 18.00;c090 1.40 17.60,17.04\r\n129SP,6RE8,Bedroom,5,6,Yes,\"The person was getting ready to leave, and paused to look at the picture of a television by the door.  As the person was closing the door, the person started sneezing.\",clothes;door;laptop;television,\"A person puts on a shirt, looks at the television and leaves through a door.;A person getts dressed while watching TV. The person then leaves the room and closes the door.\",c006 27.50 32.00;c132 18.50 27.80;c148 0.00 22.00;c008 25.30 31.80;c051 18.30 27.90;c097 26.90 32.00;c141 25.80 31.30,31.00\r\nTK00O,ID9V,Entryway (A hall that is generally located at the entrance of a house),1,7,Yes,A person is sitting in the study with a broom next to them.  They are fixing the doorknob.,broom;doorknob,Person fixing the lock on the door then turn around and stop to look at the camera.,c140 0.00 25.80;c154 22.10 26.00,25.29\r\nH6OA2,D0RU,Bathroom,5,3,Yes,\"A person stands in front of the mirror, holding a book.\",book;hair;mirror,A person walks down a hallway while holding a book. They then approach a mirror and begin to brush their hair and mustache.,c026 0.00 33.00;c096 4.20 33.00;c144 8.80 33.00,31.75\r\nLZ8Z0,UTMU,Garage,5,7,Yes,A person walks into a garage and takes a broom. They start playing with the broom and pretending it is a guitar. They stop playing because they see some shoes lying on the ground that are in their way. The person pushes the shoes to the side with their feet.,broom;shoes,\"A person walks to a corner and picks up a broom. The person plays air guitar with the broom, pushes shoes on the floor with their feet, and puts the broom back to where it was found.\",c098 4.00 34.40;c099 29.80 34.40;c100 3.60 9.20,38.71\r\nQAJQC,FNK4,Pantry,7,7,Yes,The person turns on the light and puts a laptop on a shelf. The person the walks out.,closet/cabinet;door;laptop;light;shelf,\"a person walks into a closet and puts their laptop in a cabinet then turns off light;A person holding a laptop walks from the kitchen into a small room, turns on a light, and opens up a cabinet door. The person places a laptop inside the cabinet on a shelf, closes the doors, turns off the light and walks out into the kitchen.\",c047 0.00 12.60;c104 2.00 7.00;c049 4.70 13.10;c105 11.10 18.00;c081 19.70 26.30;c006 24.70 30.00;c097 0.60 5.90;c113 3.60 10.30;c112 9.40 16.40,28.50\r\nTRUIW,YMXV,Bedroom,5,6,Yes,A person takes a dosage of medicine and looks in the mirror. They begin opening the door and running outside.,door;medicine;mirror;picture,This person is drinking from a bottle and opens a door and goes through it.,c008 19.00 29.20;c129 1.30 13.50;c096 0.00 19.50;c097 25.00 31.00;c128 0.40 7.60,30.12\r\n14YU9,WG9D,Recreation room / Man cave,7,7,Yes,\"A person throws something through the doorway. The person smiles, then continues working on homework.\",bench;book;doorway;phone;picture,\"A person is sitting at a bench in a room.  They throw an item in the closet behind them, and then proceed to briefly pick up a cell phone, put it down, and then instead pick up what appears to be a book and a picture.;A person sits and throws an object into a closet, picks up a phone an puts it own, then picks up a picture and a book and looks at them.\",,8.38\r\nV25IB,YMXV,Bedroom,7,4,Yes,A person is sitting in the hallway with their phone. They begin sneezing as they roll over to the doorway.,chair;phone,A person is sitting in a chair talking on the phone and sneezes. They stop talking on the phone and hold it in their hands.,c015 16.20 29.60;c016 16.50 27.00;c019 3.20 19.80;c153 0.00 4.90;c059 0.00 32.00,30.58\r\nUO5PM,YMXV,Basement (A room below the ground floor),7,7,Yes,\"A person enters the basement, turning on the light as they enter.  The person suddenly sneezes two times.  Realizing it's from all the dust, the person grabs a towel from a shelf and begins tidying up the basement.\",doorway;jacket;light;rack;towel,\"a person walks into a room and turns on the lights.  the person takes a towel and swings it around the room,;A person walks into a room and turns on a light and sneezes. They pick up a jacket off a rack and shake it out.\",c104 0.00 4.80;c097 0.00 3.70;c035 6.00 12.00;c033 6.00 32.00,30.58\r\n9UU4H,8IOD,Bathroom,7,7,Yes,\"One person puts come clothes and a blanket in a cabinet, then starts undressing.\",cabinet;clothes;sweater,A person is putting the clothes from the hamper into the cabinet. They also take off their sweater and sit it on top of the counter.,c155 13.60 34.30;c001 0.00 15.80;c000 0.20 5.70;c000 3.10 8.80;c003 0.20 5.60;c003 4.30 9.30;c002 0.00 4.90;c002 3.10 8.00,33.96\r\nJEDTE,4I61,Basement (A room below the ground floor),7,7,Yes,\"Wrapped in a blanket with a pillow under an arm, one person grasps a bottle of medicine, drinks it, then starts laughing.\",blanket;bottle;dish;floor;medicine;pillow,A person comes in to a room carrying a pillow wearing a blanket walks across the room picks up a bottle and walks out of the room.,c076 4.70 36.40;c070 4.90 35.40;c128 12.40 38.40;c129 18.60 25.30;c078 4.10 40.00;c072 3.70 40.00;c118 13.20 37.00;c127 10.90 17.40;c120 10.90 17.60,39.42\r\nNV70C,DXDI,Bedroom,6,7,Yes,A person sits at their desk in the Bedroom holding a picture while they are working.,chair;desk;homework;paper;table,\"A person is sitting at a desk reading a tablet of paper;This person appears to be in their bedroom, sitting at desk doing homework or something.\",c011 0.00 31.00;c145 0.00 31.00;c115 0.00 31.00;c059 0.00 31.00,30.42\r\nDP5S8,XNDY,Living room,4,7,Yes,Person is undressing and throwing clothing on chair while looking at phone.,chair;clothes;phone,peron standing in room holding phone takes off shirt wipes face,c015 0.00 31.00;c155 4.70 13.00;c003 9.10 13.90;c016 0.00 7.30,29.62\r\nEZCPC,3H6W,Kitchen,6,7,Yes,A person pours a bag of vegetables into a pan and begins cooking them on the stove. The person watches as they simmer.,bag;dish;food;pan;spatula;stove,\"A person walks into a kitchen, turns on a stove. The person pours food from a bag into a pan and starts to cook.;A person pours food from a bag into a pan and cooks it on the stove.\",c020 6.20 17.90;c023 6.20 10.40;c147 3.70 37.00;c063 6.20 10.40;c022 13.60 19.90;c061 5.30 30.30;c118 10.50 33.50;c062 6.40 20.40;c021 7.00 17.80,35.71\r\nPLGZM,QB52,Home Office / Study (A room in a house used for work),5,6,Yes,A person takes a camera from the shelf and begins playing with it.,game;head;phone;shelf;television;tv,\"A person is watching television, stands up, takes an electronic game system off of a shelf, and starts playing a game on it and scratches his head.;A person stands up picks up a game off of a shelf and opens it up.The person turns in different directions and scratches their head .\",c015 4.10 14.10;c018 2.50 8.10;c154 0.00 4.90;c132 0.00 3.20;c016 3.50 32.00,30.67\r\nD24XF,6RE8,Bedroom,6,7,Yes,\"In the bedroom, a person fixing the way the mirror was hanging starts sneezing. Afterwards, they grab a towel and begin tidying their face.\",mirror;towel,\"A person walks up to a mirror, touches it, then picks up a towel and dabs their face, before sneezing.\",c033 14.30 32.00;c153 23.10 29.10;c038 17.40 28.00;c035 13.70 19.30;c037 14.20 21.60,31.33\r\n2G6A8,2RTW,Basement (A room below the ground floor),6,6,Yes,\"A person plays with a camera. The person quickly stops and runs out of the room, turning off the light behind them.\",doorway;game;light;phone,A person holding a phone playing a game with a hoodie on .Turns off the light and runs from the room though the door;A person is standing still playing with a handheld video game.  The person suddenly turns off the light and runs out of the room.,c015 0.00 20.10;c105 16.00 20.90;c150 16.80 23.90;c097 18.00 23.80;c016 0.00 19.60,26.04\r\n47ZXN,UTMU,Bedroom,5,6,Yes,\"A person is tidying a cabinet. The stop, and try to fix a broken light.\",chair;closet/cabinet;light;shelf;wall,\"A woman adjusts something hanging on a wall, then gets on a chair to adjust the light fixture above her.;A person kneels down and tidies a shelf. Afterwards, the person turns on the light, stands on a chair, and touches the light before getting down.\",c103 19.50 30.10;c154 18.50 31.40;c060 18.50 31.60;c082 0.00 10.40;c114 0.00 8.10;c104 7.50 13.80;c105 10.00 16.10,32.29\r\nG5IHT,CCI9,Stairs,5,7,Yes,A person is holding a sandwich and then taking clothes out of a bag on the stairs.,bag;clothes;floor;food;garments;sandwich,The person is taking out garments from a bag while holding a sandwich,c067 0.00 33.00;c001 1.60 33.00;c003 1.90 33.00;c125 0.00 33.00;c002 1.20 33.00;c061 0.00 33.00,32.38\r\nG3TEA,8718,Bathroom,6,7,Yes,A person is tidying up some medicine on the shelf then they wash their hands before turning off the light.,cabinet;hand;light;medicine;shelf;sink;towel;water,\"This is person appears to be in a bathroom. Goes into cabinet, then washes hands, then wipes hands on towel.;A person is at the bathroom sink they open the medicine cabinet and tidy up, then they wash their hands and walk over to the towel and dry their hands then they leave the room turning the lights out.\",c105 38.60 43.00;c082 1.70 17.20;c139 0.00 4.70;c112 13.00 18.40;c113 0.90 5.50;c114 1.70 17.20;c128 8.00 15.10,41.58\r\n306S9,JVLO,Living room,5,6,Yes,A person is eating on a blanket while another person is sitting in a pile of clothes.,blanket;corner;floor;food,A young man sits on a blanket and eats chips.  Another young man sits on a pile of blankets in a corner.;A person is walking by a doorway and sits on the floor and has something to eat while another person who was sitting on the floor gets up and goes to another door,c156 2.50 22.30;c151 0.00 5.10;c154 16.50 23.80;c061 0.00 8.90;c125 1.30 21.90;c062 4.30 9.40;c062 8.60 14.40;c152 28.50 32.00,31.25\r\nIABNL,C7O9,Living room,6,6,Yes,A person is walking to the vacuum and another person is leaving the dishes on the floor.,cup/glass/bottle;dish;floor;vacuum,A person is fixing a vacuum while another person is layind dishes on the floor.,c119 5.60 17.80;c136 7.20 31.00;c109 10.10 26.00,29.79\r\nDAGXP,HJJ4,Entryway (A hall that is generally located at the entrance of a house),4,7,Yes,A person running under a light is grasping a picture.,book;doorway;picture;unknown,A person is holding something and hopping.,c084 0.00 8.00;c150 0.00 8.00;c097 0.00 5.20;c026 0.00 7.90,7.29\r\nC93HZ,Z68L,Home Office / Study (A room in a house used for work),7,7,Yes,\"A person is sitting on a chair holding a glass of water.  The person takes a drink and then pours the remaining water into a house plant, then picks up a pile of clothes off the floor.  The person turns off the light and leaves the room.\",chair;clothes;cup;glass;water,The is holding a glass of water. The person sits down and takes a few sips of water. The person then pours the rest of the water into a pot of plant and places the cup on the desk. The person gets up and picks up some clothing from the ground and walks out.,c000 22.90 30.70;c059 0.00 26.10;c106 1.70 17.60;c107 0.00 24.30;c109 19.70 24.70;c151 0.00 4.70;c002 22.60 30.10;c154 21.50 26.40,30.46\r\n2X7F6,ID9V,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person sits in their home office, working at a desk with an open book in front of them. The person smiles and takes a bite of food.\",book;food;sofa,A person is sitting on a sofa while reading a book and eating.;A person is sitting on the sofa reading a book. A person then begins eating.,c026 0.00 27.00;c032 0.00 20.20;c156 18.10 25.50;c123 0.00 27.00,26.08\r\n2OY8R,YA10,Bedroom,6,7,Yes,A person walks into a bedroom holding a laptop. They play a game on the laptop while eating a sandwich.,doorway;food;laptop;sandwich,A person walks into a room holding a laptop and eating a sandwich.,c065 2.00 7.20;c067 3.20 32.00;c047 0.00 32.00;c051 0.00 32.00;c156 2.60 7.50;c061 0.80 32.00;c052 4.40 16.90;c097 0.00 6.50,30.71\r\nHKLB1,XXN8,Closet / Walk-in closet / Spear closet,4,7,Yes,\"A person is undressing in front of a mirror. Then the person begins running to the closet to get a blanket, which the person wraps around himself.\",blanket;closet;clothes;doorknob;jacket;mirror;towel,\"Person undresses in front of a mirror, get a blanket out of the closet and bundles up in it.;A person is taking off their sweater in front of a mirror then begins to take a towel from a nearby closet.\",c096 0.00 16.50;c070 18.00 34.00;c155 5.30 18.20;c113 14.50 20.00;c141 10.00 17.30;c073 15.20 22.60,32.96\r\nIJTWU,1OHU,Other,7,7,Yes,One person is tidying up with a vacuum and another is under a blanket on a chair taking medicine and sneezing.,blanket;chair;floor;food;medicine;vacuum,A guy is sitting in a chair with a blanket around him and he swallows some medicine and sneezes a couple times. Someone else is vacuuming near him at the same time.,c059 0.00 32.00;c129 0.00 7.80;c137 0.00 30.90;c153 5.50 13.80;c156 0.40 5.60;c127 0.00 32.00;c072 0.00 32.00,31.42\r\n758T4,ADN3,Bathroom,5,7,Yes,\"A person is in their bathroom throwing empty bottles into the garbage. They take their laptop, and book and leave the room.\",book;doorway;laptop,\"A person walks in, throws something out and fiddles with the trash can, picks up a book and laptop off the counter, and walks out.\",c050 11.40 18.60;c030 9.40 15.40;c026 9.30 18.00;c097 12.50 18.00,18.50\r\nXCR15,BYF9,Stairs,7,7,Yes,A person was sitting on the stairs with their lap top taking pictures of groceries no one had put away.,floor;phone/camera;picture;toys,person is taking photos on toys while sitting on the stairs.,c087 0.00 21.00;c015 0.00 21.00;c016 0.00 21.00;c125 0.00 21.00,19.62\r\nXJFMW,KQI6,Living room,5,4,Yes,One person stands in the doorway with a camera while another sits with food at a small table.,bowl;dish;doorway;floor;food;table,\"The person is standing in a doorway, wringing their hands. Another person comes into the rooms, sits down in front of a table, and starts picking up food from a bowl.\",c061 27.10 32.00;c009 21.80 26.60;c011 24.60 32.00;c151 22.60 29.30;c118 21.40 26.00;c125 24.00 32.00;c119 21.50 27.90,31.12\r\nRZLAZ,UTMU,Stairs,7,7,Yes,A person is seen running up the stairs with a camera. They then begin lying the camera on top of some clothes,bag;camera,A person is running up the stairs holding something they put it down at the top of the stair.;A person runs up the stairs before placing a camera on the top.,c150 0.00 8.30;c017 7.70 14.90;c021 7.70 14.90;c015 0.00 14.90,21.79\r\n7EYIL,5LWB,Stairs,7,5,Yes,A person runs down the stairs. They open the refrigerator and grasp a bag.,bag;doorway;food;refrigerator,A person is running down the stairs then is opening a refrigerator and takes out a bag.,c143 12.80 19.10;c150 3.40 16.60;c097 3.80 8.60;c097 5.90 10.80;c097 7.80 12.50;c023 17.30 22.90;c020 15.90 27.00;c063 16.00 27.00;c061 16.10 27.00,25.88\r\nAICB5,HR43,Kitchen,5,7,Yes,A person is holding a blanket while cooking at the stove.,blanket;food;pan;stove,A person covered in a blanket walks over to a stove and turns it on. The person begins to heat up food in a pan.,c070 0.00 23.30;c147 2.10 33.00,32.46\r\nOIRPJ,YMXV,Bedroom,5,6,Yes,A person is seen in open the door to a bedroom.  They enter and are seen undressing.  They are then seen snuggling with a broom.,broom;clothes;door,A person is walking into a room and taking their shirt off. The person then picks up a broom,c098 10.70 22.20;c008 0.00 5.60;c155 3.00 14.60;c100 11.80 32.00;c001 7.70 12.70;c097 0.00 6.40,31.33\r\nZYGYS,4I61,Stairs,6,7,Yes,\"A person is running up a flight of stairs holding a laptop, they then reach for the doorknob and start sneezing.\",book;door;laptop,A person is running up the stairs holding a laptop then running back down.,c047 1.50 25.00;c150 1.10 24.10;c008 10.30 15.80;c115 1.80 8.40;c026 1.80 8.40;c097 11.80 17.90;c006 13.20 18.60,24.42\r\nTNOBD,25TD,Hallway,6,7,Yes,\"A person is holding a broom and tidying the room. The person begins playing on their phone as the person sits down to take a break, eating lunch.\",broom;chair;dish;doorway;food;phone;something,A person is sweeping the hall way and then sits on a small chair and plays with phone,c099 9.00 13.90;c102 0.00 13.30;c016 14.90 31.00;c151 13.70 19.60;c156 20.70 31.00;c061 16.40 31.00;c097 8.10 17.40;c118 16.40 31.00;c015 13.80 31.00;c059 14.10 31.00,30.08\r\n6S7M9,WQ8Z,Living room,5,6,Yes,\"A person runs through the hall holding a cup of coffee. They stumble when they hit their foot on a chair, stop to steady their self, and sit down.\",chair;cup;mug,\"The person bolted from another room into the living room, stopped, staggered to a chair, sat down, and took a sip from their mug.\",c059 9.30 20.00;c107 1.80 20.00;c151 9.30 17.70;c106 15.00 20.00;c150 1.40 7.60,19.38\r\n4EBCO,1OHU,Living room,6,6,Yes,\"A person is working on a laptop that is sitting on a shelf, then the person gets up and walks out of the room.\",floor;laptop;medicine;sink;sofa;wardrobe,A person is typing on a laptop. A person then gets up and walks away.;A person is sitting at a table and typing on a computer.  The person stands up from the table and walks into the living room.,c051 0.00 26.00;c154 21.30 28.20;c052 0.00 26.60;c125 0.00 26.90,28.88\r\nJJB0A,1OHU,Bathroom,6,6,Yes,Person is tidying wardrobe and finds medicine. Person walks to sink and dumps medicine.,clothes;cup/glass/bottle;doorway;medicine;rack;sink,\"A person finds a prescription medicine container on a rack of clothes. After finding the bottle, the person walks to the bathroom and upends it over the sink.\",c128 28.10 34.00;c097 25.20 33.80;c004 2.10 13.10;c107 25.70 38.00,36.92\r\nXPWYQ,1OHU,Living room,6,6,Yes,A person walks down the stairs carrying a stack of books.  Suddenly their cell phone rings and they start trying to find a place to put the books.  They put the books on a coffee table and take out their phone out of their pockets only for the phone to stop ringing.,book;laptop;magazine;phone/camera;shelf;table,A person is walking down the stairs holding and snuggling with magazines then setting them down a table.;A person is holding an armful of books. They walk into the living room and place the books on the coffee table.,c028 16.00 22.90;c028 14.30 19.60;c026 0.00 19.60;c009 14.30 19.60;c015 19.80 26.00,24.58\r\n5AM4C,XXN8,Home Office / Study (A room in a house used for work),7,7,Yes,A person throws a bag on the table then puts some coffee down.,bag;coffee;cup;table,A person is placing a bag and a cup of coffee onto a desk.,c022 0.00 4.60;c009 0.00 8.80;c107 3.00 8.50;c020 0.00 4.60;c109 1.50 6.60;c024 0.00 4.60;c110 1.70 7.00,30.38\r\nDUHWU,JVLO,Entryway (A hall that is generally located at the entrance of a house),3,6,Yes,\"A person is running to open the door. A person enters, walking in and taking their shoes off. The person turns the light on as the person walks past it.\",chair;door;knobb;seat,Someone runs up to their door and opens it. They walk in and spin around and take someones seat.,c008 9.30 16.90;c150 0.00 8.20;c151 22.80 28.80;c154 20.60 25.50;c152 23.40 30.90;c097 17.90 27.30;c141 6.70 13.10;c059 11.30 31.00,30.08\r\n7U43Y,2RTW,Pantry,6,6,Yes,\"A person stands in an open pantry, looking around. After a moment, they push aside a stored broom and grab a bag of coffee. They pull a filter off the shelf and hold it as they open the coffee and pour a small amount in.\",broom;coffee;cup;food;mirror;shelf,\"A person is looking at a shelf then puring coffee onto a cup.;A person is standing in a pantry. The move the broom take coffee fro a shelf, and some into a cup.\",c061 11.70 31.00;c063 11.20 24.30;c061 11.80 20.10;c062 20.50 31.00;c063 10.30 16.30;c108 14.40 31.00;c099 7.10 14.00,30.29\r\nOIXA4,EIO2,Dining room,6,7,Yes,A person is watching the food and another person is putting a glass on the table.,bowl;chair;cup;food;glass;table,\"A person is sitting in a chair, staring at a small table with a bowl of food on it. A second person walks into the room and places a glass of water on the table and then leaves.;A person sits in a chair while another person sets a glass of water on the table.\",c109 15.00 21.30;c059 0.00 31.00;c009 14.40 21.30;c011 0.00 31.00,30.33\r\n9UTFJ,2S0T,Bedroom,5,6,Yes,A person is standing in the doorway while turning on the light. Then they take some clothes to the cabinet.,closet/cabinet;clothes;doorway;light,\"A PERSON ENTERS THROUGH A DOORWAY, TURNS ON A LIGHT, CARRYING SOMETHING THAT GETS PUT IN A DRAWER.\",c097 0.00 4.60;c104 0.00 4.50;c001 4.20 9.00;c112 5.70 9.00;c113 2.70 7.20,7.83\r\nWN38A,5LWB,Laundry room,5,7,Yes,\"A person pours a box of detergent into the running machine, and places the box on the table.\",box;clothes;detegent;detergent;door;laundry;table;washer,The person is pouring detergent into the laundry and then walking away.;A person is holding a box and spooning detergent into a washer. They close the door to the washer and they put the detergent box on a table. And then they walk away.,c039 9.50 14.60;c009 13.60 18.70;c041 0.00 3.90;c097 10.40 16.90;c040 0.00 16.80;c042 13.30 18.70;c044 0.10 5.20;c005 8.70 22.00;c041 0.00 13.90,21.42\r\nUDGRS,3VLX,Dining room,7,7,Yes,A person running a vacuum sees a an open book next to their phone and closes it.,book;phone;table;vacuum,\"A person vacuums the carpet in their dining room. They pick up a phone and a book on the dining room table and tidy them up.;A person is vacuuming around a dinner table.  They then turn off the vacuum cleaner, inspect the cell phone on the table, then they grab the book next to it.  They take both the book and the cell phone, stack them together on the table, and walk away.\",c025 20.60 27.60;c137 0.00 18.50;c016 16.60 25.90;c017 19.90 25.80;c009 19.80 26.80;c028 21.30 29.50;c012 16.60 29.80;c030 21.00 31.00;c026 21.60 28.80;c015 17.10 25.80;c018 16.50 21.40,30.04\r\nUL65N,2Q9D,Bedroom,6,7,Yes,A person walks into the bedroom and sits on the bed.  They pull a bag out from under the bad and put it on the bedside table.,bag;bed;table,A person walks into the bedroom and sits on the bed. They pull out a bag from under the bed and place it on a table.,c135 1.50 30.00;c023 3.40 11.10;c009 11.20 17.80;c151 0.80 6.10;c022 9.70 17.20,28.92\r\nBT8WU,ZAWX,Living room,7,7,Yes,A person is seen watching something on their phone. They take off their blanket and begin eating.,blanket;chair;food;phone;something;towel,\"A person is sitting on a chair playing on their phone. They stand, fold a towel and eat something.\",c015 0.00 23.00;c016 0.00 19.40;c156 26.20 32.00;c037 17.30 29.80;c059 0.00 19.40;c154 14.90 20.00;c063 22.90 30.70;c035 18.50 26.30;c033 18.40 32.00,31.33\r\nU2V5A,2Q9D,Bedroom,6,6,Yes,\"A person stands in the doorway, holding a pile of old clothes and cast-off shoes.\",clothes;door;shoe,\"A person is in the garage holding a bundle of clothes and shoes standing at a door.;A person is holding clothes and standing at a doorway, they are also holding shoes.;Person is standing the door holding some clothes along with a pair of shoes.\",c000 0.00 31.00;c053 0.00 31.00,30.04\r\nPAYYN,2Q9D,Garage,6,6,Yes,\"A person is sitting in their garage, playing on their laptop. The person puts their laptop away in a cabinet, and then leaves through the doorway.\",door;laptop;shelf,A person is sitting on a car working with a laptop they get up put the laptop on a shelf and go inside through a door.;Someone is sitting on their laptop. They close it and place it on a shelf and walks out through a door.,c141 0.00 7.90;c008 3.60 8.50;c052 10.90 23.00;c006 23.10 28.80;c097 21.00 28.40;c154 7.90 13.90;c081 8.90 22.50,28.67\r\nIII9I,2Q9D,Kitchen,6,6,Yes,The person is in the garage grasping the doorknob after closing the refrigerator door.,closet/cabinet;door;refrigerator,A person stands in front of an open refrigerator.  They close the refrigerator door and walk to another door.  They grasp the doorknob.,c141 8.80 23.00;c006 1.60 7.40;c143 0.00 3.20;c142 2.20 6.90;c112 1.00 6.90,21.62\r\nOWOCT,4I2W,Bedroom,6,7,Yes,\"The person enters the bedroom and, after taking off their shoes, places a book on a table next to the bed.  The person begins sneezing and then starts laughing upon realizing that allergy season is nearly over.\",bed;book;clothes;doorway;person;shoe;table,\"Person walks into the bedroom and grabs a book and places it on a table.;Person walks in room, looks at another person in crib, bends down, picks up shoes and book, place book on table, looks at clothes on hanger, touches neck and face.\",c026 12.70 22.70;c030 11.20 17.30;c056 9.00 15.20;c133 24.00 30.00;c028 12.40 23.60;c053 10.60 30.00;c009 18.30 23.80;c097 0.00 4.60,29.33\r\nJ8781,5LWB,Bedroom,5,7,Yes,\"A person is getting dressed in the bedroom, putting on their shoes while sitting on a chair.  The person gets up, walks to the door, opens it, and leaves, closing the door behind them.\",chair;clothes;door;shirt;shoe,\"A person puts on a shirt before turning around and sitting in a chair. After sitting there, the person gets up, leaves the room, and closes the door.;a person puts a shirt on then sits in a chair after moving shoes and walks out a\",c006 14.50 21.00;c053 3.90 9.20;c056 3.90 9.20;c151 4.60 10.20;c154 9.70 14.50;c148 0.00 6.00;c059 4.50 14.10;c008 11.70 18.60;c054 3.40 10.10;c148 10.40 20.40;c001 0.00 6.00;c097 14.40 21.00,19.96\r\n1VUWS,XXN8,Bedroom,6,6,Yes,A person is folding laundry on the table and notices a camera. The person starts walking towards it and accidentally hit the light switch and laugh.,camera;clothes;light;table,A person folds laundry while standing up.,c004 0.00 27.20,30.62\r\nY063A,3H6W,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person wearing shoes tries fixing a vacuum. They start sneezing.,vacuum,\"A person picked up and changed the canister to a vacuum, and coughed in front of a white door.\",c136 6.00 29.20;c153 19.50 26.00;c154 24.30 30.10;c137 11.80 29.50,30.21\r\nRVLLF,9Y7F,Stairs,5,7,Yes,A person is standing on the stairs holding a towel in one hand and shoes in the other hand.  The person puts the towel on the shelf and leaves.,clothes;doorway;hand;shelf;shoe;towel,person walks down stairs holding a towel and shoes. They place the shows and towel in a cupboard/shelf.,c053 0.00 17.20;c054 11.50 18.40;c081 11.50 18.70;c097 9.00 14.80;c001 11.20 19.70;c000 0.00 18.30,30.42\r\nCAW41,BYF9,Recreation room / Man cave,7,7,Yes,A person is wrapped in a blanket while eating potato chips. The other person is trying to vacuum up the potato chip crumbs and watching them as they continue to drop.,blanket;floor;food;sofa/couch;table;vacuum,One person is laying on a couch covered by a blanket and eating and another person is vacuuming the area right in front of the couch.,c137 0.00 25.00;c063 0.00 25.00;c072 0.00 25.00;c156 6.90 25.00;c122 0.00 25.00;c127 0.00 25.00;c009 12.80 19.00,23.83\r\n5UNDJ,D0RU,Hallway,4,7,No,\"A person is holding a medicine bottle, pillow and an apple. The person eats the apple and takes a pill from the bottle.\",bench;bowl;dish;doorway;food;lid;pillow,\"A person walks through a door holding a pillow and eating some food. THe person sets something down on a bench.;The person walked in, picked up a bowl from the bench, opened the lid to the bowl, took something to eat from out of the bowl, closed the bowl and put it back on the bench before walking away.\",c076 70.90 195.00;c156 98.10 178.90;c061 71.90 180.80;c063 91.30 160.40;c097 70.90 93.40;c119 147.70 157.50;c062 148.70 159.50,194.33\r\nAJ5YQ,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is standing in the entryway holding a sandwich in front of the door.  The person grabs their camera and takes a picture of themselves eating the sandwich.,camera;door;food;phone;picture;sandwich,\"A person standing at the door, reaches into their pocket and takes out a camera.   While holding the camera, the child appears picks up a sandwich and takes a bite.\",c015 2.80 15.40;c018 2.50 9.10;c156 11.60 24.00;c016 3.40 24.00;c061 10.10 24.00;c067 10.10 24.00;c062 11.30 15.90;c087 11.00 24.00,22.79\r\nAEA8P,0KZ7,Basement (A room below the ground floor),6,7,Yes,\"One person is in the basement eating a sandwich and smiling. Then, this person laughs and snuggles some laundered clothes.\",chair;clothes;food;sandwich;table,\"A person in a chair at a table, eats a sandwich, laughs, then cuddles a clothes that are  on the table.;A person is sitting at at table eating a sandwich while smiling. The person then snuggles with a pile of clothes.\",c065 0.00 13.70;c000 9.70 24.00;c152 0.00 8.90;c059 0.00 24.00;c067 0.00 24.00;c156 0.00 4.00;c011 0.00 24.00,23.00\r\nQAHJG,6RE8,Living room,5,6,Yes,A person is standing in their pantry holding a laptop. The person opens their laptop and places it on a table.,laptop;table,\"A person puts a laptop on a desk, opens it, and then stands next to the desk watching the laptop.\",c048 1.70 8.70;c051 4.70 32.00;c009 0.00 4.50;c014 0.00 11.90,31.00\r\nJFR2I,3531,Dining room,7,7,Yes,A person is working at a desk in the dining room. They get up and move to pour more win into a glass.,book;cup;desk;floor;food;glass;paper;something;table,\"A person is sitting on the floor at a lap desk, tidying up the things on it. The person then stands up and walks to another table where the person pours something into a glass.;A person sitting on a floor in front of a desk .The person picking up papers and stacks them on a book.The person picks up the book and puts it back down.The person gets up and goes to a table and picks up some food.\",c012 0.00 24.20;c110 23.60 29.20;c154 19.70 26.60;c108 24.70 33.00;c011 0.00 25.70;c125 0.00 26.00;c107 24.40 33.00;c116 0.00 15.90;c115 0.00 20.20;c028 18.10 24.20,32.38\r\nJQJSB,KFGP,Hallway,5,7,Yes,A person was leaving a camera on the floor in the hallway as they were working on replacing a loose doorknob of a door in the hallway.,door;floor;object,\"Person in hallway, kneels down, grab object, touch door knob, stands up trying to open door with object.\",c140 0.00 7.90;c141 22.60 28.00;c007 21.00 29.60;c154 8.80 14.60,28.83\r\nCM0F0,YA10,Kitchen,7,7,Yes,A person is in the kitchen putting groceries into the cabinet.  The person tidies up the groceries in the cabinet before taking a canned good out and placing it on the table.,cabinet;food;groceries;shelf;table,\"A person took groceries from the counter and put them into a cabinet, then rearranged things. Then the person walked to a table and placed an object, and walked out of the room.\",c114 0.00 23.30;c009 21.70 28.20;c130 0.00 22.10;c062 1.60 6.60;c062 3.20 9.30;c082 9.40 21.30,30.00\r\nAEHBG,BYF9,Bedroom,7,7,Yes,\"A person is standing in a closet looking at shoes on their feet in a mirror. They tidy up, eat a chocolate and leave.\",food;mirror;shoes,\"A person is looking in a mirror, then cleans their shoes and applies lipstick.\",c096 0.00 15.20;c156 27.70 37.80,41.08\r\n0RDVJ,T7C3,Stairs,6,6,No,A smiling person is seen grasping a vacuum while also holding a blanket.,blanket;clothes;stairs;towel;vacuum,A person is on the stairs vacuuming and holding a blanket in the lap.;A person is sitting on the stairs holding a vacuum and a towel.,c070 0.00 41.00;c137 0.00 41.00;c000 0.00 41.00,39.71\r\nNCLD1,YA10,Garage,4,7,Yes,\"One person, who is drinking, plays a game of throwing a pillow into a box.\",box;glass;pillow;soda;water,A person is standing drinking a glass of water and holding a pillow. They throw the pillow into a box that's on the floor and then reach down into the box and pick the pillow back up. They throw it in the box and retrieve it repeatedly.;A person is  drinking and throwing a pillow in a box over and over again next to a broom.,c080 0.00 4.60;c106 0.00 3.50;c076 0.00 4.10;c076 3.10 10.70;c076 9.30 19.40;c044 2.30 7.60;c044 8.80 14.30;c044 17.70 23.20;c107 0.00 34.00;c076 30.90 34.00;c044 30.90 34.00;c107 30.90 34.00,32.83\r\n86X97,H8N1,Bedroom,4,6,Yes,\"A person is walking over to the bed. The person picks up a book and opens it, watching out the window as the person does so.\",bed;book;window,A person grabs a book and flips through it before leaving.,c026 1.80 37.40;c032 6.80 37.20;c028 34.00 41.00;c027 6.60 37.60;c030 1.40 7.60;c092 1.80 11.20;c092 10.00 18.60,39.96\r\nGH3D1,2RTW,Kitchen,6,6,Yes,The person cooking on the stove is eating food and looking in the mirror.,camera;food;glass;hair;light;mirror;stove;water,{};A person is cooking food on a stove while looking in a mirror.,c062 0.10 6.40;c063 0.00 5.10;c096 8.40 22.80;c156 7.90 13.30;c147 2.30 11.30;c061 0.00 12.20;c144 11.30 22.30,30.50\r\n44HW5,9Y7F,Basement (A room below the ground floor),7,7,Yes,A person runs into the basement holding their phone in one hand and their laptop in another.,doorway;laptop;phone,A man runs into the room.  He is holding a laptop and checking a phone.  He is wearing a striped shirt.,c047 9.50 32.00;c016 17.20 32.00;c150 9.50 16.70;c015 9.20 32.00;c097 9.20 15.30,30.96\r\nEI17N,EIO2,Hallway,5,6,Yes,A person is working on the stove and another person is smiling while on the phone.,floor;object;phone;something;wall,\"2 people are in a row, 1 is on the phone, the other is setting up a stove on the floor.;A person is leaning on the wall while the other person is working on the floor.\",c015 0.00 31.00;c019 0.00 31.00;c152 2.80 9.60;c125 0.00 31.00,30.25\r\n0LDP7,HR43,Kitchen,6,6,Yes,A person is cooking on a stove while reading a book. The person puts the book down onto the counter.,book;food;pot;stove,A person is reading a book while cooking some food on the stove. The person closes the book.,c147 0.00 28.00;c145 0.00 26.30,26.96\r\n7CBNR,2RTW,Bedroom,6,7,Yes,\"A person runs a vacuum under a bed, then sneezes.\",bed;carpet;vacuum,A person is vacuuming their room. Then they stop and wipe their forehead.,c137 0.00 26.10;c153 16.10 20.60,29.67\r\nK1UTX,YMXV,Bathroom,5,4,Yes,Person is putting camera on sink while talking on phone and laughing.,door;phone,\"This person answers a phone call, paces around while on the phone.;A person walks out of the bathroom with their phone. They begin talking on the phone.\",c015 0.60 9.20;c019 5.60 32.00,30.75\r\n8PSXZ,HR43,Kitchen,7,7,Yes,\"A person is cooking on the stove when they stop, grasp a box, and move it.\",box;food;pot;stove,A person stands at a stove cooking something in a pot.  They pick up a box and move it next to a laptop.,c040 21.00 27.90;c042 21.20 28.90;c043 20.70 28.70;c147 0.00 33.00;c062 23.80 28.70;c063 21.30 26.10,32.33\r\nEF5XT,YA10,Hallway,3,6,Yes,\"A person begins smiling under a light, then begins pouring water in a glass\",cup;dish;glass;pitcher;water,A person holds a pitcher of water smiling. They pout the water into a glass.;A person standing in a hall holding a pitcher with water and a glass. The person proceeds to pour the water in to the glass and laughs and looks up at the ceiling .,c107 13.70 28.00;c108 7.80 19.70;c152 4.80 28.00;c149 4.20 28.00;c118 0.00 28.00,26.83\r\nAXM6J,0RNU,Garage,7,7,Yes,A person is throwing things into a box and then running a vacuum in the garage.,box;floor;junk;vacuum,\"A person is picking objects up off their garage floor and putting them in a box, then they vacuum the floor.\",c137 23.10 34.00;c127 0.80 23.20,33.12\r\nHB8QW,3H6W,Dining room,7,7,Yes,A person sits on a bag in the dining room undressing and laughing while holding a broom.,bag;broom;clothes;table,A person walks up while holding a broom in their hand and sits down in a chair and then gets up again and walks away while still holding the broom.,c098 0.50 20.80;c151 2.60 18.60;c154 13.70 19.20;c011 2.50 18.60;c001 11.00 16.50,25.42\r\nC3ZJU,L4ZP,Bedroom,5,7,Yes,A person is undressing and looking at themselves in the mirror while another person is sneezing and eating a sandwich.,bottle;chair;clothes;food;jacket;mirror;pop;sandwich,A person enters the room and takes their jacket off. Another person is sitting on a chair eating a sandwich and holding a bottle.;One person sitting in a chair is eating a sandwich and drinking something while another person stands in front of a mirror and begins undressing.,c096 4.10 8.90;c067 2.00 31.00;c156 7.00 31.00;c059 1.10 31.00;c065 7.50 18.10;c155 6.10 25.90;c001 14.70 30.50;c061 1.50 31.00;c002 7.80 18.60;c153 3.50 9.70;c107 1.80 15.60,29.54\r\nW2QG1,3VLX,Bedroom,7,7,Yes,A person awakens in bed then throws their pillow onto a chair.,bed;blanket;pillow,\"A person is lying on a bed sleeping. The person wakes up and then throws a pillow on to a chair.;Person lying in bed, wakes up and throws a pillow off of the bed before sitting straight up.\",c080 12.20 18.60;c134 0.00 13.40;c146 4.00 13.80;c077 10.90 18.30;c133 0.00 22.00,20.88\r\nP3JMV,ZAWX,Closet / Walk-in closet / Spear closet,3,6,Yes,A person is dressing and putting on their sweater.  Another person is laughing and putting a glass on a shelf.,chair;clothes;cup;glass;shelf;sweater,The person is sitting down and putting on a sweater. Another person moves the first person out of the way. The first person gets up to move out of the way. The second person places a glass item on the shelf.,c107 17.30 26.40;c081 18.20 26.40;c154 16.50 23.50;c148 0.00 15.00;c002 0.00 11.20;c082 19.40 27.00;c000 0.00 12.40;c059 0.00 19.90,28.79\r\n87T5P,XARO,Dining room,6,5,Yes,A person is tiding up with a vacuum. The person starts sitting and watching television.,chair;floor;sofa;television;vacuum,A person is vacuuming their floor. Then they walk into the living room and sit on a couch while watching TV.,c137 2.30 22.50;c151 23.60 29.70;c123 25.60 32.00;c132 23.70 32.00;c127 1.70 23.00;c059 25.10 32.00,30.75\r\nFNJ2G,T7C3,Hallway,7,6,Yes,A person is sneezes then begins laughing on the phone while holding a broom.,broom;phone,A person sneezes while holding a broom. The person then begins to talk on the phone while laughing.,c098 0.00 33.00;c019 4.80 33.00;c153 0.00 12.00;c149 8.00 33.00,32.25\r\n3MWAY,L4ZP,Kitchen,6,6,Yes,\"A person is holding a glass as the person is standing in the doorway. Then, sneezing, the person walks to the refrigerator to pour more soda into their glass.\",cup;doorway;glass;refrigerator,A person walks into the kitchen while holding a cup and sneezing. The person opens the refrigerator then gets some juice out and pours it into the cup. The person then puts the juice back in the refrigerator and closes it.,c109 5.40 11.50;c097 4.20 10.80;c142 17.70 23.60;c143 7.80 14.30;c153 0.00 8.40;c107 0.00 11.50;c110 13.40 21.20;c107 16.30 35.90;c108 21.10 32.10,34.50\r\n3OQ81,HJJ4,Garage,6,7,Yes,\"One person runs into the garage, puts some groceries on a table, and grabs a bite to eat.\",bag;food;groceries;shelf;table,\"A person is putting a bag of groceries on a table then taking food and eating it.;A person carries a bag while walking around a corner. After putting the bag on a shelf, the person eats some food from the bag.\",c130 0.00 6.60;c022 0.00 6.90;c063 2.30 14.50;c009 1.50 6.40;c156 5.50 20.00;c020 0.00 6.40;c061 3.90 19.70,19.33\r\nJVJZX,T7C3,Pantry,7,7,Yes,\"A person walks into the pantry and finds their laptop on a chair.  The person closes the laptop, grabs it, and leaves the pantry.\",chair;laptop,A person looks at a laptop on a chair.  The person closes the laptop and picks it up.,c046 12.90 18.40;c050 14.30 20.70;c047 14.00 26.20,25.58\r\nTFCNM,PKND,Closet / Walk-in closet / Spear closet,6,5,Yes,\"A person sits in a laundry room chair, smiling as they look through some things on a shelf.\",cabinet;chair;door;shelf,A person sits on a chair and looks into a cabinet while smiling.;A person is standing in front of an open cabinet laughing.,c152 0.00 31.10;c149 0.00 2.60;c113 0.00 32.00;c008 1.10 7.60,31.25\r\nM8PXK,9Y7F,Dining room,7,7,Yes,One person is eating food at a chair with a pillow on it when another walks in and starts tidying with a broom.,broom;chair;floor;food;pillow;table,A person is sitting at a table eating food and another person comes to sweep the floor nearby,c059 0.00 31.00;c063 1.50 9.40;c102 3.70 31.00;c156 0.00 31.00;c012 8.10 16.80;c127 14.40 31.00;c061 0.00 31.00;c154 2.50 8.20,30.08\r\nITXRK,9PLL,Kitchen,4,7,Yes,\"A person is lying down in their kitchen. They stand up and start undressing, placing their jacket on a shelf. Then they pick up a pillow and raise it to the light.\",clothes;floor;jacket;light;pillow;shelf,A person is laying on the floor of a kitchen. The person stands up and undresses from their jacket. The person sets the jacket on the stove. The person grabs a pillow and holds it under a light.;There is a person laying on the floor.  That same person stands up and takes off a jacket.  Then that person carries a pillow somewhere.,c079 42.90 50.60;c081 48.00 54.60;c155 32.20 51.20;c154 48.60 55.10;c001 48.00 55.10;c002 9.60 39.90;c076 52.00 57.00;c124 2.00 10.50,56.50\r\nDZ0SB,OUKK,Living room,4,7,Yes,One person puts down a book and some homework and then leaves holding a laptop.,book;homework;laptop;paper;sofa/couch;table,\"A person sits on a sofa and does homework, opens a book, opens a laptop, and then stands and walks away.\",c027 21.80 28.10;c026 2.70 32.20;c145 5.20 31.10;c052 29.80 35.90;c154 31.90 37.10;c046 31.20 35.40;c028 25.50 29.70;c009 25.30 31.30;c032 4.00 29.90;c123 3.90 36.30;c030 0.00 30.10,38.92\r\nS9KOH,WG9D,Laundry room,5,7,Yes,A person in standing in the laundry room with a bag of shoes in their hand. They start taking the shoes out and lying them on the ground.,bag;clothes;groceries;hand;shoes,A person is putting away groceries from in a bag;A man is taking clothes out of a bag.,c020 0.00 9.00;c021 0.00 2.50;c130 1.00 9.00,8.00\r\n9QVWC,9PLL,Living room,6,6,Yes,A person is closing a window and then sneezing while sweeping with a broom in a hallway.,broom;door;floor;window,\"A person is closing a door, they then pick up a broom and begin tidying the area around them and start sneezing.;A person is standing fixing a door. Then they get a broom and sweep the floor.\",c102 15.00 33.00;c153 19.70 33.00;c007 0.00 12.70;c127 16.50 33.00;c092 0.00 7.30;c098 14.00 33.00,32.38\r\nBZ4K7,5LWB,Dining room,6,7,Yes,A person is laughing at another person drinking coffee in the dining room while trying to fix a blanket.,blanket;chair;coffee;cup;smiling;table,\"A person wraps up in a blanket while another person drinks coffee while sitting at a table.;Persons sitting on chairs at table, one pulling blanket on and off head while smiling. Other person with cup in hand drinking.\",c106 6.00 12.00;c149 13.00 25.00;c011 0.00 25.00;c072 0.00 25.00;c009 0.00 25.00;c059 0.00 25.00;c152 0.00 25.00,24.12\r\nMFXZD,XXN8,Living room,5,7,Yes,\"A person holding a broom is on the phone. Another person appears to be awakening, still snuggling their blanket.\",blanket;broom;phone/camera;sofa/couch,one person is resting on a couch while another person is standing in front of them with a broom,c098 0.00 31.90;c123 0.00 33.00;c019 1.20 31.40;c072 0.00 33.00;c015 0.00 31.20,32.12\r\nUPWM5,T7C3,Stairs,7,7,Yes,A person is holding a box. The person puts down the box and picks up a broom.,box;broom,\"A person is standing at the stairs holding a box of books. They put the box on the floor, grab a broom, and leave.\",c040 0.00 22.90;c042 18.10 26.50;c098 24.00 33.00;c100 24.40 31.60,31.62\r\n7FQ5Q,ZAWX,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person walks into a home office, carrying a laptop. The person sets the laptop down on a table and leaves.\",laptop;table,\"A person walks into a room and sets a laptop on a table, opens it, then turns and walks out.\",c047 0.00 2.90;c048 0.00 3.40;c049 0.00 2.90;c009 0.00 2.90,30.42\r\n7WOTM,1OHU,Hallway,6,6,Yes,\"A person runs through the entryway with their groceries, awkwardly laughing with a sandwich flopping around in their mouth.\",bag;bread;food;groceries;grocers;sandwhich;sandwich,A person is running through a hallway with groceries and some bread in their mouth.;{},c020 0.00 23.00;c065 0.00 23.00;c150 0.00 23.00;c149 0.00 23.00;c023 0.00 23.00;c061 0.00 23.00;c156 0.00 23.00;c152 0.00 9.20;c067 0.00 23.00,21.54\r\nM7BD4,1OHU,Hallway,6,6,Yes,A person opens a wardrobe before closing their laptop while in the process of tidying up the room.,box;closet/cabinet;door;floor;laptop;paper/notebook;table,Someone is picking up stuff from the floor and putting in a box; all while holding a laptop in their hands. They open a closet door and look inside.;a person is standing in hallway holding a laptop they bend over and tidy up some clothes on the floor then they open the closet and close their laptop.,c046 20.20 26.20;c047 0.00 29.00;c008 17.10 23.50;c113 18.00 23.50;c116 13.90 19.60;c009 13.70 19.10;c127 2.80 10.90,28.29\r\nZS9IX,1OHU,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person just arrived from work and is standing in the entryway and then proceeds to undress from their winter gear. They remove their shoes and put their laptop on the table in the entryway.,book;clothes;door;jacket;keys;laptop;shoe;table,A person is entering a room holding a book. A person then takes off a jacket.;A person enters the room through a door and takes off their shoes. The person then takes off their jacket and key necklace,c047 5.20 21.60;c009 15.30 21.70;c155 18.20 32.00;c057 9.10 15.90;c097 3.50 12.00;c141 4.20 15.40;c001 18.50 32.00;c008 5.90 10.90,30.75\r\n6QPNW,D0RU,Living room,6,7,Yes,A person is smiling at a pair of shoes while another person is playing with a camera.,camera;chair;phone;sunglasses,\"A person sat in a chair holding and fiddling with a camera as another person stood next to that person, holding a pair of sunglasses, and then the standing person exited and the other person continued to use the camera.;a person looks at a camera while another person stands near smiling\",c015 0.00 32.00;c152 13.50 21.40;c059 0.00 32.00;c149 0.00 32.00;c087 0.00 32.00,30.67\r\nR1X8P,DXDI,Kitchen,6,6,Yes,\"Person is opening cabinet then gets medicine out, then looks at phone and starts smiling.\",cabinet;medicine;phone,\"A person in a kitchen opens a cupboard and pulls out a bottle of medicine, which they sent on the counter. They pick up their cellphone and appears to text or check something and smiles briefly while looking up near the ceiling.\",c128 6.00 13.40;c015 10.60 22.00;c016 11.30 22.00;c018 7.60 15.20;c113 0.00 3.70;c152 11.90 22.00,20.62\r\nGPUFH,8718,Kitchen,4,3,Yes,A person is eating snacks while they are tidying up the sink with a towel.,closet/cabinet;food;microwave;pot holder;sink;towel;water,\"The person took something out of the microwave then dropped a potholder on the floor.;person preparing something in the kitchen, some object fells down and then she takes it and then cleans it in the sink\",c033 9.00 18.20;c034 11.10 19.30;c035 7.50 13.40;c037 6.60 14.50;c038 13.60 19.90;c062 14.70 21.70;c114 18.90 30.10,29.92\r\n0HVVN,QB52,Basement (A room below the ground floor),5,5,Yes,A person is watching the laptop while fixing the phone.,bed;paper/notebook;phone,Person sitting on bed playing with phone,c016 0.00 26.10;c135 0.00 28.30;c015 0.00 24.30;c017 16.90 24.70;c115 21.50 31.70;c154 20.30 27.00;c117 20.70 31.80,30.88\r\n28D7L,9PLL,Bathroom,7,6,Yes,\"A person is standing in the bathroom drinking a cup of coffee.  The person puts the coffee on the shelf, grabs a blanket, and laughs.\",blanket;coffee;cup;glass;shelf;towel,A person is drinking coffee and puts the cup onto a shelf. The person picks up a blanket and laughs.,c070 18.60 32.70;c106 0.00 22.20;c081 14.00 22.00;c149 20.90 29.50;c152 21.80 33.00;c109 11.00 17.40;c033 16.10 33.00;c035 16.10 22.20,31.71\r\nJK4Q2,9Y7F,Bathroom,7,7,Yes,A person turns the light on and begins washing the mirror over their bed. Then the person picks up a sandwich and begins eating it.,doorway;food;glass;hands;light;mirror;plate;sink;table;tray,\"A person walks to a light and turns it on.  A person grabs a try and cleans it.  The person then goes to the table and takes food from it and eats it.;A person turns on the light in a room, walks through a doorway to the bathroom carrying a mirror.  They wash a mirror over the sink, then walk to a table and put it down.  Next, the walk to another table and drink from a glass\",c104 0.00 5.60;c093 0.60 9.70;c095 5.60 15.00;c097 1.90 9.40;c063 23.40 30.20;c062 22.30 27.20;c156 26.30 32.00;c061 25.20 29.40;c139 19.50 25.10;c094 4.80 11.30;c096 4.80 13.30,30.92\r\nDV6U8,UTMU,Bathroom,5,7,Yes,\"A person is washing their hands in the bathroom. Once they are done, they start holding a camera that they find in the cabinet and begin running out the room.\",cabinet;camera;doorway;hand;phone;towel,Person is washing their hands. Person then opens a cabinet and takes out a camera. The person runs out of the room.,c139 0.00 12.10;c113 12.90 19.40;c015 16.00 29.50;c150 25.40 32.00;c097 26.50 31.10;c018 15.70 21.10;c033 9.70 16.30;c114 0.00 12.30,31.08\r\nGZQ0V,UTMU,Basement (A room below the ground floor),5,7,Yes,\"A person is playing with a mirror.  They stop, put it down, and walk towards the doorway.\",doorway;mirror;phone,\"A girl stands in the basement playing with her phone, takes a selfie, then walks out of the room.;A young person playing with a cell phone and then setting it down on the floor.\",c015 0.00 18.20;c017 13.60 19.30;c096 0.00 14.10;c093 0.00 18.40;c097 19.40 24.30,26.33\r\n3V7X2,YMXV,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person smiles at a mirror, then grasps a bag.\",bag;mirror,A person flexes in front of a mirror before putting a backpack on.,c023 16.00 21.50;c094 0.00 18.20;c152 0.00 18.20;c096 0.00 17.90;c020 17.40 32.00,31.17\r\nRHV11,6RE8,Living room,7,7,Yes,A person in the laundry room is watching something on their small television. They begin taking some clothes off of a desk.,chair;clothes;television,Person picking up clothes from chair while watching television and then throws each one of them back onto the chair.;A person picking clothes up out of a chair watching television at the same time.The person throws the cloths back into the chair and place their hands on their hips.,c001 0.00 26.20;c003 10.60 26.80;c132 3.20 30.60;c002 0.00 5.50;c004 0.00 26.40;c000 0.00 25.60,30.25\r\n2T4AO,KFGP,Laundry room,6,7,Yes,A person is holding a broom and watching clothes spin in a washing machine in a laundry room.,broom;dryer;washer,A person is walking towards their washer and dryer while holding a broom. They bend to look at the washer and dryer before walking away with the broom.,c098 0.00 24.90,24.54\r\n0AMBV,BYF9,Living room,6,6,Yes,\"A person is holding a bottle of medicine. The person takes some, then throws the bottle onto the sofa.\",food;medicine;sofa,A person is standing in a living room and takes some medication,c128 0.00 17.10;c129 7.00 13.80;c061 0.00 17.80;c064 13.40 18.30,18.33\r\nZKIBW,L4ZP,Pantry,7,7,Yes,A person is watching their phone while another person is playing with a bag.,bag;phone,\"A person playing on a phone stands in the room, then walks away.  Meanwhile, another person opens a bag, digs through it, closes it and begins to pick it up off the counter.\",c015 0.00 29.40;c016 0.00 29.60;c020 0.00 30.90;c021 0.00 8.00;c023 24.20 31.00;c018 23.50 29.30,29.75\r\nOCSJP,F45S,Kitchen,7,7,Yes,A person is cooking on the stove then working on a light.,food;light;pan;stove,\"Person standing at the stove cooking, reaches above the hood to turn off the light, walks out of the room, and then comes back.\",c105 2.70 25.90;c147 9.70 20.90;c147 10.60 37.10,44.96\r\nR0OLR,EIO2,Hallway,2,6,Yes,A person is running down the hallway holding a blanket.  The person sneezes and throws the blanket on a table.,blanket;chair;doorway;table;towel,\"This person appears to be walking / running through a living room area, stops & starts sneezing, takes towel off, places it on chair and then walks out of room.;A person wrapped in a blanket runs into the room, sneezes, removes the blanket, throws it on the table and walks into another room.\",c074 15.70 24.90;c150 19.70 26.90;c035 0.00 9.30;c070 5.80 12.40;c009 19.80 25.60;c153 11.40 19.40;c097 22.30 30.20;c036 19.80 25.50;c071 18.70 24.70;c033 20.10 25.00,30.46\r\nQT4W0,BYF9,Recreation room / Man cave,4,5,Yes,A person runs into their recreation room and starts dressing. They sit on a chair at a table.,chair;clothes;table,A person runs into a room sits down at a desk and puts their jacket on;A person sits in a chair and puts on a sweater.,c059 7.70 24.00;c150 5.00 11.10;c011 7.70 24.00;c001 10.00 24.00;c148 14.40 24.00;c151 7.00 12.60,22.67\r\nUAWXI,4I2W,Recreation room / Man cave,5,6,Yes,A person laughing person runs into their recreation room holding a picture and a camera.,camera;doorway;envelope;phone,A person runs into a room holding an envelope and a camera. They walk around the room in a circle.,c015 0.20 32.00;c150 0.00 9.50;c152 0.00 31.60;c097 0.00 7.10,31.08\r\nCSRZM,L4ZP,Stairs,6,6,Yes,Person carries bag of groceries up the stairs.  While walking up the stairs person pulls food out of the bag and puts it in mouth.,bag;food;groceries;sandwich;stairs,\"A person is carrying a bag walking up the stairs they stop and take a sandwich out of the bag and eat it.;A person is walking up the stairs holding a bag.  The person takes a sandwich out of the bag and eats it.;A person walks up stairs with a bag, the person stops and takes out a sandwich and starts eating it.\",c061 14.40 21.30;c067 13.20 34.00;c156 15.20 32.30;c020 5.30 34.00;c021 13.40 20.00;c065 16.20 21.70;c069 16.20 21.50,33.04\r\n0ER4S,L4ZP,Stairs,6,6,Yes,The person is playing on the stairs with their phone while watching themselves in the mirror.,mirror;phone,A person is standing on some stairs with a mirror and a phone.,c015 0.00 35.00;c093 0.00 35.00;c016 0.00 35.00,33.54\r\n469E8,L4ZP,Stairs,6,6,Yes,\"A person sits on the stairs, drinking a glass of water. The person stands up, and looks out a nearby window. The person sets their water down on a nearby shelf.\",beverage;cup;door;glass;shelf;stairs;window,\"A person is sitting on the stairs drinking a beverage. A person then looks out the window. A person then opens a door and goes outside.;A person sits on stairs drinking from a glass, stands, looks out a window on a door, then opens the door and leaves to set down the glass and pull up their pants.\",c092 7.90 18.40;c154 7.50 13.60;c008 14.80 20.90;c081 16.50 24.30;c106 0.00 12.60;c109 17.30 23.30;c141 16.10 21.60;c097 15.50 21.60,27.96\r\nQM4AD,HJJ4,Laundry room,6,7,Yes,Person is washing cup of coffee in sink while holding a book.,book;cup;glass;sink,\"A person is holding a book and washing a glass in a sink, they then put the glass down.\",c026 0.00 24.00;c032 0.00 24.00;c109 17.70 23.40;c111 1.70 19.60;c107 0.00 23.40;c115 0.00 24.00,23.38\r\nEV4HN,C7O9,Kitchen,7,7,Yes,\"A person sits at the kitchen table, doing homework on a laptop. The person closes the laptop, stands up, and runs out of the room\",chair;homework;laptop;table,A person is on their laptop while sitting at the kitchen table before getting up to leave.,c051 0.00 22.60;c011 0.00 22.90;c154 19.10 24.90;c052 0.00 23.10;c150 20.70 25.80;c059 0.00 23.20,30.25\r\nXMJTG,D0RU,Garage,6,4,Yes,The person is opening the door and working at a desk in the garage.,box;cabinet;desk;door;something,\"A person walks into the room through a doorway, heading for a table. From the table, the person opens a drawer and takes out a yellow container.;A person walks into a room through a door, they then open a desk and take out something.\",c008 1.80 8.30;c113 17.70 23.40;c041 24.00 30.70;c006 5.60 12.60;c043 19.10 28.00;c040 22.90 32.00,31.46\r\n6L2J7,KQI6,Other,6,5,Yes,A person putting the homework on the table next to the bed. Then the person goes running towards another person at the mirror who is laughing.,book;homework;mirror;paper;pencil;sink;sofa;table,\"A person is sitting on a couch doing homework. A different person is looking into a mirror.;A person is sitting on a sofa doing some work,the person then joins another person at a sink.\",c094 18.20 32.00;c011 0.00 20.90;c145 0.00 21.10;c123 0.00 21.10;c152 21.60 32.00;c096 18.50 24.00;c025 16.00 21.10;c154 15.90 21.30;c032 0.00 19.40,30.75\r\nSGU6F,XXN8,Dining room,6,6,Yes,\"A person stands in the dining room, holding a camera. The person takes a picture, then puts the camera down.\",camera;phone;picture,A young woman taking pictures of herself,c015 0.00 26.70;c087 0.00 26.70;c016 28.50 31.00,30.25\r\n9NWSD,Z68L,Bedroom,6,7,Yes,A person is holding a box and then standing on a chair in a bedroom.,box;chair;dresser;table,\"A person is standing on a chair holding a box. The person gets down off the chair and place the box onto a table and walks away.;The person picks up a box, stands on a chair, then climbs down from the chair and puts the box on top of the dresser.\",c040 0.90 29.00;c060 5.30 25.70;c042 24.00 29.00;c043 0.80 6.10,27.88\r\nUDRZ6,ZAWX,Stairs,4,7,Yes,A person is laughing on the stairs.  Then a person is leaving after picking up a box and broom off the stairs.,box;broom,\"The person is leaned up against a wall rocking from side to side laughing, then turns to walk down the stairs\",c100 16.00 21.00;c043 16.00 21.00;c149 5.00 15.00;c154 18.50 23.10;c152 0.00 16.90;c040 17.40 32.00,31.04\r\nK9V2R,EA2K,Basement (A room below the ground floor),5,6,Yes,A person is working on fixing a camera then holds a box and laughs hysterically by the doorway.,box;camera;doorway;phone;shelf;table,Person working on a item pick up the box to read it with a smile on face;A person working on a camera .The camera flashes the person steps back some and keeps looking at the screen on the camera .,c016 0.00 19.30;c015 7.50 13.90;c017 7.70 19.60;c009 17.40 24.30;c152 20.10 35.00;c043 32.60 35.00;c087 32.60 35.00;c081 32.60 35.00;c040 32.60 35.00,34.29\r\nC6LDA,YMXV,Bedroom,6,5,Yes,\"A person leaves the room after looking in the mirror, A person sneezes while sitting in a chair.\",doorway;hair;mirror;table,\"A man fixed his hair in a mirror, left and then returned, sitting in a chair while making arm gestures.\",c059 16.70 32.00;c096 0.00 10.20;c151 15.90 20.80;c144 0.00 9.10;c097 7.10 13.60;c011 28.80 32.00;c144 28.80 32.00;c097 28.80 32.00;c154 28.80 32.00,30.75\r\nMQ4YR,LWUV,Bedroom,5,6,Yes,\"Just after awakening, a person grasps the doorway as they lean inwards to grab a bag.\",bag;bed;doorway,\"A person is videoing themselves while laying in bed without a shirt on then while getting up and walking to a closet where they turned on the closet light.;Person is laying down in bed, when they wake up and head over to closet and grabbing a bag.\",c097 12.30 26.00;c020 18.90 26.00;c023 17.90 24.90;c146 0.00 12.90;c154 9.40 16.80;c134 0.00 15.10;c133 0.00 14.10,25.04\r\nKPAS0,D0RU,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is taking off shoes and then opening a book in the entryway.,book;door;shoe,A person comes through a doorway then takes off their shoes. The person then takes a book off a table and opens it and reads it.,c057 7.60 15.90;c027 14.00 20.00;c032 16.50 33.00;c097 4.70 10.60;c006 4.50 12.10;c097 0.00 3.40;c006 3.10 7.60;c026 14.80 33.00;c030 13.50 18.80,31.88\r\nUZN0J,KQI6,Bedroom,6,5,Yes,\"Two people are lying down, snuggling and smiling. Then they play some games with a phone and laugh at a picture.\",floor;game;phone;picture,Two people are sitting on a floor laughing while playing with their phones.;Two laughing people sit on the floor.  They each hold a phone and play a game.  One of them points to a picture on the wall.,c015 0.00 32.00;c016 3.00 20.00;c152 18.00 31.00;c149 6.00 22.00;c125 0.00 32.00,30.83\r\nIV1U5,YRJD,Bedroom,6,6,Yes,A person is laughing and taking pictures with the camera while closing the door.,camera;door;phone;picture,\"The person closes the door to the room, then holds a camera to take a picture and continues standing around taking a picture.;Person standing by the door using phone holding it in the air, go over to a desk;Someone is standing in their room on their phone.\",c006 1.30 6.50;c015 3.30 39.50;c015 34.20 40.00;c087 8.20 37.80;c016 4.60 38.50,39.00\r\nLVNAU,YRJD,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person sits on a chair in the closet, watching something on their laptop. The person quietly laughs.\",chair;desk;laptop,A person sits in a chair at a desk with a laptop on it.  They look at the laptop. They get up and walk away.,c051 7.90 40.40;c151 7.20 13.30;c154 35.50 42.60;c059 7.20 41.00,47.04\r\nAB166,UTMU,Bedroom,3,6,Yes,person laughs as they snuggle in bed. they hold a pillow next to a pile of freshly folded clothes,bed;pillow,A person is lying in bed snuggling with a pillow and smiling.;a person lays in bed with a pillow,c078 0.00 15.90;c134 0.00 15.90;c146 11.50 16.00,15.04\r\nH4ZD8,3H6W,Dining room,5,7,Yes,A person is undressing in a dining room while looking at a picture then starts playing with a book.,book;chair;clothes;jacket;phone/camera;picture;table,\"A person walks into the room and takes a picture from the table. The person looks at the picture, and sets it back on the table, before taking off their jacket. The person then places their jacket on a chair, takes a book from the table, and walks away, smiling and juggling the book.;A person is looking at a picture that they took off a table and smiling, they then begin to undress and pick up a book and play with it.\",c026 14.40 21.80;c152 5.20 9.80;c030 14.20 19.00;c088 4.40 11.50;c009 6.10 11.10;c084 0.00 6.10;c155 8.00 15.00;c087 4.00 10.00;c001 8.00 16.00;c083 4.00 10.20;c029 16.10 21.90;c148 8.30 18.00,22.08\r\nXJOJL,P6LJ,Bedroom,6,6,Yes,A person is standing in the doorway of their laundry room eating a sandwich. The person puts the sandwich on a table and snuggles up in a freshly cleaned blanket.,blanket;clothes;doorway;food;sandwich;table,\"A person turned on a camera then walked away to grab a sandwich.  The person then pretended to gobble on it, then put it back down.  The person then picked it up again and moved it.  The person then grabbed a blanket and folded it, before turning off the camera.\",c009 29.40 35.10;c065 7.80 23.90;c156 7.80 24.20;c063 2.80 22.70;c073 22.50 29.20;c071 22.50 29.20;c070 22.50 29.20;c072 45.60 49.00;c061 45.60 49.00;c062 45.60 49.00;c075 45.60 49.00,47.58\r\n7FCAW,PKND,Home Office / Study (A room in a house used for work),6,6,Yes,A person takes a bag of clothes from the corner of their home office. The person laughs as they begin undressing.,bag;clothes;corner,A person picks up a bag from the floor. The person is holding a bag while laughing and then begins to undress.,c020 1.90 10.90;c149 4.30 32.00;c155 7.30 20.80;c023 0.70 7.50;c022 6.60 11.60;c001 21.20 26.80;c023 28.10 32.00,31.33\r\n3O6KD,4OHY,Home Office / Study (A room in a house used for work),4,5,Yes,The person sits on the bed and takes off their shoes. They get up and walk to the table for a glass of water and sit on the computer and starts playing a game.,bed;chair;desk;laptop;shoe,A person stands up with their shoes and sits down on a chair.;a person is sitting on a bed then grabs shoes and walks over to a desk and uses laptop,c053 3.00 21.00;c151 6.10 20.90;c154 5.40 10.30;c059 16.70 31.00;c051 16.40 31.00;c052 16.10 31.00;c135 0.00 10.00,30.04\r\n43UDQ,0KZ7,Stairs,6,7,Yes,\"One person standing on the stairs talking on the phone. A second person walks in, sneezes and climbs stairs eating sandwich.\",food;phone;sandwich,\"A person is talking on the p hone, while another person walks up the stairs while eating.\",c065 1.30 15.70;c019 0.00 29.00;c156 1.30 15.60,27.67\r\nS46UA,WG9D,Closet / Walk-in closet / Spear closet,4,7,Yes,One person smiles and laughs while playing with some toy dishes and food before leaving the closet.,dish;food;plate,A person is holding a plate and laughing.,c061 0.00 6.00;c118 0.00 6.00;c152 0.00 6.00;c149 0.00 4.70,5.08\r\nJOPGB,PKND,Bedroom,3,6,No,A person is playing with shoes while another person is pouring medicine.,bed;chair;cup/glass/bottle;medicine;shoe,A person is sitting in a chair pouring medicine.  Another person moves from a bed to a chair and puts shoes on.;Person gets from the bed to sit in a chair while taking off shoes and stomping feet while another person sits in a chair uses some medicine.,c058 27.80 34.00;c151 0.40 8.20;c135 0.00 4.40;c059 2.60 22.40;c057 0.90 7.20;c054 2.40 8.50;c107 0.00 34.00;c056 0.00 8.00;c152 2.10 12.30;c128 0.00 34.00;c154 1.30 6.90;c053 1.70 22.80;c108 0.00 34.00,32.54\r\nBMYDX,3H6W,Kitchen,4,7,Yes,A person is standing in the doorway.  The person then is washing the front of the cabinet.,cabinet;cloth;door;towel,\"A person is standing near a door looking around, then walks into another room and starts cleaning a cabinet.;A person walks to the door and stands in front of it. They then walk to the kitchen and wipe the cabinet doors.\",c114 18.10 32.30;c035 16.20 21.90;c038 18.10 33.20;c033 16.80 33.40;c034 29.00 34.80,36.38\r\n9777C,ZAWX,Hallway,5,6,Yes,A person is walking towards a camera while another person is smiling at a sandwich.,bed;doorway;sandwich,\"One person walked through a hallway as another person sat, eating a sandwich.\",c065 8.60 30.00;c067 8.60 30.00;c097 0.00 3.60;c134 6.80 30.00,29.29\r\nG54NU,EIO2,Kitchen,6,6,Yes,\"A person is throwing a towel through the doorway. In the next room, a person is dressing as the person watches a movie on their laptop.\",chair;laptop;table;towel,A person leans against the counter and plays with a towel. They throw the towel at a second person who is sitting at a table with a laptop.,c052 13.90 34.00;c036 11.90 18.40;c011 0.60 16.70;c033 2.60 16.20;c051 14.00 19.40;c059 14.00 34.00;c014 14.00 34.00,33.00\r\nMZJ9D,XXN8,Living room,6,5,Yes,A person is seen opening their laptop to do some homework. After a while the person closes their laptop and begins standing.,homework;laptop;paper;sofa,\"There is a person sitting on a couch.  That person opens a laptop and types/works on it, after awhile they partially close the laptop.\",c145 0.00 6.80;c046 0.50 12.80;c047 0.00 8.80;c048 0.00 7.40;c123 0.00 9.90;c052 0.00 30.00,29.08\r\nNXSMH,CCI9,Living room,6,6,Yes,\"A person is standing next to their desk, scribbling on their homework. A second person walks in with a vacuum and uses it on the floor while watching the first person. The second person motions to the first person to move over so second person can vacuum that spot.\",book;floor;table;towel;vacuum,A person vacuums the floor while wearing a towel.;One person is vacuuming the floor while another person holding a book is organizing objects on a table.,c137 0.00 33.00;c026 14.60 20.50;c117 14.20 20.70;c034 4.50 9.60;c127 0.00 33.00;c033 4.00 9.60;c115 14.20 24.00,31.62\r\nMQXAJ,Z755,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person walked in the entryway laughing while holding their homework, while another person was standing there eating a sandwich watching them.\",door;food;paper/notebook;person;sandwich,A person opens a door and walks through it. They touch another person who is eating a sandwich.;A person enters a room.,c008 0.00 4.30;c061 0.00 8.00;c067 0.00 8.00;c152 0.90 7.00;c006 2.70 7.70;c115 0.00 7.80;c065 0.00 8.00,6.54\r\n1ZBM9,C7O9,Laundry room,5,7,Yes,A person is sitting on a chair in their laundry room. They put a pair of shoes into the washer. The person removes medicine from the pocket of a pair of pants and puts them into the washer as well.,bag;chair;clothes;shoe,A person is sitting on a chair in a laundry room. He is fondling what looks like a boot and eventually throws it into either a washer or dryer.,c053 1.30 11.20;c058 6.50 12.50;c059 0.00 29.00;c021 11.90 17.30;c023 9.40 15.80;c022 15.00 23.60,27.83\r\nEG0IU,RJOM,Closet / Walk-in closet / Spear closet,7,6,Yes,\"After the person got done washing their feet, the person used a towel to dry them off before turning off the light and snuggling with their favorite pillow for the night.\",light;pillow;towel,A person steps out of a bucket then stands on a towel and dries feet. The person walks over and flicks a light switch on the wall  then picks up a pillow from the floor and snuggles it.,c078 12.80 29.00;c038 1.80 13.10;c152 0.00 3.80;c105 10.80 16.10,28.33\r\nHXWI9,L4ZP,Bedroom,6,7,Yes,Person 1 runs into the room holding a picture. Person 2 is putting clothes away into the closet.,clothes;dresser;phone/camera;picture,A person is putting clothes away in the dresser. Another person holding a picture twirls around the no purpose.,c001 0.00 30.60;c004 0.00 30.60;c084 18.30 28.50;c150 21.40 28.60;c015 18.60 28.50,32.62\r\n47D1Y,25TD,Bathroom,7,7,Yes,\"The person walked into the bathroom and started picking up the assorted clutter on the sink counter.  They put it all into the medicine cabinet on a neatly organized medicine shelf.  Before throwing their cloths into the bin and heading to the shower, they picked up a tissue and let out a hearty sneeze.\",cabinet;clothes;head;medicine;shelf;sink;table,\"The person opens the bathroom cabinet and places three toothbrushes inside. Then clears the counter of clothes and puts them in the hamper, takes a tissue and sneezes into it.\",c113 0.30 6.30;c012 2.30 17.00;c153 24.50 33.60,32.88\r\nKVONB,0KZ7,Bathroom,6,7,Yes,\"A person is washing their window, then the person starts undressing and puts their cloths on a shelf.\",clothes;vanity;window,A person opens up a window.  The person then begins undressing and puts clothes on the vanity,c090 0.00 9.00;c155 7.60 26.50;c001 21.50 27.80,26.96\r\nRIEG6,YMXV,Home Office / Study (A room in a house used for work),4,,No,\"One person holds medicine and sneezes, then leaves, closing the door with a hand on the doorknob.\",bottle;chair;water;window,\"Man stands up to spit something into the garbage can, sits back down to take a drink of water, and then, gets up to look out the window.;A person is sitting in a chair with a bottle of water and looks out the window.\",c154 0.00 5.60;c106 10.00 20.10;c107 0.00 25.60;c059 0.00 5.90,31.17\r\nE1VFZ,HJJ4,Recreation room / Man cave,6,7,Yes,\"A person puts a box on a desk, then sneezes as they place a picture inside the box.\",box;desk;picture;table,\"A person sets a box down on a desk, then sneezes several times.;A person walks in and places a box on a table. The person sneezes and then places a picture into the box.\",c153 3.00 14.00;c009 0.50 5.80;c086 7.10 13.00;c042 0.50 6.00;c040 0.00 5.60,13.21\r\n38T9C,YA10,Garage,7,7,Yes,\"A person walks in and is grasping some dishes. Then they walk out, leaving a sandwich on the chair.\",chair;dish;food;glass;sandwich,There is a person eating a sandwich and carrying a glass.  That same person puts the sandwich on a chair and leaves.;A person is walking through a garage door carrying a dish with a sandwich on it and a glass. The person eats the sandwich and leaves through the garage door again.,c118 3.00 21.30;c065 7.20 13.80;c156 7.30 13.00;c062 8.80 14.20;c061 3.10 22.00;c068 8.80 14.20,25.08\r\n8Z02S,ZAWX,Laundry room,6,6,Yes,\"A person smiles as they read a book in the laundry room, waiting for the washer to stop spinning. They put the book down and watch the washer, waiting for it to finish. Its cycle completes and the person opens the door to take out the clothes.\",blanket;book;clothes;doorway;washing machine,A person is reading a book while standing in front of a washing machine. The person opens the washing machines and removes clothing before walking into another room.,c026 0.00 11.70;c000 15.10 31.00;c032 0.00 10.50;c002 14.00 23.70;c097 21.60 31.00;c070 14.90 21.50;c073 14.90 21.20,29.92\r\nD4RH8,5LWB,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,One person sits with a sandwich and a phone as another opens a book and starts laughing.,book;chair;food;phone;sandwich,\"Person A is sitting on a chair reading a book while Person B is holding a phone and eating a sandwich.;Two people are sitting on chairs in a hallway. One is looking at a book and the other is looking at their phone while eating a sandwich,\",c065 0.00 30.00;c015 0.00 30.00;c026 0.00 30.00;c059 0.00 30.00;c067 0.00 30.00;c016 0.00 24.30;c032 0.00 30.00;c156 21.60 30.00;c029 13.70 30.00;c152 13.70 30.00,29.08\r\nO4Q1L,OUKK,Laundry room,6,7,Yes,A person is laughing while looking out the window of their laundry room.  The person is grasping a pair of shoes.,shoe;window,A person enters the room holding a pair of shoes. they look out the window and then leave.,c053 0.00 12.30;c092 1.10 11.70,13.46\r\nUZMKC,JVLO,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person is standing near the window in the entryway, laughing and laughing as they look at the cover of a book.\",book,\"Person walks into a room laughing, and reading a book.\",c026 0.00 31.00;c027 0.00 4.90;c029 3.00 27.00;c032 0.00 31.00;c149 2.20 31.00;c115 0.00 31.00;c152 1.30 31.00,30.08\r\nSLDVU,YMXV,Recreation room / Man cave,4,3,Yes,Person is sitting on chair playing video games on laptop. Another person is snuggling with shoes.,bed;chair;clothes;game;laptop;shoe;table;video,A person is sitting at a desk playing with a laptop. Another person is sitting on a bed putting on their shoes.,c059 0.00 33.00;c055 13.80 33.00;c011 0.00 19.20;c135 12.80 33.00;c052 0.00 18.40;c001 14.60 33.00;c148 14.40 33.00;c051 0.00 17.80,31.83\r\nLPPFL,9Y7F,Home Office / Study (A room in a house used for work),5,7,Yes,A person is doing homework on a laptop and drinking water while another person is standing in the doorway and looking at the laptop.,chair;cup/glass/bottle;doorway;homework;laptop;paper;table;water,A man is drinking a glass of water while on his laptop. Another man stands in the doorway.,c106 2.30 9.80;c145 0.00 32.00;c052 0.00 32.00;c059 0.00 32.00;c014 0.00 32.00,30.58\r\nAZ7YC,WG9D,Entryway (A hall that is generally located at the entrance of a house),5,4,Yes,A person holding a sandwich starts laughing after opening a small box.,box;doorway;food;objects;sandwich;unclear,A person walks into the room holding several things.;a person walks into room holding something,c040 0.00 3.70;c067 0.00 3.70;c097 0.00 4.00;c152 1.00 4.00;c061 0.00 4.00,3.08\r\n6PQZE,JVLO,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,A person is sneezing while on the phone and then snuggling with a pillow in the basement.,doorway;floor;phone;pillow,\"A person walked through an entryway holding a phone, that person then picks up a pillow, hugs it and then places it on the floor and sits down.\",c015 0.00 18.40;c076 14.40 29.40;c077 25.10 30.20;c151 27.10 33.00;c080 15.50 27.50;c152 6.10 33.00;c125 28.20 33.00;c019 0.00 21.60;c097 5.00 10.00;c079 14.70 19.70;c126 23.60 27.90,31.79\r\n0ETKN,I4RP,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is in the entryway holding food and a sandwich. They are standing and opening the food bag.,bag;food;sandwich,A person is standing by a door with a bag they put a sandwich in the bag,c067 0.00 10.60;c068 4.40 11.20;c020 0.00 12.00;c021 5.20 9.30;c061 0.00 12.00;c062 4.40 11.20,10.79\r\n65IQ0,T7C3,Living room,6,6,Yes,A person is sitting while throwing medicine from a shelf.,bottle;chair;floor;medicine;table;trash,\"A person sits in a chair, next to a table with a computer. The person takes bottles of medicine from a table and throws it on the ground.;A person is sitting down and throwing things on the floor.\",c059 0.00 37.00;c126 4.60 20.90,36.29\r\n9JIOI,Z755,Kitchen,5,5,Yes,A person walks to the refrigerator to close the door. Another person is cooking on the stove near the sink.,door;food;refrigerator;sink;stove,A person gets food out of the refrigerator and takes it to the stove to cook. A second person comes and closes the refrigerator door.,c142 13.20 17.00;c143 0.00 5.70;c147 7.10 14.10;c063 0.70 6.20;c061 1.00 11.90,16.42\r\n974TA,E2IO,Kitchen,7,7,Yes,A person is sneezing with a blanket and working on a cabinet.,cabinet;tape measure,\"This person is measuring a cabinet, sneezes a bunch, then continues to measure, then opens the cabinet.\",c113 28.00 32.00;c153 0.00 30.10,31.17\r\nMBYRJ,18IT,Dining room,7,6,Yes,A person is sitting in a chair and laughing as another person vacuums and walks into a wall.,chair;newspaper;paper/notebook;papers;table,\"The person picks up some papers from the floor and moves them. The person picks up a chair and sits it down by the wall. A different person sitting at the table seems to be laughing.;A person picks up some papers from the floor and then moves a chair to a different position in the room, before walking across the room and into a wall.\",c149 0.00 12.80;c011 0.00 19.00;c116 0.00 6.50,17.62\r\nXZLNT,DXDI,Pantry,6,6,Yes,\"A person is lying in the door, looking at themselves in the mirror. They put food items in a towel, and run from the room.\",cabinet;cup;dish;floor;food;mirror;shelf;something;towel,\"A person is sitting on a floor looking in a mirror, they then take some dishes off a shelf and put the on a towel.;There is a person sitting in the floor looking into a mirror. That same person then reaches into a cabinet and pulls out a cup, and 2 other items.\",c063 11.20 21.40;c096 0.00 10.10;c154 20.30 28.60;c120 12.30 21.10;c125 0.00 10.70;c093 0.00 16.60,30.00\r\nV9W9C,WQ8Z,Basement (A room below the ground floor),6,7,Yes,\"A person awakens at a desk in the basement. The person takes a drink from a glass of water, then pours a bit on the face and washes it with their hands.\",chair;cup;desk;glass;hand;table;water,\"A person is sleeping at a desk. The person then wakes up, drinks something, and pours some on his head. He then gets up and walks away.\",c106 29.20 36.10;c107 28.20 52.00;c146 14.10 27.40;c154 45.10 50.90;c011 0.00 49.90;c110 27.70 52.00;c059 0.00 49.90;c012 31.80 37.00,51.17\r\n9C5PT,6RE8,Kitchen,5,7,Yes,\"A person walks into the kitchen, sneezing. The person takes off their shoes, and grabs a tissue from a tissue box.\",box;doorway;paper/notebook;shoe,\"A person sneezes then takes off their shoes. They pick up something from a shelf, and sneeze again. They leave the kitchen.\",c053 11.20 33.00;c056 11.10 33.00;c153 17.30 24.60;c057 9.30 19.70;c117 15.70 21.40;c115 19.00 33.00;c117 20.00 33.00;c097 23.80 30.00;c116 28.70 33.00,31.79\r\nGNPSK,YMXV,Bedroom,6,6,Yes,A person is eating at the table. A person is standing under the window washing the windowpane.,apple;chair;cupboard;food;table;towel;window,A person is sitting at a desk eating an apple and then they stand up to clean the cupboard with a towel.;Person sitting in a chair eating before getting up and cleaning the windows with a towel.,c091 13.90 33.00;c154 12.00 17.40;c038 13.90 33.00;c059 0.00 16.40;c033 0.00 8.20;c061 0.00 22.90;c156 0.00 4.20,31.67\r\n9632M,D0RU,Entryway (A hall that is generally located at the entrance of a house),3,6,Yes,\"A person walks through the entryway, laughing and eating from a bag of snacks. The person wipes their mouth with a paper towel.\",chips;doorway;food;towel,\"A person walks into a room eating some chips, smiles, then wipes their mouth.;A person walks through a door way while eating and wipes his mouth with a towel.\",c156 5.50 30.90;c097 2.30 14.00;c061 4.90 33.00;c152 14.00 33.00;c033 27.40 33.00;c035 26.60 32.00,31.92\r\nA3U9M,2RTW,Living room,6,6,Yes,A person is holding a glass of water while watching television and they sneeze.,cup;glass;television;water,\"A person is holding a glass of water while watching television. A person then sneezes.;The person is standing up while holding a glass and watching television, the person also sneezed or laughed while viewing the TV.\",c107 0.00 32.00;c153 7.40 14.70;c132 0.00 32.00,31.21\r\nFYJHS,2RTW,Kitchen,6,6,Yes,\"A person carrying a bag of groceries walks to the door, leaving the bag of groceries on the table, to start fixing the doorknob.\",bag;door;groceries;table,\"A person walking across a room carrying a bag .The person sits the bag down on a table and walks to the door and starts working on a door knob.;A person walks holding a bag of groceries, places it on a table, the begins trying to fix a doorknob on a door, eventually opening the door but continuing to work on the doorknob.\",c008 23.60 32.00;c130 3.70 15.10;c140 18.80 28.50;c009 7.70 14.20;c007 12.20 32.00;c020 1.50 14.30;c141 16.00 28.20;c022 10.20 15.40;c151 14.80 32.00,30.79\r\nO5TU5,PO5L,Bathroom,5,5,Yes,An awakening person goes to the sink and turns to throws away a picture.,desk;floor;picture,\"A person lays down on the floor. Then they take a picture off the desk and put it behind the desk, and then they leave the room.;A person lays on the floor before grabbing a picture and getting up.\",c146 11.90 18.40;c154 27.30 38.80;c124 6.00 20.80;c083 22.40 29.00;c086 26.20 36.60,40.88\r\nX7J7H,5LWB,Living room,5,7,Yes,\"A person is sitting on their couch, eating a sandwich.  They stand up, taking the bag over to another room to throw out.\",bag;food;sandwich;sofa,Two people are sitting on a sofa watching television. One stands and throws a pillow at the floor while the other person eats a sandwich.,c065 1.20 17.10;c123 0.00 16.50;c156 0.00 9.70;c154 8.60 15.20;c020 11.70 17.80;c024 13.80 18.60;c122 8.70 17.00,18.25\r\n4LDRK,JVLO,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,Person is opening door with groceries in hand. Another person is pouring coffee in cup.,bag;cup;door;glass;groceries;hand,\"One person has a grocery bag and opens the entry way door, they walk in the house and the other person goes to the window and pours something into a cup in front of the window.\",c008 2.40 16.90;c020 1.60 22.50;c107 18.80 34.00;c108 22.40 34.00;c097 0.00 7.20;c152 29.60 34.00,32.71\r\nJ3CWQ,6NQX,Kitchen,,,No,A person is laughing while eating a bite of something from a box which is sitting on top of the stove.,box;cereal;food;phone;stove,\"A person walks over to a stove, looks at a phone and eats food out of a box.;A person eats some cereal while checking their phone.\",,24.79\r\nCF1OQ,KQI6,Living room,5,4,Yes,A person runs around a sofa before taking off their shoes. Another person smiles as they watch and drink water.,chair;clothes;cup/glass/bottle;doorway;shoe;sofa;water,A person runs in sits down and puts on shoes. Another person sitting drinking water,c123 4.50 26.50;c150 0.00 8.70;c151 4.10 9.90;c106 6.80 27.60;c152 22.80 32.00;c055 3.60 32.00;c148 4.80 32.00;c059 4.40 32.00;c097 0.00 2.80;c054 3.90 8.80,31.00\r\nGAN05,QB52,Basement (A room below the ground floor),6,7,Yes,The person was grasping the idea while at the desk sitting on the chair watching the documentary on the internet. The person was amused.,chair;desk;monitor;mouse;table;television,A person is sitting at a desk looking at a movie or show on a computer monitor then touches a mouse.,c059 0.00 32.00;c011 0.00 32.00;c149 17.90 23.20;c132 0.00 32.00;c131 17.80 23.20,30.88\r\nN3CUK,Z68L,Bathroom,7,7,Yes,\"A person enters a bathroom, taking a book from the shelf. The person then sits on a pillow and begins working on their homework.\",book;chair;homework;paper;pillow;shelf;toilet;towel,\"A person picks up a pillow from the ground and sets it on the toilet. They grab some books, sit down and start working on homework.\",c076 18.00 39.00;c077 0.00 5.60;c117 3.50 12.50;c027 15.10 23.70;c151 8.90 17.60;c076 0.00 5.00;c115 7.30 39.00;c145 13.20 39.00;c030 6.40 13.10;c034 0.50 4.50;c026 3.00 39.00;c032 16.70 39.00;c059 11.30 39.00,38.04\r\nS1QOX,KQI6,Recreation room / Man cave,7,7,Yes,Two people on a sofa snuggle together while one holds a camera out to take a picture.,camera;phone;picture;sofa,\"person talking to another person, takes picture with phone\",c015 0.00 32.00;c087 7.70 32.00;c123 0.00 32.00;c016 0.00 32.00,30.83\r\nHBPZJ,O1YY,Recreation room / Man cave,7,7,Yes,A person is sitting working on their laptop.  The person holds their cup of coffee away from themselves as they sneeze.,chair;coffee;cup;laptop;table,A person is using a computer and is typing. A person picks up a coffee cup and sneezes.,c052 0.00 15.90;c153 13.50 20.00;c110 11.90 17.20;c051 0.00 14.70;c011 0.00 20.00;c107 12.00 20.00;c014 0.00 14.90;c059 0.00 20.00,18.79\r\nUDGP2,6NQX,Kitchen,7,7,Yes,A person smiles as they look through the refrigerator. The person pulls out some food and begins cooking it.,cup/glass/bottle;floor;food;refrigerator;stove,\"A person opens a refrigerator door and removes food containers. The person puts these items on a counter, opens them and begins cooking on a stove.\",c062 15.30 20.70;c147 25.80 32.00;c063 3.80 19.80;c154 12.50 19.20;c143 0.00 6.80;c125 1.30 17.10;c107 6.70 20.90;c061 6.70 21.00,31.08\r\n6OROW,CCI9,Kitchen,5,6,Yes,A person is sitting on a chair opening a book and taking a large gulp of coffee.,book;chair;coffee;cup;dish;glass,A person is sitting in a chair writing in a book and then they take a glass of something and take a drink;Person sitting in a chair writing in a book and drinking coffee out of glass,c059 13.00 21.30;c032 0.00 21.10;c106 18.80 33.00;c110 18.80 24.10;c109 19.20 33.00;c107 19.20 33.00;c115 0.00 33.00;c118 19.20 33.00;c145 0.00 23.20,31.54\r\nZHZST,DXDI,Kitchen,4,2,Yes,A person is in a kitchen putting a glass cup in the sink after they finished drinking water from it recently.,cup;glass;sink;water,A person is drinking a glass of water. A person puts the glass in the sink.,c106 0.00 7.40;c107 0.00 12.30;c109 6.80 12.20,12.12\r\n670G1,C7O9,Closet / Walk-in closet / Spear closet,6,6,Yes,\"One person is opening the cabinet door and holding it, while another person is fixing the shelf inside the cabinet.\",closet;door;shelf;tool,a person opens a closet and another person is doing something inside;A person opening a door.A person inside the door screwing in some shelf's in a closet .The other person stands and watches .,c008 0.00 5.30;c113 0.00 6.70;c082 17.40 26.50,28.42\r\n4JXAK,ZSRZ,Kitchen,7,7,Yes,\"A person is cooking on a stove, then the person starts washing a mirror.\",food;mirror;stove,A person is cooking on a stove and then picks up a mirror and cleans it.,c095 12.80 23.00;c147 0.30 12.50;c093 11.20 22.40;c062 0.80 6.00;c061 1.80 6.20;c063 1.10 5.60,21.54\r\nCTPR2,38MV,Kitchen,6,6,Yes,\"A person goes from sitting to standing, walking over to the vacuum by the window and starts tidying.\",closet/cabinet;floor;vacuum;window,A person opens a cabinet then plays with some items inside. Then the person closes the cabinet and walks to a vacuum. Next the person begins winding the vacuum wire.,c137 20.20 25.90;c114 0.00 16.60;c125 0.00 15.20,30.79\r\nIRBPD,8718,Hallway,5,6,Yes,\"A person is drinking a glass of water they just got from the refrigerator, then closes its door.\",cup;glass;pitcher;refrigerator;water,\"A person is pouring a glass of water from a pitcher, before putting the pitcher into a refrigerator and drinking the water.\",c106 7.10 17.60;c107 6.10 30.00;c108 0.00 8.60;c106 17.80 28.80,28.79\r\nHZXXN,TGGT,Kitchen,4,6,Yes,\"While grabbing a big bag of chips off the shelf, the person was sneezing and laughing at the same time.\",bag;cabinet;dish drainer;food;groceries;sink;towel,\"A person in the kitchen sneezes, then opens a cabinet and removes food. They sneeze again then blow their nose into a towel.;Person is talking, turns away and sneezes.  Opens cabinet and removes red bag.  Sneezes some more, then removes paper towel and wipes hands and face.  Person continues talking and moves bag.\",c062 8.00 14.90;c020 8.20 14.20;c113 5.50 11.10;c153 2.10 8.80;c112 28.40 31.00;c130 28.40 31.00;c023 28.40 31.00;c022 28.40 31.00;c063 28.40 31.00,30.42\r\n1K0GV,1TZV,Bathroom,7,7,Yes,\"A person is throwing trash in a bag, then drinking water and then  making faces in a mirror in a bathroom.\",bag;cup;floor;mirror;water,\"A person takes some items from the sink and put them in a bag that they are holding. They close the bag and throw it on the floor.  They look in the mirror and make funny faces, then take a glass of water and drink it.\",c106 11.10 20.20;c096 12.20 28.90;c020 0.00 14.50;c024 10.10 14.80;c126 10.10 14.80;c110 10.80 15.50,28.00\r\n3R7NX,XARO,Bathroom,6,7,Yes,A person is fixing the mirror on the wall. The person opens a cabinet.,closet/cabinet;door;mirror;wall,\"A person holding a mirror hands it on the wall in the bathroom, then opens the door to leave.;A person is standing in a bathroom and hangs up a mirror on the wall. The person then opens a door.\",c093 0.00 8.30;c008 26.10 31.00;c113 26.50 31.00,30.46\r\nO2VP8,1TZV,Dining room,5,7,Yes,\"A person stands in the dining room, washing picture frames that hang on the wall. The person pauses their work to check their phone.\",phone;pictures;towel;wall,\"A person is cleaning pictures on the wall, then pulls out a cell phone and begins looking at it.\",c015 17.90 28.00;c016 19.70 28.00;c033 0.00 28.00;c018 17.70 22.50;c038 0.00 20.00,26.92\r\nNMRF0,ZAWX,Pantry,4,6,Yes,A person is standing in the pantry doorway looking at the nearby stove.  The person takes a picture of the stove and leaves the room smiling.,doorway;phone/camera;picture;stove,A person stands in front of a pantry and then turns to the stove. A person then takes a picutre of the stove.,c087 13.60 22.60;c152 27.60 32.00;c015 10.20 31.10;c016 12.10 29.50,31.25\r\nU91SO,3531,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is seen drinking while looking at a picture. They begin lying the picture on the stairs and start closing a nearby cabinet,beverage;book;brochure;cabinet;cup,\"A person is drinking a beverage, while looking at a book. A person drops the book, and closes the cabinet doors.;A person was standing near the bottom of a staircase. That person read a colorful brochure while taking sips from a silver cup. While taking a fourth sip, the person dropped the brochure onto the steps, took two steps to the bottom of the stairs, and then closed an small cabinet on the floor one door at a time.\",c112 22.50 32.00;c026 0.00 22.50;c032 0.00 21.90,30.54\r\nF30FL,AH2J,Bedroom,6,7,Yes,A person lying at a desk in a bedroom awakens and leaves their laptop on the desk.,chair;computer;desk,The person was sitting on the chair sleeping on the desk.;A person is sleeping sitting up at a desk they wake up and play on the laptop then they get up and leave the room.,,41.17\r\n14JPP,Z68L,Bedroom,6,7,Yes,A person is lying on top of a pile of clothes and then undressing in front of a mirror in the bedroom.,bed;clothes;mirror,A person walks into the room and lays on the bed. then they look in the mirror and take their jacket off.,c096 16.60 33.00;c155 21.00 33.00;c151 19.40 24.90;c134 0.40 20.70;c135 16.10 33.00,31.71\r\nYPERJ,UTMU,Dining room,7,7,Yes,A person is laughing while using a vacuum and then grasping a bottle of medicine in the dining room.,chair;floor;food;medicine;table;vacuum,Person is vacuuming and smiling. Person then grasps some medicine of the table.;A person is vacuuming and moving a chair.  Then the person picks something up off a table and eats it.,c137 0.00 27.20;c127 0.00 31.00,30.29\r\nKKGLB,WQ8Z,Living room,6,7,Yes,A person awakens on a couch then sneezes. Then the person picks up a camera off a table.,camera;dog;laptop;phone;picture;sofa,\"a person sits on a sofa and sneezes while looking at a laptop as their dog runs in, then grabs their phone;A person is lying on a couch watching a laptop when their dog jumps up on them and they sit up and grab their phone and look at it.\",c122 0.00 12.50;c015 18.40 27.00;c153 12.10 18.90;c051 0.00 16.10;c088 0.00 12.50;c018 17.90 22.80;c123 8.50 27.00,26.46\r\nCYM3V,ZAWX,Other,7,5,Yes,\"A person enters their home office with a sandwich on a plate.  The person walks over to a desk while holding the plate, and then sits at the desk and takes a big bite of the sandwich.  The person smiles with satisfaction.\",chair;dish;food;plate;sandwich;stool,\"A person enters the room holding a plate with a sandwich on it, then sits down on a stool and begins eating it.;A person is walking down stairs holding a plate of food, the person walks into the room and sits down, takes a bite of food\",c065 16.20 32.00;c151 11.00 18.40;c156 16.20 32.00;c059 13.60 32.00;c118 0.00 18.80;c061 0.00 32.00;c063 0.00 18.10;c067 15.00 32.00,30.58\r\nNVDEM,ZSRZ,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"A person stands at the window, wrapped in a blanket, watching something outside. The person sits in a chair but continues to look outside.\",chair;window,A person sits in a chair and looks out their window.,c059 5.70 14.00;c092 6.60 14.00;c151 3.00 9.60,12.67\r\nSQ3C9,XXN8,Kitchen,3,7,Yes,A person takes a bottle of medicine from a cabinet. The person holds it for several seconds before throwing it away and reaching for a phone.,cabinet;medicine;phone,A person opens a cabinet and removes a bottle of medicine. They look at the bottle and throw it into the garbage. They then walk away while looking at their phone.,c128 0.30 11.20;c113 0.00 4.80;c015 13.20 25.50;c016 15.40 25.60,30.96\r\nNKTWF,SIZN,Living room,5,7,Yes,\"A person walks into the living room holding a bag.  They put the bag on a chair and sit down, taking a pillow and snuggling with it.\",bag;chair;pillow;sofa/couch,\"This person walks in holding a bag, picks up a pillow, sits down and goes to sleep.\",c020 1.50 7.90;c022 1.50 7.90;c076 5.60 21.00;c078 7.10 21.00;c059 5.70 11.40;c151 5.70 11.40;c123 6.40 21.00,20.08\r\nEMF9Q,D0RU,Kitchen,7,7,Yes,A person is putting coffee on the desk and closing the shelf.,cabinet;coffee;cup;pitcher;pot;table,\"A person pours coffee from a pitcher into a coffee cup. Then they open a cabinet and look inside.;A person pouring fluid into a cup, closing a cupboard.\",c009 16.60 22.90;c112 23.30 29.10;c108 4.30 23.70;c113 21.70 30.20,32.38\r\nCB42N,DXDI,Hallway,7,7,Yes,A person is sitting on a chair and working on their laptop. They sneeze and take a drink of water.,chair;computer;glass;laptop;sneeze;water,\"Person sitting in chair, typing on computer, sneezes, picks up glass, drinks out and place back on floor. Then went back to typing.\",c106 20.20 28.60;c052 0.00 31.00;c107 18.50 30.60;c110 16.60 24.00;c047 0.00 31.00;c153 13.70 20.00;c051 0.00 18.50,30.46\r\n0PSL4,KFGP,Kitchen,6,7,Yes,A person picks up their shoes and laptop as they walk while laughing towards the door.,laptop;shoe,A person picks up a laptop and shoes.,c053 10.20 20.20;c047 5.10 19.60;c056 8.00 14.20;c050 4.40 9.20,22.00\r\nPQMTB,HJJ4,Home Office / Study (A room in a house used for work),4,7,Yes,\"A person is sneezing into a towel, then the person begins grasping a bag they just picked up.\",bag;chair;clothes;desk;item;table;towel,A person sneezes into a towel while sitting at a desk. The person then picks up a stuffed animal.;A person is  sneezing into clothes then pciks up a bag.,c020 0.00 7.00;c153 0.00 6.00;c011 0.00 12.00;c033 0.00 7.20;c059 0.00 12.00,11.46\r\nOCUPZ,YA10,Hallway,6,7,Yes,\"A person is sneezing on a camera, then tidying a shelf and then drinking coffee in a hallway.\",clothes;coffee;door;glass;shelf,\"A person is standing in front of a close closet holding a cup of coffee and a camera. The person sneezes and then puts the camera in a pocket. The person then begins to move things around on a shelves in the closet.;A person stands in front of a shelf, holding a glass of coffee, sneezing. The person then starts tidying the clothes and items on the shelf, all while drinking coffee.\",,32.29\r\nYNCFL,LTAC,Living room,6,7,Yes,A person is laughing while going into a walk-in closet.  A person looks at their wardrobe while drinking coffee.,coffee;cup;dish;mirror;wardrobe,\"A person walks from a hallway into a room. The person picks up a cup from a shelf, sips from it, then laughs while standing.\",c106 21.50 26.20;c107 6.80 31.00;c149 0.00 31.00;c118 6.60 31.00;c094 5.60 31.00;c152 5.40 31.00;c120 5.00 12.50,30.25\r\nJSLW5,UTMU,Closet / Walk-in closet / Spear closet,6,7,Yes,A person in their closet opens a wardrobe door while laughing and turns and runs away.,closet;door;wardrobe,\"A person standing in a walk in closet opens the closet, briefly bends their knees, and then begins to jog away.\",c008 0.00 6.40;c113 0.00 6.40;c149 0.90 12.90;c150 5.50 14.30;c154 4.70 12.00,18.12\r\n2K5GR,4I2W,Basement (A room below the ground floor),1,6,Yes,A person is in a basement fixing a wardrobe. They take a drink from a glass. Grab a blanket and throw it over the wardrobe.,blanket;closet/cabinet;clothes;cup;floor;glass;towel;wardrobe,\"Person trying to fix a wardrobe door, when finished goes to the table for a drink, picks up a blanket, and throws it toward the wardrobe.\",c001 22.30 30.00;c106 16.00 25.70;c109 21.40 26.20;c036 25.40 30.00;c126 25.50 30.00;c112 0.90 16.40,29.21\r\nNGWRE,ADN3,Living room,6,7,Yes,A person is playing with their phone in the basement while grasping a cup of coffee. The person tosses a pillow toward the door.,bed;couch;cup;food;phone;pillow;sofa,A person is laying on a couch playing with their phone while holding a cup.;Person sitting on couch with coffee and looking at phone and then decides to grab a pillow and throw it before getting up and leaving the room.,c107 0.00 9.20;c015 2.80 13.30;c077 12.50 19.60;c122 0.00 5.80;c080 14.30 20.60;c016 0.00 14.70;c061 0.00 29.40;c134 0.30 15.60,35.58\r\nD69VI,WG9D,Laundry room,6,7,Yes,A person throws a book on the floor angrily then puts their sandwich on top of the book.,book;doorway;floor;sandwich;wardrobe,a person throws something on the floor,c031 0.00 3.90;c126 0.00 3.90;c097 0.00 3.40,4.38\r\nEWES1,X5XO,Dining room,5,7,Yes,\"A person is washing the table. Then, sitting and smiling, the person begins to eat a sandwich.\",chair;food;sandwich;table;towel,Person cleaning table and then sitting down to eat a sandwich.,c011 22.60 28.70;c065 24.50 33.00;c151 22.60 28.70;c156 24.50 33.00;c012 0.00 28.50;c009 0.00 32.00;c013 0.00 28.50;c062 8.20 13.30;c069 20.10 27.70;c067 25.80 32.20;c059 23.70 33.00;c068 7.10 16.60;c038 0.00 25.80,31.75\r\nXFHYX,XXN8,Pantry,7,7,Yes,\"One person washes a cabinet with a towel and sneezes, then pours a drink and starts drinking.\",cabinet;cup/glass/bottle;shelf;towel,\"A person is cleaning a cabinet, and sneezing. The person gets a cup of water and drinks it.\",c033 0.00 21.00;c114 0.00 20.20;c153 5.40 11.90;c154 11.80 19.20;c151 0.70 16.90;c082 0.30 16.30;c106 18.00 27.90,29.88\r\n0JB3D,2Q9D,Kitchen,7,7,Yes,A person opens the refrigerator and gets a drink. They take a few sips and pour the rest down the drain. They pick up a towel and run out of the room.,blanket;clothes;glass;refrigerator;towel,\"A person walks into a kitchen and opens the refrigerator. The person takes out a glass of water and takes a drink, then walks over to the sink and pours the rest of the water out. The person then leans down, picks up a towel, and walks away.\",c142 5.40 11.70;c033 22.00 29.20;c035 21.20 28.20;c143 0.00 6.20;c107 4.00 24.50;c000 22.30 29.10;c109 19.40 25.40;c002 22.50 29.10;c070 23.20 28.80;c106 6.60 15.80;c073 22.20 27.20;c110 3.10 10.50,30.62\r\nHRR0X,BYF9,Dining room,6,7,Yes,A person awakens in their dining room holding a book. They turn on a light and eat an apple.,book;chair;food;light;table,\"A person sitting in a chair at a table walks across the room with a book in their hand, hits a light switch, then returns to the table where they then take a bite of some food.;A person is sitting in a chair before eating while holding a book.\",c026 9.40 16.50;c104 14.10 20.80;c156 21.50 27.00;c151 21.70 27.00;c154 7.70 13.80;c059 0.00 11.30;c105 13.20 18.60;c011 0.00 12.20;c063 20.00 25.10;c030 9.30 14.60,25.83\r\nF3O37,2Q9D,Laundry room,6,6,Yes,A person is throwing dirty shoes into the laundry and taking out a pillow that was just washed.,clothes;lid;pillow;shoe;washer,\"A person standing in front of a washer ,takes shoes and put them in the washer and pulls out a pillow and continues to stand and wait .\",c076 6.90 14.60;c079 4.50 11.50;c053 0.00 6.50;c054 5.80 10.50;c058 5.80 10.50;c001 6.00 10.60;c000 0.00 10.50,30.71\r\nIVXKL,2Q9D,Laundry room,6,6,Yes,\"While waiting for the laundry to finish, A person is eating food and standing beside a chair.\",bag;food,A person is eating some food.;The person is eating something in a laundry room.,c061 0.00 30.00;c156 0.00 30.00;c020 0.00 30.00,28.58\r\nOG07V,2Q9D,Laundry room,6,6,Yes,A person is holding clean clothes and taking a hanger from a shelf.  The person is grasping the hanger as the person puts a clean shirt onto it.,clothes;hanger;shelf,A person is taking a hanger from a shelf and hanging their clothes.;A person grabs a hanger puts a shirt on the hanger and holds onto it.,c001 11.80 22.60;c004 0.00 31.00;c000 0.00 31.00;c001 3.60 30.70;c002 0.00 24.10;c082 0.40 4.90,30.29\r\n0IISQ,C7O9,Stairs,5,7,Yes,\"One person sits watching, wrapped in a blanket, as another person uses a box and a bag to tidy up the stairs.\",bag;blanket;box,A MAN IS TIDYING YP THE STAIRS BY PUTTING ALL OFTHE THINGS ON IT IN A BAG WHILE ANOTHER PERSON IS SITTING ON THE TOP STAIRS WATCHING,c072 0.00 32.00;c022 14.30 20.30,30.62\r\n0SXRS,3531,Living room,6,6,Yes,\"One person grasps a towel from a bag and starts tidying up the room, washing the top of a desk.\",bag;bowl;floor;table;towel,\"A person looks into a bag on the floor, and pulls out a towel and starts cleaning. The person then takes a bowl with water and sprinkle some water on the table.;a person gets a towel out of a bag and wipes the floor then grabs a bowl and wipes a table\",c012 26.50 32.00;c033 11.90 17.60;c013 26.50 32.00;c127 14.20 27.20;c038 14.70 32.00;c035 9.80 17.60;c154 21.10 26.60;c035 0.00 31.40;c154 0.00 32.00,31.42\r\nFKGY7,OUKK,Bedroom,5,7,Yes,\"A person is smiling as they undress, because they see they hung up a towel in the closet above the vacuum cleaner.\",clothes;shirt;towel,A smiling person undresses and puts the clothes on the floor.  They take a towel from a rack in the closet.;a person takes off a shirt and grabs a towel,c035 6.60 13.00;c152 3.20 9.00;c002 6.60 13.00;c155 0.00 9.50;c001 5.40 10.50;c003 5.50 10.20;c036 10.10 13.00,12.33\r\nSSVYY,8IOD,Hallway,7,7,Yes,A person is  throwing a towel over their shoulder and smiling while looking at pictures on a camera.,camera;phone;towel,A person is standing in a hallway holding a camera and has a towel on their shoulder.,c015 3.40 31.00;c033 6.20 31.00;c152 8.40 31.00,30.21\r\nGNUZK,YMXV,Laundry room,7,7,Yes,A person is fixing a light and then smiling while taking medicine in a laundry room.,bottle;light;medicine;water,A person is fixing a light and then takes some medicine and drinks some water.;A person starts off fixing a light in a room when done the person grabs some water and takes some medicine.,c103 0.00 5.70;c106 12.80 26.00;c129 11.00 17.60,30.42\r\n3H4E2,L4ZP,Kitchen,7,5,Yes,One person is sitting with a laptop and eating as another person takes a pair of shoes and sneezes.,bag;boots;countertop;food;laptop;shoes,\"A person is standing in the kitchen at the counter, using a laptop and eating something from a bag that is sitting on the counter top.  Another person comes in behind this individual and picks up a pair of boots on the ground.  The second person walks back out of the kitchen.;A person is standing by a kitchen countertop eating food out of a bag when another person enters the kitchen, bends down and picks up a pair of shoes off of the kitchen floor, then proceeds to walk out of the kitchen.\",,30.67\r\nKMWCM,D344,Living room,4,5,Yes,A person is playing video games on the recreation room television and laughing. The person takes a cookie from a box and eats it.,bowl;chair;food;phone;television,\"A person is playing with their phone while sitting in a chair and laughing while watching tv while eating from a bowl of food in their lap.;The person is sitting in a chair, holding a phone watching television while talking.\",c149 7.60 14.80;c156 28.00 36.20;c015 0.00 50.00;c132 0.00 50.00;c061 0.00 50.00;c131 0.00 50.00;c059 0.00 50.00,49.17\r\nU43FI,BYF9,Home Office / Study (A room in a house used for work),4,7,Yes,\"One person is playing with food while sitting in a chair at a small table, while another person watches grasping a glass.\",chair;cup;dish;floor;food;glass;plate;table,A person sitting in a chair at a table plays with the food in a plate. Another person walks over and takes the glass from the table.;Person sitting in the chair putting something on the table.  Another person enter the room to talk to the other person,c110 13.60 19.00;c063 14.20 19.00;c059 0.00 19.00;c011 0.00 19.00;c119 14.70 19.00;c009 0.00 19.00;c127 0.00 19.00,17.50\r\nYK5A4,UTMU,Laundry room,5,7,Yes,The person throws their chair to the front of the sink. The person takes their their phone and sits down on the chair and smiles.,chair;phone;sink,person carrys a chair and sits in it playing on phone smiling,c016 6.70 22.00;c059 5.70 22.00;c151 5.00 10.30;c152 10.80 22.00;c015 4.70 22.00,21.42\r\n32MUM,LTAC,Recreation room / Man cave,3,4,Yes,\"A person sets some food on a table, picks up a glass and drinks. They pull a medicine bottle from their pocket, look at it, and smile.\",apple;banana;bottles;container;cup;medicine;phone;table;water bottle,\"A person is adjusting objects on a table. They pick up a bottle and take the phone out of their pocket and look at it.;This person is rearranging some things on a table, and then takes their phone out of their pocket to check it.\",c009 5.30 11.80;c012 0.00 17.30;c107 14.60 20.90;c110 13.00 18.80;c109 13.60 32.00,30.50\r\nRSRZ0,QZQ4,Kitchen,5,5,Yes,\"In the dining room, a person is smiling and looking out the window.  Another person is closing a broom in the wardrobe.\",broom;cabinet;chair;closet;door;table;wardrobe;window,\"A person is sitting on a chair at a table, looking out a window. Another person walks to the cabinet, opens the door, and puts a broom away. The first person then opens the window and continues to look outside.;A person is sitting at the table, looking out the window. A second person is holding a broom, and goes to put the broom away in the wardrobe. The first person opens the window, and continues to look out.\",c098 0.00 9.90;c113 2.70 15.50;c059 0.00 33.00;c092 0.00 33.00;c099 0.30 19.20;c011 0.00 33.00;c090 19.40 28.00,32.08\r\nHHAM7,ZEM0,Bedroom,6,7,Yes,\"A person is walking while wearing a bag.  Then a person is opening their closet, picking a pair of shoes, and leaving with the shoes.\",bag;closet;door;shoe,\"A person that is carrying a bag on their back opens the closet, takes out a shoe and closes the closet door.;A person is walking around their room carrying a bag on their back. Then the person opens the closet door. After finding some shoes, the person picks them up and throws them.\",c020 0.00 31.00;c006 18.40 23.00;c113 8.40 16.30;c056 15.20 25.80;c141 8.60 14.40;c008 8.30 15.60;c112 17.60 25.10,30.50\r\n1IJ7V,1OHU,Stairs,4,7,Yes,A person on running down the stairs turns the light on and is putting coffee on the table.,coffee;cup;dish;table,A person descends some stairs while holding a cup of coffee. They then put the cup on a desk and leave the room.,c009 17.90 23.30;c109 17.40 23.10;c107 0.00 21.70;c118 1.70 22.00;c119 18.00 22.00,25.33\r\n2JOTF,P6LJ,Kitchen,6,6,Yes,A person is standing holding a blanket and laughing at the picture on the wall.,bedsheets;blanket;counter;something,The person got bedsheets  hold it  roll it up and trew on something.;Someone grabs a towel from a counter in their kitchen and stands with it in their hands.,c070 1.00 22.80;c073 0.00 5.90,22.42\r\nYMWUS,AC0W,Bedroom,2,7,Yes,A person is dressing by a wardrobe.  Then a person is grasping medicine off a shelf.,closet;clothes;jacket;man;medicine;socks;wardrobe,a man getting dressed inside of a closet.;A person is taking a jacket from the closet and putting it on then they are throwing clothes on the floor and putting on socks.,c148 9.20 38.90;c002 3.30 14.10;c000 7.30 12.90;c151 32.80 39.20;c128 49.20 54.40,62.04\r\nTFQNW,BYF9,Recreation room / Man cave,7,7,Yes,A person is watching a laptop and then running in place in front of a window in the recreation room / man cave.,bed;laptop;window,A person views a laptop screen then goes to the window to run in place.,c051 0.00 11.80;c150 13.70 21.00;c154 7.00 12.90;c092 11.00 21.00;c135 0.00 12.50,20.33\r\nRJ27X,5LWB,Kitchen,6,6,Yes,One person is cooking and drinking when another person runs to the table with groceries.,cup;doorway;food;groceries;mug;pot;shelf;table,A person closes a pot. They then take a drink from some mug. Another person holding food walks to a table and puts the food down.;One person is cooking and then takes a drink. Another person walks out of the room and puts items on a shelf.,c009 17.00 22.80;c061 10.80 21.90;c062 17.20 22.30;c063 10.10 14.70;c147 0.00 6.00;c097 15.00 19.00;c130 18.00 22.00;c147 0.00 24.00,22.79\r\nLBT7P,0KZ7,Bathroom,6,6,Yes,A person is throwing a pillow at a picture and then leaving a bathroom.,doorway;pillow,A person throws a pillow and walks out of a bathroom.,c076 2.70 16.20;c080 5.30 12.50;c097 16.70 21.60,23.67\r\nPV1WX,YA10,Laundry room,7,7,Yes,A person is tidying the clothes and then running the vacuum and then playing the radio in the laundry room.,clothes;floor;vacuum,A person is folding towels and putting them on a dryer. A person then vacuums a rug before reaching something on a shelf.,c004 0.00 11.10;c137 11.20 49.00;c127 11.90 44.40,47.88\r\n0MIE5,R1OT,Hallway,4,6,Yes,A person walks into a hallway holding a duster. They begin to tidy up by dusting various items such as a mirror and pictures on the wall.,duster;picture,This person is dusting the house,,26.96\r\nI34L6,PKND,Garage,6,6,Yes,A person is fixing the chair and another person is grasping the camera.,camera;chair;phone,A person is smiling and playing with a chair while the other person holds a camera.;a person puts a chair next to a car and another person uses their phone,c015 0.00 33.00;c152 17.60 22.20;c016 2.10 33.00,31.50\r\n1X4SD,28B0,Laundry room,7,7,Yes,A person is lying clothes on top of a washing machine in a laundry room.  The person sneezes and then turns out the light.,clothes;dryer;towel;washer,The person is taking clothes out of a laundry basket and sorting and folding it.  They are using the top of the washer and dryer as a table.,c002 0.00 24.00;c035 0.00 6.40;c001 2.40 11.30;c034 0.60 6.20;c033 7.40 23.50,22.58\r\nBSU86,P3TI,Stairs,6,7,Yes,A person sneezes while taking some clothes and a pillow up some stairs.,clothes;pillow;sneezing;stairs,\"Person holding pillow and clothes, walks up stairs, then stops, sneezes three times and continues back upstairs.\",c076 0.00 32.00;c000 0.00 32.00;c153 15.70 21.00,30.58\r\n70PUI,ZAWX,Dining room,4,5,Yes,\"A person is dressing in front of the window. Then, taking a towel, the person wraps it around herself and leaves the room.\",blanket;clothes;towel;window,\"A person is standing next to a window while straightening out the clothes the person is wearing. Afterwards, the person takes a blanket and wraps it around their waist like a skirt before walking towards the camera.;A person gets dressed next to a window.  They wrap a towel around their waist and over their clothes, then walk away.\",c035 10.70 16.70;c148 0.00 6.80;c073 10.70 16.70;c001 9.90 24.30,30.92\r\nSU2UY,0RNU,Garage,7,7,Yes,A person drinking a soda is working on a laptop while sitting on a pillow on the garage floor.,cup/glass/bottle;drink;floor;laptop;pillow,A person is sitting on a pillow while working on a laptop.  They occasionally have something to drink.,c125 0.00 31.00;c052 0.00 31.00;c106 0.10 6.10;c106 11.10 16.90,30.00\r\n1NYKM,KQI6,Living room,7,1,No,A person awakens in a hallway on a blanket closes their homework notebook and goes to bed.,bed;blanket;book;chair;couch;sofa;television,\"A person is sitting on the sofa reading a book. A person then gets up and starts tidying up the sofa, and lies in the bed and watches television.;A person is reading a book lying on a couch.  The person then put away the book, tidied the couch, then lied down in bed.\",c070 20.50 29.30;c134 30.00 36.00;c154 15.40 21.00;c123 0.00 19.90;c132 30.90 36.00;c075 19.60 29.80;c032 0.00 17.80;c122 0.00 19.20;c028 16.30 22.20;c059 0.00 19.90,34.75\r\nL9YK1,G6WD,Hallway,6,7,Yes,The person is running with a towel and then taking off shoes in the hallway.,shoes;towel,A person is running back and forth in the house. They stop and take off their shoes and start folding what looks like a towel.,c037 8.40 19.80;c150 0.00 15.10,30.12\r\nOURYR,9Y7F,Living room,5,7,Yes,A person is eating a sandwich while sitting on a chair.  A person is drinking coffee at the same time.,chair;coffee;cup;food;sandwich,A person in bedroom sitting on chair eating a sandwich and drinking from a glass.,c106 0.00 32.00;c107 0.00 32.00;c065 0.00 32.00;c067 0.00 32.00;c059 0.00 32.00;c156 0.00 32.00,30.75\r\nGL7ER,XXN8,Kitchen,5,7,Yes,A person is putting a pan on the stove and starts fixing some eggs. The person then puts their food on a table and begins eating.,cabinet;counter;dish;food;plate;pot;shelf;stove,\"A person is in the kitchen cooking eggs in a pot,the person then removed the eggs and places them on a plate.;A person in ketchen puts a pot on stove and cooks eggs then puts them on plate and sits down and begins to eat them.\",c063 8.10 16.40;c156 20.50 31.00;c147 0.00 35.00;c112 28.40 34.10;c081 26.20 32.80;c120 5.00 16.60;c119 0.00 2.90;c113 8.30 13.70;c062 1.60 8.40,34.04\r\nTXNDA,3MIT,Living room,6,7,Yes,A person is sitting on the sofa drinking coffe and laughing at whats outside the window.,chair;cup;dish;glass;soda;sofa;table;window,\"The person sitting on sofa drinks something and laughs.;A person is sitting on a sofa and drinking from a cup.  They take a sip of their drink, and then take another while noticing something outside the window.\",c123 0.00 14.00;c092 2.40 8.70;c149 8.00 12.60;c107 0.00 13.60;c118 0.00 13.60;c011 0.00 14.00;c119 8.50 14.00;c106 0.00 8.80;c109 8.40 13.90,13.00\r\nCTFYL,3H6W,Kitchen,7,6,Yes,\"A person is putting food in a cabinet, then standing and tidying near a sink in a pantry.\",cabinet;dish;food;groceries;shelf,A person puts food in a cabinet.,c062 2.80 19.40;c063 16.60 30.80;c081 2.60 10.70;c130 2.30 17.70;c119 16.60 29.80;c120 16.70 31.00;c114 1.70 19.20;c082 1.70 19.20,34.00\r\nKBPDM,T7C3,Stairs,7,7,Yes,A person is awakening and then sneezing on a mirror and then eating a sandwich on the stairs.,food;mirror;plate;sandwich;stairs,A person is sleeping on some stairs.  The person then awakens and sneezes.  The person then seizes some food lying next to him and consumes it.;A person is sitting on the stairs enjoying a sandwich and holding a small personal mirror.,c093 3.10 18.70;c146 0.00 11.10;c153 7.10 13.60;c156 15.70 36.00;c067 0.00 10.40;c065 18.20 36.00;c069 14.70 20.80,34.88\r\nZM3X3,XXN8,Home Office / Study (A room in a house used for work),5,6,Yes,A person is holding their phone and taking a picture of their office while laughing.,phone;picture,A person is taking pictures.,c087 0.00 33.60;c015 0.00 34.00;c016 0.00 20.70,33.42\r\n268ET,KFGP,Home Office / Study (A room in a house used for work),6,7,Yes,\"A person throws a pair of shoes into a bag and grasps a small towel, holding it under the arm.\",bag;shoe;towel,\"A person opens a bag and places a pair of shoes inside.  Setting the bag down, the person picks up a towel from a chair.\",c020 0.00 16.20;c033 13.70 29.00;c021 0.00 9.70;c022 11.10 16.90;c054 7.10 16.20,28.04\r\n41II2,D0RU,Living room,6,7,Yes,One person is sitting and putting shoes on while the other is standing on a pillow.,chair;food;pillow;shoe;table,A PERSON IS SITTING ON A CHAIR PUTTING ON HIS SHOES WHILE A WOMAN IS STANDING ON A PILLOW AND BOUNCES ON IT AND THEN THE MAN STANDS UP FROM THE CHAIR,c055 0.00 22.70;c154 26.90 32.50;c156 11.30 17.20;c063 12.40 17.60;c059 9.10 31.40;c152 20.60 30.30;c011 0.00 24.30;c149 20.60 30.30,31.54\r\nSNK5Z,PKND,Pantry,6,7,Yes,\"A person is fixing the door to their pantry. As the person sits in the doorway, they reach for a piece of nearby food and eat it.\",door;floor;food;tool,\"Person on the floor using a screwdriver fixing a piece of furniture, person was eating food;A person is kneeling on the floor and fixing a hinge on a door while eating.\",c007 2.30 8.70;c061 14.80 19.50;c156 15.10 20.90;c125 0.00 18.30;c062 17.40 23.90;c063 13.20 19.90,31.00\r\n8J5O9,QB52,Home Office / Study (A room in a house used for work),5,6,Yes,A person is grasping some medicine then puts it down to pick up some food.,bottle;bowl;chair;dish;food;man;medicine;table,a man sitting down looking over a pill bottle and eating out of a bowl;A person is sitting in a chair looking at medicine before eating.,c061 16.70 31.00;c128 0.00 21.00;c156 17.00 31.00;c059 0.00 31.00;c009 16.00 20.30;c118 17.80 31.00;c063 20.20 24.80;c120 17.80 22.40,30.42\r\nBTW1H,3H6W,Entryway (A hall that is generally located at the entrance of a house),7,6,Yes,\"A person takes a vacuum to the entryway, then watches a car through the window.\",vacuum;window,Person places their vacuum by the front door. They then move towards the window where the person looks out the window.,c137 2.60 10.20;c092 15.00 29.00;c138 2.80 10.70;c150 7.60 18.80,30.88\r\n115MY,5LWB,Living room,5,7,Yes,\"A person opens the door to the living room and turns on the light. Another person, lying on the couch, quickly awakens and stands up.\",door;light;sofa;television,{},c123 0.00 15.20;c104 7.20 14.20;c146 8.30 14.30;c154 11.70 17.00;c151 10.70 16.90;c097 2.80 8.50;c132 0.00 18.00,16.50\r\n77UTO,3531,Dining room,6,6,Yes,\"A person is pouring a cup of coffee and then drinking it, then wiping a window with a towel in a dining room.\",chair;closet/cabinet;coffee;cup;food;glass;shelf;table;towel;window,A person pours a drink from one cup to another and drinks it. The person then stands up and washes a window with a towel.,c091 25.20 33.00;c038 25.50 33.00;c106 7.60 28.40;c108 0.00 10.80;c107 0.00 27.90;c033 23.50 33.00;c154 19.80 28.90;c014 0.00 27.00;c156 6.90 26.20;c011 0.00 26.70;c082 25.90 33.00;c037 29.80 33.00;c059 0.00 26.70;c114 24.70 33.00,31.79\r\nQRSP8,KFGP,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person is sitting by a closet looking into a box, they then start laughing and turn off the light before walking away.\",box;chair;light,A person is sitting in a chair in a a hallway.  He picks up a box and puts it down.  He stands up and turns off the light.,c040 0.00 16.30;c105 15.10 19.60;c154 13.60 19.10;c041 0.00 9.30;c059 0.00 17.90;c042 11.20 17.90;c043 0.00 4.30,28.62\r\n97PX8,HR43,Kitchen,6,7,Yes,\"A person is in a kitchen tidying up and washing dishes, they then grab a near by picture and a laptop and exit the room.\",dish;hand;laptop;sink;water,\"A person walks into a kitchen, washes their hands in a sink, then picks a nearby laptop up off the counter and leaves again.;A person is in a kitchen with their back to the camera.  The person is washing the dishes in the kitchen sink.  After the person is finished with the dishes, they grab the laptop sitting on the counter and exit the kitchen.\",c047 39.20 47.30;c121 0.00 43.00;c139 0.00 43.20;c119 24.90 32.00,47.58\r\nXZ2QQ,5LWB,Stairs,5,5,Yes,A person looks at their phone and laughs. The person puts the phone down and picks up a book.,book;phone;steps,\"A person is sitting on some stairs, looking at their phone and smiling. The person puts the phone down, picks up a book and opens it.;The person is sitting on the steps on a cell phone then puts down the cell phone and picks up a book.\",c015 0.00 13.40;c017 8.90 13.60;c027 10.90 15.90;c032 11.80 21.00;c152 1.00 14.70;c016 0.00 11.30;c026 8.10 14.30;c030 8.80 17.20;c149 0.50 12.00,20.25\r\nBZMLV,9PLL,Hallway,5,7,Yes,A person standing in the hallway while on the phone turns on the light and takes some medicine.,cup/glass/bottle;doorway;light;medicine;phone;pills,\"Black man hangs up the phone, turns on a light and then picks up a pill bottle, unscrews it and then emptying the pills into his mouth.\",c015 0.00 11.20;c128 9.00 16.30;c129 13.60 21.50;c104 1.50 7.60;c019 0.00 6.30;c154 1.50 9.60;c097 1.00 9.00;c106 14.20 20.60,31.71\r\nQH3FK,ZAWX,Living room,5,7,Yes,A person is sitting in a chair eating a sandwich. They stop and drink some water.,chair;dish;food;glass;plate;sandwich;water,\"A person is sitting in a chair with a plate on their lap.  They are eating a sandwich when they put it down and pick up a glass.  They drink water from the glass.;A person is sitting in a chair with a plate on their lap, eating a sandwich.  The person takes several bites and then grabs a glass of water on a table to their side.  They take a drink.\",c106 20.90 32.00;c067 0.00 24.70;c069 0.00 24.70;c156 0.00 28.70;c065 1.10 25.20;c068 19.50 24.70;c059 0.00 32.00;c118 0.00 24.70;c110 24.10 30.10;c061 9.50 25.10,30.71\r\n2X7OY,PKND,Kitchen,6,6,Yes,One person is tidying with a broom while another person is standing on a pillow.,broom;floor,A person is sweeping with a broom while another person looks on and critiques their work.,c102 3.70 32.00;c127 0.00 32.00;c152 19.00 32.00,30.62\r\nI491F,YA10,Laundry room,5,7,Yes,\"A person sits on a chair, holding a picture. Another person watches them from the doorway.\",chair;doorway;picture,A man standing in a doorway talks to a woman sitting in a chair.,c059 0.00 31.00;c084 0.00 31.00,30.00\r\nOB9H3,XXN8,Kitchen,7,7,Yes,A person playing with a laptop and a phone sneezes.,laptop;phone,\"A person is playing n her phone, typing on her lap top, sneezing, then gets up and walks away.\",c015 0.00 25.40;c016 0.00 22.10;c052 2.10 13.90;c153 10.20 17.80;c154 17.60 23.40,30.33\r\nL1U23,HR43,Living room,6,4,Yes,\"A person is in a living room sitting on a chair drinking coffee, they then start running around the round tidying up.\",beverage;cup;dish;food;sofa,a person drinks from a couch sitting down and then gets up.,c106 0.00 16.70;c123 0.00 17.20;c154 12.70 18.40;c118 0.00 3.90;c061 8.50 17.50,27.08\r\nHJ5TL,9PLL,Kitchen,4,7,Yes,A person is holding some dishes as they put them away in a cabinet. This person then grabs a broom and sweeps for a few seconds. The person then checks on a pot on the stove that they are cooking food in.,broom;dish;floor;shelf,A person is putting dishes away then tidying up with a broom.,c102 11.60 29.00;c119 0.00 10.60;c127 16.30 28.00;c081 2.00 10.10,33.54\r\nVWN13,ZSRZ,Closet / Walk-in closet / Spear closet,5,7,Yes,A person laughs and holds their phone as they grab the closet doorknob and open/close the door as if playing hide and seek with someone.,closet;door;phone;wardrobe,\"Person coming in to the room, goes straight to the closet, opens it and then decides to close it again while holding a phone.\",c113 2.20 7.80;c006 7.50 14.00;c141 1.80 6.30;c015 0.00 14.00;c112 6.80 14.00;c008 1.80 8.30,13.21\r\nDZDD2,2RTW,Living room,6,6,Yes,A person is opening the medicine cabinet in an attempt to fix their wounds from breaking dishes while washing them.,cabinet;floor;medicine;paper;wrap,\"A person walks to a stand and opens a door ,the person starts looking though the stand for a something and pulls out a paper.The person takes takes the paper and puts a wrap on their hand.;A person opens a cabinet and moves a box. They open a napkin and place pills on in. They then grab a bandage.\",c113 0.00 11.70;c125 1.10 33.00;c151 0.00 33.00;c114 0.60 33.00,32.33\r\nBMPEV,3H6W,Kitchen,6,5,Yes,\"A person is sneezing into a bag of groceries, turning off a light and closing a door in the pantry.\",bag;closet/cabinet;door;groceries;light;table,\"Someone walks to pick up a bag of groceries on the counter and sneezes into it. Then he leaves, turning the light off and closing the door.\",c021 8.40 16.50;c020 9.20 18.60;c105 16.60 25.20;c153 8.50 16.80;c112 18.00 23.80;c022 6.50 17.00;c023 6.50 17.00;c130 6.50 17.00;c009 6.50 17.00,27.92\r\n1IIS5,LTAC,Kitchen,5,4,Yes,\"A person is holding a bag of groceries, then opening the refrigerator and using a broom in a kitchen.\",bowl;broom;doorway;floor;food;refrigerator,\"Person holding large bowl, walks into kitchen, opens fridge, walks away, picks up broom and starts to sweep\",c102 11.90 32.00;c143 4.00 9.80;c063 0.00 7.80;c127 11.60 32.00;c097 0.00 5.50;c098 12.10 32.00;c142 5.70 12.90;c061 0.00 32.00,30.58\r\n9RSGO,YMXV,Laundry room,6,7,Yes,A person is grasping the phone and another person is undressing by the mirror.,hair;mirror;phone,one person picks up phone and other person looking in mirror fixing hair,c096 14.80 32.00;c016 0.80 18.00;c154 0.00 6.50;c094 15.40 32.00;c144 21.80 28.20;c018 0.00 4.90;c015 0.30 17.70,30.75\r\nRPMXE,HJJ4,Stairs,4,7,Yes,A person opens a blanket then takes off their shoes while on the stairs.,blanket;clothes;shoe;stairs,\"A person is sitting on the steps with a folded blanket in their laps. They then unfold the blanket, ball it up messily, then set it down next to them. Finally, the person removes their shoes and sets them down to the other side of where they're sitting.\",c070 0.00 13.80;c057 9.80 22.00;c002 10.00 22.00;c075 0.00 4.10,20.96\r\n3GNH7,ZSRZ,Kitchen,7,7,Yes,\"A person is pouring water into a pot on the stove, then holding a sandwich in a kitchen.\",bread;cup/glass/bottle;dish;food;pan;sandwich;stove;water,A person is standing at a stove and pours water into a pan. Then the person picks up two slices of bread.,c147 0.00 16.00;c120 0.00 10.00;c118 0.00 10.10;c069 7.00 14.20;c109 0.00 10.10;c063 7.10 16.00;c061 7.80 16.00,15.46\r\nNX5EW,3H6W,Living room,4,5,Yes,A person throws a towel onto the shelf and smiles.,clothes;shelf;towel,\"A person walks through a room and tosses a towel on top of a shelf, then smiles.\",c081 3.30 8.70;c033 3.10 8.10;c036 3.30 8.70;c152 4.70 10.70;c003 4.20 9.20,16.83\r\nK14NJ,4OHY,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A smiling person carries a box of clothes into an entryway and sits it down while checking themselves in a mirror and then heading out the door with the box of clothes.,box;clothes;doorway;floor;hand;head;mirror,\"A person walks through the door with a box in their hand. They sit on the floor and rub their face while looking in a mirror. They pick the box back up and stand.;A person walks through a doorway holding a box containing clothes, sits on the floor and looks at themselves  in the mirror. The person grooms their head with a hand. The person stands and walks out of the room.\",c040 0.00 13.00;c043 26.30 32.00;c151 11.50 17.90;c125 13.90 25.70;c042 9.60 16.70;c096 12.80 33.00;c154 18.80 30.70;c097 0.00 6.20,32.12\r\n2MNJT,XXN8,Closet / Walk-in closet / Spear closet,5,5,Yes,One person is dressing while another is propped on a pillow playing games on a laptop.,clothes;game;laptop;pillow,one person sitting on stairs working on laptop and one person standing putting on a coat,c052 0.00 32.00;c148 1.40 32.00;c001 7.70 13.40;c047 17.30 22.30;c002 15.20 20.60,31.25\r\nS3TZ1,P6LJ,Kitchen,5,6,Yes,\"A person opens up the refrigerator and takes out some food, then they reach for some ingredients on a nearby cabinet and begin cooking a meal.\",cabinet;food;refrigerator,\"A person turned on the camera then walked to the fridge. Obtaining some foodstuffs from the fridge, they then placed them on the counter, grabbed some utensils, and began preparing food.  The person the turned off the camera.\",c063 2.60 12.40;c113 10.70 17.00;c143 0.30 6.30;c062 4.90 14.70;c142 5.90 13.00;c147 31.90 49.90;c061 5.40 13.50,50.92\r\n54XD1,BYF9,Bedroom,7,7,Yes,\"A person is using a vacuum, but leaves it there to run across the room and turn off the light.\",bed;doorway;floor;light;vacuum,\"A person is vacuuming the bedroom. The person then runs, turns off the light, and runs out of the room through the doorway.;someone vacuuming the floor and turning off all the lights\",c137 0.00 25.30;c105 27.80 31.00;c150 21.40 27.20;c154 17.60 24.70;c097 27.00 31.00,30.08\r\n55687,YA10,Home Office / Study (A room in a house used for work),6,6,Yes,\"One person plays with a picture, then washes it. Then, this person opens the doorknob to leave.\",door;picture;table;towel,\"A person holding a picture.The person wipes the picture off.The person puts the picture on the desk and walks over to the door and opens it.;A person stands in the entryway looking at a picture.  They take a towel, clean it, then set the picture on a table.  They grasp the doorknob, open the door and walk out through the doorway.\",c141 24.40 29.20;c097 27.50 32.00;c034 16.40 22.30;c088 0.00 10.80;c084 0.00 26.00;c088 0.00 23.50;c009 17.20 25.70;c033 5.70 22.90;c038 6.60 23.40;c008 24.00 32.00;c086 17.40 26.30,30.67\r\nPM9HG,ZAWX,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"A person turns the doorknob, opens the door, and walks into their home. They stand in the doorway of their entryway. The person places a book on the table and begins eating candy from the candy dish.\",book;door;food;table,\"a person walks up the stairs to the front door opens the door walks in carrying a book they put the book down on a table and pick up a container holding candy they eat a piece of candy.;A person carrying a book opens a door by grasping the doorknob and walks through a doorway into a room. They place the book on a table.  Next, they grab a piece of food from the table and eat it.\",c008 0.00 8.70;c028 11.90 17.20;c097 0.40 6.60;c156 30.50 35.00;c063 21.60 26.60;c026 0.00 15.70;c141 0.00 4.90;c061 14.60 33.70;c009 11.20 17.20,34.21\r\nQ2KCQ,CCI9,Stairs,5,1,No,One person is standing on the stairs with a stack of dishes. Another person on the stairs grasps homework and a pillow.,book;dish;homework plate pillow;paper;picture;stairs,\"2 people are standing on the stair one is holding a book and a pillow they are writing in the book the other is holding a plate.;A person is holding a picture on the stairs, while another person is reading a book.\",c115 0.00 32.00;c026 0.00 32.00;c118 0.00 32.00;c145 0.00 25.30,31.29\r\nW4BZX,UTMU,Laundry room,2,6,Yes,\"A person brings their laptop and food into the room, opens up the laptop and starts working.\",dryer;food;laptop;washer,\"A person sits on a laundry machine and plays on a laptop, while eating.;A young woman walking into the room sitting on the dryer and opening up a laptop and working on it.\",c052 13.80 33.30;c061 1.10 9.10;c154 31.00 36.80;c048 9.40 15.40;c151 1.70 7.70;c046 29.00 34.80;c063 11.60 17.20;c047 0.40 37.00;c154 0.20 11.50;c048 8.10 21.10,36.62\r\n97JCX,WG9D,Bathroom,5,7,Yes,A person is dressing in the bathroom.  The person stands in front of the mirror and drinks a cup of coffee before turning off the light and leaving.,clothes;coffee;cup;door;jacket;light;mirror,A person is putting a jacket on while looking at themselves in a mirror than take a sip of their coffee and they turn off the light.;A person is putting on a jacket while standing in front of a mirror. They turn off the light and walk out the door.,c106 0.90 8.10;c105 2.00 16.30;c106 6.00 13.70;c110 10.60 27.50;c096 2.30 16.30;c148 3.90 12.40;c148 13.50 24.80;c148 3.10 20.80;c001 7.10 16.80;c109 21.00 26.20;c107 18.80 25.00,26.67\r\n52FNN,ZAWX,Bedroom,6,6,Yes,A person puts a sandwich on a table.  The person then starts pouring a drink and walks through a doorway.,bottle;dish;doorway;glass;plate;sandwich;table,A person is carrying a plate into the dining room. The plate appears to have a slice of bread on it. The person then sits the plate down on the table and pours water into a cup and walks out of the room;A person is holding a sandwich they then set the sandwich down on a table and pur themselves a glass of water before walking out the door.,c097 28.70 33.00;c068 2.40 6.80;c009 2.40 6.80;c154 2.80 9.30;c118 0.00 4.70;c108 10.10 21.90;c119 1.70 6.80;c067 24.60 29.90,32.25\r\nSJQVM,HR43,Living room,5,6,Yes,\"A person snuggles with a blanket, while pouring water into a glass.\",blanket;couch;cup;glass;man;sofa;table;water,\"A person is lying on the couch, head on a pillow, covered with a blanket. The person sits up, reaches for a glass of water on the table nearby, and drinks the water. The person then lies down and covers themselves with the blanket again.;a man laying down with a blanket and getting something to drink\",c107 13.90 20.00;c072 0.00 12.20;c009 14.60 19.90;c106 15.70 26.40;c070 0.00 29.00;c122 0.00 10.90;c108 11.00 17.80;c123 8.80 28.70,27.88\r\nKUO3N,CCI9,Entryway (A hall that is generally located at the entrance of a house),5,6,Yes,\"One person closes a box, then places it on a shelf with a folded blanket and leaves.\",blanket;box;clothes;leaves;shelf,\"Person walks into the room, with a blanket, a box and some leaves. Person closes the box and sets those items on a shelf or ledge.\",c081 2.10 26.60;c070 0.00 12.20;c071 7.70 14.30;c039 16.00 22.30;c040 1.90 22.00;c001 0.00 20.70,32.71\r\nWEJRX,18IT,Hallway,7,4,Yes,\"A person laughs as they walk down the hallway. The person opens the door, walks through, and turns the light off behind them.\",door;light,Two people are walking up some stairs and laughing together. The two of them walk into a house and then one of them walks out and shuts the light in the home on his way out.,c008 8.40 16.40;c149 1.90 10.90;c152 0.00 22.50;c097 9.50 17.10,21.67\r\nU8I40,2Q9D,Pantry,5,7,Yes,\"A person is washing a stain off of their shoes with a towel. Once done, they hold it up to their eyes and inspect it closely.\",shoe;towel,A person is standing in their kitchen holding a pair of shoes and a towel. They are cleaning their shoes with the towel.,c033 0.00 31.00;c053 0.00 31.00,29.96\r\n5ECJ4,2RTW,Living room,6,6,Yes,Person is lying on the couch while snuggling with a dish of food.,coffee;cup;dish;sofa;television,\"A person is sitting on the sofa holding coffee, while another person is sitting quietly.;A person is sitting on a sofa holding a cup and watching television.\",c149 4.70 10.70;c123 0.00 27.00;c118 0.00 27.00;c132 0.00 27.00;c107 0.00 27.00;c152 0.00 8.60,26.38\r\nTODWV,8TB9,Bedroom,7,7,Yes,A person awakens and begins dressing in clothes in front of a mirror.,bed;clothes;covers;cup;glasses;house coat;mirror,\"A person lying on a bed awakens, puts on glasses, then stands and walks to a mirror and dresses in clothes while looking at a reflection of themselves.;A person lying in bed covered up .The person gets out of bed and put their glasses .The person stands in front of a mirror and put on a house coat .\",c146 0.00 13.20;c154 14.00 20.10;c109 12.00 19.50;c148 21.60 32.00;c134 0.00 15.30;c133 0.00 19.00;c096 22.00 32.00,30.67\r\n3EJQW,2RTW,Living room,6,6,Yes,A person closes a desk drawer and then tidies up a shelf that holds a mirror and a phone.,cabinet;shelf;sofa/couch;table;television;tv,THE PERSON IS SITTING AND WATCHING TV. THEY THEN CLOSE A DRAWER AND GET UP AND WALK ACROSS THE ROOM TO A SHELF AND MOVE STUFF ON THE SHELF.,c114 4.60 27.00;c011 0.00 6.10;c082 4.70 27.00;c154 1.20 6.80;c132 0.00 5.00;c123 0.00 5.30,26.42\r\n5AW54,2RTW,Dining room,6,6,Yes,A clothed person is laughing and leaving a bag of garbage in the doorway.,bag;clothes,A person is holding a bag of clothes. They put the bag in front of a door while laughing.;A person ties up a trash bag before walking to the door to set it down.,c020 0.00 10.60;c022 2.50 10.10;c149 0.00 27.00;c152 3.40 16.00,26.38\r\n10ND1,KQI6,Kitchen,6,6,Yes,\"A person is smiling at the stove, fixing a meal for themselves. They then move to the counter where groceries are laid out waiting to be chopped up. The person begins chopping up some of the food items and puts them into the skillet/pot/pan to start cooking.\",dish;food;something;stove;table,A person is cooking something on the stove. They put the food on a plate and put it on a table.,c009 0.00 5.60;c061 17.30 28.60;c062 28.20 34.90;c147 30.10 35.00;c119 1.40 5.90;c063 3.90 15.10,33.88\r\nOWXLM,2RTW,Kitchen,6,6,Yes,\"A person is sitting at a kitchen table in front of a pile of clothes. The person takes a photo of a piece of clothing, folds it and sets it in a box thens closes the lid.\",box;chair;clothes;phone/camera;table,A person is sitting at a table with a pile of clothes. The person stands up and takes a picture of the clothes with a cell phone. Then the person starts to fold the clothes and put them into a box.,c039 0.00 13.90;c001 4.70 10.70;c011 13.80 31.80;c011 10.70 21.00;c004 13.60 26.00;c014 0.00 32.00;c154 8.70 32.00;c000 0.00 13.10;c016 9.10 18.90;c042 0.00 32.00,30.88\r\nJ26CF,YMXV,Recreation room / Man cave,7,7,Yes,One person is watching the laptop while another is holding the book.,book;chair;laptop;table,Two people are sitting in a room together. One of them is using a laptop while the other is reading.,c026 0.00 38.00;c032 0.00 38.00;c051 0.00 30.20;c052 2.10 30.20;c059 0.00 38.00;c011 0.00 38.00,37.25\r\n58Z9R,YMXV,Bedroom,6,5,Yes,A person is opening a door and sweeping with a broom.  Then a person is sneezing looking at a camera.,broom;door;floor,\"A person opens a door, retrieved a broom and starts sweeping the floor with it, then sneezes.\",c102 0.00 32.00;c008 0.00 8.60;c153 21.60 32.00;c127 0.00 25.60;c098 0.00 32.00,30.62\r\n13AUQ,I4RP,Kitchen,6,6,Yes,\"The person walks in with groceries, sets them on the table and picks up a book and throws it at the other person who is putting down a sandwich they are eating.\",bag;counter;door;food;groceries;sandwich;table,\"A person eating a sandwich in a kitchen ,another person is coming though a door the person close the door and proceeds to cross the room with a bag .The person places the bag on the counter and throws something at the other person.\",c065 0.00 19.50;c067 0.00 19.50;c020 5.50 21.50;c130 14.50 21.40;c156 0.00 19.50;c141 4.50 15.30;c008 4.50 15.30;c066 0.00 26.00;c009 4.50 15.30;c097 4.50 15.30,25.38\r\n5LAQN,I4RP,Kitchen,6,6,Yes,A person is drinking coffee and eating snacks. Another person walks into the room wearing muddy shoes.,coffee;counter;cup;doorway;food;sandwich;shoes;table,\"A person is drinking a cup of coffee, while another person is taking off their shoes.;Person drinking some coffee and eating in the kitchen while another person comes in the room brushing off shoes.\",c065 10.50 25.60;c106 0.00 9.10;c009 3.30 9.10;c156 5.20 26.00;c107 0.00 9.00;c061 4.50 20.20;c097 5.70 13.50,25.29\r\nTS4TV,I4RP,Home Office / Study (A room in a house used for work),6,6,Yes,A person is walking through the doorway with a glass in hand. Another person is sitting at a desk laughing.,coffee;computer;cup;desk,A person is sitting at a desk working on a computer then another person walks in the room holding a cup of coffee.;One person is working on a computer another person walks by holding a cup of coffee,,22.54\r\n67DPO,WG9D,Bathroom,4,6,Yes,Person is smiling while opening pantry door then grabs medicine and pillow.,cabinet;door;pillow,Someone is opening a cabinet and reaching up to get a pillow with a pink pillow case covering it.;A person opens a cabinet and takes out a pillow,c076 2.30 8.00;c154 0.00 8.00;c113 0.50 5.20;c079 1.80 8.00,6.62\r\nJSS05,LWUV,Bathroom,6,4,Yes,\"A person is eating a sandwich in the laundry room while doing homework, then they stop and throw the homework book in disgust.\",sandwich,A person is  sitting down on a toilet eating a sandwich and throwing something.,c065 1.80 31.00;c067 6.10 18.80;c067 5.50 12.70,30.08\r\nZOL0R,YMXV,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,Person is gasping doorknob and starts opening door and putting clothes on floor.,clothes;door;floor,A person opening a door and dropping his scarf on the floor.,c126 10.40 22.40;c141 0.10 7.30;c000 6.10 16.20;c003 9.50 14.80;c154 0.00 33.00;c008 3.70 10.40;c001 15.20 20.50,31.83\r\n0FVYR,KASL,Bedroom,7,7,Yes,A person is opening the wardrobe. Then the person sits at their desk and begins drinking coffee.,chair;closet;clothes;coffee;cup;desk;dog;door;table;wardrobe,\"person opening a closet and putting something in it and then sitting;A person opens a door, places an object in a closet, then sits on a stool and drinks from a glass.\",c011 19.90 25.00;c106 22.20 27.50;c151 14.90 21.90;c059 18.40 22.80;c113 10.20 16.00;c008 12.60 17.40;c112 10.50 18.70;c141 0.00 5.70,37.42\r\nIG1YT,6RE8,Home Office / Study (A room in a house used for work),6,7,Yes,A person is laughing in the study room sitting on a pillow.  the person then starts undressing and turns the lights off.,chair;cigarette;clothes;laptop;light;pillow;shirt;switch;table,\"A person is sitting on a pillow on a chair, while a cigarette. The person stands up and takes his shirt off. They walk to the other side of the room to flick a switch.;A person is sitting at a desk,the person decides to get up and take off a shirt then walk to the light panel.\",c105 20.80 26.90;c154 5.40 11.80;c001 16.10 21.60;c011 0.00 11.20;c155 13.60 20.30;c051 0.00 11.10;c059 0.00 11.10;c080 10.70 16.20;c002 13.70 19.80;c003 16.00 21.00,30.17\r\nDEY6U,5LWB,Living room,5,5,Yes,A person sits in a chair doing homework.  Then they throw their paper at the tv they are watching.,chair;desk;floor;homework;man;paper;table,The person is sitting at a desk. The person writes on a paper and then crumples up the paper and throws it.;A man writing something at a table and throws a piece of paper.,c145 0.00 35.00;c059 0.00 35.00;c011 0.00 35.00;c126 12.10 18.80;c014 0.00 35.00;c010 0.00 35.00,33.50\r\nKQLIJ,PKND,Living room,6,6,Yes,A person is playing with a camera while another person is throwing homework on the ground.,camera;floor;homework;paper;phone,\"A person is holding a camera, another person walks in holding a clipboard and throws it onto the ground.  The person walks around the room.;A person is playing with a camera, while a another person is looking at homework and throws it on the floor.\",c116 10.90 16.60;c015 0.00 8.30;c126 11.00 16.60;c087 0.00 8.70;c087 9.30 17.50;c145 4.40 15.50;c016 0.00 8.60;c016 6.60 17.80,30.62\r\n1VMZM,YA10,Laundry room,6,7,Yes,A person walks into their laundry room holding a vacuum and a pile of clothes. They put them in a basket and run out of the room.,clothes;door;something;vacuum,\"A person opens a door, brings in a vacuum, throws some clothes into a bin, and then runs out.\",c137 4.90 14.30;c003 12.20 23.30;c150 22.80 28.30;c097 5.60 10.40;c001 12.20 20.90;c000 5.60 19.70;c008 0.80 8.80,28.17\r\n3A400,0RNU,Garage,7,7,Yes,\"A person is running into the garage. The person is holding homework, a book and a backpack.\",book;doorway;paper,\"Person runs into garage with books in hand, opens the books, and begins to look at them.\",c115 1.40 7.50;c027 3.10 8.30;c150 0.00 6.10;c032 2.70 26.00;c026 2.20 26.00;c097 0.00 4.80;c025 21.90 26.00,25.42\r\nVSYFA,P3TI,Hallway,6,7,Yes,\"A person stands in the doorway undressing out of some clothes, then sits down and starts eating some food.\",bag;chair;clothes;door;food;man;shirt,a man taking off his shirt and sitting down with something to eat.;A person undresses their shirt and walks out a doorway. The person grabs bag and sits down on a chair. The person eats the food out of the bag.,c061 3.50 32.00;c155 0.00 3.90;c020 3.90 32.00;c097 18.00 32.00;c156 0.00 5.10;c151 0.00 2.70;c059 0.00 2.80;c155 0.00 12.00;c063 2.50 7.20,31.08\r\nGIQEO,Z68L,Bathroom,7,7,Yes,A person opens the door walks into the bathroom drinking from a glass of water. The person then pours the rest of the water over themselves and pulls out a camera and starts talking selfies in the mirror.,camera;cup;door;glass;mirror;phone;picture;sink;water,A person enters a bathroom and drinks some water and looks at themselves in the mirror while taking a picture.;person drinking some water and taking selfies of themselves,c008 0.00 7.90;c107 3.70 12.60;c015 14.40 27.20;c018 14.50 27.30;c087 14.40 26.30;c096 16.50 27.90;c109 11.80 17.80;c017 22.40 29.20;c106 3.70 14.20;c097 0.40 8.00;c141 0.00 6.90,28.67\r\nUMUBT,YMXV,Bedroom,6,7,Yes,\"A person is tidying a blanket on the bed.  The person then takes a broom, cleans the floor and smiles.\",bed;blanket;broom;floor,A person folds a blanket and puts it on a bed. They then begin sweeping the floor.,c075 0.00 10.50;c102 9.00 32.70;c127 11.90 32.80,33.83\r\n1PILH,2RTW,Living room,6,6,Yes,\"A person is washing the mirror on the cabinet in the study, then stands up to use the broom.\",broom;floor;mirror,\"A person is cleaning a mirror with a towel, they then get up and sweep the floor with a broom.\",c102 29.50 37.00;c095 0.00 27.50;c154 23.70 31.20;c127 29.40 37.00;c098 28.50 37.00,35.58\r\nOK2AF,KQI6,Living room,7,7,Yes,\"A person watches television. The door opens and another person walks in, then opens a cabinet.\",book;chair;door;sofa/couch;table;television,\"A person is sitting down watching television, then another person walks in through the door and takes a book out from a chair.;A person is sitting in a chair watching television. Another person opens a door and walks into the room, over to a table.\",c006 13.50 21.20;c009 25.90 31.10;c132 0.00 14.10;c132 0.00 2.80;c008 9.00 20.00;c030 23.00 30.00;c097 10.60 17.00;c123 0.00 24.20,30.96\r\n0QMGP,ZAWX,Basement (A room below the ground floor),6,7,Yes,A laughing person runs into their basement holding their laptop. They put on a table and wash their hands in the sink.,computer;doorway;hand;laptop;sink;stairs;table,\"A person walked down a flight of stairs, set a laptop computer down on a table, walked through a hallway to a bathroom and washed hands in water running from a faucet.\",c139 23.70 32.00;c047 0.00 15.60;c049 9.60 17.00;c009 9.30 17.00;c097 16.10 21.30,30.58\r\nGBZAK,25TD,Bedroom,7,7,Yes,A person working on homework opens a blanket and lays down.,blanket;book;doorknob;floor;homework;paper,\"A person is sitting on the floor and working on homework. The person then stops, yawns, puts the homework down, picks up a blanket and lays down on it.;A PERSON IS SITTING ON THE BED DOING HOMEWORK, THEY GET TIRED SO THEY GRAB A BLANKET,COVER UP, AND LAY DOWN\",c026 0.00 11.50;c145 0.00 14.50;c070 13.00 22.00;c071 15.50 24.00;c072 22.80 29.00;c115 0.00 19.50;c125 0.00 26.70;c124 24.40 29.00,28.33\r\nO8FBU,ZEM0,Laundry room,7,7,Yes,A person is getting dressed in the laundry room with clothes taken out of a box.  The person finds a blanket in the box and snuggles it.,blanket;clothes;laundry basket,The person takes a sweater from a laundry basket and puts it on. The person then snuggles with a blanket.,c072 21.30 34.00;c148 1.30 24.50;c000 4.60 16.10;c070 22.60 34.00;c073 22.30 27.40,32.75\r\nW3Y5Q,KFGP,Home Office / Study (A room in a house used for work),7,7,Yes,A person is standing in front of a light.  Then a person is leaving after picking up a bag.,bag;door;light,person standing picks up a bag and moves a chair and walks out a door,c023 9.30 15.30;c008 20.70 25.40;c097 21.80 26.80;c020 10.30 29.00,28.46\r\n9SKPI,KQI6,Other,7,7,Yes,\"One person tidies the area with a towel, putting dishes on a shelf, another grasps a blanket and watches.\",blanket;cup/glass/bottle;rag;shelf;table;towel,A person is tidying up a table then begins to tidy up a shelf. Person B then walks in holding a blanket.;someone cleaning a couple of things sitting on a table and shelf.,c081 17.00 26.00;c082 0.00 18.00;c033 25.00 38.00;c110 12.60 17.40;c012 0.00 17.60;c109 18.00 24.60,36.96\r\nFVMVY,3VLX,Laundry room,6,6,Yes,\"A person throwing clothes into the washing machine pours detergent, then sits down in a chair, and grabs a broom.\",broom;chair;clothes;cup/glass/bottle;washer,A person is putting clothes in the washer. A person then adds detergent to the clothes. A person sits in a chair while holding a broom.,c001 0.00 13.00;c098 34.60 38.00;c005 34.60 38.00;c108 34.60 38.00;c059 34.60 38.00;c151 34.60 38.00,36.54\r\nJAAVR,KFGP,Bathroom,5,7,Yes,A person wakes up on the floor in the doorway to the bathroom.  The person grabs a glass of water and a bottle of medicine from the shelf.  The person takes the medicine and then washes their face.,cup;doorway;floor;glass;medicine;shelf;sink;toilet;water,\"The person in the video gets up off the floor then washes their face in the sink;A person awakens in a bathroom. They stand and go to the sink. They take medicine and drink water, then wash their face.\",c106 22.60 30.40;c124 0.00 5.40;c154 1.40 12.30;c129 11.50 26.60;c097 8.10 13.70,39.62\r\n6ZJAL,Z68L,Recreation room / Man cave,6,7,Yes,A person sitting in a chair throws some homework across the room. The laugh and start to eat some food.,apple;bench;book;chair;floor;food;magazine;orange;sofa,\"A person walks into the room and sits on the sofa. The person picks up a book and throws it on the floor. Then the person picks up some food and begins to eat it.;The person sat down, looked at a magazine and then tossed it aside. The person picked up an orange, then picked up an apple and took a bite of the apple.\",c061 14.00 24.10;c156 25.30 34.00;c026 9.20 16.70;c031 11.70 16.20;c126 11.50 16.50;c059 7.90 17.20;c151 14.20 26.60;c123 11.20 22.40;c027 18.40 30.80;c032 15.20 27.10,33.38\r\nDVM8I,6RE8,Recreation room / Man cave,5,7,Yes,A person walking across a recreation room throws a blanket out the doorway.,blanket;closet/cabinet;door,\"A person folds a blanket, opens a door, and puts it in the closet before walking away.\",c075 0.00 13.50;c141 9.20 14.10;c006 16.40 23.10;c008 9.10 14.80;c074 13.30 18.40;c113 9.20 14.60,30.33\r\nWE2PF,Z68L,Living room,7,6,Yes,\"A person is sitting upon a sofa, unsuccessfully, grasps for the bag from their sandwich as a gust of wind from their sneeze leaves it lying on the floor near their shoes.\",bag;chair;floor;food;sandwhich;sandwich;shoes;sofa;television;tv,\"A person sits in a chair holding a bag then takes a sandwhich out of the bag and takes a bite, then sneezes while looking at the tv.;Person is sitting watching TV. Then, they take a sandwich out of a bag. While they started to try to eat it, they sneezed.\",c021 3.30 12.20;c065 9.00 22.70;c123 0.00 32.00;c153 16.60 27.40;c156 7.60 22.60;c059 0.00 32.00;c020 3.10 19.30;c020 0.00 11.60;c132 0.00 32.00;c061 2.00 32.00,30.88\r\nPSSJ8,4OHY,Dining room,7,7,No,A person is seen holding some food. They close the door and begin running towards the desk and set the food down. Turning off the light.,bowl;dish;door;food;light;table,\"This person is pacing in a room, holding a bowl, closes a door, then turns off the lights.\",c105 22.10 29.70;c061 0.00 20.60;c006 6.30 14.70;c009 15.00 20.60;c150 5.10 10.80;c118 0.00 19.70;c119 15.10 20.90,29.71\r\n9I034,ID9V,Kitchen,4,5,Yes,A person plays a video on a laptop while they cook something on the stove.,food;stove,A person is cooking food on the stove.,c147 0.00 25.60,26.33\r\n7E6AB,R8JJ,Kitchen,6,6,Yes,A person was walking towards the refrigerator.  They opened the door and smiled at what they saw.  They grabbed their food and closed the refrigerator door.,food;refrigerator,A person walks to a refrigerator and opens it. The person looks inside the refrigerator and smiles. The person grabs some food and closes the refrigerator door.,c063 8.00 13.90;c143 0.70 6.50;c152 4.60 10.90;c142 10.50 17.00,15.88\r\n4FAWP,FNK4,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person smiles as they wash the surface of their desk. The person, when finished, takes a picture of their work.\",chair;desk;phone;picture;spray;table;towel,\"A person is tidying up the desk. The person sprays the desk and wipes it down with a paper towel. The person takes a photo with a phone of their cleanliness work.;A person takes a towel and wipes a desk. They put it on the chair, then take a picture of the desk.\",c012 0.00 26.80;c038 0.00 24.30;c087 19.50 32.00;c013 5.40 22.00;c018 21.10 25.70;c009 9.00 14.20;c015 20.00 32.00,30.96\r\nX5E6E,OUKK,Laundry room,6,7,Yes,\"One person runs in drinking coffee, throws a book in a bag, closes it and leaves.\",bag;book;coffee;cup;towel,A person is drinking a cup of coffee then putting a book in a bag then walking away.,c106 5.70 11.50;c028 10.60 27.00;c037 8.50 27.00;c026 10.60 27.00;c021 10.60 27.00;c020 8.10 25.20;c030 9.70 15.90;c023 7.70 13.00,25.83\r\nR00L7,F3YX,Kitchen,5,5,Yes,Person is in the kitchen cooking on the stove. They are smiling as they look over and turn the page of a cook book.,book;food;knife;pan;stove,\"A person is in the kitchen dicing food and placing it in a pan.  That same person stops, looks at a recipe book and continues cutting.\",c032 15.30 24.70;c147 0.00 31.00;c029 13.00 20.60;c062 3.60 8.80;c152 0.00 31.00,30.21\r\nLXJ86,P6LJ,Living room,6,6,Yes,\"After opening the curtain, a person is standing by the window with a book taken from a cabinet.\",blinds;book;window,person picks up book and opens blinds,c090 15.60 40.00;c028 38.50 45.00;c092 26.20 41.10;c026 1.60 45.00;c030 38.20 45.00,44.42\r\nEAWW4,PO5L,Laundry room,4,5,Yes,\"A person opens a laundry room door, walks in, puts shoes on a shelf, and leaves.\",closet/cabinet;clothes;door;shelf;shoe,A person grabs laundry detergent off the table then places it on the shelf above the washer.,c008 3.00 9.40;c081 7.60 15.00;c054 7.00 14.70;c113 2.50 9.30;c056 0.00 4.90,18.12\r\nKLZN8,XXN8,Kitchen,4,3,Yes,\"A person sits in a chair, working on a camera.\",camera;chair;phone,A person is playing with their phone and taking pictures while sitting on a chair.,c059 0.00 27.80;c015 0.00 28.20;c016 0.00 28.40,30.25\r\nWWL0M,4OHY,Bathroom,6,6,Yes,A person is drinking some water while lying on the closet floor. Then they use their phone to shine a light on the wall.,cup/glass/bottle;floor;light;phone;wall;water,\"This person is sitting in the bathroom drinking a soda, then shining a light on the wall.\",c125 0.00 30.00;c015 8.80 30.00;c104 10.70 30.00;c106 0.00 6.70,29.17\r\nEBHC9,P6LJ,Living room,5,4,Yes,A person holds a throw pillow under one arm and proceeds to pick up a stack of dishes from a table and leaves the hallway.,dish;pillow;table,A person holding a pillow walks into the room.  They tidy up a table by picking up a dish and then they leave the room.,c012 4.00 19.90;c076 0.00 12.80;c118 11.70 21.10;c120 11.10 20.20;c119 14.00 20.20,29.08\r\nQY75H,Z68L,Kitchen,7,7,Yes,\"A person is fixing a laptop, then pouring a drink and eating a sandwich in a kitchen.\",coffee pot;cup;dish;laptop;sandwich;stove,The person places the laptop on the stove while eating a sandwich then proceeds to pour a cup of coffee and have a drink.;A person moves a laptop and turns pours some water in to a cup.The person takes a bite of a sandwich and get a drink of water .,c067 0.00 21.60;c048 0.90 12.30;c052 1.10 14.50;c106 24.10 32.20;c108 9.80 21.90;c047 1.30 6.50;c049 1.30 8.50;c107 24.40 29.50;c051 0.00 8.90;c120 10.90 20.40;c118 25.10 30.70;c110 23.80 30.70;c109 23.20 31.70,34.29\r\n08KKF,XXN8,Living room,4,5,Yes,\"One person sits with coffee at a sofa as another lies on the sofa, throwing something in an act of play.\",coffee;cup/glass/bottle;pillow;sofa;something,A man ina red shirt is sitting on a couch when a woman lays down on his legs and then a small dog jumps up on her back.,c122 0.00 6.70;c076 0.00 36.00;c107 0.00 36.00,34.67\r\nUEP20,LTAC,Living room,4,5,Yes,A person runs into the closet holding an open book in their hand.  The person closes the book and puts it on the shelf next to a picture.  The person picks up a sandwich from the shelf and begins to eat it.,bed;book;closet;doorway;food;hand;paper;sandwich;shelf;wardrobe,\"Person walks into room with notebook in hand , puts notebook away and begins to eat a sandwich.;a person putting some papers on a shelf and eating something\",c065 18.70 28.70;c069 17.90 22.70;c026 0.00 15.60;c113 11.80 18.60;c067 19.10 32.00;c081 11.60 19.20;c028 11.80 19.80;c156 16.40 31.40;c116 12.60 21.60;c134 14.60 23.10;c032 4.60 15.60;c112 18.70 25.00;c097 0.00 5.70;c027 4.10 14.40;c025 10.30 15.60,30.58\r\nIR31O,FNK4,Living room,7,7,Yes,A person is opening a book and taking a sip from a glass.,book;couch;cup;glass;lamp;sofa;table;woman,A woman sitting with a book and grabbing a glass and taking a drink.;A person is sitting down on the sofa reading a book and drinking a glass of water.,c106 5.60 12.90;c026 0.00 32.00;c027 1.30 7.70;c032 0.00 32.00;c123 0.00 32.00,30.96\r\nFD9A5,BYF9,Kitchen,6,6,Yes,A person is pouring coffee into a mug and rolls their sleeves up.  The person then drinks the coffee and proceeds to wash the dishes.,coffee;cup;table,A person pours coffee into a cup and takes a drink before walking over to a sink with the cup.,c106 30.80 37.20;c107 29.40 45.00;c108 12.20 19.00;c110 37.30 45.00;c009 14.60 21.40,43.58\r\nTBXFO,D0RU,Living room,7,6,Yes,Person A steps into his living room and takes off shoes after a long day.  He stands there for a moment just to soak in the freedom.  He sees a sandwich and a jug of juice on the table.  He pours himself a drink and prepares to have his snack.,door;food;glass;hall;light;man;plate;sandwich;shoe;soda;table,A person walks through a door way and then takes off some shoes next to a table. The person turns on the light. The person pours a drink into a glass and begins to eat a sandwich.;someone walking in a doorway and taking off their shoes and getting a drink of soda.,c067 51.80 58.00;c104 30.80 41.10;c057 15.50 24.10;c097 7.10 16.70;c108 40.70 48.40;c008 9.30 15.30;c107 38.20 50.70;c106 47.80 54.40;c063 51.80 57.20;c109 38.50 43.90;c009 38.50 44.20;c069 52.90 58.00,56.58\r\nGIKHC,DXDI,Home Office / Study (A room in a house used for work),6,7,Yes,A person sneezing person is standing in their study holding a pillow and a pile of dishes.,dish;pillow,A person sneezes while holding a pillow and some dishes.,c118 0.00 27.00;c076 0.00 27.00;c153 11.80 17.90,25.54\r\nJMCRT,ID9V,Kitchen,6,6,Yes,A person is putting some food into a pot on the stove. The person adds some spices and laughs. They stop cooking and pick up a phone and start talking.,cabinet;food;phone/camera;shelf;stove,A person is cooking on a stove stirring a pot they take some spices out of the cabinet and put them in the pot then they talk on their phone.;A person is cooking food on the stove they then open the cabinet and take out a spide to put on the pot.,c147 0.00 7.30;c112 3.90 18.10;c113 0.00 8.60;c019 19.30 29.30;c081 8.50 12.80,29.25\r\nP5ANU,HR43,Home Office / Study (A room in a house used for work),4,7,Yes,A person is sneezing by the television after pouring a cup of coffee,cup;dish;table;television,A person is pouring their coffee into a coffee cup they are sneezing and watching tv,c108 20.90 27.10;c153 8.80 28.30;c108 0.80 11.20;c132 0.00 29.00;c118 0.00 28.60;c009 23.80 29.00,28.33\r\n2Z60J,3H6W,Kitchen,6,7,Yes,A person is playing with a picture they found on a table in their kitchen. They are grasping onto the picture very firmly as they hold it up to the light so that they can see the picture more clearly.,chair;light;picture;table,\"A person attempts to fix a picture while sitting in a chair.;A person walks in and sits in a chair at a table, then picks up a picture frame  from the table, plays with it, and then looks up toward a light before walking away.\",c011 3.30 22.90;c084 2.20 23.40;c151 1.60 8.00;c059 3.80 23.20;c154 18.20 23.10,24.46\r\n5S1SL,UTMU,Garage,6,7,Yes,\"A person is working on a fixing the hinges on their garage window. They pick up a toolbox from atop a shelf and open it. As they continue working, they sneeze.\",box;shelf;table;tool;window,A person puts something on a shelf and uses a tool to fix a window.,c009 8.10 16.30;c081 1.10 11.40;c041 10.80 17.90,31.42\r\n5X5DT,BYF9,Hallway,7,7,Yes,\"A person works on their laptop, picks up a bag sitting next to them, and snuggles it.\",bag;chair;floor;hallway;laptop,\"A person is sitting on a chair in a hallway working on a computer with a luggage bag next to them. They grab the luggage bag and close the laptop.;A person sits on a chair in the hallway, next to a bag, holding a laptop on their lap. The person types on their laptop, picks up the bag from the floor, closes the laptop, and hugs the bag.\",c046 10.60 23.80;c047 0.00 11.80;c051 0.00 12.10;c020 9.30 19.50;c023 14.20 19.50;c059 0.00 30.00;c022 14.60 30.00,28.79\r\nS4D1O,ZAWX,Recreation room / Man cave,7,7,Yes,A person is in a recreation room/man cave looking in a mirror next to the window when they sneeze and then laugh.,hair;mirror;window,\"A person rubs their face and hair in front of a mirror, then sits down and looks out the window.\",c092 17.10 24.00;c096 0.00 14.90;c144 0.00 3.20;c144 2.70 10.90,30.58\r\nY6R7T,2RTW,Hallway,6,6,Yes,\"A person walks down the hall, grasping a bottle of water and a glass. The person pours some water into the glass, then takes out their phone.\",bottle;cup;doorway;glass;phone,a person is holding a bottle of water and pouring it into a glass. A person then begins to play on a phone.;The person leaves the room and pours water into a glass. They then start playing on their phone.,c015 21.30 30.00;c016 20.80 30.00;c107 3.30 30.00;c108 7.30 17.30;c097 3.00 10.30,29.42\r\nUQ93G,2RTW,Hallway,6,6,Yes,A person holding pajamas turns on a light and undresses in front of a mirror in the hallway. The person turns the doorknob and walks into a bedroom.,clothes;door;mirror,\"A person steps into a hallway in front of a mirror, removes their pants and folds them before opening a door and walking into a bedroom.\",c141 21.50 30.00;c096 3.80 24.70;c155 4.00 24.70;c154 1.00 30.00;c008 21.20 30.00;c001 22.50 30.00;c000 9.00 30.00;c002 9.00 14.20;c004 13.30 24.40;c097 22.70 28.90,29.00\r\n4KOBZ,M80J,Bedroom,5,6,Yes,\"A person sits in front of the mirror, eating a sandwich and drinking a glass of water.\",chair;cup;food;glass;sandwich;table;television;water,A person is sitting down eating a sandwich.  The person then grabs a glass of water and takes a sip out of it.,c106 13.70 24.00;c065 0.00 6.50;c156 0.00 6.00;c109 20.40 25.80;c110 12.50 17.30;c059 0.00 31.00;c132 0.00 31.00;c009 21.50 26.70;c061 0.00 31.00,29.88\r\nBVS2Z,2RTW,Garage,6,6,Yes,A person is holding a table and sneezing on a light.,hand;light;table;television,A person is standing in front of a light and sneezing.;A person i standing at a table holding a light.  The person then sneezes and covers their mouth.;A person standing in a garage next to a light is sneezing.  There is a television in the background.,c153 0.00 6.00,27.71\r\n92NRK,QB52,Home Office / Study (A room in a house used for work),7,7,Yes,A person is eating food and then snuggling with a towel in a recreation room / man cave.,blanket;chair;food;television;towel,\"A person sits in a chair, cuddling with a blanket and eating.;A person is sitting in a chair, snuggling with a towel.  The person is also eating some food.\",c033 0.00 31.00;c063 2.10 7.20;c156 3.20 31.00;c059 0.00 31.00;c132 0.00 31.00;c070 0.00 31.00,30.42\r\nJYBGS,YA10,Hallway,7,7,Yes,\"One person walks into the hall with a pillow and a pair of shoes in hand, then runs toward the doorway.\",doorway;pillow;shoe,\"A person walks into a hallway holding a pillow, and shoes. The person then runs out of the hallway.\",c076 2.50 9.10;c078 3.10 9.20;c097 1.40 7.80;c053 1.50 7.70;c150 6.40 13.30,19.46\r\nI005F,ZSRZ,Kitchen,6,7,Yes,A person is cooking at the stove. The open the refrigerator and pull out a dish of food. They set the food and take a bite.,food;pot;refrigerator;stove,\"Person in the kitchen cooking something at the stove, turns down the heat, and then goes to the refrigerator to get some food to eat.\",c061 9.10 15.40;c143 5.00 13.10;c147 0.00 9.60;c156 12.20 18.20;c062 0.00 10.00;c063 5.80 15.00,18.12\r\nI329H,KFGP,Living room,5,6,Yes,\"A person is standing in the living room, holding a bag of food. The person removes a food item and begins eating it.\",bag;box;food;something,A person takes a box of food out of a bag and eats from the box of food;A person is taking a box of food out of a bag and eating the food from the box.,c061 4.70 38.00;c062 5.20 38.00;c063 5.40 38.00;c020 0.00 38.00;c021 0.00 8.90;c156 6.50 38.00;c044 5.80 38.00,37.00\r\nCWMSY,0KZ7,Bedroom,6,6,Yes,Person is tidying up bed fixing blanket and pillow. Another person is playing with shoes.,bed;blanket;pillow;shoe,A person is making a bed while another person is smacking a pair of shoes together.,c075 12.40 33.00;c077 0.00 11.00;c053 0.00 33.00;c076 30.10 33.00;c079 30.10 33.00;c070 29.90 33.00,32.00\r\n583F7,UTMU,Living room,5,7,Yes,\"A person walks into the living room with a bag of groceries. The person removes a salad from the grocery bag, sits down in a chair and begins eating.\",bag;chair;food;groceries;table,\"a person entered the room, set down a bag. the person then opened the bag, took a food item out, opened it and began eating the food.;There is a person carrying a bag of groceries over to a table.  That person then sits in a chair, takes a bag of chips out and starts eating.\",c021 10.10 21.90;c020 0.00 36.00;c156 13.60 36.00;c063 0.00 11.70;c020 0.00 10.00;c023 0.00 10.30;c059 9.60 36.00;c151 7.40 13.60;c061 8.20 36.00;c130 0.00 36.00;c009 0.00 36.00;c011 8.90 36.00,34.62\r\nY4X8J,0EUL,Living room,4,7,Yes,A person is lying on the sofa doing homework while looking at their phone. The person gets up and walks over to the window and opens it.,homework;paper;phone;sofa;window,A person is reclining on a couch while writing in a notebook of some kind and looking at a phone.  They stop writing and get up and walk to a window and pull the window open.,c015 1.70 8.80;c145 0.00 22.90;c090 23.20 31.80;c122 0.00 24.20;c154 20.50 27.10,31.71\r\n081WM,LTAC,Laundry room,6,7,Yes,\"A person is opening a laptop in the laundry room.  Then, the person starts watching a video with their cup of coffee.\",coffee;cup;glass;laptop;picture;video,A person is standing up while working on a laptop. They pick up a cup sitting next to the laptop and begin drinking it.,c106 15.60 31.00;c051 3.80 31.00;c052 3.60 31.00;c088 0.60 31.00,30.29\r\n3TV9E,WG9D,Kitchen,5,7,Yes,A person in the kitchen is sneezing while doing the dishes. The start smiling and drink a cup of coffee.,coffee;cup;dish;sink,\"A person standing in a kitchen and sneezing while washing dishes, then the person picks up a cup of coffee and drinks.;A person is ding dishes they sneeze several times and then they drink their coffee.\",c119 0.00 10.20;c153 2.00 7.40;c106 6.60 11.00;c110 3.10 8.70;c107 3.90 11.00;c118 0.00 9.50;c121 0.00 8.00;c120 0.40 9.90,10.12\r\nZCPG6,I4RP,Living room,6,6,Yes,\"One person is watching video on a laptop, while another is sitting at a desk doing homework.\",chair;desk;homework;laptop;paper;table;video,A person sits at a table watching a video on a laptop.  Another person sits at a desk doing some homework.,c145 3.30 15.00;c051 0.00 7.40;c011 0.00 15.00;c052 0.00 7.20;c059 3.30 15.00;c014 0.00 7.70;c010 0.00 7.90,14.25\r\n417RA,CO1W,Bedroom,5,7,Yes,Person is awakening then is sitting on bed looking at vacuum cleaner and drinking coffee.,bed;coffee;cup,\"A person awakens on a bed and sits up . They put on glasses, and drink from a coffee cup.\",c134 0.00 10.70;c135 8.30 31.00;c106 15.90 31.00;c107 16.40 31.00;c146 0.00 11.40;c110 15.00 21.30;c133 1.60 13.20,30.29\r\nDBN7R,YMXV,Bedroom,7,7,Yes,A person in the bedroom is putting some clothes into their wardrobe. They are talking on their phone while smiling because the conversation they are having is humorous.,bed;clothes;phone;wardrobe,\"A person is sitting on the bed talking on their phone, they pick up some clothes and put them on a shelf then they lie down while still talking on the phone.;The person is talking on the phone while hanging clothes up.\",c001 3.10 26.20;c019 0.00 32.00;c152 0.00 4.20;c134 25.10 31.10;c135 0.00 27.90,30.71\r\nD9V53,ID9V,Entryway (A hall that is generally located at the entrance of a house),2,6,Yes,\"The person in the entryway is drinking a cup of coffee, while sitting in a chair in front of the door.\",chair;cup;doorway;drink,A person is sitting in a hair drinking.,c106 4.10 10.20;c059 1.50 28.20;c107 1.10 30.00;c097 25.00 30.00;c151 0.20 5.80,29.17\r\nVKXLL,P6LJ,Entryway (A hall that is generally located at the entrance of a house),4,5,Yes,\"One person is propped on a pillow, working on homework while holding a laptop with a glass of soda nearby.\",box;dish;floor;glass;hair;homework;paper;pillow,\"A person in bedroom walks over and sits on pillow, grabs a glass and opens a box and looks inside and reads some homework.\",c115 31.20 66.60;c117 36.80 65.60;c151 3.90 13.50;c125 8.80 68.40;c116 28.40 36.20;c116 44.50 50.60;c116 51.40 57.90;c041 22.10 28.60;c119 16.90 21.90;c077 3.20 10.00;c040 1.50 6.20;c154 64.00 69.40;c043 1.50 6.20;c144 26.30 32.00,69.83\r\n8XXZZ,UTMU,Garage,5,7,Yes,\"A person is running around in the garage. They begin putting on their shoes, and take out their phone and start waving it around.\",phone;shoe,A person runs around a room and then puts shoes on and then waves a phone around in the air.,c055 5.50 17.10;c016 15.20 29.00;c150 0.00 9.50;c015 14.20 30.20;c018 13.70 20.90,29.92\r\nKU25F,XXN8,Bedroom,5,6,Yes,A person is standing next to a pillow grasping a phone tightly.,phone;pillow,A person is holding phone to their ear while holding a pillow up in the air.,c076 0.00 31.00;c015 0.00 31.00;c017 0.00 29.00,30.21\r\nM1SRW,ZAWX,Living room,7,7,Yes,\"A person is seen watching something on their camera. They begin holding their camera looking at it oddly, they then set it on the table.\",camera;phone;table,A person is looking at a camera.  Then they put the camera on a table.,c015 0.00 27.10;c017 21.10 27.10;c009 22.50 27.10;c016 0.00 25.40,30.75\r\nUFVO8,OUKK,Closet / Walk-in closet / Spear closet,5,7,Yes,A person opens a door and throws a broom in a closet with clothes inside.,broom;closet/cabinet;clothes;door,\"Person wearing a plaid pants, walked over to closet with broom and dustpan, then put it in the closet. Person then closed the door and walks away.\",c006 7.60 13.20;c008 3.00 9.80;c098 0.00 10.80;c099 5.40 11.00;c113 3.20 10.90;c112 7.60 13.90,15.62\r\nMZAN6,D0RU,Bathroom,7,7,Yes,A person is standing in the bathroom fixing their hair.  The person turns off the light and runs out of the room and closes the door.,door;hair;light;mirror,\"A person is fixing their hair. They exit the room and turn off the light.;This person checks his hair in a mirror in the bathroom, then leaves.\",c006 16.50 23.30;c008 12.80 18.40;c105 16.00 20.90;c144 0.00 12.60;c097 13.90 20.10;c096 5.90 14.10,31.50\r\nUSM36,YMXV,Bedroom,6,7,Yes,A person is opening a laptop while another person is drinking medicine.,bed;bottle;chair;desk;laptop;medicine;table;water,\"AT THE BEGINNING THERE IS A PERSON SITTING AT A DESK, THEN SHOWS A DIFFERENT PERSON SITTING ON A BED TAKING A DRINK OF WATER AND SOME KIND OD MEDICATION;a person sitting and opening a laptop and someone else drinking some wayer\",c129 0.20 5.20;c048 0.00 2.60;c106 0.80 5.20;c135 10.10 34.00;c051 3.00 13.80;c014 6.00 14.30;c052 5.30 11.60;c011 0.00 14.10,32.88\r\nGOWDG,JVLO,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"One person opens the door, smiles, then puts a broom next to a shelf.\",broom;door;floor;shelf,A person is opening a door. A person then takes a broom and puts the broom away.,c081 2.80 9.60;c098 0.00 12.10;c099 8.60 20.40;c008 0.00 6.50;c152 12.00 25.80;c127 10.90 19.20;c097 2.70 13.80;c149 9.10 16.50;c141 1.90 8.80,31.92\r\nMPFSX,KQI6,Bathroom,5,7,Yes,\"A person is standing in the living room, washing their hands with hand sanitizer. Another person walks through the doorway and hits the first person with a pillow.\",chair;doorway;hand;pillow,A person gets off a sofa and puts lotion on their hand and another person comes through a doorway with a pillow.,c097 24.80 31.30;c139 9.00 32.00;c076 24.80 32.00;c154 0.00 4.60;c059 0.00 3.20,30.96\r\n1BVUA,Z68L,Bedroom,6,7,Yes,\"A smiling person awakens with a towel under their head, then stares at the picture on the wall.\",bed;picture;wall,\"A person is lying on the bed, and awakes.;The person wakes up in bed then stares at something on the wall.\",c088 14.20 30.10;c146 27.10 31.00;c134 0.00 31.00;c154 26.70 31.00;c133 5.80 18.40,29.96\r\nJDDD8,L4ZP,Kitchen,5,6,Yes,\"A person gently throws some food into the pantry. They stand on a chair to see the top shelf, laugh, and then get down.\",chair;closet/cabinet;food;man;shelf;table,a man putting things on a shelf while standing on a chair.;A person is tidying up in a kitchen they put things in a cabinet then they stand on a chair and look into the cabinet.,c060 11.80 24.00;c063 0.50 7.50;c062 10.00 14.40;c012 0.00 7.50;c114 7.30 24.00;c061 0.20 11.70;c081 5.50 11.80;c064 6.80 11.80,22.58\r\n6IIV9,HR43,Bathroom,6,7,Yes,\"A person grasping a blanket looks in the mirror, laughing.\",blanket;clothes;man;mirror,a man laughing and looking into a mirror holding a blanket.;A person standing in a bathroom holding a blanket and smiling while looking into a mirror.,c070 0.00 35.00;c072 0.00 35.00;c094 0.00 35.00;c096 0.00 35.00;c149 0.00 35.00;c152 0.00 35.00;c000 0.00 35.00,33.88\r\nV9RT3,AC0W,Home Office / Study (A room in a house used for work),6,6,Yes,A person puts a phone on a chair and walks out of the room.,chair;laptop;phone;table,\"a person sits in a chair and looks at their laptop and plays with their phone;A person is sitting at a table using a laptop. They talk on their phone, then leave.\",c019 0.00 2.90;c059 0.00 18.50;c154 14.80 20.10;c052 0.00 17.70;c011 0.00 17.70;c015 0.00 14.80;c017 17.00 21.50;c014 0.00 18.80,29.12\r\nQ3XBQ,3H6W,Dining room,6,7,Yes,A person is sneezing while doing homework.  Then a person is moving clothes to make room to pour a drink into a cup.,blanket;clothes;cup;glass;homework;paper;table,\"A person is sitting at a table doing their homework. A person then begins to cough. A person throws a blanket on the floor, and pours themselves a glass of water to drink\",c145 2.10 19.30;c107 20.40 31.10;c001 16.10 21.80;c153 8.30 16.90;c151 0.00 6.60;c106 3.10 11.70;c108 11.90 22.70;c003 18.20 31.90;c154 8.40 21.00;c074 12.90 30.00;c110 19.00 24.90;c011 1.80 31.10;c109 24.50 30.40;c012 16.10 21.50;c009 25.00 30.00;c014 1.20 12.60,34.17\r\nQJK25,P6LJ,Entryway (A hall that is generally located at the entrance of a house),4,4,Yes,A person is undressing in the doorway. A person is watching their through the lens of their camera.,camera;clothes;doorway;ohone;shirt,\"This person adjusts a camera, goes to a doorway, takes off a sweater, looks at herself using her phone, and returns to the camera.;This person moves something on to a desk, opens the door, takes off shirt, then closes the door.\",,54.25\r\n1BPX5,4I61,Hallway,6,7,Yes,\"A person is lying on a pillow, then snuggling with a towel in a hallway.\",blanket;floor;pillow;towel,A person is sleeping on the floor with their head on a pillow. They sit up with a towel and start snuggling it.,c033 5.10 34.00;c076 28.50 34.00;c072 19.10 26.70;c078 25.40 32.80;c124 1.20 24.50,33.00\r\nUNQD7,YMXV,Bedroom,4,6,Yes,A person is fixing a doorknob and another person is putting down a box.,box;closet/cabinet;door;lock;wardrobe,A person closes a wardrobe door. Another person is holding a box and places it on the floor.;someone shutting and locking a door from the inside,c040 21.50 33.00;c112 0.30 6.50;c006 0.30 7.60,31.96\r\nLURSW,WG9D,Kitchen,5,3,Yes,\"A person is holding a glass of water. After taking a long drink, the person puts the glass down on a shelf and walks through a doorway.\",cup;glass,A person takes a drink from a glass.,c106 0.00 10.00;c107 0.00 10.00,9.29\r\nQ8UJ8,8718,Kitchen,7,7,Yes,\"A person opens a bag which sits on the table. The person removes a bottled beverage, from which they begin drinking.\",bag;chair;cup;glass;table,A person sits down in a chair. This person takes a drink out of a bag on a table and starts to drink. They pause before taking a second drink.,c106 8.30 19.30;c011 0.60 30.00;c021 0.90 5.90;c151 0.00 3.20;c059 0.00 30.00,29.00\r\n0Z57Y,JVLO,Other,5,7,Yes,A person is standing in the doorway looking around the room.  The person runs to the corner to pick up a broom and brushes dust off of the window.,broom;closet;doorway;window,\"A person is standing near a refrigerator looking around. They grab a broom, and sweep a window.\",c098 16.90 33.00;c102 21.70 33.00;c097 14.50 20.90;c092 22.20 33.00,32.00\r\nQ6ZD9,3VLX,Closet / Walk-in closet / Spear closet,6,5,Yes,A person is tidying the clothes from the closet doorway. The person looks at the light and begins sneezing.,closet/cabinet;clothes;doorway,A person hangs clothes in the closet and straightens things on a shelf.  The person sneezes and then leaves the closet.,c000 1.60 17.80;c001 1.60 17.80;c004 10.60 17.80;c153 16.30 23.20;c114 2.00 24.70,28.38\r\nU386F,KQI6,Bedroom,5,7,Yes,A person awakens in bed and then sneezes. Another person in bed has been watching TV but turns it off to answer the phone.,bed;phone;televions;television;tv,Two people are on a bed watching TV. One is sitting and one is lying down. The person lying down sneezes and the person sitting up picks up a cell phone and starts talking.;There is a person sitting on a bed watching television.  That same person picks up a phone.  There is another person laying down who sits up and sneezes.,c015 9.10 32.00;c134 0.00 32.00;c019 12.40 32.00;c135 0.00 32.00;c153 6.00 13.50;c132 0.00 32.00;c018 7.70 12.90,31.17\r\nE67EF,5LWB,Hallway,7,7,Yes,A person walks over to the window sill and retrieves a box. The person opens the box and laughs.,box;window,A person walks over to a window and picks up a box and starts looking through the contents of the box.,c044 10.20 19.60,20.58\r\n7BL9D,D0RU,Kitchen,3,4,Yes,A person is eating a sandwich and then tidying food packages on a shelf in the pantry.,cabinet;dishes;food;plate;sandwich;shelf,\"A person walks to pantry while eating a sandwich from a plate they are holding in their hand and reaches for some food on a shelf.;A person walks up to a cabinet while eating something, they move things around on the cabinet.\",c065 4.20 11.50;c067 6.10 11.20;c061 6.10 11.20;c082 10.60 32.00;c156 4.20 11.50,31.04\r\n43OXO,6NQX,Living room,6,7,Yes,\"A person is lying on the sofa. They sit up, and grab a pile of dirty dishes on a table nearby, and begin to tidy the area.\",book;box;dish;soda;sofa;table;towel,\"A person is laying on a couch then sit up and tidy up a table by removing the dishes.;A person awakens and sits up on the couch. This person places a plate onto another plate and places a bowl on top. This person then closes a notebook, moves an ink pen, puts a small box on top of the notebook and folds a towel and places it to one side.  The person then picks up the plates and stands up with them.\",c122 2.60 25.00;c118 19.90 25.00;c009 13.00 20.00;c012 4.40 24.70;c120 19.80 25.00;c123 2.20 7.90;c119 3.90 11.50;c011 2.20 7.90;c154 20.20 25.00;c037 11.30 20.50;c146 0.00 4.70;c116 6.90 15.10;c028 6.90 15.10,24.54\r\nSOR8E,T7C3,Kitchen,7,7,Yes,\"A person walks in, holding some groceries, they open the door of the refrigerator.  They almost drop the groceries, and laugh at themselves.\",bag;door;groceries;refrigerator,A person is walking to the refrigerator and begins to open it while carrying a grocery bag;A person carries a bag over to the refrigerator and opens and closes the refrigerator door.,c020 0.00 29.00;c149 5.60 29.00;c142 4.60 10.60;c143 1.30 7.40;c020 0.00 7.70;c152 17.70 28.90;c130 3.40 29.00,27.67\r\nBWHUX,L4ZP,Living room,6,7,Yes,\"A person is walking through the living room and laughing at their phone, they bump into the table.\",doorway;phone;table,A person is walking and laughing while looking at a phone. He puts something on a table next to dishes.,c009 4.70 10.10;c015 0.00 16.00;c149 0.00 9.20;c097 11.70 16.00;c016 0.00 16.00,14.62\r\nV45U8,D0RU,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is standing in the study, fixing a desk drawer that holds shoes and a towel.\",desk;drawe;paper/notebook;shoe;table,\"The person is writing in a book on a desk. The person tries to close the desk drawer, but there is a shoe stuck in it. The person takes the shoe out of the drawer.\",c014 0.00 33.00;c056 27.60 33.00;c053 28.40 33.00;c145 13.40 18.20;c054 19.00 24.60,31.79\r\n88TCK,4OHY,Garage,6,4,Yes,\"A person in their garage is fixing their clothes because they look a bit messy. Afterwards, they start eating some fruit that they find in a glass.\",clothes;food;table,There is a person standing up folding up clothes.  That same person walks over to a table and starts eating something that is sitting on it.;A person is folding clothes they put them on a chair and go over to get some food out of a glass and eat it.,c156 24.70 32.00;c063 25.20 32.00;c004 0.00 25.60;c002 3.00 25.30;c009 25.70 32.00;c000 3.00 25.30;c001 3.00 25.30,31.33\r\nWZCPT,PO5L,Kitchen,5,6,Yes,\"A person walks in the kitchen they walked to the refrigerator and open the door they take out some food holding it tightly, they walked to the stove and place it on the stove to prepare to start cooking.\",food;refrigerator;stove,The person walked quickly towards the refrigerator.  The person pulled an item out of the refrigerator and placed it on the stovetop and then walked off.,c062 14.50 21.00;c143 3.40 10.50;c063 11.60 18.50;c142 10.40 18.20,30.12\r\nG70CT,YMXV,Bathroom,3,5,Yes,\"A person turns on the light in a bathroom and place their phone on a counter. They tidy up the bathroom, take their phone and leave.\",broom;doorway;floor;light;phone;table,\"A person turns on a light, cleans a floor, then goes to grab a phone from a table\",c104 0.00 3.50;c015 20.50 32.00;c097 2.90 8.90;c098 0.00 18.10;c102 3.70 14.30;c127 4.10 14.60,30.58\r\n9WE7L,YMXV,Stairs,3,3,Yes,A person is sitting on the stairs with a broom in their hand while sneezing into a box.,broom;bucket;floor,\"a person holding a bucket and a broom, sweeping the steps.\",c098 0.00 32.00;c102 14.70 29.30;c151 2.10 10.10;c154 10.90 19.80;c127 15.00 24.10,31.12\r\nSOTQ1,D0RU,Basement (A room below the ground floor),6,3,No,\"A person stands on a pillow in the hallway, A person laughs while doing homework in the hallway.\",book;homework;paper;pillow;table,\"A person steps back and forth on a pillow while looking at another person, sitting on a table and working on homework.;One person is standing on something and moving his feet up and down.  The other person is sitting cross legged on a table apparently doing homework.\",c115 6.50 33.00;c032 5.60 18.70;c152 18.80 25.20;c149 25.90 31.30,31.50\r\n8V9OD,T7C3,Pantry,5,7,Yes,\"A person walks into the pantry, grasping a blanket. The person looks into a mirror and smiles.\",blanket;mirror,\"Person walking into kitchen through doorway looking at self in a hand mirror, and then begins to start stroking the blanket on shoulder.\",c094 0.00 8.40;c070 0.00 8.00;c152 0.70 15.00;c093 0.00 23.00;c096 0.00 23.00;c072 0.00 23.00,22.38\r\n3VRTT,0KZ7,Hallway,7,5,Yes,A person is taking a phone and blanket and running away.,blanket;doorway,\"Person picking up a blanket off the floor in the hallway, wraps it up, and the carries it into another room.\",c070 0.20 11.90;c075 0.00 9.80;c097 6.40 11.00;c071 4.40 12.50;c150 5.90 12.00;c073 5.70 11.80,15.79\r\nF9YMU,YMXV,Bedroom,4,5,Yes,A person closes a door in a room and walks over to a desk and takes a seat. They fix some papers and pens laying around.,bed;book;chair;door;laptop;paper;table,\"A person is closing the door, then sits down in a chair and begins to look through a book. The person then grabs a sheet of paper from off of the bed.;A person stands by a doorway with their hand on the door. They close the door and sit down in a chair. They pick up some papers off of the bed and look at them, then they put the papers back on the bed.\",c006 0.00 9.10;c011 9.30 32.00;c059 8.10 32.00;c117 11.90 16.50;c051 8.10 14.10;c151 10.10 15.50;c115 12.50 30.90,30.88\r\n7QH3I,KQI6,Living room,6,5,Yes,\"One person runs through the hall holding dishes with food, while another is watching and laughing while on the phone.\",bowl;dish;phone;sofa/couch,A person is holding a bowl and some dishes and walks through the room. A second person is sitting on the couch and talking on the phone.,c015 9.70 32.00;c149 25.20 31.10;c019 17.30 32.00;c120 0.00 20.00;c118 0.00 18.30;c123 7.60 19.10;c018 17.00 32.00,31.08\r\n4DY90,4OHY,Bedroom,6,6,Yes,A person is holding a broom in the doorway of a pantry. They are taking a wet towel and wiping it on the floor.,broom;doorway;floor;towel,\"This person walks into a bedroom carrying a broom, then begins to wipe down the floor with a cloth.\",c097 0.00 6.90;c038 13.50 31.00;c127 14.10 31.00;c151 10.70 23.60,29.50\r\nP9B13,XXN8,Home Office / Study (A room in a house used for work),5,5,Yes,A person is opening a box while lying on the floor. They take out homework from the box.,box;floor;homework;paper,\"A person is sitting, writing in a notebook.\",c145 1.70 34.00;c125 0.00 34.00;c117 18.00 32.00,32.96\r\nXZ9C0,XXN8,Bedroom,3,5,Yes,A person awakens on a couch. The person stands and grabs a bag from the table and a laptop before leaving.,bag;bed;laptop;sofa;table,The person gets out of a bed and grabs her purse and laptop and walks away.,c122 0.00 10.30;c050 13.90 22.60;c023 8.70 14.90;c154 5.40 12.70;c047 14.50 23.10;c134 0.00 8.70;c133 0.00 8.50,29.62\r\n2UXXB,D0RU,Laundry room,7,7,Yes,The person is grasping a pillow and then sitting in front of a laptop in the laundry room.,chair;laptop;pillow,\"a person pulling up a chair, sitting down at a computer to work;someone holding a pillow and sitting down in a chair in front of a laptop\",c052 15.30 32.00;c077 14.10 20.40;c079 3.40 10.80;c151 11.00 17.20;c059 13.20 32.00;c076 7.40 32.00,30.92\r\nXJ4T3,OUKK,Closet / Walk-in closet / Spear closet,5,7,Yes,A person grasps the doorknob to a closet and opens the door. The person opens a box in the closet and removes a towel. The person finds the towel very soft. The person holds the towel close to their face and snuggles it.,box;closet/cabinet;door;towel,A person is opening the door to the closer and opening a boxed game then they begin to wipe their face with a towel.,c041 5.00 11.40;c141 0.00 4.70;c038 16.50 25.00;c008 0.00 4.80;c042 22.40 25.00;c039 22.40 25.00;c043 22.40 25.00;c033 22.40 25.00;c044 0.90 7.50;c113 0.00 5.10;c040 2.60 19.30;c035 9.10 13.70,24.29\r\nZ8HPQ,3H6W,Kitchen,7,7,Yes,\"A person leaves some dishes in the kitchen sink and opens the refrigerator. They grab some items, leaving the fridge door open, and turn on the stove to begin cooking.  They laugh when they realize they left the refrigerator open, and close it.\",dish;door;refrigerator;sink;something;stove,The person places a plate in the kitchen sink and walks to the refrigerator. The person opens the refrigerator and takes something out of it. The person walks away and turns on the stove. The person turns back around and laughs. The person sees the open refrigerator door and walks over to close it.,c006 29.80 35.50;c119 3.20 9.40;c008 7.90 14.10;c142 30.20 35.50;c149 21.50 26.60;c143 7.90 14.10,36.08\r\nFMJZQ,ZSRZ,Hallway,6,6,Yes,A person is laughing while standing in the entryway and looking at a book. The person then begins to adjust their clothes.,book;clothes;hallway;man,\"a man with a book in a hallway and starts moving like he is convulsing.;A person is reading a book, and begins sneezing. A person then begins fixing their clothes.\",c026 0.00 20.00;c032 0.00 11.80;c004 7.80 20.00;c149 0.70 9.60;c025 7.60 12.10,19.12\r\nTA23R,OJK2,Pantry,6,7,Yes,A person is playing with their phone as they walk into the pantry. The person grasps a book from the table.,book;closet/cabinet;food;phone;table,A person playing on their phone opens a door and looks inside the pantry. They then remove an object and walk away while playing on their phone. They pick up a book and leave the room.,c016 4.70 28.00;c026 22.00 28.00;c063 16.00 21.20;c030 21.80 26.70;c112 18.10 23.60;c113 6.80 13.80;c115 5.10 28.00;c117 16.20 22.00,26.75\r\n7ODVS,ZSRZ,Kitchen,6,7,Yes,\"A person is grasping a camera, then the person starts laughing and grabs a towel.\",camera;phone;stove;towel,A person pick up a camera and towel and laughs while looking at them.;A person checks her phone while cooking on the stove.,c149 3.10 10.00;c015 0.00 11.00;c017 7.50 11.00;c152 2.90 11.00;c016 0.00 11.00;c018 0.00 3.10,10.25\r\nFL3CG,HRH1,Pantry,7,7,Yes,\"A person is smiling at a picture, then tidying some dishes.\",cabinet;dish;plate;shelf,This person is standing in a room looking at something. This person then walks to cabinet and then moves a plate or something.;A person is placing dishes into a cabinet.,c152 1.40 9.00;c114 20.10 28.00;c119 8.20 26.80;c082 8.40 27.70,27.17\r\nG6BFY,PKND,Bedroom,5,4,No,\"In a large closet, one person drinks some medicine and smiles into a mirror.\",bottle;medicine;mirror;shelf,A person is standing in a room. They pick up a bottle of medicine and drink it and then set it on a shelf. And then they look in a mirror and laugh. They pick up another bottle and drink it and then continue to look in a mirror.;A person picks up a bottle of medicine off a shelf and drinks it. They put it back on the shelf and look in the mirror and laugh. Then they pick up the bottle of medicine and drink some more and then they look in the mirror again.,c129 4.80 23.60;c094 12.00 16.80;c096 25.10 30.30;c152 24.70 29.90;c149 23.00 28.60;c128 0.00 10.10;c107 0.00 10.60;c109 5.50 10.60;c081 5.50 10.30;c110 17.10 22.50,31.79\r\nD3EY0,A8P9,Laundry room,7,7,Yes,A person runs in circles in the laundry room while holding a glass and dishes.,cup;dish;door;glass,A person enters a laundry room holding a cup and plate and walks around in circles. They then exit through another door.,c107 0.30 19.30;c118 0.60 19.50;c150 7.30 18.00;c006 13.90 19.90;c008 12.60 17.90;c097 1.10 6.90,18.50\r\n6RPUS,8IOD,Kitchen,6,7,Yes,\"One person stands at the stove and cooks, then tidies up the area with a towel.\",food;stove;towel,There is a person at the stove cooking something. That same person picks up a towel and wipes off the stove.,c038 10.10 32.00;c147 0.00 11.80;c035 7.80 12.40;c033 8.40 32.00,30.50\r\nPBGYV,YMXV,Bathroom,7,7,Yes,A person opens the door to their bathroom. The person walks in and stand in front of the mirror to take a picture.,door;mirror;phone/camera;picture,A person opens a door and walks away. The person then fixes a mirror on the wall and takes a picture.,c008 0.00 4.70;c096 10.00 33.00;c087 11.80 25.80;c015 4.20 33.00;c094 5.60 33.00;c016 7.00 33.00,31.58\r\n4X5P6,6RE8,Bedroom,6,6,Yes,A person is undressing in a doorway and then dressing while watching a television in a bathroom.,clothes;door;shirt;television;tv,The person enters the bedroom through the door. The person takes off a shirt and watches TV.;A person walks in to a room and takes off their shirt .The person stands and starts watching tv .The person continues to hold the t shirt behind their back.,c097 0.00 7.80;c008 0.00 5.50;c132 1.30 31.00;c155 3.50 10.50;c006 1.50 6.40;c000 6.70 31.00,30.33\r\nYTV2H,9PLL,Hallway,5,6,Yes,\"A person is walking down the hallway drinking a glass of water.  The person puts the water onto the shelf and sneezes, then continues walking and turns the light off at the end of the hallway.\",cup;dish;glass;light;shelf;water,\"A person is walking and drinking some water from a glass, they then set the glass on a shelf and begin to sneeze and turn off the light\",c105 28.60 33.00;c109 11.20 15.80;c081 10.80 17.50;c107 0.00 17.60;c106 0.00 16.30;c153 18.30 29.00;c119 8.60 23.00;c118 0.80 22.00;c120 0.00 14.40,32.50\r\n38I4G,ID9V,Living room,4,7,Yes,A person is standing and eating food while looking at something on their phone.,bag;food;phone,\"A person is standing, looking at a cell phone and eating from a bag of trail mix.\",c061 0.00 26.00;c015 0.00 26.00;c016 0.00 9.70;c156 5.10 26.00;c063 5.00 10.00;c063 9.00 15.10;c020 0.00 26.00,25.29\r\n97U3W,WG9D,Pantry,5,7,Yes,A person runs into their pantry holding a bag and a vacuum. They put them down and sneeze.,bad;bag;vacuum,\"A person is carrying a bag and a vacuum. The person puts down the bag, and vacuum and begins to sneeze.\",c020 0.00 7.60;c022 3.00 8.20;c137 0.00 7.00;c153 3.90 9.00,7.71\r\n9FEV7,CO1W,Bathroom,7,7,Yes,\"A person takes some clothes from a chair and dresses. The person washes their hands, dries them with a towel, and leaves.\",chair;clothes;door;hand;towel,\"The person takes a coat from the chair in the bathroom and puts it on. The person then washes their hands, then drying them with a towel and leaves.\",c139 8.30 25.10;c148 0.00 12.90;c002 0.00 5.90;c033 20.00 29.40;c008 26.80 31.60;c097 27.60 32.00;c000 0.00 7.40,30.79\r\n1XFDY,9PLL,Stairs,5,6,Yes,\"A person is sitting by the stairs while holding a pillow in their left hand and a book in their right hand. They are leaving the house, which is why they are by the stairs, and so they start walking towards the doorway.\",book;doorway;pillow,A person holding a pillow and a book sits down on the step of some stairs.  They then get up and walk away.,c030 21.20 32.00;c079 21.30 32.00;c151 1.90 10.00;c154 19.10 25.20;c026 0.00 32.00;c076 0.00 32.00;c097 28.90 32.00;c115 0.00 32.00,31.29\r\n4CSXJ,0KZ7,Stairs,6,7,Yes,\"One person snuggles a pillow and smiles, then throws the pillow and some clothes that are lying around down the stairs.\",clothes;pillow;staircase,A person is sitting on the staircase holding a pillow and cuddling it. The person throws the pillow down the staircase and throws other clothing down as well.,c076 0.00 10.00;c080 5.70 10.90;c000 8.50 16.90;c003 8.70 13.60;c003 12.50 17.70,23.71\r\nN1DAP,28B0,Laundry room,7,7,Yes,A person is sneezing while watching a laptop. The person then grasps the medicine and leaves the room.,cup/glass/bottle;laptop;medicine,\"A person watches something on a laptop in their laundry room. They then sneeze, pick up some medicine and walk out.\",c051 0.00 14.10;c153 2.70 14.00;c110 10.90 15.90,16.58\r\nLY10X,25TD,Kitchen,6,7,Yes,\"A person is standing in the kitchen washing dishes until they're fully cleaned.  Then the person decides to open up a medicine bottle and take some medicine, as doing the dishes has given them a headache.\",closet/cabinet;dish;glass;medicine;something,\"Person is standing at the sink, washing dishes.  Opens cabinet, takes out medicine.  Opens bottle, takes out pills, dry swallows them.\",c129 24.10 31.60;c121 0.00 16.40;c128 15.50 34.00;c113 14.50 20.70;c118 3.00 14.90;c119 2.50 14.90,33.00\r\n7H0JK,KQI6,Dining room,6,6,Yes,A person is holding a broom in the dining room.  Another person is leaving the table with some medicine in their hand.,broom;doorway;floor;hand;medicine;table,\"One person is sweeping with a broom, another person is taking medicine and a third person is sitting on the floor in a kitchen.\",c009 14.70 23.20;c129 19.40 24.70;c102 11.60 32.00;c100 5.00 10.50;c097 0.00 7.10;c127 17.80 32.00,30.92\r\nX1XZA,XXN8,Laundry room,6,6,Yes,A person is sitting and opening a dryer while holding a phone and laptop.,laptop;phone,A person opens a fridge while holding a laptop and phone.,c047 0.00 17.60;c015 0.00 17.40,31.75\r\nEYP8H,9PLL,Stairs,3,7,Yes,\"A person is standing on the stairs holding a laptop. The person begins walking down the stairs, picking up a book on the way.\",book;doorway;laptop;stairs,Person walking down the stair with a laptop in hand stop to pick up a book then brush the dust of the book,c026 0.00 33.00;c030 3.90 13.80;c047 0.00 33.00;c154 7.70 14.40;c097 24.20 33.00,31.71\r\n3XKBC,4I2W,Dining room,4,6,Yes,\"A person is undressing in the dining room by taking their jacket off and lying it on the table. Then they start playing with their laptop, which has a book to the right side of it.\",chair;clothes;laptop;shirt;table,\"A person is taking off a shirt, and places it on the table. A person sits down and opens a laptop.\",c155 10.50 25.00;c003 6.80 17.20;c048 18.80 28.10;c151 14.60 25.60;c009 18.90 24.70;c001 11.90 16.60;c011 19.60 24.70;c059 19.80 24.70,29.75\r\nWPNEM,YA10,Kitchen,5,7,Yes,A person cooking on a stove smiles and then walks toward a table.,food;pot;stove;table,\"There is a person cooking on the stove. That person taste the food.  That same person leaves the room, touching the table on the way out.;A person cooks something on the stove.  They use a spoon to eat some food out of the pot. They walk out of the room.\",c147 0.00 20.50;c156 8.20 18.90;c152 15.70 23.90,22.71\r\n9X6DL,0KZ7,Stairs,7,7,Yes,\"A person holds a book on the stairs. The person takes a picture of themselves with their phone, then picks up a glass of water and drinks from it.\",book;cup;glass;phone;steps;water,\"A person is sitting against a wall on some steps while reading a book. The person picks up a cell phone and looks at it and then places it on one of the steps. The person then picks up a glass of water, takes a drink and sets it back down onto the step.\",c032 0.00 6.50;c107 15.00 27.00;c110 15.00 27.00;c017 12.50 18.10;c026 0.00 27.00;c106 15.50 26.50;c109 22.50 27.00;c015 2.50 17.90;c018 2.70 8.50,26.25\r\nGSCNG,4I2W,Bedroom,6,6,Yes,Person is washing doorway and talking on phone. Another person is leaving garage.,doorway;phone;towel,A person is tidying up a door way then looking at their phone while another person walks through the doorway.,c015 10.60 29.00;c016 12.40 29.00;c038 0.00 11.70,28.50\r\nQ2GBA,YA10,Closet / Walk-in closet / Spear closet,6,5,Yes,A person is tidying a box in the closet.  Another person is taking a book out of the closet.,book;box;clothes;doorway;shelf,\"A person in a closet reaching for a book on the top shelf.Another person in the closet bending over going though a box.The person takes things from the box.;The people both appear to be looking for something in their walk-in closet. One person reaches on a top shelf and pulls down a book, which they exit with. The other person is crouched down, looking through an open box, but doesn't appear to find what they are looking for.\",c026 13.40 18.80;c030 4.20 16.70;c044 1.90 10.80;c097 13.90 19.20,30.21\r\n8WPPG,LTAC,Stairs,4,7,Yes,\"A person is seen throwing a towel down the stairs. They watch it fall down and retrieve it, and then put it on a bed.\",bed;blanket;clothes;doorway;floor;towel,\"Person walking downstairs, picking up some clothes and taking it into another room\",c034 30.10 36.00;c035 0.00 7.20;c037 17.90 25.70;c075 12.60 21.40;c070 12.10 35.00;c003 30.10 36.00;c033 0.00 8.60;c097 21.40 26.90;c097 25.00 30.20;c074 0.00 9.00;c073 0.00 3.60;c001 16.50 33.90;c036 0.00 11.40;c000 13.20 34.80;c127 12.10 16.80;c154 0.00 36.00;c126 11.30 27.10,34.83\r\nA81AV,ZAWX,Bedroom,7,7,Yes,\"A person is in their bedroom holding a bag of shoes. They begin dressing by putting on a jacket, and then they start drinking from a glass of water.\",bag;bed;clothes;cup;doorway;glass;vest,A person walks into a room with a bag and sits on the bed. The person stands up and undresses. The person grabs a glass from a table and takes a drink.;A person walks in and puts a bag on a bed afterwards the person puts on a vest and has a glass of water.,c020 0.00 7.30;c148 7.20 21.40;c135 1.80 7.40;c106 22.40 31.00;c151 4.20 9.50;c097 0.00 5.50;c002 6.30 12.50;c001 8.50 19.90;c154 8.50 14.50,30.08\r\nOEE36,YA10,Basement (A room below the ground floor),4,6,Yes,\"A person is putting towels and blanket into a box. The person fills the box, seals it, then throws it in the corner.\",blanket;box;floor;towel,A person folds a towel and a few other objects and places them into a box. The person puts the box on the floor.,c034 21.10 29.10;c042 32.30 40.20;c071 19.70 31.10;c039 25.90 36.50;c040 32.10 38.00;c126 33.30 40.00;c073 38.20 41.00;c070 38.20 41.00;c041 38.20 41.00,40.17\r\nDWEHS,T7C3,Laundry room,7,7,Yes,\"In the laundry room, a person is smiling into a mirror. The person then opens a book and stands in the doorway.\",book;doorway;mirror,\"Person looking into a mirror, and then, opening a book up and starting to read it.\",c093 0.00 16.30;c152 0.00 14.00;c096 0.00 14.00;c029 13.10 21.10;c032 13.30 38.00;c027 13.10 19.70;c026 0.00 38.00,36.75\r\nR5K2K,KQI6,Living room,7,7,Yes,One person is smiling at the clothes while another is watching the desk.,clothes;desk;doorway;light;sofa/couch;table,\"This person walks into the living room, picks up a piece of clothing, fold it, and throws it on the desk.\",c009 16.80 22.00;c004 6.60 22.00;c123 3.20 32.00;c001 13.40 21.70;c012 6.30 25.90;c097 0.00 3.10;c152 1.80 7.40;c003 13.40 21.70;c105 0.00 4.00;c000 6.40 21.60,30.54\r\nRRBM5,28B0,Living room,6,5,Yes,\"A person is snuggling on the sofa. Smiling, the person props a pillow under their head.\",blanket;head;pillow;sofa,A person is laying on a couch under a blanket.  They reach for a pillow and set it under their head.;A person laying on a sofa with a blanket over them in a living room takes a pillow from the floor and lays their head on it.,c122 0.00 6.20;c072 0.00 9.70;c075 7.40 21.10;c079 12.80 19.60,28.08\r\nDTJ6B,0KZ7,Dining room,6,6,Yes,\"A person walks through the doorway, wrapped in a blanket and eating a sandwich. The person takes the blanket off and throws it onto a chair.\",blanket;chair;doorway;food;sandwich,\"The person walks into the dining room wearing a blanket, throw it on a chair, sits down on another chair and eats a sandwich.\",c059 7.70 27.00;c071 2.10 7.90;c097 0.00 5.70;c065 0.00 27.00;c156 0.00 27.00;c151 6.50 13.00;c072 0.00 8.10;c074 2.00 8.00;c067 0.00 27.00;c061 0.00 27.00;c070 0.00 7.60,25.50\r\n3UWW0,H8N1,Living room,6,6,Yes,\"A person is sitting in a chair, eating food and drinking coffee.\",chair;cup/glass/bottle;food,A person is sitting on a chair. The person is eating a sandwich and drinking from a glass mug.,c061 0.00 4.50;c156 0.00 6.60;c106 14.60 23.30,29.58\r\nKKGJ8,ZAWX,Hallway,6,7,Yes,\"A person is sitting on a chair. Opening the door, the person walks over to the sink and watches out the window.\",chair;door;sink;window,\"A person stands from a chair, walks through a doorway and down a hall, then turns a sink off and looks out a window.\",c008 3.70 10.60;c059 0.00 5.10;c092 21.40 32.00;c154 0.00 5.20;c097 2.80 10.80,30.75\r\nQ24OC,4I2W,Dining room,5,6,Yes,A person is holding a bag and begins putting dishes on a table.,bag;dish;food;plate;table,\"Person walking around room holding bag, picks up a plate and moves it to a small table. Then picks up another plate and moves it to a table.\",c009 23.80 30.00;c020 0.00 30.00;c119 23.70 30.00;c120 12.00 29.00;c063 11.30 16.20;c062 23.50 28.90;c061 14.80 22.20,29.42\r\nPOXTH,0KZ7,Basement (A room below the ground floor),6,6,Yes,\"A person is squatting in a box on the floor. They stand up, laughing, while throwing homework into the air.\",box;chair;floor;paper,a person throws some papers around;A person continually picking up paper and throwing it in the air.,c154 0.00 5.40;c149 0.60 6.90;c115 0.00 5.60;c116 1.40 8.50;c152 0.00 5.40;c126 1.50 7.80;c117 10.70 18.30,24.79\r\nOXCLE,T7C3,Pantry,7,7,Yes,A person is grasping a broom and then smiling while wiping down a cabinet with a towel in a pantry.,broom;cabinet;shelf,\"A person walks up into a kitchen, carrying a broom and begins using a rag to tidy up a kitchen cabinet.\",c114 0.20 38.00;c098 0.00 38.00;c082 0.60 38.00,37.29\r\n5HSKK,X5XO,Living room,6,7,Yes,\"A person walks into a living room holding a camera phone and a broom, they then start to sneeze and drop the broom.\",broom;doorway;floor;phone/camera,\"A person walks in holdinga broom, then talks to somewhere and sneezes.\",c098 0.00 20.70;c153 5.30 32.00;c015 0.00 32.00;c101 15.30 20.40;c097 0.00 5.90;c126 14.80 20.20;c099 15.50 20.90,31.12\r\n8ZF5S,3H6W,Kitchen,5,7,Yes,\"A person starts washing a table, they stop, walk over to a stove and begin cooking.\",food;stove;table;towel,\"A person is cleaning a table with a towel, they then turn on the stove and begin to cook food.;A person walks into the kitchen uses a towel to wipe the table and then walks over to the stove and starts cooking.\",c147 11.10 30.00;c038 0.00 12.60;c013 0.00 12.60;c012 0.00 11.00,32.58\r\nF1VEE,0KZ7,Basement (A room below the ground floor),5,7,Yes,\"A person in a basement stands in front of a mirror, dressing.  After they put on their shoes, they take a mobile phone and turn the doorknob to the door out of the room and leave.\",clothes;coat;door;jacket;mirror;phone;shoe;table,\"A person puts a jacket on and then puts on shoes and picks up a phone before opening a door and leaving the room.;A person takes a coat off a table and puts it on.  They then look in the mirror, put some shoes on, pick up a phone and go out a door.\",c015 21.00 27.80;c006 30.20 34.00;c148 2.10 22.00;c055 15.10 23.80;c002 0.00 7.40;c096 17.00 23.00;c141 24.00 30.00;c008 27.00 32.00;c001 3.00 18.00;c054 15.00 21.00;c097 24.10 34.00;c018 19.20 28.20,32.71\r\nWNKL6,5LWB,Stairs,6,7,Yes,A person is seen eating food in a bag. The person laughs while they look at old pictures on their camera.,bag;camera;food,\"The person is standing on stairs, eating from a bag of food, talking on their phone.\",c020 0.00 28.00;c156 20.80 28.00;c149 0.00 10.70;c062 0.00 4.60;c152 0.00 18.90;c152 12.50 22.80;c015 0.00 28.00;c061 0.00 28.00;c062 0.00 28.00;c016 0.00 28.00;c021 0.00 28.00,27.25\r\n0GH5O,2RTW,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,\"A person grabs a towel as they are leaving the house, and walk through the doorway smiling.\",clothes;door;towel,A person walks across the room pickup up a towel. The person opens the front door looks outside and then exits the door.,c097 0.00 4.90;c035 0.90 8.70;c152 11.30 17.70;c008 7.00 13.70;c002 2.10 8.30;c141 7.30 13.90;c006 14.60 20.30;c000 2.10 19.20;c033 2.30 19.20,30.46\r\n538JV,HJJ4,Stairs,6,7,Yes,A person is standing by the stairs while watching something on their phone. They begin drinking some coffee while also taking off their clothes.,clothes;cup;phone;shirt,A person is standing at the foot of a flight of stairs looking at their phone. They then take a drink out of a cup and take off their shirt. They sip from the cup while doing it. When the shirt is off they throw it down.,c106 6.90 13.40;c107 2.90 18.00;c015 0.00 18.00;c016 0.00 7.50;c003 13.90 18.00;c155 4.50 18.00,17.33\r\nMP6JQ,9OK1,Bedroom,6,7,Yes,A person smiling person opens a laptop in a bedroom and starts watching a video. They stop and vacuum the floor.,floor;laptop;vacuum,A person is sitting on the floor looking at a laptop. The person then gets a vacuum and starts cleaning the floor,c046 9.20 15.90;c051 0.00 6.70;c125 0.10 10.90;c138 11.00 16.80;c137 11.00 20.00;c152 0.00 11.20;c127 12.60 20.00,18.54\r\nXXU6H,18IT,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person opens a doorway to get into the house while holding a book. The person trips and the book falls out along with a bookmark. Laughing at the clumsiness, the person picks up the book and begins fixing the bookmark back to its original location.\",book;door;floor;man,\"A person comes into a room through a door and slips and falls on the floor, dropping their book in the process. They get back up and pick up the book they dropped.;a man walking through a door and falling to the ground.\",c097 0.00 6.30;c026 0.10 6.70;c151 1.90 12.40;c154 7.60 16.80;c008 0.00 6.20;c124 1.90 9.80;c149 4.20 17.40,17.58\r\nQ6M0X,D0RU,Home Office / Study (A room in a house used for work),4,5,Yes,\"A person in a home office is grasping a bag of groceries, they then start working on removing the food and placing it on the desk.\",bag;chair;cup/glass/bottle;desk;food;groceries;table,The person is taking things out of a backpack. The person then looks at the things they took out.,c011 0.00 34.00;c063 6.70 15.10;c110 14.60 19.80;c062 7.00 12.20;c062 9.70 14.90;c062 17.60 22.60;c059 0.00 34.00;c009 1.90 6.50;c009 7.70 12.10,33.46\r\nGZMJK,T7C3,Stairs,7,7,Yes,A person is sneezing with a towel over their heads then begins to smile at their sandwich.,food;sandwich;stairs;toast;towel,\"A person is standing on stairs. The person sneezes two times. The person eats a sandwich.;A person standing on the stairs holding a piece of toast and a towel, sneezes and takes a bite of food.\",c065 27.10 33.00;c067 0.00 3.30;c153 0.70 15.10;c152 13.40 19.80;c156 27.10 33.00;c061 0.00 33.00;c033 5.00 11.00,31.96\r\nEC695,2RTW,Living room,6,6,Yes,\"One person is under a blanket on a small sofa playing at being asleep, while another runs into the room to grab a laptop.\",blanket;couch;laptop;sofa;table,a person laying on a couch and another person grabs a laptop off the table,c072 0.00 32.00;c047 11.00 31.00;c122 0.00 32.00;c150 20.60 32.00;c050 13.30 18.60,30.96\r\n1333C,Z68L,Kitchen,7,7,Yes,A person throws a towel in the sink then holds a pot over the stove.,dish;food;sink;stove;towel,A person throws a dirty towel into a sink.  They then remove a pot from their stove.,c147 13.30 26.40;c036 4.90 15.30;c119 19.80 26.70;c120 8.00 13.10;c118 8.60 26.50;c033 1.00 9.50,29.88\r\nDRT60,Z68L,Bathroom,7,7,Yes,A person is in the bathroom talking on the phone while washing their hands at the sink. They throw the towel down and laugh.,floor;hand;phone;sink;towel,A person speaking on the phone walks into the bathroom and washes their hands in the sink. They dry up with a towel and laugh while still speaking.,c139 2.20 15.40;c033 13.20 19.60;c035 12.80 18.90;c038 22.30 27.60;c019 1.40 28.00;c149 23.80 28.00;c126 14.60 19.60;c152 12.20 20.30;c036 15.60 20.00;c015 1.10 28.00;c127 22.60 28.00,26.75\r\n0Y19Q,Z68L,Kitchen,6,7,Yes,A person is holding a cup of coffee in one hand while watching the scene outside the window.,coffee;cup;glass;hand;window,A person walks into the kitchen. They sip out of a cup while looking out a window.,c092 14.00 49.20;c106 8.60 21.80;c107 1.80 53.00;c109 18.30 24.00,54.17\r\nZU00I,Z68L,Bathroom,6,6,Yes,\"A person is standing in their bathroom putting on their shoes.  They take a sip of their coffee, and pour it down the sink.\",coffee;cup;shoe;shows;sink;wall,\"A person in a bathroom putting on their shoes. Than drinking from a cup and pouring the rest down the sink. The person proceeds to turn on the water and raise the sink out with water .;There's a woman standing in a bathroom, then puts on her shows and then seems to drink some coffee out of her cup.\",c053 0.00 22.70;c056 0.00 7.20;c107 18.90 37.00;c106 20.90 28.40;c110 20.10 25.20;c055 1.70 22.20;c111 29.60 37.00,35.62\r\nJSOLV,EIO2,Home Office / Study (A room in a house used for work),7,3,Yes,A person runs into the study and throws a towel onto a doorknob.,book;doorknob;homework;paper;sofa;towel,The person went and sat on the sofa to work on their homework. The person then grabbed a nearby towel and held it for a moment. The person threw the towel onto a doorknob.;A person sits down on a sofa and reads over homework. A person then throws a towel onto a doorknob.,c033 15.70 26.00;c151 0.70 8.50;c115 0.00 31.00;c145 1.00 29.50;c123 0.10 31.00;c026 0.00 29.00;c036 25.00 31.00,30.12\r\nZM61T,4I2W,Other,6,5,Yes,A person is smiling while grasping a blanket and drinking coffee in the garage.,clothes;coffee;cup;desk;mirror;towel,\"A person is holding a towel in front of a mirror and drinking coffee;This person is in a room, picks up towel off of desk & holds it, picks up cup and starts drinking.\",c106 11.10 31.00;c033 2.30 31.00;c035 0.10 5.90;c004 0.50 11.50;c002 0.50 7.10;c000 1.10 31.00,29.67\r\nLUPRO,5LWB,Living room,7,7,Yes,A person walks into the living room holding a towel.  Another person is laying on the couch eating crackers out of a box.,bag;box;doorway;food;sofa;television;towel,A person sits on a sofa watching TV while another one enters the room.,c123 0.00 22.60;c097 9.30 16.80;c151 15.10 20.80;c033 9.10 21.50;c156 0.00 20.00;c132 0.00 21.50;c061 0.00 25.00;c020 0.00 25.00,23.75\r\n983K8,PKND,Living room,5,5,Yes,A person is sitting on the chair holding a sandwich. The person begins eating as the person picks up a blanket from the floor.,blanket;chair;food;sandwich,A person is sitting on a chair eating a sandwich and holding a blanket.,c059 0.00 32.00;c065 0.00 32.00;c070 1.50 31.70;c156 0.00 32.00;c073 2.70 12.50;c061 0.00 32.00;c071 26.50 32.00,31.42\r\nRTIP8,UTMU,Bedroom,6,6,Yes,\"A smiling person is sitting nest to a mirror, holding a picture.\",floor;frame;picture,A person goes fom standing to sitting and stares at something that is framed.,c152 18.00 27.60;c151 1.90 7.80;c084 0.00 31.00;c086 24.10 31.00;c125 2.20 31.00;c088 3.50 29.20,30.29\r\n9XW1K,D0RU,Garage,6,7,Yes,A person is fixing a desk in their garage. They grasp a drinking glass and leave the room.,cup;desk;floor;glass;table,person siting on floor fixing a drawer jumps up drinkink a glass of water,c014 0.00 24.70;c106 23.50 28.60;c154 28.70 32.00;c125 28.70 32.00,30.67\r\nOSCS2,1TZV,Bedroom,7,7,Yes,A person awakens in bed. They sit up and grasp the pillow they had been sleeping with. They get dressed and look out a window.,bed;blanket;clothes;pillow;window,\"The person awoke from bed holding a blanket. The person set down the blanket and got dressed. The person then moved to the window to look outside.;A person is laying in bed  holding a pillow, they then get up and star dressing themselves in front of a mirror.\",c076 0.00 12.70;c146 0.00 13.10;c154 8.50 31.40;c134 0.00 12.40;c148 8.70 31.80;c070 31.70 37.00;c002 8.90 15.70;c092 30.80 37.00;c000 12.10 18.10;c133 0.10 12.50,35.58\r\nQM7Q3,3531,Kitchen,6,6,Yes,A person in the kitchen is laughing because they just took a picture of themselves through the mirror. They look funny. They are holding a phone in their left hand.,hand;mirror;phone;picture,A person is taking a picture of a mirror as he smiles.;There is a person holding a mirror in one hand and a phone with the other. That same person then takes a picture of themselves in the mirror.,c094 8.80 16.20;c149 8.80 32.00;c152 8.80 16.20;c087 1.60 8.20;c015 0.00 32.00;c016 0.00 32.00;c093 0.00 32.00;c096 0.00 10.50,30.88\r\nNL26D,6RE8,Pantry,3,3,Yes,\"A person can tidy the shelf in their pantry, A person can sit on a broom while looking in their pantry?\",broom;doorway;floor;shelf,A person walks through a doorway. A person picks up a broom. A person puts an item on a shelf. A person sweeps with a broom.,c081 0.20 10.20;c098 0.00 32.00;c100 0.00 32.00;c102 0.00 32.00;c097 0.00 4.50;c127 16.20 32.00,30.71\r\n8QTVQ,G6WD,Living room,5,6,Yes,\"A person stands in the living room, holding a pile of clothes. The person sets the pile down on a pillow.\",clothes;couch;dog;man;pillow,\"a man holding a bunch of clothes and putting them on the couch one by one.;A person is holding clothes and a pillow while standing in a living room, the person then starts to stack the clothes and pillow on a couch and then salutes the pile and then walks away.\",c004 29.50 47.60;c001 21.50 37.30;c000 0.00 19.80,51.50\r\nA1PEO,3531,Bedroom,6,5,Yes,A person enters a recreation room and closes the door. They grab a bag and fill it with clothes before leaving.,bag;clothes;clothing;door,A person enters a doorway and closes the door behind them .The person grabs a bag off the floor and places clothing inside of it. The person walks away and opens the door to leave.,c000 8.90 34.00;c004 11.50 29.70;c020 8.10 34.00;c006 1.90 8.30;c021 9.10 15.00;c008 0.00 4.00;c001 11.20 28.50;c141 2.20 9.80;c002 10.20 16.50;c002 12.50 18.30;c002 14.30 23.60;c097 0.00 4.60;c023 7.00 14.40,32.50\r\nSZYJO,X5XO,Recreation room / Man cave,5,6,Yes,The person is sneezing in front of the laptop and then putting dishes on a table in the recreation room / man cave.,chair;dish;laptop;table,A person is using a computer. The person sneezes. The person puts a few bowls on a table.,c119 18.00 29.90;c052 0.00 6.10;c009 26.10 32.00;c153 5.00 13.10;c120 14.50 21.50;c120 17.70 26.00;c118 17.50 30.10;c011 0.00 32.00;c014 0.00 17.60;c059 0.00 32.00,30.50\r\n78FJX,ZAWX,Other,7,7,Yes,A person takes a book out of a cabinet and then closes the cabinet. Then the person looks at the book and smiles.,book;cabinet,a person opens a cabinet and takes out a book. a person flips through the pages of the book.,c113 0.00 5.80;c027 20.20 25.30;c152 26.30 32.00;c032 8.90 32.00;c026 8.90 32.00;c029 26.10 32.00;c112 15.40 22.50;c030 8.20 17.80,31.21\r\nZGUTC,G6WD,Bathroom,5,7,Yes,A person is in the bathroom putting a glass down next to the sink.  The person opens the medicine cabinet door and pulls out some medicine before leaving the room.,cabinet;cup;dish;door;glass;medicine;sink,Person walks into a bathroom and place a glass in the sink. Person turns and takes medicine from the cabinet and then walks towards door.,c113 19.20 25.60;c109 5.30 18.90;c128 25.00 31.10;c112 30.30 35.80;c118 5.50 12.10;c119 10.90 17.80,37.46\r\nU7RVS,BYF9,Bedroom,5,7,Yes,\"A person sits in the bedroom, playing on their laptop while drinking a cup of coffee.\",bed;cup;laptop,a person is sitting on a bed.  person takes a drink  and then works on a laptop.  The person they shows excitement.;A person is sitting on a bed and takes a drink from a cup. The person places the cup on a laptop computer and begins to type on it. While watching the laptop the person gets excited.,c106 0.00 7.90;c107 0.00 14.10;c109 7.20 13.90;c110 3.20 8.20;c051 0.00 25.00;c052 0.00 25.00;c135 0.00 25.00,23.50\r\n2M9YL,P6LJ,Bedroom,3,6,Yes,A person was standing with a sandwich next to their clothes.  Then a person was smiling while opening the bedroom door.,dish;door;food;sandwich,A person picks up a sandwich and chomps it.  Then the person opened the door and walks through it.,c065 10.70 18.60;c067 9.00 18.90;c068 17.10 23.30;c008 22.90 31.00;c152 20.00 26.90;c061 11.00 17.90;c156 11.60 17.40;c069 10.50 15.70;c118 2.40 23.20;c141 23.60 29.40;c062 18.20 23.00;c063 10.90 15.70;c120 2.20 7.40;c119 17.80 23.30,33.83\r\nLHU7D,C7O9,Stairs,5,5,Yes,A person is standing on the stairs while grasping a bag.  The person slowly pulls a camera out of the bag to take a lovely picture of the stairs in front of them.,bag;hand rail;phone;stairs,Someone is holding a bad and grabs a phone out of it while standing on stairs;A person is leaning against a handrail on a stairway holding a paper bag full of groceries and looking at his cell phone.,c020 0.00 27.00;c015 9.00 26.80;c018 3.20 27.00,26.21\r\nVEIIK,BYF9,Kitchen,7,7,Yes,one person is on their laptop doing homework in the kitchen and another person is grasping a broom tidying up the floor.,broom;floor;laptop,A person picks up a broom and sweeps the floor while another person works on a laptop.,c051 0.00 21.00;c098 0.60 21.00;c102 0.60 21.00;c047 0.00 21.00;c052 0.00 21.00;c100 0.90 7.90;c127 4.40 21.00;c154 1.60 7.10,20.46\r\n3K6HO,HR43,Bedroom,5,7,Yes,\"A person is in a bedroom throwing a sheet on a bed, they then close the door when exiting the doorway.\",bed;blanket;door,\"A person carries a blanket into a room, and then spreads it over a bed before leaving via the door.;A person throws a blanket on a bed and closes a door.\",c006 19.60 26.00;c097 19.70 25.40;c074 1.70 7.50;c008 19.20 26.00;c141 19.80 26.00,24.75\r\nVOXNH,HJJ4,Garage,6,7,Yes,A person takes a vacuum out of the corner then sneezes all while talking on the phone.,phone;vacuum,A person is vaccumming in a garage talking on a cell phone then they sneeeze,c137 7.10 17.00;c019 0.00 17.00,16.04\r\n8ENLP,Z68L,Bedroom,7,7,Yes,A person is sitting on the floor holding a pillow. They begin covering themselves with a towel as they start undressing.,blanket;clothes;floor;jacket;pillow;shoe;towel,\"person is sitting on floor, puts towel on head, takes off shoes and jacket.;There is a person sitting on the floor holding a pillow.  That same person then puts a towel over their head and takes off a sweater.\",c034 6.00 12.80;c125 0.00 32.00;c155 18.80 31.60;c057 11.10 21.40;c033 5.50 12.60;c076 0.00 32.00;c073 6.10 13.40;c078 0.00 32.00;c072 8.20 32.00,31.21\r\nP9D7P,YMXV,Bedroom,6,6,Yes,A person is undressing in a laundry room laughing while looking out the window and holding their phone.,phone;window,\"person looks at phone, looks out window, and looks at phone\",c092 16.20 27.30;c016 4.30 26.50;c015 0.00 32.00,30.75\r\nIU8YI,PKND,Bedroom,7,7,Yes,A person is watching the weather outside of their window. Another person walks in the doorway and grabs a broom to begin tidying up.,broom;floor;window,A person is sweeping a room while another person is looking out a window,c102 1.60 7.50;c092 11.40 32.00;c098 0.00 32.00;c127 0.00 32.00,31.46\r\n16D5O,T7C3,Pantry,7,7,Yes,A person walks into the pantry holding a pillow. The person throws the pillow into the cabinet.,bag;cabinet;pantry;pillow;shelf,\"A person walks up to a cabinet, throws a pillow onto it and walks away.;A person throws a bag into a pantry.\",c080 1.50 9.10;c077 3.60 8.50;c081 3.60 8.50;c076 0.00 6.50,19.67\r\nS1FYN,L4ZP,Bedroom,6,7,Yes,A person runs into their bedroom and sits on the bed and grabs a pillow and holds it against their chest.,bed;pillow;sofa/couch;television,A person is snuggling with a pillow on the bed while watching television.,c135 2.50 18.70;c076 2.00 22.70;c078 1.80 23.20;c154 14.70 21.90;c132 2.30 21.10;c079 2.10 12.10;c123 1.50 6.60;c151 1.20 6.40,22.54\r\nDLIAR,UTMU,Living room,6,7,Yes,\"A person stands on the sofa while talking on the phone. The person falls off the sofa, quickly leaves the room, and returns with a bag of ice on their head.\",bag;head;phone;sofa,A person stands on a sofa holding an ice pack to the head. The person then walks around the room.,c019 0.00 26.00,25.42\r\nBGX4T,HR43,Laundry room,7,7,Yes,A person runs into their laundry room holding their vacuum. They close the door and leaves.,door;vacuum,A person is holding a vacuum cleaner. A person then closes the door. A person then leaves the room,c006 9.30 16.00;c137 0.00 24.00;c097 0.00 24.00,23.42\r\nUGJSB,KFGP,Laundry room,6,7,Yes,A person is holding a laptop while leaving the laundry room. The person switches off the light when exiting the room.,clothes;laptop;light,A person is standing and looking at their laptop and then they close it and walk away.,c046 15.90 22.70;c051 0.40 21.50;c047 0.00 26.20;c105 20.30 27.40;c048 0.00 4.40,29.46\r\nHQ7WC,DXDI,Kitchen,7,7,Yes,\"A person is standing in the kitchen tidying up with a broom, while watching the stove to keep track of when it's done preheating.\",broom;floor,A person is sweeping the kitchen floor with a broom,c102 0.00 31.00;c127 0.00 31.00,29.75\r\nSKLEN,2Q9D,Garage,5,7,Yes,A person is washing a door and the tidying a shelf in the garage.,bottle;cloth;door;shelf;spray;towel,A person sprays a cleaner on their door and wipes it with a towel. They put the cleaner back on the shelf and tidy it up.;A person wiping down a door with a cloth.The person walks to a shelf and puts the stuff back on the shelf.,c081 4.80 15.00;c082 13.10 21.40;c000 4.80 21.10;c001 18.40 31.80;c038 9.40 23.90;c007 0.00 18.80;c033 0.00 25.10,30.79\r\nJ7TT5,C7O9,Stairs,7,6,Yes,A person is eating a sandwich and then throws medicine down the stairs.,floor;food;sandwich,A person is sitting on the stairs eating a sandwich,c065 0.00 11.60;c156 0.00 11.60;c067 0.00 29.00;c125 0.00 29.00;c061 0.00 29.00;c126 16.30 22.20,28.04\r\n5LTLL,XXN8,Living room,4,6,Yes,Two people are snuggling on a sofa. One person pours their partner a drink on a nearby table.,dish;sofa;table,Person #1 went and sat on a sofa next to person #2. They cuddled for a moment and then person #2 poured a drink in a cup. Person #1 drank from the cup. They began cuddling again.,c123 0.00 32.00;c151 1.00 6.90;c119 13.20 19.70;c118 13.20 19.70;c119 26.40 32.00;c118 17.00 31.50;c152 2.70 13.00;c152 10.50 17.20,31.29\r\nK1FT7,XKTB,Kitchen,3,1,No,A person is cooking at the stove then starts throwing items into the cabinet.,box;pot;stove,\"A person holds something in his hand while cooking on the stove.;This person is holding a box, while cooking in the kitchen.\",,30.42\r\nZ6U1X,25TD,Living room,7,7,Yes,A person is holding a doorknob.  Then a person is leaving with a broom.,broom;door,\"The person walked to the door, opened it and left while holding a broom.\",c141 1.30 18.30;c098 0.00 11.40;c008 12.20 20.80;c097 22.40 29.00;c100 15.90 21.00;c099 6.10 11.90,31.88\r\nCNS9B,YMXV,Home Office / Study (A room in a house used for work),5,6,Yes,Person A standing in a garage laughing with Person B.  Person A points out the window and grabs a nearby bag of groceries.,bag;groceries;window,Two people are talking laughing using hand gestures.  One person walks over by a window and grabs a grocery bag off a hook.,c023 16.10 27.80;c149 0.50 10.30,31.12\r\nPP2FF,YMXV,Bedroom,4,6,Yes,The person was eating sitting on the sofa. The person was watching out the window.,bag;bed;food;window,\"The person sat on their bed eating some food. They set the food down, got up and looked out the window.;The person is sitting on the bed eating. The stand up and walk to look out the window.\",c092 23.40 32.00;c156 0.00 6.20;c154 16.50 21.30;c135 0.00 20.60;c062 8.30 15.30;c061 0.00 18.80;c020 0.00 20.30;c063 0.00 32.00,31.25\r\n3SAO5,3H6W,Laundry room,6,7,Yes,\"A person sits in the laundry room, reading a book. The person opens a cabinet, takes out some food, then closes the cabinet.\",book;cabinet;can;chair;couch;food,\"a man sitting down with a book and then standing up and going to get a can of veggies.;Person sitting down in a chair, opening a book and reading, and then gets up to go to the kitchen and get something food from cabinet.\",c026 2.40 13.30;c112 22.40 30.70;c151 15.40 34.60;c154 11.70 27.30;c059 0.00 7.60;c063 24.30 32.90;c113 19.50 24.70;c032 0.90 17.70;c027 0.40 16.50;c030 0.00 5.20;c061 24.00 32.80,34.08\r\nEHCUE,D0RU,Home Office / Study (A room in a house used for work),4,3,Yes,\"A person sits at a desk in the garage, working on a laptop.\",chair;desk;laptop;table,A person is sitting in a chair at a desk and working on a laptop.;This person is working on a laptop. This person may be trying to fix it.,c014 0.00 26.10;c059 10.50 26.60;c011 0.00 27.30;c052 0.00 27.30,33.42\r\nADCTG,6RE8,Bedroom,4,6,No,A person carrying groceries walks to and grabs the doorknob as they sneeze.,bag;curtain;doorknob;groceries;table,\"A person is in a room grabbing groceries from a table,when finished the person heads toward the door.;Person packing bag with groceries, and then goes to leave the room before starting to sneeze before going out.\",c130 0.00 9.30;c141 16.50 21.40;c153 16.70 31.80;c020 9.40 36.00;c023 0.00 14.00;c021 0.00 5.80,34.58\r\nBUXV4,ENC8,Hallway,6,6,Yes,\"One person closes a box with some shoes in it, then holds a phone and smiles into it.\",box;doorway;phone;shoe,A person is putting shoes inside of a box then looking and smiling at their phone.,c015 15.00 31.90;c152 16.20 23.40;c054 1.20 8.10;c016 17.60 32.30;c097 30.90 35.70;c040 0.00 16.30;c053 0.00 7.30;c018 14.00 19.00,39.50\r\n0BH84,EA2K,Bathroom,3,5,Yes,A smiling person enter their basement drinking milk and holding a phone. They take off their shoes and put them in the sink.,dish;doorway;milk;phone;shoe;table,A person drinks milk while talking on the phone and takes their shoes off.,c019 4.00 16.80;c057 16.20 26.00;c009 12.50 19.00;c119 12.30 19.40;c097 7.90 14.30,31.25\r\n1TWH6,DXDI,Bathroom,5,7,Yes,A person takes something out of a box and begins playing with it. The person pauses and looks out the window.,box;cup;mug;window,\"A person takes a box and gets a mug out of it. They lok at the mug and then look out the window;A person takes a mug out of a box, and then peers out a window intently.\",c041 1.00 6.00;c044 5.00 10.00;c092 18.00 31.00;c110 5.00 10.00;c107 5.50 31.00;c040 1.00 11.70,30.08\r\nIL0LY,ID9V,Living room,4,4,Yes,A person is running with a pillow and the starts closing a desk.,blanket;cabinet;chair;dresser;pillow;sofa/couch,There is a person sitting down holding a pillow.;A person sits in a chair shuffling their hands up and down while holding a pillow before opening and closesing a drawer in their room.,c076 0.00 19.60;c059 0.00 28.00;c113 16.20 24.70;c112 21.80 28.00;c070 0.00 21.10;c123 0.00 28.00,27.12\r\nPWO7A,0RNU,Garage,5,7,Yes,\"A person standing in a garage holding a bag of groceries grabs the doorknob to the house, enters the house, and closes the door behind them.\",bag;door;groceries,Person stands in the garage holding a bag of groceries before entering the house.,c141 5.80 13.20;c020 0.00 18.50;c006 11.90 19.90;c008 5.70 14.30;c097 6.20 16.40,19.08\r\nTF95Y,ZSRZ,Kitchen,7,7,Yes,A person is cooking at a stove in a kitchen. The person sneezes and then opens the refrigerator.,food;refrigerator;stove,\"A person is cooking at a stove, then sneezing and opening refrigerator.\",c147 0.00 14.50;c153 6.80 14.60;c143 10.40 15.60;c062 1.00 6.00,15.38\r\nM0DAY,UTMU,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is running in place while wearing dress shoes and then grasping a  glass in the Closet / Walk-in closet / Spear closet.,closet;clothes;cup;glass;phone;shoes,\"A person is standing in a closet, running in place while holding a glass. There is a rack of clothes and pile of shoes nearby.;A person standing in a closet with high heel shoes on dancing in place.The person is holding a phone while dancing.\",c107 0.00 26.00;c150 0.00 26.00,24.83\r\nL9J5I,Z68L,Bedroom,6,6,Yes,\"A person is in a bedroom eating by a window, they then grab a near by homework folder and close it.\",bed;book;food;hair;homework;paper,\"A person is sitting on their bed, and they are eating a snack. They wipe their hands on their pants, fix their hair and pick up a school binder and start reading.;A person is sitting on the bed eating some food. A person then picks up a book and looks at it.\",c154 23.90 30.60;c062 0.00 3.50;c135 0.00 29.70;c156 0.30 11.20;c062 0.00 11.20;c117 9.20 16.70;c061 0.00 12.30;c115 11.60 26.20,30.58\r\nSQKE4,2RTW,Living room,5,7,Yes,\"A person is sitting in a living room holding a cup of coffee, they then start sweeping with a broom and start to sneeze from the dust.\",broom;coffee;couch;cup;floor;sofa;table;television;tv,\"A person is sitting on a couch holding a cup while watching television. The person then gets up, puts the cup down, and begins to sweep the floor with a broom. While sweeping, the person sneezes.;The person is watching TV and holding a cup of coffee. The person places the cup on a table, stands up and gets a broom. The person begins sweeping the floor.\",c100 8.80 13.40;c107 0.00 9.50;c154 5.50 11.00;c132 6.50 11.30;c123 0.00 9.00;c102 9.70 23.20;c109 4.00 9.30;c127 9.70 23.20;c132 0.00 8.00,29.88\r\nKZW3K,PO5L,Pantry,5,7,Yes,\"A smiling person is watching a video in their pantry. The person grabs a broom, and a camera, and leave\",book;broom;laundry machine;mop;picture;tablet,\"A person is looking at something on a tablet and then they set it on top of the laundry machine. They grab a mop and a cleaner from the corner and walk away.;A person walks into a laundry room holding, and looking at a picture. The person puts the picture down and picks up a dust mop and walks away from the laundry room.\",c098 15.30 26.30;c100 15.00 26.30;c088 1.40 17.70;c086 12.20 17.90;c028 12.60 17.80;c026 1.10 17.00,26.92\r\n5MRPU,P6LJ,Recreation room / Man cave,6,7,No,A person wakes up in the recreation room and walks to the desk.  They grab their phone and take a picture of themselves.,blanket;desk;phone;picture;sofa/couch,A person sits in a chair while curled up in a blanket. They then wake up and take a selfie at their desk.,c015 23.80 36.30;c087 27.00 34.40;c154 16.00 23.20;c017 30.80 36.80;c018 22.40 29.30;c151 15.80 23.20;c016 23.60 36.30;c072 4.20 19.80;c122 2.40 21.30,37.83\r\n0LD2V,3VLX,Closet / Walk-in closet / Spear closet,7,7,Yes,A sneezing person runs into their closet and turns on a light and grabs a box.,box;light;wardrobe,\"A person switches on a light in a wardrobe, then picks up a box and walks out with it.\",,20.71\r\n4KWJ4,YMXV,Bedroom,6,7,Yes,A person is sitting on a chair while working on their laptop.,chair;laptop;table,A person is sitting at their desk and working on a laptop. They stop briefly and do a little dance and get back to work.,c051 0.00 32.00;c052 0.00 32.00;c059 0.00 32.00;c014 0.00 32.00,30.71\r\nRTGML,OUKK,Pantry,3,6,Yes,A person opens a box and finds a picture inside of it. The person smiles and starts snuggling the picture.,box;picture,\"A person moves a box, and takes and snuggles a picture from a shelf in a cabinet.\",c084 4.30 11.20;c083 2.10 7.50;c088 4.00 11.70,17.38\r\nFZJTT,S395,Living room,6,7,Yes,\"A person awakens in the living room and puts their shoes on, still lying on the couch. The person takes out their camera and begins looking through pictures.\",blanket;camera;couch;phone;picture;pillow;shoe;sofa;table,a person laying on a couch and putting their shoes on;A person covered in a blanket with their head on a pillow awakens on a sofa and puts on their shoes.  They retrieve a camera from a small table behind them and take a picture of the wall.,c015 19.20 31.20;c146 1.10 11.90;c078 0.00 11.90;c055 7.00 21.60;c016 20.00 32.00;c122 0.00 32.00;c018 16.00 24.00;c072 0.00 8.10,34.62\r\nPZD7Z,0KZ7,Dining room,6,7,Yes,A person is sitting at a dining room table in a dining room holding a broom. The person stands up and smiles and starts to sweep. The person puts down the broom and grasps a vacuum and begins to vacuum the dining room.,broom;chair;floor;table;vacuum,The person stood up from the chair to sweep the floor. They set the broom down and began to use the vacuum.;A person is sitting in a chair holding a broom. They stand and sweep while smiling. the put the broom down and vacuum the floor.,c137 16.20 29.00;c098 0.00 16.70;c152 0.10 7.00;c059 0.00 4.90;c011 0.00 7.10;c154 1.50 8.10;c127 4.50 29.00;c138 14.80 22.60;c099 9.50 17.60;c102 0.00 12.40;c138 11.10 18.50,27.67\r\nMVIKS,QB52,Home Office / Study (A room in a house used for work),7,6,Yes,One person stands in front of a television on a shelf smiling and laughing.,television,A person is seen watching televsion.,c132 0.00 31.00,30.04\r\nVAAXH,ZAWX,Home Office / Study (A room in a house used for work),4,6,Yes,A person is walking towards the table and drinks a glass of water then places it on a desk.,cup;desk;glass;table;water,\"A person walks into a room at takes a glass of water from a table. As they are drinking the water, they walk over to a desk, then set the water down.\",c106 4.40 29.30;c107 4.10 32.00;c109 24.80 31.80;c110 2.40 10.00;c009 24.70 31.80,31.12\r\nZI3ED,YMXV,Home Office / Study (A room in a house used for work),6,7,Yes,A person runs their home office carrying a broom. The person throws the broom aside and opens the window.,broom;doorway;window,A person runs into a room and puts a broom down. The person opens a window.,c090 8.20 32.00;c099 3.20 9.70;c150 0.00 5.50;c098 0.00 10.00;c097 0.00 3.90;c101 5.40 10.50,30.79\r\n9OVST,8718,Living room,5,4,Yes,\"A person picks up some clothes from atop the desk and throws them to another person, laughing.\",chair;clothes;person,A person wads up clothing into a ball and throws it at another person,c000 0.00 6.40;c003 2.40 8.30;c059 6.10 10.70,29.33\r\nCMC93,Z68L,Bedroom,6,5,Yes,\"A person is dressing in their bedroom while sitting on a chair. They grab the doorknob, open the door and leave.\",chair;clothes;door;jacket;shoe,\"A person walks into the room, closes a door, and then sits down while changing from one jacket to another. They then stand up and leave.;The person moved the chair, closed the door, took off the jacket, sat on the chair, put on shoes,stood up from the chair, put back on jacket, then opened the door.\",c006 1.60 13.40;c141 25.10 34.00;c148 12.80 31.70;c154 37.50 49.10;c001 10.00 19.70;c002 15.20 29.60;c008 46.90 53.00;c059 11.50 20.20;c151 11.00 22.80;c148 9.70 18.90;c055 16.00 27.50;c155 7.60 16.80,51.96\r\nQEZX9,XXN8,Kitchen,4,7,Yes,A person is closing the stove and another person is working on the laptop.,laptop;light;stove,\"A person is standing in the kitchen and fixing the stove, and turns off the light. Another person is holding a laptop and playing with it.\",c047 0.20 32.00;c052 0.00 32.00;c105 11.00 16.10;c051 0.20 32.00,31.12\r\n891C5,EIO2,Bathroom,5,6,Yes,a person is laughing while putting dishes in the sink,dish;sink,A person walks to a sink and washes dishes. hey then walk away.,c118 0.00 31.00;c121 0.30 27.50,30.17\r\n7VMDP,0KZ7,Bathroom,4,7,Yes,A person was undressing in front of a mirror while another person was leaving their pill box on the counter,box;clothes;doorway;mirror;phone/camera;table,\"A person is standing in front of a mirror, taking off a jacket and a sweatshirt. Another person walks in and puts a box on the table.\",c096 0.00 28.00;c009 10.20 16.10;c040 8.30 15.80;c042 10.10 16.00;c155 0.00 28.00;c001 8.80 13.80;c097 9.30 14.10;c017 10.50 15.40,26.92\r\nYT43U,9PLL,Kitchen,4,3,Yes,A person is tidying the desk and then holding a book in the kitchen.,book;desk;dish;shelf;table,A person is tidying up a kitchen counter.;Person walk into the kitchen moving thing around on the countertop,c012 3.00 34.20;c119 3.00 34.20;c082 3.00 48.70,50.21\r\nBV53G,4I2W,Living room,6,6,Yes,A person is holding a door open but is having a hard time keeping it open.  A person is leaving while trying to take a camera and many other things through the door.,books;box;clothes;door;papers;rug,A person moving a rug to open a door.Another person picking up box fill of papers and carrying it to the door.;A couple of people in a room cleaning.One person is carry a bundle of stuff and going out a door. The other person is pulling on a door trying to open it.,c008 0.00 21.50;c002 2.20 31.00;c154 3.60 8.90;c000 2.80 31.00,29.92\r\nDRIWX,UTMU,Laundry room,5,5,Yes,\"While in the laundry room, person was taking the clothes out of the garment bag. There were also dirty clothes wrapped in a blanket. The detergent was lying on top of the washing machine. There were at least two loads of dirty clothes that needed washing.\",bag;blanket;clothes,A person is grabbing some clothes from a grey bag and putting the clothes inside a washing machine while bending over.,c001 0.00 39.00;c002 0.00 4.10;c002 2.20 7.90;c002 13.30 18.20;c005 0.00 39.00,37.71\r\nD7M6N,KFGP,Kitchen,3,6,Yes,A person is opening a bag of groceries and putting then away and then sneezing on a picture in a kitchen.,bag;box;food;fridge;groceries;refrigerator;table;waste basket,\"A person some groceries out of a bag and sets them on a waste basket. They set the bag down on the counter and put the items into the refrigerator. Then they walk into the hallway and sneeze.;A person holding a bag, takes things out of the bag, then puts them in the fridge and sneezes.\",c130 0.00 17.20;c021 0.00 5.10;c153 20.90 32.00;c142 14.60 21.90;c024 5.20 11.00;c143 11.00 18.30;c063 0.00 8.40;c042 0.00 4.50;c062 0.00 8.90;c063 7.90 12.80,31.38\r\n8VQBR,LTAC,Stairs,5,5,Yes,A person walking up their stairs holding a broom begins running to pick up a bag at the top of the stairs.,bag;broom;stairs,A person is walking up the stairs with a broom while holding a bag. A person begins cleaning the stairs with the broom.,c020 12.80 31.00;c098 0.00 31.00;c022 20.40 31.00,30.50\r\nLSY08,EA2K,Living room,5,7,Yes,\"A person picks up a stack of dishes and goes to turn the doorknob in that room. This person goes through the doorway, taking the stack of dishes, and puts down the stack of dishes on the floor.\",dish;door,A person is carrying dishes through a doorway and placing them on the floor.,c097 9.50 16.90;c119 18.00 25.40;c118 0.20 25.90;c008 8.70 17.80;c120 0.00 3.70,30.92\r\nOZCGO,KQI6,Dining room,5,6,Yes,A person is standing on a pillow while laughing at a shelf.,floor;pillow,\"A person throws a pillow on the floor, stands on the pillow, and laughs.\",c080 2.30 7.20;c149 7.10 37.00;c079 3.60 37.00;c077 4.40 9.00;c152 24.00 33.20;c126 0.00 8.30,35.79\r\nV4C0P,YMXV,Bedroom,4,7,Yes,\"smiling, the person turns the doorknob to the bedroom and buts the pillow on the bed. they look out the window to see someone watching them\",bed;blanket;doorknob;pillow;window,\"A person closes a door, plays with the doorknob,  then walks over to tidy up a bed and throw a pillow. The person then looks out a window.\",c141 1.10 7.40;c080 10.00 18.50;c092 15.10 32.00;c075 10.80 15.90,30.83\r\nRJ8WY,DXDI,Laundry room,6,7,Yes,\"A person enters a laundry room and turns on a light. They tidy up, drink coffee and leave.\",clothes;cup;light,\"A person walks from around the folding door and stops at the open closet.  That person then reaches up and turns on the light then takes a cup off of the washer/dryer, takes a drink and then walks away carrying the cup.\",c104 1.30 7.10;c001 7.30 14.50;c106 13.10 19.70;c107 13.00 21.90;c110 10.30 17.20,23.58\r\nTBCJA,4I61,Pantry,5,7,Yes,A person is working on their laptop in the pantry.  The person then closes up the pantry by grabbing the doorknob.,door;laptop;light;woman,\"a woman standing and playing on a laptop.;The person is reading their laptop, they close the laptop, shut the light off, and lose the door.\",c046 16.90 23.20;c141 22.40 27.90;c105 20.00 25.30;c006 22.30 29.60,31.83\r\nC61BE,Q4IF,Kitchen,6,7,Yes,\"A person is standing in the room holding a sandwich.  The person eats some of the sandwich, then picks up a blanket off the floor and walks out.\",blanket;dish;floor;food;sandwich,A person is eating a sandwich. A person then picks up a blanket off of the floor.,c070 6.00 12.00;c073 5.00 10.00;c065 0.00 8.00;c067 0.00 12.00;c127 5.00 10.00;c156 0.00 8.00;c061 0.00 11.90;c118 0.00 12.10,13.38\r\nLTJEO,1OHU,Bedroom,7,7,Yes,\"The shoes are in front of the wardrobe on the floor,  a smiling person is opening the wardrobe door, takes out some clothes and starts dressing.\",clothes;door;dresser;floor;shirt;shoe,The person claps hands and picks up a pair of shoes off the floor. The person is smiling. The person places the pair of shoes on the dresser and takes a shirt out of the closet. The person starts to put on the shirt.,c152 0.00 8.20;c056 1.70 11.40;c148 19.00 32.00;c002 11.20 19.00;c054 0.00 12.50,30.88\r\nFQAQL,3531,Dining room,6,7,Yes,\"A person is tidying up the dining room with a vacuum, they fix the rug. The person the gets the corners clean with a broom.\",blanket;broom;corner;floor;man;rug;table;vacuum,\"A person is vacuuming a floor. They then put the vacuum down, lay a rug on the floor, and start using a broom to clean corners.;a man vacuuming the tile floor and grabbing a rug and laying it out\",c102 21.30 32.00;c137 0.00 14.10;c070 13.00 18.90;c071 12.00 32.00;c127 0.00 32.00,30.62\r\nI6PBQ,HJJ4,Bathroom,4,7,Yes,\"A person is sneezing into a sink, then watching their self make faces on a mirror while talking on a phone in a bathrooom.\",mirror;phone,A person looks in the mirror while talking on the phone.  They sneeze and continue talking on the phone.,c096 0.00 21.00;c019 3.20 21.00;c153 0.00 6.60,19.50\r\n3CA1X,LTAC,Kitchen,4,7,Yes,\"A person is in a kitchen tidying up with a broom, they then open a food container and start eating.\",broom;floor;food,A person is cleaning the floor. A person then takes some food and eat it.,c061 19.50 32.00;c098 0.00 21.50;c102 0.00 21.20;c156 23.20 32.00;c127 0.00 21.00,31.42\r\nEAKL5,QB52,Basement (A room below the ground floor),4,7,Yes,A person is tidying up their basement. They leave grasping their phone and a sandwich.,floor;phone;sadwhich;sandwich;table,A young person tidying up his room and putting stuff in his pocket.;The person goes through various items in the room before putting a cell phone in the person's pocket and walking away.,c017 19.30 28.50;c018 9.00 23.00;c009 12.30 24.80;c012 8.90 26.80;c015 17.90 28.20;c127 1.20 9.80,30.58\r\nGBGI9,DXDI,Garage,5,7,Yes,A person is running a sink.  The person is working on washing off a shelf.,shelf;sink;towel,\"A person standing in front of a bench with a towel.The person takes the towel and wipes the shelf off.;A person is in the garage. The person turns on a sink and wets a towel under the water, then the person begins washing a shelf with the towel.\",c033 0.00 9.30;c037 5.40 27.00;c038 7.00 27.00;c082 16.40 27.00,26.00\r\nCAND1,D0RU,Entryway (A hall that is generally located at the entrance of a house),5,1,No,A person is washing a glass window.  Then a person is closing a bag of groceries.,bag;cup;floor;glass;groceries;shelf;table;window,A person dusting a curtain and a person picking thing off a table placing in a bag,c111 0.00 22.60;c127 27.70 39.00;c091 7.10 23.90;c020 26.90 39.00;c154 0.00 39.00;c090 0.00 9.60;c012 27.10 39.00;c082 27.10 39.00;c092 2.40 10.60,38.04\r\n0MJHH,HR43,Laundry room,7,7,Yes,\"One person is sitting down, snuggling freshly laundered clothes and towels and laughing.\",blanket;towel,A person is sitting in front of a washer and dryer while clutching and hugging a towel.,c033 0.00 39.00;c072 0.00 39.00,38.12\r\nOJ6SX,JVLO,Living room,6,7,Yes,A person grasps a doorknob and opens a door. Another person drinks orange juice while reading a book at a table.,book;chair;cup/glass/bottle;door;sofa;table,\"A person goes up to a door, unlocks it and enters.  That person walks into the house and up to another person, who is sitting on the couch reading a book and drinking from a cup.\",c026 15.20 32.00;c032 13.50 32.00;c123 14.30 32.00;c141 0.00 16.10;c008 2.80 17.60;c059 13.60 32.00;c097 9.70 20.00;c106 15.70 20.80;c107 15.70 32.00,31.25\r\n6LUM5,PO5L,Bedroom,5,5,Yes,\"One person sitting in a chair closes a laptop, then stands by a wardrobe drinking coffee.\",chair;cup;laptop;mug,\"A person picks up a laptop off of a char and sits in the chair and looks at the laptop.  A person stands up and puts the laptop down.  A person picks up a mug, drink from the mug and walks into the next room.\",c047 1.00 17.60;c151 1.80 10.00;c051 3.40 15.40;c106 14.30 30.10;c154 5.30 16.30;c046 8.40 14.40;c048 1.00 6.40;c050 1.00 8.80;c052 6.20 12.30;c059 4.20 15.10;c107 16.40 29.50;c154 10.80 19.40;c110 13.70 19.70,30.12\r\n4MGUQ,KQI6,Bathroom,5,7,Yes,A person is washing dishes while sitting in a chair. The person looks into the mirror and drinks from a glass of water.,chair;cup;dish;faucet;glass;mirror;water,The person is sitting in front of a sink possible in the bathroom. Person seems to be washing an object then stands up to take a drink.,c096 10.00 15.80;c121 0.00 8.10;c106 11.40 18.00;c059 0.00 9.00;c109 9.70 17.50;c154 9.00 32.00;c152 18.00 32.00;c107 11.50 32.00;c118 0.00 11.00;c110 8.10 13.20;c149 13.80 32.00,31.04\r\nFU7HP,1OHU,Kitchen,5,7,Yes,A person opens the refrigerator then closes it after looking inside. Then the person sneezes as they set a laptop on the stove.,door;food;laptop;refrigerator;stove,\"A person carry a laptop walks into the room and opens the refrigerator door. That same person then closes the door,walks over to the stove and puts the laptop on top of it.\",c047 0.00 23.20;c142 11.00 15.70;c143 0.00 3.90;c006 11.10 15.80;c061 2.80 10.80;c063 1.80 6.60;c049 15.20 20.50;c062 8.30 13.90,23.88\r\nJZB97,6RE8,Bedroom,6,5,Yes,\"A person is seen with a towel in the laundry room. They put the towel down and take out a laptop, watching some videos while laughing.\",chair;clothes;laptop;table;towel;video,A person takes some clothes and puts them on a chair. The person then sits down at a computer and laughs at a video that's playing.,c051 13.40 33.00;c000 0.00 14.90;c004 0.00 13.20;c002 0.00 5.10;c052 16.50 32.00;c001 1.90 11.20;c003 2.00 11.20;c149 22.10 31.90;c059 14.50 33.00;c034 1.50 7.30;c033 0.00 7.10;c011 14.90 33.00,32.08\r\nL52DA,L4ZP,Bedroom,7,,Yes,A person is seen washing clothes. They begin taking a glass off of their desk.,clothes;cup;desk;dish;glass,A person is cleaning off a sweater with a brush and then picks up a glass that was sitting on a table.,c005 0.90 22.70;c107 21.30 28.00;c118 22.10 28.00;c120 21.30 25.90;c000 0.00 28.00,27.21\r\nZSHV8,T7C3,Kitchen,7,7,Yes,A person is putting dishes on a shelf.  The person is laughing as they go through the doorway.,bowls;closet/cabinet;cupboard;dish;doorway;plates;shelf,\"The person put plates and bowls inside of a cupboard then walked away.;A person is placing dishes into a cupboard. The person stacks two bowls on top of the dishes. The person walks away from the cupboard, yawns, and walks through a doorway.\",c081 13.50 31.20;c118 14.20 19.90;c120 13.50 31.20;c097 29.60 37.00;c082 0.00 33.60;c119 21.50 33.40;c114 3.10 32.90,36.00\r\nP4AEF,2Q9D,Bedroom,6,7,Yes,A person lying on a pillow and covered in a blanket awakens in a bedroom and begins watching television.,bed;blanket;pillow;television,A person awakens from sleep and starts watching TV while still laying in bed.,c132 3.10 30.00;c072 0.00 30.00;c078 0.00 30.00;c146 0.20 8.50;c134 0.00 30.00;c133 0.00 10.40;c152 7.40 14.50;c131 21.10 30.00,29.25\r\nYIM12,PKND,Other,6,6,Yes,A person leaves a box at the front door and rings the doorbell. This awakens another person is was sleeping in bed.,box;door,\"A person is at the front door holding a box they ring the door bell another person answers the door the person with the box walks in.;The person holds a box while ringing a doorbell, the door then opens and the smiling person enters.\",c008 15.40 24.60;c040 0.00 32.00;c152 24.90 32.00;c097 18.90 28.60,30.54\r\n2WN4P,C7O9,Hallway,6,6,Yes,\"A person is standing on the stairs with groceries, and another person is sitting on the stairs with a blanket laughing.\",bag;blanket;box;food;groceries;grocery's;stairs,Two people in a stairwell.;A person is holding food and laughing while another is sitting on some stairs.,c020 0.00 32.00;c072 0.00 32.00;c149 0.00 32.00;c061 0.00 32.00;c040 0.00 32.00;c152 0.00 22.10,30.62\r\n7TJ60,C7O9,Stairs,6,6,Yes,\"One person is standing on the stairs holding dishes, while another is throwing a pillow down the stairs.\",dish;pillow,Two people stand on a flight of stairs. One is a the top the other the bottem. The person at the top of the stairs tosses a pillow toward the person at the bottem,c118 0.00 32.00;c080 4.50 10.90,30.79\r\n6UZLM,C7O9,Stairs,6,6,Yes,\"While one person watches, another person puts a picture on the wall in the stairway, using a small chair with a big book on top to reach.\",chair;picture,A person is standing on a chair putting up a picture while another person stands on the stairs and watches.;A person is hanging a picture on the wall while standing on a chair.  Another person is standing on the stairs holding on the railing.,c060 0.00 32.00;c088 0.00 32.00;c083 0.00 6.60;c086 1.70 32.00;c084 0.00 32.00,30.75\r\nWTU0I,ENC8,Living room,6,7,Yes,\"A person is sitting in a chair, reading a book. The person turns off their reading light and leaves.\",book;chair;table,\"A person is sitting at a table and begins reading a book. Then the person puts it down and walks away.;A person is sitting at a table, opens a book and begins to read.  They read the book for a bit, and then put it down, get up from their chair, and walk off camera.\",c059 37.20 47.40;c026 0.00 45.60;c028 41.00 46.20;c030 0.00 3.50;c154 40.40 48.00;c025 37.80 46.80;c027 0.00 7.00;c029 18.80 36.20;c032 4.10 46.50;c011 0.00 43.00,58.50\r\n6TNP4,EA2K,Kitchen,7,7,Yes,\"One person is at the refrigerator pouring something in a glass, and another person is tidying up by putting stray shoes away.\",bottle;cup;floor;glass;refrigerator;shoe,A person is sitting on the floor while touching and cleaning some shoes. Another person is pouring a beverage from a refrigerator.,c143 0.00 9.80;c053 0.00 46.00;c054 0.20 46.00;c056 4.00 46.00;c107 2.90 46.00;c108 3.80 46.00;c125 0.00 46.00,44.58\r\nJ2J3Q,4I61,Pantry,6,7,Yes,\"A person is holding a sandwich, then the person starts sneezing on a box.\",doorway;food,A person walks into the bathroom and sneezes.,c153 10.00 22.60;c061 0.00 4.90;c061 2.90 9.20;c097 19.50 24.70,26.62\r\nCBPJF,KASL,Kitchen,6,7,Yes,A person puts a phone on the stove and starts to smile while looking at a laptop.,laptop;phone;stove,A person is playing on the phone. The person then walks over to a laptop and works on it.,c052 12.10 33.50;c016 0.00 14.80;c017 9.80 16.80;c152 4.50 14.70;c015 0.00 16.10,35.17\r\nVAPVR,XXN8,Kitchen,6,7,Yes,A person is tidying up with a broom in their hands. They then stop and stand by the window and look out.,broom;floor;table;window,A person sweeps the floor and the table and then looks out a window.,c102 0.00 19.90;c092 15.70 30.40;c127 0.60 7.50;c012 0.00 4.60,31.83\r\nV8GK6,WQ8Z,Recreation room / Man cave,7,7,Yes,I person is watching their laptop lying on the couch and then turns off the light.,laptop;light;sofa,A person is sitting on a cough typing on his laptop. He then turns around and turns off a light.,c122 0.00 33.00;c052 0.00 33.00;c105 24.80 33.00;c047 0.00 33.00,31.92\r\nEMV0A,IK1O,Kitchen,6,7,Yes,A person is sneezing by the stove while they cook. The person then sits in a chair.,arm;chair;food;hand;island;pot;skillet;stove;table,A person standing at a stove holding a skillet handle.The person rubs their eyes and sneezes in to their arm and shakes the skillet.The person turns and walks to a bar and sits down.;A person is sneezing while cooking. Then they go and sit down at the island and rests their chin on their hand.,c059 10.00 18.70;c153 0.00 5.50;c147 0.00 7.90;c151 8.80 17.40;c011 12.90 31.00,30.29\r\n3APWC,JVLO,Basement (A room below the ground floor),3,7,Yes,A person is working on homework while another person is playing with a bag.,bag;floor;notebook;paper;pen,\"The (shaky) video mainly focused on one person, who appears to writing in a notebook. It then pans to a second person tossing an object, possibly a pillow or bag, up and down.\",c145 0.00 28.30;c024 26.20 32.00;c020 24.70 32.00;c125 0.00 32.00,31.46\r\n0DAO5,L4ZP,Bathroom,6,6,Yes,\"A person is closing the door and setting a bag on the table. Smiling, the person sits on the toilet seat and begins to remove their shoes.\",bag;door;shoe;table,A person walks in the door with a bag.  The person then puts away the bag on a table then sits down and takes off their shoes.,c057 17.30 28.20;c008 2.00 9.70;c020 3.00 13.10;c009 8.90 14.70;c151 14.50 20.90;c141 2.40 9.50;c022 6.70 13.90,29.46\r\nIGQJP,3H6W,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person walks into their home office and sits in a chair. After a moment, the person stands and walks over to the television, turning it on.\",chair;computer;table;television,A person is walking across the room to sit in the chair. The person works on the computer. The person gets up and goes into another room. The person turns on the television.,c059 4.00 17.90;c151 3.80 8.70;c154 12.70 18.40;c132 23.30 41.00;c014 7.60 15.70;c011 3.30 9.00,48.08\r\n34OT4,YA10,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person is sitting in the study playing a game on their cell phone.  The person picks up a cup of coffee and takes a drink.  After putting down the coffee, the person grabs a pillow and puts it behind their back.\",chair;coffee;cup;game;glass;phone;pillow;table,A person is sitting at a table playing with a phone. He then takes a drink from a mug and takes a pillow and puts it behind his back on the chair.,c077 24.60 33.10;c016 0.00 17.90;c107 16.20 30.80;c015 0.00 32.10;c106 16.20 30.40;c011 0.00 32.70;c059 0.00 38.00,37.42\r\nH7BTV,6RE8,Bedroom,6,,No,A person is sitting on a chair and drinking wine while watching television and then taking out trash in a garage.,chair;dish;laptop;television,A person is sitting on a chair watching a video on their laptop or television.;A person sat in a chair while watching a video on a laptop computer screen.,c132 0.00 32.00;c059 0.00 32.00;c051 0.00 32.00;c118 0.00 32.00,31.33\r\n5AYUN,P6LJ,Living room,6,6,Yes,\"The person is struggling closing the window in the recreation room, so person gets a chair to stand on.\",blinds;camera;chair;couch;window,\"A person walks over to a window and tries to open it.  When the person can't, they stand on a couch and try again.;The person turns on the camera, moves the blinds, climbs on the couch, moves the blinds again, climbs down off the couch, then stops the camera.\",c060 20.60 39.10;c092 25.90 37.40;c150 34.90 41.00,41.88\r\n57WV7,P6LJ,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is sitting in the doorway of their recreation room. The person smiles as they play with a camera.,chair;door;phone,\"A person is sitting in a chair in the doorway while playing on their phone.;The person walks over to a door and opens it. They grab a chair and put it in the doorway and sit down on it.;A person opens a door and pulls a chair into the doorway. The person turns around and sits on the chair. Using a phone that the person had been holding, begins looking at the screen.  The person then stands up and places the phone down, turns around and pulls the chair out of the doorway.\",c151 8.40 14.60;c015 11.40 42.80;c059 9.10 14.90;c154 37.00 42.00;c151 6.00 11.00;c141 1.00 11.90;c008 1.70 7.40;c016 7.40 42.80,49.42\r\nMA15X,P6LJ,Living room,6,6,Yes,A person is watching television while snuggling under a blanket and drinking tea.,blanket;cup;glass;mug;sofa;television,\"There is a person wrapping them themselves up in a blanket.  That same person sits down on the sofa, picks up a glass and turns on the television.;A person picks up a blanket off the sofa, snuggles with it, and sits down on the sofa. They grab a mug off the coffee table and take a sip out of it while they watch TV.\",c151 16.40 25.00;c072 2.30 69.40;c106 17.50 69.00;c151 60.80 69.70;c107 22.50 66.90;c071 8.60 18.30;c109 21.80 60.10;c154 56.10 69.70;c074 65.70 72.00;c070 2.30 64.00;c110 21.00 47.40;c123 18.20 66.20;c071 5.10 67.60;c073 1.90 9.80,70.88\r\nO6V4U,YMXV,Bedroom,7,6,Yes,Person A is in a bedroom getting dressed.  Person A puts down glasses on a desk and throws a pillow onto a bed.,bed;bottle;clothes;desk;pillow,A person is dressing themselves then takes a pillow and a water bottle and puts pillow on the bed and bottle on the floor.,c077 13.10 30.30;c148 0.00 14.50;c076 13.30 29.70;c080 24.00 30.00;c079 13.00 18.20,30.83\r\nY4MW3,Z68L,Bedroom,5,7,Yes,A person is in their bedroom running around while watching themselves in a mirror. They stop and take a drink of some coffee while playing with something on their phone.,coffee;cup;mirror;phone,\"A person adjusts a mirror, paces back and forth. Then a phone is taken out, coffee is picked up and drank.\",c016 15.80 35.60;c018 13.60 19.80;c106 18.60 32.00;c107 17.10 36.50;c110 16.90 37.50;c096 9.10 18.10;c093 6.10 11.60;c017 31.20 37.30;c015 15.30 36.50;c109 31.40 37.60,37.46\r\nMTMDN,C7O9,Pantry,5,7,Yes,One person pours a drink and starts drinking while another fixes a shelf and then leaves with a vacuum.,shelf;vacuum,A person drinks while another fixes food in the pantry.,,34.04\r\nFVPMC,3531,Pantry,7,7,Yes,\"A person is putting a broom inside the pantry door, then eats a sandwich.\",broom;cabinet;dish;door;food;pantry / closet;sandwich;shelf,\"A person holds a broom and opens the doors of the cabinet. The person then puts the broom in the cabinet on top of dishes, closes the cabinet doors, picks up a sandwich from a shelf, and eats the sandwich.;This person is standing in their kitchen, opens up closet / pantry, places broom in pantry, and then picks up a dish with food and starts eating.\",c006 1.00 26.70;c065 25.20 32.20;c098 0.00 14.70;c156 25.20 31.30;c118 25.70 30.90;c008 0.00 6.20;c067 26.00 36.00;c099 14.60 22.30;c062 25.20 36.00;c113 0.00 27.70;c063 24.50 36.00;c154 0.00 36.00;c112 19.00 27.90;c114 13.20 20.90;c120 24.80 30.20;c114 2.10 26.90;c061 26.70 36.00;c081 12.80 23.50,35.25\r\n1MU5L,3H6W,Recreation room / Man cave,4,7,Yes,A person is opening a door and then lying on a sofa in the recreation room / man cave.,door;pillow;sofa,A person opens a door and then lies down on the couch.,c122 10.70 26.80;c008 3.20 9.40;c151 9.10 14.40;c078 10.40 26.60;c154 22.60 28.00,29.54\r\nW9XJX,3H6W,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"One person puts down a book and throws a blanket over their shoulder. Then, this person sneezes and watches in every direction.\",blanket;book;clock;table;towel,\"A person sets a book on a table then grabs a towel and sneezes.  Then looks around the room.;A person is walking past a door, setting a book on a table. The person drapes a blanket over their shoulder, looks at a clock, sneezes, and walks away.\",c070 8.90 24.30;c028 4.30 9.80;c153 12.60 18.10;c009 4.30 9.80;c073 10.20 24.70,25.50\r\nY2NAO,BYF9,Home Office / Study (A room in a house used for work),7,5,Yes,\"A person is lying on a blanket on the floor, grasping their camera.  The person fixes their hair and then takes a picture of themselves.\",blanket;camera;floor;hair;phone;picture,\"A person is lying on the floor on a blanket. The person sits up, fixes their hair, and then takes a selfie with a digital camera.;A person lying on a blanket on the floor awakens and sits up, running a hand through their hair as they do so.  They pick up a camera and take a picture.\",c144 8.80 15.60;c015 3.00 23.00;c124 0.00 10.70;c146 0.00 9.70;c087 15.10 23.00;c125 0.00 23.00;c016 11.50 23.00,21.50\r\nB55HG,8718,Bedroom,7,6,Yes,A person is sitting in a bedroom snuggling a picture they just removed from an old box.,bed;book;table,a person grabs a book off a table then sits in bed to read it;A person lays on their bed and opens a book and begins reading.,c151 0.00 6.70;c135 0.70 31.00;c032 1.50 31.00;c030 0.00 8.80;c154 0.00 5.60;c029 2.30 15.80;c026 0.10 31.00;c134 3.00 31.00;c027 3.20 9.10,30.33\r\nTC96C,LTAC,Recreation room / Man cave,5,7,Yes,The person was watching the phone and leaving the groceries on the floor in the Recreation room / Man cave.,chair;doorway;phone,A man is sitting and holding a phone,c015 0.00 35.00;c016 0.00 27.80;c097 25.50 31.00;c059 0.00 26.40;c154 22.20 27.10,34.29\r\nX4DG4,WG9D,Kitchen,7,7,Yes,A person sitting in a kitchen stands and walks to a window and wipes it with a towel before leaving.,towel;window,The person is standing up from sitting on the counter in order to clean the large glass display window.,c033 0.50 11.30;c154 0.20 5.20;c038 1.90 10.80;c091 1.90 10.80;c034 7.00 11.80,10.79\r\nEN0CD,3H6W,Hallway,6,6,Yes,A person in the hallway is running around. They start undressing by taking their clothes off and putting them on top of a desk.,clothes;desk;table,A person runs into the hallway and repeatedly back to the other end of the room. Then they take their jacket off and set it on the computer desk and leave.,c009 18.50 32.80;c150 0.00 15.30;c155 19.00 32.10;c001 20.00 25.40,33.58\r\nHEZBG,HR43,Kitchen,7,7,Yes,A person drinks water with their medicine then begins cooking at the stove.,food;glass;medicine;pan;stove;water,\"person took a some medicine from the bottle, had that medicine with water and preparing something on the stove\",c147 22.20 35.00;c106 12.10 25.50;c129 0.00 16.10;c107 0.00 15.80;c156 9.10 17.00;c128 0.00 16.80,33.96\r\nLYXGZ,ECB2,Bedroom,5,7,Yes,A person is standing with a box of clothes. They turn the box over and pour out the clothes.,box;clothes,A person is standing with a box,c040 0.00 5.00;c003 0.60 5.00,4.38\r\nAGSN7,9Y7F,Living room,5,1,No,A person is watching someone else throwing clothes into a bag.,backpack;bag;clothes;doorway,A guy walks into the room holding 2 clothing items and picks up a backpack and throws them individually into the backpack.,c001 17.30 32.00;c003 17.70 32.00;c021 16.20 23.90;c001 16.20 23.90;c020 15.10 24.80;c023 15.70 21.30;c000 6.30 23.40;c097 5.70 11.90;c022 18.20 24.40,30.79\r\nC93UU,LTAC,Dining room,,,No,Person is lying in doorway looking at picture of shelf and starts laughing.,doorway;shelf;wall,A person leaning against a wall in a doorway turns and looks at a shelf and starts laughing.;A person is standing in the doorway looking at a shelf and laughing.,c149 0.00 16.60,30.71\r\nV54TI,8IOD,Bedroom,6,7,Yes,\"A person is lying on a bed looking at a picture, then they take a pillow and run to the door and grab the doorknob.\",bed;door;picture;pillow,\"A person lying in bed looks at a picture they are holding.  They put it down, grasp a pillow, stand up, walk to the door, grasp the doorknob, open it and walk out.\",c008 19.50 28.70;c078 12.10 21.00;c084 0.00 9.60;c141 18.60 26.00;c134 0.00 17.30;c076 12.00 31.00;c079 10.00 18.20;c154 13.90 21.90;c088 0.00 17.50;c086 7.90 14.10;c097 26.70 31.00,30.29\r\nNQT1S,JVLO,Living room,3,5,Yes,A person is sitting on their sofa working on homework.  All of a sudden they start sneezing and can't stop.,book;chair;couch;hands;homework;paper;pencil;sofa,A person is sitting in a chair writing in a notebook. The sneeze a bunch of times.;A person is sitting at the couch working on homework. Then they sneeze.,c115 0.00 22.00;c145 0.00 21.70;c123 0.00 31.00;c153 18.30 31.00;c026 0.00 22.00;c059 0.00 31.00,30.21\r\nVZY0C,BYF9,Bedroom,4,3,Yes,A person was running to go get the groceries. They were leaving the sink,bag;bed;doorway;mirror,\"The person is standing in front of a sink and mirror, looking at their reflection. The person then runs into the bedroom and picks up a bag of groceries from the bed.;someone looking into a mirror and running to a bed and grabbing a bag\",c150 2.00 9.00;c020 9.00 20.00;c096 0.00 6.00;c097 3.50 8.10;c023 8.90 14.80;c021 10.40 17.50,19.21\r\nRR7AR,2RTW,Living room,6,6,Yes,The person walks into the home office with a camera. They begin taking pictures of the glass windows and everything else in the room. They walk to the door and take pictures of the door including of the doorknob. The last thing they do is undress in front of the mirror and they take pictures of their reflection.,clothes;mirror;phone;picture,A person comes into a room holding a camera they are taking pictures they walk over to the mirror and take more pictures they take off their shirt and take more pictures.,c015 2.60 10.40;c096 22.20 36.00;c155 12.40 22.00;c087 7.80 30.40;c018 2.00 7.00;c016 3.00 29.00;c003 30.00 35.00,38.38\r\nK63HG,2RTW,Bedroom,6,6,Yes,\"A person is walking around using a vacuum, then bends to reach under a chair and throws a pair of shoes from under there into the corner of the study.\",floor;shoe;vacuum,\"A person is  vacuuming the floor  then picks up a pair of shoes from the floor and throws them out of the room.;A person vacuuming a bedroom carpet, then the person picks up a pair of shoes and tosses them into the hallway, then starts vacuuming again.\",c137 0.00 23.50;c058 19.50 28.80;c127 0.00 32.00,30.92\r\nMHQYD,EIO2,Kitchen,6,6,Yes,A person is smiling at a window while another person is standing on a bag.,counter;window,\"Two people are talking and looking out a window, one is laughing.;2 people standing in the kitchen looking out a window.\",c092 10.20 19.10;c152 8.30 21.00;c149 8.30 21.00,30.79\r\n0BZAD,JVLO,Home Office / Study (A room in a house used for work),4,4,Yes,A person holding a bag of food is watching writing in a book.  The person finishes writing and closes the book then eats the food in the bag.,bag;book;floor;food,\"Person sitting on floor, picking up a book, writes in the book before putting it down and eating something.\",c027 7.50 12.90;c063 24.10 31.00;c156 26.20 31.30;c125 5.90 32.00;c020 19.40 32.00;c151 4.20 10.10;c061 19.40 32.00;c115 6.70 23.40;c145 8.50 20.00,30.96\r\nI5MMK,YA10,Bedroom,7,7,Yes,A person walks through the door and sits on the bed.  Another person walks in with a cup of coffee and snuggles with the other person.,bed;coffee;door;glass,\"a person walkins into a bedroom and sits down on the bed. a woman takes a photo of the bedroom and puts the camera on the drawer, sits on the bed and hugs the man\",c135 5.70 29.00;c151 4.80 9.80;c097 8.70 14.00,28.54\r\nIGDIE,YMXV,Bedroom,6,5,Yes,\"The person is dressing up in the broom closet, standing next to it is a television and a picture painting.\",clothes;shirt;television,A person is buttoning up a shirt. A person then starts watching television.;A person buttons their shirt.  Then they glance at a television.,c148 0.00 18.30;c132 22.70 34.00,33.12\r\n8XL11,WG9D,Bedroom,4,7,Yes,A person sneezing as they put clothing away in their wardrobe. The person sits down on the bed.,bed;clothes;wardrobe,A person throws clothes into a cabinet.,c003 0.00 5.00;c153 1.60 7.00;c000 0.00 6.80,6.12\r\n0EGNU,3VLX,Closet / Walk-in closet / Spear closet,5,7,Yes,\"One person in a chair with a pillow on it opens a book and works on some homework, smiling widely.\",book;chair;doorway;homework;paper;pillow,A person carries a pillow into a walk-in closet.  They put the pillow on a chair then they sit on it.  They pick up a book and some homework.  They read the book while holding it in one hand and they hold the homework in the other hand.,c076 0.00 13.60;c059 7.50 46.00;c026 14.30 46.00;c032 14.10 46.00;c077 0.70 9.00;c117 9.10 20.80;c027 19.60 27.60;c151 6.60 13.80;c097 2.10 7.40;c030 10.90 16.50;c145 26.60 46.00;c115 25.20 46.00;c025 13.40 18.30,45.29\r\nCJ58B,ZAWX,Bedroom,6,6,Yes,Person is watching television then opens bag of groceries and starts eating.,bag;chair;floor;food;groceries;television,\"A person is sitting in a chair looking at a blank television. The person then takes some food from a bag of groceries, eats it, and places the bag back down.\",c021 15.60 20.80;c023 14.50 19.90;c156 23.10 32.00;c059 0.00 32.00;c132 0.00 17.70;c022 18.90 27.40;c063 13.40 24.60;c126 20.30 25.40;c061 17.40 32.00;c020 15.10 26.30;c024 20.00 25.80,30.50\r\nX9Q1A,1TZV,Basement (A room below the ground floor),6,6,Yes,\"A person walks in, holding clothing. They put the clothing in a box and walk out taking the box with them.\",box;clothes;doorway,A person puts some clothes into a box.,c042 12.00 18.50;c001 2.10 8.60;c040 9.90 19.90;c097 0.00 4.20;c004 3.40 12.50;c039 7.60 13.60;c043 9.80 14.40;c002 0.00 3.00,21.54\r\nATJEO,0KZ7,Bedroom,4,6,Yes,A person is dressing by the shelf and holding a light.,bed;clothes;flashlight;jacket;phone;shirt;shitr,\"a person putting on a shirt and jacket holding a phone;A person holding a flashlight, is unfolding a shirt. Then the person puts on the shirt, and picks up a jacket.\",c148 0.00 33.00;c000 0.00 14.30;c015 0.00 33.00;c004 0.00 33.00,31.96\r\nGWZMQ,9PLL,Kitchen,6,6,Yes,A person is sitting at the table drinking something stands up and places a pillow on the chair.,chair;dish;glass;pillow;table,\"A person is sitting on a table, drinking from a glass. The person then walks over and picks up a pillow, dusts the pillow off, and places it on a chair.\",c076 24.80 36.00;c079 23.60 30.80;c154 16.10 22.70;c077 25.40 36.00;c118 0.00 24.60;c106 0.30 18.00;c119 17.50 23.90;c010 0.00 20.60,35.04\r\nB8PQL,KFGP,Laundry room,6,7,Yes,A person runs into the laundry room grasping a towel.  The person puts the towel on the table and takes the broom from in the corner to sweep the cobwebs in the window.  The person then sneezes.,broom;clothes;corner;door;table;towel;window,\"This guy just put down a towel on the table, started sweeping the window and sneezed four times in the room\",c001 0.80 5.80;c034 0.70 5.90;c098 4.30 10.40;c009 0.50 5.80;c153 12.10 20.80;c006 3.60 8.30;c102 7.30 12.10;c037 0.30 8.20;c036 2.10 6.90;c100 5.50 10.10;c097 0.00 3.70;c091 6.90 16.30;c033 0.00 5.60,24.62\r\n8WZRF,CCI9,Recreation room / Man cave,6,7,Yes,Person turns on the light and immediately sneezes.  Person turns light back off and sneezes once again after turning the light back on.  Person then walks to the desk and grabs a quick drink.  Turns the light off and sneezes again after turning the light back on.  Person A gives up and leaves.,desk;glass;light;table;towel,\"A person turns on and off a light, they then go to a desk and take a drink of water from a glass\",c105 10.20 16.90;c104 3.70 10.40;c009 22.50 28.50;c153 6.00 11.60;c110 22.90 32.80;c034 0.00 5.70;c106 24.70 30.80;c107 20.60 33.20;c109 20.20 32.80;c152 9.40 18.90,39.21\r\n8K380,YMXV,Other,6,7,Yes,One person was undressing while on the phone. The other was sneezing into a pillow.,phone;pillow,A person is standing while using their cellphone. A person sneezes two times.,c076 16.90 32.00;c015 0.00 20.00;c153 16.80 32.00;c016 0.00 19.70;c154 0.00 19.50,30.75\r\n1G9R7,Z68L,Recreation room / Man cave,6,6,No,\"A person is sitting on the sofa, pouring a drink. They take a sip and then get up and walk over to a shelf. They notice something is out of place and fix it.\",bench;bottle;controller;cup;drink;floor;glass;shelf;sofa;something;tv,\"A person walks over to a couch and sits down. The person pours a drink into a cup and then takes a drink. The person gets up from the couch and begins cleaning up things on a shelf.;The person sat on the bench, poured a drink and then tidied up the area beneath the television.\",c123 0.00 20.70;c082 15.50 34.60;c151 0.00 7.20;c154 28.60 35.00;c108 2.70 12.60;c106 11.60 16.00;c107 0.00 21.50;c109 0.00 19.00;c127 16.00 33.50,33.58\r\n63GDX,S053,Living room,6,7,Yes,\"A person stands in front of a sofa, holding a box. The person puts the box down, and runs from the room.\",box;doorway;sofa,The person opens a box then sets the box down on a sofa and runs out of the room.,c041 9.50 18.30;c040 0.00 29.30;c042 25.30 29.60;c097 28.10 32.00;c039 15.00 19.90,31.42\r\n5IW8A,DXDI,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is tidying the room, picking up a blanket from the floor. They stop to sit down on the floor, and begin drinking coffee.\",blanket;chair;coffee;cup;desk;floor;table,\"A person straightening up a desk,pushes the chair forward.The person proceeds to pick up a blanket and put it on a chair.The person sits down on the floor and drinks coffee.;A person pushes a chair in, tidies up a desk. The person puts a blanket on the back of the chair. The person sits down on the floor and drinks from a coffee cup.\",c071 8.10 19.20;c125 15.00 33.00;c106 18.90 33.00;c151 16.10 22.50;c012 2.50 10.80,32.00\r\nMXBFE,XXN8,Stairs,4,7,Yes,A person is holding a towel walking up the stairs. They look at a picture and start smiling. They then resume going up the stairs,picture;towel,\"A person walks up the stairs holding a towel. They pause to admire a picture, then continue up the stairs.\",c033 0.00 32.00;c088 1.80 13.70,31.25\r\nXDJCC,YMXV,Home Office / Study (A room in a house used for work),4,7,Yes,One person is smiling watching something on a laptop with a light nearby.,chair;desk;laptop;something;table,The person was sitting at a desk. The person smiled as they watched a video on their laptop.;A person sitting at a desk is laughing while watching something on their laptop.,c051 0.00 33.00;c152 0.00 8.60;c011 0.00 33.00;c059 0.00 33.00,31.58\r\n2JP64,2RTW,Living room,6,6,Yes,\"A person is sitting wrapped in a blanket, opening their homework while taking a bite out of a sandwich.\",blanket;dish;food;homework;paper;sandwich;sofa;table,\"A person is sitting on the sofa wrapped in a blanket, they then decide to eat a sandwich while working on homework.\",c145 23.40 32.00;c065 14.10 21.90;c156 14.40 21.90;c009 4.10 32.00;c069 11.00 21.90;c014 2.10 32.00;c068 11.00 21.90;c123 0.00 32.00;c072 0.00 6.40;c067 11.90 19.30;c118 12.50 21.90;c063 11.00 20.80;c115 3.80 32.00;c117 5.00 12.70;c011 0.00 32.00;c061 11.30 18.80,30.54\r\n1WJ6O,2RTW,Living room,6,6,Yes,\"Person walks into rec room while carrying a bag, turns on the television and sits down.  Person opens bag, takes out sandwich, and eats sandwich while watching television.\",blanket;chair;clothes;door;food;jacket;remote;sandwich;sofa;television;tv,\"A person is opening a door and walking through the doorway. The person closes the door behind them. The person puts their jacket on the floor. The person turns on the television  and watches it.;A person opens the front door, closes it, sits down on a couch, and turns on the television. Afterwards, the person takes some food and stands back up.;A person walks inside, closes the door and turns on the TV. The person sits down before standing up and watching the TV.\",c154 0.30 12.50;c132 6.60 17.80;c151 17.20 28.90;c006 5.80 23.30;c000 12.60 18.70;c097 19.80 31.90;c001 12.40 28.30;c151 13.50 22.30;c154 13.00 21.70;c008 0.00 7.50;c063 16.80 29.40;c123 14.10 27.50;c071 2.40 10.30;c150 5.80 16.20;c070 2.40 9.70;c067 8.60 32.00;c061 3.00 32.00;c074 5.70 10.10,31.25\r\n7VP2U,BYF9,Bedroom,6,7,Yes,\"One person is putting a laptop on a shelf by a window, and another person is eating from a sack of groceries.\",bag;bed;food;groceries;laptop;shelf;window,A person is sitting on a bed eating food from a bag and another person is by a window closing a laptop.,c046 1.70 10.80;c092 8.40 19.00;c156 1.80 19.00;c020 0.00 19.00;c047 0.00 14.90;c063 0.00 19.00;c049 8.10 14.60;c051 0.00 8.50;c135 0.00 19.00;c061 0.00 18.40;c081 5.30 15.60,17.75\r\n27SS2,2Q9D,Bedroom,7,7,Yes,\"A person is lying in their bed and watching television. They take a drink from a glass of water before they shiver a little, then get up and go close the window.\",bed;cup/glass/bottle;curtains;soda can;window,A person lying in bed who gets up and drinks a soda. The person then proceeds to his window to look out.,c134 0.00 14.30;c092 24.70 31.00;c154 19.50 26.10;c107 11.20 21.90;c135 0.00 26.30;c110 10.60 17.30;c109 15.60 21.90;c106 12.40 19.30,30.29\r\nEUV3V,D0RU,Bathroom,7,6,Yes,\"A person stands in the bathroom, holding a coffee and a book. The person puts the coffee down.\",book;coffee;cup;toilet,A person holding a mug and a book is standing in a bathroom. He puts the mug on top of a toilet as he appears to search for something.,c026 0.00 32.00;c107 0.00 17.10;c109 12.20 19.50,30.88\r\nLYDEA,L4ZP,Kitchen,4,6,Yes,A person stands in the doorway and looks at the dishes on the shelf.  The person picks up a bag off the shelf and takes a bottle of medicine out of it.  The person fixes some of the dishes and leaves the room with the medicine.,bag;dish;medicine;shelf,A person takes medicine out of a bag and then tidy's up a cupboard.,c128 11.10 18.10;c082 14.00 19.90;c022 8.30 15.50;c081 13.80 23.70;c021 7.70 15.60;c020 6.80 13.80;c120 16.20 23.50;c119 16.20 23.50,25.38\r\n0SK6H,9Y7F,Basement (A room below the ground floor),6,6,Yes,One person plays games on a laptop while another stands wrapped in a blanket grasping coffee.,bed;blanket;coffee;cup;game;laptop,A MAN ENTERS DRINKS COFFEE WITH A BLANKET AROUND HIM AND TALKS WITH A MAN WHO IS SITTING ON A BED DOING WORK ON HIS COMPUTER,c072 0.00 33.00;c106 0.00 33.00;c051 0.00 33.00;c107 0.00 33.00;c052 0.00 33.00;c135 0.00 33.00,31.50\r\nIGVLE,0KZ7,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is standing in an entryway of a home, drinking a cup of coffee. The person then starts undressing, takes out a cell phone, and snaps a selfie picture.\",clothes;cup;jacket;mirror;phone;picture;shelf;table,\"The in the video is standing in the bathroom drinking from a cup, the takes off a sweater, then takes a selfie;A person is standing and drinking a mug then decides to put it down and take a picture.\",c015 24.80 33.00;c016 25.50 33.00;c155 11.60 27.10;c087 26.90 33.00;c001 23.90 29.10;c009 18.30 23.90;c152 27.80 32.60;c018 28.00 33.00,31.62\r\nF2NAW,KQI6,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is just finishing dressing in the doorway.  They turn off the light, and close the door.\",clothes;door;light,A person stands in the closet and puts on a shirt. They then exit through the doorway after shutting off the light.,c105 16.90 21.80;c006 17.40 26.70;c097 17.70 25.00;c148 0.00 11.80;c141 21.30 27.30,31.21\r\nZ6LYG,P6LJ,Kitchen,6,6,Yes,A person runs to the refrigerator and throws open the door. They grab a snack and pause to eat it while looking at a picture held by a magnet on the door.,dish;door;food;refrigerator,The person goes is in the kitchen and moves towards the refrigerator. The person opens the refrigerator and takes some food on a plate out to eat and then places the plate back into the refrigerator when finished.,c142 36.30 42.00;c156 6.70 27.10;c063 10.80 31.00;c143 1.90 8.20;c119 30.50 40.80,41.42\r\n5QUSB,PKND,Closet / Walk-in closet / Spear closet,3,6,Yes,A person is tidying with a vacuum while another person is smiling at a book.,book;cabinet;chair;floor;magazine;mirror;vacuum,One person is reading a magazine squatting while other person vacuums the floor.  The person then begins vacuuming a mirror.;A person opens a book.The person sits down on a chair and looks at the book while smiling. Another person uses a vacuum to clean the floor and a cabinet.,c059 3.90 32.00;c026 0.00 32.00;c029 7.70 32.00;c152 6.00 32.00;c137 0.00 32.00;c027 0.00 3.10;c032 0.00 32.00;c151 1.30 9.20;c096 22.30 27.60;c025 12.50 17.90;c127 3.30 8.90,31.12\r\nM5XFI,9PLL,Kitchen,6,7,Yes,\"A person sits in a chair, reading a book. The person begins laughing, and then sneezes.\",book;chair,\"A person is sitting in a chair reading a book, laughing.\",c026 0.00 38.00;c059 0.00 38.00;c149 18.50 24.50;c029 6.40 32.40;c032 0.00 38.00,37.21\r\nOHQOO,CCI9,Kitchen,4,4,Yes,\"A person is standing in the kitchen looking out the window, then they take off their shoe and start laughing.\",box;shoe;window,A person is holding a box of shoes while looking out the window then smiles.;A person walks in to a kitchen and picks a shoe up out of a box.The person starts laughing and turns around with the box talking.,c092 1.70 10.20;c053 6.80 12.20;c149 16.10 22.10;c152 16.10 22.10;c040 10.40 18.30;c043 10.10 16.70,30.92\r\nFIA2R,ZAWX,Kitchen,7,6,Yes,The person fixed the dishes in position in their proper position on the table. They then opened a box in the corner.,box;corner;dish;table,a person is standing at a table in the corner putting food in pots and going through a box,c041 17.90 25.50;c009 0.00 7.20;c119 3.30 12.80;c044 17.70 31.00;c118 0.00 21.10,30.29\r\n6ZKZS,HR43,Bedroom,5,7,Yes,A person is pouring water in a glass to take medicine and then sneezing into a blanket in a bedroom.,bed;cup;glass;medicine;pitcher;sheet;water,\"A person sitting on a bed is pouring water from a pitcher into a glass. Then they drink the water out of the glass. Then they pick up a medicine bottle off of the bed and take some medicine. Then they drink some more water and wipe their mouth on a nearby sheet.;This person appears to be in the bedroom, sitting on bed, pouring water into a glass and taking some type of medicine.\",c106 1.40 8.10;c135 0.00 26.00;c129 10.50 20.40;c108 0.00 5.50;c153 19.50 26.00;c128 5.60 21.80,25.21\r\nA0PVR,PKND,Bedroom,6,7,Yes,A person closes a window beside a large mirror. The person then grasps the bottom of the window's roller shade and pulls down on it forcefully.,mirror;window,A person is standing in a bedroom and closing the window. He then looks over at a mirror.,c089 0.50 10.80;c092 0.00 20.30,31.58\r\nNHSAW,Z755,Living room,4,7,Yes,A person arrives home grasping a bag filled with groceries and asks the other person to help them put them away.,bag;chair;door;groceries;sofa/couch,A person comes in through the door carrying a bag they take off their jacket and put the bag down on a couch they sit down then they get back up and leave through the door.;Someone walks through a door and sits down. Then they get up and walk back out.,c020 0.00 7.60;c154 10.50 15.80;c059 7.90 13.70;c006 18.60 23.00;c008 0.80 6.40;c097 0.70 6.10;c141 16.10 21.10;c123 7.90 15.00,21.58\r\nB5UXP,X3DN,Pantry,7,7,Yes,A person is smiling while eating food from a box.,box;food,A person is eating food from a cereal box.,c061 0.00 54.00;c062 0.00 27.50;c063 0.00 26.90;c040 0.00 54.00;c156 0.00 54.00,53.00\r\n4JW8U,YMXV,Bedroom,6,7,Yes,\"The person wiped their face with the towel as they walked through the room.  They reached for the doorknob and realized they were still holding the towel, so they go and put the towel down on the workbench.\",desk;door;shelf;towel,\"A person is wiping their face with a towel, opens the door, and fold the towel then puts it away.;A person is wiping their face with a towel and walking toward a door.  They open the door, fold the towel and then place the towel under a desk.\",c141 6.50 12.60;c033 0.00 32.00;c008 6.50 12.60;c081 21.60 32.00;c034 21.60 32.00,30.75\r\nUWPIZ,YA10,Living room,6,7,Yes,\"A person is laughing as they look through books on the shelf. Another person stands nearby, watching them and smiling.\",book;shelf,A person is laughing while taking books off of a shelf.  Another person is standing nearby and smiling at the first person.,c027 0.00 5.20;c081 11.00 17.80;c152 0.00 32.00;c025 10.40 15.40;c026 0.00 32.00;c028 10.50 17.80;c030 0.00 4.90;c029 17.80 28.10;c149 3.10 14.80;c032 1.20 16.80,30.92\r\n3XDQC,HJJ4,Basement (A room below the ground floor),1,7,Yes,\"One person with hair in a towel is smiling, walking around the basement with a vacuum.\",vacuum,A person is carrying a vacuum cleaner around the room while smiling.,c137 0.00 15.10;c138 0.00 18.00;c152 0.00 4.30,17.04\r\n924QD,UTMU,Kitchen,4,7,Yes,A person is running with a sandwich.  Then a person is grasping a phone off a counter.,food;phone;sandwich;table,A person walks to and fro in a kitchen holding something. She then picks something up off the counter and regards it.,c067 0.00 31.00;c015 21.30 31.00;c061 1.80 6.70;c016 18.60 23.80;c150 20.90 26.50,30.04\r\nIF7KE,BYF9,Stairs,7,7,Yes,\"A person is walking up the stair with a broom in hand, the same then stops and stands in the same place eating some food.\",broom;food,A person is walking up stairs carrying a broom. The person sets down the broom and eats food from a bowl.,c061 0.00 22.80;c098 0.60 16.50;c099 11.70 17.40;c156 11.00 18.80,21.50\r\nFMZ4A,CCI9,Living room,6,6,Yes,A person is running around in their living room. They start dressing by taking some clothes off of a desk that is in the room.,clothes;desk;shirt,A person walks across the room and picks up a shirt off of a desk and put it on.,c148 14.20 32.00;c000 9.00 32.00;c004 16.80 31.60;c002 9.00 32.00,30.58\r\nCEKMS,5LWB,Entryway (A hall that is generally located at the entrance of a house),5,5,Yes,A person is leaving the house and grasps the doorknob while carrying a dish. Another person enters while carrying a bag.,bag;dish;doorknob;doorway;pot,A person holding a pot opens a door and exits a room. Another person with a bag enters.,c141 0.80 9.10;c120 0.00 12.00;c020 9.20 18.00;c097 5.60 10.90;c118 0.00 12.00,16.67\r\nKMZHU,BYF9,Dining room,5,7,Yes,A person is sitting on the dining room table pouring a glass of water.  The same person then picks up a phone and leaves the room.,cup;glass;phone;table;water,A person is sitting at a table and pouring a glass of water. The person then gets up and goes out the room.,c015 15.10 23.00;c011 0.00 17.90;c108 3.60 11.00;c154 13.00 19.60;c014 0.00 17.20,21.88\r\nGQZOR,QB52,Home Office / Study (A room in a house used for work),6,7,Yes,A person is sitting at a desk using a computer. They eat some food and drink from a glass before getting up and taking the dishes with them as they leave.,a small snack;chair;computer;cup;desk;food;keyboard;medicine;table;water,\"A person is sitting in a chair typing on a keyboard. Then they grab some food off the desk and eat it along with a drink.;This person is sending off an email, having a drink and a small snack before he gets up to leave the room.\",c062 10.10 14.70;c014 0.00 12.10;c107 8.90 31.00;c059 0.00 28.90;c011 0.00 26.00;c156 8.00 18.00;c106 14.20 25.70;c154 25.20 31.00;c129 9.50 21.70,30.21\r\nMAPVV,KFGP,Home Office / Study (A room in a house used for work),5,7,Yes,\"A person puts their homework down on the chair of their home office. The person makes their way to the sofa, then lies down.\",bed;book;chair;couch;homework;paper;sofa;something;table,\"A person sets something down on a table, then lays down on a couch and goes to sleep.;A person walks into the room and puts a book down on a table.   He then lies down on a bed and attempts to go to sleep.\",c115 0.20 10.40;c122 4.20 17.40;c028 17.20 30.50;c116 0.00 5.80;c117 0.00 3.10;c009 1.50 6.90;c134 29.70 33.00;c151 29.70 33.00;c026 0.00 6.80,31.67\r\n1G90H,DXDI,Laundry room,6,7,Yes,A person is lying down in their laundry room. They begin playing with a glass that they find in a box.,box;floor;glass;phone,A person lies on the floor while playing on their phone.;The person in the video is lying down on the floor while playing with a glass they are holding in the air.,c124 0.00 32.00;c107 8.10 21.40;c044 5.00 10.50;c110 4.70 11.10,30.96\r\nFR4K2,HRH1,Bathroom,4,7,Yes,\"A person folds up a blanket and throws it into the cabinet. The person washes their hands in the sink, then opens their laptop.\",blanket;cabinet;hand;laptop;mirror;towel,A person is folding a sheet they put the sheet in a closet they wash their hands and then they pick up a laptop.,c139 13.10 22.20;c047 22.00 32.50;c075 0.00 8.70;c112 7.70 14.20;c034 0.00 14.10;c048 23.40 30.10;c071 4.50 12.30;c096 0.00 4.40,31.62\r\nL67UB,9Y7F,Bedroom,7,7,Yes,A person is lying near a window while another person is closing a book.,bed;book;chair,Person A is laying down on a bed and Person B is istting on a chair working on some homework.;One person lays in bed while another person sits in a chair looking at a book.,,29.75\r\nY2TNP,KFGP,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,The person is working on homework and leaving a light on in the entryway.,book;chair;homework;light;paper;table,\"A person carrying paper and a pen walks to a door, turns on a light, and sits down. Afterwards, the person starts reading from the paper while sitting.;A person walks into a room holding a book and turns on the light and sits down in a chair. They pick up another book from a table and start writing in it. Then they get another book and open it up.\",c115 0.00 31.00;c151 3.00 8.10;c059 4.40 31.00;c104 0.30 6.10;c145 9.10 31.00;c026 0.00 31.00;c032 9.30 23.90,30.42\r\n41GXC,6RE8,Kitchen,5,7,Yes,A person sits at the table drinking from a glass. Then the person stands and begins walking to the refrigerator to put the groceries away.,chair;cup;door;food;glass;groceries;refrigerator;table,\"There is a person sitting at a table drinking something from a glass.  That person puts the glass down on the table, stands up and walks to the refrigerator.  At the refrigerator they open the door and start looking for something.\",c106 0.00 10.20;c109 7.50 12.30;c009 11.20 15.90;c154 15.40 21.90;c107 0.00 14.00;c143 19.70 27.70;c011 0.00 20.30;c008 19.10 28.30;c061 24.90 32.00;c063 22.20 31.10;c059 0.00 20.20;c110 0.00 11.40,30.71\r\n8DSGI,KQI6,Home Office / Study (A room in a house used for work),6,7,Yes,A person is putting a shirt on a chair.  Then the person is sitting down to read a book.,book;chair;clothes;doorway;floor;jacket;magazine;shelf;sweater,\"Person walks in holding jacket, puts jacket on chair, takes magazine from shelf, sits on floor, reads magazine.;A person walks into a room and puts a sweater on a chair.  The person then grabs a magazine and sits down on the floor to read it.\",c026 10.90 32.00;c030 9.00 16.40;c097 2.40 10.00;c125 15.30 32.00;c001 9.60 16.30;c027 13.40 20.00;c032 13.40 32.00;c151 13.70 19.70;c000 1.30 11.10;c025 15.90 32.00;c003 5.80 10.90,31.33\r\n2ZBL5,ZTV2,Dining room,7,5,No,\"A person is in a entryway tidying up with a broom, they then stand by a closed cabinet.\",chair;glass;phone;table,A person sitting at a table drinks a glass of water. They take a phone from their pocket and begin playing with it.,c011 0.00 31.00;c016 21.30 31.00;c018 20.80 25.60;c059 0.00 31.00;c106 0.00 21.40;c015 20.80 31.00,29.62\r\nLAJ9K,KFGP,Stairs,7,7,Yes,A person is walking near the doorway and is holding a blanket as they go up the stairs.,blanket;doorway,A person walks up the stairs holding a blanket.,c097 0.90 9.00;c070 0.80 18.80,25.00\r\nPQUF6,HJJ4,Bathroom,7,7,Yes,\"A person is washing a towel, then the person tries opening a cabinet.\",cabinet;hand;mirror;towel;water,\"A person picks up a towel and washes their hands, then they look in a mirror and try to open a cabinet;A person is taking a towel up from the cabinet. The person runs it under the water. The person hangs the towel up. The person looks at their reflection in the floor.\",c033 0.00 2.90;c034 2.70 7.40;c035 0.00 3.00;c113 14.50 19.10;c096 13.90 24.00;c139 4.20 14.00;c038 0.10 14.40,22.92\r\nSVPZT,P6LJ,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"A person is sitting on the stool grasping their shoes. The person pulls them off before putting them in the cabinet, then standing up off the stool.\",chair;clothes;door;shelf;shoe;stool,someone sitting on a step stool and taking off shoes.;Someone sits on a stool by the front door. They take off their shoes and set them on a shelf.,c053 0.00 3.80;c057 0.00 4.60;c154 25.90 45.80;c054 44.10 57.80;c151 0.00 2.90;c057 17.10 26.10;c001 47.30 53.70;c056 20.90 29.60;c056 41.80 49.00;c056 45.00 49.90;c081 47.60 54.00;c059 0.30 9.90,58.71\r\nVDUO1,UTMU,Pantry,4,7,Yes,\"A person is fixing a sandwich, then throwing away trash and then washing dishes in a pantry.\",dish;sandwich,A person is making a sandwich and then cleans some dishes.,c066 0.00 18.40;c121 22.20 37.00;c118 21.10 37.00;c067 0.00 18.90;c068 13.80 19.10;c120 20.80 26.00,35.54\r\nY49WR,OUKK,Bedroom,5,7,Yes,\"A person walks into the laundry room, dressing. The person looks into the mirror for a moment, then takes their phone out and takes a picture.\",clothes;mirror;phone;picture,person getting dressed takes a picture in mirror,c087 15.40 23.00;c096 4.40 23.80;c148 3.90 14.30;c000 4.00 11.20,24.00\r\n8Z5SJ,Z68L,Bathroom,7,7,Yes,A person in the bathroom is closing a window while holding their shoes. They then proceed to start undressing.,clothes;doorway;jacket;jeans;shoes;window,\"A person closes a window, then takes off a jacket;A person walks into a bathroom, closes a window, drops shoes onto floor, pulls up jeans, takes off a jacket, then hangs the jacket on a door knob.\",c089 4.20 18.80;c000 7.90 21.10;c001 12.00 26.50;c003 6.40 19.00;c155 8.70 25.60;c097 2.10 6.70,29.96\r\nGN9IH,WQ8Z,Kitchen,5,5,Yes,A person is drinking and opening medicine on a shelf.,beverage;cabinet;phone;soda,a person drinks a soda and grabs a phone out of the cabinet;A person is drinking a beverage. A person then opens and closes a cabinet.,,23.08\r\nDUNVR,C7O9,Kitchen,6,6,Yes,\"A person is smiling as they're closing the door to the pantry, holding a jar of peanut butter.  They are carrying a pillow tucked under their arm, and a picture in their other hand - the one not holding the peanut butter.  They run out of the room with the pantry.\",door;food;picture;pillow,A person is holding food and leaning on a door. Another person is holding a pillow and a picture. The first person closes the door.;Two people are standing by an open pantry door. One is wearing a green wig and holding a jar of peanut butter. The other is holding a pillow and a picture. The first person closes the door and both run away.,c006 25.10 31.40;c084 0.00 32.00;c076 0.00 32.00;c152 0.00 28.20;c150 27.00 32.00;c061 0.00 32.00;c149 0.00 32.00,30.96\r\n7L3DI,YA10,Dining room,7,7,Yes,\"A person is sitting on the sofa and smiling. Then the person walks over to a chair and begins sitting in it, fixing their hair as the person does so.\",couch;hair;sofa;table,a person sits on the couch smiling watching something then he gets up and walks over to a table and sits in a chair;A person is laughing while sitting on a sofa than gets up and sits in a chair.,c123 0.00 11.40;c144 8.70 18.70;c059 15.40 28.00;c151 7.70 19.10;c152 0.00 12.30;c149 4.80 9.90;c154 7.00 19.50,27.33\r\nFGEJI,PKND,Garage,4,4,No,A person is eating off of dishes while watching another person running with shoes on.,car;cup/glass/bottle;shoe,Two people are in a car port. One is standing by a car.  The other is holding shoes and running in circles;A person is walking around a car holding their shoes while another person is watching them and playing on a phone,c053 0.00 32.00;c150 5.80 16.70;c053 11.60 22.10;c107 16.10 22.20;c106 26.40 31.70,30.58\r\n68QO4,IK1O,Closet / Walk-in closet / Spear closet,6,1,No,A person is cooking food and then begins dressing by the cabinet.,book;chair;floor;food;sandwich;shelf;table,\"A person is sitting on a chair reading a book.  The person puts the book on a table, and picks up food, and eats it.;A person sits on the floor, reading a book. The person closes the book and sets it on a cabinet. The person then takes a sandwich from the cabinet and takes a bite.\",c063 16.20 21.90;c069 15.30 23.00;c025 11.20 16.90;c156 19.60 31.30;c065 17.80 25.50;c081 14.20 20.40;c026 0.00 17.20;c059 0.00 32.00;c061 16.50 32.00;c032 0.00 19.50;c009 14.10 20.10,30.54\r\nJXKPA,KFGP,Stairs,4,5,Yes,The person was walking down the stairs with a phone in their hand.  They then opened a soda and poured it into a glass.,bottle;cup;glass;phone,\"a person walking down the stairs comes to the end, puts a phone in their pocket and takes a bottle and a glasses and pours the contents of the bottle into the glass\",c015 0.00 12.30;c108 14.10 23.90;c107 0.00 27.00,25.71\r\n78SO8,XXN8,Kitchen,3,7,Yes,A person turns the doorknob and opens the door to their pantry. They grab a bottle of juice and pour some into a glass and begin drinking. They place the rest of the juice into the refrigerator.,cup;door;glass;juice;refrigerator,\"Person is entering a kitchen, getting juice from a cabinet and then pouring said juice into a glass. Person then puts juice in refrigerator.\",c008 1.40 10.10;c108 6.10 11.90;c143 17.20 24.90;c142 19.90 25.20,30.25\r\nY2DK5,4OHY,Kitchen,7,7,Yes,A person sneezes while putting a bag of coffee in the refrigerator.,bag;box;coffee;cup;dish;food;fridge;refrigerator,\"This person is walking in the kitchen holding a bag, sneezes a couple times, and puts something in the fridge.;a person walks around his kitchen with a box pulls a glass out of it that he puts in the fridge while sneezing\",c020 0.00 15.80;c143 17.10 25.90;c153 21.10 28.20;c107 12.00 28.60;c119 15.60 30.00;c061 11.10 29.80;c040 0.00 15.70;c042 9.60 16.90,29.04\r\nY132T,AC0W,Stairs,5,6,Yes,A person is standing on the stairs holding a box with shoes in it.  The person takes the shoes out and walks down the stairs to leave.,box;shoe;stairs,\"A person is approaching the stairs while holding a box. The person removes shoes from the box, leaves the box on the ground, and hurries down the stairs.\",c053 8.80 28.00;c056 4.10 13.20;c041 4.50 12.80;c042 8.30 15.20;c044 2.50 17.40;c040 0.00 14.40;c039 2.50 14.60,26.67\r\n0QES3,2RTW,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"A person is throwing homework and book on hallway table while putting feet in shoes. Next, the person is grasping a frisbee and then leaving through front door.\",book;clothes;door;frisbee;shoe;table,\"A person holding some books places the books on a table. The person puts on shoes, grabs a Frisbee, opens the door and walks outside.\",c055 3.10 14.80;c006 13.20 20.20;c026 0.00 5.40;c009 0.20 5.60;c008 13.50 20.10;c028 0.10 5.60;c116 0.00 5.40;c097 12.90 21.70;c148 2.00 14.80,29.79\r\nRSTVT,3VLX,Stairs,6,6,Yes,A person runs down the stairs eating a sandwich. They finish the last bite of sandwich and then stop at the bottom step to tie their shoes.,food;shoes,A person is running down the stairs then grabs some shoes to put them on.,c150 0.10 7.40;c062 5.30 10.20;c156 0.00 7.90;c063 17.30 23.00;c061 0.00 10.20,21.62\r\nMPX3X,4I2W,Garage,6,7,Yes,\"A person is eating food, then pouring a glass of beer and finally turning off a light in a garage.\",cup;food;glass;light;sandwich;water,\"The person is eating some food. The person puts the food on the table and pours some drink in a glass. The person walks over to the light, turns it out, and leaves the room;A person is eating a sandwich, then pours some soda.\",c061 0.00 18.60;c108 11.00 24.60;c105 25.00 31.00;c156 0.00 14.70;c065 0.00 15.00;c154 0.00 31.00,30.08\r\n3P8NL,XXN8,Kitchen,5,7,Yes,A person sits in a chair and takes a set of playing cards out of the box. The person begins playing solitaire.,box;cards;chair;person;table,\"A person is holding a box of cards and sitting at a table. A person then takes out the cards from the box, and arranges them on the table.;A person pulls out a deck of playing cards and begins to play Solitaire.\",c059 0.00 3.10;c041 0.00 7.70;c009 7.40 21.40;c011 0.00 3.40;c044 0.00 10.30,31.25\r\nJ2DBI,0KZ7,Basement (A room below the ground floor),7,7,Yes,\"A person is snuggling with a towel, then running in place and finally smiling while reading a book in a basement.\",blanket;book;towel,A person wiping their face with a towel.The person jogs in place for a few seconds.The person proceeds to pick up a book and open it and start smiling.,c033 0.00 27.00;c026 11.50 27.00;c027 12.60 19.00;c029 17.70 27.00;c030 8.70 15.80;c152 17.50 27.00;c072 0.00 4.70;c070 0.00 27.00;c032 8.70 27.00,25.88\r\n5AE54,YMXV,Bedroom,7,5,Yes,A person is running to the phone and another person is tidying the table.,bed;desk;doorway;phone;table;towel,\"A person runs to pick up a phone from a bed and looks at it, then lies on the bed when a second person walks in and picks up a towel off the floor and cleans a table with it.;There's two people in the bedroom. One walks over to the bed, picks up phone and then lays down. The other picks up towel and then starts cleaning up around desk area.\",c015 5.30 11.60;c012 17.10 28.00;c036 7.80 15.10;c134 8.40 16.60;c018 2.20 10.70;c150 0.00 8.50;c035 10.10 18.50;c013 15.10 32.00;c135 4.70 12.60;c017 6.40 12.00;c097 5.80 13.50;c135 8.30 13.50;c038 14.00 20.20;c017 27.10 31.90,30.83\r\nZYZWX,2RTW,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is throwing a pillow into the wardrobe. Then, taking the dishes off the table, the person begins tidying up the room.\",book;closet/cabinet;dish;pillow;table;wardrobe,\"the person in the room searching for remote and adjusting all the things around the room, and adjusting books in proper way\",c118 4.50 12.80;c116 19.60 29.50;c113 0.00 3.70;c012 5.30 31.00;c115 11.20 31.00;c028 10.50 15.70,30.42\r\nR5O64,C7O9,Pantry,6,7,Yes,A person works at puting some groceries in the pantry while holding a sandwich on one hand.,bag;food;groceries;sandwich;shelf,\"A person takes groceries out of a bag and puts them onto a shelf, while holding onto a sandwich.;A person is standing in a pantry taking groceries from a bag and putting them on a shelf, they are holding a sandwich and take a bite of it.\",c020 0.00 7.90;c065 19.70 29.00;c020 0.00 29.00;c130 0.00 22.00;c067 0.00 29.00;c156 22.70 29.00;c081 0.00 22.00;c061 0.00 29.00;c062 1.20 6.40;c062 6.40 11.80,27.58\r\nG2NY6,HJJ4,Bedroom,6,6,Yes,A person standing in front of a table in the bedroom washing a box that holds there shoes.,box;rag;table;towel,A person is cleaning up with a towel.;The person is dusting off a box with a rag.,c012 0.00 16.00;c033 0.00 16.00;c038 0.00 16.00,15.33\r\nKN0TK,XXN8,Closet / Walk-in closet / Spear closet,7,7,Yes,A person is sitting on a chair. The person opens the wardrobe and looks inside.,chair;closet;doorknob,\"A person is sitting down, opens a closet, and looks inside.\",c113 0.70 7.60;c059 0.00 31.00;c141 0.60 6.30,30.04\r\n970NN,4OHY,Other,7,5,Yes,A person in the garage is watching something on their laptop while also eating some food. They stop eating the food and look in the mirror to see something on their face.,chair;desk;dish;food;laptop;mirror;picture;plate;sandwich;table,\"A person is sitting on a chair at a desk, interacting with a laptop, meanwhile they eat a sandwich from a plate in their lap. After a moment the person transfers the plate to the desk and checks themselves in a nearby mirror.;A person is eating a sandwich that they had on a plate and working on a laptop, they then begin to look in a mirror.\",c051 11.70 23.30;c096 19.30 31.00;c154 19.20 24.40;c059 0.00 22.10;c065 0.00 5.30;c061 0.00 22.40;c156 1.80 19.60;c011 0.00 24.10;c118 0.00 22.10;c067 0.00 19.10;c088 5.20 23.30,29.92\r\n38TA9,XXN8,Closet / Walk-in closet / Spear closet,5,2,Yes,\"While the person was opening the front doorknob, the person was throwing shoes into the closet.\",closet;clothes;door;shoe;wardrobe,A person opens a door and places a pair of shoes in the closet.;Person opens a closet door and shows off some boots and walks away.,c053 0.00 18.50;c054 6.30 18.80;c141 0.00 3.20;c008 0.00 4.80;c113 0.00 4.20;c003 2.00 17.90;c001 2.00 17.90,30.54\r\n1FA5M,XXN8,Bedroom,5,7,Yes,A person is drinking a drink while grasping a book they picked up from the desk.,book;cup/glass/bottle;desk;table,A person is drinking some water from the bottle.  The person is sitting down.  The person then reads a book.,c032 14.40 32.00;c011 0.00 32.00;c106 0.00 16.10;c026 14.40 32.00;c107 0.00 18.90;c109 13.80 19.00,30.96\r\nRRNDQ,XXN8,Kitchen,6,6,Yes,A person drinks while sitting in a chair. The person then takes some dishes and puts them in the sink.,chair;coffee;cup;dish;sink,someone sitting and drinking out of a cup;A person is seen sitting down on a chair drinking a cup of coffee then washing dishes.,c059 0.00 4.20;c154 14.20 19.00;c107 0.00 5.10;c121 15.50 32.70;c106 4.90 14.40;c119 19.00 30.30;c151 0.00 5.70;c118 0.00 14.40,31.83\r\nP76D1,4I2W,Kitchen,5,4,Yes,A person is sitting on a chair doing homework. They then start leaving and begin standing in front of the sink.,chair;dish;food;man;plate;sink;stove,\"A man sitting with a plate and food on his lap, and goes over to the sink.;The person is sitting in a chair eating food. They get up and place the dish in the chair then begin to wash the sink.\",c059 0.00 16.70;c154 12.70 19.20;c118 13.60 20.10;c061 0.00 16.10;c062 0.00 19.50;c147 0.00 19.70;c119 13.00 20.40,29.58\r\nPU53O,T7C3,Stairs,7,7,Yes,\"A person laughs as they throw a towel down the stairs, onto a chair. The person then tidies the stairs.\",clothes;floor;stairs,A person is standing on the stairs picking up clothes and throwing some of them down the stairs further and gathering some in their arms.;A person is standing in a stairway littered with clothes. The person throws the first item of clothing down the stairs and then picks the rest,c000 0.00 3.10;c003 0.00 4.30;c004 18.30 30.30;c127 3.70 9.70,30.75\r\n0CG15,PO5L,Kitchen,7,7,Yes,\"A person is sneezing while using a vacuum, then dressing, and finally opening a cabinet in a home office / study.\",cabinet;clothes;floor;kitchen;shirt;table;vacuum,\"A man sneezes and uses the vacuum, he continues to sneeze and then puts the shirt on.  Then he opens a cabinet and closes it followed by walking out of the room.;A person walks into the kitchen shirtless and sneezes repeatedly while vacuuming. They put a shirt on before opening and closing a cabinet and leave the room.\",c112 25.80 33.30;c137 1.00 13.10;c148 11.10 27.20;c113 22.80 29.70;c153 9.10 14.30;c001 19.70 24.90;c127 4.60 16.10;c002 11.10 26.70,33.08\r\nXKJAD,R1OT,Dining room,5,6,Yes,\"A person is tidying dirty dishes, then wiping a table with a towel, and then sitting and doing homework in a dining room.\",dish;homework;paper;table;towel,A person lifts some tea off a table out of the kitchen walks back in wipes the table's surface then sits at the table and begins to write in a notebook.,c145 15.10 28.00;c120 0.00 5.80;c009 7.70 12.50;c011 11.80 17.50;c116 13.00 18.10;c151 11.50 17.50;c115 13.50 17.90;c118 0.00 7.70;c120 1.60 10.10;c033 8.00 15.00;c011 13.30 28.00;c013 8.50 14.70;c035 8.00 15.10;c037 8.00 15.10;c034 8.00 15.10;c012 0.00 15.00;c117 13.50 20.20,26.96\r\n5BTFZ,YMXV,Laundry room,6,6,Yes,A person is undressing by the sofa while another person is sneezing by the window.,bed;chair;pillow;window,\"A person is sitting on a bed smiling and looking at themselves, another person is looking out a window and sneezing;A person is sitting in a chair, smiling and laughing as they flex their muscles. Another person is standing by a window sneezing.\",c092 17.50 32.00;c153 17.30 30.70;c152 0.00 20.10;c149 0.00 22.10;c059 2.90 28.00;c078 0.00 20.10;c135 0.00 20.10,31.38\r\nCQPZU,EIO2,Living room,7,6,Yes,\"A person walks into the living room. The person takes a blanket that's hanging from the doorknob, and runs out.\",blanket;door;towel,\"A person takes a blanket off a doorknob, opens the door and runs through.;A person walks to a door and takes a towel off the doorknob and puts it on their shoulder.  They open the door and run through, then walk back.\",c070 13.60 32.00;c073 11.20 32.00;c141 15.60 20.50;c150 18.00 24.00;c008 11.90 21.10;c035 8.80 32.00;c033 8.00 32.00;c097 15.90 27.30,30.75\r\n5X039,YMXV,Bedroom,5,5,Yes,A person is snuggling with a pillow and towel and then laughing at a picture in a basement.,blanket;clothes;floor;laptop;pillow;towel,\"A person is siting on a floor snuggling a pillow and a towel and smiling;This person is holding a pillow, smiling, then starts snuggling with the pillow.\",c033 0.00 32.00;c035 0.00 7.70;c078 0.00 32.00;c152 9.20 32.00;c125 0.00 32.00;c076 0.00 32.00;c070 0.00 32.00;c000 0.00 32.00,30.71\r\n49QXY,OVS2,Living room,7,7,Yes,\"A person smiles as they look in the mirror. The person begins undressing, grabs a towel, and leaves the room.\",clothes;mirror;pants;shirt;towel,A person admires themselves in a hand mirror for several moments before setting it down and undressing.  The person strips to their underwear and grabs a towel before leaving the room.;A person standing holding a mirror looking at them self and smiling.The person lays the mirror down and starts taking off their clothes  .,c093 0.00 13.00;c094 0.00 11.70;c096 0.00 12.70;c152 0.00 11.50;c155 10.50 30.20;c003 15.80 24.20;c034 25.70 33.30;c001 19.00 24.00;c035 26.20 34.00,33.29\r\n0UBYY,OUKK,Kitchen,6,7,Yes,\"A person walks back and forth in their kitchen reading a small paperback book. Their phone rings and they stand still while looking at it for a second. They hesitantly answer, have a brief chat and then leave the room.\",book;phone,A person walks into a kitchen reading a book and walking around. They stop and take out a phone and start talking on it.,c026 0.00 31.50;c032 1.60 30.80;c015 17.50 32.00;c019 17.20 31.80,33.00\r\nNALYZ,BYF9,Dining room,6,6,Yes,A person is eating and drinking while working and then putting a bottle of medicine in the cabinet in the dining room.,book;bottle;cabinet;chair;cup;dook;door;food;glass;medicine;sandwich;table,\"A person sitting at a table marking in a book.The person picks up a sandwich and take a bite .The person pours a glass of water and takes a drink.The person gets up and a door on a cabinet.;The person, sitting at a desk, reads a book and then drinks something form a cup.  Then, they stand up, and adjust something in a cabinet.\",c114 26.30 35.00;c151 25.10 34.20;c032 0.00 17.00;c113 26.30 32.30;c106 18.00 26.20;c154 24.10 28.90;c059 0.00 28.10;c011 0.00 28.10;c026 0.00 15.60;c025 11.00 17.80;c062 4.90 11.80;c063 3.70 11.60,33.58\r\nRX6R8,QB52,Basement (A room below the ground floor),6,7,No,A person is lying on the floor watching television. They play with the remote before setting it on a table.,bed;eye;phone,A person is sitting on a bed playing with their cell phone. Then they rub their eye.;A person is sitting on their bed playing on their phone.,c015 0.00 32.00;c016 0.00 32.00;c135 0.00 32.00,30.58\r\nTSKZL,OUKK,Laundry room,7,6,No,\"A person grasps a pillow from the dryer, and throws it onto a nearby shelf. The person closes the dryer door and runs out, turning off the light behind them.\",cabinet;clothes;cupboard;door;dryer;light;pillow;shelf,\"A person walked to a dryer, removed a pillow from the dryer, and placed the pillow in a nearby cupboard.;A person walks into the laundry room opens the dryer door  takes out a pillow and puts it up in the cabinet\",c076 8.30 13.00;c079 5.90 12.10;c008 10.40 15.90;c112 13.50 20.90;c077 6.20 21.10;c006 14.10 20.20;c113 10.70 17.70,29.71\r\nQJH8I,XXN8,Living room,5,7,Yes,A person is seen sitting on a sofa running their fingers through their hair. They pick up a nearby glass and begin drinking from it.,cup;glass;hair;sofa,A person is sitting on a sofa playing with hair then drinking from a glass.,c123 0.00 36.50;c106 15.00 38.50;c144 0.00 16.70;c110 13.40 18.00;c154 34.10 38.70;c107 13.80 39.80,38.54\r\nUTLNI,HRH1,Kitchen,7,6,Yes,A person is holding a phone then grasps a pot and places it on the stove.,cabinet;door;food;phone;pot;stove;table,\"A person is holding a phone and looking at it. Then they set it down on a table. Then they get a pot from an overhead cabinet and set it on the table.;A person is playing on their phone. They put it down, open a cabinet and remove a pot to  begin cooking on a stove.\",c015 0.60 10.10;c147 1.50 8.10;c008 8.90 21.10;c113 9.10 16.90;c016 0.00 5.40;c006 10.00 22.70;c009 0.40 12.40;c017 8.90 14.20,24.33\r\nWOWVL,1OHU,Recreation room / Man cave,6,7,Yes,A person takes a book from the nearest table and begins to play with the book in front of a mirror.,book;cabinet;camera;mirror;picture,A person is looking at a book. A person then takes a picture with a camera.;A person takes a book from a cabinet and looks through it. The person then takes out a mirror and looks at themselves in it.,c026 0.20 31.00;c032 0.20 31.00;c087 7.20 31.00;c093 8.40 31.00,29.71\r\nWMPWW,XXN8,Living room,5,6,Yes,One person was sneezing on the sofa. The other was closing the book to look around.,book;dog;sofa,A girl is sitting on a sofa reading a book. Another girl sits beside her and sneezes. Then a dog jumps up and interacts with them.,c123 0.00 33.00;c026 0.00 19.90;c032 0.00 20.00;c153 0.00 33.00;c151 0.00 3.80;c154 26.80 33.00;c025 1.00 17.10,32.17\r\nNDX21,L4ZP,Bedroom,7,7,Yes,A person awakens at a desk with a book on their chest. The person looks into a mirror then quickly begins working.,book;chair;homework;paper;phone;table,The person awoke in the chair while holding their phone. The person immediately started working on the homework on the table.;A person is sleeping in a chair when they wake up and check their phone and start doing homework.,c027 21.00 26.50;c014 8.60 34.00;c146 0.00 10.90;c059 0.00 34.00;c145 18.30 34.00;c015 9.80 21.60;c011 0.00 34.00;c115 0.00 23.00;c028 18.50 23.00,33.42\r\nXG839,EA2K,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is putting an old box of dishes away in the garage. The person smiles and takes a drink of coffee as they open a different box which caught their attention.,bowl;box;cup;dish;doorway;plate;shelf,\"This person walks into a room, picks up a box and carries i over to another area. Person puts box down and opens it. Looks at something in the box, puts box down and drinks something out a cup. Person then kneels down to look in another box.;A person walks into a hall, gets a couple boxes, opens them, and gets a cup from somewhere near.\",c107 23.50 49.00;c120 0.90 27.10;c106 25.00 49.00;c152 31.90 49.00;c044 11.10 17.70;c081 18.00 23.90;c039 17.30 27.50;c041 10.90 17.00;c043 0.10 8.90,47.67\r\n8UUUR,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,5,Yes,One person is sitting against a pillow when another person walks by and leaves a box of groceries in the hall.,box;chair;doorway;floor;table,\"A person walked into a house and set a box on a table.;A person is sitting in a chair, while another person walks in with a box.\",c040 0.00 11.20;c042 0.00 13.50;c009 0.00 13.50;c097 0.00 6.40;c125 0.00 9.90,15.46\r\nIZCB0,ZAWX,Bedroom,5,6,Yes,Person is opening and closing closet door. Another person is looking in mirror and whipping face with towel.,cabinet;closet;door;mirror;towel;wardrobe,A person is opening and closing a cabinet while another person is wrapping a towel around their head in front of a mirror.,c006 2.20 12.20;c008 0.30 13.40;c096 11.90 30.00;c034 11.00 30.00;c113 0.50 14.40;c112 0.00 14.30,29.17\r\nK4XO7,KASL,Living room,6,6,Yes,\"A person awakens on the sofa. The person stands up, looks in the mirror briefly, then walks out of the room.\",blanket;doorway;mirror;sofa,\"This person is laying on a couch, wakes up and walks into the other room.\",c096 8.50 23.70;c122 0.00 9.90;c146 12.90 30.90;c154 17.90 27.80;c097 39.40 42.00;c070 39.40 42.00;c072 39.40 42.00;c097 27.60 38.80;c070 18.10 26.00;c072 0.00 22.10,41.29\r\nGL38X,JVLO,Hallway,6,5,Yes,A person is using a vacuum and sneezing while another person is watching a picture on the wall.,doorway;picture;wall,Person walks by the door and began to sneeze another person walks in an looks at the pictures on the wall.,c153 0.00 7.50;c088 9.00 19.80;c097 0.00 4.20,31.46\r\n651VO,YMXV,Bedroom,5,1,Yes,\"A person is standing in the basement, putting clothes away on a shelf. The person finishes up then sits down.\",bed;clothes;man;shelf,A person stands next to a bed and begins taking clothes off a shelf. The person the places the clothes onto a bed.;a man grabbing clothes off of a line.,c135 24.10 32.00;c001 0.10 23.00;c002 0.00 21.30,30.58\r\nFCDXN,KFGP,Hallway,4,5,Yes,\"A person in a hallway is sitting on a chair undressing. They stand and put a glass on table then start walking. They stop in the doorway, then start walking again.\",chair;clothes;cup;doorway;glass;shirt;table;tie,While sitting on a chair the person loosened and removed the tie and unbuttoned a few of the shirt buttons. The person also place a glass on a countertop before exiting through a doorway at the end of the hall.;a person is sitting in a chair taking off clothes then sets a glass on a table,c097 22.80 32.00;c059 0.00 16.10;c109 13.00 18.80;c154 10.50 16.70;c155 0.00 14.10,31.29\r\nL7JYQ,ZHXJ,Stairs,6,7,Yes,\"A person runs up the stairs carrying a pile of clothes. They stop and take of their shoes, then walk away.\",clothes;doorway;shoe;stairs,\"A person jotting up the stairs while carrying clothes,the person removes a pair of shoes when reaching the top.\",c057 9.20 16.40;c058 10.10 15.90;c150 0.70 18.00;c056 9.20 16.40;c000 0.80 18.00;c097 13.30 18.00,17.00\r\n29C6X,DXDI,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is taking off their shoes and throwing down a towel.,clothes;floor;shoe;towel,\"A person is standing in the entryway and taking off their shoes, they they then take a towel off of a desk and throw it on the floor.\",c058 0.00 17.30;c034 13.20 23.00;c036 14.40 23.00;c057 0.00 17.10;c126 13.60 23.00;c155 0.80 16.50;c003 16.30 23.00,21.58\r\nQMWTF,T7C3,Living room,6,7,Yes,A person is walking smiling and holding a mirror and a box.,box;mirror;phone,A person is walking in a living room carrying a box and looking at themselves in a mirror and smiling.;A person is walking around in the living room holding a box. A person then begins to look at their cell phone.,c040 0.00 32.00,31.29\r\nJIDHM,XXN8,Kitchen,6,7,Yes,A Person is watching out the window while another person is cooking food.,food;utensil;window,Two people are standing in the kitchen. Person one is leaning against the counter while looking out the window. Person two is stirring a pan while standing in the middle of the kitchen and pretending to flip something into the air.,c092 0.00 16.50;c147 0.00 33.40;c152 16.40 26.20,33.58\r\nQ435I,DXDI,Bedroom,6,7,Yes,A person is grasping a pillow and playing on the laptop.,bed;blanket;laptop;pillow,\"a person is laying on the bed with their legs cross,holding a computer playing on a laptop;Person laying on bed with laptop in lap who appears to be watching something while holding a pillow.\",c047 0.00 31.00;c076 0.00 31.00;c134 0.00 31.00;c051 0.00 31.00;c072 0.00 31.00;c052 0.00 31.00,30.08\r\nRSJ0T,C7O9,Closet / Walk-in closet / Spear closet,6,6,Yes,Person is tidying up closet and finds medicine on floor. Another person is fixing blanket.,blanket;food;pantry;shelf;towel,\"A person is folding a towel while another person is putting food onto a shelf.;A person is folding a towel, while another person is looking through a pantry.\",c070 0.00 31.00;c062 0.00 31.00;c082 0.00 31.00;c037 0.00 31.00,30.12\r\nHMSM8,ZAWX,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is standing in their basement holding a sandwich. They open the window and start tidying up.,dish;food;sandwich;window,The person is eating a sandwich. The person walks to the window. The person opens the window;a person holds some food while standing by a door then opens a window,c090 14.30 24.80;c067 0.00 28.60;c061 0.00 26.50;c118 0.00 18.00,31.00\r\nIOMVF,L4ZP,Bedroom,5,6,Yes,\"A person is snuggling on the sofa. Then, smiling, the person walks over to look out the window.\",bed;sofa;window,A person who is lying in bed gets up and walks to a sliding door that leads outside.,c092 18.10 25.00;c122 0.00 8.60;c154 6.00 12.50;c134 0.00 9.70;c133 2.70 10.00,24.33\r\n9W9Q1,8IOD,Bathroom,7,7,Yes,\"A person is tidying up the bathroom sink. A cell phone sits on the edge of the sink as they tidy. They finish, grasp their phone, and leave the room.\",phone;sink,A person is cleaning up the bathroom sink.  The person picks up their phone and leaves the bathroom.,,31.04\r\nPWC0F,ENC8,Bedroom,5,6,Yes,A person awakens while lying in bed.  The person then gets up and starts running to grab some medicine.,bed;closet;doorway;medicine,\"a person wakes up from bed then goes and grabs something out of the closet;The person wakes up in their bed, runs to the closet, and grabs a bottle of medicine.\",c133 0.00 8.50;c146 0.00 8.50;c150 5.60 11.70;c128 8.30 27.00,26.42\r\nA2JV3,6RE8,Pantry,7,7,Yes,\"A person walks in the pantry holding a pile of dishes.  The person puts the dishes onto the shelf.  The person ties the laces in one of their shoes, then grabs a book off the shelf and leaves.\",book;dish;doorway;shelf;shoe,\"A person is holding a pot. The person puts the pot on a shelf an puts on their shoes, and walks out the door.\",c081 5.90 15.70;c118 0.00 11.10;c119 6.10 13.30;c055 10.30 19.80;c026 15.00 31.00;c097 25.10 31.00;c025 16.60 20.60;c027 16.00 20.30;c030 15.00 19.20,30.42\r\nC0GSN,9PLL,Kitchen,6,7,Yes,A person stands by the stove in the kitchen holding a picture.,photo;picture,\"A person is standing still in a kitchen, holding a picture. After a few seconds, the person smiles while holding the photo.;A person is standing in a kitchen holding a picture they look at the picture and smile.\",c152 10.10 21.40;c088 12.60 18.00;c084 0.00 32.00,31.04\r\nNPM0Z,2Q9D,Laundry room,6,6,Yes,The person is fixing some shoes on the laundry room by taking new shoes laces like they saw in the book.,bag;book;shoe,\"A person retrieves a shoelace from a bag, consults a book, then begins threading the shoelace through the eyelets of a sneaker;A person takes a shoelace out of a bag, picks up and puts down a book, and begins to thread his shoe, in the laundry room.\",c032 11.10 24.20;c028 16.70 22.40;c026 11.80 20.70,31.08\r\n12N1H,2Q9D,Laundry room,6,6,Yes,\"A person is standing in the laundry room sneezing, wearing a towel and holding a bag of clothes.\",bag;blanket;clothes;dryer;food;glass;man;washer,A young person holding and orange bag and sneezing several times.;a man sneezing holding a bag of clothes.;A person sneezes in the laundry room.  The person is holding a bag with a blanket over their shoulders.,c020 0.00 34.00;c153 0.00 34.00,33.46\r\n9KGOL,2Q9D,Laundry room,6,6,Yes,The person eating food is drinking wine from a glass.,cup;food;glass;sandwich,A person stands in the laundry room eating some food.  They take a glass and drink from it.,c106 16.80 33.00;c110 16.80 24.70;c062 11.40 19.80;c156 0.00 20.00;c107 18.80 33.00;c061 0.00 17.60;c065 0.00 17.80,31.54\r\nKG2LF,9PLL,Hallway,6,7,Yes,A person runs down the hallway while undressing.  The person throws their clothes on the floor and turns off the light.,clothes;doorway;floor;light;stove,\"The person in the video is taking off clothes and then turns off the lights.;As a person is walking into a room they are taking a shirt off, then they throw it on the floor.\",c003 13.10 18.50;c126 13.50 19.20;c155 0.00 13.30;c097 0.00 8.50;c105 23.60 28.90,31.04\r\n1L376,L4ZP,Dining room,5,6,Yes,A person is dressing while watching television. Then the person walks to the table and begins pouring herself soda as the person begins eating a sandwich.,clothes;food;glass;sandwich;table;television,A dog is being a cute.  A person the walks to the table and puts on a coat.  The person then seizes a glass and takes a drink.,c148 8.80 14.80;c156 19.50 28.00;c061 18.00 28.00;c063 17.90 28.00;c108 14.10 23.50,26.83\r\nZS7X6,UTMU,Garage,5,7,Yes,Person gets picture out box then starts washing it with cloth and then starts snuggling with picture.,box;clothes;floor;picture;towel,\"A person walks into a room and picks up a box. The person then takes a picture out of the box and begins to clean it with a towel.;A person walks into a room and picks up a box, they take a picture out of the box, clean it with a towel and hug it.  They walk out of the room.\",c040 4.50 14.20;c044 7.30 12.70;c088 10.70 16.40;c038 12.50 21.20;c041 5.40 11.00;c084 8.50 28.90;c152 19.20 28.20;c045 9.10 15.00;c043 3.10 9.90;c083 6.00 15.90;c152 29.00 32.00;c043 28.80 32.00;c083 29.00 32.00,30.92\r\n4EM25,UTMU,Hallway,6,7,Yes,A person is smiling into a phone and then throwing a pillow in a hallway.,phone;pillow,A person is looking a a phone. A person takes a pillow and throws it.,c015 0.00 3.20;c016 0.00 3.40;c076 6.00 11.00;c080 6.40 11.10;c152 0.00 4.40;c079 6.20 12.70,18.29\r\nQ3M8J,1OHU,Kitchen,6,7,Yes,\"A person pours some food from a box into a bowl. The person sits in a chair, takes a bite, and laughs.\",box;cabinet;chair;counter;dish;food;pantry;table,\"A person goes to a pantry to retrieve some cereal and pour in a bowl, when done,the person sits at the table.;There is a person standing in the kitchen.  That same person reaches into a cabinet and gets a box of cereal and pours it into a bowl. The same person takes the bowl and goes and sits at a chair at a table.\",c059 23.40 31.00;c041 3.40 9.40;c062 5.20 14.50;c040 0.00 10.10;c044 6.70 14.50;c151 23.40 30.60;c009 3.70 8.80;c119 2.40 7.70;c119 0.00 31.00;c063 0.00 4.30;c061 0.00 31.00;c156 23.10 31.00;c118 0.00 7.00,30.04\r\nWULQ2,HJJ4,Garage,6,7,Yes,\"A person sits in a chair, putting on a pair of shoes. The person stands up and smiles, and opens the door.\",chair;door;shoe,\"There is a person sitting down putting shoes on. That same person then stands up and leaves, shutting the door behind them.\",c008 24.50 29.00;c055 0.00 25.20;c059 0.00 25.00;c154 21.00 26.20;c097 25.70 29.00;c141 24.70 29.00,28.46\r\nACJBD,KFGP,Recreation room / Man cave,6,7,Yes,\"A person in their recreation room is fixing their clothes because they look a little messy. They start dressing by putting a jacket on. Afterwards, they take a pillow and a blanket and place it onto a table.\",blanket;clothes;pillow;table,A person is putting on pants. A person is adjusting their shirt. A person is putting on a coat. A person is moving a stack of folded blankets.,c009 28.90 34.80;c071 28.70 35.20;c148 12.20 23.70;c077 30.80 36.20;c004 32.00 36.70;c002 13.70 19.10,38.33\r\nG4AJK,P6LJ,Living room,6,6,Yes,\"A person sits in a chair in the bedroom, eating a sandwich.\",chair;dish;food;phone/camera;sandwich,\"A person is sitting in a chair, eating food off a plate.\",c059 2.70 41.80;c156 10.30 40.90;c154 37.80 42.40;c151 1.40 6.90;c062 35.20 40.70;c065 9.00 38.20;c118 3.70 40.30;c063 4.10 40.70;c016 0.00 2.80;c061 3.50 40.70;c120 3.50 40.70,42.25\r\nDT02O,I4RP,Kitchen,6,6,Yes,A person has their hair wrapped in a towel while cooking at the stove. They start eating bites out of the pot and then close the lid.,food;spoon;stove;towel,A person with a towel on their hair smells a spoonful of what they are cooking on the stove.,c147 0.00 6.00;c156 0.00 4.20,4.96\r\n1E7VU,F56T,Kitchen,6,7,Yes,A person is grasping the phone while putting away dishes.  They start sneezing and cannot stop.,cabinet;camera;dish;phone,\"A person is putting dishes away. A person opens a cabinet, and then starts sneezing while holding a camera.;A person takes some dishes and puts them in a cabinet. The person then sneezes a few times\",c015 2.10 32.00;c118 3.50 8.20;c153 17.50 32.00;c113 1.70 18.70;c119 3.10 18.50;c112 12.00 18.50;c120 2.70 16.50,31.12\r\nEQ36U,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,Person is tidying up floor in garage. Another person is looking at picture on phone and laughing.,floor;phone;picture,A person standing in an entryway drops pictures on the floor. Another person standing nearby plays with their phone.,c016 9.60 27.00;c126 0.00 13.00;c015 11.60 27.00,26.08\r\nBVHA7,PKND,Living room,6,6,Yes,A person is using a vacuum and tidying the room. Another person enters the room laughing. They are holding a glass of tea. They offer the tea to the person cleaning.,cup;doorway;floor;glass;vacuum,\"Person is vacuuming floor, then takes glass of coffee from another person that walked through doorway.\",c137 0.00 32.00;c110 20.40 32.00;c097 7.60 17.00;c152 0.00 15.00;c127 0.00 32.00;c107 10.50 32.00,31.25\r\n555RO,KQI6,Living room,7,7,Yes,The person is sitting on a towel and working on fixing the bathroom door.,blanket;door;floor;towel,\"A person walks into the room, grabbing a towel and puts it on to the floor next to the bathroom door. The person sits on the towel, closes the bathroom door, and begins fixing the knob.\",c006 13.90 21.20;c007 17.70 31.00;c034 4.60 12.80;c035 2.70 7.80;c151 9.30 17.90;c126 6.70 11.90;c097 0.00 4.90;c141 13.90 22.00;c125 9.90 31.00;c071 6.10 14.20,30.46\r\n3TUUI,P6LJ,Dining room,5,7,Yes,\"A person is fixing the table. The person stands and begins putting their shoes on. Then, drinking from a can of soda, the person leaves the room.\",clothes;floor;glass;shoe;table,A person walks to a table and starts fixing it Then they pick up their pink snaekers and put them on Then they take a drink,c053 21.90 34.20;c055 22.10 34.20;c154 17.90 24.00;c009 16.90 22.30;c151 3.70 14.30;c125 11.70 20.70;c148 21.00 33.50,47.25\r\nN0KQ7,1OHU,Bedroom,6,6,Yes,A person is tidying up their study. They walk to the sofa and take a seat then put on their shoes.,bed;floor;shoe;sofa;vacuum,\"A person tidies up their bedroom then sits down on the bed to put on a pair of sandals.;A person tidies up a bedroom by removing several items from atop the bed and placing them on a shelf, then moves a vacuum before moving a pair of shoes near a dresser.  The person then picks up a pair of sandals and sits on the corner of the bed to put them on.\",c055 19.90 27.00;c056 13.40 19.10;c123 17.60 27.00;c151 16.50 21.70;c135 17.70 27.00;c127 7.30 18.30,25.88\r\n30JQT,KFGP,Living room,3,6,Yes,A person is in the living room playing a video game.  The person puts down their controller and pours a glass of water on the table.,chair;controller;cup;glass;pitcher;remote;television;tv;video game;water,\"Person sitting in a chair, holding a controller, playing a video game and then sitting the controller down and pouring a drink from a pitcher.;Someone is sitting on a chair and playing video games. And then they pour themselves a glass of water.\",c108 27.70 37.00;c059 0.00 37.00;c132 0.00 27.60,35.58\r\nBPH56,6RE8,Kitchen,3,5,Yes,\"A person is standing by the table, laughing as the person collects the dishes. The person walks over to the sink and turns the light on.\",dish;doorway;light;sink;table,A person is in the living room holding a plate of food. They walk in to the kitchen and turn on the light before cleaning a dish in the sink.,c104 20.10 29.10;c121 26.50 37.50;c118 0.00 38.70;c149 0.00 13.40;c097 17.70 23.30;c120 0.00 6.80;c152 0.00 13.20,39.79\r\n38TF8,6PZN,Kitchen,7,7,Yes,One person was dressing while drinking coffee. The other was eating in front of a camera.,bowl;clothes;coffee;cup;floor;food,\"One person sits on the floor eating, while another person drinks coffee and gets dressed.;The person on the floor was eating while sitting, while the person standing in the back was adjusting his clothes\",c106 0.00 33.00;c148 0.10 20.10;c156 0.00 33.00;c061 0.00 33.00;c004 16.50 24.70;c125 0.00 33.00;c109 0.00 8.50;c107 0.00 8.50;c110 20.60 26.90,31.50\r\nEG1XK,KQI6,Kitchen,6,4,Yes,\"A person take a glass out of the cabinet and pours a cup of water. They are holding the glass, while closing the cabinet.\",cup;door;glass;shelf;water,\"A person takes a glass off a shelf, pours water into the glass and takes a drink. The person then closes the door.;The person takes a cup from the shelf and walks over to the water cooler and pours a cup of water.  The person then drinks from the cup two times and then walks out the door.\",c106 13.90 22.10;c006 28.90 35.00;c008 23.70 32.90;c107 0.50 35.00;c097 27.20 34.30;c108 2.90 16.40,33.75\r\nR9F8L,T7C3,Dining room,7,5,Yes,\"A person is working on a laptop while sitting at their dining table. They stop, and pick up a camera and grasp it in one hand and go back to working on the laptop.\",camera;chair;laptop;phone;table,\"Person coming in and picking up laptop and camera on the table, sits down, and starts working on laptop.\",c009 13.50 20.40;c047 3.70 17.50;c015 7.80 17.50;c151 13.50 19.20;c052 15.20 64.10;c059 15.20 77.20;c014 15.20 77.60;c011 15.20 77.60,81.67\r\nX898O,2RTW,Living room,6,6,Yes,The person is fixing the wardrobe in the entryway standing near the brown looking at the picture.,medicine;paper;picture;shelf;table,\"A person is putting papers onto a shelf, and organizing the shelf.;A person is tidying a shelf then taking medicine bottles and putting them on a table, they then observe a painting that is next to them.\",c088 23.40 32.00;c009 17.80 24.90;c082 0.00 28.60;c081 6.80 12.70,30.92\r\nRQVJK,ZAWX,Recreation room / Man cave,6,5,Yes,\"A person is sitting on a couch, they begin sneezing and then reach for a glass of water and medicine nearby and drink the water in the process of taking the medicine.\",chair;cup;medicine;thermos;water,Person sneezes twice while sitting in a chair and then walks over and takes medicine from a cup and drinks water from a thermos.;A person sitting in a chair sneezes a couple of times gets up goes to the table and picks up a medicine and opens it.The person picks up a water  bottle and takes the pill and drinks the water.,c106 15.80 28.50;c153 0.00 8.30;c154 4.60 32.00;c059 0.00 8.30;c129 6.40 27.90,30.58\r\n573OJ,KQI6,Recreation room / Man cave,6,7,Yes,\"A person is sitting on a sofa, covered in a blanket, drinking water and watching television. Another person walks in and turns off the light.\",blanket;cup;light;sofa;television;water,A person is wrapped in a blanket on a sofa.  The person picks up a bottle of water and takes a drink while watching television.  Another person turns off a light.,c072 0.00 32.00;c123 0.00 32.00;c110 9.10 15.10;c105 26.60 31.00;c106 13.30 25.80;c132 0.00 17.10;c070 0.00 32.00,30.83\r\nBHP7U,0KZ7,Kitchen,7,7,Yes,\"A person is holding a coffee cup, then the person begins cooking food on the stove.\",coffee;cup;food;stove,A person is drinking coffee and cooking food on a stove.,c106 0.00 6.90;c147 0.00 26.00,25.50\r\nTF9NQ,0KZ7,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"A person is working with a broom, then the person starts pouring water on a towel.\",broom;cup;dish;floor;glass;steps;water,A person sweeps the floor then stops and picks up a glass of water and waters plants.;Person sweeping floor and stairs with broom. Then picks up glass of water and pours it on the floor.,c102 0.00 13.50;c127 0.00 13.50;c110 10.40 16.10;c118 11.70 28.00;c108 14.50 28.00,26.96\r\nEOELV,0KZ7,Bedroom,6,7,Yes,A person awakens then walks to their wardrobe. The person then picks up a bag and puts items inside.,bag;bed;clothes,A person is waking up and putting things into their bag.,c021 12.30 26.40;c146 0.00 13.10;c154 4.60 12.40;c002 22.30 28.00;c133 0.00 11.90,27.33\r\nR3ZN9,PO5L,Recreation room / Man cave,4,7,Yes,\"A person is sneezing on a picture, then working on homework at a desk in a recreation room / man cave.\",couch;paper/notebook;papers;picture;sofa;table,\"someone sitting on a couch sneezing messing with some papers.;A person walks into the room holding something,the person sits down on the couch and sneezes a couple of times, the person puts something on the nightstand, then the person gets up and walks out of room\",c009 9.90 15.70;c151 1.80 7.90;c153 4.40 13.50;c154 26.50 31.80;c123 3.40 30.80;c117 14.30 19.00;c086 9.90 15.20;c088 3.40 13.40;c116 15.00 19.10;c011 3.40 31.80;c084 2.10 15.80;c145 14.80 30.20;c115 13.70 30.00,32.88\r\nX4YHQ,P6LJ,Recreation room / Man cave,4,7,Yes,A person is sitting in the rec room with a towel on. The person starts to tidy up the desk.,chair;closet/cabinet;clothes;desk;shelf;table;towel,\"A person is wrapping themselves in a towel in the living room, then sitting down in a chair. After standing up the person moves objects around on their desk.\",c012 29.20 56.60;c151 9.30 18.20;c154 22.60 29.20;c112 41.70 46.50;c033 1.80 14.40;c082 29.50 41.90;c081 39.60 45.40;c059 10.40 28.90,57.75\r\nMC25U,4I61,Garage,5,7,Yes,\"A person carries a box into their garage, they set the box onto a cabinet and open it only to be startled and run out of the garage.\",box;cabinet,\"A person walks into a room and puts a box on a shelf. They then open the box, then runs away.\",c041 11.90 22.80;c150 19.80 25.00,27.67\r\nF7OOB,D0RU,Bedroom,5,7,Yes,A person is grasping a blanket and smiling at a picture.,blanket;phone/camera;picture;wall,\"A person walks into a room and looks a picture. The person picks up a blanket, and takes the picture down from the wall.;A person picks up a blanket then takes a picture from a coatrack.\",c073 19.00 27.30;c083 26.00 33.00;c088 21.10 33.00;c087 26.00 33.00;c071 17.40 33.00;c070 18.70 33.00,31.58\r\nLFPLP,DLI2,Kitchen,7,7,Yes,A person is cooking on the stove then opening the refrigerator door,door;food;pot;refrigerator;spoon;stove,The person is cooking and stirs food on the stove. The person takes the spoon out of the pot and walks to the refrigerator. The person opens the refrigerator door and closes it.,c142 15.80 22.70;c147 0.00 7.10;c143 9.80 16.20,26.29\r\nT8A9E,BPRF,Bedroom,6,7,Yes,Person is lying in bed covered with blanket opening bottle of medicine and closing it again.,bed;blanket;glass;medicine;pillow,Person lying in the bed taking medicine opening the top and then closing it.;A person is laying down under a blanket then they open a medicine bottle close it and open it again.,c072 0.00 32.00;c134 0.00 32.00;c128 0.00 6.80;c129 0.00 32.00;c152 22.90 29.80,30.88\r\nS2GDP,KASL,Home Office / Study (A room in a house used for work),6,7,Yes,A person is sitting down working on their laptop. Then the person picks up the phone and begins leaving the room.,chair;doorknob;doorway;laptop;phone;table,A person sits at a desk and works on a laptop then stands up and walks out while talking on a phone.,c052 0.00 29.30;c015 24.30 34.00;c019 24.30 34.00;c011 0.00 29.20;c059 0.00 28.70;c141 28.20 32.80;c154 24.50 29.70;c097 26.80 32.20,33.25\r\nXAHU4,ZSRZ,Entryway (A hall that is generally located at the entrance of a house),7,7,Yes,A person is standing in the entryway and holding blanket. They play with their phone.,blanket;phone,A person is texting on their phone while standing in a hallway holding a blanket.,c070 0.00 12.00;c015 0.00 12.00;c016 0.00 12.00,10.92\r\n6TVXT,0KZ7,Living room,7,7,Yes,A person awakens in the living room begins tidying up around a phone on a desk.,blanket;cup/glass/bottle;desk;paper/notebook;pillow;sofa;table,\"A person is lying on a couch. They get up and pot the blanket aside, then go to a desk and start tidying up.;A person is lying on a couch with a blanket they get up tidy up a desk\",c012 19.20 30.00;c154 11.00 17.90;c122 0.00 15.70;c117 19.10 30.00;c014 17.20 30.00;c078 0.00 12.50;c110 20.80 25.80;c146 5.10 10.70;c072 0.00 8.30,28.75\r\n481PN,25TD,Bedroom,1,7,No,A person is walking towards a phone.  Then a person is putting a glass down by the phone and picking up the phone.,cup;glass;phone,\"A person is putting a glass down, then a person is picking up a phone and playing with it.\",c107 1.60 11.70;c109 5.70 12.30;c015 7.90 31.00;c016 10.00 31.00;c018 5.10 13.10,30.29\r\nUT8ZM,DXDI,Bedroom,6,7,Yes,\"A person stands in front of the window holding a sandwich, and smiles after seeing something amusing outside..\",something;window,A person is looking out the window while holding something in their hand.,c092 7.40 21.00;c152 10.00 21.00,20.33\r\n509W9,D0RU,Living room,5,5,Yes,A person snuggles up to a pillow on a sofa. The person smiles.,chair;pillow,A person sits down on a chair and snuggles with a pillow in a very creepy way.;a person sits in a chair snuggling with a pillow,c076 0.00 38.40;c078 11.80 25.40;c152 18.80 24.80;c151 32.90 37.80;c059 2.30 12.20;c154 0.00 2.60,37.71\r\nQ0G6L,BYF9,Home Office / Study (A room in a house used for work),6,6,Yes,One person in the doorway throws clothes to another person who is standing by the window undressing.,clothes;doorway;floor;window,\"A person looking out a window, is taking off a jacket, when another person throws a jacket at them.\",c092 0.00 19.00;c155 0.20 12.40;c126 5.20 10.00,17.92\r\nNXC5X,D0RU,Bathroom,5,7,Yes,A person walks through the doorway holding a towel.  The same person then starts eating an apple.,bathroom;doorway;food;towel,\"A person walks into a bathroom with a towel then walks out while eating something.;A person walks into a bathroom with a towel, they then wipe themselves down a bit and begin eating food.\",c097 0.00 4.20;c033 0.50 32.00;c156 12.40 21.40;c061 12.40 32.00,31.04\r\n3DO3W,54JK,Closet / Walk-in closet / Spear closet,5,6,Yes,A person standing in the doorway of their closet and holding a chair looks around.  They play with a towel and then throw it on to the chair.,towel,A person carrying a chair walks into a room messes with a towel and then puts the towel on the chair,c034 14.00 19.70;c036 14.60 19.50;c033 5.00 18.00,19.58\r\nV7T91,XXN8,Closet / Walk-in closet / Spear closet,7,7,Yes,\"One person works at tidying the area with a broom, then grasps a book from the closet.\",book;broom;floor,A person is using a broom to sweep up the floor. They then pick up a book and open it.,c026 22.90 32.00;c027 24.80 30.40;c098 0.00 26.60;c102 0.00 24.40;c030 23.40 28.80;c127 0.00 24.60;c115 24.20 32.00,31.04\r\nK8DDR,UTMU,Garage,7,7,Yes,A person is sneezing in a glass and then laughing while using a vacuum in a garage.,cup;floor;glass;vacuum,\"A person is using a vaccum, while drinking a glass of water.\",c137 0.00 34.00;c106 1.90 6.20;c107 0.00 34.00;c109 28.50 34.00;c127 0.00 32.20;c152 3.20 11.30,32.54\r\n5US4Z,2RTW,Living room,6,6,Yes,\"In the recreation room, a person is laughing on the sofa.  Another person is watching television in a soft chair.\",couch;sofa;television;tv,Young people sitting on a couch visiting and watching tv.,c131 0.00 33.00;c123 0.00 33.00;c149 0.00 33.00;c132 0.00 33.00,31.75\r\nFP5MM,XXN8,Kitchen,5,4,Yes,\"One person is working, tidying up with a vacuum. Then the same person washes the table and window.\",counter;mirror;stove;table;towel;vacuum;window,\"A person is in the kitchen using a handheld vacuum to clean the counters and also a towel to wipe down the window.;A person is cleaning a counter top with a small vacuum, before cleaning a window with a towel.\",c137 0.00 15.60;c091 15.10 27.80;c033 10.10 15.40;c034 26.40 31.00;c038 15.10 27.50;c013 0.30 14.50;c095 15.70 26.70,30.25\r\nRTXE6,BYF9,Kitchen,6,3,No,\"In a kitchen, a person is holding their towel in one hand and their phone in the other hand. They just finished taking a shower and are laughing at something funny on their phone.\",clothes;man;phone;towel,Person A is holding a phone and a towel and Person B is looking at the phone that Person A is holding and they are both smiling.;A woman holding a phone and a man talking to her that is standing next to her.,c033 0.00 18.00;c015 0.00 18.00;c149 10.00 16.50;c152 0.00 5.70;c000 0.00 18.00;c016 0.00 18.00,16.58\r\n7CCM1,D0RU,Hallway,7,5,Yes,A person is taking a pillow and putting it on their desk. They begin lying their head down on the pillow.,desk;head;pillow;table,\"A person walks down the hallway, picks up a pillow, puts it on a desk . Lays down on a bench and uses the pillow as a head rest.\",c009 5.50 12.80;c077 6.30 13.60;c151 9.00 15.50;c079 2.70 17.60,30.04\r\n5JSGK,OUKK,Laundry room,2,7,Yes,\"A person sits in the laundry room, doing homework. The person stands up and walks out, turning off the light behind them.\",book;clothes;homework;light;paper,\"A MAN SITS ON TOP OF A LAUNDRY MACHINE AND OPENS A BOOK AND STARTS WRITING IN IT, GETS UP AND GOES TO ANOTHER ROOM\",c115 1.10 7.70;c151 0.00 6.50;c154 21.50 26.90;c027 3.80 9.70;c032 5.90 13.20;c105 22.90 28.20;c145 12.30 25.20;c026 3.10 27.00;c030 2.00 7.80;c028 9.60 16.90;c117 9.20 13.90;c116 9.90 15.40,29.67\r\nTZR9Q,WQ8Z,Kitchen,7,7,Yes,A person is standing in the kitchen grasping their phone.  The person puts their phone on the shelf and takes a bottle of medicine off the shelf.  The person reads the label of the medicine bottle and laughs.,medicine;phone;shelf,\"The person is walking around in a kitchen, looking at their phone. The person then picks up a bottle of medication from a shelf and looks at it. The person then laughs.\",c016 0.00 10.50;c149 12.40 18.00;c015 0.00 18.00;c128 7.90 18.00,17.38\r\nUDF8X,6RE8,Bathroom,6,6,Yes,\"A person is opening the door as the person talks on the phone. Then, standing, the person leans against the sink and continues their conversation.\",door;phone;sink,A person is standing while talking on their cellphone. The open the bathroom door and turn off a sink.,c008 9.60 17.00;c015 0.00 32.00;c019 0.00 32.00;c097 18.50 32.00;c152 0.00 3.70,31.17\r\n9LF40,BYF9,Dining room,7,6,Yes,One person is eating food from a sack of groceries and another is throwing clothes out the door.,chair;clothes;food,A person clothes towels into a room. Another person is sitting at a table eating something from a bag.,c059 0.00 18.00;c061 0.00 18.00;c003 0.00 13.60;c156 0.00 18.00,17.38\r\nVCZWV,6RE8,Home Office / Study (A room in a house used for work),6,7,No,\"A person is opening a package of food. They sneeze, and grab a bottle of medicine and read the label.\",chair;desk;food;item;medicine;table;tube,\"The person is sitting at a desk eating some food. The person sneezes, and picks up an item to look at it.;A person is sitting at a desk eating food, then sneezes and inspects a tube that was lying on the desk.\",c061 0.00 22.20;c153 18.50 26.30;c156 0.00 22.50;c011 0.00 33.00;c059 0.00 33.00;c128 21.00 33.00,31.71\r\nC9VPX,25TD,Laundry room,7,7,Yes,A person takes a pillow from a washing machine and tidies some glasses that are on top of it.,glass;pillow,A person stack glasses on a washing machine. The person takes a pillow out of the washing machine and hold it and the leaves with the glasses.,c076 7.50 33.00;c107 27.70 33.00;c110 0.00 8.10;c079 7.80 13.40;c107 4.10 9.40,32.21\r\nSAJ4D,WG9D,Home Office / Study (A room in a house used for work),2,3,Yes,A person is taking their clothes and throwing it on the desk.,clothes;desk;table;towel,A person is walking and throwing clothes onto a desk.,c001 0.00 6.00;c003 0.00 6.00;c009 0.00 6.00;c036 0.00 4.20;c036 1.70 6.00,5.12\r\n3VYGU,DXDI,Laundry room,6,7,Yes,\"A person picks up the laundry soap, opens the washer, and begins pouring the soap into the washer. The person picks up their coffee and begins drinking it while looking at the light on the ceiling.\",clothes;cup;detergent;dish;washing machine,A person standing in front of washing machine pouring detergent in to a slot on the machine.The person picks up a cup and takes a drink from it .,c106 15.70 31.40;c107 15.10 32.00;c110 14.00 19.10;c005 0.00 17.70;c118 14.90 32.00,31.04\r\n94HXT,D0RU,Living room,6,5,Yes,One person washes a desk and chair in the hall when another person runs by smiling with a glass in one hand and a bag over the shoulder.,bag;chair;cup;glass;sponge;table;towel;water,\"A person grabs a rag and begins to tidy a chair and table, another person who is smiling at the person cleaning walks through carrying a bag and glass of water.;a person is wiping down furniture with a yellow sponge while another person with a backpack smiles at the camera and then leaves the room.\",c152 12.40 22.80;c012 4.60 15.80;c035 0.00 3.90,31.96\r\nP64DQ,Z755,Bedroom,6,7,Yes,One person is watching another person who is sitting looking at a picture near a pile of clothes.,clothes;floor;picture,There is a person sitting on the floor looking at a picture. There is another person standing up talking to them.;Person sitting on the floor with legs crossed while another person lots down at them,c125 0.00 8.00;c088 0.00 3.00,6.54\r\n06L9P,L4ZP,Hallway,6,7,Yes,A person is eating a sandwich and drinking a glass of water. The person sets the glass down on a table.,cup;doorway;food;glass;sandwich;table;water,The person is standing in a hallway. They drink from a cup and take a bite from a sandwich. The person leaves the cup on a table.,c009 14.20 19.50;c065 1.70 23.00;c106 0.00 14.00;c107 20.20 23.00;c109 20.20 23.00;c068 20.20 23.00;c097 19.60 23.00;c067 0.00 23.00;c061 0.00 23.00,22.12\r\nHPAYB,UTMU,Basement (A room below the ground floor),7,7,Yes,\"In the basement, a person standing starts taking clothes out of a bag. They take them to the sink and begin washing them.\",bag;clothes,A person takes some clothes out of a bin.,c002 5.20 12.70;c002 8.70 16.40;c022 5.60 13.30;c005 12.60 36.00;c001 28.80 36.70;c020 0.00 12.70;c000 8.30 37.10,38.75\r\nIQ4GU,9PLL,Living room,4,5,Yes,Person is putting cup of coffee next to food then starts smiling and drinking it.,cup;floor,A person is sitting down on the floor and drinking from a cup.;A person holding a cup sits on the floor. They drink from the cup.,c106 12.40 18.50;c125 5.10 33.00,31.62\r\nO9DOT,DXDI,Stairs,4,7,Yes,\"A person playing with their laptop on the stairs, starts working on some homework.\",laptop;notebook;paper;pen,\"A person is sitting on the stairs typing on a laptop, takes out a notebook and writes.\",c052 0.00 13.80;c145 13.00 31.00;c116 13.40 31.00;c047 0.00 16.20;c115 13.30 31.00;c117 12.80 31.00;c049 10.00 16.10,29.92\r\nUPWTC,YA10,Kitchen,5,7,Yes,\"A person is sitting at the table, grasping a blanket. They stand up and walk around a bit, and decide to put on some shoes.\",blanket;chair;shoe;table,\"Person stands up from kitchen table, holding a blanket and puts on shoes.;A person sitting at a table gets up out of a chair walks to the door turns around walks back, puts a blanket on the table proceeds to put shoes on and picks the blanket up and starts walking.\",c070 0.00 19.60;c072 5.10 18.50;c009 14.80 19.60;c154 0.20 6.00;c059 0.00 4.50;c056 16.50 23.70;c071 11.80 19.50;c074 13.50 19.50;c011 0.00 5.90;c055 17.00 26.90;c073 29.40 34.30,33.62\r\nRTEWJ,UTMU,Closet / Walk-in closet / Spear closet,6,7,Yes,A person runs into the closet and throws a sandwich onto the shelf. The person takes a towel and leaves.,blanket;doorway;sandwich;shelf;towel,\"The person is holding a sandwich and runs to the closet. The person sets the sandwich down on the shelf and grabs a towel. Leaving the sandwich on the shelf, the person walks out of the closet with the towel.\",c068 0.00 5.50;c081 0.00 5.60;c035 2.20 9.80;c150 0.00 3.50;c070 8.10 16.00;c097 0.00 3.20;c073 2.80 8.40,15.21\r\nVXRPP,KFGP,Bedroom,4,6,Yes,\"A person takes a picture of a cabinet with their camera. The person looks at the picture for a moment, then leaves.\",cabinet;camera;clothes;door;picture,opening a cabinet and closing it,c112 9.70 18.50;c015 0.00 31.50;c006 10.20 24.70;c016 8.50 32.00,30.83\r\nPJO9R,D0RU,Kitchen,6,5,Yes,\"A person opens a box, and smiling, removes a bag and a towel in the kitchen.\",backpack;bag;book;pail;shelf;towel,\"A person is looking at the contents of a shelf and moves things around on the bottom shelf. The person picks up a backpack and a towel. He places the towel over one shoulder, opens the backpack picks up a book from the floor and places the book into the backpack;A person looking at a shelf,the person bends over and moves pails on a bottom shelf.The person proceeds to pick up a towel and a book bag and places a book in side the bag.\",c021 30.30 36.00;c033 24.60 33.30;c082 2.10 18.80;c028 29.60 36.00;c116 30.20 36.00,34.54\r\n7ARCD,Q4IF,Bedroom,4,7,Yes,A person next to a blanket on a table smiles and puts a cup down.,blanket;cup;dish;glass;medicine;table,A MAN IS HOLDING A CUP AND PLACES THE CUP ON A TABLE WHILE STANDING IN FRONT OF AN OPEN DOOR IN A BEDROOM/HALLWAY,c009 0.90 5.00;c107 0.00 5.00;c109 0.40 5.00;c119 0.40 5.00,4.21\r\nCV20O,CO1W,Bedroom,4,7,Yes,\"One person runs into the bedroom eating something, then leaves with a laptop that was in a wardrobe.\",closet;doorway;food;laptop;something;wardrobe,\"A person is eating something, opening a wardrobe and getting a laptop.\",c047 17.60 27.10;c156 0.00 3.10;c113 0.70 8.10;c112 18.50 25.70;c050 14.90 24.60;c097 0.00 3.50;c114 7.00 19.90,30.29\r\nUSNP1,HJJ4,Living room,6,7,Yes,A person snuggles a blanket while lying on a sofa and looks at a picture on their phone.,blanket;phone;sofa,A person is lying on a couch and playing on a phone.;A person lying on a sofa snuggling with a blanket awakens.  They take a phone out of their pocket and look at it.,c122 0.00 20.00;c015 5.50 20.00;c018 4.30 11.40;c016 8.30 20.00,19.00\r\nBO62A,FASF,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person is sitting in front of their closet looking through a box, they take out a pair of shoes get up and start walking away.\",box;doorway;shoe,A person is rooting around in a box in the closet. The person then pulls some shoes out from next to it. The person then leaves the room.,c041 8.90 19.00;c053 16.00 31.40;c154 19.80 29.70;c054 18.30 24.70;c097 27.90 33.70,34.58\r\nWOVOX,18IT,Entryway (A hall that is generally located at the entrance of a house),4,6,Yes,\"A person in heavy outdoor clothes walks through the door, into the entryway, laughing heartily. As the person begins to undress, something through the window startles the person. The laughing stops. The person only stares, in horror.\",clothes;doorway;window,A person walks through a doorway and takes off his coat. Then he takes off his shirt and looks out a window. He sees something that scares him and he jumps away and continues looking out the window.,c092 34.80 58.00;c155 7.60 18.40;c001 13.30 19.90;c000 11.90 18.40;c149 0.00 15.30;c097 0.00 4.00,56.62\r\nF800A,R1OT,Home Office / Study (A room in a house used for work),5,7,Yes,A person is standing in an office holding a mug of coffee. They walk over to a wardrobe and realize that something is wrong with it. They put the mug of coffee down and begin fixing the bottom of the wardrobe.,closet/cabinet;coffee;cup;dish;wardrobe,\"person drinks from mug, walks to cabinet and crouches\",c106 0.00 4.60;c118 0.00 17.20;c114 13.20 31.00,29.96\r\n9W681,ZSRZ,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is holding a towel and a bag then leaves.,bag;door;towel,A person is standing in a hallway with a towel. They open a door and walk out.;A person is holding a bag and a towel. They walk out the door with both of them.,c020 0.00 14.00;c033 0.00 14.00;c006 7.70 14.00;c008 1.40 10.00;c097 6.20 14.00;c141 1.60 13.70,12.67\r\nAWAFY,D0RU,Living room,7,7,Yes,\"A person walks into the room, opening a bag of clothes. The person stands there for a minute, checks their watch, and takes some medicine.\",bag;clothes;dish;door;man;purse;scarves;table;towel,A person puts clothes in a bag while eating something and walks away.;a man pulling out scarves that are in a purse on a table.,c021 3.10 10.90;c004 6.50 17.40;c001 16.80 22.60;c097 0.20 6.50;c035 4.90 14.70;c020 2.90 18.80;c009 3.30 19.60;c118 26.70 36.60;c022 3.90 24.10;c120 26.30 36.80;c023 3.90 24.10,40.42\r\nPV3KQ,P6LJ,Living room,5,7,No,A person sitting down at a table is laughing taking groceries out of a bag.,bag;chair;groceries;table;towel,A person sits in a chair and takes groceries of a bag sitting next to a glass on a table.,c130 15.40 34.00;c021 12.50 19.20;c009 15.40 34.00;c151 4.20 10.10;c009 5.80 15.00;c059 2.70 35.10;c035 4.50 11.00;c034 6.30 18.80,36.12\r\nX4WWH,YMXV,Bedroom,5,7,Yes,\"A person is sweeping the floor with a broom.  The person opens the closet door and puts the broom inside, then closes the door, letting their hand linger on the doorknob for a while.  The person runs to the side table and picks up a camera to take a picture of the room.\",broom;camera;closet/cabinet;door;floor;hand;laptop;phone;picture;table,person sweeping floor opens a door closes door locks door picks up camera takes picture,c087 21.60 34.00;c102 0.00 16.70;c008 7.80 13.20;c141 12.70 21.00;c015 18.80 34.00;c112 9.80 15.50;c113 0.00 5.00;c051 18.80 23.60;c016 20.50 34.00;c098 7.00 16.30;c006 10.20 15.80;c127 0.00 11.70,33.25\r\nJ18JX,KFGP,Living room,4,5,No,A person is grasping a book and leaving a laptop on a table in the entryway.,book;laptop;table,A person walks by a television and door while holding a book and laptop. The person then walks over and sets the laptop on a table.,c009 12.40 20.60;c026 0.10 24.40;c049 12.60 20.60;c032 0.00 11.10,26.67\r\nA2L8M,9PLL,Other,4,5,Yes,\"A person is cleaning up the hallway with a broom. The person throws the broom through the doorway, pours some water on the floor, and begins mopping.\",broom;dish;floor;water,\"A person is sweeping the floor, then the dump a pot of water and mop it up.\",c102 0.00 15.00;c126 11.40 17.00;c118 14.60 23.40;c127 0.00 37.00;c098 0.00 15.20;c120 14.60 23.40;c099 0.00 15.70;c119 14.70 23.20,35.58\r\n96GIQ,EXQX,Living room,6,6,Yes,\"A person is holding a broom. The person puts the broom down, opens a bag, and removes a sandwich.\",bag;broom;food;sandwich,The person throws a broom on the floor. They pick up a bag and remove some food.,c101 0.00 6.40;c020 7.00 27.80;c021 6.40 18.10;c069 18.80 26.90;c063 18.70 26.40,30.33\r\n3EYLH,PO5L,Kitchen,5,7,Yes,\"A person sitting at a dining room table grasps a coffee mug and takes a drink before getting up, walking to the stove and stirring a pot and then tidying up the area around the sink.\",chair;coffee;cup;food;mug;pot;spoon;stove;table,\"A person sits down to drink from a mug. A person walks to the stove, grabs a spoon, and begins stirring in a pot. The person returns the spoon and cleans the stove.;A person is drinking coffee at a table, they then get up and begin cooking something at a stove. They begin tidying up the are around the stove.\",c009 12.40 21.10;c106 2.40 17.30;c109 13.00 18.90;c147 26.80 52.80;c154 27.40 55.00;c011 0.00 2.50;c107 0.00 2.60;c110 0.00 2.90;c147 29.00 37.00;c059 2.70 7.50;c151 0.20 7.30,55.42\r\n6KI0S,T7C3,Bedroom,6,7,Yes,\"A person awakening and undressing, then snuggling with a pillow and then using a vacuum in a bedroom.\",bed;blanket;clothes;pillow;sweater;vacuum,\"There is a person laying in a bed. They sit up, take off a sweater, fluff their pillow and lay back down before getting out of bed and vacuuming.;There is a person in bed that takes off a shirt.  That person then lays down with pillow and blanket.  That same person then gets up and vacuums.\",c137 25.20 38.00;c134 0.00 2.70;c078 9.00 27.00;c154 20.40 29.50;c155 0.80 12.30;c072 0.00 23.70;c001 0.00 12.00;c146 0.00 3.00;c135 0.00 13.60;c133 20.90 38.00;c070 16.20 22.90;c076 8.10 27.00,36.67\r\n52QLH,EIO2,Hallway,6,4,Yes,A person is walking down a hallway while smiling.  The person is opening a door and carrying dishes.  This person sees a second person who is carrying some medicine in their hands and is drinking water.,cup/glass/bottle;dish;door;window,A person walks into a room goes to another room gets a bowl while another person is in front of the window drinking from a glass,c118 7.30 23.10;c106 16.20 22.90;c008 3.70 10.10;c119 13.60 32.00;c097 0.00 4.60;c006 0.60 5.70;c092 17.90 30.40,30.54\r\nBOXK1,KQI6,Living room,6,5,Yes,A person is holding a cup of coffee another is drinking wine from a bag.,bag;coffee;cup;glass;sofa/couch,Two people are sitting on a couch. One is drinking from a cup. A man reaches into a backpack and grabs something.,c106 0.00 32.00;c021 15.60 32.00;c023 12.00 19.30;c020 11.70 32.00;c123 0.00 32.00,31.04\r\n57WXL,D0RU,Living room,7,7,Yes,A person throws a blanket over their shoulder before sneezing. The person then picks up their homework and walks away.,blanket;book;homework;paper,A person walks through a room while rubbing their nose. They pick up a blanket and sneeze. They then pick up some books or papers from a table and walk away.,c115 16.50 35.00;c117 14.80 20.60;c070 0.50 35.00;c153 4.20 15.40;c072 7.60 20.60;c030 15.60 22.00;c073 1.40 6.40;c071 28.90 34.10,33.54\r\nUILMZ,BYF9,Dining room,6,7,Yes,Standing in the dining room snuggling with a pillow. The person begins playing with a blanket.,blanket;pillow,\"The person picked up the pillow and hugged it,then picked up a blanket and wrapped it around them.\",c078 0.50 15.60;c073 0.00 5.00;c072 1.00 14.40;c071 10.70 17.90;c076 0.30 16.80;c070 15.50 30.00,28.88\r\n46A6J,X5XO,Stairs,5,5,Yes,\"A person is walking up the stairs, turns a doorknob to access a room, takes a broom, and walks back down the stairs.\",broom;closet/cabinet;door,\"A person walked up the flight of stairs and grabbed a broom, then he walked back down.\",c100 14.20 22.30;c141 11.10 17.00;c006 14.70 20.60;c008 11.10 17.30;c113 11.30 18.00;c112 14.70 21.50,34.42\r\n493U8,JVLO,Other,6,,No,A person sitting in a garage and takes off one shoe.  Another person folds a blanket while smiling.,shoes,Person bending down to tie shoes his white shoes that he is wearing.,,32.17\r\n6R7QW,1OHU,Home Office / Study (A room in a house used for work),7,7,Yes,\"One person watches video on a phone and laughs, then gets out homework and eats something.\",bag;book;food;phone;snack;video,\"A person is smiling while watching a video on a phone. The person then opens a book and begins to eat some food.;Person is looking at phone, puts it down, then picks up a book and a snack\",c015 0.00 15.10;c156 24.50 37.00;c149 5.90 11.70;c026 11.80 37.00;c061 15.40 37.00;c016 0.00 13.80;c021 17.00 23.20;c029 6.30 12.60;c027 12.00 18.10,35.83\r\n5V5EL,UTMU,Hallway,6,7,Yes,A person is sneezing as they take a picture with a camera then they being to pick up and grasp a bag of groceries.,bag;camera;groceries;phone;picture,A person takes a picture with a camera before placing the camera in a bag and lifting the bag from the floor.,c015 0.00 11.00;c017 3.70 11.00;c087 0.00 6.50;c020 7.40 19.00;c023 7.20 19.00,17.50\r\nCCCUJ,4I61,Closet / Walk-in closet / Spear closet,6,7,Yes,\"A person with a laptop tucked under their arms walks into a closet. They turn on the light and close the door. They look at a pile of blankets for a few seconds, put their laptop down off to the side, pick up one of the blankets and start snuggling with it.\",blanket;door;laptop;light;towel,\"a person walked through a door while carrying a computer. the person then turned around and turned on a light. then the person walked through the door again, then setting down the computer. then they picked up a blanket, rubbed it on their face and snuggled with it for a moment.\",c104 8.60 13.50;c047 1.60 30.10;c006 11.60 18.90;c072 32.20 61.00;c104 9.80 17.40;c049 24.60 32.20;c070 27.00 60.70;c073 27.00 35.00;c154 0.00 7.40;c097 0.70 7.70;c033 27.30 61.00,60.42\r\nKQNOV,9PLL,Entryway (A hall that is generally located at the entrance of a house),3,7,Yes,A person is in the entryway of their home undressing. They grab a towel and wipe their glass in their glasses. They grab a coffe off the table and take a drink.,blanket;clothes;cup;glass;table;towel,\"A person is undressing, picks up a towel and cleans some glasses before taking a drink.\",c037 11.20 28.10;c106 24.80 34.00;c155 3.40 13.40;c073 9.30 14.90;c000 6.80 34.00;c038 16.10 24.70;c070 11.20 34.00,32.58\r\n0SE6A,2RTW,Living room,6,6,Yes,\"The person is sleeping on the couch, their laptop is on their chest and turned on. Upon awakening they look confused and set the laptop on the coffee table. The person then stands and heads out of the living room.\",door;laptop;sofa;table,\"A person is laying down with a laptop. Then wakes up, gets up, and leaves.;A person is lying on a couch asleep with a laptop. The person wakes up, puts the laptop on a table, and gets up and leaves the room, closing the door.\",c122 0.00 21.80;c046 13.50 21.80;c146 8.00 16.90;c154 17.30 24.30;c047 0.00 21.60;c047 13.10 21.80,30.12\r\n40DSU,YA10,Hallway,7,7,Yes,A person opened a door and walked into the hallway.  The person is holding a glass of water that the person occasionally drinks from.  The person has a pair of shoes on.,cup;door;glass;water,A person is holding a glass of water and drinking the beverage.,c106 8.20 15.10;c107 1.50 7.80;c008 0.00 4.90;c097 1.60 7.30,30.42\r\nHD38O,Z68L,Bedroom,5,5,Yes,A smiling person playing a game takes medicine then eats a sandwich.,bed;cup/glass/bottle;food;medicine;phone;sandwich;table,\"A person plays with a tablet while sitting on a bed, takes a bite of a sandwich,  then pours out some medicine and drinks it before standing to turn off the camera.;A person is sitting on a bed looking at their phone, they then grab some medicine and take some.\",c065 9.40 16.10;c156 9.20 27.90;c154 29.20 35.00;c016 0.00 11.70;c135 0.00 32.50;c128 17.00 22.90;c129 27.00 32.00;c015 0.00 16.70;c009 28.90 34.10;c108 19.90 26.20;c063 9.20 15.80;c067 9.20 15.80;c109 28.90 34.40;c068 10.80 15.30;c107 14.90 33.20;c017 11.80 17.40;c069 9.40 14.20;c106 26.80 32.50;c110 13.70 22.70;c062 10.90 16.80,34.42\r\nFIZXP,HJJ4,Bathroom,6,7,Yes,A person is opening a bottle of medicine but spills some liquid on the counter.  The person is then grasping a towel and wiping it up.,bottle;cabinet;glass;medicine;sink;table;towel,\"Person opening up medicine then close it and then wipe the counter with a towel then works out of the door.;A person picks up a bottle, takes the lid off it, takes something out of it, then wipes the counter.\",c038 11.70 21.70;c128 0.00 11.30;c114 11.40 22.00;c013 11.60 22.00;c110 4.90 11.20;c033 11.10 22.00;c034 17.00 22.00;c109 9.30 14.70;c108 0.00 10.10;c035 7.90 15.40;c107 0.00 12.60,21.04\r\nXO9O3,KFGP,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,A person is taking a chair out of the entryway.  Then a person is fixing part of the doorway that was near where the chair had been.,chair,A person picks up a chair and then picks up clothes and tidy's up the floor.,,30.21\r\nBLIW5,KFGP,Laundry room,6,5,Yes,A person is seen putting some clothes away. The person then gets some food and starts smiling as they eat it.,clothes;dish;food,A person is in a laundry room folding clothes and putting them in a cart. He then stops and eats something.,c004 0.00 34.00;c002 0.00 2.80;c001 7.70 12.20;c118 22.80 34.00;c000 0.00 12.20,32.75\r\nJPVSV,LTAC,Living room,6,4,Yes,A person is seen sneezing in the doorway. After they finish they start laughing and then begin vacuuming the area.,broom;doorway;floor;mop,\"A person is walking down a hall then stand in a doorway and begins laughing, they then pick up a mop and begin to mop the floor.\",c097 16.10 22.60;c149 4.80 20.80;c099 20.80 26.40;c098 20.80 25.80;c127 20.80 31.00;c100 19.10 25.80,30.29\r\nBVCCX,X5XO,Stairs,6,7,Yes,A person is working on a laptop while taking homework out of a bag.,backpack;bag;floor;laptop;paper,A person is sitting on some stairs with a laptop. The person removes some papers from a backpack and shuffles them around..,c115 4.40 18.20;c051 0.00 3.40;c021 1.10 7.90;c052 0.00 6.20;c117 1.40 9.80;c145 4.50 32.00;c125 0.00 32.00,31.12\r\n2Z8HO,YMXV,Bedroom,6,4,Yes,A person is seen laughing while holding a pair of shoes. They lay the shoes down on a desk and begin looking at a picture.,desk;door;floor;phone;shoe,\"A person closes a closet door then puts down a pair of shoes. After that, the person leans under a desk and attends to a cellphone.;One person goes out the door and closes it.The other person is carrying shoes and puts them on the floor,the person proceeds to pick up a phone and sneezes a couple of times.\",c054 7.30 15.70;c015 11.30 32.00;c016 11.10 32.00;c018 11.10 17.30;c053 0.00 12.80;c126 8.12 15.70;c097 0.00 4.00,30.75\r\nSC3ZS,KASL,Pantry,6,7,Yes,A person is lying in a pantry taking pictures of their food with their camera. They are watching the photos the camera takes.,camera;floor;food;phone,A person is laying on the floor taking pictures of some food.,c015 0.00 32.00;c016 0.00 32.00;c124 0.00 32.00,31.04\r\n15OH5,Z68L,Bathroom,5,6,Yes,A person is fixing their makeup while standing in front of a sink and then polishing the glass in a bathroom.,lipstick;mirror;sink;towel;woman,A person puts on makeup while looking into a mirror. Then the person washes the mirror with a towel.;a woman grabbing a towel and putting on lipstick in a mirror.,c095 23.30 36.50;c033 6.30 38.00;c038 23.30 37.60,37.46\r\n9KXJ1,XARO,Bedroom,5,7,Yes,a person uses a towel while sneezing and walking past a mirror,towel,A person is standing in a room while holding a towel and sneezing into the towel.,c033 0.00 32.00;c153 0.50 20.10,30.83\r\n5AFC1,D0RU,Living room,6,7,Yes,A person is standing in the living room looking at a picture on the wall.  The person takes a sandwich off the desk and eats it.,food;picture;sandwich;table;tv,\"A person is standing and looking at a picture of a group of people, scratching, and walking over to a table to eat something.;This person is standing while watching tv, then walks away and grabs some food.\",c065 23.80 34.00;c069 21.60 27.60;c156 23.80 34.00;c063 21.60 27.60;c067 21.60 34.00;c088 0.00 19.60;c061 23.00 34.00,33.25\r\nVYD9P,6RE8,Recreation room / Man cave,7,5,Yes,A person is  standing in their recreation room. They put a coffee in a bottle on the television before leaving.,cup;laptop;table;television,A person takes a drink from a cup while watching something on the television.,c132 0.40 31.00;c106 0.00 16.00;c109 14.50 19.70;c009 14.80 19.50;c051 0.00 31.00,30.46\r\nW9HYI,PKND,Hallway,4,7,Yes,\"A person is holding a bag of groceries.  They grab some food out of the bag, open it, and start eating.\",bag;food;groceries,A person peeling a banana and eating it on the stairs.,c063 8.40 14.30;c020 0.00 33.00;c156 4.90 20.50;c061 2.10 20.00,31.50\r\nUPXBJ,9PLL,Home Office / Study (A room in a house used for work),5,6,Yes,One person opens a window after sneezing while tidying up a shelf and a chair.,chair;cloth;desk;table;towel;window,A person sneezes and then opens a window before cleaning a chair with a towel and tidying up a desk.;A person standing up sneezing.The person walks to a window locks it.The person turns and wipes a chair out with a cloth.The person proceeds to go to a desk.,c090 6.00 14.90;c153 0.00 7.90;c033 15.40 35.00;c034 15.60 35.00;c035 15.60 35.00;c012 24.20 35.00;c014 24.40 35.00,33.79\r\nGC9I8,KFGP,Closet / Walk-in closet / Spear closet,5,7,Yes,\"A person stands in front of closet, putting food away on the shelf.\",box;closet;food;shelf,\"A person walks down a hall, picks up some boxes and puts them into a closet.;A person is walking in a hallway, picks something off the floor, and puts it on a shelf or in a door.\",c062 6.10 20.80;c081 6.60 20.40;c043 5.70 11.80;c042 6.30 11.70,22.17\r\nT1OQ2,XXN8,Closet / Walk-in closet / Spear closet,7,7,Yes,\"A person stands in the closet, smiling. The person takes a drink from a glass of water, grabs a broom, and walks out.\",broom;cup;glass;water,A person is drinking a glass of water before putting the glass down and walking away with a broom.,c106 4.90 22.00;c109 17.70 22.10;c152 0.00 6.80,30.50\r\n5DEHA,0KZ7,Bathroom,7,7,Yes,\"One person throws a picture at the bathroom door, awakening another person who starts sneezing.\",floor;object,\"Person throws object at another person, other person wakes up on floor sneezing\",c146 3.60 15.10;c153 7.50 13.70;c125 10.30 25.00;c124 1.50 14.60,24.42\r\nZOTR8,T7C3,Hallway,6,6,Yes,A person is fixing their shoes in the hallway. The person picks up a glass of water from the table and begins laughing.,cup;glass of water;shoe;table,\"The person fiddled with the shoelaces of a shoe, put the shoe down, walked over to pick up a glass, and paced, shaking their head.\",c053 0.00 5.30;c054 6.70 15.00;c107 12.30 20.40;c110 10.20 18.70;c149 11.60 19.90;c152 14.30 33.00,31.54\r\nL9ANI,4OHY,Kitchen,7,7,Yes,\"A person walks into a kitchen holding a grocery bag. The person begins tidying the kitchen, before leaving.\",bag;counter;doorway;groceries;table;towel,\"A person walks through the doorway with a bag in their hand. They set it on the counter, get a towel and start cleaning the counters.;A person walks into the kitchen carrying a plastic bag.  The person sets the bag down and picks up a towel and wipes the counter.\",c020 4.00 10.50;c035 7.30 12.90;c038 14.70 20.60;c097 0.00 4.10;c130 0.00 10.80;c033 6.50 33.00;c037 6.40 33.00;c013 13.90 33.00;c009 0.00 16.70,31.54\r\n5LE93,H8N1,Other,4,7,Yes,The person is in the doorway holding a glass of water.  They are smiling.,aluminum can;cup;door;glass;woman,\"A person opens a door, drinks from a glass and smiles before walking away.;A woman walked in the line of view of the camera and took a sip out of a can, then walked out of sight.\",c107 0.40 5.70;c106 1.20 8.60;c152 7.50 13.40,21.08\r\nZ5THW,9PLL,Kitchen,4,7,Yes,\"One person tidies up some dishes, then sneezes into a towel and throws it over the doorknob.\",dishes;doorway;towel,A person does dishes and sneezed into a towel.,c034 29.30 35.00;c153 19.30 29.60;c097 0.00 32.00;c033 0.00 35.00,33.79\r\nZPAM8,EXQX,Living room,3,3,Yes,Person taking coffee from a pot and eating at a table,coffee;cup;dish;doorway;floor;table,A person is picks up a plate and cup and carries them to another room where the person sits and places the cup on a table. The person takes several drinks from the cup.,c009 8.80 13.90;c011 8.80 15.10;c106 11.40 18.10;c107 7.30 26.50;c011 9.40 61.00;c106 11.70 61.00;c109 0.00 14.20;c107 0.00 61.00;c151 7.60 13.90;c125 9.90 31.30;c119 8.80 14.50;c097 1.00 8.30,59.71\r\nU44OC,ZAWX,Kitchen,6,7,Yes,A person is looking up at a light and sneezing. Another person runs through the room holding their cell phone.,light;phone,\"This person is looking around in the kitchen, stares at a light, then sneezes, another person walks down the hallway carrying a phone and hands it to the first person.\",c015 24.30 32.00;c016 26.90 32.00;c153 11.00 18.20;c018 23.70 29.40,30.88\r\nD9YWY,ENC8,Kitchen,5,6,Yes,A person uses a stove to cook and then puts some groceries away.,bag;box;food;fridge;groceries;man;spoon;stove,A man cooking something in the kitchen and putting stuff in a fridge from a box.;Person stirs coffee on stove with a spoon from counter pick up a box began to put groceries into the refrigerator,c020 17.10 24.50;c040 17.90 43.00;c130 21.20 48.20;c044 14.80 48.20;c062 0.00 52.00;c061 14.80 48.20;c063 19.90 42.50;c042 37.70 43.60,51.50\r\nCMFMH,PKND,Kitchen,6,6,Yes,A person is fixing a door.  Then a person is working on eating a sandwich while holding the fixed part of the door with their other hand.,cabinet;door;food;rag;sandwich;screwdriver,\"Two people are in a room.  Person one is crying holding a rag. person two is crouched down fixing a cabinet, and holding a screwdriver.;A person is eating a sandwich. Meanwhile, another person is fixing a cabinet door with a screwdriver.\",c065 0.00 8.00;c067 0.00 8.70;c007 17.40 33.00;c156 0.00 8.00;c152 1.80 33.00,31.71\r\n2Q5Y2,2Q9D,Hallway,7,7,Yes,A person is closing their bedroom door as they enter the hallway. They walk into the laundry room and put their blanket into the washer for washing.,blanket;clothes;door,\"A person holding a blanket walks into the laundry room, places the blanket in the laundry, and adds detergent.\",c071 3.90 15.00;c141 0.00 4.30;c008 0.00 3.10;c070 0.00 14.60;c097 0.90 7.60;c006 0.00 4.40,30.29\r\n91VUF,KFGP,Bedroom,6,7,No,\"A person is in their bedroom laughing on their phone, they then grab a rag and start washing their television screen.\",phone;rag;television;towel,A person on the phone paces back and forth in his bedroom. The person picks up a rag and cleans a television.,c019 0.00 31.00;c033 0.00 31.00,29.62\r\nFB7MZ,TGGT,Bedroom,6,6,Yes,\"Holding a pair of shoes, the person walked out of the closet and opened the window, laughing about the absurdity of the situation.\",blinds;closet;door;shoe;table;window,A person comes out of a closet holding shoes and talking.  The person puts the shoes on a table and opens window blinds.;Someone comes out of their closet with a pair of shoes and then they set them aside to open the blinds.,c090 23.10 32.00;c008 0.00 11.40;c054 23.80 30.00;c053 8.60 29.80;c113 1.70 12.80;c097 5.20 12.30;c152 14.30 18.40,30.71\r\n2S6V7,ZEM0,Laundry room,3,,No,\"A person stands in the doorway of the laundry room, watching their clothes dry. The person begins laughing, then takes their laptop from the shelf and opens it.\",clothes;counter;floor;laptop,\"A person sits on the floor and laughs.  Then they take a laptop from the counter and open it.;A person sits on a floor disconsolately, thinks, then smiles and gets their laptop, opens it, closes it, and puts it back.\",c048 35.10 40.00;c050 22.50 30.10;c149 17.70 26.50;c152 17.70 26.50;c047 24.40 40.80;c049 37.00 42.30;c154 35.70 40.60;c151 0.00 3.50;c125 0.00 39.70;c051 29.70 40.00,41.79\r\nF8JAV,DXDI,Hallway,7,7,Yes,A person in the hallway is sitting on the floor holding a blanket begins sneezing while reading their medicine.,cup;floor;medicine;phone,\"A person is sitting on the floor and looking through a phone, while sneezing.;The person is sitting on the floor  holding a bottle of medicine looked at it and sneezed cover nose with elbow.\",c125 0.00 26.00;c153 1.00 23.00;c107 0.00 26.00;c128 0.00 26.00,25.38\r\n3AU5K,2RTW,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person is sitting in their study, working on their latest book, holding a glass of wine.\",chair;cup;desk;glass;laptop;table,A person is sitting on a desk working on a laptop  they then take a sip from a glass.;A person is sitting at a desk working on a laptop. There is a glass on the desk and the person picks it up while working.,c106 0.00 32.00;c052 0.00 32.00;c059 0.00 32.00;c110 6.10 11.80;c014 0.00 32.00;c107 7.20 32.00,30.62\r\n02CYP,2RTW,Living room,6,6,Yes,\"The person drinking wine, was undressing a pillow, during a television program.\",couch;cup;dish;glass;pillow;table;television,\"A person is sitting down on a sofa drinking a glass of water and watching televison. The person then takes a sheet off of a pillow.;A person is sitting on a couch watching television and drinking wine, then stands and takes a pillow case off a pillow.\",c109 3.40 10.60;c106 0.00 5.30;c154 6.80 31.80;c107 5.50 10.80;c154 14.10 21.90;c132 0.10 32.20;c011 0.00 19.00;c120 0.00 14.00;c123 0.00 15.70;c119 0.00 14.10;c076 9.90 33.00,31.79\r\nPIJCA,XXN8,Living room,5,5,Yes,A person is undressing and taking a camera through the doorway.,camera;clothes;coat;doorway;floor;jacket;person;phone,A person walks around their living room taking photos with a camera.  The person stops to take off a coat.;someone taking pics with their phone and take off their jacket.,c015 0.00 29.00;c155 7.10 18.20;c018 0.00 3.90;c126 12.20 18.10;c016 0.00 11.00;c087 0.20 11.00;c003 13.30 18.50;c000 11.10 17.90,30.67\r\nHJOJ0,2RTW,Living room,4,7,Yes,A person runs over to the sofa and grabs a pillow. The person turns on the television and begins watching.,blanket;chair;pillow;sofa;television,A person is running into the living room then they grab a pillow and sit down on the sofa to watch television.,c132 4.20 31.00;c123 4.10 31.00;c076 2.50 31.00;c150 0.40 7.00;c151 2.70 8.20;c059 3.80 31.00;c070 1.80 31.00,30.25\r\nHY45L,9PLL,Stairs,5,7,Yes,A person by the stairs is watching themselves through a mirror. They begin sneezing when they hear their phone ringing.,mirror;phone,\"A person standing in a small stairway, holding a mirror and looking into it, happens upon what appears to be a cell phone on one of the steps. The person then picks up the phone and begins looking at it.\",c015 25.20 33.00;c096 0.00 20.10;c154 19.50 31.90;c018 24.40 31.30;c016 27.00 33.00;c093 0.00 25.10,31.62\r\n6C2DJ,2RTW,Living room,6,6,Yes,\"A person is watching a movie in a recreation room. The person smiles as the person is putting dishes on a shelf of the food they just ate, and continues to watch the movie.\",dish;shelf;sofa;television,A person is sitting on the sofa watching television. A person takes dishes and puts them on a shelf.;A person is sitting down watching television then picks up a plate and places it on a shelf and sits back down.,c081 6.80 12.60;c119 17.10 25.90;c120 24.40 30.00;c151 14.60 20.30;c118 4.00 15.10;c154 0.80 9.00;c132 0.00 30.00;c123 0.90 18.70,29.29\r\nKXIMH,2RTW,Living room,6,6,Yes,\"A person in a recreational room is opening a box, afterwards he starts putting the contents onto a chair.\",box;envelope;sofa;table;video game controllers,A person is sitting on a couch opening a box and going through its contents.;A person sitting on a sofa opens a box in front of them on a table. They begin taking game controllers out of it.;A person is sitting on a couch and looking at both sides of a shoe box. The person opens the box and pulls out an envelope and three video game controllers.,c011 0.00 30.00;c041 1.80 8.00;c044 2.30 30.00;c123 0.00 32.00;c009 10.30 32.00,30.67\r\nBI31D,5LWB,Bedroom,5,7,Yes,The person walks into the bed room through an open door and then leaves a camera on a bed.,bed;door;phone/camera,A person walks into a bedroom and sits on the bed before standing back up again.,c135 8.30 18.00;c151 7.40 13.40;c154 14.20 18.00;c015 1.40 9.50;c017 5.20 10.10;c097 1.20 6.70,17.42\r\n1UPHI,3VLX,Dining room,6,7,Yes,A person is grasping a box and smiling at the door.,box;doorway;table;woman,\"a woman picks up a box and walks away.;The person walks into the room, picks up a box off of the table, and then stands there before walking away with the box.\",c040 2.00 26.00;c097 0.00 4.70,25.21\r\nLEOL6,WG9D,Bathroom,7,7,Yes,A person in the bathroom grasping a medicine bottle and a glass of water. Puts the water down and begins tidying up the counter top.,cup;medicine;table,\"Person is holding medicine, looking in the mirror and tiding bathroom counter.\",c009 0.10 4.40;c107 8.00 7.00;c128 8.00 7.00;c012 1.30 7.00;c109 0.10 4.40,6.25\r\nEE502,WG9D,Bathroom,3,7,Yes,A person undressing in a bathroom knocks a picture off a shelf. They laugh and put it back where it belongs.,box;clothes;floor;jacket;mirror;picture;shelf,A person has dropped a calendar while taking off a grey sweater and looking in the mirror while also smiling.;A person is looking on the mirror and then takes off jacket and picks up box.,c081 4.00 8.90;c088 3.80 8.90;c155 0.00 4.90;c154 2.80 7.50;c152 0.40 5.90;c096 0.40 5.40;c094 0.40 5.40;c086 1.80 8.90;c083 1.60 7.00;c002 0.00 4.90;c149 0.00 5.90;c127 2.80 8.20,8.08\r\nKQL1P,KFGP,Bathroom,6,7,Yes,A person in a bathroom is eating a sandwich and closing a laptop.,food;laptop;sandwich,A man is sitting in the bathroom eating a sandwich while he works on his laptop.,c065 0.00 32.00;c067 0.00 21.40;c052 0.00 32.00;c156 0.00 31.60;c047 0.00 32.00;c046 27.80 32.00;c062 13.90 20.70;c068 14.70 20.10;c061 0.00 21.50;c048 0.00 32.00,31.46\r\n44Q8A,2RTW,Bedroom,6,6,Yes,A person is sleeping in a chair with a pillow placed behind the back. The person awakens suddenly and throws the pillow aside.,chair;face;laptop;pillow;table,\"A person sitting at a desk with a computer on.The person throw the pillow to a bed ,the person proceeds to stand up and wipe their face .;The person is sitting there in front of his laptop sleeping. The person then gets up and grabs the pillow from behind him and tosses it onto the bed and stands up.\",c059 0.00 28.90;c077 20.90 32.00;c080 20.90 32.00;c011 0.00 30.80;c076 23.00 27.80;c079 22.10 27.20;c146 19.20 25.40;c154 24.90 31.70;c051 18.80 26.20,31.42\r\n2M2O6,8718,Kitchen,5,6,Yes,\"A person throws something into a cabinet in their pantry. The person begins playing with their phone, and then picks up a glass of water, from which they take a drink.\",cabinet;cup;glass;groceries;phone;something;water,A person puts something in a cabinet.  The person drinks from a glass and plays with a phone.,c106 6.30 13.10;c112 2.30 7.00;c113 0.00 3.50;c016 5.60 31.00;c106 15.80 23.50;c130 0.00 31.00;c015 0.00 31.00,29.67\r\n3731F,2Q9D,Dining room,5,7,Yes,A person is watching a funny video on their laptop.  They open the refrigerator and get a drink.,chair;cup/glass/bottle;dish;door;laptop;refrigerator;video,A person sits at a table while viewing something on the laptop. They then stand up and walk to the refrigerator where the person pours a cup of milk.,c051 0.00 15.80;c142 26.10 32.00;c143 17.40 23.60;c154 12.10 17.70;c059 0.00 16.70;c110 14.90 32.00;c106 27.50 32.00;c107 14.90 32.00;c118 15.60 23.00;c108 21.20 27.70;c152 0.00 15.60;c006 25.60 31.80;c052 0.00 16.00;c109 15.40 32.00;c008 15.60 21.90,31.33\r\n0MDYC,BYF9,Kitchen,7,7,Yes,A person is taking clothes and putting them on a chair while laughing.,chair;clothes;towel,A person is tidying up some clothes from in a bag. The person puts the clothes on a chair.,c000 8.60 26.10;c001 18.30 24.80;c034 6.80 12.90;c037 2.10 11.70;c033 1.10 25.40,25.75\r\nY9930,BYF9,Hallway,7,6,Yes,A person is walking down the hallway smiling while holding a towel.  The person opens a door and throws the towel into a box.,box;clothes;door;towel,The person opens a door and throws a towel into a box.,c036 15.70 21.40;c008 10.10 19.10;c097 14.70 22.00;c001 1.00 22.00;c000 1.00 22.00,20.92\r\n5XAFE,C7O9,Laundry room,6,7,Yes,\"A person is smiling as they put clothes into the dryer. The person grabs a stack of homework and goes to leave, but trips over a broom on their way out.\",clothes;doorway;homework;paper,A person is putting clohtes in the washer and then picks up their homework and trips as they walk out the door.,c000 2.50 9.10;c001 4.60 20.80;c117 7.40 26.20;c003 0.00 4.00;c097 26.80 32.00;c005 0.00 24.50;c115 21.40 31.90,30.79\r\nKN97F,T7C3,Pantry,7,7,Yes,A person is working on homework while lying down in the doorway.,book;doorway;floor;homework;man;paper;pencil,a man laying on the floor with a book and pencil;Person lying on the kitchen floor doing homework while half of the body is in the kitchen and the other half in the other room.,c145 0.00 34.00;c124 0.00 34.00,33.46\r\nVPI6D,YMXV,Bedroom,7,3,No,A person grabs the doorknob and opens the door to their pantry. They sneeze and place a pillow on a counter.,door;pillow;table,A person opens a door by turning a doorknob  and then walks to the bed and takes pillows off of the bed and walks away.,c008 0.00 4.90;c079 7.00 12.80;c141 0.00 4.40;c076 7.50 31.00,30.42\r\n4LUQL,CCI9,Living room,6,6,Yes,\"One person is tidying up the office with a vacuum. Another person, wrapped in a blanket, runs in with a book.\",book;floor;homework;shelf;vacuum,A person vacuums the floor while another carries homework indoors.;The person is vacuuming the floor and another person walks in to watch the vacuuming.,c137 0.00 33.00;c026 12.00 33.00;c127 0.00 33.00;c115 12.00 33.00,32.42\r\nR5MFX,L4ZP,Dining room,5,7,Yes,\"A person takes off their shoes, and puts a dish on the table. Another person then starts laughing, throwing a hysterical fit of laughter.\",chair;dish;plate;table,someone sitting holding a plate and starts laughing at someone else.;A person sitting in a chair looking at a plate then laughing at another person goofing around.,c009 8.60 14.40;c149 13.00 28.00;c059 0.00 28.00;c118 0.00 14.30;c119 8.20 14.40;c014 0.00 26.90;c011 0.00 27.20;c152 14.60 26.80,26.75\r\n194WK,UTMU,Home Office / Study (A room in a house used for work),6,7,Yes,A person laughs as they read something in a book. The person looks up into the mirror and sneezes.,book;chair;mirror;table,\"A person is reading a book and laughing. A person then looks at a mirror, and begins sneezing.\",c026 0.00 12.20;c093 9.10 21.10;c149 2.50 10.80;c028 6.60 12.50;c094 9.10 13.70;c153 11.30 18.70;c032 0.00 10.80;c059 0.00 25.00;c011 0.00 25.00;c029 3.90 10.60;c025 4.90 10.20;c154 18.80 24.30;c096 9.50 19.40,24.17\r\nTIEA9,ZAWX,Bedroom,7,6,Yes,A person in a bed room is sitting at a desk looking at a picture and smiling while holding the picture frame.,bed;picture,\"A woman is sitting on a bed smiling and dancing a little. She picks a picture off the wall, holds it and smiles while looking at it.\",c135 0.00 32.00;c152 0.00 3.70;c083 12.90 20.20;c085 5.50 12.30;c084 15.70 32.00;c088 6.50 32.00,30.75\r\nC4SXE,WG9D,Living room,3,5,Yes,A person is watching television while working.  They turn on a light.,chair;earbud;light,A person wearing a knit hat is sitting in the dark listening to one earbud. The person reaches over and turns on the light,c104 6.10 11.00;c059 0.00 11.00,9.62\r\nESTFR,ZEM0,Laundry room,5,7,Yes,\"A person is sitting in the laundry room, watching the washer and dryer. The person takes their shoes off and looks in the mirror.\",floor;mirror;shoe,A person is sitting on the floor and takes off their shoes. The person then looks into a mirror.,c096 18.20 36.60;c057 7.90 19.10;c125 0.00 37.00;c093 21.90 34.60;c053 9.70 16.90,35.88\r\nSA7GL,DXDI,Home Office / Study (A room in a house used for work),5,7,Yes,A person is playing on a laptop then they moves some clothes off a desk before drinking from a cup.,chair;clothes;desk;glass;laptop;table,\"A person sits in a chair working on a laptop.  They close the laptop, reach over to throw some clothes on the floor that were on a desk, then pick up a glass of water and drink it.\",c012 8.80 19.60;c002 11.10 19.80;c046 7.60 17.00;c052 0.00 6.80;c003 12.20 21.50;c059 0.00 32.00;c000 14.10 21.80;c051 0.00 17.00,30.83\r\nDSAF3,SR1C,Bathroom,6,7,Yes,\"A person is entering the room, sneezing. The person grasps the sink to steady himself. Then the person begins to tidy up by picking the clothes off the floor and putting them in the hamper.\",clothes;doorway;floor;shoes;sink;towel,\"A person walks through the door of the bathroom and picks up clothes from the ground,putting them in a laundry basket.\",c127 12.20 28.40;c000 12.80 28.50;c001 12.60 31.00;c153 1.40 6.60;c034 12.00 28.70;c004 11.60 29.30;c097 0.00 5.40,30.42\r\nFQGQS,HJJ4,Bedroom,6,6,Yes,\"One person opens a wardrobe and throws a pair of shoes inside, then starts sneezing.\",closet;shoe,A person opens a closet door and places shoes in there. The person then sneezes.,c153 4.70 12.90;c113 0.00 4.30;c054 0.30 6.00;c058 0.70 5.30;c053 0.00 5.00;c112 2.00 7.80,11.83\r\nLTC5Y,KFGP,Basement (A room below the ground floor),5,6,Yes,\"A person is tidying up the room when they see a picture on a cabinet.  The person stops what they're doing, and sits down examining the picture.\",box;chair;desk;fan;floor;paper/notebook;picture;table,\"A person walks and  tidy ups the room a bit, including picking up and moving a box, before walking to a table, picking up a picture, and sitting in a chair there to look at the picture.;A person moves a box, fan and chair and then sits down at a desk to look at a picture.\",c151 19.60 26.10;c040 1.60 10.00;c043 0.50 8.80;c088 19.10 32.00;c042 1.10 10.80;c059 18.80 32.00;c011 21.00 32.00;c127 0.50 19.20;c115 17.80 32.00;c084 19.60 32.00;c083 18.00 23.30;c117 18.90 23.90,31.42\r\n897OI,T7C3,Laundry room,7,6,Yes,A person is laughing in the doorway to the laundry room. They begin pouring a glass of wine that they begin drinking immediately.,bottle;cup;doorway;glass,A person holding a glass and a bottle stands in a doorway and laughs. They pour something from the bottle and drink.,c106 19.20 32.00;c107 5.10 16.70;c108 12.90 23.10;c149 0.00 4.90,30.96\r\nCM9GX,LTAC,Bedroom,5,7,Yes,A person is eating a sandwich at a desk in the bedroom while diligently working on homework.,chair;desk;food;homework;paper;sandwich;table,A person is sitting down at a desk and writing something while eating a sandwich at the same time.,c145 0.00 32.00;c011 0.00 32.00;c065 0.20 28.70;c067 0.00 32.00;c156 0.00 28.70;c010 0.00 32.00;c014 0.00 32.00;c061 0.00 32.00;c059 0.00 32.00,31.33\r\nFZ6AD,T7C3,Bedroom,7,7,Yes,A person in the bedroom is playing with a broom and starts throwing clothes.,broom;clothes,A person is using a broom. A person then picks up clothes and begins to throw them.,c000 15.20 30.00;c001 17.40 30.00;c003 17.30 30.00;c098 0.00 18.90;c099 13.40 19.50,29.38\r\n2O6RB,3H6W,Kitchen,6,7,Yes,A person opens the refrigerators then cooks while drinking something next to a chair.,door;food;fridge;glass;refrigerator;stove,a person opens a refrigerator then he grabs a drink and heats something on the stove;A person opens the fridge drinks while cooking on the stove.,c147 14.80 34.00;c143 2.20 13.30;c107 11.90 37.00;c106 20.70 26.00;c008 2.40 8.20;c109 28.20 33.10;c110 12.40 18.10,36.46\r\nEHAS4,DBGJ,Bedroom,7,7,Yes,One person is lying on a pillow smiling with hair in a towel and a stack of clothes nearby.,bed;hair;pillow;towel,A person is lying on a bed with a towel wrapped around their head. They lay their head on a pillow and sleep while smiling.,c152 2.80 58.00;c134 0.00 58.00;c033 2.00 6.60,57.00\r\nQHM66,6RE8,Kitchen,4,,Yes,A person tidy up a box in the hallway. The box was opened and the food inside was taken to the refrigerator.,box;cloth;counter;duster;food;fridge;groceries;refrigerator;table,\"This person is dusting the counter, then picks up some food and puts it in the fridge.;The person flailed a cloth around over a table. The person then opened a box of fruits on the table and went to the refrigerator. The person placed the fruit in the refrigerator along with the closed box.\",c062 0.00 5.90;c039 13.10 21.10;c041 8.40 15.40;c043 9.50 17.70;c143 17.30 25.80;c061 11.60 20.10;c063 7.50 17.40;c040 11.60 23.00;c042 26.20 33.00;c044 18.70 24.00;c012 0.00 10.70;c130 7.20 33.00,32.33\r\nXLH1M,1TZV,Kitchen,6,7,Yes,A person is cooking at a stove. They stop and tidy some dishes.,dish;food;stove,\"A person is standing in front of a stove and cooking food, they then begin to tidy up some dishes.\",c118 22.60 29.00;c120 23.60 29.00;c147 0.00 14.70;c061 22.90 29.00;c119 25.00 29.00,28.04\r\nGQ4ML,X5XO,Closet / Walk-in closet / Spear closet,5,7,Yes,A person walks in the closet grasping a bag.  The person pulls a towel out of the bag and puts it on the shelf next to a book.,bag;book;clothes;shelf;towel,person walking with a bag trough a door folds a towel put on a shelf,c081 6.50 19.10;c037 6.20 24.30;c001 15.70 24.60;c004 4.30 19.80;c020 0.00 8.70,30.46\r\nK9MPN,P6LJ,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,\"a person runs through the entryway wrapped in a blanket to answer a door. They turn the doorknob and open the door, smiling at who's there\",blanket;door,The person gets up and moves quickly towards the doors and opens it. The person closes the door after a few seconds and returns.,c006 7.50 13.50;c008 2.40 11.00;c071 13.20 19.00;c141 1.10 6.90;c073 0.00 19.00;c150 0.00 6.20;c070 0.00 18.90;c072 0.00 17.10,18.42\r\nDHFA6,P6LJ,Living room,4,7,Yes,\"Putting down a bag of groceries, a person sits on the sofa. The person begins snuggling up with a blanket, putting their feet up on a box.\",bag;blanket;box;groceries;pillow;sofa,A person brings a bag and a box to the sofa before sitting down with a blanket over them.,c072 27.30 38.00;c123 20.80 39.20;c040 14.80 24.60;c020 4.70 22.00;c151 20.00 25.00;c076 0.20 19.60;c042 15.00 22.60,39.58\r\nBOC1T,AH2J,Bedroom,6,6,Yes,\"A person is fixing the table in the bedroom. Then they stand by the table, looking at a camera.\",floor;table,The person is kneeling on the floor setting up a tray table and standing behind it.;A person kneeling on the floor is fixing a table.,c154 14.40 22.60;c125 0.00 18.40,31.38\r\nEIKUN,ZAWX,Kitchen,5,7,Yes,\"A person puts a box of groceries onto the table. The person opens the box and begins removing items, which the person sets on a nearby desk.\",box;desk;groceries;something;table,A person is carrying a box through a door way and sets it on atable. The person then takes out some items from the box and sets them on the table next to the box.,c042 5.50 11.70;c009 5.00 11.40;c130 0.00 31.00;c040 0.00 20.30;c009 13.50 31.00;c044 14.30 31.00,30.42\r\nZ60TB,28B0,Dining room,6,6,Yes,A person in standing in front of the picture and then sneezing into the phone in the dining room.,kitchen;phone;picture;refrigerator,A person is standing in a kitchen in front of a refrigerator. The person is holding a phone and playing a game on the phone. The person the begins to sneeze.;A person is standing by the fridge using their phone they sneeze and continue to use their phone.,c016 0.00 15.00;c153 5.30 10.80;c015 0.00 15.00;c154 0.00 15.00,14.33\r\n6J00B,LTAC,Kitchen,7,1,No,\"A person is laughing and putting away food, then cleaning the stove and opening a window in a kitchen.\",computer;cup;drink;food;glass;laptop;latop;sandwich;stove;table;water bottle,\"A person picks up laptop, takes drink, eats something.;A person picks up there computer and is looking at i and pushing on the sides. They sit it down, pour a glass of water, and take a bite of their food.\",c108 17.80 23.80;c156 24.80 33.00;c050 0.00 17.50;c065 22.40 33.00;c069 22.50 33.00;c067 25.10 33.00;c063 22.70 28.30;c047 0.00 16.40;c009 10.30 16.40,32.21\r\nP1EK9,54JK,Recreation room / Man cave,7,6,Yes,One person with a bag on their shoulder opens a box and snuggles some clothes inside of it.,bag;box;clothes;door;floor;towel,a person walks into a room opens a box and wipes his face with a towel before throwing his bag down;A person comes into a room holding a bag they pick up a towel wipe themselves with it then they throw it on the floor and they throw the bag on the floor too,c002 7.60 13.40;c024 20.80 27.00;c008 0.00 4.90;c038 9.70 24.50;c126 20.80 27.00;c033 7.60 26.60;c041 5.80 11.20;c035 7.50 13.00;c044 7.30 13.30;c006 0.90 8.90;c036 22.20 27.00,25.88\r\n7K7Z6,D0RU,Home Office / Study (A room in a house used for work),5,6,Yes,One person with hair in a towel stands by a desk holding a bag and drinking.,backpack;bag;coffee;cup;hair;head;towel,A person is scrubbing their head with a towel while drinking a cup of coffee and holding a backpack.;A person is rubbing their head with a towel and then takes a drink from a coffee cup while holding a bag.,c144 0.00 24.00;c020 0.00 32.00;c106 5.90 32.00;c033 0.00 23.30;c154 29.10 32.00,31.08\r\n5YAN1,52PC,Hallway,6,7,Yes,\"A person has a blanket wrapped around them and they are walking back and forth. They stop, pick up a pillow from the floor and laugh.\",floor;pillow,\"One person is walking around a hallway with a sheet over their head, stepping on a pillow then they pick up the pillow.\",c076 27.30 33.00;c127 26.30 33.00,32.00\r\nAC3T4,T7C3,Stairs,6,4,Yes,A person is grasping a book while walking around in shoes,book;stairs;stairway;wall,\"A person is standing in a stair way, leaning against a wall, holding a book.  The person then walks up and down the stairs.;A person holding a book starts to walk up the stairs. The person stops and turns around and walks back down the stairs, leans against the wall then repeats the actions\",c025 22.10 27.10;c026 0.00 40.00;c027 9.20 14.80;c032 9.80 17.10,39.08\r\nWXC7V,D0RU,Living room,4,1,No,A person is grasping a towel and leaving the food on the shelf.,dish;food;shelf;towel,\"A person is walking in the living room holding a dish and has a towel slung over the shoulder, they then take a bite of food from the dish and set the dish down on a shelf then leave.;A person is walking slowly holding  a dish, they then grab a towel and put it on their shoulder.\",c081 57.60 72.80;c061 36.20 64.10;c063 32.50 74.70;c033 0.00 76.00;c118 0.00 73.50;c119 0.00 73.50;c156 26.20 40.20;c035 45.00 55.30;c062 63.80 69.10,125.29\r\n5W0OC,4I2W,Bedroom,7,7,Yes,A person is sitting on a bed working on folding clothes and blankets.,bed;blanket;clothes;towel,\"a person folds clothes and a blanket on the bed;A person is sitting on his bed, first folding a pair of jeans, then a red towel, then finally a white striped blanket.\",c135 0.00 32.00;c001 11.00 15.00;c037 12.00 32.00;c004 0.00 32.00;c000 0.00 15.70,30.71\r\nGRBUE,ATJI,Dining room,6,6,Yes,\"A person begins undressing from their thick jacket, throwing it on the floor, then closes the door and turns off the light.\",clothes;door;floor;light,A person walks around a table then takes off their jacket. The person then closes the door. Another person is on the floor hiding under the table. The first person turns off the light.,c006 7.00 14.10;c125 0.00 18.00;c105 14.00 18.90;c155 4.10 9.30;c003 5.60 10.50;c001 5.50 10.50;c126 5.50 10.30,21.75\r\nX9R37,SIZN,Garage,5,7,Yes,\"A person is grasping the doorknob standing in the doorway of the garage. The person leaves, closing the door, but opens it quickly after to remember to turn off the light.\",door;light,A person is going out of a garage and closing the door they reopen the door and turn off the light then they close the door.,c006 0.30 5.70;c105 4.30 9.40;c141 0.00 4.60,12.38\r\nDICXG,R1OT,Entryway (A hall that is generally located at the entrance of a house),3,7,Yes,\"A person enters their house holding their laptop. They stand in the entryway on their phone laughing. The person places the laptop on the chair in the entryway, and fixes a picture on the wall.\",chair;door;laptop;phone;picture;wall,A person walks through a door way holding a laptop. The person looks at their phone then adjusts a picture on the wall. Next the person stands and looks at the picture.,c047 0.00 11.80;c088 17.90 25.60;c015 0.00 32.00;c006 0.00 5.60;c097 0.00 3.60;c008 0.00 2.90;c049 6.40 13.80,30.96\r\n3ZC4Y,T7C3,Kitchen,7,7,Yes,A person is standing at the stove cooking. They stop and open the refrigerator. They take out an ingredient and throw it on the counter.,dish;food;refrigerator;stove,A person is stirring a pot on the stove.  That same person opens the refrigerator door and throws something out.,c142 17.20 24.90;c147 0.00 27.00;c143 15.10 21.70;c061 23.10 27.00;c118 0.00 16.90;c064 18.80 23.80,26.21\r\n452FV,ZFCJ,Garage,6,7,Yes,\"A person is in a garage holding a box of shoes, they then start tidying up by putting the box on a shelf.\",box;shelf;table,\"A person is holding a box, and places the box on a shelf.\",c081 0.00 6.00;c040 7.40 12.50;c042 0.00 6.00;c009 0.00 5.50,18.21\r\n8LPZ0,5LWB,Home Office / Study (A room in a house used for work),6,6,Yes,Person A is in a study tidying some pictures on a shelf.  Person B turns the doorknob and comes into the room with some groceries.  Person A helps Person B with groceries and Person B lies down on a nearby sofa.,box;chair;groceries;picture;sofa,a person is looking at a computer and throwing pictures on the floor. Then this person walks over to another person and takes a box of groceries from them,c122 30.30 39.00;c154 19.00 25.80;c088 5.10 21.90;c043 23.70 34.50;c059 0.00 25.50;c042 30.10 39.00;c040 24.70 36.70,37.50\r\n2S0PU,5LWB,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,\"In the basement, two people playing cards on a table. One gets mad and throws a picture, and the other begins to pour salt.\",cards;table,\"Two people are sitting on some stairs playing cards at a table, person A throws some cards down and person B throws some cards at person A.\",c009 5.20 9.40;c011 0.00 17.00;c014 0.00 17.00,15.88\r\nNOFSE,2Q9D,Living room,6,6,Yes,A person drinking from a glass of water opens the pantry. They pull out a pillow and blanket and lie down to take a nap.,blanket;cup;dish;door;floor;glass;man;pantry;pillow;water,A man going into a pantry and grabbing a blanket and laying down on the floor.;A person opens up a closet and takes out a pillow and blanket. This person then lays down on the carpet under the blanket and on the pillow.,c078 20.30 28.00;c072 19.70 28.00;c106 1.60 8.30;c006 10.40 16.50;c079 4.70 16.40;c073 4.70 16.40;c076 8.00 22.10;c070 8.00 25.50;c079 8.00 12.00;c073 8.00 12.00;c008 0.50 6.00;c124 17.10 28.00;c119 7.10 13.50,26.62\r\nV4CCY,ZSRZ,Laundry room,5,7,Yes,A person opens the dryer and grasps a blanket and a pillow from inside. The person laughs.,blanket;clothes;dryer;pillow,a person takes clothes and a pillow out of a dryer and then smiles;A person opens a dryer and removes a blanket and a pillow while smiling and laughing.,c079 5.10 11.10;c073 2.20 7.10;c149 6.40 14.00;c152 6.40 14.00;c070 2.00 14.00,12.62\r\nFEWUR,5LWB,Stairs,7,7,Yes,A person is sitting on the stairs fixing their phone.  The person puts their phone in their pocket and takes off their shoes and throws them down by the doorway.,phone;shoe,A person is playing with their phone and then put it in their pocket and throw their shoes.,c057 21.40 31.20;c058 21.20 31.40;c016 0.00 21.20;c154 16.10 22.80,30.71\r\n2O2LG,8718,Kitchen,2,2,No,A person is watching out the window over the sink while drinking a cup of coffee.,coffee;cup;dish;glass;television,A person leans against their kitchen counter and drinks coffee from a glass.,c106 0.00 4.30;c107 0.00 31.00;c118 0.00 31.00;c132 0.00 31.00,30.00\r\n0RI7C,X5XO,Bathroom,7,7,Yes,\"A person is in a bathroom closing their homework book, they then start playing with a vacuum trying to get it to work.\",book;vacuum,A person is sitting in the bathroom reading a book. hey close the book and fix a vacuum.,c136 7.20 32.00;c025 2.50 7.50;c026 0.00 8.70;c032 0.00 7.00;c028 4.30 9.50;c137 21.50 27.60,31.25\r\n45P7D,UO0Z,Living room,7,6,Yes,A person is playing a game on their laptop. The person closes their laptop then gently throws it onto a pillow.,couch;laptop;pillow;sofa;table,\"A person sits on a couch while working on a laptop, which is sitting on a table. The person closes their laptop and puts it on a pillow.;A person sits on a sofa and works on a laptop on a table in front of them.  They close the laptop and set it on top of a pillow.\",c046 13.10 18.90;c052 0.00 17.20;c123 0.00 21.00;c047 15.40 20.60;c049 17.40 21.00;c014 0.00 16.60,20.38\r\nB71ZJ,OUKK,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person walks to the entryway and puts a bottle of medicine on the table.  The person sits on the floor and takes their shoes out of a box and puts them on.,box;floor;glass;medicine;shoe;table,\"A person walks into a room, grabs a glass off the table, and opens a box.\",c125 5.70 26.20;c041 6.60 15.30;c044 13.00 19.20;c151 3.70 10.60;c040 6.20 14.20;c056 10.30 15.00;c055 10.60 17.00;c109 4.00 8.20;c056 13.30 19.20;c055 14.30 20.00,28.25\r\n5T9CK,0RNU,Garage,7,7,Yes,A person vacuums next to a box and then takes a drink and dresses in a winter coat.,clothes;coat;cup;floor;vacuum,\"A person is vacuuming the floor in the basement. The person turns off the vacuum, drinks from a glass, and puts on their coat.\",c137 0.00 18.90;c148 23.80 36.00;c127 0.00 18.50;c106 15.20 26.80;c000 24.20 34.30,35.08\r\n0NCWX,LTAC,Pantry,7,7,Yes,A person is opening a cabinet and then drinking out of a glass in the pantry.,cabinet;cup;dish;door;glass,A person a cabinet and removes a glass. The person drinks from the glass.,c113 0.00 5.50;c106 11.10 29.90;c110 2.30 32.00;c120 1.90 7.70;c118 2.30 32.00;c008 0.00 5.60,31.50\r\nZJG67,JVLO,Closet / Walk-in closet / Spear closet,4,6,Yes,\"In a closet, a person is trying to do homework. but ends up watching another person eating off of a mirror.\",book;floor;homework;mirror;paper,\"One person is sitting on the floor doing homework, while another person is looking into a mirror.\",c145 0.00 21.40;c096 18.40 38.00;c125 0.00 21.40;c032 0.00 21.30,37.25\r\nZ97SD,LTAC,Living room,5,5,Yes,A person started out on their laptop completing homework. A person got up and walked towards the refrigerator. A person reaches into the fridge and takes an apple. A person goes ahead and consumes the apple.,apple;chair;doorway;food;fridge;laptop;refrigerator;table,\"A person is typing on their laptop while sitting on a chair. A person then walks into the kitchen, opens the refrigerator, and takes out an apple. The person walks through a doorway, away from the camera.;A man is typing on his laptop. Then he stands up and walks to a fridge and takes an apple and eats it.\",c052 0.00 15.80;c154 10.90 16.70;c143 18.10 24.10;c059 0.00 15.90;c142 25.10 30.70;c156 27.40 32.00;c097 15.20 20.10;c061 24.30 32.00;c014 0.00 16.70;c063 17.80 32.00,30.92\r\nP36OC,HJJ4,Garage,7,7,Yes,\"A person is holding a box of groceries in the garage, then sneezes.\",box,\"A person is holding a box, and sneezing.\",c040 0.00 8.00;c153 3.30 8.00;c043 0.00 8.00,6.96\r\nRHWU6,0KZ7,Bathroom,6,7,Yes,\"A person is standing in a bathroom talking on the phone. The person is laughing. Another person is walking into the bathroom, waving homework papers in the air.\",homework;paper;phone,A person is speaking on the phone and laughing. Another person walks in and waves some papers at the first person.,c115 18.10 29.00;c015 0.00 29.00;c019 0.00 29.00;c149 0.00 29.00,27.71\r\nTD2DR,D0RU,Living room,6,6,Yes,\"A person sits in the living room, grasping a camera while looking out the window.\",camera;chair;phone;picture;table;window,Someone is sitting in a chair. They reach over to a table and grab a camera and take pictures directed towards the windows.;A person is sitting in a chair they grab a camera and take pictures out the window.,c015 8.00 17.20;c018 7.40 14.30;c059 0.00 12.60;c087 12.90 25.20;c016 8.60 31.00,30.29\r\n21MI8,D0RU,Living room,4,6,Yes,A person is opening a laptop and putting a glass down on a table.,cup;glass;laptop;table,Person drinking from a cup and walking over to turn on the computer.,c109 7.70 13.40;c048 3.90 10.10;c014 4.60 32.00;c052 4.90 32.00;c106 0.00 6.50;c009 8.20 13.10,31.25\r\n9OP4S,T7C3,Stairs,5,7,Yes,\"A person is sitting, looking at a picture. They grasp a broom, playing like they are going to fly away.\",broom;floor;picture;stairs,\"A person is sitting on stairs looking at a picture.  They put the picture down, pick up a broom and play with it.;A person is sitting on the stairs smiling at the back of a picture frame. The person stands up and straddles a broom and then holds the broom in front of him.\",c098 14.20 37.00;c100 12.00 18.20;c088 2.10 12.10;c099 17.30 36.70;c084 0.00 11.90;c154 17.40 37.00;c152 1.10 9.60;c086 9.00 15.50;c125 0.00 21.27,35.83\r\nO03Y4,BYF9,Dining room,6,7,Yes,A person standing next to a dining room table holds a bottle of cold medicine before putting it on the table.,glass;medicine;table,A  child is standing in the kitchen holding a bottle of medicine and feeling the stickiness residue left on it before sitting it on the table.,c009 11.50 17.00;c128 0.00 17.00;c154 0.00 17.00;c107 0.00 15.90;c109 12.50 17.00,15.62\r\nDNZD8,YA10,Bathroom,7,6,No,A person is holding a coffee and a pile of dishes in a bathroom. They walk to the sink while smiling.,coffee;cup;dish;doorway;mirror;sink,\"A person is standing in the threshold between the bathroom and the hallway drinking from a glass. They are also holding a plate. Then, they walk over the the bathroom sink and try to turn on the water.\",c106 0.00 6.80;c107 3.50 13.30;c118 0.00 28.00;c119 13.60 21.00;c109 13.60 21.00;c097 13.60 18.20;c096 21.30 27.70,27.25\r\n5657O,YA10,Hallway,4,7,Yes,\"A person undressing from their school/work/professional clothes is holding a camera.  After they finish kicking off their shoes, they take a picture of themself standing on a chair and holding a set of keys.\",camera;chair;clothes;phone;picture;shoe,\"A person is undressing while holding a phone. The person puts a coat on a chair, and takes off their shoes. They then stand on the chair and take a picture of them self.\",c060 16.10 32.00;c001 6.40 13.80;c155 0.00 13.40;c087 20.90 32.00;c015 0.00 32.00;c057 10.20 18.20;c016 20.90 32.00,30.96\r\nFLM1T,Z68L,Bedroom,5,6,Yes,A person is sitting on the bed using a laptop. They pick up some snack food from nearby and start eating it.,bag;bed;food;laptop,A person sitting on their bed uses a laptop. They eat some food while using it.,c047 0.00 4.90;c051 16.70 31.00;c052 16.80 31.00;c135 0.00 31.00;c061 11.70 31.00;c063 14.20 20.10;c156 16.50 23.00;c021 14.90 20.50,30.29\r\nV6IIE,YA10,Bedroom,7,6,Yes,\"A person undresses in the bedroom doorway, smiling. Another person sits in a chair, and begins laughing at the first person.\",chair;clothes;doorway;jacket,Two people are standing in a room look and smiling at each other. One of them is in a doorway smiling as they take off their jacket. The other is standing in the room looking at them and then they later sit on a chair.;Two people are talking.  First person unbuttons a shirt and takes it off.  Second person then sits down on a chair.,c059 20.70 31.00;c155 0.00 21.10;c152 0.00 14.00;c151 0.00 23.70;c155 14.70 21.70;c000 15.50 31.00,30.12\r\nSQUX3,PO5L,Bedroom,2,6,Yes,\"A person is awakening and removing a blanket off their body, then putting on  shoes and finally sweeping with a broom in a bedroom.\",bed;blanket;broom;floor;shoe,\"A person lied down on a bed.  The person then covered himself with a blanket.  The person then got up, put on some shoes, and began sweeping with a broom.;A person walks into a room lays down on a bed and covers up then they kick the covers off and sit up. They pick up their shoes and put them on then they use a broom to sweep the floor.\",c072 3.40 18.30;c102 35.50 50.00;c154 34.30 40.00;c134 0.00 21.70;c055 18.40 38.30;c135 16.70 38.70;c127 36.40 49.50;c098 36.40 49.50,48.58\r\nCWM1T,HJJ4,Kitchen,6,7,Yes,\"A person grasping a knife is cooking in their kitchen. They retrieve some groceries from their refrigerator and put them on their stove, before throwing out an empty Saran wrap nearby.\",food;fridge;refrigerator;stove,A person is cooking on the stove and grabs something from the fridge.,c143 7.20 13.50;c147 0.00 11.30;c142 8.30 15.50,22.88\r\nQEY8N,C7O9,Pantry,7,7,Yes,\"A person is running into the kitchen pantry carrying a broom. The person puts the broom against the wall, bristles up, and is tidying up the cans on the shelf. The person is then sitting in a chair eating a sandwich.\",broom;chair;closet/cabinet;doorway;food;sandwich;shelf;wall,\"A person runs into the room holding a broom, leans it against the wall, and then is tidying up food on  a shelf. The person picks up a sandwich, walks through a doorway, and sits in a chair eating the sandwich.\",c059 17.90 24.40;c067 14.30 30.00;c098 0.40 8.20;c156 18.50 30.00;c065 19.20 30.00;c082 1.70 18.50;c099 4.50 10.60;c150 0.40 6.70;c097 2.60 10.30;c062 5.30 22.40;c061 18.40 30.00;c063 3.90 23.40;c114 4.20 16.90;c151 16.40 22.50,28.62\r\nUCC1O,ZSRZ,Bedroom,6,7,Yes,A person laughing person walks to a closet and opens the door with the doorknob then they throw a pillow they were carrying into the closet and they shut the door.,closet/cabinet;door;pillow;wardrobe,\"A person turns a doorknob and opens a door, then throws a pillow in a wardrobe.\",c008 1.20 6.40;c141 1.30 6.20;c080 2.40 7.50;c112 2.70 9.80;c077 1.40 7.40;c113 1.20 7.20,9.92\r\nVXF18,PO5L,Recreation room / Man cave,5,6,Yes,A person is eating food from a table then starts drinking from a cup.,chips;couch;cup;food;glass;man;sofa;table,a man with a bag and a glass sits down on a couch.;The person is holding a drink cup and a bag of chips. The person sits down on the couch and puts the snack and cup on the table. The person eats some of the food and then takes a sip from a cup. The person gets up from the couch and walks away.,c106 35.30 43.70;c061 0.00 8.30;c156 8.70 15.00;c154 40.90 46.00;c123 2.20 7.40;c009 3.40 11.10;c062 3.40 13.00;c151 1.50 7.60,46.54\r\nXIUJE,XXN8,Bedroom,5,7,Yes,\"One person starts undressing in front of a cabinet, throwing dirty clothes behind the door before putting a towel around their waist.\",cabinet;clothes;door;mirror;towel,A person takes off their jacket and puts a towel around their waist.,c034 13.90 33.00;c155 1.80 14.30;c003 9.00 14.10;c096 1.60 10.80,32.33\r\nBMYMI,5LWB,Kitchen,5,4,Yes,A person is throwing food out of the refrigerator and tidying the desk.,bowl;coffee cup;desk;dish;food;refrigerator;tools,\"A person opening a refrigerator door and taking out some food and throws it on the floor.The person walks across the room to the desk and starts throwing starts everywhere.;A person opens the refrigerator and takes out a white bowl and places it on a shelf.  They then walk to a nearby desk and begin to rearrange several objects, making somewhat of a mess.\",c062 3.90 11.90;c142 2.60 7.70;c143 0.00 3.80;c119 3.50 9.10;c118 1.20 7.40,20.83\r\nX7M2C,T7C3,Entryway (A hall that is generally located at the entrance of a house),6,6,Yes,A person is laughing while grasping a vacuum handle with a towel draped across their shoulders.,towel;vacuum,\"A person is  vacuuming the floor with a towel on their shoulder, they then smile as they keep vacuuming.;A person is pushing a vacuum back and forth, while carrying a towel and smiling.\",c137 0.00 32.00;c033 0.00 32.00;c149 0.00 32.00;c152 0.00 32.00,30.67\r\n4UT8K,D0RU,Living room,5,5,Yes,A person in the hallway is tidying the hallway up by moving around some groceries. They take out their camera and start taking a picture of the window.,book;camera;doorway;floor;phone;picture;table,\"A person walks into the living room, and starts cleaning up and taking pictures.\",c087 21.80 37.00;c015 18.40 26.90;c018 17.50 24.50;c097 34.00 37.00;c009 34.00 37.00;c127 3.80 15.50;c028 16.00 21.10;c030 3.80 8.30,36.00\r\nHBUJ2,3MIT,Stairs,5,7,Yes,\"A person stands at the top of some stairs holding a phone and pillow, then throws the pillow down the stairs.\",floor;phone/camera;pillow,A person throws a pillow down a flight of stairs and then walks after it.,c080 1.30 7.00;c019 0.00 10.00;c076 0.00 6.40;c126 0.00 6.40;c015 0.00 6.40,9.00\r\n1OF1O,OUKK,Bathroom,4,6,Yes,The person walked into the doorway and turned on the light.  The person was getting ready to take a shower.,doorway;faucet;light;shower curtain;towel,\"A person turns on a light in a bathroom.  A person opens a shower curtain, turns on a faucet and hangs up a towel.;The person is taking a shower.  He enters the bathroom then pulls back the shower curtain. The water is run and then his towel is hung.\",c104 0.20 5.40;c034 19.70 29.80;c036 19.70 35.00;c097 0.00 5.70;c033 19.70 33.10;c035 19.70 33.10,33.83\r\n9KYMU,1TZV,Garage,6,6,Yes,A person is running by a window then opening a box with shoes in it,box,A person runs back in forth in the garage while holding a box.,c040 9.40 28.00;c150 0.00 13.20;c041 16.90 23.90;c044 20.40 26.50,27.33\r\nUJT87,CCI9,Living room,5,6,Yes,A person is taking a pillow through the hallway.  Another person is holding a coffee and a camera.,camera;chair;phone;pillow,A person picks up a pillow from a chair. Another person stands in front of them holding a camera.;Person walks over to a chair picked up a pillow and talks to another person,c076 7.20 33.00;c015 0.90 33.00;c152 11.50 21.00,31.62\r\n6U082,T7C3,Kitchen,7,7,Yes,\"A person stands on the kitchen holding a broom, then they grab a towel and run out of the room.\",broom;clothes;floor;jacket,A person sweeps than grabs a jacket and leaves the scene.;A person is sweeping the floor with a broom they go over to the sink and look into the sink they look around grab a towel and run off.,c098 0.00 23.70;c150 19.40 25.00;c127 0.00 5.20;c002 14.40 20.20,23.88\r\nMR3ON,3H6W,Entryway (A hall that is generally located at the entrance of a house),6,7,Yes,\"One person lies on the floor, with a drinking glass nearby, fixing a vacuum.\",floor;vacuum,A person is on the floor fixing a vacuum.,c124 0.00 17.00;c136 0.00 17.00;c125 0.00 17.00,15.83\r\nOZSB3,KFGP,Home Office / Study (A room in a house used for work),5,7,Yes,A person is sitting in their home office watching television and opening a bag.  They look in the bag and pull out a pillow.,backpack;bag;chair;man;pillow;table;television;tv,\"a man watching tv sitting in a chair, and grabbing a bag and pulling a pillow out.;A person is sitting in front of a tv watching the screen; the person reaches into a backpack and pulls out a pillow.\",c076 18.60 32.00;c079 18.60 27.80;c020 19.00 27.20;c021 20.60 25.50;c059 0.00 32.00;c132 0.00 20.70;c011 0.00 32.00,30.92\r\nOUH2U,5LWB,Hallway,6,7,Yes,A person walks through the door carrying a large box and puts the box on the floor. Another person holding a bag of groceries comes in and closes the door behind them.,bag;box;door,Someone walks in through the entryway with a box in their hands. A second person comes in with a bag in and closes the door.,c006 8.30 16.70;c040 2.60 12.10;c020 5.20 18.70;c097 3.30 11.60,18.96\r\n82R7V,KQI6,Living room,6,6,Yes,\"One person is standing by a picture with coffee in hand, smiling. Another person is tidying up by putting stray shoes in a bag.\",bag;coffee;cup;dish;food;hand;picture;shoe;sofa,\"a woman is smiling, takes a cup of tea and drinks from it. A man is sitting on a couch and puts shoes off and places them in his backpack.\",c020 26.60 32.00;c152 0.00 6.30;c106 7.00 15.40;c123 13.30 32.00;c110 2.80 8.20;c063 1.70 26.60;c056 0.00 32.00;c107 1.70 26.60;c118 1.70 26.60,30.83\r\nMOQIU,WQ8Z,Recreation room / Man cave,5,7,Yes,A person is laughing as the watch tv. The person picks up a phone off the table then leave through the doorway.,doorway;laptop;phone;sofa;table;television,A person sits on a couch watching and laughing at a video on a laptop. The person picks up a phone from the table and leaves talking on the phone.,c018 13.50 20.00;c019 16.80 30.00;c131 0.00 20.70;c132 0.00 21.00;c149 4.90 18.90;c123 0.00 23.40;c051 0.00 17.40;c154 15.20 20.20;c011 0.00 19.70;c097 21.60 26.60,28.62\r\nJJZ1X,DXDI,Dining room,6,7,Yes,One person is eating at a table near a window and holding a glass.,chair;cup;dish;food;glass;table,the person is sitting at the table and eating food. The person then picks up a cup and continues to eat.;A person sitting at a table eats some food from a dish. They take a glass and hold it in a one hand while continuing to eat.,c107 1.60 34.00;c156 0.00 34.00;c061 0.00 5.80;c011 0.00 34.00,33.08\r\nXAW3U,WG9D,Living room,4,4,No,\"A person is eating and grasping a clothes hanger, then opening a window and taking medicine in a closet.\",curtain;food;window,A person is standing by a curtained window eating something.  The person pushes the curtain to the side and then opens the window.;a person eating and looking out of a window,c090 1.70 7.40;c092 3.30 8.50;c156 0.00 3.20;c061 0.00 3.60,9.54\r\n38QA4,T7C3,Bathroom,7,7,Yes,A person is undressing in their bathroom. They leave while holding a glass of milk and pile of dishes.,clothes;cup;dish;doorway;glass;plate;shirt,A person begins undressing and then picks up some dishes. The person then walks out through a doorway carrying the dishes.;A person takes a shirt off and puts it under their arm. They take a plate and a glass and walk through the doorway,c155 0.00 12.80;c120 18.60 31.00;c118 19.10 31.00;c107 21.70 30.20;c097 23.40 31.00;c002 5.40 21.10;c000 17.90 31.00,29.62\r\nWJL39,YMXV,Hallway,6,6,No,The person is finishing dressing and looks in the mirror quickly before running down the hall way and then opening a door.,buttons;clothes;door;hair;mirror;shirt,\"This person is buttoning up his shirt, looking and the mirror and walking out of his front door into the sunlight.;This person is fixing his shirt, looks in a mirror, then walks to the front door and opens it.\",c008 22.00 29.20;c096 7.60 15.20;c148 0.00 11.00,29.96\r\nFPWD0,KQI6,Kitchen,6,7,Yes,One person sits in a chair and watches another person opening and closing the refrigerator.,chair;doorway;groceries;refrigerator;table,A person takes things from a fridge while another sits in a chair.,c143 0.10 7.80;c059 9.00 32.00;c011 13.00 32.00;c142 8.40 13.80;c142 15.60 21.30;c097 0.00 4.00;c130 16.80 23.30,30.54\r\nL1O0N,WG9D,Laundry room,3,3,Yes,\"A person in their laundry room begins undressing by removing their jacket. They start sneezing into a pillow, and then begin drinking a glass of coffee.\",clothes;cup;pillow,\"A person undresses, smashes their head into a pillow, then drinks from a cup.\",c076 2.80 9.20;c106 6.30 13.00;c107 6.00 13.00;c155 0.00 5.90;c110 5.80 10.20;c077 5.30 10.40;c079 2.40 7.20,11.67\r\nOTLX9,2Q7U,Living room,6,6,Yes,The person is dressing in the living room while doing homework on the laptop and drinking a drink.,book;clothes;cup/glass/bottle;homework;laptop;paper;table,\"A person is sitting on a sofa, puts on a sweater, starts working their laptop, then takes a drink of water.\",c052 7.00 32.00;c145 6.70 32.00;c014 0.00 32.00;c148 0.00 10.40;c011 0.00 32.00;c032 6.30 23.50;c110 22.00 26.80;c106 23.60 28.70;c109 25.50 30.60,31.17\r\nB4F0T,9PLL,Dining room,4,6,No,\"A person in the hallway is drinking some medicine because they feel stick. They sit down and then start standing back up, while holding a bag that appears to be empty.\",bag;cup/glass/bottle;floor;medicine,\"A person picks up a medication bottle, coughs, then opens the bottle and pours contents into mouth, then sits down on floor, then stands back up picks up a basket and turns around.\",c128 0.00 35.00;c151 17.00 24.10;c128 0.70 10.90;c129 2.90 17.30;c154 22.10 31.30;c125 18.70 28.60;c106 7.40 15.50;c107 0.00 33.20,33.67\r\n0L0KS,KQI6,Kitchen,6,7,Yes,A person is sitting at a table in a kitchen. The person gets up and walks over and answers a phone. The person leans against the stove and has a conversation on the phone.,chair;counter;phone;stove;table,\"A person sits down in a chair and pick up their phone off a table, they then stand up and call somebody and begin talking on the phone;A person sits down in a chair and picks up a phone and calls someone.The person stands up and walks over to a counter and lends up against the counter and keeps talking .\",c015 0.00 6.10;c018 9.60 19.80;c019 16.40 32.00;c154 15.30 32.00;c059 0.00 16.10,31.38\r\nF7AIA,5LWB,Stairs,7,7,Yes,\"A person is sitting on the stairs while holding a picture. In the other hand, they have a sandwich that they intend to eat, and they are smiling because they are generally content.\",book;chair;floor;food;hand;picture;sandwich,Person A is sitting down on a box eating a sandwich. Person B is  clapping and smiling nervously.,c065 2.70 20.00;c156 3.40 20.00;c152 0.00 20.00;c125 0.00 20.00;c059 0.10 20.00;c029 3.60 8.00;c061 0.00 3.70;c149 0.00 2.90,18.50\r\nB6LRC,D0RU,Living room,6,7,Yes,\"A person takes a pair of shoes from the shelf. Holding the shoes, the person sneezes.\",book;shelf;shoe,A person walking across room to shelves where person looks under book. The person touches something on top shelf before picking up shoes from bottom shelf.  The person sneezes while walking away with shoes.;A person looks at things on a shelf then picks up shoes and sneezes several times then walks away,c053 18.30 31.30;c056 17.70 23.70;c153 20.80 30.00;c082 11.60 20.80,30.92\r\nQ04US,X5XO,Dining room,6,7,Yes,\"In the dining room, a person is pouring a drink while standing in the doorway in behind a vacuum.\",cup;doorway,A person is standing in a doorway while pouring something from a pitcher into a cup.,,31.12\r\nLD011,BYF9,Entryway (A hall that is generally located at the entrance of a house),5,7,Yes,A person in their entryway dressing to go outside in the winter is grasping a cup of coffee and a book.,book;clothes;coffee;cup;jacket;notepad,The person puts on a striped jacket and then walks over and picks up a cup of coffee.;A person puts on a jacket.  She then picks up a cup and a notepad and looks towards the door.,c110 30.20 37.00;c030 30.20 37.00;c148 0.00 30.30,35.50\r\nWPFKR,XXN8,Bathroom,6,7,No,\"A person is taking off their shoes and putting on their slippers instead. Then, smiling, the person walks to the cabinet and opens it.\",cabinet;door;shoe,A person takes off their shoes while standing atop the tub sides.  The person then opens a cabinet.,c057 1.80 7.20;c152 15.30 21.70;c008 18.50 25.20;c113 18.50 27.40,29.38\r\nWO0OM,3531,Bedroom,6,6,Yes,\"A person is laughing while using a phone, then eating a sandwich at a desk in a recreation room / man cave.\",food;phone;sandwich;table,\"A person is sitting at a table playing a game and laughing at their phone. They are holding a sandwich in their other hand. They put down the game and start eating the sandwich.;A person sitting at a table playing on their phone, then eats a sandwich.\",c149 2.40 17.40;c156 19.30 32.00;c015 0.00 22.00;c017 18.50 24.40;c016 0.00 22.00;c067 0.00 32.00,31.46\r\n1AA6Z,L4ZP,Living room,1,5,Yes,\"A person is undressing in their recreation room. They stop and gab a plate of food, and a glass of milk before leaving.\",clothes;dish;food;jacket,\"A person takes off a jacket and eats some food.;Person is removing his jacket, laying it down, and turning toward the television.\",c118 12.10 21.00;c063 8.20 16.30;c155 0.00 7.70;c156 13.90 19.30;c002 18.20 21.00;c120 8.30 16.00;c061 12.80 17.70;c000 4.60 9.90;c001 5.70 10.80,20.17\r\nLV24Z,X5XO,Closet / Walk-in closet / Spear closet,7,7,Yes,\"After sneezing, a person grasps a laptop from the shelf.\",laptop;shelf,\"A person walks to a closet and sneezes, then takes a laptop from a shelf and walks away.\",c047 15.30 25.90;c050 16.00 28.00;c153 0.00 5.40,26.79\r\n8U3SS,XXN8,Hallway,6,7,Yes,One person with a vacuum smiles seeing another person watching them while grasping groceries.,bag;groceries;vacuum,Person A is holding a vacuum while Person B is holding a bag and then they begin to laugh at each other.;A person holding a vacuum cleaner laughing.The other person holding a bag of food in a doorway.The one person steps forward to do something else.,c137 0.00 24.80;c152 2.10 22.10;c149 3.90 19.70;c020 0.00 28.90,31.42\r\n7K2CS,HJZQ,Garage,6,6,Yes,Person enters the garage while sneezing. Person sets a box down and begins undressing. Person then picks up a sandwich from the box and starts eating.,chair;clothes;door;food;sandwich;shirt;spoon,\"A enters through a doorway, sneezes, then closes the door and undresses. The person picks up a sandwich from a chair and begins eating it.;This person opens a door, comes into a room, takes off a shirt, and eats from s container.\",c065 17.60 31.00;c067 17.60 31.00;c153 0.00 5.60;c155 5.80 19.20;c097 0.00 5.60;c141 3.30 8.90;c156 17.90 31.00,30.08\r\nS2A89,KL48,Bathroom,7,7,Yes,\"A person takes a chair and walks it over, placing it under the doorknob to brace the door shut. The person then sits down on the toilet.\",chair;door,\"A PERSON IS TAKING A CHAIR FROM ONE ROOM TO THE TOILET/POWDER ROOM AND CLOSES THE DOOR, FIXES THE CHAIR AGAINST THE DOOR HANDLE TO MAKE IT SEEM LIKE THE OTHER PERSON FROM THE ROOM CAN NOT ENTER INTO THE POWDER ROOM\",c006 4.00 10.80;c141 4.40 10.90;c151 12.80 20.00;c097 1.50 7.30,19.29\r\n01O27,18IT,Bathroom,6,7,Yes,\"A person enters a bathroom and closes the door behind them.  They then snap their fingers like they forgot something, and begin grasping at the doorknob as if to open the door again.  But the door won't open.  The person turns and looks into the mirror for a few seconds, and then with a shrug of the shoulders the person lies down on the floor to get some rest.\",door;floor;mirror,\"A person is walking towards the bathroom. A person then opens the bathroom door and closes it. The person then attempts to fix the bathroom knob, then proceeds to lie down on the floor.\",c006 5.10 11.50;c008 0.50 6.60;c124 39.00 47.00;c096 29.80 37.70,46.08\r\n2MJ72,6RE8,Bedroom,6,6,Yes,\"A person opens a window in their laundry room. They close the door, tidy up, and fold towels.\",door;towel;window,A person opens a window and looks out of it.  They then close the door to their bedroom and start folding a towel.,c006 11.00 17.00;c037 20.70 31.00;c092 0.60 8.40;c033 22.40 31.00,30.25\r\nPG1ID,D0RU,Home Office / Study (A room in a house used for work),6,6,Yes,\"A person snuggles with a laptop, A person sits with a broom.\",broom;laptop;something,{},c047 0.00 33.00;c051 0.00 33.00;c052 0.00 33.00;c100 19.50 26.40;c151 20.50 30.60;c098 19.20 33.00,32.08\r\n"
  },
  {
    "path": "NLQ/2D-TAN/data/Charades-STA/charades_sta_test.txt",
    "content": "3MSZA 24.3 30.4##person turn a light on.\n3MSZA 24.3 30.4##person flipped the light switch near the door.\n3MSZA 24.3 30.4##person turn the light switch on.\n3MSZA 24.3 30.4##person is playing with the switch for the light.\nAMT7R 4.3 12.5##a person is putting a picture onto the wall.\nYVKIV 4.4 9.2##the person puts down the bag.\nVXJS4 0.0 3.4##a person walks through the doorway.\nVXJS4 0.0 4.0##a person opens the door.\nGBD1Y 26.2 31.3##person closes the door.\nGBD1Y 26.2 31.3##person closing the door.\nKVXJ9 1.0 11.0##person runs up the stairs.\nKVXJ9 1.0 11.0##a person watches another run up some stairs.\nE6DLK 9.3 14.4##person runs to the window to look out.\nE6DLK 3.1 11.8##a person sits in a chair.\nE6DLK 9.3 14.4##person runs to the window.\nE6DLK 9.3 14.4##person runs to the door.\nE6DLK 3.1 11.8##a person sits on a chair.\nE6DLK 3.1 11.8##the person sits in the chair momentarily.\nAKO6M 0.0 8.8##a person stands in the bathroom holding a glass.\nAKO6M 12.7 19.9##the person takes a bag from the bottom cabinet.\nF7TG5 13.2 20.8##person sits in a chair.\nF7TG5 13.2 20.8##person sits down on a chair.\nF7TG5 10.7 16.5##person throwing a blanket onto the vacuum.\nF7TG5 6.9 13.1##person they throw their clothes on to a nearby desk.\nKOVTR 10.2 19.8##person they stand up.\nKOVTR 4.2 14.2##a person awakens in their sofa.\nKOVTR 28.4 35.0##person takes some medicine.\nFPJ9D 25.8 34.0##person sit on a chair.\n5NV2Z 5.1 10.2##person takes a cup off a desk.\n5NV2Z 13.2 23.0##person opens the front door.\n5NV2Z 13.2 23.0##the person opens a door leading outside.\n5NV2Z 5.1 10.2##a person takes a cup from a table.\nY1HGC 0.2 9.8##a person walks in a doorway drinking some coffee.\nY1HGC 1.7 12.1##person drinking a glass of water.\n9JZO2 26.1 36.0##person put on their shoes.\n9JZO2 0.0 9.9##person holding a glass cup.\n9JZO2 0.0 12.6##a person eats some food.\n9JZO2 0.0 15.1##a person is in a entryway eating a sandwich.\n9JZO2 0.0 9.9##person holding a glass of water.\n9JZO2 14.1 20.3##the person puts the cup down.\n9JZO2 0.0 9.9##person stands in doorway holding a glass.\n9JZO2 0.0 15.1##person eating a sandwich.\n9JZO2 26.1 36.0##person puts on some shoes.\n9JZO2 0.0 9.9##person holding a cup in the doorway.\n9JZO2 11.6 20.8##the person walks into the house puts down the food.\n9JZO2 22.9 29.8##person start smiling as the dress.\n4J1AP 13.1 21.5##person drinking a glass of water.\n4J1AP 9.8 15.7##lastly the person takes a drink from a cup.\nV1WN7 0.0 15.9##person sitting on bed.\nV1WN7 0.0 14.4##a person is dressing.\nV1WN7 0.0 15.9##person sitting on their bed.\nBL7OF 1.0 5.0##a person throws a pair of shoes under the window.\nBL7OF 1.0 5.0##the person throws shoes under the window.\n5C4EK 0.0 6.2##a person reads a book.\nS591U 9.4 17.0##person sitting on top of bed closes laptop.\nDLFPX 0.0 7.7##a person is standing on their stairs holding a bag.\n9HG4Z 0.0 7.7##a person is closing a door.\nI7AS7 0.0 5.1##a person runs through a doorway.\nI7AS7 0.0 5.1##a person runs into the dining room.\nI7AS7 0.5 6.4##the person opens the bag.\nJ48N6 18.4 32.0##the same person was laughing as he was undressing.\nJ48N6 18.4 32.0##person begins to undress.\nJ48N6 14.6 21.2##the person was putting the bag into the cabinet.\nJVLAZ 9.3 18.0##person laying on the bed sneezing.\nJVLAZ 9.3 18.0##person is lying on bed sneezing.\nJVLAZ 19.4 29.5##person drinks water from a cup.\n2RFLZ 3.0 10.4##a person picks up their phone talks on it.\n2RFLZ 2.4 6.9##person takes a phone off a desk.\nN3U9S 0.0 4.8##person opens a cabinet door twice.\nJ9T5D 27.1 35.0##person start laughing.\n1CYLM 0.0 14.2##a person sits down on a couch.\n1CYLM 0.0 14.0##the person is drinking something from a cup.\nV2GC9 10.1 24.2##person putting groceries away.\nV2GC9 11.3 21.1##person opening a pantry door.\nV2GC9 2.3 13.9##a person walks through the house holding a bag.\nV2GC9 10.1 24.2##person put groceries away.\nLGJAR 17.6 25.2##person turns on the light.\nZHRPD 11.8 19.6##the person puts the towel onto the shelf.\nZHRPD 15.6 21.6##the person takes a phone.\n43CCM 7.7 22.0##person undressing by the shelf beside the doorway.\n43CCM 0.1 9.0##a person opens a door.\nYZ8HK 1.4 8.7##the person closes the laptop.\n2P7A9 20.4 27.6##person take a picture from the top of a cabinet.\n2P7A9 20.9 30.3##person sit down in a chair at a desk.\n2P7A9 26.9 31.6##person looking at the picture for a second.\n2P7A9 26.5 35.8##the person puts a picture on their desk.\n2P7A9 18.8 24.0##person they put down the broom.\n2P7A9 26.5 35.8##person put the picture on the desk.\n1ZWPP 2.6 7.7##a person is smiling in the mirror of their bathroom.\n1ZWPP 13.0 19.4##person opens the door.\n1ZWPP 13.0 19.4##person they open the door.\nQUXYH 0.0 10.9##person laughs in the kitchen.\nQUXYH 0.0 10.9##person seems to be laughing into the blanket.\nQUXYH 21.8 31.2##person eats one.\nQUXYH 15.1 22.9##person takes some food.\nQUXYH 0.0 10.0##a person snuggles with a blanket.\nQUXYH 21.8 31.2##person eats it.\nV3SOF 20.0 28.2##person opened up the refrigerator.\nSY5QP 0.0 14.0##a person is standing in the room holding a sandwich.\nSY5QP 11.2 17.7##the person puts the sandwich down.\nAOK1L 30.5 36.0##person drinking from a cup.\nAOK1L 30.5 36.0##person drinking from a glass.\nNBSPH 26.8 32.0##person sits on the table.\nNBSPH 11.7 17.8##person takes a towel from a container.\nNBSPH 11.7 17.8##person takes out a towel.\nHY4FS 4.9 11.6##person the open the cabinet.\nHY4FS 0.4 9.2##a person walks into a bathroom holding dishes.\nYSE1G 0.6 8.9##person closed the door.\nXMYXI 0.0 7.0##a person sits in a chair.\nXMYXI 10.1 15.5##person he begins to laugh at something.\nXMYXI 0.0 7.0##a man is sitting at a chair.\nXMYXI 0.0 15.9##a person is smiling.\nQLEN3 14.0 19.0##person open the closet.\nYSKX3 13.0 18.0##person throws pillow on it.\nHBWLV 9.4 14.3##person puts the shoes on the floor.\nXE19C 0.9 8.5##person puts a cup in the sink.\nXE19C 24.6 31.0##person closes the door.\nXE19C 0.9 8.5##person puts the cup in the sink.\nW3SC3 8.0 15.2##the person immediately opened a window.\nW3SC3 8.0 15.2##person opens a window.\nW3SC3 8.0 15.2##person opens the window.\nWKPQ3 15.8 28.7##person they talk on the phone.\nWKPQ3 25.3 30.9##person close the closet door.\nWKPQ3 5.1 11.0##person turns on the light.\nFXZI5 3.0 12.4##a person is dressing in a towel.\nOE2M1 12.9 19.3##another person comes in takes the box away.\nOE2M1 12.9 18.7##person takes the tray of food.\nOE2M1 12.9 19.3##person takes the box.\nZF7YA 5.3 11.7##the person sits on a pillow on the floor.\nZF7YA 0.0 6.5##a person runs down a few stairs.\nZF7YA 5.3 11.7##person sitting on the floor.\nB82GJ 17.7 22.5##the person takes a paper towel from the table.\nFYYFX 2.0 11.2##person opens a window.\nFYYFX 8.6 14.1##person takes a camera from a table.\nFYYFX 14.0 24.7##person get something to look out the window with.\nFYYFX 0.0 4.0##person upon awakening.\nFYYFX 14.0 24.7##person looks out the window.\nQ7IQI 0.0 4.5##person looks at some books open it.\nQ7IQI 1.8 8.6##person start sneezing with looking at the papers.\nQ7IQI 1.8 8.6##a person is sneezing into a blanket.\nHSEH1 10.0 22.6##person is fixing a light bulb.\nHSEH1 10.0 22.6##a person is fixing a light on the room.\nHSEH1 10.0 22.6##a person is fixing a light.\n6ZWSU 1.4 7.2##person puts the books down.\n6ZWSU 1.4 7.2##person they immediately put their books down.\n6ZWSU 16.2 21.8##the person takes their phone out.\n6ZWSU 10.6 19.3##person take their shoes off.\n6ZWSU 0.0 4.5##person closes the door.\n6ZWSU 16.2 21.8##the person takes their phone.\n6ZWSU 19.1 32.0##person plays with their phone.\nV0ZD9 0.5 16.0##person washes a cup.\nV0ZD9 23.2 39.0##person putting on clothes in a dining room.\nAK2KG 12.5 19.0##person opens up the window.\nAK2KG 0.0 6.8##a person is sitting on a bed.\nAK2KG 0.0 6.8##this person is sitting on their bed in the bedroom.\nAK2KG 12.5 19.0##person begins opening the window.\nAK2KG 12.5 19.0##person opened the window.\nAK2KG 0.0 6.8##a person was sitting on a bed.\n8MQH6 0.0 8.1##a person opens a closet door.\n8MQH6 0.0 8.1##a person opens up the closet.\n8MQH6 0.0 8.1##a person opens a closet.\n8MQH6 9.9 15.8##person they hold the shoes.\nMAUMO 0.0 9.6##person takes a drink from a glass.\nEHS68 1.1 6.4##another person is throwing a pair of shoes.\nG30NS 2.5 10.6##person puts it into a box.\nG30NS 2.5 10.6##person puts the box down.\nG30NS 0.4 7.6##person putting things on a shelf.\nG30NS 7.0 14.0##the person takes a large blanket.\nSUJWY 17.1 29.7##the person laughs at something on the screen multiple times.\nSUJWY 17.1 29.7##the person begins laughing at something on the screen.\nKERO6 11.4 16.9##the person puts some food onto a pan.\nSV6KF 9.3 14.5##a person throws a broom at the stairs.\nSV6KF 9.3 14.5##this person throws the broom down.\nVCYH8 18.2 23.8##person turns off the light as they're leaving.\nVCYH8 18.2 23.8##person turns off a light.\nG852Y 3.0 10.1##one person is wrapped in a blanket sneezing.\nOKXIQ 0.0 5.7##person they use the doorknob to open the cabinet.\nKB7WQ 7.3 14.0##person they close the box.\nKB7WQ 7.3 14.0##the person closes a box that's been searched through.\n27DCQ 13.5 19.2##a person awakens in bed.\nUM5II 3.7 14.0##the person eats a few bite.\nUM5II 0.9 7.7##a person is sneezing on the medicine.\nUM5II 0.9 7.7##person starts sneezing.\nUM5II 0.9 7.7##a person is sneezing.\nXT9D4 18.3 25.3##a person is putting food into the refrigerator.\nXT9D4 0.0 3.8##a person is putting away groceries in the fridge.\nXT9D4 25.5 30.6##person their phone rings so they close the fridge door.\nXT9D4 25.5 30.6##person closed the refrigerator door.\n1W6YY 3.5 7.9##person closes the cabinet door.\nYOCRB 26.4 36.0##person sit down in a chair.\nYOCRB 26.4 36.0##person sitting in a chair.\nZDV60 0.3 9.2##a person opens a closet door.\nZDV60 10.6 20.7##person start dressing themselves.\nZDV60 1.5 10.3##person opens the door.\nZDV60 25.4 32.0##the person puts shoes on.\nGHC5X 22.2 27.8##a person takes a glass of water.\n6IOV0 0.0 13.1##person working on a laptop.\n6IOV0 0.0 13.1##person playing a casual game on their laptop.\n6IOV0 9.5 16.4##person drinking a bottle of soda.\nOP2SS 20.4 26.7##the person takes out their laptop.\nPPY0W 0.0 7.8##a person is holding a bag.\nDCV2M 25.4 32.0##person start undressing.\nDCV2M 3.0 13.6##a person is awakening.\nTEV5K 7.1 16.2##person begings to drink a glass of water.\nTEV5K 0.0 8.3##a person opens their kitchen window.\nTEV5K 0.0 8.3##a person opens the window.\nQ3BCC 0.0 6.8##a person closes a door.\nQ3BCC 0.0 6.8##person trying to close the door.\nM8OYC 1.7 11.5##a person walks in holding a bag of groceries.\nFBOF0 9.2 22.2##a person awakens in bed.\nFBOF0 26.8 32.1##the person throws the blanket off of the bed.\nD1NT7 10.8 18.6##a person is putting some dishes into a box.\nD1NT7 10.8 18.6##person they put the box on a bed.\nD1NT7 10.8 18.6##a person is putting some plates in a box.\n3UACJ 1.8 6.4##person takes a drink from a glass.\nU2AO1 0.0 4.6##closes the doors.the person takes the food.\nU2AO1 10.5 17.0##person starts eating.\nU2AO1 0.0 4.6##a person closed a cabinet.\nU2AO1 10.5 17.0##person looks for something to eat.\nU2AO1 10.5 17.0##the person eats it.\nU2AO1 4.1 9.7##person a opens the door bites into a snack.\n3J9L5 1.0 6.6##a person is eating.\n3J9L5 2.8 9.0##a person is throwing the bag at the light switch.\nXQVXF 4.5 11.1##person opens a fridge door.\nXQVXF 4.5 11.1##another person opens an oven door to look inside.\nXQVXF 0.0 9.0##one person is cooking.\n9LWQ6 0.0 9.7##a person undresses.\n9LWQ6 11.0 21.0##person takes their shoes off.\n9LWQ6 11.0 21.0##person takes off their shoes.\n9LWQ6 1.1 10.0##person puts the clothes on the bed.\n2ADJI 10.0 21.9##person putting away groceries.\n2ADJI 0.0 8.1##person drinking from a glass of water.\nB1AMA 21.0 35.7##person dresses in pajamas.\nLA6AA 2.2 11.8##a person was holding a blanket.\nLA6AA 2.2 11.8##a person is holding a blanket.\nYNWMW 9.9 15.9##the person takes a broom.\nYNWMW 0.0 5.2##a person eats some food.\nYNWMW 0.0 5.2##a person is in a basement eating.\nLUTIO 0.0 10.4##the person lays on the floor the gets up.\nQ6290 0.0 8.3##person watching the television eating an apple.\nQ6290 0.0 8.3##a person is standing eating something as they watch tv.\nQ6290 0.0 8.3##person eating a sandwich out of a dish.\nTAQ25 11.6 17.7##the person closes the laptop.\nTAQ25 11.6 17.7##the person closes the laptop screen.\nTAQ25 4.3 16.5##person smiling at their laptop.\nEEVD3 18.4 32.0##person begins to eat it.\nEEVD3 2.0 7.9##a person is holding the door to the refrigerator open.\nEEVD3 18.4 32.0##person removes a snack to eat.\nEEVD3 18.4 32.0##person eat the food.\nEEVD3 18.4 32.0##person they begin eating the fruit.\nEEVD3 11.4 16.9##person closing the door.\nIOGR7 19.7 28.3##person they stand up.\n2OREK 11.5 17.6##looking out the window in a curious manner.\nJCT0K 2.6 10.2##a person is opening the closet door.\nJCT0K 0.1 6.2##person opens the closet.\nH0P5D 11.0 18.1##one person was running into the table.\nH0P5D 23.7 32.0##person they laugh.\nBFCU9 0.2 5.3##person eating it.\nBFCU9 0.2 5.3##a person is eating from a can.\nBFCU9 0.2 5.3##a person eats something from a jar.\nBFCU9 14.0 18.0##person puts the jar down on a table.\nBFCU9 3.2 8.4##person the put the food down.\nBFCU9 0.2 5.3##person eats it.\nBFCU9 0.0 8.2##a person is holding some food.\nTUD6M 4.3 8.0##person throws their blanket inside.\nTUD6M 4.3 8.0##person throwing a blanket into a closet.\nA3XXB 1.9 7.1##person puts them away on a shelf in a closet.\nA3XXB 0.0 5.6##a person is tidying a blanket.\nL5YHH 0.6 5.7##a person is turns on the light in their closet.\nL5YHH 18.6 31.6##person open the door.\nL5YHH 17.3 35.4##person opens the closet.\nGL2JW 14.9 21.9##person closes a cupboard door.\nGL2JW 14.9 21.9##the person closes a cupboard door.\nGL2JW 14.1 22.3##a person is closing a cabinet.\nFAJEA 14.3 23.5##person they take some medicine.\nFAJEA 23.4 31.0##person drink from a cup.\nRXELU 2.5 6.6##person turns the light on.\nRXELU 2.5 6.6##person turns on the light.\nRXELU 8.9 16.0##person smiling in the mirror.\nRXELU 3.7 9.7##the person drinks from a cup of coffee.\nQCVZN 6.2 12.0##a person takes a book off a shelf.\n5B9XE 18.7 29.0##person turns off the ceiling light.\n5B9XE 18.7 29.0##person turns the light off.\n5B9XE 18.7 29.0##person turns off the light.\n5B9XE 0.0 13.9##a person runs into a room.\n5B9XE 0.0 13.9##a person runs into the bedroom.\nLKNZD 0.0 6.5##a person is throwing clothes on the floor.\n0DVVD 2.8 14.3##a person closes a window.\n0DVVD 0.1 10.3##a person is opening a window in the bathroom.\nU8M2P 1.6 13.3##another person is sneezing on a sandwich.\nVAV4C 13.8 23.5##person eating a sandwich.\nVAV4C 13.8 23.5##the person is sitting on a closed toilet eating.\nVAV4C 9.3 17.6##a person is in a bathroom drinking from a cup.\nVAV4C 13.8 23.5##person repeats the process until he is finished with both.\nVAV4C 43.3 48.0##person walk out the doorway.\n6C0BK 0.3 7.8##a person is putting a towel on a towel rack.\n5CN21 11.6 17.5##a person is standing in their garage holding a pillow.\n5CN21 11.6 17.5##person holding a pillow.\nOTIA2 0.0 4.4##person turns on a lightswitch.\nOTIA2 0.0 5.0##a person walks through the doorway into the home office.\nOTIA2 0.0 4.4##person turns on the light.\nOTIA2 0.0 4.4##a person is walking to turn on the light.\nB4ED1 23.5 32.8##a person is pouring water into a cup.\n86E2E 0.0 8.8##the person is sitting on the floor.\n86E2E 2.2 8.2##person snuggling with a pillow.\n86E2E 15.3 20.8##person begins to eat from a bowl on the floor.\n86E2E 15.3 20.8##person eats something.\n86E2E 1.3 8.4##person holds a pillow.\n86E2E 0.0 8.8##a person sits on the floor.\n86E2E 15.3 20.8##person eating as they are laying down.\n86E2E 15.3 20.8##person eating food in a home office / study.\nYJ1KW 8.8 14.3##person sits down in a chair.\nYJ1KW 8.8 14.3##person sits down in a red chair.\nDJ87X 0.0 9.6##a person is looking out the window.\nDJ87X 0.0 9.6##a person looks out the bathroom window.\nDJ87X 19.2 26.8##person takes their phone out of the cabinet.\nN0ZPI 14.4 20.8##person take a drink from the cup.\nN0ZPI 21.8 26.5##person throw it on the floor.\nOVD84 4.1 10.8##a person turns on some lights.\nOVD84 4.1 10.8##person turns on the light.\nOVD84 4.1 10.8##person turns on a light.\nNW0KT 7.9 18.8##person takes book out.\nNW0KT 7.9 18.8##person takes a book out from the entertainment center.\nNW0KT 43.6 50.0##a person is tidying some books on a shelf.\n8SDK5 15.4 23.0##person sits down in a chair.\n8SDK5 5.9 16.7##person laughing so hard.\n95GB4 8.8 19.8##person takes a picture with a camera.\n95GB4 8.8 19.8##the person takes a picture of something.\n95GB4 5.1 13.1##the person puts the phone away.\n95GB4 18.3 31.0##person washes their hands with hand sanitizer.\n95GB4 0.0 11.2##person playing with a phone.\n95GB4 8.8 19.8##person takes a picture.\n95GB4 0.0 11.2##person playing with their phone.\nTDAY1 0.0 16.6##person working on a laptop.\nTDAY1 23.4 35.0##person stand up from the laying position.\nNRGQB 6.1 11.6##person throws their shoes off by kicking them.\n5R8BL 12.1 22.0##person begin undressing.\n5R8BL 0.0 6.6##a person opens their closet door.\n5R8BL 5.7 13.1##person they throw the pillow behind them.\nBI4KK 0.9 8.4##person drinking from a glass of water.\nDU416 7.9 18.0##person holding a bag.\nNO1GJ 15.9 25.8##person washes clothes.\nNO1GJ 15.9 25.8##a person is washing the clothes.\nNO1GJ 0.0 10.2##a person is undressing in their laundry room.\nNO1GJ 8.0 16.1##person they take a towel from a cabinet.\nNO1GJ 0.0 10.2##a person is undressing in the laundry room.\nNO1GJ 15.9 25.8##person their other clothes into the washer.\nNO1GJ 16.4 25.4##person talking a towel off the shelf.\n7SNIO 0.0 7.3##one person runs into the room laughing.\n7SNIO 0.0 7.3##the person runs into the room.\n7SNIO 0.0 7.3##a person runs into a living.\nQOYH2 17.5 25.3##person takes a drink from a cup.\nQWKVM 10.3 19.1##person closes the door.\nQWKVM 1.2 8.0##person puts a glass on the desk.\nQWKVM 0.0 5.2##one person opens the door.\nQWKVM 0.0 5.2##a man opens a door.\nCOBS0 6.7 14.0##a smiling person takes a towel.\nTJZ0P 10.2 19.0##the person is seated in a chair.\nTJZ0P 10.2 19.0##person eats some food.\nTJZ0P 8.5 14.2##person takes a bite of food.\nTJZ0P 2.8 10.4##person they start sneezing.\n759MY 7.5 13.0##person put something on the table.\n759MY 11.9 17.4##person putting on their shoes.\n759MY 11.9 17.4##person put on their shoes.\n759MY 1.8 6.8##a person awakens in their home office.\nF1V30 0.0 4.2##a person holding a towel walks up to a counter.\nF1V30 23.1 33.0##person washing a glass.\nU502L 20.4 26.9##a person awakens in their bathroom holding their phone.\nU502L 27.5 32.3##person takes a towel off the shower rod.\nOPPVW 19.2 25.0##person laugh about it.\nNI15V 13.5 19.5##person holding a towel in the other hand.\nNI15V 18.5 25.4##the person in the doorway walks away holding the towel.\n6HT0J 6.8 19.5##person start reading a book.\n6HT0J 8.2 20.1##person holding a cup.\nBM3UJ 6.4 17.3##a person walks through the entryway holding a glass.\nBM3UJ 3.4 9.8##a person opens the door to their study.\nBM3UJ 3.4 9.8##a person opens the front door to their residence.\nDM2XL 15.4 20.9##person opens the front door.\nDM2XL 15.4 20.9##person opening a door.\nRQRRD 7.5 24.3##person quickly undressing.\nRQRRD 0.0 4.8##a person runs into the bedroom.\nRQRRD 16.9 22.3##the person throws their dirty clothes onto a sofa.\nRQRRD 0.0 4.8##a person runs into the the living room.\nRQRRD 5.2 11.8##person takes new clothes from a box.\nS2FUO 0.0 8.4##a person kneeling on the floor talks on a phone.\nS2FUO 0.0 8.4##person talking on the phone.\nS2FUO 13.3 22.4##the person pours something into a glass.\nS2FUO 0.0 8.4##a person talks on their phone in the kitchen.\n36T5X 24.0 34.0##person starts undressing out of their outdoor clothes.\n36T5X 14.2 23.0##person closes the door.\n36T5X 14.2 23.0##person another closes the door.\n36T5X 14.2 23.0##person closing the door.\n36T5X 24.0 34.0##person begins to undress.\nAL1WC 0.0 3.8##the person closes the door.\nHOYUT 11.8 17.5##person closes the pantry door.\nL39A4 0.6 7.8##a person sits on the floor reading a book.\n4H64T 32.1 44.0##person eating some leftovers from a take-out carton.\n4H64T 20.6 30.0##person takes out some food.\n4H64T 14.6 21.2##person opens a refrigerator.\n4H64T 32.1 44.0##person start to eat the food with a plastic fork.\n4H64T 14.6 21.2##person opens the refrigerator.\nAIJ0M 0.0 9.5##that same person takes a towel.\nAIJ0M 7.4 13.1##person opens the door.\nAIJ0M 0.5 12.8##person holding a towel over one arm.\nFXGQI 1.7 6.7##person sneezing into the mirror they are holding.\nFXGQI 1.7 6.7##person they start sneezing.\nKY2KA 3.7 9.5##person knees takes a book from a cabinet.\nKY2KA 3.7 9.5##a person takes a book from a shelf.\nKY2KA 3.7 9.5##one person takes a book from a wardrobe.\nMNNJS 21.3 30.7##person pouring coffee into a cup in the dining room.\nMNNJS 18.5 24.0##the person puts the cups onto a table.\nMNNJS 21.3 30.7##person pour a cup of coffee.\nQMIKJ 0.7 9.8##a person is putting their laptop on their desk.\nQMIKJ 0.0 9.3##person watching television.\nQMIKJ 1.6 9.3##person puts a laptop down on a table.\nHRASP 2.7 7.9##a person turns on the light to an entryway.\nHRASP 19.7 26.4##person seen closing a door.\nHRASP 2.7 7.9##person turns on a light.\nHRASP 6.3 11.6##person are seen throwing shoes on the floor.\nUY0SK 13.2 18.1##the person takes a bite out of the sandwich.\nUY0SK 22.9 28.0##person sit to eat a sandwich.\nUY0SK 14.6 28.0##person watch the television in the next room.\nYQT32 17.8 27.2##person takes several pictures of different things in the room.\nSJ4QF 6.4 15.5##person washes a glass.\n69R8T 24.9 33.0##person eats it from a plate.\n2Z8G8 6.2 15.5##person they put the bag on a shelf.\n2Z8G8 14.9 29.4##person tidying up a blanket.\nXVI3M 14.8 20.9##person they put the laptop on the pillow.\nXVI3M 17.6 24.9##person stand up.\nXVI3M 14.8 20.9##the person puts the laptop down.\nY3M3W 1.7 8.0##the person is looking at an opened book.\nURK3G 14.5 20.8##person open the books.\nURK3G 3.7 18.6##person start drinking from the glass.\nURK3G 5.9 11.6##another person runs in with homework.\nURK3G 0.0 7.1##one person opens the refrigerator.\nG8NEV 14.7 24.0##the person starts reading a book.\nG8NEV 18.2 24.2##person a few moments later laughs.\nG8NEV 18.2 24.2##person laughs a little bit.\nC0CMQ 11.8 18.7##person open the door at the bottom of the stairs.\nC0CMQ 13.6 20.0##person walks through the doorway.\nC0CMQ 11.8 18.7##person opens a door.\n7XMBM 9.3 18.3##person starts eating.\n7XMBM 9.3 18.3##person eating from a bowl.\n7XMBM 9.3 18.3##another person walks into a room eating some food.\n61IVZ 2.6 9.2##person closes the door.\n61IVZ 0.0 12.0##person they set down the bag they're holding.\n61IVZ 5.8 13.3##person put down the bag they were holding.\n61IVZ 5.8 13.3##the person puts a bag down.\n61IVZ 0.0 5.3##a person opens the door.\nA33VQ 11.1 19.7##person holding a chair opened a refrigerator.\nA33VQ 11.1 19.7##person opening a refrigerator in the dining room.\nA33VQ 21.0 29.4##person closes the refrigerator.\nZMY8M 6.4 11.8##person takes some food from a bowl.\nZMY8M 8.1 13.8##a person eats a sandwich from the table.\nZMY8M 8.1 13.8##the person eats some food.\nZMY8M 19.8 25.5##person opening a cabinet in a kitchen.\nZMY8M 8.1 13.8##person eating breakfast.\nZMY8M 19.8 25.5##person opens cabinets above it.\n39E0I 0.0 6.3##a person runs around covered in a blanket.\nT9Y1N 22.4 32.0##the person starts smiling.\nT9Y1N 5.0 10.9##the person opens the box.\nT9Y1N 6.6 18.3##a person is sneezing on a box.\nT9Y1N 0.0 3.8##a person opens the doors to the pantry.\n0PU21 13.6 17.8##the person puts the cup down.\nAX46Z 12.8 28.7##person starts laughing.\nAX46Z 12.8 28.7##person laughs as they lean against the dresser.\nAX46Z 0.0 8.2##the animal sitting on the bed climbs on the person.\nAX46Z 1.2 7.2##a person is awakening in their bed.\n9POJB 14.0 27.9##the person sits in a chair for a moment.\n9POJB 16.5 22.6##person takes a blanket.\n9POJB 14.0 27.9##person sitting in a chair drinking a something.\n9POJB 2.2 7.2##person stand up.\nK0FAG 11.0 21.1##a person is smiling.\nK0FAG 11.0 21.1##a person is standing in their kitchen laughing.\nN0G70 0.0 9.1##a person puts food into a sandwich maker.\nN0G70 0.0 9.1##a person cooks a sandwich on a panini maker.\nSJ51G 16.0 21.7##person puts the blanket into a closet.\nSJ51G 0.0 13.0##a person is seen snuggling up to a blanket.\nSJ51G 9.9 18.9##a person opens a door.\nSJ51G 9.9 18.9##person open their closet door.\nSJ51G 19.1 29.3##person close the door.\nSJ51G 16.0 21.7##person put the blanket away.\nSJ51G 0.0 13.0##a person is snuggling with a blanket.\n30I35 1.5 8.3##person took a drink from the glass.\n30I35 9.0 14.6##person poured its contents into the glass.\n30I35 9.0 14.6##person pours a glass of something.\n30I35 1.5 8.3##person takes a drink from the glass.\n30I35 9.0 14.6##person pours water into a glass.\nMUWG4 5.0 13.4##person pours soda into a cup.\nWD35N 3.9 9.7##a person opens a cabinet.\nWD35N 3.9 9.0##person closes the cabinet.\nWD35N 8.9 14.3##person takes a pillow from inside.\nWD35N 8.9 14.3##person takes out a pillow like object.\nLLT3E 15.4 22.4##person walks through a doorway to leave the room.\nLLT3E 15.4 22.4##person they walk through a doorway.\n8UCK1 1.6 7.0##a person opens a cabinet.\n8UCK1 1.6 7.0##a person is opening a cabinet.\n8UCK1 8.7 13.9##person closing the cabinet.\n4U8WV 0.0 14.7##person holding a small hand towel.\n4U8WV 8.5 15.2##the person puts the towel down on the couch.\nLSFJG 20.7 26.0##person starts running in place.\nLSFJG 1.8 9.4##a person puts on a pair of shoes.\nLSFJG 20.7 26.0##person begins running in place.\nLSFJG 20.7 26.0##person they start running in place again.\nLSFJG 13.3 20.6##person start watching themselves in a mirror.\nLSFJG 20.7 26.0##person start running in palce again.\nLSFJG 20.7 26.0##person starts running in place again.\nW0QSB 0.0 14.4##a person is cooking on a stove.\n5IPJA 13.9 20.9##person puts a pillow on their head.\nS7JTZ 3.0 14.5##person uses it to take pictures of their self.\nS7JTZ 3.0 14.5##person take a timed picture.\nS7JTZ 2.4 14.5##a person walks into the bathroom holding a camera.\nRVVDR 7.9 15.0##person puts the bag on the table.\nRVVDR 3.7 12.6##person putting it on a table.\nRVVDR 0.0 13.8##a person was holding a bag which he.\nRVVDR 0.5 11.0##a person is putting groceries in a bag.\nRVVDR 0.0 11.6##a person opens a bag.\nT06AT 0.0 13.4##one person runs into the bathroom grasping a pillow.\nT06AT 0.0 13.4##a man runs into a bathroom holding a pillow.\nT06AT 5.0 13.4##another person is inside holding a blanket.\nTZ9FE 0.0 8.0##a person runs to the closet.\nTZ9FE 0.0 8.0##a person runs into a room.\nTZ9FE 23.0 29.0##person puts the clothes away.\nTZ9FE 0.0 14.0##person holding a stack of clothes.\nT7ST5 0.0 8.7##the person used the spoon to eat from the cup.\nT7ST5 0.0 8.7##person eating a piece of pie.\nIQA16 0.8 13.6##person putting them on a table.\nIQA16 11.2 19.6##person turns off the light.\nIQA16 11.2 19.6##person switch the light off.\nIQA16 11.2 19.6##the person turns off the light.\nM3OMM 0.0 8.4##a man begins to undress.\nJ7BOV 4.6 11.9##a person is putting a camera next to a towel.\nRPXAC 10.1 22.2##person dressing themselves.\nRLQ9K 16.1 30.7##the person takes out a bottle of medicine.\nRLQ9K 16.1 30.7##person take some medicine.\nPRTAJ 7.5 19.7##a person opens a cabinet.\nPRTAJ 8.7 17.1##person closes the cabinet.\nPRTAJ 31.4 43.0##person looks out the window.\nPRTAJ 18.8 33.1##person gets dressed.\nKZ36U 2.9 8.0##a person runs into the garage.\nKZ36U 9.0 15.5##the person takes a picture of something.\nCD9GP 23.5 28.9##person stand up.\n7NXWU 4.2 13.1##person drinking from a cup.\nOHNUQ 6.5 13.5##a person is eating some food.\nOHNUQ 0.0 9.5##person they are watching television in the living room.\nOHNUQ 6.5 13.5##person eating it out of the box.\nOHNUQ 0.0 9.5##person watching the television.\nOHNUQ 0.0 9.5##person watching television.\n5VUT9 0.0 10.0##the person is holding a broom.\n5VUT9 5.0 10.0##person put the broom aside.\n5VUT9 8.0 13.0##person open a cabinet door get a cup out.\n5VUT9 0.0 10.0##a person standing in the doorway holds a broom.\n5VUT9 18.0 25.0##person pour a cup of coffee.\nFQS7O 6.9 11.5##person closes a book.\n55NRK 19.1 30.6##person begins sneezing.\nUNWMJ 1.3 13.6##the person was undressing by the wardrobe.\nX9M5B 0.0 15.9##the person is sitting in the couch with the laptop.\n9RRED 25.5 32.0##person sits down on a sofa.\n9RRED 18.3 25.3##person takes off his shoes.\n9RRED 18.3 25.3##this person takes off their shoes.\n9RRED 0.0 5.8##person drinking from a water bottle.\n9RRED 18.3 25.3##the person takes off a pair of shoes.\n9RRED 25.5 32.0##person sits on a couch.\n9RRED 0.0 5.8##person drinking from a plastic water bottle.\nIALUY 9.5 20.4##person holding a towel.\nIALUY 5.6 13.2##a person is sneezing.\nIALUY 8.6 15.1##person takes a towel from a rack.\nHHNTA 24.9 31.1##person open a box.\nHHNTA 0.0 14.5##person eating something.\nHHNTA 0.0 14.7##a person is walking around the room eating a sandwich.\nHHNTA 0.0 14.5##person removes a sweatshirt.\nHHNTA 13.9 26.2##person start undressing.\nHHNTA 0.0 14.5##person takes off a sweatshirt.\nHHNTA 0.0 14.5##the person takes off their hoodie/sweater.\nBM9NZ 24.1 30.8##the person eats food.\nBM9NZ 0.0 15.0##a person is snuggling with their pillow in bed.\nBM9NZ 0.0 15.0##person snuggling with a pillow.\nBM9NZ 24.1 30.8##person they start eating.\n318CP 19.7 33.0##person pick up a cup to drink.\n318CP 8.7 23.6##person eat it.\n318CP 8.7 23.6##person eats it.\n318CP 19.7 33.0##person drinks from a cup.\nH608V 11.6 22.0##a person is running in the living room in circles.\nH608V 0.9 7.9##person eats a sandwich.\nH608V 11.6 22.0##person begins to run around in a circle again.\nH608V 11.6 22.0##a person runs around the room in a circle.\nH608V 1.0 6.4##person take a bite of a sandwich.\nH608V 11.6 22.0##person continue to run.\nH608V 11.6 22.0##person start running again.\nIGZZG 0.0 8.8##person reading a book.\nIGZZG 0.0 8.8##person reading books.\nIGZZG 5.4 11.6##the person is sitting on the floor watching television.\nMPHFU 0.0 11.2##a person looks at a picture in a picture frame.\nMPHFU 0.0 12.2##a person holds a picture.\nYYLKT 12.5 24.0##person begin to eat a sandwich.\nYYLKT 7.7 15.3##the person puts the blanket on the floor.\nTUJF4 0.9 8.2##a person opens a door.\nTUJF4 14.9 21.9##person takes a pair of shoes from under a chair.\nA2X7Q 11.1 18.7##person put a sandwich in the bag.\nA2X7Q 5.5 10.7##person take a bag out.\nA2X7Q 3.0 11.0##a person walks into the kitchen they open the cabinet.\nURAIM 13.7 20.4##the person takes a picture from the table.\nURAIM 13.7 20.4##the person takes a picture from a coffee table.\nURAIM 25.7 32.0##person puts it back on the table.\nMBAA5 14.9 24.2##a person is smiling.\nMBAA5 2.7 13.0##person opens a closet door.\nMBAA5 12.0 23.8##person closing a closet door in the hallway.\nMBAA5 12.0 23.8##person closes the door.\nMBAA5 2.7 13.0##the person opens a closet.\nMBAA5 7.6 17.5##person puts it on a shelf.\nYE6TZ 0.2 8.3##a person is putting a book on a chair.\nYE6TZ 10.1 17.3##person start drinking from a cup.\nYE6TZ 0.2 8.3##a person put a book into a closet.\n0TDOP 2.1 8.0##a person is putting a box on the table.\n0TDOP 0.0 6.7##a person holding a brown cardboard box enters a kitchen.\n8B4ZP 31.6 40.2##person they stand up.\n8B4ZP 46.4 49.0##person turn off the light.\n8B4ZP 38.4 47.8##person start undressing.\n8B4ZP 46.4 49.0##person turning off the light.\n8B4ZP 27.5 34.2##the person puts the book down.\nN0NLE 23.5 30.0##person laughs at cellphone.\nN0NLE 23.5 30.0##person laughing a lot.\nN0NLE 23.5 30.0##person is laughing at the camera.\nAVL8A 3.8 8.5##person opens a book.\nAVL8A 4.8 12.2##person smiling at the book.\n7ZL8E 16.6 27.2##person putting the shoes down on the floor.\n7ZL8E 16.5 25.9##a person takes off their shoes.\n7ZL8E 0.0 12.6##person they hold each shoe.\n7ZL8E 16.5 25.9##person takes off their shoes.\nV0WK7 6.1 16.1##another person stands by them smiling.\n3JXKZ 0.0 3.8##a person is opening a bag.\nKQ6XW 15.7 25.2##person take a drink from their water bottle.\n9TM1K 0.0 8.1##the person opens a box.\n9TM1K 25.1 32.0##person closes the book.\nYMD74 3.4 8.8##a person is awakening.\nYMD74 16.0 23.2##person putting on shoes.\nYMD74 3.4 8.8##person awakening.\nATIAW 27.3 32.9##person turn on the light.\nATIAW 27.3 32.9##person turning on a light.\n0UK3H 2.1 8.2##person taping the box closed.\nKWZSA 23.8 31.0##person walks to the doorway.\nKWZSA 13.4 28.1##a person was sitting at a table.\nKWZSA 15.1 26.5##person begins tidying the table.\n12XD3 4.1 11.9##person looks outy the window.\n12XD3 0.0 4.0##person eating some food.\n12XD3 1.4 7.9##the person is look at a picture.\n12XD3 0.0 4.0##a person is eating.\n12XD3 0.0 4.0##the person begins eating the sandwich.\n12XD3 4.1 11.9##person watching something out the window.\n12XD3 1.4 7.9##person looks at the picture.\n3Q6N1 0.0 4.4##a person opens their laptop to do their work.\n3Q6N1 11.4 14.0##a person starts working on a laptop.\n7XCAP 25.2 30.7##a person is smiling.\n7XCAP 18.1 32.0##person they are drinking a glass of water.\n7XCAP 18.1 32.0##person drinks from a glass.\n7XCAP 18.1 32.0##person begin to drink water from a glass cup.\nGY8P2 9.5 14.9##person is sneezing.\nGY8P2 9.5 14.9##the sneezing person picks up a broom as well.\nXK0QV 0.0 14.3##person drinking a glass of water.\n1HZGH 16.7 32.2##person putting on their shoes.\n1HZGH 16.7 32.2##person begin putting on their shoes.\n1HZGH 16.7 32.2##person proceeds to stand put on a pair of shoes.\nJ5K87 15.4 26.5##a person is laughing on the phone.\nJ5K87 7.9 14.1##person drinking a glass of orange juice.\nDR1ZU 2.1 7.6##person turns the light on.\nDR1ZU 0.0 5.7##a person is fixing the light near the stairs.\nDR1ZU 2.1 7.6##a person turns on the light.\n874F1 0.0 3.6##the person drinks from a glass.\nQJM3B 10.1 14.4##person closes the book.\nJ6JNK 24.0 32.0##person closing a wood door.\nJ6JNK 0.9 10.8##a person is awakening with clothes on.\nJ6JNK 24.0 32.0##person closing the door.\nJ6JNK 24.0 32.0##person closing the door next to their bed.\nJVH7Q 0.0 3.7##the person looks out the window.\nFQM2N 0.0 10.0##a person sits in a chair.\nFQM2N 0.0 3.2##person sitting on the bed.\n21WN7 15.2 21.5##person put the plate on a table.\n21WN7 2.0 16.0##a person sitting in a chair eating something.\n21WN7 2.0 16.0##a person is sitting on the couch eating food.\n21WN7 2.0 16.0##person eating food.\n21WN7 15.4 32.1##person puts the food on a table.\nECFMO 23.2 30.0##person closes the door.\nECFMO 3.1 15.5##person simultaneously being interrupted by sneezing.\nGIIF8 1.2 8.0##a person puts a bag on a shelf.\n75M1Z 25.9 32.0##person sat on the sofa to read a book.\n75M1Z 23.6 29.4##person sits on the sofa.\n75M1Z 25.1 31.6##person opens a box with a book.\n75M1Z 25.1 31.6##person opens the book.\nJ3Y7L 0.0 9.1##a smiling person opens a box.\nJ3Y7L 0.0 9.1##a person opens a box.\nTQYV1 21.1 27.2##person starts sneezing.\nGKH0F 23.4 34.0##one person takes a phone from a bag.\nRPY8D 0.0 10.9##person fixes their hair.\nRPY8D 0.0 15.2##person sitting on a couch.\nUMTLM 14.5 20.0##person so he is closing the bathroom door.\nUMTLM 14.5 20.0##person close the door.\nFORXE 7.6 14.3##person runs around with a bag in their hand.\nFORXE 7.6 14.3##person decides to run with a bag of groceries.\nFORXE 2.5 9.4##a person is throwing a picture on the floor.\n3WMV4 3.1 9.1##a person is eating.\n3WMV4 3.1 9.1##person eating a snack.\n3WMV4 1.5 5.6##person drinking a glass of water.\n3WMV4 3.1 9.1##person eating a sandwich.\nC7G1S 0.0 8.7##this person washed the dishes over the sink.\n3AKML 30.0 41.0##person takes a box off of a shelf.\nNDDHA 11.8 24.3##person put on shoes.\nNDDHA 20.0 26.6##person runs out.\nNDDHA 20.0 26.6##person running out of the room.\nNDDHA 11.8 24.3##person putting shoes on.\nNDDHA 11.8 24.3##person puts on some shoes.\nNDDHA 11.8 24.3##person putting on shoes.\nW8CWW 16.8 30.4##a person opens a door goes into a room.\nW8CWW 16.8 30.4##a person opens a door.\nW8CWW 16.8 30.4##person opens turns doorknob.\n11L5M 16.4 30.0##person starts running in place.\n11L5M 16.4 30.0##person start running in place.\n11L5M 15.5 20.4##person they throw the broom down.\nE6ZBZ 10.5 17.1##person they start sneezing.\nH0L5S 23.3 29.4##person opens the door.\nH0L5S 23.3 29.4##person opening the door.\nSW8VM 0.0 9.5##a smiling person is grasping a pillow.\nF19VE 19.5 33.8##the person takes food from a box.\nF19VE 6.7 16.1##person puts other food away in a cupboard.\n44T8B 0.0 3.5##a person washes their hands in a bathroom.\nO0349 0.0 10.7##a person is doing a lot of cooking.\nO0349 0.0 10.7##person cooks something.\nO0349 8.3 13.5##person so they must open the pantry door.\nDSZYT 0.0 8.3##a person drinking from a coffee cup.\nDSZYT 0.0 8.3##person they drink from a glass.\nKCRQU 17.2 24.3##the person opens the refrigerator.\nKCRQU 17.2 24.3##person they open the refrigerator.\nKCRQU 17.2 24.3##person opens the refrigerator.\nNBMH9 6.3 12.6##person opening a door.\nNBMH9 3.7 10.7##person closes the door.\nNBMH9 21.4 37.6##person sitting in a chair.\nNBMH9 3.7 10.7##person closing the door behind them.\nNBMH9 21.4 37.6##person sits in a chair.\nSW5TC 13.1 18.9##person laughs at a tv.\nSW5TC 13.1 18.9##person laughs at the television.\nSW5TC 10.1 17.3##a person awakens in a bedroom.\nSW5TC 13.1 18.9##person laughs at the tv.\nG2JR9 20.7 25.6##a person takes a lightbulb.\nG2JR9 20.7 25.6##a person tries to put a lightbulb in a fixture.\nG2JR9 20.7 25.6##person the light turns on.\nG2JR9 20.7 25.6##person the lightbulb lights up.\nG2JR9 20.7 25.6##a person fixing a light.\nG2JR9 24.1 30.9##the person throws some bread on the floor.\nM9NAG 21.6 28.6##the person walks through the doorway.\nM9NAG 14.4 24.3##person stretching arms as if awakening.\nMS4GA 5.4 11.5##a person opens a closet door.\nMS4GA 2.8 9.1##person puts a broom into the closet.\nMS4GA 1.3 6.9##a person opens a door.\nMS4GA 5.4 11.5##person closes the door.\nMS4GA 2.8 9.1##person puts a broom inside.\nMS4GA 1.3 6.9##a person opens a door with the doorknob.\nYW5QQ 22.9 29.7##person closes the door.\nYW5QQ 8.1 21.2##the person looks at a picture on the desk.\nFYHTC 0.0 4.1##person takes a sip from a glass of water.\nFYHTC 1.1 9.3##person jiggles the doorknob of the closed bathroom door.\nFYHTC 23.2 29.0##person opens the door.\nFYHTC 23.2 29.0##person try to open the door.\nFKK5R 0.0 8.2##the person is sitting in a chair.\nFKK5R 12.7 19.9##person turns on the light.\nFKK5R 12.7 19.9##person getting up to turn on light.\nFKK5R 12.7 19.9##person walks over to the lights.\nQYM5H 0.0 5.2##a person throws a blanket across the room.\nQYM5H 16.5 31.0##person take a picture of the towel.\nQYM5H 0.0 5.2##a person throws a towel on the floor.\n77Z0Z 3.0 12.4##person opens pantry grabs towel puts it on table.\n51RLB 2.7 10.3##the person takes a drink from a water bottle.\n3IPI3 3.2 9.3##a person drinks from a cup.\n3IPI3 7.9 13.0##the person eats a sandwich.\nL0HDB 2.6 7.8##person opening a cabinet.\nEZRQW 11.7 22.1##another person is playing at running back.\nI9CDV 5.2 11.0##a person is eating a sandwich at the bathroom mirror.\nI9CDV 17.2 23.8##person takes a picture in the mirror with a camera.\nI9CDV 17.2 23.8##person takes a picture of himself in the mirror.\n4683D 8.7 14.9##the person is cleaning off a chair to sit.\n4683D 8.7 14.9##person they sit down on a chair.\n3HRNV 0.3 4.8##a person is smiling in a study holding a bag.\nK8MZH 1.7 8.0##a person turns the lights on.\n1TIAK 11.4 15.8##the person fixes some messy homework papers on the table.\nTJJKK 4.6 9.3##person eating on the bed.\nTJJKK 4.6 9.3##the person eats something from off the bed.\nTJJKK 0.0 2.9##person sitting on a bed with a cell phone.\nTJJKK 0.3 4.7##person take a picture of the room.\n41F2M 11.3 22.1##finally the person washes their hands in the sink.\n41F2M 11.3 22.1##this person washer their hands.\n41F2M 8.3 14.2##person puts a book next to a toilet.\nSBM3M 0.0 8.8##person the other is putting shoes in a box.\nSBM3M 0.0 8.8##one person puts shoes in a box.\nW0XPU 0.3 6.5##the person puts the shoes on.\nW0XPU 0.0 5.4##a person holds a pair of shoes.\nW0XPU 19.0 24.1##person stand up.\nW0XPU 0.3 6.5##person puts on shoes.\nW0XPU 20.6 26.5##person eat some food off of a plate.\n87Y64 6.5 13.5##a person is throwing a book to another person.\n87Y64 0.4 6.1##person run to the other side of the room.\n87Y64 0.0 5.5##a person is sitting on a bed.\nZQKVY 0.0 5.4##a person runs into the bedroom.\n2Y8XQ 4.5 11.8##person he pours something into a glass.\n2Y8XQ 4.5 11.8##a person pours some water in a glass.\n2Y8XQ 23.2 31.2##the person is sneezing.\n2Y8XQ 15.2 22.8##person drinking glass.\nJR6VG 12.0 17.9##a person goes running by.\nJR6VG 8.0 15.1##person as the door opens.\nJR6VG 8.0 15.1##person the door opens.\nJR6VG 12.0 17.9##another person runs into the room.\nAAQHJ 4.3 16.7##a person is seen eating.\nAAQHJ 5.7 15.0##a person is sitting on a chair.\nAAQHJ 4.3 16.7##a person eating something off of a plate.\nAAQHJ 16.4 26.7##person grab a pillow to snuggle with.\nAAQHJ 4.3 16.7##a person sits in a chair eating.\nAAQHJ 0.8 11.9##person holding a pillow.\nAAQHJ 4.3 16.7##person eating from a plate of food.\nGG3K5 19.5 31.0##person watches the television.\nGG3K5 19.5 31.0##the person start watching television.\nGG3K5 19.5 31.0##person watches television.\nGG3K5 15.3 24.6##person sits on the edge of the bed.\n1XBU2 4.3 10.9##person is drinking tea from glass mug.\nLLQBB 13.8 21.5##the person throws the bag down.\nLLQBB 26.1 33.0##person finally laughing to themselves.\nLLQBB 26.1 33.0##the person starts laughing as they put the bag down.\nLLQBB 17.0 30.7##person takes their shoes off.\nLLQBB 12.0 21.7##a person is holding a bag.\nLLQBB 17.0 30.7##person take off their shoes.\nBB7WL 0.3 5.7##a person opens a cabinet.\nZX37G 1.8 7.8##the person puts the laptop down on the table.\nRX7TC 0.0 11.5##a person is eating some food.\nRX7TC 0.0 6.4##person takes several bites of an unknown food item.\nGFK4S 14.1 20.6##person opens the door.\nGFK4S 0.0 13.5##person holding a pillow.\nH5CJD 19.3 25.7##person closes the fridge door.\nF5UVQ 32.1 38.0##person that turn off the lights.\nF5UVQ 23.5 38.0##person wash their hands a little bit.\nF5UVQ 32.1 38.0##person turn off a light.\nMSACP 0.0 2.8##person they take the batteries out of the camera.\nVIN5T 2.0 8.8##a person is sitting on the floor throwing a pillow.\nD1WYU 22.6 29.9##the person takes off their shoes.\nD1WYU 16.9 31.0##person sits down on a chair.\nD1WYU 16.9 31.0##the person sits down in a chair.\nD1WYU 22.6 29.9##person takes their shoes off.\nD1WYU 0.0 7.5##a person is holding a bag walk to a bed.\nIONV9 4.1 9.3##a laughing person is drinking soda in their basement.\nIONV9 0.0 6.2##person continuing to drink from the bottle.\nIONV9 0.0 6.2##person drinking from a glass of water.\nIDXZK 0.0 9.1##person eating food from a dish.\nIDXZK 0.0 9.1##person eating a sandwich.\n79VVK 30.9 37.5##person run out of the closet.\n79VVK 15.1 20.4##a person takes a blanket.\nYACA8 3.4 11.8##person putting clothes.\nVG7S6 12.5 21.0##person takes a vacuum.\nVG7S6 0.9 10.8##person sneezing constantly.\nC46TD 0.0 15.0##person looks out the window above the sink.\nC46TD 0.0 12.1##the person washes their hands at the kitchen sink.\nC46TD 0.0 15.0##person continuing to look out the window.\nC46TD 0.0 12.1##a person is washing their hands in the sink.\nC46TD 0.0 12.1##a person washes their hands in the kitchen sink.\nC46TD 0.0 15.0##person looking out the window.\n9J0RB 0.0 4.4##a person is standing in a room watching television.\n9J0RB 0.0 7.0##person drinking something from a glass.\n9J0RB 0.0 7.0##person drinking a glass of milk.\n9J0RB 0.0 4.4##a person is watching a television in their bedroom.\n9J0RB 7.7 14.6##person throws the pillow to the side.\nZIP18 25.2 31.8##person eat a sandwich.\nZIP18 0.0 4.0##a person turns on a light.\nZIP18 0.0 4.0##a person turns on a light in their bedroom.\nZIP18 0.0 4.0##person turns on the light.\nZIP18 21.1 26.2##person sit on their bed.\n3N1I2 7.9 15.1##the person puts the sandwich into the refrigerator.\n337O2 0.2 6.2##person they put them down on the table.\nLE7PM 0.0 4.1##person throws some food onto the table.\nVJ0LT 23.1 33.0##person closing the front door.\nVJ0LT 2.5 13.4##person pours it into a glass.\nVJ0LT 2.5 13.4##person pours a glass of soda.\nVJ0LT 12.9 21.4##the person drinks the coke from the glass.\nVJ0LT 23.1 33.0##person closes a door outside.\nTCI7K 3.6 10.3##person put a item on the table.\nQE4YE 0.0 3.5##a person is opening a bag.\nQE4YE 4.2 9.7##the person puts the bag on a counter.\nXO8NL 3.6 12.5##a person throws a pillow into a closet.\nXO8NL 0.0 9.1##a person is holding a pillow.\nXO8NL 3.6 12.5##the person throws the pillow into the closet.\nCM6T8 0.0 3.2##a person is opening their closet looking for a sandwich.\nCM6T8 0.0 3.7##a person opens a door to a closet.\nCM6T8 0.0 3.7##person open up the door.\nQI0EL 23.5 32.0##person watches television.\nQI0EL 18.2 22.8##person closes the laptop.\nICQUJ 14.4 22.0##person starts eating some food.\nICQUJ 14.4 22.0##person pick up a sandwich to eat.\nI87SH 0.0 3.7##a person awakens on the floor of their home office.\nI87SH 18.8 32.0##person walk near the window open the curtain.\nI87SH 0.0 8.1##the person is laying on the floor.\nI87SH 18.8 32.0##person opens the window.\nI87SH 18.8 32.0##person opens a curtain to look out the window.\nBDY1V 3.7 19.0##one person undresses in front of a wardrobe.\nBDY1V 20.3 26.3##person takes a pillow from the closet.\nBDY1V 25.0 32.0##person snuggles the pillow.\nAFCDN 0.0 7.2##person takes a picture of something.\nAFCDN 24.9 30.0##person eats it.\nAFCDN 24.9 30.0##person began to eat.\nKA09C 27.2 32.0##the person turns the light off.\nKA09C 27.2 32.0##person turning off the light.\nKA09C 27.2 32.0##person turns off the light.\nKA09C 27.2 32.0##the person turns off the light.\nCUSTU 29.4 35.0##person opens a laptop.\nCUSTU 29.4 35.0##person opening a laptop.\nCUSTU 24.4 30.3##the person puts the broom down.\nQ38XP 6.7 18.9##person eating food.\nSLHDI 21.6 26.1##person eating something.\nSLHDI 21.6 26.1##a person by the refrigerator was eating.\nSLHDI 2.8 12.4##person opening the refrigerator doors.\nSLHDI 1.1 6.3##a person is closing a door.\nSLHDI 26.4 31.9##person sneezing into a towel.\nSLHDI 2.8 12.4##person opens refrigerator.\nSLHDI 26.4 31.9##person sneezing on a towel.\nXKU2U 9.0 16.4##a person is sneezing as they dust a nearby mirror.\nXKU2U 19.2 26.5##person throws the bag.\nXKU2U 19.2 26.5##person puts it on a table.\nXKU2U 19.2 26.5##person they begin to put a bag on the table.\nULD0T 5.0 14.3##person holding a bag.\nULD0T 0.0 2.8##a person walks through a doorway.\nSLT0S 6.9 13.0##a person is looking in a book holding a pen.\nJ3RP9 4.6 16.7##a person walks through a doorway.\nBI6Y4 0.1 5.1##a person is cooking something on the stove.\nBI6Y4 4.6 9.8##person drinks out of a cup.\nBI6Y4 25.3 33.1##person sits down at the table.\nBI6Y4 25.3 33.1##person sits on the chair at the dining table.\nBI6Y4 0.1 5.1##person cooking at the stove.\n735W9 16.8 23.8##person putting a blanket on the table.\n735W9 16.8 23.8##person puts it on the table.\n1FIGA 14.3 21.9##person puts it onto the shelf.\n1FIGA 9.6 15.1##the person closes the box.\n1FIGA 18.1 24.9##person put something in it closes the door.\n1FIGA 18.1 24.9##person closes the door.\n1FIGA 15.5 23.7##person puts the book inside.\n1FIGA 11.8 21.2##person takes it to a cabinet they open the cabinet.\n1FIGA 9.6 15.1##a person runs into the closet with a box.\nLZ2Y4 11.8 20.1##person runs to the kitchen.\nLZ2Y4 11.8 20.1##person begin running around.\nLZ2Y4 11.8 20.1##person runs out of the couch.\nLZ2Y4 10.0 15.5##the person puts the cup down.\nM4Z0M 0.7 8.4##a person walks by eating a sandwich.\nM4Z0M 0.7 8.4##a person is eating a sandwich in a hallway.\nYPRUL 22.1 32.0##person takes a drink from a glass.\nYPRUL 0.0 8.1##a person is sneezing.\nYPRUL 15.5 26.7##the person closes the door.\nYPRUL 15.5 26.7##person closes a door.\nK7NRW 13.2 23.7##another person tries to fix a loose doorknob.\nK7NRW 5.8 14.9##person eating it.\nK7NRW 5.8 14.9##person the other continues to eat.\nK7NRW 5.8 14.9##person eats a sandwich out of a bag.\nK7NRW 13.2 23.7##another person is fixing a doorknob.\nK7NRW 5.8 14.9##the eating man watches his friend fix the door.\nK7NRW 0.0 4.6##a person opens a bag.\nKZS5M 22.0 36.8##person eats some food.\nKZS5M 22.0 36.8##person eating something.\nKZS5M 23.3 34.3##watches the tv as the person eats a sandwich.\nKZS5M 2.1 8.5##person closes the door.\nKZS5M 7.3 14.9##person turning the light on.\nKZS5M 2.1 8.5##person closing the door.\nDO48Z 0.8 9.0##a person is smiling.\nDO48Z 4.7 17.9##person putting their shoes in a closet.\nDO48Z 0.8 9.0##the person was smiling.\nDO48Z 5.7 16.4##person putting shoes on the shelf.\nJNK11 1.8 7.3##person puts something onto a shelf.\nJNK11 1.8 7.3##a person puts a cup of coffee on the shelf.\nTH3M0 18.8 25.8##person sits on a chair.\nTH3M0 0.0 4.7##a person opens a door.\nTH3M0 18.8 25.8##the person sits down in a chair.\nTH3M0 14.5 19.3##person takes out a broom from a cabinet.\nTH3M0 24.5 32.2##person put the broom back into the cabinet.\nTH3M0 18.8 25.8##person sits down in chair.\n2B577 19.4 32.0##person puts it on a table.\n2B577 0.0 3.7##a person cooks on the stove.\nJXTAD 17.8 34.0##a person is holding a blanket.\nJXTAD 23.8 34.0##person turning off the light.\n5R7VN 7.1 14.2##person closing a door on the stairs.\n5R7VN 7.1 14.2##person closing a door.\n5R7VN 7.1 14.2##person closing the door.\n5R7VN 0.9 10.7##the person is throwing shoes.\n5R7VN 0.9 10.7##a person throws two shoes down the stairs.\nN56QO 0.8 5.6##person the individual takes a drink from a coffee cup.\nN56QO 0.0 4.6##a person is playing on their laptop.\n1RD2K 1.0 8.6##another person comes running in.\n1RD2K 0.0 5.5##a person closes the door to a house.\nTKAUR 3.2 8.9##person takes a cup of coffee off of the counter.\nTKAUR 0.0 18.7##person reads a book.\nTKAUR 0.0 18.7##person reading a book.\nTKAUR 27.0 40.3##person start dressing for the weather.\nTKAUR 27.0 40.3##person begins to dress.\nTKAUR 14.9 19.7##person puts the book down.\nTKAUR 0.0 18.7##a person reads a book.\nW7EDM 0.4 5.2##person sits on the bed.\nW7EDM 0.4 5.2##a person sits on a bed.\nW7EDM 11.6 17.6##person eats some food.\nW7EDM 0.4 5.2##a person sits down on a bed.\nW7EDM 0.8 9.1##person takes off their shoes.\nHSKVH 9.2 13.5##person turning off a light.\nHSKVH 4.0 10.3##a person is closing the door.\nTQO6O 15.7 25.2##the person takes some paper.\nP0CET 0.0 7.2##a person takes some clothes from a closet.\nOEM65 0.0 6.8##a person is sneezing.\nB6XQZ 3.1 17.9##person they laugh at something on the screen.\nB6XQZ 3.1 17.9##person laughs to themselves multiple times.\nG2DIN 6.6 15.5##person puts a box on the closet shelf.\nG2DIN 23.1 33.0##person takes some clothes out.\nG2DIN 6.6 15.5##person puts a box of medicine on the shelf.\nG2DIN 11.5 18.8##a person opens the closet door.\n3LN8C 23.0 31.9##person take off shoes.\n3LN8C 23.0 31.9##person they take off their shoes.\n3LN8C 23.0 31.9##person take off their shoes.\nB0XI9 10.7 20.9##person they begin drinking the glass of water.\nB0XI9 0.2 8.2##a person is running across a room.\nB0XI9 0.2 8.2##a person in their bedroom is running towards their cabinet.\nB0XI9 18.6 33.0##person start sneezing.\nV8IGX 20.2 28.0##person sit on the sofa.\nV8IGX 0.0 8.1##a person is sneezing as the person opens the door.\nV8IGX 0.0 9.7##person walks through the doorway with a bag.\nV8IGX 20.2 28.0##person proceeds to sit down on the couch.\nV8IGX 20.2 28.0##person begins sitting on the sofa.\nTCJCJ 4.8 10.5##a person throws a book on the sofa.\nTCJCJ 0.0 8.3##a person reads a book.\nJ59UP 0.0 5.6##a person sits in a chair.\nJ59UP 0.0 5.6##person sitting in a chair gets up.\nZ3H4P 20.0 29.6##person puts some food on a plate.\nW65SM 5.7 16.2##a person is sitting a pouring water into a glass.\nBIQGN 0.0 5.4##a person is smiling.\nBIQGN 12.5 17.8##person closes the door.\nBIQGN 0.0 5.4##a smiling person walks into a bathroom.\nBIQGN 15.8 21.2##the person puts a towel on a shelf.\nIKYAW 4.8 12.8##person closes the door.\nIKYAW 0.0 3.1##a person is smiling in the doorway of the pantry.\n7V4NJ 17.1 22.3##person throws the book.\n7V4NJ 17.1 22.3##person throw the book at a door.\nXGS3K 12.6 20.5##person opens a sliding glass door.\nXGS3K 1.3 9.3##the person puts the picture down on the couch.\nXGS3K 1.3 9.3##a person is putting a picture on a sofa.\nLXEPT 0.0 6.8##person sits in a chair.\nLXEPT 17.4 30.9##the person takes a notebook out.\nLXEPT 6.2 14.6##the person puts a notebook on the table.\nY2MGC 18.3 33.0##person begins to eat it.\nY2MGC 18.3 33.0##person start eating food.\nY2MGC 0.0 10.2##a person closes their laptops lid.\nY2MGC 6.7 13.1##person the put the laptop down.\nY2MGC 8.1 16.3##the person takes some food out of a box.\nY2MGC 0.0 4.1##person is smiling.\nIWTWJ 13.2 20.8##person later sits on the couch.\nIWTWJ 4.3 9.5##a person is throwing a blanket onto the sofa.\nIWTWJ 11.6 17.3##person suddenly run over to the sofa.\nIWTWJ 11.6 17.3##the person begins running towards the sofa.\n5HPZ1 0.0 8.7##person reads through some pages in a book.\n5HPZ1 0.0 8.7##person reading a book.\n5HPZ1 16.4 23.1##person a clicks a nearby light on.\n5HPZ1 16.4 23.1##person they turn on the light.\n5HPZ1 16.4 23.1##person turns on a light.\nVNMNF 0.0 12.6##a person is watching television.\nVNMNF 21.9 28.0##person sits down in a chair.\n9U82D 13.8 19.7##this person takes their phone out.\n9U82D 24.5 36.0##person they start drinking a glass of coffee.\nFTYFA 0.0 4.9##a person opens a door.\nFTYFA 4.1 8.8##person turns on the light.\nFTYFA 0.0 4.9##person opens a door.\nFTYFA 4.1 8.8##person turns on a light.\nFTYFA 4.1 8.8##a person turns on a light.\nGZF5F 4.7 11.7##person pours another glass out of a pitcher.\nQSVXJ 12.7 18.5##person decides to throw the towel on the floor.\nQSVXJ 5.7 17.5##person another holds a towel.\nMHAGN 7.0 12.6##person they open the book.\nMHAGN 14.1 22.0##person running away.\nMHAGN 14.1 22.0##person run out of the room.\nOZ02A 10.5 16.1##person closed the curtains on the window.\nOZ02A 10.5 16.1##person closes a window blind.\nOZ02A 2.9 11.8##person a light is turned on.\nOZ02A 2.9 11.8##the person turned on the light in the dining room.\nODM20 21.5 30.0##person look out the window.\nODM20 22.4 30.0##person begins laughing.\nODM20 21.5 30.0##the person looks out the window.\nODM20 5.5 13.6##person drinking a cup of coffee.\nMUE2B 16.5 24.0##person looking at the things at bathroom window.\nMUE2B 1.8 6.7##person turned on the light.\nMUE2B 16.5 24.0##person looking out the window that is behind the toilet.\nMUE2B 1.8 6.7##the person turns on the light.\nMUE2B 0.0 5.6##the person opens the door to the bathroom.\nMUE2B 16.5 24.0##person they walked over to the window to look outside.\n7RXMM 0.0 8.0##a person sits in a chair.\n7RXMM 0.0 8.0##the person sits on a chair next to a sink.\nETDTU 0.0 4.7##the person begins holding a mirror.\n9EEGQ 7.6 14.3##another person fixes the door.\n9EEGQ 7.6 14.3##person fixing pantry door.\n9EEGQ 14.1 23.6##person is putting dishes on shelf.\nLV4U7 0.0 6.8##a person is holding a broom.\nLV4U7 2.8 10.8##person standing in the open doorway of a pantry.\nLV4U7 0.0 6.8##a person in a pantry is holding a broom.\nLV4U7 0.0 6.8##a person holding a broom opens a pantry door.\nI6TPS 17.2 32.0##person cooking something in the pan.\nZDWM7 0.0 9.5##person eating a sandwich.\nZDWM7 0.0 9.3##person talking on the phone.\nZDWM7 0.0 14.3##a person walks into a room holding a sandwich.\n2AG8W 4.0 8.7##person throwing their clothes into the closet.\n2AG8W 7.2 12.0##person start running through the hallway.\n2AG8W 7.2 12.0##person runs down a hallway.\nEFADI 5.2 11.0##that same person takes some medicine off a shelf.\nD4D2T 13.9 25.0##person eats a sandwich.\nD4D2T 9.4 15.1##person takes some food out of a box.\nD4D2T 13.9 25.0##person eats it.\nD4D2T 2.8 12.9##person opens a box.\n3C1ZN 24.4 28.8##person puts the pillow down.\nXJA7Z 1.1 9.4##person pours a glass of water.\nXJA7Z 1.1 9.4##the person was pouring a bottle of beer.\nXJA7Z 7.4 16.0##person drinking from the glass of water.\nXJA7Z 1.1 9.4##a person pours water into a glass.\nVD58Y 10.1 16.9##person puts the laptop aside.\nVD58Y 13.9 21.1##person start sneezing as they get off the bed.\n8HW76 4.7 12.3##a person is laughing.\nNKE77 8.2 14.8##person puts it down on the table.\nNKE77 10.0 15.6##the person puts the cup down.\nNBKCK 0.0 3.2##person turns on the light.\nNBKCK 0.0 3.2##the person turns on a light.\nN2WXN 7.1 19.9##a person is awakening on top of their blanket.\nX2JBJ 6.0 18.0##person smiling at the book.\nDPLMM 10.6 16.0##person shuts the light off.\nDPLMM 10.6 16.0##person turns off the light as he exits.\n0SFYS 0.0 5.7##a person turns on the light.\n1F706 0.0 3.4##person a girl runs into the room.\n1F706 0.0 3.4##a person runs down the hall.\n1F706 0.0 3.4##a person runs to the doorway of the pantry.\n1F706 25.2 31.0##person closes the door.\n1F706 0.0 5.5##person opens a pantry door.\nXXS99 19.0 30.0##person looks at a picture hanging on the wall.\nXXS99 15.9 24.6##the person takes the book.\nXXS99 13.4 18.7##person open book.\n727IZ 0.0 4.4##a person opens a cabinet.\n727IZ 14.2 20.1##person sits on a chair to look at them.\n727IZ 0.0 4.4##a person is opening a cabinet.\n727IZ 14.2 20.1##person sits in a nearby computer chair.\nN86ED 0.0 8.5##person starts to eat them.\nN86ED 1.7 11.5##person eating a sandwich.\nN86ED 0.0 8.5##person eating some cookies out of a box.\nN86ED 8.5 14.4##the person opens a box of cookies.\nNACLT 12.6 21.0##person runs out.\nNACLT 6.4 12.2##person puts the shoes under the table.\nKGO3W 17.1 25.8##person drinks out of a glass.\nKGO3W 7.5 14.5##person they turn on a light.\nKGO3W 7.5 14.5##a person turns on the light.\nSCFIN 8.7 22.0##person open the refrigerator.\nSCFIN 5.4 19.4##person opens up the refrigerator door.\nTRHT1 0.0 4.1##person sitting on a chair watching television when suddenly rises.\nTRHT1 0.0 4.2##person sitting on a couch.\nA9YQJ 22.8 34.0##person they fix their hair.\nA9YQJ 22.8 34.0##person fixes their hair.\nA9YQJ 22.8 34.0##person start fixing their hair.\n8RU1Q 0.0 4.4##a person opens a door.\n8RU1Q 0.0 4.4##a person opens the door.\nJ5DOP 26.2 31.0##person walks into the kitchen to open the refrigerator door.\nJ5DOP 0.0 11.3##person putting their shoes on.\nJ5DOP 0.0 11.3##person putting on shoes.\nJ5DOP 25.8 31.0##person opening the door.\n5TYXL 25.1 31.4##person takes the broom.\nFV8CK 0.0 7.7##person taking a drink from a bottle of water.\nH46LQ 23.5 29.1##person they stand up.\nWUTHF 0.8 6.4##a person runs in.\nWUTHF 0.8 6.4##a person runs into a room.\nWUTHF 0.8 6.4##one person runs through.\n1NJOQ 0.0 5.9##a person walks through the doorway.\n1NJOQ 14.6 20.7##person they open the cabinet.\n1NJOQ 14.6 20.7##person opens drawers on cabinet.\n1NJOQ 30.7 36.0##person takes out a bottle of medicine.\n1NJOQ 14.6 20.7##the person opens a cabinet.\nLDNE2 23.0 33.0##person takes a book from the table.\n13XM4 6.5 11.9##the person puts it on the table.\n13XM4 18.0 22.2##person start laughing.\n13XM4 6.5 11.9##person puts it on a table.\n13XM4 7.1 11.5##person puts some food inside.\n2443O 10.7 18.0##the person takes out their phone.\n2443O 10.7 18.0##person takes out a phone.\n3R4DD 24.7 34.0##person sit down in a chair.\n3R4DD 24.7 34.0##person sits in a chair.\n3R4DD 24.7 34.0##person sit in a chair.\nSUG5S 0.0 5.4##person they stand up.\nSUG5S 9.7 17.1##person washes their hands.\nSUG5S 0.0 3.7##there is a person sitting on a bed.\nSUG5S 0.0 3.7##a person is sitting on a bed.\nSUG5S 9.7 17.1##person wash their hands.\nX4BQG 5.7 14.8##person opens a cabinet.\nX4BQG 5.7 14.8##the person opens a cabinet.\nX4BQG 1.3 14.3##person puts some paper inside.\nOETY6 8.6 18.1##person drinking from a cup.\nOETY6 28.7 32.0##a person sits in a chair next to a table.\n4UXE3 25.6 31.1##person putting a glass in the sink.\n4UXE3 25.6 31.1##person putting a cup in the sink.\nLFDQF 0.0 6.1##person drinking a glass of water.\nLFDQF 0.0 6.1##the person is drinking a glass of water.\nY0MCG 4.9 10.8##a person puts a pillow down on the sofa.\n5EEXF 1.0 7.0##a person opens a cabinet.\n5EEXF 1.0 7.0##person is opening a cabinet.\n5EEXF 1.0 7.0##the person opens a closet door.\n5EEXF 1.0 7.0##person opens a closet door.\n5EEXF 16.9 23.8##person puts the towel away.\n5EEXF 1.0 7.0##person open their closet put the blanket inside it.\n5EEXF 2.4 8.7##the person takes a towel from the cabinet.\n5EEXF 2.2 7.7##person takes out a blanket.\nYFJ9U 2.2 13.1##person puts on shoes.\n4YBN9 2.7 15.7##one person opens a bag on a small desk.\n4YBN9 21.7 29.4##person open a door.\nXRU9O 8.7 21.9##person eats a sandwich.\nXRU9O 8.7 21.9##a person is standing against a wall eating a sandwich.\nXRU9O 8.7 21.9##person eating a sandwich.\nPC7H2 4.7 18.2##person sits down on couch.\nPC7H2 4.7 18.2##person sits on the couch.\nPC7H2 4.7 17.7##a person sits down at a table.\nPC7H2 4.7 17.7##a person is sitting at the table.\nE002I 4.1 13.4##person snuggling up to a pillow.\nE002I 0.3 7.3##a person runs into the bedroom.\nE002I 12.9 19.7##person goes back to close the door.\nE002I 12.9 19.7##person closes the door.\nE002I 0.3 7.3##a person runs into a room.\nE002I 12.9 19.7##person closes a door.\nE002I 4.7 14.1##person lies down on the bed.\nE002I 4.7 14.1##person lies down on a bed.\nE002I 12.9 19.7##the person gets up to close the door.\n5GHV3 0.0 9.2##a person is putting clothes on.\n5GHV3 0.4 13.4##a person is dressing by the bed.\nTDGNE 3.5 8.6##person eating an occasional bite from the pan.\nTDGNE 22.9 29.0##person open the door to the refrigerator.\n1P7GJ 16.4 23.6##person they open a door to grab a broom.\nMB281 19.5 28.9##person turning the light off.\nMB281 19.5 28.9##person turn off the light.\nMB281 19.5 28.9##person turns off the light.\nMB281 14.3 19.8##person puts it down on the shelf.\n7E2AJ 0.7 5.8##person they stand up.\n7E2AJ 0.0 4.1##a person is awakening on the floor.\n7E2AJ 7.0 12.4##person start undressing by taking their jacket off.\n7E2AJ 12.1 17.0##person eats sandwich that is seating on side of sink.\n7E2AJ 0.0 3.1##person laying on bathroom floor.\nZZ3HT 7.0 11.3##person put it back closed the shelf.\nZZ3HT 2.4 8.0##person walk over to a cabinet take a towel out.\nZZ3HT 8.2 16.4##person closing the closet door.\n0J471 7.4 17.2##person they stand up.\n0J471 13.0 23.0##person running up.\n0J471 13.0 23.0##person runs back.\n0J471 13.0 23.0##person begin running.\nHG7C2 0.0 13.5##a person is undressing in the doorway.\nHG7C2 21.9 30.9##the person starts smiling.\nHG7C2 17.7 31.0##person holding a broom.\nS5KQ1 3.0 8.2##a person opens a box.\nS5KQ1 11.7 17.1##person throws a broom down.\nS5KQ1 11.3 16.7##person puts down the box.\nS5KQ1 8.4 13.8##a person closes a box.\nYIIFF 19.1 31.0##person began getting dressed.\nYIIFF 0.0 9.5##a person is tidying up a shelf.\nIIL9C 0.0 13.2##person eating a cookie.\nIIL9C 0.0 4.4##person take out the bottle of medicine.\nIIL9C 0.0 13.2##there is a person laying on the sofa eating something.\nIIL9C 0.0 4.4##person takes a bottle of medicine from their shirt pocket.\nSBI6Z 11.8 20.6##person pours a drink into a glass.\n9J7EW 3.9 18.2##person sits in a chair.\n9J7EW 3.9 18.2##person they sit on a chair.\n9J7EW 11.1 24.5##there is a person holding a bag.\n9J7EW 18.2 25.4##person takes off their shoes.\nDLOS7 13.8 20.9##the person opens a pink laptop.\nDLOS7 11.7 16.9##person they sit down holding a laptop.\nDLOS7 0.0 9.5##person begins fixing the light that was not working.\nDLOS7 0.0 9.5##person a persno is fixing a light.\n1F4JZ 2.0 8.7##one person takes some medicine.\nYHXU9 14.2 18.7##person throws it on the floor.\nKS5JT 0.0 5.7##person turned on the light.\nKS5JT 0.0 5.7##person turns on the light.\nKS5JT 0.0 5.7##a person turns on the light.\nHQ8BB 2.5 9.2##person turns on the light.\nHQ8BB 0.0 6.4##the person opens the door.\nHQ8BB 2.5 9.2##person turning the light on.\nAGGSE 8.9 15.0##the person is sneezing.\n3W1GP 25.2 31.3##person takes out a laptop.\n3W1GP 0.0 2.6##a person opens the door.\n3W1GP 0.0 2.6##a person opens a door.\n3W1GP 14.0 31.0##person open a bag.\n3W1GP 2.9 8.7##person closes the door.\n3W1GP 0.0 2.5##person walks through the doorway carrying a bag.\n3W1GP 32.2 36.0##person they put the bag on the ground.\n3W1GP 14.0 31.0##person open the bag.\nOQSXX 8.6 15.6##person puts a towel on their shoulder.\nOQSXX 0.0 7.6##one person is sitting on the sofa.\nOQSXX 0.0 7.6##a person sits on a couch.\nZXHCH 19.2 23.5##person sits down in a chair.\nZXHCH 3.2 7.4##the person takes their books out of their bag.\nZXHCH 4.7 10.8##person open up the books.\n3MV13 16.3 25.3##the person starts walking to the doorway.\n65ULK 16.0 31.0##person starts dressing in front of a mirror.\nRMKOC 0.0 12.0##person holds a plastic bag.\nRMKOC 7.4 13.8##person takes a towel to wrap a mug.\n8O07M 16.2 26.7##person opens the door.\n8O07M 16.2 26.7##person opens a door.\nBEAAA 0.0 3.5##person eating food in a hallway.\nBEAAA 0.7 10.9##the person undresses their jacket.\nBEAAA 0.0 3.5##person sitting in a chair eating.\nBEAAA 0.0 3.5##person eating a sandwich.\nBEAAA 0.0 3.5##a person is sitting on a chair eating food.\nBEAAA 0.7 10.9##a person is undressing.\nBEAAA 0.0 3.5##person continues eating the food.\nT96JC 4.8 14.4##person takes a vacuum.\n0QAZ7 25.3 31.0##person closing the door.\n0QAZ7 23.4 29.2##person finally opening a door leaving.\nFRGXE 2.1 8.6##person drinking a glass of orange juice.\nFRGXE 19.6 23.0##person takes out a box of cookies from the nightstand.\n3T785 2.1 8.0##a person putting a towel on their head.\n3T785 2.1 8.0##one person puts a towel on their head.\n4NHRT 1.9 8.7##the person takes a bag off of a shelf.\n4NHRT 5.4 13.0##person runs back down the stairs.\nONVGA 4.9 11.6##person eating from a plate.\nWT46G 0.9 7.2##person holding a coffee cup.\nWT46G 4.6 13.1##first person is awakening from long nap.\nWT46G 4.9 16.6##person watching television.\n8V8HC 0.0 6.1##a person is running through an entryway.\n8V8HC 1.7 7.1##the person takes a pillow off a sofa.\n8V8HC 0.0 6.1##person they both run in the house very quickly.\nD7W4E 6.5 15.7##a person puts a cup into a  cupboard.\nD7W4E 6.5 13.7##a person puts a coffee cup on a shelf.\nD7W4E 20.9 29.1##person sneezing on it.\nQ3Z4V 16.8 24.6##person drinks from a glass.\nZYJJF 1.5 11.7##a person puts clothes on a desk.\nT9N9R 10.5 15.7##the person was laughing.\n74WSB 11.2 20.9##person they start smiling because they are being somewhat irresponsible.\n5D85P 4.2 8.6##person closes the laptop screen shortly.\nVVQYB 9.6 15.5##another person is laughing.\nP3CLM 29.1 41.0##person close the book.\nP3CLM 29.1 41.0##person they close the book.\nAWR2R 2.7 11.7##a person is standing in the bedroom holding a broom.\n2KGV3 2.6 7.2##person takes another bite of their food.\n2KGV3 2.6 13.1##person eating a sandwich.\n2KGV3 2.6 13.1##the person puts the book down to continue eating.\n2KGV3 2.6 13.1##a person is sitting on the couch eating a sandwich.\n2KGV3 2.6 13.1##the person is doing their homework as the person eats.\n2KGV3 18.2 23.9##person they put down the book.\nD0AGO 0.7 16.3##person pours coke into glass.\nD0AGO 0.7 16.3##person pour a glass of soda.\nD0AGO 0.7 16.3##person seen pouring a can of soda into a glass.\nD0AGO 0.7 16.3##person pours some into a glass.\nEF7Q9 6.8 13.4##person begins washing their hands.\nEF7Q9 6.8 13.4##person washes hands.\nEF7Q9 14.0 20.5##person they take the glass.\nG2AMK 24.0 28.0##person closing the door to it behind them.\nFG9NT 11.5 20.9##person eats whats in the dish.\nFG9NT 11.5 20.9##person eats from a bowl.\nLLTBQ 0.3 6.7##a person opens a door.\nLLTBQ 6.7 13.2##person holding a towel.\nLLTBQ 0.3 6.7##a person opens the bedroom door.\nHS14N 10.9 16.3##person closes the cabinet.\nHS14N 2.7 8.5##a person runs into the kitchen.\nHS14N 4.5 16.6##person opens the cabinet.\nHS14N 5.9 14.1##the person takes a dish from the top shelf.\nHS14N 4.5 16.6##person opens a cabinet.\nL2502 14.2 31.1##person fixes their hair in a mirror.\nL2502 29.4 35.0##person begins to undress.\nGT43R 2.1 9.3##person turns off the light again.\nGT43R 12.6 25.5##the person takes a box of tissues from the shelf.\nGT43R 2.1 9.3##the person turns on a light.\nX95D0 17.2 32.0##person drinking a glass of water.\nDV6CH 24.2 30.6##person they begin smiling.\nDV6CH 0.0 6.2##a person opens their closet.\nDV6CH 0.0 6.2##person opens closet.\nDV6CH 14.4 27.4##person is seen putting clothes in their closet.\nDV6CH 0.0 6.2##this person opened up their closet.\nHI4NV 3.4 18.3##person holding some food on some dishes.\nHI4NV 3.4 18.3##the person is also holding some food.\n96ATI 5.8 15.9##a person is sneezing.\nB4XZD 5.1 9.6##person starts sneezing.\nICOX1 16.9 23.8##a person in their recreation room turns on the light.\nICOX1 7.9 15.8##person awakening o the sofa under a blanket sneezes.\nICOX1 16.9 23.8##person turns the light on.\nQQGU3 0.0 5.3##a person opens a cabinet.\nQQGU3 15.2 19.0##a person takes a box.\nQQGU3 0.0 5.3##the person opens the doors to the cupboard.\nQQGU3 10.3 18.5##person opens the box.\nQQGU3 7.7 15.0##person holds a box.\nQQGU3 0.0 5.3##a person opens a small cabinet door.\nZ2KJ5 4.9 16.0##person takes food out of a bag.\n7EJUR 0.4 10.3##person watching television on their laptop.\n7EJUR 0.0 5.2##a person is cooking as the person watches television.\n7EJUR 0.0 5.2##a person is cooking some food.\n7EJUR 10.6 16.9##person takes some food from it.\n7EJUR 0.4 10.3##person watching a video on a laptop.\nFFYL6 0.0 6.3##a person puts a broom into the closet.\nFFYL6 5.2 10.9##person takes out a box.\nFFYL6 0.0 6.3##a person puts a broom away in a closet.\nFFYL6 5.2 10.9##person takes a box out of the same  closet.\nFFYL6 0.0 6.3##a person puts a broom inside a closet.\nFFYL6 5.2 10.9##the person takes a box out.\nFFYL6 9.9 15.0##person they pretend to start sneezing.\nYN3AA 12.1 27.0##person eats a sandwich.\nYN3AA 9.5 13.5##person they turn on the light.\nYE6UZ 15.0 23.0##person she takes her phone from a drawer.\nKMZDA 24.2 30.8##person puts the dish on the table.\nLSCMZ 0.0 7.6##person holding a pair of shoes.\nLSCMZ 13.7 19.0##the person takes a phone from somewhere.\n5INX3 32.5 46.0##person dressing by putting a jacket on.\nF3M1Q 9.4 16.4##person taking a drink out of a cup.\nF3M1Q 0.7 6.0##person throws them on the floor.\nF3M1Q 0.0 3.5##a person takes off their shoes.\nF3M1Q 9.4 16.4##person takes a drink from a glass nearby.\nF3M1Q 0.0 3.5##a person takes their shoes off in the kitchen.\nIKJGO 22.5 28.4##the person puts the book down.\nSR8IK 4.6 14.9##person takes a drink from a glass.\nSR8IK 4.6 14.9##person drinking a glass of water.\nSR8IK 4.6 14.9##person take a drink from a cup on the table.\nWX711 14.8 22.5##person drinking out of a cup.\nVNQTH 1.6 6.6##a person puts clothes into their closet on a shelf.\nVNQTH 1.6 6.6##person puts it on a shelf.\nVNQTH 1.6 6.6##a person is putting clothes on the shelf.\nVNQTH 6.0 10.3##person takes out their cell phone.\nVNQTH 7.4 11.0##person starts laughing.\nBQA97 0.4 7.2##person open a laptop.\n99B6U 16.9 22.5##this person puts some papers in the bag.\n99B6U 0.9 14.2##a person runs down the stairs with a book.\n99B6U 16.6 23.8##person puts the books into his backpack.\n99B6U 16.6 23.8##person puts the book into it.\nRO8Y6 1.4 8.5##person close the door.\nJTXAM 16.6 25.0##person turn off the light.\nJTXAM 13.8 19.1##person closed the book.\nP6JGZ 0.0 4.4##person opening a cabinet.\nP6JGZ 6.3 11.6##person closes the door.\nP6JGZ 6.1 11.3##person closed the cabinets.\nP6JGZ 0.0 4.4##the person opened some cabinets.\nKO2MY 2.5 10.9##a person is standing in the dining room laughing.\nKO2MY 2.5 10.9##a person laughs to themselves.\nPNRFK 0.0 13.3##a person is dressing by a flight of stairs.\nPNRFK 0.0 13.3##a person gets dressed in some clothes.\n26RQN 22.0 35.0##the person starts washing a table.\nEJY5V 17.2 22.0##person looks out the window.\nJ1KLV 16.2 26.4##the person opens the door at the top.\nJ1KLV 23.5 30.0##person closes the door behind them.\nOXCDM 6.5 15.5##another person comes running into the entryway holding a box.\nENOLD 0.0 6.7##person watching television.\nFRSBQ 20.3 33.0##the same person than starts undressing next to the cabinet.\n0FM93 23.0 39.0##person closing the door behind them.\n0FM93 23.0 39.0##person slowly closes the door.\n0FM93 23.0 39.0##person closes a door.\n3G1OQ 22.7 28.0##person walks towards the mirror to fix their hair.\n3G1OQ 22.7 28.0##person fix their hair in the mirror.\nMRZ44 9.6 15.3##person eating a sandwich.\nMRZ44 9.6 15.3##person eating something.\nKTDG0 5.7 11.1##person is closing door to closet.\nW97NR 15.8 29.0##person takes a drink of a glass of water.\n81R72 22.9 29.8##person close the open door to their right.\n81R72 22.9 29.8##person closing the doorknob.\n13IS9 12.2 22.2##person they stand up.\n13IS9 3.0 14.2##person putting their shoes on.\n13IS9 3.0 14.2##a person puts some shoes on.\n13IS9 3.0 14.2##a person is sitting down putting on their shoes.\nVHD24 18.2 23.4##person they begin pouring themselves some medicine from a bottle.\nLQMXW 0.0 16.8##a person is walking in a room holding towel.\nLQMXW 11.2 18.4##person put the towel on the chair.\nSAO1A 3.1 8.8##person takes a drink from a cup.\nFLLUJ 12.9 26.8##person closes a window.\nFLLUJ 12.9 26.8##person closes the window.\nFLLUJ 12.9 26.8##person tried to close the window.\nREWLB 16.9 29.0##person eating food from a plate.\n8TZSC 10.2 19.0##person fixing their hair.\n2FPB3 0.0 13.3##a person holds an orange book.\n2FPB3 8.0 15.8##person put the book down.\n2FPB3 3.2 10.8##a person is sneezing into a book.\nTNDT2 16.0 22.0##person eating food in a basement.\nTNDT2 16.0 22.0##person finally eat something.\nTNDT2 4.5 12.1##person open laptop.\nTNDT2 4.5 12.1##person opening a laptop.\nTNDT2 16.0 22.0##person eating food from a plate.\nGHJ3Q 5.2 10.4##this person puts the pillow down.\nGHJ3Q 5.2 10.4##person puts the pillow down.\nX8JVY 0.0 6.0##person closes the door.\nX8JVY 3.0 8.9##the person is opening a bag.\nX8JVY 0.0 6.0##a person is closing a door.\nQVBTC 0.0 12.6##there is a person looking out a bathroom window.\nQVBTC 0.0 12.6##a person smiles as they watch something out the window.\nOVFVJ 22.1 34.0##person begins undressing.\nOVFVJ 12.5 26.8##person takes a towel from the cabinet.\n4GLAP 16.1 20.7##a person throws some shoes down.\nMLHCK 0.0 7.9##a person runs in place.\nNJANX 11.4 17.4##a person is tidying the shelf.\nBQZ52 0.0 5.9##a person opens the closet.\nBQZ52 0.0 5.3##person opens the door bends down.\nIUETR 0.0 8.1##a person opens a door.\nIUETR 0.0 8.1##person opens up the door go into the bedroom sneeze.\nIUETR 1.9 8.1##person walks through the doorway.\nIUETR 0.0 8.1##a person opens the door.\nKZR42 8.4 16.7##person she takes a bottle of something out.\nFVINY 0.0 14.6##a person is sitting on a chair reading a book.\nFVINY 0.0 14.6##a person is looking at a book.\nFVINY 0.0 14.6##a person sat on a chair reading a book.\n3OLX3 15.1 22.1##person puts it on a table.\nPOACA 25.2 31.0##person looking a a book.\nR971Z 14.0 23.4##person they stand up.\nR971Z 20.7 30.6##person fixing their hair.\nR971Z 11.1 19.8##person puts on the shoes.\nR971Z 19.4 25.0##person smile at themselves in the mirror.\nR971Z 0.0 7.2##a person opens a closet.\nR971Z 0.0 7.2##a person opens up a closet.\nR971Z 0.0 6.1##a person opens the door to a walk-in closet.\nR971Z 19.6 32.8##person adjusts their hair holding a mirror.\nVXOE4 0.0 10.1##a person is in a pantry standing on a chair.\nVXOE4 11.0 26.6##person start working on their laptop.\nJT537 16.9 23.1##person put the broom down.\nJT537 16.9 23.1##person put down broom.\nW5P6B 9.3 17.3##a person sits in a chair.\nU9NI5 11.3 16.6##person turned the lights on.\nU9NI5 13.0 22.3##a person is standing in the kitchen eating a sandwich.\nU9NI5 0.0 5.1##person watches themselves eat.\nU9NI5 3.3 11.2##person drinking from a cup.\nU9NI5 13.0 22.3##the person was eating a sandwich.\nU9NI5 9.4 16.5##person the runs to a mirror on the wall.\nWP5RH 0.0 8.0##a person runs through a doorway.\nWP5RH 0.0 8.0##person runs into kitchen.\nWP5RH 0.0 8.0##a person is running in place under a doorway.\nWP5RH 0.0 8.0##person run out room.\nE89S9 0.0 8.9##a person is sitting on a chair.\nE89S9 0.0 8.9##the person sits in a chair.\n0KZYF 5.8 12.3##person opens the door.\n0KZYF 2.3 7.8##a person is eating a sandwich.\n0KZYF 2.3 7.8##person eating something off of a plate.\n0KZYF 2.3 7.8##proceeds to keep eating in a happy manner.\n0KZYF 2.3 7.8##person continuing to eat the sandwich.\n0KZYF 2.3 7.8##person eating a sandwich.\n0KZYF 0.0 9.5##a person walks in holding dishes.\n0KZYF 25.8 32.0##the person starts smiling.\n0KZYF 5.8 12.3##person opens a door.\nLD9EC 0.0 2.6##another person is sitting on the floor.\nT56KO 21.2 28.1##the person begins undressing.\nT56KO 8.1 15.4##person takes off some clothes.\nKT2SV 15.0 25.3##a person awakens in their bedroom laying on a pillow.\nVE6GK 24.7 32.0##person sitting down to open a book to read.\nVE6GK 24.7 32.0##person read a book.\nHXUI5 34.0 39.0##the person takes out their phone.\nHXUI5 13.4 28.7##a person dresses up in a jacket.\nHXUI5 29.2 36.1##person fixing their hair.\nHXUI5 0.0 14.5##a person puts on shoes.\nHXUI5 34.0 39.0##person takes out a phone.\nHXUI5 29.2 36.1##person fixes their hair.\nHXUI5 0.0 14.5##a person is putting on some shoes.\nHXUI5 13.4 28.7##a person is also dressing.\nTR652 8.7 15.6##the person takes a pillow from the shelf.\nTR652 0.0 11.6##person reading book.\nTR652 0.0 11.6##a person is reading a book in the laundry room.\n3HLP7 0.0 4.6##a person closes the door.\n3HLP7 0.0 4.6##a person closes the door to the room.\nXPXWY 0.0 9.8##person opens the door.\nXPXWY 0.0 9.8##person opened the door.\nXPXWY 0.0 9.8##a person opened a pantry door.\nXPXWY 0.0 9.8##a person opens a pantry door.\nXPXWY 21.9 28.3##person pours the liquid in it into a cup.\nXPXWY 4.1 15.6##a person starts sneezing into their phone.\nFK143 31.2 37.0##person they take the medicine.\nFK143 31.2 37.0##the person takes out a bottle of medicine.\nFK143 0.0 11.2##a person is opening a closet door.\nFK143 20.2 27.6##person pours some into a small cup.\nFK143 31.2 37.0##person take out some medicine.\nJEB7V 0.0 4.8##person sitting on bed looks out window.\nJEB7V 4.2 11.5##person starts eating.\nJEB7V 4.2 11.5##a person is sitting down eating.\nJEB7V 23.1 28.2##person looks at box puts food in mouth multiple times.\nJEB7V 4.2 11.5##a person is eating on the bed.\nYMJ6E 1.4 9.4##person opens the door.\nYMJ6E 1.4 9.4##a person opens the door.\n47RAA 17.2 33.4##person takes out the phone.\n47RAA 17.2 33.4##the person takes out their phone.\nE5ZF5 6.0 12.3##person eats some food.\nE5ZF5 22.6 37.0##person snuggles up with a blanket.\nE5ZF5 22.6 37.0##person begin snuggling with a blanket on the couch.\nE5ZF5 13.7 20.9##the person took a drink from a cup.\nE5ZF5 10.5 17.2##person they put their food away.\nE5ZF5 6.0 12.3##person eating food.\nC6C7Q 0.0 5.2##a person awakens from a deep sleep.\nC6C7Q 11.0 16.2##person they flip on a nightstand light.\nC6C7Q 11.0 16.2##person flip the light off.\nC6C7Q 11.0 16.2##person turns on a light.\nC6C7Q 23.1 32.7##person they snuggle back into their blanket.\nD0Y4L 0.0 5.9##person closes the door.\nD0Y4L 0.0 5.9##a person closes the door to outside.\nHSWPR 6.4 12.8##the person is playing with the switch for the light.\nHSWPR 2.3 6.6##a person is putting a glass on a bedside shelf.\nBIJYC 20.6 36.0##person that they start talking on their cell phone.\nBIJYC 20.6 36.0##person next talking on a phone in a bedroom.\nBIJYC 24.8 36.0##person begin running in place.\nBIJYC 24.8 36.0##person running in place.\nBIJYC 24.8 36.0##person beginning to run in place.\nBIJYC 24.8 36.0##person continues running as he talks on it.\n7MRKY 29.9 36.1##the person closes a laptop that is sitting open.\n7MRKY 29.9 36.1##person close a laptop.\n7MRKY 29.9 36.1##person closes a laptop.\nFQ2Q3 11.9 16.0##person watching television instead.\n2KMGY 0.0 3.4##a person was sitting on the floor.\n2KMGY 5.9 11.5##person takes a cup from a table.\nW019T 14.1 26.8##person start cooking.\nR5WMI 2.5 7.2##a person takes some pictures on a camera.\n5OV3M 18.2 25.0##person drinking water from a glass.\nQ0IHP 22.7 32.5##person takes a drink from a glass.\nQ0IHP 22.7 32.5##person proceeds to take a drink from a cup.\nQ0IHP 16.0 21.9##person adjusts the heat.\nQ0IHP 22.7 32.5##the person takes a drink from a glass of juice.\n136V6 0.0 5.4##a person is walking through a doorway.\n136V6 13.7 26.7##person reading a book.\n136V6 13.7 26.7##person decompressing for a few minutes by reading a book.\n136V6 26.0 31.0##the person puts the book down.\n136V6 1.1 8.3##person closed the door behind them.\n4BIMI 4.9 22.4##a person is laughing as they kick off their shoes.\n4BIMI 18.8 23.7##person takes a cup.\n4BIMI 3.8 8.7##person opens the pantry door.\n4BIMI 4.9 22.4##a person laughs to themselves.\n0Z1PC 18.0 25.1##person puts the pillow in there.\n0Z1PC 10.4 17.7##the person opens a closet door.\n0Z1PC 10.4 17.7##person opens the doors of a closet.\n0Z1PC 3.4 9.4##person is holding a pillow.\n0Z1PC 11.8 28.8##the person is also tidying up the closet.\n0Z1PC 25.0 32.5##person closes the closet doors.\n0Z1PC 18.0 25.1##person puts a pillow.\nAF5BS 13.4 18.8##person they put down the phone.\n2ZICJ 27.3 33.6##person close a cabinet.\n2ZICJ 4.5 12.4##person they open up a refrigerator.\n2ZICJ 4.5 12.4##person opens a refrigerator door.\n2ZICJ 28.7 36.0##person stand up.\n2ZICJ 27.3 33.6##person closes the cabinet door where the mug is.\nCYCEV 0.0 4.8##another person is looking out the window.\nCYCEV 0.0 5.9##person holding some food.\nCYCEV 2.3 9.7##the person holding the tray drinks from the cup.\n02DPI 23.4 30.5##person drinking a glass of water.\n02DPI 19.7 26.0##person watching something on a laptop.\n02DPI 0.0 15.2##the person is also watching television.\n02DPI 23.4 30.5##person drinking water from a glass.\nX9LP4 16.7 30.7##person reads a book.\nX9LP4 0.0 3.1##a person takes a mini vacuum.\n8SXHK 13.8 19.8##person they put the laptop down.\n8SXHK 13.8 19.8##a person sits typing on a laptop computer.\n8SXHK 13.8 19.8##the person puts the laptop down.\n9ZE0J 0.0 9.4##a person runs up stairs.\n9ZE0J 0.0 9.4##a person runs up a staircase.\n9ZE0J 5.9 20.6##starts to talk to another person holding a towel.\n9ZE0J 0.0 9.4##one person runs up the stairs eating.\n9ZE0J 12.5 19.0##person putting a towel or cloth around their neck.\nZB5J4 25.7 41.0##person they open the refrigerator.\nQVD5B 0.0 14.8##a person is in the entryway holding a bag.\nQUAFE 13.9 20.5##person putting a bag on the shelf.\nQUAFE 0.7 14.6##person a girl is taking clothes out a a washer.\nQUAFE 0.7 14.6##a person is washing clothes.\nQMKZV 4.4 12.1##a person undresses.\nQMKZV 12.7 22.4##person put clothes away.\nQMKZV 4.4 12.1##person starts undressing.\nQMKZV 4.4 12.1##person begins to undress.\nCSPSU 0.8 7.6##person drinking a glass of water.\nCSPSU 0.8 7.6##a person drinking from a disposable cup.\n1440M 17.5 27.0##person opening a closet door.\n1440M 17.5 27.0##person start closing the door.\n1440M 17.5 27.0##person closes a closet door.\nHA8S9 8.2 14.9##person throws their shoes under a desk.\nWRCO6 0.0 4.4##a person is smiling at a picture.\nKWHPI 0.0 4.5##the person closes the open door behind them.\nKWHPI 1.8 6.0##a person throws a bag onto a chair.\nL8CC0 26.9 37.0##person so they start laughing.\nWPU76 0.0 9.3##a woman takes a cup off a table.\nWPU76 2.1 9.3##person starts running.\nCH41S 2.3 10.3##a person is putting a broom in the closet.\nAZPOX 0.0 6.6##a person is holding a towel.\nDCRI5 0.4 5.5##a person opens a closet door.\nDCRI5 3.8 9.1##person puts something on the top shelf.\nDCRI5 0.4 5.5##a man opens his closet door.\nK9EAZ 0.0 10.0##a person is running the vacuum.\nMVPPS 0.0 5.8##a person pours a drink into a cup.\nOHOFG 22.3 33.0##a person is eating some food.\nOHOFG 1.0 7.5##a person sits on a chair by a table.\nOHOFG 1.0 7.5##person sitting down in a chair.\nOHOFG 22.3 33.0##person starts eating food from a plate.\nOHOFG 22.3 33.0##person eat a snack.\nOHOFG 22.3 33.0##the person is working at a desk eating from dishes.\nEW8GX 15.4 20.7##person walks through a doorway.\nAEKYE 9.8 18.7##person watching  themself in a mirror.\nAEKYE 19.9 34.0##person finally eating a sandwich in a living room.\nAEKYE 0.0 11.5##person snuggling with a pillow.\nAEKYE 19.5 34.0##person eats the food.\nGCI2J 8.3 19.3##the person takes a pair of running shoes from nearby.\nGCI2J 8.3 19.3##person take shoes from the floor.\nGCI2J 6.1 14.1##person takes some pictures.\nGCI2J 0.0 11.8##a person holds a camera up.\nGCI2J 8.3 17.3##the person puts the camera down.\nGN0M8 21.0 26.0##person walk through a open doorway.\nN6FZ7 0.0 6.4##a person runs into the living room.\nN6FZ7 8.2 12.8##person throws the blanket on the ground.\nN6FZ7 7.6 13.7##a person throws a blanket on the floor.\nN6FZ7 7.6 13.7##person throws the blanket onto the floor.\nN6FZ7 0.0 6.4##person runs over to use a vacuum.\nN6FZ7 0.0 6.4##a person runs into a room.\n9YOI8 4.8 11.9##person opening a window.\n9YOI8 4.8 11.9##a person opens the window in the laundry room.\n9YOI8 24.6 30.3##person close the window.\n9YOI8 14.8 22.7##person take a drink from the cup they are holding.\n9YOI8 14.8 22.7##person drinking from the cup.\n9YOI8 24.6 30.3##person closes the window.\n9YOI8 4.8 11.9##person opens the window.\nRJD1Z 0.0 11.2##a person is grasping a light to turn it on.\nWF89D 6.6 12.6##a person takes a drink from a cup.\nWF89D 1.0 7.2##the person laughs.\nFDDDG 0.0 5.9##a person is in the kitchen cooking food.\nFDDDG 1.8 6.3##person takes a phone.\nFDDDG 0.0 5.9##a person is cooking at a stove.\nOB660 7.4 12.3##person they throw off the blanket.\nOB660 0.0 5.6##person runs to look out the window.\nOB660 7.4 12.3##person throws a blanket off of them.\nOB660 0.0 5.6##person run over to the window to look outside.\nOB660 0.0 5.6##person runs to the window.\n7LWW3 1.8 23.6##person looking at a book.\n7LWW3 20.2 27.8##the person takes the food somewhere.\nMVX03 16.4 25.2##person they take their shoes off.\nTRVEA 0.0 3.6##a person sits on a bed with a pillow.\nTRVEA 3.6 9.2##this person throws the pillow on the floor.\nTRVEA 3.6 9.2##a person throws a pillow.\nTRVEA 3.6 9.2##person throwing the pillow on the floor.\nTRVEA 0.0 3.6##a person sits on their bed with a pillow.\nW0YVE 4.4 10.0##a person runs up to a glass door.\nW0YVE 7.5 14.1##the person puts the sandwich down.\nW0YVE 4.4 10.0##a person runs into the entryway.\nKE5EM 4.6 9.3##person opens it up to take some clothes out.\nKE5EM 4.8 10.3##a person is holding a bag of clothes.\nKE5EM 0.9 7.1##person sitting down in a chair with a backpack.\nKE5EM 6.3 10.9##person begins sneezing.\nFNBYE 20.5 31.8##a person is also eating.\nFNBYE 14.7 21.2##person open a box.\nFNBYE 20.5 31.8##person eating a sandwich.\nFNBYE 6.5 10.8##person takes a glass.\nFNBYE 14.7 21.2##person opening a box.\nFNBYE 20.5 31.8##person eat a sandwich stand up.\nKFLI0 5.0 9.0##person turns the light off.\nKFLI0 5.0 9.0##person turning off the light.\nOJYDD 21.1 33.2##person pouring a glass of water from on the table.\nOJYDD 21.1 33.2##person pouring a glass of wine in a living room.\nHNPX7 25.2 31.0##person put the bag away.\nHNPX7 0.0 5.9##the person sat in a hall opening a plastic bag.\n5SBEY 12.0 16.0##person sits down on another bed.\n5SBEY 4.7 9.7##person throws a bag down.\n5SBEY 11.9 16.0##person takes a drink out of a cup.\nPAW5E 0.0 8.2##the second person laughs.\nPAW5E 10.5 15.1##one person runs away with a food item.\nPAW5E 10.5 15.1##person running away.\nPAW5E 0.0 8.2##the person at the stove laughs.\nMYBRN 11.8 21.0##person closes some cupboard doors.\nMYBRN 12.1 21.0##person closed some cabinets.\nMYBRN 12.1 21.0##person closes a cabinet door.\n8D6PU 1.0 6.6##a person is walking through a doorway.\nVW4UD 9.3 13.9##person puts the dishes into the sink.\nVW4UD 0.0 13.4##a person is sitting in the kitchen eating.\nVW4UD 9.3 13.9##person puts their dishes in the sink.\nVW4UD 0.0 13.4##person a is eating at a table in the kitchen.\nPBEUF 0.8 7.7##person pour something in another glass.\nPBEUF 0.8 7.7##a person is pouring a drink into a glass.\nSM4AO 2.5 7.6##a person is holding a bag.\nBQOLV 0.0 11.7##a person undresses in their closet.\nBQOLV 0.2 11.7##person putting their clothes on the floor.\n51N2C 15.7 20.4##person they start closing the door.\nT63X2 22.2 36.0##person start laughing.\nHI75B 3.9 10.4##person opens a cabinet under the stairs.\nHI75B 5.0 10.0##person with a flashlight.\nHI75B 5.0 10.0##person they put a flash light into it.\nKWJ5O 30.8 35.0##person takes a look out the window.\nU33ZS 0.5 9.1##person takes their laptop from inside.\nU33ZS 0.0 4.0##a person opens a bag.\n4CAB5 0.0 14.5##a person is cooking on a stove.\n4CAB5 0.0 14.5##a person is cooking in the stove in the kitchen.\n4CAB5 6.7 13.0##the person turns the overhead light on.\n4CAB5 6.7 13.0##person they turn on a light.\nMZZK2 17.7 23.1##the person puts the book down on the table.\nMZZK2 21.2 32.0##person laying on the floor.\nMZZK2 0.0 6.4##a person is standing in the garage holding a book.\nMZZK2 21.2 32.0##person lays down on the floor.\nMZZK2 8.4 21.0##the person undresses.\nMZZK2 6.6 10.9##person turns the light off.\nMZZK2 6.6 10.9##person turns off the light.\nMZZK2 6.6 10.9##the person turns the light off.\nL0QNM 0.0 12.2##the person is watching television.\nL0QNM 17.5 28.5##person starts undressing.\nL0QNM 0.0 12.2##person watching television.\n2TAT3 7.7 16.3##person drinking from a glass of water.\n4RKKP 25.4 31.0##the person puts it back into the box.\nI75CL 0.0 6.9##a person opens a door.\nI75CL 10.9 18.2##person eating a sandwich.\nI75CL 0.0 6.9##a person is opening a door holding groceries.\nI75CL 2.7 9.4##person closes the door behind them with their shoe.\n9MNZ5 40.1 50.1##person opens a book over their head.\n9MNZ5 26.9 41.2##person starts eating them.\n9MNZ5 26.9 41.2##person begin eating those chips.\n9MNZ5 43.0 53.0##person start reading the book.\n9MNZ5 26.9 41.2##person pick up some food eat it from bowl.\n9MNZ5 41.4 53.0##person they hold a book up.\n9MNZ5 26.9 41.2##person eats crackers.\nE6RD3 0.0 7.6##a person laughing at the dining table.\nE6RD3 19.8 26.0##person takes a broom.\nE6RD3 22.9 28.0##person kicks open a door.\nECW3E 1.4 10.4##a person opens a closet door.\nECW3E 1.4 10.4##person opens the closet.\nECW3E 14.7 20.5##person takes a pink laptop from a shelf opens.\nK8OB6 20.2 30.2##another person walks into the room drinking from a cup.\nK8OB6 19.7 33.0##person eating a sandwich.\nPTAZ9 12.6 17.2##person they stand up.\nPTAZ9 1.5 16.0##person eating a sandwich.\nPTAZ9 13.4 19.5##person open a cabinet door.\nPTAZ9 18.8 24.2##person close the cabinet door.\nJMPKP 6.9 14.5##person closes the door.\nJMPKP 5.1 9.8##a person is putting their shoes in a closet.\nJMPKP 5.1 9.8##person they put the shoes away.\nJS3TB 0.0 3.6##person eating a roll or bagel.\nJS3TB 0.0 5.1##person eating a sandwich.\nJS3TB 0.0 5.1##person laugh as they continue to eat their sandwich.\nQRSRE 0.0 6.3##one person runs in past the chair.\nQRSRE 2.1 12.2##person opens the closet door.\nQRSRE 2.1 12.2##takes a drink as the person opens the closet door.\nQRSRE 3.9 8.4##the person is drinking a bottle of water.\nQACLT 3.5 8.8##a person is opening a cabinet in the laundry room.\nQACLT 8.9 18.1##person takes a cellphone from their pocket.\nQACLT 3.5 8.8##person opens some cabinet doors.\n3IS9Y 21.3 27.7##person closed a wooden box twice.\n3IS9Y 18.0 23.4##person opened the box adn llooked in to it.\n3IS9Y 29.8 35.0##person puts the picture down on a box.\nNUKJ0 22.8 30.3##person drinks from a cup of coffee.\n1QP1S 8.3 14.9##a person eats some food.\n1QP1S 8.3 14.9##a person is eating a sandwich.\n1QP1S 21.9 35.0##person laughing at a picture.\n1QP1S 14.8 21.2##one person awakens.\n1QP1S 8.3 14.9##a person eats some sort of fruit.\n1QP1S 8.3 14.9##another person is eating something from a bag.\n1QP1S 14.8 21.2##another person awakens.\nOVFR0 11.3 17.3##person that they opened a door.\nOVFR0 0.0 8.5##a person was looking at a book.\nCDULZ 20.6 31.0##person holding a bag of groceries.\nO3HV7 20.2 27.3##person they put their glasses on.\nO3HV7 4.8 14.0##a person awakens.\nO3HV7 16.0 24.4##person drinking from a coffee cup.\nO3HV7 20.2 27.3##person putting glasses on.\n7O6FK 3.1 10.3##a person throws a blanket down the stairs.\n7O6FK 3.1 10.3##a person throws a blanket down some stairs.\n7O6FK 9.3 14.5##person takes a picture from the wall.\n7O6FK 11.1 20.0##person running down the stairs.\n7O6FK 4.0 9.6##a person throws a blanket on the floor.\n7O6FK 9.3 14.5##person takes a picture frame off a wall.\nDJVKE 14.1 26.5##person is also eating something next to him.\nDJVKE 14.1 26.5##person eat it.\nDJVKE 14.1 26.5##person eating a snack.\nF9VSQ 7.0 15.7##person starts sneezing furiously.\nF9VSQ 0.0 7.3##a person is smiling at a camera.\nF9VSQ 7.0 15.7##person sneezing into a cup of coffee in an entryway.\nMKMFK 0.4 6.0##a person drinks from a cup.\nMKMFK 0.4 6.0##person drinking out of a cup.\nZTWJB 0.0 5.3##a person throws a broom ferociously at the floor.\nZTWJB 0.0 5.3##person throws the broom onto the ground.\nJIUH7 15.2 21.8##person they put the bottle in the trash.\nJIUH7 0.0 10.0##a person walks down stairs drinking from a glass bottle.\nJIUH7 0.0 10.0##person drinking from a water bottle.\nJIUH7 15.2 21.8##person put the bottle in the garbage.\nJIUH7 0.0 10.0##person drinking a bottle of water.\nDSI0N 3.4 10.7##the person is closing the door.\nDSI0N 7.2 11.9##person stand there talking on their phone.\nDSI0N 7.2 11.9##person talking on the phone.\nYT2C3 0.7 10.2##a person opens the doors of a pantry.\nYT2C3 6.5 12.5##person takes out phone.\nYT2C3 14.6 21.3##the person takes a paper towel from the shelf.\nYT2C3 6.7 17.4##person holding their phone.\nYT2C3 0.7 10.2##person opens door.\nYT2C3 0.7 10.2##a person opens the pantry door.\n3B97C 2.1 8.5##a person is running into their kitchen holding a laptop.\n0E6H9 22.6 29.5##person drinks from a bottle.\nHIKIC 17.5 23.5##person opening a door.\nHIKIC 0.9 7.7##the person opens a box.\nHIKIC 11.8 22.4##person talking on phone.\nPT4XS 16.1 20.3##a person is sitting at the table.\nPT4XS 21.6 32.0##gets up to watch the other person washing dishes.\nPT4XS 16.1 20.3##a person is sitting at a table.\nPT4XS 16.1 20.3##a person sits at the kitchen table with a book.\nPT4XS 21.6 32.0##person where he begins washing dishes.\nVWFJA 1.2 7.2##person opens the refrigerator.\nXRG9K 0.2 6.4##person is sitting on floor sneezing.\nXRG9K 5.5 11.5##person takes something out box.\nXRG9K 1.7 9.4##person opening a box.\nXRG9K 1.7 9.4##person opening box.\nXRG9K 1.7 9.4##one person opens a box.\n7AB3X 17.1 24.8##person grabs something to drink out of a cup.\nOOKN5 16.6 27.8##person takes the jacket out of the box.\nOOKN5 22.8 38.0##person begin dressing.\nF024X 8.5 14.0##person throws a pillow on a chair.\nF024X 0.0 8.9##a person undresses.\nF024X 9.0 14.0##person puts a pillow on a chair.\nBJ7YW 8.4 15.0##person looks out a window.\nBJ7YW 9.4 15.0##the person is now washing the glass of the window.\nFJYWX 24.3 33.6##person they take off some of their clothes.\nFJYWX 22.8 35.1##person beginning to undress.\nFJYWX 20.5 26.6##person put it on the table.\nB47TS 12.4 17.9##person than stand up.\nLRJKT 0.7 12.8##a person drinks out of a glass.\n4FX6G 7.8 18.6##a person opens a door.\n4FX6G 7.8 18.6##a person opens a door with a doorknob.\n4FX6G 16.4 27.2##person takes some dishes out of the pantry.\nLGPWK 22.4 28.0##person puts the remote on a shelf.\nEIT66 7.5 13.0##person putting a blanket in the box.\nEIT66 7.5 13.0##person put a blanket in a box.\nEIT66 2.8 8.7##the person puts the phone in a pocket.\n0LHWF 0.0 4.1##a person sits in a chair.\n0LHWF 2.1 16.2##person holding a book.\n0LHWF 2.7 15.0##person reading a book.\n0LHWF 2.7 15.0##person read book.\nRJNAB 0.1 5.6##a person drinks from a cup.\nRJNAB 7.2 12.1##person they open a box.\nRJNAB 7.2 12.1##this person opens a box.\nRJNAB 0.1 5.6##person drinks from a cup.\nZL3QP 2.1 9.3##a person is laughing as the open the pantry.\nZL3QP 0.0 6.0##a person is opening the pantry door.\nZL3QP 2.1 9.3##person starts laughing.\nEURF2 22.5 29.4##person sitting on bed.\nEURF2 22.5 29.4##person sitting on the bed themselves.\nEURF2 22.5 29.4##the person sits on the bed.\n8W829 0.0 7.7##person puts something on a shelf.\n8W829 2.1 7.5##a person is putting a sandwich on a tray.\n8W829 17.4 29.3##person slowly walks to a doorway.\n8W829 2.1 7.5##person puts a sandwich in a basket.\nOTUV7 0.0 6.3##person eating from a bag.\nOTUV7 0.0 6.3##person eats some chips at a small table.\nOTUV7 0.0 6.3##person they are eating a snack.\nOTUV7 0.0 6.3##a person is in a office eating food.\nOTUV7 9.4 14.4##person stand up.\n2OHTZ 6.6 15.5##the person takes a couple drinks from a cup.\n2OHTZ 6.6 15.5##person taking a drink from a cup of coffee.\n2OHTZ 0.0 5.3##a person opens a laptop.\n2OHTZ 0.0 5.3##a person opens their laptop.\n2OHTZ 0.0 5.3##person opening a laptop.\nDMO76 11.6 20.4##the person runs into the adjacent living room.\nDMO76 11.6 20.4##person they start running around.\nDMO76 17.9 22.8##person they put their phone onto the sofa.\nDMO76 11.6 20.4##this person runs into the other room.\nFQS5V 14.7 21.1##person they stand up.\nFQS5V 15.0 22.0##the person laughs.\nY80PJ 0.0 5.7##a person is opening the refrigerator.\nDHDCF 2.1 8.8##person walks towards the camera drinking from a glass.\nDHDCF 2.1 8.8##person drinking a glass of water.\nDHDCF 2.1 8.8##person drinking water from a glass.\nTS2DM 0.0 13.8##person holding a cellphone.\nTS2DM 0.0 15.7##person smiling very happily.\nTS2DM 0.0 15.7##person still smiling.\nTS2DM 3.1 10.0##the person walks through a doorway.\nTS2DM 0.0 13.8##person holding a cell phone.\nTS2DM 0.0 13.8##person holding the phone.\nOY3LS 28.6 37.6##the person puts their phone on a table.\nOY3LS 34.9 41.4##the person sits on a couch.\nOY3LS 7.2 23.6##a person is standing in their entryway undressing.\nOY3LS 34.9 41.4##person sit on a couch under a blanket.\nOY3LS 22.3 33.1##person played with his phone.\nOY3LS 34.0 46.0##person lied down on the couch.\nOY3LS 7.2 23.6##person they get undresses.\nOY3LS 2.5 10.1##person opened the laptop.\n68OG0 18.7 29.9##person drink a cup of coffee.\n68OG0 9.3 16.6##a person is sneezing.\nDGPAW 10.5 16.6##person opens the door.\nDGPAW 5.1 13.0##this person puts the picture on a shelf.\nGAOV2 2.3 9.2##a person is sneezing into a phone.\nGAOV2 12.0 21.5##person putting a laptop in a bag in a kitchen.\nQ5MDU 0.0 3.6##person turns the light off.\nQ5MDU 0.0 3.6##person turns the light on.\nQ5MDU 0.0 3.6##person turning on a light.\nQ5MDU 0.0 3.6##person turns on a light.\nIMLN5 5.6 15.5##person take a drink from a glass.\n4H61U 19.0 31.0##person dress themselves with it.\nBDJ84 19.3 26.4##person put it onto the shelf.\nCLB72 15.6 23.7##person takes a pillow from it.\nCLB72 15.6 23.7##person takes a pillow out.\nCLB72 15.6 23.7##person takes a pillow out of the box.\nCLB72 0.0 3.6##person turns on the light to a closet.\nCLB72 0.0 3.6##a person turns on the light in a closet.\nSB8G0 0.0 4.0##a person is smiling.\nSB8G0 0.0 6.5##a person is sitting on a chair.\nSB8G0 25.4 29.5##person closing the cabinet.\nSB8G0 0.0 6.5##person sitting in a chair.\nSB8G0 0.0 4.0##person smiling at the camera.\nATV2F 12.7 20.7##person opens up a laptop.\nATV2F 12.7 20.7##person opens her laptop to begin doing her work.\nATV2F 0.0 10.1##person a girl is dressing in front of a closet.\nATV2F 12.7 20.7##person opens the laptop.\nB4TWR 9.6 16.3##another person is putting clothes in a hall wardrobe.\nB4TWR 9.8 16.1##person they put them on a shelf.\nCQ435 1.3 12.8##a person in their dining room is running around.\nCQ435 0.0 5.2##person laughing because they see something funny on the television.\nTKJCI 16.3 31.0##person lies down on the bed to review the pictures.\nTKJCI 16.3 31.0##taking the picture the person lies back in the bed.\nM014B 28.3 31.0##a person holding a bag of items.\nM014B 5.7 15.0##a person drinks milk from a bottle.\nM014B 14.5 24.4##person continues cooking.\nM014B 28.3 31.0##person holding a bag.\nW3NN2 26.7 31.0##person turning the lights off.\nW3NN2 26.7 31.0##person turned off the light.\nW3NN2 26.7 31.0##person turns off the light.\nQMHK8 0.0 16.7##person walks into room holding a bag.\nQMHK8 0.9 14.1##person closes the door behind them.\nQMHK8 17.1 26.1##this person puts their shoes.\nQMHK8 9.5 17.3##person puts a plastic bag on the handle.\nQMHK8 0.9 14.1##person closes the door.\nQMHK8 39.5 46.4##person takes the bag off the doorknob.\nQMHK8 42.1 54.7##person puts bag on shelf.\nQMHK8 17.1 26.1##person puts shoes in the bag.\nQMHK8 39.5 46.4##person takes off sweater to put in bag.\nQMHK8 20.1 44.4##the person undresses (removes socks.\nQMHK8 42.1 54.7##person puts it on the shelf.\nQMHK8 42.1 54.7##person puts the bag on a shelf.\nRSFGZ 1.6 10.2##person they begin undressing by removing their sweater.\nRSFGZ 1.6 10.2##a person undresses as they walk down the stairs.\n8H570 6.8 21.3##person which he holds as he removes his phone.\n8H570 0.0 7.1##a person is eating junk food.\nUR55B 18.8 33.8##person holding a bag of groceries.\nOB9D0 23.4 33.0##person playing a game on the phone.\nOB9D0 23.4 33.0##person they start playing with a camera.\nNL9AW 6.5 13.2##person holding their food.\nNL9AW 0.0 6.2##person opens the refrigerator.\n9BQ7M 9.7 16.2##person sitting in a chair smiling.\nFQ8FN 14.9 25.1##person they put on their shoes.\nFQ8FN 6.6 17.0##a person awakens in bed.\nFQ8FN 14.9 25.1##person puts their shoes on.\nFQ8FN 14.9 25.1##person puts on some shoes.\n30K2N 5.2 10.6##a person runs into a garage.\n30K2N 1.7 6.7##person turns on a light.\n4K0BP 8.6 17.7##person drinks a glass of water from the shelf.\n4K0BP 8.6 17.7##this person drinks from a cup.\nRAGOI 7.4 12.0##person put the towel on top of a table.\nRAGOI 2.7 7.2##person as they stand up to grab a towel.\nKNGRY 13.3 18.1##the person laughed.\nKNGRY 0.0 3.4##the person walked through the doorway holding a box.\nKNGRY 13.3 18.1##the person appears to laugh.\n0KTWY 0.0 10.3##person moving to sit on the toilet seat.\nS4P5J 5.9 24.8##person putting away groceries.\nS4P5J 33.7 38.5##another person is smiling.\nAB2V6 20.0 25.2##person opens a laptop up.\nAB2V6 11.9 17.3##person they stand up.\nAB2V6 6.8 13.5##a person is on the sofa sneezing.\nAB2V6 20.0 25.2##person opened the laptop computer.\nYGL6R 21.1 28.8##person stop to open a window.\nYGL6R 4.8 14.8##person tidying up the table.\nOT35M 4.4 9.8##person they put the towel down.\nOT35M 4.4 9.8##person throwing the towel to the floor.\nOT35M 4.4 9.8##person throw it on the floor.\nOT35M 9.6 15.0##person takes a picture of themselves.\nOT35M 9.6 15.0##person take a picture.\nOT35M 9.6 15.0##person take their phone out to take a picture.\nOT35M 4.4 9.8##a person is putting on a towel.\nOT35M 4.4 9.8##a person put a towels around their neck.\n1L5D3 18.5 32.0##person playing on their phone.\n1L5D3 2.9 10.0##a person takes a pillow from the dresser.\n1L5D3 2.5 16.8##person snuggling up to the pillow.\n1L5D3 2.9 10.0##a person takes a pillow off a shelf.\nPGPSJ 21.3 27.4##person puts down the box.\nPGPSJ 19.1 25.3##person closes the box.\nUR5TU 0.4 7.4##a person opens a pantry door.\nUR5TU 20.2 27.1##person closes the cabinet door.\nUR5TU 0.4 7.4##person a girl opens the pantry door.\nUR5TU 20.2 27.1##the person closes the door.\nUR5TU 0.8 7.7##a person opens a closet.\nUR5TU 20.2 27.1##person closes the door.\nUR5TU 0.8 7.7##person opens a cabinet in the pantry.\nUR5TU 0.4 7.4##the person opens up a pantry door holding some clothing.\nR1KMF 11.1 23.3##person puts it into a bag.\nR1KMF 20.9 25.1##person opens a door by turning the handle.\nR1KMF 10.3 18.5##the person takes the bag.\nR1KMF 20.9 25.1##person opens a door.\nJ3RD3 5.3 10.8##person closes the door.\nJ3RD3 1.1 8.0##a person opens the door to a room.\nJ3RD3 1.1 8.0##a person opens the door.\n1XOQ8 1.1 6.2##person they start throwing shoes out of the way.\nGMPHO 1.0 9.0##person opens a closet door.\nGMPHO 1.0 9.0##person opening their closet door.\nGMPHO 34.4 41.0##person walking out the doorway.\nGMPHO 1.0 9.8##a person opens the closet takes stuff out.\n21O5C 3.0 9.0##person runs out of room.\n21O5C 3.0 9.0##a person runs through the doorway.\nJFBTV 0.0 5.8##a person opens a closet door.\nJFBTV 0.0 3.2##a person flips a light switch.\nJFBTV 16.8 22.6##the person closes the door.\nJFBTV 0.0 5.8##a person opens up a closet door.\nJFBTV 0.0 5.8##person opens a door to a closet.\nJFBTV 21.5 30.3##person drinks from a bottle.\nJFBTV 16.8 22.6##person walks out of the closet closing the door.\n15RTV 12.1 20.1##person eating a cookie.\n15RTV 3.1 13.2##person putting a pillow in the closet.\n3LMTS 16.2 31.0##person begin talking on the phone.\n3LMTS 16.3 31.0##person holding the phone in between their shoulder.\n8TSU4 0.0 5.5##person eating some food.\n7835X 0.0 5.7##a person throws shoes in the corner.\n7835X 0.0 5.7##person throws a pair of shoes in the corner.\n7835X 0.0 5.7##person throw shoes into a corner.\nC10FA 16.4 32.2##person pour it into a glass.\nC10FA 16.4 32.2##person pours some milk into the glass.\nC10FA 9.0 21.9##a person holding a glass opens the refrigerator.\nC10FA 16.4 32.2##person they pour it into the glass.\nPXY5Q 23.0 33.0##person looks at a picture hanging there.\nPXY5Q 6.4 13.3##person takes out a glass of water.\nPXY5Q 19.0 24.6##the person puts the water down on the table.\nPXY5Q 4.0 10.2##a person opens the cabinet.\nPXY5Q 23.0 33.0##person looked at a picture on the wall.\n41T8C 5.1 11.7##a person is sneezing.\n41T8C 12.3 20.5##person puts the book on the shelf.\nRRQEV 4.7 11.3##the person puts away the blanket.\nGLSU2 14.2 19.7##the person takes a towel from the cabinet.\nGLSU2 11.2 24.1##a person walks into the pantry eating a sandwich.\nMXATD 5.3 10.8##the person opens a cabinet to take detergent.\nMXATD 0.6 9.0##person pour in some dish washing soap.\nMXATD 0.2 6.0##a person puts the dishes away.\nMXATD 0.2 6.0##person puts dishes in a sink.\nMXATD 0.2 6.0##person puts dish soap into the sink.\n3VT73 10.4 15.9##person he takes his cell phone out.\n3VT73 8.4 13.1##the person throws a book.\n3VT73 2.3 11.6##a person sits down as they read a book.\n29V7T 4.4 9.4##person turning on the light.\n29V7T 4.4 9.4##person turns on the light.\n29V7T 0.0 9.7##person they are holding a broom instead of the glasses.\nBLWIW 13.0 19.0##person looking out the window.\nLSH63 10.0 16.9##person put the bag on top of a table.\nMCMTH 21.0 35.0##person begins washing the glass.\nE0OJ8 0.0 11.8##a person is tidying some books on the table.\nE9UYZ 7.2 13.8##person puts the medicine down in the table.\nG71O7 43.8 48.0##person they begin laughing when they look at the screen.\n3KDI5 21.9 36.0##working on a laptop in a relaxed manner.\n3KDI5 21.9 36.0##person starts playing games on a laptop.\nICQZX 0.0 5.8##a person opens a closet door.\nICQZX 12.5 18.0##the person takes a book from the wardrobe.\nICQZX 9.4 14.7##person the take shoes out of the closet stand up.\n448J4 13.8 21.9##person puts the plate on a table.\n448J4 1.3 7.3##a person walks through a doorway carrying a plate.\nBFH78 21.0 32.0##person they are holding a towel.\nBFH78 21.0 32.0##the person holds a small towel.\nBFH78 23.8 30.7##person begin smiling.\nX37P1 14.1 20.7##person takes a drink out of the glass.\nIDXM0 0.0 7.1##one person opens a box of shoes.\nNB0IB 0.0 5.5##a person opens their kitchen pantry doors.\nNB0IB 0.0 5.5##a person opens a pantry door.\nBW2OT 0.0 13.9##the person is eating a sandwich.\nBW2OT 0.0 13.9##person eating a sandwich.\nCLAWJ 23.7 33.0##person begin to undress.\nCLAWJ 23.7 33.0##person undressing next to the wardrobe in the basement.\n3QL7J 20.9 27.8##person getting a bite to eat out of the fridge.\n3QL7J 20.9 27.8##person eats it.\n3QL7J 0.0 15.6##person cooks some food on the stove.\n3QL7J 0.0 15.6##a person is cooking some eggs on a frying pan.\n3QL7J 25.8 31.6##person looking out the window.\n3QL7J 25.8 31.6##person looking out of the window.\n3QL7J 19.1 25.8##person takes some food out of it.\n9LTZT 13.6 22.9##person drinks something from the glass.\nJVOM3 4.7 9.4##person holding a flashlight.\nJVOM3 4.7 9.4##person a flashlight by the doorway.\nJVOM3 11.4 18.0##person closes the book.\nJVOM3 16.9 32.0##person begins to undress.\nJVOM3 4.7 9.4##person holding a book shines a flashlight forward.\nGFPDD 0.0 10.1##a person walks into the kitchen holding a box.\nA59CN 18.6 25.0##person turns the light on.\nA59CN 18.6 25.0##person turn on the light.\nA59CN 18.6 25.0##person turned on a light.\n4PEL7 18.6 23.7##person sits on the couch.\n4PEL7 7.7 13.6##person closing the bathroom door behind him.\n4PEL7 6.6 11.6##the person turns the light off.\n4PEL7 18.6 23.7##person walks into a room to sit on the couch.\n4PEL7 6.6 11.6##person cuts off the light.\nMZ3X9 15.8 29.1##a person takes a phone.\nMZ3X9 2.6 10.0##person open the door.\nMZ3X9 8.7 17.9##person takes out a broom.\nMZ3X9 8.7 17.9##person take out he broom from inside.\nMZ3X9 17.7 27.7##person holding the phone.\nMZ3X9 2.6 10.0##person opens a door.\nUUF84 12.2 22.8##the person takes the medicine.\nUUF84 24.5 33.0##person begins undressing by removing their socks.\nUUF84 24.5 32.5##person takes off their shoes.\nUUF84 12.4 20.2##person eat some food.\n4GHHK 0.2 5.2##a person opens a cabinet.\nLIQS5 17.2 33.0##a person in the bathroom is smiling.\nLIQS5 30.0 33.0##the person is also playing with a camera.\nYAFX0 6.2 14.9##person puts the dirty clothes in the washer.\nYAFX0 4.2 9.3##a person puts down a large bag.\nYAFX0 9.2 26.9##person looks out of a window.\nYAFX0 9.2 26.9##person looks out the window.\nYAFX0 18.8 29.5##person starts washing the clothes.\nYAFX0 9.2 26.9##the person looks out the window.\nO87OF 0.0 10.5##person puts it on a table.\nO87OF 0.0 10.5##person puts jacket on table.\nUSNON 21.5 30.3##the person closed the entry door.\nUSNON 0.0 4.0##person still smiling.\nUSNON 21.5 30.3##person closes the door.\nUSNON 21.5 30.3##person proceeds to close a door.\nZZ4GP 0.0 11.9##a person is standing at a stove cooking.\nZZ4GP 0.0 11.9##a person is cooking some food on the stove.\nZZ4GP 0.0 11.9##a person is cooking at a stove.\nZZ4GP 0.0 11.9##person he stops cooking.\n0HV07 18.8 28.5##a person walks into a bedroom holding clothes.\n5TKIB 18.2 23.7##the person opens the bag.\nYB67Z 13.7 18.9##person close the top of the box.\nXSVLL 0.0 10.8##person runs to a table.\nXSVLL 0.0 10.8##person runs back to sit down.\nXSVLL 0.0 10.8##a person runs into the entryway.\nXSVLL 27.0 33.0##person sits down at the table.\nXSVLL 0.0 10.8##a person runs around the room.\nXSVLL 0.0 10.8##a person runs to the door.\nXSVLL 0.0 10.8##a person runs around the house.\nHJ4B1 14.8 23.9##person looks over at a picture.\nHJ4B1 2.1 10.7##a person awakens in  a bedroom.\nZ6B6S 9.9 18.2##person putting the food back on the shelf.\nUUPJS 0.0 9.1##a person holding a broom puts it down.\nUUPJS 2.6 9.1##person puts the broom down to pick up a book.\nUUPJS 0.0 9.1##a person is holding a broom in a laundry room.\nUUPJS 2.6 9.1##person puts the broom down.\nTESF6 17.6 22.9##person puts a camera into it.\nTESF6 2.9 10.1##person puts it oin the box.\nTESF6 3.2 10.8##a person opens a box.\nTESF6 21.3 31.0##this person holds the box.\nTESF6 7.1 13.0##person he takes out his camera.\nTESF6 2.9 10.1##person putting it in the box.\nTESF6 3.2 10.8##one person at a sofa opens a box.\n00607 25.9 31.7##person put the broom on the floor.\n1LBUG 1.0 6.7##a person is sneezing by the door.\nXOOPP 6.7 15.2##person stands on it to put a picture up.\nMIAE4 11.4 24.5##person sits on a bed for a.\nMIAE4 3.9 8.9##person walk through a doorway.\nJ4QHT 8.6 14.5##the person takes out a camera.\nJ4QHT 0.0 3.2##a person through a doorway walks to a closet.\nJ4QHT 1.4 6.8##a person is seen opening their closet doorway.\nJKWJ6 9.9 19.8##person takes a bite of a sandwich.\nJKWJ6 0.0 9.5##a person is lying on the couch watching television.\nJKWJ6 13.8 23.1##the person eats a couple bites of their sandwich.\nV6RRM 8.8 16.0##person start undressing.\nW292V 12.2 19.8##person opens the closet door.\nW292V 6.6 14.1##person takes a drink from a red cup.\nW292V 12.2 19.8##person open a closet door.\nW292V 0.0 10.6##a person is awakening.\nN8913 27.3 33.0##the person is also watching television.\nY2EID 4.8 10.5##person closes the door leading back outside.\nY2EID 3.6 9.1##a person opens a door.\nY2EID 14.0 19.8##person sneezing into it.\nRJZ3I 20.4 27.0##person runs away down the hall.\nRJZ3I 20.4 27.0##person running away.\nEFUTW 0.5 7.7##a person is opening the refrigerator.\nEFUTW 0.5 7.7##a person opens a refrigerator.\nW5YUE 7.9 16.2##a person takes a pink blanket off of a chair.\nW5YUE 17.5 30.9##person washing a glass in the sink.\nW5YUE 7.9 16.2##a person takes a blanket from a chair.\nGYVK9 17.6 22.5##person starts sneezing.\nGYVK9 17.6 22.5##person sneezing several times.\nAFIRW 16.4 23.6##the person takes out their phone.\nAFIRW 16.4 23.6##person takes out a phone.\nAFIRW 20.2 33.0##person takes a picture.\nAFIRW 0.0 6.6##person in bathroom who washes hands.\nAFIRW 0.0 6.6##person washes their hands.\nAFIRW 20.2 33.0##person takes a selfie picture.\nAFIRW 0.0 6.6##a person washes their hands with soap.\nM98YV 28.1 31.0##person in their right they are holding a sandwich.\nMTOFZ 19.4 30.0##person drink out of the glass.\nMTOFZ 19.4 30.0##person drinking from an empty glass.\nWD12X 2.4 7.3##a person using a broom to close cabinet doors.\nRKJ0C 0.0 14.4##a person walks into a house laughing.\nRKJ0C 8.4 14.4##person sits at the table eating food.\nRKJ0C 0.0 3.2##a person closes a door.\nRKJ0C 0.0 14.4##a laughing person walks into their kitchen.\nJBFPI 7.6 13.9##person drinks from a glass.\nJBFPI 7.6 13.9##the person takes a drink from a glass of water.\nJBFPI 0.0 9.3##a person is working on their laptop.\nVU996 23.4 31.0##person closed the door.\nVU996 17.2 24.3##person puts some blankets away inside.\nVU996 7.4 14.7##the person put the pillow into the closet.\nVU996 0.0 14.9##a person walks into their closet holding a pillow.\nVU996 0.0 4.0##person turns the light off.\nVU996 0.0 14.9##person holding a pillow.\nVU996 23.4 31.0##a person opens a door to a closet.\nVU996 23.4 31.0##person closes the door behind them.\nVU996 0.0 4.0##the person turns off the closet light.\nVU996 0.4 7.0##person opened up the door.\nVQOI3 0.0 3.6##person opening a bag.\nT42IZ 19.9 26.9##person closes the fridge door.\nT42IZ 12.4 22.6##person puts the groceries in the fridge.\nT42IZ 4.0 12.4##same person opens the fridge door.\n422BV 10.4 16.0##person look into a book.\n422BV 0.0 9.4##person holding shoes.\n422BV 5.1 13.7##person lending on the table put on some shoes.\n422BV 5.1 13.7##the person put their shoes on.\nAYZS4 4.2 17.9##a person is eating.\nAYZS4 4.2 17.9##a person eats a banana.\nAYZS4 4.2 17.9##person eating a banana.\nAYZS4 0.0 8.2##person sitting down at a kitchen tables.\nAYZS4 14.9 26.3##person tidy up the table.\nAYZS4 0.0 8.2##the person is sitting at a table peeling.\nAYZS4 4.2 17.9##person eats it.\nMA6GY 16.9 22.2##person puts the others back in the box.\nMA6GY 0.0 6.8##person opening a box.\nMA6GY 0.0 6.8##a person opens a box of groceries.\nMA6GY 9.5 16.0##person begins to take some medicine.\nYK49T 0.0 13.6##a person can undress.\nYLEEO 0.0 6.4##a person closes a door.\nST7MR 0.0 8.1##person closes the door.\nST7MR 45.7 49.0##person they start throwing their clothes toward the doorway.\nST7MR 28.3 35.7##person they throw it on the floor.\nST7MR 0.0 8.1##person closes a door.\nWDF45 5.4 10.1##person puts it on a table.\nWDF45 5.3 10.2##the person puts the phone down.\nITDHX 22.5 33.0##person putting a pillow on the bed in the bedroom.\n8YFD1 7.1 18.8##person starts undressing.\n8YFD1 0.0 8.7##person is standing in laundry room looking fixing their hair.\n8YFD1 0.0 8.7##a person fixes their hair in a mirror.\n8YFD1 7.1 18.8##looking in mirror,then person starts undressing.\nRBQ9Y 47.9 54.9##person stand up again.\nRBQ9Y 0.0 13.1##a man begins to undress.\nRBQ9Y 38.6 51.9##person sit on the bed.\nRBQ9Y 39.2 51.9##person put on some shoes.\nRBQ9Y 53.2 59.0##person putting away clothes in a bedroom.\nRBQ9Y 53.2 59.0##person putting his clothes on the bed beside him.\nRBQ9Y 39.2 51.9##person putting on shoes.\nRBQ9Y 38.6 51.9##person sits down on the bed to fix his shoes.\nGV0L7 3.3 10.0##a person turns the light on.\nGV0L7 0.1 12.6##person sits on a couch.\nGV0L7 0.1 12.6##person sits down on the couch.\nGV0L7 3.3 10.0##a person turns a light on.\nABPGE 10.5 18.6##person takes a book from the shelf.\nABPGE 4.2 17.2##person they begin drinking a glass of water.\nV7YEJ 0.0 7.7##a person lying on the floor awakens.\nV7YEJ 9.9 16.9##person begins eating.\nV7YEJ 9.9 16.9##person starts eating.\nV7YEJ 0.0 7.7##a person awakens on the floor of their recreation room.\nUSPJK 17.7 23.9##the person takes a broom.\nDUSJO 15.0 22.0##a person looks out the window.\nDUSJO 6.9 12.6##person puts the cup on a shelf.\nDUSJO 6.9 12.6##person puts cup on shelf.\nDUSJO 15.0 22.0##person looking out window.\nACSP8 22.1 32.0##person begins playing with their phone.\n21F9H 21.0 26.9##person puts a pillow down on the bed.\n21F9H 0.0 4.4##a person is drinking a cup of coffee.\n21F9H 26.2 31.0##sitting down on a bed in a comfortable manner.\nOWRDE 0.9 13.0##person eating some food.\nOWRDE 0.9 13.0##a person quickly eats something.\nOWRDE 20.8 36.9##person sits on stairs to put on shoes.\nOWRDE 20.8 36.9##person puts on tennis shoes.\nOWRDE 20.8 36.9##person puts on shoes.\nOWRDE 0.9 13.0##person unwraps & eats something.\nYG9UR 12.2 18.1##person opened the book.\nCTIYN 7.5 19.9##person sneezing into a blanket.\nKTXSD 5.4 10.0##person takes something from the cupboard.\nTBRZ5 22.8 33.0##the person can be seen playing with the phone.\nJMCBE 0.0 6.5##a person is throwing a blanket down the stairs.\nJMCBE 0.0 6.5##a person is throwing items off the stairs like blankets.\nS06H3 7.4 13.7##a person puts some food on a shelf.\nS06H3 7.4 13.7##a person puts something on the shelf of the garage.\n7229M 25.2 36.0##person takes a notebook.\n7229M 8.6 15.2##person put on the shoes.\nRIZ7Y 12.7 18.6##person runs out.\nRIZ7Y 12.7 18.6##another person runs in.\nRIZ7Y 12.7 18.6##another person runs past them.\nOIL1V 11.1 16.0##person grabs a drinking glass from the floor.\nVBN1O 0.0 6.7##a person comes running into the room.\nVBN1O 0.0 6.7##a person enters through a doorway running.\nPCNUP 4.3 9.7##person puts down a picture.\nPCNUP 4.3 9.7##person puts the picture on the floor.\nPCNUP 4.3 9.7##the person puts the picture down.\nPCNUP 13.5 25.0##person starts smiling.\nPCNUP 0.0 9.1##a person is holding a picture.\nPCNUP 2.0 7.1##a person turns on the light.\nXHN6Y 0.0 9.7##a person is cooking something on the stove.\nXHN6Y 0.0 9.7##a person is cooking at the stove.\nW5ZY8 21.7 28.5##person smiling at a camera.\nK7Z6T 0.0 8.7##a person opens a plastic bag.\nK7Z6T 0.0 8.7##one person opens a bag.\n3P055 7.5 27.7##a person is dressing in front of a mirror.\nPZ0ND 9.1 13.0##person begin dressing.\nZC017 10.2 18.8##person began tidying up a small table.\nZC017 0.0 13.1##the person watching television got up.\nZC017 13.7 21.3##person takes a bottle of medicine out of a box.\nZC017 0.0 9.3##a person is sitting on the couch watching television.\nARKBT 0.0 5.4##person the persin opens the dryer door.\nARKBT 24.7 29.0##person closes the door of the dryer.\nKB916 0.0 14.0##person holding a towel.\nXEJ35 5.1 10.6##person opened a book.\nXEJ35 5.1 10.6##the person opens a book.\nX06Z6 14.9 24.0##person they look out the window.\nQQMY8 6.3 11.7##person takes a glass off of a table.\nQQMY8 0.8 5.4##the person turns on a light.\nQQMY8 0.8 5.4##person turns out the light in the closet.\nQQMY8 0.8 5.4##person turning on a light.\nQQMY8 9.8 14.0##person grabs a cup turns off the light.\nHUWAZ 2.0 10.3##person drinking from a cup of coffee.\nHUWAZ 2.0 10.3##the person is drinking something from a cup.\nSANRG 13.3 21.2##person throws the towel onto the floor.\n8NEYJ 3.5 9.0##a person opens a door.\n8NEYJ 19.7 32.0##person stopping to look out a window.\n8NEYJ 19.7 32.0##person looks out of the window.\n8NEYJ 3.5 9.0##person seeing the door open.\nBYP85 24.8 29.7##person put them on the shelf.\nBYP85 24.8 29.7##person puts items onto a shelf.\nBYP85 21.8 29.8##person they tidy up a shelf in front of them.\nY44TV 8.9 20.3##one person takes a pillow.\n31YNM 11.7 24.4##the person drinks from a cup from the side table.\n31YNM 0.0 15.1##a person fixing a light.\n31YNM 11.7 24.4##person drinks from a cup.\nDWH0T 22.4 32.9##person start pouring themselves a glass of water.\nDWH0T 22.4 32.9##person pours themselves a cup of water.\nMJYTA 8.6 14.9##the person puts the bowls on the table.\n1KC11 2.7 8.9##person also watching something on their laptop.\n1KC11 4.1 8.9##person they are watching something on their television.\nT5SI3 1.6 6.6##a person is laughing at a book.\nT5SI3 9.3 15.0##person starts to close the box.\nT5SI3 6.1 12.9##person put the paper in a box.\nO3Y57 2.3 9.0##person closed the door.\nO3Y57 23.7 31.0##person they begin sneezing several times in succession.\nO3Y57 6.2 13.1##person they put the bag over their head.\nO3Y57 2.3 9.0##person closing the door to the room.\nLR9KL 12.2 20.1##a person runs laughing through the hall with a pillow.\nI52A6 0.0 3.5##a person drinks a glass of water.\nI52A6 0.0 3.5##a person is drinking glass of water in laundry room.\nI52A6 30.3 35.8##person opens the dryer door.\n1VF27 11.0 18.0##person they start eating some food.\nPJDUN 7.9 14.6##person takes a book off a shelf.\nH411A 8.7 14.7##person puts it in a box.\nH411A 6.5 11.3##person put a pillow in a box close the box.\nH411A 6.5 11.3##a person puts a pillow into a box.\nUQJ5W 5.6 13.2##person walks into shower opens the window.\nUQJ5W 5.6 13.2##person opens the window.\nUQJ5W 17.7 28.0##person takes a picture of something outside.\nUQJ5W 5.6 13.2##person takes a cell phone photo through the open window.\nUQJ5W 0.0 4.2##person eating a sandwich.\nUQJ5W 17.7 28.0##person proceeds to take a picture out of the window.\nUQJ5W 5.6 13.2##person opens the window inside the shower.\nUQJ5W 5.6 13.2##person opens a window.\nUQJ5W 5.6 13.2##person take a picture through the open window.\nYQOCU 8.4 13.5##a person takes some food from a cabinet.\nYQOCU 23.1 32.0##person they sit down in a chair holding it.\nYQOCU 5.7 11.7##a laughing person walks into the kitchen opens a cabinet.\nDR7K0 17.3 32.0##person begin to dress themselves.\nDR7K0 17.3 32.0##person they are  dressing themselves in a wardrobe closet.\nDR7K0 0.0 9.4##a person is seen smiling.\n3YQE2 24.7 31.0##person turn off the light.\n3YQE2 17.8 29.6##person starts sneezing.\n3YQE2 24.7 31.0##person turns off the lights.\nAHBE8 18.1 23.5##person they close the box.\nAHBE8 12.3 22.8##person puts shoes in pizza.\nAHBE8 21.8 26.8##next the person puts the box aside.\nAHBE8 21.0 29.0##person starts laughing.\nAHBE8 12.7 17.8##a person opens a box.\nAHBE8 12.3 22.8##person puts in some shoes.\nAHBE8 21.0 29.0##person is laughing.\nYE47Y 0.0 14.8##a person is sitting on the couch with a pillow.\nYE47Y 0.0 12.3##a person snuggles up with a blanket on the couch.\nYE47Y 0.0 14.8##a person sits on the couch holding a pillow.\nYE47Y 0.0 14.8##person someone is sitting on their couch with a blanket.\nWM6RQ 12.6 18.0##the person closes the refrigerator.\nWM6RQ 0.0 6.0##person open the refrigerator door.\nWM6RQ 11.3 16.8##person take food.\nRV5CK 27.1 34.0##person turn off the light.\nRV5CK 27.1 34.0##person trying to turn off the light.\nRV5CK 27.1 34.0##person shuts off the lights.\nPIJRH 0.0 12.9##person holding a bag.\nPIJRH 6.9 12.7##person they take a pillow out of the bag.\nPIJRH 6.9 12.7##person takes a pillow out of a bag.\nZJ37U 2.5 7.0##person turns off light.\nZJ37U 0.0 12.2##person eating sandwich.\nZJ37U 2.5 7.0##person turns off a light.\nZJ37U 2.5 7.0##the person turns off the light in the hallway.\nPAA7V 16.6 23.9##person puts the dish into a box on the floor.\nPAA7V 20.0 25.0##the person takes a toy out of the box.\nIAHN3 1.0 8.9##person smiling together at the same time.\nIAHN3 7.4 16.0##person the other takes a picture with their camera.\nPDH7G 4.9 10.1##person puts a bag down on the counter.\n07QNG 29.4 36.7##person pour a cup of juice.\n07QNG 9.6 19.9##the person is also watching television.\n07QNG 29.4 36.7##person they stop to pour some water in a glass.\nOK45U 17.2 22.9##the person throws their clothes onto the shelf.\nOK45U 9.0 19.7##a person is undressing in the garage.\n28BVI 36.2 42.4##person puts down the glass.\n28BVI 19.0 34.2##person eats some food.\n28BVI 36.7 43.1##person holding a glass of water.\n28BVI 19.0 34.2##person eats something.\n28BVI 35.6 44.0##the person began tidying the kitchen table.\n28BVI 25.0 34.4##person drinks out of a glass.\n28BVI 2.8 15.4##a person is undressing in their kitchen.\n28BVI 19.0 34.2##a person standing in a kitchen takes off a sweatshirt.\n28BVI 19.0 34.2##person they eat a plate of food.\nHAPCT 5.8 19.1##person continues to laugh.\nHAPCT 5.8 19.1##person laughs at the television program.\nHAPCT 8.6 16.0##person takes their shoes off.\nHAPCT 5.8 19.1##person starts laughing.\nU5RYN 0.0 2.8##a young person turns on the lights.\nU5RYN 0.0 2.8##person turns on the light.\nU5RYN 0.0 4.0##person they are smiling.\nDUZDL 1.4 6.4##person throws off their blanket.\nDUZDL 6.5 12.9##person opens closet door.\nDUZDL 2.6 8.4##person after awakening.\nDUZDL 6.5 11.9##person opens the doors.\n580G0 14.8 22.0##person put on their shoes.\n580G0 6.6 14.7##person drinks from a cup.\n580G0 14.8 22.0##person puts on a pair of shoes.\n580G0 14.8 22.0##person puts their shoes on.\n580G0 6.6 14.7##person drink some water with the glass.\n580G0 0.0 4.1##a person awakens in bed.\nS2S7I 2.2 10.1##person puts a plastic bag on the table.\nS2S7I 5.2 9.9##person puts a bag of groceries down on the table.\nJP5NM 0.5 9.5##a person is standing in an entryway undressing.\nJP5NM 6.2 14.2##the person takes a blanket from the couch.\nLQC89 12.4 20.0##person eating from a plate.\nJ662Y 0.0 9.7##a person finishes eating some food off a small plate.\nJ662Y 0.0 9.7##person eats from a bowl.\nJ662Y 0.0 9.2##a person sits on a chair.\nDD3Q1 0.0 4.3##person sitting on the couch.\nARWNX 5.2 11.5##a person is in the kitchen putting a box down.\n6XB10 0.0 9.0##person walk out the doorway.\n6XB10 26.9 36.5##person they begin sneezing.\n6XB10 0.0 9.0##a person walks through a doorway into a room.\nF66WG 18.7 30.3##person began to eat something in hand.\nF66WG 9.0 19.0##person holding a camera in the bathroom.\nF66WG 4.5 11.9##a person opens a door.\nF66WG 18.7 30.3##person eats in a doorway.\nF66WG 1.0 14.0##a person holding shoes enters a bathroom.\nF66WG 18.7 30.3##a person eats.\nF66WG 18.7 30.3##person stand in the doorway eating something.\nF66WG 8.6 14.8##person they put their shoes on the ground.\nF66WG 8.6 14.8##person goes into the bathroom put shoes on the floor.\nCIUVA 52.1 55.0##the person puts a dish into the strainer.\nCIUVA 46.5 55.0##person opened the refrigerator.\nATCOR 19.7 25.8##person turning off the light.\nATCOR 19.7 25.8##person gets up to turn off the light.\n9KDP0 22.9 31.0##person puts down the laptop.\n9KDP0 0.0 7.0##a person runs into the laundry room.\n9KDP0 4.5 18.3##person looks at the book.\nV26U3 5.1 10.6##person throws a pillow at the refrigerator.\nV26U3 5.1 10.6##a person is throwing a pillow at the refrigerator.\nV26U3 5.1 10.6##person throws a pillow at a refrigerator.\nNKLTK 15.4 26.2##person run to a window.\nNKLTK 15.4 26.2##person runs over to a window.\nNKLTK 7.4 19.7##a person awakens in a chair.\nNKLTK 15.4 26.2##the person runs over to the window.\nPLJIZ 3.2 13.4##person opens the door.\nUOZES 31.2 37.0##person looking out the window.\nUOZES 13.3 25.7##a person awakens.\nUOZES 26.3 32.3##the person laughs.\nUOZES 28.3 35.6##person closes their laptop.\nUOZES 31.2 37.0##person looks out the window.\nLLRKS 0.5 9.2##a person pours a cup of coffee.\nPAS7F 15.9 22.6##person sits down on the couch.\nWISO0 1.9 8.6##as the person was sneezing.\nGOPZI 28.5 33.0##a smiling person is putting a laptop in a bag.\nGOPZI 27.1 33.0##person start laughing.\nEHIOY 21.8 36.0##person eats a sandwich.\nEHIOY 21.8 36.0##person eats a plate of food.\nEHIOY 21.8 36.0##person start eating.\n8LVCL 0.0 10.2##a person is undressing in the closet.\nTIWRY 18.2 27.0##person they wash the glass.\nTIWRY 20.0 27.0##person begins to wash dishes.\nWK9HE 28.7 35.0##person play a game on their phone.\nY8L60 0.0 4.1##a person opens a small cabinet door.\nOU3XH 19.2 24.5##person eating some food.\nOU3XH 16.6 25.6##person takes a bite of food.\nOU3XH 14.0 18.7##the person puts the camera down.\nOU3XH 19.2 24.5##person eats some food off a plate.\n8N4O9 1.4 7.4##person leaves the closet with the door still open.\n8N4O9 1.4 7.4##person opens the door.\n8N4O9 11.3 17.7##person takes some towels out.\n8N4O9 6.3 10.8##person turns on the light.\n8N4O9 19.5 23.0##person turns off the light.\n8N4O9 1.4 7.4##the person opens the cabinet door.\n8N4O9 19.5 23.0##person turns the light off.\n8N4O9 6.3 10.8##a person turns on a light.\n8N4O9 6.3 10.8##person turning on the light.\n8N4O9 1.4 7.4##person opens a door.\n83FK5 0.0 19.3##a person is snuggling with a pillow.\nLBJ0W 0.0 14.1##a person sitting on a bed takes off their shoes.\nLBJ0W 9.4 14.1##a person throws their shoes by their desk.\n35ZZP 6.7 12.4##the person puts the food on the table.\n77JGY 19.1 24.6##person they stand up.\n77JGY 0.0 13.9##person eats some food.\n77JGY 11.4 22.0##person puts the sandwich down.\n77JGY 0.0 13.9##a person is eating a sandwich over their laptop.\n77JGY 22.2 32.0##person take a picture of themself.\n77JGY 17.8 22.8##the person puts the food down on the table.\n77JGY 0.0 13.9##the person is sitting at a desk eating a sandwich.\nZ9RED 0.0 5.7##a person walks through a bathroom doorway.\nG6K7T 19.3 37.5##person starts washing clothes.\nJ1MMG 20.9 29.4##person they stand up.\nJ1MMG 30.5 36.0##person put it back on the shelf.\n2XXH8 10.8 25.0##person probably washes hands.\nG3UF4 3.2 8.4##a person opens a book.\nMZZ8Q 0.0 5.0##a person puts something on a shelf.\nMZZ8Q 3.8 10.9##person takes off his shoes.\nMZZ8Q 9.7 16.7##person throws a pair of shoes toward a sofa.\nMZZ8Q 3.8 10.9##person takes off their shoes.\nKF08J 3.3 10.4##person sneezing multiple times.\nKF08J 3.3 10.4##person starts sneezing profusely.\n3J85M 19.3 28.8##person eat them.\n3J85M 19.3 28.8##person eat the food.\n3J85M 19.5 27.6##person next eating a sandwich in the pantry.\n3J85M 19.3 28.8##person eating  the snack.\n3J85M 7.2 15.3##person take out some food.\nGKBSR 0.0 2.7##person opens the door.\nQ5YDL 0.0 16.5##person playing a game on a laptop.\nQ5YDL 20.1 37.3##this person eats from a bowl.\nQ5YDL 20.1 37.3##person start eating potato chips.\nRT1JY 11.4 15.8##person sits on the bed.\nRT1JY 11.4 15.8##person sit on a bed.\nRT1JY 3.3 8.7##a person is in a bedroom undressing by the doorway.\nU0P7W 22.0 29.7##person puts the picture inside.\nU0P7W 18.8 24.9##person opens the cabinet.\nU0P7W 18.8 24.9##the person opens a cabinet.\n9TPP3 0.0 8.4##person drinking a cup of coffee.\nTBEV0 0.0 9.6##a person is undressing.\nTBEV0 16.3 31.0##person snuggle with a pillow.\nQLGHA 3.3 10.0##a smiling person is putting a broom in the pantry.\n4KYZH 9.4 14.8##person continuing to eat.\n4KYZH 9.4 14.8##person starts to eat it.\n4KYZH 9.4 14.8##person grabs something to eat.\n4KYZH 0.0 4.2##a person opens a refrigerator.\nTK1VC 17.1 21.0##person sits down on the couch.\nTK1VC 0.0 9.4##person starts sneezing.\nTK1VC 17.1 21.0##person sits on the couch.\nTK1VC 0.0 9.4##a person standing in a living room area begins sneezing.\nTK1VC 10.9 16.0##the person takes a broom.\nTK1VC 10.8 18.4##person take a book from it.\n52KNA 15.8 20.7##the person puts the towel down.\nSE2K2 0.6 7.1##a person opens the door to the kitchen.\nSE2K2 28.7 34.0##person sits in the floor smiling.\nLCLLN 0.0 5.1##one person takes a glass from a shelf.\nLCLLN 1.4 6.9##person drinking some water from a glass.\nLCLLN 5.5 11.9##person takes a blanket from somewhere.\nRNLTR 7.3 13.5##person throwing their clothes on the sofa.\nSS3IL 8.4 13.4##the person takes out their phone.\nSS3IL 1.8 9.3##person they put the dishes down.\nSS3IL 8.4 13.4##person take out their phone.\nG6ZOB 7.0 14.9##person closing the door to the entryway.\nG6ZOB 13.9 22.4##person turns on the light.\nG6ZOB 13.9 22.4##person turns on a light.\nSRTX6 13.6 26.4##person takes the food to the kitchen.\nXOWBN 6.7 13.6##a person puts a sandwich onto a table.\nSOZ1G 9.0 13.0##the person starts to stand up.\nSOZ1G 9.0 13.0##person is lying in bed undressing.\nAK9PN 25.2 32.0##person sit on the sofa.\nAK9PN 0.0 13.3##the person is holding a vacuum.\nAK9PN 25.2 32.0##person sits on a couch.\nAK9PN 18.3 27.4##person starts sneezing 2 times.\nAK9PN 4.7 10.2##person opens a closet door.\nJ0AMJ 10.6 20.2##the person takes a book.\nJ0AMJ 7.9 18.3##the person opens a bag on the bed.\nJ0AMJ 4.0 8.8##person takes a bag.\n8LLI3 11.7 16.8##person closes the cabinet door.\n8LLI3 3.0 8.5##person takes a picture of food with their camera.\n8LLI3 14.6 19.3##person closes the cabinets.\n8LLI3 11.7 16.8##person closing the door behind them.\n8LLI3 9.0 14.1##person puts it back on the shelf.\nCG83G 16.5 22.6##next the person puts the blanket down on the sofa.\nCG83G 16.5 22.6##a person puts a blanket on a chair.\nVFAE3 35.0 41.0##which the person is putting onto a shelf.\nVFAE3 0.0 5.2##person a girl walks past his doorway.\nVFAE3 0.6 7.0##a person is closing the door.\nVFAE3 0.6 7.0##person closes the door with her hand on the knob.\n2PZBY 0.1 12.1##person opens the door.\nDFSHF 5.5 12.8##a person puts food in the pantry.\nDFSHF 10.0 17.4##person they open the door.\nTCJWE 0.0 14.9##person another cooks on the kitchen counter.\nIULK6 3.9 9.5##a person opens a book with a notepad in it.\nIULK6 0.0 7.1##person takes homework out of the book.\nIULK6 0.0 14.5##a person holds a book next to a chair.\nOWUW8 0.5 5.0##person throws it on the floor.\nOWUW8 0.5 5.0##person throws it down to the floor.\nOWUW8 0.0 3.9##person holds another towel.\n7RA0M 0.0 10.7##person holding a laptop.\nCUQYX 4.7 17.8##person they take off their shoes.\nCUQYX 24.3 30.0##person they put their shoes in a bag.\nCUQYX 23.4 32.0##person throw the bag against the wall softly.\nCUQYX 23.4 32.0##person throw the bag.\nCUQYX 24.3 30.0##person put them in a bag.\nCUQYX 4.7 17.8##person take off their shoes.\nFLDHS 5.4 12.8##person are putting stuff in a box.\nFLDHS 5.4 12.8##person puts it in a box.\nOKHVL 13.2 18.8##person eats a sandwich.\nOKHVL 18.6 25.2##person glass of soft drinks.\nOKHVL 11.2 17.2##person take a bite of a sandwich.\nOKHVL 18.6 25.2##person drink from the glass.\nJ2XFQ 16.0 21.5##person proceeds to open the refrigerator.\nJ2XFQ 18.7 30.0##person eat a sandwich.\nJ2XFQ 16.1 21.8##person opening the fridge door.\nJ2XFQ 16.1 21.8##person opens the door.\nJ2XFQ 17.2 22.5##the person takes a sandwich from the refrigerator.\nJ2XFQ 19.3 30.0##person grabbing something to eat.\nJ2XFQ 16.0 21.5##person open the refrigerator.\nJ2XFQ 19.3 30.0##person eats it.\n98W87 10.2 15.4##person takes a sandwich from a plate.\n8Q7ZI 0.0 3.9##a person drinks from a cup.\n1BGZ0 9.5 15.2##person went out of the room closing the door.\n1BGZ0 9.5 15.2##person closes the door.\n1BGZ0 0.0 9.2##a person runs into their entryway holding a bag.\n1BGZ0 4.2 9.4##the person opens the door.\n1BGZ0 4.2 9.4##person shoe,ran out of the room opening the door.\n1BGZ0 0.0 6.2##a man runs in with a bag of groceries.\n1BGZ0 4.2 9.4##person they open the door.\n1BGZ0 0.0 6.2##person they run to the door.\n1BGZ0 0.0 9.2##a person is holding a bag.\nYO3KO 22.3 30.9##person opens the door to walk out.\nYO3KO 22.3 30.9##person opening the door.\nEOUCM 0.0 10.2##a person is holding a box.\nEOUCM 6.2 15.9##person closed the box.\nEOUCM 0.0 8.9##person put the mirror in the box.\nEOUCM 0.0 8.9##the person puts the mirror in the box.\nEOUCM 0.0 8.9##person puts the mirror in the box.\nW86WR 0.0 2.6##a person sits on the living room sofa.\nW86WR 0.0 2.6##a person is sitting on a couch.\nNF45F 4.0 8.9##person turns the lights on.\nNF45F 8.7 25.6##person starts undressing.\nNF45F 4.0 8.9##person turns on the light.\nNF45F 4.0 8.9##a person turns in the light.\nNF45F 4.0 8.9##a person turns on the light.\n2AIP4 25.8 36.3##person takes some medicine out of the bottle.\n2AIP4 36.3 46.0##person go turn off the light.\n2AIP4 2.0 6.3##person takes pills out of a bottle.\n2AIP4 6.5 17.2##the person pours themselves a glass of water.\n3MX8V 8.7 17.6##a person is throwing a blanket.\n3MX8V 4.0 14.3##person putting the blanket on a shelf.\n3MX8V 0.0 5.5##the person throws a sweater on the floor.\nAT9UV 26.0 36.0##person begins to watch television.\nAT9UV 27.2 36.0##person begin to sit on the couch.\nTCOXG 21.3 31.0##person sits down on the sofa.\nTCOXG 21.3 31.0##person sits down on a couch.\nTCOXG 9.0 15.2##a person takes a glass of water from the shelf.\nTCOXG 9.0 15.2##person takes a sip of water from a glass.\nL8RW8 0.0 3.5##the person is undressing in front of a sink.\nL8RW8 0.0 3.5##a person undresses.\nK64GM 11.0 15.8##the person put the camera around their neck.\nVXZBA 20.3 25.9##person begins laughing.\nVXZBA 17.0 28.1##a person walking slowly through a room smiling.\n0O6RK 0.6 7.4##a person opens a refrigerator door.\n0O6RK 22.9 31.0##person cooks food on the stove.\n0O6RK 17.0 23.6##person closing the refrigerator door.\n0O6RK 22.9 31.0##person starts cooking on a stove.\n0O6RK 17.0 23.6##the person closes the door.\n0O6RK 2.8 17.7##person fixes a light.\n0O6RK 22.9 31.0##person cooking their food.\n0O6RK 12.5 17.6##a person puts a light inside of a refrigerator.\nL3ZRP 5.0 15.8##person they are eating a snack.\nL3ZRP 5.0 15.8##the person eats some piece of food.\n358JF 18.8 28.9##the person drinks some water from a glass.\n358JF 18.0 24.7##the person takes a glass of water from nearby.\n02SKC 3.5 8.8##a smiling person snuggles a blanket on their bed.\n02SKC 20.5 33.0##person puts it in a bag.\nLSMNX 5.1 13.6##person dresses self quickly.\nP8G8V 3.8 11.4##person drinking from a cup.\nP8G8V 3.8 11.4##person they casually drink a cup of coffee.\nP8G8V 3.8 11.4##person drinking a cup of coffee.\nJQRMQ 5.9 11.1##a person opens a door.\nJQRMQ 5.8 19.2##person turns on the light.\nJQRMQ 10.8 21.8##person they take a box from a shelf.\nJQRMQ 5.8 19.2##person turns on a light.\nJQRMQ 5.9 11.1##the person opens the door.\nVJG6E 3.0 10.0##person puts a blanket over a chair.\nVJG6E 0.0 5.0##a person runs into the recreation room.\nVJG6E 13.1 18.0##person begins to work on his laptop computer.\nVJG6E 0.0 7.0##the person is holding blankets.\nOPSF8 0.0 10.1##a person sitting at a desk eating some food.\nOPSF8 5.8 16.7##person drinking from a coffee cup.\nOPSF8 0.0 10.1##a person eats some food.\nOPSF8 0.0 10.1##a person is eating at their desk.\nHVFXT 26.8 32.8##person closes the door.\nQIT2W 35.2 44.0##person start reading a book.\nQIT2W 9.9 22.8##person eating from a bowl.\nQIT2W 0.0 14.1##person playing on their laptop.\nQIT2W 9.9 22.8##person eating food.\nQIT2W 9.7 15.9##person a takes spoonful of the food made for lunch.\nZI1GC 0.0 10.2##a person sits down at a table.\nZI1GC 6.4 10.4##person sit in the chair.\nZI1GC 11.1 16.3##person opening the door.\n4BEZX 39.6 44.0##person sit down in a chair.\n4BEZX 39.6 44.0##person they sit down in a chair.\n4BEZX 0.0 4.0##a person opens the front door that leads outside.\n4BEZX 0.0 4.0##a person opens the door.\n4BEZX 0.0 4.0##person opening a door.\n4BEZX 15.8 24.3##the person closes the door.\n4BEZX 15.8 24.3##person closes the door.\n4BEZX 39.6 44.0##the person sits down in a chair.\n4BEZX 39.6 44.0##person eventually sitting in a chair.\n4BEZX 0.0 4.0##a person opens the door outside.\nVNUPE 17.4 25.7##there is a person cooking something on the stove.\nVZE8E 18.8 27.0##person getting dressed.\nVZE8E 0.0 3.8##a person awakens.\nVZE8E 3.5 8.7##person throws his pillow.\nVZE8E 3.1 8.5##person takes their head off a pillow.\nVZE8E 11.6 18.5##person opens up a door.\nVZE8E 11.6 18.5##person open the door walk back in.\nVZE8E 7.9 15.5##person opening the closet door.\nNYHD7 22.4 27.2##the person puts the phone away.\nSM41Q 0.0 6.4##a person is sitting at a table reading something.\nSM41Q 3.7 13.0##person takes a laptop.\nVS7VS 15.7 23.4##laughing in a mischievous manner.\nO1LMX 11.5 18.8##person opens up the laptop.\nO1LMX 8.4 14.2##the person puts the book away.\nO1LMX 1.9 14.3##a person holds a book.\nO1LMX 11.5 18.8##person opens the laptop up.\nO1LMX 2.1 14.2##the person looks at the book.\n7177T 14.9 20.3##person turn on the light.\n7177T 14.9 20.3##person turned on the closet light.\n7177T 9.8 18.2##person opening the door.\n00T1E 0.7 6.3##person close the laptop.\n00T1E 4.3 12.0##person puts on shoes.\n00T1E 4.3 12.0##person put on a pair of shoes.\n00T1E 4.3 12.0##person puts on their shoes.\nLSKA2 10.0 19.7##person they take the sandwich.\nUKSCV 0.0 11.4##a person is dressing in a hallway.\nUKSCV 7.7 23.5##a person is eating groceries.\nUKSCV 7.7 23.5##another person is standing behind him eating.\nUKSCV 0.0 11.4##person putting on a dress shirt.\nUKSCV 7.7 23.5##person eating something.\nUKSCV 0.0 11.4##another person is dressing.\nUKSCV 0.0 11.4##a person is getting dressed.\nUKSCV 7.7 23.5##another person is eating.\nCXNYW 16.6 27.0##person eating a sandwich.\nCXNYW 0.0 13.4##a person sits in a chair at the desk.\nCXNYW 17.6 27.1##a seated person wearing striped pants types on a keyboard.\n3XL0K 0.0 5.5##a person closes the cabinet.\n3XL0K 0.0 5.5##a person closes a cabinet door.\nO5V8D 0.0 5.9##person takes pictures of them-self on the steps.\nO5V8D 0.0 5.9##the person goes to take a picture of themselves.\nME4YL 10.5 17.0##person they open up their laptop.\nME4YL 2.7 11.2##tidying up,the person moves blanket.\nME4YL 10.5 17.0##person they open a laptop.\nME4YL 18.9 24.8##person put a book on top of the laptop.\nME4YL 18.9 24.8##person bring over a book over close to the computer.\nME4YL 10.5 17.0##person opens up s laptop.\n9OCQT 0.0 3.6##a person holds a box in front of a mirror.\n9OCQT 1.5 7.5##person puts the box down.\nZ4Y04 14.3 29.4##person opens the oven door.\nRG0KS 14.8 21.5##person they begin sneezing.\n65UVU 0.0 3.2##a person opens the door to the bedroom.\n65UVU 9.6 16.1##person takes another box from the same shelf.\n65UVU 4.2 16.0##a person puts a container on a top shelf.\nJZ45I 28.8 35.0##person open a box.\nJZ45I 6.9 16.5##person tilt their head back in laughter.\nJZ45I 6.9 16.5##person begin laughing.\nUL5X4 18.4 32.0##person takes a drink from a cup of coffee.\nUL5X4 0.0 7.0##person sitting on bed stands up.\nLKH9A 0.0 6.0##person turns on the light.\nLKH9A 23.0 29.2##person puts the book down.\nLKH9A 22.3 27.0##the person closes the book.\nLKH9A 6.4 11.9##person take a book off the top of the shelf.\nHDHGT 11.5 19.5##person sneezing twice.\nHDHGT 11.5 19.5##person sneezing on a shelf in the pantry.\nHDHGT 4.2 16.2##person opens the box.\nHDHGT 4.2 16.2##the person is opening a box of cereal.\nGH19N 25.8 29.0##person starts dressing.\nGH19N 25.8 29.0##this person puts the book down.\nGH19N 0.1 12.1##person is opening door to closet.\nGH19N 13.6 18.2##person puts homework on table.\nGH19N 1.7 9.5##a person opens a door holding a book.\nQFL2O 21.8 32.0##person laugh at it.\nQFL2O 20.7 32.0##person takes a phone.\nD9PWE 0.0 5.0##a person takes a vacuum.\nSJJLG 10.8 15.8##person sits in a chair.\nSJJLG 1.0 5.6##a person is opening a cabinet.\nSJJLG 10.8 15.8##person sits on a chair.\nSJJLG 1.0 5.6##a laughing person opens a cabinet in their kitchen.\nSJJLG 10.8 15.8##person sits down on a chair.\nSJJLG 9.7 15.2##person sits at a table in front of a laptop.\nSJJLG 1.0 5.6##a person opens a kitchen cabinet.\nAF8I2 9.2 14.6##a person laughs.\nXJE7I 2.9 9.6##a person opens the bathroom door using the doorknob.\nXJE7I 8.4 13.7##person they turn the light on.\nXJE7I 8.4 13.7##person they turn on the light.\nXJE7I 2.9 9.6##person opening the door.\nXJE7I 24.7 30.0##person close the door.\nXJE7I 20.2 27.9##person they take a bag form a counter.\nXJE7I 2.9 9.6##a person opens a door.\nXJE7I 20.2 27.9##person take a bag from the counter.\n4A28I 2.3 10.6##a person is smiling.\n4A28I 9.2 15.3##laughing a person holding a bag with medicine.\n4A28I 2.3 10.6##person smiling when they look around.\n6H78U 0.0 12.7##a person plays with a phone.\nCPM4M 0.0 4.8##a person opens the refrigerator.\nCPM4M 0.0 4.8##a person opens a refrigerator door.\nCPM4M 26.3 30.0##person they start eating the cereal.\nCPM4M 26.3 30.0##person starts eating from the bowl.\nCPM4M 26.1 30.0##person sit on the sofa.\nCPM4M 26.1 30.0##person sit on the couch.\nLRDW5 8.5 19.0##the person dressed in the sweater.\nLRDW5 0.3 7.1##a person opens a closet door.\nLRDW5 0.3 7.1##person opens a closet door.\nLRDW5 0.3 7.1##the person opened their closet.\nLRDW5 21.3 27.9##person left the room closing the door behind them.\nLRDW5 6.7 20.5##the person begins to put clothes on.\n0WYBK 1.8 8.8##person eating a sandwich.\n0WYBK 1.9 7.4##person eating some groceries.\n0WYBK 8.2 12.8##that same person puts the book down on the floor.\nNTXXB 16.9 26.9##person takes a picture.\nNTXXB 0.0 10.9##person looking out a window.\nNTXXB 11.0 17.5##person takes out a camera.\nNTXXB 0.0 10.9##person watched out of the window.\nNTXXB 0.0 10.9##person watching something out the window.\nJOMFO 15.0 20.1##the person throws the blanket out of camera view.\nJOMFO 15.0 20.1##a person is throwing a blanket.\n1GGRY 0.8 6.1##a person opens a pantry door.\n1GGRY 8.9 14.3##person closed the closet door.\nBEJVY 6.8 12.1##the person takes a laptop.\nBEJVY 2.4 8.1##a person is eating food in the man cave.\nEJZZZ 2.4 10.7##person dressing themselves.\n62AC0 0.0 4.1##a seated person looks out a window.\nSLAH4 0.0 3.9##a person is holding a doorknob.\nSLAH4 10.0 15.3##person turn off the light.\nJDZV7 0.0 9.8##person washing hands at sink.\nJDZV7 0.0 9.8##a person washes their hands in the bathroom sink.\nJDZV7 25.2 30.9##person closing a cabinet door.\nJDZV7 22.7 32.0##person opens a cabinet door.\nJDZV7 0.0 9.8##a person washes their hands in the sink.\n1GII3 18.7 25.0##person begins to eat it.\n1GII3 18.7 25.0##person begins eating it.\n1GII3 18.7 25.0##person eating a bag of chips.\nUD0P0 1.1 6.1##person drinking the entire cup.\nUD0P0 17.5 25.8##one person uses a camera to take a picture.\nYNF6O 0.0 6.0##that same person puts clothes.\nT8VDU 17.1 27.6##a person is sitting in a chair watching tv.\nT8VDU 9.8 21.5##person grabs a red drinking glass from the table.\n0TKKR 30.7 41.5##person drinks a glass of water.\n0TKKR 0.0 18.8##a person is sitting on a couch watching tv.\n0TKKR 34.9 45.0##person eating a sandwich.\n0TKKR 30.7 41.5##person they pour a drink in a glass.\n0TKKR 34.9 45.0##a person eats a sandwich on the couch.\n0TKKR 0.0 18.8##a person is sitting on the couch watching television.\n17P5V 11.5 19.0##person puts the laptop on a love seat.\n17P5V 6.7 16.4##person closes the laptop.\n15PMU 0.9 12.4##person looking out the window.\n15PMU 0.9 12.4##person looking out of a window.\n15PMU 0.5 12.8##the person undressed.\n15PMU 0.5 12.8##a person is undressing.\n15PMU 21.4 32.0##person drinks something from the cup.\nFMZOY 35.0 41.1##person opens the door.\n9AC1T 0.0 4.8##a person sits down reading a book.\n9AC1T 0.0 4.8##a person sits at a table reading a book intensely.\nGGN5G 0.0 9.0##a person opens up the cabinet.\n2UQKZ 19.3 24.7##person takes a blanket.\n2UQKZ 6.0 22.8##person fixes their hair.\nW1CG2 5.0 16.8##the person is eating food.\nW1CG2 12.4 17.6##the person puts the food on the desk.\nW1CG2 13.4 19.1##person puts their leg up on a table.\nJHB0M 0.0 6.2##a person is sitting at a table eating a sandwich.\nJHB0M 0.0 6.2##person eating some groceries.\nJHB0M 0.0 6.2##a person is sitting at a table eating.\nJHB0M 0.0 6.2##person starts to eat it.\nJHB0M 7.7 14.9##person begins pouring something from a very small bottle.\nJHB0M 7.7 14.9##person pours medicine in a cup.\nNQMMJ 26.8 34.9##person closes the cabinet door.\nNQMMJ 26.8 34.9##person closing the doors.\nEXYY8 0.0 7.0##a person runs into the closet holding a laptop.\nEXYY8 14.1 20.0##person closing the door behind them.\nNAZ52 21.3 27.2##person he closed the box.\nNAZ52 5.4 15.7##person puts the box onto a shelf.\nNAZ52 21.3 27.2##person closes the box.\nNAZ52 0.0 6.1##person a teenager opened a box.\nNAZ52 0.0 6.1##person opens a box.\nNAZ52 23.8 33.0##person laughing as they go through a box.\nBDZNW 28.7 34.0##person closing the door to it behind them.\nBDZNW 28.7 34.0##person closing the door.\nZJRCS 4.9 20.2##person closes a window.\nZJRCS 11.1 21.9##person laughing with a phone in hand.\nN0ODO 9.2 16.8##another person opens the door.\nN0ODO 14.9 21.1##the first person closes the door.\nN0ODO 9.2 16.8##another person opens the bathroom door.\nFQOGZ 17.5 23.7##person putting the food on the table.\nFQOGZ 23.6 29.5##person takes something with a glass of water.\nFQOGZ 17.5 23.7##a person puts food into a bowl for a cat.\nFQOGZ 10.1 17.1##the person begins sneezing.\nIEQWT 2.1 8.9##person opens the door a few inches.\nIEQWT 2.1 8.9##opening the door all the way the person turns around.\nX817Z 0.0 14.1##a person is sitting on the sofa holding a book.\nX817Z 9.2 14.1##person putting the book aside.\nX817Z 0.0 7.7##a person who is siting on bed with book.\nRG0JH 0.0 8.1##a person sits on the bed.\nRG0JH 0.0 8.1##a person is sitting on the bed.\nRG0JH 0.0 8.1##a man sitting on a bed.\nVF49P 2.8 10.1##a person is throwing a pillow towards the window.\nHQ8ZM 16.0 21.0##the person puts their phone away.\nXHYA2 16.1 21.5##the person throws the shoes behind the door.\nXHYA2 12.7 18.1##person put their coffee cup on a dresser.\nXHYA2 20.9 32.0##person sits down on the bed.\nXHYA2 16.1 21.5##person they throw their shoes behind the door.\nXHYA2 16.1 21.5##the person throws their shoes down by the door.\nXHYA2 20.9 32.0##person they sit on the bed.\n1W6ZK 0.0 5.5##a person opens a door.\n1W6ZK 7.7 17.5##person stand in the doorway undressing.\n1W6ZK 20.1 25.2##person they put their clothes in a box.\n1W6ZK 0.8 9.7##person walks through the doorway.\n1W6ZK 0.0 5.5##person they open the door.\nVXEXI 17.8 32.0##another person is smiling at a cup of coffee.\nVXEXI 15.0 23.8##a person is sneezing on a book.\n1BBIY 17.6 23.3##person opens the door.\n1BBIY 19.6 24.9##person take a picture from a shelf.\n1BBIY 2.2 12.6##person closes the door.\n93REJ 3.4 10.5##person drinking from a cup.\nKJRR9 2.4 9.2##a person opens a door.\nKJRR9 2.4 9.2##person is opening a door.\nKJRR9 6.4 11.2##person turning light on.\nKJRR9 6.4 11.2##person turns on a light.\nKJRR9 6.4 11.2##the person turns on the light.\n9M48H 0.0 8.7##person puts a phone down on the counter.\n9M48H 0.0 8.7##a person puts their phone on the kitchen counter.\n9M48H 0.0 8.7##person puts their phone down.\nWX8N8 6.8 21.2##the person begins undressing.\nI7GZI 0.0 5.9##person a girl runs into the room.\nI7GZI 0.0 5.9##person she runs out of the room.\nI7GZI 0.0 5.9##a person is running towards a chair.\nNATEB 13.7 19.9##person closing a door.\nNATEB 13.7 19.9##the person closes doors to a large cupboard.\nNATEB 15.6 22.2##person reopens one of the doors.\nIBWAW 17.5 23.3##person puts the cup on a table.\nIBWAW 17.5 23.3##person drank from the glass,put the glass down.\nIBWAW 21.0 26.5##takes a box from the other person.\nIBWAW 1.4 9.4##person he eats something out of his hand.\nIBWAW 1.4 9.4##a person is eating a snack.\nA1BS2 14.0 20.1##person they open a cabinet.\nA1BS2 14.9 20.6##person opens the door.\nA1BS2 14.0 20.1##person opened a cabinet door.\nMFGLZ 18.7 30.4##person opens bag.\nMFGLZ 0.0 8.6##a person awakens in their home office.\nQN7Y2 6.1 12.5##person opens up a cabinet.\nQN7Y2 6.1 12.5##one person opens a cabinet with a television.\n610PZ 0.2 7.9##person standing in the hall drinking out of a cup.\n6TC5G 12.3 17.5##the person throws a bag on the closet floor.\n6TC5G 12.3 17.5##person throws the rest on the floor below them.\n6TC5G 14.0 18.0##person laughs as they turn off the light.\n6TC5G 14.0 18.0##person shuts off the light.\n6TC5G 14.0 18.0##the person turns off the light.\n6TC5G 11.9 17.2##a person puts some clothes onto some clothing racks.\nXZ2WT 15.8 29.6##person snuggles a blanket found inside.\n6OQYV 10.8 16.0##person turning the light off.\n6OQYV 0.0 4.3##a person runs into the laundry room.\n6OQYV 0.0 4.3##person runs back out.\n6OQYV 5.5 13.2##a person is adding clothes to a washing machine.\n6OQYV 5.3 12.2##person wards they open a cabinet.\nCEZ4D 17.9 27.2##a person is undressing under a blanket.\nCEZ4D 27.8 35.0##person holding a broom on the stairs.\nF75LG 17.1 26.3##person they start drinking from a glass of water.\nAYSTI 17.7 31.0##a person sits in a semi-reclining position on a bed.\nFQGW4 5.4 10.2##person put the cup.\nFQGW4 10.6 17.9##person they begin carefully pouring the beverage into the cup.\nFQGW4 10.6 17.9##person pouring a glass of milk.\nFQGW4 17.1 23.0##person watch television.\nFQGW4 19.9 25.4##person sits down in a chair to watch tv.\nFQGW4 10.6 17.9##person pours a glass of milk.\nFQGW4 19.9 25.4##person sits down in a chair to take a drink.\nHH1R7 14.5 26.2##person starts sneezing furiously.\n0PVKV 20.1 25.1##person wards they take a bite of their sandwich.\n0PVKV 8.1 15.5##person begins eating it.\n0PVKV 20.1 25.1##person takes a sandwich of the dresser.\n0PVKV 8.1 15.5##person starts eating it.\nT42A2 23.7 30.5##person walking across the room to open a cabinet door.\nW8P6Q 0.4 15.4##person sits in a chair.\nW8P6Q 0.4 15.4##the person sits in a chair.\nQF1Y0 10.4 18.7##another person opens the door.\nQF1Y0 10.4 18.7##person is opening door with bag.\nQF1Y0 13.1 24.7##person holding a bag.\n0DD62 0.0 7.9##the person looks back down at the picture.\nLCA0Q 7.5 12.1##person they put their laptop next to the sink.\nTU9K1 34.1 40.8##person close the closet door.\nTU9K1 1.1 9.4##a person is sneezing into a mirror.\nTU9K1 15.9 35.4##person tidying clothes.\nEK5K1 19.5 36.4##the person takes a lollipop from a box.\nEK5K1 39.9 44.0##person start sneezing.\nEK5K1 21.2 36.8##person opens a box.\nEDSUD 19.8 24.5##a person throws their shoes on the hallway floor.\n7KW31 0.0 3.4##person holding a broom.\nG2QBV 15.5 20.2##the person takes a water bottle.\nG2QBV 11.3 19.9##a person throws a broom into the corner.\nG2QBV 0.0 7.1##person closes a door.\nG2QBV 0.0 7.1##person dust pan they close the door.\nG2QBV 11.3 19.9##person throws the broom in a corner.\nG2QBV 0.0 7.1##a person closes a front door.\n3IAPG 24.5 27.0##person puts clothes in a bag.\n6B2FN 0.0 6.2##person fixing his hair.\n6B2FN 1.2 7.2##person smiling as they look in the mirror.\nMZ3I3 17.8 31.2##person talking on their phone.\nMZ3I3 33.1 44.0##person drinks out of a cup.\nMZ3I3 0.0 12.9##person begins to undress.\nMZ3I3 33.1 44.0##person takes a drink from a cup.\nMZ3I3 17.8 31.2##person starts talking on the phone.\nMZ3I3 17.8 31.2##person talks on a cell phone.\nMZ3I3 0.0 12.9##a person is in the hallway undressing.\nM6ERH 19.9 32.3##person proceeds to eat out the jar just.\nV6H2O 3.5 10.5##a smiling person runs into their garage holding a phone.\nV6H2O 8.1 14.5##person drinks from a glass.\nV6H2O 0.0 3.5##person open the door.\nC6INR 14.2 19.4##person take a picture with a camera.\n2U3X0 0.0 6.7##a man is holding some food.\n2U3X0 24.9 30.0##person brings a seat with him.\n2U3X0 2.8 7.0##person turned on a light.\n2U3X0 0.0 5.9##a person opened a door.\n2U3X0 24.9 30.0##person began eating.\n14HG1 16.1 21.7##person sits on the floor.\n0A8CF 25.5 33.0##person drinks from a glass of water.\n0A8CF 24.9 33.0##person takes a glass from somewhere.\nQBUAT 0.0 9.7##a person is undressing in the bedroom.\nQBUAT 17.7 30.3##person begins dressing in pajamas.\nQBUAT 8.6 15.8##the person takes a blanket from the cabinet.\nQBUAT 0.0 9.7##person begins to undress.\n48XER 9.8 15.7##the person closes the cabinet.\n48XER 12.3 16.9##the person takes a towel from the counter.\n48XER 0.0 15.0##a person begins tidying a cabinet.\nKK7D4 0.0 6.0##a person opens a closet door.\nKK7D4 0.9 8.2##a person takes a towel.\nKK7D4 0.9 8.2##person takes out a towel.\n3LIGG 3.5 10.6##a person puts a broom down.\nEJFUA 13.1 21.0##person starts running around.\nEJFUA 13.1 21.0##person runs into the living room.\nEJFUA 13.1 21.0##person running in place.\n73ZXZ 7.5 12.8##person closes the cabinet.\n73ZXZ 8.1 13.0##person closes the door.\n73ZXZ 6.9 11.8##person puts the food away.\n73ZXZ 7.5 12.8##the person starts closing the cabinet.\nFAO7J 0.0 4.9##person laughing on a laptop.\nFAO7J 36.0 41.1##person turns the light off.\nFAO7J 37.3 43.6##person closes the door.\nFAO7J 37.3 43.6##person closing the door behind them.\nFAO7J 36.0 41.1##person leave the closet turning the light off.\nFAO7J 0.0 4.9##the person laughs at something on the laptop screen.\nCOFJV 8.6 17.5##the person eats food.\nCOFJV 0.0 4.1##the person is opening a bag.\nCOFJV 8.7 17.5##person starts eating a sandwich that was inside.\nBD9UN 17.4 29.6##another person is tidying some clothes.\nLPKPO 0.0 17.1##person grabs a plate that is sitting on the table.\nLPKPO 0.0 17.1##the person is sitting at the table.\nLPKPO 0.0 17.1##a person sitting in a chair at a table.\nLD6TD 0.0 9.4##person reading a book.\nLD6TD 5.4 10.3##a person awakens in their dining room holding a book.\nQD1U7 1.5 7.6##the person puts the sandwich on the table.\nLWRKS 3.3 11.8##person turns a light on.\nS444Y 6.3 11.7##person they take things from the bag.\nZSAQG 4.0 12.5##a person run by with shoes in hand.\nZSAQG 4.0 12.5##another person is running with shoes.\nZSAQG 4.0 12.5##another person runs across the room with shoes.\nFC2SK 3.8 10.9##another person opens the door.\nFC2SK 17.5 28.0##person he sit on the chair.\nFC2SK 5.8 12.9##person another awakens wrapped in a blanket.\nJKGTN 0.0 3.8##a person takes a pillow from the shelf.\nJKGTN 0.0 3.8##a person takes a  pillow of a shelf.\nJKGTN 0.0 3.8##a person takes a pillow down from a shelf.\n0LDN3 0.0 7.0##a person runs into the kitchen.\n0LDN3 5.0 10.0##the person opens the refrigerator.\n0LDN3 5.0 10.0##person opens the refrigerator.\n0LDN3 10.0 15.0##person close the refrigerator.\nPJUM0 9.6 21.6##person pours it into a glass.\nPJUM0 19.5 29.2##person drinks from the glass.\nPJUM0 1.7 9.2##person takes out a bottle of water.\nPJUM0 9.6 21.6##person pours the contents into a glass.\nPJUM0 0.0 6.1##a person opens a refrigerator.\n1TZK5 5.7 11.4##one person stands by the window eating food.\n83S5W 5.8 12.4##person closes the door behind them.\nTFWNO 19.5 25.0##person throwing a towel on the floor.\nTFWNO 11.7 22.6##person eats some food.\nTFWNO 11.7 22.6##person eating food from a plate with a fork.\nTFWNO 11.7 22.6##person they start eating some food.\nTFWNO 11.7 22.6##person eats from it.\nC6V75 26.5 32.7##person opens the door.\nBRBWJ 1.9 6.4##the person puts their clothes on the shelf as well.\n3OZUX 1.1 11.4##person #1 was washing a mirror on the wall.\nX11CU 4.0 13.4##person stands by the window looking out.\nX11CU 3.2 13.2##person another holding medicine opens a window.\nBRQBD 0.1 8.4##a person awakens in a bedroom.\nBRQBD 27.2 33.7##the person puts the picture away.\n7614L 14.6 27.0##person hold the broom between the their legs.\n7614L 0.0 5.4##the person puts the broom down.\nON2Z4 8.4 16.3##person they take out a blanket.\nON2Z4 6.9 12.0##person opens it  they trun the light on.\nON2Z4 8.4 16.3##person takes a blanket.\nON2Z4 1.0 8.3##a person opens the door to the closet.\nHQ8K2 2.8 9.9##person start sneezing as they reach for some dishes.\n4VX01 3.3 10.5##person they stand up.\n4VX01 24.1 31.0##person closes the door.\n4VX01 0.0 9.4##a person sits on the bathroom floor.\n4VX01 0.0 9.4##a person sits down on the floor.\n3Q92U 1.0 5.8##a person takes a pillow.\n4WVTC 0.0 7.1##the person is holding a laptop.\n4WVTC 0.0 4.6##person their laptop they close their laptop.\n4WVTC 2.5 10.1##person towel in hand put laptop down.\n4TX4N 0.0 6.8##another person is snuggling on a sofa eating a sandwich.\n4TX4N 0.0 6.8##person eating a sandwich.\n4TX4N 0.0 6.8##a person is sitting in a chair eating a sandwich.\n4TX4N 14.4 28.2##a person is awakening in the bed.\n999BP 2.1 7.7##person a girl takes a bag.\n999BP 24.4 31.2##person puts it on the table.\nAFUBX 7.6 14.2##a person is walking through a doorway.\nAFUBX 18.8 23.3##person turns off a light.\nAFUBX 18.8 23.3##person the shuts the light off.\nAFUBX 18.8 23.3##person turning off the light behind them.\nO8T6G 3.1 18.8##a person is smiling.\nO8T6G 0.0 10.6##person trying to open medicine from a bag.\nO8T6G 0.0 10.6##person sitting in a chair opening up a bag.\nNHH8N 4.7 13.8##person sits on a bed.\n7R0LB 10.7 18.2##a person is putting away dishes into a cabinet.\n7R0LB 6.5 11.0##person sneezing on it.\n7R0LB 8.2 19.1##person puts the food in the cabinet.\nRON2M 5.0 17.9##person leaves the closet holding the bag.\nRON2M 7.8 15.6##one person puts a book.\nRON2M 0.0 7.0##a person wearing a blue sweater opens a coat closet.\nDOYQE 19.2 28.4##the person stops cooking to drink from a cup.\nDOYQE 22.8 37.0##person they look at a picture.\nDOYQE 16.9 22.3##person takes a drink from a coffee cup.\n3VWSP 24.6 30.0##person they stand up.\nZPRJH 0.0 4.5##a person is sitting on a floor.\nZPRJH 12.4 18.4##person throws the book down.\nZPRJH 8.5 17.0##person looking at various books on a shelf.\nZPRJH 8.5 17.0##a person is looking at a book.\nZPRJH 0.0 4.5##person a guy stands up from sitting on the floor.\nWEW2E 1.5 5.8##person takes a blanket out of a bag.\nWEW2E 0.0 8.0##a person walks in the entryway holding a bag.\nK5NFS 2.7 9.4##person puts the white pillow on the bed.\nK5NFS 2.9 10.2##person throws their pillow aside.\nK5NFS 0.0 6.6##a person awakens on the floor of their study.\nK5NFS 9.9 15.4##the person begins tidying their clothes.\n4ZJXR 2.4 10.6##the same person opens a bag.\n44PFW 17.6 24.2##a person is opening the doorknob.\n44PFW 17.6 24.2##that same person opens a door.\n44PFW 17.6 24.2##person opens a door.\nTTVN5 0.0 13.5##a person is holding a camera.\nTTVN5 22.7 34.0##the person begins smiling.\nTTVN5 0.0 13.2##a person is playing on their phone.\nWKVWF 2.4 9.6##person holding a cup of water than drinks from it.\nWKVWF 0.0 4.3##a person throws a book onto the sofa.\nWKVWF 0.0 4.3##person a girl throws a book onto a couch.\nWKVWF 2.4 9.6##the person takes a drink from a cup of coffee.\nWKVWF 19.7 30.0##person takes things out of a box.\nHBL9L 1.9 8.8##a person is sitting on the stairs eating a sandwich.\nHBL9L 1.9 8.8##person eating a sandwich.\nZ0DO7 20.1 24.7##person puts the cup down.\nLQ0FJ 23.6 34.0##person get dressed into something else.\nLQ0FJ 23.6 34.0##person they start undressing.\nGQ341 0.8 5.2##person pours a cup of coffee.\nGQ341 6.0 14.1##laughs as the person looks at photos loaded onto it.\nGQ341 0.8 5.2##the person pours a cup of coffee.\nPH5VU 18.7 28.0##a person is putting on clothes.\nPH5VU 27.9 33.5##person closes a cabinet.\nPH5VU 28.3 33.9##next the person closes the doors to the wardrobe.\n6E8GP 10.8 18.3##person opens a closet.\n6E8GP 1.6 8.4##the person is opening a box.\n6E8GP 10.8 18.3##person they open up their closet.\nU5T4M 12.4 21.0##person walked over to a chair to sit down.\nU5T4M 12.4 21.0##person sits in a chair.\nU5T4M 0.0 3.1##person opens refrigerator grabs milk.\nU5T4M 11.7 21.0##person starts eating it.\nU5T4M 0.0 3.1##a person opened a refrigerator.\nU5T4M 8.9 14.1##person closed the refrigerator door.\nU5T4M 11.7 21.0##person eats it.\nEYZXC 8.9 23.2##person pours a cup of coffee.\nEYZXC 6.4 11.1##a person sits at a table.\nEYZXC 20.3 32.3##person snuggling a blanket.\nONMCW 21.7 36.0##person holding the glass.\nONMCW 21.4 27.5##person takes a glass from the desk.\nWXXYY 28.0 36.0##person sits on the floor.\nWXXYY 7.0 19.3##person begins playing with their phone.\nWXXYY 7.0 19.3##person plays on his phone.\nWXXYY 7.0 19.3##person begins to play on his phone.\nWXXYY 4.4 11.4##person closes the door.\nWXXYY 28.4 36.0##person fixes the doorknob.\nWXXYY 28.4 36.0##person start fixing the doorknob.\n1B9DK 1.6 8.2##person the one holding a bag just watches.\n1B9DK 1.3 7.7##a second person runs in sees themselves in the mirror.\n1B9DK 0.0 5.9##a person opens door.\nPN1F2 5.2 17.1##person walking around drinking from glass.\nPN1F2 2.1 17.3##person is holding pillow.\nPN1F2 2.1 17.3##the person walked slowly down the hall holding a pillow.\nPN1F2 2.1 17.3##person holding a pillow.\n0F7LW 0.8 8.1##person opens a closet door.\n0F7LW 12.6 19.5##person takes down a toy laptop.\n0F7LW 25.0 31.0##person turns off the light.\n0F7LW 25.0 31.0##person turning off the light behind them.\n0F7LW 12.6 19.5##a person takes a laptop from a closet shelf.\n0F7LW 0.0 4.6##a person runs into the closet.\n0F7LW 12.6 19.5##person takes a laptop from the shelf.\nAKU63 0.6 10.7##a person lies sleeping on a bed.\nXYJYK 25.3 33.5##the person puts a towel around themself.\n3VH9O 5.7 14.7##person eating snack food.\n3VH9O 3.3 7.9##a person is laughing at the book.\n3VH9O 5.7 14.7##person eating from a box.\n3VH9O 5.7 14.7##person eating a snack out of a box.\n0J1BT 9.5 15.2##the person throws their clothes on the shelf.\n7R44Z 4.9 11.0##a person is putting clothes into a laundry machine.\n7R44Z 4.9 11.0##a person is putting clothes in a washing machine.\nE8JEJ 0.0 3.4##person they open the door multiple times.\nE8JEJ 16.2 22.7##person throw something to the floor.\nE8JEJ 4.5 9.3##person closes a door.\nD8FTI 1.4 7.0##person opens a cabinet.\nD8FTI 1.4 7.0##person open a cabinet.\n0HR01 1.0 13.7##a person opens a pantry door.\n4RT06 4.8 12.0##person takes out some food.\n4RT06 0.0 4.3##person turns on the light.\n4RT06 0.0 4.3##person turns on the lights.\n4RT06 0.0 2.6##person opens a refrigerator.\n4RT06 0.0 2.6##person opens the refrigerator.\n4RT06 4.8 12.0##person takes out food.\n4RT06 0.0 4.3##a person turns on the light.\n6FJBD 9.4 15.6##person looking at a laptop computer.\n6FJBD 9.4 15.6##the person puts down the laptop.\nS407A 13.2 21.4##person pouring water into a glass.\nS407A 2.8 7.4##person takes a drink from a bottle of water.\nS407A 13.2 21.4##person pouring a glass of water.\nHP3HV 14.3 18.6##person turns off their light.\nBLLCM 30.0 33.0##a person sits in a chair watching television.\n5GP8M 0.0 12.7##a person walking into a walk-in closet holding a phone.\nNO443 0.0 9.4##person looks out the window.\nUPT25 4.3 12.6##a person sits down on a couch.\nUPT25 4.3 12.6##person sit down on the sofa.\n72M7T 4.0 9.0##person runs in.\n72M7T 4.0 9.0##one person runs in.\n72M7T 4.0 9.0##open a mobile,then suddenly another person comes running.\n72M7T 0.0 5.1##the person is also playing with a phone.\n72M7T 14.0 18.0##person starts undressing.\nSROEU 0.0 5.1##person puts box in corner.\nSROEU 1.1 8.5##person open cabinet door.\nSROEU 1.1 8.5##person opens a cabinet door with a phone in hand.\nSROEU 0.0 5.1##a person puts a box in a doorway.\nN9KNS 5.8 18.7##one person is opening their bag.\nN9KNS 0.0 8.0##one person is holding a bag.\nKQDX6 17.0 25.0##person opens a door.\nKQDX6 4.0 10.1##person another walks by drinking something out of a cup.\nKQDX6 4.0 10.1##person slowly drinking a cup of coffee.\n7KHIH 7.4 12.0##person start running out of the closet.\nGM3UK 1.6 6.9##a person organizes a table by putting things away.\nGM3UK 18.4 24.0##a person is putting a camera on a shelf.\nEXW9K 26.1 33.0##person remember that they need to start cooking for dinner.\nRS6EK 6.5 15.7##person laughing at the doorway.\n9VF2C 14.5 19.5##the person quickly throws the blanket off of them.\n9VF2C 16.5 21.8##person runs out.\nWSKTN 0.0 5.0##person opens the cupboard door.\n32K2C 11.9 20.5##person reaching to fix hair.\nD6MZ4 0.7 10.2##person takes a drink from a glass.\nLG7WK 0.0 3.5##a person laying on a floor.\nLG7WK 0.0 3.5##person laying back down on the floor for a moment.\nLG7WK 0.0 3.5##a person lays on a floor.\n5NG6Q 10.9 22.2##person pours some more things into a cup.\n5NG6Q 10.5 14.9##person they finish cooking.\n5NG6Q 10.5 14.9##the person is cooking on the stove.\nMOTWW 3.5 7.8##the person puts the sandwich back down.\nLLE9B 1.4 9.0##person eating some food.\nLLE9B 1.4 9.0##the person begins eating a cookie.\nLLE9B 14.3 22.4##person closes a laptop screen.\nLLE9B 19.3 24.8##person using a laptop computer.\nLLE9B 19.3 24.8##person puts the laptop away.\nLLE9B 19.7 26.0##person puts it on a shelf.\nWM2J7 13.1 24.9##person he moves to a china cabinet to open it.\nWM2J7 0.0 9.0##a person is washing a window.\nWM2J7 0.0 9.0##person washing the window.\nWM2J7 20.4 31.0##person start tidying a cabinet.\nWM2J7 0.0 9.0##a person washes a window.\nGFJ98 9.4 17.4##a person is putting a picture on a wall.\nUEVVN 1.2 8.7##a person runs to the open window.\n1FX8Q 0.0 5.9##one person opens a bag.\nOWCJT 7.6 11.9##person drinking from a glass.\nBVDIM 22.6 29.2##person put the plate  down on the table.\nBVDIM 22.6 29.2##the person puts the dishes onto a table.\nOKIVH 25.8 32.0##a person is laughing in the mirror.\nOQ54Y 26.6 31.1##person sit down at a table.\nOQ54Y 0.0 4.9##person walks over to the refrigerator open it up.\nOQ54Y 0.0 4.9##a person opens a refrigerator door.\nOQ54Y 31.6 35.0##person pours some juice into a glass.\nOQ54Y 31.6 35.0##person they pour the milk into a glass.\n5I5E5 2.6 8.4##the person takes a tissue from a tissue box.\nGS3M4 0.9 7.9##person watching herself in the mirror.\nTYWHY 7.6 14.2##person closes the cabinet.\nTYWHY 11.3 16.6##person takes out a laptop computer.\nTYWHY 0.0 5.0##a person runs into a room gets into a desk.\nTYWHY 0.0 5.0##a person runs into their home office.\nTYWHY 0.0 5.0##a person runs into the room.\nTYWHY 1.2 9.2##person opens a cabinet.\nTYWHY 5.4 13.0##person takes their laptop from inside.\nTYWHY 5.4 13.0##a person takes a laptop from a drawer.\nTYWHY 11.9 21.7##person takes a laptop out the open the laptop.\nTYWHY 1.2 9.2##the person opens a cabinet.\nZBBOO 0.0 5.6##person drinking from a cup.\nXF2ZM 0.9 14.6##person begins undressing by taking their jacket off of them.\nXF2ZM 0.9 14.6##person where he begins to undress by removing his hoodie.\nOGLCO 4.2 14.0##person eating chips out of a bag.\nOGLCO 4.2 14.0##person eats food from a bag.\nOGLCO 4.2 14.0##this person eats food out of a bag.\nOGLCO 0.0 8.8##a person is working on a laptop.\nDAA3F 24.8 29.3##person begin to eat it.\nDAA3F 18.1 27.2##a person is awakening in the bedroom by the window.\nDAA3F 24.8 29.3##person began eating from it.\nDAA3F 18.1 27.2##a person covered with a blanket awakens in bed.\nDAA3F 11.5 17.4##person take some food.\nPRH15 1.8 7.1##a person is putting away cans of food.\nKOQGE 8.8 17.8##another person comes running throwing open the door.\n6IL0C 0.0 16.5##person putting books.\n6IL0C 0.0 16.5##a person puts some books onto a desk.\n6IL0C 14.6 25.1##person crouching on the floor to tidy her shoes.\nUYZKX 3.9 10.2##this person opened up their closet.\nX07QW 0.0 11.7##a person undresses by taking off a jacket.\nX07QW 22.2 28.0##person sits down on a couch.\nX07QW 11.7 19.8##next the person takes a blanket from a cabinet.\n81VSN 21.3 39.3##person walking through a doorway in the living room.\nOE243 7.4 13.0##the person puts a box in a room.\nOE243 3.7 9.3##a person is walking up the stairs towards a doorway.\nOE243 13.3 20.9##the person puts some shoes in a closet.\nOE243 0.0 3.9##a person takes a box off some stairs.\nNX8X9 19.6 26.3##person they take a broom.\nNX8X9 17.1 23.6##person put it on a table.\nNX8X9 20.5 26.3##person stand up.\nNX8X9 13.8 18.2##person they close the book.\nLXLW4 28.2 38.0##person drinks from a cup.\n3JCEI 0.3 9.4##a person is smiling at their laptop.\n3JCEI 0.3 9.4##a person is laughing.\n3JCEI 9.6 17.8##person throw some clothes on the floor.\n3JCEI 0.3 9.4##a person sits at a table laughing at a laptop.\n3JCEI 9.0 17.5##person throws things on the floor from the table.\nQZZPS 0.0 12.8##person sitting on the couch wearing a sweater.\nQZZPS 0.0 12.8##a person is seen sitting on a couch.\nQZZPS 8.0 12.8##person take some medicine.\nPSAVM 19.1 28.3##person sneezing in front of the sink.\nPSAVM 19.1 28.3##person atart sneezing.\nPSAVM 10.1 19.2##a person is throwing a blanket in the hamper.\nPSAVM 0.0 6.6##a person is washing his hands.\nPSAVM 0.0 6.6##a person washes their hands in the sink.\nM6HAF 0.0 4.2##person open the refrigerator door.\nM6HAF 0.0 4.2##the person opens the refrigerator.\nHLB3J 5.0 11.2##one person propped on a pillow awakens.\n0UPBN 19.3 31.8##another person holds a box.\n0UPBN 19.6 34.0##person lies down on a bed behind them.\n0UPBN 19.3 31.8##person holding a box.\nNUW9G 0.0 9.2##a person holding a plastic bag puts.\nQLFR5 21.0 27.1##the person closes the book.\n5P284 20.5 33.0##person looks out window.\n5P284 19.9 25.1##person put phone down gets up.\nC1DK7 22.5 28.0##person leaves closing door behind them.\nC1DK7 20.6 25.9##person opens door.\nC1DK7 22.5 28.0##person closing the door.\nC1DK7 20.6 25.9##person opens a door.\nC1DK7 4.2 10.2##a person leaves their phone on a closed laptop.\nSTHIK 1.3 9.0##person eventually running out of frame.\nSTHIK 1.3 9.0##a person runs through the doorway.\nSTHIK 4.1 8.4##person appearing to be eating it.\nSTHIK 1.9 7.2##person drinking a cup of coffee.\nSTHIK 4.1 8.4##person eating from a bag of food.\nFB3ZG 4.5 9.2##person takes a cup of coffee.\n6CAZU 21.2 27.9##person begins eating.\n6CAZU 0.0 4.9##a person is sitting in a chair putting on shoes.\n75F82 0.0 9.4##a person is sneezing into a phone.\n75F82 0.0 9.4##a person is standing in a doorway sneezing.\n75F82 0.0 9.4##person they are sneezing.\n75F82 0.0 9.4##a person is standing in the door way sneezing.\nC4MUA 2.2 7.9##a person walks in a doorway.\nM4FOP 6.2 11.3##the person is putting away groceries.\nM4FOP 5.4 10.0##a person puts stuff in a bag by the window.\n1VRH1 22.8 31.0##person turn off a light.\n1VRH1 12.4 18.7##person they throw the book on the floor.\n1VRH1 22.8 31.0##person turn off the light on the bedside table.\n1VRH1 12.4 18.7##person they throw the book.\n1VRH1 22.8 31.0##person turn off the lights.\n1VRH1 22.8 31.0##person shutting off the bedside light.\n9PXI9 10.5 16.4##person stand up.\nUETQS 1.4 11.2##person opens a laptop.\nUETQS 0.0 11.3##a person sits in a chair.\nUETQS 0.0 12.6##a person sits down at a table.\nUETQS 18.2 32.0##person cooking eggs on the stove.\nUETQS 1.4 11.2##a person is opening a laptop on a table.\n5UNMN 7.3 13.0##person sits in a chair at a desk.\nVJVHM 0.0 8.0##a person turns on their lights.\nVJVHM 0.0 8.0##the person turns on a light.\nAWN1C 27.0 39.0##person they take a drink from a coffee cup.\nAWN1C 27.0 39.0##person gets a drink from a red cup.\nAWN1C 27.0 39.0##person takes a drink from a cup.\n3CLVI 16.3 22.3##person opens the door.\n3CLVI 3.3 7.8##person flicks the lightswitch on.\n3CLVI 3.2 11.1##person the individual opens another nearby closet.\nCS7HY 6.4 18.5##person they open a cabinet.\nCS7HY 4.5 9.1##person puts the broom away.\nCS7HY 0.0 8.0##a person is holding a broom.\nCS7HY 0.0 8.0##a person walks into the kitchen holding a broom.\nCS7HY 6.4 18.5##person open a cabinet.\nIAEGA 16.0 19.0##person turns off the light.\nZNQVC 0.0 15.4##a person is tidying up the cabinet.\nZNQVC 8.9 15.9##person closed the doors.\nZNQVC 10.5 17.3##person takes off a pair of shoes.\nZNQVC 10.5 17.3##the person begins to take their shoes off.\nZNQVC 8.9 15.9##person closing the door.\nZNQVC 10.5 17.3##person takes their shoes off.\n47Y1V 1.7 15.6##a person in the hallway holding a picture begins undressing.\nB0SV3 7.1 11.4##a person walking into a closet turns on the light.\nB0SV3 18.9 32.0##person drinks from a coffee cup.\nB0SV3 7.1 11.4##person they pause to turn on the light.\nB0SV3 2.2 9.1##person opens the doors.\nF1LTO 19.1 28.2##person closes the cabinet.\nF1LTO 0.5 8.7##a person opens the doors of an armoire.\nF1LTO 20.6 26.9##person closes the doors.\nF1LTO 0.5 8.7##person opens the doors.\nOSK3Y 7.7 15.6##sneezing another person cooking on the stove.\nDGHSW 13.1 19.6##a person runs through the door.\nDGHSW 13.1 19.6##a person runs down the stairs.\nDGHSW 13.1 19.6##person quickly runs off.\n06LBQ 21.6 26.6##person closes the top of the box.\n06LBQ 28.7 34.6##a person is vacuuming the floor around an open box.\nALJ7B 17.5 31.0##person begins to drink the water from the glass.\nALJ7B 17.5 31.0##person drinking a glass of water.\nALJ7B 2.1 9.8##a person takes dishes off a shelf.\nQZ1BS 0.0 12.8##a person lying down awakens in the basement.\nQZ1BS 0.0 4.5##the person is laying on the floor.\nZ7KC1 24.6 29.8##person run from the room.\nZ7KC1 24.6 29.8##person runs to the front door.\nZ7KC1 24.6 29.8##person runs towards the door.\nZ7KC1 24.6 29.8##person they run to the front door.\n4H935 0.0 6.4##a person awakens in a bedroom.\n4H935 4.5 10.2##person turns on the light.\n4H935 4.5 10.2##person turns on a light.\n4H935 4.5 10.2##person plugged in a light.\n4H935 23.3 33.0##person start getting dressed.\nO76GM 0.8 15.3##this person opens a few cabinets.\nO76GM 12.8 19.7##person takes out a container of food.\nO76GM 0.8 15.3##a person standing in the kitchen opens a cabinet.\nO76GM 15.0 22.9##person starts closing door.\nFLBS9 15.0 20.7##person laughing at a towel.\nIV1S7 4.7 11.7##a person takes a glass from a cabinet.\nIV1S7 8.2 13.6##person puts the glass on the table.\nIV1S7 0.5 6.4##a person runs through the doorway into a dining room.\nD04GX 0.0 4.0##a person opens a door.\nD04GX 8.7 14.0##a person is in their entryway holding a camera.\nD04GX 0.0 5.7##person eating a sandwich.\nD04GX 8.7 14.0##the person is holding a camera.\nD04GX 0.0 5.7##person eating the sandwich.\nD01MJ 19.0 32.0##person awakens from their slumber.\nD01MJ 28.9 35.8##person they stand up.\n50E06 15.9 24.9##person drinks from the cup.\n50E06 0.0 5.1##a person in their recreation room is eating some food.\n50E06 21.2 27.1##the person puts the cup down.\nP5YNX 0.0 13.1##a person is sitting in the chair on their laptop.\nP5YNX 0.0 13.1##a person is sitting in a chair.\nP5YNX 0.0 12.7##person working on their laptop.\n6U47G 5.3 15.5##a man sits down on a couch.\nR4SJJ 0.3 6.7##person closes the door.\nR4SJJ 6.2 10.9##person they throw some clothes on the bed.\nR4SJJ 31.4 44.3##person close the window.\nGA7SB 19.1 31.0##person eating a burger in a box on their bed.\nGA7SB 23.2 29.7##person gets undressed.\nGA7SB 23.2 29.7##a person is undressing in their bedroom.\nGA7SB 19.1 31.0##person begins to eat.\nGA7SB 19.1 31.0##person started to eat his food.\n0M0T4 9.9 20.5##person puts clothes on a bed.\n0M0T4 41.4 51.7##person starts to play with a phone.\n0M0T4 52.3 55.0##person turns on the light.\nN5PLR 1.4 10.8##a person is undressing from their work clothes.\nEG0VZ 16.3 22.7##person takes a book.\nEG0VZ 7.2 18.4##a person awakens in their bedroom.\nSSPMK 27.1 34.6##person taking a drink from a cup.\nSSPMK 27.1 34.6##person he drinks from a cup in his hand.\nGMLPK 11.0 22.4##person takes a bite of the sandwich.\n72LJ3 15.1 22.6##the person throws the book.\n72LJ3 15.1 22.6##person throws the book on the bed.\n72LJ3 7.2 13.6##the person laughs at their book.\nEEGGA 15.9 22.2##person begins eating.\nEEGGA 15.9 22.2##person starts eating.\nEEGGA 0.0 4.6##person sits in chair.\nMLWB5 0.0 10.5##person a girl is laying on the floor.\nMLWB5 11.4 21.3##person start fixing their hair.\n0HGNK 8.4 13.6##a second person runs in.\n0HGNK 8.4 13.6##another person comes running.\n0HGNK 7.3 13.1##person puts a box on the counter.\n0HGNK 7.3 13.1##person puts box on the table.\n0HGNK 8.4 13.6##person run away.\n2CJC9 8.4 15.4##the person opens a medicine cabinet.\n2CJC9 8.4 15.4##the person opens the cabinet.\n2CJC9 0.0 11.6##a person is smiling at himself in the mirror.\nOK6BF 19.0 25.0##the person opened the window to let fresh air in.\n8CCEV 6.1 13.9##person putting the laptop on bed.\n8CCEV 5.9 11.7##person they put the pillow down.\n8CCEV 0.0 5.6##person holding a pillow,.\n8CCEV 6.4 14.8##a person who is sitting on a floor with laptop.\n8CCEV 5.9 11.7##person putting pillow aside.\n8CCEV 0.0 4.1##a person is snuggling a pillow with their laptop open.\nSUE5L 13.5 25.1##the person is holding a cup.\nR5O7F 17.8 24.9##person putting clothes in a cabinet.\nR5O7F 28.5 40.0##person start dressing with different clothes.\nR5O7F 11.0 19.5##person opens a cabinet.\nR5O7F 28.5 40.0##the person is undressing.\nR5O7F 17.8 24.9##a person puts some clothes into a cabinet.\nR5O7F 17.8 24.9##person puts the clothing on a shelf in the cabinet.\nY50QF 31.9 38.0##person opening a box in a dining room.\nY50QF 21.8 30.9##person pouring a cup of coffee.\nY50QF 21.8 30.9##person pours himself some coffee into a cup.\nY50QF 21.8 30.9##person pour a cup of coffee.\nWZDXS 0.0 10.3##a person is dressing in their bedroom.\nWZDXS 13.5 20.2##person watching something on a laptop screen.\nVEH0A 0.0 4.4##person is lying on floor fixing door.\nVEH0A 2.7 7.2##a person is sitting on the floor.\nVEH0A 0.0 5.5##person starts closing door.\nVEH0A 2.7 7.2##person sitting on the floor looking into a cabinet.\nVEH0A 0.0 4.4##person closing a cabinet.\n5WS7U 13.6 21.7##person puts shoes on.\n5WS7U 33.5 37.9##person fixes their hair.\n5WS7U 13.6 21.7##person puts on shoes.\n2OJY8 3.0 15.7##a person is in a bedroom dressing.\n2OJY8 3.0 15.7##a person gets dressed in the bedroom.\n2OJY8 23.1 28.7##person open a box of dishes.\n2OJY8 23.9 30.1##person begins to put dishes in a box.\nSPF63 13.2 18.9##person they take something from a box.\nSPF63 23.5 29.8##person throws the case on the floor.\nSPF63 24.1 29.7##person throws the box on the floor.\nSPF63 14.8 21.2##the person opens the box.\nY665P 14.5 22.8##person sits down on the sofa.\nY665P 14.5 22.8##person sits down on the couch to read the book.\nY665P 14.5 22.8##person sits down on a couch.\n4VJDU 0.0 13.3##the other person puts on his shoes in the background.\n4VJDU 0.0 13.5##one person dresses into a pair of shoes.\nY4GHN 7.0 19.8##person closed a cabinet.\nRKOOJ 3.8 12.8##person looks at the picture.\nRKOOJ 3.2 13.1##a person walks into the room holding a picture.\nQ948H 7.9 20.7##person puts the book on the table again.\nQ948H 5.8 22.2##the person takes a picture out.\nQ948H 17.8 33.1##person puts the book back on the shelf.\nQ948H 5.8 22.2##person opens it up takes a picture.\nOPMF7 9.4 14.3##person they begin sneezing.\nOPMF7 9.4 14.3##a person is also sneezing.\nVINM0 0.0 8.5##person holding a pair of shoes.\nVINM0 2.7 9.6##a person puts his shoes down on the floor.\nVINM0 2.7 9.6##the person puts down the shoes.\nVINM0 0.0 8.5##a person is holding shoes.\nVINM0 15.2 31.7##person looks out the window.\n6JLD4 23.0 28.7##person closes the door.\n6JLD4 11.2 19.0##person gets dressed.\n6JLD4 3.1 7.2##a person turns on a light in the closet.\n6JLD4 3.1 7.2##person turns on the lights.\n6JLD4 21.0 25.3##person turns the lights off.\nPEWH4 9.7 24.5##person eats a sandwich.\nPEWH4 9.7 24.5##person they eat a sandwich.\nJ95U1 10.3 28.3##the person picked up a phone to play with it.\nJ95U1 19.1 23.3##person begin laughing.\nK6W5I 3.3 18.2##person puts away the groceries.\nK6W5I 3.1 10.9##the person puts the groceries on the table.\nK6W5I 15.3 20.5##the person opens door.\nPS7XK 26.0 32.0##the person is smiling often.\nWZZPC 5.1 8.0##person they start to open a door.\nWZZPC 5.1 8.0##person open a door.\nBZ5N5 2.2 16.8##the person takes two glasses from the cabinet.\nO6DJW 6.7 12.1##person holds a sandwich on it.\nSKZUG 4.5 12.0##a person is fixing a light in the refrigerator.\nSKZUG 10.6 17.0##person is cooking on a stove.\nSKZUG 4.5 12.0##a person is fixing the light in the refrigerator.\nSKZUG 9.8 17.0##the person closes the refrigerator door when they are done.\nLFPWI 4.0 18.4##person begins undressing.\nLFPWI 4.0 18.4##a person is undressing in front of a sink.\nLFPWI 0.0 7.2##a person opens a door.\nLFPWI 0.0 7.2##person open the door.\nLFPWI 0.0 7.2##the person opens the bathroom door.\nLFPWI 0.0 7.2##a person is opening a door.\nWWL0K 7.9 15.3##person throw the blanket down on the floor.\nWWL0K 7.9 15.3##person throws the blanket on the floor.\nWWL0K 0.0 7.9##person looking at a book.\nWWL0K 7.9 15.3##person throws the blanket off the stairs.\n10M0F 19.3 24.8##a person throwing a book.\n10M0F 21.6 32.0##person sneezing into a camera.\nZFT06 21.5 30.0##a person is laughing in front of the refrigerator.\nZFT06 8.6 14.8##person opens the door.\nZFT06 18.9 25.7##person takes a glass out from the refrigerator.\nAPLZS 24.3 30.0##person closes the box back up.\nAPLZS 17.7 26.1##the person opens a box.\n9O0NP 5.1 13.6##a person throws a book into a box.\n9O0NP 0.0 8.3##a person looks through a book.\n9O0NP 0.0 8.3##a person looks at a book.\n9O0NP 0.0 8.3##a person in a kitchen reads from a book.\nBPT87 0.0 8.7##a person runs up some stairs.\nBPT87 13.6 19.4##the person takes a towel.\nBPT87 0.0 8.7##a person runs up.\nBPT87 7.2 15.3##a person laughs as they walk down the stairs.\nBPT87 7.2 15.3##the person laughs.\nGL7E6 19.4 25.3##person they take the medicine.\nGL7E6 19.4 25.3##person takes some medicine.\nGL7E6 3.3 12.1##a person awakens in their living room sneezing.\nGL7E6 9.9 15.0##person they open a bag.\nP4SB9 13.1 19.0##person start eating some food from the stove.\nP4SB9 5.4 11.2##person puts the broom up against a wall.\nP4SB9 5.4 11.2##person puts the broom down.\nWC5QK 17.2 31.0##person they sit in a chair.\nY79PC 12.0 21.3##person they undress.\nY79PC 12.0 21.3##the person undressed out of their jacket.\nY79PC 19.2 25.5##person turn off the light.\n08LOY 0.0 8.3##another person runs up the stairs.\nVRXQX 3.3 15.3##a person is putting on clothes.\nVRXQX 16.7 24.4##person drinking from a cup walking around.\nC6N6Y 0.0 6.4##person eating an apple.\nBO12I 3.1 17.7##another person is closing a refrigerator.\nBO12I 3.1 17.7##a second person closes the door to the refrigerator.\n120YL 37.0 43.0##person begins to eat the cookie.\n120YL 4.8 9.7##the person opens the box.\n120YL 37.0 43.0##person eats the cookie.\n120YL 35.5 43.0##the person sits down in a chair.\n120YL 35.0 43.0##person sitting at the table.\n120YL 4.8 9.7##the person opens the box of cookies.\n120YL 35.0 43.0##person sits down in a chair at the table.\n120YL 37.0 43.0##person takes the plate to the table to eat.\nMK16R 10.7 17.1##a person is smiling.\nMK16R 0.4 9.8##person putting groceries away.\nH032R 0.8 6.8##person throws a towel on the floor.\nH032R 12.4 23.0##person sitting down on a pillow in the bed.\nLUQWY 8.3 20.5##person they open the laptop.\nKV6V8 7.3 14.0##person the girl closes her laptop.\n07TCM 6.0 15.9##person starts putting on their shoes.\n07TCM 6.0 15.9##person putting shoes.\n07TCM 13.3 26.1##person dressing for the cold.\n07TCM 22.1 35.0##person starts sneezing.\n07TCM 6.0 15.9##person putting shoes on.\nRFH6M 12.9 20.2##person puts a towel over the shoulder.\nRFH6M 0.0 3.8##a person opens the refrigerator.\nRFH6M 0.3 5.7##person closes the door.\nRFH6M 0.0 3.8##the person opens the refrigerator,removes food.\n7IPW7 0.0 6.3##a person walks through the doorway.\n7IPW7 0.0 6.3##person walks through the doorway into a room.\nH0Q6V 0.0 13.1##person set up on the sofa take off shoes.\nH0Q6V 0.0 13.1##person takes their shoes off.\nCUHT0 11.0 16.6##person takes a picture of the couch with a camera.\nCUHT0 0.0 7.9##a person walks into the living holding a pillow.\nCUHT0 13.3 21.7##person they put the camera on the baby's jumper.\nFJYZH 12.1 19.0##person eat something they took out of their pocket.\nFJYZH 12.1 19.0##person eat a small snack they got from their pocket.\nFJYZH 5.6 11.0##person put the book down on a chair.\nFJYZH 4.8 9.2##person standing near a closet holding a homework book.\nFJYZH 5.6 11.0##person they put the book down on a chair.\nM18XP 0.0 8.6##a person opens a door.\nM18XP 2.5 11.2##person they close the door.\nZC59Y 2.8 10.2##a person is opening a book.\nFSOFF 11.8 21.0##another person walks by the takes off their shoes.\nFSOFF 11.8 21.0##person proceeds to take their shoes off.\n4KK20 24.4 32.0##person throwing a box down.\n4KK20 1.8 13.7##person talking on their phone.\n4KK20 18.3 30.4##person opening a box.\n4KK20 24.4 32.0##person throwing the box to the floor angrily.\nSVIXG 1.4 13.1##person opening a box.\nSVIXG 16.5 28.0##person eating from a box of food.\nSVIXG 16.5 28.0##person eating something out of it.\nSVIXG 16.5 28.0##person eats a few pieces from inside.\n7JHW2 3.1 8.3##the person puts the laptop down onto a table.\n7JHW2 0.0 7.0##a person runs into the garage.\n7JHW2 0.0 7.0##person holding a laptop.\n7JHW2 3.1 8.3##person sets a laptop computer on a counter.\n"
  },
  {
    "path": "NLQ/2D-TAN/data/Charades-STA/charades_sta_train.txt",
    "content": "AO8RW 0.0 6.9##a person is putting a book on a shelf.\nY6R7T 20.8 30.0##person begins to play on a phone.\nY6R7T 20.8 30.0##person start playing on their phone.\nY6R7T 7.3 17.3##person pouring it into a glass.\nY6R7T 7.3 17.3##the person pours some water into the glass.\nY6R7T 7.3 17.3##person pours water into a glass.\nIGDIE 22.7 34.0##person starts watching television.\n7UPGT 13.9 19.7##person takes a cup out the fridge.\nKBPDM 7.1 13.6##person sneezing on a mirror.\nKBPDM 0.0 11.1##a person is awakening.\nKBPDM 3.1 18.7##holding a small personal mirror.\nIBIWF 0.0 14.5##a person is playing with their camera.\n372CC 17.5 29.9##a person is sitting in front of a computer sneezing.\n372CC 17.5 29.9##person starts sneezing.\nN14BK 39.3 45.0##person put a notebook in a bag.\nNQT1S 18.3 31.0##person all of a sudden they start sneezing.\nF1VEE 27.0 32.0##person opening a door.\nF1VEE 15.1 23.8##person they put on their shoes.\nF1VEE 15.1 23.8##person puts on shoes.\nF1VEE 19.2 28.2##person they take a mobile phone.\nF1VEE 15.1 23.8##person put some shoes on.\nYDWN5 6.2 12.6##a person tidying a wardrobe in an entryway is smiling.\nQRWQ3 19.1 29.0##a person cooking on the stove.\nQRWQ3 19.1 29.0##a person is cooking something on a stove.\nSFHHR 21.5 28.0##the person puts the coffee on the table.\nHWYTN 0.0 4.0##another person runs out the room.\nHWYTN 0.0 4.0##another man running past.\nHWYTN 0.0 4.0##another person is running in shoes.\nGG4UR 10.0 15.4##person opens door to closet.\nGG4UR 0.0 3.6##a person is seen watching television.\nGG4UR 0.0 3.6##a person is watching television on the sofa.\nGG4UR 0.0 3.6##person is sitting on couch watching television.\nGG4UR 10.0 15.4##person seen opening the door to a hallway closet.\nXDVAY 0.0 7.9##a person is awakening in bed.\nMLBTH 0.0 8.0##person opens a laptop.\nMLBTH 0.0 8.0##a person opens a laptop.\nMLBTH 0.0 8.0##the person opens up a laptop.\nIR31O 5.6 12.9##person drinking a glass of water.\nIR31O 1.3 7.7##a person is opening a book.\nKX8VW 16.3 22.1##person put back on the table.\nKX8VW 5.9 15.4##person pours some water into a glass.\nKX8VW 0.0 5.5##person sitting on the sofa eating out of a dish.\nNVBBD 0.0 6.5##a person opens up a door.\nNVBBD 19.1 32.0##person puts his shoes on.\nNVBBD 19.1 32.0##person puts on a shoe.\nNVBBD 0.0 6.5##person they open the door.\nNVBBD 19.1 32.0##person start putting shoes on.\nNVBBD 0.0 6.5##a person opens a door by grasping a doorknob.\n4C4LC 27.3 32.0##person also turning off the light.\nJ4GX8 18.8 27.3##person drinking a glass of water.\nJ4GX8 0.0 8.4##person holding a glass.\nJ4GX8 16.6 22.2##person appear to take some medicine by swallowing it.\nJ4GX8 16.6 22.2##the person can take their medicine.\nHPEE5 20.3 25.0##person close the door.\nHPEE5 12.6 21.4##person open a door.\nMBGPJ 0.0 12.8##person a guy is sitting in a chair.\nMBGPJ 13.7 20.9##person takes out a glass.\nMBGPJ 10.5 18.1##person opens a refrigerator.\nNEM29 4.0 17.8##the person watches television.\nNEM29 0.0 5.2##a person is undressing.\nSA7GL 7.6 17.0##person they close the laptop.\nSA7GL 0.0 6.8##a person is playing on a laptop.\nSA7GL 0.0 6.8##a person sits in a chair working on a laptop.\n0QA8P 7.3 28.1##the person undressed from all clothes.\n0QA8P 38.1 43.6##person put the clothes.\n0QA8P 0.0 9.8##person takes off their shoes.\nBWHUX 4.7 10.1##person he puts something on a table next to dishes.\nKJ8G2 5.2 10.4##person putting them on a table.\nD87UN 1.5 11.4##person they are also drinking from a cup.\nD87UN 1.5 11.4##person they're drinking a glass of water.\nXJOJL 29.4 35.1##the person puts the sandwich on a table.\nXJOJL 45.6 49.0##person snuggles up in a freshly cleaned blanket.\n67MSU 22.7 31.0##person closes the refrigerator.\n67MSU 0.0 3.8##person they open the refrigerator.\n67MSU 0.0 3.8##a person opens a refrigerator.\n9NRLA 13.6 19.7##person eats it.\n9NRLA 13.6 19.7##person they stop to eat some food.\n9NRLA 0.0 3.1##a person puts clothes into a washing machine.\nI6NJ6 4.7 13.4##a person awakens in bed.\nKG20W 16.2 31.8##a woman walks around holding a blanket/pillow.\n68JOO 0.0 3.8##person they stand up.\n68JOO 8.1 16.1##person sits in a chair.\n68JOO 8.1 16.1##person sit back down in the chair.\n68JOO 8.1 16.1##a person sitting in a chair snuggles a pillow.\n68JOO 11.8 19.6##a person snuggles with a pillow.\nQHARF 0.0 11.3##another person holds a bag.\nQHARF 0.0 11.3##person one holding a bag.\nQHARF 0.0 11.3##a person is holding a bag of food.\nP1EK9 20.8 27.0##person throwing his bag down.\nP1EK9 20.8 27.0##person they throw it on the floor.\nP1EK9 20.8 27.0##person they throw the bag on the floor too.\nP1EK9 5.8 11.2##a person walks into a room opens a box.\nKZSA9 9.5 17.7##a person opens a box.\nKZSA9 23.6 30.9##person takes a blanket out.\nKZSA9 19.5 29.6##person closes the box.\nLQ0LM 12.1 17.9##person close the cabinet.\nLQ0LM 16.0 21.0##person they stand up.\nLQ0LM 14.0 19.0##person open the cabinet  below.\nORW6Y 18.7 25.8##one person puts a box on a shelf.\nORW6Y 17.6 31.0##another person holding a pillow starts sneezing.\nD8HN1 7.2 13.1##person eat a sandwich they walk out of the bathroom.\nD8HN1 7.2 13.1##person eating a sandwich in front of a mirror.\nD8HN1 23.9 28.9##person use their foot to close the door.\nD8HN1 23.9 28.9##person close a door with their feet.\nBY6ZZ 15.5 27.0##person lays on some clothes on the floor.\nT8B7B 19.6 25.4##person puts the camera in a box on the floor.\nT8B7B 22.3 28.8##the person closes the box.\nT8B7B 20.0 27.7##person puts the coffee cup in a box.\nD8OSC 7.1 17.9##person starts laughing.\nTGDWN 21.4 29.2##person closes a door.\nX2Q00 1.4 9.6##person after eating.\nX2Q00 1.4 9.6##person they are on their laptop eating a sandwich.\nX2Q00 23.7 33.8##the person debating on tidying up or reading a book.\nS8TT8 23.5 31.6##person sit down in a chair.\nS8TT8 13.3 23.6##person starts putting away clothes.\nS8TT8 23.5 31.6##the person sits down on a chair.\nS8TT8 13.3 23.6##person puts some clothes on a bench.\nQG4N1 22.2 31.0##person put it on a shelf.\nQG4N1 22.2 31.0##person puts the camera on a shelf.\nAOMNM 0.0 5.1##a person runs into the closet.\nX8MNV 2.1 8.1##a person walks through a doorway into a living room.\nNHUV1 0.0 3.1##person opening a bag.\nNNG97 1.4 6.6##a person puts a book on a shelf.\nNNG97 1.4 6.6##the person puts the book back on the shelf.\nNNG97 0.0 2.6##a person throws a book onto the shelf.\nA1NKP 11.6 17.6##person eating a bowl of soup.\nEDXBD 9.2 14.0##person walks over to open a door.\nBW5MF 0.0 3.8##person turns on a light.\nUZMMO 20.9 37.0##person sits on the bed to read it.\nUZMMO 17.4 25.1##the person takes a book from a table.\nUZMMO 22.5 37.0##the person sat down to read a book.\nCHBAS 6.4 13.2##the person throws their clothes in a pantry.\nCHBAS 0.0 7.4##a person is in a bathroom doorway undressing.\nM2F66 17.1 23.0##person they close the door to the laundry room.\nM2F66 17.1 23.0##person closes the door.\nM2F66 0.0 23.5##the person puts detergent on the clothes.\nM2F66 0.0 23.5##a person is putting clothes in the washing machine.\nM2F66 9.6 24.5##person starts washing a load of clothes.\nM2F66 17.1 23.0##person they close the washer door.\nKMZHU 3.6 11.0##person pouring a glass of water.\n0CG15 9.1 14.3##a person is sneezing.\n0CG15 22.8 29.7##person he opens a cabinet.\n0CG15 25.8 33.3##person closing a cabinet.\n9XXJ7 2.0 8.2##a person is sneezing.\n9XXJ7 0.6 6.8##person closes a door.\nHKBKA 11.9 24.9##person lies on a bed.\nN39RU 0.0 7.3##person get up from their seats.\nE0MK4 5.3 13.8##person take a book out their bag.\nECMQU 19.8 25.6##person drinks out of a glass.\nECMQU 0.0 6.5##a smiling person is dressing in their basement.\nECMQU 0.0 14.0##person putting on clothes.\nM6LFI 1.0 8.0##a person is undressing in front of a mirror.\nM6LFI 4.0 9.5##person opening a sandwich in a bag.\n618HP 0.0 3.5##person sitting on chair jumps up turns off light.\n618HP 15.2 21.2##person the stand up.\n618HP 0.0 3.5##person turn off the light.\nUVEPN 10.8 17.0##person drinking a cup of coffee.\nQ8HQM 3.3 10.6##person the other one keeps sneezing.\nGJJA1 0.0 8.0##person plays with a phone.\nGJJA1 0.0 8.0##person start playing with their phone.\nGJJA1 0.0 12.2##a person holds a pillow.\nHMSM8 14.3 24.8##person opens a window.\nHMSM8 14.3 24.8##the person opens the window.\nHMSM8 14.3 24.8##person they open the window.\n3P8NL 0.0 3.4##person sitting at a table.\n3P8NL 0.0 3.1##a person sits in a chair.\n3P8NL 0.0 10.3##person takes out the cards from the box.\nVSS68 1.1 8.3##a person put groceries in the cabinet in the kitchen.\nVSS68 0.7 6.1##the person was opening the cabinet.\nP4DL9 0.0 7.2##person closes the refrigerator door.\nP4DL9 9.2 18.1##person starts cooking at the stove.\nP4DL9 9.2 18.1##person starts cooking with a pan.\nP4DL9 0.0 7.2##one person closes the refrigerator.\n5TLQE 16.9 22.9##person start to close the book.\n5TLQE 16.9 22.9##person closes the book.\nLTJEO 19.0 32.0##the person places the pair of shoes on the dresser.\nLTJEO 19.0 32.0##person starts dressing.\nLTJEO 0.0 8.2##the person is smiling.\nLTJEO 0.0 8.2##a smiling person is opening the wardrobe door.\nLTJEO 11.2 19.0##person takes out some clothes.\nGIIMN 9.8 23.2##person eating in the bathroom.\nCBVUS 0.1 7.5##a person is sneezing in the pillow.\nCBVUS 0.1 7.5##a person is sneezing.\nDPJH4 5.2 12.7##person opens a cabinet.\nDPJH4 14.8 21.9##the person takes a can of food from a shelf.\nW0RSP 1.2 6.9##a person awakening in their bedroom.\nIH3GN 0.0 5.2##a person is walking through a doorway holding a towel.\nVG94P 18.0 33.0##when they start laughing at something another person said.\nVG94P 18.0 33.0##person they both laugh.\n92TUQ 5.0 11.0##person takes off shoes.\n92TUQ 5.0 11.0##a person holding a bag takes off their shoes.\nYEHFQ 8.1 22.6##a person enters the front door holding a bag.\nYEHFQ 20.7 32.0##person eating a sandwich.\nYEHFQ 20.7 32.0##the person starts eating something.\n1E1VE 3.7 12.5##a person enters holding a towel.\n813XE 0.0 6.3##a person is holding a camera.\n813XE 6.0 11.0##person open a door.\n813XE 0.0 4.0##a person opens a cabinet in a living room.\n813XE 1.0 6.0##person they put the camera in a cabinet.\nU896B 0.0 5.3##person undressing beside the chair next to the light.\nZS1P1 24.6 35.2##a person works on a laptop.\nZS1P1 31.8 37.8##person occasionally looking at an opened book.\nZS1P1 24.6 35.2##one person sits working on a laptop laughing.\nFIJ3D 0.0 5.3##a person takes a book off of a shelf.\nFIJ3D 18.1 22.9##the person puts the book down.\nFIJ3D 0.0 5.3##a person takes a book off of a shelf,turns.\nFIJ3D 19.0 26.7##person opens a laptop.\nFIJ3D 23.6 31.0##person plays with a laptop.\nFIJ3D 1.4 11.1##a person opens a book.\n0G2SC 9.5 18.8##person #1 smiled as person #2 walked through the doorway.\nTANH9 12.4 22.6##another person is smiling at food.\nWZN0I 1.9 7.7##person throwing them on the floor.\nWZN0I 1.3 8.2##a person throws a pillow through the doorway.\nWZN0I 0.0 5.7##a person holding a pillow throws it on the floor.\n1LARL 3.6 10.2##the person takes a sandwich.\nMMFXQ 4.3 9.4##person puts them on a shelf in a cabinet.\nMMFXQ 1.1 6.4##person begins sneezing.\n9INKU 4.0 15.7##a person is running back.\n0S9KN 12.7 16.8##person throws the pillow onto the floor.\n4UYGY 8.1 19.3##person they awaken.\n4UYGY 17.5 22.7##person takes a phone off a shelf.\n4UYGY 8.1 19.3##one person awakens.\n4UYGY 8.1 19.3##a person awakens on a bed.\nQUGSS 2.1 11.2##person eating a sandwich.\nWEYV3 0.0 5.5##a person is seen eating a sandwich at their desk.\nWEYV3 0.0 3.9##a person is eating.\nWEYV3 0.0 3.9##person eating a snack.\nWEYV3 0.0 12.5##person playing on their laptop.\nWEYV3 18.8 30.0##person talking on their phone.\nV6IIE 20.7 31.0##person they later sit on a chair.\nV6IIE 14.7 21.7##a person undresses in the bedroom doorway.\nV6IIE 20.7 31.0##person sits down on a chair.\nV6IIE 0.0 14.0##person smiling at each other.\nV6IIE 20.7 31.0##another person sits in a chair.\nZHOP3 2.5 11.1##one person takes a blanket from a cabinet.\nZHOP3 2.5 11.1##person takes out a blanket from a cabinet.\n1G9R7 2.7 12.6##the person pours a drink into a cup.\nHPAYB 5.2 12.7##a person takes some clothes out of a bin.\nSKLEN 4.8 15.0##person they put the cleaner back on the shelf.\nSKLEN 13.1 21.4##person the tidying a shelf in the garage.\nSKLEN 4.8 15.0##person puts the stuff back on the shelf.\nL347E 28.3 33.8##person vegins to throw a broom on the floor.\nB5YYS 5.5 15.5##person undresses quickly.\n2074D 3.3 11.2##the person turns the light on.\n2074D 3.3 11.2##person flips on a light switch.\n9PAQ4 11.9 16.7##the person takes off their shoes.\n9PAQ4 11.9 16.7##person take off their shoes.\n9PAQ4 11.9 16.7##person take their shoes off.\n6AJX0 1.1 6.5##a person opens a door.\n6AJX0 7.8 13.2##person closes the door back.\n6AJX0 7.8 13.2##person close the door of the pantry.\nACMHK 16.0 23.0##person fix their hair.\nTQGPM 21.5 27.4##person puts it on the dining room table.\nAK9IB 21.1 29.0##the person takes their shoes off.\nUQW95 1.4 11.7##a person is cooking on the stove.\nUQW95 8.0 15.8##person the open a box of food.\nUQW95 8.0 15.8##person they open a box.\nUQW95 1.4 11.7##person pour it in the pot they are cooking with.\nUQW95 1.4 11.7##a person is cooking at the stove.\nBTW1H 15.0 29.0##person watches a car through the window.\nBTW1H 2.8 10.7##a person takes a vacuum to the entryway.\nOE751 12.0 23.4##person is talking on the phone.\nOE751 12.0 23.4##person talking on the phone.\nOE751 21.1 34.0##person closing the door behind them.\nQ3HZI 8.6 17.7##carries through a door to the outside/ the person opens.\nQ3HZI 0.0 3.7##a person takes a pillow off a sofa.\n4P13T 0.0 3.6##one person runs through.\n4P13T 0.0 4.8##person takes a bag.\n4P13T 0.0 3.6##person runs out the front door.\n4P13T 0.0 3.6##a person runs into a living room.\nVD6P1 7.0 13.1##person fixes his hair.\nNYDRK 10.6 15.9##person throw a book down the stairs too.\nP2DV7 11.6 17.4##person takes a picture of something on a shelf.\nTAZGF 4.5 10.5##person put the plate on a table.\nTAZGF 7.3 13.0##person sit down on a sofa.\nTAZGF 7.3 13.0##person they sit on the couch.\n1L376 8.8 14.8##a person is dressing.\nMJX48 6.2 15.3##a person puts a pair of shoes into a bag.\nMJX48 18.5 23.5##person throws the bag up the stairs.\nMJX48 18.5 23.5##person he throws the bag as well.\nBD0S7 0.0 3.4##second person takes a picture.\nK2BY7 0.0 5.0##a person is putting on clothes.\n0AGCS 17.6 22.5##the person throws the blanket on a chair.\nBRLC0 13.5 19.2##another person eating sandwich.\nU7RVS 0.0 7.9##person takes a drink from a cup.\nU7RVS 0.0 7.9##person drinking a cup of coffee.\nU7RVS 7.2 13.9##the person places the cup on a laptop computer.\nQEQJ3 15.1 24.3##person close the door.\nQEQJ3 2.4 9.3##a person is playing with their phone.\nQEQJ3 15.1 24.3##person closes the doorknob.\nGUCB4 25.9 39.3##the person drinks the glass of water.\nGUCB4 8.8 26.5##the person pours water into a glass.\nGUCB4 8.8 26.5##person they pour something into a glass.\nGUCB4 8.8 26.5##a person pours water into a glass.\nYW5C4 4.0 9.6##person closing their cabinet.\nYW5C4 18.0 24.0##person they start to take some medicine with a spoon.\nYW5C4 18.2 25.9##person eats it.\nYW5C4 5.1 11.9##a person is sneezing.\n2MJ72 11.0 17.0##person close the door to their bedroom.\n2MJ72 11.0 17.0##person they close the door.\nEN80R 0.0 4.0##a person is cooking on a stove.\nEN80R 0.0 4.0##a person is cooking at a stove.\nEN80R 9.6 20.4##person take some medicine off a shelf.\nPLGZM 0.0 3.2##a person is watching television.\nPLGZM 2.5 8.1##a person takes a camera from the shelf.\n3MWAY 0.0 11.5##person holding a cup.\n3MWAY 21.1 32.1##person pours it into the cup.\n3MWAY 7.8 14.3##the person opens the refrigerator.\n30TL5 7.7 15.4##a person is sitting on a toilet reading a book.\nWSZSL 12.8 22.9##person opens a window.\nWSZSL 12.8 22.9##the person opens the window.\n54XD1 27.8 31.0##person turn off the light.\n54XD1 21.4 27.2##person runs out of the room through the doorway.\n54XD1 21.4 27.2##person but leaves it there to run across the room.\n54XD1 27.8 31.0##person turns off the light.\n54XD1 27.8 31.0##person turning off all the lights.\nKZK6W 8.7 23.8##a person stands at a stove cooking some food.\nKZK6W 0.0 6.3##person drinks from a glass of water.\nKZK6W 8.7 23.8##a person is cooking food on the stove.\nKZK6W 14.7 30.4##person they take a glass of water from the counter.\n6FUDS 9.7 17.0##a person opens the blinds for a window.\n6FUDS 17.7 33.7##person continue eating some food out of a bowl.\n6FUDS 17.7 33.7##the person sits down to eat some food.\n6FUDS 9.7 17.0##a person is opening the blinds to their window.\nQNUIU 16.6 31.0##person throws it on the floor.\nQNUIU 16.6 31.0##person throw the homework on the floor.\n5GPOJ 9.6 14.7##the person puts the book down.\n5GPOJ 9.6 14.7##person they put the book down.\nCDIW7 6.6 13.5##person puts a box in front of a door.\nGLGQJ 0.0 17.6##a person is seen washing a window in their room.\nGLGQJ 21.1 29.3##person closes the window.\nGLGQJ 21.1 29.3##person they start closing the window.\nGLGQJ 0.0 17.6##a person washing a window with a cloth.\n7XVS7 5.1 18.9##a person is pouring coffee in to a glass.\n7XVS7 5.1 18.9##person pour the coffee into a cup.\n7XVS7 5.1 18.9##person they pour themselves a cup of coffee.\nESAIY 17.3 29.5##person they fix their hair.\nESAIY 17.3 29.5##person they start fixing their hair.\nESAIY 0.7 11.6##person they take the medicine with a glass of water.\nXFLQH 21.0 26.0##person opens a box next to the bed.\nXFLQH 26.0 36.0##person puts them on the shelf.\nXFLQH 26.0 36.0##person they take some items out of the box.\nXFLQH 26.0 36.0##the first person puts something on a shelf.\nJXF3M 11.3 20.5##person they awaken.\nJUINA 0.0 5.9##person is standing on chair putting dishes on shelf.\nJUINA 3.2 15.0##person puts dishes on a shelf.\nTKFY2 10.7 17.2##the person eats a bite of sandwich.\nE6TED 22.0 31.0##another person drinks a glass of water.\n7FNZZ 20.4 29.5##person puts it on the table.\nT3FJH 0.0 4.2##a person drinks from a wine glass.\nT3FJH 0.0 4.2##person is drinking out of a glass.\nED6VQ 6.8 13.0##person they put the cup on a shelf.\n87T5P 25.6 32.0##person sit on a couch.\n87T5P 23.7 32.0##person watching television.\n2544C 11.0 45.0##person putting items onto the shelf.\n2544C 75.9 82.0##a person walks through a doorway folding a towel.\n2544C 11.0 45.0##the person puts the towel on a shelf.\n2544C 3.7 15.4##a person throws a towel in their home office.\nEE8OB 14.8 21.0##person eats the sandwich.\nEE8OB 14.8 21.0##a woman walking in a house with a sandwich eating.\nTLBWW 1.3 15.3##a person is walking through a doorway.\nTLBWW 13.2 27.0##person throws a towel.\n9HIE0 0.0 8.5##a person is cooking food on the stove.\n9HIE0 16.7 25.7##another person is smiling as they enter the room.\n9HIE0 0.0 8.5##a person is cooking something on a stove.\n04LAX 13.9 22.7##person pours it into a glass.\n04LAX 20.2 27.3##person drinks from the glass.\nUDDTR 37.5 51.1##person beginning to dress themselves.\nUDDTR 6.5 13.2##person starts putting on clothes.\nXOFEX 12.0 17.2##person they put it down on the table.\nKZODG 15.3 22.9##person they close the laptop.\nKZODG 16.8 32.0##person begin playing a game on the phone's touchscreen.\nKZODG 15.3 22.9##the person closes a laptop on the coffee table.\nI20N2 0.0 7.8##a person is running.\nI20N2 26.6 33.1##person throws it on a clothesline.\nI20N2 0.0 7.8##a person is running toward the window.\nF9K8L 0.3 5.8##a person runs into the kitchen.\nF9K8L 2.1 7.2##person puts a pair of shoes on a chair.\nF9K8L 6.7 14.1##person he opens a window screen.\nF9K8L 0.3 5.8##a person runs into his kitchen.\nKO80I 18.0 23.1##person putting a pillow behind the back.\n1CITG 4.6 10.6##person turns on the light.\n54VBR 16.3 23.8##person sits in a chair at the table.\n54VBR 16.3 23.8##a person is sitting at a table eating a sandwich.\n54VBR 16.3 23.8##person sits down at the table.\n54VBR 16.3 23.8##a person is sitting at the table eating a sandwich.\n54VBR 13.0 18.7##person takes a drink from a glass.\n3OUXT 13.3 21.1##person opens a cabinet.\nTETZ7 7.0 12.6##person laughs as they leave through the doorway.\nL5842 18.2 26.3##person eating food placed on a shelf.\nL5842 8.1 17.8##a person puts a pillow on a shelf.\nL5842 18.2 26.3##person eats some food.\nWNKL6 20.8 28.0##person eating from a bag of food.\nWNKL6 20.8 28.0##a person is seen eating food in a bag.\nWNKL6 0.0 10.7##the person laughs.\nP8ZU6 10.3 18.4##person takes off their shoes.\nDPBI3 12.0 18.7##a person is laughing.\nY1FKP 20.7 32.0##person look out the window.\nY1FKP 20.7 32.0##person looks out the window.\nY1FKP 21.9 32.0##person laugh softly.\nY1FKP 20.7 32.0##the person laughs as they look out the window.\nNDYOR 17.6 23.9##the person takes their phone from the floor.\nCX5ZM 16.0 24.6##person start cooking something on the stove.\n0LNLR 1.9 13.9##person sits on a sofa.\nOHQOO 1.7 10.2##person looking out the window.\nOHQOO 6.8 12.2##a person is holding a box of shoes.\nOHQOO 16.1 22.1##person start laughing.\nZ60TB 5.3 10.8##person sneezing into the phone in the dining room.\n8VWV2 52.5 58.3##person they begin putting their dishes away in the sink.\n8VWV2 0.0 23.6##a person is seen eating food at a table.\n8VWV2 0.0 23.6##person another eats on the floor.\nUPJWV 9.7 19.2##a person is cooking on a stove.\nUPJWV 9.7 19.2##a person is cooking food on the stove.\nUPJWV 24.0 29.4##person runs out.\nUPJWV 24.0 29.4##person run out of the kitchen.\nUPJWV 19.5 24.9##person they turn off the light.\nZF5CP 14.2 21.1##the person closes the closet door.\nZF5CP 0.0 5.7##a person opens a closet.\nP7RQS 0.0 4.5##a person is sitting at the table.\nP7RQS 1.8 7.1##another person is at the refrigerator laughing.\nVS7DA 2.0 10.8##person open door.\nVS7DA 12.7 18.1##person turns the light on.\nVS7DA 12.7 18.1##person turns on the light.\nVS7DA 12.7 18.1##person turns light on grabs something from self.\nVS7DA 30.6 38.2##person close the door.\nVS7DA 2.0 10.8##person opens the door to the pantry.\n72HTA 0.0 11.0##person they take clothes off a table.\n72HTA 0.0 11.0##the person takes off clothes.\n72HTA 1.0 12.5##a person in a basement begins undressing.\n72HTA 4.8 11.6##the person puts clothes in washing machine.\n5QJNP 26.5 32.8##person began to drink from a glass.\n1K0SU 14.9 23.0##person drinking a glass of water.\n1K0SU 4.4 9.4##person turns on the light.\n3QGLU 29.4 35.0##person closes the refrigerator.\n3QGLU 2.9 9.7##person opens the refrigerator door.\n3QGLU 28.9 33.5##person puts his phone back in his pocket.\n7WG7A 21.0 26.0##person turns off the light.\n7WG7A 21.0 26.0##person turning off a light.\nYKVYR 9.1 15.1##person takes the garbage page.\nYKVYR 9.1 15.1##person takes the bag outside.\nWEU2E 26.4 31.0##person they start laughing.\nWEU2E 14.3 23.4##a person is smiling.\nWEU2E 10.7 17.8##person puts the box on top of a dresser.\nWEU2E 26.4 31.0##person begins to laugh.\n7SXQS 1.0 7.0##person closes blinds at a window.\n7SXQS 1.0 7.0##a person is closing the window in the dining room.\n7SXQS 1.0 7.0##person closes the shutters of the window behind the table.\n7SXQS 18.2 32.0##person seen snuggling up with a blanket.\nPZQ5A 8.6 16.8##person closed the door behind them.\nPZQ5A 4.6 10.3##person takes their camera that was at a desk.\n77HDM 12.0 16.3##person turning off the light behind them.\n64F1C 22.6 27.7##the person is throwing a blanket on the floor.\n64F1C 22.3 27.4##person throwing towels on the floor.\nV2JOF 11.5 26.5##person putting the blanket on a shelf.\nV2JOF 2.6 8.8##person turns on a light.\nMZGMN 0.0 7.8##a person opens a box on the floor.\nMZGMN 5.5 13.7##person throws a book into it.\nMZGMN 8.6 14.0##person closes the box.\nMZGMN 0.0 7.8##a person opens up a box.\nMZGMN 18.9 27.0##person closing the door behind them.\nMZGMN 18.9 27.0##person closes a door.\nMZGMN 5.5 13.7##person throws a book into the box.\nO7OD2 4.4 10.9##a person is holding a medicine bottle.\nO7OD2 4.4 10.9##a person is holding a bottle of medicine.\nO7OD2 8.0 16.1##person eating a sandwich.\n4878H 0.0 5.7##person snuggling a pillow.\n4878H 0.0 5.7##a person snuggles a pillow.\n8NS1G 24.7 31.0##person eat a sandwich.\n8NS1G 15.3 25.5##person they pour a glass of milk.\nWF3NY 16.0 23.0##person opening the cabinet.\nWF3NY 16.0 23.0##person opens the closet.\nNC1OC 17.6 27.9##person sits down on the couch.\nNC1OC 17.6 27.9##person sit down on the sofa.\nNC1OC 27.2 49.0##person begins to work on it at the coffee table.\nNC1OC 15.7 25.5##person they put their homework on a side table.\nS1N2U 5.3 13.3##a person lying in a bed awakens.\nS1N2U 12.4 16.7##person grasps for a light on a nightstand.\nS1N2U 22.8 33.3##person puts on their shoes.\nS1N2U 12.4 16.7##person turns on a light.\nG3CDA 12.7 23.1##person puts the folded towel down.\n00ZCA 24.9 42.4##person take out a vacuum.\n00ZCA 24.9 42.4##person takes out vacuum.\n00ZCA 35.6 54.0##person tidy up the floor.\n00ZCA 10.5 16.4##person opens closet.\nR6QCQ 2.1 9.0##a person awakens on a living room sofa.\nR6QCQ 10.3 18.8##person watches themselves in the mirror.\nYV521 20.6 28.7##person putting on a shelf behind him.\nYV521 20.6 28.7##person they put the book on a shelf.\nYV521 9.0 17.3##this person is sitting on a bed.\nYV521 20.6 28.0##person puts the book away.\nYV521 0.0 2.8##a person is opening a book.\nYV521 24.6 30.2##person start sneezing.\n67EEN 12.8 18.7##person they stand up.\nANJNU 1.5 9.5##person runs in.\nANJNU 18.2 27.3##person turns the light off.\nANJNU 1.5 9.5##another person runs into the room.\nANJNU 18.2 27.3##person turns off the light.\nJ12SC 10.4 21.4##person takes a camera out of it.\nJ12SC 7.8 15.2##the person takes a box off the staircase.\nJ12SC 0.0 11.1##a person takes their shoes off.\nJ12SC 10.4 21.4##person take a camera out.\nJ12SC 11.0 18.2##person opens a box.\nU1BQ0 0.0 3.9##person starts throwing them in boxes.\nU1BQ0 0.0 14.3##a person is seen putting dishes away.\nAADCE 0.0 14.5##the person is drinking water from a water bottle.\nAADCE 16.5 32.0##person playing on their phone.\nAADCE 0.0 14.5##person drinking from a glass of water.\nYV0ZX 11.1 19.1##the person opens the box.\nLE5F4 0.0 6.2##a person takes a camera from the chair.\nBUL4V 18.2 26.1##the person closes the window blinds.\nBUL4V 18.2 26.1##person they close a window.\nBUL4V 18.2 26.1##person close the window.\nPP2FF 16.5 21.3##person the stand up.\nPP2FF 23.4 32.0##person looked out the window.\nPP2FF 0.0 6.2##the person is sitting on the bed eating.\nPP2FF 23.4 32.0##person walk to look out the window.\nPP2FF 0.0 6.2##the person sat on their bed eating some food.\nPP2FF 0.0 6.2##the person was eating sitting on the sofa.\nPP2FF 23.4 32.0##the person was watching out the window.\nW5GEK 28.0 32.0##a person turned on a light.\nJMCRT 0.0 7.3##a person is cooking food on the stove they.\nJMCRT 0.0 8.6##person open the cabinet.\nJMCRT 0.0 7.3##person they stop cooking.\nJMCRT 19.3 29.3##person they talk on their phone.\n0ET8W 6.6 13.8##a person runs into the living room through the doorway.\nFV51S 3.4 10.4##person takes out a blanket.\nQ8UJ8 0.9 5.9##a person opens a bag which sits on the table.\n9GQRI 10.3 18.6##a person cooking on the stove begins sneezing.\nR390Z 24.7 31.7##another person takes a picture with their phone camera.\nX6B0P 10.3 22.7##a person is standing in the hallway undressing.\nKZPBC 11.2 18.6##person opens a book to read.\nU3ANG 25.3 36.0##person puts the laptop in a box.\nU3ANG 0.4 11.4##person opening the closet.\nU3ANG 0.4 11.4##the person opened a closet door.\nKA3ER 14.9 22.1##person opens a cabinet.\nKA3ER 0.0 13.6##a person is putting groceries on a shelf.\nR2KI4 20.4 33.6##person watches something on their laptop.\nR2KI4 20.4 25.6##person put down their camera.\nR2KI4 21.7 34.0##person drinking from a glass of water.\nTVBLW 11.0 19.0##person eating a bag of chips.\nTVBLW 11.0 19.0##a person eats from a bottle at the table.\nTVBLW 11.0 19.0##person eating it.\nJXKPA 14.1 23.9##person pours the contents of the bottle into the glass.\nJXKPA 14.1 23.9##person poured it into a glass.\nS2FLE 9.9 17.2##person put it on a shelf.\nS2FLE 9.9 17.2##a person is putting homework on a shelf.\nS2FLE 15.2 25.5##a person is sneezing.\nNALYS 17.6 28.1##person puts it in the box.\nNALYS 0.0 7.1##person opens box of clothes.\nNALYS 11.3 21.0##person starts smiling.\nNALYS 0.0 7.1##person opens box.\nNALYS 11.4 17.9##person carries box out of closet.\n0BX9N 11.8 21.4##person opens bag.\n0BX9N 13.8 24.0##person takes out books.\n0BX9N 11.8 21.4##person they open the bag.\n0BX9N 0.0 9.8##person takes the homework back out of the bag.\n0BX9N 3.5 10.2##a person puts down a bag.\nJIOD0 5.3 19.4##person tidying up the blanket.\nGZMJK 0.7 15.1##a person is sneezing with a towel over their heads.\nGZMJK 27.1 33.0##the person eats a sandwich.\nCW4AU 25.8 35.2##person run around the room.\nCW4AU 25.8 35.2##person runs around the room once.\nCW4AU 18.5 27.9##person they put their shoes on.\nCW4AU 18.5 27.9##the person puts on shoes.\nKC863 9.9 17.8##person puts it on a shelf.\nTPHRR 1.0 8.0##a person is smiling.\nTPHRR 0.0 13.0##a person is sitting in a chair.\nTPHRR 0.0 13.0##person sitting on a chair.\nTW3RS 4.6 10.2##person smiling in a mirror.\n19ZJB 19.9 27.9##another person is putting books by the television.\n19ZJB 7.1 11.9##this person opens a door.\nE1VFZ 0.5 6.0##a person puts a box on a desk.\nVCU4P 0.0 4.0##a woman is smiling at a young guy.\nVCU4P 0.0 4.0##a person is smiling.\nOMFOJ 15.2 21.1##the person opens the window.\nOMFOJ 19.7 25.2##person puts their cleaning supplies down on a nearby shelf.\n8JT6S 0.0 7.5##a person walks to a sofa holding a pillow.\n0YOXV 0.0 5.0##person drinking bottle of water.\n0YOXV 0.0 5.0##a person is drinking water from a bottle.\n0YOXV 2.1 10.0##person is smiling at picture on phone.\nHSH5R 8.7 15.8##person stand up.\nHSH5R 0.0 13.0##person someone is sitting at a table writing on something.\nLZEWE 23.0 28.0##person fixed their hair.\nLZEWE 0.0 12.4##person putting clothes into a box.\n2JR26 29.4 38.0##person they start drinking some coffee from a glass.\n1TW98 12.4 21.5##person closing a door.\nX8A6H 15.2 24.0##the person puts the homework on the shelf.\nX8A6H 1.2 7.8##a person awakens on the floor of the closet.\n8Y7P5 0.0 5.0##one person runs out of the garage.\n8Y7P5 0.0 5.0##person another is running out a doorway.\nWPZQ7 10.0 20.0##person takes off his shoes.\nWPZQ7 10.0 20.0##the person takes off their shoes.\nXF93D 4.0 11.0##person they close the door.\nXF93D 2.5 8.0##a person puts away a broom.\nXF93D 2.5 8.0##person puts broom in the closet.\nXF93D 22.3 25.0##person opens a door.\nY9JWG 0.0 12.3##person washing dishes at the sink.\nY9JWG 1.5 8.0##person looking out the window.\nGK15U 0.7 6.9##a person sits on the sofa.\nGK15U 29.9 33.0##person playing on their phone.\nGK15U 27.9 33.0##person eating a bag of chips.\nLFU36 0.0 12.6##a person holding a laptop puts it on the stove.\nLFU36 0.0 12.6##a person holding a laptop opens the refrigerator door.\nLFU36 2.7 9.1##person opens a refrigerator.\nVTEWM 20.3 29.4##person opens the book.\nVTEWM 1.0 6.8##person sits on the edge of the bed.\nP3EW1 2.1 14.7##person takes off their shoes.\nSSP8C 7.7 17.4##a person awakens in bed.\nJ1YJ6 3.6 13.3##person opens a window.\nJ1YJ6 3.6 13.3##person opens a window sits on a sofa.\nJ1YJ6 3.8 15.8##a person is looking out a window.\nTD6CM 4.0 14.0##person started dressing.\nZCULX 15.6 26.0##the person starts smiling tries to read a book.\nZCULX 15.6 26.0##person reading a book at a desk.\nZCULX 5.8 14.0##person eating a sandwich.\n9X208 14.0 25.6##a person awakens in bed.\n9X208 24.0 30.4##person leaves by opening a door.\n9X208 22.2 26.8##person takes a towel off of a table.\n9X208 23.2 30.9##person walking through the doorway.\n9X208 22.2 26.8##person takes a towel.\n7VSIV 0.0 11.3##a person is standing on a chair.\n7VSIV 0.0 11.3##a person stands on a chair.\nEJJIO 4.8 10.5##a person opens a cabinet.\nEJJIO 4.8 10.5##person opens a cabinet.\nEJJIO 10.4 23.2##person closes the cabinet.\nNOLQ7 18.8 26.8##person they put the dishes down.\nNOLQ7 18.8 26.8##person puts away a dish.\nYMM1Z 14.4 22.2##the person runs to the refrigerator.\nZKOCS 11.8 20.6##the person begins eating from the plate.\nZKOCS 11.8 20.6##person begins to eat.\nZKOCS 9.0 17.5##person sitting down at the table.\nVY1GQ 20.8 29.8##the person starts laughing.\nVY1GQ 18.0 29.9##person looking out the window.\nVY1GQ 9.7 20.8##person smiling at their reflection.\nVY1GQ 0.0 6.3##person wash hands at sink.\n6U082 19.4 25.0##person run off.\n6U082 19.4 25.0##person run out of the room.\nPIMO4 1.8 10.3##a person is running into the room holding a pillow.\nPIMO4 28.1 31.0##person begins playing on their phone.\nQ9H04 1.6 6.9##a person is in the rec room undressing.\nQ9H04 3.2 10.2##person throwing their clothes about.\nQ9H04 8.9 14.7##person b is eating from a bag.\nQ9H04 8.9 14.7##is approached by another person eating a snack.\nQ9H04 8.9 14.7##another person walks in eating a cracker.\nQ9H04 1.6 6.9##a person is undressing.\nWFUK2 12.1 22.0##person they are smiling.\nWR2Q2 0.0 7.6##a person is eating a sandwich from a dish.\nGC1Q1 0.0 5.1##a person opening a door is carrying a towel.\nGC1Q1 6.6 11.6##person they put the towel.\nO45BC 11.1 16.1##person throws some clothes on the floor.\nO45BC 0.6 11.0##a person puts down a laptop.\nO45BC 11.1 16.1##person throws clothing on floor.\nFEWUR 21.2 31.4##person throw their shoes.\nFEWUR 21.4 31.2##person takes off their shoes.\n1U9TF 10.0 19.4##a person begins sneezing.\n1U9TF 10.0 19.4##person starts sneezing.\nIZZ3Y 10.4 18.1##the person opens up a laptop computer.\nIZZ3Y 5.3 11.6##person take it with a glass of water.\nIZZ3Y 10.4 18.1##person opening a laptop.\nIZZ3Y 4.8 12.3##person takes some more medicine with another drink of water.\nIZZ3Y 4.8 12.3##a person takes some medicine with a drink of water.\nU5B14 0.0 3.0##person someone sitting on a chair.\nU5B14 0.0 3.0##a person is sitting in a chair in the bathroom.\nWZ351 0.4 16.2##a person is smiling.\nU03TA 7.1 15.2##person puts the pillow down on a bench.\nU03TA 0.0 13.4##a man holds a pillow.\nJQHIC 6.6 14.8##a person is opening a closet.\nJQHIC 7.0 13.4##another person opens the door to the closet.\nZDX0Y 0.0 6.6##person is looking at a book.\nZDX0Y 5.9 17.3##person puts book in a box.\nXYGU1 0.0 2.9##a person is standing a dining room holding a book.\nXYGU1 0.0 2.9##the person is holding a book.\nXYGU1 11.8 20.5##person opens the book.\nXYGU1 14.6 20.9##person takes a drink from a cup.\nQ9TIN 18.8 24.8##a person is closing a door by holding the doorknob.\nIZCB0 0.0 14.3##person closing a cabinet.\nIZCB0 2.2 12.2##person closing closet door.\nYL612 12.4 18.3##person throws them on to the floor.\nYL612 12.4 18.3##person throwing a pile of clothes onto the floor.\nDU7H1 9.4 32.1##person begins tidying the dining room table.\nDU7H1 1.3 13.2##person talking on the phone.\nDU7H1 39.7 48.0##person is smiling.\n39LQ8 13.3 18.9##person runs away.\n39LQ8 7.4 16.4##person opens a cardboard box.\n39LQ8 13.3 18.9##person runs out of the room.\nGU43L 0.0 6.6##person takes their shoes off.\nSLMQF 4.7 9.4##person puts the clothes down.\nSLMQF 10.9 19.9##a person takes off some clothes.\nSLMQF 22.1 27.1##person takes a book from a chair.\nSLMQF 13.7 20.7##person gets redressed.\nSLMQF 13.7 20.7##a person is undressing.\nSLMQF 4.7 9.4##person than puts clothes back on.\nU3NKR 4.2 11.4##person they put the towel on the door.\nTLSUX 0.0 4.2##person runs into the laundry room.\nTLSUX 0.0 4.2##person is running though doorway.\nGVX7E 0.0 7.2##a person walks through a doorway into a kitchen.\nWV9FZ 4.4 11.2##person eating potato chips.\nWV9FZ 4.4 11.2##person eats the food.\nWV9FZ 3.0 8.2##the person takes food from a package.\n6KDQO 21.3 27.5##person stand up.\n6KDQO 18.6 28.6##person puts the glass on a chair.\nS2EXT 2.7 12.1##person opens the door.\nRRDAM 18.7 24.0##person run from the room.\nRRDAM 15.7 23.0##person closes the door.\nRRDAM 18.7 24.0##person runs out of the room.\nRRDAM 1.9 8.5##a person walks into the laundry room from the doorway.\nRRDAM 1.5 12.7##person holding a pillow.\n41CZS 12.5 19.6##person takes off their jacket they pick a blanket up.\n41CZS 14.3 23.4##person next the open a door.\n41CZS 2.3 15.7##a person undresses by taking off a jacket.\nV34GF 12.9 20.4##person they put the glass on a counter.\nV34GF 12.9 20.4##the person puts the empty glass down on a desk.\n01KML 22.0 35.0##the person begins watching their laptop intently.\nFERH5 3.3 9.4##person is opening medicine cabinet.\nFERH5 3.3 9.4##a person is opening their medicine cabinet.\nFERH5 17.3 22.2##person starts sneezing.\nFERH5 26.0 31.0##person they sneeze as they close the medicine cabinet.\nNOJK1 23.7 29.0##person they take a phone from a chair.\nNOJK1 25.3 33.0##person play with the phone.\nNOJK1 4.5 16.4##a person awakens in a chair.\nNOJK1 23.7 29.0##the person takes their phone from the bed.\nV3RAX 3.5 10.4##a person is undressing under a blanket.\nV3RAX 14.8 24.4##person tidying up dirty clothes.\nV3RAX 9.6 21.2##person straightens clothes than takes a bite of a sandwich.\nV3RAX 20.8 29.0##person finally eating a sandwich in a basement.\nQNKDI 18.3 33.0##person reading a book.\nQNKDI 24.9 33.0##the person holding the book decides to stand up.\nGIC6A 0.0 7.7##person holding a sandwich.\nGIC6A 0.0 7.7##a person enters through a doorway holding a sandwich.\nGIC6A 0.0 2.7##person walks back to the doorway.\nNCDE3 0.0 10.7##the person is eating by the refrigerator.\nNCDE3 0.0 10.7##a person walks into a kitchen eating some food.\nNCDE3 0.0 10.7##person eating something.\nUB3KO 4.2 11.2##person cooking a piece of meat.\nUB3KO 20.8 26.3##person opens their laptop.\nUB3KO 4.2 11.2##person cooks something.\nFIV2P 14.5 19.4##a person is putting small items into a bag.\nAGELP 5.9 13.1##one person opens a window.\nAGELP 18.0 27.4##another person takes a bag.\nAGELP 5.9 13.1##person begins to open the window.\nAGELP 9.8 15.4##person starts sneezing.\nX29NF 1.0 15.9##a person is sneezing.\nX29NF 18.1 31.3##person watches themselves undress in front of a mirror.\nXHGV7 1.0 10.0##a person opens a cabinet.\nX89FW 0.0 18.2##a person looks out a window.\nX89FW 0.0 18.2##a person is looking out the window.\nX89FW 1.3 6.3##a person is laughing at something outside the window.\nX89FW 1.3 6.3##person laughing they move from the window.\nA4SR3 17.1 23.8##the person puts the food aside.\nN7ZBM 8.8 13.6##a person can throw a broom in the living room.\nN7ZBM 8.8 13.6##person throw the broom on the floor.\n56XKK 4.3 12.3##person puts the bag of groceries down.\n56XKK 4.3 12.3##person puts away a few groceries.\nEIB97 0.0 8.1##a person is dressing in clothes from a hamper.\nEIB97 25.6 31.3##person put the bag on a shelf.\nEIB97 25.6 31.3##person put it on the shelf.\nZXHLY 2.0 16.0##person washing the glass.\nZXHLY 2.0 16.0##person washes cup with water that is in the bucket.\nP9D7P 16.2 27.3##person looking out the window.\nP9D7P 16.2 27.3##person looks out window.\nB6S6T 8.1 12.8##person looked out the window.\nB6S6T 8.1 12.8##the person looks out the window.\nB6S6T 1.3 7.5##a person puts a pillow in a clothes dryer.\nGFFJM 24.2 32.0##person closes the door.\nGFFJM 25.4 32.0##person stands up to stretch turns off the light.\nWBATR 27.2 34.0##person undressing in a hallway.\nWBATR 24.6 32.5##person eats it.\nWBATR 24.6 32.5##person eating food.\nWBATR 0.0 6.4##a person is drinking a glass of wine.\nDAS12 27.8 35.0##person puts them on a shelf.\nDAS12 27.6 35.0##person puts shoes into a bag.\nDAS12 27.6 35.0##person puts the bag on a shelf.\nDAS12 17.8 30.3##person puts some shoes in it.\nMUK89 21.1 26.9##person turns off a light.\nW2LM5 0.0 5.4##person talking on a phone.\nW2LM5 0.0 5.4##person talking on the phone.\nJJON5 6.7 14.7##person opens the refrigerator.\nJJON5 3.0 8.3##the person walks through a doorway to the kitchen.\n73X8Q 5.6 11.2##the person drinks from a cup.\n73X8Q 5.6 11.2##person drink from their glass.\n73X8Q 13.2 22.3##person walks through a doorway.\n73X8Q 0.6 6.2##a person takes a phone off the dryer.\nO5N93 23.6 29.0##person he puts the sandwich down.\nO5N93 0.0 2.8##a smiling person is in their pantry eating a sandwich.\nNDX21 9.8 21.6##person holding their phone.\nU0ACD 21.0 28.3##person takes some medicine.\nWPR8G 19.0 26.9##person bend down to put their shoes on.\nWPR8G 19.0 26.9##person begin putting on some shoes.\n869NM 1.0 10.3##the person opens a box.\n869NM 1.0 10.3##person they begin to open a box.\n99SGB 0.0 4.1##the person opened the cabinet.\n9R4AQ 0.0 4.7##a person standing drinking a glass of water.\n9R4AQ 0.0 4.7##the person drinks from the glass of water.\nN00HR 19.1 32.0##person looks out the window.\nN00HR 19.3 24.9##person stand up.\nN00HR 19.1 32.0##person look out a window.\nN00HR 4.1 10.3##a person is sitting in a chair smiling.\nN00HR 19.1 32.0##person walks to look out a window.\nWIOCA 11.9 19.5##person talking on a phone.\nWIOCA 11.9 19.5##encounters person b talking on the phone.\nS7RXC 0.0 12.0##a person runs into their hallway holding a bag.\nS7RXC 3.9 12.3##person they turn on the light.\nS7RXC 3.9 12.3##person they turn on a light.\n7HWK2 37.5 40.0##person a book they put on their sweater.\n7HWK2 6.9 15.0##the person puts the cup down.\n7HWK2 0.0 12.5##person pouring coffee from a pot into a glass.\n7HWK2 37.5 40.0##person look at a book.\n7HWK2 37.5 40.0##person looking at a book.\n7HWK2 0.0 12.5##a person pours coffee into a cup.\nWZA37 8.4 14.8##person eating food off a dish.\nWZA37 0.0 5.8##dressing when another person opens the door holding a camera.\nNK9RX 13.2 28.2##person drinking something from a glass.\nNK9RX 13.2 28.2##person they begin drinking from a cup.\nNK9RX 5.1 10.5##a person takes a camera.\nNK9RX 4.0 9.1##person puts it by a laptop.\n9RA4P 1.1 7.9##a person opens the door to the rec room.\n78FJX 0.0 5.8##a person opens a cabinet.\n78FJX 8.2 17.8##person takes out a book.\n78FJX 8.2 17.8##a person takes a book out of a cabinet.\n78FJX 15.4 22.5##person closes the cabinet.\nZ1LVD 9.6 17.8##person close the window.\nZ1LVD 1.1 9.3##the person opens the window.\nZ1LVD 1.1 9.3##a person opens the window.\nZ1LVD 9.6 17.8##person closes the window.\nZ1LVD 5.3 12.1##person looks out the window.\nV4YCA 14.9 21.8##the person throws the food in the garbage.\nV4YCA 0.0 5.7##a laughing person opens a refrigerator.\nRRZU3 0.0 6.3##a person runs into the room holding a laptop.\nRRZU3 0.0 6.3##a person runs into the living room.\nRRZU3 9.5 21.6##person takes a drink from a nearby cup of coffee.\nRRZU3 3.3 11.0##the person opens the laptop.\n5ZGRN 0.0 6.4##a person opens a cabinet.\n5ZGRN 9.6 15.8##person closes the cabinet.\n5ZGRN 1.2 13.0##a person is putting food in a cupboard.\nNGXV2 28.4 32.0##person opening the book.\nNGXV2 17.0 24.3##the person opens the cabinet.\n5C837 3.9 9.2##person smiling at a book.\n5C837 3.9 9.2##a person is sitting at a desk smiling.\nG4MDY 0.0 11.2##person stands by door of kitchen holding a grocery bag.\nG4MDY 0.7 5.7##the person turns on the light.\nG4MDY 0.7 5.7##the person flips on the light.\n9LONJ 5.2 10.6##person putting the cup on top of the toilet.\n9LONJ 8.2 15.0##person sitting down on chair to unlace boots.\nJYC6G 0.0 13.9##as the person was dressing.\nLK1AE 21.2 26.8##person turns the light off.\nLK1AE 21.2 26.8##person turns off the light.\n13MWT 15.4 22.8##person turning off a light with a remote.\n13MWT 2.6 11.3##person takes off their shoes.\nIACBH 7.0 12.2##the person throws a blanket on the bed.\nIACBH 7.0 12.2##the person throws a blanket onto a bed.\n7JTEK 18.3 24.8##person laughing as they cook at the stove.\n9UDMH 8.5 23.0##person watching the television.\nVE5DN 19.5 28.6##person opens a cabinet.\nVE5DN 20.0 29.2##person put the pillow away in a cabinet.\nVE5DN 28.2 34.0##person begin sneezing by the stove.\nVE5DN 19.4 31.0##person put it on a shelf.\nVE5DN 1.4 11.8##a person awakens on a floor lying on a pillow.\nW74ZY 5.5 15.8##person sits on couch.\nW74ZY 5.5 15.8##the person sits down on the sofa.\n6E6GF 27.6 45.1##person put dishes in a sink.\n6E6GF 5.1 25.7##person begins cooking.\n6E6GF 5.1 25.7##person someone is in the kitchen cooking something.\n6E6GF 4.2 10.1##a person turns the light on over the stove.\n6E6GF 4.2 10.1##person they turn on a light.\n14TJT 2.5 9.1##a person is eating a sandwich.\n8GP10 7.5 17.5##person they are eating a sandwich.\nOD1A5 0.1 11.8##a person is standing in the bathroom washing their hands.\nOD1A5 28.2 32.7##person switched off the lights.\nOD1A5 0.1 11.8##person washed his hands seen in the mirror.\nOD1A5 0.1 11.8##a person washes their hands.\nOD1A5 17.0 23.6##person takes a picture of themselves with a camera.\nOD1A5 28.2 32.7##the person turns off the light.\nOD1A5 28.2 32.7##person cuts the light off.\nPQBGG 4.1 10.1##person looks out a window.\nPQBGG 23.5 41.0##person takes off their shoes.\nPQBGG 26.7 41.0##person sits in a chair.\n7JSAI 2.5 10.9##another person standing near by starts smiling.\n7JSAI 16.5 22.9##person than puts their bag on a glass table.\nKJK56 0.0 14.6##a person is sitting on the sofa holding a phone.\nKJK56 4.8 13.9##the person takes off their shoes,and goes to the door.\nXP305 14.6 19.0##a person is sitting down on a chair.\nXP305 10.4 17.3##person throwing a pillow on the shelf.\nXP305 14.6 19.0##a person is laughing.\nXP305 12.9 17.8##person throw it on the floor.\nIZTHW 29.4 34.0##person laughing at what is on the screen.\nIGVLE 26.9 33.0##person take a picture.\nIGVLE 11.6 27.1##person starts undressing.\nIGVLE 28.0 33.0##person takes out a cell phone.\nVAIVN 0.0 10.5##a person is laying on a sofa reading a book.\nVAIVN 10.8 24.8##person begins to snuggle with a blanket.\nVAIVN 19.4 30.9##person takes off their shoes.\nK6DF2 4.2 10.4##person putting it on a table.\nK6DF2 12.2 24.3##person drinking from the glass of water.\nK6DF2 4.2 10.4##a person is seen putting their water on a table.\nK6DF2 0.0 10.3##a person is holding a glass of water.\nK6DF2 21.4 27.5##person turn on a light.\nK6DF2 21.4 27.5##person turns on a light.\nDY9AE 0.0 9.5##a person eats food.\nDY9AE 14.1 27.0##person starts laughing.\nBOKLM 7.2 16.3##person sits  to  put on shoes.\nBOKLM 26.3 32.0##person open a door.\nBOKLM 7.2 16.3##person puts their shoes on.\nQ166J 7.6 15.0##the person begins opening a book.\nA7OCU 6.2 19.9##person they begin dressing by putting a jacket on.\nA7OCU 19.1 25.0##person putting a dish on a chair.\nD32A4 1.9 17.4##person putting the picture of his daughter on his desk.\nD32A4 5.1 15.0##a person was smiling.\nM91YM 9.9 24.5##person closes a window.\nM91YM 4.2 8.3##person turns on the light.\nM91YM 4.2 8.3##a person turns on the light.\nYPIKO 13.7 27.3##person pours soda into a glass.\nYPIKO 29.6 35.5##person watching television.\nYPIKO 3.0 9.1##a person is sitting in a chair eating food.\nYPIKO 3.0 9.1##person eating a watching television.\nVCV6A 9.4 14.0##person they also take a sandwich out of the bag.\nVCV6A 16.9 21.1##person eat it.\nVCV6A 0.2 4.3##person eating a sandwich.\nVCV6A 5.2 14.7##person take a book.\nVCV6A 9.4 14.0##one person takes a sandwich.\nRTXE6 0.0 5.7##person they are both smiling.\nRTXE6 10.0 16.5##person are laughing at something funny on their phone.\nDPDER 15.0 21.0##the person closes the laptop.\nDPDER 15.0 21.0##person close the laptop.\nDPDER 17.9 24.1##person they get dressed.\n5GITI 0.9 6.4##person they put the towel down.\nF8UU2 3.5 15.1##the person is putting up groceries.\nF8UU2 10.7 16.2##person opens cabinet.\nH94MQ 0.0 4.3##a person opens the window.\nH94MQ 0.0 4.3##a person opens a window.\nC4MP2 24.4 35.1##the person takes a sandwich from their bag.\n2K755 15.1 20.7##another person is undressing from some clothes.\n2K755 15.1 20.7##another person is undressing by the wardrobe.\n5H1P1 0.0 11.4##a person laughing at a show on the laptop.\n5H1P1 0.0 11.4##the person laughs at something on a laptop screen.\nNOFSE 17.1 28.0##person laying down on the floor.\nNOFSE 4.7 16.4##person takes out a pillow.\nWJFGC 9.8 15.6##person they open the box.\nWJFGC 10.4 17.4##person stand as they take the laptop.\nYBO6N 22.2 28.0##person closes a cabinet door in another room.\nYBO6N 15.2 20.8##person turns on a light,opens.\n7W66P 0.0 5.4##person sits on the sofa.\n7W66P 6.6 12.7##a person is watching television.\n7W66P 0.0 5.4##person sits back on the couch.\n7W66P 6.6 12.7##person watches television.\n7W66P 0.0 5.4##person sit down on a sofa.\nN79WJ 15.7 24.8##person put it on a shelf.\n6JKD6 8.8 16.4##a person is standing in the bathroom opening a box.\n6JKD6 4.8 11.2##person putting a mirror into the box.\n6JKD6 11.3 17.5##person takes something out of a box.\n6JKD6 4.8 11.2##person put something back in the box.\nQ4TKG 6.2 10.7##that same person throws the pillow on the bed.\nQ4TKG 6.2 10.7##person they throw the pillow.\nDJG7A 1.9 11.9##person puts some clothes on it.\nQ5ZIL 26.7 34.0##person takes the medicine.\nQ5ZIL 26.7 34.0##person take some medicine.\nQ5ZIL 0.0 6.7##person they begin sneezing.\n8VSV6 9.4 17.0##person sits in a chair.\nEHYXP 2.2 7.7##person smiling the whole time.\nC9VPX 7.8 13.4##the person takes a pillow out of the washing machine.\nC9VPX 7.8 13.4##a person takes a pillow from a washing machine.\n5AR9B 0.0 5.9##person drinking out of a cup.\n5AR9B 0.0 5.9##person drinks from a coffee cup.\nF082Z 16.9 33.0##person takes a picture.\n1JGRO 6.7 21.2##person also eating a burrito.\n81YUE 16.6 25.7##person starts watching television.\n81YUE 20.9 29.7##person begins undressing.\n81YUE 16.6 25.7##a person is lying on a bed watching television.\nWE2PF 0.0 11.6##a person sits in a chair holding a bag.\nWE2PF 7.6 22.6##person they started to try to eat it.\nEG1XK 28.9 35.0##person closes the door.\nEG1XK 2.9 16.4##person pours a cup of water.\nEG1XK 2.9 16.4##person pours water into the glass.\nEG1XK 13.9 22.1##person drinks from the cup two times.\n7XR13 25.0 29.0##person put had put on the table.\nXSS0J 22.4 31.7##person open a laptop.\nXSS0J 22.4 31.7##the person opens their laptop.\nP8UT3 20.6 27.6##person close the door.\nP8UT3 20.6 27.6##person closes the door.\nOLEWM 0.0 9.7##another person is eating.\nOLEWM 0.0 9.7##a person is sitting in a chair eating.\n5U70R 25.8 34.0##the person sitting closes the laptop.\n5U70R 25.8 34.0##the person closes the laptop.\nHKJUR 20.2 27.3##the person is closing the refrigerator.\nHKJUR 1.9 10.9##person opening a refrigerator.\nYQCYJ 5.5 13.0##another person is washing dishes in a sink.\nCK3H7 22.0 30.0##person put clothes away into a wardrobe.\nX3KFE 14.4 21.3##person drinks the water in the glass.\nX3KFE 10.8 17.3##person holds a glass up high.\nX3KFE 10.8 17.3##person they hold up a glass of water.\nX3KFE 0.0 10.9##person takes a picture of theirself with a black camera.\nX3KFE 10.8 17.3##person hold a cup in the air.\nPFCRB 0.0 3.8##person looking out the window.\nPFCRB 0.0 3.8##a person is looking out the window holding a phone.\nPFCRB 15.3 22.3##person start sneezing.\n4CHXK 5.8 12.1##person closes the door.\n4CHXK 20.8 25.0##person throw the glass on the floor.\n4QSRS 0.0 12.7##person is standing holding a book.\n4QSRS 8.3 14.6##a person puts a book down onto the table.\n4QSRS 8.3 14.6##person putting it on a table.\nPW3GG 17.5 23.6##person they open the door.\n27SS2 24.7 31.0##person proceeds to his window to look out.\n27SS2 10.6 17.3##person they take a drink from a glass of water.\n7OXNH 5.1 12.3##person drinks from a white cup of coffee.\nYKT8I 0.0 4.7##a person opens the door to the bathroom.\nYKT8I 0.0 4.7##a person opens the door.\n82ZNR 0.0 10.6##a person is cooking by the stove.\nKFI7N 5.5 10.0##person throws a broom onto the ground.\nKFI7N 5.5 10.0##person they throw the broom on the floor.\nKFI7N 0.0 5.3##a person walks through a doorway into an office.\nEWY6I 0.0 10.2##a person drinks a cup of coffee.\nAAS9S 19.4 29.8##a person puts a small towel on the doorknob.\nAAS9S 18.9 25.6##person take a towel.\nO1ILB 12.4 18.0##person runs out.\nO1ILB 12.4 18.0##a person runs into the garage.\nO1ILB 12.4 18.0##a person comes running into the garage.\nO1ILB 12.4 18.0##person runs back out.\n8M0ZV 27.5 31.0##a second person walks in drinking a glass of water.\n8M0ZV 27.5 31.0##another person walks in drinking a glass of water.\n94KP4 13.9 19.3##person take a light.\n94KP4 0.0 12.5##a person stands in a room eating some food.\n94KP4 7.9 12.9##person they put the dish down on a table.\nFQDD1 0.0 17.0##a person is undressing in the doorway of the bathroom.\nFQDD1 0.0 17.0##a person is undressing in a doorway.\nHB4AB 5.7 10.6##person opens a cabinet.\nHB4AB 16.5 24.0##person laugh when they drop something.\n0FO58 1.3 13.1##a person is walking through a hallway sneezing.\n0FO58 1.3 13.1##a person is sneezing.\n0FO58 1.3 13.1##a person is sneezing in the doorway.\n9335E 23.8 35.4##person begin cooking on a stove.\n9335E 23.8 35.4##person stands by the stove to do some cooking.\n9335E 37.5 43.0##person opens a cabinet.\n9335E 0.0 23.3##a person is sitting in a chair making a sandwich.\n9335E 0.0 23.3##a person sits in a chair.\n9335E 23.8 35.4##person cooking on the stove.\n9335E 1.1 21.4##person makes a sandwich.\n6KUUU 21.0 32.0##person they put boots on a eat a sandwich.\n6KUUU 20.8 32.0##person starts eating it.\nQH3FK 20.9 32.0##person they drink water from the glass.\nN9D4C 8.3 16.2##person snuggle their pillow.\nN9D4C 8.3 16.2##person snuggled with a pillow.\nQYSER 1.7 7.8##person lays down on a couch eating a sandwich.\nQYSER 1.7 7.8##person messily eating a sandwich.\n5CT0V 0.0 9.8##person playing on a phone.\nAIT3V 22.1 28.9##person opens a door.\nR1OUC 29.9 41.0##person wards they begin washing down a mirror.\nR1OUC 2.6 10.3##person opens the washer door.\nOZIJ7 15.3 23.8##person laughs at a glass sitting on a table.\nOZIJ7 15.3 23.8##a person in the bedroom is laughing.\nTDNV3 9.6 16.5##a person is sitting at the table eating food.\nRJIEO 4.4 14.6##person sits the bag of groceries on the bed.\n83J53 11.2 21.7##second person walks down stairs holding a cup.\nBKEYX 5.2 11.5##a person puts shoes onto a shelf.\nBKEYX 23.3 32.1##person takes a drink from a bottle.\nRO8N5 19.5 32.0##person drinks from the glass.\nAEJ4T 6.4 14.0##person a opens a book.\n201W8 12.8 18.0##a person closes the book.\n201W8 0.1 5.6##a person opens a book in the bathroom.\n201W8 12.8 18.0##person closes the book.\nOXUKR 14.4 21.1##person starts eating.\nOXUKR 14.4 21.1##person eats it.\nOXUKR 0.0 15.5##person watching television.\nZSHV8 13.5 31.2##a person is putting dishes on a shelf.\nZSHV8 29.6 37.0##person walks through a doorway.\nIXY95 13.0 18.0##person opens a refrigerator.\nIXY95 1.0 10.0##a person is looking at a picture.\n1X765 30.4 38.0##person removes clothes from a washing machine.\n1X765 0.0 7.2##person eating a sandwich.\nJLQLC 0.0 11.3##person takes a picture of the wall.\nJLQLC 0.0 11.3##person they take a picture.\nDHFA6 27.3 38.0##the person begins snuggling up with a blanket.\nDHFA6 20.8 39.2##a person sits on the sofa.\nDHFA6 15.0 22.6##person putting their feet up on a box.\nURG8B 0.3 5.8##person opens a book.\nURG8B 1.3 9.1##person eats a cookie.\nURG8B 1.3 9.1##person eating a snack.\n0CGMQ 22.5 27.9##person so they stand up.\nT35WB 16.4 23.5##person they begin laughing at the movement of the food.\n48IQL 6.6 13.4##a person is smiling.\n48IQL 16.0 22.7##person they take a cup of coffee from the shelf.\n48IQL 24.5 30.1##the person walks to a chair to sit.\n3KZF7 11.6 24.7##the person dresses by putting on a jacket.\n3KZF7 4.8 9.9##a person throws some clothes.\nDHR5F 0.0 7.5##a person opens a door.\nDHR5F 12.0 16.9##person takes the phone in hand.\nDHR5F 8.3 14.3##person turns on the light.\nDHR5F 8.3 14.3##a person enters a room turns a light on.\nDHR5F 8.3 14.3##the person turns on the lights.\nVP3WN 0.0 5.0##a person awakens at a desk.\nV10LX 0.0 10.4##a person drinks from a glass.\nV10LX 8.7 15.5##person puts glass on floor.\nV10LX 0.0 10.4##person drinking from glass.\n38QA4 0.0 12.8##a person begins undressing.\n38QA4 23.4 31.0##person walks out through a doorway carrying the dishes.\n38QA4 21.7 30.2##person holding a glass of milk.\n38QA4 23.4 31.0##person walk through the doorway.\n38QA4 0.0 12.8##a person is undressing in their bathroom.\nTC3BF 9.1 15.5##person laugh at something on the screen.\nHWL2J 0.0 8.4##a person is sneezing.\n9HI9D 4.8 15.3##the person opens the cabinet door.\n9HI9D 23.9 30.4##eats some anti-acids the person has taken out.\n9HI9D 0.9 7.6##person putting some shoes on the floor.\n9HI9D 0.0 8.0##a person is holding shoes that they have taken off.\nPRQSR 20.4 27.2##person closes a window.\nPRQSR 1.6 9.7##a person takes their shoes off.\nPRQSR 1.6 9.7##person guy walking takes off shoes.\nGD9BQ 18.7 28.7##a person runs in.\nGD9BQ 18.7 28.7##person runs out the door.\n3OQ8M 2.5 11.1##person throws the clothes on the floor.\n3OQ8M 2.5 11.1##the person was throwing the clothes.\nVX7P0 0.0 15.0##person they are snuggling with a pillow against their chest.\nVX7P0 0.0 15.0##person snuggling with a pillow.\nGX4B1 10.9 16.4##one person throws pillows.\n170OQ 12.1 18.4##person he puts the sandwich on the desk.\nP3XT7 27.8 34.0##person puts the towel on a bed.\nP3XT7 11.5 18.5##the person takes a drink from a water bottle.\nX0JKJ 29.8 34.0##person picks up a camera to take a picture.\nX0JKJ 29.8 34.0##person takes a picture.\nXAX61 5.5 10.5##a person is opening bags of groceries.\nXFS7Z 27.9 41.6##person puts them on a table.\nXFS7Z 37.1 46.7##person takes some medicine.\nIJ587 20.5 29.0##person taking a few drinks from a cup.\nC41G7 22.4 29.2##a person is tidying the hallway with a broom.\nKBPI3 0.1 10.7##person is putting blanket on desk.\n6YZOL 20.4 29.1##person closing a doorway.\n6YZOL 20.4 29.1##person closes a door.\nESM8H 16.8 22.0##person throws his shoes.\nESM8H 16.8 22.0##person throws a pair of shoes.\n7E6AB 10.5 17.0##person closes the refrigerator door.\n7E6AB 10.5 17.0##person closed the refrigerator door.\n1W28T 4.5 12.8##a person dresses by putting a shirt on.\n1W28T 8.8 14.2##person sneezing they begin to self groom.\n1W28T 4.5 12.8##a person is dressing in front of a window.\n0RJKT 15.4 28.0##person holding their phone.\nAZTTC 25.7 31.0##person put the book in a cabinet.\nAZTTC 25.7 31.0##person puts the book down on a desk.\nAZTTC 12.8 22.0##person they start closing the door.\nAZTTC 2.7 14.5##person someone holding a book.\nAZTTC 2.7 14.5##a woman holding a book walks into a room.\nAZTTC 12.8 22.0##person closing a door,.\nAZTTC 12.8 22.0##person closes the door behind her.\nISHJ4 10.4 16.8##a person opens a door.\nISHJ4 0.0 5.8##a person closes a door.\nQI3JB 2.9 19.7##the person is laughing at the tv.\nMC50M 2.7 9.2##a person puts clothes on the floor.\nURWJL 0.0 7.3##a person opens the door to the bedroom.\nURWJL 8.5 14.2##person sits in bed for a few seconds.\nURWJL 8.5 14.2##person sits on the bed.\nI4K7B 13.4 18.9##person put the pillow on the shelf.\nI4K7B 13.4 18.9##person puts a folded blanket back on the shelf.\nN9TRF 14.0 23.8##person fixing their hair.\nN9TRF 13.1 18.5##person put it on top of the table.\n5JIGM 2.8 16.4##a person is in a kitchen washing dishes.\n5JIGM 7.1 15.9##person washes a glass out at the sink.\nY6419 22.7 28.9##a person in the kitchen is pretending to wash dishes.\n4HGD7 19.2 26.5##another person runs in with a camera.\n4HGD7 19.2 26.5##another person runs in holding shoes.\n4HGD7 19.2 26.5##some other person comes running into the bathroom.\nDLBRW 24.8 32.8##person walks out of the room closing the door.\nDLBRW 24.8 32.8##person closing the door.\nQO6RV 0.0 6.5##a person walks through a doorway eating food.\nQO6RV 9.3 23.0##person pours a glass of water.\nQO6RV 23.2 30.0##person turning off the light.\nQO6RV 23.2 30.0##person turns off the light.\nQO6RV 2.4 12.9##the person takes a glass.\n4WUNC 27.0 39.0##person eating it.\n4WUNC 0.0 6.7##the person opened the refrigerator.\n4WUNC 0.0 6.7##person x opened the refrigerator.\n4WUNC 27.0 39.0##person eating their lunch.\n4WUNC 25.9 39.0##person eating the sandwich.\nZX1R7 12.6 20.0##one person takes a pillow.\nCVPQR 0.0 9.0##a person is in a basement opening their laptop.\n44Y6S 9.3 15.2##person takes a camera out of a box.\n44Y6S 35.4 41.3##person puts the camera on the desk.\nUCFCB 27.2 33.0##person puts laptop away in bag.\nUCFCB 22.2 26.7##person closes laptop.\nUCFCB 27.2 33.0##person puts a laptop in a bag.\nK21RO 21.2 29.1##person puts the book back on the shelf.\nK21RO 25.1 31.0##person looked at the book.\nK21RO 25.1 31.0##person closed the cupboard door.\nGRJG1 12.5 17.6##person starts undressing.\nCCCUJ 11.6 18.9##person close the door.\nCCCUJ 24.6 32.2##person put their laptop down off to the side.\nCCCUJ 8.6 13.5##person turned on a light.\nCCCUJ 8.6 13.5##person they turn on the light.\n29C6X 13.6 23.0##person throw it on the floor.\nLKSBL 0.0 4.2##a man opens a cabinet.\nLKSBL 4.0 9.7##person opens the refrigerator.\nLKSBL 0.0 4.2##the person opens a cabinet.\nLKSBL 0.0 4.2##person opens another cabinet.\n3GY40 7.4 15.7##another person is throwing a pillow.\n3GY40 6.0 11.0##a person is sneezing on dishes.\n3GY40 7.4 15.7##a second person throws a pillow at the first person.\n3GY40 15.0 21.0##a person is sitting at a table with some food.\nUR7C8 5.2 13.8##the person takes their shoes off.\nUR7C8 1.1 8.4##person closing the door.\nUR7C8 1.1 8.4##person closes the door in the hallway.\n8Y4YD 18.0 32.0##another person holds a camera.\n1TWH6 5.0 10.0##a person takes a box.\n1TWH6 5.0 10.0##a person takes something out of a box.\n1TWH6 18.0 31.0##person look out the window.\n1TWH6 5.0 10.0##a person takes a mug out of a box.\n1TWH6 18.0 31.0##person looks out the window.\n28D7L 14.0 22.0##the person puts the coffee on the shelf.\n28D7L 14.0 22.0##person puts the cup onto a shelf.\n4X2JC 20.1 32.0##the person begins eating the food in the bowl.\n4X2JC 20.1 32.0##person start eating it.\n129SP 27.5 32.0##person closes the door.\n129SP 27.5 32.0##as the person was closing the door.\n5R83A 5.7 12.9##the person puts the towel on a stair.\n5R83A 0.0 11.0##a person is standing by the stairs holding a towel.\n5R83A 5.7 12.9##person a broom they put the towel on the stairs.\nZWY3E 0.0 4.7##person sitting on their bed.\nZWY3E 0.0 4.6##a person puts on a pair of shoes.\nZWY3E 0.0 4.6##a person is putting on their shoes.\nAYXFY 15.8 22.1##person eating cookie.\nAYXFY 15.8 22.1##person eating something.\nSTDCJ 8.9 15.1##person opens a cabinet.\nSTDCJ 0.0 12.4##person watching a video that is playing on their laptop.\nSTDCJ 0.0 12.4##person watching a laptop.\nL57L2 14.7 26.2##person putting it in a box.\nL57L2 22.8 31.8##person they close the box.\nL57L2 22.8 31.8##person closes the box.\nIQM7A 0.0 11.6##there is a person washing their hands in a sink.\nIQM7A 0.0 11.6##a person is standing in their bathroom washing their hands.\nIQM7A 0.0 11.6##a person washes their hands in the sink.\nX7R9N 4.9 12.7##person drinking a glass of water.\n8ZF5S 0.0 12.6##a person starts washing a table.\nYX3W8 3.1 7.6##a person is throwing clothes on a chair.\nSQYTO 0.5 4.6##person turns off the lights.\nSQYTO 0.0 4.0##person watching television.\nSQYTO 0.5 4.6##person turning a light off as they exit the room.\nSQYTO 0.5 4.6##person turning off a light on the way.\nSQYTO 0.0 4.0##a person sits on a sofa watching television.\nSQYTO 0.0 4.0##a person watching television.\n8V9IX 3.9 8.7##person they put the dishes away in a cupboard.\nN8WK8 17.4 22.0##person they close the book.\nAVA41 1.5 9.3##a person closes the bathroom door.\nAVA41 1.5 9.3##person closes the door.\nAVA41 15.3 21.8##person they open the medicine cabinet.\nAVA41 30.3 33.0##the person takes a bottle of medicine from the cabinet.\nSTYTN 15.6 24.3##person sit on the floor.\nSTYTN 15.6 24.3##person sits on the floor.\nSTYTN 10.0 16.3##person they put the bag back in the box.\nSTYTN 15.6 24.3##person sitting on the floor of a pantry.\n9KGIR 0.8 6.6##person opens a cabinet.\n9KGIR 0.8 6.6##person opens a cabinet door.\nR5L98 15.9 26.8##person closes the door.\n6JGXL 13.0 20.9##person take some medicine.\nQ3UAN 0.0 15.0##a person is washing dishes in the sink.\nQ3UAN 0.0 15.0##a person is washing dishes.\nQ3UAN 21.2 32.0##person pours some of that into a cup.\n463UL 0.0 8.9##a person is undressing.\nAWITI 9.9 15.9##person take pillows off the bed.\nAWITI 23.4 29.5##person put them on a shelf.\nAWITI 0.0 10.4##person turn o the light.\nAWITI 0.0 10.4##person turns on the light.\n1O6PH 14.8 22.4##person he walks over to the closet door.\n1O6PH 14.8 22.4##person they close the closet door.\n1O6PH 5.9 14.5##a person is seen putting a pillow on a shelf.\n1O6PH 0.0 14.5##the person is holding a pillow.\nXBRO4 24.7 30.1##person runs out of the study with a glass.\nXBRO4 24.7 30.1##person run out of the room.\n7QWL3 18.4 33.0##person looks out the window.\n7QWL3 15.1 20.4##a person is standing in the closet reading a book.\n7QWL3 15.1 20.4##person they close the book.\n7QWL3 15.1 20.4##the person closes the book.\n7QWL3 18.4 33.0##person look out the window.\nQ57HC 31.0 39.2##person open a window.\nQ57HC 31.0 39.2##person they open a window.\n79YH2 20.8 32.0##person open the door.\nG3OUM 22.8 27.8##person throws it on the floor.\nG3OUM 3.4 17.7##a person is cooking food on the stove.\nG3OUM 3.4 17.7##a person is cooking on the stove.\nG3OUM 18.7 23.1##person takes a broom.\nP2UBC 5.7 13.7##person begin sneezing.\nP2UBC 28.8 33.5##person turn off the light.\nP2UBC 4.5 13.0##person proceed to put on a pair of shoes.\nP2UBC 4.5 13.0##person they put on their shoes.\nP2UBC 28.8 33.5##person turning off a light.\nGN4SJ 0.0 6.6##person eats a piece of food.\nGN4SJ 0.0 6.6##person eats something.\nGN4SJ 5.4 21.5##person puts the bag in a box.\nGN4SJ 5.4 21.5##the person put their hand in the bag.\nGN4SJ 0.0 6.6##one person eats from a bag.\nGN4SJ 2.4 8.2##a person is holding a bag.\n6MUM6 5.5 12.0##the person pours some coffee into the cup.\nD19IR 11.5 18.1##person stand up with a bag of groceries.\nYQSN8 3.4 13.8##another person is closing a window.\nYQSN8 3.4 13.8##another person closses the window.\nYQSN8 23.4 32.0##the other person looks at the window.\n5K0KJ 18.0 30.0##person holding a phone in the laundry room.\n1DNAX 0.4 6.9##person is walking to open closet door.\n1DNAX 0.4 6.9##the person is opening the doors to the closet.\n1DNAX 6.9 12.0##person turns on the light.\n1DNAX 13.2 20.9##person starts sneezing.\n1DNAX 6.9 12.0##person turns light on grabs broom.\nO76N2 15.7 24.2##person putting the bag on a table.\nO76N2 0.0 9.5##a person opens a bag.\n8BCI8 0.0 10.6##a person is cooking food on a stove.\n8BCI8 21.6 29.4##person opening a refrigerator in a kitchen.\n8BCI8 28.6 35.9##person take some food from the refrigerator.\n36VYU 0.0 7.0##a person puts a cup of coffee onto the table.\nZD3GI 25.0 44.0##person eating a sandwich in a living room.\nZD3GI 9.9 21.2##the person pours some wine into a glass.\nZD3GI 20.9 27.9##person putting the bottle on the floor.\nZD3GI 9.9 21.2##person pouring a glass of wine.\nOB9H3 2.1 13.9##a person playing with a laptop.\n30LGT 0.0 13.6##the person sat on the floor reading a book.\n30LGT 0.0 13.6##person reading a book.\nUX8NQ 1.8 12.8##a person is standing in front of a sink laughing.\nUX8NQ 1.0 12.9##a person is washing dishes in a sink.\nUX8NQ 1.0 12.9##person washing dishes.\nBQAUC 10.1 15.6##person runs off.\nBQAUC 2.1 8.0##a person puts shoes on a shelf.\nBQAUC 2.1 8.0##the person puts the shoes away.\nVLZ40 0.0 9.3##person takes off shoes.\nS47DI 24.3 31.0##person they close the fridge door.\nRH2YW 12.1 18.3##person open a book.\nRH2YW 2.3 8.5##person eating a sandwich.\nRH2YW 2.3 8.5##a person standing next to a table eats a sandwich.\nZAJAJ 3.6 9.1##a person snuggles against a big pillow.\nZAJAJ 0.5 10.0##person holding a pillow.\nIGOQK 0.0 5.3##person closing door behind them.\nOZCGO 2.3 7.2##a person throws a pillow on the floor.\nOVHFT 8.2 17.5##person takes off their shoes.\nOVHFT 6.3 12.9##person turns on a light.\nWYYUD 2.5 15.1##a person awakens from bed.\nWYYUD 26.7 35.0##person gets undressed.\nWYYUD 26.7 35.0##a person is undressing in bed.\nWYYUD 25.1 31.9##person throws their clothes on a rack.\n706BT 0.0 5.5##a person is seen eating a sandwich in the doorway.\n706BT 0.0 5.5##a person stands in a doorway eating a sandwich.\nU45LK 29.3 36.0##person they close the door.\nU45LK 1.7 8.8##a person is putting clothes away in a wardrobe.\n2Q5Y2 0.0 14.6##a person holding a blanket walks into the laundry room.\n2Q5Y2 3.9 15.0##person put their blanket into the washer for washing.\nQOWXK 17.8 34.7##person they are dressing by putting on a jacket.\nQOWXK 31.2 37.0##person reaches for a picture.\nRBNLA 21.6 28.5##person close the door.\nRBNLA 25.4 32.0##person turning off the light.\nD0YWV 6.7 13.2##person closes the door.\nD0YWV 6.7 13.2##a person is walking through a door the closing it.\n7R8ZU 14.0 20.8##the person closed the laptop.\n9B93K 20.0 25.7##the person puts the sandwich back.\n9B93K 27.9 36.6##person turning off the light behind them.\n9B93K 20.0 25.7##person they put the sandwich down.\nNTYC3 22.1 31.6##person opens a laptop.\nNTYC3 31.2 38.0##person started to laugh.\nNTYC3 22.1 31.6##person open a laptop.\nNTYC3 22.1 31.6##person they opened their laptop.\nWOOYQ 5.6 11.7##a person holding a towel walks through the doorway.\nWOOYQ 16.5 23.8##person takes a broom.\nRUOOY 13.1 19.8##person take a picture with their phone.\nRUOOY 13.1 19.8##person take a picture of themselves.\nE9EKR 15.2 19.7##a person throws their shoes onto the bed.\nE9EKR 0.0 10.7##a person is sitting on a bed.\nXAOUP 0.0 6.1##person closing the door.\nJ3V1D 19.6 25.6##person takes off their shoes.\nTSBB8 6.0 12.3##person turns the light off.\nE2Q68 2.6 13.5##person starts opening a bag full of groceries.\nO6V4U 0.0 14.5##person a is in a bedroom getting dressed.\nO6V4U 0.0 14.5##a person is dressing themselves.\nO6V4U 24.0 30.0##person throws a pillow onto a bed.\nO6V4U 13.0 18.2##person takes a pillow.\nOOWJ9 0.0 14.5##person reading a book.\nOOWJ9 15.2 25.9##person they pour a glass of water.\nOOWJ9 0.0 14.5##person they read a book.\nOOWJ9 15.2 25.9##person the pour a glass of water.\n0MDYC 18.3 24.8##the person puts the clothes on a chair.\nG81JB 18.6 30.7##person begin to tidy up the floor.\nG81JB 3.7 11.3##a person is cooking on a stove.\nG81JB 3.7 11.3##a person is cooking in a kitchen.\n1YTD7 24.4 30.9##person opens the door.\n1YTD7 24.4 30.9##person open a door.\nCMEA6 0.0 5.9##a person closes the door in the entryway.\nZCH7N 14.7 27.9##person they being playing with their phone.\nZCH7N 2.2 15.5##person begins eating it.\nZCH7N 12.1 17.9##person take out their phone.\nZCH7N 2.1 15.5##a person is eating a sandwich.\nQLKSV 23.2 28.7##one person is wrapped in a blanket eating.\nQLKSV 23.2 28.7##person eating something.\nFUT86 26.3 36.1##person eats a sandwich.\nFUT86 26.3 36.1##another person eats from a bag of groceries.\nRLS2I 3.8 8.4##person opens closet.\nUNOW9 11.6 22.8##person takes off shoes.\nUNOW9 11.6 22.8##person they take off their shoes.\nUNOW9 11.6 22.8##person takes off their shoes.\nMU54W 17.9 27.0##person snuggling a big fluffy blanket.\nMU54W 17.9 27.0##a person is snuggling with a blanket.\nMU54W 0.0 12.0##a person is holding a vacuum.\nFDOY9 26.4 35.7##person turning off a light in an entryway.\nFDOY9 5.7 18.7##a person is pouring a cup of coffee.\nFDOY9 26.4 35.7##person turns off the light.\nYMFWC 13.7 20.4##person puts shoes outside the door on the floor.\nZJ54N 18.7 27.6##person begin undressing by taking off a jacket.\nQEZX9 11.0 16.1##person turns off the light.\n9Q1N7 7.5 17.5##a person is running to the bed.\n9Q1N7 7.5 17.5##person run down the stairs.\nWKDPZ 21.5 26.5##the person puts the picture on a table.\n6FYXS 8.0 13.8##a person opens a closet door.\n6FYXS 5.1 12.5##person takes out a pillow.\n6FYXS 7.4 17.2##person snuggling with the pillow.\nSQKR0 8.3 14.5##person runs back down the hallway.\nSQKR0 8.3 14.5##this person runs back down the hall way.\nSQKR0 8.3 14.5##person running down the hall.\nSQKR0 8.3 14.5##person continues to run.\nSQKR0 10.6 18.2##person takes off their shoes.\nCDNNO 10.9 20.2##person the other to tidy up a shelf.\nUPWM5 18.1 26.5##the person puts down the box.\nUPWM5 18.1 26.5##person they put the box on the floor.\nTVS1P 21.4 25.9##a person is standing up to turn off the light.\nTVS1P 21.4 25.9##person turning off the light.\nVXRCZ 0.0 11.6##the person is looking out the window.\nVXRCZ 7.9 15.6##person eat a sandwich.\nVXRCZ 0.0 11.6##a person laughs as they look out the window.\nJUGS8 13.7 23.7##person a is holding a bottle of medicine.\nJUGS8 3.8 14.8##person b is undressing.\nJUGS8 3.8 14.8##watching another person undressing.\nL62J5 7.5 14.0##the person takes some food.\nPHIIX 1.0 11.7##person puts the pillow on the shelf.\nETAFB 13.4 18.9##person opens the refrigerator looking for food.\n5AHQV 0.1 4.8##person angrily turns on the lights.\n5AHQV 0.1 4.8##person turning on the light.\n5AHQV 6.3 14.6##person throws the pillow on the floor.\n5AHQV 6.3 14.6##the person throws a pillow into the corner.\nOFNQV 23.4 30.9##person throws the book on the floor.\nDGSBQ 8.1 20.0##the person puts the food away on a shelf.\nTYKVA 12.0 25.0##person puts the pillows back on.\nTYKVA 12.0 25.0##person puts a pillow on the bed.\nPZQIN 0.0 3.4##a person opens the pantry door.\nPZQIN 15.4 22.6##person closing the door.\nE7DKD 0.3 8.5##a person is opening a bag.\nB53VP 13.2 18.8##person begin sneezing into their hands.\nB53VP 0.0 7.9##a person sits on the floor holding a pillow.\nB53VP 0.0 5.5##person they take the pillow from the floor.\nH8QM1 0.3 5.1##another person is sneezing in pillow.\nHAR5P 25.2 33.0##person running up the stairs.\nHAR5P 25.2 33.0##person runs to the top of the steps.\nHAR5P 0.0 10.1##a person awakens on the stairs.\nHAR5P 16.3 23.5##person fix thier hair.\nT0PJG 2.3 10.9##a person walks through the doorway.\nT0PJG 7.6 13.5##person sits on the couch.\nT0PJG 29.5 34.5##the person puts the folded towel on the shelf.\nT0PJG 7.6 13.5##sits on the bed next to a person lying down.\nT0PJG 7.6 13.5##the person who entered the room sits on a bed.\nT0PJG 29.5 34.5##person puts it on a shelf.\nV3CWF 1.1 9.4##a person is seen putting a book on a shelf.\nV3CWF 1.1 9.4##a person puts a book on a shelf.\nRSRZ0 19.4 28.0##the first person opens the window.\nRSRZ0 0.0 9.9##a second person is holding a broom.\nRSRZ0 19.4 28.0##person opens the window.\nWZVHJ 16.8 24.9##person eating a sandwich.\nWZVHJ 15.2 23.4##person eating food.\nTEPWB 3.5 16.1##person put some clothes in it.\nE6A0Y 5.0 11.0##person put some clothes in the washer.\nDSXEN 19.1 32.0##person make a sandwich.\nDSXEN 0.0 10.5##person takes out some food.\nDSXEN 0.0 10.5##a person takes food from a cabinet.\nRAQNI 23.6 33.0##a second person is looking out a window.\nRAQNI 23.6 33.0##another person is watching out a window.\nRAQNI 23.6 33.0##another person stands looking out of a window.\nRAQNI 0.0 15.7##a person is tidying up a pile of clothes.\nRIUEI 3.7 12.0##person eating a sandwich.\nRIUEI 3.7 12.0##a person is drink walking eating a sandwich.\nRIUEI 13.1 19.6##person they turn on the light.\nRIUEI 24.1 29.8##person throw it in the floor.\n2I871 19.2 32.0##person runs away dancing.\n2I871 19.2 32.0##another person running in to the house.\n2I871 19.2 32.0##person running out of the house.\nLSVHK 15.3 20.7##a person takes a towel away from the door.\nLSVHK 15.3 20.7##a person takes a towel off a door.\nAXKNF 6.4 12.5##person pours it into a cup.\nAXKNF 6.4 12.5##a person is pouring some water into a glass.\nOM5R4 14.0 19.0##person opens closet.\nOM5R4 5.0 11.0##person after awakening.\nDNXBJ 13.7 22.5##a person is closing the cabinet.\nR5MFX 8.6 14.4##person puts a dish on the table.\nE3S4O 18.8 32.0##person turns on light.\nE3S4O 18.8 32.0##person plays with the light switch.\n3NE5P 0.0 10.0##a person is cooking on the stove.\n3NE5P 0.0 10.0##a person is cooking food at a stove.\nH1XBH 8.3 14.7##that same person eats some chips.\nH1XBH 8.3 14.7##person begins to eat some food.\nH1XBH 0.0 6.8##a person is holding a pillow.\nH1XBH 1.2 7.2##a person is putting a pillow on a sofa.\n5Y3VW 8.0 14.3##the person puts the towel over the shower curtain.\nO8BH6 5.2 12.8##person laughing at it.\n3ZHEX 0.0 5.3##a person opens a door.\n3ZHEX 0.0 5.3##person a door opens.\n3ZHEX 1.4 9.4##person closes the door.\n3ZHEX 7.3 14.5##person eating a sandwich.\n3ZHEX 0.1 7.1##person drinking a cup of coffee.\n3ZHEX 7.3 14.5##person they eat a bite of their sandwich.\nUG0TA 0.0 5.2##a person open their pantry door.\nUG0TA 16.3 22.8##person close the door.\nB4F0T 18.7 28.6##person sits down on floor.\nGYB9U 0.0 5.6##a person is playing with their phone in bed.\nPW6CO 17.9 29.0##a person awakens on the floor of the hallway.\nAXKNP 0.0 8.1##a person is smiling.\n2WGSN 0.0 11.1##a person drinks from a glass.\n2WGSN 0.0 11.1##a person drinks from a cup.\nCPF9H 3.9 9.8##person laughing as they flips the page.\nDQEC3 27.8 31.0##person puts groceries away in the pantry.\nDQEC3 0.0 7.1##person puts them on a shelf.\nDQEC3 11.7 17.2##person opens bag of chips.\nDQEC3 27.8 31.0##person begins food taken from it.\nDQEC3 11.7 17.2##a person opens a bag.\nY9SMX 20.2 44.1##person looking outside window.\nY9SMX 43.1 50.0##person opens refrigerator's door.\nY9SMX 0.0 19.1##a person is pouring a cup of coffee.\nY9SMX 43.1 50.0##person opening the door of the refrigerator in a kitchen.\nY9SMX 0.0 19.1##person pours coffee into cup.\nCTOQR 21.3 25.8##the person turns off the light as they leave.\nCTOQR 15.4 21.8##person smiling in the mirror.\nCTOQR 21.3 25.8##person they turn off the light.\nNODDU 20.9 31.0##person takes a picture.\nPXYN8 0.0 9.2##another person runs around holding a pile of clothes.\nN67PL 15.4 21.6##person the are laughing.\nN67PL 15.4 21.6##person starts laughing.\n71QKB 0.0 3.6##a person eats a sandwich in the kitchen.\n71QKB 0.0 3.6##a person eating a sandwich.\nRYDUK 3.5 8.3##a person begins undressing.\nRYDUK 4.3 9.1##person puts the clothes in the closet.\nJ39ZC 25.8 36.0##a person is eating something from a box.\nJ39ZC 25.8 36.0##person someone is standing by a door eating something.\n75AX5 0.4 7.6##a person runs into the kitchen.\n75AX5 2.2 12.3##person begins cooking food.\n75AX5 42.3 47.6##person opens the door.\n75AX5 36.7 47.9##the person opens the refrigerator.\n75AX5 0.4 7.6##a man running into the kitchen.\nDML20 0.0 6.4##a person takes off their shoes.\nABK63 17.7 26.3##the person drinks from a glass of water.\nTBU3U 7.5 14.6##person takes a pair of shoes from the chair.\n67RSR 5.6 16.4##person after awakening.\nTE5P7 0.0 4.7##a person is opening the refrigerator.\nTE5P7 6.7 13.8##person pouring a drink in a glass.\nAKALB 14.4 20.4##person throws a pillow.\nAKALB 14.4 20.4##person begins throwing their pillows at the table.\nBD4P9 17.8 24.3##person they stand up.\nBD4P9 21.7 28.4##person turning on the light.\nBD4P9 21.7 28.4##person turn on a light.\nBD4P9 21.7 28.4##person turns on a light.\nJ6TVB 21.6 31.0##next the person begins to play with a phone.\nJ6TVB 10.8 21.4##that same person puts the glass down.\nJ6TVB 0.0 3.5##a person takes a cup of the table.\n7CXYB 0.0 20.9##a person is holding a glass.\nX1RBM 20.9 35.0##person gets up ant eats something over the sink.\nX1RBM 20.9 35.0##person begings to eat on top of the sink.\nX1RBM 20.9 35.0##person eats food off a sink.\nWT2C0 21.6 32.0##person eating a sandwich.\nWT2C0 21.6 32.0##person use it to wipe the sweat from their forehead.\nPSPMA 20.4 28.8##person take a bit out of their food.\nPSPMA 24.9 32.0##person eats food.\n7BL9D 4.2 11.5##a person is eating a sandwich.\n7BL9D 4.2 11.5##person eating something.\nAIOTI 0.0 10.0##the person was reading a book in the shower.\nAIOTI 0.0 10.0##a person is reading a book in the bathroom.\nFMJZQ 0.7 9.6##a person is laughing.\nA5PL0 17.6 31.0##person opens up a bag of groceries to look inside.\nMV9N4 3.7 8.8##person opens the refrigerator.\nKN0TK 0.7 7.6##person opens a closet.\nNMC3H 0.0 8.3##a person is undressing in front of a mirror.\nNMC3H 0.0 8.3##a person is undressing in the kitchen.\nQ7RK6 9.7 15.8##person fixes his hair.\nVDXXV 19.3 23.8##person they stand up.\nVDXXV 8.9 21.9##person lies down on the bed.\nVDXXV 21.5 28.0##person opening the closet door.\nOJLFZ 9.4 19.2##person drinking from a glass.\nOJLFZ 0.4 8.1##a person sits on the sofa.\nOJLFZ 18.2 25.9##person open a box with clothes in it.\nOLV1L 4.9 18.8##person begins to fix a vacuum.\n830OE 2.6 7.7##one person throws a pillow at a person drinking coffee.\n830OE 6.3 12.0##person they both laugh.\n4RLYA 0.7 11.7##a person puts some dishes on a chair.\n4RLYA 26.8 32.0##person washes a mirror.\nPOLVK 3.1 11.2##a person takes clothes out of the washing machine.\nCBPJF 9.8 16.8##a person puts a phone on the stove.\nCBPJF 0.0 14.8##a person is playing on the phone.\nV5PK0 0.0 3.7##a person opens the refrigerator.\n2FECZ 27.2 35.0##person drink from a cup,.\n2FECZ 17.4 25.7##person they put a picture frame into a bag.\n2FECZ 26.7 32.6##person take a drink of water from a nearby glass.\n2FECZ 27.2 35.0##person start drinking from a glass of water.\nA5CRZ 3.5 10.7##person sits at a table.\nA5CRZ 3.5 10.7##person someone sitting at a table with food.\nA5CRZ 3.5 10.7##person sits at table.\n0NVG2 22.6 31.0##person eat some.\n0NVG2 10.2 20.7##person took a drink from the bottle of water.\n0NVG2 22.6 31.0##person begins to eat.\n0NVG2 0.0 13.6##person takes their shoes off.\nZ1A0Q 15.0 22.8##person stand up.\nZ1A0Q 6.0 19.2##person they begin sneezing uncontrollably.\nW3DYV 0.0 3.3##the person is holding the doorknob.\nW3DYV 0.0 7.3##person closes door.\nW3DYV 0.0 3.3##person holds doorknob.\nW3DYV 0.0 7.3##a person closes a door.\nW3DYV 0.0 7.3##person closes the door.\n40309 22.4 29.2##person opens a door.\nZWVO3 0.0 11.4##a person is smiling.\nZWVO3 0.0 11.4##another person is smiling from the doorway.\n92Q8F 1.7 7.1##a person awakens on a bed.\n5KQL2 11.2 16.1##person puts them back on the shelf.\n5KQL2 0.5 5.6##the person is holding a bag.\n5KQL2 0.5 5.6##person holding a bag of groceries.\n5KQL2 25.8 31.8##person moves to opening a cabinet door.\nWSS3R 12.8 23.0##a person in a towel starts dressing in the closet.\nWSS3R 12.8 23.0##person begins dressing.\nC5044 0.0 14.1##person eating a sandwich.\n7JDU4 15.1 23.0##the person takes out a camera.\n7JDU4 17.5 29.7##person takes a picture.\n7JDU4 17.5 29.7##person wards he takes a picture.\n7JDU4 0.0 6.7##a person runs into the basement.\nS67WR 24.1 30.0##person opens the door to leave.\nS67WR 24.1 30.0##person open a door.\n5DRVF 0.0 14.2##a person pours some water into a glass.\nEPKTX 16.1 24.0##person watch television.\nDRPO3 9.0 13.7##person putting it on a shelf.\nDRPO3 0.7 7.0##person picks up bottle of water & drinks.\nDRPO3 13.7 25.9##person opens up bag.\nDRPO3 29.3 32.0##person starts to open door.\nMOT57 11.7 17.7##person puts the glass down on the table.\nYAXGX 21.2 26.6##person they close the book.\nB55HG 3.2 9.1##person opens a book.\n52QLH 3.7 10.1##the person is opening a door.\n3AEF5 20.7 31.0##person puts it in a box.\n3AEF5 2.8 8.4##person close the box.\n3AEF5 20.7 31.0##one person puts a blanket in a box.\nSNU9T 0.0 10.6##a person is sitting holding some medicine.\nBB25Z 6.6 12.7##person lying on a bed stand up.\nCWUDQ 28.0 31.0##a person opens a door.\nCWUDQ 12.0 19.4##person undresses in front of the television.\nCWUDQ 28.0 31.0##a person opens the door of the study.\nJQY4L 7.2 12.8##another person runs through holding a box.\nO441U 15.6 21.4##person puts it in a bag.\nB32MT 21.6 31.0##person turn off the light.\nB32MT 12.0 16.9##person open a cabinet remove a item.\nB32MT 21.6 31.0##person turns off the light.\nB32MT 12.0 16.9##the person opens the cabinet mirror.\n4FXUI 35.0 42.3##the person closes the laptop.\nBMVXJ 3.8 9.8##person opens up the refrigerator.\nBMVXJ 13.6 18.4##person smile as they put it down on a table.\nVHOYB 17.0 27.4##person closes the door.\nVHOYB 4.7 14.6##person takes a picture.\nVHOYB 14.0 20.3##person a puts down the camera onto a pillow.\n49QXY 0.0 13.0##a person standing holding a mirror looking at them self.\n49QXY 0.0 11.5##smiling.the person lays the mirror down.\n49QXY 0.0 11.7##a person smiles as they look in the mirror.\n8FH2F 1.4 9.3##a person opens a door with a glass.\n8FH2F 1.4 9.3##a smiling person opens a door.\n8FH2F 1.4 9.3##a person opens a door.\n8FH2F 16.3 22.5##person sitting on a sofa.\n8FH2F 14.6 19.8##person he sits on a chair.\n8FH2F 4.3 14.6##person drinks from the glass.\n8FH2F 10.3 20.6##person enters the room smiling.\n8FH2F 10.4 17.6##person closes the door.\n8FH2F 4.3 14.6##person drinks from the cup.\n8FH2F 14.6 19.8##person sits on the chair.\nTXAG9 16.7 23.4##person the walk  to tub takes shoes off.\nTXAG9 16.7 23.4##person takes off their shoes.\n7TJ60 4.5 10.9##person another is throwing a pillow down the stairs.\nXJLHC 25.5 31.1##person close the lid to the laptop.\nXJLHC 25.5 31.1##person closes the laptop.\nU2SJH 0.0 13.3##person playing with their laptop.\nU2SJH 16.8 32.0##person eating a bag of chips.\nU2SJH 16.8 32.0##person starts eating chips.\n7QH3I 17.3 32.0##person talking on the phone.\n7QH3I 7.6 19.1##a second person is sitting on the couch.\nV9XR6 33.7 39.0##person take a glass from the cabinet.\nV9XR6 31.7 37.7##person opens a cabinet.\nES10S 16.0 21.6##person they stand up.\nES10S 16.7 22.3##person turn a light on.\nES10S 16.7 22.3##person turn on the light.\n1NDVD 19.1 27.0##a person is playing with a phone or camera.\n8ESHT 14.3 23.7##person opens a laptop.\n3SIOT 0.0 6.7##person the other was throwing around a bag.\nUUX4G 3.1 14.5##person takes a seat in a chair.\nUUX4G 14.9 20.9##person turns on the light.\nUUX4G 3.1 14.5##person eats something from the desk.\nUUX4G 14.9 20.9##person turned on the lamp light.\nZCZ3X 19.1 30.5##person watching television.\nZCZ3X 1.0 13.0##a person washes dishes with a  towel.\nZHDUR 0.0 15.1##a person is dressing in front of the wardrobe.\n2R13Z 3.4 11.7##another person does work on a laptop.\nDINAV 0.0 12.0##a person is pouring a hot cup of coffee.\nDINAV 0.0 12.0##a person is pouring a beverage into a cup.\nK48CQ 21.1 36.8##person starts sneezing.\nL9YK1 0.0 15.1##a person is running back.\nL9YK1 0.0 15.1##the person is running with a towel.\nLOP4H 14.4 19.7##person they stand up.\nLOP4H 21.8 34.5##a person is dressing.\nLOP4H 6.7 13.8##person they throw a pillow onto the floor.\nIEZFM 20.0 31.0##person begins working from a laptop.\nIEZFM 18.7 31.0##person sitting down at desk opening laptop.\nIEZFM 4.0 16.4##person closing door.\nIEZFM 1.4 8.3##person turns the light on.\nIEZFM 4.0 16.4##the person closes the door.\nIEZFM 1.4 8.3##person walking to wall turning lights on.\nQ07NE 15.5 22.7##person opens a closet door.\nQ07NE 0.0 5.5##a person is working on their laptop.\nQ07NE 0.0 5.5##a person is doing work on a laptop,after a.\n490S2 17.5 25.4##the person puts the water down to check their phone.\n490S2 0.0 13.2##person drinking water from a glass.\nUWRQV 8.8 15.0##person working on a laptop.\nUWRQV 26.4 31.0##person closes the cabinet door.\nUWRQV 12.5 22.0##person takes some food off the shelf.\nUWRQV 6.9 12.5##the person opens a cabinet.\nUWRQV 6.9 12.5##person opens a cabinet.\nH26YY 0.4 5.2##person enters garage holding a plate with food.\nH26YY 3.7 8.6##the person puts the plate on the shelf.\nH26YY 3.4 9.4##the person puts the dishes down.\nH26YY 3.3 9.1##person puts a plate of food on the shelf.\nH26YY 8.2 23.0##person eats a piece of food from one of them.\nH26YY 8.2 23.0##person eats it.\nH26YY 8.2 23.0##person eats the food.\nJHU46 10.0 15.9##person putting the bag down.\n88Z3M 0.9 5.4##a person is walking through the doorway.\nME7II 5.4 10.5##person sits on the sofa.\nME7II 0.0 4.9##a person opens a door.\nME7II 0.0 4.9##person is opening door.\nEUK1Y 0.0 4.0##person is standing in bathroom reading book.\nDRXNL 12.9 17.8##another person takes books from the table.\nDRXNL 14.3 19.7##another person is calmly putting things on a shelf.\nDRXNL 14.3 19.7##person puts them on a shelf.\nDRXNL 0.6 15.1##a person throws clothes from a table into a box.\n6RPUS 0.0 11.8##there is a person at the stove cooking something.\n6C2DJ 6.8 12.6##person puts them on a shelf.\n6C2DJ 24.4 30.0##a person takes dishes.\nOH3R9 0.0 9.2##person puts the sandwich down.\n2Q2LA 0.0 10.1##person entering in the kitchen puts the dishes appropriatley.\n2BUDH 4.4 18.1##person take a drink of water from a glass.\nJC1DV 5.0 16.4##person putting their shoes on the shelf.\nPO74I 0.0 5.9##a person runs up the stairs.\nAQXBN 2.2 15.4##a person is sitting on a sofa.\nAQXBN 2.2 15.4##a person sits down on a couch with a laptop.\nR00LO 24.2 31.3##person begin to eat it.\nR00LO 24.2 31.3##person eat the food.\nR00LO 8.8 14.2##a person walks through a doorway wearing a blanket.\nR00LO 15.7 21.2##person take out some food.\nWPPAT 16.6 24.1##a person opens a cabinet.\nWPPAT 4.2 16.1##a person walks part the doorway.\nNJU3G 18.7 32.0##person they start dressing.\nNJU3G 2.0 9.1##person eating a sandwich.\nNJU3G 2.0 9.1##a person is walking into a room eating a sandwich.\nNJU3G 18.7 32.0##person begin dressing in the doorway.\n7SLK1 13.0 21.9##person slightly closes a door.\n7SLK1 0.0 13.6##a person is holding a phone.\n02SK4 0.0 6.9##a person walks into a dining room holding food.\n19SJ6 5.0 10.8##other person walks in sits on chair.\n19SJ6 5.0 10.8##another person is sitting in a chair.\nZCH1J 0.0 8.0##person opening a bag of chips.\nG183W 0.0 14.0##person puts a blanket on it.\nG183W 0.0 14.0##a person put a blanket on a chair.\nG183W 17.1 29.5##person drinks from a cup.\nXIG01 0.0 5.4##the person is holding a sandwich.\nXIG01 1.4 10.6##person eats some of it.\nXIG01 1.4 10.6##person eating a sandwich.\nMW2TQ 9.9 16.5##person closing cabinet.\nF86M9 10.1 24.5##a person is laughing at a television.\nEGY7O 10.3 18.6##person open the refrigerator.\nEGY7O 10.3 18.6##person they open the refrigerator.\nEGY7O 2.4 10.3##person close the frig door.\nEGY7O 27.5 39.0##person take out food to cook with.\nEGY7O 27.5 39.0##person they continue cooking.\nEGY7O 27.5 39.0##a person is cooking at the stove.\nEGY7O 27.5 39.0##person back to the stove to begin cooking the food.\nHH0VG 4.5 15.3##a person is looking at a picture.\nG4NOT 22.9 28.3##person closes door.\nG4NOT 22.9 28.3##person closing a doorway.\nG4NOT 21.9 30.0##person walks through doorway.\nMERBU 19.9 32.0##person in one hand they are holding a bag.\nMERBU 19.7 32.0##another person is holding a cup.\nMERBU 20.8 32.0##see another person eating a snack.\nLNWWJ 4.6 9.9##person throwing a pillow onto a chair.\nLNWWJ 4.6 9.9##person throws down a pillow.\n3EYLH 26.8 52.8##person begin cooking something at a stove.\n4Z3PQ 7.5 14.0##person closes the door.\n4Z3PQ 1.9 7.1##a person runs into their bedroom.\n4Z3PQ 1.9 7.1##a person runs into a room.\nS2GDP 24.3 34.0##person talking on a phone.\nAJ5YQ 2.5 9.1##person takes out a camera.\nL8V10 18.4 29.0##person smiling into a mirror in a bathroom.\n5GEJS 20.8 29.8##the person puts his shoes under a desk.\nMSN1B 8.3 14.7##person drink from a glass.\nMSN1B 0.0 6.9##a laughing person awakens in their living room.\nMSN1B 0.0 9.9##person holding a phone.\nD2CEL 29.1 33.0##another person is looking at a picture.\nD2CEL 21.8 32.8##the person gets dressed with their chosen shirt.\n5XYPL 3.7 12.7##person begin laughing.\nQC9M1 0.0 4.0##person they are holding a phone.\nQC9M1 0.0 4.0##person holding the phone.\nQC9M1 23.5 37.1##a person awakens by the desk in the entryway.\nLFBCQ 0.6 6.5##a person wearing a hoodie opens a cabinet.\nLFBCQ 0.6 6.5##a person in a basement is opening a cabinet.\nLFBCQ 0.6 6.5##a person opens a cabinet door.\nLFBCQ 6.5 12.7##person closes a door to the outside that is open.\nLFBCQ 6.5 12.7##closes the door.the person turns back to the cabinet.\nLFBCQ 6.5 12.7##person closing a doorway.\nJK4Q2 5.6 15.0##person begins washing the mirror over their bed.\nJK4Q2 26.3 32.0##person begins eating it.\nJK4Q2 23.4 30.2##person takes food from it.\nJK4Q2 0.0 5.6##a person walks to a light.\nJK4Q2 0.0 5.6##a person turns on the light in a room.\nJK4Q2 5.6 15.0##person they wash a mirror over the sink.\nJK4Q2 0.0 5.6##a person turns the light on.\nJK4Q2 26.3 32.0##person eats it.\nN2XCF 15.3 33.8##person putting clothes on the table from the dryer.\nN2XCF 53.0 59.6##person put clothes in the washer.\nFOA8D 0.0 7.2##person holding a pair of shoes.\nPABBK 6.7 21.0##person they take the medicine.\nPABBK 17.4 31.0##person start eating from a bag.\nPABBK 17.4 31.0##person eats something.\nPABBK 17.4 31.0##person begin to eat food.\n7BFDL 10.6 15.8##person puts a glass.\n7BFDL 0.0 11.3##a person holding some empty dishes.\n7BFDL 13.2 32.3##person start dressing by putting on a shirt.\n7BFDL 13.2 32.3##person bow on top of dresser picked up clothes,hat.\nBMYMI 0.0 3.8##a person opens the refrigerator.\nBMYMI 0.0 3.8##a person opening a refrigerator door.\nZHZST 6.8 12.2##a person puts the glass in the sink.\nHJJ32 15.9 21.0##person packing his bag thrown in the bed.\nRIE30 9.7 16.7##person grab a cup off the table take the drink.\nRIE30 3.0 10.0##person starts laughing.\nRIE30 9.7 16.7##person drinking a beverage from a glass.\n1Q4SL 20.1 27.2##person opening a door.\n1Q4SL 0.0 3.1##a laughing person is drinking a soda in the bathroom.\n1Q4SL 20.1 27.2##person open the door.\n1Q4SL 27.4 32.0##person turning off a light.\n1Q4SL 0.0 3.1##a person laughs drinks.\nMX0CO 0.0 6.8##a person is drinking a glass of water.\nFYDYO 10.4 18.9##person begin sneezing.\nFYDYO 10.4 18.9##person they begin sneezing.\nN1EDG 25.9 31.0##person put the cup of coffee on the desk.\nSCHOY 4.4 14.0##person drinks a glass of water.\nSCHOY 20.9 26.6##person turned off the lights.\nSCHOY 4.4 14.0##person they take a drink from a glass.\nSCHOY 20.9 26.6##person turning off a light.\nSCHOY 20.9 26.6##person they turn off the light.\nSCHOY 0.0 7.3##a person is undressing in the bathroom.\nSCHOY 14.4 19.9##person wash the glass.\nZ2A7Q 0.0 9.1##this person is running into a room.\nZ2A7Q 5.2 14.2##person starts throwing all the books on the ground.\n97HAH 4.9 10.5##person opening the refrigerator.\n97HAH 15.1 20.1##person close the cabinet door.\nZ70KK 8.0 15.0##person is washing table.\nMR66M 22.5 32.4##person eat some food from it.\nMR66M 22.5 32.4##person eating food from a dish.\nMY5CQ 14.0 19.6##person opens a book.\nMY5CQ 11.5 17.4##a person closes their laptop.\nMY5CQ 11.5 17.4##person closes laptop.\nMY5CQ 0.0 8.0##person working on his laptop.\n01ZWG 4.9 11.0##a person opening a laptop.\n01ZWG 4.9 11.0##person opens the laptop.\n2P6ZP 19.6 31.3##person starts eating a snack.\n2P6ZP 19.6 31.3##person eating a cookie from the table.\nVLMII 2.0 7.5##the person closes the laptop.\nVLMII 9.0 16.1##a person is undressing.\nVLMII 8.4 18.1##person puts the clothes they were wearing in the washer.\nMRKTD 8.9 17.9##a person holding a towel sneezes into it.\n57J92 29.8 35.4##smiles at another person who is eating a sandwich.\n57J92 29.8 35.4##person another eats a sandwich.\n57J92 29.8 35.4##person eating something.\n1YC83 0.0 7.6##the person puts down their sandwich.\nS673O 24.9 35.0##person eats a bite.\nS673O 0.0 3.2##a person lies on a sofa in the living room.\nS673O 24.4 35.0##the person pours a drink into their glass.\nS673O 32.0 35.0##person takes a bite of their sandwich.\nDFEG2 14.3 21.0##a person is eating.\nDFEG2 0.0 6.6##the person undresses.\nDFEG2 14.3 21.0##person they begin to eat some food.\nDFEG2 3.8 12.1##person takes off their shoes.\nDFEG2 11.3 21.0##person sits on the couch.\nDFEG2 0.0 6.6##a person is undressing.\nL9H3O 9.0 19.0##person pours a glass of cola.\nL9H3O 16.0 24.0##person pours a drink into a glass.\nL9H3O 0.0 3.0##there is a person sitting in a chair.\nL9H3O 23.8 28.8##person puts the cup in a sink.\nL9H3O 29.0 34.0##person sitting back down again to eat it.\nL9H3O 9.0 19.0##person pours in a glass.\nL9H3O 23.7 29.2##upon finishing it person takes the glass.\nL9H3O 29.0 34.0##person eats it.\nU4FR1 0.0 3.8##the person opens the door.\nU4FR1 0.0 3.8##a person opens the door.\nC69Y1 3.0 11.2##a person opens a cabinet.\nC69Y1 7.0 12.3##person takes out a glass.\nC69Y1 7.0 12.3##person open a cabinet to take a glass out.\nC69Y1 22.7 28.6##person they pour some water into the glass.\nC69Y1 22.7 28.6##person begin to pour soda into the glass.\nV4PKW 0.0 11.8##person drinking a glass of coffee.\nV4PKW 16.7 26.9##person opens a door.\nV4PKW 16.7 26.9##person they open the door.\nXRQDI 7.2 15.8##the other person is laughing.\nXRQDI 0.0 8.3##the second person runs into the door.\nXRQDI 0.0 8.3##two persons are running up.\nXRQDI 0.0 8.3##person two people are running through a hallway.\nXRQDI 0.0 8.3##person one runs into a doorway.\nXRQDI 7.2 15.8##laughs at the second person.\nXRQDI 0.0 8.3##one person runs in a room.\nG06QC 12.6 18.7##person puts a broom back.\nG06QC 0.0 5.3##a person is drinking a glass of water.\nG06QC 16.8 25.0##person takes vacuum out of closet.\nG06QC 0.0 5.3##person takes a drink from a glass.\nG06QC 12.6 18.7##the person puts the broom in the closet.\nG06QC 16.8 25.0##person takes out the vacuum.\nQ8XEE 1.9 7.8##person opens a laptop.\nQ8XEE 1.9 7.8##person they open up a laptop.\n0O81T 11.5 21.1##the person is sneezing.\n0O81T 11.5 21.1##person someone started sneezing.\nW7SGQ 23.6 34.0##person prepares to take a picture.\nFO035 20.6 28.4##a person is awakening from a nap on their sofa.\nFO035 29.4 34.0##a person runs over to their sofa.\nOKVGK 2.1 8.0##person closing the door.\nOKVGK 8.6 18.2##as the person begins undressing.\nBBAVF 6.0 16.4##the person takes off their shoes.\nBBAVF 6.0 16.4##person takes off their shoes.\nBBAVF 0.0 7.8##the person looks out the window.\nIR7CA 2.7 13.2##person they begin sneezing.\n987P8 0.0 4.2##a person throws some clothes on the ground.\n987P8 0.0 4.2##person throws that in the floor.\n987P8 2.0 11.8##person begins undressing by taking off a jacket.\nUKCTK 27.0 32.0##person close the door.\nS8TI7 1.7 15.3##person eats a sandwich.\nS8TI7 1.7 15.3##person eats more of the sandwich.\nS8TI7 0.2 15.8##a person is sitting in the bedroom holding a sandwich.\nS8TI7 0.2 15.8##person sitting on the bed.\nS8TI7 0.2 15.8##person sits on a bed.\nS8TI7 2.3 9.5##person looks out the window.\nS8TI7 2.3 9.5##the person looks out the window.\n5UUEP 0.0 10.4##that person pour some coffee into a cup.\nCXO6P 14.3 23.7##the person takes a sandwich from the table.\nCXO6P 5.7 16.0##the person appears to be sneezing or sick.\nCLW8L 7.1 13.1##person takes their pillow.\nCLW8L 12.8 23.0##awakening another person who is under a blanket.\nJOUM7 19.2 30.1##person eats it.\n2C2AI 6.5 13.5##person they start sneezing.\n05WY6 15.9 28.4##the person starts sneezing in a towel.\nRXJ04 30.6 43.5##person puts the blanket in a box.\n2JT00 13.8 22.0##person pick up a plate holding a sandwich.\n2JT00 2.8 12.3##a person sits smiling in a pantry.\n2JT00 15.3 22.0##person eat it.\n2JT00 14.4 20.1##person they put the broom down.\n469E8 14.8 20.9##person opens the door.\n469E8 0.0 12.6##person drinking a glass of water.\n469E8 7.9 18.4##person looks out a nearby window.\n469E8 0.0 12.6##a person sits on stairs drinking from a glass.\n469E8 7.9 18.4##person looks out the window.\n469E8 7.9 18.4##person looks out a window on a door.\n469E8 14.8 20.9##person opens a door.\n3XUPT 0.0 13.4##person opens door.\n3XUPT 0.0 13.4##one person with a broom opens the bathroom door.\n7FCAW 7.3 20.8##the person laughs as they begin undressing.\n7FCAW 1.9 10.9##the person is holding a bag.\n7FCAW 7.3 20.8##person begins to undress.\nP76PG 0.0 10.8##this person is sitting down holding a pillow.\nP76PG 0.0 10.8##person holding a pillow.\nFJM2Y 7.6 14.2##person opens a cabinet.\nFJM2Y 10.5 16.7##a person walks around holding a bag.\nFJM2Y 10.6 16.9##person puts bag in cabinet.\nFJM2Y 10.5 16.7##a person holding a bag walks through a room.\nFJM2Y 20.2 29.8##person they take a book from the cabinet.\nI5PU9 19.8 33.0##a person holding a phone looks out a window.\nG3WBE 33.3 42.6##person drinking from a glass.\nG3WBE 33.3 42.6##person takes a drink from a cup.\nG3WBE 33.3 42.6##person drinking from a glass of water.\nX084M 11.3 21.8##a person is fixing a light in the garage.\nX084M 11.3 21.8##person they turn on the light.\nX084M 11.3 21.8##the person walks up to the light.\n4MUXJ 25.7 31.0##person closes the door.\n4MUXJ 18.1 23.6##person puts the bag down.\n4MUXJ 18.1 23.6##a person begins putting items in the bag.\n4Q3KR 10.0 23.0##person tidying the shelf.\n7P5R2 1.8 16.1##a person opens a door.\n7P5R2 1.8 16.1##a person is opening a door.\n7P5R2 14.5 24.4##person takes a book out of the bag.\n0NJ26 0.0 13.4##a person is putting a blanket on the couch.\nVU4J8 0.0 5.4##person drinking from a glass.\n6ALEL 21.9 27.0##person begin eating it.\n6ALEL 19.3 24.3##person takes a bite of a sandwich.\n6ALEL 19.3 24.3##person take a sandwich.\n6ALEL 9.7 16.4##person finishing dressing themself.\n6ALEL 21.9 27.0##person start eating it.\nSMVKB 9.0 18.6##person holding a pillow laughing opens a door.\nSMVKB 12.9 22.8##the person starts smiling.\nSMVKB 12.9 22.8##the person is smiling.\nSMVKB 16.5 23.6##person opens the door.\nSMVKB 28.4 32.0##person standing close to the doorway.\nX9ULK 16.8 26.4##person pours a cup of coffee on to another cup.\nX9ULK 16.8 26.4##a person poured themselves a cup of coffee.\nX9ULK 4.8 18.7##person after dressing in the bathroom.\nEOAR1 9.6 16.6##the person is putting food in the refrigerator.\n0QES3 3.1 14.8##person putting feet in shoes.\n0QES3 13.5 20.1##person opens the door.\n0QES3 3.1 14.8##the person puts on shoes.\n7HEWH 17.5 32.0##person washes a dish in the sink.\nHCSPE 23.1 30.6##person puts down the phone.\nHCSPE 0.0 5.2##person opens the door.\nHCSPE 23.1 30.6##person puts their phone on the night table.\nHCSPE 5.5 11.2##person turns on the light.\nHCSPE 15.4 22.0##person closes the door.\nHCSPE 7.9 13.9##person someone walks into a room holding a phone.\nHCSPE 15.4 22.0##person they close the door.\nHCSPE 5.5 11.2##person walks back over to the light.\nHCSPE 15.4 22.0##closes a door .the person goes back to the stand.\nAI4NP 3.6 11.4##person take out some clothes.\n69GFN 1.6 12.4##person looking at a picture on the table.\n69GFN 14.5 30.3##a person sits on a sofa.\n69GFN 4.1 19.5##person gets undressed.\n69GFN 4.1 19.5##person after undressing.\n654PD 11.7 17.5##person opening a book on the stairs.\n654PD 7.6 13.8##person he puts the paper down.\nV4C0P 10.0 18.5##person throw a pillow.\nJ2DBI 17.5 27.0##person start smiling.\nJ2DBI 17.5 27.0##person finally smiling.\nCWBHH 0.0 8.1##the person is reading a book.\n30JQT 27.7 37.0##person they pour themselves a glass of water.\n30JQT 27.7 37.0##person pours a glass of water on the table.\nANAR5 3.1 11.6##person eating food from a bag.\nB4MNI 4.8 11.9##a person is pouring a cup of coffee.\nB4MNI 33.7 43.6##person they snuggle with a pillow.\nB4MNI 4.8 11.9##the person pours coffee from a cup to another cup.\nB4MNI 4.8 11.9##person pours water from one cup into another.\nB4MNI 33.7 44.0##person snuggling with a blanket in a living room.\nB4MNI 2.5 8.6##a person sits on the couch.\nB4MNI 2.5 8.6##the person sits on a couch.\nB4MNI 33.7 44.0##the person snuggles with their blanket.\nNV4FC 0.0 8.2##person takes off the shoes.\nNV4FC 0.0 3.1##a person is sitting on their bed.\nNV4FC 0.0 8.2##person they take off their shoes.\nNV4FC 19.6 25.8##person takes a book from the table.\nNV4FC 24.3 30.3##person they open the door.\nQ8QGT 7.5 13.9##person eats the sandwich.\n809QT 3.0 8.0##person takes a book from it.\n803H6 6.3 12.3##opens the window another person comes in.\n803H6 6.3 12.3##person opens a cabinet door.\n803H6 11.0 15.9##person throws a pillow around complaining about the pillow.\n803H6 6.3 12.3##a person is opening a window.\nUG6NT 1.1 8.3##person #2 throws a pillow across the room.\nUG6NT 1.1 8.3##a person is throwing a pillow.\nTXJK7 0.2 11.9##a person is fixing some string lights.\nTXJK7 0.2 11.9##a person is fixing lights.\nTXJK7 0.2 11.9##a person is fixing a light.\nMMV3D 0.0 7.7##person holding a blanket.\nQNXGG 1.8 11.4##a person is undressing near a shelf.\nQNXGG 12.3 22.0##person they begin pouring medicine into a cup.\nQNXGG 12.3 22.0##person pour it into a glass of water.\nNJCDX 22.4 32.0##person they close the cabinet door.\nNJCDX 12.9 25.4##person they take food.\nNJCDX 4.1 13.2##person open the cabinet door.\n4ATDB 13.3 21.8##person turns the light off.\n4ATDB 13.3 21.8##person turns off a light.\nV4HBP 25.2 30.3##person finally throwing a box onto the bed.\nV4HBP 12.2 19.3##person throws another blanket off the bed,.\nV4HBP 26.6 32.0##person sits on a bed.\nV4HBP 26.6 32.0##a person is sitting on a bed folding a towel.\nV4HBP 12.2 19.3##person they throw a blanket on the floor.\nO630X 29.1 34.9##person suddenly awakens.\nQ5GVZ 3.4 15.0##person holding a cup of coffee.\nQ5GVZ 11.0 16.4##the person puts the towel on a table.\nQ5GVZ 11.0 16.4##the person puts the towel onto a pile of clothes.\nUCDL4 0.1 6.2##a person opens a door.\nUCDL4 9.0 14.0##person takes a picture off the wall.\nUCDL4 9.0 14.0##the person takes a picture off the wall.\n4UT8K 17.5 24.5##person they take out their camera.\n0QHR4 0.0 5.3##a person is opening the door to their closer.\n0QHR4 0.0 7.1##the person opened the closet door.\n0QHR4 3.3 8.9##person they eat some food.\nVML1Z 0.0 6.2##a person opens the closet.\n6AVDE 0.0 5.8##person eating some food from a table.\n6AVDE 0.0 5.8##the person was eating some food.\n1K0GV 10.8 15.5##person take a glass of water.\n1K0GV 10.1 14.8##person throw it on the floor.\n1K0GV 10.1 14.8##a person is throwing trash in a bag.\nIYD9U 0.0 13.2##a person is holding their camera.\nIYD9U 3.9 10.0##person is standing takes a couple pictures with his phone.\nIYD9U 23.1 27.9##the person runs to the blanket.\nI5U4Q 11.1 20.8##another person puts a camera on top of the fridge.\nI5U4Q 11.1 20.8##another person puts a camera on a refrigerator.\nQ1K00 8.8 14.8##person they open a window.\nQ1K00 2.6 8.3##person takes off shoes.\nQ1K00 8.6 15.4##person moves curtain looks out of the window.\nQ1K00 2.6 8.3##person takes off their shoes.\nQ1K00 0.0 5.7##a person opens the door.\nHIO3X 34.6 48.2##person proceeds to wash their hands.\nHIO3X 34.6 48.2##person wash their hands.\n4S3UZ 14.3 23.2##person watching tv smiling.\n4S3UZ 14.3 23.2##one person is sitting down smiling at the television.\nE40Y8 11.3 17.0##person they open a box of cereal.\nE40Y8 11.3 17.0##a person opens a box of cookies.\nJN2E8 11.8 19.2##the person throws the blanket down.\nJN2E8 11.8 19.2##person throw the blanket off of themself.\n2Q3ZJ 18.0 28.9##person goes into the closet talking on the phone.\n2Q3ZJ 18.0 28.9##person talking on the phone.\nK0IGF 2.5 11.4##a person is sneezing.\nOZ6SB 7.5 16.3##at this point the person had a sneezing fit.\nOZ6SB 7.5 16.3##person they begin sneezing.\nZ320B 17.6 22.5##the person takes a blanket.\nZ320B 14.5 20.5##person puts broom in corner by door.\nZ320B 0.0 19.9##person holding broom.\n5AW54 0.0 10.6##a person is holding a bag of clothes.\n5AW54 2.5 10.1##person they put the bag in front of a door.\n7VZ5M 2.2 8.3##person sitting in a chair near a laptop.\nDECCY 18.8 34.0##person reading the book.\nRSFBP 5.7 12.2##a person is walking down the stair sneezing.\nRSFBP 22.9 31.0##the person looks out the window.\nQSQK2 22.5 29.0##person closes the door.\nQSQK2 22.0 29.9##the person walks through the doorway.\nQSQK2 7.0 12.7##a person runs.\nQSQK2 19.2 26.8##person opens a door.\n3JSX7 7.2 15.6##person works on a burnt-out light.\n3JSX7 7.2 15.6##person turns on a light.\n8U3SS 3.9 19.7##person they begin to laugh at each other.\n92QGQ 22.6 31.0##person sits in a chair.\n92QGQ 0.0 12.6##person takes a blanket.\n92QGQ 22.6 31.0##person goes to sit in a chair.\n92QGQ 0.0 12.6##person takes a blanket out.\n92QGQ 22.6 31.0##person sit in a chair.\n92QGQ 3.4 12.9##a person puts clothes in a dryer.\n92QGQ 0.0 12.6##a person takes a blanket out of the dryer.\n92QGQ 27.1 31.0##person snuggle into the blanket.\n92QGQ 3.4 12.9##person puts in some clothes.\n3TUUI 22.1 34.2##person begins putting their shoes on.\nA6NH2 3.0 20.0##a person in the kitchen opens a small closet door.\nR2ZYS 5.1 18.8##person drinking cup of coffee.\nR2ZYS 5.1 18.8##person take a drink out of a glass.\n1OIPY 0.0 7.2##a person sits in a chair.\n1OIPY 17.8 30.9##person eats it.\n1OIPY 0.0 7.2##person someone is sitting on a chair in the kitchen.\nLRLNC 27.7 31.0##the person puts the phone down.\nLRLNC 27.7 31.0##the person puts the phone down on the bed.\n1E7VU 3.1 18.5##a person is putting dishes away.\n1E7VU 2.7 16.5##a person takes some dishes.\n1E7VU 17.5 32.0##person they start sneezing.\n1E7VU 17.5 32.0##person starts sneezing.\n1E7VU 3.1 18.5##person putting away dishes.\n1MD1H 6.6 13.5##a person awakens on the sofa in a living room.\n1MD1H 28.4 33.0##person they sit back down on the couch.\n1MD1H 11.5 19.2##person pillow they wake up take off their shoes.\nFNLLG 6.3 13.0##person looks at a picture on the wall.\nZYDGF 13.2 20.4##person take a bag out.\nAFAXI 9.2 19.3##one person who is lying down awakens.\nAFAXI 15.7 28.0##person sitting on the bed.\nAFAXI 15.7 28.0##a person is lying on a bed they sit up.\nAPQSV 2.6 9.7##person opens another door.\nAPQSV 3.6 13.8##person closes the door.\nAPQSV 16.5 24.6##person puts the towel on a shelf.\nAPQSV 2.6 9.7##a smiling person opens the door to their basement.\nDA7E9 1.2 13.2##a person is cooking food on a stove.\nDA7E9 10.9 25.8##the person reads the book.\nDA7E9 1.2 13.2##person continues cooking.\nDA7E9 1.2 13.2##person a cookbook.\nDA7E9 1.2 13.2##a person is cooking at the stove.\nATWCT 17.9 30.0##person opens a door.\nYXJBA 0.0 8.8##person reading a book that is put on a table.\nO18DS 6.2 13.1##person turns on the light.\nHP94W 2.2 11.2##person is putting phone on shelf.\nYUOQW 4.9 12.4##a person is holding a phone.\nHEZBG 22.2 35.0##person begins cooking at the stove.\nMNBEI 13.3 21.4##person they stand up.\nMNBEI 0.0 4.9##person closes door.\nMNBEI 0.0 5.0##this person opens door.\nMNBEI 0.4 10.2##person sits in a yellow chair.\nMNBEI 0.0 4.6##person walk towards the doorway.\nMNBEI 0.4 10.2##person proceeds to sit in the chair.\nMNBEI 6.5 18.4##person putting on their shoes.\nMNBEI 6.5 18.4##person puts on his shoes.\nMNBEI 0.0 5.0##the person opens the door.\nZ0Q5D 13.2 18.3##the person puts the phone down.\nAPJQ8 4.2 11.1##the person puts the blanket into the washing machine.\nAPJQ8 4.2 11.1##a person puts a blanket into a washer.\nR5K2K 1.8 7.4##one person is smiling at the clothes.\n6BFKO 23.8 29.0##person the laptop lights up.\n25BZ1 19.3 25.0##person runs out with their homework.\nNXC5X 0.0 4.2##a person walks through the doorway holding a towel.\nNXC5X 12.4 21.4##person starts eating an apple.\nNXC5X 12.4 21.4##person begin eating food.\nNXC5X 12.4 21.4##person eating something.\nF3RM9 17.2 21.9##one person is smiling at a picture.\nF3RM9 0.0 4.8##person looking at a picture.\nVTICD 0.0 12.4##a person cooks on the stove.\nVTICD 0.0 12.4##a person is cooking at a stove.\nHGLHS 1.5 6.7##person walks past a doorway.\nHGLHS 7.0 17.5##the person begins laughing.\nJ40UT 0.0 11.1##a person in a bathroom is holding a glass.\nJ40UT 0.0 5.5##a person is drinking a glass of coffee.\nMF8AX 0.0 4.7##a person is running into a kitchen.\nMF8AX 0.0 4.7##a person runs into a room.\n6PN8O 23.0 30.9##person turn off the light.\n6PN8O 0.0 8.6##a person is in the bathroom holding a towel.\nNQ1V6 16.6 27.2##person starts undressing to change clothes.\nNQ1V6 12.3 16.9##person puts on different clothes.\n8YZ8X 25.5 29.9##person turns off the light.\n9ZQ0R 8.0 13.8##person they take a drink of their glass of water.\nX6D8E 23.4 30.5##person pours themselves a glass of water.\n909RL 13.2 19.1##person drinking a glass of water.\n909RL 15.2 20.4##person put the glass of water onto a table.\n909RL 16.5 30.0##person looks out window.\n909RL 13.2 19.1##person drinks from glass of water places glass onto table.\nUPXBJ 6.0 14.9##person opens a window.\nUPXBJ 6.0 14.9##one person opens a window.\n9GMHF 12.8 18.7##person opens another door.\n9GMHF 12.8 18.7##the person opens the door.\n9GMHF 14.3 19.9##person takes out a broom.\nZ7O9G 0.0 18.1##person holding a camera.\nZ7O9G 22.1 30.1##person takes a drink from a glass of water.\nOJ4IE 16.9 25.4##the 2nd person opens the door.\nOJ4IE 15.6 26.9##person holding clothes.\nMSW4E 10.8 19.3##the person is also eating some food.\nXYTEU 3.1 14.1##a person takes a pile of clothes from a desk.\nCUII4 0.0 5.8##a person opens a cabinet.\nCUII4 24.8 34.8##person undress the same sweater.\nCUII4 5.3 13.7##person throw it on the floor.\nCUII4 0.4 13.1##person takes out some clothes from it.\nCUII4 0.4 13.1##person takes some clothes out of it.\nDYVUY 24.8 31.0##person closes the door.\nDYVUY 23.6 28.0##person turns the light off behind them.\nDYVUY 23.6 28.0##person turns off the light.\nDYVUY 23.6 28.0##person shutting off the light.\nBLPAB 21.8 31.0##person pours  a glass of juice.\nBLPAB 21.8 31.0##a person is pouring something into a glass.\n6LGTT 9.0 16.9##i person is walking into the pantry smiling.\n6LGTT 6.0 10.9##person opens a cabinet.\n6LGTT 15.7 22.2##person close the door.\nKFOX4 0.8 17.8##a person is holding a blanket.\nKFOX4 13.8 19.0##person the start throwing a blanket around.\nKFOX4 13.8 19.0##a person throws the blanket on the floor.\nAHLZY 14.4 21.2##person start sneezing.\n3JJ7C 0.0 9.9##the person tidy's up a shelf.\nZG1EM 20.8 26.7##next the person sits on a chair.\nZG1EM 20.8 26.7##person sits down on a chair.\nZG1EM 23.4 32.0##person drinks from a glass.\nZG1EM 0.0 15.0##the person undresses by taking the jacket back off.\nZG1EM 0.0 15.0##a person dressing by putting a jacket on.\nUMT5R 21.5 31.0##person put it back on the shelf.\n6BUU6 0.0 3.2##a person is closing the hallway door grasping the doorknob.\n6BUU6 29.2 32.0##person holding a laptop opens.\n6BUU6 0.0 3.2##person closes a door.\n29UVO 0.8 12.3##a person is sitting on the couch snuggling a blanket.\n29UVO 0.8 12.3##the person is snuggling with a blanket on the sofa.\nH69BE 17.5 27.8##the person closes the laptop.\nS3TR3 21.5 33.2##person take off their shoes.\nS3TR3 21.5 33.2##person take their shoes off.\nE7CJ0 15.9 24.7##another person is sneezing into a blanket.\nT38JM 14.3 23.2##person begin laughing.\nT38JM 9.2 15.3##person they put the broom down.\nON2VH 18.1 23.7##person takes a book.\n03M0K 7.5 13.9##person opens a laptop.\n03M0K 0.2 9.9##a person is dressing.\n03M0K 7.5 13.9##the person opens their laptop.\nBNSQN 16.3 28.0##person walks with it through a doorway.\nBNSQN 16.3 28.0##a person is walking through the doorway.\nV3DJ5 14.3 27.0##person eats it.\nV3DJ5 14.2 24.2##person takes a piece of food.\n0UQU6 9.9 17.0##a person awakens in bed.\n0UQU6 12.0 18.0##person walks through a doorway.\n493WS 7.5 13.4##person opens the refrigerator door.\n4BZI6 0.0 5.8##a person opens a box.\nAR4S6 22.6 28.3##person closing the basement door behind them.\nTXNDA 8.0 12.6##person laughing at whats outside the window.\nT1FTD 27.4 33.4##person putting it on a shelf.\nT1FTD 29.6 35.0##the person closes the dryer door.\nT1FTD 27.5 33.4##person puts the pillow onto a shelf.\nDG5TX 17.9 23.4##person sits down in a chair.\nDG5TX 18.6 31.0##person begins working on some paperwork.\nE8C24 0.5 8.9##a person runs into the kitchen holding a book.\nEJIKG 10.8 16.9##person takes a book from a box.\n8X49S 1.4 8.4##person eats a sandwich.\n8X49S 7.0 13.7##person drinking from a glass.\n8X49S 1.4 8.4##person they eat some food.\nU3T5A 3.3 9.5##person opened the refrigerator.\nUGWOG 52.0 55.0##person takes a book off of the desk.\nUGWOG 10.7 20.1##the person turns on a light.\nUGWOG 10.7 20.1##a person turns on the lights.\nVT64S 3.5 10.0##a person takes a box of food from the table.\nDSP2U 15.8 22.0##person sits in a chair.\nDSP2U 15.8 22.0##person sits down in the chair.\nLRJS4 0.0 12.2##person holding a book.\nQEFJF 0.0 9.4##person eating from a plate.\nQEFJF 8.3 14.8##person they take their dishes.\nQEFJF 0.0 9.4##a person is eating in the dining room.\nQEFJF 0.0 9.4##one person is eating a sandwich.\nSAT9P 17.4 29.0##person reads a book.\nSAT9P 0.0 9.4##a man looks out a bathroom window.\nSAT9P 20.4 29.0##person open a book.\nSAT9P 11.3 22.0##person take out a blanket.\nLSY08 18.0 25.4##person puts down the stack of dishes on the floor.\nTQXMV 9.6 14.7##a person is smiling.\nM5W51 23.0 31.0##person takes food that is next to them.\nM5W51 13.3 26.9##a person sleeping at a table awakens.\nWRW7O 16.8 21.4##the person puts some food onto a dish.\nWRW7O 17.7 26.0##person runs out.\nW9XJX 4.3 9.8##one person puts down a book.\nOOE32 12.8 18.8##person is sneezing.\nVOTA7 9.0 14.3##person takes the camera.\nVOTA7 9.8 17.0##another person runs in.\nVOTA7 9.8 17.0##person runs out.\n7XJLH 16.5 22.3##person takes a cup.\n7XJLH 16.9 24.1##the person takes a drink from a glass of water.\n53FPM 28.0 38.4##person takes some medicine.\n3CTZL 2.5 15.7##person putting on some clothes.\nFYP5L 17.4 32.0##person take some shoes out from behind a door.\nFYP5L 17.4 32.0##person takes shoes down from a shelf.\nFYP5L 0.0 9.2##there is a person running down a hall.\nFYP5L 0.0 9.2##a person runs in laughing.\nFYP5L 0.0 9.2##a person runs down a hall.\nZY2B1 16.6 24.7##person the throws the clothes at a shelf.\n857LD 8.8 17.3##a person closes the door.\n857LD 8.8 17.3##person they start closing the door.\nQNVMD 10.8 26.1##person puts a pillow into a grocery bag.\nDK59J 12.3 25.4##person opens a book.\nDK59J 12.3 25.4##the person opens the book.\nG5LEA 6.5 13.0##person opened the cabinet.\nG5LEA 13.1 22.3##the person closes the cabinet door.\nC1A2T 0.0 7.9##a person opens the bedroom door.\n5V8WH 0.7 6.6##a person walks through a doorway.\n5IDF4 10.7 16.0##the person throws the book on the floor.\n5IDF4 7.8 14.4##a person runs down the hallway holding a book.\n5IDF4 7.8 14.4##a man runs into a room.\n5IDF4 10.7 16.0##person throws a book down onto the floor.\n5O31N 33.1 38.8##person throw their clothes on the chair.\n5O31N 2.1 9.1##a person closes a door.\n5O31N 22.8 35.9##person get undressed.\n5O31N 22.8 35.9##person starts undressing.\nGISE8 16.5 21.9##person closing the door to a medicine cabinet.\nGISE8 13.8 19.5##person puts a towel in a closet.\nGISE8 18.8 28.5##person began dressing.\nGISE8 10.0 16.6##the person puts the towel away on a shelf.\n1221S 17.1 23.5##person putting the broom in the corner.\nBVCCX 0.0 6.2##a person is working on a laptop.\nB3SF6 7.4 16.3##a person is watching television.\nB3SF6 21.9 27.4##person open cabinet doors.\nB3SF6 7.4 16.3##person watches television.\nCP3Q6 16.4 29.0##person they begin cooking on the stove.\n2CR09 4.6 8.9##person puts bag on car to pull out sweater.\n2CR09 0.0 8.2##person begin dressing holding a bag.\nFABO7 25.9 32.0##person starts smiling at picture on wall.\nPM9HG 30.5 35.0##person begins eating candy from the candy dish.\nPM9HG 30.5 35.0##person eat it.\nPM9HG 0.0 8.7##person opens the door.\nPM9HG 0.4 6.6##person walks through a doorway into a room.\nO5FR0 0.0 12.6##a person is undressing by the window.\nX9WTR 0.0 25.2##a person sits in a chair.\nX9WTR 0.0 25.2##a person sits down in a chair.\nX9WTR 3.8 22.3##person watching television.\nFRXS5 0.0 6.9##the person runs into the room.\nFRXS5 0.0 6.9##a person runs in.\nFRXS5 0.0 6.9##this person runs into the living room.\nTUVM8 0.0 11.2##person as they watch the screen they begin laughing.\nK5DIB 12.2 18.4##person turns off a light.\nK5DIB 12.2 18.4##person turns off the light.\nK5DIB 0.0 10.3##person looking at a book.\nAQ0CP 14.9 26.6##person closing a door in a laundry room.\nAQ0CP 14.9 26.6##person closes the door.\nKQT19 7.7 15.1##person stands over them holding a box.\nKOF86 25.3 33.0##person eating it.\nKOF86 24.5 31.6##person begin eating a sandwich.\nKOF86 24.5 31.6##person eating a sandwich in a bathroom.\n2CFCW 0.8 12.5##a person is holding a broom.\nM7DIB 0.0 4.4##a person looks out a window.\nM7DIB 3.6 10.0##person they eat a bite of food.\nM7DIB 12.7 19.0##person put a coffee cup in the sink.\nM7DIB 3.6 10.0##person eats from it.\nYFZRG 0.0 4.6##a person turns on a light.\nYFZRG 0.0 4.6##a person turns on the light.\n6ERRL 13.9 18.0##person closes book.\n6ERRL 8.8 13.4##person sits with an open book.\n6ERRL 10.6 15.8##person sits on the table.\n5ZXR3 21.8 27.6##person proceeds to open the door.\nC3HIN 9.8 19.9##person they take a sip from a glass of coffee.\nC3HIN 0.0 4.0##person smiling at a picture.\nC3HIN 0.0 4.0##person they are smiling because they are happy.\nUQPO0 39.0 49.3##person sits down in a chair.\nUQPO0 39.0 49.3##person they sit in a nearby chair.\nU9LKA 14.6 21.4##person get up open the door.\nG838Q 8.1 18.4##person begins to tidy the closet.\nG838Q 0.0 10.0##a person takes a vacuum out of the closet.\nMIV2M 18.0 23.4##person sits down on a sofa.\nMIV2M 0.0 8.8##the person is holding a bag.\nMIV2M 0.0 4.3##a person opens a door.\nMIV2M 9.7 18.9##person pours a glass of water.\nMIV2M 18.0 23.4##person they sit down on the couch holding the glass.\nMIV2M 18.0 23.4##person sit on the sofa.\nMIV2M 0.0 8.8##person walks into their living room holding a bag.\nR13US 6.0 13.0##a person is smiling.\nR13US 6.0 13.0##a person smiles in the mirror.\n0JA9E 1.2 8.6##person throws clothes.\n0JA9E 2.3 12.2##person throw it on the floor.\nL9J5I 0.3 11.2##a person is in a bedroom eating by a window.\nL9J5I 0.3 11.2##person they are eating a snack.\nL9J5I 0.3 11.2##a person is sitting on the bed eating some food.\nEY6P4 0.0 2.9##person opens a door to their study.\nEY6P4 4.8 11.0##person reading a book.\nEY6P4 0.0 2.9##person opens a door.\nEY6P4 4.8 11.0##person reads a book.\nTS880 0.0 7.4##a person walks through a doorway with a box.\nTS880 0.0 21.1##a person is holding a box.\nTS880 20.3 38.5##person dressing in the doorway of the bedroom.\nIII9I 1.6 7.4##person closing the refrigerator door.\nIII9I 0.0 3.2##a person stands in front of an open refrigerator.\nIII9I 1.6 7.4##person they close the refrigerator door.\nDD57W 10.3 22.6##a person in the entryway is working on their laptop.\n03TL7 0.0 8.9##a man eating a cracker.\n03TL7 0.0 8.9##the person is sitting down eating food.\nB5VY1 0.2 5.7##a person walks  through a doorway holding a glass.\nB5VY1 9.7 16.0##person opens the refrigerator door.\nB5VY1 2.7 11.1##person puts the glass in a sink.\nORD96 0.0 12.3##a person is holding a pillow.\nIO3CI 5.7 11.0##a person is smiling.\nIO3CI 11.8 18.0##a person sits on a chair eating food.\nIO3CI 11.8 18.0##eating with another person.\nIO3CI 5.7 11.0##person smiling at each other as they eat.\nIO3CI 11.8 18.0##another person sits on a couch also eating food.\nJCUT2 0.0 6.1##person putting them on a shelf.\nJCUT2 0.0 14.5##a person is tidying up a table.\nJCUT2 0.0 14.5##a person is tidying up a table by taking plates.\nJCUT2 0.0 6.1##a person is putting dishes on the shelf.\n3DLKC 0.0 5.6##another person opens the door.\n3DLKC 0.0 5.6##a second person opens a door.\nLWB5E 0.0 5.3##person putting homework on the table.\nC9HLB 29.4 35.0##this person closes the laptop.\nSPJIE 0.0 3.6##person drinking coffee from a glass.\nIIJ5I 15.5 29.0##person they begin cooking on the stove.\nLHPQS 8.7 16.1##person take a picture of something.\nMTUR3 2.9 13.1##person two people walk through a doorway.\nMTUR3 30.8 50.0##person smiling at each other.\nMTUR3 11.8 30.8##person they both lie down together in a bed.\nMTUR3 26.8 36.5##person the people snuggle a blanket.\nMTUR3 26.8 36.5##person snuggle with a blanket.\nZKGKR 9.5 15.9##person closing a window.\nZKGKR 0.0 8.0##aa person is undressing.\nZKGKR 9.5 15.9##person closes the window.\nZKGKR 9.5 15.9##person they close the window.\nZKGKR 0.0 8.0##a person is undressing.\nOVICR 11.3 21.3##a person is sneezing.\nT1KK1 5.3 17.3##person eating from a plate.\nT1KK1 5.3 17.3##person eating some food out of a glass container.\nT1KK1 0.0 3.9##a person is walking around drinking a cup of coffee.\nXHG13 0.0 11.2##person pours the drink into another cup.\nENCXV 15.3 20.9##the person takes a medicine bottle from the desk.\nGXVX8 6.5 12.8##person pours water into a cup.\n25YVM 0.0 9.8##puts the person dirty dishes in it.\n25YVM 11.0 26.6##person washes the dishes in the sink.\nIS7PL 0.0 6.6##a person walks into the bathroom eating a sandwich.\nIS7PL 0.0 6.6##person someone walks through the doorway eating a sandwich.\nIS7PL 0.0 6.6##person eating a sandwich.\n8BG1T 15.5 29.8##the person laughs really hard at the television.\n8BG1T 15.5 29.8##person laugh at the television.\n1JYPW 14.1 21.2##person putting some boxes away.\nFPXL7 4.0 8.5##a person puts a book on a shelf.\n6HR54 0.9 8.4##one person is at a chair at the table smiling.\n91SQ4 0.0 8.3##person is opening box full of clothes.\n91SQ4 13.7 20.3##person runs out of the room.\n91SQ4 13.7 20.3##person starts running to doorway.\nM8NEU 0.0 7.3##a person is running into a room.\nM8NEU 23.5 29.0##person leave the room closing the door behind them.\nM8NEU 0.0 7.3##a person runs into their bedroom.\nM8NEU 0.0 5.0##person open the door.\nOIRJ0 17.6 26.9##person laughs more.\nOIRJ0 17.6 26.9##person laughs.\nOIRJ0 17.6 26.9##person sits down laughing.\nOIRJ0 16.2 22.0##the person sits down at the table.\nOIRJ0 0.0 10.1##person looks out window.\nOIRJ0 0.0 10.1##a person is watching something out of the window.\nJ9BXT 33.9 39.0##the person started sneezing because of all the dust.\n6GY1M 2.0 9.2##person smiling walks to a desk.\nUB1QP 23.0 31.1##a person is smiling.\nUB1QP 23.0 31.1##a other person is smiling at a towel.\nUB1QP 0.0 2.5##person holding a phone.\n759UE 2.6 10.4##a person opens their bathroom door.\n759UE 2.6 10.4##a person is opening a door.\n759UE 17.9 27.1##person takes a box from the sink.\nR6XU9 0.0 12.0##a person puts on shoes.\nMURXK 5.6 12.2##person putting it on a shelf.\nMURXK 0.0 9.7##a person is holding a camera.\nMURXK 5.6 12.2##a person puts a camera onto the shelf.\nZ6ZYF 14.5 23.2##the person was done eating a sandwich.\nZ6ZYF 18.0 23.0##the person takes a dish from the table.\nZ6ZYF 14.5 23.2##person eating something.\nZ6ZYF 0.0 7.0##a person runs across the room.\nZ6ZYF 14.5 23.2##person doing homework in the recreation room.\nGIC0G 14.7 28.8##another person takes a picture of them with a camera.\nD98TV 1.4 7.5##person puts a bag on the bed.\nD98TV 1.4 7.5##a person puts his bag onto his bed.\n6703W 7.0 14.0##person drinking from a cup.\n6703W 7.0 14.0##person drinks out of a glass off a table.\nGQYR9 25.0 35.0##person takes a drink from a glass.\nGQYR9 25.0 35.0##person drinks from a glass.\nCLU7Z 10.7 21.9##person takes a picture out the window.\nCLU7Z 6.5 12.3##a person is opening a window.\nCLU7Z 6.5 12.3##a person opens a window.\nW3CPB 6.0 11.6##person throw them on the floor.\nW3CPB 4.6 12.0##person take off their shoes.\n6TV29 13.5 21.4##a person is putting clothes into a washer.\n6TV29 13.5 21.4##person puts them on the clothes.\n6TV29 24.0 39.9##the person opens the door.\n6TV29 13.5 21.4##a person puts clothes.\nHXCGX 0.0 14.7##person sitting on the bed eating pick up a box.\nHXCGX 0.0 14.7##a person is eating on a bed.\nHXCGX 0.0 14.7##a person is sitting on the bed eating food.\nHXCGX 25.0 33.0##person closes the box.\nTOY9V 0.0 7.0##a person opens a cabinet.\nTOY9V 6.7 13.6##the person closes the cabinet door.\n6FSAH 3.1 15.2##a person takes food out of the wrapper.\nTF0KM 13.5 26.3##a person is undressing near the window.\n9EP7R 21.7 32.0##person takes a picture.\n9EP7R 21.7 32.0##takes a picture of person a.\n7HLTQ 2.9 11.2##a person begins pouring a glass of coffee.\nUNXLF 17.7 22.4##person takes a towel from the stove.\nK5CRM 6.2 11.3##the person puts the pillow on the floor.\nWT59C 17.6 23.1##person throws it onto the floor.\nWT59C 17.6 23.1##person throwing a broom on the floor.\n8D464 11.5 17.3##the person takes a picture of a laptop.\n8D464 14.8 20.1##person they turn off the light.\n8D464 0.0 7.4##a person is standing holding a phone.\n8D464 14.8 20.1##person turns off the light.\nAZFKK 0.0 3.4##a person is throwing a box towards a chair.\nAZFKK 0.7 8.8##a person is in a room opening a box.\nAZFKK 0.0 5.3##a person is holding the box.\n8YNSB 0.0 11.4##a person is laying on the ground reading a book.\n8YNSB 0.0 11.4##person reading a book.\n2NV6L 3.7 19.0##a person puts a pair of shoes into the closet.\n2NV6L 17.8 27.8##person takes a pillow from the shelf.\nP0ILN 0.0 4.9##a person walks in a doorway.\nP0ILN 0.0 7.1##person closes the door.\nP0ILN 17.5 32.0##person playing on their phone.\nP0ILN 17.5 32.0##person play with the phone.\nP0ILN 6.2 12.8##person turns on a light.\nP0ILN 13.9 20.7##the person takes off their shoes.\nP0ILN 13.9 20.7##person take off their shoes.\nP0ILN 6.2 12.8##a person turns on the light.\n9VBJ5 0.0 18.4##a person is eating some food.\n9VBJ5 0.0 18.4##the person is eating food.\n9VBJ5 25.4 39.5##person begin washing the glass out in the sink.\n9VBJ5 16.3 28.8##person drink a cup of coffee.\n9VBJ5 25.4 39.5##person wash the glass in the sink.\n9CDB6 15.8 28.8##another person runs up.\nU7E1T 0.3 8.6##a person is putting a glass down.\n5I330 11.0 18.0##person takes a box off the shelf.\n7BX06 0.0 12.5##person they awaken.\nZ6OEM 0.0 6.1##a person is opening a closet.\n3OAGK 21.6 30.0##person closes the bedroom door.\n3OAGK 21.6 30.0##person closing the doorway.\nF0N38 17.6 32.0##person takes out a cell phone from their pocket.\nF0N38 23.0 32.0##person talks on the phone.\nTLCLG 23.6 32.9##person runs down a hallway.\nTLCLG 13.8 22.5##person talking on the phone.\nTLCLG 23.6 32.9##person go for a run.\nTLCLG 13.8 22.5##a person is talking on the phone.\nTLCLG 23.6 32.9##the person quickly runs out.\nYLNPX 31.8 39.0##person talks on a phone.\nYLNPX 33.0 39.0##person takes out of a cell phone.\nZOLVU 17.9 27.9##person starts sneezing.\n2ODLD 0.0 10.3##a person is sitting in the walk in closet undressing.\nJ3ZZH 0.0 3.4##a person lying on the floor awakens.\nJ3ZZH 27.1 32.5##the person closes the cabinet.\nJ3ZZH 0.0 3.4##a person awakens in a pantry.\nJ3ZZH 23.3 31.5##person they put a box of food on the shelf.\nJ3ZZH 23.3 31.5##person puts it on a shelf in a cabinet.\nC1LJS 0.8 7.7##a person opens the bedroom door.\nP73UC 15.9 30.0##the person takes a phone from a pocket.\nP73UC 1.3 9.5##a person awakens in bed.\nP73UC 17.6 31.0##person takes a picture with it.\nA30ZM 0.0 4.3##a person is opening a bag.\nUJXBC 1.7 8.1##person opens a door.\nY1BWP 3.6 10.1##a person opens a door with a box of tissues.\nY1BWP 3.6 10.1##a person opens the door.\nY1BWP 20.4 26.2##person they put the kleenex back  in the box.\n7L7P4 3.4 8.7##a person put a camera on a table.\n0R0DJ 6.5 17.0##person laughs as they look at the laptop.\n0R0DJ 4.4 9.5##one person sitting on the stairs opens a laptop.\n0R0DJ 0.0 7.5##a person sits on the stairs holding a laptop.\n9O889 19.1 32.0##the person is working on a laptop.\n2H56B 0.9 6.0##the person puts the bag down.\nKTOJX 0.0 10.5##a person was undressing his clothes.\n2YXJO 7.6 13.9##when another person runs in with a broom.\nT6BS9 4.5 10.9##person opens a closet.\nT6BS9 4.7 11.2##person throws the shoes into a closet.\nT6BS9 4.7 11.2##person throw the shoes in.\nT6BS9 4.7 11.2##person throws the shoes inside.\nT6BS9 3.8 9.9##person they open a door.\nHI81L 0.0 6.6##person is sitting on floor wrapped in blanket.\nHI81L 0.0 6.6##a person is sitting on the floor with a blanket.\nHI81L 2.8 9.5##the person opens a small box.\nHI81L 9.6 18.0##person starts laughing.\nBART9 15.9 22.2##a person puts groceries onto a chair.\nK7FNC 0.7 9.8##a person opens a door.\nK7FNC 11.7 23.2##person opens their laptop.\nADK5J 15.2 20.8##the person puts the camera onto the shelf.\nADK5J 15.2 20.8##person put their camera on a shelf.\n5776I 12.0 17.3##person throws clothes.\n5776I 0.0 6.6##a person sits on a sofa using a computer.\n5776I 12.0 17.3##another person throws clothes on the couch.\n5776I 12.0 17.3##another person throws their clothes onto a bed.\nHM7J7 0.0 4.4##person turning on the light.\nHM7J7 0.0 4.4##the person turns on the light.\nU44OC 24.3 32.0##another person runs through the room holding their cell phone.\nFY9UT 12.9 17.0##a person is snuggling a blanket on the bed.\nIF7KE 11.0 18.8##person eats food from a bowl.\nIF7KE 11.0 18.8##person stands in the same place eating some food.\nTW2F4 26.5 32.0##person sit on the sofa.\nTW2F4 3.8 16.3##the person begins undressing.\nTW2F4 26.5 32.0##person sitting on the sofa.\nTW2F4 3.8 16.3##a person undresses out of some clothes.\nQQG8X 0.0 6.0##person awaken get up.\nI9TIU 21.2 28.0##a person goes to open a door.\nI9TIU 16.0 24.3##person begins sneezing.\nX95MU 19.1 37.0##person take a picture.\nX95MU 0.5 8.2##the person puts on their shoes.\nX95MU 0.5 8.2##person putting on shoes.\nX95MU 19.1 37.0##person they take a picture.\nYLRVT 10.9 16.1##person the throw some clothes on a bed.\nJFSJF 0.0 9.7##the person is reading a book.\nJFSJF 0.0 9.7##a person sits in a chair reading a book.\nJFSJF 14.9 27.0##person starts undressing.\nEPP0O 0.0 7.4##a person laughs on camera.\nYUGJJ 13.0 21.3##person opens a book.\nI713Z 24.4 30.8##person open the door.\nUN6O9 4.4 9.3##a person is throwing clothes on the floor.\nUN6O9 4.4 9.3##the person is throwing clothes onto the floor.\nW3LUB 22.4 28.1##person puts the phone into a bag.\n33OVO 0.0 7.0##a person opens a door.\n33OVO 17.7 31.0##person works on a laptop on a desk.\n33OVO 3.2 9.1##person they close the door behind them.\n33OVO 17.7 31.0##person start playing around with the laptop.\nVEKTO 0.0 7.0##the person puts a pair of shoes.\nVEKTO 0.0 7.0##person they put the shoes.\nVEKTO 4.0 10.0##person take a towel.\nRYQI0 9.3 24.5##person they are holding a pillow.\nRYQI0 18.5 23.9##person they throw a pillow on the floor.\nNQKZB 0.0 12.5##a person is tidying up some clothes on their bed.\nNQKZB 37.4 48.0##person putting clothes in the hamper.\nZS7X6 7.3 12.7##person takes a picture out of the box.\nZS7X6 7.3 12.7##person they take a picture out of the box.\nFNNTW 26.0 32.0##person periodically drinking from a glass.\nFNNTW 26.0 32.0##the person drinks from a cup of coffee.\nG1NFB 22.3 28.3##person close the door.\nG1NFB 0.0 3.7##a person is sneezing as the person dusts shelves.\nG1NFB 14.3 26.0##the person begins washing the mirror.\nY4LT8 17.3 31.0##another person is washing dishes.\nWYZCW 12.7 24.5##person puts on a pair of shoes.\nWYZCW 0.0 5.2##person they stand up.\nWYZCW 9.1 16.3##person opens the door.\nWYZCW 12.7 24.5##person puts on their shoes.\nWYZCW 9.1 16.3##person opening the door.\n55DDW 31.9 40.0##person they sat their smiling in comfort.\n6ZJAL 11.2 22.4##person sits on the sofa.\n6ZJAL 11.5 16.5##person throws it on the floor.\n6ZJAL 25.3 34.0##person begins to eat it.\n6ZJAL 25.3 34.0##person start to eat some food.\n5CZRC 7.1 17.2##person drinking a glass of water.\n5CZRC 0.0 7.9##a person is eating a piece of fruit.\n7SAFU 1.0 7.1##a person is awakening to a light.\nD5886 21.2 28.0##the person turns to watch the television.\nD5886 0.0 6.5##a person opens the door.\nFQWTE 13.1 20.5##person start undressing.\nS2A89 4.0 10.8##person closes the door.\nNL26D 0.2 10.2##a person puts an item on a shelf.\nNL26D 0.0 4.5##a person walks through a doorway.\nRTULL 19.7 33.0##another person washes their hands.\nRTULL 19.7 33.0##person washes hands under the tap.\nRTULL 19.7 33.0##another person walks in to wash their hands.\nG8YWY 4.2 8.8##person is running to put food on stove.\nG82VI 6.5 17.0##person takes out a laptop.\nG82VI 5.6 13.4##person opens the box.\nG82VI 0.0 4.2##person opens door.\nG82VI 6.5 17.0##person they take out a laptop.\nG82VI 5.6 13.4##person opens a box.\nG82VI 0.0 17.2##a person holding a box enters the garage.\n4MFE0 11.7 20.9##person they look at a book on the table.\n4MFE0 0.4 6.1##a person is eating food.\n4MFE0 0.4 6.1##person eating a bag of chips.\n4MFE0 19.8 27.2##person they take the book.\nUIERL 6.4 17.2##person playing a game on a laptop.\nUIERL 15.6 24.9##person start eating.\nUIERL 15.6 24.9##person stops to eat.\nUIERL 6.4 17.2##person playing on a laptop.\nUIERL 15.6 24.9##person eating food in a hallway.\nUIERL 0.9 10.2##a person is running place.\nUIERL 0.9 10.2##a man running in place.\nDV6U8 12.9 19.4##person opens a cabinet.\nDV6U8 0.0 12.1##person is washing their hands.\nDV6U8 25.4 32.0##the person runs out of the room.\nDV6U8 15.7 21.1##person takes out a camera.\nDV6U8 0.0 12.1##a person is washing their hands in the bathroom.\nDV6U8 25.4 32.0##person begin running out the room.\nUPUPM 16.6 27.9##person they start throwing clothes off the bed.\nUPUPM 16.6 27.9##person begins throwing the clothes into the corner.\nCR1OK 6.1 12.7##person sits in a chair.\nCR1OK 6.1 12.7##person sits in a chair at a desk.\nCR1OK 6.1 12.7##person they go sit in the chair.\nPVAJ8 29.2 37.9##person grab the closet doorknob.\nKLO0K 2.0 17.4##a person is holding a doorknob.\nKLO0K 17.9 33.0##person lays down on a pillow on the floor.\nKLO0K 17.9 33.0##person lays down on the floor.\nUPYPG 16.0 21.8##another person runs through the doorway.\nUPYPG 16.0 21.8##another person suddenly comes running through.\nRDHNQ 0.2 5.0##a person turns on a light.\nRDHNQ 0.2 5.0##a person turns on the light in the garage.\nRDHNQ 23.3 38.0##person they take their phone out of their pocket.\nRDHNQ 4.9 14.2##person takes off their shoes.\nOEIRN 2.3 18.0##person eats a sandwich.\nOEIRN 19.3 36.7##person take some medicine.\nOEIRN 19.3 36.7##person they take the medicine.\nOEIRN 25.6 30.0##person takes some with a glass of water.\nOEIRN 2.3 18.0##a person sits on a sofa eating a sandwich.\nOEIRN 19.3 36.7##the person takes medicine off a table.\nV8GK6 24.8 33.0##person turns off a light.\nV8GK6 24.8 33.0##person turns off the light.\nMU6UQ 0.0 4.4##a person is awakening in bed.\n5D351 23.3 29.4##person throw their shoes on the floor.\n5D351 23.3 29.4##person throw the shoes.\n13IOT 0.0 8.3##person was laughing at something that was on television.\n13IOT 0.0 8.8##the person is watching television.\nLH6LE 3.5 8.5##a person opens a cabinet.\nLH6LE 3.5 8.5##person opens a cabinet.\nLH6LE 21.6 26.9##person closes cabinet.\nLH6LE 15.2 22.0##person starts to put away dishes.\nLH6LE 5.4 15.3##person seen holding some dishes.\n5XA4R 1.4 8.8##person sits on the sofa.\n5XA4R 1.4 8.8##person to go sit on a couch.\nVICUM 0.5 5.9##person close the door.\nVICUM 0.5 5.9##person closes the door multiple times.\nVICUM 0.5 5.9##person closing the door.\nKU4UP 2.0 8.0##a person takes a cup from a shelf.\nO7FDB 6.1 11.0##person they put 3 bottles into the fridge.\nO7FDB 6.9 16.5##another person enters the room talking on their cell phone.\nO7FDB 6.9 16.5##person talking on the phone.\nO7FDB 18.3 24.0##person started putting beer on the shelf.\n3B81O 0.0 7.9##one person opens a window.\n3B81O 19.7 26.8##person puts away food.\n3B81O 28.6 34.0##person closes the window.\n3B81O 28.6 34.0##the person closes the window.\n3B81O 0.0 7.9##a person opens a window.\n43FG9 3.2 8.7##person putting clothes on a chair.\nEVU9O 16.0 25.3##another person is sneezing by the door.\nYXSI7 0.9 6.1##a person opens the front door.\nYXSI7 1.6 7.6##a person walks through a doorway.\nYXSI7 13.1 20.7##person starts sneezing.\nYXSI7 13.1 20.7##person proceeded to have a sneezing fit.\nVDUO1 22.2 37.0##person washing dishes in a pantry.\n5V5EL 0.0 6.5##a person takes a picture with a camera.\nG4853 3.2 13.3##a person is sneezing into a phone.\nG4853 19.4 31.0##person opening a cabinet in a garage.\n97086 18.4 27.3##person opens a laptop.\n0IJ8T 4.1 11.7##person uses a tool to fix a doorknob.\n0IJ8T 4.1 11.7##one person is fixing the doorknob.\nHVBES 11.0 16.9##the person immediately started running.\nX9R37 0.3 5.7##person closing the door they reopen the door.\nX9R37 4.3 9.4##person to remember to turn off the light.\nX9R37 0.3 5.7##person closing the door.\nX9R37 0.3 5.7##person they close the door.\nX9R37 4.3 9.4##person turn off the light.\nE0ZBC 8.1 28.7##a person pours a cup of coffee from a thermos.\nE0ZBC 8.1 28.7##a person is pouring coffee into a cup.\nJKZUM 0.0 5.1##a person is opening a door.\nTRUIW 19.0 29.2##person they begin opening the door.\nTRUIW 1.3 13.5##a person takes a dosage of medicine.\nTRUIW 19.0 29.2##person opens a door.\nXIVBU 0.0 6.5##person drinking a glass of water.\n6PZJ3 10.0 14.8##person puts some food.\nI1CS8 23.1 31.0##person looks out a window.\nI1CS8 21.3 27.5##person stand up.\nI1CS8 23.1 31.0##the person looks out the window.\nI1CS8 23.1 31.0##person look out the window.\n6YN3J 5.8 13.1##the person puts the sandwich on the coffee table.\n6YN3J 0.0 9.0##person eating a sandwich.\n6YN3J 16.5 23.8##person stand up.\n6YN3J 0.0 9.0##a person is sitting on the couch eating a sandwich.\nFM078 0.2 12.4##person tidys up the table.\nFM078 12.3 19.4##person puts a box in the cabinet.\nG99VH 1.5 17.9##person puts down the camera.\nG99VH 17.4 33.4##person takes a picture of themselves.\nQ37OS 9.4 18.9##another person runs down holding a glass.\n48WOM 8.1 15.7##person takes out a box.\n48WOM 4.2 9.5##person she opens the box.\n48WOM 3.7 8.8##person opens a medicine cabinet.\nIFO3G 30.5 37.0##person begins laughing as they open a cabinet.\nIFO3G 30.5 37.0##person open a cabinet door.\nIFO3G 0.0 3.2##a person is sitting on a bed they.\nIFO3G 30.5 37.0##person open up the cabinet to look inside.\n55BOW 24.1 29.4##person walks out the doorway.\nUPL9S 57.8 76.0##person walks in holding laptop.\n3L7Y9 0.0 13.9##person drinking a cup of coffee.\nWF7TY 3.6 12.0##person takes off shoes.\nOFB7A 14.6 21.5##person looks at a picture.\nOFB7A 13.3 22.1##a person is drinking a cup of coffee.\nYXQWH 23.3 30.2##the person puts the groceries into a cabinet.\nQGLQ0 0.0 4.3##person they stand up.\nQGLQ0 1.1 10.6##person puts a canvas bag into a box.\n7UGF7 27.8 48.1##person wards they start eating a snack.\n7UGF7 3.8 16.8##a person awakens.\n7UGF7 3.8 16.8##a person is awakening in a office.\n7UGF7 27.8 48.1##person begins to eat food.\n7UGF7 27.8 48.1##person eat a snack.\n7UGF7 13.5 30.6##person drink from a  cup.\n106AY 29.1 35.0##person eating food.\n106AY 1.1 9.1##person is turning light on.\n106AY 29.1 35.0##person eats food.\n106AY 10.9 20.6##person putting shoes on.\nKZN8C 12.6 22.9##person pours a beverage in a cup.\nKZN8C 17.9 26.0##person puts the camera on the shelf.\nKZN8C 12.6 22.9##person pours water into a glass on a washing machine.\nKZN8C 17.9 26.0##person puts the glass on a shelf.\nWCY52 9.3 17.0##a person is cooking on a stove.\nWCY52 9.3 17.0##a person is cooking at a stove.\nWCY52 22.7 27.6##person throws some clothes that they spot on the floor.\nZ5AZW 0.0 9.6##a person in the hallway holding a towel.\n92AO4 0.0 9.5##one person runs in.\n92AO4 0.8 9.5##person holding a towel.\n92AO4 0.0 9.5##a person runs into a room.\nHEOJM 2.7 9.9##a person is throwing a pillow on the floor.\nHEOJM 0.8 7.4##person takes a pillow off of the bed.\nHEOJM 2.7 9.9##person throws the pillow on the floor.\n8MX1T 22.1 29.1##person drinks from cup taken from a table.\n9YI82 12.3 21.6##person reading a book.\n9YI82 22.7 27.5##person puts the book down on a table.\n9YI82 12.3 21.6##a person is smiling as they read a book.\n9YI82 18.9 26.1##the person laughs.\nULAWO 10.2 15.6##person holding a camera.\nULAWO 6.4 15.6##the person takes a picture of a pile of clothes.\nA5XR5 0.0 15.0##a person is working on their laptop.\nA5XR5 11.3 18.3##person takes their shoes off.\nIET7H 7.5 17.2##person they are opening the door.\n539EH 10.5 17.2##person takes picture of shoes with camera.\n539EH 2.7 10.1##person open a box.\n539EH 2.7 10.1##person starts opening box.\n539EH 6.6 18.2##person puts box with shoes on table.\nMT6C2 2.8 10.5##person open a window.\nMT6C2 0.7 5.6##person they put the pillow on a counter.\nMT6C2 2.8 10.5##person they open a window.\nMT6C2 0.0 3.7##a person runs in the room carrying a pillow.\nMT6C2 2.8 10.5##person open the window.\nMT6C2 0.0 4.8##a person runs into the kitchen holding a pillow.\nOX3BI 4.7 9.8##person turns on the light.\nOX3BI 7.6 12.5##a person is putting their homework on the table.\nQKP9V 14.1 22.2##person opens a door to another room.\nQKP9V 1.0 8.5##a person is laughing by themselves.\nQKP9V 14.1 22.2##person opens the door.\nUMUBT 0.0 10.5##a person is tidying a blanket on the bed.\nM79TJ 0.8 11.2##a person takes some dishes.\n186EF 0.0 7.9##the person is holding a broom.\n186EF 0.0 7.9##a person holds a broom.\nKFHLP 2.5 7.7##person closes the door.\nKFHLP 0.0 3.9##a person runs into the room.\nKFHLP 0.0 4.5##person puts a plate of food on the table.\nKFHLP 0.0 3.9##person they run back.\nBAGJW 5.8 13.8##person puts a paper onto a table.\nRO429 0.0 6.4##a person opens the refrigerator.\nRO429 0.0 5.6##person puts a bag inside.\nLG73V 11.1 24.0##person they take off their shoes.\nLG73V 9.3 15.0##one person puts a book into a cabinet.\nACAK4 18.7 24.6##person begin sneezing.\nACAK4 13.6 22.1##the person takes a towel from a chair.\nACAK4 0.0 13.2##a person sits at a table working on their laptop.\nSVQFY 27.0 34.0##a person puts the cup in the sink.\nSVQFY 8.1 22.3##person eating a sandwich.\nSVQFY 8.1 22.3##person eating a sandwich starts tidying up.\nSVQFY 14.3 24.9##person eating something.\nM7BD4 18.0 23.5##person they open the closet.\nM7BD4 20.2 26.2##person close their laptop.\nM7BD4 17.1 23.5##person they open a closet door.\nM7BD4 2.8 10.9##person tidy up some clothes on the floor.\nWMD0E 12.9 23.8##the person the puts the phone away.\nWMD0E 12.9 23.8##the person puts their phone away.\nR3Z2O 2.0 10.4##person began playing with his phone.\nF796T 8.6 13.6##person closes the door.\n41FNM 15.3 29.2##person opens a cabinet.\n41FNM 4.0 10.5##a person dresses.\n41FNM 4.0 10.5##person one is getting dressed.\n41FNM 15.3 29.2##the first person opens a closet.\nXJ4T3 5.0 11.4##the person opens a box in the closet.\nXJ4T3 5.0 11.4##person opening a boxed game.\nXJ4T3 0.0 4.8##a person is opening the door to the closer.\nXJ4T3 0.0 4.8##person opens the door.\nXJ4T3 22.4 25.0##the person holds the towel close to their face.\nV2DAA 14.1 23.2##person put a pillow in the chair.\nV2DAA 14.1 23.2##person they put a pillow behind their back.\n70PUI 0.0 6.8##a person gets dressed next to a window.\n70PUI 10.7 16.7##the person takes a blanket.\n70PUI 0.0 6.8##a person is dressing in front of the window.\nA2JV3 5.9 15.7##the person puts the dishes onto the shelf.\nP73KX 10.3 16.3##person sits on a chair.\nP73KX 1.3 9.4##a person takes off their shoes.\nP73KX 1.3 9.4##person takes off their shoes.\nP31E5 2.0 9.0##person takes a glass of a shelf.\nP31E5 10.4 19.7##person drinks from the glass.\nE1TJI 21.7 33.7##another person is smiling at the picture.\nE1TJI 22.5 27.0##another person starts sneezing.\n5S1SL 1.1 11.4##a person puts something on a shelf.\n95M38 20.6 26.1##person put their coffee cup down a table.\n95M38 6.7 14.3##a person is drinking a cup of coffee.\nE7ESG 24.3 32.0##person open a book.\nE7ESG 11.9 20.4##person they awaken.\nE7ESG 26.2 31.9##person sits down to look at a book.\nGHJPQ 15.8 21.7##person sits in a chair.\nGHJPQ 23.2 31.0##person pull out a camera to take a picture.\nGHJPQ 15.8 21.7##person they decide to sit on the chair.\nPQH3Q 14.4 20.3##person they stand up.\nPQH3Q 21.1 30.0##person is watching themselves in the mirror.\nPQH3Q 21.3 30.0##the person fixes their hair.\nPQH3Q 21.3 30.0##person fix their hair.\nZCG3J 16.9 23.2##person opens the laptop.\nZCG3J 15.2 26.0##person sits down at a table.\nZCG3J 4.1 15.0##person opens the cabinet.\nZCG3J 4.1 15.0##person opens a couple of cabinets.\nZCG3J 4.1 15.0##person opens up a cabinet.\nZCG3J 15.2 26.0##person sit down at a table with it.\nZCG3J 10.3 16.2##smiling the person takes the laptop off the shelf.\nDEXMO 19.1 25.0##person they take some clothes from the floor.\nJ8JOQ 29.1 32.0##person puts the phone down.\nJ8JOQ 29.1 32.0##person puts the phone back on the base.\nPFTHZ 21.2 25.0##cooking in a recreation room / man cave.\nUVMZ8 0.1 6.7##a person holding a phone turns on a light switch.\nUVMZ8 5.3 14.8##person starts drinking something from a cup.\nUVMZ8 7.0 17.6##person turns on a light.\nUVMZ8 7.0 17.6##a person turns on the light.\n03EW0 0.0 2.6##a person is throwing a box.\nUQJ58 3.1 10.4##person open the window.\nUQJ58 25.6 32.4##person closing the door.\nUQJ58 0.0 6.0##a person is looking out a window.\nUQJ58 25.6 32.4##person closes the door.\n6UMSJ 0.0 6.2##person takes food out of a bag.\nS8PVE 19.0 29.3##a person is smiling.\n4J494 0.1 14.0##a person takes some clothes out of a washing machine.\n4J494 25.8 31.0##person turns off the light.\nMNXXD 22.0 28.1##person drink a glass of water.\n2U903 0.0 13.0##a person is watching the mirror.\n9OMY1 22.0 28.0##person walks to the couch to sit down.\n9OMY1 1.2 6.3##person opening a box.\n9OMY1 1.2 6.3##person they open the box.\nHOLED 1.9 8.0##person pours out some water into a cup.\nHOLED 0.0 3.5##a person takes a bottle.\nXTC0F 7.4 16.0##person opens up plastic bag.\nXTC0F 0.0 9.9##the person opens the pantry door.\nXTC0F 7.4 16.0##person opens a bag.\nXTC0F 0.0 9.9##person opens door.\nXTC0F 12.5 26.0##a person walks into a room holding a towel.\n57N4Z 22.7 27.6##person turning off the light.\n57N4Z 22.7 27.6##person turns off the light.\n1M89F 8.4 16.7##a person is pouring a drink into a cup.\n1M89F 8.4 16.7##person drinks some coffee from the glass.\n19PNV 14.7 21.3##the person takes a blanket.\nZ2MY2 1.2 6.0##person walks into bedroom sits down on their bed.\nZ2MY2 1.2 6.0##person their phone they sit on the bed.\nQNHM7 15.3 27.0##person putting it on a table.\nQNHM7 0.0 6.3##person is running to get coffee from shelf.\nQNHM7 15.3 27.0##person puts cup of coffee on table.\nQNHM7 0.0 6.3##a person is running in a garage.\nVOX2S 13.3 19.4##person open a refrigerator door.\nVOX2S 14.7 26.8##the second person takes the food to a sink.\nV3B51 0.0 6.4##a man is reading a book.\nV3B51 1.2 8.8##person he turns on the lights.\nV3B51 1.2 8.8##a person turns on the stairway light.\nQX33M 27.4 32.0##person they close the door behind them.\nQX33M 20.3 25.3##person they stand up to grab a book.\nXZLNT 12.3 21.1##person take some dishes off a shelf.\nQB7ZN 20.1 36.0##person they are sitting down on a chair.\nQB7ZN 20.1 36.0##person sits in chair.\nFKJ9L 0.1 7.8##a person puts a box on a shelf.\nNVKDC 8.8 14.0##the person puts the bag onto a shelf.\nNVKDC 8.8 14.0##a person puts a bag down on a shelf.\nNVKDC 7.0 13.2##person holding a bag.\n8TNSB 2.8 10.1##a person opens a door.\n8TNSB 3.0 12.2##a second person runs through the door.\n8TNSB 2.8 10.1##a person opens the door.\n1OVB8 18.6 24.0##person turns off the lights.\nUDAQU 0.0 12.0##person sneezing multiple times.\nUDAQU 0.0 12.0##a person is sneezing on their sandwich.\nUDAQU 15.3 20.4##a person puts a sandwich on top of a book.\nWEVQH 21.7 26.0##person they begin to throw clothes from a bag.\nWEVQH 4.6 10.9##the person takes clothing out from the bag.\nQ24OC 23.8 30.0##person begins putting dishes on a table.\nGADLP 23.5 32.0##person they are smiling at the camera.\nX91NG 22.5 27.8##a person sweeps dirt out of an open door.\nX91NG 29.6 38.1##person closes the door.\nX91NG 22.5 27.8##person opens the door twice.\nEMF9Q 21.7 30.2##person they open a cabinet.\nGQGAE 0.0 6.3##person opens refrigerator.\nGQGAE 0.0 6.3##a person is opening a refrigerator.\nGQGAE 27.0 32.0##person takes out medicine.\nGQGAE 14.2 25.4##person opens a cabinet.\nV2BCZ 17.4 28.0##person begins to put clothe in a bag.\nV2BCZ 17.4 28.0##person they put that bag into a box.\nWFD5Z 6.5 11.7##the person closes the laptop.\nWFD5Z 9.1 18.8##person takes a bite of a sandwich.\nWFD5Z 6.5 11.7##person close the laptop.\nWFD5Z 6.5 11.7##person closes laptop.\nWFD5Z 0.0 10.5##person is sitting on chair playing games on laptop.\nWFD5Z 12.3 27.2##person proceed to eating a sandwich.\nWFD5Z 12.3 27.2##person starts eating sandwich.\nWFD5Z 0.0 10.5##a person is playing on their laptop.\nEJFBM 8.9 15.1##person drinks from cup.\n6RXCP 1.5 7.1##person washing the dishes in the sink.\n6RXCP 1.5 7.1##a person washes dishes.\n6RXCP 23.2 28.6##person opened the door.\nPV745 29.9 41.9##person puts a box on their lap.\nPV745 33.9 46.7##person put on a pair of shoes.\nPV745 29.9 41.9##person they put the box on the ground.\nPV745 28.0 56.9##a person sits down in a chair.\nPV745 33.9 46.7##person puts their shoes on.\nPV745 33.9 46.7##person puts on their shoes.\nMIRSU 0.4 11.4##a person is undressing.\nMIRSU 0.4 11.4##a person is undressing in the living room.\nQBIOX 25.7 31.9##person starts running in the garage.\nQBIOX 25.7 31.9##person runs out.\nQBIOX 25.7 31.9##person runs out of the room.\nVTYXW 4.4 10.6##a person is opening the refrigerator door.\nVTYXW 4.4 10.6##the person opens the refrigerator.\nVTYXW 4.4 10.6##person opens the refrigerator again.\nVTYXW 39.3 65.8##person stir something cooking in a pot.\nVTYXW 26.5 38.4##person pouring themselves a glass of water.\nVTYXW 26.5 38.4##person pours some into a glass.\nVTYXW 39.3 65.8##person cooking something on the stove.\nGSIYV 6.2 12.1##a person is putting a towel.\nVA8ZR 20.7 28.4##person takes a camera off the shelf.\nVA8ZR 4.1 14.3##a person opens a door.\nVA8ZR 4.1 14.3##a person opens the pantry door.\nVA8ZR 12.1 19.1##person turns on the light.\nVA8ZR 12.1 19.1##person turns on a light.\n4MGUQ 0.0 8.1##a person is washing dishes.\n4MGUQ 11.4 18.0##person drinks from a glass of water.\n4MGUQ 0.0 9.0##person sitting in a chair.\nYH70K 21.6 26.9##person puts some items on a table.\n55OAL 8.8 15.0##a person opens a closet door.\n55OAL 7.7 16.7##person takes a blanket off a shelf.\n55OAL 7.7 16.7##the person takes the blanket.\nCIG76 10.6 17.5##person drinking bottle of water.\nMLS4T 7.4 19.5##person taking a drink from a glass.\nMLS4T 2.1 10.4##a person is putting a box on a shelf.\nMLS4T 7.4 19.5##the person drinks from a glass of iced tea.\nMLS4T 2.3 7.5##a person throws a box of food onto the shelf.\nPK2F0 11.9 19.2##person they close the door.\nQWTGQ 1.2 7.6##a person turns on the light in the hallway.\nWKP5N 13.2 19.1##person takes it with a glass of water.\nWKP5N 7.0 15.9##person takes out some medicine.\nWKP5N 7.0 15.9##person takes some medicine with some water.\nWKP5N 18.1 25.8##the person opens a cabinet.\nWKP5N 0.0 7.9##person someone is sitting at a table.\n00HFP 13.6 21.9##person throwing them on the floor.\n00HFP 13.6 21.9##person throws them down on the floor.\nN59H5 16.6 22.0##person runs out of the room.\nN59H5 16.6 22.0##person running out of the room.\n16D5O 1.5 9.1##person throws a pillow onto it.\n16D5O 0.0 6.5##a person walks into the pantry holding a pillow.\n16D5O 1.5 9.1##the person throws the pillow into the cabinet.\nV62NW 2.4 7.0##a person takes a book from a table.\n6VM42 9.8 16.8##person takes a laptop from the table.\nRZY2I 5.0 10.0##person opens a window.\nRZY2I 5.0 10.0##person open a window.\nRZY2I 0.0 5.0##a person is standing in their bedroom undressing.\nBLIFO 0.4 7.5##a person runs in.\nBLIFO 1.0 9.1##person opens the cabinet.\nBLIFO 0.4 7.5##a person is running to the cabinet.\nMLLVP 10.7 15.9##person sneezing on themselves.\nMLLVP 4.1 10.5##person drinks from a glass.\n2XLVN 6.7 14.5##person they open the box.\nZZ2SF 21.2 32.0##person drinks some water from a bottle.\nYP1HM 18.6 24.0##person closes notebook.\nYP1HM 12.7 18.6##a person is laughing.\nA21M5 22.2 31.0##person walks out of the doorway.\nA21M5 22.2 31.0##the person walks back in the doorway with the broom.\nA21M5 0.0 4.4##the person opens the box.\nA21M5 2.9 8.8##person closes a book.\nA21M5 4.7 19.8##person holding a box.\nA21M5 0.6 7.3##the person opens the book.\nI8WPI 0.0 10.7##one person washes a glass.\nI8WPI 20.7 27.7##person that they turn off the lights.\nI8WPI 20.7 27.7##person turns off the light.\n1ROX7 0.0 13.4##a person is eating.\n1ROX7 0.0 13.4##a person is sitting at a table eating some food.\n1ROX7 0.0 13.4##a person is sitting at a table eating.\nCMFMH 17.4 33.0##a person is fixing a door.\nCMFMH 0.0 8.0##a person is working on eating a sandwich.\nCMFMH 0.0 8.0##a person is eating a sandwich.\nCMFMH 17.4 33.0##another person is fixing a cabinet door with a screwdriver.\nB6487 0.0 4.3##a person opens a refrigerator.\nJ7TT5 0.0 11.6##a person is sitting on the stairs eating a sandwich.\nJ7TT5 0.0 11.6##a person is eating a sandwich.\n293L4 0.0 19.6##a person is cooking on a stove.\nJBHOL 5.4 13.5##a laughing person runs into their hallway grasping dishes.\nU3VOM 25.1 32.0##a person is laying in their bed watching television.\nU3VOM 14.4 20.2##person throws a pile of clothes on the floor.\nGC7L9 4.1 14.5##person opens window.\n2ZTNY 0.0 9.1##a person puts a blanket onto the stairs.\nCP07P 1.7 11.8##another person is standing their smiling.\nPTA97 0.0 13.7##a person is seen fixing their hair at their closet.\nKXIMH 1.8 8.0##a person is sitting on a couch opening a box.\nKXIMH 1.8 8.0##a person in a recreational room is opening a box.\nKXIMH 1.8 8.0##the person opens the box.\nRUG1J 10.0 14.4##person sneezing into a phone in a basement.\nTIJOY 6.3 14.6##person begins eating.\nTIJOY 7.9 13.5##person takes some food out.\nTIJOY 3.1 11.9##person opens a bag.\n41SB2 2.0 11.0##a person is standing on a chair changing a lightbulb.\n41SB2 11.0 16.0##person closing a cabinet.\n41SB2 3.0 10.0##person fixes a light.\n41SB2 2.0 11.0##person stand up on the chair.\n41SB2 11.0 16.0##person closes a cabinet door.\n41SB2 3.0 10.0##person fix the light properly.\n7HVU8 0.0 10.0##person tidying up by putting some clothes in a bag.\nUKOAU 21.7 31.0##person is talking on the phone.\nUKOAU 9.9 23.9##person running in place in the garage.\nCUD1T 11.1 23.2##person laughing at their phone.\nCUD1T 11.1 23.2##a person laughs at something on their phone.\nCUD1T 11.1 23.2##person starts laughing.\nY8ON2 11.0 17.0##person throws a pillow.\nY8ON2 11.0 17.0##person throws a pillow on the floor.\nY8ON2 11.0 17.0##person throw the pillow on the floor.\nY8ON2 10.0 15.0##a person awakens on their bed.\n94YTY 11.8 19.0##the person takes off clothes.\n94YTY 2.2 7.0##person fixes their hair.\n94YTY 5.5 19.0##person opening their front door begins undressing.\n94YTY 9.5 22.3##person closing the door once again.\n94YTY 9.5 22.3##person closes the door.\n94YTY 17.7 30.3##person puts the clothes on a cabinet.\n94YTY 1.8 7.5##the person opens the door.\nNLWBW 28.6 35.2##person they put away the groceries.\nNLWBW 15.2 21.6##person turns off a light.\nNLWBW 15.2 21.6##person they go turn off the light in the garage.\nNLWBW 1.2 7.6##person put a bag of groceries on a table.\nNLWBW 0.0 5.9##a person closed a door.\nE0AEN 3.4 12.2##person puts clothes from a bag in it.\nE0AEN 0.0 5.2##a person opens the doorknob to the closet.\nE0AEN 0.0 5.2##a person opens the door to their wardrobe.\nE0AEN 3.4 12.2##person puts clothes away on the shelves.\nE0AEN 0.0 4.7##a person opens a closet.\nWJEVU 7.7 30.6##person they take a drink from a glass.\nWJEVU 44.4 51.0##the person reaches to turn the light off.\nWJEVU 47.9 57.2##person snuggle with a blanket.\n0JHMW 4.3 9.2##the person puts the glass down.\n88TGX 0.3 8.2##a person opens the refrigerator.\n88TGX 0.3 8.2##person opening the refrigerator door.\nWZRLQ 27.7 34.1##person takes a glass of water from a nearby shelf.\nT4HF9 14.3 21.7##person open a door.\nT4HF9 14.3 21.7##person opens the door.\nT4HF9 14.3 21.7##person opening a doorway.\n29LL7 9.6 16.2##a laughing person runs around the room grasping shoes.\n29LL7 9.6 16.2##person leaves laughing.\nC5KNM 28.5 37.0##a person walks through the doorway.\nZSJ2I 9.8 17.7##person drink water from glasses.\nZSJ2I 0.0 4.6##person b are sitting at a table.\nZSJ2I 12.7 23.7##person walks through a doorway to another room.\nZSJ2I 23.4 32.0##person closes a door.\nZSJ2I 0.0 4.6##person two people sit at a table.\nZSJ2I 23.4 32.0##person another was closing the door in the doorway.\nZSJ2I 23.4 32.0##person a closes the front door.\nWYM1M 23.9 31.0##person takes the medicine.\nWYM1M 14.1 19.8##person playing on a mobile phone.\nWYM1M 14.1 19.8##person begins playing a game on their cell phone.\n0WV3L 20.5 32.4##person opening a cabinet.\n0WV3L 27.3 35.4##person closes the cabinet.\n0WV3L 20.5 32.4##the person opens a cabinet.\nC6B3T 3.8 10.8##person drinking a glass of water.\nC6B3T 0.0 5.1##a person sits at a desk working on a laptop.\nC6B3T 24.1 29.0##person begin laughing.\nOL2QI 3.7 15.9##person throws it on the floor.\nK95WN 0.0 8.9##a person is talking on a phone.\nXS6PF 2.4 7.8##person leaves the door open.\nXS6PF 2.4 7.8##the person flings open the door.\nXS6PF 14.7 22.5##person sits on the couch.\nXS6PF 2.4 7.8##a person opens a door.\nXS6PF 3.8 9.8##the person bursts into the front door holding a blanket.\nXS6PF 7.7 13.9##person closes the door.\nXS6PF 5.4 10.0##person throws the blanket on the couch.\n78R4Y 0.4 5.4##the person opens the refrigerator door.\n78R4Y 1.6 6.7##a person is putting away groceries in refrigerator.\n78R4Y 12.0 17.0##person closing the door.\n78R4Y 0.0 4.7##a person open the refrigerator.\n78R4Y 12.0 17.0##person closing its door.\nA10NL 11.0 19.6##the person takes a laptop from a desk.\n1OF1O 0.0 5.7##the person walked into the doorway.\n1OF1O 0.2 5.4##person turned on the light.\n1OF1O 0.2 5.4##a person turns on a light in a bathroom.\nZKC7M 8.0 24.8##another person is awakening in the bright light.\nDIB6D 18.9 24.4##person drinks a glass of water.\nDIB6D 9.2 18.1##a person in the bathroom is smiling in the mirror.\n16IDQ 0.0 4.2##a person pushes open a door.\n16IDQ 0.0 4.2##person opens door.\n16IDQ 14.6 20.5##a person is sneezing into a camera.\nG9JMG 20.1 25.2##person puts the pillow in their lap.\nG9JMG 0.0 4.8##a person takes a pillow.\nG9JMG 20.1 25.2##person puts the pillow down.\nG9JMG 20.1 25.2##the person puts the pillow on a shelf.\nQGIP7 16.8 21.0##person sits on a chair.\nQGIP7 10.2 14.3##a person walks over to a shelf smiling.\nWW4MY 18.5 24.2##person they close the box.\nWW4MY 8.7 15.6##a person is sitting on the couch.\nWW4MY 8.7 15.6##a person is sitting on the sofa drinking.\nWW4MY 15.0 27.6##person takes a drink sits the glass back down.\nWW4MY 2.0 9.4##person eating chips.\nWW4MY 2.0 9.4##person a half eaten sandwich on one.\nX6JKA 0.0 5.7##a person is sneezing.\nN915C 0.0 16.6##person gets undressed.\nIGEU5 16.2 21.7##the person throws the pillow onto the sofa.\nDOL47 19.5 25.4##person closes the door.\n0JB3D 0.0 6.2##a person opens the refrigerator.\n0JB3D 3.1 10.5##the person takes out a glass of water.\n0JB3D 0.0 6.2##person opens the refrigerator.\n8EU89 1.9 7.6##a person opens the door.\n8EU89 13.5 28.2##person begins undressing.\n8EU89 5.8 11.5##the person sits on a pillow on a chair.\n8EU89 5.8 11.5##person sitting on a chair.\nTODWV 0.0 13.2##a person awakens.\nTODWV 21.6 32.0##person dresses in clothes.\nTODWV 21.6 32.0##person begins dressing in clothes in front of a mirror.\nTODWV 12.0 19.5##person puts on glasses.\nTODWV 0.0 13.2##a person lying on a bed awakens.\nLWP5F 14.2 20.0##the person begins opening a box.\nV2MHO 8.8 17.8##person throws a blanket across the room.\nV2MHO 0.0 14.4##person continue looking out the window.\nV2MHO 0.0 14.4##person looking out a window.\nA58GR 20.0 25.4##person laugh as they put a towel in it.\nA58GR 16.3 26.1##person puts clothes in it.\nA58GR 1.4 9.4##a person takes a box from a shelf.\nA58GR 1.4 9.4##a person takes a box off a shelf.\nA58GR 20.0 25.4##person put a towel inside.\n0OUEP 26.2 33.0##person closes the door.\n0OUEP 2.7 10.6##one person is holding a camera.\n0OUEP 26.2 33.0##person closes a door.\nCJ0U1 18.8 24.3##the person turns the light off.\nCJ0U1 0.0 5.8##a person is opening the refrigerator.\nCJ0U1 18.8 24.3##person turns off the light.\nI68J0 7.2 12.5##person puts the book on a table.\nI68J0 3.2 9.1##person takes a book from the shelf.\nI68J0 26.5 35.1##person takes a picture of themselves.\nI68J0 18.7 24.4##a person grabs a book in the closet.\nI68J0 4.1 10.8##person opens the book.\nI68J0 0.0 5.6##a person runs into the closet.\nI68J0 3.2 9.1##person takes a book off of a shelf.\nI68J0 0.0 5.6##a person runs to a closet.\nGNMBV 15.5 24.0##person holds a medicine bottle.\nPEY34 0.0 5.2##a person is drinking a glass of water.\nPEY34 14.8 23.9##person holding a broom up.\nPEY34 9.6 17.8##person puts a box.\nPEY34 9.6 17.8##person putting a box on top of a shelf.\nPEY34 1.2 10.6##a person begins laughing.\nD9YWY 37.7 43.6##person putting stuff in a fridge from a box.\nHSSOZ 22.3 33.9##person put the dish in the sink.\nJ867Z 13.3 20.0##person throws a book down.\nJ867Z 13.3 20.0##person they throw down the book they were also holding.\nZAJYX 0.0 11.2##a person is cooking food on a stove.\nZAJYX 0.0 11.2##a person is cooking some food on a stove.\n55NNF 14.8 21.3##person begins opening a refrigerator.\n55NNF 14.8 21.3##person open the refrigerator.\n55NNF 2.6 17.9##a person is cooking.\n55NNF 2.6 17.9##a person cooks food on a stove.\n8ZO48 16.5 23.4##person sits in a chair.\n8ZO48 4.7 11.3##person throw the pillow aside.\n8ZO48 16.5 23.4##person sits on a chair.\n8ZO48 4.7 11.3##person they throw down a pillow.\n8ZO48 4.7 11.3##person throws a pillow.\n8ZO48 5.2 13.3##a person is awakened on the bed.\n5L09N 33.1 40.0##person takes a picture.\nDVDU2 24.7 30.2##person eats snack food.\nDVDU2 24.7 30.2##person eats food.\nRV48T 1.8 11.0##person closes the door.\nRV48T 1.8 11.0##closes the door.the person stops.\nTZ548 7.4 12.8##a person is walking through a doorway.\nTZ548 7.4 12.8##a person walks through a doorway.\nFDYQZ 6.1 16.1##person one is undressing.\nFDYQZ 6.1 16.1##a person standing at a sink starts to undress.\nFDYQZ 6.1 16.1##one person is undressing.\n1HL2K 0.0 6.0##person goes back to looking out the window.\n1HL2K 0.0 6.0##a person sitting looking out the window.\nTKAFY 0.0 9.8##a person awakens.\nTKAFY 10.4 20.1##person get dressed.\nTKAFY 10.4 20.1##person begins dressing.\n6FYKZ 0.0 5.2##a person puts away a broom beside the washing machine.\nDN0CB 66.4 75.8##person an unidentified hand turns on a light switch.\nDN0CB 20.5 31.9##person leaves holding the bag.\nDN0CB 66.4 75.8##a person grasps the light switch.\nDN0CB 66.8 77.0##person turns off the light.\nDN0CB 22.1 31.5##the person opens the bag.\nDN0CB 20.5 31.9##a full person enters the room holding a bag.\nUJOLG 15.3 20.1##person take off shoes.\nUJOLG 0.0 5.5##person eating a sandwich.\nUJOLG 0.0 5.5##a person is eating a sandwich.\nUJOLG 15.3 20.1##person takes off their shoes.\nAZZ7V 0.0 13.9##the person holds a pillow in bed.\nAZZ7V 11.3 20.8##a person lying on a bed snuggling a pillow awakens.\nM43KR 11.1 21.3##person takes a picture of their food.\nPC3WT 11.8 25.8##person opens a window.\nPC3WT 1.8 7.9##a person is awakening.\nPC3WT 11.8 25.8##person opening a window.\n0ETKN 5.2 9.3##person opening the food bag.\nXS7RN 21.4 26.9##person throw a book on the floor.\nXS7RN 12.3 19.5##person opens a box.\nXS7RN 28.0 33.0##person put the box on a washing machine.\nZWDVG 7.0 14.2##awakening another person who starts sneezing.\nZWDVG 2.1 7.4##one person throws a bag down on a small table.\n7L18C 11.9 21.7##person sitting on the bed looking at his laptop.\n7L18C 1.1 10.6##person playing a game on their laptop.\nO0C2Z 3.4 7.8##a person turns on a light.\nCEL4V 0.9 6.6##a person takes a glass from the cabinet.\n901GH 0.3 6.3##the person opens two doors on a wall cabinet.\n901GH 8.2 13.5##holding a towel the person begins sneezing.\n901GH 0.0 10.5##person opening the window in the hallway.\nN4SA2 33.3 39.1##person stand up.\nN4SA2 23.8 29.8##person put a towel around their neck.\nGC51E 63.2 87.5##person eats the apple that was in the bag.\nGC51E 63.2 87.5##person eat it.\nGC51E 37.4 56.7##a person on their stairs takes off their shoes.\nGC51E 37.4 56.7##person they take their shoes off.\nJQW5G 24.4 31.0##person putting them on a shelf.\nJQW5G 10.1 15.2##one person is snuggling under a blanket.\nJQW5G 24.4 31.0##person putting a bag on a shelf.\nUO5PM 6.0 12.0##the person takes a towel.\nUO5PM 0.0 4.8##person turns on a light.\nUO5PM 0.0 4.8##person turns on the lights.\nUO5PM 0.0 4.8##person turning on the light as they enter.\n8175C 27.8 33.2##person opening a door.\nYS9RE 22.2 29.0##person they take a picture of themselves.\nMSQA1 50.0 54.0##person begin to eat the sandwich.\nMSQA1 48.2 54.0##person sit in a chair at the kitchen table.\nMSQA1 11.3 18.8##person opens the refrigerator.\n8LWV7 6.0 13.8##person they awaken.\n8LWV7 6.0 13.8##a person awakens on a bed.\n60W9B 1.8 7.6##a person opens a refrigerator.\nE75C2 1.6 13.8##a person pours a cup of coffee.\nE75C2 24.9 32.0##person looks out the window.\nSSUZA 8.8 19.9##person try to open the window.\n9S0QC 0.0 4.6##a person is throwing a bag on the floor.\n9S0QC 6.1 21.0##person putting on shoes.\nIDACP 4.9 14.4##person dresses into a coat.\nQLQNJ 9.4 15.7##a person runs in.\nATI0Z 0.0 9.8##a person is sitting on the floor.\nATI0Z 9.0 17.1##person turns on a light.\nOJ6SX 15.7 20.8##person drinking from a cup.\nOJ6SX 2.8 17.6##person opens a door.\nEWH3D 0.0 3.8##person leaving a table that they were sitting at.\nPAYYN 10.9 23.0##person playing on their laptop.\nEDPTO 16.8 22.8##person looks out a window.\nEDPTO 32.9 37.3##person picking up a sandwich to eat.\nEDPTO 16.8 22.8##a person holding a blanket looks out of a window.\nQZP8N 3.1 10.3##person smiles when they look in the mirror.\nWIYE2 8.1 14.3##the person puts the water down on the table.\n29757 20.1 26.9##person runs to the mirror.\nDVO31 34.7 43.0##person finally drinking from a glass in a bedroom.\nDVO31 14.7 19.5##person throwing clothes into a hamper.\nW6210 13.6 20.6##person puts them on a shelf.\nW6210 18.7 32.0##person opens the door.\nW6210 13.6 20.6##person puts the shoes on a shelf.\nW6210 13.6 20.6##a person is putting shoes on the shelf.\nGKII3 15.2 28.0##person closes the door.\nEK19H 4.5 15.6##a person is eating a sandwich.\n1HAYV 0.0 4.3##person eating a sandwich.\n1HAYV 0.0 4.3##person sitting in a chair eating a sandwich.\n1HAYV 1.6 8.2##person drinking a cup of coffee.\n1HAYV 1.6 8.2##person drinking out of a glass.\nFCDXN 13.0 18.8##person put a glass on table.\nFL3CG 1.4 9.0##a person is smiling at a picture.\nFYR3P 9.5 17.8##person takes a towel from the bed.\n0W39H 0.2 9.8##a person is pouring liquids between 2 cups.\n0W39H 0.2 9.8##a person is pouring fresh coffee into their glass.\n6ZSB2 0.0 4.8##a person runs into a hallway.\n6ZSB2 0.6 7.2##person open a bag.\nMD6C0 0.0 6.3##a man opens a door.\nTU3IG 6.4 11.9##a person eats food out of a box.\nK3193 9.6 19.6##a person is sneezing by a sofa.\nXPDI1 2.0 9.0##this person runs into the room with a cup.\nXPDI1 2.0 9.0##person running through the doorway.\nIV7IZ 1.9 8.9##one person runs into the basement holding a box.\nIV7IZ 4.6 12.1##person opens the box.\nIV7IZ 1.9 8.9##a person runs in holding a box with shoes inside.\nAMX7S 21.0 24.0##a person is putting a pillow into a washing machine.\nQ49E0 6.9 21.6##eating a snack as the person talks on the phone.\nQ49E0 6.9 21.6##person at the same time they are also eating something.\nQ49E0 24.8 33.0##person look out a window.\nQ49E0 6.9 21.6##person eating something.\nQ49E0 24.8 33.0##person look out the window.\nHTCKH 11.7 18.2##person put it on a shelf.\nDVHIB 20.0 27.6##person puts a sandwich.\nDVHIB 11.6 19.2##person takes a book from a bag.\nMUVB8 18.0 22.9##person gets up turn on a light.\nMUVB8 18.0 22.9##person reaching to turn on the light on the table.\nDN6QU 4.8 9.5##person puts it back on the shelf.\nDN6QU 17.3 22.7##person tries to take a picture.\n6B93R 12.8 21.9##a person is eating food from various dishes.\n6B93R 38.0 46.4##person drinking a glass of water.\n6B93R 12.8 21.9##person eating food.\n6B93R 38.0 46.4##the person takes a drink from a glass.\nA54DW 23.5 32.0##person sitting on a table.\nV58VE 16.6 23.2##person they are smiling.\nABXKN 10.1 16.5##person they take the box.\nABXKN 10.1 16.5##person they take a box of tissues from the sink.\n5JSFE 19.6 28.8##another person grabs doorknob to open door.\nVNVRA 0.5 5.8##person opens a door takes a box out.\nVNVRA 7.1 18.6##person closes the door.\nVNVRA 4.8 9.6##person puts it on a table.\n8PXPO 30.2 33.0##person opens cabinet.\n8PXPO 8.3 16.5##the person puts some dishes away.\n8PXPO 8.3 16.5##that same person starts putting dishes in a cabinet.\nOC6YU 2.8 14.3##person pouring some into a glass.\nOC6YU 9.6 18.5##person sits in a chair.\nPZD7Z 0.0 4.9##a person is sitting in a chair holding a broom.\nPZD7Z 9.5 17.6##person the put the broom down.\nPZD7Z 9.5 17.6##the person puts down the broom.\nKL68V 0.0 12.2##a person getting dressed puts on their shoes.\n5N26T 29.1 37.0##a person opens up the door.\nI4IFT 2.1 15.4##person putting on their shoes.\nCC6JC 4.4 12.1##a person is smiling.\nCC6JC 0.0 5.0##a person is sitting on a bed eating a sandwich.\nCC6JC 0.0 4.3##a person is sitting on a bed eating some food.\n15OH5 23.3 36.5##the person washes the mirror with a towel.\nJ8SHW 30.9 40.0##person begins to make a sandwich.\nF1GWF 0.0 3.7##a person opens a cabinet.\nF1GWF 5.3 10.1##person opens a laptop.\nWWPEN 0.0 12.1##a person is playing a game on a smartphone.\nWWPEN 0.0 12.1##person playing a game on a cell phone.\nWWPEN 16.9 24.2##person opens the door.\nWWPEN 0.0 12.1##a man laying in bed playing on a phone.\nSTG2D 0.0 5.5##a person opens a cabinet door.\n6QW3Y 0.0 3.5##a person throws their bag down on the stairs.\n6QW3Y 0.0 3.5##a person throws a bag downstairs.\nMMY3N 3.1 11.2##another person puts a box into the garbage.\nN1RJW 26.9 36.2##person closes the door to the room.\nN1RJW 26.9 36.2##person closing the door.\nC9ISQ 5.6 13.7##a person was closing the laundry detergent cabinet.\nDC3PF 20.2 28.9##person another is sneezing at the groceries.\nDC3PF 20.2 28.9##person begins sneezing.\nZSHWE 15.2 28.2##person stops at the bottom of the stairs to undress.\nZSHWE 15.2 28.2##person he undresses from a towel.\n5HQJ8 19.4 31.0##person sneezing as they look up at a light.\n417RA 15.9 31.0##person drink from a coffee cup.\n417RA 0.0 11.4##a person awakens on a bed.\n417RA 0.0 11.4##person is awakening.\nJX18W 14.4 23.2##person opens a closet door.\nJX18W 0.0 12.4##a person awakens.\nJX18W 14.4 23.2##person open a closet door.\nJX18W 8.0 16.3##person holding a blanket.\nJX18W 8.0 16.3##a person stands holding a blanket.\nWSLMS 12.4 23.3##a person takes off shoes in a hallway.\nWSLMS 12.4 23.3##person takes off shoes.\nWSLMS 16.4 24.9##the person puts down the glass.\n2MDHE 25.0 31.2##person drinking out of a glass.\n2MDHE 10.7 25.9##another person is sitting on the floor eating.\n2MDHE 10.7 25.9##another person is eating food.\nPRV4N 11.6 18.3##the person puts the glass on the desk.\nPRV4N 2.7 8.7##person takes a glass off a table.\nN7AOK 21.0 31.0##the person takes a pillow from the chair.\nFE6RN 4.7 11.7##person holding a cup of coffee.\nKFGXC 0.0 14.8##person holding a dish.\nKFGXC 15.5 30.5##person fix their hair.\nXNT6F 8.6 13.2##person throw it on the floor.\nC8KER 27.8 43.3##person closes the cabinet.\nC8KER 0.0 6.1##a person opens a cabinet door.\nC8KER 0.0 6.1##person opens another cabinet.\nJSD0F 15.7 22.1##person turns off a light.\nJSD0F 3.2 14.9##a person is holding a bag of groceries.\nJSD0F 15.7 22.1##person they turn off the light.\nJSD0F 18.1 27.6##person begins sneezing.\nHHAM7 18.4 23.0##the person opens the closet door.\nHHAM7 8.4 16.3##a person is opening their closet.\nHHAM7 18.4 23.0##person closes the closet door.\n4WMDU 19.8 30.5##a person holding a glass drinking.\n4WMDU 0.2 7.8##person drinking from a glass.\n4WMDU 4.4 12.7##carrying a bag of food.the person opens the bag.\n4WMDU 2.6 7.9##person puts glass on counter.\n4WMDU 0.2 7.8##person drinks out of glass again.\nWO0OM 19.3 32.0##person eats a sandwich.\nWO0OM 19.3 32.0##person start eating the sandwich.\nWO0OM 2.4 17.4##a person is laughing.\nWO0OM 2.4 17.4##person laughing at their phone.\n47532 17.4 23.6##person looking at a picture.\nCRJGZ 17.6 25.9##person sits in a chair.\nCRJGZ 7.0 13.5##person closes door.\nCRJGZ 17.6 25.9##person sits in chair.\nCRJGZ 10.1 18.2##person puts keys on a table.\nCRJGZ 7.0 13.5##the person closes the door.\nCRJGZ 0.4 10.3##person opens door to entryway.\nSFWBN 4.5 10.1##person they sit down in a chair.\nSFWBN 5.5 10.8##person put their phone back down on a table.\nSFWBN 0.0 5.3##a person is dressing.\nSFWBN 2.5 7.4##person takes their phone off of a table.\nSFWBN 0.6 5.3##person throwing their clothes onto a blanket.\nSFWBN 0.0 5.3##a person is dressing under the window.\n6C65Z 1.2 8.0##person closes the refrigerator door.\n6C65Z 1.2 8.0##a person is closing the refrigerator.\nQQUI7 20.8 32.0##person #1 is watching a video on their laptop laughing.\nQQUI7 0.0 13.2##person running in circles holding a box.\nQQUI7 0.0 13.2##one person runs into the kitchen with a box laughing.\nL4DUU 18.4 24.9##person eating a sandwich.\nL4DUU 20.1 27.5##the person puts the camera down.\nL4DUU 18.4 24.9##a person is eating a sandwich.\nKGMA5 0.0 5.3##a person opens a cabinet.\nRF39W 6.8 15.0##a person was putting food away on shelves.\nQO7SM 16.3 25.9##person talking on the phone.\nRXLKF 5.4 15.2##person opens book.\nRXLKF 23.8 28.7##person closes book.\nRXLKF 27.0 37.3##person holding a cup of coffee.\nRXLKF 25.5 30.2##person she puts down the book.\nRXLKF 25.5 30.2##person they put the book down.\nLTQS9 17.1 27.0##a person is sitting on a chair.\n8N939 23.8 31.0##person runs down the hallway.\n8N939 0.4 7.6##the person drinks from the glass.\n8N939 0.4 7.6##person takes another drink from the glass.\n8N939 23.8 31.0##person run out of the room.\n2JYRQ 15.4 23.8##person washes the window.\nFZ0LU 2.5 10.2##person walk out the doorway with it.\nDFG9M 0.0 11.5##a person is snuggling under a blanket in the bed.\n5N7DP 0.0 11.6##a person is throwing shoes down the stairs.\n5N7DP 24.1 34.0##person starts talking on the phone.\n5N7DP 0.0 11.6##person throws his shoes off their feet.\nMJ1T7 24.5 31.0##person walks to another room holding a bag.\nH5V2Y 3.3 13.7##the person was eating a sandwich.\nH5V2Y 3.3 13.7##a person is eating a sandwich.\nH5V2Y 3.5 13.9##person drinking a cup of coffee.\nH5V2Y 3.5 13.9##person drinking from a cup that are on a table.\nOCVY4 3.9 10.0##person puts pan of food on the stove.\nOCVY4 3.9 10.0##person put food in it on a stove.\nIBX56 0.9 11.5##a person eats a sandwich.\nIBX56 0.9 11.5##person eating a sandwich.\nIBX56 0.9 11.5##a person in the recreation room is eating a sandwich.\n86X97 1.8 11.2##watching out the window as the person does so.\nM1GW9 13.5 23.5##person throwing the pillow onto the bed.\nM1GW9 13.5 23.5##person throws the pillow on the bed.\nM1GW9 3.8 9.9##person opening the door.\nDFVXX 20.0 31.0##person takes a towel with them.\nP4UXI 20.0 31.9##person pours a cup of coffee.\nXWVDK 7.2 12.4##a person throws a bag of groceries onto the sofa.\nXWVDK 7.2 12.4##person they throw the bag on a couch.\nSNK5Z 2.3 8.7##person fixing a hinge on a door.\nSNK5Z 15.1 20.9##person eat it.\nSNK5Z 2.3 8.7##a person is fixing the door to their pantry.\nSNK5Z 15.1 20.9##person was eating food.\n4Y1AW 29.3 35.0##person take a picture of themself with a camera.\nN513D 10.9 21.0##person two is holding a book.\nN513D 5.9 18.4##another person looks at a book.\nN513D 3.5 13.9##a person is putting a book in a hall cabinet.\nN513D 3.5 13.9##person puts the book into a storage table.\nIA7X9 7.7 19.5##person puts on shoes.\nIA7X9 7.7 19.5##person putting shoes on.\nIA7X9 11.3 21.1##person opens the laptop.\nIA7X9 11.3 21.1##a person is opening a laptop.\nAPH4V 14.0 19.1##person they are done they close their closet door.\nAPH4V 16.8 28.8##person open the nearby window.\nAPH4V 6.3 17.6##a person is seen putting clothes in their closet.\nAPH4V 18.7 32.0##person looks out a window.\nAPH4V 6.3 17.6##person puts the clothes in a closet.\nAPH4V 14.0 19.1##person closes the closet door.\nD1O6N 19.2 29.5##a laughing person begins talking to a window.\nD1O6N 19.2 29.5##person another is laughing under a blanket on the sofa.\nD1O6N 19.2 29.3##one person walks to the window smiling.\n08QQS 23.7 30.1##person opens a door.\n08QQS 23.7 30.1##person opening the door.\nX2QWR 23.4 30.1##person they stand up.\nX2QWR 25.7 31.0##person leaving turn off the light.\nMV0TX 21.2 26.1##person puts down the sandwich.\nMV0TX 9.8 14.1##person eating a sandwich.\nMV0TX 9.8 14.1##person starts to eat a sandwich.\nG2VOP 0.0 4.7##a person stands in a doorway sneezing.\nG2VOP 14.8 26.0##person put clothes onto a shelf.\nOJGGZ 38.3 45.0##person they take off their shoes.\n8ENLP 6.0 12.8##person puts towel on head.\n8ENLP 11.1 21.4##person takes off shoes.\n8ENLP 6.0 12.8##person puts a towel over their head.\nE9FY2 1.4 7.2##person puts the sandwich back.\nE9FY2 0.0 6.0##a person is eating a sandwich.\nE9FY2 0.0 5.5##this person eats some bread.\nE9FY2 25.6 30.3##person finally smiling.\nE9FY2 0.0 6.0##person eats the sandwich.\nE9FY2 0.0 3.5##the person takes a sandwich from the table.\n1FPW9 3.0 12.4##a person awakens.\n1FPW9 16.1 31.0##person sits back on the bed.\n1FPW9 16.1 31.0##person sits on bed.\n1FPW9 17.8 25.4##person drinks from a glass.\nY7MSY 15.0 20.2##person putting the pillow on the floor.\nY7MSY 15.0 20.2##person puts the pillow on the floor.\n3D0WV 17.7 30.4##person laughing as he grabs the doorknob.\nQDOXA 22.9 29.7##person starts sneezing.\nQDOXA 7.8 15.6##a person is undressing in a garage.\nMFOVZ 25.8 32.0##person walks through a doorway.\nMFOVZ 0.0 4.9##a person is eating a sandwich.\nMFOVZ 25.8 32.0##person walking out the doorway.\nMFOVZ 0.0 4.9##person a persno is seen eating a sandwich.\nE18UD 2.6 17.0##person pour beer onto a cup.\nWFWTU 0.0 4.8##a person runs into the garage.\nWFWTU 0.0 4.8##a person is running into a garage eating some food.\nWFWTU 18.3 23.0##person close the door behind them.\nWFWTU 18.3 23.0##person closing the door behind them.\nWFWTU 0.0 4.8##the person runs out.\nFIAJP 0.0 6.6##a person is in a hallway undressing by a door.\nRPPCV 27.3 32.0##person walk through a doorway.\nLV24Z 0.0 5.4##person after sneezing.\nLV24Z 16.0 28.0##person takes a laptop from a shelf.\nYFBA1 2.3 8.6##the person opens the book.\nLDST7 5.2 11.1##person they take a box.\nLDST7 0.0 4.8##a person is opening their medicine cabinet in their bathroom.\nEGPAO 2.7 11.6##person holding a cup of coffee.\n2FLXE 7.6 13.2##person closes the dryer door.\n2FLXE 10.7 16.0##the person puts the pillow on the window sill.\nZOK5T 0.0 4.8##a person runs down a hallway.\nZOK5T 0.0 4.8##person runs out of the hallway.\nZOK5T 0.0 4.8##a person runs down the hallway.\nOEUGC 33.8 37.0##person take a drink from a medicine bottle.\nOEUGC 11.6 18.3##person puts the laptop down.\nOEUGC 14.1 30.2##person dresses  in warmer clothing.\nLQGMM 8.0 13.8##a person drinks something from a bottle.\nLQGMM 39.3 55.4##the person is cooking.\nLQGMM 39.3 55.4##person starts cooking on the stove.\nLQGMM 39.3 55.4##person cooking on a stove.\nF7OOB 26.0 33.0##person takes the picture down from the wall.\nF7OOB 21.1 33.0##person looks a picture.\nF7OOB 26.0 33.0##person takes a picture from a coatrack.\n98GQH 0.0 7.4##person looking at a picture.\n98GQH 0.0 8.1##a person is holding a picture.\nZSZS4 21.1 26.2##person sits on the sofa.\nRNCN8 18.2 26.1##person opens a laptop.\nRNCN8 13.2 19.3##the person takes their laptop from a shelf.\nRNCN8 22.3 30.0##person lay down on the floor with it.\nRNCN8 18.2 26.1##person they open up the laptop.\nJSLW5 0.0 6.4##a person in their closet opens a wardrobe door.\nJSLW5 5.5 14.3##person runs away.\n8VDZ7 15.1 28.3##person sits on the floor near a drying machine.\n70TVS 10.0 14.9##person takes off his shoes.\n70TVS 16.4 26.7##a person is undressing in a home office.\n70TVS 10.0 14.9##person takes off shoes.\n70TVS 23.4 39.6##person watches television.\n4I00F 0.0 13.3##a person in a closet takes out some food.\n8J2K5 22.0 28.3##person they open a door.\n8J2K5 30.2 36.0##person closing doors as they vacuum.\nI6AZD 13.0 19.4##person takes off their shoes.\nOO6BH 12.2 18.8##person put it on the table.\nOO6BH 8.3 13.7##person they open the door.\n6B328 18.7 29.3##person takes some medicine.\n6B328 18.7 29.3##the person takes some medicine from the desk.\nLBT7P 5.3 12.5##a person is throwing a pillow at a picture.\nLBT7P 5.3 12.5##a person throws a pillow.\nA2EY4 15.8 24.4##person snuggles in the blanket.\nA2EY4 1.5 6.9##the person opens a refrigerator door.\nC9FMC 27.8 37.3##person pouring soda into their cup.\nC9FMC 21.4 29.4##a person is closing the kitchen door.\nC9FMC 0.5 6.7##person opens the refrigerator.\nC9FMC 21.4 29.4##person closes the door.\nC9FMC 0.0 9.4##a person is putting groceries into a refrigerator.\nC9FMC 0.0 9.4##person puts away groceries.\nCG9ZL 3.5 10.2##a person walks through a doorway.\nIUW9N 0.1 5.9##person closes the door behind them.\nIUW9N 0.1 5.9##person closing the door behind them.\nX28IF 8.4 14.6##person pours a cup of coffee.\nX28IF 0.0 7.8##a person awakens in a chair in their home office.\nX28IF 8.4 14.6##person they pour a cup of coffee.\n8TRIW 4.1 14.1##a person takes some medicine with a glass of water.\nXECIL 2.0 8.8##person eats sandwich.\nXECIL 5.7 10.1##person puts food away.\nXECIL 9.9 14.5##person open cabinet.\nXECIL 12.0 16.7##person takes a bag of chips from the cabinet.\nXECIL 2.0 8.8##a person is eating a sandwich in the pantry.\nPCNB7 0.0 11.6##a person is fixing their hair under the light.\nPCNB7 0.0 11.6##person fixing hair.\nBU2R4 20.3 27.3##person puts it on the table.\n96GIQ 6.4 18.1##person opens a bag.\n96GIQ 0.0 6.4##the person throws a broom on the floor.\nXTACZ 18.2 24.0##person turn off the light.\nXTACZ 5.0 19.5##person starts undressing.\nXTACZ 18.2 24.0##person turns off a light.\nXTACZ 0.0 9.2##a person takes off shoes.\nS0Z00 20.4 31.0##the person laughs.\nS0Z00 4.4 9.1##one person puts down a phone.\nS0Z00 20.4 31.0##person starts laughing.\nCNVZX 2.9 12.8##this person awakens.\nCNVZX 0.0 7.5##person turns on the light.\nCNVZX 0.0 7.5##person turns on a light.\nMYB7P 8.6 15.0##person eats a sandwich.\nMYB7P 4.0 10.0##a person takes a picture with their phone.\nHQZ29 20.1 26.3##person puts a dish into the sink.\n3NOML 15.8 31.0##person starts undressing.\nL0YQM 9.9 15.6##person laughing at the book.\nL0YQM 0.0 8.8##person they take the book out again.\nL0YQM 15.6 20.8##a person puts a book in a bag.\nL0YQM 9.9 15.6##person start laughing.\n9N76L 23.7 36.8##the person eats food from a container.\n9N76L 23.7 36.8##person eat it.\nH5TGJ 4.5 11.7##a person awakens in a bedroom.\nH5TGJ 4.5 11.7##a person laying on a bed awakens.\nIS3OX 29.4 37.0##person sits on the floor in the entryway.\nZI2XH 12.1 17.6##a person is putting a book on the shelf.\nF31X6 20.1 25.7##the person eats something off a plate.\nKNX2Y 13.0 21.0##person holding the glass.\nKNX2Y 13.0 21.0##person they begin laughing holding food.\nKNX2Y 0.0 3.4##a person holds a camera.\nKNX2Y 13.0 21.0##person they laughed.\nKNX2Y 11.3 16.8##person putting it on a table.\nVEV4O 7.3 14.4##a person throws a pillow.\nVEV4O 7.3 14.4##person throws a pillow onto a couch but misses.\nQC4R2 12.1 18.6##person puts the picture on the floor.\nQC4R2 16.6 29.8##person begin laughing at it.\nQC4R2 16.6 29.8##person starts laughing.\nD2GQH 0.0 3.7##a sneezing person is sitting in their garage.\nD2GQH 15.2 21.5##the person eats a sandwich.\nN7130 5.6 13.5##person they put their phone in their pocket.\nN7130 0.0 5.6##a person opens a door.\nN7130 5.6 13.5##person puts a phone in their pocket.\nN7130 1.6 7.7##person walks through the doorway.\nZFZEN 23.9 40.5##person begins dressing.\nZFZEN 0.0 4.9##a person is awakening from their bed.\n06CKN 17.6 26.0##person closes the door.\n06CKN 7.2 14.6##a person opens a cabinet door.\n06CKN 7.2 14.6##person opens the closet.\n08F85 1.0 15.1##a person opens a cabinet.\n08F85 14.4 23.2##person takes some medicine down from a shelf.\n08F85 1.0 15.1##person opening the cabinet.\n3K6HO 19.6 26.0##person close the door when exiting the doorway.\n3K6HO 1.7 7.5##a person throws a blanket on a bed.\n3K6HO 19.6 26.0##person closes a door.\nX226B 0.0 9.5##a person is cooking in their kitchen.\nX226B 21.0 27.2##person put a pillow behind their back.\nX226B 0.0 9.5##a person is cooking on the stove.\nX226B 20.7 29.6##person sit in a chair.\nX226B 0.0 9.5##a person is cooking something on the stove.\nX226B 20.7 29.6##person sits down in a chair adjusting the pillows.\n3XKBC 18.8 28.1##person opens a laptop.\nIME5D 15.7 25.4##the person puts the food on the shelf.\nSTAZI 18.8 37.0##person they start taking out pans to cook it.\nXXIT4 2.9 19.3##person still eating.\nXXIT4 2.9 18.9##person eating a sandwich.\nXXIT4 0.0 6.1##a person is sitting in a chair at a desk.\nXXIT4 0.0 6.1##a person is sitting in a chair.\n5SAAB 12.5 22.8##person they take a towel open the  window.\n5SAAB 24.2 32.0##person sitting down on the sofa.\n5SAAB 4.8 11.5##person puts a foot on the coffee table.\n5SAAB 24.2 32.0##person sits on the sofa.\n5SAAB 27.2 32.0##person eats some.\n5SAAB 27.2 32.0##person eating food.\nRJ8WY 10.3 17.2##person takes a cup off of the washer/dryer.\nRJ8WY 1.3 7.1##person turns on the light.\nRJ8WY 1.3 7.1##person turns on a light.\nYXP9P 0.0 6.4##a person pretends to start sneezing.\nZ9W47 10.9 15.7##a person throws some items in a box the smiles.\nZ9W47 0.0 5.9##a person opens a door.\nZ9W47 10.9 15.7##the person throws some objects in the box.\nZ9W47 0.0 5.9##a person opens a closet door with a light on.\nZ9W47 10.9 15.7##person they throw something into a box.\nF44A2 25.2 30.9##person take a picture of themself.\nF44A2 25.2 30.9##person takes a picture.\nI3Q65 5.3 11.0##person sit on the floor.\nI3Q65 10.1 17.3##person begin to put boxes on a shelf.\nI3Q65 10.1 17.3##person starts putting boxes on a shelf.\nGXIWH 0.0 13.2##a person is smiling at the bag.\nJZDL6 9.0 14.0##person sit on the bed.\nYG2EP 0.0 3.3##a person walks threw the bathroom doorway holding a towel.\n8BNBV 9.3 14.4##person a is walking through an entryway smiling.\n8BNBV 14.9 20.2##person a walks through a doorway.\nVPI6D 7.0 12.8##person takes pillows off of the bed.\nVPI6D 0.0 4.9##a person opens a door by turning a doorknob.\nVPI6D 0.0 4.9##person opens the door to their pantry.\n6C4DV 8.3 15.6##the person takes a picture.\n6C4DV 0.0 4.6##a person runs to the closet.\n6C4DV 0.0 4.6##a person runs into a closet.\n6C4DV 8.3 15.6##person takes a picture of it.\n6C4DV 0.0 4.6##this person runs into the closet.\n6C4DV 0.2 7.3##person puts a glass on the shelf.\nXZ2QQ 8.9 13.6##person puts down the cell phone.\nXZ2QQ 8.9 13.6##the person puts the phone down.\n78N0Z 21.1 32.0##person begins eating.\n78N0Z 21.1 32.0##person starts eating bag of chips.\nJ7D0D 0.0 4.2##a person opens a cabinet.\nJ7D0D 0.0 4.2##the person opened a cabinet.\nKP88I 18.5 24.9##person takes a bite of a sandwich.\nKP88I 16.8 28.3##person eats some food.\nKP88I 16.8 28.3##person they start eating some food.\nG1KTZ 16.9 31.6##person looked out of a window.\nG1KTZ 16.9 31.6##person looks out the window.\nWR1QE 6.5 12.6##a person opens a cabinet.\nNGZQ9 0.3 6.2##a person drinks from a glass.\nNGZQ9 0.3 6.2##person drinking a glass of water.\nNGZQ9 0.3 6.2##a person is drinking a cup of water.\nCV20O 0.0 3.1##one person runs into the bedroom eating something.\nCV20O 0.0 3.1##a person is eating something.\nRRHEV 26.0 31.8##person run out.\nRRHEV 26.0 31.8##person runs out the kitchen.\n2YO6G 0.0 5.0##a person is opening the refrigerator.\n2YO6G 6.3 11.0##person they close the door.\n2YO6G 0.0 5.0##a person opens a refrigerator.\nVX1GX 8.0 17.1##person puts them on a table.\nVX1GX 28.3 37.9##person opens a refrigerator.\n17DOT 16.1 23.0##person walk through a doorway.\nVRY89 26.3 32.0##person closing a door.\nVRY89 26.3 32.0##person they close the door behind them.\nVRY89 26.3 32.0##person closes a door.\nE0U3R 17.0 22.5##person sits in a chair.\nE0U3R 17.0 22.5##person sitting in a chair next to the door.\nE0U3R 8.1 15.2##person puts the clothes on the bed.\nE0U3R 5.6 13.1##person tidying up the bedroom by folding clothes.\nT3L2A 3.5 10.8##a person is standing in the hallway holding a camera.\nEX1PY 0.9 9.8##the person takes a box off the shelf.\n7DGWM 2.2 8.2##person running up to a pillow.\n7DGWM 17.1 30.3##person holds two pillows.\n7DGWM 4.4 11.2##person sits on his bed on a pillow.\n7DGWM 17.1 30.3##the person holds the pillows to their chest.\n7DGWM 4.4 11.2##the person sits down on a bed.\n6PL9Z 5.8 13.4##person takes a book.\n6PL9Z 0.0 6.4##person is sitting on a sofa.\nK2L7F 3.0 14.0##a person is sneezing.\nRTEWJ 0.0 3.5##person runs to the closet.\nRTEWJ 0.0 3.5##a person runs into the closet.\nRTEWJ 2.2 9.8##the person takes a towel.\nYSZVZ 0.5 7.9##person they take a drink from a cup.\nYSZVZ 12.7 18.2##the person starts sneezing into a book.\nYSZVZ 11.4 17.0##person open a book.\nSQBEE 1.2 6.5##a person is eating with a blanket draped over them.\nSQBEE 1.2 6.5##the person is eating food.\nSG8ZR 2.2 19.7##person snuggles with a blanket.\nSG8ZR 33.9 41.4##the person puts the beer cap into a bag.\n55MRE 0.0 3.2##person throwing them on to floor.\n55MRE 0.0 3.2##person throwing clothes on the floor.\n55MRE 0.0 4.1##a person eats.\n55MRE 0.0 4.1##person eating food.\nYNJ86 16.5 30.6##person takes a drink from a cup of coffee.\nYNJ86 14.3 19.1##the person closes the book.\n51801 8.4 17.3##person they drink from a cup.\n51801 8.4 17.3##person drinking from a glass.\n51801 8.4 17.3##person takes a drink out of a glass.\nA8LZE 1.1 7.5##person closes the door.\nA8LZE 0.0 5.1##a smiling person opens the door.\nA8LZE 1.1 7.5##person close the door.\nY7WEK 24.6 29.2##person closes the book.\nXLR4B 2.3 13.8##a person is cooking in the kitchen.\nXLR4B 21.4 31.0##person sit in a chair.\n7NLXI 8.4 17.5##person starts sneezing.\nFSKKQ 23.6 33.8##person fix their hair.\nFSKKQ 6.8 19.1##a person awakens in their recreation room.\nL1S6P 6.8 19.0##the person eats some of the snacks.\nL1S6P 0.0 6.5##a person runs into the kitchen.\nL1S6P 6.8 19.0##person eats it.\nL1S6P 0.0 6.5##a person runs into the pantry.\nL1S6P 6.4 14.4##person opens a bag of chips.\nI0588 13.0 21.5##a person puts a box on the counter.\nI0588 13.0 21.5##a person puts a box into the cabinet pantry.\nI0588 13.0 21.6##person put it on a shelf in a cabinet.\nBB8Q0 12.9 25.8##person eating a box of crackers.\n3OQ81 0.0 6.9##person putting the bag on a shelf.\n3OQ81 0.0 6.6##person puts some groceries on a table.\nN8SO1 0.3 14.6##a person is putting on shoes.\nJP60G 13.9 23.0##person sits on the couch.\nJP60G 5.9 10.9##person opens a cabinet.\nJP60G 0.6 8.1##a person takes their shoes off.\nJP60G 12.8 18.1##person take a picture with their phone.\nJP60G 0.6 8.1##a person takes their shoes off int the kitchen.\n72VJD 0.0 8.3##person holding a phone to their ear.\nNHUCA 0.6 7.4##person pours coffee into a cup.\nNHUCA 0.6 7.4##a person pours a cup of coffee.\nVD8PU 0.0 15.2##a person is sitting in a chair holding a bowl.\nBRE3P 20.4 27.4##person pours a cup of coffee.\nBRE3P 1.6 16.1##person puts groceries on the counter.\nBRE3P 20.4 27.4##person pours coffee into a glass.\n1SKLG 24.0 31.0##one person is smiling with a broom.\nUFWD5 0.0 3.7##person the door will not open.\nUFWD5 0.0 7.0##person closes the door.\nUFWD5 5.5 20.9##person sitting on the floor.\nUFWD5 0.0 3.7##person tries to open the door again.\n7T6MB 0.0 8.1##person takes off shoes.\nJDG40 16.2 27.3##person sneezing toward the table.\nDC4XY 4.9 11.4##person begin sneezing.\n334W9 13.6 22.0##person is drinking from a glass.\nSJQVM 11.0 17.8##person pouring water into a glass.\nSJQVM 0.0 12.2##a person snuggles with a blanket.\nQRM8K 3.4 12.2##person eating a sandwich in a bedroom.\nQRM8K 3.4 12.2##person eats the sandwich.\nQRM8K 1.0 7.4##person takes a bit out of a sandwich.\nQRM8K 16.2 24.0##person takes a cup off the table.\n0DY8C 0.0 9.0##person watching television in a living room.\n0DY8C 0.0 9.0##person watching the television.\nCXGSD 14.8 29.5##person starts tidying up stray clothes.\nCXGSD 1.5 13.5##person throws a pillow toward the doorway.\nR3ZN9 4.4 13.5##a person is sneezing on a picture.\n3ZH9Z 0.0 9.7##a person is eating at their desk.\n3ZH9Z 0.0 9.7##a person is sitting down at a desk eating.\nLNXMJ 22.6 27.8##the person turns the light off.\nLNXMJ 22.6 27.8##person turns off a light.\nB2NAS 4.8 18.0##person have a bite to eat.\nB2NAS 14.0 25.1##person they are tidying the table.\nB2NAS 4.6 16.9##a person is eating a sandwich in the man cave.\nJ4RPL 20.8 26.8##person they take a towel from their lap.\nJ4RPL 0.0 4.6##person they take some homework out of a box.\nWH1PD 12.0 19.8##person puts camera down.\nWH1PD 19.9 31.0##person start drinking from a glass of water.\nJFR2I 24.7 33.0##person move to pour more win into a glass.\nKOHWO 24.3 32.0##person they close the laptop.\n29WOY 0.0 5.4##a person is opening a book.\nNNUCA 7.0 14.8##person close the door.\nNNUCA 15.0 19.9##starts sneezing.the person proceeds to walk away from the doors.\nNNUCA 0.5 7.4##person puts a book down.\nNNUCA 3.5 9.8##takes out a pillow.the person closes the doors turn.\nLFC6D 19.0 26.5##person start sneezing as they walk by a window.\n5NG8W 29.7 33.0##person holding a phone.\n5NG8W 29.7 33.0##person playing with a phone.\nI5L3Y 5.4 11.7##person the door starts opening.\nI5L3Y 5.7 13.5##another person walks in holding a laptop.\nI5L3Y 8.8 14.0##the person puts the laptop down.\nNL0QB 0.0 13.7##a person is playing on their laptop.\nNL0QB 11.9 17.0##person closed the laptop.\nH2ZYY 0.0 6.9##a person opens a cabinet.\nH2ZYY 13.6 19.9##person throws it on the floor.\nH2ZYY 13.6 19.9##person throw that on the floor too.\nH2ZYY 0.0 6.9##a person is opening the cabinet.\nH2ZYY 6.9 13.6##person close the cabinet.\nYBW3D 1.1 9.4##person holding onto a bag of groceries.\nYBW3D 8.8 23.0##person they awaken to start sweeping the floor.\nYBW3D 23.4 31.4##another person runs past.\nYBW3D 8.8 23.0##awakens when person a walks pass.\nYBW3D 23.4 31.4##person a child runs past them.\nUDGRS 21.0 31.0##person they take both the book.\n1YBKW 18.3 28.9##person getting dressed.\n1YBKW 0.0 7.7##person begin smiling into the mirror.\n1YBKW 18.3 28.9##person beings getting dressed.\n1YBKW 10.3 22.0##person they turn on the light.\n1YBKW 10.3 22.0##the person turns on a light.\nKXCSL 0.0 3.7##a person is standing in front of an opening refrigerator.\nMQRFK 13.2 20.4##person fixes a light above the stove.\nMT9NE 2.1 11.3##person continues to eat from the bag.\nMT9NE 2.1 11.3##person eating from a bag of chips.\nMT9NE 2.1 11.3##person eating it.\nMT9NE 2.1 11.3##the person continues to eat in bed.\nQHM66 7.5 17.4##person the food inside was taken to the refrigerator.\nQHM66 8.4 15.4##person the box was opened.\nQHM66 8.4 15.4##person opened a box of fruits on the table.\n00SL4 0.0 2.6##a person is opening a closet door.\n9YRHF 4.7 9.9##person throwing a towel on the floor.\n9YRHF 0.0 5.3##a person is sneezing.\n9YRHF 0.0 9.0##a person is standing in a closet holding a towel.\nCOBEK 7.8 13.2##person closes the cabinet.\nQN4MZ 0.0 10.2##the person kept sneezing.\n1BVUA 27.1 31.0##a smiling person awakens with a towel under their head.\n3WAWR 18.9 24.4##person takes out some medicine.\n3WAWR 0.0 13.3##person is drinking from a cup.\n05GIA 7.2 13.0##person puts it on a table.\nYMWUS 9.2 38.9##a man getting dressed inside of a closet.\nYMWUS 9.2 38.9##a person is dressing by a wardrobe.\nP6P6L 19.5 26.9##a person begins smiling.\nYM213 0.0 3.6##person closes the door a few more times.\nYM213 0.0 3.6##person closes a door from inside a bathroom.\nYM213 0.0 3.6##person closing the door on themselves.\nMFSGO 9.9 17.6##person opens the window in the bathroom.\nLK3BW 6.7 12.3##person turns on the entryway light.\nLK3BW 0.0 3.5##a person opens the door.\nLK3BW 6.7 12.3##person they turn a light on in the hallway.\nLK3BW 0.0 4.6##person closes the door.\nLK3BW 0.0 4.6##person they close the door.\nLK3BW 0.0 3.2##a person walks through a doorway into a room.\n6E4JA 0.0 4.3##a person in the corner is eating food.\nL1BNN 19.6 28.7##person they put the medicine on a shelf.\nL1BNN 19.6 28.7##person puts it back on a shelf.\nLVJ3U 6.0 10.0##person walk over to the light.\nLVJ3U 6.0 10.0##a person walks to a light switch.\nLVJ3U 6.0 10.0##person turns on a light.\n86GSE 11.2 19.1##person takes off their shoes.\n86GSE 5.3 10.9##a person turns on a light.\n86GSE 5.3 10.9##a person walks over to a light.\n86GSE 11.2 19.1##person takes their shoes off.\nK71S1 0.0 5.6##a person is opening a box.\nK71S1 5.0 18.3##person putting clothes into it.\nEF5XT 7.8 19.7##person begins pouring water in a glass.\nWX4AP 9.5 16.5##person drinking a glass of water.\nR87CC 0.0 2.8##a person sits on the sofa.\nR87CC 8.6 15.0##person open a door.\nW20LY 20.2 25.6##the person puts a towel around their shoulders.\nDS22L 0.0 17.4##a person throws clothes on the floor.\nDS22L 0.0 17.4##the person throws the clothes onto the floor.\nDS22L 19.0 26.3##person drinks from a cup.\nBGX4T 9.3 16.0##person closes the door.\nBGX4T 9.3 16.0##person they close the door.\nXWY6P 12.8 17.8##person they put the phone down on a table.\nXWY6P 0.0 9.7##a person is opening the closet door.\nXWY6P 6.1 14.4##this person is laughing.\nZ1DBB 26.3 39.3##person take clothes out of a hamper.\nZ1DBB 12.4 23.5##person eat from it.\nZ1DBB 12.4 23.5##a person eats from a plate in a bedroom.\n1XFDY 28.9 32.0##person so they start walking towards the doorway.\nRS3SQ 0.7 8.1##man opens up the refrigerator looking for something.\nRS3SQ 13.2 20.3##a person is eating food from the refrigerator.\nN7IH0 10.6 17.7##the person also opens a bag.\nN7IH0 19.9 29.1##person takes out medicine.\nROL2T 2.7 12.2##one person in a towel starts dressing.\nROL2T 10.5 16.0##person puts on other clothes.\nROL2T 2.7 8.5##person the other takes off some clothes.\n0WHOH 0.0 11.0##one person with hair in a towel undresses.\n6JB5R 103.2 133.1##person they start sneezing.\n6JB5R 20.7 31.1##person sit in the chair eating a sandwich.\n6JB5R 20.7 31.1##person sits down on chair.\nNSKMC 12.1 19.9##the person is drinking a cup of water.\nH8UJ3 0.0 8.6##the person turned on the light.\nH8UJ3 15.1 23.1##the person opened the book.\nH8UJ3 9.1 17.5##the person sits down on a chair.\nH8UJ3 0.0 8.6##a person turns on the lights to the dining room.\nNGMK1 3.0 10.0##a person drinks out of a red cup.\nDTJS6 18.1 25.3##person look out the window.\nDTJS6 28.8 35.8##person running with a sandwich in the bedroom.\nDTJS6 4.8 16.1##person they put the broom down.\nDTJS6 18.1 25.3##person looks out the window.\nA4VK8 14.3 19.0##person eats a sandwich.\nA4VK8 6.5 15.3##person drinks a glass of water.\nA4VK8 6.5 15.3##person drink from a cup.\nA4VK8 14.3 19.0##person start eating.\nA4VK8 5.1 9.9##person they put the phone down.\nK4UOG 0.0 13.0##person lookin at the picture.\nK4UOG 13.0 29.0##person eats the sandwich.\nK4UOG 0.0 13.0##person looking at a picture.\nK4UOG 10.1 16.8##person takes a sandwich from the table.\nK4UOG 10.1 16.8##the person takes a sandwich from a dish.\n291LH 0.7 6.7##person drinking from a cup.\n291LH 0.7 6.7##person drinking water out of a cup.\n0VOQC 0.0 4.9##one person runs in with a phone.\n0VOQC 0.0 4.9##a person runs into the room.\n16WZF 0.0 7.8##person holding a broom.\n16WZF 2.8 8.5##person they put the broom down.\n16WZF 2.8 8.5##person they put the broom aside.\nOHBYF 18.0 24.8##person closes the box.\nHDHWS 9.4 15.6##person closes a few notebooks.\nHDHWS 0.0 5.9##person takes a picture of themselves.\nGWQ73 8.7 14.2##a person is eating food slowly.\n2WX2Z 7.6 12.7##person leaves smiling.\nSQKE4 4.0 9.3##person puts the cup down.\nSQKE4 0.0 9.5##person holding a cup of coffee.\nSQKE4 6.5 11.3##person watching television.\nSQKE4 0.0 9.5##a person is sitting on a couch holding a cup.\n5LE93 1.2 8.6##person drinks from a glass.\n5LE93 7.5 13.4##person they are smiling.\nVRMNI 16.4 32.8##person they wash the dish in the sink.\nVRMNI 0.0 4.2##person opening the door.\nVRMNI 29.8 35.0##person starts putting the dishes on the shelf.\nVRMNI 5.6 11.0##person they turn on the light in the room.\nVRMNI 5.6 11.0##the person turns on the light.\nVRMNI 16.4 32.8##person brings dishes to the sink washes them.\nVRMNI 5.6 11.0##a person enters through a doorway turns on a light.\nFQDS1 0.0 8.6##a person is reading a book.\nFQDS1 0.0 9.2##there is a person holding a book.\nFQDS1 0.0 8.6##a person is in their bathroom reading a book.\nZZ89F 22.2 36.0##person pour it into a glass.\nZZ89F 7.4 14.0##person opens the refrigerator.\nZZ89F 0.0 9.6##a person walks into a kitchen through a doorway.\n9WLBQ 0.0 13.3##person someone is in their kitchen washing dishes.\n9WLBQ 0.0 13.3##a person washes some dishes in the sink.\n9WLBQ 12.1 19.6##person they open the refrigerator.\nB1FY9 19.3 28.6##person another is throwing food in a box.\nJF0O8 0.0 12.8##this person is sitting on the couch holding a pillow.\n7B8EQ 3.3 13.9##a person is undressing.\n7B8EQ 3.3 13.9##person dressing in different clothes.\nIG1YT 13.6 20.3##person starts undressing.\nIG1YT 0.0 11.1##a person is sitting on a pillow on a chair.\nIG1YT 20.8 26.9##person turns the lights off.\nM5C5L 14.7 31.7##person proceeds to cook on a stove.\nM5C5L 0.6 13.1##a person is smiling next to a refrigerator.\nM5C5L 14.7 31.7##person cooking something on the stove.\nBID6Z 21.4 29.4##person they put the towel on a shelf.\nBID6Z 29.8 34.0##person opens a closet door.\nBID6Z 29.8 34.0##person closes the door.\nBID6Z 21.4 29.4##person puts the towel in the closet.\nBID6Z 29.8 34.0##person close the door.\nBID6Z 19.4 25.8##person opens a door to a cabinet.\nQT4WM 1.4 9.3##a person is opening a cabinet in their closet.\nQT4WM 1.4 9.3##a person opens a linen closet.\n785X2 24.0 39.7##the person takes a bottle of medicine.\n785X2 39.2 55.0##person close a laptop.\n785X2 20.5 30.7##a person awakened.\nF8TWE 25.4 33.0##another person is putting a bag down.\n0TXYV 9.7 16.3##person drinking a bottle of water.\nTNWWG 11.5 20.8##person puts some stuff on a shelf,.\nTNWWG 8.7 19.9##person takes a pillow.\nTNWWG 11.5 20.8##the person puts some pillows on a shelf.\n7TNGJ 9.7 14.7##person takes some medicine.\n7TNGJ 0.4 5.9##person opens a medicine cabinet.\n7TNGJ 0.4 5.9##a person is seen opening the medicine cabinet.\nIDFTJ 19.3 31.0##person puts them into a box.\nIDFTJ 19.3 31.0##person they put them in a box.\nJ3ZQS 0.0 4.1##that person takes homework out of the bag.\nJ3ZQS 1.3 7.5##a person opens a bag.\nJ3ZQS 25.9 33.8##the person drinks from a cup of coffee.\nTLJRV 8.0 17.6##a person takes a box from under the sink.\nTLJRV 26.6 44.0##person sits in a chair.\nTLJRV 8.7 20.2##a person is holding dishes.\nGEAB1 28.1 33.0##person begins drinking water from a glass.\nGEAB1 14.7 29.9##person begins to eat a sandwich.\nGEAB1 12.3 18.4##the person takes  a bite of their sandwich.\nYPTHX 6.9 17.7##a person takes a phone from a bag.\nYPTHX 6.9 17.7##person takes out a phone.\nYPTHX 6.7 18.1##person the put the phone in their pocket.\nXQ4RB 23.6 29.2##another person turns on the light.\nXQ4RB 23.6 29.2##person a light.\nIAK2E 0.0 8.3##person holding a glass.\nIAK2E 4.4 11.3##a person laughing.\n6BI70 2.9 11.4##person opens the door.\nK9MPN 2.4 11.0##person open the door.\nK9MPN 7.5 13.5##the person closes the door.\nIRGXQ 2.7 11.1##a person runs through the doorway laughing.\nIRGXQ 2.7 11.1##a person runs into a room.\nI6KKY 0.9 7.5##person opening a cabinet.\nI6KKY 0.9 7.5##person opens a cabinet.\nI6KKY 2.8 8.7##the person takes a towel out.\nDJR5H 20.2 31.0##person sits on the sofa.\nCJ58B 14.5 19.9##person takes some food from a bag of groceries.\nCJ58B 23.1 32.0##person starts eating.\nCJ58B 23.1 32.0##person eats it.\nCJ58B 15.6 20.8##person opens bag of groceries.\nEV4HN 20.7 25.8##person runs out of the room.\nQXEWB 0.0 3.7##a person throws a book onto a couch.\nQXEWB 0.0 3.7##a person is throwing a book.\nNCZOV 0.0 4.9##a person opens a door on a doorknob.\n7FAB3 1.3 8.2##a person is standing in the kitchen opening a refrigerator.\nO9DOT 0.0 13.8##a person playing with their laptop on the stairs.\nHKS9J 6.7 14.4##person takes out a glass.\nRIV6I 0.0 12.4##a person standing in a doorway sneezing.\nRIV6I 0.0 12.4##a person is sneezing on a doorknob.\nBR8B3 20.0 32.0##person eating a sandwich.\nBR8B3 19.9 32.0##person they eat some food.\nBR8B3 20.0 32.0##a person is lying on a couch eating a sandwich.\nJJKNY 6.5 11.0##person eating a sandwich.\nJJKNY 0.0 4.8##a sneezing person is undressing in their bathroom.\nGDIW0 16.6 24.0##person they close the laptop.\nGDIW0 18.7 32.2##person looks out the window for a moment.\nGDIW0 18.7 32.2##person look out the window.\nTKOYQ 0.0 5.1##this person takes some comic books off the shelf.\nBV5CC 12.9 21.3##person closes the door.\nBV5CC 19.4 31.0##person start to eat.\nBV5CC 17.7 23.4##person they take a sandwich from the cabinet.\nBV5CC 19.4 31.0##person start eating it.\nBV5CC 0.6 5.6##person they reach into an open cabinet.\nB0BDR 6.2 16.7##person they are slightly smiling.\n46Z16 0.0 7.6##person put on their shoes.\n46Z16 0.0 7.6##person put their shoes on.\nZ0KN7 0.0 7.1##a person sits on the floor watching a laptop.\nME4D5 7.5 14.7##person they start sneezing.\nME4D5 7.5 14.7##person start sneezing.\n8ICEM 6.5 14.2##a person is sitting on a bed eating a sandwich.\n8ICEM 8.5 16.4##person takes out some clothes.\n8ICEM 6.5 14.2##a person is eating a sandwich.\n8ICEM 10.7 16.1##another person opens the closet.\nWJQPA 9.6 17.2##a person opens a cabinet.\nWJQPA 25.6 34.0##person closes the cabinet.\n538JV 6.9 13.4##person take a drink out of a cup.\nTIY7F 0.0 6.1##person drinks water from a glass put the glass down.\nO03Y4 11.5 17.0##person putting it on the table.\n6B7HM 24.9 30.0##person start smiling.\n37GL4 14.7 27.0##person a is fixing their hair in a mirror.\nJQG43 5.7 18.2##person opens laptop.\nJQG43 5.7 18.2##the person is opening the laptop.\n1LSEQ 6.7 11.5##person puts the glass on a table.\nI5ZWF 17.4 23.5##a person is walking into a garage holding a pillow.\nIUXP8 16.1 30.0##person start cooking on a stove.\nUGQD0 0.0 14.6##a person is sitting in a chair holding a phone.\nUGQD0 0.0 14.6##a person is holding a phone.\nTWU2U 10.1 17.9##a person begins opening the refrigerator.\nTWU2U 10.1 17.9##person opens the refrigerator door.\nDYYLD 3.5 15.2##person closing a door.\nDYYLD 3.5 15.2##person the pull the door closed.\nCF55N 30.4 34.6##person turning off the light.\nCF55N 7.7 13.4##the person smiles into a mirror.\nCF55N 7.7 13.4##person smiling in front of a mirror.\nCF55N 30.4 34.6##the person turns off the light.\nV29QF 0.0 5.8##a person is holding a towel in the hallway.\nEFX3U 10.6 16.4##a person closes a book.\nEFX3U 17.9 32.0##person eating a sandwich.\nEFX3U 17.9 32.0##person begin eating a sandwich.\nX7GVM 23.1 33.0##person eating food off a plate.\nZ5JZD 19.9 25.7##person closes the pantry door.\nZ5JZD 6.3 19.8##person puts them on a shelf.\nZ5JZD 19.9 25.7##person closes the door to the cabinet.\nZ5JZD 3.4 16.3##a person is putting some groceries in a bag away.\nDMI87 18.1 25.6##smiling person takes a towel.\nA42FN 0.2 13.6##person puts the broom away.\nA42FN 5.9 17.2##a person is seen eating a chip.\nA42FN 5.9 17.2##person eating something.\nA42FN 2.2 9.0##the person puts the food on table.\nXJE4Y 0.0 3.4##a person opens a door.\nXJE4Y 0.4 14.7##a person undresses.\nXJE4Y 0.0 7.6##person throws their clothes into the washing machine.\nXJE4Y 0.4 14.7##person gets dressed.\n8AKGE 14.6 25.6##person takes a drink from a glass.\n8AKGE 11.5 16.7##person turns on the light.\n8AKGE 11.5 16.7##the person turns on the light.\n8AKGE 14.6 25.6##person takes a drink of a glass of water.\nKAQNT 5.7 10.7##person close a laptop that's on a counter.\n8WPPG 17.9 25.7##a person is seen throwing a towel down the stairs.\n8PL34 3.2 9.5##a person closes a door.\n8PL34 18.2 29.4##person opens the door.\n8PL34 18.2 29.4##a person opens the door to their bedroom.\n8PL34 9.7 20.4##person sits on a bed.\n8PL34 9.7 20.4##person sits on the bed.\n8PL34 9.0 20.7##person takes their shoes off.\n8PL34 9.0 20.7##person takes off shoes.\n8PL34 9.0 20.7##person take off their shoes.\n8PL34 23.9 34.0##person throws the shoes on the floor.\nPNC99 12.4 23.1##person drinking a glass of wine.\nUTR56 16.9 23.5##one person holds a doorknob.\nVLYM4 25.9 37.2##person eats a sandwich.\nVLYM4 22.5 35.8##person sitting at a table.\nVLYM4 25.9 37.2##person eating food in a kitchen.\nVLYM4 6.7 11.7##a person is sneezing.\nJC9SA 17.2 32.1##the person opens the door.\nJC9SA 17.2 32.1##a person opens the door to their refrigerator.\nX42YA 0.0 15.0##person runs back in.\nX42YA 0.0 15.0##one person runs through.\nR5CWJ 13.8 18.0##person another gets dressed in front of a mirror.\nR5CWJ 1.9 9.6##person two laughing people hug.\nR5CWJ 1.9 9.6##person two people are laughing.\nR5CWJ 13.8 18.0##person one starts dressing.\n38HNU 13.0 19.3##a person in the pantry is sneezing into the coffee.\n38HNU 13.0 22.4##person they laugh.\nJOWAU 5.4 12.8##a person awakens on a bed.\nJOWAU 10.8 19.8##person takes off their shoes.\nINQNU 9.2 14.8##person take a drink from a glass.\nINQNU 9.2 14.8##person drinking a glass of milk.\nPZ2W1 2.1 9.2##a person is drinking a glass of water.\nPZ2W1 2.1 9.2##person drinking from a glass sits at the table.\n0Z36L 0.0 6.8##person putting clothes in bag.\n0Z36L 28.7 32.0##a person is putting clothing into a bag.\nDIEEO 0.0 7.8##a person is drinking from a glass.\n6AHD0 0.3 8.5##a person is sitting on a sofa.\n6AHD0 1.5 12.4##a person is on the couch eating something.\n6AHD0 15.5 23.6##person stand up.\n6AHD0 1.5 12.4##a person is in a dining room eating food.\n6AHD0 1.5 12.4##person eating some food from a bowl.\nRVYXB 18.4 26.2##person gets up to pour coffee in cup.\nRVYXB 18.4 26.2##person pour a cup of coffee.\n8SA46 0.0 3.9##a person is closing the refrigerator.\n0R6K4 18.4 23.9##a person puts the glass on the table.\nF56YP 0.0 4.8##that same person closes the box.\n61BEP 30.7 37.0##person getting up to turn on the light.\nWOVOX 34.8 58.0##person continues looking out the window.\nWOVOX 7.6 18.4##as the person begins to undress.\nWOVOX 0.0 15.3##person the laughing stops.\nWOVOX 34.8 58.0##person looks out a window.\nWOVOX 0.0 4.0##a person walks through a doorway.\nWOVOX 0.0 15.3##person laughing heartily.\n3HUXR 37.4 42.6##person turn off the light.\n3HUXR 37.4 42.6##person turns off the light.\nOIOIO 4.1 10.3##a person throwing clothes at a door.\nQ3FZ6 11.9 18.9##person putting clothes in a box.\n5IVO1 0.0 14.6##person begins to look through a book.\n5IVO1 0.0 14.6##person looking at a book.\n5IVO1 27.6 32.0##person runs from the room.\n0F1VF 0.0 5.4##the person walks to put a book on a shelf.\nY8M9P 7.0 14.6##the person is laughing on the phone.\nY8M9P 7.0 14.6##person starts laughing.\nH28KM 20.6 26.2##person still holding the book.\nH28KM 20.6 26.2##person holding a book in the entryway.\nH28KM 20.6 26.2##a person holding a book picks up a mirror.\nH28KM 22.2 30.4##person running in place.\nH28KM 22.2 30.4##the person begins to run in place.\nH28KM 22.2 30.4##person run in place.\nH28KM 20.6 26.2##person holding a book.\nJTTAP 17.4 23.1##the person closes the cabinet.\nJTTAP 0.6 11.0##a person walks into view drinking from a glass.\nJTTAP 14.3 20.0##person open a cabinet.\nJTTAP 16.3 22.0##person the puts it away into the medicine shelf.\nJTTAP 7.9 18.0##person plays with their phone.\nJTTAP 16.3 22.0##person put it on the shelf.\n4021N 24.0 28.7##person put a camera into a box.\nMPFSX 24.8 31.3##another person walks through the doorway.\nWN7T3 13.5 20.4##person starts sneezing.\nX58SH 16.0 26.6##person putting groceries away.\nX58SH 25.9 31.1##person they take a food dish.\n4021D 23.5 31.1##person closes the door.\n4021D 23.5 31.1##person closing the door.\n9C5PT 9.3 19.7##the person takes off their shoes.\n9C5PT 9.3 19.7##person takes off their shoes.\nCVX3K 18.4 34.0##person plays on their phone.\nCVX3K 11.3 22.4##person drinks water from a glass.\nSNECW 22.0 27.7##person turns on the light.\nSNECW 12.1 22.5##a person awakens in their bedroom.\nSNECW 22.0 27.7##person turn on the light.\nSNECW 25.6 31.5##the person opens a window.\nI3N3J 16.3 27.2##person looking through the book.\nVNQJ0 11.2 26.8##person another is tidying the area with a broom.\n0RROG 0.0 10.6##a person is fixing a light.\nMUO4G 4.7 12.8##person opening the refrigerator.\nMUO4G 14.3 19.0##the person is laughing.\nG8SWD 25.0 28.0##the person runs out of the room.\nG8SWD 9.6 14.4##one person closes the refrigerator.\n7W1ZI 21.4 29.0##person puts them back in the box.\n7W1ZI 21.4 29.0##one person puts the cards in a box.\n23QFL 4.2 12.7##person begins sneezing.\nEG0IU 10.8 16.1##person turning off the light.\nYVOVB 9.1 17.8##a person is smiling.\nDRGKV 22.4 30.6##person hold a camera up towards the door.\nDRGKV 3.9 14.3##person undressing by taking their jacket off.\nPWR6D 21.1 32.0##the person is sneezing.\nUBYBQ 0.0 8.9##a person is holding a blanket.\nUBYBQ 2.4 9.0##the person puts the blanket in the washer.\nETT15 5.7 12.4##person they stand up.\nETT15 3.8 8.8##a person who is seated closes a book.\nETT15 0.0 9.3##a person sits in a chair at a desk.\n3P38N 23.0 29.0##person they stand up.\n3P38N 13.9 18.4##person laughs as they read a book.\n57QQ7 13.3 22.5##person pouring a cup of coffee in the dining room.\n57QQ7 13.3 22.5##person they pour coffee into a glass.\nIYCOH 13.9 22.2##a person is watching television.\nIYCOH 18.1 32.0##person working on a laptop in a bedroom.\n20WZU 13.2 21.5##person opening a book.\n20WZU 0.0 4.9##a person is sneezing as they grasp a sandwich.\n20WZU 13.2 21.5##person they open the book.\n20WZU 0.0 6.5##person they eat the sandwich.\n20WZU 13.2 21.5##person open a book.\nIRF8X 5.9 12.5##a person is typing on a laptop repeatedly sneezing.\n7WJUW 5.0 12.0##person takes out a blanket.\n7WJUW 29.1 36.0##person take a phone from a table.\nRJCNV 12.2 17.9##person opens a book on the table.\nKAHM2 9.3 18.7##a person washes their hands in the sink.\n9OP4S 2.1 12.1##a person is sitting on stairs looking at a picture.\n9OP4S 2.1 12.1##person looking at a picture.\n9OP4S 9.0 15.5##person they put the picture down.\nFPFFN 13.7 19.0##person turns lights off.\nFPFFN 3.0 9.6##person is walking across room holding a phone.\nFPFFN 15.7 19.0##person walks through doorway.\nHL4V4 13.6 21.9##that same person puts a laptop on it.\nHL4V4 13.6 21.9##the person puts a laptop on it.\nJA3MN 2.2 8.9##one person runs into the bathroom holding a glass.\nJA3MN 2.2 8.9##person runs in the room.\nJA3MN 0.6 6.2##person open the door.\nJA3MN 0.6 6.2##a person opens the door.\nBKNO9 0.5 7.1##a person runs into the room.\nBKNO9 0.5 7.1##a person runs.\nBKNO9 3.1 8.1##person throws a towel onto a pile of clothes.\nDHR83 1.2 10.0##one person walks in with homework sneezing.\n953I1 6.3 13.5##person pours pop in to a glass.\n953I1 4.3 11.0##a person takes a glass off of a shelf.\n953I1 14.0 21.1##person puts the glass on the shelf.\nZ1GUW 20.0 25.0##a person is putting clothes away.\nPB7PQ 0.8 10.3##the person is fixing their hair.\nPB7PQ 14.7 21.3##person opens the front door.\nPB7PQ 14.7 21.3##person opens the door to let a dog in.\nWM336 16.1 25.7##person starts tidying up the table.\nWM336 16.1 25.7##person begin to tidy up the table.\nLC8T4 15.5 21.2##person closed the door of the refrigerator.\nLC8T4 0.0 12.6##person cooked something.\nLC8T4 0.0 12.6##person cooking some thing on the stove.\n1Y5H7 12.0 22.2##person putting clothes in a laundry basket.\nVYMZC 4.4 11.9##a person turns the light off as the person leaving.\nOVYAC 1.3 8.5##a person is throwing clothes all over the room.\nOVYAC 1.3 8.5##a person throw a bunch of clothes on the floor.\nOVYAC 9.9 23.6##a person takes some clothes out of a bag.\nQJ11V 14.1 18.9##person puts the phone down.\nQJ11V 16.8 21.2##person turns off the light.\nAHLVF 6.8 22.3##the person is putting on their shoes.\nAHLVF 6.8 22.3##person putting on shoes in a bathroom.\n5KZLW 9.6 15.4##a person is sitting in a chair laughing.\n5KZLW 9.6 15.4##person one is sitting in a chair laughing.\nNA5F9 18.0 24.0##person takes a drink from a glass.\nMUI01 14.1 28.9##person begins dressing in front of it.\nKONWE 17.6 22.5##person throws the pillow on a table.\nKONWE 17.6 22.5##person throws the pillow onto the side table.\nM0ENV 22.1 27.4##person throws an item onto the floor.\nM0ENV 22.1 27.4##person decides to throw coffee beans all over the floor.\n1JH1W 4.1 16.6##person looks at picture.\n1JH1W 4.1 16.6##person looked at a picture hanging on the wall.\nIKBYS 9.5 14.9##a person holds a medicine bottle.\nWMR4G 3.5 16.1##a person is holding a glass of water.\nWMR4G 10.0 17.1##a person is putting a glass next to some food.\nWMR4G 21.4 34.0##person eats some food.\nWMR4G 21.4 34.0##person eats food from a bowl.\nMXW4N 0.0 8.1##person running into a close.\nMXW4N 3.0 18.6##the other person is holding up a phone.\nMXW4N 0.0 8.1##a person is running with a book.\nMXW4N 0.0 8.1##a person runs into another room.\nJCNHL 8.4 19.1##person they start undressing by taking their jacket off.\nJCNHL 0.4 8.8##person their smiling turns into laughing.\nHWHLG 7.7 12.8##person opens window curtains.\nHWHLG 7.9 18.0##person looked out the window.\nHWHLG 17.9 24.3##person runs over.\nHWHLG 1.8 11.6##a person makes tidy clothes on the floor.\nS1LQF 3.2 14.6##a man pouring some water out of a bottle.\nS1LQF 3.2 14.6##person pours water in glass.\nS1LQF 31.6 38.0##person putting into a glass.\n5KGCY 9.8 15.6##person they take a glass off the table.\nBM5B8 11.4 23.8##person opened the door.\nBM5B8 11.4 23.8##the person walks away opens a door removes hat.\n282ZZ 18.5 26.2##person begins eating a sandwich.\n282ZZ 18.5 26.2##person eating a sandwich in the living room.\nHAIVQ 17.4 29.1##person begin eating something.\nHAIVQ 7.4 14.7##a person is throwing clothes down the stairs.\nHAIVQ 7.4 14.7##a person is throwing clothes down some stairs.\nHAIVQ 17.4 29.1##person eating food on the stairs.\nHG8G1 26.0 38.0##the person starts smiling randomly.\nBLIW5 7.7 12.2##a person is seen putting some clothes away.\nPOXTH 0.0 5.4##person they stand up.\nLLLXJ 1.1 10.3##another person is running with a bag.\nG9IUG 25.6 32.0##person runs out.\nBUBT0 13.8 20.8##a person sits in a chair.\nBUBT0 13.8 20.8##the person sits in a chair.\nBUBT0 16.8 31.6##person laughs at the closed box.\nFDIJX 12.4 18.0##person snuggling with a blanket.\nZVV1Y 16.8 22.3##person they stand up.\nZVV1Y 20.0 25.2##person opens the door.\nIULMX 0.0 12.5##a person is lying down snuggling a pillow.\nIULMX 1.6 11.0##one person awakens.\n2GRGY 0.0 7.9##the person opens a refrigerator.\n2GRGY 19.8 28.3##person pours it into a glass.\n2GRGY 0.0 7.9##person opens refrigerator grabs sandwich.\n2GRGY 19.8 28.3##person starts pouring juice into a cup.\n0M6IY 8.6 14.0##person the puts the broom away.\nTQ9GQ 26.1 32.6##person puts some cups into the cabinet.\nCWM1T 0.0 11.3##a person is cooking on the stove.\nCWM1T 0.0 11.3##a person grasping a knife is cooking in their kitchen.\nQT4W0 14.4 24.0##person starts dressing.\nQT4W0 5.0 11.1##a person runs into their recreation room.\n0W4F6 14.6 21.7##person opens his laptop.\n0W4F6 14.6 21.7##the person opens their laptop.\nWM8QQ 23.7 29.9##a person takes a bag of groceries into a kitchen.\nWM8QQ 1.4 13.8##person putting the bag on the table.\nWM8QQ 0.0 12.4##the person takes some of the food out.\nWM8QQ 1.4 13.8##person puts on the table.\nOOEME 3.3 16.7##another person is dressing by the wardrobe.\nOOEME 3.3 16.7##a person gets dressed.\n1DGSW 16.7 31.8##a person gets dressed.\nCS01T 22.7 35.0##person sits on their bed.\nCS01T 22.7 35.0##person they sit down on the bed.\nTPH12 0.7 6.4##person opens a book a little.\nTPH12 11.2 20.5##a smiling person is in their kitchen reading a book.\nTPH12 0.5 15.0##a person reads a book.\n485I1 0.0 12.4##a person sits in a chair.\n485I1 0.0 11.3##a person is watching television.\n485I1 24.4 31.0##person drinking from a glass on the stairs.\nBDWIX 0.0 9.7##a person takes off their shoes.\nBDWIX 9.8 23.6##person begins washing clothes.\nBDWIX 19.6 31.0##person they suddenly start violently sneezing.\nUFWKL 1.8 7.2##a person is sneezing on a light.\nMC25U 19.8 25.0##person runs away.\nMC25U 11.9 22.8##person open the box.\nMC25U 19.8 25.0##person run out of the garage.\nRP64Z 0.0 8.3##the person is laughing as they clean the stairs.\nRP64Z 15.2 20.2##person walks away through a doorway.\n2MR5K 0.0 13.7##a person is working on their laptop they.\n2MR5K 0.0 13.7##a person is working on a laptop.\nQCAUL 8.6 19.2##person puts their shoes on a chair.\nQCAUL 2.6 7.8##a person puts food on the table.\nQCAUL 16.4 23.0##person takes off their shoes.\nQCAUL 16.4 23.0##person a plate than takes their shoes off.\nRF00I 18.4 42.8##person talking on the phone.\n5JSGK 3.8 9.7##person opens a book.\n5JSGK 22.9 28.2##person turning off the light behind them.\nZ9XLJ 7.5 18.4##a person is walking in a hallway undressing their clothes.\nZ9XLJ 15.7 21.5##closes the door.the person turns.\nZ9XLJ 11.9 18.8##takes off their jacket .the person opens a closet door.\nQTRIN 25.1 32.0##person holding a pillow opens the door.\nQTRIN 25.1 32.0##person opened a door.\n9LHP3 6.4 12.3##person sits on a sofa.\n9LHP3 24.7 32.2##shoes other person talking on phone.\n2MJA1 9.0 24.2##person they decide to start undressing by removing their sweater.\n6MH42 12.7 21.9##a person begins laughing.\n6MH42 8.3 14.3##person drinking a glass of water.\n6MH42 13.2 21.9##a person is snuggling a blanket.\n6MH42 8.3 14.3##person drinks a glass of orange juice.\nZS9XR 2.4 17.5##person eats a snack.\nZS9XR 2.4 17.5##a person is eating food out of a bag.\nZS9XR 2.4 17.5##person starts to eat food from a bag.\nZS9XR 1.3 18.8##person sits on a sofa.\nZS9XR 1.3 18.8##a person sits on a couch.\nUFQK1 21.7 28.0##person they close the cabinet door.\nUFQK1 0.0 8.5##a person cooks some food in a pot.\nUFQK1 0.0 8.5##a person stands at a stove cooking.\nUFQK1 0.0 8.5##a person is cooking at a stove.\nUFQK1 17.6 26.9##person puts the dish on a shelf in a cabinet.\nMF09L 0.0 10.5##a person opens a cabinet.\nMF09L 27.8 33.9##person pours water in a cup.\nMF09L 27.8 33.9##person pour water in a glass.\nMF09L 39.4 52.0##person take a picture of it.\nMF09L 39.4 52.0##person takes a picture of the table.\nMF09L 0.0 10.5##person opens cabinet.\n0D5I8 17.7 32.0##person takes a picture.\nQS0AZ 7.7 14.3##person they open the refrigerator.\nCXKFB 12.1 19.1##person they start sneezing.\nCXKFB 12.1 19.1##causes the person to start sneezing.\n41GXC 7.5 12.3##that person puts the glass down on the table.\n41GXC 0.0 10.2##a person sits at the table drinking from a glass.\n41GXC 19.7 27.7##person at the refrigerator they open the door.\n7DU77 8.3 14.6##the person takes a glass of water from the table.\n7DU77 0.0 5.8##a person closes a door.\n7DU77 8.3 14.6##person takes a bottle off a table.\n7DU77 11.3 21.3##person drinks from the bottle.\n4ZSAR 35.2 39.0##person sit on a chair with a coffee cup.\n4ZSAR 35.2 39.0##person sit in a chair.\nCF9QP 13.4 25.6##person begins to eat from the bag of groceries.\nCF9QP 13.6 20.9##person open up a bag.\nCF9QP 13.4 25.6##person eats it.\nCF9QP 13.4 25.6##person start eating.\nCF9QP 12.9 25.7##person take some food out.\nXE4IA 19.5 29.7##person closes a book.\nXE4IA 19.5 29.7##person close their book.\nOCSJP 9.7 20.9##person standing at the stove cooking.\nOCSJP 9.7 20.9##a person is cooking on the stove.\nJHTO5 0.0 2.9##the person proceeds to open a medicine cabinet door.\nJHTO5 0.0 2.9##person they open a cabinet.\nJHTO5 0.0 2.9##person opens the medicine cabinet.\nYSABV 9.2 18.0##the person the turned the light off.\nYSABV 4.2 10.1##a person puts a pile of clothes into the corner.\nYSABV 14.4 20.3##the person laughs as they leave.\nYSABV 9.2 18.0##person turning off the light behind them.\nX3ASU 14.1 19.9##the person takes a selfie with a phone.\nX3ASU 0.5 5.9##a person is sitting on a chair.\nX3ASU 0.5 5.9##a person is sitting in a chair reading a book.\nX3ASU 28.6 33.3##person puts the book down.\nX3ASU 12.1 17.9##person close the book.\nGE4SD 32.8 37.8##person takes a sip,before putting the glass on the counter.\nGE4SD 6.0 27.1##a person is in the kitchen washing dishes.\nGE4SD 6.0 27.1##person starts washing dishes in the sink.\nGE4SD 37.9 50.0##person turns off the light.\n3WD4E 30.5 36.0##person puts a laptop in a bag.\n8JR94 24.4 33.0##person eat the sandwich.\nLVLVR 14.9 25.2##person eats it.\nLVLVR 4.1 10.5##person they open the bag.\nLVLVR 14.9 25.2##person begin eating.\nFKFU3 0.0 3.0##person holding a book.\nFKFU3 0.0 4.7##person they are smiling.\nFKFU3 0.0 4.7##person smiling out the window.\n7WIKW 2.7 11.1##person pours a glass of water.\n7WIKW 2.7 11.1##person pours coffee into a glass.\nR1RDT 20.7 26.1##person close the door behind them.\nR1RDT 0.0 7.3##a person awakens in bed.\nR1RDT 20.7 26.1##person leave the bedroom closing the door.\nWTMMC 39.7 50.0##person they take a drink from a cup.\nWTMMC 15.1 42.5##person throwing clothes in washer.\nZA7ST 9.0 16.7##a person is sneezing.\nXWBF1 3.6 14.3##a person walks into the room talking on their phone.\nXWBF1 3.6 14.3##person talking on the phone.\nM0RUS 18.7 25.5##the person walks through the doorway.\nR9382 0.0 12.0##a person is cooking on the stove.\nR9382 22.8 29.0##person pulls something out of the fridge that he eats.\nR9382 13.2 21.1##person close the door.\nR9382 22.8 29.0##person eat it.\nR9382 9.1 21.9##person take out a sandwich.\nR9382 0.0 12.0##a person is cooking at the stove.\n5M9JX 0.0 5.4##a person isdrinking a glass of water.\n5M9JX 0.0 5.4##person is drinking water from a glass.\n5M9JX 0.0 5.4##person drinking a soda from a glass.\n5M9JX 2.5 8.8##a person is standing on their stairs eating a sandwich.\n5M9JX 2.4 9.0##person they are eating the food.\nI30LP 0.0 6.9##person laughing at the television.\n1US0H 5.8 15.4##a person is sneezing into a wardrobe.\n1US0H 15.5 28.1##person fixes hair.\n1US0H 5.8 15.4##person sneezing into a towel.\n8PRDP 20.1 28.7##person drinks a beverage from a cup.\n8PRDP 20.1 28.7##person drinking some water from a glass.\n2GF6R 6.3 16.2##person eating a sandwich in a living room.\n2GF6R 0.0 4.2##person take a bite of a sandwich.\n2GF6R 3.5 13.2##a person is awakening.\n2GQDN 21.2 31.0##person eats a sandwich.\n2GQDN 7.1 15.4##a person opens a door.\n2GQDN 21.2 31.0##person starts eating them.\n2GQDN 0.0 6.7##a person opens the closet.\n2GQDN 21.2 31.0##person begins eating the food.\n5UFCJ 22.4 30.0##person looking out a window.\n5UFCJ 4.2 16.0##person pours medicine into a glass.\nIUOC0 5.1 15.0##a person runs into the room.\nIUOC0 11.1 16.7##person closes the door.\nIUOC0 22.2 29.0##person eating a sandwich.\nIUOC0 11.1 16.7##person closing the door to the office.\nIUOC0 17.0 29.0##person sits on the chair with a box.\nIUOC0 17.0 29.0##person sitting in a chair.\nIUOC0 5.1 15.0##a person runs into the middle of an office.\n8BSG7 0.0 7.6##person working on a laptop.\n8BSG7 16.7 21.6##person open a door.\nQ3XBQ 1.2 12.6##a person is sitting at a table doing their homework.\nQ3XBQ 3.1 11.7##person pours themselves a glass of water to drink.\nQ3XBQ 12.9 30.0##a person throws a blanket on the floor.\nQ3XBQ 8.3 16.9##a person is sneezing.\nL5ZAB 0.4 6.9##a person is sneezing into a glass.\nWA3CG 5.4 13.4##person opens a cabinet.\n1SCZE 12.0 17.0##person open the other door.\n1SCZE 7.0 11.0##person they turn on the light.\n1SCZE 8.0 12.0##a person is putting a bag in the wardrobe.\nUYJVE 9.6 16.7##person begins sneezing.\nHZTB1 18.7 27.2##the person is eating food out of the refrigerator.\nHZTB1 2.2 9.1##person takes out a baggy.\nHZTB1 18.7 27.2##person eats something.\n1Z5FK 1.6 13.6##person they start sneezing.\nH0O39 27.2 40.0##person running down stairs.\nH0O39 0.0 10.0##a person is awakening from beneath a blanket.\nUZIQS 22.9 31.0##person puts it on a shelf.\nUZIQS 13.4 21.2##the person takes a towel from a rack.\nUZIQS 13.4 21.2##a person takes a towel from a chair.\nRDUOV 9.3 15.9##a person is putting a broom in a closet.\nOBXY5 2.4 14.3##person washes their hands.\nOBXY5 2.4 14.3##person washes their hands in the sink.\n9CCDY 6.8 16.4##person laughs at the television.\n9CCDY 6.6 11.1##person drinking from a glass.\nV0XW3 20.5 25.9##person they grab a drinking glass.\nRKGXU 14.7 23.4##person also drinking a glass of coffee.\nF6A4W 2.4 9.4##person drinking from a glass.\nW7WJR 14.7 21.6##person turns on the light.\nW7WJR 14.7 21.6##person they turn on the light.\nP6S89 0.0 11.8##person washing a mirror.\nP6S89 24.1 32.0##person walking out the doorway.\nP5ANU 20.9 27.1##person pouring a cup of coffee.\nMB1MR 15.4 30.0##person putting on their shoes.\nMB1MR 15.4 30.0##person put on shoes.\nARCUY 15.6 34.9##a person is sneezing.\nBI86J 6.0 14.2##a person is eating a sandwich.\nBI86J 16.0 22.9##person opens cabinet.\nBI86J 22.4 29.5##person put food on counter.\n3Z1YC 14.8 29.2##another person walks in holding a broom.\n3Z1YC 14.8 27.4##one person runs in with a broom.\nGDS6Q 7.0 14.2##person they start running around.\nFB7MZ 23.8 30.0##the person puts the shoes on a table.\nFB7MZ 23.1 32.0##person opened the window.\nFB7MZ 23.1 32.0##person opens window blinds.\n8XFAV 0.0 6.3##person opens a cabinet.\n8XFAV 7.0 13.6##person they pour a glass of juice.\nI6H4R 6.4 11.6##person takes the bag.\nI6H4R 15.9 20.3##person they turn off the light.\nKQKNE 0.0 5.8##a person is undressing.\nKQKNE 0.0 5.8##person starts undressing than dressing again.\nZP4X6 5.3 12.5##the person takes a phone out from underneath them.\nMWZJY 1.0 8.0##a person runs into the kitchen.\nMWZJY 1.0 8.0##a person goes running from one room.\nMWZJY 1.0 8.0##a person runs into the pantry.\nMWZJY 1.0 8.0##person runs outside.\nNT2HT 4.2 12.5##person opens the book.\nNT2HT 21.9 26.0##person put the book on the boxes.\nNT2HT 21.6 26.5##person puts it back on the table.\n8IUTG 0.4 11.3##a person opens a bag on a table.\n8IUTG 0.4 11.3##person they open the bag.\n8IUTG 0.4 11.3##a person is opening a bag on a table.\nM0QER 42.1 47.3##the person puts the book down.\nDS5J7 17.3 26.0##in the dim light a smiling person is watching television.\nK2LY1 13.8 20.1##person walks through a doorway to the refrigerator.\nK2LY1 5.8 14.4##a person is awakening from a nap.\nHRFGY 9.9 16.1##person puts it on a shelf.\nHRFGY 10.4 16.6##person putting a book on the shelf.\nQ4UO4 0.0 8.3##a person is cooking on a stove.\nQ4UO4 7.2 13.6##person washing their hands.\nQ4UO4 14.7 23.1##person they open the door to the refrigerator.\nSNUVF 0.0 7.4##person comes in turns on light.\nSNUVF 33.0 38.0##person starts eating.\nSNUVF 32.7 38.0##person they eat a sandwich.\nSNUVF 0.0 7.4##a person turns on a light in their kitchen.\nLKHKF 16.4 29.2##the person begins laughing hysterically.\n2KAWJ 15.0 20.0##person they stand up.\n2KAWJ 16.0 21.9##person run out of the room through the doorway.\n2KAWJ 29.0 33.6##the person is sitting on a chair at table.\nV7KBN 4.9 10.5##person puts it on table.\nVIDIE 18.0 25.9##person throws the pair of shoes into the corner.\nJ5CAN 5.3 10.7##a person is sitting on the sofa holding a book.\nJ5CAN 4.5 10.1##person puts the book down on the couch.\nJ5CAN 0.3 6.8##a person snuggling a book awakens from bed.\nUEXO4 0.0 11.4##a person awakens on a sofa.\nFP5MM 0.3 14.5##the same person washes the table.\n4ISIX 18.6 25.9##person they open a door.\n4ISIX 19.4 25.9##person walks away though doorway.\n4ISIX 5.0 15.9##person throwing clothes on chair.\nXYTFC 3.0 10.4##a person opens a cabinet.\nXYTFC 4.8 12.6##one person takes a fresh towel from the cabinet.\nXYTFC 3.0 10.4##person opens cabinet.\nB7DNX 19.0 29.3##person drink a glass of soda.\nB7DNX 0.0 7.8##a person awakens in a living room.\n9MOH2 0.0 9.2##a person is walking through a doorway.\n9MOH2 5.7 16.6##person opening a medicine cabinet.\n9MOH2 5.7 16.6##a person opens the cabinet.\nXWQ1D 15.1 28.0##person washes their hands.\nXWQ1D 15.1 28.0##person wash their hands.\nYBP5F 7.4 15.5##person takes a phone of the fridge.\n815KV 14.2 21.7##person they walk to a doorway.\n815KV 4.0 12.0##a person puts something onto a shelf.\n815KV 4.0 12.0##person puts a camera on a shelf.\n815KV 4.0 12.0##person puts the camera on the shelf.\n61XR6 23.2 32.3##person turns on a light.\nKU3WI 0.9 8.8##person closes the door.\nKU3WI 0.0 5.7##a person opens the door.\nWTBB2 22.6 30.3##the person was standing up reading a book,then bent down.\nFKGY7 3.2 9.0##a person is smiling as they undress.\nFKGY7 5.4 10.5##person puts the clothes on the floor.\nFKGY7 3.2 9.0##a smiling person undresses.\nW0A0Z 0.8 13.0##person was holding a cup of coffee.\nW0A0Z 0.8 13.0##the person holds a cup.\nKP8VI 0.0 11.0##a man sitting on a table.\n46GP8 11.9 21.2##person looking out of a window.\n46GP8 11.9 21.2##person watching something out a window.\nM2XIS 0.0 6.4##a person puts their laptop down on a desk.\nM2XIS 1.1 6.4##the person sits in the chair.\nM2XIS 0.0 5.9##the person proceeds to put the lap top the table.\nBYMO6 0.0 4.4##person watching a video on their laptop.\nBYMO6 0.0 4.4##a person watches a video on the laptop.\nKSAU8 7.8 13.9##person turns off the light.\nKOAQD 24.8 36.1##the person undresses.\nKOAQD 11.7 26.1##person remembers the medicine they need to take.\nKOAQD 11.7 26.1##person takes some medicine.\n55687 27.5 32.0##person walk out through the doorway.\n55687 0.0 10.8##a person stands in the entryway looking at a picture.\n55687 24.0 32.0##this person opens the doorknob to leave.\n55687 24.0 32.0##person open the door.\nDGPR1 1.1 7.7##a person is throwing a bag down the stairs.\n8LPZ0 23.7 34.5##person takes a box of groceries from them.\n8LPZ0 30.3 39.0##person b lies down on a nearby sofa.\nV1JIC 16.1 28.0##person lie on a couch.\nV1JIC 0.0 9.7##a person takes shoes off.\nV1JIC 11.2 16.4##person grasp a pillow to put under a head.\nBZ189 0.1 12.8##a person washes their hands in a sink.\nBZ189 13.6 25.5##person they start undressing by taking their jacket off.\n37SE6 35.8 39.0##person begins pouring more soda from a bottle.\n7HWS7 0.0 4.7##person opens a laptop.\n2PRCP 12.1 19.1##person takes a drink from a cup of coffee.\nD1VWG 4.3 10.0##person they open a box.\n4LU0G 2.8 8.3##a person is seen putting dishes on their desk.\n119W9 4.2 9.7##a person closes the refrigerator door.\n119W9 15.0 26.0##person begins cooking food on the stove.\nCBXVQ 7.4 22.1##a person opens a cabinet.\nCBXVQ 7.4 22.1##person opens up a cabinet.\nCBXVQ 18.8 35.0##person wash their hands.\nSM1QV 9.0 14.0##person sneezing in the entryway.\n94ICP 0.0 7.2##person he is cooking.\n94ICP 0.0 7.2##a person cooks on a stove.\nD07V2 2.6 10.3##person opening the refrigerator.\nD07V2 19.7 28.0##person go to the stove to start cooking.\nD07V2 0.0 6.2##a person is  drinking a cup of coffee.\nD07V2 2.6 10.3##person they open the refrigerator.\n9SKPI 0.0 17.6##a person is tidying up a table.\n9SKPI 17.0 26.0##person putting dishes on a shelf.\n9SKPI 0.0 18.0##person begins to tidy up a shelf.\nTPSUY 6.7 11.9##a person holding a broom throws it.\n7KEON 18.8 25.6##person puts a book on the floor.\n7KEON 18.8 25.6##person they put a book on the floor.\nV00AL 0.0 7.4##a person talks on the phone.\nV00AL 13.7 19.4##person laying down smiling on phone.\n3AU5K 6.1 11.8##person take a sip from a glass.\nGTK8W 30.8 36.6##person takes a bag out of the window.\nGTK8W 32.6 38.0##person sits back down in the chair.\nGTK8W 26.8 32.7##person eating food.\nE4C1C 20.6 25.3##person eating a sandwich.\n6WZ1K 0.0 12.4##person working on their laptop.\nFWUV8 6.9 19.0##a person is drinking a glass of water.\nFWUV8 23.3 38.0##person watches holding a pillow.\nFWUV8 6.9 19.0##a person drinks from a cup.\nFWUV8 23.3 38.0##person holding a pillow.\nY063A 19.5 26.0##person they start sneezing.\nUY08H 0.0 3.6##person starts undressing.\nUY08H 0.0 2.7##person puts it into the box.\nQIQXR 3.0 15.9##person putting on pink tennis shoes.\nQIQXR 3.0 15.9##a person puts on shoes.\nWJ33D 8.8 19.1##person takes some clothes from a cabinet.\nWJ33D 14.2 24.0##the person puts the towel on top of the wardrobe.\nC4KZ4 0.6 5.8##a person closes a book.\nV115C 18.2 23.0##person throws the clothes onto a desk.\nSIUU5 6.6 12.2##person turn on the light.\nSIUU5 0.6 7.2##person open door.\nSIUU5 6.6 12.2##person turns on the light.\n1ZEJJ 8.7 18.9##person start laughing.\nLN3WU 2.0 8.9##person laughing on the phone.\nLN3WU 8.3 17.6##person bends down takes off shoes.\nSILHS 0.0 8.8##a person is holding a blanket.\nSILHS 3.6 9.8##a person is putting a blanket in a wardrobe.\n3SAO5 22.4 30.7##person closes the cabinet.\n3SAO5 24.3 32.9##person takes out some food.\n3SAO5 0.9 17.7##person reading a book.\n3SAO5 0.0 7.6##person sitting down in a chair.\n3SAO5 0.4 16.5##person opening a book.\n3SAO5 19.5 24.7##the person opens a cabinet.\n3X52E 0.0 2.9##a person is undressing.\n3X52E 0.0 3.8##person throw it on the floor.\n3X52E 14.6 19.8##person they start throwing a blanket on the ground.\nZWVNF 1.5 9.1##a person is seen opening a bag.\nZWVNF 1.5 9.1##a person opens a bag on a chair.\n0NCWX 0.0 5.5##a person is opening a cabinet.\n70S6Y 5.2 15.4##a person runs into a bedroom holding a sandwich.\n70S6Y 5.2 13.3##person eating a sandwich.\n70S6Y 13.1 19.8##person turns off the light.\nKZTDH 0.8 12.1##a person washes their hands in a sink.\nKZTDH 0.8 12.1##a person is washing their hands at the sink.\nKZTDH 0.8 12.1##a person washes their hands.\nFZIW9 26.8 34.0##person holding a sandwich.\nHC62A 0.0 4.9##a person sits in a chair.\nHC62A 5.5 12.2##the person takes a bag of food from the window.\nHC62A 5.5 12.2##person takes a piece of food out.\nHC62A 0.0 4.9##a person sits down in a chair to watch television.\nHC62A 8.3 14.6##the person opens a bag of groceries.\n5AM4C 0.0 4.6##a person throws a bag on the table.\nIUVT3 3.7 8.9##a person is opening the bathroom door.\nIUVT3 3.7 8.9##a person opens a bathroom door.\nT4NAU 0.0 3.8##a person opens a cabinet.\nT4NAU 21.0 31.3##person they start undressing by taking a jacket off.\n5B2K2 22.6 31.0##one person walks outside to take a picture of shoes.\n5B2K2 3.2 9.9##person the people in the video are laughing.\nSHKHX 0.1 6.7##a person drinks from a glass.\nJZ46A 7.6 17.4##the person takes a pillow from nearby.\nJCSTR 0.0 5.8##person watching something on their laptop.\nJCSTR 2.1 9.3##another person drinks from a coffee cup.\nHG00H 28.2 36.0##person take a picture.\nHG00H 23.9 30.5##person they take a camera out.\nHG00H 23.9 30.5##person takes out a camera.\nHG00H 28.2 36.0##person takes a picture.\nJOBFJ 0.6 8.8##a person holds shoes.\nJOBFJ 2.4 9.9##a person puts their shoes on a table.\nKPNJ5 16.5 21.5##another person walks in playing on a phone.\nKPNJ5 16.5 21.5##person playing a game on their phone.\nKPNJ5 12.5 17.6##another person walks through the doorway.\nT0LOH 10.6 16.0##the person sits on a chair.\nT0LOH 10.6 16.0##person sits on a chair.\nZSREG 0.7 7.8##person opens a cabinet door that is at eye level.\nM3S4D 2.9 8.7##the person runs into the room.\nM3S4D 1.2 11.0##person puts a box on the ground.\nM3S4D 2.9 8.7##the person runs into the room holding a box.\nM3S4D 1.2 11.0##the person puts down the box on the floor.\nM3S4D 8.7 17.5##person drinks from the glass.\n1SCAZ 0.0 12.5##the person was tidying the table.\n19MUM 27.8 32.0##person closing the door behind them.\n19MUM 24.0 32.0##person opens a door.\n19MUM 0.0 7.0##a person is washing dishes in a sink.\n19MUM 9.0 23.0##person drink from a water bottle.\n7XBPE 0.0 6.4##the person opens the door of the fridge.\n7XBPE 2.3 8.7##person takes out a bag.\n2BFZG 17.4 31.0##a person is dressing.\nX3952 0.0 5.5##the person is undressing in the bathroom.\nDTUJD 13.2 17.0##person opens a closet door.\nDTUJD 12.9 17.0##person puts some clothes on the top shelf.\nMYGJA 5.7 11.6##person turn the doorknob to open the pantry door.\nMYGJA 9.1 15.0##person puts a blanket  in the closet.\nM02OO 0.0 4.9##another person is laughing in a doorway.\nSHTQ9 0.0 5.6##one person runs through.\nR1S1Z 9.8 15.0##person throws a bag at them.\nSZJ09 3.8 17.9##a person is sitting in a chair reading a book.\n0CQL8 0.3 9.7##a person holding a box opens a closet.\n81NAT 2.8 13.6##a person is undressing.\n81NAT 2.8 13.6##a person is in a dining room undressing.\nE2EXR 16.1 22.6##the person was drinking from a bottle.\nE2EXR 16.1 22.6##person drinking something out of a bottle.\nHDMN4 20.9 31.0##person lies down on a bed next to a laptop.\nHDMN4 4.8 9.6##the person puts the glass down.\nE2EHR 0.0 3.9##a person is eating a sandwich.\n8IPWO 29.5 32.0##person reading a book.\n8IPWO 8.7 14.4##the person opened a book.\n63XVB 17.0 26.0##person smiling to themselves thoughtfully.\nTJ3GZ 3.5 13.8##a person is putting on shoes in the bedroom.\nTJ3GZ 3.5 13.8##person watching the tv puts on shoes.\nXFRYR 5.4 15.2##a person takes some boxes out of a cabinet.\nLAJ9K 0.9 9.0##a person is walking near the doorway.\nA2DDA 4.9 10.8##person take some medicine.\nWCCY7 1.8 11.3##person undressing by a cabinet.\nKW0K8 0.0 5.7##person talking on phone.\nKW0K8 4.5 9.4##person begins to sit on a chair.\nKW0K8 0.0 5.7##person talking on the phone.\nKW0K8 4.5 9.4##a person sits down on a chair.\nKW0K8 4.5 9.4##the person sits down in a chair.\nKW0K8 0.0 5.7##a person is talking on the phone.\nTTQ3V 5.4 12.2##person holding a blanket in one hand.\nTTQ3V 0.0 9.1##person they start working on something on their laptop.\nTTQ3V 20.2 26.4##a person is running down their stairs.\nD0E8H 25.5 51.5##person they begin eating a sandwich.\nH40VV 18.9 24.7##person closes the door.\nH40VV 1.4 11.7##person opens the door.\nVYW49 18.0 32.0##person sits down in a chair.\nVYW49 18.0 32.0##person sits in a chair.\nPBV4T 0.0 4.3##a person is sitting in a chair eating.\nPBV4T 0.0 4.3##a person sitting in a chair eats a sandwich.\nY3NN8 17.5 23.4##person they stand up.\n15FVJ 2.9 8.2##person throws a pillow on a bed.\n15FVJ 2.9 8.2##a person throws a pillow onto a bed.\n15FVJ 0.9 7.9##a person holding a pillow lies in bed.\nDGPUE 13.5 21.9##the person drinks from a cup.\nGDTYU 22.0 29.0##person decides to undress their clothes holding a broom.\nGDTYU 0.0 11.5##a person is holding a sandwich.\nH8S4L 14.8 19.9##the person takes a bottle of medicine from the cabinet.\nH8S4L 14.8 19.9##the person takes some medicine.\nH8S4L 0.0 7.8##a person is working on their laptop.\nA1PEO 1.9 8.3##person closes the door.\nA1PEO 0.0 4.0##person opens the door to leave.\nOX5TB 0.0 12.4##a person is dressing in clothes.\nNFAA5 21.3 32.0##another person is in the house talking on the phone.\nNFAA5 22.9 32.0##person smiling down the hall.\nZAOWM 0.0 6.8##one person is eating on the phone.\nEIZFC 24.5 32.0##another person is laughing.\nMGDO2 24.8 29.0##person closing the door behind them.\nSQUX3 18.4 38.3##person put on some shoes.\nSQUX3 0.0 21.7##a person lied down on a bed.\nSQUX3 18.4 38.3##person putting on  shoes.\nZKNHG 26.2 39.2##person take a picture.\nZKNHG 0.0 8.2##person play with the phone.\nZKNHG 0.5 15.4##a person is undressing by their bedroom door.\nDB52Q 17.0 24.6##the person pours water into a glass.\nDB52Q 0.0 5.0##a person opens a cabinet door.\nDB52Q 17.0 24.6##person pours some water into a cup.\n9YNN1 0.0 6.6##person tidying a shelf.\nDFJ3N 1.7 12.1##a person drinks from a glass.\nDFJ3N 1.7 12.1##a person is drinking water from a glass.\nDFJ3N 11.9 19.6##person puts a bag of groceries on the table.\nD7MHV 19.6 30.0##person opens a cabinet.\nBKXN4 12.8 26.4##person start dressing by putting their shoes on.\nBKXN4 0.7 9.2##the person was working on laptop.\nBKXN4 12.8 26.4##person proceeded to put shoes on.\nBKXN4 0.7 9.2##a person is in a garage working on a laptop.\n2WH4F 21.6 31.0##the person starts undressing.\n2WH4F 25.2 31.0##person puts the clothes on a chair in the bathroom.\n2WH4F 18.3 25.8##person open a door under the sink.\n40TYU 9.7 14.6##person throws the box.\n40TYU 9.7 14.6##person throws the box onto the floor.\nO2294 4.7 18.9##the person undressed.\nO2294 22.6 32.0##person opened a bag.\nO2294 22.6 32.0##person opening a bag in a garage.\nO2294 16.6 29.7##person watching television.\nO2294 3.3 12.5##person walked through the doorway into another room.\nO2294 16.6 29.7##person watches television.\n8MLCU 4.4 10.2##person puts away a box of cereal.\n8MLCU 4.4 10.2##person they put a cereal box into the pantry.\nA7BUX 0.0 15.2##person is sitting on teh kitchen table eating some food.\nA7BUX 0.0 15.7##person eating a sandwich.\nMDOSW 0.0 12.0##person eating on a small sofa.\nMDOSW 0.0 12.0##a person is eating out of a bag.\nGKSL2 9.2 17.6##person drinking a cup of milk.\nGKSL2 24.4 39.0##person talk on a phone.\nGKSL2 24.4 39.0##person talking on the phone.\nGKSL2 6.1 13.2##a person is in their living room eating a cookie.\nGKSL2 6.1 13.2##the person sits in a chair eating a snack.\nGKSL2 6.1 13.2##person eating food.\n5I54H 15.9 21.2##person start sneezing into it.\n5I54H 6.3 12.9##person puts their watch on a table.\nO8VYU 27.5 33.6##person turns off the light.\nMZJ9D 0.0 7.4##that person opens a laptop.\nMZJ9D 0.5 12.8##person awhile they partially close the laptop.\nMZJ9D 0.0 9.9##there is a person sitting on a couch.\nMZJ9D 0.5 12.8##the person closes their laptop.\n4GCPM 3.0 11.8##person takes food from the refrigerator.\nZL61Y 0.8 6.9##a person the puts the homework on the table.\n1C6P3 0.7 8.6##an older person who is eating a sandwich watches him.\n23Y3I 3.4 14.3##person putting a towel over a door.\n23Y3I 12.4 25.5##person they open a door.\n8Z02S 0.0 10.5##a person is reading a book.\n8Z02S 14.0 23.7##the person opens the door to take out the clothes.\n7VHXG 2.2 15.5##a person is cooking something on the stove.\nFU5NY 3.5 12.1##person throw the box on the floor.\nFU5NY 3.5 12.1##person throws a box onto the floor.\nXQWLY 7.3 12.1##person is putting it on a shelf.\nXQWLY 7.3 12.1##a person is putting a book on a chair.\nXQWLY 7.3 12.1##person puts the other book up.\nQJXNG 12.4 17.5##person puts it into a bag.\nQJXNG 10.4 17.2##person put their phone in it.\nQJXNG 0.0 11.6##a person sits on their bed.\nQJXNG 0.0 12.5##person plays a game on their phone.\n3TK88 8.1 15.3##person turns on the light.\n3TK88 8.1 15.3##person turns on a light.\n3TK88 37.5 45.4##a person opens the door.\nZGTP8 2.9 10.0##person begin sneezing.\nZGTP8 0.0 4.8##a person sitting in a stairwell opens a box.\nVVCK0 6.4 13.7##a person is eating beside the stove.\nK34BE 14.8 18.0##person holding a broom.\nU1LFT 16.0 23.2##person puts it in a box.\nU1LFT 16.0 23.2##person puts it in the box.\n70SEI 0.0 14.8##a person is sitting at the table drinking soda.\nJCWVV 3.0 13.4##person sits on a couch.\nJCWVV 0.0 9.7##person puts the book on the table.\nJCWVV 0.0 9.5##a person walks into a room holding a book.\nW98IU 0.0 13.4##person looking out a window.\nFJRGJ 4.9 10.5##in a rush a person quickly opens the pantry door.\nFJRGJ 7.8 16.9##person put them inside the pantry on the shelf.\n1NVWD 9.7 15.7##person puts the phone in a purse.\n1NVWD 9.4 14.8##person put the towel on a table.\n1NVWD 13.3 22.5##a person is running with the phone in the bag.\nKVGRN 0.0 5.2##person looks out the window.\nQ0BNP 14.9 26.2##person starts to get undressed.\nQ0BNP 23.8 32.0##person drinks from a glass.\nEMV0A 10.0 18.7##person sits in a chair.\nEMV0A 0.0 7.9##person they cook.\nEMV0A 0.0 5.5##a person is sneezing.\nEMV0A 0.0 5.5##a person is sneezing by the stove.\nRJQL6 6.9 12.5##the person takes a towel off the shelf.\nOI3BC 11.4 19.8##person close the door of a cabinet.\n4VCHD 7.3 14.2##the person is eating.\n4VCHD 7.7 15.1##person eating a sandwich.\n4VCHD 0.0 3.2##a person opens the door to the recreation room.\n4VCHD 5.8 11.3##the person sits in a chair.\nD9EDE 0.0 7.4##a person is holding a bag of groceries.\nNMTRI 17.7 22.5##the person eats a cookie.\nNMTRI 22.0 31.4##person takes a drink from a glass of water.\nNMTRI 22.0 31.4##the person drinks from a glass.\nNMTRI 17.7 22.5##person eats it.\nNMTRI 0.0 5.2##a person awakens in bed.\nNMTRI 17.7 22.5##person eat something.\n6OROW 13.0 21.3##person sitting in a chair writing in a book.\n6OROW 13.0 21.3##a person is sitting on a chair opening a book.\n6OROW 18.8 24.1##person they take a glass of something.\n6OROW 18.8 33.0##person drinking coffee out of glass.\n6YGBD 0.0 3.2##person drinking a glass of water with the other hand.\n6YGBD 0.0 10.4##a person is holding a sandwich in one hand.\n6YGBD 0.0 3.2##person drinking out of glass.\n6YGBD 0.0 10.4##person they are holding a sandwich in their hand.\nBSDSA 24.0 29.0##person sits in a chair.\n6MJGP 0.0 4.2##person opening a laptop.\n5MRPU 27.0 34.4##person take a picture of themselves.\nU43FI 13.6 19.0##person takes the glass from the table.\n3X6SI 9.7 16.0##person sits on a chair next to a light.\n6XT4W 13.1 24.9##the person looks at a picture nearby.\nWJOR3 0.0 8.1##person sitting down watching a laptop sitting on the desk.\nJVXMI 0.1 4.7##a person takes out their phone.\nJVXMI 9.7 19.0##person takes a picture.\nJVXMI 0.1 4.7##person in bedroom takes out phone.\nRO3A2 0.0 5.0##a person runs into the kitchen.\nRO3A2 1.5 12.5##person begins washing dishes in the sink.\n65IQ0 4.6 20.9##person throwing things on the floor.\nJ4QIT 0.0 4.0##person they open the book.\n8EYHC 10.0 22.4##person begin sneezing.\n8EYHC 10.0 22.4##a person is sneezing.\nNC75G 3.7 10.1##a person takes a towel from the shelf.\nXDP02 7.3 13.7##awakening another person with a pillow.\nW1SRN 14.0 19.7##person throws it on the floor.\nW1SRN 14.0 19.7##person throws a blanket on the floor.\nW1SRN 20.5 33.0##person begin snuggling with the blanket.\nW1SRN 6.4 12.2##person opens the cabinet.\nW1SRN 14.0 19.7##the person throws the blanket on the floor.\nW1SRN 1.1 6.9##a person turns on a light in the hallway.\nW1SRN 20.5 33.0##person begins snuggling the blanket.\n64SL1 8.9 13.7##person laughing grab a blanket.\n3ONCH 17.5 22.2##person puts them in a box.\n3ONCH 17.5 22.2##person they are seen putting their shoes into a box.\nIJT65 9.0 16.6##person sneezing on food in the laundry room.\nZP53M 5.4 19.4##person puts a boo on table.\n1ZAN8 23.0 32.0##person close the door.\n1ZAN8 23.0 32.0##person closed a door.\n1ZAN8 23.0 32.0##person left the room closing the door.\nXE4FF 8.5 14.8##person puts the shoes they were holding on a shelf.\nFP7N3 5.1 10.4##person closes the door.\nFP7N3 20.9 27.8##person put the cup on the counter.\nFP7N3 10.6 22.5##person pours some water into the cup.\nFP7N3 1.6 10.5##person opens the door of a cabinet.\n78LXZ 14.2 17.0##one person takes a stack of clothes.\nTCQ97 7.0 13.8##a second person takes clothes off a chair.\nTCQ97 10.5 19.7##another person puts clothes into a closet.\nTCQ97 5.8 14.4##person sits on a couch.\nTCQ97 1.9 7.4##a person throws a pillow.\nTCQ97 5.8 14.4##person sits on a sofa.\nXXU6H 0.1 6.7##person holding a book.\nXXU6H 0.0 6.2##a person opens a doorway to get into the house.\nVN8SW 16.9 33.0##person they put on some shoes.\nVN8SW 16.9 33.0##person putting on blue tennis shoes.\nCO4AU 0.0 3.9##the person is holding a cup.\nSMS5G 20.8 27.1##person throwing clothes under the doorway in the entryway.\nM4FW0 0.0 5.5##the person walks to the desk holding a bag.\nM4FW0 0.0 5.5##person holding a bag of groceries.\n3ZC4Y 15.1 21.7##that same person opens the refrigerator door.\n3ZC4Y 15.1 21.7##person open the refrigerator.\nMOWLI 2.9 11.3##person opening a door they go in the door.\nXXX1O 0.0 14.7##a person sits at a table.\nXXX1O 22.2 31.0##person sitting on the sofa.\nXXX1O 0.0 5.8##person they take some food out of a bag.\nXXX1O 3.0 13.1##person eat it.\nXXX1O 13.9 20.0##person pouring a drink into a glass.\nXXX1O 22.2 31.0##person sits on the couch using his laptop.\nXXX1O 13.9 20.0##person pour some water into a glass.\nXXX1O 3.0 13.1##a person is eating out of a bag.\nXXX1O 11.0 15.7##person stand up.\n38T9C 7.2 13.8##there is a person eating a sandwich.\n38T9C 8.8 14.2##that same person puts the sandwich on a chair.\n38T9C 7.2 13.8##the person eats the sandwich.\nSCCZG 17.3 31.9##person they start watching themselves in the mirror.\nYBVUE 0.0 10.9##a person is undressing.\nYBVUE 17.2 31.0##person putting their clothes on the table.\nLD8PU 1.0 7.9##a person runs through the kitchen doorway.\nJVJZX 12.9 18.4##the person closes the laptop.\nIGQJP 4.0 17.9##person sits in a chair.\n7GPSY 24.2 32.7##person begins sneezing.\n2E8GU 0.0 7.2##person holding a broom by the desk.\n9PXC0 11.2 19.1##person they open up the box.\n0GYRH 22.6 29.4##person holding a bag of groceries.\nJQ2SN 1.3 13.1##a person is sitting on a bed eating a sandwich.\nJQ2SN 13.4 19.5##person stand up.\nJQ2SN 1.3 13.1##person eating a sandwich.\nJQ2SN 11.3 17.2##person they put the sandwich down.\nE7TLO 24.9 32.0##the person inside turns around a takes a picture.\nE7TLO 24.9 32.0##person takes a picture.\nX5YL3 0.0 2.8##a person holding a bag opens the refrigerator.\nX5YL3 0.0 2.8##a person holding a bag throws food into a refrigerator.\nX5YL3 0.0 2.7##a person with bags in their hands opens the refrigerator.\nKW4Y1 0.0 11.1##a person is undressing.\n1WI77 0.9 9.8##person opens a door.\n1WI77 0.9 9.8##the person opens a door.\nOHS4T 16.2 31.0##person sits on a chair.\nOHS4T 16.2 31.0##person sits down in a chair.\nOHS4T 0.4 7.2##person closes the door.\nOHS4T 0.4 7.2##person closes a door.\nOHS4T 0.0 4.7##a person runs into a bathroom.\nOHS4T 0.0 4.7##a person runs into the bathroom.\nZ1ZUI 5.5 12.0##person they stand up to grab a blanket.\n7WIRG 4.1 12.0##a person takes a box.\nZ6I0R 0.0 9.0##a person walks through a doorwaywhile using their phone.\nZ6I0R 7.4 20.6##person the cup was put down.\nZ6I0R 8.8 16.7##the person takes a drink from a glass of water.\nZ6I0R 0.0 10.5##person playing with their phone.\n3SNSC 22.2 29.5##person take medicine from a pill bottle.\n3SNSC 14.8 21.9##the person puts the book down.\nIEXTB 3.4 13.0##person laughing at a picture hanging on the wall.\nD09K3 22.0 30.0##person they begin opening a door.\nNBIR0 1.5 14.4##one person undresses.\nNBIR0 15.9 23.0##person which they close the door.\nF9YMU 0.0 9.1##a person closes a door in a room.\nF9YMU 0.0 9.1##person they close the door.\nF9YMU 0.0 9.1##a person is closing the door.\nFXRMG 0.0 5.8##a person takes a book from their desk.\nFXRMG 22.9 28.1##person opens a door.\nFXRMG 23.6 29.3##person closes a door.\n7KAVM 9.1 13.7##person drinking from a bottle.\nLOH86 0.0 12.6##person puts the camera down.\nLOH86 0.0 11.3##person holding a camera.\nLOH86 0.0 10.8##the person plays with the camera.\nLOH86 0.0 4.6##a person walks from a doorway to a table.\nLOH86 5.7 11.9##i person is putting their camera on a table.\nLOH86 0.0 4.6##a person is walking in through the doorway.\nLOH86 0.0 10.8##person playing with a camera in their hand.\nLFPLP 9.8 16.2##the person opens the refrigerator door.\nLFPLP 0.0 7.1##a person is cooking on the stove.\nLFPLP 9.8 16.2##person opening the refrigerator door.\nLFPLP 0.0 7.1##the person is cooking.\nGXZHG 8.1 14.7##person run to the couch.\nGXZHG 8.1 14.7##person starts running to the sofa.\n1DL0E 19.7 32.0##person they pull out a camera to take a picture.\n1DL0E 19.7 32.0##person takes a picture.\n7POUA 21.6 32.0##person begins to fix their hair in a mirror.\nLJS9V 0.0 5.8##a person is sitting in a hallway smiling.\nLJS9V 0.0 5.8##person smiling at the television.\n8NGDR 32.0 44.0##person starts watching a television program.\n8NGDR 11.6 20.1##a person awakening from a nap on a sofa.\n29B3I 0.0 16.1##person holding a broom.\n29B3I 0.0 16.1##the person is holding a broom.\n29B3I 0.0 16.1##a person is holding a broom.\n3CGO0 11.1 16.2##person tidying some clothes in a box.\n670G1 0.0 5.3##one person is opening the cabinet door.\n670G1 0.0 6.7##a person opens a closet.\n1ERM9 16.2 25.6##the person takes a picture of themselves.\n1ERM9 0.0 6.7##a person is in the bathroom washing their hands.\n1ERM9 0.0 6.7##a person is washing their hands in a sink.\n1ERM9 10.0 18.5##person take a camera from a box.\n1ERM9 16.2 25.6##person take a picture of them self.\nDUEEE 12.0 25.9##person puts the phone back into their pocket.\nPCXYE 0.2 14.3##a person drinks from a cup.\nPCXYE 0.2 14.3##person drinking from a white cup.\nD4RH8 21.6 30.0##person eating a sandwich.\nD4RH8 21.6 30.0##person eating a sandwich,.\nXPWYQ 16.0 22.9##person they put the books on a coffee table.\nWH1S5 8.4 25.2##a person is walking into the kitchen eating a sandwich.\n0HD9F 10.1 18.3##person close some cabinet doors.\nGL7ER 20.5 31.0##person begins eating.\nGL7ER 1.6 8.4##person puts their food on a table.\nGL7ER 20.5 31.0##person begins to eat them.\n83D9H 16.5 22.7##person walks to a partially open door.\n83D9H 16.5 22.7##person open the door.\nPKRP5 3.0 11.0##person sits down in a chair.\n1UXVA 8.3 16.7##person is sitting down eating food.\n1UXVA 15.0 22.6##the person drinks a glass of water.\nUYFET 20.5 25.0##person turning the light off.\nUYFET 20.5 25.0##person turned off the light.\nPKEZI 28.5 40.0##person stand up.\nPKEZI 29.1 40.0##person begins undressing.\nI7DGO 20.2 32.0##person takes a shot of medicine.\nX9Q1A 12.0 18.5##a person puts some clothes into a box.\nX9Q1A 12.0 18.5##person they put the clothing in a box.\n5C6IS 7.4 15.0##person they take clothes from the bag.\n5C6IS 8.6 17.4##person walks away holding the clothes.\nSMPEB 0.0 2.9##a person closes the door.\nSMPEB 0.0 2.9##a person closes a door.\nSMPEB 0.0 2.9##this person closes a door.\n8HHI3 21.9 28.0##a person laughs as they open a box.\n8HHI3 0.0 6.0##a person opens a box.\n8HHI3 1.8 7.9##the person takes some shoes from the box.\nDFD3T 0.0 9.8##a person is throwing some clothes on the floor.\nUU5XI 27.2 31.0##person walks through the doorway.\nTDD74 12.3 20.5##person begins to dress more warmly in the doorway.\nTDD74 12.3 20.5##person finish dressing with some of the clothes in it.\nG5G8K 0.0 10.7##a person is holding a pillow.\nG5G8K 11.1 22.1##person begin smiling.\n8ASRQ 12.0 17.0##person throwing a book.\nT342T 26.5 31.2##person closes the door.\nT342T 26.5 31.2##person closing the door of a bathroom.\nT342T 4.2 11.6##person takes some medicine.\nI8QJN 0.0 11.3##a person laying on the floor stands.\nI8QJN 6.8 12.7##a person awakens on the floor of the kitchen.\nI8QJN 21.5 30.2##person serve themselves a glass of water to drink.\nI8QJN 6.8 12.7##person they awaken.\nQRHJJ 0.0 5.5##a person takes a book from a cabinet.\nOHVMG 0.0 4.6##one person wearing shoes is smiling.\n2ZFNL 2.7 7.0##person throwing them on the floor.\n0F453 0.3 7.9##the person opens a refrigerator.\n0F453 0.3 7.9##person is opening refrigerator.\nNZ7VY 22.8 29.7##person sit on the sofa.\nNZ7VY 16.2 25.6##the person puts the thermos into a shelf.\nNZ7VY 3.4 14.3##a person pours a cup of coffee from a thermos.\nNZ7VY 16.2 25.6##person they put the coffee on the shelf.\nNZ7VY 3.4 14.3##the person pours a cup of coffee into a glass.\nEZ3CG 11.2 31.4##person proceeds to work/play on the laptop.\nEZ3CG 11.2 31.4##person playing on the laptop.\nEZ3CG 10.0 31.7##the person sits on the floor.\nINKPE 6.7 12.6##person take a clean glass out of the dishwasher.\nINKPE 26.4 31.5##person puts the cup on the table.\nINKPE 1.5 8.6##person goes to the stove to cook.\nINKPE 26.4 31.5##person put the clean glass on the table.\nE7FGK 13.9 23.0##person takes some medicine.\nS72J9 15.5 26.2##a person takes a look out a window.\nS72J9 3.1 11.5##person closing the dryer door.\nS72J9 15.5 26.2##person look out the window.\nS72J9 2.5 12.9##a person drinks a glass of water.\nS72J9 3.1 11.5##person they close a cabinet door.\nS72J9 3.1 11.5##person closing a door.\nS72J9 15.5 26.2##the person looks out the window.\nX8Y9X 15.1 29.0##person drink from a cup of coffee.\nIUGG8 1.3 8.5##a person pours some water into a glass.\nTAGS2 6.9 16.3##a person is laughing on the phone.\nTAGS2 17.0 22.7##person closing a door.\nPCF14 7.5 12.6##person they take their shoes off.\nPCF14 7.5 12.6##person takes off their shoes.\nMOQIU 4.9 18.9##a person is laughing as the watch tv.\nMOQIU 4.9 18.9##person laughing at a video on a laptop.\nMOQIU 16.8 30.0##person leaves talking on the phone.\nTLDA3 1.5 8.6##a person smiles as they put away groceries.\nR4BTI 1.7 15.0##a person is in a entryway sneezing by the doorway.\nR4BTI 17.5 34.8##person start undressing.\nR4BTI 32.4 40.0##person put it into a bag on a table.\nR4BTI 0.0 5.5##a person walks into the doorway.\nR4BTI 32.4 40.0##person put their clothes in a bag.\nAST4H 13.9 25.8##person fixes their hair in a mirror.\nAST4H 8.0 21.9##person walks through a doorway.\n6KJGX 7.1 12.6##person throws it on the floor.\n6KJGX 6.2 12.8##a person throws a broom on the floor.\n43OGO 18.1 32.0##person another is putting shoes in a box.\n43OGO 18.1 32.0##another person is putting shoes in a bag.\nA52N5 1.1 9.1##a person in a garage is awakens on a sofa.\nA52N5 13.1 20.6##the person opens a book.\n06X2V 0.1 10.6##a person smiles at himself in a mirror.\n06X2V 15.2 22.6##person takes a towel out of a box.\nBDFDE 17.3 28.9##person takes some medicine.\nBDFDE 17.3 28.9##person take some medicine.\nJOPGB 2.4 8.5##person puts shoes on.\nJOPGB 0.0 4.4##person gets from the bed to sit in a chair.\n3EIRZ 0.2 10.2##person eating a sandwich.\n3EIRZ 0.2 10.2##person eating foot.\n5IW8A 18.9 33.0##person drinks from a coffee cup.\nBZD0Q 3.7 10.2##person walks out through the same doorway.\nBZD0Q 3.7 10.2##person walking through a doorway.\nXFT37 8.9 16.8##a person is opening the door.\nXFT37 8.9 16.8##person opened the front door.\n35P3Q 25.8 30.7##person takes a load of clothes.\n35P3Q 5.0 11.7##a person is washing dishes in a sink.\nFPQRX 10.1 27.0##the person sits on the bed.\nFPQRX 0.0 11.1##one person awakens.\nFPQRX 29.5 46.7##person starts getting dressed.\nFPQRX 4.6 10.8##person throws a blanket towards the doorway.\nSU8PN 5.8 14.3##they throw a book back at the other person.\nSU8PN 0.0 6.0##person the people in the video were throwing a pillow.\nSU8PN 14.3 21.6##that person is smiling because they think it is funny.\n7EBTI 4.2 9.4##the person takes a bite of sandwich.\n7EBTI 25.5 32.0##person walks through the doorway.\n9RKTE 18.0 25.2##person opening a door.\n74DPG 5.7 15.8##the person sits at a chair next to the stove.\n61WIS 0.0 5.6##person they sit down on the sofa.\n61WIS 20.2 25.5##person stand up.\n61WIS 9.6 16.1##person also putting a pillow onto the ground.\n61WIS 0.0 5.6##a person with a laptop sits on a sofa.\n61WIS 10.1 16.1##person they take a pillow.\nTJPFT 0.0 4.3##person watching television.\nTJPFT 1.0 9.9##person holding cup sits down drinking wiping shirt.\nTJPFT 1.0 9.9##a person is drinking a cup of cocoa.\nXPQ0D 11.1 20.7##one person is running down the stairs grasping medicine.\nXPQ0D 11.1 20.7##a person runs down the stars.\n4713W 4.0 9.7##person while walking into through the doorway.\n4713W 3.3 8.5##person opens door.\n4713W 9.9 20.8##the person started sneezing.\nVGTX8 29.3 35.0##person closes the same window.\nE89O3 1.5 12.4##the person walks through a doorway.\nE89O3 8.2 16.5##person starts to get dressed.\nG87XG 1.6 6.7##a woman running in a kitchen.\nG87XG 7.3 12.5##person sits down in a chair.\nG87XG 7.3 12.5##person they sit in a chair.\nG87XG 1.6 6.7##a person runs into the laundry room.\nG87XG 1.6 6.7##the person runs into the kitchen holding a book.\nFMXZS 7.3 19.2##a person holding a bag of groceries in a kitchen.\nFMXZS 0.0 7.9##person opens a refrigerator door.\nFMXZS 26.2 32.0##person close the refrigerator.\nROEB7 4.0 10.9##person a phone runs to the end of a room.\nROEB7 4.0 10.9##a person runs into a recreation room holding a bag.\n2846J 0.0 6.5##a person walks through the doorway.\n2846J 0.0 9.7##a person enters the laundry room holding a box.\n2846J 0.0 9.7##person holding a box.\nCPG4Y 0.0 5.2##person holding a bag of groceries.\n7R4YS 2.2 10.1##person they put on a bag.\nEBMIO 0.0 5.0##a person puts a towel on the rack.\nDEJ35 25.1 28.0##person lying on the couch who sits up.\nDEJ35 0.6 8.9##a person awakens.\nDEJ35 10.4 22.7##person dresses by putting on a jacket.\n8N7NZ 5.4 11.7##person they stand up.\n8N7NZ 19.8 26.5##person put the blanket away into a cabinet.\nS29H6 3.4 11.1##person they stand up.\nS29H6 0.0 9.2##a person is lying on the floor reading a book.\nS29H6 12.5 24.3##person opens the door.\nS29H6 19.3 26.7##person walks to the doorway.\nS29H6 19.3 26.7##person walk through the doorway.\nS29H6 12.5 24.3##person open a door.\nB5NS3 0.0 8.6##the person is dressing themselves in front of a mirror.\nB5NS3 20.1 29.1##person turn off the light.\nB5NS3 0.0 8.6##a person finishes dressing their bathroom.\n3QXPC 2.1 8.3##person closes the door.\n3QXPC 0.6 7.0##person walk through the doorway.\n3QXPC 11.7 19.1##person they take a bag from the cabinet.\nC2QK3 0.0 4.6##a person is smiling.\nC2QK3 0.0 6.4##a person opens up a refrigerator.\nMOREL 0.0 4.4##a person opens the cabinet.\nMOREL 0.0 4.4##man opens a kitchen pantry door.\nNPM0Z 16.7 22.4##person puts down a book.\nKAKSU 5.2 10.3##person turns out the light.\nKAKSU 5.2 10.3##a person is turning on a light.\n8FP8X 11.5 17.0##person they put the glass down.\n8FP8X 3.8 13.1##a person is holding a towel.\nG7LU9 10.0 17.2##person closes door.\nG7LU9 5.0 13.6##person opens doorknob.\nG7LU9 5.0 13.6##person opens the door.\nDAIN7 25.9 32.3##person puts the phone down.\n9FBAP 2.0 7.4##person opening the refrigerator.\n9FBAP 4.5 9.7##person takes a bag out.\n6LUM5 8.4 14.4##one person sitting in a chair closes a laptop.\n6LUM5 4.2 15.1##person sits in the chair.\n4FGLC 17.8 31.0##another person laughs.\n4FGLC 17.8 31.0##laughing at the person on the chair.\nEY8S6 15.0 18.0##a person is sitting in a chair.\nPM2GT 5.0 9.9##a person puts a book on the table.\nAXS82 25.1 31.0##person opens the refrigerator to look in.\nAXS82 3.4 16.5##a person is laughing.\nAXS82 13.7 19.2##person they close the book.\nKY28J 13.7 21.1##another person is watching tv on their laptop.\nKY28J 8.4 15.2##person eating a sandwich.\nKY28J 8.4 15.2##a person is eating at their desk.\nPC0M6 8.6 14.0##a person opens a door.\nPC0M6 10.0 16.4##the person closes the door behind them.\n0N7OQ 20.1 33.4##person begins undressing.\n9IT59 0.0 10.1##a person holding a pillow walks through a hallway.\n9IT59 0.0 10.1##a person is holding a pillow.\n696GE 17.5 22.2##person throws a pillow.\nEWES1 24.5 33.0##person sitting down to eat a sandwich.\nEWES1 24.5 33.0##the person begins to eat a sandwich.\nH1J19 17.8 23.2##person they put down the food.\nH1J19 17.8 23.2##person put the food down on a nearby table.\nK7HQG 8.0 23.1##another person is putting a picture on the wall.\nOYNBC 17.4 22.2##person closes the fridge door.\nM1TZR 11.8 26.3##person eats a sandwich.\nM1TZR 24.0 31.2##person puts dishes in sink.\nM1TZR 27.5 36.2##person takes a towel out of a cabinet.\nM1TZR 27.5 36.2##person takes a towel from the shelf.\nM1TZR 11.8 26.3##person eating a sandwich.\nM1TZR 10.3 28.7##person begins eating.\nXEASG 20.7 26.1##person drink a cup of coffee.\nXEASG 20.7 26.1##person drinks from a glass.\nM52K2 39.4 45.6##person goes back by washing mashine puts clothes in bag.\nM52K2 1.7 23.4##person sits down on floor in laundry room.\nM52K2 7.3 16.6##person pours milk into cup.\n0YXN6 10.9 21.2##a person is smiling.\n0YXN6 17.6 27.9##another person is standing up sneezing.\nBT7FV 8.9 21.4##person reading through the book.\nBT7FV 8.9 21.4##person opens the book.\nBT7FV 17.3 26.2##the person closes the book.\nBT7FV 17.3 26.2##person closes the book.\nROOLO 5.6 12.7##a person is sneezing.\nNKCXF 9.8 15.3##the person puts down the pillow.\nCV5YJ 26.9 33.6##person takes a laptop from a shelf.\nIU8YI 1.6 7.5##person grabs a broom to begin tidying up.\nNHXI3 24.2 29.2##person walks into the room which has the light on.\nNHXI3 4.5 13.4##person takes a book from the table in the entryway.\nNHXI3 24.2 29.2##person turned on the light.\nNHXI3 24.2 29.2##person turns on the light.\nNHXI3 4.5 13.4##person takes out a book.\nNHXI3 21.6 27.6##person walks through another doorway.\nNHXI3 21.6 27.6##person walks toward a doorway.\n115MY 7.2 14.2##person turns on the light.\n115MY 8.3 14.3##person quickly awakens.\nMI0ZQ 0.0 4.4##a person puts a towel on the counter.\nMI0ZQ 15.1 25.8##person they take off their shoes once inside the bathroom.\nMI0ZQ 5.1 14.4##person start undressing.\nMI0ZQ 5.1 14.4##the person in the video is starting to undress.\nS7PLQ 20.6 33.0##person sits on a couch.\nS7PLQ 14.3 19.3##the person closes the refrigerator door.\nUZRQD 20.3 26.9##person they put the phone on a table.\nYTV2H 28.6 33.0##person turn off the light.\nYTV2H 10.8 17.5##the person puts the water onto the shelf.\nCZPU9 18.6 24.9##person takes the medicine.\nCZPU9 0.0 5.2##the person put a towel on the doorknob.\nCZPU9 25.5 30.4##person closes the cabinet door.\nCZPU9 0.0 5.2##a person is putting a towel on the doorknob.\nCZPU9 13.6 29.7##person opens a cabinet.\nCZPU9 6.0 13.7##person started undressing.\nCZPU9 18.6 24.9##person takes out a box of medicine.\nCZPU9 0.0 11.6##a person puts clothes on a doorknob.\nCZPU9 6.0 13.7##person he undresses.\n2RTH2 27.1 32.0##person turning off the light.\n2RTH2 27.1 32.0##person they turn off the light.\n2RTH2 11.6 17.0##the person puts the towel down.\n2D98B 4.8 9.9##person they start opening a cabinet.\nWETXR 9.3 13.9##person appears to be sneezing repeatedly.\nI8I5F 15.5 28.0##person starts to laugh happily.\nI8I5F 0.0 7.7##a person is holding a pillow.\nI8I5F 0.0 7.7##person holding a pillow.\n82YF1 20.9 25.9##person puts down a cup.\n82YF1 14.8 21.6##person drinks from cup.\nWBS4I 1.0 5.4##person turns on the light.\nWBS4I 1.0 5.4##person turns on a light.\nOEE36 32.3 40.2##the person puts the box on the floor.\nOEE36 21.1 29.1##a person is putting towels.\nUCT5X 8.7 15.4##person walk out through a doorway.\nG6GQP 4.1 15.1##laughing as the person stands in the doorway.\nSXMII 0.2 5.0##a person awakens on a bed.\nSXMII 23.6 28.6##person throws a blanket on the floor.\nAZ5JS 29.1 32.0##a person is holding a blanket in a doorway.\nAZ5JS 16.1 24.7##person opens a door.\nAZ5JS 23.7 32.0##person closes a door.\nDVPL2 13.3 20.8##person drinks from a cup of coffee.\nDVPL2 13.3 20.8##the person drinks from the cup.\n7FTBS 39.2 50.0##the person sits in a chair at the table.\n7FTBS 20.0 25.8##the person opens the refrigerator.\n7FTBS 39.2 50.0##person is sitting at table drinking coffee.\nWZY7C 0.0 4.4##a person runs through the door with a towel.\nWZY7C 0.0 4.4##a person runs into their study.\nS8X4A 1.3 8.3##a person in a bathroom starts sneezing.\n38TA9 0.0 4.8##a person opens a door.\n38TA9 0.0 4.8##while the person was opening the front doorknob.\n38TA9 0.0 4.8##person opens a closet door.\nHKLB1 5.3 18.2##a person is undressing in front of a mirror.\nHKLB1 5.3 18.2##person undresses in front of a mirror.\nZISOA 0.0 8.1##person holding a camera.\nRZLAZ 0.0 8.3##a person runs up the stairs.\nQ2U7O 2.2 8.2##a person takes a glass of water from a window.\nQ2U7O 6.9 15.6##person holding a glass of water.\nH6BT7 18.0 30.2##the person closes the box.\nH6BT7 18.0 30.2##person closes the box.\nH6BT7 33.1 54.0##person lays on the floor.\nH6BT7 0.0 28.9##a person walks through a doorway holding a box.\nH6BT7 0.0 6.1##the person opens the box.\nG2J63 14.4 22.7##person throwing towel on floor.\nMHI9B 8.0 23.8##a person pours coffee in a cup in a doorway.\nMHI9B 8.0 23.8##person pours coffee into a glass at the table.\nZQAMW 20.5 34.0##person sneezing into a glass in a living room.\nF1QR1 15.8 23.4##person opens a door walks out.\nKD3SK 16.8 23.4##person where they take a blanket from the shelf.\nKD3SK 16.8 23.4##person they take a blanket from a shelf.\n2Z8HO 0.0 12.8##person holding a pair of shoes.\n2Z8HO 7.3 15.7##person puts down a pair of shoes.\n5LAQN 0.0 9.1##a person is drinking a cup of coffee.\nQQD2X 0.0 8.7##a person is running into the bathroom.\nQQD2X 7.5 17.2##person opens up the window.\nQQD2X 4.6 10.9##person turns on the light.\nQQD2X 4.6 10.9##person turning on a light.\nQQD2X 0.0 8.7##the person runs into the bathroom.\nXX7ZJ 12.0 17.0##person starts smiling.\n5LFGO 0.0 15.6##a person fixes a vacuum.\n5LFGO 17.1 24.4##person they finish dressing by putting on a cap.\nOIXA4 15.0 21.3##another person is putting a glass on the table.\nG8E71 0.0 7.5##a person is undressing in a bathroom.\nG8E71 0.0 7.5##a person is undressing.\n1SMZZ 18.2 25.0##person takes a pillow from the bed.\nHL5OP 14.6 20.4##a person is laughing.\nHL5OP 14.4 21.7##person throwing food in the trash bin.\n4F76V 3.1 10.6##a person cooking.\n4F76V 3.1 10.6##a person is cooking.\n4F76V 21.9 27.6##person closes a door.\nEW6RX 2.5 7.3##person eat a sandwich.\nEW6RX 2.5 7.3##person eating a sandwich.\nLGCTV 14.0 20.5##person they stand up.\nLGCTV 17.0 33.0##person begins tidying some clothes.\nHEV65 6.6 12.0##person they open the bag.\nHEV65 16.8 23.7##the person opens a cabinet.\nXNXW6 10.5 18.0##person laughing with a camera.\nRJ27X 17.2 22.3##person puts the food down.\nRJ27X 0.0 6.0##one person is cooking.\nRJ27X 10.8 21.9##another person holding food walks to a table.\nLVTRJ 33.8 42.4##person takes a drink out of the cup.\nLVTRJ 0.0 9.4##the person puts a pair of shoes in the sink.\nLVTRJ 30.3 37.8##person starts to eat the sandwich.\nAEA8P 0.0 4.0##person eats a sandwich.\nAEA8P 0.0 4.0##one person is in the basement eating a sandwich.\nAEA8P 0.0 4.0##a person is sitting at at table eating a sandwich.\nQ9Q9L 17.0 32.0##person entering house they take a drink from glass.\nQ9Q9L 0.0 5.9##a person is sitting on a chair in their garage.\nIYNUU 23.5 29.8##person takes a picture of themselves.\nIYNUU 18.1 23.9##the person takes their phone from their pocket.\nIYNUU 23.5 29.8##person use the camera to take a picture of themself.\n57WV7 1.7 7.4##a person opens a door.\n57WV7 9.1 14.9##person sits on the chair.\n57WV7 9.1 14.9##a person is sitting in a chair in the doorway.\nDV31C 20.1 29.1##person takes the glass off the table.\n6ZKZS 0.0 5.5##person pouring water into a glass.\n6ZKZS 19.5 26.0##person sneezing into a blanket in a bedroom.\n6ZKZS 1.4 8.1##person they drink the water out of the glass.\n6ZKZS 10.5 20.4##person take some medicine.\nUJMNV 0.0 6.1##the person is sneezing in a towel.\nMC6J7 19.3 32.6##person take out a vacuum.\nMC6J7 0.0 6.1##a person opens the door of a wardrobe.\nMC6J7 11.5 17.7##person they throw the clothes in the closet.\nMC6J7 21.3 33.1##person walk away smiling.\nMC6J7 8.5 17.2##person puts the clothes in the wardrobe.\nIC89C 2.4 15.6##a person is cooking on a stove in the kitchen.\nIC89C 22.6 46.7##person starts fixing a vacuum.\nIC89C 2.4 15.6##the person is cooking.\n5MDL5 0.0 5.8##a person puts a broom into a closet.\n5MDL5 0.0 5.8##a person puts a broom down inside their closet.\nG1A2O 18.8 29.7##person talking on the phone.\nG1A2O 3.9 9.7##a person is sitting eating something.\nG1A2O 3.9 9.7##person eating something.\nG1A2O 3.9 9.7##person eating in front of a television.\n1ZB73 0.0 8.9##person laughing at something.\nNWGVT 1.2 13.8##person pouring it into a cup to make some coffee.\nS38BY 14.8 19.7##person smiling in the entryway mirror.\n1YH1Y 3.5 7.7##person takes some towels.\n1YH1Y 0.0 6.0##person begin dressing.\n1YH1Y 0.0 3.3##a person opens a bag.\n1YH1Y 6.3 10.9##person they take some clothes.\nTANB8 9.7 15.0##a person puts something on a shelf.\nTANB8 14.6 22.5##a person is sneezing.\nGY70Y 9.6 23.0##person drinking from a cup.\nSVO89 14.7 21.2##person takes a book off of a shelf.\nSVO89 19.0 25.6##person closes the door behind him.\nD7D89 0.0 14.5##a person is looking at a picture on a cabinet.\nD7D89 0.0 14.5##a person looks at a picture on a cabinet.\n7OPHI 0.0 7.3##a person opening a laptop.\n7OPHI 0.0 7.3##a person opens their laptop.\n7OPHI 25.0 34.0##the person closes their laptop.\nBPDTY 11.1 18.7##the person opens the bag.\nCCTIO 5.8 12.9##the person takes off their shoes.\nCCTIO 4.1 8.9##person sits on sofa.\nFPNT1 6.6 11.2##the person throws the book on the floor.\nDGMDT 20.8 26.8##person put the bag down.\nDGMDT 20.8 26.8##person puts bag back on table.\nAZZ3W 24.1 28.9##person put on their shoes.\nAZZ3W 0.0 7.7##a person throws some dirty clothes from a chair.\nAZZ3W 24.1 28.9##person finally puts on shoes.\nAZZ3W 8.5 13.7##the person begins dressing.\nAZZ3W 8.5 13.7##person they get dressed.\nAZZ3W 22.0 26.9##person sit in the chair.\n5ZHOX 12.4 18.3##sneezing as the person does so.\nX0CVU 0.0 12.0##person looks out the window.\nXDFPV 0.0 8.7##person two people sit on chairs in a living room.\nXDFPV 4.7 18.5##person takes a phone.\n79WPY 9.8 22.2##a person is watching television.\n79WPY 23.2 28.8##a person is opening a refrigerator.\n79WPY 27.8 33.0##another person closes the door to a refrigerator.\n79WPY 9.8 22.2##person watches television.\n0K0LP 14.4 21.7##person opened a bag of chips.\n0K0LP 8.1 13.9##person watching television instead.\nX8I9J 0.0 9.1##a laughing person comes in through the door.\nX8I9J 0.0 9.1##a person walks through a door laughing.\nX8I9J 7.4 22.7##person they begin undressing starting with their shoes.\nB9F4P 11.0 17.3##another person is closing the door to the bedroom.\nB9F4P 11.0 17.3##another person opens a closet door.\nOW9LO 19.7 30.0##person eat food.\nOW9LO 19.7 30.0##person eating food remains.\nOW9LO 19.7 30.0##person eat some snack food.\nLC1NU 0.0 19.0##a person is lying on the floor eating a sandwich.\nLC1NU 18.7 24.4##person walks down the hallway to turn off the light.\nK0Y6X 2.2 6.5##the person pauses to turn on a light.\nK0Y6X 2.2 6.5##the person turns on the light.\nK0Y6X 14.9 20.7##person opens their laptop to work on it.\nUKMK6 42.2 54.0##person puts the pillow in a cabinet.\nUKMK6 17.9 42.1##the person snuggled with the pillow for a few seconds.\nUDGP2 25.8 32.0##person begins cooking it.\nUDGP2 25.8 32.0##person begins cooking on a stove.\nUDGP2 0.0 6.8##a person opens a refrigerator door.\nNCBNH 28.2 34.4##the person puts the glass of water on the table.\nNCBNH 36.0 41.0##person runs back to the camera.\nNCBNH 27.5 34.0##person takes a towel.\nUQVO7 2.7 16.7##person they are putting a pillow into a bag.\n3S70A 14.4 24.6##person putting them on a table.\n3S70A 4.3 13.9##a person is awakening near a door.\n2EPFZ 16.1 31.3##person begins to put on their shoes.\n2EPFZ 16.1 31.3##person sits in a chair to put shoes on.\n0XP8L 21.4 37.0##person they go sit at a table.\n0XP8L 19.7 37.0##person work on a laptop.\n0XP8L 6.2 15.0##person takes out food.\n0XP8L 6.8 21.0##a person is putting food into a pan.\n0XP8L 13.0 20.4##person cooking it.\nV7LTE 0.8 11.3##a person is dressing on the stairs.\nV7LTE 12.9 23.0##the person opens a door.\n40FKN 0.0 12.0##a person drinks a cup of coffee.\n8W0XJ 0.0 9.5##person closes a window.\n8W0XJ 0.0 9.5##a person closes the garage window.\nFIBCE 23.2 28.4##person turn off the light.\nFIBCE 23.2 28.4##person they turn off the light.\nXRI58 6.2 18.9##person eating some food.\nXRI58 6.2 18.9##person eats food from a bag.\nXRI58 15.4 24.6##person runs across the room.\nXRI58 15.4 24.6##a person holding a paper runs across a room.\nXRI58 1.8 12.5##sits in a chair .the person takes a bottle.\nXRI58 15.4 24.6##a person runs.\n64IAU 17.6 23.8##another person is opening the door.\n64IAU 24.0 32.0##person starts laughing.\n64IAU 0.5 5.1##person looking out into an open window.\n64IAU 0.5 5.1##person looks out the window.\n33I4D 38.6 47.6##stirs it .the person takes a drink of the cup.\n33I4D 38.6 47.6##person take a drink from the cup.\n33I4D 25.8 32.6##person they put the cup on the table.\n2YJUQ 5.1 23.5##person sits in a chair.\n2YJUQ 7.2 15.7##person pours a glass of water.\n2YJUQ 23.6 31.6##person looks through a window.\n2YJUQ 4.3 9.7##a person sits down at a dining room table.\n2YJUQ 23.6 31.6##person looks out the window.\n2YJUQ 7.2 15.7##the person is pouring water into a glass.\nYO9NC 22.5 31.0##person picks up a book to read.\nYO9NC 7.6 19.9##person put their clothes in the closet.\nYO9NC 1.6 11.6##person they start undressing by taking their jacket off.\nYO9NC 1.6 11.6##person begins to undress.\nYO9NC 22.5 31.0##person start watching the book.\nJJGEU 4.2 17.6##person eats food from a plate.\nK14NJ 13.9 25.7##person sits on the floor.\nK14NJ 13.9 25.7##person they sit on the floor.\nEFSIN 0.0 10.9##a person is washing dishes.\nYIV35 20.2 27.5##person takes a bite of the sandwich.\nYIV35 0.6 7.3##person opens a book.\nYIV35 17.0 23.2##the person puts the book down sneezes.\nYIV35 19.6 25.6##person starts sneezing.\nX0VAO 20.2 32.0##person holding a camera.\nDUAOJ 6.9 16.6##person sit down in a chair.\nDUAOJ 1.6 13.7##a sneezing person walks into a kitchen eating a cookie.\nDUAOJ 0.0 9.5##person turn on a light.\nDUAOJ 6.9 16.6##person sits on a chair.\nDUAOJ 1.6 13.7##a man sneezing.\nDUAOJ 0.0 9.5##person turns on a light.\nDUAOJ 0.0 9.5##person turning a light on.\nDUAOJ 1.6 13.7##a person is sneezing.\nDUAOJ 7.8 18.5##person eat something.\nUUPEV 0.0 9.7##person holding a bag of groceries.\nUUPEV 0.0 4.6##a person is sneezing.\n8SAEO 1.2 9.5##a person undressed in a bathroom.\nQXT9W 16.6 24.2##opens it .the person lays the book on a stand.\nQXT9W 17.9 38.9##person reads a book.\nQXT9W 43.1 62.7##person look out the window.\nQXT9W 12.7 40.9##a person sits down on a chair.\nWCLGY 14.4 22.2##person throwing clothes on the bed.\nWCLGY 14.4 22.2##a person is throwing clothes on a bed.\nZ9B4Y 10.9 16.6##person they put their book on a table.\nNY5LX 19.8 36.0##person putting clothes in a bag in a wardrobe.\nK0Z9V 0.0 5.5##a person is cooking in the kitchen.\nK0Z9V 0.0 5.5##a person is cooking on the stove.\nK0Z9V 0.0 5.5##this person is cooking in the kitchen.\nK0Z9V 8.1 15.8##person starts sneezing.\nK0Z9V 8.1 15.8##the person starts sneezing repeatedly from the pepper.\nLK3LF 13.9 25.4##person put a pillow on to the floor.\n6EHR7 21.0 36.0##person puts on shoes.\n6EHR7 21.0 36.0##person puts on some shoes.\n3W6TL 12.1 19.9##person closes the door.\n3W6TL 0.0 8.0##person takes a pillow off of the bed.\n3W6TL 12.1 19.9##person closing the door.\n3W6TL 0.0 8.0##a person takes a pillow to the wardrobe.\nDUHWU 0.0 8.2##person someone runs up to their door.\nDUHWU 9.3 16.9##a person is running to open the door.\n82X3Z 0.0 13.1##a person is watching a laptop.\n82X3Z 17.3 24.7##person eating some food.\n82X3Z 17.3 24.7##person they eat some food.\nTD3HC 0.0 5.9##a person throws a blanket on their bed.\nTD3HC 0.0 5.9##a person is throwing a blanket on a bed.\nNSF4N 24.2 37.0##person cook it on the stove.\nNSF4N 2.1 9.0##a person opens the refrigerator.\nNSF4N 24.2 37.0##the person begins cooking the items on the stove.\nRGIZ7 0.0 13.1##a person works on a laptop.\nRGIZ7 9.2 16.3##a person closes a laptop.\nRGIZ7 15.4 25.0##person looking out the window.\nRGIZ7 15.4 25.0##person they look out a window.\n583F7 0.0 10.3##person takes a bag of chips out.\n583F7 10.1 21.9##person opened the bag.\nUS6P9 1.5 7.7##a person turns on a light.\nUS6P9 1.5 7.7##person turns on the light.\nUS6P9 17.0 22.8##person he puts the picture down.\nQIYU4 1.6 6.4##person turning off the light.\nQIYU4 20.0 26.0##a person opens the door to a closet.\nQIYU4 1.6 6.4##person they turn off the light.\nIBNKL 0.0 7.5##there is a person cookingon the stove.\nIBNKL 6.8 13.5##person puts some dishes in the sink.\nIBNKL 4.1 10.7##that person opens a cabinet.\nIBNKL 0.0 7.5##person continue cooking.\nIBNKL 0.0 7.5##a person is cooking at a stove.\n5OIQ7 0.0 6.8##a person awakens in a bedroom holding a phone.\n7BQ1O 21.1 31.0##person they both laugh.\n7BQ1O 2.2 6.6##person turns on the light.\n7BQ1O 2.2 6.6##person turn on the lights.\n7BQ1O 5.3 12.5##person they open the garage door.\nY4MW3 13.6 19.8##person a phone is taken out.\nY4MW3 9.1 18.1##person watching themselves in a mirror.\nNKNVR 24.7 34.1##person eating a cookie.\nNKNVR 24.7 34.1##a second person eats food.\nVX82P 7.3 19.8##person sneezing on the food.\nELBLK 20.1 31.0##person starts eating it.\nZUU2X 19.6 25.3##person puts a bag on the sofa.\nZUU2X 19.6 25.3##the second person puts a bag next to the bag.\nZUU2X 14.7 20.0##person turns on the light.\nZUU2X 0.0 14.8##person playing with a phone.\n7ZCXJ 15.7 23.5##person so they begin undressing.\n9GS13 21.5 57.5##person washes hands.\n9GS13 4.9 22.4##the person dumps the clothes in the washer.\n9GS13 7.2 20.1##a person puts clothes in a dishwasher.\n9GS13 21.5 57.5##person washes hands in the sink.\nFQGQS 0.0 4.3##a person opens a closet door.\nFQGQS 0.7 5.3##person throws a pair of shoes inside.\nQUGLP 2.7 10.2##person opens the door.\n4JQKA 28.6 33.9##person closes the cabinet door.\n4JQKA 2.8 12.0##a person undresses in front of a bathroom mirror.\n4JQKA 8.0 15.0##person opens  the  mirrored -door medicine cabinet.\n4JQKA 8.0 15.0##person they open the mirror to reveal a cabinet.\nKQYR0 6.9 11.9##person puts them on a table.\nKQYR0 19.5 25.0##person take the clothes.\nKQYR0 17.0 23.4##person picks up a book puts it on a desk.\nATUOW 12.3 20.0##the person puts papers on their shelf.\nATUOW 12.3 20.0##person put it on the shelf.\nQXCUP 0.0 12.4##person takes a few pictures with a camera.\nQXCUP 28.6 38.4##person puts clothes away in a closet.\nQXCUP 34.4 40.0##person close door.\nQXCUP 11.0 19.8##person putting the camera down.\nQXCUP 11.0 19.8##the person puts the camera down.\nBQ6UI 7.6 21.7##person washes their hands in the sink.\nBQ6UI 7.6 21.7##person going into the bathroom to wash hands.\n8M1TG 18.1 23.5##person another closes the door.\n8M1TG 14.4 20.6##person putting a broom away.\n8M1TG 18.1 23.5##when another person walks over to close a door.\nVXNGC 5.3 17.3##person they are smiling as they work on their laptop.\nVXNGC 5.3 17.3##a person is smiling at a laptop.\nGFH4E 0.0 14.6##person looking out a window.\nGFH4E 0.0 14.7##a person is holding a cup.\nGFH4E 0.0 14.7##person holding a glass of water.\n68YR6 15.2 19.5##another person opens the door.\n68YR6 21.0 32.0##person starts washing the window.\n9QVWC 19.7 33.0##person start sneezing.\n9QVWC 0.0 12.7##a person is standing fixing a door.\nLQK90 22.9 31.0##person pours a drink into a cup.\n4NRPM 18.1 27.5##person they take their shoes that they are wearing off.\n20YRU 0.0 9.9##person holding a box.\nZ8HPQ 7.9 14.1##person leaving the fridge door open.\nZ8HPQ 7.9 14.1##the person opens the refrigerator.\nZ8HPQ 7.9 14.1##the person sees the open refrigerator door.\nZ8HPQ 7.9 14.1##person opens the refrigerator.\nYZI2P 4.7 10.2##person they close the door.\nYZI2P 4.7 10.2##a person is seen closing the refrigerator door.\nJISS4 0.0 9.5##a person stands by a door laughing throwing a pillow.\nJISS4 0.0 9.5##person throwing a pillow.\nJISS4 0.0 2.9##a person laughs.\nFM5D5 10.4 17.5##person holding a bag of clothes.\nFM5D5 4.2 11.8##the person throws down the bag.\nFM5D5 11.3 17.5##person puts bag down.\n2S6V7 22.5 30.1##person takes their laptop from the shelf.\n2S6V7 22.5 30.1##person they take a laptop from the counter.\n2S6V7 17.7 26.5##the person begins laughing.\nT8V10 12.2 25.4##person they take a drink from a cup.\nRHAJX 4.5 15.8##person put their shoes on.\nRHAJX 0.0 6.7##a person is awakening from laying on a bed.\nRHAJX 20.2 29.4##person take a laptop from a shelf.\n65M4K 20.5 32.0##person getting food out cooking the food on the table.\n65M4K 0.0 5.4##person walking in the room open a refrigerator.\n65M4K 20.5 32.0##a person is cooking at a stove.\n8L08M 11.8 18.6##person sits down on the bed.\n8L08M 0.0 8.7##person holding the shoes.\n8L08M 0.0 8.7##a person is standing in a bedroom holding their shoes.\n8L08M 5.3 16.0##person they dress.\nFKZQN 11.6 24.6##person starts dressing.\nFKZQN 11.6 24.6##person started dressing.\nOA9W5 0.0 4.1##a person in a closet is smiling.\nOA9W5 11.6 18.6##person opening a book.\nOA9W5 0.0 12.4##the person is sitting in a closet eating a sandwich.\nOA9W5 0.0 12.4##person eating a sandwich.\n884C0 0.0 9.6##a person holding a broom walks into the kitchen.\n884C0 0.0 9.9##person sneezing at the same time.\n884C0 0.0 9.6##a person walks in a room holding a broom.\nRRFE7 0.0 7.1##a person is laughing.\nPM107 23.8 33.0##person starts watching out of the window.\nPM107 23.8 33.0##person looks through a window.\nPM107 13.4 18.2##a person is holding a bag.\n9JZCC 12.8 18.5##person smiling at something on their phone.\n9JZCC 18.8 31.0##the person lies down on the bed.\n4CSXJ 5.7 10.9##the person throws the pillow down the staircase.\n4CSXJ 5.7 10.9##person throws the pillow.\n4CSXJ 0.0 10.0##a person is sitting on the staircase holding a pillow.\nDHVYY 7.3 14.5##a person is washing dishes with a towel.\nDHVYY 7.3 14.5##person washing dishes.\nMQ9PZ 0.0 7.8##person they close the cabinet door.\nMQ9PZ 6.1 11.8##person opening up a book.\nMQ9PZ 0.0 7.8##person they close the door.\nMQ9PZ 6.1 11.8##person open up a book.\n8J5O9 17.0 31.0##person eating out of a bowl.\nYXN50 18.7 25.2##person puts the water on the shelf.\nFGY8R 10.4 17.7##the person is eating a sandwich.\nFGY8R 0.0 5.4##person working on the laptop.\nFGY8R 18.1 24.0##person they put the laptop down on the table.\nFGY8R 0.0 5.7##a person opens their laptop.\nP0DXX 31.8 39.5##a person puts some trash in a box.\nP0DXX 31.8 39.5##person puts the box next to a television.\nP0DXX 16.2 34.8##a person throws clothes.\nCSRZM 16.2 21.5##the person takes a sandwich out of the bag.\nCSRZM 16.2 21.5##person takes out a sandwich.\nCSRZM 16.2 21.5##person take a sandwich out of the bag.\nX8XQE 12.8 29.7##person cooks something on the stove.\nX8XQE 12.8 29.7##person cooking dinner.\nX8XQE 31.6 40.3##person takes a picture with their cellphone camera.\nTOUXU 5.1 10.9##person opens the front door.\nTOUXU 8.3 13.7##person closes the refrigerator.\nAPVAD 0.0 13.8##a person is undressing in the basement.\nAPVAD 17.1 31.0##person runs out.\nAPVAD 17.1 31.0##person runs out the door.\nK0X80 3.1 8.6##person leaving the door open.\nK0X80 3.1 8.6##the person opens the door.\nH4ZD8 8.0 15.0##person begin to undress.\nH4ZD8 4.4 11.5##the person looks at the picture.\nH4ZD8 4.4 11.5##person looking at a picture.\nH4ZD8 14.2 19.0##person takes a book from the table.\nH4ZD8 4.0 10.0##person takes a picture from the table.\nH4ZD8 8.0 15.0##a person is undressing in a dining room.\nCN108 11.0 17.6##person stand up.\nZ7QTA 14.7 23.2##person box are put on a table in the closet.\nVTY0J 19.1 35.0##person sit down at a table.\nVTY0J 20.1 35.0##person sits in a chair with a phone.\nVTY0J 0.0 2.7##the person opens a refrigerator to get food.\nVTY0J 20.1 35.0##person start playing on their phone.\nW75CV 16.6 23.0##a smiling person awakens on the stairs holding a towel.\nLB4AR 0.0 3.0##a person takes off his shoes.\nLB4AR 18.8 24.0##person takes out two bottles from the refrigerator.\nLB4AR 9.6 16.7##person proceeds to open the refrigerator door.\nLB4AR 0.0 4.5##a person throws their shoes through the doorway.\n6R7QY 0.0 4.3##a person stands on a chair.\n6R7QY 26.4 31.0##person another is putting dishes in a cabinet.\n6R7QY 0.0 4.3##person someone stands on a chair to replace a lightbulb.\nQEFFJ 12.6 25.0##person drink from a glass that was on the floor.\nQEFFJ 12.6 25.0##the person drinks from a glass.\nTDHM0 6.0 13.7##person sneezing into a phone in the basement.\nMLK57 18.9 27.0##person throwing a blanket on the floor.\nMLK57 12.9 18.9##a person awakens in a bedroom.\n1NNFV 0.0 10.0##a person pours a cup of coffee.\nXET54 9.8 15.7##a person enters the kitchen holding a pillow.\nXET54 9.9 17.9##a person is throwing a pillow onto the sofa.\nXET54 15.3 23.5##person closing the door behind her.\nXET54 15.3 23.5##person closing the door behind them.\nXET54 11.4 18.7##person puts a pillow on a sofa.\n9NV2G 2.5 10.1##a person awakens in bed.\nEBBKQ 7.7 15.0##person sneezing into blanket.\nEBBKQ 0.0 6.8##a person is watching a television.\nRO9RP 20.5 27.1##person put the glass on a table.\nRO9RP 5.0 15.1##a person is pouring something in a glass.\nRO9RP 5.0 15.1##person pour it into the glass.\nRO9RP 0.0 6.7##a person opens a refrigerator.\nDWBS3 0.0 3.8##person eating some food.\nDWBS3 0.0 3.8##one person is eating.\n6SWTR 18.9 27.0##person read a book.\nS1LY3 26.3 38.0##person watching a video of some kind on a laptop.\nS1LY3 26.3 38.0##person watching a video on a laptop.\n5OB3W 20.7 26.9##a person takes bags.\n5OB3W 0.0 6.3##person they begin opening bags.\nMNC10 7.6 14.0##a person throws a broom in the corner.\nXUYCA 0.0 9.2##a person sits in a chair eating.\nXUYCA 20.4 31.0##person walks to a shelf to tidy up books.\nXUYCA 0.0 9.2##the person was doen eating.\n9MOQ7 13.9 20.2##person put their shoes on.\n9MOQ7 0.0 8.3##a person is sitting on a bed sneezing.\n9MOQ7 13.9 20.2##person puts their shoes on.\nZKIBW 0.0 8.0##another person opens a bag.\n9FEV7 0.0 5.9##a person takes some clothes from a chair.\nPIRMO 3.5 8.6##the person takes a cup off the shelf.\nPIRMO 4.5 11.2##person drinking a glass of water the find a box.\nPIRMO 0.4 7.7##a person in a closet putting a blanket away.\nPIRMO 1.3 8.9##a person  putting a towel on a shelf.\nPIRMO 10.7 17.1##person takes a box off the shelf.\nUSZCJ 0.0 3.3##person opens door to room.\nYSBN0 0.0 11.4##one person stands at a stove loaded with dishes cooking.\nD67MQ 13.3 21.2##one person is at the laundry sink sneezing.\nTCCQL 17.0 25.0##the person drinks from a bottle.\nTCCQL 17.0 28.0##a person is holding a medicine bottle.\nFVMVY 34.6 38.0##a person sits in a chair.\nFVMVY 34.6 38.0##person holding a broom.\nFVMVY 34.6 38.0##person sits down in a chair.\nFVMVY 0.0 13.0##a person is putting clothes in the washer.\nFVMVY 34.6 38.0##a person throwing clothes into the washing machine pours detergent.\nOINMN 33.1 40.0##a person opens the door to a closet.\nOINMN 27.4 35.5##person throws a box onto a shelf.\nMVPQF 1.9 10.4##person puts the bags on the bottom shelf.\nMVPQF 1.9 10.4##a person puts clothes on a shelf.\nPE41X 0.0 7.4##person holding a broom.\nPE41X 0.0 7.4##a person is sitting on a chair holding a broom.\nPE41X 28.1 31.0##a person is in their kitchen sitting on a chair.\nAEZDA 0.0 9.5##a person is eating some food from a bag.\nAEZDA 0.0 9.5##a person eats out of a bag.\nAD9MO 22.7 27.0##person turn off a light.\nAD9MO 22.7 27.0##person off a light.\nAD9MO 1.5 10.2##a person is putting a broom in the pantry.\nAD9MO 0.0 7.3##person holding a broom.\nAD9MO 2.4 9.5##a person is opening a door.\nAD9MO 18.2 25.6##person they close the door.\nQ3M8J 23.4 31.0##person sits at a chair at a table.\nQ3M8J 23.4 31.0##the person sits in a chair.\n3DO3W 14.0 19.7##person puts the towel on the chair.\n6VT4U 8.0 13.4##person puts it on a shelf.\n6VT4U 0.0 12.0##a person plays on a phone.\n3CFFJ 31.4 34.0##person drinks milk from a glass.\nOZSB3 20.6 25.5##person opening a bag.\n14VCB 0.0 6.2##person drinking something from a cup.\nEXB02 1.9 15.6##person points at the wall smiling.\n2NZ5C 11.1 16.7##a person is undressing under the light.\n2NZ5C 11.1 16.7##person begin dressing by a window.\n2NZ5C 11.1 16.7##a person undresses.\n2NZ5C 11.1 16.7##person dressing in front of the window on the stairs.\n2NZ5C 11.1 16.7##person get dressed.\nZ6LYG 6.7 27.1##person pause to eat it.\nZ6LYG 6.7 27.1##person takes some food on a plate out to eat.\nZ6LYG 1.9 8.2##the person opens the refrigerator.\n96GC9 7.2 19.3##person the other eats some food.\nUWL8I 14.6 24.2##person run back down carrying a box.\nUWL8I 20.5 27.3##a laughing person runs down the stairs holding a box.\nIKZN3 29.8 34.8##person stand up.\nIKZN3 3.6 11.9##person pours a glass of water.\nED0VL 7.0 23.3##person putting trash in a bag.\nA0CZE 11.6 18.5##person open a refrigerator.\nA0CZE 1.9 8.1##a person walks through a doorway.\nNAF1C 31.4 36.7##person opens a closet door.\nNAF1C 26.6 31.7##person looks at a picture.\nNAF1C 26.6 34.4##the person laughs at the picture.\nGN912 18.4 21.0##a person is eating a sandwich.\nUBVV7 9.9 18.4##person takes some food out of a bag.\nUBVV7 19.2 27.1##person puts box in closet.\nUBVV7 12.5 25.6##person eats small food item.\nUBVV7 23.9 35.7##person takes the box.\nUBVV7 12.5 25.6##person eats it.\nUBVV7 19.2 27.1##person closes box.\nF87KZ 18.0 23.7##person opening a refrigerator in a kitchen.\nF87KZ 17.4 23.7##person open the door.\nE06A2 4.0 13.1##person begins sneezing.\nMGBLJ 22.2 32.0##person standing to look out the window.\nMGBLJ 22.2 32.0##person looks out the window.\nFV684 0.0 10.2##person is smiling in the mirror.\nFV684 0.0 10.2##a person is looking at themselves in a mirror smiling.\nFVPMC 25.2 32.2##person eats a sandwich.\nFVPMC 25.2 31.3##person starts eating.\nFVPMC 14.6 22.3##a person is putting a broom inside the pantry door.\nFVPMC 0.0 14.7##a person holds a broom.\nFVPMC 0.0 6.2##person opens the doors of the cabinet.\nFVPMC 25.2 32.2##person eats the sandwich.\nFVPMC 19.0 27.9##person closes the cabinet doors.\nFJIMX 0.6 11.2##a person is smiling.\nFJIMX 4.9 14.7##person laughing in front of a mirror.\nFJIMX 28.2 31.0##person putting clothes in a box in a bedroom.\n8YKGP 35.7 40.3##person puts things away in a shelf.\nQ36FS 11.6 22.0##person decides to look out of the window.\nQ36FS 4.8 14.5##the person begins laughing.\nQ36FS 11.6 22.0##person looks out of the window.\nQ36FS 11.6 22.0##person looks out the window.\n85LEB 16.3 22.0##person they stand up.\n85LEB 14.8 20.0##person working on their laptop.\n85LEB 0.0 4.7##person they drink a bottle of water.\nR8OTI 0.0 6.3##a person walks through the doorway of a pantry.\nXO97L 6.1 23.8##a person sits on a sofa with a blanket.\nF4BJJ 5.6 13.8##the person takes a book out of the bag.\nF4BJJ 0.0 4.5##a person runs to a desk.\nF4BJJ 0.0 4.5##a smiling person runs through the doorway.\nF4BJJ 5.6 13.8##person takes a book out of their bookbag.\nF4BJJ 7.7 12.6##the person puts a bag down on the desk.\nJI3ZF 5.3 14.3##the person holds up a towel.\nT0HLX 20.7 28.5##person put them on a shelf.\nT0HLX 20.7 28.5##one person puts shoes on a shelf in a cabinet.\nEUMRR 0.0 12.9##a person is washing their hands in the bathroom.\n9ILM6 26.7 30.0##person drinking a cup of coffee in the pantry.\n9ILM6 0.0 9.2##a person opens a bag of food.\n9ILM6 20.8 26.0##person they put the cup of coffee on the counter.\nWQWT0 14.7 25.0##person sitting at a desk eating.\nWQWT0 10.3 16.9##person puts the sandwich on the plate.\nWQWT0 0.0 5.1##a person opens a door.\nJD3KW 5.3 17.1##a person is in the basement tidying up a shelf.\nJD3KW 34.7 43.1##person closes the box.\n4X5P6 3.5 10.5##a person is undressing in a doorway.\nLI6LV 2.7 15.2##person started undressing.\nLI6LV 0.0 6.7##the person put a towel on the doorknob.\nX0FW6 0.0 4.8##a person is running through a living room.\nX0FW6 1.2 5.8##the person sits on a couch.\nX0FW6 0.0 4.8##a person runs into the kitchen.\n0EJAG 0.1 11.5##a laughing person has a blanket wrapped around their shoulders.\nHCM54 4.0 10.5##the person is standing there smiling.\nHCM54 4.0 10.5##person smiling at a picture on the wall.\nF1OMV 9.7 17.2##person close the door.\nF1OMV 8.2 15.2##person turning off a light.\nVUXLB 20.0 27.0##the person puts the glass back.\nVUXLB 22.8 29.4##person putting the coffee down on a table.\n3K2QE 11.9 19.9##person take off their shoes.\n1KJI0 0.0 9.8##a person is cooking food on a stove.\n1KJI0 6.6 13.2##person opens a refrigerator to pour milk.\n1KJI0 0.0 9.8##a person is cooking something on the stove.\nYIK5I 20.1 28.5##person open door.\nYIK5I 0.0 12.5##a person is sitting at their desk watching television.\nYIK5I 20.1 28.5##person opening his front door.\nYIK5I 20.1 28.5##person opening the door to air it out.\n5X6S7 1.6 7.9##person sitting down laughing at their desk.\n5X6S7 0.0 14.3##a person is sitting in a chair smiling.\n5O0YS 15.8 22.0##person runs out of the room through an entryway.\n5O0YS 15.8 22.0##person runs out room with pillow.\n5O0YS 15.8 22.0##person they start running to the door.\nWT405 0.0 6.4##person began watching the laptop.\nWT405 0.0 6.4##person begin watching a show on a laptop.\nWT405 10.4 22.6##person put the glass in the refrigerator.\nWT405 6.1 16.7##a person pours a glass of water that they.\nZFQNZ 14.0 23.1##a person cooking in their kitchen opens their refrigerator.\nZFQNZ 1.5 7.8##a person opens the refrigerator.\nZFQNZ 14.0 23.1##person start cooking on the stove.\nZFQNZ 14.0 23.1##person begin cooking some food at a stove.\nZFQNZ 9.9 15.3##person take out some food.\nC7P86 0.0 13.1##a person undresses.\n99596 35.1 42.4##person stand up.\n99596 28.2 39.5##person begin dressing.\n99596 14.6 30.4##a person is awakening under a blanket.\nGBDJX 15.5 24.0##person eats some.\nGBDJX 8.8 14.8##person closing the cabinet.\nGBDJX 15.5 24.0##the person eats the food.\nGBDJX 0.0 4.9##a person opens a closet.\nGPR89 19.0 44.8##a person takes a stack of papers off a table.\nXSY2P 18.4 26.5##person puts his laptop in a bag.\nUFNPU 1.9 7.3##a person opens the door to the laundry room.\nUFNPU 4.2 11.8##person closing the door behind them.\n2XG25 0.0 4.9##a person awakens in their bedroom.they look in a mirror.\nY0CA0 15.6 22.3##the person appears to be cooking something.\nY0CA0 15.6 22.3##a person is cooking on a stove.\nY0CA0 6.5 12.4##person closing cabinets.\nY0CA0 6.5 12.4##a person is closing the cabinet.\nKRLT7 10.6 22.8##person take a picture of the clothes.\nKRLT7 4.7 12.5##a person is throwing clothes on the floor.\nFEKJQ 1.3 14.8##a person is sneezing.\nEHCUE 10.5 26.6##a person is sitting in a chair at a desk.\n02CYP 0.0 15.7##a person is sitting on a couch watching television.\nCICFF 0.0 6.4##person someone walks through a doorway.\nCICFF 5.6 15.8##person they take a picture with their phone.\nCICFF 5.6 15.8##person takes a phone from the table.\nWIPMO 38.4 43.0##the person closes the book.\nY49WR 15.4 23.0##person takes a picture.\nY49WR 15.4 23.0##person getting dressed takes a picture in mirror.\nMJZJM 4.8 10.5##a person turns on the light.\n17RPG 0.0 9.9##a person is standing in a hallway smiling.\n17RPG 27.7 33.0##person eating the sandwich they are holding.\n17RPG 26.7 33.0##person watch themselves eat.\n17RPG 26.7 33.0##person they take off their sweater.\n17RPG 27.7 33.0##person eating a sandwich.\nCZPFO 26.1 36.6##person closes the door.\nCZPFO 26.1 36.6##a person opens up a closet door.\nYVOM4 9.1 18.3##person runs back out.\nYVOM4 9.1 18.3##another person run in.\nDLQIT 25.6 35.5##person briefly looked at a book.\nDLQIT 7.0 12.9##person sits on a chair.\nDLQIT 12.4 18.3##person poured water into a glass took a drink.\nDLQIT 12.4 18.3##person they start pouring themselves a glass of water.\nMNJWH 1.8 12.1##person holding a book.\nMNJWH 0.0 13.8##person holds a pillow.\nSPDF6 19.9 25.9##person they stand up.\nSPDF6 0.6 13.9##a person is throwing clothes into a bag.\nTGUKM 8.0 16.5##pick it up .the person takes a flash light out.\nTGUKM 8.0 16.5##person examining it with a light.\n52WDV 4.7 14.9##a person is dressing in a walk-in closet.\n52WDV 12.5 21.0##person watching their reflection in a mirror.\n5DYQR 4.3 9.8##a person opens a cabinet.\nW6TFQ 19.6 33.0##person the they sneeze as they open the door.\nW6TFQ 19.6 33.0##person opens the doorway.\nY2TNP 0.3 6.1##person turns on the light.\nY2TNP 0.3 6.1##person turns on a light.\nY2TNP 0.3 6.1##person leaving a light on in the entryway.\nZATTZ 0.0 8.7##a person is holding some dishes.\nZATTZ 19.2 34.0##person begins cooking at the stove.\nVXF18 2.2 7.4##person a glass sits down on a couch.\nVXF18 35.3 43.7##person starts drinking from a cup.\nVXF18 2.2 7.4##the person sits down on the couch.\nVXF18 8.7 15.0##the person eats some of the food.\nVXF18 35.3 43.7##the person is holding a drink cup.\nVXF18 8.7 15.0##a person is eating food from a table.\nIHGNV 4.4 18.2##the person opens the bag.\nIHGNV 0.0 8.3##a person is holding a bag.\n3MLVF 0.0 14.6##a person is cooking food on the stove.\n3MLVF 28.7 32.0##person drinks from the coke bottle.\n3MLVF 0.0 14.6##a person is cooking with a pot on the stove.\n3MLVF 11.5 16.6##person they open the refrigerator.\n3MLVF 11.5 16.6##person the open the refrigerator remove a soda.\n3MLVF 0.0 14.6##a person is cooking on a stove.\nUNGPY 14.6 20.2##person closes the door.\n5ZRFL 6.7 12.6##a person opens their bedroom window.\n5ZRFL 28.6 32.0##person takes a camera from their nightstand.\nSUYMQ 0.0 17.3##person holding a pair of shoes.\nSUYMQ 0.0 17.3##person holding shoes in their hands.\nSUYMQ 9.7 17.1##person stand up.\nSUYMQ 9.7 17.1##person they begin to stand up.\nXIYIK 13.3 20.5##person opens a box.\nXIYIK 13.9 23.8##person takes a towel from a box.\nE1TUD 11.1 21.2##a person is dressing.\nE1TUD 11.1 21.2##person begins dressing again.\nE1TUD 0.0 5.6##a person is undressing in the bathroom.\nBVX8X 20.3 26.7##person goes to open the refrigerator for something.\n5OMSL 26.1 31.9##person they take a box.\n5OMSL 26.1 31.9##person take a box off the shelf.\nU6QKX 8.2 14.6##person putting it on a shelf.\n1N1UT 24.3 30.7##person eating a sandwich closes a door.\nMS3E8 0.0 6.4##person starts putting groceries away from a box.\nMS3E8 0.0 7.0##person carrying a holding a box.\n9JIOI 7.1 14.1##person takes it to the stove to cook.\n9JIOI 13.2 17.0##person closes the refrigerator door.\n9JIOI 13.2 17.0##a person walks to the refrigerator to close the door.\n9JIOI 7.1 14.1##another person is cooking on the stove near the sink.\nYPZQ2 9.3 15.5##person takes a bag.\n1WAOU 0.0 4.6##a person is walking around drinking out of a glass.\nT03KF 21.6 32.0##person begin eating it.\nT03KF 21.6 32.0##person eating some food.\nT03KF 10.6 14.9##person takes clothes out of a cabinet.\nT03KF 10.6 19.6##person throwing clothes on the floor.\nT03KF 10.6 19.6##person throws them on the floor.\nT03KF 21.6 32.0##person eats food.\nUDRZ6 5.0 15.0##a person is laughing on the stairs.\nR0OLR 0.0 9.3##person takes towel off.\nR0OLR 15.7 24.9##person throws the blanket on a table.\nR0OLR 11.4 19.4##person stops & starts sneezing.\nR0OLR 19.7 26.9##a person is running down the hallway holding a blanket.\nR0OLR 19.7 26.9##a person wrapped in a blanket runs into the room.\nW8H3C 0.0 3.1##a person is holding a pillow.\nCN43X 1.0 10.4##a person takes a pillow.\nO8N4M 7.6 17.8##a person awakens on the couch in the living room.\nV70F7 3.8 12.1##a person is fixing his hair.\nV70F7 17.9 25.6##person closes the door.\n47Y1X 0.0 4.0##a person eating food in pantry smiling at the camera.\n9NWSD 24.0 29.0##person puts the box on top of the dresser.\nSDXZ8 33.5 38.8##person they take a vacuum.\nSDXZ8 20.4 27.2##person they put the dish away.\nSDXZ8 8.3 24.7##the person washes the dishes.\nSDXZ8 8.3 24.7##a person washes some dishes in a sink.\n4ZN66 26.5 33.2##person takes out their phone.\n4ZN66 26.5 33.2##person takes a phone out their pocket.\nV149B 21.3 32.0##person washing windows with a cloth.\nV149B 21.3 32.0##person washing a window in an entryway.\nUL7YC 11.9 17.4##person takes a glass of soda.\n5TG2E 1.3 9.7##person after putting on shoes from a chair.\n5TG2E 1.3 9.7##that person puts on their tennis shoes.\nAYMCZ 4.4 13.5##a person is putting a pillow into a washer.\nAYMCZ 17.8 30.0##person working on the laptop.\nAYMCZ 18.7 25.2##person opening a laptop.\nAYMCZ 18.7 25.2##person finally opening a laptop in a laundry room.\nFN0F8 31.3 36.8##person putting the piece of paper away.\nSBW7O 0.0 12.5##a person looks out a window.\nSBW7O 27.1 32.0##person opens the door.\nSBW7O 27.1 32.0##the person opens the door.\nKZ746 3.2 8.2##a person is sitting in a chair.\nXF41L 2.2 9.3##person opening a closet door.\nXF41L 2.2 9.3##a person opened a closet.\nXF41L 16.3 23.6##person takes off their shoes.\nXF41L 21.4 30.8##person holding a phone.\nXF41L 16.3 23.6##person takes off shoes.\nXF41L 15.0 20.1##person puts the phone on a table.\nNHD1J 14.7 21.4##person opens a laptop.\nNHD1J 14.7 21.4##person opens laptop.\nNHD1J 10.2 20.7##a person is undressing.\nNHD1J 14.7 21.4##person opens up laptop.\nNHD1J 4.0 14.2##person watching television.\nZ5FNI 18.3 26.1##person closing the door.\nZ5FNI 12.5 19.0##person turning off the light.\nZ5FNI 15.1 22.7##person opens a door.\nOB1XO 19.7 31.4##the person puts on their shoes.\n99WON 5.3 11.8##person sits in a chair at the top.\n99WON 0.0 8.6##a person runs up the stairs.\n99WON 0.0 8.6##a person runs up a flight of stairs.\nWVB7F 27.8 33.3##person takes some medicine.\nWVB7F 2.5 18.1##person takes a blanket.\nWVB7F 27.8 33.3##person takes a bottle of medicine.\nWVB7F 0.0 7.5##a person is sneezing.\n0TIHC 0.0 8.3##person throws their clothes onto the floor.\n0TIHC 0.0 8.3##person throws clothes on the floor.\n0TIHC 0.0 9.3##a person undresses.\n0TIHC 22.0 27.7##a person takes a water bottle.\nNJ0X1 17.5 24.0##person sits in a chair.\nG537E 13.3 22.6##person sneezing on a glass.\nG537E 23.9 40.0##person finally putting away groceries in a pantry.\nBPH56 0.0 13.4##laughing as the person collects the dishes.\nBPH56 20.1 29.1##person turns the light on.\nBPH56 20.1 29.1##person turn on the light.\nYU9BS 34.9 39.7##person turns the light off.\nYU9BS 34.9 39.7##person turns off the light.\nYU9BS 22.3 30.6##the person looks out the window.\nYU9BS 22.3 30.6##person looks out the window.\nVOU8V 0.0 10.9##person drinking a glass of water.\nWXUZK 0.0 14.7##person a walks into the bedroom undressing.\n75MO8 11.3 25.7##person drinking a glass of water.\n75MO8 0.0 8.9##a person runs into the recreation room.\n75MO8 0.0 8.9##a person runs over to a table.\nKAFV7 10.9 15.2##person takes a picture of something.\nKAFV7 23.1 28.4##the person puts their phone away.\nKAFV7 10.9 15.2##a person takes a picture with their phone.\nKAFV7 26.8 31.0##person lies down on the sofa.\nXUV0Y 14.2 20.4##person eating it.\nXUV0Y 14.2 20.4##person eating in a living room.\nF99PM 25.1 30.4##person open the cabinet.\n1D2OX 6.7 14.1##a person is putting shoes on a shelf.\n8BBX0 12.3 19.3##person opening the door.\n3VM0R 20.7 27.6##another person is putting a bag down on a desk.\n3VM0R 4.9 18.9##a person is snuggling with a pillow on a chair.\n5BTFZ 17.3 30.7##another person is standing by a window sneezing.\n5BTFZ 17.3 30.7##another person is sneezing by the window.\n5BTFZ 17.5 32.0##another person is looking out a window.\nOKYYQ 2.5 8.5##one person closes a book.\nOKYYQ 24.4 28.0##person closing the cabinet door.\nOKYYQ 0.0 12.6##a person reads a book.\n5YA6D 2.7 12.8##person closing the front door.\n5YA6D 14.0 23.2##person they take off their shoes.\n5YA6D 14.0 23.2##person takes off their shoes.\n5YA6D 2.7 12.8##person closes a door.\n5NK4L 27.3 35.0##a person is tidying up the things in the cabinet.\nQ01UB 24.9 32.4##the person puts some shoes next to an open laptop.\nQ01UB 0.0 14.5##a person is dressing by putting on a jacket.\nYQOPM 4.8 18.1##a person throws some clothes into a box.\nOAC4U 7.8 12.5##person throw the towel on the floor.\n5HOAV 14.6 20.1##person putting the camera on the shelf.\nG8O8P 2.3 8.9##a person is closing a door.\nG8O8P 2.3 8.9##person closes the door.\nG8O8P 5.1 11.3##person opens the door.\nAJRIJ 0.0 10.9##a person snuggling with a pillow begins watching the doorway.\nTVQO9 2.3 9.0##person drinking cup of coffee.\nTVQO9 2.3 9.0##the person drinks from the cup.\nOSCS2 0.0 12.7##a person is laying in bed  holding a pillow.\nOSCS2 30.8 37.0##person look out a window.\nOSCS2 31.7 37.0##the person awoke from bed holding a blanket.\nOSCS2 30.8 37.0##person moved to the window to look outside.\nOSCS2 0.0 13.1##a person awakens in bed.\nF08QY 0.0 3.6##one person opens up a bag.\nXKLW2 8.2 13.7##another person walks through the nearest doorway.\n5BQMX 7.2 11.9##a person is turning off a light.\n5BQMX 15.2 23.0##person opening the door.\n5BQMX 3.2 8.1##a person is throwing a sofa pillow onto a sofa.\nHDP39 0.0 13.0##a person wearing a towel drinks water from a bottle.\nHDP39 0.0 13.0##a shirtless person drinks out of a bottle.\nZEC1D 16.8 26.8##person takes a box out.\nZEC1D 16.8 26.8##person takes a picture of the box.\nDP8U3 5.5 11.3##person snuggling a blanket.\nCDT32 14.4 21.8##person throws it on the floor.\nHGSB7 13.4 20.2##person takes their laptop.\nHGSB7 23.0 32.0##person sitting in the chair.\nWGUW8 0.1 15.5##a person undresses in front of a mirror.\nWGUW8 12.3 27.4##person puts the clothes in a bag.\nWGUW8 0.1 15.5##a person is getting undressed in front of a mirror.\nZ9WWJ 0.0 6.9##person holding a broom.\nZ9WWJ 3.3 7.4##the person throws the broom into a corner.\nZ9WWJ 0.0 7.5##a person runs into the basement.\nZ9WWJ 0.0 6.9##a person runs down the stairs holding a broom.\nCJHFD 0.0 5.9##a person holding a sandwich opens.\nCJHFD 18.6 29.1##person starts sneezing.\nHHEIV 11.6 24.5##person smiling on the sofa.\nHHEIV 11.6 24.5##the person is smiling.\nUCX0K 0.0 8.3##a person is sneezing on a picture.\nCOPHL 9.3 14.2##person opened a book.\nCOPHL 9.3 14.2##person opens book.\nCOPHL 2.8 12.7##person is awakening from falling asleep behind desk.\nCOPHL 9.3 14.2##person they open up a book on the table.\nF0PNU 8.0 16.1##person starts sneezing.\n9C4JX 0.0 9.4##person holding a bag full of items.\nBNEQL 0.0 20.0##a person is dressing in the laundry room.\nBNEQL 14.3 26.7##person takes a drink from a cup.\nBNEQL 14.3 26.7##person picking up the coffee cup to take a drink.\nLF49A 9.6 16.4##a person is opening a bag in the closet.\nI7MEA 4.9 9.6##person takes out a box.\nI7MEA 0.0 5.8##person continues cooking.\nI7MEA 2.2 7.3##person opens the refrigerator.\n0IFCL 0.0 5.1##a person closes the door.\n0IFCL 0.0 5.1##a person closes a door.\n0IFCL 32.3 38.9##the person opens the door.\nNUMAW 23.0 28.4##a person is smiling.\nNUMAW 1.7 12.2##another person is sneezing.\nFI2TP 13.0 23.7##person they begin to have rampant sneezing.\nEBTD6 14.2 26.2##person eats a sandwich.\nEBTD6 2.5 9.5##person opening a door.\nEBTD6 14.2 26.2##person eating a sandwich.\nEBTD6 2.5 9.5##person opend the door,sneezed.\nEBTD6 21.7 31.9##a person is running in place.\nEBTD6 2.5 9.5##a person is sneezing as they open a door.\nEBTD6 2.5 9.4##a person is sneezing.\n4N06O 21.3 26.3##person throws a book through a doorway.\n4N06O 4.0 12.2##a person awakens.\n4N06O 8.1 20.7##person begins to look at a book.\n4N06O 21.3 26.3##person throws a book.\n4N06O 4.0 12.2##a person awakens in a bathroom.\nBT8WU 26.2 32.0##person begin eating.\nBT8WU 26.2 32.0##person eat something.\nK8RW9 12.6 19.5##another person turns on a light.\nK8RW9 12.6 19.5##person turning on the light.\nMUE7H 6.6 21.0##person put on their shoes.\nMUE7H 0.0 8.1##a person is awakening.\nMUE7H 6.6 21.0##person putting on shoes.\nMUE7H 0.0 8.3##a person awakens on a bed.\nMUE7H 16.7 23.5##person stand up.\nMUE7H 22.8 43.0##person begin tidying the floor with it.\n21MI8 0.0 6.5##person drinking from a cup.\n21MI8 3.9 10.1##a person is opening a laptop.\n21MI8 7.7 13.4##person putting a glass down on a table.\nBQ07S 0.0 15.3##a person is pouring water in a glass.\nQRSP8 15.1 19.6##person turn off the light.\nQRSP8 15.1 19.6##person turns off the light.\n1R9XW 1.2 9.6##person closes a closet door.\nMXBFE 1.8 13.7##person they look at a picture.\nIFFPZ 2.0 8.2##a person awakens in a bedroom.\nXOMJ4 19.5 30.0##person sits in a chair.\nXOMJ4 19.5 30.0##finally the person sits down in the chair.\nFNM5E 7.1 12.1##starts laughing .the person turns.\nFNM5E 10.6 14.7##person opens the door.\nFNM5E 10.6 14.7##person open the door.\nFNM5E 7.1 12.1##person they begin laughing.\nH9V9I 0.0 3.5##a  person is standing holding an open laptop.\nH9V9I 0.7 12.7##a person puts their laptop onto a desk.\nOUAIS 23.1 29.0##person throws the pillow.\nOUAIS 23.1 29.0##person throws a pillow across the floor.\nOUAIS 31.2 36.7##person opening the door.\nOUAIS 11.9 26.4##person start dressing by putting on a sweater.\nOUAIS 0.0 13.2##this person is laying on the floor.\n5AE54 17.1 28.0##another person is tidying the table.\n5AE54 8.4 16.6##lies on the bed when a second person walks in.\n5AE54 0.0 8.5##a person is running to the phone.\nFBHBP 1.9 7.3##person sits on couch.\nFBHBP 1.9 7.3##a person sits on the sofa.\nFBHBP 9.5 14.7##person eats some food.\nFBHBP 9.5 14.7##person eats the food.\nB8PQL 0.7 5.9##the person puts the towel on the table.\nK47J5 6.3 14.2##a person in a home office takes of their shoes.\nK47J5 6.3 14.2##person takes off their shoes.\nCII5H 17.5 23.9##person opens a closet door.\nCII5H 17.5 23.9##person with a blanket in hand open closet door.\nCII5H 11.0 19.8##person put clothing on the shelf.\nCII5H 17.5 23.9##person closes the door.\nCPFLM 7.7 14.3##the person starts throwing clothes onto a chair.\nCPFLM 0.0 9.9##a person is sneezing into a pillow.\nGA4DZ 1.0 7.5##a person is awakening near a light.\n6KI0S 9.0 27.0##person snuggling with a pillow.\n6KI0S 0.0 3.0##a person awakening.\nHOIKF 16.8 32.0##another person is working on a laptop.\nHOIKF 16.8 32.0##another person is playing with a laptop.\nGL38X 9.0 19.8##another person is watching a picture on the wall.\nJTXUA 27.6 37.0##person sitting down on a sofa.\nJTXUA 5.3 13.3##person closes a door.\nJTXUA 27.6 37.0##the person sits on a couch.\nJTXUA 16.4 29.7##person look out the window.\nJTXUA 27.6 37.0##person sits on the sofa.\nJTXUA 33.6 54.2##person fixes light bulb.\nJTXUA 1.7 8.8##a person opens a door.\nJTXUA 1.7 8.8##person opens the door.\nJTXUA 33.6 54.2##person fixing a light.\nCPDH9 5.9 12.1##the person puts the glass on the shelf.\n7L0TN 0.0 6.1##a person opens a door.\nXEGTL 22.6 28.9##person laughs into a mirror.\nQDZ38 2.4 9.2##a person runs into a bathroom.\nQDZ38 2.4 9.2##a person runs into the room.\nQDZ38 9.8 15.6##person washes the mirror with a towel.\nQDZ38 2.4 9.2##one person runs into the bathroom.\nQDZ38 9.8 15.6##person starts washing the mirror.\nZIWZH 0.0 5.2##person close the box.\nZIWZH 1.6 13.5##a person is sitting on a chair opening a box.\n9JZO3 16.7 30.0##awakening the person snuggling with the pillow.\nX1KKZ 8.7 15.2##a person throws a pillow onto the sofa.\nX1KKZ 0.0 17.7##person runs to the window.\nDUNVR 27.0 32.0##person they run out of the room with the pantry.\nDUNVR 25.1 31.4##the first person closes the door.\nDUNVR 27.0 32.0##person both run away.\nCO3LU 31.5 38.0##person walks over to the light switch.\nCO3LU 31.5 38.0##person turns off the light.\nX8KIS 0.0 6.8##a person walks through a doorway.\nQ24KP 9.8 17.1##person puts a towel away.\nQ24KP 10.5 18.1##one person puts a blanket on a table.\nSW64W 6.4 13.9##person is opening a laptop.\nSW64W 6.4 13.9##person opening up their laptop.\nSW64W 0.0 14.4##a person is sitting at a table.\nSW64W 6.4 13.9##person open their laptop.\nJGYF6 1.4 8.0##a person is lying on the sofa sneezing.\nJGYF6 11.5 19.0##person talking on the phone.\nNSDFA 20.6 29.2##person they put the box down.\nNSDFA 25.7 36.0##person take a picture.\nCM5SK 0.0 5.1##a person opens the refrigerator.\nCM5SK 9.4 17.5##person goes to start reading a book.\nCM5SK 9.4 17.5##person begins reading a book.\nVMRAV 7.5 17.6##person turns on light grabs a napkin.\nVMRAV 7.5 17.6##person turns on the light.\n34J80 19.3 28.0##the person begins putting food into the cabinet.\nUY7BK 18.1 29.3##person looking out the window.\n3VWR9 10.7 16.9##person close the door.\n3VWR9 10.7 16.9##person closes the door.\nWV8SY 13.1 19.0##a person opens a door.\nWV8SY 12.8 20.0##person running into the house.\nWV8SY 16.8 23.0##person takes off their shoes.\n3AE3T 4.8 19.5##a second person sits on a sofa.\n43UGG 4.1 11.8##a person is lying on the carpet eating a sandwich.\n43UGG 43.4 54.0##person puts on their shoes.\n43UGG 4.1 11.8##a person is eating a sandwich on the floor.\n4C5S6 19.5 26.4##person open the refrigerator door.\n4C5S6 19.5 26.4##person the open the refrigerator.\nFTETB 8.9 13.7##person they put the box down.\nFTETB 0.2 11.6##person they take something out of the box.\nFTETB 0.2 11.6##a person takes food out of a box.\n77UTO 25.2 33.0##person washes a window with a towel.\n77UTO 0.0 10.8##a person is pouring a cup of coffee.\n77UTO 0.0 10.8##a person pours a drink from one cup to another.\nBEC09 15.8 27.0##a person in a kitchen is cooking food.\nBEC09 10.9 19.8##person opening a box.\nBEC09 10.9 19.8##person opens a box on the counter.\nCOM6M 15.3 23.0##person closed the refrigerator.\nCOM6M 15.3 23.0##person closing the refrigerator.\n6RQHP 23.5 33.3##person sits in a chair.\n6RQHP 3.1 11.9##a person is cooking at a stove in a kitchen.\n6RQHP 3.1 11.9##a person is cooking on the stove.\n6RQHP 13.4 21.1##person washes some dishes.\nI6IPP 21.1 29.0##the person takes a drink from a glass of water.\nP36YW 14.6 28.0##person are seen drinking a cup of coffee.\nP36YW 14.2 19.7##person they put the pillow down on the table.\nP36YW 7.5 20.3##person holding a pillow.\n9JIHR 13.2 20.6##person kicking a door they stand up.\nAMLI4 18.5 26.4##person they pour a glass of water into a dish.\nAMLI4 18.5 26.4##person pour some water from a bottle into a cup.\nMRXEW 19.5 27.2##person puts the box down.\nDICXG 0.0 11.8##a person enters their house holding their laptop.\nDICXG 17.9 25.6##person looks at the picture.\nDICXG 0.0 11.8##a person walks through a door way holding a laptop.\nP87UK 12.2 22.3##person put food in a chair.\n8CQ9Y 27.3 31.0##person puts the phone on the table.\n8CQ9Y 1.5 7.3##a person is sneezing in the bed.\nVA7IT 14.5 22.0##person throws the pillow.\nVA7IT 14.5 22.0##person throws the pillow down.\n7LYA9 10.3 15.0##person throws it on the floor.\n7LYA9 10.3 15.0##person smiling as they throw a pillow on the floor.\n7LYA9 9.7 22.2##a person is laughing.\nI5KUM 0.0 7.3##person one is holding some medicine.\n2J2EW 4.1 20.7##person open a bag of groceries.\n22FJU 1.1 14.6##a person walks into the laundry room holding a picture.\n22FJU 1.1 14.6##a person walks into the room holding a picture.\n22FJU 6.4 11.1##person they turn on the light.\n22FJU 6.4 11.1##person turns on a light.\nRXRAS 0.0 14.3##a person is tidying up a table.\n4ZWLA 16.6 23.2##another person is sneezing on a vacuum.\n0XV7B 1.2 9.0##a person opens a door.\nJ5TTU 19.1 30.4##the person washes their hands.\nG6LYD 9.4 14.1##a person is throwing clothes on the floor.\nG6LYD 9.4 14.1##person they throw their clothes on the floor.\nENDIE 0.4 10.9##a person puts down a bag of groceries.\nENDIE 5.9 16.7##person drinks from a glass.\nKUBPN 2.3 9.4##person eating sandwich.\nKO34N 6.8 11.9##person puts the phone on the chair.\nS1XW9 25.9 33.9##person closes the door.\nS1XW9 25.9 33.9##person closing the doorknob.\nS1XW9 0.0 3.2##one person walks through the doorway.\nS1XW9 22.7 29.2##person he closes the book.\nOZ5SV 2.7 8.5##the person puts the book down.\nRLA7N 5.0 13.5##person watching a cooking show on television.\nRLA7N 26.4 39.0##person started washing dishes.\nRLA7N 5.0 13.5##the person was cooking dinner.\n5LETG 16.6 23.5##person turns the light on.\n5LETG 16.6 23.5##the person turns on a light.\nJUF24 18.4 26.9##the person takes food out of a bag.\nNGWRE 0.0 9.2##person holding a cup.\nNGWRE 0.0 14.7##a person is playing with their phone in the basement.\nHZXXN 5.5 11.1##person opens a cabinet.\nHZXXN 5.5 11.1##person opens cabinet.\nHZXXN 2.1 8.8##the person was sneezing.\n7L4DW 0.0 3.6##a person takes a bag.\n7L4DW 4.4 17.7##a person undressing in a basement opens a bag.\nKCEJF 7.9 22.0##person looking in a window.\nKCEJF 1.1 9.3##a person is walking up the stairs eating a sandwich.\nKCEJF 7.9 22.0##the person watches something out a window.\nWCKTP 3.0 9.5##a man putting something on a shelf.\nKNDY2 6.4 16.3##another person is using a camera to take pictures.\nKNDY2 6.4 16.3##person uses a camera to take pictures of the other.\n2JTRG 15.0 25.1##person laughing as they eat a sandwich.\nQ1L24 0.0 11.4##a person is cooking at the stove.\n1KOZ4 1.5 20.6##a person dresses in front of a mirror.\nZ6U1X 0.0 11.4##person holding a broom.\nAMIHY 18.4 29.5##person takes it with a glass of water.\nAMIHY 0.0 13.8##person eating a sandwich.\nJ95X1 0.0 7.2##a person awakens.\nJ95X1 15.7 22.9##person opens their laptop.\n2OY8R 4.4 16.9##person they play a game on the laptop.\n2OY8R 2.0 7.2##person eating a sandwich.\nSX07Q 43.1 49.0##person puts the blanket down.\nSX07Q 5.5 24.2##the person is opening a box.\nZAO65 1.4 7.2##a person opens a door.\nZAO65 7.9 13.8##person walks into a garage eating a cookie.\nZAO65 18.7 26.9##person take off their shoes.\n75HWR 24.1 31.6##person holding a sandwich on a plate.\n75HWR 27.1 31.6##another person runs by with a sandwich in their hands.\nFGBXJ 18.4 27.2##person opens a book.\nPHH6B 20.8 29.2##person pours coffee into a cup.\nPHH6B 0.0 14.1##person eating food from a plate.\nPHH6B 0.0 14.1##person eats some food.\nPHH6B 20.8 29.2##person pouring tea into a cup on the counter.\n8S9AF 19.9 25.6##person puts a towel on a chair.\n8S9AF 19.9 25.6##the person puts the towel down.\n028CE 2.0 11.0##a person is in a garage fixing a vacuum.\n028CE 9.3 14.6##person start laughing as they get up.\nGG1X2 9.2 17.0##person takes their shoes off.\nGG1X2 3.0 11.1##person closing the door behind them.\nF9RY4 14.9 20.7##person put the drinks on a table.\n2TU40 0.0 7.3##person began cleaning the blanket he was holding.\n2TU40 0.0 12.0##a person is putting a bag on the door.\n5S587 0.6 13.4##person after looking out the window.\n3Q3YY 1.3 13.8##a person closes a door.\nFL7X4 2.1 9.7##person drinks from the glass.\nYGYU5 21.8 38.0##person begin to tidy clothes on the bed.\nYGYU5 19.0 23.6##the person sitting on the bed drinking coffee,stand up.\nYGYU5 4.8 23.0##a person sits down on the bed.\nDIR8Q 0.0 6.8##a person is playing with a phone.\nDIR8Q 4.5 10.7##the person starts putting items on a shelf.\n827O1 15.1 20.3##person they are smiling.\n0GFE8 12.1 19.0##person runs away.\n0GFE8 12.1 19.0##person run out of the room.\nX0CKA 12.2 19.0##person takes a drink from a glass.\nX0CKA 12.2 19.0##person begins drinking a glass of water.\nS3TZ1 31.9 49.9##person begin cooking a meal.\nS3TZ1 0.3 6.3##a person opens up the refrigerator.\nS3TZ1 2.6 12.4##person takes out some food.\nLMX0P 18.9 33.5##a person is playing with a phone.\nLMX0P 18.9 33.5##person playing with their phone.\nAVVX3 10.5 15.4##the person throws the medicine on the floor.\n5DJ3S 7.3 18.0##person looking out the window.\n5DJ3S 16.3 26.0##the person snuggles up to a blanket.\n5DJ3S 5.6 11.2##person drinking a cup of coffee.\n5DJ3S 16.3 26.0##person begins to snuggle with a blanket.\nKTL2G 0.0 10.5##person holding a broom.\nKTL2G 13.7 19.0##person turn off the light.\nKTL2G 13.7 19.0##person turns off a light.\nKTL2G 7.8 17.9##person they close the door.\nKTL2G 7.8 17.9##person closes a door.\nGKVBS 31.6 37.6##person puts a tool on a shelf.\nGKVBS 33.8 41.0##starts to take the bottom off .the person starts laughing.\nGKVBS 31.6 37.6##person they put a tool on a shelf.\nG70CT 0.0 3.5##a person turns on a light.\nG70CT 0.0 3.5##a person turns on the light in a bathroom.\nUEP20 16.4 31.4##person begins to eat it.\nUEP20 16.4 31.4##person eating something.\nUEP20 11.8 19.8##person puts notebook away.\nUEP20 18.7 28.7##person begins to eat a sandwich.\nUEP20 11.6 19.2##person puts it on the shelf next to a picture.\nUEP20 10.3 15.6##the person closes the book.\nUEP20 11.6 19.2##a person putting some papers on a shelf.\nWCIBT 2.2 6.8##person throws a bag on the floor.\nWCIBT 7.4 11.7##person closes the door.\nWCIBT 2.2 6.8##person throwing a bag on the table.\nWCIBT 0.0 4.1##person walks through a doorway.\nWCIBT 0.0 2.6##a person opens a door.\nGPJ6E 14.0 25.6##person put blanket on chair.\nHURN7 19.8 31.0##person they washed their hands in the sink.\nHURN7 12.3 23.4##person starts cooking a meal.\nHURN7 2.0 13.0##the person undresses.\nHURN7 19.8 31.0##person washes his hands.\nHURN7 12.3 23.4##a person was cooking.\nHURN7 2.0 13.0##a person started to undress.\nTI9JB 19.7 25.8##person they close the dryer door.\nTI9JB 19.7 25.8##the person closes the washing machine door.\nMNEQ4 17.8 24.6##the person takes a blanket from a nearby chair.\n9A58F 2.9 8.1##a person is throwing down their shoes.\n9A58F 2.9 8.1##person throws shoes on the floor.\n9A58F 6.4 12.9##person opening a laptop.\nLJ3AI 0.5 7.7##a person is sitting on the couch drinking a soda.\nLJ3AI 7.3 13.6##person drinking for a glass.\nLJ3AI 0.5 7.7##one person is sitting on a sofa doing homework.\nD3KN2 0.0 3.0##a person runs into the dining room.\nD3KN2 13.0 22.0##person put on their shoes.\nD3KN2 13.0 22.0##person puts on shoes.\nD3KN2 0.0 3.0##a sneezing person runs into a room.\nGM4UP 15.5 29.0##person they begin sneezing.\n5Q3QB 7.1 12.3##person closes a door multiple times.\n5Q3QB 7.1 12.3##person closing the door.\nVXM6A 13.0 18.5##putting them under the clothes.the person picks a box.\nVXM6A 16.9 23.9##person they put it in a box.\nVXM6A 7.2 12.0##a person is sitting on the floor in the closet.\nVXM6A 14.3 20.2##the person puts the box under the closet shelf.\nVXM6A 16.9 23.9##put stuff in a box.the person gets up.\nMTZ0T 7.4 15.7##person pours coffee from a cup in to the toilet.\nOMHFD 17.6 22.5##the person takes out their phone.\nOMHFD 19.9 29.1##person laughs at something on the screen.\nOMHFD 19.9 29.1##person starts laughing.\nWREDC 15.2 24.0##person putting the cup on a table.\nWREDC 15.2 24.0##a person puts down a glass on a table.\nYKD6U 1.8 14.2##a person opens a door.\nYKD6U 11.9 21.2##person sits on the chair.\n38BDO 25.8 34.0##person put it on a shelf.\n38BDO 25.8 34.0##person puts it on a shelf.\n38BDO 20.3 34.0##person they put a blanket in a box.\n38BDO 20.3 34.0##person puts a blanket in a box.\n38BDO 20.3 34.0##person puts a folded blanket in a box.\nWT9CR 1.5 7.8##one person swinging a door open.\n406LH 1.4 9.0##a person opens a door.\n406LH 5.9 17.4##a person stands in the doorway eating a sandwich.\n406LH 5.7 17.9##person eats something.\n406LH 5.7 17.9##person stand in the doorway eating food from a dish.\n406LH 13.9 20.1##person close the door.\n452FV 7.4 12.5##a person is holding a box.\nLXSIG 0.0 8.8##person looks out the window.\nKP53W 16.8 24.6##person they close a laptop that's on the counter.\nI1OLQ 5.8 12.6##a person opens a door.\nI1OLQ 0.0 14.9##person both watch more television.\nI1OLQ 0.0 14.9##person watching television.\nI1OLQ 8.4 14.6##person walks into a room ,closes the door.\nH32FR 9.5 18.6##person they put dishes in a corner.\nH32FR 1.1 5.3##person 2 people open a door.\n1QT62 23.3 29.5##a person is laughing.\n7C9RP 1.6 5.9##a person turns on the light in the bathroom.\n7C9RP 1.6 5.9##person turns on the light.\n7C9RP 2.9 14.3##person begins undressing.\nVG9II 3.0 18.4##person drinks from a cup.\nWY433 9.1 19.9##person pours some out into a cup.\nWY433 6.4 12.6##a person walks into room laughing.\nWY433 0.0 5.1##a person laughs as they walk through the doorway.\nWY433 9.1 19.9##person pours it into cup.\nWY433 9.1 19.9##person pours something in a glass.\n77JB7 24.2 41.6##a person is smiling.\nXJU8U 1.3 6.7##a person walks through the doorway.\nXJU8U 8.4 16.4##the person takes their shoes from the floor.\nXJU8U 0.0 7.3##a person opens the door.\nXJU8U 0.0 7.3##a person opens the basement door.\nXJU8U 17.8 23.6##person closes the door.\nRVLXD 11.5 17.4##person they open a cabinet.\nRVLXD 20.5 25.0##person grab the doorknob to open the door.\nRVLXD 19.9 25.0##person holding a doorknob.\n3A400 0.0 6.1##person runs into garage with books in hand.\n3A400 0.0 6.1##a person is running into the garage.\n3A400 3.1 8.3##person opens the books.\nCN480 4.9 8.0##person sits on bed.\nXWQ3Z 6.4 14.5##person throws two pillows.\nIWCXM 0.5 7.7##one person runs into the room with a box.\nIWCXM 0.5 7.7##a person running through a room with a box stops.\n59KH0 7.4 15.4##person starts undressing.\n59KH0 12.8 24.8##another person is playing games on their laptop.\n59KH0 12.8 24.8##person playing games on a laptop.\n59KH0 7.4 15.4##person is undressing in front of a mirror.\nGV40M 5.3 11.8##person is awakening in bed by window.\nGV40M 5.3 11.8##a person is awakening.\nW2QG1 12.2 18.6##person throws their pillow onto a chair.\nW2QG1 12.2 18.6##person throws a pillow on to a chair.\nW2QG1 4.0 13.8##a person awakens in bed.\nW2QG1 12.2 18.6##person throws a pillow off of the bed.\nT82IE 0.0 9.0##person puts the glass on the desk.\nT82IE 0.0 5.0##one person walks through drinking from a glass.\nT82IE 0.0 5.0##person drinking from a glass.\nT82IE 0.0 5.0##a person drinks from a glass.\nT82IE 9.8 17.4##person looking at a book.\nT82IE 4.7 11.5##person sits on the table.\nT82IE 0.0 9.0##person puts the glass on the table.\nO495M 4.0 17.3##person tidying up a table.\nO495M 1.0 9.1##a person is holding a book.\n61KCY 18.5 29.5##a person starts sneezing.\n61KCY 8.5 17.0##person putting on on their clothes in the bathroom.\n5IOQB 17.8 25.5##person they drink a glass of water.\n5IOQB 17.8 25.5##the person takes a drink from a glass of water.\n5IOQB 9.0 20.0##person laughing they take a drink of water.\nMCNRZ 15.0 24.0##the person drinks from a coffee cup.\nMCNRZ 15.0 24.0##a person is drinking a cup of coffee.\n17AZ5 13.5 19.8##the person opens the cabinet door.\n17AZ5 13.5 19.8##the person opens a cabinet.\n17AZ5 4.6 15.3##a person is dressing.\nP6SOI 21.3 31.2##that same person opens the door.\nP6SOI 21.3 31.2##person open the door.\nPW9P0 0.0 6.5##a person is undressing in a home office.\nPW9P0 0.0 6.5##a person is sitting down undressing.\nTU1C9 10.9 20.7##person eats a sandwich.\nTU1C9 0.0 8.0##a sneezing person is eating a donut.\nTU1C9 28.0 32.0##person drinks from a cup.\nKTKWL 4.1 15.2##a person takes a box.\nKTKWL 11.4 20.8##person opens the door.\n3IJGQ 0.0 14.3##a person is lying down eating a sandwich.\n3IJGQ 12.0 18.1##person they put the dirty dishes on the table.\n3IJGQ 0.0 10.1##a person is seen smiling.\nLU82W 0.0 2.5##a person throws a box onto the table.\nLU82W 0.0 2.5##a person throws a box onto a counter.\nQMTF2 12.3 19.0##person throws blanket.\nQMTF2 12.3 19.0##person begin throwing the blanket towards the door.\nHAA4O 16.0 30.2##person takes a picture out the window.\nHAA4O 4.6 13.2##person closes the door.\nHAA4O 16.0 30.2##person take a picture of a view outside the window.\nR77MC 13.7 20.9##the original person in the room puts down a glass.\n6R6RS 14.4 23.6##person put their shoes on.\n6R6RS 14.4 23.6##person puts on their shoes.\nJ0VXY 14.9 30.3##person start tidying up the shelf.\nIM2WK 1.6 10.0##person walks in room holding clothes.\nIM2WK 4.4 11.4##a person throws some clothes onto a chair.\nIM2WK 4.7 11.2##person puts clothes on chair.\nSUI1X 1.7 10.3##a person is opening a bag.\n46A6J 14.2 22.3##person takes a broom.\n5DPC8 33.9 37.0##person sits on a chair they take out their phone.\n5DPC8 1.4 7.7##a person turns on the light in a bathroom.\n857S9 0.0 7.9##the person is sitting at a dining room table smiling.\n857S9 0.0 7.9##person begins smiling.\nG1JBI 0.0 5.4##a person opens a cabinet.\nG1JBI 29.1 35.8##person they close the cabinet.\nG1JBI 29.1 35.6##the person closes the pantry doors.\nG1JBI 0.0 5.4##person opened the cabinet door.\n0VQQL 0.0 13.7##a person is laying on the floor reading a book.\n0VQQL 17.8 26.4##person open the door.\nKF42S 10.6 16.6##person they stand up.\nEBHC9 0.0 12.8##a person holding a pillow walks into the room.\nEBHC9 0.0 12.8##a person holds a throw pillow under one arm.\nB3RHF 15.2 21.0##person eats food.\nB3RHF 15.2 21.0##person they start eating it.\n85ABO 0.3 4.4##a person throws a pillow on the floor.\n85ABO 0.3 4.4##a person throws a pillow down onto the floor.\nIKOAX 20.0 27.6##person they stand up.\nIKOAX 20.3 28.7##person take a picture with a camera that they.\nIKOAX 26.2 31.0##person put on a shelf.\nIKOAX 26.2 31.0##person puts a camera on a shelf.\n8Z9GW 0.0 14.0##the person gets dressed.\n8Z9GW 11.9 20.8##the person sits on the chair.\n8Z9GW 0.0 14.0##a person is standing in their closet dressing for work.\n3H1EA 1.9 6.7##a person throws a book onto the table.\n3H1EA 8.7 16.1##person pouring a beverage into a glass from a carton.\n3H1EA 8.7 16.1##person they pour a glass of milk.\n3H1EA 0.0 6.3##a person reads a book.\nNMC5N 0.0 14.0##person holding a cup of coffee.\nNMC5N 11.0 16.0##the person puts the cup of coffee down.\nIIFVE 1.9 9.7##a person is throwing clothes on the floor.\nX898O 6.8 12.7##a person is putting papers onto a shelf.\nX898O 17.8 24.9##person putting them on a table.\nL8Y8D 30.6 36.5##person opens the refrigerator.\nUVP3F 4.1 13.0##a person opens the refrigerator.\nFPODN 5.6 18.1##person sits down on the couch.\n5VJ1X 16.8 28.4##person drinking a glass of water.\n5VJ1X 16.8 28.4##person takes a drink from a glass of water.\nAZMVM 14.6 26.0##person holding a pillow.\nSHTLT 15.6 24.0##a person is closing the doorway to their kitchen.\nSHTLT 0.0 15.6##person eating a sandwich.\nSHTLT 0.0 15.6##a person is eating a sandwich.\n0PA3N 2.7 8.8##a person is throwing shoes.\n0PA3N 8.8 23.7##person sits on the bed.\n0PA3N 2.7 8.8##a person throws shoes on the floor.\nKZ7Y8 1.8 11.1##a person opens a door.\n481PN 5.7 12.3##a person is putting a glass down.\n481PN 5.7 12.3##a person is putting a glass down by the phone.\nQOJ09 12.1 17.9##person opens a book.\nQOJ09 12.1 17.9##person they open the book.\nQOJ09 13.9 27.5##person laugh as they look through it.\nQOJ09 10.0 16.1##person take a book from the table.\nQOJ09 13.0 26.4##the person reads whats in the book.\nGA4EI 20.6 26.9##a person is sitting in the closet holding a bag.\nGA4EI 29.4 35.2##person the bag lights up.\nGA4EI 30.3 36.6##person puts the phone in a closet.\nGA4EI 24.0 29.1##person puts it up on the shelf.\nBLB6G 3.6 14.7##a person is awakening on a couch.\nBLB6G 3.6 14.7##a person is awakening on a sofa.\nA75XI 9.9 17.6##person take a drink of water from a glass.\nMAO8N 25.0 37.0##a person is putting a towel in a box.\nMAO8N 25.0 37.0##person putting it in a box.\nMAO8N 25.0 37.0##person puts the box away on a shelf.\nMAO8N 25.0 37.0##person putting the box on a shelf.\nDXUQS 0.0 14.5##person holding a broom.\nDXUQS 17.5 26.9##person putting away groceries.\nDXUQS 10.8 16.4##a person in the kitchen is laughing.\nGOCDE 5.4 11.0##person sits on the couch.\nGOCDE 3.6 9.0##a person pours water into a glass.\nXHB9U 0.0 14.1##a person is in a bedroom holding a mirror.\nSN85M 25.6 30.6##person throws a box through a doorway.\nSN85M 25.6 30.6##a person is throwing a box.\n3YGOV 10.3 20.8##person snuggles with a pillow.\n3YGOV 0.5 5.9##a person runs into a laundry room.\n3YGOV 0.5 5.9##a person runs into the laundry machine.\n3YGOV 6.6 12.7##person drinks from a cup.\nUA2PO 16.8 33.0##a person is dressing in the bathroom.\nIV8MD 8.1 14.4##person starts eating.\nIV8MD 8.1 14.4##person eat it.\nIV8MD 0.0 5.4##a person is laughing.\nIV8MD 8.1 14.4##person eating a sandwich on the stairs.\nESTFR 7.9 19.1##the person takes their shoes off.\nESTFR 7.9 19.1##person takes off their shoes.\n5QXCO 13.6 22.3##the person puts the clothes in a washing machine.\n5QXCO 13.6 22.3##person after throwing clothes in washer.\nSVPZT 0.0 4.6##person they take off their shoes.\n78SO8 6.1 11.9##person pour some into a glass.\n78SO8 6.1 11.9##person pouring said juice into a glass.\n78SO8 1.4 10.1##person opens the door to their pantry.\n80FWF 2.3 12.4##person takes out a towel.\n80FWF 0.2 5.6##person turns on a light.\n80FWF 0.2 5.6##person they turn on the light.\n5FHH2 21.3 26.0##the person throws the stack of clothes onto a pillow.\n5F1AW 0.0 5.4##a person puts a book down onto the shelf.\n5F1AW 0.0 5.4##the person puts a book on the shelf.\nEHHRS 1.6 6.8##a person turns on a light.\nEHHRS 14.2 21.7##person takes some medicine.\nEHHRS 1.6 6.8##person they turn on the light.\n386XM 0.0 5.3##a person opens a door.\n386XM 2.5 13.6##person watching the evening news on television.\n386XM 2.5 13.6##person resumes watching television.\nU4W3C 0.0 4.6##person he puts a book down.\nU4W3C 0.0 4.6##one person puts down a book.\nU4W3C 17.9 29.0##person sits down to open their book.\nIKYVB 0.0 8.2##a person put away a pillow in the laundry room.\nG4MNO 0.0 7.5##a person is laughing at a television.\nG4MNO 9.4 17.0##person opening a book.\nG4MNO 21.3 27.0##person opens a door.\nG4MNO 7.8 13.5##the person takes a book off the desk.\nWHRBU 16.5 26.8##person they stand up.\nQU2WL 12.0 19.1##person they are eating a sandwich.\nQU2WL 12.0 19.1##person starts eating.\nF2EA8 10.0 19.9##person both people drink from their cups.\n93YXJ 5.3 14.4##person takes some food from a bag.\n93YXJ 5.3 14.4##person takes out some food.\n93YXJ 39.0 44.0##person stand up.\n93YXJ 2.5 7.8##a person opens a bag of groceries.\nJJLTF 8.0 15.4##person start sneezing.\nJJLTF 5.3 12.0##a person is drinking from a cup.\nQEY8N 0.4 8.2##a person runs into the room holding a broom.\nQEY8N 4.5 10.6##the person puts the broom against the wall.\nQEY8N 17.9 24.4##person sits in a chair eating the sandwich.\nQEY8N 17.9 24.4##person sitting in a chair eating a sandwich.\nQEY8N 2.6 10.3##person walks through a doorway.\n72JYK 6.7 12.0##the person opens a laptop.\nQS6O1 4.6 11.0##a person pours liquid into a cup.\nQS6O1 19.5 24.8##person puts food in a bag.\nQS6O1 19.5 24.8##the person puts food from the pantry into a bag.\nGV9M4 12.4 17.0##person takes a drink from a glass of water.\nGV9M4 1.3 10.9##a person opens a door.\nGV9M4 12.4 17.0##person drinking a glass of water.\nGV9M4 20.4 26.1##person looking out a window.\nGV9M4 12.4 17.0##person take a drink from a glass.\nGV9M4 1.3 10.9##a person opens the closet door.\n4O32W 0.0 8.7##person drinking a glass of water with the other.\nENJ7V 16.9 34.9##the person takes off their shoes.\n78XZ9 3.7 10.0##person smiling at a book.\n78XZ9 6.3 20.1##person they open the book.\nN2TPE 15.0 29.2##person puts the clothes in.\nN2TPE 8.2 18.7##person takes out clothes opens washing machine.\nN2TPE 1.5 8.0##person puts laptop on table.\nN2TPE 1.5 8.0##a person puts their laptop on the table.\nN2TPE 6.8 12.7##person opens closet.\nHJ5TL 0.0 10.6##a person is putting dishes away.\n6QH7V 19.8 26.6##person throw it on the floor.\nNWFOF 7.1 20.9##person looking out the window for a few seconds.\nNWFOF 7.1 20.9##person turns to look out a window in a door.\nNWFOF 0.0 9.0##a person is seen smiling.\nFPWD0 8.4 13.8##person closing the refrigerator.\nU36AB 15.4 30.0##person drinks from cup.\nU36AB 29.4 33.0##person puts cup on floor.\n3ND23 16.0 31.0##person snuggling under a blanket to watch television.\n3ND23 9.9 19.9##person put a blanket around them.\n3ND23 8.1 13.9##person they sit on a sofa.\nL36YT 17.8 22.0##person sits on the sofa.\nHBQ33 0.0 8.9##a sneezing person takes medicine.\n8G9A9 6.1 13.4##a person smiles as the put a laptop.\nTUPTT 25.3 34.0##person sits down to put their shoes on.\nTUPTT 25.3 34.0##the person sits on a couch to put shoes on.\n6CGRP 25.1 32.0##person lays on the floor.\n2DDGF 18.2 25.9##the person puts a laptop on a shelf.\n2DDGF 12.1 21.9##person opens a closet door.\n2DDGF 18.2 25.9##the person puts their laptop on a shelf.\n2DDGF 0.0 5.3##a person is drinking water from a glass.\nYQ9ML 8.8 17.3##person fixes their hair.\nW0Y4E 3.4 8.3##a person is throwing a blanket on the bed.\nW0Y4E 8.7 19.4##person eating food.\nW0Y4E 8.7 19.4##person jumps on it to eat a sandwich.\n268ET 0.0 9.7##a person opens a bag.\n5KOTU 1.1 8.3##a person is in a hallway they open a door.\n0XB7U 0.0 12.6##a person is looking through a book.\n0XB7U 21.6 31.0##person washes their hands.\n0XB7U 0.0 12.6##a person is reading a book.\n0XB7U 10.8 17.5##person sneezing into it.\nTIPUS 10.3 18.0##person watches something visible in the mirror.\nPXBN0 24.6 30.0##a person is eating.\nPXBN0 24.6 30.0##person they start to eat the snack.\nXBXKO 30.3 36.7##the person takes some clothes out of the dryer.\nP981O 21.3 31.1##the person closes the door behind the person.\nDP7DG 0.0 4.1##person they are holding open a box.\nDP7DG 1.0 7.7##the person is holding a box of dishes.\nV45U8 28.4 33.0##person fixing a desk drawer that holds shoes.\nQG338 15.8 23.4##person eats a sandwich.\nQG338 0.0 5.4##a person opens a door.\nQG338 4.9 14.4##person looks at a picture.\nQG338 0.0 5.4##the person open the door came inside.\nT8DK4 16.3 23.3##person fixing hair.\nT8DK4 0.0 6.3##a person is sitting on the floor smiling.\nT8DK4 0.0 10.5##the person laughs.\nT8DK4 15.7 26.7##person puts the mirror on the shelf.\nT8DK4 15.7 26.7##person putting it on the shelf.\nBWLA8 15.9 30.4##the person looks through the book.\nNSHA7 11.3 20.2##person they take a book off the bed.\n7K9XM 51.0 108.7##person washing a mirror in a pantry.\nAJZYE 2.3 10.3##a person opens a closet door.\nAJZYE 2.3 10.3##person they open the door.\n9RX96 27.6 37.5##person looks out the window.\n1PB6T 8.4 17.3##the person takes a pen paper.\n1PB6T 1.1 9.1##a person opens a box of food.\nLEPM3 1.3 8.3##a person is opening a cabinet.\nEL3N9 2.5 9.4##person sits in a chair.\nEL3N9 2.0 19.9##a person walks in holding a bag of groceries.\nEL3N9 22.0 35.2##person put the groceries away in the refrigerator.\nXKJAD 11.8 17.5##person sits at the table.\nS1J2Q 0.2 7.5##one person is running to the refrigerator.\nS1J2Q 10.8 20.8##person opens a refrigerator.\nS1J2Q 0.2 7.5##person runs to another room.\nNY0IW 10.7 15.8##person they put some clothes on a table.\nNY0IW 4.3 12.7##a person is undressing in the laundry room.\n00YZL 25.4 34.0##person open the refrigerator.\nL8HMR 3.4 14.0##person puts a blanket into the washing machine.\nU5CDS 5.1 10.9##the person sits in a chair.\nZO3EG 15.9 31.5##person put some books from a shelf into it.\nZO3EG 31.9 38.6##person open the door.\nZO3EG 12.1 18.8##person they hold a bag open.\nZO3EG 1.6 11.5##person some other clothes in a washer.\nZO3EG 12.1 18.8##person they open a bag.\nZO3EG 0.9 9.4##a person undresses in the laundry room.\nZO3EG 6.0 13.4##person throws the clothes into the open laundry machine.\nX5E6E 5.7 11.5##a person is drinking a cup of coffee.\n5ACD3 41.0 46.0##person as they stand up.\n5ACD3 41.0 46.0##person put it on a table.\nU91SO 22.5 32.0##person start closing a nearby cabinet.\nU91SO 22.5 32.0##person closes the cabinet doors.\nDP5S8 4.7 13.0##person is undressing.\nW4BZX 9.4 15.4##person opening up a laptop.\nW4BZX 9.4 15.4##person opens up the laptop.\nSXDG5 1.0 14.2##a person turns on a light.\nSXDG5 1.0 14.2##the person walks into a room turns on the light.\nSXDG5 1.0 14.2##a smiling person turns on the light in their garage.\nDQFF2 7.1 13.7##person he opens his window.\nDQFF2 4.6 19.3##a person is holding a bag.\nDQFF2 7.1 13.7##the person opens a window.\nK3IGM 34.9 40.0##person begins sneezing.\nK3IGM 20.6 37.9##person puts on a pair of shoes.\nK3IGM 0.0 6.1##a person is holding a towel.\nK3IGM 5.1 21.6##person starts dressing.\nK3IGM 20.6 37.9##person putting on shoes.\nK3IGM 0.0 5.7##person puts the towel down.\nVTOYP 14.1 24.3##person start laughing.\nB7SZJ 10.9 17.2##person puts the clothes in.\nB7SZJ 0.0 3.3##a person walks out a door holding clothes.\nB7SZJ 2.5 7.5##person closes the door.\nB7SZJ 2.5 7.5##person closing the door behind.\nB7SZJ 2.5 7.5##person closing the door.\nB7SZJ 4.9 10.7##the person opens the door.\nV54TI 13.9 21.9##person stand up.\nV54TI 10.0 18.2##person they take a pillow.\nV25D1 0.0 7.2##a person is undressing in front of a mirror.\nV25D1 8.6 14.4##person begin to eat the sandwich.\nV25D1 8.6 14.4##person eating a sandwich.\nV25D1 0.0 7.2##a person undresses in front of a mirror.\n98NYF 13.6 21.0##person run up the stairs.\n98NYF 13.6 21.0##person run out of the room.\nIJ3QB 0.0 5.2##person sits down on sofa.\nIJ3QB 10.2 19.2##person holding sandwich.\nIJ3QB 0.0 5.2##a person sitting on a couch opening medicine.\nIM3I0 17.7 32.0##person sits down on the floor.\nIM3I0 17.7 32.0##person they sit on the floor.\nLDL8D 0.0 9.5##a person is laughing.\nLDL8D 0.0 9.5##person sitting at dresser looking at her phone laughing.\nZOL0R 15.2 20.5##person putting clothes on floor.\nZOL0R 3.7 10.4##person starts opening door.\nZOL0R 3.7 10.4##a person opening a door.\nLRQXG 1.8 13.1##a person is putting clothes on a chair.\nLRQXG 0.0 11.2##a person is throwing some clothes into a pile.\nZED9E 0.0 3.1##a person is in the living room eating a sandwich.\nZED9E 0.0 3.1##a person eating a sandwich crouches next to a vacuum.\nZED9E 4.5 9.4##the person fixes a vacuum cleaner.\nZED9E 4.5 9.4##person fixing the vacuum.\nJQLD3 7.1 14.4##person eat some.\nJQLD3 7.1 14.4##person eats some food.\nJQLD3 6.0 11.9##a person is holding food.\n3MAY9 7.0 19.6##person drinks a glass of water.\n2D5GN 0.0 5.0##person begins tidying a shelf.\nXZM6Y 12.5 18.0##person runs out.\nXZM6Y 9.0 13.8##one person with a sandwich closes a cabinet.\nXZM6Y 12.5 18.0##person runs out of the room.\n3ZUVI 1.0 6.8##person opens bag.\n3ZUVI 0.0 3.4##person takes out a book.\n3ZUVI 7.9 13.2##person closes a cabinet.\n3ZUVI 6.2 11.5##person opens cabinet.\n3ZUVI 2.8 7.6##one person throws a bag containing a book down.\n6N4BD 1.7 18.0##a person is awakening from laying down on the floor.\n6N4BD 22.3 34.0##person begin eating some unhealthy snack food from it.\n6N4BD 22.3 34.0##person eat from a grocery bag.\n6N4BD 22.3 34.0##person eats something.\n6N4BD 14.5 25.1##person they open the bag.\nYVK8M 0.0 3.8##the other person is leaving the refrigerator open.\nYVK8M 0.0 3.8##person opening the refrigerator taking out some products.\nF5C5M 22.9 32.0##person takes a picture of it.\nF5C5M 18.3 23.7##the person takes out a camera.\nF5C5M 22.9 32.0##person looks through some pictures.\nLIP4U 0.0 13.2##a person undressed.\n2RJF6 20.0 29.6##person fixing hair.\nT2EIY 17.4 23.9##person they are drinking a glass of water.\nT2EIY 17.4 23.9##person drinking a glass of water.\n18CTK 0.6 7.8##a person comes running through a door holding a laptop.\nB3HCE 4.4 12.1##person they put a bag on a chair.\nB3HCE 1.3 8.4##a person opens the door.\nB3HCE 1.3 8.4##a person opens a door.\nB3HCE 10.4 17.7##the person closes the door.\nB3HCE 1.3 12.9##person walks in the entryway holding a bag of groceries.\nB3HCE 17.5 23.3##person open a book.\nA9BDS 0.9 7.3##person takes a bag of groceries.\nQKOP0 0.0 6.6##person opens the door.\n1XFP6 27.4 31.0##person lays on floor.\nPG32H 14.5 26.6##a person dresses.\nPG32H 36.4 53.0##person tidily puts it on a table near a window.\nPG32H 14.5 26.6##person dressing themselves.\nYLIMP 11.7 30.4##person bending down to put their shoes on.\nWQSYC 3.1 12.5##person reads a book.\nWQSYC 13.5 21.0##person drinks some water from a bottle.\nWQSYC 13.5 21.0##person drinking from bottle of water.\nOMBR9 5.8 14.4##a person is sitting in a chair.\nOMBR9 5.8 14.4##a person sits down at a chair.\nOMBR9 24.7 51.6##person starts to eat food.\nOMBR9 24.7 51.6##person eats one.\nOMBR9 24.7 51.6##person begin eating food.\nOMBR9 48.2 63.0##person taking a drink from the bottle.\n83XF0 0.0 3.9##a person opens the door.\nPZS0C 2.2 10.1##person they stand up.\nPZS0C 0.0 6.8##a person is awakening in their bedroom.\nPZS0C 2.2 8.6##a person who is sitting on a bed gets up.\n892RS 27.2 32.0##person walks through a doorway out of the room.\n892RS 20.8 25.4##person he opens the cabinet.\n892RS 21.7 26.6##person puts dishes inside.\n892RS 15.5 20.8##the person puts down the towel.\n1514T 15.7 23.2##person closes the door.\n1514T 15.7 23.2##person laughing as they close the door in a pantry.\nAM4QC 4.3 10.6##the person closes the refrigerator.\nAM4QC 0.0 6.0##a person opens the refrigerator.\n4JKLQ 1.5 8.3##a person opens a cabinet.\n4JKLQ 5.0 18.4##person puts some food inside.\nPT2Z0 11.0 20.0##person throws a plastic bag onto the floor.\nPT2Z0 11.0 20.0##the person throws a bag onto the ground.\nWRXI4 22.3 32.0##person takes a towel from the dryer.\nWRXI4 27.0 32.0##the person puts a towel into the washing machine.\nAGZ28 0.0 8.6##a person is closing a window.\nQYE21 21.9 30.7##person close the window to the room they're in.\nQYE21 21.9 30.7##person close the window.\n2F7AQ 0.0 14.4##a person is playing on a laptop.\n0TQZQ 14.6 18.8##the person closes the book.\nVGU6Y 10.0 16.6##person takes a phone.\nCDNV7 18.4 23.8##another person turns on a light.\nCDNV7 18.4 23.8##person turns on the light.\n4JQBM 0.0 14.0##a person standing on a steps holding a blanket.\n4JQBM 0.0 14.0##a person is standing on the stairs holding a blanket.\nTRHB9 2.1 9.1##person they put the towel down.\nTRHB9 0.0 7.1##person holding a towel.\nTRHB9 6.8 21.2##person put on shoes.\nTRHB9 6.8 21.2##person putting shoes on.\nTRHB9 2.1 9.1##person putting a towel on a dryer.\nOLELC 1.8 7.0##the person takes a sip from a cup.\nOLELC 0.0 5.8##person drinking out of a coffee cup.\nOLELC 3.1 10.7##person cooking on the stove.\n279W6 3.4 10.8##person snuggling up to a pillow.\n279W6 3.4 10.8##person snuggles with a pillow.\n279W6 3.4 10.8##person snuggling with a pillow.\nMKDCU 0.0 7.8##a person awakens in their bedroom snuggling a pillow.\nJYDCI 17.7 32.0##a person is awakening in a bed.\nTK76G 12.4 17.0##a person is eating at the table.\nQEG5O 0.0 7.5##a person awakens.\nQEG5O 0.0 7.5##a person is awakening in bed.\nQEG5O 5.6 11.1##person as they get up they begin sneezing.\n9LO9F 27.4 37.0##the person in bed sits up.\n9LO9F 31.6 37.0##person is holding a medicine.\nHFYNW 14.5 19.0##person they start sneezing.\nHFYNW 0.0 9.0##a person is sitting at a kitchen table eating.\nHFYNW 0.0 9.0##a person is eating in the kitchen.\nV3LMY 24.0 32.0##person puts the cup down on the table.\nV3LMY 0.0 12.7##the person is sitting on a couch.\nYJV7W 1.8 12.0##person takes a picture of a light in the room.\nYJV7W 9.6 16.6##the person begins dressing.\nYJV7W 1.8 12.0##person turns on the light.\nYJV7W 1.8 12.0##person looks at a light.\n0XV4T 9.4 18.0##person they put clothes into the washer.\n0XV4T 0.0 6.5##this person pours a glass of water.\n0XV4T 9.4 18.0##person puts clothes in the washer.\n0XV4T 0.0 6.5##a person pours some liquid into a cup.\n0XV4T 10.9 17.3##next the person puts a blanket in the washer.\nY6P1E 2.0 7.6##a person is opening a cabinet door.\nGK08Z 12.3 22.7##person closing the closet.\nGK08Z 1.9 9.6##person opens the door.\nGK08Z 1.9 9.6##a person is opening a closet.\nGK08Z 8.2 15.3##person putting a box inside.\nRTEO8 3.7 9.1##one person throws down a pair of shoes.\nRTEO8 3.7 9.1##person throws some shoes on the floor.\nOO4FE 12.0 18.6##person opens a book.\nOO4FE 0.1 6.6##a person throws a bag that was on the table.\n71J7E 7.8 18.7##person they put the broom in a corner.\n71J7E 7.8 18.7##a person is putting a broom in a corner.\nLR6RZ 2.8 11.4##a person is running to the stove.\nLR6RZ 2.8 11.4##a person runs into the kitchen.\nTIGIP 11.7 21.6##person puts a blanket to their legs.\nTIGIP 0.0 5.8##a person opens a door.\nTIGIP 8.4 13.5##person sits down on a couch.\nTIGIP 8.4 13.5##the person sits on the sofa.\nTIGIP 3.5 9.2##person closes the door.\n48EEP 0.0 12.4##a person is smiling.\n48EEP 0.0 5.9##person laughing by the stove.\nU79C9 20.0 36.0##person begin to snuggle with a blanket.\nU79C9 3.2 17.5##person takes off their shoes.\n01KM1 15.2 26.3##person they are eating some food.\nWD6WB 11.4 20.0##a person is fixing a doorknob.\nWD6WB 11.4 20.0##one person is fixing a squeaky doorknob.\nLZ8Z0 29.8 34.4##person puts the broom back to where it was found.\nLZ8Z0 3.6 9.2##person takes a broom.\nS1UFD 25.6 30.5##person turns off the light.\nX1EZQ 2.0 11.3##person eats it.\nX1EZQ 2.0 11.3##person eating a snack.\n1LZ53 1.7 13.0##a person sitting on a bed stands up.\n1LZ53 19.2 31.4##person walks over to the glass window to close it.\n1LZ53 1.7 13.0##person sitting on bed watching tv.\n5A3FT 13.9 22.1##a person begins undressing.\nEWBOG 11.5 21.3##person eating from a plate.\nEWBOG 9.5 22.3##person eating a sandwich.\nEWBOG 9.5 22.3##person they eat the sandwich.\nEWBOG 3.6 11.6##a person in sneezing on a doorknob.\nR6TI2 22.9 29.2##person opens door.\nR6TI2 22.9 29.2##person opens the door.\nR6TI2 23.1 28.5##person stand up.\n6J8NE 0.0 5.3##person closes door.\n0H04V 18.5 26.8##laughing at another person pouring something down the sink.\n0H04V 0.0 5.5##a person walks into his home holding a bag.\n3CA1X 23.2 32.0##person eat it.\n3CA1X 23.2 32.0##person start eating.\n81R3C 8.5 17.5##person they look out the window.\n81R3C 8.5 17.5##the person looks out the window.\n81R3C 0.0 7.3##person puts it back down on the table.\nKAU5T 21.5 33.0##person runs out the door.\nKAU5T 0.0 14.4##a person drinks water from a glass.\nKAU5T 21.5 33.0##person runs out of the room.\nMKBH8 25.5 31.0##another person walks in the room smiling.\nMKBH8 25.5 31.0##one person walks into the kitchen smiling holding dishes.\nPWC0F 5.6 11.7##person starts running to grab some medicine.\nPWC0F 5.6 11.7##person runs to the closet.\nPWC0F 0.0 8.5##a person awakens.\nRVWK8 23.4 29.6##person closes the door.\nRVWK8 18.7 24.0##the person person takes some medicine from the shelf.\nRVWK8 9.9 17.4##person opens the door.\nRQVJK 0.0 8.3##person sitting in a chair.\nRQVJK 0.0 8.3##person they begin sneezing.\nSL9ZD 0.0 5.5##a person puts a box on the floor.\nZZN85 3.8 9.7##a person is putting dishes away in a cabinet.\nZZN85 3.8 9.7##a person is putting dishes in a cabinet.\n3CAPI 3.7 10.5##a person is throwing clothes everywhere.\n3CAPI 3.7 10.5##a person throws come clothes on the floor.\nQIQUA 3.4 16.2##person washing the window.\nLVGX3 0.0 7.8##a person is cooking on a stove.\nLVGX3 8.9 15.2##person they stop undressing when they step on a pillow.\nLVGX3 0.0 7.8##a person is cooking.\nLVGX3 8.9 15.2##person beginning to undress.\nLVGX3 8.9 15.2##person begin undressing.\n7U9EW 12.1 18.3##person another walks through the doorway.\n7U9EW 15.3 28.4##a person eats in a doorway.\n7U9EW 15.3 28.4##one person is eating near the doorway.\n2X7F6 18.1 25.5##person begins eating.\nHOGVD 13.5 25.4##person begins eating it.\nHOGVD 13.5 25.4##person eats one.\nCGNBJ 17.3 23.4##person they throw them on the floor.\nCGNBJ 30.8 39.0##person eats an apple.\nCGNBJ 14.2 21.7##person opens a cabinet.\nCGNBJ 30.8 39.0##person eating an apple.\nCGNBJ 16.9 30.4##a person is in their closet tidying up.\nCGNBJ 17.3 23.4##person begin throwing clothes onto the floor.\nCGNBJ 17.3 23.4##person throws clothes on the floor.\nCGNBJ 14.2 21.7##person open a closet.\nQ071E 2.4 10.7##person a towel they open the bag.\n08Y62 11.2 15.5##person playing with the light switch.\n08Y62 11.1 15.2##person turns off the light.\n08Y62 11.2 15.5##person turns the light back on.\nGH3D1 2.3 11.3##a person is cooking food on a stove.\nGH3D1 7.9 13.3##the person cooking on the stove is eating food.\nWSB7W 0.0 8.1##the person opens a laptop.\nWSB7W 0.0 8.1##a person is opening a laptop.\nU37WC 22.9 29.2##person finally eating a sandwich in a bedroom.\nU37WC 18.1 24.2##person sneezing into a towel.\n1VUDV 18.2 23.5##the person takes a glass of water from the table.\n1VUDV 0.0 8.6##a person laughs as they cook food on the stove.\nWGZ29 1.8 12.5##the person is sitting on the bed.\nWGZ29 1.8 12.5##person sitting on the bed watching tv.\n4ZY8C 25.1 31.1##person puts a book in a bag.\nJQKR5 26.4 41.9##person eating it.\nJQKR5 26.4 32.7##person starts eating a sandwich.\nJQKR5 0.0 2.8##a person sits on a couch.\n0KISF 20.2 31.0##the person begins laughing.\nMWAGL 15.4 21.5##person they take out some food.\nMWAGL 9.0 15.9##person open the refrigerator.\nMWAGL 15.4 21.5##person takes food from a refrigerator.\n2BS0V 24.9 31.3##person opens the door.\n2BS0V 29.3 35.0##person closing the door behind them.\nAOBWQ 22.7 30.3##person begin throwing clothes on it.\nZ9THH 16.8 23.0##person take a bag.\nZ9THH 16.8 23.0##the person takes a backpack/bag from a bed.\nE780X 0.0 5.7##a person puts shoes on the floor.\nE780X 1.7 10.9##person drinks from a glass.\nE780X 1.7 10.9##person drinking out of a glass.\nO4P08 9.0 16.4##the person puts the vacuum on a table.\nODFF6 19.5 32.0##person two people are laughing.\nODFF6 4.5 9.9##person throwing a bag back.\nOJVOV 21.1 31.0##person holding a towel.\nOJVOV 23.1 31.0##a person holding a mirror is sitting on a chair.\n5EDX4 26.3 33.0##person begin to put the laptop in a box.\n5EDX4 26.3 33.0##person put the laptop in a box.\n5EDX4 26.3 33.0##person puts the laptop inside.\n5EDX4 26.3 33.0##person opens a box.\n5EDX4 15.7 25.4##person closes the laptop.\nEDVAM 10.2 16.0##person begins closing the window.\nEDVAM 0.0 7.1##a person is holding a pillow.\nEDVAM 0.0 7.0##person sitting on a couch.\n0V4B3 0.3 6.6##another person is drinking from glass cup.\nLU3SU 5.0 12.0##person they take clothes out of the box.\nLU3SU 0.0 5.1##person opens the closet.\nQCBIG 0.0 13.4##a person is in a garage snuggling a blanket.\nQCBIG 13.7 22.6##person start to undress by the doorway.\n56JT8 0.0 5.1##a person is eating food.\n56JT8 0.0 5.1##a person is eating food off a plate.\n29JK6 24.6 30.0##person closes the cabinet.\n29JK6 0.0 12.9##person putting groceries away.\n29JK6 29.4 35.9##person close the door.\n29JK6 0.0 12.9##person puts groceries on a shelf.\n29JK6 0.0 12.9##person putting some groceries into the right place.\n29JK6 13.0 22.0##person they begin undressing by taking their jacket off.\n29JK6 29.4 35.9##person closing the door behind them.\nA1VTR 15.2 29.7##person starts undressing.\nA1VTR 15.2 29.7##person they start undressing by taking their jacket off.\nEQ4GN 0.0 12.0##a person takes some medicine.\nEQ4GN 7.8 24.5##person drinks water from a glass.\nZP6LO 0.0 7.2##person drinking from a cup.\n2ECXI 5.7 13.2##person opens laptop.\n2ECXI 5.7 13.2##person opening their laptop.\n2ECXI 2.1 8.1##person lies on bed.\n1W2NR 1.6 7.4##person walks into room though doorway.\n1W2NR 22.0 29.1##person goes to sink to wash their hand.\n1W2NR 22.0 29.1##person wash their hands at a sink.\n1W2NR 9.9 16.5##person is walking around room wrapped in blanket sneezing.\nVL20E 16.8 23.0##person runs away.\nVL20E 16.8 23.0##person run out of the room.\nVL20E 14.2 23.0##person they begin sneezing.\nCHQ41 12.1 23.5##person they begin drinking from a glass of water.\nDJMZC 6.2 14.2##a person awakens in bed.\n65RS3 14.4 28.2##person holds up a broom.\nE653K 21.0 27.0##person walks out closing door behind.\nE653K 18.0 24.0##person open the front door.\nE653K 18.0 24.0##person opens door.\nBOOKV 22.3 32.0##person sitting on the couch.\nHA8MN 16.1 20.4##the person with the coffee takes the other person's book.\nHA8MN 16.1 20.4##person takes the book away.\nJ0JD1 0.5 7.1##person closes the door.\nJ0JD1 8.5 14.3##person looks through the window.\nJ0JD1 0.0 4.0##a person is running through the door.\nJ0JD1 8.5 14.3##person they look out the window.\nJ0JD1 0.0 4.0##a person runs into the entryway.\nM1FNW 1.8 6.9##person takes a laptop off a table.\nKXAIZ 8.1 14.3##person opening a cabinet.\nKXAIZ 8.1 14.3##person opens a cabinet.\nKXAIZ 8.1 14.3##person opens a cabinet door.\nKXAIZ 0.4 5.7##a person walks through a doorway.\nN5U8Z 21.0 37.4##person looks at a picture on the wall.\nTBXFO 15.5 24.1##person takes off shoes.\nTBXFO 15.5 24.1##person takes off some shoes next to a table.\nTBXFO 7.1 16.7##person someone walking in a doorway.\nTBXFO 30.8 41.1##the person turns on the light.\nTBXFO 40.7 48.4##the person pours a drink into a glass.\nTCM46 19.0 24.0##person turns the light off.\nTCM46 19.0 24.0##person finally turning off a light on the stairs.\n7J5AA 8.9 17.9##a person turns on a light.\n7J5AA 9.2 24.0##person sits down on a chair.\n7J5AA 8.9 17.9##a person turns on the light in the laundry room.\n7J5AA 5.2 19.1##person they drink a cup of coffee.\n7J5AA 9.2 24.0##person sits in a chair.\nSCOML 20.1 26.2##the person throws a pillow across the room.\nSCOML 20.1 26.2##person throws the pillow somewhere.\nKLP7V 4.6 10.1##person putting items on a shelf.\nKLP7V 4.6 10.1##the person puts some items on the shelf.\nVIN8S 4.4 15.2##a person is throwing a blanket on the floor.\nVIN8S 7.8 12.3##person puts blanket on floor.\nVIN8S 13.3 29.5##person take picture with camera.\n58Z9R 0.0 8.6##a person opens a door.\n58Z9R 0.0 8.6##a person is opening a door.\n58Z9R 21.6 32.0##a person is sneezing looking at a camera.\n3O474 9.2 19.6##a person is undressing in their wardrobe closet.\n3O474 9.2 19.6##person undresses from their clothes.\nPHN7Z 20.0 27.0##person closing a door.\nPHN7Z 20.0 27.0##person finally closing a door in a living room.\nPHN7Z 6.4 18.1##person dressing in clothes.\nUQ93G 21.2 30.0##person opening a door.\n250SN 2.1 6.7##a person is walking through a doorway.\n250SN 13.4 21.0##person closes the door behind them.\n250SN 11.6 17.2##person runs into the room.\n250SN 11.6 17.2##person runs back out.\n250SN 1.5 6.2##a person opens the door.\nSCTNB 0.5 6.6##the person runs to open a door.\nSCTNB 0.0 4.7##person runs through the doorway.\nSCTNB 0.0 4.7##person runs back out.\nSCTNB 0.5 6.6##a person opens the door.\nZ1EEF 0.0 8.6##the person eating the chips cuddles the bag.\nZ1EEF 0.0 8.6##one person is sitting on the toilet eating potato chips.\nZ1EEF 0.0 8.6##a person is sitting on a toilet eating chips.\nIPH08 0.0 7.6##person is holding shoes in hands.\nIPH08 3.3 7.9##person they put their shoes down.\nRSG1C 4.9 12.7##person opens the cabinet.\nRSG1C 0.9 16.5##one person puts a bag in a cabinet.\nBZ1TH 3.0 11.3##a person is drinking from a glass.\nBZ1TH 1.9 7.9##person they take a glass of water.\n1AA6Z 0.0 7.7##a person is undressing in their recreation room.\n1AA6Z 13.9 19.3##person eats some food.\nD4AJ5 3.6 9.4##takes a couple of drinks from a cup.the person turns.\nD4AJ5 5.6 13.6##person smiling to themselves in front of a stove.\nSP1QS 12.3 20.9##person pours coffee into a glass.\nSP1QS 0.0 12.4##a person is sitting in a chair.\nSP1QS 12.3 20.9##person pour some coffee in a glass.\nSP1QS 0.0 12.4##person sitting on a chair watching coffee brew.\n5MF9Y 0.6 6.5##the person can run with a broom.\n5MF9Y 0.6 6.5##person starts to run out of the room.\n5MF9Y 0.6 6.5##the person runs in the room holding a broom.\n2P2ZC 24.7 29.0##person turns the light off.\n2P2ZC 21.1 27.8##a person is trying to turn on a light.\n2P2ZC 21.1 27.8##the person was fixing the cabinet light.\nAIYFU 12.5 18.8##person stand up.\nLURLC 20.6 27.4##person they are eating a sandwich.\nSRQPI 12.7 20.0##person the other closes the door.\nSRQPI 12.7 20.0##person close the door.\nSRQPI 17.6 23.0##the second person turns on the light.\nSRQPI 17.6 23.0##eats the sandwich the other person turns the lights on.\nSRQPI 17.6 23.0##person turns on a light.\nFR4K2 23.4 30.1##person opens their laptop.\nFR4K2 13.1 22.2##the person washes their hands in the sink.\nEMYSA 5.0 12.3##the person takes a bag from the refrigerator.\nBUXV4 1.2 8.1##a person is putting shoes inside of a box.\nBUXV4 16.2 23.4##person smiling at their phone.\nBUXV4 15.0 31.9##person holds a phone.\n5AFC1 23.8 34.0##person eats it.\n5AFC1 23.8 34.0##person walking over to a table to eat something.\n5AFC1 21.6 27.6##the person takes a sandwich off the desk.\nHIOY0 14.2 20.0##person throws it on the floor.\nHIOY0 32.5 37.0##person laughs at what's on it.\nJAOPD 3.5 9.1##person putting a bag on a shelf.\nNB6F5 0.0 6.7##the person opens the bag.\nNB6F5 11.4 16.0##person turn the light off.\nNB6F5 11.4 16.0##person turns off the light.\nZ2MBK 4.6 19.0##person holding a sandwich.\nZ2MBK 4.6 19.0##person holding a sandwich turns.\nZ2MBK 6.9 14.8##person drinking a glass of coffee.\nZ2MBK 6.9 14.8##the person is drinking something from a cup.\nNZ6PU 24.2 30.0##person turns off the light in the room.\nL2LF6 4.4 14.9##person closes the door behind them.\nYFI1M 3.9 13.7##a person begins undressing.\nV4Q75 2.1 14.3##person eating a plate of food.\nV4Q75 2.1 14.3##person eating from it.\nV4Q75 2.1 14.3##a person is eating food out of a dish.\nV4Q75 10.5 23.3##person they drink some water out of a glass.\nH3MG3 12.5 20.3##person they put the shoes in a box.\nH3MG3 25.3 32.0##person closes door.\nKRF68 0.0 9.9##a person runs in.\nKRF68 10.3 25.0##the person starts dressing.\nKRF68 0.0 9.9##a person runs into their laundry room.\nKRF68 4.2 10.9##person close the door.\n8R5DD 6.6 17.7##a person is putting a blanket onto another person.\nW5RC5 3.1 10.4##person takes medicine followed by a glass of water.\n73XDD 0.0 6.3##person sits on the couch.\n73XDD 0.0 6.3##person sitting on the couch.\n73XDD 16.2 22.8##person they begin undressing.\n16KTS 20.7 31.0##the person opens up the refrigerator to look for something.\nPOU1Z 32.0 36.6##person turns off the light in the closet.\nPPKP0 0.0 10.1##a person holds a plate with some food on it.\nQ8TB3 9.0 15.1##person starts sneezing.\nQ8TB3 9.0 15.1##person begins sneezing.\nUWPIZ 3.1 14.8##a person is laughing.\nQDVXO 0.0 15.2##a person is tidying their entryway with a broom.\nDE8T8 22.5 27.9##person is standing by shelf smiling.\nFLM1T 16.5 23.0##person start eating it.\nFLM1T 16.5 23.0##person they eat some food.\nNNZON 0.0 8.3##person b sit down on the couch.\n1375X 22.4 28.1##person put it on a shelf.\n1375X 10.0 22.8##person smiling in a pantry.\n1375X 5.3 11.8##person puts the bag in a garbage.\n1375X 0.0 8.0##a person is sneezing into a bag.\nDOQ9Y 34.0 40.9##person they close a door.\nDOQ9Y 34.0 40.9##person closing the door.\nDOQ9Y 0.0 15.1##a person undressing by removing their jacket in the pantry.\nOEYA3 0.0 11.2##a person sits in a chair in the closet.\nOEYA3 0.0 11.2##the person sits down in a chair.\nOEYA3 0.0 11.2##the person sits in a chair.\nU6KQ7 8.9 15.0##person the other one closes the door.\nU6KQ7 8.9 15.0##person close the door.\nU6KQ7 0.0 4.1##person the last on is eating chips.\nU6KQ7 8.9 15.0##person closing the door behind them.\n35C4E 21.6 30.8##person opened the door.\n35C4E 21.6 30.8##person opens the door.\n35C4E 21.6 30.8##person they open the door.\n6W2MO 9.7 16.6##person begin sneezing.\nXB2NM 16.1 25.0##person sits on the floor.\nXB2NM 16.1 25.0##person sitting on the floor.\nWB17C 23.2 35.0##the person than began sneezing alot.\nWB17C 0.9 7.2##a person opens the refrigerator.\nKFZ55 0.2 7.2##person drinking from their morning cup of coffee.\nSSKK6 22.7 28.4##person puts it in a bag.\nSSKK6 23.2 27.3##person throw the rest in a bag.\nI2DHG 13.1 23.4##person drinking from a cup.\nI2DHG 0.8 11.4##one person was undressing.\nI2DHG 0.0 11.4##person putting their clothes on the bed.\nI2DHG 19.7 32.0##person another was smiling.\nI2DHG 0.0 5.2##a person walks through a doorway.\nFM6KD 2.1 26.2##a person is reading a book.\nFM6KD 3.1 10.7##person laughing at something.\nFM6KD 2.1 26.2##person reading a book.\nXQC9F 13.7 23.4##person put the clothes into it.\nXV8CH 19.5 26.0##person puts their keys on the table.\nXV8CH 0.0 12.6##a person is cooking food at a stove.\nXV8CH 0.0 12.6##a person is cooking at the stove.\nUN1PD 14.9 28.0##person they wash a dish in the sink.\nUN1PD 14.9 28.0##person starts to wash dishes.\nVS2RI 11.6 16.0##person running up the stairs.\nL071S 16.1 23.6##person opens a door.\nL071S 16.1 23.6##person opening the door.\nUB2EJ 0.8 9.1##person drinking a glass of iced coffee.\nUB2EJ 0.0 4.8##a person is standing in their hallway dressing.\nGWXD9 0.0 7.0##a person is pouring a cup of coffee.\nGWXD9 0.0 7.0##person pour it in to a cup.\nJIDHM 0.0 16.5##person looking out the window.\nJIDHM 0.0 16.5##a person is watching out the window.\nXI9LI 19.6 26.3##person opens the door.\nNE37I 16.1 22.2##person take out a pillow.\nXC8DF 9.2 16.8##person starts smiling.\nJ6WE2 22.9 30.5##person puts the bag back on the chair.\nJ6WE2 28.9 34.9##person throws the pillow on a bed.\nJ6WE2 8.0 15.6##a person takes a pillow from a box.\nJ6WE2 8.0 15.6##a person takes a pillow out of a bag.\nJ6WE2 2.2 12.7##person opens a bag.\nCIIWP 14.5 23.2##person closes the door.\nCIIWP 14.5 23.2##person closing the door behind them.\nCIIWP 2.4 8.3##person throws a bag onto the shelf.\nEOKJ0 9.0 19.0##person just puts the clothes on the floor.\nEOKJ0 0.0 7.8##person is holding book.\nYA379 2.7 8.7##a person walks into the hallway drinking from a cup.\nR2DA8 0.0 17.7##person working on a laptop on a table sneezes.\nR2DA8 28.1 33.9##person open their refrigerator.\nR2DA8 32.9 43.1##person begins throwing food on a plate from the fridge.\nR2DA8 0.0 20.0##a person sitting on a chair.\nR2DA8 7.0 17.3##a person is seen sneezing.\n1G2QC 12.9 28.8##person they begin drinking from a glass of water.\n1G2QC 25.9 35.0##person they take a towel.\nOHZG5 7.3 14.0##person they laugh as they read the paper.\nOHZG5 0.0 6.0##person drinking a cup of coffee.\nB71ZJ 4.0 8.2##person puts a bottle of medicine on the table.\nB71ZJ 6.6 15.3##person opens a box.\nB71ZJ 13.0 19.2##person takes their shoes out of a box.\nCXSYS 13.0 24.0##person cooks on a stove.\nCXSYS 13.0 24.0##person start cooking at the stove.\nICL1M 22.8 29.2##person they stand up.\nICL1M 19.0 31.0##the person puts down the glass.\nF2NAW 0.0 11.8##a person is just finishing dressing in the doorway.\nF2NAW 16.9 21.8##person they turn off the light.\nF2NAW 16.9 21.8##person shutting off the light.\nF2NAW 17.4 26.7##person close the door.\nS4D1O 17.1 24.0##person looks out the window.\nGQKIU 9.8 16.0##person proceed to take their coffee cup.\nLWBPP 1.8 6.3##a person turns on a light in their closet.\nLWBPP 1.8 6.3##person turning the light on.\nLWBPP 1.8 6.3##a person turns on the light.\nLDFM5 20.7 32.0##person closes the cabinet.\nLDFM5 2.8 7.7##person opens a cabinet.\n2XVR0 14.3 21.3##person puts dishes away.\n2XVR0 20.1 33.1##person put them on a shelf.\n2XVR0 20.1 33.1##person begin to put dishes away on a shelf.\n9N0BP 14.7 22.2##person laughing on the phone.\nPIEHJ 27.6 33.5##person they put down the phone.\nPIEHJ 30.0 38.0##person starts eating a sandwich.\nPIEHJ 30.9 38.0##person start eating it.\nOB7UK 17.5 26.0##person puts a pillow behind his back.\nLA0DB 3.6 9.7##a person is dressing next to a light.\nLA0DB 0.0 4.6##a person is throwing a pillow at the sofa.\nLA0DB 0.0 4.6##a person is throwing pillows on a sofa.\nLA0DB 3.6 9.7##person turning on a light.\nTCV1W 13.2 18.2##person turns the light off in the other room.\nTCV1W 13.2 18.2##person they turn off the light.\nA0MZ9 0.0 10.2##a person closes a window.\nA0MZ9 0.0 10.2##one person closes a window.\nTX122 2.5 11.5##a person awakens in their bedroom under a blanket.\nTX122 2.5 11.5##person is awakening in bed.\nQ4932 0.0 4.5##person throws blanket on bed.\nQ4932 0.0 4.5##the person throws a blanket on the bed.\nQ4932 0.0 4.5##a person is throwing a blanket on the bed.\nQ4932 7.4 14.8##person starts eating & laughing.\nEI0F6 22.9 32.8##person closes the cabinet.\nEI0F6 2.4 16.1##person opens a cabinet.\nEI0F6 2.4 16.1##person opens the medicine cabinet.\n4UW2K 3.9 18.0##person drinking a glass of water.\nZRBO7 12.0 17.0##a person sits in a chair.\nZRBO7 19.0 23.0##person starts smiling.\nZRBO7 20.0 31.0##watches television moments later the person laughs.\nZRBO7 12.0 17.0##person sits down on chair.\n03AA8 5.3 17.0##another person is sitting on sofa.\n8TDNF 0.0 5.7##person putting different clothes on.\nLQO5R 25.0 34.0##person sitting on the sofa.\nXVHGO 34.0 39.0##person puts the camera down.\nXVHGO 4.1 10.7##a person takes a camera off of a bed.\nKPAS0 13.5 18.8##person takes a book off a table.\nKPAS0 7.6 15.9##person takes off their shoes.\nKPAS0 14.0 20.0##person opening a book in the entryway.\n3XM7Q 20.9 25.5##a person throws a blanket on the bed.\n3XM7Q 16.8 25.7##another person is putting a blanket on the bed.\n3XM7Q 10.6 17.1##person putting a drink on a shelf.\n4JW8U 6.5 12.6##person opens the door.\n4JW8U 21.6 32.0##person put the towel down on the workbench.\n4JW8U 6.5 12.6##person they open the door.\nC1LVJ 13.8 18.6##person puts the pillow down.\nY6ROG 9.5 17.2##person throw it on the floor.\nB57IW 11.1 17.1##person takes a phone out of his pocket.\nB57IW 4.2 14.1##person they are opening a door.\nB57IW 0.0 7.1##a person turns on a light.\nB57IW 19.0 31.0##person holding a vacuum.\nB57IW 4.2 14.1##person opens a door.\nB57IW 0.0 7.1##a person turns on the light.\nDBT6E 8.6 15.1##a person puts their laptop bag down on the floor.\nEQQ2T 16.3 21.8##the person put the dryer sheets back on the shelf.\nEQQ2T 26.6 32.7##person started smiling.\nIK4Q8 17.8 23.8##one person on an old sofa opens a box.\n9OJXP 5.6 17.4##a person opens a door.\n9OJXP 5.6 17.4##a person opens the door.\nNZY1U 19.9 28.0##person drinks from the glass.\n55AH5 0.0 5.3##a person walks opens a door.\n55AH5 0.0 5.3##person opens the door.\n55AH5 5.1 12.0##person eats some food off a plate.\nCS8O0 0.0 8.8##person holding a laptop.\nCS8O0 27.7 31.0##person put a laptop on the table.\nCS8O0 27.7 31.0##the person puts the laptop down.\n9J166 9.9 17.5##a person is opening a window.\n9J166 9.9 17.5##person opening a window.\nCXF35 2.5 16.4##a person is seen watching videos on their laptop.\nCXF35 13.7 20.6##person gets up opens a door to get more lighting.\nCXF35 2.6 17.2##person he sits on his bed.\nCXF35 2.5 16.4##the person is watching a program on his laptop.\n73E7V 14.7 28.6##person they begin eating a bag of chips.\n73E7V 14.7 28.6##person they eat some chips.\nL218P 3.0 8.0##a person throws a bag into a box.\nL218P 3.0 8.0##a person throws a bag into the cabinet.\nL218P 3.0 8.0##person throwing a bag on the floor.\nL218P 10.0 17.0##the person laughs.\n5FYKE 2.9 8.1##a person puts something on a shelf.\nXCUOD 20.5 31.8##a person in a towel is dressing for work.\nX3FAP 10.5 17.3##a person takes a laptop off of a desk.\nPPCWE 0.0 6.0##a person is running up the steps.\nO5TU5 11.9 18.4##an awakening person goes to the sink.\nO5TU5 6.0 20.8##a person lays on the floor.\nO5TU5 6.0 20.8##a person lays down on the floor.\nKS5VD 14.0 23.6##person looks out a window.\nKS5VD 14.0 23.6##person look out a window.\n36AJ1 24.8 32.0##a person is undressing in front of a mirror.\n36AJ1 20.5 30.5##the person opened the door.\nIV1U5 1.3 6.5##the person closes the door to the room.\nIV1U5 1.3 6.5##person closing the door.\nIV1U5 34.2 40.0##person holds a camera to take a picture.\nVG0GK 0.0 4.4##person eating breakfast.\nIVP8Q 18.1 32.0##another person puts papers on a shelf.\n9VZOY 0.0 10.1##a person lying on a pillow awakens in bed.\n9VZOY 17.7 30.8##person drink a glass of water.\nGPUFH 13.6 19.9##person they are tidying up the sink with a towel.\n9ITF3 23.3 29.3##person turning the light off behind them.\n9ITF3 23.3 29.3##person turns off the light.\n9ITF3 0.0 4.6##a person puts a bag on top of the cabinet.\nTD2DR 0.0 12.6##person someone is sitting in a chair.\nTD2DR 12.9 25.2##person take pictures out the window.\nTD2DR 12.9 25.2##person take pictures directed towards the windows.\nI34L6 17.6 22.2##a person is smiling.\n7OHQP 6.6 14.2##person fixing their hair in the mirror right.\n7OHQP 23.9 31.2##person take a phone call.\nSSX6D 16.5 26.7##person playing on his phone.\nAPTS7 0.0 7.3##a person puts clothes in a washer.\nAPTS7 0.0 7.3##a person putting clothes into a washer.\nAPTS7 0.0 12.1##person holding a laptop.\nAPTS7 9.1 15.9##person begins looking at the laptop smiling.\nT8O8Y 20.9 26.1##the person takes a camera off the shelf.\nT8O8Y 0.0 13.6##a person is sitting on the bed holding their phone.\nT8O8Y 0.0 13.6##the person is sitting on the bed tapping his feet.\nMPX3X 0.0 14.7##a person is eating a sandwich.\nMPX3X 11.0 24.6##person pouring a glass of beer.\nMPX3X 0.0 14.7##the person is eating some food.\nMPX3X 25.0 31.0##person finally turning off a light in a garage.\nMPX3X 0.0 14.7##a person is eating food.\nMPX3X 11.0 24.6##person pours some drink in a glass.\nWKU7H 11.1 18.1##person puts something on a shelf.\nWKU7H 20.6 33.5##the person drinks from a cup of coffee.\nWKU7H 4.8 11.7##a person is closing a cabitnet door.\n1IPYC 0.0 8.0##person reading a book.\nTCQXI 0.0 4.0##person begin sneezing.\n92FFB 7.3 16.4##person closing the door.\n92FFB 2.0 10.8##person open a cabinet door.\nTIS3Z 28.5 34.0##person closes the door.\nP4FXX 26.2 34.3##person turn off the light.\nP4FXX 5.7 15.8##a person is eating food.\nSFZ6Q 0.0 13.0##a person is dressing next to a shelf.\nSRHJV 27.0 33.0##person one is smiling.\nSRHJV 0.0 4.6##person two people are sitting on a sofa watching television.\nSRHJV 24.0 33.0##person go to the dining room to eat chocolate.\nSRHJV 24.0 33.0##person start eating them.\n11DD3 0.0 14.5##person looking out the window.\n11DD3 0.0 4.5##the person sits back down on the bed.\n11DD3 1.1 11.4##a person is closing a window.\n11DD3 0.0 4.5##a person is sitting on a bed.\n11DD3 15.2 22.9##the person looks at the picture.\n4EDGW 12.1 21.8##person talking on the phone.\nE891N 20.8 27.0##person opens a closet door.\nAEHBG 27.7 37.8##person eat a chocolate.\nO07KU 14.4 20.5##person puts the towel down on the table.\nO07KU 2.2 13.0##the person uses the towel to tidy up the window.\nO07KU 14.4 20.5##person puts the towel on a table.\nJ10KY 23.8 31.9##person throws it on the floor.\nJ10KY 23.8 31.9##person throwing their homework on the floor.\n0PPPL 0.0 7.6##a person is walking through a doorway.\n0PPPL 8.8 14.1##person drinking from a glass.\n0PPPL 8.8 14.1##person drinking a glass of water with one hand.\nM2DD1 25.0 31.3##the person starts laughing.\nM2DD1 25.0 31.3##a person is laughing.\nM2DD1 21.0 27.4##person closes the book.\nV9RT3 17.0 21.5##a person puts a phone on a chair.\nV9RT3 0.0 2.9##person they talk on their phone.\nCVPFH 0.0 13.2##a person turns on a light.\nCVPFH 18.6 34.3##person starts undressing.\nCVPFH 0.0 13.2##a person is working on the light in a bathroom.\nCVPFH 0.0 13.2##person looking into the mirror,adjust the lights above the mirror.\nCVPFH 22.0 34.4##person putting their clothes on a shelf.\nYPTDT 0.4 13.0##a person is undressing in a bedroom.\n5XKVP 0.0 6.3##a person is sitting on a chair.\n5XKVP 1.5 7.6##person stand up.\n5XKVP 0.0 6.3##a person is sitting in a chair at a desk.\n5XKVP 5.7 11.5##person throw the shoes.\n0JJIY 3.8 13.6##person pours something into a glass.\n0JJIY 3.8 13.6##person pours a pitcher of water into a cup.\nOWS57 11.2 21.1##person opens a window.\nOWS57 11.2 21.1##one person was opening the window.\nOWS57 21.1 27.7##person the other was sneezing right into the mirror.\nXRVQL 13.3 18.8##person throws it on the floor shaking their head.\nXRVQL 4.7 11.7##a person is sitting on the toilet eating a sandwich.\nXRVQL 13.3 18.8##person throw the sandwich on the floor.\nXRVQL 13.3 18.8##person throws food on the floor.\nZPAM8 11.4 18.1##the person takes several drinks from the cup.\nJLGLU 18.3 31.0##person holding a towel.\nJLGLU 0.0 5.9##a person opens their bedroom door.\nCVK5Z 12.7 26.8##person begins to undress under a bright light.\nCVK5Z 7.3 14.8##person opens a box.\nCVK5Z 0.0 5.7##person finally they stand up again.\n3UZ88 23.5 28.0##the person turns off the light.\nH4IT6 0.0 4.4##a person walks through a doorway holding a phone.\nH4IT6 0.0 4.4##person someone holding a phone.\n00NN7 3.5 10.1##a person puts some groceries away onto the shelf.\n00NN7 21.0 30.1##person closes the door.\n00NN7 13.3 26.4##person sits down in a chair.\n00NN7 14.0 24.4##the person begins playing with their laptop.\n00NN7 14.0 24.4##person plays on a laptop.\n00NN7 21.0 30.1##person finally closes the door.\n2STCL 11.1 17.7##person takes a book.\nJF36Q 0.0 6.0##a person is looking out the window  they.\nJF36Q 25.4 31.0##person proceed to close the laptop on a table.\nJF36Q 25.4 31.0##person closes a laptop.\n2J4MA 0.0 6.3##person they finish eating a sandwich.\n2J4MA 12.3 20.6##person begin opening the refrigerator to find more food.\nA6CF6 0.0 6.6##a person throws a box of groceries onto the table.\nA6CF6 0.0 6.6##a person is throwing a box onto a desk.\nA6CF6 3.8 14.0##the person opens the box.\nEOA7I 17.1 25.7##person opens door.\nMI76A 0.1 4.2##person close the book.\nMI76A 0.1 4.2##person reading a book closes the book.\nSPG5Q 6.7 15.1##a person takes off shoes in the laundry room.\n1B2P0 15.4 21.0##the person puts the blanket.\n2OWA8 0.0 11.9##person put it away in a bag.\n2OWA8 0.0 11.9##person puts the bag on one shoulder.\n2OWA8 3.1 15.2##person puts a laptop into a bag.\n2ZBL5 20.8 25.6##person they take a phone from their pocket.\n0RNRI 22.2 30.6##person start undressing by taking their jacket off.\n0RNRI 16.8 23.6##person drink a glass of coffee.\n0RNRI 22.2 30.6##person begin undressing.\nBZMLV 13.6 21.5##person takes some medicine.\nBZMLV 1.5 7.6##person turns on a light.\nBZMLV 1.5 7.6##person on the phone turns on the light.\nSFPJ7 13.8 20.2##person open a bag with some food.\nSFPJ7 13.9 23.2##person put them on a coffee table.\nSFPJ7 13.9 23.2##person put some groceries on the coffee table.\nSFPJ7 8.2 13.5##person put the blanket aside.\nSPDLO 24.4 42.0##person puts their dishes in the cabinet.\nSPDLO 21.5 27.7##person putting it into a bag.\nY2NAO 0.0 9.7##a person lying on a blanket on the floor awakens.\nY2NAO 15.1 23.0##person take a picture.\nY2NAO 8.8 15.6##the person fixes their hair.\nY2NAO 8.8 15.6##person fixes their hair.\nY2NAO 15.1 23.0##person takes a picture of themselves.\nW4MEA 0.3 5.3##a person turns on a light.\nW4MEA 0.3 5.3##person they the turn on a light.\nW4MEA 14.7 23.7##person drink a glass of water.\nW4MEA 0.3 5.3##a person is turning on a light.\nT7T0S 17.8 24.0##person they walk over to a light.\nT7T0S 17.8 24.0##person continues on to turn on the light.\nT7T0S 0.0 13.3##person cooking food.\nT7T0S 17.8 24.0##the person turns on an additional light.\nDNWCR 0.0 4.5##a person runs into the living room.\nDNWCR 0.0 7.0##person begins putting on shoes.\nDNWCR 0.0 4.5##a person runs through a living room.\nDNWCR 0.0 7.0##person puts on the shoes.\nDHPNN 8.8 15.5##another person is throwing food at the first person.\nS6RYI 11.7 21.9##person drinks a glass of water.\nIJZI1 0.0 8.4##a person walks through the doorway.\nIJZI1 7.1 15.3##the person quickly takes a tissue from the tissue box.\nHEIW9 3.9 10.2##person puts a book on the refrigerator.\nHEIW9 0.0 8.7##a person enters their kitchen holding a book.\nHEIW9 3.9 10.2##person they put the book on top of the refrigerator.\n1SUIC 3.4 12.2##person opens a box.\nDWEHS 13.1 19.7##person opens a book.\nDWEHS 0.0 14.0##a person is smiling into a mirror.\nDWEHS 13.1 19.7##person opening a book up.\nVQOBM 0.3 7.0##person opened the cabinet.\nVQOBM 0.3 7.0##person opens cabinet.\n6N7G6 0.0 4.4##a person puts their dish on the table.\n1L2G1 0.0 5.3##person closing the door.\nJWVW9 0.4 9.9##a sneezing person awakens in their entryway holding a box.\n55FRY 3.9 8.4##a person throws a book onto a table.\n55FRY 3.9 8.4##person someone throwing a book on a table.\n55FRY 3.9 8.4##a person throws a book onto the dining room table.\nE6PSM 0.9 9.6##a person opens a door.\nE6PSM 26.2 38.2##person they open up the book.\nE6PSM 28.5 39.0##a person is laughing.\nE6PSM 28.5 39.0##person laugh at it.\nE6PSM 10.0 27.2##person they open the box.\n52CKM 24.9 31.6##person open a laptop.\n5DEHA 7.5 13.7##other person wakes up on floor sneezing.\n5DEHA 3.6 15.1##awakening another person who starts sneezing.\nAWCQN 22.9 32.0##a person closes the door to their house's entryway.\nS1W8H 1.2 6.6##a person opens a cabinet in their kitchen.\nZZXQF 9.4 16.8##a person eats some medicine.\nZZXQF 9.5 18.2##person takes the medicine.\nB0LK0 0.0 14.2##person putting away groceries on the pantry shelf.\nB0LK0 25.0 43.9##person they begin undressing.\nB0LK0 25.0 43.9##person get dressed.\nB0LK0 0.0 14.2##a person is putting away groceries.\n75GKF 0.0 20.2##a person is cooking on the stove.\n2ZXJ5 12.4 18.0##person puts the water down to sneeze into a pillow.\n2ZXJ5 7.5 12.7##a person is sitting on their sofa drinking water.\n2ZXJ5 7.5 12.7##a person sitting on a sofa drinking water.\n1UI6I 0.0 8.8##person getting dressed as they look in the mirror.\n1UI6I 0.0 8.8##a person is dressing into some clothes.\n1FGXJ 0.0 14.7##a man eating a sandwich.\nV31YX 7.0 16.9##person eating snack.\nV31YX 7.0 16.9##person eats some.\nV31YX 7.0 16.9##a person is eating a sandwich.\nV31YX 5.2 10.8##a person takes some food from a plate.\nQGQGZ 0.0 9.4##a person opens the door into the kitchen.\nQGQGZ 10.4 15.0##person turns the light on in.\nQGQGZ 10.4 15.0##person turns on a light.\nQGQGZ 1.0 9.6##a person walks through a doorway.\n2M2O6 6.3 13.1##the person drinks from a glass.\nEMWAP 3.2 8.4##the person quickly eats a piece of food.\nEMWAP 3.2 8.4##person eating food.\nKV287 0.6 11.7##person holding a glass of coffee.\nKV287 2.3 7.9##a person walks through a doorway.\nLUYWY 0.0 12.6##person reading a book.\nLUYWY 0.0 12.6##person someone is sitting on a chair reading a book.\n7P0JX 23.7 29.7##person they take the medicine.\n7P0JX 4.1 11.0##a person turns on a light.\n7P0JX 4.1 11.0##person turns on the light.\n7P0JX 29.3 35.0##person closing the door behind them.\n7P0JX 29.3 35.0##person leave as they close the door.\n144JW 0.0 3.7##a person is sneezing into a towel.\n144JW 0.0 3.7##person sneezing into a towel repeatedly.\nCRH69 20.9 25.0##person throw the clothes on the floor.\nCRH69 18.2 24.8##person the open a door.\nCRH69 20.9 25.0##person throwing them on the floor of another room.\nQ6ZD9 10.6 17.8##a person is tidying the clothes from the closet doorway.\nQ6ZD9 16.3 23.2##person begins sneezing.\nVIKQG 11.8 20.0##person takes a pair of shoes from under a desk.\n5HJ2H 0.0 5.1##person eating a sandwich.\n3GFIC 15.5 21.6##person closes the laptop.\n3GFIC 20.7 29.0##person looks out the window.\nXBB9P 0.0 4.6##a person opens a door.\n9QYHQ 4.1 11.7##person walking through the doorway of a room.\n9QYHQ 4.1 11.7##a person walks through a doorway.\nQM7Q3 1.6 8.2##person takes a picture of themselves in the mirror.\nXKH7W 12.1 17.3##person eating some food.\nXKH7W 8.1 13.6##person they start drinking from a glass of water.\nXKH7W 12.1 17.3##person eats food.\nIJNBL 0.3 15.6##a person is cooking food on a stove.\nIJNBL 0.3 15.6##person they cooked.\nIJNBL 34.8 41.3##person opens a door.\nIJNBL 0.3 15.6##a person starts cooking on the stove.\n5GG5W 0.0 8.0##a person opens a door to a wardrobe.\n5GG5W 0.0 8.2##a person opens a closet.\n0PCAF 0.8 11.5##person starts smiling.\n80ADD 14.5 20.7##person they begin laughing.\n5U1IT 7.0 10.0##a person is sneezing.\n5U1IT 7.0 10.0##person start sneezing.\nDRT60 2.2 15.4##person washes their hands in the sink.\nDRT60 2.2 15.4##person washing their hands at the sink.\nVAXUU 13.7 22.0##person closing the door behind themselves.\nVAXUU 13.7 22.0##person close a door.\nVAXUU 13.7 22.0##person begin closing the closet door.\nUSM36 0.0 2.6##person opening a laptop.\nUSM36 0.0 2.6##a person is opening a laptop.\nAVH53 13.4 26.0##person fixes their hair.\n9XW1K 23.5 28.6##person they grasp a drinking glass.\n9HNRY 4.0 9.5##person sneezing at the dusty contents.\nEED7D 20.4 40.9##person takes a picture.\nEED7D 36.9 50.0##person takes off their wet shoes.\nEED7D 20.4 40.9##the person takes a picture of themself with their phone.\nKQNOV 3.4 13.4##a person is undressing.\nKQNOV 3.4 13.4##a person is in the entryway of their home undressing.\nFQ282 0.0 8.7##a person put clothing into a bag.\nFQ282 7.2 15.2##person holding clothes.\nYNRI0 17.6 23.0##person close the door.\nTYZ05 0.0 13.7##person eating a sandwich.\n6VJI0 28.5 32.0##a person is smiling at a laptop.\nS2XJW 5.3 13.2##person sits on the sofa.\nS2XJW 6.0 14.3##person starts eating some food.\nS2XJW 10.3 20.6##the person takes a drink from a cup.\nS2XJW 4.8 9.8##a person is opening a bag of food.\nWXC7V 32.5 74.7##person take a bite of food from the dish.\nNMG2Z 0.0 14.0##a person is in a basement undressing from their clothes.\n3U6OZ 1.0 10.6##a person closes a window.\n3U6OZ 1.0 10.6##person closes a window.\n3U6OZ 18.6 24.9##person sits in a chair.\nTXQWJ 0.0 8.5##a person drinks from a glass.\nTXQWJ 0.0 8.5##person drinking something from a cup.\nZPUVC 0.0 2.6##person runs back in.\nZPUVC 0.0 3.0##a person opens a door.\nZPUVC 17.6 30.1##person starts undressing.\nZPUVC 0.0 2.6##one person runs in through the doorway.\nYK7FT 2.9 8.9##person struggles to get a door open.\nYK7FT 2.9 8.9##person struggling to open the door.\nYK7FT 5.6 14.1##a person puts running shoes into a garage cabinet.\nYK7FT 5.6 14.1##person puts some shoes behind a cabinet.\nOCYT9 0.1 15.2##a person is holding an open laptop.\nOCYT9 6.9 15.8##person closes the laptop.\nRANB1 19.4 25.9##person they throw their clothes on the bed.\nAOQ7C 0.0 6.0##person close the second door.\nAOQ7C 7.5 17.4##person runs down the hallway.\nAOQ7C 7.5 17.4##person run through to a second door.\nAOQ7C 0.0 6.0##a person closed the door.\nAOQ7C 0.0 6.0##person closes the door.\nAOQ7C 0.0 6.0##person closes a door.\nX7J7H 8.6 15.2##person they stand up.\n2DTZ3 0.3 7.3##a person is seen closing a door in the doorway.\n2DTZ3 0.3 7.3##a person closes a door.\n00MFE 14.7 21.5##person take a broom.\n00MFE 14.7 21.5##person takes a broom.\nXWKKZ 0.2 6.3##person opening door to a room.\nWUL5P 0.0 6.0##person after opening the door to a doorway.\nWUL5P 21.0 33.0##person lays down on the floor.\nOWZCZ 0.0 5.1##a person opens the refrigerator.\nOWZCZ 0.0 5.1##a person is opening a refrigerator door.\nCFWP7 31.7 37.0##person throws their shoes on the ground.\nC5BMA 14.1 22.8##person begin to eat it.\nC5BMA 0.7 7.5##a person walks through the doorway into the kitchen.\nC5BMA 29.0 34.0##person the sandwich was put into the sink.\nC5BMA 13.9 25.3##person eating a sandwich.\n2GGH3 1.5 7.2##a person throws a box on the counter.\n99UA6 50.0 60.0##person closed the door of the washer.\n99UA6 52.1 59.3##person turned off the light.\n99UA6 52.1 59.3##the person turns off the light.\n99UA6 50.0 60.0##person closes a door.\nH5ZG9 9.1 14.0##the person closes the refrigerator.\nH5ZG9 0.0 3.8##a person opens the refrigerator.\nH5ZG9 2.3 12.1##person takes some food out.\nH5ZG9 5.8 12.0##a person takes a sandwich out of the refrigerator.\nH5ZG9 0.0 3.8##a person opens a refrigerator.\n450TW 1.4 8.7##a person sitting on the couch opens a book.\n450TW 13.3 21.9##person reading the book.\n450TW 10.0 16.3##person begins eating food.\n450TW 10.0 16.3##person they eat some food.\n5J7FQ 7.8 17.6##person they watch their reflection in the mirror.\n0HD0T 23.1 28.2##person throws it on the floor.\n0HD0T 17.1 23.3##person opens a cabinet.\n0HD0T 17.1 23.3##person opens the cabinet.\n0HD0T 18.7 25.3##person takes out a pillow.\nN0N4I 5.4 12.5##person they open a cabinet.\nN0N4I 0.0 8.7##a person is cooking on the stove.\nN0N4I 9.6 19.4##person take out some medicine.\n55UAT 0.0 10.2##person putting items on the shelf.\n6E7Q4 14.7 23.7##a person is putting a laptop on a shelf.\n6E7Q4 26.9 32.0##person opens a door.\nQZ94G 14.5 28.0##person picks up a camera to play with.\nQZ94G 9.4 14.8##person closes the book.\nQZ94G 0.0 13.1##another person is looking through a book.\nIU5TH 6.6 14.2##person they close the laptop.\nIU5TH 6.6 14.2##a person closes their laptop.\nA6JLX 7.6 12.7##person takes out a box.\nA6JLX 0.0 5.3##a person runs into the room.\nA6JLX 0.0 5.3##a person is running in with dishes.\nCGPBZ 20.6 36.8##person sit down in a chair.\nCGPBZ 26.3 36.1##person start undressing.\nCGPBZ 22.0 29.3##person takes off her shoes.\nCSLEP 3.9 22.2##person dress in a shirt.\nCSLEP 3.9 22.2##a person is dressing under a blanket.\nCSLEP 3.9 22.2##person dress themselves.\n3Z7KH 29.5 32.0##a person is sitting on a floor.\n3Z7KH 12.5 20.4##person sneezing on a book.\nXQDQ4 0.0 12.2##a person is looking out a window.\nXQDQ4 0.0 12.2##a person is seen watching out the window.\nDPKMU 0.0 6.3##a person is holding a box.\nDPKMU 0.2 6.3##one person puts down a box by the door.\n9X6DL 0.0 6.5##person reading a book.\n9X6DL 2.7 8.5##the person takes a picture of themselves with their phone.\n8QL4N 12.1 23.0##person eats it.\n8QL4N 12.0 23.0##person they eat the sandwich.\n40NIM 10.0 19.1##person as the are holding it the start laughing.\nJELL2 0.0 9.2##a person is laughing.\nJELL2 0.0 11.2##person smiling in front of a window.\nG71VM 1.7 13.2##person they first open up cabinets.\nG71VM 26.9 33.6##person drinking from a glass of water.\nC83CD 0.0 5.5##another person is holding a grocery bag.\n51J43 5.1 10.6##another person is running with a bag of food.\n51J43 5.1 10.6##a person holding a bag runs through the room.\nPQX96 1.2 14.8##one person closes a window.\nPQX96 20.5 31.0##person plays with a flashlight.\nPQX96 13.2 19.2##person sits on the couch.\nPQX96 0.0 15.1##a person is looking out the window.\nPQX96 20.5 31.0##person sitting in a chair with a flashlight.\nPQX96 20.5 31.0##person lies on the sofa playing with a flashlight.\nPPXPA 1.8 10.5##person takes a paper towel.\nPPXPA 3.4 9.2##the person sneezing was opening a book by the window.\n0SE6A 8.0 16.9##person upon awakening they look confused.\n2FW38 0.0 7.3##a person closes the door.\n2FW38 0.0 7.3##a person in their home office is closing their door.\nDP7KP 12.2 17.2##person throws the book.\n2O2LG 0.0 4.3##person drinking a cup of coffee.\n2O2LG 0.0 4.3##person drinks coffee from a glass.\n6TJVS 2.4 9.0##a person is sitting at a table eating a sandwich.\n6TJVS 2.2 9.5##person eating food.\n6TJVS 2.4 9.0##a person is eating a sandwich.\nUETKQ 15.5 20.7##a person is putting a sandwhich in a bag.\nUETKQ 15.5 20.7##person puts the bag in a closet.\nUETKQ 11.9 19.3##person throws the bag inside.\nUETKQ 18.1 23.1##next the person opens the closet door.\nUETKQ 0.2 10.1##person puts a sandwich.\nUETKQ 0.2 10.1##person puts two sandwiches inside.\nUETKQ 23.4 28.2##the person closes the door throws their head back laughing.\nUETKQ 13.0 25.7##person opens a door.\nUETKQ 23.4 28.2##person laughs at the ceiling.\nUETKQ 0.0 4.8##a person opens a bag.\nAGJH7 20.6 28.1##person takes some clothes from a box.\nAGJH7 0.5 8.4##person opening a box.\nA2Z46 8.5 21.3##person close the book.\nA2Z46 0.0 12.5##a person awakens on the couch.\nYWO77 0.3 6.1##a person is walking through the doorway holding a camera.\n1MU5L 3.2 9.4##a person opens a door.\n1MU5L 3.2 9.4##a person is opening a door.\nIJN3M 25.0 42.0##person start playing with the camera on their phone.\nUANDB 14.1 27.0##person starts reading a book.\nUANDB 14.1 27.0##person reading a book in a laundry room.\n391VK 15.0 20.8##person putting clothes in a wardrobe.\nQ1SV4 1.1 7.6##person throwing the box around.\n02XLP 18.4 32.0##eating a sandwich in a recreation room / man cave.\n02XLP 13.6 20.1##person they take a sandwich from a plate.\nRXIAX 8.9 14.8##person is walking to box to put groceries in there.\nRXIAX 12.8 23.5##person starts sneezing.\nRXIAX 5.6 11.4##a person puts a bag down on the bed.\nFN457 17.9 33.0##person looks at a picture.\nFN457 0.0 7.0##a person is smiling into a mirror.\n4EM25 6.4 11.1##person throwing a pillow in a hallway.\n4EM25 6.2 12.7##a person takes a pillow.\n4EM25 0.0 4.4##a person is smiling into a phone.\nPSSJ8 22.1 29.7##person turns off the lights.\nPSSJ8 22.1 29.7##person turning off the light.\nPSSJ8 5.1 10.8##person begin running towards the desk.\nPSSJ8 6.3 14.7##person they close the door.\nPSSJ8 6.3 14.7##person closes a door.\n0JXN3 3.7 9.9##a person throws clothes on a chair.\n0JXN3 11.3 19.2##person sneezing a lot.\n45P7D 13.1 18.9##person they close the laptop.\n45P7D 13.1 18.9##the person closes their laptop.\n4DZ33 11.3 17.4##a person puts a towel in the sink.\n0L0KS 16.4 32.0##person begin talking on the phone.\nES2QH 33.5 40.0##person sits in a chair.\nES2QH 17.1 22.9##person starts sneezing.\nES2QH 33.5 40.0##person sitting on a chair.\nA3AV0 22.5 29.0##person proceeds to open the door.\nA3AV0 22.5 29.0##one person reaches for the doorknob to open the door.\nHKY1M 13.6 19.3##person sneezing into a mirror in a hallway.\n5XAMJ 0.0 15.0##a person watches a video on their laptop.\n5XAMJ 23.0 33.0##the person begins to laugh.\nUO607 5.4 17.8##person put the groceries away.\nKKGJ8 21.4 32.0##person looks out a window.\nKKGJ8 21.4 32.0##person watches out the window.\nKKGJ8 3.7 10.6##person opening the door.\nKKGJ8 2.8 10.8##person walks through a doorway.\nKKGJ8 0.0 5.1##a person is sitting on a chair.\n7DZY6 0.0 8.1##one person is laying on the floor.\n7DZY6 24.2 29.9##another person is walking into the room holding a broom.\nCF92N 0.0 5.3##a person wearing glasses walks through a doorway.\nOSIKP 22.2 27.6##person start eating some food.\nZFT87 15.0 25.1##person take out a picture.\nZFT87 21.7 30.0##person looks at a picture.\nZFT87 13.8 18.7##person the open a cabinet.\nMC45U 31.3 37.0##person sits in a chair.\nMC45U 19.4 30.5##next the person undresses by taking off a jacket.\nMC45U 30.3 37.0##person watches television.\nMC45U 30.3 37.0##person watching television.\nMC45U 2.6 8.6##the person takes off their shoes.\nMC45U 2.6 8.6##person takes off shoes.\nBWG9B 0.2 5.3##a person drinks from a cup.\nBWG9B 0.0 3.9##a person takes a glass of water from a table.\nU5M7E 16.3 24.3##person walking out of the room closing the door.\nSBHID 0.7 10.7##person opened the door.\nSBHID 0.0 8.8##a person holds a doorknob.\nSBHID 0.7 10.7##person opens the door to enter the room.\nSBHID 0.7 10.7##person one opens up door.\nSBHID 29.7 35.6##person opens it takes a bottle out.\n97NNW 0.0 14.2##a person is cooking on a stove.\n97NNW 0.0 14.2##a person is cooking food on the stove.\n97NNW 17.8 31.0##the person is putting dishes in the sink.\n1KFLX 14.0 20.6##person closes the door.\n1KFLX 14.0 20.6##person closing a door.\n1KFLX 1.2 14.8##person they get dressed.\nMI4SN 29.7 46.0##person look out the window.\nMI4SN 8.0 27.0##a person is awakening on a sofa.\nL09BS 19.1 27.0##opening a door in a recreation room / man cave.\nL09BS 19.1 27.0##the person opens a door.\n6YH19 17.1 23.9##the person drinks from the bottle of water.\n6YH19 0.0 7.7##a person sitting on the floor.\nFV9AL 0.0 6.0##a person is opening a door.\n8WZRF 10.2 16.9##person off a light.\n8WZRF 10.2 16.9##person turns the light off.\n8WZRF 3.7 10.4##person turns on the light.\n8WZRF 22.9 32.8##person take a drink of water from a glass.\n8WZRF 10.2 16.9##person turns light back off.\n8WZRF 3.7 10.4##person turning the light back on.\nWEJRX 1.9 10.9##a person laughs as they walk down the hallway.\nWEJRX 1.9 10.9##person laughing together.\nWEJRX 8.4 16.4##the person opens the door.\n7B1CR 10.3 17.0##a person sneezing at their phone.\n7B1CR 16.7 29.0##person drinking out of a glass.\nVX39P 25.3 34.1##person closes the window.\nVX39P 25.3 34.1##person they close the window.\nTSYR3 0.0 11.1##a person opens a cabinet.\nTSYR3 13.4 20.5##person they close the cabinet.\nANXB8 0.0 5.2##person eating some food.\nANXB8 13.3 22.1##person walk through the doorway.\nANXB8 3.6 14.1##a person is drinking a bottle of water.\nANXB8 0.0 5.2##a person stands in a doorway eating.\n9OH7W 21.3 31.5##person eats a snack.\nW1VO2 1.9 8.2##a person walks into the bathroom holding a book.\nW1VO2 4.5 13.1##person reads a book.\nW1VO2 1.0 5.9##person turns on the light.\nW1VO2 4.5 13.1##the person looks at a book.\nW1VO2 0.1 7.4##a person opens the door.\nDJVZQ 24.1 34.1##person pours milk into a glass.\nDJVZQ 24.1 34.1##the person pours a cup of coffee.\nBE51K 0.0 10.0##person looking out the window.\nBE51K 0.0 10.0##a person holding a bag looks out a window.\nBE51K 11.3 19.8##person sits down on their bed.\nBE51K 0.0 14.5##the person puts down their bag of groceries.\n8C8FI 17.8 29.0##person looks out a window.\nBBQIS 11.8 23.7##the person takes a pair of shoes from a box.\nKZW3K 12.2 17.9##the person puts the picture down.\nEGNZB 11.1 20.0##the person put the bag down on a chair.\nC4HHB 10.0 17.0##person starts sneezing.\nLQEB5 6.5 11.8##person they throw their clothes in a box.\nLQEB5 1.5 9.6##a person is seen undressing in the laundry room.\nVUOQF 5.5 12.2##person opens a cabinet.\nVUOQF 5.5 12.8##person takes some food out of the cabinet.\nVUOQF 0.1 5.5##a person walks through a doorway.\nR4ENI 15.0 22.7##person eat a sandwich.\nR4ENI 15.0 22.7##person eating a sandwich.\nR4ENI 0.0 14.8##a person holding a laptop opens window.\nR4ENI 0.0 14.8##a person is holding a laptop.\nR4ENI 3.1 11.6##person looks out the window.\n77KWE 10.4 15.8##a person throws a book onto the pantry shelf.\n77KWE 10.4 15.8##the person throws the book on a chair.\nTON6G 17.7 25.6##the person runs up the stairs.\nTON6G 17.7 25.6##person runs out of the garage.\nR1DCJ 10.4 15.7##person throws a phone onto the floor.\nR1DCJ 10.4 15.7##person throwing candy on floor.\n50N4E 22.4 26.8##person turning off the light.\n50N4E 22.4 26.8##person turns off the light.\n26YPV 0.0 5.1##person closes the cabinet door.\nVQN81 8.6 14.7##person sneezing on their food.\n3YY88 12.0 22.7##one person washes the window.\n3YY88 0.0 13.7##person  opening cabinet to get a cloth.\n80YWL 2.5 8.1##one person puts a glass on a table.\n80YWL 8.7 14.0##person closes the closet door.\n80YWL 2.5 8.1##the person puts the cup down on a table.\n80YWL 0.0 4.2##a person is drinking from a cup.\nM9KMN 16.7 32.0##another person walks in holding another book.\nM9KMN 16.7 32.0##person holding a book.\nVKXLL 22.1 28.6##person opens a box.\nGAM0E 3.1 8.7##a person puts dishes on a shelf.\nGAM0E 3.1 8.7##person putting dishes onto a shelf.\n68QO4 15.3 23.0##person takes a sandwich from the cabinet.\n68QO4 19.6 31.3##person eats it.\n68QO4 14.1 20.1##the person puts the book on a table.\n68QO4 11.2 16.9##the person closes the book.\n5T607 27.1 34.8##person is running to the door.\n5T607 29.5 37.9##person open the door.\nW4U3V 18.9 33.4##person eat a sandwich.\nW4U3V 8.0 20.1##the person puts a glass down on a table.\n5D1FD 9.1 17.4##a person is eating some food from a bag.\n5D1FD 22.2 29.9##person turn on a light.\n5D1FD 22.2 29.9##person they turn on a light.\nW8TE5 0.0 5.6##the person takes a picture of themselves with the phone.\nFU5AP 20.2 34.0##person he puts on a pair of shoes.\nFU5AP 20.2 34.0##person walking to go put on her shoes.\nFU5AP 20.2 34.0##person puts on shoes.\nWNYV6 10.6 15.6##person they open a cabinet.\nWNYV6 12.9 18.7##person close the door.\nWNYV6 11.5 16.3##person put it on a shelf in a cabinet.\nWNYV6 11.3 18.4##a person puts a laptop into the cabinet.\nPN4MI 4.9 13.1##person eating a sandwich.\nPN4MI 17.7 25.4##two persons are eating.\nPN4MI 15.6 29.9##laughing in the doorway as another person awakens with homework.\nGPSIM 2.3 7.7##person puts food on a plate.\nGPSIM 18.4 29.8##where person is fixing something to eat.\nGPSIM 16.1 31.8##person sits on a sofa.\nGPSIM 18.4 29.8##person eat the food.\nGPSIM 18.3 29.5##person sat on the sofa to watch television.\nGPSIM 18.4 29.8##person decides on eating in there instead.\nGPSIM 18.3 29.5##person watches television.\n7GF4E 20.0 25.0##the person puts the bag down on the table.\nETS92 14.7 19.8##person they open another door.\nETS92 11.9 16.5##a person closes a door.\nETS92 11.9 16.5##person someone closes a door.\nETS92 14.7 19.8##person opening a different door.\nETS92 26.6 32.0##person sits down on a chair.\nQIBAJ 15.2 27.8##person sits on the floor.\nQIBAJ 21.5 27.8##person puts the glass back on the floor,stands.\nQIBAJ 12.7 19.2##person take a sip of water from a glass.\nK8ZIK 22.1 30.0##person cooking at the stove in a kitchen.\nK8ZIK 7.3 15.2##person they pour a glass of milk.\n7RI1Y 19.0 26.1##person opens cabinet doors.\nDB3Y6 1.4 7.1##another person puts some food on a plate.\nDB3Y6 1.4 7.1##another person is putting food on a plate.\n0DAO5 8.9 14.7##person puts away the bag on a table.\n0DAO5 17.3 28.2##person takes off their shoes.\nG3TEA 1.7 17.2##a person is tidying up some medicine on the shelf.\nG3TEA 38.6 43.0##person turning off the light.\nG3TEA 0.0 4.7##person washes hands.\nG3TEA 0.0 4.7##person they wash their hands.\nOMX6W 0.3 7.2##a person opens a closet door.\nOMX6W 0.3 7.2##person starts opening the closet door.\nP81OP 9.4 22.9##person reading a book.\nP81OP 9.4 22.9##as another person is lying own reading a book.\n31TDO 12.6 29.1##person turns on light.\n31TDO 37.4 49.7##person sits down at the table.\n31TDO 12.6 29.1##person turns on the light.\n31TDO 37.4 49.7##person sits down at a table.\n31TDO 9.0 32.7##person eats some food.\n31TDO 12.6 29.1##the person turns on the light.\n4N5P9 16.9 24.4##person they put their phone on a table.\n4N5P9 20.3 27.1##person undressing in their closet.\nWVOQP 20.2 25.7##person drinking a glass of water.\nWVOQP 10.7 17.8##person eating a sandwich.\n646CU 7.2 12.8##person is holding a light.\n646CU 7.2 12.8##the person starts playing with a light.\n52GJU 3.0 11.0##person walks to a window which they look out of.\n52GJU 3.0 11.0##person looks out window.\nEI17N 2.8 9.6##another person is smiling.\n0UFGC 6.6 16.6##person opens a window.\n0UFGC 0.0 7.2##a person opens a door.\n0UFGC 5.7 16.3##person closing the window.\n0UFGC 0.0 7.2##the person is opening the door knob in the entryway.\nUKLQ1 6.9 12.9##person walks to turn the light on.\nUKLQ1 6.9 12.9##person turning the light on.\nUKLQ1 6.9 12.9##person turns on a light.\nXZ0KV 7.3 14.9##the person is opening the laptop on the table.\nXZ0KV 7.3 14.9##person opens up his laptop.\nK87AC 0.7 10.2##one person closes the door.\nK87AC 0.7 10.2##person leaves the room closing the door behind them.\nK87AC 7.6 12.7##person dress into something else.\nK87AC 0.0 4.9##a person opens a door.\nK87AC 7.6 12.7##person dressing with items from a cabinet.\nK87AC 0.7 10.2##person closes the door.\nK87AC 7.6 12.7##person starts undressing.\nK87AC 0.7 10.2##person closing the door behind them.\nRSTVT 0.1 7.4##a person runs down the stairs eating a sandwich.\nRSTVT 0.1 7.4##a person is running down the stairs.\nVJ2QS 10.4 21.4##person sit down at a table.\nVJ2QS 10.4 21.4##person sits at the table.\nVJ2QS 10.3 21.3##the person sits in a chair.\nRW587 12.1 26.3##that person started laughing non-stop.\nEU10X 0.0 8.2##person eating a snack.\nEU10X 4.2 13.7##one person is watching television.\nEU10X 0.0 8.2##a person eats some food.\nEU10X 4.2 13.7##person watches television.\nHS521 24.1 29.7##person turned off the lights.\nHS521 24.1 29.7##person they open the door turn off the light.\nPN7N9 10.6 19.9##person close the box.\nPN7N9 4.0 13.7##the person puts the bag into a larger box.\nPN7N9 0.0 5.9##person holding a bag.\nVVMYX 0.0 10.5##person pours something into a glass.\nTJKGJ 20.1 33.0##person sit down in a chair.\nTJKGJ 11.1 18.4##the person closes the cabinet.\nTJKGJ 23.5 33.0##person look out the window.\nTJKGJ 20.1 33.0##person sit in a chair.\nTJKGJ 9.4 17.7##person closes the door.\nTJKGJ 23.5 33.0##person looking out a window.\nSGAGB 0.0 14.1##person snuggles a pillow.\nEP19T 3.5 10.9##a person runs into his room.\nEP19T 14.2 26.3##person takes a picture with his camera.\nEP19T 3.5 10.9##a person is running from the doorway.\nG2UYF 0.0 4.1##person opens a bag.\nCJP4R 6.0 11.2##the person takes out a camera.\nCJP4R 0.0 5.4##a person throws some food into a pan.\nB69CF 6.3 11.9##person they stand up.\nB69CF 0.6 9.6##person begins awakening.\nB69CF 14.0 20.6##person gets up to close a window.\nB69CF 14.0 20.6##person go close an open window.\nUIHDF 7.5 13.8##a person opens a door.\nUIHDF 7.5 13.8##person opens the door.\nUIHDF 0.0 4.3##a person is standing in the doorway smiling.\nUIHDF 0.0 4.3##person smiling into the camera.\nF6Z7U 5.7 12.5##a person is closing a refrigerator.\nDDV1G 0.0 6.0##a person is awakening.\nS0LA8 22.1 26.4##person turning the light off.\nS0LA8 22.1 26.4##person turns off the light.\nS0LA8 16.2 21.6##person turning the doorknob to open the door.\nS0LA8 7.4 12.2##person throws the book onto the desk.\nS0LA8 16.2 21.6##the person opens the door.\nS0LA8 22.1 26.4##person they turn off the light.\nWIQ2O 4.0 10.2##a person is seen drinking from a glass.\nWIQ2O 0.0 7.7##person sitting on floor smiling holding a glass.\nWIQ2O 4.0 10.2##person drinks from glass.\n6HHCU 11.9 17.4##another person is smiling on the phone.\n6HHCU 10.8 17.3##takes a picture of other person holding paper.\n6HHCU 10.8 17.3##person takes a picture from a small table.\nDB07P 0.0 7.4##a person is holding a box.\nDB07P 0.0 7.8##another person is laughing at a light.\nY3YE1 2.0 8.7##another person is smiling at a box.\n40DSU 1.5 7.8##a person is holding a glass of water.\n40DSU 0.0 4.9##a person opened a door.\nMMRRV 0.0 3.18##person turn off the light.\nMMRRV 0.0 3.18##person turning off the light.\nQ9DW7 5.0 25.5##person lied down on the sofa to watch tv.\nOKL5S 4.5 12.1##a person is pouring a glass of milk.\nOKL5S 13.4 22.3##person open a cabinet.\nOKL5S 4.5 12.1##person pours its contents into a cup.\nRTIP8 18.0 27.6##a smiling person is sitting nest to a mirror.\nBGQIF 7.9 19.5##person eating some food from a few various dishes.\nBGQIF 7.9 19.5##person eating food.\nBGQIF 1.6 6.7##a person is sitting on the couch.\nLZ07A 0.7 16.0##a person puts some clothes on.\nVB1HT 26.2 35.2##person close the door.\nVB1HT 26.2 35.2##person closes the door.\nC7V0X 0.0 4.6##a person is throwing a pillow on the sofa.\nC7V0X 12.6 19.1##person drink from a cup.\nC7V0X 0.0 4.6##a person in a dining room throws a pillow.\nILKXV 0.0 4.8##a  person opens a door.\nILKXV 2.0 16.8##person walks through the doorway.\nILKXV 0.0 4.8##a person opens the door to the bathroom.\nILKXV 26.6 32.0##person appear to laugh a little.\nSBG5F 6.0 16.4##a person is pouring water into a glass.\nSBG5F 6.0 16.4##person pours it into a glass on a table.\nKKONU 8.5 18.6##person eats the snack.\nKKONU 0.0 9.0##one person under a blanket awakens.\nKKONU 2.3 8.8##person throws off the blanket.\nKKONU 8.5 18.6##person eats something.\nN8N6U 15.6 26.1##the person takes some medicine with a drink of water.\nEFR6I 19.0 34.8##the person holds some papers.\nPKNT2 16.3 22.4##person they put the book down.\nBOHLW 23.9 29.8##the person shines a light to see where to vacuum.\nBOHLW 23.9 29.8##person holding a flash light.\nYUCU2 0.0 10.0##person cooking on the stove.\nYUCU2 0.0 10.0##person cooking at a stove.\nEYV38 18.4 23.6##a person is lying under a blanket just awakening.\n8ZHLV 21.2 29.2##a second person takes a drink from the glass.\n8ZHLV 7.7 16.4##a person is pouring juice into a glass.\n8ZHLV 7.7 16.4##person pours a cup.\n8ZHLV 19.7 32.0##a person is sitting on a chair to drink it.\n8ZHLV 21.2 29.2##person pours a drink into a glass.\nACJBD 12.2 23.7##person they start dressing by putting a jacket on.\nQQRP2 0.0 11.2##a person is eating food.\nBMF6X 10.8 24.3##person throws ishoes on the floor.\nQNPDC 11.1 24.6##person pouring coffee into a cup.\nQNPDC 6.8 13.0##person puts phone on table.\nQNPDC 6.8 13.0##one person puts a camera on the table.\nQNPDC 5.7 11.5##a person walks into a room holding a phone.\nNHLQ1 17.3 23.0##a person is seated.\nNHLQ1 13.9 19.9##person they stand up.\nNHLQ1 24.1 32.0##person take a picture of themselves.\nNHLQ1 24.3 32.0##person start eating a sandwich.\n59X8N 29.3 38.0##person eating breakfast.\n59X8N 29.3 38.0##person eats it.\n59X8N 29.3 38.0##person eat the cereal.\nHJ2JO 20.3 29.3##person sneezing into a towel.\nHJ2JO 0.0 8.4##a person by the refrigerator was eating.\nNHTSB 23.6 33.0##person turned off the light.\nC8WLX 24.2 35.0##person begins putting on a pair of shoes.\nC8WLX 12.1 23.9##person fixes his hair in the mirror.\nC8WLX 8.7 16.8##a person walks through a doorway.\n2ZG3U 0.0 12.6##a person is watching television.\n2ZG3U 26.3 32.0##person pours a glass of juice.\n2ZG3U 26.3 32.0##person begins pouring soda into a cup.\n2ZG3U 26.3 32.0##person pour juice in a cup that on the counter.\nP3JMV 18.2 26.4##person putting a glass on a shelf.\nRF4OI 11.7 17.6##person washing their hands.\n113YU 1.5 6.9##a person opens a cabinet in their entryway.\n113YU 19.7 26.9##person closes the cabinet.\n113YU 19.7 26.9##person closing the door on the cabinet.\nV8JOH 15.0 22.0##person closes the door.\nV8JOH 0.0 8.7##the person takes some medicine.\nV8JOH 0.0 8.8##a person is standing in a doorway holding some medicine.\nDNZD8 0.0 6.8##person the hallway drinking from a glass.\nOZPA9 0.4 8.5##person turns the light on.\nZ3AGB 0.7 8.9##person opens his closet door to put some cloths away.\nZ3AGB 4.3 10.5##person turned on the light.\nZ3AGB 0.7 8.9##person opened the door to the closet.\nZ3AGB 11.2 24.7##the person put folded clothes on the shelf.\nR0OI6 12.1 24.2##another person is sitting on a chair laughing.\nR0OI6 14.0 25.4##person playing on a phone.\nLEOL6 8.0 7.0##person is holding medicine.\nTTRAJ 6.9 17.2##person sneezing on the food.\nTTRAJ 6.9 17.2##a person begins to start sneezing.\nR0OGE 32.3 44.0##person the drinking from a glass in the kitchen.\nR0OGE 32.3 44.0##person drinks from a glass.\n6912B 13.0 18.7##person they are holding a laptop.\nUAT1F 17.7 26.2##person open up a laptop.\nUAT1F 17.7 26.2##person open a laptop.\nUAT1F 15.0 20.4##person put the book down.\nUAT1F 15.0 20.4##person they put the book down.\nO5JIS 23.4 29.8##the person at the sink takes some medicine.\nE6Q95 14.0 26.0##person eat a sandwich.\nE6Q95 3.7 11.8##a person is undressing.\nSVQL5 19.3 25.0##person throws it on the floor.\nAMUDT 11.1 16.6##person they start continuously sneezing.\nAMUDT 11.1 16.6##person is constantly sneezing.\nMX9XB 0.0 4.1##person is sitting on chair opening bag of candy.\nMX9XB 27.8 34.6##person throwing food out of a bag at a vacuum.\nMX9XB 27.8 34.6##person throwing the bag.\n58YA5 12.5 17.7##person takes a phone from the table.\n58YA5 0.0 12.8##a person is sitting on the couch.\nH3CDC 2.2 7.8##person takes out a towel.\nH3CDC 0.0 5.9##a person is opens the cabinet.\nH3CDC 0.0 5.9##there is a person that opens a cabinet.\n3BVG1 16.1 21.7##a person puts a broom inside a hallway closet.\nBYSQ7 0.0 5.7##a person sits in a chair.\nBYSQ7 0.6 14.9##person begins to drink from a cup.\nBYSQ7 27.3 34.3##person takes off their shoes.\nYXBXH 3.5 14.3##person playing on a phone.\nYXBXH 0.0 8.8##person drinking from a glass.\nKCLMY 10.0 16.9##a person is looking in a window.\nDBN7R 0.0 4.2##person smiling because the conversation they are having is humorous.\n3RSJV 15.1 22.5##person drink a glass of soda.\n3RSJV 15.1 22.5##person drinks from a glass.\n3RSJV 15.1 22.5##person drink a glass a water.\n1BUFQ 22.8 38.5##person sitting on the floor to work on homework.\n1BUFQ 9.1 17.3##person they start sneezing.\nNNG2V 10.7 18.2##one person awakens as another.\nNNG2V 0.0 10.8##being woken up by another person to watch television.\nNNG2V 0.0 10.8##person watching television.\nVFDQU 0.0 5.3##a person opens the refrigerator.\nVFDQU 0.0 5.3##the person opens their refrigerator.\nVFDQU 0.0 8.8##person stand watching the television.\n138LG 9.0 14.7##person turning off the light.\n138LG 9.0 14.7##the person shuts off the light as they leave.\n138LG 7.4 12.8##a person is walking out of a doorway.\nWBT2F 0.6 8.5##person opens a cabinet.\nWBT2F 0.0 13.3##one person puts a towel in a cabinet.\nWBT2F 0.0 13.3##person puts the towel in.\nWBT2F 7.4 16.2##person closes the door.\n1UNXY 1.0 6.5##person drinking a glass of water.\n1UNXY 13.7 24.4##person starts tidying up the floor.\nKT3MJ 0.0 3.8##a person opens a refrigerator door.\nKT3MJ 22.8 34.0##person starts cooking.\nTNEEH 20.8 25.5##person takes a drink from a glass of water.\n7L3DI 15.4 28.0##person sits in a chair.\n7L3DI 0.0 11.4##a person sits on the couch smiling watching something.\n7L3DI 4.8 9.9##a person is laughing.\n7L3DI 0.0 11.4##person sitting on a sofa than gets up.\n7L3DI 0.0 11.4##a person is sitting on the sofa.\n7L3DI 8.7 18.7##fixing their hair as the person does so.\n883AD 19.2 34.0##person snuggling with a blanket on the stairs.\nBSFVT 0.0 5.4##person decides to close a laptop.\nBSFVT 0.0 5.4##one person at a desk closes a laptop.\nTHS0O 17.1 24.5##the person puts the phone on a shelf.\nTHS0O 17.1 24.5##the person puts their phone onto the counter.\n11TTU 12.1 19.9##a person holding a phone enters the room.\n11TTU 6.4 16.7##a person is pouring a drink into a glass.\n11TTU 4.2 9.7##person puts their phone down.\n11TTU 6.4 16.7##person pour water into a glass.\n11TTU 6.4 16.7##person pouring  themselves a glass of water.\n11TTU 4.2 9.7##person puts the phone on a table.\nFGEJI 5.8 16.7##watching another person running with shoes on.\nFGEJI 11.6 22.1##a person is walking around a car holding their shoes.\nFGEJI 11.6 22.1##person the other is holding shoes.\nFGEJI 5.8 16.7##person running in circles.\nG4O9P 0.0 9.7##the person runs in circles.\nG4O9P 15.9 23.4##person reads a book.\nG4O9P 0.0 9.7##a person runs into the garage.\nG4O9P 6.2 15.8##person takes off their shoes.\n472B0 21.7 33.0##person reading a book.\n472B0 0.7 12.6##a person is awakening from the sofa.\n472B0 0.0 8.7##a person lies in bed.\n472B0 21.7 33.0##person begin reading a book.\nBMPEV 16.6 25.2##person turning the light off.\nBMPEV 8.5 16.8##a person is sneezing into a bag of groceries.\nBMPEV 16.6 25.2##person turning off a light.\nYC3OE 0.0 8.7##person undressing in a living room.\nYC3OE 25.4 38.6##person sits down on a couch.\nYC3OE 22.1 34.1##person eats some food.\nYC3OE 11.3 25.1##person they take their medicine.\nCALKE 28.5 44.6##person put them on the table.\nCALKE 12.0 27.6##a person is in a dining room dressing.\nCALKE 18.1 26.9##person putting on shoes.\nCALKE 26.8 47.5##person smile as they tidy up the table.\nO8FBU 21.3 34.0##person snuggles with a blanket.\nZIU9C 0.0 5.0##a person takes a book from a bed.\nZIU9C 0.0 5.0##a person takes a book off of the bed.\nZIU9C 9.8 15.7##person puts it on the table.\nZIU9C 14.1 23.0##person open the door.\nZIU9C 14.1 23.0##the person opens the door.\nEAKL5 19.3 28.5##putting a cell phone in the person's pocket.\n9PSZA 3.3 13.4##a person is throwing shoes.\n9PSZA 4.0 13.9##person throw on the floor.\n9PSZA 3.3 13.4##a person throws their shoes down.\nNEFHO 8.6 15.0##person drinking from a glass of water.\n9N44Y 0.0 5.2##the person in the video opened the cabinet.\n9N44Y 12.0 17.5##person closed the cabinet.\nAWGMW 10.3 16.9##person drink from a glass.\nAWGMW 6.2 12.6##person they put on their shoes.\nAWGMW 15.6 23.7##person running out of the room.\nAWGMW 15.6 23.7##person run out the room.\nAWGMW 6.2 12.6##person put on some shoes.\nAWGMW 6.2 12.6##person they put their shoes on.\nAWGMW 15.6 23.7##person runs out of the room.\n76BFU 18.1 32.0##person begin to talk on the phone.\nK56PA 15.9 21.7##person they sit down on the couch.\nK56PA 1.2 11.5##a person is holding a box.\nK56PA 5.2 10.7##person they put the box on the floor.\nK56PA 10.1 19.6##person dressing in their living room.\nK56PA 1.2 11.5##a person walks into a room holding a box.\nZ1VB4 25.5 44.4##person starts to cook.\nZ1VB4 25.5 44.4##person start pouring water into a pot to begin cooking.\nCA5OI 1.0 7.3##the person is opening a door.\nCA5OI 1.0 7.3##a person is opening a door.\n6VUKN 24.2 31.1##person begins walking to the doorway.\n5Q6N6 3.5 14.9##person smiling as they take pictures of themselves.\nFT3D7 0.0 3.1##a person is sitting at a table eating a sandwich.\nFT3D7 5.9 10.8##person stand up.\nFT3D7 0.0 3.1##the person is sitting at a table eating a sandwich.\n42SEP 16.8 26.0##person sits down on chair.\n42SEP 16.8 26.0##person sit down on a chair.\nMAPVV 29.7 33.0##person lies down on a bed.\nMAPVV 17.2 30.5##person puts a book down on a table.\nDSWWV 0.5 4.9##a person is smiling.\nDSWWV 15.0 21.4##person opens a cabinet.\nDSWWV 13.6 19.1##person they put the camera down.\nDSWWV 0.0 3.5##person they take a picture of theirselves with the phone.\nDSWWV 0.0 3.5##person take a picture.\nDSWWV 15.0 21.4##person open the cabinet.\nD3PPI 25.3 34.0##person takes a picture.\n29T54 1.1 7.9##person they stand up.\n29T54 0.0 6.4##a person is sitting in a chair.\n29T54 0.0 6.4##a person sits in a chair.\n29T54 12.1 19.3##person open the closet door.\n29T54 19.7 29.0##person puts in a closet where he removes other clothes.\n29T54 19.5 28.2##person takes off some clothes.\n29T54 19.5 28.2##the person takes some clothes from the closet.\n29T54 12.1 19.3##person opening a wardrobe cabinet to get clothes.\n3C36H 3.1 10.0##another person opening bag.\nXZPAS 2.9 8.3##a different person is looking at a picture.\nWULQ2 24.5 29.0##person opens the door.\nWZO6V 0.0 7.0##a person open door.\nWZO6V 3.2 8.6##person takes a blanket off a sink.\nWZO6V 11.0 17.1##person closing the door behind them.\n3731F 12.1 17.7##person stand up.\n3731F 17.4 23.6##person they open the refrigerator.\nKUO3N 16.0 22.3##one person closes a box.\nKUO3N 16.0 22.3##person closes the box.\nFW1L0 2.0 8.5##person eating by the stove.\nFZ6AD 17.3 30.0##person starts throwing clothes.\nIPNEG 30.3 36.0##person watching the laptop.\nT1OQ2 17.7 22.1##person putting the glass down.\nXY2M3 23.3 33.0##person they grab a book they've been putting off reading.\nXY2M3 25.9 33.0##person run towards the bedroom's doorway.\nXY2M3 22.4 30.4##person sitting on the bed.\nXY2M3 25.9 33.0##person run out of the room.\nSF6NU 0.0 3.6##one person runs in.\nSF6NU 0.0 3.6##a person running.\nL80CV 13.9 31.2##person begin opening bags of groceries to put food away.\nL80CV 26.1 36.0##person cooking food.\nL80CV 26.1 36.0##person starts cooking a meal.\nXRR22 35.4 46.8##person puts the old light on the shelf.\nXRR22 36.9 46.8##person take a pillow.\nOGK5Y 33.1 39.3##person they stand up.\nU8V9N 25.9 31.3##person they open the bathroom window.\nU8V9N 18.9 31.1##person look out the window.\nCRW0G 0.0 3.5##a person is sneezing into a mirror.\nCRW0G 17.6 28.0##person drinks from the glass.\n1D31Z 28.6 35.3##person drinking from a glass of water.\nEUOT1 0.5 4.9##a person flips on a light.\nEUOT1 0.5 4.9##person turns on a light.\nZ0IE9 12.2 18.5##person fixing a light.\nZ0IE9 12.2 18.5##a person is fixing a light in a room.\nZ0IE9 12.2 18.5##person when he turns it the light turns on brightly.\nU72GG 12.7 20.4##person put detergent on the shoes.\nU72GG 12.7 20.4##a person put some shoes on the dryer.\nD444N 11.0 19.1##person starts laughing.\nIOL8Q 20.9 12.0##a person is throwing a bag out of the room.\nIOL8Q 0.0 12.0##a person is tidying inside a cabinet.\n3YNPY 2.6 7.1##the person puts a towel on a shelf.\n3YNPY 8.4 15.0##person sits down in a chair.\n3YNPY 2.6 7.1##a person puts a towel onto the shelf.\n8TIC7 5.0 12.2##person runs out.\n8TIC7 6.1 15.3##person eating a sandwich.\n8TIC7 5.0 12.2##a person runs into a bathroom.\n8TIC7 9.7 14.1##the person takes a camera from the bathroom counter.\n8TIC7 5.0 12.2##a person runs through the bathroom doorway.\n7XKUI 4.6 10.5##the person closes the laptop.\n7XKUI 4.6 10.5##person close the laptop.\n7XKUI 4.6 10.5##the person closes their laptop.\n3V2HJ 7.4 15.0##a person puts their bag on the table.\n3V2HJ 7.4 15.0##person she puts something on the table.\nPN7CX 12.9 20.5##person puts shoes on.\nPN7CX 12.9 20.5##person puts on their shoes.\n0J5T4 2.0 10.0##a person takes some food from the refrigerator.\n0J5T4 2.0 10.0##person takes out some food.\n1RNK6 0.0 5.0##a person is watching something out the window.\n1RNK6 9.2 14.2##person running with a box.\n1RNK6 0.0 5.0##a person is looking out a window.\n1RNK6 7.2 12.5##person take out a box.\n1RNK6 9.2 14.2##person run out of the room.\nV9JJL 12.4 17.0##person begins sneezing.\n4PCSC 15.0 23.0##throws clothes to another person awakening from under a blanket.\n4PCSC 0.0 7.0##person is pouring water into a glass.\n4PCSC 0.0 7.0##person pouring a glass of water from a jar.\n4PCSC 17.0 21.8##wakes up as person 1 throws clothes on them.\nSFH7G 1.6 8.8##a person is putting food on a table.\nXC9EY 15.9 21.5##the person puts a glass down on a table.\nXC9EY 15.9 21.5##person putting  a glass on a table.\nOY50Q 8.3 18.2##the person walks through the doorway.\nOY50Q 12.7 18.8##person closing the door behind them.\nK8MMX 0.2 10.1##person enters the room holding some papers.\nK8MMX 5.1 9.8##person puts a piece of paper on a table.\nK8MMX 0.0 4.9##the person opens the door.\nKNIZK 22.6 31.0##a person awakens in a chair.\nZGHLY 0.0 5.7##person they open the laptop.\nP4WRI 5.8 18.8##a person in a bathroom watches themselves in a mirror.\nLGS4C 0.0 11.3##a person runs in through their doorway.\nLGS4C 15.8 24.5##person slightly closes the door.\nLGS4C 0.0 11.3##the person is running towards a room.\nLGS4C 0.0 11.3##a person is running into the room holding their phone.\nTF95Y 10.4 15.6##person opening refrigerator.\nTF95Y 10.4 15.6##person opens the refrigerator.\n39SXL 31.7 42.0##person watches some television.\nVGAMG 0.0 13.8##a person is in a office drinking from a glass.\nVGAMG 15.5 29.3##person sitting in a chair.\nVGAMG 0.0 13.8##person drinking from a glass.\nVGAMG 15.5 29.3##a person is sitting in a chair at a desk.\nFYJHS 18.8 28.5##person to start fixing the doorknob.\nFYJHS 1.5 14.3##a person walks holding a bag of groceries.\n1IIS5 4.0 9.8##person opening the refrigerator.\nBEUCN 11.2 17.7##person they stand up.\n8W31Y 2.3 7.5##person eating their favorite kind of candy.\n9FHVW 23.6 30.8##person begins to drink from the cup.\n9FHVW 16.0 21.5##the other person opens the cabinet.\nE7QDZ 16.2 22.6##person working on putting the light back on.\nE7QDZ 16.2 22.6##person turned on the light.\nE7QDZ 19.0 24.8##a person is laughing at themselves in the mirror.\n2DPEC 10.1 24.1##person poured some water in the glass.\n2DPEC 22.1 32.0##person watching a movie on their laptop.\n2DPEC 22.1 32.0##person watching a movie in the laptop.\nEXPOA 18.4 27.7##person undresses from work clothes.\nEXPOA 22.3 36.0##person dresses with comfortable clothes.\nFDNWD 0.0 9.5##person standing in the doorway sneezing several times in elbow.\nFDNWD 0.0 9.5##a person is sneezing.\n52MV9 4.4 11.5##person walks through doorway into dining room.\n52MV9 6.8 24.6##person takes a bite of the sandwich.\n52MV9 5.1 11.5##a person holding a plate open a door.\n52MV9 7.9 14.0##person holding a sandwich.\n52MV9 1.2 8.4##person closes the door.\n52MV9 22.4 32.7##person walks into the kitchen eating a sandwich.\nRSFII 9.0 18.9##person closes the window.\n4WYQ5 31.7 36.6##person they throw the bag into a garbage box.\n6LBDM 18.7 34.4##person looks out a window.\n6LBDM 28.0 48.4##person began washing the window furiously.\nTMTAC 4.5 9.7##a person puts a bag on the counter.\nTMTAC 6.8 11.4##person they begin opening a bag.\nJY0I5 2.8 9.0##the person takes a towel out of a bag.\nV1SQH 14.7 20.8##person a girl drinks from a glass.\nV1SQH 14.7 20.8##a person is drinking a cup of coffee.\nV1SQH 14.7 20.8##the person drinks from the cup.\nY4P3C 18.0 24.0##person stand up.\nY4P3C 0.4 4.6##the person was drinking a glass of water.\nY4P3C 0.4 4.6##person take a drink out of a glass.\n6J00B 17.8 23.8##person pour a glass of water.\n6J00B 24.8 33.0##person eats something.\n6J00B 22.7 28.3##person take a bite of their food.\nXP6CJ 7.2 14.4##person they stand up.\nXP6CJ 1.2 13.4##a person sits on the floor.\nSFDTP 14.8 22.3##the person takes clothes out of the box.\nVMOBC 6.5 20.5##person forth eating a sandwich.\nVMOBC 18.9 26.0##person opening a door.\nVMOBC 6.5 20.5##person eating a sandwich.\nSB7CW 0.7 7.5##person opens the cabinet door.\nSB7CW 0.7 7.5##the person opens the cabinet door.\nSB7CW 1.7 10.0##one person wrapped in a blanket runs in sneezing.\nSB7CW 0.7 7.5##person opens a door to get some medicine.\nKNN3G 10.7 22.0##person pouring a cup of coffee.\nKNN3G 22.7 31.0##person eating food in a dining room.\nKNN3G 22.4 31.0##person take some food from a plate.\nKNN3G 10.7 22.0##person pours some coffee into a glass.\nKNN3G 22.7 31.0##person begin eating.\nMMTED 12.7 23.0##person lifts up their head to look out a window.\nMMTED 12.7 23.0##person look out the window.\n0GR11 17.8 24.7##person they close the laptop.\n0GR11 19.3 25.3##person is working on a laptop computer.\n0GR11 21.4 32.0##person eat a sandwich.\n0GR11 20.2 26.4##person they take a break to bite their sandwich.\nE4FN6 10.0 24.0##person is standing in the bathroom washing their hands.\n75KQ6 15.5 30.0##person make a sandwich.\n75KQ6 0.0 13.5##a person is in the kitchen washing dishes.\n75KQ6 0.0 13.5##a person is washing dishes in a sink.\n4ETXZ 10.2 15.4##person turns the light on.\n4ETXZ 10.2 15.4##person the light is off.\n4ETXZ 10.2 15.4##the person walks over to the light.\n1TGKL 14.6 26.5##person drink something out of the glass.\n1TGKL 14.6 26.5##person drinks something from a glass.\nJ88MJ 22.2 28.4##person turns off light.\nJ88MJ 22.2 28.4##person they turn off a light.\nJ88MJ 8.9 22.6##person put towel up to face.\nJ88MJ 15.2 21.5##person they laugh.\nJ88MJ 15.2 21.5##person starts laughing.\nX62WQ 4.4 11.9##person they stand up.\nX62WQ 12.9 19.2##person still holding the phone.\nDR4R7 2.8 9.0##person they put their laptop on the bed.\nLY10X 24.1 31.6##person take some medicine.\nLY10X 24.1 31.6##person takes out medicine.\nLY10X 14.5 20.7##person opens cabinet.\nLY10X 0.0 16.4##person washing dishes.\nCOT5L 22.4 41.4##a person is holding a cup of coffee.\nWESPT 4.2 11.4##person looks out the door window.\nWESPT 4.2 11.4##person looks out a window.\nWESPT 7.4 14.1##person open the door.\nWESPT 17.3 24.0##person close the door.\nXLQ6X 7.2 13.1##person walks back into the room holding some blankets.\nXLQ6X 10.3 15.7##person throws blankets onto sofa.\nXLQ6X 13.0 18.0##a person throws a pillow.\nXLQ6X 17.3 23.2##person closing the door.\nXLQ6X 15.7 21.1##person walks through doorway out of room.\nBQXVG 13.2 18.1##person runs out the bathroom.\nBQXVG 13.2 18.1##person quickly runs from the room.\nETQYM 15.2 24.4##person sneezing in a mirror.\nETQYM 15.2 24.4##person starts sneezing.\n9GLQZ 0.0 7.8##a person holding a box runs up stairs.\nC3CGB 3.7 10.7##person holding a pillow.\nO6FSN 0.0 4.8##a person is opening the refrigerator door.\nO6FSN 0.0 4.8##a person in a kitchen opens a refrigerator door.\nO6FSN 16.3 24.5##person takes a plate of food out.\n0DDYA 3.5 9.9##a person turns on a light.\n0DDYA 26.1 37.1##the person puts on a pair of shoes.\n0DDYA 26.1 37.1##person puts their shoes on.\n0DDYA 34.8 39.9##the person turns off the light.\n0DDYA 7.6 27.3##a person is watching themselves in a mirror.\nZK05Q 6.2 15.0##one person takes a book from a bathroom shelf.\n2URXS 23.7 34.0##person sneezing into their sandwich.\nGK7S7 0.0 5.0##person drinking a glass of water.\nGK7S7 0.0 5.8##a person is holding a camera.\nMEZVN 0.0 6.6##a sneezing person opens a door.\nL0CK7 27.8 32.0##person sits on the bed.\nL0CK7 27.8 32.0##the person sits down on a bed.\n5N7EW 2.5 8.9##the person opened a door.\n41EQS 6.8 13.8##one person throws a towel in a bag.\n41EQS 6.8 13.8##person throws the towel into the bag.\n41EQS 0.0 8.7##the person is holding a towel.\nTU2GE 0.0 9.5##person talking on the phone.\nTU2GE 0.0 9.5##a person is talking on a phone.\nFCBEQ 4.1 13.0##a person pours some food into a glass.\nFCBEQ 4.1 13.0##a person is seen pouring food in a glass.\nHHCFO 25.9 32.6##person turn off the light.\nHHCFO 25.9 32.6##person flipping off the hall light as they pass.\nHHCFO 25.9 32.6##person turn off the lights.\nHHCFO 28.3 33.5##person they open the door.\nXIUJE 9.0 14.1##person throwing dirty clothes behind the door.\nXIUJE 1.8 14.3##one person starts undressing in front of a cabinet.\nSEDKM 0.5 6.5##person laughs some more.\nSEDKM 0.5 6.5##person laughing at a picture.\nSEDKM 0.5 6.5##one person with hair in a towel laughs.\nNEE6E 0.0 5.7##a person is smiling at a picture on a desk.\nNEE6E 14.9 29.0##another person is awakening on the floor.\nDIDRB 0.0 14.0##a person is pouring a drink in a glass.\n342XO 25.9 34.0##the person takes off their shoes.\n342XO 23.2 29.4##person they put the coffee cup down.\nZJPK8 5.5 15.0##a person carrying some clothes opens a door.\nZJPK8 5.5 15.0##a person is opening the door to the bedroom.\nZJPK8 24.2 30.8##person puts a blanket on top of the pile.\n0ACZ8 0.0 4.0##a person is smiling in the mirror.\nJ06RS 0.0 11.0##a person in a hall smiling.\nJ06RS 0.0 11.0##the person is smiling.\nJ06RS 2.7 9.0##person laughing bends over.\nJ06RS 2.7 9.0##a person is laughing in the doorway.\nYC9FL 1.8 9.8##person closes the door.\nYC9FL 1.8 9.8##person closes the door behind them.\nTBCJA 16.9 23.2##person they close the laptop.\nTBCJA 22.3 29.6##person closes up the pantry by grabbing the doorknob.\nTBCJA 20.0 25.3##person shut the light off.\nHOI88 11.7 21.6##person sits on the sofa.\nHOI88 10.7 17.4##person holding a book.\nHOI88 11.7 21.6##one person is sitting on the couch.\n2O6RB 2.2 13.3##a person opens the refrigerators.\n2O6RB 2.2 13.3##a person opens a refrigerator.\n6QDZI 16.5 31.0##the person sits down on the bed.\n6QDZI 14.3 19.9##the person opens a book.\n6QDZI 15.7 31.0##person starts reading the book.\nS1PWD 0.0 3.8##person they put the picture back on the table.\nS1PWD 0.0 4.5##a person takes a picture from a table.\nGQ4ML 6.5 19.1##person puts it on the shelf next to a book.\nEW6K9 13.6 19.4##person throwing clothes down stairs.\nWRW74 4.7 13.1##a person turns on a light.\nWRW74 4.7 13.1##person turns on a light.\nWRW74 4.7 13.1##person turns the light off.\n3YVPG 19.4 25.5##person putting down the glass.\n3YVPG 32.0 39.0##the person lays down on the floor with a blanket.\n3YVPG 8.5 18.3##person pours it in a glass.\n3YVPG 8.5 18.3##person pouring a glass of wine.\n3YVPG 18.0 32.0##a person is sneezing into a sandwich.\n3YVPG 8.5 18.3##the person pours a glass of wine.\n3YVPG 30.5 35.7##person sits on the floor with it.\n5VUQE 10.0 19.0##person takes a napkin out of a box.\n1BEFM 1.8 9.8##person they eat a cookie.\n1BEFM 1.8 9.8##person they are eating something from a bowl.\n1BEFM 1.8 9.8##person eating food.\nDVTAR 10.9 17.3##another person walks around eating a sandwich.\nR0M34 12.2 19.5##the person opens the refrigerator.\nR0M34 0.1 15.3##person starts cooking.\nR0M34 0.1 15.3##a person is standing by a stove cooking some food.\nAAGZ2 11.0 33.8##person starts cooking in his pot.\nAAGZ2 11.0 33.8##person starts cooking on a stove.\nL1MR4 16.5 28.0##person plays with their phone.\n2C253 17.6 23.6##person they drink something from a glass.\n2C253 21.2 27.0##person putting a blanket on the floor.\n2C253 17.6 23.6##person they start drinking from a glass of water.\n2C253 21.2 27.0##person put a blanket down.\nDSGVL 14.1 21.0##person sits down on a chair.\nDSGVL 9.1 16.3##person puts the laptop on the desk.\nGCWNT 14.7 24.0##person starts eating.\nGCWNT 14.7 24.0##person eats some food.\nGCWNT 8.4 14.9##person closing the door.\nGCWNT 8.4 14.9##a person closes a closet door.\n0F0WE 1.3 10.4##person runs back to the middle of the hall.\n0F0WE 1.3 10.4##the person runs down the hall checking doors.\n0F0WE 21.6 34.0##person starts to read a notebook found on the floor.\n0F0WE 6.5 13.9##a person is running down the hallway closing doors.\nT9ZNR 2.6 11.3##person takes out their vacuum.\nF8HLI 15.8 21.9##person starts running.\nF8HLI 15.8 21.9##person runs out of the room.\n9RSGO 21.8 28.2##other person looking in mirror fixing hair.\n1HGEX 16.0 31.0##person starts looking at the book.\n1HGEX 16.8 24.4##a person opens a book from the cabinet.\nEFD6M 10.8 19.1##person closes a laptop.\n5M17J 19.1 32.4##person putting them onto a shelf in a nearby cabinet.\n5M17J 14.2 26.6##person opening cabinet doors.\n5M17J 19.1 32.4##person putting things on a shelf.\n5M17J 8.7 18.6##the person opens a box containing spices.\nO52BL 18.3 29.4##person puts a laptop in a bag.\nO52BL 16.7 31.0##person they take their laptop.\nUSNFB 0.0 12.3##person opens door.\nUSNFB 0.0 12.3##person opening door.\n91YZH 2.6 11.1##a person is smiling.\nR2YKH 5.0 20.8##person plays with their phone.\nKU656 0.0 7.3##a person awakens in bed.\n4JXAK 12.8 23.0##the person starts washing a mirror.\nXPOKK 4.1 10.8##person sitting on couch  looking a picture.\nXPOKK 4.1 10.8##a person looks at a picture.\nM5YLS 14.3 22.2##a person is smiling.\nM5YLS 4.9 9.9##person they turn on the light.\nM5YLS 14.3 22.2##a smiling person is sitting in their bathroom.\n5XCUV 0.0 6.5##person they are drinking a glass of water.\n5XCUV 20.9 29.0##person take off their shoes.\nMCQO5 4.2 13.4##a person is undressing in the closet.\nMCQO5 29.6 33.0##person drink a glass of water.\nMCQO5 29.6 33.0##person drink from a bottle of water in a bedroom.\nRR8M2 21.2 26.7##person opens a cabinet door.\nRR8M2 22.0 29.0##person puts the shoes on a shelf.\nGZQ0V 19.4 24.3##person walk towards the doorway.\nIKZJE 23.0 33.8##person takes a photo of the picture.\nR6CIX 0.0 11.4##a person is fixing a door.\nR6CIX 14.7 20.1##person sits down on a couch.\nR6CIX 14.7 20.1##person sits on a sofa.\nX8AP2 1.5 12.9##a person is standing in a kitchen eating something.\nX8AP2 1.5 12.9##a person is eating.\nX8AP2 22.3 31.0##person takes opens a medicine bottle.\nKPXQ0 17.2 24.4##person starts sneezing.\nH76DJ 27.3 33.0##person throwing a pillow on the floor.\nH76DJ 27.3 33.0##person throws a pillow on the floor.\nFCQS8 0.0 4.8##a person walks through the doorway of a bathroom.\nFCQS8 16.1 21.3##person open the cabinet door.\nFCQS8 0.0 4.8##a person walks through a doorway.\nVT624 0.2 12.9##a person is watching television in their bedroom.\nPNVRJ 0.0 11.9##person still sneezing.\nPWJ3J 3.4 13.3##person begin sneezing.\nPWJ3J 21.2 29.1##person start putting away groceries.\n1WJ6O 14.1 27.5##person sits down on a couch.\n1WJ6O 16.8 29.4##the person takes some food.\n1WJ6O 0.0 7.5##a person is opening a door.\n1WJ6O 6.6 17.8##person watching television.\n1WJ6O 0.0 7.5##a person opens the front door.\n1WJ6O 19.8 31.9##person walking through the doorway.\nYOVS5 5.6 13.7##person the stand up.\nYOVS5 15.8 22.9##person close the door.\nYOVS5 15.8 22.9##person leave through a doorway closing the door behind them.\nYOVS5 1.1 8.5##a person awakens on a floor.\n63TU2 28.0 36.0##person walk through a doorway.\nFZBK6 11.5 21.0##person start watching television.\nFZBK6 11.1 21.0##person put on a blanket.\nRS4ZC 10.4 20.1##person takes a picture of it.\nRS4ZC 10.4 20.1##person takes a cellphone picture with it.\nRS4ZC 18.9 26.2##the person runs down the hall.\nRS4ZC 0.0 4.0##a person is eating food.\nRS4ZC 0.0 4.0##a person eats a snack.\nENC45 0.0 13.3##person eating a sandwich.\n61UIO 14.8 27.8##person sits in a chair.\nY5826 0.0 4.2##a person is cooking food on a stove.\nY5826 0.0 4.2##a person is cooking at a stove.\nGRBUE 7.0 14.1##person closes the door.\nGRBUE 14.0 18.9##the first person turns off the light.\nGRBUE 4.1 9.3##a person begins undressing from their thick jacket.\nGRBUE 5.5 10.3##person throwing it on the floor.\nGRBUE 14.0 18.9##person turns off the light.\nQTOJX 26.5 31.7##person they take out their phone to check a message.\nQTOJX 2.2 15.0##a person laughs.\nY4PAD 12.6 22.9##another person walks behind them holding a bottle of medicine.\nGGAN0 18.4 24.0##person puts it on the table.\nVPBIO 16.1 23.9##person they start undressing.\nVPBIO 3.7 9.6##a person is putting groceries on the floor.\nVPBIO 16.1 23.9##person they begin to undress.\nVPBIO 0.5 5.5##a person is holding a bag of groceries.\n61N26 12.9 20.9##person they put a broom away.\n2MGC1 23.2 36.0##person pours something into a cup.\n2MGC1 3.6 9.0##a person holding a bag opens their door.\nCVTII 26.2 33.0##person they take a medicine bottle from a shelf.\nCVTII 26.2 33.0##person take medicine in a kitchen.\nNDD35 0.0 11.9##a person runs down a hallway holding a blanket.\nFBIVN 1.6 10.3##person closes the door.\nFBIVN 1.6 10.3##person closes door.\nFBIVN 1.6 10.3##a person is closing a door.\n4U52R 16.8 30.0##person sit on the bed.\n4U52R 8.5 15.0##person they put a box on the floor.\nDDWK5 0.0 4.0##person opened the cabinet.\nDDWK5 3.1 9.1##person closed the door.\nDDWK5 0.0 4.0##person opend the cabinet.\nM23X2 10.6 16.4##the person puts the bag into a cabinet.\nM23X2 1.9 7.4##a person runs into the garage.\nM23X2 17.0 23.0##person smiling at the camera.\nWF8WM 0.4 7.1##person putting their shoes on.\nWF8WM 0.4 7.1##person putting on their shoes.\nWF8WM 0.4 7.1##a person is putting on shoes.\nWF8WM 0.0 7.2##person begins to laugh.\nWF8WM 0.0 7.2##person is looking in the mirror laughing.\nIO712 6.7 31.5##person starts to read the book.\nIO712 0.0 5.9##the person closes a window.\nIO712 5.5 29.7##person sits down at a table.\nH51V5 16.6 23.5##person put the food on a table.\nH51V5 6.4 15.0##person laughing they put it on a plate.\nH51V5 6.4 15.0##person they laugh.\nITJZB 0.0 8.8##a person is in a recreational room undressing.\nITJZB 16.0 26.0##person they sit down on a sofa.\nITJZB 8.0 15.3##person putting their clothes in a bag.\nFJXBX 8.0 13.0##the person closes the book.\nR1X8P 0.0 3.7##person is opening cabinet.\nR1X8P 11.9 22.0##person starts smiling.\nHOZ76 20.0 25.0##person takes a book.\nHD38O 9.4 16.1##person eats a sandwich.\nHD38O 9.4 14.2##person takes a bite of a sandwich.\nHD38O 27.0 32.0##a smiling person playing a game takes medicine.\nNF9ZR 5.6 13.6##the person finally opens the door.\nNF9ZR 5.6 13.6##person is trying to open a door.\nNF9ZR 21.7 32.0##another person wrapped in a blanket starts dressing.\nNF9ZR 5.6 13.6##person they open the door.\nCO1S9 6.7 12.7##person runs out.\nSPUPH 3.5 9.7##person begin sneezing.\nSPUPH 7.6 13.0##person eat a sandwich.\n0M2DO 4.9 11.9##a person opens a cabinet.\n0M2DO 14.8 25.7##person throws the clothes on the floor.\n0M2DO 4.9 11.9##a person in a bathroom opens a cabinet.\n0M2DO 4.2 14.8##person takes out clothes.\n0M2DO 18.1 27.1##person walks through a doorway.\nNVGDG 1.7 15.2##person covered by a blanket awakens.\nNVGDG 1.7 15.2##a person covered in a blanket awakens.\n7G6F0 20.4 27.2##person drinking something from a cup.\n73NG4 5.7 13.1##person pours a glass of juice.\n73NG4 21.9 33.0##person sits at the table.\nUL65N 11.2 17.8##person put it on the bedside table.\n12VVC 9.6 14.9##a person takes a book off a shelf.\nFQ9QX 20.0 26.6##person starts sneezing.\nSHMU7 7.0 17.6##person opening a bag of groceries.\nSHMU7 1.0 7.0##a person puts some bags onto a table.\nSHMU7 7.0 15.5##person they take some food out of the bag.\nSHP4R 0.0 7.5##a person opens the refrigerator.\nSHP4R 5.8 10.7##person takes out some food.\nGJNI4 17.1 28.2##person drinks from a bottle of water.\nGJNI4 17.1 28.2##person drink from a bottle of soda.\nLNR61 12.7 19.0##person holding a towel.\nFDPHZ 14.9 21.0##person turns off a light.\nFDPHZ 14.9 21.0##person turns off the light.\nW2DAK 10.9 19.6##person takes out a dryer sheet from a box.\nW2DAK 10.9 19.6##the person takes a dryer sheet out of a box.\nLCZ8F 0.0 5.3##a person slid open a door of a closet.\nKR0SH 10.5 16.2##person opens a book on the desk.\nZP8AL 10.7 16.4##the person throws the pillow back out through the doorway.\nZP8AL 13.0 19.0##a person runs into the room.\nZP8AL 10.7 16.4##person throwing the pillow onto the floor.\nZP8AL 5.6 16.1##a person runs through a doorway holding a pillow.\nZP8AL 5.6 16.1##person holding a pillow.\nOHLSE 28.1 32.0##person puts the box back.\nOHLSE 7.0 12.9##person takes a box off the shelf.\nOHLSE 17.0 22.2##person he eats a snack.\nOHLSE 0.0 4.1##person he opens the cabinet.\nOHLSE 0.0 4.1##a person opens the closet.\nOHLSE 15.6 22.0##the person begins eating the sandwich.\nOHLSE 19.1 31.7##person he puts the box back on the shelf.\n7NW4V 19.8 26.9##person sits in a chair.\n7NW4V 19.8 26.9##person sit on a chair.\n8NJD2 18.3 26.4##person closes the door.\n8NJD2 0.9 7.0##a person opens a large cabinet to get a broom.\n8NJD2 0.9 7.0##person opens closet.\nUNQD7 21.5 33.0##another person is holding a box.\nUNQD7 0.3 7.6##a person closes a wardrobe door.\nHONL7 0.0 10.1##one person lying near the doorway throws down a book.\nHONL7 0.0 9.8##person throwing it on the floor.\nF1MWB 4.7 16.1##person is walking to box to put groceries in there.\nF1MWB 33.9 38.0##person go over to turn off light.\nF1MWB 14.1 24.0##person starts sneezing.\n7NBPG 23.7 31.0##the person looks at the picture.\n7NBPG 20.2 25.1##the person throws the book onto the counter.\n7NBPG 23.7 31.0##person picking up picture looking at it.\nI6PBQ 0.0 6.6##a person is sneezing into a sink.\n82R7V 2.8 8.2##person takes a cup of tea.\n82R7V 0.0 6.3##a woman is smiling.\n09F15 0.4 6.5##a person opens the pantry door.\n09F15 0.4 9.2##a person holding a book.\nEF2YJ 10.0 25.6##a person is standing at the stove cooking.\nOXC4X 6.1 12.9##person gets dressed.\nOXC4X 6.1 12.9##person they get dressed.\nOXC4X 0.0 7.8##a person takes some clothes from a shelf.\nCU9RE 24.9 31.0##person pick up a glass drink from the glass.\nTTZVW 10.7 16.3##person they are holding a plate of food.\nTTZVW 16.3 23.1##person hold a cup of coffee.\nTTZVW 0.0 9.5##a person is opening a window.\nTTZVW 22.0 27.2##person drinking a cup of coffee.\nTTZVW 0.0 9.5##a person opens a window.\n537I0 7.3 17.8##person closes the door.\n537I0 1.6 11.9##a person puts a broom in the closet.\n0CX32 0.0 4.5##a person runs into the living room.\n0CX32 10.3 22.8##person open a window.\n0CX32 0.0 4.5##a person runs into the room carrying a broom.\n0CX32 4.3 9.1##person they put the towel.\nHUNW6 5.2 18.7##person eating food.\nHUNW6 5.2 18.7##a person is eating food they got off a shelf.\nDED50 2.6 9.0##a person awakens on a sofa in their home office.\nDED50 15.2 21.9##the person pours a cup of coffee.\nH9U38 21.1 26.0##the person closes the laptop.\n8AKRP 11.6 18.8##the person puts the cup into the sink.\n8AKRP 10.7 15.9##person they stand up.\n8AKRP 11.6 18.8##person put the cup into the sink.\n4MKH4 6.9 14.5##person holds a tray of dishes in the hallway.\nLNEAG 6.0 13.9##person puts the picture on top of a pillow.\nLNEAG 6.0 13.9##person puts picture on top of pillow.\n5JVMD 18.0 24.0##person pouring a drink into a cup the consuming it.\n5JVMD 13.2 22.6##person pours a glass of water.\n5JVMD 0.0 11.0##a person puts clothes next to a vacuum.\n8FH96 8.6 14.5##person open the refrigerator door.\n8FH96 9.9 18.1##person laugh at what's inside.\n8FH96 8.6 14.5##person she opens the refrigerator.\nSP8UG 29.0 34.0##person they take their medicine.\nSP8UG 29.0 34.0##person takes medicine.\nDTJ6B 0.0 5.7##a person walks through the doorway.\nWDCGH 0.0 3.8##person reading a book.\nB8IYJ 13.5 19.0##person begin eating.\nG4WCE 9.3 15.5##person they put the bag on a desk.\nD0V0Y 22.5 30.0##person this they sit in a chair.\nD0V0Y 6.2 12.0##a person walks through a doorway.\nD0V0Y 14.5 20.5##person turns on the light.\nD0V0Y 14.5 20.5##person turn on a light.\nD0V0Y 14.5 20.5##person turns on a light.\nD0V0Y 25.3 35.0##person takes off a shoe.\nD0V0Y 26.0 35.0##person puts another shoe on.\nD0V0Y 26.0 35.0##person begin to put on their shoes.\nXXMN1 21.2 32.0##person starts laughing.\nNDBXV 17.7 23.7##person they take a camera from a shelf.\n48CYX 17.5 22.1##person they take a book from atop a shelf.\n48CYX 0.0 7.3##a person undresses in the bathroom.\nWHJ70 2.0 11.6##person a towel opens a cabinet.\nWHJ70 2.0 11.6##a person is opening a cabinet.\nMHQYD 10.2 19.1##person looking out a window.\nMHQYD 8.3 21.0##a person is smiling at a window.\nMHQYD 8.3 21.0##person one is laughing.\nLB006 13.4 16.0##another person takes an item out the box.\nCZY4Q 6.8 14.9##a person puts their phone onto a shelf.\nCZY4Q 6.8 14.9##that person puts the phone on a shelf.\nIA5TC 2.3 12.3##a person enters their house holding boxes.\nIA5TC 26.4 32.0##person closing the cabinet.\nIA5TC 12.6 20.1##a person is putting a box on the shelf.\nUBUKL 4.6 12.0##person sits on couch.\nUBUKL 4.6 12.0##person sits on a couch.\nUBUKL 4.9 13.6##person they take a coffee cup off a table.\nUBUKL 6.4 15.4##person put it on another table.\n1YSGI 17.5 25.5##person puts the box on a dryer.\n6LNYW 19.1 26.0##person b throws a pillow on the floor.\n4SN6Z 0.0 4.8##a person is sitting on a chair.\n4SN6Z 15.6 21.0##person close the door.\n4SN6Z 4.9 12.2##person put dishes on shelves in cabinets.\nRZIAJ 0.0 5.6##a person sitting on a bed.\nRZIAJ 22.5 31.0##person close the door.\nRZIAJ 22.5 31.0##person closing the door.\nRZIAJ 1.8 12.6##a person is playing with the phone.\n95HQC 2.3 11.3##a person is undressing.\n8L9AJ 13.7 20.3##a person takes out a laptop.\n8L9AJ 13.7 20.3##person takes a laptop out of a box.\n8L9AJ 18.6 31.2##the person closes the box.\nNPEA3 23.1 29.9##person closed the door.\nNPEA3 23.1 29.9##person closes the door.\nUIPXF 19.2 29.6##person walking through the doorway to the kitchen.\nUIPXF 22.5 31.8##person closing the door.\nUIPXF 22.5 31.8##person closes a door.\nHYD3N 20.4 27.0##a person puts a sandwich down on a chair.\nHYD3N 20.4 27.0##person putting a sandwich in a towel.\nD8BTU 4.2 10.3##person holding a broom.\nD8BTU 5.4 12.5##the person opens the cabinet door.\nD8BTU 6.2 10.9##person puts the broom up.\nD8BTU 6.2 10.9##person they put the broom in the corner.\nD8BTU 5.4 12.5##person opens the cabinet door.\nZGUTC 19.2 25.6##the person opens the medicine cabinet door.\nUD7R8 0.6 12.7##a person puts on their shoes.\nUD7R8 0.6 12.7##person putting on their shoes.\nX2LBW 0.0 9.8##person b are dressing.\nX2LBW 40.6 47.6##person they put the pillow on a chair.\nX2LBW 49.1 59.9##person grab pillows to sit on at a table.\nI6UIG 20.2 31.5##person throws some food.\nI6UIG 20.2 31.5##the person begins throwing food towards the door.\n0GH5O 0.0 4.9##person walk through the doorway smiling.\n0GH5O 7.0 13.7##the person opens the front door looks outside.\n0IAGO 13.0 21.0##person they begin trying to fix a light.\n0IAGO 13.0 21.0##person turns the light on.\n0IAGO 3.4 11.4##person takes off their shoes.\n0IAGO 13.0 21.0##person begins to fix a light.\n0IAGO 13.0 21.0##person fixes a light.\n0IAGO 1.0 11.7##a person sits down in a chair.\n0IAGO 10.0 15.0##person stands on the chair.\n0IAGO 3.4 11.4##a person takes off their shoes.\n0IAGO 10.0 15.0##person stands up on a chair.\nZHF60 43.2 53.9##person begin washing clothes in the sink.\nZHF60 12.7 19.1##person open the cabinet.\nZHF60 33.9 62.6##the person uses a towel to wash dry their hands.\nZHF60 7.7 16.7##a person is putting clothes in the sink.\nFWQYI 30.0 40.0##person tidying up a shelf.\nQ9BRQ 9.0 17.0##person they stand up.\nQ9BRQ 0.0 13.4##a person is laying on the floor holding a bag.\nJ99Z8 0.4 9.2##person they begin smiling as they finish their food.\nVSYFA 0.0 5.1##the person eats the food out of the bag.\nVSYFA 0.0 5.1##person starts eating some food.\nVSYFA 0.0 2.8##person sits down on a chair.\nVSYFA 0.0 5.1##person sitting down with something to eat.\nVSYFA 18.0 32.0##person walks out a doorway.\nVSYFA 0.0 3.9##a person undresses their shirt.\nUJXLL 2.0 16.1##a person takes some clothes off a chair.\nXXCS6 16.8 32.0##person takes a picture out the window.\nXXCS6 16.8 32.0##takes a picture of a second person with a phone.\nXXCS6 16.8 32.0##takes the picture of another person posing outside.\nJAAVR 11.5 26.6##person they take medicine.\nJAAVR 11.5 26.6##the person takes the medicine.\nE7Q3R 5.2 12.4##person puts their coffee on the table.\nE7Q3R 9.7 18.7##person takes off their shoes.\nE7Q3R 19.2 23.9##a person runs into their dining room.\nXJH0X 20.7 26.1##person take a pillow off of the ground.\nXJH0X 11.7 22.1##person proceeds to wash dishes in the sink.\nZU8Q1 12.9 20.9##person opens their laptop.\nHL9YR 19.0 38.9##the person starts laughing.\nHL9YR 31.2 42.0##person closes the laptop.\nHL9YR 31.2 42.0##person they close their laptop.\nHL9YR 2.5 9.5##person take off their shoes.\nHL9YR 18.8 35.4##person begin smiling.\nB6ZIW 0.0 14.6##a person is throwing food up the stairs.\nB6ZIW 0.0 15.1##a person throws three bags on the stairs.\nB6ZIW 1.7 8.9##a person holding a bag of groceries opens it up.\nB6ZIW 0.0 14.6##person throws food onto the stairs.\n8ML3S 0.0 7.2##a person is running around their closet.\n21E40 29.0 32.0##a person drinks from a cup.\nA3MOW 0.0 16.9##the person sat in a chair eating a sandwich.\nA3MOW 0.0 16.9##the person is sitting on a chair eating a sandwich.\nA3MOW 0.0 16.9##person 1 is eating a sandwich.\nA3MOW 16.0 21.6##person looking at a framed picture on a shelf.\n6E4L5 10.8 24.6##person takes pictures.\n6E4L5 6.4 15.8##person takes a picture of what he is eating.\n6E4L5 11.8 16.8##person takes out what appears to be a phone.\n6E4L5 0.0 6.5##person takes a picture of their half-eaten sandwich.\n6E4L5 11.8 16.8##the person takes out a camera.\n6E4L5 0.0 6.5##person eating a sandwich.\n6E4L5 0.0 6.5##a person stands in a garage eating a sandwich.\n6E4L5 6.4 15.8##person eating food.\nIDDTF 3.9 11.1##person eating something.\nBCUTT 26.5 32.0##person they stand up.\n0A8ZT 26.3 34.0##person begins to play on their phone.\n0A8ZT 26.3 34.0##person they begin playing on their phone.\n0A8ZT 26.5 34.0##person takes their phone from their pocket.\n3CW6P 23.9 30.0##person grab the doorknob open the door.\n3CW6P 23.9 30.0##person opens the door.\nIZ978 29.6 35.9##person take a picture.\nIZ978 13.5 28.6##a person is sitting on a toilet undressing.\nIZ978 13.5 28.6##person undressing in the bathroom.\nRHYAJ 18.4 30.0##a person is snuggling a pillow.\nRHYAJ 18.4 30.0##person snuggling up with a pillow.\nK8AUX 0.0 10.6##a laughing person is drinking some coffee from a glass.\nK8AUX 22.4 31.0##person walk out the room through an open doorway.\nK8AUX 0.0 10.6##the person is drinking from a cup.\nU7Z37 4.0 9.5##person closing the door on the stove.\nKI0Q7 0.0 6.3##a person gets dressed than sits down.\nKI0Q7 0.0 6.3##a person dresses in the doorway.\n7QLMY 2.8 9.3##a woman runs into a room.\n7QLMY 2.8 9.3##a person runs into the room.\nD260T 0.6 12.5##person tidying up a cabinet.\nXR54W 0.0 8.1##a person takes a pillow from under the window.\n1PALI 9.3 17.3##person they open a window.\n1PALI 9.3 17.3##the person opens the window.\nG1CM7 24.6 37.0##person starts reading a book.\nG1CM7 24.6 37.0##person read a book.\n8WQOP 15.5 26.1##a sneezing person opens a basement door holding a box.\n8WQOP 15.5 26.1##person open a door.\n8WQOP 0.1 5.8##a person is standing holding a mirror in one hand.\nMZAN6 16.0 20.9##person turn off the light.\nMZAN6 0.0 12.6##a person is standing in the bathroom fixing their hair.\nMZAN6 16.0 20.9##the person turns off the light.\nMZAN6 0.0 12.6##a person is fixing their hair.\nMZAN6 16.5 23.3##person closes the door.\nYGQ7E 16.9 22.0##person wards open the door.\nYGQ7E 16.9 22.0##person opens the door.\n24XDE 0.0 8.1##a person puts a book on a shelf.\n24XDE 0.0 8.1##a man putting a book on a shelf.\n24XDE 10.2 20.5##person begins dressing.\n24XDE 0.0 6.7##person smiling the whole time.\nL37YS 0.0 11.9##a person is opening the door to a closet.\nE23CT 22.6 30.5##the person turns off the light.\nE23CT 0.0 6.4##person takes their broom.\nUAIHK 27.8 35.0##person opens a laptop.\nUAIHK 0.0 4.8##a person is awakening.\nUAIHK 26.9 38.0##person sits in bed.\nQSSCH 13.7 19.8##person takes their laptop from the arm of the sofa.\n6YTAJ 22.5 31.5##a person is eating some food.\n6YTAJ 22.5 31.5##this person is eating a sandwich.\n6YTAJ 22.5 31.5##person pouring over the words intensely as they eat.\n6YTAJ 22.5 31.5##a person is sitting at a desk eating.\nF8SNW 39.0 44.1##person put the blanket on the counter.\nF8SNW 47.1 53.8##person sitting on a chair.\nL3Z0M 11.9 16.0##person turn off the light.\nL3Z0M 11.9 16.0##the person turns off the bathroom light.\nN93LD 16.6 27.9##person put the laptop down.\nN93LD 16.0 20.9##the person closes their laptop.\nGNUZK 11.0 17.6##person takes some medicine.\nGNUZK 0.0 5.7##a person is fixing a light.\nA58I2 29.9 33.0##another person sits on a chair.\nA58I2 9.1 14.9##person opening a bag.\nUL9LN 20.1 27.5##person holding clothes.\nUL9LN 0.0 6.6##person opens door into wardrobe gets clothes out.\nUL9LN 0.0 5.4##a person is opening a closet.\nUL9LN 18.9 28.6##person takes the clothes over.\nVSO80 19.6 32.0##person sits down in a chair.\nVSO80 19.6 32.0##person sitting down in a chair.\nVSO80 5.1 12.5##person takes some food out of the refrigerator.\nVSO80 1.0 13.3##a person opens a refrigerator door.\nVSO80 7.4 12.9##person close the refrigerator.\n57NFY 10.1 16.1##person opens a cabinet.\n57NFY 2.9 8.6##a person is sneezing into a mirror.\n57NFY 10.1 16.1##person opening a cabinet in a kitchen.\n57NFY 27.0 34.4##person they close the cabinet.\nJSY2I 3.7 12.7##person closed a door.\nJSY2I 9.6 16.4##person sneezing into a bag of groceries in the entryway.\nDQ46N 0.0 6.7##a person sits in a chair in the kitchen.\nDQ46N 0.0 6.7##a person was sitting in a chair in the kitchen.\nQEXP4 2.1 9.6##person starts washing a mirror.\nTOOYI 12.2 19.1##the person places the box in the closet.\nEN3QY 20.3 32.2##person stops to look out the window.\nEN3QY 20.3 32.2##person looks out the window.\nEUJK0 20.9 32.0##person start reading a book.\nEUJK0 14.3 22.1##person close the laptop.\n76DE2 9.9 17.3##the person begins laughing.\nPROQY 0.0 3.0##one person runs into the entryway with a towel.\nM1B7N 1.3 14.2##person cooking at stove.\nM1B7N 1.3 14.2##a person cooks something in a pot on the stove.\nM1B7N 20.5 27.9##person take a sip of coffee from a cup.\nNXUA9 15.8 26.0##person washes their hands.\nNXUA9 2.6 9.7##a person is fixing the light on the wall.\n62VEF 3.8 10.7##person drinking from a coffee cup.\n62VEF 18.5 26.0##person eating a sandwich.\n62VEF 18.5 26.0##person eating a sandwich at the same time.\nCBXI2 19.5 25.0##person starts awakening due to loud noise from vacuum cleaner.\n23YS1 10.4 18.6##person puts groceries away there.\n23YS1 29.1 43.0##the person moves a chair to stand on.\nTHW67 20.5 30.0##a person is smiling.\nTHW67 11.7 25.8##the person begins eating.\nFU5BL 20.0 25.0##person puts the phone down.\nFU5BL 20.0 25.0##the person also puts the phone down.\nFU5BL 9.8 23.5##the person eats a sandwich.\nTGKHG 17.7 35.4##the person is eating a sandwich.\nTGKHG 1.6 8.5##person walks through the doorway.\nTGKHG 1.5 7.4##a person opens the door.\nXMJTG 1.8 8.3##the person is opening the door.\n1ESKX 6.6 25.2##a person smiles as they look out the window.\n1ESKX 14.5 33.1##person holding a camera.\n1ESKX 6.6 25.2##a person looks out a window.\n1ESKX 19.3 33.1##person takes a picture with a camera.\n1ESKX 19.3 33.1##person takes a picture.\n82XPD 19.0 25.0##person laughing the whole.\n82XPD 17.9 22.1##person turning a light on.\n82XPD 17.9 22.1##person turn on the light.\nW3I8W 0.0 5.1##a person takes a towel off a bed.\nW3I8W 20.7 27.2##another person turns off a light.\nW3I8W 20.7 27.2##person turns off the light.\nN3SBJ 16.1 22.0##this person is sitting at a table eating a sandwhich.\n6BXG4 0.0 6.0##person sitting in chair in kitchen holding mug.\n6BXG4 0.0 6.0##person sitting in a chair.\nH4KNQ 14.1 20.3##person puts the dishes in the sink.\nARESU 0.5 5.6##a second person walks over to the table holding bags.\nPAXNL 25.7 29.0##a person is eating food in a chair.\n3FMAS 31.6 38.0##person takes a picture of themself.\n3FMAS 31.6 38.0##person take a picture of them self.\nRQRR6 16.7 24.5##person close the laptop.\n9JI9W 27.5 36.4##person begins sneezing.\nDVBVZ 2.8 9.3##person takes a bag from a shelf.\nDVBVZ 2.8 9.3##one person takes a bag from a shelf.\nJ4TLX 18.5 29.6##person they begin laughing.\nKFC28 0.0 4.7##a person is sitting down on a chair.\nKFC28 29.2 35.0##person closes a cabinet door.\nKFC28 0.0 4.7##a person sits down in a chair.\nKFC28 29.2 35.0##person closing a cabinet in the living room.\nKFC28 29.2 35.0##person close an open cabinet door.\nEAGYP 14.5 19.4##the person takes a bite of some food.\nEAGYP 13.9 19.4##person smiling as they take a bite of their sandwich.\nXRWBL 26.1 31.0##person pick up their phone to talk.\nICXAE 0.0 13.4##a person is sitting in a chair with food.\nICXAE 0.0 13.4##this person is sitting in a chair.\nECLIB 9.8 14.3##person they take a glass off of a table.\nVGPCG 8.1 22.7##the person puts on a pair of shoes.\nVGPCG 25.5 32.0##person closing the door behind them.\n9HOV3 8.0 16.9##person pours it into a glass.\n9HOV3 8.0 16.9##person pours something into a glass.\nJCKRL 0.0 7.8##a person is walking through a doorway.\nJCKRL 0.0 7.8##person walks in through a doorway.\nQBOOH 0.0 8.3##person looking out of a window.\n3LLXX 12.5 23.7##a person is holding a cup.\n3LLXX 21.1 39.6##the person takes some medicine.\nW4C5O 0.0 8.2##a person drinks from a glass.\nW4C5O 15.2 21.9##person holding a towel.\nW4C5O 15.2 21.9##person holds up a towel.\n5B4HF 0.0 10.0##a person walks through the doorway.\n5B4HF 0.0 10.5##person drinking a cup of coffee.\n5B4HF 0.0 10.5##person he walks through a door drinking from a cup.\nINA5N 7.9 12.6##one person washes the window.\n1IJ7V 17.4 23.1##person put the cup on a desk.\n1IJ7V 17.9 23.3##person is putting coffee on the table.\nJFU3J 22.4 26.7##person turns the light off.\nJFU3J 26.2 34.0##person lay on the floor.\nJFU3J 26.2 34.0##person lays in the floor.\nJFU3J 22.4 26.7##person they turn off the light.\nJFU3J 22.4 26.7##person turn off the light.\nC4OY0 16.5 23.4##person takes out their phone to make a call.\nC4OY0 23.7 32.0##person talking on their phone.\nP7TT1 1.4 6.6##person throwing them on the floor.\nP1LWC 0.0 2.9##a person drinks from a glass of water.\nYDTH0 29.5 34.8##person put it on the table.\n0M9ZO 0.0 4.8##person takes off shoes.\n0M9ZO 15.6 21.1##person begins smiling.\nY8XYL 0.0 14.5##a person sits in a chair in the garage.\n8SVWO 28.1 34.0##person eats a sandwich.\n8SVWO 29.6 34.0##person only eats the cheese.\n8SVWO 13.7 23.0##a smiling person playing a game takes medicine.\n3LM6H 11.6 22.8##person holding a broom.\n3LM6H 11.6 22.8##a person is holding a broom.\n3LM6H 3.6 13.5##a person in the garage begins undressing.\nXXDHJ 0.2 7.8##a person turns on a light.\nXXDHJ 8.3 17.3##person begin fixing a doorknob.\nXXDHJ 10.6 20.0##the person opens the door.\nXXDHJ 10.6 20.0##the person begins to work on a doorknob opening.\n4T97L 8.3 16.8##a second person runs by.\n4T97L 12.5 17.5##person another turns the light on.\n4T97L 8.3 16.8##one person drinks coffee as another person runs in.\nFRC6O 4.4 14.3##person opens a laptop.\nFRC6O 4.4 14.3##person opens their laptop.\nBRJ0H 0.0 5.0##a person is walking through a doorway.\nBRJ0H 25.6 36.0##person holding a dish.\nBRJ0H 5.0 21.5##the person puts some food on their dish.\nA84J7 13.4 19.2##person turn off the lights.\nV9W9C 29.2 36.1##the person takes a drink from a glass of water.\nV9W9C 14.1 27.4##a person awakens at a desk in the basement.\nZU00I 20.9 28.4##person seems to drink some coffee out of her cup.\nZU00I 20.9 28.4##person than drinking from a cup.\nOJFYD 11.4 20.0##person takes off their shoes.\nOJFYD 11.4 20.0##person takes their shoes off.\nW9HYI 4.9 20.5##person start eating.\nW9HYI 4.9 20.5##person eating it on the stairs.\n8F17S 0.0 10.3##person #2 was sitting on a couch eating a snack.\n8F17S 0.0 10.3##person eating a sandwich.\n8F17S 0.0 4.5##person drinking from a glass of water.\n8F17S 2.9 8.8##another person is smiling.\n8F17S 0.0 4.5##another person is standing drinking a glass of water.\n8F17S 0.0 4.5##a person is drinking from a glass.\n8F17S 0.0 10.3##one person is sitting on a couch eating a snack.\n8F17S 13.2 18.2##person closes a cabinet.\nL7HA6 15.0 26.7##a person is drinking from a glass.\nL7HA6 29.6 43.0##the person starts undressing.\nL7HA6 27.0 32.9##person talks on phone puts on shoes.\nL7HA6 29.6 43.0##person begins undressing.\nCNS9B 0.5 10.3##person a standing in a garage laughing with person b.\nCNS9B 0.5 10.3##person two people are talking laughing using hand gestures.\nBQKW5 5.0 16.2##the person takes towels out of the box.\nBQKW5 5.0 16.2##the person takes out some towels.\nBQKW5 0.0 7.7##a person walks into a room holding a box.\nOWGPH 7.4 15.3##person throwing their clothes into the desk.\nOWGPH 7.9 15.5##a person is undressing in the laundry room.\n51ZY5 11.4 17.3##person run out of the kitchen.\n51ZY5 7.7 15.8##person laughing at their phone.\nS4UF8 26.6 32.3##person open the closet door.\nS4UF8 3.6 10.9##person drinking a cup of coffee.\n320VL 0.0 14.0##a person is watching a television.\n313G8 21.9 27.6##the person puts the phone down.\n47ZXN 18.5 31.6##person stands on a chair.\n47ZXN 0.0 8.1##a person is tidying a cabinet.\n47ZXN 19.5 30.1##person try to fix a broken light.\n47ZXN 7.5 13.8##the person turns on the light.\n47ZXN 7.5 13.8##person touches the light.\nZSL58 16.9 30.4##person closing the door in the doorway.\nZSL58 16.9 30.4##person closes a wardrobe door.\nZSL58 0.0 13.2##a person is laughing in front of a window.\nZSL58 16.9 30.4##person closes an open cabinet door.\n013SD 0.0 4.3##a person puts a box on a bed.\n013SD 5.8 10.0##person turning off a light.\n013SD 5.8 10.0##person they turned around to turn the bedroom light off.\nL4FWN 11.1 17.1##person laughing at the picture.\nL4FWN 28.8 32.0##person playing on his cell phone.\nD5IDA 5.9 16.0##person pouring themselves a glass of water.\nD5IDA 15.2 22.8##person takes the lid off of a sandwich.\nNCLD1 0.0 4.1##person holding a pillow.\nNCLD1 0.0 4.6##person throwing a pillow in a box over.\nNCLD1 0.0 3.5##a person is standing drinking a glass of water.\nFIA2R 17.9 25.5##person opened a box in the corner.\n74S1R 2.1 8.4##a person walks through the doorway of the bathroom.\n74S1R 0.0 6.5##person turns on light.\n74S1R 9.3 16.8##person opens plastic bag containing sandwich.\n74S1R 9.5 19.2##person as they eat from a dish of food.\n74S1R 2.1 8.4##a person walks through a doorway.\n74S1R 9.3 20.3##the person takes the sandwich out of the bag.\n74S1R 0.0 6.5##person turning on the light.\nL8FFR 21.5 31.1##person take a blanket from a chair.\n472EJ 15.1 21.3##person put food in there.\n0BZAD 26.2 31.3##person eats the food in the bag.\n0BZAD 26.2 31.3##person eating something.\nZUKHZ 12.2 17.5##person another runs by eating a sandwich.\nZUKHZ 10.4 18.4##person running down the stairs.\nZUKHZ 12.2 17.7##person eating something.\nK4X20 15.4 27.8##person drinking a glass of water.\nVEHER 3.3 10.3##a person runs into the laundry room.\nZAJG5 3.6 11.6##the person undresses.\nZAJG5 3.6 11.6##one person with a stack of clothes starts undressing.\nZAJG5 0.6 6.2##person putting clothes on the sink takes off a jacket.\nKAKC6 0.0 18.4##a person is working by reading a book.\n82B2V 9.0 17.0##person takes a camera.\nDW4YF 2.1 8.1##person is sitting at desk drinking cup of coffee.\nDW4YF 2.1 8.1##a person is drinking a cup of coffee.\nDVM8I 9.1 14.8##person opens a door.\nZRXQ1 13.9 20.6##person a runs out of the room.\nZRXQ1 13.9 20.6##another person runs out the room.\n6Z9ZC 10.2 18.1##person puts away some clothes.\n6Z9ZC 10.2 18.1##person someone putting clothes in a drawer.\n3FEYY 12.3 17.3##person putting the towel on an ornament.\n3FEYY 13.0 26.0##person cooks at the stove for a moment.\nUIPJB 2.5 8.7##person is sneezing on the food.\nBLFEV 20.3 29.1##person they pour water into a glass.\nBLFEV 34.0 40.0##person they stand up.\nBLFEV 20.3 29.1##person pours a glass of water.\nERC0T 12.8 26.5##person fixing a light.\nERC0T 12.8 26.5##another person fixes a light.\n3QY79 25.8 37.1##person takes more clothes.\n3QY79 25.8 37.1##person they take some new clothes from a cabinet.\n3QY79 8.9 15.6##person puts away the glass.\n3QY79 11.9 29.2##person so they begin undressing.\nMDG2T 13.8 20.4##person throws it on the floor.\nMDG2T 13.8 20.4##the person throws the towel on the floor.\nMX4FM 12.8 20.8##person they begin sneezing.\nB5R5B 0.0 6.1##a person runs in.\nB5R5B 1.5 7.5##the person takes out their phone.\nB5R5B 0.0 6.1##a person runs inside excitedly with a sandwich in hand.\nB5R5B 0.0 6.1##a person runs down the hallway.\n3MIWR 8.3 13.0##person start sneezing.\n3MIWR 8.3 13.0##person begins sneezing.\n0ZC7L 23.1 39.0##person start playing on their phone.\nCA7T0 24.5 30.2##the person puts down the food.\nCA7T0 28.4 40.0##person takes a box from on top of the dryer.\nUK5AT 8.1 25.1##person talk on the phone.\nTSKZL 14.1 20.2##the person closes the dryer door.\n4VYE5 91.7 102.0##person they stand up from the chair.\nQRULM 28.5 36.0##person begins looking at a picture.\nQRULM 28.5 36.0##person looks at a picture.\nQRULM 30.8 36.0##person smiling to themselves.\n0USFX 0.0 4.2##a person opens a cabinet.\n0USFX 13.5 20.0##person closes the cabinet.\n0USFX 13.5 21.1##the person takes the vacuum.\n0USFX 14.3 19.5##person puts groceries on the shelf close the door.\n0USFX 13.5 21.1##person takes the vacuum out of the room.\nUJJ6Z 4.1 10.5##a person is putting the top on a medicine bottle.\nSRTW8 8.2 15.3##a person lies on a couch.\nSRTW8 10.1 18.1##the person is smiling.\nSRTW8 5.9 12.3##a person awakens on a fold-up bed.\n9HTQ1 14.0 22.2##person put the pillow down.\n9HTQ1 17.4 22.8##person stand up.\nCB1Z2 16.9 22.0##person holding box.\nCB1Z2 16.9 22.0##person holding a box.\nY4X8J 23.2 31.8##person pull the window open.\nKB0Y8 4.8 9.0##person throw it on the floor.\nKB0Y8 4.8 9.0##person throws it to the floor.\nG4IV1 5.9 12.4##person opens the door.\nG4IV1 0.4 6.6##a person runs to the door.\nFU7HP 0.0 3.9##a person opens the refrigerator.\nFU7HP 0.0 3.9##person opens the refrigerator door.\nFU7HP 11.1 15.8##person closes the door,walks over to the stove.\nFU7HP 15.2 20.5##person puts the laptop on top of it.\nGY9MZ 26.7 36.0##person they take off their shoes.\n3C9R2 17.5 23.4##a person is smiling.\nGHJ8Z 21.8 27.4##person opens a box of medicine on the counter.\nCSHUE 0.0 7.6##a person is cooking some food at a stove.\nCSHUE 13.1 17.9##person they begin putting a blanket into their refrigerator.\nCSHUE 0.0 7.6##person trying to cook.\n61WBK 0.0 4.3##a person is throwing clothes down the stairs.\nHXWI9 18.3 28.5##another person holding a picture twirls around the no purpose.\nHXWI9 18.3 28.5##person 1 runs into the room holding a picture.\n81QUM 15.0 19.7##person puts broom next to door.\n81QUM 18.4 24.4##person starts throwing shoes.\n81QUM 22.5 29.0##person starts laughing.\nFPJKR 4.2 9.4##person takes a glass off of a shelf.\nFPJKR 10.5 15.5##a person runs into their home office.\nFPJKR 4.2 9.4##person takes a glass from the shelf.\nFPJKR 10.5 15.5##a person runs into a room.\n9JPV3 0.0 3.6##a person closes the closet door.\n9JPV3 0.0 3.6##a man closes a closet door.\nLBGFT 3.6 9.0##person sits on a chair.\nLBGFT 4.3 15.0##person they take off their shoes.\nF1C8I 0.0 12.6##person holding shoes.\nVOBBG 16.8 27.9##person takes the dishes to the kitchen.\nVOBBG 16.8 27.9##person takes the dish to near the sink.\nVOBBG 16.7 28.0##the person takes a picture of their food.\nA0PVR 0.5 10.8##a person closes a window beside a large mirror.\nA0PVR 0.5 10.8##person closing the window.\nC1QDS 8.3 18.7##another person laughs at him also holding a sandwich.\nC1QDS 0.0 12.1##a person is pouring something back in forth in cups.\nTZSIE 18.1 29.7##person walks to the doorway.\n9207X 9.5 16.0##person opening the cabinet.\nKRZW8 28.0 33.0##person checks their cellphone smiling.\nKRZW8 21.0 32.0##person starts laughing.\nD3N3P 13.5 18.0##person throws it on the floor.\nCUZND 16.9 24.1##person opening the door.\nCUZND 11.2 17.0##a person is smiling.\nCUZND 11.2 17.0##person begin smiling in the mirror.\nCUZND 12.5 17.4##person turning the light on.\nCUZND 29.7 36.7##person laughing at the bathroom mirror.\nCUZND 12.5 17.4##person turn on the light.\nSJJ35 0.0 5.6##a young person drinking coffee from a cup.\nSJJ35 0.0 7.4##person was holding the dish with the pizza on it.\nSJJ35 10.3 15.4##person they eat a sandwich.\nSJJ35 1.8 8.8##the person put the drink on the table.\nSJJ35 0.0 5.9##a person is pouring a cup of coffee.\nSJJ35 0.0 5.9##a person pours coffee into a cup.\nTMA9G 5.2 14.5##person open a refrigerator door.\nTMA9G 19.5 25.3##person closing the door.\nEC695 20.6 32.0##person another runs into the room to grab a laptop.\nOIRPJ 3.0 14.6##person are seen undressing.\nVWAEL 23.9 30.1##person they put it on a shelf.\nR9NRA 12.5 21.9##person a is pouring a glass of water.\n8DQ3V 0.0 3.8##a person is smiling at a window.\n8DQ3V 0.0 13.5##a person is looking out a window.\n8I352 16.8 30.0##the person sits at the table.\n8NSDT 0.0 11.9##person holding a camera.\n8NSDT 0.0 11.9##a person walks into an entry way holding a camera.\n8NSDT 6.4 12.4##person they put the camera on a table.\nKJ428 0.0 3.6##a person closes a door.\nCSQLJ 1.8 7.2##a person is sneezing on a dusty book.\n57A1A 3.0 9.0##person opens a laundry closet door.\n57A1A 11.0 16.0##person throws on the floor.\n57A1A 2.8 9.0##a person in a laundry room opens a cabinet.\nQ7YXN 12.4 27.2##person putting clothes in the washing machine.\nRVLLF 11.5 18.7##the person puts the towel on the shelf.\nXBTN7 13.2 21.5##person drinks from a bottle of water.\nXBTN7 1.3 9.3##a person throws a pile of clothes onto the sofa.\nXBTN7 13.2 21.5##the person drinks from a bottle of water.\nXBTN7 1.3 9.3##person throws clothes on the sofa.\n6EU06 3.8 9.4##a person can close a book in the hallway.\n6EU06 20.4 32.0##a person can wash a table in the hallway.\n9SZG2 0.0 3.7##a person is walking past the doorway.\nQODUB 27.0 33.1##person closing the window.\nR00L7 15.3 24.7##person looks at a recipe book.\n1HP1X 16.6 23.6##a person takes a blanket off a chair.\nFSWT4 0.0 17.0##a person is undressing.\nFSWT4 17.0 23.2##person putting the clothes on a shelf.\n3C9L1 31.2 35.0##person puts the laptop on the table.\nL9ANI 4.0 10.5##a person walks into a kitchen holding a grocery bag.\nRVV5Q 0.9 6.6##the person turns on a light switch.\nRVV5Q 0.9 6.6##person turns on the light.\nEM0B6 17.6 30.0##person eating a sandwich.\n8QTVQ 0.0 19.8##a person is holding clothes.\n8QTVQ 0.0 19.8##person holding a pile of clothes.\n8QTVQ 0.0 19.8##a man holding a bunch of clothes.\n5VINT 23.7 29.7##person walk through a doorway.\n5VINT 24.4 32.0##person closing the door behind them.\nYNIWQ 18.2 23.0##person they put the book under their arm.\nYNIWQ 17.5 23.3##person takes out a piece of paper.\nLW51F 11.3 17.0##the person closes the book.\nLW51F 11.3 17.0##person closes the book.\n22A2G 31.7 37.0##person they begin sneezing as they close the book.\nUXET8 1.7 9.8##a person puts a towel in a bag.\nUXET8 14.0 20.0##person put the bag on a table.\nUXET8 8.3 15.4##person they open the door.\nB8JAF 10.0 19.5##person closes the cabinet door.\nB8JAF 16.1 27.9##person begins washing the dishes.\nB8JAF 0.0 5.7##a person is opening the wardrobe door.\nB8JAF 0.0 5.7##person opens up cabinet door.\n0D5JP 0.0 7.9##person runs to table,grabs coffee drinks it.\n0D5JP 20.6 31.0##person runs to look outside  window.\n0M7YH 2.0 7.7##a person opens a refrigerator.\n1EJKT 0.0 5.6##a person is dressing.\n1EJKT 0.0 5.6##person they begin undressing.\nPGKB4 3.2 14.2##person eats it.\nPGKB4 14.7 22.4##the person quickly opens their laptop.\nPGKB4 14.7 22.4##person open their laptop.\nPGKB4 3.2 14.2##person eating a sandwich.\nPGKB4 3.2 14.2##a person runs into their recreation room.\nT6OAB 21.0 26.0##person decided to grasp the light switch.\nT6OAB 0.0 5.8##a person opens the medicine cabinet doors.\nT6OAB 21.0 26.0##the person flicks the light switch.\nCY6U7 0.0 10.3##a person sits in a chair.\nCY6U7 5.5 12.7##person stand up.\nSVA4D 19.3 24.6##another person is putting a laptop on the floor.\nSOR8E 4.6 10.6##person closes the refrigerator door.\nSOR8E 1.3 7.4##person they open the door of the refrigerator.\nQHNTC 18.1 28.7##the person puts the laptop on a table.\n1T8RK 1.8 7.1##person grabs bag from floor take towel out.\n1T8RK 3.7 11.5##one person opens a bag.\n1T8RK 7.2 12.3##person takes out a towel.\n1T8RK 0.0 4.1##person is fixing hair in mirror.\nX0BEF 5.2 17.1##a person is throwing shoes.\nX0BEF 18.3 27.1##the other person is drinking a cup of coffee.\nX0BEF 5.2 17.1##a person is throwing shoes at another person.\nTW12W 14.7 25.8##a person is throwing shoes.\nTW12W 4.2 17.3##one person sits on a bed eating food.\nTW12W 4.2 17.3##person eating a sandwich.\nTW12W 23.2 30.7##clothes .the person starts throwing clothes on the floor.\nIQ4GU 12.4 18.5##person drinking from a cup.\nIQ4GU 12.4 18.5##person they drink from the cup.\nK7PVL 9.0 20.4##a person is putting away the groceries.\n3TV9E 6.6 11.0##person drink a cup of coffee.\nHLMQ8 0.0 7.3##person laughing about the absurdity of the situation.\nHLMQ8 7.2 14.7##person opened the window.\nCF1OQ 0.0 8.7##a person runs around a sofa.\nCF1OQ 0.0 8.7##a person runs in sits down.\nCF1OQ 3.9 8.8##person puts on shoes.\nXQSXK 12.2 18.8##the person takes a tissue from the tissue box.\n08EPO 10.1 15.8##person they also eat food.\n08EPO 9.7 15.7##another person is eating a sandwich.\n08EPO 9.7 15.7##person they eat a sandwich.\nRYHHP 0.0 16.2##person fixing their hair.\nWJ1E7 8.7 14.1##the person puts the shoes down.\nGKH4A 24.8 33.0##person takes food out of a bag.\nFYH25 0.0 4.7##the person closes a laptop.\nFYH25 30.2 38.0##person takes some medicine.\nG4JHX 17.9 24.5##person puts it a computer bag on the couch.\nG4JHX 17.9 24.5##person puts it in a bag.\nG4JHX 0.0 5.0##a person takes a laptop off of the couch.\nL5TI4 27.2 32.0##a person is putting food on the table.\n84893 14.5 20.9##a person throws shoes on the floor.\n84893 0.0 3.5##a person looks out a window.\n84893 15.2 20.5##person throws their shoes to the ground.\n84893 14.5 20.9##person throws some shoes on the floor.\n84893 0.0 3.5##a person is looking out a window in a bedroom.\nP03FP 26.3 31.7##person eats it.\nP03FP 24.0 29.1##the person takes some food from a dish.\nCCN3E 3.6 13.7##person but stops to watch themselves in the mirror.\nQ34XB 0.0 9.3##a person undresses in front of a mirror.\nQ34XB 9.2 15.3##the person takes some clothes from a nearby table.\nYJ06D 13.9 19.5##the person turns the light on.\nYJ06D 13.9 19.5##person turns on the light.\nXGL67 0.0 6.2##the person puts clothes from the bed into the dresser.\nXGL67 0.0 6.2##person putting the clothes in the drawer.\nD2VU8 16.0 21.0##person puts down the book.\nD2VU8 2.8 8.2##person puts the phone down.\nD2VU8 2.8 8.2##a person is putting a camera on a shelf.\nNPNB3 14.6 28.3##person puts on shoes.\nNPNB3 14.6 28.3##the person puts on a pair of shoes.\nNPNB3 0.0 15.6##a standing person dresses.\nNPNB3 0.0 15.6##a person is dressing in the bathroom.\nC5LCU 0.6 7.3##person opens a laptop.\nC5LCU 0.6 7.3##person they open their laptop.\nDMANO 0.0 13.9##a person dresses.\nDMANO 0.0 13.9##person dressing by putting a jacket on.\nFL6DF 3.2 8.1##person opens a laptop.\nFL6DF 10.3 15.9##person throwing a pillow.\nFL6DF 3.2 8.1##person opening a laptop.\nFL6DF 3.2 8.1##a person is opening a laptop.\nFL6DF 10.3 15.9##person throws a pillow on the floor.\nH603E 3.2 15.1##person working on a laptop.\nH603E 20.7 29.0##person put the paper on the ground.\nH603E 26.5 33.0##person starts eating.\nH603E 3.2 15.1##person working on their laptop.\nH603E 26.5 33.0##person eat something.\nYPQ97 1.3 6.1##the person puts the shoes on.\n5ZDNU 0.0 8.3##a person standing in their closet starts undressing.\nQKIYJ 0.0 10.7##person they fix their hair in the mirror.\nQKIYJ 5.7 19.5##a person is in the entryway at their home laughing.\nQKIYJ 0.0 10.7##person fixes their hair.\nXQITP 10.1 16.0##a person sitting on a toilet puts shoes on.\n9UU4H 0.0 15.8##one person puts come clothes.\nD2T7Z 16.8 24.0##person throws it on the floor.\nD2T7Z 16.8 24.0##person throws it onto the floor.\n5U92L 4.0 12.0##a person is undressing.\n5U92L 4.0 12.0##a person undresses.\n5U92L 7.2 12.7##person throws clothes on a book.\nEOD1J 20.4 25.4##person put start to put the shoes on.\nITODQ 0.0 6.3##person begins laughing.\nITODQ 0.0 6.3##person is laughing.\n3EHAJ 0.0 7.0##person laughing at the homework that needs to be done.\n83654 0.0 13.1##a person puts a sandwich down onto a desk.\n83654 17.7 27.3##person opens a box.\nE0IME 29.7 35.0##person runs away.\nE0IME 29.7 35.0##person runs towards the window.\nQAJQC 4.7 13.1##person puts their laptop in a cabinet.\nQAJQC 3.6 10.3##person opens up a cabinet door.\nQAJQC 2.0 7.0##person turns off the light.\nQAJQC 4.7 13.1##person puts a laptop on a shelf.\nQAJQC 2.0 7.0##person turns off light.\nQAJQC 2.0 7.0##the person turns on the light.\nQAJQC 2.0 7.0##person turns on a light.\nQAJQC 24.7 30.0##person closes the doors.\nCR5G1 10.9 26.9##the person sits on the floor.\nDEZJ5 14.2 20.0##a person opens a closet door.\nDEZJ5 14.2 20.0##the person opens the door which is for a closet.\nDEZJ5 10.0 16.0##the person reacts by laughing.\nDEZJ5 14.2 20.0##the person is closing the door.\nDEZJ5 0.0 2.8##person is opening door to get box of shoes.\nDEZJ5 10.0 16.0##person starts laughing.\nUB00R 22.0 27.0##person stand up.\nVJ3B5 6.0 10.2##person throws it to the floor.\nVJ3B5 5.2 10.1##the person takes a box from the sink.\n5AYUN 20.6 39.1##so person gets a chair to stand on.\nU6GKR 6.6 18.6##person drinks from the cup.\nU6GKR 6.6 18.6##person drinks iced coffee from the glass.\nKS29V 0.0 6.2##a person is holding a pillow.\nKS29V 0.0 6.2##person holding a pillow.\n4L6GZ 15.2 30.6##person opening a window.\nJI705 20.6 26.6##person takes a bag of food from the nearby shelf.\nPGGRZ 0.4 5.5##person throws a pillow.\nPGGRZ 0.4 5.5##a person is throwing a pillow.\n57QKQ 3.3 10.9##one person opens a window.\n57QKQ 9.1 16.3##person throws the blanket toward the floor.\n57QKQ 1.0 12.5##person looks out the window.\nZ9IF5 7.0 14.1##person they stand up.\nI5MCA 7.2 17.2##person washes their hands.\nI5MCA 5.3 10.8##that person puts the sandwich down.\n5VDT6 18.3 23.1##person throws clothes on the floor.\nUPWTC 0.0 5.9##a person is sitting at the table.\nUPWTC 0.2 6.0##person they stand up.\nUPWTC 17.0 26.9##person decide to put on some shoes.\nUPWTC 17.0 26.9##person puts on shoes.\n9ONDD 0.0 15.1##a person is cooking on a stove.\n9ONDD 13.5 20.5##person open the refrigerator to grab eggs.\n9ONDD 18.8 24.5##the person is closing the refrigerator.\n9ONDD 0.0 15.1##a person is cooking some food on the stove.\n8EYST 18.0 32.0##person opening a book on the stairs.\nSZYJO 26.1 32.0##the person puts a few bowls on a table.\nSZYJO 5.0 13.1##the person is sneezing in front of the laptop.\nIOMVF 18.1 25.0##the person walks over to look out the window.\n0C5IQ 0.0 3.8##a person walks in through the doorway.\nI562C 15.2 25.7##person eat a small plate of food.\nI562C 0.6 5.7##a person opens the garage door.\nI562C 15.2 25.7##person sits down to eat.\nI562C 0.6 5.7##a person opens a door than walks to a chair.\n69EK6 30.8 37.0##person open a door.\n69EK6 27.0 34.4##person put their phone on a table.\n69EK6 27.5 33.9##person puts it down on the table at the bottom.\nX75PJ 0.0 12.4##a person is running in place.\nX75PJ 24.8 29.0##person finally turning off a light in a hallway.\nX75PJ 0.0 12.4##person running in place.\nX75PJ 3.0 11.7##a person is sneezing.\nX75PJ 24.8 29.0##person turn off the light.\n974TA 28.0 32.0##person opens the cabinet.\nCTCO8 17.5 23.6##another person is throwing clothes.\nCTCO8 27.8 31.0##one person is watching a laptop.\nAKKWU 38.0 13.0##person opens the cabinet.\nAKKWU 38.0 13.0##person has opened a cabinet.\nYBXCT 1.9 8.4##person open the closet.\nYBXCT 6.7 15.0##a person is near a closet holding a towel.\nOXEMQ 0.0 7.3##a person undresses in the entryway.\nOXEMQ 20.0 30.0##person begins dressing.\nOXEMQ 20.0 30.0##a person is dressing - takes off.\nG7GVD 4.0 9.7##the person puts their foot up on the table.\nG7GVD 5.7 23.9##the person was working on a laptop on a table.\nG7GVD 21.9 27.7##person takes off a shoe.\nY5NDR 5.5 12.2##person the begin running around undressing.\nY5NDR 1.0 6.5##person turns on the light.\n8X7D6 22.9 28.0##another person closes a laptop.\n8X7D6 20.2 27.0##person watches the television.\n8X7D6 22.9 28.0##person closes the laptop.\nYUEB9 21.0 29.4##person get up to look out a window.\nYUEB9 11.6 21.9##person they start sneezing.\nYUEB9 21.0 29.4##person looks out the window.\nJTM7L 6.9 13.3##person #1 opens the front door.\nCQPZU 18.0 24.0##person runs out.\nCQPZU 18.0 24.0##person run through.\nCQPZU 11.9 21.1##person opens the door.\nCQPZU 18.0 24.0##person runs through.\nCQPZU 11.9 21.1##person they open the door.\nYJ888 10.4 15.8##person while seated on a blanket.\nYJ888 10.4 15.8##person take out something to eat they look around.\nYJ888 0.0 12.9##a person opens a bag.\nMUGVM 0.0 7.2##a person is tidying up a table with a towel.\nMUGVM 20.0 26.1##person they fix their hair in a mirror.\nMUGVM 17.7 25.3##person takes a drink of a glass of water.\nMUGVM 20.0 26.1##person looking at a mirror to fix their hair.\nW9XY8 1.1 8.4##a person opens a cabinet.\n2IC8O 0.0 7.1##a person is sitting in a chair.\n2IC8O 15.8 25.0##a person is sitting in a chair watching television.\nOADOE 21.1 25.0##person closing the door behind him.\nOADOE 0.0 9.0##a man is standing at a stove cooking something.\nFRLW2 8.6 15.4##person puts away a bag.\n25QPB 17.0 25.0##person opens a closet door.\n25QPB 18.1 29.0##person start smiling at what is inside.\nAHZWF 6.1 12.7##person they stand up.\n24KQ5 0.0 11.4##a person is watching television.\nEMMYX 23.6 32.0##person they put a broom at the entrance.\nEMMYX 19.2 27.5##person smiling as they are closing the door.\nH3E1E 0.0 6.1##person drinking a cup of coffee.\nENQUT 26.8 38.4##the person takes off their shoes.\nENQUT 5.0 11.2##a person is washing their hands.\nENQUT 26.8 38.4##person they take their shoes off.\nENQUT 36.8 41.0##person throws them on the floor underneath the table.\n10ND1 30.1 35.0##a person is cooking something on the stove.\n10ND1 28.2 34.9##person they put the food on a plate.\n10ND1 30.1 35.0##person puts them into the skillet/pot/pan to start cooking.\n10ND1 0.0 5.6##person put it on a table.\n5XEOB 19.3 25.7##a person is smiling.\n5XEOB 6.5 17.2##person closing a door in a pantry.\n5XEOB 6.5 17.2##person they close the door.\nNL7BY 0.0 6.6##the person is sitting down looking through a book.\n4G00A 0.0 5.9##person pouring some water into a glass.\n4G00A 0.0 5.9##a person is pouring themselves a glass of water.\n573OJ 26.6 31.0##another person turns off a light.\n573OJ 26.6 31.0##person turns off the light.\nL1Z8A 28.4 51.6##person start holding up a mirror to their face.\nL1Z8A 0.4 23.3##a person is sitting on a couch.\nWN38A 13.6 18.7##person they put the detergent box on a table.\n3G4PN 23.1 29.2##a smiling person walks into their bedroom.\nT1XP2 1.2 9.6##a person reading a book.\nT1XP2 18.1 31.1##person begins sneezing.\n3CIVD 14.8 21.1##person eating some food.\n7HV9Q 0.0 10.8##one person is opening the laptop.\n7HV9Q 0.0 10.8##person opens a laptop to work on it.\nG64VQ 0.0 3.8##a person holding a phone.\nPURYC 0.0 2.5##the person opened the refrigerator.\nFDVBR 19.2 27.0##the person puts the picture on a shelf.\nMNS8T 0.0 14.2##a person laughs at the food cooking on the stove.\nMNS8T 0.0 14.2##a person is cooking on a stove using a pot.\nMNS8T 0.0 14.2##a person is cooking some food on a stove.\nS9P0W 27.1 32.6##person turning off the light.\nS9P0W 27.1 32.6##person turns off the light.\nCRNL5 20.4 30.2##person putting them on a shelf.\nQXBTG 3.1 9.8##person they take a towel from the box.\nQXBTG 0.0 3.9##a person opened a box.\nQXBTG 14.4 21.0##person start throwing shoes at the desk.\nX1R6D 2.2 8.9##person closes the door.\nX1R6D 2.2 8.9##the person closes the door behind them.\nRKIC6 0.0 6.2##person runs down the stairs.\nVF3Y0 6.0 10.0##person starts putting food from the pot onto a plate.\nGOWDG 8.6 20.4##person puts the broom away.\nGOWDG 2.8 9.6##person puts a broom next to a shelf.\nGOWDG 0.0 6.5##a person is opening a door.\nGOWDG 0.0 6.5##one person opens the door.\nFKAGD 17.8 25.2##person looking at a book / magazine.\nFKAGD 13.8 21.0##person eating food with a book open.\nFKAGD 0.0 6.3##person the other is eating a sandwich.\n5657O 0.0 13.4##a person is undressing.\n5657O 20.9 32.0##person take a picture of them self.\n5657O 10.2 18.2##person takes off their shoes.\n8BNUT 24.2 30.9##person begins pouring soda into the glass on the desk.\n8BNUT 24.2 30.9##person pours some water into a cup.\n8BNUT 10.3 17.3##person turning on a light.\n8BNUT 10.3 17.3##person turns light on.\n8BNUT 10.3 17.3##person stands next to the light switch for a moment.\n8BNUT 10.3 17.3##person turning the lights on.\n4CAHN 18.5 24.8##person close the door.\n4CAHN 18.9 23.9##person they take a cup from the refrigerator.\n4CAHN 18.9 23.9##person take out a glass of water.\n4CAHN 17.4 23.4##person open the door.\nJIS2Q 6.4 12.0##person opened the door.\nJIS2Q 2.0 7.4##the person puts the bag down.\nTYHA8 2.0 7.9##the person puts down the phone.\nLCEM0 0.2 12.6##person they eat a grape.\nLCEM0 23.8 29.2##person put the plate on the table,.\nLCEM0 0.2 12.6##person eating some groceries that the just bought.\nLKYCT 10.3 24.8##person eating a sandwich.\nLKYCT 22.6 31.0##person drink a glass of water.\nLKYCT 22.6 31.0##person drinking a glass of milk.\n47D1Y 0.3 6.3##the person opens the bathroom cabinet.\n3HF45 3.4 9.9##a person takes clothes out of a dryer.\n35W7G 0.0 11.8##a person is undressing.\n35W7G 14.1 23.6##sneezing many times.\n35W7G 14.1 23.6##person stands by a door sneezing.\n35W7G 14.1 23.6##the person is sneezing by the door.\nKRRBE 5.0 11.1##person they stand up.\nKRRBE 11.6 18.5##person walk through a doorway.\nKRRBE 0.0 8.6##a person is sitting on a chair using a tablet.\nKRRBE 0.0 9.3##a person is looking at a book.\nKRRBE 0.0 8.9##person looking at a picture.\nUKGO4 0.0 4.4##person cup they take them away.\nUKGO4 26.8 31.1##person turn off the light.\nUKGO4 26.8 31.1##person turning off a light.\nUKGO4 15.2 20.2##a person is dressing.\nKD2H4 0.0 12.6##a person is washing dishes in the sink.\nKD2H4 19.2 25.5##person open the oven door.\nKD2H4 19.2 25.5##person opens the oven door.\nKD2H4 19.2 25.5##a person is opening the oven door.\nKD2H4 0.0 12.6##a person is washing dishes.\n5G9SV 8.3 15.0##person puts a picture on a shelf.\nLPPFL 2.3 9.8##a man is drinking a glass of water.\nNIG0Z 0.4 5.0##there is a person sitting on a sofa drinking coffee.\nRRNDQ 0.0 4.2##person sitting in a chair.\nRRNDQ 4.9 14.4##person drinking out of a cup.\n63WHZ 1.6 21.5##person sitting in front of a computer folding a towel.\nL2DR0 15.2 20.0##person throws the pillow.\nL2DR0 15.2 20.0##a person in a garage throws a pillow.\nL2DR0 4.8 9.8##person holding a vacuum.\n3D81G 0.0 8.7##person eating food.\nS2L5Z 5.0 11.3##person puts a camera on a chair.\nS2L5Z 9.8 18.4##person takes a stack of dishes.\nUJO36 1.9 9.3##person pours some into the glass.\nUJO36 11.0 16.7##person puts the glass down.\nUJO36 1.9 9.3##a person is pouring soda into a glass.\nYMGGV 0.0 5.7##a person sitting on couch turns on the tv.\nK1D2G 14.4 19.8##person holding a towel.\nK1D2G 14.4 19.8##a person is running into a bedroom holding a towel.\nK1D2G 0.0 4.2##a person walks through a doorway.\nTYYZK 23.5 42.0##person holding a laptop bag.\nI5LAC 2.1 7.7##person they put the bag on the table.\nI5LAC 0.0 7.0##a person walks into the basement holding a bag.\n0DBQD 0.0 5.1##person one is eating a sandwich.\n0DBQD 0.0 5.1##a person is eating a sandwich.\n0DBQD 0.0 5.1##person they watched television.\n0DBQD 8.6 17.8##the person was also drinking a glass of water.\n0DBQD 0.0 5.1##person watching television.\n0DBQD 0.0 5.1##a person was eating a sandwich on the couch.\nNLM0B 10.6 15.6##person they close the box.\nR5IQ5 15.6 27.3##one person is smiling.\n3O6KD 16.7 31.0##person sits down on a chair.\n3O6KD 0.0 10.0##a person is sitting on a bed.\n3O6KD 0.0 10.0##the person sits on the bed.\nZ3DBQ 15.1 22.8##person throws down the bags of groceries.\nZ3DBQ 0.4 8.7##a man opens a door.\nZ3DBQ 15.1 22.8##person throws the bags over the railing.\nZ3DBQ 0.4 8.7##person opens door to apartment.\nBLBJY 0.0 13.0##a person is eating food.\nTX020 0.0 7.0##a person runs into the garage.\nTX020 0.0 7.0##a person runs into a garage.\nTX020 0.0 7.0##person runs out of garage.\nTX020 0.0 7.0##person runs into garage.\nC6F8V 14.0 19.0##a person is standing in front of a mirror laughing.\nNH3LX 26.8 31.7##person take a glass of water.\nVS5IY 1.0 7.5##person puts a glass of milk on a table.\nVS5IY 14.1 26.0##person getting dressed.\nVS5IY 14.1 26.0##person starts getting dressed for work.\nB8DL6 14.1 22.0##person they tidy up the table.\nB8DL6 14.1 22.0##person starts tidying up a table.\nB8DL6 14.1 22.0##the person begins tidying the area around the table.\n3U1SS 0.0 14.7##the person fixes their hair.\n3U1SS 0.0 14.7##personlaying on floor gets up.\nO8S0J 0.0 8.4##a person is sitting at a desk as they eat.\nTOE9V 0.6 5.7##a person throws a book.\nTOE9V 3.9 9.3##person puts a towel over top the book.\nORAT0 8.0 16.1##person eats a sandwich.\nORAT0 4.1 12.0##person sits at the table.\nORAT0 8.0 16.1##person eats something.\nW1QG3 11.1 17.6##a sneezing person is fixing a shelf in their bedroom.\nORPD5 17.1 30.0##a person is tidying up some clothes.\nORPD5 4.3 10.5##a person is putting towels on a chair.\nMWUIN 0.3 8.0##the person puts the pillow on a chair.\nGSQX3 9.0 14.6##person they start sneezing a lot.\nHJ8U7 15.7 28.3##person starts drinking a glass of water.\nHJ8U7 0.0 13.4##a person is dressing in the entryway.\nUECH4 18.8 31.0##person sneezing into a mirror in a hallway.\n01K8X 27.6 32.0##person opening the door.\nP68QV 0.0 3.5##person smiling at it.\nP68QV 0.0 3.5##a person is seen smiling.\nET224 50.3 56.1##person closing the door behind him.\nET224 48.2 54.0##person opened a door.\nBWKJB 0.0 4.4##a person takes a blanket from a chair.\n469ZJ 0.0 5.9##person turning on the light.\n469ZJ 0.0 5.9##a person turns on the light.\n1L7XE 0.2 4.9##a person opens a cabinet.\n1L7XE 0.2 4.9##person opening a cabinet.\nFXBGY 0.5 6.8##the person laughs each time they sneeze.\nFXBGY 0.5 6.8##a person laughs.\nTZF0X 2.2 9.0##person puts down her bag.\nTZF0X 9.1 13.7##person takes her shoes off.\nTZF0X 1.1 9.1##person holding a bag of clothes.\nB6LRC 17.7 23.7##a person takes a pair of shoes from the shelf.\nB6LRC 18.3 31.3##person holding the shoes.\nBZ171 0.0 9.7##a person is awakening.\nBZ171 19.8 30.0##person they sit up on their bed.\n4Q3N9 6.2 11.6##person starts laughing.\n4Q3N9 6.0 11.0##as the person walks into the closet smiling.\nJH47V 0.0 17.0##the man pours mountain dew into a glass.\nIQ0ZX 0.0 3.5##person watching a video on a laptop.\nIQ0ZX 20.8 26.3##person drinking from  a glass.\nJSBMM 14.8 25.9##person takes medicine from the cabinet.\nC1F1D 16.8 30.0##person talk on a phone.\nC1F1D 12.8 17.3##person the put the cup down.\nC1F1D 0.0 5.7##person drinking a cup of coffee.\nC1F1D 16.8 30.0##person starts talking on phone.\nJ0SZG 0.0 9.7##a person is putting a blanket into a washing machine.\nJ0SZG 0.0 9.7##a person puts a blanket in the washing machine.\nJ0SZG 8.0 14.4##person opens the door.\nJ0SZG 19.4 31.0##a person loads their washer with clothes.\nJ0SZG 8.0 14.4##person occasionally tapping the door to the laundry room open.\nJPEM7 0.0 3.0##person eating some food.\nJPEM7 0.0 3.0##person sits down to have a bite to eat.\nJPEM7 0.0 3.0##person begins to eat.\nL5G6N 0.1 9.1##a person is closing the medicine cabinet.\nL5G6N 0.1 9.1##a person closes cabinet drawers.\nL5G6N 25.4 30.0##person turns off the light.\nL5G6N 25.4 30.0##person turning off the light in the bathroom.\nT1CQE 21.4 29.9##person takes out a laptop computer.\nT1CQE 8.0 14.9##person takes their laptop out of a bag.\nT1CQE 21.4 29.9##person takes out a laptop.\nT1CQE 18.9 27.4##person opens the bag.\nKWQKH 3.8 12.3##person drink coffee out of a glass open closet door.\nKWQKH 8.2 13.7##person they begin opening the closet.\nKWQKH 10.0 17.0##person takes a vacuum out the closet.\nKWQKH 17.0 21.5##person turns off the light.\nKWQKH 10.0 17.0##person take out a vacuum.\nKWQKH 9.0 20.0##person closes the door.\n2QYZA 21.9 31.0##person eats some of the food.\n2QYZA 21.9 31.0##person starts eating.\n2QYZA 21.9 31.0##person fixes something to eat.\n2QYZA 0.0 11.2##one person opens a box.\n2QYZA 8.3 12.9##person puts the food on the table.\n758T4 11.4 18.6##person they take their laptop.\nUVN96 7.3 15.7##person takes a phone from a cabinet.\nUVN96 9.8 16.5##the person opens a cabinet.\nYIM12 24.9 32.0##the smiling person enters.\nF5OZ5 19.5 25.0##a person is in the basement throwing a pillow.\nF5OZ5 19.5 25.0##person they throw the pillow on the floor.\n97JCX 0.9 8.1##person drinks a cup of coffee.\n97JCX 3.9 12.4##a person is dressing in the bathroom.\nXB4HN 6.2 13.3##person closes the door.\n7JZGN 5.9 13.1##a person closes a book.\n5L04F 9.3 16.7##a person sitting on stairs laughs.\nSP6M4 2.7 7.5##person closes book.\nSP6M4 7.4 12.4##person takes a sandwich out of the bag.\nSP6M4 7.7 13.0##the person takes some food out of a bag.\nSP6M4 6.2 11.4##person opens bag.\nSP6M4 9.8 14.0##person eats the sandwich.\nSP6M4 9.8 14.0##person begins eating it.\nSP6M4 9.8 14.0##person eats food.\nC4E9X 16.9 23.8##person open a cabinet.\n07RDG 1.7 7.5##person puts down some dishes.\nJL6MG 24.4 36.2##person starts eating.\nJL6MG 25.6 41.0##person eating a sandwich.\n83KZR 10.2 22.9##person is closing the door.\nU2FA5 18.1 31.0##person begin working on their laptop.\nU2FA5 16.4 21.6##person sits on chair.\nU2FA5 16.4 21.6##person sit in a chair.\nU2FA5 18.1 31.0##person starts working on a laptop.\nKVONB 0.0 9.0##a person opens up a window.\nKVONB 21.5 27.8##person puts clothes on the vanity.\n7EHQU 6.1 12.6##person opens a cabinet.\n7EHQU 8.5 15.5##person takes a sip from the cup.\n7EHQU 0.0 8.7##a person puts down a blanket by the tub.\n7EHQU 12.0 21.4##person pours liquid into a small plastic cup.\nQRLOG 6.3 11.3##person they stand up.\nQRLOG 0.0 9.2##person put the phone down.\nQRLOG 6.3 11.3##person when they stand up they grab a broom.\nSE3WY 11.6 25.5##a person is sneezing.\nSE3WY 11.6 25.5##person begins sneezing.\nYJFWW 0.0 6.1##one person runs into the garage with a phone.\nYJFWW 0.0 6.1##a person runs into a garage holding a phone.\nEI5M3 0.0 8.2##a person opens a closet door.\nEI5M3 7.1 14.9##person puts in a clean towel.\nEI5M3 0.0 8.2##person open a closet door.\nEI5M3 1.1 7.0##a person opens the wardrobe in a closet.\nEI5M3 7.1 14.9##person putting a towel on the shelf.\nEAVWL 6.7 13.2##person puts a cup on the floor.\n297S4 27.5 34.7##person closes door behind them.\n297S4 6.2 26.5##person stand on one leg on chair.\n297S4 27.5 34.7##person closing the door behind them.\n297S4 6.2 26.5##a person stands on a chair in the closet.\nUXEL9 14.2 26.8##person started opening the boxes.\nUXEL9 11.4 18.7##person puts it down on a table.\n2JP64 14.1 21.9##person decide to eat a sandwich.\nCBW6S 10.9 17.5##person they laugh.\nCBW6S 5.7 11.0##person looks out the window.\n7UQFM 18.8 30.6##person wards they start drinking from a glass.\n7UQFM 9.5 18.9##that same person puts their phone in their pocket.\n7UQFM 9.5 18.9##person puts their phone in their pocket.\n7UQFM 6.0 11.0##a person is playing with their phone.\n7UQFM 9.5 18.9##person they put the phone in their pocket.\nIF4Y9 15.9 30.7##the person closes the window.\nIF4Y9 15.9 30.7##person closing the window.\nPS29P 0.0 8.9##a person is running down the stairs holding a broom.\nLLOGB 0.6 9.0##person holding a glass of water.\nK9V2R 32.6 35.0##person holds a box.\nKNGUT 24.0 31.0##a person is eating something from a bag.\nAXZVQ 3.5 10.1##person opens a cabinet.\nDSHVL 17.3 23.0##person walks out through the doorway.\nWA7WD 24.2 32.0##person eating it.\nWA7WD 24.2 32.0##person begins to eat it.\nWA7WD 14.7 20.9##person they open a lunch bag.\nI5F23 0.2 5.2##a person is walking to turn the light on.\nX4YHQ 10.4 28.9##person sitting down in a chair.\nCTFYL 2.8 19.4##a person is putting food in a cabinet.\nCTFYL 2.8 19.4##a person puts food in a cabinet.\nC6LW1 0.0 9.0##a person looks out the window.\nC6LW1 12.8 21.4##person takes a picture of the outside.\nC6LW1 0.0 9.0##a person is looking out the window.\nC6LW1 25.0 30.0##person drinking a bottle of water.\n7SKSD 1.0 12.1##a person is watching themself in a mirror.\nPVB4S 16.7 25.4##person they throw the bag on to the floor.\nPVB4S 16.7 25.4##the person throws the bag next to the sofa.\nPVB4S 5.7 18.7##a person walks down some stairs holding a bag.\n2IS9G 10.2 14.8##person turns on the light.\n2IS9G 1.0 9.2##one person awakens.\n2IS9G 10.2 14.8##person turn on the light.\n2IS9G 10.2 14.8##person turns on a light.\nV7PGV 19.5 25.1##person puts the towel down.\nV7PGV 20.9 26.8##person turns off the light.\nV7PGV 22.8 27.0##person runs out of the room.\n58R8A 11.5 17.9##person turns off the light.\nO1YWR 20.6 31.4##person putting the clothes in a bag on their bed.\nO1YWR 0.0 11.5##a person is undressing by grasping.\nCM293 7.0 16.0##person opens a closet.\nCM293 0.5 9.4##a person is walking down the hallway eating a sandwich.\nCM293 0.5 9.4##person eating a sandwich.\nCM293 0.5 9.4##person eats a bite of sandwich.\nCM293 7.0 16.0##person they open a closet.\n29E4A 2.8 19.9##person is standing in hallway putting on shoes.\n29E4A 17.0 36.3##person starts dressing by mirror to go out.\n29E4A 2.8 19.9##a person is putting on shoes.\n29E4A 2.8 19.9##person putting on shoes.\nXBPEJ 3.1 9.8##person he takes a box off the washing machine.\nXW1LX 13.5 21.1##person turns on the light next to the bed.\nXW1LX 0.0 9.2##a person awakens in bed.\n9BCZU 18.6 26.6##person they undress.\n47I6H 12.0 17.9##the person reaches to turn the light on.\n47I6H 12.0 17.9##person turned on the light.\nHONRP 13.8 24.2##person puts clothes.\nLWEPB 9.9 16.8##person they stand up.\nLWEPB 9.9 16.8##person stand up.\nLWEPB 20.6 26.1##person close the door.\nLWEPB 8.4 15.4##person holding a pillow.\nLWEPB 0.0 12.3##person playing on their phone.\nLWEPB 0.0 13.9##a person is sitting on a couch.\nLWEPB 10.1 15.3##person put the pillow on a bed.\nLWEPB 0.0 13.9##a person is sitting on a chair with a pillow.\nLWEPB 18.7 26.3##person open a door.\nCI6H7 2.6 7.7##a person is smiling.\nCI6H7 2.4 6.8##person looking at a picture.\nLHMMJ 0.0 9.3##a person sits in a chair in the kitchen.\nHHZUI 24.2 34.0##person take a book from it.\n808H5 12.0 18.7##person opening the closet.\n808H5 12.8 19.0##person opening the door.\nJUI9U 20.1 27.2##person they stand up.\nJUI9U 0.0 3.4##a person opens a refrigerator door.\nJUI9U 0.0 3.4##person smiling as he/she opens the refrigerator.\nGYRQH 5.6 20.1##person starts undressing.\nGYRQH 5.6 20.1##a person is  undressing in front of a mirror.\nGYRQH 19.6 26.1##throws a pillow to person a.\nZBDB5 9.4 14.6##person they close the laptop.\nZBDB5 9.4 14.6##a person closes a laptop in the bedroom.\n16S3C 18.7 28.0##person looks at a picture on it.\n16S3C 0.0 14.6##a person leaning on a doorway eats a sandwich.\nEQO9N 0.0 8.5##person b is putting clothes on a chair.\n5NF0R 0.4 7.0##a person sits down on a couch.\n5NF0R 5.9 13.0##a woman puts a box on a table.\n5NF0R 23.4 31.9##person plays on her phone.\n5NF0R 23.4 31.9##person begins to play with their phone.\n5NF0R 5.9 13.0##person puts a box on a table.\nMOKPE 13.6 21.2##person puts the box back up on the ledge.\nMOKPE 0.0 3.4##person takes medicine out of the box.\n4WX0H 15.5 27.2##a other person is laughing into a bag.\n0BXRP 19.4 28.0##this person starts cooking at the stove.\nOHNF4 18.1 23.8##person they take a glass of water from the table.\nAB06W 23.1 30.0##person lies down to watch television from bed.\n2XT4N 13.6 18.9##person runs out of the room.\nOTLX9 0.0 10.4##the person is dressing in the living room.\nPB0JI 8.3 18.3##person puts the laptop on a table.\nSFHY2 4.1 9.4##person throwing food towards the table.\nEW3VV 3.7 9.3##person sits on the sofa.\nEW3VV 7.3 16.3##person begins drinking from the glass.\nYRPAR 1.7 9.0##a person is holding a laptop.\nJL5O0 6.3 11.8##person put something on a table.\nJL5O0 6.3 11.8##person putting the phone on a table.\nNMRF0 13.6 22.6##the person takes a picture of the stove.\nNMRF0 27.6 32.0##person leaves the room smiling.\n05ZNF 5.1 13.0##person watching a laptop screen.\n05ZNF 23.1 32.0##person eats some food.\n05ZNF 23.1 32.0##person eats them.\nQ366H 22.3 32.0##a third person is sitting in a chair.\nQ366H 0.0 9.4##a person is sitting on the floor reading a book.\nQ366H 0.0 9.4##person sitting on the floor.\n4JOAD 0.0 5.8##the person puts groceries down.\n4JOAD 9.6 17.6##person starts tidying the counter with a towel.\n8ECJ1 0.0 13.7##seated man reads book.\n06EDS 23.9 36.0##a person is cooking on the stove.\n06EDS 23.9 36.0##person they're cooking a sandwich in their kitchen.\n0I0FX 25.0 31.0##person finally eating a sandwich in a garage.\n0I0FX 25.0 31.0##person start eating it.\nRGY38 21.0 25.7##the person puts the bottle down.\n6VUIO 5.5 14.6##person drinking a glass of water.\n6VUIO 5.5 14.6##person drinking from a glass in the pantry.\n6VUIO 5.1 11.9##the person takes a glass of water.\nWFVD3 10.2 18.4##person throws a book inside near a laptop.\nWFVD3 8.7 14.3##person they turn the light off.\nWFVD3 10.2 18.4##person throws the book.\nWFVD3 10.2 18.4##person throw the book in a room.\nQO49P 2.2 7.8##person throws a pillow on the ground.\nJ27HW 26.7 32.0##person puts it down to eat some food.\nJ27HW 19.8 29.1##the person laughs at something on their phone.\nBZWSJ 10.5 16.3##person putting the cup on a counter.\nBZWSJ 1.8 8.6##a person drinks from a cup.\nE6389 11.0 16.0##the person puts the laptop onto a shelf.\nE6389 0.0 14.0##a person holds their laptop.\nE6389 11.0 16.0##person they put the laptop on a shelf.\nE6389 12.6 20.6##person they take a camera from a counter.\nE6389 0.0 7.0##a person walks through a doorway.\nG1BSD 13.9 19.5##person they both begin eating.\nG1BSD 13.9 19.5##person starts eating.\nG1BSD 0.0 13.0##a person is pouring a cup of water.\nG1BSD 0.0 13.0##one person pours water into 2 cups.\nG1BSD 13.9 19.5##person both are eating chips or something off of plate.\nLEG82 10.3 18.3##person eats a sandwich.\nLEG82 11.0 18.6##person eat it.\nLEG82 11.0 18.6##person eat again.\nLEG82 14.2 20.7##person they put the sandwich down.\nRUMS5 5.1 11.5##person switches on the light to find some homework.\nRUMS5 0.0 5.5##person opens the door.\nRUMS5 24.3 29.6##person runs out.\nRUMS5 5.1 11.5##person grabs a flashlight.\nRUMS5 24.3 29.2##another person is laughing.\nRUMS5 24.3 29.6##one person runs into the closet.\nRUMS5 24.3 29.6##another person runs in.\nRUMS5 21.6 27.9##person closing the door.\nRUMS5 21.6 27.9##person closes the door to the closet.\nBVS2Z 0.0 6.0##person sneezing on a light.\nMZK2X 18.6 27.8##person takes a picture with the camera.\nMZK2X 18.6 27.8##person takes a picture.\nBTN7H 0.9 11.5##person closes their door.\nBTN7H 22.1 27.8##person begin to take selfies with their phone.\nBTN7H 0.9 11.5##person closes the door.\nBTN7H 8.1 25.5##a smiling person begins to undress their clothes.\nBTN7H 0.9 11.5##person after closing the door.\nBTN7H 22.1 27.8##person grasping their phone to take selfies.\nP2HZG 4.0 10.2##person they close the laptop.\nP2HZG 13.0 18.4##person an opens a cabinet.\nP2HZG 0.0 9.3##a person is sitting at the dining room table.\nRRS54 7.5 14.2##person snuggling under a blanket.\n48BUM 14.1 19.6##person fixes their hair.\n48BUM 0.0 12.3##a person is sitting at a table doing homework.\n2SYBS 27.4 32.1##person throws the pillow back on the bed.\n9O0HH 18.2 25.5##person starts eating them in the kitchen.\n9O0HH 18.2 25.5##eating the chips the person pulls out some food.\n9O0HH 32.4 37.0##person begins to cook.\n9O0HH 32.4 37.0##person starts cooking it in a pan on the stove.\nH378S 18.2 28.2##person putting away a book.\nTZEJS 2.7 9.3##the person pours himself a glass of water.\nTZEJS 6.0 17.0##person starts eating.\nTZEJS 6.0 17.0##person eats something.\nSQ3C9 0.0 4.8##a person opens a cabinet.\nSA9PB 3.3 9.0##a person is eating a snack.\nSA9PB 3.3 9.0##person underneath a blanket.\nSA9PB 3.3 9.0##a person eats food.\nWL1DJ 20.9 34.6##person began to take a picture.\nK1M15 14.4 28.9##person playing with their phone.\nRK4U5 25.0 30.0##person throws it on the floor.\nAFY5E 5.1 14.6##person drinking from the cup.\nAFY5E 0.0 7.0##a person is opening the door to a bedroom.\n0BNML 2.2 9.6##a person sitting on the bed opens a book.\n0BNML 19.4 24.5##person put the book on the bed.\nBPN95 12.9 17.3##person turn off the light.\nK8DDR 1.9 6.2##person drinking a glass of water.\nML12Q 4.6 18.2##the person begins laughing.\nNTW37 18.1 24.0##person closes the door.\nNTW37 18.1 24.0##person attempt to start closing the door.\nNTW37 14.5 23.1##person they stand on top of a chair.\nNTW37 14.5 23.1##person stands up on a chair.\nMCHRP 1.5 12.2##person opens the door.\nMCHRP 1.5 12.2##person opens a door.\nMCHRP 11.4 17.6##person puts their phone on a shelf.\nE6P07 1.5 13.3##a person is reading a book.\nE6P07 7.2 18.9##person begin laughing.\nNUW2S 15.4 24.9##a person is awakening on a chair.\nNUW2S 31.1 37.8##person stand up.\nJDDD8 6.8 11.8##a person gently throws some food into the pantry.\nJDDD8 5.5 11.8##a man putting things on a shelf.\nBYDSE 20.1 32.0##person begins undressing.\nX1XOL 18.9 26.9##the person closes the laptop.\nX1XOL 18.9 26.9##the person closes their laptop.\nZOTR8 6.7 15.0##person put the shoe down.\nZOTR8 11.6 19.9##person begins laughing.\nJG7BS 14.7 20.4##person drinking from the glass.\nW2NHA 0.0 9.6##a person is laughing at a television.\nW2NHA 0.0 9.6##person forth from laughter.\nW2NHA 0.0 9.6##a person is seen laughing.\n7ZTGM 1.6 7.6##person waiting for dinner to finish cooking on the stove.\n7ZTGM 1.6 7.6##a person cooking.\nSBT2X 24.5 34.0##the person takes a vacuum through the door.\nSBT2X 1.0 7.0##person closing the door.\nSBT2X 26.4 34.0##a person opens the door to the garage.\nSBT2X 7.9 14.6##the person takes a pillow off a car.\nMN1MC 16.7 29.1##person eats a sandwich.\n00X3U 14.9 20.5##person shutting the closet door behind them.\n00X3U 14.9 20.5##person grabbing a blanket leaving the closet shutting the door.\n00X3U 17.1 22.0##person run away.\nRM1FR 3.2 10.7##one person opens a cabinet.\nRM1FR 3.2 10.7##person opens a couple cabinets.\nRM1FR 14.2 20.1##person closes the cabinets.\nFNPEY 0.0 7.0##person running through a hallway.\nVG8QP 16.3 27.0##person pouring out the old water from the glass.\n5UNDJ 98.1 178.9##person eating some food.\n5UNDJ 98.1 178.9##person took something to eat from out of the bowl.\n5UNDJ 98.1 178.9##the person eats the apple.\nXDS14 0.0 8.5##person takes out food.\nC3ZJU 7.5 18.1##one person sitting in a chair is eating a sandwich.\nC3ZJU 3.5 9.7##another person is sneezing.\nC3ZJU 1.8 15.6##person holding a bottle.\nC3ZJU 7.5 18.1##person eating a sandwich.\nC3ZJU 7.5 18.1##another person is sitting on a chair eating a sandwich.\nZL55N 5.1 10.3##person puts the camera down.\nZL55N 6.3 13.5##person close the door.\nZL55N 1.0 9.0##a person is sneezing into a camera.\nZL55N 6.3 13.5##person closes the open door behind them.\nZL55N 6.3 13.5##person closing a door.\nZL55N 1.0 9.0##a person takes a picture/video of themselves sneezing several times.\nGM4QR 3.6 9.3##a person is sneezing.\nNR94C 21.4 33.0##a person is watching television through the doorway.\nMS58Y 0.0 9.0##a person is running through the doorway.\nMS58Y 0.0 9.8##person walk through a second doorway.\n00N38 14.3 20.8##person opens a door.\nEBJN1 20.7 36.0##person they look out the window.\nEBJN1 20.7 36.0##person looking out the window in the living room.\nCYLQ0 12.1 21.1##person close the cabinet.\nCYLQ0 15.1 23.1##person take some food from the cabinet.\nCYLQ0 2.1 10.4##person opens the cabinet.\nAWAFY 16.8 22.6##a person puts clothes in a bag.\nAWAFY 3.1 10.9##person opening a bag of clothes.\nDG33V 17.8 23.1##the person puts it on the table.\nDG33V 13.2 19.6##a person is closing a refrigerator.\n6H4D1 0.0 10.1##person sit on the floor.\n6H4D1 44.3 51.0##the person stand up an left the room.\n6H4D1 9.1 28.4##person take off both shoes.\n6H4D1 9.1 28.4##person takes off their shoes.\n6H4D1 0.0 10.1##a person sits on a towel on the floor.\nN6R39 21.0 27.0##another person closes the door.\nN6R39 25.0 29.0##person throwing food toward a door.\nQ3QC8 1.0 8.4##a person puts their laptop down on the sink.\nQ3QC8 1.0 8.4##a person puts a laptop down by the sink.\nZ04NK 0.0 5.1##a person is putting a book next to a phone.\nY3B48 14.1 26.1##person closes a laptop lid.\nY3B48 0.0 12.8##a person is sneezing on a mirror.\nE27NK 22.4 28.3##person turns the light off.\nE27NK 22.4 28.3##the person turns the light off.\nE27NK 24.2 29.5##person opens the door.\nE27NK 22.4 28.3##person turns off the light.\nXJFMW 24.6 32.0##person another sits with food at a small table.\n0M1ZU 6.3 11.0##a smiling person enters a bedroom sneezing.\nZS2WD 0.1 5.2##a person throws a pillow on the couch.\nZS2WD 0.1 5.2##a person throws a pillow towards the sofa.\nW0624 23.1 30.0##person opening a cabinet.\nW0624 23.1 30.0##person opens a cabinet.\nW0624 23.1 30.0##person opens the cabinet.\nKA9T3 14.0 19.5##person getting dressed.\nKA9T3 18.3 29.6##another person is standing at a mirror fixing their hair.\nJU74I 9.8 19.3##the person laughs at the television.\n9IO0Y 16.2 24.3##the person takes their shoes off.\n9IO0Y 25.0 36.8##person puts them on a table.\n9IO0Y 25.0 36.8##person puts their shoes on the table.\n9IO0Y 16.2 24.3##person takes off their shoes.\nOM66H 21.3 28.5##person but they start sneezing.\nITJIY 8.9 14.3##person they stand up.\nGW2Y8 23.4 33.0##person drinking a glass of water.\nGW2Y8 0.0 8.9##a person is playing on their laptop sitting down.\nGW2Y8 23.4 33.0##person drinks from a glass of water.\nGW2Y8 7.9 19.8##the person takes a sandwich from a dish.\nGW2Y8 0.0 8.9##a person is playing a game on their laptop.\n1UHL7 0.0 12.2##a person undresses in front of a mirror.\n1UHL7 0.0 12.2##a person is undressing in front of a mirror.\n1UHL7 12.2 20.1##person opening its door.\n1UHL7 23.5 32.0##person close the door.\n1UHL7 9.6 22.0##person they put their shoes in a closet.\nD2ES2 10.7 15.6##a person is walking through a doorway.\nIHSRC 26.1 32.0##person laughs at the picture.\nIHSRC 17.0 32.0##the person looks at a picture on the wall.\nJ1RLO 0.0 7.9##person they close the door.\nNQPM5 13.0 21.0##person walks out through the doorway.\nNQPM5 13.0 21.0##person walk through the doorway.\nRGE8C 11.1 17.1##person takes a look a clothes in a washer.\nRGE8C 16.4 28.9##person puts back on their shoes.\nNALYZ 24.1 28.9##person they stand up.\nNALYZ 18.0 26.2##person drinks something form a cup.\nP4MBS 22.0 27.2##person closes the laptop.\nP4MBS 1.6 6.2##person eats something out of a bag.\nP4MBS 1.6 6.2##a person is wrapped in a blanket eating something.\nP4MBS 18.8 25.8##person they stand up abruptly.\nP4MBS 1.6 6.2##person eating a snack.\nP4MBS 22.0 27.2##person close the lid of the laptop.\nFXC28 18.3 30.1##person throw a blanket in the air repeatedly.\n924QD 20.9 26.5##a person is running with a sandwich.\n1H6PS 0.0 6.8##the person sneezes on the sandwich repeatedly.\n1H6PS 20.2 26.0##the person walks through the doorway.\n1H6PS 0.0 6.8##person eating a sandwich.\n1H6PS 0.0 6.8##a person eats some food.\nQM4AD 17.7 23.4##person put the glass down.\nO1LOW 23.1 28.1##person put objects on a table in an entryway.\nSSH5I 0.0 13.3##the person is eating.\nHYR9Q 0.3 9.1##person puts their laptop on a table.\nHYR9Q 0.3 9.1##one person puts a laptop on a table.\nHYR9Q 7.5 13.9##person they open the refrigerator.\nHYR9Q 12.9 19.6##person take out some food.\n75RPN 10.2 16.8##person takes a pillow.\n0ZOPH 4.7 10.9##a person throws a pillow.\nKTBKA 11.0 16.4##the person opens the medicine cabinet.\nKTBKA 11.0 16.4##person opens the medicine cabinet.\nI164P 16.6 24.4##the person walks out of the house through the doorway.\nI164P 14.0 21.5##person opening the door.\nQK5KC 0.3 5.4##person opens a book.\nQK5KC 11.1 22.4##person looking at a book.\nQK5KC 12.4 22.2##a person is sitting in a chair smiling.\n2LCLG 12.1 17.2##person throws the book from it on to a bed.\n2LCLG 9.5 20.0##person takes out a book grabs it.\n2VNXF 13.6 22.2##the person puts the dishes back on the table.\n2VNXF 0.0 4.9##the person takes their glass of coffee off the table.\nOFPAE 2.0 9.2##a person awakens on a sofa.\nOWAA9 21.4 28.2##person closes the door.\nOWAA9 20.3 26.8##person opens a door walks out of the room.\nOWAA9 21.4 28.2##person closing the door behind them.\n9AFQ7 7.8 14.2##person opens a closet.\n9AFQ7 24.8 33.2##person drinking a glass of water.\n9AFQ7 2.1 10.5##this person closes a door.\n1AR0K 11.1 18.6##a person walks into the bathroom holding a broom.\n1AR0K 14.6 20.7##the person puts the broom down.\n5OLVC 7.2 19.8##person pours a glass of water from the sink.\nNO9MI 17.8 25.0##person opens the door.\nNO9MI 17.8 25.0##person opening the door.\n0OMFD 2.8 8.9##person getting dressed.\n0OMFD 2.8 8.9##person they get dressed.\nIOBKP 19.7 28.3##person they take a drink from a coffee cup.\nIOBKP 4.2 13.5##a person is snuggling in bed with a pillow.\nEXG45 24.4 29.8##person puts the book away.\nEXG45 23.2 28.8##the person closes a book.\nEXG45 24.4 29.8##person puts away the book used for references.\nM0KKW 0.0 8.0##a person is holding a broom.\nM0KKW 4.6 12.2##the person opens the refrigerator.\nM0KKW 10.1 15.5##person closes the refrigerator.\nRXBUJ 2.0 13.3##the person starts closing a window.\nD9F5V 18.1 23.5##person takes a bottle.\nJYBGS 6.4 13.3##person runs toward the doorway.\nJYBGS 6.4 13.3##person runs out of the hallway.\nJYBGS 2.5 9.1##a person walks into a hallway holding a pillow.\n5J91T 0.0 5.0##a person opens a medicine cabinet in the laundry room.\n5J91T 0.0 5.0##a person opens a medicine cabinet.\nTC015 2.4 9.0##a person puts  blanket on a shelf.\nD2ORL 30.8 41.0##a person is on the phone laughing.\n509W9 11.8 25.4##person snuggles with a pillow in a very creepy way.\n509W9 11.8 25.4##a person snuggles up to a pillow on a sofa.\n509W9 2.3 12.2##a person sits down on a chair.\n509W9 11.8 25.4##a person sits in a chair snuggling with a pillow.\n4C1KY 30.1 35.4##the person puts down the book.\nPYIA3 1.4 7.0##the person held the refrigerator door open.\n0YTSJ 22.7 28.7##person takes off their glasses.\n0YTSJ 22.7 34.1##person are drinking a glass of water.\n0YTSJ 22.7 28.7##person they reach for a glass to take a drink.\n0YTSJ 32.7 38.0##person eating a sandwich.\n0YTSJ 30.7 36.3##the person takes a bite from the sandwich.\nGFON7 0.0 13.5##a person is laughing over the sink.\nGFON7 0.0 13.5##the person is laughing.\nMH601 0.0 7.1##person holding clothes.\nMH601 0.0 6.3##a person is laughing.\nN7243 5.5 11.8##person puts the picture in the cabinet.\nQ18ZQ 2.5 13.4##person opens a closet.\nQ18ZQ 33.3 41.4##person closes the door.\nQ18ZQ 0.0 13.0##a person is holding a towel.\nQ18ZQ 8.3 19.6##person put the towel.\nGLIC0 22.2 28.7##person they put the bag down.\nGLIC0 17.1 26.5##a person is holding a bag of clothes.\n9F691 0.0 14.5##a young woman sitting in a chair.\nHA02S 0.0 5.3##a person opens a door.\nHA02S 31.4 38.0##person holding the broom deciding where to put it.\nHA02S 31.4 38.0##person puts the broom inside.\nHA02S 32.7 38.0##person closes the door.\n6R7QW 12.0 18.1##person opens a book.\n6R7QW 24.5 37.0##person eats something.\n6R7QW 24.5 37.0##person begins to eat some food.\nVLE11 22.2 29.7##person open up their homework book.\nZ1H81 0.0 6.6##a person in their garage walks to the doorway.\nZ1H81 7.0 13.1##person turns on the light.\nVUSFK 15.7 22.9##person holding a phone.\nQ5Y02 0.0 10.5##person drinking a glass of water.\nQ5Y02 12.7 25.7##person look out the window.\nQ5Y02 0.0 10.5##person they put down a glass they were drinking from.\nQ5Y02 0.0 5.5##a person walks through the doorway into their bedroom.\nTRFB0 0.0 13.1##a person washes their hands in a sink.\nTRFB0 12.7 17.8##person they open the medicine cabinet.\nTRFB0 0.0 13.1##a person is washing their hands.\nTRFB0 0.0 13.1##person proceeds to wash hands.\nTRFB0 12.7 17.8##person opens cabinet.\n36EK5 0.7 10.6##one person is walking through the doorway.\n36EK5 0.7 10.6##a person is walking through a doorway.\nQBXRP 2.6 11.0##a person pours a glass of water down the sink.\n5QW1X 25.0 30.0##person closes a book.\n5QW1X 7.0 13.4##a person is opening a book.\n5QW1X 7.0 13.4##person they open a book.\nBJXRT 32.1 36.0##person sits in a chair hugging the blanket.\nBJXRT 32.1 36.0##person begin sitting in a chair.\nLRPBA 0.0 9.6##a smiling person runs into their closet holding a mirror.\nLRPBA 7.7 13.3##person drinks from a glass in a closet.\nLRPBA 0.0 9.6##a person runs in place.\n1T2W4 22.5 28.0##person throws clothes into a washing machine.\n1T2W4 22.5 28.0##person throw clothes in the washer.\nYJQO3 22.7 32.8##person puts their phone in a box.\nYJQO3 23.3 28.0##person takes a phone of their pocket.\nH2B7U 0.0 4.2##a person is holding clothes.\nH2B7U 0.0 8.0##person shoves clothes into the washing machine.\nXHL3Z 33.4 43.0##person takes some medicine.\nXHL3Z 33.4 43.0##person take some medicine.\nPPUOO 6.2 16.7##person grabs a towel to put it away.\nPPUOO 7.8 13.8##person opens a cabinet.\nPPUOO 0.0 4.5##a person is opening a door to the bathroom.\nPPUOO 12.2 19.5##person starts throwing a towel inside.\nPPUOO 0.0 4.5##a person grasps the doorknob to open the door.\n52D5Q 0.0 4.2##a person is laughing into a phone.\n52D5Q 0.0 6.4##a person is talking on the phone.\n8Z5SJ 4.2 18.8##a person closes a window.\n8Z5SJ 4.2 18.8##person closes a window.\n8Z5SJ 4.2 18.8##a person in the bathroom is closing a window.\nGHARQ 9.9 22.7##person eating from a plate balanced on a pillow.\nGHARQ 19.0 25.6##person holding a pillow standing next to a broom.\nGHARQ 9.9 22.7##a person is eating a sandwich on a plate.\nTZ27E 9.0 14.0##person takes a glass.\nTZ27E 5.1 10.8##a person is putting a laptop on a bed.\nBALXZ 0.0 4.0##a person runs down some stairs holding a phone.\nBALXZ 0.0 4.0##a person is running with their phone.\nBALXZ 2.0 10.0##person eating a sandwich.\nBALXZ 7.0 13.0##person open the door.\nBALXZ 7.0 13.0##person they open the door.\n56ASU 0.2 6.9##a person walks through the doorway.\n56ASU 4.6 9.2##person turns on the light.\n56ASU 4.6 9.2##a person in a laundry room turns on a light.\nPDRVY 17.8 25.0##person closes the door.\nPDRVY 9.0 16.4##person takes the bag into the room.\nPDRVY 3.6 12.8##person open the door.\nYRX5H 11.9 19.9##a person is standing in the entryway eating some food.\nYRX5H 1.5 6.6##person opens the door.\nYRX5H 11.9 19.9##person eats something from a bag.\nYRX5H 36.5 39.0##person puts down the food to grab the vacuum.\nYRX5H 14.8 21.7##person they close the door.\nYRX5H 1.5 6.6##person holding a door open.\nYRX5H 0.0 4.3##a person is holding a bag.\nFH9AB 29.4 36.0##person closes the door.\nO7N6K 2.6 7.7##the person takes off their shoes.\nO7N6K 0.0 5.6##a person opens the door to their bedroom.\nO7N6K 0.0 5.6##a person opens a door.\nO7N6K 2.6 7.7##person takes their shoes off.\nO7N6K 0.0 5.6##a person opens the door.\nQAHJG 1.7 8.7##the person opens their laptop.\n7N4TW 4.5 27.7##a person was in their bedroom undressing.\n7N4TW 58.5 68.6##the person put some bedtime clothes on.\n7N4TW 4.5 27.7##person gets undressed.\n7N4TW 37.2 45.1##person they take their shoes off.\n7N4TW 38.0 61.6##person get dressed.\nJUCOK 18.4 28.9##person closes the box.\nY05U8 25.0 34.0##person begins dressing to go outside.\nY05U8 19.1 25.4##person takes out their phone.\nIB987 15.7 26.1##person starts throwing clothes.\nNZX0U 3.9 13.4##a person is cooking on the stove.\nNZX0U 3.9 13.4##person cooking some food on the stove.\n5ZXA3 24.9 32.0##person closes a laptop.\nR1B8I 15.8 32.2##person holds a broom.\nCSYES 9.6 17.5##the person puts them on the table.\nCSYES 10.7 17.0##person takes out their phone.\n5X5DT 10.6 23.8##person close the laptop.\n5X5DT 0.0 11.8##person holding a laptop on their lap.\n5X5DT 10.6 23.8##person closes the laptop.\nMFQ5S 29.2 35.1##person starts smiling.\nZYVTC 17.1 30.9##person opens a book to read.\nZYVTC 7.4 16.3##person eating some food.\nZYVTC 12.5 16.9##the person puts the food down.\nZ6HEA 20.4 26.9##person eats a sandwich.\nZ6HEA 20.4 26.9##person begin to eat.\nZ6HEA 2.6 11.4##person goes into the laundry room to wash some clothes.\nDFPOJ 7.9 19.2##person takes off their shoes.\nDFPOJ 28.4 31.0##a person was reading a book.\nDFPOJ 28.4 31.0##a person is looking at a book.\nDFPOJ 7.9 19.2##person take off their shoes.\nAJLGU 12.9 18.6##person they open a cabinet.\nAJLGU 12.9 18.6##person they open the cabinet.\nAJLGU 14.7 19.3##the person takes a dish from the cabinet.\nGQZOR 14.2 25.7##person drink from a glass.\nGQZOR 8.0 18.0##person eat it along with a drink.\nGQZOR 8.0 18.0##person they eat some food.\n5SGU6 10.9 16.3##the person next opens a cabinet.\n5SGU6 1.0 9.4##a person is in a pantry opening a grocery bag.\n5SGU6 6.0 11.0##person puts dishes on a shelf.\n5SGU6 13.9 18.8##person put the dishes away first.\n4KO74 11.4 23.3##a person is smiling.\nMILRI 2.1 9.6##a person is opening a closet.\nB9XZX 0.0 4.1##a person is cooking something on their stove.\n41O3J 21.1 26.8##person sits on the bed.\n41O3J 6.4 12.9##a person undresses.\n41O3J 10.0 19.0##person they put the blanket on the bed.\nY9930 10.1 19.1##the person opens a door.\nA81AV 1.8 7.4##person sits on the bed.\nA81AV 7.2 21.4##person they begin dressing by putting on a jacket.\nA81AV 22.4 31.0##person they start drinking from a glass of water.\nIJOAK 0.0 13.9##a person holding a dish.\nZC8L5 17.7 23.0##person they throw a some clothes on the floor.\nZC8L5 29.0 32.0##person sitting on chair turns to watch tv.\nZC8L5 17.2 24.2##person they throw off their blanket.\nZC8L5 29.0 32.0##a person is sitting in a chair watching television.\n7HZHM 9.7 21.7##a person is undressing in front of the mirror.\nIN2RL 32.9 38.6##person throws boxes on floor.\nIN2RL 32.9 38.6##person they begin throwing a box around the room.\nUVPSZ 3.7 12.3##person after closing the door.\nUVPSZ 3.7 12.3##person closes the door.\nUVPSZ 0.0 5.5##a person walks through a doorway.\nJFXG8 0.0 4.1##person opening refrigerator to take a pot out.\nJFXG8 0.0 4.1##a person opens the refrigerator.\nJFXG8 4.9 11.4##person close the refrigerator.\n2DPW0 6.2 17.2##person drinks water out of a large cup or jug.\n1NYKM 16.3 22.2##person put away the book.\n1NYKM 30.0 36.0##person lies in the bed.\n1NYKM 30.9 36.0##person watches television.\n1NYKM 30.0 36.0##person lied down in bed.\n897OI 12.9 23.1##person they pour something from the bottle.\n897OI 5.1 16.7##a person holding a glass.\n97Y6T 0.0 7.4##a person is talking on a phone.\n97Y6T 0.0 7.4##a person sits talking on their phone.\nVPJLN 16.4 23.4##person runs in through the entryway holding some clothes.\nEG1MY 5.7 14.6##person they are holding a towel.\nEG1MY 21.6 28.6##person began putting the towel on a towel rack.\nQX89T 5.8 18.8##person fixes his hair.\nQX89T 5.8 18.8##person they fix their hair.\nQX89T 5.8 18.8##person fixes their hair.\nQX89T 20.1 33.0##person takes pictures of himself using his phone.\nQX89T 20.1 33.0##person takes a picture in the mirror.\nCMC93 1.6 13.4##person closed the door.\nCMC93 16.0 27.5##person put on shoes,stood up from the chair.\nCMC93 12.8 31.7##a person is dressing in their bedroom.\nCMC93 11.5 20.2##person sitting on a chair.\nCMC93 46.9 53.0##person open the door.\nCMC93 46.9 53.0##person opened the door.\nCMC93 1.6 13.4##person closes a door.\nCMC93 37.5 49.1##person stand up.\nS0B9O 1.4 15.1##person is smiling.\nOQM2I 6.0 11.9##person closing the door.\nOQM2I 0.2 6.3##a person fixes their hair in a mirror.\nPQYWB 31.8 40.0##person he closes the door behind him.\nKVYOZ 0.0 2.6##person they stand up.\nKVYOZ 0.0 2.5##a person sits on the floor.\nEN9TD 3.3 10.6##person drinking a cup of coffee.\nV6M35 16.6 27.5##person drinks from a cup.\nAQ3CP 0.0 3.3##a person is sitting on a chair.\nAQ3CP 0.0 3.3##person sitting in a chair.\nEJL2F 0.0 5.8##a person opens a door.\nEJL2F 3.2 8.4##person turns the light on.\nEJL2F 0.0 5.8##person opens the door.\nEJL2F 3.2 8.4##person turns on the light in the recreation room.\nEJL2F 3.2 8.4##person turns on a light.\nRZ9SZ 4.3 14.1##a person is undressing in front of the mirror.\nN4Q0O 1.0 11.9##a person is awakening on a bed.\nN4Q0O 1.0 11.9##a person awakens from under a blanket.\nXJS1X 5.6 12.3##the person turns on a light.\n3Z08H 3.8 10.5##person takes off their shoes.\n15TWQ 0.9 5.7##a person turns on a light.\n15TWQ 0.9 5.7##a person turns on the light.\nJ3UKN 23.0 34.0##the person walks through a doorway toward another room.\nDZDD2 0.0 11.7##a person opens a cabinet.\n5GK8W 0.0 6.8##a person awakens on the living room sofa.\n5GK8W 15.2 27.2##person hurriedly putting on their shoes.\n5GK8W 15.2 27.2##person puts on their shoes.\n3STO2 14.4 20.4##a person is sneezing.\n0BH84 4.0 16.8##person talking on the phone.\n0BH84 16.2 26.0##person they take off their shoes.\n0BH84 16.2 26.0##person takes their shoes off.\n0PKMF 20.6 32.0##person play on a phone.\n0PKMF 1.4 6.8##person laughing at a television show.\nLY2GQ 19.8 26.3##person they put the broom down.\nW28C2 4.1 11.3##a person laughs as they cook on the stove.\nW28C2 0.0 11.1##a person is cooking.\nW28C2 9.8 15.4##the person takes out a box of food.\n1ZBUS 4.0 13.6##person puts a bag of groceries on the table.\n1ZBUS 5.2 10.8##a person is sitting at a table.\nFS94F 1.4 12.4##person pours the contents from the bottle into the glass.\nFS94F 1.4 12.4##person pours it in a glass.\nFS94F 1.4 12.4##a person is pouring a drink into a glass.\nQRZK5 12.1 18.7##a person is lying on floor eating a sandwich.\nQRZK5 12.1 18.7##person eating a sandwich.\nQRZK5 5.3 13.3##person watching television.\nQRZK5 5.3 13.3##a person watching television.\nGQT29 15.2 23.8##person they take a book off the shelf.\nGQT29 17.1 25.9##person read the book.\nGQT29 0.0 6.2##a person is fixing a vacuum.\nAPZUZ 0.0 7.2##a person puts a sandwich on the shelf.\nAPZUZ 4.2 14.5##person drinks from a cup.\nC8BKE 11.0 16.5##person they put their groceries on the bed.\nC8BKE 3.1 9.9##person walks through doorway with groceries.\nC8BKE 6.6 12.3##person takes off shoes.\nC8BKE 12.2 17.7##person sits down on bed.\nC8BKE 6.6 12.3##person takes their shoes off.\nRXF2Q 25.4 33.5##the person opens up their laptop.\nRXF2Q 25.4 33.5##person open the laptop.\nEASCD 12.5 25.0##person he pours a glass of soda.\nGWUM6 4.0 10.6##the person put away the dishes in the cabinet.\nGWUM6 4.0 10.6##a person is seen putting dishes away.\n7C13O 28.4 50.0##person sit in a chair when they are done.\n7C13O 28.4 50.0##person sits on chair.\n3SKPS 17.6 33.0##person another works on a laptop.\n3SKPS 17.6 33.0##a second person is working on their laptop.\n83V0A 0.0 6.7##a person is cooking food on the stove.\n83V0A 0.0 6.7##a person is at the kitchen stove cooking a meal.\n83V0A 3.4 11.7##person look out the window.\n83V0A 0.0 6.7##person a kid cooking.\n83V0A 12.0 21.0##person starts reading a book.\n83V0A 3.4 11.7##person looking out a window.\n83V0A 0.0 6.7##person setting down to look at a cook book.\n83V0A 3.4 11.7##the person turns around to look out of a window.\n83V0A 9.4 16.6##the person sits in a chair.\n1TAMK 2.8 8.0##one person runs into the entryway.\n1TAMK 3.2 9.1##a person is opening a door.\nT87QE 21.8 34.9##person begins to undress their clothes with a smile.\nJTZZW 0.0 7.3##a person takes a laptop off a shelf.\nJTZZW 17.8 32.0##person begin watching a video off of the laptop.\n2MAZY 1.0 6.0##the person begins to take groceries out of the box.\n2MAZY 0.5 8.1##person put them on a shelf.\n2MAZY 0.0 4.0##person opening a box.\n2MAZY 2.2 7.1##sneezing as the person does so.\n2MAZY 0.0 4.0##the person opens a box.\nQ07CU 30.3 35.0##person turn off the light.\nQ07CU 30.3 35.0##person turns the light off.\nDF6FY 20.2 30.1##person snuggling a pillow.\nDF6FY 10.9 18.9##person drinking from a glass.\nDF6FY 10.9 18.9##person they begin to drink from a glass of water.\nHU409 23.1 31.0##person puts the pillow away.\nHU409 15.6 22.5##person they take the cover off the pillow.\nI005F 5.0 13.1##person the open the refrigerator.\nI005F 12.2 18.2##person turns down the heat.\nTZL6H 24.0 32.0##person washing a mirror in the hallway.\nD548M 14.0 23.7##a person walks through the doorway.\nD548M 24.1 31.5##the person puts the laptop down onto the table.\nQPX3S 0.0 4.2##a person is looking out the window.\nCC610 3.6 15.1##a person pours something into a cup.\nCC610 3.6 15.1##one person pours soda in a glass at the sink.\nCC610 24.0 34.0##the person sits down on the floor with a book.\n9SIZS 10.3 17.0##person throws them on the floor.\n9SIZS 10.3 17.0##a person is tidying up some clothes on their bed.\nMDXF4 6.1 12.2##person closes the door.\nMDXF4 6.1 12.2##person opens the closet door.\nMDXF4 16.1 23.5##person was drinking a glass of water.\nMDXF4 16.1 23.5##another person drinking a glass of water walks in.\n8MDSA 5.6 14.2##a person is undressing in their closet.\n8MDSA 9.7 16.2##person opens the door.\n8MDSA 27.4 33.0##person turn the light off.\n8MDSA 27.4 33.0##the person turns off the light.\n8MDSA 27.4 33.0##person turns off the light.\n9MXDX 2.4 10.9##person drinking a glass of water.\n9MXDX 8.5 19.0##person sitting on couch eating.\n9MXDX 8.5 19.0##person eating food off of two plates.\n9MXDX 18.1 27.7##person is laughing at what he is watching.\n9MXDX 18.4 27.8##person drinking ans smiling.\n9MXDX 18.1 27.7##the person laughs.\n9MXDX 8.5 19.0##person eating food from a few dishes.\nQNQOG 0.0 4.8##a person is undressing.\nQNQOG 13.0 19.0##person they look out a window.\nQNQOG 3.7 10.8##person throwing the clothes on the floor.\nQNQOG 15.0 27.0##person begins sneezing.\n45Z2A 0.0 4.1##a person awakens on the couch.\nDSG0F 0.0 4.3##a person walks through the doorway of their home office.\nDSG0F 1.3 13.1##the person drinks from a cup of coffee.\nE5O0F 17.5 33.9##the person washes their hands.\nE5O0F 11.7 16.7##person closes their laptop.\nE5O0F 11.7 16.7##a person closes their laptop.\nE5O0F 17.5 33.9##washing the person's hands in a sink.\nE5O0F 14.5 30.9##a person works on a laptop.\nE5O0F 17.5 33.9##person washes their hands.\nE5O0F 11.7 16.7##person closes the laptop.\nHOI6L 25.9 31.2##person opened the door to walk out of the room.\nGWDF9 2.7 13.0##person runs in room.\nGWDF9 2.7 13.0##a person runs into the living room.\nGWDF9 2.7 13.0##person comes running through the front door.\n3VRTT 5.9 12.0##person running away.\nWHVP2 0.0 4.0##person put it on a table.\nVSLQT 3.2 11.5##person take a sandwich from a plate.\nVSLQT 0.0 9.0##a person awakens in bed.\n5P0ON 0.0 8.0##a person is standing in the laundry room eating.\nCN5G4 0.0 17.4##person sitting at the table.\nCYT5I 19.7 27.2##person they walk to the doorway of their bedroom.\nCYT5I 14.0 18.3##person put their pillow on top of it.\nCYT5I 20.9 27.5##person closing the door.\nCYT5I 14.0 18.3##person puts a pillow over it.\nFI2DL 7.4 15.6##one person runs through playing a game.\nGIZ95 24.4 32.0##person look out window.\nGIZ95 24.4 32.0##person they look out the window.\nGIZ95 24.4 32.0##person looks out window.\nGIZ95 23.8 32.0##person opening a window.\nWYCRK 0.0 13.9##a person looks out the window.\nWYCRK 8.7 17.8##person drinking a glass of water.\nWYCRK 8.7 17.8##person they drink out of the glass.\nWYCRK 5.6 12.6##person holding a glass of water.\n56PK0 23.6 34.8##person sits on a chair.\n56PK0 35.2 42.7##the person puts the blanket into the washing machine.\n56PK0 35.2 42.7##the person puts the blanket into a dishwasher.\n56PK0 23.6 34.8##person they sit down in a chair.\n56PK0 8.1 14.7##the person takes a blanket out form the box.\n56PK0 8.1 14.7##a person takes a blanket out of a box.\n56PK0 8.1 14.7##person takes a blanket out of it.\nJKR9A 10.0 18.6##person turns on the light.\nJKR9A 10.0 18.6##person turning on a light.\nJKR9A 10.0 18.6##person they turn on a light.\nKG2LF 23.6 28.9##person turns off the lights.\nKG2LF 23.6 28.9##person turns off the light.\nKG2LF 13.5 19.2##person they throw it on the floor.\nKG2LF 13.1 18.5##the person throws their clothes on the floor.\nCPZZ1 2.0 7.2##person running their fingers through their hair.\nCPZZ1 2.0 7.2##a person runs into their bathroom.\nCPZZ1 2.0 7.2##a person runs into a bathroom.\nIXJKT 21.7 26.8##person runs out of the room.\nIXJKT 21.7 26.8##person runs out of the hallway.\nUGJSB 20.3 27.4##the person switches off the light when exiting the room.\n8XXZZ 5.5 17.1##person puts shoes on.\n8XXZZ 5.5 17.1##person they begin putting on their shoes.\n8XXZZ 0.0 9.5##a person runs around a room.\n8XXZZ 0.0 9.5##a person is running around in the garage.\n8XXZZ 13.7 20.9##person take out their phone.\nF8M2Y 0.0 11.5##a person is undressing in their basement.\nANA5N 14.2 21.6##person opens door smiling folds towel puts ina closet.\nO95PG 17.3 32.0##person partially undressing.\n4LDRK 2.4 16.9##person is opening door with groceries in hand.\n4LDRK 2.4 16.9##person opens the entry way door.\n4LDRK 22.4 34.0##another person is pouring coffee in cup.\n6UDGS 15.9 24.0##person closes the door.\n6UDGS 9.7 19.0##the person puts on a pair of shoes.\n6UDGS 9.7 19.0##person puts on their shoes.\n564DX 1.4 8.4##a person takes a bottle of water from the refrigerator.\n4KOBZ 0.0 6.5##a person is sitting down eating a sandwich.\n4KOBZ 0.0 6.5##person eating a sandwich.\n4KOBZ 13.7 24.0##person drinking a glass of water.\n2M9YL 22.9 31.0##the person opened the door.\n2M9YL 20.0 26.9##a person was smiling.\n2M9YL 22.9 31.0##person opening the bedroom door.\nOM2NF 23.7 34.8##person puts his shoes on.\nOM2NF 2.2 8.8##person drinking coffee from a glass.\nOM2NF 23.7 34.8##person he puts on his shoes.\nOM2NF 34.1 45.0##person walks to the stove to cook breakfast.\nOM2NF 34.1 45.0##person walks to cook at the oven.\nOM2NF 23.7 34.8##person puts on shoes.\nAH4UW 1.4 8.5##person closes the door.\nAH4UW 0.0 5.1##person holding a laptop.\nAH4UW 1.4 8.5##the person closes the door behind them.\nAH4UW 0.0 5.7##person they put the thing on a table.\nSOTQ1 25.9 31.3##a person laughs.\nG752J 19.5 25.7##person playing with the light on a nightstand.\nG752J 19.5 25.7##person they are playing with the light.\nG752J 8.1 19.5##another person is sitting on the bed.\nG752J 19.5 25.7##another person is flicking the lights on.\nG752J 0.0 5.9##a person walks through a doorway.\nF8E8C 12.6 26.1##person takes a drink of a glass of water.\nF8E8C 12.6 26.1##person take a drink from a cup on their counter.\nO8PO3 12.8 18.1##person runs away.\nJL1W2 6.7 11.3##a person is putting groceries on their table.\nJOYAJ 0.0 8.8##a person is cooking on the stove.\nJOYAJ 0.0 8.8##a person is cooking something on a stove.\n2K5GR 16.0 25.7##person they take a drink from a glass.\nE33IO 8.5 13.8##starts laughing.the person turn.\nE33IO 8.5 13.8##person they laugh as the leave through the doorway.\nREH2U 0.0 13.3##a person is lying on a bed snuggling a pillow.\n0RP6B 26.1 36.6##person reads the book.\nKDK62 1.9 9.3##person takes out a towel.\n8ISS6 17.4 33.0##the person starts holding a pillow.\n1DGC9 0.0 7.8##a person awakens in a closet snuggling their pillow.\n1DGC9 9.1 14.1##person they stand up.\n1DGC9 18.6 25.0##person close the door behind them.\n1DGC9 0.0 7.8##a person awakens in the bathroom.\nIZ2XX 8.4 16.4##person they put the books down on a table.\nMDZVU 3.0 10.0##a person is sneezing at their desk.\nIYU90 0.1 7.4##a person is running.\nIYU90 0.1 7.4##another person runs by.\nIYU90 0.1 7.4##a person runnings in.\nT9DF0 14.8 26.3##person smiling at the homework.\nGLOMM 0.0 4.0##person opens the closet.\n7S3KW 0.0 4.3##a person is sitting on the floor opening a box.\nKTXE0 25.0 31.0##person eats some cereal.\nKTXE0 25.0 31.0##person eating a snack.\nNZG0R 11.1 16.7##a person is smiling.\nNZG0R 3.0 12.2##person closing the door to a refrigerator.\nNZG0R 3.0 12.2##person closes a refrigerator door.\nWMBOO 0.2 7.3##a person sitting on the floor opens a cabinet.\nWMBOO 0.2 7.5##a person opens the door to the pantry.\nII0EJ 0.0 13.1##a person sitting on stairs holds a glass.\nII0EJ 7.6 14.9##person putting the glass down.\nII0EJ 9.1 18.4##a person is sneezing.\nPE4BQ 0.0 6.3##a person is putting a sandwich on the table.\nL8120 26.5 29.0##a person is smiling.\nL8120 3.0 11.3##a person came out into the kitchen holding a bag.\nK7E8L 0.0 11.5##a person is tidying the hall with a broom.\nX16WJ 0.0 2.8##a person sits down in a chair.\nX16WJ 0.0 4.3##person puts the cup on the floor.\nX16WJ 0.0 2.8##a person sitting down in a chair.\nGNNAE 12.7 18.5##person drinking from a cup.\n2VCOB 19.0 26.1##person closes the fridge door.\n2VCOB 19.0 26.1##person starts closing the refrigerator nearby.\n2VCOB 19.0 26.1##person closed it's door.\n2VCOB 4.7 13.7##a person is opening a sandwich bag in the pantry.\nV6LP3 23.7 28.9##the person puts the food.\nEN0CD 19.0 32.1##person they start undressing by taking their clothes off.\nEN0CD 0.0 15.3##a person in the hallway is running around.\nEN0CD 0.0 15.3##a person runs into the hallway.\n673VM 155.1 163.5##person takes a camera from a shelf.\n673VM 142.6 159.1##person they put it back on the shelf.\n673VM 142.6 159.1##person puts it back on the shelf.\n673VM 155.1 163.5##person takes a camera off a shelf.\n673VM 91.7 102.8##another person walks through the doorway.\nC4DFA 0.0 9.5##the person takes an item from the bag.\nQO0UU 0.4 5.8##a person opens a door.\nK4XO7 12.9 30.9##a person awakens on the sofa.\nX3LEM 26.7 32.0##person sits down on a sofa,.\nX3LEM 26.7 32.0##person b begins to sit on a couch.\nX3LEM 13.5 19.4##person turning on a light.\nX3LEM 10.3 21.5##the person turns off the light.\nX3LEM 22.5 29.0##another person takes a phone from a table.\nYYHX3 5.2 11.6##person they put a towel on the table.\nYYHX3 5.2 11.6##person putting it on the table as well.\nYYHX3 5.2 11.6##a person is putting a towel on a table.\nNBE4C 27.6 32.0##person closes the door.\nNBE4C 18.5 32.0##person take medicine.\nNBE4C 27.6 32.0##person close the door.\nNBE4C 14.5 22.2##person puts the phone in a pocket.\n61RMD 0.0 11.9##person puts the camera on a table.\nRB9VI 0.0 15.3##a person in an entryway holding a broom sweeping.\nRB9VI 13.6 24.0##person they pick up a bag take out a bottle.\nRB9VI 13.6 24.0##person they take a bottle out of a backpack.\nRB9VI 7.9 14.9##person throws the broom down.\nJ2J3Q 10.0 22.6##the person starts sneezing on a box.\n9JHH9 24.8 30.0##person close the door behind them.\nTSI2S 15.8 22.2##person puts a broom under the bed.\nTSI2S 10.5 22.7##a person runs into a bedroom holding a broom.\nTSI2S 10.0 17.0##a person runs through the room.\nM5XFI 18.5 24.5##the person begins laughing.\n7JZTY 21.9 31.5##person takes a drink from a soda bottle.\n7JZTY 21.9 31.5##person drinks from a bottle of water.\n7JZTY 6.0 14.0##person eating from a bag of food.\n7JZTY 6.0 14.0##person eats the food.\n7JZTY 6.0 14.0##person eating some.\nLBG7L 19.0 32.0##the person puts sits in a chair.\nLBG7L 6.1 10.7##the person takes a laptop out from the bag.\nLBG7L 6.1 10.7##the person takes a laptop computer out of a bag.\nLBG7L 19.0 32.0##the person sits in the chair.\nLBG7L 23.5 32.0##person begins working on the laptop.\nTE34B 1.3 15.5##person works on a laptop.\nTE34B 8.6 26.5##person walk out of the room holding the phone.\nTE34B 55.4 68.5##person they reenter the room holding a bag of groceries.\n9T11N 0.0 11.2##person looking at a desk picture.\n9T11N 0.0 11.2##person picks up a picture to look at.\n9T11N 0.0 11.2##person looking at the picture.\n45FWP 8.3 25.8##this person is eating some dough.\n45FWP 8.3 25.8##person begin to eat.\n45FWP 8.3 25.8##person eats by the window.\nK9GJF 9.2 17.9##one person closes a box.\nD7M6N 0.0 5.1##a person is opening a bag of groceries.\nD7M6N 20.9 32.0##person sneezing on a picture in a kitchen.\nRBAO4 22.8 32.0##person beginning to eat from a bag of potato chips.\nRBAO4 7.7 15.7##the person opens the front door.\nLJ0JS 0.0 12.1##the person periodically takes a drink from a glass.\n89MAO 16.9 25.0##person takes a picture of it with a camera.\n0OSJY 0.0 13.6##a person sits on their bed holding a broom.\n0OSJY 8.8 15.7##person runs to touch the doorknob.\n0OSJY 0.0 13.6##a person is sitting on a bed holding a broom.\nILQ2R 17.3 23.3##person they turn off the light.\nOL2JP 0.0 14.1##person fixes a broken door knob at the bathroom door.\nOL2JP 0.0 14.1##a person is fixing a doorknob.\nAQ5M6 15.8 30.0##person getting dressed.\nAQ5M6 4.8 9.5##person turns the light on.\nAQ5M6 4.8 9.5##person turned on the light.\nAQ5M6 4.8 9.5##a person turns a light on.\n24XHS 16.0 24.1##person begins laughing.\n24XHS 16.0 24.1##person laughing in the kitchen.\n24XHS 20.3 26.3##person opening the refrigerator.\nT5JY8 15.4 23.5##the person takes a drink from a cup of coffee.\n0VMUZ 10.5 16.7##person holding a picture.\n0VMUZ 0.0 12.7##in the laundry room the person is washing their clothes.\n1L220 73.4 129.0##person they begin to eat as they use their phone.\n2CDOS 10.6 20.7##person throws them on the floor.\nRH44U 7.1 12.8##person takes a book off the shelf.\nRH44U 0.0 10.8##person holding a cup of coffee.\nDZ0SB 21.8 28.1##person opens a book.\nDZ0SB 25.5 29.7##one person puts down a book.\n3SDJE 13.8 20.2##person puts a cook book back where it belongs.\n3SDJE 7.0 14.1##the person closes  the book.\n3SDJE 13.8 20.2##person puts the book inside the cabinet.\nGMMVC 13.3 19.0##person running to the door.\nY25DQ 8.4 17.2##a person opens a door.\nY25DQ 8.4 17.2##person opens the door.\nW4W97 13.9 21.6##person take a drink from a glass.\nW4W97 13.9 21.6##person drink from the glass.\nFQ6OB 18.3 25.3##person begins sneezing.\nCRTUY 17.7 22.1##person throw something on the floor.\nCRTUY 22.1 28.0##person closes the door to it.\nCRTUY 4.9 10.9##a person puts a bag.\n93ESZ 5.6 12.1##person dresses up by the door.\nEWCV4 8.4 17.1##person takes his shoes off.\nEWCV4 0.0 6.7##a man is laying on a floor in the doorway.\nNKTWF 1.5 7.9##a person walks into the living room holding a bag.\nNKTWF 1.5 7.9##person they put the bag on a chair.\nNKTWF 1.5 7.9##this person walks in holding a bag.\nPQUF6 4.2 14.0##person washes their hands.\nPQUF6 14.5 19.1##person try to open a cabinet.\nPQUF6 14.5 19.1##the person tries opening a cabinet.\nR08G9 16.1 27.3##person starts sneezing.\nQDRWK 0.0 6.6##person opens the door.\nQDRWK 21.8 30.0##the person puts a book on a shelf.\nQDRWK 23.7 30.0##person puts on shelf.\n7EYIL 12.8 19.1##person is opening a refrigerator.\n7EYIL 17.3 22.9##person takes out a bag.\n7EYIL 12.8 19.1##person they open the refrigerator.\nKWONB 2.0 8.4##a person is throwing clothes into a closet.\nKWONB 0.0 6.3##a person opens the closet door.\n6CMWO 0.0 6.8##a person is undressing.\n6CMWO 19.9 27.8##person starts laughing.\nZWE6N 2.0 8.8##a person takes a cup of coffee from the table.\nZWE6N 21.6 29.0##the person takes a bag.\n6NWDR 25.1 32.7##the person takes a bottle of medicine from the desk.\n6NWDR 1.2 14.9##a person is sneezing.\n0EGNU 0.7 9.0##person they put the pillow on a chair.\nUBC9N 14.4 24.4##person begins pouring it into a glass.\nUBC9N 14.4 24.4##person pours medicine into a glass.\n8MR9I 0.8 6.5##a person is laughing.\n8MR9I 0.4 6.8##person talking on the phone.\nUK8KW 23.3 31.0##person eat a sandwich.\nUK8KW 23.3 31.0##a person standing in a doorway eating a sandwich.\nUK8KW 20.2 31.0##a person stands in the door holding a sandwich.\n07AWM 9.1 20.2##person snuggling a pillow.\n07AWM 15.2 25.0##person begins to laugh.\n5S1WQ 0.0 2.6##a person throws a broom.\nOVMCM 12.9 19.8##the person takes a towel from the shelf.\nOVMCM 0.0 12.2##a person awakens sitting in a chair.\nOVMCM 0.0 4.3##a person awakens in a chair in their recreation room.\nLWINQ 0.0 6.7##a person begins undressing.\nLWINQ 9.8 17.8##person sit on the sofa with blanket over the head.\nLWINQ 9.8 17.8##person sits on a couch.\nLWINQ 9.8 17.8##the person sits on the sofa.\n3C8OG 0.7 5.6##person they take a bottle.\n3C8OG 18.6 29.2##the person the opens a bag.\n3C8OG 18.9 23.5##person take a book from their bag.\n3C8OG 0.0 4.7##a person is working on a laptop.\nNKOJ8 6.6 13.9##the person opens the door to pick up a device.\nNKOJ8 6.0 17.9##a person walks through the doorway into an office.\nDOGYU 0.6 8.7##person takes out a shoe box.\nDOGYU 3.8 16.0##there is a person sitting in a chair.\nDOGYU 5.9 12.7##the person in the chair is smiling.\nDOGYU 3.8 16.0##another person is sitting in a chair.\nDOGYU 0.0 9.6##person opens a box.\nDOGYU 19.3 32.0##person recloses the box.\nA96EQ 0.0 6.7##the person pushes the door open.\nA96EQ 0.5 7.5##person walks through the doorway into the room.\n3XDQC 0.0 4.3##one person with hair in a towel is smiling.\nUSNP1 4.3 11.4##person they take a phone out of their pocket.\nVSAA7 30.6 37.0##person begin snuggling under a blanket in the living room.\nIXISD 10.7 15.6##the person is putting their shoes on the floor.\nIXISD 3.9 13.1##a person is laughing.\nIXISD 12.9 18.7##person put their feet up on the table.\nIXISD 8.2 13.5##person take off their shoes.\nIXISD 3.9 13.1##person they laugh.\nD1D55 22.1 36.7##person sitting in the office chair for a moment.\nD1D55 22.1 36.7##person sits in a chair.\n7SUTI 18.9 29.5##another person looks out the window.\nSWZWL 21.7 33.0##takes a picture of the second person.\n8K380 16.8 32.0##person the other was sneezing into a pillow.\n00T4B 10.9 20.3##person they ended by putting on their shoes.\n00T4B 10.9 20.3##person puts on shoes.\nZEID0 0.0 4.0##one person is sneezing on homework.\nRZDEA 6.7 14.6##a person is smiling with a glass in their hand.\nRZDEA 0.0 6.9##a person is holding a glass.\nEIK9W 0.5 6.8##person holding a cup.\nI049A 23.7 31.0##person put on some shoes.\nD7KU2 7.7 14.1##a person is putting a broom in a corner.\n5XLBY 27.7 32.0##person puts book on table.\nE6IL3 0.0 3.8##a person is sitting on the floor reading a magazine.\nE6IL3 0.0 3.7##a person is smiling.\nE6IL3 0.0 3.1##person reading a book.\nYBVVZ 0.0 12.4##a person starts to tidy up a table.\nYBVVZ 15.2 23.1##person put food on a shelf.\nYBVVZ 0.0 12.4##a person is tidying a table.\nYBVVZ 15.2 23.1##person putting food on a shelf.\nWPFKR 18.5 27.4##person opens a cabinet.\nWPFKR 1.8 7.2##a person takes off their shoes.\nSJ6X6 1.7 10.3##person runs up the driveway into the garage.\nSJ6X6 7.9 12.8##person throws the book into red pillow over.\nYH7K4 16.9 30.0##person eats it.\nYH7K4 5.0 16.4##person drinking a cup of coffee.\nZRITA 0.0 12.0##person eating a sandwich.\nZRITA 0.0 11.6##person one on sofa eating.\nD52S5 16.4 23.6##person he sits down in a chair.\nD52S5 6.2 12.9##person takes a seat at the table.\nD52S5 25.2 33.0##the person reaches behind the person to open the cabinet.\nD52S5 21.4 33.0##person grabs a drink from a bottle.\nD52S5 6.2 12.9##person eats some more food.\nD52S5 6.2 12.9##person eats it.\nIWF0U 4.6 21.0##person sits on a chair.\nIWF0U 5.4 19.3##a person is pouring a drink in a glass.\nIWF0U 5.4 19.3##person pours a drink into a glass.\nK5IAK 10.6 17.1##person enters the bedroom holding a vacuum.\n1J3I0 2.3 7.1##person putting the laptop on the couch.\n1J3I0 0.0 7.8##one person closes a laptop.\nGR5N6 10.1 18.0##person they stand up.\nGR5N6 10.2 17.9##person throw the book across the room.\nGR5N6 10.2 17.9##person throw the book through a doorway.\nKW3BO 6.6 13.1##person taking a drink of water from a cup.\nKW3BO 0.0 6.8##a person eats some food.\nKW3BO 0.0 6.8##person is eating box of candy.\nKW3BO 11.0 23.9##person starts laughing.\nFHXKQ 0.0 8.6##a person is putting some groceries on a table.\nA2771 19.7 32.0##another person takes a laptop from a shelf.\nYAPN7 2.6 17.5##person sits on the couch.\nYAPN7 22.4 38.4##person takes a bite from a piece of food.\nYAPN7 2.3 6.6##a person undresses in the recreation room.\nYAPN7 3.8 8.6##person eating some food from a bag.\nCIBGY 0.0 9.4##a person washes their hands in a sink.\nCIBGY 0.0 9.4##person washing hands at the sink.\nCIBGY 24.2 29.8##person open a door.\nCIBGY 0.0 9.4##a person is washing their hands.\n85OEC 28.0 35.5##person sitting on the sofa.\nI0HIX 0.0 7.4##a person is working on a laptop on a desk.\nI0HIX 0.0 7.4##a person sits at their desk working on their laptop.\n2G6A8 16.8 23.9##person runs from the room though the door.\n2G6A8 16.8 23.9##person runs out of the room.\n2G6A8 16.0 20.9##person turning off the light behind them.\n2G6A8 16.0 20.9##the person suddenly turns off the light.\nFFBK3 22.3 29.1##person they put the book in a bag.\nSXI64 5.6 13.5##person undressing in front of their mirror glass.\n13YII 0.0 4.2##a person is putting things in a kitchen cupboard.\nJVISI 21.7 35.6##person takes off his shoes.\nJVISI 31.8 39.0##person he takes a drink from the cup.\nB8BSY 12.7 18.4##person sneezing at the same time.\nZAIHG 8.4 18.9##person puts it on a table near a window.\nKU2T0 0.0 8.2##one person is sitting in a chair tossing a pillow.\nKX7FC 32.0 38.0##person begins closing the cabinet over the sink.\nKX7FC 32.0 38.0##person closed the cabinets beneath the sink.\nEFI64 18.0 26.9##person watching laptop kept something on the desk.\nEFI64 18.0 26.9##person watching something in the laptop drinking some coffee.\nP3WQV 29.5 44.2##person they sit on bed.\nP3WQV 29.5 44.2##person sitting in front of a mirror in a bedroom.\nK7X5G 24.4 32.2##person started to close the laptop.\nK7X5G 24.4 32.2##person closes their laptop.\nYE991 18.4 28.0##person drinking a glass of water at the stove.\n0FVYR 12.6 17.4##a person opens a door.\n0FVYR 22.2 27.5##person drinks from a glass.\n0FVYR 10.2 16.0##person opening a closet.\nMNGT1 10.7 16.8##person they close the laptop.\nMNGT1 28.0 35.0##person put it in a bag.\nMNGT1 10.7 16.8##the person closed the laptop.\nMNGT1 1.7 14.3##a person sits on the stairs working on their laptop.\nMNGT1 28.0 35.0##person puts the bag over their shoulder.\nPZ0MM 5.7 14.5##person they pour some more water into their cup.\nPZ0MM 0.0 8.0##the person drinks from the glass.\nPZ0MM 11.9 19.5##person walks through a doorway.\nPZ0MM 11.9 19.5##person they walk through the doorway.\n3GXB7 23.3 31.1##person sitting down at the table.\n4GDTQ 8.1 16.9##a person opens a book.\n10INO 62.1 83.1##person play on their phone.\nXNO6M 16.8 21.7##a person turns off the light.\nXNO6M 16.8 21.7##person turn off the light.\n39T0D 17.3 33.5##the person started sneezing because of all the dust.\n555RO 13.9 21.2##person closes the bathroom door.\n555RO 17.7 31.0##person working on fixing the bathroom door.\nC6LDA 16.7 32.0##person sitting in a chair.\nC6LDA 0.0 9.1##a man fixed his hair in a mirror.\nE1U37 5.1 10.0##person throwing it on the floor.\n9SP9P 5.7 13.0##person drinking from a coffee cup.\n9SP9P 5.7 13.0##person starts drinking from a cup.\n6XGUE 4.4 10.8##one person eats a sandwich.\n6XGUE 16.0 22.4##person opens a laptop.\nGYAR9 19.3 30.5##the person throws the blanket on the floor.\nGANC6 13.6 19.6##person start sneezing from the dust.\nGANC6 1.6 6.5##person puts it on the table.\nP23HN 5.3 10.9##person open up a book.\nPBGYV 0.0 4.7##a person opens a door.\nPBGYV 0.0 4.7##a person opens the door to their bathroom.\nPBGYV 11.8 25.8##person takes a picture.\n330ZE 0.0 3.7##person they take some bagged food.\n330ZE 0.5 12.9##person putting groceries on the table.\nOLSMC 0.0 4.1##a person is sneezing into the mirror.\nK5OQO 5.2 11.7##a person closes a door.\nK5OQO 0.0 8.0##one person puts a sandwich on the bathroom shelf.\nK5OQO 5.2 11.7##person closes the doorknob to the bathroom.\nL8N31 21.2 26.9##person turn off the light.\nL8N31 21.2 26.9##person turns off the light.\nA0T30 7.6 15.2##person take a small towel.\nA0T30 7.6 15.2##person they take a towel from a table.\nQB8O7 0.0 8.0##person smiling at a picture on a laptop.\nF3ULU 15.4 21.9##the person is putting it on a shelf.\nTS75H 15.4 20.0##person grabs a bite to eat.\nTS75H 0.9 6.1##a person is standing in a garage sneezing.\nTS75H 15.4 20.0##person they eat a sandwich.\nTS75H 0.0 13.6##a person holding medicine sneezes twice.\nTS75H 0.0 13.6##person holding a bottle of medicine sneezing they sit down.\nMEYZ5 13.9 19.4##person they stand up.\nMEYZ5 15.4 25.4##person open a window on a cabinet behind their head.\nNU09Z 13.3 17.8##a person is tidying up a shelf in the kitchen.\nAXIW1 32.9 38.0##person take a drink from a glass of water.\nAXIW1 25.7 34.6##the person takes off the person's shoes.\nGLH5S 0.4 5.5##a person sits in a chair.\nGLH5S 4.5 9.8##person they stand up.\nGLH5S 9.5 14.6##person put the thing back on the table.\nRBCU4 17.8 24.4##person takes a book.\nK0C0A 0.0 15.5##a person sits in a chair.\nK0C0A 23.6 38.0##person begin to put groceries away.\nK0C0A 15.0 21.3##the person opens a bag of groceries.\nL58KN 8.2 13.6##person they put the towel down.\nL58KN 0.0 13.4##a person is in their bedroom holding a towel.\n9D37U 22.5 32.0##person begin playing a short puzzle game on their phone.\n4GWNV 3.6 12.8##person holding a camera.\n4GWNV 10.6 17.8##a person closes a door.\n4GWNV 10.6 17.8##person pulling the door closed behind them.\n4GWNV 4.6 10.0##person closes a medicine cabinet.\n0RI7C 2.5 7.5##person hey close the book.\n0RI7C 0.0 7.0##a person is sitting in the bathroom reading a book.\nCMD0M 17.7 30.7##person pours themselves a glass of water.\nCMD0M 17.7 30.7##the person pours some liquid into a glass.\nYM5CV 18.9 24.8##person put the camera on a table.\nU8X15 10.2 15.7##a person stands in a room holding a camera.\nU8X15 10.3 20.2##person prepare to take a picture.\nKPHP5 2.3 10.4##person turning on a light.\nKPHP5 23.9 32.0##person begins sneezing.\nZ6HSZ 19.4 26.5##person they close a nearby open door.\nZ6HSZ 12.3 21.3##person eating a sandwich who walks to the bathroom.\nZ6HSZ 12.3 21.3##person eating a sandwich.\nB7T3B 12.2 22.0##one person takes a picture from a box.\nB7T3B 12.2 22.0##person they take a photograph from a box.\nB7T3B 7.9 14.5##person looked out a window.\nB7T3B 20.4 28.4##a person walks through a doorway.\nI5Q2Z 25.5 32.0##a woman is holding two cups of tea.\nI5Q2Z 0.0 5.4##a person is pouring coffee between two cups.\nI5Q2Z 12.6 16.8##person prepares to eat his food.\n9L71W 30.2 33.0##the person looks at the picture for a moment.\nCMI7U 0.0 5.2##a person is sitting on a chair holding books.\nCMI7U 14.6 21.3##person puts the books on a shelf.\nCMI7U 14.6 21.3##person the putting books on a shelf in the hallway.\nRCA3E 23.4 31.0##person they go to wash their hands in a sink.\nRCA3E 23.4 31.0##person they are washing their hands in the sink.\nJW2HC 0.0 5.0##a person runs into a bedroom holding a sandwich.\nJW2HC 0.0 5.0##a person runs into a room holding a book.\nJW2HC 1.0 6.0##person they eat the sandwich.\nJW2HC 1.0 6.0##person entered the room by eating sandwich.\nJW2HC 1.0 6.0##person eating a sandwich.\nGF6TR 4.1 9.4##person puts something else on the shelf.\nGF6TR 0.0 4.9##the person runs into the closet.\nGF6TR 4.2 9.2##person throws the pillow onto a shelf.\nGF6TR 0.0 9.0##person holding a pillow.\n6VF2L 7.7 15.8##a person walks through a doorway.\nUU2LH 8.6 18.2##person sit on the bed to put her shoes on.\nLTYK5 0.0 5.3##a person is smiling in the laundry room.\nLTYK5 12.9 17.9##person closes the dryer door.\nLTYK5 2.3 16.2##person putting clothes in the washer.\nLTYK5 2.3 16.2##person putting the clothes inside of the dryer.\nDJ7DG 11.7 18.0##person they stand up.\nDJ7DG 0.0 14.6##a person sits on the floor.\nDJ7DG 0.0 14.6##a person sits on the floor in a doorway.\nKHWG2 2.1 9.3##person drinking from a glass.\nXIUQJ 0.0 11.0##person drinking from a glass.\nXIUQJ 21.6 26.6##person they take their shoes off.\nXIUQJ 21.6 26.6##person they take off their shoes.\nQFVMA 23.3 34.0##person looks out a window.\nQFVMA 23.3 34.0##person they look out the window.\nHRR0X 0.0 11.3##a person is sitting in a chair.\nHRR0X 20.0 25.1##person take a bite of some food.\nHRR0X 14.1 20.8##person hits a light switch.\nHRR0X 21.5 27.0##person eat an apple.\nHRR0X 14.1 20.8##person they turn on a light.\nHRR0X 9.4 16.5##person holding a book.\nHRR0X 9.4 16.5##a person awakens in their dining room holding a book.\nOWLRQ 23.8 31.3##person they start sneezing.\nOWLRQ 17.6 23.0##person take a picture with the camera.\nZP5TG 3.3 10.7##another person is laughing.\nZP5TG 0.0 5.8##one person is eating.\nZP5TG 0.0 5.8##person 1 of them is eating food.\nZP5TG 0.0 5.8##a person is eating food on the bed.\n9IXS4 14.6 20.4##person turns off a light.\n9IXS4 14.6 20.4##person they turn off the light.\nX4WWH 10.2 15.8##person closes the door.\nX4WWH 7.8 13.2##the person opens the closet door.\n9KYMU 16.9 23.9##person opening a box with shoes in it.\n9KYMU 0.0 13.2##a person runs back in forth in the garage.\n9KYMU 0.0 13.2##a person is running by a window.\nTCGAY 24.7 31.9##person they put a glass onto a chair.\nTCGAY 21.3 32.0##person start tidying themselves with a towel.\nMY9UC 0.0 6.1##a person is in the kitchen washing dishes.\nMY9UC 18.6 31.0##a different person is sitting on the kitchen table.\nMY9UC 0.0 6.1##a person is washing dishes using a sponge.\nMY9UC 0.0 6.1##a person is standing in a kitchen washing dishes.\nISTQI 3.0 11.5##a person takes a book off a shelf.\n63GDX 25.3 29.6##the person puts the box down.\n63GDX 9.5 18.3##the person opens a box.\nF3O37 5.8 10.5##a person is throwing dirty shoes into the laundry.\nKQLIJ 11.0 16.6##person throws it on the floor.\nKQLIJ 0.0 8.6##a person is playing with a camera.\nKQLIJ 0.0 8.3##a person is holding a camera.\nY9WZW 32.7 46.6##person she drinks from a cup.\nNU4XA 16.9 22.9##person sit down in another chair.\nNU4XA 26.6 32.0##person watch television.\nNU4XA 6.8 13.5##person opens a door.\nNU4XA 16.9 22.9##person sitting in a chair who gets up.\nGLLNH 24.3 31.1##person takes a picture of something through the doorway.\nGLLNH 14.3 20.8##person takes out a phone.\nGLLNH 24.3 31.1##person takes a picture in the doorway.\nGLLNH 24.3 31.1##person take a picture.\nGLLNH 14.3 20.8##the person takes out a camera.\nGLLNH 14.3 20.8##person takes out their phone.\nTW6NZ 0.0 12.7##a person is sitting on a sofa.\nTW6NZ 0.0 12.7##a person is sitting on a couch.\nTW6NZ 21.4 27.4##person they are smiling.\nTW6NZ 0.0 12.7##a person sits down on the sofa.\nTW6NZ 1.6 12.4##person begins undressing.\nSQY6A 16.2 27.5##person picks up a box closes itand puts it back.\nSQY6A 10.1 15.4##person picks up shoes puts them back down.\nGNPSK 0.0 4.2##person sitting in a chair eating.\nGNPSK 0.0 4.2##a person is sitting at a desk eating an apple.\nGNPSK 0.0 4.2##a person is eating at the table.\nB8W55 18.8 27.7##person the open a cabinet.\nSL9P2 26.0 32.0##person drinking some medicine from a rather large cup.\nSL9P2 0.0 11.9##a person is playing on their laptop.\nSL9P2 0.0 11.9##person working on laptop sitting down taking medicine.\nJ8781 4.5 14.1##person sits in a chair.\nJ8781 3.4 10.1##person putting on their shoes.\nJ8781 4.5 14.1##person sitting on a chair.\nJ8781 14.5 21.0##person closes the door.\nJ8781 0.0 6.0##a person is getting dressed in the bedroom.\nJ8781 14.5 21.0##person closing the door behind them.\nJ8781 4.5 14.1##person sitting in a chair.\nA0ZW3 9.0 15.8##the person is awakening on a blanket.\nD4LRR 11.6 19.1##person they open a laptop.\nD4LRR 0.0 11.1##person takes a picture of themselves.\nX4CZH 3.6 10.3##person off a light switch.\nX4CZH 3.6 10.3##person turned on the light.\nX4CZH 0.0 6.0##a person is looking out a window.\nX4CZH 3.6 10.3##opening it the person fixed the light bulb!.\nX4CZH 3.6 10.3##person take the light bulb from over head.\nLT13Z 8.3 14.0##person fixes his hair.\nLT13Z 10.1 21.2##a person is undressing by the mirror.\n8MY8P 7.8 17.2##the person begins cooking it in a microwave.\n8MY8P 0.6 7.1##a person takes some food off the shelf.\nGIZCL 3.9 16.6##one person holds a box of groceries.\n0WU7S 6.2 11.5##a person takes a bag from a cabinet.\n0WU7S 3.1 8.2##person they open the cabinet.\n0WU7S 17.7 34.0##person they start eating the chips.\nD740L 11.6 21.4##person opens bag.\nD740L 1.3 10.1##person takes clothes out.\nD740L 26.4 31.5##person throws empty bag on floor.\nLP1F3 0.0 6.4##a person is sneezing.\nLP1F3 0.0 6.4##a person sitting at their desk begins sneezing uncontrollably.\nQL92H 0.2 8.1##a person is running in holding a bag.\nQL92H 6.9 15.3##person sitting on a chair.\nJXNEN 15.5 27.0##person they sit down on a sofa.\nJXNEN 10.4 17.7##person eating a sandwich.\nJXNEN 15.5 27.0##person laughs at them.\nHCM5Y 0.0 7.7##person seated in front of a mirror.\nHCM5Y 0.0 7.7##a person is sitting on the floor eating some food.\nHCM5Y 0.0 7.7##a person eats.\nHCM5Y 0.0 7.7##person looks like eating something.\nSTAFD 3.3 12.0##person eating a sandwich.\nN50C6 4.2 9.6##a person is holding a glass.\n7K2CS 17.9 31.0##person starts eating.\n7K2CS 17.9 31.0##person begins eating it.\n7K2CS 17.9 31.0##person eats from s container.\n7K2CS 5.8 19.2##person begins undressing.\n2LMQF 13.8 22.9##person they pour water into a cup.\n2LMQF 0.0 13.2##person eating a sandwich.\n2LMQF 0.0 13.2##a person is sitting at the table eating a sandwich.\n2LMQF 0.0 13.2##a person is eating a sandwich.\n2LMQF 13.8 22.9##person they pour water into another glass.\nD8YOL 0.0 10.8##a person is seen working on their laptop.\nD8YOL 0.0 10.8##person sits on a chair working on their laptop.\nREOES 11.6 17.8##person puts the book down.\nREOES 15.4 21.3##person they take out a camera.\nREOES 16.6 26.0##person takes a picture of themselves.\nTFQNW 13.7 21.0##person goes to the window to run in place.\nAUYOZ 15.6 20.3##person takes a phone from their pocket.\nKSDFR 19.5 26.9##this person pours something in a glass.\nOK2TU 37.7 46.0##person closes the door.\nOK2TU 33.5 42.0##person opens the door.\nCC87Z 7.5 18.1##person closed the door.\nCC87Z 4.2 12.6##the person opened the door to the room.\nAVJFE 10.8 19.8##person is sitting at table eating.\nZVCMM 3.7 10.9##a person is standing in the kitchen eating something.\nZVCMM 14.1 20.9##person closes the cabinet.\nZVCMM 3.7 10.9##a person is eating food.\nZVCMM 16.6 27.0##person putting dishes in a sink in a kitchen.\nZVCMM 8.6 14.3##the person opens a cabinet.\nJ84TZ 0.0 6.5##a person is awakening on a couch.\nJ84TZ 16.2 21.0##person walk to the doorway.\nJ84TZ 16.2 21.0##person walks through a doorway.\n243Y9 20.5 28.5##person eats something out of a plastic bag.\n243Y9 17.7 27.5##person sits down in a chair.\n243Y9 20.5 28.5##person starts eating.\n243Y9 17.7 27.5##a person sits on a chair.\n243Y9 17.7 27.5##another person is sitting in a chair eating breakfast.\nPWO7A 11.9 19.9##person closes the door behind them.\n9GOUI 12.0 19.9##person running up the steps.\n9GOUI 0.4 6.2##a person smiles as they eat a sandwich.\n9GOUI 12.0 19.9##person run up the stairs.\n9GOUI 3.5 9.5##person drink a cup of coffee on the stairs.\n9GOUI 12.0 19.9##the person runs up the stairs.\n9GOUI 0.4 6.2##a person is sitting on the stairs eating a sandwich.\nYA7M0 32.1 38.7##person takes a sip of coffee from a cup.\nYA7M0 32.1 38.7##person takes a sip of water from a glass.\nGQR08 0.0 7.6##a person awakens holding a bag.\nJZB97 1.5 7.3##person they put the towel down.\nJZB97 0.0 5.1##a person takes some clothes.\nJZB97 22.1 31.9##person laughs at a video that's playing.\nXUTJZ 12.8 24.0##person looking out a window.\nXUTJZ 12.8 24.0##person looking into a room out the window.\nGXDGV 3.2 8.6##a person puts a camera around their neck.\nVNQES 23.9 31.0##person put the box down on a table.\nVNQES 23.9 31.0##person they put the box on a table.\nVNQES 6.0 13.4##a person is laughing at something in a box.\nM7KH7 18.9 28.7##person putting it back on the shelf.\n88LYX 0.0 8.7##a person is cooking on their stove.\n88LYX 0.0 8.7##person go back to cooking.\n88LYX 0.0 8.7##a person is cooking on the stove.\n88LYX 8.5 16.4##person wash a glass.\n88LYX 0.0 8.7##there is a person cooking on a stove.\nO7KDK 0.0 6.2##a person is running into the room.\nO7KDK 0.0 6.2##a person runs in to a bedroom.\nZZ9RN 9.9 19.6##person starts sneezing.\nWBX8F 25.2 30.0##person they stand back up turn on the light.\nWBX8F 25.2 30.0##person leaving the light on.\nWBX8F 25.2 30.0##the person turns the light on.\nMTA02 20.0 25.1##another person is closing the refrigerator.\n6QPNW 13.5 21.4##a person is smiling at a pair of shoes.\n6QPNW 13.5 21.4##another person stands near smiling.\nCVX9F 0.0 6.7##person takes a picture of the stove with a camera.\nCVX9F 0.0 6.7##person they take a picture of the stove.\n8IBNY 29.1 42.7##person takes some medicine.\n8IBNY 9.6 17.2##a person pours something into a glass.\n8IBNY 9.6 17.2##a person pours a glass of water.\nYQ6Z6 5.5 16.3##the person takes a pillow from the dryer.\nYQ6Z6 16.8 22.9##person closes door.\nYQ6Z6 3.5 10.3##person opens door.\nYQ6Z6 5.5 16.3##person takes pillow out of dryer.\nYQ6Z6 5.5 16.3##person takes a pillow out of a dryer.\nQJIAV 0.0 7.3##a person is eating food at the kitchen table.\nQJIAV 0.0 7.3##a person is standing at a counter eating.\nK90LN 2.9 9.3##person opening rice from a bag into a pot.\nKK8N9 5.7 11.0##person takes a phone off a shelf.\nKK8N9 7.8 13.0##person so they start laughing.\nIZSPN 1.2 8.3##person opens a cabinet.\nIZSPN 1.2 8.3##a person is opening a cabinet in their home office.\nOBTP8 3.5 11.8##a person opens a door.\nOBTP8 3.5 11.8##person opens a door.\nPV856 27.7 33.3##a person opens a door.\nPV856 27.7 33.3##a person opens a door in their garage.\nPV856 2.6 7.3##person closes the door.\nRE1M6 21.6 26.1##person turn off the light.\nRE1M6 21.6 26.1##person turn off a light.\nDH9JU 12.2 17.1##person takes a broom.\nDH9JU 0.0 14.8##person begins to wash dishes.\nRFMRB 0.0 10.5##a man holding a blanket.\nRFMRB 10.1 17.1##a person is putting a blanket on a chair.\nB7HDN 15.0 22.0##the person starts laughing as he is eating.\nB7HDN 15.0 27.0##a person eats a sandwich.\nB7HDN 15.0 27.0##person eating a sandwich.\nB7HDN 15.0 27.0##person resumes eating.\nB7HDN 15.0 22.0##person they pause to laugh at something on the screen.\n42PMR 14.5 19.9##person takes a box.\nWIOOY 2.9 9.1##person puts bag of groceries on table.\nWIOOY 12.4 27.0##the person is cooking something.\nWIOOY 12.4 27.0##person starts cooking.\nONT61 5.0 18.0##a person puts a towel onto the shelf.\nONT61 16.9 23.1##person looks at the picture on the wall.\nBCONW 6.3 21.4##person pours water into a cup.\nBCONW 6.3 21.4##a person holding a bag pours water into a glass.\nBCONW 21.2 30.1##person puts the glass in the refrigerator.\nV9DQI 0.0 13.1##person eating an apple.\nV9DQI 0.0 13.1##person seated in a chair.\nV9DQI 0.0 13.1##a person eats.\nV9DQI 18.9 30.9##person watches television.\n3UWW0 0.0 6.6##the person is eating a sandwich.\n3UWW0 14.6 23.3##person drinking from a glass mug.\n3UWW0 0.0 6.6##person eating food.\nWTU0I 0.0 7.0##person opens a book.\nWTU0I 37.2 47.4##a person is sitting in a chair.\nUDF8X 9.6 17.0##person the open the bathroom door.\n8J723 29.6 36.3##person looking out the window.\n8J723 25.9 35.5##person opening a window.\n7UZZI 8.1 13.6##person start sneezing.\nU6L1X 0.0 3.0##person turned the light back off.\nU6L1X 0.0 3.0##the person turned on the light in the pantry.\nU6L1X 0.0 3.0##person turns on the light.\nU6L1X 19.8 24.6##the person puts the broom back in the pantry.\nU6L1X 21.4 27.3##person closes the door.\nU6L1X 19.8 24.6##the person puts the broom back into the closet.\nU6L1X 19.8 24.6##person they put the broom back away.\nBE43L 19.4 32.0##person they sit at the table.\nBE43L 19.4 32.0##person sits down at table.\n78XRT 7.9 17.0##one person throws a pillow.\n78XRT 6.4 12.1##the person at the desk begins sneezing.\nGFVSV 16.2 25.7##person puts the cup down.\nGFVSV 22.3 34.0##person open the book.\nGFVSV 22.3 34.0##person opens a book to start reading.\n27JQL 17.7 24.1##person eat a sandwich.\n27JQL 17.7 24.1##person eats a sandwich.\nJ8KPE 7.9 18.9##person takes out a bag of food.\nJ8KPE 12.1 17.9##person takes packet out of cupboard,closes cabinet.\n3GA59 17.7 23.3##this person runs out of the room with their homework.\nKGU21 12.2 23.2##a person is standing by the window laughing.\nNH9JS 15.4 23.8##person holding the door open.\nNH9JS 15.4 23.8##the person opened the door of cup board.\nNH9JS 18.2 29.5##person puts the bag into the cabinet.\n194WK 0.0 10.8##a person is reading a book.\n194WK 2.5 10.8##a person laughs as they read something in a book.\n194WK 11.3 18.7##person begins sneezing.\nMWC7V 0.0 4.7##person playing games on phone.\n3V7MT 19.0 31.0##person flip off the light.\n3V7MT 19.0 31.0##person turns off the light.\n3V7MT 0.0 3.7##person looks out the window.\n4JSK6 33.2 44.0##person watching television with book.\nE64R4 32.3 37.0##person closes door behind them.\nE64R4 30.8 36.4##person open door.\nE64R4 1.6 13.6##a person is dressing in their garage.\n5Q0CX 0.5 12.4##a person awakens.\n5Q0CX 22.4 30.7##person look out a window.\n5Q0CX 22.4 30.7##person look out the window.\n5Q0CX 22.4 30.7##person looks out a window.\n5Q0CX 14.2 18.7##person turns on a light.\n5Q0CX 14.2 18.7##person turn on the light.\nXAW3U 0.0 3.2##a person is eating.\nXAW3U 0.0 3.2##a person is standing by a curtained window eating something.\nXAW3U 0.0 3.2##a person eating.\nIGT82 0.1 7.8##person opens a cabinet.\nIGT82 0.0 6.9##one person walks through the doorway.\nIGT82 21.7 29.8##person running out.\n3DNW1 9.4 14.8##person they open a cabinet.\n3DNW1 15.1 20.0##person running out of the room.\n3DNW1 15.1 20.0##person run out of the room.\nNYXJ6 24.7 37.0##person sitting on the chair.\nNYXJ6 25.6 37.0##a person is sitting at the table doing homework.\nNYXJ6 12.4 25.8##person puts their bag on the dining room table.\nCLORP 28.2 40.0##the person sits down on the sofa.\nCLORP 14.6 24.4##person looks out of the window.\nCLORP 32.6 40.0##person reads a book.\nCLORP 1.5 7.4##person awakens from a nap on the couch.\nCLORP 28.2 39.5##person starts eating pizza from the table.\nCLORP 14.6 24.4##person looks out the window.\nCLORP 28.8 37.8##person opens a book.\nCLORP 28.2 39.5##person eats it.\nUCPP8 22.1 38.3##a person is putting away groceries in the pantry.\nUCPP8 34.6 48.9##person takes off shoes.\nUCPP8 34.6 48.9##person takes off their shoes.\nUCPP8 34.6 48.9##person take their shoes off.\nF76GD 8.7 14.3##person they stand up.\nF76GD 19.8 35.2##person wash their hands.\nF76GD 19.8 35.2##person follow up by washing their hands in the sink.\nF76GD 11.8 19.9##person drinks from a glass.\nF76GD 11.8 19.9##person drink a glass of water.\nF76GD 19.8 35.2##person washes their hands.\nF76GD 11.8 19.9##person drink water from a glass on the counter.\nOSENM 25.0 34.0##person holding a camera.\nOSENM 24.7 34.0##person attempting to take a picture of themselves.\nNIRNP 3.0 8.5##a person runs over grabs.\n5T9CK 15.2 26.8##person drinks from a glass.\n5T9CK 23.8 36.0##person dresses in a winter coat.\nDJ6ZW 13.2 22.4##person drinks some water from a glass.\nDJ6ZW 2.2 7.6##a person is washing their hands in a sink.\nDJ6ZW 13.2 22.4##person they drink from a glass of water.\nPP5KJ 5.0 16.0##person takes a vacuum out of a box.\nH1GWM 13.7 19.6##the person walks to the doorway.\nH1GWM 13.7 19.6##person walk through multiple doorways.\nH1GWM 0.0 7.9##a person washes their hand in a sink.\nJG7UX 0.0 11.1##a person is undressing in front of the wardrobe.\nJG7UX 22.0 29.0##the person opens the refrigerator.\nJG7UX 0.0 3.7##a person opens a cabinet to place their hat inside.\n8RSZ4 1.9 12.7##a person looks out the window.\n8RSZ4 1.9 12.7##person they look out the window.\nSJGZ2 3.5 9.1##person opens up a cabinet.\nSJGZ2 3.5 9.1##the person opens the doors of the cupboard.\nHJOJ0 0.4 7.0##a person runs over to the sofa.\nHJOJ0 0.4 7.0##a person is running into the living room.\n1THHL 14.0 27.8##person starts smiling.\n1THHL 0.0 5.1##person is opening medicine cabinets.\nT8XGN 11.8 17.9##one person opens a door.\nT8XGN 11.8 17.9##person opens a door.\n5FDHU 0.2 6.1##person eating a sandwich with the other.\n5FDHU 0.2 6.1##a person is eating a sandwich.\n44Q8A 19.2 25.4##the person awakens suddenly.\n44Q8A 20.9 32.0##person throws the pillow aside.\nZWPS3 12.8 18.0##person sit on a chair.\nZWPS3 8.4 18.2##a person puts groceries onto a table.\nZWPS3 11.6 17.3##person the put the bottle.\nZWPS3 5.3 11.7##a person walks through a doorway holding a bottle.\nZWPS3 12.8 18.0##another person sits on a chair working on a laptop.\nHFW6H 35.1 43.3##person they both throw the shirts on the floor.\nVSZ4W 0.0 5.0##a person drinks from a glass.\nVSZ4W 0.0 5.0##person drinking from a glass.\nVAPVR 15.7 30.4##person looks out a window.\nW495O 13.0 20.0##person starts cooking.\nWLA52 15.8 23.0##the person puts down the blanket.\nWLA52 15.8 23.0##person puts down the blanket.\nTMATS 12.1 17.9##person puts shoes on pillow.\nNO0WS 7.0 18.7##person they begin to put away their groceries.\nNO0WS 0.0 10.2##a person is standing in their pantry eating a cookie.\nNO0WS 0.0 10.2##person eating something.\nUAWXI 0.0 9.5##a person runs into a room holding an envelope.\n9OEWM 12.0 17.2##person start turning the light on.\n9OEWM 6.7 16.6##person run in a circle around the table.\n9OEWM 12.0 17.2##person turns on a light.\n9OEWM 6.7 16.6##person runs around.\nMV37M 10.1 18.5##person begins throwing them onto the floor.\nMV37M 0.0 6.1##person eating some sort of food.\nMV37M 20.4 24.0##person laughing at how silly they seem.\nMV37M 0.0 6.1##a person in the kitchen is eating some groceries.\nMV37M 10.1 18.5##person they begin throwing some clothes on the floor.\nITXRK 48.6 55.1##person they stand up.\nITXRK 2.0 10.5##a person is laying on the floor of a kitchen.\nITXRK 32.2 51.2##person undresses from their jacket.\nITXRK 32.2 51.2##person start undressing.\nITXRK 2.0 10.5##there is a person laying on the floor.\nSXYLN 19.9 25.7##the person throws a bag of groceries on the ground.\nSXYLN 19.9 25.7##person they throw the sandwich wrapper in the garbage.\nSXYLN 0.2 6.3##person they put the bag down.\nS7RGX 21.9 27.6##person they put it back on the shelf.\nFZJTT 1.1 11.9##a person awakens in the living room.\nFZJTT 16.0 24.0##the person takes out their camera.\nFZJTT 7.0 21.6##person putting their shoes on.\nFZJTT 7.0 21.6##person puts their shoes on.\nFZJTT 7.0 21.6##person puts on their shoes.\n0WLCJ 1.8 7.2##a person throws a blanket on the sofa.\n0WLCJ 1.8 7.2##person throws blanket onto couch.\n8WJIR 0.6 11.2##a person sitting on a bed watching a television.\n8WJIR 0.6 11.2##a person sits on the bed watching television.\n8WJIR 10.2 21.3##person goes back to the bed sits down.\n8WJIR 7.4 17.6##person they start closing the bedroom door.\n8WJIR 12.9 23.5##person drinking a cup of coffee.\n8WJIR 7.4 17.6##person proceeds to close the doors.\nPDK24 0.0 4.6##a person turns on the light in their dining room.\nPDK24 15.3 25.0##person they sit in a chair.\nPDK24 16.9 23.8##person start sneezing.\nPDK24 16.9 23.8##person begins sneezing.\nPDK24 0.0 4.6##a person turns on the light.\nWT3IG 0.0 8.2##a person is holding a camera.\n57MEO 0.0 4.9##a person opens a door.\n57MEO 7.3 15.0##person put the book.\n57MEO 7.3 15.0##person they put the book.\n57MEO 0.0 4.9##a person opens the door.\nUFVO8 7.6 13.2##person closed the door.\nUFVO8 3.0 9.8##a person opens a door.\nH6ROK 0.0 15.1##person throwing the blanket to the ground.\n4JH6O 0.0 10.7##a person walks into a door holding a blanket.\n4JH6O 0.0 5.7##a person runs into a room.\nEOELV 0.0 13.1##a person awakens.\nOIZT9 9.8 15.8##the person puts the groceries on the floor.\nOIZT9 19.0 26.0##person takes a picture with a camera.\nOIZT9 19.0 26.0##person takes a picture of them doing that.\n7TJ14 19.1 26.6##person eats it.\n7TJ14 19.1 26.6##person fixes something to eat.\n7TJ14 19.1 26.6##person runs out eating.\n8Q0EY 22.5 33.0##person holds a towel.\nP8Y27 0.6 5.1##a person throws a bag on chair.\nP8Y27 0.6 5.1##a person throws a bag into the pantry.\nP8Y27 5.4 10.6##person wash the window.\n2SIO0 17.0 22.1##person smiling at a television in a bedroom.\n2SIO0 2.1 17.4##laughing person dressed in a towel turns on a television.\nZ6IAE 5.3 18.6##a person looks out the window.\nZ6IAE 5.3 18.6##person looks out a window.\nZ6IAE 25.2 32.2##person opens the door.\nZ6IAE 25.2 32.2##person opening a door.\nRKU88 19.1 24.5##person throws it on the floor.\nRKU88 8.7 13.4##person throwing down their dirty clothes as they come off.\nRKU88 19.1 24.5##person throw it on the floor.\nRKU88 0.0 4.8##a person walks through the doorway into their bedroom.\nFVSB0 0.0 5.0##a person opens a cabinet.\nFVSB0 12.5 21.3##a person holding clothes puts them in the wardrobe.\n7YMK9 36.3 41.0##person closing the door behind them.\n7YMK9 34.1 39.9##person opening the door.\nEVHAZ 0.0 14.4##a person stands on a chair.\n9D2T4 4.2 9.6##a person is in the hallway throwing a pillow.\n7O2LP 14.6 21.8##person throws the dishes they were carrying onto the floor.\nCBLSW 24.7 31.3##person puts a glass in the sink.\n1GQAJ 1.8 17.7##person walks in holding a broom.\n1GQAJ 1.8 17.7##a person walks in holding a broom.\nO7NI6 0.0 4.3##a person opens a door.\nVO45S 0.0 13.2##a person holding a shoe box.\nVO45S 9.1 14.1##person puts the box down.\nVO45S 0.0 13.2##person holding a box.\nN8R3F 3.9 9.2##person throws a pair of shoes at a shelf.\nN8R3F 3.9 9.2##person throws some shoes on the floor.\n705RV 18.9 29.5##person eats it.\n705RV 15.5 21.8##person start putting the sandwich on a table.\n705RV 18.1 26.9##person take some medicine.\nTE421 23.3 33.0##person closes the door.\nTE421 1.2 6.5##a person takes some medicine.\nTE421 19.1 33.0##person talking on the phone.\nTE421 23.3 33.0##another person with a phone closes the door.\n82XWA 0.0 10.2##a person is awakening.\n0QMGP 9.6 17.0##person set a laptop computer down on a table.\n0QMGP 23.7 32.0##person wash their hands in the sink.\n0QMGP 23.7 32.0##person washed hands in water running from a faucet.\n0QMGP 9.3 17.0##person they put on a table.\nBMLFA 12.1 22.7##a person is holding a box.\nBMLFA 15.2 22.5##person put a box away in the refrigerator.\nKX90W 0.0 4.9##person walks through a doorway.\nKX90W 0.9 9.1##the person opens a closet door.\n5MSZP 5.8 17.5##a person is smiling.\n5MSZP 1.1 7.9##another person is sitting in a chair eating a sandwich.\n5MSZP 22.2 27.3##person putting towels away.\nLPR6Z 28.1 33.0##person turning the light off.\nLPR6Z 28.1 33.0##person cuts the light off.\n8R0SZ 0.0 9.7##a person runs through the doorway.\n8R0SZ 0.0 9.7##person running back out.\nWTFOC 18.4 23.0##person they open a closet door.\nPVVQS 7.0 21.1##person the are laughing.\nPVVQS 0.0 9.0##a person is walking through a doorway.\nPVVQS 23.0 29.0##person throws their shoes down the hallway.\nPVVQS 5.0 10.6##person turns on the light.\nPVVQS 23.0 29.0##person begin throwing their shoes.\nPVVQS 5.0 10.6##person turns on a light.\nPVVQS 7.0 21.1##person begins laughing.\nG6BFY 5.5 10.3##person they put it back on the shelf.\nG6BFY 12.0 16.8##person smiles into a mirror.\nO8DER 16.7 22.6##person they stand up.\nO8DER 18.6 28.6##person put a box on it.\nO8DER 21.7 28.6##person puts a box on the shelf.\nO8DER 5.1 12.9##a person is seen laughing.\nI31V9 2.5 7.4##person turns on light.\nI31V9 0.0 4.5##a person was eating a sandwich.\nI31V9 0.0 4.5##person eating a sandwich.\nI31V9 2.5 7.4##person turned on a light.\nI31V9 2.5 7.4##person they turn on a light.\nI31V9 7.8 13.0##person opens book.\nZRRC8 13.7 19.7##person takes a book.\nZRRC8 0.6 8.9##a person awakens in bed.\nZRRC8 15.4 24.0##person they look at the book they are holding.\nPM1VD 100.8 109.7##this person is sitting in a chair a his desk.\nAQ69X 0.1 12.7##person puts on a pair of shoes.\nAQ69X 0.1 12.7##person putting on shoes.\nOOCOF 23.6 31.0##person wash their hands in the sink.\nU0X4P 0.0 14.2##a person looks out the window.\nU0X4P 0.0 14.2##a person is watching something outside the window.\nU0X4P 26.2 30.8##person throw their clothes on the bed.\nU0X4P 0.0 14.2##the person looked out the window.\nN2GFQ 6.9 13.5##person puts a bag on a shelf.\nN2GFQ 14.0 30.0##the person goes to wash their hands.\nN2GFQ 4.0 12.0##that person takes off their shoes.\nN2GFQ 14.0 30.0##person washes hands.\nN2GFQ 14.0 30.0##person washes their hands.\nN2GFQ 4.0 12.0##person takes their shoes off.\n9Z1A3 3.2 12.9##person puts shoes on.\n9Z1A3 0.0 6.9##a person is quickly dressing in the dining room.\n9Z1A3 3.2 12.9##person puts on a pair of shoes.\nNWNUY 18.5 25.8##person puts away some food onto a shelf.\nNWNUY 18.5 25.8##person put some food on it.\nRY8ZS 0.0 15.1##a person is washing a mirror with a blanket.\nCD11G 0.0 7.7##a person is cooking food on a stove.\nCD11G 5.0 11.9##person open the refrigerator.\nCD11G 0.0 7.7##a person is cooking on the stove.\nCD11G 9.8 16.2##person eating in a kitchen.\nCD11G 13.7 19.0##person closes the refrigerator.\nCD11G 5.0 11.9##person opens the refrigerator door.\nCD11G 5.0 11.9##person opening a refrigerator.\n43OXO 0.0 4.7##a person awakens.\n43OXO 6.9 15.1##person puts a small box on top of the notebook.\n43OXO 2.2 7.9##person sits up on the couch.\nO9WFN 0.0 6.6##a person is  opening a door.\nO9WFN 8.0 16.3##person pouring coffee into a cup from a thermos.\nO9WFN 0.0 6.6##a person opens the door to their closet.\nFQLS1 6.8 13.1##person smiling for a camera.\nFQAAB 28.3 37.0##person close the door.\nFQAAB 0.0 6.3##a person runs up the stairs.\nFQAAB 28.3 37.0##person they are closing the door.\nFQAAB 0.0 6.3##a person is running through the door.\nFQAAB 24.9 32.4##person they take a phone from their pocket.\nXJH5D 25.8 30.8##person puts it on a table.\nXJH5D 9.1 14.1##a person is sneezing.\nVE52Z 4.4 10.7##a person walks in the room eating a sandwich.\nVE52Z 26.0 36.0##person throw the sandwich on the floor.\nVE52Z 30.7 36.0##the person throws the food to the floor.\n8E5AD 21.3 33.0##person they begin eating.\n8E5AD 21.3 33.0##person eats it.\n8E5AD 21.3 33.0##person starts eating sandwich.\n1KDFH 13.9 23.4##a person is sneezing.\nC278V 28.6 32.0##a woman is sitting on a sofa folding laundry.\nC278V 28.6 32.0##a man takes a pile of clothes.\nC278V 7.6 14.8##one person is putting clothes on the table.\nC278V 7.6 14.8##person puts them on the table.\n9TL3J 22.2 30.3##person they drink a glass of water.\n9TL3J 31.9 36.9##person turns off the light.\n9TL3J 0.0 5.7##a person is washing dishes.\n9TL3J 31.9 36.9##person turning off the light.\n9TL3J 31.9 36.9##person turn off the kitchen light.\n9TL3J 0.0 5.7##a person washes dishes.\nIWMW1 6.5 12.3##a person is drinking a glass of water.\nIWMW1 12.2 25.8##person they tidy some dishes off the floor.\n561H5 0.0 12.0##person holding a towel.\n561H5 12.9 18.8##eating a sandwich as the person does so.\n3W31X 22.7 27.0##person puts groceries on table.\n3W31X 21.0 27.0##a person is laughing.\nCH8XJ 13.5 20.1##person open the closet.\nCH8XJ 16.9 25.4##the person starting throwing shoes into their closet.\nCH8XJ 16.9 25.4##person throw shoes inside.\nE661I 6.4 13.8##another person is running in shoes.\nE661I 6.4 13.8##person runs to another room.\nE661I 0.0 3.5##the first person keeps sneezing.\nE661I 0.0 3.5##a person is sneezing.\n1VMZM 0.8 8.8##a person opens a door.\n1VMZM 22.8 28.3##person runs out.\n1VMZM 4.9 14.3##a person walks into their laundry room holding a vacuum.\n1VMZM 12.2 23.3##person throws some clothes into a bin.\n1VMZM 22.8 28.3##person run out of the room.\nV24A5 18.2 23.8##the person puts down the food.\nV24A5 21.6 31.0##person walks through the doorway.\nGP5CT 15.8 31.0##person they drink a glass of water.\nGP5CT 12.3 17.4##a person is laughing.\nR4FOQ 0.0 3.0##a person is opening a cabinet.\nGMTL9 19.1 29.9##person drinking from a glass.\nGMTL9 14.2 20.7##the person was eating a sandwich.\nNFXPI 21.6 31.0##person washes a dirty mirror.\nWU8I6 6.5 16.0##person pours medicine out of a bottle.\nUF91R 9.9 14.3##person walk over to the refrigerator to open it.\nUF91R 7.3 12.1##person close the laptop.\nUF91R 0.0 10.8##a person started out on their laptop completing homework.\nPUY9Q 12.6 19.4##a person is in a kitchen putting food away.\nZS66D 15.4 24.1##the person takes a drink from a bottle of water.\nZS66D 0.0 9.0##a person is laughing.\nZS66D 10.7 16.0##person puts the bag down.\n10LP3 11.2 16.1##person throws it on the floor.\n10LP3 0.0 3.8##person walking through a doorway.\n10LP3 11.2 16.1##person throwing it on the floor.\n8CJML 17.6 30.0##person snuggle with a pillow they got from a table.\nONA0S 9.5 19.5##person opening the doorknob.\nONA0S 9.5 19.5##person is opening a wooden door.\n5Q8C7 22.9 31.0##person takes a picture on their phone.\n9A5MP 9.3 25.6##the person eats the snack.\n9A5MP 26.5 34.0##person closes the door.\n9A5MP 0.0 15.3##a person tidying the area with a broom stops.\n9A5MP 9.2 22.3##person takes a bite of food removed from a bag.\n9A5MP 0.0 15.3##a person uses a broom to tidy up the garage.\nR6H5P 7.0 13.4##person gets up smiling.\nR6H5P 4.0 10.0##a person throws a lot of clothes into a chair.\nR6H5P 3.5 9.1##a second person walks through the door holding dishes.\nR6H5P 3.5 9.1##another person holding dishes comes in the door.\nMLDGN 6.1 11.5##person start watching the picture.\n80E3X 0.0 10.8##a person awakens.\n80E3X 16.1 31.0##the person looks at a picture hanging on the wall.\n80E3X 16.1 31.0##person looking at a picture on a wall.\n80E3X 8.8 14.1##person turn on a light.\n80E3X 19.0 31.0##person begins eating a bag of chips.\n80E3X 8.8 14.1##the person turns on the light.\n80E3X 19.0 31.0##person begin eating.\n80E3X 0.0 10.8##a person awakens in bed.\nWNW0S 0.0 11.7##the person can run with a broom.\nWNW0S 0.0 11.8##a person runs around the room holding a broom.\n4HFN2 27.5 38.0##person they begin cooking.\nAFTMI 32.3 37.8##person take a pillow off a shelf.\nAFTMI 32.3 37.8##the person takes a pillow from the shelf.\n1X9A1 20.6 29.4##person take some medicine.\nZDFOL 12.2 17.1##person puts the book down very hard on the desk.\nZDFOL 12.2 17.1##holding the book the person decides to put on shoes.\nZDFOL 0.0 4.3##a person reading a book.\nI0IW5 13.0 19.0##person sits on the couch.\nI0IW5 2.4 10.3##person a boy comes into the room eating a sandwich.\nI0IW5 5.5 10.3##person puts the sandwich on the table.\nI0IW5 5.5 10.3##person puts it on the table.\nI0IW5 2.4 10.3##another person walks in eating a sandwich.\n0NZVB 11.5 17.7##a person is drinking from a glass.\n0NZVB 36.9 40.9##person close the door.\nBFW9A 9.0 14.0##person closing the window.\nWJNJJ 6.8 12.2##a person is watching television.\nWJNJJ 0.9 10.6##a person is standing in a closet holding a doorknob.\nWJNJJ 6.8 12.2##person they are watching television.\nJY6TC 0.0 6.8##a person awakens in their bedroom.\nZH4JE 0.0 9.4##person reading a book.\nZH4JE 30.9 35.0##person opens that book.\nIJ01G 0.0 5.4##a person opens a door.\nIJ01G 0.9 5.6##person closes the door.\nTF6P8 4.8 14.0##a person puts a box in a closet.\nE5WJJ 19.4 28.9##person putting a picture on the wall.\nE5WJJ 28.6 41.5##person put their shoes on.\nE5WJJ 37.5 45.0##person they run out.\nE5WJJ 37.5 45.0##a person is running toward the sofa.\nE5WJJ 27.9 41.8##person they sit on a chair.\nE5WJJ 37.5 45.0##person running out the door.\nE5WJJ 28.6 41.5##person put on their shoes.\nE5WJJ 28.6 41.5##person putting on some shoes.\nZ97SD 15.2 20.1##the person walks through a doorway.\nZ97SD 27.4 32.0##person eats it.\nZ97SD 18.1 24.1##person opens the refrigerator.\n5GWS2 25.2 33.0##person start fixing their hair.\n5GWS2 19.2 24.6##person they put down the book.\n34IUI 12.3 17.2##person throws back a blanket.\nGEJPM 29.1 34.3##person closes the cabinet.\nGEJPM 1.1 7.2##a person is opening a cabinet.\nGEJPM 12.2 16.8##a person puts the dishes on the table.\nBZ4K7 6.0 12.0##other person with cup in hand drinking.\nI8LEO 9.6 20.5##person sneezing on a doorknob.\nZI3ED 3.2 9.7##person puts a broom down.\nZI3ED 5.4 10.5##the person throws the broom aside.\nZI3ED 0.0 5.5##a person runs their home office carrying a broom.\nZI3ED 0.0 5.5##a person runs into a room.\nOR3G4 0.0 9.3##one person grasps a towel to put over a shoulder.\nOR3G4 0.0 9.3##the person puts a towel over their shoulder.\n6QSON 12.8 18.1##person puts it on the table.\n6QSON 15.5 24.3##person open a bag containing groceries.\nN8XDV 8.8 16.1##this person takes a look out the window.\nN8XDV 8.8 16.1##the person turns to look out the window.\nN8XDV 1.8 7.9##person eating a sandwich.\nN8XDV 8.8 16.1##person looks out the window.\nI9SSV 16.5 28.0##a person is sitting on a chair.\nI9SSV 20.2 25.8##person puts on a pair of shoes.\nI9SSV 20.2 25.8##person puts their shoes on.\nI9SSV 16.5 28.0##another person is sitting on a chair at a desk.\nI9SSV 16.5 28.0##another person is sitting in a chair.\nI9SSV 4.8 10.8##person eats it.\nAM3R2 8.8 14.8##the person throws the pillow down.\nAM3R2 0.0 10.4##a person runs around the room with a blanket.\nAM3R2 0.0 10.4##a person runs around a room holding a pillow.\nAM3R2 8.8 14.8##person throwing the pillow on the ground.\nEYQ6U 78.6 99.3##person is watching television.\nEYQ6U 81.8 90.1##person eating a sandwich.\nEYQ6U 32.6 43.1##person pouring soda into glass.\nMRSYL 0.0 7.6##person holding a bag of groceries.\nMRSYL 0.0 4.5##a person runs into their study.\nFX7ZY 16.2 21.0##person proceeds to throw the box on the floor.\nFX7ZY 2.0 7.0##person they begin opening the box.\nFX7ZY 16.2 21.0##person throwing it to the floor.\n14A2O 0.0 6.8##person eating one throws a picture on the floor.\n14A2O 0.0 6.8##another person eats.\n14A2O 0.0 13.1##person looking at a picture.\n14A2O 0.0 6.8##another person is eating a sandwich.\nI79Q6 0.4 8.1##person putting a box in.\nI79Q6 1.2 8.1##a person walks to refrigerator opening it.\nI79Q6 13.2 21.3##person pretends to pour it into cup.\nI79Q6 13.2 21.3##person pour themselves a glass of juice.\nI79Q6 0.4 8.1##person puts the box in the refrigerator.\nESTDK 27.7 33.0##person puts the box away.\nESTDK 27.7 33.0##person putting the box back.\nESTDK 0.0 9.2##person opens the cabinet.\nESTDK 0.0 9.2##a person opens up the cabinet.\nESTDK 21.0 27.2##the person puts the glass down.\nD9UO2 4.9 10.5##the person was holding a bag of new clothes.\nA0CJL 15.9 21.9##person closes the laptop.\n5LH8B 0.4 10.9##a person smiles as they look into the mirror.\nPV1WX 0.0 11.1##a person is tidying the clothes.\nJZ9L4 16.3 30.6##the person begins holding a towel to put away.\nWJL39 0.0 11.0##the person is finishing dressing.\nWJL39 22.0 29.2##person opening a door.\nBB5DY 15.1 20.9##a person is seen putting their homework on the table.\nBB5DY 18.4 25.8##person take a blanket.\nNUSKJ 0.0 8.0##person someone walks through their kitchen talking on the phone.\nNUSKJ 0.0 8.0##person talking on the phone.\nVKLP7 0.0 6.3##a person runs to the sink.\nVKLP7 0.0 6.3##a person is running up to the kitchen sink.\n7EEF0 2.7 12.6##person start smiling at a picture that is near by.\n2SKOA 8.0 20.4##a person puts a pillow.\n2FL0X 1.0 6.8##a person is running down the hallway.\n2FL0X 2.8 9.6##person opens the door.\n2FL0X 1.0 6.8##the person runs to the basement.\n2FL0X 2.8 9.6##person opens a door.\nIHLXC 0.0 8.1##person begins snuggling up to a blanket.\nIHLXC 1.3 7.2##person lies down on the sofa.\n24B2K 8.0 20.9##person eats a sandwich.\n24B2K 8.0 20.9##person eating a sandwich.\n24B2K 34.7 47.9##person snuggles with a blanket.\n24B2K 34.7 47.9##person start snuggling up to a blanket.\nMNNDB 16.5 22.2##person they stand up.\nMNNDB 15.0 23.1##person they leave holding a bag.\nMNNDB 15.0 23.1##person leave the room holding a bag.\n8GXNA 28.0 33.0##person closing the door.\n8GXNA 0.0 8.0##a person is holding a bag.\n8GXNA 7.8 13.1##the person takes the clothes out.\nJ4U86 28.3 36.2##person stops to take some medicine.\nJ4U86 21.7 27.6##the person laughs.\n6YZQO 15.0 26.0##person walking to look out a window.\n6YZQO 6.0 11.0##person puts the pillow on the bed.\n6YZQO 8.2 18.2##person takes a picture of the outside with their phone.\n6YZQO 10.0 15.0##person holds a phone.\nFTG07 8.5 17.1##the person opened the door.\nFTG07 8.5 17.1##a person grabbed dishes opened the door left briefly.\nUGF6Q 11.1 18.2##the person puts the book down on the shelf.\nUGF6Q 9.2 14.5##a person read a book.\nUGF6Q 11.1 18.2##person put the book in a cupboard.\nUGF6Q 9.2 14.5##person standing in a room reading a book.\nUGF6Q 16.8 23.0##person take a blanket out.\nEDKXT 10.6 15.0##person they start drinking from a glass of water.\nIM4UD 0.0 8.3##a person is undressing.\n8XC4G 1.7 8.9##person laughing at a book they're reading.\n8XC4G 5.1 11.8##person take off blankets.\n88TCK 24.7 32.0##person eat it.\n88TCK 24.7 32.0##person starts eating something that is sitting on it.\nT9BED 0.0 5.7##a person opens a closet door.\nT9BED 14.6 22.9##a person is drinking water out of a glass.\n7M1D0 21.2 29.0##the person tried sneezing in the sink.\n7M1D0 7.2 17.1##a person is putting a towel into a dryer.\n099Y1 19.7 27.3##person closing the door.\n099Y1 3.0 10.8##person opened a door.\n5J9HP 0.0 7.0##a person runs into the kitchen.\n5J9HP 20.8 27.2##person begins eating it.\n5J9HP 0.0 7.0##the person runs into the room.\n5J9HP 20.6 28.1##person takes the medicine.\n14JPP 21.0 33.0##person undressing in front of a mirror in the bedroom.\n7VMDP 10.2 16.1##person puts a box on the table.\nA18EX 17.3 31.0##another person is laughing at a doorknob.\nA18EX 18.7 31.0##person #2 stood near the bed smiling at person #1.\nT2J3M 13.1 25.4##person puts clothes in a wardrobe.\nT2J3M 13.1 25.4##person putting clothes in the wardrobe.\nT2J3M 9.2 15.8##a person is opening the door with the doorknob.\nT2J3M 9.2 15.8##person opens a door.\nAZC1I 20.3 32.0##person sit in the chair.\nAZC1I 20.3 32.0##person sits on chair.\nU2VK5 14.4 27.2##person standing by door with groceries starts smiling.\nU2VK5 9.5 24.9##a person walks through a doorway holding a box.\nDQGYG 0.0 16.1##a person is sitting in a chair smiling.\nDQGYG 0.0 16.1##a person sits on a chair.\n2LTCY 14.2 22.2##a smiling person is grasping their falling towel being worn.\n2LTCY 17.6 23.1##person grabs phone takes selfie pictures.\n2LTCY 7.7 13.2##person they take their phone.\n069GJ 15.2 25.0##a person is smiling.\n0BLSL 0.0 8.3##person go back to cooking.\n0BLSL 0.0 8.3##a person stands at the stove cooking some food.\n0BLSL 0.0 8.3##a person is cooking at a stove.\n2U0QT 20.4 25.1##person they close the cabinet.\n2U0QT 11.7 17.1##person watch some television.\n2U0QT 2.3 7.2##a person opens a cabinet next to a television.\n2U0QT 6.2 11.9##person they take a glass of water.\n2U0QT 20.4 25.1##person close the cabinet door.\n2U0QT 20.4 25.1##person closes the door.\n2U0QT 2.3 7.2##a person opens the cabinet door.\n2U0QT 11.7 17.1##person watching television.\n2U0QT 6.2 11.9##person takes a glass of water.\n39TDM 24.3 33.0##person begins sneezing.\nOK2AF 0.0 14.1##a person watches television.\nOK2AF 0.0 14.1##a person is sitting down watching television.\nOK2AF 9.0 20.0##person the door opens.\nOK2AF 9.0 20.0##another person opens a door.\nOK2AF 0.0 14.1##a person is sitting in a chair watching television.\nOK2AF 23.0 30.0##person takes a book out from a chair.\nWRFZW 5.3 14.6##the person pours water into a glass.\nWRFZW 5.3 14.6##person pours some water in a cup.\nQY75H 9.8 21.9##person proceeds to pour a cup of coffee.\nRHVM2 7.0 16.7##person down to look out the window.\nRHVM2 7.0 16.7##person keeps watching out the window.\nRHVM2 0.0 7.0##a person is playing on their phone.\nRHVM2 7.0 16.7##person looks out a window twice.\n1Y09V 4.5 10.3##person drinking coffee from a cup.\n1Y09V 4.5 10.3##a person drinks from a cup of coffee.\n0M1X0 0.0 10.1##a person starts to undress.\n0M1X0 6.1 14.6##person put their clothes on a chair.\n0M1X0 0.0 10.1##a person is undressing by a chair.\nIKQLJ 47.4 53.6##person drinks a cup of coffee.\nDPCGS 2.4 9.8##person eat their sandwich.\nGO761 14.3 19.0##person turns off the light.\n2G59W 3.8 8.6##person they put their phone away.\n2G59W 3.8 8.6##the person puts the cellphone down.\nNU0UK 0.0 9.1##person sitting at a table.\nNU0UK 0.0 9.1##one person is sitting at a table drinking coffee.\nNU0UK 0.0 9.1##the other person is sitting at the table drinking coffee.\nHETLN 5.5 13.0##the person is smiling as they drink from the cup.\nJIGAJ 27.7 34.0##person closes the door.\nJIGAJ 27.7 34.0##person closing the door.\nJIGAJ 26.2 32.0##person turning off the light.\nWTJQ0 5.9 12.8##another person opens the door.\nWTJQ0 0.1 7.3##a person puts a plate of food on a table.\nWTJQ0 0.1 7.3##a person is putting food on a coffee table.\nSMLI0 2.7 8.3##person they put the picture down.\nY6MUU 30.5 37.6##person open a door.\nLOSLI 10.4 15.5##person starts sneezing.\nNLU6W 0.2 14.5##a person is holding a pair of shoes.\nI0THD 22.1 32.0##a person is sneezing as the turn the doorknob.\nAXYF9 2.9 13.7##person one is eating a sandwich.\nAXYF9 2.9 13.7##another person is eating a sandwich.\n9KGOL 16.8 24.7##person they take a glass.\nUMXKN 12.2 22.3##person put the clothes in the hamper.\nG0BKH 7.8 24.3##person turn off the light in their closet.\nG0BKH 21.9 30.7##person they put a pillow into it.\nG0BKH 7.8 24.3##person turns off the closet light.\nSY1JE 10.5 17.2##the person walks out of the room through a doorway.\nSAFT3 2.8 10.0##a person sits in a chair.\nSAFT3 2.8 10.0##person they sit down in the chair.\nT832F 6.1 10.8##person is seen throwing the folded blanket on the bed.\nQXI52 0.0 4.7##person watching television.\nOUH2U 8.3 16.7##person closes the door.\nOUH2U 8.3 16.7##person closes the door behind them.\n42MC3 18.5 25.0##person eats a sandwich.\n42MC3 0.0 3.2##person closes a door repeatedly.\n42MC3 18.5 25.0##person off repeatedly.\n42MC3 9.2 16.0##person turning a light  off.\n42MC3 10.5 16.8##person turns a light switch on.\n42MC3 0.0 3.2##person closing a door.\nIST7I 18.4 32.8##person eating food out of box.\nIST7I 18.4 32.8##person eats some food.\nIST7I 18.4 32.8##person begin eating the crackers.\nIST7I 0.0 4.2##person they open a box of ritz crackers.\nBZ5AU 1.2 16.0##a person is dressing in front of the mirror.\nRV11J 33.1 41.0##the person puts their camera away into a bag.\nRV11J 33.1 41.0##person put the camera into it's bag.\n2RU6J 16.7 25.0##then person a lays down on the floor.\n07LG5 2.4 13.3##a person is running.\n07LG5 7.3 21.1##person closes the fridge door.\n07LG5 7.3 21.1##person walks to a closet closing the door.\n07LG5 7.3 21.1##person closes the cabinet door.\nTS2TD 29.4 35.0##person open the first book to start.\nTS2TD 28.9 35.0##person read a book.\n0RJ18 9.7 15.8##person putting it on a table.\nS6W5T 17.2 27.0##the person takes off their shoes.\nLI5VF 0.0 7.5##a person tidy's some hanging clothes.\nLI5VF 6.7 19.3##person puts bag with pillow in sink.\nLI5VF 18.1 28.2##person starts laughing.\nSG99Q 19.5 31.0##person sits down in a chair.\nSG99Q 19.5 31.0##person sitting down in a chair.\nN0KQ7 19.9 27.0##person put on their shoes.\nZ4Y02 10.3 18.2##person they close the door.\n01O27 0.5 6.6##person but the door won't open.\n01O27 5.1 11.5##person closes the door behind them.\n01O27 0.5 6.6##person opens the bathroom door.\nC3JAS 14.6 22.3##person start sneezing.\nJRSPH 0.0 14.2##a person sitting in a chair takes off their shoes.\n1WWJZ 9.7 15.7##person drink out of a glass.\nAI6KJ 5.0 12.3##person puts their bag down.\nAI6KJ 11.6 18.4##person closing the door behind them.\nAI6KJ 5.2 12.3##a person puts a bag onto the table.\nKENG1 29.3 38.0##person pours a glass of water.\nKENG1 5.3 12.1##the person puts on their shoes.\nKENG1 5.3 12.1##person puts the shoes on.\n3H09L 13.0 24.4##person opens a window.\n3H09L 2.9 15.0##person one holds a pair of shoes.\nUMOE4 6.2 11.7##another person suddenly comes running through.\nUMOE4 6.2 11.7##another person runs across the room.\nIK8PA 21.2 31.7##person puts it on a shelf.\nIK8PA 9.5 21.6##a person is sneezing.\nZCOSY 16.3 31.0##person turn the light on.\nZCOSY 16.3 31.0##person fixing a light.\nZCOSY 16.3 31.0##the person turns on the light.\nFTWBB 0.0 6.1##person sitting on a chair laughing.\nFTWBB 0.0 6.1##laughs as another person plays.\nVWN13 7.5 14.0##person holds their phone as they grab the closet doorknob.\nVWN13 7.5 14.0##person open/close the door as if playing hide.\nCNSMI 30.8 37.7##person take off their shoes.\nPIJCA 7.1 18.2##a person is undressing.\nJ4VCR 10.4 21.5##person starts eating them.\nJ4VCR 10.4 21.5##person eating food.\nNDLY5 0.0 8.1##person snuggling a pillow close to their chest.\nNDLY5 17.3 29.7##person begin undressing out of their pajamas.\nJO6GB 39.1 43.0##person put it in a bag.\nJO6GB 37.6 43.0##person open their bag.\nB17UQ 1.0 11.8##a person is sitting on a sofa watching television.\nB17UQ 4.3 12.3##the person puts the remote on the table.\nCUB69 0.0 7.7##person sitting in a chair eating food out a plate.\nCUB69 0.0 7.7##a person is eating at a table.\nNAWO1 5.0 10.2##the person is holding their phone.\nM7Y6V 20.9 33.0##a person eating food is watching something outside the window.\nM7Y6V 20.9 33.0##person eating the food.\nM7Y6V 20.9 33.0##the person was eating the food that was in hand.\nI8BC5 7.7 16.7##a person walks into the entryway eating a sandwich.\nI8BC5 8.0 17.0##a person walks in eating something.\nZLRFB 21.0 37.0##person begins to dress.\nZLRFB 21.0 37.0##person starts getting dressed.\nZLRFB 11.0 20.5##person watching television.\nZLRFB 11.0 17.2##the person laughs at something on the tv.\n8V97G 17.9 26.0##person opens a nearby door.\nBZ0YN 27.2 31.0##person turns to start cooking at the stove.\nP9R08 13.0 18.0##person fixes hair.\nP9R08 14.4 32.0##a person holding a picture looks into a mirror.\nP9R08 13.8 22.1##person they put the picture on a shelf.\nYUOVC 5.8 18.8##person gets dressed.\nYUOVC 5.8 18.8##person is frantically dressing.\nYUOVC 1.9 7.7##person takes some clothes off the floor.\nYUOVC 5.8 18.8##person redress in another item.\nYUOVC 5.8 18.8##person they undress.\nRJDH2 17.0 26.6##person throws the pillow against the wall.\n3EDV7 2.6 10.4##a person tosses clothes into their washer.\n3EDV7 2.6 10.4##a person puts some clothes in the washing machine.\nJOLLV 0.0 7.7##a person is snuggling under a blanket.\nEKPAQ 0.0 13.0##a person is sneezing by a shelf.\nNSUHV 12.4 17.8##person puts a sandwich into a bag on a table.\nNSUHV 9.0 15.7##person they take a bite of sandwich.\n52FNN 10.1 21.9##person pours water into a cup.\n52FNN 24.6 29.9##a person is holding a sandwich they.\n52FNN 28.7 33.0##person walks through a doorway.\n52FNN 2.4 6.8##a person puts a sandwich on a table.\nH8BTR 17.4 23.8##person pours water into a cup.\nH8BTR 2.2 8.0##a person takes a blanket.\nH8BTR 22.4 31.0##another person is drinking a glass of water.\nWQQ4Q 15.8 20.8##person take some food out of the refrigerator.\nWQQ4Q 0.0 11.8##a person washes some dishes in a sink.\n5RY3S 8.6 15.7##the person holds a sandwich.\nYT9AL 3.9 15.6##the person puts on  shoes.\nYT9AL 46.1 53.8##person laughing on their phone.\nYT9AL 1.7 29.2##person talking on the phone.\nYT9AL 41.3 47.6##person they are smiling.\nYT9AL 3.9 15.6##there the person puts on shoes.\nVZY0C 2.0 9.0##person running to a bed.\nVZY0C 2.0 9.0##a person was running to go get the groceries.\nVZY0C 2.0 9.0##person runs into the bedroom.\n7ELBG 21.6 31.2##person takes some picture.\n7ELBG 23.1 31.0##person a flashlight from the box.\n7ELBG 23.1 31.0##person pulls out a light.\n7ELBG 23.1 31.0##person they turn on the light.\n7ELBG 10.0 18.4##the person puts a box on the table.\nXKPLB 0.3 5.2##person quickly open the door.\nXKPLB 18.1 23.2##person starts running.\nCH0PM 5.3 9.9##person they turn the light off.\nCH0PM 21.9 30.3##person they take their shoes off.\nCH0PM 1.4 9.3##a person opens a door.\nCH0PM 1.4 9.3##person they open the closet door.\nCH0PM 8.8 24.0##person begin undressing.\nCH0PM 8.8 24.0##a person is undressing in the closet.\n7Z69Y 20.9 29.7##a person hold a bag in a closet.\n7Z69Y 38.5 58.0##a person gets dressed in a closet.\n7Z69Y 38.5 58.0##person starts dressing.\n7Z69Y 36.2 42.5##person sit down on a chair.\n7Z69Y 36.2 42.5##person sitting on a chair.\nICALV 0.0 6.2##one person is eating the remains of a sandwich.\nICALV 0.0 6.2##one person is eating.\nICALV 0.0 6.2##one person is eating a sandwich.\nW8WRK 0.0 9.9##person cooking food in a pot.\nW8WRK 0.0 9.9##a person is cooking on a stove.\nW8WRK 0.0 9.9##person during the cooking process.\nW8WRK 0.0 9.9##person returns to cooking.\nW8WRK 0.0 9.9##a person standing at a stove cooking.\nDC94A 2.1 8.1##person putting away groceries.\nDC94A 0.0 5.5##a person is opening a cabinet.\nDC94A 16.2 26.7##person sits in the chair.\nDC94A 2.1 8.1##a person puts groceries inside a cupboard.\nVKTYD 2.8 11.0##person closes the door.\nVKTYD 12.1 19.8##person a glass sits down on the couch.\n3YC35 28.7 36.0##person hold th edoorknob.\n3YC35 13.4 26.1##person drinking from a glass.\n3YC35 0.8 17.4##a person is tidying the floor with a broom.\nLKQQO 2.0 11.2##a person is seen putting coffee on a table.\nB0MFE 0.0 8.4##a person walks through a doorway holding some towels.\n6PYRZ 1.8 6.0##a person throws a pillow on the floor.\n6PYRZ 0.0 7.0##person holding a dish.\n6PYRZ 9.1 23.0##person sneezing unto a plate of food in a hallway.\n6PYRZ 1.8 6.0##a person is throwing a pillow.\n974PN 0.0 8.4##person smiling as they watch something on their laptop.\nTR0TO 9.5 14.8##the person puts the sandwich down.\nT5MLJ 24.6 33.7##person start laughing out of uncontrollable rage.\n6AHBW 3.8 14.5##a person is drinking a glass of water.\n6AHBW 0.0 7.5##a person is sitting at a table eating a sandwich.\n6AHBW 3.8 14.5##person drinking water from a glass.\n6AHBW 0.0 6.6##a person is eating something.\n6AHBW 0.0 7.5##person eating a sandwich.\nT5E2T 37.6 44.6##person eating a muffin.\nT5E2T 12.4 21.5##a person is awakening from a bed.\nYH85Z 15.4 25.1##person takes out a bag of food.\n4BSR0 0.0 10.3##person pouring coffee from one cup to another.\nTVCQF 12.0 17.0##another person is opening a box.\nAAJI0 10.8 20.6##person opening the window in the garage.\nAAJI0 10.8 20.6##person open a window.\nAAJI0 1.0 11.8##person takes off shoes.\nAAJI0 1.0 11.8##person they take off their shoes.\nJ5ZZQ 12.3 16.5##person turns the light on by the doorway.\n3064K 0.0 13.3##a person is sitting on a couch folding laundry.\nRE9O1 14.4 24.3##person closing the door.\nRE9O1 10.9 22.2##a person walks through a doorway.\n0XRD1 0.0 7.4##the person closes the book.\nSLIH4 13.0 17.9##person closing the door.\nSLIH4 10.8 15.5##person they walk over to the doorway.\nSLIH4 13.0 17.9##person closing the door behind them.\nQLWQ4 21.4 43.4##a person is putting clothes in a box.\nQLWQ4 4.2 14.2##person put a blanket in a basket.\nGT53K 6.0 12.0##person turns on the light as keeps eating.\nGT53K 6.0 12.0##a person walks to a light.\n66J84 15.5 26.4##a person is laughing in the garage.\n66J84 15.5 26.4##person walks into the room laughing.\nFD9A5 12.2 19.0##a person pours coffee into a cup.\nP2JL6 0.3 6.9##the person takes a picture with their camera.\nP2JL6 0.0 6.6##person watching something out the window.\nPT0D1 10.4 17.0##person turning a light on.\nPT0D1 10.4 17.0##person turns on the light.\nPT0D1 10.4 17.0##the person turns on a light.\nWGJ8T 0.0 6.0##a person gets dressed.\nWGJ8T 0.0 6.0##a person is in a hallway dressing by a table.\nMMGTX 1.0 11.0##a person is holding up clothes for inspection.\nMMGTX 0.0 5.0##person they have taken them out of a box.\nJBJGX 24.6 31.5##person opens the laptop back up.\nU4XV9 10.0 17.9##person they stand up.\nU4XV9 2.5 10.4##a person awakens.\nU4XV9 12.4 26.1##person put on some shoes.\nU4XV9 2.5 10.4##a person lying on a bed awakens.\nU4XV9 12.4 26.1##person puts on their shoes.\nU4XV9 12.4 26.1##the person puts on shoes.\nM704T 11.3 18.6##person sneezing into it.\nEGVGL 19.5 26.9##person look at a picture.\nEGVGL 17.5 23.0##person they open a bag.\n55V6Z 2.2 11.0##person putting dishes in a box.\n55V6Z 16.5 31.0##a person is watching a television.\nNB0S4 20.9 29.2##person puts a bag on a shelf in the wardrobe.\nNB0S4 20.9 29.2##another person puts something on a shelf.\nTIEA9 0.0 3.7##a woman is sitting on a bed smiling.\nWCERV 28.4 32.0##person start working on their laptop.\n3R7NX 26.1 31.0##person opens the door to leave.\n3R7NX 26.5 31.0##the person opens a cabinet.\n3R7NX 26.1 31.0##person opens a door.\nZS9IX 15.3 21.7##person put their laptop on the table in the entryway.\nZS9IX 18.2 32.0##person proceeds to undress from their winter gear.\nZS9IX 9.1 15.9##person takes off their shoes.\nH8F1C 4.9 11.0##person puts down a book.\nH8F1C 0.0 9.3##a person is holding a book.\nH8F1C 0.7 6.1##person she looks at the picture on the wall,smiles.\nH8F1C 7.3 18.0##the person begins undressing.\nXDT45 0.0 11.7##a person awakens.\nAC9NI 21.7 27.9##person walks through the doorway.\nAC9NI 1.0 10.0##person laughing at something on television.\nAC9NI 1.8 12.7##a person sits in a chair.\nAC9NI 21.7 27.9##person walk through a doorway.\nAC9NI 0.0 12.8##person watches television.\nAC9NI 1.8 12.7##person sitting in a chair.\nN0DXI 12.2 19.5##person eating a sandwich.\nHS3XP 9.6 14.0##person turns off the light.\nHS3XP 9.6 14.0##the person turns off the light.\nIC4D5 18.1 25.3##the person starts undressing.\nQCIV0 0.0 7.7##a person is sitting by the stairs eating some food.\nQCIV0 15.2 21.0##person turn on the light.\nQCIV0 15.2 21.0##person turn on a light.\n4FAWP 19.5 32.0##person take a picture of the desk.\n4FAWP 19.5 32.0##person takes a picture of their work.\nKMWCM 28.0 36.2##person eating from a bowl of food in their lap.\nKMWCM 28.0 36.2##person eats it.\nLECWG 24.4 32.0##person opening a door.\nLECWG 0.0 12.5##person dresses into a pair of shoes.\n0O022 13.0 21.8##another person is pouring water into a cup back.\n0O022 0.9 10.1##one person is closing the door.\n0O022 0.9 10.1##a person is closing a cabinet door.\n0O022 0.0 9.7##a person closes a cabinet.\n0O022 13.0 21.8##person pours water from a glass.\n937EW 13.9 24.2##person watches picture.\n937EW 0.0 9.0##a person is putting clothes in a closet.\n937EW 0.0 9.0##person puts clothes away.\n937EW 0.0 5.0##person takes dirty clothes away.\nJCLES 23.6 29.5##person takes a book out of the cabinet.\nJCLES 11.5 16.3##a person opening the cabinet gives a smile.\nLX54K 19.9 33.0##person holds his food.\n0OQVD 0.0 2.6##person drinking coffee from a cup.\n42E9I 31.0 34.0##person closes the door.\nJCGWC 0.0 7.0##a person is closing the refrigerator.\nJCGWC 0.0 7.0##person they close the refrigerator door.\n06OKE 7.0 12.0##person they sit on the sofa.\n06OKE 14.0 20.0##person drinks bottle of water.\n06OKE 8.1 13.7##person put medicine back on a table.\n06OKE 0.0 5.0##person is putting medicine on towel.\n06OKE 0.0 5.0##a person puts a towel on a table.\n06OKE 2.8 10.1##person starts smiling.\nJNWX7 37.0 42.8##the person closes the door.\nNVF2S 16.5 25.0##person take the medicine.\nNVF2S 16.5 25.0##person they take a medicine bottle from the table.\nX5QMG 0.0 11.4##the sitting person fixes the positioning of the chairs.\n9AFSH 11.7 22.0##a person is running towards a blanket.\n9AFSH 3.5 10.7##a person is throwing a pillow onto a chair.\n9AFSH 11.7 22.0##person runs around.\n9AFSH 3.5 10.7##a person throws a pillow on a chair.\nJIWY2 0.0 12.2##a person is seen eating some food.\nJIWY2 16.5 29.0##person look out the window.\nJIWY2 0.0 12.2##a person eats cereal.\nJIWY2 7.0 18.8##person drinks a cup of coffee at the kitchen table.\nJIWY2 0.0 12.2##person eating food out of a plastic container.\n2PMYI 2.5 9.9##person they awaken.\nXHQT1 26.4 34.2##person walks through a doorway.\nXHQT1 27.7 33.4##person opens a door.\nF207R 5.7 12.8##person takes out a book.\nF207R 34.0 42.0##person puts it on the shelf.\n8UQVB 20.6 33.7##a person is watching their laptop screen.\n8UQVB 0.8 6.4##a person is sneezing.\nKTQEL 0.6 11.9##person holding a picture opens the door.\nKTQEL 8.0 23.0##person puts a picture on the shelf.\n004QE 14.2 22.5##person takes a drink from the cup.\n45D5U 25.1 30.7##person puts phone on table.\nZSSNJ 0.0 2.9##a person turns on the light in their pantry.\nZSSNJ 7.0 16.5##person start laughing.\nZSSNJ 7.0 16.5##person sweeps floor takes phone out of pocket laughing texting.\nB2NBR 0.0 8.3##a person runs back.\nB2NBR 0.0 8.3##a man is running through the hallway.\n59CDL 21.7 33.0##person sits down to look out the window.\n59CDL 21.1 33.0##person sits in the chair to stare outside.\n8J5S4 1.5 15.4##a person is seen eating.\n8J5S4 19.4 24.8##person turns off the lights.\n8J5S4 1.5 15.4##a person is eating.\n8J5S4 19.4 24.8##person turn off the nearby light.\nW7EHF 0.0 9.9##a person is standing in a doorway.the open a box.\nW7EHF 16.7 24.0##person put a pillow.\nW7EHF 0.0 9.9##a person is opening a box.\nZOBZV 34.1 40.0##person putting their phone on a shelf.\nZOBZV 34.1 40.0##the person puts the phone down on a shelf.\nRYK18 0.0 5.0##a person is in a bedroom sitting on a chair.\nRYK18 28.2 33.0##person turns off a light.\nRYK18 28.2 33.0##person turning off the light.\nRYK18 16.4 30.2##person start undressing from their clothes.\nRYK18 16.4 30.2##person begins to undress.\nABHC6 17.5 23.9##the person turns off the light.\n50TLF 4.2 10.0##one person takes a bottle of medicine from a box.\n13IJA 5.9 10.9##the person throws the blanket on the floor.\n13IJA 0.0 7.0##the person is sitting down holding a blanket.\n5S2ZU 0.0 18.5##a person is in the kitchen cooking.\n5S2ZU 0.0 18.5##a person is seen cooking on the stove.\nF8A4G 1.8 9.7##a person turns the doorknob to open the garage door.\nF8A4G 1.8 9.7##person opened a door.\nGBPPR 21.3 31.0##person stops to take a drink out of their cup.\nGBPPR 0.0 13.0##person eating some food.\nGBPPR 0.0 13.0##person sitting on the couch eating a sandwich.\nHR6MF 1.6 8.2##person holding a broom.\nHR6MF 0.0 3.8##a person is running laughing at a desk.\nHR6MF 0.0 3.8##a laughing person runs through the hallway.\nHR6MF 9.5 15.7##person starts tidying a table with a laptop on it.\nGIA8M 0.0 14.3##another person is smiling at a pile of clothes.\n8NW4J 10.5 16.6##person putting away dirty clothes in a bedroom.\n8NW4J 0.0 3.1##a person is lying on a bed holding a pillow.\n8NW4J 0.0 3.9##a person is snuggling with a pillow.\nYHPLU 11.5 24.3##person eats them.\nYHPLU 11.5 24.3##one person is eating in the doorway.\nX8DZV 15.6 21.9##person they stand up.\nX8DZV 1.4 8.7##a person turns on a light.\nX8DZV 8.6 17.8##person drinks from a glass.\nX8DZV 16.4 28.6##person opens a box to grab a pillow.\nX8DZV 6.5 12.9##person sits down on a chair drinking some water.\nR3O7U 1.4 19.7##a person is washing a window.\n81YF0 3.3 18.2##a person is holding a towel in the hallway.\n81YF0 20.2 28.3##a person throws a towel onto the floor.\nCAND1 7.1 23.9##a person is washing a glass window.\nM1SRW 21.1 27.1##person they put the camera on a table.\nZV4JV 0.0 11.2##person holding their phone.\nHA1XJ 0.0 3.4##person looks out door window.\nHA1XJ 1.0 7.6##person drinking from a glass.\nHA1XJ 1.0 7.6##person drinks from cup.\nRS9D9 27.3 36.8##person reads a book.\nRS9D9 27.3 36.8##person reading a book.\nRS9D9 1.1 6.4##a person sits on a chair.\nRS9D9 1.1 6.4##person sitting in a chair.\nWI6NB 13.4 26.1##person eats a snack.\nWI6NB 13.4 26.1##person eats cookies.\n1SJQX 0.0 14.3##a person holding a phone picks up some homework.\n1SJQX 0.0 14.3##one person walks in holding a phone.\nZXN6A 3.8 12.5##person drinking a cup of coffee.\nZPNW7 23.7 28.8##a person is walking through a doorway.\nZPNW7 32.2 53.4##a person is snuggling with a pillow.\nECXEX 5.0 12.5##person puts them on the table.\nECXEX 28.7 32.0##person takes towel off of shoulder.\nECXEX 14.5 24.0##the person the takes dishes from a shelf.\nECXEX 4.9 12.3##person puts groceries on the shelf.\nECXEX 5.0 12.5##person puts a plate of food on a table.\n4CV3F 0.0 3.7##person puts on a pair of shoes.\n4CV3F 0.0 3.7##a person puts their shoes on the floor.\n4CV3F 0.0 3.7##person puts the shoes on.\n4VODV 0.0 15.6##a person who is lying on the floor awakens.\n4VODV 29.9 36.0##person eating a sandwich out of the box.\n4VODV 21.2 29.1##the person began to undress.\nP4HXN 26.8 33.3##person puts the laptop back on the clothes.\nTNOBD 20.7 31.0##person eating lunch.\nSYMIR 5.3 14.6##a person is standing in the hall undressing.\nUTLNI 9.1 16.9##person open a cabinet.\nUTLNI 0.6 10.1##a person is holding a phone.\nUTLNI 0.0 5.4##a person is playing on their phone.\nVKKIQ 11.4 17.3##person closes the door.\nVKKIQ 0.2 8.4##a person opens a refrigerator.\nVKKIQ 3.6 11.0##the person takes out a bottle of iced coffee.\nVKKIQ 11.2 17.0##person closes the refrigerator.\n5TG5P 0.3 10.0##encounters person b smiling.\nYXPTI 1.3 12.4##a person puts some shoes.\nWXMTI 0.8 8.6##person putting shoes inside.\nWXMTI 0.8 8.6##one person puts a pair of shoes into a bag.\nWXMTI 0.0 3.3##a person is holding a bag.\nJ1EA0 0.0 14.5##a person holds a bag open.\nG4E4S 33.8 57.5##person goes over to wash the clothes.\nG4E4S 17.4 27.8##person goes to sit down to take off shoes.\nG4E4S 17.4 27.8##person take off their shoes.\nG4E4S 33.8 57.5##person begin washing their clothes.\nEAWW4 7.6 15.0##person puts shoes on a shelf.\nEAWW4 3.0 9.4##a person opens a laundry room door.\nMVL2O 15.3 24.4##person they close the laptop.\nMVL2O 20.2 32.5##person stand up.\nMVL2O 35.4 39.0##person finally turning off a light on the stairs.\nMVL2O 35.4 39.0##the person goes up the stairs turn the light off.\n5OCXJ 2.8 15.2##a person awakens in the living room.\n8BA61 19.3 30.5##person eat a sandwich.\n8BA61 19.3 30.5##person eats a sandwich.\n8BA61 19.3 30.5##person eat a snack.\n8AZRX 28.5 33.8##person turn off the light.\n8AZRX 15.3 23.2##person throws some clothes in a bag.\nH4YTC 27.3 32.9##person turns off the light.\n7ICIA 8.8 16.5##person closes the door.\nEIKUN 5.5 11.7##a person puts a box of groceries onto the table.\n2XSK6 22.5 30.8##person they sit in a chair at a desk.\n2XSK6 9.7 18.2##person closes the door.\n2XSK6 9.7 18.2##a person closes the door to the office.\n2XSK6 0.4 6.2##person they open the door again.\n2XSK6 0.4 6.2##a person opens a door.\n2XSK6 9.7 18.2##person close the door.\n2XSK6 22.5 30.8##person sits down in a chair at a desk.\nQQUU5 3.5 10.1##person close the front door.\nQQUU5 3.5 10.1##person closes the door.\nQQUU5 0.0 4.8##a person is drinking a cup of coffee.\nQQUU5 1.1 6.4##person they put the coffee down on the table.\n58VZI 16.5 23.4##person puts a pillow on the bench.\n58VZI 0.8 14.0##person drinking a glass of water.\n75ZOJ 0.0 12.0##person looking through papers/book.\n75ZOJ 14.1 20.6##the person drinks from a water bottle.\n75ZOJ 14.1 20.6##person drinks from a water bottle.\nW25MK 20.5 25.4##person they close the book.\nMBSW4 5.4 12.4##person they open the box.\nMBSW4 8.4 14.6##person take out clothes.\nFN71T 20.0 28.4##person they take a pile of clothes.\n18FTZ 25.0 33.0##person goes into the kitchen to eat something.\n18FTZ 25.0 33.0##a person is eating over a sink.\n4ZJSI 6.5 17.4##person opens a door.\nJWPS5 0.0 14.6##person eating a sandwich they stand up.\nJWPS5 0.0 14.6##a person is eating a sandwich.\nP4AEF 0.2 8.5##a person awakens from sleep.\nP4AEF 0.2 8.5##person covered in a blanket awakens in a bedroom.\nJCBDT 25.9 31.0##a other person is holding a picture laughing at it.\nJCBDT 19.5 32.0##person sitting on a bed.\nUBDB5 1.1 6.2##a person throws a blanket on the ground.\nUBDB5 1.1 6.2##a person throws a blanket into the corner.\nD6D85 19.0 27.4##a person is  eating a sandwich on a chair.\nRWPS8 17.8 24.3##person they put the shoe on a counter.\nRWPS8 17.7 24.3##person starts smiling.\nRWPS8 20.5 29.0##person begin to laugh when they see a picture.\n0H5VC 21.4 33.0##person begins snuggling into their blanket.\n0H5VC 14.7 19.8##person they close the book.\n44HW5 9.5 16.7##a man runs into the room.\nJ6P6H 9.5 17.4##the person starts eating a sandwich.\nJ6P6H 9.5 17.4##person eating a sandwich.\nJ6P6H 17.2 23.0##the person stands up to turn off their light.\nHJH7H 11.0 16.0##throws a pillow at a person.\nWK5PL 6.4 12.4##a person is closing a closet door.\nWK5PL 6.4 12.4##person closing the door.\n4AQZ2 0.4 14.8##one person puts groceries in a small refrigerator.\n1ELWC 22.3 28.0##person runs through the bathroom door.\n1ELWC 22.3 28.0##person runs away.\n1ELWC 1.6 9.4##person closes medicine cabinet door.\n1ELWC 0.0 4.7##person opens medicine cabinet door.\n1ELWC 0.0 4.7##a person is opening a cabinet in the bathroom.\nE8468 22.1 32.0##person pours coffee in a cup.\nE8468 11.5 20.7##person closes the door.\nE8468 22.1 32.0##person they pour a cup of coffee.\nE8468 0.0 12.9##a person is holding a picture.\nE8468 11.5 20.7##person close the door.\nHQUHP 9.7 16.7##person turns on the light.\nHQUHP 9.7 16.7##person turned on a light.\nHQUHP 9.7 16.7##person turns on a light.\nMZOPX 23.6 37.0##person washes a glass they used earlier.\nMZOPX 23.6 37.0##person begins washing a glass.\nQ6IU9 28.6 33.0##person they put the sandwich back on the ledge.\nQ6IU9 12.0 18.3##person they close the laptop.\nQ6IU9 19.3 27.3##person eat it.\nQ6IU9 19.3 27.3##person which they began eating.\nQ6IU9 15.1 22.3##person takes out a sandwich.\nQ6IU9 12.0 18.3##the person closes their laptop.\n7UV4O 5.4 13.5##a person puts two pillows on a bed.\nDZNYK 17.8 29.0##person laughs at what is inside.\nDZNYK 11.9 21.6##the person opens the box.\nDM2HW 10.0 17.9##person takes a box.\nDM2HW 10.0 17.9##person they take a box.\nDM2HW 13.6 22.0##person turn off the light.\nJPUUF 1.5 16.7##a person is in a kitchen holding some dishes.\n2H9YB 20.8 25.8##a person walks to a doorway.\n2H9YB 16.7 21.6##a person is fixing a light.\n2H9YB 26.9 31.6##person they open another door.\n2H9YB 16.7 21.6##person turns on the light.\n2H9YB 16.7 21.6##person turns a light on above the door.\n2H9YB 16.7 21.6##a person replaces a lightbulb above a doorway.\nO0R1A 1.1 8.8##a person is throwing clothes into a laundry basket.\nO0R1A 1.1 8.8##person throws clothes in bucket.\nPRVP0 10.8 17.1##person walks through the doorway.\n"
  },
  {
    "path": "NLQ/2D-TAN/data/Charades-STA/convert_vgg_features_to_hdf5.py",
    "content": "import h5py\nimport os\nfrom tqdm import tqdm\nimport glob\nimport numpy as np\n\nif __name__ == '__main__':\n    data_root = \".\"\n    h5_file = h5py.File(os.path.join(data_root, 'charades_vgg_rgb.hdf5'), 'w')\n    feat_path = os.path.join(data_root, 'Charades_v1_features_rgb/*')\n\n    with open(os.path.join(data_root, 'valid_videos.txt')) as f:\n        valid_vids = [line.split('\\n')[0] for line in f.readlines()]\n\n    pbar = tqdm(total=len(valid_vids))\n    for vid_path in glob.glob(feat_path):\n        vid = vid_path.split('/')[-1]\n        if vid not in valid_vids:\n            continue\n        feats = []\n        for txt_path in sorted(glob.glob(os.path.join(vid_path,'*'))):\n            with open(txt_path) as txt_file:\n                line = txt_file.readline()\n                feat = [float(i) for i in line.split(' ')]\n                feats.append(feat)\n        feats = np.array(feats)\n\n        h5_file.create_dataset(vid, data=feats, compression=\"gzip\")\n        pbar.update(1)\n    pbar.close()\n    h5_file.close()\n"
  },
  {
    "path": "NLQ/2D-TAN/data/Charades-STA/download.sh",
    "content": "wget http://ai2-website.s3.amazonaws.com/data/Charades_v1_features_rgb.tar.gz\ntar -xvzf Charades_v1_features_rgb.tar.gz\npython convert_vgg_features_to_hdf5.py\n"
  },
  {
    "path": "NLQ/2D-TAN/data/Charades-STA/valid_videos.txt",
    "content": "AO8RW\nY6R7T\nIGDIE\n7UPGT\nKBPDM\nIBIWF\n372CC\nN14BK\nNQT1S\nF1VEE\nYDWN5\nQRWQ3\nSFHHR\nHWYTN\nGG4UR\nXDVAY\nMLBTH\nIR31O\nKX8VW\nNVBBD\n4C4LC\nJ4GX8\nHPEE5\nMBGPJ\nNEM29\nSA7GL\n0QA8P\nBWHUX\nKJ8G2\nD87UN\nXJOJL\n67MSU\n9NRLA\nI6NJ6\nKG20W\n68JOO\nQHARF\nP1EK9\nKZSA9\nLQ0LM\nORW6Y\nD8HN1\nBY6ZZ\nT8B7B\nD8OSC\nTGDWN\nX2Q00\nS8TT8\nQG4N1\nAOMNM\nX8MNV\nNHUV1\nNNG97\nA1NKP\nEDXBD\nBW5MF\nUZMMO\nCHBAS\nM2F66\nKMZHU\n0CG15\n9XXJ7\nHKBKA\nN39RU\nE0MK4\nECMQU\nM6LFI\n618HP\nUVEPN\nQ8HQM\nGJJA1\nHMSM8\n3P8NL\nVSS68\nP4DL9\n5TLQE\nLTJEO\nGIIMN\nCBVUS\nDPJH4\nW0RSP\nIH3GN\nVG94P\n92TUQ\nYEHFQ\n1E1VE\n813XE\nU896B\nZS1P1\nFIJ3D\n0G2SC\nTANH9\nWZN0I\n1LARL\nMMFXQ\n9INKU\n0S9KN\n4UYGY\nQUGSS\nWEYV3\nV6IIE\nZHOP3\n1G9R7\nHPAYB\nSKLEN\nL347E\nB5YYS\n2074D\n9PAQ4\n6AJX0\nACMHK\nTQGPM\nAK9IB\nUQW95\nBTW1H\nOE751\nQ3HZI\n4P13T\nVD6P1\nNYDRK\nP2DV7\nTAZGF\n1L376\nMJX48\nBD0S7\nK2BY7\n0AGCS\nBRLC0\nU7RVS\nQEQJ3\nGUCB4\nYW5C4\n2MJ72\nEN80R\nPLGZM\n3MWAY\n30TL5\nWSZSL\n54XD1\nKZK6W\n6FUDS\nQNUIU\n5GPOJ\nCDIW7\nGLGQJ\n7XVS7\nESAIY\nXFLQH\nJXF3M\nJUINA\nTKFY2\nE6TED\n7FNZZ\nT3FJH\nED6VQ\n87T5P\n2544C\nEE8OB\nTLBWW\n9HIE0\n04LAX\nUDDTR\nXOFEX\nKZODG\nI20N2\nF9K8L\nKO80I\n1CITG\n54VBR\n3OUXT\nTETZ7\nL5842\nWNKL6\nP8ZU6\nDPBI3\nY1FKP\nNDYOR\nCX5ZM\n0LNLR\nOHQOO\nZ60TB\n8VWV2\nUPJWV\nZF5CP\nP7RQS\nVS7DA\n72HTA\n5QJNP\n1K0SU\n3QGLU\n7WG7A\nYKVYR\nWEU2E\n7SXQS\nPZQ5A\n77HDM\n64F1C\nV2JOF\nMZGMN\nO7OD2\n4878H\n8NS1G\nWF3NY\nNC1OC\nS1N2U\nG3CDA\n00ZCA\nR6QCQ\nYV521\n67EEN\nANJNU\nJ12SC\nU1BQ0\nAADCE\nYV0ZX\nLE5F4\nBUL4V\nPP2FF\nW5GEK\nJMCRT\n0ET8W\nFV51S\nQ8UJ8\n9GQRI\nR390Z\nX6B0P\nKZPBC\nU3ANG\nKA3ER\nR2KI4\nTVBLW\nJXKPA\nS2FLE\nNALYS\n0BX9N\nJIOD0\nGZMJK\nCW4AU\nKC863\nTPHRR\nTW3RS\n19ZJB\nE1VFZ\nVCU4P\nOMFOJ\n8JT6S\n0YOXV\nHSH5R\nLZEWE\n2JR26\n1TW98\nX8A6H\n8Y7P5\nWPZQ7\nXF93D\nY9JWG\nGK15U\nLFU36\nVTEWM\nP3EW1\nSSP8C\nJ1YJ6\nTD6CM\nZCULX\n9X208\n7VSIV\nEJJIO\nNOLQ7\nYMM1Z\nZKOCS\nVY1GQ\n6U082\nPIMO4\nQ9H04\nWFUK2\nWR2Q2\nGC1Q1\nO45BC\nFEWUR\n1U9TF\nIZZ3Y\nU5B14\nWZ351\nU03TA\nJQHIC\nZDX0Y\nXYGU1\nQ9TIN\nIZCB0\nYL612\nDU7H1\n39LQ8\nGU43L\nSLMQF\nU3NKR\nTLSUX\nGVX7E\nWV9FZ\n6KDQO\nS2EXT\nRRDAM\n41CZS\nV34GF\n01KML\nFERH5\nNOJK1\nV3RAX\nQNKDI\nGIC6A\nNCDE3\nUB3KO\nFIV2P\nAGELP\nX29NF\nXHGV7\nX89FW\nA4SR3\nN7ZBM\n56XKK\nEIB97\nZXHLY\nP9D7P\nB6S6T\nGFFJM\nWBATR\nDAS12\nMUK89\nW2LM5\nJJON5\n73X8Q\nO5N93\nNDX21\nU0ACD\nWPR8G\n869NM\n99SGB\n9R4AQ\nN00HR\nWIOCA\nS7RXC\n7HWK2\nWZA37\nNK9RX\n9RA4P\n78FJX\nZ1LVD\nV4YCA\nRRZU3\n5ZGRN\nNGXV2\n5C837\nG4MDY\n9LONJ\nJYC6G\nLK1AE\n13MWT\nIACBH\n7JTEK\n9UDMH\nVE5DN\nW74ZY\n6E6GF\n14TJT\n8GP10\nOD1A5\nPQBGG\n7JSAI\nKJK56\nXP305\nIZTHW\nIGVLE\nVAIVN\nK6DF2\nDY9AE\nBOKLM\nQ166J\nA7OCU\nD32A4\nM91YM\nYPIKO\nVCV6A\nRTXE6\nDPDER\n5GITI\nF8UU2\nH94MQ\nC4MP2\n2K755\n5H1P1\nNOFSE\nWJFGC\nYBO6N\n7W66P\nN79WJ\n6JKD6\nQ4TKG\nDJG7A\nQ5ZIL\n8VSV6\nEHYXP\nC9VPX\n5AR9B\nF082Z\n1JGRO\n81YUE\nWE2PF\nEG1XK\n7XR13\nXSS0J\nP8UT3\nOLEWM\n5U70R\nHKJUR\nYQCYJ\nCK3H7\nX3KFE\nPFCRB\n4CHXK\n4QSRS\nPW3GG\n27SS2\n7OXNH\nYKT8I\n82ZNR\nKFI7N\nEWY6I\nAAS9S\nO1ILB\n8M0ZV\n94KP4\nFQDD1\nHB4AB\n0FO58\n9335E\n6KUUU\nQH3FK\nN9D4C\nQYSER\n5CT0V\nAIT3V\nR1OUC\nOZIJ7\nTDNV3\nRJIEO\n83J53\nBKEYX\nRO8N5\nAEJ4T\n201W8\nOXUKR\nZSHV8\nIXY95\n1X765\nJLQLC\nDHFA6\nURG8B\n0CGMQ\nT35WB\n48IQL\n3KZF7\nDHR5F\nVP3WN\nV10LX\n38QA4\nTC3BF\nHWL2J\n9HI9D\nPRQSR\nGD9BQ\n3OQ8M\nVX7P0\nGX4B1\n170OQ\nP3XT7\nX0JKJ\nXAX61\nXFS7Z\nIJ587\nC41G7\nKBPI3\n6YZOL\nESM8H\n7E6AB\n1W28T\n0RJKT\nAZTTC\nISHJ4\nQI3JB\nMC50M\nURWJL\nI4K7B\nN9TRF\n5JIGM\nY6419\n4HGD7\nDLBRW\nQO6RV\n4WUNC\nZX1R7\nCVPQR\n44Y6S\nUCFCB\nK21RO\nGRJG1\nCCCUJ\n29C6X\nLKSBL\n3GY40\nUR7C8\n8Y4YD\n1TWH6\n28D7L\n4X2JC\n129SP\n5R83A\nZWY3E\nAYXFY\nSTDCJ\nL57L2\nIQM7A\nX7R9N\n8ZF5S\nYX3W8\nSQYTO\n8V9IX\nN8WK8\nAVA41\nSTYTN\n9KGIR\nR5L98\n6JGXL\nQ3UAN\n463UL\nAWITI\n1O6PH\nXBRO4\n7QWL3\nQ57HC\n79YH2\nG3OUM\nP2UBC\nGN4SJ\n6MUM6\nD19IR\nYQSN8\n5K0KJ\n1DNAX\nO76N2\n8BCI8\n36VYU\nZD3GI\nOB9H3\n30LGT\nUX8NQ\nBQAUC\nVLZ40\nS47DI\nRH2YW\nZAJAJ\nIGOQK\nOZCGO\nOVHFT\nWYYUD\n706BT\nU45LK\n2Q5Y2\nQOWXK\nRBNLA\nD0YWV\n7R8ZU\n9B93K\nNTYC3\nWOOYQ\nRUOOY\nE9EKR\nXAOUP\nJ3V1D\nTSBB8\nE2Q68\nO6V4U\nOOWJ9\n0MDYC\nG81JB\n1YTD7\nCMEA6\nZCH7N\nQLKSV\nFUT86\nRLS2I\nUNOW9\nMU54W\nFDOY9\nYMFWC\nZJ54N\nQEZX9\n9Q1N7\nWKDPZ\n6FYXS\nSQKR0\nCDNNO\nUPWM5\nTVS1P\nVXRCZ\nJUGS8\nL62J5\nPHIIX\nETAFB\n5AHQV\nOFNQV\nDGSBQ\nTYKVA\nPZQIN\nE7DKD\nB53VP\nH8QM1\nHAR5P\nT0PJG\nV3CWF\nRSRZ0\nWZVHJ\nTEPWB\nE6A0Y\nDSXEN\nRAQNI\nRIUEI\n2I871\nLSVHK\nAXKNF\nOM5R4\nDNXBJ\nR5MFX\nE3S4O\n3NE5P\nH1XBH\n5Y3VW\nO8BH6\n3ZHEX\nUG0TA\nB4F0T\nGYB9U\nPW6CO\nAXKNP\n2WGSN\nCPF9H\nDQEC3\nY9SMX\nCTOQR\nNODDU\nPXYN8\nN67PL\n71QKB\nRYDUK\nJ39ZC\n75AX5\nDML20\nABK63\nTBU3U\n67RSR\nTE5P7\nAKALB\nBD4P9\nJ6TVB\n7CXYB\nX1RBM\nWT2C0\nPSPMA\n7BL9D\nAIOTI\nFMJZQ\nA5PL0\nMV9N4\nKN0TK\nNMC3H\nQ7RK6\nVDXXV\nOJLFZ\nOLV1L\n830OE\n4RLYA\nPOLVK\nCBPJF\nV5PK0\n2FECZ\nA5CRZ\n0NVG2\nZ1A0Q\nW3DYV\n40309\nZWVO3\n92Q8F\n5KQL2\nWSS3R\nC5044\n7JDU4\nS67WR\n5DRVF\nEPKTX\nDRPO3\nMOT57\nYAXGX\nB55HG\n52QLH\n3AEF5\nSNU9T\nBB25Z\nCWUDQ\nJQY4L\nO441U\nB32MT\n4FXUI\nBMVXJ\nVHOYB\n49QXY\n8FH2F\nTXAG9\n7TJ60\nXJLHC\nU2SJH\n7QH3I\nV9XR6\nES10S\n1NDVD\n8ESHT\n3SIOT\nUUX4G\nZCZ3X\nZHDUR\n2R13Z\nDINAV\nK48CQ\nL9YK1\nLOP4H\nIEZFM\nQ07NE\n490S2\nUWRQV\nH26YY\nJHU46\n88Z3M\nME7II\nEUK1Y\nDRXNL\n6RPUS\n6C2DJ\nOH3R9\n2Q2LA\n2BUDH\nJC1DV\nPO74I\nAQXBN\nR00LO\nWPPAT\nNJU3G\n7SLK1\n02SK4\n19SJ6\nZCH1J\nG183W\nXIG01\nMW2TQ\nF86M9\nEGY7O\nHH0VG\nG4NOT\nMERBU\nLNWWJ\n3EYLH\n4Z3PQ\nS2GDP\nAJ5YQ\nL8V10\n5GEJS\nMSN1B\nD2CEL\n5XYPL\nQC9M1\nLFBCQ\nJK4Q2\nN2XCF\nFOA8D\nPABBK\n7BFDL\nBMYMI\nZHZST\nHJJ32\nRIE30\n1Q4SL\nMX0CO\nFYDYO\nN1EDG\nSCHOY\nZ2A7Q\n97HAH\nZ70KK\nMR66M\nMY5CQ\n01ZWG\n2P6ZP\nVLMII\nMRKTD\n57J92\n1YC83\nS673O\nDFEG2\nL9H3O\nU4FR1\nC69Y1\nV4PKW\nXRQDI\nG06QC\nQ8XEE\n0O81T\nW7SGQ\nFO035\nOKVGK\nBBAVF\nIR7CA\n987P8\nUKCTK\nS8TI7\n5UUEP\nCXO6P\nCLW8L\nJOUM7\n2C2AI\n05WY6\nRXJ04\n2JT00\n469E8\n3XUPT\n7FCAW\nP76PG\nFJM2Y\nI5PU9\nG3WBE\nX084M\n4MUXJ\n4Q3KR\n7P5R2\n0NJ26\nVU4J8\n6ALEL\nSMVKB\nX9ULK\nEOAR1\n0QES3\n7HEWH\nHCSPE\nAI4NP\n69GFN\n654PD\nV4C0P\nJ2DBI\nCWBHH\n30JQT\nANAR5\nB4MNI\nNV4FC\nQ8QGT\n809QT\n803H6\nUG6NT\nTXJK7\nMMV3D\nQNXGG\nNJCDX\n4ATDB\nV4HBP\nO630X\nQ5GVZ\nUCDL4\n4UT8K\n0QHR4\nVML1Z\n6AVDE\n1K0GV\nIYD9U\nI5U4Q\nQ1K00\nHIO3X\n4S3UZ\nE40Y8\nJN2E8\n2Q3ZJ\nK0IGF\nOZ6SB\nZ320B\n5AW54\n7VZ5M\nDECCY\nRSFBP\nQSQK2\n3JSX7\n8U3SS\n92QGQ\n3TUUI\nA6NH2\nR2ZYS\n1OIPY\nLRLNC\n1E7VU\n1MD1H\nFNLLG\nZYDGF\nAFAXI\nAPQSV\nDA7E9\nATWCT\nYXJBA\nO18DS\nHP94W\nYUOQW\nHEZBG\nMNBEI\nZ0Q5D\nAPJQ8\nR5K2K\n6BFKO\n25BZ1\nNXC5X\nF3RM9\nVTICD\nHGLHS\nJ40UT\nMF8AX\n6PN8O\nNQ1V6\n8YZ8X\n9ZQ0R\nX6D8E\n909RL\nUPXBJ\n9GMHF\nZ7O9G\nOJ4IE\nMSW4E\nXYTEU\nCUII4\nDYVUY\nBLPAB\n6LGTT\nKFOX4\nAHLZY\n3JJ7C\nZG1EM\nUMT5R\n6BUU6\n29UVO\nH69BE\nS3TR3\nE7CJ0\nT38JM\nON2VH\n03M0K\nBNSQN\nV3DJ5\n0UQU6\n493WS\n4BZI6\nAR4S6\nTXNDA\nT1FTD\nDG5TX\nE8C24\nEJIKG\n8X49S\nU3T5A\nUGWOG\nVT64S\nDSP2U\nLRJS4\nQEFJF\nSAT9P\nLSY08\nTQXMV\nM5W51\nWRW7O\nW9XJX\nOOE32\nVOTA7\n7XJLH\n53FPM\n3CTZL\nFYP5L\nZY2B1\n857LD\nQNVMD\nDK59J\nG5LEA\nC1A2T\n5V8WH\n5IDF4\n5O31N\nGISE8\n1221S\nBVCCX\nB3SF6\nCP3Q6\n2CR09\nFABO7\nPM9HG\nO5FR0\nX9WTR\nFRXS5\nTUVM8\nK5DIB\nAQ0CP\nKQT19\nKOF86\n2CFCW\nM7DIB\nYFZRG\n6ERRL\n5ZXR3\nC3HIN\nUQPO0\nU9LKA\nG838Q\nMIV2M\nR13US\n0JA9E\nL9J5I\nEY6P4\nTS880\nIII9I\nDD57W\n03TL7\nB5VY1\nORD96\nIO3CI\nJCUT2\n3DLKC\nLWB5E\nC9HLB\nSPJIE\nIIJ5I\nLHPQS\nMTUR3\nZKGKR\nOVICR\nT1KK1\nXHG13\nENCXV\nGXVX8\n25YVM\nIS7PL\n8BG1T\n1JYPW\nFPXL7\n6HR54\n91SQ4\nM8NEU\nOIRJ0\nJ9BXT\n6GY1M\nUB1QP\n759UE\nR6XU9\nMURXK\nZ6ZYF\nGIC0G\nD98TV\n6703W\nGQYR9\nCLU7Z\nW3CPB\n6TV29\nHXCGX\nTOY9V\n6FSAH\nTF0KM\n9EP7R\n7HLTQ\nUNXLF\nK5CRM\nWT59C\n8D464\nAZFKK\n8YNSB\n2NV6L\nP0ILN\n9VBJ5\n9CDB6\nU7E1T\n5I330\n7BX06\nZ6OEM\n3OAGK\nF0N38\nTLCLG\nYLNPX\nZOLVU\n2ODLD\nJ3ZZH\nC1LJS\nP73UC\nA30ZM\nUJXBC\nY1BWP\n7L7P4\n0R0DJ\n9O889\n2H56B\nKTOJX\n2YXJO\nT6BS9\nHI81L\nBART9\nK7FNC\nADK5J\n5776I\nHM7J7\nU44OC\nFY9UT\nIF7KE\nTW2F4\nQQG8X\nI9TIU\nX95MU\nYLRVT\nJFSJF\nEPP0O\nYUGJJ\nI713Z\nUN6O9\nW3LUB\n33OVO\nVEKTO\nRYQI0\nNQKZB\nZS7X6\nFNNTW\nG1NFB\nY4LT8\nWYZCW\n55DDW\n6ZJAL\n5CZRC\n7SAFU\nD5886\nFQWTE\nS2A89\nNL26D\nRTULL\nG8YWY\nG82VI\n4MFE0\nUIERL\nDV6U8\nUPUPM\nCR1OK\nPVAJ8\nKLO0K\nUPYPG\nRDHNQ\nOEIRN\nV8GK6\nMU6UQ\n5D351\n13IOT\nLH6LE\n5XA4R\nVICUM\nKU4UP\nO7FDB\n3B81O\n43FG9\nEVU9O\nYXSI7\nVDUO1\n5V5EL\nG4853\n97086\n0IJ8T\nHVBES\nX9R37\nE0ZBC\nJKZUM\nTRUIW\nXIVBU\n6PZJ3\nI1CS8\n6YN3J\nFM078\nG99VH\nQ37OS\n48WOM\nIFO3G\n55BOW\nUPL9S\n3L7Y9\nWF7TY\nOFB7A\nYXQWH\nQGLQ0\n7UGF7\n106AY\nKZN8C\nWCY52\nZ5AZW\n92AO4\nHEOJM\n8MX1T\n9YI82\nULAWO\nA5XR5\nIET7H\n539EH\nMT6C2\nOX3BI\nQKP9V\nUMUBT\nM79TJ\n186EF\nKFHLP\nBAGJW\nRO429\nLG73V\nACAK4\nSVQFY\nM7BD4\nWMD0E\nR3Z2O\nF796T\n41FNM\nXJ4T3\nV2DAA\n70PUI\nA2JV3\nP73KX\nP31E5\nE1TJI\n5S1SL\n95M38\nE7ESG\nGHJPQ\nPQH3Q\nZCG3J\nDEXMO\nJ8JOQ\nPFTHZ\nUVMZ8\n03EW0\nUQJ58\n6UMSJ\nS8PVE\n4J494\nMNXXD\n2U903\n9OMY1\nHOLED\nXTC0F\n57N4Z\n1M89F\n19PNV\nZ2MY2\nQNHM7\nVOX2S\nV3B51\nQX33M\nXZLNT\nQB7ZN\nFKJ9L\nNVKDC\n8TNSB\n1OVB8\nUDAQU\nWEVQH\nQ24OC\nGADLP\nX91NG\nEMF9Q\nGQGAE\nV2BCZ\nWFD5Z\nEJFBM\n6RXCP\nPV745\nMIRSU\nQBIOX\nVTYXW\nGSIYV\nVA8ZR\n4MGUQ\nYH70K\n55OAL\nCIG76\nMLS4T\nPK2F0\nQWTGQ\nWKP5N\n00HFP\nN59H5\n16D5O\nV62NW\n6VM42\nRZY2I\nBLIFO\nMLLVP\n2XLVN\nZZ2SF\nYP1HM\nA21M5\nI8WPI\n1ROX7\nCMFMH\nB6487\nJ7TT5\n293L4\nJBHOL\nU3VOM\nGC7L9\n2ZTNY\nCP07P\nPTA97\nKXIMH\nRUG1J\nTIJOY\n41SB2\n7HVU8\nUKOAU\nCUD1T\nY8ON2\n94YTY\nNLWBW\nE0AEN\nWJEVU\n0JHMW\n88TGX\nWZRLQ\nT4HF9\n29LL7\nC5KNM\nZSJ2I\nWYM1M\n0WV3L\nC6B3T\nOL2QI\nK95WN\nXS6PF\n78R4Y\nA10NL\n1OF1O\nZKC7M\nDIB6D\n16IDQ\nG9JMG\nQGIP7\nWW4MY\nX6JKA\nN915C\nIGEU5\nDOL47\n0JB3D\n8EU89\nTODWV\nLWP5F\nV2MHO\nA58GR\n0OUEP\nCJ0U1\nI68J0\nGNMBV\nPEY34\nD9YWY\nHSSOZ\nJ867Z\nZAJYX\n55NNF\n8ZO48\n5L09N\nDVDU2\nRV48T\nTZ548\nFDYQZ\n1HL2K\nTKAFY\n6FYKZ\nDN0CB\nUJOLG\nAZZ7V\nM43KR\nPC3WT\n0ETKN\nXS7RN\nZWDVG\n7L18C\nO0C2Z\nCEL4V\n901GH\nN4SA2\nGC51E\nJQW5G\nUO5PM\n8175C\nYS9RE\nMSQA1\n8LWV7\n60W9B\nE75C2\nSSUZA\n9S0QC\nIDACP\nQLQNJ\nATI0Z\nOJ6SX\nEWH3D\nPAYYN\nEDPTO\nQZP8N\nWIYE2\n29757\nDVO31\nW6210\nGKII3\nEK19H\n1HAYV\nFCDXN\nFL3CG\nFYR3P\n0W39H\n6ZSB2\nMD6C0\nTU3IG\nK3193\nXPDI1\nIV7IZ\nAMX7S\nQ49E0\nHTCKH\nDVHIB\nMUVB8\nDN6QU\n6B93R\nA54DW\nV58VE\nABXKN\n5JSFE\nVNVRA\n8PXPO\nOC6YU\nPZD7Z\nKL68V\n5N26T\nI4IFT\nCC6JC\n15OH5\nJ8SHW\nF1GWF\nWWPEN\nSTG2D\n6QW3Y\nMMY3N\nN1RJW\nC9ISQ\nDC3PF\nZSHWE\n5HQJ8\n417RA\nJX18W\nWSLMS\n2MDHE\nPRV4N\nN7AOK\nFE6RN\nKFGXC\nXNT6F\nC8KER\nJSD0F\nHHAM7\n4WMDU\nWO0OM\n47532\nCRJGZ\nSFWBN\n6C65Z\nQQUI7\nL4DUU\nKGMA5\nRF39W\nQO7SM\nRXLKF\nLTQS9\n8N939\n2JYRQ\nFZ0LU\nDFG9M\n5N7DP\nMJ1T7\nH5V2Y\nOCVY4\nIBX56\n86X97\nM1GW9\nDFVXX\nP4UXI\nXWVDK\nSNK5Z\n4Y1AW\nN513D\nIA7X9\nAPH4V\nD1O6N\n08QQS\nX2QWR\nMV0TX\nG2VOP\nOJGGZ\n8ENLP\nE9FY2\n1FPW9\nY7MSY\n3D0WV\nQDOXA\nMFOVZ\nE18UD\nWFWTU\nFIAJP\nRPPCV\nLV24Z\nYFBA1\nLDST7\nEGPAO\n2FLXE\nZOK5T\nOEUGC\nLQGMM\nF7OOB\n98GQH\nZSZS4\nRNCN8\nJSLW5\n8VDZ7\n70TVS\n4I00F\n8J2K5\nI6AZD\nOO6BH\n6B328\nLBT7P\nA2EY4\nC9FMC\nCG9ZL\nIUW9N\nX28IF\n8TRIW\nXECIL\nPCNB7\nBU2R4\n96GIQ\nXTACZ\nS0Z00\nCNVZX\nMYB7P\nHQZ29\n3NOML\nL0YQM\n9N76L\nH5TGJ\nIS3OX\nZI2XH\nF31X6\nKNX2Y\nVEV4O\nQC4R2\nD2GQH\nN7130\nZFZEN\n06CKN\n08F85\n3K6HO\nX226B\n3XKBC\nIME5D\nSTAZI\nXXIT4\n5SAAB\nRJ8WY\nYXP9P\nZ9W47\nF44A2\nI3Q65\nGXIWH\nJZDL6\nYG2EP\n8BNBV\nVPI6D\n6C4DV\nXZ2QQ\n78N0Z\nJ7D0D\nKP88I\nG1KTZ\nWR1QE\nNGZQ9\nCV20O\nRRHEV\n2YO6G\nVX1GX\n17DOT\nVRY89\nE0U3R\nT3L2A\nEX1PY\n7DGWM\n6PL9Z\nK2L7F\nRTEWJ\nYSZVZ\nSQBEE\nSG8ZR\n55MRE\nYNJ86\n51801\nA8LZE\nY7WEK\nXLR4B\n7NLXI\nFSKKQ\nL1S6P\nI0588\nBB8Q0\n3OQ81\nN8SO1\nJP60G\n72VJD\nNHUCA\nVD8PU\nBRE3P\n1SKLG\nUFWD5\n7T6MB\nJDG40\nDC4XY\n334W9\nSJQVM\nQRM8K\n0DY8C\nCXGSD\nR3ZN9\n3ZH9Z\nLNXMJ\nB2NAS\nJ4RPL\nWH1PD\nJFR2I\nKOHWO\n29WOY\nNNUCA\nLFC6D\n5NG8W\nI5L3Y\nNL0QB\nH2ZYY\nYBW3D\nUDGRS\n1YBKW\nKXCSL\nMQRFK\nMT9NE\nQHM66\n00SL4\n9YRHF\nCOBEK\nQN4MZ\n1BVUA\n3WAWR\n05GIA\nYMWUS\nP6P6L\nYM213\nMFSGO\nLK3BW\n6E4JA\nL1BNN\nLVJ3U\n86GSE\nK71S1\nEF5XT\nWX4AP\nR87CC\nW20LY\nDS22L\nBGX4T\nXWY6P\nZ1DBB\n1XFDY\nRS3SQ\nN7IH0\nROL2T\n0WHOH\n6JB5R\nNSKMC\nH8UJ3\nNGMK1\nDTJS6\nA4VK8\nK4UOG\n291LH\n0VOQC\n16WZF\nOHBYF\nHDHWS\nGWQ73\n2WX2Z\nSQKE4\n5LE93\nVRMNI\nFQDS1\nZZ89F\n9WLBQ\nB1FY9\nJF0O8\n7B8EQ\nIG1YT\nM5C5L\nBID6Z\nQT4WM\n785X2\nF8TWE\n0TXYV\nTNWWG\n7TNGJ\nIDFTJ\nJ3ZQS\nTLJRV\nGEAB1\nYPTHX\nXQ4RB\nIAK2E\n6BI70\nK9MPN\nIRGXQ\nI6KKY\nDJR5H\nCJ58B\nEV4HN\nQXEWB\nNCZOV\n7FAB3\nO9DOT\nHKS9J\nRIV6I\nBR8B3\nJJKNY\nGDIW0\nTKOYQ\nBV5CC\nB0BDR\n46Z16\nZ0KN7\nME4D5\n8ICEM\nWJQPA\n538JV\nTIY7F\nO03Y4\n6B7HM\n37GL4\nJQG43\n1LSEQ\nI5ZWF\nIUXP8\nUGQD0\nTWU2U\nDYYLD\nCF55N\nV29QF\nEFX3U\nX7GVM\nZ5JZD\nDMI87\nA42FN\nXJE4Y\n8AKGE\nKAQNT\n8WPPG\n8PL34\nPNC99\nUTR56\nVLYM4\nJC9SA\nX42YA\nR5CWJ\n38HNU\nJOWAU\nINQNU\nPZ2W1\n0Z36L\nDIEEO\n6AHD0\nRVYXB\n8SA46\n0R6K4\nF56YP\n61BEP\nWOVOX\n3HUXR\nOIOIO\nQ3FZ6\n5IVO1\n0F1VF\nY8M9P\nH28KM\nJTTAP\n4021N\nMPFSX\nWN7T3\nX58SH\n4021D\n9C5PT\nCVX3K\nSNECW\nI3N3J\nVNQJ0\n0RROG\nMUO4G\nG8SWD\n7W1ZI\n23QFL\nEG0IU\nYVOVB\nDRGKV\nPWR6D\nUBYBQ\nETT15\n3P38N\n57QQ7\nIYCOH\n20WZU\nIRF8X\n7WJUW\nRJCNV\nKAHM2\n9OP4S\nFPFFN\nHL4V4\nJA3MN\nBKNO9\nDHR83\n953I1\nZ1GUW\nPB7PQ\nWM336\nLC8T4\n1Y5H7\nVYMZC\nOVYAC\nQJ11V\nAHLVF\n5KZLW\nNA5F9\nMUI01\nKONWE\nM0ENV\n1JH1W\nIKBYS\nWMR4G\nMXW4N\nJCNHL\nHWHLG\nS1LQF\n5KGCY\nBM5B8\n282ZZ\nHAIVQ\nHG8G1\nBLIW5\nPOXTH\nLLLXJ\nG9IUG\nBUBT0\nFDIJX\nZVV1Y\nIULMX\n2GRGY\n0M6IY\nTQ9GQ\nCWM1T\nQT4W0\n0W4F6\nWM8QQ\nOOEME\n1DGSW\nCS01T\nTPH12\n485I1\nBDWIX\nUFWKL\nMC25U\nRP64Z\n2MR5K\nQCAUL\nRF00I\n5JSGK\nZ9XLJ\nQTRIN\n9LHP3\n2MJA1\n6MH42\nZS9XR\nUFQK1\nMF09L\n0D5I8\nQS0AZ\nCXKFB\n41GXC\n7DU77\n4ZSAR\nCF9QP\nXE4IA\nOCSJP\nJHTO5\nYSABV\nX3ASU\nGE4SD\n3WD4E\n8JR94\nLVLVR\nFKFU3\n7WIKW\nR1RDT\nWTMMC\nZA7ST\nXWBF1\nM0RUS\nR9382\n5M9JX\nI30LP\n1US0H\n8PRDP\n2GF6R\n2GQDN\n5UFCJ\nIUOC0\n8BSG7\nQ3XBQ\nL5ZAB\nWA3CG\n1SCZE\nUYJVE\nHZTB1\n1Z5FK\nH0O39\nUZIQS\nRDUOV\nOBXY5\n9CCDY\nV0XW3\nRKGXU\nF6A4W\nW7WJR\nP6S89\nP5ANU\nMB1MR\nARCUY\nBI86J\n3Z1YC\nGDS6Q\nFB7MZ\n8XFAV\nI6H4R\nKQKNE\nZP4X6\nMWZJY\nNT2HT\n8IUTG\nM0QER\nDS5J7\nK2LY1\nHRFGY\nQ4UO4\nSNUVF\nLKHKF\n2KAWJ\nV7KBN\nVIDIE\nJ5CAN\nUEXO4\nFP5MM\n4ISIX\nXYTFC\nB7DNX\n9MOH2\nXWQ1D\nYBP5F\n815KV\n61XR6\nKU3WI\nWTBB2\nFKGY7\nW0A0Z\nKP8VI\n46GP8\nM2XIS\nBYMO6\nKSAU8\nKOAQD\n55687\nDGPR1\n8LPZ0\nV1JIC\nBZ189\n37SE6\n7HWS7\n2PRCP\nD1VWG\n4LU0G\n119W9\nCBXVQ\nSM1QV\n94ICP\nD07V2\n9SKPI\nTPSUY\n7KEON\nV00AL\n3AU5K\nGTK8W\nE4C1C\n6WZ1K\nFWUV8\nY063A\nUY08H\nQIQXR\nWJ33D\nC4KZ4\nV115C\nSIUU5\n1ZEJJ\nLN3WU\nSILHS\n3SAO5\n3X52E\nZWVNF\n0NCWX\n70S6Y\nKZTDH\nFZIW9\nHC62A\n5AM4C\nIUVT3\nT4NAU\n5B2K2\nSHKHX\nJZ46A\nJCSTR\nHG00H\nJOBFJ\nKPNJ5\nT0LOH\nZSREG\nM3S4D\n1SCAZ\n19MUM\n7XBPE\n2BFZG\nX3952\nDTUJD\nMYGJA\nM02OO\nSHTQ9\nR1S1Z\nSZJ09\n0CQL8\n81NAT\nE2EXR\nHDMN4\nE2EHR\n8IPWO\n63XVB\nTJ3GZ\nXFRYR\nLAJ9K\nA2DDA\nWCCY7\nKW0K8\nTTQ3V\nD0E8H\nH40VV\nVYW49\nPBV4T\nY3NN8\n15FVJ\nDGPUE\nGDTYU\nH8S4L\nA1PEO\nOX5TB\nNFAA5\nZAOWM\nEIZFC\nMGDO2\nSQUX3\nZKNHG\nDB52Q\n9YNN1\nDFJ3N\nD7MHV\nBKXN4\n2WH4F\n40TYU\nO2294\n8MLCU\nA7BUX\nMDOSW\nGKSL2\n5I54H\nO8VYU\nMZJ9D\n4GCPM\nZL61Y\n1C6P3\n23Y3I\n8Z02S\n7VHXG\nFU5NY\nXQWLY\nQJXNG\n3TK88\nZGTP8\nVVCK0\nK34BE\nU1LFT\n70SEI\nJCWVV\nW98IU\nFJRGJ\n1NVWD\nKVGRN\nQ0BNP\nEMV0A\nRJQL6\nOI3BC\n4VCHD\nD9EDE\nNMTRI\n6OROW\n6YGBD\nBSDSA\n6MJGP\n5MRPU\nU43FI\n3X6SI\n6XT4W\nWJOR3\nJVXMI\nRO3A2\n65IQ0\nJ4QIT\n8EYHC\nNC75G\nXDP02\nW1SRN\n64SL1\n3ONCH\nIJT65\nZP53M\n1ZAN8\nXE4FF\nFP7N3\n78LXZ\nTCQ97\nXXU6H\nVN8SW\nCO4AU\nSMS5G\nM4FW0\n3ZC4Y\nMOWLI\nXXX1O\n38T9C\nSCCZG\nYBVUE\nLD8PU\nJVJZX\nIGQJP\n7GPSY\n2E8GU\n9PXC0\n0GYRH\nJQ2SN\nE7TLO\nX5YL3\nKW4Y1\n1WI77\nOHS4T\nZ1ZUI\n7WIRG\nZ6I0R\n3SNSC\nIEXTB\nD09K3\nNBIR0\nF9YMU\nFXRMG\n7KAVM\nLOH86\nLFPLP\nGXZHG\n1DL0E\n7POUA\nLJS9V\n8NGDR\n29B3I\n3CGO0\n670G1\n1ERM9\nDUEEE\nPCXYE\nD4RH8\nXPWYQ\nWH1S5\n0HD9F\nGL7ER\n83D9H\nPKRP5\n1UXVA\nUYFET\nPKEZI\nI7DGO\nX9Q1A\n5C6IS\nSMPEB\n8HHI3\nDFD3T\nUU5XI\nTDD74\nG5G8K\n8ASRQ\nT342T\nI8QJN\nQRHJJ\nOHVMG\n2ZFNL\n0F453\nNZ7VY\nEZ3CG\nINKPE\nE7FGK\nS72J9\nX8Y9X\nIUGG8\nTAGS2\nPCF14\nMOQIU\nTLDA3\nR4BTI\nAST4H\n6KJGX\n43OGO\nA52N5\n06X2V\nBDFDE\nJOPGB\n3EIRZ\n5IW8A\nBZD0Q\nXFT37\n35P3Q\nFPQRX\nSU8PN\n7EBTI\n9RKTE\n74DPG\n61WIS\nTJPFT\nXPQ0D\n4713W\nVGTX8\nE89O3\nG87XG\nFMXZS\nROEB7\n2846J\nCPG4Y\n7R4YS\nEBMIO\nDEJ35\n8N7NZ\nS29H6\nB5NS3\n3QXPC\nC2QK3\nMOREL\nNPM0Z\nKAKSU\n8FP8X\nG7LU9\nDAIN7\n9FBAP\n6LUM5\n4FGLC\nEY8S6\nPM2GT\nAXS82\nKY28J\nPC0M6\n0N7OQ\n9IT59\n696GE\nEWES1\nH1J19\nK7HQG\nOYNBC\nM1TZR\nXEASG\nM52K2\n0YXN6\nBT7FV\nROOLO\nNKCXF\nCV5YJ\nIU8YI\nNHXI3\n115MY\nMI0ZQ\nS7PLQ\nUZRQD\nYTV2H\nCZPU9\n2RTH2\n2D98B\nWETXR\nI8I5F\n82YF1\nWBS4I\nOEE36\nUCT5X\nG6GQP\nSXMII\nAZ5JS\nDVPL2\n7FTBS\nWZY7C\nS8X4A\n38TA9\nHKLB1\nZISOA\nRZLAZ\nQ2U7O\nH6BT7\nG2J63\nMHI9B\nZQAMW\nF1QR1\nKD3SK\n2Z8HO\n5LAQN\nQQD2X\nXX7ZJ\n5LFGO\nOIXA4\nG8E71\n1SMZZ\nHL5OP\n4F76V\nEW6RX\nLGCTV\nHEV65\nXNXW6\nRJ27X\nLVTRJ\nAEA8P\nQ9Q9L\nIYNUU\n57WV7\nDV31C\n6ZKZS\nUJMNV\nMC6J7\nIC89C\n5MDL5\nG1A2O\n1ZB73\nNWGVT\nS38BY\n1YH1Y\nTANB8\nGY70Y\nSVO89\nD7D89\n7OPHI\nBPDTY\nCCTIO\nFPNT1\nDGMDT\nAZZ3W\n5ZHOX\nX0CVU\nXDFPV\n79WPY\n0K0LP\nX8I9J\nB9F4P\nOW9LO\nLC1NU\nK0Y6X\nUKMK6\nUDGP2\nNCBNH\nUQVO7\n3S70A\n2EPFZ\n0XP8L\nV7LTE\n40FKN\n8W0XJ\nFIBCE\nXRI58\n64IAU\n33I4D\n2YJUQ\nYO9NC\nJJGEU\nK14NJ\nEFSIN\nYIV35\nX0VAO\nDUAOJ\nUUPEV\n8SAEO\nQXT9W\nWCLGY\nZ9B4Y\nNY5LX\nK0Z9V\nLK3LF\n6EHR7\n3W6TL\nDUHWU\n82X3Z\nTD3HC\nNSF4N\nRGIZ7\n583F7\nUS6P9\nQIYU4\nIBNKL\n5OIQ7\n7BQ1O\nY4MW3\nNKNVR\nVX82P\nELBLK\nZUU2X\n7ZCXJ\n9GS13\nFQGQS\nQUGLP\n4JQKA\nKQYR0\nATUOW\nQXCUP\nBQ6UI\n8M1TG\nVXNGC\nGFH4E\n68YR6\n9QVWC\nLQK90\n4NRPM\n20YRU\nZ8HPQ\nYZI2P\nJISS4\nFM5D5\n2S6V7\nT8V10\nRHAJX\n65M4K\n8L08M\nFKZQN\nOA9W5\n884C0\nRRFE7\nPM107\n9JZCC\n4CSXJ\nDHVYY\nMQ9PZ\n8J5O9\nYXN50\nFGY8R\nP0DXX\nCSRZM\nX8XQE\nTOUXU\nAPVAD\nK0X80\nH4ZD8\nCN108\nZ7QTA\nVTY0J\nW75CV\nLB4AR\n6R7QY\nQEFFJ\nTDHM0\nMLK57\n1NNFV\nXET54\n9NV2G\nEBBKQ\nRO9RP\nDWBS3\n6SWTR\nS1LY3\n5OB3W\nMNC10\nXUYCA\n9MOQ7\nZKIBW\n9FEV7\nPIRMO\nUSZCJ\nYSBN0\nD67MQ\nTCCQL\nFVMVY\nOINMN\nMVPQF\nPE41X\nAEZDA\nAD9MO\nQ3M8J\n3DO3W\n6VT4U\n3CFFJ\nOZSB3\n14VCB\nEXB02\n2NZ5C\nZ6LYG\n96GC9\nUWL8I\nIKZN3\nED0VL\nA0CZE\nNAF1C\nGN912\nUBVV7\nF87KZ\nE06A2\nMGBLJ\nFV684\nFVPMC\nFJIMX\n8YKGP\nQ36FS\n85LEB\nR8OTI\nXO97L\nF4BJJ\nJI3ZF\nT0HLX\nEUMRR\n9ILM6\nWQWT0\nJD3KW\n4X5P6\nLI6LV\nX0FW6\n0EJAG\nHCM54\nF1OMV\nVUXLB\n3K2QE\n1KJI0\nYIK5I\n5X6S7\n5O0YS\nWT405\nZFQNZ\nC7P86\n99596\nGBDJX\nGPR89\nXSY2P\nUFNPU\n2XG25\nY0CA0\nKRLT7\nFEKJQ\nEHCUE\n02CYP\nCICFF\nWIPMO\nY49WR\nMJZJM\n17RPG\nCZPFO\nYVOM4\nDLQIT\nMNJWH\nSPDF6\nTGUKM\n52WDV\n5DYQR\nW6TFQ\nY2TNP\nZATTZ\nVXF18\nIHGNV\n3MLVF\nUNGPY\n5ZRFL\nSUYMQ\nXIYIK\nE1TUD\nBVX8X\n5OMSL\nU6QKX\n1N1UT\nMS3E8\n9JIOI\nYPZQ2\n1WAOU\nT03KF\nUDRZ6\nR0OLR\nW8H3C\nCN43X\nO8N4M\nV70F7\n47Y1X\n9NWSD\nSDXZ8\n4ZN66\nV149B\nUL7YC\n5TG2E\nAYMCZ\nFN0F8\nSBW7O\nKZ746\nXF41L\nNHD1J\nZ5FNI\nOB1XO\n99WON\nWVB7F\n0TIHC\nNJ0X1\nG537E\nBPH56\nYU9BS\nVOU8V\nWXUZK\n75MO8\nKAFV7\nXUV0Y\nF99PM\n1D2OX\n8BBX0\n3VM0R\n5BTFZ\nOKYYQ\n5YA6D\n5NK4L\nQ01UB\nYQOPM\nOAC4U\n5HOAV\nG8O8P\nAJRIJ\nTVQO9\nOSCS2\nF08QY\nXKLW2\n5BQMX\nHDP39\nZEC1D\nDP8U3\nCDT32\nHGSB7\nWGUW8\nZ9WWJ\nCJHFD\nHHEIV\nUCX0K\nCOPHL\nF0PNU\n9C4JX\nBNEQL\nLF49A\nI7MEA\n0IFCL\nNUMAW\nFI2TP\nEBTD6\n4N06O\nBT8WU\nK8RW9\nMUE7H\n21MI8\nBQ07S\nQRSP8\n1R9XW\nMXBFE\nIFFPZ\nXOMJ4\nFNM5E\nH9V9I\nOUAIS\n5AE54\nFBHBP\nB8PQL\nK47J5\nCII5H\nCPFLM\nGA4DZ\n6KI0S\nHOIKF\nGL38X\nJTXUA\nCPDH9\n7L0TN\nXEGTL\nQDZ38\nZIWZH\n9JZO3\nX1KKZ\nDUNVR\nCO3LU\nX8KIS\nQ24KP\nSW64W\nJGYF6\nNSDFA\nCM5SK\nVMRAV\n34J80\nUY7BK\n3VWR9\nWV8SY\n3AE3T\n43UGG\n4C5S6\nFTETB\n77UTO\nBEC09\nCOM6M\n6RQHP\nI6IPP\nP36YW\n9JIHR\nAMLI4\nMRXEW\nDICXG\nP87UK\n8CQ9Y\nVA7IT\n7LYA9\nI5KUM\n2J2EW\n22FJU\nRXRAS\n4ZWLA\n0XV7B\nJ5TTU\nG6LYD\nENDIE\nKUBPN\nKO34N\nS1XW9\nOZ5SV\nRLA7N\n5LETG\nJUF24\nNGWRE\nHZXXN\n7L4DW\nKCEJF\nWCKTP\nKNDY2\n2JTRG\nQ1L24\n1KOZ4\nZ6U1X\nAMIHY\nJ95X1\n2OY8R\nSX07Q\nZAO65\n75HWR\nFGBXJ\nPHH6B\n8S9AF\n028CE\nGG1X2\nF9RY4\n2TU40\n5S587\n3Q3YY\nFL7X4\nYGYU5\nDIR8Q\n827O1\n0GFE8\nX0CKA\nS3TZ1\nLMX0P\nAVVX3\n5DJ3S\nKTL2G\nGKVBS\nG70CT\nUEP20\nWCIBT\nGPJ6E\nHURN7\nTI9JB\nMNEQ4\n9A58F\nLJ3AI\nD3KN2\nGM4UP\n5Q3QB\nVXM6A\nMTZ0T\nOMHFD\nWREDC\nYKD6U\n38BDO\nWT9CR\n406LH\n452FV\nLXSIG\nKP53W\nI1OLQ\nH32FR\n1QT62\n7C9RP\nVG9II\nWY433\n77JB7\nXJU8U\nRVLXD\n3A400\nCN480\nXWQ3Z\nIWCXM\n59KH0\nGV40M\nW2QG1\nT82IE\nO495M\n61KCY\n5IOQB\nMCNRZ\n17AZ5\nP6SOI\nPW9P0\nTU1C9\nKTKWL\n3IJGQ\nLU82W\nQMTF2\nHAA4O\nR77MC\n6R6RS\nJ0VXY\nIM2WK\nSUI1X\n46A6J\n5DPC8\n857S9\nG1JBI\n0VQQL\nKF42S\nEBHC9\nB3RHF\n85ABO\nIKOAX\n8Z9GW\n3H1EA\nNMC5N\nIIFVE\nX898O\nL8Y8D\nUVP3F\nFPODN\n5VJ1X\nAZMVM\nSHTLT\n0PA3N\nKZ7Y8\n481PN\nQOJ09\nGA4EI\nBLB6G\nA75XI\nMAO8N\nDXUQS\nGOCDE\nXHB9U\nSN85M\n3YGOV\nUA2PO\nIV8MD\nESTFR\n5QXCO\nSVPZT\n78SO8\n80FWF\n5FHH2\n5F1AW\nEHHRS\n386XM\nU4W3C\nIKYVB\nG4MNO\nWHRBU\nQU2WL\nF2EA8\n93YXJ\nJJLTF\nQEY8N\n72JYK\nQS6O1\nGV9M4\n4O32W\nENJ7V\n78XZ9\nN2TPE\nHJ5TL\n6QH7V\nNWFOF\nFPWD0\nU36AB\n3ND23\nL36YT\nHBQ33\n8G9A9\nTUPTT\n6CGRP\n2DDGF\nYQ9ML\nW0Y4E\n268ET\n5KOTU\n0XB7U\nTIPUS\nPXBN0\nXBXKO\nP981O\nDP7DG\nV45U8\nQG338\nT8DK4\nBWLA8\nNSHA7\n7K9XM\nAJZYE\n9RX96\n1PB6T\nLEPM3\nEL3N9\nXKJAD\nS1J2Q\nNY0IW\n00YZL\nL8HMR\nU5CDS\nZO3EG\nX5E6E\n5ACD3\nU91SO\nDP5S8\nW4BZX\nSXDG5\nDQFF2\nK3IGM\nVTOYP\nB7SZJ\nV54TI\nV25D1\n98NYF\nIJ3QB\nIM3I0\nLDL8D\nZOL0R\nLRQXG\nZED9E\nJQLD3\n3MAY9\n2D5GN\nXZM6Y\n3ZUVI\n6N4BD\nYVK8M\nF5C5M\nLIP4U\n2RJF6\nT2EIY\n18CTK\nB3HCE\nA9BDS\nQKOP0\n1XFP6\nPG32H\nYLIMP\nWQSYC\nOMBR9\n83XF0\nPZS0C\n892RS\n1514T\nAM4QC\n4JKLQ\nPT2Z0\nWRXI4\nAGZ28\nQYE21\n2F7AQ\n0TQZQ\nVGU6Y\nCDNV7\n4JQBM\nTRHB9\nOLELC\n279W6\nMKDCU\nJYDCI\nTK76G\nQEG5O\n9LO9F\nHFYNW\nV3LMY\nYJV7W\n0XV4T\nY6P1E\nGK08Z\nRTEO8\nOO4FE\n71J7E\nLR6RZ\nTIGIP\n48EEP\nU79C9\n01KM1\nWD6WB\nLZ8Z0\nS1UFD\nX1EZQ\n1LZ53\n5A3FT\nEWBOG\nR6TI2\n6J8NE\n0H04V\n3CA1X\n81R3C\nKAU5T\nMKBH8\nPWC0F\nRVWK8\nRQVJK\nSL9ZD\nZZN85\n3CAPI\nQIQUA\nLVGX3\n7U9EW\n2X7F6\nHOGVD\nCGNBJ\nQ071E\n08Y62\nGH3D1\nWSB7W\nU37WC\n1VUDV\nWGZ29\n4ZY8C\nJQKR5\n0KISF\nMWAGL\n2BS0V\nAOBWQ\nZ9THH\nE780X\nO4P08\nODFF6\nOJVOV\n5EDX4\nEDVAM\n0V4B3\nLU3SU\nQCBIG\n56JT8\n29JK6\nA1VTR\nEQ4GN\nZP6LO\n2ECXI\n1W2NR\nVL20E\nCHQ41\nDJMZC\n65RS3\nE653K\nBOOKV\nHA8MN\nJ0JD1\nM1FNW\nKXAIZ\nN5U8Z\nTBXFO\nTCM46\n7J5AA\nSCOML\nKLP7V\nVIN8S\n58Z9R\n3O474\nPHN7Z\nUQ93G\n250SN\nSCTNB\nZ1EEF\nIPH08\nRSG1C\nBZ1TH\n1AA6Z\nD4AJ5\nSP1QS\n5MF9Y\n2P2ZC\nAIYFU\nLURLC\nSRQPI\nFR4K2\nEMYSA\nBUXV4\n5AFC1\nHIOY0\nJAOPD\nNB6F5\nZ2MBK\nNZ6PU\nL2LF6\nYFI1M\nV4Q75\nH3MG3\nKRF68\n8R5DD\nW5RC5\n73XDD\n16KTS\nPOU1Z\nPPKP0\nQ8TB3\nUWPIZ\nQDVXO\nDE8T8\nFLM1T\nNNZON\n1375X\nDOQ9Y\nOEYA3\nU6KQ7\n35C4E\n6W2MO\nXB2NM\nWB17C\nKFZ55\nSSKK6\nI2DHG\nFM6KD\nXQC9F\nXV8CH\nUN1PD\nVS2RI\nL071S\nUB2EJ\nGWXD9\nJIDHM\nXI9LI\nNE37I\nXC8DF\nJ6WE2\nCIIWP\nEOKJ0\nYA379\nR2DA8\n1G2QC\nOHZG5\nB71ZJ\nCXSYS\nICL1M\nF2NAW\nS4D1O\nGQKIU\nLWBPP\nLDFM5\n2XVR0\n9N0BP\nPIEHJ\nOB7UK\nLA0DB\nTCV1W\nA0MZ9\nTX122\nQ4932\nEI0F6\n4UW2K\nZRBO7\n03AA8\n8TDNF\nLQO5R\nXVHGO\nKPAS0\n3XM7Q\n4JW8U\nC1LVJ\nY6ROG\nB57IW\nDBT6E\nEQQ2T\nIK4Q8\n9OJXP\nNZY1U\n55AH5\nCS8O0\n9J166\nCXF35\n73E7V\nL218P\n5FYKE\nXCUOD\nX3FAP\nPPCWE\nO5TU5\nKS5VD\n36AJ1\nIV1U5\nVG0GK\nIVP8Q\n9VZOY\nGPUFH\n9ITF3\nTD2DR\nI34L6\n7OHQP\nSSX6D\nAPTS7\nT8O8Y\nMPX3X\nWKU7H\n1IPYC\nTCQXI\n92FFB\nTIS3Z\nP4FXX\nSFZ6Q\nSRHJV\n11DD3\n4EDGW\nE891N\nAEHBG\nO07KU\nJ10KY\n0PPPL\nM2DD1\nV9RT3\nCVPFH\nYPTDT\n5XKVP\n0JJIY\nOWS57\nXRVQL\nZPAM8\nJLGLU\nCVK5Z\n3UZ88\nH4IT6\n00NN7\n2STCL\nJF36Q\n2J4MA\nA6CF6\nEOA7I\nMI76A\nSPG5Q\n1B2P0\n2OWA8\n2ZBL5\n0RNRI\nBZMLV\nSFPJ7\nSPDLO\nY2NAO\nW4MEA\nT7T0S\nDNWCR\nDHPNN\nS6RYI\nIJZI1\nHEIW9\n1SUIC\nDWEHS\nVQOBM\n6N7G6\n1L2G1\nJWVW9\n55FRY\nE6PSM\n52CKM\n5DEHA\nAWCQN\nS1W8H\nZZXQF\nB0LK0\n75GKF\n2ZXJ5\n1UI6I\n1FGXJ\nV31YX\nQGQGZ\n2M2O6\nEMWAP\nKV287\nLUYWY\n7P0JX\n144JW\nCRH69\nQ6ZD9\nVIKQG\n5HJ2H\n3GFIC\nXBB9P\n9QYHQ\nQM7Q3\nXKH7W\nIJNBL\n5GG5W\n0PCAF\n80ADD\n5U1IT\nDRT60\nVAXUU\nUSM36\nAVH53\n9XW1K\n9HNRY\nEED7D\nKQNOV\nFQ282\nYNRI0\nTYZ05\n6VJI0\nS2XJW\nWXC7V\nNMG2Z\n3U6OZ\nTXQWJ\nZPUVC\nYK7FT\nOCYT9\nRANB1\nAOQ7C\nX7J7H\n2DTZ3\n00MFE\nXWKKZ\nWUL5P\nOWZCZ\nCFWP7\nC5BMA\n2GGH3\n99UA6\nH5ZG9\n450TW\n5J7FQ\n0HD0T\nN0N4I\n55UAT\n6E7Q4\nQZ94G\nIU5TH\nA6JLX\nCGPBZ\nCSLEP\n3Z7KH\nXQDQ4\nDPKMU\n9X6DL\n8QL4N\n40NIM\nJELL2\nG71VM\nC83CD\n51J43\nPQX96\nPPXPA\n0SE6A\n2FW38\nDP7KP\n2O2LG\n6TJVS\nUETKQ\nAGJH7\nA2Z46\nYWO77\n1MU5L\nIJN3M\nUANDB\n391VK\nQ1SV4\n02XLP\nRXIAX\nFN457\n4EM25\nPSSJ8\n0JXN3\n45P7D\n4DZ33\n0L0KS\nES2QH\nA3AV0\nHKY1M\n5XAMJ\nUO607\nKKGJ8\n7DZY6\nCF92N\nOSIKP\nZFT87\nMC45U\nBWG9B\nU5M7E\nSBHID\n97NNW\n1KFLX\nMI4SN\nL09BS\n6YH19\nFV9AL\n8WZRF\nWEJRX\n7B1CR\nVX39P\nTSYR3\nANXB8\n9OH7W\nW1VO2\nDJVZQ\nBE51K\n8C8FI\nBBQIS\nKZW3K\nEGNZB\nC4HHB\nLQEB5\nVUOQF\nR4ENI\n77KWE\nTON6G\nR1DCJ\n50N4E\n26YPV\nVQN81\n3YY88\n80YWL\nM9KMN\nVKXLL\nGAM0E\n68QO4\n5T607\nW4U3V\n5D1FD\nW8TE5\nFU5AP\nWNYV6\nPN4MI\nGPSIM\n7GF4E\nETS92\nQIBAJ\nK8ZIK\n7RI1Y\nDB3Y6\n0DAO5\nG3TEA\nOMX6W\nP81OP\n31TDO\n4N5P9\nWVOQP\n646CU\n52GJU\nEI17N\n0UFGC\nUKLQ1\nXZ0KV\nK87AC\nRSTVT\nVJ2QS\nRW587\nEU10X\nHS521\nPN7N9\nVVMYX\nTJKGJ\nSGAGB\nEP19T\nG2UYF\nCJP4R\nB69CF\nUIHDF\nF6Z7U\nDDV1G\nS0LA8\nWIQ2O\n6HHCU\nDB07P\nY3YE1\n40DSU\nMMRRV\nQ9DW7\nOKL5S\nRTIP8\nBGQIF\nLZ07A\nVB1HT\nC7V0X\nILKXV\nSBG5F\nKKONU\nN8N6U\nEFR6I\nPKNT2\nBOHLW\nYUCU2\nEYV38\n8ZHLV\nACJBD\nQQRP2\nBMF6X\nQNPDC\nNHLQ1\n59X8N\nHJ2JO\nNHTSB\nC8WLX\n2ZG3U\nP3JMV\nRF4OI\n113YU\nV8JOH\nDNZD8\nOZPA9\nZ3AGB\nR0OI6\nLEOL6\nTTRAJ\nR0OGE\n6912B\nUAT1F\nO5JIS\nE6Q95\nSVQL5\nAMUDT\nMX9XB\n58YA5\nH3CDC\n3BVG1\nBYSQ7\nYXBXH\nKCLMY\nDBN7R\n3RSJV\n1BUFQ\nNNG2V\nVFDQU\n138LG\nWBT2F\n1UNXY\nKT3MJ\nTNEEH\n7L3DI\n883AD\nBSFVT\nTHS0O\n11TTU\nFGEJI\nG4O9P\n472B0\nBMPEV\nYC3OE\nCALKE\nO8FBU\nZIU9C\nEAKL5\n9PSZA\nNEFHO\n9N44Y\nAWGMW\n76BFU\nK56PA\nZ1VB4\nCA5OI\n6VUKN\n5Q6N6\nFT3D7\n42SEP\nMAPVV\nDSWWV\nD3PPI\n29T54\n3C36H\nXZPAS\nWULQ2\nWZO6V\n3731F\nKUO3N\nFW1L0\nFZ6AD\nIPNEG\nT1OQ2\nXY2M3\nSF6NU\nL80CV\nXRR22\nOGK5Y\nU8V9N\nCRW0G\n1D31Z\nEUOT1\nZ0IE9\nU72GG\nD444N\nIOL8Q\n3YNPY\n8TIC7\n7XKUI\n3V2HJ\nPN7CX\n0J5T4\n1RNK6\nV9JJL\n4PCSC\nSFH7G\nXC9EY\nOY50Q\nK8MMX\nKNIZK\nZGHLY\nP4WRI\nLGS4C\nTF95Y\n39SXL\nVGAMG\nFYJHS\n1IIS5\nBEUCN\n8W31Y\n9FHVW\nE7QDZ\n2DPEC\nEXPOA\nFDNWD\n52MV9\nRSFII\n4WYQ5\n6LBDM\nTMTAC\nJY0I5\nV1SQH\nY4P3C\n6J00B\nXP6CJ\nSFDTP\nVMOBC\nSB7CW\nKNN3G\nMMTED\n0GR11\nE4FN6\n75KQ6\n4ETXZ\n1TGKL\nJ88MJ\nX62WQ\nDR4R7\nLY10X\nCOT5L\nWESPT\nXLQ6X\nBQXVG\nETQYM\n9GLQZ\nC3CGB\nO6FSN\n0DDYA\nZK05Q\n2URXS\nGK7S7\nMEZVN\nL0CK7\n5N7EW\n41EQS\nTU2GE\nFCBEQ\nHHCFO\nXIUJE\nSEDKM\nNEE6E\nDIDRB\n342XO\nZJPK8\n0ACZ8\nJ06RS\nYC9FL\nTBCJA\nHOI88\n2O6RB\n6QDZI\nS1PWD\nGQ4ML\nEW6K9\nWRW74\n3YVPG\n5VUQE\n1BEFM\nDVTAR\nR0M34\nAAGZ2\nL1MR4\n2C253\nDSGVL\nGCWNT\n0F0WE\nT9ZNR\nF8HLI\n9RSGO\n1HGEX\nEFD6M\n5M17J\nO52BL\nUSNFB\n91YZH\nR2YKH\nKU656\n4JXAK\nXPOKK\nM5YLS\n5XCUV\nMCQO5\nRR8M2\nGZQ0V\nIKZJE\nR6CIX\nX8AP2\nKPXQ0\nH76DJ\nFCQS8\nVT624\nPNVRJ\nPWJ3J\n1WJ6O\nYOVS5\n63TU2\nFZBK6\nRS4ZC\nENC45\n61UIO\nY5826\nGRBUE\nQTOJX\nY4PAD\nGGAN0\nVPBIO\n61N26\n2MGC1\nCVTII\nNDD35\nFBIVN\n4U52R\nDDWK5\nM23X2\nWF8WM\nIO712\nH51V5\nITJZB\nFJXBX\nR1X8P\nHOZ76\nHD38O\nNF9ZR\nCO1S9\nSPUPH\n0M2DO\nNVGDG\n7G6F0\n73NG4\nUL65N\n12VVC\nFQ9QX\nSHMU7\nSHP4R\nGJNI4\nLNR61\nFDPHZ\nW2DAK\nLCZ8F\nKR0SH\nZP8AL\nOHLSE\n7NW4V\n8NJD2\nUNQD7\nHONL7\nF1MWB\n7NBPG\nI6PBQ\n82R7V\n09F15\nEF2YJ\nOXC4X\nCU9RE\nTTZVW\n537I0\n0CX32\nHUNW6\nDED50\nH9U38\n8AKRP\n4MKH4\nLNEAG\n5JVMD\n8FH96\nSP8UG\nDTJ6B\nWDCGH\nB8IYJ\nG4WCE\nD0V0Y\nXXMN1\nNDBXV\n48CYX\nWHJ70\nMHQYD\nLB006\nCZY4Q\nIA5TC\nUBUKL\n1YSGI\n6LNYW\n4SN6Z\nRZIAJ\n95HQC\n8L9AJ\nNPEA3\nUIPXF\nHYD3N\nD8BTU\nZGUTC\nUD7R8\nX2LBW\nI6UIG\n0GH5O\n0IAGO\nZHF60\nFWQYI\nQ9BRQ\nJ99Z8\nVSYFA\nUJXLL\nXXCS6\nJAAVR\nE7Q3R\nXJH0X\nZU8Q1\nHL9YR\nB6ZIW\n8ML3S\n21E40\nA3MOW\n6E4L5\nIDDTF\nBCUTT\n0A8ZT\n3CW6P\nIZ978\nRHYAJ\nK8AUX\nU7Z37\nKI0Q7\n7QLMY\nD260T\nXR54W\n1PALI\nG1CM7\n8WQOP\nMZAN6\nYGQ7E\n24XDE\nL37YS\nE23CT\nUAIHK\nQSSCH\n6YTAJ\nF8SNW\nL3Z0M\nN93LD\nGNUZK\nA58I2\nUL9LN\nVSO80\n57NFY\nJSY2I\nDQ46N\nQEXP4\nTOOYI\nEN3QY\nEUJK0\n76DE2\nPROQY\nM1B7N\nNXUA9\n62VEF\nCBXI2\n23YS1\nTHW67\nFU5BL\nTGKHG\nXMJTG\n1ESKX\n82XPD\nW3I8W\nN3SBJ\n6BXG4\nH4KNQ\nARESU\nPAXNL\n3FMAS\nRQRR6\n9JI9W\nDVBVZ\nJ4TLX\nKFC28\nEAGYP\nXRWBL\nICXAE\nECLIB\nVGPCG\n9HOV3\nJCKRL\nQBOOH\n3LLXX\nW4C5O\n5B4HF\nINA5N\n1IJ7V\nJFU3J\nC4OY0\nP7TT1\nP1LWC\nYDTH0\n0M9ZO\nY8XYL\n8SVWO\n3LM6H\nXXDHJ\n4T97L\nFRC6O\nBRJ0H\nA84J7\nV9W9C\nZU00I\nOJFYD\nW9HYI\n8F17S\nL7HA6\nCNS9B\nBQKW5\nOWGPH\n51ZY5\nS4UF8\n320VL\n313G8\n47ZXN\nZSL58\n013SD\nL4FWN\nD5IDA\nNCLD1\nFIA2R\n74S1R\nL8FFR\n472EJ\n0BZAD\nZUKHZ\nK4X20\nVEHER\nZAJG5\nKAKC6\n82B2V\nDW4YF\nDVM8I\nZRXQ1\n6Z9ZC\n3FEYY\nUIPJB\nBLFEV\nERC0T\n3QY79\nMDG2T\nMX4FM\nB5R5B\n3MIWR\n0ZC7L\nCA7T0\nUK5AT\nTSKZL\n4VYE5\nQRULM\n0USFX\nUJJ6Z\nSRTW8\n9HTQ1\nCB1Z2\nY4X8J\nKB0Y8\nG4IV1\nFU7HP\nGY9MZ\n3C9R2\nGHJ8Z\nCSHUE\n61WBK\nHXWI9\n81QUM\nFPJKR\n9JPV3\nLBGFT\nF1C8I\nVOBBG\nA0PVR\nC1QDS\nTZSIE\n9207X\nKRZW8\nD3N3P\nCUZND\nSJJ35\nTMA9G\nEC695\nOIRPJ\nVWAEL\nR9NRA\n8DQ3V\n8I352\n8NSDT\nKJ428\nCSQLJ\n57A1A\nQ7YXN\nRVLLF\nXBTN7\n6EU06\n9SZG2\nQODUB\nR00L7\n1HP1X\nFSWT4\n3C9L1\nL9ANI\nRVV5Q\nEM0B6\n8QTVQ\n5VINT\nYNIWQ\nLW51F\n22A2G\nUXET8\nB8JAF\n0D5JP\n0M7YH\n1EJKT\nPGKB4\nT6OAB\nCY6U7\nSVA4D\nSOR8E\nQHNTC\n1T8RK\nX0BEF\nTW12W\nIQ4GU\nK7PVL\n3TV9E\nHLMQ8\nCF1OQ\nXQSXK\n08EPO\nRYHHP\nWJ1E7\nGKH4A\nFYH25\nG4JHX\nL5TI4\n84893\nP03FP\nCCN3E\nQ34XB\nYJ06D\nXGL67\nD2VU8\nNPNB3\nC5LCU\nDMANO\nFL6DF\nH603E\nYPQ97\n5ZDNU\nQKIYJ\nXQITP\n9UU4H\nD2T7Z\n5U92L\nEOD1J\nITODQ\n3EHAJ\n83654\nE0IME\nQAJQC\nCR5G1\nDEZJ5\nUB00R\nVJ3B5\n5AYUN\nU6GKR\nKS29V\n4L6GZ\nJI705\nPGGRZ\n57QKQ\nZ9IF5\nI5MCA\n5VDT6\nUPWTC\n9ONDD\n8EYST\nSZYJO\nIOMVF\n0C5IQ\nI562C\n69EK6\nX75PJ\n974TA\nCTCO8\nAKKWU\nYBXCT\nOXEMQ\nG7GVD\nY5NDR\n8X7D6\nYUEB9\nJTM7L\nCQPZU\nYJ888\nMUGVM\nW9XY8\n2IC8O\nOADOE\nFRLW2\n25QPB\nAHZWF\n24KQ5\nEMMYX\nH3E1E\nENQUT\n10ND1\n5XEOB\nNL7BY\n4G00A\n573OJ\nL1Z8A\nWN38A\n3G4PN\nT1XP2\n3CIVD\n7HV9Q\nG64VQ\nPURYC\nFDVBR\nMNS8T\nS9P0W\nCRNL5\nQXBTG\nX1R6D\nRKIC6\nVF3Y0\nGOWDG\nFKAGD\n5657O\n8BNUT\n4CAHN\nJIS2Q\nTYHA8\nLCEM0\nLKYCT\n47D1Y\n3HF45\n35W7G\nKRRBE\nUKGO4\nKD2H4\n5G9SV\nLPPFL\nNIG0Z\nRRNDQ\n63WHZ\nL2DR0\n3D81G\nS2L5Z\nUJO36\nYMGGV\nK1D2G\nTYYZK\nI5LAC\n0DBQD\nNLM0B\nR5IQ5\n3O6KD\nZ3DBQ\nBLBJY\nTX020\nC6F8V\nNH3LX\nVS5IY\nB8DL6\n3U1SS\nO8S0J\nTOE9V\nORAT0\nW1QG3\nORPD5\nMWUIN\nGSQX3\nHJ8U7\nUECH4\n01K8X\nP68QV\nET224\nBWKJB\n469ZJ\n1L7XE\nFXBGY\nTZF0X\nB6LRC\nBZ171\n4Q3N9\nJH47V\nIQ0ZX\nJSBMM\nC1F1D\nJ0SZG\nJPEM7\nL5G6N\nT1CQE\nKWQKH\n2QYZA\n758T4\nUVN96\nYIM12\nF5OZ5\n97JCX\nXB4HN\n7JZGN\n5L04F\nSP6M4\nC4E9X\n07RDG\nJL6MG\n83KZR\nU2FA5\nKVONB\n7EHQU\nQRLOG\nSE3WY\nYJFWW\nEI5M3\nEAVWL\n297S4\nUXEL9\n2JP64\nCBW6S\n7UQFM\nIF4Y9\nPS29P\nLLOGB\nK9V2R\nKNGUT\nAXZVQ\nDSHVL\nWA7WD\nI5F23\nX4YHQ\nCTFYL\nC6LW1\n7SKSD\nPVB4S\n2IS9G\nV7PGV\n58R8A\nO1YWR\nCM293\n29E4A\nXBPEJ\nXW1LX\n9BCZU\n47I6H\nHONRP\nLWEPB\nCI6H7\nLHMMJ\nHHZUI\n808H5\nJUI9U\nGYRQH\nZBDB5\n16S3C\nEQO9N\n5NF0R\nMOKPE\n4WX0H\n0BXRP\nOHNF4\nAB06W\n2XT4N\nOTLX9\nPB0JI\nSFHY2\nEW3VV\nYRPAR\nJL5O0\nNMRF0\n05ZNF\nQ366H\n4JOAD\n8ECJ1\n06EDS\n0I0FX\nRGY38\n6VUIO\nWFVD3\nQO49P\nJ27HW\nBZWSJ\nE6389\nG1BSD\nLEG82\nRUMS5\nBVS2Z\nMZK2X\nBTN7H\nP2HZG\nRRS54\n48BUM\n2SYBS\n9O0HH\nH378S\nTZEJS\nSQ3C9\nSA9PB\nWL1DJ\nK1M15\nRK4U5\nAFY5E\n0BNML\nBPN95\nK8DDR\nML12Q\nNTW37\nMCHRP\nE6P07\nNUW2S\nJDDD8\nBYDSE\nX1XOL\nZOTR8\nJG7BS\nW2NHA\n7ZTGM\nSBT2X\nMN1MC\n00X3U\nRM1FR\nFNPEY\nVG8QP\n5UNDJ\nXDS14\nC3ZJU\nZL55N\nGM4QR\nNR94C\nMS58Y\n00N38\nEBJN1\nCYLQ0\nAWAFY\nDG33V\n6H4D1\nN6R39\nQ3QC8\nZ04NK\nY3B48\nE27NK\nXJFMW\n0M1ZU\nZS2WD\nW0624\nKA9T3\nJU74I\n9IO0Y\nOM66H\nITJIY\nGW2Y8\n1UHL7\nD2ES2\nIHSRC\nJ1RLO\nNQPM5\nRGE8C\nNALYZ\nP4MBS\nFXC28\n924QD\n1H6PS\nQM4AD\nO1LOW\nSSH5I\nHYR9Q\n75RPN\n0ZOPH\nKTBKA\nI164P\nQK5KC\n2LCLG\n2VNXF\nOFPAE\nOWAA9\n9AFQ7\n1AR0K\n5OLVC\nNO9MI\n0OMFD\nIOBKP\nEXG45\nM0KKW\nRXBUJ\nD9F5V\nJYBGS\n5J91T\nTC015\nD2ORL\n509W9\n4C1KY\nPYIA3\n0YTSJ\nGFON7\nMH601\nN7243\nQ18ZQ\nGLIC0\n9F691\nHA02S\n6R7QW\nVLE11\nZ1H81\nVUSFK\nQ5Y02\nTRFB0\n36EK5\nQBXRP\n5QW1X\nBJXRT\nLRPBA\n1T2W4\nYJQO3\nH2B7U\nXHL3Z\nPPUOO\n52D5Q\n8Z5SJ\nGHARQ\nTZ27E\nBALXZ\n56ASU\nPDRVY\nYRX5H\nFH9AB\nO7N6K\nQAHJG\n7N4TW\nJUCOK\nY05U8\nIB987\nNZX0U\n5ZXA3\nR1B8I\nCSYES\n5X5DT\nMFQ5S\nZYVTC\nZ6HEA\nDFPOJ\nAJLGU\nGQZOR\n5SGU6\n4KO74\nMILRI\nB9XZX\n41O3J\nY9930\nA81AV\nIJOAK\nZC8L5\n7HZHM\nIN2RL\nUVPSZ\nJFXG8\n2DPW0\n1NYKM\n897OI\n97Y6T\nVPJLN\nEG1MY\nQX89T\nCMC93\nS0B9O\nOQM2I\nPQYWB\nKVYOZ\nEN9TD\nV6M35\nAQ3CP\nEJL2F\nRZ9SZ\nN4Q0O\nXJS1X\n3Z08H\n15TWQ\nJ3UKN\nDZDD2\n5GK8W\n3STO2\n0BH84\n0PKMF\nLY2GQ\nW28C2\n1ZBUS\nFS94F\nQRZK5\nGQT29\nAPZUZ\nC8BKE\nRXF2Q\nEASCD\nGWUM6\n7C13O\n3SKPS\n83V0A\n1TAMK\nT87QE\nJTZZW\n2MAZY\nQ07CU\nDF6FY\nHU409\nI005F\nTZL6H\nD548M\nQPX3S\nCC610\n9SIZS\nMDXF4\n8MDSA\n9MXDX\nQNQOG\n45Z2A\nDSG0F\nE5O0F\nHOI6L\nGWDF9\n3VRTT\nWHVP2\nVSLQT\n5P0ON\nCN5G4\nCYT5I\nFI2DL\nGIZ95\nWYCRK\n56PK0\nJKR9A\nKG2LF\nCPZZ1\nIXJKT\nUGJSB\n8XXZZ\nF8M2Y\nANA5N\nO95PG\n4LDRK\n6UDGS\n564DX\n4KOBZ\n2M9YL\nOM2NF\nAH4UW\nSOTQ1\nG752J\nF8E8C\nO8PO3\nJL1W2\nJOYAJ\n2K5GR\nE33IO\nREH2U\n0RP6B\nKDK62\n8ISS6\n1DGC9\nIZ2XX\nMDZVU\nIYU90\nT9DF0\nGLOMM\n7S3KW\nKTXE0\nNZG0R\nWMBOO\nII0EJ\nPE4BQ\nL8120\nK7E8L\nX16WJ\nGNNAE\n2VCOB\nV6LP3\nEN0CD\n673VM\nC4DFA\nQO0UU\nK4XO7\nX3LEM\nYYHX3\nNBE4C\n61RMD\nRB9VI\nJ2J3Q\n9JHH9\nTSI2S\nM5XFI\n7JZTY\nLBG7L\nTE34B\n9T11N\n45FWP\nK9GJF\nD7M6N\nRBAO4\nLJ0JS\n89MAO\n0OSJY\nILQ2R\nOL2JP\nAQ5M6\n24XHS\nT5JY8\n0VMUZ\n1L220\n2CDOS\nRH44U\nDZ0SB\n3SDJE\nGMMVC\nY25DQ\nW4W97\nFQ6OB\nCRTUY\n93ESZ\nEWCV4\nNKTWF\nPQUF6\nR08G9\nQDRWK\n7EYIL\nKWONB\n6CMWO\nZWE6N\n6NWDR\n0EGNU\nUBC9N\n8MR9I\nUK8KW\n07AWM\n5S1WQ\nOVMCM\nLWINQ\n3C8OG\nNKOJ8\nDOGYU\nA96EQ\n3XDQC\nUSNP1\nVSAA7\nIXISD\nD1D55\n7SUTI\nSWZWL\n8K380\n00T4B\nZEID0\nRZDEA\nEIK9W\nI049A\nD7KU2\n5XLBY\nE6IL3\nYBVVZ\nWPFKR\nSJ6X6\nYH7K4\nZRITA\nD52S5\nIWF0U\nK5IAK\n1J3I0\nGR5N6\nKW3BO\nFHXKQ\nA2771\nYAPN7\nCIBGY\n85OEC\nI0HIX\n2G6A8\nFFBK3\nSXI64\n13YII\nJVISI\nB8BSY\nZAIHG\nKU2T0\nKX7FC\nEFI64\nP3WQV\nK7X5G\nYE991\n0FVYR\nMNGT1\nPZ0MM\n3GXB7\n4GDTQ\n10INO\nXNO6M\n39T0D\n555RO\nC6LDA\nE1U37\n9SP9P\n6XGUE\nGYAR9\nGANC6\nP23HN\nPBGYV\n330ZE\nOLSMC\nK5OQO\nL8N31\nA0T30\nQB8O7\nF3ULU\nTS75H\nMEYZ5\nNU09Z\nAXIW1\nGLH5S\nRBCU4\nK0C0A\nL58KN\n9D37U\n4GWNV\n0RI7C\nCMD0M\nYM5CV\nU8X15\nKPHP5\nZ6HSZ\nB7T3B\nI5Q2Z\n9L71W\nCMI7U\nRCA3E\nJW2HC\nGF6TR\n6VF2L\nUU2LH\nLTYK5\nDJ7DG\nKHWG2\nXIUQJ\nQFVMA\nHRR0X\nOWLRQ\nZP5TG\n9IXS4\nX4WWH\n9KYMU\nTCGAY\nMY9UC\nISTQI\n63GDX\nF3O37\nKQLIJ\nY9WZW\nNU4XA\nGLLNH\nTW6NZ\nSQY6A\nGNPSK\nB8W55\nSL9P2\nJ8781\nA0ZW3\nD4LRR\nX4CZH\nLT13Z\n8MY8P\nGIZCL\n0WU7S\nD740L\nLP1F3\nQL92H\nJXNEN\nHCM5Y\nSTAFD\nN50C6\n7K2CS\n2LMQF\nD8YOL\nREOES\nTFQNW\nAUYOZ\nKSDFR\nOK2TU\nCC87Z\nAVJFE\nZVCMM\nJ84TZ\n243Y9\nPWO7A\n9GOUI\nYA7M0\nGQR08\nJZB97\nXUTJZ\nGXDGV\nVNQES\nM7KH7\n88LYX\nO7KDK\nZZ9RN\nWBX8F\nMTA02\n6QPNW\nCVX9F\n8IBNY\nYQ6Z6\nQJIAV\nK90LN\nKK8N9\nIZSPN\nOBTP8\nPV856\nRE1M6\nDH9JU\nRFMRB\nB7HDN\n42PMR\nWIOOY\nONT61\nBCONW\nV9DQI\n3UWW0\nWTU0I\nUDF8X\n8J723\n7UZZI\nU6L1X\nBE43L\n78XRT\nGFVSV\n27JQL\nJ8KPE\n3GA59\nKGU21\nNH9JS\n194WK\nMWC7V\n3V7MT\n4JSK6\nE64R4\n5Q0CX\nXAW3U\nIGT82\n3DNW1\nNYXJ6\nCLORP\nUCPP8\nF76GD\nOSENM\nNIRNP\n5T9CK\nDJ6ZW\nPP5KJ\nH1GWM\nJG7UX\n8RSZ4\nSJGZ2\nHJOJ0\n1THHL\nT8XGN\n5FDHU\n44Q8A\nZWPS3\nHFW6H\nVSZ4W\nVAPVR\nW495O\nWLA52\nTMATS\nNO0WS\nUAWXI\n9OEWM\nMV37M\nITXRK\nSXYLN\nS7RGX\nFZJTT\n0WLCJ\n8WJIR\nPDK24\nWT3IG\n57MEO\nUFVO8\nH6ROK\n4JH6O\nEOELV\nOIZT9\n7TJ14\n8Q0EY\nP8Y27\n2SIO0\nZ6IAE\nRKU88\nFVSB0\n7YMK9\nEVHAZ\n9D2T4\n7O2LP\nCBLSW\n1GQAJ\nO7NI6\nVO45S\nN8R3F\n705RV\nTE421\n82XWA\n0QMGP\nBMLFA\nKX90W\n5MSZP\nLPR6Z\n8R0SZ\nWTFOC\nPVVQS\nG6BFY\nO8DER\nI31V9\nZRRC8\nPM1VD\nAQ69X\nOOCOF\nU0X4P\nN2GFQ\n9Z1A3\nNWNUY\nRY8ZS\nCD11G\n43OXO\nO9WFN\nFQLS1\nFQAAB\nXJH5D\nVE52Z\n8E5AD\n1KDFH\nC278V\n9TL3J\nIWMW1\n561H5\n3W31X\nCH8XJ\nE661I\n1VMZM\nV24A5\nGP5CT\nR4FOQ\nGMTL9\nNFXPI\nWU8I6\nUF91R\nPUY9Q\nZS66D\n10LP3\n8CJML\nONA0S\n5Q8C7\n9A5MP\nR6H5P\nMLDGN\n80E3X\nWNW0S\n4HFN2\nAFTMI\n1X9A1\nZDFOL\nI0IW5\n0NZVB\nBFW9A\nWJNJJ\nJY6TC\nZH4JE\nIJ01G\nTF6P8\nE5WJJ\nZ97SD\n5GWS2\n34IUI\nGEJPM\nBZ4K7\nI8LEO\nZI3ED\nOR3G4\n6QSON\nN8XDV\nI9SSV\nAM3R2\nEYQ6U\nMRSYL\nFX7ZY\n14A2O\nI79Q6\nESTDK\nD9UO2\nA0CJL\n5LH8B\nPV1WX\nJZ9L4\nWJL39\nBB5DY\nNUSKJ\nVKLP7\n7EEF0\n2SKOA\n2FL0X\nIHLXC\n24B2K\nMNNDB\n8GXNA\nJ4U86\n6YZQO\nFTG07\nUGF6Q\nEDKXT\nIM4UD\n8XC4G\n88TCK\nT9BED\n7M1D0\n099Y1\n5J9HP\n14JPP\n7VMDP\nA18EX\nT2J3M\nAZC1I\nU2VK5\nDQGYG\n2LTCY\n069GJ\n0BLSL\n2U0QT\n39TDM\nOK2AF\nWRFZW\nQY75H\nRHVM2\n1Y09V\n0M1X0\nIKQLJ\nDPCGS\nGO761\n2G59W\nNU0UK\nHETLN\nJIGAJ\nWTJQ0\nSMLI0\nY6MUU\nLOSLI\nNLU6W\nI0THD\nAXYF9\n9KGOL\nUMXKN\nG0BKH\nSY1JE\nSAFT3\nT832F\nQXI52\nOUH2U\n42MC3\nIST7I\nBZ5AU\nRV11J\n2RU6J\n07LG5\nTS2TD\n0RJ18\nS6W5T\nLI5VF\nSG99Q\nN0KQ7\nZ4Y02\n01O27\nC3JAS\nJRSPH\n1WWJZ\nAI6KJ\nKENG1\n3H09L\nUMOE4\nIK8PA\nZCOSY\nFTWBB\nVWN13\nCNSMI\nPIJCA\nJ4VCR\nNDLY5\nJO6GB\nB17UQ\nCUB69\nNAWO1\nM7Y6V\nI8BC5\nZLRFB\n8V97G\nBZ0YN\nP9R08\nYUOVC\nRJDH2\n3EDV7\nJOLLV\nEKPAQ\nNSUHV\n52FNN\nH8BTR\nWQQ4Q\n5RY3S\nYT9AL\nVZY0C\n7ELBG\nXKPLB\nCH0PM\n7Z69Y\nICALV\nW8WRK\nDC94A\nVKTYD\n3YC35\nLKQQO\nB0MFE\n6PYRZ\n974PN\nTR0TO\nT5MLJ\n6AHBW\nT5E2T\nYH85Z\n4BSR0\nTVCQF\nAAJI0\nJ5ZZQ\n3064K\nRE9O1\n0XRD1\nSLIH4\nQLWQ4\nGT53K\n66J84\nFD9A5\nP2JL6\nPT0D1\nWGJ8T\nMMGTX\nJBJGX\nU4XV9\nM704T\nEGVGL\n55V6Z\nNB0S4\nTIEA9\nWCERV\n3R7NX\nZS9IX\nH8F1C\nXDT45\nAC9NI\nN0DXI\nHS3XP\nIC4D5\nQCIV0\n4FAWP\nKMWCM\nLECWG\n0O022\n937EW\nJCLES\nLX54K\n0OQVD\n42E9I\nJCGWC\n06OKE\nJNWX7\nNVF2S\nX5QMG\n9AFSH\nJIWY2\n2PMYI\nXHQT1\nF207R\n8UQVB\nKTQEL\n004QE\n45D5U\nZSSNJ\nB2NBR\n59CDL\n8J5S4\nW7EHF\nZOBZV\nRYK18\nABHC6\n50TLF\n13IJA\n5S2ZU\nF8A4G\nGBPPR\nHR6MF\nGIA8M\n8NW4J\nYHPLU\nX8DZV\nR3O7U\n81YF0\nCAND1\nM1SRW\nZV4JV\nHA1XJ\nRS9D9\nWI6NB\n1SJQX\nZXN6A\nZPNW7\nECXEX\n4CV3F\n4VODV\nP4HXN\nTNOBD\nSYMIR\nUTLNI\nVKKIQ\n5TG5P\nYXPTI\nWXMTI\nJ1EA0\nG4E4S\nEAWW4\nMVL2O\n5OCXJ\n8BA61\n8AZRX\nH4YTC\n7ICIA\nEIKUN\n2XSK6\nQQUU5\n58VZI\n75ZOJ\nW25MK\nMBSW4\nFN71T\n18FTZ\n4ZJSI\nJWPS5\nP4AEF\nJCBDT\nUBDB5\nD6D85\nRWPS8\n0H5VC\n44HW5\nJ6P6H\nHJH7H\nWK5PL\n4AQZ2\n1ELWC\nE8468\nHQUHP\nMZOPX\nQ6IU9\n7UV4O\nDZNYK\nDM2HW\nJPUUF\n2H9YB\nO0R1A\nPRVP0\n3MSZA\nAMT7R\nYVKIV\nVXJS4\nGBD1Y\nKVXJ9\nE6DLK\nAKO6M\nF7TG5\nKOVTR\nFPJ9D\n5NV2Z\nY1HGC\n9JZO2\n4J1AP\nV1WN7\nBL7OF\n5C4EK\nS591U\nDLFPX\n9HG4Z\nI7AS7\nJ48N6\nJVLAZ\n2RFLZ\nN3U9S\nJ9T5D\n1CYLM\nV2GC9\nLGJAR\nZHRPD\n43CCM\nYZ8HK\n2P7A9\n1ZWPP\nQUXYH\nV3SOF\nSY5QP\nAOK1L\nNBSPH\nHY4FS\nYSE1G\nXMYXI\nQLEN3\nYSKX3\nHBWLV\nXE19C\nW3SC3\nWKPQ3\nFXZI5\nOE2M1\nZF7YA\nB82GJ\nFYYFX\nQ7IQI\nHSEH1\n6ZWSU\nV0ZD9\nAK2KG\n8MQH6\nMAUMO\nEHS68\nG30NS\nSUJWY\nKERO6\nSV6KF\nVCYH8\nG852Y\nOKXIQ\nKB7WQ\n27DCQ\nUM5II\nXT9D4\n1W6YY\nYOCRB\nZDV60\nGHC5X\n6IOV0\nOP2SS\nPPY0W\nDCV2M\nTEV5K\nQ3BCC\nM8OYC\nFBOF0\nD1NT7\n3UACJ\nU2AO1\n3J9L5\nXQVXF\n9LWQ6\n2ADJI\nB1AMA\nLA6AA\nYNWMW\nLUTIO\nQ6290\nTAQ25\nEEVD3\nIOGR7\n2OREK\nJCT0K\nH0P5D\nBFCU9\nTUD6M\nA3XXB\nL5YHH\nGL2JW\nFAJEA\nRXELU\nQCVZN\n5B9XE\nLKNZD\n0DVVD\nU8M2P\nVAV4C\n6C0BK\n5CN21\nOTIA2\nB4ED1\n86E2E\nYJ1KW\nDJ87X\nN0ZPI\nOVD84\nNW0KT\n8SDK5\n95GB4\nTDAY1\nNRGQB\n5R8BL\nBI4KK\nDU416\nNO1GJ\n7SNIO\nQOYH2\nQWKVM\nCOBS0\nTJZ0P\n759MY\nF1V30\nU502L\nOPPVW\nNI15V\n6HT0J\nBM3UJ\nDM2XL\nRQRRD\nS2FUO\n36T5X\nAL1WC\nHOYUT\nL39A4\n4H64T\nAIJ0M\nFXGQI\nKY2KA\nMNNJS\nQMIKJ\nHRASP\nUY0SK\nYQT32\nSJ4QF\n69R8T\n2Z8G8\nXVI3M\nY3M3W\nURK3G\nG8NEV\nC0CMQ\n7XMBM\n61IVZ\nA33VQ\nZMY8M\n39E0I\nT9Y1N\n0PU21\nAX46Z\n9POJB\nK0FAG\nN0G70\nSJ51G\n30I35\nMUWG4\nWD35N\nLLT3E\n8UCK1\n4U8WV\nLSFJG\nW0QSB\n5IPJA\nS7JTZ\nRVVDR\nT06AT\nTZ9FE\nT7ST5\nIQA16\nM3OMM\nJ7BOV\nRPXAC\nRLQ9K\nPRTAJ\nKZ36U\nCD9GP\n7NXWU\nOHNUQ\n5VUT9\nFQS7O\n55NRK\nUNWMJ\nX9M5B\n9RRED\nIALUY\nHHNTA\nBM9NZ\n318CP\nH608V\nIGZZG\nMPHFU\nYYLKT\nTUJF4\nA2X7Q\nURAIM\nMBAA5\nYE6TZ\n0TDOP\n8B4ZP\nN0NLE\nAVL8A\n7ZL8E\nV0WK7\n3JXKZ\nKQ6XW\n9TM1K\nYMD74\nATIAW\n0UK3H\nKWZSA\n12XD3\n3Q6N1\n7XCAP\nGY8P2\nXK0QV\n1HZGH\nJ5K87\nDR1ZU\n874F1\nQJM3B\nJ6JNK\nJVH7Q\nFQM2N\n21WN7\nECFMO\nGIIF8\n75M1Z\nJ3Y7L\nTQYV1\nGKH0F\nRPY8D\nUMTLM\nFORXE\n3WMV4\nC7G1S\n3AKML\nNDDHA\nW8CWW\n11L5M\nE6ZBZ\nH0L5S\nSW8VM\nF19VE\n44T8B\nO0349\nDSZYT\nKCRQU\nNBMH9\nSW5TC\nG2JR9\nM9NAG\nMS4GA\nYW5QQ\nFYHTC\nFKK5R\nQYM5H\n77Z0Z\n51RLB\n3IPI3\nL0HDB\nEZRQW\nI9CDV\n4683D\n3HRNV\nK8MZH\n1TIAK\nTJJKK\n41F2M\nSBM3M\nW0XPU\n87Y64\nZQKVY\n2Y8XQ\nJR6VG\nAAQHJ\nGG3K5\n1XBU2\nLLQBB\nBB7WL\nZX37G\nRX7TC\nGFK4S\nH5CJD\nF5UVQ\nMSACP\nVIN5T\nD1WYU\nIONV9\nIDXZK\n79VVK\nYACA8\nVG7S6\nC46TD\n9J0RB\nZIP18\n3N1I2\n337O2\nLE7PM\nVJ0LT\nTCI7K\nQE4YE\nXO8NL\nCM6T8\nQI0EL\nICQUJ\nI87SH\nBDY1V\nAFCDN\nKA09C\nCUSTU\nQ38XP\nSLHDI\nXKU2U\nULD0T\nSLT0S\nJ3RP9\nBI6Y4\n735W9\n1FIGA\nLZ2Y4\nM4Z0M\nYPRUL\nK7NRW\nKZS5M\nDO48Z\nJNK11\nTH3M0\n2B577\nJXTAD\n5R7VN\nN56QO\n1RD2K\nTKAUR\nW7EDM\nHSKVH\nTQO6O\nP0CET\nOEM65\nB6XQZ\nG2DIN\n3LN8C\nB0XI9\nV8IGX\nTCJCJ\nJ59UP\nZ3H4P\nW65SM\nBIQGN\nIKYAW\n7V4NJ\nXGS3K\nLXEPT\nY2MGC\nIWTWJ\n5HPZ1\nVNMNF\n9U82D\nFTYFA\nGZF5F\nQSVXJ\nMHAGN\nOZ02A\nODM20\nMUE2B\n7RXMM\nETDTU\n9EEGQ\nLV4U7\nI6TPS\nZDWM7\n2AG8W\nEFADI\nD4D2T\n3C1ZN\nXJA7Z\nVD58Y\n8HW76\nNKE77\nNBKCK\nN2WXN\nX2JBJ\nDPLMM\n0SFYS\n1F706\nXXS99\n727IZ\nN86ED\nNACLT\nKGO3W\nSCFIN\nTRHT1\nA9YQJ\n8RU1Q\nJ5DOP\n5TYXL\nFV8CK\nH46LQ\nWUTHF\n1NJOQ\nLDNE2\n13XM4\n2443O\n3R4DD\nSUG5S\nX4BQG\nOETY6\n4UXE3\nLFDQF\nY0MCG\n5EEXF\nYFJ9U\n4YBN9\nXRU9O\nPC7H2\nE002I\n5GHV3\nTDGNE\n1P7GJ\nMB281\n7E2AJ\nZZ3HT\n0J471\nHG7C2\nS5KQ1\nYIIFF\nIIL9C\nSBI6Z\n9J7EW\nDLOS7\n1F4JZ\nYHXU9\nKS5JT\nHQ8BB\nAGGSE\n3W1GP\nOQSXX\nZXHCH\n3MV13\n65ULK\nRMKOC\n8O07M\nBEAAA\nT96JC\n0QAZ7\nFRGXE\n3T785\n4NHRT\nONVGA\nWT46G\n8V8HC\nD7W4E\nQ3Z4V\nZYJJF\nT9N9R\n74WSB\n5D85P\nVVQYB\nP3CLM\nAWR2R\n2KGV3\nD0AGO\nEF7Q9\nG2AMK\nFG9NT\nLLTBQ\nHS14N\nL2502\nGT43R\nX95D0\nDV6CH\nHI4NV\n96ATI\nB4XZD\nICOX1\nQQGU3\nZ2KJ5\n7EJUR\nFFYL6\nYN3AA\nYE6UZ\nKMZDA\nLSCMZ\n5INX3\nF3M1Q\nIKJGO\nSR8IK\nWX711\nVNQTH\nBQA97\n99B6U\nRO8Y6\nJTXAM\nP6JGZ\nKO2MY\nPNRFK\n26RQN\nEJY5V\nJ1KLV\nOXCDM\nENOLD\nFRSBQ\n0FM93\n3G1OQ\nMRZ44\nKTDG0\nW97NR\n81R72\n13IS9\nVHD24\nLQMXW\nSAO1A\nFLLUJ\nREWLB\n8TZSC\n2FPB3\nTNDT2\nGHJ3Q\nX8JVY\nQVBTC\nOVFVJ\n4GLAP\nMLHCK\nNJANX\nBQZ52\nIUETR\nKZR42\nFVINY\n3OLX3\nPOACA\nR971Z\nVXOE4\nJT537\nW5P6B\nU9NI5\nWP5RH\nE89S9\n0KZYF\nLD9EC\nT56KO\nKT2SV\nVE6GK\nHXUI5\nTR652\n3HLP7\nXPXWY\nFK143\nJEB7V\nYMJ6E\n47RAA\nE5ZF5\nC6C7Q\nD0Y4L\nHSWPR\nBIJYC\n7MRKY\nFQ2Q3\n2KMGY\nW019T\nR5WMI\n5OV3M\nQ0IHP\n136V6\n4BIMI\n0Z1PC\nAF5BS\n2ZICJ\nCYCEV\n02DPI\nX9LP4\n8SXHK\n9ZE0J\nZB5J4\nQVD5B\nQUAFE\nQMKZV\nCSPSU\n1440M\nHA8S9\nWRCO6\nKWHPI\nL8CC0\nWPU76\nCH41S\nAZPOX\nDCRI5\nK9EAZ\nMVPPS\nOHOFG\nEW8GX\nAEKYE\nGCI2J\nGN0M8\nN6FZ7\n9YOI8\nRJD1Z\nWF89D\nFDDDG\nOB660\n7LWW3\nMVX03\nTRVEA\nW0YVE\nKE5EM\nFNBYE\nKFLI0\nOJYDD\nHNPX7\n5SBEY\nPAW5E\nMYBRN\n8D6PU\nVW4UD\nPBEUF\nSM4AO\nBQOLV\n51N2C\nT63X2\nHI75B\nKWJ5O\nU33ZS\n4CAB5\nMZZK2\nL0QNM\n2TAT3\n4RKKP\nI75CL\n9MNZ5\nE6RD3\nECW3E\nK8OB6\nPTAZ9\nJMPKP\nJS3TB\nQRSRE\nQACLT\n3IS9Y\nNUKJ0\n1QP1S\nOVFR0\nCDULZ\nO3HV7\n7O6FK\nDJVKE\nF9VSQ\nMKMFK\nZTWJB\nJIUH7\nDSI0N\nYT2C3\n3B97C\n0E6H9\nHIKIC\nPT4XS\nVWFJA\nXRG9K\n7AB3X\nOOKN5\nF024X\nBJ7YW\nFJYWX\nB47TS\nLRJKT\n4FX6G\nLGPWK\nEIT66\n0LHWF\nRJNAB\nZL3QP\nEURF2\n8W829\nOTUV7\n2OHTZ\nDMO76\nFQS5V\nY80PJ\nDHDCF\nTS2DM\nOY3LS\n68OG0\nDGPAW\nGAOV2\nQ5MDU\nIMLN5\n4H61U\nBDJ84\nCLB72\nSB8G0\nATV2F\nB4TWR\nCQ435\nTKJCI\nM014B\nW3NN2\nQMHK8\nRSFGZ\n8H570\nUR55B\nOB9D0\nNL9AW\n9BQ7M\nFQ8FN\n30K2N\n4K0BP\nRAGOI\nKNGRY\n0KTWY\nS4P5J\nAB2V6\nYGL6R\nOT35M\n1L5D3\nPGPSJ\nUR5TU\nR1KMF\nJ3RD3\n1XOQ8\nGMPHO\n21O5C\nJFBTV\n15RTV\n3LMTS\n8TSU4\n7835X\nC10FA\nPXY5Q\n41T8C\nRRQEV\nGLSU2\nMXATD\n3VT73\n29V7T\nBLWIW\nLSH63\nMCMTH\nE0OJ8\nE9UYZ\nG71O7\n3KDI5\nICQZX\n448J4\nBFH78\nX37P1\nIDXM0\nNB0IB\nBW2OT\nCLAWJ\n3QL7J\n9LTZT\nJVOM3\nGFPDD\nA59CN\n4PEL7\nMZ3X9\nUUF84\n4GHHK\nLIQS5\nYAFX0\nO87OF\nUSNON\nZZ4GP\n0HV07\n5TKIB\nYB67Z\nXSVLL\nHJ4B1\nZ6B6S\nUUPJS\nTESF6\n00607\n1LBUG\nXOOPP\nMIAE4\nJ4QHT\nJKWJ6\nV6RRM\nW292V\nN8913\nY2EID\nRJZ3I\nEFUTW\nW5YUE\nGYVK9\nAFIRW\nM98YV\nMTOFZ\nWD12X\nRKJ0C\nJBFPI\nVU996\nVQOI3\nT42IZ\n422BV\nAYZS4\nMA6GY\nYK49T\nYLEEO\nST7MR\nWDF45\nITDHX\n8YFD1\nRBQ9Y\nGV0L7\nABPGE\nV7YEJ\nUSPJK\nDUSJO\nACSP8\n21F9H\nOWRDE\nYG9UR\nCTIYN\nKTXSD\nTBRZ5\nJMCBE\nS06H3\n7229M\nRIZ7Y\nOIL1V\nVBN1O\nPCNUP\nXHN6Y\nW5ZY8\nK7Z6T\n3P055\nPZ0ND\nZC017\nARKBT\nKB916\nXEJ35\nX06Z6\nQQMY8\nHUWAZ\nSANRG\n8NEYJ\nBYP85\nY44TV\n31YNM\nDWH0T\nMJYTA\n1KC11\nT5SI3\nO3Y57\nLR9KL\nI52A6\n1VF27\nPJDUN\nH411A\nUQJ5W\nYQOCU\nDR7K0\n3YQE2\nAHBE8\nYE47Y\nWM6RQ\nRV5CK\nPIJRH\nZJ37U\nPAA7V\nIAHN3\nPDH7G\n07QNG\nOK45U\n28BVI\nHAPCT\nU5RYN\nDUZDL\n580G0\nS2S7I\nJP5NM\nLQC89\nJ662Y\nDD3Q1\nARWNX\n6XB10\nF66WG\nCIUVA\nATCOR\n9KDP0\nV26U3\nNKLTK\nPLJIZ\nUOZES\nLLRKS\nPAS7F\nWISO0\nGOPZI\nEHIOY\n8LVCL\nTIWRY\nWK9HE\nY8L60\nOU3XH\n8N4O9\n83FK5\nLBJ0W\n35ZZP\n77JGY\nZ9RED\nG6K7T\nJ1MMG\n2XXH8\nG3UF4\nMZZ8Q\nKF08J\n3J85M\nGKBSR\nQ5YDL\nRT1JY\nU0P7W\n9TPP3\nTBEV0\nQLGHA\n4KYZH\nTK1VC\n52KNA\nSE2K2\nLCLLN\nRNLTR\nSS3IL\nG6ZOB\nSRTX6\nXOWBN\nSOZ1G\nAK9PN\nJ0AMJ\n8LLI3\nCG83G\nVFAE3\n2PZBY\nDFSHF\nTCJWE\nIULK6\nOWUW8\n7RA0M\nCUQYX\nFLDHS\nOKHVL\nJ2XFQ\n98W87\n8Q7ZI\n1BGZ0\nYO3KO\nEOUCM\nW86WR\nNF45F\n2AIP4\n3MX8V\nAT9UV\nTCOXG\nL8RW8\nK64GM\nVXZBA\n0O6RK\nL3ZRP\n358JF\n02SKC\nLSMNX\nP8G8V\nJQRMQ\nVJG6E\nOPSF8\nHVFXT\nQIT2W\nZI1GC\n4BEZX\nVNUPE\nVZE8E\nNYHD7\nSM41Q\nVS7VS\nO1LMX\n7177T\n00T1E\nLSKA2\nUKSCV\nCXNYW\n3XL0K\nO5V8D\nME4YL\n9OCQT\nZ4Y04\nRG0KS\n65UVU\nJZ45I\nUL5X4\nLKH9A\nHDHGT\nGH19N\nQFL2O\nD9PWE\nSJJLG\nAF8I2\nXJE7I\n4A28I\n6H78U\nCPM4M\nLRDW5\n0WYBK\nNTXXB\nJOMFO\n1GGRY\nBEJVY\nEJZZZ\n62AC0\nSLAH4\nJDZV7\n1GII3\nUD0P0\nYNF6O\nT8VDU\n0TKKR\n17P5V\n15PMU\nFMZOY\n9AC1T\nGGN5G\n2UQKZ\nW1CG2\nJHB0M\nNQMMJ\nEXYY8\nNAZ52\nBDZNW\nZJRCS\nN0ODO\nFQOGZ\nIEQWT\nX817Z\nRG0JH\nVF49P\nHQ8ZM\nXHYA2\n1W6ZK\nVXEXI\n1BBIY\n93REJ\nKJRR9\n9M48H\nWX8N8\nI7GZI\nNATEB\nIBWAW\nA1BS2\nMFGLZ\nQN7Y2\n610PZ\n6TC5G\nXZ2WT\n6OQYV\nCEZ4D\nF75LG\nAYSTI\nFQGW4\nHH1R7\n0PVKV\nT42A2\nW8P6Q\nQF1Y0\n0DD62\nLCA0Q\nTU9K1\nEK5K1\nEDSUD\n7KW31\nG2QBV\n3IAPG\n6B2FN\nMZ3I3\nM6ERH\nV6H2O\nC6INR\n2U3X0\n14HG1\n0A8CF\nQBUAT\n48XER\nKK7D4\n3LIGG\nEJFUA\n73ZXZ\nFAO7J\nCOFJV\nBD9UN\nLPKPO\nLD6TD\nQD1U7\nLWRKS\nS444Y\nZSAQG\nFC2SK\nJKGTN\n0LDN3\nPJUM0\n1TZK5\n83S5W\nTFWNO\nC6V75\nBRBWJ\n3OZUX\nX11CU\nBRQBD\n7614L\nON2Z4\nHQ8K2\n4VX01\n3Q92U\n4WVTC\n4TX4N\n999BP\nAFUBX\nO8T6G\nNHH8N\n7R0LB\nRON2M\nDOYQE\n3VWSP\nZPRJH\nWEW2E\nK5NFS\n4ZJXR\n44PFW\nTTVN5\nWKVWF\nHBL9L\nZ0DO7\nLQ0FJ\nGQ341\nPH5VU\n6E8GP\nU5T4M\nEYZXC\nONMCW\nWXXYY\n1B9DK\nPN1F2\n0F7LW\nAKU63\nXYJYK\n3VH9O\n0J1BT\n7R44Z\nE8JEJ\nD8FTI\n0HR01\n4RT06\n6FJBD\nS407A\nHP3HV\nBLLCM\n5GP8M\nNO443\nUPT25\n72M7T\nSROEU\nN9KNS\nKQDX6\n7KHIH\nGM3UK\nEXW9K\nRS6EK\n9VF2C\nWSKTN\n32K2C\nD6MZ4\nLG7WK\n5NG6Q\nMOTWW\nLLE9B\nWM2J7\nGFJ98\nUEVVN\n1FX8Q\nOWCJT\nBVDIM\nOKIVH\nOQ54Y\n5I5E5\nGS3M4\nTYWHY\nZBBOO\nXF2ZM\nOGLCO\nDAA3F\nPRH15\nKOQGE\n6IL0C\nUYZKX\nX07QW\n81VSN\nOE243\nNX8X9\nLXLW4\n3JCEI\nQZZPS\nPSAVM\nM6HAF\nHLB3J\n0UPBN\nNUW9G\nQLFR5\n5P284\nC1DK7\nSTHIK\nFB3ZG\n6CAZU\n75F82\nC4MUA\nM4FOP\n1VRH1\n9PXI9\nUETQS\n5UNMN\nVJVHM\nAWN1C\n3CLVI\nCS7HY\nIAEGA\nZNQVC\n47Y1V\nB0SV3\nF1LTO\nOSK3Y\nDGHSW\n06LBQ\nALJ7B\nQZ1BS\nZ7KC1\n4H935\nO76GM\nFLBS9\nIV1S7\nD04GX\nD01MJ\n50E06\nP5YNX\n6U47G\nR4SJJ\nGA7SB\n0M0T4\nN5PLR\nEG0VZ\nSSPMK\nGMLPK\n72LJ3\nEEGGA\nMLWB5\n0HGNK\n2CJC9\nOK6BF\n8CCEV\nSUE5L\nR5O7F\nY50QF\nWZDXS\nVEH0A\n5WS7U\n2OJY8\nSPF63\nY665P\n4VJDU\nY4GHN\nRKOOJ\nQ948H\nOPMF7\nVINM0\n6JLD4\nPEWH4\nJ95U1\nK6W5I\nPS7XK\nWZZPC\nBZ5N5\nO6DJW\nSKZUG\nLFPWI\nWWL0K\n10M0F\nZFT06\nAPLZS\n9O0NP\nBPT87\nGL7E6\nP4SB9\nWC5QK\nY79PC\n08LOY\nVRXQX\nC6N6Y\nBO12I\n120YL\nMK16R\nH032R\nLUQWY\nKV6V8\n07TCM\nRFH6M\n7IPW7\nH0Q6V\nCUHT0\nFJYZH\nM18XP\nZC59Y\nFSOFF\n4KK20\nSVIXG\n7JHW2\n"
  },
  {
    "path": "NLQ/2D-TAN/data/Ego4D_clip/.gitkeep",
    "content": ""
  },
  {
    "path": "NLQ/2D-TAN/data/TACoS/merge_npys_to_hdf5.py",
    "content": "import glob\nimport h5py\nimport numpy as np\nimport os\nimport tqdm\nimport json\n\ndef convert_tall_c3d_features(sampling_rate):\n    stride = sampling_rate//5\n    data_root = \"./data/TACoS/\"\n    hdf5_file = h5py.File(os.path.join(data_root, 'tall_c3d_{}_features.hdf5'.format(sampling_rate)), 'w')\n    with open(os.path.join(data_root,'train.json')) as json_file:\n        annotation = json.load(json_file)\n    with open(os.path.join(data_root, 'val.json')) as json_file:\n        annotation.update(json.load(json_file))\n    with open(os.path.join(data_root, 'test.json')) as json_file:\n        annotation.update(json.load(json_file))\n    pbar = tqdm.tqdm(total=len(annotation))\n    for vid, anno in annotation.items():\n        video_feature = []\n        for i in range(0,(anno['num_frames']-sampling_rate)//stride+1):\n            s_idx = i*stride+1\n            e_idx = s_idx + sampling_rate\n            clip_path = os.path.join(data_root, 'Interval64_128_256_512_overlap0.8_c3d_fc6','{}_{}_{}.npy'.format(vid, s_idx, e_idx))\n            frame_feat = np.load(clip_path)\n            video_feature.append(frame_feat)\n        video_feature = np.stack(video_feature)\n        hdf5_file.create_dataset(vid, data=video_feature, compression=\"gzip\")\n        pbar.update(1)\n    pbar.close()\n    hdf5_file.close()\nif __name__ == '__main__':\n    convert_tall_c3d_features(64)\n"
  },
  {
    "path": "NLQ/2D-TAN/data/TACoS/test.json",
    "content": "{\"s30-d52.avi\": {\"timestamps\": [[141, 354], [361, 732], [780, 986], [1024, 1153], [1270, 1612], [1623, 2729], [2782, 3259], [3264, 3352], [3370, 4425], [4462, 4908], [141, 540], [619, 1153], [1270, 1674], [1725, 2729], [2782, 3352], [3370, 4425], [4462, 4908], [5176, 7303], [141, 354], [361, 732], [780, 986], [1024, 1153], [1270, 1612], [1623, 2858], [2865, 3058], [141, 354], [361, 540], [619, 732], [780, 986], [1024, 1153], [1270, 2986], [3063, 3352], [3370, 4908], [5176, 6323], [141, 540], [619, 732], [780, 986], [1024, 1153], [1270, 1612], [3019, 3352], [3370, 4908], [5176, 5256], [5296, 5425], [5455, 5982], [6383, 6822], [141, 540], [619, 732], [780, 986], [1024, 1612], [1623, 4908], [6901, 7303], [141, 540], [619, 732], [780, 986], [1024, 1153], [1270, 1674], [1725, 2729], [1623, 3352], [3370, 4425], [4462, 4908], [5176, 5256], [5296, 5425], [5455, 5982], [5176, 6822], [141, 540], [619, 732], [780, 986], [1024, 1153], [1270, 1674], [1725, 2729], [2782, 3352], [3370, 4425], [4462, 4908], [5176, 5256], [5296, 5425], [5455, 5982], [6068, 6822], [6068, 7303], [141, 540], [619, 986], [1024, 1674], [1725, 2729], [2782, 3352], [3370, 4425], [4462, 4908], [6901, 7107], [141, 540], [619, 732], [780, 986], [1024, 1153], [1270, 1674], [1725, 2729], [2782, 3352], [3370, 4425], [4462, 4908], [5176, 5256], [5296, 5425], [5455, 5982], [5176, 6822], [7126, 7303], [141, 354], [361, 732], [780, 986], [1024, 1153], [1270, 1612], [1623, 2729], [2782, 3352], [3370, 4425], [4462, 4908], [141, 540], [619, 1153], [1270, 1612], [1623, 2729], [2782, 3352], [3370, 4425], [4462, 4908], [5176, 5256], [5296, 5425], [5455, 5696], [5831, 5903], [6068, 6822], [6068, 7107], [6901, 7303], [141, 354], [361, 986], [1024, 1153], [1270, 1612], [1623, 2729], [2782, 3058], [2782, 4425], [4462, 4908], [141, 540], [619, 732], [780, 986], [1024, 1153], [1270, 1674], [1725, 2729], [3063, 3352], [3370, 4425], [4462, 4908], [5176, 5256], [5296, 5425], [5455, 5982], [5903, 6822], [7126, 7303], [141, 354], [361, 732], [780, 986], [1024, 1153], [1270, 1612], [1623, 2729], [2782, 3352], [3370, 4425], [4462, 4908], [141, 540], [619, 732], [780, 986], [1024, 1153], [1270, 1674], [1725, 2729], [2782, 3352], [3370, 4425], [4462, 4908], [5176, 5256], [5296, 5425], [5455, 5982], [6068, 6822], [6901, 7107], [141, 732], [780, 1153], [1270, 1674], [2782, 3352], [3370, 4908], [6901, 7303], [141, 540], [619, 1153], [1270, 1674], [1725, 2729], [1725, 3352], [3370, 4425], [4462, 4908], [6901, 7107]], \"sentences\": [\"She took out kiwi\", \"She took out cutting board\", \"She took out plate\", \"She took out knife\", \"She washed kiwi\", \"She peeled kiwi\", \"She sliced kiwi\", \"She put kiwi on plate\", \"She peeled 2nd kiwi\", \"She cut 2nd kiwi\", \"The woman selects 2 kiwis.\", \"She gets a plate, a cutting boards, and a knife.\", \"The woman rinses the kiwi in water.\", \"The woman peels the first kiwi.\", \"The woman slices the kiwi and places it onto the plate.\", \"She peels the second kiwi.\", \"The woman slices the second kiwi and places the pieces onto the plate.\", \"The woman cleans up after preparing the kiwi.\", \"She took out kiwi\", \"She took out cutting board\", \"She took out plate\", \"She took out knife\", \"She washed kiwi\", \"She peeled kiwi\", \"She sliced kiwi\", \"The person opens the fridge.\", \"They get two kiwis.\", \"They get a cutting board.\", \"They get a plate.\", \"She washes the kiwis.\", \"She skins one kiwi.\", \"She chops the kiwi into tiny pieces.\", \"She repeats the process with the second kiwi.\", \"She cleans all the dishes.\", \"The person gets out two kiwis.\", \"The person gets out a cutting board.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person rinses the kiwis.\", \"The person peels a kiwi and cuts it up.\", \"The person peels the other kiwi and cuts it up.\", \"The person throws away the peels.\", \"The person gets out a fork.\", \"The person rinses the cutting board and knife.\", \"The person wipes down the counter.\", \"She gets two kiwis.\", \"She gets a cutting board.\", \"She gets a plate.\", \"She gets a knife then rinses the kiwis.\", \"She peels and chops the kiwis.\", \"She cleans up.\", \"The person gets out two kiwis.\", \"The person gets out a cutting board.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person rinses the kiwis.\", \"The person peels a kiwi.\", \"The person cuts up the peeled kiwi and puts the pieces on the plate.\", \"The person peels the other kiwi.\", \"The person cuts up this kiwi and puts the pieces on the plate.\", \"The person throws away the peels.\", \"The person gets out a fork and puts it on the plate.\", \"The person rinses the knife and cutting board.\", \"The person wipes down the counter.\", \" The person procures a package of kiwis from the fridge and takes out two.\", \"The person takes out a cutting board from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person takes out a knife from the drawer.\", \"The person washes the kiwis in the sink.\", \"The person peels one kiwi with a knife.\", \"The person chops the kiwi on the cutting board and sets it on the plate.\", \"The person peels the second kiwi.\", \"The person chops the second kiwi up and places it on the plate.\", \"The person throws the peels into the wastebin.\", \"The person takes out a fork from the drawer and sets it on the plate.\", \"The person washes the cutting board and the knife in the sink.\", \"The person towels off the countertop.\", \"The person returns the package of kiwis to the fridge.\", \"The woman begins by selecting two kiwis from the fridge.\", \"Next, she gets out a wooden cutting board and a small white plate.\", \"She rinses both kiwis in water.\", \"Using a small knife she peels the skin off the first kiwi.\", \"Next, she cuts the kiwi in half and then dices it into smaller pieces.\", \"She then peels the skin off the second kiwi.\", \"She then cuts the kiwi in half and dices it into smaller pieces.\", \"Finally, she rinses the cutting board and the knife and then cleans her area.\", \" The person procures a package of kiwis from the fridge and takes out two.\", \"The person takes out a cutting board from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person takes out a knife from the drawer.\", \"The person washes the kiwis in the sink.\", \"The person peels one kiwi with a knife.\", \"The person chops the kiwi on the cutting board and sets it on the plate.\", \"The person peels the second kiwi.\", \"The person chops the second kiwi up and places it on the plate.\", \"The person throws the peels into the wastebin.\", \"The person takes out a fork from the drawer and sets it on the plate.\", \"The person washes the cutting board and the knife in the sink.\", \"The person towels off the countertop.\", \"The person returns the package of kiwis to the fridge.\", \"She takes out kiwis\", \"She takes out cutting board\", \"She takes out plate\", \"She takes out knife\", \"She washes kiwis\", \"She takes skin off kiwi\", \"She slices up kiwi\", \"She takes skin off of kiwi\", \"She slices up kiwi\", \"She chooses two ripe kiwis\", \"She assembles cutting board, plate and knife.\", \"She washes the two kiwis.\", \"Finishes peeling first kiwi.\", \"Finished cutting the first kiwi and places on plate.\", \"Finishes peeling second kiwi.\", \"Finished cutting the second kiwi and placed on plate.\", \"She throws away kiwi peels.\", \"She pulls out a fork from the cabinet\", \"She cleans the cutting board.\", \"She cleans the knife.\", \"She washes the counter and wipes it dry.\", \"She washes and dries her hands.\", \"She puts away the kiwi container\", \"She took out kiwi\", \"She took out plate\", \"She took out knife\", \"She washed kiwi\", \"She took off skin of first kiwi\", \"She sliced kiwi\", \"She skinned second kiwi\", \"She sliced second kiwi\", \"The person gets out two kiwis.\", \"The person gets out a cutting board.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person rinses the kiwis.\", \"The person peels a kiwi.\", \"The person cuts the peeled kiwi into slices.\", \"The person peels the other kiwi.\", \"The person cuts this kiwi into slices.\", \"The person throws away the peel.\", \"The person gets out a fork and puts it on the plate.\", \"The person rinses the knife and cutting board.\", \"The person wipes down the counter.\", \"The person puts away the box the kiwis came from.\", \"She took out kiwi\", \"She took out cutting board\", \"She took out plate\", \"She took out knife\", \"She washed kiwi\", \"She peeled first kiwi\", \"She sliced first kiwi\", \"She peeled second kiwi\", \"She sliced second kiwi\", \"The person gets out two kiwis.\", \"The person gets out a cutting board.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person rinses the kiwis.\", \"The person peels one kiwi.\", \"The person cuts the kiwi into small slices.\", \"The person peels the other kiwi.\", \"The person cuts that kiwi into small slices.\", \"The person throws away the peels.\", \"The person gets out a fork.\", \"The person rinses the knife and cutting board.\", \"The person wipes down the counter.\", \"The person washes her hands.\", \"A woman enters the kitchen, removes two kiwi from the refrigerator and places them on the counter top.\", \"She places a cutting board, a plate and a knife on the counter top.\", \"She washes the two kiwis in the sink.\", \"She peels and dices one kiwi and places it on the plate\", \"She peels and dices the second kiwi and places it on the plate.\", \"She washes the cutting board, the knife, wipes down the counter and washes and drys her hands.\", \"Woman pulls two kiwi out of the refrigerator.\", \"Woman pulls out a plate, cutting board, and knife.\", \"She washes the fruit.\", \"Woman peels the first kiwi.\", \"Woman slices up first kiwi.\", \"Woman peels second kiwi.\", \"Woman slices the second kiwi and places it on the plate.\", \"Woman cleans up after preparing the kiwi.\"], \"fps\": 29.4, \"num_frames\": 7346}, \"s29-d42.avi\": {\"timestamps\": [[247, 369], [419, 894], [419, 894], [974, 1918], [2039, 2135], [2135, 2221], [2256, 2813], [2919, 2952], [2974, 3022], [3041, 3581], [3041, 3581], [4174, 4704], [4736, 5946], [247, 894], [974, 1918], [2039, 3022], [3041, 3581], [4174, 4926], [5444, 5946], [6077, 7844], [9273, 15919], [15919, 21309], [21448, 22096], [247, 730], [749, 894], [974, 1918], [2039, 2135], [2135, 2221], [2256, 2813], [2256, 2813], [2919, 3022], [3041, 3581], [3041, 3581], [4174, 4704], [4736, 4926], [247, 894], [974, 2135], [2135, 3022], [3041, 3581], [5444, 5946], [6077, 7844], [9273, 21309], [21448, 22096], [247, 894], [974, 1918], [2039, 3022], [6077, 7805], [7805, 21309], [21448, 21770], [21870, 22096], [247, 369], [419, 894], [419, 894], [974, 1918], [2039, 2135], [2135, 2221], [2256, 2813], [2256, 2813], [2919, 3022], [3041, 3581], [3041, 3581], [247, 894], [974, 2135], [2135, 3022], [3041, 3420], [3423, 3581], [3041, 5946], [4174, 7844], [9273, 11835], [12293, 15919], [15919, 21638], [21701, 22096], [21701, 22096], [247, 730], [749, 894], [749, 894], [974, 2135], [974, 2135], [2135, 2221], [2256, 2813], [2256, 2813], [2919, 3022], [3041, 3581], [3041, 3581], [247, 730], [749, 894], [749, 894], [974, 2135], [2135, 2578], [2599, 2813], [2599, 2813], [2919, 3022], [3041, 3581], [4174, 5946], [6077, 15275], [15295, 15919], [15919, 21309], [21448, 22096], [247, 730], [749, 894], [749, 894], [974, 1918], [2039, 2221], [2256, 2813], [2919, 3022], [3041, 3581], [3041, 3581], [247, 2221], [2256, 3022], [3041, 3581], [4174, 5946], [6077, 9437], [11137, 21638], [21701, 22096], [247, 730], [749, 894], [749, 894], [974, 1918], [2039, 2135], [2135, 2221], [2256, 2813], [247, 369], [419, 730], [749, 894], [974, 1741], [1840, 1918], [2039, 2135], [2135, 2708], [2719, 2813], [2919, 3466], [3538, 3581], [4174, 4557], [247, 730], [749, 894], [749, 894], [974, 1918], [2039, 2135], [2135, 2578], [2599, 2813], [2919, 3022], [3041, 3581], [247, 730], [749, 894], [974, 2135], [2135, 2813], [2919, 3022], [3041, 3581], [4174, 5721], [5763, 5946], [6077, 20769], [20794, 21309], [21448, 22096], [21448, 22096], [247, 894], [974, 2135], [2919, 3022], [3041, 3581], [4608, 5721], [6077, 7844], [9273, 16164], [16164, 21309], [21448, 22096]], \"sentences\": [\"He took out cutting board\", \"He took out broccoli\", \"He took out knife\", \"He cut leaves off stem\", \"He threw out stem\", \"He took out pot\", \"He put water in pot\", \"He put pot on stove\", \"He turned on stove\", \"He added salt\", \"He put lid on pot\", \"He threw away scraps\", \"He put broccoli in pot\", \"He gets a cutting board and broccoli.\", \"He gets a knife and chops the heads off the broccoli.\", \"He fills a pit with water and puts it on the stove.\", \"He salts the water.\", \"He cleans up while waiting for the water to heat.\", \"He puts the broccoli in the water.\", \"He cleans up.\", \"He gets out a plate and colander.\", \"He strains the broccoli.\", \"He rinses the broccoli and puts it on a plate.\", \"He took out cutting board\", \"He took out broccoli\", \"He chopped broccoli\", \"He threw away scraps\", \"He took out pot\", \"He put water in pot\", \"He put water in pot\", \"He turned on stove\", \"He put salt in pot\", \"He put lid on pot\", \"He threw away scraps\", \"He put away salt\", \"He gets a cutting board and broccoli.\", \"He cuts the heads off the broccoli and discards the rest.\", \"He fills a pot with water and heats it on the stove.\", \"He season the water.\", \"He puts the broccoli in the pot.\", \"He cleans up while the broccoli is cooking.\", \"He pour the broccoli through a strainer.\", \"He rinse the broccoli and puts it on a plate.\", \"He gets the cutting board, broccoli, and a knife.\", \"He cuts the heads off the broccoli.\", \"He puts water in the pot and starts heating it.\", \"He cleans the cutting board and knife.\", \"He strains the broccoli and water through a colander.\", \"He rinses the broccoli.\", \"He puts the broccoli on a plate.\", \"He took out cutting board\", \"He took out broccoli\", \"He took out knife\", \"He cut broccoli off stem\", \"He threw away stem\", \"He took out pot\", \"He put water in pot\", \"He put pot on stove\", \"He turned on stove\", \"He added salt to pot\", \"He put lid on pot\", \"the person gets a cutting board and a sharp knife\", \"the person separates the Broccoli from it's stem and discards the stem\", \"the person gets a pot and fill it with water\", \"the person put the pot over the stove and heats the stove\", \"the person seasons the water with salt and covers the pot\", \"the person puts the Broccoli in the pot and covers it\", \"the person gets a fork\", \"the person brings the pot to a boil\", \"the person gets a plate and a metal strainer\", \"the person takes the Broccoli from the pot and drains the water in the metal stainer\", \"the person washes the Broccoli\", \"the person puts the Broccoli on the plate\", \"He took out cutting board\", \"He took out broccoli\", \"He took out knife\", \"He chopped broccoli\", \"He threw away stem\", \"He took out pot\", \"He put water in pot\", \"He put pot on stove\", \"He turned on stove\", \"He put salt in pot\", \"He put lid on pot\", \"He gets the cutting board out of the cupboard.\", \"He gets the broccoli out of the fridge.\", \"He gets a knife out of the drawer.\", \"He cuts the broccoli into separate florets.\", \"He gets a pot out of the cupboard.\", \"He fills the pot with water.\", \" He puts the pot on the stovetop.\", \"He turns on the stovetop.\", \"He adds salt to the water.\", \"He adds the broccoli to the heated water.\", \"He gets a plate out of the cupboard.\", \"He gets a strainer out of the cupboard.\", \"He strains the broccoli.\", \"He puts the broccoli on the plate.\", \"He took out cutting board\", \"He took out broccoli\", \"He took out knife\", \"He cut up broccoli\", \"He took out pot\", \"He put water in pot\", \"He turned on stove\", \"He added salt to pot\", \"He put lid on pot\", \"Using a cutting board remove broccoli florets from stem.\", \"Fill a pot with water and bring it to a boil on the stove.\", \"Add some salt to the water as it's heating.\", \"Add broccoli florets to the boiling water and cover the pot.\", \"Stir the broccoli occasionally.\", \"Remove from heat and strain the broccoli in a colander.\", \"Rinse broccoli and serve on plate.\", \"He took out cutting board\", \"He took out broccoli\", \"He took out knife\", \"He cut leaves\", \"He threw out stem\", \"He took out pot\", \"He put water in pot\", \"He took out cutting board\", \"He took out broccoli\", \"He took out knife\", \"He chopped broccoli\", \"He threw away scraps\", \"He took out a pan\", \"He put pan on stove\", \"He turned on stove\", \"He put salt in pot\", \"He put lid on pan\", \"He threw out trash\", \"He took out cutting board\", \"He took out broccoli\", \"He took out knife\", \"He cut off sem\", \"He threw away stem\", \"He took out pot\", \"He put water in pot\", \"He turned on stove\", \"He added salt to pot\", \"The person got out a cutting board.\", \"The person got out the broccoli.\", \"The person cut the florets off the broccoli.\", \"The person got out a pot and put water in it.\", \"The person turned on the stove.\", \"The person put salt in the water.\", \"The person got the water up to temperature.\", \"The person put the broccoli in the pot and covered it.\", \"The person cooked the broccoli.\", \"The person strained the broccoli in a colander.\", \"The person rinsed off the broccoli.\", \"The person put the broccoli on a plate.\", \"He gets out the required items, including the broccoli.\", \"He cuts up the broccoli and discards the rest.\", \"He places a water filled pot on the stove and starts the stove.\", \"He salts the water.\", \"He places the broccoli in the pot after waiting for the water to heat up.\", \"He cleans up while the cooking is going on.\", \"He gets out a strainer and a plate.\", \"He removes the pot from the stove and strains the broccoli.\", \"He rinses the broccoli and places them on a plate.\"], \"fps\": 29.4, \"num_frames\": 22182}, \"s28-d39.avi\": {\"timestamps\": [[192, 494], [524, 833], [970, 1622], [1729, 2445], [2532, 4717], [4721, 6585], [6630, 9574], [9849, 12816], [12902, 15986], [16034, 17604], [17664, 21424], [21451, 22648], [192, 494], [524, 833], [970, 1250], [1298, 1622], [1729, 2350], [2356, 2588], [2592, 4649], [4673, 9574], [9849, 20096], [20096, 22648], [192, 4768], [5000, 6873], [7044, 9574], [9849, 10744], [11372, 12816], [12902, 13159], [13285, 14165], [14480, 14730], [14797, 15986], [16034, 16676], [16703, 17191], [17264, 17604], [17664, 18309], [18353, 19334], [22694, 22753], [192, 282], [314, 494], [524, 833], [970, 1250], [1298, 2350], [2356, 2620], [2879, 3290], [3533, 5141], [5191, 5858], [5955, 6266], [6266, 6730], [6730, 6873], [7044, 7109], [192, 1179], [1196, 2445], [2532, 2588], [2592, 3068], [3099, 3290], [3533, 4717], [7188, 8581], [8839, 9574], [9849, 12145], [12152, 13621], [13643, 16744], [16777, 17604], [17664, 18309], [18353, 22648], [192, 282], [314, 494], [524, 833], [970, 1441], [1480, 2445], [2532, 4649], [4673, 5141], [5191, 6335], [6387, 7109], [4721, 7622], [7682, 9574], [9849, 16676], [16703, 17604], [17664, 21424], [21451, 22648], [192, 833], [970, 2350], [2356, 4717], [4721, 6730], [7188, 9574], [9849, 22648], [192, 282], [314, 494], [524, 833], [970, 1250], [1298, 2350], [2356, 2588], [2592, 4717], [192, 494], [524, 833], [970, 2350], [2356, 4717], [4721, 6873], [6730, 9574], [9849, 12816], [12902, 15986], [16034, 17604], [17664, 22648], [192, 494], [524, 833], [970, 2445], [2532, 4649], [4721, 6873], [7044, 9574], [9849, 15986], [16034, 17604], [17664, 18309], [18353, 22648], [192, 494], [524, 1250], [1298, 2350], [4673, 4768], [5000, 6873], [7044, 9574], [9849, 12816], [12902, 17604], [17664, 22648], [192, 282], [314, 494], [524, 833], [970, 1250], [1298, 2445], [2532, 2620], [2879, 4649], [192, 282], [192, 282], [314, 494], [524, 833], [970, 1250], [1298, 2350], [2356, 4768], [5000, 6585], [7044, 9574], [9849, 13621], [13643, 18309], [18353, 21424], [21451, 22648], [192, 282], [314, 494], [524, 833], [970, 1250], [1298, 2445], [2532, 2620], [4673, 4768], [5000, 5141], [5191, 6266], [192, 2445], [2356, 4768], [6266, 6873], [6630, 9574], [9849, 15986], [16034, 17604], [17664, 20184], [22694, 22753], [192, 282], [314, 494], [524, 833], [970, 1250], [1298, 2445], [2532, 2620], [2879, 4768], [192, 2588], [192, 2588], [192, 2588], [192, 2588], [192, 2588], [192, 2588], [2879, 4717], [192, 833], [970, 1441], [1480, 2350], [2356, 3148], [2592, 4717], [5000, 6873], [7044, 8165], [8165, 9574], [9849, 10744], [11372, 12816], [12902, 15986], [16034, 18595], [18604, 20184], [20209, 22648], [192, 282], [314, 494], [524, 833], [970, 1179], [1196, 2350], [2356, 2620], [2879, 3148], [4721, 4768], [2532, 5141], [5191, 5758], [5771, 6266], [5000, 6585], [6630, 6873], [7044, 7109], [7044, 7622]], \"sentences\": [\"He gets a cutting board and knife.\", \"He gets the leeks.\", \"He eliminates the bad parts of the leeks.\", \"He rinses the leeks.\", \"He chops the leeks.\", \"He gets a pan and adds butter to it.\", \"He adds the leeks to the pan.\", \"He seasons the leeks.\", \"He seasons the leeks again.\", \"He adds water to the leeks.\", \"He straightens up and gets a plate.\", \"He puts the leeks on a plate.\", \"The person selects a cutting and a large chef knife.\", \"The person selects the chuck leek to be used.\", \"The person removes the unwanted sections of the leaves and stem of the Leek.\", \"The person cuts open the middle of the leave section of the leek.\", \"The person washes thoroughly leave section and stem of the leek.\", \"The person then removes the root of the leek.\", \"The person chops leek first into four big pieces then into smaller pieces.\", \"Placing a skillet on the stove with a small amount of butter, the person allows the butter to partially melt and then adds the leek.\", \"While allowing the leek to cook, the person adds little water and spices.\", \"The person places the finished leek into a small dish.\", \"The person peeled and chopped up the leeks\", \"The person added butter to a frying pan on the stove\", \"The person added the leeks to the melted butter in the pan\", \"The person stirred the leeks\", \"The person added seasonings to the leeks\", \"The person tossed the leeks\", \"The person stirred the leeks\", \"The person tasted a sample of the cooked leeks\", \"The person added more seasoning\", \"The person added additional seasoning from the refridgerator\", \"The person stirred the leeks\", \"The person added water to the leeks\", \"The person added another seasoning from the refridgerator\", \"The person added more seasoning\", \"The person served the leeks\", \"He took out cutting board\", \"He took out knife\", \"He took out leek\", \"He cut off leaves\", \"He washed leek\", \"He cut off bottom of leek\", \"He chopped up leek\", \"He took out pan\", \"He took out oil\", \"He took out butter\", \"He put butter in pan\", \"He turned on stove\", \"He threw away scraps\", \"The person cuts off all but two inches of the green portion of the leek using a chef's knife.\", \"The person thouroughly washes the leek.\", \"The person cuts the roots from the leek.\", \"The person cuts the leek in half axially.\", \"The person cuts the halves in half laterally.\", \"The person stacks pieces of the leek and chops them into quarter-inch pieces.\", \"The person browns approximately two tablespoons of butter in a frying pan.\", \"The person places the chopped pieces of the leek in the pan with the melted butter.\", \"The person cooks the leek until slightly caramelized - stirring occasionally.\", \"The person seasons the leek to taste.\", \"The person adds additional seasoning to the leek.\", \"The person deglazes the pan with water.\", \"The person adds additional seasoning to the leek.\", \"The person places the cooked leek on a plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures some leeks from the fridge.\", \"The person cuts off the leaves of the leeks.\", \"The person washes the leeks in the sink.\", \"The person chops the leeks on the cutting board.\", \"The person takes a pan from the drawer and sets it on the stove.\", \"The person procures butter from the fridge.\", \"The person adds butter to the frying pan and then throws the leaves and stems into the trash.\", \"The person returns the butter to the fridge.\", \"The person adds the leeks to the frying pan.\", \"The person adds condiments to the leeks in the pan.\", \"The person takes a glass from the cabinet, fills it with water, and pours the water into the pan.\", \"The person adds more condiments and then returns them all, then the person procures a plate from the cabinet.\", \"The person turns off the stove and scoops the leeks from the pan onto the plate.\", \"He gets out the needed items.\", \"He rinses the leeks.\", \"He chops the leeks.\", \"He adds butter to a pan and turns on the stove.\", \"He adds the leeks to the pan.\", \"He finishes cooking and puts the leeks on a plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out leek\", \"He cut leaves off leek\", \"He washed leek\", \"He cut off bottom of leek\", \"He chopped leek\", \"He gets a cutting board and knife.\", \"He gets the leeks.\", \"He rinses the leeks.\", \"He chops the leeks.\", \"He puts butter in a pan and turn on the stove.\", \"He adds the leeks to the pan.\", \"He adds some spices to the pan.\", \"He adds more spices to the leeks.\", \"He adds some water to the pan.\", \"He puts the leeks on a plate.\", \"He gets a cutting board and knife.\", \"He gets the leeks.\", \"He trims the leeks and washes them.\", \"He chops the leeks.\", \"He gets a pan, puts butter in it, and turns on the heat.\", \"He adds the leeks to the pan.\", \"He seasons the leeks.\", \"He adds water to the pan.\", \"He adds spice.\", \"He puts the leeks on a plate.\", \"He gets a cutting board and knife.\", \"He gets out the leeks and cuts of the leaves.\", \"He rinses the leeks.\", \"He chops the leeks.\", \"He adds butter to the pan and turns the stove on.\", \"He adds the leeks to the pan.\", \"He seasons the leeks.\", \"He adds water to the leeks.\", \"He puts the leeks on a plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out leek\", \"He cut off leaves\", \"He washed leek\", \"He cut off end of leek\", \"He chopped leek\", \"How to prepare leeks.\", \"The person takes out a cutting board.\", \"The person take out a knife.\", \"The person gets a fresh leek.\", \"The person cuts off the bad leaves and end of the leek.\", \"The person cuts the leek, from the middle to the top, then washes it.\", \"The person cuts of the root and finishes cutting the leek down the middle. The person cuts the leek in half then in quarters. The person puts the leeks together and slices them.\", \"The person gets a skillet, turns on the stove and adds butter to the skillet.\", \"The person allows the butter to melt then adds the leeks to the skillet.\", \"The person adds seasons to taste, adjusts temperature and stirs occasionally.\", \"The person adds salt and more seasons to taste and then adds water while stirring occasionally.\", \"The person continues to add seasons to taste and gets a serving plate.\", \"The person places the leeks in the serving plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out leek\", \"He cut off leaves\", \"He washed leek\", \"He cut off bottom of leek\", \"He chopped leek\", \"He took out pan\", \"He took out butter\", \"The man washes the leeks.\", \"The man chops up the leeks.\", \"The man adds butter to the pan.\", \"The man adds the leeks into the pan.\", \"The man seasons the leeks as they cook.\", \"The man adds a little water into the pan.\", \"The man continues to season the leeks as they cook.\", \"The man places the leeks into a plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out leek\", \"He cut off leaves\", \"He washed leek\", \"He cut off bottom\", \"He diced leek\", \"He cut off bottom of leek\", \"He washed leek\", \"He cut off leaves\", \"He took out leek\", \"He took out knife\", \"He took out cutting board\", \"He chopped leek\", \"The person takes out a carving board, knife and leeks from the refrigerator to begin preparation.\", \"The person removes the unusable/spoiled parts from the leeks first to discard.\", \"The person makes a slit into the top of the leeks to open it up and then washes the inside/outside under water.\", \"The person cuts off the other end then slices the leek in half lengthwise.\", \"The person cuts the two leek pieces into halves then begins to chop the entire leek into thin slices.\", \"The person places a medium frying pan onto the stove, adds a slice of butter, then turns on the heat to melt the butter.\", \"The person discards the damaged/spoiled parts of the leek, puts away the butter and gathers spices to add once the leeks are put into the frying pan.\", \"The person adds the sliced leeks to the frying pan after the butter has melted and covers the entire pan\", \"The person separates the leeks in the pan to allow them to saute effieciently in the melted butter.\", \"The person continues to saute the leeks, then flips them around a bit in the pan before adding spices.\", \"The person adjusts the heat, stirs the leeks and spices together, tastes them after a few moments and decides to add more spices to the mixture.\", \"The person stirs in a new spice, then adds some water and a flavor powder to the leeks before stirring again and adjusting the heat.\", \"The person allows a few moments for the new spice/flavoring to cook into the leeks before taking a small bite to be sure they are cooked and ready to serve.\", \"The person allows the leeks to simmer a moment longer on low heat while he puts away the spices, grabs a plate, then removes the pan from the stove and places the leeks onto his plate and turns off the stove.\", \"He took out cutting board\", \"He took out knife\", \"He took out leeks\", \"He cut off leaves\", \"He washed leek\", \"He cut off bottom of leek\", \"He cut leek in half\", \"He chopped up leek\", \"He took out pan\", \"He took out oil\", \"He took out butter\", \"He put butter in pan\", \"He turned on stove\", \"He threw away scraps\", \"He put away butter\"], \"fps\": 29.4, \"num_frames\": 22892}, \"s29-d31.avi\": {\"timestamps\": [[249, 657], [658, 1153], [1221, 1315], [1488, 2189], [2189, 2693], [2693, 3060], [249, 469], [481, 693], [729, 1008], [1038, 1153], [1221, 2735], [2991, 3060], [2991, 3060], [249, 469], [481, 693], [729, 1153], [1221, 2735], [2991, 3060], [249, 657], [658, 1008], [1038, 1153], [1221, 2735], [2991, 3060], [249, 419], [424, 693], [729, 1008], [1038, 1315], [1488, 2735], [249, 469], [481, 693], [729, 1153], [1221, 1315], [1488, 2735], [2991, 3060], [249, 693], [729, 1008], [1038, 1153], [1221, 1315], [1488, 2240], [2240, 2735], [2991, 3060], [249, 469], [481, 693], [729, 1153], [1221, 1315], [1488, 2240], [2240, 2693], [2693, 2735], [2991, 3060], [249, 693], [729, 1315], [729, 1315], [1488, 2240], [2240, 2735], [249, 419], [424, 657], [658, 1008], [1038, 1153], [1221, 2735], [2991, 3060], [249, 419], [424, 693], [729, 1153], [1221, 1315], [1488, 2189], [2189, 2735], [2991, 3060], [249, 419], [424, 693], [729, 1153], [729, 1153], [1221, 2735], [2991, 3060], [249, 469], [481, 693], [729, 1008], [1038, 1153], [1221, 2735], [2991, 3060], [249, 419], [424, 693], [729, 1008], [1038, 1153], [1221, 2735], [2991, 3060]], \"sentences\": [\"Take out a cutting board and knife.\", \"Grab a head of garlic from the cupboard and remove the skin of one clove.\", \"Use the knife to remove the hard end.\", \"Whit your knife, thinly slice the garlic.\", \"Slice again diagonally several times to create a nice mice.\", \"Clean your workstation by removing the garlic husk.\", \"The man grabs a cutting board.\", \"The man grabs a knife.\", \"The man grabs some garlic.\", \"The man removes one clove of garlic from the bulb.\", \"The man finely chops up the garlic.\", \"The man disposes of the trash.\", \"The man completes his assigned task.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a bulb of garlic and removes a clove.\", \"The person chops up the garlic.\", \"The person throws away the rest of the garlic.\", \"He gets a cutting board and knife.\", \"He grabs a bunch of garlic.\", \"He removes a clove.\", \"He minces the garlic.\", \"He cleans up.\", \"He gets out a cutting board.\", \"He get a knife.\", \"He grabs the garlic.\", \"He removes one clove from the bunch.\", \"He chops the garlic.\", \"The person puts a cutting board on the table.\", \"The person puts a knife on the table.\", \"The person gets a bulb of garlic from the refrigerator and takes out one clove.\", \"The person cuts a little piece off the clove and puts it to the side.\", \"The person slices the garlic.\", \"The person puts the rest of the garlic bulb in a drawer.\", \"The man removes a cutting board and knife from the drawers and places them on the counter.\", \"He removes a bulb of garlic from the cabinet.\", \"He removes one clove of garlic from the bulb and places it on the cutting board.\", \"Using the knife, he slices off the end of the clove.\", \"He slices the clove into very thin strips.\", \"He cuts the strips of garlic across to make smaller pieces.\", \"He places the leftover stem and garlic coverings in the recycling bin.\", \"person removes chopping board and places on counter\", \"person then removes knife from draw and places on counter.\", \"person then removes clove of garlic from cabinet and places on chopping board.\", \"person then cuts of tip of the piece of garlic\", \"person then slices garlic into pieces\", \"person then bunches garlic up and slices garlic into smaller pieces\", \"person then bunches garlic up again and slices into smaller pieces once more\", \"person then removes trash from counter\", \"The man begins by getting a cutting board and a knife out then places both on the counter.\", \"He retrieves some garlic from the cupboard and brings it back to the counter.\", \"He removes one single glove from the group and takes the skin off.\", \"He uses his knife to finely mince the garlic one way.\", \"He then goes over the garlic several more times with the knife to mince it smaller.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets a bunch of garlic.\", \"He removes a clove.\", \"He minces the garlic.\", \"He discards the waste.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a garlic clove.\", \"The person slices off the end of the garlic clove.\", \"The person slices the garlic clove into thin pieces.\", \"The person slices the pieces crosswise into small chunks.\", \"The person throws away the trash.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a clove of garlic from the pantry.\", \"The person peels a segment of garlic from the clove.\", \"The person chops the garlic on the cutting board.\", \"The person throws the peels into the wastebin.\", \"The person takes a cutting board out of a drawer and puts it on the table.\", \"The person takes a knife out of a drawer and puts it on the table.\", \"The person gets a piece of garlic and puts it on the table.\", \"The person breaks off a clove and puts it on the cutting board.\", \"The person cuts the garlic clove.\", \"The person puts the rest of the garlic bulb in a drawer.\", \"The person takes a chopping board out of the drawer.\", \"The person takes a knife out from the drawer.\", \"The person takes a clove of garlic out from the cupboard.\", \"The person peels a piece of garlic from the clove.\", \"The person chops the garlic into very small pieces.\", \"The person discards the skin of the garlic.\"], \"fps\": 29.4, \"num_frames\": 3148}, \"s29-d52.avi\": {\"timestamps\": [[243, 473], [473, 577], [612, 793], [796, 884], [924, 985], [1053, 2729], [2782, 3100], [3141, 4606], [4699, 5657], [243, 473], [473, 577], [612, 793], [796, 884], [924, 985], [1053, 2729], [2782, 2844], [2844, 3100], [3141, 4606], [4699, 5305], [5670, 5774], [243, 473], [473, 577], [612, 884], [924, 985], [1053, 2844], [2844, 3100], [243, 577], [612, 793], [796, 884], [924, 2729], [2782, 3014], [3014, 3100], [3141, 5305], [5394, 5551], [5567, 5657], [5394, 5774], [243, 793], [796, 2729], [2782, 3100], [3141, 4606], [5670, 5774], [243, 473], [473, 577], [612, 793], [796, 884], [3141, 5657], [243, 473], [473, 577], [612, 793], [796, 884], [924, 3100], [4699, 5718], [243, 473], [473, 577], [612, 793], [796, 884], [924, 985], [1053, 3100], [3141, 5657], [243, 473], [473, 577], [612, 793], [796, 884], [924, 985], [1053, 2729], [2782, 3100], [3141, 4606], [5670, 5718], [243, 473], [473, 577], [612, 793], [796, 884], [924, 985], [1053, 3100], [3141, 5657], [243, 793], [796, 884], [924, 985], [1053, 2844], [2844, 3100], [3141, 4606], [5723, 5774], [243, 577], [612, 793], [796, 985], [796, 985], [1053, 3100], [3141, 4606], [4699, 5657], [243, 473], [473, 577], [612, 793], [796, 884], [924, 985], [1053, 2729], [2782, 3100], [3141, 4606], [4699, 5657], [243, 473], [473, 577], [612, 793], [796, 884], [924, 985], [1053, 2729], [2782, 3100], [3141, 4606], [4699, 5305], [5394, 5657], [5723, 5774], [243, 473], [473, 577], [612, 793], [796, 884], [924, 985], [1053, 2729], [2782, 3100], [3141, 4606], [4699, 5718], [243, 577], [612, 793], [796, 2729], [2782, 3100], [3141, 4606], [243, 793], [796, 884], [924, 3100], [3141, 4606]], \"sentences\": [\"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person gets out a kiwi.\", \"The person cuts the kiwi in half.\", \"The person gets out a fruit peeler.\", \"The person peels one of the kiwi halves.\", \"The person cuts the kiwi half into slices and cuts the slices in half.\", \"The person peels the other half of the kiwi with the knife.\", \"The person cuts that half of the kiwi into slices and cuts those slices in half.\", \"You will need a cutting board.\", \"Grab a sharp knife.\", \"Get your whole Kiwi.\", \"Cut your Kiwi in half.\", \"Get a peeler.\", \"Peel the Kiwi with the peeler.\", \"Cut off the end of the Kiwi.\", \"Slice Kiwi in desired pieces.\", \"Peel the other half of the Kiwi with your knife.\", \"Cut off the end of the Kiwi.\", \"Slice Kiwi in desired sections.\", \"He took out cutting board\", \"He took out knife\", \"He took out kiwi\", \"He sliced kiwi\", \"He peeled kiwi\", \"He chopped kiwi\", \"The person takes out a cutting board and paring knife.\", \"The person takes out one whole kiwi fruit from the refrigerator.\", \"The person cuts the kiwi in half short-ways.\", \"The person uses a peeler to take the skin off of one half of the kiwi.\", \"The person uses the knife to cut the kiwi half in vertical slices.\", \"The person turns the kiwi slices and cuts the slices in half.\", \"The person uses the knife to peel the other half of the kiwi.\", \"The person uses the knife to cut the half kiwi into vertical slices.\", \"The person turns the kiwi slices and cuts the slices in half.\", \"The person separates the cutting tools, board, and peels.\", \"The person gets out the cutting board, knife, and kiwi fruit.\", \"The person chops the kiwi fruit in half, then he peels half of the kiwi fruit.\", \"The person slices the peeled kiwi fruit half.\", \"The person peels the second half of the kiwi fruit.\", \"The person slices the second half of the kiwi fruit.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets a kiwi.\", \"He cuts it in half.\", \"He peels the skin and slices the kiwi.\", \"Takes out a cutting board.\", \"Takes out a knife.\", \"Takes a kiwi out of the refrigerator.\", \"Slices the kiwi in half.\", \"Peels and slices the first half of the kiwi.\", \"Peels and slices the second half of the kiwi.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a kiwi from the fridge.\", \"The person chops the kiwi in half.\", \"The person takes out a peeler from the drawer.\", \"The person peels one half and then slices it.\", \"The person peels the other half and then slices it.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person gets out a kiwi.\", \"The person cuts the kiwi in half.\", \"The person gets out a vegetable peeler.\", \"The person peels one half of the kiwi.\", \"The person cuts up the peeled half of the kiwi.\", \"The person peels the other half of the kiwi.\", \"The person cuts up that half of the kiwi.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a kiwi from the fridge.\", \"The person chops the kiwi in half.\", \"The person takes out a peeler from the drawer.\", \"The person peels one half and then slices it.\", \"The person peels the other half and then slices it.\", \"The man takes out a knife, cutting board, and a kiwi.\", \"He cuts the kiwi in half.\", \"He takes out a peeler.\", \"He peels the skin off of the kiwi.\", \"He slices the kiwi into small pieces.\", \"With the second half he cuts off the skin, instead of peeling it.\", \"He cuts the second half into small pieces as well.\", \"The man takes out a knife and cutting knife and places them on the counter.\", \"He takes out one kiwi and places it on the cutting board.\", \"He cuts the kiwi in half.\", \"He takes out a peeler and begins to peel the kiwi.\", \"He takes the peeled halve of kiwi  and cuts in small pieces.\", \"He takes the other halve of kiwi and peels it.\", \"He places the peeled kiwi on the cutting board and cuts it in small pieces.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person gets out a kiwi.\", \"The person cuts the kiwi in half.\", \"The person gets out a peeler.\", \"The person peels half of the kiwi.\", \"The person cuts the kiwi half into slices and cuts each slice in half.\", \"The person peels the other half of the kiwi.\", \"The person cuts that half of the kiwi into slices and cuts each of those slices in half.\", \"The person removed a cutting board and placed it on the counter.\", \"The person selected a knife.\", \"A kiwi is removed from the refrigerator and placed on the cutting board.\", \"The kiwi is sliced in half.\", \"A peeler is selected.\", \"One half of the kiwi is peeled using the peeler.\", \"The end is cut off and the kiwi half is sliced.\", \"The other half of the kiwi is peeled using a knife.\", \"The end is cut off.\", \"The other kiwi half is sliced.\", \"The kiwi is prepared.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person gets out a kiwi.\", \"The person cuts the kiwi in half.\", \"The person gets out a peeler.\", \"The person peels half of the kiwi.\", \"The person cuts the peeled half into slices.\", \"The person peels the other half of the kiwi.\", \"The person slices up the second half of the kiwi.\", \"Man get a knife and a cutting board.\", \"Man gets Kiwi from refrigerator.\", \"Man cuts kiwi in half and peels that half.\", \"Man then slices the first half of the kiwi.\", \"The man peals second half of the kiwi with a knife.\", \"Man removes things from cabinet.\", \"Man cuts Kiwi in half.\", \"Man slices half of the kiwi.\", \"Man peels other half of kiwi.\"], \"fps\": 29.4, \"num_frames\": 5855}, \"s28-d51.avi\": {\"timestamps\": [[207, 1164], [1164, 1812], [1870, 2762], [2860, 3803], [3989, 5239], [5259, 7558], [7566, 11601], [11627, 12835], [12841, 16174], [16264, 19520], [207, 317], [342, 449], [478, 887], [887, 1341], [1439, 1812], [1870, 2762], [2860, 4146], [4273, 4529], [4561, 5186], [5186, 6895], [6900, 7558], [7566, 10253], [10316, 11601], [11627, 14288], [14337, 19520], [207, 317], [342, 449], [478, 887], [887, 1341], [1439, 1812], [1870, 2762], [2860, 4146], [4273, 4529], [4561, 5239], [5259, 6895], [6900, 7558], [7566, 11333], [11457, 11601], [11627, 13027], [13077, 14288], [207, 317], [342, 449], [478, 887], [887, 1341], [1439, 1678], [1678, 2762], [2860, 3803], [3989, 4146], [4273, 4395], [4402, 4529], [4561, 4842], [4892, 4973], [5007, 5239], [5259, 7222], [7274, 7558], [207, 317], [342, 449], [478, 887], [887, 1678], [1678, 2762], [2860, 3803], [207, 449], [478, 1341], [1439, 1812], [1870, 3097], [3097, 3455], [3470, 3803], [3989, 4146], [4273, 4529], [4561, 5186], [7566, 8404], [8414, 10349], [10371, 11938], [11945, 13027], [13077, 14288], [14337, 19520], [207, 317], [342, 449], [478, 887], [887, 1341], [1439, 1678], [1678, 3803], [207, 1678], [1678, 2342], [2370, 3803], [3989, 5149], [5155, 7558], [5186, 8404], [8414, 9808], [9881, 12684], [14337, 15592], [15620, 19520], [207, 1341], [1439, 1812], [1870, 3333], [3989, 4146], [4273, 7054], [12720, 19520], [207, 317], [342, 946], [955, 1812], [1870, 2156], [2162, 3803], [3989, 4395], [4402, 5704], [5746, 7558], [7135, 9500], [9502, 11787], [11788, 12346], [7566, 15002], [15048, 18793], [207, 317], [342, 449], [478, 887], [887, 1341], [1439, 1812], [1870, 2762], [2860, 3803], [3403, 4146], [4273, 4529], [4561, 5239], [7566, 8404], [8414, 10253], [10316, 11601], [11627, 14288], [18917, 19520], [207, 887], [887, 1678], [1678, 2762], [2860, 3803], [3989, 4395], [4402, 5060], [5070, 5704], [5746, 7558], [14337, 18793], [12352, 19520], [207, 317], [342, 449], [478, 1341], [1439, 1678], [1678, 2762], [2860, 3803], [3989, 4146], [4273, 5239], [7566, 8404], [8414, 10253], [10316, 11333], [11457, 11601], [11627, 14288], [18917, 19520], [207, 449], [478, 1341], [1439, 1812], [3989, 4146], [4273, 4529], [4561, 5239], [5259, 6895], [6900, 7222], [5259, 8766], [8766, 10888], [10908, 11601], [11627, 13748], [13850, 14288], [14337, 18608], [5259, 19520], [207, 449], [478, 1341], [1439, 1812], [1870, 3803], [3989, 4529], [4561, 5060], [5070, 6895], [6900, 7222], [7274, 8647], [8688, 10888], [10908, 11601], [11627, 13748], [13850, 14288], [14337, 18793], [18713, 19520], [207, 1341], [1439, 2762], [2860, 3803], [1870, 4146], [4273, 5186], [5186, 5704], [5746, 7558], [7274, 9994], [9994, 12684], [14337, 15002], [15048, 16329], [16449, 18793], [18917, 19520], [207, 317], [342, 449], [478, 887], [887, 1164], [1164, 1678], [1678, 2762], [2860, 3803], [3989, 4146], [207, 1164], [1164, 1812], [1870, 2762], [2860, 3803], [3989, 4146], [4273, 5361], [5410, 6895], [7566, 8404], [8414, 11174], [11195, 11601], [11627, 13748], [12720, 15002], [15048, 18608], [18917, 19520], [207, 317], [342, 449], [478, 887], [887, 1341], [1439, 1678], [1678, 2762], [3989, 4146], [4273, 4395], [4402, 4529], [4561, 4842], [4892, 5060], [5070, 7222], [7274, 7558]], \"sentences\": [\"The man takes the beans from the refrigerator.\", \"The man washes the beans.\", \"The man chops the ends off the beans.\", \"The man slices the broad beans.\", \"The man takes out a pan and adds oil to the pan.\", \"The man adds the broad beans to the pan.\", \"The man straighten up while he waits for the beans to cook.\", \"The man seasons the broad beans.\", \"The man continues to stir the beans as they cook.\", \"The man places the beans onto a plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a package of broad beans from the fridge.\", \"The person takes out a half dozen broad beans and returns the package to the fridge.\", \"The person rinses the broad beans in the sink.\", \"The person chops the top and bottoms from the broad beans.\", \"The person chops the broad beans and discards the top and bottoms into the trash.\", \"The person takes a pan from the cabinet, places it on the stove, and turns it on.\", \"The person takes a bottle of oil from the pantry, adds a bit to the pan, and then returns the bottle to the pantry.\", \"The person takes several condiments from the counter and one from the pantry.\", \"The person takes a wooden spatula from the drawer and sweeps the chopped beans from the cutting board into the oil frying pan.\", \"The person adds one condiment to the frying pan and then returns its package to the pantry.\", \"The person returns the cutting board to the drawer.\", \"The person takes out a fork from the drawer and then procures a plate from the cabinet.\", \"The person uses the wooden spoon to scoop the fried beans onto the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a package of broad beans from the fridge.\", \"The person removes six broad beans from the package and returns the rest to the fridge.\", \"The person washes the broad beans in the sink.\", \"The person chops the tops and bottoms off the broad beans.\", \"The person chops the broad beans and disposes the discarded ends into the wastebin.\", \"The person takes out a pan from the drawer, places it on the stove, and turns it on.\", \"The person procures a bottle of oil from the pantry, adds a bit to the pan on the stove, and then returns the bottle to the pantry.\", \"The person procures several condiments from the counter and the pantry.\", \"The person takes a wooden utensil from the drawer and uses it to sweep the chopped beans from the cutting board into the frying pan.\", \"The person washes the knife in the sink.\", \"The person returns the cutting board to the drawer.\", \"The person adds condiments to the frying pan and stirs it.\", \"The person procures a plate from the cabinet.\", \"He took out cutting board\", \"He took out knife\", \"He took out beans\", \"He put back extra beans\", \"He washed beans\", \"He cut off ends of beans\", \"He chopped up beans\", \"He threw away ends\", \"He took out pan\", \"He turned on stove\", \"He took out oil\", \"He put oil in pan\", \"He put away oil\", \"He took out wooden spoon\", \"He put beans in pot\", \"He took out cutting board\", \"He took out knife\", \"He took out beans\", \"He washed beans\", \"He cut off ends of beans\", \"He chopped beans\", \"Get your cutting board and knife ready.\", \"Place the amount of beans you are going to use on the cutting board.\", \"Rinse off your beans in the sink, shaking off excess water.\", \"Cut off the ends of the beans.\", \"Lay your beans evenly on the cutting board.\", \"Cut your beans in desired pieces.\", \"Discard ends into the trash.\", \"Put a pan on the stove top and set temperature.\", \"Add oil to pan.\", \"Once the oil has heated up, spread beans evenly in pan.\", \"Add desired seasonings.\", \"While beans are cooking, clean your mess.\", \"Occasionally, move beans around to avoid burning.\", \"Get your plate and fork ready.\", \"Once at desired tenderness, plate up and eat.\", \"He took out cutting board\", \"He took out knife\", \"He took out beans\", \"He put back extra beans\", \"He washed beans\", \"He chopped up beans\", \"The person washes the sweet peas.\", \"The person cuts the tips off the sweet peas.\", \"The person chops the sweet peas into pieces.\", \"The person pours oil into the frying pan.\", \"The person puts the sweet peas into the frying pan.\", \"The person gentle spreads the sweet peas up in the pan.\", \"The person seasons the sweet peas with an unknown seasoning.\", \"The person seasons the sweet peas with salt and pepper and stirs them.\", \"The person taste tests the sweet peas and adjust their flavor by seasoning them more with salt and pepper.\", \"The person tastes the sweet peas again, seasons once more and then places the sweet peas into a plate for consumption.\", \"Collect your ingredients and tools.\", \"Wash the beans.\", \"Cut off the ends of the beans.\", \"Chop up the beans into small pieces.\", \"Heat olive oil in a pan.\", \"Fry and season the beans, tossing them regularly.\", \"He gets a cutting board.\", \"He gets broad beans from the fridge.\", \"He washes the beans.\", \"He cuts the ends off of the beans.\", \"He chops the beans evenly.\", \"He gets a frying pan.\", \"He gets salt and pepper.\", \"He puts the beans into the pan.\", \"He puts some spices on the beans.\", \"He mixes around the beans.\", \"He puts pepper on the beans.\", \"He tries the beans.\", \"He puts the beans on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a package of broad beans from the fridge.\", \"The person removes a handful of broad beans from the package and returns the rest of the package to the fridge.\", \"The person washes the broad beans in the sink.\", \"The person cuts the ends from the broad beans and pushes them to the side.\", \"The person chops the broad beans on the cutting board.\", \"The person throws the ends into the wastebin.\", \"The person takes out a pan from the drawer, puts it on the stove and turns it on.\", \"The person takes a bottle of cooking oil from the pantry, pours some into the pan, then returns the bottle to the pantry.\", \"The person takes out several condiments, then removes a wooden spatula from the drawer and uses the spatula to scoop the chopped beans into the pan and stirs them.\", \"The person takes a spoon from the drawer and adds some condiments to the pan, then returns the condiment to the pantry.\", \"The person puts the spoon in the dishwasher, washes the knife in the sink, then returns the cutting board to the drawer.\", \"The person adds some condiments to the pan, then removes a fork from the drawer and a plate from the cabinet.\", \"The person sets the fried beans on the plate.\", \"He gets out the needed items.\", \"He washes the beans.\", \"He cuts the ends off the beans.\", \"He chops the beans.\", \"He gets out a pan.\", \"He places oil in the pan.\", \"He gets out salt and pepper.\", \"He puts the beans in the pan.\", \"He cooks the beans while doing other assorted tasks.\", \"He places the beans on a plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a package of broad beans from the fridge, takes a handful, then returns the package to the fridge.\", \"The person washes the broad beans in the sink.\", \"The person cuts the ends from the broad beans and sets them to the side.\", \"The person chops the broad beans on the cutting board.\", \"The person throws the ends into the wastebin.\", \"The person takes out a pan from the drawer, places it on the stove, turns it on, then procures a bottle of oil from the pantry from which he pours into the pan after which he returns the bottle to pantry.\", \"The person gathers several condiments, takes out a wooden spatula from the drawer and uses it scoop the chopped beans into the pan which he then stirs.\", \"The person takes a spoon from the drawer which he uses to scoop a condiment into the pan before returning the condiment to the pantry,\", \" The person puts the spoon in the dishwasher, then washes the knife in the sink.\", \"The person returns the cutting board to the drawer.\", \"The person sprinkles condiments into the pan, then takes a fork from the drawer and a plate from the cabinet.\", \"The person adds more condiments, stirs the pan with the wooden spatula, then uses it to scoop the fried beans onto the plate.\", \"The person gets out a cutting board and a knife.\", \"The person gets out some beans.\", \"The person rinses the beans.\", \"The person cuts off the tips of the beans, cuts the beans into small pieces and throws away the tips.\", \"The person gets out a pan, puts it on the stove and turns it on.\", \"The person puts what looks like oil in the pan.\", \"The person gets out salt, pepper and a spice I don't recognize.\", \"The person gets out a wooden spatula.\", \"The person puts the beans into the pan and cooks them for awhile.\", \"The person gets out a spoon, adds the spice and cooks some more.\", \"The person puts the spoon in the dishwasher, rinses the knife and puts away the cutting board.\", \"The person adds salt and pepper and cooks some more.\", \"The person gets out a fork and a plate.\", \"The person cooks some more, occasionally tasting the beans and adding salt and pepper.\", \"The person puts the cooked beans on the plate.\", \"The person gets out a cutting board and a knife.\", \"The person gets out some broad beans.\", \"The person rinses the beans.\", \"The person cuts off the ends of each bean and cuts the beans into pieces.\", \"The person gets out a pan and puts it on the stove.\", \"The person puts what looks like oil in the pan.\", \"The person gets out some spices.\", \"The person gets out a wooden spatula.\", \"The person puts the beans in the pan and cooks them for a while.\", \"The person adds one of the spices, and cooks the beans some more.\", \"The person rinses the knife and puts away the cutting board.\", \"The person adds the other spices and keeps cooking.\", \"The person gets out a fork and a plate.\", \"The person keeps cooking, occasionally tasting the beans and adding more spices (salt and pepper, I think).\", \"The person scoops the beans onto the plate.\", \"He takes out a knife and a cutting board from the drawers and gets some fresh broad beans from the refrigerator.\", \"He washes the beans and cuts the ends off the beans.\", \"He cuts the beans into smaller pieces.\", \"He throws the ends of the beans away.\", \"He gets out a frying pan, turns on the stove, and gets a bottle of liquid from the cabinet which he pours into the pan.\", \"He spreads the oil around and takes out some salt and pepper.\", \"He pushes the beans into the frying pan.\", \"He puts powder on top of the beans.\", \"He cooks them further and puts salt and pepper on top.\", \"He got a fork out and tasted one of hte beans.\", \"He cooks the beans more and tastes them.\", \"He cooks them further and puts the salt and pepper away.\", \"He pushes then onto a plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out beans\", \"He put back unused beans\", \"He washed beans\", \"He chopped off ends of beans\", \"He chopped beans\", \"He threw away scraps\", \"The person gets a cutting board, a sharp knife and some broad beans.\", \"The person rinses the beans.\", \"The person cuts the tips off of the beans.\", \"The person cuts the beans into one-inch segments.\", \"The person discards the bean tips.\", \"The person gets a skillet, turns on the heat and adds oil to it.\", \"The person gets salt and pepper and spices.\", \"The person gets a wooden spoon and uses it to push the cut beans into the hot skillet, stirring it slightly.\", \"The person adds spices to the green beans in the skillet.\", \"The person rinses the knife and the cutting board, then puts them away.\", \"The person adds salt and pepper to the beans and stirs them with the wooden spoon.\", \"The person gets a plate and fork ready, then uses the fork to pick up a bean and taste it to test the tenderness and flavor.\", \"The person continues to cook the beans, tasting it again and adding spices as needed.\", \"The person turns off the burner and uses the wooden spoon to slide the beans onto the plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out beans\", \"He put away extra beans\", \"He washed beans\", \"He cut off ends of beans\", \"He threw away ends of beans\", \"He took out pan\", \"He turned on stove\", \"He took out oil\", \"He put oil in pan\", \"He took out wooden spoon\", \"He put beans in pan\"], \"fps\": 29.4, \"num_frames\": 19709}, \"s27-d50.avi\": {\"timestamps\": [[233, 485], [541, 760], [816, 1014], [816, 1014], [1024, 2195], [2210, 2336], [233, 760], [816, 1014], [1024, 1960], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [541, 760], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [541, 760], [816, 1014], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [541, 760], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 760], [816, 1014], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [541, 760], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [541, 760], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [233, 485], [541, 760], [541, 760], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [541, 760], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 760], [816, 1014], [1024, 1960], [1024, 1960], [2001, 2336], [233, 485], [541, 760], [816, 1014], [816, 1014], [816, 1014], [816, 1014], [816, 1014], [1024, 1960], [1024, 1960], [1024, 1960], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [233, 485], [541, 760], [541, 760], [816, 1014], [816, 1014], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [2210, 2336], [233, 1014], [233, 1014], [233, 1014], [1024, 1960], [1024, 1960], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [541, 760], [816, 1014], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 760], [816, 1014], [1024, 1960], [2001, 2195], [2210, 2336], [233, 485], [541, 760], [816, 1014], [1024, 1960], [1024, 1960], [2001, 2336], [2001, 2336]], \"sentences\": [\"He took out a glass\", \"He took out a second smaller glass\", \"He took out egg\", \"He cracked egg\", \"He separated egg\", \"He threw away egg shell\", \"The person gets out two glasses.\", \"The person gets out an egg.\", \"The person cracks the egg carefully over the larger glass.\", \"The person pours the egg back and forth, holding the yolk in the shells and letting the white drain into the large glass.\", \"The person pours the yolk into the small glass.\", \"The person throws away the shell.\", \"Person sets large mug on counter.\", \"Person sets smaller glass on table.\", \"Egg is cracked open.\", \"Egg white is full removed into larger glass mug.\", \"Yolk is dropped into smaller glass.\", \"Egg shell is thrown away.\", \"The person procures a large glass from the cupboard.\", \"The person procures a small glass from the cupboard.\", \"The person procures an egg from the fridge.\", \"The person cracks the egg against the rim of the large glass.\", \"The person carefully holds the egg in half and drains the white into the large glass.\", \"The person dumps the egg yolk into the small glass.\", \"The person disposes of the egg shells into the trash.\", \"The man places a glass on the counter.\", \"Next, he places a tiny glass cup on the counter.\", \"Next, he takes out one egg from the refrigerator and cracks it on the counter.\", \"He slowly open the cracked egg and pours only the egg white in the bigger glass cup.\", \"He places the yellow part of the egg into the smaller glass cup.\", \"He throws the egg shell in the trash.\", \"The person gets out two glasses.\", \"The person gets out an egg.\", \"The person cracks the egg in half over the larger glass.\", \"The person pours the egg carefully back and forth, keeping the yolk in the shells and letting the white pour into the larger glass.\", \"The person pours the yolk into the smaller glass.\", \"The person throws away the shell.\", \"The person takes a glass mug from the cupboard.\", \"The person takes a small glass from the cupboard.\", \"The person procures an egg from the fridge.\", \"The person cracks the egg on the rim of the mug and then drains the egg white into it.\", \"The person dumps the egg yolk into the second glass.\", \"The person throws the shells into the wastebin.\", \"The person takes a glass mug from the cupboard.\", \"The person takes a small glass from the cupboard.\", \"The person procures an egg from the fridge.\", \"The person cracks the egg on the rim of the mug and then drains the egg white into it.\", \"The person dumps the egg yolk into the second glass.\", \"The person throws the shells into the wastebin.\", \"He walks to the cupboard, opens it, takes out a glass then closes the cupboard.\", \"He walks to the counter and places the glass on the counter.\", \"He walks back to the cupboard, opens it, takes out a smaller glass, then closes the cupboard.\", \"He walks back over to the counter and places the smaller glass on the counter next to the bigger glass.\", \"He walks to the fridge, opens it and takes out an egg.\", \"He walks to the counter and breaks the egg on the edge of the bigger glass, then seperates the egg white into the glass.\", \"He places the egg yolk into the smaller glass.\", \"He takes the egg shells and throw them in the garbage.\", \"The person takes a glass mug from the cupboard.\", \"The person takes a small glass from the cupboard.\", \"The person procures an egg from the fridge.\", \"The person cracks the egg on the rim of the mug and then drains the egg white into it.\", \"The person dumps the egg yolk into the second glass.\", \"The person throws the shells into the wastebin.\", \"The person takes out two drinking glasses.\", \"The person cracks one egg.\", \"The person carefully opens the egg over one mug, catching the yolk in one half of the shell.\", \"The person pours only the whites of the eggs into the mug.\", \"The person puts the yolk into the other glass and throws away the shell.\", \"The person goes to the cabinet, gets a mug and places it on the counter.\", \"The person goes to the cabinet, gets a small glass and places it on the counter.\", \"The person goes to the refrigerator and gets an egg and brings it over to the counter.\", \"The person taps the egg on the side of the mug to slightly break the shell.\", \"The person uses his thumbs to separate the egg shell into two parts while holding it over the mug so it can catch any egg white that comes out.\", \"The person continues to slowly separate the egg into two parts while more of the egg white fall into the mug.\", \"Having completed the separation of the egg shell, the person captures the egg yolk into the egg shell that is in his left hand.\", \"The person moves the egg yolk into the egg shell he is holding in his right hand.\", \"The person is using the egg shell that is his left hand to remove any egg white that is clinging to the egg shell that contains the egg yolk.\", \"The person moves the egg yolk into the egg shell he is holding in his left hand.\", \"The person is using the egg shell he is holding in his right hand to remove any egg white that is clinging to the egg shell that contains the egg yolk he is holding in his left hand.\", \"The person carefully places the egg yolk into the small glass.\", \"The person throws the egg shells into the trash.\", \"Man goes to cabinet chooses a beer mug, closes cabinet door\", \"Walks to the counter sets the glass down on the counter\", \"The man goes back to the cabinet, chooses a juice glass and shuts cabinet door.\", \"The man goes back to the counter and sets the glass down on the counter next to the larger glass.\", \"The man goes to the refrigerator and grabs and egg, he closes the refrigerator door.\", \"The man walks back to the counter preparing to crack the egg on the side of the large glass.\", \"The man cracks the egg over the glass allowing the white of the egg to fall into the glass while keeping the yolk inside the eggshell.\", \"The man carefully pours the egg back and forth into both sides of the eggshell to allow all the white to fall into the large glass.\", \"The man now pours the egg yolk into the smaller glass by picking up the glass and allowing the yolk to slide into it.\", \"The man now takes the empty eggshell and opens the trash cabinet and puts the eggshells in the trash and shuts the trash door.\", \"The man is now complete and looks at his work and I assume he explains that he separated the egg into yolk and whites, he stands in front of the counter not touching it.\", \"Person gets out two cups and one egg.\", \"Person gently opens up egg over first cup.\", \"Person allows some egg white to drain into the first cup.\", \"Person keeps egg yolk in one half.\", \"Person gently moves egg yolk into the second half of the egg shell.\", \"Person uses second half of egg shell to cut excess egg white from the egg yolk.\", \"Person gently puts egg yolk into the second cup.\", \"Person discards egg shells.\", \"The person takes out a tall glass from the cupboard.\", \"The person takes out a short glass from the cupboard.\", \"The person takes out an egg from the refrigerator.\", \"The person cracks the egg open.\", \"The person lets the egg yolk flow into the tall glass while he moves the yolk between the two eggshell halves.\", \"The person pours the egg yolk into the short glass.\", \"The person discards the eggshells.\", \"The person sets up two separate glasses on the counter.\", \"The person cracks an egg.\", \"The person holds the yolk in the shell and drops the egg white into the first glass.\", \"The person puts the yolk into the second glass.\", \"The person throws the egg shell into the garbage.\", \"Grab a glass.\", \"Grab a smaller glass.\", \"Get your egg from the refrigerator.\", \"Crack the egg on the side of the bigger glass, slightly for the egg white to run out.\", \"Toggle the egg yolk back and forth over the glass so the remaining egg white falls into glass.\", \"Drop yolk from egg shell into smaller glass.\", \"Discard egg shell into trash.\"], \"fps\": 29.4, \"num_frames\": 2414}, \"s28-d46.avi\": {\"timestamps\": [[152, 295], [324, 386], [415, 630], [662, 781], [869, 1167], [1225, 2236], [2265, 2385], [2416, 8928], [9017, 9551], [9618, 10940], [152, 386], [415, 630], [662, 2385], [2416, 9204], [10947, 10980], [152, 386], [415, 630], [662, 1167], [1225, 2385], [2416, 8928], [9017, 9551], [9229, 10980], [152, 295], [324, 386], [415, 630], [662, 1167], [1225, 2236], [2265, 2385], [9618, 10980], [152, 295], [324, 386], [415, 630], [662, 781], [869, 1167], [1225, 2385], [2416, 8928], [9017, 9204], [9229, 9551], [2416, 10980], [152, 386], [415, 630], [662, 1167], [1225, 2385], [9618, 10980], [152, 295], [324, 386], [415, 630], [662, 781], [869, 1167], [1225, 2236], [2265, 2385], [2416, 8928], [152, 386], [415, 630], [662, 781], [869, 1167], [869, 1167], [1225, 4269], [4327, 5789], [152, 386], [415, 630], [662, 1167], [1225, 2385], [2416, 10980], [152, 295], [324, 386], [415, 630], [662, 781], [869, 1167], [1225, 2236], [2265, 2385], [2416, 8928], [5835, 9204], [9229, 9551], [9017, 10980], [152, 295], [324, 386], [415, 630], [662, 781], [869, 1167], [1225, 2236], [2265, 2385], [2416, 8928], [9017, 9551], [152, 386], [415, 1167], [1225, 2236], [2265, 2385], [2416, 8928], [9017, 9551], [9618, 10190], [9618, 10980], [9618, 10980], [152, 295], [324, 386], [415, 630], [662, 781], [869, 1167], [1225, 2236], [2265, 2385], [2416, 5930], [152, 295], [324, 386], [415, 630], [662, 1167], [1225, 2236], [2265, 2385], [6128, 8928], [9017, 9204], [9229, 9551], [10275, 10980], [152, 386], [415, 630], [662, 781], [869, 1167], [1225, 2236], [2265, 2385], [2416, 8928], [9017, 9551], [9618, 10980], [9618, 10980], [152, 630], [662, 1167], [1225, 2385], [2416, 3824]], \"sentences\": [\"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a pineapple.\", \"The person cuts off the bottom of the pineapple.\", \"The person gets out a plate.\", \"The person cuts the pineapple into slices.\", \"The person throws away the top of the pineapple.\", \"The person cuts the rind off each slice, cuts the slices into eighths and puts them on the plate\", \"The person gets out a bowl and pours some of the pieces into it.\", \"The person cuts up the last two slices of pineapple.\", \"He gets out a cutting board and a knife.\", \"He sets a pineapple on the cutting board.\", \"He slices the pineapple, then discards the top and bottom.\", \"He gets a bowl to put what he's already cut into.\", \"He finishes the last of the chopping.\", \"He walked to the drawer, took out the cutting board and knife.\", \"He walked to the pantry and took out a pineapple.\", \"He cut the bottom of the pineapple, walked to the cabinet and took out a plate.\", \"He sliced the whole pineapple, and then threw away the ends.\", \"He cut the peels of the pineapples, sliced them, and placed them on the plate.\", \"He went to the cabinet, took out a bowl, and place half of pineapple from the plate into the bowl.\", \"He finished cutting the peels off the pineapple, sliced them, and placed them in the bowl.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a pineapple from the pantry.\", \"The person procures a plate from the cabinet.\", \"The person cuts the pineapples into slices.\", \"The person throws the bottom and top of the pineapple in the wastebin.\", \"The person cuts away the rinds from the pineapple slices and then chops it up and puts it on a plate.  Three quarters of the way through he realizes the plate is too small and gets a bowl from the pantry which he proceeds to fill as well.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a pineapple.\", \"The person cuts off the bottom of the pineapple.\", \"The person gets out a plate.\", \"The person cuts the pineapple into slices and throws away the top and bottom.\", \"The person cuts the edge off of all but two of the slices, cuts the slices into eighths and puts them on the plate.\", \"The person gets out a bowl.\", \"The person scrapes some pineapple pieces into the bowl.\", \"The person cuts up the remaining pineapple slices and puts them in the bowl.\", \"He gets a cutting board and knife.\", \"He gets the pineapple.\", \"He gets a plate.\", \"He slices the pineapple and throws away the top.\", \"For each slice, he removes the outside, slices it and puts it aside.\", \"He took out cutting board\", \"He took out knife\", \"He took out pineapple\", \"He cut off bottom of pineapple\", \"He took out plate\", \"He sliced pineapple\", \"He threw out scraps\", \"He cut off pineapple skin\", \"He gets a knife and a cutting board.\", \"He puts a pineapple on the cutting board.\", \"He cuts off the end of the pineapple.\", \"He gets a plate.\", \"He cuts the pineapple.\", \"He cuts off the skin of each slice.\", \"He cuts each slice into small pieces.\", \"He gets a cutting board and knife.\", \"He gets a pineapple.\", \"He gets a plate.\", \"He slices the pineapple and discards the ends.\", \"He removes the skin from the slices and chops them up.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets a pineapple out of the cupboard.\", \"The person cuts off the bottom of the pineapple.\", \"The person gets out a white plate.\", \"The person slices the pineapple into 9 slices.\", \"The person throws away the bottom and top of the pineapple.\", \"The person trims the skin off seven of the pineapple slices, cuts them into 8 triangles each and puts them on the plate.\", \"The person gets out a small bowl.\", \"The person transfers some of the pineapple from the plate to the bowl.\", \"The person finishes trimming and cutting the last two slices; he does not even core the pineapple!!!  Who eats the core??\", \"He took out cutting board\", \"He took out knife\", \"He took out pineapple\", \"He cut off bottom of pineapple\", \"He took out plate\", \"He sliced pineapple\", \"He threw out pineapple scraps\", \"He cut up pineapple\", \"He put pineapple in bowl\", \"The person takes out a cutting board and knife.\", \"The person takes out a pineapple and plate from the cupboard.\", \"The person cuts the pineapple into circular slices from the bottom of the pineapple to the top.\", \"The person throws away the remaining stem of the fruit.\", \"The person cuts the skin off each slice and cuts each slice into 8 triangular pieces, putting the pieces on the plate until it is full.\", \"The person takes out a bowl and scoops about half of the pineapple pieces into the bowl.\", \"The person cuts the next slice in the same manner and puts the pieces in the bowl.\", \"The person cuts the skin off of the last slice and cuts it into rectangular chunks, then puts them in the bowl.\", \"The person begins to pick up the pieces of skin.\", \"She took out cutting board\", \"He took out knife\", \"He took out pineapple\", \"He cut bottom of pineapple\", \"He took out plate\", \"He sliced pineapple\", \"He threw away scraps\", \"He diced up pineapple\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a pineapple.\", \"The person gets out a plate.\", \"The person cuts the pineapple into slices.\", \"The person throws away the top and bottom of the pineapple.\", \"The person trims the edges off of each slice, cuts the slice into eighths and pus the pieces on the plate.\", \"The person gets out a bowl.\", \"The person scoops some pineapple pieces into the bowl.\", \"The person trims the last two slices, cuts them up and puts the pieces in the bowl.\", \"The man enters the kitchen and removes a cutting board and knife from the cabinet.\", \" The man then walk over to retrieve a pineapple.\", \"The man uses the knife to slice off the end of the pineapple.\", \"The man then walks over to get a plate from the cabinet.\", \" The man returns from the cabinet and begins to cut medium size slices from the pineapple until he reaches the top.\", \" The man disposes the top of the pineapple in the trash.\", \"The man takes one slice of the pineapple at a time and carefully cuts off the rough ends, then dices it into eighths before moving the diced pieces to a plate.\", \"The man retrieves a bowl from the cabinet to put some of the diced pineapple pieces into because the plate is full.\", \"The man continues to cut off the edges of the remaining two slices of pineapple and dices them into eighths.\", \" The man places the knife down and begins to clean up the scraps.\", \"Take out a cutting board, knife, and the pineapple.\", \"Cut off the base of the pineapple 1/2 inch from the bottom and take out a plate.\", \"Slice the pineapple into 1/2 inch disks starting from the bottom, and stopping just before the top.  Throw away the bottom and top.\", \"Cut around each of the pineapple disks to cut off the peel, then cut the disk into eight wedges like a pizza.\"], \"fps\": 29.4, \"num_frames\": 11146}, \"s29-d39.avi\": {\"timestamps\": [[241, 382], [395, 516], [570, 868], [941, 1237], [1241, 3227], [3243, 4185], [4226, 4712], [4726, 4944], [4991, 5174], [5191, 5501], [5526, 6524], [241, 775], [793, 1479], [1536, 4712], [4726, 5174], [5191, 5577], [6603, 6706], [6746, 8441], [8562, 9550], [241, 775], [793, 1864], [1911, 4712], [4726, 5174], [5191, 5720], [5645, 6706], [6746, 8359], [8363, 8441], [8562, 9550], [241, 516], [570, 775], [793, 868], [941, 1479], [1536, 1864], [1911, 4400], [4535, 5174], [5191, 5720], [5761, 6706], [6746, 7073], [7140, 7323], [7380, 9086], [9086, 9550], [241, 516], [570, 775], [793, 1237], [1241, 1864], [1911, 3303], [3327, 5174], [5191, 5577], [5761, 6706], [6746, 8441], [8562, 9086], [9086, 9550], [9086, 9550], [241, 516], [570, 775], [793, 868], [941, 1479], [1536, 4400], [4535, 5098], [5104, 5720], [5645, 6706], [6746, 9550], [241, 1237], [1241, 1479], [1536, 1864], [1536, 1864], [1911, 4400], [4535, 5174], [5191, 5720], [5761, 5940], [5761, 6706], [6746, 7323], [6746, 7323], [7380, 8359], [8363, 8441], [8562, 9368], [9480, 9550], [241, 516], [570, 775], [793, 868], [941, 1479], [1536, 4400], [4535, 5174], [5191, 5411], [5421, 5720], [5975, 6706], [6746, 7323], [7380, 8441], [8562, 8837], [8899, 9550], [241, 516], [570, 775], [793, 868], [941, 1479], [1536, 1864], [1911, 3718], [241, 516], [570, 775], [793, 868], [941, 1479], [1536, 1864], [3737, 4400], [4535, 5174], [5191, 5720], [5761, 6706], [6746, 8441], [8562, 9086], [9086, 9550], [241, 868], [941, 1337], [1355, 1722], [1911, 4400], [4535, 4712], [4726, 5501], [5526, 6524], [5761, 7181], [7193, 9368], [241, 1237], [1241, 1479], [1536, 1864], [1805, 4400], [4535, 4944], [4991, 6187], [6603, 6706], [6746, 7323], [6746, 7323], [7380, 8172], [8177, 8441], [8562, 9086], [9086, 9368], [9480, 9550], [9480, 9550], [241, 382], [395, 516], [570, 868], [941, 1337], [1355, 1722], [1911, 4400], [4535, 4712], [4726, 4944], [4991, 5501], [5526, 6524], [6274, 6706], [241, 382], [395, 516], [570, 868], [941, 1237], [1241, 1603], [1667, 1722], [1805, 2220], [2232, 3303], [1805, 4185], [4226, 4712], [4726, 5411], [5421, 6524], [6746, 8220], [8224, 9368], [241, 868], [941, 1603], [3327, 4400], [4535, 5501], [5526, 6187], [6603, 7260], [7263, 8220], [8224, 9086], [9086, 9368], [241, 382], [395, 516], [570, 868], [941, 1237], [1241, 1603], [1667, 4400], [4535, 4712], [4726, 4944], [4991, 5501], [5526, 6524], [6274, 6706], [6603, 8441], [8562, 8837], [8899, 9368], [241, 775], [793, 1864], [1667, 4712], [4726, 5174], [5191, 6044], [6746, 7073], [7140, 7323], [7380, 8837], [9480, 9550]], \"sentences\": [\"He took out cutting board\", \"He took out knife\", \"He took out leek\", \"He washed leek\", \"He diced leek\", \"He cut bottom of leak\", \"He took out pan\", \"He turned on stove\", \"He took out oil\", \"He put oil in pan\", \"He put leek in pan\", \"He gets out the equipment.\", \"He gets out and washes a leek.\", \"He chops the leek.\", \"He gets out a pan and turns on the stove.\", \"He puts oil in the pan.\", \"He puts the leeks in the pan.\", \"He finishes cooking the leeks.\", \"He puts the leeks on a plate.\", \"A man enters the kitchen, removes a cutting board and a knife from the drawer and places them on the counter.\", \"He retrieves a leek from the refrigerator, washes it in the sink, pulls off the outer leaves and places it on the cutting board.\", \"He slices the entire, usable length of the leek crosswise.\", \"He takes a frying pan out of the drawer, places it on the stove and turns on the heat.\", \"He retrieves some oil from the cupboard and pours some in the pan.\", \"He transfers the leeks from the cutting board to the pan.\", \"He takes a spatula from the drawer, stirs the leeks, add more oil and continues stirring the leeks.\", \"He removes the leeks from the heat and turns off the stove.\", \"He gets a plate from the cupboard and transfers the leeks from the pan to the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes some leeks from the fridge.\", \"The person washes the leeks in the sink.\", \"The person peels the sheaves from the leeks.\", \"The person chops the leeks on the cutting board.\", \"The person takes out a pan, places it on the stove, and turns the stove on.\", \"The person procures a bottle of oil from the pantry and pours some into the pan.\", \"The person sweeps the chopped leeks into the pan.\", \"The person takes out a wooden utensil from the drawer.\", \"The person stirs the frying leeks with the wooden utensil and then adds a bit of oil.\", \"The person procures a plate from the cabinet.\", \"The person uses the wooden utensil to dump the fried leeks onto the plate.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person takes out a leek.\", \"The person peels the outer leaves from the leek.\", \"The person cuts off the end of the leek and finely slices the rest of the leek until he reaches the leaves.\", \"The person puts a pan on the stove range and turns the range on.\", \"The person adds a little bit of olive oil to the pan.\", \"The person adds the leeks to the pan.\", \"The person stirs the leeks until they are done cooking.\", \"The person takes out a plate.\", \"The person puts the cooked leeks onto the plate.\", \"The person is done.\", \"Takes out a cutting board.\", \"Takes out a knife.\", \"Takes the leeks out of the refrigerator.\", \"Washes the leeks in the sink.\", \"Slices the leek into pieces.\", \"Takes a skillet out and places on the stove.\", \"Pours some oil into the skillet.\", \"Puts the leek pieces into the skillet.\", \"Pours the cooked leeks onto a plate.\", \"Get out a knife, cutting board, and leak.\", \"Rinse leak in sink, then shake dry.\", \"Peel off large outer fonds on leak.\", \"Cut white base of leak in half.\", \"Cut both sides of the base into fine slices, leaving the remaining fonds and the very base of the leak.\", \"Start heating a skillet on a stove.\", \"Add a few drops of oil to the skillet.\", \"Spread oil throughout skillet and check to see if heated.\", \"Add leaks to skillet.\", \"Stir leaks continuously.\", \"Add a few more drops of oil.\", \"Stir Continuously.\", \"Remove skillet from heat and turn off stove.\", \"Stir leaks slightly further.\", \"Pour leaks on plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures some leeks from the fridge.\", \"The person washes the leeks in the sink.\", \"The person peels then leeks then chops them on the cutting board.\", \"The person takes out a pan from the drawer, places it on the stove, and then turns the stove on.\", \"The person takes a bottle of oil from the pantry.\", \"The person pours some oil into the pan on the stove.\", \"The person scoops the chopped leeks into the frying pan.\", \"The person takes a wooden spoon from the drawer and stirs the leeks in the frying pan.\", \"The person adds some more oil, stirs the leeks some more, then removes the pan from the stove and turns it off.\", \"The person procures a plate from the cabinet.\", \"The person sets the fried leeks on the plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out leek\", \"He washed leek\", \"He cut stem off leek\", \"He chopped up leek\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a leek.\", \"The person rinses the leek.\", \"The person peels off some of the leek's leaves.\", \"The person chops up the stem of the leek.\", \"The person gets out a frying pan, puts it on the stove and turns it on.\", \"The person adds oil to the frying pan.\", \"The person puts the leeks in the pan.\", \"The person gets out a wooden spatula and stirs the leeks while they cook.\", \"The person gets out a plate.\", \"The person puts the leeks on the plate.\", \"The man takes out a knife, cutting board, and leeks.\", \"He washes the leeks.\", \"He cuts the leaves off of it.\", \"He cuts the remainder of the plant into small pieces.\", \"He puts a frying pan on the burner.\", \"He adds oil to the pan.\", \"He puts the leeks into the pan.\", \"He stirs the leeks with a wooden spatula.\", \"He pours the leeks onto a plate.\", \"Get out cutting board, knife, and leek.\", \"Wash the leek.\", \"Peel off outer leek layer.\", \"Chop up leek into thin slices.\", \"Get out pan.\", \"Heat oil in pan.\", \"Pour leeks into oiled pan.\", \"Stir leeks.\", \"Add more oil.\", \"Stir leeks some more.\", \"Remove from heat.\", \"Get out plate.\", \"Stir leeks, once more.\", \"Plate up leeks.\", \"Set plate on counter.\", \"He took out cutting board\", \"He took out knife\", \"He took out leek\", \"He washed leek\", \"He cut off bottom of leek\", \"He chopped leak\", \"He took out pan\", \"He turned on heat\", \"He put oil in pan\", \"He put leek in pan\", \"He took out spoon\", \"He takes out a cutting board\", \"He takes out a knife\", \"He takes out the leeks from the fridge\", \"He rinses the leeks in the sink\", \"He peels the outer leaves of the leek\", \"He chops off the bottom part of the leek\", \"He takes a piece from the bottom part and thinly slices it\", \"He slices the rest of the leek, up to the leaves\", \"He takes the remainder of the bottom part of the leek and slices it\", \"He takes out a pan and places it on the stove\", \"He puts oil into the pan\", \"He places the leeks in the hot stove\", \"He cooks the leeks and removes them from the stovetop\", \"He transfers the leeks onto a plate\", \"He places chopping board, knife on counter and removes leeks from fridge.\", \"He rinses leeks and strips off outer layers.\", \"He thinly slices leeks.\", \"He puts pan on stove, turns stove on and adds olive oil.\", \"He waits for pan to heat up and tests a slice of the leak.\", \"He adds the leeks, stirs and then adds more olive oil.\", \"He continually stirs leeks, lowers temperature, stirs more and removes from heat.\", \"He stirs leeks, gets a plate and stirs more.\", \"He plates the leeks.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a leek.\", \"The person rinses the leek.\", \"The person peels off two of the leek's leaves.\", \"The person cuts most of the leek's stalk into small pieces.\", \"The person gets out a frying pan.\", \"The person puts the pan on the stove and turns it on.\", \"The person puts oil in the pan.\", \"The person scrapes the leek pieces into the pan.\", \"The person gets out a wooden spatula.\", \"The person stirs the leeks while they cook.\", \"The person gets out a plate.\", \"The person puts the cooked leek on the plate.\", \"A man enters the kitchen, removes a knife and a cutting board from the drawer and places them on the counter top.\", \"He then retrieves a leek from the refrigerator, washes it in the sink and removes some of the outer leaves.\", \"He slices the leek crosswise, setting aside the waste.\", \"He removes a frying pan from the drawer, places it on the range and turns on the heat.\", \"He retrieve some oil from the cupboard, pours it into the frying pan.\", \"Once the pan is hot, he adds the leeks to the pan, removes a spatula from the drawer and begins to stir the leeks.\", \"He adds more oil to the pan and continues to stir the leeks.\", \"He turns off the range and removes the leeks from the heat.\", \"He transfers the cooked leeks from the frying pan to the plate.\"], \"fps\": 29.4, \"num_frames\": 9614}, \"s32-d52.avi\": {\"timestamps\": [[277, 437], [496, 1167], [1171, 1551], [1594, 1840], [1913, 3117], [3172, 3789], [3877, 4341], [277, 437], [496, 1008], [1052, 1208], [1226, 1466], [1506, 1666], [1720, 1840], [1913, 3117], [3172, 3266], [3449, 3789], [3877, 4015], [4036, 4341], [4506, 4564], [4580, 5240], [277, 437], [496, 691], [699, 1008], [1052, 1208], [1226, 1466], [1506, 1551], [1594, 1666], [1720, 1840], [1913, 3117], [277, 437], [496, 691], [699, 1008], [1052, 1208], [1226, 1466], [1506, 1666], [1720, 1840], [1913, 3117], [3172, 3789], [3877, 4174], [4276, 4341], [4506, 4564], [4580, 5123], [277, 1208], [277, 1208], [1226, 1840], [3172, 3266], [3449, 4015], [4506, 4649], [277, 437], [496, 1008], [1052, 1208], [1226, 1666], [1720, 1840], [1913, 3117], [1913, 3266], [3449, 3789], [3877, 4174], [4276, 4341], [4036, 4564], [5191, 5240], [277, 437], [496, 691], [699, 1008], [1052, 1208], [1226, 1466], [1506, 1840], [1913, 3117], [3172, 3266], [3449, 3789], [277, 437], [496, 1008], [1052, 1167], [1171, 1466], [1506, 1666], [1720, 1840], [1913, 3117], [3172, 3266], [3449, 3789], [3877, 3943], [3976, 4341], [4506, 4564], [4704, 5240], [277, 437], [496, 691], [699, 1008], [1052, 1466], [1506, 1840], [1913, 3117], [3172, 3789], [3877, 4174], [4506, 4564], [4506, 4564], [277, 437], [496, 691], [699, 1008], [1052, 1208], [1226, 1466], [1506, 1840], [1913, 3117], [3172, 3789], [3877, 4174], [4276, 4341], [4276, 4564], [277, 1208], [1226, 1840], [1913, 3117], [3172, 3789], [3877, 4341], [277, 437], [496, 691], [699, 1008], [1052, 1208], [1226, 1466], [1506, 1666], [1720, 1840], [1913, 3117], [3172, 3266], [3449, 3789], [3877, 4174], [4276, 4341], [4506, 4564], [4580, 5240], [5357, 5458], [277, 437], [496, 691], [699, 1008], [1052, 1208], [1226, 1666], [1720, 1840], [1913, 3117], [3172, 3266], [3449, 3789], [3877, 4015], [4036, 4174], [4276, 4341], [4506, 4564], [4580, 5240], [5357, 5458], [277, 437], [496, 1167], [1171, 1840], [1913, 3117], [3172, 3789], [3877, 4174], [4276, 4341], [4506, 4564], [5357, 5458], [277, 437], [496, 1008], [1052, 1208], [1226, 1666], [1720, 1840], [1913, 3117], [3172, 3266], [3449, 3789], [3877, 4174], [4276, 4341], [4506, 4564], [4580, 5240], [277, 437], [496, 1208], [1226, 1666], [3172, 3266], [3877, 4015], [5357, 5458]], \"sentences\": [\"The woman retrieves a kiwi from the refrigerator.\", \"The woman washes the kiwi in the sink with water.\", \"The woman retrieves a knife from the drawer and rinses it in the sink.\", \"The woman cuts off the ends of the kiwi with the knife.\", \"The woman uses a peeler and peels the skin from the kiwi until all the skin is removed.\", \"The woman washes her hands, than thinly slices the kiwi into slices with the knife.\", \"The woman washes her hands, than retrieves a plate from the cabinet for the kiwi.\", \"The person gets a kiwi fruit out of the fridge.\", \"The person gets out a small cutting board and a potato peeler.\", \"The person washes off the kiwi fruit.\", \"The person gets out a knife.\", \"The person washes the knife and the peeler.\", \"The person cuts off both ends of the kiwi fruit.\", \"The person uses the peeler to peel off all the remaining skin on the kiwi.\", \"The person washes her hands.\", \"The person slices the kiwi into quarter inch discs.\", \"The person washes and dries her hands.\", \"The person gets a plate and puts the kiwi slices on it.\", \"The person throws away the kiwi skin.\", \"The person rinses off the cutting board, the knife and potato peeler and dries her hands.\", \"She took out kiwi\", \"She took out peeler\", \"She took out cutting board\", \"She washed kiwi\", \"She took out knife\", \"She washed knife\", \"She washed peeler\", \"She sliced kiwi\", \"She peeled kiwi\", \"The person gets out a kiwi.\", \"The person gets out a vegetable peeler.\", \"The person gets out a wooden plate.\", \"The person rinses the kiwi.\", \"The person gets out a knife.\", \"The person rinses the knife and vegetable peeler.\", \"The person cuts off the ends of the kiwi.\", \"The person peels the kiwi.\", \"The person slices up the kiwi.\", \"The person gets out a plate.\", \"The person puts the kiwi slices on the plate.\", \"The person throws away the ends and peel of the kiwi.\", \"The person rinses the wooden plate, knife and peeler.\", \"the person gets a peeler and a cutting board\", \"the person washes the Kiwi\", \"the person gets a sharp knife\", \"the person uses the peeler to peel the skin off of the Kiwi\", \"the person slices the Kiwi\", \"the person gets a plate a puts the Kiwi slices on it\", \"The woman removes a kiwi fruit from the refrigerator and places it in the sink.\", \"She removes a peeler and cutting board from the drawer and places them on the counter.\", \"She rinses the kiwi fruit and places it on the cutting board.\", \"She removes a knife from the drawer.\", \"She uses the knife to cut off both ends of the kiwi fruit.\", \"She uses the peeler to peel all of the skin off of the kiwi fruit.\", \"She rinses her hands in the sink.\", \"She uses the knife to cut the kiwi fruit into slices.\", \"She removes a plate from the cabinet.\", \"She moves the kiwi fruit from the cutting board to the plate.\", \"She places all of the kiwi peelings in the recycling bin.\", \"She rinses all of the utensils and cutting board.\", \"She took out kiwi\", \"She took out peeler\", \"She took out cutting board\", \"She washed kiwi\", \"She took out knife\", \"She cut kiwi\", \"She peeled kiwi\", \"She washed kiwi\", \"She sliced kiwi\", \"The person takes a kiwi out of the refrigerator.\", \"The person takes a peeler and a chopping board out of the drawers.\", \"The person washes the kiwi.\", \"The person takes a knife out of the drawer.\", \"The person washes the knife and the peeler.\", \"The person cuts off both ends of the kiwi.\", \"The person peels the kiwi.\", \"The person washes her hands.\", \"The person cuts the kiwi into small slices.\", \"The person washes her hands.\", \"The person takes a plate out of the cupboard and moves the sliced kiwi onto the plate.\", \"The person discards the unwanted parts of the kiwi.\", \"The person washes the chopping board, the knife and the peeler.\", \"The person takes out a kiwi.\", \"The person takes out a fruit peeler.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person cuts both ends off of the kiwi.\", \"The person peels the kiwi with the fruit peeler.\", \"The person cuts the fruit into thin slices width-wise.\", \"The person takes out a plate.\", \"The person places the kiwi fruit onto the plate.\", \"The person is done.\", \"She took out kiwi\", \"She took out peeler\", \"She took out cutting board\", \"She washed kiwi\", \"She took out knife\", \"She cut off ends of kiwi\", \"She peeled kiwi\", \"She sliced kiwi\", \"She took out plate\", \"She put kiwi on plate\", \"She threw away scraps\", \"The person washes the kiwi\", \"The person cut's off the end's of the kiwi\", \"The person peels the kiwi from top to bottom\", \"The person cuts the kiwi in to slices\", \"The person plates the kiwi\", \"Get 1 kiwi from fridge.\", \"Get out a peeler.\", \"Get out a cutting board.\", \"Wash the kiwi under running water and shake off excess.\", \"Get out a sharp knife.\", \"Rinse off knife and peeler, if needed.\", \"Cut off the end pieces of kiwi with knife.\", \"Peel off skin of kiwi with peeler.\", \"Rinse off hands, if needed.\", \"Slice kiwi with sharp knife.\", \"Get serving dish out.\", \"Put kiwi on serving dish.\", \"Throw away excess pieces of kiwi.\", \"Rinse off cutting board, peeler and knife.\", \"Dry off hands.\", \"A kiwi is removed  from the refrigerator and placed in the sink.\", \"The person selected a produce peeler.\", \"The person removed a cutting board.\", \"The kiwi was washed and placed on the cutting board.\", \"The person picked out a knife for cutting and rinsed it and the peeler .\", \"The ends are sliced off the kiwi.\", \"The kiwi is peeled with the peeler.\", \"The person rinsed their hands.\", \"The kiwi was turned sideways and sliced to form rounds.\", \"The person washed and dried their hands.\", \"A plate is selected for serving.\", \"The kiwi is placed on the plate.\", \"The kiwi scraps are placed in the trash.\", \"The cutting board and utensils are rinsed.\", \"The kiwi is prepared.\", \"The woman removes a kiwi from the refrigerator and places it in the sink.\", \" The woman removes a peeler from one drawer and a cutting board from the other drawer.\", \"The woman rinses the kiwi in the sink and places it on the cutting board before slicing off the ends of the kiwi with a knife.\", \"The woman uses the peeler to peel the skin off of the kiwi.\", \"The woman washes her hands then uses a knife to thinly slice the kiwi.\", \"The woman washes and dries her hands, then retrieves a plate from the cabinet.\", \"The women places the kiwi slices onto the plate.\", \"The woman disposes of the scraps of kiwi into the trash.\", \"The woman rinses the cutting board, knife, and peeler then dries her hands.\", \"The woman gets a kiwi fruit out of the refrigerator.\", \"The woman gets a peeler and cutting board out of the drawer and places them on the counter.\", \"The woman washes the kiwi fruit.\", \"The woman gets a knife out of the drawer, washes it, and places if on the cutting board.\", \"The woman cuts the ends off of the kiwi fruit.\", \"The woman peels the kiwi fruit.\", \"The woman rinses her hands.\", \"The woman slices the kiwi fruit.\", \"The woman gets a plate out of the cupboard.\", \"The woman places the sliced kiwi on the plate.\", \"The woman disposes of the kiwi peelings.\", \"The woman rinses the cutting board, knife, and peeler.\", \"A woman enters, removes a kiwi from the refrigerator and places it in sink.\", \"The woman removes a peeler and cutting board from drawer and washes kiwi.\", \"The woman removes a knife from the drawer and then washes the peeler and the knife.\", \"The woman cuts both ends of the kiwi, peels the remainder and washes her hands.\", \"The woman slices the kiwi seven times crosswise and washes and drys her hands.\", \"The woman retrieves a plate from the cupboard, transfers the kiwi from the cutting board to the plate, washes the cutting board and utensils and drys her hands.\"], \"fps\": 29.4, \"num_frames\": 5492}, \"s28-d27.avi\": {\"timestamps\": [[198, 667], [691, 1011], [1071, 2050], [2108, 4340], [4363, 4684], [4743, 5575], [5666, 5755], [5768, 6390], [6464, 6840], [6997, 7708], [7825, 8388], [8522, 9481], [9561, 15430], [15630, 16196], [16293, 16990], [198, 309], [331, 626], [626, 1011], [1071, 1279], [1306, 2050], [2108, 2189], [2215, 4340], [4363, 4953], [4973, 5065], [5076, 5575], [5666, 6769], [6776, 14032], [14145, 14836], [14897, 15430], [15630, 16103], [198, 309], [331, 667], [691, 1279], [1306, 2050], [2108, 2509], [2509, 4246], [4246, 4793], [4809, 5065], [5076, 5151], [5257, 6561], [6578, 8681], [8707, 9087], [9186, 10612], [10618, 14836], [198, 667], [691, 1279], [1306, 2050], [2108, 2189], [2215, 2509], [2509, 4340], [4363, 5151], [5257, 14032], [14145, 14836], [14897, 15805], [198, 667], [691, 1011], [1071, 2189], [2215, 4340], [4363, 5151], [5257, 5575], [5666, 6840], [6997, 7708], [7825, 9481], [14897, 15430], [16103, 16990], [198, 309], [331, 626], [626, 1011], [1071, 2050], [2108, 4340], [4363, 4953], [4973, 5151], [5257, 5575], [5666, 6390], [6464, 7708], [7825, 8388], [8522, 9087], [9186, 9481], [9561, 14032], [15805, 16990], [198, 309], [331, 626], [626, 1011], [1071, 2189], [2215, 4246], [4246, 4634], [4648, 4953], [4973, 5065], [5076, 5575], [198, 309], [331, 626], [626, 1011], [1071, 2050], [2108, 4340], [4363, 4953], [4973, 5151], [5257, 5575], [5666, 6390], [6464, 7708], [7825, 8388], [8522, 9087], [9186, 9481], [9561, 14032], [15630, 16990], [198, 309], [331, 1011], [1071, 2050], [2108, 4340], [4363, 4634], [4648, 5575], [5666, 6801], [6810, 14032], [14145, 15430], [198, 5575], [198, 5575], [198, 5575], [198, 5575], [198, 5575], [198, 5575], [198, 5575], [198, 5575], [198, 5575], [198, 5575], [5666, 5755], [5768, 6390], [6464, 6801], [6810, 6840], [198, 667], [691, 1011], [1071, 1279], [1306, 2050], [2108, 3171], [3191, 4340], [4363, 5065], [5666, 5889], [6997, 7301], [7353, 9481], [9561, 14836], [9561, 16990], [198, 667], [691, 1011], [1071, 4340], [4363, 4684], [4743, 5065], [5076, 5575], [5891, 9481], [9561, 13667], [14897, 15430], [14145, 16196], [16293, 16990], [198, 309], [331, 667], [691, 1011], [691, 1011], [1071, 2050], [2108, 2509], [2509, 5008], [5013, 5151], [5666, 6561], [198, 626], [626, 1011], [1071, 2189], [2215, 4340], [4363, 5151], [5257, 5575], [6578, 6801], [5076, 7708], [7825, 14032], [13711, 15430], [17086, 17191], [198, 667], [691, 1011], [1071, 2050], [2108, 2189], [2215, 4340], [4363, 5151], [5257, 5575], [5666, 6390], [6810, 7257], [7281, 7708], [7825, 8171], [8236, 8388], [8522, 9481], [9561, 10928], [198, 309], [331, 626], [626, 1011], [626, 1011], [1071, 2050], [2108, 4340], [4363, 4634], [4648, 4953], [4973, 5065], [5076, 5575], [5666, 5755], [5768, 6318]], \"sentences\": [\"The person gets a cutting board and a knife from the drawers.\", \"The person gets an onion and a condiment from the pantry.\", \"The person peels the onion.\", \"The person chops and dices the onion.\", \"The person gets a pan and places it on the stove.\", \"The person pours the condiment and the onions into the pan.\", \"The person gets a wooden spoon from the drawer.\", \"The person sautees the onions while stirring them with the spoon.\", \"The person gets some salt and sprinkles it on the onions.\", \"As the onions cook, the person dumps the skins into the trash.\", \"The person puts the condiment back into the cupboard.\", \"The person washes off the knife and cutting board, dries them, and replaces them into the drawers.\", \"The person gets out a plate form the cupboard and scoops the onions out of the pan onto the plate.\", \"The person scrubs off the pan in the sink with a sponge.\", \"The person scrubs off the wooden spoon in the sink with a sponge.\", \"The person takes out a cutting board.\", \"He takes out a knife.\", \"He take out an onion and olive oil.\", \"He cuts the ends off of the onion.\", \"Using the knife he peels off the onion skin.\", \"He cuts the onion in half.\", \"He chops the onion by making small slices length-wise in each onion half, cutting it in half down the middle and then chopping in width-wise into small pieces.\", \"He takes out a pan and puts it on the stove range and turns it on.\", \"He adds olive oil to the pan.\", \"He adds the onions to the pan.\", \"He adds salt to the onions.\", \"The person takes out a plate.\", \"The person occasionally mixes the onions until they are golden brown\", \"He puts the onion into the plate.\", \"The person is done.\", \"He gets out a cutting board.\", \"He gets a knife.\", \"He gets an onion and starts cutting it.\", \"He takes the skin off of the onion.\", \"He cuts up the onion thinly.\", \"He dices the second onion.\", \"He gets a frying pan.\", \"He pours the oil on the frying pan.\", \"He puts the onions in the frying pan.\", \"He puts salt on the onions.\", \"He washes off the knife.\", \"He washes the cutting board.\", \"He puts more salt on the onions.\", \"He puts the onions on a plate.\", \"the person gets a cutting board and a knife\", \"the person gets oil\", \"the person cuts the onion and slices off each end\", \"the person use the back of the knife to peel away the skin of the onion\", \"the person cuts the onion in half\", \"the person dices each half of the onion\", \"the person gets a frying pan and coats in with oil\", \"the person sautes the diced onion in the pan and seasons with salt\", \"the person gets a plate\", \"the person puts the sauteed onion on the plate\", \"He gets out a cutting board and a knife.\", \"He gets olive oil and an onion.\", \"He skins the onion.\", \"He chops the onion.\", \"He heats a pan and adds oil to it.\", \"He puts the onions into the pan.\", \"He salts the pan.\", \"He discards the skins.\", \"He cleans up a bit.\", \"He finishes cooking and puts the onions on a plate.\", \"He cleans up.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a bottle of oil and an onion from the pantry.\", \"The person cuts the ends off the onion and then peels it.\", \"The person dices the onion on the cutting board.\", \"The person takes out a pan from the drawer, places it on the stove and then turns it on.\", \"The person pours some oil from the bottle into the pan.\", \"The person scoops the onions into the pan.\", \"The person takes out a wooden spoon from the drawer and stirs the onions in the pan.\", \"The person throws the peels into the wastebin.\", \"The person returns the bottle of oil to the pantry.\", \"The person washes the knife and cutting board in the sink.\", \"The person returns the cutting board to the drawer.\", \"The person procures a plate from the cabinet.\", \"The person scoops the fried onions onto the plate then washes the pan and wooden spoon in the sink.\", \"HE took out cutting board\", \"He took out knife\", \"He took out onion and oil\", \"He peeled onion\", \"He diced onion\", \"He took out pan\", \"He turned on stove\", \"He poured oil in pan\", \"He added onion to pan\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a bottle of oil and an onion from the pantry.\", \"The person cuts the ends off the onion and then peels it.\", \"The person dices the onion on the cutting board.\", \"The person takes out a pan from the drawer, places it on the stove and then turns it on.\", \"The person pours some oil from the bottle into the pan.\", \"The person scoops the onions into the pan.\", \"The person takes out a wooden spoon from the drawer and stirs the onions in the pan.\", \"The person throws the peels into the wastebin.\", \"The person returns the bottle of oil to the pantry.\", \"The person washes the knife and cutting board in the sink.\", \"The person returns the cutting board to the drawer.\", \"The person procures a plate from the cabinet.\", \"The person scoops the fried onions onto the plate then washes the pan and wooden spoon in the sink.\", \"person gets cutting board\", \"person gets onion\", \"person peels the outside of the onion\", \"person dices the onion\", \"person gets pan\", \"person puts oil in pan along with the onion\", \"person puts salt on onion\", \"person gets plate\", \"person puts onions on plate\", \"He put onion in pan\", \"Poured oil in pan\", \"He turned on stove\", \"He took out pan\", \"He diced onion\", \"He peeled onion\", \"He cut off ends of onion\", \"He took out onion\", \"He took out knife\", \"He took out cutting board\", \"He took out spoon\", \"He mixed onion\", \"He added salt\", \"He adjusted heat\", \"Take out a cutting board and a small knife.\", \"Take out olive oil and an onion.\", \"Use the knife to cut both ends off the onion.\", \"Use your hands and the knife to peel off the unwanted outer layer of onion.\", \"Cut the onion in half and use the knife to make very thin slices for the full length of the half, then rotate the onion half and slice thinly the other way.\", \"Repeat this process for the other onion half.\", \"Take out a frying pan, set it on the stove, turn the temperature to the right level, and add a little oil.\", \"Add the onion to the frying pan and take out a wooden spoon.\", \"Use the wooden spoon to stir the onions and add salt to taste.\", \"Discard the onion ends and peel, then wash the knife and cutting board, dry them and put them away.\", \"Continue to cook the onion stirring frequently until finished, adding more salt if desired before putting away the salt and taking out a small plate.\", \"Take the frying pan off of the heat and put the onions on the plate, wash the frying pan and wooden spoon.\", \"He gets out a knife and cutting board.\", \"He gets out the food.\", \"He chops the onion.\", \"He puts a pan on the stove.\", \"He puts olive oil in the pan.\", \"He puts the onions in the pan.\", \"While the onions are continuing to cook, he cleans up the equipment and puts it away.\", \"He finishes cooking the onions.\", \"He puts the onions on a plate.\", \"He cleans the pan.\", \"He cleans the spatula.\", \"The gentleman take the cutting board out.\", \"He then proceeds to choose the right knife.\", \"Takes out cooking oil\", \"Begins to dice onion\", \"peels skin off onion\", \"Dices skinless onion into small pieces\", \"Pours cooking oil in pan\", \"Put onions in pan with oil\", \"Begin to season onions in the pan.\", \"He gets a cutting board and knife.\", \"He gets oil and an onion.\", \"He peels the onion.\", \"He chops the onion.\", \"He heats a pan and adds oil to it.\", \"He adds the onions to the pan.\", \"He salts the onions.\", \"He discards the peels.\", \"He gets a small plate.\", \"He puts the onions on a plate.\", \"He cleans up.\", \"The person takes a cutting board and knife out of a drawer and places them on the counter.\", \"The person takes a bottle of oil and an onion out of a cabinet places the oil on the counter and the onion on the cutting board.\", \"Using the knife, the person cuts off both ends of the onion then removes the onion skin.\", \"The person cuts the onion in half.\", \"The person dices both halves of the onion.\", \"The person takes a frying pan out of a drawer, places it on the stove, turns it on and adds some oil.\", \"Taking  the cutting board and knife in hand, the person slides the diced onions into the pan then places the cutting board and knife back on the counter.\", \"The person takes a wood spatula out of a drawer and stirs the onions around evenly then places the spatula on the edge of the pan.\", \"The person take a bottle of salt from the side counter, adds some salt to the onions, waits about 15 seconds, adds some more salt then closes it and places it on the counter.\", \"Using the knife, the person pushes the onion waste from the cutting board into the garbage then places the cutting board and knife back on the counter.\", \"Using the wooden spatula, the person stirs the onions.\", \"The person puts away the oil in a cabinet.\", \"The person washes, dries and puts the cutting board and knife back into the drawer.\", \"The person stirs the onions, adds more salt then places the salt back on the side counter.\", \"He took out cutting board\", \"He took out knife\", \"He took out onion\", \"He cut off top of onion\", \"He peeled onion\", \"He diced onion\", \"He took out pan\", \"He turned on stove\", \"He put oil in pan\", \"He put onion in pan\", \"He took out wooden spoon\", \"He mixed onion\"], \"fps\": 29.4, \"num_frames\": 17219}, \"s30-d40.avi\": {\"timestamps\": [[214, 325], [338, 447], [463, 616], [616, 883], [910, 1030], [1055, 1193], [1224, 4590], [4706, 4806], [214, 616], [616, 883], [910, 1193], [1224, 2855], [2899, 4590], [214, 325], [338, 447], [463, 616], [616, 883], [910, 1030], [1055, 1193], [1224, 2812], [2812, 3177], [3202, 4376], [4453, 4590], [4706, 4806], [214, 325], [338, 447], [463, 616], [616, 883], [910, 1030], [1055, 1193], [1224, 4590], [4848, 4891], [214, 325], [338, 648], [667, 883], [910, 1030], [1055, 1193], [1224, 2855], [2899, 3177], [3202, 4590], [4848, 4891], [214, 648], [667, 883], [910, 1193], [1224, 2855], [2899, 4590], [214, 325], [338, 447], [463, 616], [616, 883], [910, 1030], [1055, 1160], [1160, 4590], [4706, 4806], [214, 325], [338, 447], [463, 616], [616, 819], [819, 1030], [1055, 1193], [1224, 2812], [2812, 4376], [4706, 4806], [214, 325], [338, 447], [463, 648], [667, 883], [910, 1030], [1055, 2855], [2899, 4376], [4453, 4590], [4706, 4891], [214, 325], [338, 648], [667, 883], [910, 1030], [1055, 1193], [1224, 2812], [2812, 4376], [4706, 4891], [214, 648], [667, 1030], [1055, 1753], [1776, 2752], [2756, 3177], [3202, 4005], [4848, 4891], [214, 648], [667, 883], [910, 1193], [1224, 2812], [2812, 3177], [3202, 4376], [4453, 4590], [4453, 4806], [214, 648], [667, 1193], [1224, 2812], [2812, 4376], [4453, 4590], [214, 648], [667, 819], [819, 1193], [1224, 2812], [2812, 3177], [3202, 4376], [4706, 4806], [214, 325], [338, 616], [616, 648], [667, 1030], [1055, 1292], [1292, 2855], [1292, 2855], [2899, 4376], [214, 325], [338, 447], [463, 616], [616, 819], [819, 1030], [1055, 1160], [1160, 2812], [2812, 4376], [214, 325], [338, 447], [463, 616], [616, 883], [616, 883], [910, 1030], [1055, 1193], [1224, 2812], [2812, 3177], [3202, 4376], [4453, 4590], [4706, 4806]], \"sentences\": [\"Girl takes out lime\", \"Girl takes out cutting board\", \"Girl takes out juicer\", \"Girl washes lime\", \"Girl takes out knife\", \"Girl cuts lime in half\", \"Girl twists lime on juicer\", \"Girl washes knife\", \"She gets out a lime, cutting board, and juicer.\", \"She washes the lime.\", \"She gets a knife and cuts the lime in half.\", \"She juices the first half of the lime.\", \"After scoring the lime, she juices the rest of it.\", \"A lime is removed from the refrigerator.\", \"The person selects a cutting board.\", \"The person removes a juicer.\", \"The lime is washed.\", \"A knife is selected.\", \"The lime is cut in half.\", \"One half of the lime is juiced.\", \"Slits are cut into the other lime half.\", \"The other half of the lime is juiced.\", \"The first half is juiced some more.\", \"The person washed the knife.\", \"The person gets out a lime.\", \"The person gets out a cutting board.\", \"The person gets out a juicer.\", \"The person rinses the lime.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person juices the lime.\", \"The person rinses the knife.\", \"The person removes a lime from the fridge.\", \"The person removes a cutting board and juicer from the drawer.\", \"The person rinses off the lime.\", \"The person removes a knife from the drawer.\", \"The person cuts the lime in half.\", \"The person juices the first half of the lime.\", \"The person makes small incisions in the fruit of the other half of the lime.\", \"The person juices the remaining half of the lime.\", \"The person rinses the knife off.\", \"Get your lime, cutting board, knife and juicer ready.\", \"Rinse off your lime and place on the cutting board.\", \"Cut your lime in half.\", \"Place half of the lime firmly over the top of the juicer and twist back and forth.\", \"Repeat the steps for the second half of the lime.\", \"The person gets out a lime.\", \"The person gets out a cutting board.\", \"The person gets out a juicer.\", \"The person rinses the lime.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person juices the lime.\", \"The person rinses the knife.\", \"Takes lime out of refrigerator.\", \"Takes cutting board out of drawer.\", \"Takes juice extractor out of drawer.\", \"Rinses lime off in the sink.\", \"Takes knife out of drawer.\", \"Slices lime in half.\", \"Uses juice extractor on first half of lime.\", \"Uses juice extractor on second half of lime.\", \"Rinses off the knife in the sink.\", \"The woman walks to the fridge, opens the door, removes one lime and closes the fridge door.\", \"She walks to the counter, opens a drawer, removes a cutting board, closes the drawer and places it on the counter.\", \"She opens the drawer again, removes a juice extractor, places it on the counter and closes the drawer.\", \"She goes to the sink, turns on the faucet, rinses the fruit and places it on the counter.\", \"The woman opens a drawer, removes a knife, then closes the drawer.\", \"She cuts the line in half, picks up one half and removes the juice with the juice extractor.\", \"She picks up the other half, cuts it open a little for easier juicing.  She repeats the process of removing the juice with the extractor.\", \"She attempts to get a little more juice from the first half.  Then sets it back on the cutting board.\", \"She picks up the knife, takes it to the sink and washes it.\", \"She goes to refrigerator and takes out a lime.\", \"She opens the drawer and takes out a cutting board and juicer.\", \"She goes to the sink and washes the lime.\", \"She goes into the drawer and takes out a knife.\", \"She then cuts the lime in half.\", \"She picks up half of the lime and start juicing it.\", \"She then takes the other half of the lime and cuts slices into it and begins juicing it.\", \"She picks up the knife and washes it.\", \"Lady enters the kitchen, pulls out a lime out of the fridge, then pulls out a cutting board and juice squeezer and places them on the counter. She then begins to wash the lime.\", \"She finishes washing the lime and pulls out a knife. She then places the lime on the cutting boar and begins to slice up the lime.\", \"After slicing the lime in half, she takes on half of it and starts to squish it into the juicer, trying to get as much juice as she can from the lime.\", \"She is taking her time and thoroughly getting as much juice as she can from the half of lime.\", \"After being satisfied she got all the juice out of the lime, she then placed the half lime back on the cutting board and picks up the other half. She cuts a bunch of slats into the other half of the lime to make it turn easier in the juicer.\", \"she then proceeds to try and get as much juice out of the lime.\", \"After getting as much juice as she can from the limes, she then washes the knife and sets it aside.\", \"Get a lime, a cutting board and a squeezer out.\", \"Wash the lime.\", \"Cut lime in half with a knife\", \"Press one half energetically against the squeezer until there is no juice left in it.\", \"Make cuts in the other half of the lime to ease the squeezed process.\", \"Press the other half against the squeezer until there is no more juice in the lime.\", \"Squeeze the lime again to check there's no more juice left.\", \"Wash the knife.\", \"gather lime, cutting board and juicer\", \"wash lime and then cut it in half on the cutting board\", \"put 1/2 of the lime on the ridged oval part of the juicer, push down and rotate lime several times\", \"with the second half of the lime, try scoring the top several times to make juicing easier, again, push down and rotate the lime on the juicer several times\", \"for good measure, redo the first half of the lime a few times\", \"The woman takes out a cutting board, a lime, and a manual juicer.\", \"The woman washes off the lime.\", \"Using a knife she cuts the lime into two equal peices.\", \"She takes one half of the lime, pushes the flat side onto the top of the juicer and twists.\", \"She cuts the flat side of the other half of the lime with the knife.\", \"She repeats step 4 with the second half of the lime.\", \"She washes the knife used during the video.\", \"Take lime out of refrigerator\", \"Take out cutting board and juicer\", \"Clean lime by washing it under sink water\", \"Take out knife to begin cutting\", \"Cut lime down the middle and begin twisting lime on juicer top\", \"After getting all the juice, take the other side of the lime and begin twisting\", \"Cut slits in the middle of the lime to make it easier to juice\", \"Make sure all juice is extracted from the lime\", \"She takes a lime from the fridge\", \"She takes out a cutting board\", \"she takes out a hand-held juice extractor\", \"she rinses the lime\", \"she takes out a knife\", \"she cuts the lime in half\", \"She uses the extractor on one half of the lime\", \"She extracts the juice from the other half of the lime\", \"The person removes a lime from the refrigerator.\", \"The person got out a cutting board.\", \"The person removed a juicer.\", \"The lime is washed.\", \"The lime is placed on the cutting board.\", \"A knife is chosen.\", \"The lime is sliced in half.\", \"One half of the lime is juiced.\", \"The person cuts slits into the lime half.\", \"The other lime half is juiced.\", \"Juicing is complete.\", \"The person rinsed the knife.\"], \"fps\": 29.4, \"num_frames\": 4895}, \"s31-d28.avi\": {\"timestamps\": [[202, 740], [740, 1221], [1280, 1771], [1805, 3334], [3334, 3994], [202, 495], [621, 1221], [1280, 1771], [1805, 3334], [3334, 3552], [3566, 3702], [3740, 3994], [4071, 4378], [4434, 4865], [4907, 5190], [5211, 5670], [202, 495], [621, 740], [740, 940], [949, 1221], [1280, 3552], [3566, 3994], [4071, 4232], [4242, 4378], [4434, 5254], [5284, 5353], [5675, 5737], [202, 495], [621, 1221], [1280, 3552], [3566, 3994], [4071, 4378], [5410, 5737], [202, 1221], [1280, 1771], [1805, 3702], [4071, 4232], [4242, 5056], [5056, 5254], [202, 740], [202, 740], [740, 940], [949, 1221], [1280, 1771], [1805, 3552], [3566, 3994], [3740, 4232], [4242, 4378], [4434, 4865], [4907, 5254], [5284, 5353], [4434, 5737], [4434, 5737], [202, 495], [621, 740], [740, 1221], [1280, 3597], [4071, 4378], [5410, 5737], [202, 495], [621, 740], [740, 1221], [1280, 3597], [3662, 3994], [3662, 4232], [4242, 4378], [202, 495], [621, 740], [740, 940], [949, 1221], [1280, 1771], [1805, 3552], [3566, 3994], [4071, 4232], [4242, 4378], [4434, 4865], [4907, 5254], [4434, 5353], [5284, 5737], [5284, 5737], [202, 495], [621, 1221], [1280, 1771], [1280, 1771], [1805, 3334], [3334, 3552], [3566, 3702], [3740, 3994], [4071, 4232], [4242, 4378], [4434, 4865], [4907, 5254], [5410, 5737], [5410, 5737], [202, 740], [202, 740], [740, 940], [949, 1221], [1280, 1771], [1280, 1771], [1805, 3384], [3384, 3552], [3566, 3702], [3740, 3994], [4071, 4378], [4434, 4865], [4907, 5254], [5284, 5353], [5284, 5737], [202, 495], [621, 740], [740, 940], [949, 1221], [1280, 3702], [3740, 3994], [4071, 4232], [4242, 4378], [4434, 4865], [4907, 5254], [5284, 5353], [5410, 5737], [202, 495], [621, 740], [740, 1221], [1280, 3552], [3566, 3994], [4071, 4232], [4242, 4378], [4434, 5254], [5284, 5353], [5410, 5737], [202, 495], [621, 740], [740, 1221], [1280, 3552], [3566, 3994], [4071, 4232], [4242, 4378], [4434, 5254], [5284, 5353], [5410, 5737], [202, 495], [621, 740], [740, 940], [949, 1221], [1280, 3702], [3740, 3994], [4071, 4232], [4242, 4378]], \"sentences\": [\"Take orange and place on a cutting board.\", \"Find a large knife and spoon.\", \"Take the knife and cut an opening in the skin of the orange by completely going around the orange, in one line.\", \"Now take the spoon and put it through the opening of the skin and peel/scoop the orange away from the skin.\", \"Finally cut the orange into four pieces and place on a small plate.\", \"The man enters the kitchen and immediately retrieves an orange from the refrigerator.\", \"The man retrieves a cutting board, spoon, and knife from the drawer.\", \"The man takes a knife and carefully makes a slice mark around the center of the orange.\", \"The man places the spoon under the slit in the orange peel and continues to push the spoon around the peel until it comes loose.\", \"The man twists off the orange shell.\", \"The man takes the orange and slices it down the center.\", \"The man cuts each half into two, therefore he now has four halves.\", \"The man retrieves a plate from the cabinet and puts the four halves of the orange onto the plate.\", \"He goes on to rinse the spoon in the sink, then drying it on a towel, before placing it back into the drawer.\", \"The man washes, dries, and puts the knife back into the drawer.\", \"The man washes, dries, and puts the cutting board away.\", \"The person gets out an orange.\", \"The person gets out a wooden plate.\", \"The person gets out a spoon.\", \"The person gets out a knife.\", \"The person peels the orange.\", \"The person cuts the orange into quarters.\", \"The person gets out a plate.\", \"The person puts the orange quarters on the plate.\", \"The person rinses and puts away the spoon and knife.\", \"The person throws away the orange peel.\", \"The person rinses and puts away the wooden plate.\", \"He grabs an orange.\", \"He gets a cutting board, spoon, and knife.\", \"He peels the orange.\", \"He quarters the orange.\", \"He puts the orange on a plate.\", \"He cleans up.\", \"the person gets a spoon, a sharp knife and a cutting board\", \"the person slices the orange a little in 360 degrees without slicing through it\", \"the person uses the spoon to separate the orange from it's skin using the little slit\", \"the person cuts the orange in an X\", \"the person gets a plate\", \"the person puts the orange wedges on the plate\", \"An orange is removed from the refrigerator.\", \"The person selects a cutting board.\", \"The person selects a spoon.\", \"The person selects a knife.\", \"The orange is cut around the center .\", \"The orange peel is loosened and removed.\", \"The orange is cut in four pieces.\", \"A plate is removed from the cabinet.\", \"The pieces are placed on the plate.\", \"The spoon is washed, dried and put away.\", \"The knife is washed, dried and put away.\", \"The scraps are discarded.\", \"The cutting board is washed and put away.\", \"The orange is ready.\", \"He gets an orange.\", \"He gets a cutting board.\", \"He gets a spoon and knife.\", \"He peels the orange.\", \"He cuts the orange and puts it on a plate.\", \"He cleans up.\", \"Takes an orange out of the refrigerator.\", \"Takes a cutting board out of the drawer.\", \"Takes a knife and spoon out of the drawer.\", \"Uses the knife and spoon to peel the orange.\", \"Slices the orange into pieces.\", \"Takes a plate out of the cabinet.\", \"Places the orange slices on the plate.\", \"An orange is removed from the refrigerator.\", \"The person selects a cutting board.\", \"The person selects a spoon.\", \"The person selects a knife.\", \"The orange is cut through the peel around the center.\", \"The orange peel is loosened and removed.\", \"The orange is cut in four pieces.\", \"A plate is removed from the cabinet.\", \"The pieces are placed on the plate.\", \"The spoon is washed, dried and put away.\", \"The knife is washed, dried and put away.\", \"The scraps are discarded.\", \"The cutting board is washed and put away.\", \"The orange is ready.\", \"The person retrieves an orange from the fridge.\", \"The person places the orange, a knife, and a spoon on a cutting board.\", \"The person scores the orange peel around the middle with the knife.\", \"The person uses the spoon to loosen the peel on one half of the orange.\", \"The person uses the spoon to loosen the peel on the other half of the orange.\", \"The person pulls the loosened peel off the orange with his hands.\", \"The person cuts the orange in half.\", \"The person cuts the halves into quarters.\", \"The person retrieves a plate from a cabinet.\", \"The person places the four orange pieces on the plate.\", \"The person washes, then dries the spoon, and returns it to a drawer.\", \"The person washes, then dries the knife, and returns it to a drawer.\", \"The person washes the cutting board then returns it to a drawer.\", \"The person presents the plate and stands back.\", \"The man takes out one orange from the refrigerator.\", \"He pulls out a cutting board and places the orange on top of it.\", \"He places a spoon on the cutting board.\", \"Finally, he takes out a knife and places it on the cutting board.\", \"He uses the knife to cut completely around the orange.\", \"Next, he uses the spoon in the same area to trace around the orange.\", \"Finally, he uses his hands to remove the top peeling portion of the orange.\", \"Next, he removes the remaining peeling of the orange with his hands.\", \"He puts the peelings aside and set the orange on the cutting board.\", \"He cuts the orange into four pieces.\", \"He takes the four pieces and places them on a white plate.\", \"He rinses and dries the spoon and then puts it in the drawer.\", \"He also rinses and dries the knife and places it in the drawer.\", \"He throws the orange peels in the trash.\", \"Lastly, he washes the cutting board and puts it in the drawer.\", \"The person gets out an orange.\", \"The person gets out a wooden plate.\", \"The person gets out a spoon.\", \"The person gets out a knife.\", \"The person peels the orange.\", \"The person cuts the orange in quarters.\", \"The person gets out a plate.\", \"The person puts the orange pieces on the plate.\", \"The person washes and puts away the spoon.\", \"The person washes and puts away the knife.\", \"The person throws away the orange peel.\", \"The person washes and puts away the wooden plate.\", \"The person gets out an orange.\", \"The person gets out a wooden plate.\", \"The person gets out a spoon and a knife.\", \"The person peels the orange.\", \"The person cuts the orange into quarters.\", \"The person gets out a plate.\", \"The person puts the orange quarters on the plate.\", \"The person washes and puts away the spoon and knife.\", \"The person throws away the orange peel.\", \"The person washes and puts away the wooden plate.\", \"The person gets out an orange.\", \"The person gets out a wooden plate.\", \"The person gets out a spoon and a knife.\", \"The person peels the orange.\", \"The person cuts the orange into quarters.\", \"The person gets out a plate.\", \"The person puts the orange quarters on the plate.\", \"The person washes and puts away the spoon and knife.\", \"The person throws away the orange peel.\", \"The person washes and puts away the wooden plate.\", \"He took out orange\", \"He took out cutting board\", \"He took out spoon\", \"He took out knife\", \"He peeled orange\", \"He cut orange in pieces\", \"He took out plate\", \"He put orange on plate\"], \"fps\": 29.4, \"num_frames\": 5825}, \"s32-d27.avi\": {\"timestamps\": [[311, 1620], [1647, 2222], [2295, 3726], [3810, 7380], [7530, 8707], [8754, 9149], [9160, 10478], [10493, 11630], [11682, 13818], [13994, 15614], [15731, 17129], [17140, 22084], [311, 1355], [1441, 2347], [2361, 3726], [3810, 7585], [7595, 9023], [9028, 9149], [9160, 10960], [11018, 12795], [12801, 15949], [15959, 17839], [17884, 19094], [22237, 22276], [311, 1856], [1904, 2099], [2137, 2585], [2699, 7585], [7595, 9023], [9028, 13048], [13125, 13818], [13994, 14241], [14249, 14665], [14711, 15949], [15959, 18299], [18361, 20170], [20323, 20518], [20522, 21277], [19104, 22276], [311, 1856], [1904, 2347], [2361, 3726], [3810, 5547], [3810, 5547], [5633, 7380], [7530, 8044], [8118, 9149], [9160, 12897], [12954, 14241], [14249, 15949], [15959, 17839], [17884, 21277], [17884, 21277], [21459, 22276], [311, 1713], [1726, 2347], [2361, 4841], [4990, 5547], [5633, 7380], [7530, 8044], [8118, 9149], [9160, 12795], [12801, 14241], [14249, 15949], [15959, 17129], [17140, 17839], [17884, 20170], [20323, 21277], [21459, 22276], [311, 754], [867, 2347], [2361, 3726], [3810, 7585], [7595, 9023], [9028, 9392], [9443, 10960], [11018, 12795], [12801, 15949], [15959, 17839], [17884, 19094], [21459, 22276], [311, 754], [867, 1856], [1904, 2347], [2361, 3726], [3810, 4841], [4990, 5547], [4990, 5547], [5633, 7585], [7595, 9392], [9443, 11910], [11934, 16494], [16499, 17413], [17442, 19141], [19104, 22276], [311, 754], [867, 1713], [1726, 2099], [2137, 2347], [2361, 2585], [2699, 3726], [2699, 3726], [3810, 7585], [311, 754], [867, 2222], [2295, 3726], [3810, 7585], [7595, 9392], [9443, 11228], [11248, 13285], [13331, 15949], [15959, 17413], [17442, 21277], [19152, 22276], [311, 2347], [2361, 3685], [3693, 3726], [3810, 7585], [7595, 8707], [8754, 9023], [9028, 10525], [10567, 11630], [11682, 13818], [13994, 16475], [16473, 17129], [17140, 21277], [311, 2099], [2137, 2347], [2361, 2585], [2699, 7585], [7595, 8945], [8989, 12795], [12801, 14241], [14249, 14566], [14576, 14873], [14949, 15949], [15959, 17839], [17884, 20983], [21067, 21277], [21459, 22276], [311, 1355], [1441, 1856], [1904, 2585], [2699, 3726], [3810, 7585], [7595, 9149], [9160, 11228], [11248, 13048], [13125, 15949], [15959, 17839], [17884, 21277], [21459, 22276], [311, 1355], [1441, 2347], [2361, 3726], [3810, 5183], [5242, 5547], [311, 754], [867, 1856], [1904, 2099], [2137, 2347], [2361, 2585], [2361, 2585], [2699, 3726], [2699, 3726], [3810, 4841], [311, 754], [867, 2347], [2361, 3726], [2361, 3726], [5633, 7380], [7595, 8945], [8989, 9149], [9160, 10525], [10567, 12795], [12801, 15949], [15959, 17129], [17140, 19094], [19104, 20983], [21459, 22276], [311, 754], [867, 1856], [1904, 2222], [2295, 2347], [2361, 3726], [4990, 7585], [7530, 10960], [11018, 13542], [13558, 14566], [14576, 15949], [15959, 16897], [16990, 17413], [21459, 22276], [311, 754], [867, 1713], [1726, 1856], [1904, 2099], [2137, 2347], [2361, 2585], [2699, 3726], [3810, 7585], [7595, 7830], [7881, 8630], [8652, 9023], [9028, 9392], [9443, 10525]], \"sentences\": [\"She takes out an onion and washes it.\", \"She takes out a cutting board and knife.\", \"She peels the onion.\", \"She minces the onion.\", \"She puts the minced onion into a bowl.\", \"She adds water to the bowl.\", \"She adds salt to the bowl.\", \"She strains the water from the bowl.\", \"She takes out a frying pan and puts it on the burner.\", \"She adds a small amount of butter to the pan.\", \"She adds the onions to the pan and stirs them.\", \"She pours the browned onions onto a plate.\", \"She grabs an onion.\", \"She gets a knife and cutting board.\", \"She removes the skin.\", \"She minces the onion.\", \"She puts the onion in a bowl.\", \"She puts water in the bowl.\", \"She salts the water.\", \"She mixes it up and drains the water.\", \"She puts a pan on the stove and puts butter in it.\", \"She puts the onions in the pot.\", \"She seasons the onions.\", \"She ends the cooking and puts the onions on a plate.\", \"The person gets out an onion and rinses it.\", \"The person gets out a cutting board.\", \"The person gets out a knife and rinses it.\", \"The person peels, rinses, and cuts up the onion.\", \"The person gets out a bowl and scoops the onion pieces into it.\", \"The person adds salt and pepper to the onion pieces and rinses them.\", \"The person gets out a frying pan and rinses it.\", \"The person puts the pan on the stove and turns it on.\", \"The person gets out some butter and a wooden spatula.\", \"The person rinses the spatula and the knife, then puts butter in the frying pan.\", \"The person waits for the butter to melt, puts the onion and some more butter in the pan and stirs.\", \"The person adds some kind of spice and keeps stirring.\", \"The person puts away the butter.\", \"The person gets out a plate and rinses it.\", \"The person scoops the onion onto the plate.\", \"An onion is removed from a cabinet, rinsed and partially peeled.\", \"The person removed a cutting board and a knife.\", \"The onion is peeled and rinsed.\", \"The onion is cut partway through.\", \"The onion is sliced across the cuts.\", \"The pieces are chopped.\", \"Hands are washed and a bowl is removed.\", \"The pieces are put in the bowl and water is added.\", \"Seasoning is added and the onions are rinsed and drained.\", \"A frying pan is selected, rinsed and placed on the stove.\", \"Butter is removed from the refrigerator and added to the pan.\", \"The onions are added to the pan.\", \"A plate is removed.\", \"The onions are seasoned and cooked.\", \"The onions are placed on a plate.\", \"An onion is removed from a cabinet and rinsed.\", \"The person removed a cutting board and a knife.\", \"The onion is peeled, rinsed and cut partway through.\", \"The onion is sliced across the cuts.\", \"The pieces are finely chopped.\", \"Hands are washed and a bowl is removed.\", \"The pieces are put in the bowl and water is added.\", \"Seasoning is added and the onions are rinsed and drained.\", \"A frying pan is selected, rinsed and placed on the stove.\", \"Butter is removed from the refrigerator, a spatula is chosen, the knife is washed and butter is added to the pan.\", \"The butter is melted and the onions are added to the pan.\", \"More butter and onions are added to the pan.\", \"The onions are seasoned and cooked.\", \"The butter is put away, the onions are stirred and a plate is removed.\", \"The plate is rinsed and the onions are placed on the plate.\", \"She gets an onion.\", \"She gets a cutting board and knife.\", \"She peels the onion.\", \"She minces the onion.\", \"She gets a bowl and puts the onion in it.\", \"She puts water in the bowl.\", \"She salts the water.\", \"She stirs the bowl, rinses the contents, and drains the water.\", \"She gets a pan and puts butter in it.\", \"She adds all the onion to the pan.\", \"She seasons the onion.\", \"She puts the onions on a plate.\", \"The woman begins by selecting an onion from the cupboard.\", \"She then rinses the onion with water and begins to peel the skin.\", \"She retrieves a cutting board and a large knife.\", \"Using the knife, she cuts the end off and then peels the rest of the skin.\", \"Next, she scores the onion several times without cutting the whole way through.\", \"She then scores the onion in the other direction.\", \"Next, she slices the onion creating small pieces.\", \"She then further chops the onion until it is finely diced.\", \"She gets out a metal bowl and places all the onions in the bowl and then fills the bowl halfway full with water.\", \"Next, she adds salt to the onion and water mixture before draining off the water.\", \"She then gets out a saute pan and heats it on the stove top places a small square of butter in the pan.\", \"She adds the onions to the pan and another small square of butter.\", \"She adds a bit of spice to the onions and continues stirring them.\", \"Finally, she places the sauteed onions on a small white plate.\", \"She took out onion\", \"She washed onion\", \"She took out cutting board\", \"She took out knife\", \"She washed knife\", \"She peeled onion\", \"She washed onion\", \"She diced onion\", \"The woman pulls out the onion.\", \"The woman rinses the onion and takes out a cutting board.\", \"The woman peels the outer layer of the onion.\", \"The woman dices the onion.\", \"The woman places the onion pieces into a bowl and adds water.\", \"The woman seasons the onion pieces.\", \"She rinses the onion.\", \"The woman adds butter to a pan.\", \"The woman adds the onions to the pan and stirs them.\", \"The woman seasons the onions and continues to stir them.\", \"She moves the onions onto the plate.\", \"Take out a cutting board and a knife.\", \"Peel the skin off of the onion.\", \"Wash the onion.\", \"Mince the onion.\", \"Pour the onion pieces into a bowl.\", \"Add water to the bowl.\", \"Add salt to the bowl.\", \"Strain the water from the onions.\", \"Take out a frying pan and put it over the burner.\", \"Add butter to the pan.\", \"Add the onions to the pan.\", \"Brown the onions and serve them onto a plate.\", \"The person gets out an onion and rinses it.\", \"The person gets out a cutting board and a knife.\", \"The person rinses the knife.\", \"The person peels and chops up the onion.\", \"The person gets out a bowl and puts the onion in it.\", \"The person adds water and salt to the bowl, rinses and drains the onions.\", \"The person gets out a frying pan, rinses it, puts it on the stove and turns it on.\", \"The person gets out some butter.\", \"The person gets out a wooden spatula and rinses it.\", \"The person puts butter in the frying pan.\", \"The person puts the onions in the frying pan.\", \"The person stirs the onions while they cook.\", \"The person gets out a plate and rinses it.\", \"The person puts the onions on the plate.\", \"The woman takes out an onion.\", \"The woman washes the onion.\", \"She cuts off the top with a knife.\", \"The woman peels the onion.\", \"The woman dices the onion into small pieces.\", \"The woman adds the onion to a bowl and adds water.\", \"The woman adds salt and then mixes it into the bowl with her hand.\", \"The woman rinses the onion.\", \"The woman adds butter to a pan.\", \"She adds the onions to the pan.\", \"The woman stirs the onions as they cook.\", \"She places them onto a plate.\", \"girl takes out a shallot from the fridge and washes it.\", \"she gets out a cutting board and a knife and washes it.\", \"She peels the onion.\", \"She slices the onion but not all the way through.\", \"Then she chopt it into little pieces.\", \"She took out onion\", \"She washed onion\", \"She took out cutting board\", \"She took out knife\", \"She washed knife\", \"She cut off top of onion\", \"She peeled onion\", \"She washed onion\", \"She cut slits in onion\", \"She gets an onion.\", \" She gets a cutting board and knife.\", \"She peels the onion.\", \"She rinses the onion.\", \"She chops the onion.\", \"She puts the onion in a bowl.\", \"She adds water to the bowl.\", \"She salts the water.\", \"She rinses the onions and drains the water.\", \"She adds butter to a heating pan.\", \"She adds the onion to the pan.\", \"She seasons the onions.\", \"She turns off the heat.\", \"She puts the onions on a plate.\", \"person gets out onion\", \"person washes onion\", \"person gets out cutting board\", \"person gets out knife\", \"person peels off outer layer of onion\", \"person dices onion\", \"person puts salt on onion\", \"person gets out pan\", \"person gets out butter\", \"person puts small slice of butter into pan\", \"person puts diced onion into pan\", \"person puts slice of butter in pan\", \"person puts onions onto plate\", \"She took out onion\", \"She washed onion\", \"She washed hands\", \"She took out cutting board\", \"She took out knife\", \"She washed knife\", \"She peeled onion\", \"She diced onion\", \"She washed hands\", \"She took out bowl\", \"She put onion in bowl\", \"She washed onion\", \"She added salt to onion\"], \"fps\": 29.4, \"num_frames\": 22525}, \"s27-d54.avi\": {\"timestamps\": [[230, 564], [566, 1243], [1246, 1480], [1623, 1794], [1826, 2163], [2246, 4491], [4695, 5094], [5239, 6759], [6830, 7309], [7536, 9028], [230, 925], [1011, 1480], [1623, 2163], [2246, 5094], [5239, 6944], [7009, 8235], [8292, 9028], [9571, 10366], [230, 633], [633, 1294], [1329, 1418], [1418, 2641], [2641, 5643], [5692, 6944], [7009, 9028], [9571, 9821], [9826, 10283], [230, 564], [566, 1243], [1246, 1418], [1418, 1794], [1826, 2023], [2023, 4491], [4695, 5094], [5239, 6944], [7009, 7309], [7536, 9028], [230, 925], [1011, 1243], [1246, 1480], [1623, 1794], [1826, 2163], [2246, 4491], [4695, 5094], [5239, 5643], [5692, 6759], [6830, 6944], [7009, 7309], [7536, 9028], [10372, 10431], [10481, 10705], [230, 564], [566, 1480], [1623, 1794], [1826, 4491], [4695, 5094], [5239, 7309], [7536, 9028], [9571, 9821], [9826, 10283], [10286, 10705], [230, 564], [566, 1480], [1623, 1794], [1826, 5094], [5239, 7309], [7536, 8235], [8292, 9028], [10286, 10366], [230, 7309], [230, 7309], [230, 7309], [230, 7309], [230, 7309], [230, 7309], [230, 7309], [230, 7309], [230, 7309], [230, 7309], [7536, 9028], [9571, 10366], [9571, 10705], [230, 564], [566, 1243], [1246, 1480], [1623, 1794], [1826, 2163], [2246, 3300], [3303, 4491], [4695, 5094], [5239, 5643], [5692, 6759], [6830, 6944], [7009, 7309], [7536, 9028], [10372, 10431], [10481, 10705], [230, 925], [1011, 1243], [1246, 1480], [1623, 1794], [1826, 2163], [2246, 2641], [2641, 3565], [3565, 4491], [4695, 5094], [5239, 6759], [6830, 6944], [7009, 9028], [9571, 10366], [10372, 10705], [230, 925], [1011, 1243], [1246, 1480], [1623, 4491], [4695, 7029], [7065, 7309], [7536, 9028], [9571, 10366], [230, 2023], [2023, 2163], [2246, 3434], [3463, 3565], [3565, 4491], [4695, 5643], [5692, 9028], [9571, 10366], [230, 564], [566, 1243], [1246, 1418], [1418, 1794], [1826, 2163], [2246, 4491], [4695, 5094], [5239, 6944], [7009, 7309], [7536, 9028], [230, 633], [633, 1294], [1329, 1480], [1623, 1794], [1826, 2163], [2246, 4491], [4695, 5094], [5239, 6944], [7009, 7309], [7536, 9028], [9571, 9821], [230, 564], [566, 1243], [1246, 1480], [1623, 1794], [1826, 2163], [2246, 4491], [4695, 5094], [5239, 6759], [6830, 6944]], \"sentences\": [\"He took out mango\", \"He took out cutting board\", \"He washed mango\", \"He took out knife\", \"He cut mango in half\", \"He sliced mango\", \"He took out bowl\", \"He cut up mango\", \"He got out second plate\", \"He put mango on plate\", \"He gets a mango.\", \"He washes the mango.\", \"He gets a knife and cuts the mango.\", \"He gets a bowl.\", \"He discards the pit.\", \"He finishes cutting.\", \"He puts the mango on a plate.\", \"He seasons the mango.\", \"Remove sticker from mango.\", \"Get cutting board.\", \"Wash mango.\", \"Cut into mango at its widest point, circling the seed.\", \"Scrape fruit off seed with knife.\", \"Discard seed.\", \"Cut into cubes and plate.\", \"Add salt.\", \"Add pepper.\", \"He took out mango\", \"He took out cutting board\", \"He washed mango\", \"He took out knife\", \"He cut mango in half\", \"He sliced mango\", \"He took out plate\", \"He threw away core\", \"He took out plate\", \"He put mango on plate\", \"The person gets out a mango.\", \"The person gets out a cutting board.\", \"The person rinses the mango.\", \"The person gets out a knife.\", \"The person removes half of the mango's outside.\", \"The person chops up the half of the mango he's peeled -- both the skin and the flesh, leaving the pit sticking out of the other half.\", \"The person gets out a bowl.\", \"The person cuts the rest of the mango off of the pit in large chunks.\", \"The person chops up the large chunks of mango.\", \"The person throws away the pit.\", \"The person gets out a plate.\", \"The person scrapes the mango pieces onto the plate.\", \"The person adds salt and pepper.\", \"The person adds a fork to the plate.\", \"He gets a mango.\", \"He gets a cutting board and washes the mango.\", \"He gets a knife.\", \"He cuts up half the mango and then also chops up the skin.\", \"He gets a small plate.\", \"He chops the rest of the mango and gets a plate.\", \"He does some final chopping and puts the mango on the plate.\", \"He salts the mango.\", \"He adds pepper to the mango.\", \"He puts a fork on the plate.\", \"He grabs a mango.\", \"He gets a cutting board and washes the mango.\", \"He gets a knife.\", \"He gets a small dish.\", \"He gets a plate.\", \"He chops the mango.\", \"He puts the mango on the plate.\", \"He seasons the mango.\", \"The person procures a larger plate from the cabinet.\", \"The person throws the core into the wastebin.\", \"The person chops up the other half of the mango on the cutting board.\", \"The person procures a small plate from the cabinet.\", \" The person chops half the mango, peel and all, on the cutting board.\", \"The person takes out a knife from the drawer.\", \"The person washes the mango in the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person peels a sticker from the mango and throws it out.\", \"The person procures a mango from the fridge.\", \"The person sets the mango slices on the plate.\", \"The person pours several condiments on the mango slices.\", \"The person takes out a fork from the drawer and sets it on the plate.\", \"A mango is removed from the refrigerator.\", \"The person removes a cutting board.\", \"The mango is rinsed.\", \"The person selects a knife.\", \"The mango is cut in half.\", \"The fruit is cut away from the seed from half the mango.\", \"The fruit and peel are chopped.\", \"A small plate is removed for the mango.\", \"The fruit from the other half is cut away from the seed.\", \"The fruit is chopped.\", \"The seed is discarded.\", \"A large plate is removed for the mango.\", \"Some more chopping and the pieces are placed on the plate.\", \"Two things are sprinkled on the mango.\", \"A fork is placed on the plate.\", \"The person gets out a mango.\", \"The person gets out a cutting board.\", \"The person washes the mango.\", \"The person gets out a knife.\", \"The person scores the mango around the middle and twists to remove one half of the outside.\", \"The person scores the inside of the mango in three places.\", \"The person slices off strips of mango and cuts the strips into small chunks.\", \"The person cuts the outside of the mango into strips, then cuts the strips into chunks.\", \"The person gets out a white bowl.\", \"The person cuts off large chunks of the other half of the mango, then dices them.\", \"The person throws away the mango pit.\", \"The person gets out a plate and scrapes the mango pieces onto it.\", \"The person adds salt and pepper to the mango pieces.\", \"The person gets out a fork and puts it on the plate.\", \"The person removes a mango from the refrigerator.\", \"The person gets out a cutting board.\", \"The person washes the mango.\", \"The person cuts up part of the mango.\", \"The person cuts up the rest of the mango.\", \"The person gets out a plate.\", \"The person transfers the mango to the plate.\", \"The person seasons the mango.\", \"Cut around the edge (Horizontally).\", \"Twist and pull the top half off.\", \"Cut out as much as you can.\", \"Cut into small strips.\", \"Cut the outer skin into small chunks.\", \"Cut the remains into smaller chunks.\", \"Place all the cut up pieces on a plate.\", \"Sprinkle your desired spices on.\", \"He took out mango\", \"He took out cutting board\", \"He washed mango\", \"He took out knife\", \"He cut mango in half\", \"He cut up mango\", \"He took out plate\", \"He threw out mango pit\", \"He took out plate\", \"He put mango on plate\", \"The person gets a mango from the crisper and removes the sticker from its peel.\", \"The person gets a cutting board from a drawer and places the mango upon it.\", \"The person washes the mango.\", \"The person gets a large knife from a drawer.\", \"The person cuts the mango in halves.\", \"The person, who obviously has never cut a mango before, attempts to chop up the core, and then slices its peel into bits with the fruit.\", \"The person gets a small bowl from the cupboard.\", \"The person throws the core into the garbage after cutting the fruit into bits with the peel still on it.\", \"The person procures a plate from the cabinet.\", \"The person scoops the mango slices peel and all onto the plate.\", \"The person gets a condiment and sprinkles a bit onto the mango.\", \"He took out mango\", \"He took out cutting board\", \"He washed mango\", \"He took out knife\", \"He cut mango in half\", \"He sliced mango\", \"He took out bowl\", \"He sliced mango\", \"He threw away core\"], \"fps\": 29.4, \"num_frames\": 10953}, \"s30-d41.avi\": {\"timestamps\": [[206, 503], [513, 624], [654, 1061], [1097, 1404], [1415, 2036], [2056, 2352], [2429, 2784], [2848, 11483], [11531, 11834], [11863, 16148], [16171, 16318], [16362, 17003], [17162, 18235], [18251, 18879], [206, 624], [654, 1143], [1180, 2036], [2056, 2352], [2429, 7601], [7629, 16148], [16171, 17940], [17947, 18879], [206, 624], [654, 1015], [1023, 2036], [2056, 2352], [2429, 16535], [16574, 17003], [17162, 17679], [17695, 18711], [206, 503], [513, 624], [654, 1061], [1097, 1404], [1415, 2036], [2056, 2352], [2429, 16148], [16171, 17187], [17192, 17679], [18731, 18879], [206, 503], [513, 624], [654, 1061], [1097, 1404], [1415, 2036], [2056, 2352], [2429, 2784], [2848, 7601], [7629, 8706], [8734, 11834], [11863, 12214], [12276, 16318], [16362, 17940], [17947, 18711], [19000, 19049], [206, 503], [513, 624], [654, 1015], [1023, 2036], [2056, 2784], [2848, 16318], [19055, 19154], [206, 503], [513, 624], [654, 1061], [1097, 1404], [1415, 2036], [2056, 2352], [2429, 16148], [16171, 16318], [16362, 17003], [17162, 17679], [19000, 19049], [206, 503], [513, 624], [654, 1015], [1023, 1404], [1415, 2036], [2056, 2352], [2429, 16148], [16171, 16318], [206, 503], [513, 624], [654, 1061], [1097, 1404], [1415, 2036], [2056, 2352], [2429, 16148], [16171, 16318], [16362, 17187], [17192, 17724], [17730, 18564], [206, 624], [654, 1143], [1180, 1404], [1415, 2036], [2056, 2784], [2848, 16148], [16362, 17187], [19000, 19154], [206, 503], [513, 624], [654, 1143], [1180, 1404], [1415, 2036], [2056, 2352], [2429, 2784], [2848, 11483], [11531, 11834], [11863, 16148], [16171, 16318], [16171, 17003], [17162, 18092], [18731, 19049], [206, 503], [513, 1015], [1023, 2036], [2056, 2784], [2848, 16318], [19055, 19154], [206, 503], [513, 1015], [1023, 2352], [2429, 16013], [17695, 19154], [206, 503], [513, 624], [654, 1061], [1097, 1404], [1415, 2036], [2056, 2352], [2429, 2784], [2848, 11692], [11697, 11834], [11863, 16013], [16039, 17003], [17162, 17940], [19055, 19154], [206, 503], [513, 624], [654, 1061], [1097, 1404], [1415, 2352], [2429, 2784], [2848, 3261], [3279, 7601], [7629, 11483], [11531, 14327], [14337, 16013], [16039, 17003], [16039, 17003], [17947, 18711], [206, 503], [513, 624], [654, 1061], [1097, 1404], [1415, 2036], [2056, 2352], [2429, 16148], [206, 503], [513, 624], [654, 1015], [1023, 1404], [1415, 2036], [2056, 2352], [2429, 11483], [16171, 16318], [16039, 17003], [17162, 17724], [206, 503], [206, 503], [206, 503], [513, 624], [654, 1061], [1097, 1404], [1097, 1404], [1415, 2036], [2056, 2352], [2429, 11483], [11531, 16148]], \"sentences\": [\"The person gets out a pomegranate.\", \"The person gets out a cutting board.\", \"The person rinses the pomegranate.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person cuts the pomegranate in half.\", \"The person cuts one of the pomegranate halves in half.\", \"The person scrapes the seeds from that half of the pomegranate onto the plate.\", \"The person cuts the other half of the pomegranate in half.\", \"The person scrapes the seeds from that half of the pomegranate onto the plate.\", \"The person washes her hands.\", \"The person washes the cutting board and the knife.\", \"The person throws away the outside of the pomegranate.\", \"The person wipes down the counter.\", \"Take out a pomegranate and a cutting board.\", \"Wash the pomegranate.\", \"Take out a small knife.\", \"Cut the pomegranate in half through the middle, not at the ends.\", \"Cut one of the halves in half again, take that quarter and break out the pomegranate seeds onto a plate with your hands.\", \"Repeat this process for the remaining pomegranate, remove any debris from the seeds as you go.\", \"Wash the cutting board and knife, throw away the pomegranate peel.\", \"Wash your hands and wipe down the counter you prepared the pomegranate on.\", \"She gets out the pomegranate and a cutting board.\", \"She rinses the pomegranate.\", \"She gets out a knife and a plate.\", \"She cuts the pomegranate in half.\", \"She removes the good parts of the pomegranate.\", \"She washes the cutting board.\", \"She discards the rest of the fruit.\", \"She wipes down the counter.\", \"The person procures a pomegranate from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the pomegranate in the sink.\", \"The person procures a plate from the cabinet.\", \"The person takes out a knife from the drawer.\", \"The person chops the pomegranate in half.\", \"The person breaks the pomegranate halves apart and plucks the seeds with her hands and places them on the plate.\", \"The person washes her hands and then the cutting board in the sink.\", \"The person throws the peels into the wastebin.\", \"The person cleans the countertop.\", \"The woman opens the refrigerator and removes a pomegranate.\", \"She removes a cutting board from the drawer and places it on the counter.\", \"She washes the pomegranate well and places it on the cutting board.\", \"She removes a plate from the cabinet and places it on the counter.\", \"She selects a knife from the drawer.\", \"She cuts the pomegranate in half with the knife.\", \"She cuts one of the pomegranate pieces in half again.\", \"She uses her fingers to carefully remove the seeds from the pomegranate quarter and places them on the plate.\", \"She continues removing seeds from the other sections of the pomegranate.\", \"She slices the remaining section of the pomegranate in half.\", \"She continues removing seeds from the sections of the pomegranate.\", \"She rinses her hands in the sink.\", \"She places all the remaining pomegranate rind into the recycling bin.\", \"She wipes down the counter with a dishrag.\", \"She rinses out the dishrag.\", \"She gets a pomegranate.\", \"She gets a cutting board out.\", \"She rinses the pomegranate.\", \"She gets a plate and knife.\", \"She cuts the pomegranate.\", \"She removes the good parts pf the pomegranate.\", \"She cleans up.\", \"The person procures a pomegranate from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the pomegranate in the sink.\", \"The person procures a plate from the cabinet.\", \"The person takes out a knife from the drawer.\", \"The person cuts the pomegranate in half.\", \"The person breaks each half into two and then picks the seeds from the pomegranate onto the plate.\", \" The person washes her hands.\", \"The person washes the knife and cutting board in the sink.\", \"The person throws the peels into the wastebin.\", \"The person wipes the counter off with a rag.\", \"She took out pomegranate\", \"She took out cutting board\", \"She washed pomegranate\", \"She took out plate\", \"She took out knife\", \"She cut pomegranate in half\", \"She took sees out of pomegranate\", \"She washed hands\", \"The person procures a pomegranate from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the pomegranate in the sink.\", \"The person procures a plate from the cabinet.\", \"The person takes out a knife from the drawer.\", \"The person cuts the pomegranate in half.\", \"The person breaks each half into two and then picks the seeds from the pomegranate onto the plate.\", \" The person washes her hands.\", \"The person washes the knife and cutting board in the sink.\", \"The person throws the peels into the wastebin.\", \"The person wipes the counter off with a rag.\", \" She retrieves a pomegranate from the refrigerator and a cutting board from the drawer.\", \"She throughly rinses off the pomegranate and places it on the cutting board.\", \"She retrieves a bowl from the cabinet.\", \"She selects the proper knife from the drawer.\", \"She cuts the pomegranate into quarters.\", \"She removes the seeds from each of the quarters by hand, placing the seeds into the bowl.\", \"She rinses her hands, and the knife and cutting board, setting them aside.\", \"She discards the peel/rind and cleans off her workstation.\", \"The person gets out a pomegranate\", \"The person gets out a cutting board.\", \"The person rinses the pomegranate.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person cuts the pomegranate in half.\", \"The person cuts one of the pomegranate halves in half again.\", \"The person scoops the seeds from that half of the pomegranate onto the plate.\", \"The person cuts the other half of the pomegranate in half.\", \"The person scoops the seeds from that half of the pomegranate onto the plate.\", \"The person washes her hands\", \"The person washes the knife and cutting board.\", \"The person throws away the outside of the pomegranate.\", \"The person wipes down the counter.\", \"She gets a pomegranate.\", \"She gets a cutting board and rinses the pomegranate.\", \"She gets a plate and knife.\", \"She cuts the pomegranate.\", \"She gets the good parts of the pomegranate separated.\", \"She cleans up.\", \"She gets out the fruit.\", \"She washes the fruit\", \"She cuts the fruit in half.\", \"She removes the good parts of the fruit.\", \"She cleans up the mess.\", \"The person retrieves the pomegranate from the refrigerator.\", \"The person places a cutting board onto the counter.\", \"The person washes the pomegranate.\", \"The person gets a plate to collect the seeds on.\", \"The person selects an appropriate knife.\", \"The person cuts the pomegranate in half.\", \"The person cuts one of the halves into quarters.\", \"The person removes the seeds from the inside of the fruit and puts them on the plate.\", \"The person cuts the remaining half of the pomegranate in half.\", \"The person removes the seeds from the inside of the fruit and puts them on the plate.\", \"The person cleans the knife and cutting board in the sink.\", \"The person takes the unused pieces of pomegranate and throws them away.\", \"The person wipes down the counter with a wet towel.\", \"The woman removes a pomegranate from the refrigerator and places it on the counter.\", \"She removes a cutting board from a drawer and places it on the counter.\", \"She rinses the pomegranate off in the sink and places it on the cutting board.\", \"She fetches a dish from the cupboard and places it on the counter.\", \"She searches for a knife in the drawer, finds it, and chops the pomegranate in half with it.\", \"She cuts one half in half again, and begins pulling seeds out of the resulting quarter into the dish.\", \"She breaks the quarter in half to make it easier to pull the seeds out.\", \"She finishes pulling the seeds out of the one quarter, having broken it into smaller pieces as necessary to obtain all the seeds.  She places the unused portion of the fruit off to the side.\", \"She completes the second quarter, in the same way as the first.  She chops the second half in half and begins the third quarter.\", \"She finishes the third quarter.\", \"She finishes the final quarter.\", \"She washes her hands, the board, and the knife in the sink.\", \"She puts the board off to the side.\", \"She throws away the unused portion of the fruit and wipes off the counter with a rag.\", \"She took out pomegranate\", \"She took out cutting board\", \"She washed pomegranate\", \"She took out plate\", \"She took out knife\", \"She cut pomegranate in half\", \"She took out middle of pomegranate\", \"The person takes a pomegranate from the fridge.\", \"The person takes a cutting board from a drawer.\", \"The person washes the pomegranate.\", \"The person gets a plate from the cupboard.\", \"The person takes a knife from the cutlery drawer.\", \"The person cuts the pomegranate in half.\", \"The person cuts one half into a quarter and proceeds to break each quarter apart with her hands and remove the pomegranate seeds onto the plate.\", \"The person takes the second half of pomegranate, cuts it into a quarter, then proceeds to break it apart with her hands and scoop the seeds onto the plate.\", \"The person scrubs off the cutting board and knife in the sink and places them on the countertop.\", \"The person opens the trashbin and throws the pomegranate husk inside.\", \"Woman walks to fridge and opens fridge door.\", \"Opens crisper and removes pomegranate, closes crisper and fridge door.\", \"She walks to the counter and places the pomegranate on the counter.\", \"She opens the drawer and removes a cutting board.\", \"Washes the pomegranate and places it on the cutting board.\", \"She walks to the cupboard, opens the door and removes a plate, then closes the door.\", \"She brings the plate back and sets it on the counter.\", \"The woman opens the drawer, looks around a bit removes a knife, then closes the drawer.\", \"She cuts the pomegranate in half.\", \"She cuts up the first half into 4 pieces and starts removing the seeds from the fruit. (long process)\", \"She cuts up the other half of the fruit into 2 smaller pieces and removes all of the seeds.\"], \"fps\": 29.4, \"num_frames\": 19147}, \"s31-d31.avi\": {\"timestamps\": [[201, 323], [361, 1431], [1471, 1580], [1580, 1744], [1766, 1828], [1883, 1997], [2052, 4308], [4458, 4668], [4691, 4915], [201, 1633], [1637, 1828], [1883, 2106], [2147, 3335], [3428, 4308], [4458, 4915], [5088, 5595], [5649, 6203], [201, 541], [571, 659], [696, 1431], [1471, 1633], [1637, 1744], [1766, 1828], [1883, 2106], [2147, 3292], [3292, 4211], [4211, 4668], [4691, 4915], [5088, 5595], [5649, 6005], [6005, 6203], [201, 541], [571, 1431], [1471, 1633], [1637, 1828], [1883, 2106], [2147, 3335], [3428, 4308], [4458, 4915], [5088, 5595], [5649, 6005], [6005, 6203], [201, 541], [571, 1431], [1471, 1828], [1883, 1997], [2052, 2106], [2147, 3335], [3428, 4308], [4458, 4915], [5088, 6203], [201, 541], [571, 1006], [1006, 1580], [1580, 1997], [2052, 3335], [3428, 4308], [4458, 4915], [5088, 6203], [201, 323], [361, 659], [696, 1431], [1471, 1633], [1637, 1828], [1883, 4308], [4458, 4915], [5088, 6203], [201, 392], [398, 1431], [1471, 1633], [1637, 4308], [4458, 4915], [5088, 6005], [6005, 6203], [201, 323], [361, 1431], [1471, 1633], [1637, 1744], [1766, 1828], [1883, 4308], [4458, 4668], [4691, 4915], [201, 713], [720, 1431], [1471, 1744], [1766, 1828], [1883, 2106], [2147, 4308], [4458, 4915], [5088, 5595], [5649, 6203], [201, 659], [696, 1431], [1471, 1744], [1766, 1828], [1883, 2106], [2147, 4308], [4458, 4668], [4691, 4915], [5088, 5595], [5649, 6005], [6005, 6203], [201, 1431], [1471, 1633], [1637, 1997], [2052, 4308], [5088, 6203], [201, 323], [361, 659], [696, 1431], [1471, 1633], [1637, 1744], [1766, 2106], [2147, 4308], [4458, 4668], [4691, 4915], [5088, 5490], [5524, 6005], [6005, 6203], [201, 1633], [1637, 1828], [1883, 2106], [2147, 4308], [4458, 4915], [4458, 5595], [5649, 6005], [6005, 6203], [201, 323], [361, 541], [571, 659], [696, 1431], [1471, 1633], [1637, 1744], [1766, 1828], [1883, 1997], [2052, 2106], [2147, 3335], [3428, 4668], [4691, 4818]], \"sentences\": [\"He took out garlic\", \"He peeled garlic\", \"He washed garlic\", \"He took out cutting board\", \"He took out knife\", \"He cut off tops of garlic\", \"He diced garlic\", \"He took out plate\", \"He put garlic on plate\", \"A man enters the kitchen, retrieves garlic from the cupboard, peels the cloves over the garbage can and washes them.\", \"He removes a cutting board and a knife from the drawer.\", \"He cuts the ends off of the two cloves of garlic and throws them in the garbage.\", \"He slices both cloves are garlic crosswise.\", \"He cuts through both cloves of garlic again to render a finer cut.\", \"He transfers the garlic from the cutting board to the plate.\", \"He washes and drys the knife and returns it to the drawer.\", \"He washes the cutting board, returns it to the drawer and places the plate of freshly cut garlic in the cupboard.\", \"Garlic is removed from a cabinet and two cloves are broken off.\", \"The bulb is replaced in the cabinet.\", \"The cloves are peeled over the trash receptacle.\", \"The cloves are rinsed.\", \"The person removes a cutting board.\", \"The person selects a knife.\", \"The ends are cut off and discarded.\", \"The cloves are sliced thinly.\", \"The garlic slices are chopped.\", \"A plate is removed for serving.\", \"The chopped garlic is placed on the plate.\", \"The knife is washed, dried and put away.\", \"The cutting board is cleaned and put away.\", \"The chopped garlic is placed in a cabinet.\", \"Get your clove of garlic and break off the amount you want over the trash can.\", \"Peel the skin off of the garlic over the trash.\", \"Rinse off the garlic.\", \"Get a cutting board and knife.\", \"Cut off the ends of the garlic and discard in the trash.\", \"Slice your garlic into small slices.\", \"Chop garlic into smaller pieces.\", \"Place pieces on a small saucer.\", \"Rinse and dry your knife, then put it away.\", \"Rinse your cutting board and put it away.\", \"Store your garlic for when you are ready to use it.\", \"The man begins by selecting some garlic from the cupboard.\", \"Next, he cleans the skin on the garlic discarding the waste.\", \"He rinses the garlic in water.\", \"He gets out a small cutting board and a large knife.\", \"Next, he uses the knife to trim the ends off the garlic which he then discards.\", \"He then slices to garlic into thin pieces.\", \"He goes over the garlic again chopping it finely.\", \"He then places the garlic onto a small plate.\", \"Finally, he rinses the knife as well as the cutting board and then places the plate of garlic in the cupboard.\", \"A gentalmen enters the kitchen, opens the fridge, and pulls out garlic. He then walks over the trash can and starts to peel the garlic.\", \"He puts the garlic he does not want to use back in the fridge, then proceeds to peel the garlic to its core.\", \"After peeling both garlic to its core, he washes both pieces of garlic in the sink.\", \"He then pulls out a cutting board and knife and cuts way the tips of the garlic.\", \"He then carefully slices up both pieces of garlic in a vertical cut, then gathers all the pieces into the middle of the cutting board.\", \"HE then proceeded to cut the garlic into smaller pieces.\", \"He goes into a cupboard and pulls out a small plate, he then carefully places all the pieces of garlic onto the plate.\", \"He then washes and dries both the knife and cutting board and puts them both away. He then places the garlic in the cupboard.\", \"He gets the garlic.\", \"He gets the parts he wants and puts the rest away.\", \"He removes the skin.\", \"He rinses the garlic.\", \"He gets a knife and cutting board.\", \"He minces the garlic.\", \"He gets a plate and puts the garlic on it.\", \"He cleans up.\", \"choose garlic cloves to use\", \"peeling two garlic cloves\", \"wash and rinse two cloves of garlic\", \"dicing and chopping garlic on chopping board\", \"placing minced garlic in storage container\", \"cleaning and putting away utensils\", \"putting storage container in refrigerator\", \"Takes garlic out of cabinet.\", \"Peels the garlic.\", \"Rinses the garlic in the sink.\", \"Takes out a cutting board.\", \"Takes out a knife.\", \"Chops the garlic into pieces.\", \"Takes a small dish out of the cabinet.\", \"Puts the garlic pieces on the dish.\", \"He opens the cabinet, gets out some garlic from he removes the outer cover into the trash, and puts back the rest of the garlic that he is not going to use.\", \"He removes more of the outer covering of the garlic.\", \"He washes off what is left of the garlic.\", \"He gets out a circular cutting board and a knife from the drawers and lays the garlic on top.\", \"He cuts off the ends of the garlic and throws them in the trash.\", \"He cuts the garlic into pieces, then gathers them together and cuts them into finer pieces, before gathering them together again and putting down the knife.\", \"He gets out a plate from the cabinet and uses the knife and his hand to gather the garlic onto the plate.\", \"He washes the knife in the faucet, dries it, and puts it away.\", \"He washes the cutting board and puts it away and then puts the plate back in the cabinet.\", \"The person gets out two pieces of garlic.\", \"The person peels the garlic over a trash can.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts off and throws away the ends of the garlic pieces.\", \"The person cuts up the garlic.\", \"The person gets out a plate.\", \"The person scoops the pieces of garlic onto the plate.\", \"The person washes, dries and puts away the knife.\", \"The person washes and puts away the wooden plate.\", \"The person puts the plate with the garlic into a cabinet.\", \"The person peels the garlic.\", \"The person rinses the garlic.\", \"The person cuts off the ends of the garlic.\", \"The person slices the garlic into small pieces.\", \"The person cleans and puts away the knife and cutting board.\", \"The person got the garlic out of the pantry.\", \"The person broke off two cloves and put the rest in the pantry.\", \"The person took the outer layer of skin off the garlic.\", \"The person rinsed off the garlic.\", \"The person got out a cutting board.\", \"The person cut the ends off the garlic.\", \"The person minced the garlic.\", \"The person got out a plate.\", \"The person put the garlic on the plate.\", \"The person washed the knife.\", \"The person washed the cutting board.\", \"The person put the garlic in the pantry.\", \"A man enters the kitchen, removes the garlic from the cupboard, separates the cloves over the garbage can and rinses the garlic in the sink.\", \"He removes a cutting board and a knife from the drawer and places them on the counter.\", \"He cuts the ends off of the garlic cloves and throws them in the garbage.\", \"He slices the garlic very thinly, running through slicing them twice.\", \"He retrieves a plate from the cupboard and transfers the garlic from the cutting board to the plate.\", \"He washes the knife and returns it to the drawer.\", \"He washes the cutting board and returns it to the drawer.\", \"He places the plate of freshly cut garlic into the cupboard.\", \"He took out garlic\", \"He peeled garlic\", \"He put back extra garlic\", \"He peeled garlic\", \"He washed garlic\", \"He took out cutting board\", \"He took out knife\", \"He cut off tip of garlic\", \"He threw away tips\", \"He diced garlic\", \"He took out plate\", \"He put garlic on plate\"], \"fps\": 29.4, \"num_frames\": 6257}, \"s27-d70.avi\": {\"timestamps\": [[251, 837], [847, 1138], [1138, 1389], [1389, 1581], [1682, 2141], [2192, 4835], [5292, 6182], [6255, 6516], [6518, 6947], [7100, 7749], [251, 837], [847, 1200], [1200, 1389], [1389, 1581], [1682, 2141], [2192, 4835], [5292, 5422], [5596, 6182], [6255, 6516], [6518, 6947], [7100, 7366], [7805, 8080], [251, 837], [847, 1138], [1138, 1389], [1389, 1581], [1682, 2141], [2192, 3538], [3720, 4835], [5292, 5422], [5596, 6182], [6255, 6556], [6639, 6947], [7100, 7412], [7431, 7749], [7307, 8080], [251, 837], [847, 1138], [1138, 1389], [1389, 1581], [1682, 2141], [2192, 4835], [5292, 5422], [5596, 5687], [5768, 6516], [6518, 6814], [251, 837], [847, 1420], [1517, 1581], [1682, 2141], [2192, 3538], [3720, 4835], [5292, 5687], [5768, 6182], [6255, 6516], [6892, 6947], [7100, 7366], [7307, 7749], [7805, 8080], [7805, 8080], [251, 837], [847, 1420], [1517, 1581], [1682, 4835], [6518, 6947], [7805, 8080], [251, 837], [847, 1389], [1389, 1581], [1682, 2141], [2192, 4835], [5292, 6814], [5292, 7749], [251, 837], [847, 1420], [1517, 1581], [1682, 2141], [2192, 4835], [5292, 5687], [5768, 6814], [6892, 7749], [251, 837], [847, 1420], [1517, 1581], [1682, 3538], [3720, 4835], [5292, 6182], [6892, 6947], [7100, 8080], [251, 837], [847, 1389], [1389, 1581], [1682, 4835], [5292, 6814], [6255, 7749], [251, 837], [847, 1420], [1517, 1581], [1682, 3538], [3720, 4835], [5292, 6182], [6892, 6947], [7805, 7891], [251, 837], [847, 1138], [1138, 1389], [1389, 1581], [1682, 2141], [2192, 4835], [5292, 5422], [5596, 5687], [5768, 6182], [6255, 6516], [6255, 6947], [7100, 7516], [7532, 7749], [7894, 8080], [251, 837], [847, 1138], [1138, 1389], [1389, 1581], [1682, 2141], [2192, 3538], [3720, 4835], [5292, 5422], [5596, 6182], [6255, 6516], [6518, 6947], [7100, 7366], [7307, 7516], [7532, 7749], [7805, 8080], [251, 837], [847, 1138], [1138, 1389], [1389, 1581], [1682, 2141], [2192, 4835], [5292, 5422], [5596, 5687], [5768, 6516], [6518, 6947], [251, 1420], [1517, 1581], [1682, 4835], [5292, 5687], [5768, 6182], [6255, 6556], [6518, 6947], [7100, 8080], [251, 837], [847, 1389], [1389, 1581], [1682, 2141], [1682, 2141], [2192, 4835], [5292, 6182], [6639, 6947], [7100, 7749], [251, 837], [847, 1581], [1682, 3538], [3720, 4835], [5292, 6182]], \"sentences\": [\"He took out orange\", \"He took out cutting board\", \"He took out knife\", \"He cut orange in half\", \"He took out juicer\", \"He twisted orange on juicer\", \"Removed orange from top of juicer\", \"He took out cup\", \"He poured juice into cup\", \"He added sugar to cup\", \"The person procures an orange from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts the orange in half.\", \"The person takes out a juice strainer from the drawer.\", \"The person grinds each half into the juice strainer with his palm.\", \"The person takes out a spoon from the drawer.\", \"The person throws the peels into the wastebin and uses the spoon to scoop out the pulp.\", \"The person takes a glass from the cupboard.\", \"The person pours the juice from the strainer into the glass.\", \"The person takes a package of sugar from the pantry.\", \"The person takes out a spoon from the drawer, scoops some sugar into the glass, stirs it with the juice, and returns the package to the pantry.\", \"The person takes an orange from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person chops the orange in half on the cutting board.\", \"The person takes out a juice strainer from the drawer.\", \"The person grinds on half of the orange into the juice strainer with his palm.\", \"The person grinds the second orange half into the juice strainer.\", \"The person takes a spoon from the drawer.\", \"The person uses the spoon to scoop the pulp from the strainer into the trash.\", \"The person take a glass from the cupboard.\", \"The person pours the juice from the strainer into the glass.\", \"The person takes some sugar from the pantry.\", \"The person takes a spoon from the pantry and scoops some sugar into the glass of juice and stirs it.\", \"The person returns the package of sugar to the pantry.\", \"He took out orange\", \"He took out cutting board\", \"He took out knife\", \"He cut orange in half\", \"He took out juicer\", \"He twisted orange on juicer\", \"He took out spoon\", \"He threw away orange\", \"He took out glass\", \"He poured juice in glass\", \"An orange is removed from the refrigerator.\", \"The person selects a cutting board and knife.\", \"The orange  is cut in half.\", \"The person removes a juicer.\", \"One half of the orange is juiced.\", \"The other half of the orange is juiced.\", \"The orange peels are discarded.\", \"The orange pulp is discarded.\", \"A glass is removed from the cabinet.\", \"The juice is poured in the glass.\", \"Sugar is retrieved from the cabinet.\", \"Sugar is added to the glass with a spoon.\", \"The sugar is returned to the cabinet.\", \"Juice is ready.\", \"The man takes out an orange.\", \"The man takes out a knife and a cutting board.\", \"The man slices the orange in half.\", \"The man pushes and twist the orange halves into the juicer.\", \"The man pours the juice into the glass.\", \"He adds sugar to the glass.\", \"He gets an orange.\", \"He gets a cutting board and knife.\", \"He cuts the orange in half.\", \"He gets out a juicer.\", \"He juices the orange.\", \"He pours the juice into a glass.\", \"He adds sugar to the glass and stirs.\", \"He gets an orange.\", \"He gets a cutting board and knife.\", \"He halves the orange.\", \"He gets a juicer.\", \"He juices the orange.\", \"He discards the orange.\", \"He grabs a glass and puts the juice in it.\", \"He adds sugar to the glass and stirs.\", \"The man begins by selecting an orange from the fridge.\", \"He then takes out a knife and a wooden cutting board.\", \"Next, he uses the knife to cut the orange in half.\", \"He then takes out a juicer and juices the first half of the orange.\", \"He juices the second half of the orange.\", \"Next, he discards the used orange peels as well as some of the pulp.\", \"After retrieving a glass from the cupboard, he pours the juice into the glass.\", \"Next, he adds a spoonful of sugar to the juice.\", \"He grabs an orange.\", \"He gets a knife and cutting board.\", \"He cuts the orange in half.\", \"He juices the orange.\", \"He pours the juice into a glass.\", \"He adds sugar to the glass and stirs.\", \"The man begins by selecting an orange from the fridge.\", \"He then retrieves a large knife and a wooden cutting board.\", \"Next, he uses the knife to cut the orange in half.\", \"After getting out the juicer, he juices the first orange half.\", \"He then juices the second half of the orange.\", \"Next, he discards the orange peels and some of the waste pulp.\", \"He retrieves a glass from the cupboard and pours the orange juice into the glass.\", \"Finally, he adds a spoonful of sugar to the orange juice.\", \"The person gets out an orange.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person cuts the orange in half on the plate.\", \"The person gets out a juicer.\", \"The person puts each orange half on the juicer, pushes down and twists repeatedly until no more juice comes out.\", \"THe person gets out a spoon.\", \"The person throws the orange rinds away.\", \"The person uses the spoon to scrape pulp out of the juicer into the trash.\", \"The person gets out a glass.\", \"The person pours the juice from the juicer into the glass.\", \"The person gets out some sugar and another spoon.\", \"The person scoops sugar into the juice and stirs it.\", \"The person puts away the sugar.\", \"An orange is removed from the refrigerator.\", \"The person selects a cutting board.\", \" The person selects a knife.\", \"The orange is cut in half.\", \"The person removed a juicer.\", \"One half of the orange is juiced.\", \"The other half of the orange is juiced.\", \"A spoon is removed.\", \"The orange peels and pulp are discarded.\", \"A glass is removed from the cabinet.\", \"The juice is poured in the glass.\", \"Sugar is retrieved from the cabinet.\", \"A spoon is removed.\", \"Sugar is added to the glass.\", \"The sugar is returned to the cabinet.\", \"He took out orange\", \"He took out cutting board\", \"He took out knife\", \"He cut orange in half\", \"He took out juicer\", \"He twisted orange on juicer\", \"He took out spoon\", \"He threw out orange scraps\", \"He took out glass\", \"He poured juice into cup\", \"He gets an orange from the refrigerator and a cutting board and knife from drawers.\", \"He cuts the orange in half.\", \"He gets out a juicer and uses it take all of the juice from the two halves of the orange.\", \"He throws away the orange peels in the trash can.\", \"He gets rid of waste from the top of the juicer that is left over.\", \"He goes to the cabinet and gets out a glass.\", \"He pours the juice from the juicer into the glass.\", \"He gets sugar from the cabinet and pours a spoonful into the juice and mixes it in with a spoon.\", \"Remove orange from fridge.\", \"Gather cutting board and knife on counter.\", \"Cut orange in half.\", \"Put juicer on counter and hold steady with one hand.\", \"Push orange half onto juicer spike.\", \"Press orange half with heel of palm and rotate orange on spike.\", \"Spoon pulp from juicer into trash.\", \"Pour juice into glass.\", \"Add spoon full of sugar and stir.\", \"A man enters the kitchen, removes an orange from the refrigerator and places it on the counter.\", \"The man removes a cutting board and knife from the drawer and cuts the orange in two.\", \"The man removes a juice press from the drawer and presses one half of the orange on the juice press releasing the juice of the orange.\", \"The man repeats the previous action with the second half of the orange.\", \"The man removes a spoon from the drawers, scoops the orange pulp out of the juicer and throws it away with the orange peels.\"], \"fps\": 29.4, \"num_frames\": 8202}, \"s30-d26.avi\": {\"timestamps\": [[174, 1088], [1182, 1818], [1839, 3172], [3218, 5465], [5880, 6392], [6590, 6667], [6747, 13634], [14096, 14670], [14776, 16333], [174, 769], [902, 1818], [1839, 3172], [3218, 5465], [5880, 6392], [6590, 9315], [9318, 16333], [16419, 16923], [174, 769], [902, 1088], [1182, 1921], [1941, 3053], [3061, 3236], [3243, 4550], [4630, 6392], [6590, 6667], [6747, 7038], [7154, 9437], [9462, 14882], [14938, 15286], [15364, 15758], [17017, 17079], [174, 1204], [1222, 1378], [1398, 3172], [3218, 4402], [4486, 7816], [7951, 9567], [9640, 14670], [15847, 16854], [174, 949], [961, 1378], [1398, 1921], [1941, 3236], [3243, 3529], [3603, 5465], [5880, 6667], [5880, 6667], [6747, 7816], [7951, 16034], [14776, 16510], [16578, 16854], [174, 288], [351, 769], [902, 1088], [1182, 1818], [1839, 2962], [3036, 5465], [5880, 6392], [6590, 7038], [7154, 8307], [8322, 9315], [9318, 14670], [16062, 16685], [16419, 17079], [174, 288], [351, 949], [961, 1088], [1182, 1818], [1839, 2250], [2277, 3053], [3061, 5465], [5880, 6392], [174, 288], [351, 769], [351, 769], [902, 1921], [1941, 2250], [2277, 2962], [3036, 3172], [3218, 3529], [3603, 5465], [174, 1818], [1839, 3053], [3061, 4314], [4355, 5465], [6590, 6667], [6747, 8232], [8248, 9567], [9640, 9801], [9889, 13465], [13590, 14670], [14776, 15915], [14776, 16510], [16578, 16813], [16868, 17079], [174, 769], [902, 1088], [1182, 1921], [1941, 2250], [2277, 2962], [3036, 3529], [3603, 5465], [5880, 6392], [5880, 8072], [174, 1088], [1182, 1818], [1839, 2250], [2277, 3053], [3061, 3172], [3218, 3529], [3603, 5465], [5880, 6392], [6590, 7038], [7154, 8072], [8156, 9567], [9640, 14226], [14272, 15286], [15364, 15758], [15912, 16854], [174, 288], [351, 769], [902, 1088], [902, 1088], [1182, 1921], [1941, 2250], [2277, 3053], [3061, 3529], [3603, 3703], [174, 288], [351, 769], [351, 769], [902, 1088], [1182, 1818], [1839, 2250], [2277, 2962], [3036, 3172], [3218, 3529], [174, 288], [351, 769], [351, 769], [902, 1378], [1398, 2250], [2277, 2962], [3036, 3172], [3218, 3529], [3718, 5465], [174, 769], [902, 1088], [1182, 1818], [1839, 2962], [3603, 5465], [5880, 6392], [8156, 9315], [9318, 15758], [15847, 16854], [174, 1088], [1182, 1818], [1839, 3172], [3603, 5465], [5880, 6392], [6590, 9567], [9640, 14670], [14776, 15758], [16868, 17079], [174, 288], [351, 949], [961, 1088], [1182, 1818], [1839, 2250], [2277, 2962], [3036, 3172], [3218, 3529], [3036, 5465], [5880, 6392]], \"sentences\": [\"Fill pot half way with water and place on burner.\", \"Add a generous amount of salt to the water.\", \"Rinse of vegetable and remove bad pieces.\", \"Cut pieces to around the size of one inch.\", \"Place pieces in the pot of water.\", \"Put lid on pot and bring to boil.\", \"Once water is boiling reduce heat.\", \"Stir occasionally.\", \"Drain water from pot through strainer.\", \"She gets a pot and fills it with water.\", \"She salts the water.\", \"She rinses the cauliflower.\", \"She cuts up the cauliflower.\", \"She adds the cauliflower to the pot.\", \"She cleans up while the water is heating.\", \"She strains the cauliflower.\", \"She puts the cauliflower on the plate.\", \"Get a pot and lid, filling the pot half way with water.\", \"Turn on the stove top burner.\", \"Add salt to the pot of water.\", \"Get your cauliflower from the fridge and wash off, breaking off the stem.\", \"Place cauliflower on a cutting board.\", \"Get a knife and cut cauliflower into pieces.\", \"Place cauliflower pieces into pot of water on stove.\", \"Cover pot with lid.\", \"Discard stems and unused pieces into the trash.\", \"Clean your cutting board, knife and countertops.\", \"Use a fork to test tenderness.\", \"Get a plate ready.\", \"Get a colander ready in the sink.\", \"Turn off burner, strain cauliflower and put on plate.\", \"The woman begins by retrieving a pot and then filling the pot with water from the tap.\", \"She then puts the pot onto the stove and adds salt to it.\", \"Next, she takes a head of cauliflower from the fridge and rinses it in the sink, as she is rinsing the sink she breaks the lower stalk off.\", \"She then gets out a cutting board and slices the cauliflower into several different pieces.\", \"Next, she puts the cut cauliflower into the pot of water that was on the stove and then puts a glass lid on the pot.\", \"She then washes the knife and cutting board and then puts them away.\", \"Next, she takes a fork and pokes a few of the cauliflower pieces to see if they are cooked.\", \"Finally, she pours the pot of water and cauliflower through a strainer and then places the cauliflower on a plate.\", \"the person gets a pot and fills it with water\", \"the person puts the pot over the stove and heats it up\", \"the person seasons the water with salt\", \"the person washes the Cauliflower\", \"the person gets a cutting board and a knife\", \"the person cuts apart the Cauliflower on the cutting board with the knife\", \"the person puts the pieces of Cauliflower in the pot\", \"the person covers the pot\", \"the person discards the stem of the Cauliflower\", \"the person gets a plate and a metal strainer\", \"the person removes the Cauliflower from the pot to the metal strainer\", \"the person places the Cauliflower on the plate\", \"The person takes a pot out of the drawer.\", \"The person adds water to the pot.\", \"The person turns on the gas to heat the pot of water.\", \"The person adds salt to the pot of water.\", \"The person takes a cauliflower out of the refrigerator and washes it.\", \"The person chop the cauliflower into smaller pieces.\", \"The person moves the chopped cauliflower into the pot of water.\", \"The person discards the unwanted parts of the cauliflower.\", \"The person washes the chopping board and the knife.\", \"The person cleans the table with a cloth and washes her hands.\", \"The person waits for the cauliflower to cook and tests the pieces with a fork.\", \"The person turns off the stove and strains the cauliflower.\", \"The person places the cooked cauliflower onto a plate.\", \"She took out pot\", \"She put pot on stove\", \"She turned on stove\", \"She put salt in pot\", \"She took out cauliflower\", \"She washed cauliflower\", \"She cut up cauliflower\", \"She put cauliflower in pot\", \"She took out pot\", \"She put water in pot\", \"She put pot on stove\", \"She put salt in pot\", \"She took out cauliflower\", \"She washed cauliflower\", \"She took out cutting board\", \"She took out knife\", \"She chopped cauliflower\", \"fill large pot with water, place pot on stove and turn on, season with salt\", \"wash cauliflower and break into chunks\", \"place on cutting board, cut off bruised/brown pieces, cut into quarters\", \"continue cutting cauliflower into bite size pieces\", \"place cauliflower pieces into pot and cover\", \"discard waste, wash cutting board and knife\", \"clean and wipe work area\", \"lift pot lid and check on cauliflower - replace lid\", \"adjust stove temperature down\", \"check cauliflower with a fork for firmness, replace lid\", \"gather plate and colander, turn off/down stove\", \"empty cauliflower into colander, shake off excess water\", \"empty cauliflower onto plate\", \"finished.\", \"The person got out a pot with water.\", \"The person turned the stove on.\", \"The person seasoned the water.\", \"The person got out cauliflower.\", \"The person rinsed the cauliflower.\", \"The person got out a cutting board and a knife.\", \"The person cut the cauliflower.\", \"The person put the cauliflower in the pot.\", \"The person cleaned up the board and knife.\", \"The person takes out a pot from the drawer, fills it with water, puts it on the stove and turns it on.\", \"The person adds salt to the water.\", \"The person procures a cauliflower from the fridge.\", \" The person washes the cauliflower in the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person chops the cauliflower on the cutting board.\", \"The person puts the chopped cauliflower in the pot of water on the stove.\", \"The person throws the stems into the wastebin.\", \"The person washes the cutting board and the knife in the sink.\", \"The person cleans the counter with a rag, then washes and dries her hands.\", \"The person takes out a fork from the drawer.\", \"The person stirs the pot with the fork , the washes it in the sink, and proceeds to procure a plate from the cabinet.\", \"The person takes out a colander from the drawer and sets it in the sink.\", \"The person takes the pot from the stove and pours the cauliflower and water into the colander, then pours the drained cauliflower onto the plate.\", \"She took out pot\", \"She put water in pot\", \"She put pot on stove\", \"She turned on stove\", \"She put salt in pot\", \"She took out cauliflower\", \"She washed cauliflower\", \"She took out cutting board\", \"She took out knife\", \"She took out pot\", \"She put water in pot\", \"She put pot on stove\", \"She turned on stove\", \"She put salt in pot\", \"She took out cauliflower\", \"She washed cauliflower\", \"She took out cutting board\", \"She took out knife\", \"She took out pot\", \"She put water in pot\", \"She put pan on stove\", \"She put salt in pan\", \"She took out cauliflower\", \"She washed cauliflower\", \"She took out cutting board\", \"She took out knife\", \"She cut up cauliflower\", \"She gets a pot and fills it with water.\", \"She sets it on the stove and starts it heating.\", \"She salts the water.\", \"She gets the cauliflower and rinses it.\", \"She chops the cauliflower.\", \"She puts it in the pot.\", \"She cleans up while it is cooking.\", \"She gets a plate and colander.\", \"She strains the cauliflower and puts it on a plate.\", \"Woman removes pot and fills it with water and places it on heat.\", \"The woman adds salt to the water.\", \"Woman removes cauliflower and washes it.\", \"Woman slices and breaks up cauliflower.\", \"Woman places the cauliflower into the water.\", \"Woman cleans up.\", \"Woman waits for the water to boil and the cauliflower to cook.\", \"Woman gets plate and colander.\", \"Woman drains the water from the cauliflower and serves on plates.\", \"She took out pot\", \"She put water in pot\", \"She turned on stove\", \"She put salt in pot\", \"She took out caulifllower\", \"She washed cauliflower\", \"She took out cutting board\", \"She took out knife\", \"She cut up cauliflower\", \"She put cauliflower in pot\"], \"fps\": 29.4, \"num_frames\": 17114}, \"s29-d50.avi\": {\"timestamps\": [[224, 736], [793, 1198], [1242, 1541], [1586, 2549], [2550, 2582], [2631, 2726], [224, 335], [408, 736], [793, 1035], [1068, 1541], [1068, 1541], [1586, 2582], [1586, 2582], [2730, 2753], [224, 335], [408, 736], [408, 736], [793, 1035], [793, 1035], [1068, 1286], [1298, 1541], [1298, 1541], [1298, 1541], [1586, 2549], [2550, 2582], [2631, 2726], [2631, 2753], [224, 335], [408, 736], [793, 1035], [1068, 1198], [1242, 1541], [1242, 1541], [1586, 2549], [2550, 2726], [224, 736], [793, 1541], [1586, 2549], [2550, 2582], [2550, 2582], [2631, 2726], [224, 736], [793, 1035], [1068, 1198], [1242, 1541], [1242, 1541], [1586, 2549], [2730, 2753], [224, 736], [793, 1198], [1242, 2582], [1242, 2582], [2730, 2753], [224, 736], [224, 736], [793, 1035], [1068, 1198], [1242, 1286], [1298, 1541], [1298, 1541], [1586, 2549], [2550, 2582], [2631, 2726], [224, 335], [408, 736], [793, 1035], [1068, 1198], [1242, 1541], [1586, 2549], [2550, 2582], [2730, 2753], [224, 335], [408, 736], [793, 1198], [1242, 1541], [1586, 2549], [2550, 2582], [2631, 2726], [224, 335], [408, 736], [793, 1035], [1068, 1541], [2550, 2753], [224, 335], [408, 736], [793, 1035], [793, 1035], [1068, 1541], [1068, 1541], [1586, 2582], [2631, 2726], [224, 736], [793, 1198], [1242, 1541], [1586, 2582], [2631, 2726], [224, 335], [408, 736], [793, 1035], [793, 1035], [1068, 1541], [1068, 1541], [1586, 2549], [2550, 2582], [2631, 2726]], \"sentences\": [\"The person takes a measuring glass from the drawer and fills it with water.\", \"The person takes an egg from the fridge and dips it in the water.\", \"The person takes a pair of cups from the cupboard.\", \"The person cracks the egg on the rim of one glass and pours the egg white into it.\", \"The person dumps the yolk into the second glass.\", \"The person throws the shell into the wastebin.\", \"He took out cup\", \"He put water in cup\", \"He took out egg\", \"He took out two cups\", \"He cracked egg\", \"He drained white\", \"He put yolk in other cup\", \"He threw away shell\", \"The man walks to the counter.  He opens a drawer, removes a measuring cup and closes the drawer.\", \"He brings the measuring cup to the sink, turns on the water and fills the measuring cup.\", \"He turns off the water and sets the measuring cup on the counter.\", \"He goes to the fridge, opens the door and removes one egg from the fridge.  He closes the fridge.\", \"He brings the egg to the counter and places it in the measuring cup.\", \"He removes the egg, sets it on the counter and dries his hands.\", \"The man goes to the cupboard, opens the door and removes two small cups.  He closes the cupboard door.\", \"He sets the two cups on the counter.\", \"He picks up the egg, cracks it open on a cup.  Slowly breaks it apart.\", \"He removes the egg white from the egg into one cup by moving the yoke from shell half to shell half.\", \"He puts the yoke in the other small cup.\", \"He opens the garbage and discards the shell. Closes the garbage door.\", \"Straightens the two cups.\", \"The person takes a large measuring glass from the drawer.\", \"The person fills the measuring glass with water.\", \"The person takes an egg from the fridge.\", \"The person dips the egg in the water in the glass.\", \"The person takes a pair of cups from the cupboard.\", \"The person cracks the egg against the rim against one of the cups.\", \"The person drains the egg white into on cup and pours the egg yolk into the second.\", \"The person throws the egg shells into the wastebin.\", \"He puts water in a pyrex.\", \"He rinses the egg and gets two cups.\", \"He cracks the egg over one cup.\", \"He tosses the yolk between the halves of the egg until the whites have went into the cup.\", \"He puts the yolk in the other cup.\", \"He discards the shell.\", \"The person retrieves a clear glass measuring cup from the drawer and at the sink fills the measuring cup about 3/4 full with tap water.\", \"The person retrieves one brown egg from the refrigerator.\", \"The person sets the egg in the measuring cup of water letting it bounce once to the bottom of the measuring cup and removing the egg almost immediately.\", \"After setting the egg on the counter, the person turns and retrieves two cups from the cupboard behind him setting them on the counter as well.\", \"The person carefully cracks the egg on the rim of the first cup, separating the shell into two halves.\", \"The person slowly moves the egg yolk from shell half to shell half several times letting the white of the egg drain into the first cup.\", \"The person puts the egg yolk into the second cup and discards the egg shell halves in the garbage.\", \"Take out a measuring cup and fill it most of the way up with water.\", \"Take out an egg and drop it in the water to see if it floats, then take it out.\", \"Take out two teacups and crack the egg over one of them, holding the shell halves close together to allow the white to run in but keeping the yolk out.\", \"Then drop the separated yolk into the second teacup.\", \"Discard the empty eggshells.\", \"He opens the drawer, takes out a measuring cup and fills it with water.\", \"He places the measuring cup filled with water on the counter then walks to the fridge and opens it.\", \"He takes out an egg, then closes the fridge.\", \"He places the egg in the meauring cup filled with water, then takes the egg out of the measuring cup and places it on the counter.\", \"He walks over to a rag then dries his hands on it.\", \"He opens the cupboard and takes out two cups then closes the cupboard.\", \"He walks to the counter and places the two cups on the counter.\", \"He cracks open the egg on the edge of the cup, then seperates the egg yoke from the egg white.\", \"He places the egg yoke in the other cup.\", \"He takes the egg shells and throws them in the garbage.\", \"The person takes out a measuring glass from the drawer.\", \"The person fills the measuring glass with water from the faucet.\", \"The person procures an egg from the fridge.\", \"The person dips the egg in the water in the measuring glass.\", \"The person takes a pair of cups from the cupboard.\", \"The person cracks the egg on the rim of one cup and then drains the egg white into it.\", \"The person dumps the egg yolk into the second cup.\", \"The person throws the shells into the wastebin.\", \"He took out cup\", \"He put water in cup\", \"He took out egg\", \"He took out two cups\", \"He cracked egg\", \"He separated egg\", \"He threw out shell\", \"grabs a pitcher of a drawer\", \"fills the pitcher with hot water\", \"grabs an egg from the refrigerator and place it in the jar\", \"remove the egg from the water\", \"take two cups, egg shell breaks and separates content in the cups\", \"He took out bowl\", \"He put water in bowl\", \"He took out egg\", \"He dipped egg in water\", \"He took out two cups\", \"He cracked egg\", \"He separated egg\", \"He threw out shell\", \"The man takes out a measuring cup and fills it with water.\", \"He takes out an egg and rinses it in the measuring cup.\", \"He takes out two cups.\", \"He cracks the egg, placing the white in one cup and the yolk in the other.\", \"He disposes of the eggshell.\", \"He took out cup\", \"He put water in cup\", \"He took out egg\", \"He put egg in water\", \"He took out two cups\", \"He cracked egg\", \"He drained white into cup\", \"He put yolk in other cup\", \"He threw away egg shell\"], \"fps\": 29.4, \"num_frames\": 2831}, \"s31-d25.avi\": {\"timestamps\": [[219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1420], [1457, 1582], [1620, 2032], [2160, 2274], [2283, 2534], [219, 484], [528, 717], [777, 1006], [1006, 1389], [1389, 1582], [1620, 2032], [2160, 2256], [2257, 2534], [219, 484], [528, 717], [777, 871], [897, 1058], [1087, 1389], [1389, 2032], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1300], [1300, 2032], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 2032], [2160, 2534], [219, 484], [528, 717], [777, 1058], [1087, 1300], [1300, 1582], [1620, 1802], [1823, 1851], [1881, 2032], [2160, 2274], [2283, 2534], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1300], [1300, 2032], [2160, 2534], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1420], [1457, 2032], [2160, 2534], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1318], [1318, 2032], [2160, 2534], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1420], [2160, 2274], [2283, 2534], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1420], [1457, 1582], [1620, 2032], [2160, 2274], [2283, 2534], [219, 484], [528, 1058], [1087, 1420], [1457, 2032], [1457, 2534], [219, 484], [528, 717], [777, 871], [897, 1058], [1087, 1420], [1457, 1582], [1620, 2032], [2160, 2274], [2283, 2534], [219, 484], [528, 717], [777, 871], [897, 1058], [1087, 1420], [1457, 1582], [1620, 2032], [2160, 2274], [2283, 2534], [219, 484], [528, 717], [777, 871], [897, 1058], [1087, 1420], [1457, 2032], [2160, 2534], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1420], [1457, 1802], [1823, 1851], [1881, 2032], [2160, 2256], [2257, 2534], [219, 484], [528, 717], [777, 871], [897, 1006], [1006, 1802], [2160, 2534]], \"sentences\": [\"The person got the bread out of the fridge.\", \"The person got a plate out of the cabinet.\", \"The person got the cutting board out.\", \"The person got a knife out.\", \"The person washed his hands.\", \"The person took the bread out of the bag.\", \"The person cut two slices of bread.\", \"The person put the remaining bread back in the bag.\", \"The person dumped the crumbs into the trash.\", \"Open refrigerator and get bread.\", \"Get plate from cabinet.\", \"Retrieve cutting board and knife.\", \"Wash hands.\", \"Place bread on cutting board.\", \"Using the knife, cut two thin slices of bread from the loaf.\", \"Put remaining bread in bag.\", \"Clean crumbs from board.\", \"He took out bread\", \"He took out plate\", \"He took out cutting board\", \"He took out knife\", \"He washed hands\", \"He sliced bread\", \"He took out bread\", \"He took out plate\", \"He took out cutting board\", \"He took out knife\", \"He washed hands\", \"He sliced bread\", \"He gets a loaf.\", \"He gets a plate.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He slices the bread and puts it on a plate.\", \"He cleans up a bit.\", \"The man walks to the refrigerator and pulls out a bag of bread; he places it on the counter.\", \"He also goes to the cabinet, takes out a white plate, and places it on the counter.\", \"He takes out a cutting board and knife and places them on the counter.\", \"Next, he quickly rinses his hands in the sink and dries his hands.\", \"He pulls out the bread from the bag and places it on the cutting board.\", \"He takes the knife and slowly cuts a loaf of bread.\", \"He places the slice on the plate.\", \"He cuts another a slice of bread and places it on the plate.\", \"He puts the remaining portion of the bread in the bag.\", \"He takes the cutting board to the trash and cleans it.\", \"The person procures a loaf of bread from the fridge.\", \"The person procures a plate from the cabinet.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes his hands in the sink.\", \"The person uses the knife to slice two pieces of bread from the loaf and place them on the plate.\", \"The person throws the crumbs into the wastebin.\", \"The person procures a loaf of bread from the fridge.\", \"The person procures a plate from the cabinet.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes his hands in the sink.\", \"The person uses the knife to slice two pieces of bread from the loaf and set them on the plate.\", \"The person disposes of the crumbs on the cutting board into the trash.\", \"The person takes a loaf of bread from the fridge.\", \" The person procures a plate from the cabinet.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes his hands.\", \"The person uses the knife to slice two pieces of bread from the loaf and sets them on the plate.\", \"The person brushes the crumbs from the cutting board into the trash.\", \"The person procures a loaf of bread from the fridge.\", \"The person procures a plate from the cabinet.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes his hands.\", \"The person uses the knife pieces of bread, sets them on the plate, then wraps the rest of the loaf.\", \"The person brushes the crumbs from the cutting board into the trash.\", \"Get the bread out of the fridge.\", \"Get a plate.\", \"Get out a cutting board.\", \"Get out a knife.\", \"Wash and dry hands.\", \"Put the bread on the cutting board.\", \"Cut two slices of bread.\", \"Put unused bread back in the bag.\", \"Clean the cutting board.\", \"The man takes out the bread.\", \"The man takes out his supplies.\", \"The man washes her hands.\", \"The man slices the bread and places it onto the plate.\", \"The man then cleans up and places the bread back into the bag.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a plate.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person washes his hands.\", \"The person unwraps the bread.\", \"The person cuts off two slices of bread and puts them on the plate.\", \"The person wraps the rest of the bread back up.\", \"The person throws away the crumbs.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a plate.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person washes his hands.\", \"The person unwraps the bread.\", \"The person cuts off two slices of bread and puts them on the plate.\", \"The person puts the rest of the bread back in the plastic.\", \"The person throws away the crumbs.\", \"The person takes the bread out of the refrigerator.\", \"The person takes a plate out of the cupboard.\", \"The person takes a chopping board out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person washes his hands with water and dries them with a towel.\", \"The person cuts two slices from the loaf of bread.\", \"The person discards the bread crumbs left on the chopping board.\", \"Take out the uncut loaf of bread.\", \"Get a serving plate.\", \"Get out a cutting board.\", \"Get out a knife.\", \"Wash and dry your hands.\", \"Slice bread.\", \"Place sliced piece of bread on serving plate.\", \"Continue until you have the desired number of slices.\", \"Place unused portion of bread back in the bag.\", \"Clean crumbs from work area.\", \"The person takes out a loaf of bread.\", \"He takes out a plate.\", \"He takes out a cutting board.\", \"He takes out a knife.\", \"He cuts a slice from the loaf of bread.\", \"He cuts another slice from the bread and places them on the plate.\"], \"fps\": 29.4, \"num_frames\": 2634}, \"s30-d53.avi\": {\"timestamps\": [[195, 333], [345, 433], [471, 586], [588, 1475], [1520, 2370], [2409, 3922], [4006, 4355], [4416, 4979], [4979, 6461], [6504, 10674], [10723, 12153], [195, 333], [345, 433], [471, 586], [588, 1414], [1421, 2370], [2409, 3922], [4006, 4979], [4979, 11008], [12159, 13166], [195, 333], [345, 433], [471, 620], [634, 1191], [1215, 1475], [1520, 2370], [2409, 3922], [4006, 4125], [4139, 4758], [4779, 4940], [195, 433], [471, 899], [971, 2370], [2409, 3922], [4943, 4979], [4979, 10674], [11049, 13166], [195, 620], [634, 1475], [1520, 2370], [2409, 3922], [4006, 4979], [4979, 10674], [10723, 12153], [13247, 13331], [195, 433], [471, 586], [588, 1191], [1215, 1414], [1421, 3922], [4006, 11008], [12159, 13166], [195, 333], [345, 433], [471, 586], [588, 1191], [1215, 2370], [2409, 3922], [4006, 10674], [195, 433], [471, 899], [971, 1191], [1215, 1475], [1520, 2370], [2409, 3922], [4006, 4979], [4979, 10674], [13247, 13331], [195, 433], [471, 899], [971, 1191], [1215, 1475], [1520, 2370], [2409, 4170], [4006, 4979], [4979, 5498], [5570, 6461], [6504, 10674], [10723, 10981], [10984, 12153], [10723, 13331], [195, 586], [588, 1475], [1520, 3922], [4006, 4940], [4166, 6461], [10723, 12116], [13247, 13331], [195, 1191], [1215, 2370], [2409, 3922], [4943, 4979], [4979, 10674], [12122, 12285], [12294, 13166], [195, 433], [471, 1191], [1215, 1475], [1520, 2370], [2409, 3922], [4006, 4979], [4979, 10674], [6504, 13166], [195, 1475], [1520, 2516], [2543, 3922], [4006, 4979], [4979, 10674], [11049, 13331], [195, 433], [195, 433], [471, 620], [634, 1191], [1215, 1475], [1520, 2370], [2409, 2862], [195, 1475], [1520, 2370], [2877, 3922], [4006, 4263], [4006, 4979], [4979, 5595], [5612, 10674], [10723, 12116], [10723, 13166], [195, 899], [971, 1191], [1215, 1475], [1520, 2370], [2409, 3922], [4006, 4476], [4283, 7872], [7985, 10674], [10723, 11008], [10723, 13331], [195, 333], [345, 433], [471, 620], [634, 1191], [1215, 1475], [1520, 2370], [2409, 3922], [4006, 4170], [4166, 4721], [4529, 4979], [4979, 5114]], \"sentences\": [\"person gets out cutting board\", \"person gets out knife\", \"person gets out avocado\", \"person washes avocado\", \"person peels avocado\", \"person slice avocado\", \"person gets out salt and pepper\", \"person adds salt and pepper to avocado\", \"person gets out grater\", \"person grates avocado\", \"person mashes avocado with fork\", \"person gets cutting board\", \"person gets knife\", \"person gets avocado\", \"person washes avocado\", \"person peels avocado with knife\", \"person cuts avocado going around the pit\", \"person puts salt and pepper on avocado\", \"person uses grater to cut avocado\", \"person uses fork to mash avocado\", \"She took out cutting board\", \"She took out knife\", \"She took out avocado\", \"She took out plate\", \"She washed avocado\", \"She peeled avocado\", \"She cut up avocado\", \"She washed hands\", \"She added pepper\", \"She added salt\", \"She gets out a cutting board and a knife.\", \"She gets an avocado.\", \"She peels the avocado.\", \"She gets the good parts away from the pit.\", \"She seasons the avocado.\", \"She grates the avocado.\", \"She mashes the avocado and adds more salt.\", \"The woman takes an avocado out of the refrigerator.\", \"The woman rinses the avocado.\", \"The woman peels the avocado with a knife.\", \"The woman slices the flesh away from the pit.\", \"The woman seasons the avocado.\", \"The woman grates the avocado.\", \"She mixes the avocado with a fork.\", \"The woman seasons the avocado.\", \"Sh gets a cutting board and knife.\", \"She gets an avocado.\", \"She gets a plate.\", \"She rinses the avocado.\", \"She cuts the pit away.\", \"She grate the avocado and cleans the grater.\", \"She mashes the avocado with a fork.\", \"Takes out a cutting board.\", \"Takes out a knife.\", \"Takes an avocado out of the refrigerator.\", \"Takes a plate out of the cabinet.\", \"Peels the avocado.\", \"Slices up the avocado.\", \"Grates the avocado slices on the plate.\", \"She gets a cutting board and knife.\", \"She sets an avocado on the counter.\", \"She gets a plate.\", \"She rinses the avocado.\", \"She peels the avocado.\", \"She cuts the avocado from the pit.\", \"She seasons the avocado.\", \"She grates the avocado.\", \"She mashes and salts the avocado.\", \"She opens a drawer and takes out a cutting board and knife.\", \"She goes to the refrigerator and takes out an avocado and removes the sticker.\", \"She goes to the cupboard and takes out plate and places it on the counter.\", \"She washes the avocado in the sink.\", \"She cuts the peel off the avocado.\", \"She cuts the avocado into pieces and places it on the plate and then washes hands.\", \"She goes over to counter and gets spices and sprinkles them on top of avocado.\", \"She goes to drawer and takes out fork and tries to smash avocado.\", \"She opens the drawer and looks around for a grater.\", \"She grates the avocado.\", \"She go to the sink and  washes the grater and her hands.\", \"She takes the fork and mashes the avocado.\", \"She then adds more spices and blends together again.\", \"A woman walks in and takes out a cutting board and knife and sets it on the counter.\", \"She takes out an avocado and a plate and washes the avocado.\", \"She peels the avocado down to the seed.\", \"She washes her hands and seasons the avocado with salt and pepper.\", \"The woman grates the avocado.\", \"The takes a fork and mashes whats left of the avocado.\", \"She adds more salt, mashes some more and puts away the salt and pepper.\", \"The person retrieves needed utensils, equipment and the avocado.\", \"The person washes and peels the avocado.\", \"The person removes the avocado flesh from around the pit.\", \"The person seasons the avocado flesh.\", \"The person grates the avocado flesh.\", \"The person mashes the avocado flesh.\", \"The person mixes in more seasoning.\", \"She gets a cutting board and knife.\", \"She gets the avocado and a plate.\", \"She rinses the avocado.\", \"She peels the avocado.\", \"She cuts the good part from the pit.\", \"She seasons the avocado.\", \"She grate the avocado.\", \"She mashes and seasons the avocado.\", \"She takes out a cutting board, a knife, a plate, and an avocado which she washes.\", \"She cuts the skin off the avocado.\", \"She cuts the outside off the avocado.\", \"She washes her hands and puts salt and pepper on top.\", \"She uses a grinder and a knife to break the avocado up into small pieces.\", \"She washes her hands, mushes the avocados further with the fork, and beings to put things away such as the salt and pepper.\", \"She took out cutting board\", \"She took out knife\", \"She took out avocado\", \"She took out plate\", \"She washed avocado\", \"She peeled avocado\", \"She sliced avocado\", \"Gather plate, cutting board, knife and washed avocado\", \"Peel Avocado with knife.\", \"Cut avocado away from pit with knife.\", \"Wash Hands\", \"Salt and Pepper avocado\", \"attempted to mash with fork, failed.\", \"Grate Avocado with grater to smaller softer pieces\", \"Mash remaining pieces with fork.\", \"Add salt and mix with fork\", \"A woman enters the kitchen, removes a cutting board and knife from the drawer and an avocado from the refrigerator.\", \"She retrieves a plate from the cupboard and places everything on the counter.\", \"She washes the avocado.\", \"Using the knife, she peels the rind from the avocado.\", \"Using the knife, she carves all of the avocado from around the pit, allowing the avocado meat to fall onto the plate.\", \"She washes her hands.\", \"She lightly salts and peppers the avocado.\", \"She removes a cheese grater from the drawer and grates the avocado.\", \"She washes her hands.\", \"With a fork she mashes the avocado, adds a bit more salt and finishes mashing the avocado with the fork.\", \"She took out cutting board\", \"She took out knife\", \"She took out avoado\", \"She took out plate\", \"She washed avocado\", \"She peeled avocado\", \"She sliced avocado\", \"She washed hands\", \"She added pepper\", \"She added salt\", \"She took out fork\"], \"fps\": 29.4, \"num_frames\": 13363}, \"s28-d25.avi\": {\"timestamps\": [[230, 350], [350, 527], [527, 947], [978, 1537], [1575, 1882], [1884, 2134], [2138, 2702], [2749, 3155], [230, 350], [350, 527], [527, 874], [911, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2546], [2546, 2702], [2749, 2994], [3029, 3155], [230, 350], [350, 527], [527, 874], [911, 947], [978, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2546], [2546, 2702], [2749, 2994], [3029, 3155], [230, 350], [350, 560], [582, 874], [911, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2546], [2546, 2702], [2749, 2994], [3029, 3155], [230, 350], [350, 560], [582, 947], [582, 947], [978, 1882], [1884, 2245], [2389, 3155], [230, 350], [350, 527], [527, 874], [911, 1537], [1575, 1882], [1884, 2245], [2389, 3155], [230, 350], [350, 527], [527, 874], [911, 947], [978, 1537], [1575, 1882], [1884, 2245], [2389, 3155], [230, 350], [350, 560], [582, 874], [911, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2610], [2616, 2702], [2749, 3155], [230, 350], [350, 527], [527, 874], [911, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2702], [2749, 3155], [2749, 3155], [230, 350], [350, 527], [527, 874], [911, 1537], [1575, 1882], [1884, 2245], [2389, 2702], [2749, 2994], [3029, 3155], [230, 350], [350, 560], [582, 874], [911, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2702], [2749, 3155], [230, 350], [350, 527], [527, 874], [911, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2610], [2616, 2702], [2749, 3155], [230, 350], [350, 527], [527, 874], [911, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2702], [2749, 2994], [230, 377], [377, 527], [527, 874], [911, 947], [911, 947], [978, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2702], [3029, 3155], [230, 560], [582, 947], [978, 1537], [1575, 1882], [1884, 2245], [2389, 2702], [2749, 3155], [2749, 3155], [230, 350], [350, 560], [582, 947], [978, 1537], [1575, 1882], [1884, 2134], [2138, 2245], [2389, 2702], [2749, 2994], [2749, 3155], [230, 350], [350, 560], [582, 874], [911, 1537], [1575, 1882], [1884, 2134], [2138, 2245]], \"sentences\": [\"He took out cutting board\", \"He took out knife\", \"He took out bread\", \"He cut bread\", \"He put bread away\", \"He took out plate\", \"He put away knife\", \"He put away cutting board\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a loaf of bread from the fridge.\", \"The person uses the knife to cut two slices of bread from the loaf.\", \"The person returns the rest of the loaf of bread to the fridge.\", \"The person procures a plate from the cabinet.\", \"The person sets the slices of bread on the plate.\", \"The person washes the knife in the sink.\", \"The person returns the knife to the drawer.\", \"The person scoops the crumbs onto the cutting board and sweeps them into the trash.\", \"The person returns the cutting board to the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes out a loaf of bread from the fridge.\", \"The person sets the loaf on the cutting board.\", \"The person cuts two slices of bread from the load with the knife.\", \"The person returns the rest of the loaf to the fridge.\", \"The person procures a plate from the cabinet.\", \"The person puts the slices of bread onto the plate.\", \"The person washes the knife in the sink.\", \"The person returns the knife to the drawer.\", \"The person sweeps the crumbs onto the cutting board and then into the wastebin.\", \"The person returns the cutting board to the drawer.\", \"The person takes out a cutting board.\", \" The person takes out a knife from the drawer.\", \"The person procures a loaf of bread from the fridge.\", \"The person uses the knife to cut two slices of bread on the cutting board.\", \"The person returns the bread to the fridge.\", \"The person procures a plate from the cabinet.\", \"The person sets the slices of bread on the plate.\", \"The person washes the knife in the sink.\", \"The person returns the knife to the drawer.\", \"The person scoops crumbs onto the cutting board and disposes of them in the trash.\", \"The person returns the cutting board to the drawer.\", \"He gets a cutting board.\", \"He gets out a knife.\", \"He gets the bread.\", \"He cuts a slice.\", \"He puts the bread away.\", \"He puts the bread on a plate.\", \"He cleans up.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets a loaf of bread.\", \"He cuts two slices off the loaf.\", \"He puts the loaf away.\", \"He gets a plate and puts the bread slices on it.\", \"He cleans up.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets a loaf of bread.\", \"He puts the bread on the cutting board.\", \"He cuts off two slices.\", \"He puts the loaf away.\", \"He gets a plate and puts the bread on it.\", \" He cleans up.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a loaf of bread from the fridge.\", \"The person uses the knife to slice two piece of bread from the loaf.\", \"The person returns the rest of the loaf of bread to the fridge.\", \"The person procures a plate from the cabinet.\", \"The person sets the slices of bread on the plate.\", \"The person washes the knife in the sink.\", \"The person returns the knife to the drawer.\", \"The person scoops crumbs onto the cutting board, dumps them in the wastebin, and returns the cutting board to the drawer.\", \"The person removes a cutting board.\", \"The person selects a knife.\", \"Bread is removed from the refrigerator.\", \"Two slices are cut from the loaf.\", \"The loaf is wrapped and placed in the refrigerator.\", \"A plate is removed from a cabinet.\", \"The slices are placed on the plate.\", \"The knife is washed, dried and put away.\", \"The cutting board is cleaned and put away.\", \"The bread is prepared.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a loaf of bread from the fridge.\", \"The person uses the knife to slice two pieces of bread from the loaf.\", \"The person returns the rest of the loaf of bread to the fridge.\", \"The person procures a plate from the cabinet and sets both slices of bread on the plate.\", \"The person washes the knife in the sink and returns it to the drawer.\", \"The person scoops crumbs onto the cutting board and disposes them into the trash.\", \"The person returns the cutting board to the drawer.\", \"She took out cutting board\", \"She took out knife\", \"She took out bread\", \"She cut bread\", \"She put away bread\", \"She took out plate\", \"She put bread on plate\", \"She cleaned knife\", \"She put away cutting board\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a loaf of bread from the fridge.\", \"The person uses the knife to slice two piece of bread from the loaf.\", \"The person returns the rest of the loaf of bread to the fridge.\", \"The person procures a plate from the cabinet.\", \"The person sets the slices of bread on the plate.\", \"The person washes the knife in the sink.\", \"The person returns the knife to the drawer.\", \"The person scoops crumbs onto the cutting board, dumps them in the wastebin, and returns the cutting board to the drawer.\", \"He gets a cutting board out of the cupboard.\", \"He gets a knife out of the drawer.\", \"He gets the loaf of bread out of the refrigerator.\", \"He slices the bread.\", \"He puts the remaining part of the loaf back in the fridge.\", \"He gets a plate out of the cupboard.\", \"He puts the slices of bread on the plate.\", \"He puts the knife back in the drawer.\", \"He puts the cutting board back in the cupboard.\", \"The man places a cutting board on the counter\", \"The man removes a large knife from the drawer and places it on the cutting board\", \"The man removes a loaf of bread from the refrigerator\", \"The man removes the bread from its wrapper and places it on the cutting board\", \"The man cuts a slice of bread with the knife\", \"The man cuts another slice of bread\", \"The man places the loaf of bread back in the refrigerator\", \"The man gets a plate from the cabinet\", \"The man places the bread on the plate\", \"The man washes the knife and places it back in the drawer\", \"The man cleans off the cutting board and places it back in the drawer\", \"The person takes out a cutting board and knife and places them on the counter.\", \"The person takes the bread out of the refrigerator and removes it from the packaging.\", \"The person takes the knife and slices the load of bread twice, making 2 slices.\", \"The person repackages the remaining unsliced bread and places it back in the refrigerator.\", \"The person takes a plate from a cabinet and places the 2 slices of bread on it.\", \"The person wipes off, rinses and dries the knife and then puts it back in the drawer.\", \"The person takes the cutting board and dusts the crumbs into the garbage and places the cutting board back in the drawer.\", \"The task is complete and there are 2 slices of bread on the plate on the counter.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a loaf of bread.\", \"The person cuts off two slices of bread.\", \"The person puts away the loaf of bread.\", \"The person gets out a plate.\", \"The person puts the slices of bread on the plate.\", \"The person washes and puts away the knife.\", \"The person throws away the bread crumbs.\", \"The person puts away the cutting board.\", \"He took out cutting board\", \"He took out knife\", \"He took out bread\", \"He sliced bread\", \"He put back unused bread\", \"He took out plate\", \"He put bread on plate\"], \"fps\": 29.4, \"num_frames\": 3204}, \"s30-d43.avi\": {\"timestamps\": [[190, 17211], [190, 17211], [190, 17211], [190, 17211], [190, 17211], [190, 17211], [190, 17211], [190, 17211], [190, 17211], [190, 17211], [17287, 19009], [19255, 19622], [190, 539], [581, 882], [921, 1681], [1697, 3680], [3792, 3931], [3955, 4761], [4892, 6018], [6067, 6660], [6799, 7727], [7732, 9574], [9620, 14529], [14627, 14789], [14878, 17211], [17287, 19009], [19642, 19667], [190, 539], [581, 1092], [1121, 1799], [1813, 3680], [3792, 4205], [4244, 4761], [4892, 6018], [6067, 6660], [6799, 7690], [7701, 9574], [9620, 14529], [14627, 19009], [19667, 19756], [190, 539], [581, 1681], [1697, 3680], [3792, 4624], [4656, 6018], [6067, 7727], [7732, 19009], [19255, 19326], [19255, 19667], [190, 539], [581, 882], [921, 1092], [1121, 1681], [1697, 1799], [1813, 3680], [3792, 3871], [3877, 4205], [4244, 4557], [4569, 6018], [6067, 6370], [190, 539], [581, 882], [921, 1092], [1121, 1681], [1697, 1799], [1813, 3680], [3792, 3931], [3955, 4624], [4656, 6018], [6067, 6370], [6427, 6573], [6604, 9254], [9265, 9574], [9620, 14789], [19407, 19667], [190, 539], [581, 1092], [1121, 1615], [1619, 3680], [3792, 3931], [3955, 4761], [4892, 6370], [6427, 7727], [7732, 19009], [19255, 19326], [14878, 19667], [190, 882], [921, 1799], [1813, 4624], [4656, 6018], [6427, 7727], [7732, 9574], [9620, 14789], [14878, 17689], [19407, 19667], [190, 618], [670, 1092], [1121, 1681], [1697, 3680], [3792, 3931], [3955, 4761], [4892, 6018], [6067, 6573], [6604, 9254], [9265, 14529], [14627, 17211], [17287, 19009], [19255, 19756], [190, 539], [581, 882], [921, 1092], [1121, 1615], [1619, 1799], [1813, 3680], [3792, 3871], [3877, 4205], [4244, 4557], [4569, 4761], [4892, 6018], [6067, 6370], [6067, 6528], [6520, 6660], [6799, 7166], [190, 539], [581, 1681], [1697, 3680], [3792, 3871], [3877, 4557], [4569, 6018], [6067, 6370], [7189, 7727], [7732, 19009], [19255, 19326], [19255, 19667], [190, 539], [190, 539], [581, 882], [921, 1092], [1121, 1681], [1697, 1799], [1813, 2694], [2748, 3680], [3792, 3871], [190, 539], [581, 882], [921, 1681], [1697, 3680], [3877, 4205], [4244, 4557], [4569, 6018], [6427, 7727], [7732, 9574], [9620, 14789], [14878, 19009], [19255, 19326], [190, 738], [751, 882], [921, 1092], [1121, 1681], [1697, 1799], [1813, 3680], [3792, 3931], [3955, 4205], [4244, 4557], [190, 539], [581, 882], [921, 1092], [1121, 1681], [1697, 1799], [1813, 3680], [3792, 3871], [4569, 4624], [4656, 6018], [6067, 6370], [6427, 7727], [7732, 9574], [9620, 14789], [14878, 19009], [19407, 19667], [190, 1092], [1121, 1681], [1697, 3680], [3792, 4761], [4892, 6018], [6067, 6370], [6067, 7727], [7732, 17211], [17287, 19009], [19255, 19326], [19667, 19756]], \"sentences\": [\"The woman stirs and flips the slices to brown them evenly on both sides.\", \"The woman adds the potato slices to the pan, and spreads them out evenly with a spatula.\", \"The woman thinly slices the potatoes.\", \"The woman cleans her station by throwing away the potato peels and washing the peeler.\", \"The woman rinses the peeled potatoes.\", \"The woman preheats the pan and adds enough oil to coat the bottom of the pan.\", \"The woman washes the potatoes in the sink.\", \"The woman peels the potatoes.\", \"The woman sets up her station by getting a large fry pan and a cutting board.\", \"The woman grabs potatoes and cooking oil from the cupboard.\", \"The woman removes the potato slices from the pan, draining the oil, and putting them on a plate.\", \"The woman serves the fried potatoes with some ketchup and pepper.\", \"Potatoes and oil are removed from a cabinet.\", \"A frying pan is selected and placed on the stove.\", \"A cutting board is placed on the counter and the potatoes are washed.\", \"The person selects a peeler and the potatoes are peeled.\", \"The potatoes are rinsed and placed on the cutting board.\", \"The stove is turned on and oil is added to the pan.\", \"A knife is picked up and the potatoes are sliced.\", \"The peels are discarded and the peeler is washed.\", \"A spatula is removed and the potato slices are placed in the pan.\", \"A plate is removed for serving.\", \"The potato slices are turned over in the pan.\", \"Ketchup is removed from the refrigerator.\", \"The potatoes are cooked.\", \"The cooked potatoes are placed on the plate.\", \"Ketchup is squeezed on the plate and the potatoes are salted.\", \"Woman get out oil and two potatoes.\", \"Woman takes out pan and cutting board.\", \"She rinses the potatoes.\", \"The woman peels the potaoes.\", \"She turns on the heat for the pan.\", \"The woman adds oil to the pan.\", \"The woman slices the potatoes.\", \"She cleans up while waiting for the pan to get hot.\", \"The woman places the potato pieces into the pan.\", \"The woman separates and turns the potatoes in the pan.\", \"She flips the potatoes.\", \"The woman removes the potatoes from the pan.\", \"She adds seasons for serving.\", \"She gets potatoes and oil.\", \"She rinses the potatoes.\", \"She peels the potatoes.\", \"She heats the pan and adds oil.\", \"She chops the potatoes.\", \"She adds them to the pan.\", \"She finishes cooking and puts the potatoes on a plate.\", \"She puts ketchup on the plate.\", \"She salts the potatoes.\", \"She took out potatoes and oil\", \"She took out pan\", \"She took out cutting board\", \"She washed potatoes\", \"She took out peeler\", \"She peeled potatoes\", \"She washed potatoes\", \"She turned on stove\", \"She put oil in pan\", \"She sliced potatoes\", \"She threw out scraps\", \"The person takes a pair of potatoes and a bottle of oil from the pantry.\", \"The person takes out a pan from the drawer and places it on the stove.\", \"The person takes a cutting board from off screen.\", \"The person washes the potatoes in the sink.\", \"The person takes out a peeler from the drawer.\", \"The person peels the potatoes.\", \"The person washes the potatoes in the sink.\", \"The person turns the stove on and adds oil to the pan.\", \"The person takes a knife from the sink and chops the potatoes.\", \"The person throws the peels into the wastebin.\", \"The person washes the peeler in the sink.\", \"The person takes out a spatula from the drawer, scoops the chopped potatoes into the pan, then stirs them with the spatula.\", \"The person procures a plate from the cabinet.\", \"The person stirs the frying potatoes with the spatula, then takes a bottle of ketchup from the fridge.\", \"The person scoops the fried potatoes from the pan to the plate and adds ketchup and salt.\", \"She gets oil and potatoes.\", \"She gets a pan and a cutting board.\", \"She rinses the potatoes.\", \"She peels the potatoes.\", \"She rinses them again.\", \"She adds oil to the pan and turns the stove on.\", \"She cuts the potatoes and discards the peels.\", \"She puts the potatoes in the pan.\", \"She puts the potatoes on the plate.\", \"She puts ketchup on the plate.\", \"She salts the potatoes.\", \"Lady enters the kitchen and goes into the cupboard, she pulls out potatoes and some sauce. She the pulls out a frying pan and places it onto the stove.\", \"She then pulls out a cutting board and places it on the counter. She then thoroughly washes both potatoes in the sink. She then pulls out a potato peeler and starts to take the skin off of the potatoes.\", \"After peeling each potato fully, she then turns on the stove and pours a decent amount of sauce into the pan.\", \"While the pan simmers she cuts each potato up into slices and gathers up the peels.\", \"After throwing away the peels and checking that the pan was warmed up, she takes and puts the potatoes that she cut up into the pan to cook.\", \"As the potatoes cook, she sits there and stirs them constantly so that one side does not cook faster than the other.\", \"After stirring the potatoes for a few minutes, she goes and gets ketchup from the fridge.\", \"When the potatoes are cooked, she takes the pot off of the oven and starts to scoop out the cooked potatoes, making sure not to scoop out any of the sauce she cooked it in.\", \"After she was done scooping out the potatoes, she added some salt and Ketchup.\", \"She goes to cupboard and gets out potatoes and oil.\", \"She goes to the drawer and takes out a fry pan and then reaches for a cutting board.\", \"She goes to the sink and washes the potatoes.\", \"She goes to the drawer and takes out a peeler and starts peeling the potatoes.\", \"She then rinses the potatoes in the sink.\", \"She then turns on the stove and adds oil to the pan.\", \"She picks up a knife and begins slicing the potatoes.\", \"She picks up the rinds and throws them away and rinses the peeler.\", \"She opens the drawer and gets out a spatula and adds potatoes to the pan and then stirs.\", \"She goes to the cupboard and takes out a plate and then re-stirs the potatoes.\", \"She goes to the refrigerator and takes out some ketchup and then re-stirs the potatoes.\", \"She takes the potatoes out of the pan and places them on the plate.\", \"She take some ketchup and squirts it on the plate and then adds some salt.\", \"She took out potato and oil\", \"She took out pan\", \"She took out cutting board\", \"She washed potatoes\", \"She took out peeler\", \"She peeled potatoes\", \"She washed potatoes\", \"She turned on stove\", \"She added oil to pan\", \"She took out knife\", \"She sliced potatoes\", \"She threw away potato scraps\", \"She washed peeler\", \"She checked the heat\", \"She took out spoon\", \"She gets oil and potatoes.\", \"She washes the potatoes.\", \"She peels the potatoes.\", \"She rinses them again.\", \"She turns on the stove and adds oil to the pan.\", \"She chops the potatoes.\", \"She discards the peels.\", \"She adds the potatoes to the oil.\", \"She finishes cooking and puts the potatoes on a plate.\", \"She puts ketchup on a plate.\", \"She seasons the potatoes.\", \"She took out oil\", \"She took out potato\", \"She took out pan\", \"She took out cutting board\", \"She washed potato\", \"She took out peeler\", \"She peeled potato\", \"She peeled second potato\", \"She washed potatoes\", \"She gets some potatoes and some oil out of the cupboard.\", \"She get a frying pan out of the cupboard.\", \"She rinses the potatoes.\", \"She gets a peeler out and peels the potatoes.\", \" She turns on the stovetop.\", \"She pours some oil in the frying pan.\", \"She chops up the potatoes.\", \"She puts the potatoes in the frying pan.\", \"She gets a plate out of the cupboard.\", \"She gets a bottle of ketchup out of the fridge.\", \"She takes the potatoes out of the frying pan and puts them on the plate.\", \"She puts some ketchup on the side for the potatoes.\", \"She took out oil and potatoes\", \"She took out pan\", \"She took out cutting board\", \"She washed potatoes\", \"She took out peeler\", \"She peeled potatoes\", \"She washed potatoes\", \"She turned on stove\", \"She put oil in pan\", \"The person takes a bottle of oil and two small potatoes from the pantry.\", \"The person takes a pan from a drawer and places it on the stove.\", \"The person takes a cutting board from the countertop.\", \"The person rinses the potatoes in the sink.\", \"The person takes out a peeler.\", \"The person skins the potatoes with the peeler.\", \"The person rinses the skinned potatoes under the faucet.\", \"The person turns on the stove and pours oil into the pan.\", \"The person takes a knife from the sink and cuts up the potatoes on the cutting board.\", \"The person gathers the skins from the counter and throws them into the rubbish bin.\", \"The person takes a plastic spatula from the drawer and puts the potato slices into the frying pan.\", \"The person takes a plate from the cupboard.\", \"The person gets some ketchup from the fridge.\", \"The person carefully removes the fried potatoes from the pan onto the plate using the spatula.\", \"The person squirts a daub of ketchup onto the plate and then adds several sprinklings of salt.\", \"She gets the required items.\", \"She washes the potatoes.\", \"She peels the potatoes.\", \"She adds oil to the pan.\", \"She chops the potatoes.\", \"She discards the skins.\", \"She adds the potatoes to the pan.\", \"She cooks the potatoes.\", \"She adds the potatoes to the plate.\", \"She puts ketchup on the plate.\", \"She salts the potatoes.\"], \"fps\": 29.4, \"num_frames\": 19791}, \"s30-d29.avi\": {\"timestamps\": [[194, 353], [393, 631], [640, 1376], [640, 1376], [1457, 1620], [1625, 1735], [1776, 2484], [2531, 2669], [2765, 3223], [3266, 3752], [3805, 4056], [4072, 4886], [4952, 5458], [5632, 6066], [194, 353], [393, 1376], [1457, 1620], [1625, 1735], [1776, 2669], [2765, 3752], [3805, 5237], [5287, 5739], [5788, 5969], [194, 353], [393, 895], [947, 1376], [1457, 1620], [1625, 1735], [1776, 2669], [2765, 3223], [3266, 3752], [3805, 5237], [5287, 5739], [194, 353], [393, 895], [947, 1376], [1457, 1620], [1625, 1735], [1776, 2484], [2531, 2669], [2765, 3223], [3266, 3681], [3713, 4056], [4072, 4886], [4952, 5458], [5632, 5739], [5788, 5969], [194, 5237], [194, 5237], [194, 5237], [194, 5237], [194, 5237], [194, 5237], [194, 5237], [194, 5237], [5287, 5739], [5788, 5969], [194, 353], [393, 1376], [1457, 1620], [1625, 2669], [2765, 3681], [3713, 5237], [5986, 6066], [194, 353], [393, 895], [947, 1376], [1457, 1620], [1625, 1735], [1776, 2484], [2531, 2669], [2765, 3223], [3266, 3752], [3805, 4886], [4952, 5458], [5632, 5739], [5287, 5969], [194, 353], [393, 1317], [1320, 2484], [2531, 2669], [2765, 3681], [3713, 4799], [4805, 5237], [5986, 6066], [194, 353], [393, 579], [583, 1317], [1320, 1885], [1895, 2484], [2531, 2669], [2765, 3223], [3266, 3752], [3805, 4886], [4952, 5334], [5986, 6066], [194, 353], [393, 895], [947, 1376], [1457, 1620], [1625, 1735], [1776, 2484], [2531, 2669], [2765, 3223], [3266, 3681], [3713, 4886], [4952, 5237], [5287, 5739], [5340, 5969], [194, 353], [393, 631], [640, 1376], [1457, 1620], [1625, 1885], [1895, 2484], [2531, 2669], [2765, 3223], [3266, 3681], [3713, 4056], [4072, 4886], [4952, 5409], [5788, 5969], [194, 353], [194, 353], [393, 579], [583, 895], [947, 1885], [1895, 2669], [2765, 3223], [3266, 4056], [3266, 4056], [4072, 4886], [5418, 5969], [194, 353], [393, 895], [947, 1317], [1320, 1620], [1625, 1735], [1776, 2484], [2531, 2669], [2531, 2669], [2765, 3223], [3266, 3752], [3805, 4056], [4072, 4886], [4952, 5458], [5632, 5739], [4952, 5969], [194, 353], [393, 895], [947, 1376], [947, 1376], [1457, 1620], [1625, 1735], [1776, 2484], [2531, 2669], [2765, 3223], [3266, 3681], [3713, 4886], [4952, 5237], [5287, 5739], [194, 353], [393, 895], [947, 1376], [1457, 2484], [2531, 2669], [2765, 3752], [3805, 4886], [4952, 5334], [5788, 6066], [194, 353], [393, 895], [947, 1376], [1457, 1735], [1776, 2484], [2531, 3752], [3805, 4056], [4072, 4886], [4952, 5458], [5986, 6066], [194, 895], [947, 1885], [1895, 2484], [2531, 3681], [3713, 3752], [3805, 5334], [194, 631], [640, 1376], [1457, 1885], [1895, 2669], [2765, 3752], [5788, 6066]], \"sentences\": [\"The person got out a cutting board.\", \"The person got the herbs out of the fridge.\", \"The person rinsed the herbs.\", \"The person put the herbs on the cutting board.\", \"The person got out a plate.\", \"The person got out a knife.\", \"The person cut the greens off the stem.\", \"The person put the herbs on the plate.\", \"The person grabbed herbs from the counter top.\", \"The person rinsed those herbs.\", \"The person folded the herbs together.\", \"The person diced those herbs.\", \"The person put the herbs on the plate with the others.\", \"The person cleaned up.\", \"The person gets out a cutting board.\", \"The person gets out some herbs and rinses them.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person chops up the herbs and puts them on the plate.\", \"The person gets out some different herbs and rinses them.\", \"The person chops up the new herbs and puts them on the plate.\", \"The person throws away the trash.\", \"The person puts away some herbs she didn't use.\", \"The person gets out a cutting board.\", \"The person gets out some herbs.\", \"The person rinses the herbs.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person chops up the herbs and puts them on the plate.\", \"The person picks some of a different type of herb off-camera.\", \"The person rinses these herbs.\", \"The person chops these herbs and adds them to the plate.\", \"The person throws away the trash.\", \"The woman removes a cutting board from the drawer and places it on the counter.\", \"She removes herbs from the refrigerator.\", \"She rinses the herbs in water.\", \"She gets a plate from the cabinet and places it on the counter.\", \"She removes a knife from the drawer.\", \"She finely cuts all of the herbs leaves off of the stems.\", \"She places the cut herbs onto the plate.\", \"She retrieves other herbs from the other counter.\", \"She rinses the new herbs in the sink.\", \"She fold the herbs into thirds and places them on the cutting board.\", \"She finely cuts all of the new herbs.\", \"She places the newly cut herbs onto the same plate as the other herbs, keeping them separate.\", \"She places the stems into the recycling bin.\", \"She returns the unused herbs to the refrigerator.\", \"She then lifts the cutting board and uses the knife to swipe the herb onto the awaiting plate.\", \"She carefully places it on the cutting board, gathers it into a nice pile, then uses the knife to dice it.\", \"She retrieves another piece of herb and carefully rinses it under the sink.\", \"She places the fresh diced herb from the cutting board onto the waiting plate.\", \"She carefully lays the herb on its side, then uses the knife and finally dices the top of the herb off of the stem.\", \"She retrieves a plate from the cabinet and a knife from the drawer to begin to prepare the herbs.\", \"She gets some herbs from the refrigerator and carefully washes them in the sink before placing on cutting board.\", \"The woman enters the kitchen and retrieves a cutting board from the drawer.\", \"She discards of any scraps.\", \"She puts the extra herbs that she removed from the refrigerator earlier back into the refrigerator.\", \"She gets a cutting board.\", \"She gets herbs and rinses them.\", \"She gets a plate.\", \"She chops the herbs and puts them on a plate.\", \"She gets more herbs and rinses them.\", \"She chops those herbs and puts them on the plate.\", \"She cleans up.\", \"The woman removes a cutting board from the drawer and places it on the counter.\", \"She removes the herbs from the refrigerator.\", \"She rinses the herbs in the sink and places them on the cutting board.\", \"She gets a plate from the cabinet and places it on the counter.\", \"She gets a knife from the drawer.\", \"She slices the herb leaves from the stems.\", \"She places the herbs onto the plate.\", \"She retrieves more herbs from the counter.\", \"She rinses the herbs in the sink and places them on the cutting board.\", \"She folds the herbs into thirds and cuts them up with the knife.\", \"She places the cut herbs onto the plate.\", \"She places the herb stems into the recycling bin.\", \"She places the leftover herbs back in the refrigerator.\", \"She gets a cutting board.\", \"She gets some herbs and washes them.\", \"She cuts the herbs from the stem.\", \"She puts the herbs on the plate.\", \"She collects some more herbs and washes them.\", \"She chops those herbs.\", \"She puts those herbs on the plate.\", \"She cleans up.\", \"Get out cutting board\", \"Get first Herb out\", \"Wash first herb thoroughly\", \"Get out plate and Knife\", \"Chop first herb and discard the stem\", \"plate the first herb\", \"Get second herb out\", \"Wash second herb\", \"Chop second herb\", \"Plate second herb\", \"Discard of unused parts like the stems\", \"The person gets out a cutting board.\", \"The person gets out some herbs.\", \"The person rinses the herbs.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person chops the herbs.\", \"The person puts the herbs on the plate.\", \"The person gets out a different kind of herbs.\", \"The person rinses the new herbs.\", \"The person chops up the new herbs.\", \"The person puts the new herbs on the plate in a separate pile.\", \"The person throws away the trash.\", \"The person puts away the herbs she didn't use.\", \"The person removes the cutting board from the drawer.\", \"The person removes a package of fresh herbs from the fridge.\", \"The person removes some of the herbs from the package and rinses them thoroughly in the sink.\", \"The person places the herbs on the cutting board and gets a plate from the cabinet.\", \"The person takes out a knife from the drawer and lines up the tops of the fresh herbs.\", \"Holding the tops of the herbs in place the person slices the herbs up to the stem.\", \"The person places the freshly cut herbs on the plate.\", \"The person gets another long and thin type of herb from the counter.\", \"The person rinses the new herb in the sink.\", \"The person places the herb on the cutting board and folds it in half.\", \"Holding the folded herb firmly the person slices the herb into little pieces.\", \"The person places the freshly cut herbs on the plate.\", \"The person discards the waste and puts the remaining herbs in the fridge.\", \"Lady enters room and opens a drawer.\", \"Lady pulls out cutting board.\", \"Lady pulls out herbs of fridge.\", \"Lady washes herbs.\", \"Lady cuts herbs.\", \"Lady puts herbs onto plate.\", \"Lady gets more herbs and rinses them.\", \"Lady folds herbs.\", \"Lady cuts second herb.\", \"Woman puts herbs on plate.\", \"Lady cleans up.\", \"The person gets a cutting board out of the drawer and sets it on the counter.\", \"The person goes to the refrigerator, gets some herbs out, sets them on the counter and then pulls a small section of herbs out to be used.\", \"The person takes the herbs over the the sink, rinses them off thoroughly under running water and squeezes and shakes them to remove excess water.\", \"The person went to the cabinet, got a plate and placed it on the counter.\", \"The person got a knife from the drawer.\", \"The person lined the herbs up then began cutting them with the knife in a short sawing motion being careful to not cut any of the stem.\", \"The person lifted up the cutting board and, using the knife, scraped the cut herbs onto the plate.\", \"The person set the cutting board back on the counter and placed the knife on top of it.\", \"The person walked over to another part of the kitchen and selected some different herbs.\", \"The person took the herbs to the sink and rinsed them under running water.\", \"The person took the herbs over to the cutting board and folded the herbs into a uniform pile.\", \"The person cut the herbs using a short cutting motion.\", \"The person lifted up the cutting board and, using the knife, scraped the herbs onto the plate being careful to not mix the two herbs.\", \"The person threw away the stems and other remnants into the trash.\", \"The person replaced the remaining uncut herbs she had gotten from the refrigerator back into their spot.\", \"The person gets out a cutting board.\", \"The person gets out some herbs.\", \"The person rinses the herbs.\", \"The person puts the herbs on the cutting board.\", \"The person gets out a plate.\", \"The person gets out a knife.\", \"The person chops up the herb except for the stem.\", \"The person scrapes the herb onto the plate.\", \"The person gets out more herbs.\", \"The person rinses the herbs.\", \"The person chops up the second batch of herbs.\", \"The person scrapes the second herb onto the plate, separate from the first.\", \"The person throws away the stem from the first herb.\", \"Get out cutting board.\", \"Take herbs out of fridge.\", \"Wash herbs thoroughly.\", \"Place herbs on cutting board and finely slice leafs and remove stems.\", \"Place cut herbs in dish.\", \"Wash different type of herbs.\", \"Finely slice herbs on cutting board.\", \"Place on dish with other herbs.\", \"Clean your work station.\", \"The woman takes a cutting board from the drawer.\", \"She retrieves and unbundles the herbs from the fridge before selecting a small amount to wash in the sink.\", \"She washes the herbs and places them on the cuttingboard.\", \"She retrieves a plate from the cabinet and a knife from the drawer.\", \"The woman separates the herbs from the stem and distributes them to the plate.\", \"She retrieves and washes herb stems in the sink before placing them on the cuttingboard.\", \"She folds the herbs together in a small bundle\", \"She chops them up into much smaller pieces.\", \"She distributes the chopped herb stems to the plate.\", \"She discards the extra stems and begins to put all of the materials away.\", \"Girl gets cilantro form th fridge and washes it.\", \"Girl gets a knife an cuts the cilantro in pieces.\", \"She transfers the cilantro to a bowl.\", \"Girl gets chives from fridge and washes them in sink.\", \"Girl cuts them into pieces.\", \"She places the chives in the same bowl.\", \"Take out a cutting board and the fresh herbs.\", \"Select some herbs to cut, wash them in the sink, and squeeze out any extra water.\", \"Take out a plate to put the cut herbs on and a knife to cut the herbs with.\", \"Slice the herbs into fine pieces with the knife setting aside any thick stems.\", \"Select more herbs to cut, wash them in the sink, and squeeze out any extra water.\", \"Slice the herbs into fine pieces with the knife and place the cut herbs on the plate, throw away any unwanted stems and put away the herbs.\"], \"fps\": 29.4, \"num_frames\": 6099}}"
  },
  {
    "path": "NLQ/2D-TAN/data/TACoS/train.json",
    "content": "{\"s17-d69.avi\": {\"timestamps\": [[224, 358], [418, 732], [841, 1014], [1016, 1210], [1237, 1428], [1480, 1904], [1921, 2939], [3044, 3189], [3217, 3603], [3673, 4045], [4099, 4592], [4759, 5766], [224, 358], [418, 732], [841, 1210], [1237, 2303], [2374, 2939], [3044, 4392], [5822, 5919], [6001, 7809], [7822, 8403], [8507, 9439], [224, 732], [841, 1210], [1237, 1662], [1670, 2022], [2037, 2262], [2270, 2939], [3044, 4392], [4444, 5313], [5401, 5766], [4444, 8226], [8237, 9888], [11674, 12228], [224, 1210], [1237, 2939], [3044, 3603], [3673, 4045], [4099, 5766], [5822, 8226], [8237, 12170], [224, 358], [418, 1210], [1237, 1428], [1480, 2188], [2202, 2939], [3044, 4158], [4182, 5766], [5822, 8226], [12170, 12228], [224, 358], [418, 732], [841, 1014], [1016, 1428], [1480, 2188], [2202, 3603], [3673, 4268], [4303, 5766], [5822, 7809], [7822, 8226], [8237, 9439], [8237, 12228], [224, 358], [418, 732], [841, 1014], [1016, 1210], [1237, 1428], [1480, 1554], [1627, 2939], [3044, 3603], [3673, 4392], [4444, 5766], [5822, 7041], [7525, 8403], [8507, 9439], [9657, 9888], [9657, 12228], [224, 358], [418, 732], [841, 1014], [1016, 1210], [1237, 1428], [1480, 2188], [2202, 2939], [3044, 4158], [4182, 5766], [5822, 8226], [8237, 9439], [11674, 12228], [11674, 12228], [224, 732], [841, 1210], [1237, 1554], [1627, 2188], [2202, 2939], [3044, 4268], [5822, 6064], [6909, 8403], [8507, 12170], [224, 358], [418, 1210], [1237, 2116], [2128, 2303], [2374, 3981], [3990, 5313], [4303, 6064], [6909, 8105], [8109, 12170], [224, 358], [418, 732], [841, 1210], [1237, 1554], [1627, 2188], [2202, 2939], [3044, 3603], [3673, 4268], [4303, 5313], [5401, 5766], [5401, 8226], [8237, 9439], [9657, 12170], [224, 1210], [1237, 1554], [1627, 2262], [2270, 2939], [3044, 3603], [3673, 4268], [4303, 5766], [5822, 7041], [7525, 8226], [8237, 9888], [11674, 11738], [9657, 12228], [224, 358], [418, 732], [841, 1210], [1237, 2939], [3044, 3603], [3673, 4592], [5822, 6064], [5822, 6064], [6909, 7550], [7600, 8403], [8507, 9142], [9192, 9439], [9657, 11738], [12170, 12228], [224, 358], [418, 732], [841, 1014], [1016, 1210], [1237, 1428], [1480, 1554], [1627, 1904], [1921, 2188], [2202, 2939], [3044, 3189], [3217, 3603], [3673, 3873], [3911, 4268], [4303, 4392], [4444, 5766]], \"sentences\": [\"He took out a pan\", \"He took out an egg\", \"He took out a cup\", \"He took out a fork\", \"He cracked the egg\", \"He added salt\", \"He scrambled the egg\", \"He washed his hands\", \"He turned on stove\", \"He put oil in the pan\", \"He spread the oil\", \"He poured egg into pan\", \"A man enters the kitchen, removes a frying pan from the drawer and places it on the stove.\", \"He retrieves on egg from the refrigerator and places it on the kitchen counter.\", \"He retrieves a coffee cup from the cupboard and a fork from the drawer placing them both on the counter.\", \"He cracks the egg into the coffee cup, throws the shells into the trash and seasons the eggs.\", \"Using the fork, he wisks the eggs in the coffee cup.\", \"He washes his hands, turns on the stove, gets the oil from the pantry, adds some oil to the pan and returns the oil to the pantry.\", \"He adds the eggs to the pan and puts the coffee cup in the sink.\", \"He gets a bowl of herbs from the pantry and add some to the eggs in the pan.\", \"He returns the bowl of herbs to the pantry.\", \"He retrieves a plate from the cupboard and sets it on the counter.\", \"The man takes out an egg.\", \"The man takes out a cup and a fork.\", \"The man cracks the egg and places the insides into the cup.\", \"He adds salt to the cup.\", \"He adds pepper to the cup.\", \"The man whisks the egg in the cup.\", \"The man prepares the pan by turning on heat and adding oil.\", \"He continues to whisk the egg.\", \"The man adds the egg to the pan.\", \"The man adds herbs to the egg.\", \"The man takes out a plate, knife and fork.\", \"The man removes the egg from the pan.\", \"Got out all of the cooking utensils\", \"Prepared egg in mug, including adding spices\", \"Set temperature on stove for pan.\", \"Added oil to pan.\", \"Placed egg mixture into pan.\", \"Sprinkled ingredient on cooking egg mixture\", \"Takes now cooked eggs out of pan and onto plate\", \"He gets out a pan.\", \"He gets an egg, a cup, and a fork.\", \"He cracks the egg.\", \"He seasons the egg.\", \"He scrambles the egg.\", \"He turns on the stove and adds oil to the pan.\", \"He adds the egg to the pan.\", \"He adds herbs to the eggs.\", \"He puts the egg on the plate.\", \"Takes skillet out and puts on stove.\", \"Takes an egg out of the refrigerator.\", \"Takes a cup out of the cabinet.\", \"Cracks open the egg into the cup.\", \"Adds some seasoning to the egg mixture.\", \"Turns on the stove.\", \"Adds some oil to the skillet.\", \"Pours egg mixture into skillet.\", \"Takes a bowl out of the cabinet.\", \"Adds some ingredients from the bowl to the eggs.\", \"Takes a plate out of the cabinet.\", \"Puts the eggs on the plate.\", \"The person gets out a frying pan and puts it on the stove.\", \"The person gets out an egg.\", \"The person gets out a cup.\", \"The person gets out a fork.\", \"The person cracks the egg into the cup.\", \"The person throws away the eggshell.\", \"The person adds salt and pepper to the egg and stirs it.\", \"The person turns on the stove.\", \"The person adds oil to the frying pan.\", \"The person pours the egg into the frying pan.\", \"The person gets out a wooden spatula.\", \"The person adds some kind of herb to the egg.\", \"The person gets out a plate.\", \"The person gets out a knife and fork.\", \"The person scrapes the egg onto the plate.\", \"The person takes out a pan and places it on the stove range.\", \"The person takes out an egg.\", \"The person takes out a cup.\", \"The person takes out a fork.\", \"The person cracks the egg into the cup.\", \"The person adds salt and pepper to the egg.\", \"The person uses the fork to scramble the egg.\", \"The person turns on the range and adds olive oil to the pan.\", \"The person pours the eggs into the pan.\", \"The person adds chopped herbs to the eggs.\", \"The person takes out a plate.\", \"The person transfers the cooked egg onto the plate.\", \"The person is done.\", \"He gets a pan and an egg.\", \"He gets a spoon and a cup.\", \"He breaks the egg into the cup and discards the shell.\", \"He seasons the egg.\", \"He scrambles the egg.\", \"He adds oil to a pan.\", \"He adds the egg to the pan and puts the cup in the sink.\", \"He adds herbs to the eggs and then puts them away.\", \"He takes the eggs off the heat and places them on a plate.\", \"Prepare a pan for cooking.\", \"Crack one egg and pour it into a cup.\", \"Put a little bit of pepper (and salt, as well) into the cup with the egg.\", \"Mix together the contents in the cup.\", \"Pour a small amount of oil into the pan.\", \"Pour the contents of the cup into the hot pan.\", \"Patiently wait as the egg cooks.\", \"Next, pour spices on top of the cooked egg.\", \"Using a spatula, carefully push the cooked egg onto a plate.\", \"The man removes a frying pan from the drawer and places it on the stove.\", \"He removes an egg from the refrigerator.\", \"He gets a cup and fork and places them on the counter.\", \"He cracks the egg open into the cup and discards the shell in the recycling bin.\", \"He adds spices to the egg in the cup.\", \"He uses the fork to scramble the egg in the cup.\", \"He turns on the burner under the frying pan.\", \"He adds a bit of oil to the frying pan.\", \"While waiting for the frying pan to heat up, he stirs the eggs some more.\", \"He pours the scrambled egg into the heated frying pan.\", \"He adds some chopped greens to the egg in the frying pan.\", \"He removes a plate from the cabinet and places it on the counter while the egg continues cooking.\", \"When the egg is done cooking, he transfers the egg from the frying pan to the plate.\", \"The person gets a skillet, an egg, a cup and a fork.\", \"The person cracks the egg, empties the contents in a cup and discards the shell.\", \"The person seasons the egg.\", \"The person stirs the egg with the fork.\", \"The person turns the heat on under the skillet.\", \"The person adds oil to the skillet.\", \"The person pours the egg into the skillet.\", \"The person gets a spatula.\", \"The person adds additional seasoning to the cooking egg.\", \"The person gets a plate, a fork and a knife.\", \"The person turns off the heat.\", \"The person uses the spatula to move the cooked egg from the skillet to the plate.\", \"The person gets out a frying pan and puts it on the stove.\", \"The person gets an egg out of the fridge.\", \"The person gets out a small cup and a fork.\", \"the person cracks the egg in the cup, adds salt and pepper and then stirs it up with the fork.\", \"The person rinses their hands and then turns on the burner.\", \"The person gets out oil, adds some to the pan and then swirls it around in the pan.\", \"The person waits a few moments for the pan to heat, then adds the egg to the pan and adjusts the burner temperature.\", \"The person stares at the cooking egg.\", \"The person gets out a spatula and then continues to stare at the egg some more.\", \"The person gets out some chives and adds them to the egg and then puts it away.\", \"The person keeps staring and waiting for the egg to cook.\", \"The person gets out a white plate and does a few head bobs.\", \"The person gets out a fork and knife, then waits forever for the egg to be done.\", \"The person puts the omelette on the plate. (NOT scrambled eggs, fyi.)\", \"He took out pan\", \"He took out egg\", \"He took out cup\", \"He took out fork\", \"He cracked egg\", \"He threw out shell\", \"He added salt\", \"He added pepper\", \"He mixed egg\", \"He washed hands\", \"He turned on stove\", \"He took out oil\", \"He put oil in pan\", \"He put away oil\", \"He poured egg in pan\"], \"fps\": 29.4, \"num_frames\": 12438}, \"s25-d35.avi\": {\"timestamps\": [[142, 245], [255, 577], [611, 715], [774, 1009], [1059, 3717], [3765, 3842], [142, 245], [255, 577], [611, 715], [774, 1009], [1059, 1558], [1602, 3717], [3765, 3842], [3765, 3842], [142, 245], [255, 577], [611, 715], [774, 1009], [1059, 3842], [142, 715], [774, 1009], [1059, 2841], [2883, 3453], [3525, 3842], [142, 308], [325, 577], [611, 715], [774, 1009], [774, 1009], [1059, 1558], [1602, 1696], [1741, 3842], [142, 308], [325, 715], [774, 1009], [1059, 3717], [3765, 3842], [142, 245], [255, 715], [774, 1009], [1059, 3717], [3765, 3842], [142, 245], [255, 577], [611, 715], [774, 1009], [1059, 3717], [3765, 3842], [142, 308], [325, 577], [611, 715], [774, 1009], [1059, 1558], [1602, 2686], [2731, 2757], [2798, 3027], [3095, 3717], [142, 245], [255, 577], [611, 715], [774, 1009], [1059, 3717], [3765, 3842], [142, 308], [325, 577], [611, 715], [774, 1009], [1059, 3453], [3765, 3842], [3765, 3842], [142, 308], [325, 577], [611, 715], [774, 1696], [1741, 2841], [3525, 3842], [142, 577], [611, 1009], [1059, 3027], [3095, 3717], [2883, 3842], [142, 245], [255, 577], [611, 715], [774, 1009], [1059, 3717], [3765, 3842], [142, 245], [255, 577], [611, 715], [774, 1009], [1059, 3453], [3525, 3717], [3765, 3842], [3765, 3842], [142, 245], [255, 577], [611, 715], [774, 1009], [1059, 3717], [3765, 3842]], \"sentences\": [\"He took out cutting board\", \"He took out plum\", \"He washed plum\", \"He took out knife\", \"He cut out pit\", \"He threw out pit\", \"The person takes out a cutting board from the drawer.\", \"The person procures a plum from the fridge.\", \"The person washes the plum in the sink.\", \"The person takes out a knife from the drawer.\", \"The person slices the plum down the middle on the cutting board.\", \"The person repeatedly tries to tear the plum apart into sections and finally does so.\", \"The person disposes the plum core in the trash.\", \"The person washes his hands.\", \"He took out cutting board\", \"He took out plum\", \"He washed plum\", \"He took out knife\", \"He threw away pit\", \"He gets out a plum and rinses it.\", \"He gets a knife.\", \"He removes a chunk from the plum.\", \"He removes another chunk with his hands.\", \"He discards part of the plum.\", \"He goes to the drawer and opens it up and takes out a cutting board and knife.\", \"He goes to the refrigerator and takes out a plum.\", \"He goes to the sink and washes the plum.\", \"He opens up a couple of drawers and takes a knife out of one of them.\", \"He places the plum on the cutting board.\", \"He slices the plum in half with the knife.\", \"He tries to pry the plum apart with his fingers.\", \"He cuts some more at the plum till he successfully has the plum into several pieces.\", \"He gets a cutting board.\", \"He gets a plum and rinses it.\", \"He gets a knife.\", \"He takes the plum apart.\", \"He discards the bad parts.\", \"He gets a cutting board.\", \"He gets a plum and rinses it.\", \"He gets a knife.\", \"He cuts up the plum.\", \"He discards the rest.\", \"He took out cutting board\", \"He took out plum\", \"He washed plum\", \"He took out knife\", \"He cut plum into pieces\", \"He threw away pit\", \"The man places a cutting board on the counter.\", \"He goes to the refrigerator and takes out a plum.\", \"He rinses the plum in the sink.\", \"He takes out a cutting knife and places the plum on the cutting board.\", \"He uses the knife to cut the plum in half.\", \"He tries using his hands to pull the pieces of plum apart.\", \"He cuts off one piece of the plum.\", \"He uses his hands to break off the second piece.\", \"Finally, he uses the knife to cut the remaining pieces.\", \"The person takes out a cutting board and puts it on the counter.\", \"The person removes a plum from the fridge.\", \"The person rinses the plum.\", \"The person takes out a knife.\", \"The person cuts the plum into quarters to separate it from the pit.\", \"The person throws the pit away.\", \"The man opens a drawer, removes a cutting board, places in on the counter and closes the drawer.\", \"He walks to the fridge, opens the door, removes a plum from the crisper drawer and closes the fridge door.\", \"He goes to the sink, turns on the faucet and washes the fruit.\", \"He opens a couple drawers, finds a large knife and removes it from the drawer.  He closes the drawer.\", \"The man sets the plum on the cutting board and begins to cut around the fruit to remove the pit.\", \"He removes the pit and throws it in the garbage.\", \"The man walks to the sink, turns on the faucet and rinses his hands.\", \"He got out a cutting board.\", \"He opened the fridge.\", \"He washed an apple.\", \"He cut the plum in half.\", \"He cut out a section of the plum.\", \"He washed his hands.\", \"Take out a cutting board and a plum.\", \"Wash the plum and take out a knife.\", \"Cut the plum in half around the pit, separate the plum halves with your hand cutting additionally if needed.\", \"Remove the pit, and cut the plum into smaller pieces.\", \"Discard the plum pit and rinse your hands.\", \"The person gets out a cutting board.\", \"The person gets out a plum.\", \"The person rinses the plum.\", \"The person gets out a knife.\", \"The person cuts the plum into four quarters and the pit.\", \"The person throws away the plum pit.\", \"Get out a cutting board.\", \"Get plum out of fridge\", \"Wash plum in the sink\", \"Get out knife, and place plum on cutting board\", \"Use knife to cut the plum into four pieces. Cut 2 perpendicular circles to the pit until you are able to pull the four pieces apart with your hands.\", \"Cut out pit from the piece that it is still attached to.\", \"Throw away the pit in the trash.\", \"Wash hands.\", \"The person takes out a chopping board from the drawer.\", \"The person takes out a plum from the refrigerator.\", \"The person washes the plum.\", \"The person takes a knife out of the cupboard.\", \"The person cuts and peels the plum into sections.\", \"The person discards the pit of the plum.\"], \"fps\": 29.4, \"num_frames\": 3884}, \"s27-d34.avi\": {\"timestamps\": [[233, 435], [233, 435], [438, 622], [622, 1017], [1019, 1047], [1051, 1142], [1157, 1715], [233, 435], [438, 622], [622, 1017], [1019, 1142], [1157, 1715], [233, 435], [438, 622], [622, 1017], [1019, 1116], [1117, 1715], [233, 435], [438, 622], [622, 1017], [1019, 1142], [1157, 1715], [233, 435], [438, 622], [622, 1017], [1019, 1142], [1157, 1715], [233, 622], [622, 1017], [1019, 1116], [1117, 1715], [1117, 1715], [233, 435], [438, 622], [622, 1017], [1019, 1142], [1157, 1715], [233, 435], [438, 622], [622, 1017], [1019, 1142], [1157, 1715], [233, 435], [438, 680], [680, 1017], [1019, 1142], [1157, 1715], [233, 435], [438, 1017], [1019, 1142], [1019, 1142], [1157, 1715], [233, 435], [438, 622], [622, 1017], [1019, 1142], [1157, 1715], [233, 435], [438, 680], [680, 1047], [1051, 1142], [1157, 1715], [233, 435], [438, 680], [680, 1017], [1019, 1116], [1117, 1715], [233, 435], [233, 435], [438, 680], [680, 1017], [1019, 1142], [1157, 1715]], \"sentences\": [\"Gather piece of ginger\", \"Bring ginger to kitchen counter.\", \"Get out cutting board and place on counter.\", \"Find a good knife.\", \"Place ginger on cutting board.\", \"Cut the end off the ginger.\", \"Thinly slice the small end of ginger you cut off.\", \"The person finds the ginger to prepare\", \"The person takes out a cutting board\", \"The person finds an appropriate knife\", \"The person cuts off a small amount of ginger to prepare further\", \"The person slices the ginger into small slivers\", \"The person takes a root of ginger from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts a portion away from the ginger root.\", \"The person slices the fragment of ginger on the cutting board.\", \"Get out ginger.\", \"Get out cutting board.\", \"Get out knife.\", \"Cut desired sized piece off ginger root.\", \"Cut ginger width-wise into small strips.\", \"The person takes some ginger from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts a section of ginger from the body of the root and puts the latter to the side.\", \"The person chops the ginger on the cutting board.\", \"He gets the ginger and a cutting board.\", \"He gets a knife.\", \"He removes part of the ginger.\", \"He slices the ginger.\", \"He puts the knife down.\", \"He grabs the ginger.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He cuts a piece off the ginger.\", \"He chops that piece.\", \"He gets a piece of ginger out of the cupboard.\", \"He gets a cutting board out of the cupboard.\", \"He gets a knife out of the cupboard.\", \"He chops a small piece of ginger off and puts the rest to the side.\", \"He chops that small piece of ginger into smaller chunks.\", \"Guy takes out ginger\", \"Guy takes out cutting board\", \"Guy takes out knife\", \"Guy cuts off a piece of ginger\", \"Guy dices the ginger\", \"Gets fresh ginger from cupboard.\", \"Gets round cutting board and sharp knife.\", \"Cuts small piece of ginger and places it on cutting board.\", \"Peels skin off ginger.\", \"Cuts about 5 small pieces.\", \"The person gets out some ginger.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts off a piece of ginger.\", \"The person slices up that piece of ginger.\", \"The person takes a ginger out of the cupboard.\", \"The person takes a chopping board out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person cuts out a small piece from the ginger.\", \"The person cuts up the small piece of ginger into even smaller pieces.\", \"The person gets a piece of ginger from the pantry and puts it on the counter.\", \"The person gets a cutting board from the drawer and places it on the counter.\", \"The person selects a knife from the drawer.\", \"The person slices a small piece off the end of the ginger.\", \"The person cuts the piece into several smaller pieces.\", \"The man walks to the cabinet.\", \"He takes out some ginger.\", \"He moves to the counter and selects a small, round cutting board from a drawer.\", \"He searches for a proper knife, eventually choosing a small paring knife.\", \"He cuts off a small section of ginger from the rest of the root.\", \"He roughly chops the small section of ginger, and puts down the knife.\"], \"fps\": 29.4, \"num_frames\": 1756}, \"s21-d23.avi\": {\"timestamps\": [[307, 518], [540, 786], [792, 875], [875, 1152], [1154, 1517], [1522, 1979], [2020, 2532], [2651, 3097], [3130, 3366], [307, 518], [540, 786], [792, 875], [875, 1152], [1154, 1312], [1360, 1461], [1461, 1979], [2020, 2532], [2651, 2800], [2809, 3097], [3130, 3366], [307, 518], [540, 786], [792, 937], [984, 1152], [1154, 1312], [1360, 1517], [1522, 1979], [2020, 2532], [2651, 2748], [2754, 3097], [3130, 3366], [307, 518], [540, 786], [792, 875], [875, 1152], [1154, 1312], [1360, 1517], [1522, 1778], [1797, 2532], [2651, 2800], [2809, 3097], [3130, 3366], [3130, 3366], [307, 518], [540, 786], [792, 937], [984, 1152], [1154, 1312], [1360, 1480], [1480, 1979], [2020, 2532], [2651, 2748], [2754, 3031], [3031, 3366], [307, 518], [540, 937], [984, 1152], [1154, 2532], [2651, 3097], [3130, 3366], [307, 518], [540, 786], [792, 1152], [1154, 1517], [1522, 2748], [2754, 3097], [3130, 3366], [307, 518], [540, 786], [792, 937], [984, 1152], [1154, 1264], [1264, 1480], [1480, 1979], [2020, 2532], [2651, 2748], [2754, 3097], [2754, 3097], [3130, 3366], [307, 518], [540, 786], [792, 875], [875, 1152], [1154, 1517], [1522, 2532], [2651, 2748], [2754, 3097], [3130, 3366], [307, 518], [540, 786], [792, 875], [875, 1152], [1154, 1312], [1360, 1517], [1522, 1778], [1797, 1979], [2020, 2532], [2651, 2800], [2809, 3097], [3130, 3366], [3130, 3366], [307, 518], [540, 786], [792, 875], [875, 1152], [1154, 1461], [1461, 1979], [2020, 2532], [2651, 3097], [3130, 3366], [307, 518], [540, 937], [984, 1152], [1154, 1480], [1480, 1778], [1797, 1979], [2020, 2532], [2651, 2800], [2809, 3366], [307, 518], [540, 786], [792, 875], [875, 1152], [1154, 1312], [1360, 1480], [1480, 1979], [2020, 2532], [2651, 2748], [2754, 3097], [2754, 3097], [3130, 3366], [307, 518], [540, 1264], [1264, 1480], [1480, 1736], [1736, 2532], [2651, 2748], [2754, 3097], [3130, 3366], [3130, 3366], [307, 518], [540, 786], [792, 937], [984, 1152], [1154, 1312], [1360, 1480], [1480, 1778], [1797, 1979], [2020, 2532], [2651, 2748], [2754, 3097], [3130, 3366], [307, 518], [540, 1152], [1154, 1517], [1522, 2748], [2754, 3097], [3130, 3366], [307, 518], [540, 786], [792, 875], [875, 1152], [1154, 1461], [1461, 1979], [2020, 2532], [2651, 2748], [2754, 3097], [3130, 3366]], \"sentences\": [\"She took out carrots\", \"She took out knife\", \"She took out cutting board\", \"She took out plate\", \"She washed carrot\", \"She took out peeler\", \"She peeled carrot\", \"She chopped up carrot\", \"She put away remaining carrots\", \"Take carrots out of fridge.\", \"Get knife out of front cabinet.\", \"Take out cutting board.\", \"Take small bowl out of back pantry\", \"Cut both ends of carrot one by one\", \"Rinse carrot off in sink.\", \"Peel carrot\", \"Throw away skin.\", \"Chop carrot\", \"Put into small bowl once done chopping\", \"Put away leftover carrots.\", \"The person gets out a bunch of carrots.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person gets out a bowl.\", \"The person takes one carrot from the bunch.\", \"The person rinses the carrot.\", \"The person gets out a vegetable peeler.\", \"The person peels the carrot.\", \"The person throws away the peel.\", \"The person chops up the carrot and puts the pieces in the bowl.\", \"The person puts away the bunch of carrots.\", \"The person takes a bunch of carrots out of the refrigerator.\", \"The person puts a knife on the counter.\", \"The person puts a cutting board on the counter.\", \"The person puts a small dish from the cabinet on the counter.\", \"The person selects a carrot from the bunch.\", \"The person rinses the carrot with water.\", \"The person throws away the discarded tip from the carrot.\", \"The person peels the carrot with a vegetable peeler.\", \"The person throws the peelings away.\", \"The person chops the carrot with a knife.\", \"The person puts the rest of the carrots back in the refrigerator.\", \"The video ends.\", \"The person gets out a bunch of carrots.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person gets out a bowl.\", \"The person removes one carrot from the bunch.\", \"The person rinses the carrot.\", \"The person gets out a vegetable peeler.\", \"The person peels the carrot.\", \"The person throws away the peel.\", \"The person cuts up the carrot.\", \"The person puts away the bunch of carrots.\", \"She gets out the carrots.\", \"She gets a knife and cutting board.\", \"She gets a plate.\", \"She gets out a peeler and peels the carrot.\", \"She chops the carrot and puts it in a bowl.\", \"She puts the carrots away.\", \"She grabs a bunch of carrots.\", \"She gets a knife.\", \"She gets a cutting board and a plate.\", \"She rinses one carrot and puts it on the cutting board.\", \"She peels the carrot and discards the peels.\", \"She chops the carrot and put it on the plate.\", \"She puts the carrots away.\", \"The person removes the carrots from the refrigerator.\", \"The person selects a properly sized knife for chopping the carrots.\", \"The person gets out a cutting board to cut carrots on.\", \"The person gets a container to put the chopped carrots in.\", \"The person selects a carrot and removes it from the bundle.\", \"The person cuts the end off the carrot and washes it.\", \"The person selects a peeling tool.\", \"The person peels the carrot.\", \"The person disposes of the carrot remains.\", \"The person chops the carrot.\", \"The person puts the chopped carrot in a bowl.\", \"The person puts the remaining carrots in the refrigerator.\", \"She gets a bunch of carrots.\", \"She gets a knife.\", \"She gets a cutting board.\", \"She gets a plate.\", \"She rinses the carrot.\", \"She gets a peeler and peels the carrot.\", \"She discards the peels.\", \"She chops the carrot and puts it in a bowl.\", \"She puts the carrots away.\", \"A carrot bunch is removed from the refrigerator.\", \"The person selects a knife.\", \"The person removes a cutting board.\", \"A plate is removed for serving.\", \"A carrot is removed from the bunch and the end trimmed.\", \"The carrot is washed.\", \"The ends are discarded.\", \"A peeler is selected.\", \"The carrot is peeled.\", \"The scraps are discarded.\", \"The carrot is sliced and the slices are placed on the plate.\", \"The bunch is returned to the refrigerator.\", \"The carrot is ready.\", \"She took out carrots\", \"She took out knife\", \"She took out cutting board\", \"She took out plate\", \"She washed carrot\", \"She took out peeler\", \"She peeled carrot\", \"She chopped up carrot\", \"She put remaining carrots back\", \"She goes to refrigerator and gets out some carrots.\", \"She goes to the drawer and takes out a knife and a cutting board.\", \"She goes to the cupboard and takes out a bowl.\", \"She goes over and cuts off a carrot from the bunch and washes the carrot.\", \"She throws the end pieces away into the trash.\", \"She goes in the drawer and get a peeler.\", \"She peels the carrot.\", \"She picks up the rinds and throws them away.\", \"She slices the carrots, places them in a bowl, and then puts the carrots away.\", \"The person removes a bunch of carrots from the refrigerator and sets them on the counter.\", \"The person selects a paring knife and sets it on the counter.\", \"The person sets a wooden cutting board on the counter.\", \"The person selects a small bowl and places it next to the cutting board.\", \"The person cuts the stem and tip off of a carrot.\", \"The person rinses the carrot with water.\", \"The person selects a Lancashire peeler.\", \"The person peels the carrot.\", \"The person throws the carrot peel in the trash.\", \"The person cuts the carrot into one-inch pieces.\", \"The person puts the carrot pieces into the bowl.\", \"The person places the bunch of carrots back into the refrigerator.\", \"The person gets the carrots out of the fridge\", \"The person puts out all the kitchenware\", \"The person washes the carrot\", \"She dumps the carrot tip in the trash\", \"The person peels the carrot\", \"The person dumps the carrot peelings into the trash\", \"The person slices the carrot\", \"She puts away the carrots\", \"The person talks to another person\", \"The person gets out a bunch of carrots.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person gets out a small bowl.\", \"The person takes one carrot from the bunch and cuts the end of it off.\", \"The person rinses the carrot.\", \"The person throws away the end of the carrot.\", \"The person gets out a vegetable peeler.\", \"The person peels the carrot.\", \"The person throws away the peels.\", \"The person cuts up the carrot and puts the pieces in the bowl.\", \"The person puts away the rest of the carrots.\", \"The woman takes out carrots from the refrigerator and places them on the counter next to it.\", \"The woman takes out a knife, a cutting board, and a small white bowl.\", \"The woman takes a carrot, washes it, then places it on the cutting board.\", \"The woman takes out a peeler and peels the carrot.\", \"The woman chops the carrot and places the pieces in the small white bowl.\", \"The woman puts the rest of the carrots away in the refrigerator.\", \"She took out carrots\", \"She took out knife\", \"She took out cutting board\", \"She took out plate\", \"She washed carrot\", \"She took out peeler\", \"She peeled carrot\", \"She threw away peels\", \"She chopped up carrot\", \"She put back extra carrots\"], \"fps\": 29.4, \"num_frames\": 3436}, \"s25-d69.avi\": {\"timestamps\": [[194, 405], [423, 764], [787, 1339], [1364, 2045], [2053, 2618], [2634, 3407], [3413, 3960], [4081, 4569], [4607, 6581], [6755, 9187], [9194, 11251], [11322, 11723], [11765, 12850], [194, 1224], [1240, 2242], [2249, 3559], [3579, 4474], [4524, 6581], [6755, 7757], [7922, 9273], [12854, 12873], [13014, 14307], [194, 405], [423, 1124], [1152, 1224], [1240, 1813], [1840, 2242], [2249, 2866], [2871, 3559], [3579, 3693], [3720, 4678], [4705, 6581], [6755, 8972], [8984, 11839], [9342, 12873], [13014, 14307], [194, 405], [423, 764], [787, 1339], [1364, 2242], [2249, 2866], [2871, 3559], [3579, 4145], [4188, 4908], [4923, 6581], [6755, 9273], [9342, 10127], [10153, 11839], [194, 405], [423, 764], [787, 1224], [1240, 1813], [1840, 2298], [2326, 2924], [2945, 3693], [3720, 4290], [4354, 4569], [4607, 5356], [5471, 6581], [6755, 7321], [7344, 9187], [12067, 12405], [12067, 12873], [194, 764], [787, 2242], [2249, 4474], [4524, 6581], [6755, 11839], [12446, 12873], [13014, 14307], [194, 1224], [1240, 2298], [2326, 2924], [2945, 4678], [4705, 6581], [6755, 7757], [9194, 12873], [13014, 14307], [194, 764], [194, 764], [787, 1224], [1240, 2242], [2249, 2725], [2779, 3475], [3485, 3693], [3720, 3960], [4081, 4474], [4524, 7757], [7922, 9236], [9241, 10127], [10153, 11793], [12067, 12873], [12067, 12873], [194, 405], [423, 764], [787, 1339], [1364, 2242], [2249, 2298], [2326, 2924], [2945, 3559], [3579, 3960], [4081, 4569], [4607, 7757], [4607, 7757], [11805, 12145], [12273, 12479], [7922, 12873], [13014, 14307], [194, 1339], [194, 1339], [1364, 2242], [2249, 2866], [2871, 3559], [3579, 4145], [4188, 5567], [5574, 6974], [7029, 9187], [9194, 9273], [9342, 11839], [12510, 12873], [13014, 14307], [194, 1124], [1152, 2242], [2249, 2725], [2779, 3693], [3720, 4290], [4354, 6581], [12067, 12479], [7922, 12873], [194, 405], [423, 764], [787, 1224], [1240, 2298], [2326, 3559], [3579, 4145], [4188, 6581], [6755, 7757], [6755, 7757], [7922, 11839], [12510, 12873], [13014, 14307], [194, 405], [423, 764], [787, 1124], [1152, 1224], [1240, 1775], [1785, 1813], [1840, 2045], [2053, 2082], [2089, 2162], [2167, 2618], [2634, 2866], [2871, 3349], [3360, 3559], [3579, 3693], [3720, 3960], [194, 405], [423, 764], [787, 1124], [1152, 1339], [1364, 1775], [1785, 1813], [1840, 2045], [2053, 2082], [2089, 2162], [2167, 2618], [2634, 2924], [2945, 3349], [3360, 3559], [3579, 3693], [3720, 3960], [194, 1124], [1152, 2045], [2053, 2689], [2693, 3475], [3485, 3960], [4081, 6581], [6755, 7654], [7701, 10127], [12067, 12479], [12510, 12850], [13014, 14307], [194, 405], [423, 1124], [1152, 1339], [1364, 2298], [2326, 2924], [2945, 3559], [4081, 4290], [4354, 4908], [4923, 5675], [5779, 6974], [7029, 7757], [7922, 8972], [8984, 9273], [9342, 11839], [13014, 14307], [194, 764], [194, 764], [787, 1224], [1240, 2298], [2326, 2725], [2779, 3693], [3720, 3960], [3720, 3960], [4081, 6581], [6755, 9273], [9342, 11370], [11397, 11839], [10153, 12873], [194, 405], [423, 764], [787, 1224], [1240, 1339], [1364, 1813], [1840, 2045], [2053, 2242], [2053, 2242], [2249, 2298], [2326, 2725], [2779, 2924], [2945, 3475], [3485, 3693], [3720, 3960], [3720, 3960]], \"sentences\": [\"Person gets out bowl.\", \"Person takes out eggs.\", \"Person rinses bowl.\", \"Person cracks eggs into bowl.\", \"Person sprinkles salt into bowl.\", \"Person beats eggs with fork.\", \"Person puts pan on heated oven.\", \"Person pours oil in pan and distributes it around.\", \"Person beats eggs again and pours into pan.\", \"Person sprinkles pepper on top of egg.\", \"Person flips egg over completely.\", \"Person sprinkles pepper on opposite side of egg.\", \"Person puts egg into a bowl.\", \"He gets out the eggs and a bowl.\", \"He breaks the eggs.\", \"He seasons the eggs and scrambles them.\", \"He puts an oiled pan on a hot stove top.\", \"He scrambles a bit more and then places the eggs in the pan.\", \"He cleans up a bit.\", \"He seasons the eggs while they cook.\", \"He places the cooked eggs in a bowl.\", \"He cleans the spatula.\", \"The man enters the kitchen and retrieves a metal bowl from the cabinet.\", \"The man retrieves two eggs from the refrigerator.\", \"The man retrieves a spoon from the drawer.\", \"The man rinses the bowl and cracks one egg on the edge of the bowl before discarding the shell.\", \"The man cracks the second egg on the edge of the bowl and discards that shell.\", \"The man gathers a seasoning from the counter and carefully sprinkles it into the bowl of yolks.\", \"The man picks up the spoon, rinses it in the sink and then places it in the bowl and begins to carefully mix the egg yolks until they are fully mixed.\", \"The man preheats the stove before retrieving a pan.\", \"The man retrieves oil from the cabinet, then places the pan on the stove and pours oil into the frying pan and mixes it around in the pan.\", \"Once the oil is heated, he picks up the bowl with the egg yolks and carefully dumps it into the frying pan.\", \"The man lets the egg cook in the frying pan without flipping it.\", \"The man adds pepper to the egg in the pan before mixing the egg around in the pan.\", \"After approximately 5 minutes, the man places the egg into the clean bowl.\", \"The man carefully cleans the utensils with a sponge and soap.\", \"person gets bowl\", \"person gets two eggs\", \"person gets fork\", \"person crack both eggs in bowl\", \"person adds pepper to eggs\", \"person scrambles eggs with fork\", \"person gets pan and oil\", \"person add oil to pan\", \"person adds eggs to pan\", \"person add pepper\", \"person flips egg over\", \"person adds pepper\", \"He takes a mixing bowl out of the cabinet\", \"He gets two eggs from the refrigerator.\", \"He takes out a fork.\", \"He breaks the eggs into the bowl.\", \"He adds some seasoning to the uncooked eggs.\", \"He stirs the eggs, to mix them evenly and mix in the seasoning.\", \"He sets the temperature on the stove.\", \"He adds cooking oil to the skillet.\", \"He greases the pan, evenly with the cooking oil.\", \"He checks the temperature of the skillet.\", \"He adds the egg mixture to the heated skillet.\", \"He lets the eggs cook.\", \"He fluffs the eggs with the spatula and fork and adds more seasoning.\", \"He turns off the stove.\", \"He puts away his cooking oil and moves his cooked eggs back into the bowl he had mixed them in.\", \"He gets a bowl and two eggs.\", \"He cracks the eggs into the bowl.\", \"He heats a pan and puts oil in it.\", \"He scrambles the eggs and adds them to the pan.\", \"He seasons the eggs.\", \"He puts the eggs in a bowl.\", \"He cleans up a bit.\", \"He gets out 2 eggs, a bowl and a fork.\", \"He cracks the eggs into the bowl.\", \"He salts the eggs.\", \"He put some oil in a pan.\", \"He finishes scrambling the eggs and puts them into the pan.\", \"He cleans the bowl.\", \"He finishes cooking the eggs and put them in a bowl.\", \"He cleans up.\", \"The person takes a stainless steel bowl from the cabinet.\", \"The person took two eggs from the refrigerator.\", \"A fork was taken from the drawers.\", \"The man cracked two eggs into the stainless steel bowl and put the shells in the trash.\", \"The person added salt to the eggs.\", \"The eggs were whisked with a fork.\", \"The man turned on the stove.\", \"A pan was taken out of a drawer.\", \"The man put oil onto the pan.\", \"The man cleaned the stainless steel bowl.\", \"Pepper was poured onto the eggs.\", \"The eggs were flipped.\", \"More pepper was added to the eggs.\", \"The eggs were taken from the pan and moved into the stainless steel bowl.\", \"The spatula was cleaned.\", \"A bowl is removed from a cabinet.\", \"Two eggs are removed from the refrigerator.\", \"A fork is removed and the bowl is rinsed.\", \"The eggs are cracked and the shells are discarded.\", \"The person rinses their hands.\", \"Seasoning is added to the eggs.\", \"The eggs are mixed.\", \"The stove is turned on and a pan is selected.\", \"Oil is removed and added to the pan.\", \"The eggs are added to the pan and the bowl is washed.\", \"A spatula is selected.\", \"The eggs are seasoned and cooked.\", \"The oil is returned to the cabinet.\", \"The cooked eggs are placed in the bowl.\", \"The spatula is washed and put away.\", \"He gets out a bowl from the cabinet, two eggs from the refrigerator, and a spoon from the drawer.\", \"He washes the bowl in the sink and shakes it to dry it off.\", \"He cracks the eggs on the side of the bowl and empties them into the bowl, throwing the shells away into the trash.\", \"He washes his hands, shakes them to dry them off, and pats some salt into the bowl.\", \"He uses the spoon to mix the eggs.\", \"He turns on the stove, gets out a frying pan and some oil, and places the frying pan on the stove.\", \"He pours oil in the pan, mixes the eggs some more, turns the pan to spread out the oil, and takes out a spoon from the drawer.\", \"He mixes the eggs with a spoon and pours them into the frying pan.\", \"He washes out the bowl and uses the spatula and a fork to move around the eggs.\", \"He gets out pepper and sprinkles it on top of the eggs.\", \"He flips the eggs over with the spatula and the fork and pats them down, finally sprinkling some spices on top.\", \"He picks the eggs up with the spatula and places them in the bowl.\", \"He washes the spatula in the sink with detergent and a sponge and puts the spatula away.\", \"Take out a bowl, 2 eggs, and a fork.\", \"Crack the eggs into the bowl.\", \"Season the eggs.\", \"Stir the eggs with the fork.\", \"Put a frying pan over the burner and add oil.\", \"Pour the eggs into the pan.\", \"scramble the eggs with the spatula while they're cooking.\", \"Put the scrambled eggs back into the bowl.\", \"The person procures a metal bowl from the cabinet.\", \"The person procures a pair of eggs from the fridge.\", \"The person takes out a fork from the drawer.\", \"The person rinses the bowl in the sink, then cracks each egg into the bowl and throws the shells into the wastebin before washing his hands.\", \"The person adds salt to the eggs and then stirs them up with the fork.\", \"The person turns on the stove, then takes out a pan before going to the pantry and getting a bottle of oil.\", \"The person pours oil into the pan and then the eggs from the bowl.\", \"The person washes the bowl and fork in the sink.\", \"The person takes a wooden spatula from the drawer.\", \"The person adds condiments to the eggs in the pan.\", \"The person sets the eggs into the bowl with the spatula.\", \"The person washes the spatula in the sink and returns it to the drawer.\", \"He took out bowl\", \"He took out eggs\", \"He took out spoon\", \"He washed bowl\", \"He cracked first egg\", \"He threw out first shell\", \"He cracked second egg\", \"He threw out second shell\", \"He washed hands\", \"He added salt\", \"He washed spoon\", \"He beat eggs\", \"He turned on stove\", \"He took out pan\", \"He took out oil\", \"He took out bowl\", \"He took out eggs\", \"He took out fork\", \"He washed bowl\", \"He cracked first egg\", \"He threw away shell\", \"He cracked second egg\", \"He threw away shell\", \"He washed hands\", \"He added salt\", \"He washed fork\", \"He beat eggs\", \"He turned on stove\", \"He took out pan\", \"He took out oil\", \"He gets out a bowl, eggs, and a utensil.\", \"He cracks the eggs.\", \"He seasons the eggs.\", \"He whisks the eggs.\", \"He puts a pan on the stove.\", \"He oils the pan, whisks some more, and places the eggs in the pan.\", \"He cleans the utensils.\", \"He starts cooking and then flips the eggs over.\", \"He finishes cooking.\", \"He places the eggs in a bowl.\", \"He cleans the spatula and puts it away.\", \"The person gets a bowl out of the cupboard.\", \"The person gets two eggs out of the fridge.\", \"The person picks out a fork.\", \"The person washes out the bowl and cracks the eggs inside.\", \"The person adds a fine layer of salt to the eggs in the bowl, making sure that each piece of egg receives a grain.\", \"The person washes the fork and scrambles the eggs in the bowl.\", \"The person gets out a frying pan, turns on the burner and gets out the oil.\", \"The person adds the oil to the pan and swishes it around.\", \"The person waits, stirs the eggs, gets out a spatula, puts it back and stirs some more.\", \"The person stirs the eggs, waits and then pours them in the pan.\", \"The person washes the bowl and fork.\", \"The person gets a spatula and fork and tries to \\\"stir\\\" or poke the eggs a little.\", \"The person peppers the eggs in an incredibly thoughtful manner.\", \"The person pokes, folds over, tries to reassemble the eggs and then adds more thoughtful seasoning.\", \"The person puts the oil away, puts the omelette pieces in a little bowl and washes the spatula.  (Still NOT 'scrambled' eggs.)\", \"The person got out a bowl.\", \"The person got out two eggs.\", \"The person got out a fork.\", \"The person cracked the eggs into the bowl.\", \"The person put salt on the eggs.\", \"The person beat the eggs with a fork.\", \"The person got out a frying pan.\", \"The person got out some oil.\", \"The person put the eggs into the pan.\", \"The person put pepper on the eggs.\", \"The person flipped the eggs.\", \"The person seasoned the eggs.\", \"The person put the eggs in the bowl.\", \"He took out bowl\", \"He took out eggs\", \"He took out fork\", \"He washed bowl\", \"He cracked first egg\", \"He threw away shell\", \"He cracked second egg\", \"He threw away shell\", \"He washed hands\", \"He added salt\", \"He washed the fork\", \"He scrambled egg\", \"He turned on stove\", \"He took out pan\", \"He took out oil\"], \"fps\": 29.4, \"num_frames\": 14335}, \"s14-d46.avi\": {\"timestamps\": [[145, 448], [469, 848], [858, 1318], [1323, 1932], [1957, 2265], [2276, 3890], [3893, 6145], [6221, 7752], [7789, 8348], [8403, 8648], [8653, 9248], [145, 448], [469, 775], [794, 1001], [1008, 1150], [1150, 2001], [2004, 3571], [3657, 6145], [6221, 6579], [6582, 6809], [6832, 7752], [7789, 7876], [7929, 8218], [8229, 8648], [8653, 9154], [145, 1377], [1392, 1932], [1957, 3523], [3537, 6145], [6221, 8348], [9166, 9248], [145, 1318], [1323, 2304], [2349, 3523], [3537, 6503], [6532, 6617], [6717, 7752], [7789, 9154], [145, 448], [469, 775], [794, 6329], [6433, 7752], [7789, 7876], [7929, 8348], [8403, 9154], [145, 448], [469, 1001], [1008, 1181], [1181, 2001], [2004, 6145], [6221, 7752], [7789, 7876], [8403, 9248], [145, 448], [469, 848], [858, 1001], [1008, 1071], [1109, 1150], [1150, 2079], [2124, 6503], [6532, 8348], [8403, 8648], [9166, 9248], [145, 448], [469, 848], [858, 1001], [1008, 1181], [1181, 1932], [1957, 2304], [2349, 3890], [3893, 6145], [6221, 7752], [7789, 8348], [145, 448], [469, 848], [858, 1150], [1150, 2304], [2349, 6579], [6582, 6617], [6717, 7752], [7789, 7876], [7929, 8348], [8403, 8648], [8653, 9154], [9166, 9248], [145, 2304], [145, 2304], [145, 2304], [2349, 6329], [6433, 7876], [7929, 8348], [8403, 8648], [145, 448], [469, 848], [858, 1001], [1008, 1071], [1109, 1150], [1150, 2304], [2349, 6329], [6433, 8348], [8403, 8648], [8653, 9154], [145, 448], [469, 682], [691, 775], [794, 1001], [1008, 1071], [1109, 1150], [1150, 1932], [1957, 2079], [2124, 2304], [2349, 2910], [2921, 3023], [3023, 3523], [3537, 3571], [3657, 3846], [145, 448], [469, 848], [858, 1001], [1008, 1071], [1109, 1150], [1150, 2304], [3846, 6503], [6532, 6617], [6717, 6809], [6832, 8348], [8403, 8648], [8653, 9154], [145, 448], [469, 848], [858, 1181], [1181, 2001], [2004, 2304], [2349, 6617], [6717, 8348], [8403, 8648], [8653, 9154], [145, 1181], [1181, 1932], [1957, 2265], [2276, 3846], [2349, 6145], [6221, 6579], [6582, 7752], [7789, 8348], [8403, 8648], [8653, 9154], [145, 448], [469, 848], [858, 1181], [1181, 2079], [3846, 3953], [3972, 6329], [6433, 6617], [6717, 7876], [7929, 8348], [8403, 8648], [8653, 9154], [7929, 9248], [145, 448], [469, 682], [691, 775], [794, 1001], [1008, 1071], [1109, 1181], [1181, 1932], [1957, 3523], [2124, 6617], [6717, 6809], [6832, 7876], [8403, 8648], [8653, 9154]], \"sentences\": [\"The woman got the pineapple out of the cupboard.\", \"The woman got two knives out from the drawer.\", \"The woman got out a cutting board, bowl, and storage container.\", \"The woman cut the top off the pineapple.\", \"The woman cut the bottom off the pineapple.\", \"The woman cut off the sides of the pineapple with a paring knife.\", \"The woman cut off all the hard spots on the pineapple.\", \"The woman cut the pineapple in slices.\", \"The woman put the pineapple in a stainless steel bowl.\", \"The woman rinsed off the knives.\", \"The woman put the pineapple scraps in a garbage bin and then rinsed out the container.\", \"A pineapple is removed from the cabinet.\", \"Two knives are selected.\", \"The person removes a cutting board.\", \"A bowl and container are selected.\", \"The top is cut off the pineapple and placed in the container.\", \"The bottom and sides are removed and placed in the container.\", \"Trimming and cleaning is done on the pineapple.\", \"The person rinsed their hands.\", \"The person rinsed the knife.\", \"The pineapple is sliced into rounds.\", \"The rounds are placed in the bowl.\", \"To end piece is trimmed and the core discarded in the container.\", \"The knives are washed.\", \"The scrap container is emptied into the trash.\", \"She gets out the needed equipment and fruit.\", \"She chops off the top of the fruit.\", \"She cuts off the bottom and sides of the fruit.\", \"She cuts away the last bits of skin.\", \"She slices the fruit and puts it in a bowl.\", \"She cleans up.\", \"Take out a pineapple, a large and small knife, a cutting board, a large bowl, and a plastic container.\", \"Use the large knife to cut off the top and bottom of the pineapple and put them in the plastic container.\", \"Set the pineapple on its end and use the small knife to cut off the peel in strips all around the pineapple.\", \"Use the small knife to trim off any unwanted parts from the pineapple and place these parts and the peel in the plastic container.\", \"Wash off your hands.\", \"Lay the pineapple on its side, rinse off the large knife and use it to slice the pineapple into 1/2 inch thick disks.\", \"Put the pineapple in the large bowl, wash off the knives, and discard the peel and unwanted pineapple parts.\", \"She gets a pineapple.\", \"She gets some knives.\", \"She removes the skin of the pineapple.\", \"She slices the pineapple.\", \"She puts the slices in a bowl.\", \"She puts the last bit of pineapple in the bowl.\", \"She discards the rest of the pineapple.\", \"She gets a pineapple.\", \"She gets knives and a cutting board.\", \"She gets two bowls.\", \"She cuts off the top of the pineapple.\", \"She cuts the skin off the pineapple.\", \"She slices the pineapple.\", \"She puts the slices in a bowl.\", \"She discards the rest of the pineapple.\", \"The person gets out a pineapple.\", \"The person gets out two knives.\", \"The person gets out a cutting board.\", \"The person gets out a bowl.\", \"The person gets out a Tupperware container.\", \"The person cuts off the top and bottom of the pineapple and puts them in the Tupperware container.\", \"The person cuts off the outside of the pineapple and puts it in the Tupperware container.\", \"The person cuts the pineapple into slices and puts them in the bowl.\", \"The person rinses the knives.\", \"The person throws away the trash.\", \"The person takes out a pineapple.\", \"The person takes out a knife and a fruit zester.\", \"The person takes out a cutting board.\", \"THe person takes out a bowl and a plastic container.\", \"Using the large knife (that I thought was a fruit zester), the person cuts the top off of the pineapple.\", \"The person cuts the end off of the pineapple.\", \"Using the small knife, the person stands the pineapple upright, and slices the skin off the pineapple from top to bottom.\", \"Using the small knife, the person picks out all of the small pieces of skin embedded in the pineapple.\", \"The person lays the pineapple on its side and uses the big knife to cut the pineapple width-wise into circle shapes\", \"The person is done.\", \"The person removes a pineapple from the cabinet.\", \"The person removes a small knife and a large knife from the top drawer.\", \"The person removes a metal bowl and a plastic bowl from another drawer.\", \"The person uses the large knife to cut off the top and bottom of the pineapple and places discarded pieces into the plastic bowl.\", \"The person uses the small knife to remove the pineapple rind making sure to get all of it.\", \"The person rinses her hands in the sink\", \"The person rinses the large knife and then uses it to slice the pineapple.\", \"The person places the slices in the metal bowl.\", \"The person trims the bottom of the pineapple putting the fruit in the metal bowl and placing the remaining rind in the plastic bowl.\", \"The person rinses the two knives.\", \"The person discards the contents of the plastic bowl.\", \"The person rinses the plastic bowl.\", \"Slice the skin off by standing the pineapple up and slicing downward.\", \"Slice the top part of the pineapple off.\", \"Take out your knives, cutting board, a bowl and a container for storage.\", \"Slice off excess skin using a small knife.\", \"Use a large knife to slice the pineapple into circular slices.\", \"Slice any excess pieces of fruit from the skin and place everything in the bowl.\", \"Rinse off your knives and dispose of your waste.\", \"The person gets out a pineapple.\", \"The person gets out two knives.\", \"The person gets out a cutting board.\", \"The person gets out a bowl.\", \"The person gets out a Tupperware container.\", \"The person cuts off the top and bottom of the pineapple and puts them in the Tupperware container.\", \"The person cuts off the outside of the pineapple and puts it in the Tupperware container.\", \"The person cuts the pineapple into slices and puts them in the bowl.\", \"The person rinses the knives.\", \"The person throws away the trash.\", \"She took out pineapple\", \"She took out knife\", \"She took out second knife\", \"She took out cutting board\", \"She took out bowl\", \"She took out plastic container\", \"She cut off top of pineapple\", \"She put top of pineapple in plastic container\", \"She cut one slice of pineapple\", \"She cut skin off pineapple\", \"She put skin in plastic container\", \"She cut skin off of pineapple\", \"She sliced pineapple\", \"She took off top of pineapple\", \"The person gets out a pineapple.\", \"The person gets out two knives.\", \"The person gets out a cutting board.\", \"The person gets out a bowl.\", \"The person gets out a Tupperware container.\", \"The person cuts off the top and bottom of the pineapple and puts them in the Tupperware container.\", \"The person cuts off the outside of the pineapple and puts it in the Tupperware container.\", \"The person washes his hands.\", \"The person rinses a knife.\", \"The person cuts the pineapple into slices and puts the slices in the bowl.\", \"The person rinses both knives.\", \"The person throws away the trash.\", \"The person gets out a pineapple.\", \"The person gets out two knives.\", \"The person gets out a cutting board, a Tupperware container and a bowl.\", \"The person cuts off the top of the pineapple and puts it in the Tupperware container.\", \"The person cuts the bottom of the pineapple off and puts it in the Tupperware container.\", \"The person cuts the outside of the pineapple off and puts it in the Tupperware container.\", \"The person cuts the pineapple into slices and puts them in the bowl.\", \"The person rinses the knives.\", \"The person throws away the trash.\", \"The woman sets up her station by grabbing a pine apple, a large and small knife, a cutting board, and a bowl.\", \"With the large knife the woman cuts off the top of the pineapple.\", \"The woman cuts off the bottom of the pineapple.\", \"With the small knife the woman removes the hard outer skin of the pineapple.\", \"The woman removes all of the small hard pits from the outside of the pineapple.\", \"The woman quickly rinses her hands.\", \"With the large knife the woman cut the pineapple into slices.\", \"The woman places the slices into a bowl.\", \"The woman cleans the knifes.\", \"The woman throws away the pineapple crown, and peelings.\", \"The person procures a pineapple from the pantry.\", \"The person removes a large and small knife from the cutlery drawer and places them on the countertop.\", \"The person removes a cutting board, a bowl, and a plastic tub from a drawer.\", \"The person cuts the fronds of the top of the pineapple using the large knife and places it into the plastic tub.\", \"The person carefully removes the scaly peel of the pineapple using the small knife and places the peels into the plastic tub.\", \"The person carefully scrapes off the small bits of peel left with the small knife and places these bits into the plastic tub.\", \"The person rinses her hands off under the faucet.\", \"The person carefully slices the pineapple into thin sections and places them into the bowl.\", \"The person chops up a small section of pineapple and places it into the bowl.\", \"The person rinses the knives in the sink.\", \"The person disposes of the fronds and peels from the plastic tub into the wastebin.\", \"The person rinses the plastic tub in the sink.\", \"She took out pineapple\", \"She took out knife\", \"She took out second knife\", \"She took out cutting board\", \"She took out bowl\", \"She took out container\", \"She cut off top of pineapple\", \"She took out pineapple peel\", \"She washed hands\", \"She washed knife\", \"She sliced pineapple\", \"She washed knife\", \"She threw away scraps\"], \"fps\": 29.4, \"num_frames\": 9233}, \"s27-d21.avi\": {\"timestamps\": [[240, 559], [240, 559], [567, 876], [912, 1420], [1447, 1753], [1884, 2646], [3126, 4207], [240, 559], [567, 1220], [1226, 1753], [1884, 2646], [3126, 4207], [3126, 4207], [240, 559], [567, 876], [912, 1095], [1181, 1467], [1493, 4207], [240, 559], [567, 813], [813, 1095], [1181, 1420], [1447, 1753], [1884, 2646], [3126, 4207], [240, 559], [567, 1095], [1181, 1420], [1447, 1753], [1884, 4207], [240, 559], [567, 1095], [1181, 1753], [1884, 2228], [2341, 2646], [3126, 4207], [240, 559], [567, 1095], [1181, 1420], [1447, 4207], [1447, 4207], [240, 559], [567, 876], [912, 1095], [1181, 1420], [1447, 1753], [1884, 4207], [240, 559], [567, 1095], [1181, 1420], [1447, 1753], [1884, 4207], [240, 559], [567, 1420], [1447, 2646], [3126, 4135], [4135, 4207], [240, 559], [567, 876], [912, 1095], [1181, 1420], [1447, 2228], [2341, 4207], [240, 559], [567, 876], [912, 1359], [1359, 1753], [1884, 2646], [3126, 4207], [240, 559], [567, 876], [912, 1095], [1181, 1420], [1447, 2228], [2341, 2646], [3126, 4135], [240, 559], [567, 813], [813, 1095], [1181, 1420], [1447, 1753], [1884, 2646], [4135, 4207], [240, 559], [567, 813], [813, 1095], [1181, 1420], [1447, 1753], [1884, 4135], [240, 559], [567, 813], [813, 1095], [1181, 1467], [1493, 1753], [1884, 2646], [3126, 4207], [3126, 4207], [240, 559], [567, 1095], [1181, 1420], [1447, 1753], [1884, 2646], [4135, 4207], [4135, 4207]], \"sentences\": [\"Open the refrigerator and get the cucumber.\", \"Place cucumber on the counter.\", \"Open drawer and find a cutting board.\", \"Wash cucumber and place on cutting board.\", \"Open drawer and find a chef's knife.\", \"Cut cucumber into lengthwise strips.\", \"Gather strips and hold them together as you cut the cucumber into cubes using a perpendicular cut.\", \"A man enters the kitchen, retrieves a cucumber from the refrigerator and places it on the counter.\", \"He removes a cutting board and a knife from the drawer and places them on the counter.\", \"He washes the cucumber and removes a second knife from the drawer.\", \"He cuts the cucumber six times lengthwise.\", \"Stacking the six lengthwise slices, he then cuts the cucumber twenty crosswise.\", \"He sets down the knife.\", \"person gets cucumber\", \"person gets cutting board\", \"person gets knife\", \"person washes cucumber\", \"person dices cucumber\", \"The person gets out a cucumber.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the cucumber.\", \"The person gets out another knife.\", \"The person cuts the cucumber lengthwise into slices.\", \"The person chops up the cucumber.\", \"He gets a cucumber.\", \"He gets a cutting board and knife.\", \"He washes the cucumber.\", \"He gets a larger knife.\", \"He chops the cucumber.\", \"The man takes out a cucumber.\", \"The man takes out a cutting board and a knife.\", \"The man gets another knife.\", \"The man slices one half of the cucumber.\", \"The man then slices the other half.\", \"The man cuts the slices into smaller pieces.\", \"He grabs a cucumber.\", \"He grabs a cutting board and knife.\", \"He rinses the cucumber.\", \"He chops the cucumber.\", \"He sets the knife down.\", \"He gets a cucumber.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He rinses the cucumber.\", \"He gets a bigger knife.\", \"He chops the cucumber.\", \"He gets a cucumber.\", \"He gets a cutting board and knife.\", \"He rinses the cucumber.\", \"He gets a bigger knife.\", \"He chops the cucumber.\", \"The man begins by selecting a cucumber from the fridge.\", \"Next, he rinses the cucumber with water.\", \"Next, using a large knife, he cuts the cucumber into long thin slices.\", \"Using the same knife, he then cuts down through the slices creating small chunks.\", \"He finishes after all of the cucumber has been cut.\", \"He took out cucumber\", \"He took out cutting board\", \"He took out knife\", \"He washed cucumber\", \"He cut cucumber long ways\", \"He diced cucumber\", \"Takes out fresh cucumber\", \"Takes out chopping board\", \"Washes cucumber\", \"Takes out chopping knife\", \"Slices cucumber lengthwise\", \"Keeping cucumber together, cuts crosswise\", \"He takes a cucumber from the fridge\", \"He takes out a cutting board\", \"He takes out a knife\", \"He washed the cucumber\", \"He slices half of it lenghtwise\", \"He turns it around and slices the other half also lengthwise\", \"He holds it down and chops it into little squares\", \"The person gets out a cucumber.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the cucumber.\", \"The person gets out another knife.\", \"The person cuts the cucumber into slices lengthwise.\", \"The person cuts the slices into small pieces.\", \"He took out cucumber\", \"He took out cutting board\", \"He took out knife\", \"He washed cucumber\", \"He took out second knife\", \"He chopped cucumber\", \"A cucumber is removed from the refrigerator and placed on the counter.\", \"The person removed a small cutting board.\", \"The person picked out a knife for chopping.\", \"The cucumber was washed and placed on the cutting board.\", \"The person chooses another knife for slicing.\", \"The cucumber is thinly sliced lengthwise.\", \"The cucumber was turned sideways and sliced to form chunks.\", \"A completed chopped cucumber.\", \"The man opens the refrigerator and removes a cucumber.\", \"The man removes a cutting board and knife from the drawer.\", \"The man rinses the cucumber in the sink.\", \"The man chooses a larger knife from the drawer.\", \"The man slices the cucumber lengthwise into narrow slices.\", \"The man stacks the cucumber slices and cuts them crosswise into small pieces.\", \"The man places the knife on the counter.\"], \"fps\": 29.4, \"num_frames\": 4392}, \"s26-d23.avi\": {\"timestamps\": [[244, 674], [703, 909], [918, 964], [964, 1119], [1183, 1291], [1291, 1404], [1491, 2164], [2226, 2756], [244, 674], [703, 964], [964, 1119], [1183, 1339], [1382, 2164], [2226, 2756], [244, 909], [918, 1119], [1183, 1404], [1491, 2164], [2226, 2388], [2407, 2756], [244, 674], [703, 909], [918, 964], [964, 1119], [1183, 1291], [1291, 1404], [1491, 2164], [2226, 2309], [2338, 2712], [244, 674], [703, 999], [999, 1119], [1183, 1339], [1382, 2164], [2728, 2756], [244, 674], [703, 999], [999, 1119], [1183, 1339], [1382, 2164], [2226, 2756], [2226, 2756], [244, 674], [703, 964], [964, 1119], [1183, 1339], [1382, 1404], [1491, 2164], [2226, 2756], [244, 674], [703, 909], [918, 999], [999, 1119], [1183, 1339], [1382, 1404], [1491, 2164], [2226, 2712], [244, 1339], [244, 1339], [244, 1339], [244, 1339], [244, 1339], [1382, 1404], [2226, 2756], [244, 674], [244, 674], [244, 674], [703, 999], [999, 1119], [1183, 1339], [1382, 2164], [2226, 2712], [244, 674], [703, 964], [964, 1119], [1183, 1339], [1382, 1404], [2728, 2756], [244, 964], [964, 1119], [1183, 1339], [1382, 1404], [1491, 2309], [1491, 2756], [244, 674], [703, 1119], [1183, 1339], [1382, 1404], [1491, 2164], [2226, 2309], [2728, 2756], [244, 674], [703, 909], [918, 964], [964, 1119], [1183, 1291], [1291, 1404], [1491, 2388], [1491, 2756], [244, 674], [703, 909], [918, 999], [999, 1119], [1183, 1339], [1382, 1404], [1491, 2164], [2226, 2712], [244, 674], [703, 999], [999, 1119], [1183, 1339], [1382, 1404], [1491, 2164], [2338, 2756], [244, 674], [703, 1119], [1183, 1339], [1382, 1404], [1491, 2164], [2226, 2309], [2338, 2712], [244, 674], [703, 1119], [1183, 1339], [1382, 1404], [1491, 2164], [2226, 2309], [2338, 2756]], \"sentences\": [\"He took out carrot\", \"He took out peeler\", \"He took out knife\", \"He took out cutting board\", \"He washed carrot\", \"He cut off top of carrot\", \"He peeled carrot\", \"He diced carrot\", \"The person gets out a carrot.\", \"The person gets out a vegetable peeler and a knife.\", \"The person gets out a cutting board.\", \"The person rinses the carrot.\", \"The person cuts off the top of the carrot and peels it.\", \"The person chops up the carrot.\", \"A man went to the refrigerator and pulled out one long carrot.\", \"He then pulled out a knife and wooden cutting board.\", \"He washed the carrot in the sink.\", \"He cut the stem off of the carrot with the knife and began peeling the carrot in long thin strips with a peeler.\", \"He cut off either end of the partially peeled carrot with the knife.\", \"He finally chopped the carrot into little pieces with the knife, and left them on the cutting board.\", \"He took out carrots\", \"He took out peeler\", \"He took out knife\", \"He took out cutting board\", \"He washed carrot\", \"He cut off top of carrot\", \"He peeled carrot\", \"He cut off ends of carrots\", \"He chopped carrot\", \"He gets a carrot.\", \"He gets a peeler and a knife.\", \"He gets a cutting board.\", \"He rinses the carrot.\", \"He peels the carrot.\", \"He chops the carrot.\", \"The person selects a carrot from the refrigerator.\", \"The person puts a vegetable peeler and knife on the counter.\", \"The person puts a cutting board on the counter.\", \"The person rinses the carrot with water.\", \"The person peels the carrot with the vegetable peeler.\", \"The person chops the carrot with the knife.\", \"Video ends.\", \"The person procures a carrot from the fridge.\", \"The person takes out a peeler and a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the carrot in the sink.\", \"The person cuts the stem off the carrot.\", \"The person peels the carrot.\", \"The person chops the carrot on the cutting board.\", \"The person gets out a carrot.\", \"The person gets out a vegetable peeler.\", \"The person gets out a knife.\", \"The person gets out a cutting board.\", \"The person rinses the carrot.\", \"The person cuts off the top of the carrot.\", \"The person peels the carrot.\", \"The person chops up the carrot.\", \"He washes the carrot.\", \"He puts a cutting board on the table.\", \"He pulls out a knife.\", \"He gets a parer.\", \"He gets a carrot.\", \"He skins the carrot.\", \"He chops the carrot into small pieces.\", \"The person opens the refrigerator.\", \"The person takes out a carrot from the refrigerator.\", \"The person sets carrot down and opens drawer.\", \"The person selects two kitchen tools.\", \"The person takes out a cutting board.\", \"The person washes the carrot.\", \"The person peels the carrot.\", \"The person chops the carrot.\", \"The person procures a carrot from the fridge.\", \"The person takes out a peeler and a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \" The person washes the carrot in the sink.\", \"The person chops off the stem.\", \"The person peels then chops up the carrot.\", \"person gets peeler and knife\", \"person gets cutting board\", \"person washes carrot\", \"person cuts off end of carrot\", \"person peels carrot into slices\", \"person dices carrot\", \"The guy grabbed a carrot out of the fridge.\", \"The guy got a knife, vegetable peeler and cutting board out of the kitchen drawers.\", \"He washed the carrot in the sink.\", \"He cut the green top off the carrot.\", \"He peeled the entire carrot with the vegetable peeler.\", \"He cut the top and bottom parts of the carrot off.\", \"He cut the entire carrot into smaller, circular pieces.\", \"He took out carrot\", \"He took out peeler\", \"He took out knife\", \"He took out cutting board\", \"He washed carrot\", \"He cut off top of carrot\", \"He peeled carrot\", \"He chopped carrot\", \"The person gets out a carrot.\", \"The person gets out a vegetable peeler.\", \"The person gets out a knife.\", \"The person gets out a cutting board.\", \"The person rinses the carrot.\", \"The person cuts off the top of the carrot.\", \"The person peels the carrot.\", \"The person cuts the carrot into slices.\", \"The person gets out a carrot.\", \"The person gets out a vegetable peeler and a knife.\", \"The person gets out a cutting board.\", \"The person rinses the carrot.\", \"The person cuts off the top of the carrot.\", \"The person peels the carrot.\", \"The person cuts the carrot into slices.\", \"Obtain Carrot from fridge\", \"Gather peeler, knife, and cutting board\", \"Rinse Carrot\", \"cut leaves away from carrot head\", \"Peel outer skin in lengthwise strips\", \"trim head an heel from carrot\", \"Chop carrot into coins\", \"The man opens the refrigerator and removes a carrot.\", \"The man removes utensils and a cutting board from the drawer.\", \"The man rinses the carrot in the sink.\", \"The man uses a large knife to cut the stems off the carrot.\", \"The man peels the carrot with a peeler.\", \"The man cuts both ends off of the carrot.\", \"The man slices the carrot into small pieces.\"], \"fps\": 29.4, \"num_frames\": 2826}, \"s21-d29.avi\": {\"timestamps\": [[11, 318], [318, 496], [551, 867], [867, 1422], [1502, 1572], [1575, 1764], [11, 318], [318, 496], [551, 695], [551, 695], [720, 867], [867, 1055], [1078, 1422], [1502, 1572], [11, 265], [265, 496], [551, 908], [926, 1422], [1575, 1764], [11, 265], [265, 496], [551, 695], [720, 813], [813, 1422], [1502, 1572], [1502, 1764], [11, 318], [318, 496], [551, 695], [720, 813], [813, 1055], [1078, 1422], [1502, 1572], [1575, 1764], [11, 318], [318, 496], [551, 695], [720, 867], [867, 1055], [1078, 1422], [1502, 1572], [1575, 1764], [1575, 1764], [11, 265], [265, 496], [551, 1055], [1078, 1422], [1575, 1764], [11, 265], [265, 496], [551, 908], [926, 1422], [1502, 1764], [11, 318], [318, 496], [551, 813], [813, 1422], [1502, 1572], [1502, 1764], [11, 265], [265, 496], [551, 695], [720, 813], [813, 1422], [1502, 1572], [1575, 1764], [11, 265], [265, 496], [551, 813], [813, 1422], [1575, 1764], [11, 318], [318, 496], [551, 908], [926, 1055], [926, 1055], [1078, 1422], [11, 265], [265, 496], [551, 695], [720, 867], [867, 1422], [1502, 1764], [11, 318], [318, 496], [551, 908], [926, 1055], [1078, 1422], [1502, 1764], [11, 496], [551, 695], [720, 813], [813, 867], [867, 908], [926, 1055], [1078, 1381], [1381, 1422], [1502, 1572], [1502, 1764]], \"sentences\": [\"Girl takes out knife\", \"Girl takes out cutting board\", \"Girl washes herbs\", \"Girl chops herbs\", \"Girl throws away unused part\", \"Girl puts away rest of herbs\", \"get out a knife\", \"also get out cutting board\", \"rip off some fresh herbs from plant\", \"wash herbs\", \"shake off excess water\", \"hold herbs and slice them\", \"throw away any pieces that are not edible\", \"put herb plant in refrigerator\", \"She grabs a knife.\", \"She grabs a cutting board.\", \"She grabs the herbs and rinses them.\", \"She chops the herbs.\", \"She puts the plant in the fridge.\", \"She took out knife\", \"She took out cutting board\", \"She took some herbs\", \"She washed herbs\", \"She chopped herbs\", \"She threw away scraps\", \"She put away herbs\", \"Gets a cutting knife.\", \"Gets a wooden cutting board.\", \"Picks chives.\", \"Washes chives.\", \"Arranges chives so ends are equal.\", \"Cuts chives completely.\", \"Throws away unwanted pieces.\", \"Places chives in refrigerator.\", \"The person puts a knife on the counter.\", \"The person puts a cutting board on the counter.\", \"The person breaks off some fresh herbs from the plant.\", \"The person rinses the herbs.\", \"The person removes the wilted pieces.\", \"The person chops up the herbs with the knife.\", \"The person throws the discarded pieces in the trash.\", \"The person puts the fresh herb plant back in the refrigerator.\", \"The video ends.\", \"Lady is in the kitchen and opens the drawer to find an utensil. She finds a knife and sets it on the counter.\", \"She then reaches below the first drawer and pulls out a cutting board.\", \"She washes off the herb she is preparing in the sink and knocks off as much water as she can. She then places the herb onto the cutting board and starts to cut them into small pieces.\", \"She finished cutting the herb and throws away the parts she does not want into a trash can.\", \"She then places the herb back into the fridge and wipes any excess away from her hands.\", \"The person got out a knife.\", \"The person got out a cutting board.\", \"The person got some herbs and rinsed them in the sink.\", \"The person chopped up the herbs.\", \"The person threw away the scraps.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person grabs from herbs stalks from the counter and washes them in the sink.\", \"The person chops the herbs on the cutting board.\", \"The person throws the stalk ends into the wastebin.\", \"The person returns the herb plant to the fridge.\", \"She took out knife\", \"She took out cutting board\", \"She took out herbs\", \"She washed herbs\", \"She chopped up herbs\", \"She threw away scraps\", \"She put away unused herbs\", \"person gets out knife\", \"person gets out cutting board.\", \"person washes herbes\", \"person dices herbs\", \"person puts back left over herbs in fridge\", \"Select a knife with a sharp blade.\", \"Select a cutting board.\", \"Rinse the herbs.\", \"Pile herbs on cutting board.\", \"Remove withered pieces.\", \"Chop herbs into 1/4 inch pieces.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person gets out some herbs.\", \"The person rinses the herbs.\", \"The person chops up the herbs.\", \"The person puts the herb plant in the refrigerator.\", \"The person takes a knife out of a drawer and puts it on the table.\", \"The person puts a plate on the table.\", \"The person gets some herbs, rinses them, and puts them on the plate.\", \"The person arranges the herbs on the plate.\", \"The person cuts the herbs and throws something out.\", \"The person puts the rest of the herbs in the refrigerator.\", \"Prepare by getting a knife and a cutting board.\", \"Take one handful of vegetables.\", \"Rinse the vegetables under the faucet.\", \"Shake any excess water into the sink.\", \"Place the vegetables on the cutting board.\", \"Remove any unwanted parts of the vegetables.\", \"Using the knife, slice the vegetables perpendicularly into small parts.\", \"Remove any vegetable that is sticking to the knife blade.\", \"Gather and throw away the unused vegetable parts.\", \"Refrigerate any remaining unused and uncut vegetables.\"], \"fps\": 29.4, \"num_frames\": 1865}, \"s21-d39.avi\": {\"timestamps\": [[146, 344], [345, 435], [439, 584], [612, 842], [882, 1074], [1074, 1394], [1394, 1657], [1717, 2620], [2725, 2836], [2883, 3012], [3124, 3557], [146, 344], [345, 584], [612, 842], [882, 1657], [1717, 3342], [3557, 3701], [146, 344], [345, 435], [439, 584], [612, 765], [769, 1032], [1032, 1394], [1394, 1545], [1545, 1657], [1717, 2620], [2725, 2836], [2883, 3342], [146, 344], [345, 584], [612, 842], [882, 1657], [1717, 3342], [3395, 3701], [146, 344], [345, 584], [612, 842], [882, 1479], [1479, 2620], [2725, 3012], [3395, 3701], [146, 344], [345, 1117], [1201, 1479], [1479, 1657], [1717, 2807], [2807, 3012], [3124, 3461], [146, 344], [345, 435], [439, 584], [612, 842], [882, 1479], [1479, 1657], [1717, 2620], [2725, 3342], [3395, 3701], [3395, 3701], [146, 344], [345, 435], [439, 584], [612, 765], [769, 1657], [1717, 2620], [2725, 3342], [3475, 3701], [146, 344], [345, 435], [439, 584], [612, 842], [882, 1074], [1074, 1479], [1479, 1657], [1717, 2620], [2725, 3012], [3124, 3342], [146, 344], [345, 435], [439, 584], [612, 765], [769, 1117], [1201, 1394], [1394, 1657], [1717, 2620], [2725, 2927], [2964, 3012], [3395, 3557], [146, 344], [345, 435], [439, 584], [612, 842], [882, 1657], [1717, 2620], [2725, 3342], [3395, 3557], [146, 344], [345, 435], [439, 584], [612, 842], [882, 1074], [1074, 1394], [1394, 1657], [1717, 2620], [2725, 3342], [3395, 3638], [146, 584], [612, 765], [769, 1657], [1717, 2620], [2725, 3342], [3395, 3528], [146, 656], [662, 1657], [1717, 2620], [2725, 3342], [3557, 3638], [146, 344], [345, 435], [439, 584], [612, 765], [769, 1117], [1201, 1479], [1479, 1657], [1717, 2620], [2725, 3342], [3395, 3557]], \"sentences\": [\"She took out leek\", \"She took out cutting board\", \"She took out knife\", \"She cut off top and bottom of leek\", \"She took out pan\", \"She put water in pan\", \"She turned on stove\", \"She sliced leek\", \"She washed leek\", \"She put leek on stove\", \"She added salt to pot\", \"A woman enters the kitchen, removes a leek from the cupboard and places it on the counter.\", \"She then removes a cutting board and a knife from the drawer and places them on the counter.\", \"She cuts the bottom and the top off of the leek.\", \"She retrieves a pot from a drawer, fills it with water, places it on the stove, turns on the stove and puts the lip on the pot.\", \"She cuts the usable portion of the leek crosswise, rinses the pieces in the sink and puts them into the pot.\", \"She adds some salt to the pot of water and leeks.\", \"She took out leek\", \"She took out cutting board\", \"She took out knife\", \"She cut off ends of leek\", \"She took out pot\", \"She put water in pot\", \"She put pot on stove\", \"She turned on stove\", \"She sliced the leek\", \"She washed the leek\", \"She put the leek in the pot\", \"A woman enters the kitchen, takes a leek from the pantry and places it on the counter.\", \"She removes a cutting board and a knife from the drawer and places them on the counter.\", \"She cuts the bottom and the top of the leek and set them aside.\", \"She removes a pot from the drawer, adds some water, places it on the stove, adjusts the heat and put the lid on.\", \"She cuts the entire length of the leek crosswise, rinses it under water and places it in the pot.\", \"She adds some salt to the pot.\", \"A lady enters the kitchen and pulls out onions.\", \"She sets them on the counter and pulls out a cutting board and knife.\", \"She cuts away the parts of the onion she does not want and sets them aside.\", \"She pulls out a pot, fills it with water, and placed the pot onto the stove to boil the water.\", \"She then cuts the onion into very small pieces.\", \"She then takes the pieces of the onion she just cut up into her hands, washes them in two groups, and places the onions into the pot of water.\", \"She goes and grabs some salt to add to the boiling onions, while trying to get the excess water off her hands. She then puts the salt away and the video ends.\", \"Prepares to cut leek.\", \"Puts water in pot.\", \"Puts pot on stove to boil water.\", \"Slices leek.\", \"Washes handfuls of leek.\", \"Puts leek in pot.\", \"Adds salt to water.\", \"A leek is removed from a cabinet.\", \"The person removes a cutting board.\", \"The person selects a knife.\", \"The bottom and top are cut off.\", \"A pot is removed and filled with water.\", \"The pot is placed on the stove and the stove is turned on.\", \"The leek is sliced.\", \"The pieces are rinsed and placed in the pot.\", \"Seasoning is added to the pot.\", \"The leeks are cooking.\", \"The person takes the leeks from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts the bottom and top off the leeks.\", \"The person takes out a pot from the drawer, fills it with water, places it on the stove, turns the stove on and cover the pot with a lid.\", \"The person chops the leeks on the cutting board.\", \"The person washes the chopped leeks in the sink and drops them into the pot on the stove.\", \"The person adds salt to the water.\", \"The woman walks to the cupboard, opens the door, removes a leek and closes the door.\", \"She walks to the counter, sets down the leek, opens a drawer, removes a cutting board and closes the drawer.\", \"She opens the drawer again, removes a knife and closes the drawer.\", \"She picks up the leek, cuts away the very top of root and the green stems. She places the knife and the discarded parts on the counter.\", \"The woman opens another drawer and removes a sauce pan.  She places it on the stove and closes the drawer.\", \"She removes the lid off the pan, picks up the pan and takes it to the sink.  She adds some water to the pan, then returns it to the stove top.\", \"She turns the burner on and places the lid on the pan.\", \"She pics up the knife and begins cutting the leek into small pieces.\", \"The woman picks up half of the cut leeks, goes to the sink, rinses them and puts them in the pan.\", \"She repeats the exact process with the second half of the cut leeks.\", \"Girl takes out leeks\", \"Girl takes out cutting board\", \"Girl takes out knife\", \"Girl cuts off top and bottom of leek\", \"Girl takes out pan\", \"Girl puts some water in pan\", \"Girl turns on heat\", \"Girl chops up leek\", \"Girl washes leek\", \"Girl puts leek in pan\", \"Girl adds salt to pan\", \"The person takes the leeks from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts the bottom and top off the leeks.\", \"The person takes out a pot from the drawer, fills it with water, places it on the stove, turns the stove on and cover the pot with a lid.\", \"The person chops the leeks on the cutting board.\", \"The person washes the chopped leeks in the sink and drops them into the pot on the stove.\", \"The person adds salt to the water.\", \"The person gets out a leek.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts off what look like the roots and leaves of the leek, leaving just the stem.\", \"The person gets out a pan.\", \"The person fills the pan with water.\", \"The person puts the pan on the stove and turns it on.\", \"The person cuts the leek into small pieces.\", \"The person takes the pieces one handful at a time, rinses them and puts them in the pan.\", \"The person adds salt to the leek.\", \"The woman gets out a leek, a cutting board, and a knife.\", \"The woman cuts off the end and the greens of the leek.\", \"The woman places a medium pot on the stove with 1 inch of water, covers it, and preheats it.\", \"The woman slices the leek.\", \"The woman rinses the leek with water and places it in the hot water.\", \"The woman adds salt to the pot.\", \"Preparer has taken out leek, cutting board and knife and cut ends off of leek\", \"Preparer has taken out pot, filled with water, placed on stove, started stove, and covered pot\", \"Preparer has sliced middle of leek into small slices\", \"Preparer has washed slices and placed into pot\", \"Preparer has retrieved seasoning from cabinet and added it to pot with leeks and returned it to cabinet\", \"The person gets out a leek.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts off the top and bottom of the leek.\", \"The person gets out a pot.\", \"The person fills the pot with water.\", \"The person puts the pot on the stove and turns it on.\", \"The person chops up the leeks.\", \"The person rinses the pieces of leek and puts them in the pot.\", \"The person adds salt to the leek.\"], \"fps\": 29.4, \"num_frames\": 3758}, \"s13-d48.avi\": {\"timestamps\": [[219, 354], [396, 784], [784, 1576], [1667, 1809], [1809, 2008], [2092, 2787], [2801, 2993], [219, 784], [784, 1576], [1667, 1809], [1809, 2787], [3030, 3065], [219, 443], [443, 833], [891, 1169], [1201, 1576], [1201, 1576], [1667, 1859], [1899, 2008], [2092, 2787], [2801, 2993], [2801, 3065], [219, 354], [396, 784], [784, 1576], [784, 1576], [1667, 2787], [219, 1576], [1667, 1859], [1899, 2008], [2092, 2787], [3030, 3065], [219, 354], [396, 784], [784, 1169], [1201, 1576], [1667, 1859], [1899, 2008], [2092, 2787], [2801, 3065], [2801, 3065], [219, 354], [396, 833], [891, 1576], [891, 1576], [1667, 2008], [2801, 2993], [219, 833], [891, 1576], [1667, 1809], [1809, 2787], [2801, 3065], [219, 354], [396, 784], [784, 1169], [1201, 1576], [1667, 1809], [1809, 2787], [219, 354], [396, 784], [784, 1169], [1201, 1576], [1667, 1859], [1899, 2787], [2801, 2993], [219, 784], [784, 1576], [1667, 1809], [1809, 2787], [3030, 3065], [219, 833], [891, 1576], [1667, 2008], [2092, 2787], [2092, 3065], [219, 833], [891, 1576], [1667, 2008], [2801, 2993], [3030, 3065], [219, 354], [396, 833], [891, 1169], [1201, 1576], [1667, 1809], [1809, 2008], [2092, 2787], [2801, 3065], [219, 354], [396, 784], [784, 1169], [1201, 1576], [1667, 1859], [2092, 2993], [2801, 3065]], \"sentences\": [\"Person takes out cutting board\", \"Person takes out knife\", \"Person takes out chili and plate\", \"Person rinses the chili.\", \"Person dries hands.\", \"Person chops chili into small slices.\", \"Person puts chili onto plate.\", \"The man enters the kitchen and takes a cutting board and knife from the drawers.\", \"The man gets a chili and plate from the cabinets.\", \"The man rinses the chili in the sink.\", \"The man holds the chili on the cutting board, then takes the knife and carefully goes down a straight line and dices it.\", \"The man uses the knife to move the chili to the awaiting plate.\", \"The person places a cutting board on the counter.\", \"The man places a large knife on the counter.\", \"The person selects a fresh chili from the cabinet.\", \"The man selects a small dish from the cabinet.\", \"The man places the dish on the counter.\", \"The man rinses the chili with water.\", \"The man dries his hands on a towel.\", \"The man finely chops the chili.\", \"The man scoops the chopped chili into the dish.\", \"The video ends.\", \"He gets out a circular cutting board.\", \"He pulls out a knife.\", \"He takes out a plate and a chili pepper\", \"He washes the chili.\", \"He cuts the pepper into small pieces.\", \"The person got out a cutting board, a knife, and a small plate.\", \"The person washed the chili pepper.\", \"The person dried his hands on a towel.\", \"The person sliced the chili pepper.\", \"The person put the chili pepper on the small plate.\", \"Selects a chopping board\", \"selects a knife\", \"he turns around and walks to the cuppards in back where he takes out a pepper\", \"he selects a plate from the cubbard next and returns them both to the chopping board\", \"He washes the pepper\", \"Drys his hands off\", \"he dices the pepper\", \"moves the pepper to the plate\", \"Arranges the pepper on the plate\", \"He gets out a circular cutting board.\", \"He gets a knife.\", \"He gets a chili pepper and a small plate.\", \"He washes the pepper.\", \"He starts cutting the pepper.\", \"He puts the peppers on the plate.\", \"Get out your Cutting Board and a Knife\", \"Take out Chili Pepper and a Plate\", \"Wash Pepper\", \"Slice Pepper into small Pieces\", \"Place prepared Chili Pepper on plate\", \"He took out cutting board\", \"He took out knife\", \"He took out chili\", \"He took out plate\", \"He washed chili\", \"He diced chili\", \"He took out cutting board\", \"He took out knife\", \"He took out chili\", \"He took out plate\", \"He washed chili\", \"He diced chili\", \"He put chili on plate\", \"The person places a cutting board and knife on the counter.\", \"The person places a plate on the counter.\", \"The person rinses the chili.\", \"The person chops the chili in to thin lateral slices.\", \"The person places the chopped chili on the plate.\", \"The person grabs a cutting board, and a large knife placing them on the counter.\", \"The person grabs a fresh chili, and a small plate placing the plate on the counter.\", \"The person washes the chili in the sink, places it on the cutting board, and dries his hands.\", \"The person takes the knife, and chops the chili into small pieces leaving the end whole.\", \"The person takes the knife, and slides the chopped chili from the cutting board to the small plate.\", \"The man enters the kitchen and retrieves a cutting board and knife from the cabinet.\", \"The man then retrieves a chili pepper and dish from the cabinet and places them on the counter.\", \"The man washes the chili pepper in the sink, and then dries his hands on a towel.\", \"The man thinly dices the chili and places it onto a plate.\", \"The man moves the plate with the chili pieces higher on the counter.\", \"The person takes a chopping board out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person takes a chilli out of the cupboard.\", \"The person takes a plate out of the cupboard.\", \"The person rinses the chilli with water.\", \"The person dries his hands on a towel.\", \"The person slices the chilli into small pieces.\", \"The person uses the knife to transfer the sliced chilli onto the plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out chili\", \"He took out plate\", \"He washed chili\", \"He diced chili\", \"He put chili on plate\"], \"fps\": 29.4, \"num_frames\": 3212}, \"s22-d34.avi\": {\"timestamps\": [[251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [251, 602], [629, 736], [769, 1025], [1053, 2219], [1053, 2219], [251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [1053, 2219], [251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [251, 678], [678, 736], [769, 876], [910, 1025], [910, 1025], [251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [251, 602], [629, 678], [678, 876], [910, 1025], [1053, 2219], [251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [251, 602], [629, 736], [769, 876], [910, 1025], [1053, 2219], [251, 602], [251, 602], [251, 602], [629, 678], [678, 736], [769, 876], [769, 876], [910, 1025], [1053, 2219], [1053, 2219]], \"sentences\": [\"She took out ginger\", \"She washed ginger\", \"She took out cutting board\", \"She took out knife\", \"She cut up ginger\", \"She took out ginger\", \"She washed ginger\", \"She took out cutting board\", \"She took out knife\", \"She sliced ginger\", \"The person takes some ginger from the pantry.\", \"The person washes the ginger in the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person slices the ginger on the cutting board.\", \"The woman takes the ginger from the cabinet.\", \"The woman rinses the ginger under the tap.\", \"She gathers a knife and cutting board.\", \"The woman slices the ginger.\", \"The woman cuts the last tip of ginger in half.\", \"The woman walks to a cupboard, opens the door, removes some ginger and closes the door.\", \"She walks to the sink, turns on the faucet and rinses the ginger. She shakes off excess water.\", \"She opens a drawer and removes a small cutting board. She places it on the counter, then she places the ginger on the cutting board. She closes the drawer.\", \"She opens another drawer, selects a knife and closes the drawer.\", \"The woman to cut the ginger into small slices.\", \"She sets the knife down when she has finished.\", \"The person takes some ginger root from the pantry.\", \"The person washes the ginger in the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person slices the ginger on the cutting board.\", \"She gets a clove of ginger.\", \"She washes the ginger.\", \"She gets a small cutting board.\", \"She gets a knife.\", \"She starts cutting the ginger thinly.\", \"The person gets out some ginger.\", \"The person rinses the ginger.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person chops up the ginger.\", \"Lady enters kitchen and opens pantry.\", \"Woman pulls out a ginger and washes it.\", \"Woman places ginger on cutting board.\", \"Woman begins to cut ginger.\", \"Woman sets down knife and looks up.\", \"The person gets the ginger from the cabinet.\", \"Then rises off the ginger in kitchen sink.\", \"Take cutting board from cabinet and sets on counter.\", \"Gets knife out from kitchen door.\", \"The person cuts the ginger into thin slices.\", \"The person takes fresh ginger root from the pantry.\", \"The person rinses the ginger root.\", \"The person lays the ginger root on a cutting board.\", \"The person gets a sharp knife.\", \"The person uses the knife to thinly slice the ginger root into medallions.\", \"The woman opens the cabinet and removes a vegetable.\", \"She rinses the vegetable in the sink.\", \"She removes a cutting board from the drawer and places it on the counter.\", \"She removes a knife from the drawer.\", \"She slices the vegetable into small crosswise pieces.\", \"She walks to the cupbard.\", \"She opens the cupbard and takes out a peice of ginger or potato.\", \"She closes the cupboard back.\", \"She walks to the sink and rinses the ginger or potato.\", \"She opens the drawer.\", \"She pulls out a cutting board.\", \"She places the ginger or potato on the cutting board while closing the drawer with her knees.\", \"She opens the top drawer and pulls out a knife.\", \"She cuts the ginger or potato with a knife.\", \"She places the knife on the cutting board.\"], \"fps\": 29.4, \"num_frames\": 2385}, \"s22-d53.avi\": {\"timestamps\": [[278, 521], [521, 1080], [1080, 1383], [1392, 1902], [1987, 2215], [2249, 2374], [2395, 2713], [2760, 4595], [4741, 4851], [4884, 5901], [278, 572], [609, 1433], [1461, 2215], [2249, 4851], [5923, 5960], [278, 572], [609, 1433], [1461, 1902], [1987, 2215], [2249, 4595], [4884, 5960], [278, 855], [883, 1080], [1080, 1383], [1392, 1902], [1987, 2215], [2249, 2556], [2582, 2713], [2760, 4595], [4741, 4851], [4884, 5145], [5177, 5901], [278, 855], [883, 1433], [1461, 1902], [1987, 2215], [2249, 4851], [4741, 5960], [278, 521], [521, 1383], [1392, 1902], [1987, 2215], [2249, 4595], [4741, 4851], [5923, 5960], [278, 521], [521, 855], [883, 1148], [1152, 1433], [1461, 1902], [1987, 2374], [2395, 2713], [2760, 4851], [4884, 5145], [4884, 5960], [278, 521], [521, 1080], [1080, 1148], [1152, 1902], [1987, 2052], [2100, 2215], [2249, 2374], [2395, 2713], [2760, 4595], [278, 855], [883, 1433], [1461, 1811], [1836, 2052], [2100, 2374], [4741, 4851], [4884, 5901], [278, 521], [278, 521], [521, 855], [883, 1080], [1080, 1148], [1080, 1148], [1152, 1811], [1836, 2052], [2100, 2374], [2395, 4595], [2395, 5048], [5048, 5901], [278, 572], [609, 1148], [1152, 1811], [1836, 1902], [1987, 2215], [2249, 4595], [4741, 4851], [4884, 5276], [5299, 5529], [5541, 5901], [278, 521], [521, 1080], [1080, 1383], [1392, 1902], [1987, 2052], [2100, 4595], [4884, 5960], [278, 572], [609, 1383], [1392, 1902], [1987, 2052], [2100, 4595], [4741, 5901], [278, 521], [521, 1080], [1080, 1383], [1392, 1902], [1987, 2215], [2249, 2374], [4741, 4851], [4884, 5075]], \"sentences\": [\"She took out the avocado\", \"She took out a cutting board\", \"She took out a knife\", \"She cut the avocado in half\", \"She threw away the pit\", \"She washed her hands\", \"She took out a peeler\", \"She peeled the avocado\", \"She threw away the peels\", \"She cut up the avocado\", \"The woman takes a avocado out to prepare it.\", \"She pulls out a knife and cutting board.\", \"The woman cuts it in half and uses her fingers to remove the pit.\", \"The woman peels the avocado.\", \"She slices the peeled avocado into smaller pieces ready to serve.\", \"She gets out an avocado and removes the sticker.\", \"She gets out a cutting board and knife.\", \"She cuts the avocado in half.\", \"She removes and discards the pit.\", \"She removes the skins.\", \"She chops the avocado.\", \"The person gets out an avocado.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts the avocado in half.\", \"The person removes and throws away the pit.\", \"The person rinses her hands and gets out a towel.\", \"The person gets out a vegetable peeler.\", \"The person peels both halves of the avocado.\", \"The person throws away the peel.\", \"The person rinses and dries her hands.\", \"The person chops up the avocado.\", \"She gets an avocado and removes the sticker.\", \"She gets a knife and cutting board.\", \"She cuts the avocado in half.\", \"She removes and throws away the pit.\", \"Se peels the avocado and discards the peels.\", \"She cuts up the avocado.\", \"She gets an avocado.\", \"She gets a cutting board and knife.\", \"She cuts it in half.\", \"She removes the pit and throws it away.\", \"She peels the avocado.\", \"She discards the peels.\", \"She slices the avocado.\", \"The person procures an avocado from the fridge.\", \"The person peels a sticker from the avocado then throws it in the trash.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person slices the avocado in the middle and then pries it into two.\", \"The person takes the pit from the avocado, puts it in the trash, then washes her hands.\", \"The person takes out a peeler from the drawer.\", \"The person peels both halves of the avocado and then throws the peels into the wastebin.\", \"The person washes her hands and dries them on towel.\", \"The person chops the avocado on the cutting board.\", \"She took out avocado\", \"She took out cutting board\", \"She took out knife\", \"She cut avocado in half\", \"She took out pit\", \"She threw out pit\", \"She washed hands\", \"She took out peeler\", \"She peeled avocado\", \"The woman begins by selecting an avocado from the fridge.\", \"Next, she retrieves a small wooden cutting board as well as a knife.\", \"She uses the knife to cut around the entire avocado.\", \"She pulls the avocado into two halves and removes the pit.\", \"After discarding the pit she washing her hands.\", \"She removes the skin from the two halves and then discards it.\", \"Finally, she uses the knife to cut the avocado into small cubes.\", \"She opened the refrigerator door.\", \"She got an avocado out.\", \"She opened a drawer.\", \"She got out a cutting board/plate.\", \"She closed the drawer.\", \"She picked a knife.\", \"She cut the avocado in half.\", \"She took out the pit.\", \"She washed her hands.\", \"She peeled the avocado.\", \"She threw away the peel and washed her hands.\", \"She cut the avocado into pieces.\", \"The person removes the avocado from the refrigerator and places it on the counter.\", \"The person places a cutting board on the counter.\", \"The person uses a paring knife to make a single axial cut all the way around the avocado.\", \"The person seperates the avocado halves.\", \"The person removes the avocado pit using hands and discards it.\", \"The person uses hands and a vegetable peeler to remove the outer skin from the avocado halves.\", \"The person discards the outer peel of the avocado.\", \"The person cuts half of the avocado in half again axially.\", \"The person chops the quarters of the avocado into large chunks.\", \"The person repeats the same cuts and chops with the other half of the avocado.\", \"The person got the avocado out of the fridge.\", \"The person got out a cutting board.\", \"The person got a knife.\", \"The person cut the avocado in half.\", \"The person took the pit out of the avocado.\", \"The person peeled the skin off the avocado.\", \"The person diced the avocado.\", \"She takes out an avocado\", \"She takes out a cutting board and knife\", \"She sliced the avocado in half\", \"She takes out the avocado seed\", \"She takes the skin off of both avocado halves\", \"She chops the avocado into squares\", \"She took out avocado\", \"She took out cutting board\", \"She took out knife\", \"She cut avocado in half\", \"She threw away pit\", \"She washed hands\", \"She threw away peels\", \"She washed hands\"], \"fps\": 29.4, \"num_frames\": 5997}, \"s17-d48.avi\": {\"timestamps\": [[181, 720], [741, 1050], [1052, 1228], [1245, 1284], [1354, 1952], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1433], [2007, 2063], [181, 720], [741, 1116], [1157, 1284], [1354, 1952], [1473, 2063], [181, 720], [741, 833], [873, 1050], [1052, 1284], [1354, 1433], [1473, 1952], [181, 720], [181, 720], [741, 833], [873, 1284], [1354, 1952], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1284], [1354, 1433], [1473, 1952], [181, 720], [741, 833], [873, 1050], [1052, 1228], [1245, 1433], [1473, 1952], [181, 720], [741, 1116], [1157, 1228], [1245, 1284], [1354, 1952], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1433], [2007, 2063], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1433], [1473, 1952], [181, 720], [181, 720], [181, 720], [741, 833], [873, 1050], [1052, 1228], [1245, 1433], [1473, 1952], [181, 720], [741, 1116], [1157, 1228], [1245, 1433], [2007, 2063], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1433], [2007, 2063], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1284], [1354, 1433], [2007, 2063], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1284], [1354, 1433], [2007, 2063], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1433], [2007, 2063], [181, 720], [741, 833], [873, 1116], [1157, 1228], [1245, 1433], [1473, 2063], [181, 720], [181, 720], [181, 720], [181, 720], [741, 833], [873, 1050], [1052, 1116], [1052, 1116], [1157, 1228], [1245, 1284], [1354, 1433]], \"sentences\": [\"The man takes a chili pepper out of the fridge.\", \"He proceeds to wash the pepper.\", \"Then he grabs a large cutting knife.\", \"He cuts the stem off of the pepper.\", \"He minces the pepper using the cutting knife.\", \"The person gets out a chili.\", \"The person gets out a wooden plate.\", \"The person rinses the chili.\", \"The person gets out a knife.\", \"The person cuts off the top of the chili and throws it away.\", \"The person chops up the chili.\", \"The person removes a chili from the refrigerator.\", \"The person rinses off the chili.\", \"The person removes the stem of the chili.\", \"The person chops the chili.\", \"The person removes excess chili from the knife.\", \"person gets chilli from refrigerator\", \"person gets cutting board\", \"person wash chilli pepper under water\", \"person cuts the end of pepper\", \"person throws tip of pepper out\", \"person chops pepper in thin slices\", \"He gets a chili.\", \"He puts it on the counter.\", \"He gets out a cutting board.\", \"He washes the chili, then cuts off the top.\", \"He chops the chili.\", \"The person takes the chili pepper out of the fridge.\", \"The person takes the cutting board out.\", \"The person rinses off the chili.\", \"The person takes out a knife.\", \"The person cuts the top off the chili.\", \"The person throws the chili top in the garbage.\", \"The person slices the chili pepper.\", \"The person takes a fresh chili from a bag in the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the chili in the sink.\", \"The person takes out a knife from the drawer.\", \"The person cuts the stem from the chili and puts it into the wastebin.\", \"The person chops the chili pepper on the cutting board.\", \"He selects a chili pepper.\", \"He washes the chili pepper.\", \"He gets a knife out to cut the pepper.\", \"He cuts off the green stem.\", \"He slices the whole chili pepper.\", \"The person removes one chili pepper from a bag in the refrigerator and sets it on the counter.\", \"The person retrieves a round cutting board from the drawer and sets it on the counter.\", \"At the sink, the person rinses the chili pepper under running water, shakes the pepper slightly to remove excess water and places it on the cutting board.\", \"The person retrieves a large knife from the drawer.\", \"Using the knife, the person slices the stem from the top of the chili and discards the stem in the trash.\", \"Using the knife, the person carefully chops the entire chili into small, thin, round slices.\", \"The person takes a fresh chili from a bag in the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the chili in the sink.\", \"The person takes out a knife from the drawer.\", \"The person cuts the stem from the chili and puts it into the wastebin.\", \"The person chops the chili pepper on the cutting board.\", \"Man walks into kictchen.\", \"Man opens fridge and takes out chilies.\", \"Man smells chili.\", \"Man sets chili on counter and pulls out cutting board.\", \"Man washes chili.\", \"Man places chili on cutting board and pulls out knife.\", \"Man cuts off top and throws away.\", \"Man slices chili.\", \"The person gets one red pepper from the refrigerator.\", \"The pepper is washed.\", \"The person gets a knife.\", \"The end of the pepper is cut off and thrown away.\", \"The pepper is cut up.\", \"The person gets out a chili.\", \"The person gets out a wooden plate.\", \"The person rinses the chili.\", \"The person gets out a knife.\", \"The person cuts off the top of the chili and throws it away.\", \"The person cuts up the rest of the chili.\", \"This person takes a fresh chilli out of the refrigerator.\", \"This person takes out the cutting board.\", \"This person washes the chilli.\", \"This person takes out the knife from the drawer.\", \"This person cuts off the stem of the chilli.\", \"This person discards the chilli.\", \"This person chops the chilli into thin slices.\", \"The person gets out a chili.\", \"The person gets out a wooden plate.\", \"The person rinses the chili.\", \"The person gets out a knife.\", \"The person cuts off the top of the chili.\", \"The person throws away the top of the chili.\", \"The person chops up the chili.\", \"The person gets out a chili.\", \"The person gets out a wooden plate.\", \"The person rinses the chili.\", \"The person gets out a knife.\", \"The person cuts off and throws away the top of the chili.\", \"The person cuts up the rest of the chili.\", \"The person gets out a chili.\", \"The person gets out a wooden plate.\", \"The person rinses the chili.\", \"The person gets out a knife.\", \"The person cuts off the top of the chili and throws it away.\", \"The person chops up the chili.\", \"The boy opens the refrigerator.\", \"The boy takes the chile out of the bag.\", \"The boy closes the refrigerator.\", \"The boy places the chile on the counter.\", \"The boy opens the drawer, removes the cutting board and places it on the counter.\", \"The boy washes the chile.\", \"The boy shakes the water off the chile.\", \"The boy places the chile on the cutting board.\", \"The boy opens the drawer and removes the knife.\", \"The boy slices off the stem of the chile.\", \"The boy throws the stem in the trash.\"], \"fps\": 29.4, \"num_frames\": 2257}, \"s14-d26.avi\": {\"timestamps\": [[165, 383], [422, 556], [572, 932], [1005, 3339], [3339, 6413], [6417, 6593], [6594, 7585], [7585, 7890], [7891, 11865], [11902, 12409], [165, 383], [422, 932], [1005, 3082], [3086, 11865], [12426, 12455], [165, 383], [422, 932], [1005, 3339], [3339, 12084], [11902, 12455], [165, 383], [422, 523], [528, 680], [689, 932], [1005, 2638], [2672, 2948], [2949, 11865], [11902, 12409], [165, 383], [422, 523], [528, 680], [689, 932], [1005, 2638], [2672, 2968], [3039, 11865], [11902, 12409], [165, 383], [422, 556], [572, 680], [689, 932], [1005, 1111], [1120, 2638], [2672, 2968], [3039, 5085], [165, 383], [422, 523], [528, 680], [689, 2638], [2672, 2968], [5104, 11865], [165, 383], [422, 523], [528, 680], [689, 932], [1005, 2541], [2560, 2948], [3039, 6954], [165, 383], [422, 556], [572, 680], [689, 932], [1005, 2968], [11902, 12084], [12101, 12455], [165, 383], [165, 383], [422, 556], [572, 932], [1005, 2638], [2672, 2968], [2949, 11865], [7007, 12084], [12426, 12455], [165, 383], [422, 556], [572, 680], [689, 932], [1005, 2968], [3039, 3256], [3039, 11865], [11902, 12409], [165, 383], [422, 932], [1005, 2638], [2672, 2968], [3039, 4159], [4172, 4854], [3039, 11865], [11902, 12084], [12426, 12455]], \"sentences\": [\"The person gets out a cauliflower.\", \"The person gets out a knife.\", \"The person gets out a silver bowl and a blue bowl.\", \"The person cuts pieces off the bottom of the cauliflower and puts them in the blue bowl.\", \"The person pulls off pieces of the cauliflower, trims them and puts them in the silver bowl.\", \"The person trims more stuff off the cauliflower, and puts the trimmed pieces in the blue bowl.\", \"The person pulls off more pieces of cauliflower, trims them and puts them in the silver bowl.\", \"The person trims a few more pieces from the cauliflower, and puts them in the blue bowl.\", \"The person continues to pull off pieces of cauliflower, trim them and put them in the silver bowl until the cauliflower is used up.\", \"The person scoops the stray trimmings into the blue bowl, and throws its contents away.\", \"She gets out the cauliflower.\", \"She gets out the needed equipment.\", \"She removes the bad parts of the cauliflower.\", \"She puts the good parts of the cauliflower in the colander.\", \"She cleans up and discards the waste.\", \"A woman enters the kitchen, retrieves a cauliflower from the pantry and places it on the counter.\", \"She removes a knife, a colander and a bowl from the drawer and places them on the counter.\", \"She cut off and removed the base and all the leaves from the cauliflower placing them into the bowl.\", \"She removes small flowerettes from the cauliflower bunch, and places them into the colander.\", \"She cleans up.\", \"Cauliflower is removed from the cabinet.\", \"The person removes a knife.\", \"The person removes a colander.\", \"The person removes a bowl.\", \"The cauliflower leaves are trimmed.\", \"The stalk is removed.\", \"The cauliflower is trimmed, cut into pieces and placed in the colander.\", \"The scraps are discarded.\", \"Cauliflower is removed from the cabinet.\", \"The person removes a knife.\", \"The person removes a colander.\", \"The person removes a bowl.\", \"The cauliflower leaves are trimmed off and placed in the bowl.\", \"The stalk is removed and placed in the bowl.\", \"The cauliflower is cut into pieces, trimmed and placed in the colander.\", \"The scraps are discarded.\", \"She took out cauliflower\", \"She took out knife\", \"She took out bowl\", \"She took out second bowl\", \"She cut off bottom of cauliflower\", \"She cut off leaves\", \"She cut off stem\", \"She cut cauliflower into pieces\", \"She took out cauliflower\", \"She took out knife\", \"She took out bowl\", \"She cut off leaves\", \"She cut off stem\", \"She cut cauliflower into pieces\", \"She took out cauliflower\", \"She took out knife\", \"She took out bowl\", \"She took out plastic bowl\", \"She cut leaves off cauliflower\", \"She cut stem off cauliflower\", \"She cut up cauliflower\", \"She took out cauliflower\", \"She took out a knife\", \"She took out a bowl\", \"She took out second bowl\", \"She took off leaves\", \"She cut cauliflower into pieces\", \"She threw away scraps\", \"Woman walks to refrigerator.\", \"Woman takes out cauliflower and places it on the counter.\", \"Woman takes paring knife out of drawer and places it on the counter.\", \"Woman takes colander and bowl out of cabinet and places them on the counter.\", \"The woman uses the paring knife to trim the leaves off of the cauliflower and puts them in the bowl.\", \"The woman uses the paring knife to cut the stem from the bottom of the cauliflower and places it in the bowl.\", \"The woman trims each cauliflower floret off the main bunch and puts each floret in the colander.\", \"The woman cleans the work surface crumbs into the bowl.\", \"The woman throws the contents of the bowl into the garbage receptacle.\", \"The person gets a cauliflower from the pantry.\", \"The person removes a paring knife from a cutlery drawer.\", \"The person takes a colander from a drawer.\", \"The person takes a plastic bowl from a drawer and sets it on the countertop.\", \"The person uses the paring knife to remove the leaves from the cauliflower as well as the stem.\", \"The person puts the stems and leaves into the plastic bowl.\", \"The person cuts the cauliflower into sections and places them into the colander.\", \"The person disposes of the stem and leaves in the plastic bowl into the trash.\", \"The woman removed the cauliflower from the cabinet and places it on the counter.\", \"She removes a knife and bowls from the drawer and puts them on the counter.\", \"She cuts all of the leaves off of the base of the cauliflower.\", \"She cuts the stem off the cauliflower.\", \"She cuts individual florets off the cauliflower and trims them with a knife.\", \"She continues trimming individual florets and placing them in a bowl.\", \"She finishes cutting up the individual cauliflower florets and placing them in the bowl.\", \"She sweeps the remnants off the counter into the bowl.\", \"She empties the cauliflower cuttings into the recycling bin.\"], \"fps\": 29.4, \"num_frames\": 12467}, \"s17-d53.avi\": {\"timestamps\": [[169, 269], [310, 432], [469, 799], [799, 1106], [1124, 2451], [2451, 3712], [3739, 3974], [4052, 4439], [4537, 6756], [169, 269], [310, 432], [469, 944], [961, 2390], [2396, 2859], [2973, 3570], [3598, 3712], [3739, 4698], [4713, 6756], [4713, 6756], [169, 432], [469, 799], [799, 1106], [1124, 2390], [2396, 2859], [2973, 3217], [3243, 3712], [3739, 3974], [4052, 4698], [4713, 4920], [169, 269], [310, 432], [469, 987], [1014, 1106], [1124, 2390], [2396, 3065], [3091, 3476], [3476, 3712], [3739, 3974], [4052, 4439], [4537, 4698], [4713, 4920], [5070, 6756], [5070, 6756], [5070, 6756], [169, 269], [310, 432], [469, 799], [799, 1106], [1124, 2390], [2396, 4439], [5070, 6756], [169, 269], [310, 432], [469, 799], [799, 1106], [1124, 2390], [2396, 2859], [2973, 4698], [4537, 6756], [169, 799], [799, 2490], [2614, 3065], [3091, 3499], [3499, 3974], [4052, 4698], [4713, 4920], [4713, 6756], [169, 269], [310, 432], [469, 987], [1014, 1106], [1124, 2390], [2396, 2490], [2614, 3065], [3091, 3570], [3598, 3712], [3739, 3974], [4052, 4439], [4537, 4698], [4713, 4920], [5070, 6756], [5070, 6756], [169, 269], [310, 432], [469, 1106], [1124, 2390], [2396, 3712], [3739, 3974], [4052, 4439], [5070, 6756], [5070, 6756], [169, 432], [469, 693], [716, 2490], [2614, 4439], [4537, 6722], [169, 269], [310, 693], [716, 987], [1014, 2390], [2396, 2859], [2973, 3570], [3598, 3712], [3739, 4439], [4537, 4920], [6723, 6756], [169, 269], [310, 432], [469, 987], [1014, 1106], [1124, 2390], [2396, 2490], [2614, 3065], [3091, 3570], [3598, 3712], [3739, 3974], [4052, 4439], [4537, 4920], [4537, 6756], [4537, 6756], [169, 269], [310, 987], [1014, 2390], [2396, 3570], [3598, 4920], [5070, 6756], [169, 269], [310, 432], [469, 799], [799, 1106], [1124, 2390], [2396, 3712], [3739, 3974], [4052, 4439], [5070, 6756], [169, 269], [310, 432], [469, 799], [799, 1106], [1124, 2390], [2396, 3065], [3091, 3476], [3476, 3712], [3739, 3974], [4052, 4698], [4713, 4920], [5070, 6756], [169, 537], [544, 944], [961, 2451], [2451, 2859], [2973, 3538], [3538, 4439], [4537, 6756], [169, 269], [310, 432], [469, 944], [961, 1106], [1124, 2390], [2396, 3712], [3739, 3974], [4052, 4439], [4537, 5778], [5070, 6756]], \"sentences\": [\"He took out cutting board\", \"He took out avocado\", \"He washed avocado\", \"He took out peeler\", \"He peeled avocado\", \"He took out knife\", \"He cut avocado in half\", \"He took out avocado pit\", \"He diced avocado\", \"The person takes out a cutting board from the drawer.\", \"The person procures an avocado from the fridge.\", \"The person peels a sticker off the avocado and puts it in the trashbin, then washes the avocado in the sink.\", \"The person takes out a peeler from the drawer then peels the avocado.\", \"The person puts the peeler in the sink and then throws the peels into the wastebin.\", \"The person washes and dries his hands.\", \"The person takes out a knife from the drawer.\", \"The person uses the knife to cut the avocado in half on the cutting board, then removes the seed and throws it in the trash.\", \"The person washes his hands then dices the avocado.\", \"The person puts the knife into the sink.\", \"He took out avocado\", \"He washed avocado\", \"He took out peeler\", \"He peeled avocado\", \"He threw away peels\", \"He washed hands\", \"He took out knife\", \"He cut avocado in half\", \"He threw away pit\", \"He washed hands\", \"The person selects a cutting board.\", \"An avocado is removed from the refrigerator.\", \"The avocado is washed.\", \"A peeler is selected.\", \"The avocado is peeled.\", \"The scraps are discarded.\", \"The person rinses their hands.\", \"A knife is selected.\", \"The avocado is cut in half.\", \"The seed is pried out with the knife\", \"The seed is discarded.\", \"The person rinses their hands.\", \"The avocado halves are sliced then chopped.\", \"The knife is placed in the sink.\", \"The avocado is ready.\", \"The person took out a cutting board.\", \"The person took out an avocado.\", \"The person rinsed the avocado off.\", \"The person took out a vegetable peeler.\", \"The person peeled the avocado.\", \"The person cut the avocado in half and took out the pit.\", \"The person diced the avocado.\", \"He gets a cutting board.\", \"He grabs an avocado.\", \"He rinses the avocado.\", \"He gets a knife.\", \"He peels the avocado.\", \"He discards the peels.\", \"He removes the pit and discards it.\", \"He dices the avocado.\", \"The person washed the avocado.\", \"The person peeled the avocado.\", \"The person disposed of the avocado peels.\", \"The person washed and dried his hands.\", \"The person sliced the avocado in half.\", \"The person removed the avocado pit and disposed of it.\", \"The person washed his hands.\", \"The person cubed the avocado.\", \"The person selected a cutting board.\", \"An avocado is removed from the refrigerator.\", \"The avocado is washed.\", \"A peeler is selected.\", \"The avocado is peeled.\", \"The peeler is placed in the sink.\", \"The scraps are discarded.\", \"The person rinsed and dried their hands.\", \"A knife is selected.\", \"The avocado is cut in half.\", \"The seed is pried out with the knife\", \"The seed is discarded.\", \"The person rinses their hands.\", \"The avocado halves are sliced then chopped.\", \"The knife is placed in the sink.\", \"The person takes out a cutting board.\", \"The person takes out an avocado.\", \"The person takes out a fruit peeler.\", \"The person peels the avocado.\", \"The person takes out a knife.\", \"Using the knife, the person separates the avocado in half.\", \"Using the knife, the person takes out the avocado seed.\", \"The person cuts each avocado half in slices length-wise and then width-wise, ending up with small chopped pieces.\", \"The person is done.\", \"The man begins by retrieving a cutting board and placing it on the counter.\", \"Next, he selects an avocado from the fridge which he then rinses with water.\", \"Next, he uses a peeler to peel the skin of the avocado and then discards the waste.\", \"He then uses a knife to split open the avocado and remove the pit leaving him with two halves.\", \"Finally, he uses the knife to cut the avocado into thin strips and then he cuts the opposite way leaving smaller diced chunks.\", \"Person gets a small wooden cutting board.\", \"Person gets an avocado from the refrigerator and removes the sticker\", \"Person washes the avocado and shakes it dry.\", \"Person uses a peeler to remove the hard green peeling from the avocado.\", \"Person throws away the peeling.\", \"Person washes and dries his hands.\", \"Person gets a knife.\", \"Person cuts the avocado in half and removes the large pit.\", \"Person washes his hands again.\", \"Person dices the avocado halves into 1/4 inch cubes.\", \"The person selects a cutting board.\", \"An avocado is removed from the refrigerator.\", \"The avocado is washed.\", \"A peeler is selected.\", \"The person peeled the avocado.\", \"The peeler is placed in the sink.\", \"The scraps are discarded.\", \"The person rinsed and dried their hands.\", \"A knife is selected.\", \"The avocado is cut in half.\", \"The seed is removed with the knife.\", \"The seed is discarded and the person rinses their hands.\", \"The avocado halves are sliced then chopped.\", \"The knife is placed in the sink.\", \"A man enters the kitchen, removes a cutting board from the drawer and places it on the counter top.\", \"Man removes a single avocado from the refrigerator, removes the sticker, and washes it in the sink.\", \"The man removes a peeler from the drawer and peels the avocado.\", \"The man places the peeler in the sink, cleans up and washes his hands.\", \"The man takes a knife out of the drawer, cuts the avocado in half, removes the core and washes his hands.\", \"The man dices both halves of the avocado and places the knife into the sink.\", \"He gets a cutting board from the cupboard.\", \"He gets an avocado from the refrigerator.\", \"He rinses the avocado in the sink.\", \"He gets a peeler from the drawer.\", \"He peels the avocado.\", \"He gets a knife from the drawer.\", \"He slices the avocado in half.\", \"He removes the pit from the avocado.\", \"He slices the avocado into small pieces.\", \"He took out cutting board\", \"He took out avocado\", \"He washed avocado\", \"He took out knife\", \"He peeled avocado\", \"He threw out peels\", \"He washed hands\", \"He took out knife\", \"He took avocado in half\", \"He took out pit\", \"He washed hands\", \"He chopped avocado\", \"He gets out an avocado and removes the sticker.\", \"He washes the avocado.\", \"He peels the avocado.\", \"He discards the skins.\", \"He washes his hands.\", \"He cuts it in half and removes the pit.\", \"He slices the avocado.\", \"person gets out cutting board\", \"person gets out avocado\", \"person washes avocado\", \"person gets out peeler\", \"person peels avocado\", \"person gets out knife\", \"person gets out avocado\", \"person takes out the pit\", \"person dices one of the halfs of avocado\", \"person dices second half of avocado\"], \"fps\": 29.4, \"num_frames\": 7015}, \"s13-d25.avi\": {\"timestamps\": [[237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1788], [1865, 2024], [2071, 2520], [2591, 2702], [2715, 2899], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1788], [1865, 2024], [2071, 2520], [2591, 2672], [2676, 2899], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1959], [1977, 2520], [2591, 2702], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1788], [1865, 1959], [1977, 2024], [2071, 2672], [2715, 2899], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1788], [1865, 2024], [2071, 2520], [2591, 2702], [2676, 2899], [2676, 2899], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1788], [1865, 1959], [1977, 2672], [2715, 2899], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1959], [1977, 2520], [237, 508], [578, 861], [904, 1330], [1357, 1788], [1865, 2024], [2071, 2520], [2591, 2702], [2676, 2899], [237, 861], [904, 1330], [1357, 1518], [2591, 2622], [2715, 2899], [237, 508], [578, 861], [904, 1518], [1560, 1959], [1977, 2520], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 2520], [1560, 2702], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1788], [1865, 1959], [1977, 2024], [2591, 2672], [2646, 2899], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1959], [1977, 2520], [2591, 2702], [2715, 2899], [237, 508], [578, 861], [904, 1518], [1560, 1788], [1865, 2024], [2071, 2206], [2071, 2702], [2676, 2899], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1788], [1865, 1959], [1977, 2024], [2591, 2672], [2715, 2899], [237, 508], [578, 861], [904, 1330], [1357, 1518], [1560, 1959], [2304, 2622], [2646, 2702], [2715, 2899], [237, 508], [578, 861], [904, 1518], [1560, 2024], [2071, 2520], [2071, 2702]], \"sentences\": [\"The person takes the loaf of bread out of the cupboard.\", \"The person gets a plate out of the cupboard.\", \"The person unwraps the loaf of bread.\", \"The person takes out a bread knife from the drawer.\", \"While holding the loaf with one hand, the person slices off the end of the loaf using the bread knife.\", \"The person takes out a cutting board from the drawer, and puts the loaf (and piece of bread) onto it.\", \"The person finishes his first cut, and slices a second piece of bread from the end of the loaf.\", \"The person places the pieces of bread onto the plate.\", \"The person puts the wrapping back onto the bread and picks it up.\", \"The boy gets out the bread and sets it on the counter.\", \"The boy gets out a plate and places it on the counter.\", \"The boy takes the bread out of the package.\", \"The boy takes the knife out of the drawer.\", \"The boy slices a piece of bread.\", \"The boy takes out the cutting board and places the bread on it.\", \"The boy slices two pieces of bread.\", \"The boy places the sliced bread on the plate.\", \"The boy puts the bread back into the package.\", \"The person takes a loaf of bread from the pantry.\", \"The person procures a plate from the cabinet.\", \"The person opens the package of bread.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person cuts two slices of bread from the loaf.\", \"The person sets the slices of bread on the plate.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a plate.\", \"The person unwraps the bread.\", \"The person gets out a knife.\", \"The person starts cutting the bread.\", \"The person gets out a wooden plate.\", \"The person puts the bread on the wooden plate.\", \"The person cuts two slices of bread and puts them on the plate.\", \"The person wraps the bread back up.\", \"The person places a loaf of bread on the counter.\", \"The person places a plate on the counter.\", \"The person opens the package of bread.\", \"The person takes a knife out of the drawer.\", \"The person begins to slice the bread.\", \"The person places the loaf of bread on a cutting board.\", \"The person finishes slicing two pieces of bread from the loaf.\", \"The person places the bread on the plate.\", \"The person reseals the bread's package.\", \"Video ends.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a plate.\", \"The person unwraps the bread.\", \"The person gets out a knife.\", \"The person starts to slice the bread.\", \"The person gets out a wooden plate.\", \"The person cuts off two slices of bread and puts them on the plate.\", \"The person wraps the bread back up.\", \"He took out bread\", \"He took out plate\", \"He opened bread\", \"He took out knife\", \"He took out cutting board\", \"He sliced bread\", \"He gets out a loaf of bread from the cabinet.\", \"He gets out a plate from the cabinet.\", \"He removes the cover from the loaf of bread.\", \"He gets out a knife and slices off a piece of bread from the loaf of bread.\", \"He gets a cutting board from the drawer and places the loaf of bread on top of it.\", \"He cuts the first slice further and cuts off another slice of bread.\", \"He picks up the pieces of bread and places them on the plate.\", \"He puts the cover back on the bread.\", \"Take out a loaf of bread and a plate.\", \"Tear off the packaging to access the loaf.\", \"Take out a long serrated knife.\", \"Take out a cutting board, put the bread on it and cut it into slices using a sawing motion with the knife.\", \"Put the slices of bread on the plate and re-wrap the loaf.\", \"He took out bread\", \"He took out plate\", \"He took out knife\", \"He took out cutting board\", \"He sliced bread\", \"He grabs a loaf of bread.\", \"He grabs a plate.\", \"He opens the loaf of bread.\", \"He gets a knife.\", \"He gets a cutting board and cuts two slices.\", \"He puts the slices on a plate.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a plate.\", \"The person unwraps the bread.\", \"The person gets out a knife.\", \"The person starts to cut the bread.\", \"The person gets out a wooden plate.\", \"The person puts the bread on the wooden plate.\", \"The person cuts off two slices of bread and puts them on the first plate.\", \"The person wraps the rest of the bread back up.\", \"Get out the loaf of bread.\", \"Get out a serving dish.\", \"If needed, open plastic or paper covering bread.\", \"Get out a sharp bread knife.\", \"Get out a cutting board.\", \"Slice desired amount of bread into 1\\\" thick slices.\", \"Arrange sliced bread on dish.\", \"Cover remaining bread with existing plastic/paper.\", \"He gets a loaf of bread out from the pantry and places it on the counter.\", \"He gets a plate out from the cupboard.\", \"He opens the container of the loaf of bread.\", \"He gets out a knife and makes a slice in the loaf of bread.\", \"He gets out a round cutting board and places the bread on top of it.\", \"He pushes the knife in deeper to the previous and cut and removes the bread's covering from that region.\", \"He finishes cutting two slices and he places them on the plate.\", \"He puts the cover over the bread.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a plate.\", \"The person unwraps the bread.\", \"The person gets out a knife.\", \"The person starts cutting the bread.\", \"The person gets out a wooden plate.\", \"The person puts the bread on the wooden plate.\", \"The person cuts two slices of bread and puts them on the first plate.\", \"The person wraps the rest of the bread back up.\", \"The person got a loaf of bread from the pantry.\", \"The person got a plate from the cabinet.\", \"The person opened the bread packaging.\", \"The person got a knife from the drawer.\", \"The person got a cutting board from the drawer.\", \"The person used the bread knife to cut two slices of bread from the loaf.\", \"The person set the bread slices onto the plate.\", \"The person rewrapped the loaf of bread in its package.\", \"He took out bread\", \"He took out plate\", \"He took out knife\", \"He took out cutting board\", \"He sliced bread\", \"He put bread on plate\"], \"fps\": 29.4, \"num_frames\": 2935}, \"s21-d55.avi\": {\"timestamps\": [[243, 451], [463, 634], [634, 769], [805, 950], [1029, 1234], [1283, 1378], [1391, 1659], [1659, 1942], [1954, 2075], [243, 451], [463, 594], [594, 769], [805, 950], [1029, 1234], [1283, 1942], [1954, 2075], [243, 451], [463, 594], [594, 769], [805, 950], [1029, 1234], [1283, 1378], [1391, 1659], [1659, 2075], [243, 769], [805, 950], [1029, 1234], [1283, 1545], [1550, 2075], [243, 451], [463, 594], [594, 769], [805, 1234], [1283, 1942], [243, 1234], [243, 1234], [243, 1234], [243, 1234], [1283, 1659], [1659, 1942], [243, 451], [463, 634], [634, 769], [805, 950], [1029, 1234], [1283, 1659], [1659, 1942], [243, 451], [463, 594], [594, 769], [805, 950], [1029, 1234], [1283, 1378], [1391, 1942], [1954, 2075], [243, 451], [463, 769], [805, 950], [1029, 1177], [1190, 1378], [1391, 1659], [1659, 1907], [1954, 2075], [243, 451], [463, 634], [634, 769], [805, 950], [1029, 1234], [1283, 1378], [1391, 1659], [1659, 1942], [1954, 2075], [1954, 2075], [243, 950], [1029, 1234], [1283, 1378], [1391, 1659], [1659, 1942], [1954, 2075], [243, 451], [463, 634], [634, 769], [805, 950], [1029, 1234], [1283, 1378], [1391, 1659], [1659, 1942], [1919, 2075], [243, 451], [463, 594], [594, 769], [805, 950], [1029, 1177], [1190, 1378], [1391, 1942], [1954, 2075], [243, 451], [463, 594], [594, 769], [805, 950], [1029, 1177], [1954, 2075], [243, 451], [463, 950], [1029, 1177], [1190, 1378], [1391, 1659], [1659, 1942], [243, 451], [463, 634], [634, 769], [805, 950], [1029, 1177], [1190, 1378], [1391, 1942], [1954, 2075]], \"sentences\": [\"the person walks to the fridge and takes the figs out.\", \"the person takes a cutting board out from a drawer.\", \"the person takes a knife out for cutting the figs.\", \"the person takes a small plate out and puts it on the counter.\", \"the person washes the figs in the sink and puts them on the cutting board.\", \"the person cuts the stems off the figs.\", \"the person dices the figs into quarters.\", \"the person arranges the quarters on the small plate.\", \"the person throws the stems of the figs in the garbage.\", \"The person procures a fig from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person washes the fig in the sink.\", \"The person uses the knife to cut off the fig ends, then cuts it into slices and places it on the plate.\", \"The person tosses the fig ends into the trashbin.\", \"The person gets out two figs.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person gets out a small plate.\", \"The person rinses the figs.\", \"The person cuts the tops off the figs.\", \"The person cuts the figs into quarters.\", \"The person puts the quarters on the plate and throws away the tops.\", \"Take out your figs, and a cutting board.\", \"Take out a small knife for cutting the figs.\", \"Run the figs under water to get the dirt off, and place them on your cutting board.\", \"Cut the stems and make a horizontal and vertical cut down the top and middle of the figs.\", \"Place them on your serving dish and throw away the stems.\", \"She gets out the figs.\", \"She gets a cutting board.\", \"She gets a knife.\", \"She washes the figs.\", \"She chops the figs and puts them on a plate.\", \"Washes the fruit\", \"Takes out knife\", \"Takes out cutting Board\", \"Takes Kiwi out of the fridge\", \"Dice the kiwi\", \"Arrange on plate\", \"She took out figs\", \"She took out cutting board\", \"She took out knife\", \"She took out plate\", \"She washed fig\", \"She sliced fig\", \"She put fig on plate\", \"The person procures a fig from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person washes the fig in the sink.\", \"The person cuts the stem from the figs.\", \"The person quarters the figs and sets them on the plate.\", \"The person throws the stems into the wastebin.\", \"The woman takes out two figs from the refrigerator and places them on the counter.\", \"Next, she places a cutting board and knife on the counter.\", \"She also places a small plate on the counter.\", \"She goes to the sink and washes the figs.\", \"She places the figs on the cutting board and cuts the tips off of each fig.\", \"Next, she cuts each fig in four pieces.\", \"She places the pieces on the small plate.\", \"She throws the garbage in the trash.\", \"Get figs out of the fridge and place on countertop.\", \"Get out a cutting board.\", \"Get out a knife.\", \"Get out a serving dish.\", \"Wash figs with water thoroughly.\", \"Cut ends off of each fig.\", \"Cut figs into quarters lengthwise.\", \"Arrange figs on serving dish.\", \"Throw away the fig end pieces.\", \"Enjoy.\", \"The woman retrieves a knife, a cutting board, a plate, and the figs.\", \"She washes the figs.\", \"She cuts the tip of each fig off.\", \"She cuts each fig into fourths.\", \"She distributes the fig pieces on to the plate.\", \"She discards the extra pieces.\", \"The person gets out two figs.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person gets out a small plate.\", \"The person rinses the figs and puts them on the wooden plate.\", \"The person cuts off the top of each fig.\", \"The person cuts each fig into quarters.\", \"The person puts the fig pieces on the small plate.\", \"The person throws away the tops of the figs.\", \"The person takes two figs out of the refrigerator.\", \"The person takes a round chopping board out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person takes a plate out of the cupboard.\", \"The person washes the figs.\", \"The person cuts off the tops of the figs.\", \"The person cuts the figs into sections and arranges them on the plate.\", \"The person discards the tops of the figs.\", \"The person takes a fig out of the refrigerator.\", \"The person takes a round chopping board out of the drawer.\", \"The person takes a small knife out of the drawer.\", \"The person takes a small plate out of the cupboard.\", \"The person washes the fig.\", \"The person chops the fig into small sections.\", \"Remove figs from fridge.\", \"Gather knife, cutting board, and plate.\", \"Rinse figs in water.\", \"Cut top off of figs.\", \"Slice figs into quarters.\", \"Arrange figs on plate.\", \"The person gets some figs from the fridge.\", \"The person takes a cutting board from a drawer.\", \"The person takes a knife from a drawer and lays it on the countertop.\", \"The persons gets out a plate from the cabinet.\", \"The persons rinses the figs under the faucet.\", \"The person cuts off the stems from the figs on the cutting board.\", \"The person quarters each fig and arranges them on the plate.\", \"The person throws the stems into the wastebin.\"], \"fps\": 29.4, \"num_frames\": 2117}, \"s21-d45.avi\": {\"timestamps\": [[200, 429], [465, 570], [573, 684], [694, 803], [821, 902], [908, 1401], [1502, 2021], [2073, 2352], [200, 429], [465, 593], [600, 684], [694, 803], [821, 939], [954, 1401], [1502, 1629], [1664, 2021], [2073, 2352], [200, 429], [465, 593], [600, 684], [694, 803], [821, 902], [908, 1629], [1664, 2021], [2073, 2205], [2208, 2352], [200, 593], [600, 803], [821, 939], [954, 1235], [1263, 1629], [1664, 2021], [2073, 2352], [2357, 2778], [200, 593], [600, 803], [821, 1401], [1502, 1629], [1664, 2205], [2208, 2352], [2357, 2778], [200, 429], [465, 593], [600, 684], [694, 803], [821, 1235], [1263, 1629], [1664, 2021], [2073, 2205], [2208, 2352], [2357, 2778], [200, 429], [465, 593], [600, 803], [821, 1401], [1502, 1629], [1664, 2021], [2073, 2205], [2208, 2352], [2357, 2778], [200, 570], [573, 939], [954, 1401], [1502, 2021], [2073, 2352], [200, 803], [821, 939], [954, 1401], [1502, 1629], [1664, 2021], [2073, 2352], [2357, 2778], [200, 429], [465, 570], [573, 684], [694, 803], [821, 939], [954, 1401], [1502, 1629], [1664, 2021], [2073, 2352], [200, 429], [465, 570], [573, 684], [694, 803], [694, 803], [821, 939], [954, 1401], [1502, 1629], [1664, 2021], [2073, 2205], [2208, 2352], [200, 429], [465, 684], [694, 803], [821, 939], [954, 1235], [1263, 1996], [1996, 2352], [200, 429], [200, 429], [465, 684], [694, 803], [821, 902], [908, 1321], [1325, 1401], [1502, 1629], [1664, 2289]], \"sentences\": [\"She took out pepper\", \"She washed pepper\", \"She took out cutting board\", \"She took out knife\", \"She cut pepper in half\", \"She cut out middle of pepper\", \"She sliced the pepper\", \"She put the pepper on a dish\", \"She took out pepper\", \"She washed pepper\", \"She took out cutting board\", \"She took out knife\", \"She cut pepper in half\", \"She took out middle of pepper\", \"She took out middle\", \"She sliced pepper\", \"She put pepper on plate\", \"The person takes a pepper out of the cupboard.\", \"The person washes the pepper.\", \"The person takes out a chopping board.\", \"The person takes out a knife from the drawer.\", \"The person cuts the pepper into half.\", \"The person removes the insides of the pepper and discards them.\", \"The person cuts the pepper into thin slices.\", \"The person takes a plate out of the cupboard.\", \"The person moves the sliced pepper onto the plate.\", \"The woman removes a pepper from the cabinet and rinses it in the sink.\", \"She removes a cutting board and knife from a drawer and places them on the counter.\", \"She uses the knife to cut the pepper in half.\", \"She cuts off the stem of the pepper from each half.\", \"She places the stems and cuttings into the recycling bin.\", \"She slices the pepper lengthwise into strips.\", \"She removes a plate from the cabinet and places the pepper strips onto the plate.\", \"She places the plate with the pepper strips on it into the cabinet.\", \"Take out and rinse a yellow bell pepper.\", \"Take out a cutting board and a knife.\", \"Slice the pepper in half lengthwise and use the knife to remove the inner parts.\", \"Discard all of the inner pepper parts.\", \"Slice the pepper halves into thin slices and take out a small plate.\", \"Place the pepper slices on the plate.\", \"Set the plate of peppers aside for later use.\", \"The person takes a pepper from the pantry.\", \"The person washes the pepper in the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts the pepper in half and removes the seeds and stem.\", \"The person throws the seeds and stem into the wastebin.\", \"The person chops the pepper on the cutting board.\", \"The person procures a plate from the cabinet.\", \"The person sets the chopped pepper on the plate.\", \"The person takes the plate of chopped pepper and put them in the pantry.\", \"Goes to cupboard and takes out a pepper.\", \"She walks over to the sink and washes the pepper.\", \"She opens up a drawer and takes out a cutting board and knife.\", \"She cuts the pepper in half and removes the insides of it.\", \"She picks up the peppers waste and throws them away.\", \"She takes the knife and cuts the pepper into slices.\", \"She goes to the cupboard and take out a plate and places it on the counter.\", \"She takes the sliced pepper and places it on the plate.\", \"She takes the plate of peppers and puts it back into the cupboard.\", \"Girl is washing a yellow bell pepper.\", \"Girl cuts yellow bell pepper in fours.\", \"Girl takes out the center of the yellow bell pepper.\", \"Girl slices yellow bell peppers.\", \"Girl plates yellow bell peppers.\", \"She retrieves a pepper, a cuttingboard, and a small knife.\", \"She slices the pepper in half.\", \"She hollows both halves of the pepper.\", \"She discards the insides of the pepper.\", \"She slices the husk of the pepper into several pieces.\", \"She places these pieces on a separate plate.\", \"She puts the plate away.\", \"She took out pepper\", \"She washed the pepper\", \"She took out cutting board\", \"She took out knife\", \"She cut the pepper in half\", \"She removed middle of the pepper\", \"She threw out middle of the pepper\", \"She cut pepper\", \"She put pepper on plate\", \"The person removes a pepper from the cabinet.\", \"The pepper is washed.\", \"The person got out a cutting board.\", \"The pepper is placed on the cutting board.\", \"A knife is chosen.\", \"The pepper is sliced in half.\", \"The seeds and ribs are removed.\", \"The scraps are discarded.\", \"The pepper is cut into strips.\", \"A plate is removed from the cabinet..\", \"The pepper strips are placed on the plate.\", \"She takes out the pepper.\", \"She takes out a cutting board.\", \"She takes out a knife.\", \"She slices the pepper in half.\", \"She slices the seeds out of both peppers.\", \"She slices the peppers lengthwise.\", \"She places the sliced peppers onto a plate.\", \"get out a yellow bell pepper\", \"wash the bell pepper\", \"get out a cutting board\", \"get out a knife\", \"slice down the center of bell pepper\", \"cut out stem with seeds\", \"throw out stem and seeds\", \"slice up rest of bell pepper\", \"plate your sliced up bell pepper\"], \"fps\": 29.4, \"num_frames\": 2850}, \"s21-d53.avi\": {\"timestamps\": [[232, 402], [475, 676], [705, 1210], [1242, 2988], [3018, 3112], [3126, 4416], [232, 402], [475, 1210], [1242, 4416], [4479, 4605], [4610, 4674], [232, 402], [475, 1210], [1242, 4146], [4479, 4605], [4610, 4674], [232, 402], [475, 676], [705, 1210], [1242, 1806], [1853, 3112], [3126, 3946], [3988, 4146], [4161, 4605], [232, 402], [475, 988], [1055, 1210], [1242, 2901], [2941, 3112], [3126, 3946], [3988, 4416], [4610, 4674], [232, 402], [475, 988], [1055, 1210], [1242, 3112], [3126, 4416], [4479, 4605], [232, 402], [232, 402], [232, 402], [475, 988], [1055, 1210], [1242, 3112], [1242, 3112], [3126, 3946], [3988, 4416], [4479, 4605], [232, 402], [475, 624], [634, 1210], [1242, 2988], [3018, 3112], [3126, 4240], [4479, 4605], [232, 402], [475, 988], [1055, 1210], [1242, 2988], [3018, 3112], [3126, 4416], [232, 402], [475, 1210], [1242, 1806], [1853, 2988], [3018, 4146], [4161, 4674], [232, 988], [1055, 1806], [1853, 3112], [3126, 4146], [4161, 4416], [232, 402], [232, 402], [475, 988], [1055, 2901], [2941, 3112], [3126, 3946], [3988, 4416], [4610, 4674]], \"sentences\": [\"She took out avocado\", \"She cut open avocado\", \"She took out plate\", \"She put avocado on plate\", \"She washed hands\", \"She threw out pit and skin\", \"A person gets an avocado from the refrigerator and takes to the side counter where the camera doesnt show.\", \"The person does something to the avocado with a knife off camera then gets a small plate.\", \"The person does more stuff off camera with the avocado, knife and plate.  Then she throws away the peelings.\", \"She washes her hands.\", \"She turns off the water and then doesnt use a towel but shakes the water all over the counter.\", \"The person takes out an avocado.\", \"The person takes out a plate.\", \"The person peels the avocado and chops in onto the plate.\", \"The person rinses her hands.\", \"The person is done.\", \"The woman enters the kitchen and retrieves an avocado from the refrigerator.\", \"The woman slices the avocado in half on the cutting board.\", \"The woman uses the knife to slice the avocado before going to the cabinet to retrieve a plate.\", \"The woman peels the skin off the avocado by using a knife.\", \"The woman continues to slice the avocado before returning to the sink to wash her hands.\", \"The woman places the avocado pieces onto the awaiting plate.\", \"The woman discards the avocado skin.\", \"The woman washes her hands.\", \"The person gets out an avocado.\", \"The person works on the avocado offscreen.\", \"The person gets out a plate.\", \"The person continues to work offscreen.\", \"The person rinses a knife.\", \"The person continues to work offscreen.\", \"The person throws something away.\", \"The person washes her hands.\", \"She took out avocado\", \"She cut avocado\", \"She took out plate\", \"She washed hands\", \"She threw away avocado scraps\", \"She washed her hands\", \"The person gets out an avocado.\", \"The person picks up a knife?\", \"The person fails to notice where the camera is pointing.\", \"The person messes with the avocado, out of the picture, so it is impossible to tell what she is doing.\", \"The person gets out a plate.\", \"The person continues to work off-camera.\", \"The person rinses the knife.\", \"The person seems to be chopping something?\", \"The person throws something away.\", \"The person washes her hands.\", \"The person gets an avocado from the fridge.\", \"The person cut the avocado with a knife.\", \"The person gets a plate from the cupboard.\", \"The person presumably peels the skin of the avocado.\", \"The person washes her hands under the sink.\", \"The person discards the peeled skin into the trashbin.\", \"The person once more washes her hands.\", \"She took out avocado\", \"She cut avocado\", \"She took out plate\", \"She put avocado on plate\", \"She washed knife\", \"She threw out scraps\", \"The woman retrieves an avocado from the refrigerator.\", \"The woman cuts the avocado in half, then retrieves a plate from the cabinet.\", \"The woman thinly slices the avocado.\", \"The woman moves the slices of avocado to the waiting plate on the counter.\", \"The woman continues to chop the avocado on the plate, then discards the avocado skin into the trash.\", \"The woman ends by washing her hands.\", \"Woman pulls avocado from refrigerator and slices it on a cutting board.\", \"Woman seems to peel avocado.\", \"Woman finishes preparing the avocado.\", \"Woman finishes the slicing on the plate.\", \"She then throws away any unwanted pieces.\", \"The person gets an avocado from the fridge.\", \"The person sets the avocado on a cutting board.\", \"The person appears to be slicing the avocado with a knife.\", \"The person gets a plate from the cupboard and resumes slicing.\", \"The person rinses her hand and the knife in the sink.\", \"The person presumably is peeling or dicing the avocado out of the camera shot.\", \"The person throws the peels into the trashbin.\", \"The person rinses her hands in the sink.\"], \"fps\": 29.4, \"num_frames\": 4667}, \"s24-d48.avi\": {\"timestamps\": [[188, 572], [616, 728], [787, 907], [910, 1121], [1226, 2186], [2237, 2315], [188, 401], [415, 728], [787, 907], [910, 1121], [1226, 2135], [2142, 2315], [188, 728], [787, 986], [992, 1121], [992, 1121], [1226, 2315], [1226, 2315], [188, 401], [415, 728], [787, 907], [910, 1121], [1226, 2186], [2237, 2315], [2237, 2315], [188, 728], [787, 1121], [1226, 2003], [2017, 2186], [2237, 2315], [188, 401], [415, 728], [787, 907], [910, 1121], [1226, 2186], [188, 728], [787, 907], [910, 1121], [1226, 2135], [2142, 2186], [188, 728], [787, 986], [992, 1121], [1226, 2003], [2237, 2315], [188, 401], [415, 728], [787, 1121], [1226, 2003], [2237, 2315], [188, 728], [787, 907], [910, 1121], [1226, 2135], [2017, 2315], [188, 728], [787, 907], [910, 1121], [1226, 2003], [2017, 2315], [188, 401], [415, 1121], [415, 1121], [1226, 2003], [2142, 2315], [188, 728], [787, 907], [910, 1121], [1226, 2003], [2017, 2315], [188, 401], [415, 572], [616, 728], [787, 907], [910, 1121], [1226, 2135], [2017, 2315], [188, 401], [415, 572], [616, 907], [910, 1121], [1226, 2003], [2017, 2315], [188, 401], [415, 728], [787, 907], [910, 1121], [1226, 2135], [2142, 2315]], \"sentences\": [\"She takes out chilli\", \"She puts away chili she does not use\", \"She takes out cutting board\", \"She takes out knife\", \"She dices chili\", \"She throws away top of chilli\", \"She took out chili\", \"She put back extra chili\", \"She took out cutting board\", \"She took out knife\", \"She diced up chili\", \"She threw away top of chili\", \"She removes a chili from the fridge.\", \"She removes a cutting board from the drawer.\", \"She removes a knife from drawer.\", \"She cuts off the end of the chili.\", \"She slices the remaining chili into small pieces.\", \"She throws the waste away into the trash.\", \"The person removes a bag of fresh chili peppers from the refrigerator.\", \"The person removes one chili from the bag.\", \"The person puts a cutting board on the counter.\", \"The person takes a knife out of the drawer.\", \"The person finely slices the fresh chili.\", \"The person throws the chili stem away.\", \"Video ends.\", \"She gets a chili.\", \"She gets a cutting board and knife.\", \"She chops the chili.\", \"She cleans the knife.\", \"She throws away the top.\", \"She took out chili\", \"She put back extra chili\", \"She took out cutting board\", \"She took out knife\", \"She chopped chili\", \"She gets a chili pepper.\", \"She gets out a cutting board.\", \"She starts dicing the pepper.\", \"She cuts off the stem of the pepper.\", \"She puts all the peppers in a pile.\", \"The woman begins by selecting a chili from the fridge.\", \"She then retrieves a small wooden cutting board.\", \"Next, she takes out a large knife.\", \"Using the knife, she thinly chops the chili from the tip to the back stem.\", \"Finally, she discards the stem leaving only the chopped chili.\", \"She gets a pack of peppers.\", \"She removes one and puts the rest away.\", \"She gets a cutting board and a knife.\", \"She chops the pepper.\", \"She throws the top of the pepper away.\", \"Took out chili\", \"She took out cutting board\", \"She took out knife\", \"She diced chili\", \"She threw away the top\", \"The person procures a bag of chilis from the fridge, takes one out, and returns the bag to the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person chops the chili on the cutting board.\", \"The person throws the stem into the wastebin.\", \"Remove the chili pepper from the refrigerator.\", \"Take out a cutting board and a sharp knife.\", \"Starting from the bottom of the pepper, thinly slice it.\", \"Clean any remaining pepper from the knife.\", \"Throw away the top of the pepper.\", \"Take a chilli out from the refridgerator.\", \"Take out a small chopping board and place it on the counter.\", \"Take out a knife to cut the chilli with.\", \"Place the chilli on the chopping board horizontally and cut the chilli starting from the pointed tip while holding the top of the chilli to keep it from moving on the chopping board.\", \"Stop cutting once you've reached the top of the chilli and throw the remaining piece away.\", \"The person gets out a bag of chilies.\", \"The person take a chili out of the bag.\", \"The person puts the rest of the chilies back.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts up the chili.\", \"The person throws away the end of the chili.\", \"person get chili from fridge.\", \"person take out chili from bag\", \"person gets out cutting board\", \"person gets out knife\", \"person dices chili but not the stem\", \"person throws away chili stem\", \"She took out chili\", \"She put chili back\", \"She took out cutting board\", \"She took out knife\", \"She chopped chili\", \"She threw away top of chili\"], \"fps\": 29.4, \"num_frames\": 2381}, \"s21-d42.avi\": {\"timestamps\": [[244, 358], [358, 832], [832, 1244], [1244, 1453], [1467, 1808], [1845, 2334], [2353, 2628], [2657, 3078], [3079, 3277], [3341, 4059], [4090, 4578], [4674, 4990], [244, 952], [1015, 1551], [1598, 2103], [2130, 2334], [2353, 2708], [2716, 3277], [3341, 4059], [4090, 4578], [4674, 4845], [4990, 5412], [5479, 5732], [5479, 5732], [244, 358], [358, 832], [832, 952], [1015, 1289], [1289, 1453], [1467, 1808], [1845, 2103], [2130, 2218], [2218, 2334], [2353, 3078], [3079, 3277], [3341, 4059], [4090, 4578], [4674, 4845], [244, 358], [358, 952], [1015, 1289], [1289, 1808], [1845, 2334], [2353, 2708], [2716, 3078], [3079, 3277], [3341, 3768], [3786, 4059], [4090, 4578], [4963, 5031], [5089, 5732], [244, 1070], [1082, 1551], [1598, 2547], [2570, 2751], [2850, 3078], [3079, 3277], [3079, 3277], [3341, 4845], [4963, 5157], [244, 358], [358, 890], [890, 1353], [1381, 1808], [1845, 2103], [2130, 2334], [2353, 2708], [2716, 3165], [3204, 4059], [4090, 4578], [4674, 5031], [5186, 5412], [5479, 5732], [244, 358], [358, 890], [890, 1289], [1289, 1551], [1598, 1808], [1845, 2103], [2130, 2231], [2231, 2334], [2353, 2751], [2850, 3078], [3079, 4059], [4090, 4685], [4686, 4845], [244, 413], [423, 890], [890, 1353], [1381, 1808], [1845, 2103], [2130, 2334], [2353, 2751], [2850, 3165], [3204, 4059], [4090, 4578], [4963, 5031], [5089, 5412], [5479, 5732], [244, 413], [423, 832], [832, 1353], [1381, 1808], [1845, 2103], [2130, 2334], [2353, 2708], [2716, 3165], [3204, 3768], [3786, 4059], [4090, 4845], [5089, 5732], [244, 358], [358, 890], [890, 1353], [1381, 1453], [1467, 1808], [1845, 2103], [2130, 2218], [2218, 2334], [2353, 3078], [3079, 3277], [3341, 4059], [4090, 4720], [4727, 4845], [244, 358], [358, 832], [832, 1289], [1289, 1808], [1845, 2103], [2130, 2218], [2218, 2334], [2353, 2628], [2657, 3078], [3079, 4059], [4090, 4845], [4674, 5412], [244, 481], [581, 890], [890, 1289], [1289, 1808], [1845, 2628], [2657, 3165], [3204, 4578], [4674, 4845], [4963, 5412], [244, 413], [423, 952], [1015, 1353], [1381, 1453], [1467, 1551], [1598, 1808], [1845, 2334], [2353, 2751], [2850, 3277], [3341, 3768], [3786, 4059], [4090, 4578], [4963, 5031], [4674, 5412], [5479, 5732], [244, 413], [423, 832], [832, 1353], [1381, 1808], [1845, 2103], [2130, 2218], [2218, 2334], [2353, 2708], [2716, 3078], [3079, 4059], [4963, 5031], [5089, 5412], [5479, 5732], [244, 832], [832, 1289], [1289, 1453], [1467, 1808], [1845, 3078], [3079, 4578], [4963, 5031], [5479, 5732], [244, 481], [581, 1289], [1289, 3768], [3786, 4578], [5479, 5732]], \"sentences\": [\"Person takes out pot.\", \"Person fills pot with water.\", \"Person puts salt into pot.\", \"Person puts pot onto stove.\", \"person turns stove on.\", \"person takes out head of broccoli.\", \"Person cuts the stem away from the head.\", \"Person rinses broccoli head off.\", \"Person cuts broccoli head in half.\", \"Person puts away half the broccoli head.\", \"Person cuts broccoli into smaller pieces\", \"Person puts broccoli pieces into pot.\", \"A pot is selected and filled with water.\", \"The water is salted and the pot is placed on the stove.\", \"Broccoli is removed from the refrigerator.\", \"The person removes a cutting board and knife.\", \"The broccoli is opened and the main stem is cut off.\", \"The broccoli is washed and cut in half.\", \"Half of the broccoli is placed in the refrigerator.\", \"The broccoli is cut into pieces.\", \"The pieces are placed in the pot.\", \"The scraps are discarded.\", \"The counter is wiped.\", \"The broccoli is cooking.\", \"She took out pot\", \"She put water in pot\", \"She put lid on pot\", \"She put salt in pot\", \"She put pot on stove\", \"She turned on stove\", \"She took out broccoli\", \"She took out cutting board\", \"She took out knife\", \"She washed broccoli\", \"She cut broccoli in half\", \"She put away unused broccoli\", \"She chopped up broccoli\", \"She put broccoli in pot\", \"The person gets out a pot.\", \"The person puts water in the pot from the faucet, then puts the lid on the pot.\", \"The person adds salt, then puts the lid back on pot.\", \"The person puts the pot on the stove to boil, and turns on the stove.\", \"The person gets out the cutting board, broccoli, and knife.\", \"The person removes the plastic wrapping from the broccoli and cuts off the stem.\", \"The person rinses the broccoli.\", \"The person cuts the broccoli in half.\", \"The person attempts to remove the plastic wrapping from the broccoli stem, then stops.\", \"The puts half of the broccoli in the fridge.\", \"The person cuts the broccoli into chunks.\", \"The person puts the broccoli in the pot of water.\", \"The person cleans the work area and rinses her hands.\", \"the person gets a pot and fills it with water\", \"the person seasons the water in the pot with salt\", \"the person puts the pot over the stove and heats it up\", \"the person gets a cutting board and a knife\", \"the person cuts the stem off of the broccoli\", \"the person washes the broccoli over the sink\", \"the person cuts the Broccoli in half\", \"the person chops up the Broccoli\", \"the person puts the chopped up Broccoli in the pot\", \"The person takes out a lidded pot from the drawer.\", \"The person fills the pot with water from the faucet.\", \"The person gets a condiment and adds it to the water.\", \"The person returns the condiment and turns on the stove.\", \"The person procures a stalk of broccoli from the fridge.\", \"The person takes out a cutting board and a knife from the drawers.\", \"The person uses the knife to cut away the plastic and cut the top of the broccoli from its stem.\", \"The person washes the broccoli in the sink.\", \"The person returns half the broccoli to the fridge.\", \"The person chops the broccoli on the cutting board.\", \"The person puts the chopped broccoli into the pot on the stove.\", \"The person gathers the refuse and puts it in the trash.\", \"The person cleans the countertop.\", \"She took out pot\", \"She put water in pot\", \"She added salt to pot\", \"She put pot on stove\", \"She turned on stove\", \"She took out broccoli\", \"She took out cutting board\", \"She took out knife\", \"She cut off stem\", \"She washed broccoli\", \"She put back extra broccoli\", \"She chopped broccoli\", \"She put broccoli in pot\", \"The person takes out a lidded pot from the drawer.\", \"The person fills the pot with water from the faucet.\", \"The person gets a condiment and adds it to the water.\", \"The person returns the condiment and turns on the stove.\", \"The person procures a stalk of broccoli from the fridge.\", \"The person takes out a cutting board and a knife from the drawers.\", \"The person uses the knife to cut away the plastic and cut the top of the broccoli from its stem.\", \"The person washes the broccoli in the sink.\", \"The person returns half the broccoli to the fridge.\", \"The person chops the broccoli on the cutting board.\", \"The person puts the chopped broccoli into the pot on the stove.\", \"The person gathers the refuse and puts it in the trash.\", \"The person cleans the countertop.\", \"She opens a drawer and takes out a pot.\", \"She takes the pot to the sink and fills it with water.\", \"She walks over to counter and get some salt and sprinkles it into the pot of water.\", \"She places the pot on the stove and turns it on.\", \"She goes to the refrigerator and takes out some broccoli.\", \"She opens the drawers and takes out a cutting board and knife.\", \"She cuts the wrapper of the broccoli and then cuts the end of the broccoli off.\", \"She takes the broccoli to the sink and washes it.\", \"She cuts the broccoli in half and then tries to remove the broccoli end from its wrapper.\", \"She takes one half of the broccoli and returns it to the refrigerator.\", \"She chops the broccoli into pieces and then places them into the pot.\", \"She takes the waste and throws them away and then cleans up a bit.\", \"She took out pot\", \"She put water in pot\", \"She put salt in pot\", \"She put pot on stove\", \"She turned on stove\", \"She took out broccoli\", \"She took out cutting board\", \"She took out knife\", \"She washed broccoli\", \"She cut broccoli in half\", \"She put back unused broccoli\", \"She chopped broccoli\", \"She put broccoli in pan\", \"She took out pan\", \"She put water in pan\", \"She put salt in pan\", \"She turned on stove\", \"She took out broccoli\", \"She took out cutting board\", \"She took out knife\", \"She cut off top of broccoli\", \"She washed the broccoli\", \"She put some of broccoli back\", \"She put broccoli in pan\", \"She threw away scraps\", \"Get a large pot with a see through lid.\", \"Fill it approximately a third of the way with water.\", \"Add ten to fifteen dashes of salt to the water.\", \"Set the water on the stove and begin to boil.\", \"Take the broccoli and cut off the stem.\", \"Rinse the broccoli under water.\", \"Cut the broccoli into smaller portions.\", \"Add the broccoli to the water on the stove.\", \"Discard of the stem.\", \"Person fetches saucepan.\", \"Person fills saucepan with two inches of water and places on worktop.\", \"Person fetches spice and pours some into saucepan.\", \"Person places saucepan on stove top.\", \"Person returns spice to spice rack.\", \"Person turns on burner on stove.\", \"Person fetches broccoli, cutting board and knife.\", \"Person works broccoli head out of plastic wrap and cuts of broccoli stem.\", \"Person washes whole broccoli head and cuts it in half.\", \"Person attempts to remove broccoli stem from plastic wrap, but eventually gives up.\", \"Person places one half of broccoli head back in refrigerator.\", \"Person cuts other half of broccoli into smaller pieces.\", \"Person puts broccoli pieces into saucepan.\", \"Person throws away unusable broccoli pieces and plastic wrap.\", \"Person washes hands, cleans up work area and walks to stove.\", \"The person gets out a pan.\", \"The person fills the pan with water.\", \"The person adds salt to the water.\", \"The person puts the pan on the stove and turns it on.\", \"The person gets out a stalk of broccoli in shrink wrap.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person unwraps the broccoli and cuts off the stem.\", \"The person rinses the broccoli.\", \"The person cuts the broccoli in half and puts one half of the broccoli back in the fridge.\", \"The person cuts the broccoli into smaller pieces and puts them in the pan to cook.\", \"The person gathers up and throws away the trash.\", \"The person washes her hands and wipes down the counter.\", \"The person just filled up the pot with water.\", \"The person just added salt to the water\", \"The person just put the pot on the stove.\", \"The person just turned on the stove.\", \"The person just washed the broccoli\", \"The person just cut up the broccolli.\", \"The person just added the broccoli to the water.\", \"The person just cleaned up.\", \"Girl gets a pot and fills it with water.\", \"The girl adds salt to the water.\", \"Girl get bag of vegetables out of fridge.\", \"Girl chops up vegetables a.\", \"Girl cleans up and washes the cutting board.\"], \"fps\": 29.4, \"num_frames\": 6074}, \"s13-d40.avi\": {\"timestamps\": [[240, 360], [360, 795], [798, 1239], [1239, 1520], [1520, 1621], [1704, 2321], [2381, 2862], [240, 1520], [1520, 1621], [1704, 2321], [2381, 2862], [2957, 3281], [240, 411], [459, 795], [798, 1239], [1239, 1520], [1520, 1621], [1704, 2862], [240, 360], [360, 795], [798, 1239], [1239, 1520], [1520, 1621], [1704, 2862], [240, 411], [459, 1147], [1147, 1520], [1520, 1621], [1704, 2321], [2381, 2862], [240, 360], [360, 795], [798, 1308], [1320, 1520], [2957, 3023], [240, 360], [360, 1147], [1147, 1520], [1520, 1621], [1704, 2321], [2381, 2862], [240, 411], [459, 795], [798, 1147], [1147, 1520], [1520, 1621], [1704, 2321], [2381, 2862], [3023, 3158], [240, 411], [459, 1147], [1147, 1621], [1704, 2321], [2381, 2862], [240, 411], [459, 945], [945, 1239], [1239, 1621], [2957, 3023], [240, 360], [360, 795], [798, 1239], [1239, 1520], [1520, 1621], [1704, 2862], [240, 1308], [1320, 1621], [1704, 2321], [1704, 2321], [2381, 2862], [2381, 2862], [240, 360], [360, 795], [798, 1065], [1070, 1308], [1320, 1520], [1520, 1621], [1520, 1621], [1520, 1621], [1704, 2321], [2381, 2862], [240, 411], [459, 1308], [1320, 1621], [1704, 2321], [2381, 2862], [3207, 3281], [240, 360], [360, 795], [798, 1239], [1239, 1520], [1520, 1621], [1704, 2862], [240, 360], [360, 795], [798, 1239], [1239, 1520], [1520, 1621], [1704, 2862], [240, 411], [459, 795], [798, 1147], [1147, 1520], [1520, 1621], [1704, 2862]], \"sentences\": [\"The person gets out a juicer.\", \"The person gets out a plate.\", \"The person gets out a lime and puts it on the plate.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person puts half of the lime on the juicer, pushes down  and twists repeatedly.\", \"The person puts the other half of the lime on the juicer, pushes down  and twists repeatedly.\", \"A man enters the kitchen, removes a juice press and knife from the drawer, a plate from the cupboard, a lime from the refrigerator and places them all on the counter.\", \"He cuts the lime in two.\", \"He squeezes one half of the lime using the juice press.\", \"He squeezes the other half of the lime using the juice press.\", \"He checks the juice he rendered in the juice press.\", \"The person gets out a juicer.\", \"The person gets out a plate.\", \"The person gets out a lime.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person juices the lime.\", \"The person gets out a juicer.\", \"The person gets out a plate.\", \"The person gets out a lime.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person juices the lime.\", \"The man takes out a juicing utensil and places it on the counter.\", \"The man also takes out a plate and a lime.\", \"He places the lime and plate on the counter and takes out a knife.\", \"He cuts the lime in half and picks up one piece.\", \"He uses the juicing utensil to juice the halve of lime.\", \"Next, he takes the remaining halve and juices the lime.\", \"The person gets juicer from cabinet and sets on counter.\", \"The person gets out plate from cabinet.\", \"The person gets lime from refrigerator.\", \"The person gets knife from kitchen door.\", \"The person cuts lime in half and juices each side.\", \"The man took a juicer out of the drawer.\", \"The man took a lime out of the fridge.\", \"The man took a knife out of the drawer.\", \"The man cut the lime in half.\", \"The man twisted the lime on the juicer.\", \"The man twisted the other half of the lime on the juicer.\", \"The man places a juicer on the counter.\", \"He takes out a plate from the cupboard.\", \"He takes a lime out of the refrigerator and puts it on the plate.\", \"Next, the man takes out a small knife.\", \"He cuts the lime in half.\", \"Taking one half of the lime, he twists it back and forth on the juicer until all the liquid is obtained.\", \"He repeats this process with the other half.\", \"He opens the juicer to check the amount of liquid collected, closes it, and sets it aside.\", \"The man begins by retrieving a juicer and placing it on the counter.\", \"Next, he selects one lime from the fridge and places it on a small white plate.\", \"He then uses a knife to cut the lime in half.\", \"He juices the first half of the lime.\", \"He juices the second half of the lime.\", \"The man begins by selecting a white juicer.\", \"He then selects a small white plate from the cupboard.\", \"Next, he takes 1 lime from the fridge and places it on the white plate.\", \"He takes out a knife and cuts the lime in half.\", \"He then juices both halves of the lime.\", \"He took out juicer\", \"He took out plate\", \"He took out lime\", \"He took out knife\", \"He cut lime in half\", \"He twisted lime on juicer\", \"The person places a hand citrus juicer and a plate containing a single lime on the counter.\", \"The person cuts the lime in half laterally with a paring knife.\", \"The person extracts the juice from the first half of the lime using the hand juicer.\", \"The person replaces the juiced lime half on the plate.\", \"The person extracts the juice from the second half of the lime using the hand juicer.\", \"The person replaces the second juiced lime half on the plate.\", \"The man gets a hand juicer and places it on the kitchen counter.\", \"The man gets a plate out of the cabinet.\", \"The man gets a chilled lime out of the refridgerator.\", \"The man carries the plate with the lime over to the counter.\", \"The man gets a sharp knife out of the cutlery drawer.\", \"The man carefully slices the lime in half.\", \"The man places half the lime on top of the hand juicer, peel side in hand.\", \"The man presses down firmly while twisting on the lime to express the juice from the fruit.\", \"The man switches the expressed half with the other half of the lime and repeats the twisting action.\", \"The man puts down the second half of the lime when he is unable to express any more juice from the fruit.\", \"The man enters the room and immediately removes a juicer from the drawer.\", \"The man retrieves a plate from the cabinet and a lime from the refrigerator.\", \"The man gets a knife from the drawer and slices the lime in half.\", \"The man places one half of the lime on the juicer bowl and twirls it to drain the juice.\", \"The man places the other half of the lime on the juicer bowl and drains the lime of its juice.\", \"The man slides the plate on the counter.\", \"The person gets out a juicer.\", \"The person gets out a plate.\", \"The person gets out a lime.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person juices the lime.\", \"The person gets out a juicer.\", \"The person gets out a plate.\", \"The person gets out a lime.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person juices the lime.\", \"He took out juicer\", \"He took out plate\", \"He took out lime\", \"He took out knife\", \"He cut lime in half\", \"He twisted lime on juicer\"], \"fps\": 29.4, \"num_frames\": 3331}, \"s22-d25.avi\": {\"timestamps\": [[290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 1106], [735, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 917], [968, 1106], [1155, 1426], [1155, 1426], [290, 455], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426], [290, 455], [476, 701], [735, 917], [968, 1106], [1155, 1426]], \"sentences\": [\"Take loaf from pantry.\", \"Find cutting board.\", \"Find serrated knife.\", \"Take loaf out of package.\", \"Slice loaf about 3/4 inch thick using a back and forth sawing motion.\", \"Put knife down and smile lovely.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person unwraps the bread.\", \"The person cuts off a slice of bread.\", \"Take out the loaf of bread you would like to slice.\", \"You will need to take out a cutting board and a knife.\", \"Place the loaf of bread on the cutting board.\", \"With the knife cut into the bread as thick as you would like your slices.\", \"Repeat until you have cut the whole loaf.\", \"Take out the loaf of bread.\", \"Get out a cutting board.\", \"Get a knife to cut the bread with.\", \"Place the loaf of bread onto the cutting board.\", \"While holding loaf firmly, use knife to cut from the end of the loaf.\", \"Place knife down on cutting board.\", \"She gets the bread.\", \"She gets a cutting board.\", \"She gets a knife.\", \"She takes the bread from the packaging.\", \"She cuts off a slice.\", \"The person takes a loaf of bread from the pantry.\", \"The person sets the loaf of bread on the countertop.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person unwraps the bread loaf and sets it on the cutting board.\", \"The person uses the knife to slice a piece of bread from the loaf.\", \"Woman walks to the cabinet and pulls out a bag with bread.\", \"She places it on the counter and takes out a knife and cutting board.\", \"She takes out the bread and places it on the cutting board.\", \"She slowly cuts a loaf of bread.\", \"She puts the knife down on the counter.\", \"The woman walks to the refrigerator and pulls out a a bag with bread.\", \"She places the bread on the counter.\", \"Next, she takes out a cutting board and places it on the counter.\", \"Also, she pulls out a knife and places it on the counter.\", \"She takes the loaf of bread and places it on the cutting board.\", \"She slowly cuts a slice of bread.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person unwraps the bread.\", \"The person cuts a slice of bread.\", \"She took out bread\", \"She took out cutting board\", \"She took out knife\", \"She unwrapped bread\", \"She sliced bread\", \"She gets a loaf of bread from the cupboard.\", \"She gets a cutting board from the cupboard.\", \"She gets a knife from the drawer.\", \"She removes the loaf of bread from its bag.\", \"She cuts a slice off the loaf of bread.\", \"The person takes a loaf of bread out of the cupboard.\", \"The person takes a chopping board out of the drawer.\", \"The person takes a bread knife out of the drawer.\", \"The person takes the bread out of its plastic wrapping.\", \"The person cuts a slice off the loaf of bread.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person unwraps the bread.\", \"The person cuts off a slice of bread.\", \"The person takes a loaf of bread from the cupboard.\", \"The person takes a chopping board out from the drawer.\", \"The person takes a knife out from the drawer.\", \"The person removes the loaf of bread from its plastic wrapping.\", \"The person cuts a slice of bread from the loaf.\", \"The person takes a loaf of bread out from the cupboard.\", \"The person takes a chopping board out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person takes the loaf of bread out of its plastic wrapping.\", \"The person uses the knife to cut a slice of bread from the loaf.\", \"The first step is to grab a loaf of bread from the refrigerator.\", \"The second step is to grab a butcher block from the drawer.\", \"The next step is to grab a knife.\", \"The fourth step is to take the loaf of bread out of the bag.\", \"The last step is to slice the loaf of bread.\"], \"fps\": 29.4, \"num_frames\": 1605}, \"s13-d45.avi\": {\"timestamps\": [[257, 431], [431, 609], [711, 999], [1026, 1346], [1392, 1977], [1979, 2171], [2188, 2544], [2544, 2729], [2893, 3807], [3897, 4051], [257, 999], [1026, 1796], [1813, 1977], [1979, 2729], [4125, 4250], [257, 609], [711, 1475], [1601, 2582], [2615, 3807], [2893, 4250], [257, 431], [257, 431], [431, 609], [711, 999], [1026, 1475], [1601, 2582], [2615, 4051], [3897, 4250], [257, 431], [431, 609], [711, 999], [1026, 1475], [1601, 2582], [4125, 4250], [257, 431], [431, 609], [711, 1346], [1392, 2544], [2544, 3807], [2615, 4250], [257, 470], [479, 609], [711, 999], [1026, 1475], [1601, 2171], [2188, 2544], [2544, 3807], [3897, 4250], [257, 431], [431, 609], [711, 999], [1026, 1346], [1392, 2490], [2490, 2729], [2893, 3807], [3897, 4051], [257, 609], [711, 999], [1026, 1475], [1601, 2582], [2615, 2729], [2893, 3807], [3897, 4250], [257, 431], [431, 609], [711, 999], [1026, 1346], [1392, 1796], [1813, 1977], [1979, 2171], [2188, 2490], [2490, 2582], [2615, 2729], [2615, 2729], [2893, 3807], [4125, 4250], [4125, 4250], [257, 431], [431, 999], [1026, 1346], [1392, 2490], [3897, 4250], [257, 431], [431, 609], [711, 999], [1026, 1346], [1392, 2490], [2490, 2729], [2893, 3807], [3897, 4250], [257, 431], [431, 609], [711, 999], [1026, 1346], [1392, 2055], [2056, 2490], [2490, 3807], [2490, 4250], [257, 1346], [1392, 1475], [1601, 1977], [1979, 2490], [2490, 3807], [3897, 4250]], \"sentences\": [\"Get out a cutting board.\", \"Get out sharp knife.\", \"Get out a serving dish.\", \"Get a red bell pepper.\", \"Remove tip and core by twisting and pressing on it under running water.\", \"Discard the tip and core.\", \"Wash pepper thoroughly inside and out with running water.\", \"Dry off your hands if needed.\", \"Slice pepper into thin rings by starting at the top and cutting width wise.\", \"Arrange peppers on serving dish.\", \"Prepare your cutting board and knife.\", \"Rinse the pepper with water.\", \"Remove the stem by pressing with your fingers around the stem.\", \"Slice the pepper in thin slices.\", \"Place the peppers into your serving dish, you can include the end piece.\", \"Man pulls out a knife and cutting board.\", \"Man gets a pepper and plate from the cabinets.\", \"The man washes the pepper and removes the stem with his fingers.\", \"The man uses the knife to slice the pepper.\", \"He places the pepper slices onto a plate and are ready for use.\", \"He opens the drawer.\", \"He places the cutting board on the counter.\", \"He places a knife on the cutting board.\", \"He grabs a plate and places it on the counter space.\", \"he grabs a pepper and begins to wash it.\", \"He places the pepper on the cutting board and dries his hands.\", \"He finishes cutting the pepper and places it neatly on the plate.\", \"He steps back from the counter top and puts his hands to the side.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a pepper.\", \"The person rinses the pepper and removes the insides.\", \"The person cuts the pepper into slices and puts them on the plate.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets a plate and the pepper.\", \"He rinses the pepper and removes the top.\", \"He chops the pepper.\", \"He put the pepper on a plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out plate\", \"He took out pepper\", \"He took off pepper top\", \"He washed pepper\", \"He sliced pepper\", \"He put pepper on plate\", \"The person takes out a cutting board from the drawer\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person takes a bell pepper from the pantry.\", \"The person washes the pepper in the sink, breaks out the stem, disposes it in the trash, and washes the pepper further.\", \"The person dries his hands on a towel.\", \"The person slices the bell pepper on the cutting board.\", \"The person sets the slices of pepper on the plate.\", \"He opens up a drawer and takes out a cutting board and knife.\", \"He goes to the cupboard and takes out a plate and places it on the counter.\", \"He goes to the cupboard again and takes out a red pepper.\", \"He takes the pepper to the sink and washes it and removes and disposes the top of the pepper.\", \"He places the pepper down on the cutting board and then dries his hands.\", \"He cuts the entire pepper into slices.\", \"He picks up the pepper slices and places them on the plate.\", \"Get a cutting board.\", \"Get a long knife.\", \"Get a medium plate.\", \"Take the pepper out of the refrigerator.\", \"Rinse the pepper under running water.\", \"Remove the stem from the pepper.\", \"Discard the stem.\", \"Rinse inside of pepper thoroughly.\", \"Place pepper on cutting board.\", \"Dry hands.\", \"Hold pepper with one hand and knife with the other.\", \"Make thin cuts so to get round slices.\", \"Transfer pepper slices to plate and arrange.\", \"All done.\", \"He gets a cutting board.\", \"He gets a knife and a plate.\", \"He grabs a pepper.\", \"He rinses the pepper and removes the top.\", \"He cuts the pepper and puts it on a plate.\", \"The person takes a chopping board out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person takes a plate out of the cupboard.\", \"The person takes a pepper out of the cupboard.\", \"The person washes the pepper and removes its stem.\", \"The person dries his hands on a towel.\", \"The person cuts the pepper into small slices.\", \"The person transfers the pepper slices onto the plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out plate\", \"He took out pepper\", \"He took off top of pepper\", \"He washed pepper\", \"He sliced pepper\", \"He put pepper on plate\", \"Gather cutting board, knife, plate, and pepper on counter.\", \"Rinse pepper with water.\", \"Remove top and core of pepper.\", \"Rinse inside of pepper with water.\", \"Cut pepper into rings.\", \"Arrange prepared pepper on plate.\"], \"fps\": 29.4, \"num_frames\": 4338}, \"s23-d51.avi\": {\"timestamps\": [[225, 468], [468, 912], [920, 2818], [2818, 5808], [5808, 6056], [6122, 6235], [6361, 6738], [225, 339], [356, 500], [500, 696], [737, 2237], [2277, 3060], [3149, 4396], [4410, 5808], [5808, 6056], [6122, 6235], [6361, 6738], [225, 339], [356, 468], [468, 696], [737, 912], [920, 2237], [2277, 3060], [3149, 4155], [4284, 4441], [4468, 5851], [225, 696], [737, 2237], [2277, 3060], [3149, 4441], [4468, 5851], [5924, 6738], [225, 500], [500, 696], [737, 946], [946, 2043], [2059, 2237], [2277, 3060], [3149, 4155], [4284, 4396], [4410, 5851], [5924, 6235], [6361, 6738], [225, 468], [468, 912], [920, 2237], [2277, 3060], [3149, 4396], [4410, 5851], [5924, 6738], [225, 339], [356, 500], [500, 696], [737, 3060], [3149, 4441], [4468, 5851], [5924, 6056], [6122, 6235], [6361, 6738], [225, 696], [737, 3060], [3149, 4441], [5924, 6056], [6122, 6235], [6361, 6738], [225, 946], [946, 2237], [2277, 3660], [3660, 4396], [4410, 4805], [4468, 6738], [225, 500], [500, 696], [737, 946], [946, 1401], [1420, 1672], [1780, 2043], [2059, 2237], [2277, 3060], [3149, 4155], [4284, 4441], [4468, 5851], [4852, 6235], [6361, 6738], [225, 339], [356, 468], [468, 696], [737, 946], [946, 3060], [3149, 4155], [4284, 4396], [4410, 5851], [5924, 6738], [225, 339], [356, 468], [468, 696], [737, 912], [920, 1672], [1780, 2237], [2277, 2961], [2976, 4135], [4136, 4396], [4410, 5851], [5924, 6056], [6122, 6738], [225, 339], [356, 500], [500, 696], [737, 3060], [3149, 4441], [4468, 5851], [5924, 6056], [6122, 6235], [6361, 6738], [225, 696], [737, 912], [920, 2237], [2277, 3060], [3149, 4155], [4284, 5808], [5924, 6738], [5924, 6738], [225, 339], [356, 468], [468, 696], [737, 2237], [2277, 2818], [225, 339], [356, 468], [468, 696], [737, 2043], [2818, 3060], [3149, 4155], [4284, 4441], [4468, 5808], [5808, 6056], [6122, 6235], [6361, 6738], [225, 696], [737, 2043], [2059, 3060], [3149, 4155], [4284, 5851], [5808, 6738], [225, 339], [356, 500], [500, 696], [737, 912], [920, 1511], [1529, 1672], [1780, 2043], [2059, 2237], [2059, 3060], [3149, 4155], [4284, 4396], [4410, 5851], [5924, 6738]], \"sentences\": [\"He takes a cutting board and butcher knife out of a drawer.\", \"He takes a package of green beans out of the fridge.\", \"He washes green beans in the sink.\", \"He chops the beans into small pieces.\", \"He gets a plate out of the cupboard.\", \"He rinses the plate off under the tap.\", \"He puts the beans on to the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a bowl.\", \"The person gets out some beans.\", \"The person rinses the beans.\", \"The person cuts off the tips of the beans and throws them away.\", \"The person chops up the beans.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person puts the beans on the plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out bowl\", \"He took out beans\", \"He put back unused beans\", \"He washed beans\", \"He cut off tips of beans\", \"He threw away tips\", \"He diced beans\", \"A men enters the kitchen, removes a cutting board, a knife, a bowl from the drawer placing the cutting board and knife on the counter and the bowl in the sink.\", \"He retrieves a package of beans from the refrigerator, places a portion of the beans in the bowl and returns the rest to the refigerator.\", \"He washes the beans in the sink and places them on the cutting board.\", \"He cuts both ends off of the green beans.\", \"He cuts the length of the green beans crosswise into bite size pieces.\", \"He gets a plate from the cupboard, rinses it in the sink and transfers the freshly cut beans from the cutting board to the plate.\", \"The man removes a cutting board and knife from the drawer and places them on the counter.\", \"He removes a bowl from the drawer and places it in the sink.\", \"He gets the vegetables from the refrigerator.\", \"He places the vegetables in the bowl that is in the sink.\", \"He returns the unused vegetables to the refrigerator.\", \"He rinses the vegetables in the sink.\", \"He cuts both ends off of all the vegetables.\", \"He puts the cuttings into the recycling bin.\", \"He slices all of the vegetables into small pieces.\", \"He gets a plate from the cabinet.\", \"He places all of the cut vegetables onto the plate.\", \"He gets a cutting board and knife.\", \"He gets a bowl and the beans.\", \"He selects other beans from another package.\", \"He rinses the beans in the bowl.\", \"He cuts the ends from the beans and discards them.\", \"He chops the beans.\", \"He gets a plate and puts the beans on it.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a bowl.\", \"The person gets out some beans and rinses them in the bowl.\", \"The person cuts off the tips of the beans and throws them away.\", \"The person chops up the beans.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person puts the beans on the plate.\", \"the person gets a cutting board, sharp knife and a metal bowl\", \"the person washes the Fresh Broad Beans in the metal bowl\", \"the person cuts the ends off of the Fresh Broad Beans and discards them\", \"the person slices the Fresh Broad Beans\", \"the person gets a plate\", \"the person places the sliced Fresh Broad Beans on the plate\", \"Get out a cutting board, a knife, a bowl, and fresh broad beans.\", \"Rinse/wash beans thoroughly with water.\", \"Chop both ends off each bean, cutting two beans at a time.\", \"Discard ends of beans.\", \"Lay two beans out at a time, and cut into small pieces.\", \"Put beans on a plate, and enjoy!\", \"He goes into drawer and takes out a cutting board and knife.\", \"He goes into another drawer and takes out a bowl and places it in the sink.\", \"He goes to the refrigerator and takes out some beans.\", \"He takes some beans out of the package and places them in the bowl.\", \"He returns to the refrigerator and takes out another package of beans.\", \"He cuts open the package and takes out some beans and places them in the bowl.\", \"He goes to the refrigerator and puts the beans away.\", \"He goes to the sink and washes the beans.\", \"He places the beans on the cutting board and chops off the ends.\", \"He picks up the ends and throws them away and rinses his hands.\", \"He then dices the beans into small pieces.\", \"He walks to the cupboard and gets a plate and rinses it off.\", \"He picks up the beans and places them onto the plate.\", \"Takes cutting board out of drawer.\", \"Takes knife out of drawer.\", \"takes bowl out of drawer.\", \"Takes beans out of refrigerator.\", \"Washes beans in sink.\", \"Chops the ends off of the beans.\", \"Puts bean ends in the trash.\", \"Slices up the beans into pieces.\", \"Places bean pieces on a plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out bowl\", \"He took out beans\", \"He took out more beans\", \"He put back unused beans\", \"He washed beans\", \"He cut off top of beans\", \"He threw away top of beans\", \"He diced beans\", \"He took out plate\", \"He put beans on plate\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a bowl.\", \"The person gets out some beans and rinses them in the bowl.\", \"The person cuts off the tips of the beans and throws them away.\", \"The person chops up the beans.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person puts the beans on the plate.\", \"The man gets a cutting board, knife, and metal bowl from the drawers.\", \"The man retrieves a pack of fresh broad beans from the refrigerator.\", \"The man chooses what broad beans he wants and places them in the metal bowl.\", \"He carefully rinses the beans in the sink.\", \"He takes two beans at a time and cuts off both ends of each one.\", \"He takes two beans at a time and finely dices them with the knife on the cutting board.\", \"He retrieves a plate from the cabinet, then rinses it in the sink before placing the finely diced beans on the plate.\", \"He ends by picking up the cutting board and knife from the counter.\", \"Take out your cutting board and place it onto the surface in front of you.\", \"Locate the knife you will be cutting the broad beans with and place it onto the surface in front of you.\", \"Find a mixing bowl and place it into the sink.\", \"Take the fresh broad beans and place them into mixing bowl.\", \"Run fresh broad beans under water.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a bowl.\", \"The person gets out some beans and puts them in the bowl.\", \"The person rinses the beans in the bowl.\", \"The person cuts off the tips of the beans.\", \"The person throws the tips of the beans away.\", \"The person cuts the beans into small pieces.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person puts the beans on the plate.\", \"The person sets up chopping board, knife and stainless steel bowl.\", \"The person takes the broad beans out of fridge and places in bowl while checking for freshness.\", \"The person vigorously washes the beans under running water.\", \"The person chops of both ends of each bean.\", \"The person chops the beans into 1/4 to 1/2 inch segments.\", \"The person places chopped beans on freshly rinsed plate.\", \"The person takes a cutting board from a drawer and puts it on the countertop.\", \"The person takes a knife from the drawer.\", \"The person takes a bowl from a drawer and places it in the sink.\", \"The person takes a package of bean stalks from the fridge.\", \"The person removes some of the bean stalks from the package and places them into the bowl in the sink.\", \"The person puts the other package of bean stalks on the counter and removes a second package from the fridge.\", \"The person removes some bean stalks from the second package and places them into the bowl.\", \"The person places the second package back into the fridge.\", \"The person runs the sink into the bowl and washes the bean stalks.\", \"The person cuts the stems of each stalk on the cutting board.\", \"The person throws the removed stalks into the trash.\", \"The person dices the bean stalks on the cutting board.\", \"The person gets a plate from the cabinet and places the diced bean stalks upon it.\"], \"fps\": 29.4, \"num_frames\": 6814}, \"s24-d40.avi\": {\"timestamps\": [[222, 441], [441, 661], [661, 984], [996, 1101], [1101, 1274], [1338, 1512], [1559, 6037], [222, 441], [441, 661], [661, 984], [996, 1101], [1101, 1274], [1338, 1512], [1559, 6037], [6158, 6266], [222, 441], [441, 723], [723, 984], [996, 1101], [1101, 1274], [1338, 1512], [1559, 6037], [222, 441], [441, 537], [564, 723], [723, 804], [848, 1101], [1101, 1274], [1338, 1512], [1559, 3374], [3534, 6037], [6158, 6266], [222, 537], [564, 723], [723, 984], [996, 1101], [1101, 1274], [1338, 1512], [1559, 6037], [6158, 6266], [222, 441], [441, 723], [723, 984], [996, 1101], [1101, 1274], [1338, 1512], [1559, 6037], [222, 441], [441, 723], [723, 804], [848, 984], [996, 1101], [1101, 1274], [1338, 1512], [1559, 6037], [6158, 6266], [222, 723], [723, 984], [996, 1101], [1101, 1680], [1689, 3374], [222, 441], [441, 804], [848, 984], [996, 1101], [1101, 1274], [1338, 1512], [3534, 6037], [6158, 6266], [222, 441], [441, 804], [848, 984], [996, 1101], [1101, 1274], [1338, 1512], [1559, 6037], [6158, 6266], [222, 537], [564, 661], [661, 1101], [1101, 1274], [1559, 6037], [6158, 6266], [222, 537], [564, 1101], [1101, 1274], [1338, 6037], [6158, 6266], [222, 537], [564, 804], [848, 1101], [1101, 1274], [1338, 1512], [1559, 3374], [1338, 6037], [6158, 6266], [222, 537], [564, 723], [723, 984], [996, 1101], [1101, 1274], [1338, 1512], [3534, 6037], [6158, 6266], [222, 441], [441, 723], [723, 804], [848, 1274], [1559, 6037], [6158, 6266]], \"sentences\": [\"She took out lime\", \"She washed lime\", \"She took out cutting board\", \"She took out knife\", \"She cut lime in half\", \"She took out juicer\", \"She twisted lime on juicer\", \"The person gets out a box of limes.\", \"The person rinses a lime.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person gets out a juicer.\", \"The person juices the lime.\", \"The person throws away the lime.\", \"She took out lime\", \"She washed lime\", \"She took out cutting board\", \"She took out knife\", \"She cut lime in half\", \"She took out juicer\", \"She twisted lime on juicer\", \"She walks to the refrigerator and takes out a package of limes.\", \"She opens up the package and takes out one lime.\", \"She turns on the sink and washes the lime.\", \"She reaches over to the towel rack and dries the lime.\", \"She opens a draw and takes out a cutting board and knife.\", \"She takes the lime and puts it on the cutting board and cuts it in half.\", \"She opens up a draw and takes out a juicer.\", \"She then takes half of the lime and begins juicing and squeezing the lime on the juicer.\", \"She picks up the other half of the lime and begins squeezing and juicing it on the juicer.\", \"She take the lime rinds and throws them away in the trash.\", \"The person gets out a lime.\", \"The person rinses the lime.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person gets out a juicer.\", \"The person juices the lime.\", \"The person throws away the lime.\", \"person gets lime\", \"person washes lime\", \"person gets cutting board\", \"person gets knife\", \"person cuts lime in half\", \"person gets manual juicer\", \"person gets juice out of lime\", \"She took out lime\", \"She washed lime\", \"She dried lime\", \"She took out cutting board\", \"She took out knife\", \"She cut lime in half\", \"She took out juicer\", \"She twisted lime on juicer\", \"She threw out lime\", \"She washes a lime.\", \"She gets a cutting board.\", \"She starts cutting the lime with a knife.\", \"She starts juicing the lime.\", \"She starts juicing the second half of the lime.\", \"The person procures a package of limes from the fridge.\", \"The person removes a lime from the package, washes it in the sink, then dries it on a towel.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person slices the lime in two.\", \"The person takes out a juice strainer from the drawer.\", \"The person grinds and squeezes each half of the lime into the juice strainer.\", \"The person throws the peels into the wastebin.\", \"The person procures a package of limes from the fridge.\", \"The person removes a lime from the package, washes it in the sink, then dries it on a towel.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person slices the lime in two.\", \"The person takes out a juice strainer from the drawer.\", \"The person grinds and squeezes each half of the lime into the juice strainer.\", \"The person throws the peels into the wastebin.\", \"She grabs a lime.\", \"She rinses the lime.\", \"She grabs a cutting board and knife.\", \"She cuts the lime in half.\", \"She juices the lime.\", \"She discards the lime.\", \"She goes to the refrigerator and gets a package of limes out and washes one of them in the sink.\", \"She washes the lime and takes out a cutting board and a knife.\", \"She cuts the lime in half.\", \"She takes a juice squeezer out from the drawer and uses it to get the juice of both halves of the lime.\", \"She throws the remainders of the limes in the trash can.\", \"She gets lime from fridge.\", \"She removes lime, rinses and dries.\", \"She gets chopping board and knife.\", \"She cuts lime in half.\", \"She gets juicer from drawer.\", \"She squeezes and twists first half of lime on juicer.\", \"She takes second half of lime and twists, squeezes, twists, squeezes the juice out into juicer.\", \"She puts lime rinds into trash.\", \"The person gets out a lime.\", \"The person rinses the lime.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the lime in half.\", \"The person gets out a juicer.\", \"The person juices the limes.\", \"The person throws the limes away.\", \"Take lime out of the fridge\", \"wash it in the sink\", \"Dry lime thoroughly using a cloth\", \"Using a chopping board and sharp knife, slice lime in half\", \"Use a juicer to squeeze juice out of the lime halves\", \"Throw lime halves into the trash after juicing\"], \"fps\": 29.4, \"num_frames\": 6306}, \"s14-d35.avi\": {\"timestamps\": [[276, 683], [728, 895], [922, 1061], [1061, 1223], [1236, 1293], [1346, 1462], [1462, 1551], [1590, 1646], [1646, 1846], [1867, 1962], [1973, 2055], [2097, 2221], [2247, 2344], [276, 566], [576, 683], [728, 895], [922, 1092], [1092, 1293], [1346, 1551], [1590, 2055], [2097, 2221], [2344, 2377], [276, 566], [576, 683], [728, 895], [922, 1293], [1346, 2055], [2097, 2221], [2247, 2377], [276, 566], [576, 683], [728, 895], [922, 1293], [1346, 2055], [2097, 2221], [2247, 2377], [276, 566], [576, 683], [728, 895], [922, 1092], [1092, 1293], [1346, 2055], [2097, 2221], [2247, 2377], [276, 683], [728, 895], [922, 1293], [1346, 1846], [2247, 2377], [276, 566], [576, 683], [728, 895], [922, 1223], [1236, 1551], [1590, 2055], [2097, 2221], [1867, 2377], [276, 566], [576, 683], [728, 895], [922, 1092], [1092, 1293], [1346, 1551], [1590, 2055], [2097, 2221], [276, 566], [576, 683], [728, 895], [922, 1223], [1236, 1551], [1590, 2055], [2097, 2221], [2247, 2377], [276, 566], [576, 683], [728, 895], [922, 1293], [1346, 1551], [1590, 1962], [1973, 2055], [2097, 2221], [2247, 2377], [276, 566], [576, 683], [728, 895], [922, 1293], [1346, 1551], [1590, 2221], [2247, 2377], [276, 566], [576, 683], [728, 895], [922, 1061], [1061, 1293], [1346, 1551], [1590, 2055], [276, 566], [576, 683], [728, 895], [922, 1293], [1346, 1551], [1590, 2055], [2097, 2221], [2247, 2377], [276, 566], [576, 683], [728, 895], [922, 1293], [1346, 1551], [2097, 2221], [2247, 2377], [276, 566], [576, 683], [728, 895], [922, 1293], [1346, 2055], [1590, 2221], [2247, 2377], [276, 683], [728, 895], [922, 1293], [1346, 1551], [1590, 2055], [2097, 2221], [2247, 2377], [276, 895], [922, 1293], [1346, 1551], [1590, 1646], [1646, 1846], [1867, 1962], [1973, 2055], [2097, 2221], [2247, 2377]], \"sentences\": [\"Person puts plum and knife on counter.\", \"Person takes out plate and puts on counter.\", \"Person rinses plum.\", \"Person dries plum.\", \"Person takes knife to plum.\", \"Person slices around the plum down to the pit.\", \"Person twists plum apart.\", \"Person slices the plum half with the pit in half.\", \"Person cuts the quarter away from the pit.\", \"Person slices the pit out of the last quarter.\", \"Person slices other plum half into halves.\", \"Person throws away pit.\", \"Person rinses hands and knife.\", \"The person procures a plum from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person washes the plum in the sink.\", \"The person dries the plum in a towel.\", \"The person uses the knife to cut the plum in half and twists it with her hands to break it apart.\", \"The person cuts each segment into halves away from the plum core.\", \"The person disposes of the core in the trash.\", \"The person washes the knife in the sink.\", \"The person gets out a plum.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person rinses and dries the plum.\", \"The person cuts the plum into four quarters and a pit.\", \"The person puts the quarters on the plate and throws away the pit.\", \"The person rinses the knife.\", \"The person gets out a plum.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person rinses and dries the plum.\", \"The person cuts the plum into four quarters and a pit.\", \"The person puts the quarters on the plate and throws away the pit.\", \"The person washes her hands.\", \"The person gets out a plum.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person rinses the plum.\", \"The person dries the plum.\", \"The person cuts the plum into four quarters and a core.\", \"The person puts the quarters on the plate and throws away the core.\", \"The person rinses the knife.\", \"Lady enters the kitchen and opens the refrigerator. She then pulls out a piece of fruit and places it on the counter with a knife.\", \"She then goes into the cupboard and pulls out a plate to cut the fruit up with.\", \"She thoroughly washes and dries the piece of fruit then begins to carve into the fruit.\", \"She splits the piece of fruit in half and places one half on the plate. She then takes the other half and starts to separate it from the seed.\", \"She finishes separating both sides from the seed, and then throws away the seed in the trash can. She then starts to wash and dry off the knife she used to cut the price of fruit.\", \"The person procures a plum from the fridge.\", \"The person takes out a knife from the drawer.\", \" The person procures a plate from the cabinet.\", \"The person washes the plum in the sink then dries it in a towel.\", \"The person slices the plum down the middle then twists it in half.\", \"The person cuts the plum in quarters.\", \"The person throws the plum's core into the wastebin.\", \"The person washes the knife in the sink.\", \"She took out plum\", \"She took out knife\", \"She took out plate\", \"She washed plum\", \"She dried plum\", \"She cut plum in half\", \"She cut plum in pieces\", \"She threw out pit\", \"The person procures a plum from the fridge.\", \"The person takes out a knife from the drawer.\", \" The person procures a plate from the cabinet.\", \"The person washes the plum in the sink then dries it in a towel.\", \"The person slices the plum down the middle then twists it in half.\", \"The person cuts the plum in quarters.\", \"The person throws the plum's core into the wastebin.\", \"The person washes the knife in the sink.\", \"The person removes a plum from the refrigerator.\", \"The person removes a knife from the drawer setting it and the plum on the counter.\", \"The person retrieves a plate from the cupboard setting it on the counter.\", \"The person washes the plum under running water at the sink and dries it.\", \"Using the knife, the person cuts the plum in half and twists it slightly to separate the two halves.\", \"Working first with the half containing the pit, the person cuts the half into two sections, separates the sections slightly, and using the knife carefully cuts the pit free.\", \"The person cuts the second half into two sections.\", \"The person discards the plum pit.\", \"The person washes and dries the knife used to slice the plum.\", \"The person takes a plum out of the fridge.\", \"The person opens a drawer and retrieves a knife.\", \"The person opens a cupboard door and gets a plate out.\", \"The person washes the plum and dries it on a towel\", \"The person slices the plum in two.\", \"The person removes the stone from the plum and throws it in the trash.\", \"The person rinses the knife, and their hands, and then dries the knife on a towel.\", \"She took out plum\", \"She took out knife\", \"She took out plate\", \"She washed plum\", \"She dried plum\", \"She cut plum in half\", \"She took pit out of plum\", \"The person procures a plum from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person washes the plum in the sink and dries it on a towel.\", \"The person uses the knife to cut the plum down the middle then twists it in half.\", \"The person quarters the halves from the core.\", \"The person throws the core into the wastebin.\", \"The person washes the knife and her hands in the sink\", \"The person gets out a plum.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person rinses the plum.\", \"The person cuts the plum in half.\", \"The person cuts the halves into four quarters and throws away the pit.\", \"The person rinses the knife.\", \"The person gets out a plum.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person rinses the plum.\", \"The person cuts the plum into four quarters and a pit.\", \"The person throws away the pit.\", \"The person rinses the knife.\", \"The woman takes out a plum and knife.\", \"She takes out a plate.\", \"She washes and dries the plum.\", \"By cutting around the circumference and twisting, she separates the plum in half.\", \"She cuts the halves in half producing quarters.\", \"She throws away the scraps.\", \"She washes and dries the knife.\", \"The person gets a plum, a small sharp knife, and a plate.\", \"The person washes and dries the plum.\", \"The person bisects the plum to the pit, then twists the halves in opposite directions to remove one of them from the pit.\", \"The person slices in half the half still attached to the pit.\", \"The person pulls the pieces of the half apart slightly and uses the knife to slice one of the quarters from the pit.\", \"The person slices the second quarter from the pit.\", \"The person cuts the remaining half of a plum into two pieces.\", \"The person discards the pit.\", \"The person washes the knife.\"], \"fps\": 29.4, \"num_frames\": 2405}, \"s22-d35.avi\": {\"timestamps\": [[263, 592], [594, 728], [777, 1222], [1232, 2239], [1232, 2239], [263, 526], [263, 526], [263, 526], [526, 592], [594, 872], [917, 1222], [1232, 1554], [1575, 1663], [1696, 2239], [1696, 2239], [263, 526], [263, 526], [263, 526], [263, 526], [526, 688], [688, 872], [917, 1024], [1024, 2239], [263, 526], [526, 728], [777, 1024], [1024, 1222], [1232, 2239], [263, 526], [526, 872], [917, 1024], [1024, 1222], [1232, 2239], [263, 526], [526, 872], [917, 1024], [1024, 1222], [1232, 2239], [263, 526], [526, 728], [777, 872], [917, 1222], [1232, 2239], [263, 526], [526, 688], [688, 872], [917, 1222], [1232, 2239], [263, 526], [526, 872], [917, 1024], [1024, 1222], [1232, 2239], [263, 526], [526, 728], [777, 1073], [1080, 1267], [1337, 2239], [263, 592], [594, 728], [777, 1267], [1337, 2239], [1337, 2239], [263, 526], [526, 592], [594, 872], [917, 1267], [1337, 2239], [263, 526], [526, 688], [688, 872], [917, 1222], [1232, 2239], [263, 526], [526, 688], [688, 872], [917, 1073], [1080, 1222], [1232, 2239], [263, 526], [526, 728], [777, 872], [917, 1222], [1232, 1267], [1337, 2239], [263, 592], [594, 688], [688, 872], [917, 1024], [1024, 1222], [1232, 2239], [1232, 2239]], \"sentences\": [\"She took out plum\", \"She washed plum\", \"She took out cutting board\", \"She sliced plum\", \"She stood over cut plum\", \"The person opens the refrigerator.\", \"The person retrieves a plum from the refrigerator.\", \"The person closes the refrigerator.\", \"The person moves a towel to her work area, beside the sink.\", \"The person rinses and dries the plum.\", \"The person retrieves a knife and a cutting board.\", \"The person cuts across the center of the plum, rotating the plum as she does this.\", \"The person tries to pry apart the plum, but cannot do so.\", \"The person succeeds in cutting the plum in half.\", \"The person sets the knife down, and the plum rests on the cutting board.\", \"Person walks up to refrigerator.\", \"Person opens refrigerator.\", \"Person pulls plum from crisper drawer.\", \"Person closes refrigerator door.\", \"Person rinses plum.\", \"Person dries plum with towel.\", \"Person pulls knife from drawer.\", \"Person cuts plum into several slices.\", \"She grabs a plum.\", \"She rinses it.\", \"She gets a knife.\", \"She gets a cutting board.\", \"She cuts the plum.\", \"The person procures a plum from the fridge.\", \"The person picks up a towel, washes the plum in the sink, then dries it in the towel.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person cuts the plum up without removing the core.\", \"The person procures a plum from the fridge.\", \"The person picks up a towel, washes the plum in the sink, then dries it in the towel.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person cuts the plum up without removing the core.\", \"She grabs a plum.\", \"She rinses it.\", \"She dries the plum off.\", \"She gets a knife and a cutting board.\", \"She cuts the plum.\", \"She goes to the refrigerator and takes out a plum.\", \"She takes the plum to the sink and washes it.\", \"She take the plum and dries it in a towel.\", \"She opens up a drawer and takes out a knife and then a cutting board.\", \"She then takes the plum and cuts it into pieces.\", \"The person procures a plum from the fridge.\", \"The person picks up a towel, washes the plum in the sink, then dries it in the towel.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person cuts the plum up without removing the core.\", \"She took out plum\", \"She washed plum\", \"She took out knife\", \"She took out cutting board\", \"She sliced up plum\", \"She retrieves a plumb from the fridge.\", \"She rinses the plumb off in the sink.\", \"She obtains a knife and a cuttingboard.\", \"She cuts the plumb in half.\", \"She cuts one portion of the plumb into smaller pieces.\", \"The woman gets a plum.\", \"The woman gets a towel.\", \"The woman washes the plum off with water and the towel.\", \"The woman get a knife and cutting board.\", \"The woman cuts the plum around the seed.\", \"She gets a plum from the fridge.\", \"She rinses off the plum in the sink.\", \"She dries the plum with a kitchen towel.\", \"She gets a knife and cutting board from the drawer and cupboard.\", \"She slices the plum in half and then into slices.\", \"The person takes a plum out of the refrigerator.\", \"The person washes the plum.\", \"The person dries the plum with a cloth.\", \"The person takes a paring knife from the drawer.\", \"The person takes a small chopping board out from the drawer.\", \"The person chops the plum into a few small sections.\", \"The person takes the peach out of the refridgerator\", \"The person washes the peach\", \"The person dries the peach\", \"The person takes out the knife and cutting board\", \"The person places the peach on the cutting board\", \"The person cuts the peach into five slices\", \"She took out plum\", \"She washed plum\", \"She dried plum\", \"She took out knife\", \"She took out cutting board\", \"She cut plum in half\", \"She sliced up plum\"], \"fps\": 29.4, \"num_frames\": 2539}, \"s23-d54.avi\": {\"timestamps\": [[215, 461], [495, 1229], [1242, 1785], [1785, 2770], [2909, 4518], [4583, 8335], [8344, 9281], [215, 347], [350, 461], [495, 1541], [1546, 1963], [2083, 2770], [2909, 4234], [4305, 7256], [7259, 9208], [215, 461], [495, 1300], [1412, 4110], [4160, 7256], [7259, 9208], [215, 461], [495, 1300], [1412, 1963], [2083, 2770], [2909, 4195], [4212, 7256], [9240, 9281], [215, 347], [350, 461], [495, 1229], [1242, 1541], [1546, 1963], [2083, 2770], [2909, 4110], [4160, 7336], [7356, 9208], [215, 347], [350, 461], [495, 1229], [1242, 1300], [1412, 1541], [1546, 1963], [2083, 2770], [2909, 4110], [4160, 7256], [7259, 9208], [9240, 9281], [215, 347], [350, 461], [495, 1229], [1242, 1541], [1546, 1924], [1924, 2770], [2909, 4110], [4160, 7256], [7259, 9208], [215, 347], [350, 461], [495, 1229], [1242, 1541], [1546, 1963], [2083, 2770], [2909, 4110], [4160, 7256], [7259, 9281], [215, 347], [350, 461], [495, 1229], [1242, 1924], [1924, 4110], [4160, 4932], [5020, 9208], [215, 347], [350, 461], [495, 1300], [1412, 1541], [1546, 1963], [2083, 2770], [2909, 4110], [4160, 7589], [9240, 9281], [215, 347], [350, 461], [495, 1300], [1412, 1541], [1546, 1785], [1785, 1924], [1924, 2237], [2262, 2770], [2262, 2770], [2909, 4110], [4160, 4195], [4212, 7256], [9240, 9281], [215, 461], [495, 1300], [1412, 1924], [1924, 2770], [2909, 4110], [4160, 4932], [5020, 7256], [9240, 9281], [215, 461], [495, 1300], [1412, 1785], [1785, 1963], [2083, 2770], [2909, 4234], [4305, 7336], [7259, 9281], [215, 347], [350, 461], [495, 1300], [1412, 1541], [1546, 2770], [2909, 4110], [4160, 7256], [7259, 9208], [9240, 9281], [215, 347], [350, 461], [495, 1300], [1412, 1541], [1546, 1963], [2083, 2770], [2909, 4234], [4305, 7256], [7259, 9208], [215, 347], [350, 461], [495, 1300], [1412, 1541], [1546, 2770], [2909, 4110], [4160, 4234], [4305, 7256], [7595, 9281], [7595, 9281], [215, 347], [350, 461], [495, 1229], [1242, 1541], [1546, 1924], [1924, 2237], [2262, 2770], [2909, 4110], [4160, 4195], [4212, 7256], [7259, 9281]], \"sentences\": [\"The man takes out a knife and cutting board.\", \"He removes a mango from the refrigerator.\", \"He takes a slicer out and removes the brand sticker.\", \"He takes out a plate and washes it.\", \"He removes the skin from the mango.\", \"He cuts chunks off of the mango, avoiding the core.\", \"He cuts the larger mango chunks into small pieces and places them on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a mango  from the fridge and then takes out a peeler from the drawer.\", \"The person peels a sticker from the mango and throws it into the wastebin then washes the mango in the sink.\", \"The person takes a plate from the dishwasher and then rinses it in the sink.\", \"The person peels the magno with the peeler.\", \"The person cuts slices of mango from its core.\", \"The person chops the mango slices and sets them onto the plate.\", \"He gets out a cutting board and knife.\", \"He gets out a mango.\", \"He peels the mango.\", \"He cuts the good parts away from the pit.\", \"He chops the mango and puts it on a plate.\", \"He gets a cutting board and knife.\", \"He gets a mango.\", \"He rinses the mango.\", \"He grabs a plate and washes it.\", \"He removes the peels.\", \"He removes the fruit from the pit.\", \"He chops the mango and puts it on a plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a mango from the fridge.\", \"The person takes out a peeler  from the drawer.\", \"The person peels a sticker from the mango, throws it in the trash, then washes the mango.\", \"The person takes a plate from the dishwasher and rinses it off in the sink.\", \"The person uses the peeler to peel the mango.\", \"The person cuts the mango in strips from the core.\", \"The person chops the mango strips on the cutting board and sets them onto the plate.\", \"The man walks to the counter, opens a drawer, removes a cutting board and places it on the counter.\", \"He opens another drawer, removes a knife, places it on the cutting board and closes the drawer.\", \"He walks to the fridge, opens the door, looks around and finds the mango in the crisper drawer. He takes the fruit and closes the fridge door.\", \"He then briefly opens a cupboard door, closes it, brings the mango back to the counter and sets it down.\", \"He opens a drawer, removes a peeler and closes the drawer.\", \"He removes a sticker from the fruit and discards it. He then rinses the mango and places it on the counter.\", \"The man removes a dirty bowl from the dishwasher, brings it to the sink and washes the bowl. He then places it on the counter.\", \"He picks up the peeler and the mango and begins peeling. When he's finished he place the fruit on the cutting board.\", \"He starts cutting the fruit into large slices and discards the core on the counter.\", \"He cuts the slices into smaller pieces and places them in the bowl.\", \"The man sets the knife down when he has finished.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a mango from the fridge.\", \"The person takes out a peeler from the drawer.\", \"The person peels a sticker from the mango, throws it in the trash, then washes the mango.\", \"The person takes a plate from the dishwasher and rinses it off in the sink.\", \"The person uses the peeler to peel the mango.\", \"The person cuts the mango in strips from the core.\", \"The person chops the mango strips on the cutting board and sets them onto the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a mango from the fridge.\", \"The person takes out a peeler from the drawer.\", \"The person peels a sticker from the mango, throws it in the trash, then washes the mango.\", \"The person takes a plate from the dishwasher and rinses it off in the sink.\", \"The person uses the peeler to peel the mango.\", \"The person cuts the mango in strips from the core.\", \"The person chops the mango strips on the cutting board and sets them onto the plate.\", \"He gets a cutting board out of the cupboard.\", \"He gets a knife out of the drawer.\", \"He gets a mango out of the fridge.\", \" He rinses the mango.\", \"He uses a peeler to peel the mango.\", \"He cuts the end off the mango and slices it in half.\", \"He slices the mango into small pieces and then puts them on the plate.\", \"She takes out cutting board\", \"She takes out knife\", \"She takes out mango\", \"She takes out peeler\", \"She washes mango\", \"She takes out a plate\", \"She peels mango\", \"She slices mango\", \"She puts mango on plate\", \"How to prepare a mango.\", \"The person takes out a cutting board and a knife.\", \"The person takes out a fresh mango.\", \"The person takes out a peeler.\", \"The person removes the label(s) off the mango.\", \"The person washes the mango.\", \"The person takes out a bowl.\", \"The person washes and rinses the bowl.\", \"The person places the bowl next to the cutting board.\", \"The person uses the peeler to peel the mango.\", \"The person places the mango on the cutting board.\", \"The person slices the mango.\", \"The person cuts the slices into smaller chunks and places them into the bowl.\", \"The person takes out a cutting board and sharp knife.\", \"The person selects a mango from the refrigerator.\", \"The person rinses off the mango.\", \"The person washes a dish.\", \"The person peels the mango.\", \"The person begins to slice the fruit off of the mango.\", \"The person cuts the rest of the mango flesh from the core.\", \"The person dices the mango into bite sized pieces.\", \"He takes out a cutting board and a knife from the drawers.\", \"He takes out a mango from the refrigerator.\", \"He takes out a peeler and takes off the sticker from the mango which he throws in the trash.\", \"He washes the mango in the sink.\", \"He gets out a bowl from the dish washer and washes it in the sink.\", \"He uses the peeler to pee the skin off the mango, and he uses the knife to cut the end off the mango.\", \"He cuts off the sides of the mango around the core.\", \"He cuts the slices of mango into smaller pieces and uses the knife and his hand to pick them up and put them in the bowl.\", \"She takes out a cutting board\", \"He takes out a knife\", \"He takes out a mango from the fridge\", \"He takes out a fruit peeler\", \"He takes out a dish\", \"He peels the mango\", \"He slices the fruit off of the mango seed\", \"He chops the slices into squares\", \"He places the chopped mango in the dish\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a mango.\", \"The person gets out a peeler.\", \"The person rinses the mango.\", \"The person gets a plate out of the dishwasher and washes it.\", \"The person peels the mango.\", \"The person cuts long slices off the mango, avoiding the pit.\", \"The person chops up the mango slices and puts them on the plate.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person takes out a mango.\", \"The person takes out a fruit peeler.\", \"The person takes out a dish.\", \"The person uses the fruit peeler to peel the mango.\", \"The person cuts the tip off of the mango.\", \"The person cuts the fruit off of the mango seed.\", \"The person chops the mango slices into small pieces and places them in the dish.\", \"The person is done preparing the mango.\", \"He took out cutting board\", \"He took out knife\", \"He took out mango\", \"He took out peeler\", \"He washed mango\", \"He took out plate\", \"He washed plate\", \"He peeled mango\", \"He cut off top of mango\", \"He sliced mango\", \"He put mango on plate\"], \"fps\": 29.4, \"num_frames\": 9458}, \"s25-d51.avi\": {\"timestamps\": [[192, 273], [350, 564], [615, 912], [973, 1862], [1897, 3257], [192, 273], [350, 711], [750, 912], [973, 1135], [1186, 1982], [2009, 2232], [3270, 3408], [3270, 3408], [192, 912], [973, 1135], [1186, 1862], [1897, 1982], [2257, 3408], [192, 564], [615, 711], [750, 912], [973, 1135], [1186, 1982], [2009, 3408], [192, 273], [350, 912], [973, 1135], [1186, 1982], [2009, 3408], [192, 564], [615, 912], [973, 1135], [1186, 1982], [2009, 3408], [192, 273], [350, 711], [750, 912], [973, 1135], [1186, 1982], [2009, 2232], [2009, 3408], [192, 273], [350, 711], [750, 912], [973, 1135], [1186, 1982], [2257, 3408], [192, 564], [615, 912], [615, 912], [973, 1135], [1186, 1982], [2009, 3408], [192, 273], [350, 564], [615, 711], [750, 912], [973, 1643], [1661, 3257], [192, 564], [615, 711], [750, 912], [973, 1135], [1186, 1982], [2009, 2232], [2009, 3408], [192, 711], [750, 1135], [1186, 1862], [1897, 2232], [3270, 3408], [192, 273], [350, 711], [750, 912], [973, 1643], [1661, 1862], [1897, 3180], [2257, 3408], [192, 273], [350, 564], [615, 711], [750, 912], [973, 1862], [1897, 1949], [1961, 3257], [192, 273], [350, 711], [750, 912], [973, 1135], [1186, 1982], [2257, 3408]], \"sentences\": [\"The person gets the cutting board.\", \"The person gets the beans from the refrigerator.\", \"The person washes the beans in the sink.\", \"The person cuts off the ends of the bean stalks.\", \"The person cuts up the beans.\", \"The person removes a cutting board.\", \"Beans are removed from the refrigerator.\", \"The person selects a knife.\", \"The beans are washed.\", \"The ends are trimmed and discarded.\", \"The person rinsed their hands.\", \"The beans are stacked together and cut in pieces.\", \"The beans are prepared.\", \"Get out cutting board, broad beans and knife.\", \"Rinse broad beans under water.\", \"Cut the tips off both sides of the beans.\", \"Discard tips of beans.\", \"Cut into thin slices diagonally.\", \"The person gets out a cutting board.\", \"The person gets out some beans.\", \"The person gets out a knife.\", \"The person rinses the beans.\", \"The person cuts off the tips of the beans and throws them away.\", \"The person chops up the beans.\", \"He gets a cutting board.\", \"He gets the beans and a knife.\", \"He rinses the beans.\", \"He cuts the ends off the beans and discards them.\", \"He chops the beans.\", \"He gets a cutting board.\", \"He gets beans and a knife.\", \"He rinses the beans.\", \"He cuts off the ends of the beans and discards them.\", \"He chops the beans.\", \"The person takes out a cutting board from the drawer.\", \" The person procures a handful of broad beans from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person washes the beans in the sink.\", \"The person cuts the ends off the broad beans and throws them into the wastebin.\", \"The person washes his hands.\", \"The person chops the broad beans on the cutting board.\", \"He gets a cutting board.\", \"He gets the beans.\", \"He gets a knife.\", \"He rinses the beans.\", \"He cuts the ends off the beans and discards them.\", \"He chops the beans.\", \"The man takes out a cutting board and places it on the counter.\", \"The man takes out broad beans and from the refrigerator.\", \"He also takes out a cutting knife and places it on the cutting board.\", \"He washes the broad beans in the sink and places them on the cutting board.\", \"He slowly cuts the ends of the broad beans and throws them in the trash.\", \"Next, he cuts the broad beans in tiny pieces on the cutting board.\", \"person get out cutting board\", \"person gets out fresh broad beans\", \"person gets out knife\", \"person washes fresh broad beans\", \"person cuts the ends off the fresh broad beans\", \"person dices fresh broad beans\", \"The person takes out a cutting board from the drawer.\", \"The person takes a handful of broad beans from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person washes the broad beans in the sink.\", \"The person cuts the ends off the broad beans and throws them away.\", \"The person washes his hands in the sink.\", \"The person chops the broad beans on the cutting board.\", \"The person gets out a cutting board, a knife, and a small handful of fresh broad beans.\", \"The person washes the beans.\", \"The person cuts off both ends of each bean.\", \"The person bunches the beans together so they will be easier to cut.\", \"The person cuts the beans into fine pieces.\", \"The person takes out a cutting board, and places it on the counter.\", \"The person takes out some fresh broad beans from the refrigerator, and grabs a cutting knife.\", \"The person thoroughly washes the broad beans in the sink.\", \"The person places the broad beans on the cutting board, and uses the cutting knife to chop off the ends of the beans.\", \"The person throws away the ends of the broad beans.\", \"The person groups the broad beans together, laying them on the flat side and proceeds to cut them into small pieces.\", \"The person cleans off the excess broad bean from the knife, and makes a pile of the freshly cut beans.\", \"The person takes a chopping board out of the drawer.\", \"The person takes some broad beans out from the refrigerator.\", \"The person takes a knife out from the drawer.\", \"The person washes the broad beans.\", \"The person chops off the ends of the broad beans and discards them.\", \"The person rinses his hands.\", \"The person chops the broad beans into small pieces.\", \"The person gets out a cutting board.\", \"The person gets out some beans.\", \"The person gets out a knife.\", \"The person rinses the beans.\", \"The person cuts the tips off the beans and throws them away.\", \"The person cuts up the beans.\"], \"fps\": 29.4, \"num_frames\": 3393}, \"s27-d45.avi\": {\"timestamps\": [[255, 829], [836, 1147], [1149, 1413], [1413, 1676], [2002, 2115], [2123, 3521], [3526, 4604], [255, 829], [836, 1147], [1149, 1465], [1491, 1676], [2002, 2115], [2123, 3521], [3526, 4604], [255, 829], [836, 1147], [1149, 1413], [1413, 1612], [1640, 2115], [2123, 3246], [3257, 4604], [255, 948], [954, 1147], [1149, 1413], [1413, 2115], [2123, 3903], [255, 829], [836, 1465], [1491, 1676], [1491, 1676], [2002, 3521], [3526, 3903], [4395, 4604], [255, 829], [836, 1147], [1149, 1465], [1491, 1676], [2002, 2115], [2123, 3521], [4395, 4604], [4395, 4604], [255, 829], [836, 1465], [1491, 1676], [2002, 3903], [3526, 4604], [255, 829], [255, 829], [836, 1147], [1149, 1465], [1491, 1676], [2002, 3521], [4395, 4604], [255, 829], [836, 1197], [1197, 1465], [1491, 1676], [2002, 2115], [2123, 3521], [3526, 4604], [255, 829], [836, 1413], [1413, 1612], [1640, 3521], [3526, 4604], [255, 1465], [1491, 1676], [2002, 2115], [2123, 3655], [3526, 4604], [255, 829], [836, 1197], [1197, 1465], [1491, 1612], [1640, 3903], [3659, 4604], [255, 829], [836, 1197], [1197, 1465], [1491, 1676], [2002, 2115], [2123, 3246], [4395, 4604], [255, 631], [633, 1147], [1149, 1413], [1413, 1612], [1640, 2115], [3257, 4604], [255, 829], [836, 1147], [1149, 1465], [1491, 1676], [2002, 2115], [2123, 3246], [3257, 3521], [2123, 4604], [255, 829], [836, 948], [954, 1147], [1149, 1465], [1491, 1612], [1640, 2115], [2123, 3246], [3526, 4604]], \"sentences\": [\"The person gets out a pepper.\", \"The person gets out a plate, changes his mind, puts it back and gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the pepper.\", \"The person cuts off the top of the pepper.\", \"The person uses the knife to hollow out the pepper.\", \"The person scrapes the insides of the pepper into his hand and throws them away.\", \"The person gets out a pepper.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the pepper.\", \"The person cuts off the top of the pepper.\", \"The person hollows out the pepper.\", \"The person throws away the insides of the pepper.\", \"He took out pepper\", \"He took out cutting board\", \"He took out knife\", \"He washed pepper\", \"He cut off top of pepper\", \"He removed middle of pepper\", \"He threw away scraps\", \"He gets a bell pepper from the fridge.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He scoops out the inside of the pepper.\", \"He throws away the inside of the pepper.\", \"He goes to the refrigerator and takes out a red pepper from the draw.\", \"He goes to the draw and takes out a cutting board and knife and places it on the counter.\", \"He picks up the red pepper and washes it in the sink and shakes it dry.\", \"He puts the red pepper on the cutting board.\", \"He cuts off the top of the pepper and scrapes out the insides of the pepper.\", \"He scrapes the insides of the pepper into his hand and picks some more waste out of the inside of the pepper.\", \"He throw the waste inside hand away in the trash.\", \"A pepper is removed from the refrigerator.\", \"The person removed a cutting board.\", \"The person selected a knife.\", \"The pepper is washed.\", \"The top of the pepper is cut off.\", \"The seeds and ribs are removed.\", \"The scraps are discarded.\", \"The pepper is ready.\", \"The man begins by selecting a red pepper from the fridge.\", \"He then retrieves a cutting board and a small knife.\", \"Next, he rinses the pepper in water.\", \"He then uses the knife to cut the top off the pepper and gut the insides of it.\", \"Finally, he discards the inside of the pepper.\", \"The person procures a pepper from the fridge.\", \"The person sets the pepper on the countertop.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes the pepper in the sink.\", \"The person cuts off the top of the pepper and then carves out the seeds.\", \"The person throws the seeds into the wastebin.\", \"The person gets out a pepper.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the pepper.\", \"The person cuts off the top of the pepper.\", \"The person hollows the pepper out.\", \"The person throws away the insides of the pepper.\", \"Get a fresh red bell pepper from the refrigerator.\", \"Prepare by grabbing a large cutting board and small paring knife.\", \"Rinse the pepper with water and shake it dry.\", \"Cut off the cap of the pepper, remove the seeds and white fleshy insides with your knife.\", \"Be sure to clean your work station by throwing away the removed parts of the pepper.\", \"The man prepares a pepper, a cuttingboard, and a small knife.\", \"He rinses off the pepper and places it on the cuttingboard.\", \"he slices the top of the pepper away.\", \"He uses the knife to hollow the pepper of it's seeds and insides.\", \"He discards the inner materials of the pepper.\", \"The man grabs a fresh red bell pepper out of the refrigerator.\", \"The man grabs a satisfactory cutting board.\", \"The man grabs a knife.\", \"The man rinses the red bell pepper.\", \"The man hollows out the red bell pepper.\", \"The man properly disposes of the hollowed bits of the red bell pepper.\", \"The person got out a pepper.\", \"The person got out a cutting board.\", \"The person got out a knife.\", \"The person washed the pepper.\", \"The person cut the top of the pepper off.\", \"The man cut out the seeds of the pepper.\", \"The man threw away the seeds/waste.\", \"The person takes a pepper out from the refrigerator.\", \"The person takes a chopping board out of the drawer.\", \"The person takes out a knife from another drawer.\", \"The person washes the pepper.\", \"The person cuts off the top of the pepper.\", \"The person removes the seeds from the pepper and discards them.\", \"The person takes the red pepper out of the refridgerator\", \"The person takes out a rectangular cutting board and places it on the counter\", \"The person takes out a small knife\", \"The person rinses the red pepper\", \"The person cuts off the top part of the red pepper\", \"The person hollows out the contents of the main portion of the red pepper\", \"The person scrapes out a portion of the top part of the red pepper\", \"The person throws away the scooped out portions of the red pepper\", \"He took out pepper\", \"He took out cutting board\", \"He took out second cutting board\", \"He took out knife\", \"He washed pepper\", \"He cut off top of pepper\", \"He cut out middle of pepper\", \"He threw away middle of pepper\"], \"fps\": 29.4, \"num_frames\": 4741}, \"s24-d28.avi\": {\"timestamps\": [[246, 947], [963, 1248], [1318, 1648], [1648, 2246], [2292, 5840], [5882, 6922], [6979, 7124], [246, 947], [963, 1248], [1318, 1704], [1704, 1904], [1972, 2595], [2595, 2746], [2917, 4658], [4664, 6176], [246, 947], [963, 1400], [1400, 1704], [1704, 2246], [2292, 5799], [6776, 6922], [246, 947], [963, 1248], [1318, 1704], [1704, 2246], [2292, 5840], [5882, 6090], [5799, 6922], [6979, 7124], [246, 947], [963, 1648], [1648, 4658], [4664, 5840], [5882, 6090], [6979, 7124], [246, 947], [963, 1248], [1318, 1648], [1648, 1904], [1972, 2246], [2292, 4658], [4664, 6176], [6130, 6922], [6130, 7124], [246, 947], [963, 1648], [1648, 2746], [2917, 4658], [4664, 6090], [6130, 6176], [246, 947], [963, 1507], [1514, 1904], [1972, 2246], [2292, 5840], [5882, 6176], [6776, 6922], [6979, 7124], [246, 947], [963, 1248], [1318, 1904], [1972, 2246], [2292, 5840], [5882, 6090], [6776, 6922], [6979, 7124], [246, 1248], [1318, 1543], [1560, 2246], [2292, 5840], [6979, 7124], [6979, 7124], [246, 1248], [1318, 1904], [1972, 2246], [2292, 2746], [2917, 3717], [2917, 3717], [3741, 4658], [4664, 5840], [6130, 6922], [6776, 7124], [246, 947], [963, 1704], [1704, 2246], [2292, 5840], [5882, 6090], [5882, 6922], [246, 947], [963, 1248], [1318, 1507], [1514, 1904], [1972, 2246], [2292, 5840], [5882, 6090], [5882, 6922], [6979, 7124], [246, 947], [246, 947], [246, 947], [963, 1248], [1318, 1543], [1560, 1904], [1972, 2246], [2292, 2489], [2489, 5661], [5667, 6176], [6130, 6922]], \"sentences\": [\"She took out orange\", \"She took out knife\", \"She washed orange\", \"She took out plate\", \"She peeled orange\", \"She threw away peel\", \"She separated orange\", \"Get your oranges.\", \"Grab a knife.\", \"Wash your oranges first.\", \"Dry the oranges.\", \"Cut the top of the orange in a circle.\", \"Peel off the top.\", \"Slice the rest of the skin up and peel it off.\", \"Cut the orange in half.\", \"The person procures a bag of oranges from the fridge.\", \"The person takes out a knife from the drawer and cuts the bag open.\", \"The person washes the orange in the sink.\", \"The person procures a plate from the cabinet.\", \"The person peels the orange with the knife.\", \"The person throws the peels into the wastebin.\", \"The person gets out a bag of oranges.\", \"The person gets out a knife.\", \"The person takes one orange from the bag and rinses it.\", \"The person gets out a plate.\", \"The person peels the orange.\", \"The person breaks the orange in half.\", \"The person throws away the orange peel.\", \"The person breaks the orange in quarters.\", \"The person gets an orange from the refrigerator.\", \"The person washes the orange in the sink.\", \"The person makes a cut in the peel of the orange and then takes the peel off the orange.\", \"The person removes any excess skin off the orange using a knife.\", \"The person pries the orange open using her fingers.\", \"The person discards the orange peels and opens the orange into fourths.\", \"She took out oranges\", \"She took out knife\", \"She washed orange\", \"She dried orange\", \"She took out plate\", \"She peeled orange\", \"She broke orange in half\", \"She threw away peels\", \"She separated orange\", \"She gets oranges.\", \"She washes an orange.\", \"She cut off the end of the orange.\", \"She peels the skin of the orange.\", \"She splits the orange in half.\", \"She throws away the peel.\", \"She goes to the refrigerator and takes out a bag of oranges and places them on the counter.\", \"She goes to the drawer and takes out a knife and cuts the bag open.\", \"She takes out one orange and goes to the sink and washes and then dries the orange.\", \"She goes to the cupboard and takes out a plate and places it on the counter.\", \"She cuts and peels the orange with the knife.\", \"She then pries the orange apart into two pieces.\", \"She picks up the rinds and throws them away in the trash.\", \"She picks up the orange again and pries it apart some more.\", \"The person gets out a bag of oranges.\", \"The person gets out a knife.\", \"The person takes out one orange and rinses it.\", \"The person gets out a plate.\", \"The person peels the orange.\", \"The person breaks the orange in half.\", \"The person throws away the orange peel.\", \"The person breaks the orange into quarters.\", \"The person takes out a knife.\", \"The person takes out an orange.\", \"The person takes out a plate.\", \"Using the knife for help, the person peels the orange.\", \"Using her hands, the person splits the orange into quarters.\", \"The person is done.\", \"She takes out a bag of oranges and a knife.\", \"She washes and dries one of the oranges.\", \"She takes out a plate.\", \"She cuts a circle in the top of the skin of the orange, and then removes the circle.\", \"She slides the knife around the gap between skin and flesh of the orange.\", \"She makes cuts along the orange forming wedges in the skin.\", \"She peels the wedges of skin from the orange.\", \"Using the knife, she scrapes off much of the inner skin.\", \"She throws away the skin of the orange.\", \"She breaks the skinned orange into wedges.\", \"She took out orange\", \"She washed orange\", \"She took out plate\", \"She peeled orange\", \"She broke orange in half\", \"She threw away peel\", \"The person gets out a bag of oranges.\", \"The person gets out a knife.\", \"The person opens the bag.\", \"The person takes out an orange and rinses it.\", \"The person gets out a plate.\", \"The person peels the orange.\", \"The person tears the orange in half.\", \"The person throws away the peel.\", \"The person tears the orange halves into quarters.\", \"The Woman opens the fridge door.\", \"She removes some oranges from the fridge.\", \"She closes the fridge door and walks to the counter.\", \"The woman opens a drawer and removes a knife, then closes the drawer.\", \"She opens the package of oranges and removes one from the bag.\", \"The women then washes and dries the orange.\", \"She walks to a cupboard and opens the door and removes one plate, then closes the door.\", \"She brings the plate to the counter, picks up the knife and begins peeling the orange.\", \"When she finishes peeling the orange she spends time cutting away the pulp from the outer orange.\", \"She breaks apart part of the orange and removes additional pulp with her hands.\", \"She picks up the peelings and throws it in the garbage.\"], \"fps\": 29.4, \"num_frames\": 7214}, \"s21-d43.avi\": {\"timestamps\": [[231, 412], [418, 828], [833, 1503], [1521, 2297], [2370, 2440], [2444, 2577], [2618, 3090], [3090, 3214], [3223, 3507], [3553, 3791], [3795, 3938], [231, 412], [418, 754], [760, 2297], [2370, 2471], [2478, 3214], [3223, 3507], [3553, 3938], [231, 357], [366, 412], [418, 828], [833, 2297], [2370, 2577], [2618, 3090], [3090, 3214], [3223, 3507], [3553, 3791], [3795, 3938], [3795, 3938], [231, 357], [366, 412], [418, 806], [813, 2297], [2370, 2471], [2478, 2577], [2618, 2711], [2723, 3067], [3078, 3214], [3223, 3338], [3356, 3507], [3553, 3898], [3905, 3938], [3905, 3938], [231, 412], [418, 754], [760, 2297], [2370, 2471], [2478, 2577], [2618, 2711], [2723, 3025], [3047, 3214], [3223, 3507], [3553, 3898], [3905, 3938], [231, 449], [462, 828], [833, 1503], [1521, 2297], [2370, 2471], [2478, 2577], [2618, 2758], [2766, 3067], [3078, 3214], [3223, 3507], [3553, 3791], [3795, 3938], [231, 412], [418, 754], [760, 2297], [2370, 2471], [2478, 2577], [2618, 3507], [3553, 3938], [231, 449], [462, 754], [760, 2297], [2370, 2471], [2478, 2577], [2618, 3507], [3553, 3938], [231, 449], [462, 855], [875, 1503], [875, 1503], [1521, 2440], [2444, 2577], [2618, 2787], [2838, 3938], [231, 855], [875, 2471], [2478, 3507], [3553, 3898], [3905, 3938], [231, 412], [418, 828], [833, 2297], [2370, 2440], [2444, 2577], [2618, 3025], [3047, 3214], [3223, 3440], [3440, 3791], [3795, 3938], [231, 357], [366, 412], [418, 855], [875, 2297], [2370, 2471], [2478, 2577], [2618, 2711], [2723, 3025], [3047, 3214], [3223, 3440], [3440, 3791], [3795, 3938], [231, 449], [462, 754], [760, 855], [875, 2297], [2370, 2577], [2618, 2787], [2838, 3090], [3090, 3338], [3356, 3597], [3623, 3938], [231, 2297], [2370, 2440], [2444, 3025], [3047, 3507], [3553, 3791], [3795, 3938], [231, 412], [418, 828], [833, 1503], [1521, 2297], [2370, 2471], [2478, 2577], [2618, 3067], [3078, 3214], [3223, 3507], [3553, 3938], [231, 412], [418, 828], [833, 2577], [2618, 2758], [2766, 3214], [3223, 3507], [3553, 3791], [3795, 3938], [231, 412], [418, 806], [813, 2297], [2370, 2471], [2478, 2711], [2723, 2787], [2838, 3067], [3078, 3214], [3223, 3507], [3553, 3898]], \"sentences\": [\"The person took out a knife and a peeler.\", \"The person took out the potato and brought it to the sink.\", \"The person peeled potato #1.\", \"The person peeled potato #2.\", \"The person washed the potatoes.\", \"The person got out a cutting board.\", \"The person filled a pot with water.\", \"The person put some salt in the pot.\", \"The person put the pot on the burner and turned it on.\", \"The person cut the potatoes.\", \"The person put the potatoes in the pot and put the cover on.\", \"The person takes out a knife and a peeler from the drawer.\", \"The person takes a pair of potatoes from the pantry.\", \"The person uses the peeler to skin the potatoes over the sink.\", \"The person washes the potatoes in the sink.\", \"The person takes a pot from a cabinet, fills it with water, and adds salt.\", \"The person places the water filled pot onto the stove and turns it on.\", \"The person chops the potato and places it into the pot and covers it with a lid.\", \"The person takes out a knife.\", \"The person takes out a vegetable peeler.\", \"The person takes out potatoes.\", \"The person peels the potatoes.\", \"The person takes out a cutting board.\", \"The person fills a pot with water.\", \"The person adds salt to the pot of water.\", \"The person puts the pot on the range and turns it on.\", \"The person slices the potatoes in half, length-wise and then width-wise.\", \"The person puts the potatoes into the pot and covers it with the lid.\", \"The person is done.\", \"She took out knife\", \"She took out peeler\", \"She took out potato\", \"She peeled potatoes\", \"She washed potatoes\", \"She took out cutting board\", \"She took out pot\", \"She put water in pot\", \"She put salt in pot\", \"She put pot on stove\", \"She turned on stove\", \"She cut up potato\", \"She put potato in pot\", \"She put lid on pot\", \"The person takes out a knife and a peeler from the drawer.\", \"The person takes a pair of small potatoes from the pantry.\", \"The person peels both potatoes over the sink with the peeler.\", \"The person washes the potatoes in the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a pot from the drawer and sets it on the stove.\", \"The person fills the pot with water.\", \"The person adds salt to the potted water.\", \"The person turns on the stove.\", \"The person quarters the potatoes on the cutting board.\", \"The person places the potatoes in the pot on the stove.\", \"The woman walks to the counter, opens a drawer, removes a small knife and potato peeler. She places them on the counter and closes the drawer.\", \"She picks up the knife, walks to a cupboard, opens the door and removes two small potatoes. She closes the cupboard door, returns to the counter and sets down the knife.\", \"She sets down one potato, picks up the peeler, goes to the sink and begins peeling the potato. She sets down the first peeled potato.\", \"She picks up the second potato, peels it and sets down the peeler.\", \"She picks up both potatoes, turns on the faucet and rinses them off.\", \"She opens a drawer, removes a cutting board, places it on the counter and closes the drawer. She set the peeled potatoes on the cutting board.\", \"The woman opens another drawer, removes a sauce pan and places it on the stove.\", \"She removes the lid and takes the pan to the sink and adds water.\", \"she places the pan on the counter and adds some salt.\", \"She places the pan back on the stove and turns on the burner.\", \"She picks up the knife and cuts the potatoes into large pieces.\", \"She places the cut potatoes in the pan and puts the lid on the pan.\", \"The person takes out a knife and a peeler from the drawer.\", \"The person takes a pair of small potatoes from the pantry.\", \"The person uses the peeler to peel the potatoes over the sink.\", \"The person washes the potatoes in the sink.\", \"The person takes out a cutting board from the drawer and sets the potatoes on it.\", \"The person takes out a pot  from the drawer, fills it with water, adds salt, places it on the stove and turns it on.\", \"The person chops the potatoes on the cutting board, puts them in the pot, and covers it with a lid.\", \"The person gets out a knife and potato peeler.\", \"The person gets out two potatoes.\", \"The person peels the potatoes.\", \"The person rinses the potatoes.\", \"The person gets out a wooden plate.\", \"The person gets out a pot, fills it with water, puts it on the stove and turns it on.\", \"The person cuts up the potatoes and puts them in the pot.\", \"She gets a knife and another sharp tool.\", \"She gets two potatoes.\", \"She starts skinning the potato.\", \"She starts skinning the second potato.\", \"She washed the two potatoes.\", \"She gets a circular cutting board.\", \"She gets a pot.\", \"He puts the sliced potatoes in the pot.\", \"The person gathers a knife, a potato peeler, and potatoes.\", \"The person peels, then rinses the potatoes.\", \"The person prepares water to boil; enough to boil the two small potatoes. She adds salt to the water.\", \"The person chops each potato into four pieces.\", \"The person places these pieces into the water that is heating.\", \"She gets out a knife and a peeler from the drawers.\", \"She picks up the knife and gets a potato from the cupboard.\", \"She uses the peelers to remove the skin of the potatoes over the sink.\", \"She washes the potatoes in the sink.\", \"She gets out a circular cutting board and places the potatoes on top of the cutting board.\", \"She gets out a pot and fills it up with water from the sink.\", \"She pours some liquid into the pot.\", \"She places the pot on the stove and turns on the stove.\", \"She uses the knife to cut each of the potatoes into fourths.\", \"She puts the potato pieces into the pot.\", \"The person gets out a knife.\", \"The person gets out a vegetable peeler.\", \"The person gets out two potatoes.\", \"The person peels the potatoes.\", \"The person rinses the potatoes.\", \"The person gets out a wooden plate and puts the potatoes on it.\", \"The person gets out a pot.\", \"The person fills the pot with water.\", \"The person appears to be adding salt just off-camera.\", \"The person puts the pot on the stove and turns it on.\", \"The person cuts the potatoes into quarters.\", \"The person puts the potatoes in the pot.\", \"Take knives out\", \"Take out potatoes\", \"Peel all the skin off the potatoes with peeler\", \"Rinse peeled potatoes under water\", \"Take out cutting board\", \"Take out pot and fill with water\", \"after filling water add salt to pot\", \"Put back on stove and heat the water in pot\", \"Slice the potatoes once down the middle and then in little pieces\", \"Add potatoes in pot and then cover as they cook\", \"The person peels two potatoes.\", \"The person rinses both potatoes briefly.\", \"The person adds water to a pot.\", \"The person adds salt to the water and turns the stove top on\", \"The person cuts each potato into quarters.(1/4)\", \"The person adds potatoes to the pot and put the lid on.\", \"The person takes a knife and a peeler out from the drawer.\", \"The person takes two potatoes out from the cupboard.\", \"The person peels the first potato.\", \"The person peels the second potato.\", \"The person rinses both potatoes.\", \"The person places both potatoes on the chopping board.\", \"The person takes out a pot and fills it with water.\", \"The person adds salt to the water.\", \"The person puts the pot on the stove and turn on the gas.\", \"The person cuts each potato into four pieces and puts them all into the pot of water.\", \"The person takes a knife and peeler from a drawer.\", \"The person gets two small potatoes from the pantry.\", \"The person deftly peels the potatoes over the sink, then takes out a cutting board and places them on it.\", \"The person gets a pot and a lid from a cabinet and places it on the stove.\", \"The person fills the pot with water from the sink and adds salt.\", \"The person turns on the stove.\", \"The person quarters the potatoes on the cutting board with the knife.\", \"The person puts the potatoes in the pot on the stove and covers it with the lid.\", \"He took out knife\", \"She took out potato\", \"She peeled potato\", \"He washed potato\", \"She took out cutting board\", \"She took out pot\", \"She put water in pot\", \"She put salt in pot\", \"She turned on stove\", \"She cut up potato\"], \"fps\": 29.4, \"num_frames\": 4017}, \"s15-d35.avi\": {\"timestamps\": [[187, 574], [594, 733], [748, 851], [949, 1171], [1198, 1708], [1708, 3026], [3026, 3657], [3743, 4675], [4771, 6212], [187, 574], [594, 851], [594, 851], [949, 1356], [1396, 1865], [1937, 3026], [3026, 3657], [3743, 4675], [4771, 5987], [187, 574], [594, 733], [748, 851], [949, 1356], [1396, 1770], [1824, 3657], [6164, 6191], [187, 574], [594, 1320], [1329, 1708], [1708, 3657], [6191, 6212], [187, 574], [594, 1356], [1396, 1770], [1824, 3657], [6222, 6315], [187, 574], [594, 851], [949, 1356], [1396, 1527], [1551, 1708], [1708, 1865], [1937, 3026], [3026, 3982], [187, 574], [594, 851], [949, 1356], [1396, 1708], [1708, 3026], [3026, 3657], [4092, 4675], [4771, 5987], [187, 574], [594, 1356], [1396, 1527], [1551, 1708], [1708, 1865], [1937, 2821], [2876, 3634], [3634, 3657], [3743, 5987], [6222, 6242], [187, 574], [594, 851], [949, 1356], [1396, 1770], [1824, 2821], [2876, 3026], [3026, 3657], [3743, 4675], [3743, 4675], [4771, 5987], [3743, 6212], [6352, 6376], [187, 574], [594, 733], [748, 851], [949, 1356], [1396, 1708], [1708, 2821], [2876, 3657], [3743, 4675], [4771, 5987], [187, 574], [594, 851], [949, 1356], [1396, 1770], [1824, 2821], [2876, 3657], [3743, 4675], [4771, 5987], [187, 574], [594, 1356], [1396, 1770], [3743, 6242], [6254, 6376], [187, 574], [594, 1356], [1396, 1708], [1708, 2821], [2876, 3657], [1824, 4675], [4771, 5987], [187, 574], [594, 1171], [1198, 1356], [1396, 1770], [1824, 3026], [3026, 3657], [3743, 4675], [6164, 6212], [3743, 6376], [187, 574], [594, 851], [949, 1356], [1396, 1770], [1824, 2821], [2876, 3657], [3743, 4675], [187, 574], [594, 733], [748, 851], [949, 1171], [1198, 1320], [1329, 1708], [1708, 3026], [3026, 3657], [3743, 4675], [4771, 5987]], \"sentences\": [\"She took out plums\", \"She took out bowl\", \"She took out cutting board\", \"She took out knife\", \"She washed plumbs\", \"She peeled one plum\", \"She sliced one plum\", \"She peeled second plumb\", \"She sliced second plumb\", \"She took out plum\", \"She took out bowl\", \"She took out cutting board\", \"She took out two knives\", \"She washed plums\", \"She peeled first plum\", \"She cut first plum\", \"She peeled second plum\", \"She cut up second plum\", \"The person gets out two plums.\", \"The person gets out a bowl.\", \"The person gets out a cutting board.\", \"The person gets out two knives.\", \"The person rinses the plums.\", \"The person peels a  plum and slices it up.\", \"The person peels the other plum and slices it up.\", \"She gets the plums.\", \"She gets a bowl, cutting board, and knife.\", \"She rinses the plums.\", \"She peels the first plum and chops it up.\", \"She peels the other plum and chops it.\", \"The woman takes out two plums.\", \"The woman takes out the supplies she will need.\", \"The woman rinses the plums.\", \"The woman peels and slices the first plum.\", \"The woman peels and slices the second plum.\", \"Take out as many plums as you would like to prepare.\", \"Next take out a bowl and cutting board.\", \"Find a small knife for cutting the plums.\", \"If there is a sticker on it take it off.\", \"Wash the plums with water.\", \"Take the plum and knife and cut the skin off the plum.\", \"Cut chunks off the plum around the seed in the middle.\", \"Repeat the process for other plums\", \"Woman walk to the fridge and grabs two small plums.\", \"She places the plums on the counter and pulls out a bowl and cutting board from the drawer beneath.\", \"She pulls out a peeler and a knife from the drawer.\", \"She washes the plums.\", \"She peeled the first plum.\", \"She finished cutting the first plum.\", \"She peels the second plum.\", \"She cuts the second Plum.\", \"The woman takes out two plums from the refrigerator.\", \"She also takes out a bowl, cutting board, and two small knifes.\", \"She removes the stem from a plum and washes it in the sink.\", \"She also washes the second plum.\", \"She places one plum on the cutting board and holds the other.\", \"She uses a small knife and peels the skin off of the plum.\", \"She takes the peeled plum and and cuts it in slices on the cutting board.\", \"She takes the second plum and begins to peel it with the small knife.\", \"She places the peeled plum on the cutting board and cuts it in slices.\", \"She places all the peelings in the bowl.\", \"The person removes two plums from the fridge.\", \"The person removes a metal bowl and a cutting board from a drawer.\", \"The person removes two knives from the drawer.\", \"The person cleans both plums in the sink.\", \"The person uses a knife to remove the skin from one of the plums; placing the discarded skin in the bowl.\", \"The person cuts a slit around the circumference of the plum.\", \"The person cuts the fruit off of the large pit and discards the pit into the bowl.\", \"The person uses the knife to remove the skin from the second plum.\", \"The person cuts a slit in the second plum.\", \"The person cuts the fruit from the pit on the second plum and places the pit into the bowl.\", \"The person tastes a piece of the fruit.\", \"The person presents the finished product.\", \"She took out plums\", \"She took out bowl\", \"She took out cutting board\", \"She took out knife\", \"She washed plums\", \"She peeled plum\", \"She chopped plum\", \"She peeled plum\", \"She chopped up plum\", \"The person removes two plums from the refrigerator.\", \"The person sets out a bowl and a cutting board.\", \"The person sets out two knives.\", \"The person washes the plums.\", \"The person peels a plum.\", \"The person cuts up the plum and removes the pit.\", \"The person peels a plum.\", \"The person cuts up the plum and removes the pit.\", \"She gets out some plums.\", \"She sets out the needed equipment.\", \"She washes the plums.\", \"She peels and cuts the plums.\", \"She rearranges the items on the counter.\", \"The person takes two plums out of the refrigerator.\", \"The person takes a small metal bowl, a chopping board and two knives out of the drawer.\", \"The person washes the plums.\", \"The person peels the skin off one plum into the metal bowl.\", \"The person cuts the peeled plum into small slices.\", \"The person peels the skin off the second plum into the metal bowl.\", \"The person cuts the second peeled plum into small slices.\", \"She gets two plums from the refrigerator and places them on the counter.\", \"She gets a metal bowl and wooden cutting board out and then she pulls on a cloth, bringing the drawer out again.\", \"She takes out a knife from the drawer.\", \"She washes the plums in the sink and places them in the metal bowl.\", \"She places one plum on the cutting board and then uses a knife to remove the skin from one of the plums, holding it above the metal bowl, before putting it back on the cutting board.\", \"She uses a knife to cut the skinless plum into pieces and throws the part she does not want into the metal bowl.\", \"She picks up the other plum and cuts all the skin off of it, into the metal bowl.\", \"She uses the knife to cut the other plum which is now skinless, over the cutting board, into pieces and then throws a piece away after tasting a piece of the plum.\", \"She puts the knives together by the bowl and centers the cutting board in the middle of the counter.\", \"A lady retrieves 2 plums from the refrigerator.\", \"She removes a small bowl and a small wooden cutting board from the drawer and places them on the counter.\", \"She chooses two small knives from the drawer.\", \"She cleans the plums by removing the stickers and washing them in the sink.\", \"She peels one plum, discarding the peel into the bowl.\", \"She slices the fruit off of the pit, and discards the pit into the bowl.\", \"She peels the second plum, again discarding the peel in the bowl.\", \"She took out plums\", \"She took out bowl\", \"She took out cutting board\", \"She took out knife\", \"She took out second knife\", \"She washed plum\", \"She peeled first plum\", \"She sliced first plum\", \"She peeled second plum\", \"She sliced second plum\"], \"fps\": 29.4, \"num_frames\": 6456}, \"s23-d34.avi\": {\"timestamps\": [[211, 339], [344, 472], [520, 763], [784, 891], [921, 1129], [1140, 1360], [1373, 1548], [1586, 1999], [1999, 4772], [4818, 4922], [211, 472], [520, 763], [784, 1176], [1209, 2093], [4991, 5058], [211, 472], [520, 1129], [1140, 1360], [1373, 1999], [1999, 2201], [2338, 2671], [2721, 4922], [211, 472], [520, 1176], [1209, 1548], [1586, 1619], [1619, 2424], [2483, 2671], [2721, 3230], [3230, 4772], [211, 339], [344, 472], [520, 763], [784, 1548], [1586, 1999], [4818, 4922], [211, 891], [921, 1176], [1209, 1548], [1586, 2033], [2101, 5058], [211, 339], [344, 472], [520, 763], [784, 891], [921, 1176], [1209, 1360], [1373, 1548], [1586, 2033], [2033, 4922], [211, 339], [344, 472], [520, 763], [784, 1360], [1373, 1548], [1586, 2033], [4991, 5058], [211, 472], [520, 763], [784, 1548], [1586, 2033], [2033, 4922], [211, 339], [344, 472], [520, 763], [784, 891], [921, 1129], [1140, 1360], [1373, 1548], [1586, 2033], [2033, 3230], [2033, 4922], [211, 339], [344, 472], [344, 472], [520, 763], [784, 891], [921, 1129], [1140, 1360], [1373, 1548], [1586, 2033], [2033, 2201], [2338, 3004], [3039, 4772], [3230, 4922], [4991, 5058], [211, 370], [373, 472], [520, 763], [784, 891], [921, 1129], [1140, 1360], [1373, 1548], [1586, 2033], [4818, 4922], [211, 339], [344, 472], [520, 763], [784, 891], [921, 1129], [1140, 1360], [1373, 1548], [1586, 2033], [2033, 4922], [211, 339], [344, 472], [520, 763], [784, 891], [921, 1129], [1140, 1360], [1373, 1548], [1586, 1999], [1999, 2201], [2338, 4772], [2033, 4922], [211, 370], [373, 472], [520, 763], [784, 891], [921, 1129], [1140, 1999], [1999, 3004], [3039, 4772], [4818, 4922], [211, 370], [373, 472], [520, 763], [784, 891], [921, 1176], [1209, 1548], [1586, 2033], [2033, 2201], [4818, 4922], [211, 339], [344, 472], [520, 763], [784, 891], [921, 1129], [1140, 1548], [1586, 2033], [2033, 2201], [2338, 3230]], \"sentences\": [\"He took out cutting board\", \"He took out knife\", \"He took out ginger\", \"He took out plate\", \"He cleaned plate\", \"He cut off piece of ginger\", \"He put back leftover ginger\", \"He washed ginger\", \"He diced ginger\", \"He put ginger on plate\", \"A man enters the kitchen, removes a cutting board and a knife and places them on the counter.\", \"He removes the ginger from the pantry and places it on the cutting board.\", \"He takes a plate from the cupboard, rinses it in the sink and places in on the counter.\", \"He cuts off a portion of the ginger, returns the rest to the pantry and washes the usable portion.\", \"He thinly slices then dices the ginger and transfers it from the cutting board to the plate.\", \"Places cutting board and knife on counter top.\", \"Washes plate.\", \"Splits the item in half and returns the other half to the cupboard.\", \"Washes the item.\", \"Cuts the ends of the item and removes them.\", \"Splits the item and begins slicing both halves.\", \"Places the sliced items onto the plate.\", \"Gather cutting board, knife, ginger root and plate.\", \"Soak plate in preparation of receiving diced ginger\", \"Cut ginger root in half and return one half to refrigerator\", \"Wash remaining ginger root thoroughly\", \"Using knife, remove edges from ginger root and cut the root in half\", \"Place smooth side of root on the cutting board and cut thin slices of the root\", \"Take the thin slices and cut them into small strips\", \"Place the thin slices on the wet dish\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets the ginger.\", \"He cuts off a piece of ginger and puts the rest away.\", \"He rinses the ginger.\", \"He chops the ginger and puts it on a plate.\", \"He gets out a cutting board and a knife from the drawers and gets out ginger and a plate from the cabinets.\", \"He washes the plate in the sink.\", \"He cuts off a piece of ginger and puts the rest back in the cupboard.\", \"He washes the ginger in the sink and shakes it along with his hands to dry them off.\", \"He chops small pieces of the ginger, chops the ginger into fine pieces, and uses the knife to pick them up and put them on the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out some ginger.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person cuts off a piece of ginger.\", \"The person puts the rest of the ginger away.\", \"The person rinses the ginger.\", \"The person chops up the ginger and puts it on the plate.\", \"He gets a cutting board.\", \"She gets a knife.\", \"He gets the ginger.\", \"He cuts off a chunk of ginger.\", \"He puts the rest of the ginger away.\", \"He rinses the ginger.\", \"He chops the ginger and puts it on a plate.\", \"He gets a cutting board and knife.\", \"He grabs some ginger.\", \"He cuts off a bit of ginger and puts the rest away.\", \"He rinses the ginger.\", \"He chops the ginger and puts it on a plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out ginger\", \"He took out plate\", \"He washed plate\", \"He cut off piece of ginger\", \"He put back unused ginger\", \"He washed ginger\", \"He chopped ginger\", \"He put ginger on plate\", \"The person takes out a cutting board.\", \"The person chooses a knife to use.\", \"The person opens cabinet.\", \"The person takes out piece of ginger.\", \"The person takes out a plate.\", \"The person washes the plate.\", \"The person cuts off a piece of the ginger.\", \"The person returns a piece of ginger to the cabinet.\", \"The person washes the remaining piece of ginger.\", \"The person removes unwanted parts of ginger with knife.\", \"The person slices the ginger.\", \"The person chops the slices of ginger to a smaller size.\", \"The person puts the chopped ginger on the plate.\", \"The person throws away the unwanted pieces of ginger in trash.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out some ginger.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person cuts off a piece of ginger.\", \"The person puts the rest of the ginger away.\", \"The person rinses the ginger.\", \"The person chops the ginger and puts it on the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out some ginger.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person cuts off a piece of ginger.\", \"The person puts the rest of the ginger back.\", \"The person washes his hands.\", \"The person chops up the ginger and puts it on the plate.\", \"The man gets a cutting board out of the drawer and places it on the counter.\", \"The man gets a knife out of the drawer and places it on the cutting board.\", \"The man gets the ginger out of the cupboard.\", \"The man gets a plate out of the cupboard.\", \"The man rinses the plate.\", \"The man cuts off a piece of the ginger.\", \"The man places the rest of the ginger in the cupboard.\", \"The man washes the ginger, scrubbing it well.\", \"The man trims two small knots off of the ginger.\", \"The man minces the ginger.\", \"The man places the minced ginger on the plate.\", \"The person gets out a cutting board\", \"The person gets out a large knife.\", \"The person fetches his ginger.\", \"The person gets a plate from the cabinent\", \"The person rinses the plate with water.\", \"The person rinses the ginger in water.\", \"The person cuts the ginger into slices.\", \"The person dices the slices of ginger.\", \"The person scoops the diced ginger onto the plate.\", \"The person takes a cutting board out from a drawer.\", \"The person takes a knife from a drawer and places it onto the cutting board.\", \"The person gets some ginger from the pantry.\", \"The person gets a plate from the cabinet.\", \"The person washes the plate in the sink.\", \"The person cuts the ginger in halves and places on segment back into the pantry.\", \"The person rinses the remaining portion of ginger in the sink.\", \"The person removes the ends of the ginger with the knife.\", \"The person chops up the ginger and puts it on the plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out ginger\", \"He took out plate\", \"He washed plate\", \"He put back extra ginger\", \"He washed ginger\", \"He cut off end of ginger\", \"He chopped ginger\"], \"fps\": 29.4, \"num_frames\": 5215}, \"s13-d54.avi\": {\"timestamps\": [[264, 404], [404, 955], [982, 1737], [1754, 2248], [2309, 3428], [3439, 3574], [3590, 7245], [7334, 8124], [264, 513], [553, 1815], [1841, 2248], [2309, 4159], [4189, 7245], [7334, 8124], [264, 404], [404, 955], [982, 1600], [1630, 2248], [2309, 3428], [3439, 3574], [3590, 3683], [3698, 8124], [264, 486], [489, 955], [982, 1815], [1841, 3428], [3439, 7080], [7177, 8124], [264, 404], [404, 955], [982, 1549], [1569, 2248], [2309, 3428], [3439, 3554], [3554, 3804], [3868, 4159], [4189, 6168], [6217, 7080], [7177, 8033], [8097, 8124], [264, 513], [553, 955], [982, 1815], [1841, 3428], [3439, 6168], [6217, 8033], [264, 955], [982, 1815], [1841, 1970], [1970, 3428], [8097, 8124], [264, 404], [404, 955], [982, 1549], [1569, 2248], [2309, 3428], [3439, 3574], [3590, 3683], [3698, 6168], [264, 2248], [2309, 3428], [3439, 4159], [4189, 4685], [6217, 6406], [6457, 7399], [3439, 8124], [264, 513], [553, 955], [982, 1815], [1841, 3683], [3698, 4685], [4685, 6168], [4685, 7245], [7334, 7976], [264, 404], [404, 955], [982, 1549], [1569, 2248], [2309, 3428], [3439, 3574], [3590, 3683], [6217, 6837], [8002, 8033], [264, 955], [982, 1737], [1754, 2248], [2309, 3428], [7431, 8124], [264, 404], [404, 955], [982, 1549], [1569, 2248], [2309, 3349], [3364, 3574], [3590, 3804], [3439, 7245], [8097, 8124], [264, 404], [404, 955], [982, 1970], [1970, 2377], [2430, 3554], [3554, 4159], [3554, 4159], [4189, 4685], [3868, 6748], [6758, 7245], [264, 2056], [2056, 2377], [2430, 4685], [4685, 6533], [7334, 7399], [264, 486], [489, 955], [982, 1549], [1569, 1737], [1754, 2248], [2309, 3428], [3439, 3574], [3590, 3804], [3868, 4159], [4189, 6168], [4685, 7080], [6857, 8124], [264, 2248], [2309, 3428], [3439, 4159], [4189, 4685], [4685, 6168], [6217, 7245], [7431, 8033], [264, 404], [404, 955], [982, 1549], [1569, 2248], [2309, 3428], [3439, 3574], [3590, 3683], [3698, 3955], [6217, 7080], [3698, 8124]], \"sentences\": [\"He took out cutting board\", \"He took out plate and bowl\", \"He took out mango\", \"He took out peeler\", \"He peeled mango\", \"He took out knife\", \"He sliced mango\", \"He put mango on plate\", \"The man gets a cutting board out.\", \"The man pulls out a plate, a bowl, and a mango.\", \"He pulls out a peeler from the drawer.\", \"The man peels the mango.\", \"The man slices the mango with the knife.\", \"The man plates the mango.\", \"He took out cutting board\", \"He took out plate and bowl\", \"He took out mango\", \"He took out peeler\", \"He peeled mango\", \"He took out knife\", \"He washed hands\", \"He sliced mango\", \"The man takes out a cutting board.\", \"He takes out a plate and a bowl.\", \"The man gets a mango from the refrigerator.\", \"The man peels the mango.\", \"The man slices it into smaller pieces discarding unwanted parts.\", \"The man places it onto the plate ready for use.\", \"The person removes a cutting board.\", \"A plate and bowl are removed for the mango.\", \"A mango is removed from the refrigerator.\", \"The person selects a peeler.\", \"The mango is peeled over the bowl.\", \"The person selects a knife.\", \"The person rinsed and dried their hands.\", \"The mango is placed on the cutting board and the ends are trimmed.\", \"The mango is sliced away from the seed.\", \"The slices are sliced smaller.\", \"The slices are placed on the plate.\", \"The mango is prepared.\", \"The man begins by setting a wooden cutting board on the counter.\", \"He then retrieves a plate and a bowl from the cupboard.\", \"Next, he selects a mango from the fridge.\", \"He uses a peeler to peel the skin off of the mango and then places the waste into a bowl.\", \"Next, he uses a large knife to cut slices of the mango ultimately discarding the core into the bowl.\", \"Finally, he cuts the mango into thinner slices and then displays them onto a plate.\", \"He gets a cutting board, a plate, and a bowl.\", \"He puts a mango on the cutting board.\", \"He gets a knife.\", \"He peels the mango.\", \"He cuts the mango and puts it on a plate.\", \"He took out cutting board\", \"He took out plate and bowl\", \"He took out mango\", \"He took out peeler\", \"He peeled mango\", \"He took out knife\", \"He washed hands\", \"He sliced mango\", \"He prepares a cutting board, bowl, plate, and peeler, and selects a mango.\", \"He peels the mango, collecting the scraps in the bowl.\", \"Using a knife, he removes inedible parts of the mango, discarding them into the bowl.\", \"He cuts the mango around the bone.\", \"He slices the edible parts of the mango off of the bone.\", \"He cuts the mango pieces into similar-sized strips.\", \"He places the prepared mango onto a plate and discards the rest.\", \"The man begins by selecting a wooden cutting board and places it on the counter.\", \"He then retrieves a bowl and a plate from the cupboard.\", \"Next, he selects a mango from the fridge and places it on the cutting board.\", \"Next, he takes out a peeler and peels the skin of the mango placing the skin into the bowl.\", \"Using the knife, he trims the ends of the mango.\", \"Next, he slices pieces of the mango off the core and then places the core into the discard bowl.\", \"He slices the mango pieces into thinner slices.\", \"Finally, he places the finished slices onto the plate.\", \"He took out cutting board\", \"He took out plate and bowl\", \"He took out mango\", \"He took out peeler\", \"He peeled mango\", \"He took out knife\", \"He washed hands\", \"He sliced mango\", \"He put mango on plate\", \"He gets a cutting board, bowl, and plate.\", \"He gets a mango and discard the sticker.\", \"He gets a peeler.\", \"He peels the avocado.\", \"He chops the mango and puts it on a plate.\", \"He took out cutting board\", \"He took out bowl and plate\", \"He took out mango\", \"He took out peeler\", \"He peeled mango\", \"He took out knife\", \"He washed hands\", \"He sliced the mango\", \"He put mango on plate\", \"First, you will need a cutting board, bowl for unusable pieces and dish for the mango\", \"Now take mango out of refrigerator\", \"Next step is to take out peeler\", \"Peel rind of mango fully\", \"Now take out sharp knife to cut mango\", \"Cut end pieces of mango\", \"Cut mango down the middle\", \"Begin slicing mango pieces\", \"Get rid of pieces that aren't as clear of the outer rind\", \"Transfer mango on a clean plate\", \"boy takes out cutting board, plate and bowl.\", \"boy peels mango\", \"boy cuts mango away from pitt\", \"boy chops mango into slivers\", \"boy places mango on plate.\", \"The person gets out a cutting board.\", \"The person gets out a plate and a bowl.\", \"The person gets out a mango.\", \"The person peels the sticker off the mango and throws it away.\", \"The person gets out a peeler.\", \"The person peels the mango.\", \"The person gets out a knife.\", \"The person washes his hands.\", \"The person cuts off the top and bottom of the mango.\", \"The person cuts off slices of the mango.\", \"The person cuts the slices into thin strips.\", \"The person puts the slices on the plate.\", \"The person gets a cutting board, a plate, a bowl, a mango and a vegetable peeler.\", \"The person uses the vegetable peeler to peel most of the rind from the mango.\", \"The person gets a sharp knife and uses it to slice off the tip and base of the mango, also cutting away excess rind.\", \"The person bisects the mango and cuts down to the pit.\", \"The person slices off pieces of the mango, rotating it for each slice, so the fruit is cut away from the pit, then discards the pit.\", \"The person slices up the pieces of mango into thin slices.\", \"The person puts the mango slices on a plate.\", \"He took out cutting board\", \"He took out plate and bowl\", \"He took out mango\", \"He took out peeler\", \"He peeled mango\", \"He took out knife\", \"He washed hands\", \"He cut off top of mango\", \"He sliced up mango\", \"He put mango on plate\"], \"fps\": 29.4, \"num_frames\": 8183}, \"s21-d50.avi\": {\"timestamps\": [[217, 630], [217, 630], [678, 1115], [1128, 1159], [1183, 1248], [1248, 1369], [1390, 1534], [217, 441], [475, 630], [678, 1115], [1128, 1159], [1183, 1369], [1390, 1534], [217, 441], [475, 630], [678, 1115], [1128, 1159], [1183, 1369], [1390, 1534], [217, 441], [475, 630], [678, 1115], [1128, 1159], [1183, 1280], [1287, 1369], [1540, 1606], [217, 441], [475, 630], [678, 1115], [1128, 1159], [1183, 1369], [1390, 1534], [217, 441], [475, 630], [678, 1115], [1128, 1159], [1183, 1369], [1390, 1534], [217, 441], [475, 630], [475, 630], [678, 1115], [1128, 1159], [1183, 1369], [1540, 1606], [217, 441], [475, 630], [678, 1115], [1128, 1159], [1183, 1369], [1390, 1534], [217, 441], [475, 630], [475, 630], [475, 630], [678, 1115], [1128, 1159], [1183, 1534], [217, 441], [475, 630], [475, 630], [475, 630], [678, 1115], [1128, 1159], [1183, 1369], [1390, 1534]], \"sentences\": [\"The person gets out two cups and an egg.\", \"The person carefully cracks the egg over the first cup.\", \"The person moves the yolk from one half of the eggshell to the other, while pouring the egg white into the first cup.\", \"The person drops the egg yolk into the second cup.\", \"Using her fingers, the person scrapes the last bit of egg white into the first cup.\", \"The person throws away the eggshell.\", \"The person rinses her hands.\", \"The person takes a pair of cups from the cupboard.\", \"The person procures an egg from the fridge.\", \"The person cracks the egg on the edge of the counter and then drains the egg white into a cup.\", \"The person dumps the egg yolk into the second cup.\", \"The person throws the shells into the wastebin.\", \"The person washes her hands.\", \"The person takes a pair of cups from the cupboard.\", \"The person procures an egg from the fridge.\", \"The person cracks the egg on the edge of the counter and then drains the egg white into one cup.\", \"The person dumps the egg yolk into the second cup.\", \"The person throws the shells into the wastebin.\", \"The person washes her hands.\", \"She opens the cupboard and takes out two cups, placing them on the counter.\", \"She opens the refrigerator, gets out an egg, and cracks it on the counter.\", \"She uses the shells to pour all of the whites of the egg into one cup.\", \"She pours the yolk of the egg into the other cup.\", \"She dumps any remaining whites of the eggs from the shells into the cup with the egg whites.\", \"She disposes of the shells in the trash can.\", \"She washes her hands in the sink and shakes them to dry them off.\", \"The person takes a pair of cups from the cupboard.\", \"The person procures an egg from the fridge.\", \"The person cracks the egg on the edge of the counter and then drains the egg white into a cup.\", \"The person dumps the egg yolk into the second cup.\", \"The person throws the shells into the wastebin.\", \"The person washes her hands.\", \"A woman takes two cups out of the cabinet and places the cups on the counter.\", \"The woman takes an egg out of the fridge and cracks the shell in half on the counter.\", \"The woman moves the yolk back and forth between the two halves of the shell above one of the cups.\", \"She places the yolk in the empty cup.\", \"She discards the egg shell in the garbage.\", \"The woman washes her hands.\", \"The person takes two cups out from the cupboard.\", \"The person takes out an egg from the refrigerator.\", \"The person cracks the egg open.\", \"The person moves the egg yolk from one eggshell half to the next as the egg white drips down into a cup.\", \"The person pours the egg yolk into the second cup.\", \"The person discards the eggshells.\", \"The person washes her hands.\", \"Get two cups/containers and place them on your work surface.\", \"Carefully crack egg in half over one container, making sure not to break the yolk.\", \"Pour the yolk back and forth between each half of the shell to separate the yolk from the white over the original container.\", \"When the white is separated pour the yolk into the other container.\", \"Dispose of the shell.\", \"Wash your hands.\", \"Take two cups or mugs from the cubbord and place them on the counter.\", \"Take an egg out from the refrigerator.\", \"Crack the egg on the edge of the counter.\", \"Hold the egg over one of the cups and carefully split the egg open with your fingers. Keep the egg yolk in one of the shells.\", \"Now carefully seperate the whites from the yolk.  Pour the yolk between each half shell until all the whites have ended up in the cup.\", \"Pour the yolk into the other cup.\", \"Discard the shell in the trash and wash your hands.\", \"Get two tea cups.\", \"Retrieve one egg.\", \"Crack egg shell.\", \"Carefully separate shell into two pieces.\", \"Transfer egg yolk back and forth between egg shell halves, allowing the egg whites to drip into one of the cups.\", \"Transfer separated yolk into second cup.\", \"Dispose of egg shell.\", \"Wash hands.\"], \"fps\": 29.4, \"num_frames\": 1591}, \"s14-d27.avi\": {\"timestamps\": [[112, 289], [289, 743], [743, 3550], [3618, 3751], [3751, 5691], [5753, 5956], [6065, 6133], [112, 289], [289, 419], [424, 586], [608, 779], [834, 3550], [3618, 3751], [3751, 3876], [3960, 4029], [4050, 4315], [4340, 4806], [4833, 5127], [5193, 5691], [5753, 5956], [6065, 6133], [112, 289], [289, 419], [424, 586], [608, 779], [834, 3550], [3618, 3751], [3751, 5691], [5753, 5956], [6065, 6133], [112, 289], [289, 586], [608, 3550], [3618, 3801], [3804, 5691], [5753, 5956], [112, 289], [289, 743], [743, 3550], [3618, 3801], [3804, 3876], [3960, 4315], [4340, 4883], [4916, 5691], [6065, 6133], [112, 586], [608, 3751], [3751, 3876], [3960, 5655], [5753, 6133], [112, 289], [289, 586], [608, 3550], [3618, 5623], [5623, 5956], [112, 289], [289, 419], [424, 586], [608, 743], [743, 3550], [3618, 3751], [3751, 5691], [112, 289], [289, 386], [386, 586], [608, 743], [743, 3550], [3618, 3751], [3751, 4029], [4050, 5691], [5753, 5956], [5669, 6133], [112, 4029], [112, 4029], [112, 4029], [112, 4029], [112, 4029], [112, 4029], [112, 4029], [4050, 5691], [5753, 5956], [6065, 6133], [112, 289], [112, 289], [289, 586], [608, 779], [834, 3550], [3618, 3728], [3728, 3876], [5753, 5956], [6065, 6133], [112, 289], [289, 386], [386, 586], [608, 743], [743, 3550], [3618, 3751], [3751, 3876], [3960, 5655], [3960, 5956], [6065, 6133], [112, 289], [289, 386], [386, 586], [608, 743], [743, 3550], [3618, 3751], [3751, 3876], [3960, 5655], [5669, 5956], [6065, 6133], [112, 779], [834, 3550], [3618, 3751], [3751, 3876], [3960, 5655], [5669, 5956], [6065, 6133], [112, 289], [289, 419], [424, 586], [608, 743], [743, 3550], [3618, 3728], [3728, 3876], [3960, 4029], [4050, 5691], [5669, 5956], [112, 386], [386, 586], [608, 743], [743, 779], [834, 3508], [3508, 4029], [4050, 5691], [5753, 5956], [112, 289], [289, 386], [386, 586], [608, 779], [834, 3550], [3618, 3751], [3751, 3876], [3960, 5691], [5753, 5956], [6065, 6133], [112, 289], [289, 386], [386, 586], [608, 743], [743, 3550], [3618, 3801], [3804, 3876], [3960, 5691]], \"sentences\": [\"The woman grabs an onion out of the pantry.\", \"The woman grabs a cutting board, 2 knives and a bowl.\", \"The woman peels the onion.\", \"The woman washes off the onion.\", \"The woman chops the onion into fine, small pieces.\", \"The woman rinses her hands and knives off.\", \"The woman properly discards the peels.\", \"The person selects an onion from the cabinet.\", \"The woman places a cutting board on the counter.\", \"The woman selects a small paring knife and a medium knife.\", \"The woman puts a bowl on the counter.\", \"The person peels the onion with the paring knife.\", \"The person rinses off the onion.\", \"The person slices the onion in half.\", \"The person rinses off the paring knife.\", \"The person cuts one half of the onion length-wise with the paring knife.\", \"The woman uses the larger knife to further dice the onion.\", \"The person uses the paring knife to slice the second half of the onion lengthwise.\", \"The person uses the larger knife to dice the second half of the onion.\", \"The person rinses off both knives.\", \"The video ends.\", \"The person gets out an onion.\", \"The person gets out a wooden plate.\", \"The person gets out two knives.\", \"The person gets out a bowl.\", \"The person peels the onion.\", \"The person rinses the onion.\", \"The person chops up the onion.\", \"The person rinses the knife.\", \"The person throws away the peel.\", \"She gets an onion.\", \"She gets the utensils needed.\", \"She peels the onion.\", \"She rinses the onion.\", \"She chops the onion.\", \"She cleans up.\", \"Get your onion and place on counter.\", \"Get a cutting board, two knives and a bowl.\", \"Use a knife to peel the onion over the bowl.\", \"Rinse the onion off in the sink.\", \"Cut onion in half.\", \"Rinse knife and slice onion.\", \"Use other knife to cut onion in pieces.\", \"Repeat the steps for the other half of the onion.\", \"Rinse your knives and discard peels in the trash.\", \"She gets a onion, cutting board and knife.\", \"She peels the onion and rinses it.\", \"She chops it in half.\", \"She minces each half.\", \"She cleans up.\", \"She gets an onion.\", \"She gets a cutting board and a knife.\", \"She peels the onion.\", \"She chops the onions.\", \"She cleans the knife.\", \"She took out onion\", \"She took out cutting board\", \"She took out knife\", \"She took out bowl\", \"She peeled onion\", \"She washed onion\", \"She diced onion\", \"The person takes an onion from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a pair of knives from the drawer.\", \"The person takes out a metal bowl from the drawer.\", \"The person uses the smaller knife to peel the onion into the bowl.\", \"The person washes the onion in the sink.\", \"The person uses the large knife to cut the onion into halves and then rinses the smaller knife in the sink.\", \"The person alternates using each knife to slice and dice the onion halves.\", \"The person washes both knives in the sink.\", \"The person throws the peels into the wastebin.\", \"The person uses the large knife to cut the onion into halves and then rinses the smaller knife in the sink.\", \"The person washes the onion in the sink.\", \"The person uses the smaller knife to peel the onion into the bowl.\", \"The person takes out a metal bowl from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a pair of knives from the drawer.\", \"The person takes an onion from the pantry.\", \"The person alternates using each knife to slice and dice the onion halves.\", \"The person washes both knives in the sink.\", \"The person throws the peels into the wastebin.\", \"Retrieve an onion from the cupboard.\", \"Place the onion on the counter.\", \"Retrieve a cutting board and knife.\", \"Have a stainless steel bowl ready.\", \"Use the knife to peel the outer layer of skin from the onion into the bowl.\", \"Gently rinse the onion.\", \"Place the onion on the cutting board and slice it in half, down the middle.\", \"Wash the knife.\", \"Dispose of the onion peel.\", \"An onion is removed from a cabinet.\", \"The person removes a cutting board.\", \"The person selects two knives.\", \"A bowl is removed.\", \"The onion is peeled over the bowl.\", \"The onion is rinsed.\", \"The onion is cut in half.\", \"The onion is chopped.\", \"The knives are washed.\", \"The person discarded the scraps.\", \"The person gets out an onion.\", \"The person gets out a wooden plate.\", \"The person gets out two knives.\", \"The person gets out a bowl.\", \"The person peels the onion.\", \"The person rinses the onion.\", \"The person cuts the onion in half.\", \"The person dices each half of the onion.\", \"The person rinses the knives.\", \"The person throws away the onion peel.\", \"She takes out an onion from the refrigerator and a knife, a wooden circular cutting board, and a metal bowl from the drawers.\", \"She uses a knife to remove the outside covering of the onion.\", \"She washes and rubs the onion under the faucet,\", \"She puts the onion on the cutting board and takes the knife to cut it in half.\", \"She washes the knife and then cuts the two sides of the onion horizontally and vertically into fine pieces.\", \"She washes the silverware and puts them to the side.\", \"She goes to the trash can to throw away the outside of the onion which she removed.\", \"She took out onion\", \"She took out cutting board\", \"She took out knife\", \"She took out bowl\", \"She peeled onion\", \"She washed onion\", \"She cut onion in half\", \"She washed knife\", \"She diced onion\", \"She washed knife\", \"The person gets and onion out of the cupboard and a places it on the counter with a cutting board.\", \"The person selects a large knife and a small knife from the drawer.\", \"The person gets a small mixing bowl out of the drawer and places it on the counter.\", \"The person cuts off the top end of the onion.\", \"The person peels the onion, cutting off the skin.\", \"The person slices the onion in half.\", \"The person dices the onion halves.\", \"The person rinses the large knife.\", \"The person retrieves an onion from the pantry.\", \"The person takes out a cutting board.\", \"The person takes two knives from out of a drawer.\", \"The person takes a bowl from the drawer.\", \"The person peels the onion with a paring knife.\", \"The person washes the onion under the faucet.\", \"The person halves the onion with a large knife.\", \"The person slices and dices the onion on the cutting board.\", \"The person rinses the knives in the sink.\", \"The person prepares to put the peels in the bowl into the trashbin.\", \"She took out onion\", \"She took out cutting board\", \"She took out two knives\", \"She took out bowl\", \"She peeled onion\", \"She washed onion\", \"She chopped onion in half\", \"She diced onion\"], \"fps\": 29.4, \"num_frames\": 6118}, \"s14-d43.avi\": {\"timestamps\": [[224, 545], [551, 884], [906, 2974], [3039, 3185], [3332, 3651], [3739, 4324], [224, 884], [906, 1877], [1902, 2974], [3039, 3185], [3332, 3651], [3739, 4324], [4413, 4586], [224, 386], [393, 545], [551, 827], [830, 2974], [3039, 3185], [3332, 4324], [224, 386], [393, 545], [551, 827], [830, 2974], [3039, 3185], [3332, 3552], [3588, 4324], [4413, 4586], [224, 386], [393, 545], [551, 827], [830, 2974], [3039, 3185], [3332, 3552], [3588, 4324], [4413, 4586], [224, 386], [393, 500], [500, 827], [830, 2974], [3039, 3185], [3332, 3552], [3588, 3651], [3739, 4324], [4413, 4586], [224, 386], [393, 827], [830, 884], [906, 1877], [1902, 2974], [3039, 3945], [224, 386], [393, 545], [551, 827], [830, 884], [906, 1877], [1902, 3185], [3332, 3945], [4413, 4586], [224, 884], [906, 1848], [1848, 1877], [1902, 2838], [2858, 3185], [3332, 3552], [3996, 4092], [224, 386], [393, 827], [830, 1877], [1902, 2974], [3039, 3185], [3332, 3552], [4118, 4324], [4413, 4586], [224, 386], [393, 545], [551, 884], [906, 1877], [1902, 2974], [3039, 3185], [3332, 3552], [3588, 3651], [3588, 4324], [3996, 4586], [224, 386], [393, 545], [551, 827], [830, 1877], [1902, 2974], [3039, 3185], [3332, 3552], [3588, 3651], [3588, 4324], [4413, 4586], [224, 772], [775, 2974], [3039, 3185], [3332, 3552], [3739, 4324], [4413, 4586], [224, 386], [393, 500], [500, 772], [775, 1877], [1902, 2974], [3039, 3185], [3332, 3552], [3588, 3651], [224, 884], [906, 2974], [3039, 3185], [3332, 3651], [3739, 4324], [4413, 4586], [224, 827], [830, 1606], [1625, 1877], [1902, 2974], [3039, 3185], [3332, 3651], [3588, 4324], [4413, 4586], [224, 827], [830, 1606], [1625, 1848], [1848, 2838], [2858, 2974], [3039, 3552], [4413, 4586]], \"sentences\": [\"The woman takes out two potatoes, a knife, and a slicer.\", \"The woman then takes out two bowls.\", \"Using the slicer, the woman peels off the skin of the potatoes.  She uses one of the bowls for the skins, and the other for the skinless potatoes.\", \"She washes the potatoes in the bowl and gets rid of the excess water in the bowl.\", \"She discards the peels and washes the bowl.\", \"She cuts the potatoes into large chunks.\", \"She walked to the pantry, took out two potatoes, brought them to the counter, opened the drawer and took out a peeler, knife, and two bowls.\", \"She peeled the first potato into the first bowl and placed the naked potato into the second bowl.\", \"She peeled the second potato into the first bowl and placed the naked potato into the second bowl.\", \"She rinsed and drained the peeled potatoes.\", \"She threw out the potato scraps and rinsed out the bowl.\", \"She diced the potatoes in the bowl.\", \"She rinsed off the peeler and knife.\", \"person gets potatoes\", \"person gets knife and peeler\", \"person gets bowl\", \"person peels potatoes\", \"person washes potatoes\", \"person cuts potatoes\", \"The person gets out two potatoes.\", \"The person gets out a knife and a vegetable peeler.\", \"The person gets out two bowls.\", \"The person peels the potatoes.\", \"The person rinses the potatoes.\", \"The person throws away the peels.\", \"The person cuts up the potatoes.\", \"The person rinses the knife and peeler.\", \" The person gets out two potatoes.\", \"The person gets out a knife and a vegetable peeler.\", \"The person gets out two bowls.\", \"The person peels the potatoes.\", \"The person rinses the potatoes.\", \"The person throws away the peel.\", \"The person cuts up the potatoes.\", \"The person rinses the knife and peeler.\", \"The person gets out two potatoes.\", \"The person gets out a knife and vegetable peeler.\", \"The person gets out two bowls.\", \"The person peels the potatoes, putting the peels in one bowl and the potatoes in the other.\", \"The person rinses the potatoes.\", \"The person throws away the peels.\", \"The person rinses the bowl the peels were in.\", \"The person cuts up the potatoes.\", \"The person rinses the knife and peeler.\", \"She gets two potatoes.\", \"She gets out two bowls.\", \"She starts skinning the potatoes.\", \"She starts skinning the second potato.\", \"She washes the potatoes.\", \"She cuts the potatoes into small pieces.\", \"She gets two potatoes.\", \"She gets a parer and a small knife.\", \"She gets two bowls.\", \"She starts skinning the first potato.\", \"She skins the second potato.\", \"She washes the potatoes.\", \"She starts chopping the potatoes.\", \"She washes the tools.\", \"Peel the potato over a bowl\", \"Cut off anything that the peeler didn't get.\", \"Place peeled potato into a separate bowl.\", \"Repeat steps 1-3 with other potatoes.\", \"Rinse off peeled potatoes.\", \"Throw away peels.\", \"Slice potatoes into chunks.\", \"the person gets 2 potatoes\", \"the person gets a knife, peeler, and two small silver bowls.\", \"the person peels the first potatoe\", \"the person peels the second potatoe\", \"the person washes the peeled potatoes\", \"the person throws away the peels\", \"the person cuts the potatoes into small pieces.\", \"the person washes the peeler\", \"The person gets two medium potatoes out of the cupboard.\", \"The person gets out a potato peeler and a knife.\", \"The person gets out two small bowls.\", \"The person peels the first potato with the peeler and uses the knife to cut out any bad spots and then puts the potato in a bowl.\", \"The person peels the second potato, removes the bad spots and puts it in a bowl.\", \"The person rinses off both peeled potatoes in the bowl.\", \"The person throws away the potato peels.\", \"The person rinses out the potato peel bowl.\", \"The person cuts up the potatoes into chunks over the bowl.\", \"The person rinses off the knife and the potato peeler.\", \"She removes two potatoes from the cabinet and places them on the counter.\", \"She removes utensils from the drawer.\", \"She removes two bowls from the drawer and places them on the counter.\", \"She peels and cores the first potato and places it into a bowl.\", \"She peels and cores the second potato and places it into the bowl with the first potato.\", \"She rinses the bowl of potatoes with water and places it back on the counter.\", \"She discards the potato peelings into the recycling bin.\", \"She rinses the bowl and places it in the dish drain.\", \"She cuts the two potatoes into small pieces.\", \"She rinses the utensils she used and places them in the dish drain.\", \"The woman prepares her station by getting two potatoes, a peeler, a small knife, and a couple of bowls.\", \"The woman peels and removes any remaining 'eyes' from both potatoes.\", \"The woman rinses the potatoes with water and drains them.\", \"The woman throws away the excess peelings.\", \"The woman dices the potatoes into large pieces.\", \"The woman cleans her utensils.\", \"She took out potatoes\", \"She took out peeler and knife\", \"She took out bowl\", \"She peeled first potato\", \"She peeled second potato\", \"She washed potatoes\", \"She threw out peels\", \"She washed bowl\", \"The woman prepares her materials for the preparation of the potatoes: A knife, a peeler, two bowls, and one potato.\", \"There are actually two potatoes, both of which she peels and places into one bowl.\", \"She rinses off the peeled potatoes in the sink.\", \"She discards the potato skin and rinses out the bowl that they were in.\", \"She slices each potato down the middle vertically, then cuts it into smaller pieces horizontally.\", \"She rinses off the peeler in the sink.\", \"The person gets two potatoes, a knife, a vegetable peeler and two bowls.\", \"The person uses the peeler to peel the skin off one of the potatoes.\", \"The person uses the knife to trim off remaining skin, debris and eyes.\", \"The person repeats the previous two steps with second potato.\", \"The person puts the peeled potatoes in a bowl and rinses them off.\", \"The person discards skin and rinses that bowl.\", \"The person uses the knife to cut the potatoes in chunks one-half inch to one inch thick.\", \"The person rinses the utensils.\", \"She gathers supplies.\", \"Woman peels potato.\", \"Woman removes potato's eyes with knife.\", \"Woman peels the second potato.\", \"Woman removes eye from second potato.\", \"Woman continues by washing potatoes and throwing away the peels.\", \"Woman slices potatoes then rinses knife and peeler.\"], \"fps\": 29.4, \"num_frames\": 4651}, \"s22-d29.avi\": {\"timestamps\": [[303, 693], [768, 1113], [1215, 1583], [1612, 1695], [1695, 2965], [3002, 3103], [3002, 3103], [303, 693], [768, 1113], [1215, 1583], [1612, 2965], [3002, 3103], [303, 693], [768, 1113], [1215, 1583], [1612, 1742], [1778, 2965], [3002, 3103], [303, 693], [768, 1113], [1215, 1583], [1612, 2965], [3002, 3103], [303, 693], [768, 1113], [1215, 1742], [1778, 3103], [1778, 3103], [303, 1113], [1215, 1583], [1612, 2965], [3002, 3103], [3002, 3103], [303, 693], [768, 1113], [1215, 1353], [1357, 1583], [1612, 2965], [3002, 3103], [303, 878], [303, 878], [906, 1353], [1357, 1583], [1612, 1742], [303, 693], [768, 1113], [1215, 1583], [1612, 1742], [1778, 2965], [3002, 3103], [303, 693], [768, 878], [906, 1113], [1215, 1742], [1215, 1742], [1778, 3103], [303, 1113], [1215, 1353], [1357, 1583], [1778, 2965], [3002, 3103], [303, 693], [768, 1113], [1215, 1326], [1326, 1583], [1612, 2965], [3002, 3103], [3002, 3103], [303, 693], [768, 1113], [1215, 1326], [1326, 1583], [1612, 1742], [1612, 2965], [3002, 3103], [3002, 3103], [303, 693], [768, 1113], [1215, 1326], [1326, 1583], [1778, 2965], [3002, 3103], [3002, 3103], [303, 1113], [1612, 2965], [1612, 2965], [3002, 3103], [3002, 3103], [303, 693], [768, 1113], [1215, 1583], [1215, 2965], [3002, 3103], [303, 693], [768, 1113], [1215, 1353], [1357, 1583], [1612, 2965], [3002, 3103]], \"sentences\": [\"The woman removes fresh herbs from the refrigerator.\", \"The woman rinses the herbs under running water.\", \"She removes a cutting board and sharp knife from the drawer.\", \"She squeezes the excess water from the herbs.\", \"She cuts all of the leaves off the herbs with small, straight cuts of the knife.\", \"She discards the herb's stems in the recycling bin.\", \"She has completed the cutting of the herbs.\", \"Remove fresh herbs from refrigerator.\", \"Rinse fresh herbs under water.\", \"Get out cutting board and knife.\", \"Cut herbs to desired fine-ness.\", \"Discard stems of herbs.\", \"She gets a bunch of herbs from the fridge.\", \"She rinses the herbs.\", \"She gets a cutting board and knife.\", \"She puts the herbs on the cutting board.\", \"She chops the herbs.\", \"She throws away the stems.\", \"The woman enters the kitchen and retrieves the herbs from the refrigerator.\", \"The woman carefully rinses the herbs under the sink.\", \"The woman places the herbs in the sink while retrieving a cutting board and knife from the cabinet.\", \"The woman carefully lays the herbs on the cutting board and picks up the knife, then goes on to cut the top of the herb carefully until she reaches the stem.\", \"The woman discards the stem of the herb.\", \"Take the herbs out of the refrigerator.\", \"Wash the herbs under cool water.\", \"Take out a cutting board and small knife and place the herbs on the board.\", \"Lay the herbs flat and begin slicing into small pieces, moving from one end to the other.\", \"Throw away any excess ends.\", \"The woman gathers and washes herbs from the refrigerator.\", \"The woman takes out a knife and cutting board.\", \"The woman slices the leaves into small pieces.\", \"The woman discards the stems.\", \"The woman places the knife onto the board and they are ready to use.\", \"The person gets out some herbs.\", \"The person rinses the herbs.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person chops up the herbs.\", \"The person throws away the stalks.\", \"She gets herbs from the fridge.\", \"She washes the herbs.\", \"She gets out a circular cutting board.\", \"She gets a small knife.\", \"She starts cutting the herbs into very small pieces.\", \"She walks to the refrigerator and gets out some herbs.\", \"She goes to the sink and removes the rubber band and rinses the herbs.\", \"She goes to the drawer and takes out a cutting board and knife.\", \"She goes back to the sink and picks up the herbs and squeezes the water out.\", \"She finely chops the herbs into small pieces.\", \"She takes the herb ends and throws them away.\", \"Takes herbs out of fridge.\", \"Rinses it off in sink.\", \"Takes out cutting board and knife.\", \"Places herbs on cutting board.\", \"Slices herbs.\", \"Puts stems in garbage.\", \"person washes herbs\", \"person gets cutting board\", \"person gets knife\", \"person dices herbs\", \"person throws away stem of herbs\", \"Herbs are removed from the refrigerator.\", \"The herbs are washed.\", \"The person selects a cutting board.\", \"A knife is selected.\", \"The herbs are chopped starting with the leafy end.\", \"The stems are thrown away.\", \"The herbs are ready.\", \"The person removes herbs from the refrigerator.\", \"The herbs are washed.\", \"The person selected a cutting board.\", \"A knife is carefully chosen.\", \"The herbs are placed on the cutting board.\", \"The tops of the herbs are finely sliced.\", \"The stems are discarded.\", \"The herbs are ready.\", \"Get the fresh herbs out of the fridge.\", \"If the herbs are banded together undo the band and wash under running water and lightly squeeze off excess water.\", \"Get out a cutting board.\", \"Get out a sharp knife.\", \"Cut the leafy ends off the fresh herb and do not include the stems.\", \"Discard the stems.\", \"Now the herbs are ready to use.\", \"Wash the herbs\", \"The person cuts the herb.\", \"The person picks up the stem of the herbs.\", \"The person discards the stems of the herbs.\", \"The person makes a neat pile of the thinly cut herbs.\", \"Woman pulls herbs from the refrigerator.\", \"She washes the herbs.\", \"Woman pulls out a knife and cutting board.\", \"Woman slices the leaves of the herbs.\", \"Woman finishes by discarding the stems.\", \"The person procures some herbs from the fridge.\", \"The person rinses the herb stalks in the sink.\", \"The person removes a cutting board from a drawer.\", \"The person removes a knife from the cutlery drawer.\", \"The person chops the leaves from the herbs on the cutting board with the knife.\", \"The person throws the stems into the garbage.\"], \"fps\": 29.4, \"num_frames\": 3237}, \"s17-d55.avi\": {\"timestamps\": [[193, 277], [322, 578], [634, 846], [874, 1098], [1130, 1733], [1765, 1951], [1963, 2174], [193, 277], [322, 578], [634, 947], [981, 1397], [1415, 1579], [1627, 1733], [1765, 2174], [193, 277], [322, 578], [634, 780], [781, 1098], [1130, 1579], [1627, 1733], [1765, 1951], [1963, 2174], [1963, 2174], [193, 277], [322, 578], [634, 780], [781, 1098], [1130, 1579], [1627, 1733], [1765, 1951], [1963, 2174], [193, 277], [322, 578], [634, 846], [874, 1098], [1130, 1305], [1322, 1579], [1627, 1733], [1765, 1951], [1963, 2174], [193, 277], [322, 578], [634, 780], [781, 1098], [1130, 1305], [1322, 1579], [1627, 2174], [193, 277], [322, 578], [634, 846], [874, 1098], [1130, 1305], [1322, 1579], [1627, 1733], [1765, 1951], [1963, 2174], [193, 277], [322, 780], [781, 1098], [1130, 1305], [1322, 1579], [1627, 2174], [193, 277], [322, 578], [634, 1098], [1130, 1305], [1322, 1397], [1415, 1579], [1627, 1951], [1963, 2174], [1963, 2174], [193, 947], [981, 1098], [1130, 1305], [1322, 1579], [1627, 1733], [1765, 2174], [193, 277], [322, 578], [634, 846], [874, 947], [981, 1098], [1130, 1579], [1627, 1733], [1765, 1951], [1963, 2174], [193, 277], [322, 846], [874, 891], [909, 1098], [1130, 1579], [1627, 1733], [1765, 2174], [193, 277], [322, 578], [634, 846], [874, 1098], [1130, 1305], [1322, 1579], [1627, 1733], [1765, 1951], [1963, 2174], [193, 277], [322, 578], [634, 846], [874, 1098], [1130, 1305], [1322, 1579], [1627, 1733], [1765, 1951], [1963, 2174]], \"sentences\": [\"He took out cutting board\", \"He took out fig\", \"He washed fig\", \"He took out knife\", \"He cut fig into pieces\", \"He took out plate\", \"He put fig on plate\", \"He gets out a circular cutting board.\", \"He starts washing one fig.\", \"He places the fig on the cutting board.\", \"He chops off the ends of the fig.\", \"He cuts the fig into quarters.\", \"He throws away the ends of the fig.\", \"He puts the pieces of fig on a small plate.\", \"The man grabs a cutting board.\", \"The man grabs what appears to be a fig.\", \"The man rinses the fig.\", \"The man grabs a knife.\", \"The man cuts the fig into 4 pieces.\", \"The man disposes of trash.\", \"The man grabs a plate.\", \"The man places the 4 pieces of fig onto the plate.\", \"The man completes his assigned task.\", \"He took out cutting board\", \"He took out fig\", \"He washed fig\", \"He took out knife\", \"He sliced up fig\", \"He threw out trash\", \"He took out plate\", \"He put fig on plate\", \"The person takes out a cutting board from the drawer.\", \"The person takes a fig from the fridge.\", \"The person washes the fig in the sink.\", \"The person takes out a knife from the drawer.\", \"The person cuts the top and bottom off the fig with the knife.\", \"The person quarters the fig.\", \"The person throws the ends into the wastebin.\", \"The person procures a plate from the cabinet.\", \"The person sets quartered fig on the plate.\", \"He grabs a cutting board.\", \"He grabs a fig.\", \"He rinses the fig.\", \"He grabs a knife.\", \"He cuts the ends off the fig.\", \"He slices the fig.\", \"He puts the figs on a plate.\", \"The person gets out a wooden plate.\", \"The person gets out a fig.\", \"The person rinses the fig.\", \"The person gets out a knife.\", \"The person cuts off the top and bottom of the fig.\", \"The person cuts the fig into quarters.\", \"The person throws away the top and bottom of the fig.\", \"The person gets out a plate.\", \"The person puts the fig pieces on the plate.\", \"He gets a cutting board.\", \"He gets a fig and rinses it.\", \"He gets a knife.\", \"He cuts off the ends.\", \"He slices the fig.\", \"He puts the fig on a plate.\", \"The person takes out a cutting board.\", \"The person takes out a fig.\", \"The person takes out a knife.\", \"The person cuts the ends off of the fig.\", \"The person slices the fig in half length-wise.\", \"The person slices in half in half again.\", \"The person takes out a small plate.\", \"The person places the figs on the plate.\", \"The person is done.\", \"Rinse the fig under some running water and shake dry.\", \"Place on cutting board.\", \"Slice off front and back tips of fruit.\", \"Then half the fruit twice, leaving four equal pieces.\", \"Dispose of the tips of the fruit.\", \"Place the fruit on a plate and enjoy.\", \"He walks to the drawer, opens it,  takes out a cutting board and lays it on the counter.\", \"He walks to the fridge, takes out a peice of fruit (looks like a date) then closes the fridge.\", \"He walks to the sink and rinses the fruit.\", \"He places the fruit on the cutting board then dries his hands on a rag that is hanging from a rack.\", \"He opens the top drawer, takes out a knife, then closes it back.\", \"He cuts off both ends of the fruit with the knife then slices it into 4 halfs.\", \"He places the knife on the counter, takes the scraps from the cutting board and throws them away.\", \"He walks to the cupboard, takes out a plate, then closes the cupboard.\", \"He walks to the counter, places the plate on the counter then aranges the fruit on the plate.\", \"Get out cutting board and place on counter.\", \"Get out figs and wash them off in sink.\", \"Place fig on cutting board.\", \"Cut off tip of fig.\", \"Slice fig into four equal parts.\", \"Throw away the tips that were cut off of the fig.\", \"Place the pieces of the fig on a plate.\", \"The person gets out a wooden plate.\", \"The person gets out a fig.\", \"The person rinses the fig.\", \"The person gets out a knife.\", \"The person cuts off the top and bottom of the fig.\", \"The person cuts the fig into quarters.\", \"The person throws away the top and bottom of the fig.\", \"The person gets out a plate.\", \"The person puts the fig slices on the plate.\", \"The person gets out a wooden plate.\", \"The person gets out a fig.\", \"The person rinses the fig and puts it on the plate.\", \"The person gets out a knife.\", \"The person cuts off the top and bottom of the fig.\", \"The person cuts the fig into quarters.\", \"The person throws away the top and bottom of the fig.\", \"The person gets out a plate.\", \"The person puts the fig slices on the plate.\"], \"fps\": 29.4, \"num_frames\": 2319}, \"s13-d31.avi\": {\"timestamps\": [[263, 584], [584, 912], [949, 1289], [1325, 1572], [1632, 1788], [1887, 3384], [3548, 4952], [263, 632], [676, 912], [949, 1289], [1325, 1572], [1632, 1788], [1887, 3384], [3548, 4478], [4530, 4952], [263, 1572], [1632, 1788], [1887, 2205], [2218, 4478], [4530, 4952], [263, 584], [584, 912], [949, 1289], [1325, 1519], [1519, 1788], [1887, 3384], [3548, 4952], [3548, 4952], [263, 1788], [1887, 2205], [2218, 3384], [3548, 4478], [4530, 4952], [263, 584], [584, 912], [949, 1289], [1325, 1519], [1519, 3384], [3548, 4478], [4530, 4902], [263, 540], [540, 912], [949, 1289], [1325, 1519], [1519, 1788], [1887, 3384], [3548, 4478], [4530, 4902], [4902, 4952], [263, 1289], [1325, 1788], [1887, 2205], [2218, 3384], [3548, 4478], [4902, 4952], [263, 584], [584, 912], [949, 1289], [1325, 1519], [1519, 1788], [1887, 3384], [3548, 4624], [263, 540], [540, 1289], [1325, 3384], [3548, 4478], [4530, 4952], [263, 632], [676, 912], [949, 1289], [1325, 1572], [1632, 1788], [1887, 3384], [3548, 4478], [4530, 4902], [4712, 4952], [263, 540], [540, 912], [949, 1289], [1325, 1519], [1519, 1788], [1887, 2205], [2218, 3384], [3548, 4478], [4530, 4624], [4902, 4952], [263, 1788], [1887, 2205], [2218, 3384], [3548, 3867], [3890, 4478], [4530, 4952], [263, 540], [540, 912], [949, 1289], [1325, 1519], [1519, 1788], [1887, 3384], [3548, 4478], [263, 540], [540, 912], [949, 1289], [1325, 1519], [1519, 1788], [1887, 3384], [3548, 4478], [4712, 4952], [263, 1788], [1887, 2205], [2218, 2288], [2299, 3384], [3548, 4478], [4530, 4902], [263, 1788], [1887, 3384], [4530, 4624], [4530, 4624], [4530, 4952], [263, 1788], [1887, 2205], [2218, 3384], [3548, 4478], [4712, 4902]], \"sentences\": [\"He took out garlic press\", \"He took out plate\", \"He took out garlic\", \"He took out knife\", \"He took out second plate\", \"He peeled garlic\", \"He pressed garlic\", \"Get your garlic press ready.\", \"Grab a clean plate.\", \"Get your clove of garlic.\", \"Get a sharp knife.\", \"Grab a smaller clean plate.\", \"Beak your garlic clove apart, peeling each section and cutting off the ends.\", \"Place each section of garlic into the press and squeeze it over the larger plate.\", \"Grab a spoon and scrape off excess from press into plate.\", \"He gets out the utensils and the garlic.\", \"He gets out a small plate.\", \"He removes one clove from the bunch.\", \"He presses the garlic.\", \"He removes the garlic from the press.\", \"The man grabs a garlic press.\", \"The man grabs a big plate.\", \"The man grabs a bulb of garlic.\", \"The man grabs a knife.\", \"The man grabs a smaller plate and places the bulb on it.\", \"The man peels the skin off of 3 cloves.\", \"The man presses the garlic and uses a spoon to get the extra off of the press.\", \"The man completes his assigned task.\", \"He gets out the equipment and garlic.\", \"He cuts open the bunch.\", \"He removes the skin from two cloves.\", \"He uses the press on the garlic.\", \"He cleans off the garlic press.\", \"He gets a garlic press.\", \"He gets a plate.\", \"He gets a bunch of garlic.\", \"He sets a knife on the plate.\", \"He gets a few cloves from the bunch and removes their skin.\", \"He presses the garlic.\", \"He removes the garlic from the press.\", \"The person removes a garlic press.\", \"A plate is removed from a cabinet.\", \"A bulb of garlic is removed from a cabinet.\", \"The person selects a knife.\", \"A small plate is removed from a cabinet.\", \"Cloves are removed and peeled over the small plate.\", \"Cloves are placed in the press and pressed.\", \"A spoon is used to remove garlic from the press.\", \"The garlic is ready.\", \"Take out a garlic press, a plate, and a bulb of garlic.\", \"Take out a small knife and a saucer.\", \"Use the knife to begin the separation, then use your hands to break apart the bulb.\", \"Use the knife to cut the ends off the selected garlic cloves.  Skin the cloves with the knife.\", \"Put the prepared cloves in the garlic press and press the garlic onto the plate.\", \"Use a spoon to get any remaining garlic out of and off the garlic press.\", \"He took out press\", \"He took out plate\", \"He took out garlic\", \"He took out knife\", \"He took out plate\", \"He peeled garlic\", \"He pressed garlic\", \"He gets a garlic press.\", \"He gets a plate and the garlic.\", \"He removes a few cloves and peels them.\", \"He presses the cloves.\", \"He cleans the garlic from the press.\", \"The person opens the drawer and removes the garlic press.\", \"The person removes a plate from the cabinet.\", \"The person removes garlic from the cabinet.\", \"The person removes a knife from the drawer.\", \"The person removes a smaller plate from the cabinet.\", \"The person cuts and peals three cloves of garlic.\", \"The person uses the garlic press to press each clove of garlic individually.\", \"The person gets a utencil out of the drawer to scrape the lingering pieces of garlic off of the press.\", \"The person presents the finished pressed garlic.\", \"The man gets a garlic press.\", \"The man gets a large plate.\", \"The man gets a head of garlic.\", \"The man gets a small knife.\", \"The man gets a small plate.\", \"The man separates in head of garlic into individual cloves.\", \"The man peels 2 garlic cloves.\", \"The man presses the garlic in the garlic press.\", \"The man gets a spoon.\", \"The man scrapes the garlic with a spoon.\", \"The person gets a garlic press, two plates, a head of garlic and a sharp knife.\", \"The person uses the knife to cut several cloves from the head of garlic.\", \"The person peels the dry skin from the cloves of garlic.\", \"The person places the cloves of garlic into the press and squeezes the handle so the garlic comes out of the press onto a plate.\", \"The person repeats the previous step with the remaining cloves of garlic until all the garlic has been pressed.\", \"The person gets a spoon and uses it to scoop any remaining garlic debris from the press and onto the plate.\", \"He took out press\", \"He took out plate\", \"He took out garlic\", \"He took out knife\", \"He took out second plate\", \"He peeled garlic\", \"He pressed garlic\", \"The person gets out a garlic press.\", \"The person gets out a plate.\", \"The person gets out a bulb of garlic.\", \"The person gets out a knife.\", \"The person gets out a smaller plate.\", \"The person tears the bulb open, takes out several cloves of garlic, cuts off their ends and puts them on the larger plate.\", \"The person squeezes each clove in the garlic press.\", \"The person gets out a spoon and scrapes off the inside of the garlic press.\", \"Gather garlic, garlic press, plate, knife, and saucer on counter.\", \"Open garlic by cutting through the middle with knife.\", \"Cut ends of garlic away from the meat.\", \"Peel skin away from the meat.\", \"Put garlic in garlic press and squeeze handles together.\", \"Use spoon to release prepared garlic onto plate.\", \"A man enters the kitchen and removes a garlic mince and knife from the drawer, two plates and some garlic from the cupboard and places them all on the kitchen counter top.\", \"The man separates three cloves of garlic from the bunch and peels them.\", \"Using the garlic mince, the man minces the three cloves of garlic.\", \"The man removes a spoon from the kitchen drawer.\", \"The man uses the spoon to scrape all the garlic out of the mince and places in pile on the plate.\", \"Take out a garlic press, a large and small plate, a small knife, and a bulb of garlic.\", \"Break apart the garlic bulb into individual cloves.\", \"Use the knife to slice off the ends and the layer of skin on each clove to be used.\", \"Over the large plate place each clove into the garlic press and press hard.\", \"Use a small spoon to get any remaining garlic in the press.\"], \"fps\": 29.4, \"num_frames\": 5077}, \"s15-d26.avi\": {\"timestamps\": [[220, 1690], [1738, 3732], [3803, 4333], [4570, 10650], [10713, 11765], [11796, 13366], [13424, 14545], [14553, 16608], [16810, 19763], [19839, 31048], [31058, 33219], [220, 1617], [1628, 2805], [2835, 3732], [3803, 4333], [4570, 6047], [6074, 10650], [10713, 11765], [11796, 14390], [14433, 16608], [16810, 19763], [19839, 26974], [29747, 31535], [31545, 33219], [220, 544], [582, 1617], [1628, 2805], [2835, 4333], [4570, 10650], [10713, 14390], [14433, 16608], [16810, 20207], [20287, 26400], [26409, 31001], [31004, 33219], [220, 1617], [1628, 3830], [3847, 5559], [5635, 6047], [6074, 7124], [7182, 10650], [10713, 11455], [11468, 14000], [14011, 16608], [16810, 19763], [19839, 21043], [21056, 26974], [29747, 31597], [31715, 33219], [220, 3517], [3677, 4333], [4570, 10650], [10713, 14390], [14433, 16608], [16810, 18337], [18346, 19763], [19839, 26400], [26409, 31206], [31478, 33219], [220, 544], [582, 915], [959, 1421], [1589, 1617], [1628, 2738], [2772, 3732], [3803, 4333], [4570, 6047], [6074, 10650], [10713, 16608], [16810, 20378], [20386, 26974], [29747, 33086], [220, 544], [582, 915], [959, 1421], [959, 1421], [1589, 2563], [2586, 2662], [2682, 4333], [4570, 5473], [220, 544], [582, 1617], [1628, 2805], [2835, 3732], [3803, 4333], [4570, 5473], [5485, 6047], [6074, 10650], [10713, 11455], [11468, 11592], [11653, 13366], [13424, 19763], [19839, 23513], [24698, 26400], [33176, 33219], [220, 544], [582, 915], [959, 1220], [1260, 1617], [1628, 2738], [2772, 4333], [4570, 5473], [5485, 6047], [6074, 10650], [10713, 11170], [11212, 16608], [16810, 20039], [20072, 26400], [26409, 32558], [32603, 33086], [220, 544], [582, 1421], [1589, 1617], [1628, 2738], [2772, 4333], [5485, 6047], [6074, 10650], [10713, 14039], [14051, 16608], [16810, 19763], [19839, 21160], [21303, 31001], [31004, 31776], [26409, 33219], [220, 2662], [220, 2662], [220, 2662], [220, 2662], [220, 2662], [220, 2662], [2682, 2953], [2972, 3028], [3058, 3732], [3803, 4333], [220, 2217], [4570, 5240], [4570, 6459], [6468, 13188], [13197, 14199], [14214, 14390], [14433, 14785], [14807, 15780], [15843, 16373], [16381, 17466], [17482, 19460], [19466, 19933], [19956, 21160], [21303, 26758], [26780, 33086], [220, 544], [582, 1220], [1260, 1421], [1589, 1617], [1628, 2467], [2534, 2662], [2682, 2953], [2972, 3732], [3803, 4333], [2383, 5240], [220, 544], [582, 2738], [2772, 3732], [3803, 4333], [5353, 11592], [11653, 14545], [14553, 15471], [15485, 19763], [19839, 26974], [29747, 30085], [33176, 33219], [220, 544], [582, 1617], [1628, 2738], [2772, 4333], [4570, 5473], [5353, 6047], [6074, 10650], [10713, 14039], [14051, 16608], [16810, 19763], [19839, 21160], [21303, 31001], [31877, 33219], [220, 544], [582, 915], [959, 1421], [959, 1421], [1589, 2805], [220, 544], [582, 1617], [2835, 3517], [3677, 4333], [5485, 11455], [11468, 15074], [15100, 18681], [18694, 20129], [20134, 21715], [22454, 23513], [24698, 31206], [31478, 33043], [220, 544], [582, 915], [959, 1421], [1589, 1617], [1628, 2467], [2534, 2662], [1628, 2953], [2972, 3028], [3058, 4333], [4570, 5473], [4570, 5748], [5783, 6047], [6074, 7093], [7108, 9680], [9694, 10785]], \"sentences\": [\"The woman pulls out a knife, cutting board and bowl.\", \"The woman removes the stem and outer leaves.\", \"Woman washes the cauliflower.\", \"The woman cuts up the cauliflower and separates the unwanted stems.\", \"The woman cleans up the work area.\", \"The woman takes out cream and oil.\", \"The cream is added into the bowl and the oil is added into the pan.\", \"The cream is seasoned thoroughly mixed.\", \"The woman ads the cream and cauliflower to the pan.\", \"The woman waits for the cauliflower to cook.\", \"The woman takes the cauliflower out of the pan and into a plate.\", \"The woman gathers the supplies.\", \"The woman removes the outer leaves.\", \"The woman removes the unwanted parts.\", \"She washes the cauliflower.\", \"The woman slices the cauliflower into smaller pieces and gets a pan onto the cook top.\", \"The woman removes the stems from the pieces.\", \"She cleans up a little before moving on.\", \"She places cream into the bowl and oil into the pan.\", \"She mixes and seasons the cream.\", \"She adds the cauliflower and cream to the pan.\", \"The woman cleans while stirring the cauliflower.\", \"The cauliflower is now done cooking so she removes it from the heat.\", \"The woman removes the cauliflower from the pan and places it onto a plate.\", \"She gets out the cauliflower.\", \"She gets out the hardware.\", \"She removes and discards the cauliflower leaves.\", \"She rinses the cauliflower.\", \"She cuts up the cauliflower and puts it into a bowl.\", \"She adds milk to a bowl and oil to the pan.\", \"She seasons the milk and stirs it up.\", \"She puts the milk mixture and cauliflower into the pan and covers it.\", \"She cleans up while waiting for the cooking to finish.\", \"She stops the cooking.\", \"She puts the cauliflower onto a plate.\", \"The person gets out a cauliflower, knife,  cutting board and bowl.\", \"The person cuts the leaves and stem off the cauliflower and throws them away.\", \"The person rinses the cauliflower and cuts it into chunks.\", \"The person gets out a frying pan, puts it on the stove and turns it on.\", \"The person gets out another bowl.\", \"The person trims the cauliflower chunks, putting them in one bowl and trash in the other.\", \"The person throws away the trash and rinses the bowl, cutting board and knife.\", \"The person gets out milk, oil, and spices.\", \"The person pours milk into the bowl and oil into the frying pan, then adds spices to the milk and stirs it.\", \"The person dunks each cauliflower piece in the milk before putting them in the frying pan, stirring while she adds the cauliflower.\", \"The person tries a lid for the pan, sees that it's too small, rinses the cutting board and uses it as an improvised lid.\", \"While the cauliflower cooks, the person puts away the ingredients, puts the dishes in the sink and wipes down the counter.\", \"The person waits for the cauliflower to finish cooking, occasionally checking its progress and stirring it.\", \"The person tries a piece of cauliflower, gets out a plate and scoops the cauliflower onto it.\", \"The woman removes the outer leaves and the stem.\", \"The woman washes the cauliflower.\", \"The woman slices the cauliflower and removes the stems from the pieces.\", \"The woman adds milk to a bowl and oil to a pan.\", \"The woman seasons the milk and stirs vigorously.\", \"The woman adds cauliflower to the milk and places it into the pan.\", \"She adds the rest of the cauliflower and milk to the pan.\", \"The woman washes up while waiting for the cauliflower to cook.\", \"She removes the pan from the heat when it is finished.\", \"The woman puts the cauliflower onto the plate.\", \"The person procures a cauliflower from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a metal bowl from the drawer.\", \"The person cuts away the leaves from the cauliflower and throws them into the wastebin.\", \"The person cuts away the stems and throws them into the wastebin.\", \"The person washes the cauliflower in the sink and dries her hands on a towel.\", \"The person chops the cauliflower on the cutting board, takes out a pan from the drawer, puts it on the stove and turns it on.\", \"The person takes another metal bowl from the drawer and then cuts parts of the cauliflower into either bowl.\", \"The person takes out assorted condiments and adds them to the smaller bowl and mixes them with a fork from the drawer.\", \"The person dips the cauliflower in the condiment mixture and places them into the frying pan with a wooden spatula from the drawer.\", \"The person returns the condiments, sets the bowls into the sink, cleans the counter with a rag, then stirs the pot with the wooden spatula and covers the pan with the cutting board.\", \"The person takes a fork from the drawer, turns off the stove, tastes the cauliflower, considers throwing it all away, then takes out a plate and a spoon, and uses the latter to put the cauliflower on the former.\", \"She took out cauliflower\", \"She took out knife\", \"She took out cutting board\", \"She took out bowl\", \"She cut leaves off cauliflower\", \"She threw away leaves\", \"She washed cauliflower\", \"She cut up cauliflower\", \"Cauliflower is removed from the refrigerator.\", \"The person removes a knife, a cutting board and a bowl.\", \"The cauliflower leaves are removed and discarded.\", \"The cauliflower is trimmed and cuttings discarded.\", \"The person washes the cauliflower.\", \"The cauliflower is cut into pieces.\", \"A frying pan is selected and placed on the stove.\", \"The pieces are trimmed more, cut smaller and placed in the bowl.\", \"The trash is discarded and the utensils washed.\", \"The bowl is dried.\", \"Something is removed from the refrigerator and oil is removed from the cabinet.\", \"Cream is added to the bowl, oil to the pan and the pieces are dipped and added to the pan.\", \"The pan is covered and the kitchen is straightened.\", \"The counters are wiped.\", \"The person removes a plate and puts the cauliflower on the plate.\", \"The person procures a cauliflower from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a metal bowl from the drawer.\", \"The person cuts the leaves from the cauliflower and throws them into the wastebin.\", \"The person washes the cauliflower in the sink.\", \"The person chops the cauliflower on the cutting board and throws some stems in the trash.\", \"The person takes a pan from the drawer and turns on the stove.\", \"The person takes out another metal bowl and cuts stems into one and places the rest of the cauliflower in the other.\", \"The person pours the crumbs from the cutting board and stems from the bowl into the trash then rinses both in the sink.\", \"The person procures condiments from the fridge, counter and pantry, pours them in the bowl, and mixes it with a fork from the drawer.\", \"The person dips the cauliflower in the sauce in the bowl and places it in the pan on the stove, using a fork and spatula taken from the drawer.\", \"The person returns the condiments to the fridge and pantry, puts the bowls into the sink, then wipes the countertop with a rag.\", \"The person takes a fork from the drawer and the pan off the stove, tastes the cauliflower and contemplates throwing it in the trash before taking a plate from the cabinet.\", \"The person takes out a fork from the drawer and uses it to set the cauliflower on the plate.\", \"She gets the cauliflower.\", \"She gets a knife and cutting board.\", \"She gets a bowl.\", \"She trims the leaves and discards them.\", \"She rinses the cauliflower.\", \"She gets a pan and turns on the stove.\", \"She cuts up the cauliflower and puts it in a bowl.\", \"She gets ingredients for the sauce.\", \"She mixes the ingredients in a bowl.\", \"She adds the cauliflower and sauce to the pan.\", \"She covers the pan with a cutting board.\", \"She takes the pan off the heat and turns off the stove.\", \"She tastes a piece.\", \"She puts the cauliflower on a plate.\", \"She threw away leaves\", \"She cut off leaves\", \"She took out bowl\", \"She took out cutting board\", \"She took out knife\", \"She took out cauliflower\", \"She cut off end of cauliflower\", \"She threw away end\", \"She threw out scraps\", \"She washed cauliflower\", \"clean up cabbage\", \"cut down cabbage in pieces\", \"put grille on plate\", \"take sause from fridge\", \"fill bowl with milk\", \"pour oil on grille\", \"add  spices to the bowl with milk\", \"blend milk with spices\", \"add salt to milk\", \"roll cabbage pieces in milk and put on the grille\", \"put rest of the cabbage on the grill\", \"fill with milk sause\", \"put on top of the grill\", \"mix the grill once again\", \"put the dish on the plate\", \"She took out cauliflower\", \"She took out knife\", \"She took out cutting board\", \"She took out bowl\", \"She cut off leaves\", \"She threw away leaves\", \"She cut off bottom of cauliflower\", \"She threw out scraps\", \"She washed cauliflower\", \"She chopped cauliflower\", \"The woman takes out a cauliflower.\", \"The woman removes the outer leaves.\", \"The woman removes the stem.\", \"The woman washes the cauliflower.\", \"The woman cuts up the cauliflower.\", \"The woman adds milk to a bowl and oil into a pan.\", \"The woman seasons the milk.\", \"The woman adds the cauliflower and milk mixture to the pan.\", \"The woman cleans up while waiting for the cauliflower to cook.\", \"The woman continues to wait for the cauliflower to cook.\", \"She places the cauliflower onto a plate.\", \"She gets out the cauliflower.\", \"She gets out a knife, bowl, and cutting board.\", \"She cuts off the leaves and discards them.\", \"She rinses the cauliflower.\", \"She cuts the cauliflower into pieces.\", \"She heats a pan on the stove.\", \"She creates florets and put them in a bowl.\", \"She gets ingredients for the sauce.\", \"She mixes up the sauce.\", \"She puts the cauliflower and the sauce in a bowl.\", \"She covers the pan with a cooking board.\", \"She removes the pan from the heat.\", \"She puts the cauliflower on a plate.\", \"She took out cauliflower\", \"She took out knife\", \"She took out cutting board\", \"She took out bowl\", \"She threw out leaves\", \"A woman walks into the kitchen, opens the refrigerator and takes out cauliflower\", \"She takes out a knife, cutting board, and a small bowl\", \"She cuts the leaves and stem from the cauliflower\", \"She rinses the cauliflower off in the sink\", \"She cuts the cauliflower into pieces and puts it into the bowl\", \"she mixes spices in a small bowl and preps a frying pan on the stove\", \"she dips the cauliflower into the mixture and puts them in the frying pan\", \"she puts the rest of the cauliflower in the pan and pours the mixture on top\", \"She covers the pan with the cutting board, and lets it simmer on the stove\", \"She checks and stirs the mixture\", \"she moves the cauliflower off the stove and turns off the stove\", \"she takes a spoon and scoops the cauliflower from the pan onto a plate\", \"She took out cauliflower\", \"She took out knife\", \"She took out cutting board\", \"She took out bowl\", \"She cut away leaves\", \"She threw away leaves\", \"She chopped off stem\", \"She threw away stem\", \"She washed cauliflower\", \"She cut up cauliflower\", \"She took out pan\", \"She turned on stove\", \"She took out second bowl\", \"She cut up cauliflower\", \"She threw away scraps\"], \"fps\": 29.4, \"num_frames\": 33248}, \"s24-d34.avi\": {\"timestamps\": [[203, 390], [427, 516], [674, 999], [999, 1091], [1226, 1489], [1489, 2464], [2738, 2793], [2829, 5192], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 1489], [1489, 2291], [2404, 2793], [2829, 5192], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 1489], [1489, 2291], [2404, 2793], [2829, 5192], [5365, 5429], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 1489], [1489, 2291], [2404, 2793], [2829, 5192], [5365, 5429], [203, 390], [427, 516], [674, 999], [999, 1489], [999, 1489], [1489, 2464], [2738, 3614], [5365, 5429], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 2291], [2404, 2793], [2829, 5043], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 1309], [1342, 1489], [1342, 1489], [1489, 2464], [2738, 2853], [5086, 5192], [5086, 5192], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 1309], [1342, 1489], [1489, 2291], [2404, 2793], [2952, 5192], [203, 516], [674, 1489], [1489, 2291], [2404, 2853], [2829, 5192], [203, 516], [674, 999], [999, 1309], [1342, 3939], [2952, 5192], [5365, 5429], [203, 999], [999, 1309], [1342, 2291], [2404, 2793], [3939, 5192], [3708, 5429], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 2291], [2829, 5131], [203, 390], [427, 516], [674, 1091], [1226, 2291], [2404, 2793], [2404, 5131], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 2291], [2404, 2793], [2829, 5043], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 1489], [1489, 2291], [2404, 2793], [5131, 5192], [203, 390], [427, 516], [674, 999], [999, 1054], [1054, 1309], [1342, 1489], [1489, 2291], [2404, 2793], [2829, 3123], [5131, 5192], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 2291], [2404, 2793], [2829, 5192], [203, 390], [427, 516], [674, 999], [999, 1091], [1226, 2793], [5086, 5192], [203, 999], [999, 1091], [1226, 2793], [2829, 3123], [2829, 5192]], \"sentences\": [\"She took out cutting board\", \"She took out knife\", \"She took out ginger\", \"She cut ginger in half\", \"She took out peeler\", \"She peeled ginger\", \"She threw away peels\", \"She diced ginger\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes some ginger  from the pantry.\", \"The person cuts away a portion of ginger from the main root.\", \"The person takes out a peeler from the drawer.\", \"The person peels the ginger.\", \" The person throws the peels into the wastebin.\", \"The person chops the ginger on the cutting board.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a ginger root  from the pantry.\", \"The person cuts off a portion of the ginger root.\", \"The person takes a peeler from the drawer.\", \"The person peels the ginger.\", \"The person throws the ginger peels in the wastebin.\", \"The person uses the knife to chop the ginger on the cutting board.\", \"The person washes her hands.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a ginger root from the pantry.\", \"The person cuts off a portion of the ginger root.\", \"The person takes a peeler from the drawer.\", \"The person peels the ginger.\", \"The person throws the ginger peels in the wastebin.\", \"The person uses the knife to chop the ginger on the cutting board.\", \"The person washes her hands.\", \"Get out cutting board\", \"get out knife\", \"get ginger root from cabinet\", \"get peeler from drawer\", \"peel ginger root\", \"gather and throw away scraps\", \"cut and dice ginger root\", \"wash hands\", \"She gets a cutting board.\", \"She gets a knife.\", \"She grabs some ginger.\", \"She cuts off a chunk of ginger.\", \"She peels that chunk of ginger.\", \"She discards the peels.\", \"She minces the ginger.\", \"Woman opens drawer and pulls out a cutting board.\", \"Woman opens another drawer and pulls out a knife.\", \"She walks to a cabinet behind her a picks up what appears to be ginger.\", \"She places it on the cutting board and cuts off a piece of it.\", \"She tries to peel it with a knife.\", \"Upon a failed attempt, she opens the drawer and pulls out a peeler.\", \"She peels the small piece of ginger with the peeler.\", \"After finishing peeling, she throws away the skin of the ginger.\", \"She starts  cutting the ginger with the knife.\", \"She finished cutting the ginger into very small fine pieces.\", \"She places the knife on the board and proceeds to wash her hands.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out some ginger.\", \"The person cuts off a piece of ginger.\", \"The person tries to peel the ginger with the knife.\", \"The person gets out a vegetable peeler.\", \"The person peels the ginger.\", \"The person throws away the peel.\", \"The person chops up the ginger.\", \"the person gets a cutting board and a sharp knife\", \"the person cuts a piece of Ginger off\", \"the person gets a peeler\", \"the person uses the peeler to skins the Ginger and discards the skin\", \"the person slices and dices the Ginger\", \"She goes to drawer and takes out cutting board and knife.\", \"She goes to the cupboard and takes out some ginger.\", \"She cuts the ginger in half and tries to peel it.\", \"She goes into drawer and gets a peeler and peel the ginger.\", \"She chops the ginger into very small pieces.\", \"She goes to the sink and washes her hands.\", \"gather cutting board, knife and fresh ginger\", \"roughly cut ginger in half\", \"using potato peeler, scrape off skin\", \"cut off knots and knobby ends from ginger and discard\", \"cut ginger lengthwise, cut small diagonal pieces, rotate, chop, rotate again and dice until finished\", \"wash hands to remove fresh ginger odor\", \"She took out cutting board\", \"She took out a knife\", \"She took out ginger\", \"She cut the ginger\", \"She peeled the ginger\", \"She sliced the ginger\", \"She gets a cutting board.\", \"She gets a knife.\", \"She gets the ginger and cuts off a chunk.\", \"She peels the ginger.\", \"She discards the peels.\", \"She chops the ginger.\", \"She took out cutting board\", \"She took out knife\", \"She took out ginger\", \"She cut off piece of ginger\", \"She peeled ginger\", \"She threw away peels\", \"She diced ginger\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out some ginger.\", \"The person cuts the ginger in half.\", \"The person gets out a peeler.\", \"The person peels one half of the ginger.\", \"The person throws away the ginger peel.\", \"The person cuts up that half of the ginger.\", \"The person got out a cutting board.\", \"The person selected a knife.\", \"The person removes ginger from the cabinet.\", \"The person sliced off a piece of ginger.\", \"Trimming is done with the knife.\", \"A peeling tool is selected.\", \"The piece is peeled.\", \"The scraps are discarded.\", \"The ginger is sliced.\", \"The ginger is chopped finely.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out some ginger.\", \"The person cuts off a piece of ginger.\", \"The person gets out a peeler and peels the ginger.\", \"The person throws away the peel.\", \"The person chops up the ginger.\", \"person get out cutting board\", \"person get out knife\", \"person gets out ginger\", \"person cuts ginger in half\", \"person peels off outer layer of ginger\", \"person dices ginger\", \"The person gets a cutting board, a shark knife, and a piece of ginger root.\", \"The person slices off a piece of the ginger root.\", \"The person gets a vegetable peeler and uses it to peel off the exterior skin of the piece of ginger root, then discards the skin.\", \"The person places the piece of ginger root on the cutting board and thinly slices it with the knife.\", \"The person uses the knife to cut the slices of ginger root from various angles until the ginger is minced into tiny chunks.\"], \"fps\": 29.4, \"num_frames\": 5414}, \"s25-d23.avi\": {\"timestamps\": [[93, 298], [348, 478], [478, 661], [743, 911], [982, 1090], [1164, 2045], [2083, 3696], [93, 298], [348, 478], [478, 661], [743, 911], [982, 1090], [1164, 1799], [1854, 2045], [3702, 3775], [93, 298], [348, 478], [478, 661], [743, 911], [982, 1090], [1164, 1799], [1854, 2045], [2083, 3775], [93, 298], [348, 530], [549, 661], [743, 911], [982, 1090], [1164, 1799], [1854, 2045], [2083, 3775], [93, 298], [348, 478], [478, 661], [743, 911], [982, 1090], [1164, 1718], [1746, 2011], [2011, 2045], [2083, 3696], [2083, 3775], [93, 298], [348, 478], [478, 661], [743, 911], [982, 1090], [1164, 3696], [93, 298], [348, 661], [743, 911], [982, 1799], [1854, 2011], [2011, 3696], [93, 298], [348, 478], [478, 661], [743, 911], [982, 1799], [1854, 2045], [3702, 3775], [93, 661], [743, 911], [982, 1799], [1854, 2045], [2083, 3696], [3702, 3775], [93, 298], [348, 478], [478, 661], [743, 911], [982, 1090], [3702, 3775], [93, 661], [743, 911], [982, 1090], [1164, 2045], [2083, 3696], [93, 661], [743, 911], [982, 1799], [1854, 2045], [2083, 3775], [93, 298], [348, 661], [743, 911], [982, 1090], [1164, 1799], [1854, 2045], [3702, 3775], [93, 298], [348, 661], [743, 911], [982, 1090], [1164, 1799], [1854, 2045], [2083, 3696], [93, 298], [348, 661], [743, 911], [982, 1257], [1679, 2011], [1164, 3775], [93, 661], [743, 911], [982, 1799], [1854, 2045], [2083, 3696], [93, 298], [348, 530], [549, 661], [743, 911], [982, 1090], [1164, 1799], [1854, 2045], [2083, 3696]], \"sentences\": [\"He took out carrot\", \"He took out cutting board\", \"He took out knife\", \"He washed carrot\", \"He cut off ends of carrots\", \"He washed carrot\", \"He diced carrots\", \"The person gets out a carrot.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the carrot.\", \"The person cuts off the ends of the carrot.\", \"The person searches for the trash can, then throws the ends of the carrot away.\", \"The person rinses the carrot again.\", \"The person chops up the carrot.\", \"The person gets out a carrot.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the carrot.\", \"The person cuts off the ends of the carrot.\", \"The person searches for a trash can, then throws the ends of the carrot away.\", \"The person rinses the carrot again.\", \"The person chops up the carrot.\", \"The person gets out a carrot.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the carrot.\", \"The person cuts the ends off of the carrot.\", \"The person looks for the trash can, then throws away the ends of the carrot.\", \"The person rinses the carrot again.\", \"The person chops up the carrot.\", \"Asian man grabs a carrot from the fridge.\", \"He grabs a cutting board from the drawer.\", \"He grabs a knife from another drawer.\", \"He rinses the carrot from the faucet.\", \"He cuts off the two edges.\", \"He searches for something in the drawer, failed attempt, he throws away the edges in trash.\", \"He rinses the carrot again.\", \"He starts chopping the carrot in small pieces.\", \"He finished chopping the carrots in small pieces.\", \"He looks up and says something.\", \"He gets a carrot from the fridge.\", \"He gets a cutting board from the cupboard.\", \"He gets a knife from the drawer.\", \"He rinses the carrot.\", \"He chops the ends off the carrot.\", \"He chops the carrot into small slices.\", \"He grabs a carrot.\", \"He gets a cutting board and knife.\", \"He rinses the carrot.\", \"He cuts the ends from the carrot and discards them.\", \"He rinses the carrot again.\", \"He chops the carrot.\", \"The person procures a carrot from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes the carrot in the sink.\", \"The person cuts the ends off the carrot and throws them into the wastebin.\", \"The person again washes the carrot in the sink.\", \"The person chops the carrot on the cutting board.\", \"The person gets a carrot from the refrigerator and a cutting board and knife to begin preparation.\", \"The person washes the carrot.\", \"The person carefully cuts a thin slice of carrot from each end and discards.\", \"The person washes the carrot a second time.\", \"Using a sharp knife, the person carefully cuts across the carrot creating thin, round slices.\", \"The person presents the finished sliced carrot.\", \"He takes out a carrot\", \"He takes out a cutting board\", \"He takes out a knife\", \"He washes carrot\", \"He cuts off ends\", \"He cuts carrot into pieces\", \"The person retrieves a carrot, a cutting board and a chef's knife.\", \"The person washes the carrot.\", \"The person cuts the ends from the carrot.\", \"The person washes the carrot again.\", \"The person cuts the carrot into thin lateral slices using the chef's knife.\", \"The man retrieves a Carrot, a cutting board, and a knife.\", \"The man washes the carrot.\", \"The man cuts off the ends of the carrot, and disposes of them.\", \"The man washes the carrot again.\", \"The man cuts the carrot into small circular pieces.\", \"The person removes a carrot from the refridgerator.\", \"The person takes out a large knife and a cutting board.\", \"The person washes the carrot.\", \"The person cuts the tip off of the carrot.\", \"The person throws the carrot tip away.\", \"The person rinses the carrot again.\", \"The person chops the carrot into thin slices.\", \"The person opens the fridge and removes a carrot.\", \"The person gets a cutting board and a knife out of drawers.\", \"The person washes the carrot.\", \"The person slices a few pieces off of the carrot's tip.\", \"The person throws away the tip pieces.\", \"The person rewashes the carrot.\", \"The person slices the carrot into round pieces.\", \"He removes a carrot from the refrigerator.\", \"He places a carving board and carving knife on the counter.\", \"He then washes the carrot off.\", \"He cuts the top and bottom off the carrot and throws them away.\", \"He rinses off the carrot a second time.\", \"He carves the carrot into equal pieces until finished.\", \"A man enters the kitchen, retrieves a carrot from the refrigerator, a knife and a cutting board from the drawer and places them all on the counter.\", \"The man washes the carrot.\", \"He cuts the ends off of the carrot and throws them away.\", \"He washes the carrot.\", \"He slices the entire length of the carrot crosswise.\", \"Take a carrot out of the refrigerator.\", \"Take a cutting board out and place it on the counter.\", \"Select a knife for cutting the carrot.\", \"Wash the carrot in the kitchen sink.\", \"Slice off both ends of the carrot with the knife.\", \"Throw away the ends of carrot that have been cut off.\", \"Rewash the carrot in the kitchen sink.\", \"Use the knife to slice the carrot into thin disks no more than 1/4 inch thick.\"], \"fps\": 29.4, \"num_frames\": 3792}, \"s13-d52.avi\": {\"timestamps\": [[230, 497], [502, 590], [590, 1358], [1407, 1748], [1762, 2274], [2274, 2612], [230, 431], [431, 590], [590, 1748], [1762, 2274], [2274, 2612], [230, 431], [431, 590], [590, 872], [900, 1358], [1407, 1827], [1866, 2612], [230, 638], [689, 872], [900, 1482], [1523, 1787], [2655, 2723], [230, 638], [689, 1358], [1407, 1748], [1762, 1977], [2655, 2723], [230, 431], [431, 638], [689, 872], [900, 1358], [1407, 1748], [1762, 2274], [2274, 2612], [230, 431], [431, 638], [689, 872], [900, 1358], [1407, 1748], [1762, 1977], [2655, 2723], [2655, 2723], [230, 431], [431, 638], [689, 872], [900, 1358], [1407, 1787], [1787, 2723], [230, 431], [431, 638], [689, 983], [1015, 1358], [1407, 1748], [1762, 2274], [2274, 2612], [230, 638], [689, 1358], [1407, 1748], [1762, 1977], [2025, 2508], [2519, 2612], [2025, 2723], [230, 431], [230, 431], [431, 497], [431, 497], [502, 590], [590, 638], [689, 983], [1015, 1358], [1407, 1482], [1523, 1748], [1762, 2508], [2655, 2723], [230, 431], [431, 497], [502, 638], [689, 872], [900, 1358], [1407, 1482], [1523, 1748], [1762, 1827], [1866, 2274], [2274, 2508], [2519, 2612], [230, 431], [431, 638], [689, 872], [900, 1358], [1407, 1748], [1762, 1977], [2025, 2508], [2025, 2723], [230, 497], [502, 638], [689, 872], [900, 1358], [1787, 2723], [230, 431], [431, 590], [590, 872], [900, 1358], [1407, 1827], [1866, 2508], [2655, 2723], [230, 431], [431, 590], [590, 983], [1015, 1358], [1407, 1482], [1523, 1787], [1787, 1977], [2025, 2274], [2274, 2508], [2519, 2612], [230, 638], [689, 983], [1015, 1358], [1407, 1827], [1866, 1977], [2025, 2274], [2655, 2723], [230, 431], [431, 638], [689, 872], [900, 1358], [1407, 1748], [1762, 2508], [2519, 2612]], \"sentences\": [\"The man takes out a cutting board.\", \"He then takes out a kitchen knife.\", \"He takes a plate out of the cupboard and kiwi fruits from the fridge.\", \"He washes the kiwi fruit with cold water.\", \"He cuts both ends off of the kiwi fruit.\", \"He slices the kiwi into fine slices on the cutting board, and places the slices on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a package of kiwis from the fridge, then gets a plate from the cabinet, takes a kiwi from the package and washes it.\", \"The person chops the ends off the kiwi.\", \"The person slices the kiwi without unpeeling it and places the slices on the plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out kiwi\", \"He took out plate\", \"He washed kiwi\", \"He sliced kiwi\", \"He gets out a cutting board and knife.\", \"He gets out a package of kiwis\", \"He grabs one kiwi.\", \"He rinses the kiwi\", \"He chops the kiwi and puts it on a plate.\", \"The man sets down a wooden cutting board and a knife onto the counter.\", \"The man sets down a plate beside the cutting board.\", \"The man washes a kiwi fruit.\", \"The man sets the kiwi fruit down onto the cutting board and dries his hands on a kitchen towel.\", \"The man slices the kiwi fruit and places the sliced pieces onto the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a package of kiwi from the fridge.\", \"The person procures a plate from the cabinet.\", \"The person takes a kiwi from the package and washes it.\", \"The person dries his hands on a towel and then cuts the ends off the kiwi.\", \"The person slices the kiwi on the cutting board and then sets them on the plate.\", \"The man grabs a cutting board.\", \"The man grabs a knife.\", \"The man grabs a container of kiwis.\", \"The man grabs a plate.\", \"The man grabs a kiwi from the container and rinses it off.\", \"The man dries his hands with a towel.\", \"The man slices the kiwi into thin slices and places them on the plate.\", \"The man completes his assigned task.\", \"He took out cutting board\", \"He took out knife\", \"He took out kiwi\", \"He took out plate\", \"He washed kiwi\", \"He sliced kiwi\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a kiwi from a package in the fridge.\", \"The person procures a plate from the cabinet.\", \"The person washes the kiwi in the sink.\", \"The person cuts the ends off the kiwi.\", \"The person slices the kiwi on the cutting board and sets it on the plate.\", \"Person removes cutting board and knife\", \"removes kiwi from the fridge and a plate from the cabinet\", \"Person washes kiwi\", \"Person dries his hands\", \"Person slices kiwi\", \"person arranges kiwi on a plate\", \"Person presents finished kiwi\", \"He opens the drawer\", \"He takes out a cutting board\", \"He closes the drawer\", \"He opens a different draw\", \"He takes out a knife\", \"He opens the refrigerator\", \"He opens the cabinet\", \"He takes out a plate\", \"He turns on the sink\", \"He washes the fruit\", \"He cuts the fruit\", \"He serves the fruit\", \"How to prepare a kiwi fruit.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person takes out some fresh kiwi.\", \"The person sets out a serving plate.\", \"The person selects one kiwi.\", \"The person washes the kiwi.\", \"The person places the clean kiwi on the cutting board.\", \"The person cuts of both ends of the kiwi.\", \"The person slices the kiwi.\", \"The person takes the sliced kiwi and places them on the serving plate.\", \"The person places a wood cutting board on the counter.\", \"The person takes out a knife.\", \"The person takes the kiwi out of the fridge.\", \"The person takes out a clean plate.\", \"The person washes the kiwi.\", \"The person dries his hands off.\", \"The person slices the kiwi into thin pieces\", \"The person places the cut kiwi on the clean plate.\", \"First, reach into your kitchen drawer to take out a round cutting board.\", \"Then, continue to take out a small to medium sized knife.\", \"Bring out the kiwifruit from the refrigerator.\", \" Then, take out a small white plate to serve.\", \"As the final step, wash the kiwifruit, dry your hands, and then slice into thin slices to serve on your plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out kiwi\", \"He took out plate\", \"He washed kiwi\", \"He sliced kiwi\", \"He put kiwi on plate\", \"Get out a cutting board.\", \"Get out a sharp knife.\", \"Get kiwi package out of fridge and open package.\", \"Get out a serving dish.\", \"Take one kiwi out of package.\", \"Wash the kiwi thoroughly under running water and shake off excess water.\", \"Dry hands off if needed.\", \"Cut off the end pieces of the kiwi.\", \"Slice the kiwi widthwise.\", \"Arrange kiwi on serving dish.\", \"Get your knife and cutting board ready.\", \"Get your Kiwi that you wish to prepare.\", \"Get the serving dish ready.\", \"Rinse the Kiwi thoroughly.\", \"Dry your hands after placing Kiwi on cutting board.\", \"Slice the ends from the Kiwi and discard.\", \"Slice the Kiwi in several pieces and plate to serve.\", \"He took out cutting board\", \"He took out knife\", \"He took out kiwi\", \"He took out plate\", \"He washed kiwi\", \"He sliced kiwi\", \"He put kiwi on plate\"], \"fps\": 29.4, \"num_frames\": 2751}, \"s24-d53.avi\": {\"timestamps\": [[259, 661], [730, 1317], [1434, 2934], [3081, 3314], [3395, 3539], [3573, 3779], [3827, 4093], [4176, 5054], [259, 411], [513, 661], [730, 942], [975, 1317], [1434, 2195], [2297, 2934], [3081, 3539], [3573, 3884], [3976, 4839], [259, 661], [730, 942], [975, 1317], [1434, 1656], [1845, 2195], [2297, 2934], [3081, 3314], [3395, 3539], [3573, 4093], [4176, 4839], [259, 661], [730, 1220], [1254, 1317], [1434, 3117], [3146, 3314], [3395, 3539], [4946, 5054], [259, 661], [730, 942], [975, 1317], [1434, 1656], [1845, 2484], [2646, 3314], [3395, 3539], [3573, 3884], [3976, 4382], [4444, 4839], [259, 411], [513, 661], [730, 942], [975, 1317], [1434, 2195], [2297, 2934], [3081, 3314], [3395, 3539], [3573, 3884], [3976, 4839], [259, 411], [513, 661], [730, 942], [975, 1317], [1434, 3117], [3146, 3314], [4946, 5054], [259, 411], [513, 661], [730, 942], [975, 1317], [1434, 2934], [3081, 3314], [3395, 3539], [3573, 3884], [3976, 4839], [3573, 5054], [259, 661], [259, 661], [730, 942], [975, 1317], [1434, 2934], [3081, 3314], [3395, 3539], [4946, 5054], [259, 661], [730, 942], [975, 1317], [1434, 2934], [3081, 3314], [3395, 3884], [3976, 4839], [259, 411], [513, 661], [730, 942], [975, 1317], [1434, 2934], [3081, 3314], [3395, 4839], [259, 411], [513, 661], [730, 942], [975, 1317], [1434, 2934], [3081, 3539], [3573, 3884], [3976, 4839], [259, 411], [513, 661], [730, 942], [975, 1317], [1434, 2934], [3081, 3314], [3395, 3539], [3573, 3884], [3976, 4839], [259, 942], [975, 1317], [1434, 3314], [3395, 3539], [3573, 3884], [3976, 4839], [4946, 5054], [4946, 5054], [259, 661], [730, 942], [975, 1220], [1254, 1317], [1434, 2934], [3081, 3184], [3204, 3314], [3395, 3884], [3976, 4093], [4176, 4839], [259, 411], [513, 661], [730, 942], [975, 1317], [1434, 2934], [3081, 3314], [3395, 3539], [3573, 3779], [3827, 4839], [3395, 5054]], \"sentences\": [\"The person starts with a knife, cutting board and avocado.\", \"The person slices the avocado lengthwise (vertically) going around the pit and ending with two equal halves.\", \"The person then peels each half by making a small cut in the rind with the knife and then using her fingers to peel the rind away from the flesh.\", \"The person then slices the half with the pit into two quarters to make it easier to remove the pit.\", \"She then discards the rind and the pit in the waste basket.\", \"Next she washes and dries her hands.\", \"The person then removes dark spots from the avocado flesh by using the knife to slice them off.\", \"Last, she slices each piece of avocado lengthwise into slices approximately one-eighth inch thick, ending up with 10-12 total slices.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures an avocado from the fridge.\", \"The person cuts the avocado in half.\", \"The person removes a peel from one avocado half.\", \"The person peels the second avocado half with her hands.\", \"The person removes the pit from the second half and then disposes of it and the peels into the trash.\", \"The person washes her hands and dries them on a towel.\", \"The person slices the avocado length wise.\", \"She takes out a knife and cutting board.\", \"She chooses a ripe avocado.\", \"She cuts the avocado in half and then twists the two halves apart.\", \"She cuts one half of the skin lightly.\", \"She peels the skin off the half that has been cut.\", \"She peels the half that still has the pit in.\", \"She cuts the remaining avocado meat in half and removes the pit from the halves.\", \"She discards the skin and pit.\", \"She removes the bad parts of the avocado meat with her knife.\", \"She slices the avocado into thin strips for serving.\", \"She gets out a cutting board and knife\", \"She gets out an avocado.\", \"She cuts it in half.\", \"She removes the skin.\", \"She removes the pit.\", \"She discards the waste.\", \"She chops the avocado.\", \"The woman takes out a cutting board and small knife and places them on the counter.\", \"The woman also takes out an avocado from the refrigerator and places it on the cutting board.\", \"The woman uses the knife to cut the avocado in half.\", \"Next, she takes one of the halves and begins to peel off the skin of the avocado.\", \"Next, she takes the other halve and pulls of the skin of the avocado.\", \"She cuts the avocado halve with the seed in half.\", \"She throws away the seed and peels in the trash.\", \"She quickly washes and dries her hands in the sink.\", \"Next, she takes the other avocado halve and cuts it in slices.\", \"She takes the remaining pieces and cuts them in slices.\", \"The woman removes a cutting board from the drawer and places it on the counter.\", \"She removes a knife from the drawer and places it on the cutting board.\", \"She removes an avocado from the refrigerator and places it on the cutting board.\", \"She uses the knife to cut the avocado in half lengthwise.\", \"She uses her fingers to peel the avocado skin off of one of the halves.\", \"She removes the skin from the other half of the avocado.\", \"She cuts one of the halves in half to remove the avocado pit.\", \"She places the avocado pit and the skin peelings in the recycling bin.\", \"She rinses her hands in the sink and dries them on a towel.\", \"She slices the avocado pieces lengthwise into strips.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures an avocado from the fridge.\", \"The person cuts the avocado in half.\", \"The person peels the avocado with her hands.\", \"The person cuts out the seed and throws it and the peels into the trash.\", \"The person slices the avocado lengthwise and disposes of a piece of peel into the garbage.\", \"The person selects a cutting board.\", \"A knife is selected.\", \"An avocado is removed from the refrigerator.\", \"The avocado is cut in half and pulled apart.\", \"The avocado is peeled by hand.\", \"One half is cut in half and the seed is removed.\", \"The scraps are discarded.\", \"The person rinses and dries their hands.\", \"The avocado pieces are trimmed and sliced.\", \"The avocado is ready.\", \"The woman begins by retrieving a small wooden cutting board.\", \"She then selects a small knife from a nearby drawer.\", \"Next, she selects an avocado from the fridge.\", \"She uses the knife to cut around the avocado and then pulls it apart giving her two halves.\", \"Next, she removes the skin from both halves of the avocado.\", \"She removes the pit and then discards both the skin and the pit.\", \"After discarding she washes her hands.\", \"Finally, she cuts the avocado into thin slices.\", \"Get a small cutting board and paring knife.\", \"Grab a ripe avocado from the refrigerator.\", \"Use the knife to cut the avocado in half around the pit, after separate the two halves.\", \"Remove the hard, dark green, outside peel from both halves.\", \"Proceed to use your knife to quarter the part of the avocado that still contains the pit, so do this for easy removal of the large hard pit.\", \"Clean your workstation and your hands.\", \"Use your knife to remove an brown spots and to 1/4 inch thick slices. Be sure to slice your avocado the long way.\", \"She gets a cutting board.\", \"She gets a knife.\", \"She gets an avocado.\", \"She cuts the avocado in half.\", \"She removes the skin.\", \"She discards the pit and the skins.\", \"She slices the avocado.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out an avocado.\", \"The person cuts the avocado in half.\", \"The person peels the avocado.\", \"The person removes the pit and throws it and the peel away.\", \"The person washes her hands.\", \"The person cuts the avocado into slices.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out an avocado.\", \"The person cuts the avocado in half.\", \"The person peels the avocado.\", \"The person cuts the half of the avocado with the pit into quarters and removes the pit.\", \"The person throws away the pit and peel.\", \"The person washes her hands.\", \"The person slices up the avocado.\", \"The person has placed a cutting board, knife and avocado on the countertop.\", \"The person has cut around the avocado lengthwise and separated the avocado into two halves.\", \"The person has removed the peel and the pit from the avocado flesh.\", \"The person had thrown the peel and pit into the garbage.\", \"The person has washed and dried their hands.\", \"The person has sliced the avocado into thin strips lengthwise.\", \"The person had thrown avocado scraps into the garbage.\", \"The person has placed the cutting board, knife and cut avocado on the countertop.\", \"The person places a cutting board and paring knife on the counter.\", \"The person removes an avocado from the refrigerator and places it on the cutting board.\", \"The person uses the paring knife to slice the avocado in half lenghwise.\", \"The person seperates the halves of the avocado with a twisting motion.\", \"The person removes the outer peel from the avocado using hands and knife.\", \"The person cuts the avocado half containing the pit in half again, lengthwise.\", \"The person uses hands to remove the pit from the avocado.\", \"The person throws away the outer peel and washes hands.\", \"The person uses the knife to remove bruised or damaged areas from the peeled avocado.\", \"The person uses the knife to cut the avocado into long thin slices.\", \"She took out cutting board\", \"She took out knife\", \"She took out avocado\", \"She cut avocado in half\", \"She took off avocado peel\", \"She took out pit\", \"She threw away scraps\", \"She washed hands\", \"She sliced avocado\", \"She threw away pieces\"], \"fps\": 29.4, \"num_frames\": 5221}, \"s22-d46.avi\": {\"timestamps\": [[231, 1749], [1785, 1875], [1975, 2141], [1975, 2141], [2196, 2235], [2303, 2622], [2682, 2951], [3340, 4337], [4371, 4651], [4702, 9361], [9436, 9533], [9543, 9620], [9665, 10696], [10731, 14496], [231, 485], [545, 782], [827, 1343], [1556, 1875], [1975, 2235], [2303, 2622], [2682, 4651], [4702, 9533], [14545, 14659], [231, 485], [545, 782], [827, 1085], [1085, 2235], [2303, 2622], [2682, 2951], [3340, 4337], [4371, 4651], [4702, 9361], [9436, 9533], [9543, 10696], [10731, 14496], [231, 485], [545, 782], [827, 1203], [1242, 1875], [1975, 2235], [2303, 2622], [2682, 4337], [4371, 4651], [4702, 9361], [9436, 9533], [9543, 14659], [231, 1085], [1085, 2141], [2196, 2235], [2303, 2622], [2682, 4337], [4371, 9315], [14545, 14659], [231, 485], [545, 1085], [1085, 2141], [2196, 2622], [2682, 9533], [9543, 14496], [231, 782], [827, 1343], [1556, 2235], [2303, 2951], [3340, 4337], [4371, 9361], [9543, 14659], [231, 438], [438, 782], [827, 1085], [1085, 1749], [1785, 2141], [2196, 2622], [2682, 2951], [3340, 4651], [4702, 9315], [231, 485], [545, 1343], [1556, 2235], [2303, 2622], [2682, 4651], [9327, 9533], [9543, 10696], [9327, 14659], [231, 438], [438, 782], [827, 1085], [1085, 2141], [2196, 2622], [2682, 4337], [4371, 4651], [4702, 9361], [9436, 10696], [14545, 14659], [231, 782], [827, 1343], [1556, 1875], [1975, 2622], [2682, 4651], [4702, 9533], [9436, 14659], [231, 1203], [1242, 1875], [1975, 2235], [2303, 2622], [2682, 4337], [4702, 9533], [9543, 10696], [10731, 14659], [231, 782], [827, 2141], [2196, 2622], [2682, 4337], [4371, 4651], [4371, 9361], [9436, 9533], [9543, 14496], [231, 438], [438, 782], [827, 1085], [1085, 1203], [1242, 1343], [1556, 1749], [1785, 1875], [1975, 2141], [2196, 2235], [2303, 2622], [2682, 2951], [3340, 4337], [4371, 4651], [4702, 9361], [231, 1085], [1085, 1343], [1556, 1875], [1975, 2622], [2682, 3376], [3413, 4337], [4371, 4651], [9436, 9533], [10731, 14659], [231, 438], [438, 782], [827, 1085], [1085, 1203], [1242, 1749], [1785, 2235], [2303, 2622], [2682, 2951], [3340, 4337], [4371, 4651], [4702, 9315], [231, 438], [438, 1203], [1242, 1875], [1975, 2235], [2303, 2622], [2682, 2951], [4702, 9533], [9543, 14659], [231, 438], [438, 782], [827, 1085], [1085, 1343], [1556, 1875], [1975, 2622], [2682, 2951], [9327, 9361], [4702, 9533], [9543, 14496], [231, 438], [438, 782], [827, 1085], [1085, 1203], [1242, 1343], [1556, 1749], [1785, 2141], [2196, 2622], [2682, 2951], [3340, 4337], [4371, 4651], [3340, 9361], [9436, 9533]], \"sentences\": [\"Person cuts top of pineapple off.\", \"Person throws away top of pineapple.\", \"Person cuts off the bottom of pineapple.\", \"Person throws away bottom of pineapple.\", \"Person puts pineapple upside down.\", \"Person slices down middle cutting pineapple in half.\", \"Person puts half of pineapple on it's side, rind side up.\", \"Person cuts pineapple into slices from side(top) to side(bottom).\", \"Person puts plate on counter.\", \"Person cuts the rind off the pineapple slices and places the inner pineapple on plate.\", \"Person throws away rinds.\", \"Person takes knife to other half of the pineapple.\", \"Person cuts the second half of the pineapple into slices from top to bottom.\", \"Person cuts the rinds off the slices from the second half of pineapple putting them on plate.\", \"A woman enters the kitchen, removes a cutting board from the drawer and places it on the counter.\", \"She retrieves a pineapple from the cupboard and places it on the cutting board.\", \"Using the knife, she cuts the grocery tag off of the pineapple and throws the tag in the trash.\", \"She cuts the top off of the pineapple and throws it in the trash.\", \"She cuts the bottom of off the pineapple and throws it in the trash.\", \"She sets the pineapple upright on its end and cuts it in two down the center.\", \"She thinly slices one half of the pineapple crosswise and then retrieves a plate from the cupboard.\", \"She cuts the rind off of each individual slice of pineapple, places the pineapple on the plate and throws the rinds in the trash.\", \"She cuts the rind off of each individual slice of pineapple from the second half of the pineapple and places them on the plate.\", \"The person gets out a cutting board.\", \"The person gets out a pineapple.\", \"The person gets out a knife.\", \"The person cuts off the price tag, top and bottom of the pineapple and throws them away.\", \"The person cuts the pineapple in half.\", \"The person gets out another knife.\", \"The person cuts one half of the pineapple into slices.\", \"The person gets out a plate.\", \"The person cuts off the rind of each pineapple slice and puts the slices on the plate.\", \"The person throws away the rinds.\", \"The person slices up the other pineapple half.\", \"The person cuts off the rind of each pineapple slice and puts the slices on the plate.\", \"She walked to the drawer and took out a cutting board.\", \"she went to the pantry, took out a pineapple, and brought it to the table.\", \"She took out a knife, cut off the tag, and threw it away.\", \"She cut of the top of the pineapple and threw it away.\", \"She cut off the bottom of the pineapple and threw that away.\", \"She cut the pineapple in half.\", \"She sliced one half of the pineapple.\", \"She went to the cabinets, took out a plate, and placed it on the counter.\", \"She used a pearing knife to remove the skin of the slices and placed the slices on the plate.\", \"She threw the Scraps away.\", \"She sliced and peeled the remaining pineapple.\", \"Get out your cutting board, knife and pineapple.\", \"Cut the top and bottom of the pineapple off horizontally.\", \"Discard the top and bottom pieces.\", \"Cut pineapple in half down the middle, length-wise.\", \"Cut into thin slices, width-wise.\", \"Cut the rind off the thin slices.\", \"Cut the slices and rind of the other half of the pineapple.\", \"She gets a cutting board.\", \"She gets a pineapple and a knife.\", \"She cuts off the top and the bottom of the pineapple.\", \"She cuts the pineapple in half.\", \"She slices the first half of the pineapple, then cuts off and discards the skin.\", \"She slices and removes the skin from the other half.\", \"Take out a cutting board and a pineapple.\", \"Take out a large knife and cut off and discard the pineapple tag.\", \"Cut off and discard the top and bottom of the pineapple.\", \"Slice the pineapple in half lengthwise and take out a small knife.\", \"Lay the pineapple half flat and cut thin semicircles with the large knife.\", \"Take out a large plate and use the small knife to cut the peel off of each pineapple semicircle, then put the pieces on the plate.\", \"Discard the peel and repeat the cutting and peeling process for the other pineapple half.\", \"She took out cutting board\", \"She took out pineapple\", \"She took out knife\", \"She cut off top of pineapple\", \"She cut off bottom of pineapple\", \"She cut pineapple in half\", \"She took out second knife\", \"She took out plate\", \"She cut off skin of pineapple\", \"A woman enters the kitchen removes a cutting board from the drawer and places it on the counter.\", \"She removes a knife from the drawer, cuts the tag off of the pineapple and throws the tag in the trash.\", \"She cuts the top and the bottom off of the pineapple and throws them in the trash.\", \"She sets the pineapple upright on its end and cuts it into two halves.\", \"She slices one half of the pineapple crosswise, retrieves a plate from the cupboard and places it on the counter.\", \"She removes the rind from each individual pineapple slice, placing the slices on the plate and the rinds in the trash.\", \"She cuts the other half of the pineapple into slices crosswise.\", \"She removes the rind from each individual pineapple slice from the second half of the pineapple.\", \"Takes out a cutting board.\", \"Takes out a pineapple from the cabinet.\", \"Takes out a knife from the drawer.\", \"Cuts off the ends of the pineapple.\", \"Slices the pineapple in half.\", \"Slices up the first half of the pineapple.\", \"Takes out a plate from the cabinet.\", \"Peels the first half of the pineapple and places on a plate.\", \"Slices up the second half of the pineapple.\", \"Peels the second half and places on a plate.\", \"A woman enters the kitchen, removes a cutting board from the drawer, a pineapple from the pantry and sets them both on the counter.\", \"She removes a knife from the drawer, cuts the tag off of the pineapple and throws the tag into the trash.\", \"She cuts the top and the bottom off of the pineapple and throws them in the trash.\", \"She sets the pineapple up on its end and cuts into two halves down the center.\", \"She slices one half of the pineapple crosswise, retrieves a plate from the cupboard and places it on the counter.\", \"she removes the rinds from each individual pineapple slice, places them on the plate and throws the rinds into the trash.\", \"The slices the other half of the pineapple crosswise, removes the rinds from the each individual piece and places them on the plate.\", \"The person removes the fruit label.\", \"The person chops off and discard the top of the pineapple.\", \"The person chops off and discard the bottom of the pineapple.\", \"The person slices the pineapple in half.\", \"The person slices one of the pineapple half into smaller slices.\", \"The person peels the skin off the small pineapple slices and discards them.\", \"The person slices the second pineapple half into smaller slices.\", \"The person peels the skin off the small pineapple slices.\", \"The person places a cutting board and a pineapple on the counter.\", \"The person uses a carving knife to remove the top and bottom from the pineapple.\", \"The person slices the pineapple in half axially.\", \"The person uses the carving knive to cut one of the halves into quarter-inch lateral slices.\", \"The person places a plate on the counter.\", \"The person uses a paring knife to remove the outer peel from each lateral slice, placing it on the plate when complete.\", \"The person discards the outer peels.\", \"The person repeats the previous process (slice, peel, remove to plate) with the second half of the pineapple.\", \"She took out cutting board\", \"She took out pineapple\", \"She took out knife\", \"She cut off tag\", \"She threw out tag\", \"She cut off top of pineapple\", \"She threw out top of pineapple\", \"She cut off bottom of pineapple\", \"She threw out bottom of pineapple\", \"She cut pineapple in half\", \"She took out knife\", \"She sliced pineapple\", \"She took out plate\", \"She cut skin off pineapple\", \"She opens a drawer to get out a cutting board, takes a pineapple out of the cabinet, and gets a knife out of a drawer.\", \"She cuts the pineapple's tag off and throws it in the trash can.\", \"She uses the knife to cut the leaves off the top and throws them in the trash can, leaving the drawer with the trash can in it open.\", \"She cuts the bottom off the pineapple, throwing it in the trash, and then cuts the remaining portion of the pineapple in half, from top to bottom.\", \"She opens the drawer and gets out another knife and then lays one half of the pineapple face up on the counter and the other one face down on the cutting board.\", \"She slices the pineapple on the cutting board into pieces.\", \"She goes to the cabinet and gets out a plate.\", \"She takes each pieces of pineapple that is on the cutting board, cuts off the rough outside, places the inner portion on the plate, and finally, when she is done, throws away all of the exterior sides that she has cut off into the trash can.\", \"She does the same to the other side and eats a piece of pineapple.\", \"She took out cutting board\", \"She took out pineapple\", \"She took out knife\", \"She cut off tag\", \"She cut off top of pineapple\", \"She threw away bottom of pineapple\", \"She cut pineapple in half\", \"She took out second knife\", \"She sliced pineapple\", \"She took out plate\", \"She peeled skin off pineapple\", \"Get a cutting board ready.\", \"Get your pineapple, knife, and cut off the tag on pineapple.\", \"Slice off the top leafy bit of the pineapple and discard.\", \"Slice off the hard bottom of the pineapple and discard.\", \"Slice pineapple halfway vertically.\", \"Find a pearing knife to cut the hard skin off of the sides of the pineapple.\", \"Slice one half of the pineapple horizontally into half-inch slices and use the pearing knife to peel the hard skin off.\", \"Slice the remaining half pineapple horizontally into half-inch slices and cut off the hard skin.\", \"The person takes out a cutting board.\", \"The person gets a pineapple from the pantry.\", \"The person takes a large knife from the drawer.\", \"The person cuts the tag from the pineapple and places it into the trash.\", \"The person cuts the fronds off the top of the pineapple and places it into the garbage.\", \"The person cuts the pineapple into halves.\", \"The person gets a small knife from the drawer.\", \"The person slices one half of the pineapple into strips, gets a plate from the cupboard, and then peels the rind of the pineapple half and places the segment onto the plate.\", \"The person takes the rind from the first half and throws them in the garbage.\", \"The person cuts the other half of the pineapple into sections with the large knife, then uses the smaller knife to remove the rind and place the sections onto the plate.\", \"She took out cutting board\", \"She took out pineapple\", \"She took out knife\", \"She cut tag off pineapple\", \"She threw away tag\", \"She cut off pineapple top\", \"She cut off bottom of pineapple\", \"She cut pineapple in half\", \"She took out small knife\", \"She sliced pineapple\", \"She took out plate\", \"She cut off pineapple skin\", \"She threw away skin\"], \"fps\": 29.4, \"num_frames\": 14828}, \"s13-d21.avi\": {\"timestamps\": [[252, 452], [471, 627], [627, 975], [1004, 1353], [1366, 1594], [1665, 2036], [2099, 2523], [2618, 2844], [252, 452], [471, 627], [627, 975], [1004, 1353], [1366, 1594], [1665, 1813], [1854, 2036], [2099, 2523], [2618, 2717], [252, 452], [471, 627], [627, 975], [1004, 1353], [1366, 1594], [1665, 2036], [2798, 2844], [252, 452], [471, 686], [723, 975], [1004, 1353], [1366, 1594], [1665, 2036], [2099, 2523], [2618, 2717], [252, 452], [471, 686], [723, 975], [1004, 1353], [1366, 1594], [1665, 2523], [2618, 2717], [252, 452], [471, 627], [627, 1353], [1366, 1594], [1665, 2036], [2099, 2523], [2618, 2717], [252, 452], [471, 627], [627, 975], [1004, 1353], [1366, 1594], [1665, 2036], [2099, 2523], [2618, 2717], [252, 686], [723, 975], [1004, 1413], [1450, 1594], [1665, 2523], [2099, 2844], [252, 686], [723, 1353], [1366, 1594], [1665, 1813], [1854, 2036], [2099, 2523], [2798, 2844], [252, 452], [471, 627], [627, 975], [1004, 1353], [1366, 1594], [1665, 2036], [2099, 2523], [2618, 2717], [252, 1413], [1450, 1721], [1750, 1883], [1883, 2036], [2099, 2523], [2798, 2844], [252, 452], [471, 627], [627, 686], [723, 975], [1004, 1413], [1450, 2036], [2798, 2844], [252, 452], [471, 627], [627, 975], [1004, 1353], [1366, 1594], [1665, 1813], [1854, 2036], [2099, 2523], [2798, 2844], [252, 452], [471, 686], [723, 975], [1004, 1353], [1366, 1594], [1665, 1813], [1854, 2523], [2618, 2717], [252, 452], [471, 686], [723, 975], [1004, 1594], [1665, 1813], [1854, 2523], [2618, 2844]], \"sentences\": [\"He took out cutting board\", \"He took out knife\", \"He took out cucumber\", \"He took out plate\", \"He washed cucumber\", \"Cut off ends of cucumbers\", \"He sliced cucumbers\", \"He put cucumbers on plate\", \"person takes chopping board out\", \"person removes knife from draw\", \"person removes cucumber out of refrigerator\", \"person removes plate out of cabinet\", \"person then washes cucumber\", \"person then places cucumber on plate\", \"perosn then cuts ends off cucumber\", \"person then cuts cucumber in slices\", \"person then places cucumber on plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a cucumber.\", \"The person gets out a plate.\", \"The person rinses the cucumber.\", \"The person cuts the tips off the cucumber.\", \"The person slices the cucumber and puts the slices on the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a cucumber.\", \"The person gets out a plate.\", \"The person rinses the cucumber.\", \"The person cuts off the tips  of the cucumber.\", \"The person cuts up the cucumber.\", \"The person puts the cucumber slices on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a cucumber from the fridge.\", \"The person procures a plate from the cabinet.\", \"The person washes the cucumber in the sink.\", \"The person cuts the ends off the cucumber then cuts the body into slices.\", \"The person sets cucumber slices on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a cucumber from the fridge then takes a plate from the cabinet.\", \"The person washes the cucumber in the sink.\", \"The person cuts the ends from the cucumber.\", \"The person chops the cucumber into slices on the cutting board.\", \"The person sets the cucumber slices on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a cucumber from the fridge.\", \"The person procures a plate from the cabinet.\", \"The person washes the cucumber in the sink.\", \"The person cuts the ends off the cucumber.\", \"The person slices the cucumber on the cutting board.\", \"The person sets the sliced cucumber on the plate.\", \"He goes to the drawer and takes out a cutting board and knife.\", \"He goes to the refrigerator and takes out a cucumber.\", \"He goes to the cupboard and takes out a plate and places it on the counter.\", \"He goes to the sink and washes the cucumber.\", \"He then cuts off the ends of the cucumber and then slices the cucumber.\", \"He picks up the cucumber and places it on the plate.\", \"He opens the drawers and takes out a cutting board and a knife.\", \"He gets a cucumber from the refrigerator and a plate from the cabinet.\", \"He sets the plate down and washes the cucumber in the sink.\", \"He puts the cucumber on the plate and dries off his hands.\", \"He uses the knife to cut off the ends of the cucumbers.\", \"He uses the knife to slice the cucumber into smaller pieces.\", \"He picks up the pieces of cucumber and places them on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a cucumber from the fridge.\", \"The person procures a plate from the cabinet.\", \"The person washes the cucumber in the sink.\", \"The person chops the ends off the cucumber on the cutting board.\", \"The person slices the cucumber on the cutting board.\", \" The person sets the sliced cucumber on the plate.\", \"He gets out the cutting board, knife, plate, and cucumber from drawers and the refrigerator.\", \"He washes the cucumber in the sink and puts it on the plate.\", \"He wipes his hand on the rag.\", \"He chops the ends off the cucumber.\", \"He chops the cucumber into pieces with the knife.\", \"He gathers the chopped cucumbers together on a plate.\", \"the man is opening the drawer\", \"the man is placing a knife on the cutting board he got from the drawer\", \"the man is opening the refridgerator\", \"he got a cucumber from the refridgerator\", \"the man is washing the cucumber\", \"the man is slicing the cucumber width-wise\", \"then the man arranges the cucumbers on a plate\", \"The man places a cutting board on the counter.\", \"The man places a knife on the cutting board.\", \"The man gets a cucumber out of the refrigerator.\", \"The man gets a plate out of the cupboard.\", \"The man rinses the cucumber.\", \"The man dries his hands.\", \"The man cuts the ends off of the cucumber.\", \"The man cuts the cucumber into slices.\", \"The man arranges the cucumber slices on the plate.\", \"The person takes a cutting board from the drawer.\", \"The person removes a large knife from a drawer and puts it on the cutting board.\", \"The person takes a cucumber from the fridge.\", \"The person takes a plate from the cabinet.\", \"The person washes the cucumber in the sink.\", \"The person dries his hands with the towel.\", \"The person slices the cucumber.\", \"The person places the sliced cucumber onto the plate.\", \"He places the cutting board on the counter\", \"He placed the knife on the cutting board\", \"He got a cucumber from the refrigerator\", \"The man washed the cucumber in the sink\", \"The man dried his hands on the towel\", \"The man cut the cucumber into slices\", \"The man placed the cucumber slices on the plate\"], \"fps\": 29.4, \"num_frames\": 2939}, \"s13-d28.avi\": {\"timestamps\": [[266, 453], [471, 700], [746, 1245], [1338, 1597], [1666, 1800], [1902, 2248], [2271, 2950], [3127, 3635], [3685, 4441], [4482, 5402], [266, 453], [471, 645], [645, 1245], [1338, 1597], [1666, 1800], [1902, 2950], [3127, 5402], [266, 1597], [1666, 1800], [1902, 2248], [2271, 2950], [3127, 3461], [3465, 3835], [3840, 4441], [4482, 5402], [266, 453], [471, 645], [645, 1245], [1338, 1597], [1666, 1800], [1902, 2950], [3127, 3461], [3465, 4441], [4482, 5402], [266, 453], [471, 645], [645, 1245], [1338, 1597], [1666, 1800], [1902, 2950], [3127, 4441], [4482, 5402], [266, 700], [746, 1800], [1902, 2248], [2271, 2950], [5459, 5516], [266, 700], [746, 1597], [1666, 1800], [1902, 2248], [2271, 2950], [3127, 3635], [3685, 4441], [4482, 5402], [266, 453], [471, 645], [645, 1245], [1338, 1800], [1902, 2950], [3127, 5402], [266, 453], [471, 645], [645, 1245], [1338, 1597], [1666, 1800], [1902, 2950], [3127, 3635], [3685, 4441], [4482, 5402], [266, 1597], [1666, 1800], [1902, 2248], [2271, 2950], [3127, 3461], [3465, 4441], [5459, 5516], [266, 645], [645, 1597], [1666, 1800], [1902, 2248], [1902, 2248], [2271, 3461], [3465, 4005], [4005, 5103], [266, 453], [471, 700], [746, 1245], [1338, 1597], [1666, 1800], [1902, 2248], [2271, 2950], [3127, 4579], [5107, 5402], [266, 453], [471, 645], [645, 1245], [1338, 1597], [1666, 1800], [1902, 1975], [2077, 2950], [4779, 5402], [266, 700], [746, 1597], [1666, 1800], [1902, 1975], [2077, 2248], [2271, 2950], [3127, 4441], [3127, 5402], [5459, 5516], [266, 453], [471, 700], [746, 1597], [1666, 1800], [1902, 2248], [2271, 2950], [3127, 3635], [3685, 4579], [4482, 5402], [5459, 5516], [266, 1597], [1666, 1975], [2077, 2248], [2271, 2950], [3127, 3635]], \"sentences\": [\"The person got out a cutting board.\", \"The person got out a knife.\", \"The person got an orange out of the cupboard.\", \"The person got a plate.\", \"The person rinsed the orange in the sink.\", \"The person cut the ends off the orange.\", \"The person peeled the orange.\", \"The person cut the orange in slices.\", \"The person cut each slice in quarters.\", \"The person put the pieces of orange on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes an orange from the pantry.\", \"The person procures a plate from the cabinet.\", \"The person washes the orange in the sink.\", \"The person peels the orange with the knife.\", \"The person cuts the orange into slices, quarters the slices, then slides them onto the plate.\", \"The man gets a cutting board and knife from the drawer, before walking over and getting an orange and plate out of two different cabinets.\", \"The man rinses the orange under the sink.\", \"The man places the orange on the cutting board and uses the knife to slice off the ends.\", \"The man takes the knife and digs it into the orange then begins to peel the orange by going around in a circle.\", \"The man takes the orange and starts at one end and makes six slices.\", \"The man takes the first slice and cuts it into fours.\", \"The man takes the remaining five slices and cuts them into fours.\", \"The man gently places the four halves of each slice onto the awaiting plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out orange\", \"He took out plate\", \"He washed orange\", \"He peeled orange\", \"He sliced orange\", \"He cut up slices\", \"He put orange on plate\", \"He gets a cutting board out of the cupboard.\", \"He gets a knife out of the drawer.\", \" He gets an orange out of the cupboard.\", \"He gets a plate out of the cupboard.\", \"He rinses the orange.\", \"He cuts the ends off the orange and uses the knife the peel the orange.\", \"He cuts the orange into slices.\", \"He puts the slices on the plate.\", \"The man takes out a cutting board and a knife.\", \"The man gets and orange and washes it.\", \"The man slices off the ends of the orange.\", \"The man then peels the orange with a knife.\", \"The man slices the orange and puts the pieces onto the plate.\", \"The man removes a cutting board and knife from the drawers.\", \"He removes an orange and a plate from the cabinets.\", \"He rinses the orange in the sink.\", \"He uses the knife to cut the ends off of the orange.\", \"He uses the knife to peel the skin off the orange in a circular fashion.\", \"He uses the knife to slice the orange.\", \"He cuts each slice of the orange into quarters.\", \"He transfers the orange pieces from the cutting board onto the plate.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets an orange.\", \"He rinses the orange.\", \"He peels the orange.\", \"He cuts up the orange and puts it on a plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes an orange from the pantry.\", \"The person procures a plate from the cabinet.\", \"The person washes the orange in the sink.\", \"The person uses the knife to peel the orange.\", \"The person cuts the peeled orange into slices.\", \"The person cuts the slices in halves.\", \"The person sets the oranges on the plate.\", \"He gets a cutting board and a knife from the drawers and an orange and a plate from the cupboard.\", \"He washes the orange in the sink and places it on the cutting board.\", \"He dries his hands and uses his knife to cut off the ends of the orange.\", \"He uses the knife to remove the rest of the peel from the orange.\", \"He uses the knife to slice the orange into pieces.\", \"He slices each piece horizontally and vertically into pieces.\", \"He uses the knife and his hand to pick up all of the orange pieces and put them on the plate.\", \"Get out a cutting board and knife.\", \"Get out a clean plate.\", \"Rinse the orange in water.\", \"Cut off the ends.\", \"Use the knife to peel the orange by circling the orange.\", \"Cut the orange by slicing the knife in a vertical manner.\", \"Cut each piece into four parts.\", \"Place orange slices onto plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out orange\", \"He took out plate\", \"He washed orange\", \"He cut off top of orange\", \"He peeled orange\", \"He sliced orange\", \"He put orange on plate\", \"The person takes a chopping board out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person takes out an orange from the cupboard.\", \"The person takes out a plate from the cupboard.\", \"The person washes the orange.\", \"The person dries his hands with a towel.\", \"The person peels the skin off the orange.\", \"The person cuts the peeled orange into small pieces and puts them on the plate.\", \"He removes the utensils from the drawer.\", \"He removes an orange and plate from the cabinets.\", \"He washes the orange.\", \"He dries his hands on a towel.\", \"He slices the ends off of the orange.\", \"He peels the orange in a circular motion with a knife.\", \"He slices the orange in halves and quarters.\", \"He uses the knife to help lift the orange pieces to the plate.\", \"He is done preparing the orange and steps back from the counter.\", \"The man enters the kitchen and removes a cutting board from the drawer.\", \" The man than retrieves a knife from a different drawer.\", \"He walks over to the cabinet and takes out an orange and a plate and places them on the counter.\", \" The man washes the orange in the sink and places it on the cutting board.\", \"He begins preparing the orange by slicing the ends off.\", \"The man peels the skin of the orange off with a knife by going in a circular motion.\", \"The man thinly slices the orange.\", \" The man then cuts the thinly sliced pieces into fours.\", \"The man places the small pieces of the sliced orange onto a plate.\", \" The man relocates the plate on the counter.\", \"The man retrieves a cutting board, a knife, an orange, and a plate.\", \"The man rinses off the orange and dries his hands on a towel.\", \"The man cuts both ends off of the orange.\", \"He peels the orange.\", \"He cuts the orange into five pieces.\"], \"fps\": 29.4, \"num_frames\": 5613}, \"s27-d29.avi\": {\"timestamps\": [[230, 552], [562, 678], [678, 884], [979, 1307], [1321, 1501], [1501, 2039], [1501, 2039], [2178, 2476], [2538, 4670], [4717, 5189], [5356, 5686], [5753, 6109], [6174, 6916], [7156, 7935], [230, 552], [562, 884], [979, 1604], [1694, 2476], [2538, 5189], [5356, 5823], [5837, 6916], [7156, 7935], [230, 552], [562, 678], [678, 884], [979, 1307], [1321, 1604], [1694, 2321], [2371, 5189], [5356, 5497], [5529, 6109], [6174, 6916], [7156, 7269], [7303, 7812], [230, 552], [562, 678], [678, 884], [979, 1604], [1694, 2321], [2371, 5189], [5356, 5497], [5529, 6109], [6174, 6916], [7156, 7269], [7303, 7812], [230, 552], [562, 832], [832, 1307], [1321, 1604], [1694, 2321], [2371, 3568], [3696, 5100], [5108, 5686], [5753, 6916], [7156, 7269], [7823, 7935], [230, 552], [562, 832], [832, 1604], [1694, 2321], [2371, 5189], [5356, 6916], [7156, 7812], [230, 552], [562, 737], [753, 884], [979, 1604], [1694, 2039], [2178, 2321], [2371, 2476], [2538, 3568], [230, 552], [562, 1604], [1694, 2321], [3696, 3760], [3822, 4670], [4717, 5189], [7823, 7935], [230, 884], [979, 1604], [1694, 2476], [2371, 3760], [3822, 6109], [6174, 7455], [230, 552], [230, 552], [562, 832], [562, 832], [832, 884], [979, 1307], [1321, 2476], [2538, 5497], [5529, 5686], [5753, 6109], [6174, 7269], [7303, 7455], [230, 832], [832, 2321], [2371, 2476], [2538, 3568], [2538, 3568], [2538, 3760], [3822, 4670], [4717, 5189], [5356, 6916], [7156, 7269], [230, 884], [979, 1604], [1694, 2476], [2538, 3568], [3696, 4670], [4717, 6916], [230, 552], [562, 678], [678, 832], [832, 1526], [1526, 2476], [3696, 5189], [5356, 5497], [5529, 6109], [6174, 6916], [230, 552], [562, 678], [678, 832], [832, 1604], [1694, 2321], [2371, 2476], [2538, 5189], [5356, 5686], [5753, 6109], [6174, 6916], [7156, 7269], [7455, 7812], [230, 1307], [1321, 1604], [1694, 2321], [2371, 2476], [2538, 5189], [5356, 5686], [5753, 6916], [7303, 7935], [230, 552], [562, 678], [678, 832], [832, 2321], [2538, 5100], [5108, 6109], [6174, 6916], [7823, 7935], [230, 552], [562, 678], [678, 832], [832, 1526], [1526, 2321], [2371, 3568], [2371, 4670], [4717, 5497], [5529, 6109], [6174, 6916]], \"sentences\": [\"The man got the herbs out of the fridge.\", \"The man got out a cutting board.\", \"The man got out a knife.\", \"The man got the herbs out of the bag.\", \"The man rinsed off the herbs.\", \"The man grabbed different herbs from next to the sink.\", \"The man washed those herbs.\", \"The man cut the herb from the stem.\", \"The man diced the herbs.\", \"The man combined the herbs and diced them one more time.\", \"The man washed and dried his hands.\", \"The man got a bowl.\", \"The man put the herbs in the bowl.\", \"The man put the herbs away.\", \"The man pulls herbs from the refrigerator.\", \"He takes out a cutting board and knife.\", \"The man selects a stem and washes it.\", \"The man removes the stems.\", \"The man dices the herbs.\", \"The man washes his hands.\", \"He places the herbs into the bowl.\", \"The man puts the excess away.\", \"The person gets out a bag of herbs.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person takes a few stalks of herbs out of the bag.\", \"The person rinses the herbs.\", \"The person picks some of a different herb from a plant just off-camera and rinses them.\", \"The person chops up the herbs.\", \"The person washes his hands.\", \"The person gets out a bowl.\", \"The person scrapes the herbs into the bowl.\", \"The person throws away the stalk of the first herb.\", \"The person puts the bag of herbs back into the refrigerator.\", \"The person gets out a bag of herbs.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person takes some herbs out of the bag and rinses them.\", \"The person picks some of a different herb from a plant off-camera and rinses them.\", \"The person chops up the herbs.\", \"The person washes his hands.\", \"The person gets out a bowl.\", \"The person puts the herbs in the bowl.\", \"The person throws away the stalk from one of the herbs.\", \"The person puts the bag of herbs back in the fridge.\", \"get fresh herbs out of refrigerator and place on counter\", \"get cutting board and knife out, place on counter to use\", \"unwrap fresh herbs and take out portion needed for recipe\", \"rinse herb in running water, shake off excess water and place on cutting board\", \"grab portion of other herbs next to sink, wash, separate good piece from bad and place good portion on cutting board\", \"cut top off herb and dice into small pieces\", \"cut of any bad spots on second herb then dice and mix with first herb, dicing a bit more to mix them together\", \"wipe off knife with hands, then wash and dry hands\", \"find bowl and scrape fresh chopped herbs from cutting board into it\", \"gather trash and throw it away\", \"rewrap fresh herbs not used, gather any trash left, place wrapped herbs back in refrigerator, and throw out trash\", \"He grabs the herbs.\", \"He gets a cutting board and knife.\", \"He rinses the herbs.\", \"He rinses the other type of herbs.\", \"He chops the herbs.\", \"He puts the herbs in a bowl.\", \"He cleans up.\", \"He took out herbs\", \"He took out cutting board\", \"He took out knife\", \"He washed herbs\", \"He took 2nd herbs\", \"He washed 2nd herbs\", \"He cut off stems\", \"He chopped herbs\", \"The person gathers the herbs, a cutting board, and a knife.\", \"The person selects and washes the desired amount of herbs.\", \"The person grabs and washes what looks like some kind of stems from a source that is off-screen (so I cannot see exactly what it is).\", \"The person removes the stems from the herbs and dices them into fairly small pieces.\", \"The person removes an undesired portion of the mystery herb and chops width-wise into small pieces.\", \"The person combines these pieces with the first herb and dices all of them together.\", \"The person collects all of the diced herbs into a bowl, throws away the scraps, and returns the unused herb to the fridge.\", \"the person gets a cutting board and sharp knife\", \"the person washes the Fresh Herbs\", \"the person cuts the leaves off of the Fresh Herbs\", \"the person dices the leaves\", \"the person gets a bowl\", \"the person puts the diced leaves in the bowl\", \"Man enters and opens fridge.\", \"Man takes out herbs.\", \"Man takes out cutting board.\", \"Man takes out knife.\", \"Man begins to separate veggies.\", \"Man washes herbs.\", \"Man begins to chop herbs.\", \"Man washes his hands.\", \"Man dries off hands.\", \"Man puts herbs into bowl.\", \"Man sets down knife and begins to clean up.\", \"Man puts away extra herbs.\", \"Take out a knife and cutting board.\", \"Wash the herbs.\", \"Chop the stem off of any herbs that have stems.\", \"Slice the bunch of herbs.\", \"Rotate the herbs so you can slice the other direction.\", \"Chop ends off of herbs that have roots.\", \"Slice herbs into small rounds.\", \"Mix all of the herbs together and do a final chop through, of the pile of herbs.\", \"Place herbs in a bowl.\", \"Discard any stems or inedible portions.\", \"Get a cutting board and a knife.\", \"Rinse with water.\", \"Cut off the stem.\", \"Chop into small pieces.\", \"Again chop into small pieces.\", \"Place into a bowl.\", \"He took out herbs\", \"He took out cutting board\", \"He took out knife\", \"He washed herbs\", \"He chopped off stem\", \"He chopped herbs\", \"He washed hands\", \"He took out bowl\", \"He put herbs in bowl\", \"The person gets out a package of herbs.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person removes some herbs from the package and rinses them.\", \"The person picks some of a different type of herb.\", \"The person cuts the stem off of herb #1.\", \"The person chops up both herbs.\", \"The person washes his hands.\", \"The person gets out a bowl.\", \"The person scrapes the herbs into the bowl.\", \"The person throws away the stem from herb #1.\", \"The person puts the rest of the package of herb #1 back in the fridge.\", \"The person selects a small bunch of the herbs.\", \"The person washes the herbs in the sink.\", \"The person selects and washes a second type of herb.\", \"The person trims the stem off the first bunch of herbs.\", \"The person finely chops the herbs with a knife.\", \"The person washes his hands and dries them.\", \"The person puts the chopped herbs into a small bowl.\", \"The person cleans up the remainder of the unused herbs.\", \"He takes out the herbs.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person rinses the herbs and places them on the cutting board.\", \"After removing the stems the person finely chops the herbs.\", \"The person takes out a bowl.\", \"The person puts the chopped herbs into the bowl.\", \"The person is done.\", \"He took out herbs\", \"He took out cutting board\", \"He took out knife\", \"He washed herbs\", \"He washed second set of herbs\", \"He diced first herb\", \"He diced second herb\", \"He washed hands\", \"He took out bowl\", \"He put herbs in bowl\"], \"fps\": 29.4, \"num_frames\": 8008}, \"s26-d70.avi\": {\"timestamps\": [[224, 556], [562, 1177], [1190, 1882], [1927, 1974], [2272, 2353], [2380, 3062], [3115, 4540], [4943, 5316], [5525, 5587], [224, 556], [562, 978], [1030, 1974], [1030, 1974], [2272, 3062], [3115, 4540], [5587, 5765], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1882], [1927, 1974], [2272, 2353], [2380, 4540], [4943, 5025], [5105, 5316], [4943, 5765], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1882], [1927, 1974], [2272, 2353], [2380, 4540], [4943, 5025], [5105, 5316], [5525, 5721], [224, 556], [562, 978], [1030, 1177], [1190, 1836], [1836, 1974], [2272, 2353], [2380, 3062], [3115, 4540], [3115, 4540], [4943, 5025], [5105, 5316], [5525, 5637], [224, 556], [562, 1177], [1190, 1882], [1927, 2353], [2380, 4540], [5765, 5794], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1882], [1927, 1974], [2272, 2353], [2380, 4540], [4943, 5025], [5105, 5316], [5637, 5765], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1882], [1927, 2353], [2380, 4540], [4943, 5025], [5105, 5316], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1974], [2272, 2353], [2380, 4540], [4943, 5025], [5105, 5316], [5525, 5765], [224, 556], [562, 978], [1030, 1230], [1388, 1882], [1927, 1974], [2272, 2353], [2380, 4540], [4943, 5316], [5765, 5794], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1882], [1927, 2353], [2380, 4540], [4943, 5316], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1974], [2272, 2353], [2380, 4540], [4943, 5025], [5105, 5316], [5740, 5794], [224, 556], [562, 1177], [1190, 1882], [1927, 1974], [2272, 2353], [2380, 3062], [3115, 4540], [4943, 5316], [5525, 5765], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1882], [1927, 1974], [2272, 2353], [2380, 4540], [4943, 5316], [5765, 5794], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1882], [1927, 1974], [2272, 2353], [2380, 4540], [4943, 5025], [5105, 5316], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1974], [1190, 1974], [2272, 2353], [2380, 4540], [4943, 5025], [5105, 5316], [224, 556], [562, 662], [668, 765], [784, 978], [1030, 1177], [1190, 1230], [1388, 1974], [2272, 2353], [2380, 4540], [4943, 5316]], \"sentences\": [\"Obtain 1 Medium Sized Orange.\", \"Get your tools ready. You will need one knife, one juicer extractor, and one cutting board.\", \"Rinse the orange in cool water for approximately ten seconds.\", \"Before cutting, roll the orange on the cutting board a few times to firm it.\", \"Cut the orange into two equal slices.\", \"Place orange half on the juicer and twist until all pulp is extracted from the orange. Set aside.\", \"Repeat with second orange half.\", \"Pour juice from juicer to cup.\", \"Use a spoon to extract the pulp from the juicer into the cup.\", \"A man enters the kitchen removes an orange from the refrigerator and places it on the counter.\", \"He removes a cutting board, a juice press and a knife from the drawer and places them on the counter.\", \"He retrieves a glass from the counter and places it on the counter and washes the orange.\", \"Using his hand, he rolls the orange around on the cutting board.\", \"He grinds one half of the orange on the juice press.\", \"He grinds the second half of the orange on the juice press.\", \"He pours the juice from the juice press into the glass and stirs it a bit.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a juicer.\", \"The person gets out a knife.\", \"The person gets out a glass.\", \"The person rinses the orange.\", \"The person rolls the orange around the cutting board.\", \"The person cuts the orange in half.\", \"The person juices the orange.\", \"The person gets out a spoon.\", \"The person pours the juice into the glass.\", \"The person scrapes the pulp out of the juicer and adds it to the glass.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a juicer.\", \"The person gets out a knife.\", \"The person gets out a glass.\", \"The person rinses the orange.\", \"The person rolls the orange around on the cutting board.\", \"The person cuts the orange in half.\", \"The person juices the orange.\", \"The person gets out a spoon.\", \"The person pours the juice into the glass.\", \"The person scrapes the pulp into the glass.\", \"The young man retrieves a orange from the refrigerator\", \"The young man pulls a cutting board , knife and a orange juice squeezer out of the draws and places them and the orange on the kitchen counter.\", \"He then gets a glass from the cabinets behind him and places it with the rest of the items on the kitchen counter.\", \"He then washes the orange in the sink next to the collected items.\", \"He preps the orange by rolling it on the cutting board.\", \"He then cuts the orange in into halfs.\", \"He uses the orange juicer to squeeze the juice out of one of the halfs of oranges.\", \"He uses the orange juicer to squeeze the juice out of one of the second half of the orange.\", \"He sifts the orange pulp from the top half of the orange juicer.\", \"He then gets a spoon from the draw.\", \"He pours the juice from the juicer into a glass .\", \"He scoups some of the pulp from the juicers top half and stirs it into the juice itself.\", \"The man takes out an orange.\", \"The man takes out the rest of his supplies.\", \"The man washes the orange.\", \"The man tenderizes the orange and slices it in half.\", \"The man pushes and twist the orange into the juicer.\", \"The man puts the juice and pulp into the glass.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a juicer.\", \"The person gets out a knife.\", \"The person gets out a glass.\", \"The person rinses the orange.\", \"The person rolls the orange on the cutting board.\", \"The person cuts the orange in half.\", \"The person juices the orange.\", \"The person gets out a spoon.\", \"The person pours the juice into the glass.\", \"The person scoops the pulp into the glass.\", \"He took out orange\", \"He took out cutting board\", \"He took out juicer\", \"He took out knife\", \"He took out glass\", \"He washed orange\", \"He cut orange in half\", \"He twisted orange on juicer\", \"He took out spoon\", \"He poured juice in glass\", \"The person procures an orange from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a juice strainer from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a glass from the cupboard.\", \"The person washes the orange in the sink, dries his hands on a towel, then rolls the orange on the cutting board with his palm.\", \"The person slices the orange in half.\", \"The person grinds both orange halves into the juice strainer with his palm.\", \"The person takes out a spoon from the drawer.\", \"The person pours the juice from the strainer into the glass.\", \"The person uses the spoon to scoop the pulp from the juice strainer into the glass.\", \"Get your fresh orange ready.\", \"Get your cutting board, juicer and knife.\", \"Grab a glass.\", \"Rinse off your orange.\", \"Roll the orange around on the cutting board, pushing it down firmly.\", \"Cut your orange in half.\", \"For each half, press down firmly on top of the juicer and twist back and forth.\", \"Pour your juice into the glass.\", \"Scrape pulp into the glass.\", \"He took out orange\", \"He took out cutting board\", \"He took out juicer\", \"He took out knife\", \"He took out glass\", \"He washed orange\", \"He cut orange in half\", \"He twisted orange on juicer\", \"He poured juice in cup\", \"The person procures an orange from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a juice strainer from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a glass from the cupboard.\", \"The person washes the orange in the sink, dries his hands on a towel, then rolls the orange on the cutting board with his palm.\", \"The person slices the orange in half.\", \"The person grinds both orange halves into the juice strainer with his palm.\", \"The person takes out a spoon from the drawer.\", \"The person pours the juice from the strainer into the glass.\", \"The person uses the spoon to scoop the pulp from the juice strainer into the glass.\", \"The person selects and orange.\", \"The person gets a cutting board, a hand juicer, a knife and a juice glass.\", \"The person washes the orange.\", \"The person dries his hands and rolls the orange over the cutting board to dry off the rind.\", \"The person slices the orange in half, making the cut mid-way between the navel and the stem.\", \"The person presses the exposed fruit of one of the orange halves against the top of the juicer, grinding it into the juicer and rotating the orange-half back-and-forth to extract the juice.\", \"The person repeats the previous step using the second orange-half.\", \"The person tips the juicer to strain the juice into the glass.\", \"The person uses a spoon to scoop out pulp from the juicer and place it in the juice glass.\", \"The person takes an orange out of the fridge.\", \"The person takes a chopping board out of the drawer.\", \"The person takes an orange juice squeezer out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person takes a glass out from the cupboard.\", \"The person washes the orange.\", \"The person rolls the orange around the chopping board to dry the orange.\", \"The person cuts the orange into half.\", \"The person squeezes both halves of the orange using the orange juice squeezer.\", \"The person pours the juice into the glass.\", \"The person uses a spoon to scoop the pulp into the glass.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a juicer.\", \"The person gets out a knife.\", \"The person gets out a glass.\", \"The person rinses the orange.\", \"The person rolls the orange around on the cutting board.\", \"The person cuts the orange in half.\", \"The person juices the orange.\", \"The person gets out a spoon.\", \"The person pours the juice into the cup.\", \"The person procures an orange from the fridge.\", \"The person procures a cutting board from the drawer.\", \"The person takes out a juice strainer from a drawer.\", \"The person takes a knife from a drawer and places it on the cutting board.\", \"The person gets a glass from the cabinet.\", \"The person washes the orange in the sink.\", \"The person softens the orange by rubbing it on the cutting board with his palm.\", \"The person cuts the orange in halves.\", \"The person forcefully twists and grinds both orange segments into the juice strainer.\", \"The person gets a spoon from out of the drawer.\", \"The person pours the juice extract from the strainer into the glass.\", \"He took out orange\", \"He took out cutting board\", \"He took out juicer\", \"He took out knife\", \"He took out glass\", \"He washed orange\", \"He dried orange\", \"He cut orange in half\", \"He twisted orange on juicer\", \"He poured juice in glass\"], \"fps\": 29.4, \"num_frames\": 5831}, \"s26-d69.avi\": {\"timestamps\": [[160, 377], [425, 824], [840, 973], [980, 1555], [1663, 2236], [2298, 2683], [2721, 3095], [3242, 3551], [3739, 7595], [8085, 8581], [8666, 9428], [9499, 10425], [10520, 19657], [19778, 20896], [160, 973], [980, 1974], [1988, 2502], [2528, 3095], [3242, 7595], [8085, 8732], [8767, 9556], [9581, 10425], [10520, 18811], [19132, 20216], [20436, 20896], [160, 973], [980, 1374], [1394, 1974], [1988, 2502], [2528, 3038], [3062, 3358], [3406, 7595], [8085, 9691], [9694, 10425], [10520, 12086], [12163, 13533], [14206, 16330], [16419, 20896], [160, 377], [425, 824], [840, 1135], [840, 1135], [1140, 1466], [1491, 1974], [1988, 2034], [1988, 2034], [2095, 2363], [2424, 2768], [2787, 3038], [3062, 3095], [3242, 4011], [3242, 4011], [160, 377], [425, 973], [980, 1135], [1140, 1555], [1663, 2363], [2424, 3095], [4365, 4469], [4837, 8820], [8899, 10425], [10520, 11651], [11732, 12899], [13044, 15758], [15924, 20216], [20436, 20896], [160, 377], [425, 824], [840, 1135], [1140, 1374], [1394, 1555], [1663, 2034], [2095, 2363], [2424, 2886], [2926, 3095], [3242, 4011], [3242, 8581], [3242, 8581], [160, 377], [425, 973], [980, 2034], [2095, 3358], [3406, 4011], [8666, 9556], [9581, 10313], [10335, 11105], [11156, 12899], [13044, 17629], [17728, 20896], [160, 824], [840, 973], [980, 1135], [1140, 1262], [1286, 1795], [1828, 3095], [4365, 5940], [6861, 8581], [4365, 9428], [9499, 10425], [10520, 15758], [15924, 20216], [160, 377], [425, 973], [3242, 5940], [8666, 9556], [9581, 10313], [10335, 11105], [11156, 11510], [11531, 12086], [12163, 12899], [13044, 15218], [15329, 15758], [15924, 20216], [20436, 20538], [20543, 20836], [160, 973], [980, 1555], [1663, 2034], [2095, 2363], [2424, 3095], [6861, 8732], [8767, 10957], [11043, 12899], [20436, 20538], [20543, 20836], [160, 973], [980, 1262], [1286, 2034], [2095, 2236], [2298, 3095], [3242, 8312], [980, 9428], [9499, 9802], [9810, 9990], [10014, 12899], [13044, 15758], [15924, 20216], [20854, 20896], [160, 377], [425, 824], [840, 2886], [2926, 3095], [3242, 8312], [3242, 8312], [8363, 8581], [8363, 9556], [9581, 9802], [9810, 10048], [10057, 10313], [10335, 11105], [11156, 20216], [160, 377], [425, 973], [980, 1374], [1394, 1466], [1491, 1555], [1663, 2363], [2424, 2502], [2528, 2886], [2926, 3038], [3062, 3095], [160, 377], [425, 824], [840, 1135], [1140, 1262], [1286, 1555], [1663, 1974], [1988, 2034], [2095, 2236], [2298, 2363], [2424, 2886], [160, 377], [160, 377], [425, 824], [840, 1135], [1140, 1262], [1286, 1466], [1491, 1795], [1828, 1882], [1894, 2034], [2095, 2236], [2298, 2363], [2424, 2768], [160, 377], [425, 973], [980, 1466], [1491, 2363], [2787, 2886], [3242, 3358], [3242, 8312], [8666, 8820], [8899, 11254], [11263, 12086], [12163, 15218], [15329, 16330], [16419, 19175], [20436, 20538], [20854, 20896], [160, 1555], [1663, 2363], [2926, 3494], [3406, 7595], [8363, 8732], [8767, 9556], [9581, 12086], [12163, 12899], [13044, 18811], [19132, 20216], [13044, 20896], [160, 377], [425, 824], [840, 1135], [1140, 1466], [1491, 2034], [2424, 3095], [3510, 8581], [8085, 10313], [10335, 12899], [13044, 19175], [19273, 19417], [19576, 20216], [19273, 20836], [20543, 20896]], \"sentences\": [\"The person got out a pan.\", \"The person got out the eggs and butter.\", \"The person got out a cutting board.\", \"The person got out a knife and some fresh herbs.\", \"The person rinsed the herbs.\", \"The person turned on the burner.\", \"The person put a pat of butter in the pan.\", \"The person got out seasoning (salt and pepper).\", \"The butter is melted.\", \"The person cracks the eggs into the pan.\", \"The person stirs the eggs.\", \"The person seasons the eggs.\", \"The person stirs the eggs until they are done.\", \"The person puts the eggs on a plate and tops it with herbs.\", \"The man takes out eggs and butter.\", \"The man cuts off some fresh herbs.\", \"The man washes the herbs.\", \"The man adds butter to a pan.\", \"The man waits for the butter to melt.\", \"The man cracks the eggs and places them into the pan.\", \"The man mixes the eggs.\", \"The man seasons the eggs.\", \"The man stirs the eggs as they cook.\", \"The man takes the eggs out of the pan.\", \"The man finishes by putting the herbs onto the eggs.\", \"He opens a drawer and gets a pan and places it on the stove then goes to the refrigerator and get butter and eggs.\", \"He gets a cutting board out and then he washes and dries his hands.\", \"He gets a knife out of the drawer and then reaches over to get a plant and begins cutting the leaves.\", \"He returns the herb plant and then picks up the herbs and washes them.\", \"He turns on the stove and gets a spatula out.\", \"He then takes a slice of butter and places in the fry pan.\", \"He grabs some spices, covers the butter, and then waits for the butter to melt.\", \"He cracks the eggs into the pan and then scrambles them.\", \"He then adds spices to the scrambled eggs.\", \"He stirs the eggs then cleans up a little then goes back to stir eggs again.\", \"He then crops the herbs and stirs the eggs again.\", \"He then gets a dish and washes it.\", \"While waiting for eggs to cook he cleans up and dries the dish and then puts the eggs on the plate and sprinkles with the herbs and then gets out a fork.\", \"He took out pan\", \"He took out eggs and butter\", \"He took out cutting board\", \"He washed hands\", \"He took out knife\", \"He cut some herbs\", \"He put back unused herbs\", \"He washed hands\", \"He washed herbs\", \"He turned on stove\", \"He took out knife\", \"He put butter on stove\", \"He turned up stove\", \"He mixed butter\", \"The person takes out a pan from the drawer.\", \"The person procures butter and a pair of eggs from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer and a plant of herbs from the counter.\", \"The person cuts off some herbs from the plant, returns the planter to the counter, and then washes the herbs in the sink.\", \"The person turns on the stove, takes out a wooden spatula from the drawer, and cuts some butter with it onto the pan.\", \"The person gathers several condiments.\", \"The person cracks the eggs over the pan and then washes his hands.\", \"The person scrambles the eggs with the spatula and adds the condiments.\", \"The person throws the shells into the wastebin and once more washes his hands.\", \"The person chops the herbs on the cutting board.\", \"The person procures a plate from the cabinet.\", \"The person sets the scrambled eggs on the plate.\", \"The person sprinkles the herbs over the eggs and takes out a fork from the drawer.\", \"He took out pan\", \"He took out eggs and butter\", \"He took out cutting board\", \"He washed hands\", \"He took out knife\", \"He cut some herbs\", \"He washed herbs\", \"He turned on stove\", \"He put butter in pan\", \"He turned up stove\", \"He cracked first egg\", \"He cracked second egg\", \"Grab a saucepan and place on stove.\", \"Grab two eggs and butter.\", \"Cut off a few parcels of fresh green Onion.\", \"Melt your butter in the sauce pan.\", \"Grab seasoning of your choice such as salt and pepper.\", \"Once butter is completely melted, crack two eggs into pan and start to scramble.\", \"Add seasoning to taste.\", \"Occasionally stir eggs so they do not stick.\", \"Begin to chop your fresh onions.\", \"Clean up cooking area.\", \"Once eggs are done, place on plate and add onions, enjoy.\", \"He gets a frying pan.\", \"He gets two eggs.\", \"He gets out a cutting board.\", \"He washes his hands.\", \"He gets a knife and some herbs.\", \"He puts butter in the frying pan.\", \"He spreads the melting butter.\", \"He pours out the eggs onto the frying pan.\", \"He mixes around the eggs.\", \"He puts salt and pepper in the pan.\", \"He gets a plate.\", \"He puts the scrambled eggs onto the plate.\", \"The man takes a frying pan from the cabinet and places it on the stove top.\", \"He removes two eggs and butter from the refrigerator.\", \"He places some butter in the pan and allows it to melt.\", \"He cracks both eggs open in the frying pan, and scrambles them with a wooden spatula.\", \"He seasons the eggs with several different spices.\", \"He gently moves the eggs around the frying pan with the spatula.\", \"He discards the egg shells into the recycling bin.\", \"He continues to stir the eggs in the pan every few minutes.\", \"He chops some greens on the cutting board.\", \"He continues to move the eggs in the frying pan.\", \"He gets a plate from the cabinet and places it on the counter.\", \"He removes the frying pan from the stove, and places the eggs onto the plate.\", \"He places the frying pan and spatula into the sink.\", \"He places the chopped greens on top of the scrambled eggs.\", \"He gets a pan and two eggs.\", \"He gets a cutting board and knife.\", \"He cuts off some herbs.\", \"He washes the herbs.\", \"He turn on the stove and adds butter to the pan.\", \"He cracks the eggs into the pan.\", \"He seasons eggs.\", \"He chops the herbs.\", \"He finishes cooking and adds the eggs to the plate.\", \"He puts the herbs on top of the eggs.\", \"The man takes out a frying pan, butter, 2 eggs, and a cutting board.\", \"He washes his hands.\", \"He uses a knife to cut herbs off of an herb plant.\", \"He washes the herbs.\", \"He adds butter to the frying pan.\", \"He cracks an egg into the pan.\", \"He stirs the eggs.\", \"He salts the eggs.\", \"He adds pepper.\", \"He cuts the herb into small pieces.\", \"He stirs the eggs.\", \"He puts the cooked eggs onto a plate.\", \"He adds the small pieces of the herb to the eggs.\", \"This person places pan on the stove top.\", \"This person gets 2 eggs and butter from the fridge.\", \"this person turns on the stove top to heat the pan.\", \"this person adds a pad of butter into the pan.\", \"the butter in the pan melts.\", \"this person cracks the first egg into the pan\", \"this person cracks the second egg into the pan\", \"this person uses a wooden spoon to break the yolks and stir the eggs.\", \"this person adds salt to the pan\", \"this person adds pepper to the pan\", \"this person adds a third seasoning to the pan.\", \"this person gently stirs the egg mix in the pan.\", \"this person removes the eggs from the pan and puts them on a plate.\", \"He took out pan\", \"He took out eggs and butter\", \"He washed hands\", \"He took out knife\", \"He took out herb\", \"He washed herbs\", \"He dried hands\", \"He turned on the stove\", \"He took out wooden spoon\", \"He put butter in pan\", \"He took out pan\", \"He took out eggs and butter\", \"He took out cutting board\", \"He washed hands\", \"He took out knife\", \"He cut herbs\", \"He put herbs away\", \"He rinsed hand\", \"He washed herbs\", \"He turned on stove\", \"He took out pan\", \"He put pan on stove\", \"He took out eggs and butter\", \"He took out cutting board\", \"He washed hands\", \"He took out knife\", \"He took out herbs\", \"He cut off herbs to use\", \"He put back extra herbs\", \"He rinsed hand\", \"He washed herb\", \"He turned on stove\", \"He goes to the drawer and gets out a fry pan.\", \"He goes to the refrigerator gets out some butter and eggs.\", \"He goes to the drawer and gets a cutting board out and then washes and dries his hands.\", \"He goes to the drawer and gets a knife and cuts off some herbs off a plant and rinses them.\", \"He turns on the stove.\", \"He goes to the drawer and takes out a spatula and cuts a piece of butter off and places it into the pan.\", \"He goes and gets some spices and waits for the butter to melt.\", \"He cracks the eggs into the pan and then rinses and dries his hands.\", \"He scrambles the eggs and adds some spices and then re-stirs.\", \"He throws away the egg shells and washes and dries his hands and then stirs the eggs.\", \"He chops the herbs and then he stirs the eggs.\", \"He goes to the cupboard and gets a plate and rinses it.\", \"He stirs the eggs, adjusts the stove, puts the butter and spices away, and then re-stirs the eggs.\", \"He dries the plate, returns the towel, and then puts the eggs on the plate.\", \"He puts the herbs on top of the eggs and then gets a fork out of the drawer.\", \"The person gets a skillet, two eggs, butter, a sharp knife and fresh herbs.\", \"The person cuts off some fresh herbs and rinses them.\", \"The person turns the heat on under the skillet, gets a wooden spoon and uses it to put some butter in the skillet to melt, then gets some spices.\", \"The person lets the butter melt completely and moves it around the skillet with the wooden spoon to let it coat the bottom.\", \"The person cracks the eggs and drops them in the hot skillet.\", \"The person uses the wooden spoon to scramble the eggs while in the skillet.\", \"The person adds salt, pepper and other spices to the egg mixture, then scrambles it with the wooden spoon.\", \"The person finely chops the fresh herbs.\", \"The person lets the egg cook, while periodically scrambling it with the wooden spoon. During this time, he gets a plate and puts the used items away.\", \"The person scoops the cooked eggs onto a plate.\", \"The person garnishes the eggs with the fresh herbs.\", \"The person takes out a pan and puts it on the stove.\", \"The person takes eggs and butter out of the fridge.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person cuts some herbs from a plant.\", \"The person adds some butter to the hot pan.\", \"The person cracks the eggs into the pan.\", \"The person adds spices to the eggs.\", \"The person chops the fresh herbs.\", \"The person scrambled the eggs around the pan until they are cooked.\", \"The person takes out a plate.\", \"The person places the cooked eggs onto the plate.\", \"The person garnishes the eggs with the fresh herb.\", \"The person is done preparing scrambled eggs.\"], \"fps\": 29.4, \"num_frames\": 20962}, \"s23-d39.avi\": {\"timestamps\": [[188, 316], [346, 443], [468, 652], [692, 851], [908, 1047], [1071, 1158], [1243, 1961], [2049, 2186], [2350, 4428], [4479, 5351], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1047], [1071, 1620], [1632, 1961], [2049, 4428], [4479, 5202], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1047], [1071, 1961], [2049, 2186], [2350, 2578], [2596, 3353], [3442, 4428], [4479, 5202], [188, 443], [468, 851], [908, 1104], [1120, 2186], [2350, 4428], [5219, 5351], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1104], [1120, 1158], [1243, 1531], [1582, 1961], [2049, 2186], [2350, 4428], [5219, 5351], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1047], [1071, 1158], [1243, 1620], [1632, 1961], [2049, 2136], [2145, 2578], [2596, 4428], [4479, 5351], [5360, 5397], [188, 443], [468, 851], [908, 1047], [1071, 1961], [2049, 4428], [4479, 5351], [188, 652], [692, 1021], [1021, 2186], [2350, 4428], [4479, 5351], [188, 652], [692, 851], [908, 1047], [1071, 1158], [1243, 1531], [1582, 1961], [2049, 2186], [2350, 2578], [2596, 4742], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1104], [1120, 1158], [1243, 1531], [1582, 1961], [2049, 2186], [2350, 4428], [4479, 5351], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1104], [1120, 1531], [1582, 1961], [2049, 4428], [4479, 5202], [188, 316], [188, 316], [346, 443], [468, 652], [692, 1104], [1120, 2186], [2350, 4428], [4479, 5202], [5360, 5397], [188, 652], [692, 1047], [1071, 1620], [1632, 2578], [2596, 3353], [3442, 4428], [4827, 5351], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1047], [1071, 1158], [1243, 1531], [1582, 1961], [2049, 2186], [2350, 2578], [2596, 4428], [5219, 5314], [188, 851], [908, 1104], [1120, 1620], [1632, 2089], [2106, 2186], [2350, 2578], [2596, 4531], [5360, 5397], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1047], [1071, 1158], [1243, 1531], [1582, 1961], [2049, 2136], [2145, 2578], [2596, 4428], [5360, 5397], [188, 316], [346, 851], [908, 1158], [1243, 1531], [1582, 2578], [2596, 4428], [5360, 5397], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1047], [1071, 1158], [1243, 1531], [1582, 1961], [2049, 2136], [2145, 2578], [2596, 4428], [4479, 5351], [188, 316], [346, 443], [468, 652], [692, 851], [908, 1104], [1120, 1158], [1243, 1620], [1632, 2089], [2106, 2186], [2350, 4428]], \"sentences\": [\"He took out cutting board\", \"He took out knife\", \"He took out plate\", \"He took out leek\", \"He washed leek\", \"He cut off bottom of leek\", \"He rewashed leek\", \"He cut off top of leak\", \"He diced leek\", \"He put leek on plate\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person takes the leeks  from the pantry.\", \"The person washes the leeks in the sink.\", \"The person cuts off the roots then removes the outer sheaf of the leeks.\", \"The person washes the leeks in the sink.\", \"The person chops the leeks on the cutting board.\", \"The person scoops the chopped leeks on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person takes a stalk of leeks from the pantry.\", \"The person washes the leeks in the sink.\", \"The person removes the outer sheaves and washes the leeks in the sink.\", \"The person chops off the top of the leeks on the cutting board and places them on the plate.\", \"The person cuts the leeks in half lengthwise.\", \"The person chops one halved leek.\", \"The person chops the second halved leek.\", \"The person removes the tops of the leeks from the plate and scoops the chopped leeks onto it.\", \"He gets a knife and cutting board.\", \"He gets a plate and the leeks.\", \"He rinses the leeks.\", \"He removes the unwanted portions.\", \"He chops the leeks.\", \"He puts the leeks on a plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a leek.\", \"The person rinses the leek.\", \"The person cuts off the root of the leek.\", \"The person peels off some of the leek's leaves.\", \"The person rinses the leek again.\", \"The person cuts off the rest of the leaves.\", \"The person chops up the leek.\", \"The person puts the chopped leek on the plate.\", \"The man grabs a cutting board.\", \"The man grabs a knife.\", \"The man grabs a plate.\", \"The man grabs a leek.\", \"The man rinses the leek.\", \"The man cuts the root off of the leek.\", \"The man peels a few leaves off of the leek.\", \"The man rinses the leek again.\", \"The man cuts off the remaining leaves.\", \"The man cuts the leek in half the long way.\", \"The man chops both halves into nice thin pieces.\", \"The man puts the chopped pieces on the plate.\", \"The man completes his assigned task.\", \"He gets a cutting board and knife.\", \"He gets a plate and the leeks.\", \"He washes the leeks.\", \"He removes some leaves and rinses it again.\", \"He chops the leeks.\", \"He puts the leeks on a plate.\", \"Preparer grabs a cutting board, chef knife and plate.\", \"Preparer grabs leek from refrigerator and rinses it.\", \"Preparer trims the leek at top and bottom\", \"Preparer cuts leek down the center, long ways, and chops both halves into small pieces.\", \"Preparer transfers chopped leeks onto plate.\", \"The man set a cutting board, knife, and a white plate on the counter.\", \"He takes out fresh leeks from a cabinet.\", \"He washes the leeks in the sink.\", \"He sets the leeks on the cutting board and cuts off the tip.\", \"He pulls off several leafs from the leeks and sets them aside.\", \"He takes the leeks back to the sink an rinses it in the water.\", \"He cuts off the leaves of the leeks and places the leeks on the cutting board.\", \"He cuts the leeks in halves and begins to chop the leeks in tiny pieces.\", \"He places the chopped leeks on the white plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a leek.\", \"The person rinses the leek.\", \"The person cuts off the leek's roots.\", \"The person peels off some of the leek's leaves.\", \"The person rinses the leek again.\", \"The person cuts off the rest of the leek's leaves.\", \"The person chops up the stalk of the leek.\", \"The person puts the pieces of leek on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet\", \"The person takes the leeks from the pantry.\", \"The person washes the leeks  in the sink.\", \"The person cuts off the roots and then peels away some sheaves.\", \"The person again washes the leeks in the sink.\", \"The person chops the leeks on the cutting board.\", \"The person sets the chopped leeks on the plate.\", \"Person walks to the counter.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets a plate from the cupboard.\", \"The person gets a leek from a cupboard and washes it.\", \"The person removes roots and outer leaves and rewashes the leek.\", \"The person chops the leek.\", \"The person places the chopped leek onto the plate.\", \"The person gathers the last bits of leek and steps away from the table.\", \"the person retrieves a cutting board, knife and a plate\", \"the person get a leek out of the refrigerator and then washes it off.\", \"the person takes the knife and cuts off the roots of the leek and removes the outer leaves of the leek and washes it off.\", \"the person the returns the leek to the cutting board and slices it length wise.\", \"the person then finely chops the leek and places it aside.\", \"the person then finely chops the other half of the leek.\", \"the person then puts the chopped leak on the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a leek.\", \"The person rinses the leek.\", \"The person cuts off the roots of the leek.\", \"The person peels off some of the leek's leaves.\", \"The person rinses the leek again.\", \"The person cuts off the rest of the leaves.\", \"The person slices the leek in half lengthwise.\", \"The person cuts each half of the leek into small pieces.\", \"The person puts the pieces of leek on the plate.\", \"The man gets a cutting board, knife, plate, and green onion.\", \"The man washes the green onion.\", \"The man cuts off the bottom and peals the green onion.\", \"The man washes the green onion again.\", \"The man cuts the top off of the green onion.\", \"The man cuts the green onion in half, the long way.\", \"The man chops up both halves of the green onion.\", \"The man places the chopped green onion onto the plate.\", \"The person gets out a cutting board.\", \"The person gets out a large chef's knife.\", \"The person gets out a dinner plate.\", \"The person gets out a leek.\", \"The person washes a leek.\", \"The person cuts off the root end of the leek.\", \"The person peels off the outer leaves of the leek.\", \"The person rinses the leek.\", \"The person chops off the dark green leaves of the leek.\", \"The person chops the leek in half lengthwise.\", \"The person dices the leek.\", \"The person moves the diced leek from the cutting board to the plate.\", \"The man retrieves a cutting board from the cabinet.\", \"The man retrieves a leek from the cabinet and walks it to the sink.\", \"The man washes the leek and cuts off the end.\", \"The man peels off the shell of the leek.\", \"The man slices the leek down the center to make two stems.\", \"The man dices the leek on the cutting board.\", \"The man places the diced leek on a plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a leek.\", \"The person rinses  the leek.\", \"The person cuts off the bottom of the leek.\", \"The person peels off some of the leek's leaves.\", \"The person rinses the leek again.\", \"The person cuts off the rest of the leaves.\", \"The person slices the leek in half lengthwise.\", \"The person chops up each half of the leek.\", \"The person puts the pieces of leek on the plate.\", \"He took out cutting board\", \"He took out knife\", \"He took out plate\", \"He took out leek\", \"He washed leek\", \"He cut off bottom of leek\", \"He took out leaves\", \"He washed leek\", \"He cut off top of leek\", \"He diced up leek\"], \"fps\": 29.4, \"num_frames\": 5428}, \"s17-d42.avi\": {\"timestamps\": [[223, 660], [740, 1314], [1323, 2602], [2608, 4162], [4333, 6795], [6795, 7666], [7713, 9293], [9314, 15242], [223, 660], [740, 1390], [1446, 2859], [2955, 4477], [4765, 7666], [7713, 12923], [12949, 13848], [14249, 14362], [14447, 15242], [223, 597], [606, 1875], [1892, 2859], [2955, 4162], [4333, 4959], [4986, 7666], [7713, 9529], [11346, 15242], [223, 1875], [1892, 2859], [2955, 4477], [4765, 5145], [5271, 7780], [8801, 11643], [12242, 13085], [13292, 13848], [14249, 15242], [223, 419], [452, 1505], [1629, 1875], [1892, 2602], [2608, 4477], [4765, 5145], [5271, 6873], [7166, 7666], [7713, 9529], [11346, 11643], [12242, 13085], [13292, 13640], [13667, 13848], [14249, 15242], [223, 1505], [1629, 1875], [1892, 2859], [2955, 4477], [4765, 5145], [5271, 5752], [5956, 6873], [7166, 7780], [8801, 9529], [11346, 13085], [13292, 14571], [14644, 15242], [223, 419], [452, 1072], [1264, 1505], [1629, 1875], [1892, 2859], [2955, 3111], [3180, 4162], [4333, 4477], [4765, 5145], [5271, 5752], [5956, 6873], [7166, 7780], [8801, 9529], [11346, 13848], [14249, 15242], [223, 419], [452, 1505], [1629, 1875], [1892, 2859], [2955, 3111], [3180, 4477], [4765, 5752], [5956, 7666], [7713, 9529], [11346, 11643], [12242, 13085], [13292, 13640], [13667, 13848], [14249, 15242], [223, 1505], [1629, 2180], [2227, 3111], [3180, 3471], [3540, 6719], [6737, 7780], [8801, 9357], [9401, 9529], [11346, 15080], [223, 660], [740, 1390], [1446, 2859], [2955, 4162], [4333, 7666], [7713, 12874], [15084, 15242], [223, 419], [452, 1314], [1323, 2180], [2227, 2859], [2955, 4477], [4765, 5752], [5956, 6873], [7166, 7780], [8801, 9529], [11346, 13085], [13292, 13848], [12880, 15242], [223, 419], [452, 1505], [1629, 1875], [1892, 2859], [2955, 4477], [4765, 5145], [5271, 6873], [7166, 7780], [7166, 7780], [8801, 9529], [11346, 11643], [12242, 13085], [13292, 13848], [14249, 14362], [14249, 15242], [223, 419], [452, 1505], [1629, 1875], [1892, 2859], [2955, 4477], [4765, 6873], [7166, 7780], [8801, 9529], [11346, 13009], [13048, 13640], [13667, 13848], [14447, 15242], [223, 1505], [1629, 2859], [2955, 4477], [4765, 5145], [5271, 6795], [6795, 7780], [8801, 9293], [9314, 12598], [12610, 14362], [14249, 15242], [14249, 15242], [223, 419], [452, 1072], [1264, 1390], [1446, 1505], [1629, 1875], [1892, 2859], [2955, 4162], [4333, 5145], [5271, 6795], [6795, 7599], [7599, 9293], [9314, 12923], [12949, 13640], [14447, 15242], [223, 1072], [1264, 1390], [1446, 2859], [2955, 4162], [4333, 7666], [7713, 9357], [9401, 12923], [13667, 15242], [223, 419], [452, 597], [606, 1072], [1264, 1390], [1446, 1505], [1629, 1875], [1892, 2602], [2608, 3111], [3180, 4162], [4333, 4477], [4765, 5145], [5271, 5596], [5610, 6795], [6795, 7666]], \"sentences\": [\"Get a broccoli crown, a pot, and a lid.\", \"Fill the pot with water, and put it on the stove top.\", \"Wash the broccoli crown.\", \"Cut the head of the broccoli crown into smaller broccoli pieces.\", \"Add salt to the water in the pot.\", \"Add the broccoli to the boiling water in the pot.\", \"Season the broccoli while it's cooking.\", \"Serve the cooked broccoli onto a plate.\", \"He gets out the broccoli and a pot.\", \"He put water in the pot and turns on the stove.\", \"He rinses he broccoli.\", \"He cuts off the heads and discards the stalk.\", \"He puts the broccoli in the water.\", \"He seasons the water.\", \"He gets out a plate and a strainer.\", \"He turns off the heat.\", \"He removes the broccoli.\", \"The man begins by selecting a broccoli crown from the fridge.\", \"Next, he takes a pot out and fills it halfway with water placing it on the stove top with the lid on.\", \"Next, he rinses the broccoli with water and then places it on the cutting board.\", \"Using a knife, he trims the broccoli from the stalk.\", \"Next, he trims the broccoli into smaller pieces of roughly equal size.\", \"After adding salt to the water, the man places the broccoli into the pot with water.\", \"Next, the man retrieves a jar from the cupboard and then adds some of the juice from the jar into the broccoli.\", \"After the broccoli has boiled, the man retrieving the broccoli from the pot and places it onto a plate.\", \"Prepare all necessary tools and ingredients. In this case, broccoli, cutting board, and pot of water set to boil.\", \"Remove broccoli from packaging and rinse.\", \"Separate florets from stem, then discard stem.\", \"Separate larger florets to uniform size.\", \"Add salt to water to taste, then add broccoli.\", \"Cover pot and bring to boil. (Roughly 3 minutes)\", \"Once boiling, you may add more seasoning to taste.\", \"Prepare dishes and utensils for serving.\", \"After boiling for roughly 2-3 more minutes, broccoli is ready to be served.\", \"The person gets out some broccoli.\", \"The person gets out a pot, fills it with water, puts it on the stove and turns it on.\", \"The person gets out a wooden plate.\", \"The person rinses the broccoli.\", \"The person cuts up the broccoli and throws away the stalk.\", \"The person cuts a few big pieces of broccoli into smaller ones.\", \"The person adds salt to the water.\", \"The person puts the broccoli in the water to cook.\", \"The person adds something I don't recognize to the broccoli.\", \"The person waits for the broccoli to cook.\", \"The person adds pepper to the broccoli.\", \"The person gets out a plate.\", \"The person gets out a plastic spoon.\", \"The person puts the broccoli on the plate.\", \"He gets a piece of broccoli from the refrigerator and gets a pot out which he fills with water and places on the stove.\", \"He turns on the stove and takes out a cutting board from the drawer.\", \"He tears the plastic cover off the broccoli and washes it in the sink, shaking it to dry it off.\", \"He uses the knife to cut the crowns off of the broccoli stem and throws the stem into the trash can.\", \"He cuts the pieces of broccoli into smaller pieces.\", \"He checks on the pot of boiling water, washes his hand and dries it with a towel.\", \"He shakes some salt into the pot of water.\", \"He uses the knife to push the pieces of broccoli into the pot and then puts the top onto the pot.\", \"He gets out some spices? from the cabinet and pours some on top of the broccoli before placing it back in the cabinet.\", \"He waits for the broccoli to cook and sprinkles some pepper on top.\", \"He gets out a knife and a rounded spatula and takes the cover off the broccoli.\", \"He scoops up the broccoli and puts it on the plate.\", \"Broccoli is removed from the refrigerator.\", \"A pot is selected and filled with water.\", \"The pot is placed on the stove and started.\", \"The person removes a cutting board.\", \"The broccoli is opened and washed.\", \"The person removes a knife.\", \"The broccoli florets are cut away from the stem.\", \"The stem is discarded.\", \"The pieces are cut smaller.\", \"The person washes and dries their hands.\", \"Salt is added to the water.\", \"The pieces are placed in the pot and covered.\", \"More seasoning is added.\", \"A dish and slotted spoon are removed.\", \"The broccoli is ready and placed on the dish.\", \"The person gets out some broccoli.\", \"The person gets out a pot, fills it with water, puts it on the stove and turns it on.\", \"The person gets out a wooden plate.\", \"The person rinses the broccoli.\", \"The person gets out a knife.\", \"The person cuts up the broccoli and throws away the stem.\", \"The person rinses his hands.\", \"The person adds salt to the water and puts in the broccoli.\", \"The person adds something I don't recognize to the broccoli.\", \"The person waits while the broccoli cooks.\", \"The person adds pepper to the broccoli.\", \"The person gets out a plate.\", \"The person gets out a plastic spoon.\", \"The person puts the broccoli on the plate.\", \"Fill a pan with water and start to heat it up.\", \"Take the broccoli out of its bag and wash.\", \"Take out a cutting board and a knife.\", \"Cut off the broccoli from the stem.\", \"Put some salt into the water.\", \"Put the broccoli into the pan of water, placing a lid on top.\", \"Put a small amount of seasoning into the pan.\", \"Wait for broccoli to cook.\", \"Scoop out broccoli onto clean plate.\", \"Get a broccoli crown and a pot.\", \"Put water in the pot and put the pot on the burner.\", \"Wash the broccoli.\", \"Using a cutting board, remove the broccoli pieces from the stem.\", \"Add broccoli to the pot of water.\", \"Season the broccoli while it is boiling.\", \"Put the broccoli on a plate.\", \"He goes to refrigerator and takes out broccoli and places it on the counter.\", \"He goes to the drawer and takes out a pot and fills it with water and places it on the stove.\", \"He goes to the drawer and takes out a cutting board and then removes and disposes of the wrapper on the broccoli.\", \"He takes the broccoli to the sink and rinses it then shakes it dry.\", \"He opens the drawer and gets a knife and cuts up broccoli and then throws away the stem.\", \"He cuts the broccoli into smaller pieces and washes and dries his hands while he waits.\", \"He adds salt to the pots of water then puts the salt away.\", \"He puts the broccoli pieces into the pot then covers the pot with the lid.\", \"He adds more spices to the pot.\", \"After he wait awhile he adds more spices to the pot.\", \"He goes to the cupboard and get a plate and then the drawer for a utensil.\", \"He scoops out the broccoli and puts it on the plate.\", \"The person gets broccoli out of the fridge.\", \"The person gets a medium saucepan and fills it with two inches of water and puts in on the stove to boil.\", \"The person gets out a cutting board.\", \"The person unwraps the broccoli and washes it thoroughly.\", \"The person gets a knife and cuts the flowerettes off the stalk and throws the stalk away.\", \"The person cuts the florets into smaller pieces.\", \"The person checks the water, then decides to add salt to make it boil faster.\", \"The person adds the broccoli to the pot.\", \"the person waits for the water to boil.\", \"The person gets something out of the cupboard, adds it to the broccoli (pickle juice??) and then puts it back.\", \"The person wait and waits and waits while the broccoli is cooking.\", \"The person adds some pepper?? to the broccoli.\", \"The person gets out a white plate and pasta scooper.\", \"The person waits a few moments longer for the broccoli to be done and turns off the burner.\", \"The person scoops the broccoli out of the pot and onto the plate.\", \"He goes to the refrigerator and takes out some broccoli.\", \"He goes to the drawer and takes out a pot and fills with water and then places it on the stove.\", \"He goes to the drawer and takes out a cutting board.\", \"He unwraps the broccoli and disposes of the wrapper and then rinses it in the sink.\", \"He goes to the drawer and gets out a knife and chops the broccoli and then throws away the stem.\", \"He re-chops the broccoli, checks the water, washes and dries his hands, and then adds salt to the water.\", \"He then adds the broccoli to the pot and recovers the pot.\", \"He goes to the cabinet and gets some spices and adds it to the pot.\", \"He waits for the broccoli to cook and then adds some more spices to the pot.\", \"He goes to the cabinet and gets out a plate.\", \"He goes to the drawer and gets out a ladle.\", \"He scoops out the broccoli and places it on the plate.\", \"fill pan with water, turn on stove, cover pan\", \"gather cutting board, broccoli, rinse under running water\", \"cut chunks of florets from broccoli, discard stem\", \"cut broccoli florets into smaller, bite size pieces\", \"while waiting for water to boil, season with salt\", \"place broccoli in pan and cover\", \"check on broccoli, add seasoning, recover\", \"check on broccoli, add seasoning again, recover pot\", \"turn off stove\", \"scoop out broccoli with slotted spoon onto platter\", \"allow to cool, all done!\", \"The person got out the broccoli.\", \"The person got out a pot and put water in it.\", \"The person turned the stove on.\", \"The person covered the pot.\", \"The person got out a cutting board.\", \"The person rinsed the broccoli.\", \"The person cut the florets off the stem.\", \"The person cut up some of the florets.\", \"The person seasoned the water.\", \"The person put the broccoli in the pot.\", \"The person seasoned the broccoli.\", \"The person checked the broccoli and seasoned it again.\", \"The person got out a plate.\", \"The person took the broccoli out of the pot.\", \"Fill a pot with water.\", \"Place the pot on the stove and heat it to a simmer.\", \"Rinse the broccoli with water.\", \"Cut the florets from the broccoli stem.\", \"Add some salt and the florets to the boiling water.\", \"Add a dash of pepper to the boiling water.\", \"Add some more salt.\", \"Once the broccoli is tender remove it from the boiling water, and put it on a serving dish.\", \"He took out broccoli\", \"He took out pot\", \"He put water in pot\", \"He turned on stove\", \"He put lid on pot\", \"He took out cutting board\", \"He washed broccoli\", \"He took out knife\", \"He cut off tops of broccoli\", \"He threw away stem\", \"He cut up broccoli\", \"He washed hands\", \"He put salt in water\", \"He put broccoli in water\"], \"fps\": 29.4, \"num_frames\": 15585}, \"s23-d46.avi\": {\"timestamps\": [[198, 387], [440, 851], [940, 1020], [1041, 1327], [1430, 2767], [2919, 3816], [3828, 5514], [5514, 6208], [6354, 10266], [198, 387], [440, 589], [653, 851], [940, 1327], [1430, 5870], [5979, 9243], [9378, 10266], [198, 589], [653, 1020], [1041, 1327], [1430, 5254], [5304, 9243], [10339, 10764], [198, 293], [313, 387], [313, 387], [440, 851], [940, 1020], [1041, 1327], [1430, 2767], [2919, 3816], [3828, 4470], [4474, 5220], [198, 387], [440, 589], [653, 851], [940, 1078], [1186, 1566], [1784, 2122], [2220, 3295], [5229, 5514], [5514, 6208], [6354, 7015], [7063, 9243], [9378, 10266], [198, 387], [440, 589], [653, 851], [3332, 5254], [5304, 6208], [6354, 9243], [9378, 10266], [10339, 10764], [198, 293], [313, 387], [440, 589], [653, 851], [940, 1020], [1041, 1327], [940, 5870], [5979, 6208], [6354, 9243], [9378, 10266], [198, 293], [313, 387], [440, 589], [653, 851], [940, 1020], [1041, 1327], [1430, 6055], [6073, 6208], [6354, 9243], [9378, 10266], [9378, 10764], [198, 387], [440, 851], [1430, 5803], [5803, 6208], [6354, 9243], [9378, 10266], [10339, 10764], [198, 387], [440, 851], [940, 5870], [5979, 6208], [6354, 9243], [9378, 10266], [10339, 10764], [198, 387], [440, 851], [940, 1327], [940, 5514], [5514, 10266], [198, 293], [313, 387], [440, 589], [653, 851], [940, 1020], [1041, 1327], [1430, 5836], [5840, 6208], [6354, 9243], [9378, 10266], [10339, 10764], [198, 387], [440, 589], [653, 851], [940, 1020], [1041, 1566], [1430, 5514], [5514, 6208], [6354, 9243], [9378, 10266], [10339, 10413], [10413, 10764], [198, 293], [313, 387], [440, 851], [940, 1078], [1186, 2739], [1784, 6208], [1784, 6208], [6354, 9243], [9378, 10266], [198, 589], [653, 851], [940, 1078], [1186, 1327], [1430, 1566], [1784, 2767], [2739, 5254], [5304, 9243], [9378, 10266], [10339, 10462], [198, 387], [440, 589], [653, 851], [940, 1020], [1041, 1834], [1860, 2122], [2220, 2739], [2739, 3295], [3332, 3851], [2919, 5563], [5580, 6208], [6354, 7015], [7063, 9243], [9378, 10266], [10489, 10764], [198, 387], [440, 589], [653, 851], [940, 3295], [3332, 3851], [3877, 4516], [3877, 5514], [5514, 5836], [5840, 6055], [6073, 6208], [6354, 9243], [9378, 10266], [10339, 10462], [10339, 10764]], \"sentences\": [\"The man takes out a cutting knife and a cutting board.\", \"He takes out a plate and pineapple from the cupboard.\", \"He cuts the stem off of the pineapple.\", \"He cuts the pineapple down the middle on the cutting board.\", \"He cuts one side of the pineapple in half again, then removes the skin with the cutting knife.\", \"He repeats with the other part of the pineapple.\", \"He repeats with the other half of the pineapple.\", \"He removes peels from the cutting board and washes cutting board under sink water.\", \"He cuts the remaining chunks into slices and puts them on the plate.\", \"He gets out a cutting board and a knife.\", \"He gets a plate.\", \"He retrieves a pineapple.\", \"He cuts the top off and splits in it half.\", \"He removes the outside of each section of pineapple.\", \"He chops the pineapple.\", \"He puts the pineapple on the plate.\", \"The man gets a cutting board, a knife, and a plate.\", \"The man slices the top off.\", \"The man slices it in half.\", \"He removes the outer skin.\", \"The man slices the pineapple pieces into smaller ones.\", \"The man places the pineapple onto the plate and washes up.\", \"He took out cutting board\", \"He took out knife\", \"He took out plate\", \"He took out pineapple\", \"He cut off top of pineapple\", \"He cut pineapple in half\", \"He peeled one piece of pineapple\", \"He peeled second piece of pineapple\", \"He peeled third piece of pineapple\", \"He peeled fourth piece of pineapple\", \"The boy takes out the cutting board and knife and place them on the countertop.\", \"The boy takes out a plate and places it on the countertop.\", \"The boy gets out the pineapple and places it on the cutting board.\", \"The boy cuts off the stem of the pineapple.\", \"The boy cuts the pineapple in half vertically and then cuts it in half vertically again.\", \"The boy cuts the ends off of one quarter of the pineapple.\", \"The boy cuts the skin and center section off of the quarter of pineapple.\", \"The boy cuts the ends, skin and center section from the remaining pieces of pineapple.\", \"The boy rinses the cutting board.\", \"The boy takes one quarter of the pineapple and cuts it in half vertically. He then slices it horizontally into small pieces.\", \"The boy cuts the remaining three quarters of pineapple in the same fashion.\", \"The boy places the cut up pineapple on the plate.\", \"He gets a cutting board and knife.\", \"He gets a plate.\", \"He gets a pineapple.\", \"He quarters the pineapple and removes the skin from each quarter.\", \"He rinses the cutting board.\", \"He chops the pineapple.\", \"He puts the pineapple on a plate.\", \"He cleans the knife.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a pineapple.\", \"The person cuts off the top of the pineapple.\", \"The person cuts the pineapple in half.\", \"The person cuts the halves into quarters and trims the top, bottom, rind and inner corner from each one.\", \"The person rinses the cutting board.\", \"The person chops up the pineapple quarters.\", \"The person puts the pineapple pieces on the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a pineapple.\", \"The person cuts off the top of the pineapple.\", \"The person cuts the pineapple in half.\", \"The person cuts the halves into quarters, and trims off the top, bottom, outside and inside corner of each one.\", \"The person rinses the cutting board.\", \"The person chops up the pineapple.\", \"The person puts the pineapple pieces on the plate.\", \"The person rinses the knife.\", \"He gets a cutting board and a knife.\", \"He gets a plate and the pineapple.\", \"He removes the skin from the pineapple.\", \"He rinses the cutting board.\", \"He chops the pineapple.\", \"He puts the pineapple on the plate.\", \"He cleans the knife.\", \"He goes to drawer and takes out a cutting board and knife.\", \"He goes to the cupboards and takes out a plate and a pineapple.\", \"He cuts and peels the pineapple and places the pieces on the plate.\", \"He washes the cutting board in the sink.\", \"He takes the pineapple pieces and chops them into small cubes.\", \"He takes the pineapple cubes and puts them on the plate.\", \"He washes his hands and then the knife.\", \"He gets a cutting board and knife.\", \"He gets a plate and the pineapple.\", \"He cuts off the top of it and cuts it in half.\", \"He removes the skin from the pineapple.\", \"He chops the pineapple and puts it on a plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a pineapple.\", \"The person cuts off the top of the pineapple.\", \"The person cuts the pineapple in half.\", \"The person cuts each half of the pineapple into quarters and trims off the top, bottom, rind and inside corner of each one.\", \"The person rinses the cutting board.\", \"The person chops up the pineapple.\", \"The person puts the pieces of pineapple on the plate.\", \"The person rinses the knife.\", \"The person takes out a knife and a cutting board.\", \"The person gets a plate from the cupboard.\", \"The person gets a pineapple from the pantry.\", \"The person cuts off the tops leaves of the pineapple.\", \"The person cuts the pineapple into thirds.\", \"The person carefully trims off the skin of the pineapple slices and places them on the plate.\", \"The person rinses off the cutting board of bits of peel.\", \"The person chops the strips of pineapple on the cutting board.\", \"The person scoops the chopped pineapple onto the plate.\", \"The person rinses off his hands.\", \"The person rinses off the knife.\", \"He took out cutting board\", \"He took out knife\", \"He took out pineapple\", \"He cut off top of pineapple\", \"He took off pineapple skin\", \"He sliced pineapple\", \"He washed cutting board\", \"He diced up pineapple\", \"He put pineapple on plate\", \"The man gathers a cutting board and knife from the drawer and a plate from the cabinet.\", \"Get pineapple from cabinet and place on cutting board.\", \"Cut off top of pineapple with knife.\", \"He stands pineapple up on cutting board and cuts the pineapple in half with the knife right down the center.\", \"He takes one half of the pineapple and cuts that half down the center into two pieces.\", \"He takes one of the halves and cuts of the skin of the pineapple.\", \"He now has four chunks which he uses the knife to cut off the skin of all four chunks.\", \"   He takes each of the four chunks seperately and slices each one down the center, then goes on to dice the chunks.\", \"He places the diced pieces of the pineapple onto a plate from the cutting board.\", \"He washes his hand before grabbing the knife.\", \"The person removes a cutting board and knife from the drawer, and places them on the table.\", \"The person removes a dish from a cupboard and places it on the table.\", \"The person gets a pineapple from a different cupboard and places it on the board.\", \"The person chops off the top of the pineapple with the knife.\", \"The person chops the pineapple in half, then one of the halves into quarters, and removes all but one quarter from the board.\", \"The person cuts the ends off of the quarter.\", \"The person slices the skin off of the quarter.\", \"The person slices the middle portion of the pineapple away from the quarter and places it in the dish.\", \"He repeats all this with another quarter.\", \"And repeats with the remaining two quarters.\", \"He washes off the board in the sink a bit and puts it back on the table.\", \"He takes a quarter from the dish to the board, slices it in half lengthwise, and dices each half of the quarter.\", \"He repeats with the three remaining quarters.\", \"He picks up all the chopped pieces, a little at a time, and places them in the dish.\", \"He washes his hands, the knife, and the board.\", \"He opened the drawer and took out a cutting board and knife.\", \"He walked to the cabinets, took out a plate and placed it on the counter.\", \"He walked to the pantry, took out a Pineapple, and placed it on the cutting board.\", \"He started to cut the pineapple and placed a quarter piece on the plate.\", \"He cut the 2nd quarter and placed that on the plate as well.\", \"He cut and placed the 3rd quarter on the plate.\", \"He cut and placed the final quarter of the pineapple onto the plate.\", \"He removed half of the pineapple to remove the cores and then replaced them back on the plate.\", \"He put all the pineapple scraps in a pile\", \"He washed the cutting board.\", \"He cut the quarters in half and diced all of the pineapple.\", \"He placed the diced pineapple on the plate.\", \"He washed his hands.\", \"He washed the knife.\"], \"fps\": 29.4, \"num_frames\": 10803}, \"s22-d43.avi\": {\"timestamps\": [[234, 821], [867, 2136], [2142, 2410], [2459, 2876], [2894, 3175], [234, 488], [517, 660], [677, 821], [867, 2136], [2142, 2410], [2459, 2658], [2697, 2876], [2894, 3175], [234, 488], [517, 821], [867, 2266], [2274, 2410], [2459, 2658], [2697, 3175], [234, 619], [619, 660], [677, 2212], [2215, 2410], [2459, 2724], [2794, 3175], [234, 488], [234, 488], [517, 660], [677, 821], [867, 2136], [2142, 2410], [2459, 2658], [2697, 2724], [2794, 3175], [234, 488], [517, 821], [867, 2136], [2142, 2410], [2459, 2511], [2561, 2658], [2697, 2724], [2794, 3175], [234, 488], [517, 619], [619, 821], [867, 2212], [2215, 2410], [2459, 2658], [2697, 2876], [2894, 3175], [234, 488], [517, 619], [619, 821], [867, 2136], [2142, 2410], [2459, 2724], [2794, 2876], [2894, 3175], [234, 488], [517, 619], [619, 821], [867, 2212], [2215, 2410], [2459, 2658], [2697, 2876], [2894, 3175], [234, 488], [517, 619], [619, 821], [867, 2136], [2142, 2410], [2459, 2658], [2697, 2876], [2894, 3175], [234, 488], [517, 660], [677, 821], [867, 2410], [2459, 2876], [2894, 3175], [234, 660], [677, 2266], [2274, 2410], [2459, 2658], [2697, 2876], [2894, 3175], [234, 488], [517, 660], [677, 821], [867, 2136], [2142, 2410], [2459, 2658], [2697, 3175], [234, 488], [517, 660], [677, 821], [867, 2306], [2352, 2410], [2459, 2724], [2794, 2876], [2894, 3175], [234, 821], [867, 2136], [2142, 2410], [2459, 2724], [2794, 3175], [234, 821], [867, 2136], [2142, 2724], [2794, 2876], [2894, 3175], [234, 821], [867, 2306], [2352, 2724], [2794, 3175], [2794, 3175]], \"sentences\": [\"The person gets out a potato, a cutting board, and a peeler.\", \"The person peels the skin off the entire potato.\", \"The person rinses off the potato.\", \"The person cuts the potato in half lengthwise.\", \"The person cuts each half into quarters.\", \"She took out potato\", \"She took out cutting board\", \"She took out peeler\", \"She peeled potato\", \"She washed potato\", \"She threw away peel\", \"She took out knife\", \"She cut potato\", \"She gets a potato.\", \"She gets a cutting board and a peeler.\", \"She peels the potato.\", \"She rinses the potato.\", \"She discard the peelings.\", \"She chops the potato.\", \"A woman sets a potato onto the counter.\", \"The woman sets a cutting board down next to the potato.\", \"The woman peels the potato.\", \"The woman rinses the potato in the sink.\", \"The woman throws away the peels from the cutting board and sets the rinsed potato onto the cutting board.\", \"The woman halves each potato and cuts each half into quarters.\", \"The person takes a potato out of the cupboard.\", \"The person puts the potato on the counter top.\", \"The person gets a wooden chopping board out of a drawer.\", \"The person selects a knife from another drawer.\", \"The person peels the potato.\", \"The person rinses the peeled potato in water.\", \"The person throws the potato peelings into the trash.\", \"The person places the peeled potato onto the chopping board.\", \"The person cuts the potato into pieces.\", \"Woman walks to refrigerator, pulls out a potato and places on the counter.\", \"Also, she pulls out a cutting board and a cutting knife.\", \"Next, she picks up the knife and begins to peel the potato on the cutting board.\", \"She goes to the sink and rinses the potato.\", \"She leaves the potato in the sink.\", \"She throws away the potato peels while holding the knife and cutting board.\", \"She places the knife in the sink and places the potato and cutting board back on the counter.\", \"Next, she pulls out another small knife and cuts the potato into pieces.\", \"The person takes a small potato from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a peeler from the drawer.\", \"The person peels the potato over the cutting board.\", \"The person washes the potato in the sink.\", \"The person throws the peels into the wastebin.\", \"The person takes out a knife from the drawer.\", \"The person chops the potato on the cutting board.\", \"The person takes a small potato from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a peeler from the drawer.\", \"The person peels the potato with the peeler over the cutting board.\", \"The person washes the peeled potato in the sink.\", \"The person throws the peels into the wastebin.\", \"The person takes out a knife from the drawer.\", \"The person chops the potato on the cutting board.\", \"The person takes a small potato from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a peeler from the drawer.\", \"The person peels the potato with the peeler over the cutting board.\", \"The person washes the peeled potato in the sink.\", \"The person throws the peels into the wastebin.\", \"The person takes out a knife from the drawer.\", \"The person chops the potato on the cutting board.\", \"The person takes a potato from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a peeler from the drawer.\", \"The person peels the potato with the peeler over the cutting board.\", \"The person washes the peeled potato in the sink.\", \"The person throws the peels into the wastebin.\", \"The person takes out a knife from the drawer.\", \"The person chops the potato on the cutting board.\", \"Lady takes potato from pantry.\", \"Woman takes out cutting board.\", \"Woman peels potato.\", \"Woman washes potato.\", \"Woman places peeled potato on cutting board.\", \"Woman cuts potato.\", \"The person places a potato and a cutting board on the counter.\", \"The person removes the skin of the the potato using a vegetable peeler.\", \"The person rinses the potato.\", \"The person discards the potato skin.\", \"The person cuts the potato in half axially using a paring knife.\", \"The person cuts the potato halves into quarters with one axial and one lateral slice each.\", \"The person takes a potato out of the cupboard.\", \"The person takes a chopping board out of the drawer.\", \"The person takes a knife out of the drawer.\", \"The person peels the skin off the potato.\", \"The person washes the peeled potato.\", \"The person discards the potato peel.\", \"The person cuts the potato into smaller pieces.\", \"The person gets out a potato.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person peels the potato.\", \"The person rinses the potato.\", \"The person throws the peels away.\", \"The person gets out another knife.\", \"The person cuts up the potato.\", \"The woman sets up her station by getting a potato, a small cutting board, and a peeler.\", \"The woman peels the potato.\", \"The woman rinses the potato off.\", \"The woman throws away the peels.\", \"With a small knife the woman cuts the potato into large pieces.\", \"The person gets a potato, a cutting board and a vegetable peeler.\", \"The person uses the vegetable peeler to peel all of the skin off the potato.\", \"The person rinses the potato and discards the peels.\", \"The person gets a sharp knife and cuts the potato in half.\", \"The person cuts the halves of the potato into chunks approximately one-half-inch to one-inch thick.\", \"Take out a potato, a cutting board, and a peeler.\", \"Peel all of the skin off the potato.\", \"Rinse the peeled potato off in the sink and throw away the peel.\", \"Place the potato back on the cutting board and take out a small knife.\", \"Cut the potato in half lengthwise, then half these pieces in the middle.\"], \"fps\": 29.4, \"num_frames\": 3299}, \"s23-d31.avi\": {\"timestamps\": [[214, 342], [361, 485], [526, 918], [918, 1045], [1064, 1135], [1188, 1367], [1367, 1580], [1601, 1992], [2072, 2371], [2403, 3053], [214, 1135], [214, 1135], [214, 1135], [214, 1135], [1188, 3053], [1188, 3053], [214, 918], [918, 1135], [1188, 1580], [1601, 1992], [2072, 2371], [2403, 3053], [214, 918], [918, 1135], [1188, 1414], [1429, 1992], [2072, 2371], [2403, 2569], [2694, 3053], [214, 485], [526, 1135], [1188, 1819], [1837, 2569], [2694, 3053], [214, 918], [918, 1045], [1064, 1414], [1429, 1580], [1601, 1992], [2072, 3053], [214, 342], [361, 485], [526, 918], [918, 1135], [1188, 1992], [2072, 3053], [214, 918], [918, 1414], [1429, 1819], [1837, 1992], [2072, 3053], [214, 342], [361, 429], [429, 918], [918, 1135], [1188, 3053], [214, 342], [361, 429], [429, 918], [918, 1135], [1188, 1414], [1429, 3053], [214, 342], [361, 429], [429, 918], [918, 1580], [1601, 3053], [214, 485], [526, 918], [918, 1414], [1429, 1580], [1601, 1992], [2072, 2371], [2403, 2569], [2694, 2831], [2858, 3053], [214, 485], [526, 918], [918, 1135], [1188, 3053], [1188, 3053], [214, 1045], [1064, 1414], [1429, 1580], [1601, 1992], [2072, 3053], [214, 918], [918, 1045], [1064, 1367], [1367, 1580], [1601, 1992], [2072, 2371], [2403, 2569], [2694, 3053]], \"sentences\": [\"The person takes out a cutting board.\", \"The person took out a knife.\", \"The person took out a plate and the garlic bulb.\", \"The person took a clove of garlic.\", \"The person put the bulb back in the cupboard.\", \"The person removed the outer layer of the garlic.\", \"Using the flat side of the knife, the person hit the cloves to remove more skin.\", \"The person removed the skin/peel from each clove.\", \"The person cut the ends off of each clove.\", \"The person diced the garlic.\", \"The person stores unneeded garlic in the cabinet.\", \"The person retrieves a plate and garlic from the cabinet.\", \"The person places a knife onto the cutting board.\", \"The person retrieves a cutting board.\", \"The person prepares and chops garlic.\", \"This concludes demonstration.\", \"Gather your cutting board, knife, bowl and bulb of garlic on the counter.\", \"Take two cloves of garlic from the bulb and return the bulb to the pantry.\", \"Crush each clove of garlic with the flat side of your knife.\", \"Peel outer layer from garlic and discard it in the bowl.\", \"Cut off the ends of the cloves and discard in bowl.\", \"Chop by alternating cutting horizontally and vertically across the cloves until you reach the desired size for your chopped garlic.\", \"The person gathers a knive, a board, a garlic bulb, and a plate to get ready to prepare the garlic.\", \"The person removes one section from the garlic bulb and returns the remainder of the bulb to the cabinet.\", \"The person cleans the outer skin from two cloves of the garlic and places them on the board for further preparation.\", \"The person smashes the two cloves with the knife and removes the garlic's inner skin, which he places onto the plate.\", \"The person uses the knife to remove the inedible ends of the garlic cloves and places the cut ends on the plate.\", \"The person does a first rough chop of the garlic after lining them up on the board and then, using his finger, removes the garlic that has clung to the knife.\", \"The person continues to chop the garlic until it gets to the desired size and, once reached, removes any garlic that has stuck to the knife completing the task assigned.\", \"the person gets a cutting board and a sharp knife\", \"the person gets a plate\", \"the person smashes the Garlic on the cutting board with the knife\", \"the person cuts one end of the Garlic and discards\", \"the person slices and dices the Garlic\", \"He obtains a plate, a clove of garlic, a knife, and a cuttingboard.\", \"He separates a small amount of garlic from the rest of the clove.\", \"He breaks the smaller portion apart and moves two parts from it to the cuttingboard.\", \"He presses the garlic with the flat side of the knife.\", \"He peels the garlic partially with his fingers.\", \"He dices the garlic into much smaller pieces with the knife.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet and a clove of garlic from the pantry.\", \"The person takes a segment from the clove and returns the rest of the garlic to the pantry.\", \"The person peels the garlic and places the peel on the plate.\", \"The person chops the garlic on the cutting board.\", \"He obtains a large knife, a cuttingboard, a plate, and the garlic.\", \"He separates the garlic into smaller pieces, then places two of those pieces on the cuttingboard.\", \"He slices one piece of the garlic into smaller pieces.\", \"He breaks the garlic apart even more on the plate.\", \"He dices the larger pieces of garlic into much smaller pieces.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes a plate from the cabinet and a clove of garlic from the pantry.\", \"The person removes a clove from the garlic and returns the rest to the pantry.\", \"The person removes the peels from the garlic, sets them on the plate, and then chops the garlic on the cutting board.\", \"The person took out cutting board\", \"The person took out knife\", \"The person took out garlic\", \"The person put back unused garlic\", \"The person peeled the garlic\", \"The person diced the garlic\", \"Takes cutting board out of drawer.\", \"Takes knife out of drawer.\", \"Takes plate and garlic out of cabinet.\", \"Flattens garlic with knife.\", \"Chops up the garlic pieces.\", \"The person places a cutting board and sharp knife on the counter.\", \"The person selects a plate and clove of garlic from the cabinet.\", \"The person uses his fingers to break apart the garlic clove.\", \"The person taps each piece of garlic with the knife of the blade twice.\", \"The person peels each piece of garlic.\", \"The person trims each piece of garlic.\", \"The person begins to dice the garlic.\", \"The person continues to dice the garlic.\", \"The person finishes by chopping the garlic into a fine mince.\", \"The man enters the kitchen and gets a cutting board and knife from the cabinet.\", \" The man retrieves a plate and a garlic clove from a cabinet across the room.\", \"The man takes a half from the clove and returns the other half back to the cabinet.\", \"  The man takes the half of the clove and dices it thinly with a knife before putting the diced pieces on the plate.\", \"The man puts the knife back on the cutting board.\", \"He prepares a cuttingboard, a knife, a plate, and a clove of garlic.\", \"He breaks the garlic apart into smaller pieces on the plate.\", \"He uses the knife to press the garlic between it and the cuttingboard.\", \"He breaks the garlic apart more on to the plate and then puts the larger pieces back on to the cuttingboard.\", \"He dices the garlic into much smaller pieces and is finished.\", \"The person gets a cutting board, a sharp knife, a plate and a head of garlic.\", \"The person removes two cloves from the head of garlic.\", \"The person peels away the loose exterior skin of the cloves.\", \"The person lays the cloves on the cutting board and uses the flat side of the knife to crush them, pressing down on the knife with the heel of his hand.\", \"The person peels off the stiff exterior skin of the garlic cloves and discards it.\", \"The person slices off the tips and bases of the cloves of garlic and discards them.\", \"The person lays the garlic cloves on the cutting board and finely slices them.\", \"The person repeats slicing the garlic cloves from different angles until the garlic is minced into tiny chunks.\"], \"fps\": 29.4, \"num_frames\": 3200}, \"s22-d48.avi\": {\"timestamps\": [[241, 713], [713, 862], [931, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 741], [766, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 605], [655, 862], [931, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 741], [766, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 605], [655, 862], [931, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 605], [655, 862], [931, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 605], [655, 741], [766, 862], [931, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 605], [655, 862], [931, 1054], [1086, 2255], [2291, 2356], [2291, 2356], [241, 455], [475, 605], [655, 741], [766, 1054], [1086, 2255], [2291, 2356], [241, 605], [655, 741], [766, 862], [931, 1054], [1086, 2356], [241, 455], [475, 605], [655, 713], [713, 1054], [1086, 2255], [241, 455], [475, 605], [655, 741], [766, 862], [766, 862], [931, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 605], [655, 713], [713, 1054], [1086, 2255], [2291, 2356], [241, 455], [475, 605], [655, 862], [655, 862], [931, 1054], [1086, 2255], [2291, 2356]], \"sentences\": [\"Person rinsed a pepper.\", \"Person dried a pepper.\", \"Person got a knife.\", \"Person sliced a pepper.\", \"Person discards scraps.\", \"She gets the chili.\", \"She gets a cutting board and then washes the chili.\", \"She gets a knife.\", \"She chops the pepper.\", \"She discards the top of the pepper.\", \"Take out the chili\", \"Get out a cutting board.\", \"Rinse and dry the chili.\", \"Select a sharp knife.\", \"Slice chili into small pieces.\", \"Dispose of stem.\", \"She gets a pepper.\", \"She washes the pepper.\", \"She gets a knife.\", \"She cuts the pepper.\", \"She discards the top of the pepper.\", \"the person gets a pepper out of the cupboard.\", \"the person gets out a cutting board.\", \"The person washes and dries the pepper.\", \"The person gets out a knife.\", \"The person cuts the pepper into slices.\", \"The person throws away the top of the pepper.\", \"The person gets out a chili.\", \"The person gets out a wooden plate.\", \"The person rinses the chili.\", \"The person gets out a knife.\", \"The person chops up the chili.\", \"The person throws away the top of the chili.\", \"The person takes a chili from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the chili in the sink.\", \"The person dries the chili pepper in a towel.\", \"The person takes out a knife from the drawer.\", \"The person chops the chili pepper on the cutting board.\", \"The person throws the stem into the wastebin.\", \"A chili is removed from a cabinet.\", \"The person removes a cutting board.\", \"The person washes and dries the chili.\", \"The person selects a knife.\", \"The chili is sliced into rounds.\", \"The scraps are thrown away.\", \"The chili is ready.\", \"She gets a pepper.\", \"She gets a cutting board.\", \"She rinses the pepper.\", \"She gets a knife.\", \"She chops the pepper.\", \"She discards the top.\", \"Find a fresh chilli and prepare a cutting board for use later.\", \"Wash chilli thoroughly.\", \"Be sure to dry the chili to remove excess water before cutting.\", \"Grab a knife and begin to cut the chilli with your fingers pointed inward to avoid cutting them.\", \"When done, dispose of the stem of the chilli.\", \"Takes pepper out of refrigerator\", \"Takes out cutting board\", \"Washes and drys pepper\", \"Begins to dice pepper in little pieces\", \"Throws stem and end piece away\", \"The woman takes a pepper from the refrigerator.\", \"The woman places a cutting board on the counter.\", \"The woman washes the pepper.\", \"The woman dries the pepper.\", \"The woman places the pepper on the cutting board.\", \"The woman takes a knife out of a drawer.\", \"The woman slices the pepper.\", \"The woman disposes of the seed pod.\", \"The person gets a chili from the pantry.\", \"The person gets out a cutting board.\", \"The person rinses the chili pepper in the sink.\", \"The person procures a knife from the cutlery drawer.\", \"The person slices the chili pepper on the cutting board with the knife.\", \"The person disposes of the chili pepper's stem in the wastebasket.\", \"The woman opens the cabinet and removes the chile.\", \"The woman lays the chile on the counter, opens the cabinet, and removes the cutting board.\", \"The woman washes and dries the chile.\", \"The woman places the chile on the cutting board.\", \"The woman opens the drawer and removes the knife.\", \"Beginning at the stemless end, the woman slices the chile into fine horizontal pieces.\", \"The woman throws away the stem of the chile.\"], \"fps\": 29.4, \"num_frames\": 2451}, \"s15-d70.avi\": {\"timestamps\": [[221, 494], [597, 697], [697, 1032], [1036, 1428], [1438, 1591], [1694, 1950], [2013, 3431], [3521, 3677], [3772, 5042], [5123, 5447], [5123, 5447], [5537, 6194], [6223, 7699], [7718, 8209], [221, 494], [597, 767], [851, 1073], [1119, 1293], [1307, 1428], [1438, 1591], [1694, 5447], [5537, 5588], [5671, 5866], [5950, 6194], [6223, 6335], [6419, 6568], [6588, 7699], [7718, 7850], [8217, 8242], [221, 494], [597, 697], [697, 1454], [1471, 1591], [1694, 5447], [5537, 6335], [6419, 7766], [8251, 8279], [221, 494], [597, 767], [851, 1073], [1119, 1293], [1307, 1428], [1438, 1591], [1694, 3431], [3521, 5447], [5537, 5866], [5950, 6194], [6223, 6335], [6419, 7699], [7718, 7850], [7791, 8242], [221, 767], [851, 1454], [1471, 1950], [2013, 3431], [3521, 5588], [5671, 6335], [6419, 7850], [7885, 8279], [221, 767], [851, 1950], [2013, 5447], [5537, 6335], [6419, 7766], [8251, 8279], [221, 494], [597, 767], [851, 1454], [1471, 1591], [1694, 3431], [3521, 5447], [5537, 5588], [5671, 6335], [6419, 7766], [7791, 7850], [7885, 8279], [221, 494], [597, 767], [851, 1176], [1191, 1293], [1307, 1428], [1438, 1591], [1694, 5042], [5123, 5588], [5671, 6194], [6223, 6335], [221, 767], [851, 1591], [851, 1591], [1694, 3431], [3521, 5447], [5537, 5588], [5671, 6335], [6419, 7699], [7718, 7850], [7885, 8279], [221, 494], [597, 767], [851, 1176], [1191, 1454], [1471, 1591], [1471, 1591], [1694, 1950], [2013, 2919], [2977, 3677], [3772, 5042], [5123, 5447], [5537, 5866], [5950, 6335], [6419, 7699], [7791, 8279], [221, 494], [597, 767], [851, 1073], [1119, 1454], [1471, 1591], [1694, 5588], [1694, 5588], [5671, 6194], [6223, 6335], [221, 494], [597, 767], [851, 1073], [1119, 1428], [1438, 1591], [1694, 5447], [5537, 5588], [5671, 6194], [6223, 6335], [221, 494], [597, 767], [851, 1073], [1119, 1428], [1438, 1591], [1694, 5588], [5671, 6194], [6223, 6335], [221, 494], [597, 697], [697, 1032], [1036, 1293], [1307, 1428], [1438, 1591], [1694, 5447], [5537, 5588], [5671, 6194], [6223, 6335], [221, 494], [597, 767], [851, 1073], [1119, 1293], [1307, 1428], [1438, 1591], [1694, 3431], [3521, 5042], [5123, 5588], [5671, 6194], [6223, 6335], [6419, 6568], [6588, 7766], [7791, 7850], [7718, 8242], [221, 494], [597, 1591], [1694, 1950], [2013, 5866], [5950, 6335], [6419, 6918], [221, 494], [597, 767], [851, 1073], [1119, 1428], [1438, 1591], [1694, 5447], [5537, 5588], [5671, 5866], [5950, 6194], [6223, 6335], [6419, 6568], [6976, 7699], [7718, 7850]], \"sentences\": [\"Person takes out orange.\", \"Person washes orange.\", \"Person takes out orange juicer.\", \"Person takes out knife and cutting board.\", \"Person cuts orange in half.\", \"Person makes cuts in half an orange from peel to peel.\", \"Person twists and squeezes first half of orange on juicer.\", \"Person makes cuts in second half of orange from peel to peel.\", \"Person twists and squeezes second half of orange over juicer.\", \"Person twists and squeezes first half of orange over juicer again.\", \"Person throws away the peel.\", \"Person pours juice into cup.\", \"Person scrapes pulp into cup.\", \"Person stirs pulp and juice together.\", \"The person procures an orange from the fridge.\", \"The person washes the orange in the sink.\", \"The person takes out a juice strainer from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person cuts the orange in half.\", \"The person grinds each half of the orange into the juice strainer with her palm\", \"The person throws the orange peels into the wastebin.\", \"The person removes the top of the juice strainer from the bottom.\", \"The person takes a glass from the cupboard.\", \"The person pours the juice from the bottom portion of the strainer into the glass.\", \"The person takes out a spoon from the drawer.\", \"The person uses the spoon to scoop the pulp out of the top part of the juice strainer into the glass.\", \"The person places the spoon, the juicer, the knife, and the cutting board into the sink.\", \"The person takes out a spoon from the drawer, stirs the juice in the glass, and places the spoon in the sink.\", \"She gets an orange.\", \"She washes the orange.\", \"She gets the juicer, a knife, and a cutting board.\", \"She cuts the orange in half.\", \"After scoring each half, she juices them.\", \"She grabs a glass and pours the juice into it.\", \"She puts the pulp in the glass.\", \"She stirs the juice.\", \"The person takes an orange from the fridge.\", \"The person washes the orange under the faucet.\", \"The person takes out a juice strainer from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person slices the orange into halves.\", \"The person takes an orange slice and grinds it into the juice strainer.\", \"The person grinds the second orange slice into the juice strainer.\", \"The person removes the top part of the strainer from the juicer.\", \"The person takes a glass from the cupboard.\", \"The person pours the juice from the bottom part of the strainer into the glass.\", \"The person takes a spoon from the drawer and uses it to scoop the pulp from the top part of the strainer into the glass with the juice.\", \"The person puts the knife, the juice strainer, and the cutting board into the sink.\", \"The person takes another spoon from the drawer and stirs the pulp into the juice.\", \"Take orange directly from fridge and wash it.\", \"Assemble knife, cutting board and manual juicer.\", \"Cut orange in half and cut slits into the pulp.\", \"Push down and rotate half of the orange on the juicer to get all juice.\", \"Repeat with other half of orange.\", \"Make sure all juice exits the strainer and pour into glass.\", \"Use a spoon to scoop pulp from juicer.\", \"Stir and enjoy.\", \"The woman selects an orange and washes it.\", \"The woman slices the orange in half.\", \"The woman pushes and twist the orange into the juicer.\", \"She places the juice into the glass.\", \"The woman scoops the pulp into the glass.\", \"She mixes the juice and pulp.\", \"Person removes one orange from refrigerator.\", \"Moving to sink the person rinses the orange under running water and sets it on the counter.\", \"From a drawer, the person retrieves an orange juicer, cutting board and knife which she places on counter near orange.\", \"The person slices the orange into two halves.\", \"The person makes small cuts in the first orange half and presses the half on the juicer, twisting and squeezing to extract as much juice and pulp as possible.\", \"The person repeats the same procedure with the second half of the orange; making the small cuts to make juicing easier and twisting and squeezing the orange half on the juicer to extract all of the juice and pulp.\", \"The person discards the orange rind halves in the garbage.\", \"The person removes the top half of the juicer and pours the juice from the bottom half into a glass she retrieves from the cupboard.\", \"Using a spoon, the person gathers the pulp from the top half of the juicer and adds it to the juice from the orange in the glass.\", \"The person moves the cutting board, juicer, knife and spoon to the sink.\", \"Retrieving a fork from the drawer, the person mixes the pulp and juice together in the glass.\", \"She took out orange\", \"She washed orange\", \"She took out juicer\", \"She took out knife\", \"She took out cutting board\", \"She cut orange in half\", \"She twisted orange on juicer\", \"She threw away orange\", \"She took out glass\", \"She poured juice in glass\", \"She gets out an orange from the refrigerator and washes it in the sink.\", \"She gets out a juice squeezer and a cutting board.\", \"She cuts the orange into half.\", \"She puts the orange on the squeezer, uses the knife to loosen up the insides of the orange, and uses the juice squeezer to remove the juice from one half of the orange.\", \"She does the same to the other half of the orange.\", \"She throws the peels away in the trash.\", \"She removes the top from the juicer, gets out a glass from the cabinet, and pours the juice from the juicer into the glass.\", \"She uses the spoon to get juice and pulp from the top of the juicer and put it in the glass.\", \"She puts the knife, cutting board, and juicer into the sink.\", \"She gets out a fork and mixes around the orange juice.\", \"She takes one orange out of the refrigerator.\", \"She washes the orange in the sink and sets it on the counter.\", \"She places a juicer on the counter.\", \"She takes out a cutting board and a small knife.\", \"She cuts the orange in half on the cutting board.\", \"She takes half of the orange and places it over the juicer.\", \"She takes the same orange and makes small cuts in the orange.\", \"She juices a halve of the orange.\", \"She takes the over orange halve and places it over the juicer.\", \"She completely squeezes the juice out of the orange.\", \"She grabs the previous orange halve and squeezes more juice out of it.\", \"She removes the orange juicer lid and places it over the cutting board.\", \"She grabs a drinking glass and pours the orange juice into the glass.\", \"She grabs a spoon and uses it to take out the remaining orange from the juicer and places it in the cup.\", \"Finally, she grabs a fork and stirs the orange juice in the cup.\", \"She took out orange\", \"She washed orange\", \"She took out juicer\", \"She took out knife and cutting board\", \"She cut orange in half\", \"She twisted orange on juicer\", \"She threw away orange\", \"She took out glass\", \"She poured juice in glass\", \"She took out orange\", \"She washed orange\", \"She took out juicer\", \"She took out knife and board\", \"She cut orange in half\", \"She twisted orange on juicer\", \"She threw away scraps\", \"She took out glass\", \"She poured juice in glass\", \"She took out orange\", \"She washed orange\", \"She took out juicer\", \"She took out cutting board and knife\", \"She cut orange in half\", \"She twisted orange on juicer\", \"She took out glass\", \"She poured juice in glass\", \"She took out orange\", \"She washed orange\", \"She took out juicer\", \"She took out knife\", \"She took out cutting board\", \"She cut orange in half\", \"She twisted orange on juicer\", \"She threw away orange\", \"She took out glass\", \"She poured juice in glass\", \"The person gets out an orange.\", \"The person rinses the orange.\", \"The person gets out a juicer.\", \"The person gets out a knife.\", \"The person gets out a cutting board.\", \"The person cuts the orange in half.\", \"The person makes some shallow cuts in one half, then juices it.\", \"The person makes shallow cuts in the second half and juices it.\", \"The person throws away the orange halves.\", \"The person gets out a cup.\", \"The person pours the juice into the cup.\", \"The person gets out a spoon.\", \"The person scrapes the pulp out of the juicer and into the glass of juice.\", \"The person puts the dishes in the sink.\", \"The person gets out another spoon and stirs the juice.\", \"Girl goes to the fridge and gets an orange and washes it.\", \"The girl gets a knife and cuts the orange in half.\", \"She cuts some of the middle before squeezing it in a juicer.\", \"The girl squeezes both halves extra well.\", \"The girl gets a glass and pours the fresh squeezed orange juice.\", \"She takes the pulp that was left and puts it in the glass.\", \"The person procures an orange from the crisper.\", \"The person washes the orange under the faucet.\", \"The person takes a juice strainer from a drawer.\", \"The person gets a knife and a cutting board from the drawer.\", \"The person cuts the orange in half.\", \"The person grinds each half into the juice strainer.\", \"The person disposes of the orange halves into the trash.\", \"The person removes the strainer from the juicer.\", \"The person procures a glass from the cupboard.\", \"The person pours the juice from the bottom of the juice strainer into the glass.\", \"The person gets a spoon from the cutlery drawer.\", \"The person uses the spoon to scoop pulp from the strainer into the glass.\", \"The person places the strainer, the cutting board, and the knife into the sink.\"], \"fps\": 29.4, \"num_frames\": 8299}, \"s21-d40.avi\": {\"timestamps\": [[243, 388], [456, 729], [735, 861], [872, 946], [957, 1023], [1059, 2905], [243, 342], [342, 729], [735, 861], [872, 1023], [1059, 1541], [1059, 1541], [1587, 2905], [243, 946], [957, 1023], [1059, 1541], [1587, 2574], [3027, 3124], [243, 342], [342, 946], [957, 1023], [1059, 1541], [1587, 2574], [2606, 2905], [3027, 3124], [243, 342], [342, 729], [735, 861], [872, 946], [957, 1023], [1059, 2905], [2606, 3124], [243, 342], [342, 729], [735, 861], [872, 946], [957, 1023], [1059, 2905], [3027, 3124], [243, 388], [456, 729], [735, 861], [872, 946], [957, 1023], [1059, 2905], [3027, 3124], [243, 342], [342, 729], [735, 861], [872, 946], [957, 1023], [1059, 2905], [3027, 3124], [243, 342], [342, 729], [735, 946], [957, 1023], [1059, 2905], [243, 342], [342, 729], [735, 861], [872, 1023], [1059, 2905], [3027, 3124], [243, 729], [735, 1023], [1059, 1541], [1587, 2574], [3027, 3124], [243, 1023], [1059, 1541], [1587, 2574], [3027, 3124], [3027, 3124], [243, 342], [342, 729], [735, 861], [872, 946], [957, 1023], [1059, 2905], [3027, 3124], [243, 388], [456, 946], [957, 1023], [1059, 1541], [1587, 2574], [243, 342], [342, 729], [735, 861], [872, 946], [957, 1023], [2606, 2905], [2606, 3124], [243, 388], [456, 729], [735, 946], [957, 1023], [1059, 2905], [2606, 3124], [243, 342], [342, 729], [735, 861], [872, 946], [957, 1023], [1059, 2905], [3027, 3124]], \"sentences\": [\"She takes out juicer\", \"She takes out lime\", \"She takes out knife\", \"She takes out cutting board\", \"She cuts lime in half\", \"She twists lime on juicer\", \"First place your juicer on the counter.\", \"Next get one fresh lime stored from the refrigerator.\", \"You will need a knife and cutting board to cut the lime in half.\", \"Take one half of the lime and press against the juicer to extract all the juice.\", \"Repeat this process with the other half of the lime.\", \"You can rotate the lime on the juicer to extract all the juice.\", \"Wash your hands once this process is complete.\", \"The woman gets her supplies out.\", \"The woman cuts the lime in half.\", \"She pushes and twist the half lime on the juicer.\", \"The woman pushes and twist the other half of the lime onto the juicer.\", \"She finishes by washing the lime juice off of her hands.\", \"The lady gets a juicer out.\", \"The lady gets a lime, knife and cutting board out.\", \"The lady cuts the lime in half.\", \"The lady picks up one half of the lime and rotates and squeezes it on the juicer.\", \"The lady picks up the other half of the lime and rotates and squeezes it on the juicer.\", \"The lady picks up the first half of the lime and rotates and squeezes it on the juicer again.\", \"The lady washes her hands in the sink.\", \"The person takes out a juice strainer from the drawer.\", \"The person procures a lime from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person cuts the lime in half.\", \"The person grinds each half of the lime into the juice strainer with her palm.\", \"The person washes her hands.\", \"The person takes out a juice strainer from the drawer.\", \"The person procures a lime from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person cuts the lime in half.\", \"The person grinds each half of the lime into the top of the juice strainer with her palm.\", \"The person washes her hands.\", \"The person gets out a juicer.\", \"The person gets out a lime.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person cuts the lime in half.\", \"The person juices the lime.\", \"The person rinses her hands.\", \"The person takes out a juice strainer from the drawer.\", \"The person procures a lime from the fridge.\", \"The person takes out a knife from the drawer.\", \"The person takes out a cutting board from the drawer.\", \"The person cuts the lime into halves.\", \"The person attempts to grind each lime half into the top of the juicer with her palm.\", \"The person washes her hands.\", \"She gets a juicer.\", \"She grabs a lime.\", \"She grabs a knife and cutting board.\", \"She cuts the lime in half.\", \"She juices the lime.\", \"She took out juicer\", \"She took out lime\", \"She took out knife\", \"She cut lime in half\", \"She twisted lime on juicer\", \"She washed her hands\", \"The woman takes out a lime.\", \"The woman slices the lime in half.\", \"The woman pushes the first half of lime into a juicer.\", \"The woman juices the second half with the juicer.\", \"The woman washes her hands.\", \"Cut the lime in half.\", \"Squeeze the lime into container.\", \"Get the most out of the lime by juicing the first half again.\", \"Squeeze the lime half as hard as you can to get the most.\", \"Wash your hands afterwards.\", \"The person takes the lemon squeezer out of the drawer.\", \"The person takes a lime out of the refrigerator.\", \"The person takes a knife out of the drawer.\", \"The person takes a round chopping board out of the drawer.\", \"The person cuts the lime in half.\", \"The person squeezes the juice out of both lime halves.\", \"The person washes her hands.\", \"The person gets the juicer.\", \"The person gets the lime, a knife and a cutting board.\", \"The person slices the lime in half.\", \"Take one half of the lime and press on the juicer while rotating the lime.\", \"The person squeezes the other half of the lime into the juicer.\", \"The person gets out a juicer.\", \"The person gets out a lime.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person cuts the lime in half.\", \"The person juices each half of the lime.\", \"The person washes her hands.\", \"The person gets a juice strainer from the drawer and places it on the counter.\", \"The person gets a lime from the fridge.\", \"The person gets a cutting board and a knife from the drawer.\", \"The person chops the lime into halves.\", \"The person grinds each lime half upon the juice strainer.\", \"The person washes her hands in the sink.\", \"She took out juicer\", \"She took out lime\", \"She took out knife\", \"She took out cutting board\", \"She sliced lime in half\", \"She twisted lime on juicer\", \"She washed hands\"], \"fps\": 29.4, \"num_frames\": 3222}, \"s14-d51.avi\": {\"timestamps\": [[238, 550], [565, 793], [804, 966], [978, 1155], [1167, 1841], [1855, 2014], [2078, 2518], [2679, 4458], [4693, 7166], [7221, 8217], [238, 550], [565, 793], [804, 966], [978, 1155], [1167, 1841], [1855, 2014], [2078, 2518], [2679, 4458], [4693, 7166], [7221, 7670], [7698, 8217], [238, 550], [565, 793], [804, 1155], [1167, 1612], [1622, 1841], [1855, 2014], [2078, 2518], [2679, 4458], [4693, 7166], [7221, 7670], [7698, 7969], [8021, 8217], [8021, 8217], [238, 550], [565, 793], [804, 966], [978, 1155], [1167, 1841], [1855, 2014], [2078, 2518], [2679, 4458], [4693, 7127], [7127, 7670], [7698, 8217], [238, 550], [565, 1155], [1167, 1841], [1855, 2518], [2679, 4458], [4693, 7166], [7221, 8217], [238, 550], [565, 793], [804, 1249], [1249, 1841], [1855, 2427], [2427, 4458], [4693, 7166], [7221, 8217], [238, 550], [565, 645], [652, 756], [756, 966], [978, 1155], [1167, 1841], [1855, 2014], [2078, 2427], [2427, 4458], [4693, 7127], [238, 645], [652, 793], [804, 966], [978, 1155], [1167, 1841], [1855, 2014], [2078, 2518], [2679, 4458], [4693, 7127], [238, 550], [565, 1155], [1167, 1841], [1855, 2014], [2078, 2518], [2679, 4458], [7127, 7166], [7221, 7670], [7698, 8217], [238, 1155], [1167, 1841], [1855, 2518], [2679, 4458], [7127, 7166], [7221, 8217], [238, 550], [565, 756], [756, 966], [978, 1155], [1167, 1612], [1622, 2427], [2427, 4458], [4693, 7127], [4693, 7670], [7698, 8217], [238, 550], [565, 793], [804, 966], [978, 1155], [1167, 1841], [1855, 2014], [2078, 2518], [2679, 4458], [4693, 7166], [7221, 7670], [7698, 8217], [7127, 7670], [7127, 7670], [7127, 7670], [7127, 7670], [7127, 7670], [7698, 8217], [238, 550], [565, 1155], [1167, 1612], [1622, 2427], [2427, 4458], [4693, 7166], [7221, 8217], [238, 550], [565, 1155], [1167, 1525], [1526, 1841], [1855, 2014], [2078, 2518], [2679, 4458], [238, 7166], [7221, 7670], [7698, 8217], [238, 550], [565, 1155], [1167, 2518], [2679, 4458], [4693, 7166], [7221, 8217]], \"sentences\": [\"She took out beans\", \"She took out knives\", \"She took out container\", \"She took out cutting board\", \"She put unused beans back\", \"She took out bowl\", \"She washed beans\", \"She cut off tips of beans\", \"She diced the beans\", \"She washed the supplies\", \"The person gets out a box of beans.\", \"The person gets out two knives.\", \"The person gets out a Tupperware container.\", \"The person gets out a wooden plate.\", \"The person takes a few beans out of the box and puts the rest back in the refrigerator.\", \"The person gets out a bowl.\", \"The person rinses the beans.\", \"The person trims the beans and puts the trash in the Tupperware container.\", \"The person cuts up the beans and puts them in the bowl.\", \"The person throws away the trash.\", \"The person rinses the dishes.\", \"The person places a package of fresh broad beans on the counter.\", \"The person selects two knives from the drawer.\", \"The person places a bowl and cutting board on the counter.\", \"The person selects five broad beans from the package.\", \"The person puts the package away.\", \"The person puts a small bowl on the counter.\", \"The person rinses the broad beans with water.\", \"The person trims the ends off of each broad bean.\", \"The person cuts each broad bean into small pieces.\", \"The person throws away the discarded broad bean tips.\", \"The person rinses her utensils.\", \"The person washes the cutting board.\", \"The video ends.\", \"The person gets out a bag of beans.\", \"The person gets out two knives.\", \"The person gets out a Tupperware container.\", \"The person gets out a wooden plate.\", \"The person takes some beans out of the bag and puts the rest back in the fridge.\", \"The person gets out a bowl.\", \"The person rinses the beans.\", \"The person cuts the tips off the beans and puts then in the Tupperware container.\", \"The person cuts up the beans and puts them in the bowl.\", \"The person throws away the tips of the beans.\", \"The person rinses the dishes.\", \"She gets some beans from the fridge.\", \"She gets two knives, a cutting boards and a bowl.\", \"She removes several beans from the package and puts the rest away.\", \"She rinses the beans.\", \"She removes the ends from the beans.\", \"She chops the beans and puts them in a bowl.\", \"She cleans up.\", \"She gets a pack of beans.\", \"She gets two knives.\", \"She gets a cutting board and a tray.\", \"She puts some beans on the board and puts the rest away.\", \"She rinses the beans.\", \"She removes the ends of the beans.\", \"She chops the beans and puts them in a bowl.\", \"She cleans up.\", \"She took out beans\", \"She took out knife\", \"She took out second knife\", \"She took out container\", \"She took out cutting board\", \"She put unused beans back\", \"She took out bowl\", \"She washed beans\", \"She chopped off ends of beans\", \"She diced beans\", \"She took out beans\", \"She took out knife\", \"She took out container\", \"She took out cutting board\", \"She put back extra beans\", \"She took out bowl\", \"She washed beans\", \"She cut off ends of beans\", \"She sliced beans\", \"The person gets a package of beans out of the fridge.\", \"The person selects two knives, a bowl and a cutting board.\", \"The person takes out a few beans and puts the rest back in the fridge.\", \"The person gets out another small bowl.\", \"The person rinses off the beans in the sink.\", \"The person uses the small knife to cut off the tips of each bean and take the string out of the back of them as well.\", \"The person slices each bean diagonally into quarter inch pieces and places them into the small bowl.\", \"The person throws away the bean tips and strings.\", \"The person rinses out the clear bowl, rinses off the knives and the cutting board.\", \"She gets out the needed items.\", \"She puts some beans on the cutting board and puts the rest away.\", \"She rinses the beans.\", \"She removes the ends of the beans.\", \"She chops the beans and puts them in a bowl.\", \"She cleans up.\", \"Remove beans from refrigerator\", \"Get a knife\", \"Get a bowl\", \"Get a cutting board\", \"Remove beans from package\", \"Wash beans thoroughly\", \"Cut ends off beans\", \"Slice beans diagonally\", \"Throw away bean tips\", \"Wash bowl, knife and cutting board\", \"The person gets out a package of beans.\", \"The person gets out two knives.\", \"The person gets out a Tupperware container.\", \"The person gets out a wooden plate.\", \"The person pulls some beans out of the package and puts the rest of the beans away.\", \"The person gets out a bowl.\", \"The person rinses the beans.\", \"The person cuts off the tips of the beans and puts them in the Tupperware container.\", \"The person cuts up the beans and puts the pieces in the bowl.\", \"The person throws away the tips of the beans.\", \"The person rinses the dishes.\", \"The person throws away the ends of the beans.\", \"The person cuts up each bean into small pieces and puts them into the mixing bowl.\", \"The person removes both ends of each bean and puts the ends in the plastic container.\", \"The person washes the beans.\", \"The person gets out the beans, a knife, a cutting board, a plastic container, and a mixing bowl.\", \"The person washes the dishes.\", \"She just got out the beans.\", \"She just got out the required equipment.\", \"She placed the beans on the cutting board.\", \"She washed the beans.\", \"She just finished trimming off the inedible parts of the beans.\", \"She just finished cutting the beans.\", \"She just finished cleaning up.\", \"The person gets the peas from the refrigerator.\", \"The person gets out knives, a bowl and a cutting board.\", \"The person removes peas from package.\", \"The person puts the peas away.\", \"The person gets out another bowl.\", \"The person washes the peas.\", \"The person cuts the ends off of the peas.\", \"The person slices the peas and places them in a bowl.\", \"The person discards the pea ends.\", \"The person rinses off the dishes.\", \"The woman pulls out the beans.\", \"She takes out the supplies that she needs.\", \"The woman washes the beans she will use and puts away the excess.\", \"The woman removes the tips with the knife.\", \"The woman cuts the beans into smaller pieces and places them in the bowl.\", \"She then cleans up after preparing the beans.\"], \"fps\": 29.4, \"num_frames\": 8307}, \"s23-d21.avi\": {\"timestamps\": [[247, 581], [588, 844], [851, 1064], [1079, 1682], [1702, 1803], [1856, 1955], [1974, 2765], [2827, 3653], [3691, 3810], [3810, 4378], [247, 631], [647, 797], [797, 1064], [1079, 1682], [1702, 1803], [1856, 2765], [2827, 3007], [3060, 3653], [3691, 3872], [3929, 4378], [4385, 4741], [247, 581], [588, 797], [797, 1064], [1079, 1350], [1358, 1483], [1488, 1682], [1702, 2765], [2827, 3007], [3060, 3653], [3691, 3872], [4385, 4516], [247, 1064], [1079, 1716], [1722, 1803], [1856, 1955], [1974, 2765], [2827, 4378], [4542, 4741], [247, 581], [588, 797], [797, 1064], [1079, 1350], [1358, 1483], [1488, 1682], [1702, 1803], [1856, 2765], [2827, 3007], [247, 581], [588, 797], [797, 1064], [1079, 1350], [1358, 1483], [1488, 1682], [1702, 1803], [1856, 1955], [1974, 2765], [2827, 3007], [3060, 3653], [3691, 3872], [3929, 4378], [3929, 4741], [3929, 4741], [247, 581], [588, 797], [797, 1064], [1079, 1682], [1702, 1803], [1856, 2765], [2827, 3007], [3060, 3653], [3691, 4378], [4385, 4741], [247, 581], [588, 797], [797, 1064], [1079, 1716], [1722, 2765], [2827, 3007], [3060, 3653], [3691, 4378], [4385, 4741], [247, 581], [588, 797], [797, 1064], [1079, 1682], [1702, 2765], [3060, 4378], [4385, 4741], [247, 797], [797, 894], [919, 1064], [1079, 1483], [1488, 1955], [1974, 2765], [2827, 3872], [4385, 4516], [4385, 4741], [247, 1350], [1358, 1483], [1488, 1682], [1702, 1955], [1974, 2765], [2827, 3007], [2827, 3872], [3929, 4378], [3929, 4516], [4542, 4741], [247, 581], [588, 1064], [1079, 1483], [1488, 1682], [1702, 1803], [1856, 1955], [1974, 2328], [2328, 2727], [3060, 3872], [3929, 4378], [4542, 4741], [247, 581], [588, 797], [797, 1064], [1079, 1682], [1702, 1803], [1856, 1955], [1974, 2765], [2827, 3007], [2727, 3653], [3691, 3872], [3929, 4378], [4385, 4741], [247, 581], [588, 797], [797, 1064], [1079, 1682], [1702, 1803], [1856, 1955], [1974, 2765], [2827, 3007], [3060, 3653], [3691, 3872], [3929, 4378], [4385, 4741], [247, 631], [647, 1682], [1702, 1803], [1856, 1955], [1974, 2765], [2827, 3007], [3060, 3961], [4021, 4378], [4385, 4741], [4385, 4741], [247, 631], [647, 797], [797, 1064], [1079, 1682], [1702, 1955], [1974, 2765], [2827, 3007], [3060, 3872], [3929, 4378], [4385, 4741], [247, 894], [919, 1483], [3060, 3653], [3691, 4075], [4385, 4741]], \"sentences\": [\"He took out cucumber\", \"He took out cutting board\", \"He took out knife\", \"He washed supplies\", \"He cut off ends of cucumbers\", \"He cut cucumber in half\", \"He diced cucumber\", \"He took out plate\", \"He washed plate\", \"He put cucumber on plate\", \"The person gets out a cucumber.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the cucumber, cutting board and knife.\", \"The person cuts the tips off of the cucumber.\", \"The person slices up the cucumber.\", \"The person throws away the tips.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person puts the cucumber slices on the plate.\", \"The person rinses the knife and cutting board.\", \"He took out cucumber\", \"He took out cutting board\", \"He took out knife\", \"He washed cutting board\", \"He washed knife\", \"He washed cucumber\", \"He chopped cucumber\", \"He threw away scraps\", \"He took out plate\", \"He washed plate\", \"He put cucumber on plate\", \"Get out knife, cutting board, and cucumber.\", \"Rinse off cutting board, knife and cucumber.\", \"Cut the ends off the cucumber.\", \"Cut cucumber in half lengthwise.\", \"Cut halves into small strips width-wise.\", \"Get out a plate and transfer the cucumbers onto it.\", \"Rinse knife and cutting board.\", \"He took out cucumber\", \"He took out cutting board\", \"He took out knife\", \"He washed cutting board\", \"He washed knife\", \"He washed cucumber\", \"He cut off ends of cucumber\", \"He chopped cucumber\", \"He threw away ends\", \"The person selects a cucumber from the refrigerator.\", \"The person puts a cutting board on the counter.\", \"The person places a large knife on the counter.\", \"The person rinses the cutting board.\", \"The person rinses the knife.\", \"The person rinses the cucumber.\", \"The person slices off both ends of the cucumber.\", \"The person cuts the cucumber in half, length-wise.\", \"The person chops each half of the cucumber into smaller pieces.\", \"The person throws the discarded ends of the cucumber in the trash.\", \"The person finds a plate.\", \"The person rinses the plate.\", \"The person puts the cucumber on the plate.\", \"The person rinses the cutting board and knife.\", \"Video ends.\", \"The person procures a cucumber from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes the cutting board, the knife, and the cucumber in the sink.\", \"The person cuts the ends off the cucumber.\", \"The person chops the cucumber on the cutting board.\", \" The person throws the ends of the cucumber into the wastebin.\", \"The person procures a plate from the cabinet.\", \"The person washes the plate in the sink and then sets the chopped cucumber on it.\", \"The person washes the knife and the cutting board in the sink.\", \"The person procures a cucumber from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes the cutting board, the knife, and the cucumber in the sink.\", \"The person cuts the ends off the cucumber then chops it on the cutting board.\", \"The person throws the end pieces into the wastebin.\", \"The person procures a plate from the cabinet.\", \"The person rinses the plate off then sets the chopped cucumber on the plate.\", \"The person washes the knife and the cutting board in the sink.\", \"He grabs a cucumber.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He rinses the cutting board, knife, and cucumber.\", \"He chops the cucumber.\", \"He gets a knife and puts cucumber on it.\", \"He rinses the knife and cutting board.\", \"The man begins by selecting a green vegetable from the fridge.\", \"Next, he retrieves a wooden cutting board from a nearby drawer.\", \"Next, he gets out a knife.\", \"He then rinses the cutting board, the knife, and the vegetable with water.\", \"He uses the knife to cut the ends off the vegetable and then cut it down the middle.\", \"Next, he uses the knife to cut the vegetable into small slices.\", \"He then selects a plate from the cupboard and rinses it with water.\", \"He uses his hands to lift the product from the cutting board onto the plate.\", \"Finally, he rinses the cutting board and knife with water.\", \"The person washes the chopping board.\", \"The person washes the knife.\", \"The person washes the cucumber.\", \"The person cuts the cucumber in half across.\", \"The person slices the cucumber halves into thin slices.\", \"The person discards the top and bottom of the cucumber.\", \"The person washes a plate.\", \"The person places the sliced cucumbers on the plate.\", \"The person rinses the knife.\", \"The person rinses the chopping board.\", \"The person removes a cucumber from the refrigerator.\", \"The person gets out a cutting board and knife.\", \"The person rinses the cutting board and knife.\", \"The person washes the cucumber.\", \"The person cuts the ends off the cucumber.\", \"The person cuts the cucumber in half lengthwise.\", \"The person chops the first half of the cucumber.\", \"The person chops the other half of the cucumber.\", \"The person finds and rinses a plate.\", \"The person transfers the chopped cucumber to the plate.\", \"The person rinses the cutting board and knife.\", \"The person gets out a cucumber.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the cutting board, knife and cucumber.\", \"The person cuts off the tips of the cucumber.\", \"The person cuts the cucumber in half lengthwise.\", \"The person slices up both halves of the cucumber.\", \"The person throws away the tips of the cucumber.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person puts the cucumber slices on the plate.\", \"The person rinses the knife and cutting board.\", \"The person gets out a cucumber.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the cutting board, knife and cucumber.\", \"The person cuts off the tips of the cucumber.\", \"The person slices the cucumber in half lengthwise.\", \"The person cuts each half of the cucumber into slices.\", \"The person throws away the tips of the cucumber.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person puts the cucumber slices on the plate.\", \"The person rinses the knife and cutting board.\", \"The person takes a cucumber from the refrigerator and places it on the counter.\", \"The person take a cutting board and knife out of a drawer, rinses them and the cucumber under the facet and places all three items back on the counter.\", \"The person put the cucumber on the cutting board and using the knife slices off each end of the cucumber.\", \"The person slices the cucumber in half lengthwise.\", \"The person chops each half of the cucumber into small pieces.\", \"The person throws the ends of the cucumber in the garbage.\", \"The person takes a bowl from the cabinet, rinses it, then places it on the counter.\", \"The person puts all the cucumber slices in the bowl.\", \"The person rinses the knife and cutting board off under the facet then places them on the counter.\", \"The task is complete. Sliced cucumbers are sitting in a bowl on the counter along with the cutting board and knife.\", \"The person gets a cucumber from the fridge and sets it on the countertop.\", \"The person gets a cutting board from the drawer.\", \"The person gets a large knife from the drawer.\", \"The person washes the cutting board, the knife, and the cucumber under the faucet.\", \"The person cuts both ends off the cucumber then slices it lengthwise down the middle.\", \"The person dices the cucumber.\", \"The person disposes of the ends into the wastebin.\", \"The person gets a plate from the cupboard and rinses it under the tap.\", \"The person scoops the cucumber onto the plate with his hands.\", \"The person rinses off the knife and the cutting board in the sink.\", \"Guy gets cucumber and washes it.\", \"Guy gets a knife and slices cucumber.\", \"Guy chops up into little pieces.\", \"Guy washes a plate and puts cucumbers  on it.\", \"Guy washes  plate and cuttingboard.\"], \"fps\": 29.4, \"num_frames\": 4850}, \"s24-d41.avi\": {\"timestamps\": [[209, 751], [854, 1289], [1326, 3033], [3112, 3386], [3401, 16625], [16708, 17679], [209, 751], [854, 1137], [1150, 1289], [1326, 1496], [1547, 2168], [2221, 2604], [2659, 3156], [3188, 4008], [4026, 6834], [6848, 16625], [16708, 17405], [17429, 17679], [209, 1496], [1547, 2055], [2120, 3156], [3188, 4097], [4117, 7572], [209, 400], [465, 751], [854, 1137], [1150, 1289], [1326, 2709], [2829, 3156], [7579, 16417], [209, 751], [854, 1289], [1326, 3033], [3188, 16417], [16525, 17591], [209, 1137], [1150, 1289], [1326, 2604], [2659, 3386], [3112, 16417], [16525, 17070], [209, 400], [465, 751], [854, 1137], [1150, 1229], [1236, 3033], [3112, 3367], [3401, 16308], [209, 751], [854, 1137], [1150, 1229], [1236, 3033], [17162, 17405], [209, 400], [465, 751], [854, 1289], [1326, 3033], [3112, 3386], [3372, 16417], [17429, 17591], [209, 400], [465, 751], [854, 1137], [1150, 1289], [1326, 3033], [3112, 3386], [3401, 16308], [16403, 17405], [209, 751], [854, 1137], [1150, 1229], [1236, 2273], [2338, 2604], [2659, 3033], [3112, 3439], [16403, 16417], [16525, 17405], [17613, 17679], [209, 400], [465, 751], [854, 1137], [1150, 2168], [2221, 3033], [3464, 16308], [16525, 16964], [209, 400], [465, 751], [854, 1137], [1150, 1289], [1326, 3033], [3112, 3156], [3188, 3386], [3112, 14875], [209, 1137], [209, 1137], [209, 1137], [1150, 1289], [1326, 1608], [209, 751], [854, 1496], [1679, 2604], [2659, 3156], [3188, 3439], [3188, 3439], [3464, 4937], [3401, 9529], [9569, 9640], [3112, 17405], [17613, 17679], [209, 751], [854, 1289], [1547, 3033], [4948, 9438]], \"sentences\": [\"She gets a bowl and a pomegranate.\", \"She washes the pomegranate.\", \"She splits the pomegranate.\", \"She gets a cutting board.\", \"She removes the bad parts of the pomegranate and discards them.\", \"She cleans up.\", \"The woman removes a pomegranate and a bowl from the cabinets.\", \"She removes a knife from the drawer.\", \"She rinses the pomegranate in the sink.\", \"She uses the knife to cut the end off of the pomegranate.\", \"She cuts off the other end of the pomegranate.\", \"She makes deep slices into the pomegranate with the knife.\", \"She separates the pomegranate into sections and places them into the bowl.\", \"She starts removing the seeds from one section of the pomegranate and placing them into the bowl.\", \"She continues removing pomegranate seeds and placing them into the bowl.\", \"She places the leftover pomegranate rinds into the recycling bin.\", \"She empties the pomegranate rinds from the sink into the recycling bin.\", \"She rinses her hands in the sink.\", \"the person gets a knife and plate\", \"the person washes the Pomegranate and cuts the top and bottom end\", \"the person cut the Pomegranate into 4 equal piece and breaks it apart\", \"the person takes out a cutting board\", \"the person takes each of the 4 pieces  over the bowl and separates the seeds from the skin\", \"person gets pomegranate\", \"person gets bowl\", \"person gets knife\", \"person washes pomegranate\", \"person slice the sides of pomegranate\", \"person splits open pomegranate\", \"person removes arils from inside the pomegranate\", \"She gets a pomegranate and a bowl.\", \"She rinses it.\", \"She cuts the pomegranate in half.\", \"She removes the good bits of the pomegranate.\", \"She cleans up.\", \"Get a bowl, pomegranate, and knife.\", \"Rinse the pomegranate.\", \"Chop off the top and bottom, then cut the sides into quarters to weaken, but not completely break through.\", \"Use your hands to break apart the pomegranate into quarters. Put the spare pieces on a cutting board.\", \"Use your fingers to pry the seeds from the slices of pomegranate into the bowl.\", \"Dispose of leftover peels.\", \"She took out pomegranate\", \"She took out bowl\", \"She took out knife\", \"She washed pomegranate\", \"She cut pomegranate in half\", \"She took out cutting board\", \"She took out middle of pomegranate\", \"She grabs a pomegranate and bowl.\", \"She gets a knife.\", \"She rinses the pomegranate.\", \"She opens up the pomegranate.\", \"She removes the inedible parts from the pomegranate and discards them.\", \"She gets a pomegranate.\", \"She gets a bowl.\", \"She gets a knife and rinses the pomegranate.\", \"She splits the pomegranate.\", \"She gets a cutting board.\", \"She removes the good parts of the pomegranate.\", \"She cleans up.\", \"She gets a pomegranate from the cupboard.\", \"She gets a bowl.\", \"He gets a knife.\", \"She rinses the pomegranate.\", \"She splits the pomegranate.\", \"She gets a cutting board.\", \"She removes the good parts of the pomegranate.\", \"She discards the rest of the pomegranate.\", \"Step One: Get your pomegranate and a bowl\", \"Step Two: get your clean, sharp paring knife\", \"Step Three: rinse the pomegranate\", \"Step Four: using your paring knife, take a thin slice off each end of the pomegranate\", \"Step Five: make four shallow, long cuts in the pomegranate from top to bottom\", \"Step Six: insert your thumb into the pomegranate and break apart, you may need to insert the knife into the fruit during this step\", \"Step Seven: get a cutting board and place the pomegranate on the cutting board\", \"Step Eight: Using your hands, hold the pomegranate over the bowl and remove the seeds, separating them from the white fleshy pieces.\", \"Step Nine: Throw the white fleshy pieces away.\", \"Step Ten: Wash and dry your hands.\", \"She gets a pomegranate out of the cupboard.\", \"She gets a bowl out of the cupboard.\", \"She gets a knife out of the drawer.\", \"She slices the ends of the pomegranate off with a knife.\", \"She cuts the pomegranate into wedges.\", \"She removes the seeds from the pomegranate and puts them into a bowl.\", \"She throws the rinds into the garbage.\", \"The person gets a pomegranate from the pantry.\", \"The person gets a bowl from the cupboard.\", \"The person gets a knife from the drawer.\", \"The person washes the fruit in the sink.\", \"The person cuts the tops off the pomegranate and then breaks it in half.\", \"The person places the fruit in the bowl.\", \"The person gets out a small cutting board.\", \"The person painstakingly removes the seeds from the unedible skin.\", \"The person got out a knife.\", \"The person got out a bowl.\", \"The person got out the pomegranate.\", \"The person rinsed off the pomegranate.\", \"The person cut the ends off the pomegranate.\", \"The woman removes a pomegranate and bowl from the cabinet.\", \"She rinses the pomegranate in the sink and cuts the end off of the pomegranate.\", \"She cuts off the opposite end of the pomegranate, and makes deep slices into the pomegranate.\", \"She breaks the pomegranate into larges pieces and places in the bowl.\", \"She removes a cutting board from the drawer, and places the pomegranate pieces on it.\", \"She begins removing the seeds from the pomegranate and putting them in the bowl.\", \"She continues removing pomegranate seeds from the rind and skin.\", \"She slices the remaining large section of pomegranate with the knife.\", \"She continues removing the pomegranate seeds and placing them in the bowl.\", \"When finished removing the pomegranate seeds, she places all of the pomegranate rind and skin into the recycling bin.\", \"She rinses and dries her hands on a towel.\", \"She gets out a pomegranate and a bowl.\", \"She chooses a knife and rinses the fruit.\", \"She removes the top and bottom of the fruit then splits it in half.\", \"She removes the good parts of the first half of the fruit.\"], \"fps\": 29.4, \"num_frames\": 17737}, \"s23-d42.avi\": {\"timestamps\": [[294, 1326], [1441, 2265], [2276, 3027], [3027, 3247], [3276, 3450], [3456, 3659], [3694, 4077], [4163, 4783], [4792, 8802], [8953, 9279], [9300, 9795], [9858, 10109], [10151, 10298], [10372, 10796], [10914, 11872], [294, 1005], [1035, 3027], [3027, 9354], [9410, 9795], [11914, 12272], [294, 1005], [294, 1005], [1035, 2265], [2276, 2947], [2947, 3450], [3456, 5767], [5825, 10077], [9858, 12272], [294, 502], [520, 624], [624, 1005], [1035, 1326], [1441, 2425], [2563, 3027], [3027, 3247], [3276, 3659], [3694, 4077], [4163, 9279], [9300, 9795], [9858, 11872], [10077, 12078], [294, 456], [478, 624], [624, 1005], [1035, 1326], [1441, 2265], [2276, 3077], [3096, 9354], [9410, 11097], [294, 456], [478, 662], [699, 1005], [1035, 2947], [2947, 9454], [12192, 12272], [294, 456], [478, 662], [699, 1005], [1035, 1503], [1515, 2265], [2276, 3027], [3027, 3827], [3027, 3827], [3848, 4324], [4343, 8148], [8190, 10077], [294, 624], [624, 1005], [1035, 2425], [2563, 3027], [3027, 9354], [11914, 12272], [294, 456], [478, 624], [624, 1005], [1035, 1326], [1441, 2947], [2947, 3247], [3276, 3827], [3848, 4077], [4163, 9024], [294, 456], [478, 624], [624, 1005], [1035, 1326], [1441, 2425], [2563, 3027], [3027, 3324], [3358, 3827], [3848, 4077], [9080, 9279], [9300, 9795], [9410, 10109], [10151, 10298], [10372, 10796], [294, 502], [520, 662], [699, 1005], [1035, 1326], [1441, 2947], [2947, 3659], [3694, 4077], [4163, 9354], [9410, 9795], [10077, 11872], [294, 456], [478, 662], [699, 1005], [1035, 1326], [1441, 2425], [2563, 3077], [3096, 3450], [3456, 4077], [4163, 9156], [294, 502], [520, 624], [624, 1005], [1035, 1326], [1441, 2947], [2947, 3247], [3276, 3450], [3456, 3827], [3848, 4031], [294, 502], [520, 662], [699, 1005], [1035, 1326], [1441, 2425], [2563, 3077], [3096, 3659], [4043, 4077], [9176, 9279], [9300, 9795], [9858, 10796], [10914, 11562], [11584, 11872], [11134, 12272], [294, 1005], [1035, 1326], [1441, 1655], [1671, 2425], [2563, 3509], [3541, 4031], [3694, 4324], [4163, 9354], [9858, 10796], [9858, 11770], [9489, 12272], [294, 456], [478, 662], [699, 1005], [1035, 1326], [1441, 2425], [2563, 2947], [2947, 3450], [4043, 4077], [4163, 8802], [4163, 9563], [9612, 9795], [9410, 10796], [10914, 11324], [11367, 11872]], \"sentences\": [\"The person gets a cutting board, knife, plate, and the broccoli prepared on the counter.\", \"The person removes the plastic wrap from the broccoli.\", \"The person washes the broccoli using the tap water from the sink, then shakes it dry.\", \"The person cuts off the end of the broccoli.\", \"The person cuts the broccoli in half from top to bottom.\", \"The person cuts off the ends of the broccoli from each half.\", \"The person gets another plate from the cabinet for the edible portion of the broccoli.\", \"The person begins to cut the broccoli into smaller portions.\", \"The person continues to cut the broccoli flower, both head and stem, into smaller portions.\", \"The person places the smaller pieces of broccoli onto a plate.\", \"The person places the broccoli discards onto the other plate and then dumps that plate into the trash.\", \"The person rinses the plate off into the sink.\", \"The person rinses the knife off into the sink.\", \"The person rinses the cutting board off into the sink.\", \"The person dries off the knife, cutting board, and discard plate with a dish rag and puts them up.\", \"He gets out the broccoli and a knife and cutting board.\", \"He rinses the broccoli.\", \"He chops the broccoli.\", \"He discards the bad parts.\", \"He cleans up.\", \"He gets a knife and a cutting board.\", \"He gets broccoli.\", \"He unwraps the broccoli.\", \"He washes the broccoli.\", \"He cuts the broccoli in half.\", \"He puts the chopped broccoli onto a plate.\", \"He washes the plate.\", \"He cleans up the area.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a big stalk of broccoli.\", \"The person gets out a plate.\", \"The person removes the plastic wrap from the broccoli and throws it away.\", \"The person rinses the broccoli.\", \"The person cuts off the stem of the broccoli.\", \"The person begins cutting the broccoli into smaller stalks.\", \"The person gets out a second plate and rinses it.\", \"The person cuts up the broccoli and puts it on the new plate.\", \"The person throws away the large broccoli stem and some \\\"crumbs\\\" from cutting the rest up.\", \"The person washes and puts away the plate, knife and cutting board.\", \"The person wipes down the counter.\", \"The person took out a cutting board.\", \"The person got out a knife.\", \"The person got out some broccoli.\", \"The person got out a plate.\", \"The person took the broccoli out of the plastic wrap.\", \"The person rinsed off the broccoli.\", \"The person cut up the broccoli.\", \"The person rinsed off the board, knife, and plate.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets the broccoli.\", \"He rinses the broccoli.\", \"He chops the broccoli and puts it on a plate.\", \"He cleans up.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He gets broccoli.\", \"He gets a plate.\", \"He unwraps the broccoli.\", \"He washes the broccoli.\", \"He cuts the broccoli in half.\", \"He washes a plate.\", \"He starts cutting up the broccoli.\", \"He puts the broccoli onto the plate.\", \"He washes the plate.\", \"He gets a cutting board and a knife.\", \"He gets the broccoli.\", \"He removes the broccoli from the wrap and puts it on a plate.\", \"He rinses the broccoli.\", \"He chops the broccoli and puts it on a plate.\", \"He cleans up.\", \"He took out cutting board\", \"He took out knife\", \"He took out broccoli\", \"He took out plate\", \"He washed broccoli\", \"He cut off bottom of broccoli\", \"He took out plate\", \"He washed plate\", \"He chopped broccoli\", \"He took out cutting board\", \"He took out knife\", \"He took out broccoli\", \"He took out plate\", \"He unwrapped broccoli\", \"He washed broccoli\", \"He chopped off broccoli stem\", \"He took out second plate\", \"He washed plate\", \"He chopped up broccoli\", \"He threw away scraps\", \"He washed dish\", \"He washed knife\", \"He washed cutting board\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out some broccoli.\", \"The person gets out a plate.\", \"The person rinses the broccoli.\", \"The person starts to chop up the broccoli.\", \"The person gets out and rinses another plate.\", \"The person continues to chop the broccoli, putting it on one plate and trash on the other.\", \"The person throws away the trash.\", \"The person rinses and puts away the plate, knife and cutting board.\", \"He took out cutting board\", \"He took out knife\", \"He took out broccoli\", \"He took out dish\", \"He threw out wrapping\", \"He washed broccoli\", \"He cut broccoli in half\", \"He took out 2nd plate\", \"He chopped broccoli\", \"He took out cutting board\", \"He took out knife\", \"He took out broccoli\", \"He took out plate\", \"He washed broccoli\", \"He cut off bottom of stem\", \"He cut broccoli in half\", \"He took out another plate\", \"He washed plate\", \"The person takes a cutting board from a drawer.\", \"The person gets a knife out.\", \"The person takes the broccoli from the fridge.\", \"The person gets a plate from the cupboard.\", \"The person cuts the plastic off of the broccoli and disposes of it in the trash.\", \"The person rinses the broccoli in the sink.\", \"The person chops the stalks off the broccoli.\", \"The person gets another plate from the cupboard and rinses it under the faucet.\", \"The person spends ten minutes chopping the broccoli as if he were stoned and then puts it on the plate.\", \"The person disposes of the stalks into the trashbin.\", \"The person rinses off the plate, then the knife, and finally the cutting board.\", \"The person dries off the knife and the cutting board and replaces them in their drawers.\", \"The person replaces the plate in the cupboard.\", \"The person wipes off the countertop.\", \"The man takes out a knife and cutting board\", \"The man takes out a large head of broccoli and a plate.\", \"The man removes the wrapper from the broccoli.\", \"The Man washes the broccoli.\", \"The man removes the stem and cuts the broccoli into smaller parts\", \"The man pulls out and washes another plate.\", \"The man begins to cut the broccoli into bite size parts.\", \"The man has finished chopping the broccoli and sets it aside on the new plate.\", \"The man washes the original plate knife and cutting board.\", \"The man dries and puts away the knife board and plate.\", \"The man wipes down the counter and is done.\", \"The person gets a cutting board from the drawer.\", \"The person gets a large knife from the drawer.\", \"The person gets a stalk of broccoli from the crisper.\", \"The person procures a plate from the cabinet.\", \"The person cuts the plastic from off the broccoli stalk and throws it in the wastebin.\", \"The person washes the broccoli in the sink.\", \"The person cuts the stem from the broccoli.\", \"The person gets a plate from the cabinet and rinses it in the sink.\", \"The person chops the broccoli on the cutting board and places it on the plate.\", \"The person scoops bits of stem onto the second plate.\", \"The person disposes of the stems into the trash.\", \"The person washes the plate, the knife, and the cutting board in the sink.\", \"The person dries the knife with a towel and puts it back in its drawer.\", \"The person dries off the cutting board and the plate and returns them to their cabinets.\"], \"fps\": 29.4, \"num_frames\": 12400}, \"s22-d26.avi\": {\"timestamps\": [[294, 596], [644, 901], [937, 1220], [1234, 4072], [4080, 8270], [8324, 8393], [8458, 8673], [8666, 8879], [8879, 9293], [294, 596], [644, 1220], [1234, 3831], [3831, 4425], [4458, 8270], [8324, 9293], [294, 596], [644, 1220], [1234, 3831], [3831, 5393], [5596, 8270], [8324, 9293], [294, 596], [644, 1284], [1306, 4425], [4458, 7207], [7276, 8270], [8324, 9293], [294, 596], [644, 1220], [1234, 4425], [4458, 8270], [8324, 9293], [294, 596], [644, 901], [937, 1220], [1234, 3831], [3831, 4425], [4458, 4654], [4788, 5393], [5596, 8107], [8213, 8493], [8526, 8879], [8879, 9293], [8879, 9293], [294, 596], [644, 901], [937, 1220], [1234, 4072], [4080, 4425], [4458, 4843], [4870, 8393], [8458, 8673], [8666, 8879], [8879, 9293], [294, 596], [644, 901], [937, 1220], [1234, 4425], [4458, 4843], [4870, 8107], [8213, 8393], [8458, 8708], [8711, 9293], [294, 596], [644, 901], [937, 1220], [1234, 3831], [3831, 4425], [4458, 4843], [4870, 8107], [8213, 8270], [8324, 8393], [8458, 8673], [8666, 9293], [294, 596], [644, 901], [937, 1220], [1234, 3831], [3831, 4425], [4458, 4843], [4870, 8270], [8324, 8393], [8458, 8673], [8666, 9293], [294, 596], [644, 901], [937, 1220], [1234, 3831], [3831, 4425], [4458, 5782], [5788, 8270], [8324, 8393], [8458, 8879], [8879, 9293], [294, 596], [644, 901], [937, 1220], [1234, 3831], [3831, 4503], [4528, 4843], [4870, 8107], [8213, 8270], [8324, 8393], [8458, 8673], [8666, 8879], [8879, 9293], [294, 596], [644, 901], [937, 1220], [1234, 3831], [3831, 4425], [4458, 5782], [5788, 8107], [8213, 8270], [8324, 8493], [8526, 8673], [8666, 8879], [8879, 9293], [294, 1220], [1234, 4425], [4458, 4843], [4870, 6058], [6124, 8270], [8324, 8493], [8526, 8934], [8948, 9293], [294, 596], [644, 901], [937, 1220], [1234, 3831], [3831, 4425], [4458, 4843], [4870, 8107], [8213, 8270], [8324, 8493], [8526, 8673], [8666, 8879], [8879, 9293], [294, 596], [644, 901], [937, 1220], [1234, 3831], [3831, 4425], [4458, 4654], [4788, 4843], [4870, 8270], [294, 596], [644, 1220], [1234, 3831], [3831, 4425], [4458, 4843], [4870, 8270], [8324, 8879], [8879, 9293], [294, 596], [644, 4503], [4528, 5031], [5162, 8270], [8324, 8673], [8666, 9293], [294, 596], [644, 1220], [1234, 3831], [3831, 4158], [4242, 4425], [4458, 4503], [4528, 4654], [4788, 4843], [4870, 8107], [8213, 8270], [8324, 8493], [8526, 8879], [8879, 9293]], \"sentences\": [\"She took out cauliflower\", \"She took out cutting board\", \"She took out knife\", \"She peeled cauliflower\", \"She cut cauliflower\", \"She washed hands\", \"She took out pan\", \"She put cauliflower in pan\", \"She washed cauliflower\", \"She gets out the cauliflower.\", \"She gets out a cutting board and knife.\", \"She removes the unwanted parts of the plant.\", \"She discards the unwanted parts.\", \"She chops the cauliflower and discards the rest.\", \"She places the cauliflower in a colander and rinses it.\", \"She gets out the cauliflower.\", \"She gets out a cutting board and knife.\", \"She removes the leaves.\", \"She throws away the bad parts.\", \"She separates the heads and discards the rest.\", \"She puts the cauliflower in colander and rinses them.\", \"-the person removes the califlower from the cupboard\", \"-the person then places the cauliflower onto a cutting board and starts the preparation process\", \"-the person cleans the cauliflower by using the knife to remove the external leaves and throws them away\", \"-the person then breaks/cuts it up into smaller pieces or \\\"florets\\\"\", \"-the person disposes of the leftover base of cauliflower\", \"-the person then places the pieces into a colander and rinses the cauliflower florets with water\", \"She gets out the cauliflower.\", \"She gets out a cutting board and knife.\", \"She removes the undesirable parts and discards them.\", \"She breaks up the cauliflower and discards the waste.\", \"She puts the cauliflower in a colander and rinses them.\", \"The person selects a cauliflower from the cabinet.\", \"The person places a cutting board on the counter.\", \"The person places a knife on the counter.\", \"The person cuts away the outer leaves of the cauliflower.\", \"The person throws the discarded leaves in the trash.\", \"The person cuts off the bottom stalk of the cauliflower.\", \"The person throws the stalk and few remaining leaves in the trash.\", \"The person cuts the cauliflower into smaller pieces.\", \"The person rinses her hands.\", \"The person places the cauliflower pieces in a colander.\", \"The person rinses the cauliflower with water.\", \"Video ends.\", \"The person takes a cauliflower from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts and rips the leaves from the stalk of cauliflower.\", \"The person throws the leaves into the wastebin.\", \"The person cuts the stem off the stalk throws it into the wastebin.\", \"The person chops the cauliflower on the cutting board then disposes of some stalks in the trash and washes her hands.\", \"The person takes out a colander from the drawer.\", \"The person puts the chopped cauliflower into the colander.\", \"The person rinses the cauliflower in the colander under the faucet.\", \"The person takes a cauliflower from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts the leaves from the cauliflower and throws them into the wastebin.\", \"The person cuts off the stem and throws it into the wastebin.\", \"The person chops the cauliflower into chunks on the cutting board.\", \"The person throws the rest of the stems into the wastebin, then washes her hands.\", \"The person takes out a colander from the drawer.\", \"The person puts the chunks of cauliflower into the colander and washes them in the sink.\", \"The person takes a stalk of cauliflower from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts and rips the leaves off the cauliflower.\", \"The person throws the leaves into the wastebin.\", \"The person cuts off the stem and throws it into the wastebin.\", \"The person chops the cauliflower into chunks.\", \"The person throws some stems into the wastebin.\", \"The person washes her hands.\", \"The person takes out a colander from the drawer.\", \"The person puts the chopped cauliflower into the colander, puts it in the sink and runs the faucet over it.\", \"The person takes a cauliflower from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts and tears away the leaves from the cauliflower.\", \"The person throws the leaves into the wastebin.\", \"The person cuts away the stem and throws it in the trash.\", \"The person chops the cauliflower into chunks.\", \"The person washes her hands.\", \"The person takes out a colander from the drawer.\", \"The person sets the chopped cauliflower into the colander and places it under the faucet and runs the water.\", \"The person takes cauliflower from the cabinet.\", \"A cutting board is taken from the drawer.\", \"A knife is taken out.\", \"The outer layer of the cauliflower is cut and pulled off.\", \"The person throws the outer layer into the garbage.\", \"More of the outer leaves are cut and pulled off.\", \"The cauliflower is cut into pieces and pulled apart.\", \"The person throws away the waste and rinses her hands.\", \"The cauliflower is put into a strainer.\", \"The cauliflower is washed.\", \"The person gets out a cauliflower.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person pulls and cuts the leaves off of the cauliflower.\", \"The person throws the leaves away.\", \"The person cuts off and throws away the bottom of the cauliflower.\", \"The person cuts the cauliflower into pieces, trimming off bits of leaves as she finds them.\", \"The person throws away the trimmings and an unusable chunk of cauliflower.\", \"The person washes her hands.\", \"The person gets out a bowl.\", \"The person puts the cauliflower into the bowl.\", \"The person washes the cauliflower.\", \"Cauliflower is removed from the cabinet.\", \"The person removes a cutting board.\", \"The person removes a knife.\", \"The cauliflower leaves are removed.\", \"The scraps are discarded.\", \"The cauliflower is trimmed.\", \"The cauliflower is cut and broken into pieces.\", \"The person discards the waste.\", \"The person rinses their hands.\", \"The person removes a colander.\", \"The cauliflower is placed in the colander.\", \"The cauliflower is washed.\", \"She gets a cauliflower, a cutting board, and a knife from the cabinets.\", \"She pulls and cuts off the leaves of the cauliflower on the cutting board, gathers them together, and throws them in the trash.\", \"She cuts off the base of the cauliflower and throws it in the trash can.\", \"She rips and cuts off remaining leaves from the bottom of the cauliflower and throws them away.\", \"She cuts and tears the cauliflower apart into pieces and throws the unwanted pieces away in the trash.\", \"She washes and dries her hands.\", \"She takes out a metal bowl and places the cauliflower inside.\", \"She rinses the cauliflower in the bowl.\", \"The person gets out a cauliflower.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the leaves off of the cauliflower.\", \"The person throws away the leaves.\", \"The person cuts off and throws away the bottom of the cauliflower.\", \"The person cuts the cauliflower into chunks, trimming pieces of leaves occasionally.\", \"The person throws away the remainder of the cauliflower.\", \"The person washes her hands.\", \"The person gets out a bowl.\", \"The person puts the cauliflower in the bowl.\", \"The person rinses the cauliflower.\", \"She took out cauliflower\", \"She took out cutting board\", \"She took out knife\", \"She cut leaves off cauliflower\", \"She threw away leaves\", \"She cut off bottom of cauliflower\", \"She threw away bottom of cauliflower\", \"She cut broccoli into pieces\", \"The person gets a cauliflower from the crisper.\", \"The person takes out a cutting board and a knife from a drawer.\", \"The person cuts away the other leaves with the knife.\", \"The person dumps the leaves out in the wastebin.\", \"The person cuts off the bottom of the vegetable and throws it away.\", \"The person cuts and rips the cauliflower into sections.\", \"The person gets a colander and places the cauliflower segments in it.\", \"The person places the colander under the tap of the sink and rinses the cauliflower.\", \"A woman enters the kitchen, removes the cauliflower from the cupboard and places it on the kitchen counter.\", \"She removes a knife from the drawer and then removes all the outer leaves from the cauliflower and throws them away.\", \"She then cuts off the thick base of the cauliflower and throws it away.\", \"Using her hands and a knife she separates the cauliflower into several small flowerettes.\", \"She washes and drys her hands.\", \"She removes a bowl from the drawer, transfers the cauliflower to the bowl and rinses the cauliflower in the sink.\", \"The woman takes a cauliflower out of the cabinet and places it on the counter.\", \"She removes a cutting board and knife from the drawer and puts them on the counter.\", \"She uses the knife to cut the leaves off the stem of the cauliflower.\", \"She opens the door to the recycling bin.\", \"She empties the cuttings from the cauliflower into the recycling bin.\", \"She places the cauliflower onto the cutting board.\", \"She slices the large stem off of the cauliflower.\", \"She places the stem cutting into the recycling bin.\", \"She sections the cauliflower into smaller florets with the knife.\", \"She discards the remaining piece of the cauliflower into the recycling bin.\", \"She rinses her hands and dries them.\", \"She places all of the cauliflower florets into a colander.\", \"She rinses the cauliflower florets in the sink.\"], \"fps\": 29.4, \"num_frames\": 9349}, \"s21-d35.avi\": {\"timestamps\": [[270, 452], [491, 603], [647, 741], [824, 1007], [1031, 1669], [270, 452], [491, 603], [647, 741], [824, 1007], [1758, 1832], [270, 452], [491, 603], [647, 741], [824, 1007], [1031, 1669], [1031, 1832], [270, 452], [491, 603], [647, 741], [824, 1007], [1031, 1669], [270, 452], [491, 603], [647, 741], [824, 1669], [1758, 1832], [270, 452], [491, 603], [647, 741], [824, 1007], [1031, 1117], [1117, 1586], [270, 603], [647, 1007], [1031, 1191], [1586, 1669], [1758, 1832], [270, 452], [491, 603], [647, 741], [824, 1007], [1031, 1191], [1193, 1669], [1758, 1832], [270, 452], [491, 603], [647, 1007], [1031, 1191], [1193, 1669], [1758, 1832], [270, 452], [491, 603], [647, 741], [824, 1007], [1193, 1669], [1758, 1832], [270, 452], [491, 741], [824, 1007], [1031, 1669], [1758, 1832], [270, 452], [491, 603], [647, 741], [824, 1007], [1031, 1669], [1758, 1832], [270, 452], [491, 603], [647, 741], [824, 1007], [1031, 1669], [1758, 1832], [270, 452], [491, 603], [647, 741], [824, 1007], [1031, 1117], [1117, 1191], [1193, 1360], [1193, 1360], [1031, 1669], [1758, 1832]], \"sentences\": [\"She gets a plum.\", \"She rinses the plum.\", \"She grabs a knife.\", \"She grabs a small plate.\", \"She cuts the plum.\", \"She gets out a plum.\", \"She rinses it.\", \"She gets a knife.\", \"She gets a bowl out.\", \"She cuts the plum and discards the refuse.\", \"The person gets out a plum.\", \"The person rinses the plum.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person cuts the plum into four quarters and a core.\", \"The person puts the quarters on the plate and throws away the core.\", \"She grabs a plum.\", \"She washes the plum.\", \"She gets a knife.\", \"She sets a plate on the counter.\", \"She cuts the plum and puts it on the plate.\", \"She gets a plum.\", \"She rinses the plum.\", \"She gets a knife.\", \"She slices the plum.\", \"She discards a bit.\", \"The woman takes a plum out of the refrigerator.\", \"She rinses the plum in the sink.\", \"She takes a knife out of a drawer.\", \"She walks to the cupboard and takes out a plate.\", \"She makes a cut around the whole plum and pulls the two halves apart.\", \"She cuts one half into slices, taking care to remove the core.\", \"The person removes a plum from the refrigerator and washes it at the sink.\", \"The person retrieves a knife from the drawer and a bowl from the cupboard in preparation for slicing the plum.\", \"The person carefully cuts the plum in half and twists the two halves to separate.\", \"The person slices the halves into sections, cutting carefully around the plum's pit.\", \"The person discards the pit of the plum.\", \"Woman walks to the fridge, opens the door, removes one plum and closes the fridge door.\", \"She walks to the sink and rinses the plum.\", \"She opens a drawer and removes a knife.\", \"She walks to the cupboard, opens the door, removes a small plate.  She closes the door, returns to the counter and sets the plate down.\", \"She takes the knife and cuts the plum in half.\", \"The woman takes the first half and cuts it into small pieces, then takes the other half and does the same thing.\", \"She picks up a small discarded piece, sets her knife down and throws the piece in the garbage.\", \"The woman retrieves a plum.\", \"The woman washes the plum.\", \"The woman retrieves a knife and small bowl.\", \"The woman cuts the plum in half, around the seed.\", \"The woman cuts the two plum halves into quarters, placing all four pieces in the bowl.\", \"The woman throws away the seed.\", \"Get plum out of fridge.\", \"Second, wash plum.\", \"Third, get knife out.\", \"Fourth, get plate or bowl out.\", \"Fifth, cut plum.\", \"Finally, plum is prepared.\", \"The person takes a plum out of the refrigerator.\", \"The person rinses the plum and takes a knife out of the drawer.\", \"The person takes a plate out of the cupboard.\", \"The person cuts the plum into small pieces.\", \"The person discards a piece of plum that has fallen onto the table.\", \"The woman grabs a plum from the refrigerator.\", \"The woman rinses the plum under water.\", \"The woman grabs a knife from the drawer.\", \"The woman grabs a bowl from the cupboard.\", \"The woman cuts the plum into pieces and removes the pit.\", \"The woman throws the pit away.\", \"The person gets a plumb from the fridge.\", \"The person washes the plum in the sink.\", \"The person gets a knife from the cutlery drawer.\", \"The person procures a plate from the cupboard.\", \"The person cuts segments from the plum.\", \"The person throws the plum core into the wastebin.\", \"Open refrigerator and remove plum.\", \"Wash the plum off with water from the faucet.\", \"Choose a knife from the drawer.\", \"Open cabinet and remove a bowl to put the plum into once it is sliced.\", \"Take the knife and slice the plum into two halves.\", \"Break the plum apart.\", \"Cut into the plum to make slices.\", \"Pull each slice from the plum as you cut it.\", \"Continue to cut slices around the pit until it is all that is left.\", \"Throw the pit in the garbage can.\"], \"fps\": 29.4, \"num_frames\": 1859}, \"s22-d55.avi\": {\"timestamps\": [[281, 457], [525, 713], [761, 938], [938, 1175], [1203, 1367], [281, 457], [525, 713], [761, 938], [938, 1175], [1203, 1367], [281, 457], [525, 713], [761, 938], [938, 1238], [1257, 1367], [281, 457], [525, 713], [761, 938], [938, 1175], [1203, 1238], [1257, 1367], [281, 457], [525, 713], [761, 938], [938, 1175], [1203, 1367], [281, 457], [525, 713], [761, 938], [761, 938], [938, 1175], [1203, 1238], [1257, 1367], [281, 457], [525, 713], [761, 938], [938, 1175], [1203, 1238], [1257, 1367], [281, 457], [525, 713], [761, 994], [998, 1175], [1203, 1238], [1257, 1367], [281, 457], [525, 713], [761, 938], [938, 1238], [1257, 1367], [281, 713], [761, 938], [938, 1175], [1203, 1238], [1257, 1367], [281, 457], [525, 713], [761, 938], [938, 1175], [1203, 1238], [1257, 1367], [281, 457], [525, 713], [761, 938], [938, 1175], [1203, 1238], [1257, 1367], [281, 457], [525, 713], [761, 938], [938, 1238], [938, 1238], [1257, 1367]], \"sentences\": [\"She takes out fig\", \"She washes fig\", \"She takes out cutting board\", \"She takes out knife\", \"She cuts fig in half\", \"She grabs a fig.\", \"She rinses the fig.\", \"She gets a cutting board.\", \"She grabs a knife.\", \"She cuts the fig in half.\", \"Get figs from fridge.\", \"Rinse figs under water.\", \"Get out cutting board.\", \"Cut off stem of fig and discard.\", \"Cut fig in half length-wise.\", \"The woman removes a fig from the refrigerator.\", \"She rinses the fig in the sink.\", \"She removes a cutting board from the drawer and places the fig on it.\", \"She selects a knife from the drawer.\", \"She slices the stem off of the fig.\", \"She slices the fig in half lengthwise.\", \"She grabs a fig.\", \"She rinses the fig.\", \"She gets a cutting board.\", \"She grabs a knife.\", \"She cuts the fig.\", \"Get the fig from the refrigerator.\", \"Was the fig.\", \"Get a cutting board from the drawer.\", \"Place the fig on the cutting board.\", \"Get a knife.\", \"Cut the tip of the fig.\", \"Cut the fig in half.\", \"The person procures a fig from the fridge.\", \"The person washes the fig in the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts the stem from the fig.\", \"The person cuts the fig in two.\", \"The person removes a piece of fruit from the fridge.\", \"The person rinses the fruit.\", \"The person removes a cutting board from the drawer and places the fruit on it.\", \"The person takes a knife out of the drawer.\", \"The person cuts off the end of the fruit.\", \"The person cuts the fruit in half and presents the finished product.\", \"She took out fig\", \"She washed fig\", \"She took out cutting board\", \"She took out knife\", \"She cut fig in half\", \"The person gets out a fig and rinses it.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts off the top of the fig.\", \"The person cuts the fig in half.\", \"The woman gets a fig out of the refrigerator.\", \"The woman washes the fig.\", \"The woman gets a cutting board out and places the fig on it.\", \"The woman gets a knife out.\", \"The woman cuts the pointed end off of the fig.\", \"The woman cuts the fig in half longways.\", \"The person gets out a fig.\", \"The person rinses the fig.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts off the top of the fig.\", \"The person cuts the fig in half.\", \"Take a fig out of the refridgerator.\", \"Rinse the fig under running water.\", \"Take out a small wooden cutting board and place the fig on it.\", \"Take out a small cutting knife\", \"Cut off the end of the fig and set aside\", \"Cut the fig in half.\"], \"fps\": 29.4, \"num_frames\": 1514}, \"s21-d28.avi\": {\"timestamps\": [[245, 363], [408, 729], [408, 729], [792, 935], [792, 935], [959, 2031], [2062, 2147], [2211, 2581], [2621, 3559], [3559, 3668], [245, 729], [792, 935], [959, 2031], [2062, 2147], [2211, 2581], [2621, 3559], [245, 729], [792, 1081], [1081, 2031], [2062, 2147], [2211, 2581], [2621, 2878], [3559, 3668], [245, 729], [792, 2031], [2062, 2147], [2211, 2581], [2621, 2767], [2767, 3559], [2902, 3628], [245, 363], [408, 729], [792, 935], [959, 2031], [2062, 2147], [2211, 3471], [3559, 3628], [245, 363], [408, 729], [792, 935], [959, 2581], [2621, 3471], [3503, 3628], [245, 363], [408, 729], [792, 935], [959, 2581], [2621, 3471], [3628, 3668], [245, 363], [408, 729], [792, 935], [959, 2031], [2062, 2147], [2211, 3559], [3503, 3628], [245, 363], [408, 729], [792, 935], [959, 2031], [2062, 2147], [2211, 3471], [3628, 3668], [245, 363], [408, 729], [792, 935], [959, 2581], [2621, 3471], [3628, 3668], [245, 363], [408, 729], [792, 935], [959, 2031], [2062, 2147], [2211, 2581], [2621, 3559], [3503, 3668], [245, 363], [408, 729], [792, 935], [959, 1081], [1081, 2147], [2211, 2767], [2767, 2878], [3628, 3668], [245, 363], [408, 729], [792, 935], [959, 2031], [2062, 2147], [2211, 2581], [2621, 3559], [3559, 3668], [245, 363], [408, 729], [408, 729], [792, 935], [959, 2031], [2062, 2147], [2211, 2581], [2621, 3559], [3559, 3628], [245, 363], [408, 729], [792, 935], [959, 2031], [2062, 2147], [2211, 2581], [2621, 3559]], \"sentences\": [\"The woman walks to the counter, opens a drawer and removes a knife.  Then closes the drawer.\", \"She walks to a cupboard, opens the door and removes an orange. Then closes the door.\", \"She returns to the counter, sets down the knife and orange.\", \"The woman walks to another cupboard.  She opens the door and removes a small plate.  She then closes the door.\", \"She brings the plate to the counter and sets it down.\", \"She picks up the knife and orange.  She starts cutting the peeling off over the sink.\", \"She sets the orange down briefly while she washes the knife.\", \"The woman picks the orange back up and starts removing the pulp with the knife.\", \"She sets the knife down on the counter and starts pulling the orange apart over the plate.  She removes additional pulp.\", \"She moves to the sink, turns on the water and washes her hands.\", \"She gets out a knife and an orange.\", \"She gets out a plate.\", \"She peels the orange.\", \"She rinses the knife.\", \"She cuts away the last bits of rind.\", \"She breaks the orange into sections.\", \"Get a knife and your orange.\", \"With the knife, cut off the top of the orange peel.\", \"Cut the rest of the peel off, spiraling around the orange.\", \"Wash your knife off.\", \"Cut off bits of the thick white layer that you don't want.\", \"Split the orange in half and remove the \\\"core.\\\"\", \"Separate the rest of the orange and enjoy.\", \"The person gets out a knife and an orange.\", \"The person stands over the sink and peels the orange with the knife.\", \"The person rinses the knife.\", \"The person peels the orange a bit more.\", \"The person inserts her thumbs in the center of the orange and breaks it in half.\", \"Using her fingers, the person breaks the orange into sections.\", \"The person rinses her hands.\", \"The person takes out a knife from the drawer.\", \"The person takes an orange from the pantry.\", \"The person procures a plate from the cabinet.\", \"The person peels the orange with the knife over the sink.\", \"The person washes the knife in the sink.\", \"The person pulls the orange apart and places the pieces on the plate.\", \"The person washes her hands.\", \"The person takes out a knife from the drawer.\", \"The person takes an orange from the pantry.\", \"The person procures a plate from the cabinet.\", \"The person peels the orange over the sink with the knife.\", \"The person breaks the orange into segments and sets them on the plate.\", \"The person washes her hands.\", \"The person takes out a knife from the drawer.\", \"The person takes an orange from the pantry.\", \"The person procures a plate from the cabinet and sets it on the counter.\", \"The person uses the knife to peel the orange over the sink.\", \"The person breaks the orange into segments with her hands and sets them on the plate.\", \"The person washes her hands.\", \"The person takes out a knife from the drawer.\", \"The person takes an orange from the pantry.\", \"The person procures a plate from the cabinet.\", \"The person uses the knife to peel the orange in the sink.\", \"The person washes the knife in the sink.\", \"The person breaks the orange into segments with her hands and places them on the plate.\", \"The person washes her hands.\", \"The person takes out a knife from the drawer.\", \"The person takes an orange from the pantry.\", \"The person procures a plate from the cabinet.\", \"The person uses the knife to peel the orange over the sink.\", \" The person washes the knife in the sink.\", \"The person breaks the orange into segments with her hands and sets them on the plate.\", \"The person washes her hands.\", \"The person takes out a knife from the drawer.\", \"The person takes an orange from the pantry.\", \"The person procures a plate from the cabinet and sets it on the counter.\", \"The person uses the knife to peel the orange over the sink.\", \"The person breaks the orange into segments with her hands and sets them on the plate.\", \"The person washes her hands.\", \"The woman opens the drawer and takes out a knife.\", \"The woman opens the cabinet and takes out an orange.\", \"She opens the cabinet and takes out a plate.\", \"She peels the majority of the rind off of the orange using the knife.\", \"The woman rinses off the knife in the sink.\", \"She finishes removing the rind.\", \"She divides the orange into pieces using her fingers.\", \"She rinses her hands.\", \"The woman opens the drawer and selects a knife.\", \"The woman opens the pantry and takes out an orange and places it on the counter.\", \"The woman opens the cupboard and selects a saucer.\", \"The woman begins peeling the orange with the knife over the sink.\", \"The woman rinses her knife off halfway through peeling the orange, then resumes peeling th orange with the knife.\", \"Using her hands, the woman splits the orange in hald over the saucer.\", \"Using her hands, the woman peels the remaining skin off of the orange and breaks it into sections.\", \"With the orange completely peeled and in peices, the woman washes her hands.\", \"The person takes a knife out of the drawer.\", \"The person takes an orange out of the cupboard.\", \"The person takes a small plate out of the cupboard.\", \"The person peels off the skin of the orange.\", \"The person rinses the knife.\", \"The person removes the pith of the orange.\", \"The person uses her hands to separate the orange into sections and place them on the plate.\", \"The person washes her hands.\", \"The woman removes a knife from the drawer\", \"The woman removes an orange from the cabinet\", \"The woman places the knife and orange on the counter\", \"The woman gets a plate from the cabinet\", \"The woman peels the orange with the knife\", \"The woman rinses off the knife\", \"The woman peels the orange a little more with the knife\", \"The woman breaks the orange into smaller chunks with her hands and places them on the plate\", \"The woman washes her hands\", \"Woman gets knife from drawer\", \"Woman gets orange from cupboard and places orange and knife on counter.\", \"Woman gets plate from cupboard and places on counter.\", \"Woman peels orange at sink with knife.\", \"Woman rinses knife at sink.\", \"Woman continues peeling the orange.\", \"Woman separates the peeled orange into slices on the plate.\"], \"fps\": 29.4, \"num_frames\": 3677}, \"s21-d21.avi\": {\"timestamps\": [[273, 428], [457, 592], [653, 735], [735, 875], [875, 951], [951, 1257], [1330, 1467], [1488, 2646], [2827, 2925], [3046, 4019], [273, 592], [653, 1467], [1488, 2925], [4059, 4227], [4324, 4386], [273, 592], [653, 1007], [1047, 1257], [1330, 2646], [2827, 2925], [3046, 4019], [3046, 4386], [273, 428], [457, 592], [653, 786], [786, 1007], [1047, 1257], [1330, 1467], [1488, 2646], [2827, 2925], [3046, 4019], [4059, 4227], [4324, 4386], [273, 1467], [1488, 2925], [3046, 3216], [3226, 4019], [4059, 4386], [273, 428], [457, 592], [653, 735], [735, 951], [951, 1257], [1330, 1467], [1488, 2646], [2827, 2925], [3046, 4019], [4059, 4227], [4324, 4386], [273, 428], [457, 592], [653, 951], [951, 1257], [1330, 2646], [2827, 2925], [4059, 4227], [273, 428], [457, 592], [653, 786], [786, 1007], [1047, 1257], [1330, 1467], [1488, 2646], [2827, 2925], [3046, 3979], [3046, 4227], [273, 592], [653, 875], [875, 2646], [2827, 2925], [3046, 3764], [3778, 4019], [3990, 4227], [273, 428], [457, 592], [653, 786], [786, 1257], [1330, 2646], [2827, 2925], [3046, 4019], [4059, 4227], [273, 592], [653, 1257], [1330, 2646], [2827, 2925], [3046, 3089], [3103, 4019], [4059, 4227], [273, 428], [273, 428], [457, 592], [653, 786], [786, 1007], [786, 1007], [1047, 1257], [1047, 1257], [1330, 1467], [1488, 2925], [4059, 4227], [273, 428], [457, 592], [653, 786], [786, 1007], [1047, 1257], [1330, 1467], [1488, 2646], [2827, 2925], [3046, 4227]], \"sentences\": [\"She took out cucumber\", \"She washed cucumber\", \"She took out cutting board\", \"She took out knife\", \"She took out second knife\", \"She took out bowl\", \"She took out peeler\", \"She peeled cucumbers\", \"She threw away peels\", \"She chopped up cucumber\", \"The person gets a cucumber out of the refrigerator and washes it.\", \"The person gathers a cutting board, knife, vegetable peeler and bowl.\", \"The person peels the skin off the cucumber and throws the skin in the trash can.\", \"The person cuts the cucumber into bite size chunks and puts them in the bowl\", \"The person cleans the cutting board.\", \"She goes to the refrigerator and gets out a cucumber and then washes it.\", \"She opens a drawer and gets out a cutting board and knife.\", \"She walks to the cupboard and gets out a bowl and places it on the counter.\", \"She opens the drawer and gets a peeler out and starts peeling the cucumber.\", \"She gathers the cucumber skins and throws them away.\", \"She cuts up the cucumber into small pieces.\", \"She picks up the cutting board and scraps the cucumbers into the bowl.\", \"The person procures a cucumber from the fridge.\", \"The person washes the cucumber in the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a bowl from the cabinet.\", \"The person takes out a peeler from the drawer.\", \"The person peels the cucumber with the peeler.\", \"The person throws the peels into the wastebin.\", \"The person chops the cucumber on the cutting board, first in halves, then lengthwise, then into bits.\", \"The person sets the chopped cucumber in the bowl.\", \"The person throws a piece into the garbage.\", \"She gathers a cucumber, cutting board, knife, peeler, and a bowl.\", \"She peels the cucumber and throws away the scraps.\", \"She cuts the cucumber in half.\", \"She slices each half twice and dices the slices.\", \"She collects all of the diced cucumber pieces into a bowl.\", \"The woman grabs a cucumber.\", \"The woman rinses the cucumber.\", \"The woman grabs a cutting board.\", \"The woman grabs a knife.\", \"The woman grabs a bowl.\", \"The woman grabs a peeler.\", \"The woman peels the cucumber.\", \"The woman disposes the peels.\", \"The woman chops the cucumber up into little pieces.\", \"The woman puts the cucumber pieces into the bowl.\", \"The woman completes the assigned task.\", \"She gets a cucumber.\", \"She washes the cucumber.\", \"She gets a cutting board and knife.\", \"She gets a plate.\", \"She gets a peeler and peels the cucumber.\", \"She discards the peels.\", \"She chops the cucumber and puts it in a bowl.\", \"The subject selected a cucumber from the fridge.\", \"The subject washes the cucumber.\", \"The subject retrieves a cutting board from the drawer.\", \"The subject selects a knife from the drawer.\", \"The subject retrieves a bowl from the cupboard.\", \"The subject retrieves a vegetable peeler from the drawer.\", \"The subject peels the cucumber.\", \"The subject throws away the cucumber peelings.\", \"The subject dices the cucumber.\", \"The subject scoops the cucumber into a bowl.\", \"The person removes a cucumber from the refrigerator and rinses it.\", \"The person places a cutting board on the counter and places the cucumber on it.\", \"The person removes the peel from the cucumber using a vegetable peeler.\", \"The person discards the outer peel.\", \"The person cuts the cucumber in half laterally then quarters the halves axially.\", \"The person chops the cut pieces into small chunks.\", \"The person places the chopped cucumber pieces in a bowl.\", \"The person takes a cucumber from the refrigerator.\", \"The person washes the cucumber.\", \"The person takes out a chopping board from the drawer.\", \"The person takes out a peeler and a bowl.\", \"The person peels the skin off the cucumber.\", \"The person discards the peeled cucumber skin.\", \"The person chops the cucumber into small pieces.\", \"The person moves the small cucumber slices into the bowl.\", \"The person washes the cucumber with water.\", \"The person prepares a cutting board, knife and small bowl.\", \"The person peels the cucumber using a peeler.\", \"The person throws the peels away into the garbage.\", \"The person cuts the cucumber in half.\", \"The person chops up the cucumber.\", \"The person puts the cucumber slices into the small bowl.\", \"She walked to the refrigerator.\", \"She took out a cucumber from the refrigerator\", \"She walked over to the sink and washed the cucumber.\", \"She opened the drawer, took out a round cutting board, and then shut the drawer.\", \"She reopened the drawer, looked for and took out the right knife while she placed the cucumber on the cutting board, then she closed the drawer.\", \"She walked to the back cabinets.\", \"She opened the cabinets and took out a bowl.\", \"She brought the bowl back to the sink and was about to start to cut the cucumber.\", \"She realized she needed to open the drawer and take out the peeler.\", \"She peeled the cucumber and threw away the peelings.\", \"She cut the cucumber and put the pieces in a bowl.\", \"The person gets out a cucumber.\", \"The person rinses the cucumber.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person gets out a bowl.\", \"The person gets out a vegetable peeler.\", \"The person peels the cucumber.\", \"The person throws away the peels.\", \"The person chops up the cucumber and puts the pieces into the bowl.\"], \"fps\": 29.4, \"num_frames\": 4434}, \"s24-d23.avi\": {\"timestamps\": [[279, 945], [972, 1280], [1405, 2454], [2600, 2933], [2989, 3090], [3188, 3867], [3961, 4998], [5215, 5444], [279, 945], [972, 1280], [1405, 2454], [2600, 2874], [2885, 3052], [3052, 3451], [3484, 3601], [3601, 3867], [3961, 4190], [4200, 4998], [5215, 5444], [5458, 5627], [279, 1048], [1053, 1921], [2014, 2874], [2885, 3230], [3248, 3867], [3961, 4998], [5215, 5444], [279, 945], [972, 1280], [1405, 2454], [2600, 2933], [2989, 4998], [5215, 5444], [279, 945], [972, 1280], [1405, 2454], [2600, 2874], [2885, 3052], [3052, 3451], [3484, 3645], [3699, 3867], [3699, 3867], [3961, 4998], [5215, 5444], [5458, 5627], [279, 1280], [1405, 2454], [2600, 3645], [3699, 4133], [5458, 5627], [279, 945], [972, 1280], [1405, 3090], [3188, 3451], [3484, 4998], [279, 945], [972, 1280], [1405, 2454], [2600, 2933], [2989, 3230], [3248, 3451], [3484, 3645], [3699, 3867], [3961, 4998], [279, 945], [972, 1280], [1405, 2454], [2600, 2874], [2885, 3090], [3188, 3451], [3484, 3645], [3699, 3867], [3961, 4190], [4200, 4998], [5215, 5444], [5458, 5627], [279, 1280], [1405, 3230], [3248, 3867], [3961, 4218], [4337, 4998], [5458, 5627], [279, 945], [972, 1280], [1405, 2454], [2600, 3090], [3188, 3451], [3484, 4998], [5215, 5444], [279, 945], [972, 1280], [1405, 2454], [2600, 2874], [2885, 3090], [3188, 3867], [3961, 4133], [4158, 4998], [279, 945], [972, 2454], [2600, 2933], [2989, 3090], [3188, 3451], [3484, 4218], [4337, 4998], [279, 945], [972, 1280], [1405, 2454], [2600, 2874], [2885, 3090], [3188, 3451], [3484, 3645], [3699, 3867], [3961, 4133], [4158, 4998], [5215, 5444], [279, 945], [279, 945], [279, 945], [972, 1280], [1405, 2454], [2600, 2874], [2885, 3601], [3601, 3645], [3699, 3867], [3961, 4998], [4158, 5627], [279, 945], [972, 2454], [2600, 3052], [3052, 3645], [3699, 4998], [5215, 5444], [5458, 5627], [279, 945], [972, 1280], [1405, 2454], [2600, 2874], [2885, 3451], [3484, 4998], [5215, 5444], [279, 945], [972, 1280], [1405, 2454], [2600, 2874], [2885, 3052], [3052, 3451], [3484, 3601], [3601, 3867], [3961, 4133], [4158, 4998], [5215, 5444], [5215, 5627]], \"sentences\": [\"Girl takes out carrots\", \"Girl takes out peeler\", \"Girl peels carrots\", \"Girl takes out cutting board\", \"Girl washes carrots\", \"Girl takes out knife\", \"Girl dices carrots\", \"Girl throws away top of carrot\", \"The person procures a pair of carrots from the fridge and places them in the sink.\", \"The person takes out a peeler from the drawer.\", \"The person peels the carrots over the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the carrots.\", \"The person throws the peels into the wastebin.\", \"The person washes her hands.\", \"The person takes out a knife from the drawer.\", \"The person removes the stems from the carrots.\", \"The person chops the carrots on the cutting board.\", \"The person throws the stems into the wastebin.\", \"The person washes the peeler  in the sink.\", \"She gets two carrots from the fridge.\", \"She skins the carrots.\", \"She gets a cutting board.\", \"She throws away the remains of the carrots.\", \"She gets a knife.\", \"She chops the carrots.\", \"She washes her hands and the utensils.\", \"She gets two carrots.\", \"She grabs a peeler.\", \"She peels the carrots.\", \"She gets a cutting board.\", \"She chops the carrots.\", \"She discards the tops of the carrots.\", \"The person procures a pair of carrots from the fridge and sets them in the sink.\", \"The person takes out a peeler from the drawer.\", \"The person peels the carrots over the sink.\", \"The person takes out a cutting board from the drawer.\", \"The person washes the carrots under the faucet.\", \"The person disposes of the carrot peels in the wastebin.\", \"The person washes her hands.\", \"The person takes out a knife from the drawer.\", \"The person cuts away the stems of the carrots.\", \"The person chops the carrots on the cutting board.\", \"The person disposes of the stems in the wastebin.\", \"The person washes her hands and the peeler in the sink.\", \"The woman get carrots out of the refrigerator.\", \"The woman peels the carrots into the sink.\", \"The woman then cleans the sink.\", \"The woman cuts off the tips of the carrots.\", \"The woman slices the carrots into small pieces.\", \"She gets the carrots.\", \"She gets a peeler.\", \"She peels the carrots and rinses them.\", \"She discards the peels.\", \"She chops the carrots.\", \"She took out carrots\", \"She took out peeler\", \"She peeled carrots\", \"She took out cutting board\", \"She washed carrots\", \"She threw away peels\", \"She washed hands\", \"She took out knife\", \"She chopped carrots\", \"Carrots are removed from the refrigerator.\", \"The person selects a peeler.\", \"The carrots are peeled.\", \"The person removes a cutting board.\", \"The carrots are washed.\", \"The scraps are discarded.\", \"The person rinses their hands.\", \"The person removes a knife.\", \"The ends are trimmed.\", \"The carrots are sliced.\", \"The scraps are discarded.\", \"The peeler is rinsed.\", \"She gathers carrots and a peeler.\", \"She peels the two carrots and rinses them.\", \"She removes the stems from the carrots.\", \"She removes the other end of the carrots and makes the sticks the same length.\", \"She dices both the carrots together.\", \"She throws away the scraps and cleans up.\", \"She grabs a couple carrots.\", \"She gets a peeler.\", \"She peels the carrots.\", \"She gets a cutting board and rinses the carrots.\", \"She discards the peels.\", \"She gets a knife and chops the carrots.\", \"She discards the waste.\", \"She took out carrots\", \"She took out peeler\", \"She peeled carrots\", \"She took out cutting board\", \"She washed carrots\", \"She took out knife\", \"She took off top and bottom of carrots\", \"She diced up carrots\", \"She gets the carrots.\", \"She gets a peeler and peels the carrots.\", \"She gets a cutting board.\", \"She rinses the carrots.\", \"She discards the peels.\", \"She chops off the ends of the carrots.\", \"She chops the carrots.\", \"She took out carrot\", \"She took out peeler\", \"She peeled carrots\", \"She took out cutting board\", \"She washed carrots\", \"She threw away peels\", \"She washed hands\", \"She took out knife\", \"She cut off carrot ends\", \"She chopped carrots\", \"She threw away carrots\", \"The woman walked to the refrigerator.\", \"She opened the refrigerator door and retrieved two carrots.\", \"Placed the carrots into the sink.\", \"Looked through several drawers to find the right utensil.\", \"Peeled the carrots in the kitchen sink.\", \"Looked in cupboard and then a drawer to retrieve cutting board.\", \"Rinsed the carrots and threw away scraps.\", \"washed hands.\", \"Looked in drawer to locate a knife and cut up the carrots.\", \"Threw out the remaining scraps.\", \"washed off utensil.\", \"The woman retrieves two carrots from the refrigerator and puts them in the sink.\", \"She retrieves a peeler and uses it to peel each carrot individually.\", \"She rinses the peeled carrots off in the sink.\", \"She disposes of the carrot peelings and washes her hands.\", \"She uses a butcher knife and chops both carrots up simultaneously on a wooden cutting board, cutting horizontally.\", \"She disposes of unwanted pieces.\", \"She washes her hands and the tools she used.\", \"She gets carrots out of the fridge.\", \"She gets a peeler out of the drawer.\", \"She peels the carrots.\", \"She gets a cutting board out of the cupboard.\", \"She throws the leftover peels into the garbage.\", \" She chops up the carrots.\", \"She throws the carrot ends into the garbage.\", \"The person takes a pair of carrots from the fridge.\", \"The person takes a peeler from the drawer.\", \"The person peels both carrots in the sink.\", \"The person takes out a cutting board.\", \"The person washes off the peeled carrots under the faucet.\", \"The person throws out the carrot peels into the wastebin.\", \"The person rinses off her hands in the sink.\", \"The person takes a large knife from the cutlery drawer.\", \"The person cuts the tops of the carrots off.\", \"The person chops up both carrots on the cutting board.\", \"The person throws the carrots tops into the wastebin.\", \"The person washes the peeler in the sink.\"], \"fps\": 29.4, \"num_frames\": 5719}, \"s23-d45.avi\": {\"timestamps\": [[232, 333], [347, 422], [477, 643], [690, 876], [896, 1306], [1356, 1698], [1718, 2298], [2299, 3856], [3895, 4125], [232, 422], [477, 1245], [1268, 2335], [2398, 3856], [3895, 4125], [232, 333], [347, 643], [690, 1245], [1268, 1698], [1718, 2335], [2398, 4125], [232, 1245], [1268, 1306], [1356, 1698], [1718, 2298], [2299, 2772], [2867, 4125], [232, 333], [347, 422], [477, 643], [690, 876], [896, 1245], [1268, 1306], [1356, 1956], [2044, 2335], [2398, 2772], [2867, 3856], [3895, 4125], [232, 333], [347, 422], [477, 643], [690, 1175], [1201, 1306], [1356, 1956], [2044, 2335], [2398, 2772], [2867, 3792], [3807, 4125], [232, 422], [477, 876], [896, 1306], [1356, 1956], [2044, 2335], [2398, 3792], [3807, 4125], [232, 333], [347, 422], [477, 643], [690, 876], [896, 1306], [1356, 1907], [1917, 2298], [2299, 3792], [3807, 4125], [232, 422], [477, 643], [690, 1245], [1268, 1558], [1558, 1956], [2044, 2538], [2547, 2772], [2867, 4070], [232, 422], [477, 643], [690, 1175], [1201, 1806], [1823, 2335], [2398, 3856], [4091, 4125], [232, 333], [347, 422], [477, 643], [690, 1175], [1201, 1806], [1823, 2335], [2398, 3792], [3895, 4125], [232, 333], [347, 422], [477, 643], [690, 1245], [1268, 1306], [1356, 1956], [2044, 2298], [2299, 2772], [2867, 3792], [3807, 4125], [232, 333], [347, 422], [477, 643], [690, 876], [896, 1175], [1201, 1956], [2044, 2335], [2398, 3792], [3807, 4125], [232, 1175], [1201, 1698], [1718, 2298], [2299, 3856], [3807, 4125], [232, 333], [347, 422], [477, 643], [690, 1175], [1201, 1956], [2044, 2298], [3895, 4125], [232, 643], [690, 1245], [1268, 1956], [2044, 2335], [2299, 4125], [232, 422], [477, 1306], [1356, 1956], [2044, 2335], [2398, 2772], [2867, 3856], [2398, 4125], [232, 643], [690, 1245], [1268, 1698], [1718, 2335], [3895, 4125]], \"sentences\": [\"Guy takes out cutting board\", \"Guy takes out knife\", \"Guy takes out plate\", \"Guy takes out pepper\", \"Guy cuts pepper in half\", \"Guy takes pit out of pepper\", \"Guy washes pepper\", \"Guy dices pepper\", \"Guy puts pepper on plate\", \"He gets out a cutting board and a knife.\", \"He gets a pepper and a plate.\", \"He rinses the peppers.\", \"He chops the peppers.\", \"He puts the peppers on the plate.\", \"He gets a cutting board.\", \"He gets a knife and plate.\", \"He grabs a pepper.\", \"He removes the insides of the pepper.\", \"He rinses the pepper.\", \"He chops the pepper and puts it on a plate.\", \"Get cutting board, knife, plate and pepper onto the counter.\", \"Half the pepper length-wise.\", \"Remove stem and seeds and discard.\", \"Rinse the pepper under water.\", \"Cut each half of the pepper width-wise into small strips.\", \"Cut the strips into cubes and transfer from cutting board to the plate.\", \"The person removes a cutting board.\", \"The person selects a knife.\", \"A plate is removed for serving.\", \"A pepper is removed from the refrigerator.\", \"The pepper is removed from its package and placed on the cutting board.\", \"The pepper is cut in half.\", \"The seeds and ribs are removed and discarded.\", \"The pepper halves are washed.\", \"The pepper halves are sliced.\", \"The slices are chopped.\", \"The chopped pepper pieces are placed on the plate.\", \"The person removes a cutting board.\", \"The person selects a knife.\", \"A plate is removed for the pepper.\", \"A pepper is removed from the refrigerator and the package is discarded.\", \"The pepper is cut in half.\", \"The seeds and ribs are removed and discarded.\", \"The pepper halves are washed.\", \"The peppers are sliced.\", \"The slices are chopped.\", \"The pepper pieces are placed on the plate.\", \"He gets a cutting board and a knife.\", \"He gets a plate and a pepper.\", \"He chops the pepper in half.\", \"He removes the insides of the pepper.\", \"He rinses the peppers.\", \"He dices the peppers.\", \"He puts the pepper on the plate.\", \"He gets a cutting board out the cupboard.\", \" He gets a knife out of the drawer.\", \"He gets a plate out of the cupboard.\", \"He gets a red pepper out of the fridge.\", \"He slices the red pepper in half.\", \"He removes the seeds of the red pepper by hand.\", \"He rinses the red pepper halves in the sink.\", \"He cuts the red pepper into small pieces.\", \"He puts the red pepper pieces on to the plate.\", \"He gets a cutting board and a knife.\", \"He gets a plate.\", \"He gets a bell pepper.\", \"He cuts the pepper in half.\", \"He washes the pepper.\", \"He cuts the pepper into slices.\", \"He dices the pepper.\", \"He puts the peppers onto the plate.\", \"He goes into the drawer and takes out a cutting board and knife.\", \"He goes to the cupboard and takes out a plate and places it on the counter.\", \"He goes to the refrigerator and takes out a red pepper and removes and disposes of its wrapper.\", \"He cut the pepper in half and then removes the insides and disposes them into the trash.\", \"He then goes to the sink and washes the pepper halves.\", \"He then slices and dices the red pepper.\", \"He picks up the pepper and places it on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person procures a bell pepper from the fridge, removes it from a bag, and throws the bag into the trash.\", \"The person chops the pepper in half, removes its stems and seeds, and throws the latter into the wastebin.\", \"The person washes the pepper halves in the sink.\", \"The person chops the bell pepper on the cutting board.\", \"The person sets the chopped bell pepper on the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a plate.\", \"The person gets out a pepper.\", \"The person cuts the pepper in half.\", \"The person scoops out the insides of the pepper and throws them away.\", \"The person washes the two pepper halves.\", \"The person slices the pepper halves into strips.\", \"The person slices the strips into little chunks.\", \"The person scoops up the chunks and puts them on the plate.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a plate from the cabinet.\", \"The person procures a pepper from the fridge.\", \"The person takes the pepper from a plastic bag and throws the bag into the wastebin.\", \"The person cuts the pepper in half, pulls out the stem and seeds and throws the latter into the wastebin.\", \"The person washes the pepper in the sink.\", \"The person chops the pepper on the cutting board.\", \"The person scoops the chopped pepper on the plate.\", \"Gather the following materials:  a cutting board, a sharp knife, a plate, and one red pepper.\", \"Use the knife to slice the pepper in half on the cutting board and remove the seeds.\", \"Rinse the pepper.\", \"Slice the pepper into strips, then dice the pepper.\", \"Place the diced pepper on the plate.\", \"The person takes a chopping board out from the drawer.\", \"The person takes a knife out from the drawer.\", \"The person takes out a plate from the cupboard.\", \"The person takes a pepper out from the refrigerator.\", \"The person cuts the pepper in half and removes the stem and seeds.\", \"The person rinses the pepper.\", \"The person cuts the pepper into small sizes and places them onto the plate.\", \"The man takes out a cutting board, a butcher knife, and a plate and places them on the counter.\", \"The man takes out a red pepper from the refrigerator and places it on the cutting board.\", \"The man cuts the red pepper in half, cuts off the stem, and removes the seeds.\", \"The man takes both halves of the red pepper and washes them.\", \"The man cuts the red pepper into small pieces and places them on the plate.\", \"Take out a Knife and Cutting board.\", \"Cut the pepper in half, lengthwise.\", \"The stem, seeds, and white membrane are then removed.\", \"The pepper is washed inside and out.\", \"Both halves of the pepper are cut into thin strips.\", \"All the pepper strips are then cut into small squares.\", \"And that's how you prepare a bell pepper!\", \"Man removes knife, cutting board, and plate.\", \"Man gets pepper.\", \"Man slices pepper in half and removes the inner pieces with his fingers.\", \"Man washes out pepper.\", \"Man slices and dices pepper and places it on the plate.\"], \"fps\": 29.4, \"num_frames\": 4168}, \"s26-d26.avi\": {\"timestamps\": [[187, 561], [638, 1577], [638, 1577], [1589, 1668], [1589, 1668], [1740, 1858], [1878, 2562], [2570, 2717], [2724, 3223], [3276, 4935], [3276, 4935], [5185, 5299], [187, 1577], [1589, 1858], [1878, 2717], [2724, 3026], [3132, 5299], [5348, 5803], [5814, 6720], [6725, 11901], [11938, 14393], [14399, 27854], [27996, 39719], [39743, 40875], [187, 1858], [1878, 2717], [2724, 4935], [5185, 5299], [5348, 6020], [6052, 8900], [9123, 14198], [14294, 19016], [19315, 40875], [187, 1858], [1878, 2717], [2724, 4935], [5185, 5299], [5348, 6020], [6052, 8900], [9123, 14198], [14294, 19016], [19315, 22806], [40917, 41121], [187, 1858], [1878, 2717], [2724, 5299], [5348, 5975], [5991, 11399], [11568, 12237], [12412, 14198], [14294, 16258], [16389, 17904], [18098, 19016], [19315, 23510], [23522, 26995], [27028, 39229], [39390, 40875], [187, 1858], [187, 1858], [1878, 2562], [2570, 4935], [5348, 5803], [5814, 8900], [9123, 10189], [10460, 13254], [13374, 14458], [14754, 17904], [18098, 19016], [19315, 26493], [26542, 27854], [27996, 32626], [33425, 40593], [187, 1858], [1878, 2562], [2570, 4935], [5185, 5803], [5814, 8900], [9123, 10189], [10460, 13254], [13374, 14458], [14754, 17904], [18098, 19016], [19315, 27854], [27996, 32626], [33425, 40593], [187, 561], [638, 1668], [638, 1668], [1740, 1858], [1740, 1858], [1878, 2562], [2570, 2717], [2724, 3223], [3276, 4935], [3276, 4935], [5185, 5599], [5602, 5803], [5814, 6020], [187, 561], [638, 1450], [1455, 1668], [1740, 2562], [2570, 4214], [6052, 11996], [12010, 14198], [14294, 17580], [17627, 19016], [19315, 23915], [23916, 25234], [25322, 39984], [40017, 40593], [187, 1450], [1455, 2717], [4250, 5768], [5185, 6720], [6725, 11996], [12010, 14393], [14399, 17580], [17627, 21956], [21969, 23510], [23522, 39719], [39743, 40593], [187, 1858], [187, 1858], [1878, 2562], [2570, 4935], [2724, 5803], [5773, 8900], [9123, 10189], [10460, 13254], [13374, 14458], [14754, 17904], [18098, 19016], [19315, 25750], [25768, 27854], [27996, 32626], [33425, 40593], [187, 1668], [1740, 1858], [1878, 2562], [2570, 4935], [5185, 5768], [5814, 8900], [9123, 10189], [10460, 13254], [13374, 14458], [14754, 17904], [18098, 19016], [19315, 27854], [27996, 32626], [33425, 40593], [187, 561], [638, 1668], [1740, 3223], [3276, 3581], [3612, 4935], [5185, 5803], [5773, 6507], [6668, 14198], [14294, 17580], [17627, 39719], [39743, 40593], [39743, 40593], [187, 1858], [1878, 2630], [2664, 4935], [5185, 5599], [5814, 10189], [10460, 12468], [12524, 14393], [14399, 18252], [18376, 24098], [24138, 30437], [30547, 39229], [40917, 41121], [187, 1577], [1589, 2717], [2724, 5299], [5185, 5803], [5602, 6720], [6725, 11996], [12010, 14198], [14294, 17580], [17627, 23510], [23522, 39719], [39743, 40296], [40300, 40593], [187, 1858], [1878, 4214], [5348, 5803], [5814, 6756], [6793, 11399], [11568, 12237], [12412, 14393], [14399, 17580], [17627, 21373], [21446, 24391], [24406, 27854], [27996, 39229], [39390, 39984], [40800, 40875], [187, 561], [638, 1858], [638, 1858], [1878, 2630], [2664, 3581], [3612, 4740], [4779, 5299], [4250, 6020], [5814, 10189], [10460, 14393], [14399, 19016], [19315, 26493], [26542, 39719], [40800, 40875], [187, 1668], [1740, 3369], [3440, 4214], [5348, 5867], [6052, 6843], [6850, 11996], [12010, 14458], [14754, 17580], [17627, 22483], [22540, 24098], [24138, 25424], [25431, 26995], [27028, 28240], [28435, 36570], [38776, 40593]], \"sentences\": [\"He took out pot\", \"He put water in pot\", \"He put pot on stove\", \"He turned on stove\", \"He put lid on pot\", \"He took out cutting board\", \"He took out cauliflower\", \"He took out knife\", \"He took off leaves\", \"He put away extra cauliflower\", \"He took out butter\", \"He threw out scraps\", \"He get a pot and fills in with water.\", \"He turns on the stove and covers the pot.\", \"He gets out the cauliflower, a cutting board, and a knife.\", \"He removes the leaves from the cauliflower.\", \"He discards the bad parts of the cauliflower.\", \"He rinses the cauliflower.\", \"He salts the water.\", \"He adds butter to a second pot.\", \"He adds the cauliflower to the boiling water.\", \"He adds several ingredients to the second pot and mixes.\", \"He removes the cauliflower and places it on a plate.\", \"He puts the cream sauce on the cauliflower.\", \"The person takes out two metal pots from a cabinet, fills one with water, puts it on the stove, turns on the stove, and then covers the water filled pot with a lid.\", \"The person takes out a cutting board from the drawer, a stalk of cauliflower from the fridge, and a knife from another drawer.\", \"The person uses the knife to remove the leaves from the cauliflower, chops it into halves, returns one half to the fridge, and takes out some butter.\", \"The person throws the leaves into the trash.\", \"The person washes the cauliflower in the sink and then dries his hands on a towel.\", \"The person takes several condiments from the pantry, and then removes a whisker and a spoon from the drawer.\", \"The person returns the butter to the fridge, washes the spoon in the sink, and sets the cauliflower into the boiling water of the pot on the stove with a ladle.\", \"The person washes the cutting board, dries it with a towel, then gets several condiments from the pantry and a plate from the cupboard.\", \"The person uses the condiments to make a sauce in the second pot, then after a long time removes the cauliflower from the first pot using the ladle to set it on a plate then pours the sauce onto the cauliflower.\", \"The person takes out two metal pots from a cabinet, fills one with water, puts it on the stove, turns on the stove, and then covers the water filled pot with a lid.\", \"The person takes out a cutting board from the drawer, a stalk of cauliflower from the fridge, and a knife from another drawer.\", \"The person uses the knife to remove the leaves from the cauliflower, cuts it in half, returns the other to the fridge, and takes out some butter.\", \"The person throws the leaves into the trash.\", \"The person washes the cauliflower in the sink and then dries his hands on a towel.\", \"The person takes several condiments from the pantry, then removes a whisker and a spoon from the drawer.\", \"The person scoops butter into the second pot, returns the rest to the fridge, then sets the cauliflower into the boiling water of the first pot using a ladle.\", \"The person washes the cutting board, dries it with a towel, then gets several condiments from the pantry and a plate from the cupboard.\", \"The person adds condiments to the second pot and whisks them.\", \"The person removes the cauliflower from the first pot using the ladle to set it on a plate then pours the sauce from the second pot onto the cauliflower.\", \"The person gets out two pots, fills one of the pots with water, puts them on the stove and turns it on.\", \"The person gets out a cutting board, a cauliflower, and a knife.\", \"The person cuts all the leaves off the cauliflower, cuts it in half, puts one half back in the fridge and throws away the leaves.\", \"The person rinses the cauliflower and his hands.\", \"The person adds what I think is salt to the pot with the water, and gets out more supplies as he waits for it to boil.\", \"The person puts butter in the empty pot.\", \"The person puts the cauliflower in the pot with the water.\", \"The person rinses the dishes.\", \"The person adds something I don't recognize to the pot with the cauliflower.\", \"The person gets out a plate.\", \"The person adds flour and milk to the butter, stirring regularly.\", \"The person stirs for a while, then adds pepper to the sauce pot.\", \"The person keeps waiting for the cauliflower to cook, cleaning up and putting things away while he waits.\", \"The person scoops the cauliflower out onto the plate and pours the sauce onto it.\", \"The person takes out a pair of metal pot from the drawer, fills one with water, and places them on the stove, turns the stove on, and covers the water filled pot with a lid.\", \"The person takes out a cutting board from the drawer.\", \"The person procures a cauliflower from the fridge.\", \"The person takes out a knife from the drawer, cuts off the leaves and stems, chops the cauliflower in half, returns half to the fridge and takes out some butter.\", \"The person throws the stem and leaves into the wastebin, then washes the cauliflower in the sink.\", \"The person takes several condiments from the pantry, and then a whisker and a spoon from the drawer.\", \"The person takes a utensil from the drawer and then another condiment from the fridge.\", \"The person spoons some butter into the second pot, then returns the rest the fridge, after which he washes the spoon in the sink and dries it on a towel.\", \"The person uses the utensil to put the cauliflower into the boiling water and covers the pot with a lid.\", \"The person takes another condiment from the pantry, uses a spoon from the drawer to scoop it into the boiling water, then returns the rest to the pantry.\", \"The person procures a plate from the cabinet and sets it on the counter.\", \"The person adds condiments to the second pot on the stove and whisks them.\", \"The person adds condiments to the second pot on the stove and whisks them, then covers the pot with a lid.\", \"The person wipes down the counter with a rag and then returns the condiments to the pantry.\", \"The person takes the cauliflower from the pot and puts it on the plate, then pours the sauce from the second pot over it.\", \"The person takes out a pair of metal pot from the drawer, fills one with water, and places them on the stove, turns the stove on, and covers the water filled pot with a lid.\", \"The person takes out a cutting board from the drawer, then procures a cauliflower from the fridge.\", \"The person takes out a knife from the drawer, cuts off the leaves and stems, chops the cauliflower in half, returns half to the fridge and takes out some butter.\", \"The person throws the stem and leaves into the wastebin, then washes the cauliflower in the sink.\", \"The person takes several condiments from the pantry, and then a whisker and a spoon from the drawer.\", \"The person takes a utensil from the drawer and then another condiment from the fridge.\", \"The person spoons some butter into the second pot, then returns the rest the fridge, after which he washes the spoon in the sink and dries it on a towel.\", \"The person uses the utensil to put the cauliflower into the boiling water and covers the pot with a lid.\", \"The person cleans off the cutting board in the sink, takes another condiment from the pantry, uses a spoon from the drawer to scoop it into the boiling water, then returns the rest to the pantry.\", \"The person procures a plate from the cabinet and sets it on the counter.\", \"The person adds condiments to the second pot on the stove and whisks them, then covers the pot with a lid.\", \"The person wipes down the counter with a rag and then returns the condiments to the pantry and fridge.\", \"The person takes the cauliflower from the pot and puts it on the plate, then pours the sauce from the second pot over it.\", \"He took out two pots\", \"He put water in pot\", \"He turned on stove\", \"He put lid on pot\", \"He took out cutting board\", \"He took out cauliflower\", \"He took out knife\", \"He cut off leaves\", \"He put back extra cauliflower\", \"He took out butter\", \"He threw away scraps\", \"He washed cauliflower\", \"He washed hands\", \"He gets two pots out of the cupboard.\", \"He fills one pot with water.\", \"He turns on the stovetop.\", \"He get a cauliflower out of the fridge.\", \"He chops a large floret off the cauliflower.\", \"He puts butter in the second pot.\", \"He puts the large floret in the boiling water of the first pot.\", \"He adds bouillon powder to the boiling water.\", \"He gets a plate from the cupboard.\", \"He adds milk to the pot with butter.\", \"He takes a small amount of stock from the cauliflower pot and adds it to the pot with milk and butter.\", \"He takes the floret out of the boiling stock and puts it on the plate.\", \"He pours the milk and butter mixture over the cauliflower.\", \"He gets two pots out and puts water in one.\", \"He gets a knife, cutting board, and cauliflower.\", \"He cuts down the cauliflower and rinses it.\", \"He salts the water.\", \"He puts butter in the other pot.\", \"He adds the cauliflower to the pot with water.\", \"He season the water.\", \"He adds ingredients to the sauce.\", \"He adds milk to the sauce.\", \"He puts the cauliflower on a plate.\", \"He puts some sauce on the cauliflower.\", \"The person takes out a pair of metal pot from the drawer, fills one with water, and places them on the stove, turns the stove on, and covers the water filled pot with a lid.\", \"The person takes out a cutting board from the drawer.\", \"The person procures a cauliflower from the fridge.\", \"The person takes out a knife from the drawer, cuts off the leaves and stems, chops the cauliflower in half, returns half to the fridge and takes out some butter.\", \"The person throws the stem and leaves into the wastebin, then washes the cauliflower in the sink.\", \"The person takes several condiments from the pantry, and then a whisker and a spoon from the drawer.\", \"The person takes a utensil from the drawer and then another condiment from the fridge.\", \"The person spoons some butter into the second pot, then returns the rest the fridge, after which he washes the spoon in the sink and dries it on a towel.\", \"The person uses the utensil to put the cauliflower into the boiling water and covers the pot with a lid.\", \"The person takes another condiment from the pantry, uses a spoon from the drawer to scoop it into the boiling water, then returns the rest to the pantry.\", \"The person procures a plate from the cabinet and sets it on the counter.\", \"The person adds condiments to the second pot on the stove and whisks them.\", \"The person adds condiments to the second pot on the stove and whisks them, then covers the pot with a lid.\", \"The person wipes down the counter with a rag and then returns the condiments to the pantry.\", \"The person takes the cauliflower from the pot and puts it on the plate, then pours the sauce from the second pot over it.\", \"The person takes out a pair of metal pot from the drawer, fills one with water, and places them on the stove, turns the stove on, and covers the water filled pot with a lid.\", \"The person takes out a cutting board from the drawer.\", \"The person procures a cauliflower from the fridge.\", \"The person takes out a knife from the drawer, cuts off the leaves and stems, chops the cauliflower in half, returns half to the fridge and takes out some butter.\", \"The person throws the stem and leaves into the wastebin, then washes the cauliflower in the sink.\", \"The person takes several condiments from the pantry, and then a whisker and a spoon from the drawer.\", \"The person takes a utensil from the drawer and then another condiment from the fridge.\", \"The person spoons some butter into the second pot, then returns the rest the fridge, after which he washes the spoon in the sink and dries it on a towel.\", \"The person uses the utensil to put the cauliflower into the boiling water and covers the pot with a lid.\", \"The person takes another condiment from the pantry, uses a spoon from the drawer to scoop it into the boiling water, then returns the rest to the pantry.\", \"The person procures a plate from the cabinet and sets it on the counter.\", \"The person adds condiments to the second pot on the stove and whisks them, then covers the pot with a lid.\", \"The person wipes down the counter with a rag and then returns the condiments to the pantry.\", \"The person takes the cauliflower from the pot and puts it on the plate, then pours the sauce from the second pot over it.\", \"He gets two pots.\", \"He starts water boiling in one pot.\", \"He gets the cauliflower and chops off its leaves.\", \"He cuts off the piece of cauliflower he needs.\", \"He puts the rest of the cauliflower back in the fridge.\", \"He rinses the cauliflower.\", \"He salts the water.\", \"He puts the cauliflower in the water.\", \"He seasons the cauliflower.\", \"He puts the cauliflower on the plate.\", \"He prepares the sauce.\", \"He puts the sauce on the cauliflower.\", \"The man adds water and heat to a pan.\", \"The man takes a cauliflower out of the refrigerator.\", \"The man cuts out a useful piece of the cauliflower.\", \"The man discards the unwanted pieces.\", \"The man gets supplies while he waits for the water to heat up.\", \"The man adds butter to the other pot.\", \"The man places the cauliflower into the boiling water.\", \"The man seasons the water.\", \"The man whisk the butter with some cream in the other pot.\", \"The man seasons the cream mixture and continues stirring.\", \"He waits for the pots to cook.\", \"The man places the cauliflower onto a plate and spoons the cream on top.\", \"He gets two pots and adds water to one.\", \"He gets a cutting board, knife, and the cauliflower.\", \"He prepares the cauliflower for cooking and puts the rest away.\", \"He rinses the cauliflower.\", \"He salts the water.\", \"He adds butter to the sauce pan.\", \"He adds the cauliflower to the boiling water.\", \"He seasons the cauliflower.\", \"He adds ingredients to the sauce.\", \"He puts the cauliflower on a plate.\", \"He adds water to the sauce.\", \"He puts sauce on the cauliflower.\", \"The man adds water to a pot.\", \"The man selects a piece of cauliflower to use.\", \"The man discards the unwanted pieces and washes the usable piece.\", \"The man adds broth to the water.\", \"The man gets supplies while waiting for the water to heat up.\", \"The man adds butter to the other pan.\", \"The man adds the cauliflower to the water.\", \"The man seasons the cauliflower in the water.\", \"The man whisks the melted butter.\", \"The man adds corn starch and cream to the butter.\", \"The man continues to whisk the butter and cream while adding water and seasoning.\", \"The man waits for the cauliflower to cook.\", \"The puts the cauliflower onto the plate.\", \"The man places the sauce onto the cauliflower.\", \"The person takes two pots with lids from a cabinet and places them onto the stove.\", \"The person fills one pot with water, then returns it to the stove where he places a lid over it and turns on the stove.\", \"The person takes a cutting board from the drawer.\", \"The person takes a cauliflower from the fridge and sets it on the cutting board.\", \"The person gets a knife from a drawer and cuts away the leaves.\", \"The person cuts the cauliflower in half and replaces the other half into the fridge.\", \"The person gets some butter from the fridge and throws the leaves into the trash.\", \"The person washes the cauliflower half and dries his hands on the towel.\", \"The person thrice took items from the pantry, and removed an egg beater, a spoon, and a plastic stirring spoon from the drawer.\", \"The person places the cauliflower into the boiling water of the pot.\", \"The person takes a plate out of the cabinet.\", \"The person appears to be making some sort of sauce with various condiments which he poured into the second pot and whisked while it cooked on the stove.\", \"After 30 minutes the person takes the cauliflower from the pot of water.\", \"The person pours the sauce onto the cauliflower on the plate.\", \"Add water to pot and place on stove, covered with lid.\", \"Use knife to remove large leaves from cauliflower and cut in half.\", \"Use knife to shave down cauliflower to remove unsavory bits.\", \"Rinse cauliflower.\", \"Add salt to water and leave pot uncovered.\", \"Add butter to saucepan.\", \"Place cauliflower in the pot's boiling water and cover with lid.\", \"Add seasoning to boiling cauliflower and replace lid.\", \"When the melted butter is browned, add flour and stir until smooth.\", \"Add cream to butter-flour mixture and whisk until smooth.\", \"Add boiling cauliflower stock to cream sauce and whisk thoroughly.\", \"Add pepper to cream sauce.\", \"Taste cream sauce to determine if seasoned appropriately.\", \"Use a fork to check the tenderness of the cauliflower.\", \"Pour creamsauce over plated cauliflower.\"], \"fps\": 29.4, \"num_frames\": 41224}, \"s25-d52.avi\": {\"timestamps\": [[205, 681], [834, 3534], [3567, 3656], [3656, 3971], [3989, 5502], [205, 681], [834, 3656], [3656, 3772], [3791, 3971], [3989, 5100], [5292, 5502], [205, 311], [395, 534], [548, 681], [834, 3534], [3567, 3656], [3656, 3971], [3989, 4100], [4142, 5013], [5059, 5357], [5447, 5502], [205, 311], [395, 534], [548, 681], [834, 3656], [834, 3656], [3656, 3772], [3791, 3971], [3989, 4100], [4142, 5502], [205, 681], [834, 3534], [3567, 3688], [3694, 3971], [3989, 5100], [205, 311], [395, 534], [548, 681], [834, 880], [920, 5013], [205, 3534], [3567, 3971], [3989, 4689], [5292, 5357], [5447, 5502], [205, 311], [395, 534], [548, 681], [834, 3534], [3567, 3656], [3656, 3772], [3791, 3971], [3989, 4100], [4142, 5013], [4719, 5100], [5059, 5357], [5447, 5502], [5447, 5502], [205, 311], [395, 681], [834, 3534], [3567, 3772], [3791, 3971], [3989, 4100], [5059, 5100], [5292, 5502], [205, 681], [834, 3534], [3567, 3772], [3791, 4100], [4142, 4689], [4142, 5100], [5292, 5502], [205, 311], [395, 534], [548, 681], [834, 3534], [3567, 3971], [5292, 5502], [5292, 5502], [205, 311], [395, 681], [834, 3656], [3656, 3971], [4719, 5502], [205, 311], [395, 534], [548, 681], [834, 3534], [3567, 3656], [3656, 3971], [3989, 5013], [3989, 5502], [205, 681], [834, 3534], [3567, 3971], [5059, 5100], [3989, 5357], [5447, 5502], [205, 311], [395, 534], [548, 681], [834, 3534], [3567, 3772], [3791, 3971], [3989, 4100], [3989, 5100], [5292, 5357], [5447, 5502], [205, 681], [834, 3534], [3567, 3971], [3989, 4100], [4142, 5100], [5292, 5502]], \"sentences\": [\"He gets the needed items.\", \"He shaves the kiwi.\", \"He rinses the peeler.\", \"He rinses the kiwi.\", \"He removes the last bits of skin and then cleans the knife.\", \"Get your kiwi, cutting board and peeler ready.\", \"Using the peeler, peel the kiwi over an open trash receptacle.\", \"Rinse off your peeler and place back in it's home.\", \"Rinse off the Kiwi.\", \"Get a knife and cut off the ends of the kiwi and place ends in trash.\", \"Drop the knife and wash the knife.\", \"He took out kiwi\", \"He took out cutting board\", \"He took out peeler\", \"He peeled kiwi\", \"He washed peeler\", \"He washed kiwi\", \"He took out knife\", \"He cut off ends of kiwi\", \"He washed kiwi\", \"He washed knife\", \"The person has taken the fruit from the cabinet.\", \"The cutting board has been placed on the counter.\", \"The first piece of skin has been peeled.\", \"The person has finished using the peeler to remove skin from the fruit.\", \"The person has finished washing the peeler.\", \"The person has put the peeler away.\", \"The person has washed the fruit.\", \"The person has sliced the first segment of the fruit.\", \"The person has washed the knife.\", \"The man takes out a kiwi.\", \"The man peels the kiwi.\", \"The man washes the peeler.\", \"The man rinses the kiwi under the tap.\", \"He finishes taking parts of the skin off with the knife.\", \"He gets a kiwi.\", \"He gets a cutting board.\", \"He gets a parer.\", \"He skins the kiwi.\", \"He cuts off the ends of the kiwi.\", \"Using a Potato Peeler the Person completely Peels the Kiwi\", \"The person then rinses the peeled kiwi in the sink\", \"The person cuts the tip off of one side\", \"The person re-rinses the kiwi\", \"The Person rinses the knife\", \"person gets kiwi\", \"person gets cutting board\", \"person gets fruit and vegetable peeler\", \"person peels kiwi\", \"person washes peeler\", \"person puts away peeler\", \"person washes kiwi\", \"person gets knife\", \"person uses knife to cut off remaining kiwi peel\", \"person throws away the cut off peel\", \"person washes kiwi\", \"person washes knife\", \"person begins to wash their hands\", \"He walks to the cupboard and gets out a kiwi.\", \"He opens up the drawer and takes out a cutting board and peeler.\", \"He walks over to the trash can and starts peeling the kiwi over it.\", \"He goes to the sink and rinses the peeler and puts it away.\", \"He then goes back to the sink and rinses the kiwi.\", \"He goes to the drawer and takes out a knife.\", \"He cuts off the ends of the kiwi and some more of the skin and then throws the waste away.\", \"He then washes the kiwi and the knife.\", \"He takes out the cutting board, a peeler, and a kiwi fruit.\", \"He opens the drawer to the trash and peels the kiwi with the kiwi peeler over the trash bin.\", \"He washes the peeler in the sink and puts it away in the drawer.\", \"He washes the kiwi in the sink.\", \"He uses the knife to cut off the top and bottom of the kiwi.\", \"He cuts off small edges of the kiwi and throws them in the trash.\", \"He washes the kiwi and the knife in the sink.\", \"He took out kiwi\", \"He took out cutting board\", \"He took out peeler\", \"He peeled the kiwi\", \"He washed the kiwi\", \"He washed the kiwi again\", \"He washed the knife\", \"He grabs a kiwi.\", \"He gets a cutting board and peeler.\", \"He peels the kiwi.\", \"He rinses the kiwi.\", \"He shaves off the last bits of skin and drops the knife.\", \"He took out a kiwi\", \"He took out a cutting board\", \"He took out a peeler\", \"He peeled kiwi\", \"He washed peeler\", \"He washed kiwi\", \"He cut off ends of kiwi\", \"He washed knife\", \"First he gathers the kiwi, cutting board and vegetable parer.\", \"Using the vegetable parer, he slowly peels the skin from the kiwi.\", \"He then rinses the kiwi with tap water.\", \"He removes the ends of the kiwi and some bits of peel and discards them.\", \"Finally, he rinses the kiwi again.\", \"The kiwi is now ready to eat.\", \"The person grabs the kiwi.\", \"The person retrieves the cutting board.\", \"The person retrieves the kiwi peeler.\", \"The person peels the kiwi.\", \"The person puts away the kiwi peeler.\", \"The person washes the kiwi.\", \"The person grabs a knife.\", \"The person cuts the ends and sides of the kiwi.\", \"The person rewashes the kiwi.\", \"The person washes the knife.\", \"A man enters the kitchen, removes a kiwi from the cupboard, a cutting board and peeler from the drawer and begins to peel the kiwi.\", \"He peels the kiwi over the trash can.\", \"He washes the kiwi and the peeler and returns the clean peeler to the drawer.\", \"He removes a knife from the drawer.\", \"He cuts the ends off of the kiwi as well as any remaining rind.\", \"He washes the kiwi and again as well as the knife.\"], \"fps\": 29.4, \"num_frames\": 5660}}"
  },
  {
    "path": "NLQ/2D-TAN/data/TACoS/val.json",
    "content": "{\"s34-d28.avi\": {\"timestamps\": [[201, 487], [501, 954], [1007, 1473], [1537, 2980], [3122, 3506], [3570, 3995], [4099, 6848], [6893, 7195], [7217, 8202], [8234, 8679], [8705, 9187], [9226, 10091], [10149, 11750], [201, 487], [501, 609], [753, 954], [1007, 1473], [1537, 2980], [3122, 3506], [3570, 3864], [3941, 6848], [6893, 7195], [7217, 8021], [8050, 10091], [10149, 11750], [201, 954], [1007, 1473], [1537, 2613], [2669, 3506], [3570, 7195], [7217, 8021], [8050, 8539], [8574, 9956], [9970, 11750], [201, 334], [428, 609], [753, 835], [880, 1473], [1537, 2613], [2669, 3864], [3941, 6848], [6893, 7195], [7217, 8021], [8050, 8539], [8574, 9187], [9226, 9833], [9901, 10211], [201, 487], [501, 954], [1007, 1473], [1537, 2613], [2669, 6848], [6893, 8202], [8234, 10091], [10266, 11750], [201, 835], [880, 954], [1007, 2613], [2669, 3506], [3570, 3864], [3941, 7195], [7217, 8021], [8050, 8539], [8574, 9187], [9226, 9833], [10149, 11750], [201, 1473], [1537, 2980], [3122, 3995], [4099, 6848], [6893, 8202], [8234, 10091], [9901, 11568], [201, 334], [428, 609], [753, 835], [880, 1473], [1537, 2980], [3122, 3506], [3570, 3995], [201, 334], [428, 954], [1007, 1473], [1537, 3506], [3570, 3864], [4099, 6848], [6893, 7306], [7359, 7737], [7832, 8021], [8050, 8539], [8574, 9187], [9226, 9833], [10149, 10653], [11605, 11750], [201, 487], [501, 609], [753, 835], [880, 1473], [1537, 2980], [3941, 7195], [7217, 8021], [8050, 8539], [8574, 9187], [9226, 9833], [201, 334], [428, 609], [753, 835], [880, 1473], [1537, 2613], [2669, 3341], [3412, 3864], [3941, 3995], [3122, 6848], [6893, 7195], [201, 334], [428, 609], [753, 835], [880, 1473], [1537, 2613], [2669, 3341], [3412, 3864], [4099, 6848], [6893, 7195], [7217, 7553], [7583, 8021], [8050, 8539], [8574, 9187], [201, 954], [1007, 1473], [1537, 2613], [2669, 2980], [3122, 3506], [3570, 3995], [3941, 6848], [6893, 7195], [7217, 8202], [8234, 8679], [8705, 9187], [9901, 10091], [9901, 10479], [10708, 11750], [201, 3864], [4099, 6027], [4099, 6027], [4099, 6027], [4099, 6027], [4099, 6027], [4099, 6027], [4099, 6027], [201, 487], [501, 954], [1007, 1473], [1537, 2613], [2669, 2980], [3122, 3657], [3699, 3810], [6042, 6247], [6305, 7195], [7217, 8021], [8050, 8539], [8574, 9187]], \"sentences\": [\"The person gets out a knife.\", \"The person gets out a wooden plate and a bowl.\", \"The person gets out an orange.\", \"The person peels the orange.\", \"The person throws away the orange peel.\", \"The person breaks the orange into quarters.\", \"The person cuts the orange into chunks.\", \"The person scrapes the pieces of orange into the bowl.\", \"The person adds sugar to the orange pieces.\", \"The person adds cream to the oranges.\", \"The person stirs the orange pieces.\", \"The person adds milk to the orange pieces.\", \"The person washes and puts away the dishes he used.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person gets out a bowl.\", \"The person gets out an orange.\", \"The person peels the orange.\", \"The person throws away the peel.\", \"The person breaks the orange into quarters.\", \"The person cuts the orange quarters into pieces.\", \"The person puts the orange pieces in the bowl.\", \"The person adds sugar to the orange pieces.\", \"The person adds milk and cream to the orange pieces.\", \"The person rinses and puts away the dishes.\", \"He gets out the needed equipment.\", \"He gets an orange.\", \"He peels the orange.\", \"He discards the peels.\", \"He chops the orange and puts it into a bowl.\", \"He puts sugar on the oranges.\", \"He puts milk on the oranges.\", \"He stirs them up and adds cream.\", \"He cleans up.\", \"The person takes out a knife.\", \"The person takes out a cutting board.\", \"The person takes out a bowl.\", \"The person takes out an orange.\", \"The person uses his hands to peel the orange.\", \"The person separates the orange into quarters.\", \"The person takes each quarter of orange and separates them into individual slices then chops each slice with-wise.\", \"The person places the orange pieces into the bowl.\", \"The person sprinkles sugar on top of the oranges.\", \"The person adds a little bit of milk to the oranges.\", \"The person mixes the oranges, sugar and milk with a spoon.\", \"The person adds yogurt(?) to the oranges.\", \"The person is done.\", \"The man takes out a knife.\", \"The man takes out a cutting board and bowl.\", \"The man takes the orange out of the refrigerator.\", \"The man peels the orange with his finger.\", \"The man slices the orange and places it into the bowl.\", \"The man adds sugar to the bowl.\", \"The man adds milk and cream to the bowl and mixes it in.\", \"The man washes up.\", \"He gets out the equipment.\", \"He gets an orange.\", \"He peels the orange.\", \"He discards the rind.\", \"He separates the slices.\", \"He chops the slices and puts them in a bowl.\", \"He adds sugar to the oranges.\", \"He adds milk to the oranges.\", \"He stirs the bowl.\", \"He adds cream to the bowl.\", \"He cleans up.\", \"Take out a small knife, a cutting board, a bowl, and an orange.\", \"Peel the orange with your hands, using the knife for any difficult spots.\", \"Discard the orange peel, separate the orange into four sections, removing and discarding the inner white part.\", \"Separate the orange into individual sections and cut all of these into small chunks.\", \"Put the cut orange chunks in the bowl and take out sugar and a spoon, sprinkle two spoonful of sugar on the oranges and put away the sugar.\", \"Take out a box of milk product and add some to the oranges, then put it away and get a different milk product and add it to the oranges, then swirl and stir with a spoon.\", \"Wash your hands, and wash and put away the spoon, the knife, and the cutting board.\", \"He took out knife\", \"He took out cutting board\", \"He took out bowl\", \"He took out orange\", \"He peeled orange\", \"He threw away peel\", \"He broke orange into pieces\", \"Get a plate, a small knife and a bowl.\", \"Get the orange out of the refridgerator\", \"Peel the orange\", \"Cut the bottom off the orange\", \"Tear the orange into quarters, disposing of the middle.\", \"Tear each quarter in half and cut the resulting eighths into three pieces.\", \"Dump the orange pieces into the bowl.\", \"Get some sugar from the cabinet and a spoon.\", \"Spread a spoon and a half of sugar evenly over the orange pieces in the bowl.\", \"Get some milk out of the refrigerator and pour a small amount over the oranges.\", \"Stir the oranges with the spoon.\", \"Get some cream out of the refrigerator and pour a small amount onto the oranges.\", \"Stir the oranges again.\", \"Clean up.\", \"Takes a knife out of the drawer.\", \"Takes out a cutting board.\", \"Takes out a bowl.\", \"Takes an orange of the refrigerator.\", \"Peels the skin off the orange.\", \"Slices up the orange and puts the pieces into a bowl.\", \"Sprinkles some kind of powder on the oranges.\", \"Pours a liquid on the oranges.\", \"Stirs it all together.\", \"Pours a different liquid on the oranges.\", \"He took out knife\", \"He took out cutting board\", \"He took out bowl\", \"He took out orange\", \"He peeled orange\", \"He threw away peel\", \"He broke up orange\", \"He threw away seeds\", \"He cut orange\", \"He put orange in bowl\", \"He took out knife\", \"He took out cutting board\", \"He took out bowl\", \"He took out orange\", \"He peeled orange\", \"He threw out peels\", \"He separated orange\", \"He cut up orange\", \"He put orange in bowl\", \"He took out sugar\", \"He put sugar in bowl\", \"He poured juice in bowl\", \"He mixed up oranges\", \"He opens drawers to take out a knife, a circular cutting board, and a metal bowl.\", \"He gets an orange from the refrigerator and goes back to the counter with it.\", \"He uses his fingers to rip off the peels of the orange.\", \"He uses a knife to cut off remaining areas which he does not want attached to the orange.\", \"He opens the drawer for the trash and throws away all remnants of the peel.\", \"He uses his fingers to tear the orange apart into several pieces and throws one pieces away into the trash.\", \"He uses the knife and his fingers to tear the pieces of oranges apart and then cut them into smaller pieces.\", \"He uses the knife to brush all of the pieces of oranges from the cutting board into the metal pot.\", \"He goes to the cabinet and gets out a container of sugar and then spoons some sugar onto the oranges.\", \"He goes to the refrigerator and gets out a carton of milk and pours some milk onto the oranges.\", \"He shakes the bowl and then uses the spoon to mix around the ingredients that are inside the bowl.\", \"He goes back to the refrigerator and gets out some cream (white liquid substance) which he pours on top of the mixture in the bowl.\", \"He uses a rag to clean the area around the bowl and then washes his hands before using a spoon to mix the ingredients some more.\", \"He individually washes the spoon, knife, and cutting board before putting them back in their original spots.\", \"He broke orange into parts\", \"He chopped up orange\", \"He peeled orange\", \"He threw away peel\", \"He took out an orange\", \"Took out bowl\", \"Took out knife\", \"Took out cutting board\", \"The gentleman enters the kitchen and retrieves a knife from the drawer.\", \"He then proceeds to get a cutting board and silver bowl from another drawer.\", \"The man gets an orange from the refrigerator.\", \"He uses his fingers to peel the skin of the orange.\", \"He takes a knife and cuts off the tip of the peeled orange, before cleaning up the scraps.\", \"He uses his hand and breaks the orange apart.\", \"He then takes the two parts that he broke apart and breaks each one into two, so there are 4 halves.\", \"He then takes the knife and makes slices into the orange halves.\", \"After all the halves are sliced smaller, he picks up the cutting board and places the pieces into the waiting silver bowl.\", \"He shakes the bowl with the oranges, then goes to retrieve some sugar from the cabinet. He then puts two teaspoons of sugar on the oranges.\", \"He then retrieves milk from the refrigerator and pours some into the bowl.\", \"He then uses a spoon to mix the oranges with the sugar and milk.\"], \"fps\": 29.4, \"num_frames\": 11800}, \"s36-d27.avi\": {\"timestamps\": [[165, 363], [396, 531], [544, 686], [757, 876], [925, 1451], [1505, 1610], [1636, 1787], [1815, 2608], [2959, 3243], [3312, 3465], [3535, 4243], [165, 363], [396, 531], [544, 686], [757, 1787], [1815, 2608], [2959, 3243], [3312, 3465], [3535, 4243], [165, 363], [396, 531], [544, 686], [757, 1610], [1636, 2608], [2959, 3243], [3312, 3465], [3535, 4243], [165, 363], [396, 531], [544, 686], [757, 876], [925, 1610], [1636, 2608], [2959, 3243], [3312, 3465], [165, 363], [396, 686], [757, 876], [925, 1107], [1171, 1610], [1636, 1787], [1815, 2608], [2959, 3243], [3312, 3465], [3535, 3996], [4099, 4243], [165, 363], [396, 531], [544, 686], [757, 876], [925, 1107], [1171, 1204], [1248, 1610], [1636, 2608], [2959, 3243], [3312, 3465], [3535, 4243], [165, 363], [396, 531], [544, 686], [757, 1107], [1171, 1610], [1636, 2608], [2959, 3243], [3312, 3465], [3535, 4243], [165, 363], [396, 531], [544, 686], [757, 1204], [1248, 2608], [2959, 3243], [3312, 3465], [165, 363], [396, 531], [544, 686], [757, 876], [925, 1204], [1248, 1610], [1636, 2608], [2959, 3243], [3312, 3465], [3535, 4243], [165, 363], [396, 531], [544, 686], [757, 876], [925, 1204], [1248, 1610], [1636, 2608], [2959, 3243], [3312, 3465], [3535, 3996], [4099, 4243], [165, 363], [396, 531], [544, 686], [757, 876], [925, 1107], [1171, 1204], [1248, 1610], [1636, 2608], [2959, 3243], [3312, 3465], [3535, 3996], [4099, 4243], [165, 686], [757, 1107], [1171, 1610], [1636, 2608], [3535, 4243], [165, 686], [757, 876], [925, 1107], [1171, 1204], [1248, 1787], [1815, 2163], [2202, 2608], [2959, 3243], [3312, 3465], [3535, 3996], [4099, 4243], [165, 686], [757, 1107], [1171, 1610], [1636, 2608], [2959, 3465], [2959, 4243], [165, 686], [757, 1107], [1171, 1610], [1636, 1990], [2011, 2608], [2959, 3465], [3535, 4243], [165, 686], [757, 876], [925, 1107], [1171, 1787], [1815, 2608], [3535, 4243], [165, 363], [396, 531], [544, 686], [757, 876], [925, 1107], [1171, 1204], [1248, 2608], [2959, 3243], [3312, 3465]], \"sentences\": [\"The man got the onion out of the cupboard.\", \"The man got out a cutting board.\", \"The man got out the knife.\", \"The man cut the ends off the onion.\", \"The man cut the onion in half and peeled off a layer of skin.\", \"He peeled off the other layer.\", \"The man cleared off the cutting board before he cut the onion.\", \"The man diced the onion.\", \"The man got out a plate.\", \"The man put the onion on the plate.\", \"The man squirted lemon juice on the onion.\", \"The person gets out an onion.\", \"The  person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person peels the onion and cuts it in half.\", \"The person chops up the onion.\", \"The person gets out a plate.\", \"The person puts the onion pieces on the plate.\", \"The person gets out some lemon juice and adds it to the onion.\", \"The person gets out an onion.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person peels the onion and cuts it in half.\", \"The person chops up the onion.\", \"The person gets out a plate.\", \"The person puts the onion pieces on the plate.\", \"The person gets out some lemon juice and adds it to the onion.\", \"He took out onion\", \"He took out cutting board\", \"He took out knife\", \"He cut off end of onion\", \"He peeled onion\", \"He diced onion\", \"He took out plate\", \"He put onion on plate\", \"He walked to the back cabinets and took out an onion.\", \"He walked to the draweer and took out a cutting board and a knife\", \"He cut the ends of the oninon\", \"He peeled the Onion\", \"He cut the Onion in half and finished the peeling process\", \"Cleared the cutting board.\", \"He diced the onions.\", \"He walked back to the cabinets, look through them, took a plate out, and brought it to the counter.\", \"He put the diced onions on the plate.\", \"He walked back to the cabinets trying to find the lemon juice.\", \"he cover a portion of the onion with the lemon juice.\", \"The person takes an onion out of the cupboard.\", \"The person gets a chopping board and places it on the counter top.\", \"The person gets a knife out of the drawer.\", \"The person cuts each end of the onion off.\", \"The person removes the skin from the onion.\", \"The person slices the onion in half.\", \"The person discards the rest of the onion skin.\", \"The person slices the onion into small pieces.\", \"The person gets a plate out of the cupboard.\", \"The person places the chopped onion onto the plate.\", \"The person squirts some lemon juice over the chopped onion.\", \"The person takes an onion from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person cuts the ends off the onion and peels it.\", \"The person chops the onion in half and peels it further.\", \"The person dices the onion on the cutting board.\", \"The person procures a plate from the cabinet.\", \"The person sets the chopped onion on the plate.\", \"The person takes a bottle of lemon juice from the pantry and sprinkles it on the onions.\", \"He took out onion\", \"He took out cutting board\", \"He took out knife\", \"He peeled onion\", \"He chopped onion\", \"He took out plate\", \"He put onion on plate\", \"The person gets out an onion.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts off the top and bottom of the onion.\", \"The person cuts the onion in half.\", \"The person peels the onion.\", \"The person cuts the onion up.\", \"The person gets out a plate.\", \"The person puts the onion on the plate.\", \"The person gets out some lemon juice and adds it to the onion.\", \"The person gets out an onion.\", \"The  person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts off the top and bottom of the onion.\", \"The person cuts the onion in half.\", \"The person peels each half of the onion.\", \"The person chops up the onion.\", \"The person gets out a plate.\", \"The person puts the chopped onion on the plate.\", \"The person gets out some lemon juice.\", \"The person adds lemon juice to the onion.\", \"The person gets out an onion.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts off the ends of the onion.\", \"The person peels some skin off the onion.\", \"The person cuts the onion in half.\", \"The person peels off the rest of the skin.\", \"The person slices each half into strips, then slices the strips crosswise into chunks.\", \"The person gets out a white plate.\", \"The person scrapes the onion chunks onto the white plate.\", \"The person gets out some lemon juice.\", \"The person shakes lemon juice onto the onion chunks.\", \"gather onion, cutting board and knife\", \"cut off ends from onion, peel skin\", \"cut onion in half and peel remaining skin\", \"cut 1/2 onion lengthwise, turn, cut into smaller pieces (dice) do the same for other half\", \"place diced onion on a plate and season with lemon juice\", \"The man takes out an onion, a cutting board, and a knife.\", \"The man cuts the ends off the onion.\", \"He peels the skin off the onion.\", \"He slices the onion in halve.\", \"He peels off the remaining skin, and pushes scraps off the cutting board.\", \"He dices the first half of the onion.\", \"He dices the other half of the onion.\", \"He takes out a plate.\", \"He scrapes the diced onion onto the plate.\", \"He takes out lemon juice.\", \"He puts lemon juice on the diced onion.\", \"Take out an onion, knife, and cutting board. Place the cutting board on the counter and place the onion on the cutting board.\", \"Cut off both ends of the onion and peel off the yellow skin.\", \"Cut the onion horizontally and peel off the first layer of onion for both halves.\", \"Take one of the onion halves and slice the onion with the knife horizontally, while keeping the slices together. Turn the onion half ninty degrees and slice the onion vertically. Repeat with the second half of the onion.\", \"Find a clean plate and place the diced onion on the plate.\", \"Squeeze lemon juice onto the diced onion.\", \"take an onion and place it on a cutting board\", \"cut off both ends of the onion and peel away the skin\", \"slice the onion directly in half and peel away any excess skin from each half\", \"continue cutting slicing the onion pieces completely across from end to end\", \"once the onion has been sliced from end to end, go back and slice across in the opposite direction (so that the onion is diced into little squares).\", \"then place the diced onion pieces onto a small plate\", \"sprinkle the onion with a little lemon juice\", \"First get a chopping board, a knife and your onion you're going to cut.\", \"Next, chop off 2 ends of the onion.\", \"Peel off all the skin off the onion.\", \"Cut the onion in half and peel off the outer layers of the onion.\", \"Dice the rest of the onions into square bits.\", \"Grab lemon juice and put it on your onions.\", \"He took out onion\", \"He took out cutting board\", \"He took out knife\", \"He cut off top of onion\", \"He peeled onion\", \"He cut onion in half\", \"He sliced on onion\", \"He took out plate\", \"He put onion on plate\"], \"fps\": 29.4, \"num_frames\": 4374}, \"s35-d41.avi\": {\"timestamps\": [[286, 25076], [286, 25076], [286, 25076], [286, 25076], [286, 25076], [286, 25076], [286, 25076], [286, 25076], [286, 25076], [286, 25076], [286, 25076], [286, 25076], [25189, 25626], [25657, 26511], [26596, 27190], [286, 1336], [1360, 1974], [2419, 3634], [3705, 5489], [5507, 20305], [20421, 23042], [23121, 27190], [286, 1413], [1476, 1974], [2419, 3279], [3313, 4652], [4655, 6905], [6905, 9151], [9274, 20826], [20830, 23042], [23121, 24452], [24536, 26983], [286, 1336], [1360, 1924], [1943, 2652], [2667, 2916], [3016, 4265], [4282, 5289], [5289, 20563], [20563, 23042], [23121, 25552], [25567, 26511], [26989, 27099], [286, 1336], [1360, 1974], [2419, 3499], [3607, 3946], [3952, 6700], [6702, 20868], [20888, 23208], [23275, 25552], [25567, 26511], [26596, 27099], [286, 853], [904, 1974], [2419, 2916], [3016, 5489], [5507, 20584], [20596, 26983], [286, 853], [904, 1336], [1360, 1924], [1943, 2916], [3016, 6223], [6235, 23042], [23121, 26983], [286, 1413], [1476, 2916], [3016, 3946], [3952, 4926], [4947, 5825], [5893, 7169], [7245, 9964], [10096, 14050], [14148, 22189], [22192, 24708], [24764, 26951], [286, 1413], [1476, 1974], [2419, 2916], [3016, 3499], [3607, 5549], [5611, 6507], [6643, 20305], [20421, 23042], [23121, 26511], [286, 853], [904, 1924], [1943, 6333], [6386, 23042], [26596, 27099], [286, 1336], [1360, 1974], [2419, 2916], [3016, 3499], [3607, 4731], [4754, 6507], [6643, 20563], [20563, 20584], [20596, 23042], [23121, 24452], [24536, 24708], [24764, 25626], [25657, 26511], [26596, 26983], [27124, 27190], [286, 1413], [1476, 1974], [2419, 3499], [3607, 6472], [6472, 20305], [20421, 23208], [27124, 27190], [286, 853], [904, 1974], [2419, 4265], [4282, 5489], [5507, 20563], [20563, 23042], [26596, 26983], [286, 853], [904, 1336], [1360, 1924], [1943, 2916], [3016, 6333], [6386, 20305], [20421, 24339], [24361, 24708], [24764, 25552], [25567, 26511], [23275, 26983], [286, 853], [904, 1924], [1943, 2916], [3016, 6507], [6643, 23042], [23121, 25521], [286, 853], [904, 1336], [1360, 1582], [1599, 2578], [2603, 2916], [3016, 3279], [3313, 3499], [3607, 4265], [286, 853], [904, 1336], [1360, 1924], [1943, 2916], [4282, 6223], [6235, 23042], [26989, 27099], [286, 1413], [1476, 1974], [2419, 2578], [2603, 2916], [3016, 3499], [3607, 4265], [3016, 5289], [5289, 6507], [6643, 20563], [20563, 25552], [25567, 26511], [286, 1413], [1476, 1974], [2419, 2916], [3016, 3634]], \"sentences\": [\"The person throws the skin in the garbage and rinses off the plate.\", \"The person cleans the knives and the cutting board and returns all of them to the drawer.\", \"The person uses the spoon to remove any remaining skin from the bowl and place it on the plate with the rest of the skin.\", \"The person rinses her hands in the sink and takes a spoon out of the drawer.\", \"Using her hands and a knife, the person seperates the fruit from the skin.\", \"The person cuts two of those pieces in half and shakes the juices into the bowl.\", \"The person cuts each half in half again and shakes the excess juice into the bowl.\", \"The person cuts the pomegranate over the bowl and shakes out the juices into the bowl.\", \"The person cuts the ends off of the pomegranate.\", \"The person rolls up her sleeves and removes a cutting board and two knives from the drawer.\", \"The person rinses the pomegranate in the bowl over the sink.\", \"The person removes a Pomegranate from the fridge as well as a bowl and plate from the cabinet.\", \"The person transfers the fruit from the bowl to the plate using the spoon.\", \"The person cleans the bowl and returns it to the cabinet.\", \"The person cleans off the counter, puts the towel away and rinses her hands.\", \"The woman takes out a pomegranate, a bowl, and a plate.\", \"She washes the pomegranate.\", \"The woman slices the ends off the pomegranate.\", \"The woman slices the pomegranate into four pieces.\", \"The woman removes the usable fruit from the inner sides of the pomegranate.\", \"She removes the unwanted pieces from the bowl.\", \"The woman washes up.\", \"Take out a pomegranate, a plate, and a small bowl.\", \"Place the pomegranate in the small bowl and wash the pomegranate in the bowl, then drain out the water.\", \"Take out a cutting board and two small knives.\", \"Start cutting the pomegranate in half lengthwise and finish the cut in the bowl to catch the juice, then place on the plate.\", \"Cut the pomegranate halves into quarters and then again to make eighths.\", \"Hold one of the eighths over the bowl and using the knife tap the piece on the back to dislodge the seeds and pry them out with the knife from the front.\", \"Repeat this process for the remaining pomegranate, remove debris from the seeds as you go.\", \"Use a spoon to remove any remaining debris that fell into the bowl of seeds.\", \"Wash the knives and the cutting board, then put them away.\", \"Discard the peel and debris and wash the plate, move the seeds from the bowl to the plate then wash and put away the bowl and wipe the counter.\", \"She gets a pomegranate, a bowl, and a plate.\", \"She rinses the pomegranate.\", \"She gets out a cutting board.\", \"She gets out two knives.\", \"She cuts it in half.\", \"She quarters it.\", \"She gets the good parts out of the pomegranate.\", \"She removes the bad parts from the \\\"good\\\" bowl.\", \"She cleans up and puts the pomegranate on the plate.\", \"She cleans the bowl and puts it away.\", \"She wipes down the counter.\", \"Retrieve pomegranate, bowl, and plate.\", \"Wash pomegranate and bowl.\", \"Retrieve cutting board and knife.\", \"Remove ends from pomegranate and slice in half lengthwise over bowl.\", \"Cut into large chunks.\", \"Using knife and fingers, dislodge seeds over bowl.\", \"With a spoon, pick out any chunks so only seeds remain.\", \"Place seeds on plate.\", \"Clean and put away all items used.\", \"Clean counter.\", \"She gets a pomegranate.\", \"She rinses the pomegranate.\", \"She get two knives and a cutting board.\", \"She cuts the pomegranate.\", \"She gets the good parts of the pomegranate.\", \"She cleans up.\", \"She gets a pomegranate.\", \"She gets a plate and bowl.\", \"She rinses the pomegranate.\", \"She gets a cutting board and knife.\", \"She cuts the pomegranate.\", \"She separates the edible parts of the pomegranate from the inedible parts.\", \"She cleans the kitchen.\", \"Lady enters the kitchen, and searches for the fruit inside the fridge, after finding it she closes the fridge, opens a cupboard and finds a plate and bowl she can use for the pomegranate. She then dumps the excess water off the plate, places it on the counter, and starts to wash the pomegranate in the sink.\", \"After using the bowl to wash the pomegranate, the then places it on the counter, rolls up here sleeves and pulls out two kitchen knifes and places then on the cutting board that she also pulled out.\", \"She then takes the pomegranate and slices off the ends. She then beings to slice the pomegranate in half, when juice starts to come out of the pomegranate she places it over the bowl to catch the juice.\", \"She then ensures that all the excess juice is in the bowl and places on half of the pomegranate on the plate and the other on the cutting board.\", \"She then cuts those pieces of pomegranate into quarter slices, the cuts those quarter slices int halves.\", \"She then takes each piece and starts to take the pits out of the pieces she cut up.\", \"She then proceeds to do this to all the pieces of pomegranate.\", \"she then uses her hands to get at anything she missed with the knife.\", \"After she is done cutting what she can away from the pomegranate, she then washes her hands, then using a spoon, she tries to get as much of the peel out of the bowl.\", \"She then cleans and washes the knifes, the cutting board and the plate, then proceeds to put them away.\", \"She then dumps the reminisce of the pomegranate onto the plate and washes and puts away the bowl. She then wipes down the countertop.\", \"The woman takes a pomegranate out of the cabinet.\", \"She washes the pomegranate.\", \"She gathers some knives and a cutting board.\", \"The woman cuts off the tips of the pomegranate.\", \"The woman slices the pomegranate.\", \"She then slices those pieces in half.\", \"The woman removes the usable fruit.\", \"The woman removes the unusable parts from the bowl.\", \"The woman washes up and places the pomegranate on the plate.\", \"She gets a pomegranate.\", \"She rinses the pomegranate.\", \"She cuts the pomegranate.\", \"She separates the edible from the inedible parts of the pomegranate.\", \"She puts the pomegranate on a plate and cleans up.\", \"The person takes out a pomegranate from the refrigerator and a plate and bowl from the cupboard.\", \"The person washes the pomegranate.\", \"The person takes a chopping board and two knives out of the drawers.\", \"The person cuts off both ends of the pomegranate.\", \"The person cuts the pomegranate in half and lets the juice drain into the bowl.\", \"The person cuts the pomegranate halves into small sections.\", \"The person removes the seeds from the pomegranate sections into the bowl.\", \"The person washes her hands.\", \"The person uses a spoon to remove the unwanted parts of the pomegranate that have fallen into the bowl.\", \"The person washes the knives and the chopping board and returns them to the drawers.\", \"The person discards the unwanted parts of the pomegranate.\", \"The person washes the plate and moves the pomegranate seeds onto the plate.\", \"The person washes the bowl and returns it back to the cupboard.\", \"The person wipes the table top dry.\", \"The person washes her hands.\", \"The woman takes a pomegranate from the the refrigerator.\", \"The woman washes the pomegranate.\", \"The woman slices the ends off of the pomegranate.\", \"The woman slices the pomegranate.\", \"The woman removes the usable fruit out of the inside of the pomegranate.\", \"The woman removes the unusable pieces from the bowl.\", \"The woman washes up.\", \"She grabs a pomegranate.\", \"She rinses the pomegranate.\", \"She cuts the pomegranate in half.\", \"She quarters the pomegranate.\", \"She removes the good parts of the pomegranate.\", \"She finishes separating the good bits from the bad.\", \"She cleans up and puts the pomegranate on the plate.\", \" She finds a pomegranate.\", \"She gets a plate and bowl.\", \"She washes the pomegranate in a bowl.\", \"She gets a cutting board and knives.\", \"She cuts the pomegranate into pieces.\", \"She selects the edible parts of it.\", \"She cleans the cutting board.\", \"She discards the rest of the pomegranate.\", \"She cleans the plate and puts the pomegranate on it.\", \"She cleans the bowl and puts it away.\", \"She wipes down the counter.\", \"She chooses a pomegranate.\", \"She rinses the pomegranate.\", \"She gets all the needed equipment.\", \"She divides the pomegranate.\", \"She selects the good parts of the pomegranate.\", \"She puts the pomegranate on a plate.\", \"She took out pomegranate\", \"She took out plate and bowl\", \"She washed pomegranate\", \"She took out cutting board\", \"She took out knife\", \"She cut off top of pomegranate\", \"She cut off bottom of pomegranate\", \"She drained juice from pomegranate\", \"She gets the pomegranate.\", \"She gets a bowl and a plate.\", \"She rinses the pomegranate.\", \"She gets a cutting board and knives.\", \"She cuts the pomegranate.\", \"She separates the good parts of the pomegranate.\", \"She cleans up and puts the pomegranate on a plate.\", \"The person takes out a plate.\", \"The person takes out a pomegranate and places it in bowl.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person cuts the ends off of the pomegranate.\", \"The person cuts the pomegranate in half.\", \"The person cuts the pomegranate halves in half again lengthwise.\", \"The person cuts the pomegranate quarters into half with-wise.\", \"The person takes each pomegranate piece and hold it over the bowl and taps out the pomegranate seeds and picks the rest off with the knife.\", \"The person transfers the pomegranate seeds onto the plate.\", \"The person is done.\", \"The woman gathers supplies.\", \"She rinses the pomegranate in water.\", \"The woman takes out a cutting board and some knives.\", \"She removes the ends.\"], \"fps\": 29.4, \"num_frames\": 27290}, \"s33-d50.avi\": {\"timestamps\": [[205, 483], [495, 676], [721, 1063], [1083, 1194], [1243, 1722], [1739, 2855], [205, 927], [934, 1427], [1464, 1722], [2879, 3133], [3140, 3295], [205, 676], [721, 927], [934, 1194], [934, 1194], [1243, 1427], [1464, 1722], [1464, 1722], [1739, 3133], [3140, 3295], [3320, 3422], [205, 676], [721, 1194], [1243, 1427], [1464, 1722], [1739, 3133], [3320, 3422], [205, 676], [721, 927], [934, 1722], [1739, 3133], [3140, 3422], [205, 676], [721, 927], [934, 1722], [934, 1722], [1739, 3133], [3140, 3422], [205, 676], [721, 927], [934, 1194], [934, 1194], [1243, 1427], [1464, 1722], [1464, 1722], [1739, 3133], [3140, 3295], [3140, 3422], [205, 676], [721, 1063], [1083, 1427], [1464, 1722], [1739, 3133], [3140, 3295], [205, 676], [721, 927], [934, 1063], [1083, 1194], [1083, 1194], [1243, 1722], [1243, 1722], [1739, 3133], [3140, 3295], [3320, 3422], [205, 676], [721, 1063], [1083, 1722], [1739, 2855], [1739, 3179], [205, 483], [495, 676], [721, 1063], [1083, 1427], [1464, 1722], [3206, 3253], [205, 1427], [1464, 1722], [1464, 1722], [1739, 3133], [3320, 3422], [3320, 3422], [205, 483], [495, 676], [721, 927], [934, 959], [978, 1063], [1083, 1194], [1243, 1427], [1464, 1722], [1739, 2855], [1739, 3133], [3140, 3179], [205, 483], [495, 676], [721, 927], [934, 1194], [1243, 1427], [1464, 1722], [1739, 2855], [2879, 3179], [2879, 3295], [205, 483], [495, 676], [721, 959], [978, 1063], [1083, 1194], [1243, 1427], [1464, 1722], [1739, 2855], [2879, 3133], [3140, 3179], [3320, 3422], [205, 676], [721, 758], [765, 1194], [1243, 1722], [1243, 1722], [1739, 2855], [3206, 3295]], \"sentences\": [\"person gets egg\", \"person gets 2 small cups\", \"person gets small spoon\", \"person gently taps top of the egg to crack the top only\", \"person removes the top of the egg with fingers\", \"person pours out egg white only into small cup\", \"She gets out an egg and two glasses.\", \"She lightly cracks the egg.\", \"She removes a small section of the shell.\", \"She pours the whites into one glass.\", \"She removes a bit more of the shell and pours the yolk into the other glass.\", \"The person chooses the egg to be separated.\", \"The person grabs two small dishes to hold each part of the egg.\", \"The person places the egg in an egg holder.\", \"The person grabs a small spoon.\", \"The person taps gently on top of the egg with the spoon.\", \"The person grabs a dish for the egg shell waste.\", \"The person picks at the crack from the spoon to make a small hole in the shell.\", \"The person carefully empties out the egg white from the egg.\", \"The person enlarges the hole in the egg.\", \"The person empties out the egg yolk into the other dish.\", \"Take the egg out of the refrigerator.\", \"Take out an egg holder and two cups.\", \"Place the egg in the egg holder and gently tap the top with a metal spoon.\", \"Break off a small piece of the shell to form a hole at the top of the egg.\", \"Pour the egg white into one of the cups, being careful to not break the yolk inside.\", \"Break off a larger section of the shell and pour it into the second cup.\", \"She grabs an egg.\", \"She gets two cups.\", \"She makes a small hole in the top on the egg.\", \"She pours the whites into one cup.\", \"She make the egg hole bigger and puts the yolk in the other cup.\", \"She gets an egg.\", \"She gets two cups.\", \"She cracks the top of the egg with a spoon and gets a plate.\", \"She removes bits of shell until there is a small hole.\", \"She pours the whites into one cup through that hole.\", \"She makes the hole bigger and puts the yolk in the other cup.\", \"The person takes an egg out of the fridge.\", \"The person takes two cups out and puts them on the counter.\", \"The person takes out an egg cup and puts the egg in it.\", \"The person takes out a small spoon.\", \"The person taps on the top of the egg with the spoon to crack it.\", \"The person takes out a small plate and places it on the counter.\", \"The person peels away the shell at the top of the egg.\", \"The person pours the egg whites into one of the cups.\", \"The person peels more of the shell away.\", \"The person pours the egg yolk into the second cup.\", \"The person retreives the egg.\", \"The person retrieves two bowls and an egg holder.\", \"The person retrieves another plate.\", \"The person cracks the egg.\", \"The person completely drains the egg white.\", \"The person opens the hole futher to allow the egg yolk to slide through, then drains the egg yolk.\", \"The person gets out an egg.\", \"The person gets out two cups.\", \"The person gets out an egg cup.\", \"The person puts the egg in the egg cup.\", \"The person gets out a spoon.\", \"The person gets out a plate.\", \"The person tears a small hole at the top of the egg.\", \"The person pours the white into one cup.\", \"The person widens the hole.\", \"The person pours the yolk into the other cup.\", \"takes egg out\", \"brings out 2 cups and a hard boiled egg stand\", \"takes plate out\", \"pours egg into cup\", \"pours egg into 2nd cup\", \"She took out an egg\", \"She took out two cups\", \"She took out a spoon\", \"She took out a plate\", \"She put hole in egg\", \"She drained egg\", \"She gathers an egg, two small bowls, and an egg stand.\", \"She breaks a small hole in the top of the egg.\", \"She enlarges the hole with her fingers.\", \"She pours the egg-white out of the egg and into one of the small bowls.\", \"She further enlarges the hole with her fingers.\", \"She dumps the yolk into the second small bowl. The egg is separated.\", \"The person gets out an egg.\", \"The person gets out two cups.\", \"The person gets out an egg cup.\", \"The person puts the egg in the egg cup.\", \"The person gets out a spoon.\", \"The person taps on the top of the egg with the spoon.\", \"The person gets out a small plate.\", \"The person peels a small hole in the top of the egg.\", \"The person pours the white into one cup.\", \"The person widens the hole.\", \"The person pours the yolk into the other cup.\", \"Removed an egg from the refrigerator.\", \"Removed two cups to separate the egg into.\", \"Got an eggcup to hold the egg.\", \"Got a spoon and tapped the egg on top to break the shell.\", \"Prepared a plate to catch the eggshell pieces.\", \"Held the egg over the plate and peeled a small hole in the top of the egg.\", \"Poured the egg white from the shell into a cup.\", \"Held the egg over the plate and peeled a larger hole in the egg shell and poured the egg yolk into a cup.\", \"Placed the empty shell on the plate and arranged the cups.\", \"The person takes an egg out of the refrigerator\", \"The person takes two cups from the cabinet and puts them on the table.\", \"The person takes an egg cup from the cabinet and puts it on the table with the egg in it.\", \"The person takes a spoon from the drawer.\", \"The person taps the egg several times with the spoon.\", \"The person puts a plate on the table.\", \"The person makes a snall hole in the top of the eggshell with her fingers.\", \"The person pours the egg white into one cup.\", \"The person peels off more of the eggshell around the hole.\", \"The person pours the yolk into the other cup.\", \"The person moves both cups to the center of the table.\", \"She took out egg\", \"She took out two cups\", \"She took out spoon\", \"She took out plate\", \"She made hole in egg\", \"She drained yolk from egg\", \"She put rest of egg in other cup\"], \"fps\": 29.4, \"num_frames\": 3450}, \"s32-d69.avi\": {\"timestamps\": [[204, 2255], [2280, 5907], [5922, 9074], [9101, 11283], [11297, 11785], [204, 640], [714, 1133], [1178, 2163], [2187, 2600], [2600, 2820], [2827, 3528], [3621, 5716], [5742, 7747], [7770, 11785], [11838, 12320], [204, 1133], [1178, 2163], [2187, 2600], [2600, 2820], [2827, 3528], [3621, 3928], [4018, 5308], [5329, 6093], [6113, 7747], [7770, 8844], [8851, 9594], [9618, 9857], [10486, 11530], [11838, 12092], [204, 640], [714, 2163], [2187, 3528], [3621, 5907], [5922, 7585], [7590, 9594], [9618, 9857], [11613, 11941], [204, 640], [714, 2163], [2187, 2820], [2827, 3528], [3621, 5660], [5669, 7747], [7770, 9594], [9618, 11785], [204, 874], [880, 1133], [1178, 2163], [2187, 2820], [2827, 3528], [3621, 5573], [5595, 7747], [7770, 11785], [12112, 12320], [204, 1344], [1355, 2255], [2280, 2849], [2899, 3871], [3886, 4246], [4354, 5308], [5329, 5907], [5922, 6638], [6741, 7585], [7590, 8093], [8166, 11530], [11838, 11941], [204, 640], [714, 919], [938, 1133], [1178, 1456], [1519, 2163], [2187, 2849], [2899, 3528], [3621, 3928], [4018, 5573], [5595, 6178], [6178, 6638], [6741, 7434], [7434, 9074], [9101, 11019], [11838, 11941], [204, 2098], [2127, 2570], [2572, 2774], [2780, 3528], [3621, 3779], [3783, 5308], [5329, 5907], [5922, 6638], [6741, 7747], [7770, 8093], [8166, 8951], [8980, 9594], [9618, 9857], [9618, 9857], [10486, 11785], [204, 1133], [1178, 2163], [2187, 2375], [2453, 2849], [2899, 3528], [3621, 3928], [4018, 5573], [5595, 6304], [6318, 7434], [7434, 9074], [9101, 9857], [10486, 11019], [11093, 11380], [11385, 11785], [12018, 12320], [204, 640], [714, 874], [880, 919], [938, 1133], [1178, 1278], [1303, 1595], [1601, 1765], [1783, 1869], [1869, 1985], [1995, 2098], [2127, 2163], [2187, 2255], [2280, 2332], [2336, 2570], [2572, 2820], [204, 640], [714, 874], [880, 1133], [1178, 1278], [1303, 1765], [1783, 2098], [2127, 2255], [2280, 2658], [2663, 2774], [2827, 3528], [3621, 3779], [3783, 3928], [4018, 4665], [4665, 4797], [204, 640], [714, 919], [938, 1133], [1178, 1278], [1303, 1595], [1601, 1765], [1783, 1985], [1995, 2098], [2127, 2163], [2187, 2332], [204, 640], [714, 1133], [1178, 2332], [2780, 2849], [2899, 3528], [4825, 4924], [4967, 5716], [5742, 6093], [6113, 7481], [7487, 8093], [8166, 9074], [9101, 9857], [10486, 10731], [11093, 11941], [204, 1133], [1178, 1641], [1667, 2163], [2336, 2849], [2899, 3528], [3621, 3928], [3621, 5716], [5742, 7007], [7067, 7828], [7858, 9074], [9101, 9857], [10486, 10731]], \"sentences\": [\"gather eggs & untensils, rinse eggs, crack into bowl, wash hands\", \"salt and pepper eggs, whisk thoroughly, add butter to pan, allow time to melt\", \"after adding eggs in pan, allow some time to firm up, then gently flip eggs over to firm up on other side\", \"add prepared condiments, gently flip 1/2 firm egg mixture over condiments, test for firmness, flip over again, allow to brown slowly\", \"gently slide completed egg omelette onto plate\", \"She retrieves two eggs.\", \"She gets out a bowl and a whisk.\", \"She cracks the eggs into the bowl.\", \"She salts the eggs.\", \"She peppers the eggs.\", \"She whisks the eggs.\", \"She heats up the pan and puts butter in it.\", \"Once the butter was melted, she adds the eggs to the pan.\", \"She stops cooking the eggs and puts them on a plate.\", \"She straightens up.\", \"Take two eggs, a small mixing bowl and a whisk.\", \"Gently crack the eggs on a hard surface and empty them into the bowl, discard of the shells.\", \"Add two dashes of salt to the eggs.\", \"Then add one dash of pepper.\", \"Mix the eggs till you have a light yellow color throughout.\", \"Place a cooking pan on the stove and turn on the heat.\", \"Cut a small piece of butter and place it in the pan.\", \"Melt the butter, insuring that it fully covers the entire pan.\", \"Place the mixed eggs into the pan to cook.\", \"After about one minute flip the eggs.\", \"Add your ingredients you would like inside the eggs.\", \"Fold half of the eggs over on top of the filling.\", \"Let stand for approximately two more minutes, flipping at least once during this time.\", \"Remove from pan and place on plate to serve.\", \"The woman begins by selecting two eggs from the fridge.\", \"Next, she cracks the eggs into a metal bowl and discards the shells.\", \"She then uses a whisk to beat/whisk the eggs.\", \"Next, she gets out a saute pan and she adds a square of butter to the pan.\", \"After the butter has melted and the pan has heated up she adds the eggs.\", \"Using a rubber spatula she flips the eggs over once they have browned on one side.\", \"Next, she adds cheese to one half of the already browned side of egg and then folds the other half over.\", \"Finally, she transfers the eggs from a pan onto a plate.\", \"She gets some eggs.\", \"She cracks the eggs into a bowl.\", \"She seasons the eggs.\", \"She whisks the eggs.\", \"She gets a pan, turns on the stove and adds butter to the pan.\", \"She adds the eggs to the pan.\", \"She adds cheese to the half-cooked eggs.\", \"She puts the eggs on a plate.\", \"She gets two eggs and a bowl.\", \"She gets a whisk.\", \"She break the eggs into the bowl.\", \"She seasons the eggs.\", \"She whisks the eggs.\", \"She adds butter to a pan.\", \"She adds the eggs to the pan.\", \"She finishes cooking and adds the eggs to the plate.\", \"She puts the butter away.\", \"the person gets a wisk and a metal bowl\", \"the person cracks both Eggs into the bowl\", \"the person seasons the Eggs with salt and pepper\", \"the person scrambles the eggs with the wisk\", \"the person gets a frying pan and heats it up\", \"the person gets butter and a sharp knife\", \"the person slices a piece of butter and puts it in the pan\", \"the person gets a spatula\", \"the person gets a plate\", \"the person puts the Eggs in the pan\", \"the person turns the Eggs with the spatula\", \"the person gets a plate and transfers the Eggs to the plate\", \"the person gets two eggs out of the fridge.\", \"the person gets out a bowl.\", \"the person gets out a whisk.\", \"the person rinses out and dries the bowl.\", \"the person cracks two eggs into the bowl and throws away the shells.\", \"she adds salt and pepper to the eggs.\", \"the person whisks the eggs.\", \"The person gets out a frying pan and places it on the cooktop and turns on the burner.\", \"The person gets out some butter, takes a knife and cuts off a tablespoon and puts it in the pan.\", \"The person waits for the butter to melt.\", \"The person gets out a spatula and turns the pan to melt the butter.\", \"The person gets out cheese.\", \"The person pours in the eggs, lets it cook in one layer and then flips over the whole layer to cook the other side.\", \"The person puts the cheese on half of the cooking layer of eggs, then folds the other half of the eggs onto it and lets it melt and turns off the burner.\", \"The person gets out a plate and puts the omelette onto the plate. (not scrambled eggs, by the way.)\", \"Person cracks eggs into bowl.\", \"Person sprinkles salt into bowl.\", \"Person sprinkles pepper into bowl.\", \"Person beats eggs with whisk.\", \"Person takes out pan.\", \"Person slices a pat of butter.\", \"Person beats eggs again.\", \"Person spreads butter around pan.\", \"Person pours eggs into pan.\", \"Person spreads eggs around pan.\", \"Person flips egg over.\", \"Person pours cheese onto egg.\", \"Person folds half the egg over on itself.\", \"Person flips egg over.\", \"Person puts egg onto plate.\", \"The person gets out two eggs, a bowl and a whisk.\", \"The person cracks the eggs into the bowl and throws away the shells.\", \"The person rinses her hands and the whisk.\", \"The person adds salt and pepper to the eggs.\", \"The person whisks the eggs.\", \"The person gets out a pan, puts it on the stove and turns it on.\", \"The person puts butter in the pan.\", \"The person gets out a spatula.\", \"The person gets out what looks like a plate of chopped onions.\", \"The person puts the egg in the pan and waits for the egg to cook.\", \"The person puts the stuff that looks like onions on the egg and folds the egg around them like an omelet.\", \"The person flips the omelet and keeps cooking.\", \"The person gets out a plate and rinses it.\", \"The person puts the omelet on the plate.\", \"The person puts away the butter.\", \"She took out eggs\", \"She took out bowl\", \"She put egg in bowl\", \"She took out beater\", \"She washed bowl\", \"She washed egg\", \"She cracked egg\", \"She washed egg shell\", \"She threw out egg shell\", \"She cracked second egg\", \"She threw out shell\", \"She washed hands\", \"She washed beater\", \"She added salt\", \"She added pepper\", \"She took out eggs\", \"She took out bowl\", \"She took out beater\", \"She washed bowl\", \"She cracked egg into bowl\", \"She cracked second egg in bowl\", \"She washed hands\", \"She added salt\", \"She added pepper\", \"She beat eggs\", \"She took out pan\", \"She turned on stove\", \"She took out butter\", \"She took out knife\", \"She took out eggs\", \"She took out bowl\", \"She took out beater\", \"She washed bowl\", \"She washed egg\", \"She cracked first egg\", \"She threw away egg shell\", \"She cracked 2nd egg\", \"She threw away egg shell\", \"She washed beater\", \"She gets two eggs from the refrigerator and places them on the counter.\", \"She gets a metal bowl from the drawer and places the egg in the bowl and gets out a whisk.\", \"She washes the bowl and an egg out, cracks the egg into the bowl, throwing the shell away, washes her hands, cracks the egg and puts it in the bowl, and washes the whisk.\", \"She puts salt and pepper on top of the eggs.\", \"She uses the whisk to mix around the eggs.\", \"She puts the frying pan on the oven, gets butter from the refrigerator, takes out a knife, and turns on the refrigerator.\", \"She washes the knife, cuts off a piece of butter, and places it in the frying pan.\", \"She whisks the eggs around the bowl some more and moves the pan to spread out the butter.\", \"She moves the butter around some more in the frying pan and takes out a plate from the cabinet.\", \"She pours the eggs in the frying pan and uses the spatula to spread them around.\", \"She flips the eggs upside down in the pan with the spatula.\", \"She flips the egg over half way and presses down on it.\", \"She flips the egg over again and presses down on it.\", \"She gets out a plate, washes it, dries it, and she uses the spatula to put the egg on the plate.\", \"The person gets two eggs, a bowl and a whisk.\", \"The person rinses the bowl and any debris off of the eggs.\", \"The person cracks the eggs and drops the contents into a bowl, then discards the shells.\", \"The person seasons the eggs.\", \"The person vigorously whips the eggs with the whisk.\", \"The person puts a skillet on the stove and turns on the heat.\", \"The person gets butter and a sharp knife, then adds butter to the hot skillet.\", \"The person lets the butter melt in the skillet.\", \"The person gets a plate with grated cheese on it and a spatula, then adds the egg mixture to the hot skillet.\", \"The person uses the spatula to even the egg mixture into a disc of cooked eggs, then flips it.\", \"The person puts the cheese on the eggs and flips half of the cooked egg mixture over it.\", \"The person allows the cheese to melt inside the eggs, then flips the eggs over.\"], \"fps\": 29.4, \"num_frames\": 12393}, \"s32-d70.avi\": {\"timestamps\": [[237, 742], [764, 1765], [1815, 1892], [1935, 2675], [2768, 4621], [4658, 5596], [5608, 5813], [5885, 5984], [6051, 6814], [6820, 7109], [237, 742], [764, 1892], [1935, 2622], [2646, 5071], [5079, 5813], [5885, 5984], [6051, 6814], [237, 742], [764, 915], [922, 1356], [1398, 1765], [1815, 1892], [1935, 2622], [2646, 4825], [4846, 5003], [5043, 5353], [5417, 5813], [5885, 5984], [6051, 6449], [6820, 7109], [237, 1765], [1815, 1892], [1935, 2622], [2646, 4621], [4658, 5493], [5497, 5813], [5885, 5984], [6051, 6771], [237, 742], [764, 1356], [1398, 1726], [1736, 1892], [1935, 2297], [2366, 5071], [5079, 5813], [6779, 6814], [237, 742], [764, 1892], [1935, 2258], [2279, 4519], [4546, 5353], [5417, 5813], [5885, 5984], [6051, 6635], [237, 742], [764, 915], [922, 1450], [1502, 1726], [1736, 1892], [1935, 2037], [2111, 2297], [2366, 2550], [2563, 4621], [4658, 4825], [237, 742], [764, 915], [922, 1356], [1398, 1765], [1815, 1892], [1935, 2258], [4846, 5071], [5079, 5353], [5417, 5813], [5885, 5984], [5885, 6814], [237, 1356], [1398, 1892], [1935, 4621], [2279, 5130], [5156, 5984], [6643, 6814], [237, 742], [764, 915], [922, 1450], [1502, 1726], [1736, 1892], [1935, 2258], [2279, 2622], [2646, 4621], [4658, 4825], [4658, 5353], [5417, 5493], [5497, 5984], [6051, 6323], [6051, 6771], [6474, 7109], [237, 742], [764, 915], [922, 1356], [1398, 1892], [1935, 2258], [2279, 4621], [4846, 5353], [5417, 5813], [5885, 5984], [6327, 6771], [6779, 6814], [237, 742], [764, 915], [922, 1356], [1398, 1726], [1736, 1892], [1935, 2297], [2366, 4621], [4658, 5596], [5608, 5813], [6051, 6771], [237, 742], [764, 915], [922, 1356], [1398, 1765], [1815, 2037], [2111, 2622], [2646, 4825], [4658, 5493], [5497, 5984], [6051, 6323], [5885, 6771], [6820, 7109], [237, 742], [764, 915], [922, 1356], [1398, 1726], [1736, 1892], [1935, 2297], [2366, 2675], [2768, 4758], [4765, 4825], [4846, 5130], [5156, 5493], [5497, 5984], [6051, 6449], [6327, 6771], [6820, 7109], [237, 742], [764, 1450], [1502, 1700], [1709, 1892], [1935, 2550], [2563, 3698], [3751, 4519], [4846, 5813], [5885, 5984], [6051, 6635], [7169, 7304], [237, 742], [764, 1765], [1815, 2037], [2111, 2675], [2768, 4758], [4765, 4825], [4546, 5130], [5156, 5813], [5885, 5984], [6051, 6520], [6779, 6814], [237, 1356], [1398, 1700], [1709, 1892], [1935, 2550], [2563, 4621], [4846, 5596], [6597, 6771], [237, 742], [764, 915], [922, 1356], [1398, 1765], [1815, 1892], [1935, 2622], [2646, 4621], [4658, 4825], [4658, 5003], [5043, 5353], [5417, 5596], [5608, 5813], [5885, 5984], [6051, 6323], [6474, 6814], [237, 742], [764, 915], [922, 1356], [1398, 1726], [1736, 1892], [1935, 2622], [2646, 4758], [4846, 5353], [5417, 5596], [5608, 5813], [5885, 5984], [6051, 6323], [6327, 6449]], \"sentences\": [\"Obtain one large orange.\", \"organize tools. One knife and One Cutting Board. Rinse if necessary\", \"Slice orange in half.\", \"Obtain juicer. Rinse if necessary.\", \"Place Orange Half on Juicer. Twist thoroughly until all juice is extracted.\", \" Obtain cup. Rinse if necessary.\", \"Pour juice into cup.\", \"Add water to juice, in equal parts with orange extract.\", \"Add one table spoon sugar.\", \" This is how you make Tang.\", \"She gets an orange.\", \"She slices the orange.\", \"She gets out and rinses the juicer.\", \"She finishes juicing.\", \"She puts the juice in a glass.\", \"She adds water to the glass.\", \"She adds sugar to the water.\", \"The person procures an orange from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes the knife, the cutting board, and the orange in the sink.\", \"The person slices the orange into halves.\", \"The person washes her hands, then takes a juice strainer from the drawer and rinses it under the faucet.\", \"The person grinds each half into the top of the juice strainer and then washes her hands.\", \"The person removes the top of the strainer from the juicer.\", \"The person takes a glass from the cupboard.\", \"The person rinses the glass with water and then pours the juice from the bottom of the juice strainer into the glass.\", \"The person adds some water from the faucet to the juice in the glass.\", \"The person takes a package of sugar from the pantry and then takes out a spoon from the drawer.\", \"The person puts a scoop of sugar into the juice, stirs the glass, then returns the package of sugar to the pantry.\", \"Gather and rinse orange, knife and cutting board.\", \"Cut orange in half.\", \"Gather and rinse citrus juicer.\", \"Juice both orange halves.\", \"Gather and rinse glass.\", \"Pour juice into glass.\", \"Add water to glass.\", \"Add one tablespoon of sugar to glass and stir.\", \"She grabs an orange.\", \"She gets a cutting board and knife.\", \"She rinses everything.\", \"She cuts the orange in half.\", \"She gets out the juicer.\", \"She juices the oranges.\", \"She grabs a glass and puts the juice into it.\", \"She adds water and sugar to the glass.\", \"She gets an orange from the fridge.\", \"She cuts the orange in half.\", \"She gets the juicer from the cupboard\", \"She squeezes and twists the orange against the juicer.\", \"She gets a glass from the cupboard.\", \"She pours the juice in the glass.\", \"She adds extra water to the glass of juice.\", \"She adds extra sugar to the glass of juice.\", \"She took out orange\", \"She took out cutting board\", \"She took out knife\", \"She washed orange\", \"She cut orange in half\", \"She washed hands\", \"She took out juicer\", \"She washed juicer\", \"She twisted orange on juicer\", \"She washed hands\", \"person gets orange\", \"person gets cutting board\", \"person gets knife\", \"person washes orange\", \"person cuts orange in half\", \"person gets manual juicer\", \"person squeezes out juice\", \"person gets glass\", \"person puts orange juice in glass\", \"person adds water\", \"person adds sugar\", \"Grab a orange, cutting board, and a knife.\", \"Slice your orange in halves.\", \"Using a manual juicer, twist one half of orange at a time on the juicer with pressure.\", \"Remove top half of the juicer and place to the side.\", \"Poor juice from the orange into a glass and fill the rest of the glass with water.\", \"Add one teaspoon sugar to orange juice and stir til dissolved.\", \"The woman grabs an orange.\", \"The woman grabs a cutting board.\", \"The woman grabs a knife and rinses it.\", \"The woman rinses the cutting board and orange.\", \"The woman cuts the orange in half.\", \"The woman grabs a manual juicer.\", \"The woman rinses the juicer.\", \"The woman juices the orange.\", \"The woman rinses her hands.\", \"The woman grabs a glass.\", \"The woman rinses the glass.\", \"The woman adds the freshly squeezed juice to the glass and adds water.\", \"The woman grabs sugar.\", \"The woman grabs a spoon, puts some sugar into the glass, and stirs.\", \"The woman puts the sugar back.\", \"The person takes out an orange.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person slices the orange in half width-wise.\", \"The person takes out a juice extractor.\", \"The person takes each orange half and squeezes the juice out using the juice extractor.\", \"The person takes out a glass.\", \"The person pours the juice from the extractor into the glass.\", \"The person adds water to the glass of orange juice.\", \"The person stirs sugar into the juice.\", \"The person is done.\", \"Girl takes out orange\", \"Girl takes out cutting board\", \"Girl takes out knife\", \"Girl washes supplies\", \"Girl cuts orange in half\", \"Girl takes out juicer\", \"Girl twists orange on juicer\", \"Girl washes glass\", \"Girl pours juice in glass\", \"Girl adds sugar to glass\", \"The person procures an orange from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person washes the knife, the cutting board, and the orange in the sink.\", \"The person chops the orange in half and then washes her hands.\", \"The person takes out a juice strainer from the drawer and washes it in the sink.\", \"The person grinds both orange halves into the juice strainer with her palms.\", \"The person takes a glass from the cupboard and rinses it.\", \"The person pours the juice from the strainer into the glass and adds water.\", \"The person takes a package of sugar from the pantry.\", \"The person takes out a spoon from the drawer, scoops some sugar into the glass of juice and then stirs it.\", \" The person returns the package of sugar to the pantry.\", \"The person takes an orange from the fridge.\", \"The person takes a cutting board from a drawer.\", \"The person takes a knife from the cutlery drawer.\", \"The person rinses off the knife, cutting board, and orange in the sink.\", \"The person cuts the orange in half on the cutting board with the knife.\", \"The person procures a juice strainer from a drawer.\", \"The person rinses the juice strainer in the sink.\", \"The person grinds, squeezes, and presses each orange slice into the juicer.\", \"The person rinses her hands in the sink.\", \"The person removes the strainer from the juicer bowl.\", \"The person procures a glass from the cupboard and rinses it in the sink.\", \"The person pours the strained juice from the bowl into the glass and adds water.\", \"The person procures sugar from a cabinet and a spoon from a drawer.\", \"The persons puts a scoop of sugar into the glass and stirs it.\", \"The person returns the sugar to the pantry.\", \"The woman retrieves an orange from the refrigerator and places it in the sink.\", \"The woman gets a knife and cutting board from the drawer.\", \"The woman rinses the orange, cutting board, and knife.\", \"The woman slices the orange in half with the knife.\", \"The woman gets a juicer bowl from the cabinet and rinses it in the sink.\", \"The woman puts one half of the orange onto the juice bowl and presses down to drain the juice.\", \"The woman places the second half of the orange on the juicer bowl and presses and turns the orange to the juice is drained.\", \"The woman gets a glass from the cabinet and pours the juice from the oranges into the glass.\", \"The woman adds water into the glass that contains orange juice.\", \"The woman gets the bag of sugar and pours a spoonful into the glass.\", \"The woman moves the glass to the center of the counter.\", \"She goes to the refrigerator where she takes out an orange which she places in the sink.\", \"She takes out a cutting board and a knife, which she washes along with the orange.\", \"She cuts the orange in half and wets her hands.\", \"She takes out the juicer and washes it.\", \"She uses the juicer to get the juice out from the oranges.\", \"She washes her hands and shakes them to dry them.\", \"She removes the top of the juicer, shakes her hands to let juice off, and wipes her hands.\", \"She opens the cabinet, gets out a glass, and fills the glass with the orange juice from the juicer.\", \"She fills the rest of the glass up with water.\", \"She gets sugar from the cabinet and a spoon from the drawer.\", \"She puts a spoon of sugar in the juice and mixes it and then puts the sugar back.\", \"The woman grabs an orange, a cutting board, and a knife.\", \"The woman rinses the knife, cutting board and knife under running water.\", \"The woman cuts the orange in half.\", \"The woman takes out the juicer and rinses it with water.\", \"The woman presses the orange halves onto the juicer, rotating them and squeezing out the juice.\", \"The woman gets a glass, rinses it out, and pours in the orange juice.\", \"The woman adds water, and mixes in a tablespoon of sugar with the orange juice.\", \"The person takes an orange from the fridge.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person washes the knife, the cutting board, and the orange.\", \"The person halves the orange with the knife on the cutting board.\", \"The person takes a juice strainer from the drawer and rinses it under the faucet.\", \"The person grinds each orange half into the juice strainer.\", \"The person washes her hands in the sink\", \"The person removes the top portion of the strainer from the juicer.\", \"The person gets a glass from the cupboard.\", \"The person rinses the glass.\", \"The person pours the juice from the bottom portion of the juice strainer into the glass.\", \"The person adds water to the juice in the glass.\", \"The person gets sugar from the pantry.\", \"The person takes out a spoon from the drawer, adds a scoop of sugar to the glass of juice and stirs it.\", \"The person gets out an orange and puts it in the sink.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person rinses the knife, plate and orange.\", \"The person cuts the orange in half.\", \"The person gets out a juicer and rinses it.\", \"The person juices the orange.\", \"The person gets out a cup.\", \"The person rinses the cup.\", \"The person pours the juice into the cup.\", \"The person adds water to the juice.\", \"The person gets out a bag of sugar.\", \"The person gets out a spoon.\"], \"fps\": 29.4, \"num_frames\": 7341}, \"s33-d54.avi\": {\"timestamps\": [[204, 1157], [204, 1157], [1385, 3613], [3658, 5581], [5631, 7666], [7725, 9528], [9586, 10677], [204, 753], [204, 753], [770, 1157], [1385, 1548], [1573, 3613], [3658, 5581], [5631, 5943], [5947, 7666], [7725, 9528], [10698, 10844], [204, 1076], [1113, 3613], [3658, 5581], [5631, 5943], [5947, 9726], [9586, 10844], [204, 487], [522, 753], [770, 1076], [1113, 1548], [1573, 3613], [3658, 5581], [5631, 5897], [5919, 7666], [204, 1548], [1573, 3613], [3658, 5581], [5631, 5897], [5919, 7666], [7725, 9528], [9586, 9726], [9736, 10170], [10201, 10504], [9736, 10844], [204, 1076], [1113, 3613], [3658, 5581], [5631, 5897], [7725, 9726], [10516, 10736], [204, 1157], [1385, 1548], [1573, 3613], [3658, 5581], [5631, 7666], [5919, 9528], [9586, 9817], [9867, 10251], [9736, 10736], [10743, 10844], [204, 487], [522, 753], [770, 1076], [1113, 1548], [1573, 3613], [3658, 5581], [5631, 5897], [5919, 7666], [7725, 9528], [9586, 9726], [9736, 10170], [10201, 10504], [10516, 10677], [10743, 10844], [204, 487], [522, 1076], [1113, 3613], [7725, 9726], [10284, 10844], [204, 487], [522, 753], [770, 1076], [1113, 1157], [1385, 1548], [1573, 3613], [3658, 5581], [5631, 5897], [3658, 9726], [9736, 10170], [10201, 10504], [10698, 10777], [204, 487], [522, 753], [770, 1157], [1385, 1548], [1573, 3613], [3658, 5581], [5919, 9726], [204, 753], [770, 1157], [1385, 1548], [1573, 3613], [3658, 5897], [5919, 7666], [5631, 8105], [9736, 9817], [204, 487], [522, 753], [770, 1076], [1113, 1548], [1573, 3613], [3658, 4729], [204, 1076], [1113, 3613], [4729, 5581], [5631, 7666], [7725, 9726], [9867, 10251], [10777, 10844], [204, 487], [522, 753], [770, 1076], [1113, 1548], [1573, 3613], [3658, 5581], [5631, 5897], [7725, 9726], [9736, 10844], [204, 1157], [1385, 1548], [1573, 3613], [3658, 6068], [5919, 9726]], \"sentences\": [\"The woman sets up her station by grabbing a peeler, some plates and a mango.\", \"The woman tries to use the peeler on the mango but it doesn't work.\", \"With a knife, the woman peels of the out skin of the mango.\", \"The woman shaves off pieces of the mango around the large seed inside.\", \"On another plate, the woman chops the mango slices into smaller pieces.\", \"The woman removes the last bits of flesh from the mango core.\", \"The woman cleans her station by, throwing away the excess peeling, washing the extra plates, the knife, the peeler, and her hands.\", \"Get your peeler ready.\", \"Get your mango from the fridge.\", \"Get two plates on place on counter, placing the mango on one plate.\", \"Put the peeler down and grab a knife.\", \"Using your knife, remove all the peel from the mango.\", \"Cut the mango in pieces from around the seed.\", \"Get an additional plate.\", \"Cut pieces of mango into smaller pieces on the third plate.\", \"Return to mango seed and cut off any additional pieces you may have missed.\", \"Discard seed and peel in the trash, clean your dishes and you are done.\", \"She gets a mango, peeler, and two plates.\", \"She gets a knife and peels the mango.\", \"She cuts away half of the mango.\", \"She gets another plate and puts in on the counter.\", \"She chops the mango and cuts away the good food from the other half .\", \"She cleans up.\", \"She took out peeler\", \"She took out mango\", \"She took out two plates\", \"She took out knife\", \"She peeled mango\", \"She sliced mango\", \"She took out plate\", \"She cut up slices\", \"The person takes out two plates, a mango, and a paring knife.\", \"The person uses the knife to peel the skin and puts the skin on one plate.\", \"The person cuts the mango away from the core in large chunks and puts it on the other plate.\", \"The person takes out another plate.\", \"The person cuts the chunks into smaller pieces on the new plate.\", \"The person uses the knife to cut the leftover meat from the core onto the second plate.\", \"The person transfers the mango meat to the third plate.\", \"The person rinses the knife and second plate.\", \"The person throws away the skin and core.\", \"The person rinses the first dish and her hands.\", \"She gets a peeler, a mango, and two plates.\", \"She gets a knife and peels the mango.\", \"She cuts the good parts from the pit.\", \"She gets a plate.\", \"She chops the mango and gets the last bits from the pit.\", \"She cleans up.\", \"She gets out a peeler from the drawer, a mango from the refrigerator, and two plates from the cabinet.\", \"She attempts to use the peeler on the mango and takes out a knife.\", \"She uses the knife to cut off the peel of the mango.\", \"She cuts off the sides of the mango.\", \"She gets out another plate and takes each piece of mango from the original plate and cuts it into smaller pieces on the new plate.\", \"She cuts off the edges of the mango core onto the middle plate.\", \"She pours the mango pieces on the middle plate onto the plate with the other pieces of mango.\", \"She washes the plate and knife in the sink and places the peeler in the sink.\", \"She disposes of the mango peels in the trash and washes off the plate.\", \"She dries off her hands.\", \"The person selects a peeler.\", \"A mango is removed from the refrigerator.\", \"Two plates are removed for the mango.\", \"The person selects a knife.\", \"The mango is peeled over a plate.\", \"The mango flesh is sliced away from the seed on the other plate.\", \"Another plate is removed.\", \"The person chops the pieces on the new plate.\", \"The seed is trimmed closer.\", \"The fruit is placed on the plate.\", \"The plate and knife are washed.\", \"The scraps are discarded.\", \"The plate and peeler are washed.\", \"The mango is ready.\", \"She gets a peeler.\", \"She gets two plates and a mango.\", \"She gets a knife and peels the mango.\", \"She chops the mango.\", \"She cleans up.\", \"The person gets out a vegetable peeler.\", \"The person gets out a mango.\", \"The person gets out two plates.\", \"The person tries to peel the mango with the peeler.\", \"The person gets out a knife.\", \"The person peels the mango.\", \"The person cuts chunks off the mango.\", \"The person gets out a third plate.\", \"The person cuts the mango chunks into smaller pieces and puts them on the plate.\", \"The person rinses an empty plate and knife.\", \"The person throws away the mango peel and pit.\", \"The person rinses the rest of the dishes.\", \"Took out tool\", \"She took out mango\", \"She took out dishes\", \"She took out knife\", \"She peeled mango\", \"She cut mango into large chuncks\", \"She sliced up mango\", \"the person gets a peeler\", \"the person gets 2 plates\", \"the person gets a sharp knife\", \"the person peels off the skin of the Mango with the knife\", \"the person cuts piece off of the Mango with the knife\", \"the person gets another plate\", \"the person dices the pieces of Mango\", \"the person cuts more piece of Manga from around the seed\", \"She took out peeler\", \"She took out mango\", \"She took out plates\", \"She took out knife\", \"She peeled mango\", \"She sliced mango\", \"She opens the drawer and gets out a peeler, gets a mango from the refrigerator, gets two plates from the cabinet, and places a mango on one of the plates.\", \"She attempts to use the peeler, but it seems difficult, so she gets out a knife and uses it to cut the skin off of the mango.\", \"She cuts the sides off the mango until she reaches the core.\", \"She takes each piece of mango from one plate and places it on the other plate, cutting it into smaller pieces.\", \"She takes the core and uses the knife to cut off pieces of mango from it onto the now empty plate, and then uses the knife to brush the pieces of mango onto the plate with the other pieces of mango.\", \"She washes the now empty plate and knife in the sink and places them to the side.\", \"She places the peeler in the sink, disposes of the mango skin in the trash, and puts the plate and peeler to the side before wetting and drying her hands.\", \"The person got out a vegetable peeler.\", \"The person got out a mango.\", \"The person got out two plates.\", \"The person got out a pairing knife.\", \"The person peeled the mango with the knife.\", \"The person cut the flesh off the core.\", \"The person got out a third plate.\", \"The person diced the mango.\", \"The person cleaned up.\", \"A woman enters kitchen, removes a peeler from the drawer, a mango from the refrigerator, two plates from the cupboard and places them all on the counter top.\", \"The woman begins to peel the mango with the peeler, stops and removes a knife from the drawer and opts to use the knife to peel the mango instead.\", \"The woman peels the mango.\", \"The woman peels the mango and removes another plate from the cupboard and places it on the counter top.\", \"The woman carves the mango away from the core and dices it up on the third plate.\"], \"fps\": 29.4, \"num_frames\": 10882}, \"s36-d50.avi\": {\"timestamps\": [[186, 1084], [1122, 2142], [2142, 2274], [2543, 3195], [3268, 4010], [4066, 4998], [186, 358], [401, 1084], [1122, 1747], [1747, 2274], [2543, 3195], [3268, 4010], [4066, 4998], [186, 358], [401, 692], [724, 1084], [1122, 1630], [1658, 2142], [2142, 3195], [3268, 3672], [3723, 4010], [3723, 4010], [4066, 4358], [4371, 4834], [4841, 4998], [186, 358], [401, 692], [724, 1084], [1122, 2274], [2543, 3195], [3268, 4010], [4066, 4358], [4371, 4431], [4496, 4834], [186, 358], [401, 2274], [2543, 3195], [3268, 4010], [4066, 4431], [4496, 4594], [186, 358], [401, 692], [724, 1084], [1122, 1630], [1658, 2274], [2543, 3195], [3268, 3672], [3723, 3863], [3863, 4010], [4066, 4358], [4371, 4594], [4841, 4998], [186, 358], [401, 692], [724, 1084], [1122, 2274], [2543, 3195], [3268, 4010], [4066, 4358], [4371, 4431], [4605, 4834], [4605, 4998], [186, 358], [401, 692], [724, 1084], [1122, 2142], [2142, 3195], [3268, 4126], [4841, 4998], [186, 1084], [1122, 3195], [3268, 3540], [3609, 4126], [4496, 4998], [186, 358], [401, 692], [724, 1084], [1122, 2142], [2142, 3195], [3268, 3863], [3863, 4010], [4066, 4358], [4371, 4431], [4496, 4594], [4257, 4834], [186, 358], [401, 692], [724, 1084], [1122, 1386], [1386, 2142], [2142, 3195], [3268, 3863], [3863, 4010], [4257, 4998], [186, 358], [401, 692], [724, 1084], [1122, 2142], [2142, 3195], [3268, 3863], [3863, 4010], [4066, 4358], [4066, 4747], [4760, 4834], [186, 358], [401, 692], [724, 1084], [1122, 2274], [2543, 3195], [3268, 4010], [4066, 4358], [4371, 4747], [186, 358], [401, 692], [724, 1084], [1122, 2142], [2142, 3195], [3268, 4010], [4371, 4747], [186, 358], [401, 692], [724, 1084], [1122, 1630], [1658, 3355], [3376, 4010], [4066, 4401], [4401, 4431]], \"sentences\": [\"Get two bowls, an egg, and a spoon.\", \"Crack egg carefully with spoon.\", \"Make a small hole on the top of the egg.\", \"Shake egg white out of shell into the bowl.\", \"Crack open the rest of the egg and put the yolk in a separate bowl while the rest of the white in the bowl with the egg whites.\", \"Discard the egg shell.\", \"He gets out two bowls.\", \"He gets an egg and a spoon.\", \"He lightly cracks the egg.\", \"He makes a small hole in the egg.\", \"He pours the whites into one dish.\", \"He opens the egg more and pours the yolk into the other dish.\", \"He cleans up.\", \"He takes two bowls from the cupboard.\", \"He gets out an egg from the refrigerator.\", \"He gets a spoon from the drawer.\", \"He smacks the shell with the spoon and removes a tiny piece of shell.\", \"He uses his fingers and the spoon to make the hole bigger.\", \"He shakes the egg to make the insides drip into one of the bowls.\", \"He hits the egg and shakes the egg over the other bowl.\", \"He shakes the egg to get remaining whites out into the bowl of egg whites.\", \"He uses a spoon to remove the egg yolk from the egg into the other bowl.\", \"He puts the spoon in the sink and gathers up the egg shells to put them in the trash.\", \"He begins washing his hands, throws away a piece of shell he sees in the bowl of egg whites, washes his hands some more, and washes the spoon and puts it away.\", \"He brushes off the pieces of egg shell and wets his hands.\", \"The person takes a pair of bowls from the cupboard.\", \"The person procures an egg from the fridge.\", \"The person takes out a spoon from the drawer.\", \"The person cracks the egg with the spoon and picks a small hole into it with his fingers.\", \"The person drains the egg white through the hole in the shell onto a plate.\", \"The person breaks the shell open with his fingers and scoops the egg yolk out onto the second plate with the spoon.\", \"The person puts the spoon in the sink and throws the shells into the wastebin.\", \"The person washes his hands.\", \"The person washes the spoon in the sink and returns it to the drawer.\", \"He takes out two small bowls.\", \"Use a spoon to crack the egg gently, creating a small hole in the shell.\", \"Pour the egg white out of the small hole created before, into one of the bowls.\", \"Crack a larger hole in the egg shell, and scoop the yolk out.\", \"Discard or recycle the egg shell.\", \"Make sure none of the egg shell got into your eggs.\", \"He gets out two bowls from the cupboard.\", \"He takes an egg from the refrigerator.\", \"He takes a spoon from the drawer.\", \"He taps the egg with the spoon and removes a piece of shell.\", \"He uses his fingers and the spoon to build a bigger hole in the shell.\", \"He shakes out the egg whites into one of the small bowls.\", \"He hits the egg with the spoon and picks off more of the shell with his hand.\", \"He pours some more egg whites out into the bowl of egg whites.\", \"He uses the spoon to put the egg yolk into the other bowl.\", \"He puts the spoon in the sink and gathers the shell pieces to throw in the trash.\", \"He washes his hands and picks out a piece of egg shell from the bowl of egg whites and throws it in the trash.\", \"He washes his hands and the spoon, puts the spoon away, brushes off some egg shells, and wets his hands again.\", \"He goes to the cupboard and takes out two bowls.\", \"He goes to the refrigerator and takes out an egg.\", \"He opens up a drawer and takes out a spoon.\", \"He cracks a small hole into the egg with the spoon.\", \"He tries to empty the egg through the small hole in the egg into the bowl.\", \"He cracks the egg again and scoops out the egg into the bowl.\", \"He places the spoon in the sink and cleans up the egg shells and throws them away.\", \"He turns on the sink and washes his hands.\", \"He washes the spoon and puts it away in the drawer.\", \"He brushes off the counter and washes his hands.\", \"The person got out two bowls.\", \"The person got out an egg.\", \"The person got out a spoon.\", \"The person poked a hole in the egg at the top.\", \"The person poured out the egg whites.\", \"The man scooped the yolk out with the spoon.\", \"The person cleaned up.\", \"He obtains two small bowls, an egg, and a spoon.\", \"He uses the spoon to crack the egg neatly.\", \"He empties the yolk into one bowl.\", \"He spoon out the whole, central yolk into another bowl.\", \"He discards the eggshell and cleans the area.\", \"The person gets out two bowls.\", \"The person gets out an egg.\", \"The person gets out a spoon.\", \"The person makes a hole in the top of the egg with the spoon.\", \"The person pours egg white into one bowl.\", \"The person breaks the egg open wider and pours more egg white into the first bowl.\", \"The person scoops out the yolk with the spoon and puts it in the second bowl.\", \"The person throws away the eggshell.\", \"The person washes his hands.\", \"The person throws away a piece of eggshell he missed.\", \"The person washes and puts away the spoon.\", \"The person places two bowls on the counter from the cabinet.\", \"The person grabs an egg from the refrigerator, and walks back to the bowls.\", \"The person finds a spoon from the drawer.\", \"The person lightly taps the top of the egg with the spoon until a little hole appears.\", \"The person clears out the hole of excess shell using his fingers, and the spoon.\", \"The person lightly shakes out the excess liquid from the egg into the first bowl using the newly created hole.\", \"The person uses the spoon to crack open the side of the egg, and pries it open with his fingers making sure to completely drain the egg of the loose liquid into the first bowl.\", \"The person uses the spoon to scoop out the yoke from the egg, and places it into the second bowl.\", \"The person cleans up by throwing out the egg shell, then washing his spoon and hands.\", \"The person gets out two bowls.\", \"The person gets out an egg.\", \"The person gets out a spoon.\", \"The person makes a hole in the eggshell with the spoon.\", \"The person pours egg white through the hole into one bowl.\", \"The person cracks the egg and pours a little more white into the first bowl.\", \"The person scoops the yolk out with the spoon and puts it in the second bowl.\", \"The person throws away the eggshell.\", \"The person washes his hands.\", \"The person washes and puts away the spoon.\", \"The person got out two bowls.\", \"The person got out an egg.\", \"The man got out a spoon.\", \"Using the spoon, the person made a small hole at the top of the egg.\", \"The person poured the egg whites out of the hole.\", \"The person took the yolk out with the spoon.\", \"The person cleaned up the egg shell.\", \"The man washed the spoon.\", \"The person procures a pair of small bowls from the cupboard.\", \"The person gets an egg from the fridge.\", \"The person gets a spoon from the drawer.\", \"The person cracks the top of the egg with a spoon and digs out the chips to show a small hole.\", \"The person pours the egg white through the hole into one bowl.\", \"The person then cracks the egg with the spoon to expose the yoke which he pours into the other small bowl.\", \"The person gathers the egg shell fragments, throws them away, and then washes his hands in the sink.\", \"He took out two bowls\", \"He took out egg\", \"He took out spoon\", \"He made small hole in egg\", \"He drained egg\", \"He put egg in other bowl\", \"He threw away shell\", \"He washed hands\"], \"fps\": 29.4, \"num_frames\": 5203}, \"s37-d21.avi\": {\"timestamps\": [[201, 445], [454, 1367], [1394, 2192], [2256, 2505], [2572, 2709], [2737, 3931], [4163, 7975], [8063, 8572], [8706, 10509], [10509, 11043], [201, 445], [454, 703], [726, 897], [904, 1367], [1394, 2192], [2256, 2505], [2572, 2642], [2662, 2984], [3064, 3931], [4163, 8456], [8456, 10865], [201, 445], [454, 703], [726, 897], [904, 1367], [1394, 2505], [2572, 2642], [2662, 2709], [2737, 3931], [4163, 5969], [201, 445], [454, 897], [904, 2192], [2256, 2505], [5970, 8456], [8456, 10865], [201, 445], [454, 964], [1029, 1367], [1394, 2192], [2256, 2505], [2572, 8572], [10903, 11043], [201, 445], [454, 897], [904, 2334], [2361, 2505], [2572, 7907], [7907, 8456], [10903, 11043], [201, 445], [201, 445], [454, 703], [726, 1367], [726, 1367], [1394, 2334], [2361, 2505], [2572, 2709], [2737, 3931], [4163, 4253], [2572, 6021], [6075, 8882], [201, 445], [454, 897], [904, 964], [1029, 1367], [1394, 2192], [2256, 2505], [2572, 2642], [2662, 2984], [3064, 3931], [4163, 5075], [4307, 6514], [6578, 8456], [8899, 9224], [9271, 10254], [201, 445], [454, 703], [726, 964], [1029, 1367], [1394, 2334], [2361, 2984], [3064, 3931], [4163, 4253], [4307, 5929], [5075, 6514], [6578, 7975], [8063, 8456], [8456, 9111], [8706, 11043], [201, 445], [454, 703], [726, 897], [904, 1367], [1394, 2505], [2572, 2984], [3064, 3931], [5952, 6103], [6108, 6514], [201, 1367], [201, 1367], [1394, 2505], [2572, 2984], [2572, 2984], [3064, 5169], [6578, 8128], [8456, 9661], [201, 445], [454, 1367], [1394, 2192], [2256, 2505], [2572, 3931], [4163, 4253], [4307, 5929], [5188, 6514], [4163, 7975], [8063, 8572], [9155, 10509], [201, 445], [454, 703], [726, 897], [904, 1367], [1394, 2192], [2256, 2642], [2662, 2984], [3064, 3931], [6578, 8456], [10509, 10865], [201, 445], [454, 703], [726, 897], [904, 1367], [1394, 2192], [2256, 2505], [2572, 2709], [2737, 2984], [3064, 3931], [4163, 4253], [5952, 7975], [8063, 8572], [8456, 9111], [8456, 11043], [201, 1367], [1394, 2334], [2361, 2505], [2572, 2709], [2737, 3931], [4163, 8456], [8706, 10425], [201, 964], [1029, 2192], [2256, 2505], [2572, 3931], [4307, 8456], [9155, 10425], [201, 2334], [2361, 2505], [2572, 2820], [2820, 3931], [4163, 4253], [4163, 8572], [8456, 9661], [10317, 11043], [201, 445], [454, 703], [726, 964], [1029, 1367], [1394, 2192], [2256, 2334], [2361, 2505], [2572, 2642], [2662, 2984], [3064, 3931], [4163, 8572], [8706, 9111], [8456, 10425], [10903, 11043], [10903, 11043]], \"sentences\": [\"Man gets cucumber from the refrigerator and places it on the counter.\", \"Man gets a knife, then a cutting board and plate and places them on the counter.\", \"The man unwraps the cucumber.\", \"He thoroughly washes the cucumber and places it on the cutting board.\", \"He cuts the cucumber in half and removes the end.\", \"He removes a peeler from a drawer and peels one of the cucumber halfs.\", \"He then cuts the peeled half lengthwise in half again and chops it into fine slices.\", \"He places the slices on the plate and arranges in a single layer.\", \"The man gets salt, pepper, and another type of seasoning from the kitchen cabinets.\", \"He then sprinkles the slices with the seasoning.\", \"The person gets out a cucumber in plastic wrap.\", \"The person gets out a knife.\", \"The person gets out a cutting board.\", \"The person gets out a plate.\", \"The person unwraps the cucumber.\", \"The person rinses the cucumber.\", \"The person cuts the cucumber in half.\", \"The person gets out a vegetable peeler.\", \"The person peels one half of the cucumber.\", \"The person chops up the peeled cucumber half and puts the pieces on the plate.\", \"The person adds some kind of spice to the cucumber.\", \"He took out cucumber\", \"He took out knife\", \"He took out cutting board\", \"He took out plate\", \"He washed cucumber\", \"He cut cucumber in half\", \"He cut off end of the cucumber\", \"He peeled cucumber\", \"He chopped up cucumber\", \"He gets out a cucumber.\", \"He gets a knife and cutting board.\", \"He unwraps the cucumber.\", \"He rinses the cucumber.\", \"He peels half the cucumber and then chops it.\", \"He seasons the cucumber and put the spices away.\", \"He gets a cucumber.\", \"He gets a knife and cutting board.\", \"He gets a plate.\", \"He removes the wrapping from the cucumber.\", \"He rinses the cucumber.\", \"He chops and peels the first half of the cucumber.\", \"He seasons the cucumbers.\", \"He grabs a cucumber.\", \"He gets a knife and a cutting board.\", \"He takes the plastic off the cucumber and discards it.\", \"He rinses the cucumber.\", \"He peels half the cucumber and chops it.\", \"He puts the cucumber on the plate.\", \"He seasons the cucumber and puts the spices away.\", \"Take the cucumber out of the refrigerator\", \"Choose a good, sharp knife\", \"Take out a cutting board\", \"Take out a dish for cut cucumber\", \"Take off the wrapper\", \"Wash the cucumber thoroughly\", \"Cut the cucumber in half\", \"Use a peeler to take off outer skin\", \"Once skin peeled off cut down the middle\", \"Now being to cut pieces off each half\", \"Put pieces in a clean dish and begin cutting other side\", \"Season if desired\", \"The man goes to the refrigerator and takes out a cucumber.\", \"He places the cucumber on the counter and takes out a knife and a cutting board.\", \"He places the cucumber on the cutting board.\", \"The man goes to the cabinet and takes out a white plate.\", \"First, he uses his hands to take off the plastic covering the cucumber.\", \"He washes the cucumber in the sink.\", \"First, he cuts the cucumber in half and sets one halve aside.\", \"He cuts off the tip of the cucumber and takes out a peeler.\", \"He uses the peeler to peel the cucumber halve.\", \"He cuts the cucumber into another halve and begins to cut the cucumber in slices.\", \"He places the pieces of cucumber on the white plate.\", \"He places the remaining pieces from the cutting board onto the plate.\", \"He places two spices on the counter.\", \"He grabs a third spice and sprinkles it over the cucumber pieces.\", \"The man takes a cucumber out of the refrigerator.\", \"He takes a knife out of a drawer.\", \"He also takes out a cutting board and places it under the cucumber.\", \"He gets a plate out of the cupboard and puts it on the counter.\", \"He peels the plastic covering from the cucumber and discards it.\", \"He opens a drawer and takes out a peeler.\", \"He peels the cucumber.\", \"He slices the cucumber half down the middle\", \"He carefully cuts one fourth of the cucumber into smaller slices.\", \"He places the sliced cucumber on the plate.\", \"He chops the other peeled side into slices.\", \"He places them all on the plate.\", \"He gets salt and pepper and places them next to the cutting board.\", \"He gets another spice and sprinkles it on the chopped cucumber.\", \"He took out cucumber\", \"He took out knife\", \"He took out cutting board\", \"He took out plate\", \"He washed cucumber\", \"He took out peeler\", \"He peeled cucumber\", \"He sliced cucumber\", \"He put cucumber on plate\", \"the person takes out a cutting board and a sharp knife\", \"the person takes out a plate\", \"the person washes the Cucumber\", \"the person cuts the Cucumber in half and cuts off the end\", \"the person gets a peeler and peels the skin off of the Cucumber\", \"the person slices the Cucumber half in half\", \"the person slices the Cucumber\", \"the person puts the Cucumber slices on a plate\", \"He takes a cucumber out of the refrigerator.\", \"Takes a plate out of the cabinet.\", \"Removes the wrapper from the cucumber.\", \"Washes the cucumber in the sink.\", \"Grates half of the cucumber.\", \"Slices the cucumber half down the middle\", \"Chops up 1st half of the cucumber\", \"Places the slices on the plate.\", \"Chops up the 2nd half of the cucumber.\", \"Places the last remaining slices on the plate.\", \"Sprinkles seasoning on the cucumber slices.\", \"He gets a cucumber out of the fridge.\", \" He gets a knife out of the drawer.\", \"He gets a cutting board out of the cupboard.\", \" He gets a plate out of the cupboard.\", \"He remove the cucumber from its packaging.\", \"He chops the cucumber in half.\", \"He gets a peeler out of the drawer.\", \"He peels one half of the cucumber.\", \"He slices the peeled half of the cucumber and puts the pieces on a plate.\", \"He adds spices to the cucumber pieces on the plate.\", \"The man got a cucumber out of the refrigerator and placed it on the counter.\", \"The man got a knife out of the drawer and placed it on the counter.\", \"The man got a cutting board out of the drawer and placed it on the counter.\", \"The man got a plate out of the cupboard and placed it on the counter.\", \"The man removed the plastic from the cucumber and placed the plastic in the garbage.\", \"The man rinsed the cucumber.\", \"The man cut the cucumber in half and placed one half to the side.\", \"The man got a peeler out of the drawer.\", \"The man peeled one-half of the cucumber.\", \"The man sliced on half of the cucumber in half lengthwise.\", \"The man sliced the cut quarters of the cucumber.\", \"The man placed the cucumber slices on the plate.\", \"The man got salt an pepper from the spice rack.\", \"The man seasoned the cucumber slices and put the spices back.\", \"To prepare the man gets a cucumber, a knife, a cutting board, and a plate.\", \"The man removes the packaging from the cucumber and throws it away.\", \"The man washes the outside of the cucumber.\", \"The man cuts the cucumber in half and removes the stem.\", \"With a peeler the man removes the skin from half of the cucumber.\", \"The man thinly slices the cucumber and places it on the plate.\", \"The man adds seasoning to the cucumber slices.\", \"The man sets up his station by grabbing a cucumber, a cutting board, and a knife.\", \"The man removes the cucumber from its protective packaging.\", \"The man washes the cucumber.\", \"The man cuts the cucumber in half and peels the first half.\", \"The man thinly slices the first half of the cucumber and puts it on a plate.\", \"The man adds seasoning to the sliced cucumber.\", \"The man retrieves a cucumber, a knife, a plate, and a cuttingboard and unwraps the cucumber.\", \"He rinses the cucumber off in the sink.\", \"He cuts the cucumber in half and removes the tip.\", \"He peels one half of the cucumber.\", \"He cuts the half into a smaller half.\", \"He dices each smaller half individually and moves the pieces to the plate.\", \"He retrieves spices and has a conversation off-camera.\", \"He seasons the cucumber with unknown spices.\", \"The man grabs a sealed cucumber.\", \"The man grabs a knife.\", \"The man grabs a cutting board.\", \"The man grabs a plate.\", \"The man rids the cucumber of its seal/wrapper.\", \"The man disposes the seal/wrapper.\", \"The man rinses the cucumber.\", \"The man cuts the cucumber into two cylindrical halves.\", \"The man grabs a peeler.\", \"The man peels one half of the cucumber.\", \"The man finely chops the peeled half of the cucumber into thin, semi circle slices and places them onto plate.\", \"The man grabs what appears to be salt and pepper and places them on counter.\", \"The man grabs another seasoning and seasons the cucumber slices.\", \"The man returns the salt, pepper and seasoning back to their original places.\", \"The man has completed his assigned task.\"], \"fps\": 29.4, \"num_frames\": 11114}, \"s35-d40.avi\": {\"timestamps\": [[242, 656], [716, 993], [1027, 1120], [1144, 1272], [1315, 1586], [1603, 1849], [1853, 2363], [2434, 2971], [3043, 8668], [8768, 8923], [8971, 9317], [9337, 9798], [9825, 10139], [10176, 10700], [10744, 11339], [242, 656], [716, 993], [1027, 1272], [1315, 1336], [1391, 1675], [1673, 1918], [1991, 2598], [2721, 2971], [3043, 6085], [3043, 6085], [6134, 8668], [8768, 9390], [9423, 9989], [10042, 10816], [11387, 13819], [242, 656], [716, 993], [1027, 1120], [1144, 1272], [1315, 1586], [1603, 1849], [1853, 2363], [2434, 2971], [3043, 8668], [8768, 8923], [8971, 9317], [242, 656], [716, 1453], [1464, 1586], [1603, 1849], [1853, 2971], [3043, 8668], [9337, 10816], [10870, 12015], [242, 2598], [2721, 2971], [3043, 8668], [8768, 9882], [9892, 10816], [10870, 12015], [12065, 13580], [242, 993], [1027, 2055], [2055, 3265], [3329, 8923], [8768, 9515], [12065, 12433], [242, 1453], [1464, 2055], [2055, 3265], [3329, 8887], [8971, 10139], [242, 993], [1027, 1918], [1991, 2971], [3043, 8923], [10176, 11339], [10870, 12139], [242, 812], [864, 993], [1027, 1336], [1391, 1918], [1991, 2971], [3043, 6085], [6134, 8668], [8971, 10139], [11387, 11609], [12433, 13034], [242, 656], [716, 993], [1027, 1272], [1315, 1453], [1464, 1586], [1603, 1849], [1853, 2363], [2434, 2971], [3043, 8668], [8768, 8923], [8768, 9515], [9599, 9989], [10176, 10816], [8900, 12015], [13628, 13819], [242, 656], [716, 993], [1027, 1336], [1391, 1675], [1673, 2055], [2055, 2363], [2434, 2971], [3043, 6085], [6134, 8860], [8971, 9390], [9423, 9798], [9825, 10139], [9825, 10139], [10042, 10816], [10870, 12015], [242, 656], [716, 993], [1027, 1272], [1315, 1453], [1464, 1586], [1603, 1849], [1853, 2598], [2721, 2971], [3043, 8668], [8768, 8923], [8860, 9515], [9599, 9989], [10176, 10816], [10870, 12015], [13034, 13819], [242, 656], [716, 993], [1027, 1918], [1991, 2971], [3043, 8668], [10042, 10816], [10870, 11339], [10870, 12015], [12208, 13682], [242, 656], [716, 993], [1027, 1272], [1315, 1586], [1603, 1849], [1853, 2363], [2434, 2971], [3043, 8668], [8768, 8923], [8768, 9390], [9423, 9882], [8971, 10700], [10744, 11339], [11387, 12015], [242, 656], [716, 956], [956, 1918], [1991, 2971], [3043, 8668], [11387, 12015], [242, 656], [716, 956], [956, 1120], [1144, 1272], [1315, 1453], [1464, 1586], [1603, 1849], [1853, 2363], [2434, 2971], [3043, 3265], [242, 993], [1027, 2598], [2721, 2971], [3329, 6085], [6134, 8668], [8971, 10816], [9892, 12015], [242, 656], [716, 993], [1027, 1675], [1673, 1849], [1853, 2971], [3043, 8668], [8768, 9515], [9599, 9989], [8768, 11339], [10870, 12015], [12065, 13580]], \"sentences\": [\"She took out limes\", \"She washed limes\", \"She took out bowl\", \"She washed bowl\", \"She took out cutting board\", \"She took out knife\", \"She washed plastic container\", \"She cut lime in half\", \"She twisted lime on juicer\", \"She washed hands\", \"She washed knife\", \"She washed cutting board\", \"She threw away lime scraps\", \"She washed bowl\", \"She took out glass\", \"Select your lime from your refrigerator.\", \"Rinse your lime off.\", \"Select your bowl and rinse it out.\", \"Place your lime in the bowl.\", \"Get out your juicer and cutting board.\", \"Retrieve a sharp knife and lay on the cutting board.\", \"Rinse off your juicer.\", \"Cut your lime in half.\", \"Place lime firmly on top of juicer and twist in a clockwise motion consistently until there in nothing left inside the lime.\", \"Place remainder of lime in bowl.\", \"Repeat the process for the second half of the lime.\", \"Wash and rinse your knife.\", \"Wash off your cutting board and put it away.\", \"Discard your peels in the trash and wash your bowl and put it away.\", \"Pour your juice in a glass, wash your juicer and put it away and enjoy.\", \"She took out lime\", \"She washed lime\", \"She took out bowl\", \"She washed bowl\", \"She took out cutting board\", \"She took out knife\", \"She washed juicer\", \"She cut lime in half\", \"She twisted lime on juicer\", \"She washed hands\", \"She washed knife\", \"She gets a lime out of the fridge.\", \"She gets the juicer out of the cupboard.\", \"She gets the cutting board out of the cupboard.\", \"She gets the knife out of the drawer.\", \"She cuts the lime in half.\", \"She twists and squeezes the cut lime against the juicer.\", \"She gets a glass out of the cupboard.\", \"She pours the juice into the glass.\", \"Get out your cutting board, knife, bowl, juicer, and lime.\", \"Cut lime in half width-wise.\", \"Press each lime half down and twist around the center of the juicer until all of the juice is in the juicer.\", \"Rinse hands, knife and cutting board under water.\", \"Wash bowl.\", \"Get glass and pour lime juice into glass.\", \"Wash juicer.\", \"the person washes the Lime\", \"the person gets a metal bowl, manual juicer, sharp knife and cutting board\", \"the person cuts the Lime in half\", \"the person strains the Lime in the manual juicer\", \"the person discards the Lime skins\", \"the person gets a glass and puts the Lime juice in it\", \"the person takes out a metal bowl and put the Lime in it\", \"the person takes out a manual juicer, knife and a cutting board\", \"the person cuts the Lime in half\", \"the person juices the Lime in the manual juicer\", \"the person discards the Lime skins\", \"the person washes the Lime\", \"the person gets a metal bowl, cutting board, sharp knife and a manual juicer\", \"the person slices the Lime in half\", \"the person strains the Lime juice from the Lime halves in the manual juicer\", \"the person gets a glass\", \"the person puts the Lime juice from the strainer into the glass\", \"The woman begins by selecting one lime from the fridge.\", \"She rinses the lime in water.\", \"She then retrieves a small metal bowl that she rinses with water and then places the lime in.\", \"Next, she gets out a small cutting board, a knife, and a juicer that she rinses with water.\", \"Using the knife, she cuts the lime in half.\", \"Next, she juices the first half of the lime.\", \"She then juices the other half of the lime.\", \"Next, she washes the knife as well as the cutting board and then discards the leftover parts of the lime.\", \"She retrieves a glass from the cupboard.\", \"She pours the lime juice into the glass and then washes the juicer.\", \"A lime is removed from the refrigerator.\", \"The lime is washed.\", \"A bowl is removed and rinsed.\", \"The person removes a juicer.\", \"The person selects a cutting board.\", \"A knife is selected.\", \"The juicer is rinsed.\", \"The lime is cut in half.\", \"The lime is juiced.\", \"The person washed their hands.\", \"The person washed the knife and put it away.\", \"The person washed the cutting board and put it away.\", \"The person discarded the scraps, washed the bowl and put it away.\", \"The person removed a glass and poured in the juice.\", \"The person washed the juicer and put it away.\", \"Obtain one small lime.\", \"Rinse the lime in water.\", \"Rinse one medium sized bowl, and place lime in bowl.\", \"Place cutting board on counter.\", \"Place knife on counter\", \"Rinse tupperware countainer\", \"Using knife, slice lime in half.\", \"Place lime on juicer and twist thoroughly until all juice is extracted.\", \"Repeat with second half of lime\", \"Mack the knife?\", \"Rinse off cutting board\", \"Put said knife and cutting board away\", \"Discard lime slices\", \"Put any other miscellaneous tools away\", \"Pour juice in cup.\", \"A lime is removed from the refrigerator.\", \"The lime is washed.\", \"A bowl for the lime is removed and rinsed.\", \"The person removes a juicer.\", \"The person selects a cutting board.\", \"A knife is selected.\", \"The juicer is rinsed.\", \"The lime is cut in half.\", \"Both halves of the lime are juiced.\", \"The person washed their hands.\", \"The person washed the knife and put it away.\", \"The person washed the cutting board and put it away.\", \"The person discarded the scraps, washed the bowl and put it away.\", \"The person removed a glass and poured in the juice.\", \"The person washed the juicer and put it away.\", \"She gets out a lime\", \"She washes the lime.\", \"She gets out the needed equipment.\", \"She cuts the lime in half.\", \"She twists the limes to extract the juice.\", \"She cleans up.\", \"She gets out a glass.\", \"She pours the juice into the glass.\", \"She cleans the juicer.\", \"She took out limes\", \"She washed limes\", \"She washed bowl\", \"She took out cutting board\", \"She took out knife\", \"She washed juicer\", \"She cut lime in half\", \"She twisted lime on juicer\", \"She washed hands\", \"She washed knife\", \"She washed cutting board\", \"She washed bowl\", \"She took out glass\", \"She poured juice into glass\", \"Remove lime from fridge.\", \"Rinse lime in water.\", \"Gather juicer, cutting board, and knife on counter.\", \"Cut lime in half.\", \"Press lime on juicer spike and twist.\", \"Pour juice from juicer into glass.\", \"She took out lime\", \"She washed lime\", \"She took out bowl\", \"She washed bowl\", \"She took out juicer\", \"She took out cutting board\", \"She took out knife\", \"She washed juicer\", \"She cut lime in half\", \"She twisted lime on juicer\", \"Woman pulls a lime and rinses it.\", \"Woman pulls the supplies she needs.\", \"Woman slices the lime in half.\", \"Woman presses and twist the lime against the juicer.\", \"Woman presses and twist the second half against the juicer.\", \"Woman cleans up after preparing the lime.\", \"Woman puts lime juice in a glass.\", \"She gets a lime out of the fridge.\", \"She rinses off the lime in the sink.\", \"She gets the cutting board and juicer out of the cupboard.\", \"She gets the knife out of the drawer.\", \"She cuts the lime in half.\", \"She presses the cut lime halves against the juicer and twists and squeezes.\", \"She washes the knife and puts it away.\", \"She washes the cutting board and puts it away.\", \"She gets a glass out of the cupboard.\", \"She pours the juice into the glass.\", \"She rinses and washes the juicer.\"], \"fps\": 29.4, \"num_frames\": 13848}, \"s33-d45.avi\": {\"timestamps\": [[213, 731], [755, 949], [983, 1381], [1411, 2040], [2108, 2700], [2736, 7134], [7183, 7653], [213, 949], [983, 1381], [1411, 2040], [2108, 2449], [2483, 7134], [7183, 7653], [213, 731], [755, 949], [983, 1174], [1184, 1381], [1411, 2040], [2108, 2401], [2406, 2700], [2736, 6981], [6983, 7517], [213, 949], [983, 1381], [1411, 2401], [2406, 2926], [2954, 7134], [7183, 7394], [213, 1381], [1411, 2040], [2108, 2401], [2406, 2700], [2736, 3613], [3636, 3916], [3934, 5656], [5760, 6249], [6286, 6615], [6681, 7251], [7525, 7653], [213, 528], [647, 949], [983, 1127], [1142, 1381], [1411, 2040], [2108, 2401], [2406, 2700], [2736, 5656], [213, 731], [755, 949], [983, 1174], [1184, 1381], [1411, 2040], [2108, 2401], [2406, 2700], [5760, 6981], [7417, 7553], [213, 731], [755, 949], [983, 1381], [1411, 2040], [2108, 2401], [2406, 2700], [2736, 3826], [3842, 5508], [2736, 6249], [6286, 7134], [213, 731], [755, 949], [983, 1381], [1411, 2040], [2108, 2401], [5591, 6981], [7263, 7620], [213, 731], [755, 949], [983, 1249], [1257, 1381], [1411, 2040], [2108, 2401], [2406, 2700], [2406, 5966], [6046, 6249], [6286, 6615], [6681, 7134], [7183, 7553], [213, 528], [647, 949], [983, 1212], [1212, 1381], [2736, 7251], [213, 731], [755, 949], [983, 1174], [1184, 1381], [1411, 2040], [2108, 2401], [2406, 2700], [1411, 5826], [5933, 7134], [7263, 7394], [213, 731], [755, 949], [983, 1249], [1257, 1381], [1411, 2040], [2108, 2401], [2406, 2607], [2636, 2700], [2736, 7134], [6983, 7553], [213, 528], [647, 949], [983, 1381], [1411, 2700], [2736, 3762], [2736, 6615], [7183, 7553], [213, 949], [983, 1381], [1411, 2040], [2108, 2401], [3776, 6981], [7183, 7517], [213, 731], [755, 949], [983, 1127], [1142, 1381], [1411, 2040], [2108, 2401], [2406, 2700], [2406, 6981]], \"sentences\": [\"She gets out a pepper.\", \"She washes the pepper.\", \"She gets out a cutting board and knife.\", \"She cuts away the good parts of the pepper.\", \"She gets out a plate and throws away the inedible parts.\", \"She chops the pepper and puts it on a plate.\", \"She cleans up.\", \"A woman enters the kitchen, retrieves a pepper from the refrigerator and washes it in the sink.\", \"She removes a cutting board and a knife and places them on the counter.\", \"She cuts the usable portion of the pepper away from the core.\", \"She takes a plate from the cupboard and places it on the counter.\", \"She dices the pepper and transfers it from the cutting board to the plate.\", \"She washes the cutting board, the knife and her hands.\", \"The person gets out a pepper.\", \"The person rinses the pepper.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts the pepper into four quarters and a core.\", \"The person gets out a plate.\", \"The person throws away the core.\", \"The person chops up the pepper and puts the pieces on the plate.\", \"The person rinses the knife and wooden plate.\", \"the person washes the Pepper\", \"the person gets a cutting board and a sharp knife\", \"the person cuts the Pepper around the seed and stem\", \"the person gets a plate\", \"the person slices and dices the Pepper\", \"the person places the diced Pepper on the plate\", \"She retrieves a red pepper, a cuttingboard, and a knife.\", \"She vertically cuts the pepper into five individual pieces.\", \"She retrieves a large white plate.\", \"She distributes the untouched pieces to the plate and leaves one on the cuttingboard to work with.\", \"She cuts the piece vertically several times into long strips, then horizontally into small pieces.\", \"She moves the pepper pieces on to the plate.\", \"She cuts two of the larger pieces of pepper the same way she had cut the first.\", \"She moves those pieces to the plate.\", \"She dices the last piece just as she had done to the others.\", \"She moves those pieces to the plate.\", \"She cleans the area.\", \"She took out pepper\", \"She washed pepper\", \"She took out cutting board\", \"She took out knife\", \"She sliced pepper\", \"She took out plate\", \"She put pepper on plate\", \"She chopped pepper\", \"The person gets out a pepper.\", \"The person rinses the pepper.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts the pepper into four quarters and a core.\", \"The person gets out a plate.\", \"The person puts the pepper slices on the plate and throws away the core.\", \"The person chops up the pepper slices and puts them on the plate.\", \"The person rinses the wooden plate and knife.\", \"She goes to the refrigerator and takes out a pepper.\", \"She goes to the sink and washes the pepper.\", \"She goes to the drawer and takes out a cutting board and knife.\", \"She cuts the pepper into four pieces.\", \"She goes to the cupboard and takes out a plate and puts it on the counter.\", \"She puts three pieces of pepper on the plate and throws away the waste.\", \"She slices and dices the pepper and then puts it on the plate.\", \"She slices and dices some more of the pepper and throws away some more waste.\", \"She picks up the cropped pepper and places in on the plate.\", \"She slices and dices the last piece of pepper and puts it on the plate.\", \"She gets a pepper.\", \"She rinses the pepper.\", \"She gets a cutting board and a knife.\", \"She cuts away the outside of the pepper.\", \"She gets a plate.\", \"She chops the pepper and puts it on the plate.\", \"She cleans up.\", \"The person got the pepper out of the fridge.\", \"The person rinsed off the pepper.\", \"The person got out a cutting board.\", \"The person got out a knife.\", \"The person cut the pepper into quarters.\", \"The person got out a plate.\", \"The person threw away the seeds.\", \"The person chops the pepper.\", \"The person puts the pepper on the plate.\", \"The person chops the final piece of pepper.\", \"The person places the final pieces of pepper on the plate with the rest.\", \"The person rinses off the cutting board and knife.\", \"person gets pepper\", \"person washes pepper\", \"person gets cutting board\", \"person gets knife\", \"person dices pepper\", \"She took out a pepper\", \"She washed pepper\", \"She took out cutting board\", \"She took out knife\", \"She cut pepper into pieces\", \"She took out a plate\", \"She threw out scraps\", \"She diced pepper\", \"She put pepper on plate\", \"She washed cutting board\", \"The person gets out a pepper.\", \"The person rinses the pepper.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts four large slices off the pepper, leaving a small piece from the center.\", \"The person gets out a plate.\", \"The person puts three of the pepper pieces on the plate.\", \"The person throws away the center of the pepper.\", \"The person dices the pepper one quarter at a time and puts the pieces on the plate.\", \"The person rinses the wooden plate and the knife.\", \"The person selects a pepper from the fridge.\", \"The person rinses the pepper.\", \"The person gets a cutting board and a knife.\", \"The person cuts the pepper into four pieces and discards the stem.\", \"The person slices one of the peeper pieces into small squares.\", \"The person finishes cutting the other pieces of the pepper into small squares.\", \"The person rinses off the cutting board and knife.\", \"The person washes the pepper in the sink.\", \"The person selects a knife and cutting board.\", \"The person cuts the pepper into large slices.\", \"The person gets a separate plate.\", \"The person cuts the pepper into smaller pieces and puts them on the plate.\", \"The person rinses the knife and cutting board.\", \"The person gets out a pepper.\", \"The person rinses the pepper.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person cuts the pepper into quarters and a center piece.\", \"The person gets out a plate.\", \"The person throws away the center of the pepper.\", \"The person chops up the pepper.\"], \"fps\": 29.4, \"num_frames\": 7682}, \"s35-d48.avi\": {\"timestamps\": [[303, 875], [940, 1362], [1369, 2111], [2211, 2380], [2399, 2574], [2574, 3428], [3544, 3936], [4105, 6358], [303, 875], [940, 2111], [2211, 2630], [2656, 3936], [6426, 6663], [6849, 7610], [303, 875], [940, 1408], [1463, 2380], [2399, 2574], [2574, 2993], [2997, 3936], [4105, 4264], [4264, 5063], [5113, 5623], [4105, 7019], [303, 875], [940, 2111], [2211, 2630], [2656, 3428], [3544, 3936], [5637, 6663], [7019, 7610], [303, 875], [940, 1362], [1369, 2111], [2211, 2446], [2474, 2630], [4105, 6486], [303, 875], [940, 1362], [1369, 2111], [2211, 2380], [2399, 2574], [2574, 3428], [3544, 3936], [4105, 5623], [303, 875], [940, 1362], [1369, 2111], [2211, 2446], [2474, 2630], [2656, 3193], [3193, 3428], [3544, 3936], [6486, 6663], [6849, 6924], [6849, 7056], [7126, 7506], [7530, 7610], [303, 1408], [1463, 2111], [2211, 2630], [2656, 3936], [2656, 6663], [6972, 7506], [303, 875], [940, 2111], [2211, 3428], [3544, 5320], [5637, 6924], [6849, 7506], [303, 875], [940, 1362], [1369, 2049], [2069, 2380], [2399, 2574], [2574, 3428], [3544, 3936], [4105, 5320], [5426, 6358], [4105, 6663], [303, 875], [940, 2111], [2211, 2574], [2574, 3193], [3193, 3936], [4105, 5543], [4105, 5543], [5426, 6358], [6426, 6486], [7530, 7610], [303, 3122], [3122, 3936], [4105, 4264], [4264, 5063], [5113, 5254], [5595, 6358], [6486, 6663], [7530, 7610], [303, 875], [940, 1362], [1369, 2111], [2211, 2380], [2399, 2574], [2574, 3428], [3544, 3936], [5286, 6358], [303, 875], [940, 1362], [1369, 2049], [2069, 2380], [2399, 2574], [2574, 3193], [3193, 3428], [3544, 3936], [6426, 6486], [6849, 6924], [6972, 7610], [303, 875], [940, 1362], [1369, 2111], [2211, 2446], [2474, 2574], [2574, 3122], [3122, 3428], [3544, 3936], [6426, 6486], [6426, 6924], [6972, 7056], [6849, 7610], [303, 875], [940, 2111], [2211, 2630], [2656, 3428], [4105, 6486], [4105, 7610]], \"sentences\": [\"She took out chili\", \"She took out plate\", \"She washed plate\", \"She took out cutting board\", \"She took out knife\", \"She put unused chili back\", \"She washed chili\", \"She diced chili\", \"She gets out the chills\", \"She gets out and washes a plate.\", \"She gets out a cutting board and knife.\", \"She puts the chilies on a plate and rinses them.\", \"She chops the chilies and puts them on a plate.\", \"She cleans up.\", \"She gets out some kind of chili.\", \"She starts washing a plate.\", \"She gets out a small cutting board.\", \"She pulls out a knife.\", \"She puts the chili peppers on a plate.\", \"She washes the chili peppers.\", \"She cuts off the stem of the pepper.\", \"She dices the pepper.\", \"She repeats the process for the second chili pepper.\", \"She washes her hands.\", \"She grabs the peppers.\", \"She grabs a plate and rinses it.\", \"She gets a cutting board and knife.\", \"She removes the peppers from the bag and puts the rest away.\", \"She rinses the peppers.\", \"She chops the peppers and puts them on the plate.\", \"She cleans up.\", \"Takes the chilies out of the refrigerator.\", \"Takes a dish out of the cabinet.\", \"Washes the dish in the sink.\", \"Takes out a cutting board.\", \"Takes out a knife.\", \"Slices up the chilies and puts them on the plate.\", \"She took out chili\", \"She took out plate\", \"She washed plate\", \"She took out cutting board\", \"She took out knife\", \"She put back extra chili\", \"She washed chili\", \"She diced chili\", \"The person takes chili peppers out of the fridge.\", \"The person takes a plate out and places it on the counter.\", \"The person rinses the plate.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person places two peppers on the plate .\", \"The person puts the rest of the peppers back in the fridge.\", \"The person rinses the peppers.\", \"The person chops the peppers and puts the pieces on the plate.\", \"The person throws the stems of the peppers away.\", \"The person rinses her hands.\", \"The person rinses the cutting board and knife.\", \"The person puts the cutting board and knife away.\", \"Take out a fresh chili and a small plate.\", \"Wash the plate and shake off the excess water.\", \"Take out a cutting board and a small knife.\", \"Select two fresh chili peppers and return the rest to the refrigerator, then rinse the peppers on the plate.\", \"Put a chili on the cutting board and cut off the stem, then cut the chili along its length into 1/4 inch pieces, repeat for the other chili and put the cut chili on the plate.\", \"Discard the chili stems and wash your hands and the cutting board and knife.\", \"The woman begins by selecting a fresh chili from the fridge and places it on the counter.\", \"Next, she retrieves a plate from the cupboard and washes it before setting it on the counter.\", \"She takes two chilies from the bag placing them on the plate and returns the bag to the fridge.\", \"After rinsing the chilies, she cuts the stem off of the first one and then cuts it into little pieces placing the pieces back onto the plate.\", \"She repeats the previous step on the next chili.\", \"Finally, she discards the stems and then washes the knife and cutting board putting them back in their original locations.\", \"She took out chili\", \"She took out plate\", \"She washed plate\", \"She took out cutting board\", \"She took out knife\", \"She put chili not being used back\", \"She washed chili\", \"She diced chili\", \"She diced second chili\", \"She put chili on plate\", \"The person takes chilis from the refrigerator and places them on the counter.\", \"The person washes a plate and places it on the counter.\", \"The person places a cutting board and paring knife on the counter.\", \"The person selects two chilis and places them on the plate.\", \"The person rinses the chilis.\", \"The person uses the paring knife to remove the stem a chili and cut it into small lateral slices.\", \"The person places the sliced chili onto the plate.\", \"The person uses the paring knife to remove the stem from the second chili and cut it into small lateral slices.\", \"The person places the second sliced chili onto the plate.\", \"The person rinses and replaces the paring knife and cutting board.\", \"Place the red peppers on a plate.\", \"Wash off the peppers.\", \"Cut off the top of the pepper and discard that piece.\", \"Slice the pepper width-wise throughout the length of the pepper.\", \"Cut off the top of the next pepper, and again discard that top piece.\", \"Again slice the pepper width-wise throughout the pepper.\", \"Place all the sliced pieces of pepper on a plate.\", \"Clean off your dishes and put them away.\", \"She took out chili\", \"She took out plate\", \"She washed plate\", \"She took out cutting board\", \"She took out knife\", \"She put leftover chilis away\", \"She washed chili\", \"She chopped up chili\", \"The person gets out a bag of chilies.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets two chilies out of the bag.\", \"The person puts away the bag of chilies.\", \"The person rinses the chilies.\", \"The person cuts the top off of each chili, cuts the chilies up and puts the pieces on the plate.\", \"The person throws away the tops of the chilies.\", \"The person rinses and puts away the knife and cutting board.\", \"The person gets out a bag of chilies.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person puts two chilies on the plate.\", \"The person puts the rest of the chilies away.\", \"The person rinses the chilies.\", \"The person cuts the top off of each chili and chops up the rest of them.\", \"The person throws away the tops of the chilies.\", \"The person washes her hands.\", \"The person rinses and puts away the knife and cutting board.\", \"Woman removes pepper from refrigerator.\", \"Woman pulls out a plate and washes it.\", \"Woman pulls out cutting board and knife.\", \"Woman pulls out two chilli peppers and puts the rest away.\", \"Woman removes stems then slices the chilli peppers.\", \"Woman cleans up after preparing the peppers.\"], \"fps\": 29.4, \"num_frames\": 7612}, \"s35-d55.avi\": {\"timestamps\": [[276, 737], [797, 1067], [1138, 1226], [1254, 2021], [2039, 2275], [2329, 2669], [2696, 2931], [2974, 3096], [3121, 4611], [4646, 5411], [276, 737], [797, 2275], [2329, 3149], [3166, 4611], [5421, 5445], [5542, 6713], [276, 737], [797, 1067], [1138, 2021], [2039, 2275], [2329, 2669], [2696, 2931], [2974, 3096], [3121, 3365], [3438, 4611], [4646, 5445], [5542, 5733], [5808, 6418], [6460, 6534], [276, 737], [797, 1226], [1254, 1757], [1808, 2275], [2329, 2931], [2974, 3149], [3166, 3365], [3438, 4611], [4646, 5411], [4646, 5988], [6022, 6418], [276, 737], [797, 1067], [1138, 2021], [2039, 2275], [2329, 2669], [2696, 2931], [2974, 3096], [3121, 3365], [3438, 4611], [5421, 5445], [5542, 5733], [5808, 6418], [6460, 6534], [276, 737], [797, 2275], [2329, 2931], [2974, 3365], [4646, 5445], [5542, 6418], [276, 737], [797, 1067], [1138, 1757], [1808, 2931], [3438, 5445], [5542, 5988], [276, 737], [797, 1067], [1138, 1226], [1254, 1757], [1808, 2275], [2329, 2669], [2696, 2931], [2974, 3096], [3121, 3365], [3438, 4611], [4646, 5411], [2974, 5733], [5808, 5988], [6022, 6418], [6460, 6534], [276, 737], [797, 1332], [1349, 2021], [2039, 2275], [2329, 2931], [2974, 3096], [5421, 5445], [6022, 6418], [276, 737], [797, 1067], [1138, 1226], [1254, 1757], [1808, 2275], [2329, 2669], [2696, 2931], [2974, 3096], [3121, 3365], [3438, 4611], [4646, 5411], [3121, 5733], [5542, 6418], [6586, 6713], [276, 1067], [1138, 2021], [2039, 2275], [2329, 3149], [3166, 4611], [5421, 5445], [5542, 5733], [5808, 6418], [6586, 6713], [276, 737], [797, 1067], [1138, 1226], [1254, 1757], [1808, 2275], [2329, 2669], [2696, 2931], [2974, 3365], [3438, 4611], [4646, 5445], [5808, 6116], [6126, 6418], [6586, 6713], [276, 737], [797, 1067], [1138, 1226], [1254, 1757], [1808, 2275], [2329, 2669], [2696, 2931], [2974, 3096], [3121, 3149], [3166, 4611], [4646, 5445], [5542, 5733], [5542, 6418], [6460, 6713], [276, 737], [797, 1067], [1138, 1226], [1254, 1757], [1808, 2275], [2329, 2669], [2696, 2931], [2974, 3096], [3121, 3365], [3438, 4611], [4646, 5445], [5542, 5733], [5808, 6418], [6460, 6534], [276, 737], [797, 1067], [1138, 1332], [1349, 2021], [2039, 2275], [2329, 2669], [2696, 2931], [2974, 3096], [3121, 3149], [3166, 4611]], \"sentences\": [\"She took out figs\", \"She took out plate\", \"She washed plate\", \"She washed kiwi\", \"She put extra kiwi back\", \"She took out knife\", \"She took out cutting board\", \"She washed knife\", \"She sliced the kiwi\", \"She arranged the kiwi on the plate\", \"A woman enters the kitchen, retrieves two figs from the refrigerator and sets them on the counter.\", \"She retrieves a plate from the cupboard, washes the plate and one of the figs and returns the other fig to the refrigerator.\", \"She removes a knife and a cutting board from the drawer, rinses the knife and sets them both on the counter.\", \"She cuts the ends off of the fig and then slices the length of the fig crosswise.\", \"She arranges the slices of fig into a pattern on the plate.\", \"She washes the cutting board and the knife, returns them to the drawer and washes and drys her hands.\", \"The person gets out two figs.\", \"The person gets out a plate.\", \"The person rinses the plate and a fig.\", \"The person puts the other fig away.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person rinses the knife.\", \"The person cuts off the top and bottom of the fig.\", \"The person cuts the fig into slices and puts the slices on the plate.\", \"The person arranges the slices on the plate.\", \"The person throws away the top and bottom of the fig.\", \"The person rinses and puts away the knife and wooden plate.\", \"The person rinses her hands.\", \"The woman enters the kitchen and retrieves the figs from the refrigerator.\", \"The woman retrieves a plate from the cabinet and rinses it in the sink.\", \"The woman places one herb onto the plate and rinses it under the sink.\", \"The woman places the extra herb back into the refrigerator.\", \"The women retrieves a knife and cutting board from the drawer.\", \"The woman rinses the knife and places the herb from the plate to the cutting board.\", \"The woman cuts off the tip of the fig.\", \"The woman holds the fig and carefully slices it, after each slice she places them onto the waiting plate.\", \"She carefully arranges the fig onto the plate.\", \"The woman discards the cut off of the ends into the trash, then rinses the knife and cutting board.\", \"The woman puts the knife and cutting board back into the drawers.\", \"The person gets out two figs.\", \"The person gets out a plate.\", \"The person rinses the plate and a fig.\", \"The person puts the other fig away.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person rinses the knife.\", \"The person cuts off the top and bottom of the fig.\", \"The person slices up the fig and puts the slices on the plate.\", \"The person arranges the fig slices on the plate.\", \"The person throws away the top and bottom of the fig.\", \"The person rinses and puts away the knife and wooden plate.\", \"The person washes her hands.\", \"She gets the figs.\", \"She rinses a fig and puts the rest away.\", \"She gets a knife and cutting board.\", \"She chops the end off the fig.\", \"She slices the fig and arranges them on a plate.\", \"She cleans up.\", \"Takes fig out of refrigerator.\", \"Takes plate out of cabinet.\", \"Washes fig and plate in the sink.\", \"Takes knife and cutting board out of drawer.\", \"Slices up fig and places on the plate.\", \"Washes knife and cutting board in the sink.\", \"The person gets out two figs.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person rinses a fig.\", \"The person puts away the other fig.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person rinses the knife.\", \"The person cuts off the top and bottom of the fig.\", \"The person cuts the fig into slices and puts them on the white plate.\", \"The person arranges the slices  on the plate.\", \"The person throws away the ends of the fig.\", \"The person rinses the wooden plate and the knife.\", \"The person puts away the wooden plate and the knife.\", \"The person washes her hands.\", \"The person removed two figs from the refrigerator.\", \"The person got out and rinsed a plate.\", \"The person rinsed a fig.\", \"The person put a fig back in the refrigerator.\", \"The person got out a cutting board and a knife.\", \"The person washed the knife.\", \"The person cut the fig and transfered the fig to the plate.\", \"The person washed and put away the cutting board and knife.\", \"The person gets out some figs.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person rinses a fig.\", \"The person puts the other fig away.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person rinses the knife.\", \"The person cuts off the top and bottom of the fig.\", \"The person slices up the fig and puts the slices on the plate.\", \"The person arranges the slices on the plate.\", \"The person throws away the top and bottom of the fig.\", \"The person rinses the wooden plate and knife and puts them away.\", \"The person washes her hands.\", \"She opens the refrigerator and gets out some figs, which she lays on the counter.\", \"She gets a plate from the cabinet, washes it, places the fig on it, and then washes the fig on it.\", \"She puts the other fig and the container back into the refrigerator.\", \"She gets out a knife and a cutting board from the drawers and she washes the knife in the sink.\", \"She cuts off the front and bag of the fig, and then cuts the remainder of the fig into slices and places them on the plate.\", \"She arranges the figs in the way she wants.\", \"She dumps what remains on the cutting board into the trash with the knife.\", \"She washes the knife and cutting board in the sink, shakes them to dry them off, and puts them back in the drawers.\", \"She washes her hands in the sink and shakes them and wipes them to dry them off.\", \"The person gets out two figs.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person rinses a fig.\", \"The person puts the other fig back in the fridge.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person cuts off the top and bottom of the fig.\", \"The person cuts the fig into slices and puts the slices on the plate.\", \"The person arranges the slices on the plate.\", \"The person throws away the trash and rinses the plate it was on.\", \"The person puts the knife and plate away.\", \"The person washes her hands.\", \"The person gets out two figs.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person rinses a fig.\", \"The person puts the other fig back in the fridge.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person rinses the knife.\", \"The person cuts off the top of the fig.\", \"The person cuts the fig into slices and puts the slices on the plate.\", \"The person arranges the slices on the plate.\", \"The person throws away the trash.\", \"The person rinses and puts away the knife and wooden plate.\", \"The person washes her hands.\", \"The person gets out two figs.\", \"The person gets out a plate.\", \"The person rinses the plate.\", \"The person rinses a fig on the plate.\", \"The person puts away the other fig.\", \"The person gets out a knife.\", \"The person gets out a wooden plate.\", \"The person rinses the knife.\", \"The person cuts off the top and bottom of the fig.\", \"The person slices up the fig and puts the slices on the plate.\", \"The person arranges the slices on the plate.\", \"The person throws away the top and bottom of the fig.\", \"The person rinses and puts away the plate and knife.\", \"The person washes her hands.\", \"She took out figs\", \"She took out plate\", \"She washed plate\", \"She washed fig\", \"She put back unused fig\", \"She took out knife\", \"She took out cutting board\", \"She washed knife\", \"She cut off top of fig\", \"She cut up fig\"], \"fps\": 29.4, \"num_frames\": 6742}, \"s34-d41.avi\": {\"timestamps\": [[205, 486], [543, 700], [708, 979], [1030, 1530], [1553, 1969], [2038, 2479], [2512, 5738], [5786, 10345], [205, 486], [543, 979], [1030, 1101], [1171, 1969], [2038, 2479], [2512, 10345], [10357, 11375], [11382, 11902], [11909, 12301], [12308, 12560], [12567, 13181], [13188, 13468], [13188, 13468], [13586, 13955], [13967, 15345], [205, 745], [750, 979], [1030, 1101], [1171, 1969], [2038, 2479], [2038, 2479], [10357, 11301], [11344, 11375], [11382, 12560], [12567, 13181], [13188, 13468], [13586, 13955], [13967, 15345], [205, 1101], [1171, 1969], [2038, 2479], [2512, 5843], [2512, 11301], [11344, 11902], [11909, 13181], [13188, 15345], [205, 1101], [1171, 1969], [2038, 2479], [2038, 2479], [5887, 11301], [11344, 11902], [11909, 12560], [12567, 13275], [13298, 13468], [13586, 13955], [13967, 15345], [205, 700], [708, 979], [1030, 1101], [1171, 1645], [1651, 1969], [2038, 7868], [205, 700], [708, 979], [1030, 1101], [1171, 1645], [1651, 2479], [1651, 2479], [2512, 5062], [2512, 11680], [11735, 12973], [13023, 13742], [205, 700], [708, 1101], [1171, 1645], [1651, 1969], [2038, 2479], [7882, 11301], [11344, 12560], [12567, 13181], [13761, 15345], [205, 1101], [1171, 1645], [1651, 1969], [2038, 2479], [2512, 5293], [5068, 12301], [12308, 12560], [12567, 13275], [205, 486], [543, 745], [750, 979], [1030, 1530], [1553, 1969], [2038, 2366], [2375, 2479], [5299, 10345], [205, 486], [543, 1101], [1171, 1645], [1651, 1969], [2038, 2479], [2512, 11301], [11344, 12560], [12567, 13181], [13188, 15345], [205, 745], [750, 1101], [1171, 1969], [2038, 2479], [10357, 11301], [11344, 11412], [11442, 11950], [11950, 12301], [12308, 12560], [12567, 13181], [13188, 13468], [13298, 13955], [13967, 15345], [205, 486], [543, 1101], [1171, 1645], [1651, 1969], [2038, 2366], [2512, 10345], [2512, 11057], [11076, 11301], [11344, 11583], [11592, 12025], [12032, 12301], [12308, 12973], [13188, 13393], [13405, 13742], [13586, 15345], [205, 486], [543, 745], [750, 1101], [1171, 1969], [2038, 2479], [2038, 2479], [2375, 10345], [2512, 12560], [12567, 13181], [13761, 13955], [205, 486], [543, 745], [750, 1101], [1171, 1530], [1553, 1969], [2038, 2366], [2375, 2479], [10357, 11057], [11076, 11301], [11344, 12397], [12424, 12973], [13188, 13393], [13405, 13742], [13967, 15345], [205, 486], [543, 979], [1030, 1101], [1171, 1969], [2038, 2479], [2512, 5293], [10357, 11057], [11076, 11375], [11382, 11902], [11909, 12301], [12308, 12560], [12567, 13181], [13023, 13468], [13023, 15223]], \"sentences\": [\"He took out pomegranite\", \"He took out cutting board\", \"He took out knife\", \"He took out bowl\", \"He washed pomegranite\", \"He cut pomegranate into pieces\", \"He took out middle of pomegranate\", \"He took out middle of second piece of pomogranate\", \"The person procures a pomegranate from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes out a metal bowl  from the drawer, fills it with water, and washes the pomegranate.\", \"The person cuts the top and bottom of the pomegranate and then chops it in half.\", \"The person picks the pomegranate seeds from the husks by hand and places them into the bowl.\", \"The person washes his hands.\", \"The person gets a condiment and sprinkles it in the bowl.\", \"The person gets a second condiment and sprinkles it in the bowl.\", \"The person gets a third condiment and sprinkles it in the bowl.\", \"The person takes out a spoon from the drawer and stirs the seeds.\", \"The person washes the knife in the sink.\", \"The person returns the knife to the drawer.\", \"The person throws the husks into the wastebin.\", \"The person washes the cutting board in the sink and then returns it to the drawer.\", \"The person gets out a pomegranate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a bowl and rinses the pomegranate in it.\", \"The person cuts off the top and bottom of the pomegranate.\", \"The person cuts the pomegranate in half.\", \"The person scoops the seeds into the bowl.\", \"The person rinses his hands.\", \"The person adds salt and pepper to the seeds.\", \"The person gets out a spoon and stirs the seeds.\", \"The person rinses the knife.\", \"The person throws away the trash.\", \"The person rinses the cutting board.\", \"Take out a pomegranate, a cutting board, and a knife.\", \"Take out a large bowl, fill it with water and wash the pomegranate in the bowl, then dump out the water.\", \"Use the knife to cut the ends off of the pomegranate, then cut the pomegranate in half lengthwise.\", \"Take one of the pomegranate halves and hold it over the large bowl, press the peel and dislodge the seeds with your fingers.\", \"Repeat this process for the other half and remove any debris as you go.\", \"Wash and dry hands then salt the pomegranate seeds if desired.\", \"Add any other spices and mix with a spoon.\", \"Wash and dry knife, throw away peel, and wash and dry cutting board.\", \"Get your pomegrante, cutting board and knife ready.\", \"Get a bowl, rinsing it and the pomegrante in the sink.\", \"Cut off the ends of the pomegrante.\", \"Cut it in half.\", \"Over the bowl, separate the peel from the contents of the pomegrante and let the conteents fall into the bowl.\", \"Add salt.\", \"Add other seasonings and spices that you desire.\", \"Stir contents of bowl.\", \"Rinse, dry and put away your knife.\", \"Discard peels in trash.\", \"Wash, dry and store your cutting board.\", \"He took out pomegranate\", \"He took out cutting board\", \"He took out knife\", \"He took out bowl\", \"He washed pomegranate\", \"He emptied pomegranate\", \"He gets a pomegranate from the fridge.\", \"He gets a cutting board.\", \"He gets a knife.\", \"He washes a large bowl.\", \"He cuts off the ends of the pomegranate.\", \"He cuts the pomegranate in half.\", \"He empties the contents of the pomegranate into the bowl.\", \"He puts salt on the pomegranate.\", \"He mixes the pomegranate with a spoon.\", \"He throws away the skin.\", \"He gets a pomegranate.\", \"He gets a cutting board and knife.\", \"He gets a bowl.\", \"He rinses the pomegranate in the bowl.\", \"He cuts the pomegranate.\", \"He separates the good part of the pomegranate from the bad.\", \"He seasons the pomegranate.\", \"He stirs the pomegranate.\", \"He cleans up.\", \"Take out the pomegranate, a cutting board, and a knife.\", \"Get a large bowl and rinse it out.\", \"Rinse off the pomegranate.\", \"Cut off the top and bottom of the pomegranate, then cut it in half.\", \"Peel back the pomegranate, putting the seeds in the bowl, ensure that none of the skin gets into the bowl.\", \"Sprinkle a dash of sugar on the pomegranate.\", \"Then add a few dashes of cinnamon.\", \"Mix up well with a small spoon.\", \"He took out pomegranate\", \"He took out cutting board\", \"He took out knife\", \"He took out bowl\", \"He washed pomegranate\", \"He cut off ends of pomegranate\", \"He sliced pomegranate in half\", \"He took out off skin of pomegranate\", \"He gets a pomegranate.\", \"He gets a cutting board and knife.\", \"He gets a bowl.\", \"He rinses the pomegranate.\", \"He cuts the pomegranate.\", \"She removes the good parts of the pomegranate.\", \"He seasons the pomegranate.\", \"He mixes the pomegranate.\", \"He cleans up.\", \"The person takes a pomegranate out of the fridge.\", \"The person selects a cutting board and a knife.\", \"The person selects a bowl and washes the pomegranate in it.\", \"The person cuts off each end of the pomegranate and then cuts it in half.\", \"The person seeds the entire pomegranate into the bowl (by scraping the insides with his hands) and then picks out any pieces of rind.\", \"The person washes his hands.\", \"The person sprinkles something on the pomegranate seeds.\", \"The person sprinkles a second seasoning on the seeds.\", \"The person puts a third seasoning on the seeds.\", \"The person mixes up the seeds and seasonings thoroughly with a spoon.\", \"The person cleans the knife and returns it to the drawer.\", \"The person throws away the pomegranate rind.\", \"The person thoroughly washes and dries the cutting board and puts it away.\", \"The person takes a pomegranate out of the refrigerator.\", \"The person takes out a cutting board and a knife.\", \"The person takes out a medium sized mixing bowl and fills it with water\", \"The person rinses the pomegranate.\", \"The person cuts the ends off of the pomegranate.\", \"The person cuts the pomegranate in half and transfers the seeds from the pomegranate to the mixing bowl.\", \"The person removes all extra inedible parts from the mixing bowl.\", \"The person washes and dries his hands.\", \"The person sprinkles salt over the pomegranate seeds.\", \"The person sprinkles another seasoning over the seeds.\", \"The person sprinkles one more seasoning over the seeds.\", \"The person takes out a spoon and mixes the seeds.\", \"The person rinses, dries, and puts away the knife.\", \"The person throws away the pomegranate skins.\", \"The person washes, dries, and puts away the cutting board.\", \"He gets a pomegranate out of the fridge.\", \"He gets a cutting board out of the cupboard.\", \"He gets a knife out of the drawer.\", \"He rinses the pomegranate and a bowl.\", \"He cuts the ends off the pomegranate.\", \"He slices the pomegranate in half.\", \"He puts the seeds of the pomegranate into the bowl.\", \"He adds spices to the pomegranate seeds.\", \"He stirs the seeds and the spices.\", \"He throws away the seedless rinds of the pomegranate.\", \"The person gets out a pomegranate.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a bowl.\", \"The person washes the pomegranate in the bowl.\", \"The person cuts off the top and bottom of the pomegranate.\", \"The person cuts the pomegranate in half.\", \"The person scoops the seeds into the bowl.\", \"The person washes his hands.\", \"The person adds spices to the seeds.\", \"The person gets out a spoon and stirs the seeds.\", \"The person rinses and puts away the knife.\", \"The person throws away the outside of the pomegranate.\", \"The person washes, dries, and puts away the cutting board.\", \"The person takes a pomegranate from the fridge.\", \"The person takes a cutting board out of a drawer.\", \"The person takes out a knife.\", \"The person takes a metal bowl from the drawer and fills with it water and rinses the pomegranate inside it.\", \"The person cuts off both ends of the pomegranate on the cutting board with the knife and then splits it in half.\", \"The person takes one half of the pomegranate and extracts its seeds by hand over the metal bowl.\", \"The person takes the second half of pomegranate and breaks it apart and picks out the seeds with his fingers.\", \"The person washes his hands in the sink.\", \"The person sprinkles a condiment on the pomegranate seeds in the bowl.\", \"The person sprinkles a second condiment on the seeds in the bowl.\", \"The person sprinkles a third condiment on the seeds in the bowl.\", \"The person takes out a spoon from the drawer and stirs the condiments in the bowl.\", \"The person washes the knife off and returns it to the drawer.\", \"The person dumps the husks on the cutting board into the wastebin and then considerately washes the cutting board with soap and a sponge.\"], \"fps\": 29.4, \"num_frames\": 15403}, \"s37-d29.avi\": {\"timestamps\": [[177, 420], [505, 1064], [1076, 1761], [1766, 2279], [2298, 2565], [177, 420], [505, 966], [976, 1875], [1955, 2565], [2613, 2931], [177, 287], [291, 420], [505, 966], [976, 1815], [1838, 2279], [2298, 2565], [177, 287], [291, 420], [505, 966], [976, 1153], [1153, 1209], [1239, 1761], [1766, 1875], [1955, 2279], [2298, 2565], [2613, 2689], [2724, 2840], [177, 420], [505, 1064], [1076, 1209], [1239, 1875], [1955, 2472], [177, 287], [291, 420], [505, 966], [976, 1875], [1955, 2279], [2480, 2565], [2613, 2840], [177, 420], [505, 966], [976, 1209], [976, 1209], [1239, 1815], [1838, 2279], [2298, 2565], [2850, 2931], [177, 332], [332, 420], [505, 1064], [1076, 1875], [2298, 2565], [2850, 2931], [177, 287], [291, 420], [505, 966], [976, 1875], [1955, 2279], [1955, 2565], [2613, 2689], [177, 287], [291, 420], [505, 1875], [1955, 2279], [2298, 2565], [2613, 2689], [2724, 2840], [177, 287], [291, 420], [505, 966], [976, 1875], [1955, 2279], [2298, 2565], [2724, 2840], [177, 287], [291, 420], [505, 843], [893, 1815], [1838, 2279], [2298, 2565], [2613, 2747], [2747, 2840], [177, 287], [291, 420], [505, 966], [976, 1153], [1153, 1815], [1838, 2279], [2298, 2472], [2613, 2689], [2613, 2840], [177, 287], [291, 420], [505, 966], [976, 1815], [1838, 2279], [2480, 2565], [2724, 2823], [177, 287], [177, 287], [291, 420], [505, 1064], [1076, 1875], [2613, 2931], [177, 287], [291, 420], [505, 966], [976, 1875], [1955, 2565], [2613, 2840]], \"sentences\": [\"Get a knife and cutting board.\", \"Place fresh herbs on to cutting board.\", \"Cut the herbs into small pieces.\", \"Find a plate or dish of appropriate size.\", \"Move herbs from cutting board to the dish.\", \"The man pulls out a knife and cutting board.\", \"The man selects some herbs.\", \"The man uses the knife to slice the herbs into small pieces.\", \"The man moves the chopped herbs onto a plate.\", \"He washes the knife when he is finished.\", \"He took out cutting board\", \"He took out knife\", \"He took out herbs\", \"He chopped herbs\", \"He took out plate\", \"He put herbs in plate\", \"The person takes a cutting board out of a drawer.\", \"The person takes a knife out of a drawer.\", \"The person gathers herbs from a container and brings them over to the cutting board.\", \"The person evenly lines up the herbs on the cutting board and cuts them in half.\", \"The person puts both piles of herbs together and uses the knife to line them up evenly.\", \"The person, using a short sawing motion, cuts the herbs into small pieces.\", \"The person removes the small bits of the herbs that have clung to the knife and puts the herbs into a small pile.\", \"The person goes to the cabinets and gets a small plate which he brings over to the cutting board.\", \"The person uses the knife to scoop up the herbs and places them onto the small plate.\", \"The person rinsed the knife off.\", \"The person dried the knife off and placed it on the cutting board.\", \"First prepare your cuttingboard and knife.\", \"Line up your herbs so you can easily cut them together.\", \"Pressing down on the herbs make very small slices.\", \"Continue this through the entire group of herbs.\", \"Transfer the freshly cut herbs into a small dish.\", \"selects cuttingboard\", \"selects knife\", \"takes grren onions out from side ounter\", \"Finely chops green onions\", \"gets a plate from the cubbard\", \"Transfers onions to plate\", \"Wash and dry knife\", \"The man takes out a cutting knife and cutting board and places them on the counter.\", \"Next, he places fresh herbs on the cutting board.\", \"First, he cuts the herbs in half.\", \"He takes the halves and places the pieces together and begins to cut.\", \"He cuts the herbs in tiny pieces on the cutting board.\", \"The man takes out a small plate from the cabinet and places it on the counter.\", \"He takes the herbs from the cutting board and places them on the small plate.\", \"He rinses and dries the knife and places it on the cutting board.\", \"The person takes out a cutting board and puts it on the counter.\", \"The person takes out a knife and puts it on the counter.\", \"The person gathers herbs together and brings them to the cutting board.\", \"The person chops the herbs.\", \"The person takes out a small plate and puts the herbs on the plate.\", \"The person rinses and dries the knife.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes some herb stalks from a plant on the counter.\", \"The person chops the herbs on the cutting board.\", \"The person procures a plate from the cabinet.\", \"The person sets the chopped herbs on the plate.\", \"The person washes the knife in the sink.\", \"The person takes the chopping board out of the drawer.\", \"The person takes the knife out of the drawer.\", \"The person chops the herbs into small pieces.\", \"The person takes a small plate out of the cupboard.\", \"The person moves the chopped herbs onto the plate.\", \"The person rinses the knife.\", \"The person wipes the knife dry with a cloth.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures some fresh herbs from a plant out of frame.\", \" The person chops the herbs on the cutting board.\", \"The person procures a plate from the cabinet.\", \"The person sets the chopped herbs on the plate.\", \"The person washes the knife in the sink and then dries it on a towel.\", \"The person takes a chopping board out of the drawer.\", \"The person takes out a knife from the drawer.\", \"The person picks out some herbs.\", \"The person chops the herbs into small pieces.\", \"The person gets a small plate from the cupboard.\", \"The person moves the chopped herbs onto the plate.\", \"The person rinses the knife.\", \"The person wipes the knife dry with a towel.\", \"Man takes out cutting board.\", \"Man takes out kitchen knife.\", \"Man gets green vegetables.\", \"Man cuts vegetables in half.\", \"Man chops vegetables.\", \"Man gets plate and brings it to cutting board\", \"Man puts vegetables on plate\", \"Man washes knife\", \"Man dries knife with towel\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out some herbs.\", \"The person chops up the herbs.\", \"The person gets out a small plate.\", \"The person puts the herbs on the plate.\", \"The person washes and dries the knife.\", \"The person opened a drawer\", \"The person took a cutting board out of the drawer\", \"The person took a knife out of the drawer\", \"The person put herbs on the cutting board.\", \"The person chopped the herbs\", \"The person put the herbs on a plate\", \"The person removes a cutting board from the drawer.\", \"The person removes a large knife from the drawer.\", \"The person procures some sprigs of herbs from the countertop off screen.\", \"The person chops the herbs on the cutting board with the knife.\", \"The person gets a plate from the cabinet and scoops the herbs onto the plate.\", \"The person rinses the knife under the faucet, dries it with the towel, and then puts it back on the dirty cutting board.\"], \"fps\": 29.4, \"num_frames\": 2996}, \"s36-d42.avi\": {\"timestamps\": [[257, 2188], [2249, 3908], [4008, 4177], [4185, 4661], [4737, 4911], [5004, 5547], [5707, 5943], [6121, 6515], [6616, 7305], [7404, 7769], [7775, 8041], [8214, 14395], [15001, 16005], [16074, 17264], [17351, 17948], [257, 1031], [1047, 2188], [2249, 3908], [4008, 4911], [5004, 5943], [6121, 6515], [6616, 7305], [7404, 7850], [7860, 8041], [8214, 11954], [12201, 14395], [15001, 15762], [17948, 18043], [257, 1031], [1047, 1842], [1848, 2188], [2249, 3908], [4008, 4661], [4737, 4911], [5004, 5156], [5223, 5547], [5707, 5943], [6121, 6515], [6616, 7769], [7775, 15762], [15932, 17983], [257, 788], [788, 1031], [1047, 2375], [2488, 3908], [4008, 4177], [4185, 4911], [5004, 5943], [6121, 6515], [6616, 7305], [7404, 8041], [8214, 8602], [8734, 10347], [10403, 11954], [12201, 16005], [16074, 17264], [257, 490], [633, 679], [711, 1031], [1047, 1842], [1848, 3908], [4008, 4177], [4185, 4241], [4330, 4358], [4365, 4661], [4737, 4911], [257, 1031], [1047, 1842], [1848, 3908], [4008, 4177], [4185, 4911], [5004, 5943], [6121, 6515], [6616, 7305], [7404, 7769], [7775, 10347], [10403, 15762], [15932, 17264], [15932, 17983], [257, 1031], [1047, 3908], [4008, 4241], [4330, 4911], [5004, 5943], [6121, 6515], [6616, 7900], [7960, 10347], [10403, 15161], [15238, 16005], [17351, 17562], [257, 1031], [1047, 1842], [1848, 4177], [4185, 4911], [5004, 5943], [6121, 6515], [6616, 7305], [7404, 7769], [7775, 11954], [12201, 15762], [15932, 17264], [17351, 17983], [257, 1031], [1047, 1842], [1848, 2188], [2249, 3908], [4008, 4177], [4185, 4661], [4737, 4911], [5004, 5547], [5707, 5943], [6121, 6515], [6616, 7305], [7404, 7769], [7775, 10276], [10302, 15762], [15932, 17264], [257, 1329], [1542, 2188], [2249, 4177], [5004, 5156], [5223, 6194], [6198, 8041], [8214, 16332], [16405, 17264], [16074, 17948], [257, 490], [633, 679], [711, 1031], [1047, 1842], [1848, 3908], [4008, 4177], [4185, 4241], [4330, 4661], [4737, 4911], [4185, 5156], [5223, 5547], [5707, 5943], [6121, 6515], [6616, 7047], [257, 1031], [1047, 1842], [1848, 3908], [4008, 4661], [5004, 5943], [6121, 6515], [7057, 7305], [7404, 7769], [7775, 11954], [12201, 15762], [17351, 17562], [17351, 17948], [257, 1031], [1047, 1842], [1848, 3908], [4008, 4911], [4737, 5943], [6121, 6515], [6616, 7850], [7860, 11954], [12201, 15762], [17983, 18043], [257, 1031], [1047, 2375], [2488, 3908], [4008, 4241], [4330, 4911], [5004, 5943], [6121, 6515], [6616, 7305], [7404, 7769], [7775, 8041], [8214, 10134], [10134, 14395], [15001, 16005], [15932, 17562], [17351, 17948], [257, 490], [633, 679], [711, 1031], [1047, 1842], [1848, 3570], [3575, 4177], [4185, 4241], [257, 788], [788, 1031], [1047, 2375], [2488, 3908], [4008, 4241], [4330, 4911], [5004, 5943], [6121, 6787], [6616, 7900], [7960, 8602], [8734, 10347], [10403, 11653], [11778, 15161], [15238, 16136], [16161, 17264], [257, 490], [633, 679], [711, 1031], [1047, 1842], [1848, 3908], [4008, 4177], [4185, 4241], [4330, 4385], [4390, 4661], [4737, 4911], [5004, 5156], [5223, 5547], [5707, 5943]], \"sentences\": [\"Person unwraps broccoli head.\", \"Person chops broccoli head into small chunks.\", \"Person throws away remainder of broccoli head.\", \"Person puts broccoli into bowl.\", \"Person rinses broccoli in bowl.\", \"Person takes out pot and fills with water.\", \"Person turns on stove and places pot on burner.\", \"Person puts broccoli into pot.\", \"Person pours more water into pot.\", \"Person sprinkles salt into pot.\", \"Person places lid on pot.\", \"Person tests broccoli with fork.\", \"Person drains broccoli.\", \"Person serves broccoli onto plate.\", \"Person sprinkles pepper on broccoli.\", \"A man takes out a circular cutting board, a large bowl, and a knife\", \"he takes broccoli from the refrigerator and unwraps it from its packaging\", \"he cuts off the stem from the broccoli head\", \"he moves all of the broccoli pieces into the bowl and rinses them in the sink\", \"he takes out a large pot, fills it about a fourth of the way with water, and puts it on the stove\", \"he moves the broccoli pieces from the bowl to the pot\", \"he uses the bowl to add more water to the pot with the broccoli\", \"he adds salt to the broccoli in the pot of water\", \"he puts a lid on the pot and lets the broccoli cook\", \"he takes a plate out of the cabinet and rinses it in the sink\", \"he takes the lid off and checks the broccoli\", \"he takes the pot off of the stove and drains the pot of its water, being careful to keep the broccoli\", \"he puts the broccoli onto the plate and puts pepper on it\", \"Retrieves cutting board, bowl, and knife.\", \"Removes broccoli from refrigerator.\", \"Unwraps broccoli.\", \"Cuts florets from broccoli.\", \"Places broccoli florets into bowl.\", \"Fills bowl with water.\", \"Retrieves pan and lid.\", \"Fills pan with water.\", \"Turns on burner and places pan on stove.\", \"Removes broccoli from bow and places it into the pan.\", \"Seasons broccoli with salt.\", \"Removes pan from stove and dumps water out of pan.\", \"Removes broccoli from pan and places it on a plate; seasons with pepper.\", \"The person takes out a cutting board and a metal bowl from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person procures a package of broccoli from the fridge, removes it plastic wrapper and discards it in the trash.\", \"The person cuts the broccoli onto the cutting board and into the bowl.\", \"The person throws the stem and a piece which fell on the floor into the wastebin.\", \"The person puts the broccoli into the metal bowl and fills it with water.\", \"The person takes out a pot from the drawer, fills it with water, then sets it on the stove and turns the stove on.\", \"The person plucks the chopped broccoli from the bowl and places it into the pot on the stove.\", \"The person rinses the bowl and knife, returns the knife to the drawer, and then fills the bowl with water which he dumps into the pot on the stove.\", \"The person adds salt to the water then puts a lid on the pot.\", \"The person washes the cutting board and returns it to the drawer.\", \"The person cleans the countertop.\", \"The person procures a plate from the cabinet and rinses it in the sink.\", \"The person takes out a fork from the drawer, tests the broccoli, then pours the water from the pot into the sink.\", \"The person uses the fork to pluck the broccoli from the pot and set it on the plate.\", \"He took out cutting board\", \"He took out bowl\", \"He took out knife\", \"He took out broccoli\", \"He cut leaves off stem\", \"He threw away stem\", \"He washed hands\", \"He put water in bowl\", \"He put broccoli in bowl\", \"He washed broccoli\", \"He gets the needed equipment.\", \"He gets the broccoli.\", \"He cuts the heads off the broccoli.\", \"He throws the rest away.\", \"He puts the broccoli in a bowl and adds water.\", \"He puts water in a pot and starts heating it.\", \"He puts the broccoli in the pot.\", \"He adds more water to the pot.\", \"He salts the water.\", \"He cleans up a bit.\", \"He removes the broccoli from the heat and pours out the water.\", \"He puts the broccoli on a plate.\", \"He seasons the broccoli.\", \"The man takes out his supplies.\", \"The man slices off the broccoli he will use.\", \"The man discards the unwanted pieces.\", \"He washes the broccoli.\", \"The man adds water to a pot and heats it.\", \"The man adds the broccoli to the pot.\", \"The man adds some more water and some salt to the pot.\", \"The man cleans while waiting for the broccoli to cook.\", \"The man waits for the broccoli to cook.\", \"He drains the water from the pot.\", \"The man places the broccoli onto a plate.\", \"He gets a cutting board, knife, and bowl.\", \"He gets the broccoli.\", \"He cuts the heads off the broccoli and discards the rest.\", \"He rinses the broccoli.\", \"He fills a pot with water and activates the stove.\", \"He puts the broccoli in the pot.\", \"He adds more water to the pot.\", \"He salts the water.\", \"He gets a plate.\", \"He takes the pot from the stove and pours out the water.\", \"He puts the broccoli on the plate.\", \"He seasons the broccoli.\", \"He gets out a cutting board, bowl, and knife.\", \"He chooses the broccoli.\", \"He remove the broccoli from the plastic.\", \"He cuts of the broccoli heads.\", \"He discards the stalk.\", \"He puts the broccoli in a bowl.\", \"He puts water in the bowl.\", \"He puts water in a pot.\", \"He turns on the stove and puts the pot on it.\", \"He puts the broccoli in the pot.\", \"He puts more water in the pot.\", \"He salts the water.\", \"He cleans up a bit.\", \"He takes the pot and pours out the water.\", \"He puts the broccoli on a plate.\", \"The man begins by placing a cutting board, a knife and a small metal bowl on the counter.\", \"He then selects a crown of broccoli from the fridge and removes the plastic wrapping.\", \"Next, he uses the knife to cut the broccoli away from the stalk and then discards the stalk.\", \"He then places the broccoli into the metal bowl.\", \"Next, he selects a pot, fills it halfway full with water and then adds the broccoli to the pot.\", \"He adds salt to the pot and then places the lid on it.\", \"After the broccoli has boiled for awhile, he pours to excess water into the sink.\", \"Using a fork, he then places each piece of broccoli onto a plate.\", \"Finally, the man sprinkles some spice on the broccoli.\", \"He took out cutting board\", \"He took out bowl\", \"He took out knife\", \"He took out broccoli\", \"He cut broccoli off stem\", \"He threw away stem\", \"He washed hands\", \"He put broccoli in bowl\", \"He washed broccoli\", \"He took out pot\", \"He put water in pot\", \"He turned on stove\", \"He put broccoli in pot\", \"He washed knife\", \"He gets out some hardware.\", \"He gets broccoli from the fridge.\", \"He cuts the good pieces of broccoli off.\", \"He puts the broccoli in a bowl.\", \"He puts water in a pot and puts it on a heating stove.\", \"He puts the broccoli in the water.\", \"He adds more water to the pot.\", \"He salts the water.\", \"He gets a plate out.\", \"He pours the water out of the pot.\", \"He puts the broccoli on the plate.\", \"He seasons the broccoli.\", \"He gets out equipment.\", \"He gets the broccoli.\", \"He cuts off the heads of the broccoli.\", \"He puts water in a bowl with the broccoli.\", \"He sets a pot of water on a hot stove.\", \"He puts the broccoli in the pot.\", \"He salts the water.\", \"He get a plate out.\", \"He pours out the hot water.\", \"He puts the broccoli on the plate and seasons it.\", \"The man places his utensils on the counter.\", \"He removes the broccoli from the refrigerator and unwraps it.\", \"Using the cutting board and knife, he cuts the individual florets off of the broccoli stem.\", \"He throws the remaining stem into the recycling bin and washes his hands.\", \"He places the broccoli florets into a bowl and rinses them in water.\", \"He fills a small stockpot with water and places it on the stovetop.\", \"He adds the rinses broccoli florets to the stockpot on the stovetop.\", \"He adds more water to the stockpot on the stove.\", \"He seasons the broccoli florets by adding salt to the water.\", \"He places a stockpot lid on the pot.\", \"He cleans the counter and utensils while waiting for the broccoli to boil.\", \"He tests how thoroughly cooked the broccoli florets are by placing a fork into one.\", \"Keeping the stockpot lid slightly off, he drains the stockpot water into the sink.\", \"He places the broccoli florets onto a plate and arranges them neatly.\", \"He seasons the broccoli florets on the plate.\", \"He took out cutting board\", \"He took out bowl\", \"He took out knife\", \"He took out broccoli\", \"He cut up broccoli\", \"He threw away scraps\", \"He washed hands\", \"The person takes a cutting board and a metal bowl from the drawer.\", \"The person take a knife from the drawer.\", \"The person gets a stalk of broccoli from the fridge, removes its plastic wrapper and disposes of the latter in the wastebin.\", \"The person chops the broccoli off the stalk onto the cutting board and into the bowl.\", \"The person disposes of the stalk and several pieces that fell on the floor into the wastebin and then washes his hands in the sink.\", \"The person places all the broccoli on the cutting board into the metal bowl and then fills it with water from the faucet.\", \"The person takes a pot from a drawer, fills it with water, then places it on the stove and turns it on.\", \"The person places the broccoli from the bowl into the pot and then rinses the bowl in the sink.\", \"The person adds salt to the pot.\", \"The person places a lid on the pot, then washes off the cutting board in the sink and replaces it in the drawer.\", \"The person cleans the counter while the broccoli is cooking in the pot on the stove.\", \"The person gets a plate from the cupboard\", \"The person takes a fork from the drawer and test the broccoli and then removes the pot from the stove.\", \"The person drains the water in the pot from the broccoli into the sink.\", \"The person uses the fork to place the broccoli on the plate.\", \"He took out cutting board\", \"He took out bowl\", \"He took out knife\", \"He took out broccoli\", \"He cut broccoli off stem\", \"He threw away stem\", \"He washed hands\", \"He put water in bowl\", \"He put broccoli in bowl\", \"He washed broccoli\", \"He took out pan\", \"He put water in pan\", \"He turned on stove\"], \"fps\": 29.4, \"num_frames\": 18117}, \"s37-d39.avi\": {\"timestamps\": [[210, 500], [513, 623], [623, 789], [840, 1111], [1162, 2613], [2613, 2952], [2963, 3520], [3581, 3904], [3911, 4961], [4983, 5716], [5716, 6388], [6422, 6645], [6645, 6891], [6897, 7784], [7816, 8968], [210, 500], [513, 789], [840, 1111], [1162, 2719], [2815, 3904], [3911, 5716], [5716, 6945], [6956, 8968], [210, 500], [513, 678], [684, 789], [684, 789], [840, 1287], [1354, 2952], [2963, 3904], [3911, 4201], [4240, 5354], [5354, 6645], [6645, 6815], [6853, 8134], [8134, 8968], [210, 500], [513, 789], [840, 1111], [1162, 2613], [2613, 3904], [3911, 5664], [5665, 6891], [6897, 8968], [210, 500], [513, 789], [840, 1111], [1162, 2719], [2815, 3980], [4021, 5716], [5716, 6945], [6956, 8968], [210, 500], [513, 678], [684, 789], [840, 1111], [1162, 2613], [2613, 3520], [3581, 3980], [4021, 4961], [4983, 6388], [6422, 6945], [6956, 7784], [7816, 8034], [8040, 8968], [210, 500], [513, 789], [840, 1253], [1253, 2719], [2815, 3520], [3581, 3904], [3911, 5716], [5716, 6815], [6853, 8968], [210, 500], [513, 623], [623, 789], [840, 1111], [1162, 2668], [2668, 2952], [2963, 3520], [3581, 3712], [3731, 3904], [3911, 4201], [4240, 4961], [210, 500], [513, 623], [623, 789], [840, 1111], [1162, 2613], [2613, 3520], [3581, 3980], [4021, 4961], [4983, 5716], [5716, 6388], [6422, 6945], [6956, 7784], [7816, 8034], [8040, 8968], [210, 500], [513, 623], [623, 789], [840, 1111], [1162, 2719], [2815, 2952], [2963, 3712], [3731, 3980], [4021, 4201], [4983, 5716], [5716, 6945], [6956, 8034], [8977, 9105], [210, 500], [513, 789], [840, 1111], [1162, 1287], [1354, 2613], [2613, 3520], [3581, 3904], [3911, 4961], [4240, 5716], [5716, 6388], [6422, 6891], [6897, 7784], [8977, 9105], [210, 500], [513, 678], [684, 789], [840, 1111], [1162, 2613], [2613, 2952], [2963, 3520], [3581, 3980], [4021, 4961], [4983, 6388], [6422, 7784], [7816, 8034], [8040, 8968], [210, 500], [513, 623], [623, 789], [840, 1111], [1162, 2613], [2613, 2952], [2963, 3520], [3581, 3904], [3911, 4961], [4983, 5716], [5716, 6945], [6956, 7784], [7816, 8034], [8040, 8968], [8977, 9105], [210, 500], [513, 789], [840, 1111], [1162, 3520], [3581, 4961], [4983, 6388], [6422, 7784], [8977, 9105], [210, 500], [513, 623], [623, 789], [840, 1111], [1162, 2613], [2613, 3520], [3581, 3904], [4983, 5716], [5716, 6891], [6897, 7784], [7816, 8968]], \"sentences\": [\"Person takes out leeks.\", \"Person takes out cutting board.\", \"Person takes out knife.\", \"Person washes leeks.\", \"Person chops leaves of leeks to small slices.\", \"Person takes out a pan.\", \"Person turns stove on.\", \"Person pours oil into pan.\", \"Person spreads oil around pan with spatula.\", \"Person puts chopped leeks into pan.\", \"Person stirs leeks in pan.\", \"Person sprinkles salt into pan.\", \"Person sprinkles pepper into pan.\", \"Person stirs leeks in oil, salt and pepper in pan.\", \"Person scrapes leeks onto plate.\", \"He grabs the leeks.\", \"He gets the cutting board and a knife.\", \"He rinses the leeks.\", \"He chops the leeks.\", \"He turns on the stove and adds oil to the pan.\", \"He adds the leeks to the pan.\", \"He seasons the leeks.\", \"He finishes cooking and puts the leeks on a plate.\", \"He gets leeks from the fridge.\", \"He gets out a cutting board.\", \"He gets a knife.\", \"He washes the leeks.\", \"He starts cutting up the leeks.\", \"He gets out a frying pan.\", \"He pours oil into the pan.\", \"He spreads the oil.\", \"He pours the leeks into the pan.\", \"He puts salt in the pan.\", \"He puts pepper in the pan.\", \"He gets a plate.\", \"He puts the leeks on the plate.\", \"He gets out the leeks.\", \"He retrieves a knife and a cutting board.\", \"He washes the leeks.\", \"He chops the leeks.\", \"He puts oil into a heating pan.\", \"He adds the leeks to the pan.\", \"He adds salt and pepper to the leeks.\", \"He puts the cooked leeks on a plate.\", \"He gets out the leeks.\", \"He gets out a cutting board and knife.\", \"He washes the leeks.\", \"He chops the leeks.\", \"He puts a pan on the hot stove and adds oil to it.\", \"He adds the leeks to the pan.\", \"He seasons the leeks.\", \"He finishes cooking and places the leeks on a plate.\", \"The person gets out a leek.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the leek.\", \"The person chops up the leaves of the leek.\", \"The person gets out a frying pan, puts it on the stove and turns it on.\", \"The person adds oil to the pan.\", \"The person gets out a wooden spatula and stirs the oil.\", \"The person puts the leeks in the pan and cooks them.\", \"The person adds salt and pepper to the leeks.\", \"The person cooks the leeks some more.\", \"The person gets out a plate.\", \"The person scrapes the leeks onto the plate.\", \"He gets out the leeks.\", \"He gets a cutting board and a knife.\", \"He rinses the leeks.\", \"He chops the leeks.\", \"He gets a pan and turns on the stove.\", \"He oils the pan.\", \"He adds the leeks to the pan.\", \"He seasons the leeks.\", \"He puts the cooked leeks on a plate.\", \"He took out leeks\", \"He took out cutting board\", \"He took out knife\", \"He washed leeks\", \"He chopped up leaves\", \"He took out pan\", \"He turned on stove\", \"He took out oil\", \"He put oil in pan\", \"He took out wooden spoon\", \"He spread oil on pan\", \"The person gets out a leek.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the leek.\", \"The person chops up the leaves of the leek.\", \"The person gets out a frying pan, puts it on the stove and turns it on.\", \"The person adds oil to the pan.\", \"The person gets out a wooden spatula and stirs the oil.\", \"The person puts the leek leaves in the pan.\", \"The person stirs the leaves as they cook.\", \"The person adds salt and pepper.\", \"The person continues to cook the leek.\", \"The person gets out a plate.\", \"The person scrapes the cooked leek onto the plate.\", \"The man grabs a leek.\", \"The man grabs a cutting board.\", \"The man grabs a knife.\", \"The man rinses the leek.\", \"The man finely chops the leaves of the leek.\", \"The man grabs a pan.\", \"The man grabs oil.\", \"The man places some oil into the pan.\", \"The man grabs a wooden spatula.\", \"The man adds the chopped leaves to the pan and stirs.\", \"The man grabs salt and pepper, seasons the leaves, and stirs.\", \"The man grabs a plate.\", \"The man places the fried leek leaves into the plate and completes his assigned task.\", \"Remove leeks from fridge.\", \"Gather cutting board and knife on counter.\", \"Rinse leeks in water.\", \"Trim ends of leeks to one length.\", \"Chop green leaves of leeks edgewise.\", \"Put frying pan on lit stove burner.\", \"Add vegetable oil to frying pan.\", \"Spread oil equally through frying pan.\", \"Add chopped leeks to oil.\", \"Stir leeks in oil.\", \"Add salt and pepper to leeks in oil.\", \"Stir leeks in oil.\", \"Spoon cooked leeks onto plate.\", \"The person gets out a leek.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person rinses the leek.\", \"The person chops up the leek's leaves.\", \"The person gets out a frying pan.\", \"The person puts the pan on the stove and turns it on.\", \"The person adds oil to the pan.\", \"The person gets out a wooden spatula and stirs the oil.\", \"The person adds the leeks to the pan and keeps stirring.\", \"The person adds salt and pepper to the leeks and keeps stirring.\", \"The person gets out a plate.\", \"The person puts the leeks on the plate.\", \"A leek is removed from the refrigerator and placed on the counter.\", \"The person removed a cutting board.\", \"The person selected a knife.\", \"The leek was washed and placed on the cutting board.\", \"The green end of the leek is sliced thinly.\", \"A frying pan is selected and placed on the stove.\", \"The burner is adjusted.\", \"Oil is added to the pan.\", \"A spatula is selected and used to spread the oil in the pan while it heats.\", \"The greens are added to the pan and stirred.\", \"Seasoning was added.\", \"Cooking continues.\", \"A plate is selected for serving.\", \"The leeks are transferred to the plate.\", \"The leeks are prepared.\", \"A man enters his kitchen, opens the refrigerator, opens the lower drawer of the refrigerator, and takes out a leek.\", \"The man closes the refrigerator door, takes the leek over to the counter where he opens up two drawers under the counter and takes out a cutting board from one drawer and a knife from the other.\", \"The man closes the drawers under the counter and takes the leek over to the sink, where he commences to wash it thoroughly.\", \"The man then places the leek on the cutting board which he has placed on the counter, and finely chops the green leafy part of the leek; when he has finished he takes out a pan from below the counter and places it on the electric stove top, which he ignites.\", \"The man goes over to his cabinet, where he removes a bottle of olive oil, then proceeds to pour a small amount of the oil in the pan; when he has finished, he takes out a wooden spoon from under the counter and evenly disperses the oil throughout the pan.\", \"The man goes back to the cutting board and picks up the finely chopped leeks and places them in the pan, where he proceeds to saute the chopped leaks.\", \"The man then walks over to another counter, where he grabs his salt and pepper shakers, and stirs some salt and pepper into the pan of leeks.\", \"Finally, the man walks over to his cupboard, procures a plate, takes it back to the counter, turns off the stove, picks up the pan and spoons the leeks from the spoon to the plate.\", \"The person takes out the leeks.\", \"The person takes out a cutting board.\", \"The person takes out a knife.\", \"The person rinses the leeks.\", \"The person chops the leafs of the leek into small pieces.\", \"The person places a pan on the stove and turns it on.\", \"The person places oil into the pan.\", \"The person places the leeks into the pan.\", \"The person adds salt and pepper to the leeks.\", \"The person mixes the leeks around the pan.\", \"The person places the cooked leeks onto a plate.\"], \"fps\": 29.4, \"num_frames\": 9153}, \"s36-d31.avi\": {\"timestamps\": [[203, 307], [357, 540], [545, 704], [737, 1950], [2037, 2182], [2301, 3344], [3526, 3814], [3837, 4067], [4171, 4344], [4357, 4506], [4538, 5355], [5427, 6290], [6306, 6612], [6625, 6851], [203, 307], [357, 540], [545, 704], [737, 2182], [2301, 3344], [3526, 4067], [4171, 4506], [4538, 5355], [5427, 6290], [6306, 6612], [6625, 6851], [6873, 7019], [203, 307], [357, 540], [545, 704], [737, 2182], [2301, 3344], [3526, 4067], [4171, 4506], [4538, 5355], [5427, 6290], [6306, 6612], [6625, 6851], [6873, 7019], [203, 307], [357, 540], [545, 704], [737, 1950], [2037, 2182], [2301, 3344], [3526, 3814], [3837, 4067], [4171, 4410], [4417, 5355], [5427, 6290], [6306, 6612], [6873, 7019], [203, 307], [357, 704], [737, 1950], [2037, 2182], [2301, 3344], [3526, 4067], [4171, 4506], [4538, 5355], [5427, 6290], [6625, 7019], [203, 307], [357, 540], [545, 704], [737, 2107], [2115, 3344], [3526, 5355], [5427, 6290], [203, 307], [357, 540], [545, 704], [737, 1950], [2037, 2182], [2301, 3194], [3255, 4024], [4049, 4410], [4417, 4506], [4538, 5355], [5427, 6290], [6306, 6612], [6306, 7019], [203, 307], [357, 540], [545, 2182], [2301, 3344], [3526, 3814], [3837, 4067], [4171, 4344], [4357, 4506], [4538, 5355], [5427, 6290], [6306, 6612], [6625, 6851], [203, 1366], [1373, 2591], [2597, 2926], [2932, 3814], [3837, 4067], [4171, 4506], [4538, 5922], [6306, 6687], [203, 307], [357, 540], [545, 704], [737, 2182], [2301, 3344], [3526, 3814], [3837, 4067], [4171, 4344], [4357, 4506], [4538, 5355], [5427, 6290], [5943, 6612], [6692, 6789], [203, 307], [357, 540], [545, 704], [737, 1950], [2037, 2182], [2301, 3344], [3526, 3814], [203, 1008], [1029, 1950], [1029, 1950], [2037, 3344], [3837, 4410], [4417, 5355], [5427, 6290], [203, 307], [357, 540], [545, 704], [737, 1008], [1029, 1950], [2037, 2182], [2301, 3344], [3526, 3814], [3526, 4344], [4357, 4506], [4538, 5355], [5427, 6290], [6794, 6851], [203, 307], [357, 584], [585, 704], [737, 1950], [2037, 2182], [2301, 3344], [3526, 3814], [3837, 4067], [4171, 4460], [4469, 4506], [4538, 5355], [5427, 6290], [6306, 6612], [6625, 6851], [203, 704], [737, 1008], [1029, 1950], [2037, 2182], [2301, 3344], [3526, 3814], [3837, 4067], [4171, 4410], [4417, 4506], [4538, 5355], [5427, 6290], [6306, 6612], [203, 540], [545, 704], [737, 1008], [1029, 1950], [2037, 3344], [3837, 6228], [6625, 6851], [203, 704], [737, 1950], [2037, 3344], [3526, 3895], [3901, 4067], [4171, 5355], [5427, 6290], [6306, 6687], [203, 307], [357, 540], [545, 704], [737, 1950], [2037, 2182], [2301, 3344], [3526, 3814], [3526, 4067], [4171, 4410], [4417, 5355], [5427, 6290], [6235, 6612]], \"sentences\": [\"The person takes a clove of garlic from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer\", \"The person removes peels from a clove of garlic.\", \"The person returns the rest of the garlic to the pantry.\", \"The person chops the garlic on the cutting board.\", \"The person changes his mind and brushes the chopped garlic and the peels onto the cutting board and sweeps them into the trash.\", \"The person washes the cutting board in the sink.\", \"The person takes another clove of garlic from the pantry.\", \"The person takes out another knife from the drawer.\", \"The person peels the garlic clove.\", \"The person chops the garlic on the cutting board.\", \"The person throws the peels into the wastebin.\", \"The person washes his hands.\", \"The person takes a clove of garlic from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person removes a bit the husk from the clove of garlic, takes a segment and returns the rest to the pantry.\", \"The person chops the garlic on the cutting board.\", \"The person gives up, throws everything in the wastebin, washes off the cutting board, and cleans the countertop.\", \"The person gets another bit of garlic from the pantry and another knife from the drawer.\", \"The person peels the garlic.\", \"The person chops the garlic on the cutting board.\", \"The person sweeps up the bits of husk and disposes them in the wastebin.\", \"The person washes his hands in the sink.\", \"The person dries his hands on a towel.\", \"The person takes a clove of garlic from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person removes a bit the husk from the clove of garlic, takes a segment and returns the rest to the pantry.\", \"The person chops the garlic on the cutting board.\", \"The person gives up, throws everything in the wastebin, washes off the cutting board, and cleans the countertop.\", \"The person gets another bit of garlic from the pantry and another knife from the drawer.\", \"The person peels the garlic.\", \"The person chops the garlic on the cutting board.\", \"The person sweeps up the bits of husk and disposes them in the wastebin.\", \"The person washes his hands in the sink.\", \"The person dries his hands on a towel.\", \"Garlic is removed from a cabinet.\", \"The person removes a cutting board.\", \"The person selects a knife.\", \"The bulb is broken apart.\", \"The garlic is put back in the cabinet.\", \"A clove is peeled.\", \"The peels and garlic are discarded.\", \"The cutting board and counter are wiped.\", \"Another garlic clove is removed from a cabinet.\", \"The clove is peeled.\", \"The garlic is chopped.\", \"The scraps are thrown away.\", \"The person washes and dries their hands.\", \"Person takes out garlic from cupboard\", \"Person takes out cutting board and knife\", \"Person unwraps and peels garlic\", \"Person puts remaining garlic away\", \"Person slices garlic\", \"Person throws away garlic and cleans cutting board\", \"Person gets new garlic and a new knife\", \"Person peels garlic\", \"Person slices garlic\", \"Person cleans up and washes hands\", \"He gets a bulb of garlic out of the cupboard.\", \" He gets a cutting board out of the cupboard.\", \"He gets a knife out of the drawer.\", \"He takes one clove of garlic and puts the rest of the bulb away.\", \"He chops the clove into small pieces.\", \"He gets a new clove and peels it.\", \" He chops the new clove into tiny pieces.\", \"Garlic is removed from a cabinet.\", \"The person removes a cutting board.\", \"The person selects a knife.\", \"The bulb is broken apart.\", \"The garlic is put back in the cabinet.\", \"A clove is peeled.\", \"Everything is discarded and the area is cleaned.\", \"Another garlic clove is removed from a cabinet.\", \"The person selects a knife.\", \"The clove is peeled.\", \"The clove is sliced and chopped.\", \"The scraps are thrown away.\", \"The person washes and dries their hands.\", \"The person takes a clove of garlic from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person peels some of the garlic and returns the rest to the pantry.\", \"The person chops the garlic on the cutting board.\", \"The person stops and throws everything into the wastebin.\", \"The person washes the cutting board in the sink.\", \"The person again takes a clove of garlic from the pantry.\", \"The person takes out a knife from the drawer.\", \"The person peels the garlic.\", \"The person chops the garlic on the cutting board.\", \"The person throws the peels into the wastebin.\", \"The person washes his hands.\", \"A man walks in, opens the cabinet, takes some garlic out, a cutting board, and starts to peel it.\", \"He takes out a few cloves and puts the rest back in the cabinet.\", \"He uses a small knife to chop the garlic up in tiny pieces.\", \"He stops, takes the paper shavings from garlic, and what he just chopped and throws it away.\", \"He wipes the counter off and washes the cutting board.\", \"he goes back to the cabinet and takes out more cloves and peels them.\", \"He cuts them into tiny pieces.\", \"He picks the garlic paper up and throws it in the trash and washes his hands.\", \"The person takes a clove of garlic from the pantry.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person peels some of the garlic and returns the rest to the pantry.\", \"The person chops the garlic on the cutting board.\", \"The person stops and throws everything into the wastebin.\", \"The person washes the cutting board in the sink.\", \"The person again takes a clove of garlic from the pantry.\", \"The person takes out a knife from the drawer.\", \"The person peels the garlic.\", \"The person chops the garlic on the cutting board.\", \"The person throws the peels into the wastebin.\", \"The person washes his hands.\", \"He took out garlic\", \"He took out cutting board\", \"He took out knife\", \"He peeled the garlic\", \"He put away extra garlic\", \"He diced the garlic\", \"He threw garlic away\", \"The person retrieves a head of garlic, a cutting board and a paring knife.\", \"The person removes the outer peel and seperates the cloves from the head of garlic using hands.\", \"The person places a clove of garlic on the cutting board.\", \"The person attempts unsuccessfully to peel and slice the clove of garlic.\", \"The person discards the clove and peel and gets a new clove of garlic.\", \"The person peels the outer skin from the garlic clove using hands and places it on the cutting board.\", \"The person dices the clove of garlic using a paring knife.\", \"The man removes the garlic from the cabinet\", \"The man places a cutting board on the counter\", \"The man gets a knife out of the drawer\", \"The man removes the garlic from its packaging\", \"The man peels the garlic\", \"The man returns the unused portion to the cabinet\", \"The man slices the garlic\", \"The man realizes he made an error and throws it all away\", \"The man gets the rest of the garlic out of the cabinet\", \"The man gets a different knife\", \"The man peels the garlic again\", \"The man slices the garlic again\", \"The man washes his hands\", \"The person gets out a bulb of garlic.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person tears off shreds of garlic with his hands.\", \"The person puts away the rest of the garlic.\", \"The person tries to dice the shreds of garlic.\", \"The person throws away all the garlic he was working with.\", \"The person rinses the wooden plate.\", \"The person gets the garlic bulb back out.\", \"The person puts his knife back and gets out a different one.\", \"The person manages to extract a clove of garlic from the bulb.\", \"The person chops up the garlic clove.\", \"The person throws away the trash.\", \"The person washes his hands.\", \"The person selects a clove of garlic, cutting board, and knife.\", \"The person takes the clove of garlic out of the bag.\", \"The person begins breaking the garlic up with his hands.\", \"The person puts the remaining garlic back in the cabinet.\", \"The person begins to cut up what looks like rotten garlic.\", \"The person throws away the rotten garlic.\", \"The person washes the counter and cutting board.\", \"The person selects a new piece of garlic.\", \"The person selects a bigger knife.\", \"The person peels the skin off the garlic by hand.\", \"The person slices and dices the garlic.\", \"The person cleans off the counter.\", \"He takes out the cutting board\", \"He takes out a small knife\", \"He takes out a head of garlic\", \"He peels the head of garlic until he takes out a garlic clove\", \"He cuts off the garlic tip and ends\", \"Slice the garlic width-wise\", \"he is done\", \"The man retrieves a garlic from the cabinet, and a cutting board and knife from the drawer.\", \"The man takes out the garlic from the bag and opens the shell to remove the garlic cloves before returning the other piece of garlic to the cabinet.\", \"The man takes the knife and a small clove of garlic and begins to dice it on the cutting board.\", \"The man places the cloves of garlic on the counter onto the cutting board and disposes them into the trash before washing off the cutting board.\", \"The man cleans off the counter before placing the cutting board back down.\", \"The man gets another clove of garlic and begins to peel it with his hand.\", \"The man takes the knife and dices up the clove of garlic on the cutting board.\", \"The man cleans off the counter top and washes his hands.\", \"The person gets out some garlic.\", \"The person gets out a wooden plate.\", \"The person gets out a knife.\", \"The person pulls lots of peel off the garlic.\", \"The person puts the rest of the garlic back.\", \"The person tries to dice the garlic peel.\", \"The person throws away all the garlic he was working with.\", \"The person rinses the plate and wipes down the counter.\", \"The person gets the garlic back out.\", \"The person removes a clove of garlic.\", \"The person chops up the garlic.\", \"The person throws away the trash.\"], \"fps\": 29.4, \"num_frames\": 7055}, \"s32-d55.avi\": {\"timestamps\": [[169, 324], [363, 643], [668, 928], [970, 1166], [1177, 1730], [1746, 1866], [1943, 4174], [4204, 4555], [4607, 5149], [169, 643], [169, 643], [668, 1730], [1746, 4174], [4204, 4801], [5185, 5600], [169, 429], [442, 643], [668, 1166], [1177, 1577], [1581, 1866], [1943, 4319], [4358, 4673], [4807, 5297], [169, 643], [668, 1166], [1177, 1730], [1746, 1866], [1943, 4174], [4204, 4833], [5330, 5600], [169, 928], [970, 1577], [1581, 1866], [1943, 4174], [4851, 5297], [169, 429], [442, 643], [668, 1166], [1177, 1577], [1581, 1866], [1581, 1866], [1943, 4174], [4204, 4555], [4607, 4673], [4204, 5297], [4724, 5600], [169, 429], [442, 643], [668, 928], [970, 1261], [1284, 1398], [1546, 1866], [1943, 4319], [1943, 4319], [4358, 4673], [4724, 5297], [169, 429], [442, 643], [668, 928], [970, 1577], [1581, 1866], [1943, 4174], [4204, 4833], [4724, 5297], [5330, 5600], [169, 429], [442, 643], [668, 928], [970, 1577], [1581, 1866], [1943, 4319], [4358, 4555], [4607, 4833], [4851, 5297], [5330, 5600], [169, 324], [363, 643], [668, 928], [970, 1261], [1284, 1787], [1812, 1866], [1943, 4140], [4143, 4319], [4358, 4673], [4851, 5297], [5330, 5541], [169, 429], [442, 643], [668, 928], [970, 1577], [1581, 1866], [1581, 1866], [1943, 4287], [4287, 4319], [4358, 4801], [4724, 5297], [5554, 5600], [169, 324], [363, 643], [668, 928], [970, 1730], [1746, 1866], [1943, 4013], [4066, 4140], [4143, 5149], [169, 928], [970, 1398], [1546, 4013], [4066, 4140], [4143, 4673], [4724, 5149], [5330, 5541], [169, 928], [970, 1398], [1546, 1787], [1812, 4013], [4066, 4174], [4204, 4319], [4358, 4673], [4724, 5149], [5330, 5541], [5330, 5600], [169, 429], [442, 643], [668, 928], [970, 1166], [1177, 1577], [1581, 1866], [1581, 1866], [1581, 1866], [1943, 4174], [4204, 4319], [4204, 4319], [4358, 4833], [5185, 5297], [5554, 5600], [5554, 5600], [169, 429], [442, 928], [970, 1166], [1177, 1577], [1581, 1866], [1943, 4319], [4358, 4833], [4807, 5541], [5554, 5600]], \"sentences\": [\"She took out fig\", \"She took out cutting board\", \"She took out peeler\", \"She washed fig\", \"She took out knife\", \"She cut off top of fig\", \"She peeled fig\", \"She took out plate\", \"She cut up fig\", \"A woman enters the kitchen and removes a fig from the refrigerator.\", \"She removes a cutting board from the drawer and places it on the counter top.\", \"She removes a knife from the drawer and then washes the fig, the knife and the cutting board.\", \"She cuts the end off of the fig with the knife and then peels the fig with the peeler.\", \"She cuts the other end off of the fig and retrieves a plate from the cupboard and rinses it off.\", \"She transfer the fig from the cutting board to the plate and places the cutting board and knife in the sink.\", \"She gets the fig out of the fridge.\", \"She gets the cutting board out of the cupboard.\", \"She gets the peeler out of the drawer.\", \"She rinses the fig, peeler and cutting board in the sink.\", \"She gets a knife out of the drawer.\", \"She peels the fig.\", \"She gets a bowl out of the cupboard.\", \"She slices the fig and places the slices in the bowl.\", \"A woman enters the kitchen and retrieves a fig from the refrigerator.\", \"She removes a cutting board and a peeler from the drawer and places them on the counter.\", \"She washes the fig, the knife and the cutting board.\", \"She removes a knife from the drawer and cuts the end off of the fig.\", \"Using the peeler she peels the fig.\", \"She retrieves a plate from the cupboard, rinses it off and places it on the counter.\", \"She slices the fig and transfers the slices to the clean plate.\", \"The woman takes a fig out of the refrigerator.\", \"The woman washes the figs.\", \"She removes the stem.\", \"The woman peels the fig.\", \"She slices the fig with the knife and places it onto a plate.\", \"The person takes a fig from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a peeler from the drawer.\", \"The person washes the fig, the peeler, and the cutting board in the sink.\", \"The person takes out a knife from the drawer and washes it in the sink.\", \"The person cuts the stem from the fig.\", \"The person uses the peeler to peel the fig.\", \"The person washes her hands.\", \"The person procures a bowl from the cabinet.\", \"The person slices the fig on the cutting board and sets it in the bowl.\", \"The person throws the peels into the wastebin.\", \"She took out figs\", \"She took out cutting board\", \"She took out peeler\", \"She washed fig\", \"She washed cutting board\", \"She took out knife\", \"She peeled fig\", \"She washed hands\", \"She took out plate\", \"She sliced fig\", \"The person procures a fig from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a peeler from the drawer.\", \"The person washes the peeler, the fig, and the cutting board in the sink.\", \"The person takes out a knife from the drawer, rinses it, then cuts off the stem of the fig.\", \"The person peels the fig.\", \"The person washes her hands, procures a plate from the cabinet, and then rinses it off.\", \"The person slices the fig on the cutting board and sets it on the plate.\", \"The person throws the peels into the wastebin.\", \"The person procures a fig from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a peeler from the drawer.\", \"The person washes the plum, the peeler, and the cutting board in the sink.\", \"The person takes out a knife, washes it, and then cuts the stem from the fig.\", \"The person uses the peeler to peel the fig.\", \"The person washes her hands.\", \"The person procures a bowl from the cabinet and rinses it off.\", \"The person slices the fig on the cutting board and sets it in the bowl.\", \"The person throws the peels into the wastebin.\", \"Girl takes out fig\", \"Girl takes out cutting board\", \"Girl takes out peeler\", \"Girl washes fig\", \"girl takes out knife\", \"Girl cuts off top of fig\", \"Girl peels fig\", \"Girl washes hands\", \"Girl takes out plate\", \"Girl cuts fig\", \"Girl throws away fig top\", \"The person procures a fig from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a peeler from the drawer.\", \"The person washes the fig, the peeler, and the cutting board in the sink.\", \"The person takes out a knife from the drawer.\", \"The person uses the knife to cut the end of the fig.\", \"The person uses the peeler to peel the fig.\", \"The person washes her hands.\", \"The person procures a bowl from the cabinet and rinses it in the sink.\", \"The person slices the fig on the cutting board and sets them into the bowl.\", \"The person throws the peels into the wastebin.\", \"She takes the fig from the fridge\", \"She takes out the cutting board\", \"she takes out a fruit peeler\", \"she takes out a knife\", \"She cuts the tip off the fig\", \"She peels the fig\", \"She cuts the end off of the fig\", \"She slices the fig width-wise\", \"The woman sets up her station by getting a fig, a cutting board and a peeler.\", \"The woman washes the fig, cutting board and peeler.\", \"With a small knife the woman cuts off the top of the fig, and with the peeler removes the peel.\", \"The woman cuts of the bottom of the fig.\", \"The woman gets a bowl from the cupboard.\", \"The woman slices the fig and places it in the bowl.\", \"The woman throws away the fig peelings.\", \"She gets a fig from the refrigerator, a cutting board from the drawer, and a peeler from another drawer.\", \"She washes the peeler, fig, and cutting board in the sink.\", \"She gets a knife from the drawer and washes it.\", \"She cuts off the top with a knife and uses the peeler to peel the skin off of the fig.\", \"She cuts the end off the fig.\", \"She washes her hands in the sink and uses the towel and shakes them to dry them.\", \"She gets a bowl from the cabinet and washes it.\", \"She uses the knife to cut the fig into four pieces, which she places on the cutting board.\", \"She puts the peeler in the sink and disposes of the peels in the trash.\", \"She puts the cutting board and the knife in the sink and picks up a sponge.\", \"The girl opens the refrigerator and takes out a fig.\", \"The girl opens the drawer, takes out the cutting board, and set it onto the counter.\", \"The girl sets the fig on the cutting board.\", \"The girl opens the drawer, removes the peeler and closes the drawer.\", \"The girl rinses the fig, peeler, and cutting board.\", \"The girl opens the drawer and takes out the knife.\", \"Th girl rinses the knife.\", \"The girl cuts the stem off of the fig.\", \"The girl picks up the peeler and peels the skin off of the fig.\", \"The girl picks up the knife and cuts the end off the fig.\", \"The girl washes and dries her hands.\", \"The girl opens the cupboard, removes a bowl, rinses it, and places it on the counter.\", \"Using the knife, the girl slices the fig into four pieces.\", \"The girl throws the leftover skin away.\", \"The girl washes the dishes.\", \"The person takes a fig from the fridge.\", \"The person takes out a cutting board and places the fig on it.\", \"The person takes out a peeler from the drawer.\", \"The person washes the fig, the peeler, and the cutting board.\", \"The person takes a knife from the drawer and rinses it in the sink.\", \"The person cuts the top of the fig off with the knife and then uses the peeler to remove the skin of the fig.\", \"The person washes her hands, gets a small bowl from the cabinet and then rinses the bowl in the sink.\", \"The person cuts the fig into slices.\", \"The person dumps the fig peels into the trash.\"], \"fps\": 29.4, \"num_frames\": 5673}, \"s37-d46.avi\": {\"timestamps\": [[186, 473], [508, 805], [811, 1447], [1725, 2044], [2096, 3018], [3053, 4364], [4462, 5193], [5258, 5798], [5870, 8316], [8345, 8746], [9022, 11031], [11050, 12054], [12109, 12482], [12572, 12805], [12822, 13338], [186, 473], [508, 635], [689, 805], [811, 1154], [1272, 4364], [4462, 5193], [5258, 12054], [12109, 12805], [186, 473], [508, 1154], [1272, 4769], [4796, 12054], [12109, 12482], [12822, 12859], [186, 473], [508, 635], [689, 805], [811, 1154], [1272, 2044], [2096, 3601], [3608, 5193], [186, 473], [508, 635], [689, 805], [811, 1154], [1272, 4364], [4462, 5193], [5258, 7827], [7873, 12054], [12866, 12907], [186, 473], [508, 1154], [1272, 4364], [5258, 11357], [11357, 12054], [12109, 12482], [12572, 12805], [186, 473], [508, 1356], [1389, 2044], [2096, 3218], [3273, 5193], [4462, 12054], [12109, 12482], [12926, 13148], [186, 473], [508, 1917], [1939, 2044], [2096, 4364], [4462, 5193], [5258, 12054], [12109, 12482], [13177, 13338], [186, 473], [508, 805], [811, 1356], [1389, 5193], [5258, 12054], [12109, 12482], [12572, 12805], [12109, 13148], [186, 473], [508, 635], [689, 805], [811, 1154], [1272, 2044], [2096, 4147], [4186, 4769], [4796, 5193], [5258, 6226], [186, 473], [508, 864], [876, 1356], [1389, 5193], [6293, 12054], [12109, 12482], [12572, 12859], [12822, 13148], [186, 473], [508, 864], [876, 1917], [1939, 4364], [4462, 5193], [5258, 12054], [12109, 12482], [12866, 12907], [12572, 13338], [186, 4627], [186, 4627], [186, 4627], [186, 4627], [186, 4627], [186, 4627], [186, 4627], [186, 4627], [186, 4627], [4664, 4769], [4664, 4769], [4796, 5193], [5258, 5384], [5258, 7109], [7109, 7192], [186, 473], [508, 1154], [1272, 5193], [7192, 12054], [12109, 12482], [12572, 12805], [13177, 13338], [186, 473], [186, 473], [186, 473], [508, 635], [689, 1447], [1725, 2044], [2096, 3018], [3053, 4364], [4462, 4769], [5396, 12054], [12109, 12482], [13177, 13338], [186, 1356], [1389, 2044], [1389, 2044], [2096, 3018], [3053, 3218], [3273, 4364], [4462, 5193], [4796, 5384], [5396, 5798], [5258, 6865], [5258, 11031], [11050, 12054], [12572, 13148], [186, 473], [508, 1447], [1725, 2044], [2096, 4627], [5258, 5517], [5870, 6503], [6645, 6992], [6865, 7621], [7728, 8316], [8345, 12171], [12188, 12654], [12572, 13053], [186, 473], [508, 1154], [1272, 2044], [2096, 4364], [4462, 4769], [4796, 5193], [5532, 6503], [7049, 7827], [7873, 10156], [10354, 12054], [12109, 12482], [12109, 12859], [13076, 13148], [186, 473], [508, 1356], [1389, 2044], [2096, 3218], [3273, 4627], [4664, 6865], [6645, 11145], [11145, 12054], [12109, 12348], [12413, 12805], [12572, 13338]], \"sentences\": [\"The person removes a pineapple from the refrigerator.\", \"The person got out a cutting board and selected a knife.\", \"The person selected a container for the pineapple.\", \"The top is sliced off the pineapple.\", \"The sides are sliced off the pineapple.\", \"The bottom is sliced off and the pineapple is trimmed.\", \"The scraps are discarded.\", \"The pineapple is sliced into rounds.\", \"The end is sliced into strips then chunks.\", \"The chunks are placed in the container.\", \"The rounds are cut into strips, then chunks.\", \"The remaining chunks are placed in the container.\", \"The pineapple is covered with water.\", \"Seasoning is added.\", \"The pineapple is ready.\", \"The person gets out a pineapple.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person gets out a Tupperware container.\", \"The person cuts off the top and outside of the pineapple.\", \"The person throws away the top and outside of the pineapple.\", \"The person cuts the pineapple into slices, chops up the slices and puts the pieces in the Tupperware container.\", \"The person adds water and salt to the pineapple pieces.\", \"He gets out a pineapple.\", \"He gets out the needed equipment.\", \"He cuts off the unwanted parts of the pineapple and discards them.\", \"He chops the pineapple and places it in a tray.\", \"He adds water to the tray.\", \"He salts the water.\", \"He took out pineapple\", \"He took out cutting board\", \"He took out knife\", \"He took out plastic container\", \"He cut off top of pineapple\", \"He cut off skin of pineapple\", \"He threw away skin\", \"The person takes a pineapple from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person takes out a plastic tub from the drawer.\", \"The person uses the knife to cut away the fronds and the rind of the pineapple.\", \"The person gathers and throws the fronds and rinds into the garbage.\", \"The person slices and chops the pineapple, putting it into the tub and throwing away several pieces which fell to the floor.\", \"The person chops the pineapple slices and puts them into the tubs and the ones which fell on the floor are thrown away.\", \"The person adds water and a condiment to the pineapple in the tub.\", \"person gets pineapple\", \"person gets cutting board, knife and plastic bin\", \"person removes the outer layer of the pineapple\", \"person chops pineapple\", \"person puts pineapple into bin\", \"person adds water\", \"person adds sugar\", \"He grabs a pineapple.\", \"He gets the needed hardware.\", \"He cuts off the top of the pineapple.\", \"He trims the sides and bottom of the pineapple.\", \"He trims the last bit of skin off and discards the waste.\", \"He slices the pineapple and puts in in the Tupperware.\", \"He puts water in the Tupperware.\", \"He seasons the water and mixes it together.\", \"The person goes to the fridge and gets out a pineapple.\", \"The person gets out a cutting board, a knife and plastic container.\", \"The person cuts off the top of the pineapple.\", \"The person cuts off all the outside skin of the pineapple.\", \"The person throws away all of the excess pineapple skin.\", \"The person, who has obviously never cut a pineapple before, cuts the pineapple into cubes- including the core. (??!!)\", \"The person adds water to the plastic container containing the cubed pineapple.\", \"The person sprinkles magic powder onto the pineapple in the bowl and then massages it into the pineapple with his hands.\", \"He gets a pineapple.\", \"He gets a cutting board and knife.\", \"He gets a tray.\", \"He cuts off the skins and discards them.\", \"He chops the pineapple and put it in the tray.\", \"He puts water in the tray.\", \"He salts the water.\", \"He mixes the pineapple.\", \"He took out pineapple\", \"He took out cutting board\", \"He took out knife\", \"He took out plastic container\", \"He cut off top of pineapple\", \"He cut off skin of pineapple\", \"He threw away scraps\", \"He threw away second scraps\", \"She sliced pineapple\", \"He gets a pineapple.\", \"He gets a cutting board and a knife.\", \"He gets a tray.\", \"He cuts off the skin and discards it.\", \"He chops the pineapple and puts it in a tray.\", \"He puts water in the tray.\", \"He salts the water.\", \"He mixes it up.\", \"The person gets a pineapple out of the fridge.\", \"The person gets out a cutting board and a knife from the drawer.\", \"The person gets out a clear plastic container.\", \"The person cuts off the top of the pineapple, then cuts off the skin around the entire outside of the pineapple.\", \"The person throws away all of the pineapple skins and the top.\", \"The person dices the entire pineapple (including core?) into cubes and puts them into the container.\", \"The person puts water into the container with the pineapple.\", \"The person sprinkles something on the pineapple.\", \"The person massages the pineapple and does final inspection of his work.\", \"The person picks up the pieces of rind from the cutting board.\", \"The person trims remnant parts of rind off the pineapple.\", \"The person takes off a piece of pineapple rind sticking to his knife.\", \"The person cuts off the bottom rind of the pineapple.\", \"The person cuts most of the rind off the pineapple.\", \"The person places the pineapple on the cutting board and cuts off the top stem.\", \"The person opens some drawers and takes out a cutting board, knife and a container.\", \"The person places the pineapple on the kitchen counter.\", \"The person opens the refrigerator and takes out a pineapple.\", \"The person disposes of the pineapple rinds in the trash.\", \"The person inspects the pineapple as he closes the refrigerator door.\", \"The person meticulously cleans off the smaller pieces of rind and discards them in the trash.\", \"The person cuts the pineapple into medium round slices.\", \"The person cuts the pineapple into square chunks.\", \"The person places the square chunks of pineapple into the container.\", \"He gets a pineapple.\", \"He gets a cutting board, knife, and tray.\", \"He cuts the skin off the pineapple and discards it.\", \"He chops the pineapple and puts it in a tray.\", \"He adds water to the tray.\", \"He adds salt to the tray.\", \"He mixes the tray contents.\", \"Open Refrigerator\", \"Grab pineapple\", \"Close refrigerator\", \"Grab cutting board\", \"Grab knife and storage container\", \"Cut the top off a pineapple\", \"Cut the sides of the pineapple\", \"Cut the bottom and any remaining skin\", \"Discard the skin\", \"Cut the pineapple into slices and then chunks\", \"Place the pineapple in a container and use water to rinse it\", \"Use any condiment of your choice\", \"The person gets a pineapple, a cutting board, a large sharp knife and a storage container.\", \"The person places the pineapple on its side and cuts off the stem.\", \"The person stands the pineapple upright and slices off a section of the rind a couple inches wide.\", \"The person repeats the previous step until the rind is removed from the sides.\", \"The person sets the pineapple on its side and cuts off the base.\", \"The person trims the excess rind from the pineapple.\", \"The person discards the rind, stem and base.\", \"The person places the pineapple on its side and cuts a one-half-inch to one-inch thick slice of the pineapple.\", \"The person repeats the previous step until the pineapple is cut into slices.\", \"The person dices a slice of pineapple into chunks approximately one-half-inch square.\", \"The person repeats the previous step with the remaining pineapple slices.\", \"The person places all the pineapple chunks in the storage container.\", \"The person adds some water and a little bit of salt to the container and mixes it.\", \"The man opens the fridge.\", \"The man places a pineapple on the counter and gets a knife, plastic container and cutting board.\", \"The man cuts the pineapple, carefully cutting off the spiny parts on the outside.\", \"The man collects the shaved skin of the pineapple and throws it away.\", \"The man cuts out inch-thick sections of the pineapple, beginning on the more rounded end.\", \"The man cuts the pineapple into smaller, more bite-size chunks.\", \"The man puts the now small chunks into the plastic container.\", \"When one of the pineapple pieces falls on the floor, the man puts it in the garbage.\", \"The man continues to cut the larger portions of pineapple into smaller pieces.\", \"The man rinses the pineapple under running water.\", \"He sprinkles salt on the pineapple and water.\", \"He mixes the salt and the water and pineapple by moving his hand through it.\", \"The person removes a pineapple from the fridge.\", \"The person removes a cutting board, a large knife, and a plastic tub from a drawer.\", \"The person cuts the fronds from off of the pineapple using the large knife.\", \"The person carefully pares the rough peel of the pineapple using the knife.\", \"The person disposes of the peels and fronds into the wastebin.\", \"The person throws the smaller peel fragments into the wastebin.\", \"The person slices the pineapple into flat sections on the cutting board.\", \"The person throws some errant peel skins into the wastebin.\", \"The person throws some pineapple which fell on the floor into the wastebin.\", \"The person dices the flat pineapples sections into squares and places them into the plastic tub.\", \"The person fills the tub with water from the faucet.\", \"The person sprinkles a condiment over the pineapple in the tub.\", \"The person stirs the pineapple in the tub with his hand.\", \"The man enters the kitchen and retrieves a pineapple from the refrigerator before placing it on the counter.\", \"The man retrieves a cutting board, knife, and bowl from a drawer.\", \"The man places the pineapple on its side on the cutting board and slices off the stem with a knife.\", \"The man stands the pineapple up and uses a knife to go around it and slice off the shell.\", \"The man makes sure the pineapple is free of any peel and then discards the shell of the pineapple.\", \"The man lays the pineapple on its side and thinly slices it.\", \"The man takes the slices of pineapple and places them on top of each other to nicely dice them into squares.\", \"The man places the tiny diced squares of pineapple into a bowl.\", \"The man picks up the bowl and runs it under the water in the sink.\", \"The man retrieves a salt shaker from the counter and lightly sprinkles some salt on the pineapple chunks.\", \"The man mixes the salt around in the pineapples with his hand.\"], \"fps\": 29.4, \"num_frames\": 13661}, \"s36-d43.avi\": {\"timestamps\": [[199, 446], [466, 737], [754, 782], [800, 966], [966, 2172], [2185, 3258], [3295, 3513], [199, 446], [466, 599], [604, 737], [754, 1035], [3606, 8172], [8246, 8895], [8895, 9563], [9628, 10381], [10498, 12063], [12545, 13982], [14010, 14989], [15002, 16481], [16495, 18062], [18044, 23371], [23381, 26242], [199, 446], [466, 599], [604, 737], [604, 737], [754, 966], [966, 1200], [1226, 2213], [199, 737], [754, 1035], [1061, 8172], [8246, 9361], [9422, 9765], [9931, 10381], [10498, 14165], [14264, 15310], [15323, 16481], [16495, 26242], [199, 446], [466, 782], [800, 1035], [2305, 8394], [8488, 9361], [9422, 9765], [9931, 10212], [10212, 10724], [11546, 12063], [12545, 13982], [14010, 15377], [15393, 16481], [16495, 23969], [24023, 25181], [25181, 26242], [199, 446], [466, 599], [604, 737], [604, 737], [754, 966], [1061, 3188], [199, 737], [754, 1035], [1061, 8172], [8246, 9765], [9931, 13982], [14010, 15310], [15323, 16481], [16495, 17843], [17843, 26242], [199, 782], [800, 966], [3228, 8172], [8246, 8544], [8622, 9025], [9169, 9361], [9422, 9765], [9931, 10381], [10498, 13982], [14010, 15310], [15323, 16481], [16495, 18126], [18126, 26242], [199, 446], [466, 737], [754, 782], [800, 1097], [1061, 3374], [966, 8544], [8622, 9765], [9931, 10251], [10288, 11719], [11813, 13435], [13447, 14400], [14496, 15636], [15742, 16481], [16495, 17164], [199, 737], [754, 1035], [3423, 8331], [8353, 8544], [8622, 9765], [9931, 13982], [14010, 16966], [17164, 18396], [18447, 23371], [23381, 25181], [25181, 26242], [199, 446], [466, 599], [604, 737], [604, 737], [754, 1035], [1153, 3258], [199, 1035], [3295, 3374], [966, 8172], [8246, 9361], [9422, 9765], [9931, 10381], [10498, 13581], [13605, 14165], [14264, 15636], [15742, 16481], [17009, 23006], [23053, 25181], [25181, 26242], [199, 446], [466, 599], [604, 737], [604, 737], [754, 1035], [1061, 3258], [199, 446], [466, 599], [604, 737], [604, 737], [754, 1035], [1061, 3374], [199, 599], [604, 737], [604, 737], [754, 966], [1061, 3258], [3423, 3513], [3423, 3513], [199, 599], [604, 1097], [3295, 3513], [3423, 5255], [5292, 9025], [9169, 9982], [9990, 12648], [12823, 15996], [16495, 18396], [18447, 25181], [25181, 26242], [199, 737], [754, 1200], [1226, 2213], [1153, 3188], [1061, 3513], [3606, 8172], [8246, 9765], [9931, 10381], [10498, 13544], [13544, 13982], [14010, 15849], [16023, 25542], [25560, 26242], [199, 446], [466, 782], [800, 1035], [1061, 1200], [1226, 2213], [3228, 3258], [3295, 3513], [3606, 8544], [8622, 9361], [9422, 10381], [10498, 14165], [14264, 16966], [15911, 23006]], \"sentences\": [\"He took out potato\", \"He took out bowl\", \"He took out cutting board and knife\", \"He washed potato\", \"He chopped potatoes\", \"He diced potato\", \"He put water in bowl\", \"He gets the potatoes out of the cupboard.\", \"He gets the knife out of the drawer.\", \"He gets the cutting board and bowl out of the cupboard.\", \"He rinses the potatoes in the sink.\", \"He slices the potatoes into small pieces and soaks them in a bowl of water.\", \"He gets a pot out of the cupboard and puts it on the stove top.\", \"He pours the potatoes and water into the pot.\", \"He puts the lid on the pot.\", \"He gets out a frying pan from the cupboard.\", \" He drains the pot of water.\", \"He gets oil from the cupboard and puts some in the pan.\", \"He puts the potatoes in the frying pan.\", \"He adds spices to the potatoes.\", \"He gets a bowl from the cupboard.\", \"He puts the fried potatoes in the bowl.\", \"He took out potato\", \"He took out knife\", \"He took out bowl\", \"He took out cutting board\", \"He washed potato\", \"He cut potato in half\", \"He diced potato\", \"He gets out the needed items.\", \"He rinses the potatoes.\", \"He chops the potatoes.\", \"He turns on the stove and puts water and potatoes in the pot.\", \"He puts more water in the pot.\", \"He salts the pot and puts the lid on.\", \"He drains the water from the pot.\", \"He oils a heating pan.\", \"He puts the potatoes in the pan.\", \"He finishes the cooking and puts them into a bowl.\", \"The person takes a potato out of the cupboard.\", \"The person takes a chopping board, a metal bowl and a knife out of the drawers.\", \"The person washes the potato.\", \"The person chops the potato into small pieces and places them into a bowl of water.\", \"The person turns on the stove and pours the potato and water into a pot.\", \"The person adds more water into the pot.\", \"The person adds salt to the pot.\", \"The person washes and returns the knife.\", \"The person takes a frying pan out of the drawer.\", \"The person drains the water out of the pot.\", \"The person pours some cooking oil into the frying pan.\", \"The person moves the boiled potato pieces into the frying pan.\", \"The person stir fry the potatoes while adding spices and more oil.\", \"The person washes the pot and the pot cover and returns them to the drawer.\", \"The person stir fry the potatoes some more and moves them into a bowl.\", \"He took out potato\", \"He took out knife\", \"He took out bowl\", \"He took out cutting board\", \"He washed potatoes\", \"He chopped potatoes\", \"He gets the needed items.\", \"He rinses the potato.\", \"He chops the potato.\", \"He adds water and the potatoes to a pot.\", \"He pours the water from the pot.\", \"He puts oil in a pan that is heating.\", \"He adds the potatoes to the pan.\", \"He seasons the potatoes.\", \"He puts the potatoes in a bowl.\", \"He gets out some equipment and the potato.\", \"He rinses the potatoes.\", \"He chops the potatoes.\", \"He adds water to the potatoes.\", \"He gets a pot out.\", \"He adds the potatoes and water to it.\", \"He puts more water in the pot.\", \"He salts the pot and puts the lid on it.\", \"He takes the pot off the stove and pours out the water.\", \"He adds oil to a pan.\", \"He adds the potatoes to the hot pan.\", \"He seasons the potatoes and puts the spices away.\", \"He stops cooking and adds the potatoes to a bowl.\", \"Take out refrigerated potatoes\", \"Then take out a sharp knife, cutting board and bowl\", \"Wash potatoes thoroughly\", \"Cut in half, and then slice pieces as desired\", \"Once cut, put sliced potatoes in bowl and fill with water\", \"Put potatoes and water in a pot and begin to boil\", \"Add salt to the pot\", \"Cover the pot and let cook to boil\", \"Take out frying pan\", \"Now drain remaining water out of pot\", \"Add cooking oil to frying pan\", \"Put potatoes in frying pan\", \"Stir potatoes repeatedly\", \"Add seasoning as desired\", \"He gets a potato, knife, cutting board, and metal bowl.\", \"He rinses the potato.\", \"He chops the potato and rinses the cutting board.\", \"He adds water to the bowl of potatoes.\", \"He adds water and the potatoes to a pot.\", \"He pours out the potato water.\", \"He adds oil and the potatoes to the pan.\", \"He seasons the potatoes and puts the spices away.\", \"He gets a bowl.\", \"He washes the pot and puts it away.\", \"He finishes cooking and puts the potatoes in a bowl.\", \"He took out potato\", \"He took out knife\", \"He took out bowl\", \"He took out cutting board\", \"He washed potato\", \"He diced potato\", \"The man takes out his supplies and washes a potato.\", \"The man slices the first potato.\", \"The man slices the second potato.\", \"The man adds the potatoes to a pot.\", \"The man adds more water to the pot.\", \"The man seasons the potatoes and covers the pot.\", \"The man waits for the potatoes in the pot.\", \"He drains the water out of the pot.\", \"The man adds oil to a pan.\", \"The man adds the potatoes to the pan.\", \"The man seasons and stirs the potatoes.\", \"The man washes up while waiting for the potatoes to cook.\", \"He places the potatoes into a bowl.\", \"He took out potato\", \"He took out knife\", \"He took out bowl\", \"He took out cutting board\", \"He washed potato\", \"He diced potato\", \"He took out potato\", \"He took out knife\", \"He took out bowl\", \"He took out cutting board\", \"He washed potato\", \"He diced potato\", \"He took out potato\", \"He took out bowl\", \"He took out cutting board\", \"He washed potato\", \"He diced first potato\", \"He put potato in bowl\", \"He washed potato\", \"A man walks into the kitchen and pulls out a potato out of the cupboard and pulls a knife out the the silverware drawer.\", \"He then pulls out a cutting board and a metallic bowl from the cupboard. He then uses the bowl to gently was the potato. He dumps out the excess water and placed the potato on the cutting board.\", \"He then proceeded to cut the potato vertically in long slices, turned those slices and cut the potato again till only small pieces remained. He did this to the entire potato, he then grabbed the other potato out of the bowl and dumped the cut up pieces into the bowl. He then added some water to the bowl and placed it on the counter.\", \"He then proceeds to do this with the other potato.\", \"After he finishes cutting up both potatoes, he washes off the cutting board and pulls out a pot and places it on the stove while turning on the stove to heat it up.\", \"He dumps the potato cuttings into the pot and adds water till he is satisfied that it will be enough that the potatoes will not burn.\", \"While leaving the potatoes to cook, he adds a lid to the pot to keep the heat from escaping and helping the potatoes cook faster. He washed off the knife and put it away. He then pulls a pan out of the cupboard and placed it on the stove.\", \"After the potatoes have heated up enough, he takes the pot off the stove and carefully dumps out the water. He then adds oil to the pan on the stove in a gracious amount. He then pours the potatoes into the pan.\", \"While allowing them to cook, he adds some seasoning to the potatoes and keeps stirring them.\", \"He continuously stirs the potatoes so they don't overcook. He then starts to wash and put away the pot he was using to boil the potatoes.\", \"When the potatoes are done, he pours the potatoes into a small serving bowl that he got out of the cupboard.\", \"The person gets a bowl, a cutting board, a sharp knife and two potatoes.\", \"The person washes the potatoes and slices one in half.\", \"The person slices one half of the potatos into strips, then cross-cuts the strips to make small, square chunks.\", \"The person repeats the previous step with the second half of a potato.\", \"The person puts the cut-up potato in a bowl and covers it with some water.\", \"The person repeats the previous three steps with the remaining potato.\", \"The person gets a pot and puts it on the stove top, turns on the heat, then he puts the potatoes and water into the pot, adding water as necessary.\", \"The person puts some salt in the pot and covers it.\", \"The person lets the potatoes in the pot cook.\", \"The person takes the pot off the burner and drains the water from the potatoes.\", \"The person gets a skillet on the burner, puts oil in the skillet and heats it up.\", \"The person gets a wooden spoon, puts the potatoes into the skillet, seasons it and stirs it while cooking over heat.\", \"The person gets a bowl and pours the cooked potatoes into it.\", \"Select two medium size potatoes.\", \"Take out a medium sized knife, a cutting board, and a medium bowl.\", \"Place the potatoes in the bowl and wash them in the sink, then drain off the excess water.\", \"Take one of the potatoes and cut it in half lengthwise on the cutting board.\", \"Slice a potato half into thin slices lengthwise, then holding the slices together cut across the slices making small pieces.\", \"Repeat this process for the other half of the first potato.\", \"Remove the second potato from the bowl, put the cut potato in the bowl and add enough water to cover.\", \"Repeat the cutting process for the second potato.  Add to bowl and cover with additional water.\", \"Place a pot on the stove, set the heat level, and add the potatoes and water to the pot.\", \"Add additional water to the pot and salt to taste.  Cover the pot with a lid.\", \"While cooking, wash knife and place frying pan on stove top.  Drain water from pot with potatoes into the sink.\", \"Select heat for frying pan, add oil, then add potatoes and stir with wooden utensil.\", \"Add seasonings to potatoes, stir constantly, add additional oil if needed and cook until lightly brown.\"], \"fps\": 29.4, \"num_frames\": 26908}, \"s33-d27.avi\": {\"timestamps\": [[137, 1811], [1812, 2879], [2909, 5847], [5887, 6039], [6088, 9214], [9217, 10249], [10285, 10575], [10599, 11773], [11846, 19861], [137, 458], [480, 806], [806, 1864], [1882, 2879], [2909, 3346], [3357, 6039], [6088, 6232], [6249, 6348], [137, 835], [860, 2879], [6355, 9371], [9431, 10742], [10751, 19861], [137, 458], [480, 835], [860, 1864], [1882, 2879], [2909, 3346], [3357, 6039], [6088, 6232], [6249, 6348], [2909, 9042], [9095, 9474], [9508, 10249], [10285, 10437], [10452, 10742], [137, 835], [860, 2879], [6355, 9371], [9431, 10382], [10394, 10742], [10751, 18496], [18589, 19861], [137, 835], [860, 2879], [2909, 3346], [2909, 9371], [9431, 10742], [10751, 18117], [18160, 19641], [137, 806], [806, 2879], [2909, 3346], [3357, 6039], [6088, 6232], [3357, 6430], [6439, 9042], [9095, 9371], [9431, 10249], [10285, 10742], [10751, 11773], [11846, 12782], [12816, 17414], [17428, 18117], [137, 458], [480, 806], [806, 2879], [2909, 3346], [3357, 6039], [6088, 6232], [6249, 6348], [6249, 9042], [9095, 9371], [9431, 10249], [10285, 10575], [10599, 10742], [10751, 11083], [137, 722], [751, 2879], [2909, 3346], [6355, 9371], [9431, 10742], [18160, 19162], [19796, 19861], [137, 1864], [1882, 2879], [2909, 6039], [3357, 9042], [9095, 9474], [10751, 10910], [10751, 11773], [137, 722], [751, 835], [860, 1811], [1812, 1864], [1882, 2879], [2909, 3571], [3582, 6039], [6088, 6232], [6088, 8283], [8292, 9253], [9274, 10742], [11846, 17325], [11106, 19641], [137, 2879], [2909, 6039], [6249, 6635], [6640, 9214], [9217, 9474], [10751, 10910], [10935, 18117], [19203, 19861], [137, 458], [480, 835], [860, 2879], [2909, 6039], [2909, 6039], [6088, 6430], [6439, 9474], [9508, 10249], [10285, 10742], [9508, 11969], [11990, 13409], [13613, 18117], [18160, 19641], [137, 458], [480, 722], [751, 2879], [2909, 3285], [3307, 5847], [5887, 6039], [6088, 6291], [6088, 9253], [9274, 10249], [10751, 10807], [9508, 11773], [10935, 12782], [18160, 18496], [18589, 19641], [137, 835], [860, 2879], [6300, 9371], [10285, 10910], [19796, 19861], [137, 835], [860, 1811], [1812, 2879], [2909, 5847], [2909, 9042], [9095, 10249], [9431, 10807], [10935, 11773], [10812, 12782], [12816, 17959], [11846, 18673], [17340, 19861], [137, 458], [480, 722], [751, 2879], [2909, 3285], [3307, 5847], [5887, 6039], [5887, 9253], [9274, 10249], [10285, 10742], [10812, 11773], [11846, 12782], [17995, 18496], [18589, 19641], [137, 722], [751, 835], [860, 3250], [3256, 3346], [3357, 6039], [6088, 6232], [6088, 6376], [6398, 9371], [10751, 11083], [10285, 11773], [11846, 12782], [12816, 19641], [137, 458], [480, 835], [860, 1864], [1882, 2879], [2909, 3346], [3357, 6039], [6088, 6232], [6249, 6348], [6249, 9042], [9095, 9214], [9217, 9474], [9508, 10742], [11106, 11180], [11846, 12782]], \"sentences\": [\"The woman takes out a knife and an onion, and cuts the peel off of the onion over the garbage.\", \"She cuts a second onion over the garbage can.\", \"She cuts the first onion into small pieces on a cutting board.\", \"She takes out a frying pan.\", \"She cuts the second onion into small pieces on the cutting board, then puts the pieces in the frying pan.\", \"She turns the burner on.\", \"She adds oil to the onions.\", \"She stirs them with a wooden spatula.\", \"She waits until the onions are a golden brown.\", \"She took out onion\", \"She took out knife\", \"She peels onion\", \"She peels second onion\", \"She takes out cutting board\", \"She chops first onion\", \"She takes out pan\", \"She puts onion in pan\", \"She gets out some onions.\", \"She peels the onions.\", \"She chops the onions and puts them into a pan.\", \"She heats the pan and adds oil.\", \"She finishes the cooking and cleans up.\", \"She took out onion\", \"She took out knife\", \"She peeled onion\", \"She peeled second onion\", \"She took out cutting board\", \"She diced first onion\", \"She took out pan\", \"She put onion in pan\", \"She diced second onion\", \"She put second onion in plate\", \"She turned on stove\", \"She took out oil\", \"She put oil in pan\", \"She gets out an onion and a knife.\", \"She peels the onions.\", \"She chops the onions and adds them to the pan.\", \"She turns on the stove.\", \"She adds oil to the pan.\", \"She removes the pan from the heat.\", \"She cleans up.\", \"She gets a knife and a couple onions.\", \"She peels the onions.\", \"She gets a cutting board.\", \"She chops the onions and adds them to the pan.\", \"She adds oil to the pan.\", \"She finishes cooking the onions.\", \"She cleans up.\", \"She gets onions and knife.\", \"She peels onions with knife.\", \"She gets cutting board.\", \"She cuts in half and dices onion #1\", \"She gets pan and places on stove.\", \"She puts onions into pan.\", \"She cuts in half and dices onion #2.\", \"She places remainder onions into pan.\", \"She sets fire on stove top.\", \"She adds cooking liquid to pan.\", \"She monitors and stirs onions as they cook.\", \"She cleans knife and watches pan (as onions cook).\", \"She continues to stir onions as they brown in pan.\", \"When onions are browned, she removes pan from heat\", \"She took out onion\", \"She took out knife\", \"She peeled onions\", \"She took out cutting board\", \"She chopped up onions\", \"She took out pan\", \"She put onions in pan\", \"She chopped up second onion\", \"She put second onion in pan\", \"She turned on stove\", \"She took out oil\", \"She put oil in pan\", \"She put away oil\", \"She gets an onion and a knife.\", \"She peels the onions.\", \"She gets a cutting board.\", \"She chops the onions and puts them in a pan.\", \"She turns on the stove and adds oil to the pan.\", \"She finishes the cooking of the onions.\", \"She cleans up.\", \"The person peeled the onion with a knife\", \"The person peeled a second onion\", \"The person cut the first onion into small pieces\", \"The person cut the second onion into small pieces\", \"The person added the chopped onions to a frying pan\", \"The person added an ingredients to the onions\", \"The person stirred the onions\", \"The woman takes out two onions from a cabinet.\", \"She takes out a small knife, walks over to the trash can, and sets one onion on the counter.\", \"She uses the small knife to cut off the outer layer of the onion.\", \"She places the peeled onion in the sink and picks up the second onion.\", \"She peels the second onion and places it in the sink.\", \"She takes out a round cutting board and places one onion on it.\", \"She cuts the onion in tiny pieces on the cutting board.\", \"She pulls out a frying pan and places it on the stove.\", \"She places the onion pieces in the frying pan and cuts the other onion into small pieces.\", \"Next, she places the remaining onion pieces in the pan.\", \"She turns on the stove and places cooking oil in the pan.\", \"She uses a wooden spatula to constantly stir the onions.\", \"She washes the spatula, knife, and cutting board in the sink.\", \"The woman peels the onions.\", \"The woman dices the first onion.\", \"The woman adds the first onion to the pan.\", \"The woman dices the second onion.\", \"She adds the second onion to the pan.\", \"The woman adds oil to the pan.\", \"The woman stirs the onions as they cook.\", \"The woman washes up.\", \"The woman removes two onions from a cabinet.\", \"She then removes a knife from the drawer.\", \"She peels the onion skins off into the recycling bin, and places the onions in the sink.\", \"She slices and cuts up one onion into small pieces.\", \"She removes a frying pan from the cabinet and places it on the stove.\", \"She places the chopped onion into the frying pan.\", \"She chops the second onion, and places the pieces into the frying pan.\", \"She turns on the burner under the frying pan.\", \"She adds a bit of oil to the onion in the frying pan.\", \"She removes a wooden spatula from the drawer and stirs the onion in the pan.\", \"She continues to stir the cooking onion every few minutes.\", \"She removes the frying pan from the heat and turns off the burner.\", \"She washes her cutting board and spatula and places them in the dish drain.\", \"The person gets out two onions.\", \"The person gets out a knife.\", \"The person peels the onions and puts them in the sink.\", \"The person gets out a wooden plate.\", \"The person cuts up an onion.\", \"The person gets out a frying pan and puts it on the stove.\", \"The person puts the onion pieces into the pan.\", \"The person cuts up the other onion and puts the pieces in the pan.\", \"The person turns on the stove.\", \"The person adds oil to the pan.\", \"The person gets out a wooden spatula and stirs the onions.\", \"The person washes the knife.\", \"The person stirs the onions while they cook.\", \"The person rinses the spatula and wooden plate.\", \"She gets a knife and onions.\", \"She peels the onions.\", \"She chops the onion and adds it to a pan.\", \"She heats the pan and adds oil.\", \"She finishes cooking and cleans up.\", \"The person has grabbed the onion and a knife.\", \"The person has removed the outer layer of skin.\", \"The person has removed the outer layer of skin on a second onion.\", \"The person has thinly sliced the onion and then chopped it into small pieces.\", \"The person has sliced and chopped the second onion.\", \"The person has placed the onions in a pan on the stove, and turned the stove on.\", \"The person has poured a small amount of oil over the onions.\", \"The person has stirred the onions to evenly distribute the oil\", \"The person has washed the previously used knife.\", \"The person has frequently stirred the onions, slightly.\", \"The person has removed the pan from heat and stirred the onions for a few more seconds.\", \"The person has washed up everything else she has used while the onions rest in the pan.\", \"The person gets out two onions.\", \"The person gets out a knife.\", \"The person peels the onions and puts them in the sink.\", \"The person gets out a wooden plate.\", \"The person cuts up an onion.\", \"The person gets out a frying pan and puts it on the stove.\", \"The person cuts up the other onion and puts the pieces in the pan.\", \"The person turns on the stove.\", \"The person adds oil to the pan.\", \"The person gets out a wooden spatula and stirs the onions.\", \"The person washes the knife.\", \"The person stirs the onions while they cook.\", \"The person rinses the spatula and wooden plate.\", \"The person obtains two small onions from the pantry.\", \"The person takes a small knife from the drawer.\", \"The person peels the onions over the trashcan with the knife then sets them in the sink.\", \"The person chooses a circular cutting board from the drawer and sets it on the countertop.\", \"The person chops and dices one onion on the cutting board.\", \"The person takes a pan from a drawer and places it on the stove.\", \"The person scoops the diced onion into the pan.\", \"The person dices the second onion and then scoops it into the pan.\", \"The person turns the stove on, retrieves a bottle of cooking oil from the pantry, daubs the oil into the pan and then replaces the bottle in the pantry.\", \"The person takes a wooden spoon from the drawer and stirs the onions frying in the pan.\", \"The person notably washes the knife in the sink with a scrub brush and soap, the first person to do so in 40 or so videos.\", \"The person turns off the stove and then proceeds to properly wash the cutting board and the wooden spoon in the sink.\", \"The person gets an onion from the pantry.\", \"The person takes a knife from the drawer.\", \"The person peels an onion over the trash can.\", \"The person peels another onion over the wastebin with the knife.\", \"The person takes out a cutting board from the drawer.\", \"The person dices the onion on the cutting board.\", \"The person takes a pan from the drawer and places it onto the stove.\", \"The person scoops the onions into the pan.\", \"The person chops another onion on the cutting board.\", \"The person disposes of some peel into the wastebin.\", \"The person scoops the chopped onion into the pan and turns on the stove.\", \"The person gets from oil from the pantry and pours it on the onions in the pan.\", \"The person takes out a wooden spoon and stirs the onions.\", \"The person washes off the knife in the sink.\"], \"fps\": 29.4, \"num_frames\": 19987}, \"s34-d69.avi\": {\"timestamps\": [[250, 763], [859, 1363], [1493, 1632], [1876, 2058], [2058, 3314], [3340, 4576], [4576, 6033], [6051, 8127], [8199, 8452], [8467, 10350], [10350, 11121], [11127, 11558], [11582, 12799], [250, 763], [859, 1363], [1493, 1632], [1876, 2573], [2706, 3384], [3443, 3514], [3599, 4175], [4188, 5440], [5443, 5733], [5733, 6033], [6051, 8063], [8070, 8452], [8467, 8886], [8919, 12799], [250, 763], [859, 1363], [1493, 2219], [2334, 3314], [3340, 3514], [3599, 3798], [3806, 4347], [4424, 6158], [6178, 8127], [8199, 9048], [9075, 10394], [10394, 10502], [10564, 10636], [10688, 11558], [11582, 12435], [250, 763], [859, 1047], [1083, 1363], [1493, 1632], [1493, 1632], [1876, 2058], [2058, 2573], [2706, 2905], [2963, 3169], [3186, 3384], [3443, 3514], [250, 1632], [1876, 2905], [2963, 3384], [3599, 4473], [4473, 5773], [5777, 8063], [8070, 8886], [8919, 10636], [10688, 11558], [12597, 12799], [250, 763], [859, 1047], [1083, 1632], [1876, 3314], [3443, 4347], [4424, 5691], [5699, 8063], [8070, 9048], [9075, 10280], [10294, 11121], [11127, 11962], [11983, 12435], [250, 763], [859, 1047], [1083, 1363], [1493, 1632], [1493, 1632], [1876, 2058], [2058, 2573], [2706, 2905], [2963, 3169], [250, 763], [859, 1632], [3186, 3314], [3340, 4576], [4576, 5691], [5699, 6033], [6051, 8127], [8199, 10280], [10294, 11341], [11582, 12799], [250, 763], [859, 1632], [1876, 2573], [3340, 4347], [4424, 5099], [5149, 5733], [5733, 6033], [6051, 8127], [8199, 10280], [10294, 11207], [11211, 11643], [11643, 12048], [12054, 12435], [250, 763], [859, 1581], [1581, 2573], [1876, 3798], [3806, 5099], [5149, 5691], [5699, 6211], [6224, 7981], [7981, 10177], [10204, 11341], [250, 763], [859, 1363], [1493, 1632], [1876, 2219], [2334, 2573], [2706, 3384], [3443, 3514], [2706, 5099], [5149, 6158], [6178, 8785], [8813, 10280], [10294, 10636], [10688, 11207], [11361, 11558], [12597, 12799], [250, 1632], [1876, 2573], [2706, 3384], [3599, 4175], [4188, 5185], [5196, 5858], [5858, 6158], [6178, 8127], [8199, 8452], [8467, 9148], [9210, 10350], [10350, 11207], [11361, 12799], [250, 763], [859, 1047], [1083, 1363], [1493, 1632], [1493, 1632], [1876, 2573], [2706, 2905], [2963, 3169], [2706, 3514], [3443, 3798], [3806, 4122], [4122, 4347], [250, 763], [859, 1047], [1083, 1363], [1493, 1632], [1876, 2058], [2058, 2219], [2334, 2905], [3186, 3514], [3599, 3798], [3806, 4122], [4122, 4175], [4188, 4347], [4424, 4473], [250, 763], [859, 1363], [1493, 1632], [2963, 3314], [3599, 4347], [4473, 5691], [5699, 8063], [8070, 8127], [8199, 10177], [12597, 12799], [250, 763], [859, 1363], [1493, 2058], [1876, 3314], [3340, 4347], [4424, 5773], [5777, 6158], [6178, 8127], [8199, 9148], [9210, 10280], [10294, 10636], [10204, 11558], [11582, 11819], [11838, 12121], [12153, 12435], [250, 763], [859, 1047], [1083, 1363], [1493, 1632], [1493, 1632], [1876, 2058], [2058, 2219], [2334, 2573], [2706, 2905], [2058, 3314], [3340, 3384], [3443, 3514], [3340, 3798], [3340, 3798], [3806, 4175]], \"sentences\": [\"The person got out two eggs.\", \"The person got a pot out and rinsed it out.\", \"The person turned the oven on.\", \"The person got butter out.\", \"The person put the butter in the pot.\", \"The person cracked the eggs into the pot.\", \"The person seasoned the eggs with pepper and catsup.\", \"The person stirred the eggs until they were done.\", \"The person cleaned off the stove top.\", \"The person put the eggs on a plate.\", \"The person seasoned the eggs again.\", \"The person got out a fork.\", \"The person cleaned up.\", \"Retrieve your eggs from the refrigerator.\", \"Find a pot and rinse it out and place it on the counter.\", \"Set your stove top temperature and place the pot on the burner.\", \"Get butter.\", \"Get a spoon and spoon some butter into the pot.\", \"Get a spatula ready.\", \"Crack an egg on the side of the pot and stir the egg briskly.\", \"Add Salt.\", \"Add pepper.\", \"Add a touch of ketchup.\", \"Reduce heat and stir eggs briskly until done.\", \"Remove pot and turn off stove and wipe it down.\", \"Continue to stir eggs.\", \"Place your eggs on a clean plate, clean up and enjoy.\", \"The person gets three eggs from the fridge.\", \"The person takes out a pot from the drawer and rinses it in the sink.\", \"The takes butter from the fridge and sets it on the counter.\", \"The person takes out a spoon from the drawer and scoops butter into the metal bowl on the stove.\", \"The person takes out a wooden spoon from the drawer.\", \"The person breaks an egg into the metal bowl on the stove and stirs it with the wooden spoon.\", \"The person takes the metal bowl off the stove and breaks the other egg into it.\", \"The person takes salt and pepper from the counter and adds them to the eggs, then gets ketchup from the fridge, adds some to the eggs and returns the bottle to the fridge.\", \"The person furiously stirs the eggs and then removes the metal bowl from the stove.\", \"The person procures a plate from the cabinet.\", \"The person rinses the plate and the immediately scoops the eggs on it, using his hands to scrape the eggs from the wooden spoon.\", \"The person soaks the metal bowl and wooden spoon in the sink.\", \"The person grossly returns the barely rinses spoon to the drawer.\", \"The person adds some condiment then takes a fork from the drawer and stirs it into the eggs on the plate.\", \"The person throws the egg shells into the wastebin and puts the butter back into the fridge.\", \"He took out eggs\", \"He took out pot\", \"He washed pot\", \"He put pot on stove\", \"He turned on stove\", \"He took out butter\", \"He put back one egg\", \"He took out knife\", \"He put butter in pot\", \"He turned down heat\", \"He took out wooden spoon\", \"A man enters the kitchen, removes a pot from the drawer, rinses it out in the sink, places it on the stove and turns on the heat.\", \"He retrieves two eggs and some butter from the refrigerator and a fork from the drawer.\", \"He adds some butter to the hot pan and adjusts the heat.\", \"He removes the pan from the heat, directly cracks the two eggs into the pan and returns it to the heat.\", \"He scrambles the eggs in the pan and seasons them.\", \"He retrieves some ketchup from the refrigerator, adds it to the eggs, adjusts the heat and continues to scramble the eggs.\", \"He removes the pot of eggs from the heat and scrambles them a bit more.\", \"He transfers the eggs from the pot to the plate and washes the spatula and returns it to the drawer.\", \"He seasons the eggs a bit more, removes a fork from the drawer and tosses the eggs in the seasoning.\", \"He cleans up!\", \"He gets some eggs out of the fridge.\", \" He gets a pot out of the cupboard.\", \"He turns on the stovetop.\", \"He adds some butter into the heated pan.\", \"He cracks the eggs into the pot.\", \"He adds salt and pepper to the eggs.\", \"He mixes the eggs and butter together with a spatula.\", \"He takes a plate out of the cupboard.\", \"He puts the eggs on the plate.\", \"He adds spices to the eggs.\", \"He throws the egg shells into the garbage.\", \"He puts the butter back in the fridge.\", \"He took out eggs\", \"He took out pot\", \"He put water in pot\", \"He turned on stove\", \"He put pot on stove\", \"He took out butter\", \"He put back one egg\", \"He took out spoon\", \"He put butter in pot\", \"He sets some eggs on the counter.\", \"He gets a pot and puts it on the stove.\", \"He puts some butter in the pot.\", \"He puts the eggs into the pot.\", \"He seasons the eggs.\", \"He puts ketchup in the eggs.\", \"He takes the eggs from the heat.\", \"He puts the eggs on the plate.\", \"He seasons the eggs and gets a fork.\", \"He cleans up.\", \"The person takes three eggs out of the refrigerator.\", \"The person washes the pot and turns on the gas to heat the pot.\", \"The person takes a stick of butter out of the refrigerator and returns an egg back into the refrigerator.\", \"The person adds some butter into the pot and cracks both eggs into the pot.\", \"The person constantly stirs the eggs.\", \"The person adds some salt and pepper to the eggs.\", \"The person adds some ketchup the eggs.\", \"The person stirs the eggs some more.\", \"The person moves the eggs onto a plate.\", \"The person adds some spice to the eggs.\", \"The person mixes the eggs.\", \"The person discards the egg shells and cleans the stove top.\", \"The person washes his hands and returns the remaining butter to the refrigerator.\", \"The man begins by selecting 3 eggs from the fridge and places them on the counter.\", \"Next, he retrieves a pot and rinses it with water.\", \"He adds some butter to the pot.\", \"Next, he cracks the first of the eggs and adds it to the pot, quickly beating it with the wooden spatula.\", \"He then repeats the previously step with the next two eggs.\", \"Next, he adds some salt and pepper to the eggs.\", \"Next, he adds some ketchup to the eggs.\", \"He continues mixing and beating the eggs with the wooden spatula.\", \"After letting the eggs cool on the counter for a brief moment, he places them onto a plate.\", \"Next, he adds more spice to the eggs and mixing it in with a fork.\", \"The person gets out three eggs.\", \"The person gets out a pan and rinses it.\", \"The person turns on the stove and puts the pan on it.\", \"The person gets out some butter.\", \"The person puts away one egg.\", \"The person gets out a spoon and scoops butter into the pan.\", \"The person gets out a wooden spatula.\", \"The person cracks the eggs into the pan and stirs.\", \"The person adds salt, pepper and ketchup.\", \"The person stirs the eggs some more.\", \"The person gets out a plate, rinses it and scoops the eggs onto it.\", \"The person washes the pan and spatula, then puts the spatula away.\", \"The person adds some kind of spice to the eggs.\", \"The person gets out a fork and stirs the eggs.\", \"The person cleans up after himself.\", \"He gets out three eggs and a pot which he washes, fills with water, and places on the stove.\", \"He gets out some butter and puts an egg back into the refrigerator.\", \"He gets out a spoon, scoops some butter out into the plan, and changes the temperature of the stove.\", \"He gets out an egg, cracks it on the side of the pot, opens it into the pot, and uses the spatula to mix it around before taking the pot off the stove.\", \"He cracks the other egg into the pot, places the pot back onto the stove and mixes it around some more.\", \"He sprinkles some salt and pepper into the pot.\", \"He gets some ketchup from the refrigerator and squeezes it into the pot before putting the ketchup back into the refrigerator.\", \"He mixes everything around in the pot some more.\", \"He wipes the stove with a rag.\", \"He mixes around the ingredients in the pot and gets out a plate from the cabinet which he rinses.\", \"He uses the spatula to put the insides of the pot into the bowl.\", \"He washes the spatula and puts some spices on top of the eggs.\", \"He puts away the pot, mixes the eggs, cleans the counter, and puts things away.\", \"He took out eggs\", \"He took out pan\", \"He washed pan\", \"He turned on stove\", \"He put pan on stove\", \"He put one egg back\", \"He took out knife\", \"He put butter in pan\", \"He took out wooden spoon\", \"He cracked egg in pan\", \"He mixed egg in pan\", \"He took pan off heat\", \"He took out eggs\", \"He took out pan\", \"He washed pan\", \"He turned on stove\", \"He took out butter\", \"He put butter in pan\", \"He took out knife\", \"He took out wooden spoon\", \"He cracked egg\", \"He mixed egg\", \"He took pan off stove\", \"He cracked last egg\", \"He put pan back on stove\", \"He gets out the eggs.\", \"He removes a pot and rinses it.\", \"He turns on the stove and places the pot on it.\", \"He puts some butter in the pot.\", \"He cracks the eggs and put them in the pot.\", \"He seasons the eggs.\", \"He stirs the eggs.\", \"He removes the  pot from the heat.\", \"He places the eggs on the plate.\", \"He cleans up.\", \"The person removes two eggs from the fridge.\", \"The person takes a metal bowl from a drawer and rinses it in the sink.\", \"The person turns the stove on and gets some butter from the fridge.\", \"The person takes a spoon from the cutlery drawer and oddly scoops butter into the metal bowl on the stove.\", \"The person takes a wooden spoon from the drawer, cracks both eggs into the bowl and stirs them.\", \"The person puts several dashes of condiments into the eggs.\", \"The person gets from ketchup from the fridge and squirts a bit into the eggs.\", \"The person repeatedly and furiously stirs the eggs with the wooden spoon.\", \"The person gets a plate from the cupboard and rinses it in the sink.\", \"The scoops out the eggs onto the plate and grossly uses his hands.\", \"The person rinses the spoon and the bowl in the sink and puts the only slightly washed spoon back into the drawer still wet.\", \"The person gets a fork from the drawer and stirs the eggs on the plate.\", \"The person prepares to put the unwashed bowl back into the drawer only to be advised not to do so by someone off camera.\", \"The person throws the egg shells in the trash and rinses his hands in the sink.\", \"The person puts the butter back into the fridge.\", \"He took out egg\", \"He took out pot\", \"He washed pot\", \"He turned on stove\", \"He put pot on stove\", \"He took out butter\", \"He put butter in pot\", \"He put one egg back\", \"He took out spoon\", \"He put butter in pot\", \"He turned down stove\", \"He took out wooden spoon\", \"He cracked first egg\", \"He beat first egg\", \"He took pot off stove\"], \"fps\": 29.4, \"num_frames\": 12936}, \"s36-d23.avi\": {\"timestamps\": [[237, 7732], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [7882, 8123], [237, 294], [337, 844], [896, 1212], [1330, 4754], [4762, 6643], [6661, 7010], [7070, 7448], [8171, 9109], [9229, 9977], [10013, 12564], [12573, 14949], [14943, 16583], [16589, 18426], [18507, 19173], [19190, 19368], [237, 294], [337, 592], [628, 761], [790, 844], [896, 1212], [1330, 1647], [1647, 4587], [4716, 6483], [6514, 6915], [237, 294], [337, 592], [628, 761], [790, 844], [896, 1212], [1330, 1647], [1647, 6643], [237, 1669], [1673, 6643], [6936, 7448], [7502, 8427], [8438, 9338], [9332, 9870], [9877, 12414], [12442, 15646], [15667, 17132], [17181, 18426], [18507, 18632], [18859, 19331], [237, 592], [628, 844], [896, 1647], [1647, 6643], [6661, 7315], [7320, 7448], [7502, 8427], [8438, 9338], [9332, 9837], [9842, 14949], [14943, 17132], [17181, 18426], [18507, 18632], [237, 294], [337, 592], [628, 761], [790, 844], [896, 1137], [1145, 1647], [1647, 3395], [237, 592], [628, 844], [896, 1212], [1330, 1669], [3423, 6643], [6661, 6915], [6661, 7010], [7070, 7448], [7502, 7732], [7882, 8123], [7502, 8623], [8903, 9338], [9332, 11514], [11552, 14775], [14775, 17132], [237, 294], [337, 592], [628, 844], [896, 1137], [1145, 1669], [1673, 4316], [4411, 6483], [6936, 7010], [7070, 7448], [8171, 8498], [8519, 9697], [9700, 12469], [12474, 16658], [17181, 17359], [19331, 19368], [237, 592], [628, 844], [896, 1212], [1330, 1669], [1673, 6643], [7502, 8623], [8903, 9338], [9332, 12469], [12474, 14949], [14943, 17132], [18859, 19368], [237, 761], [790, 1388], [1431, 1705], [1673, 4587], [4716, 4754], [6661, 6915], [6514, 7010], [7070, 7732], [6661, 8623], [8903, 9870], [9877, 12844], [17181, 17359], [16658, 19022], [237, 592], [628, 844], [896, 1212], [1736, 6643], [6936, 7315], [7320, 7448], [7882, 8427], [8438, 9338], [9332, 9837], [9842, 12951], [12951, 17132], [237, 592], [628, 844], [896, 1212], [1330, 6643], [4762, 7448], [7502, 8498], [8519, 9338], [9332, 9870], [9877, 17132], [17378, 19368], [237, 592], [628, 844], [896, 1212], [1330, 1647], [6661, 6765], [7502, 8427], [8438, 9338], [9332, 9870], [9877, 12469], [12474, 15860], [15912, 17132], [17378, 19287], [237, 294], [337, 592], [628, 761], [790, 844], [896, 1212], [1330, 1647], [1647, 3395], [237, 844], [896, 1137], [1647, 6643], [6661, 8427], [8438, 9338], [9332, 9870], [9877, 14775], [14775, 16674], [16748, 17132], [17181, 18262], [19022, 19368], [237, 592], [628, 844], [896, 1137], [3423, 4316], [4411, 6483], [6776, 8427], [8438, 9338], [9332, 9870], [9877, 12414], [12442, 14775], [14775, 16497], [16511, 17132], [17181, 18088], [237, 592], [628, 844], [896, 1647], [1145, 6643], [6661, 7448], [7502, 7732], [1330, 9109], [9229, 9338], [9332, 9744], [9758, 9870], [9877, 12414], [12442, 15984], [16157, 17132], [237, 294], [337, 592], [628, 761], [790, 844], [896, 1212], [1330, 1669], [1145, 4316], [4411, 6483]], \"sentences\": [\"He takes out oil\", \"He takes out wooden spoon\", \"He turns on stove\", \"He takes out pan\", \"He washes cutting board and knife\", \"He cuts ends off second carrot\", \"He cuts up second carrot\", \"He cuts off ends of first carrrot\", \"He cuts up first carrot\", \"He washes carrots\", \"He takes out knife\", \"He takes out bowl\", \"He takes out cutting board\", \"He washes his hands\", \"He takes out carrots\", \"The man rinses his hands under the faucet.\", \"He opens the refrigerator and pulls out two carrots, then opens drawer and pulls out a cutting board and bowl.\", \"He rinses the carrots under the faucet and places them in the bowl.\", \"He pulls the knife from the drawer and proceeds to cut off both ends of carrot.  Then he slices and dices the first carrot and slides the pieces back into the bowl with his knife.\", \"He removes the second carrot from the bowl, slices and dices it, then slides the pieces into the bowl with the knife.\", \"The cutting board and knife are washed and the knife is put back in drawer.\", \"He turns on the stove, pulls frying pan from drawer and sets on stove.\", \"Gets oil from cupboard and places in pan, gets wooden spoon from drawer, grabs some spices and sets on counter.\", \"He puts carrots in pan, stirs, and adds spices.  Then puts the spices back.\", \"Continues to stir carrots, grabs another spice from the cupboard, gets a spoon from the drawer and adds to carrots.  He returns the spice to the cupboard.\", \"The man continues to cook the carrots, adjusts the heat and continues cooking.  He then pulls the pan from the stove and places it on the cutting board.\", \"The man swipes the discarded carrot pieces off the counter and places in garbage.  Then he washes his hands and the silver spoon.  He places the spoon in the drawer.\", \"He places the cook carrots in the bowl, washes the frying pan and puts it back in the cupboard.\", \"He put away cutting board, washes wooden spoon and puts in the drawer.\", \"He puts uncooked carrot pieces into the garbage and then rinses his hand.\", \"He washed hands\", \"He took out carrots\", \"He took out bowl\", \"He took out cutting board\", \"He washed carrots\", \"He took out knife\", \"He chopped up carrot\", \"He chopped up second carrot\", \"He washed cutting board\", \"He washed hands\", \"He took out carrots\", \"He took out bowl\", \"He took out cutting board\", \"He washed carrots\", \"He took out knife\", \"He chopped carrots\", \"He gets out the needed equipment and the carrots.\", \"He slices the carrots and puts them in a bowl.\", \"He turns on the stove and puts a pan on it.\", \"He put oil in the pan.\", \"He puts the carrots in the pan.\", \"He seasons the carrots.\", \"He adds a few more spices to the pan.\", \"He finishes cooking and discards some waste.\", \"He puts the carrots in a bowl.\", \"He washes the pan and puts it away.\", \"He puts the cutting board away.\", \"He finishes cleaning up.\", \"He gets some carrots out of the fridge.\", \"He gets a bowl and cutting board out of the cupboard.\", \"He gets a knife out of the drawer.\", \"He chops the carrots into small pieces.\", \"He turns on the stove top\", \"He gets a frying pan from the cupboard and puts it on the stovetop.\", \"He puts oil in the frying pan.\", \"He puts the carrots in the frying pan.\", \"He adds spices to the carrots.\", \"He takes the pan off the stovetop.\", \"He puts the fried carrots in the bowl.\", \"He cleans the pan and puts it back in the cupboard.\", \"He puts the cutting board back in the cupboard.\", \"He washed hands\", \"He took out carrots\", \"He took out bowl\", \"He took out cutting board\", \"He washed carrots\", \"He took out knife\", \"He chopped carrots\", \"The person procures some carrots from the fridge.\", \"The person takes out a metal bowl and a cutting board from the drawer.\", \"The person washes the carrots in the sink.\", \"The person puts the carrots in the bowl and takes out a knife from the drawer.\", \"The person chops the carrots on the cutting board and scoops them into the bowl.\", \"The person washes the cutting board and the knife in the sink.\", \"The person returns the knife to the drawer.\", \"The person turns the stove on and then takes out a pan from the drawer which he places on the stove.\", \"The person takes a bottle of oil from the pantry.\", \"The person takes out a wooden spatula from the drawer.\", \"The person pours oil from the bottle into the pan and then returns it to the pantry.\", \"The person takes out several condiments, then scoops the chopped carrots from the bowl into the pan.\", \"The person adds several condiments to the pan, puts them away, then stirs the frying carrots with the wooden spatula.\", \"The person procures a condiment from the pantry, takes a spoon from the drawer which he uses to scoop it into the pan, then returns the condiment to the pantry, places the spoon in the sink and again stirs the pan.\", \"The person disposes some carrots into the trash, then washes the spoon in the sink and returns to the drawer, after which he scoops the carrots from the pan into the metal bowl.\", \"Wash Hands\", \"Gather Carrots\", \"Get out Bowl and Cutting Board\", \"Wash Carrots\", \"Get out a knife\", \"Chop first Carrot and place chopped carrot into the bowl\", \"Chop second carrot and place chopped carrot into bowl\", \"Rinse off knife and cutting board\", \"Turn on the stove top and get a pan\", \"get oil and oil the pan\", \"add chopped carrots and salt and pepper to pan\", \"Saute carrots for a little while stirring frequently then add some garlic\", \"Saute carrots with garlic until they are tender\", \"Scoop carrots from pan to bowl and  then clean the pan\", \"Clean up all your equipment and then serve the carrots\", \"He grabs some carrots.\", \"He gets a bowl and a cutting board.\", \"He rinses the carrots.\", \"He chooses a knife.\", \"He chops the carrots.\", \"He gets some oil, adds it to a pan, and puts it away.\", \"He adds the carrots to the pan.\", \"He gets some spice and adds it to the pan.\", \"He stops the cooking and puts the pan on the cutting board.\", \"He puts the carrots in a bowl.\", \"He cleans up\", \"The man begins by selecting several carrots from the fridge.\", \"Next, he retrieves a small cutting board and a stainless steel bowl.\", \"He rinses the carrots and places them in the bowl.\", \"Using a knife, he cuts the ends off of the first carrot and then uses the knife to make thin slices which he later cuts in half.\", \"He places the cut carrots into the bowl.\", \"Next, he repeats the previous step on the second carrot.\", \"He rinses the knife as well as the cutting board and puts the knife away.\", \"He turns on the stove and selects a saute pan that he places on the stove top.\", \"Next, he selects some olive oil from the cupboard that he places in the pan before returning to its original location.\", \"He then tosses the carrots into the pan adding a pinch of salt and some additional spice.\", \"While continuing to saute the carrots he selects an additional spice from the cupboard and adds it to the carrots.\", \"After the carrots have been taken off the stove the man dumps them into the bowl from earlier.\", \"Finally, the man washes the pan and returns it along with the cutting board to their original locations.\", \"He takes carrots out of the fridge.\", \"He takes a bowl and cutting board out of the cupboard.\", \"He rinses off the carrots and puts the carrots in a bowl.\", \"He chops the carrots into small pieces and puts the pieces into the bowl.\", \"He turns on the stove.\", \"He takes a pan out of the cupboard and puts it on top of the stove.\", \"He puts oil in the pan.\", \"He puts the carrots in the pan.\", \"He adds spices to the carrots.\", \"He turns the stove off.\", \"He puts the cooked carrots in a bowl.\", \"He gets the carrots.\", \"He gets a bowl and a cutting board.\", \"He rinses the carrots.\", \"He chops the carrots.\", \"He turns on the stove and puts a pan on it.\", \"He puts oil in the pan.\", \"He adds the carrots to the pan.\", \"He seasons the carrots.\", \"He stops cooking and puts the carrots in a bowl.\", \"He cleans up.\", \"He grabs some carrots.\", \"He gets a bowl and a cutting board.\", \"He rinses the carrots.\", \"He selects a knife.\", \"He chops the carrots.\", \"He heats a pan and adds oil to it.\", \"He adds the carrots to the pan.\", \"He seasons the carrots.\", \"He adds flavor to the carrots.\", \"He finishes the cooking.\", \"He adds the carrots to a bowl.\", \"He cleans up.\", \"He washed hands\", \"He took out carrots\", \"He took out bowl\", \"He took out cutting board\", \"He washed carrots\", \"He took out knife\", \"He chopped carrot\", \"He retrieved all the needed items.\", \"He rinsed the carrots.\", \"He chops the carrots.\", \"He turns on the stove and adds olive oil to the pan.\", \"He adds the carrots to the pan.\", \"He seasons the carrots.\", \"He cooks the carrots.\", \"He cleans up.\", \"He adds the carrots to the bowl.\", \"He cleans the pan.\", \"He finishes cleaning up.\", \"The man gets carrots out of the refrigerator\", \"The man gets a bowl and cutting board out of the drawer\", \"The man washes the carrots\", \"The man dices a carrot on the cutting board\", \"The man dices another carrot\", \"The man puts oil in a pan on the stove\", \"The man puts the carrots in the pan\", \"The man seasons the carrots\", \"The man adds more seasoning to the carrots\", \"The man heats the carrots in the pan, stirring frequently\", \"The man cleans up\", \"The man puts the carrots in a bowl\", \"The man washes the pan\", \"person gets out carrots\", \"person washes carrots\", \"person gets out knife\", \"person dices carrots\", \"person gets out pan\", \"person gets out oil\", \"person gets salt and pepper\", \"person puts carrots in pan along with oil\", \"person puts in salt\", \"person puts in pepper\", \"person puts butter into pan\", \"person stops cooking carrots\", \"person puts carrots into bowl\", \"He washed hands\", \"He took out carrots\", \"He took out bowl\", \"He took out cutting board\", \"He washed carrots\", \"He took out knife\", \"He chopped carrots\", \"He chopped up second carrot\"], \"fps\": 29.4, \"num_frames\": 19396}, \"s37-d25.avi\": {\"timestamps\": [[183, 476], [488, 596], [603, 807], [818, 936], [968, 1304], [183, 476], [488, 596], [603, 807], [818, 936], [968, 1304], [183, 476], [488, 596], [603, 807], [818, 1304], [818, 1304], [183, 476], [488, 646], [653, 807], [818, 936], [968, 1304], [183, 476], [183, 476], [183, 476], [488, 596], [603, 807], [818, 936], [818, 936], [968, 1304], [968, 1304], [183, 476], [488, 596], [603, 807], [818, 936], [968, 1304], [183, 476], [488, 596], [603, 807], [818, 936], [968, 1304], [183, 476], [183, 476], [488, 596], [603, 807], [818, 936], [968, 1304], [183, 476], [488, 596], [603, 807], [818, 936], [968, 1304], [183, 476], [488, 596], [603, 807], [818, 936], [968, 1304], [183, 476], [488, 807], [818, 936], [968, 1304], [968, 1304], [183, 476], [488, 646], [653, 807], [818, 936], [818, 936], [968, 1304], [183, 476], [488, 646], [653, 807], [818, 936], [968, 1304], [183, 476], [183, 476], [488, 646], [653, 807], [818, 936], [968, 1304], [183, 476], [488, 807], [818, 936], [818, 936], [968, 1304]], \"sentences\": [\"Person takes out bread.\", \"Person takes out cutting board.\", \"Person takes out knife.\", \"Person places loaf on cutting board.\", \"Person cuts a half inch piece from top of loaf down to cutting board.\", \"He gets out the bread.\", \"He gets out a cutting board.\", \"He gets out a knife.\", \"He removes the bread from the bag.\", \"He slices off one slice of bread.\", \"He took out break\", \"He took out cutting board\", \"He took out knife\", \"He sliced bread\", \"He stood over bread\", \"He gets a loaf of bread.\", \"He gets out a cutting board.\", \"He gets a knife.\", \"He takes out the loaf.\", \"He starts cutting slices of bread.\", \"Person pulls out loaf of bread.\", \"Person closes refrigerator door.\", \"Person puts down loaf of bread on counter.\", \"Person puts cutting board on counter\", \"Person puts knife on cutting board.\", \"person unwraps load of bread.\", \"person puts loaf on cutting board.\", \"Person cuts one slice of bread from loaf.\", \"Person puts knife down.\", \"The person procures a loaf of bread from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person unwraps the loaf of bread and sets it on the cutting board.\", \"The person uses the knife to slice a piece of bread from the loaf.\", \"the person gets the bread\", \"the person gets a cutting board\", \"the person gets a large knife\", \"the person unwraps the bread\", \"the person slices the bread\", \"The person procures a loaf of bread from the fridge.\", \"The person sets the loaf of bread on the countertop.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person removes the loaf of bread from its wrapper.\", \"The person uses the knife to slice a piece of bread from the loaf.\", \"The person procures a loaf of bread from the fridge.\", \"The person takes out a cutting board from the drawer.\", \"The person takes out a knife from the drawer.\", \"The person unwraps the loaf of bread and sets it on the cutting board.\", \"The person uses the knife to slice a piece of bread from the loaf.\", \"He gets the loaf of bread out of the fridge.\", \"He gets the cutting board out of the cupboard.\", \"He gets a knife out of the drawer.\", \"He takes the loaf of bread out of its packaging.\", \"He cuts a slice off the loaf of bread.\", \"The man gets the bread out of the refrigerator.\", \"The man gets out a cutting board and a knife.\", \"The man unwraps the bread and puts it on the cutting board.\", \"The man cuts the bread.\", \"The man sets the bread aside on the cutting board.\", \"The person takes the ingredient from the refrigerator and brings it to the counter.\", \"The person takes out a cutting board.\", \"The person takes out a chef's knife and places it with the cutting board.\", \"The person removes the bread from the packaging and places it on the cutting board.\", \"The person holds the bread firmly in his left hand.\", \"The person carefully carves a half inch slice of bread from the end of the loaf.\", \"The person gets out a loaf of bread in plastic wrap.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person unwraps the bread.\", \"The person cuts off a slice of bread.\", \"The man opens the fridge\", \"The man takes bread out of the fridge.\", \"The man takes a cutting board out of a drawer.\", \"The man takes a large knife out of a drawer.\", \"The man places the loaf of bread on the cutting board.\", \"The man cuts, with a sawing motion, a thin slice of bread.\", \"Take loaf of bread from the fridge.\", \"Gather cutting board and knife on counter.\", \"Place bread on cutting board.\", \"Hold the bread steady with left hand and take knife with the right.\", \"Cut slice of bread off the loaf.\"], \"fps\": 29.4, \"num_frames\": 1420}, \"s34-d34.avi\": {\"timestamps\": [[206, 486], [500, 1242], [1268, 1345], [1414, 1644], [1698, 2953], [3021, 10497], [10537, 10813], [10862, 11804], [11820, 11979], [12267, 15320], [15438, 16370], [16378, 17079], [17089, 17584], [206, 486], [500, 1196], [1204, 1345], [1414, 1644], [1414, 1644], [1698, 2481], [2488, 2953], [3021, 4690], [4716, 11627], [206, 2481], [2488, 2953], [3021, 9476], [11638, 15320], [15438, 16837], [16851, 17584], [206, 1345], [1414, 1644], [1698, 2481], [2488, 2597], [2627, 8890], [8989, 11101], [9974, 11979], [9974, 11979], [12267, 16546], [16569, 16671], [16683, 17584], [206, 1345], [1414, 2481], [2488, 8890], [8989, 9476], [9974, 11101], [11111, 15320], [15438, 17584], [206, 1345], [1414, 1644], [1698, 2597], [2627, 4207], [4224, 8890], [4224, 8890], [8989, 9476], [9974, 10497], [11111, 11979], [12267, 15807], [15809, 16671], [16683, 17584], [206, 1345], [1414, 1644], [1414, 1644], [1698, 2597], [2627, 2953], [3021, 8890], [8989, 11101], [10537, 15807], [15809, 17584], [206, 1345], [1414, 1644], [1698, 2481], [2488, 8890], [8989, 10813], [11111, 15807], [15809, 17079], [17089, 17584], [206, 486], [500, 1345], [1414, 2481], [2488, 9476], [9974, 10813], [10862, 15807], [15809, 15922], [15985, 17079], [17089, 17584], [206, 1345], [1414, 1644], [1414, 1644], [1698, 2597], [2627, 2953], [3021, 8890], [8989, 9476], [9974, 11101], [10862, 11979], [12267, 15320], [15438, 16671], [16683, 17584], [206, 486], [500, 847], [854, 1345], [1414, 2953], [3021, 8890], [11111, 11979], [12267, 15320], [15438, 16040], [16074, 17079], [17089, 17584], [206, 355], [447, 1242], [1268, 1345], [1414, 1644], [1698, 2953], [3021, 10813], [8989, 11706], [11723, 11804], [11820, 11979], [12267, 15320], [15438, 16370], [16378, 17079], [17089, 17584], [206, 1345], [1414, 1644], [1414, 1644], [1698, 2953], [1698, 2953], [1698, 2953], [3021, 4690], [4716, 8890], [8989, 9476], [9974, 10813], [10862, 11979], [12267, 16837], [16851, 17079], [206, 355], [447, 802], [808, 1196], [1204, 1345], [1414, 1644], [1698, 2330], [2352, 2597], [2627, 8890], [8989, 10813], [10862, 11979], [12267, 15320], [15438, 16448], [16474, 16932], [17089, 17584], [206, 1345], [1414, 1644], [1414, 1644], [1698, 2481], [2488, 2597], [2627, 2953], [3021, 4207], [4224, 4899], [4918, 8890], [8989, 9476], [9974, 11101], [10862, 11979], [12267, 15807], [15809, 16671], [16937, 17584], [206, 1345], [1414, 2330], [2352, 2953], [3021, 4690], [4716, 8890], [8989, 10813], [10862, 11398], [11111, 15320], [15438, 16370], [16683, 17584], [206, 1242], [1268, 2407], [2417, 9476], [9974, 10813], [10862, 11398], [11500, 11979], [12267, 15320], [15438, 15807], [15809, 16886], [16378, 17584], [206, 486], [500, 847], [854, 1345], [1414, 1644], [1414, 1644], [1698, 2481], [2488, 2597], [2627, 4207]], \"sentences\": [\"The person gets out a bowl.\", \"The person gets out a knife and a peeler.\", \"The person fills the bowl with water.\", \"The person gets out some ginger.\", \"The person rinses the ginger.\", \"The person peels the ginger.\", \"The person throws away the ginger peel.\", \"The person rinses the peeler and puts it and the knife away.\", \"The person gets out a grater.\", \"The person grates the ginger into the bowl.\", \"The person washes and puts away the grater.\", \"The person adds spices to the ginger.\", \"The person gets out a spoon and stirs the ginger.\", \"He took out bowl\", \"He took out knife\", \"He took out peeler\", \"He put water in bowl\", \"He put ginger in bowl\", \"He washed ginger\", \"He took out cutting board\", \"He peeled ginger\", \"He washed peeler\", \"Rinse ginger in a small bowl of water.\", \"Drain water.\", \"Remove outer layer with a pealer and rinse.\", \"Use a vegetable grater to dice ginger.\", \"Add desired spices or flavorings.\", \"Stir before serving.\", \"The person takes out a bowl, a knife, and a peeler from the drawer.\", \"The person fills the bowl with water from the faucet.\", \"The person takes some ginger from the pantry and then rinses it in the bowl.\", \"The person takes out a cutting board from the drawer.\", \"The person uses the peeler to peel the ginger.\", \"The person pours the peels into the garbage with the water while holding the ginger in his hand.\", \"The person returns the peeler to the drawer.\", \"The person takes out a grater from the drawer.\", \"The person grates the ginger into the bowl, washes off the grater then returns it to the drawer.\", \"The person returns the cutting board to the drawer.\", \"The person for some reason decides to add condiments to ginger then takes a spoon from the drawer and stirs it together in the bowl.\", \"He gets out the needed hardware and fills a bowl with water.\", \"He puts the ginger in the bowl and rinses it.\", \"He peels the ginger.\", \"He rinses the ginger.\", \"He discards the peels.\", \"He grates the ginger.\", \"He cleans up then seasons the ginger.\", \"He gets out a bowl, a knife, and a peeler from the drawers.\", \"He fills the bowl with water from the sink and places the ginger inside.\", \"He puts the bowl with ginger in the sink and washes it.\", \"He peels off the outside of the ginger into the metal bowl.\", \"He rinses off the ginger and continues using the peeler to peel the outside off.\", \"He uses a knife to cut off a piece of the ginger.\", \"He puts the bowl with the peeler in it in the sink and turns on the water while using the knife to scrape off some pieces of the ginger into the bowl.\", \"He pours the water out into the sink.\", \"He throws away the scraps and puts away the peeler.\", \"He takes out a grater and uses it to grate the ginger into fine pieces.\", \"He washes the grater in the sink and puts it and the cutting board away.\", \"He sprinkles salt and pepper into the bowl and takes out a spoon to mix everything around.\", \"He gets the needed hardware.\", \"He puts water in a bowl.\", \"He gets ginger and puts it in the bowl.\", \"He cleans the ginger.\", \"He gets a cutting board.\", \"He peels the ginger.\", \"He rinses the ginger and discards the peels.\", \"He grates the ginger.\", \"He cleans up, then seasons the ginger.\", \"He gets out some equipment.\", \"He puts water in the bowl and then gets some ginger.\", \"He rinses the ginger.\", \"He peels the ginger.\", \"He discards the peels.\", \"He gets a grater and grates the ginger.\", \"He seasons the ginger.\", \"He stirs the ginger.\", \"He got a bowl.\", \"He got a bowl and a knife.\", \"He got some ginger and rinsed it.\", \"He peels the ginger and rinses it again.\", \"He discards the peels.\", \"He grate the ginger.\", \"He cleans the grater.\", \"He season the ginger.\", \"He mixes the ginger.\", \"He goes to the drawer and gets out a bowl, knife, and a peeler.\", \"He takes the bowl and fills it up with water.\", \"He goes to the cupboard and gets out some ginger and places it in the bowl.\", \"He adds ginger to the bowl of water and rinses it.\", \"He goes to the drawer and gets a cutting board out then drains the water from the bowl.\", \"He peels the ginger and then rinses the peeler and then continues to peel the ginger.\", \"He rinses and drains the ginger.\", \"He cleans up the sink and throws away the rinds.\", \"He rinses the peeler and puts it away along with the knife.\", \"He gets out a grater and grates the ginger into the bowl.\", \"He rinses and dries the grater and puts it away along with the cutting board.\", \"He then adds some spice and stirs the ginger.\", \"He gets a bowl out of the cupboard.\", \"He gets a knife out of the drawer.\", \"He gets a peeler out of the drawer.\", \"He gets a piece of ginger and washes it.\", \"He peels the piece of ginger.\", \"He gets a grater out of the cupboard.\", \"He grates the ginger into the bowl.\", \"He washes the grater.\", \"He adds spices to the ginger.\", \"He stirs up the ginger and spices.\", \"The person gets out a bowl.\", \"The person gets out a knife and a peeler.\", \"The person puts water in the bowl.\", \"The person gets out some ginger.\", \"The person washes the ginger.\", \"The person peels the ginger.\", \"The person rinses and puts away the peeler.\", \"The person puts away the knife.\", \"The person gets out a grater.\", \"The person grates the ginger into the bowl.\", \"The person washes the grater and puts it away.\", \"THe person adds spices to the ginger.\", \"The person gets out a spoon and stirs the ginger.\", \"The person takes out a bowl, knife and peeler.\", \"The person fills the bowl with water.\", \"The person pulls the ginger out of the cabinet.\", \"The person pulls out the cutting board.\", \"The person drains water out of the bowl.\", \"The person peels the ginger.\", \"The person cleans the peeler.\", \"The person finished peeling the ginger.\", \"The person rinses the peeled ginger uses the knife to take out any eyes of skin still left.\", \"The person throws away the peels.\", \"The person takes out grater and begins grating the ginger.\", \"The person adds salt to the ginger.\", \"The person pepper to the ginger\", \"The person gets out a bowl.\", \"The person gets out a knife.\", \"The person gets out a vegetable peeler.\", \"The person fills the bowl with water.\", \"The person gets out some ginger.\", \"The person rinses the ginger in the bowl.\", \"The person gets out a cutting board.\", \"The person peels the ginger.\", \"The person throws away the peel.\", \"The person puts away the peeler and knife, and gets out a grater.\", \"The person grates the ginger into the bowl.\", \"The person rinses the grater, and puts it and the cutting board away.\", \"The person adds spices to the ginger.\", \"The person gets out a spoon and stirs the ginger.\", \"The person removes a bowl, a knife and a peeler from the drawer.\", \"The person fills the bowl with water.\", \"The person removes the ginger root from the cabinet.\", \"The person rinses the ginger root in the bowl over the sink.\", \"The person takes a cutting board out of the drawer.\", \"The person rinses the ginger root a little more and dumps the water out of the bowl into the sink.\", \"The person uses the peeler to peel the skin off of part of the ginger root.\", \"The person rinses the peeler.\", \"The person peels the rest of the ginger root, placing the discarded skin in the bowl.\", \"The person rinses off the freshly peeled ginger root over the sink.\", \"The person pours the water out of the bowl and throws the waste into the trash.\", \"The person cleans the peeler and returns the peeler and the knife to the drawer.\", \"The person takes out a grater and uses it to grate the ginger root into the bowl.\", \"The person cleans the grater in the sink and puts the grater and the cutting board back into the drawer.\", \"The person adds what appears to be salt and another spice and mixes it with the grated ginger.\", \"He takes out a knife and a a carver along with a bowl which he fills with water.\", \"He gets ginger from the cabinet, puts it in the bowl of water, and washes it in the sink, then leaving it on the counter.\", \"He gets a cutting board and rubs the ginger in the water.\", \"He begins using the carver to remove the outside layer of the ginger and stop to wash the carver.\", \"He uses the carver to break apart ginger into smaller pieces.\", \"He washes the ginger in the sink and when the smaller pieces fall out, he gathers them and disposes of them in the trash.\", \"He washes the carver in the sink.\", \"He uses the grater to shred the ginger.\", \"He washes the grater in the sink, brushes spare particles that fell on the counter into the sink, dries the grater, and puts it away.\", \"He sprinkles salt and pepper on top of the ginger and then takes a spoon out from the drawer to mix it around.\", \"He gets out the equipment.\", \"He retrieves and rinses the ginger.\", \"He peels the ginger.\", \"He discards the peelings.\", \"He cleans the peeler.\", \"He retrieves the grater.\", \"He grates the ginger.\", \"He cleans the grater.\", \"He seasons the ginger.\", \"He stirs the ginger.\", \"He took out bowl\", \"He took out knife\", \"He took out peeler\", \"He put water in bowl\", \"He took out ginger\", \"He washed ginger\", \"He took out cutting board\", \" He peeled ginger\"], \"fps\": 29.4, \"num_frames\": 17659}, \"s36-d70.avi\": {\"timestamps\": [[192, 1144], [1236, 1314], [1491, 3839], [3956, 5173], [5271, 5425], [5495, 6901], [192, 723], [750, 1144], [1236, 1314], [1491, 3839], [3956, 4490], [4498, 5425], [6901, 6972], [192, 341], [371, 1144], [1236, 1314], [1491, 3839], [3956, 4490], [4498, 5425], [5495, 6901], [192, 1144], [1236, 1569], [1569, 2664], [2764, 3839], [3956, 4255], [4361, 4490], [4498, 5425], [5495, 6972], [192, 723], [750, 1144], [1236, 1314], [1491, 3839], [3956, 4490], [4498, 5425], [6901, 6972], [192, 341], [371, 614], [640, 998], [998, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4498, 4550], [4588, 4636], [4694, 5425], [4694, 5425], [4694, 5425], [4694, 5425], [4694, 5425], [192, 341], [371, 614], [640, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [192, 5425], [192, 341], [371, 723], [750, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4361, 5425], [5495, 6972], [192, 341], [371, 614], [640, 998], [998, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4498, 4636], [4498, 5425], [5495, 5813], [5495, 6972], [192, 341], [371, 614], [640, 998], [998, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4498, 4550], [4694, 4735], [4735, 5425], [192, 341], [371, 723], [750, 998], [998, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4498, 4550], [4588, 4636], [4588, 5425], [5495, 5813], [5495, 6972], [192, 341], [371, 723], [750, 998], [998, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4498, 4636], [4694, 5425], [5495, 5813], [5827, 6516], [5827, 6972], [192, 341], [371, 723], [750, 998], [998, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4498, 4636], [4694, 5425], [5495, 5813], [5827, 6516], [5827, 6972], [192, 341], [371, 614], [640, 998], [998, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4498, 4550], [4588, 4636], [4694, 5425], [5495, 5813], [192, 341], [371, 614], [640, 998], [998, 1144], [1236, 1314], [1491, 3839], [3956, 4255], [4361, 4490], [4498, 4636], [4694, 5425]], \"sentences\": [\"Gather all or your supplies, including a knife, cutting board, juicer and an orange.\", \"Slice the orange in half on the cutting board.\", \"Take each half of the orange and press it into the juicer while rotating the orange.\", \"Press the pulp left in the juicer to extract excess juice.\", \"Pour juice from juicer into a glass.\", \"Wash and put away all of your utensils.\", \"He gets a bowl and an orange.\", \"He gets a cutting board and a knife.\", \"He cuts it in half.\", \"He juices the orange.\", \"He gets a glass, then discards the orange.\", \"He pours the juice into the glass.\", \"He cleans up.\", \"He gets out the juicer.\", \"He gets out the orange, cutting board, and a knife.\", \"He cuts the orange in half.\", \"He juices the orange.\", \"He discards the rinds.\", \"He pours the juice in a glass.\", \"He cleans up.\", \"He gets out the needed items.\", \"He slices the orange in half.\", \"He juices the first half of the orange.\", \"He juices the other half of the orange.\", \"He retrieves a glass.\", \"He discards the rinds.\", \"He pours the juice into the glass.\", \"He cleans up.\", \"He gets a juicer and an orange.\", \"He gets a cutting board and a knife.\", \"He cuts the orange in half.\", \"He juices the orange.\", \"He discards the orange rinds.\", \"He pours the juice into a glass.\", \"He cleans up.\", \"He took out juicer\", \"He took out orange\", \"He took out cutting board\", \"He took out knife\", \"He cut orange in half\", \"He twisted orange on juicer\", \"He took out glass\", \"He threw away orange\", \"He washed hands\", \"He washed glass\", \"the person adds the juice from the manual juicer to the glass\", \"the person gets a glass\", \"the person strains the juice from each half of the Orange using the manual juicer\", \"the person cuts the Orange in half\", \"the person gets a manual juicer, sharp knife and a cutting board\", \"person gets hand held juicer\", \"person gets orange\", \"person gets cutting board and knife\", \"person cuts orange in half\", \"person uses juicer to squeeze juice out\", \"person gets glass\", \"person pours juice into glass\", \"Get out orange juicer and place it on the counter.\", \"Take out one or more oranges from the refrigerator.\", \"Get out a knife and a cutting board.\", \"Cut orange in half.\", \"Squeeze and twist the orange against the juicer until all the juice is out of the orange.\", \"Get a glass to place the fresh orange juice into.\", \"Throw away the orange peels.\", \"Pour the orange juice into the glass.\", \"Rinse off the cooking utensils, and put them away.\", \"The person gets out a juicer.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the orange in half.\", \"The person juices the orange.\", \"The person gets out a glass.\", \"The person throws away the orange.\", \"The person rinses the glass.\", \"The person pours the juice into the glass.\", \"The person throws away the pulp.\", \"The person rinses and puts away the juicer, cutting board and knife.\", \"He took out juicer\", \"He took out orange\", \"He took out cutting board\", \"He took out knife\", \"He cut orange in half\", \"He twisted orange on juicer\", \"He took out glass\", \"He threw away orange peel\", \"He washed hands\", \"He washed glass\", \"He poured juice in glass\", \"The person gets out a juicer.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the orange in half.\", \"The person juices the orange.\", \"The person gets out a glass.\", \"The person throws away the orange.\", \"The person washes his hands.\", \"The person rinses the glass.\", \"The person pours the juice into the glass.\", \"The person throws away the pulp.\", \"The person rinses and puts away all the dishes.\", \"The person gets out a juicer.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the orange in half.\", \"The person juices each half of the orange.\", \"The person gets out a glass.\", \"The person throws away the orange.\", \"The person rinses his hands and the glass.\", \"The person pours the juice into the glass.\", \"The person throws away the pulp.\", \"The person rinses the juicer and puts it away.\", \"The person rinses the knife and cutting board, and puts them away.\", \"The person gets out a juicer.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the orange in half.\", \"The person juices the orange.\", \"The person gets out a glass.\", \"The person throws away the halves of the orange.\", \"The person rinses the glass.\", \"The person pours the juice into the glass.\", \"The person throws away the pulp.\", \"The person rinses the juicer and puts it away.\", \"The person rinses the cutting board and knife and puts them away.\", \"The person gets out a juicer.\", \"The person gets out an orange.\", \"The person gets out a cutting board.\", \"The person gets out a knife.\", \"The person cuts the orange in half.\", \"The person juices each half of the orange.\", \"The person gets out a cup.\", \"The person throws away the orange.\", \"The person washes his hands.\", \"The person rinses the cup.\", \"The person pours the juice into the cup.\", \"The person throws away the pulp.\", \"He took out juicer\", \"He took out orange\", \"He took out cutting board\", \"He took out knife\", \"He cut orange in half\", \"He twisted orange on juicer\", \"He took out glass\", \"He threw out scraps\", \"He washed hands\", \"He poured juice in glass\"], \"fps\": 29.4, \"num_frames\": 7039}}"
  },
  {
    "path": "NLQ/2D-TAN/experiments/activitynet/2D-TAN-64x64-K9L4-conv.yaml",
    "content": "WORKERS: 16\n\nMODEL_DIR: ./checkpoints\nRESULT_DIR: ./results\nLOG_DIR: ./log\nDATA_DIR: ./data/ActivityNet\n\nDATASET:\n  NAME: ActivityNet\n  VIS_INPUT_TYPE: c3d\n  NO_VAL: False\n  NUM_SAMPLE_CLIPS: 256\n  TARGET_STRIDE: 4\n  NORMALIZE: True\n  RANDOM_SAMPLING: False\n\nTEST:\n  BATCH_SIZE: 32\n  RECALL: 1,5\n  TIOU: 0.3,0.5,0.7\n  EVAL_TRAIN: True\n  NMS_THRESH: 0.5\n\nCUDNN:\n  DETERMINISTIC: False\n  BENCHMARK: True\n\nTRAIN:\n  BATCH_SIZE: 32\n  LR: 0.0001\n  WEIGHT_DECAY: 0.0000\n  MAX_EPOCH: 100\n  CONTINUE: False\n\nLOSS:\n  NAME: bce_rescale_loss\n  PARAMS:\n    MIN_IOU: 0.5\n    MAX_IOU: 1.0\n    BIAS: 0.0\n\nTAN:\n\n  FRAME_MODULE:\n    NAME: FrameAvgPool\n    PARAMS:\n      INPUT_SIZE: 500\n      HIDDEN_SIZE: 512\n      KERNEL_SIZE: 4\n      STRIDE: 4\n\n  PROP_MODULE:\n    NAME: SparsePropConv\n    PARAMS:\n      HIDDEN_SIZE: 512\n      NUM_SCALE_LAYERS: [16,8,8]\n\n  FUSION_MODULE:\n    NAME: BaseFusion\n    PARAMS:\n      HIDDEN_SIZE: 512\n      TXT_INPUT_SIZE: 300\n      TXT_HIDDEN_SIZE: 512\n      LSTM:\n        NUM_LAYERS: 3\n        BIDIRECTIONAL: False\n\n  MAP_MODULE:\n    NAME: MapConv\n    PARAMS:\n      INPUT_SIZE: 512\n      HIDDEN_SIZES: [512, 512, 512, 512]\n      KERNEL_SIZES: [9, 9, 9, 9]\n      STRIDES: [1, 1, 1, 1]\n      PADDINGS: [16, 0, 0, 0]\n      DILATIONS: [1, 1, 1, 1]\n\n  PRED_INPUT_SIZE: 512\n\nMODEL:\n  NAME: TAN\n  CHECKPOINT: ./checkpoints/ActivityNet/iter009352-0.5875-0.8565.pkl\n"
  },
  {
    "path": "NLQ/2D-TAN/experiments/activitynet/2D-TAN-64x64-K9L4-pool.yaml",
    "content": "WORKERS: 16\n\nMODEL_DIR: ./checkpoints\nRESULT_DIR: ./results\nLOG_DIR: ./log\nDATA_DIR: ./data/ActivityNet\n\nDATASET:\n  NAME: ActivityNet\n  VIS_INPUT_TYPE: c3d\n  NO_VAL: False\n  NUM_SAMPLE_CLIPS: 256\n  TARGET_STRIDE: 4\n  NORMALIZE: True\n  RANDOM_SAMPLING: False\n\nTEST:\n  BATCH_SIZE: 32\n  RECALL: 1,5\n  TIOU: 0.3,0.5,0.7\n  EVAL_TRAIN: True\n  NMS_THRESH: 0.5\n\nCUDNN:\n  DETERMINISTIC: False\n  BENCHMARK: True\n\nTRAIN:\n  BATCH_SIZE: 32\n  LR: 0.0001\n  WEIGHT_DECAY: 0.0000\n  MAX_EPOCH: 100\n  CONTINUE: False\n\nLOSS:\n  NAME: bce_rescale_loss\n  PARAMS:\n    MIN_IOU: 0.5\n    MAX_IOU: 1.0\n    BIAS: 0.0\n\nTAN:\n\n  FRAME_MODULE:\n    NAME: FrameAvgPool\n    PARAMS:\n      INPUT_SIZE: 500\n      HIDDEN_SIZE: 512\n      KERNEL_SIZE: 4\n      STRIDE: 4\n\n  PROP_MODULE:\n    NAME: SparsePropMaxPool\n    PARAMS:\n      NUM_SCALE_LAYERS: [16,8,8]\n\n  FUSION_MODULE:\n    NAME: BaseFusion\n    PARAMS:\n      HIDDEN_SIZE: 512\n      TXT_INPUT_SIZE: 300\n      TXT_HIDDEN_SIZE: 512\n      LSTM:\n        NUM_LAYERS: 3\n        BIDIRECTIONAL: False\n\n  MAP_MODULE:\n    NAME: MapConv\n    PARAMS:\n      INPUT_SIZE: 512\n      HIDDEN_SIZES: [512, 512, 512, 512]\n      KERNEL_SIZES: [9, 9, 9, 9]\n      STRIDES: [1, 1, 1, 1]\n      PADDINGS: [16, 0, 0, 0]\n      DILATIONS: [1, 1, 1, 1]\n\n  PRED_INPUT_SIZE: 512\n\nMODEL:\n  NAME: TAN\n  CHECKPOINT: ./checkpoints/ActivityNet/iter005845-0.5945-0.8744.pkl"
  },
  {
    "path": "NLQ/2D-TAN/experiments/charades/2D-TAN-16x16-K5L8-conv.yaml",
    "content": "WORKERS: 16\n\nMODEL_DIR: ./checkpoints\nRESULT_DIR: ./results\nLOG_DIR: ./log\nDATA_DIR: ./data/Charades-STA\n\nDATASET:\n  NAME: Charades\n  VIS_INPUT_TYPE: vgg_rgb\n  NO_VAL: True\n  NUM_SAMPLE_CLIPS: 256\n  TARGET_STRIDE: 16\n  NORMALIZE: True\n  RANDOM_SAMPLING: False\n\nCUDNN:\n  DETERMINISTIC: False\n  BENCHMARK: True\n\nTRAIN:\n  BATCH_SIZE: 32\n  LR: 0.0001\n  WEIGHT_DECAY: 0.0000\n  MAX_EPOCH: 100\n  CONTINUE: False\n\nLOSS:\n  NAME: bce_rescale_loss\n  PARAMS:\n    MIN_IOU: 0.5\n    MAX_IOU: 1.0\n    BIAS: 0.0\n\nTEST:\n  BATCH_SIZE: 32\n  RECALL: 1,5\n  TIOU: 0.5,0.7\n  EVAL_TRAIN: True\n  NMS_THRESH: 0.5\n\nTAN:\n\n  FRAME_MODULE:\n    NAME: FrameAvgPool\n    PARAMS:\n      INPUT_SIZE: 4096\n      HIDDEN_SIZE: 512\n      KERNEL_SIZE: 16\n      STRIDE: 16\n\n  PROP_MODULE:\n    NAME: SparsePropConv\n    PARAMS:\n      HIDDEN_SIZE: 512\n      NUM_SCALE_LAYERS: [16]\n\n  FUSION_MODULE:\n    NAME: BaseFusion\n    PARAMS:\n      HIDDEN_SIZE: 512\n      TXT_INPUT_SIZE: 300\n      TXT_HIDDEN_SIZE: 512\n      LSTM:\n        NUM_LAYERS: 3\n        BIDIRECTIONAL: False\n\n  MAP_MODULE:\n    NAME: MapConv\n    PARAMS:\n      INPUT_SIZE: 512\n      HIDDEN_SIZES: [512, 512, 512, 512, 512, 512, 512, 512]\n      KERNEL_SIZES: [5, 5, 5, 5, 5, 5, 5, 5]\n      STRIDES: [1, 1, 1, 1, 1, 1, 1, 1]\n      PADDINGS: [16, 0, 0, 0, 0, 0, 0, 0]\n      DILATIONS: [1, 1, 1, 1, 1, 1, 1, 1]\n\n  PRED_INPUT_SIZE: 512\n\nMODEL:\n  NAME: TAN\n  CHECKPOINT: ./checkpoints/Charades/iter005418-0.4277-0.8062.pkl"
  },
  {
    "path": "NLQ/2D-TAN/experiments/charades/2D-TAN-16x16-K5L8-pool.yaml",
    "content": "WORKERS: 16\n\nMODEL_DIR: ./checkpoints\nRESULT_DIR: ./results\nLOG_DIR: ./log\nDATA_DIR: ./data/Charades-STA\n\nDATASET:\n  NAME: Charades\n  VIS_INPUT_TYPE: vgg_rgb\n  NO_VAL: True\n  NUM_SAMPLE_CLIPS: 256\n  TARGET_STRIDE: 16\n  NORMALIZE: True\n  RANDOM_SAMPLING: False\n\nCUDNN:\n  DETERMINISTIC: False\n  BENCHMARK: True\n\nTRAIN:\n  BATCH_SIZE: 32\n  LR: 0.0001\n  WEIGHT_DECAY: 0.0000\n  MAX_EPOCH: 100\n  CONTINUE: False\n\nLOSS:\n  NAME: bce_rescale_loss\n  PARAMS:\n    MIN_IOU: 0.5\n    MAX_IOU: 1.0\n    BIAS: 0.0\n\nTEST:\n  BATCH_SIZE: 32\n  RECALL: 1,5\n  TIOU: 0.5,0.7\n  EVAL_TRAIN: True\n  NMS_THRESH: 0.45\n\nTAN:\n\n  FRAME_MODULE:\n    NAME: FrameAvgPool\n    PARAMS:\n      INPUT_SIZE: 4096\n      HIDDEN_SIZE: 512\n      KERNEL_SIZE: 16\n      STRIDE: 16\n\n  PROP_MODULE:\n    NAME: SparsePropMaxPool\n    PARAMS:\n      NUM_SCALE_LAYERS: [16]\n\n  FUSION_MODULE:\n    NAME: BaseFusion\n    PARAMS:\n      HIDDEN_SIZE: 512\n      TXT_INPUT_SIZE: 300\n      TXT_HIDDEN_SIZE: 512\n      LSTM:\n        NUM_LAYERS: 3\n        BIDIRECTIONAL: False\n\n  MAP_MODULE:\n    NAME: MapConv\n    PARAMS:\n      INPUT_SIZE: 512\n      HIDDEN_SIZES: [512, 512, 512, 512, 512, 512, 512, 512]\n      KERNEL_SIZES: [5, 5, 5, 5, 5, 5, 5, 5]\n      STRIDES: [1, 1, 1, 1, 1, 1, 1, 1]\n      PADDINGS: [16, 0, 0, 0, 0, 0, 0, 0]\n      DILATIONS: [1, 1, 1, 1, 1, 1, 1, 1]\n\n  PRED_INPUT_SIZE: 512\n\nMODEL:\n  NAME: TAN\n  CHECKPOINT: ./checkpoints/Charades/iter004257-0.4094-0.8384.pkl"
  },
  {
    "path": "NLQ/2D-TAN/experiments/ego4d/2D-TAN-40x40-K9L4-pool-window-std-sf.yaml",
    "content": "WORKERS: 0\nDEBUG: False\n\nMODEL_DIR: ./checkpoints\nRESULT_DIR: ./results\nLOG_DIR: ./log\nDATA_DIR: ./data/Ego4D_clip\n\nDATASET:\n  NAME: Ego4DClip\n  VIS_INPUT_TYPE: slowfast\n  NO_VAL: False\n  NUM_SAMPLE_CLIPS: 40\n  TARGET_STRIDE: 1\n  NORMALIZE: True\n  RANDOM_SAMPLING: False\n  WINDOW: 40 # we use 40s window to cut the videos\n\nTEST:\n  BATCH_SIZE: 16\n  RECALL: 1,5\n  TIOU: 0.3,0.5\n  EVAL_TRAIN: True\n  NMS_THRESH: 0.5\n\nCUDNN:\n  DETERMINISTIC: False\n  BENCHMARK: True\n\nTRAIN:\n  BATCH_SIZE: 32\n  LR: 0.00005\n  WEIGHT_DECAY: 0.0000\n  MAX_EPOCH: 100\n  CONTINUE: False\n\nLOSS:\n  NAME: bce_rescale_loss\n  PARAMS:\n    MIN_IOU: 0.3\n    MAX_IOU: 1.0\n    BIAS: 0.3\n\nTAN:\n  FRAME_MODULE:\n    NAME: FrameAvgPool\n    PARAMS:\n      INPUT_SIZE: 2304\n      HIDDEN_SIZE: 512\n      KERNEL_SIZE: 1\n      STRIDE: 1\n\n  PROP_MODULE:\n    NAME: SparsePropMaxPool\n    PARAMS:\n      NUM_SCALE_LAYERS: [16,8,8]\n\n  FUSION_MODULE:\n    NAME: BaseFusion\n    PARAMS:\n      HIDDEN_SIZE: 512\n      TXT_INPUT_SIZE: 300\n      TXT_HIDDEN_SIZE: 768\n      LSTM:\n        NUM_LAYERS: 3\n        BIDIRECTIONAL: False\n\n  MAP_MODULE:\n    NAME: MapConv\n    PARAMS:\n      INPUT_SIZE: 512\n      HIDDEN_SIZES: [512, 512, 512, 512]\n      KERNEL_SIZES: [9, 9, 9, 9]\n      STRIDES: [1, 1, 1, 1]\n      PADDINGS: [16, 0, 0, 0]\n      DILATIONS: [1, 1, 1, 1]\n\n  PRED_INPUT_SIZE: 512\n\nMODEL:\n  NAME: TAN\n  CHECKPOINT: checkpoints/Ego4DClip/TAN_slowfast/iter005030-0.0530-0.1242.pkl\n"
  },
  {
    "path": "NLQ/2D-TAN/experiments/tacos/2D-TAN-128x128-K5L8-conv.yaml",
    "content": "WORKERS: 16\nMODEL_DIR: ./checkpoints\nRESULT_DIR: ./results\nLOG_DIR: ./log\nDATA_DIR: ./data/TACoS\n\nDATASET:\n  NAME: TACoS\n  VIS_INPUT_TYPE: c3d\n  NO_VAL: True\n  NUM_SAMPLE_CLIPS: 256\n  TARGET_STRIDE: 2\n  NORMALIZE: True\n  RANDOM_SAMPLING: False\n\nTEST:\n  BATCH_SIZE: 32\n  RECALL: 1,5\n  TIOU: 0.1,0.3,0.5,0.7\n  EVAL_TRAIN: False\n  NMS_THRESH: 0.5\n\nCUDNN:\n  DETERMINISTIC: False\n  BENCHMARK: True\n\nTRAIN:\n  BATCH_SIZE: 32\n  LR: 0.0001\n  WEIGHT_DECAY: 0.0000\n  MAX_EPOCH: 100\n  CONTINUE: False\n\nLOSS:\n  NAME: bce_rescale_loss\n  PARAMS:\n    MIN_IOU: 0.3\n    MAX_IOU: 0.7\n    BIAS: 0.0\n\nTAN:\n\n  FRAME_MODULE:\n    NAME: FrameAvgPool\n    PARAMS:\n      INPUT_SIZE: 4096\n      HIDDEN_SIZE: 512\n      KERNEL_SIZE: 2\n      STRIDE: 2\n\n  PROP_MODULE:\n    NAME: SparsePropConv\n    PARAMS:\n      HIDDEN_SIZE: 512\n      NUM_SCALE_LAYERS: [16,8,8,8]\n\n  FUSION_MODULE:\n    NAME: BaseFusion\n    PARAMS:\n      HIDDEN_SIZE: 512\n      TXT_INPUT_SIZE: 300\n      TXT_HIDDEN_SIZE: 512\n      LSTM:\n        NUM_LAYERS: 3\n        BIDIRECTIONAL: False\n\n  MAP_MODULE:\n    NAME: MapConv\n    PARAMS:\n      INPUT_SIZE: 512\n      HIDDEN_SIZES: [512, 512, 512, 512, 512, 512, 512, 512]\n      KERNEL_SIZES: [5, 5, 5, 5, 5, 5, 5, 5]\n      STRIDES: [1, 1, 1, 1, 1, 1, 1, 1]\n      PADDINGS: [16, 0, 0, 0, 0, 0, 0, 0]\n      DILATIONS: [1, 1, 1, 1, 1, 1, 1, 1]\n\n  PRED_INPUT_SIZE: 512\n\nMODEL:\n  NAME: TAN\n  CHECKPOINT: ./checkpoints/TACoS/iter016165-0.4644-0.7443.pkl\n"
  },
  {
    "path": "NLQ/2D-TAN/experiments/tacos/2D-TAN-128x128-K5L8-pool.yaml",
    "content": "WORKERS: 16\n\nMODEL_DIR: ./checkpoints\nRESULT_DIR: ./results\nLOG_DIR: ./log\nDATA_DIR: ./data/TACoS\n\nDATASET:\n  NAME: TACoS\n  VIS_INPUT_TYPE: c3d\n  NO_VAL: False\n  NUM_SAMPLE_CLIPS: 256\n  TARGET_STRIDE: 2\n  NORMALIZE: True\n  RANDOM_SAMPLING: False\n\nTEST:\n  BATCH_SIZE: 32\n  RECALL: 1,5\n  TIOU: 0.1,0.3,0.5,0.7\n  EVAL_TRAIN: True\n  NMS_THRESH: 0.4\n\nCUDNN:\n  DETERMINISTIC: False\n  BENCHMARK: True\n\nTRAIN:\n  BATCH_SIZE: 32\n  LR: 0.0001\n  WEIGHT_DECAY: 0.0000\n  MAX_EPOCH: 100\n  CONTINUE: False\n\nLOSS:\n  NAME: bce_rescale_loss\n  PARAMS:\n    MIN_IOU: 0.3\n    MAX_IOU: 0.7\n    BIAS: 0.0\n\nTAN:\n\n  FRAME_MODULE:\n    NAME: FrameAvgPool\n    PARAMS:\n      INPUT_SIZE: 4096\n      HIDDEN_SIZE: 512\n      KERNEL_SIZE: 2\n      STRIDE: 2\n\n  PROP_MODULE:\n    NAME: SparsePropMaxPool\n    PARAMS:\n      NUM_SCALE_LAYERS: [16,8,8,8]\n\n  FUSION_MODULE:\n    NAME: BaseFusion\n    PARAMS:\n      HIDDEN_SIZE: 512\n      TXT_INPUT_SIZE: 300\n      TXT_HIDDEN_SIZE: 512\n      LSTM:\n        NUM_LAYERS: 3\n        BIDIRECTIONAL: False\n\n  MAP_MODULE:\n    NAME: MapConv\n    PARAMS:\n      INPUT_SIZE: 512\n      HIDDEN_SIZES: [512, 512, 512, 512, 512, 512, 512, 512]\n      KERNEL_SIZES: [5, 5, 5, 5, 5, 5, 5, 5]\n      STRIDES: [1, 1, 1, 1, 1, 1, 1, 1]\n      PADDINGS: [16, 0, 0, 0, 0, 0, 0, 0]\n      DILATIONS: [1, 1, 1, 1, 1, 1, 1, 1]\n\n  PRED_INPUT_SIZE: 512\n\nMODEL:\n  NAME: TAN\n  CHECKPOINT: ./checkpoints/TACoS/iter010370-0.4759-0.7031.pkl\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/core/config.py",
    "content": "from __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport yaml\nfrom easydict import EasyDict as edict\n\nconfig = edict()\n\nconfig.WORKERS = 16\nconfig.LOG_DIR = ''\nconfig.MODEL_DIR = ''\nconfig.RESULT_DIR = ''\nconfig.DATA_DIR = ''\nconfig.VERBOSE = False\nconfig.TAG = ''\nconfig.DEBUG = False\n\n# CUDNN related params\nconfig.CUDNN = edict()\nconfig.CUDNN.BENCHMARK = True\nconfig.CUDNN.DETERMINISTIC = False\nconfig.CUDNN.ENABLED = True\n\n# TAN related params\nconfig.TAN = edict()\nconfig.TAN.FRAME_MODULE = edict()\nconfig.TAN.FRAME_MODULE.NAME = ''\nconfig.TAN.FRAME_MODULE.PARAMS = None\nconfig.TAN.PROP_MODULE = edict()\nconfig.TAN.PROP_MODULE.NAME = ''\nconfig.TAN.PROP_MODULE.PARAMS = None\nconfig.TAN.FUSION_MODULE = edict()\nconfig.TAN.FUSION_MODULE.NAME = ''\nconfig.TAN.FUSION_MODULE.PARAMS = None\nconfig.TAN.MAP_MODULE = edict()\nconfig.TAN.MAP_MODULE.NAME = ''\nconfig.TAN.MAP_MODULE.PARAMS = None\nconfig.TAN.PRED_INPUT_SIZE = 512\n\n# common params for NETWORK\nconfig.MODEL = edict()\nconfig.MODEL.NAME = ''\nconfig.MODEL.CHECKPOINT = '' # The checkpoint for the best performance\n\n# DATASET related params\nconfig.DATASET = edict()\nconfig.DATASET.ROOT = ''\nconfig.DATASET.NAME = ''\nconfig.DATASET.MODALITY = ''\nconfig.DATASET.VIS_INPUT_TYPE = ''\nconfig.DATASET.TXT_FEATURE = 'bert'\nconfig.DATASET.NO_VAL = False\nconfig.DATASET.BIAS = 0\nconfig.DATASET.NUM_SAMPLE_CLIPS = 256\nconfig.DATASET.TARGET_STRIDE = 16\nconfig.DATASET.DOWNSAMPLING_STRIDE = 16\nconfig.DATASET.SPLIT = ''\nconfig.DATASET.NORMALIZE = False\nconfig.DATASET.RANDOM_SAMPLING = False\nconfig.DATASET.WINDOW = 0\nconfig.DATASET.NEGWINDOW = True\n\n# train\nconfig.TRAIN = edict()\nconfig.TRAIN.LR = 0.001\nconfig.TRAIN.WEIGHT_DECAY = 0\nconfig.TRAIN.FACTOR = 0.8\nconfig.TRAIN.PATIENCE = 20\nconfig.TRAIN.MAX_EPOCH = 20\nconfig.TRAIN.BATCH_SIZE = 4\nconfig.TRAIN.SHUFFLE = True\nconfig.TRAIN.CONTINUE = False\n\nconfig.LOSS = edict()\nconfig.LOSS.NAME = 'bce_loss'\nconfig.LOSS.PARAMS = None\n\n# test\nconfig.TEST = edict()\nconfig.TEST.RECALL = []\nconfig.TEST.TIOU = []\nconfig.TEST.NMS_THRESH = 0.4\nconfig.TEST.INTERVAL = 1\nconfig.TEST.EVAL_TRAIN = False\nconfig.TEST.BATCH_SIZE = 1\nconfig.TEST.TOP_K = 10\n\ndef _update_dict(cfg, value):\n    for k, v in value.items():\n        if k in cfg:\n            if k == 'PARAMS':\n                cfg[k] = v\n            elif isinstance(v, dict):\n                _update_dict(cfg[k],v)\n            else:\n                cfg[k] = v\n        else:\n            raise ValueError(\"{} not exist in config.py\".format(k))\n\ndef update_config(config_file):\n    with open(config_file) as f:\n        exp_config = edict(yaml.load(f, Loader=yaml.FullLoader))\n        for k, v in exp_config.items():\n            if k in config:\n                if isinstance(v, dict):\n                    _update_dict(config[k], v)\n                else:\n                    config[k] = v\n            else:\n                raise ValueError(\"{} not exist in config.py\".format(k))\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/core/engine.py",
    "content": "class Engine(object):\n    def __init__(self):\n        self.hooks = {}\n\n    def hook(self, name, state):\n\n        if name in self.hooks:\n            self.hooks[name](state)\n\n    def train(self, network, iterator, maxepoch, optimizer, scheduler):\n        state = {\n            'network': network,\n            'iterator': iterator,\n            'maxepoch': maxepoch,\n            'optimizer': optimizer,\n            'scheduler': scheduler,\n            'epoch': 0,\n            't': 0,\n            'train': True,\n        }\n\n        self.hook('on_start', state)\n        while state['epoch'] < state['maxepoch']:\n            self.hook('on_start_epoch', state)\n            for sample in state['iterator']:\n                state['sample'] = sample\n                self.hook('on_sample', state)\n\n                def closure():\n                    loss, output = state['network'](state['sample'])\n                    state['output'] = output\n                    state['loss'] = loss\n                    loss.backward()\n                    self.hook('on_forward', state)\n                    # to free memory in save_for_backward\n                    state['output'] = None\n                    state['loss'] = None\n                    return loss\n\n                state['optimizer'].zero_grad()\n                state['optimizer'].step(closure)\n                self.hook('on_update', state)\n                state['t'] += 1\n            state['epoch'] += 1\n            self.hook('on_end_epoch', state)\n        self.hook('on_end', state)\n        return state\n\n    def test(self, network, iterator, split):\n        state = {\n            'network': network,\n            'iterator': iterator,\n            'split': split,\n            't': 0,\n            'train': False,\n        }\n\n        self.hook('on_test_start', state)\n        for sample in state['iterator']:\n            state['sample'] = sample\n            self.hook('on_test_sample', state)\n\n            def closure():\n                loss, output = state['network'](state['sample'])\n                state['output'] = output\n                state['loss'] = loss\n                self.hook('on_test_forward', state)\n                # to free memory in save_for_backward\n                state['output'] = None\n                state['loss'] = None\n\n            closure()\n            state['t'] += 1\n        self.hook('on_test_end', state)\n        return state"
  },
  {
    "path": "NLQ/2D-TAN/lib/core/eval.py",
    "content": "import json\nimport argparse\nimport numpy as np\nimport pickle as pkl\nfrom terminaltables import AsciiTable\n\nfrom core.config import config, update_config\n\ndef iou(pred, gt): # require pred and gt is numpy\n    assert isinstance(pred, list) and isinstance(gt,list)\n    pred_is_list = isinstance(pred[0],list)\n    gt_is_list = isinstance(gt[0],list)\n    if not pred_is_list: pred = [pred]\n    if not gt_is_list: gt = [gt]\n    pred, gt = np.array(pred), np.array(gt)\n    inter_left = np.maximum(pred[:,0,None], gt[None,:,0])\n    inter_right = np.minimum(pred[:,1,None], gt[None,:,1])\n    inter = np.maximum(0.0, inter_right - inter_left)\n    union_left = np.minimum(pred[:,0,None], gt[None,:,0])\n    union_right = np.maximum(pred[:,1,None], gt[None,:,1])\n    union = np.maximum(0.0, union_right - union_left)\n    overlap = 1.0 * inter / union\n    if not gt_is_list:\n        overlap = overlap[:,0]\n    if not pred_is_list:\n        overlap = overlap[0]\n    return overlap\n\ndef rank(pred, gt):\n    return pred.index(gt) + 1\n\ndef nms(dets, thresh=0.4, top_k=-1):\n    \"\"\"Pure Python NMS baseline.\"\"\"\n    if len(dets) == 0: return []\n    order = np.arange(0,len(dets),1)\n    dets = np.array(dets)\n    x1 = dets[:, 0]\n    x2 = dets[:, 1]\n    lengths = x2 - x1\n    keep = []\n    while order.size > 0:\n        i = order[0]\n        keep.append(i)\n        if len(keep) == top_k:\n            break\n        xx1 = np.maximum(x1[i], x1[order[1:]])\n        xx2 = np.minimum(x2[i], x2[order[1:]])\n        inter = np.maximum(0.0, xx2 - xx1)\n        ovr = inter / (lengths[i] + lengths[order[1:]] - inter)\n        inds = np.where(ovr <= thresh)[0]\n        order = order[inds + 1]\n\n    return dets[keep]\n\ndef eval(segments, data):\n    tious = [float(i) for i in config.TEST.TIOU.split(',')] if isinstance(config.TEST.TIOU,str) else [config.TEST.TIOU]\n    recalls = [int(i) for i in config.TEST.RECALL.split(',')] if isinstance(config.TEST.RECALL,str) else [config.TEST.RECALL]\n\n    eval_result = [[[] for _ in recalls] for _ in tious]\n    max_recall = max(recalls)\n    average_iou = []\n    for seg, dat in zip(segments, data):\n        overlap = iou(seg, [dat['times']])\n        average_iou.append(np.mean(np.sort(overlap[0])[-3:]))\n\n        for i,t in enumerate(tious):\n            for j,r in enumerate(recalls):\n                eval_result[i][j].append((overlap > t)[:r].any())\n    eval_result = np.array(eval_result).mean(axis=-1)\n    miou = np.mean(average_iou)\n\n\n    return eval_result, miou\n\ndef eval_predictions(segments, data, verbose=True, merge_window=False):\n    if merge_window:\n        merge_seg = {}\n        merge_data = {}\n        for seg, dat in zip(segments, data):\n            pair_id = dat['query_uid'] # + '_' + str(dat['query_idx'])\n            if pair_id not in merge_seg.keys(): # new \n                merge_data[pair_id] = {\n                    'video': dat['video'],\n                    'duration': dat['clip_duration'],\n                    'times': dat['times'],\n                    'description': dat['description'],\n                }\n                merge_seg[pair_id] = []\n            offset = dat['window'][0]\n            merge_seg[pair_id].extend([[se[0]+offset, se[1]+offset, se[2]] for se in seg])\n        segments, data = [], []\n        for k in merge_seg.keys():\n            # random.shuffle(merge_seg)\n            segments.append(sorted(merge_seg[k], key=lambda x: x[2], reverse=True))\n            data.append(merge_data[k])\n\n    segments = [nms(seg, thresh=config.TEST.NMS_THRESH, top_k=5).tolist() for seg in segments]\n\n    with open('results.pickle', 'wb') as f:\n        pkl.dump({'prediction':segments,'data':data},f)\n\n    eval_result, miou = eval(segments, data)\n    if verbose:\n        print(display_results(eval_result, miou, ''))\n\n    return eval_result, miou\n\ndef display_results(eval_result, miou, title=None):\n    tious = [float(i) for i in config.TEST.TIOU.split(',')] if isinstance(config.TEST.TIOU,str) else [config.TEST.TIOU]\n    recalls = [int(i) for i in config.TEST.RECALL.split(',')] if isinstance(config.TEST.RECALL,str) else [config.TEST.RECALL]\n\n    display_data = [['Rank@{},mIoU@{}'.format(i,j) for i in recalls for j in tious]+['mIoU']]\n    eval_result = eval_result*100\n    miou = miou*100\n    display_data.append(['{:.02f}'.format(eval_result[j][i]) for i in range(len(recalls)) for j in range(len(tious))]\n                        +['{:.02f}'.format(miou)])\n    table = AsciiTable(display_data, title)\n    for i in range(len(tious)*len(recalls)):\n        table.justify_columns[i] = 'center'\n    return table.table\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description='Train localization network')\n\n    # general\n    parser.add_argument('--cfg', help='experiment configure file name', required=True, type=str)\n    args, rest = parser.parse_known_args()\n\n    # update config\n    update_config(args.cfg)\n\n    parser.add_argument('--verbose', default=False, action=\"store_true\", help='print progress bar')\n    args = parser.parse_args()\n\n    return args\n\ndef reset_config(config, args):\n    if args.verbose:\n        config.VERBOSE = args.verbose\n\nif __name__ == '__main__':\n    args = parse_args()\n    reset_config(config, args)\n    train_data = json.load(open('/data/home2/hacker01/Data/DiDeMo/train_data.json', 'r'))\n    val_data = json.load(open('/data/home2/hacker01/Data/DiDeMo/val_data.json', 'r'))\n\n    moment_frequency_dict = {}\n    for d in train_data:\n        times = [t for t in d['times']]\n        for time in times:\n            time = tuple(time)\n            if time not in moment_frequency_dict.keys():\n                moment_frequency_dict[time] = 0\n            moment_frequency_dict[time] += 1\n\n    prior = sorted(moment_frequency_dict, key=moment_frequency_dict.get, reverse=True)\n    prior = [list(item) for item in prior]\n    prediction = [prior for d in val_data]\n\n    eval_predictions(prediction, val_data)\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/core/utils.py",
    "content": "from __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport os\nimport logging\nimport time\nfrom pathlib import Path\n\nclass AverageMeter(object):\n    \"\"\"Computes and stores the average and current value\"\"\"\n    def __init__(self):\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\ndef create_logger(cfg, cfg_name, tag='train'):\n    root_log_dir = Path(cfg.LOG_DIR)\n    # set up logger\n    if not root_log_dir.exists():\n        print('=> creating {}'.format(root_log_dir))\n        root_log_dir.mkdir()\n\n    dataset = cfg.DATASET.NAME\n    cfg_name = os.path.basename(cfg_name).split('.yaml')[0]\n\n    final_log_dir = root_log_dir / dataset / cfg_name\n\n    print('=> creating {}'.format(final_log_dir))\n    final_log_dir.mkdir(parents=True, exist_ok=True)\n\n    time_str = time.strftime('%Y-%m-%d-%H-%M')\n    log_file = '{}_{}_{}.log'.format(cfg_name, time_str, tag)\n    final_log_file = final_log_dir / log_file\n    head = '%(asctime)-15s %(message)s'\n    logging.basicConfig(filename=str(final_log_file), format=head)\n    logger = logging.getLogger()\n    logger.setLevel(logging.INFO)\n    console = logging.StreamHandler()\n    logging.getLogger('').addHandler(console)\n\n    return logger, str(final_log_dir)\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/datasets/__init__.py",
    "content": "import torch\nimport torch.nn as nn\nfrom core.config import config\n\ndef collate_fn(batch):\n    batch_word_vectors = [b['word_vectors'] for b in batch]\n    batch_txt_mask = [b['txt_mask'] for b in batch]\n    batch_map_gt = [b['map_gt'] for b in batch]\n    batch_anno_idxs = [b['anno_idx'] for b in batch]\n    batch_vis_feats = [b['visual_input'] for b in batch]\n    batch_duration = [b['duration'] for b in batch]\n\n    max_num_clips = max([map_gt.shape[-1] for map_gt in batch_map_gt])\n    padded_batch_map_gt = torch.zeros(len(batch_map_gt), 1, max_num_clips, max_num_clips)\n    for i, map_gt in enumerate(batch_map_gt):\n        num_clips = map_gt.shape[-1]\n        padded_batch_map_gt[i][0,:num_clips,:num_clips] = map_gt\n\n    batch_data = {\n        'batch_anno_idxs': batch_anno_idxs,\n        'batch_word_vectors': nn.utils.rnn.pad_sequence(batch_word_vectors, batch_first=True),\n        'batch_txt_mask': nn.utils.rnn.pad_sequence(batch_txt_mask, batch_first=True),\n        'batch_map_gt': padded_batch_map_gt,\n        'batch_vis_input': nn.utils.rnn.pad_sequence(batch_vis_feats, batch_first=True).float(),\n        'batch_duration': batch_duration,\n    }\n\n    return batch_data\n\ndef average_to_fixed_length(visual_input):\n    num_sample_clips = config.DATASET.NUM_SAMPLE_CLIPS\n    num_clips = visual_input.shape[0]\n    idxs = torch.arange(0, num_sample_clips+1, 1.0)/num_sample_clips*num_clips\n    idxs = torch.min(torch.round(idxs).long(),torch.tensor(num_clips-1))\n    new_visual_input = []\n    for i in range(num_sample_clips):\n        s_idx, e_idx = idxs[i].item(), idxs[i+1].item()\n        if s_idx < e_idx:\n            new_visual_input.append(torch.mean(visual_input[s_idx:e_idx],dim=0))\n        else:\n            new_visual_input.append(visual_input[s_idx])\n    new_visual_input = torch.stack(new_visual_input, dim=0)\n    return new_visual_input\n\nfrom datasets.activitynet import ActivityNet\nfrom datasets.charades import Charades\nfrom datasets.tacos import TACoS\nfrom datasets.ego4d_clip import Ego4DClip\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/datasets/activitynet.py",
    "content": "\"\"\" Dataset loader for the ActivityNet Captions dataset \"\"\"\nimport os\nimport json\n\nimport h5py\nimport torch\nfrom torch import nn\nimport torch.nn.functional as F\nimport torch.utils.data as data\nimport torchtext\n\nfrom . import average_to_fixed_length\nfrom core.eval import iou\nfrom core.config import config\n\nclass ActivityNet(data.Dataset):\n\n    vocab = torchtext.vocab.pretrained_aliases[\"glove.6B.300d\"]()\n    vocab.itos.extend(['<unk>'])\n    vocab.stoi['<unk>'] = vocab.vectors.shape[0]\n    vocab.vectors = torch.cat([vocab.vectors, torch.zeros(1, vocab.dim)], dim=0)\n    word_embedding = nn.Embedding.from_pretrained(vocab.vectors)\n\n    def __init__(self, split):\n        super(ActivityNet, self).__init__()\n\n        self.vis_input_type = config.DATASET.VIS_INPUT_TYPE\n        self.data_dir = config.DATA_DIR\n        self.split = split\n\n        # val_1.json is renamed as val.json, val_2.json is renamed as test.json\n        with open(os.path.join(self.data_dir, '{}.json'.format(split)),'r') as f:\n            annotations = json.load(f)\n        anno_pairs = []\n        for vid, video_anno in annotations.items():\n            duration = video_anno['duration']\n            for timestamp, sentence in zip(video_anno['timestamps'], video_anno['sentences']):\n                if timestamp[0] < timestamp[1]:\n                    anno_pairs.append(\n                        {\n                            'video': vid,\n                            'duration': duration,\n                            'times':[max(timestamp[0],0),min(timestamp[1],duration)],\n                            'description':sentence,\n                        }\n                    )\n        self.annotations = anno_pairs\n\n    def __getitem__(self, index):\n        video_id = self.annotations[index]['video']\n        gt_s_time, gt_e_time = self.annotations[index]['times']\n        sentence = self.annotations[index]['description']\n        duration = self.annotations[index]['duration']\n\n        word_idxs = torch.tensor([self.vocab.stoi.get(w.lower(), 400000) for w in sentence.split()], dtype=torch.long)\n        word_vectors = self.word_embedding(word_idxs)\n\n        visual_input, visual_mask = self.get_video_features(video_id)\n\n        # max_idx = visual_input.shape[0]\n        # gt_s_idx = max(time_to_index(gt_s_time),0)\n        # gt_e_idx = min(time_to_index(gt_e_time),max_idx-1)\n        #\n        # map_gt = torch.zeros(1,max_idx,max_idx)\n        #\n        # max_time = (gt_e_time-gt_s_time)/config.LOSS.MIN_IOU\n        # min_time = (gt_e_time-gt_s_time)*config.LOSS.MIN_IOU\n        # s_idx_s = max(time_to_index(gt_e_time - max_time), 0)\n        # s_idx_e = time_to_index(gt_s_time + min_time)\n        # e_idx_s = time_to_index(gt_e_time - min_time)\n        # e_idx_e = min(time_to_index(gt_s_time + max_time), max_idx-1)\n        #\n        # s_idxs = torch.arange(s_idx_s, s_idx_e+1)\n        # e_idxs = torch.arange(e_idx_s, e_idx_e+1)\n        # s_times = index_to_time(s_idxs.float())\n        # e_times = index_to_time(e_idxs.float()+1)\n        #\n        #\n        # overlaps = iou(torch.stack([s_times[:,None].expand(-1,e_idx_e+1-e_idx_s),\n        #                             e_times[None,:].expand(s_idx_e+1-s_idx_s,-1)],dim=2).view(-1,2).tolist(),\n        #                torch.tensor([gt_s_time, gt_e_time]).tolist()).reshape(s_idxs.shape[0],e_idxs.shape[0])\n        # for s_idx in range(s_idx_s, s_idx_e+1):\n        #     for e_idx in range(e_idx_s, e_idx_e+1):\n        #         map_gt[0,s_idx,e_idx] = overlaps[s_idx-s_idx_s,e_idx-e_idx_s]\n\n        # Time scaled to same size\n        if config.DATASET.NUM_SAMPLE_CLIPS > 0:\n            # visual_input = sample_to_fixed_length(visual_input, random_sampling=True)\n            visual_input = average_to_fixed_length(visual_input)\n            num_clips = config.DATASET.NUM_SAMPLE_CLIPS//config.DATASET.TARGET_STRIDE\n            s_times = torch.arange(0,num_clips).float()*duration/num_clips\n            e_times = torch.arange(1,num_clips+1).float()*duration/num_clips\n            overlaps = iou(torch.stack([s_times[:,None].expand(-1,num_clips),\n                                        e_times[None,:].expand(num_clips,-1)],dim=2).view(-1,2).tolist(),\n                           torch.tensor([gt_s_time, gt_e_time]).tolist()).reshape(num_clips,num_clips)\n\n        # Time unscaled NEED FIXED WINDOW SIZE\n        else:\n            num_clips = visual_input.shape[0]//config.DATASET.TARGET_STRIDE\n            raise NotImplementedError\n            # torch.arange(0,)\n\n        item = {\n            'visual_input': visual_input,\n            'vis_mask': visual_mask,\n            'anno_idx': index,\n            'word_vectors': word_vectors,\n            'duration': duration,\n            'txt_mask': torch.ones(word_vectors.shape[0], 1),\n            'map_gt': torch.from_numpy(overlaps),\n        }\n\n        return item\n\n    def __len__(self):\n        return len(self.annotations)\n\n    def get_video_features(self, vid):\n        assert config.DATASET.VIS_INPUT_TYPE == 'c3d'\n        with h5py.File(os.path.join(self.data_dir, 'sub_activitynet_v1-3.c3d.hdf5'), 'r') as f:\n            features = torch.from_numpy(f[vid]['c3d_features'][:])\n        if config.DATASET.NORMALIZE:\n            features = F.normalize(features,dim=1)\n        vis_mask = torch.ones((features.shape[0], 1))\n        return features, vis_mask"
  },
  {
    "path": "NLQ/2D-TAN/lib/datasets/charades.py",
    "content": "\"\"\" Dataset loader for the Charades-STA dataset \"\"\"\nimport os\nimport csv\n\nimport h5py\nimport numpy as np\nimport torch\nfrom torch import nn\nimport torch.nn.functional as F\nimport torch.utils.data as data\nimport torchtext\n\nfrom . import average_to_fixed_length\nfrom core.eval import iou\nfrom core.config import config\n\nclass Charades(data.Dataset):\n\n    vocab = torchtext.vocab.pretrained_aliases[\"glove.6B.300d\"]()\n    vocab.itos.extend(['<unk>'])\n    vocab.stoi['<unk>'] = vocab.vectors.shape[0]\n    vocab.vectors = torch.cat([vocab.vectors, torch.zeros(1, vocab.dim)], dim=0)\n    word_embedding = nn.Embedding.from_pretrained(vocab.vectors)\n\n    def __init__(self, split):\n        super(Charades, self).__init__()\n\n        self.vis_input_type = config.DATASET.VIS_INPUT_TYPE\n        self.data_dir = config.DATA_DIR\n        self.split = split\n\n        self.durations = {}\n        with open(os.path.join(self.data_dir, 'Charades_v1_{}.csv'.format(split))) as f:\n            reader = csv.DictReader(f)\n            for row in reader:\n                self.durations[row['id']] = float(row['length'])\n\n        anno_file = open(os.path.join(self.data_dir, \"charades_sta_{}.txt\".format(self.split)),'r')\n        annotations = []\n        for line in anno_file:\n            anno, sent = line.split(\"##\")\n            sent = sent.split('.\\n')[0]\n            vid, s_time, e_time = anno.split(\" \")\n            s_time = float(s_time)\n            e_time = min(float(e_time), self.durations[vid])\n            if s_time < e_time:\n                annotations.append({'video':vid, 'times':[s_time, e_time], 'description': sent, 'duration': self.durations[vid]})\n        anno_file.close()\n        self.annotations = annotations\n\n    def __getitem__(self, index):\n        video_id = self.annotations[index]['video']\n        gt_s_time, gt_e_time = self.annotations[index]['times']\n        description = self.annotations[index]['description']\n        duration = self.durations[video_id]\n\n        word_idxs = torch.tensor([self.vocab.stoi.get(w.lower(), 400000) for w in description.split()], dtype=torch.long)\n        word_vectors = self.word_embedding(word_idxs)\n\n        visual_input, visual_mask = self.get_video_features(video_id)\n\n        # Time scaled to fixed size\n        # visual_input = sample_to_fixed_length(visual_input, random_sampling=True)\n        # visual_input = interpolate_to_fixed_length(visual_input)\n        visual_input = average_to_fixed_length(visual_input)\n        num_clips = config.DATASET.NUM_SAMPLE_CLIPS//config.DATASET.TARGET_STRIDE\n        s_times = torch.arange(0,num_clips).float()*duration/num_clips\n        e_times = torch.arange(1,num_clips+1).float()*duration/num_clips\n        overlaps = iou(torch.stack([s_times[:,None].expand(-1,num_clips),\n                                    e_times[None,:].expand(num_clips,-1)],dim=2).view(-1,2).tolist(),\n                       torch.tensor([gt_s_time, gt_e_time]).tolist()).reshape(num_clips,num_clips)\n\n        gt_s_idx = np.argmax(overlaps)//num_clips\n        gt_e_idx = np.argmax(overlaps)%num_clips\n\n        item = {\n            'visual_input': visual_input,\n            'anno_idx': index,\n            'word_vectors': word_vectors,\n            'txt_mask': torch.ones(word_vectors.shape[0], 1),\n            'map_gt': torch.from_numpy(overlaps),\n            'reg_gt': torch.tensor([gt_s_idx, gt_e_idx]),\n            'duration': duration\n        }\n\n        return item\n\n    def __len__(self):\n        return len(self.annotations)\n\n    def get_video_features(self, vid):\n        hdf5_file = h5py.File(os.path.join(self.data_dir, '{}_features.hdf5'.format(self.vis_input_type)), 'r')\n        features = torch.from_numpy(hdf5_file[vid][:]).float()\n        if config.DATASET.NORMALIZE:\n            features = F.normalize(features,dim=1)\n        vis_mask = torch.ones((features.shape[0], 1))\n        return features, vis_mask\n\n    def get_target_weights(self):\n        num_clips = config.DATASET.NUM_SAMPLE_CLIPS // config.DATASET.TARGET_STRIDE\n        pos_count = [0 for _ in range(num_clips)]\n        total_count = [0 for _ in range(num_clips)]\n        pos_weight = torch.zeros(num_clips, num_clips)\n        for anno in self.annotations:\n            video_id = anno['video']\n            gt_s_time, gt_e_time = anno['times']\n            duration = self.durations[video_id]\n            s_times = torch.arange(0, num_clips).float() * duration / num_clips\n            e_times = torch.arange(1, num_clips + 1).float() * duration / num_clips\n            overlaps = iou(torch.stack([s_times[:, None].expand(-1, num_clips),\n                                        e_times[None, :].expand(num_clips, -1)], dim=2).view(-1, 2).tolist(),\n                           torch.tensor([gt_s_time, gt_e_time]).tolist()).reshape(num_clips, num_clips)\n            overlaps[overlaps >= 0.5] = 1\n            overlaps[overlaps < 0.5] = 0\n            for i in range(num_clips):\n                s_idxs = list(range(0, num_clips - i))\n                e_idxs = [s_idx + i for s_idx in s_idxs]\n                pos_count[i] += sum(overlaps[s_idxs, e_idxs])\n                total_count[i] += len(s_idxs)\n\n        for i in range(num_clips):\n            s_idxs = list(range(0, num_clips - i))\n            e_idxs = [s_idx + i for s_idx in s_idxs]\n            # anchor weights\n            # pos_weight[s_idxs,e_idxs] = pos_count[i]/total_count[i]\n            # global weights\n            pos_weight[s_idxs, e_idxs] = sum(pos_count) / sum(total_count)\n\n\n        return pos_weight\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/datasets/ego4d_clip.py",
    "content": "\"\"\" Dataset loader for the Ego4D language dataset \"\"\"\nimport os\nimport json\n\nimport h5py\nimport torch\nfrom torch import nn\nimport torch.nn.functional as F\nimport torch.utils.data as data\nimport torchtext\nimport glob\nimport numpy as np\nimport pandas as pd\n\nfrom . import average_to_fixed_length\nfrom core.eval import iou\nfrom core.config import config\n\nfrom transformers import BertTokenizer, BertModel\n\n\nclass Ego4DClip(data.Dataset):\n    def __init__(self, split, temp=None):\n        super(Ego4DClip, self).__init__()\n\n        self.vis_input_type = config.DATASET.VIS_INPUT_TYPE\n        self.data_dir = config.DATA_DIR\n        self.split = split\n        self.window = config.DATASET.WINDOW\n        self.min_duration = 0 if split=='test' else 3 # discard moments less than 3 seconds\n        stride = int(self.window / 2)  # windows overlap by half\n\n        self.debug = config.DEBUG\n        self.temp = temp\n\n        # load annotations\n        if split == \"train\":\n            anno_path = os.path.join(self.data_dir, \"nlq_train.json\")\n        elif split == \"val\":  # use val set for test\n            anno_path = os.path.join(self.data_dir, \"nlq_val.json\")\n        elif split == \"test\":  # TODO delete this line for final release\n            anno_path = os.path.join(self.data_dir, \"nlq_test_unannotated.json\") # .json\") # _unannotated.json\")\n        with open(anno_path) as f:\n            anno_json = json.load(f)\n\n        anno_pairs = []\n        query_loop_count = 0\n        for video_count, anno_video in enumerate(anno_json[\"videos\"]):\n            video_name = anno_video['video_uid'] # anno_clip[\"clip_uid\"]\n            for anno_clip in anno_video[\"clips\"]:\n                clip_times = [float(anno_clip[\"video_start_sec\"]), float(anno_clip[\"video_end_sec\"])]  #\n                clip_duration = clip_times[1] - clip_times[0]\n                clip_uid =  anno_clip[\"clip_uid\"]\n                # - enumerate annotations\n                for anno in anno_clip[\"annotations\"]:\n                    anno_uid = anno['annotation_uid']\n                    for query_idx, query in enumerate(anno[\"language_queries\"]):\n                        if split == 'test':\n                            query_times = 0,0\n                        else:\n                            query_times = float(query[\"clip_start_sec\"]), float(query[\"clip_end_sec\"])\n                        query_duration = (\n                            query_times[1] - query_times[0]\n                        )  # in terms of seconds\n\n                        if split == \"train\":  # split to windows\n                            if self.min_duration <= query_duration < self.window and (\n                                not self.debug or video_count < 8\n                            ):\n                                # find the new start and end time in the window\n                                first_window_start = np.ceil((query_times[0] - self.window) / stride) * stride\n                                \n                                last_window_start = query_times[1] // stride * stride\n                                # use negative windows for none-action clips\n                                if config.DATASET.NEGWINDOW:\n                                    first_window_start += -stride * 2\n                                    last_window_start += stride * 2\n                                first_window_start = max(0, int(first_window_start))\n                                last_window_start = min(int(clip_duration), int(last_window_start))\n                                # add all windows to annotations\n                                for w_start in range(\n                                    first_window_start,\n                                    last_window_start + stride,\n                                    stride,\n                                ):\n                                    if w_start + self.window > clip_duration + stride:\n                                        continue\n                                    new_anno = {\n                                        \"video\": video_name,\n                                        \"clip_se\": clip_times, # tart\": clip_times[0],\n                                        \"description\": query[\"query\"],\n                                        \"window\": [w_start, w_start + self.window],\n                                        \"clip_duration\": clip_duration,\n                                        \"times\": [\n                                            query_times[0] - w_start,\n                                            query_times[1] - w_start,\n                                        ],\n                                        'query_uid': anno_uid+'_'+query[\"query\"],\n                                    }\n                                    if w_start < clip_duration:\n                                        anno_pairs.append(new_anno)\n\n                        else:  # for val/test set, we need to process all windows\n                            if split == 'val':\n                                if self.min_duration > query_duration or query_duration > self.window or (\n                                    self.debug and video_count > 1 # only for debug\n                                ):\n                                    break\n                            else: # test set does not remove any query\n                                query_loop_count += 1\n                                new_anno = None\n                                if int(clip_duration) - self.window + stride <= stride:\n                                    print('warning:', int(clip_duration), self.window, stride)\n                                for w_start in range(\n                                    0, int(clip_duration) - self.window + stride, stride\n                                ):\n                                    new_anno = {\n                                        \"video\": video_name,\n                                        \"clip\": clip_uid, # used in evaluation server\n                                        \"clip_se\": clip_times,\n                                        \"description\": query[\"query\"],\n                                        \"window\": [w_start, w_start + self.window],\n                                        \"clip_duration\": clip_duration,\n                                        \"times\": [query_times[0], query_times[1]],\n                                        \"query_uid\": anno_uid+'_'+str(query_idx),\n                                        \"query_idx\": query_idx,\n                                    }\n                                    if (\n                                        self.temp is None\n                                        or anno_df[\"query\"].values[i]\n                                        in self.query_template[self.temp]\n                                    ):\n                                        anno_pairs.append(new_anno)\n                                if new_anno is None:\n                                    print('Warning!')\n\n        print(\n            \" -- collected {} samples for dataset {}\".format(\n                len(anno_pairs), (split, self.temp)\n            )\n        )\n        all_query_set = set()\n        for anno in anno_pairs:\n            all_query_set.add(anno['query_uid'])\n        print(\" -- number of queries: {}\".format(len(all_query_set)))\n        print(\" -- query loop count: {}\".format(query_loop_count))\n        self.annotations = anno_pairs\n        self.cache_bert_feature = dict()\n        self.tokenizer = BertTokenizer.from_pretrained(\"bert-base-uncased\")\n        self.bert_model = BertModel.from_pretrained(\"bert-base-uncased\").cuda()\n\n    def __getitem__(self, index):\n        video_id = self.annotations[index][\"video\"]\n        video_duration = self.annotations[index][\"clip_duration\"]\n\n        # -- get start and end time, they should be related to the window\n        gt_s_time, gt_e_time = self.annotations[index][\"times\"]\n        sentence = self.annotations[index][\"description\"]\n        clip_se = self.annotations[index][\"clip_se\"]\n        window_se = self.annotations[index][\"window\"]\n        query_idx = self.annotations[index][\"query_idx\"]\n        clip_uid = self.annotations[index][\"clip\"]\n\n        window_start = window_se[0]\n        window_end = window_se[1]\n        duration = window_end - window_start\n\n        # -- we use bert embedding\n        if sentence not in self.cache_bert_feature:\n            bert_feature = self.cache_text_feature(sentence, rnd=(config.DATASET.TXT_FEATURE=='rnd'))\n            self.cache_bert_feature[sentence] = bert_feature\n        word_vectors = self.cache_bert_feature[sentence]\n\n        visual_input, visual_mask = self.get_video_features(\n            video_id, video_duration, [window_start, window_end], clip_se\n        )\n\n        # -- Time scaled to same size\n        assert config.DATASET.NUM_SAMPLE_CLIPS > 0\n        try:\n            visual_input = average_to_fixed_length(visual_input)\n        except Exception as e:\n            print(\"visual_input:\", visual_input.shape, visual_input)\n            print(e)\n        num_clips = config.DATASET.NUM_SAMPLE_CLIPS // config.DATASET.TARGET_STRIDE\n        s_times = torch.arange(0, num_clips).float() * duration / num_clips\n        e_times = torch.arange(1, num_clips + 1).float() * duration / num_clips\n        overlaps = iou(\n            torch.stack(\n                [\n                    s_times[:, None].expand(-1, num_clips),\n                    e_times[None, :].expand(num_clips, -1),\n                ],\n                dim=2,\n            )\n            .view(-1, 2)\n            .tolist(),\n            torch.tensor([gt_s_time, gt_e_time]).tolist(),\n        ).reshape(num_clips, num_clips)\n\n        item = {\n            \"visual_input\": visual_input,\n            \"vis_mask\": visual_mask,\n            \"anno_idx\": index,\n            \"word_vectors\": word_vectors,\n            \"duration\": self.window,\n            \"txt_mask\": word_vectors[:, 0] != 0,\n            \"map_gt\": torch.from_numpy(overlaps),\n            \"query_idx\": query_idx,\n            \"clip\": clip_uid\n        }\n\n        return item\n\n    def __len__(self):\n        return len(self.annotations)\n\n    def cache_text_feature(self, sentence, rnd=False):\n        sentence = sentence.lower().strip(\"? \\n.\") + \"?\"\n        inputs = self.tokenizer(sentence, return_tensors=\"pt\")\n        inputs = {key: val.cuda() for key, val in inputs.items()}\n        with torch.no_grad():\n            outputs = self.bert_model(**inputs)\n        output = outputs[0].data.detach()\n        cls_feature = output[0] \n        if rnd:\n            cls_feature = torch.randn_like(cls_feature)\n        # print('given input {}, get {}'.format(inputs,output.shape))\n        return cls_feature  # dim:768\n\n    def get_video_features(self, vid, duration, window_se=None, clip_se=None):\n        if \"slowfast\" == config.DATASET.VIS_INPUT_TYPE:\n            fps = 30.0/16 # feature per second. assume\n            feature = torch.load(self.data_dir + \"/sf/{}.pt\".format(vid))\n\n            # features = np.load(self.data_dir + '/2d/{}.npy'.format(vid))\n            features = torch.tensor(feature).float()\n            # duration = features.shape[0]*fps\n            # fps = 1.0 * features.shape[0] / duration\n\n        elif \"slowfast_old\" == config.DATASET.VIS_INPUT_TYPE:\n            fps = 30.0/16 # feature per second. assume\n            feature = torch.load(self.data_dir + \"/sf_old/{}.pt\".format(vid))\n\n            # features = np.load(self.data_dir + '/2d/{}.npy'.format(vid))\n            features = torch.tensor(feature).float()\n            # duration = features.shape[0]*fps\n            # fps = 1.0 * features.shape[0] / duration\n\n        elif \"rnd\" == config.DATASET.VIS_INPUT_TYPE:\n            fps = 30.0/16 # feature per second. assume\n            # if file does not exist, we will create one using randn_like\n            if os.path.exists(self.data_dir + \"/rnd/{}.pt\".format(vid)):\n                feature = torch.load(self.data_dir + \"/rnd/{}.pt\".format(vid))\n            else:\n                feature = torch.load(self.data_dir + \"/sf/{}.pt\".format(vid))\n                feature = torch.randn_like(feature)\n                torch.save(feature, self.data_dir + \"/rnd/{}.pt\".format(vid))\n\n            features = torch.tensor(feature).float()\n        else:\n            raise NotImplementedError()\n\n        if clip_se is not None:\n            feat_start = int(clip_se[0] * fps)\n            feat_end = int(clip_se[1] * fps)\n            features = features[feat_start:feat_end, :]\n            assert (features.shape[0] > 0), \"meet clip feat se {} for video {}: {}, {} in duration: {}\".format(feat_start, feat_end, vid, features.shape, duration, clip_se)\n\n        \"\"\"\n        elif '3d' in config.DATASET.VIS_INPUT_TYPE:\n            fps = 1.5\n            feature_f = self.data_dir + '/3d/{}-*.npy'.format(vid)\n            n_feat = len(glob.glob(feature_f))\n            feature_list = []\n            for i in range(n_feat):\n                feature = np.load(self.data_dir + '/3d/{}-{}.npy'.format(vid,i))\n                feature_list.append(torch.tensor(feature).float())\n            features = torch.cat(feature_list)\n        \"\"\"\n        ## - cut the video into window\n        if window_se is not None:\n            feat_start = int(window_se[0] * fps)\n            feat_end = int(window_se[1] * fps)\n            window_feature = features[feat_start:feat_end, :]\n            assert (\n                window_feature.shape[0] > 0\n            ), \"meet window feat se {} for video {}: {}, {} in duration: {}\".format(\n                (feat_start, feat_end), vid, features.shape, duration, window_se\n            )\n            features = window_feature\n            # print(features.shape)\n\n        # - normalize feature\n        if config.DATASET.NORMALIZE:\n            features = F.normalize(features, dim=1)\n        vis_mask = torch.ones((features.shape[0], 1))\n        return features, vis_mask\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/datasets/tacos.py",
    "content": "\"\"\" Dataset loader for the TACoS dataset \"\"\"\nimport os\nimport json\n\nimport h5py\nimport torch\nfrom torch import nn\nimport torch.nn.functional as F\nimport torch.utils.data as data\nimport torchtext\n\nfrom . import average_to_fixed_length\nfrom core.eval import iou\nfrom core.config import config\n\nclass TACoS(data.Dataset):\n\n    vocab = torchtext.vocab.pretrained_aliases[\"glove.6B.300d\"]()\n    vocab.itos.extend(['<unk>'])\n    vocab.stoi['<unk>'] = vocab.vectors.shape[0]\n    vocab.vectors = torch.cat([vocab.vectors, torch.zeros(1, vocab.dim)], dim=0)\n    word_embedding = nn.Embedding.from_pretrained(vocab.vectors)\n\n    def __init__(self, split):\n        super(TACoS, self).__init__()\n\n        self.vis_input_type = config.DATASET.VIS_INPUT_TYPE\n        self.data_dir = config.DATA_DIR\n        self.split = split\n\n        # val_1.json is renamed as val.json, val_2.json is renamed as test.json\n        with open(os.path.join(self.data_dir, '{}.json'.format(split)),'r') as f:\n            annotations = json.load(f)\n        anno_pairs = []\n        for vid, video_anno in annotations.items():\n            duration = video_anno['num_frames']/video_anno['fps']\n            for timestamp, sentence in zip(video_anno['timestamps'], video_anno['sentences']):\n                if timestamp[0] < timestamp[1]:\n                    anno_pairs.append(\n                        {\n                            'video': vid,\n                            'duration': duration,\n                            'times':[max(timestamp[0]/video_anno['fps'],0),min(timestamp[1]/video_anno['fps'],duration)],\n                            'description':sentence,\n                        }\n                    )\n        self.annotations = anno_pairs\n\n    def __getitem__(self, index):\n        video_id = self.annotations[index]['video']\n        gt_s_time, gt_e_time = self.annotations[index]['times']\n        sentence = self.annotations[index]['description']\n        duration = self.annotations[index]['duration']\n\n        word_idxs = torch.tensor([self.vocab.stoi.get(w.lower(), 400000) for w in sentence.split()], dtype=torch.long)\n        word_vectors = self.word_embedding(word_idxs)\n\n        visual_input, visual_mask = self.get_video_features(video_id)\n\n        # visual_input = sample_to_fixed_length(visual_input, random_sampling=config.DATASET.RANDOM_SAMPLING)\n        visual_input = average_to_fixed_length(visual_input)\n        num_clips = config.DATASET.NUM_SAMPLE_CLIPS//config.DATASET.TARGET_STRIDE\n        s_times = torch.arange(0,num_clips).float()*duration/num_clips\n        e_times = torch.arange(1,num_clips+1).float()*duration/num_clips\n        overlaps = iou(torch.stack([s_times[:,None].expand(-1,num_clips),\n                                    e_times[None,:].expand(num_clips,-1)],dim=2).view(-1,2).tolist(),\n                       torch.tensor([gt_s_time, gt_e_time]).tolist()).reshape(num_clips,num_clips)\n\n        item = {\n            'visual_input': visual_input,\n            'vis_mask': visual_mask,\n            'anno_idx': index,\n            'word_vectors': word_vectors,\n            'duration': duration,\n            'txt_mask': torch.ones(word_vectors.shape[0], 1),\n            'map_gt': torch.from_numpy(overlaps),\n        }\n\n        return item\n\n    def __len__(self):\n        return len(self.annotations)\n\n    def get_video_features(self, vid):\n        assert config.DATASET.VIS_INPUT_TYPE == 'c3d'\n        with h5py.File(os.path.join(self.data_dir, 'tall_c3d_features.hdf5'), 'r') as f:\n            features = torch.from_numpy(f[vid][:])\n        if config.DATASET.NORMALIZE:\n            features = F.normalize(features,dim=1)\n        vis_mask = torch.ones((features.shape[0], 1))\n        return features, vis_mask"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/__init__.py",
    "content": "from models.tan import TAN"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/frame_modules/__init__.py",
    "content": "from .frame_pool import FrameAvgPool, FrameMaxPool\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/frame_modules/frame_pool.py",
    "content": "import torch\nfrom torch import nn\n\nclass FrameAvgPool(nn.Module):\n\n    def __init__(self, cfg):\n        super(FrameAvgPool, self).__init__()\n        input_size = cfg.INPUT_SIZE\n        hidden_size = cfg.HIDDEN_SIZE\n        kernel_size = cfg.KERNEL_SIZE\n        stride = cfg.STRIDE\n        self.vis_conv = nn.Conv1d(input_size, hidden_size, 1, 1)\n        self.avg_pool = nn.AvgPool1d(kernel_size, stride)\n\n    def forward(self, visual_input):\n        vis_h = torch.relu(self.vis_conv(visual_input))\n        vis_h = self.avg_pool(vis_h)\n        return vis_h\n\nclass FrameMaxPool(nn.Module):\n\n    def __init__(self, input_size, hidden_size, stride):\n        super(FrameMaxPool, self).__init__()\n        self.vis_conv = nn.Conv1d(input_size, hidden_size, 1, 1)\n        self.max_pool = nn.MaxPool1d(stride)\n\n    def forward(self, visual_input):\n        vis_h = torch.relu(self.vis_conv(visual_input))\n        vis_h = self.max_pool(vis_h)\n        return vis_h\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/fusion_modules/__init__.py",
    "content": "from .base_fusion import BaseFusion"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/fusion_modules/base_fusion.py",
    "content": "import torch\nfrom torch import nn\nimport torch.nn.functional as F\n\nclass BaseFusion(nn.Module):\n\n    def __init__(self, cfg):\n        super(BaseFusion, self).__init__()\n        self.cfg = cfg\n        hidden_size = cfg.HIDDEN_SIZE\n        txt_input_size = cfg.TXT_INPUT_SIZE\n        txt_hidden_size = cfg.TXT_HIDDEN_SIZE\n        # self.textual_encoder = nn.LSTM(txt_input_size, txt_hidden_size//2 if cfg.LSTM.BIDIRECTIONAL else txt_hidden_size,\n        #                               num_layers=cfg.LSTM.NUM_LAYERS, bidirectional=cfg.LSTM.BIDIRECTIONAL, batch_first=True)\n        self.tex_linear = nn.Linear(txt_hidden_size, hidden_size)\n        self.vis_conv = nn.Conv2d(hidden_size, hidden_size, 1, 1)\n\n    def forward(self, textual_input, textual_mask, map_h, map_mask):\n        # self.textual_encoder.flatten_parameters()\n        # txt_h = self.textual_encoder(textual_input)[0] * textual_mask\n        # txt_h = torch.stack([txt_h[i][torch.sum(mask).long() - 1] for i, mask in enumerate(textual_mask)])\n        txt_h = textual_input[:,0,:] # we take the first vector as language feature\n        txt_h = self.tex_linear(txt_h)[:,:,None,None]\n        map_h = self.vis_conv(map_h)\n        fused_h = F.normalize(txt_h * map_h) * map_mask\n        return fused_h\n\n"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/loss.py",
    "content": "import torch\nimport torch.nn.functional as F\n\ndef bce_rescale_loss(scores, masks, targets, cfg):\n    min_iou, max_iou, bias = cfg.MIN_IOU, cfg.MAX_IOU, cfg.BIAS\n    joint_prob = torch.sigmoid(scores) * masks\n    target_prob = (targets-min_iou)*(1-bias)/(max_iou-min_iou)\n    target_prob[target_prob > 0] += bias\n    target_prob[target_prob > 1] = 1\n    target_prob[target_prob < 0] = 0\n    loss = F.binary_cross_entropy(joint_prob, target_prob, reduction='none') * masks\n    loss_value = torch.sum(loss) / torch.sum(masks)\n    return loss_value, joint_prob"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/map_modules/__init__.py",
    "content": "import torch\nimport torch.nn.functional as F\ndef get_padded_mask_and_weight(*args):\n    if len(args) == 2:\n        mask, conv = args\n        masked_weight = torch.round(F.conv2d(mask.clone().float(), torch.ones(1, 1, *conv.kernel_size).cuda(),\n                                             stride=conv.stride, padding=conv.padding, dilation=conv.dilation))\n    elif len(args) == 5:\n        mask, k, s, p, d = args\n        masked_weight = torch.round(F.conv2d(mask.clone().float(), torch.ones(1, 1, k, k).cuda(), stride=s, padding=p, dilation=d))\n    else:\n        raise NotImplementedError\n\n    masked_weight[masked_weight > 0] = 1 / masked_weight[masked_weight > 0] #conv.kernel_size[0] * conv.kernel_size[1]\n    padded_mask = masked_weight > 0\n\n    return padded_mask, masked_weight\n\nfrom .map_conv import MapConv"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/map_modules/map_conv.py",
    "content": "from torch import nn\nimport torch.nn.functional as F\nfrom models.map_modules import get_padded_mask_and_weight\n\nclass MapConv(nn.Module):\n\n    def __init__(self, cfg):\n        super(MapConv, self).__init__()\n        input_size = cfg.INPUT_SIZE\n        hidden_sizes = cfg.HIDDEN_SIZES\n        kernel_sizes = cfg.KERNEL_SIZES\n        strides = cfg.STRIDES\n        paddings = cfg.PADDINGS\n        dilations = cfg.DILATIONS\n        self.convs = nn.ModuleList()\n        assert len(hidden_sizes) == len(kernel_sizes) \\\n               and len(hidden_sizes) == len(strides) \\\n               and len(hidden_sizes) == len(paddings) \\\n               and len(hidden_sizes) == len(dilations)\n        channel_sizes = [input_size]+hidden_sizes\n        for i, (k, s, p, d) in enumerate(zip(kernel_sizes, strides, paddings, dilations)):\n            self.convs.append(nn.Conv2d(channel_sizes[i], channel_sizes[i+1], k, s, p, d))\n\n    def forward(self, x, mask):\n        padded_mask = mask\n        for i, pred in enumerate(self.convs):\n            x = F.relu(pred(x))\n            padded_mask, masked_weight = get_padded_mask_and_weight(padded_mask, pred)\n            x = x * masked_weight\n        return x"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/prop_modules/__init__.py",
    "content": "from .sparse import SparsePropMaxPool, SparsePropConv\nfrom .dense import PropMaxPool"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/prop_modules/dense.py",
    "content": "from torch import nn\n\nclass PropMaxPool(nn.Module):\n    def __init__(self, cfg):\n        super(PropMaxPool, self).__init__()\n        num_layers = cfg.NUM_LAYERS\n        self.layers = nn.ModuleList(\n            [nn.Identity()]\n            +[nn.MaxPool1d(2, stride=1) for _ in range(num_layers-1)]\n        )\n        self.num_layers = num_layers\n\n    def forward(self, x):\n        batch_size, hidden_size, num_clips = x.shape\n        map_h = x.new_zeros(batch_size, hidden_size, num_clips, num_clips).cuda()\n        map_mask = x.new_zeros(batch_size, 1, num_clips, num_clips).cuda()\n\n        for dig_idx, pool in enumerate(self.layers):\n            x = pool(x)\n            start_idxs = [s_idx for s_idx in range(0, num_clips - dig_idx, 1)]\n            end_idxs = [s_idx + dig_idx for s_idx in start_idxs]\n            map_h[:, :, start_idxs, end_idxs] = x\n            map_mask[:, :, start_idxs, end_idxs] += 1\n\n        return map_h, map_mask"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/prop_modules/sparse.py",
    "content": "from torch import nn\n\nclass SparsePropMaxPool(nn.Module):\n    def __init__(self, cfg):\n        super(SparsePropMaxPool, self).__init__()\n        self.num_scale_layers = cfg.NUM_SCALE_LAYERS\n\n        self.layers = nn.ModuleList()\n\n        for scale_idx, num_layer in enumerate(self.num_scale_layers):\n            scale_layers = nn.ModuleList()\n            first_layer = nn.MaxPool1d(1,1) if scale_idx == 0 else nn.MaxPool1d(3,2)\n            rest_layers = [nn.MaxPool1d(2,1) for _ in range(1, num_layer)]\n            scale_layers.extend([first_layer]+rest_layers)\n            self.layers.append(scale_layers)\n\n    def forward(self, x):\n        map_h_list = []\n        map_mask_list = []\n\n        for scale_idx, scale_layers in enumerate(self.layers):\n            batch_size, hidden_size, num_scale_clips = x.shape\n            num_scale_clips = num_scale_clips//scale_layers[0].stride\n            map_h = x.new_zeros(batch_size, hidden_size, num_scale_clips, num_scale_clips)\n            map_mask = x.new_zeros(batch_size, 1, num_scale_clips, num_scale_clips)\n            for i, layer in enumerate(scale_layers):\n                try:\n                    x = layer(x)\n                except:\n                    pass\n                scale_s_idxs = list(range(0, num_scale_clips - i, 1))\n                scale_e_idxs = [s_idx + i for s_idx in scale_s_idxs]\n                map_h[:,:,scale_s_idxs, scale_e_idxs] = x\n                map_mask[:,:,scale_s_idxs, scale_e_idxs] = 1\n            map_h_list.append(map_h)\n            map_mask_list.append(map_mask)\n\n        ori_map_h, ori_map_mask = self.recover_to_original_map(map_h_list, map_mask_list)\n        return ori_map_h, ori_map_mask\n\n    def recover_to_original_map(self, h_list, mask_list):\n        # resize to original scale\n        batch_size, hidden_size, ori_num_clips, _ = h_list[0].shape\n\n        ori_map_h = h_list[0].new_zeros(batch_size, hidden_size, ori_num_clips, ori_num_clips)\n        ori_map_mask = mask_list[0].new_zeros(batch_size, 1, ori_num_clips, ori_num_clips)\n        acum_layers = 0\n        stride = 1\n        for scale_layers, h, mask in zip(self.layers, h_list, mask_list):\n            num_scale_clips = h.shape[-1]\n            for i, layer in enumerate(scale_layers):\n                stride = stride * layer.stride\n                scale_s_idxs = list(range(0,num_scale_clips-i,1))\n                scale_e_idxs = [s_idx+i for s_idx in scale_s_idxs]\n                ori_s_idxs = list(range(0,ori_num_clips-acum_layers-i*stride,stride))\n                ori_e_idxs = [s_idx+acum_layers+i*stride for s_idx in ori_s_idxs]\n                ori_map_h[:,:, ori_s_idxs, ori_e_idxs] = h[:,:, scale_s_idxs, scale_e_idxs]\n                ori_map_mask[:,:, ori_s_idxs, ori_e_idxs] = 1\n\n            acum_layers += stride * (len(scale_layers)+1)\n\n        return ori_map_h, ori_map_mask\n\nclass SparsePropConv(nn.Module):\n    def __init__(self, cfg):\n        super(SparsePropConv, self).__init__()\n        self.num_scale_layers = cfg.NUM_SCALE_LAYERS\n        self.hidden_size = cfg.HIDDEN_SIZE\n\n        self.layers = nn.ModuleList()\n\n        for scale_idx, num_layer in enumerate(self.num_scale_layers):\n            scale_layers = nn.ModuleList()\n            first_layer = nn.Conv1d(self.hidden_size, self.hidden_size, 1,1) if scale_idx == 0 else nn.Conv1d(self.hidden_size, self.hidden_size, 3, 2)\n            rest_layers = [nn.Conv1d(self.hidden_size, self.hidden_size, 2,1) for _ in range(1, num_layer)]\n            scale_layers.extend([first_layer]+rest_layers)\n            self.layers.append(scale_layers)\n\n    def forward(self, x):\n        map_h_list = []\n        map_mask_list = []\n\n        for scale_idx, scale_layers in enumerate(self.layers):\n            batch_size, hidden_size, num_scale_clips = x.shape\n            num_scale_clips = num_scale_clips//scale_layers[0].stride[0]\n            map_h = x.new_zeros(batch_size, hidden_size, num_scale_clips, num_scale_clips)\n            map_mask = x.new_zeros(batch_size, 1, num_scale_clips, num_scale_clips)\n            for i, layer in enumerate(scale_layers):\n                x = layer(x)\n                scale_s_idxs = list(range(0, num_scale_clips - i, 1))\n                scale_e_idxs = [s_idx + i for s_idx in scale_s_idxs]\n                map_h[:,:,scale_s_idxs, scale_e_idxs] = x\n                map_mask[:,:,scale_s_idxs, scale_e_idxs] = 1\n            map_h_list.append(map_h)\n            map_mask_list.append(map_mask)\n\n\n        ori_map_h, ori_map_mask = self.recover_to_original_map(map_h_list, map_mask_list)\n\n        return ori_map_h, ori_map_mask\n\n    def recover_to_original_map(self, h_list, mask_list):\n        # resize to original scale\n        batch_size, hidden_size, ori_num_clips, _ = h_list[0].shape\n\n        ori_map_h = h_list[0].new_zeros(batch_size, hidden_size, ori_num_clips, ori_num_clips)\n        ori_map_mask = mask_list[0].new_zeros(batch_size, 1, ori_num_clips, ori_num_clips)\n        acum_layers = 0\n        stride = 1\n        for scale_layers, h, mask in zip(self.layers, h_list, mask_list):\n            num_scale_clips = h.shape[-1]\n            for i, layer in enumerate(scale_layers):\n                stride = stride * layer.stride[0]\n                scale_s_idxs = list(range(0,num_scale_clips-i,1))\n                scale_e_idxs = [s_idx+i for s_idx in scale_s_idxs]\n                ori_s_idxs = list(range(0,ori_num_clips-acum_layers-i*stride,stride))\n                ori_e_idxs = [s_idx+acum_layers+i*stride for s_idx in ori_s_idxs]\n                ori_map_h[:,:, ori_s_idxs, ori_e_idxs] = h[:,:, scale_s_idxs, scale_e_idxs]\n                ori_map_mask[:,:, ori_s_idxs, ori_e_idxs] = 1\n\n            acum_layers += stride * (len(scale_layers)+1)\n\n        return ori_map_h, ori_map_mask"
  },
  {
    "path": "NLQ/2D-TAN/lib/models/tan.py",
    "content": "from torch import nn\nfrom core.config import config\nimport models.frame_modules as frame_modules\nimport models.prop_modules as prop_modules\nimport models.map_modules as map_modules\nimport models.fusion_modules as fusion_modules\n\nclass TAN(nn.Module):\n    def __init__(self):\n        super(TAN, self).__init__()\n\n        self.frame_layer = getattr(frame_modules, config.TAN.FRAME_MODULE.NAME)(config.TAN.FRAME_MODULE.PARAMS)\n        self.prop_layer = getattr(prop_modules, config.TAN.PROP_MODULE.NAME)(config.TAN.PROP_MODULE.PARAMS)\n        self.fusion_layer = getattr(fusion_modules, config.TAN.FUSION_MODULE.NAME)(config.TAN.FUSION_MODULE.PARAMS)\n        self.map_layer = getattr(map_modules, config.TAN.MAP_MODULE.NAME)(config.TAN.MAP_MODULE.PARAMS)\n        self.pred_layer = nn.Conv2d(config.TAN.PRED_INPUT_SIZE, 1, 1, 1)\n\n    def forward(self, textual_input, textual_mask, visual_input):\n\n        vis_h = self.frame_layer(visual_input.transpose(1, 2))\n        map_h, map_mask = self.prop_layer(vis_h)\n        fused_h = self.fusion_layer(textual_input, textual_mask, map_h, map_mask)\n        fused_h = self.map_layer(fused_h, map_mask)\n        prediction = self.pred_layer(fused_h) * map_mask\n\n        return prediction, map_mask\n\n    def extract_features(self, textual_input, textual_mask, visual_input):\n        vis_h = self.frame_layer(visual_input.transpose(1, 2))\n        map_h, map_mask = self.prop_layer(vis_h)\n\n        fused_h = self.fusion_layer(textual_input, textual_mask, map_h, map_mask)\n        fused_h = self.map_layer(fused_h, map_mask)\n        prediction = self.pred_layer(fused_h) * map_mask\n\n        return fused_h, prediction, map_mask\n"
  },
  {
    "path": "NLQ/2D-TAN/moment_localization/_init_paths.py",
    "content": "# ------------------------------------------------------------------------------\n# Copyright (c) Microsoft\n# Licensed under the MIT License.\n# Written by Houwen Peng and Zhipeng Zhang\n# Details: import other paths\n# ------------------------------------------------------------------------------\n\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport os.path as osp\nimport sys\n\n\ndef add_path(path):\n    if path not in sys.path:\n        sys.path.insert(0, path)\n\n\nthis_dir = osp.dirname(__file__)\n\nlib_path = osp.join(this_dir, '..', 'lib')\nadd_path(lib_path)"
  },
  {
    "path": "NLQ/2D-TAN/moment_localization/test.py",
    "content": "import os\nimport math\nimport json\nimport argparse\nimport pickle as pkl\n\nfrom tqdm import tqdm\nimport numpy as np\nimport torch\nfrom torch.utils.data import DataLoader\n\nimport _init_paths\nfrom core.engine import Engine\nimport datasets\nimport models\nfrom core.utils import AverageMeter\nfrom core.config import config, update_config\nfrom core.eval import eval_predictions, display_results, eval\nimport models.loss as loss\n\ntorch.manual_seed(0)\ntorch.cuda.manual_seed(0)\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description='Test localization network')\n\n    # general\n    parser.add_argument('--cfg', help='experiment configure file name', required=True, type=str)\n    args, rest = parser.parse_known_args()\n\n    # update config\n    update_config(args.cfg)\n\n    # testing\n    parser.add_argument('--gpus', help='gpus', type=str)\n    parser.add_argument('--workers', help='num of dataloader workers', type=int)\n    parser.add_argument('--dataDir', help='data path', type=str)\n    parser.add_argument('--modelDir', help='model path', type=str)\n    parser.add_argument('--logDir', help='log path', type=str)\n    parser.add_argument('--split', default='val', required=True, choices=['train', 'val', 'test', 'template'], type=str)\n    parser.add_argument('--verbose', default=False, action=\"store_true\", help='print progress bar')\n\n    parser.add_argument('--debug', help='tags shown in log', action='store_true')\n    parser.add_argument('--result', help='result file', type=str, default='test_set_results.pickle')\n    args = parser.parse_args()\n\n    return args\n\ndef reset_config(config, args):\n    if args.gpus:\n        config.GPUS = args.gpus\n    if args.workers:\n        config.WORKERS = args.workers\n    if args.dataDir:\n        config.DATA_DIR = args.dataDir\n    if args.modelDir:\n        config.OUTPUT_DIR = args.modelDir\n    if args.logDir:\n        config.LOG_DIR = args.logDir\n    if args.verbose:\n        config.VERBOSE = args.verbose\n    if args.result:\n        config.RESULT = args.result\n\n\n    if args.debug:\n        config.DEBUG = True\n        print('=============== debug mode ==============')\n\ndef save_scores(scores, data, dataset_name, split):\n    results = {}\n    for i, d in enumerate(data):\n        results[d['video']] = scores[i]\n    pkl.dump(results,open(os.path.join(config.RESULT_DIR, dataset_name, '{}_{}_{}.pkl'.format(config.MODEL.NAME,config.DATASET.VIS_INPUT_TYPE,\n        split)),'wb'))\n\ndef nms(dets, thresh=0.4, top_k=-1):\n    \"\"\"Pure Python NMS baseline.\"\"\"\n    if len(dets) == 0: return []\n    order = np.arange(0,len(dets),1)\n    dets = np.array(dets)\n    x1 = dets[:, 0]\n    x2 = dets[:, 1]\n    lengths = x2 - x1\n    keep = []\n    while order.size > 0:\n        i = order[0]\n        keep.append(i)\n        if len(keep) == top_k:\n            break\n        xx1 = np.maximum(x1[i], x1[order[1:]])\n        xx2 = np.minimum(x2[i], x2[order[1:]])\n        inter = np.maximum(0.0, xx2 - xx1)\n        ovr = inter / (lengths[i] + lengths[order[1:]] - inter)\n        inds = np.where(ovr <= thresh)[0]\n        order = order[inds + 1]\n\n    return dets[keep]\n\ndef post_process(segments, data, verbose=True, merge_window=False, run_eval=True):\n    if merge_window:\n        merge_seg = {}\n        merge_data = {}\n        for seg, dat in zip(segments, data):\n            pair_id = dat['query_uid'] # dat['anno_uid'] + '_' + str(dat['query_idx'])\n            if pair_id not in merge_seg.keys(): # new \n                merge_data[pair_id] = {\n                    'video': dat['video'],\n                    'clip': dat['clip'],\n                    'duration': dat['clip_duration'],\n                    'times': dat['times'],\n                    'description': dat['description'],\n                    'query_idx': dat['query_idx'],\n                }\n                merge_seg[pair_id] = []\n            offset = dat['window'][0]\n            merge_seg[pair_id].extend([[se[0]+offset, se[1]+offset, se[2]] for se in seg])\n        segments, data = [], []\n        for k in merge_seg.keys():\n            segments.append(sorted(merge_seg[k], key=lambda x: x[2], reverse=True))\n            data.append(merge_data[k])\n\n    segments = [nms(seg, thresh=config.TEST.NMS_THRESH, top_k=5).tolist() for seg in segments]\n\n    if run_eval:\n        eval_result, miou = eval(segments, data)\n    else:\n        save_prediction_to_file(config.RESULT, merge_seg, merge_data)\n        print('Prediction result is saved to {}'.format(config.RESULT))\n        eval_result, miou = 0,0\n\n    return eval_result, miou\n\ndef save_prediction_to_file(result_path, predictions, annotations):\n    result_json ={\n        \"version\": \"1.0\",\n        \"challenge\": \"ego4d_nlq_challenge\",\n        \"results\": [],\n    }\n    for k,v in predictions.items():\n        annotation = annotations[k]\n        # print(k,v)\n        # print(annotation)\n        # Predictions per clip_uid and annotation_uid.\n        segment = sorted(v, key=lambda x: x[2], reverse=True)\n        segment = nms(segment, thresh=config.TEST.NMS_THRESH, top_k=5).tolist()\n        result =  {\n            \"clip_uid\": annotation['clip'],\n            \"annotation_uid\": k.split('_')[0],\n            \"query_idx\": annotation['query_idx'],\n            \"predicted_times\": [seg[:2] for seg in segment],\n        }\n        result_json[\"results\"].append(result)\n    # print(result_json)\n    with open(result_path, 'w') as f:\n        json.dump(result_json,f )\n\n     \n\nif __name__ == '__main__':\n    args = parse_args()\n    reset_config(config, args)\n\n    device = (\"cuda\" if torch.cuda.is_available() else \"cpu\" )\n    model = getattr(models, config.MODEL.NAME)()\n    model_checkpoint = torch.load(config.MODEL.CHECKPOINT)\n    model.load_state_dict(model_checkpoint)\n    if torch.cuda.device_count() > 1:\n        print(\"Using\", torch.cuda.device_count(), \"GPUs\")\n        model = torch.nn.DataParallel(model)\n    model  = model.to(device)\n    model.eval()\n\n\n    if args.split=='template':\n        with open(os.path.join(config.DATA_DIR, 'ego4d_nlq_query_template.json'), 'rb') as f:\n            query_template = json.load(f)\n            templates = list(query_template.keys())\n        test_template_datasets = { temp:getattr(datasets, config.DATASET.NAME)('test', temp) for temp in templates}\n        dataloaders = { temp:DataLoader(test_template_datasets[temp],\n                                    batch_size=config.TEST.BATCH_SIZE,\n                                    shuffle=False,\n                                    num_workers=config.WORKERS,\n                                    pin_memory=False,\n                                    collate_fn=datasets.collate_fn) \n                        for temp in templates}\n    test_dataset = getattr(datasets, config.DATASET.NAME)(args.split)\n    dataloader = DataLoader(test_dataset,\n                            batch_size=config.TRAIN.BATCH_SIZE,\n                            shuffle=False,\n                            num_workers=config.WORKERS,\n                            pin_memory=False,\n                            collate_fn=datasets.collate_fn)\n\n    def network(sample):\n        anno_idxs = sample['batch_anno_idxs']\n        textual_input = sample['batch_word_vectors'].cuda()\n        textual_mask = sample['batch_txt_mask'].cuda()\n        visual_input = sample['batch_vis_input'].cuda()\n        map_gt = sample['batch_map_gt'].cuda()\n        duration = sample['batch_duration']\n\n        prediction, map_mask = model(textual_input, textual_mask, visual_input)\n        loss_value, joint_prob = getattr(loss, config.LOSS.NAME)(prediction, map_mask, map_gt, config.LOSS.PARAMS)\n\n        sorted_times = None if model.training else get_proposal_results(joint_prob, duration)\n\n        return loss_value, sorted_times\n\n    '''\n    def get_proposal_results(scores, durations):\n        # assume all valid scores are larger than one\n        out_sorted_times = []\n        for score, duration in zip(scores, durations):\n            T = score.shape[-1]\n            sorted_indexs = np.dstack(np.unravel_index(np.argsort(score.cpu().detach().numpy().ravel())[::-1], (T, T))).tolist()\n            sorted_indexs = np.array([item for item in sorted_indexs[0] if item[0] <= item[1]]).astype(float)\n\n            sorted_indexs[:,1] = sorted_indexs[:,1] + 1\n            sorted_indexs = torch.from_numpy(sorted_indexs).cuda()\n            target_size = config.DATASET.NUM_SAMPLE_CLIPS // config.DATASET.TARGET_STRIDE\n            out_sorted_times.append((sorted_indexs.float() / target_size * duration).tolist())\n\n        return out_sorted_times\n    '''\n\n    def get_proposal_results(scores, durations):\n        # assume all valid scores are larger than one\n        out_sorted_times = []\n        for score, duration in zip(scores, durations):\n            T = score.shape[-1]\n            score_cpu = score.cpu().detach().numpy()\n            sorted_indexs = np.dstack(np.unravel_index(np.argsort(score_cpu.ravel())[::-1], (T, T))).tolist()\n            sorted_indexs = np.array([item for item in sorted_indexs[0] if item[0] <= item[1]]).astype(float)\n            sorted_scores = np.array([score_cpu[0, int(x[0]),int(x[1])] for x in sorted_indexs])\n\n            sorted_indexs[:,1] = sorted_indexs[:,1] + 1\n            sorted_indexs = torch.from_numpy(sorted_indexs).cuda()\n            target_size = config.DATASET.NUM_SAMPLE_CLIPS // config.DATASET.TARGET_STRIDE\n            sorted_time = (sorted_indexs.float() / target_size * duration).tolist()\n            out_sorted_times.append([[t[0], t[1], s] for t, s in zip(sorted_time, sorted_scores)])\n\n        return out_sorted_times\n\n    def on_test_start(state):\n        state['loss_meter'] = AverageMeter()\n        state['sorted_segments_list'] = []\n        state['output'] = []\n        if config.VERBOSE:\n            state['progress_bar'] = tqdm(total=math.ceil(len(test_dataset)/config.TRAIN.BATCH_SIZE))\n\n    def on_test_forward(state):\n        if config.VERBOSE:\n            state['progress_bar'].update(1)\n        state['loss_meter'].update(state['loss'].item(), 1)\n\n        min_idx = min(state['sample']['batch_anno_idxs'])\n        batch_indexs = [idx - min_idx for idx in state['sample']['batch_anno_idxs']]\n        sorted_segments = [state['output'][i] for i in batch_indexs]\n        state['sorted_segments_list'].extend(sorted_segments)\n\n    def on_test_end(state):\n        if config.VERBOSE:\n            state['progress_bar'].close()\n            print()\n\n        annotations = state['iterator'].dataset.annotations # test_dataset.annotations\n        run_eval=args.split!='test'\n        # merge window during test\n        state['Rank@N,mIoU@M'], state['miou'] = post_process(state['sorted_segments_list'], annotations, merge_window=True, run_eval=run_eval)\n\n        if run_eval:\n            loss_message = '\\ntest loss {:.4f}'.format(state['loss_meter'].avg)\n            print(loss_message)\n            state['loss_meter'].reset()\n            test_table = display_results(state['Rank@N,mIoU@M'], state['miou'],\n                                          'performance on testing set')\n            table_message = '\\n'+test_table\n            print(table_message)\n\n        # save_scores(state['sorted_segments_list'], annotations, config.DATASET.NAME, args.split)\n\n\n    engine = Engine()\n    engine.hooks['on_test_start'] = on_test_start\n    engine.hooks['on_test_forward'] = on_test_forward\n    engine.hooks['on_test_end'] = on_test_end\n    engine.test(network,dataloader, args.split)\n    print('Done. For test set, please submit the prediction file to the server for evaluation.')\n"
  },
  {
    "path": "NLQ/2D-TAN/moment_localization/train.py",
    "content": "from __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport _init_paths\nimport os\nimport pprint\nimport argparse\nimport random\nimport numpy as np\nimport torch\nimport torch.backends.cudnn as cudnn\nfrom torch.utils.data import DataLoader\nimport torch.optim as optim\nfrom tqdm import tqdm\nimport datasets\nimport models\nfrom core.config import config, update_config\nfrom core.engine import Engine\nfrom core.utils import AverageMeter\nfrom core import eval\nfrom core.utils import create_logger\nimport models.loss as loss\nimport math\n\n########### fix everything ###########\nseed = 42\ntorch.manual_seed(seed)\ntorch.cuda.manual_seed_all(seed)\ntorch.cuda.manual_seed(seed)\nnp.random.seed(seed)\nrandom.seed(seed)\ntorch.backends.cudnn.deterministic = True\ntorch.backends.cudnn.benchmark = False\n\ntorch.autograd.set_detect_anomaly(True)\ndef parse_args():\n    parser = argparse.ArgumentParser(description='Train localization network')\n\n    # general\n    parser.add_argument('--cfg', help='experiment configure file name', required=True, type=str)\n    args, rest = parser.parse_known_args()\n\n    # update config\n    update_config(args.cfg)\n\n    # training\n    parser.add_argument('--gpus', help='gpus', type=str)\n    parser.add_argument('--workers', help='num of dataloader workers', type=int)\n    parser.add_argument('--dataDir', help='data path', type=str)\n    parser.add_argument('--modelDir', help='model path', type=str)\n    parser.add_argument('--logDir', help='log path', type=str)\n    parser.add_argument('--verbose', default=False, action=\"store_true\", help='print progress bar')\n    parser.add_argument('--tag', help='tags shown in log', type=str)\n    parser.add_argument('--debug', help='debug mode', action='store_true')\n    args = parser.parse_args()\n\n    return args\n\ndef reset_config(config, args):\n    if args.gpus:\n        config.GPUS = args.gpus\n    if args.workers:\n        config.WORKERS = args.workers\n    if args.dataDir:\n        config.DATA_DIR = args.dataDir\n    if args.modelDir:\n        config.MODEL_DIR = args.modelDir\n    if args.logDir:\n        config.LOG_DIR = args.logDir\n    if args.verbose:\n        config.VERBOSE = args.verbose\n    if args.tag:\n        config.TAG = args.tag\n    if args.debug:\n        config.DEBUG = True\n        print('=============== debug mode ==============')\n\n\nif __name__ == '__main__':\n\n    args = parse_args()\n    reset_config(config, args)\n\n    logger, final_output_dir = create_logger(config, args.cfg, config.TAG)\n    logger.info('\\n'+pprint.pformat(args))\n    logger.info('\\n'+pprint.pformat(config))\n\n    # cudnn related setting\n    cudnn.benchmark = config.CUDNN.BENCHMARK\n    torch.backends.cudnn.deterministic = config.CUDNN.DETERMINISTIC\n    torch.backends.cudnn.enabled = config.CUDNN.ENABLED\n\n    dataset_name = config.DATASET.NAME\n    model_name = config.MODEL.NAME\n\n    train_dataset = getattr(datasets, dataset_name)('train')\n    if config.TEST.EVAL_TRAIN:\n        eval_train_dataset = getattr(datasets, dataset_name)('train')\n    if not config.DATASET.NO_VAL:\n        val_dataset = getattr(datasets, dataset_name)('val')\n    test_dataset = getattr(datasets, dataset_name)('test')\n\n    model = getattr(models, model_name)()\n    if config.MODEL.CHECKPOINT and config.TRAIN.CONTINUE:\n        model_checkpoint = torch.load(config.MODEL.CHECKPOINT)\n        model.load_state_dict(model_checkpoint)\n    if torch.cuda.device_count() > 1:\n        print(\"Using\", torch.cuda.device_count(), \"GPUs\")\n        model = torch.nn.DataParallel(model)\n    device = (\"cuda\" if torch.cuda.is_available() else \"cpu\" )\n    model = model.to(device)\n\n    optimizer = optim.Adam(model.parameters(),lr=config.TRAIN.LR, betas=(0.9, 0.999), weight_decay=config.TRAIN.WEIGHT_DECAY)\n    # optimizer = optim.SGD(model.parameters(), lr=config.TRAIN.LR, momentum=0.9, weight_decay=config.TRAIN.WEIGHT_DECAY)\n    scheduler = optim.lr_scheduler.ReduceLROnPlateau(optimizer, factor=config.TRAIN.FACTOR, patience=config.TRAIN.PATIENCE, verbose=config.VERBOSE)\n\n\n    def iterator(split):\n        if split == 'train':\n            dataloader = DataLoader(train_dataset,\n                                    batch_size=config.TRAIN.BATCH_SIZE,\n                                    shuffle=config.TRAIN.SHUFFLE,\n                                    num_workers=config.WORKERS,\n                                    pin_memory=False,\n                                    collate_fn=datasets.collate_fn)\n        elif split == 'val':\n            dataloader = DataLoader(val_dataset,\n                                    batch_size=config.TEST.BATCH_SIZE,\n                                    shuffle=False,\n                                    num_workers=config.WORKERS,\n                                    pin_memory=False,\n                                    collate_fn=datasets.collate_fn)\n        elif split == 'test':\n            dataloader = DataLoader(test_dataset,\n                                    batch_size=config.TEST.BATCH_SIZE,\n                                    shuffle=False,\n                                    num_workers=config.WORKERS,\n                                    pin_memory=False,\n                                    collate_fn=datasets.collate_fn)\n        elif split == 'train_no_shuffle':\n            dataloader = DataLoader(eval_train_dataset,\n                                    batch_size=config.TEST.BATCH_SIZE,\n                                    shuffle=False,\n                                    num_workers=config.WORKERS,\n                                    pin_memory=False,\n                                    collate_fn=datasets.collate_fn)\n        else:\n            raise NotImplementedError\n\n        return dataloader\n\n    def network(sample):\n        anno_idxs = sample['batch_anno_idxs']\n        textual_input = sample['batch_word_vectors'].cuda()\n        textual_mask = sample['batch_txt_mask'].cuda()\n        visual_input = sample['batch_vis_input'].cuda()\n        map_gt = sample['batch_map_gt'].cuda()\n        duration = sample['batch_duration']\n\n        prediction, map_mask = model(textual_input, textual_mask, visual_input)\n        loss_value, joint_prob = getattr(loss, config.LOSS.NAME)(prediction, map_mask, map_gt, config.LOSS.PARAMS)\n\n        sorted_times = None if model.training else get_proposal_results(joint_prob, duration)\n\n        return loss_value, sorted_times\n\n    def get_proposal_results(scores, durations):\n        # assume all valid scores are larger than one\n        out_sorted_times = []\n        for score, duration in zip(scores, durations):\n            T = score.shape[-1]\n            score_cpu = score.cpu().detach().numpy()\n            sorted_indexs = np.dstack(np.unravel_index(np.argsort(score_cpu.ravel())[::-1], (T, T))).tolist()\n            sorted_indexs = np.array([item for item in sorted_indexs[0] if item[0] <= item[1]]).astype(float)\n            sorted_scores = np.array([score_cpu[0, int(x[0]),int(x[1])] for x in sorted_indexs])\n\n            sorted_indexs[:,1] = sorted_indexs[:,1] + 1\n            sorted_indexs = torch.from_numpy(sorted_indexs).cuda()\n            target_size = config.DATASET.NUM_SAMPLE_CLIPS // config.DATASET.TARGET_STRIDE\n            sorted_time = (sorted_indexs.float() / target_size * duration).tolist()\n            out_sorted_times.append([[t[0], t[1], s] for t, s in zip(sorted_time, sorted_scores)])\n\n        return out_sorted_times\n\n    def on_start(state):\n        state['loss_meter'] = AverageMeter()\n        state['test_interval'] = int(len(train_dataset)/config.TRAIN.BATCH_SIZE*config.TEST.INTERVAL)\n        state['t'] = 1\n        model.train()\n        if config.VERBOSE:\n            state['progress_bar'] = tqdm(total=state['test_interval'])\n\n    def on_forward(state):\n        torch.nn.utils.clip_grad_norm_(model.parameters(), 10)\n        state['loss_meter'].update(state['loss'].item(), 1)\n\n    def on_update(state):# Save All\n        if config.VERBOSE:\n            state['progress_bar'].update(1)\n\n        if state['t'] % state['test_interval'] == 0:\n            model.eval()\n            if config.VERBOSE:\n                state['progress_bar'].close()\n\n            loss_message = '\\niter: {} train loss {:.4f}'.format(state['t'], state['loss_meter'].avg)\n            table_message = ''\n            if config.TEST.EVAL_TRAIN:\n                train_state = engine.test(network, iterator('train_no_shuffle'), 'train')\n                train_table = eval.display_results(train_state['Rank@N,mIoU@M'], train_state['miou'],\n                                                   'performance on training set')\n                table_message += '\\n'+ train_table\n            if not config.DATASET.NO_VAL:\n                val_state = engine.test(network, iterator('val'), 'val')\n                state['scheduler'].step(-val_state['loss_meter'].avg)\n                loss_message += ' val loss {:.4f}'.format(val_state['loss_meter'].avg)\n                val_state['loss_meter'].reset()\n                val_table = eval.display_results(val_state['Rank@N,mIoU@M'], val_state['miou'],\n                                                 'performance on validation set')\n                table_message += '\\n'+ val_table\n\n            test_state = engine.test(network, iterator('test'), 'test')\n            loss_message += ' test loss {:.4f}'.format(test_state['loss_meter'].avg)\n            test_state['loss_meter'].reset()\n            test_table = eval.display_results(test_state['Rank@N,mIoU@M'], test_state['miou'],\n                                              'performance on testing set')\n            table_message += '\\n' + test_table\n\n            message = loss_message+table_message+'\\n'\n            logger.info(message)\n\n            saved_model_filename = os.path.join(config.MODEL_DIR,'{}/{}/iter{:06d}-{:.4f}-{:.4f}.pkl'.format(\n                dataset_name, model_name+'_'+config.DATASET.VIS_INPUT_TYPE,\n                state['t'], test_state['Rank@N,mIoU@M'][0,0], test_state['Rank@N,mIoU@M'][0,1]))\n\n            rootfolder1 = os.path.dirname(saved_model_filename)\n            rootfolder2 = os.path.dirname(rootfolder1)\n            rootfolder3 = os.path.dirname(rootfolder2)\n            if not os.path.exists(rootfolder3):\n                print('Make directory %s ...' % rootfolder3)\n                os.mkdir(rootfolder3)\n            if not os.path.exists(rootfolder2):\n                print('Make directory %s ...' % rootfolder2)\n                os.mkdir(rootfolder2)\n            if not os.path.exists(rootfolder1):\n                print('Make directory %s ...' % rootfolder1)\n                os.mkdir(rootfolder1)\n\n            if torch.cuda.device_count() > 1:\n                torch.save(model.module.state_dict(), saved_model_filename)\n            else:\n                torch.save(model.state_dict(), saved_model_filename)\n\n\n            if config.VERBOSE:\n                state['progress_bar'] = tqdm(total=state['test_interval'])\n            model.train()\n            state['loss_meter'].reset()\n\n    def on_end(state):\n        if config.VERBOSE:\n            state['progress_bar'].close()\n\n\n    def on_test_start(state):\n        state['loss_meter'] = AverageMeter()\n        state['sorted_segments_list'] = []\n        if config.VERBOSE:\n            if state['split'] == 'train':\n                state['progress_bar'] = tqdm(total=math.ceil(len(train_dataset)/config.TEST.BATCH_SIZE))\n            elif state['split'] == 'val':\n                state['progress_bar'] = tqdm(total=math.ceil(len(val_dataset)/config.TEST.BATCH_SIZE))\n            elif state['split'] == 'test':\n                state['progress_bar'] = tqdm(total=math.ceil(len(test_dataset)/config.TEST.BATCH_SIZE))\n            else:\n                raise NotImplementedError\n\n    def on_test_forward(state):\n        if config.VERBOSE:\n            state['progress_bar'].update(1)\n        state['loss_meter'].update(state['loss'].item(), 1)\n\n        min_idx = min(state['sample']['batch_anno_idxs'])\n        batch_indexs = [idx - min_idx for idx in state['sample']['batch_anno_idxs']]\n        sorted_segments = [state['output'][i] for i in batch_indexs]\n        state['sorted_segments_list'].extend(sorted_segments)\n\n    def on_test_end(state):\n        annotations = state['iterator'].dataset.annotations\n        merge = (state['split'] != 'train')\n        state['Rank@N,mIoU@M'], state['miou'] = eval.eval_predictions(state['sorted_segments_list'], annotations, verbose=False, merge_window=merge)\n        if config.VERBOSE:\n            state['progress_bar'].close()\n\n    engine = Engine()\n    engine.hooks['on_start'] = on_start\n    engine.hooks['on_forward'] = on_forward\n    engine.hooks['on_update'] = on_update\n    engine.hooks['on_end'] = on_end\n    engine.hooks['on_test_start'] = on_test_start\n    engine.hooks['on_test_forward'] = on_test_forward\n    engine.hooks['on_test_end'] = on_test_end\n    engine.train(network,\n                 iterator('train'),\n                 maxepoch=config.TRAIN.MAX_EPOCH,\n                 optimizer=optimizer,\n                 scheduler=scheduler)\n"
  },
  {
    "path": "NLQ/2D-TAN/notice.md",
    "content": "NOTICES AND INFORMATION\nDo Not Translate or Localize\n\nThis software incorporates material from third parties. Microsoft makes certain\nopen source code available at https://3rdpartysource.microsoft.com, or you may\nsend a check or money order for US $5.00, including the product name, the open\nsource component name, and version number, to:\n\nSource Code Compliance Team\nMicrosoft Corporation\nOne Microsoft Way\nRedmond, WA 98052\nUSA\n\nNotwithstanding any other terms, you may reverse engineer this software to the\nextent required to debug changes to any libraries licensed under the GNU Lesser\nGeneral Public License.\n"
  },
  {
    "path": "NLQ/VSLNet/.gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n*.py,cover\n.hypothesis/\n.pytest_cache/\ncover/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\n.pybuilder/\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n#   For a library or package, you might want to ignore these files since the code is\n#   intended to run in multiple environments; otherwise, check them in:\n# .python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# poetry\n#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.\n#   This is especially recommended for binary packages to ensure reproducibility, and is more\n#   commonly ignored for libraries.\n#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control\n#poetry.lock\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow\n__pypackages__/\n\n# Celery stuff\ncelerybeat-schedule\ncelerybeat.pid\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n\n# pytype static type analyzer\n.pytype/\n\n# Cython debug symbols\ncython_debug/\n\n# PyCharm\n#  JetBrains specific template is maintainted in a separate JetBrains.gitignore that can\n#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore\n#  and can be added to the global gitignore or merged into this file.  For a more nuclear\n#  option (not recommended) you can uncomment the following to ignore the entire idea folder.\n#.idea/\n"
  },
  {
    "path": "NLQ/VSLNet/README.md",
    "content": "# Span-based Localizing Network for Natural Language Video Localization\n\nThis repository adapts the *PyTorch* implementation of the **VSLNet** baseline for the Ego4D: Natural Language\nQueries (NLQ) task ([ArXiv][arxiv_link], [webpage][ego4d_page]).\nThe model is based on the paper \"Span-based Localizing Network for Natural Language Video \nLocalization\" (ACL 2020, long paper, [ACL](vslnet_acl), \n[ArXiv][vslnet_arxiv], [code][vslnet_code]).\n\n\n## Prerequisites\n\nThis repository is based off [VSLNet][vslnet_code]. This has additional support for SLURM scheduling.\n\n### Environment setup\n\nIn a pre-existing conda environment or pyenv:\n```\npip install -r requirements.txt\n```\n\n### Data\n\n```\npython3.9 -m nltk.downloader punkt\n```\n\n## Preparation\n\n### Dataset \n\nDownload the dataset from the [official webpage][ego4d_page] and place them\nin `data/` folder.\n\nRun the preprocessing script using:\n\n```bash\npython utils/prepare_ego4d_dataset.py \\\n    --input_train_split data/nlq_train.json \\\n    --input_val_split data/nlq_val.json \\\n    --input_test_split data/nlq_test_unannotated.json \\\n    --video_feature_read_path data/features/nlq_official_v1/video_features/ \\\n    --clip_feature_save_path data/features/nlq_official_v1/official \\\n    --output_save_path data/dataset/nlq_official_v1\n```\n\nThis creates JSON files in `data/dataset/nlq_official_v1` that can be used for training and evaluating the VSLNet baseline model.\n\n\n### Video features\n\nDownload the official video features released from [official webpage][ego4d_page] and place them in `data/features/nlq_official_v1/video_features/` folder.\n\n\n## Quick Start\n\n**Train** and **Test**\n\n```shell\n# To train the model.\npython main.py \\\n    --task nlq_official_v1 \\\n    --predictor bert \\\n    --dim 128 \\\n    --mode train \\\n    --video_feature_dim 2304 \\\n    --max_pos_len 128 \\\n    --epochs 200 \\\n    --fv official \\\n    --num_workers 64 \\\n    --model_dir checkpoints/ \\\n    --eval_gt_json \"data/nlq_val.json\" \\\n    --log_to_tensoboard \"baseline\"\n\n\n# To predict on test set.\npython main.py \\\n    --task nlq_official_v1 \\\n    --predictor bert \\\n    --mode test \\\n    --video_feature_dim 2304 \\\n    --max_pos_len 128 \\\n    --fv official \\\n    --model_dir checkpoints/\n\n\n# To evaluate predictions using official evaluation script.\nPRED_FILE=\"checkpoints/vslnet_nlq_official_v1_official_512_bert/model\"\npython utils/evaluate_ego4d_nlq.py \\\n    --ground_truth_json data/nlq_val.json \\\n    --model_prediction_json ${PRED_FILE}/vslnet_0_357_preds.json \\\n    --thresholds 0.3 0.5 \\\n    --topK 1 3 5\n```\n\n### SLURM\n\nWe support scheduling with a SLURM cluster with the [submit][submitit_library]\nlibrary.  Please provide the flags: `--slurm`, `--slurm_partition <str>` and\n`--slurm_timeout_min <int>` to schedule with SLURM. Please provide these flags\nto `main.py`.\n\n### Filter 0s Queries\n\nThere are queries that are of duration 0s. This is an artifact of the\nannotation data. This affects ~14% of the data. You can filter these out via\nappending `--remove_empty_queries_from` to `main.py`.\n\n### Tensorboard\n\nTensorboard will log to loss and validation metrics to `--tb_log_dir`. Losses\nwill be logged every `--tb_log_freq`, which defaults to every iteration. You can specify the name of the log (for multiple logs) with\n`--log_to_tensorboard`.\n\nBy default, tensorboard will not be logged unless a parameter to `--log_to_tensorboard` is provided.\n\n## Results\n\nSee the main NLQ [README.md][nlq_readme] to compare the performance of all available baselines.\n\n\n## Citation\n\nIf you use the natural language queries (NLQ) dataset, please cite our Ego4D work:\n\n```\n@article{Ego4D2021,\n  author={Grauman, Kristen and Westbury, Andrew and Byrne, Eugene and Chavis, Zachary and Furnari, Antonino and Girdhar, Rohit and Hamburger, Jackson and Jiang, Hao and Liu, Miao and Liu, Xingyu and Martin, Miguel and Nagarajan, Tushar and Radosavovic, Ilija and Ramakrishnan, Santhosh Kumar and Ryan, Fiona and Sharma, Jayant and Wray, Michael and Xu, Mengmeng and Xu, Eric Zhongcong and Zhao, Chen and Bansal, Siddhant and Batra, Dhruv and Cartillier, Vincent and Crane, Sean and Do, Tien and Doulaty, Morrie and Erapalli, Akshay and Feichtenhofer, Christoph and Fragomeni, Adriano and Fu, Qichen and Fuegen, Christian and Gebreselasie, Abrham and Gonzalez, Cristina and Hillis, James and Huang, Xuhua and Huang, Yifei and Jia, Wenqi and Khoo, Weslie and Kolar, Jachym and Kottur, Satwik and Kumar, Anurag and Landini, Federico and Li, Chao and Li, Yanghao and Li, Zhenqiang and Mangalam, Karttikeya and Modhugu, Raghava and Munro, Jonathan and Murrell, Tullie and Nishiyasu, Takumi and Price, Will and Puentes, Paola Ruiz and Ramazanova, Merey and Sari, Leda and Somasundaram, Kiran and Southerland, Audrey and Sugano, Yusuke and Tao, Ruijie and Vo, Minh and Wang, Yuchen and Wu, Xindi and Yagi, Takuma and Zhu, Yunyi and Arbelaez, Pablo and Crandall, David and Damen, Dima and Farinella, Giovanni Maria and Ghanem, Bernard and Ithapu, Vamsi Krishna and Jawahar, C. V. and Joo, Hanbyul and Kitani, Kris and Li, Haizhou and Newcombe, Richard and Oliva, Aude and Park, Hyun Soo and Rehg, James M. and Sato, Yoichi and Shi, Jianbo and Shou, Mike Zheng and Torralba, Antonio and Torresani, Lorenzo and Yan, Mingfei and Malik, Jitendra},\n  title     = {Ego4D: Around the {W}orld in 3,000 {H}ours of {E}gocentric {V}ideo},\n  journal   = {CoRR},\n  volume    = {abs/2110.07058},\n  year      = {2021},\n  url       = {https://arxiv.org/abs/2110.07058},\n  eprinttype = {arXiv},\n  eprint    = {2110.07058}\n}\n```\n\nIf you are using this baseline, please also cite the original work:\n\n```\n@inproceedings{zhang2020span,\n    title = \"Span-based Localizing Network for Natural Language Video Localization\",\n    author = \"Zhang, Hao  and Sun, Aixin  and Jing, Wei  and Zhou, Joey Tianyi\",\n    booktitle = \"Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics\",\n    month = jul,\n    year = \"2020\",\n    address = \"Online\",\n    publisher = \"Association for Computational Linguistics\",\n    url = \"https://www.aclweb.org/anthology/2020.acl-main.585\",\n    pages = \"6543--6554\"\n}\n```\n\n[arxiv_link]:https://arxiv.org/abs/2110.07058 \n[ego4d_page]: https://ego4d-data.org/\n[vslnet_arxiv]: https://arxiv.org/abs/2004.13931\n[vslnet_acl]: https://www.aclweb.org/anthology/2020.acl-main.585.pdf\n[vslnet_code]: https://github.com/IsaacChanghau/VSLNet\n[nlq_readme]:./../README.md\n[submitit_library]: https://github.com/facebookincubator/submitit\n"
  },
  {
    "path": "NLQ/VSLNet/main.py",
    "content": "\"\"\"Main script to train/test models for Ego4D NLQ dataset.\n\"\"\"\nimport argparse\nimport os\n\nimport numpy as np\nimport options\nimport torch\nimport torch.nn as nn\nimport submitit\nfrom torch.utils.tensorboard.writer import SummaryWriter\nfrom model.VSLNet import build_optimizer_and_scheduler, VSLNet\nfrom tqdm import tqdm\nfrom utils.data_gen import gen_or_load_dataset\nfrom utils.data_loader import get_test_loader, get_train_loader\nfrom utils.data_util import load_json, load_video_features, save_json\nfrom utils.runner_utils import (\n    convert_length_to_mask,\n    eval_test,\n    filter_checkpoints,\n    get_last_checkpoint,\n    set_th_config,\n)\n\n\ndef main(configs, parser):\n    print(f\"Running with {configs}\", flush=True)\n\n    # set tensorflow configs\n    set_th_config(configs.seed)\n\n    # prepare or load dataset\n    dataset = gen_or_load_dataset(configs)\n    configs.char_size = dataset.get(\"n_chars\", -1)\n    configs.word_size = dataset.get(\"n_words\", -1)\n\n    # get train and test loader\n    visual_features = load_video_features(\n        os.path.join(\"data\", \"features\", configs.task, configs.fv), configs.max_pos_len\n    )\n    # If video agnostic, randomize the video features.\n    if configs.video_agnostic:\n        visual_features = {\n            key: np.random.rand(*val.shape) for key, val in visual_features.items()\n        }\n    train_loader = get_train_loader(\n        dataset=dataset[\"train_set\"], video_features=visual_features, configs=configs\n    )\n    val_loader = (\n        None\n        if dataset[\"val_set\"] is None\n        else get_test_loader(dataset[\"val_set\"], visual_features, configs)\n    )\n    test_loader = get_test_loader(\n        dataset=dataset[\"test_set\"], video_features=visual_features, configs=configs\n    )\n    configs.num_train_steps = len(train_loader) * configs.epochs\n    num_train_batches = len(train_loader)\n\n    # Device configuration\n    cuda_str = \"cuda\" if configs.gpu_idx is None else \"cuda:{}\".format(configs.gpu_idx)\n    device = torch.device(cuda_str if torch.cuda.is_available() else \"cpu\")\n    print(f\"Using device={device}\")\n\n    # create model dir\n    home_dir = os.path.join(\n        configs.model_dir,\n        \"_\".join(\n            [\n                configs.model_name,\n                configs.task,\n                configs.fv,\n                str(configs.max_pos_len),\n                configs.predictor,\n            ]\n        ),\n    )\n    if configs.suffix is not None:\n        home_dir = home_dir + \"_\" + configs.suffix\n    model_dir = os.path.join(home_dir, \"model\")\n\n    writer = None\n    if configs.log_to_tensorboard is not None:\n        log_dir = os.path.join(configs.tb_log_dir, configs.log_to_tensorboard)\n        os.makedirs(log_dir, exist_ok=True)\n        print(f\"Writing to tensorboard: {log_dir}\")\n        writer = SummaryWriter(log_dir=log_dir)\n\n    # train and test\n    if configs.mode.lower() == \"train\":\n        if not os.path.exists(model_dir):\n            os.makedirs(model_dir)\n        eval_period = num_train_batches // 2\n        save_json(\n            vars(configs),\n            os.path.join(model_dir, \"configs.json\"),\n            sort_keys=True,\n            save_pretty=True,\n        )\n        # build model\n        model = VSLNet(\n            configs=configs, word_vectors=dataset.get(\"word_vector\", None)\n        ).to(device)\n        optimizer, scheduler = build_optimizer_and_scheduler(model, configs=configs)\n        # start training\n        best_metric = -1.0\n        score_writer = open(\n            os.path.join(model_dir, \"eval_results.txt\"), mode=\"w\", encoding=\"utf-8\"\n        )\n        print(\"start training...\", flush=True)\n        global_step = 0\n        for epoch in range(configs.epochs):\n            model.train()\n            for data in tqdm(\n                train_loader,\n                total=num_train_batches,\n                desc=\"Epoch %3d / %3d\" % (epoch + 1, configs.epochs),\n            ):\n                global_step += 1\n                (\n                    _,\n                    vfeats,\n                    vfeat_lens,\n                    word_ids,\n                    char_ids,\n                    s_labels,\n                    e_labels,\n                    h_labels,\n                ) = data\n                # prepare features\n                vfeats, vfeat_lens = vfeats.to(device), vfeat_lens.to(device)\n                s_labels, e_labels, h_labels = (\n                    s_labels.to(device),\n                    e_labels.to(device),\n                    h_labels.to(device),\n                )\n                if configs.predictor == \"bert\":\n                    word_ids = {key: val.to(device) for key, val in word_ids.items()}\n                    # generate mask\n                    query_mask = (\n                        (\n                            torch.zeros_like(word_ids[\"input_ids\"])\n                            != word_ids[\"input_ids\"]\n                        )\n                        .float()\n                        .to(device)\n                    )\n                else:\n                    word_ids, char_ids = word_ids.to(device), char_ids.to(device)\n                    # generate mask\n                    query_mask = (\n                        (torch.zeros_like(word_ids) != word_ids).float().to(device)\n                    )\n                # generate mask\n                video_mask = convert_length_to_mask(vfeat_lens).to(device)\n                # compute logits\n                h_score, start_logits, end_logits = model(\n                    word_ids, char_ids, vfeats, video_mask, query_mask\n                )\n                # compute loss\n                highlight_loss = model.compute_highlight_loss(\n                    h_score, h_labels, video_mask\n                )\n                loc_loss = model.compute_loss(\n                    start_logits, end_logits, s_labels, e_labels\n                )\n                total_loss = loc_loss + configs.highlight_lambda * highlight_loss\n                # compute and apply gradients\n                optimizer.zero_grad()\n                total_loss.backward()\n                nn.utils.clip_grad_norm_(\n                    model.parameters(), configs.clip_norm\n                )  # clip gradient\n                optimizer.step()\n                scheduler.step()\n                if writer is not None and global_step % configs.tb_log_freq == 0:\n                    writer.add_scalar(\"Loss/Total\", total_loss.detach().cpu(), global_step)\n                    writer.add_scalar(\"Loss/Loc\", loc_loss.detach().cpu(), global_step)\n                    writer.add_scalar(\"Loss/Highlight\", highlight_loss.detach().cpu(), global_step)\n                    writer.add_scalar(\"Loss/Highlight (*lambda)\", (configs.highlight_lambda * highlight_loss.detach().cpu()), global_step)\n                    writer.add_scalar(\"LR\", optimizer.param_groups[0][\"lr\"], global_step)\n\n                # evaluate\n                if (\n                    global_step % eval_period == 0\n                    or global_step % num_train_batches == 0\n                ):\n                    model.eval()\n                    print(\n                        f\"\\nEpoch: {epoch + 1:2d} | Step: {global_step:5d}\", flush=True\n                    )\n                    result_save_path = os.path.join(\n                        model_dir,\n                        f\"{configs.model_name}_{epoch}_{global_step}_preds.json\",\n                    )\n                    # Evaluate on val, keep the top 3 checkpoints.\n                    results, mIoU, (score_str, score_dict) = eval_test(\n                        model=model,\n                        data_loader=val_loader,\n                        device=device,\n                        mode=\"val\",\n                        epoch=epoch + 1,\n                        global_step=global_step,\n                        gt_json_path=configs.eval_gt_json,\n                        result_save_path=result_save_path,\n                    )\n                    print(score_str, flush=True)\n                    if writer is not None:\n                        for name, value in score_dict.items():\n                            kk = name.replace(\"\\n\", \" \")\n                            writer.add_scalar(f\"Val/{kk}\", value, global_step)\n\n                    score_writer.write(score_str)\n                    score_writer.flush()\n                    # Recall@1, 0.3 IoU overlap --> best metric.\n                    if results[0][0] >= best_metric:\n                        best_metric = results[0][0]\n                        torch.save(\n                            model.state_dict(),\n                            os.path.join(\n                                model_dir,\n                                \"{}_{}.t7\".format(configs.model_name, global_step),\n                            ),\n                        )\n                        # only keep the top-3 model checkpoints\n                        filter_checkpoints(model_dir, suffix=\"t7\", max_to_keep=3)\n                    model.train()\n            \n        score_writer.close()\n\n    elif configs.mode.lower() == \"test\":\n        if not os.path.exists(model_dir):\n            raise ValueError(\"No pre-trained weights exist\")\n        # load previous configs\n        pre_configs = load_json(os.path.join(model_dir, \"configs.json\"))\n        parser.set_defaults(**pre_configs)\n        configs = parser.parse_args()\n        # build model\n        model = VSLNet(\n            configs=configs, word_vectors=dataset.get(\"word_vector\", None)\n        ).to(device)\n\n        # get last checkpoint file\n        filename = get_last_checkpoint(model_dir, suffix=\"t7\")\n        model.load_state_dict(torch.load(filename))\n        model.eval()\n        result_save_path = filename.replace(\".t7\", \"_test_result.json\")\n        results, mIoU, score_str = eval_test(\n            model=model,\n            data_loader=test_loader,\n            device=device,\n            mode=\"test\",\n            result_save_path=result_save_path,\n        )\n        print(score_str, flush=True)\n\n\ndef create_executor(configs):\n    executor = submitit.AutoExecutor(folder=configs.slurm_log_folder)\n\n    executor.update_parameters(\n        timeout_min=configs.slurm_timeout_min,\n        constraint=configs.slurm_constraint,\n        slurm_partition=configs.slurm_partition,\n        gpus_per_node=configs.slurm_gpus,\n        cpus_per_task=configs.slurm_cpus,\n    )\n    return executor\n\n\nif __name__ == \"__main__\":\n    configs, parser = options.read_command_line()\n    if not configs.slurm:\n        main(configs, parser)\n    else:\n        executor = create_executor(configs)\n\n        job = executor.submit(main, configs, parser)\n        print(\"job=\", job.job_id)\n\n        # wait for it\n        if configs.slurm_wait:\n            job.result()\n"
  },
  {
    "path": "NLQ/VSLNet/model/VSLNet.py",
    "content": "\"\"\"VSLNet Baseline for Ego4D Episodic Memory -- Natural Language Queries.\n\"\"\"\nimport torch\nimport torch.nn as nn\nfrom transformers import AdamW, get_linear_schedule_with_warmup\n\nfrom model.layers import (\n    Embedding,\n    VisualProjection,\n    FeatureEncoder,\n    CQAttention,\n    CQConcatenate,\n    ConditionedPredictor,\n    HighLightLayer,\n    BertEmbedding,\n)\n\n\ndef build_optimizer_and_scheduler(model, configs):\n    no_decay = [\n        \"bias\",\n        \"layer_norm\",\n        \"LayerNorm\",\n    ]  # no decay for parameters of layer norm and bias\n    optimizer_grouped_parameters = [\n        {\n            \"params\": [\n                p\n                for n, p in model.named_parameters()\n                if not any(nd in n for nd in no_decay)\n            ],\n            \"weight_decay\": 0.01,\n        },\n        {\n            \"params\": [\n                p\n                for n, p in model.named_parameters()\n                if any(nd in n for nd in no_decay)\n            ],\n            \"weight_decay\": 0.0,\n        },\n    ]\n    optimizer = AdamW(optimizer_grouped_parameters, lr=configs.init_lr)\n    scheduler = get_linear_schedule_with_warmup(\n        optimizer,\n        configs.num_train_steps * configs.warmup_proportion,\n        configs.num_train_steps,\n    )\n    return optimizer, scheduler\n\n\nclass VSLNet(nn.Module):\n    def __init__(self, configs, word_vectors):\n        super(VSLNet, self).__init__()\n        self.configs = configs\n        self.video_affine = VisualProjection(\n            visual_dim=configs.video_feature_dim,\n            dim=configs.dim,\n            drop_rate=configs.drop_rate,\n        )\n        self.feature_encoder = FeatureEncoder(\n            dim=configs.dim,\n            num_heads=configs.num_heads,\n            kernel_size=7,\n            num_layers=4,\n            max_pos_len=configs.max_pos_len,\n            drop_rate=configs.drop_rate,\n        )\n        # video and query fusion\n        self.cq_attention = CQAttention(dim=configs.dim, drop_rate=configs.drop_rate)\n        self.cq_concat = CQConcatenate(dim=configs.dim)\n        # query-guided highlighting\n        self.highlight_layer = HighLightLayer(dim=configs.dim)\n        # conditioned predictor\n        self.predictor = ConditionedPredictor(\n            dim=configs.dim,\n            num_heads=configs.num_heads,\n            drop_rate=configs.drop_rate,\n            max_pos_len=configs.max_pos_len,\n            predictor=configs.predictor,\n        )\n\n        # If pretrained transformer, initialize_parameters and load.\n        if configs.predictor == \"bert\":\n            # Project back from BERT to dim.\n            self.query_affine = nn.Linear(768, configs.dim)\n            # init parameters\n            self.init_parameters()\n            self.embedding_net = BertEmbedding(configs.text_agnostic)\n        else:\n            self.embedding_net = Embedding(\n                num_words=configs.word_size,\n                num_chars=configs.char_size,\n                out_dim=configs.dim,\n                word_dim=configs.word_dim,\n                char_dim=configs.char_dim,\n                word_vectors=word_vectors,\n                drop_rate=configs.drop_rate,\n            )\n            # init parameters\n            self.init_parameters()\n\n    def init_parameters(self):\n        def init_weights(m):\n            if (\n                isinstance(m, nn.Conv2d)\n                or isinstance(m, nn.Conv1d)\n                or isinstance(m, nn.Linear)\n            ):\n                torch.nn.init.xavier_uniform_(m.weight)\n                if m.bias is not None:\n                    torch.nn.init.zeros_(m.bias)\n            elif isinstance(m, nn.LSTM):\n                m.reset_parameters()\n\n        self.apply(init_weights)\n\n    def forward(self, word_ids, char_ids, video_features, v_mask, q_mask):\n        video_features = self.video_affine(video_features)\n        if self.configs.predictor == \"bert\":\n            query_features = self.embedding_net(word_ids)\n            query_features = self.query_affine(query_features)\n        else:\n            query_features = self.embedding_net(word_ids, char_ids)\n\n        query_features = self.feature_encoder(query_features, mask=q_mask)\n        video_features = self.feature_encoder(video_features, mask=v_mask)\n        features = self.cq_attention(video_features, query_features, v_mask, q_mask)\n        features = self.cq_concat(features, query_features, q_mask)\n        h_score = self.highlight_layer(features, v_mask)\n        features = features * h_score.unsqueeze(2)\n        start_logits, end_logits = self.predictor(features, mask=v_mask)\n        return h_score, start_logits, end_logits\n\n    def extract_index(self, start_logits, end_logits):\n        return self.predictor.extract_index(\n            start_logits=start_logits, end_logits=end_logits\n        )\n\n    def compute_highlight_loss(self, scores, labels, mask):\n        return self.highlight_layer.compute_loss(\n            scores=scores, labels=labels, mask=mask\n        )\n\n    def compute_loss(self, start_logits, end_logits, start_labels, end_labels):\n        return self.predictor.compute_cross_entropy_loss(\n            start_logits=start_logits,\n            end_logits=end_logits,\n            start_labels=start_labels,\n            end_labels=end_labels,\n        )\n"
  },
  {
    "path": "NLQ/VSLNet/model/__init__.py",
    "content": ""
  },
  {
    "path": "NLQ/VSLNet/model/layers.py",
    "content": "\"\"\"\nLayers to construct the VSLNet model.\n\"\"\"\nimport math\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\n\ndef mask_logits(inputs, mask, mask_value=-1e30):\n    mask = mask.type(torch.float32)\n    return inputs + (1.0 - mask) * mask_value\n\n\nclass Conv1D(nn.Module):\n    def __init__(self, in_dim, out_dim, kernel_size=1, stride=1, padding=0, bias=True):\n        super(Conv1D, self).__init__()\n        self.conv1d = nn.Conv1d(\n            in_channels=in_dim,\n            out_channels=out_dim,\n            kernel_size=kernel_size,\n            padding=padding,\n            stride=stride,\n            bias=bias,\n        )\n\n    def forward(self, x):\n        # suppose all the input with shape (batch_size, seq_len, dim)\n        x = x.transpose(1, 2)  # (batch_size, dim, seq_len)\n        x = self.conv1d(x)\n        return x.transpose(1, 2)  # (batch_size, seq_len, dim)\n\n\nclass WordEmbedding(nn.Module):\n    def __init__(self, num_words, word_dim, drop_rate, word_vectors=None):\n        super(WordEmbedding, self).__init__()\n        self.is_pretrained = False if word_vectors is None else True\n        if self.is_pretrained:\n            self.pad_vec = nn.Parameter(\n                torch.zeros(size=(1, word_dim), dtype=torch.float32),\n                requires_grad=False,\n            )\n            unk_vec = torch.empty(\n                size=(1, word_dim), requires_grad=True, dtype=torch.float32\n            )\n            nn.init.xavier_uniform_(unk_vec)\n            self.unk_vec = nn.Parameter(unk_vec, requires_grad=True)\n            self.glove_vec = nn.Parameter(\n                torch.tensor(word_vectors, dtype=torch.float32), requires_grad=False\n            )\n        else:\n            self.word_emb = nn.Embedding(num_words, word_dim, padding_idx=0)\n        self.dropout = nn.Dropout(p=drop_rate)\n\n    def forward(self, word_ids):\n        if self.is_pretrained:\n            word_emb = F.embedding(\n                word_ids,\n                torch.cat([self.pad_vec, self.unk_vec, self.glove_vec], dim=0),\n                padding_idx=0,\n            )\n        else:\n            word_emb = self.word_emb(word_ids)\n        return self.dropout(word_emb)\n\n\nclass CharacterEmbedding(nn.Module):\n    def __init__(self, num_chars, char_dim, drop_rate):\n        super(CharacterEmbedding, self).__init__()\n        self.char_emb = nn.Embedding(num_chars, char_dim, padding_idx=0)\n        kernels, channels = [1, 2, 3, 4], [10, 20, 30, 40]\n        self.char_convs = nn.ModuleList(\n            [\n                nn.Sequential(\n                    nn.Conv2d(\n                        in_channels=char_dim,\n                        out_channels=channel,\n                        kernel_size=(1, kernel),\n                        stride=(1, 1),\n                        padding=0,\n                        bias=True,\n                    ),\n                    nn.ReLU(),\n                )\n                for kernel, channel in zip(kernels, channels)\n            ]\n        )\n        self.dropout = nn.Dropout(p=drop_rate)\n\n    def forward(self, char_ids):\n        char_emb = self.char_emb(\n            char_ids\n        )  # (batch_size, w_seq_len, c_seq_len, char_dim)\n        char_emb = self.dropout(char_emb)\n        char_emb = char_emb.permute(\n            0, 3, 1, 2\n        )  # (batch_size, char_dim, w_seq_len, c_seq_len)\n        char_outputs = []\n        for conv_layer in self.char_convs:\n            output = conv_layer(char_emb)\n            output, _ = torch.max(\n                output, dim=3, keepdim=False\n            )  # reduce max (batch_size, channel, w_seq_len)\n            char_outputs.append(output)\n        char_output = torch.cat(\n            char_outputs, dim=1\n        )  # (batch_size, sum(channels), w_seq_len)\n        return char_output.permute(0, 2, 1)  # (batch_size, w_seq_len, sum(channels))\n\n\nclass Embedding(nn.Module):\n    def __init__(\n        self,\n        num_words,\n        num_chars,\n        word_dim,\n        char_dim,\n        drop_rate,\n        out_dim,\n        word_vectors=None,\n    ):\n        super(Embedding, self).__init__()\n        self.word_emb = WordEmbedding(\n            num_words, word_dim, drop_rate, word_vectors=word_vectors\n        )\n        self.char_emb = CharacterEmbedding(num_chars, char_dim, drop_rate)\n        # output linear layer\n        self.linear = Conv1D(\n            in_dim=word_dim + 100,\n            out_dim=out_dim,\n            kernel_size=1,\n            stride=1,\n            padding=0,\n            bias=True,\n        )\n\n    def forward(self, word_ids, char_ids):\n        word_emb = self.word_emb(word_ids)  # (batch_size, w_seq_len, word_dim)\n        char_emb = self.char_emb(char_ids)  # (batch_size, w_seq_len, 100)\n        emb = torch.cat(\n            [word_emb, char_emb], dim=2\n        )  # (batch_size, w_seq_len, word_dim + 100)\n        emb = self.linear(emb)  # (batch_size, w_seq_len, dim)\n        return emb\n\n\nclass BertEmbedding(nn.Module):\n    def __init__(self, text_agnostic=False):\n        super(BertEmbedding, self).__init__()\n        from transformers import BertModel, BertConfig\n\n        # Load pretrained BERT model if not text_agnostic, else random BERT.\n        if text_agnostic:\n            self.embedder = BertModel(BertConfig())\n        else:\n            self.embedder = BertModel.from_pretrained(\"bert-base-uncased\")\n        # Freeze the model.\n        for param in self.embedder.parameters():\n            param.requires_grad = False\n\n    def forward(self, word_ids):\n        outputs = self.embedder(**word_ids)\n        return outputs[\"last_hidden_state\"].detach()\n\n\nclass PositionalEmbedding(nn.Module):\n    \"\"\"Construct the embeddings from word, position and token_type embeddings.\"\"\"\n\n    def __init__(self, num_embeddings, embedding_dim):\n        super(PositionalEmbedding, self).__init__()\n        self.position_embeddings = nn.Embedding(num_embeddings, embedding_dim)\n\n    def forward(self, inputs):\n        bsz, seq_length = inputs.shape[:2]\n        position_ids = torch.arange(seq_length, dtype=torch.long, device=inputs.device)\n        position_ids = position_ids.unsqueeze(0).repeat(bsz, 1)  # (N, L)\n        position_embeddings = self.position_embeddings(position_ids)\n        return position_embeddings\n\n\nclass VisualProjection(nn.Module):\n    def __init__(self, visual_dim, dim, drop_rate=0.0):\n        super(VisualProjection, self).__init__()\n        self.drop = nn.Dropout(p=drop_rate)\n        self.linear = Conv1D(\n            in_dim=visual_dim,\n            out_dim=dim,\n            kernel_size=1,\n            stride=1,\n            bias=True,\n            padding=0,\n        )\n\n    def forward(self, visual_features):\n        # the input visual feature with shape (batch_size, seq_len, visual_dim)\n        visual_features = self.drop(visual_features)\n        output = self.linear(visual_features)  # (batch_size, seq_len, dim)\n        return output\n\n\nclass DepthwiseSeparableConvBlock(nn.Module):\n    def __init__(self, dim, kernel_size, drop_rate, num_layers=4):\n        super(DepthwiseSeparableConvBlock, self).__init__()\n        self.depthwise_separable_conv = nn.ModuleList(\n            [\n                nn.Sequential(\n                    nn.Conv1d(\n                        in_channels=dim,\n                        out_channels=dim,\n                        kernel_size=kernel_size,\n                        groups=dim,\n                        padding=kernel_size // 2,\n                        bias=False,\n                    ),\n                    nn.Conv1d(\n                        in_channels=dim,\n                        out_channels=dim,\n                        kernel_size=1,\n                        padding=0,\n                        bias=True,\n                    ),\n                    nn.ReLU(),\n                )\n                for _ in range(num_layers)\n            ]\n        )\n        self.layer_norms = nn.ModuleList(\n            [nn.LayerNorm(dim, eps=1e-6) for _ in range(num_layers)]\n        )\n        self.dropout = nn.Dropout(p=drop_rate)\n\n    def forward(self, x):\n        output = x  # (batch_size, seq_len, dim)\n        for idx, conv_layer in enumerate(self.depthwise_separable_conv):\n            residual = output\n            output = self.layer_norms[idx](output)  # (batch_size, seq_len, dim)\n            output = output.transpose(1, 2)  # (batch_size, dim, seq_len)\n            output = conv_layer(output)\n            output = self.dropout(output)\n            output = output.transpose(1, 2) + residual  # (batch_size, seq_len, dim)\n        return output\n\n\nclass MultiHeadAttentionBlock(nn.Module):\n    def __init__(self, dim, num_heads, drop_rate):\n        super(MultiHeadAttentionBlock, self).__init__()\n        assert (\n            dim % num_heads == 0\n        ), \"The channels (%d) is not a multiple of attention heads (%d)\" % (\n            dim,\n            num_heads,\n        )\n        self.head_size, self.num_heads, self.dim = int(dim / num_heads), num_heads, dim\n        self.dropout = nn.Dropout(p=drop_rate)\n        self.query = Conv1D(\n            in_dim=dim, out_dim=dim, kernel_size=1, stride=1, padding=0, bias=True\n        )\n        self.key = Conv1D(\n            in_dim=dim, out_dim=dim, kernel_size=1, stride=1, padding=0, bias=True\n        )\n        self.value = Conv1D(\n            in_dim=dim, out_dim=dim, kernel_size=1, stride=1, padding=0, bias=True\n        )\n        self.layer_norm1 = nn.LayerNorm(dim, eps=1e-6)\n        self.layer_norm2 = nn.LayerNorm(dim, eps=1e-6)\n        self.out_layer = Conv1D(\n            in_dim=dim, out_dim=dim, kernel_size=1, stride=1, padding=0, bias=True\n        )\n\n    def transpose_for_scores(self, x):\n        new_x_shape = x.size()[:-1] + (self.num_heads, self.head_size)\n        x = x.view(*new_x_shape)\n        return x.permute(0, 2, 1, 3)  # (batch_size, num_heads, w_seq_len, head_size)\n\n    @staticmethod\n    def combine_last_two_dim(x):\n        old_shape = list(x.size())\n        new_shape = old_shape[:-2] + [old_shape[-2] * old_shape[-1]]\n        return x.reshape(shape=new_shape)\n\n    def forward(self, x, mask=None):\n        output = self.layer_norm1(x)  # (batch_size, seq_len, dim)\n        output = self.dropout(output)\n        # multi-head attention layer\n        query = self.transpose_for_scores(\n            self.query(output)\n        )  # (batch_size, num_heads, seq_len, head_size)\n        key = self.transpose_for_scores(self.key(output))\n        value = self.transpose_for_scores(self.value(output))\n        attention_scores = torch.matmul(\n            query, key.transpose(-1, -2)\n        )  # (batch_size, num_heads, seq_len, seq_len)\n        attention_scores = attention_scores / math.sqrt(self.head_size)\n        if mask is not None:  # masking\n            mask = mask.unsqueeze(1).unsqueeze(2)  # (batch_size, 1, 1, seq_len)\n            attention_scores = mask_logits(attention_scores, mask)\n        attention_probs = nn.Softmax(dim=-1)(\n            attention_scores\n        )  # (batch_size, num_heads, seq_len, seq_len)\n        attention_probs = self.dropout(attention_probs)\n        value = torch.matmul(\n            attention_probs, value\n        )  # (batch_size, num_heads, seq_len, head_size)\n        value = self.combine_last_two_dim(\n            value.permute(0, 2, 1, 3)\n        )  # (batch_size, seq_len, dim)\n        # intermediate layer\n        output = self.dropout(value)\n        residual = output + x\n        output = self.layer_norm2(residual)\n        output = self.dropout(output)\n        output = self.out_layer(output)\n        output = self.dropout(output) + residual\n        return output\n\n\nclass FeatureEncoder(nn.Module):\n    def __init__(\n        self, dim, num_heads, max_pos_len, kernel_size=7, num_layers=4, drop_rate=0.0\n    ):\n        super(FeatureEncoder, self).__init__()\n        self.pos_embedding = PositionalEmbedding(\n            num_embeddings=max_pos_len, embedding_dim=dim\n        )\n        self.conv_block = DepthwiseSeparableConvBlock(\n            dim=dim, kernel_size=kernel_size, drop_rate=drop_rate, num_layers=num_layers\n        )\n        self.attention_block = MultiHeadAttentionBlock(\n            dim=dim, num_heads=num_heads, drop_rate=drop_rate\n        )\n\n    def forward(self, x, mask=None):\n        features = x + self.pos_embedding(x)  # (batch_size, seq_len, dim)\n        features = self.conv_block(features)  # (batch_size, seq_len, dim)\n        features = self.attention_block(\n            features, mask=mask\n        )  # (batch_size, seq_len, dim)\n        return features\n\n\nclass CQAttention(nn.Module):\n    def __init__(self, dim, drop_rate=0.0):\n        super(CQAttention, self).__init__()\n        w4C = torch.empty(dim, 1)\n        w4Q = torch.empty(dim, 1)\n        w4mlu = torch.empty(1, 1, dim)\n        nn.init.xavier_uniform_(w4C)\n        nn.init.xavier_uniform_(w4Q)\n        nn.init.xavier_uniform_(w4mlu)\n        self.w4C = nn.Parameter(w4C, requires_grad=True)\n        self.w4Q = nn.Parameter(w4Q, requires_grad=True)\n        self.w4mlu = nn.Parameter(w4mlu, requires_grad=True)\n        self.dropout = nn.Dropout(p=drop_rate)\n        self.cqa_linear = Conv1D(\n            in_dim=4 * dim, out_dim=dim, kernel_size=1, stride=1, padding=0, bias=True\n        )\n\n    def forward(self, context, query, c_mask, q_mask):\n        score = self.trilinear_attention(\n            context, query\n        )  # (batch_size, c_seq_len, q_seq_len)\n        score_ = nn.Softmax(dim=2)(\n            mask_logits(score, q_mask.unsqueeze(1))\n        )  # (batch_size, c_seq_len, q_seq_len)\n        score_t = nn.Softmax(dim=1)(\n            mask_logits(score, c_mask.unsqueeze(2))\n        )  # (batch_size, c_seq_len, q_seq_len)\n        score_t = score_t.transpose(1, 2)  # (batch_size, q_seq_len, c_seq_len)\n        c2q = torch.matmul(score_, query)  # (batch_size, c_seq_len, dim)\n        q2c = torch.matmul(\n            torch.matmul(score_, score_t), context\n        )  # (batch_size, c_seq_len, dim)\n        output = torch.cat(\n            [context, c2q, torch.mul(context, c2q), torch.mul(context, q2c)], dim=2\n        )\n        output = self.cqa_linear(output)  # (batch_size, c_seq_len, dim)\n        return output\n\n    def trilinear_attention(self, context, query):\n        batch_size, c_seq_len, dim = context.shape\n        batch_size, q_seq_len, dim = query.shape\n        context = self.dropout(context)\n        query = self.dropout(query)\n        subres0 = torch.matmul(context, self.w4C).expand(\n            [-1, -1, q_seq_len]\n        )  # (batch_size, c_seq_len, q_seq_len)\n        subres1 = (\n            torch.matmul(query, self.w4Q).transpose(1, 2).expand([-1, c_seq_len, -1])\n        )\n        subres2 = torch.matmul(context * self.w4mlu, query.transpose(1, 2))\n        res = subres0 + subres1 + subres2  # (batch_size, c_seq_len, q_seq_len)\n        return res\n\n\nclass WeightedPool(nn.Module):\n    def __init__(self, dim):\n        super(WeightedPool, self).__init__()\n        weight = torch.empty(dim, 1)\n        nn.init.xavier_uniform_(weight)\n        self.weight = nn.Parameter(weight, requires_grad=True)\n\n    def forward(self, x, mask):\n        alpha = torch.tensordot(\n            x, self.weight, dims=1\n        )  # shape = (batch_size, seq_length, 1)\n        alpha = mask_logits(alpha, mask=mask.unsqueeze(2))\n        alphas = nn.Softmax(dim=1)(alpha)\n        pooled_x = torch.matmul(x.transpose(1, 2), alphas)  # (batch_size, dim, 1)\n        pooled_x = pooled_x.squeeze(2)\n        return pooled_x\n\n\nclass CQConcatenate(nn.Module):\n    def __init__(self, dim):\n        super(CQConcatenate, self).__init__()\n        self.weighted_pool = WeightedPool(dim=dim)\n        self.conv1d = Conv1D(\n            in_dim=2 * dim, out_dim=dim, kernel_size=1, stride=1, padding=0, bias=True\n        )\n\n    def forward(self, context, query, q_mask):\n        pooled_query = self.weighted_pool(query, q_mask)  # (batch_size, dim)\n        _, c_seq_len, _ = context.shape\n        pooled_query = pooled_query.unsqueeze(1).repeat(\n            1, c_seq_len, 1\n        )  # (batch_size, c_seq_len, dim)\n        output = torch.cat(\n            [context, pooled_query], dim=2\n        )  # (batch_size, c_seq_len, 2*dim)\n        output = self.conv1d(output)\n        return output\n\n\nclass HighLightLayer(nn.Module):\n    def __init__(self, dim):\n        super(HighLightLayer, self).__init__()\n        self.conv1d = Conv1D(\n            in_dim=dim, out_dim=1, kernel_size=1, stride=1, padding=0, bias=True\n        )\n\n    def forward(self, x, mask):\n        # compute logits\n        logits = self.conv1d(x)\n        logits = logits.squeeze(2)\n        logits = mask_logits(logits, mask)\n        # compute score\n        scores = nn.Sigmoid()(logits)\n        return scores\n\n    @staticmethod\n    def compute_loss(scores, labels, mask, epsilon=1e-12):\n        labels = labels.type(torch.float32)\n        weights = torch.where(labels == 0.0, labels + 1.0, 2.0 * labels)\n        loss_per_location = nn.BCELoss(reduction=\"none\")(scores, labels)\n        loss_per_location = loss_per_location * weights\n        mask = mask.type(torch.float32)\n        loss = torch.sum(loss_per_location * mask) / (torch.sum(mask) + epsilon)\n        return loss\n\n\nclass DynamicRNN(nn.Module):\n    def __init__(self, dim):\n        super(DynamicRNN, self).__init__()\n        self.lstm = nn.LSTM(\n            input_size=dim,\n            hidden_size=dim,\n            num_layers=1,\n            bias=True,\n            batch_first=True,\n            bidirectional=False,\n        )\n\n    def forward(self, x, mask):\n        out, _ = self.lstm(x)  # (bsz, seq_len, dim)\n        mask = mask.type(torch.float32)\n        mask = mask.unsqueeze(2)\n        out = out * mask\n        return out\n\n\nclass ConditionedPredictor(nn.Module):\n    def __init__(self, dim, num_heads, max_pos_len, drop_rate=0.0, predictor=\"rnn\"):\n        super(ConditionedPredictor, self).__init__()\n        self.predictor = predictor\n        if predictor == \"rnn\":\n            self.start_encoder = DynamicRNN(dim=dim)\n            self.end_encoder = DynamicRNN(dim=dim)\n        else:\n            self.encoder = FeatureEncoder(\n                dim=dim,\n                num_heads=num_heads,\n                kernel_size=7,\n                num_layers=4,\n                max_pos_len=max_pos_len,\n                drop_rate=drop_rate,\n            )\n            self.start_layer_norm = nn.LayerNorm(dim, eps=1e-6)\n            self.end_layer_norm = nn.LayerNorm(dim, eps=1e-6)\n\n        self.start_block = nn.Sequential(\n            Conv1D(\n                in_dim=2 * dim,\n                out_dim=dim,\n                kernel_size=1,\n                stride=1,\n                padding=0,\n                bias=True,\n            ),\n            nn.ReLU(),\n            Conv1D(\n                in_dim=dim, out_dim=1, kernel_size=1, stride=1, padding=0, bias=True\n            ),\n        )\n        self.end_block = nn.Sequential(\n            Conv1D(\n                in_dim=2 * dim,\n                out_dim=dim,\n                kernel_size=1,\n                stride=1,\n                padding=0,\n                bias=True,\n            ),\n            nn.ReLU(),\n            Conv1D(\n                in_dim=dim, out_dim=1, kernel_size=1, stride=1, padding=0, bias=True\n            ),\n        )\n\n    def forward(self, x, mask):\n        if self.predictor == \"rnn\":\n            start_features = self.start_encoder(x, mask)  # (batch_size, seq_len, dim)\n            end_features = self.end_encoder(start_features, mask)\n        else:\n            start_features = self.encoder(x, mask)\n            end_features = self.encoder(start_features, mask)\n            start_features = self.start_layer_norm(start_features)\n            end_features = self.end_layer_norm(end_features)\n        start_features = self.start_block(\n            torch.cat([start_features, x], dim=2)\n        )  # (batch_size, seq_len, 1)\n        end_features = self.end_block(torch.cat([end_features, x], dim=2))\n        start_logits = mask_logits(start_features.squeeze(2), mask=mask)\n        end_logits = mask_logits(end_features.squeeze(2), mask=mask)\n        return start_logits, end_logits\n\n    @staticmethod\n    def extract_index(start_logits, end_logits):\n        start_prob = nn.Softmax(dim=1)(start_logits)\n        end_prob = nn.Softmax(dim=1)(end_logits)\n        outer = torch.matmul(start_prob.unsqueeze(dim=2), end_prob.unsqueeze(dim=1))\n        outer = torch.triu(outer, diagonal=0)\n\n        # _, start_index = torch.max(torch.max(outer, dim=2)[0], dim=1)  # (batch_size, )\n        # _, end_index = torch.max(torch.max(outer, dim=1)[0], dim=1)  # (batch_size, )\n        # return start_index, end_index\n\n        # Get top 5 start and end indices.\n        batch_size, height, width = outer.shape\n        outer_flat = outer.view(batch_size, -1)\n        _, flat_indices = outer_flat.topk(5, dim=-1)\n        start_indices = flat_indices // width\n        end_indices = flat_indices % width\n        return start_indices, end_indices\n\n    @staticmethod\n    def compute_cross_entropy_loss(start_logits, end_logits, start_labels, end_labels):\n        start_loss = nn.CrossEntropyLoss(reduction=\"mean\")(start_logits, start_labels)\n        end_loss = nn.CrossEntropyLoss(reduction=\"mean\")(end_logits, end_labels)\n        return start_loss + end_loss\n"
  },
  {
    "path": "NLQ/VSLNet/options.py",
    "content": "#! /usr/bin/env python\n\"\"\"\nReading command line options.\n\"\"\"\n\nfrom __future__ import absolute_import, division, print_function, unicode_literals\n\nimport argparse\n\n\ndef read_command_line():\n    parser = argparse.ArgumentParser()\n    # data parameters\n    parser.add_argument(\n        \"--save_dir\",\n        type=str,\n        default=\"datasets\",\n        help=\"path to save processed dataset\",\n    )\n    parser.add_argument(\"--task\", type=str, default=\"charades\", help=\"target task\")\n    parser.add_argument(\n        \"--eval_gt_json\",\n        type=str,\n        default=None,\n        help=\"Provide GT JSON to evaluate while training\"\n    )\n    parser.add_argument(\n        \"--fv\", type=str, default=\"new\", help=\"[new | org] for visual features\"\n    )\n    parser.add_argument(\n        \"--max_pos_len\",\n        type=int,\n        default=128,\n        help=\"maximal position sequence length allowed\",\n    )\n    parser.add_argument(\n        \"--num_workers\",\n        type=int,\n        default=1,\n        help=\"Number of CPU workers to process the data\",\n    )\n    parser.add_argument(\n        \"--data_loader_workers\",\n        type=int,\n        default=0,\n        help=\"Number of CPU workers for the dataloader\",\n    )\n    # model parameters\n    parser.add_argument(\"--word_size\", type=int, default=None, help=\"number of words\")\n    parser.add_argument(\n        \"--char_size\", type=int, default=None, help=\"number of characters\"\n    )\n    parser.add_argument(\n        \"--word_dim\", type=int, default=300, help=\"word embedding dimension\"\n    )\n    parser.add_argument(\n        \"--video_feature_dim\",\n        type=int,\n        default=1024,\n        help=\"video feature input dimension\",\n    )\n    parser.add_argument(\n        \"--char_dim\",\n        type=int,\n        default=50,\n        help=\"character dimension, set to 100 for activitynet\",\n    )\n    parser.add_argument(\"--dim\", type=int, default=128, help=\"hidden size\")\n    parser.add_argument(\n        \"--highlight_lambda\",\n        type=float,\n        default=5.0,\n        help=\"lambda for highlight region\",\n    )\n    parser.add_argument(\"--num_heads\", type=int, default=8, help=\"number of heads\")\n    parser.add_argument(\"--drop_rate\", type=float, default=0.2, help=\"dropout rate\")\n    parser.add_argument(\n        \"--predictor\", type=str, default=\"rnn\", help=\"[rnn | transformer]\"\n    )\n    # training/evaluation parameters\n    parser.add_argument(\"--gpu_idx\", type=str, default=\"0\", help=\"GPU index\")\n    parser.add_argument(\"--seed\", type=int, default=12345, help=\"random seed\")\n    parser.add_argument(\"--mode\", type=str, default=\"train\", help=\"[train | test]\")\n    parser.add_argument(\"--epochs\", type=int, default=100, help=\"number of epochs\")\n    parser.add_argument(\"--batch_size\", type=int, default=32, help=\"batch size\")\n    parser.add_argument(\n        \"--num_train_steps\", type=int, default=None, help=\"number of training steps\"\n    )\n    parser.add_argument(\n        \"--init_lr\", type=float, default=0.0001, help=\"initial learning rate\"\n    )\n    parser.add_argument(\n        \"--clip_norm\", type=float, default=1.0, help=\"gradient clip norm\"\n    )\n    parser.add_argument(\n        \"--warmup_proportion\", type=float, default=0.0, help=\"warmup proportion\"\n    )\n    parser.add_argument(\n        \"--extend\", type=float, default=0.1, help=\"highlight region extension\"\n    )\n    parser.add_argument(\n        \"--period\", type=int, default=100, help=\"training loss print period\"\n    )\n    parser.add_argument(\n        \"--text_agnostic\",\n        dest=\"text_agnostic\",\n        action=\"store_true\",\n        default=False,\n        help=\"Text agnostic model; random text features\",\n    )\n    parser.add_argument(\n        \"--video_agnostic\",\n        dest=\"video_agnostic\",\n        action=\"store_true\",\n        default=False,\n        help=\"Video agnostic model; random video features\",\n    )\n    parser.add_argument(\n        \"--model_dir\",\n        type=str,\n        default=\"checkpoints\",\n        help=\"path to save trained model weights\",\n    )\n    parser.add_argument(\"--model_name\", type=str, default=\"vslnet\", help=\"model name\")  # noqa\n    parser.add_argument(\n        \"--suffix\",\n        type=str,\n        default=None,\n        help=\"set to the last `_xxx` in ckpt repo to eval results\",\n    )\n    parser.add_argument(\n        \"--log_to_tensorboard\",\n        type=str,\n        default=None,\n        help=\"Comment for the run. Supports multiple runs\",\n    )\n    parser.add_argument(\n        \"--tb_log_dir\",\n        type=str,\n        default=\"./runs\",\n        help=\"Where the tensorboard logdir is located\",\n    )\n    parser.add_argument(\n        \"--tb_log_freq\",\n        type=int,\n        default=1,\n        help=\"Log every `tb_log_freq` iterations\",\n    )\n    parser.add_argument(\n        \"--slurm\",\n        dest=\"slurm\",\n        action=\"store_true\",\n        default=False,\n        help=\"Schedule with slurm?\",\n    )\n    parser.add_argument(\n        \"--slurm_wait\",\n        dest=\"slurm_wait\",\n        action=\"store_true\",\n        default=False,\n        help=\"Wait for slurm to finish?\",\n    )\n    parser.add_argument(\n        \"--slurm_partition\",\n        type=str,\n        default=\"pixar\",\n        help=\"Which slurm partition?\",\n    )\n    parser.add_argument(\n        \"--slurm_constraint\",\n        type=str,\n        default=\"volta\",\n        help=\"Constraint on slurm\",\n    )\n    parser.add_argument(\n        \"--slurm_gpus\",\n        type=int,\n        default=1,\n        help=\"number of gpus to schedule with slurm\",\n    )\n    parser.add_argument(\n        \"--slurm_cpus\",\n        type=int,\n        default=10,\n        help=\"number of cpus to schedule with slurm\",\n    )\n    parser.add_argument(\n        \"--slurm_timeout_min\",\n        type=int,\n        default=720,\n        help=\"How many minutes to schedule\",\n    )\n    parser.add_argument(\n        \"--slurm_log_folder\",\n        type=str,\n        default=\"slurm_log\",\n        help=\"where to keep slurm logs\",\n    )\n    parser.add_argument(\n        \"--remove_empty_queries_from\",\n        type=str,\n        nargs=\"+\",\n        default=None,\n        help=\"A list of splits to remove empty queries from. Valid values for the list are: ['train', 'val']\",  # noqa\n    )\n    configs = parser.parse_args()\n    return configs, parser\n"
  },
  {
    "path": "NLQ/VSLNet/requirements.txt",
    "content": "nltk==3.7\nnumpy==1.22.4\nPillow==9.1.1\nsubmitit==1.4.2\ntensorboard==2.9.0\nterminaltables==3.1.10\ntorch==1.11.0\ntorchaudio==0.11.0\ntorchvision==0.12.0\ntqdm==4.64.0\ntransformers==4.19.2\n"
  },
  {
    "path": "NLQ/VSLNet/run_train.sh",
    "content": "# To train the model.\nCUDA_VISIBLE_DEVICES=1 python main.py \\\n    --task nlq_official_v1 \\\n    --predictor bert \\\n    --mode train \\\n    --video_feature_dim 2304 \\\n    --max_pos_len 128 \\\n    --epochs 200 \\\n    --fv official \\\n    --num_workers 64 \\\n    --model_dir checkpoints/ \\\n    --eval_gt_json \"data/nlq_val.json\"\n\n\n# To predict on test set.\n# CUDA_VISIBLE_DEVICES=1 python main.py \\\n#     --task nlq_official_v1 \\\n#     --predictor bert \\\n#     --mode test \\\n#     --video_feature_dim 2304 \\\n#     --max_pos_len 128 \\\n#     --fv official \\\n#     --model_dir checkpoints/\n\n\n# To evaluate predictions using official evaluation script.\n# PRED_FILE=\"checkpoints/vslnet_nlq_official_v1_official_128_bert/model\"\n# python utils/evaluate_ego4d_nlq.py \\\n#     --ground_truth_json data/nlq_test.json \\\n#     --model_prediction_json ${PRED_FILE}/vslnet_41184_test_result.json \\\n#     --thresholds 0.3 0.5 \\\n#     --topK 1 3 5\n"
  },
  {
    "path": "NLQ/VSLNet/utils/__init__.py",
    "content": ""
  },
  {
    "path": "NLQ/VSLNet/utils/data_gen.py",
    "content": "import codecs\nimport multiprocessing\nimport os\nfrom collections import Counter\nfrom typing import List, Optional\n\nimport numpy as np\nfrom nltk.tokenize import word_tokenize\nfrom tqdm import tqdm\n\nfrom utils.data_util import (\n    load_json,\n    load_lines,\n    load_pickle,\n    save_pickle,\n    time_to_index,\n)\n\nPAD, UNK = \"<PAD>\", \"<UNK>\"\n\n\nclass EpisodicNLQProcessor:\n    def __init__(self, remove_empty_queries_from: Optional[List[str]]):\n        super(EpisodicNLQProcessor, self).__init__()\n        self.idx_counter = 0\n        self.remove_empty_queries_from = (\n            set()\n            if remove_empty_queries_from is None else\n            set(remove_empty_queries_from)\n        )\n\n    def reset_idx_counter(self):\n        self.idx_counter = 0\n\n    def process_data_tan(self, data, scope):\n        skipped = 0\n        results = []\n        for vid, data_item in tqdm(\n            data.items(), total=len(data), desc=f\"process episodic nlq {scope}\"\n        ):\n            fps = float(data_item[\"fps\"])\n            duration = float(data_item[\"num_frames\"]) / fps\n            zipper = zip(\n                data_item[\"timestamps\"],\n                data_item[\"exact_times\"],\n                data_item[\"sentences\"],\n                data_item[\"annotation_uids\"],\n                data_item[\"query_idx\"],\n            )\n            for timestamp, exact_time, sentence, ann_uid, query_idx in zipper:\n                start_time = max(0.0, float(timestamp[0]) / fps)\n                end_time = min(float(timestamp[1]) / fps, duration)\n                if self._predictor != \"bert\":\n                    words = word_tokenize(sentence.strip().lower(), language=\"english\")\n                else:\n                    words = sentence\n                record = {\n                    \"sample_id\": self.idx_counter,\n                    \"vid\": str(vid),\n                    \"s_time\": start_time,\n                    \"e_time\": end_time,\n                    \"exact_s_time\": exact_time[0],\n                    \"exact_e_time\": exact_time[1],\n                    \"duration\": duration,\n                    \"words\": words,\n                    \"query\": sentence.strip().lower(),\n                    \"annotation_uid\": ann_uid,\n                    \"query_idx\": query_idx,\n                }\n                if (\n                    abs(exact_time[0] - exact_time[1]) <= 1/30 and\n                    scope in self.remove_empty_queries_from\n                ):\n                    skipped += 1\n                    continue\n                results.append(record)\n                self.idx_counter += 1\n        print(f\"{scope}: skipped = {skipped}, remaining = {len(results)}\")\n        return results\n\n    def convert(self, data_dir, predictor=None):\n        self._predictor = predictor\n        self.reset_idx_counter()\n        if not os.path.exists(data_dir):\n            raise ValueError(\"data dir {} does not exist\".format(data_dir))\n        # load raw data\n        train_data = load_json(os.path.join(data_dir, \"train.json\"))\n        val_data = load_json(os.path.join(data_dir, \"val.json\"))\n        test_data = load_json(os.path.join(data_dir, \"test.json\"))\n\n        # process data\n        train_set = self.process_data_tan(train_data, scope=\"train\")\n        val_set = self.process_data_tan(val_data, scope=\"val\")\n        test_set = self.process_data_tan(test_data, scope=\"test\")\n        return train_set, val_set, test_set\n\n\ndef load_glove(glove_path):\n    vocab = list()\n    with codecs.open(glove_path, mode=\"r\", encoding=\"utf-8\") as f:\n        for line in tqdm(f, total=2196018, desc=\"load glove vocabulary\"):\n            line = line.lstrip().rstrip().split(\" \")\n            if len(line) == 2 or len(line) != 301:\n                continue\n            word = line[0]\n            vocab.append(word)\n    return set(vocab)\n\n\ndef filter_glove_embedding(word_dict, glove_path):\n    vectors = np.zeros(shape=[len(word_dict), 300], dtype=np.float32)\n    with codecs.open(glove_path, mode=\"r\", encoding=\"utf-8\") as f:\n        for line in tqdm(f, total=2196018, desc=\"load glove embeddings\"):\n            line = line.lstrip().rstrip().split(\" \")\n            if len(line) == 2 or len(line) != 301:\n                continue\n            word = line[0]\n            if word in word_dict:\n                vector = [float(x) for x in line[1:]]\n                word_index = word_dict[word]\n                vectors[word_index] = np.asarray(vector)\n    return np.asarray(vectors)\n\n\ndef vocab_emb_gen(datasets, emb_path):\n    # generate word dict and vectors\n    emb_vocab = load_glove(emb_path)\n    word_counter, char_counter = Counter(), Counter()\n    for data in datasets:\n        for record in data:\n            for word in record[\"words\"]:\n                word_counter[word] += 1\n                for char in list(word):\n                    char_counter[char] += 1\n    word_vocab = list()\n    for word, _ in word_counter.most_common():\n        if word in emb_vocab:\n            word_vocab.append(word)\n    tmp_word_dict = dict([(word, index) for index, word in enumerate(word_vocab)])\n    vectors = filter_glove_embedding(tmp_word_dict, emb_path)\n    word_vocab = [PAD, UNK] + word_vocab\n    word_dict = dict([(word, idx) for idx, word in enumerate(word_vocab)])\n    # generate character dict\n    char_vocab = [PAD, UNK] + [\n        char for char, count in char_counter.most_common() if count >= 5\n    ]\n    char_dict = dict([(char, idx) for idx, char in enumerate(char_vocab)])\n    return word_dict, char_dict, vectors\n\n\ndef dataset_gen(\n    data, vfeat_lens, word_dict, char_dict, max_pos_len, scope, num_workers=1\n):\n    # Worker method for multiprocessing.\n    def worker(\n        worker_data,\n        vfeat_lens,\n        word_dict,\n        char_dict,\n        max_pos_len,\n        scope,\n        worker_id,\n        output_q,\n    ):\n        worker_dataset = list()\n        description = f\"process {scope} data [{worker_id}]\"\n        for record in tqdm(worker_data, total=len(worker_data), desc=description):\n            vid = record[\"vid\"]\n            if vid not in vfeat_lens:\n                continue\n            s_ind, e_ind, _ = time_to_index(\n                record[\"s_time\"], record[\"e_time\"], vfeat_lens[vid], record[\"duration\"]\n            )\n\n            word_ids, char_ids = [], []\n            for word in record[\"words\"][0:max_pos_len]:\n                word_id = word_dict[word] if word in word_dict else word_dict[UNK]\n                char_id = [\n                    char_dict[char] if char in char_dict else char_dict[UNK]\n                    for char in word\n                ]\n                word_ids.append(word_id)\n                char_ids.append(char_id)\n            result = {\n                \"sample_id\": record[\"sample_id\"],\n                \"vid\": record[\"vid\"],\n                \"s_time\": record[\"s_time\"],\n                \"e_time\": record[\"e_time\"],\n                \"duration\": record[\"duration\"],\n                \"words\": record[\"words\"],\n                \"query\": record[\"query\"],\n                \"s_ind\": int(s_ind),\n                \"e_ind\": int(e_ind),\n                \"v_len\": vfeat_lens[vid],\n                \"w_ids\": word_ids,\n                \"c_ids\": char_ids,\n                \"annotation_uid\": record[\"annotation_uid\"],\n                \"query_idx\": record[\"query_idx\"],\n            }\n            worker_dataset.append(result)\n        output_q.put({worker_id: worker_dataset})\n\n    # Multithread version.\n    output_q = multiprocessing.Queue()\n    jobs = []\n    chunk_size = len(data) // num_workers + 1\n    for worker_id in range(num_workers):\n        allotment = data[worker_id * chunk_size : (worker_id + 1) * chunk_size]\n        inputs = (allotment, vfeat_lens, word_dict, char_dict, max_pos_len, scope)\n        inputs += (worker_id, output_q)\n        process = multiprocessing.Process(target=worker, args=inputs)\n        jobs.append(process)\n        process.start()\n\n    # Wait for all the jobs to finish and collect the output.\n    collated_results = {}\n    for _ in jobs:\n        collated_results.update(output_q.get())\n    for job in jobs:\n        job.join()\n\n    # Flatten and sort the dataset.\n    dataset = []\n    sorted_worker_id = sorted(collated_results.keys())\n    for worker_id in sorted_worker_id:\n        dataset.extend(collated_results[worker_id])\n    return dataset\n\n\ndef dataset_gen_bert(data, vfeat_lens, tokenizer, max_pos_len, scope, num_workers=1):\n    # Worker method for multiprocessing.\n    def worker(\n        worker_data, vfeat_lens, tokenizer, max_pos_len, scope, worker_id, output_q\n    ):\n        worker_dataset = list()\n        description = f\"process {scope} data [{worker_id}]\"\n        for record in tqdm(worker_data, total=len(worker_data), desc=description):\n            vid = record[\"vid\"]\n            if vid not in vfeat_lens:\n                continue\n            s_ind, e_ind, _ = time_to_index(\n                record[\"s_time\"], record[\"e_time\"], vfeat_lens[vid], record[\"duration\"]\n            )\n            word_ids = tokenizer(record[\"query\"])\n            result = {\n                \"sample_id\": record[\"sample_id\"],\n                \"vid\": record[\"vid\"],\n                \"s_time\": record[\"s_time\"],\n                \"e_time\": record[\"e_time\"],\n                \"duration\": record[\"duration\"],\n                \"words\": record[\"words\"],\n                \"query\": record[\"query\"],\n                \"s_ind\": int(s_ind),\n                \"e_ind\": int(e_ind),\n                \"v_len\": vfeat_lens[vid],\n                \"w_ids\": word_ids,\n                \"annotation_uid\": record[\"annotation_uid\"],\n                \"query_idx\": record[\"query_idx\"],\n            }\n            worker_dataset.append(result)\n        output_q.put({worker_id: worker_dataset})\n\n    # Multithread version.\n    output_q = multiprocessing.Queue()\n    jobs = []\n    chunk_size = len(data) // num_workers + 1\n    for worker_id in range(num_workers):\n        allotment = data[worker_id * chunk_size : (worker_id + 1) * chunk_size]\n        inputs = (allotment, vfeat_lens, tokenizer, max_pos_len, scope)\n        inputs += (worker_id, output_q)\n        process = multiprocessing.Process(target=worker, args=inputs)\n        jobs.append(process)\n        process.start()\n\n    # Wait for all the jobs to finish and collect the output.\n    collated_results = {}\n    for _ in jobs:\n        collated_results.update(output_q.get())\n    for job in jobs:\n        job.join()\n\n    # Flatten and sort the dataset.\n    dataset = []\n    sorted_worker_id = sorted(collated_results.keys())\n    for worker_id in sorted_worker_id:\n        dataset.extend(collated_results[worker_id])\n    return dataset\n\n\ndef gen_or_load_dataset(configs):\n    if not os.path.exists(configs.save_dir):\n        os.makedirs(configs.save_dir)\n    data_dir = os.path.join(\"data\", \"dataset\", configs.task)\n    feature_dir = os.path.join(\"data\", \"features\", configs.task, configs.fv)\n    if configs.suffix is None:\n        save_path = os.path.join(\n            configs.save_dir,\n            \"_\".join(\n                [configs.task, configs.fv, str(configs.max_pos_len), configs.predictor]\n            )\n            + \".pkl\",\n        )\n    else:\n        save_path = os.path.join(\n            configs.save_dir,\n            \"_\".join(\n                [configs.task, configs.fv, str(configs.max_pos_len), configs.suffix]\n            )\n            + \".pkl\",\n        )\n    if os.path.exists(save_path):\n        print(f\"Loading data from existing save path {save_path}\", flush=True)\n        dataset = load_pickle(save_path)\n        return dataset\n    print(\"Generating data for dataloader\", flush=True)\n    feat_len_path = os.path.join(feature_dir, \"feature_shapes.json\")\n    emb_path = os.path.join(\"data\", \"features\", \"glove.840B.300d.txt\")\n    # load video feature length\n    vfeat_lens = load_json(feat_len_path)\n    for vid, vfeat_len in vfeat_lens.items():\n        vfeat_lens[vid] = min(configs.max_pos_len, vfeat_len)\n    # load data\n    processor = EpisodicNLQProcessor(configs.remove_empty_queries_from)\n\n    train_data, val_data, test_data = processor.convert(\n        data_dir, predictor=configs.predictor\n    )\n    # generate dataset\n    data_list = (\n        [train_data, test_data]\n        if val_data is None\n        else [train_data, val_data, test_data]\n    )\n    if configs.predictor == \"bert\":\n        from transformers import BertTokenizer, BertForPreTraining\n\n        tokenizer = BertTokenizer.from_pretrained(\"bert-base-uncased\")\n        train_set = dataset_gen_bert(\n            train_data,\n            vfeat_lens,\n            tokenizer,\n            configs.max_pos_len,\n            \"train\",\n            num_workers=configs.num_workers,\n        )\n        if val_data:\n            val_set = dataset_gen_bert(\n                val_data,\n                vfeat_lens,\n                tokenizer,\n                configs.max_pos_len,\n                \"val\",\n                num_workers=configs.num_workers,\n            )\n        else:\n            val_set = None\n        test_set = dataset_gen_bert(\n            test_data,\n            vfeat_lens,\n            tokenizer,\n            configs.max_pos_len,\n            \"test\",\n            num_workers=configs.num_workers,\n        )\n        n_val = 0 if val_set is None else len(val_set)\n        dataset = {\n            \"train_set\": train_set,\n            \"val_set\": val_set,\n            \"test_set\": test_set,\n            \"n_train\": len(train_set),\n            \"n_val\": n_val,\n            \"n_test\": len(test_set),\n        }\n    else:\n        word_dict, char_dict, vectors = vocab_emb_gen(data_list, emb_path)\n        train_set = dataset_gen(\n            train_data,\n            vfeat_lens,\n            word_dict,\n            char_dict,\n            configs.max_pos_len,\n            \"train\",\n            num_workers=configs.num_workers,\n        )\n        if val_data:\n            val_set = dataset_gen(\n                val_data,\n                vfeat_lens,\n                word_dict,\n                char_dict,\n                configs.max_pos_len,\n                \"val\",\n                num_workers=configs.num_workers,\n            )\n        else:\n            val_set = None\n        test_set = dataset_gen(\n            test_data,\n            vfeat_lens,\n            word_dict,\n            char_dict,\n            configs.max_pos_len,\n            \"test\",\n            num_workers=configs.num_workers,\n        )\n        # save dataset\n        n_val = 0 if val_set is None else len(val_set)\n        dataset = {\n            \"train_set\": train_set,\n            \"val_set\": val_set,\n            \"test_set\": test_set,\n            \"word_dict\": word_dict,\n            \"char_dict\": char_dict,\n            \"word_vector\": vectors,\n            \"n_train\": len(train_set),\n            \"n_val\": n_val,\n            \"n_test\": len(test_set),\n            \"n_words\": len(word_dict),\n            \"n_chars\": len(char_dict),\n        }\n    save_pickle(dataset, save_path)\n    return dataset\n"
  },
  {
    "path": "NLQ/VSLNet/utils/data_loader.py",
    "content": "import numpy as np\nimport torch\nimport torch.utils.data\n\nfrom utils.data_util import pad_seq, pad_char_seq, pad_video_seq\n\n\nclass Dataset(torch.utils.data.Dataset):\n    def __init__(self, dataset, video_features):\n        super(Dataset, self).__init__()\n        self.dataset = dataset\n        self.video_features = video_features\n\n    def __getitem__(self, index):\n        record = self.dataset[index]\n        video_feature = self.video_features[record[\"vid\"]]\n        s_ind, e_ind = int(record[\"s_ind\"]), int(record[\"e_ind\"])\n        word_ids = record[\"w_ids\"]\n        char_ids = record.get(\"c_ids\", None)\n        return record, video_feature, word_ids, char_ids, s_ind, e_ind\n\n    def __len__(self):\n        return len(self.dataset)\n\n\ndef train_collate_fn(data):\n    records, video_features, word_ids, char_ids, s_inds, e_inds = zip(*data)\n    # If BERT is used, pad individual components of the dictionary.\n    if not isinstance(word_ids[0], list):\n        pad_input_ids, _ = pad_seq([ii[\"input_ids\"] for ii in word_ids])\n        pad_attention_mask, _ = pad_seq([ii[\"attention_mask\"] for ii in word_ids])\n        pad_token_type_ids, _ = pad_seq([ii[\"token_type_ids\"] for ii in word_ids])\n        word_ids = {\n            \"input_ids\": torch.LongTensor(pad_input_ids),\n            \"attention_mask\": torch.LongTensor(pad_attention_mask),\n            \"token_type_ids\": torch.LongTensor(pad_token_type_ids),\n        }\n        char_ids = None\n    else:\n        # process word ids\n        word_ids, _ = pad_seq(word_ids)\n        word_ids = np.asarray(word_ids, dtype=np.int32)  # (batch_size, w_seq_len)\n        # process char ids\n        char_ids, _ = pad_char_seq(char_ids)\n        char_ids = np.asarray(\n            char_ids, dtype=np.int32\n        )  # (batch_size, w_seq_len, c_seq_len)\n        word_ids = torch.tensor(word_ids, dtype=torch.int64)\n        char_ids = torch.tensor(char_ids, dtype=torch.int64)\n    # process video features\n    vfeats, vfeat_lens = pad_video_seq(video_features)\n    vfeats = np.asarray(vfeats, dtype=np.float32)  # (batch_size, v_seq_len, v_dim)\n    vfeat_lens = np.asarray(vfeat_lens, dtype=np.int32)  # (batch_size, )\n    # process labels\n    max_len = np.max(vfeat_lens)\n    batch_size = vfeat_lens.shape[0]\n    s_labels = np.asarray(s_inds, dtype=np.int64)\n    e_labels = np.asarray(e_inds, dtype=np.int64)\n    h_labels = np.zeros(shape=[batch_size, max_len], dtype=np.int32)\n    extend = 0.1\n    for idx in range(batch_size):\n        st, et = s_inds[idx], e_inds[idx]\n        cur_max_len = vfeat_lens[idx]\n        extend_len = round(extend * float(et - st + 1))\n        if extend_len > 0:\n            st_ = max(0, st - extend_len)\n            et_ = min(et + extend_len, cur_max_len - 1)\n            h_labels[idx][st_ : (et_ + 1)] = 1\n        else:\n            h_labels[idx][st : (et + 1)] = 1\n    # convert to torch tensor\n    vfeats = torch.tensor(vfeats, dtype=torch.float32)\n    vfeat_lens = torch.tensor(vfeat_lens, dtype=torch.int64)\n    s_labels = torch.tensor(s_labels, dtype=torch.int64)\n    e_labels = torch.tensor(e_labels, dtype=torch.int64)\n    h_labels = torch.tensor(h_labels, dtype=torch.int64)\n    return records, vfeats, vfeat_lens, word_ids, char_ids, s_labels, e_labels, h_labels\n\n\ndef test_collate_fn(data):\n    records, video_features, word_ids, char_ids, *_ = zip(*data)\n    # If BERT is used, pad individual components of the dictionary.\n    if not isinstance(word_ids[0], list):\n        pad_input_ids, _ = pad_seq([ii[\"input_ids\"] for ii in word_ids])\n        pad_attention_mask, _ = pad_seq([ii[\"attention_mask\"] for ii in word_ids])\n        pad_token_type_ids, _ = pad_seq([ii[\"token_type_ids\"] for ii in word_ids])\n        word_ids = {\n            \"input_ids\": torch.LongTensor(pad_input_ids),\n            \"attention_mask\": torch.LongTensor(pad_attention_mask),\n            \"token_type_ids\": torch.LongTensor(pad_token_type_ids),\n        }\n        char_ids = None\n    else:\n        # process word ids\n        word_ids, _ = pad_seq(word_ids)\n        word_ids = np.asarray(word_ids, dtype=np.int32)  # (batch_size, w_seq_len)\n        # process char ids\n        char_ids, _ = pad_char_seq(char_ids)\n        char_ids = np.asarray(\n            char_ids, dtype=np.int32\n        )  # (batch_size, w_seq_len, c_seq_len)\n        word_ids = torch.tensor(word_ids, dtype=torch.int64)\n        char_ids = torch.tensor(char_ids, dtype=torch.int64)\n    # process video features\n    vfeats, vfeat_lens = pad_video_seq(video_features)\n    vfeats = np.asarray(vfeats, dtype=np.float32)  # (batch_size, v_seq_len, v_dim)\n    vfeat_lens = np.asarray(vfeat_lens, dtype=np.int32)  # (batch_size, )\n    # convert to torch tensor\n    vfeats = torch.tensor(vfeats, dtype=torch.float32)\n    vfeat_lens = torch.tensor(vfeat_lens, dtype=torch.int64)\n    return records, vfeats, vfeat_lens, word_ids, char_ids\n\n\ndef get_train_loader(dataset, video_features, configs):\n    train_set = Dataset(dataset=dataset, video_features=video_features)\n    train_loader = torch.utils.data.DataLoader(\n        dataset=train_set,\n        batch_size=configs.batch_size,\n        shuffle=True,\n        pin_memory=True,\n        num_workers=configs.data_loader_workers,\n        collate_fn=train_collate_fn,\n    )\n    return train_loader\n\n\ndef get_test_loader(dataset, video_features, configs):\n    test_set = Dataset(dataset=dataset, video_features=video_features)\n    test_loader = torch.utils.data.DataLoader(\n        dataset=test_set,\n        batch_size=configs.batch_size,\n        shuffle=False,\n        pin_memory=True,\n        num_workers=configs.data_loader_workers,\n        collate_fn=test_collate_fn,\n    )\n    return test_loader\n"
  },
  {
    "path": "NLQ/VSLNet/utils/data_util.py",
    "content": "import glob\nimport json\nimport os\nimport pickle\n\nimport numpy as np\nimport torch\nfrom tqdm import tqdm\n\n\ndef load_json(filename):\n    with open(filename, mode=\"r\", encoding=\"utf-8\") as f:\n        data = json.load(f)\n    return data\n\n\ndef save_json(data, filename, save_pretty=False, sort_keys=False):\n    with open(filename, mode=\"w\", encoding=\"utf-8\") as f:\n        if save_pretty:\n            f.write(json.dumps(data, indent=4, sort_keys=sort_keys))\n        else:\n            json.dump(data, f)\n\n\ndef load_lines(filename):\n    with open(filename, mode=\"r\", encoding=\"utf-8\") as f:\n        return [e.strip(\"\\n\") for e in f.readlines()]\n\n\ndef save_lines(data, filename):\n    with open(filename, mode=\"w\", encoding=\"utf-8\") as f:\n        f.write(\"\\n\".join(data))\n\n\ndef load_pickle(filename):\n    with open(filename, mode=\"rb\") as handle:\n        data = pickle.load(handle)\n        return data\n\n\ndef save_pickle(data, filename):\n    with open(filename, mode=\"wb\") as handle:\n        pickle.dump(data, handle, protocol=pickle.HIGHEST_PROTOCOL)\n\n\ndef load_video_features(root, max_position_length):\n    video_features = dict()\n    extension = \"*.pt\"\n\n    filenames = glob.glob(os.path.join(root, extension))\n    for filename in tqdm(filenames, total=len(filenames), desc=\"load video features\"):\n        video_id = filename.split(\"/\")[-1].split(\".\")[0]\n        feature = torch.load(filename).to(torch.float32).cpu().numpy()\n        if max_position_length is None:\n            video_features[video_id] = feature\n        else:\n            new_feature = visual_feature_sampling(\n                feature, max_num_clips=max_position_length\n            )\n            video_features[video_id] = new_feature\n            # if new_feature.shape[0] != feature.shape[0]:\n            #    print(f\"Reduced: {feature.shape[0]} --> {new_feature.shape[0]}\")\n    return video_features\n\n\ndef visual_feature_sampling(visual_feature, max_num_clips):\n    num_clips = visual_feature.shape[0]\n    if num_clips <= max_num_clips:\n        return visual_feature\n    idxs = np.arange(0, max_num_clips + 1, 1.0) / max_num_clips * num_clips\n    idxs = np.round(idxs).astype(np.int32)\n    idxs[idxs > num_clips - 1] = num_clips - 1\n    new_visual_feature = []\n    for i in range(max_num_clips):\n        s_idx, e_idx = idxs[i], idxs[i + 1]\n        if s_idx < e_idx:\n            new_visual_feature.append(np.mean(visual_feature[s_idx:e_idx], axis=0))\n        else:\n            new_visual_feature.append(visual_feature[s_idx])\n    new_visual_feature = np.asarray(new_visual_feature)\n    return new_visual_feature\n\n\ndef compute_overlap(pred, gt):\n    # check format\n    assert isinstance(pred, list) and isinstance(gt, list)\n    pred_is_list = isinstance(pred[0], list)\n    gt_is_list = isinstance(gt[0], list)\n    pred = pred if pred_is_list else [pred]\n    gt = gt if gt_is_list else [gt]\n    # compute overlap\n    pred, gt = np.array(pred), np.array(gt)\n    inter_left = np.maximum(pred[:, 0, None], gt[None, :, 0])\n    inter_right = np.minimum(pred[:, 1, None], gt[None, :, 1])\n    inter = np.maximum(0.0, inter_right - inter_left)\n    union_left = np.minimum(pred[:, 0, None], gt[None, :, 0])\n    union_right = np.maximum(pred[:, 1, None], gt[None, :, 1])\n    union = np.maximum(1e-12, union_right - union_left)\n    overlap = 1.0 * inter / union\n    # reformat output\n    overlap = overlap if gt_is_list else overlap[:, 0]\n    overlap = overlap if pred_is_list else overlap[0]\n    return overlap\n\n\ndef time_to_index(start_time, end_time, num_units, duration):\n    s_times = np.arange(0, num_units).astype(np.float32) / float(num_units) * duration\n    e_times = (\n        np.arange(1, num_units + 1).astype(np.float32) / float(num_units) * duration\n    )\n    candidates = np.stack(\n        [\n            np.repeat(s_times[:, None], repeats=num_units, axis=1),\n            np.repeat(e_times[None, :], repeats=num_units, axis=0),\n        ],\n        axis=2,\n    ).reshape((-1, 2))\n    overlaps = compute_overlap(candidates.tolist(), [start_time, end_time]).reshape(\n        num_units, num_units\n    )\n    start_index = np.argmax(overlaps) // num_units\n    end_index = np.argmax(overlaps) % num_units\n    return start_index, end_index, overlaps\n\n\ndef index_to_time(start_index, end_index, num_units, duration):\n    s_times = np.arange(0, num_units).astype(np.float32) * duration / float(num_units)\n    e_times = (\n        np.arange(1, num_units + 1).astype(np.float32) * duration / float(num_units)\n    )\n    start_time = s_times[start_index]\n    end_time = e_times[end_index]\n    return start_time, end_time\n\n\ndef pad_seq(sequences, pad_tok=None, max_length=None):\n    if pad_tok is None:\n        pad_tok = 0  # 0: \"PAD\" for words and chars, \"PAD\" for tags\n    if max_length is None:\n        max_length = max([len(seq) for seq in sequences])\n    sequence_padded, sequence_length = [], []\n    for seq in sequences:\n        seq_ = seq[:max_length] + [pad_tok] * max(max_length - len(seq), 0)\n        sequence_padded.append(seq_)\n        sequence_length.append(min(len(seq), max_length))\n    return sequence_padded, sequence_length\n\n\ndef pad_char_seq(sequences, max_length=None, max_length_2=None):\n    sequence_padded, sequence_length = [], []\n    if max_length is None:\n        max_length = max(map(lambda x: len(x), sequences))\n    if max_length_2 is None:\n        max_length_2 = max([max(map(lambda x: len(x), seq)) for seq in sequences])\n    for seq in sequences:\n        sp, sl = pad_seq(seq, max_length=max_length_2)\n        sequence_padded.append(sp)\n        sequence_length.append(sl)\n    sequence_padded, _ = pad_seq(\n        sequence_padded, pad_tok=[0] * max_length_2, max_length=max_length\n    )\n    sequence_length, _ = pad_seq(sequence_length, max_length=max_length)\n    return sequence_padded, sequence_length\n\n\ndef pad_video_seq(sequences, max_length=None):\n    if max_length is None:\n        max_length = max([vfeat.shape[0] for vfeat in sequences])\n    feature_length = sequences[0].shape[1]\n    sequence_padded, sequence_length = [], []\n    for seq in sequences:\n        add_length = max_length - seq.shape[0]\n        sequence_length.append(seq.shape[0])\n        if add_length > 0:\n            add_feature = np.zeros(shape=[add_length, feature_length], dtype=np.float32)\n            seq_ = np.concatenate([seq, add_feature], axis=0)\n        else:\n            seq_ = seq\n        sequence_padded.append(seq_)\n    return sequence_padded, sequence_length\n"
  },
  {
    "path": "NLQ/VSLNet/utils/evaluate_ego4d_nlq.py",
    "content": "#! /usr/bin/env python\n\"\"\"\nScript to evaluate performance of any model for Ego4d Episodic Memory.\n\nNatural Language Queries (NLQ)\n\"\"\"\n\nfrom __future__ import absolute_import, division, print_function, unicode_literals\n\nimport argparse\nimport json\n\nimport numpy as np\nimport terminaltables\n\n\ndef display_results(results, mIoU, thresholds, topK, title=None):\n    names = [\n        f\"Rank@{ii}\\nmIoU@{jj}\" for ii in topK for jj in thresholds\n    ] + [\"mIoU\"]\n    results *= 100\n    mIoU *= 100\n    values = [\n        results[jj][ii]\n        for ii in range(len(topK))\n        for jj in range(len(thresholds))\n    ] + [mIoU]\n    display_data = [names, [f\"{x:.2f}\" for x in values]]\n    table = terminaltables.AsciiTable(display_data, title)\n    for ii in range(len(thresholds) * len(topK)):\n        table.justify_columns[ii] = \"center\"\n    return table.table, dict(zip(names, values))\n\n\ndef compute_IoU(pred, gt):\n    \"\"\"Compute the IoU given predicted and ground truth windows.\"\"\"\n    assert isinstance(pred, list) and isinstance(gt, list)\n    pred_is_list = isinstance(pred[0], list)\n    gt_is_list = isinstance(gt[0], list)\n    if not pred_is_list:\n        pred = [pred]\n    if not gt_is_list:\n        gt = [gt]\n    pred, gt = np.array(pred), np.array(gt)\n    inter_left = np.maximum(pred[:, 0, None], gt[None, :, 0])\n    inter_right = np.minimum(pred[:, 1, None], gt[None, :, 1])\n    inter = np.maximum(0.0, inter_right - inter_left)\n    union_left = np.minimum(pred[:, 0, None], gt[None, :, 0])\n    union_right = np.maximum(pred[:, 1, None], gt[None, :, 1])\n    union = np.maximum(0.0, union_right - union_left)\n    overlap = 1.0 * inter / union\n    if not gt_is_list:\n        overlap = overlap[:, 0]\n    if not pred_is_list:\n        overlap = overlap[0]\n    return overlap\n\n\ndef evaluate_nlq_performance(\n    predictions, ground_truth, thresholds, topK, per_instance=False\n):\n    \"\"\"Evalutes the performances.\"\"\"\n    gt_dict = {}\n    num_gt_queries = 0\n\n    for video_datum in ground_truth[\"videos\"]:\n        for clip_datum in video_datum[\"clips\"]:\n            clip_uid = clip_datum[\"clip_uid\"]\n            for ann_datum in clip_datum[\"annotations\"]:\n                key = (clip_uid, ann_datum[\"annotation_uid\"])\n                gt_dict[key] = ann_datum\n                num_gt_queries += len(ann_datum[\"language_queries\"])\n\n    results = [[[] for _ in topK] for _ in thresholds]\n    average_IoU = []\n    num_instances = 0\n    for pred_datum in predictions:\n        key = (pred_datum[\"clip_uid\"], pred_datum[\"annotation_uid\"])\n        assert key in gt_dict, \"Instance not present!\"\n        query_id = pred_datum[\"query_idx\"]\n        gt_datum = gt_dict[key]\n        gt_query_datum = gt_datum[\"language_queries\"][query_id]\n\n        # Compute overlap and recalls.\n        overlap = compute_IoU(\n            pred_datum[\"predicted_times\"],\n            [[gt_query_datum[\"clip_start_sec\"], gt_query_datum[\"clip_end_sec\"]]],\n        )\n        average_IoU.append(np.mean(np.sort(overlap[0])[-3:]))\n        for tt, threshold in enumerate(thresholds):\n            for rr, KK in enumerate(topK):\n                results[tt][rr].append((overlap > threshold)[:KK].any())\n        num_instances += 1\n\n    mean_results = np.array(results).mean(axis=-1)\n    mIoU = np.mean(average_IoU)\n    print(f\"Evaluated: {num_instances} / {num_gt_queries} instances\")\n    if per_instance:\n        per_instance_results = {\n            \"overlap\": overlap,\n            \"average_IoU\": average_IoU,\n            \"results\": results,\n        }\n        return mean_results, mIoU, per_instance_results\n    else:\n        return mean_results, mIoU\n\n\ndef main(args):\n    print(f\"\"\"Reading predictions: {args[\"model_prediction_json\"]}\"\"\")\n    with open(args[\"model_prediction_json\"], \"r\") as file_id:\n        predictions = json.load(file_id)\n\n    print(f\"\"\"Reading gt: {args[\"ground_truth_json\"]}\"\"\")\n    with open(args[\"ground_truth_json\"], \"r\") as file_id:\n        ground_truth = json.load(file_id)\n\n    assert predictions.get(\"version\", None) == \"1.0\", \"Ego4D version does not match!\"\n    assert predictions.get(\"challenge\", None) == \"ego4d_nlq_challenge\", (\n        \"Ego4D challenge does not match!\"\n    )\n    results, mIoU = evaluate_nlq_performance(\n        predictions[\"results\"], ground_truth, args[\"thresholds\"], args[\"topK\"]\n    )\n    print(display_results(results, mIoU, args[\"thresholds\"], args[\"topK\"])[0])\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument(\n        \"--ground_truth_json\",\n        required=True,\n        help=\"Ground truth temporal windows\",\n    )\n    parser.add_argument(\n        \"--model_prediction_json\",\n        required=True,\n        help=\"Model predicted temporal windows\",\n    )\n    parser.add_argument(\n        \"--thresholds\",\n        required=True,\n        nargs=\"+\",\n        type=float,\n        help=\"Thresholds for IoU computation\",\n    )\n    parser.add_argument(\n        \"--topK\",\n        required=True,\n        nargs=\"+\",\n        type=int,\n        help=\"Top K for computing recall@k\",\n    )\n\n    try:\n        parsed_args = vars(parser.parse_args())\n    except (IOError) as msg:\n        parser.error(str(msg))\n    main(parsed_args)\n"
  },
  {
    "path": "NLQ/VSLNet/utils/prepare_ego4d_dataset.py",
    "content": "#! /usr/bin/env python\n\"\"\"\nPrepare Ego4d episodic memory NLQ for model training.\n\"\"\"\n\nfrom __future__ import absolute_import, division, print_function, unicode_literals\n\nimport argparse\nimport collections\nimport csv\nimport json\nimport math\nimport os\n\nimport torch\nimport tqdm\n\n\nCANONICAL_VIDEO_FPS = 30.0\nFEATURE_WINDOW_SIZE = 16.0\nFEATURES_PER_SEC = CANONICAL_VIDEO_FPS / FEATURE_WINDOW_SIZE\n\n\ndef get_nearest_frame(time, floor_or_ceil=None):\n    \"\"\"Obtain the nearest frame for a given time, video fps, and feature window.\"\"\"\n    return floor_or_ceil(int(time * CANONICAL_VIDEO_FPS / FEATURE_WINDOW_SIZE))\n\n\ndef process_question(question):\n    \"\"\"Process the question to make it canonical.\"\"\"\n    return question.strip(\" \").strip(\"?\").lower() + \"?\"\n\n\ndef reformat_data(split_data, test_split=False):\n    \"\"\"Convert the format from JSON files.\n    fps, num_frames, timestamps, sentences, exact_times,\n    annotation_uids, query_idx.\n    \"\"\"\n    formatted_data = {}\n    clip_video_map = {}\n    for video_datum in split_data[\"videos\"]:\n        for clip_datum in video_datum[\"clips\"]:\n            clip_uid = clip_datum[\"clip_uid\"]\n            clip_video_map[clip_uid] = (\n                video_datum[\"video_uid\"],\n                clip_datum[\"video_start_sec\"],\n                clip_datum[\"video_end_sec\"],\n            )\n            clip_duration = clip_datum[\"video_end_sec\"] - clip_datum[\"video_start_sec\"]\n            num_frames = get_nearest_frame(clip_duration, math.ceil)\n            new_dict = {\n                \"fps\": FEATURES_PER_SEC,\n                \"num_frames\": num_frames,\n                \"timestamps\": [],\n                \"exact_times\": [],\n                \"sentences\": [],\n                \"annotation_uids\": [],\n                \"query_idx\": [],\n            }\n\n            for ann_datum in clip_datum[\"annotations\"]:\n                for index, datum in enumerate(ann_datum[\"language_queries\"]):\n                    if not test_split:\n                        start_time = float(datum[\"clip_start_sec\"])\n                        end_time = float(datum[\"clip_end_sec\"])\n                    else:\n                        # Random placeholders for test set.\n                        start_time = 0.\n                        end_time = 0.\n\n                    if \"query\" not in datum or not datum[\"query\"]:\n                        continue\n                    new_dict[\"sentences\"].append(process_question(datum[\"query\"]))\n                    new_dict[\"annotation_uids\"].append(ann_datum[\"annotation_uid\"])\n                    new_dict[\"query_idx\"].append(index)\n                    new_dict[\"exact_times\"].append([start_time, end_time]),\n                    new_dict[\"timestamps\"].append(\n                        [\n                            get_nearest_frame(start_time, math.floor),\n                            get_nearest_frame(end_time, math.ceil),\n                        ]\n                    )\n            formatted_data[clip_uid] = new_dict\n    return formatted_data, clip_video_map\n\n\ndef convert_ego4d_dataset(args):\n    \"\"\"Convert the Ego4D dataset for VSLNet.\"\"\"\n    # Reformat the splits to train vslnet.\n    all_clip_video_map = {}\n    for split in (\"train\", \"val\", \"test\"):\n        read_path = args[f\"input_{split}_split\"]\n        print(f\"Reading [{split}]: {read_path}\")\n        with open(read_path, \"r\") as file_id:\n            raw_data = json.load(file_id)\n        data_split, clip_video_map = reformat_data(raw_data, split == \"test\")\n        all_clip_video_map.update(clip_video_map)\n        num_instances = sum(len(ii[\"sentences\"]) for ii in data_split.values())\n        print(f\"# {split}: {num_instances}\")\n\n        os.makedirs(args[\"output_save_path\"], exist_ok=True)\n        save_path = os.path.join(args[\"output_save_path\"], f\"{split}.json\")\n        print(f\"Writing [{split}]: {save_path}\")\n        with open(save_path, \"w\") as file_id:\n            json.dump(data_split, file_id)\n\n    # Extract visual features based on the all_clip_video_map.\n    feature_sizes = {}\n    os.makedirs(args[\"clip_feature_save_path\"], exist_ok=True)\n    progress_bar = tqdm.tqdm(all_clip_video_map.items(), desc=\"Extracting features\")\n    for clip_uid, (video_uid, start_sec, end_sec) in progress_bar:\n        feature_path = os.path.join(args[\"video_feature_read_path\"], f\"{video_uid}.pt\")\n        feature = torch.load(feature_path)\n\n        # Get the lower frame (start_sec) and upper frame (end_sec) for the clip.\n        clip_start = get_nearest_frame(start_sec, math.floor)\n        clip_end = get_nearest_frame(end_sec, math.ceil)\n        clip_feature = feature[clip_start : clip_end + 1]\n        feature_sizes[clip_uid] = clip_feature.shape[0]\n        feature_save_path = os.path.join(\n            args[\"clip_feature_save_path\"], f\"{clip_uid}.pt\"\n        )\n        torch.save(clip_feature, feature_save_path)\n\n    save_path = os.path.join(args[\"clip_feature_save_path\"], \"feature_shapes.json\")\n    with open(save_path, \"w\") as file_id:\n        json.dump(feature_sizes, file_id)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument(\n        \"--input_train_split\", required=True, help=\"Path to Ego4d train split\"\n    )\n    parser.add_argument(\n        \"--input_val_split\", required=True, help=\"Path to Ego4d val split\"\n    )\n    parser.add_argument(\n        \"--input_test_split\", required=True, help=\"Path to Ego4d test split\"\n    )\n    parser.add_argument(\n        \"--output_save_path\", required=True, help=\"Path to save the output jsons\"\n    )\n    parser.add_argument(\n        \"--video_feature_read_path\", required=True, help=\"Path to read video features\"\n    )\n    parser.add_argument(\n        \"--clip_feature_save_path\",\n        required=True,\n        help=\"Path to save clip video features\",\n    )\n    try:\n        parsed_args = vars(parser.parse_args())\n    except (IOError) as msg:\n        parser.error(str(msg))\n\n    convert_ego4d_dataset(parsed_args)\n"
  },
  {
    "path": "NLQ/VSLNet/utils/runner_utils.py",
    "content": "import copy\nimport glob\nimport json\nimport os\nimport random\n\nimport numpy as np\nimport torch\nimport torch.backends.cudnn\nimport torch.utils.data\nfrom tqdm import tqdm\n\nimport utils.evaluate_ego4d_nlq as ego4d_eval\nfrom utils.data_util import index_to_time\n\n\ndef set_th_config(seed):\n    random.seed(seed)\n    np.random.seed(seed)\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed(seed)\n    torch.cuda.manual_seed_all(seed)\n    torch.backends.cudnn.benchmark = False\n    torch.backends.cudnn.deterministic = True\n\n\ndef filter_checkpoints(model_dir, suffix=\"t7\", max_to_keep=5):\n    model_paths = glob.glob(os.path.join(model_dir, \"*.{}\".format(suffix)))\n    if len(model_paths) > max_to_keep:\n        model_file_dict = dict()\n        suffix_len = len(suffix) + 1\n        for model_path in model_paths:\n            step = int(os.path.basename(model_path).split(\"_\")[1][0:-suffix_len])\n            model_file_dict[step] = model_path\n        sorted_tuples = sorted(model_file_dict.items())\n        unused_tuples = sorted_tuples[0:-max_to_keep]\n        for _, model_path in unused_tuples:\n            os.remove(model_path)\n\n\ndef get_last_checkpoint(model_dir, suffix=\"t7\"):\n    model_filenames = glob.glob(os.path.join(model_dir, \"*.{}\".format(suffix)))\n    model_file_dict = dict()\n    suffix_len = len(suffix) + 1\n    for model_filename in model_filenames:\n        step = int(os.path.basename(model_filename).split(\"_\")[1][0:-suffix_len])\n        model_file_dict[step] = model_filename\n    sorted_tuples = sorted(model_file_dict.items())\n    last_checkpoint = sorted_tuples[-1]\n    return last_checkpoint[1]\n\n\ndef convert_length_to_mask(lengths):\n    max_len = lengths.max().item()\n    mask = torch.arange(max_len, device=lengths.device).expand(\n        lengths.size()[0], max_len\n    ) < lengths.unsqueeze(1)\n    mask = mask.float()\n    return mask\n\n\ndef eval_test(\n    model,\n    data_loader,\n    device,\n    mode=\"test\",\n    result_save_path=None,\n    gt_json_path=None,\n    epoch=None,\n    global_step=None,\n):\n    predictions = []\n    with torch.no_grad():\n        for idx, (records, vfeats, vfeat_lens, word_ids, char_ids) in tqdm(\n            enumerate(data_loader),\n            total=len(data_loader),\n            desc=\"evaluate {}\".format(mode),\n        ):\n            # prepare features\n            vfeats, vfeat_lens = vfeats.to(device), vfeat_lens.to(device)\n\n            if isinstance(word_ids, dict):\n                word_ids = {key: val.to(device) for key, val in word_ids.items()}\n                # generate mask\n                query_mask = (\n                    (torch.zeros_like(word_ids[\"input_ids\"]) != word_ids[\"input_ids\"])\n                    .float()\n                    .to(device)\n                )\n            else:\n                word_ids, char_ids = word_ids.to(device), char_ids.to(device)\n                # generate mask\n                query_mask = (torch.zeros_like(word_ids) != word_ids).float().to(device)\n\n            # generate mask\n            video_mask = convert_length_to_mask(vfeat_lens).to(device)\n            # compute predicted results\n            _, start_logits, end_logits = model(\n                word_ids, char_ids, vfeats, video_mask, query_mask\n            )\n            start_indices, end_indices = model.extract_index(start_logits, end_logits)\n            start_indices = start_indices.cpu().numpy()\n            end_indices = end_indices.cpu().numpy()\n\n            # Record output and use standard evalution script for NLQ.\n            for record, starts, ends in zip(records, start_indices, end_indices):\n                # Convert all indices to times.\n                timewindow_predictions = []\n                for start, end in zip(starts, ends):\n                    start_time, end_time = index_to_time(\n                        start, end, record[\"v_len\"], record[\"duration\"]\n                    )\n                    timewindow_predictions.append([float(start_time), float(end_time)])\n                new_datum = {\n                    \"clip_uid\": record[\"vid\"],\n                    \"annotation_uid\": record[\"annotation_uid\"],\n                    \"query_idx\": int(record[\"query_idx\"]),\n                    \"predicted_times\": copy.deepcopy(timewindow_predictions),\n                }\n                predictions.append(new_datum)\n\n    # Save predictions if path is provided.\n    if result_save_path:\n        with open(result_save_path, \"w\") as file_id:\n            json.dump(\n                {\n                    \"version\": \"1.0\",\n                    \"challenge\": \"ego4d_nlq_challenge\",\n                    \"results\": predictions,\n                }, file_id\n            )\n\n    # Evaluate if ground truth JSON file is provided.\n    if gt_json_path:\n        with open(gt_json_path) as file_id:\n            ground_truth = json.load(file_id)\n        thresholds = [0.3, 0.5, 0.01]\n        topK = [1, 3, 5]\n        results, mIoU = ego4d_eval.evaluate_nlq_performance(\n            predictions, ground_truth, thresholds, topK\n        )\n        title = f\"Epoch {epoch}, Step {global_step}\"\n        display_results = ego4d_eval.display_results(\n            results, mIoU, thresholds, topK, title=title\n        )\n    else:\n        results = None\n        mIoU = None\n        display_results = None\n    return results, mIoU, display_results\n"
  },
  {
    "path": "README.md",
    "content": "**[NEW!] Detailed examples for VQ Challenge submission available here: [VQ2D README](./VQ2D/README.md)**\n\n**[NEW!] 2022 [Ego4D Challenges](https://ego4d-data.org/docs/challenge/) now open for Episodic Memory**\n- [Natural Language Queries](https://eval.ai/web/challenges/challenge-page/1629/overview)\n- [Visual Queries 2D](https://eval.ai/web/challenges/challenge-page/1843/overview)\n- [Moments queries](https://eval.ai/web/challenges/challenge-page/1626/overview)\n- [Visual Queries 3D](https://eval.ai/web/challenges/challenge-page/1646/overview)\n\nPlease note that:\n- VQ test annotations for challenge submissions are now available: [Ego4D Challenges](https://ego4d-data.org/docs/challenge/)\n- NLQ annotations have a known issue where ~14% of annotations have a near-0 query window and will result in under reported performance for the challenge (which will be corrected with a future dataset update): [NLQ Forum Post](https://discuss.ego4d-data.org/t/nlq-annotation-zero-temporal-windows/36)\n\n# Ego4D Episodic Memory Benchmark\n\n[EGO4D](https://ego4d-data.org/docs/) is the world's largest egocentric (first person) video ML dataset and benchmark suite.\n\nFor more information on Ego4D or to download the dataset, read: [Start Here](https://ego4d-data.org/docs/start-here/).\n\nThe [Episodic Memory Benchmark](https://ego4d-data.org/docs/benchmarks/episodic-memory/) aims to make past video queryable and requires localizing where the answer can be seen within the user’s past video.  The repository contains the code needed to reproduce the results in the [Ego4D: Around the World in 3,000 Hours of Egocentric Video](https://arxiv.org/abs/2110.07058).\n\nThere are 4 related tasks within a benchmark. Please see the README within each benchmark for details on setting up the codebase.\n\n# [VQ2D](./VQ2D/README.md): *Visual Queries with 2D Localization*\n\nThis task asks: “When did I last see [this]?”  Given an egocentric video clip and an image crop depicting the query object, the goal is to return the last occurrence of the object in the input video, in terms of the tracked bounding box (2D + temporal localization).  The novelty of this task is to upgrade traditional object instance recognition to deal with video, and particularly ego-video with challenging view transformations.\n\n# [VQ3D](./VQ3D/README.md): *Visual Queries with 3D Localization*\n\nThis task asks, “Where did I last see [this]?”  Given an egocentric video clip and an image crop depicting the query object, the goal is to localize the last time it was seen in the video and return a 3D displacement vector from the camera center of the query frame to the center of the object in 3D.  Hence, this task builds on the 2D localization above, expanding it to require localization in the 3D environment.  The task is novel in how it requires both video object instance recognition and 3D reasoning.\n\n# [NLQ](./NLQ/README.md): *Natural Language Queries*\n\nThis task asks, \"What/when/where....?\" -- general natural language questions about the video past.    Given a video clip and a query expressed in natural language, the goal is to localize the temporal window within all the video history where the answer to the question is evident.  The task is novel because it requires searching through video to answer flexible linguistic queries.  For brevity, these example clips illustrate the video surrounding the ground truth (whereas the original input videos are each ~8 min). \n\n# [MQ](./MQ/README.md): *Moments Queries*\n\nThis task asks, \"When did I do X?”  Given an egocentric video and an activity name (i.e., a \"moment\"), the goal is to localize all instances of that activity in the past video.  The task is activity detection, but specifically for the egocentric activity of the camera wearer who is largely out of view.\n\n\nLicense\n\nEgo4D is released under the MIT License.\n"
  },
  {
    "path": "VQ2D/.gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n*.py,cover\n.hypothesis/\n.pytest_cache/\ncover/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\n.pybuilder/\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n#   For a library or package, you might want to ignore these files since the code is\n#   intended to run in multiple environments; otherwise, check them in:\n# .python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow\n__pypackages__/\n\n# Celery stuff\ncelerybeat-schedule\ncelerybeat.pid\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n\n# pytype static type analyzer\n.pytype/\n\n# Cython debug symbols\ncython_debug/\n\n# Visual studio code\n.vscode\n\ndata\nexperiments\npretrained_models\noutputs"
  },
  {
    "path": "VQ2D/README.md",
    "content": "# Visual Queries 2D localization\n\n## Installation instructions\nAlso see the [VQ2D Quickstart Colab Notebook](https://colab.research.google.com/drive/1vtVOQzLarBCspQjH5RtHZ8qzH0VZxrmZ?usp=sharing) that walks through these instructions.\n\n1. Clone the repository from [here](https://github.com/EGO4D/episodic-memory).\n    ```\n    git clone git@github.com:EGO4D/episodic-memory.git\n    cd episodic-memory/VQ2D\n    export VQ2D_ROOT=$PWD\n    ```\n2. Create conda environment.\n    ```\n    conda create -n ego4d_vq2d python=3.8\n    ```\n\n3. Install [pytorch](https://pytorch.org/) using conda. We rely on cuda-10.2 and cudnn-7.6.5.32 for our experiments.\n    ```\n    conda install pytorch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 cudatoolkit=10.2 -c pytorch\n    ```\n\n4. Install additional requirements using `pip`.\n    ```\n    pip install -r requirements.txt\n    ```\n\n5. Install [detectron2](https://github.com/facebookresearch/detectron2).\n    ```\n    python -m pip install detectron2 -f \\\n    https://dl.fbaipublicfiles.com/detectron2/wheels/cu111/torch1.8/index.html\n    ```\n\n6.  Install pytracking according to [these instructions](https://github.com/visionml/pytracking/blob/master/INSTALL.md). Download the pre-trained [KYS tracker weights](https://drive.google.com/drive/folders/1WGNcats9lpQpGjAmq0s0UwO6n22fxvKi) to `$VQ2D_ROOT/pretrained_models/kys.pth`.\n    ```\n    cd $VQ2D_ROOT/dependencies\n    git clone git@github.com:visionml/pytracking.git\n    git checkout de9cb9bb4f8cad98604fe4b51383a1e66f1c45c0\n    ```\n\n    Note: For installing the [spatial-correlation-sampler](https://github.com/ClementPinard/Pytorch-Correlation-extension) dependency for pytracking, follow these steps if the pip install fails.\n    ```\n    cd $VQ2D_ROOT/dependencies\n    git clone git@github.com:ClementPinard/Pytorch-Correlation-extension.git\n    cd Pytorch-Correlation-extension\n    python setup.py install\n    ```\n7. Create a script `~/enable_em_vq2d.sh` to set necessary environment variables and activate the conda environment.\n    ```\n    #!/usr/bin/bash\n\n    # Add anaconda path\n    export PATH=\"$PATH:<PATH TO anaconda3>/bin\"\n    # Activate conda environment\n    source activate ego4d_vq2d\n\n    CUDA_DIR=<PATH TO cuda-10.2>\n    CUDNN_DIR=<PATH TO cudnn-10.2-v8.0.3>\n\n    # Add cuda, cudnn paths\n    export CUDA_HOME=$CUDA_DIR\n    export CUDNN_PATH=$CUDNN_DIR/cuda/lib64/libcudnn.so\n    export CUDNN_INCLUDE_DIR=$CUDNN_DIR/cuda/include\n    export CUDNN_LIBRARY=$CUDNN_DIR/cuda/lib64\n    export CUDACXX=$CUDA_DIR/bin/nvcc\n\n    export VQ2D_ROOT=<PATH TO episodic-memory repo>/VQ2D\"\n    ```\n\n## Preparing data for training and inference\n\n1. Download the videos as instructed [here](https://github.com/facebookresearch/Ego4d/blob/main/ego4d/cli/README.md) to `$VQ2D_ROOT/data`.\n    ```\n    ego4d --output_directory=\"$VQ2D_ROOT/data\" --datasets full_scale\n    # Define ego4d videos directory\n    export EGO4D_VIDEOS_DIR=$VQ2D_ROOT/data/v1/full_scale\n    ```\n2. Download the latest annotations to `$VQ2D_ROOT/data`. We use an updated version (v1.0.5) of the VQ2D annotations which includes fixes to a subset of data (check details [here](https://eval.ai/web/challenges/challenge-page/1843/overview)). These primarily affect the train and val splits (and not test split). In local experiments, we find that this leads to improved baseline performance on the val split:\n    ```\n    # Download the data using the Ego4D CLI.\n    ego4d --output_directory=\"$VQ2D_ROOT/data\" --datasets annotations -y --version v2\n\n    # Move out vq annotations to $VQ2D_ROOT/data\n    mv $VQ2D_ROOT/data/v2/annotations/vq_*.json $VQ2D_ROOT/data\n    ```\n\n3. Process the VQ dataset.\n    ```\n    python process_vq_dataset.py --annot-root data --save-root data\n    ```\n\n4. Extract clips for val and test data from videos. Validate the clips once they are extracted. If validation fails, please re-run the conversion script and it will correct for errors. You can optionally add a `--clip-uids <clip-uid-1> <clip-uid-2> ...` argument to specify the clips to regenerate. You can optionally reduce the video frame resolution by specifying `--downscale-height <height>`.\n    ```\n    # Extract clips (should take 12-24 hours on a machine with 80 CPU cores)\n    python convert_videos_to_clips.py \\\n        --annot-paths data/vq_val.json data/vq_test_unannotated.json \\\n        --save-root data/clips \\\n        --ego4d-videos-root $EGO4D_VIDEOS_DIR \\\n        --num-workers 10 # Increase this for speed\n\n    # Validate the extracted clips (should take 30 minutes)\n    python tools/validate_extracted_clips.py \\\n        --annot-paths data/vq_val.json data/vq_test_unannotated.json \\\n        --clips-root data/clips\n    ```\n\n5. Extract images for train and validation data from videos (only needed for training detection models).\n    ```\n    # Should take <= 6 hours on a machine with 80 CPU cores\n    python convert_videos_to_images.py \\\n        --annot-paths data/vq_train.json data/vq_val.json \\\n        --save-root data/images \\\n        --ego4d-videos-root $EGO4D_VIDEOS_DIR \\\n        --num-workers 10 # Increase this for speed\n    ```\n\n## Training detection models\nCopy `scripts/train_2_gpus.sh` or `scripts/train_8_gpus.sh` to the required experiment directory and execute it.\n\n```\nEXPT_ROOT=<experiment path>\ncp $VQ2D_ROOT/scripts/train_2_gpu.sh $EXPT_ROOT\ncd $EXPT_ROOT\nchmod +x train_2_gpu.sh && ./train_2_gpu.sh\n```\n\n**Important note:** Our training code currently supports the baseline released with the [Ego4D paper](https://arxiv.org/pdf/2110.07058.pdf). For improved training mechanisms and architectures, we recommend using code from prior [challenge winners](https://github.com/facebookresearch/vq2d_cvpr).\n\n## Evaluating models on VQ2D\n\nWe split the evaluation into two steps: (1) Extracting per-frame bbox proposals and estimating their similarity to the visual query, and (2) Peak detection and bidirectional tracking to infer the response track. There are two key benefits to this separation:\n\n* **Rapid hyperparameter searches for step (2):** Step (1) is the most expensive operation as it takes ~24 hours on an 8-GPU + 80-core machine. Once the detections are pre-computed, step (2) only takes ~1-2 hours on the same machine. This allowed us to release improved hyperparameters for step (2) and obtain much better results.\n* **Decoupling detector model from our inference code for step (2):** While we support only training the baseline model from the [Ego4D paper](https://arxiv.org/pdf/2110.07058.pdf), we can support inference with arbitrary models as long as the pre-extracted detection scores are available.\n\n**Step (1)** Extracting per-frame bbox proposals.\n```\n# Note: MODEL_ROOT and DETECTIONS_SAVE_ROOT must be absolute paths\nMODEL_ROOT=<path to trained model>  # contains model.pth and config.yaml\nDETECTIONS_SAVE_ROOT=<path to save pre-computed detections>\n\ncd $VQ2D_ROOT\n\n# Extract per-frame bbox proposals and visual query similarity scores\nchmod +x ./scripts/extract_vq_detections.sh\n./scripts/extract_vq_detections.sh val $MODEL_ROOT $DETECTIONS_SAVE_ROOT\n./scripts/extract_vq_detections.sh test_unannotated $MODEL_ROOT $DETECTIONS_SAVE_ROOT\n```\n\n**Step (2)** Peak detection and bidirectional tracking.\n\n```\n./scripts/infer_vq.sh $MODEL_ROOT $DETECTIONS_SAVE_ROOT val 8 0.50 0.20\n./scripts/infer_vq.sh $MODEL_ROOT $DETECTIONS_SAVE_ROOT test_unannotated 8 0.50 0.20\n```\n\n**Notes:**\n* To reduce GPU / CPU usage, reduce 8 from step (2) based on your specific system.\n\n* To get VQ2D evaluation results:\n    ```\n    python evaluate_vq.py --gt-file data/vq_val.json --pred-file <path to inference json>\n    ```\n* To participate in the challenge, submit the inference json obtained for the test_unannotated split on evalai.\n\n## Pre-trained models and detection scores\nFor reproducibility and conveneice,  we provide pre-trained models and corresponding detection scores for the [SiamRCNN](https://arxiv.org/pdf/2110.07058.pdf), [ImprovedBaselines](https://arxiv.org/pdf/2208.01949.pdf), and [NegativeFramesMatter](https://arxiv.org/pdf/2211.10528.pdf) models. They can be downloaded using the ego4d CLI as follows:\n\n```\npython -m ego4d.cli.cli -y --output_directory /path/to/output/ --datasets vq2d_models vq2d_detections\n```\n\nThe validation results for these models are shown below.\n| Method                 | stAP @ 0.25 |  stAP | tAP @ 0.25 |  tAP  | recall %  | success % |\n|------------------------|:-----------:|:-----:|:----------:|:-----:|:---------:|:---------:|\n| SiamRCNN               |    0.153    | 0.058 |    0.225   | 0.134 |   32.919  |   43.244  |\n| Improved Baselines     |    0.195    | 0.078 |    0.258   | 0.157 |   37.882  |   47.903  |\n| Negative Frames Matter |    0.189    | 0.075 |    0.255   | 0.154 |   37.666  |   47.681  |\n\nThese were generated using the following commands:\n```\n# SiamRCNN\n./scripts/infer_vq.sh $PRETRAINED_ROOT/siam_rcnn_residual $DETECTIONS_ROOT/detections_siam_rcnn_residual val 8 0.50 0.20\n\n# Improved Baselines\n./scripts/infer_vq.sh $PRETRAINED_ROOT/improved_baselines $DETECTIONS_ROOT/detections_improved_baselines val 8 0.50 0.20\n\n# Negative Frames Matter\n./scripts/infer_vq.sh $PRETRAINED_ROOT/negative_frames_matter $DETECTIONS_ROOT/detections_negative_frames_matter val 8 0.25 0.20\n```\nwhere `PRETRAINED_ROOT` and `DETECTIONS_ROOT` are the directories where the pretrained-models and detections are saved, respectively.  Please cite the following papers/reports for the respective models.\n\n**SiamRCNN:**\n```\n@inproceedings{grauman2022ego4d,\ntitle={Ego4d: Around the world in 3,000 hours of egocentric video},\nauthor={Grauman, Kristen and Westbury, Andrew and Byrne, Eugene and Chavis, Zachary and Furnari, Antonino and Girdhar, Rohit and Hamburger, Jackson and Jiang, Hao and Liu, Miao and Liu, Xingyu and others},\nbooktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},\npages={18995--19012},\nyear={2022}\n}\n```\n\n**Improved Baselines:**\n```\n@article{xu2022negative,\n  title={Negative Frames Matter in Egocentric Visual Query 2D Localization},\n  author={Xu, Mengmeng and Fu, Cheng-Yang and Li, Yanghao and Ghanem, Bernard and Perez-Rua, Juan-Manuel and Xiang, Tao},\n  journal={arXiv preprint arXiv:2208.01949},\n  year={2022}\n}\n```\n\n**Negative Frames Matter:**\n```\n@article{xu2022where,\n  doi = {10.48550/ARXIV.2211.10528},\n  url = {https://arxiv.org/abs/2211.10528},\n  author = {Xu, Mengmeng and Li, Yanghao and Fu, Cheng-Yang and Ghanem, Bernard and Xiang, Tao and Perez-Rua, Juan-Manuel},\n  title = {Where is my Wallet? Modeling Object Proposal Sets for Egocentric Visual Query Localization},\n  journal={arXiv preprint arXiv:2211.10528},\n  year={2022}\n}\n```\n\n## Acknowledgements\nThis codebase relies on [detectron2](https://github.com/facebookresearch/detectron2), [vq2d_cvpr](https://github.com/facebookresearch/vq2d_cvpr), [PyTracking](https://github.com/visionml/pytracking), [pfilter](https://github.com/johnhw/pfilter) and [ActivityNet](https://github.com/activitynet/ActivityNet) repositories.\n"
  },
  {
    "path": "VQ2D/configs/Base-RCNN-FPN.yaml",
    "content": "MODEL:\n  META_ARCHITECTURE: \"SiameseRCNN\"\n  BACKBONE:\n    NAME: \"build_resnet_fpn_backbone\"\n  RESNETS:\n    OUT_FEATURES: [\"res2\", \"res3\", \"res4\", \"res5\"]\n  FPN:\n    IN_FEATURES: [\"res2\", \"res3\", \"res4\", \"res5\"]\n  ANCHOR_GENERATOR:\n    SIZES: [[32], [64], [128], [256], [512]]  # One size for each in feature map\n    ASPECT_RATIOS: [[0.5, 1.0, 2.0]]  # Three aspect ratios (same for all in feature maps)\n  RPN:\n    IN_FEATURES: [\"p2\", \"p3\", \"p4\", \"p5\", \"p6\"]\n    PRE_NMS_TOPK_TRAIN: 2000  # Per FPN level\n    PRE_NMS_TOPK_TEST: 1000  # Per FPN level\n    # Detectron1 uses 2000 proposals per-batch,\n    # (See \"modeling/rpn/rpn_outputs.py\" for details of this legacy issue)\n    # which is approximately 1000 proposals per-image since the default batch size for FPN is 2.\n    POST_NMS_TOPK_TRAIN: 1000\n    POST_NMS_TOPK_TEST: 1000\n  ROI_HEADS:\n    NAME: \"SiameseROIHeads\"\n    IN_FEATURES: [\"p2\", \"p3\", \"p4\", \"p5\"]\n    NUM_CLASSES: 1\n    BATCH_SIZE_PER_IMAGE: 16\n    POSITIVE_FRACTION: 0.25\n  ROI_SIAMESE_HEAD:\n    QUERY_FEATURE: \"p3\"\n    POOLER_RESOLUTION: 14\n    POOLER_SAMPLING_RATIO: 0\n    POOLER_TYPE: \"ROIAlignV2\"\n    HIDDEN_SIZE: 1024\nDATASETS:\n  TRAIN: (\"visual_query_train\",)\n  TEST: (\"visual_query_val\", \"visual_query_test\")\nSOLVER:\n  IMS_PER_BATCH: 32\n  BASE_LR: 0.02\n  STEPS: (60000, 80000)\n  MAX_ITER: 90000\nINPUT:\n  MIN_SIZE_TRAIN: (640, 672, 704, 736, 768, 800)\n  REFERENCE_SIZE: 256\n  REFERENCE_CONTEXT_PAD: 16\nTEST:\n  EVAL_PERIOD: 5000\n  DETECTIONS_PER_IMAGE: 10\nVERSION: 2\n"
  },
  {
    "path": "VQ2D/configs/siam_rcnn_2_gpus.yaml",
    "content": "_BASE_: \"Base-RCNN-FPN.yaml\"\n\nMODEL:\n  #WEIGHTS: \"detectron2://ImageNetPretrained/MSRA/R-50.pkl\"\n  MASK_ON: True\n  RESNETS:\n    DEPTH: 50\n  ROI_SIAMESE_HEAD:\n    PROJECTOR_TYPE: \"residual\"\n    N_RESIDUAL_LAYERS: 4\n    HARD_NEGATIVE_MINING:\n      ENABLE: True\n      NUM_NEGATIVES: 64\n    USE_CROSS_BATCH_NEGATIVES: True\n    IN_FEATURES: [\"p3\"]\n    SHARE_PROJECTION: True\n  ROI_HEADS:\n    BATCH_SIZE_PER_IMAGE: 64\n    POSITIVE_FRACTION: 0.1\n\nSOLVER:\n  STEPS: (200000, 400000)\n  MAX_ITER: 1000000\n  IMS_PER_BATCH: 16\n\nINPUT:\n  TRANSFORM_VISUAL_CROP: True\n  ENABLE_RANDOM_ROTATION_VISUAL_CROP: True\n  ROTATION_ANGLES: [-120, 120]\n  ENABLE_RANDOM_BRIGHTNESS: True\n\nDATALOADER:\n  NUM_WORKERS: 8\n\nDATASETS:\n  TRAIN: (\"visual_query_clean_aug_train\", )\n  TEST: (\"visual_query_clean_val\", )"
  },
  {
    "path": "VQ2D/configs/siam_rcnn_8_gpus.yaml",
    "content": "_BASE_: \"Base-RCNN-FPN.yaml\"\n\nMODEL:\n  #WEIGHTS: \"detectron2://ImageNetPretrained/MSRA/R-50.pkl\"\n  MASK_ON: True\n  RESNETS:\n    DEPTH: 50\n  ROI_SIAMESE_HEAD:\n    PROJECTOR_TYPE: \"residual\"\n    N_RESIDUAL_LAYERS: 4\n    HARD_NEGATIVE_MINING:\n      ENABLE: True\n      NUM_NEGATIVES: 64\n    USE_CROSS_BATCH_NEGATIVES: True\n    IN_FEATURES: [\"p3\"]\n    SHARE_PROJECTION: True\n  ROI_HEADS:\n    BATCH_SIZE_PER_IMAGE: 64\n    POSITIVE_FRACTION: 0.1\n\nSOLVER:\n  STEPS: (200000, 400000)\n  MAX_ITER: 1000000\n  IMS_PER_BATCH: 64\n\nINPUT:\n  TRANSFORM_VISUAL_CROP: True\n  ENABLE_RANDOM_ROTATION_VISUAL_CROP: True\n  ROTATION_ANGLES: [-120, 120]\n  ENABLE_RANDOM_BRIGHTNESS: True\n\nDATALOADER:\n  NUM_WORKERS: 8\n\nDATASETS:\n  TRAIN: (\"visual_query_clean_aug_train\", )\n  TEST: (\"visual_query_clean_val\", )"
  },
  {
    "path": "VQ2D/convert_videos_to_clips.py",
    "content": "\"\"\"\nScript to extract clips from a video\n\"\"\"\nimport argparse\nimport json\nimport multiprocessing as mp\nimport os\nimport subprocess as sp\n\nimport cv2\nimport imageio\nimport pims\nimport tqdm\nfrom vq2d.baselines import get_clip_name_from_clip_uid\n\n\ndef read_video_md(path):\n    with imageio.get_reader(path, format=\"mp4\") as reader:\n        metadata = reader.get_meta_data()\n    return metadata\n\n\ndef get_mp4_writer(path, fps, output_params=[\"-crf\", \"22\"]):\n    writer = imageio.get_writer(\n        path,\n        codec=\"h264\",\n        fps=fps,\n        quality=None,\n        pixelformat=\"yuv420p\",\n        bitrate=0,  # Setting bitrate to 0 is required to activate -crf\n        macro_block_size=None,\n        output_params=output_params,\n    )\n    return writer\n\n\ndef frames_to_select(\n    start_frame: int,\n    end_frame: int,\n    original_fps: int,\n    new_fps: int,\n):\n    # ensure the new fps is divisible by the old\n    assert original_fps % new_fps == 0\n\n    # check some obvious things\n    assert end_frame >= start_frame\n\n    num_frames = end_frame - start_frame + 1\n    skip_number = original_fps // new_fps\n    for i in range(0, num_frames, skip_number):\n        yield i + start_frame\n\n\ndef approx_equal_durations(dur1, dur2, thresh=1.0):\n    return abs(dur1 - dur2) < thresh\n\n\ndef extract_clip(video_path, clip_data, save_root, downscale_height=700):\n    \"\"\"\n    Extracts clips from a video\n    Save path format: {save_root}/{clip_uid}.mp4\n\n    Args:\n        video_path - path to video\n        clip_data - a clip annotation from the VQ task export\n        save_root - path to save extracted images\n    \"\"\"\n    clip_uid = clip_data[\"clip_uid\"]\n    if clip_uid is None:\n        return None\n    clip_save_path = os.path.join(save_root, get_clip_name_from_clip_uid(clip_uid))\n    video_md = read_video_md(video_path)\n    if os.path.isfile(clip_save_path):\n        # If file exists, try loading video metadata\n        try:\n            # Metadata read success\n            with pims.Video(clip_save_path) as test_reader:\n                actual_clip_duration = float(len(test_reader)) / test_reader.frame_rate\n            expected_clip_duration = (\n                clip_data[\"video_end_sec\"] - clip_data[\"video_start_sec\"]\n            )\n            if not approx_equal_durations(actual_clip_duration, expected_clip_duration):\n                print(actual_clip_duration, expected_clip_duration)\n            assert approx_equal_durations(actual_clip_duration, expected_clip_duration)\n            return None\n        except Exception as e:\n            # Metadata read failed\n            print(f\"Clip extraction incomplete for {clip_save_path}. Recreating.\")\n            sp.call([\"rm\", clip_save_path])\n    # Select frames for clip\n    clip_fps = int(clip_data[\"clip_fps\"])\n    video_fps = int(video_md[\"fps\"])\n    vsf = clip_data[\"video_start_frame\"]\n    vef = clip_data[\"video_end_frame\"]\n    reader = pims.Video(video_path)\n    # Downscale images to save memory\n    frame = reader[0]\n    if downscale_height > 0:\n        frame_scale = float(downscale_height) / frame.shape[0]\n        new_H = downscale_height\n        new_W = int(frame.shape[1] * frame_scale)\n        if new_W % 2 == 1:  # ffmpeg requirement\n            new_W += 1\n    # Create video clip\n    with get_mp4_writer(clip_save_path, clip_fps) as writer:\n        for fno in frames_to_select(vsf, vef, video_fps, clip_fps):\n            try:\n                frame = reader[fno]\n            except:\n                max_fno = int(video_md[\"fps\"] * video_md[\"duration\"])\n                print(\n                    f\"===> frame {fno} out of range for video {video_path} (max fno = {max_fno})\"\n                )\n                break\n            if downscale_height > 0:\n                frame = cv2.resize(frame, (new_W, new_H))\n            writer.append_data(frame)\n    reader.close()\n\n\ndef batchify_video_uids(video_uids, batch_size):\n    video_uid_batches = []\n    nbatches = len(video_uids) // batch_size\n    if batch_size * nbatches < len(video_uids):\n        nbatches += 1\n    for batch_ix in range(nbatches):\n        video_uid_batches.append(\n            video_uids[batch_ix * batch_size : (batch_ix + 1) * batch_size]\n        )\n    return video_uid_batches\n\n\ndef video_to_clip_fn(inputs):\n    video_data, args = inputs\n    video_uid = video_data[\"video_uid\"]\n    video_path = os.path.join(args.ego4d_videos_root, video_uid + \".mp4\")\n    if not os.path.isfile(video_path):\n        print(f\"Missing video {video_path}\")\n        return None\n\n    for clip_data in video_data[\"clips\"]:\n        if args.clip_uids is not None and clip_data[\"clip_uid\"] not in args.clip_uids:\n            continue\n        extract_clip(\n            video_path,\n            clip_data,\n            args.save_root,\n            downscale_height=args.downscale_height,\n        )\n\n\ndef main(args):\n    # Load annotations\n    annotation_export = []\n    for annot_path in args.annot_paths:\n        annotation_export += json.load(open(annot_path, \"r\"))[\"videos\"]\n    video_uids = sorted([a[\"video_uid\"] for a in annotation_export])\n    os.makedirs(args.save_root, exist_ok=True)\n    if args.video_batch_idx >= 0:\n        video_uid_batches = batchify_video_uids(video_uids, args.video_batch_size)\n        video_uids = video_uid_batches[args.video_batch_idx]\n        print(f\"===> Processing video_uids: {video_uids}\")\n    # Get annotations corresponding to video_uids\n    annotation_export = [a for a in annotation_export if a[\"video_uid\"] in video_uids]\n\n    pool = mp.Pool(args.num_workers)\n    inputs = [(video_data, args) for video_data in annotation_export]\n    _ = list(\n        tqdm.tqdm(\n            pool.imap_unordered(video_to_clip_fn, inputs),\n            total=len(inputs),\n            desc=\"Converting videos to clips\",\n        )\n    )\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--video-batch-idx\", type=int, default=-1)\n    parser.add_argument(\"--annot-paths\", type=str, required=True, nargs=\"+\")\n    parser.add_argument(\"--save-root\", type=str, required=True)\n    parser.add_argument(\"--ego4d-videos-root\", type=str, required=True)\n    parser.add_argument(\"--video-batch-size\", type=int, default=10)\n    parser.add_argument(\"--num-workers\", type=int, default=20)\n    parser.add_argument(\"--clip-uids\", type=str, nargs=\"+\", default=None)\n    parser.add_argument(\"--downscale-height\", type=int, default=-1)\n    args = parser.parse_args()\n\n    main(args)\n"
  },
  {
    "path": "VQ2D/convert_videos_to_images.py",
    "content": "\"\"\"\nScript to extract images from a video\n\"\"\"\nimport argparse\nimport collections\nimport json\nimport multiprocessing as mp\nimport os\n\nimport imageio\nimport pims\nimport tqdm\nfrom vq2d.baselines.utils import get_image_name_from_clip_uid\n\n\ndef read_video_md(path):\n    with imageio.get_reader(path, format=\"mp4\") as reader:\n        metadata = reader.get_meta_data()\n    return metadata\n\n\ndef save_video_frames(path, frames_to_save):\n    video_md = read_video_md(path)\n    frames_to_save_dict = collections.defaultdict(list)\n    for fs in frames_to_save:\n        frames_to_save_dict[fs[\"video_fno\"]].append(fs[\"save_path\"])\n    reader = pims.Video(path)\n    for fno, paths in frames_to_save_dict.items():\n        try:\n            f = reader[fno]\n        except:\n            max_fno = int(video_md[\"fps\"] * video_md[\"duration\"])\n            print(\n                f\"===> frame {fno} out of range for video {path} (max fno = {max_fno})\"\n            )\n            continue\n        for path in paths:\n            if not os.path.isfile(path):\n                imageio.imwrite(path, f)\n\n\ndef frames_to_select(\n    start_frame: int,\n    end_frame: int,\n    original_fps: int,\n    new_fps: int,\n):\n    # ensure the new fps is divisible by the old\n    assert original_fps % new_fps == 0\n\n    # check some obvious things\n    assert end_frame >= start_frame\n\n    num_frames = end_frame - start_frame + 1\n    skip_number = original_fps // new_fps\n    for i in range(0, num_frames, skip_number):\n        yield i + start_frame\n\n\ndef extract_clip_frame_nos(video_md, clip_annotation, save_root):\n    \"\"\"\n    Extracts frame numbers corresponding to the VQ annotation for a given clip\n\n    Args:\n        video_md - a dictionary of video metadata\n        clip_annotation - a clip annotation from the VQ task export\n        save_root - path to save extracted images\n    \"\"\"\n    clip_uid = clip_annotation[\"clip_uid\"]\n    clip_fps = int(clip_annotation[\"clip_fps\"])\n    # Select frames for clip\n    video_fps = int(video_md[\"fps\"])\n    vsf = clip_annotation[\"video_start_frame\"]\n    vef = clip_annotation[\"video_end_frame\"]\n    video_frames_for_clip = list(frames_to_select(vsf, vef, video_fps, clip_fps))\n    # Only save images containing response_track and visual_crop\n    annotation = clip_annotation[\"annotations\"][0]\n    frames_to_save = []\n    for qset_id, qset in annotation[\"query_sets\"].items():\n        if not qset[\"is_valid\"]:\n            continue\n        vc_fno = qset[\"visual_crop\"][\"frame_number\"]\n        rt_fnos = [rf[\"frame_number\"] for rf in qset[\"response_track\"]]\n        all_fnos = [vc_fno] + rt_fnos\n        for fno in all_fnos:\n            path = os.path.join(save_root, get_image_name_from_clip_uid(clip_uid, fno))\n            if os.path.isfile(path):\n                continue\n            frames_to_save.append(\n                {\"video_fno\": video_frames_for_clip[fno], \"save_path\": path}\n            )\n    return frames_to_save\n\n\ndef batchify_video_uids(video_uids, batch_size):\n    video_uid_batches = []\n    nbatches = len(video_uids) // batch_size\n    if batch_size * nbatches < len(video_uids):\n        nbatches += 1\n    for batch_ix in range(nbatches):\n        video_uid_batches.append(\n            video_uids[batch_ix * batch_size : (batch_ix + 1) * batch_size]\n        )\n    return video_uid_batches\n\n\ndef video_to_image_fn(inputs):\n    video_data, args = inputs\n    video_uid = video_data[\"video_uid\"]\n\n    # Extract frames for a specific video_uid\n    video_path = os.path.join(args.ego4d_videos_root, video_uid + \".mp4\")\n    if not os.path.isfile(video_path):\n        print(f\"Missing video {video_path}\")\n        return None\n\n    # Get list of frames to save for annotated clips\n    video_md = read_video_md(video_path)\n    frame_nos_to_save = []\n    for clip_data in video_data[\"clips\"]:\n        if clip_data[\"clip_uid\"] is None:\n            continue\n        # Create root directory to save clip\n        os.makedirs(os.path.join(args.save_root, clip_data[\"clip_uid\"]), exist_ok=True)\n        # Get list of frames to save\n        frame_nos_to_save += extract_clip_frame_nos(video_md, clip_data, args.save_root)\n\n    if len(frame_nos_to_save) == 0:\n        print(f\"=========> No valid frames to read for {video_uid}!\")\n        return None\n\n    save_video_frames(video_path, frame_nos_to_save)\n\n\ndef main(args):\n    # Load annotations\n    annotation_export = []\n    for annot_path in args.annot_paths:\n        annotation_export += json.load(open(annot_path, \"r\"))[\"videos\"]\n    video_uids = sorted([a[\"video_uid\"] for a in annotation_export])\n    os.makedirs(args.save_root, exist_ok=True)\n    if args.video_batch_idx >= 0:\n        video_uid_batches = batchify_video_uids(video_uids, args.video_batch_size)\n        video_uids = video_uid_batches[args.video_batch_idx]\n        print(f\"===> Processing video_uids: {video_uids}\")\n    # Get annotations corresponding to video_uids\n    annotation_export = [a for a in annotation_export if a[\"video_uid\"] in video_uids]\n\n    pool = mp.Pool(args.num_workers)\n    inputs = [(video_data, args) for video_data in annotation_export]\n    _ = list(\n        tqdm.tqdm(\n            pool.imap_unordered(video_to_image_fn, inputs),\n            total=len(inputs),\n        )\n    )\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--video-batch-idx\", type=int, default=-1)\n    parser.add_argument(\"--annot-paths\", type=str, required=True, nargs=\"+\")\n    parser.add_argument(\"--save-root\", type=str, required=True)\n    parser.add_argument(\"--ego4d-videos-root\", type=str, required=True)\n    parser.add_argument(\"--video-batch-size\", type=int, default=10)\n    parser.add_argument(\"--num-workers\", type=int, default=20)\n    args = parser.parse_args()\n\n    main(args)\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/__init__.py",
    "content": "from .config import get_cfg\nfrom .layers import (\n    kl_div,\n    triplet_margin,\n    binary_cross_entropy,\n    binary_cross_entropy_with_logits,\n)\nfrom .modeling.meta_arch import SiameseRCNN\nfrom .modeling.roi_heads import SiameseROIHeads\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/config/__init__.py",
    "content": "from .defaults import get_cfg\n\n\n__all__ = [\"get_cfg\"]\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/config/defaults.py",
    "content": "from detectron2.config import CfgNode\nfrom detectron2.config import get_cfg as get_default_cfg\n\n\n# Extend detectron2 defaults\n_C = get_default_cfg()\n\n\n# -----------------------------------------------------------------------------\n# INPUT\n# -----------------------------------------------------------------------------\n# Image augmentations for SiamRCNN\n_C.INPUT.ENABLE_RANDOM_BRIGHTNESS = False\n_C.INPUT.RANDOM_BRIGHTNESS_VALS = [0.75, 1.33333]\n_C.INPUT.ROTATION_ANGLES = [-60, 60]\n_C.INPUT.ROTATION_EXPAND = True\n_C.INPUT.ENABLE_RANDOM_ROTATION = False\n_C.INPUT.TRANSFORM_VISUAL_CROP = False\n_C.INPUT.ENABLE_RANDOM_ROTATION_VISUAL_CROP = False\n# Visual crop generation\n_C.INPUT.REFERENCE_CONTEXT_PAD = 16  # Pixel padding around visual crop\n_C.INPUT.REFERENCE_SIZE = 256  # Visual crop size after padding\n# Dataset paths for SiamRCNN training\n_C.INPUT.VQ_IMAGES_ROOT = \"./images\"\n_C.INPUT.VQ_DATA_SPLITS_ROOT = \"./vq_splits\"\n\n\n# -----------------------------------------------------------------------------\n# MODEL\n# -----------------------------------------------------------------------------\n# Config for pre-trained weights for SiamRCNN\n_C.MODEL.SIAMESE_PRETRAINED_CONFIG = (\n    \"COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml\"\n)\n\n\n# ---------------------------------------------------------------------------- #\n# Siamese Head\n# ---------------------------------------------------------------------------- #\n_C.MODEL.ROI_SIAMESE_HEAD = CfgNode()\n_C.MODEL.ROI_SIAMESE_HEAD.IN_FEATURES = [\"p2\", \"p3\", \"p4\", \"p5\", \"p6\"]\n_C.MODEL.ROI_SIAMESE_HEAD.QUERY_FEATURE = \"p3\"\n_C.MODEL.ROI_SIAMESE_HEAD.POOLER_RESOLUTION = 14\n_C.MODEL.ROI_SIAMESE_HEAD.POOLER_SAMPLING_RATIO = 0\n# Type of pooling operation applied to the incoming feature map for each RoI\n_C.MODEL.ROI_SIAMESE_HEAD.POOLER_TYPE = \"ROIAlignV2\"\n# Hidden size for siamese similarity head\n_C.MODEL.ROI_SIAMESE_HEAD.HIDDEN_SIZE = 1024\n# Projection layer hyperparameters\n_C.MODEL.ROI_SIAMESE_HEAD.PROJECTOR_TYPE = \"basic\"\n_C.MODEL.ROI_SIAMESE_HEAD.N_RESIDUAL_LAYERS = 1\n# Hard negative mining for loss computation\n_C.MODEL.ROI_SIAMESE_HEAD.HARD_NEGATIVE_MINING = CfgNode()\n_C.MODEL.ROI_SIAMESE_HEAD.HARD_NEGATIVE_MINING.ENABLE = False\n# Number of hard negatives to mine from the set of all negatives\n_C.MODEL.ROI_SIAMESE_HEAD.HARD_NEGATIVE_MINING.NUM_NEGATIVES = 16\n# Loss type to use [ bce | kl_div | metric ] --- metric applies only for \"dot\"\n_C.MODEL.ROI_SIAMESE_HEAD.LOSS_TYPE = \"bce\"\n# Share the projection layers for siamese head?\n_C.MODEL.ROI_SIAMESE_HEAD.SHARE_PROJECTION = False\n# Compare layer type [ bilinear | dot ]\n_C.MODEL.ROI_SIAMESE_HEAD.COMPARE_TYPE = \"bilinear\"\n# Margin value for triplet-margin loss\n_C.MODEL.ROI_SIAMESE_HEAD.TRIPLET_MARGIN = 0.25\n# Enable cross batch negatives\n_C.MODEL.ROI_SIAMESE_HEAD.USE_CROSS_BATCH_NEGATIVES = False\n\n\ndef get_cfg() -> CfgNode:\n    \"\"\"\n    Get a copy of the default config.\n    Returns:\n        a detectron2 CfgNode instance.\n    \"\"\"\n    from .defaults import _C\n\n    return _C.clone()\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/layers/__init__.py",
    "content": "from .wrappers import (\n    kl_div,\n    triplet_margin,\n    binary_cross_entropy,\n    binary_cross_entropy_with_logits,\n)\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/layers/wrappers.py",
    "content": "from typing import List, Any\n\nimport torch\nfrom torch.nn import functional as F\n\n\ndef binary_cross_entropy(\n    input: torch.Tensor,\n    target: torch.Tensor,\n    *args: Any,\n    reduction: str = \"mean\",\n    flip_class: bool = True,\n    **kwargs: Any,\n) -> torch.Tensor:\n    \"\"\"\n    Same as `torch.nn.functional.binary_cross_entropy`, but returns 0 (instead of nan)\n    for empty inputs. `flip_class` inverts the target since the positive class is 0 and the\n    negative/background class is 1.\n    \"\"\"\n\n    if target.numel() == 0 and reduction == \"mean\":\n        return input.sum() * 0.0  # connect the gradient\n    target = target.float()\n    if flip_class:\n        target = 1 - target\n    return F.binary_cross_entropy(input, target, reduction=reduction, **kwargs)\n\n\ndef binary_cross_entropy_with_logits(\n    input: torch.Tensor,\n    target: torch.Tensor,\n    *args: Any,\n    reduction: str = \"mean\",\n    flip_class: bool = True,\n    **kwargs: Any,\n) -> torch.Tensor:\n    \"\"\"\n    Same as `torch.nn.functional.binary_cross_entropy_with_logits`, but returns 0 (instead of nan)\n    for empty inputs. `flip_class` inverts the target since the positive class is 0 and the\n    negative/background class is 1.\n    \"\"\"\n\n    if target.numel() == 0 and reduction == \"mean\":\n        return input.sum() * 0.0  # connect the gradient\n    target = target.float()\n    if flip_class:\n        target = 1 - target\n    return F.binary_cross_entropy_with_logits(\n        input, target, reduction=reduction, **kwargs\n    )\n\n\ndef kl_div(\n    input: torch.Tensor,\n    target: torch.Tensor,\n    *args: Any,\n    reduction: str = \"mean\",\n    flip_class: bool = True,\n    **kwargs: Any,\n) -> torch.Tensor:\n    \"\"\"\n    Same as `torch.nn.functional.kl_div`, but returns 0 (instead of nan)\n    for empty inputs. `flip_class` inverts the target since the positive class is 0 and the\n    negative/background class is 1.\n    \"\"\"\n\n    if target.numel() == 0 and reduction == \"mean\":\n        return input.sum() * 0.0  # connect the gradient\n    target = target.float()\n    if flip_class:\n        target = 1 - target\n    # convert input from logits to log_probs\n    input = torch.log_softmax(input, dim=1)\n    # normalize target to probabilities\n    target = target / (target.sum(dim=1, keepdim=True) + 1e-10)\n    return F.kl_div(input, target, reduction=reduction, **kwargs)\n\n\ndef triplet_margin(\n    input: torch.Tensor,\n    target: torch.Tensor,\n    *args: Any,\n    reduction: str = \"mean\",\n    flip_class: bool = True,\n    margin: float = 0.25,\n    **kwargs: Any,\n) -> torch.Tensor:\n    \"\"\"\n    Returns 0 (instead of nan) for empty inputs. `flip_class` inverts the target\n    since the positive class is 0 and the negative/background class is 1.\n    Args:\n        input - (N, 1) normalized similarity values\n        target - (N, ) target classes. By default, positive is 0, negative is 1.\n    \"\"\"\n    if target.numel() == 0 and reduction == \"mean\":\n        return input.sum() * 0.0  # connect the gradient\n    target = target.float()\n    if flip_class:\n        target = 1 - target\n    positive_idxs = torch.where(target == 1)[0]\n    negative_idxs = torch.where(target == 0)[0]\n    loss = 0.0\n    count = 0.0\n    for p in positive_idxs.detach().cpu().tolist():\n        for n in negative_idxs.detach().cpu().tolist():\n            dp = (1 - input[p, 0]) / 2.0\n            dn = (1 - input[n, 0]) / 2.0\n            loss = loss + torch.clamp(dp - dn + margin, 0)\n            count = count + 1\n    loss = loss / count\n    return loss\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/modeling/meta_arch/__init__.py",
    "content": "from .siam_rcnn import SiameseRCNN\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/modeling/meta_arch/siam_rcnn.py",
    "content": "from typing import Dict, Tuple, Any\n\nimport torch\nfrom detectron2.config import CfgNode, configurable\nfrom detectron2.modeling.backbone import build_backbone\nfrom detectron2.modeling.meta_arch.build import META_ARCH_REGISTRY\nfrom detectron2.modeling.meta_arch.rcnn import GeneralizedRCNN\nfrom detectron2.modeling.proposal_generator import build_proposal_generator\nfrom detectron2.modeling.roi_heads import build_roi_heads\nfrom detectron2.structures import ImageList\nfrom detectron2.utils.events import get_event_storage\n\n__all__ = [\"SiameseRCNN\"]\n\n\n@META_ARCH_REGISTRY.register()\nclass SiameseRCNN(GeneralizedRCNN):\n    \"\"\"\n    Siamese R-CNN. Any model that contains the following three components:\n    1. Per-image feature extraction (aka backbone)\n    2. Region proposal generation\n    3. Per-region feature extraction and prediction\n    In addition to GeneralizedRCNN, this takes in a reference crop as input,\n    extracts features from it, and passes it to the ROIHead.\n    \"\"\"\n\n    @configurable\n    def __init__(self, *args, **kwargs) -> None:\n        super().__init__(*args, **kwargs)\n\n    @classmethod\n    def from_config(cls, cfg: CfgNode) -> Dict[str, Any]:\n        backbone = build_backbone(cfg)\n        return {\n            \"backbone\": backbone,\n            \"proposal_generator\": build_proposal_generator(\n                cfg, backbone.output_shape()\n            ),\n            \"roi_heads\": build_roi_heads(cfg, backbone.output_shape()),\n            \"input_format\": cfg.INPUT.FORMAT,\n            \"vis_period\": cfg.VIS_PERIOD,\n            \"pixel_mean\": cfg.MODEL.PIXEL_MEAN,\n            \"pixel_std\": cfg.MODEL.PIXEL_STD,\n        }\n\n    def forward(self, batched_inputs: Tuple[Dict[str, torch.Tensor]]) -> Dict[str, Any]:\n        \"\"\"\n        Args:\n            batched_inputs: a list, batched outputs of :class:`DatasetMapper` .\n                Each item in the list contains the inputs for one image.\n                For now, each item in the list is a dict that contains:\n                * image: Tensor, image in (C, H, W) format.\n                * reference: Tensor, image in (C, H, W) format.\n                * instances (optional): groundtruth :class:`Instances`\n                * proposals (optional): :class:`Instances`, precomputed proposals.\n                Other information that's included in the original dicts, such as:\n                * \"height\", \"width\" (int): the output resolution of the model, used in inference.\n                  See :meth:`postprocess` for details.\n        Returns:\n            list[dict]:\n                Each dict is the output for one input image.\n                The dict contains one key \"instances\" whose value is a :class:`Instances`.\n                The :class:`Instances` object has the following keys:\n                \"pred_boxes\", \"scores\"\n        \"\"\"\n        if not self.training:\n            return self.inference(batched_inputs)\n\n        images, references = self.preprocess_image(batched_inputs)\n        if \"instances\" in batched_inputs[0]:\n            gt_instances = [x[\"instances\"].to(self.device) for x in batched_inputs]\n        else:\n            gt_instances = None\n\n        features = self.backbone(images.tensor)\n        ref_features = self.backbone(references.tensor)\n        ref_features = {k: v.view(-1, 1, *v.shape[1:]) for k, v in ref_features.items()}\n\n        if self.proposal_generator is not None:\n            proposals, proposal_losses = self.proposal_generator(\n                images, features, gt_instances\n            )\n        else:\n            assert \"proposals\" in batched_inputs[0]\n            proposals = [x[\"proposals\"].to(self.device) for x in batched_inputs]\n            proposal_losses = {}\n\n        _, detector_losses = self.roi_heads(\n            images, features, proposals, ref_features, gt_instances\n        )\n        if self.vis_period > 0:\n            storage = get_event_storage()\n            if storage.iter % self.vis_period == 0:\n                self.visualize_training(batched_inputs, proposals)\n\n        losses = {}\n        losses.update(detector_losses)\n        losses.update(proposal_losses)\n        return losses\n\n    def inference(\n        self,\n        batched_inputs: Tuple[Dict[str, torch.Tensor]],\n        do_postprocess: bool = True,\n    ) -> Any:\n        \"\"\"\n        Run inference on the given inputs.\n        Args:\n            batched_inputs (list[dict]): same as in :meth:`forward`\n            detected_instances (None or list[Instances]): if not None, it\n                contains an `Instances` object per image. The `Instances`\n                object contains \"pred_boxes\" and \"pred_classes\" which are\n                known boxes in the image.\n                The inference will then skip the detection of bounding boxes,\n                and only predict other per-ROI outputs.\n            do_postprocess (bool): whether to apply post-processing on the outputs.\n        Returns:\n            When do_postprocess=True, same as in :meth:`forward`.\n            Otherwise, a list[Instances] containing raw network outputs.\n        \"\"\"\n        assert not self.training\n\n        images, references = self.preprocess_image(batched_inputs)\n        features = self.backbone(images.tensor)\n        ref_features = self.backbone(references.tensor)\n        ref_features = {k: v.view(-1, 1, *v.shape[1:]) for k, v in ref_features.items()}\n\n        if self.proposal_generator is not None:\n            proposals, _ = self.proposal_generator(images, features, None)\n        else:\n            assert \"proposals\" in batched_inputs[0]\n            proposals = [x[\"proposals\"].to(self.device) for x in batched_inputs]\n\n        results, _ = self.roi_heads(images, features, proposals, ref_features, None)\n\n        if do_postprocess:\n            assert (\n                not torch.jit.is_scripting()\n            ), \"Scripting is not supported for postprocess.\"\n            return GeneralizedRCNN._postprocess(\n                results, batched_inputs, images.image_sizes\n            )\n        else:\n            return results\n\n    def preprocess_image(\n        self, batched_inputs: Tuple[Dict[str, torch.Tensor]]\n    ) -> Tuple[ImageList, ImageList]:\n        \"\"\"\n        Normalize, pad and batch the input images.\n        \"\"\"\n        images = [x[\"image\"].to(self.device) for x in batched_inputs]\n        images = [(x - self.pixel_mean) / self.pixel_std for x in images]\n        images = ImageList.from_tensors(images, self.backbone.size_divisibility)\n        references = [x[\"reference\"].to(self.device) for x in batched_inputs]\n        references = [(x - self.pixel_mean) / self.pixel_std for x in references]\n        references = ImageList.from_tensors(references, 0)\n        return images, references\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/modeling/roi_heads/__init__.py",
    "content": "from .set_heads import (\n    SetTransROIHeads,\n)\nfrom .siam_heads import (\n    SiameseROIHeads,\n)\n\n\n__all__ = [\"SiameseROIHeads\", \"SetTransROIHeads\"]\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/modeling/roi_heads/set_heads.py",
    "content": "\"\"\"\nBorrowed from https://github.com/facebookresearch/vq2d_cvpr\n\nXu, Mengmeng, et al.\nWhere is my Wallet? Modeling Object Proposal Sets for Egocentric Visual Query Localization.\narXiv preprint arXiv:2211.10528 (2022).\n\"\"\"\n\nimport inspect\nfrom typing import Dict, List, Optional, Tuple, Any\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom detectron2.config import CfgNode, configurable\nfrom detectron2.layers import cat, ShapeSpec\nfrom detectron2.modeling.poolers import ROIPooler\nfrom detectron2.modeling.roi_heads import ROI_HEADS_REGISTRY, ROIHeads\nfrom detectron2.modeling.roi_heads.fast_rcnn import fast_rcnn_inference\nfrom detectron2.structures import ImageList, Instances\nfrom detectron2_extensions.layers import (\n    binary_cross_entropy_with_logits,\n    kl_div,\n    triplet_margin,\n)\n\n\nclass DotProduct(nn.Module):\n    def forward(self, x: torch.Tensor, y: torch.Tensor) -> torch.Tensor:\n        \"\"\"\n        Inputs:\n            x - (N, F)\n            y - (N, F)\n        Output:\n            output - (N, 1) dot-product output\n        \"\"\"\n        assert len(x.shape) == 2\n        assert len(y.shape) == 2\n        assert x.shape == y.shape\n        x = nn.functional.normalize(x, dim=1)\n        y = nn.functional.normalize(y, dim=1)\n        output = torch.matmul(x.unsqueeze(1), y.unsqueeze(2)).squeeze(2)\n        return output\n\n\n# 3x3 convolution\ndef conv3x3(in_channels: int, out_channels: int, stride: int = 1) -> nn.Conv2d:\n    return nn.Conv2d(\n        in_channels, out_channels, kernel_size=3, stride=stride, padding=1, bias=False\n    )\n\n\nclass ResidualBlock(nn.Module):\n    def __init__(\n        self,\n        in_channels: int,\n        out_channels: int,\n        stride: int = 1,\n        downsample: Optional[nn.Module] = None,\n    ) -> None:\n        super().__init__()\n        self.conv1 = conv3x3(in_channels, out_channels, stride)\n        self.relu = nn.ReLU(inplace=True)\n        self.conv2 = conv3x3(out_channels, out_channels)\n        self.downsample = downsample\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        residual = x\n        out = self.conv1(x)\n        out = self.relu(out)\n        out = self.conv2(out)\n        if self.downsample:\n            residual = self.downsample(x)\n        out += residual\n        out = self.relu(out)\n        return out\n\n\n########################################################################\n#  SET TRANSFORMER\n########################################################################\n\n\nclass InducedSetAttentionBlock(nn.Module):\n    def __init__(\n        self,\n        embed_dim: int,\n        num_heads: int,\n        dropout: float = 0.0,\n        n_global: int = 1,\n    ) -> None:\n        super().__init__()\n        self.att1 = nn.MultiheadAttention(\n            embed_dim=embed_dim,\n            num_heads=num_heads,\n            kdim=embed_dim,\n            vdim=embed_dim,\n            dropout=dropout,\n            # batch_first=True,\n        )\n        self.att2 = nn.MultiheadAttention(\n            embed_dim=embed_dim,\n            num_heads=num_heads,\n            kdim=embed_dim,\n            vdim=embed_dim,\n            dropout=dropout,\n            # batch_first=True,\n        )\n        self.mlp_1 = nn.Sequential(\n            nn.Linear(embed_dim, embed_dim),\n            nn.ReLU(True),\n            nn.Linear(embed_dim, embed_dim),\n        )\n        self.mlp_2 = nn.Sequential(\n            nn.Linear(embed_dim, embed_dim),\n            nn.ReLU(True),\n            nn.Linear(embed_dim, embed_dim),\n        )\n        self.norm1_1 = nn.LayerNorm(embed_dim)\n        self.norm2_1 = nn.LayerNorm(embed_dim)\n        self.norm1_2 = nn.LayerNorm(embed_dim)\n        self.norm2_2 = nn.LayerNorm(embed_dim)\n        self.pred_element = nn.Linear(embed_dim, 1)\n        self.pred_set = nn.Linear(embed_dim, 1)\n\n    def forward(self, query: torch.Tensor, points: torch.Tensor) -> torch.Tensor:\n\n        # query, key, value\n        h, _ = self.att1(\n            points.transpose(0, 1), query.transpose(0, 1), query.transpose(0, 1)\n        )\n        h = h.transpose(0, 1)\n        h = self.norm1_1(h + points)\n        element_emb = self.norm2_1(self.mlp_1(h) + h)\n        # set_emb shape is torch.Size([2, 1, 512])\n\n        # induced bias\n        h, _ = self.att2(\n            query.transpose(0, 1),\n            element_emb.transpose(0, 1),\n            element_emb.transpose(0, 1),\n        )\n        h = h.transpose(0, 1)\n        h = self.norm1_2(h + query)\n        set_emb = self.norm2_2(self.mlp_2(h) + h)\n        # element_emb shape is torch.Size([2, 128, 512])\n\n        set_pred = self.pred_set(set_emb)\n        element_pred = self.pred_element(element_emb)\n\n        return set_pred, element_pred\n\n\nclass MultiheadAttentionBlock(nn.Module):\n    def __init__(\n        self,\n        embed_dim: int,\n        num_heads: int,\n        dropout: float = 0.0,\n    ) -> None:\n        super().__init__()\n        self.att = nn.MultiheadAttention(\n            embed_dim=embed_dim,\n            num_heads=num_heads,\n            kdim=embed_dim,\n            vdim=embed_dim,\n            dropout=dropout,\n            # batch_first=True,\n        )\n        self.mlp = nn.Sequential(\n            nn.Linear(embed_dim, embed_dim),\n            nn.ReLU(True),\n            nn.Linear(embed_dim, embed_dim),\n        )\n        self.norm1 = nn.LayerNorm(embed_dim)\n        self.norm2 = nn.LayerNorm(embed_dim)\n        self.pred = nn.Linear(embed_dim, 1)\n\n    def forward(self, query: torch.Tensor, points: torch.Tensor) -> torch.Tensor:\n\n        h, _ = self.att(\n            query.transpose(0, 1), points.transpose(0, 1), points.transpose(0, 1)\n        )\n        h = h.transpose(0, 1)\n        h = self.norm1(h + query)\n        set_emb = self.mlp(h)\n        set_emb = self.norm2(set_emb + h)\n        set_pred = self.pred(set_emb)\n\n        return set_pred\n\n\nclass RefSetTransHead(nn.Module):\n    \"\"\"\n    ' use set transformer '\n    Compares two image features to see if they correspond to the same object\n    instance.\n    \"\"\"\n\n    valid_loss_types: List[str] = [\"kl_div\", \"bce\", \"metric\"]\n    valid_compare_types: List[str] = [\"bilinear\", \"token\", \"concat\", \"2head\", \"att\"]\n    valid_set_transformer: List[str] = [\"mab\", \"isab\", \"mab_global\"]\n\n    def __init__(\n        self,\n        in_features_1: int,\n        in_features_2: int,\n        hidden_size: int,\n        test_score_thresh: float,\n        test_nms_thresh: float,\n        test_topk_per_image: int,\n        use_hard_negative_mining: bool = False,\n        num_hard_negatives: int = 16,\n        loss_type: str = \"bce\",\n        use_shared_projection: bool = False,\n        compare_type: str = \"bilinear\",\n        set_trans_type: str = \"mab\",\n        margin_value: float = 0.25,\n        projector_type: str = \"basic\",\n        n_residual_layers: int = 1,\n        trans_dropout: float = 0.0,\n        n_token: int = 0,\n        frame_loss_rate: float = 0.1,\n    ) -> None:\n        super().__init__()\n        self.in_features_1 = in_features_1\n        self.in_features_2 = in_features_2\n        self.hidden_size = hidden_size\n        self.test_score_thresh = test_score_thresh\n        self.test_nms_thresh = test_nms_thresh\n        self.test_topk_per_image = test_topk_per_image\n        self.use_hard_negative_mining = use_hard_negative_mining\n        self.num_hard_negatives = num_hard_negatives\n        self.margin_value = margin_value\n        self.projector_type = projector_type\n        self.n_residual_layers = n_residual_layers\n        self.n_token = n_token\n        self.frame_loss_rate = frame_loss_rate\n\n        assert loss_type in self.valid_loss_types\n        if loss_type == \"metric\":\n            assert compare_type == \"dot\"\n        self.loss_type = loss_type\n        self.use_shared_projection = use_shared_projection\n        if self.use_shared_projection:\n            self.projector = self._create_projection_layers(in_features_1, hidden_size)\n        else:\n            self.projector_1 = self._create_projection_layers(\n                in_features_1, hidden_size\n            )\n            self.projector_2 = self._create_projection_layers(\n                in_features_2, hidden_size\n            )\n        assert compare_type in self.valid_compare_types\n        self.compare_type = compare_type\n        if (\n            self.compare_type == \"bilinear\"\n        ):  # bilinear proposals and references, devided by 8 due to memory issue\n            self.compare = nn.Bilinear(\n                self.hidden_size, self.hidden_size, self.hidden_size // 2\n            )\n        elif self.compare_type == \"token\":\n            self.compare = nn.Embedding(\n                2, self.hidden_size\n            )  # take token as with extra embedding\n        elif self.compare_type == \"concat\":\n            self.compare = None  # concate proposal with reference\n        elif self.compare_type == \"2head\":\n            self.compare = nn.Bilinear(self.hidden_size, self.hidden_size, 1)\n        elif self.compare_type == \"att\":\n            self.compare = (\n                None  # use natural attention block (not self attention anymore!)\n            )\n        else:\n            raise NotImplementedError\n\n        assert set_trans_type in self.valid_set_transformer\n        self.set_trans_type = set_trans_type\n        if set_trans_type == \"mab\":\n            if self.compare_type == \"bilinear\":\n                self.set_trans = MultiheadAttentionBlock(\n                    embed_dim=self.hidden_size // 2, num_heads=4, dropout=trans_dropout\n                )\n            elif self.compare_type == \"2head\" or self.compare_type == \"att\":\n                self.set_trans = MultiheadAttentionBlock(\n                    embed_dim=self.hidden_size, num_heads=4, dropout=trans_dropout\n                )\n            else:  # both token and concat will double the feature dim\n                self.set_trans = MultiheadAttentionBlock(\n                    embed_dim=self.hidden_size * 2, num_heads=4, dropout=trans_dropout\n                )\n        elif set_trans_type == \"mab_global\":\n            # basically the same\n            if self.compare_type == \"bilinear\":\n                self.set_trans = MultiheadAttentionBlock(\n                    embed_dim=self.hidden_size // 2, num_heads=4, dropout=trans_dropout\n                )\n                self.globe = nn.Embedding(1, self.hidden_size // 2)\n            elif self.compare_type == \"2head\":  # one head classify global existance\n                self.set_trans = MultiheadAttentionBlock(\n                    embed_dim=self.hidden_size * 2, num_heads=4, dropout=trans_dropout\n                )\n                self.globe = nn.Embedding(1, self.hidden_size * 2)\n            elif (\n                self.compare_type == \"att\"\n            ):  # one head classify global existance by att\n                self.set_trans = MultiheadAttentionBlock(\n                    embed_dim=self.hidden_size, num_heads=4, dropout=trans_dropout\n                )\n                self.compare = nn.Bilinear(self.hidden_size, self.hidden_size, 1)\n            else:\n                raise NotImplementedError\n\n        elif set_trans_type == \"isab\":\n            # basically the same\n            if self.compare_type == \"bilinear\":\n                self.set_trans = InducedSetAttentionBlock(\n                    embed_dim=self.hidden_size // 2, num_heads=4, dropout=trans_dropout\n                )\n                self.globe = nn.Embedding(1, self.hidden_size // 2)\n            elif self.compare_type == \"att\":\n                self.set_trans = InducedSetAttentionBlock(\n                    embed_dim=self.hidden_size, num_heads=4, dropout=trans_dropout\n                )\n                self.globe = None  # In this case, globe is the query\n            else:\n                raise NotImplementedError\n        else:\n            raise NotImplementedError\n\n    def _create_projection_layers(\n        self,\n        in_features: int,\n        hidden_size: int,\n    ) -> nn.Sequential:\n        if self.projector_type == \"basic\":\n            projector = nn.Sequential(\n                nn.Conv2d(in_features, in_features, 3, 1, 1),\n                nn.ReLU(True),\n                nn.Conv2d(in_features, in_features, 3, 1, 1),\n                nn.ReLU(True),\n                nn.Conv2d(in_features, in_features, 3, 1, 1),\n                nn.ReLU(True),\n                nn.AdaptiveAvgPool2d((1, 1)),\n                nn.Flatten(),\n                nn.Linear(in_features, hidden_size),\n                nn.ReLU(True),\n                nn.Linear(hidden_size, hidden_size),\n            )\n        elif self.projector_type == \"residual\":\n            projector = nn.Sequential(\n                *[\n                    ResidualBlock(in_features, in_features)\n                    for _ in range(self.n_residual_layers)\n                ],\n                nn.AdaptiveAvgPool2d((1, 1)),\n                nn.Flatten(),\n                nn.Linear(in_features, hidden_size),\n                nn.ReLU(True),\n                nn.Linear(hidden_size, hidden_size),\n            )\n        else:\n            raise ValueError(f\"Projector type {self.projector_type} is invalid!\")\n\n        return projector\n\n    def forward(\n        self,\n        x: List[torch.Tensor],\n        y: List[torch.Tensor],\n    ) -> List[torch.Tensor]:\n        \"\"\"\n        Each element of x and y are (N, F, H, W) and (1, F, H, W) tensors.\n        The required output is a (N, 1) matrix of similarities.\n            sim(x_i, y_j) = sigmoid( P(x_i)^T W P(y_j) + b )\n        Outputs:\n            List(Nx1 similarity tensors)\n        Note:\n            N is the number of proposal bboxes.\n            M is the number of visual crop features.\n            Each visual crop is compared with every proposal bbox.\n        \"\"\"\n        # inputs sizes are 8 torch.Size([512, 256, 14, 14]) 8 torch.Size([1, 256, 14, 14])\n        B = len(x)\n        N_input = x[0].shape[0]\n        if self.n_token > 0:  # less token if defined\n            x = [i[: self.n_token, ...] for i in x]\n        N = x[0].shape[0]\n        x_ = torch.cat(x)\n        y_ = torch.cat(y)\n        if self.use_shared_projection:\n            xp = self.projector(x_)  # BNxH\n            yp = self.projector(y_)  # BxH\n        else:\n            xp = self.projector_1(x_)  # NxH\n            yp = self.projector_2(y_)  # 1xH\n        xp = xp.view(B, N, self.hidden_size)\n        yp = yp.view(B, 1, self.hidden_size)\n\n        # apply transformers based on settings\n        if self.compare_type == \"bilinear\":  # bilinear proposals and references\n            feature = self.compare(xp, yp.expand(-1, N, -1).contiguous())\n            if self.set_trans_type == \"isab\":\n                globe_emb = self.globe(\n                    torch.zeros((B, 1), device=feature.device).long()\n                )\n                output = self.set_trans(globe_emb, feature)\n                output = torch.cat(output, dim=1)\n            elif self.set_trans_type == \"mab_global\":\n                globe_emb = self.globe(\n                    torch.zeros((B, 1), device=feature.device).long()\n                )\n                feature = torch.cat([globe_emb, feature], dim=1)\n                output = self.set_trans(feature, feature)\n            else:  # mab\n                output = self.set_trans(feature, feature)\n        elif self.compare_type == \"token\":\n            xp_emb = self.compare(torch.zeros((B, N), device=xp.device).long())\n            yp_emb = self.compare(torch.ones((B, 1), device=yp.device).long())\n            xp = torch.cat([xp, xp_emb], dim=2)\n            yp = torch.cat([yp, yp_emb], dim=2)\n            feature = torch.cat([yp, xp], dim=1)\n            output = self.set_trans(feature, feature)[:, 1:]  # rm the first prediction\n        elif self.compare_type == \"concat\":\n            feature = torch.cat([xp, yp.expand(-1, N, -1).contiguous()], dim=2)\n            output = self.set_trans(feature, feature)\n        elif self.compare_type == \"2head\":\n            yp_exp = yp.expand(-1, xp.shape[1], -1).contiguous()\n            out_bil = self.compare(xp, yp_exp)\n            if self.set_trans_type == \"mab_global\":\n                feature = torch.cat([xp, yp.expand(-1, N, -1).contiguous()], dim=2)\n                globe_emb = self.globe(\n                    torch.zeros((B, 1), device=feature.device).long()\n                )\n                out_set = self.set_trans(globe_emb, feature)\n                output = torch.cat([out_set, out_bil], dim=1)\n            else:  # mab\n                out_set = self.set_trans(xp, yp)\n                output = (out_bil + out_set) * 0.5\n        elif self.compare_type == \"att\":\n            if self.set_trans_type == \"isab\":\n                output = self.set_trans(query=yp, points=xp)\n                output = torch.cat(output, dim=1)\n            elif self.set_trans_type == \"mab_global\":\n                yp_exp = yp.expand(-1, xp.shape[1], -1).contiguous()\n                out_bil = self.compare(xp, yp_exp)\n                out_set = self.set_trans(query=yp, points=xp)\n                output = torch.cat([out_set, out_bil], dim=1)\n            else:  # mab\n                output = self.set_trans(query=xp, points=yp)\n                # raise NotImplementedError\n        else:\n            raise NotImplementedError\n\n        return output\n\n    def losses(\n        self,\n        predictions: List[torch.Tensor],\n        gt_classes: List[Instances],\n    ) -> Dict[str, torch.Tensor]:\n        \"\"\"\n        Args:\n            predictions: return values of :meth:`forward()`\n            proposals (list[Instances]): proposals that match the features that were used\n                to compute predictions. The fields ``proposal_boxes``, ``gt_boxes``,\n                ``gt_classes`` are expected.\n        Returns:\n            Dict[str, Tensor]: dict of losses\n        \"\"\"\n        if self.n_token > 0:  # less token if defined\n            gt_classes = [i[: self.n_token, ...] for i in gt_classes]\n        if self.set_trans_type == \"mab_global\" or self.set_trans_type == \"isab\":\n            frame_prediction = [prediction[0] for prediction in predictions]\n            frame_label = [\n                torch.min(gt_class) for gt_class in gt_classes\n            ]  # 0 means positive, 1 means negative\n\n            loss_frame = binary_cross_entropy_with_logits(\n                torch.stack(frame_prediction).squeeze(),\n                torch.stack(frame_label),\n                reduction=\"mean\",\n                flip_class=True,\n            )\n            predictions = [prediction[1:] for prediction in predictions]\n        # print(' - debug:', predictions[0].shape, gt_classes[0].shape)\n        if self.use_hard_negative_mining:\n            losses = self._losses_hnm(predictions, gt_classes)\n        else:\n            losses = self._losses(predictions, gt_classes)\n\n        if self.set_trans_type == \"mab_global\" or self.set_trans_type == \"isab\":\n            losses.update({\"loss_frame\": loss_frame * self.frame_loss_rate})\n        return losses\n\n    def _losses(\n        self,\n        predictions: List[torch.Tensor],\n        gt_classes: List[Instances],\n    ) -> Dict[str, torch.Tensor]:\n        \"\"\"\n        Standard binary cross entropy loss between predictions and ground-truth boxes.\n        Args: same as :meth: `losses()`\n        Returns:\n            Dict[str, Tensor]: dict of losses\n        \"\"\"\n        if self.loss_type == \"bce\":\n            scores = cat(predictions).squeeze(1)\n            # parse classification outputs\n            gt_classes = cat(gt_classes, dim=0) if len(gt_classes) else torch.empty(0)\n            # _log_classification_stats(scores, gt_classes)\n            loss_cls = binary_cross_entropy_with_logits(\n                scores, gt_classes, reduction=\"mean\", flip_class=True\n            )\n        elif self.loss_type == \"kl_div\":\n            loss_cls = 0.0\n            for pred, gt in zip(predictions, gt_classes):\n                pred = pred.squeeze(1).unsqueeze(0)\n                gt = gt.unsqueeze(0)\n                loss_cls = loss_cls + kl_div(\n                    pred, gt, reduction=\"mean\", flip_class=True\n                )\n        else:\n            loss_cls = 0.0\n            for pred, gt in zip(predictions, gt_classes):\n                loss_cls = loss_cls + triplet_margin(\n                    pred, gt, reduction=\"mean\", flip_cls=True, margin=self.margin_value\n                )\n        losses = {\"loss_cls\": loss_cls}\n\n        return losses\n\n    def _losses_hnm(\n        self,\n        predictions: List[torch.Tensor],\n        gt_classes: List[Instances],\n    ) -> Dict[str, torch.Tensor]:\n        \"\"\"\n        Performs hard-negative mining before applying the standard BCE loss.\n        Args: same as :meth: `losses()`\n        Returns:\n            Dict[str, Tensor]: dict of losses\n        \"\"\"\n        # Perform hard negative mining\n        mined_predictions = []\n        mined_gt_classes = []\n        for predictions_i, gt_classes_i in zip(predictions, gt_classes):\n            neg_mask = gt_classes_i == 1  # (N, )\n            neg_preds = predictions_i[neg_mask]  # (N, 1)\n            if len(neg_preds) <= self.num_hard_negatives:\n                mined_predictions.append(predictions_i)\n                mined_gt_classes.append(gt_classes_i)\n            else:\n                # Get indices of topk negative activations\n                hard_neg_idxs = torch.topk(\n                    neg_preds[:, 0], self.num_hard_negatives\n                ).indices\n                # Select all positives + topk negatives\n                data_mask = gt_classes_i == 0  # (P, )\n                data_mask[hard_neg_idxs] = 1\n                mined_predictions.append(predictions_i[data_mask])\n                mined_gt_classes.append(gt_classes_i[data_mask])\n\n        return self._losses(mined_predictions, mined_gt_classes)\n\n    def inference(self, predictions: List[torch.Tensor], proposals: List[Instances]):\n        \"\"\"\n        Args:\n            predictions: return values of :meth:`forward()`\n            proposals (list[Instances]): proposals that match the features that were used\n                to compute predictions. The fields ``proposal_boxes``, ``gt_boxes``,\n                ``gt_classes`` are expected.\n        Returns:\n            outputs are processed versions of inputs\n        \"\"\"\n        boxes = [x.proposal_boxes.tensor for x in proposals]\n        # remove global token if there is\n        if self.set_trans_type == \"mab_global\" or self.set_trans_type == \"isab\":\n            frame_predictions = [prediction[0] for prediction in predictions]\n            predictions = [prediction[1:] for prediction in predictions]\n        if len(predictions[0]) < len(proposals[0]):  # extend predictions\n            pad_right = len(proposals[0]) - len(predictions[0])\n            # pad 0 to the right\n            predictions = [\n                F.pad(p, (0, 0, 0, pad_right), mode=\"constant\", value=-10.0)\n                for p in predictions\n            ]\n        # Convert predictions to the appropriate format\n        if self.loss_type == \"bce\":\n            predictions = [torch.sigmoid(pred) for pred in predictions]\n            if self.set_trans_type == \"mab_global\" or self.set_trans_type == \"isab\":\n                frame_predictions = torch.sigmoid(torch.cat(frame_predictions))\n                # frame_predictions = (frame_predictions>0.5).float() # make conditional confidence\n                # predictions = [pred*pred_frm for pred,pred_frm in zip(predictions,frame_predictions)]\n                new_predictions = []\n                for pred, pred_frm in zip(predictions, frame_predictions):\n                    pred_update = 0.5 * pred + 0.5 * pred_frm\n                    # max_pred = pred_update.max()\n                    # pred_update[pred_update!=max_pred] = pred_frm*0.01\n                    # pred_update[pred_update==max_pred] = pred_frm\n                    new_predictions.append(pred_update)\n                predictions = new_predictions\n        elif self.loss_type == \"kl_div\":\n            predictions = [torch.softmax(pred, dim=0) for pred in predictions]\n        # The scores must include K + 1 classes, where the last class is a\n        # background class.# Here, the first class is the actual visual crop.\n        # The second class is 1 - that value.\n        scores = [torch.cat([pred, 1 - pred], dim=1) for pred in predictions]\n        image_shapes = [x.image_size for x in proposals]\n        # print(boxes[0].shape, scores[0].shape)\n        # print(predictions[0][:10])\n        outputs = fast_rcnn_inference(\n            boxes,\n            scores,\n            image_shapes,\n            self.test_score_thresh,\n            self.test_nms_thresh,\n            self.test_topk_per_image,\n        )\n\n        instances, idx = outputs\n        if self.set_trans_type == \"mab_global\" or self.set_trans_type == \"isab\":\n            # again we use the hack to inject the new data to instance\n            for instance, frame_prediction in zip(instances, frame_predictions):\n                instance.set(\"frame\", frame_prediction.expand(len(instances[0])))\n\n        return instances, idx\n\n\n@ROI_HEADS_REGISTRY.register()\nclass SetTransROIHeads(ROIHeads):\n    \"\"\"\n    A Standard ROIHeads which contains an addition of set transformer head.\n    \"\"\"\n\n    @configurable\n    def __init__(\n        self,\n        *args: Any,\n        siam_in_features: List[str],\n        siam_q_feature: str,\n        siam_pooler: ROIPooler,\n        siam_head: nn.Module,\n        ref_pooler: nn.Module,\n        use_cross_batch_negatives: bool = False,\n        **kwargs: Any,\n    ) -> None:\n        \"\"\"\n        NOTE: this interface is experimental.\n        Args:\n            siam_in_features (list[str]): list of feature names to use for the siam head.\n            siam_pooler (ROIPooler): pooler to extra region features for siam head\n            siam_head (nn.Module): transform features to make siam predictions\n            siam_predictor (nn.Module): make siam predictions from the feature.\n                Should have the same interface as :class:`FastRCNNOutputLayers`.\n            use_cross_batch_negatives\n        \"\"\"\n        super().__init__(**kwargs)\n        # keep self.in_features for backward compatibility\n        self.in_features = self.siam_in_features = siam_in_features\n        self.q_feature = self.siam_q_feature = siam_q_feature\n        self.siam_pooler = siam_pooler\n        self.siam_head = siam_head\n        self.ref_pooler = ref_pooler\n        self.use_cross_batch_negatives = use_cross_batch_negatives\n\n    @classmethod\n    def from_config(cls, cfg: CfgNode, input_shape: Dict[str, ShapeSpec]):\n        ret = super().from_config(cfg)\n        # Subclasses that have not been updated to use from_config style construction\n        # may have overridden _init_*_head methods. In this case, those overridden methods\n        # will not be classmethods and we need to avoid trying to call them here.\n        # We test for this with ismethod which only returns True for bound methods of cls.\n        # Such subclasses will need to handle calling their overridden _init_*_head methods.\n        if inspect.ismethod(cls._init_siamese_head):\n            ret.update(cls._init_siamese_head(cfg, input_shape))\n        return ret\n\n    @classmethod\n    def _init_siamese_head(\n        cls,\n        cfg: CfgNode,\n        input_shape: Dict[str, ShapeSpec],\n    ) -> Dict[str, Any]:\n        # fmt: off\n        in_features          = cfg.MODEL.ROI_SIAMESE_HEAD.IN_FEATURES\n        q_feature            = cfg.MODEL.ROI_SIAMESE_HEAD.QUERY_FEATURE\n        pooler_resolution    = cfg.MODEL.ROI_SIAMESE_HEAD.POOLER_RESOLUTION\n        pooler_scales        = tuple(1.0 / input_shape[k].stride for k in in_features)\n        sampling_ratio       = cfg.MODEL.ROI_SIAMESE_HEAD.POOLER_SAMPLING_RATIO\n        pooler_type          = cfg.MODEL.ROI_SIAMESE_HEAD.POOLER_TYPE\n        hidden_size          = cfg.MODEL.ROI_SIAMESE_HEAD.HIDDEN_SIZE\n        projector_type       = cfg.MODEL.ROI_SIAMESE_HEAD.PROJECTOR_TYPE\n        n_residual_layers    = cfg.MODEL.ROI_SIAMESE_HEAD.N_RESIDUAL_LAYERS\n        test_score_thresh    = cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST\n        test_nms_thresh      = cfg.MODEL.ROI_HEADS.NMS_THRESH_TEST\n        test_topk_per_image  = cfg.TEST.DETECTIONS_PER_IMAGE\n        hnm_enable           = cfg.MODEL.ROI_SIAMESE_HEAD.HARD_NEGATIVE_MINING.ENABLE\n        hnm_num_negatives    = cfg.MODEL.ROI_SIAMESE_HEAD.HARD_NEGATIVE_MINING.NUM_NEGATIVES\n        loss_type            = cfg.MODEL.ROI_SIAMESE_HEAD.LOSS_TYPE\n        share_projection     = cfg.MODEL.ROI_SIAMESE_HEAD.SHARE_PROJECTION\n        compare_type         = cfg.MODEL.ROI_SIAMESE_HEAD.COMPARE_TYPE\n        set_trans_type       = cfg.MODEL.ROI_SIAMESE_HEAD.TRANS_TYPE\n        margin_value         = cfg.MODEL.ROI_SIAMESE_HEAD.TRIPLET_MARGIN\n        use_cross_batch_negs = cfg.MODEL.ROI_SIAMESE_HEAD.USE_CROSS_BATCH_NEGATIVES\n        trans_dropout        = cfg.MODEL.ROI_SIAMESE_HEAD.TRANS_DROPOUT\n        # fmt: on\n\n        # If StandardROIHeads is applied on multiple feature maps (as in FPN),\n        # then we share the same predictors and therefore the channel counts must be the same\n        in_channels = [input_shape[f].channels for f in in_features]\n        # Check all channel counts are equal\n        assert len(set(in_channels)) == 1, in_channels\n        in_channels = in_channels[0]\n        q_channels = input_shape[q_feature].channels\n\n        siam_pooler = ROIPooler(\n            output_size=pooler_resolution,\n            scales=pooler_scales,\n            sampling_ratio=sampling_ratio,\n            pooler_type=pooler_type,\n        )\n        ref_pooler = nn.AdaptiveAvgPool2d(pooler_resolution)\n        siam_head = RefSetTransHead(\n            in_channels,\n            q_channels,\n            hidden_size,\n            test_score_thresh,\n            test_nms_thresh,\n            test_topk_per_image,\n            use_hard_negative_mining=hnm_enable,\n            num_hard_negatives=hnm_num_negatives,\n            loss_type=loss_type,\n            use_shared_projection=share_projection,\n            set_trans_type=set_trans_type,\n            compare_type=compare_type,\n            margin_value=margin_value,\n            projector_type=projector_type,\n            n_residual_layers=n_residual_layers,\n            trans_dropout=trans_dropout,\n            n_token=cfg.MODEL.ROI_SIAMESE_HEAD.TOKEN_NUMBER_PER_IMAGE,\n            frame_loss_rate=cfg.MODEL.ROI_SIAMESE_HEAD.FRAME_LOSS_RATE,\n        )\n        return {\n            \"siam_in_features\": in_features,\n            \"siam_q_feature\": q_feature,\n            \"siam_pooler\": siam_pooler,\n            \"siam_head\": siam_head,\n            \"ref_pooler\": ref_pooler,\n            \"use_cross_batch_negatives\": use_cross_batch_negs,\n        }\n\n    def forward(\n        self,\n        images: ImageList,\n        features: Dict[str, torch.Tensor],\n        proposals: List[Instances],\n        ref_features: Dict[str, torch.Tensor],\n        targets: Optional[List[Instances]] = None,\n        return_top_feature: bool = False,\n    ) -> Tuple[List[Instances], Dict[str, torch.Tensor]]:\n        \"\"\"\n        See :class:`ROIHeads.forward`.\n        \"\"\"\n        del images\n        if self.training:\n            assert targets, \"'targets' argument is required during training\"\n\n            # gt_rm should be defined in dataloader\n            # it exists only when setted\n            gt_rm_batch = [p._gt_rm for p in proposals]\n\n            proposals = self.label_and_sample_proposals(proposals, targets)\n\n            # random gt removal\n            for img_idx in range(len(proposals)):\n                proposals_img = proposals[img_idx]\n                if gt_rm_batch[img_idx]:\n                    proposals_img_gt_rm_idx = (\n                        proposals_img.gt_classes == 1\n                    )  # 1 means negative!!\n                    # print(proposals_img_gt_rm_idx)\n                    proposals_img_gt_rm = proposals_img[proposals_img_gt_rm_idx]\n                    proposals[img_idx] = proposals_img_gt_rm\n\n            del targets\n\n        if self.training:\n            losses = self._forward_siam(features, ref_features, proposals)\n            # Usually the original proposals used by the box head are used by the mask, keypoint\n            # heads. But when `self.train_on_pred_boxes is True`, proposals will contain boxes\n            # predicted by the box head.\n            return proposals, losses\n        else:\n            pred_instances = self._forward_siam(\n                features, ref_features, proposals, return_top_feature\n            )\n            return pred_instances, {}\n\n    def _forward_siam(\n        self,\n        features: Dict[str, torch.Tensor],\n        ref_features: Dict[str, torch.Tensor],\n        proposals: List[Instances],\n        return_top_feature: bool = False,\n    ):\n        \"\"\"\n        Forward logic of the siam prediction branch. If `self.train_on_pred_boxes is True`,\n            the function puts predicted boxes in the `proposal_boxes` field of `proposals` argument.\n        Args:\n            features (dict[str, Tensor]): mapping from feature map names to tensor.\n                Same as in :meth:`ROIHeads.forward`.\n            ref_features (dict[str, Tensor]): mapping from feature map names to tensor.\n                Same as in :meth:`ROIHeads.forward`.\n            proposals (list[Instances]): the per-image object proposals with\n                their matching ground truth.\n                Each has fields \"proposal_boxes\", and \"objectness_logits\", \"gt_boxes\".\n        Returns:\n            In training, a dict of losses.\n            In inference, a list of NxM similarity scores to each proposal.\n        \"\"\"\n        features = [features[f] for f in self.siam_in_features]\n        ref_features = ref_features[self.siam_q_feature]  # (N, R, *)\n        siam_features = self.siam_pooler(\n            features, [x.proposal_boxes for x in proposals]\n        )\n        # siam_features contains (M, C, H, W) tensor combining all images and proposals.\n        # these need to be split into batches for siam_head.\n        siam_features_joint = siam_features\n        siam_features_split = []\n        itr = 0\n        for proposals_per_image in proposals:\n            nprops = proposals_per_image.proposal_boxes.tensor.size(0)\n            siam_features_split.append(siam_features[itr : itr + nprops])\n            itr += nprops\n        siam_features = siam_features_split\n        # Pool ref_features\n        N, R = ref_features.shape[:2]\n        ref_features = ref_features.view(-1, *ref_features.shape[2:])\n        ref_features = self.ref_pooler(ref_features)\n        ref_features = ref_features.view(N, R, *ref_features.shape[1:])\n        # ref_features contains (N, R, C, H, W) tensor with one reference per batch\n        # multiple rotations of the same reference may be provided (R)\n        # these need to be split into list of batch elements for siam_head\n        ref_features = [rf for rf in ref_features]\n        if self.training:\n            gt_classes = [proposals_i.gt_classes for proposals_i in proposals]\n            gt_classes_joint = cat(gt_classes, dim=0)\n            if self.use_cross_batch_negatives:\n                siam_features_cb = []\n                gt_classes_cb = []\n                batch_idxs = torch.Tensor(\n                    [\n                        i\n                        for i, gt_classes_i in enumerate(gt_classes)\n                        for _ in range(len(gt_classes_i))\n                    ]\n                )\n                for i in range(len(gt_classes)):\n                    pos_mask = batch_idxs == i\n                    neg_mask = ~pos_mask\n                    gt = torch.zeros_like(gt_classes_joint)\n                    gt[pos_mask] = gt_classes_joint[pos_mask]\n                    gt[neg_mask] = 1\n                    siam_features_cb.append(siam_features_joint)\n                    gt_classes_cb.append(gt)\n                siam_features = siam_features_cb\n                gt_classes = gt_classes_cb\n\n        predictions = self.siam_head(siam_features, ref_features)\n\n        if self.training:\n            losses = self.siam_head.losses(predictions, gt_classes)\n            return losses\n        else:\n            pred_instances, kept_indices = self.siam_head.inference(\n                predictions, proposals\n            )\n            if not return_top_feature:\n                return pred_instances\n\n            # compute frame feature: concate proposal with reference\n            top1_feature_pool = [\n                F.adaptive_avg_pool2d(feat[idx[0]], (1, 1)).squeeze()\n                for feat, idx in zip(siam_features, kept_indices)\n            ]\n            reference_feature_pool = [\n                F.adaptive_avg_pool2d(feat, (1, 1)).squeeze() for feat in ref_features\n            ]\n            frame_features = [\n                torch.cat([prop, ref])\n                for prop, ref in zip(top1_feature_pool, reference_feature_pool)\n            ]\n            for pred_instance, frame_feature in zip(pred_instances, frame_features):\n                pred_instance._frame_feature = frame_feature\n\n            return pred_instances\n"
  },
  {
    "path": "VQ2D/detectron2_extensions/modeling/roi_heads/siam_heads.py",
    "content": "import inspect\nfrom typing import Dict, List, Optional, Tuple, Any\n\nimport torch\nimport torch.nn as nn\nfrom detectron2.config import CfgNode, configurable\nfrom detectron2.layers import cat, ShapeSpec\nfrom detectron2.modeling.poolers import ROIPooler\nfrom detectron2.modeling.roi_heads import ROI_HEADS_REGISTRY, ROIHeads\nfrom detectron2.modeling.roi_heads.fast_rcnn import fast_rcnn_inference\nfrom detectron2.structures import ImageList, Instances\nfrom detectron2_extensions.layers import (\n    binary_cross_entropy_with_logits,\n    kl_div,\n    triplet_margin,\n)\n\n\nclass DotProduct(nn.Module):\n    def forward(self, x: torch.Tensor, y: torch.Tensor) -> torch.Tensor:\n        \"\"\"\n        Inputs:\n            x - (N, F)\n            y - (N, F)\n        Output:\n            output - (N, 1) dot-product output\n        \"\"\"\n        assert len(x.shape) == 2\n        assert len(y.shape) == 2\n        assert x.shape == y.shape\n        x = nn.functional.normalize(x, dim=1)\n        y = nn.functional.normalize(y, dim=1)\n        output = torch.matmul(x.unsqueeze(1), y.unsqueeze(2)).squeeze(2)\n        return output\n\n\n# 3x3 convolution\ndef conv3x3(in_channels: int, out_channels: int, stride: int = 1) -> nn.Conv2d:\n    return nn.Conv2d(\n        in_channels, out_channels, kernel_size=3, stride=stride, padding=1, bias=False\n    )\n\n\nclass ResidualBlock(nn.Module):\n    def __init__(\n        self,\n        in_channels: int,\n        out_channels: int,\n        stride: int = 1,\n        downsample: Optional[nn.Module] = None,\n    ) -> None:\n        super().__init__()\n        self.conv1 = conv3x3(in_channels, out_channels, stride)\n        self.relu = nn.ReLU(inplace=True)\n        self.conv2 = conv3x3(out_channels, out_channels)\n        self.downsample = downsample\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        residual = x\n        out = self.conv1(x)\n        out = self.relu(out)\n        out = self.conv2(out)\n        if self.downsample:\n            residual = self.downsample(x)\n        out += residual\n        out = self.relu(out)\n        return out\n\n\nclass SiameseHead(nn.Module):\n    \"\"\"\n    Compares two image features to see if they correspond to the same object\n    instance.\n    \"\"\"\n\n    valid_loss_types: List[str] = [\"kl_div\", \"bce\", \"metric\"]\n    valid_compare_types: List[str] = [\"bilinear\", \"dot\"]\n\n    def __init__(\n        self,\n        in_features_1: int,\n        in_features_2: int,\n        hidden_size: int,\n        test_score_thresh: float,\n        test_nms_thresh: float,\n        test_topk_per_image: int,\n        use_hard_negative_mining: bool = False,\n        num_hard_negatives: int = 16,\n        loss_type: str = \"bce\",\n        use_shared_projection: bool = False,\n        compare_type: str = \"bilinear\",\n        margin_value: float = 0.25,\n        projector_type: str = \"basic\",\n        n_residual_layers: int = 1,\n    ) -> None:\n        super().__init__()\n        self.in_features_1 = in_features_1\n        self.in_features_2 = in_features_2\n        self.hidden_size = hidden_size\n        self.test_score_thresh = test_score_thresh\n        self.test_nms_thresh = test_nms_thresh\n        self.test_topk_per_image = test_topk_per_image\n        self.use_hard_negative_mining = use_hard_negative_mining\n        self.num_hard_negatives = num_hard_negatives\n        self.margin_value = margin_value\n        self.projector_type = projector_type\n        self.n_residual_layers = n_residual_layers\n        assert loss_type in self.valid_loss_types\n        if loss_type == \"metric\":\n            assert compare_type == \"dot\"\n        self.loss_type = loss_type\n        self.use_shared_projection = use_shared_projection\n        if self.use_shared_projection:\n            self.projector = self._create_projection_layers(in_features_1, hidden_size)\n        else:\n            self.projector_1 = self._create_projection_layers(\n                in_features_1, hidden_size\n            )\n            self.projector_2 = self._create_projection_layers(\n                in_features_2, hidden_size\n            )\n        assert compare_type in self.valid_compare_types\n        self.compare_type = compare_type\n        if self.compare_type == \"bilinear\":\n            self.compare = nn.Bilinear(self.hidden_size, self.hidden_size, 1)\n        else:\n            self.compare = DotProduct()\n\n    def _create_projection_layers(\n        self,\n        in_features: int,\n        hidden_size: int,\n    ) -> nn.Sequential:\n        if self.projector_type == \"basic\":\n            projector = nn.Sequential(\n                nn.Conv2d(in_features, in_features, 3, 1, 1),\n                nn.ReLU(True),\n                nn.Conv2d(in_features, in_features, 3, 1, 1),\n                nn.ReLU(True),\n                nn.Conv2d(in_features, in_features, 3, 1, 1),\n                nn.ReLU(True),\n                nn.AdaptiveAvgPool2d((1, 1)),\n                nn.Flatten(),\n                nn.Linear(in_features, hidden_size),\n                nn.ReLU(True),\n                nn.Linear(hidden_size, hidden_size),\n            )\n        elif self.projector_type == \"residual\":\n            projector = nn.Sequential(\n                *[\n                    ResidualBlock(in_features, in_features)\n                    for _ in range(self.n_residual_layers)\n                ],\n                nn.AdaptiveAvgPool2d((1, 1)),\n                nn.Flatten(),\n                nn.Linear(in_features, hidden_size),\n                nn.ReLU(True),\n                nn.Linear(hidden_size, hidden_size),\n            )\n        else:\n            raise ValueError(f\"Projector type {self.projector_type} is invalid!\")\n\n        return projector\n\n    def forward(\n        self, x: List[torch.Tensor], y: List[torch.Tensor]\n    ) -> List[torch.Tensor]:\n        \"\"\"\n        Each element of x and y are (N, F, H, W) and (1, F, H, W) tensors.\n        The required output is a (N, 1) matrix of similarities.\n\n            sim(x_i, y_j) = sigmoid( P(x_i)^T W P(y_j) + b )\n\n        Outputs:\n            List(Nx1 similarity tensors)\n\n        Note:\n            N is the number of proposal bboxes.\n            M is the number of visual crop features.\n            Each visual crop is compared with every proposal bbox.\n        \"\"\"\n\n        out = []\n        for x_, y_ in zip(x, y):\n            if self.use_shared_projection:\n                xp = self.projector(x_)  # NxH\n                yps = self.projector(y_)  # 1xH\n            else:\n                xp = self.projector_1(x_)  # NxH\n                yps = self.projector_2(y_)  # 1xH\n            sims = []\n            for yp in yps:\n                yp = yp.unsqueeze(0).expand(xp.shape[0], -1)  # NxH\n                sim = self.compare(xp, yp)  # Nx1\n                sims.append(sim)\n            if len(sims) == 1:\n                sim = sims[0]  # Nx1\n            else:\n                sims = torch.stack(sims, dim=1)  # Nx1x1\n                assert sims.shape[1] == 1\n                sim = sims.squeeze(1)  # Nx1\n            out.append(sim)\n        return out\n\n    def losses(\n        self,\n        predictions: List[torch.Tensor],\n        gt_classes: List[Instances],\n    ) -> Dict[str, torch.Tensor]:\n        \"\"\"\n        Args:\n            predictions: return values of :meth:`forward()`\n            proposals (list[Instances]): proposals that match the features that were used\n                to compute predictions. The fields ``proposal_boxes``, ``gt_boxes``,\n                ``gt_classes`` are expected.\n        Returns:\n            Dict[str, Tensor]: dict of losses\n        \"\"\"\n        if self.use_hard_negative_mining:\n            return self._losses_hnm(predictions, gt_classes)\n        else:\n            return self._losses(predictions, gt_classes)\n\n    def _losses(\n        self,\n        predictions: List[torch.Tensor],\n        gt_classes: List[Instances],\n    ) -> Dict[str, torch.Tensor]:\n        \"\"\"\n        Standard binary cross entropy loss between predictions and ground-truth boxes.\n        Args: same as :meth: `losses()`\n        Returns:\n            Dict[str, Tensor]: dict of losses\n        \"\"\"\n        if self.loss_type == \"bce\":\n            scores = cat(predictions).squeeze(1)\n            # parse classification outputs\n            gt_classes = cat(gt_classes, dim=0) if len(gt_classes) else torch.empty(0)\n            # _log_classification_stats(scores, gt_classes)\n            loss_cls = binary_cross_entropy_with_logits(\n                scores, gt_classes, reduction=\"mean\", flip_class=True\n            )\n        elif self.loss_type == \"kl_div\":\n            loss_cls = 0.0\n            for pred, gt in zip(predictions, gt_classes):\n                pred = pred.squeeze(1).unsqueeze(0)\n                gt = gt.unsqueeze(0)\n                loss_cls = loss_cls + kl_div(\n                    pred, gt, reduction=\"mean\", flip_class=True\n                )\n        else:\n            loss_cls = 0.0\n            for pred, gt in zip(predictions, gt_classes):\n                loss_cls = loss_cls + triplet_margin(\n                    pred, gt, reduction=\"mean\", flip_cls=True, margin=self.margin_value\n                )\n        losses = {\"loss_cls\": loss_cls}\n\n        return losses\n\n    def _losses_hnm(\n        self,\n        predictions: List[torch.Tensor],\n        gt_classes: List[Instances],\n    ) -> Dict[str, torch.Tensor]:\n        \"\"\"\n        Performs hard-negative mining before applying the standard BCE loss.\n        Args: same as :meth: `losses()`\n        Returns:\n            Dict[str, Tensor]: dict of losses\n        \"\"\"\n        # Perform hard negative mining\n        mined_predictions = []\n        mined_gt_classes = []\n        for predictions_i, gt_classes_i in zip(predictions, gt_classes):\n            neg_mask = gt_classes_i == 1  # (N, )\n            neg_preds = predictions_i[neg_mask]  # (N, 1)\n            if len(neg_preds) <= self.num_hard_negatives:\n                mined_predictions.append(predictions_i)\n                mined_gt_classes.append(gt_classes_i)\n            else:\n                # Get indices of topk negative activations\n                hard_neg_idxs = torch.topk(\n                    neg_preds[:, 0], self.num_hard_negatives\n                ).indices\n                # Select all positives + topk negatives\n                data_mask = gt_classes_i == 0  # (P, )\n                data_mask[hard_neg_idxs] = 1\n                mined_predictions.append(predictions_i[data_mask])\n                mined_gt_classes.append(gt_classes_i[data_mask])\n\n        return self._losses(mined_predictions, mined_gt_classes)\n\n    def inference(self, predictions: List[torch.Tensor], proposals: List[Instances]):\n        \"\"\"\n        Args:\n            predictions: return values of :meth:`forward()`\n            proposals (list[Instances]): proposals that match the features that were used\n                to compute predictions. The fields ``proposal_boxes``, ``gt_boxes``,\n                ``gt_classes`` are expected.\n        Returns:\n            outputs are processed versions of inputs\n        \"\"\"\n        boxes = [x.proposal_boxes.tensor for x in proposals]\n        # Convert predictions to the appropriate format\n        if self.loss_type == \"bce\":\n            predictions = [torch.sigmoid(pred) for pred in predictions]\n        elif self.loss_type == \"kl_div\":\n            predictions = [torch.softmax(pred, dim=0) for pred in predictions]\n        # The scores must include K + 1 classes, where the last class is a\n        # background class.# Here, the first class is the actual visual crop.\n        # The second class is 1 - that value.\n        scores = [torch.cat([pred, 1 - pred], dim=1) for pred in predictions]\n        image_shapes = [x.image_size for x in proposals]\n\n        outputs = fast_rcnn_inference(\n            boxes,\n            scores,\n            image_shapes,\n            self.test_score_thresh,\n            self.test_nms_thresh,\n            self.test_topk_per_image,\n        )\n\n        return outputs\n\n\n@ROI_HEADS_REGISTRY.register()\nclass SiameseROIHeads(ROIHeads):\n    \"\"\"\n    A Standard ROIHeads which contains an addition of SiamesePredictor head.\n    \"\"\"\n\n    @configurable\n    def __init__(\n        self,\n        *args: Any,\n        siam_in_features: List[str],\n        siam_q_feature: str,\n        siam_pooler: ROIPooler,\n        siam_head: nn.Module,\n        ref_pooler: nn.Module,\n        use_cross_batch_negatives: bool = False,\n        **kwargs: Any,\n    ) -> None:\n        \"\"\"\n        NOTE: this interface is experimental.\n        Args:\n            siam_in_features (list[str]): list of feature names to use for the siam head.\n            siam_pooler (ROIPooler): pooler to extra region features for siam head\n            siam_head (nn.Module): transform features to make siam predictions\n            siam_predictor (nn.Module): make siam predictions from the feature.\n                Should have the same interface as :class:`FastRCNNOutputLayers`.\n            use_cross_batch_negatives\n        \"\"\"\n        super().__init__(**kwargs)\n        # keep self.in_features for backward compatibility\n        self.in_features = self.siam_in_features = siam_in_features\n        self.q_feature = self.siam_q_feature = siam_q_feature\n        self.siam_pooler = siam_pooler\n        self.siam_head = siam_head\n        self.ref_pooler = ref_pooler\n        self.use_cross_batch_negatives = use_cross_batch_negatives\n\n    @classmethod\n    def from_config(cls, cfg: CfgNode, input_shape: Dict[str, ShapeSpec]):\n        ret = super().from_config(cfg)\n        # Subclasses that have not been updated to use from_config style construction\n        # may have overridden _init_*_head methods. In this case, those overridden methods\n        # will not be classmethods and we need to avoid trying to call them here.\n        # We test for this with ismethod which only returns True for bound methods of cls.\n        # Such subclasses will need to handle calling their overridden _init_*_head methods.\n        if inspect.ismethod(cls._init_siamese_head):\n            ret.update(cls._init_siamese_head(cfg, input_shape))\n        return ret\n\n    @classmethod\n    def _init_siamese_head(\n        cls,\n        cfg: CfgNode,\n        input_shape: Dict[str, ShapeSpec],\n    ) -> Dict[str, Any]:\n        # fmt: off\n        in_features          = cfg.MODEL.ROI_SIAMESE_HEAD.IN_FEATURES\n        q_feature            = cfg.MODEL.ROI_SIAMESE_HEAD.QUERY_FEATURE\n        pooler_resolution    = cfg.MODEL.ROI_SIAMESE_HEAD.POOLER_RESOLUTION\n        pooler_scales        = tuple(1.0 / input_shape[k].stride for k in in_features)\n        sampling_ratio       = cfg.MODEL.ROI_SIAMESE_HEAD.POOLER_SAMPLING_RATIO\n        pooler_type          = cfg.MODEL.ROI_SIAMESE_HEAD.POOLER_TYPE\n        hidden_size          = cfg.MODEL.ROI_SIAMESE_HEAD.HIDDEN_SIZE\n        projector_type       = cfg.MODEL.ROI_SIAMESE_HEAD.PROJECTOR_TYPE\n        n_residual_layers    = cfg.MODEL.ROI_SIAMESE_HEAD.N_RESIDUAL_LAYERS\n        test_score_thresh    = cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST\n        test_nms_thresh      = cfg.MODEL.ROI_HEADS.NMS_THRESH_TEST\n        test_topk_per_image  = cfg.TEST.DETECTIONS_PER_IMAGE\n        hnm_enable           = cfg.MODEL.ROI_SIAMESE_HEAD.HARD_NEGATIVE_MINING.ENABLE\n        hnm_num_negatives    = cfg.MODEL.ROI_SIAMESE_HEAD.HARD_NEGATIVE_MINING.NUM_NEGATIVES\n        loss_type            = cfg.MODEL.ROI_SIAMESE_HEAD.LOSS_TYPE\n        share_projection     = cfg.MODEL.ROI_SIAMESE_HEAD.SHARE_PROJECTION\n        compare_type         = cfg.MODEL.ROI_SIAMESE_HEAD.COMPARE_TYPE\n        margin_value         = cfg.MODEL.ROI_SIAMESE_HEAD.TRIPLET_MARGIN\n        use_cross_batch_negs = cfg.MODEL.ROI_SIAMESE_HEAD.USE_CROSS_BATCH_NEGATIVES\n        # fmt: on\n\n        # If StandardROIHeads is applied on multiple feature maps (as in FPN),\n        # then we share the same predictors and therefore the channel counts must be the same\n        in_channels = [input_shape[f].channels for f in in_features]\n        # Check all channel counts are equal\n        assert len(set(in_channels)) == 1, in_channels\n        in_channels = in_channels[0]\n        q_channels = input_shape[q_feature].channels\n\n        siam_pooler = ROIPooler(\n            output_size=pooler_resolution,\n            scales=pooler_scales,\n            sampling_ratio=sampling_ratio,\n            pooler_type=pooler_type,\n        )\n        ref_pooler = nn.AdaptiveAvgPool2d(pooler_resolution)\n        siam_head = SiameseHead(\n            in_channels,\n            q_channels,\n            hidden_size,\n            test_score_thresh,\n            test_nms_thresh,\n            test_topk_per_image,\n            use_hard_negative_mining=hnm_enable,\n            num_hard_negatives=hnm_num_negatives,\n            loss_type=loss_type,\n            use_shared_projection=share_projection,\n            compare_type=compare_type,\n            margin_value=margin_value,\n            projector_type=projector_type,\n            n_residual_layers=n_residual_layers,\n        )\n        return {\n            \"siam_in_features\": in_features,\n            \"siam_q_feature\": q_feature,\n            \"siam_pooler\": siam_pooler,\n            \"siam_head\": siam_head,\n            \"ref_pooler\": ref_pooler,\n            \"use_cross_batch_negatives\": use_cross_batch_negs,\n        }\n\n    def forward(\n        self,\n        images: ImageList,\n        features: Dict[str, torch.Tensor],\n        proposals: List[Instances],\n        ref_features: Dict[str, torch.Tensor],\n        targets: Optional[List[Instances]] = None,\n    ) -> Tuple[List[Instances], Dict[str, torch.Tensor]]:\n        \"\"\"\n        See :class:`ROIHeads.forward`.\n        \"\"\"\n        del images\n        if self.training:\n            assert targets, \"'targets' argument is required during training\"\n            proposals = self.label_and_sample_proposals(proposals, targets)\n        del targets\n\n        if self.training:\n            losses = self._forward_siam(features, ref_features, proposals)\n            # Usually the original proposals used by the box head are used by the mask, keypoint\n            # heads. But when `self.train_on_pred_boxes is True`, proposals will contain boxes\n            # predicted by the box head.\n            return proposals, losses\n        else:\n            pred_instances = self._forward_siam(features, ref_features, proposals)\n            return pred_instances, {}\n\n    def _forward_siam(\n        self,\n        features: Dict[str, torch.Tensor],\n        ref_features: Dict[str, torch.Tensor],\n        proposals: List[Instances],\n    ):\n        \"\"\"\n        Forward logic of the siam prediction branch. If `self.train_on_pred_boxes is True`,\n            the function puts predicted boxes in the `proposal_boxes` field of `proposals` argument.\n        Args:\n            features (dict[str, Tensor]): mapping from feature map names to tensor.\n                Same as in :meth:`ROIHeads.forward`.\n            ref_features (dict[str, Tensor]): mapping from feature map names to tensor.\n                Same as in :meth:`ROIHeads.forward`.\n            proposals (list[Instances]): the per-image object proposals with\n                their matching ground truth.\n                Each has fields \"proposal_boxes\", and \"objectness_logits\", \"gt_boxes\".\n        Returns:\n            In training, a dict of losses.\n            In inference, a list of NxM similarity scores to each proposal.\n        \"\"\"\n        features = [features[f] for f in self.siam_in_features]\n        ref_features = ref_features[self.siam_q_feature]  # (N, R, *)\n        siam_features = self.siam_pooler(\n            features, [x.proposal_boxes for x in proposals]\n        )\n        # siam_features contains (M, C, H, W) tensor combining all images and proposals.\n        # these need to be split into batches for siam_head.\n        siam_features_joint = siam_features\n        siam_features_split = []\n        itr = 0\n        for proposals_per_image in proposals:\n            nprops = proposals_per_image.proposal_boxes.tensor.size(0)\n            siam_features_split.append(siam_features[itr : itr + nprops])\n            itr += nprops\n        siam_features = siam_features_split\n        # Pool ref_features\n        N, R = ref_features.shape[:2]\n        ref_features = ref_features.view(-1, *ref_features.shape[2:])\n        ref_features = self.ref_pooler(ref_features)\n        ref_features = ref_features.view(N, R, *ref_features.shape[1:])\n        # ref_features contains (N, R, C, H, W) tensor with one reference per batch\n        # multiple rotations of the same reference may be provided (R)\n        # these need to be split into list of batch elements for siam_head\n        ref_features = [rf for rf in ref_features]\n        if self.training:\n            gt_classes = [proposals_i.gt_classes for proposals_i in proposals]\n            gt_classes_joint = cat(gt_classes, dim=0)\n            if self.use_cross_batch_negatives:\n                siam_features_cb = []\n                gt_classes_cb = []\n                batch_idxs = torch.Tensor(\n                    [\n                        i\n                        for i, gt_classes_i in enumerate(gt_classes)\n                        for _ in range(len(gt_classes_i))\n                    ]\n                )\n                for i in range(len(gt_classes)):\n                    pos_mask = batch_idxs == i\n                    neg_mask = ~pos_mask\n                    gt = torch.zeros_like(gt_classes_joint)\n                    gt[pos_mask] = gt_classes_joint[pos_mask]\n                    gt[neg_mask] = 1\n                    siam_features_cb.append(siam_features_joint)\n                    gt_classes_cb.append(gt)\n                siam_features = siam_features_cb\n                gt_classes = gt_classes_cb\n\n        predictions = self.siam_head(siam_features, ref_features)\n\n        del siam_features\n\n        if self.training:\n            losses = self.siam_head.losses(predictions, gt_classes)\n            return losses\n        else:\n            pred_instances, _ = self.siam_head.inference(predictions, proposals)\n            return pred_instances\n"
  },
  {
    "path": "VQ2D/evaluate_vq.py",
    "content": "import argparse\nimport json\n\nimport tqdm\nfrom vq2d.metrics.metrics import compute_visual_query_metrics\nfrom vq2d.structures import ResponseTrack, BBox\n\n\ndef validate_model_predictions(model_predictions, test_annotations):\n    assert type(model_predictions) == type({})\n    for key in [\"version\", \"challenge\", \"results\"]:\n        assert key in model_predictions.keys()\n    assert model_predictions[\"version\"] == test_annotations[\"version\"]\n    assert model_predictions[\"challenge\"] == \"ego4d_vq2d_challenge\"\n    assert type(model_predictions[\"results\"]) == type({})\n    assert \"videos\" in model_predictions[\"results\"]\n\n    video_annotations = test_annotations[\"videos\"]\n    video_predictions = model_predictions[\"results\"][\"videos\"]\n\n    assert len(video_predictions) == len(video_annotations)\n\n    n_samples = 0\n    for v in video_annotations:\n        for c in v[\"clips\"]:\n            for a in c[\"annotations\"]:\n                for _, q in a[\"query_sets\"].items():\n                    if q[\"is_valid\"]:\n                        n_samples += 1\n\n    pbar = tqdm.tqdm(total=n_samples, desc=\"Validating user predictions\")\n    for vannot, vpred in zip(video_annotations, video_predictions):\n        assert type(vpred) == type({})\n        for key in [\"video_uid\", \"clips\"]:\n            assert key in vpred\n        assert vannot[\"video_uid\"] == vpred[\"video_uid\"]\n        assert type(vpred[\"clips\"]) == type([])\n        assert len(vannot[\"clips\"]) == len(vpred[\"clips\"])\n        for cpreds in vpred[\"clips\"]:\n            assert type(cpreds) == type({})\n            for key in [\"clip_uid\", \"predictions\"]:\n                assert key in cpreds\n        clips_annots = vannot[\"clips\"]\n        clips_preds = vpred[\"clips\"]\n        for clip_annots, clip_preds in zip(clips_annots, clips_preds):\n            assert clip_annots[\"clip_uid\"] == clip_preds[\"clip_uid\"]\n            assert type(clip_preds[\"predictions\"]) == type([])\n            assert len(clip_preds[\"predictions\"]) == len(clip_annots[\"annotations\"])\n            for clip_annot, clip_pred in zip(\n                clip_annots[\"annotations\"], clip_preds[\"predictions\"]\n            ):\n                assert type(clip_pred) == type({})\n                assert \"query_sets\" in clip_pred\n                valid_query_set_annots = {\n                    k: v for k, v in clip_annot[\"query_sets\"].items() if v[\"is_valid\"]\n                }\n                valid_query_set_preds = {\n                    k: v\n                    for k, v in clip_pred[\"query_sets\"].items()\n                    if clip_annot[\"query_sets\"][k][\"is_valid\"]\n                }\n                assert set(list(valid_query_set_preds.keys())) == set(\n                    list(valid_query_set_annots.keys())\n                )\n                for qset_id, qset in clip_pred[\"query_sets\"].items():\n                    assert type(qset) == type({})\n                    for key in [\"bboxes\", \"score\"]:\n                        assert key in qset\n                    pbar.update()\n\n\ndef evaluate(gt_file, pred_file):\n    print(\"Starting Evaluation.....\")\n\n    with open(gt_file, \"r\") as fp:\n        gt_annotations = json.load(fp)\n    with open(pred_file, \"r\") as fp:\n        model_predictions = json.load(fp)\n\n    # Validate model predictions\n    validate_model_predictions(model_predictions, gt_annotations)\n\n    # Convert test annotations, model predictions to the correct format\n    predicted_response_tracks = []\n    annotated_response_tracks = []\n    visual_crop_boxes = []\n    for vanno, vpred in zip(\n        gt_annotations[\"videos\"], model_predictions[\"results\"][\"videos\"]\n    ):\n        for clip_annos, clip_preds in zip(vanno[\"clips\"], vpred[\"clips\"]):\n            for clip_anno, clip_pred in zip(\n                clip_annos[\"annotations\"], clip_preds[\"predictions\"]\n            ):\n                qset_ids = list(clip_anno[\"query_sets\"].keys())\n                for qset_id in qset_ids:\n                    if not clip_anno[\"query_sets\"][qset_id][\"is_valid\"]:\n                        continue\n                    q_anno = clip_anno[\"query_sets\"][qset_id]\n                    q_pred = clip_pred[\"query_sets\"][qset_id]\n                    rt_pred = ResponseTrack.from_json(q_pred)\n                    rt_anno = []\n                    for rf in q_anno[\"response_track\"]:\n                        rt_anno.append(\n                            BBox(\n                                rf[\"frame_number\"],\n                                rf[\"x\"],\n                                rf[\"y\"],\n                                rf[\"x\"] + rf[\"width\"],\n                                rf[\"y\"] + rf[\"height\"],\n                            )\n                        )\n                    rt_anno = ResponseTrack(rt_anno)\n                    vc = q_anno[\"visual_crop\"]\n                    vc_bbox = BBox(\n                        vc[\"frame_number\"],\n                        vc[\"x\"],\n                        vc[\"y\"],\n                        vc[\"x\"] + vc[\"width\"],\n                        vc[\"y\"] + vc[\"height\"],\n                    )\n                    predicted_response_tracks.append([rt_pred])\n                    annotated_response_tracks.append(rt_anno)\n                    visual_crop_boxes.append(vc_bbox)\n\n    # Perform evaluation\n    pair_metrics = compute_visual_query_metrics(\n        predicted_response_tracks,\n        annotated_response_tracks,\n        visual_crop_boxes,\n    )\n\n    print(\"Evaluating VQ2D performance\")\n    for pair_name, metrics in pair_metrics.items():\n        print(\"-\" * 20)\n        print(pair_name)\n        print(\"-\" * 20)\n        metrics = {\n            \"tAP\": metrics[\"Temporal AP                    @ IoU=0.25:0.95\"],\n            \"tAP @ IoU=0.25\": metrics[\"Temporal AP                    @ IoU=0.25     \"],\n            \"stAP\": metrics[\"SpatioTemporal AP              @ IoU=0.25:0.95\"],\n            \"stAP @ IoU=0.25\": metrics[\n                \"SpatioTemporal AP              @ IoU=0.25     \"\n            ],\n            \"success\": metrics[\"Success (max scr)              @ IoU=0.05     \"],\n            \"recovery %\": metrics[\"Tracking % recovery (max scr)  @ IoU=0.50     \"],\n        }\n        for k, v in metrics.items():\n            print(f\"{k:<20s} | {v:>10.3f}\")\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--gt-file\", required=True, type=str)\n    parser.add_argument(\"--pred-file\", required=True, type=str)\n\n    args = parser.parse_args()\n\n    evaluate(args.gt_file, args.pred_file)\n"
  },
  {
    "path": "VQ2D/extract_vq_detection_scores.py",
    "content": "import json\nimport os\nimport os.path as osp\nfrom queue import Empty as QueueEmpty\nfrom typing import Any, Dict\n\nimport cv2\nimport pims\nimport torch\nimport tqdm\nfrom detectron2.engine import DefaultPredictor\nfrom detectron2.utils.logger import setup_logger\nfrom detectron2_extensions.config import get_cfg as get_detectron_cfg\nfrom einops import rearrange, asnumpy\nfrom torch import multiprocessing as mp\nfrom vq2d.baselines import (\n    get_clip_name_from_clip_uid,\n    SiamPredictor,\n)\nfrom vq2d.baselines.utils import extract_window_with_context\nfrom vq2d.structures import BBox\n\nsetup_logger()\n\nimport hydra\nfrom omegaconf import DictConfig\n\n\ndef extract_clip_bboxes_and_scores(\n    clip_reader,\n    clip_path,\n    visual_crop: Dict[str, Any],\n    query_frame: int,\n    net: DefaultPredictor,\n    batch_size: int = 8,\n    key_name: str = None,\n    downscale_height: int = 700,\n):\n    \"\"\"\n    Given a visual crop and frames from a clip, retrieve the bounding box proposal\n    from each frame that is most similar to the visual crop.\n    \"\"\"\n    vc_fno = visual_crop[\"frame_number\"]\n    owidth, oheight = visual_crop[\"original_width\"], visual_crop[\"original_height\"]\n\n    # Load visual crop frame\n    if vc_fno >= len(clip_reader):\n        print(\n            \"=====> WARNING: Going out of range. Clip path: {}, Len: {}, j: {}\".format(\n                clip_path, len(clip_reader), vc_fno\n            )\n        )\n    reference = clip_reader[vc_fno]  # RGB format\n    ## Resize visual crop if stored aspect ratio was incorrect\n    if (reference.shape[0] != oheight) or (reference.shape[1] != owidth):\n        reference = cv2.resize(reference, (owidth, oheight))\n    reference = torch.as_tensor(rearrange(reference, \"h w c -> () c h w\"))\n    reference = reference.float()\n    ref_bbox = (\n        visual_crop[\"x\"],\n        visual_crop[\"y\"],\n        visual_crop[\"x\"] + visual_crop[\"width\"],\n        visual_crop[\"y\"] + visual_crop[\"height\"],\n    )\n    reference = extract_window_with_context(\n        reference,\n        ref_bbox,\n        net.cfg.INPUT.REFERENCE_CONTEXT_PAD,\n        size=net.cfg.INPUT.REFERENCE_SIZE,\n        pad_value=125,\n    )\n    reference = rearrange(asnumpy(reference.byte()), \"() c h w -> h w c\")\n    # Define search window\n    search_window = list(range(0, query_frame))\n\n    # Load reference frames and perform detection\n    ret_bboxes = []\n    ret_scores = []\n    # Batch extract predictions\n    desc = None if key_name is None else f\"Processing {key_name}\"\n    for i in tqdm.tqdm(\n        range(0, len(search_window), batch_size), desc=desc, position=1, leave=False\n    ):\n        bimages = []\n        breferences = []\n        image_scales = []\n        i_end = min(i + batch_size, len(search_window))\n        for j in range(i, i_end):\n            if search_window[j] >= len(clip_reader):\n                print(\n                    \"=====> WARNING: Going out of range. Clip path: {}, Len: {}, j: {}\".format(\n                        clip_path, len(clip_reader), j\n                    )\n                )\n            image = clip_reader[search_window[j]]  # RGB format\n            if image.shape[:2] != (oheight, owidth):\n                image = cv2.resize(image, (owidth, oheight))\n            # Scale-down image to reduce memory consumption\n            image_scale = float(downscale_height) / image.shape[0]\n            image = cv2.resize(image, None, fx=image_scale, fy=image_scale)\n            bimages.append(image)\n            breferences.append(reference)\n            image_scales.append(image_scale)\n        # Perform inference\n        all_outputs = net(bimages, breferences)\n        # Unpack outputs\n        for j in range(i, i_end):\n            instances = all_outputs[j - i][\"instances\"]\n            image_scale = image_scales[j - i]\n            # Re-scale bboxes\n            ret_bbs = (\n                asnumpy(instances.pred_boxes.tensor / image_scale).astype(int).tolist()\n            )\n            ret_bbs = [BBox(search_window[j], *bbox) for bbox in ret_bbs]\n            ret_scs = asnumpy(instances.scores).tolist()\n            ret_bboxes.append(ret_bbs)\n            ret_scores.append(ret_scs)\n        del all_outputs\n\n    return ret_bboxes, ret_scores\n\n\nclass Task:\n    def __init__(self, annots):\n        super().__init__()\n        self.annots = annots\n        # Ensure that all annotations belong to the same clip\n        clip_uid = annots[0][\"clip_uid\"]\n        for annot in self.annots:\n            assert annot[\"clip_uid\"] == clip_uid\n\n    def run(self, predictor, cfg):\n        data_cfg = cfg.data\n        clip_uid = self.annots[0][\"clip_uid\"]\n        if clip_uid is None:\n            return None\n        # Load clip from file\n        clip_path = os.path.join(\n            data_cfg.data_root, get_clip_name_from_clip_uid(clip_uid)\n        )\n        video_reader = pims.Video(clip_path)\n        for annot in self.annots:\n            annotation_uid = annot[\"metadata\"][\"annotation_uid\"]\n            query_set_id = annot[\"metadata\"][\"query_set\"]\n            key_name = f\"{annotation_uid}_{query_set_id}\"\n            save_path = os.path.join(cfg.model.cache_root, f\"{key_name}.pt\")\n            if not os.path.isfile(save_path):\n                query_frame = annot[\"query_frame\"]\n                visual_crop = annot[\"visual_crop\"]\n                # Retrieve nearest matches and their scores per image\n                ret_bboxes, ret_scores = extract_clip_bboxes_and_scores(\n                    video_reader,\n                    clip_path,\n                    visual_crop,\n                    query_frame,\n                    predictor,\n                    batch_size=data_cfg.rcnn_batch_size,\n                    key_name=key_name,\n                )\n                torch.save(\n                    {\"ret_bboxes\": ret_bboxes, \"ret_scores\": ret_scores}, save_path\n                )\n        video_reader.close()\n\n        return key_name\n\n\nclass WorkerWithDevice(mp.Process):\n    def __init__(self, cfg, task_queue, results_queue, worker_id, device_id):\n        self.cfg = cfg\n        self.device_id = device_id\n        self.worker_id = worker_id\n        super().__init__(target=self.work, args=(task_queue, results_queue))\n\n    def work(self, task_queue, results_queue):\n        # Create detector\n        detectron_cfg = get_detectron_cfg()\n        detectron_cfg.set_new_allowed(True)\n        detectron_cfg.merge_from_file(self.cfg.model.config_path)\n        detectron_cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST = self.cfg.model.score_thresh\n        detectron_cfg.MODEL.WEIGHTS = self.cfg.model.checkpoint_path\n        detectron_cfg.MODEL.DEVICE = f\"cuda:{self.device_id}\"\n        detectron_cfg.INPUT.FORMAT = \"RGB\"\n        predictor = SiamPredictor(detectron_cfg)\n\n        os.makedirs(self.cfg.logging.save_dir, exist_ok=True)\n\n        while True:\n            try:\n                task = task_queue.get(timeout=1.0)\n            except QueueEmpty:\n                break\n            key_name = task.run(predictor, self.cfg)\n            results_queue.put(key_name)\n            del task\n\n        del predictor\n\n\ndef extract_detection_scores(annotations, cfg):\n    if cfg.data.debug_mode:\n        cfg.data.num_processes_per_gpu = 1\n\n    num_gpus = torch.cuda.device_count()\n\n    mp.set_start_method(\"forkserver\")\n\n    task_queue = mp.Queue()\n    for _, annots in annotations.items():\n        task = Task(annots)\n        task_queue.put(task)\n    # Results will be stored in this queue\n    results_queue = mp.Queue()\n\n    num_processes = cfg.data.num_processes_per_gpu * num_gpus\n\n    pbar = tqdm.tqdm(\n        desc=f\"Extracting detection scores\",\n        position=0,\n        total=len(annotations),\n    )\n    workers = [\n        WorkerWithDevice(cfg, task_queue, results_queue, i, i % num_gpus)\n        for i in range(num_processes)\n    ]\n    # Start workers\n    for worker in workers:\n        worker.start()\n    # Update progress bar\n    n_completed = 0\n    while n_completed < len(annotations):\n        _ = results_queue.get()\n        n_completed += 1\n        pbar.update()\n    # Wait for workers to finish\n    for worker in workers:\n        worker.join()\n    pbar.close()\n\n\ndef convert_annotations_to_clipwise_list(annotations):\n    clipwise_annotations_list = {}\n    for v in annotations[\"videos\"]:\n        vuid = v[\"video_uid\"]\n        for c in v[\"clips\"]:\n            cuid = c[\"clip_uid\"]\n            for a in c[\"annotations\"]:\n                aid = a[\"annotation_uid\"]\n                for qid, q in a[\"query_sets\"].items():\n                    if not q[\"is_valid\"]:\n                        continue\n                    curr_q = {\n                        \"metadata\": {\n                            \"video_uid\": vuid,\n                            \"video_start_sec\": c[\"video_start_sec\"],\n                            \"video_end_sec\": c[\"video_end_sec\"],\n                            \"clip_fps\": c[\"clip_fps\"],\n                            \"query_set\": qid,\n                            \"annotation_uid\": aid,\n                        },\n                        \"clip_uid\": cuid,\n                        \"query_frame\": q[\"query_frame\"],\n                        \"visual_crop\": q[\"visual_crop\"],\n                    }\n                    if \"response_track\" in q:\n                        curr_q[\"response_track\"] = q[\"response_track\"]\n                    if cuid not in clipwise_annotations_list:\n                        clipwise_annotations_list[cuid] = []\n                    clipwise_annotations_list[cuid].append(curr_q)\n    return clipwise_annotations_list\n\n\n@hydra.main(config_path=\"vq2d\", config_name=\"config\")\ndef main(cfg: DictConfig) -> None:\n    # Load annotations\n    annot_path = osp.join(cfg.data.annot_root, f\"vq_{cfg.data.split}.json\")\n    with open(annot_path) as fp:\n        annotations = json.load(fp)\n    clipwise_annotations_list = convert_annotations_to_clipwise_list(annotations)\n\n    assert cfg.model.cache_root != \"\"\n    os.makedirs(cfg.model.cache_root, exist_ok=True)\n\n    if cfg.data.debug_mode or cfg.data.subsample:\n        clips_list = list(clipwise_annotations_list.keys())\n        # Filter None clip\n        clips_list = sorted([c for c in clips_list if c is not None])\n        if cfg.data.debug_mode:\n            clips_list = clips_list[: cfg.data.debug_count]\n        elif cfg.data.subsample:\n            clips_list = clips_list[::3]\n        clipwise_annotations_list = {\n            k: clipwise_annotations_list[k] for k in clips_list\n        }\n\n    extract_detection_scores(clipwise_annotations_list, cfg)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "VQ2D/perform_vq_inference.py",
    "content": "import gzip\nimport json\nimport os\nimport os.path as osp\nimport time\nfrom queue import Empty as QueueEmpty\n\nimport imageio\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport pims\nimport skimage.io\nimport torch\nimport tqdm\nfrom detectron2.utils.logger import setup_logger\nfrom detectron2_extensions.config import get_cfg as get_detectron_cfg\nfrom scipy.signal import find_peaks, medfilt\nfrom torch import multiprocessing as mp\nfrom vq2d.baselines import (\n    create_similarity_network,\n    get_clip_name_from_clip_uid,\n    perform_retrieval,\n)\nfrom vq2d.structures import ResponseTrack\nfrom vq2d.tracking import Tracker\n\nsetup_logger()\n\nimport hydra\nfrom omegaconf import DictConfig, OmegaConf\n\n\ndef get_images_at_peak(all_bboxes, all_scores, all_imgs, peak_idx, topk=5):\n    bboxes = all_bboxes[peak_idx]\n    scores = all_scores[peak_idx]\n    image = all_imgs[peak_idx]\n    # Visualize the top K retrievals from peak image\n    bbox_images = []\n    for bbox in bboxes[:topk]:\n        bbox_images.append(image[bbox.y1 : bbox.y2 + 1, bbox.x1 : bbox.x2 + 1])\n    return bbox_images\n\n\nclass Task:\n    def __init__(self, annots):\n        super().__init__()\n        self.annots = annots\n        # Ensure that all annotations belong to the same clip\n        clip_uid = annots[0][\"clip_uid\"]\n        for annot in self.annots:\n            assert annot[\"clip_uid\"] == clip_uid\n        self.keys = [\n            (annot[\"metadata\"][\"annotation_uid\"], annot[\"metadata\"][\"query_set\"])\n            for annot in self.annots\n        ]\n\n    def run(self, similarity_net, tracker, cfg, device):\n\n        data_cfg = cfg.data\n        sig_cfg = cfg.signals\n\n        start_time = time.time()\n        clip_uid = self.annots[0][\"clip_uid\"]\n        # Load clip from file\n        clip_path = os.path.join(\n            data_cfg.data_root, get_clip_name_from_clip_uid(clip_uid)\n        )\n        if not os.path.exists(clip_path):\n            print(f\"Clip {clip_uid} does not exist\")\n            return {}\n        video_reader = pims.Video(clip_path)\n        clip_read_time = time.time() - start_time\n\n        all_pred_rts = {}\n        for key, annot in zip(self.keys, self.annots):\n            annotation_uid = annot[\"metadata\"][\"annotation_uid\"]\n            query_set = annot[\"metadata\"][\"query_set\"]\n            annot_key = f\"{annotation_uid}_{query_set}\"\n            query_frame = annot[\"query_frame\"]\n            visual_crop = annot[\"visual_crop\"]\n            owidth, oheight = (\n                visual_crop[\"original_width\"],\n                visual_crop[\"original_height\"],\n            )\n            oshape = (owidth, oheight)\n            start_time = time.time()\n            # Retrieve nearest matches and their scores per image\n            cached_bboxes, cached_scores, cache_exists = None, None, False\n            assert cfg.model.cache_root != \"\"\n            cache_path = os.path.join(cfg.model.cache_root, f\"{annot_key}.pt\")\n            assert os.path.isfile(cache_path)\n            cache = torch.load(cache_path)\n            cached_bboxes = cache[\"ret_bboxes\"]\n            cached_scores = cache[\"ret_scores\"]\n            cache_exists = True\n            assert len(cached_bboxes) == query_frame\n            assert len(cached_scores) == query_frame\n\n            if visual_crop[\"frame_number\"] >= len(video_reader):\n                print(\n                    \"=====> VC {} is out of range in video {} with size {}\".format(\n                        visual_crop[\"frame_number\"], clip_uid, len(video_reader)\n                    )\n                )\n                return {}\n\n            (ret_bboxes, ret_scores, ret_imgs, visual_crop_im,) = perform_retrieval(\n                video_reader,\n                visual_crop,\n                query_frame,\n                cached_bboxes,\n                cached_scores,\n                recency_factor=cfg.model.recency_factor,\n                subsampling_factor=cfg.model.subsampling_factor,\n                visualize=cfg.logging.visualize,\n                reference_pad=cfg.model.reference_pad,\n                reference_size=cfg.model.reference_size,\n            )\n\n            detection_time_taken = time.time() - start_time\n            start_time = time.time()\n            # Generate a time signal of scores\n            score_signal = []\n            for scores in ret_scores:\n                if len(scores) == 0:\n                    score_signal.append(0.0)\n                else:\n                    score_signal.append(np.max(scores).item())\n            # Smooth the signal using median filtering\n            kernel_size = sig_cfg.smoothing_sigma\n            if kernel_size % 2 == 0:\n                kernel_size += 1\n            score_signal_sm = medfilt(score_signal, kernel_size=kernel_size)\n            # Identify the latest peak in the signal\n            peaks, _ = find_peaks(\n                score_signal_sm,\n                distance=sig_cfg.distance,\n                width=sig_cfg.width,\n                prominence=sig_cfg.prominence,\n            )\n            peak_signal_time_taken = time.time() - start_time\n            start_time = time.time()\n            # Identify most recent peak with sufficient similarity\n            recent_peak = None\n            for peak in peaks[::-1]:\n                if score_signal_sm[peak] >= sig_cfg.peak_similarity_thresh:\n                    recent_peak = peak\n                    # print(f\"====> Signal peak score: {score_signal_sm[peak]}\")\n                    break\n            # Perform tracking to predict response track\n            if recent_peak is not None:\n                init_state = ret_bboxes[recent_peak][0]\n                init_frame = video_reader[init_state.fno]\n                pred_rt, pred_rt_vis = tracker(\n                    init_state,\n                    init_frame,\n                    video_reader,\n                    oshape,\n                    query_frame,\n                    similarity_net,\n                )\n                pred_rts = [ResponseTrack(pred_rt, score=1.0)]\n            else:\n                pred_rt = [ret_bboxes[-1][0]]\n                pred_rt_vis = []\n                pred_rts = [ResponseTrack(pred_rt, score=1.0)]\n\n            tracking_time_taken = time.time() - start_time\n            print(\n                \"====> Data uid: {} | search window :{:>8d} frames | \"\n                \"clip read time: {:>6.2f} mins | \"\n                \"detection time: {:>6.2f} mins | \"\n                \"peak signal time: {:>6.2f} mins | \"\n                \"tracking time: {:>6.2f} mins\".format(\n                    annot[\"clip_uid\"],\n                    annot[\"query_frame\"],\n                    clip_read_time / 60.0,\n                    detection_time_taken / 60.0,\n                    peak_signal_time_taken / 60.0,\n                    tracking_time_taken / 60.0,\n                )\n            )\n\n            all_pred_rts[key] = pred_rts\n\n            # Note: This visualization does not work for subsampled evaluation.\n            if cfg.logging.visualize:\n                ####################### Visualize the peaks ########################\n                plt.figure(figsize=(6, 6))\n                # Plot raw signals\n                # plt.plot(score_signal, color=\"gray\", label=\"Original signal\")\n                plt.plot(score_signal_sm, color=\"blue\", label=\"Similarity scores\")\n                # Plot highest-scoring pred response track\n                pred_rt_start, pred_rt_end = pred_rts[0].temporal_extent\n                rt_signal = np.zeros((query_frame,))\n                rt_signal[pred_rt_start : pred_rt_end + 1] = 1\n                plt.plot(rt_signal, color=\"red\", label=\"Pred response track\")\n                # Plot ground-truth response track if available\n                if \"response_track\" in annot:\n                    gt_rt_start = min(\n                        [rf[\"frame_number\"] for rf in annot[\"response_track\"]]\n                    )\n                    gt_rt_end = max(\n                        [rf[\"frame_number\"] for rf in annot[\"response_track\"]]\n                    )\n                    rt_signal = np.zeros((query_frame,))\n                    rt_signal[gt_rt_start : gt_rt_end + 1] = 1\n                    plt.plot(rt_signal, color=\"green\", label=\"GT response track\")\n                # Plot peak in signal\n                plt.plot(peaks, score_signal_sm[peaks], \"rx\", label=\"Peaks\")\n                save_dir = os.path.join(\n                    cfg.logging.save_dir, f\"visualizations/{annot_key}\"\n                )\n                os.makedirs(save_dir, exist_ok=True)\n                save_path = os.path.join(save_dir, \"graph.png\")\n                plt.savefig(save_path, dpi=500)\n                plt.close()\n                ###################### Visualize retrievals ########################\n                # Visualize crop\n                save_path = os.path.join(save_dir, f\"visual_crop.png\")\n                skimage.io.imsave(save_path, visual_crop_im)\n                # Visualize retrievals at the peaks\n                for peak_idx in peaks:\n                    peak_images = get_images_at_peak(\n                        ret_bboxes, ret_scores, ret_imgs, peak_idx, topk=5\n                    )\n                    for image_idx, image in enumerate(peak_images):\n                        save_path = os.path.join(\n                            save_dir, f\"peak_{peak_idx:05d}_rank_{image_idx:03d}.png\"\n                        )\n                        skimage.io.imsave(save_path, image)\n                ################## Visualize response track ########################\n                save_path = os.path.join(save_dir, f\"response_track.mp4\")\n                writer = imageio.get_writer(save_path)\n                for rtf in pred_rt_vis:\n                    writer.append_data(rtf)\n                writer.close()\n                ################## Visualize search window #########################\n                save_path = os.path.join(save_dir, f\"search_window.mp4\")\n                writer = imageio.get_writer(save_path)\n                for sf_ix in range(query_frame):\n                    writer.append_data(video_reader[sf_ix])\n                writer.close()\n\n        # Close video reader\n        video_reader.close()\n\n        return all_pred_rts\n\n\nclass WorkerWithDevice(mp.Process):\n    def __init__(self, cfg, task_queue, results_queue, worker_id, device_id):\n        self.cfg = cfg\n        self.device_id = device_id\n        self.worker_id = worker_id\n        super().__init__(target=self.work, args=(task_queue, results_queue))\n\n    def work(self, task_queue, results_queue):\n\n        device = torch.device(f\"cuda:{self.device_id}\")\n\n        # Create tracker\n        similarity_net = create_similarity_network()\n        similarity_net.eval()\n        similarity_net.to(device)\n        tracker = Tracker(self.cfg, device)\n\n        # Visualization\n        os.makedirs(self.cfg.logging.save_dir, exist_ok=True)\n        if self.cfg.logging.visualize:\n            OmegaConf.save(\n                self.cfg, os.path.join(self.cfg.logging.save_dir, \"config.yaml\")\n            )\n\n        while True:\n            try:\n                task = task_queue.get(timeout=1.0)\n            except QueueEmpty:\n                break\n            pred_rts = task.run(similarity_net, tracker, self.cfg, device)\n            results_queue.put(pred_rts)\n\n\ndef perform_vq2d_inference(annotations, cfg):\n\n    num_gpus = torch.cuda.device_count()\n    if cfg.data.debug_mode:\n        num_gpus = 1\n        cfg.data.num_processes_per_gpu = 1\n\n    mp.set_start_method(\"forkserver\")\n\n    task_queue = mp.Queue()\n    for _, annots in annotations.items():\n        task = Task(annots)\n        task_queue.put(task)\n    # Results will be stored in this queue\n    results_queue = mp.Queue()\n\n    num_processes = cfg.data.num_processes_per_gpu * num_gpus\n\n    pbar = tqdm.tqdm(\n        desc=f\"Computing VQ2D predictions\",\n        position=0,\n        total=len(annotations),\n    )\n    workers = [\n        WorkerWithDevice(cfg, task_queue, results_queue, i, i % num_gpus)\n        for i in range(num_processes)\n    ]\n    # Start workers\n    for worker in workers:\n        worker.start()\n    # Update progress bar\n    predicted_rts = {}\n    n_completed = 0\n    while n_completed < len(annotations):\n        pred = results_queue.get()\n        predicted_rts.update(pred)\n        n_completed += 1\n        pbar.update()\n    # Wait for workers to finish\n    for worker in workers:\n        worker.join()\n    pbar.close()\n    return predicted_rts\n\n\ndef convert_annotations_to_clipwise_list(annotations):\n    clipwise_annotations_list = {}\n    for v in annotations[\"videos\"]:\n        vuid = v[\"video_uid\"]\n        for c in v[\"clips\"]:\n            cuid = c[\"clip_uid\"]\n            for a in c[\"annotations\"]:\n                aid = a[\"annotation_uid\"]\n                for qid, q in a[\"query_sets\"].items():\n                    if not q[\"is_valid\"]:\n                        continue\n                    curr_q = {\n                        \"metadata\": {\n                            \"video_uid\": vuid,\n                            \"video_start_sec\": c[\"video_start_sec\"],\n                            \"video_end_sec\": c[\"video_end_sec\"],\n                            \"clip_fps\": c[\"clip_fps\"],\n                            \"query_set\": qid,\n                            \"annotation_uid\": aid,\n                        },\n                        \"clip_uid\": cuid,\n                        \"query_frame\": q[\"query_frame\"],\n                        \"visual_crop\": q[\"visual_crop\"],\n                    }\n                    if \"response_track\" in q:\n                        curr_q[\"response_track\"] = q[\"response_track\"]\n                    if cuid not in clipwise_annotations_list:\n                        clipwise_annotations_list[cuid] = []\n                    clipwise_annotations_list[cuid].append(curr_q)\n    return clipwise_annotations_list\n\n\ndef format_predictions(annotations, predicted_rts):\n    # Format predictions\n    predictions = {\n        \"version\": annotations[\"version\"],\n        \"challenge\": \"ego4d_vq2d_challenge\",\n        \"results\": {\"videos\": []},\n    }\n    for v in annotations[\"videos\"]:\n        video_predictions = {\"video_uid\": v[\"video_uid\"], \"clips\": []}\n        for c in v[\"clips\"]:\n            clip_predictions = {\"clip_uid\": c[\"clip_uid\"], \"predictions\": []}\n            for a in c[\"annotations\"]:\n                auid = a[\"annotation_uid\"]\n                apred = {\n                    \"query_sets\": {},\n                    \"annotation_uid\": auid,\n                }\n                for qid in a[\"query_sets\"].keys():\n                    if (auid, qid) in predicted_rts:\n                        rt_pred = predicted_rts[(auid, qid)][0].to_json()\n                        apred[\"query_sets\"][qid] = rt_pred\n                    else:\n                        apred[\"query_sets\"][qid] = {\"bboxes\": [], \"score\": 0.0}\n                clip_predictions[\"predictions\"].append(apred)\n            video_predictions[\"clips\"].append(clip_predictions)\n        predictions[\"results\"][\"videos\"].append(video_predictions)\n    return predictions\n\n\n@hydra.main(config_path=\"vq2d\", config_name=\"config\", version_base=None)\ndef main(cfg: DictConfig) -> None:\n    # Load annotations\n    annot_path = osp.join(cfg.data.annot_root, f\"vq_{cfg.data.split}.json\")\n    with open(annot_path) as fp:\n        annotations = json.load(fp)\n    clipwise_annotations_list = convert_annotations_to_clipwise_list(annotations)\n\n    if cfg.data.debug_mode or cfg.data.subsample:\n        clips_list = list(clipwise_annotations_list.keys())\n        # Filter None clip\n        clips_list = sorted([c for c in clips_list if c is not None])\n        if cfg.data.debug_mode:\n            clips_list = clips_list[: cfg.data.debug_count]\n        elif cfg.data.subsample:\n            clips_list = clips_list[::3]\n        clipwise_annotations_list = {\n            k: clipwise_annotations_list[k] for k in clips_list\n        }\n\n    predicted_rts = perform_vq2d_inference(clipwise_annotations_list, cfg)\n    # Convert prediction to challenge format\n    predictions = format_predictions(annotations, predicted_rts)\n    with open(cfg.logging.stats_save_path, \"w\") as fp:\n        json.dump(predictions, fp)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "VQ2D/process_vq_dataset.py",
    "content": "import argparse\nimport gzip\nimport json\nimport os\nimport random\n\nimport tqdm\n\n\ndef get_dataset_uid(split, idx):\n    return f\"{split}_{idx:010d}\"\n\n\ndef process_video_annot(video_data, n_samples_so_far):\n    annotations = []\n    split = video_data[\"split\"]\n    for clip_data in video_data[\"clips\"]:\n        for clip_annot in clip_data[\"annotations\"]:\n            for qset_id, qset in clip_annot[\"query_sets\"].items():\n                if not qset[\"is_valid\"]:\n                    continue\n                curr_annot = {\n                    \"metadata\": {\n                        \"video_uid\": video_data[\"video_uid\"],\n                        \"video_start_sec\": clip_data[\"video_start_sec\"],\n                        \"video_end_sec\": clip_data[\"video_end_sec\"],\n                        \"clip_fps\": clip_data[\"clip_fps\"],\n                    },\n                    \"clip_uid\": clip_data[\"clip_uid\"],\n                    \"query_set\": qset_id,\n                    \"query_frame\": qset[\"query_frame\"],\n                    \"response_track\": qset[\"response_track\"],\n                    \"visual_crop\": qset[\"visual_crop\"],\n                    \"object_title\": qset[\"object_title\"],\n                    # Assign a unique ID to this annotation for the dataset\n                    \"dataset_uid\": get_dataset_uid(split, n_samples_so_far),\n                }\n                annotations.append(curr_annot)\n                n_samples_so_far = n_samples_so_far + 1\n    return annotations\n\n\ndef process_data(args):\n    annotation_exports = {\n        \"train\": json.load(\n            open(\n                os.path.join(args.annot_root, \"vq_train.json\"),\n                \"r\",\n            )\n        ),\n        \"val\": json.load(\n            open(\n                os.path.join(args.annot_root, \"vq_val.json\"),\n                \"r\",\n            )\n        ),\n    }\n\n    os.makedirs(args.save_root, exist_ok=True)\n    for split, split_export in annotation_exports.items():\n        n_samples = 0\n        split_data = []\n        print(f\"========> Processing {split} data\")\n        for video_data in tqdm.tqdm(split_export[\"videos\"]):\n            proc_video_data = process_video_annot(video_data, n_samples)\n            split_data += proc_video_data\n            n_samples += len(proc_video_data)\n        save_path = os.path.join(args.save_root, f\"{split}_annot.json.gz\")\n        with gzip.open(save_path, \"wt\") as fp:\n            json.dump(split_data, fp)\n        # Print dataset statistics\n        uniq_videos = set()\n        uniq_clips = set()\n        n_annots = 0\n        for data in split_data:\n            uniq_videos.add(data[\"metadata\"][\"video_uid\"])\n            uniq_clips.add(data[\"clip_uid\"])\n            n_annots += 1\n        print(f\"# videos     : {len(uniq_videos)}\")\n        print(f\"# clips      : {len(uniq_clips)}\")\n        print(f\"# annotations: {n_annots}\")\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--annot-root\", type=str, default=\"data\")\n    parser.add_argument(\"--save-root\", type=str, default=\"./\")\n\n    args = parser.parse_args()\n\n    random.seed(123)\n    process_data(args)\n"
  },
  {
    "path": "VQ2D/requirements.txt",
    "content": "imagesize==1.2.0\npandas\nscikit-image\neinops\nimageio==2.9.0\npims\njpeg4py\nvisdom\nblack==20.8b1\nufmt==1.2\nusort==0.6.3\nseaborn\nego4d"
  },
  {
    "path": "VQ2D/scripts/extract_vq_detections.sh",
    "content": "#!/bin/bash\n\nsource ~/enable_em_vq2d.sh\n\nSPLIT=$1\nMODEL_ROOT=$2\nCACHE_ROOT=$3\nVQ2D_SPLITS_ROOT=$VQ2D_ROOT/data\nPYTRACKING_ROOT=\"$VQ2D_ROOT/dependencies/pytracking\"\nCLIPS_ROOT=\"$VQ2D_ROOT/data/clips\"\n\ncd $VQ2D_ROOT\n\nexport PYTHONPATH=\"$PYTHONPATH:$VQ2D_ROOT\"\nexport PYTHONPATH=\"$PYTHONPATH:$PYTRACKING_ROOT\"\n\npython -W ignore extract_vq_detection_scores.py \\\n  data.data_root=\"$CLIPS_ROOT\" \\\n  data.annot_root=\"$VQ2D_SPLITS_ROOT\" \\\n  data.split=\"$SPLIT\" \\\n  data.num_processes_per_gpu=2 \\\n  data.rcnn_batch_size=10 \\\n  model.config_path=\"$MODEL_ROOT/config.yaml\" \\\n  model.checkpoint_path=\"$MODEL_ROOT/model.pth\" \\\n  model.cache_root=\"$CACHE_ROOT\"\n"
  },
  {
    "path": "VQ2D/scripts/faster_evaluation/merge_results.py",
    "content": "import argparse\nimport glob\nimport gzip\nimport json\nfrom collections import defaultdict\n\nimport tqdm\nfrom vq2d.metrics import compute_visual_query_metrics\nfrom vq2d.structures import (\n    BBox,\n    ResponseTrack,\n)\n\n\nNUM_PARTS = 100\n\n\ndef merge_results(args):\n    stats_paths = sorted(glob.glob(f\"{args.stats_dir}/*.json.gz\"))\n    assert len(stats_paths) == NUM_PARTS\n    results = defaultdict(list)\n    for path in tqdm.tqdm(stats_paths):\n        with gzip.open(path, \"rt\") as fp:\n            data = json.load(fp)\n        predictions = data[\"predictions\"]\n        results[\"predicted_response_track\"] += predictions[\"predicted_response_track\"][\n            0\n        ]\n        results[\"ground_truth_response_track\"] += predictions[\n            \"ground_truth_response_track\"\n        ]\n        results[\"visual_crop\"] += predictions[\"visual_crop\"]\n        results[\"dataset_uids\"] += predictions[\"dataset_uids\"]\n        results[\"accessed_frames\"] += predictions[\"accessed_frames\"]\n        results[\"total_frames\"] += predictions[\"total_frames\"]\n    ################################################################################################\n    # Save results\n    with gzip.open(f\"{args.stats_dir}/merged_output.json.gz\", \"wt\") as fp:\n        json.dump(results, fp)\n    ################################################################################################\n    predicted_response_track = [\n        [ResponseTrack.from_json(rt) for rt in rts]\n        for rts in results[\"predicted_response_track\"]\n    ]\n    ground_truth_response_track = [\n        ResponseTrack.from_json(rt) for rt in results[\"ground_truth_response_track\"]\n    ]\n    visual_crop_boxes = [BBox.from_json(vc) for vc in results[\"visual_crop\"]]\n    accessed_frames = results[\"accessed_frames\"]\n    total_frames = results[\"total_frames\"]\n    metrics = compute_visual_query_metrics(\n        predicted_response_track,\n        ground_truth_response_track,\n        visual_crop_boxes,\n        accessed_frames,\n        total_frames,\n    )\n    print(\"==========> Retrieval performance\")\n    for k, v in metrics.items():\n        print(f\"{k:<40s} | {v:8.5f}\")\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--stats-dir\", type=str, required=True)\n\n    args = parser.parse_args()\n\n    merge_results(args)\n"
  },
  {
    "path": "VQ2D/scripts/infer_vq.sh",
    "content": "#!/bin/bash\n\nsource ~/enable_em_vq2d.sh\n\nMODEL_ROOT=$1\nCACHE_ROOT=$2\nSPLIT=$3\nN_PROCS_PER_GPU=$4\nPEAK_SIMILARITY_THRESH=$5\nLOST_THRESH=$6\n\nVQ2D_SPLITS_ROOT=$VQ2D_ROOT/data\nPYTRACKING_ROOT=\"$VQ2D_ROOT/dependencies/pytracking\"\nCLIPS_ROOT=\"$VQ2D_ROOT/data/clips\"\nSTATS_PATH=$MODEL_ROOT/${SPLIT}_predictions_pst_${PEAK_SIMILARITY_THRESH}_lost_thresh_${LOST_THRESH}.json\n\ncd $VQ2D_ROOT\n\nexport PYTHONPATH=\"$PYTHONPATH:$VQ2D_ROOT\"\nexport PYTHONPATH=\"$PYTHONPATH:$PYTRACKING_ROOT\"\n\nNT=1\nOMP_NUM_THREADS=$NT OPENBLAS_NUM_THREADS=$NT MKL_NUM_THREADS=$NT VECLIB_MAXIMUM_THREADS=$NT NUMEXPR_NUM_THREADS=$NT python -W ignore perform_vq_inference.py \\\n    data.data_root=$CLIPS_ROOT \\\n    data.annot_root=$VQ2D_SPLITS_ROOT \\\n    data.split=$SPLIT \\\n    data.num_processes_per_gpu=$N_PROCS_PER_GPU \\\n    data.rcnn_batch_size=1 \\\n    model.config_path=$MODEL_ROOT/config.yaml \\\n    model.checkpoint_path=$MODEL_ROOT/model.pth \\\n    model.cache_root=$CACHE_ROOT \\\n    signals.peak_similarity_thresh=$PEAK_SIMILARITY_THRESH \\\n    logging.save_dir=$MODEL_ROOT \\\n    logging.stats_save_path=$STATS_PATH \\\n    tracker.kys_tracker.model_path=$VQ2D_ROOT/pretrained_models/kys.pth \\\n    tracker.kys_tracker.lost_thresh=$LOST_THRESH\n"
  },
  {
    "path": "VQ2D/scripts/train_2_gpus.sh",
    "content": "#!/bin/bash\n\nmodule purge\n\nROOT_DIR=$PWD\n\nmodule load anaconda3/2020.11\nmodule load cuda/10.2\nmodule load cudnn/v7.6.5.32-cuda.10.2\nmodule load gcc/7.3.0\nmodule load cmake/3.15.3/gcc.7.3.0\n\nsource activate ego4d_vq2d\n\nexport PYTHONPATH=$PYTHONPATH:<PATH to VQ2D directory>\nexport PATH=<PATH to conda environment binaries>:$PATH\n\ncd <PATH TO VQ2D>\n\n\npython train_siam_rcnn.py \\\n    --num-gpus 2 \\\n    --config-file configs/siam_rcnn_2_gpus.yaml \\\n    --resume \\\n    OUTPUT_DIR $ROOT_DIR/logs \\\n    INPUT.VQ_IMAGES_ROOT <PATH TO IMAGES ROOT DIRECTORY> \\\n    INPUT.VQ_DATA_SPLITS_ROOT <PATH TO VQ2D>/data"
  },
  {
    "path": "VQ2D/scripts/train_8_gpus.sh",
    "content": "#!/bin/bash\n\nmodule purge\n\nROOT_DIR=$PWD\n\nmodule load anaconda3/2020.11\nmodule load cuda/10.2\nmodule load cudnn/v7.6.5.32-cuda.10.2\nmodule load gcc/7.3.0\nmodule load cmake/3.15.3/gcc.7.3.0\n\nsource activate ego4d_vq2d\n\nexport PYTHONPATH=$PYTHONPATH:<PATH to VQ2D directory>\nexport PATH=<PATH to conda environment binaries>:$PATH\n\ncd <PATH TO VQ2D>\n\n\npython train_siam_rcnn.py \\\n    --num-gpus 8 \\\n    --config-file configs/siam_rcnn_8_gpus.yaml \\\n    --resume \\\n    OUTPUT_DIR $ROOT_DIR/logs \\\n    INPUT.VQ_IMAGES_ROOT <PATH TO IMAGES ROOT DIRECTORY> \\\n    INPUT.VQ_DATA_SPLITS_ROOT <PATH TO VQ2D>/data"
  },
  {
    "path": "VQ2D/tools/test_model_loading.py",
    "content": "from detectron2_extensions.config import get_cfg as get_detectron_cfg\nfrom vq2d.baselines import SiamPredictor\n\n\ndef test_model_loading(config_path, checkpoint_path):\n    detectron_cfg = get_detectron_cfg()\n    detectron_cfg.set_new_allowed(True)\n    detectron_cfg.merge_from_file(config_path)\n    detectron_cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST = 0.0\n    detectron_cfg.MODEL.WEIGHTS = checkpoint_path\n    detectron_cfg.MODEL.DEVICE = f\"cuda:0\"\n    detectron_cfg.INPUT.FORMAT = \"RGB\"\n    predictor = SiamPredictor(detectron_cfg)\n    print(predictor)\n\n\nif __name__ == \"__main__\":\n    test_model_loading(\n        \"pretrained_models/negative_frames_matter/config.yaml\",\n        \"pretrained_models/negative_frames_matter/model.pth\",\n    )\n"
  },
  {
    "path": "VQ2D/tools/validate_extracted_clips.py",
    "content": "\"\"\"\nScript to extract clips from a video\n\"\"\"\nimport argparse\nimport json\nimport os\n\nimport pims\nimport tqdm\nfrom vq2d.baselines import get_clip_name_from_clip_uid\n\n\ndef approx_equal_durations(dur1, dur2, thresh=1.0):\n    return abs(dur1 - dur2) < thresh\n\n\ndef check_clip(clip_uid, clip_annotations, clip_metadata, args):\n    video_start_sec = clip_metadata[\"video_start_sec\"]\n    video_end_sec = clip_metadata[\"video_end_sec\"]\n    # Check if extracted clip duration matches expected duration\n    expected_duration = video_end_sec - video_start_sec\n    clip_path = os.path.join(args.clips_root, get_clip_name_from_clip_uid(clip_uid))\n    with pims.Video(clip_path) as clip_reader:\n        n_clip_frames = len(clip_reader)\n        actual_duration = float(n_clip_frames) / clip_reader.frame_rate\n    assert approx_equal_durations(\n        expected_duration, actual_duration\n    ), f\"Expected duration {expected_duration} for {clip_path} but got {actual_duration}\"\n    # Check if annotations are within range of clip frames\n    for a in clip_annotations:\n        for qset_id, qset in a[\"query_sets\"].items():\n            if not qset[\"is_valid\"]:\n                continue\n            vc_fno = qset[\"visual_crop\"][\"frame_number\"]\n            rt_fnos = [rf[\"frame_number\"] for rf in qset[\"response_track\"]]\n            q_fno = qset[\"query_frame\"]\n            assert (\n                vc_fno < n_clip_frames\n            ), \"VC fno {} is out of range of clip {} with {} frames\".format(\n                vc_fno, clip_uid, n_clip_frames\n            )\n            assert (\n                q_fno < n_clip_frames\n            ), \"Query fno {} is out of range of clip {} with {} frames\".format(\n                q_fno, clip_uid, n_clip_frames\n            )\n            for rt_fno in rt_fnos:\n                assert (\n                    rt_fno < n_clip_frames\n                ), \"Response fno {} is out of range of clip {} with {} frames\".format(\n                    rt_fno, clip_uid, n_clip_frames\n                )\n\n\ndef main(args):\n    # Load annotations\n    annotation_export = []\n    for annot_path in args.annot_paths:\n        annotation_export += json.load(open(annot_path, \"r\"))[\"videos\"]\n    # Get clip-wise annotations\n    clips2annotations = {}\n    clip2metadata = {}\n    for v in annotation_export:\n        v_uid = v[\"video_uid\"]\n        for c in v[\"clips\"]:\n            c_uid = c[\"clip_uid\"]\n            if c_uid is None:\n                continue\n            clip2metadata[c_uid] = {\n                \"video_uid\": v_uid,\n                **{k: v for k, v in c.items() if k not in [\"clip_uid\", \"annotations\"]},\n            }\n            if c_uid not in clips2annotations:\n                clips2annotations[c_uid] = []\n            clips2annotations[c_uid] += c[\"annotations\"]\n    for c_uid in tqdm.tqdm(sorted(clips2annotations.keys())):\n        try:\n            check_clip(c_uid, clips2annotations[c_uid], clip2metadata[c_uid], args)\n        except AssertionError as e:\n            print(e)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--annot-paths\", type=str, required=True, nargs=\"+\")\n    parser.add_argument(\"--clips-root\", type=str, required=True)\n    args = parser.parse_args()\n\n    main(args)\n"
  },
  {
    "path": "VQ2D/train_siam_rcnn.py",
    "content": "#!/usr/bin/env python\n\nimport glob\nimport logging\nimport os\nfrom collections import OrderedDict\n\nimport detectron2.utils.comm as comm\nimport torch\nfrom detectron2 import model_zoo\nfrom detectron2.checkpoint import DetectionCheckpointer, PeriodicCheckpointer\nfrom detectron2.data import (\n    build_detection_test_loader,\n    build_detection_train_loader,\n)\nfrom detectron2.engine import (\n    default_argument_parser,\n    default_setup,\n    default_writers,\n    launch,\n)\nfrom detectron2.evaluation import (\n    COCOEvaluator,\n    DatasetEvaluators,\n    inference_on_dataset,\n    print_csv_format,\n)\nfrom detectron2.modeling import build_model\nfrom detectron2.solver import build_lr_scheduler, build_optimizer\nfrom detectron2.utils.events import EventStorage\nfrom detectron2_extensions.config import get_cfg\nfrom torch.nn.parallel import DistributedDataParallel\nfrom vq2d.baselines import VisualQueryDatasetMapper, register_visual_query_datasets\n\n\nlogger = logging.getLogger(\"detectron2\")\n\n\ndef get_evaluator(cfg, dataset_name, output_folder=None):\n    \"\"\"\n    Create evaluators.\n    \"\"\"\n    if output_folder is None:\n        output_folder = os.path.join(cfg.OUTPUT_DIR, \"inference\")\n    evaluator_list = []\n    evaluator_list.append(COCOEvaluator(dataset_name, output_dir=output_folder))\n    if len(evaluator_list) == 1:\n        return evaluator_list[0]\n    return DatasetEvaluators(evaluator_list)\n\n\ndef do_test(cfg, model):\n    results = OrderedDict()\n    for dataset_name in cfg.DATASETS.TEST:\n        data_loader = build_detection_test_loader(\n            cfg, dataset_name, mapper=VisualQueryDatasetMapper(cfg, is_train=False)\n        )\n        evaluator = get_evaluator(\n            cfg, dataset_name, os.path.join(cfg.OUTPUT_DIR, \"inference\", dataset_name)\n        )\n        results_i = inference_on_dataset(model, data_loader, evaluator)\n        results[dataset_name] = results_i\n        if comm.is_main_process():\n            logger.info(\"Evaluation results for {} in csv format:\".format(dataset_name))\n            print_csv_format(results_i)\n    return results\n\n\ndef set_model_to_train(model):\n    \"\"\"\n    Freezes backbone, proposal_generator. Sets roi_heads to train.\n    \"\"\"\n    # Freeze backbone\n    model.backbone.eval()\n    for p in model.backbone.parameters():\n        p.requires_grad = False\n    # Freeze proposal_generator\n    model.proposal_generator.eval()\n    for p in model.proposal_generator.parameters():\n        p.requires_grad = False\n    # Set roi_heads to train\n    model.roi_heads.train()\n\n\ndef do_train(cfg, model, resume=False):\n    distributed = comm.get_world_size() > 1\n    if distributed:\n        set_model_to_train(model.module)\n    else:\n        set_model_to_train(model)\n    optimizer = build_optimizer(cfg, model)\n    scheduler = build_lr_scheduler(cfg, optimizer)\n\n    checkpointer = DetectionCheckpointer(\n        model, cfg.OUTPUT_DIR, optimizer=optimizer, scheduler=scheduler\n    )\n    start_iter = (\n        checkpointer.resume_or_load(cfg.MODEL.WEIGHTS, resume=resume).get(\n            \"iteration\", -1\n        )\n        + 1\n    )\n    max_iter = cfg.SOLVER.MAX_ITER\n\n    periodic_checkpointer = PeriodicCheckpointer(\n        checkpointer, cfg.SOLVER.CHECKPOINT_PERIOD, max_iter=max_iter\n    )\n\n    writers = (\n        default_writers(cfg.OUTPUT_DIR, max_iter) if comm.is_main_process() else []\n    )\n\n    # This script does not support accurate timing and precise BN here.\n    # They are not trivial to implement in a small training loop.\n    data_loader = build_detection_train_loader(\n        cfg,\n        mapper=VisualQueryDatasetMapper(cfg, is_train=True),\n    )\n    logger.info(\"Starting training from iteration {}\".format(start_iter))\n    with EventStorage(start_iter) as storage:\n        for data, iteration in zip(data_loader, range(start_iter, max_iter)):\n            storage.iter = iteration\n\n            loss_dict = model(data)\n            losses = sum(loss_dict.values())\n            assert torch.isfinite(losses).all(), loss_dict\n\n            loss_dict_reduced = {\n                k: v.item() for k, v in comm.reduce_dict(loss_dict).items()\n            }\n            losses_reduced = sum(loss for loss in loss_dict_reduced.values())\n            if comm.is_main_process():\n                storage.put_scalars(total_loss=losses_reduced, **loss_dict_reduced)\n\n            optimizer.zero_grad()\n            losses.backward()\n            optimizer.step()\n            storage.put_scalar(\n                \"lr\", optimizer.param_groups[0][\"lr\"], smoothing_hint=False\n            )\n            scheduler.step()\n\n            if (\n                cfg.TEST.EVAL_PERIOD > 0\n                and (iteration + 1) % cfg.TEST.EVAL_PERIOD == 0\n                and iteration != max_iter - 1\n            ):\n                results = do_test(cfg, model)\n                comm.synchronize()\n                # Required again since do_test sets full model to train() at the end\n                if distributed:\n                    set_model_to_train(model.module)\n                else:\n                    set_model_to_train(model)\n                # Log results to storage\n                if comm.is_main_process():\n                    results_formed = {}\n                    for dset, results_i in results.items():\n                        for rtype, results_ij in results_i.items():\n                            for metric, result_metric in results_ij.items():\n                                results_formed[\n                                    f\"{dset}/{rtype}/{metric}\"\n                                ] = result_metric\n                    storage.put_scalars(**results_formed)\n\n            if iteration - start_iter > 5 and (\n                (iteration + 1) % 20 == 0 or iteration == max_iter - 1\n            ):\n                for writer in writers:\n                    writer.write()\n            periodic_checkpointer.step(iteration)\n\n\ndef setup(args):\n    \"\"\"\n    Create configs and perform basic setups.\n    \"\"\"\n    cfg = get_cfg()\n    cfg.merge_from_file(args.config_file)\n    cfg.merge_from_list(args.opts)\n    cfg.freeze()\n    default_setup(cfg, args)\n    return cfg\n\n\ndef build_siam_model(cfg):\n    model = build_model(cfg)\n    # Initialize backbone, proposal_generators\n    pretrained_model = model_zoo.get(cfg.MODEL.SIAMESE_PRETRAINED_CONFIG, trained=True)\n    model.backbone.load_state_dict(pretrained_model.backbone.state_dict())\n    model.proposal_generator.load_state_dict(\n        pretrained_model.proposal_generator.state_dict()\n    )\n    return model\n\n\ndef register_all_datasets(cfg):\n    # Register VQ datasets\n    # The dataset names are \"<NAME>_<SPLIT>\" for SPLIT in \"train\", \"val\", \"test\"\n    splits_root = cfg.INPUT.VQ_DATA_SPLITS_ROOT\n    images_root = cfg.INPUT.VQ_IMAGES_ROOT\n    register_visual_query_datasets(splits_root, images_root, \"visual_query\")\n    register_visual_query_datasets(\n        splits_root,\n        images_root,\n        \"visual_query_clean\",\n        bbox_aspect_scale=0.5,\n        bbox_area_scale=0.25,\n    )\n    register_visual_query_datasets(\n        splits_root,\n        images_root,\n        \"visual_query_clean_plus\",\n        bbox_aspect_scale=0.75,\n        bbox_area_scale=0.50,\n    )\n    register_visual_query_datasets(\n        splits_root,\n        images_root,\n        \"visual_query_clean_aug\",\n        bbox_aspect_scale=0.5,\n        bbox_area_scale=0.25,\n        perform_response_augmentation=True,\n    )\n\n\ndef main(args):\n    cfg = setup(args)\n\n    register_all_datasets(cfg)\n\n    model = build_siam_model(cfg)\n\n    if not args.eval_only:\n        # Slurm resumption logic\n        ## If a checkpoint exists, load the most recent one\n        model_paths = glob.glob(os.path.join(cfg.OUTPUT_DIR, \"model_*.pth\"))\n        if len(model_paths) > 0:\n            get_ckpt_id = lambda x: int(os.path.basename(x).split(\".\")[0].split(\"_\")[1])\n            model_paths = sorted(model_paths, key=get_ckpt_id, reverse=True)\n            cfg.defrost()\n            cfg.MODEL.WEIGHTS = model_paths[0]\n            cfg.freeze()\n            args.resume = True\n            print(f\"======> Resuming training from {model_paths[0]}\")\n\n    logger.info(\"Model:\\n{}\".format(model))\n    if args.eval_only:\n        DetectionCheckpointer(model, save_dir=cfg.OUTPUT_DIR).resume_or_load(\n            cfg.MODEL.WEIGHTS, resume=args.resume\n        )\n        return do_test(cfg, model)\n\n    set_model_to_train(model)\n    distributed = comm.get_world_size() > 1\n    if distributed:\n        model = DistributedDataParallel(\n            model,\n            device_ids=[comm.get_local_rank()],\n            broadcast_buffers=False,  # , find_unused_parameters=True\n        )\n\n    do_train(cfg, model, resume=args.resume)\n    return do_test(cfg, model)\n\n\nif __name__ == \"__main__\":\n    args = default_argument_parser().parse_args()\n    print(\"Command Line Args:\", args)\n    launch(\n        main,\n        args.num_gpus,\n        num_machines=args.num_machines,\n        machine_rank=args.machine_rank,\n        dist_url=args.dist_url,\n        args=(args,),\n    )\n"
  },
  {
    "path": "VQ2D/validate_challenge_predictions.py",
    "content": "import argparse\nimport json\nimport tqdm\n\n\ndef validate_model_predictions(model_predictions, test_annotations):\n    assert type(model_predictions) == type({})\n    for key in [\"version\", \"challenge\", \"results\"]:\n        assert key in model_predictions.keys()\n    assert model_predictions[\"version\"] == \"1.0\"\n    assert model_predictions[\"challenge\"] == \"ego4d_vq2d_challenge\"\n    assert type(model_predictions[\"results\"]) == type({})\n    assert \"videos\" in model_predictions[\"results\"]\n\n    video_annotations = test_annotations[\"videos\"]\n    video_predictions = model_predictions[\"results\"][\"videos\"]\n\n    assert len(video_predictions) == len(video_annotations)\n\n    n_samples = 0\n    for v in video_annotations:\n        for c in v[\"clips\"]:\n            for a in c[\"annotations\"]:\n                for _, q in a[\"query_sets\"].items():\n                    if q[\"is_valid\"]:\n                        n_samples += 1\n\n    pbar = tqdm.tqdm(total=n_samples, desc=\"Validating user predictions\")\n    for vannot, vpred in zip(video_annotations, video_predictions):\n        assert type(vpred) == type({})\n        for key in [\"video_uid\", \"clips\"]:\n            assert key in vpred\n        assert vannot[\"video_uid\"] == vpred[\"video_uid\"]\n        assert type(vpred[\"clips\"]) == type([])\n        assert len(vannot[\"clips\"]) == len(vpred[\"clips\"])\n        for cpreds in vpred[\"clips\"]:\n            assert type(cpreds) == type({})\n            for key in [\"clip_uid\", \"predictions\"]:\n                assert key in cpreds\n        clips_annots = vannot[\"clips\"]\n        clips_preds = vpred[\"clips\"]\n        for clip_annots, clip_preds in zip(clips_annots, clips_preds):\n            assert clip_annots[\"clip_uid\"] == clip_preds[\"clip_uid\"]\n            assert type(clip_preds[\"predictions\"]) == type([])\n            assert len(clip_preds[\"predictions\"]) == len(clip_annots[\"annotations\"])\n            for clip_annot, clip_pred in zip(\n                clip_annots[\"annotations\"], clip_preds[\"predictions\"]\n            ):\n                assert type(clip_pred) == type({})\n                assert \"query_sets\" in clip_pred\n                valid_query_set_annots = {\n                    k: v\n                    for k, v in clip_annot[\"query_sets\"].items()\n                    if v[\"is_valid\"]\n                }\n                valid_query_set_preds = {\n                    k: v\n                    for k, v in clip_pred[\"query_sets\"].items()\n                    if clip_annot[\"query_sets\"][k][\"is_valid\"]\n                }\n                assert(\n                    set(list(valid_query_set_preds.keys())) == \\\n                    set(list(valid_query_set_annots.keys()))\n                )\n                for qset_id, qset in clip_pred[\"query_sets\"].items():\n                    assert type(qset) == type({})\n                    for key in [\"bboxes\", \"score\"]:\n                        assert key in qset\n                    pbar.update()\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--test-unannotated-path\", type=str, required=True)\n    parser.add_argument(\"--test-predictions-path\", type=str, required=True)\n\n    args = parser.parse_args()\n\n    with open(args.test_unannotated_path, \"r\") as fp:\n        test_annotations = json.load(fp)\n    with open(args.test_predictions, \"r\") as fp:\n        model_predictions = json.load(fp)\n    validate_model_predictions(model_predictions, test_annotations)"
  },
  {
    "path": "VQ2D/visualizations/.gitignore",
    "content": "stats\nvideos\n"
  },
  {
    "path": "VQ2D/visualizations/visualize_annotation_stats.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import ast\\n\",\n    \"import json\\n\",\n    \"import numpy as np\\n\",\n    \"import os\\n\",\n    \"import pandas as pd\\n\",\n    \"import seaborn as sns\\n\",\n    \"import sys\\n\",\n    \"sns.set_style(\\\"white\\\")\\n\",\n    \"\\n\",\n    \"sys.path.append(\\\"../\\\")\\n\",\n    \"import vq2d.stats as vq_stats\\n\",\n    \"\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"import matplotlib.pylab as pylab\\n\",\n    \"params = {\\n\",\n    \"    \\\"legend.fontsize\\\": \\\"xx-large\\\",\\n\",\n    \"    \\\"axes.labelsize\\\": \\\"xx-large\\\",\\n\",\n    \"    \\\"axes.titlesize\\\":\\\"xx-large\\\",\\n\",\n    \"    \\\"xtick.labelsize\\\": \\\"xx-large\\\",\\n\",\n    \"    \\\"ytick.labelsize\\\": \\\"xx-large\\\",\\n\",\n    \"    \\\"text.color\\\": \\\"black\\\",\\n\",\n    \"    \\\"axes.labelcolor\\\": \\\"black\\\",\\n\",\n    \"    \\\"xtick.color\\\": \\\"black\\\",\\n\",\n    \"    \\\"ytick.color\\\": \\\"black\\\"\\n\",\n    \"}\\n\",\n    \"pylab.rcParams.update(params)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Define paths to videos and VQ annotations\\n\",\n    \"ANNOT_PATHS = [\\n\",\n    \"    \\\"../data/vq_train.json\\\",\\n\",\n    \"    \\\"../data/vq_val.json\\\",\\n\",\n    \"    \\\"../data/vq_test.json\\\",\\n\",\n    \"]\\n\",\n    \"EGO4D_VIDEOS_ROOT = \\\"<TODO: UPDATE EGO4D VIDEOS PATH>\\\"\\n\",\n    \"STATS_DIR = \\\"./stats\\\"\\n\",\n    \"os.makedirs(STATS_DIR, exist_ok=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Visualize the statistics of the VQ2D annotations.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Load annotations for each video\\n\",\n    \"VIDEO_ANNOTATIONS = []\\n\",\n    \"for annot_path in ANNOT_PATHS:\\n\",\n    \"    with open(annot_path, \\\"r\\\") as fp:\\n\",\n    \"        data = json.load(fp)\\n\",\n    \"    for v in data[\\\"videos\\\"]:\\n\",\n    \"        VIDEO_ANNOTATIONS.append(v)\\n\",\n    \"\\n\",\n    \"# Load metadata for each video\\n\",\n    \"manifest_path = os.path.join(EGO4D_VIDEOS_ROOT, \\\"manifest.csv\\\")\\n\",\n    \"manifest = pd.read_csv(manifest_path)\\n\",\n    \"VIDEO_UIDS_TO_METADATA = {v['video_uid']: None for v in VIDEO_ANNOTATIONS}\\n\",\n    \"for row in manifest.iterrows():\\n\",\n    \"    row = dict(row[1])\\n\",\n    \"    if row['video_uid'] not in VIDEO_UIDS_TO_METADATA:\\n\",\n    \"        continue\\n\",\n    \"    md = {\\n\",\n    \"        'video_duration_sec': row['canonical_video_duration_sec'],\\n\",\n    \"        'scenarios': ast.literal_eval(row['scenarios']),\\n\",\n    \"        'source': row['video_source'],\\n\",\n    \"    }\\n\",\n    \"    VIDEO_UIDS_TO_METADATA[row['video_uid']] = md\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Compute hours of video annotated\\n\",\n    \"coverage_stats = vq_stats.compute_coverage_statistics(\\n\",\n    \"    VIDEO_ANNOTATIONS, VIDEO_UIDS_TO_METADATA\\n\",\n    \")\\n\",\n    \"print('-' * 50)\\n\",\n    \"print(\\\"Video coverage statistics\\\")\\n\",\n    \"print('-' * 50)\\n\",\n    \"for k, v in coverage_stats.items():\\n\",\n    \"    print(f\\\"{k:<15s}: {v:.3f} hours\\\")\\n\",\n    \"# Compute number of clips annotated\\n\",\n    \"clip_stats = vq_stats.compute_clip_statistics(VIDEO_ANNOTATIONS)\\n\",\n    \"print('-' * 50)\\n\",\n    \"print(\\\"Clip statistics\\\")\\n\",\n    \"print('-' * 50)\\n\",\n    \"for k, v in clip_stats.items():\\n\",\n    \"    print(f\\\"{k:<15s}: {v:>5d}\\\")\\n\",\n    \"# Compute number of visual queries annotated\\n\",\n    \"query_stats = vq_stats.compute_query_statistics(VIDEO_ANNOTATIONS)\\n\",\n    \"print('-' * 50)\\n\",\n    \"print(\\\"Query statistics\\\")\\n\",\n    \"print('-' * 50)\\n\",\n    \"for k, v in query_stats.items():\\n\",\n    \"    print(f\\\"{k:<15s}: {v:>5d}\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Print histogram over clip lengths in minutes\\n\",\n    \"clip_lengths = []\\n\",\n    \"for v in VIDEO_ANNOTATIONS:\\n\",\n    \"    for c in v['clips']:\\n\",\n    \"        if c['annotation_complete']:\\n\",\n    \"            cl = (c['video_end_sec'] - c['video_start_sec']) / 60.0\\n\",\n    \"            clip_lengths.append(cl)\\n\",\n    \"\\n\",\n    \"vq_stats.hist(\\n\",\n    \"    clip_lengths,\\n\",\n    \"    rwidth=0.8,\\n\",\n    \"    title=f'Histogram over clip lengths',\\n\",\n    \"    xlabel='Clip length (minutes)', ylabel='# clips annotated',\\n\",\n    \"    color=\\\"dodgerblue\\\",\\n\",\n    \"    edgecolor=\\\".8\\\",\\n\",\n    \"    figsize=(6, 6),\\n\",\n    \"    add_grid=True,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Plot scenario coverage statistics\\n\",\n    \"scenarios_coverage = vq_stats.compute_scenario_coverage_statistics(\\n\",\n    \"    VIDEO_ANNOTATIONS, VIDEO_UIDS_TO_METADATA\\n\",\n    \")\\n\",\n    \"sorted_scenarios_coverage = sorted(\\n\",\n    \"    scenarios_coverage.items(), key=lambda x: x[1], reverse=True\\n\",\n    \")\\n\",\n    \"vq_stats.barplot(\\n\",\n    \"    x=[\\n\",\n    \"        s[:23] if len(s) <= 23 else s[:20] + \\\"...\\\"\\n\",\n    \"        for s, c in sorted_scenarios_coverage\\n\",\n    \"    ],\\n\",\n    \"    y=[c for s, c in sorted_scenarios_coverage],\\n\",\n    \"    rotation=90,\\n\",\n    \"    xlabel=\\\"Scenarios\\\",\\n\",\n    \"    ylabel=\\\"# video hours\\\",\\n\",\n    \"    color=\\\"dodgerblue\\\",\\n\",\n    \"    edgecolor=\\\".8\\\",\\n\",\n    \"    figsize=(22, 7),\\n\",\n    \"    title=f\\\"Total: scenarios={len(sorted_scenarios_coverage)}, hours={coverage_stats['total_coverage']:.2f}\\\",\\n\",\n    \"    add_grid=True,\\n\",\n    \"    save_path=os.path.join(STATS_DIR, \\\"ego4d-vq-scenarios.png\\\"),\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Plot university coverage statistics\\n\",\n    \"universities_coverage = vq_stats.compute_university_coverage_statistics(\\n\",\n    \"    VIDEO_ANNOTATIONS, VIDEO_UIDS_TO_METADATA\\n\",\n    \")\\n\",\n    \"sorted_universities_coverage = sorted(\\n\",\n    \"    universities_coverage.items(), key=lambda x: x[1], reverse=True\\n\",\n    \")\\n\",\n    \"vq_stats.barplot(\\n\",\n    \"    x=[\\n\",\n    \"        s[:20] if len(s) <= 20 else s[:20] + \\\"...\\\"\\n\",\n    \"        for s, c in sorted_universities_coverage\\n\",\n    \"    ],\\n\",\n    \"    y=[c for s, c in sorted_universities_coverage],\\n\",\n    \"    rotation=90,\\n\",\n    \"    xlabel=\\\"Universities\\\",\\n\",\n    \"    ylabel=\\\"# video hours\\\",\\n\",\n    \"    color=\\\"dodgerblue\\\",\\n\",\n    \"    edgecolor=\\\".8\\\",\\n\",\n    \"    figsize=(8, 6),\\n\",\n    \"    title=f\\\"Total: universities={len(sorted_universities_coverage)}, hours={coverage_stats['total_coverage']:.2f}\\\",\\n\",\n    \"    add_grid=True,\\n\",\n    \"    save_path=os.path.join(STATS_DIR, \\\"ego4d-vq-universities.png\\\"),\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Analyze biases in the data\\n\",\n    \"\\n\",\n    \"* Bias 1: Separation b/w the query frame and response track\\n\",\n    \"* Bias 2: Size of the response track\\n\",\n    \"* Bias 3: Location of bboxes in the RT images\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"##################################################################################\\n\",\n    \"# Bias 1: Separation b/w the query frame and response track\\n\",\n    \"##################################################################################\\n\",\n    \"\\n\",\n    \"q2r_separation = vq_stats.compute_query_to_response_separation_statistics(\\n\",\n    \"    VIDEO_ANNOTATIONS\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"vq_stats.hist(\\n\",\n    \"    x=q2r_separation,\\n\",\n    \"    xlabel=\\\"Separation b/w query and response track (# frames)\\\", \\n\",\n    \"    ylabel=\\\"# annotations\\\",\\n\",\n    \"    color=\\\"dodgerblue\\\",\\n\",\n    \"    edgecolor=\\\".8\\\",\\n\",\n    \"    bins=500,\\n\",\n    \"    xlim=[0, 600],\\n\",\n    \"    ylim=[0, 5000],\\n\",\n    \"    figsize=(7, 6),\\n\",\n    \"    add_grid=True,\\n\",\n    \"    save_path=os.path.join(STATS_DIR, \\\"ego4d-biases-q2r.png\\\"),\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"##################################################################################\\n\",\n    \"# Bias 2: Size of the response track\\n\",\n    \"##################################################################################\\n\",\n    \"\\n\",\n    \"rt_sizes = vq_stats.compute_response_track_length_statistics(\\n\",\n    \"    VIDEO_ANNOTATIONS\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"vq_stats.hist(\\n\",\n    \"    x=rt_sizes,\\n\",\n    \"    xlabel=\\\"Response track sizes (# frames)\\\", \\n\",\n    \"    ylabel=\\\"# annotations\\\",\\n\",\n    \"    color=\\\"dodgerblue\\\",\\n\",\n    \"    edgecolor=\\\".8\\\",\\n\",\n    \"    bins=300,\\n\",\n    \"    ylim=[0, 5000],\\n\",\n    \"    xlim=[0, 100],\\n\",\n    \"    figsize=(7, 6),\\n\",\n    \"    add_grid=True,\\n\",\n    \"    save_path=os.path.join(STATS_DIR, \\\"ego4d-biases-rtsize.png\\\"),\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"##################################################################################\\n\",\n    \"# Bias 3: Location of bboxes in the RT images\\n\",\n    \"##################################################################################\\n\",\n    \"\\n\",\n    \"rt_bbox_locations = vq_stats.compute_response_track_location_statistics(\\n\",\n    \"    VIDEO_ANNOTATIONS,\\n\",\n    \")\\n\",\n    \"# Create density image\\n\",\n    \"H, W = 1080, 1920\\n\",\n    \"density_image = np.zeros((H, W))\\n\",\n    \"for xs, ys, xe, ye in rt_bbox_locations:\\n\",\n    \"    xs, ys, xe, ye = int(xs * W), int(ys * H), int(xe * W), int(ye * H)\\n\",\n    \"    density_image[ys : ye + 1, xs : xe + 1] += 1\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(11, 5.5))\\n\",\n    \"plt.imshow(density_image / density_image.max())\\n\",\n    \"plt.colorbar()\\n\",\n    \"plt.savefig(os.path.join(STATS_DIR, \\\"ego4d-biases-rtlocs.png\\\"))\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"interpreter\": {\n   \"hash\": \"357b856e98ffd48e80f71546cd971c190cc1819dadad54d7736d44773b369b83\"\n  },\n  \"kernelspec\": {\n   \"display_name\": \"Python 3.8.12 ('ego4d_repro')\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"name\": \"python\",\n   \"version\": \"3.8.12\"\n  },\n  \"orig_nbformat\": 4\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "VQ2D/visualizations/visualize_annotations.py",
    "content": "import argparse\nimport json\nimport os\n\nimport cv2\nimport imageio\nimport numpy as np\nimport pims\n\n\ndef _get_box(annot_box):\n    x, y, w, h = annot_box[\"x\"], annot_box[\"y\"], annot_box[\"width\"], annot_box[\"height\"]\n    return (int(x), int(y), int(x + w), int(y + h))\n\n\ndef extract_crop_from_image(image, box):\n    x1, y1, x2, y2 = box\n    crop = image[y1:y2, x1:x2]\n    h, w = crop.shape[:2]\n    # Add padding to make it square\n    pad_l, pad_r, pad_t, pad_b = 0, 0, 0, 0\n    if h > w:\n        pad_l = (h - w) // 2\n        pad_r = (h - w) - pad_l\n    if w > h:\n        pad_t = (w - h) // 2\n        pad_b = (w - h) - pad_t\n    crop = np.pad(\n        crop,\n        ((pad_t, pad_b), (pad_l, pad_r), (0, 0)),\n        mode=\"constant\",\n        constant_values=255,\n    )\n    return crop\n\n\ndef draw_box_on_image(image, box, color=(255, 0, 0), thickness=5):\n    x1, y1, x2, y2 = [int(b) for b in box]\n    image = cv2.rectangle(image, (x1, y1), (x2, y2), color=color, thickness=thickness)\n    return image\n\n\ndef draw_border(image, color=(255, 0, 0), thickness=5):\n    x1, y1 = 0, 0\n    x2, y2 = image.shape[1] - 1, image.shape[0] - 1\n    return draw_box_on_image(image, [x1, y1, x2, y2], color=color, thickness=thickness)\n\n\ndef scale_im_height(image, H):\n    im_H, im_W = image.shape[:2]\n    W = int(1.0 * H * im_W / im_H)\n    return cv2.resize(image, (W, H))\n\n\ndef visualize_query_set(video_reader, qset, save_height=640):\n    qf_fno = qset[\"query_frame\"]\n    vc_fno = qset[\"visual_crop\"][\"frame_number\"]\n    last_fno = max(qf_fno, vc_fno)\n    vc_box = _get_box(qset[\"visual_crop\"])\n    rt_fnos = [rf[\"frame_number\"] for rf in qset[\"response_track\"]]\n    rt_boxes = [_get_box(rf) for rf in qset[\"response_track\"]]\n    oW = qset[\"visual_crop\"][\"original_width\"]\n    oH = qset[\"visual_crop\"][\"original_height\"]\n    # Visualize visual crop\n    vc_frame = np.copy(video_reader[vc_fno])\n    ## Scale up to original resolution\n    vc_frame = scale_im_height(vc_frame, oH)\n    vc_im = extract_crop_from_image(vc_frame, vc_box)\n    ## Add text header\n    tx_height = 50\n    ob_title = qset[\"object_title\"]\n    tx_im = get_text_box(ob_title, (tx_height, vc_im.shape[1]))\n    vc_im = np.concatenate([tx_im, vc_im], axis=0)\n    # Visualize frames in the response track\n    rt_ims = []\n    for rf_fno, rf_box in zip(rt_fnos, rt_boxes):\n        rf_frame = np.copy(video_reader[rf_fno])\n        ## Scale up to original resolution\n        rf_frame = scale_im_height(rf_frame, oH)\n        rf_im = draw_box_on_image(rf_frame, rf_box, color=(0, 255, 0), thickness=8)\n        rf_im = draw_border(rf_im, color=(0, 255, 0), thickness=15)\n        ## Scale down to save height\n        rf_im = scale_im_height(rf_im, save_height)\n        rt_ims.append(rf_im)\n    # Visualize frames after the response track till the query frame\n    post_rt_ims = []\n    for i in range(rt_fnos[-1], qf_fno):\n        # Concatenate vc_plot_im to the right\n        frame = scale_im_height(video_reader[i], save_height)\n        post_rt_ims.append(frame)\n    rt_ims = rt_ims + post_rt_ims\n    return rt_ims, vc_im\n\n\ndef get_mp4_writer(path, fps, output_params=[\"-crf\", \"31\"]):\n    writer = imageio.get_writer(\n        path,\n        codec=\"h264\",\n        fps=fps,\n        quality=None,\n        pixelformat=\"yuv420p\",\n        bitrate=0,  # Setting bitrate to 0 is required to activate -crf\n        output_params=output_params,\n    )\n    return writer\n\n\ndef save_video(frames, path, fps):\n    writer = get_mp4_writer(path, fps)\n    for frame in frames:\n        writer.append_data(frame)\n    writer.close()\n\n\ndef get_text_box(text, shape, fg_color=(255, 255, 255), bg_color=(0, 0, 0)):\n    text_im = np.zeros((*shape, 3), dtype=np.uint8)\n    text_im[:, :] = bg_color\n    font = cv2.FONT_HERSHEY_SIMPLEX\n    font_scale = 1.0\n    line_thickness = 2\n    text_im = cv2.putText(\n        text_im,\n        text,\n        (2, shape[0] - 10),\n        font,\n        font_scale,\n        fg_color,\n        line_thickness,\n        cv2.LINE_AA,\n    )\n    return text_im\n\n\ndef visualize_annotation(clip_path, rt_save_path, crop_save_path, qset):\n    \"\"\"\n    Visualizes an annotation from the visual-queries task\n    \"\"\"\n    video_reader = pims.Video(clip_path)\n    # Visualize annotations for 3 query sets\n    rt_frames, vc_im = visualize_query_set(video_reader, qset)\n    save_video(rt_frames, rt_save_path, 5.0)\n    imageio.imwrite(crop_save_path, vc_im)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--annot-path\", type=str, required=True)\n    parser.add_argument(\"--clips-root\", type=str, required=True)\n    parser.add_argument(\"--vis-save-root\", type=str, default=\"./videos\")\n\n    args = parser.parse_args()\n\n    with open(args.annot_path, \"r\") as fp:\n        annotations = json.load(fp)\n\n    os.makedirs(args.vis_save_root, exist_ok=True)\n\n    for v in annotations[\"videos\"]:\n        for c in v[\"clips\"]:\n            cuid = c[\"clip_uid\"]\n            for a_idx, a in enumerate(c[\"annotations\"]):\n                for qset_id, qset in a[\"query_sets\"].items():\n                    if not qset[\"is_valid\"]:\n                        continue\n                    qf_fno = qset[\"query_frame\"]\n                    rt_last_fno = max(\n                        [rf[\"frame_number\"] for rf in qset[\"response_track\"]]\n                    )\n                    rtsp = f\"{args.vis_save_root}/{cuid}_{a_idx:05d}_{qset_id}_rt.mp4\"\n                    csp = f\"{args.vis_save_root}/{cuid}_{a_idx:05d}_{qset_id}_crop.png\"\n                    clip_path = f\"{args.clips_root}/{cuid}.mp4\"\n                    if not os.path.isfile(clip_path):\n                        print(f\"======> Clip {clip_path} is missing...\")\n                        continue\n                    visualize_annotation(clip_path, rtsp, csp, qset)\n"
  },
  {
    "path": "VQ2D/vq2d/baselines/__init__.py",
    "content": "from .dataloader import VisualQueryDatasetMapper\nfrom .dataset import (\n    register_visual_query_datasets,\n)\nfrom .feature_retrieval import perform_retrieval\nfrom .predictor import SiamPredictor\nfrom .utils import (\n    create_similarity_network,\n    convert_annot_to_bbox,\n    convert_image_np2torch,\n    get_clip_name_from_clip_uid,\n    get_image_name_from_clip_uid,\n    extract_window_with_context,\n)\n\n\n__all__ = [\n    \"create_similarity_network\",\n    \"convert_annot_to_bbox\",\n    \"convert_image_np2torch\",\n    \"get_clip_name_from_clip_uid\",\n    \"get_image_name_from_clip_uid\",\n    \"perform_retrieval\",\n    \"extract_window_with_context\",\n    \"register_visual_query_datasets\",\n    \"SiamPredictor\",\n    \"VisualQueryDatasetMapper\",\n]\n"
  },
  {
    "path": "VQ2D/vq2d/baselines/dataloader.py",
    "content": "import copy\nimport logging\nfrom typing import List, Union\n\nimport cv2\nimport numpy as np\nimport torch\nfrom detectron2.config import CfgNode, configurable\nfrom detectron2.data import detection_utils as utils\nfrom detectron2.data import transforms as T\nfrom detectron2.data.transforms.augmentation import Augmentation\n\nfrom .utils import extract_window_with_context\n\n\ndef build_augmentation(\n    cfg: CfgNode, is_train: bool, mode: str = \"input\"\n) -> List[Augmentation]:\n    \"\"\"\n    Create a list of default :class:`Augmentation` from config.\n    Now it includes resizing and flipping.\n\n    Returns:\n        list[Augmentation]\n        mode - can be input / reference\n    \"\"\"\n    if is_train:\n        min_size = cfg.INPUT.MIN_SIZE_TRAIN\n        max_size = cfg.INPUT.MAX_SIZE_TRAIN\n        sample_style = cfg.INPUT.MIN_SIZE_TRAIN_SAMPLING\n    else:\n        min_size = cfg.INPUT.MIN_SIZE_TEST\n        max_size = cfg.INPUT.MAX_SIZE_TEST\n        sample_style = \"choice\"\n    augmentation = [T.ResizeShortestEdge(min_size, max_size, sample_style)]\n    if is_train and cfg.INPUT.RANDOM_FLIP != \"none\":\n        augmentation.append(\n            T.RandomFlip(\n                horizontal=cfg.INPUT.RANDOM_FLIP == \"horizontal\",\n                vertical=cfg.INPUT.RANDOM_FLIP == \"vertical\",\n            )\n        )\n    if is_train and mode == \"input\" and cfg.INPUT.ENABLE_RANDOM_ROTATION:\n        augmentation.append(\n            T.RandomRotation(\n                cfg.INPUT.ROTATION_ANGLES,\n                expand=cfg.INPUT.ROTATION_EXPAND,\n            )\n        )\n    elif (\n        is_train\n        and mode == \"reference\"\n        and cfg.INPUT.ENABLE_RANDOM_ROTATION_VISUAL_CROP\n    ):\n        augmentation.append(\n            T.RandomRotation(\n                cfg.INPUT.ROTATION_ANGLES,\n                expand=cfg.INPUT.ROTATION_EXPAND,\n            )\n        )\n\n    if is_train and cfg.INPUT.ENABLE_RANDOM_BRIGHTNESS:\n        augmentation.append(\n            T.RandomBrightness(*cfg.INPUT.RANDOM_BRIGHTNESS_VALS),\n        )\n\n    return augmentation\n\n\nclass VisualQueryDatasetMapper:\n    \"\"\"\n    A callable which takes a dataset dict in Detectron2 Dataset format,\n    and map it into a format used by the model. This is modified to load\n    the data for visual queries task.\n\n    The callable currently does the following:\n\n    1. Read the image from \"file_name\"\n    2. Read the visual crop from dataset_dict[\"reference\"][\"file_name\"]\n    3. Applies cropping/geometric transforms to the image and annotations\n    4. Crop out the query object from the visual crop image\n    5. Prepare data and annotations to Tensor and :class:`Instances`\n    \"\"\"\n\n    @configurable\n    def __init__(\n        self,\n        is_train: bool,\n        *,\n        augmentations: List[Union[T.Augmentation, T.Transform]],\n        augmentations_ref: List[Union[T.Augmentation, T.Transform]],\n        image_format: str,\n        reference_size: int,\n        reference_context_pad: int,\n        transform_reference: bool,\n    ):\n        \"\"\"\n        NOTE: this interface is experimental.\n\n        Args:\n            is_train: whether it's used in training or inference\n            augmentations: a list of augmentations or deterministic transforms to apply\n            image_format: an image format supported by :func:`detection_utils.read_image`.\n        \"\"\"\n        # fmt: off\n        self.is_train               = is_train\n        self.augmentations          = T.AugmentationList(augmentations)\n        self.augmentations_ref      = T.AugmentationList(augmentations_ref)\n        self.image_format           = image_format\n        self.reference_size         = reference_size\n        self.reference_context_pad  = reference_context_pad\n        self.transform_reference    = transform_reference\n        # fmt: on\n        logger = logging.getLogger(__name__)\n        mode = \"training\" if is_train else \"inference\"\n        logger.info(\n            f\"[VisualQueryDatasetMapper] Augmentations used in {mode}: {augmentations}\"\n        )\n\n    @classmethod\n    def from_config(cls, cfg, is_train: bool = True):\n        augs = build_augmentation(cfg, is_train, mode=\"input\")\n        ref_augs = build_augmentation(cfg, is_train, mode=\"reference\")\n\n        ret = {\n            \"is_train\": is_train,\n            \"augmentations\": augs,\n            \"augmentations_ref\": ref_augs,\n            \"image_format\": cfg.INPUT.FORMAT,\n            \"reference_size\": cfg.INPUT.REFERENCE_SIZE,\n            \"reference_context_pad\": cfg.INPUT.REFERENCE_CONTEXT_PAD,\n            \"transform_reference\": cfg.INPUT.TRANSFORM_VISUAL_CROP,\n        }\n\n        return ret\n\n    def __call__(self, dataset_dict):\n        \"\"\"\n        Args:\n            dataset_dict (dict): Metadata of one image, in Detectron2 Dataset format.\n\n        Returns:\n            dict: a format that builtin models in detectron2 accept\n\n        NOTE: Currently, this call assumes that the annotations are consistent with\n        the sizes of the image loaded. For example, the bounding box should have\n        been annotated on the same image that is loaded. Any inconsistency here\n        can lead to errors down the line.\n        \"\"\"\n        dataset_dict = copy.deepcopy(dataset_dict)  # it will be modified by code below\n        # USER: Write your own image loading if it's not from a file\n        image = utils.read_image(dataset_dict[\"file_name\"], format=self.image_format)\n        # Correct aspect ratio if incorrect\n        if dataset_dict[\"incorrect_aspect_ratio\"]:\n            image = cv2.resize(image, (dataset_dict[\"width\"], dataset_dict[\"height\"]))\n        utils.check_image_size(dataset_dict, image)\n\n        aug_input = T.AugInput(image)\n        transforms = self.augmentations(aug_input)\n        image = aug_input.image\n\n        image_shape = image.shape[:2]  # h, w\n        # Pytorch's dataloader is efficient on torch.Tensor due to shared-memory,\n        # but not efficient on large generic data structures due to the use of pickle & mp.Queue.\n        # Therefore it's important to use torch.Tensor.\n        dataset_dict[\"image\"] = torch.as_tensor(\n            np.ascontiguousarray(image.transpose(2, 0, 1))\n        )\n\n        if \"annotations\" in dataset_dict:\n            # USER: Implement additional transformations if you have other types of data\n            annos = [\n                utils.transform_instance_annotations(obj, transforms, image_shape)\n                for obj in dataset_dict.pop(\"annotations\")\n                if obj.get(\"iscrowd\", 0) == 0\n            ]\n            instances = utils.annotations_to_instances(annos, image_shape)\n            dataset_dict[\"instances\"] = utils.filter_empty_instances(instances)\n\n        # process reference visual crop\n        ref_dict = dataset_dict[\"reference\"]\n        ref_file_name = ref_dict[\"file_name\"]\n        reference = utils.read_image(ref_file_name, format=self.image_format)\n        # Correct aspect ratio if incorrect\n        if ref_dict[\"incorrect_aspect_ratio\"]:\n            reference = cv2.resize(reference, (ref_dict[\"width\"], ref_dict[\"height\"]))\n        utils.check_image_size(ref_dict, reference)\n        if self.transform_reference:\n            aug_ref = T.AugInput(reference)\n            transforms_ref = self.augmentations_ref(aug_ref)\n            reference = aug_ref.image\n\n            reference_shape = reference.shape[:2]  # h, w\n\n            ref_annot = utils.transform_instance_annotations(\n                ref_dict[\"annotations\"][0], transforms_ref, reference_shape\n            )\n            ref_dict[\"annotations\"][0][\"bbox\"] = ref_annot[\"bbox\"]\n\n        reference = torch.as_tensor(np.ascontiguousarray(reference.transpose(2, 0, 1)))\n        reference = reference.unsqueeze(0).float()\n        ref_bbox = ref_dict[\"annotations\"][0][\"bbox\"]\n        reference = extract_window_with_context(\n            reference,\n            ref_bbox,\n            p=self.reference_context_pad,\n            size=self.reference_size,\n            pad_value=125,\n        )\n        dataset_dict[\"reference\"] = reference.squeeze(0).byte()\n\n        return dataset_dict\n"
  },
  {
    "path": "VQ2D/vq2d/baselines/dataset.py",
    "content": "import copy\nimport gzip\nimport json\nimport os\nimport os.path as osp\nimport random\nfrom typing import Any, Optional, Sequence, List, Dict\n\nimport imagesize\nimport numpy as np\nimport tqdm\nfrom detectron2.data import DatasetCatalog, MetadataCatalog\nfrom detectron2.structures import BoxMode\n\nfrom ..constants import DATASET_FILE_TEMPLATE\nfrom .utils import (\n    get_image_name_from_clip_uid,\n    get_bbox_from_data,\n    get_image_id_from_data,\n)\n\n\ndef _register_visual_query_dataset(\n    data_id: str,\n    data_path: str,\n    images_root: str,\n    **kwargs: Any,\n) -> None:\n    \"\"\"Helper function to register visual query datasets.\"\"\"\n\n    def visual_query_dataset_function():\n        return visual_query_dataset(data_path, images_root, **kwargs)\n\n    try:\n        DatasetCatalog.register(data_id, visual_query_dataset_function)\n    except AssertionError:\n        # Skip this step if it is already registered\n        pass\n\n    MetadataCatalog.get(data_id).thing_classes = [\"visual_crop\"]\n    MetadataCatalog.get(data_id).thing_dataset_id_to_contiguous_id = {0: 0}\n\n\ndef register_visual_query_datasets(\n    data_root: str,\n    images_root: str,\n    data_key: str,\n    bbox_aspect_scale: Optional[float] = None,\n    bbox_area_scale: Optional[float] = None,\n    **kwargs: Any,\n) -> None:\n    \"\"\"\n    Given dataset paths and other configuration arguments, it registers a\n    visual query dataset with the specified arguments.\n    \"\"\"\n    for split in [\"train\", \"val\", \"test\"]:\n        data_path = osp.join(data_root, DATASET_FILE_TEMPLATE.format(split))\n        bbox_aspect_ratio_range = None\n        bbox_area_ratio_range = None\n        data_id = f\"{data_key}_{split}\"\n        if bbox_aspect_scale is not None:\n            assert 0.0 < bbox_aspect_scale < 1.0\n            bbox_aspect_ratio_range = (bbox_aspect_scale, 1.0 / bbox_aspect_scale)\n        if bbox_area_scale is not None:\n            assert 0.0 < bbox_area_scale < 1.0\n            bbox_area_ratio_range = (bbox_area_scale, 1.0 / bbox_area_scale)\n        _register_visual_query_dataset(\n            data_id,\n            data_path,\n            images_root,\n            bbox_aspect_ratio_range=bbox_aspect_ratio_range,\n            bbox_area_ratio_range=bbox_area_ratio_range,\n            **kwargs,\n        )\n\n\ndef visual_query_dataset(\n    data_path: str,\n    images_root: str,\n    bbox_aspect_ratio_range: Optional[Sequence[float]] = None,\n    bbox_area_ratio_range: Optional[Sequence[float]] = None,\n    perform_response_augmentation: bool = False,\n    augmentation_limit: bool = 10,\n) -> List[Dict[str, Any]]:\n    with gzip.open(data_path, \"rt\") as fp:\n        annotations = json.load(fp)\n    data_samples = []\n    for annot_ix, annot in tqdm.tqdm(enumerate(annotations), total=len(annotations)):\n        clip_uid = annot[\"clip_uid\"]\n        vc_bbox = get_bbox_from_data(annot[\"visual_crop\"])\n        vc_fno = annot[\"visual_crop\"][\"frame_number\"]\n        vc_path = get_image_name_from_clip_uid(clip_uid, vc_fno)\n        vc_path = osp.join(images_root, vc_path)\n        if not os.path.isfile(vc_path):\n            continue\n        # Is aspect ratio correction needed?\n        actual_width, actual_height = imagesize.get(vc_path)\n        vc_width = annot[\"visual_crop\"][\"original_width\"]\n        vc_height = annot[\"visual_crop\"][\"original_height\"]\n        vc_arc = False\n        if (vc_width, vc_height) != (actual_width, actual_height):\n            vc_arc = True\n            print(\"=======> VC needs aspect ratio correction\")\n        # Sort response track by frame number\n        annot[\"response_track\"] = sorted(\n            annot[\"response_track\"], key=lambda x: x[\"frame_number\"]\n        )\n        # Get aspect ratio for the largest response track BBoxes\n        bbox_areas = []\n        aspect_ratios = []\n        for rf_idx, rf_data in enumerate(annot[\"response_track\"]):\n            bba = rf_data[\"width\"] * rf_data[\"height\"]\n            ar = float(rf_data[\"width\"]) / float(rf_data[\"height\"] + 1e-10)\n            bbox_areas.append(bba)\n            aspect_ratios.append(ar)\n        bbox_areas = np.array(bbox_areas)\n        aspect_ratios = np.array(aspect_ratios)\n        bbox_idxs = np.argsort(-bbox_areas)[:5]\n        std_bbox_area = np.median(bbox_areas[bbox_idxs]).item()\n        std_aspect_ratio = np.median(aspect_ratios[bbox_idxs]).item()\n        # Create one sample for every (visual query, response frame) pairs\n        curr_data_samples = []\n        for rf_idx, rf_data in enumerate(annot[\"response_track\"]):\n            rf_bbox = get_bbox_from_data(rf_data)\n            rf_fno = rf_data[\"frame_number\"]\n            rf_path = get_image_name_from_clip_uid(clip_uid, rf_fno)\n            rf_path = osp.join(images_root, rf_path)\n            if not os.path.isfile(rf_path):\n                continue\n            # NOTE: By default, the category_id will be 0 always. This is because there is only\n            # one class, corresponding to the right match. Within detectron2, the unmatched\n            # bbox proposals will automatically be set to 1, the background class.\n            category_id = 0\n            # Is aspect ratio correction needed?\n            actual_width, actual_height = imagesize.get(rf_path)\n            rf_width = rf_data[\"original_width\"]\n            rf_height = rf_data[\"original_height\"]\n            response_arc = False\n            if (rf_width, rf_height) != (actual_width, actual_height):\n                response_arc = True\n                print(\"=======> RF needs aspect ratio correction\")\n            # Clean dataset\n            bbox_area = rf_data[\"width\"] * rf_data[\"height\"]\n            aspect_ratio = float(rf_data[\"width\"]) / float(rf_data[\"height\"] + 1e-10)\n            clean = True\n            if clean and (bbox_aspect_ratio_range is not None):\n                ratio = aspect_ratio / (std_aspect_ratio + 1e-10)\n                clean = (\n                    bbox_aspect_ratio_range[0] <= ratio <= bbox_aspect_ratio_range[1]\n                )\n            if clean and (bbox_area_ratio_range is not None):\n                ratio = bbox_area / (std_bbox_area + 1e-10)\n                clean = bbox_area_ratio_range[0] <= ratio <= bbox_area_ratio_range[1]\n            if not clean:\n                continue\n\n            curr_data_samples.append(\n                {\n                    \"image_id\": get_image_id_from_data(annot, annot_ix, rf_idx),\n                    \"file_name\": rf_path,\n                    \"info\": {\n                        \"aspect_ratio\": aspect_ratio,\n                        \"bbox_area\": bbox_area,\n                        \"std_aspect_ratio\": std_aspect_ratio,\n                        \"std_bbox_area\": std_bbox_area,\n                    },\n                    \"width\": rf_width,\n                    \"height\": rf_height,\n                    \"incorrect_aspect_ratio\": response_arc,\n                    \"annotations\": [\n                        {\n                            \"bbox\": rf_bbox,\n                            \"bbox_mode\": BoxMode.XYXY_ABS,\n                            \"category_id\": category_id,\n                        }\n                    ],\n                    \"reference\": {\n                        \"file_name\": vc_path,\n                        \"width\": vc_width,\n                        \"height\": vc_height,\n                        \"incorrect_aspect_ratio\": vc_arc,\n                        \"annotations\": [\n                            {\n                                \"bbox\": vc_bbox,\n                                \"bbox_mode\": BoxMode.XYXY_ABS,\n                                \"textual_name\": annot[\"object_title\"],\n                            }\n                        ],\n                    },\n                }\n            )\n        data_samples += curr_data_samples\n\n        # Optionally, augment dataset by creating (response frame, response frame) pairs\n        if not perform_response_augmentation:\n            continue\n        ## Get a list of good response frames to serve as dummy visual queries.\n        ## A good response frame is one that is clean according to bbox ratio criteria.\n        clean_response_frames = []\n        for rf_idx, rf_data in enumerate(annot[\"response_track\"]):\n            rf_bbox = get_bbox_from_data(rf_data)\n            rf_fno = rf_data[\"frame_number\"]\n            rf_path = get_image_name_from_clip_uid(clip_uid, rf_fno)\n            rf_path = osp.join(images_root, rf_path)\n            if not os.path.isfile(rf_path):\n                continue\n            # Is aspect ratio correction needed?\n            actual_width, actual_height = imagesize.get(rf_path)\n            rf_width = rf_data[\"original_width\"]\n            rf_height = rf_data[\"original_height\"]\n            response_arc = False\n            if (rf_width, rf_height) != (actual_width, actual_height):\n                response_arc = True\n                print(\"=======> RF needs aspect ratio correction\")\n            bbox_area = rf_data[\"width\"] * rf_data[\"height\"]\n            aspect_ratio = float(rf_data[\"width\"]) / float(rf_data[\"height\"] + 1e-10)\n            clean = True\n            if clean:\n                ratio = aspect_ratio / (std_aspect_ratio + 1e-10)\n                clean = 0.85 <= ratio <= (1.0 / 0.85)\n            if clean:\n                ratio = bbox_area / (std_bbox_area + 1e-10)\n                clean = 0.50 <= ratio <= (1.0 / 0.5)\n            if not clean:\n                continue\n\n            clean_response_frames.append(\n                {\n                    \"file_name\": rf_path,\n                    \"width\": rf_width,\n                    \"height\": rf_height,\n                    \"incorrect_aspect_ratio\": response_arc,\n                    \"annotations\": [\n                        {\n                            \"bbox\": rf_bbox,\n                            \"bbox_mode\": BoxMode.XYXY_ABS,\n                            \"textual_name\": annot[\"object_title\"],\n                        }\n                    ],\n                }\n            )\n        random.shuffle(clean_response_frames)\n        clean_response_frames = clean_response_frames[:augmentation_limit]\n\n        ## Add new data with augmented samples\n        for ds in curr_data_samples:\n            for crf in clean_response_frames:\n                ds = copy.deepcopy(ds)\n                ds[\"reference\"] = crf\n                data_samples.append(ds)\n\n    return data_samples\n"
  },
  {
    "path": "VQ2D/vq2d/baselines/feature_retrieval.py",
    "content": "from typing import Any, Dict, Sequence, List\n\nimport cv2\nimport numpy as np\nimport torch\nfrom detectron2.engine import DefaultPredictor\nfrom einops import rearrange, asnumpy\n\nfrom ..structures import BBox\nfrom .utils import extract_window_with_context\n\n\ndef perform_retrieval(\n    video_reader: Any,\n    visual_crop: Dict[str, Any],\n    query_frame: int,\n    cached_bboxes: List[BBox],\n    cached_scores: List[float],\n    recency_factor: float = 1.0,  # Search only within the most recent frames.\n    subsampling_factor: float = 1.0,  # Search only within a subsampled set of frames.\n    visualize: bool = False,\n    reference_pad: int = 16,\n    reference_size: int = 256,\n):\n    \"\"\"\n    Given a visual crop and frames from a clip, retrieve the bounding box proposal\n    from each frame that is most similar to the visual crop.\n    \"\"\"\n    vc_fno = visual_crop[\"frame_number\"]\n    owidth, oheight = visual_crop[\"original_width\"], visual_crop[\"original_height\"]\n\n    # Load visual crop frame\n    reference = video_reader[vc_fno]  # RGB format\n    ## Resize visual crop if stored aspect ratio was incorrect\n    if (reference.shape[0] != oheight) or (reference.shape[1] != owidth):\n        reference = cv2.resize(reference, (owidth, oheight))\n    reference = torch.as_tensor(rearrange(reference, \"h w c -> () c h w\"))\n    reference = reference.float()\n    ref_bbox = (\n        visual_crop[\"x\"],\n        visual_crop[\"y\"],\n        visual_crop[\"x\"] + visual_crop[\"width\"],\n        visual_crop[\"y\"] + visual_crop[\"height\"],\n    )\n    reference = extract_window_with_context(\n        reference,\n        ref_bbox,\n        reference_pad,\n        size=reference_size,\n        pad_value=125,\n    )\n    reference = rearrange(asnumpy(reference.byte()), \"() c h w -> h w c\")\n    # Define search window\n    search_window = list(range(0, query_frame))\n    ## Pick recent k% of frames\n    window_size = int(round(len(search_window) * recency_factor))\n    if len(search_window[-window_size:]) > 0:\n        search_window = search_window[-window_size:]\n    ## Subsample only k% of frames\n    window_size = len(search_window)\n    idxs_to_sample = np.linspace(\n        0, window_size - 1, int(subsampling_factor * window_size)\n    ).astype(int)\n    if len(idxs_to_sample) > 0:\n        search_window = [search_window[i] for i in idxs_to_sample]\n\n    # Gather predictions\n    ret_bboxes = [cached_bboxes[s] for s in search_window]\n    ret_scores = [cached_scores[s] for s in search_window]\n    ret_imgs = (\n        [cv2.resize(video_reader[s], (owidth, oheight)) for s in search_window]\n        if visualize\n        else []\n    )\n    return ret_bboxes, ret_scores, ret_imgs, reference\n"
  },
  {
    "path": "VQ2D/vq2d/baselines/predictor.py",
    "content": "from typing import Any, Dict, List, Sequence\n\nimport numpy as np\nimport torch\nfrom detectron2.engine import DefaultPredictor\n\n\nclass SiamPredictor(DefaultPredictor):\n    def __call__(\n        self,\n        original_images: Sequence[np.ndarray],\n        visual_crops: Sequence[np.ndarray],\n    ) -> List[Dict[str, Any]]:\n        \"\"\"\n        Args:\n            original_images (np.ndarray): a list of images of shape (H, W, C) (in BGR order).\n            visual_crops (np.ndarray): a list of images of shape (H, W, C) (in BGR order)\n\n        Returns:\n            predictions (list[dict]):\n                the output of the model for a list of images.\n                See :doc:`/tutorials/models` for details about the format.\n        \"\"\"\n        with torch.no_grad():  # https://github.com/sphinx-doc/sphinx/issues/4258\n            # Apply pre-processing to image.\n            inputs = []\n            for original_image, visual_crop in zip(original_images, visual_crops):\n                if self.input_format == \"RGB\":\n                    # whether the model expects BGR inputs or RGB\n                    original_image = original_image[:, :, ::-1]\n                    visual_crop = visual_crop[:, :, ::-1]\n                height, width = original_image.shape[:2]\n                image = self.aug.get_transform(original_image).apply_image(\n                    original_image\n                )\n                image = torch.as_tensor(image.astype(\"float32\").transpose(2, 0, 1))\n                reference = torch.as_tensor(\n                    visual_crop.astype(\"float32\").transpose(2, 0, 1)\n                )\n                inputs.append(\n                    {\n                        \"image\": image,\n                        \"height\": height,\n                        \"width\": width,\n                        \"reference\": reference,\n                    }\n                )\n            predictions = self.model(inputs)\n            return predictions\n"
  },
  {
    "path": "VQ2D/vq2d/baselines/utils.py",
    "content": "from typing import Any, Dict, List, Sequence, Tuple, Union\n\nimport cv2\nimport numpy as np\nimport torch\nimport torch.nn as nn\nimport torchvision.models as tmodels\nfrom einops import rearrange\n\nNumeric = Union[int, float]\n\nfrom ..constants import (\n    CLIP_NAME_PATTERN,\n    IMAGE_NAME_PATTERN,\n)\nfrom ..structures import BBox\n\n\ndef convert_image_np2torch(image: np.ndarray) -> torch.Tensor:\n    \"\"\"\n    image - (H, W, 3) numpy array\n    \"\"\"\n    mean = torch.Tensor([[[0.485, 0.456, 0.406]]])\n    std = torch.Tensor([[[0.229, 0.224, 0.225]]])\n    image = torch.from_numpy(image).float() / 255.0\n    image = (image - mean) / std\n    image = rearrange(image, \"h w c -> () c h w\")\n    return image\n\n\ndef convert_annot_to_bbox(annot: Dict[str, Any]) -> BBox:\n    return BBox(\n        annot[\"frame_number\"],\n        annot[\"x\"],\n        annot[\"y\"],\n        annot[\"x\"] + annot[\"width\"],\n        annot[\"y\"] + annot[\"height\"],\n    )\n\n\ndef get_clip_name_from_clip_uid(clip_uid: str) -> str:\n    return CLIP_NAME_PATTERN.format(clip_uid)\n\n\ndef get_image_name_from_clip_uid(clip_uid: str, fno: int) -> str:\n    return IMAGE_NAME_PATTERN.format(clip_uid, fno + 1)\n\n\ndef create_similarity_network(pretrained: bool = True) -> nn.Sequential:\n    resnet50 = tmodels.resnet50(pretrained=pretrained)\n    net = nn.Sequential(\n        resnet50.conv1,\n        resnet50.bn1,\n        resnet50.relu,\n        resnet50.maxpool,\n        resnet50.layer1,\n        resnet50.layer2,\n        resnet50.layer3,\n        resnet50.layer4,\n        resnet50.avgpool,\n        nn.Flatten(),\n    )\n\n    return net\n\n\ndef extract_window_with_context(\n    image: torch.Tensor,\n    bbox: Sequence[Union[int, float]],\n    p: int = 16,\n    size: int = 256,\n    pad_value: int = 0,\n) -> torch.Tensor:\n    \"\"\"\n    Extracts region from a bounding box in the image with some context padding.\n\n    Arguments:\n        image - (1, c, h, w) Tensor\n        bbox - bounding box specifying (x1, y1, x2, y2)\n        p - number of pixels of context to include around window\n        size - final size of the window\n        pad_value - value of pixels padded\n    \"\"\"\n    H, W = image.shape[2:]\n    bbox = tuple([int(x) for x in bbox])\n    x1, y1, x2, y2 = bbox\n    x1 = max(x1 - p, 0)\n    y1 = max(y1 - p, 0)\n    x2 = min(x2 + p, W)\n    y2 = min(y2 + p, H)\n    window = image[:, :, y1:y2, x1:x2]\n    H, W = window.shape[2:]\n    # Zero pad and resize\n    left_pad = 0\n    right_pad = 0\n    top_pad = 0\n    bot_pad = 0\n    if H > W:\n        left_pad = (H - W) // 2\n        right_pad = (H - W) - left_pad\n    elif H < W:\n        top_pad = (W - H) // 2\n        bot_pad = (W - H) - top_pad\n    if H != W:\n        window = nn.functional.pad(\n            window, (left_pad, right_pad, top_pad, bot_pad), value=pad_value\n        )\n    window = nn.functional.interpolate(\n        window, size=size, mode=\"bilinear\", align_corners=False\n    )\n\n    return window\n\n\ndef get_bbox_from_data(data: Dict[str, Any]) -> List[Numeric]:\n    return [data[\"x\"], data[\"y\"], data[\"x\"] + data[\"width\"], data[\"y\"] + data[\"height\"]]\n\n\ndef get_image_id_from_data(data: Dict[str, Any], data_ix: int, rno: int) -> str:\n    \"\"\"\n    Defines a unique image id for a given VQ data point.\n    \"\"\"\n    clip_uid = data[\"clip_uid\"]\n    qset = data[\"query_set\"]\n    return f\"clip-uid_{clip_uid}_idx_{data_ix}_query-set_{qset}_response-idx_{rno}\"\n\n\ndef resize_if_needed(image: np.uint8, shape: Tuple[int, int]) -> np.ndarray:\n    \"\"\"\n    shape - (width, height) tuple\n    \"\"\"\n    width, height = shape\n    if image.shape[0] != height or image.shape[1] != width:\n        image = cv2.resize(image, shape, interpolation=cv2.INTER_LINEAR)\n    return image\n"
  },
  {
    "path": "VQ2D/vq2d/config.yaml",
    "content": "# Hyperparameter sweep with nevergrad\n\ndata:\n  data_root: dataset/clips\n  annot_root: dataset/vq_splits\n  video_bbox_root: dataset/bboxes\n  split: val\n  fps: 5.0\n  subsample: False\n  num_processes: 12\n  num_processes_per_gpu: 2\n  batch_size: 12\n  debug_mode: False\n  debug_count: 5\n  rcnn_batch_size: 8\n\nretrieval:\n  rotate_crop: True\n\nsignals:\n  smoothing_sigma: 5\n  distance: 25\n  width: 3\n  prominence: 0.2\n  wlen: 50\n  peak_similarity_thresh: 0.0\n\nlogging:\n  visualize: False\n  save_dir: \"visualizations\"\n  stats_save_path: \"outputs.json.gz\"\n\nmodel:\n  config_path: \"config.yaml\"\n  checkpoint_path: \"model.pth\"\n  score_thresh: 0.0\n  subsampling_factor: 1.0\n  recency_factor: 1.0\n  cache_root: \"\"\n  reference_pad: 16\n  reference_size: 256\n\ntracker:\n  type: \"kys\" # Options: [ kys | pfilter ]\n  pfilter:\n    n_particles: 150\n    resample_proportion: 1.0\n    sim_thresh: 0.85\n    use_deep_similarity: True\n    debug: False\n  kys_tracker:\n    debug: False\n    lost_thresh: 0.05\n    model_path: \"pretrained_models/kys.pth\"\n"
  },
  {
    "path": "VQ2D/vq2d/constants.py",
    "content": "IMAGE_NAME_PATTERN = \"{}/frame_{:07d}.jpg\"\nCLIP_NAME_PATTERN = \"{}.mp4\"\nBBOX_NAME_PATTERN = \"{}/{:07d}.npz\"\nDATASET_FILE_TEMPLATE = \"{}_annot.json.gz\"\n"
  },
  {
    "path": "VQ2D/vq2d/metrics/__init__.py",
    "content": "from .metrics import (\n    compute_visual_query_metrics,\n    SuccessMetrics,\n    TrackingMetrics,\n    TemporalDetection,\n    SpatioTemporalDetection,\n)\n\n\n__all__ = [\n    \"SuccessMetrics\",\n    \"TrackingMetrics\",\n    \"TemporalDetection\",\n    \"SpatioTemporalDetection\",\n    \"compute_visual_query_metrics\",\n]\n"
  },
  {
    "path": "VQ2D/vq2d/metrics/metrics.py",
    "content": "from collections import OrderedDict\nfrom typing import List, Dict, Tuple\n\nimport numpy as np\n\nfrom .spatio_temporal_metrics import SpatioTemporalDetection\nfrom .success_metrics import SuccessMetrics\nfrom .temporal_metrics import TemporalDetection\nfrom .tracking_metrics import TrackingMetrics\nfrom .utils import BBox, ResponseTrack\n\n\nMETRIC_FNS = [\n    lambda gt, pred: TemporalDetection(gt, pred).get_metrics(),\n    lambda gt, pred: SpatioTemporalDetection(gt, pred).get_metrics(),\n    lambda gt, pred: TrackingMetrics(gt, pred, ignore_iou_averaging=True).get_metrics(),\n    lambda gt, pred: SuccessMetrics(gt, pred, ignore_iou_averaging=True).get_metrics(),\n]\n\n\ndef compute_visual_query_metrics(\n    predicted_response_track: List[List[ResponseTrack]],\n    ground_truth_response_track: List[ResponseTrack],\n    visual_crop_boxes: List[BBox],\n    accessed_frames_in_clip: List[int] = None,\n    total_frames_in_clip: List[int] = None,\n    area_ranges: Dict[str, List[int]] = {\n        \"all\": [0 ** 2, 1e5 ** 2],\n        \"medium\": [32 ** 2, 96 ** 2],\n        \"large\": [96 ** 2, 1e5 ** 2],\n    },\n    vc_rt_pairings: Dict[str, Tuple[str, str]] = {\n        \"all\": (\"all\", \"all\"),\n    },\n) -> Dict[str, float]:\n    \"\"\"\n    Compute model performance on the visual query task. Includes the following metrics:\n        * Temporal AP\n        * SpatioTemporal AP\n        * Success\n        * Tracking % recovery\n        * Search efficiency\n    \"\"\"\n\n    # Calculate visual-crop areas\n    vc_areas = np.array(\n        [\n            abs(vc_bbox.x2 - vc_bbox.x1) * abs(vc_bbox.y2 - vc_bbox.y1)\n            for vc_bbox in visual_crop_boxes\n        ]\n    )\n    # Calculate response-track max areas\n    rt_areas = []\n    for rt in ground_truth_response_track:\n        area = (\n            np.array(\n                [\n                    abs(rt_bbox.x2 - rt_bbox.x1) * abs(rt_bbox.y2 - rt_bbox.y1)\n                    for rt_bbox in rt.bboxes\n                ]\n            )\n            .max()\n            .item()\n        )\n        rt_areas.append(area)\n    rt_areas = np.array(rt_areas)\n\n    # Calculate metrics for each vc_rt_pairing\n    pair_metrics = OrderedDict()\n    for pair_name, (vc_cat, rt_cat) in vc_rt_pairings.items():\n        vc_range = area_ranges[vc_cat]\n        rt_range = area_ranges[rt_cat]\n        # Get data points satifying the pairing criterion\n        mask = (\n            (vc_areas >= vc_range[0])\n            & (vc_areas < vc_range[1])\n            & (rt_areas >= rt_range[0])\n            & (rt_areas < rt_range[1])\n        )\n        # Ignore pairing if there are not valid data points\n        if np.count_nonzero(mask) == 0:\n            continue\n        # Calculate metrics\n        pred_rt = [predicted_response_track[i] for i, cond in enumerate(mask) if cond]\n        gt_rt = [ground_truth_response_track[i] for i, cond in enumerate(mask) if cond]\n        if accessed_frames_in_clip is not None:\n            acc_frames = [\n                accessed_frames_in_clip[i] for i, cond in enumerate(mask) if cond\n            ]\n            tot_frames = [\n                total_frames_in_clip[i] for i, cond in enumerate(mask) if cond\n            ]\n        metrics = OrderedDict()\n        for metric_fn in METRIC_FNS:\n            metrics.update(metric_fn(gt_rt, pred_rt))\n        if accessed_frames_in_clip is not None and len(acc_frames) > 0:\n            metrics[\"Search efficiency (%)\"] = (\n                1 - np.array(acc_frames).astype(np.float32) / np.array(tot_frames)\n            ).mean() * 100.0\n        pair_metrics[pair_name] = metrics\n\n    return pair_metrics\n"
  },
  {
    "path": "VQ2D/vq2d/metrics/spatio_temporal_metrics.py",
    "content": "from collections import OrderedDict\nfrom typing import Dict, List, Sequence\n\nimport numpy as np\nimport pandas as pd\n\nfrom ..structures import ResponseTrack\nfrom .utils import PRINT_FORMAT\nfrom .utils import spatio_temporal_iou, interpolated_prec_rec\n\n\n# These are modified versions of the ActivityNet evaluation toolkit\n# https://github.com/activitynet/ActivityNet\n\n\nclass SpatioTemporalDetection(object):\n\n    metric_uuid: str = \"SpatioTemporal AP\"\n    iou_thresholds: np.ndarray = np.array([0.25, 0.5, 0.75, 0.95])\n    ious_to_report: List[float] = [0.25]\n\n    def __init__(\n        self,\n        ground_truth: List[ResponseTrack],\n        prediction: List[List[ResponseTrack]],\n        ignore_iou_averaging: bool = False,\n    ):\n        self.ap = None\n        self.ground_truth = self._import_ground_truth(ground_truth)\n        self.prediction = self._import_prediction(prediction)\n        self.ignore_iou_averaging = ignore_iou_averaging\n\n    def _import_ground_truth(self, ground_truth: List[ResponseTrack]) -> pd.DataFrame:\n        \"\"\"Converts input ground-truth to appropriate format.\"\"\"\n        video_lst, response_track_lst = [], []\n        for i, gt in enumerate(ground_truth):\n            video_lst.append(i)\n            response_track_lst.append(gt)\n\n        ground_truth = pd.DataFrame(\n            {\n                \"video-id\": video_lst,\n                \"response_track\": response_track_lst,\n            }\n        )\n        return ground_truth\n\n    def _import_prediction(self, prediction: List[List[ResponseTrack]]) -> pd.DataFrame:\n        \"\"\"Converts input predictions to appropriate format.\"\"\"\n        video_lst, response_track_lst, score_lst = [], [], []\n        for i, preds in enumerate(prediction):\n            # Iterate over each prediction\n            for pred in preds:\n                score = pred.score\n                video_lst.append(i)\n                response_track_lst.append(pred)\n                score_lst.append(score)\n        prediction = pd.DataFrame(\n            {\n                \"video-id\": video_lst,\n                \"response_track\": response_track_lst,\n                \"score\": score_lst,\n            }\n        )\n        return prediction\n\n    def evaluate(self) -> None:\n        \"\"\"Evaluates a prediction file. For the detection task we measure the\n        interpolated average precision to measure the performance of a\n        method.\n        \"\"\"\n        self.ap = compute_average_precision_detection(\n            self.ground_truth, self.prediction, self.iou_thresholds\n        )\n\n        self.average_ap = self.ap.mean().item()\n\n    def get_metrics(self) -> Dict[str, float]:\n        self.evaluate()\n        metrics = OrderedDict()\n        avg_suffix = f\"@ IoU={self.iou_thresholds[0]:.2f}:{self.iou_thresholds[-1]:.2f}\"\n        if not self.ignore_iou_averaging:\n            metrics[PRINT_FORMAT.format(self.metric_uuid, avg_suffix)] = self.average_ap\n        for tiou_idx, tiou_thr in enumerate(self.iou_thresholds):\n            if tiou_thr not in self.ious_to_report:\n                continue\n            metrics[\n                PRINT_FORMAT.format(self.metric_uuid, f\"@ IoU={tiou_thr:.2f}\")\n            ] = self.ap[tiou_idx].item()\n        return metrics\n\n\ndef compute_average_precision_detection(\n    ground_truth: pd.DataFrame,\n    prediction: pd.DataFrame,\n    iou_thresholds: Sequence[float] = np.linspace(0.5, 0.95, 10),\n) -> np.ndarray:\n    \"\"\"Compute average precision (detection task) between ground truth and\n    predictions data frames. If multiple predictions occurs for the same\n    predicted segment, only the one with highest score is matches as\n    true positive. This code is greatly inspired by Pascal VOC devkit.\n    Parameters\n    ----------\n    ground_truth : df\n        Data frame containing the ground truth instances.\n        Required fields: ['video-id', 'response_track']\n    prediction : df\n        Data frame containing the prediction instances.\n        Required fields: ['video-id, 'response_track', 'score']\n    iou_thresholds : 1darray, optional\n        Spatio-temporal intersection over union threshold.\n    Outputs\n    -------\n    ap : float\n        Average precision score.\n    \"\"\"\n    ap = np.zeros(len(iou_thresholds))\n    if prediction.empty:\n        return ap\n\n    npos = float(len(ground_truth))\n    lock_gt = np.ones((len(iou_thresholds), len(ground_truth))) * -1\n    # Sort predictions by decreasing score order.\n    sort_idx = prediction[\"score\"].values.argsort()[::-1]\n    prediction = prediction.loc[sort_idx].reset_index(drop=True)\n\n    # Initialize true positive and false positive vectors.\n    tp = np.zeros((len(iou_thresholds), len(prediction)))\n    fp = np.zeros((len(iou_thresholds), len(prediction)))\n\n    # Adaptation to query faster\n    ground_truth_gbvn = ground_truth.groupby(\"video-id\")\n\n    # Assigning true positive to truly grount truth instances.\n    for idx, this_pred in prediction.iterrows():\n\n        try:\n            # Check if there is at least one ground truth in the video associated.\n            ground_truth_videoid = ground_truth_gbvn.get_group(this_pred[\"video-id\"])\n        except Exception as e:\n            fp[:, idx] = 1\n            continue\n\n        this_gt = ground_truth_videoid.reset_index()\n        tiou_arr = spatio_temporal_iou(\n            this_pred[\"response_track\"], this_gt[\"response_track\"].values\n        )\n        # We would like to retrieve the predictions with highest tiou score.\n        tiou_sorted_idx = tiou_arr.argsort()[::-1]\n        for tidx, tiou_thr in enumerate(iou_thresholds):\n            for jdx in tiou_sorted_idx:\n                if tiou_arr[jdx] < tiou_thr:\n                    fp[tidx, idx] = 1\n                    break\n                if lock_gt[tidx, this_gt.loc[jdx][\"index\"]] >= 0:\n                    continue\n                # Assign as true positive after the filters above.\n                tp[tidx, idx] = 1\n                lock_gt[tidx, this_gt.loc[jdx][\"index\"]] = idx\n                break\n\n            if fp[tidx, idx] == 0 and tp[tidx, idx] == 0:\n                fp[tidx, idx] = 1\n\n    tp_cumsum = np.cumsum(tp, axis=1).astype(np.float)\n    fp_cumsum = np.cumsum(fp, axis=1).astype(np.float)\n    recall_cumsum = tp_cumsum / npos\n\n    precision_cumsum = tp_cumsum / (tp_cumsum + fp_cumsum)\n\n    for tidx in range(len(iou_thresholds)):\n        ap[tidx] = interpolated_prec_rec(\n            precision_cumsum[tidx, :], recall_cumsum[tidx, :]\n        )\n\n    return ap\n"
  },
  {
    "path": "VQ2D/vq2d/metrics/success_metrics.py",
    "content": "from collections import OrderedDict\nfrom typing import Dict, List, Sequence\n\nimport numpy as np\nimport pandas as pd\n\nfrom ..structures import ResponseTrack\nfrom .utils import PRINT_FORMAT\nfrom .utils import spatio_temporal_iou\n\n\nEPS = 1e-10\n\n\nclass SuccessMetrics(object):\n\n    metric_uuid: str = \"Success\"\n    iou_thresholds: np.ndarray = np.array([0.05, 0.1, 0.2])\n    ious_to_report: List[float] = [0.05]\n\n    def __init__(\n        self,\n        ground_truth: List[ResponseTrack],\n        prediction: List[List[ResponseTrack]],\n        mode: str = \"take_max_score\",\n        ignore_iou_averaging: bool = False,\n    ):\n        self.ap = None\n        self.ground_truth = self._import_ground_truth(ground_truth)\n        self.prediction = self._import_prediction(prediction)\n        assert mode in [\"take_max_stiou\", \"take_max_score\"]\n        self.mode = mode\n        if mode == \"take_max_stiou\":\n            self.suffix = \"(max iou)\"\n        elif mode == \"take_max_score\":\n            self.suffix = \"(max scr)\"\n        self.ignore_iou_averaging = ignore_iou_averaging\n\n    def _import_ground_truth(self, ground_truth: List[ResponseTrack]) -> pd.DataFrame:\n        \"\"\"Converts input ground-truth to appropriate format.\"\"\"\n        video_lst, response_track_lst = [], []\n        for i, gt in enumerate(ground_truth):\n            video_lst.append(i)\n            response_track_lst.append(gt)\n\n        ground_truth = pd.DataFrame(\n            {\n                \"video-id\": video_lst,\n                \"response_track\": response_track_lst,\n            }\n        )\n        return ground_truth\n\n    def _import_prediction(self, prediction: List[List[ResponseTrack]]) -> pd.DataFrame:\n        \"\"\"Converts input predictions to appropriate format.\"\"\"\n        video_lst, response_track_lst, score_lst = [], [], []\n        for i, preds in enumerate(prediction):\n            # Iterate over each prediction\n            for pred in preds:\n                score = pred.score\n                video_lst.append(i)\n                response_track_lst.append(pred)\n                score_lst.append(score)\n        prediction = pd.DataFrame(\n            {\n                \"video-id\": video_lst,\n                \"response_track\": response_track_lst,\n                \"score\": score_lst,\n            }\n        )\n        return prediction\n\n    def evaluate(self) -> None:\n        \"\"\"Evaluates a prediction file. For the detection task we measure the\n        interpolated average precision to measure the performance of a\n        method.\n        \"\"\"\n        self.success = compute_success(\n            self.ground_truth, self.prediction, self.iou_thresholds, mode=self.mode\n        )\n        self.average_success = self.success.mean().item()\n\n    def get_metrics(self) -> Dict[str, float]:\n        self.evaluate()\n        metrics = OrderedDict()\n        avg_suffix = f\"@ IoU={self.iou_thresholds[0]:.2f}:{self.iou_thresholds[-1]:.2f}\"\n        metric_name = \"{} {}\".format(self.metric_uuid, self.suffix)\n        if not self.ignore_iou_averaging:\n            metrics[PRINT_FORMAT.format(metric_name, avg_suffix)] = self.average_success\n        for tidx, iou_thr in enumerate(self.iou_thresholds):\n            if iou_thr not in self.ious_to_report:\n                continue\n            metrics[\n                PRINT_FORMAT.format(metric_name, f\"@ IoU={iou_thr:.2f}\")\n            ] = self.success[tidx].item()\n        return metrics\n\n\ndef compute_success(\n    ground_truth: pd.DataFrame,\n    prediction: pd.DataFrame,\n    iou_thresholds: Sequence[float] = np.linspace(0.5, 0.95, 10),\n    mode: str = \"take_max_stiou\",\n) -> np.ndarray:\n    \"\"\"Compute success %, i.e., the % of cases where there is sufficient overlap\n    between ground truth and predictions data frames. If multiple predictions\n    occurs for the same predicted segment, only the one with highest score / stiou is\n    matched as true positive. This code is greatly inspired by Pascal VOC devkit.\n    Parameters\n    ----------\n    ground_truth : df\n        Data frame containing the ground truth instances.\n        Required fields: ['video-id', 'response_track']\n    prediction : df\n        Data frame containing the prediction instances.\n        Required fields: ['video-id, 'response_track', 'score']\n    iou_thresholds : 1darray, optional\n        Spatio-temporal intersection over union threshold.\n    Outputs\n    -------\n    success : float\n        Success % score\n    \"\"\"\n    assert mode in [\"take_max_stiou\", \"take_max_score\"]\n    success = np.zeros(len(iou_thresholds))\n    if prediction.empty:\n        return {\"Success\": success}\n\n    # Sort predictions by decreasing score order.\n    sort_idx = prediction[\"score\"].values.argsort()[::-1]\n    prediction = prediction.loc[sort_idx].reset_index(drop=True)\n\n    # Initialize the iou sum, track sum, track count arrays\n    ## st_iou - spatio-temporal IoU between the predicted and ground-truth RTs\n    ## iou_sum - sum of IoUs over the accurately tracked bboxes for an RT\n    ## track_acc_sum - # of accurately tracked bboxes for an RT\n    ## track_total_count - # of total bboxes in the ground-truth RT\n    st_iou = np.zeros((len(iou_thresholds), len(prediction)))\n    track_success = np.zeros((len(iou_thresholds), len(prediction)))\n\n    # Adaptation to query faster\n    ground_truth_gbvn = ground_truth.groupby(\"video-id\")\n\n    for idx, this_pred in prediction.iterrows():\n\n        try:\n            # Check if there is at least one ground truth in the video associated.\n            ground_truth_videoid = ground_truth_gbvn.get_group(this_pred[\"video-id\"])\n        except Exception as e:\n            # Ignore false positives\n            continue\n\n        this_gt = ground_truth_videoid.reset_index()\n        # Assuming that there is only 1 ground-truth per video\n        stiou_arr = spatio_temporal_iou(\n            this_pred[\"response_track\"], this_gt[\"response_track\"].values\n        )[0]\n\n        # Get accuracy and count over the \"accurately tracked\" frames\n        for tidx, iou_thr in enumerate(iou_thresholds):\n            if stiou_arr >= iou_thr:\n                track_success[tidx, idx] = 1\n            st_iou[tidx, idx] = stiou_arr\n\n    # For each ground-truth, pick the prediction with highest ST-IoU or Score\n    ## Group predictions by the video-id\n    final_track_success = [[] for _ in iou_thresholds]\n    prediction_gbvn = prediction.groupby(\"video-id\")\n    for idx, this_gt in ground_truth.iterrows():\n        prediction_videoid = prediction_gbvn.get_group(this_gt[\"video-id\"])\n        pred_idxs = prediction_videoid.index.tolist()\n        for tidx, iou_thr in enumerate(iou_thresholds):\n            # Pick the corresponding max ST-IoU detection.\n            if mode == \"take_max_stiou\":\n                max_idx = st_iou[tidx, pred_idxs].argmax().item()\n            elif mode == \"take_max_score\":\n                max_idx = prediction_videoid[\"score\"].values.argmax().item()\n            max_idx = pred_idxs[max_idx]  # Index into pred_idxs\n            final_track_success[tidx].append(track_success[tidx, max_idx])\n\n    for tidx, iou_thr in enumerate(iou_thresholds):\n        track_success = np.array(final_track_success[tidx])\n        success[tidx] = np.mean(track_success) * 100.0\n\n    return success\n"
  },
  {
    "path": "VQ2D/vq2d/metrics/temporal_metrics.py",
    "content": "from collections import OrderedDict\nfrom typing import Dict, List, Sequence\n\nimport numpy as np\nimport pandas as pd\n\nfrom ..structures import ResponseTrack\nfrom .utils import PRINT_FORMAT\nfrom .utils import segment_iou, interpolated_prec_rec\n\n\n# These are modified versions of the ActivityNet evaluation toolkit\n# https://github.com/activitynet/ActivityNet\n\n\nclass TemporalDetection(object):\n\n    metric_uuid: str = \"Temporal AP\"\n    tiou_thresholds: np.ndarray = np.array([0.25, 0.5, 0.75, 0.95])\n    tious_to_report: List[float] = [0.25]\n\n    def __init__(\n        self,\n        ground_truth: List[ResponseTrack],\n        prediction: List[List[ResponseTrack]],\n        ignore_iou_averaging: bool = False,\n    ):\n        self.ap = None\n        self.ground_truth = self._import_ground_truth(ground_truth)\n        self.prediction = self._import_prediction(prediction)\n        self.ignore_iou_averaging = ignore_iou_averaging\n\n    def _import_ground_truth(self, ground_truth: List[ResponseTrack]) -> pd.DataFrame:\n        \"\"\"Converts input ground-truth to appropriate format.\"\"\"\n        video_lst, t_start_lst, t_end_lst = [], [], []\n        for i, gt in enumerate(ground_truth):\n            video_lst.append(i)\n            t_start_lst.append(gt.temporal_extent[0])\n            t_end_lst.append(gt.temporal_extent[1])\n\n        ground_truth = pd.DataFrame(\n            {\n                \"video-id\": video_lst,\n                \"t-start\": t_start_lst,\n                \"t-end\": t_end_lst,\n            }\n        )\n        return ground_truth\n\n    def _import_prediction(self, prediction: List[List[ResponseTrack]]) -> pd.DataFrame:\n        \"\"\"Converts input predictions to appropriate format.\"\"\"\n        video_lst, t_start_lst, t_end_lst, score_lst = [], [], [], []\n        for i, preds in enumerate(prediction):\n            # Iterate over each prediction\n            for pred in preds:\n                assert pred.has_score()\n                video_lst.append(i)\n                t_start_lst.append(pred.temporal_extent[0])\n                t_end_lst.append(pred.temporal_extent[1])\n                score_lst.append(pred.score)\n        prediction = pd.DataFrame(\n            {\n                \"video-id\": video_lst,\n                \"t-start\": t_start_lst,\n                \"t-end\": t_end_lst,\n                \"score\": score_lst,\n            }\n        )\n        return prediction\n\n    def evaluate(self) -> None:\n        \"\"\"Evaluates a prediction file. For the detection task we measure the\n        interpolated mean average precision to measure the performance of a\n        method.\n        \"\"\"\n        self.ap = compute_average_precision_detection(\n            self.ground_truth, self.prediction, self.tiou_thresholds\n        )\n\n        self.average_ap = self.ap.mean().item()\n\n    def get_metrics(self) -> Dict[str, float]:\n        self.evaluate()\n        metrics = OrderedDict()\n        avg_suffix = (\n            f\"@ IoU={self.tiou_thresholds[0]:.2f}:{self.tiou_thresholds[-1]:.2f}\"\n        )\n        if not self.ignore_iou_averaging:\n            metrics[PRINT_FORMAT.format(self.metric_uuid, avg_suffix)] = self.average_ap\n        for tiou_idx, tiou_thr in enumerate(self.tiou_thresholds):\n            if tiou_thr not in self.tious_to_report:\n                continue\n            metrics[\n                PRINT_FORMAT.format(self.metric_uuid, f\"@ IoU={tiou_thr:.2f}\")\n            ] = self.ap[tiou_idx].item()\n        return metrics\n\n\ndef compute_average_precision_detection(\n    ground_truth: pd.DataFrame,\n    prediction: pd.DataFrame,\n    tiou_thresholds: Sequence[float] = np.linspace(0.5, 0.95, 10),\n) -> np.ndarray:\n    \"\"\"Compute average precision (detection task) between ground truth and\n    predictions data frames. If multiple predictions occurs for the same\n    predicted segment, only the one with highest score is matches as\n    true positive. This code is greatly inspired by Pascal VOC devkit.\n    Parameters\n    ----------\n    ground_truth : df\n        Data frame containing the ground truth instances.\n        Required fields: ['video-id', 't-start', 't-end']\n    prediction : df\n        Data frame containing the prediction instances.\n        Required fields: ['video-id, 't-start', 't-end', 'score']\n    tiou_thresholds : 1darray, optional\n        Temporal intersection over union threshold.\n    Outputs\n    -------\n    ap : float\n        Average precision score.\n    \"\"\"\n    ap = np.zeros(len(tiou_thresholds))\n    if prediction.empty:\n        return ap\n\n    npos = float(len(ground_truth))\n    lock_gt = np.ones((len(tiou_thresholds), len(ground_truth))) * -1\n    # Sort predictions by decreasing score order.\n    sort_idx = prediction[\"score\"].values.argsort()[::-1]\n    prediction = prediction.loc[sort_idx].reset_index(drop=True)\n\n    # Initialize true positive and false positive vectors.\n    tp = np.zeros((len(tiou_thresholds), len(prediction)))\n    fp = np.zeros((len(tiou_thresholds), len(prediction)))\n\n    # Adaptation to query faster\n    ground_truth_gbvn = ground_truth.groupby(\"video-id\")\n\n    # Assigning true positive to truly grount truth instances.\n    for idx, this_pred in prediction.iterrows():\n\n        try:\n            # Check if there is at least one ground truth in the video associated.\n            ground_truth_videoid = ground_truth_gbvn.get_group(this_pred[\"video-id\"])\n        except Exception as e:\n            fp[:, idx] = 1\n            continue\n\n        this_gt = ground_truth_videoid.reset_index()\n        tiou_arr = segment_iou(\n            this_pred[[\"t-start\", \"t-end\"]].values, this_gt[[\"t-start\", \"t-end\"]].values\n        )\n        # We would like to retrieve the predictions with highest tiou score.\n        tiou_sorted_idx = tiou_arr.argsort()[::-1]\n        for tidx, tiou_thr in enumerate(tiou_thresholds):\n            for jdx in tiou_sorted_idx:\n                if tiou_arr[jdx] < tiou_thr:\n                    fp[tidx, idx] = 1\n                    break\n                if lock_gt[tidx, this_gt.loc[jdx][\"index\"]] >= 0:\n                    continue\n                # Assign as true positive after the filters above.\n                tp[tidx, idx] = 1\n                lock_gt[tidx, this_gt.loc[jdx][\"index\"]] = idx\n                break\n\n            if fp[tidx, idx] == 0 and tp[tidx, idx] == 0:\n                fp[tidx, idx] = 1\n\n    tp_cumsum = np.cumsum(tp, axis=1).astype(np.float)\n    fp_cumsum = np.cumsum(fp, axis=1).astype(np.float)\n    recall_cumsum = tp_cumsum / npos\n\n    precision_cumsum = tp_cumsum / (tp_cumsum + fp_cumsum)\n\n    for tidx in range(len(tiou_thresholds)):\n        ap[tidx] = interpolated_prec_rec(\n            precision_cumsum[tidx, :], recall_cumsum[tidx, :]\n        )\n\n    return ap\n"
  },
  {
    "path": "VQ2D/vq2d/metrics/tracking_metrics.py",
    "content": "from collections import OrderedDict\nfrom typing import Dict, List, Sequence\n\nimport numpy as np\nimport pandas as pd\n\nfrom ..structures import ResponseTrack\nfrom .utils import PRINT_FORMAT\nfrom .utils import spatio_temporal_iou, spatio_temporal_iou_matches\n\n\nEPS = 1e-10\n\n\nclass TrackingMetrics(object):\n\n    metric_uuid: str = \"Tracking\"\n    iou_thresholds: np.ndarray = np.array([0.5, 0.75, 0.95])\n    ious_to_report: List[float] = [0.5]\n\n    def __init__(\n        self,\n        ground_truth: List[ResponseTrack],\n        prediction: List[List[ResponseTrack]],\n        mode: str = \"take_max_score\",\n        ignore_iou_averaging: bool = False,\n    ):\n        self.ap = None\n        self.ground_truth = self._import_ground_truth(ground_truth)\n        self.prediction = self._import_prediction(prediction)\n        assert mode in [\"take_max_stiou\", \"take_max_score\"]\n        self.mode = mode\n        if mode == \"take_max_stiou\":\n            self.suffix = \"(max iou)\"\n        elif mode == \"take_max_score\":\n            self.suffix = \"(max scr)\"\n        self.ignore_iou_averaging = ignore_iou_averaging\n\n    def _import_ground_truth(self, ground_truth: List[ResponseTrack]) -> pd.DataFrame:\n        \"\"\"Converts input ground-truth to appropriate format.\"\"\"\n        video_lst, response_track_lst = [], []\n        for i, gt in enumerate(ground_truth):\n            video_lst.append(i)\n            response_track_lst.append(gt)\n\n        ground_truth = pd.DataFrame(\n            {\n                \"video-id\": video_lst,\n                \"response_track\": response_track_lst,\n            }\n        )\n        return ground_truth\n\n    def _import_prediction(self, prediction: List[List[ResponseTrack]]) -> pd.DataFrame:\n        \"\"\"Converts input predictions to appropriate format.\"\"\"\n        video_lst, response_track_lst, score_lst = [], [], []\n        for i, preds in enumerate(prediction):\n            # Iterate over each prediction\n            for pred in preds:\n                score = pred.score\n                video_lst.append(i)\n                response_track_lst.append(pred)\n                score_lst.append(score)\n        prediction = pd.DataFrame(\n            {\n                \"video-id\": video_lst,\n                \"response_track\": response_track_lst,\n                \"score\": score_lst,\n            }\n        )\n        return prediction\n\n    def evaluate(self) -> None:\n        \"\"\"Evaluates a prediction file. For the detection task we measure the\n        interpolated average precision to measure the performance of a\n        method.\n        \"\"\"\n        self.tracking_metrics = compute_tracking_metrics(\n            self.ground_truth, self.prediction, self.iou_thresholds, mode=self.mode\n        )\n        self.average_tracking_metrics = {\n            k: v.mean().item() for k, v in self.tracking_metrics.items()\n        }\n\n    def get_metrics(self) -> Dict[str, float]:\n        self.evaluate()\n        metrics = OrderedDict()\n        avg_suffix = f\"@ IoU={self.iou_thresholds[0]:.2f}:{self.iou_thresholds[-1]:.2f}\"\n        for k, v in self.average_tracking_metrics.items():\n            metric_name = \"{} {} {}\".format(self.metric_uuid, k, self.suffix)\n            if not self.ignore_iou_averaging:\n                metrics[PRINT_FORMAT.format(metric_name, avg_suffix)] = v\n            v = self.tracking_metrics[k]\n            for tidx, iou_thr in enumerate(self.iou_thresholds):\n                if iou_thr not in self.ious_to_report:\n                    continue\n                metrics[PRINT_FORMAT.format(metric_name, f\"@ IoU={iou_thr:.2f}\")] = v[\n                    tidx\n                ].item()\n        return metrics\n\n\ndef compute_tracking_metrics(\n    ground_truth: pd.DataFrame,\n    prediction: pd.DataFrame,\n    iou_thresholds: Sequence[float] = np.linspace(0.5, 0.95, 10),\n    mode: str = \"take_max_stiou\",\n) -> Dict[str, np.ndarray]:\n    \"\"\"Compute % frames from the ground truth that were accurately recovered\n    by the predictions. If multiple predictions occurs for the same\n    predicted segment, the one with highest score / stiou is matched as\n    true positive. This code is greatly inspired by Pascal VOC devkit.\n    Parameters\n    ----------\n    ground_truth : df\n        Data frame containing the ground truth instances.\n        Required fields: ['video-id', 'response_track']\n    prediction : df\n        Data frame containing the prediction instances.\n        Required fields: ['video-id, 'response_track', 'score']\n    iou_thresholds : 1darray, optional\n        Spatio-temporal intersection over union threshold.\n    Outputs\n    -------\n    ap : float\n        Average precision score.\n    \"\"\"\n    assert mode in [\"take_max_stiou\", \"take_max_score\"]\n    robustness = np.zeros(len(iou_thresholds))\n    if prediction.empty:\n        return {\"% recovery\": robustness}\n\n    # Sort predictions by decreasing score order.\n    sort_idx = prediction[\"score\"].values.argsort()[::-1]\n    prediction = prediction.loc[sort_idx].reset_index(drop=True)\n\n    # Initialize the iou sum, track sum, track count arrays\n    ## st_iou - spatio-temporal IoU between the predicted and ground-truth RTs\n    ## iou_sum - sum of IoUs over the accurately tracked bboxes for an RT\n    ## track_acc_sum - # of accurately tracked bboxes for an RT\n    ## track_total_count - # of total bboxes in the ground-truth RT\n    st_iou = np.zeros((len(iou_thresholds), len(prediction)))\n    iou_sum = np.zeros((len(iou_thresholds), len(prediction)))\n    track_acc_count = np.zeros((len(iou_thresholds), len(prediction)))\n    track_total_count = np.zeros((len(iou_thresholds), len(prediction)))\n\n    # Adaptation to query faster\n    ground_truth_gbvn = ground_truth.groupby(\"video-id\")\n\n    for idx, this_pred in prediction.iterrows():\n\n        try:\n            # Check if there is at least one ground truth in the video associated.\n            ground_truth_videoid = ground_truth_gbvn.get_group(this_pred[\"video-id\"])\n        except Exception as e:\n            # Ignore false positives\n            continue\n\n        this_gt = ground_truth_videoid.reset_index()\n        # Assuming that there is only 1 ground-truth per video\n        stiou_arr = spatio_temporal_iou(\n            this_pred[\"response_track\"], this_gt[\"response_track\"].values\n        )[0]\n        stiou_matches = spatio_temporal_iou_matches(\n            this_pred[\"response_track\"], this_gt[\"response_track\"].values\n        )[0]\n\n        # Get accuracy and count over the \"accurately tracked\" frames\n        for tidx, iou_thr in enumerate(iou_thresholds):\n            stiou_values = np.array(list(stiou_matches.values()))\n            mask = stiou_values >= iou_thr\n            t_sum = np.count_nonzero(mask)\n            i_sum = stiou_values[mask].sum().item()\n            st_iou[tidx, idx] = stiou_arr\n            iou_sum[tidx, idx] = i_sum\n            track_acc_count[tidx, idx] = t_sum\n            track_total_count[tidx, idx] = this_gt[\"response_track\"].values[0].length\n\n    # For each ground-truth, pick the prediction with highest ST-IoU or Score\n    ## Group predictions by the video-id\n    final_iou_sum = [[] for _ in iou_thresholds]\n    final_track_acc_count = [[] for _ in iou_thresholds]\n    final_track_total_count = [[] for _ in iou_thresholds]\n    prediction_gbvn = prediction.groupby(\"video-id\")\n    for idx, this_gt in ground_truth.iterrows():\n        prediction_videoid = prediction_gbvn.get_group(this_gt[\"video-id\"])\n        pred_idxs = prediction_videoid.index.tolist()\n        for tidx, iou_thr in enumerate(iou_thresholds):\n            # Pick the corresponding max ST-IoU detection.\n            if mode == \"take_max_stiou\":\n                max_idx = st_iou[tidx, pred_idxs].argmax().item()\n            elif mode == \"take_max_score\":\n                max_idx = prediction_videoid[\"score\"].values.argmax().item()\n            max_idx = pred_idxs[max_idx]  # Index into pred_idxs\n            final_iou_sum[tidx].append(iou_sum[tidx, max_idx])\n            final_track_acc_count[tidx].append(track_acc_count[tidx, max_idx])\n            final_track_total_count[tidx].append(track_total_count[tidx, max_idx])\n\n    for tidx, iou_thr in enumerate(iou_thresholds):\n        iou_sum = np.array(final_iou_sum[tidx])\n        track_acc_count = np.array(final_track_acc_count[tidx])\n        track_total_count = np.array(final_track_total_count[tidx])\n        if track_total_count.sum() > 0:\n            robustness[tidx] = 100.0 * track_acc_count.sum() / (track_total_count.sum())\n\n    return {\"% recovery\": robustness}\n"
  },
  {
    "path": "VQ2D/vq2d/metrics/utils.py",
    "content": "from typing import List, Dict\n\nimport numpy as np\n\nfrom ..structures import BBox, ResponseTrack\n\n\nPRINT_FORMAT = \"{:<30s} {:<15s}\"\n\n\ndef segment_iou(\n    target_segment: np.ndarray, candidate_segments: np.ndarray\n) -> np.ndarray:\n    \"\"\"Compute the temporal intersection over union between a\n    target segment and all the test segments.\n    Parameters\n    ----------\n    target_segment : 1d array\n        Temporal target segment containing [starting, ending] times.\n    candidate_segments : 2d array\n        Temporal candidate segments containing N x [starting, ending] times.\n    Outputs\n    -------\n    tiou : 1d array\n        Temporal intersection over union score of the N's candidate segments.\n    \"\"\"\n    tt1 = np.maximum(target_segment[0], candidate_segments[:, 0])\n    tt2 = np.minimum(target_segment[1], candidate_segments[:, 1])\n    # Intersection including Non-negative overlap score.\n    segments_intersection = (tt2 - tt1 + 1).clip(0)\n    # Segment union.\n    segments_union = (\n        (candidate_segments[:, 1] - candidate_segments[:, 0] + 1)\n        + (target_segment[1] - target_segment[0] + 1)\n        - segments_intersection\n    )\n    # Compute overlap as the ratio of the intersection\n    # over union of two segments.\n    tIoU = segments_intersection.astype(float) / segments_union\n    return tIoU\n\n\ndef interpolated_prec_rec(prec: np.ndarray, rec: np.ndarray) -> np.ndarray:\n    \"\"\"Interpolated AP - VOCdevkit from VOC 2011.\"\"\"\n    mprec = np.hstack([[0], prec, [0]])\n    mrec = np.hstack([[0], rec, [1]])\n    for i in range(len(mprec) - 1)[::-1]:\n        mprec[i] = max(mprec[i], mprec[i + 1])\n    idx = np.where(mrec[1::] != mrec[0:-1])[0] + 1\n    ap = np.sum((mrec[idx] - mrec[idx - 1]) * mprec[idx])\n    return ap\n\n\ndef spatial_iou(box1: BBox, box2: BBox) -> float:\n    \"\"\"\n    Computes iou between two bounding boxes\n    \"\"\"\n    xi_s = max(box1.x1, box2.x1)\n    xi_e = min(box1.x2, box2.x2)\n    yi_s = max(box1.y1, box2.y1)\n    yi_e = min(box1.y2, box2.y2)\n    inter = (np.clip(xi_e - xi_s, 0, np.inf) * np.clip(yi_e - yi_s, 0, np.inf)).item()\n\n    area1 = box1.area()\n    area2 = box2.area()\n\n    iou = inter / (area1 + area2 - inter)\n\n    return iou\n\n\ndef spatial_intersection(box1: BBox, box2: BBox) -> float:\n    \"\"\"\n    Computes intersection between two bounding boxes\n    \"\"\"\n    xi_s = max(box1.x1, box2.x1)\n    xi_e = min(box1.x2, box2.x2)\n    yi_s = max(box1.y1, box2.y1)\n    yi_e = min(box1.y2, box2.y2)\n    inter = (np.clip(xi_e - xi_s, 0, np.inf) * np.clip(yi_e - yi_s, 0, np.inf)).item()\n\n    return inter\n\n\ndef spatio_temporal_iou_response_track(rt1: ResponseTrack, rt2: ResponseTrack) -> float:\n    \"\"\"\n    Computes tube-iou between two response track windows.\n    Note: This assumes that each bbox in the list corresponds to a different\n    frame. Cannot handle multiple bboxes per frame.\n\n    Reference: https://github.com/rafaelpadilla/review_object_detection_metrics\n    \"\"\"\n    # Map frame numbers to boxes\n    boxes1_dict = {box.fno: box for box in rt1.bboxes}\n    inter = 0.0\n    # Find matching frame boxes and estimate iou\n    for box2 in rt2.bboxes:\n        box1 = boxes1_dict.get(box2.fno, None)\n        if box1 is None:\n            continue\n        inter += spatial_intersection(box1, box2)\n    # Find overall volume of the two respose tracks\n    volume1 = rt1.volume()\n    volume2 = rt2.volume()\n\n    iou = inter / (volume1 + volume2 - inter)\n\n    return iou\n\n\ndef spatio_temporal_iou(\n    target_rt: ResponseTrack, candidate_rts: List[ResponseTrack]\n) -> np.ndarray:\n    \"\"\"\n    Computes spatio-temporal IoU between a target response track (prediction) and\n    multiple candidate response tracks (ground-truth).\n    \"\"\"\n    ious = []\n    for candidate_rt in candidate_rts:\n        ious.append(spatio_temporal_iou_response_track(target_rt, candidate_rt))\n\n    return np.array(ious)\n\n\n# Tracking related utils\n\n\ndef spatial_matches_response_track(\n    pred: ResponseTrack, gt: ResponseTrack\n) -> Dict[str, float]:\n    \"\"\"\n    For each bounding box in gt, find a match in pred and measure the per-frame IoU.\n    Set IoU to zero if no match is found.\n\n    Note: This assumes that each bbox in the list corresponds to a different\n    frame. Cannot handle multiple bboxes per frame.\n    \"\"\"\n    # Map frame numbers to boxes\n    gt_dict = {box.fno: box for box in gt.bboxes}\n    ious = {box.fno: 0.0 for box in gt.bboxes}\n    # Find matching frame boxes and estimate iou\n    for pred_box in pred.bboxes:\n        gt_box = gt_dict.get(pred_box.fno, None)\n        if gt_box is not None:\n            ious[gt_box.fno] = spatial_iou(gt_box, pred_box)\n    return ious\n\n\ndef spatio_temporal_iou_matches(\n    target_rt: ResponseTrack,\n    candidate_rts: List[ResponseTrack],\n) -> List[Dict[str, float]]:\n    \"\"\"\n    For each BBox in each candidate response track (ground-truth),\n    find the IoU b/w itself and a BBox from the target response track (prediction).\n    In case no match is found for a particular BBox in the candidate,\n    then the IoU is set to zero.\n    \"\"\"\n    ious = []\n    for candidate_rt in candidate_rts:\n        ious.append(spatial_matches_response_track(target_rt, candidate_rt))\n    return ious\n"
  },
  {
    "path": "VQ2D/vq2d/stats.py",
    "content": "import collections\nfrom re import I\nfrom typing import List, Sequence, Any, Dict\n\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport seaborn as sns\n\n\ndef barplot(\n    x,\n    y,\n    figsize=(7, 7),\n    rotation=None,\n    xlabel=None,\n    ylabel=None,\n    title=None,\n    add_grid=False,\n    save_path=None,\n    **kwargs,\n):\n\n    plt.figure(figsize=figsize)\n    ax = sns.barplot(x=x, y=y, **kwargs)\n\n    if rotation is not None:\n        for item in ax.get_xticklabels():\n            item.set_rotation(rotation)\n\n    if ylabel is not None:\n        plt.ylabel(ylabel)\n\n    if xlabel is not None:\n        plt.xlabel(xlabel)\n\n    if title is not None:\n        plt.title(title)\n\n    if add_grid:\n        plt.grid()\n\n    if save_path is not None:\n        plt.tight_layout()\n        plt.savefig(save_path)\n    else:\n        plt.show()\n\n\ndef hist(\n    x,\n    figsize=(7, 7),\n    rotation=None,\n    xlabel=None,\n    ylabel=None,\n    xlim=None,\n    ylim=None,\n    title=None,\n    save_path=None,\n    add_grid=False,\n    **kwargs,\n):\n\n    plt.figure(figsize=figsize)\n    ax = plt.hist(x, **kwargs)\n\n    if rotation is not None:\n        for item in ax.get_xticklabels():\n            item.set_rotation(rotation)\n\n    if ylabel is not None:\n        plt.ylabel(ylabel)\n\n    if xlabel is not None:\n        plt.xlabel(xlabel)\n\n    if title is not None:\n        plt.title(title)\n\n    if xlim is not None:\n        plt.xlim(*xlim)\n\n    if ylim is not None:\n        plt.ylim(*ylim)\n\n    if add_grid:\n        plt.grid()\n\n    if save_path is not None:\n        plt.tight_layout()\n        plt.savefig(save_path)\n    else:\n        plt.show()\n\n\ndef get_video_coverage(\n    video_duration: float,\n    clips_start_end: List[Sequence[float]],\n    step_size: float = 1.0,\n):\n    \"\"\"\n    Given a set of clips from a video, estimate how much of the video is\n    effectively covered by the clips.\n\n    Args:\n        video_duration - Length of the video in seconds\n        clips_start_end - A list of (start_sec, end_sec) values for each clip\n        step_size - discretization size for measuring coverage\n    \"\"\"\n    video_coverage = np.zeros((int(video_duration / step_size) + 1), dtype=np.float32)\n    for start_sec, end_sec in clips_start_end:\n        start_sec_idx = int(start_sec / step_size)\n        end_sec_idx = int(end_sec / step_size) + 1\n        video_coverage[start_sec_idx:end_sec_idx] = 1\n    video_coverage_sec = video_coverage.sum().item() * step_size\n    return video_coverage_sec\n\n\ndef compute_coverage_statistics(\n    video_annotations: List[Any], video_uids_to_metadata: List[Dict[str, Any]]\n) -> Dict[str, float]:\n    \"\"\"\n    Compute the video hours across all annotations.\n    \"\"\"\n    total_coverage = 0.0\n    per_split_coverage = collections.defaultdict(float)\n    for v in video_annotations:\n        video_uid = v[\"video_uid\"]\n        video_duration = video_uids_to_metadata[video_uid][\"video_duration_sec\"]\n        clips_start_end = []\n        for c in v[\"clips\"]:\n            if c[\"annotation_complete\"]:\n                clips_start_end.append((c[\"video_start_sec\"], c[\"video_end_sec\"]))\n        coverage = get_video_coverage(video_duration, clips_start_end)\n        coverage = coverage / 3600.0  # seconds -> hours\n        total_coverage += coverage\n        per_split_coverage[v[\"split\"]] += coverage\n\n    coverage_stats = {\"total_coverage\": total_coverage}\n    for split, coverage in per_split_coverage.items():\n        coverage_stats[f\"{split}_coverage\"] = coverage\n\n    return coverage_stats\n\n\ndef compute_clip_statistics(video_annotations: List[Any]) -> Dict[str, int]:\n    \"\"\"\n    Compute the total number of unique clips annotated.\n    \"\"\"\n    all_clips = set()\n    per_split_clips = collections.defaultdict(set)\n    for v in video_annotations:\n        for c in v[\"clips\"]:\n            if c[\"annotation_complete\"]:\n                all_clips.add(c[\"clip_uid\"])\n                per_split_clips[v[\"split\"]].add(c[\"clip_uid\"])\n\n    clip_stats = {\"total_clips\": len(all_clips)}\n    for split, split_clips in per_split_clips.items():\n        clip_stats[f\"{split}_clips\"] = len(split_clips)\n\n    return clip_stats\n\n\ndef compute_query_statistics(video_annotations: List[Any]) -> Dict[str, int]:\n    \"\"\"\n    Compute the total number of visual queries annotated.\n    \"\"\"\n    total_queries = 0\n    per_split_queries = collections.defaultdict(int)\n    for v in video_annotations:\n        for c in v[\"clips\"]:\n            if c[\"annotation_complete\"]:\n                for a in c[\"annotations\"]:\n                    for q in a[\"query_sets\"].values():\n                        if q[\"is_valid\"]:\n                            total_queries += 1\n                            per_split_queries[v[\"split\"]] += 1\n\n    query_stats = {\"total_queries\": total_queries}\n    for split, split_queries in per_split_queries.items():\n        query_stats[f\"{split}_queries\"] = split_queries\n    return query_stats\n\n\ndef compute_scenario_coverage_statistics(\n    video_annotations: List[Any],\n    video_uids_to_metadata: List[Dict[str, Any]],\n    thresh: float = 1.5,\n) -> Dict[str, float]:\n    \"\"\"\n    Compute the video hours annotated per scenario.\n    Note: We only count scenarios for which we have more than `thresh` hours of annotations.\n    \"\"\"\n    per_scenario_coverage = collections.defaultdict(float)\n    for v in video_annotations:\n        video_uid = v[\"video_uid\"]\n        video_duration = video_uids_to_metadata[video_uid][\"video_duration_sec\"]\n        clips_start_end = []\n        for c in v[\"clips\"]:\n            if c[\"annotation_complete\"]:\n                clips_start_end.append((c[\"video_start_sec\"], c[\"video_end_sec\"]))\n        coverage = get_video_coverage(video_duration, clips_start_end)\n        coverage = coverage / 3600.0  # seconds -> hours\n        for scenario in video_uids_to_metadata[video_uid][\"scenarios\"]:\n            per_scenario_coverage[scenario] += coverage\n    per_scenario_coverage = {\n        k: v for k, v in per_scenario_coverage.items() if v > thresh\n    }\n\n    return per_scenario_coverage\n\n\ndef compute_university_coverage_statistics(\n    video_annotations: List[Any],\n    video_uids_to_metadata: List[Dict[str, Any]],\n) -> Dict[str, float]:\n    \"\"\"\n    Compute the video hours annotated per university.\n    \"\"\"\n    per_university_coverage = collections.defaultdict(float)\n    for v in video_annotations:\n        video_uid = v[\"video_uid\"]\n        video_duration = video_uids_to_metadata[video_uid][\"video_duration_sec\"]\n        clips_start_end = []\n        for c in v[\"clips\"]:\n            if c[\"annotation_complete\"]:\n                clips_start_end.append((c[\"video_start_sec\"], c[\"video_end_sec\"]))\n        coverage = get_video_coverage(video_duration, clips_start_end)\n        coverage = coverage / 3600.0  # seconds -> hours\n        university = video_uids_to_metadata[video_uid][\"source\"]\n        per_university_coverage[university] += coverage\n\n    return per_university_coverage\n\n\ndef compute_query_to_response_separation_statistics(\n    video_annotations: List[Any],\n) -> List[int]:\n    \"\"\"\n    Compute the set of query to response separation in # frames.\n    \"\"\"\n    q2r_separation = []\n    for v in video_annotations:\n        for c in v[\"clips\"]:\n            if c[\"annotation_complete\"]:\n                for a in c[\"annotations\"]:\n                    for q in a[\"query_sets\"].values():\n                        if q[\"is_valid\"]:\n                            qfno = q[\"query_frame\"]\n                            rtfno = max(\n                                [rf[\"frame_number\"] for rf in q[\"response_track\"]]\n                            )\n                            assert qfno - rtfno > 0\n                            q2r_separation.append(qfno - rtfno)\n\n    return q2r_separation\n\n\ndef compute_response_track_length_statistics(\n    video_annotations: List[Any],\n) -> List[int]:\n    \"\"\"\n    Compute the set of response track lengths in # frames.\n    \"\"\"\n    rt_lengths = []\n    for v in video_annotations:\n        for c in v[\"clips\"]:\n            if c[\"annotation_complete\"]:\n                for a in c[\"annotations\"]:\n                    for q in a[\"query_sets\"].values():\n                        if q[\"is_valid\"]:\n                            rt_max = max(\n                                [rf[\"frame_number\"] for rf in q[\"response_track\"]]\n                            )\n                            rt_min = min(\n                                [rf[\"frame_number\"] for rf in q[\"response_track\"]]\n                            )\n                            rt_lengths.append(rt_max - rt_min + 1)\n    return rt_lengths\n\n\ndef compute_response_track_location_statistics(\n    video_annotations: List[Any],\n) -> List[Sequence[float]]:\n    \"\"\"\n    Compute the set of response track lengths in # frames.\n    \"\"\"\n    rt_bbox_locations = []\n    for v in video_annotations:\n        for c in v[\"clips\"]:\n            if c[\"annotation_complete\"]:\n                for a in c[\"annotations\"]:\n                    for q in a[\"query_sets\"].values():\n                        if q[\"is_valid\"]:\n                            for rf in q[\"response_track\"]:\n                                oh = rf[\"original_height\"]\n                                ow = rf[\"original_width\"]\n                                xs = rf[\"x\"] / ow\n                                ys = rf[\"y\"] / oh\n                                xe = (rf[\"x\"] + rf[\"width\"]) / ow\n                                ye = (rf[\"y\"] + rf[\"height\"]) / oh\n                                rt_bbox_locations.append((xs, ys, xe, ye))\n    return rt_bbox_locations\n"
  },
  {
    "path": "VQ2D/vq2d/structures.py",
    "content": "from typing import List\n\n\nclass BBox:\n    def __init__(self, fno, x1, y1, x2, y2):\n        self.fno = fno\n        self.x1 = x1\n        self.y1 = y1\n        self.x2 = x2\n        self.y2 = y2\n\n    def area(self):\n        return (self.x2 - self.x1) * (self.y2 - self.y1)\n\n    def __repr__(self):\n        return \"BBox[fno = {}, x1 = {}, y1 = {}, x2 = {}, y2 = {}]\".format(\n            self.fno, self.x1, self.y1, self.x2, self.y2\n        )\n\n    def to_json(self):\n        return {\n            \"fno\": int(self.fno),\n            \"x1\": int(self.x1),\n            \"x2\": int(self.x2),\n            \"y1\": int(self.y1),\n            \"y2\": int(self.y2),\n        }\n\n    @staticmethod\n    def from_json(data):\n        return BBox(data[\"fno\"], data[\"x1\"], data[\"y1\"], data[\"x2\"], data[\"y2\"])\n\n\nclass ResponseTrack:\n    def __init__(self, bboxes: List[BBox], score: float = None):\n        # A set of bounding boxes with time, and an optional confidence score\n        self._bboxes = sorted(bboxes, key=lambda x: x.fno)\n        if self._check_empty(self._bboxes):\n            self._empty_init()\n        else:\n            self._non_empty_init(self._bboxes)\n        self._score = score\n        self._check_contiguous()\n\n    @property\n    def temporal_extent(self):\n        return (self._t_start, self._t_end)\n\n    @property\n    def bboxes(self):\n        return self._bboxes\n\n    @property\n    def length(self):\n        return self._length\n\n    @property\n    def score(self):\n        return self._score\n\n    def has_score(self):\n        return self._score is not None\n\n    def _check_empty(self, bboxes):\n        return len(bboxes) == 0\n\n    def _empty_init(self):\n        self._t_start = 0\n        self._t_end = -1\n        self._length = 0\n        print(\"Encountered empty track\")\n\n    def _non_empty_init(self, bboxes):\n        self._t_start = bboxes[0].fno\n        self._t_end = bboxes[-1].fno\n        self._length = len(bboxes)\n\n    def _check_contiguous(self):\n        if self._length != (self._t_end - self._t_start + 1):\n            raise ValueError(f\"====> ResponseTrack: BBoxes not contiguous\")\n\n    def __repr__(self):\n        return (\n            \"ResponseTrack[\\n\"\n            + \"\\n\".join([bbox.__repr__() for bbox in self._bboxes])\n            + \"]\"\n        )\n\n    def volume(self):\n        v = 0.0\n        for bbox in self._bboxes:\n            v += bbox.area()\n        return v\n\n    def to_json(self):\n        score = self._score\n        if score is not None:\n            score = float(score)\n        return {\n            \"bboxes\": [bbox.to_json() for bbox in self._bboxes],\n            \"score\": score,\n        }\n\n    @staticmethod\n    def from_json(data):\n        return ResponseTrack(\n            [BBox.from_json(bbox) for bbox in data[\"bboxes\"]],\n            data[\"score\"],\n        )\n"
  },
  {
    "path": "VQ2D/vq2d/tools/get_average_detector_flops.py",
    "content": "import typing\n\nimport argparse\nimport cv2\nimport glob\nimport imageio\nimport json\nimport numpy as np\nimport os\nimport random\nimport torch\nimport torch.nn as nn\nimport tqdm\n\nfrom collections import defaultdict\nfrom detectron2_extensions.config import get_cfg\nfrom deepspeed.profiling.flops_profiler import get_model_profile\nfrom einops import rearrange, asnumpy\nfrom vq2d.baselines import SiamPredictor\nfrom vq2d.baselines.utils import extract_window_with_context\nfrom vq2d.baselines.utils import get_image_name_from_clip_uid\n\n\ndef setup_model(args):\n    cfg = get_cfg()\n    cfg.merge_from_file(args.cfg_path)\n    cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST = 0.0\n    cfg.MODEL.WEIGHTS = args.pretrained_weights\n    cfg.MODEL.DEVICE = f\"cuda:{args.gpu_id}\"\n    cfg.INPUT.FORMAT = \"RGB\"\n    cfg.freeze()\n    model = SiamPredictor(cfg)\n    return model\n\n\ndef process_annotations(annotations):\n    proc_annotations = []\n    for v in annotations[\"videos\"]:\n        vuid = v[\"video_uid\"]\n        for c in v[\"clips\"]:\n            cuid = c[\"clip_uid\"]\n            if cuid is None:\n                continue\n            for a in c[\"annotations\"]:\n                for qid, q in a[\"query_sets\"].items():\n                    if not q[\"is_valid\"]:\n                        continue\n                    vc_fno = q[\"visual_crop\"][\"frame_number\"]\n                    vc_path = os.path.join(\n                        f\"data/images\", get_image_name_from_clip_uid(cuid, vc_fno)\n                    )\n                    if not os.path.isfile(vc_path):\n                        continue\n                    proc_annotations.append(\n                        {\n                            \"video_uid\": vuid,\n                            \"clip_uid\": cuid,\n                            \"query_set_id\": qid,\n                            \"object_title\": q[\"object_title\"],\n                            \"query_frame\": q[\"query_frame\"],\n                            \"visual_crop\": q[\"visual_crop\"],\n                        }\n                    )\n    return proc_annotations\n\n\ndef get_visual_crop_image(reference, visual_crop, cfg):\n    owidth, oheight = visual_crop[\"original_width\"], visual_crop[\"original_height\"]\n\n    ## Resize visual crop if stored aspect ratio was incorrect\n    if (reference.shape[0] != oheight) or (reference.shape[1] != owidth):\n        reference = cv2.resize(reference, (owidth, oheight))\n    reference = torch.as_tensor(rearrange(reference, \"h w c -> () c h w\"))\n    reference = reference.float()\n    ref_bbox = (\n        visual_crop[\"x\"],\n        visual_crop[\"y\"],\n        visual_crop[\"x\"] + visual_crop[\"width\"],\n        visual_crop[\"y\"] + visual_crop[\"height\"],\n    )\n    reference = extract_window_with_context(\n        reference,\n        ref_bbox,\n        cfg.INPUT.REFERENCE_CONTEXT_PAD,\n        size=cfg.INPUT.REFERENCE_SIZE,\n        pad_value=125,\n    )\n    reference = rearrange(asnumpy(reference.byte()), \"() c h w -> h w c\")\n    return reference\n\n\ndef process_image(image, visual_crop, downscale_height=700):\n    owidth, oheight = visual_crop[\"original_width\"], visual_crop[\"original_height\"]\n    if image.shape[:2] != (oheight, owidth):\n        image = cv2.resize(image, (owidth, oheight))\n    # Scale-down image to reduce memory consumption\n    image_scale = float(downscale_height) / image.shape[0]\n    image = cv2.resize(image, None, fx=image_scale, fy=image_scale)\n    return image\n\n\ndef compute_average_flops(args):\n    with open(args.annotations, \"r\") as fp:\n        annotations = json.load(fp)\n    annotations = process_annotations(annotations)\n    annotations = sorted(\n        annotations,\n        key=lambda x: (x[\"video_uid\"], x[\"clip_uid\"], x[\"query_set_id\"], x[\"object_title\"]),\n    )\n    # Sample a random subset of annotations\n    random.shuffle(annotations)\n    annotations = annotations[:10]\n    # Setup model\n    model = setup_model(args)\n    # Calculate FLOPs\n    total_count = 0\n    total_flops = 0\n    total_macs = 0\n    total_params = 0\n    for annot in tqdm.tqdm(annotations, desc=\"Computing average FLOPs\"):\n        clip_uid = annot[\"clip_uid\"]\n        visual_crop = annot[\"visual_crop\"]\n        vcfno = visual_crop[\"frame_number\"]\n        # Load visual crop image\n        reference_image_path = os.path.join(\n            f\"data/images\", get_image_name_from_clip_uid(clip_uid, vcfno)\n        )\n        reference_image = imageio.imread(reference_image_path)\n        reference = get_visual_crop_image(reference_image, visual_crop, model.cfg)\n        if model.input_format == \"RGB\":\n            reference = reference[:, :, ::-1]\n        reference = torch.as_tensor(reference.astype(\"float32\").transpose(2, 0, 1))\n        # Sample random images from clips\n        image_paths = sorted(glob.glob(os.path.join(f\"data/images/{clip_uid}/*.png\")))\n        random.shuffle(image_paths)\n        for image_path in image_paths[:10]:\n            try:\n                image = imageio.imread(image_path)\n            except ValueError:\n                continue\n            image = process_image(image, visual_crop)\n            with torch.no_grad():\n                if model.input_format == \"RGB\":\n                    image = image[:, :, ::-1]\n                height, width = image.shape[:2]\n                image = model.aug.get_transform(image).apply_image(image)\n                image = torch.as_tensor(image.astype(\"float32\").transpose(2, 0, 1))\n                inputs = [\n                    {\n                        \"image\": image,\n                        \"reference\": reference,\n                        \"height\": height,\n                        \"width\": width,\n                    }\n                ]\n                flops, macs, params = get_model_profile(\n                    model.model,\n                    args=(inputs,),\n                    print_profile=False,\n                    detailed=False,\n                    as_string=False,\n                )\n                total_count += 1\n                total_flops += float(flops) / 1e9\n                total_macs += float(macs) / 1e9\n                total_params += float(params) / 1e6\n\n    print(f\"=======> Average stats over {total_count} images\")\n    print(\"{:<20s} | {:>9.3f}\".format(\"Total GFLOPs\", total_flops / total_count))\n    print(\"{:<20s} | {:>9.3f}\".format(\"Total GMACs\", total_macs / total_count))\n    print(\"{:<20s} | {:>9.3f}\".format(\"Total params (M)\", total_params / total_count))\n    print(\"-----------------------------------------------\")\n\n    \n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--cfg_path\",\n        default=\"pretrained_models/siam_rcnn_residual/config.yaml\",\n        type=str,\n    )\n    parser.add_argument(\n        \"--pretrained_weights\",\n        default=\"pretrained_models/siam_rcnn_residual/model.pth\",\n        type=str\n    )\n    parser.add_argument(\"--gpu_id\", default=0, type=int)\n    parser.add_argument(\"--annotations\", default=\"data/vq_val.json\", type=str)\n\n    args = parser.parse_args()\n\n    random.seed(123)\n    compute_average_flops(args)"
  },
  {
    "path": "VQ2D/vq2d/tracking/__init__.py",
    "content": "from .tracker import Tracker\n\n__all__ = [\"Tracker\"]\n"
  },
  {
    "path": "VQ2D/vq2d/tracking/kys.py",
    "content": "import importlib\n\nimport cv2\nimport numpy as np\nimport torch\nfrom pytracking.features.net_wrappers import NetWithBackbone\n\nfrom ..baselines.utils import resize_if_needed\nfrom ..structures import BBox\nfrom .utils import draw_bbox\n\n\nclass KYSTracker(object):\n    def __init__(self, model_path, device, lost_thresh=0.05):\n        name, parameter_name = \"kys\", \"default\"\n        self.device = device\n        torch.cuda.set_device(device)\n        # Load tracker parameters\n        param_module = importlib.import_module(\n            \"pytracking.parameter.{}.{}\".format(name, parameter_name)\n        )\n        params = param_module.parameters()\n        params.tracker_name = name\n        params.param_name = parameter_name\n        params.target_not_found_threshold_fused = lost_thresh\n        params.net = NetWithBackbone(net_path=model_path, use_gpu=params.use_gpu)\n\n        # Create tracker\n        tracker_module = importlib.import_module(\"pytracking.tracker.{}\".format(name))\n        tracker_class = tracker_module.get_tracker_class()\n        self.tracker = tracker_class(params)\n        self.state = None\n        self._lost_track = None\n\n    def initialize_tracker(self, frame, box):\n        init_state = [box.x1, box.y1, box.x2 - box.x1, box.y2 - box.y1]\n        self.tracker.initialize(frame, self._build_init_info(init_state))\n        self.state = init_state\n        self._lost_track = False\n\n    def _build_init_info(self, box):\n        return {\n            \"init_bbox\": box,\n            \"init_object_ids\": [\n                1,\n            ],\n            \"object_ids\": [\n                1,\n            ],\n            \"sequence_object_ids\": [\n                1,\n            ],\n        }\n\n    def update_state(self, frame):\n        out = self.tracker.track(frame)\n        self.state = [int(s) for s in out[\"target_bbox\"]]\n        self._lost_track = self.tracker.debug_info[\"flag\" + self.tracker.id_str]\n\n    @property\n    def lost_track(self):\n        return self._lost_track == \"not_found\"\n\n\nclass KYSRunner(object):\n    def __init__(self, cfg, device):\n        self.cfg = cfg\n        kys_cfg = cfg.tracker.kys_tracker\n        self.tracker = KYSTracker(\n            kys_cfg.model_path, device, lost_thresh=kys_cfg.lost_thresh\n        )\n\n    def __call__(\n        self, init_state, init_frame, video_reader, oshape, end_frame, *args, **kwargs\n    ):\n        return run_kys_tracker(\n            init_state,\n            init_frame,\n            video_reader,\n            oshape,\n            end_frame,\n            self.cfg,\n            self.tracker,\n        )\n\n\ndef run_kys_tracker(\n    init_state, init_frame, video_reader, oshape, end_frame, cfg, kys_tracker\n):\n    \"\"\"\n    init_state: initial state of the tracked obj in the frame (gathered from the\n                detection stage)\n                [x,y,sx, sy] (relative to oshape images)\n    init_frame: frame corresponding to init_state (may be smaller than oshape)\n    video_reader: reader which yields frames from the video\n    oshape: (original width, original height) of Ego4D dataset frames\n    end_frame: last frame in the search window + 1\n\n    **Important note:**\n        The frames from video_reader may be smaller than oshape.  These are\n        upsampled to oshape, and final predictions are relative to oshape.\n    \"\"\"\n\n    kys_cfg = cfg.tracker.kys_tracker\n\n    owidth, oheight = oshape\n    oshapeby2 = (owidth // 2, oheight // 2)\n    init_frame = resize_if_needed(init_frame, oshape)\n\n    start_fno = init_state.fno\n\n    global img_height, img_width\n    img_height, img_width = init_frame.shape[:2]\n\n    if cfg.logging.visualize:\n        start_frame_vis = np.copy(init_frame)\n        draw_bbox(start_frame_vis, init_state)\n        start_frame_vis = resize_if_needed(start_frame_vis, oshapeby2)\n\n    # -- BACKWARD TRACKING\n    # initialize the tracker\n    kys_tracker.initialize_tracker(init_frame, init_state)\n\n    backward_track = []\n    backward_track_vis = []\n\n    start_rt_pred = start_fno\n    for i in range(start_fno - 1, -1, -1):\n        image = resize_if_needed(video_reader[i], oshape)  # RGB\n        kys_tracker.update_state(image)\n        if kys_tracker.lost_track:\n            break\n\n        start_rt_pred = i\n        x, y, w, h = kys_tracker.state\n        bbox = BBox(i, x, y, x + w, y + h)\n        backward_track.append(bbox)\n\n        if kys_cfg.debug or cfg.logging.visualize:\n            draw_bbox(image, bbox)\n            image = resize_if_needed(image, oshapeby2)\n            backward_track_vis.append(image)\n\n        if kys_cfg.debug:\n            cv2.imshow(\"Image\", image[..., ::-1])\n            cv2.waitKey(300)\n\n    # Add a few padding frames\n    if cfg.logging.visualize:\n        for i in range(start_rt_pred - 1, max(start_rt_pred - 10, 1), -1):\n            image = resize_if_needed(video_reader[i], oshapeby2)\n            backward_track_vis.append(image)\n\n    # -- FORWARD TRACKING\n    # initialize the tracker\n    kys_tracker.initialize_tracker(init_frame, init_state)\n\n    forward_track = []\n    forward_track_vis = []\n    end_rt_pred = start_fno\n    for i in range(start_fno + 1, end_frame, 1):\n        image = resize_if_needed(video_reader[i], oshape)\n        kys_tracker.update_state(image)\n        if kys_tracker.lost_track:\n            break\n\n        end_rt_pred = i\n        x, y, w, h = kys_tracker.state\n        bbox = BBox(i, x, y, x + w, y + h)\n        forward_track.append(bbox)\n\n        if kys_cfg.debug or cfg.logging.visualize:\n            draw_bbox(image, bbox)\n            image = resize_if_needed(image, oshapeby2)\n            forward_track_vis.append(image)\n\n        if kys_cfg.debug:\n            cv2.imshow(\"Image\", image[..., ::-1])\n            cv2.waitKey(300)\n\n    # Add a few padding frames\n    if cfg.logging.visualize:\n        for i in range(end_rt_pred + 1, min(end_rt_pred + 10, end_frame)):\n            image = video_reader[i]\n            image = resize_if_needed(image, oshapeby2)\n            forward_track_vis.append(image)\n\n    response_track = backward_track[::-1] + [init_state] + forward_track\n    response_track_vis = None\n    if cfg.logging.visualize:\n        response_track_vis = (\n            backward_track_vis[::-1] + [start_frame_vis] + forward_track_vis\n        )\n\n    return response_track, response_track_vis\n"
  },
  {
    "path": "VQ2D/vq2d/tracking/particle_filter.py",
    "content": "import os\nimport sys\n\nimport cv2\nimport numpy as np\nimport torch\nfrom einops import asnumpy\nfrom scipy.stats import norm\n\nfrom ..baselines.utils import resize_if_needed\nfrom ..structures import BBox\nfrom .pfilter import (\n    ParticleFilter,\n    independent_sample,\n)\nfrom .utils import draw_bbox\n\n\ndef observe(x, image, template_size):\n    \"\"\"\n    create observation hypothesis given a particle and the current observed frame. each row in x contains one\n    particle info.\n    One row of x = [r,c,sr,sc].\n    resize the current hyposthesis to template_size for comparision afterwards\n    \"\"\"\n\n    image_max = np.array([image.shape[0], image.shape[1]])\n    template_size = np.array(\n        (max(1, template_size[0]), max(1, template_size[1])), dtype=int\n    )  # (h, w)\n\n    y = np.zeros((len(x), template_size[0], template_size[1], 3), dtype=float)\n\n    for i, particle in enumerate(x):\n        r, c, sr, sc = particle\n\n        scale = np.array([sr, sc])\n        hypo_dim = np.multiply(scale, template_size).round().astype(int)\n\n        r = r.round().astype(int)\n        c = c.round().astype(int)\n\n        center = np.array([r, c])\n\n        hypo_min = center - hypo_dim // 2\n        hypo_min = hypo_min.round().astype(int)\n        hypo_max = hypo_min + hypo_dim\n\n        if np.all(hypo_min >= 0) and np.all(hypo_max < image_max):\n            image_cutout = image[\n                hypo_min[0] : hypo_max[0], hypo_min[1] : hypo_max[1], :\n            ]\n\n            if np.any(np.array(image_cutout.shape) <= 0):\n                hypo = (\n                    np.zeros((template_size[0], template_size[1], 3), dtype=float) - 1\n                )\n            else:\n                hypo = cv2.resize(\n                    image_cutout, (template_size[1], template_size[0])\n                ).astype(float)\n        else:\n            hypo = np.zeros((template_size[0], template_size[1], 3), dtype=float) - 1\n        y[i, :, :, :] = hypo\n    return y\n\n\ndef deep_metric(x, y):\n    \"\"\"\n    x - (N, F) numpy array\n    y - (1, F) numpy array\n    \"\"\"\n    with torch.no_grad():\n        x_f = torch.nn.functional.normalize(x, dim=1)\n        y_f = torch.nn.functional.normalize(y, dim=1)\n        similarity = asnumpy(torch.nn.functional.cosine_similarity(x_f, y_f, dim=1))\n    return similarity\n\n\ndef metric(x, y, sigma=1):\n    h, w = x.shape[1:3]\n    mean_squared_error = ((x.astype(float) / 255.0 - y.astype(float) / 255.0) ** 2).sum(\n        axis=1\n    )\n    mean_squared_error = mean_squared_error.sum(axis=1)\n    mean_squared_error = mean_squared_error.sum(axis=1)\n    mean_squared_error = mean_squared_error / (h * w * 3)\n    similarity = np.exp(-mean_squared_error / (2 * sigma ** 2))\n    return similarity\n\n\nclass PFRunner(object):\n    def __init__(self, cfg, device):\n        self.cfg = cfg\n        self.device = device\n\n    def __call__(\n        self,\n        init_state,\n        init_frame,\n        video_reader,\n        oshape,\n        end_frame,\n        net,\n        *args,\n        **kwargs\n    ):\n        return run_pfilter(\n            init_state,\n            init_frame,\n            video_reader,\n            oshape,\n            end_frame,\n            self.cfg,\n            net,\n            self.device,\n        )\n\n\ndef run_pfilter(\n    init_state, init_frame, video_reader, oshape, end_frame, cfg, net, device\n):\n    \"\"\"\n    init_state: initial state of the tracked obj in the frame (gathered from the\n                detection stage)\n                [x,y,sx, sy] (relative to oshape images)\n    init_frame: frame corresponding to init_state (may be smaller than oshape)\n    video_reader: reader which yields frames from the video\n    oshape: (original width, original height) of Ego4D dataset frames\n    end_frame: last frame in the search window + 1\n\n    **Important note:**\n        The frames from video_reader may be smaller than oshape.  These are\n        upsampled to oshape, and final predictions are relative to oshape.\n    \"\"\"\n    pf_cfg = cfg.tracker.pfilter\n\n    owidth, oheight = oshape\n    oshapeby2 = (owidth // 2, oheight // 2)\n    init_frame = resize_if_needed(init_frame, oshape)\n\n    global img_height, img_width\n    img_height, img_width = init_frame.shape[:2]\n\n    # set init states\n    x1_init = init_state.x1\n    x2_init = init_state.x2\n    y1_init = init_state.y1\n    y2_init = init_state.y2\n\n    template = init_frame[y1_init:y2_init, x1_init:x2_init, :]  # RGB\n\n    state_variables = [\"r\", \"c\", \"sr\", \"sc\"]\n\n    r = int(np.round((y1_init + y2_init) / 2.0))\n    c = int(np.round((x1_init + x2_init) / 2.0))\n    sr = 1.0\n    sc = 1.0\n\n    # prior sampling function for each variable\n    # (assumes x and y are coordinates in the range 0-img_size)\n    # change prior function to take into account detection centers\n    prior_fn = independent_sample(\n        [\n            norm(loc=r, scale=img_height * 0.07).rvs,\n            norm(loc=c, scale=img_width * 0.07).rvs,\n            norm(loc=sr, scale=0.1).rvs,\n            norm(loc=sc, scale=0.1).rvs,\n        ]\n    )\n\n    # start frame\n    start_fno = init_state.fno\n\n    if pf_cfg.use_deep_similarity:\n        weight_fn = lambda x, y: deep_metric(x, y)\n    else:\n        weight_fn = lambda x, y: metric(x, y, sigma=pf_cfg.metric_sigma)\n\n    if cfg.logging.visualize:\n        start_frame_vis = np.copy(init_frame)\n        draw_bbox(start_frame_vis, init_state)\n        start_frame_vis = resize_if_needed(start_frame_vis, oshapeby2)\n\n    # -- BACKWARD TRACKING\n    # create the filter\n    pf = ParticleFilter(\n        prior_fn=prior_fn,\n        init_template=template,\n        observe_fn=observe,\n        n_particles=pf_cfg.n_particles,\n        dynamics_fn=None,\n        noise_fn=None,\n        weight_fn=weight_fn,\n        use_deep_similarity=pf_cfg.use_deep_similarity,\n        similarity_net=net,\n        device=device,\n        resample_proportion=pf_cfg.resample_proportion,\n        column_names=state_variables,\n    )\n\n    if pf_cfg.debug:\n        cv2.imshow(\"Template\", template[..., ::-1])\n\n    backward_track = []\n    backward_track_vis = []\n\n    start_rt_pred = start_fno\n    for i in range(start_fno - 1, -1, -1):\n        image = resize_if_needed(video_reader[i], oshape)  # RGB\n        pf.update(image)\n\n        state = pf.map_state\n        score = pf.map_similarity\n        template_size = np.array(pf.template.shape[:2])\n\n        r, c, sr, sc = state\n        scale = np.array([sr, sc])\n        state_dim = np.multiply(scale, template_size).round().astype(int)\n        r = r.round().astype(int)\n        c = c.round().astype(int)\n        center = np.array([r, c])\n        state_min = center - state_dim // 2\n        state_min = state_min.round().astype(int)\n        state_max = state_min + state_dim\n\n        bbox = BBox(i, state_min[1], state_min[0], state_max[1], state_max[0])\n        backward_track.append(bbox)\n\n        if pf_cfg.debug or cfg.logging.visualize:\n            image = image.copy()\n            draw_bbox(image, bbox)\n\n            image = cv2.drawMarker(\n                image,\n                (c, r),\n                (255, 0, 0),\n                markerType=cv2.MARKER_STAR,\n                markerSize=10,\n                thickness=2,\n                line_type=cv2.LINE_AA,\n            )\n            # pf.viz_particles(image)\n            image = resize_if_needed(image, oshapeby2)\n            backward_track_vis.append(image)\n\n        if pf_cfg.debug:\n            cv2.imshow(\"Image\", image[..., ::-1])\n            cv2.waitKey(300)\n\n        if score < pf_cfg.sim_thresh:\n            start_rt_pred = i\n            break\n\n    # Add a few padding frames\n    if cfg.logging.visualize:\n        for i in range(start_rt_pred - 1, max(start_rt_pred - 10, 1), -1):\n            image = resize_if_needed(video_reader[i], oshapeby2)\n            backward_track_vis.append(image)\n\n    # -- FORWARD TRACKING\n    # create the filter\n    pf = ParticleFilter(\n        prior_fn=prior_fn,\n        init_template=template,\n        observe_fn=observe,\n        n_particles=pf_cfg.n_particles,\n        dynamics_fn=None,\n        noise_fn=None,\n        weight_fn=weight_fn,\n        use_deep_similarity=pf_cfg.use_deep_similarity,\n        similarity_net=net,\n        device=device,\n        resample_proportion=pf_cfg.resample_proportion,\n        column_names=state_variables,\n    )\n\n    end_rt_pred = start_fno\n    forward_track = []\n    forward_track_vis = []\n\n    for i in range(start_fno + 1, end_frame):\n        image = resize_if_needed(video_reader[i], oshape)\n        pf.update(image)\n\n        state = pf.map_state\n        score = pf.map_similarity\n        template_size = np.array(pf.template.shape[:2])\n\n        r, c, sr, sc = state\n        scale = np.array([sr, sc])\n        state_dim = np.multiply(scale, template_size).round().astype(int)\n        r = r.round().astype(int)\n        c = c.round().astype(int)\n        center = np.array([r, c])\n        state_min = center - state_dim // 2\n        state_min = state_min.round().astype(int)\n        state_max = state_min + state_dim\n\n        bbox = BBox(i, state_min[1], state_min[0], state_max[1], state_max[0])\n        forward_track.append(bbox)\n\n        if pf_cfg.debug or cfg.logging.visualize:\n            image = image.copy()\n            draw_bbox(image, bbox)\n\n            image = cv2.drawMarker(\n                image,\n                (c, r),\n                (255, 0, 0),\n                markerType=cv2.MARKER_STAR,\n                markerSize=10,\n                thickness=2,\n                line_type=cv2.LINE_AA,\n            )\n            # pf.viz_particles(image)\n            image = resize_if_needed(image, oshapeby2)\n            forward_track_vis.append(image)\n\n        if pf_cfg.debug:\n            cv2.imshow(\"Image\", image[..., ::-1])\n            cv2.waitKey(300)\n\n        if score < pf_cfg.sim_thresh:\n            end_rt_pred = i\n            break\n\n    # Add a few padding frames\n    if cfg.logging.visualize:\n        for i in range(end_rt_pred + 1, min(end_rt_pred + 10, end_frame)):\n            image = resize_if_needed(video_reader[i], oshapeby2)\n            forward_track_vis.append(image)\n\n    response_track = backward_track[::-1] + [init_state] + forward_track\n    response_track_vis = None\n    if cfg.logging.visualize:\n        response_track_vis = (\n            backward_track_vis[::-1] + [start_frame_vis] + forward_track_vis\n        )\n\n    return response_track, response_track_vis\n"
  },
  {
    "path": "VQ2D/vq2d/tracking/pfilter.py",
    "content": "\"\"\"\nModified from\nhttps://github.com/johnhw/pfilter/tree/62fc8b735518c8427057764183f3ea1109053b5b\n\"\"\"\nimport numpy as np\nimport torch\nfrom einops import rearrange\nfrom scipy.stats import norm\n\n\n# return a new function that has the heat kernel (given by delta) applied.\ndef make_heat_adjusted(sigma):\n    def heat_distance(d):\n        return np.exp(-(d**2) / (2.0 * sigma**2))\n\n    return heat_distance\n\n\n## Resampling based on the examples at: https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python/blob/master/12-Particle-Filters.ipynb\n## originally by Roger Labbe, under an MIT License\ndef systematic_resample(weights):\n    n = len(weights)\n    positions = (np.arange(n) + np.random.uniform(0, 1)) / n\n    return create_indices(positions, weights)\n\n\ndef stratified_resample(weights):\n    n = len(weights)\n    positions = (np.random.uniform(0, 1, n) + np.arange(n)) / n\n    return create_indices(positions, weights)\n\n\ndef residual_resample(weights):\n    n = len(weights)\n    indices = np.zeros(n, np.uint32)\n    # take int(N*w) copies of each weight\n    num_copies = (n * weights).astype(np.uint32)\n    k = 0\n    for i in range(n):\n        for _ in range(num_copies[i]):  # make n copies\n            indices[k] = i\n            k += 1\n    # use multinormial resample on the residual to fill up the rest.\n    residual = weights - num_copies  # get fractional part\n    residual /= np.sum(residual)\n    cumsum = np.cumsum(residual)\n    cumsum[-1] = 1\n    indices[k:n] = np.searchsorted(cumsum, np.random.uniform(0, 1, n - k))\n    return indices\n\n\ndef create_indices(positions, weights):\n    n = len(weights)\n    indices = np.zeros(n, np.uint32)\n    cumsum = np.cumsum(weights)\n    i, j = 0, 0\n    while i < n:\n        if positions[i] < cumsum[j]:\n            indices[i] = j\n            i += 1\n        else:\n            j += 1\n\n    return indices\n\n\n### end rlabbe's resampling functions\n\n\ndef multinomial_resample(weights):\n    return np.random.choice(np.arange(len(weights)), p=weights, size=len(weights))\n\n\n# resample function from http://scipy-cookbook.readthedocs.io/items/ParticleFilter.html\ndef resample(weights):\n    n = len(weights)\n    indices = []\n    C = [0.0] + [np.sum(weights[: i + 1]) for i in range(n)]\n    u0, j = np.random.random(), 0\n    for u in [(u0 + i) / n for i in range(n)]:\n        while u > C[j]:\n            j += 1\n        indices.append(j - 1)\n    return indices\n\n\n# identity function for clearer naming\nidentity = lambda x: x\n\n\ndef squared_error(x, y, sigma=1):\n    \"\"\"\n    RBF kernel, supporting masked values in the observation\n    Parameters:\n    -----------\n    x : array (N,D) array of values\n    y : array (N,D) array of values\n\n    Returns:\n    -------\n\n    distance : scalar\n        Total similarity, using equation:\n\n            d(x,y) = e^((-1 * (x - y) ** 2) / (2 * sigma ** 2))\n\n        summed over all samples. Supports masked arrays.\n    \"\"\"\n    dx = (x - y) ** 2\n    d = np.ma.sum(dx, axis=1)\n    return np.exp(-d / (2.0 * sigma**2))\n\n\ndef gaussian_noise(x, sigmas):\n    \"\"\"Apply diagonal covaraiance normally-distributed noise to the N,D array x.\n    Parameters:\n    -----------\n        x : array\n            (N,D) array of values\n        sigmas : array\n            D-element vector of std. dev. for each column of x\n    \"\"\"\n    n = np.random.normal(np.zeros(len(sigmas)), sigmas, size=(x.shape[0], len(sigmas)))\n    return x + n\n\n\ndef cauchy_noise(x, sigmas):\n    \"\"\"Apply diagonal covaraiance Cauchy-distributed noise to the N,D array x.\n    Parameters:\n    -----------\n        x : array\n            (N,D) array of values\n        sigmas : array\n            D-element vector of std. dev. for each column of x\n    \"\"\"\n    n = np.random.standard_cauchy(size=(x.shape[0], len(sigmas))) * np.array(sigmas)\n    return x + n\n\n\ndef independent_sample(fn_list):\n    \"\"\"Take a list of functions that each draw n samples from a distribution\n    and concatenate the result into an n, d matrix\n    Parameters:\n    -----------\n        fn_list: list of functions\n                A list of functions of the form `sample(n)` that will take n samples\n                from a distribution.\n    Returns:\n    -------\n        sample_fn: a function that will sample from all of the functions and concatenate\n        them\n    \"\"\"\n\n    def sample_fn(n):\n        return np.stack([fn(n) for fn in fn_list]).T\n\n    return sample_fn\n\n\ndef convert_image_np2torch(image, size=256):\n    \"\"\"Converts an array of images from numpy to pytorch after normalization.\n    Parameters:\n    -----------\n        image: (B, H, W, 3) numpy array\n        size: rescale largest dimension of image to this size while maintaining aspect ratio\n\n    Returns:\n    --------\n        image: (B, C, H, W) torch tensor after channelwise normalization\n    \"\"\"\n    mean = torch.Tensor([[[[0.485, 0.456, 0.406]]]])\n    std = torch.Tensor([[[[0.229, 0.224, 0.225]]]])\n    image = torch.from_numpy(image).float() / 255.0\n    image = (image - mean) / std\n    image = rearrange(image, \"b h w c -> b c h w\")\n    image_height, image_width = image.shape[2:]\n    if image_width > image_height:\n        width = size\n        height = max(1, int(float(image_height) * width / image_width))\n    else:\n        height = size\n        width = max(1, int(float(image_width) * height / image_height))\n    image = torch.nn.functional.interpolate(\n        image, size=(height, width), mode=\"bilinear\", align_corners=False\n    )\n    return image\n\n\nclass ParticleFilter(object):\n    \"\"\"A particle filter object which maintains the internal state of a population of particles, and can\n    be updated given observations.\n\n    Attributes:\n    -----------\n\n    n_particles : int\n        number of particles used (N)\n    d : int\n        dimension of the internal state\n    resample_proportion : float\n        fraction of particles resampled from prior at each step\n    particles : array\n        (N,D) array of particle states\n    original_particles : array\n        (N,D) array of particle states *before* any random resampling replenishment\n        This should be used for any computation on the previous time step (e.g. computing\n        expected values, etc.)\n    mean_hypothesis : array\n        The current mean hypothesized observation\n    mean_state : array\n        The current mean hypothesized internal state D\n    map_hypothesis:\n        The current most likely hypothesized observation\n    map_state:\n        The current most likely hypothesized state\n    n_eff:\n        Normalized effective sample size, in range 0.0 -> 1.0\n    weight_entropy:\n        Entropy of the weight distribution (in nats)\n    hypotheses : array\n        The (N,...) array of hypotheses for each particle\n    weights : array\n        N-element vector of normalized weights for each particle.\n    \"\"\"\n\n    def __init__(\n        self,\n        prior_fn,\n        init_template,\n        observe_fn=None,\n        resample_fn=None,\n        n_particles=200,\n        dynamics_fn=None,\n        noise_fn=None,\n        weight_fn=None,\n        similarity_net=None,\n        use_deep_similarity=None,\n        device=None,\n        resample_proportion=None,\n        column_names=None,\n        internal_weight_fn=None,\n        transform_fn=None,\n        n_eff_threshold=1.0,\n    ):\n        \"\"\"\n\n        Parameters:\n        -----------\n\n        prior_fn : function(n) = > states\n                a function that generates N samples from the prior over internal states, as\n                an (N,D) particle array\n        observe_fn : function(states) => observations\n                    transformation function from the internal state to the sensor state. Takes an (N,D) array of states\n                    and returns the expected sensor output as an array (e.g. a (N,W,H) tensor if generating W,H dimension images).\n        resample_fn: A resampling function weights (N,) => indices (N,)\n        n_particles : int\n                     number of particles in the filter\n        dynamics_fn : function(states) => states\n                      dynamics function, which takes an (N,D) state array and returns a new one with the dynamics applied.\n        noise_fn : function(states) => states\n                    noise function, takes a state vector and returns a new one with noise added.\n        weight_fn :  function(hypothesized, real) => weights\n                    computes the distance from the real sensed variable and that returned by observe_fn. Takes\n                    a an array of N hypothesised sensor outputs (e.g. array of dimension (N,W,H)) and the observed output (e.g. array of dimension (W,H)) and\n                    returns a strictly positive weight for the each hypothesis as an N-element vector.\n                    This should be a *similarity* measure, with higher values meaning more similar, for example from an RBF kernel.\n        internal_weight_fn :  function(states, observed) => weights\n                    Reweights the particles based on their *internal* state. This is function which takes\n                    an (N,D) array of internal states and the observation and\n                    returns a strictly positive weight for the each state as an N-element vector.\n                    Typically used to force particles inside of bounds, etc.\n        transform_fn: function(states, weights) => transformed_states\n                    Applied at the very end of the update step, if specified. Updates the attribute\n                    `transformed_particles`. Useful when the particle state needs to be projected\n                    into a different space.\n        resample_proportion : float\n                    proportion of samples to draw from the initial on each iteration.\n        n_eff_threshold=1.0: float\n                    effective sample size at which resampling will be performed (0.0->1.0). Values\n                    <1.0 will allow samples to propagate without the resampling step until\n                    the effective sample size (n_eff) drops below the specified threshold.\n        column_names : list of strings\n                    names of each the columns of the state vector\n\n        \"\"\"\n        self.resample_fn = resample_fn or resample\n        self.column_names = column_names\n        self.prior_fn = prior_fn\n        self.n_particles = n_particles\n        self.init_filter()\n        self.n_eff_threshold = n_eff_threshold\n        self.d = self.particles.shape[1]\n        self.observe_fn = observe_fn or identity\n        self.dynamics_fn = dynamics_fn or identity\n        self.noise_fn = noise_fn or identity\n        self.weight_fn = weight_fn or squared_error\n        self.weights = np.ones(self.n_particles) / self.n_particles\n        self.transform_fn = transform_fn\n        self.transformed_particles = None\n        self.resample_proportion = resample_proportion or 0.0\n        self.internal_weight_fn = internal_weight_fn\n        self.original_particles = np.array(self.particles)\n        self.template = init_template.astype(np.float)\n        self.similarity_net = similarity_net\n        self.use_deep_similarity = use_deep_similarity\n        self.device = device\n        self.alpha = 0.001\n\n    def init_filter(self, mask=None):\n        \"\"\"Initialise the filter by drawing samples from the prior.\n\n        Parameters:\n        -----------\n        mask : array, optional\n            boolean mask specifying the elements of the particle array to draw from the prior. None (default)\n            implies all particles will be resampled (i.e. a complete reset)\n        \"\"\"\n        new_sample = self.prior_fn(self.n_particles)\n\n        # resample from the prior\n        if mask is None:\n            self.particles = new_sample\n        else:\n            self.particles[mask, :] = new_sample[mask, :]\n\n    def update(self, observed=None, **kwargs):\n        \"\"\"Update the state of the particle filter given an observation.\n\n        Parameters:\n        ----------\n\n        observed: array\n            The observed output, in the same format as observe_fn() will produce. This is typically the\n            input from the sensor observing the process (e.g. a camera image in optical tracking).\n            If None, then the observation step is skipped, and the filter will run one step in prediction-only mode.\n\n        kwargs: any keyword arguments specified will be passed on to:\n            observe_fn(y, **kwargs)\n            weight_fn(x, **kwargs)\n            dynamics_fn(x, **kwargs)\n            noise_fn(x, **kwargs)\n            internal_weight_function(x, y, **kwargs)\n            transform_fn(x, **kwargs)\n        \"\"\"\n\n        # apply dynamics and noise\n        self.particles = self.noise_fn(\n            self.dynamics_fn(self.particles, **kwargs), **kwargs\n        )\n\n        # hypothesise observations\n        self.hypotheses = self.observe_fn(\n            self.particles, observed, self.template.shape[:2], **kwargs\n        )\n\n        zero_hypothesis = (self.hypotheses.shape[0] == 0) or (\n            self.hypotheses.shape[1] == 0\n        )\n        zero_template = (self.template.shape[0] == 0) or (self.template.shape[1] == 0)\n        if (observed is not None) and (not zero_hypothesis) and (not zero_template):\n            # compute similarity to observations\n            # force to be positive\n            # compute feature embedddings\n            if self.use_deep_similarity:\n                hypotheses_t = convert_image_np2torch(self.hypotheses).to(self.device)\n                template_t = convert_image_np2torch(self.template[np.newaxis, ...]).to(\n                    self.device\n                )\n                with torch.no_grad():\n                    # For memory efficiency\n                    hypotheses_f = []\n                    B = 64\n                    for i in range(0, hypotheses_t.shape[0], B):\n                        hypotheses_f.append(\n                            self.similarity_net(hypotheses_t[i : (i + B)])\n                        )\n                    hypotheses_f = torch.cat(hypotheses_f, dim=0)\n                    template_f = self.similarity_net(template_t)\n                del hypotheses_t\n                del template_t\n            else:\n                hypotheses_f = self.hypotheses.astype(np.float)\n                template_f = self.template.astype(np.float)\n\n            self.similarities = np.array(\n                self.weight_fn(hypotheses_f, template_f, **kwargs)\n            )\n            if self.use_deep_similarity:\n                del hypotheses_f\n                del template_f\n            weights = np.clip(\n                np.multiply(self.weights, self.similarities),\n                0.0000001,\n                np.inf,\n            )\n        else:\n            # we have no observation, so all particles weighted the same\n            self.similarities = np.ones((self.n_particles,))\n            weights = np.multiply(self.weights, self.similarities)\n\n        self.scores = weights\n\n        # apply weighting based on the internal state\n        # most filters don't use this, but can be a useful way of combining\n        # forward and inverse models\n        if self.internal_weight_fn is not None:\n            internal_weights = self.internal_weight_fn(\n                self.particles, observed, **kwargs\n            )\n            internal_weights = np.clip(internal_weights, 0, np.inf)\n            internal_weights = internal_weights / np.sum(internal_weights)\n            weights *= internal_weights\n\n        # normalise weights to resampling probabilities\n        self.weight_normalisation = np.sum(weights)\n        self.weights = weights / self.weight_normalisation\n\n        # Compute effective sample size and entropy of weighting vector.\n        # These are useful statistics for adaptive particle filtering.\n        self.n_eff = (1.0 / np.sum(self.weights**2)) / self.n_particles\n        self.weight_entropy = np.sum(self.weights * np.log(self.weights))\n\n        # preserve current sample set before any replenishment\n        self.original_particles = np.array(self.particles)\n\n        # store mean (expected) hypothesis\n        self.mean_hypothesis = np.sum(self.hypotheses.T * self.weights, axis=-1).T\n        self.mean_state = np.sum(self.particles.T * self.weights, axis=-1).T\n        self.cov_state = np.cov(self.particles, rowvar=False, aweights=self.weights)\n\n        # store MAP estimate\n        argmax_weight = np.argmax(self.weights)\n        self.argmax_weight = argmax_weight\n        self.map_weight = self.weights[argmax_weight]\n        self.map_state = self.particles[argmax_weight]\n        self.map_hypothesis = self.hypotheses[argmax_weight]\n        self.map_similarity = self.similarities[argmax_weight]\n        if zero_hypothesis or zero_template:\n            self.map_similarity = 0.0\n\n        # apply any post-processing\n        if self.transform_fn:\n            self.transformed_particles = self.transform_fn(\n                self.original_particles, self.weights, **kwargs\n            )\n        else:\n            self.transformed_particles = self.original_particles\n\n        # resampling (systematic resampling) step\n        if self.n_eff < self.n_eff_threshold:\n            indices = self.resample_fn(self.weights)\n            self.particles = self.particles[indices, :]\n            self.weights = np.ones(self.n_particles) / self.n_particles\n\n        # update prior\n        r, c, sr, sc = self.map_state\n        prior_fn = independent_sample(\n            [\n                norm(loc=r, scale=observed.shape[0] * 0.07).rvs,\n                norm(loc=c, scale=observed.shape[1] * 0.07).rvs,\n                norm(loc=sr, scale=0.05).rvs,\n                norm(loc=sc, scale=0.05).rvs,\n            ]\n        )\n        self.prior_fn = prior_fn\n\n        # randomly resample some particles from the prior\n        if self.resample_proportion > 0:\n            random_mask = (\n                np.random.random(size=(self.n_particles,)) < self.resample_proportion\n            )\n            self.resampled_particles = random_mask\n            self.init_filter(mask=random_mask)\n\n        # update template\n        self.template = (\n            self.alpha * self.map_hypothesis + (1 - self.alpha) * self.template\n        )\n\n    def viz_particles(self, observed):\n        import cv2\n\n        for p in self.particles:\n            observed = cv2.drawMarker(\n                observed,\n                (int(p[1]), int(p[0])),\n                (0, 0, 255),\n                markerType=cv2.MARKER_STAR,\n                markerSize=10,\n                thickness=2,\n                line_type=cv2.LINE_AA,\n            )\n"
  },
  {
    "path": "VQ2D/vq2d/tracking/tracker.py",
    "content": "from .kys import KYSRunner\nfrom .particle_filter import PFRunner\n\n\nclass Tracker:\n    \"\"\"\n    A generic tracker that selects a specific version based on config.\n    The set of existing trackers implemented. This can be extended to\n    include more complex ones.\n    \"\"\"\n\n    valid_trackers = [\"pfilter\", \"kys\"]\n\n    def __init__(self, cfg, device):\n        self.cfg = cfg\n        self.device = device\n        assert self.cfg.tracker.type in self.valid_trackers, (\n            f\"Tracker type {self.cfg.tracker.type} is invalid!\"\n            f\"Please select one of the following: {self.valid_trackers}\"\n        )\n        self.initialize_runner()\n\n    def initialize_runner(self):\n        if self.cfg.tracker.type == \"pfilter\":\n            self.tracker = PFRunner(self.cfg, self.device)\n        elif self.cfg.tracker.type == \"kys\":\n            self.tracker = KYSRunner(self.cfg, self.device)\n\n    def __call__(self, *args, **kwargs):\n        outputs = self.tracker(*args, **kwargs)\n        return outputs\n"
  },
  {
    "path": "VQ2D/vq2d/tracking/utils.py",
    "content": "import cv2\nimport numpy as np\n\nfrom ..structures import BBox\n\n\ndef draw_bbox(image: np.ndarray, bbox: BBox) -> np.ndarray:\n    x1 = bbox.x1\n    x2 = bbox.x2\n    y1 = bbox.y1\n    y2 = bbox.y2\n    image = cv2.rectangle(image, (x1, y1), (x2, y2), (255, 0, 0), 2)\n    return image\n"
  },
  {
    "path": "VQ3D/README.md",
    "content": "# Visual Queries 3D localization\n\n<p align=\"center\">\n    <img src='imgs/ego4d-vq3d-demo.png' alt=\"teaser figure\" width=\"70%\"/>\n</p>\n\n\n## Installation instructions\n\nThe code has been tested with Ubuntu > 16.04 and Python 3.7\n\n1. Clone the repositiory from [here](https://github.com/EGO4D/episodic-memory).\n    ```\n    git clone git@github.com:EGO4D/episodic-memory.git\n    cd episodic-memory/VQ3D\n    ```\n2. Load the git submodules\n    ```\n    git submodule init\n    git submodule update\n    ```\n\n3. Create a conda environment.\n    ```\n    conda create -n ego4d_vq3d python=3.7\n    ```\n\n4. Install the requirements using pip:\n    ```\n    pip install -r requirements.txt\n    ```\n\n5. Install COLMAP following these [intructions](https://colmap.github.io/install.html). Don't forget to add the path to colmap into your PATH environment variable.\n\n\n\n## Data\n1. Download the data using the [client](https://github.com/facebookresearch/Ego4d/blob/main/ego4d/cli/README.md). Place the data into the ./data folder.\n    ```\n    python -m ego4d.cli.cli --output_directory ~/episodic-memory/VQ3D/data/ --dataset full_scale --universities unict\n    python -m ego4d.cli.cli --output_directory ~/episodic-memory/VQ3D/data/ --dataset annotations\n    python -m ego4d.cli.cli --output_directory ~/episodic-memory/VQ3D/data/ --dataset 3d\n    ```\n\n2. [UPDATE] construct the 5fps clips using the [VQ2D tools](https://github.com/EGO4D/episodic-memory/tree/main/VQ2D). (clips downloaded directly from the client are at 30fps. In the VQ tasks we use 5fps.)\n    ```\n    python convert_videos_to_clips.py\n    ```\n\n2. Generate the `<split>_annot.json` following the instruction under the VQ2D [folder](https://github.com/EGO4D-Consortium/episodic-memory/tree/main/VQ2D) - step 2 from the “Running experiments” section. Place the files under ./data/\n\n\n## Workflow\n\n### Camera pose estimation\n```\ncd camera_pose_estimation/\n```\n\n1. Compute the camera intrinsics.\n\n* Extract all video frames.\n    ```\n    python extract_frames_all_clips.py \\\n        --input_dir data/v1/full_scale/ \\\n        --output_dir data/v1/videos_frames/ \\\n        --clips_json data/v1/3d/all_videos_for_vq3d_v1.json \\\n        --j 8 # number of parallel processes. Increase for spead.\n    ```\n\n* Pre-select frames for COLMAP\n    ```\n    python extract_frames_for_colmap.py \\\n        --input_dir data/v1/videos_frames/ \\\n        --output_dir data/v1/videos_frames_for_sfm/ \\\n        --j 8 # number of parallel processes. Increase for spead.\n    ```\n\n* Run COLMAP on the pre-selected frames\n    ```\n    python get_intrinsics_for_all_clips.py \\\n        --input_dir data/v1/videos_frames_for_sfm/ \\\n        --output_dir data/v1/videos_sfm/\n    ```\n\n* For videos where sfm fails we run a greedy version of the reconstruction where we select 100 frames in the middle of the video.\n    ```\n    python get_intrinsics_for_all_clips_greedy.py \\\n        --input_dir data/v1/videos_frames/ \\\n        --sfm_input_dir data/v1/videos_frames_for_sfm_greedy/ \\\n        --output_dir data/v1/videos_sfm_greedy/\n    ```\n\n* Get intrinsics for each clips.\n    ```\n    python get_median_intrinsics.py \\\n        --input_dir data/v1/videos_sfm/ \\\n        --input_dir_greedy data/v1/videos_sfm_greedy/ \\\n        --annotation_dir_greedy data/v1/annotations/ \\\n        --output_filename data/v1/scan_to_intrinsics.json\n    ```\n\n* Note: To help reproducibility camera intrinsics have been added here: `data/scan_to_intrinsics.json`\n\n2. Compute the camera poses\n\n* Extract all clips frames.\n    ```\n    python extract_frames_all_clips.py \\\n        --input_dir data/v1/clips/ \\\n        --output_dir data/v1/clips_frames/ \\\n        --clips_json data/v1/3d/all_clips_for_vq3d_v1.json \\\n        --j 8 # number of parallel processes. Increase for spead.\n    ```\n\n* Get the camera poses for all frames of all clips\n    ```\n    python run_all_data.py\n        --input_dir data/v1/clips_frames/ \\\n        --query_filename data/v1/annotations/vq3d_val.json \\\n        --camera_intrinsics_filename data/v1/scan_to_intrinsics.json \\\n        --scans_keypoints_dir data/v1/3d/scans_keypoints/ \\\n        --scans_dir data/v1/3d/scans/ \\\n        --output_dir data/v1/clips_camera_poses/ \\\n    ```\n\n* Note-1: Camera pose estimation results on the val set have been included for reference here: `data/all_clips_camera_poses_val.json`\n* Note-2: To help reproducibility we are also providing the data for all the intermediate steps to compute the poses for one clip in the val set. You can download that information [here](https://drive.google.com/file/d/1n3dRCrpO0DACfTKwbv3A0YlhFdl6HJm-/view?usp=sharing)\n\n### Depth estimation\n```\ncd depth_estimation/\n```\n\n1. Prepare RGB inputs\n    ```\n    python prepare_inputs_for_depth_estimation.py \\\n        --input_dir data/v1/clips_camera_poses/ \\\n        --vq2d_results data/vq2d_results/siam_rcnn_residual_kys_val.json \\\n        --vq2d_annot data/v1/annotations/val_annot.json \\\n        --vq3d_queries data/v1/annotations/vq3d_val.json \\\n        --vq2d_queries data/v1/annotations/vq_val.json\n    ```\n\n2. Compute Depths\n    ```\n    python compute_depth_for_ego4d.py \\\n        --input_dir data/v1/clips_camera_poses/\n    ```\n\n### VQ3D\n```\ncd VQ3D/\n```\n\n1. Compute Ground-Truth vector in query frame coordinate system for queries with pose estimated.\n    ```\n    python scripts/prepare_ground_truth_for_queries.py \\\n        --input_dir data/v1/clips_camera_poses/ \\\n        --vq3d_queries data/v1/annotations/vq3d_val.json \\\n        --output_fileaname data/v1/annotations/vq3d_val_wgt.json \\\n        --vq2d_queries data/v1/vq_val.json\n    ```\n\n2. Compute 3D vector predictions\n    ```\n    python scripts/run.py \\\n        --input_dir data/v1/clips_camera_poses/ \\\n        --output_fileaname data/vq3d_results/siam_rcnn_residual_kys_val.json \\\n        --vq2d_results data/vq2d_results/siam_rcnn_residual_kys_val.json \\\n        --vq2d_annot data/v1/annotations/val_annot.json \\\n        --vq2d_queries data/v1/annotations/vq_val.json \\\n        --vq3d_queries data/v1/annotations/vq3d_val_wgt.json\n    ```\n\n3. Run evaluation\n    ```\n    python scripts/eval.py \\\n        --vq3d_results data/vq3d_results/siam_rcnn_residual_kys_val.json\n\n    ```\n\n* Note: To help reproducibility we provide the results for the val set here: `data/vq3d_results/siam_rcnn_residual_kys_val.json`\n\n\n## [UPDATES] Notes about the Challenge\n\n1. Please use the `vq3d_test_unannotated_template.json` file (under **data/**) for the challenge.\n   These queries are the same as the ones downloaded using the ego4d-client, we have added the 'annotation_uid' entry to help match VQ3D and VQ2D queries.\n\n2. To find the corresponding VQ2D queries you should use the 'annotation_uid' entry found in each VQ3D query.\n   We have also added a `mapping_vq2d_to_vq3d_queries_annotations_test.json` to help find the corresponding queries.\n   Please refer to [these lines](https://github.com/EGO4D/episodic-memory/blob/2118006b2c7a182ff93416cc876bc4623192a4c9/VQ3D/VQ3D/scripts/run.py#L171) to understand how to use it.\n\n3. To create a submission for the challenge you should use the `vq3d_test_unannotated_template.json` file and add the required information directly in it.\n\n\n[1]: https://arxiv.org/abs/2110.07058\n[2]: https://ego4d-data.org/\n"
  },
  {
    "path": "VQ3D/VQ3D/API/get_query_3d_ground_truth.py",
    "content": "import os\nimport sys\nimport cv2\nimport json\nimport fnmatch\nimport numpy as np\n\nfrom typing import Any, Dict, List, Optional, Tuple\n\nsys.path.append('../annotation_API/API/')\nfrom bounding_box import BoundingBox\n\n\nclass VisualQuery3DGroundTruth():\n    def __init__(self):\n        pass\n\n    def load_pose(self, dirname: str):\n        pose_dir = os.path.join(dirname, 'superglue_track', 'poses')\n\n        if not os.path.isfile(os.path.join(pose_dir,\n                                           'cameras_pnp_triangulation.npy')):\n            return None\n\n        original_image_ids = np.arange(0,len(fnmatch.filter(os.listdir(os.path.join(dirname,\n                                                                                     'color')),\n                                                             '*.jpg')))\n\n        valid_pose = np.load(os.path.join(pose_dir, 'good_pose_reprojection.npy'))\n        C_T_G = np.load(os.path.join(pose_dir, 'cameras_pnp_triangulation.npy'))\n\n        Ci_T_G = np.zeros((len(original_image_ids), 4, 4))\n        k = 0\n        for i in range(len(original_image_ids)):\n            if valid_pose[i]:\n                Ci_T_G[k] = np.concatenate((C_T_G[i], np.array([[0., 0., 0., 1.]])), axis=0)\n                k += 1\n            else:\n                Ci_T_G[k] = np.eye(4)\n                Ci_T_G[k][2, 3] = 100\n                k += 1\n\n        return Ci_T_G, valid_pose\n\n    def load_3d_annotation(self, data: Dict):\n        # use Ego4D-3D-Annotation API\n        box = BoundingBox()\n        box.load(data)\n        return box.center\n\n\n    def create_traj_azure(self, output_traj, K, Ci_T_G=None):\n\n        d = json.load(open('../camera_pose_estimation/Visualization/camera_trajectory.json', 'r'))\n        dp0 = d['parameters'][0]\n        dp0['intrinsic']['width'] = int((K[6]+0.5)*2)\n        dp0['intrinsic']['height'] = int((K[7]+0.5)*2)\n        dp0['intrinsic']['intrinsic_matrix'] = K.tolist()\n        dp0['extrinsic'] = []\n        x = []\n\n\n        if Ci_T_G is not None:\n            for i in range(Ci_T_G.shape[0]):\n                temp = dp0.copy()\n\n                # E = np.linalg.inv(G_T_Ci[i])\n                E = Ci_T_G[i]\n\n                E_v = np.concatenate([E[:, i] for i in range(4)], axis=0)\n                temp['extrinsic'] = E_v.tolist()\n                x.append(temp)\n\n        d['parameters'] = x\n        with open(output_traj, 'w') as f:\n            json.dump(d, f)\n\n\n\n    def read_pfm(self, path):\n        import sys\n        import re\n        import numpy as np\n        import cv2\n        import torch\n\n        from PIL import Image\n        \"\"\"Read pfm file.\n        Args:\n            path (str): path to file\n        Returns:\n            tuple: (data, scale)\n        \"\"\"\n        with open(path, \"rb\") as file:\n\n            color = None\n            width = None\n            height = None\n            scale = None\n            endian = None\n\n            header = file.readline().rstrip()\n            if header.decode(\"ascii\") == \"PF\":\n                color = True\n            elif header.decode(\"ascii\") == \"Pf\":\n                color = False\n            else:\n                raise Exception(\"Not a PFM file: \" + path)\n\n            dim_match = re.match(r\"^(\\d+)\\s(\\d+)\\s$\", file.readline().decode(\"ascii\"))\n            if dim_match:\n                width, height = list(map(int, dim_match.groups()))\n            else:\n                raise Exception(\"Malformed PFM header.\")\n\n            scale = float(file.readline().decode(\"ascii\").rstrip())\n            if scale < 0:\n                # little-endian\n                endian = \"<\"\n                scale = -scale\n            else:\n                # big-endian\n                endian = \">\"\n\n            data = np.fromfile(file, endian + \"f\")\n            shape = (height, width, 3) if color else (height, width)\n\n            data = np.reshape(data, shape)\n            data = np.flipud(data)\n\n            return data, scale\n\n\n"
  },
  {
    "path": "VQ3D/VQ3D/API/metrics.py",
    "content": "import os\nimport sys\nimport numpy as np\n\nsys.path.append('../annotation_API/API/')\nfrom bounding_box import BoundingBox\n\nclass distL2():\n    def compute(self, v1:np.ndarray, v2:np.ndarray) -> float:\n        d = np.linalg.norm(v1-v2)\n        return d\n\nclass angularError():\n    def compute(self, v1:np.ndarray, v2:np.ndarray) -> float:\n        angle = np.arccos(np.dot(v1, v2) / (np.linalg.norm(v1) * np.linalg.norm(v2)))\n        return angle\n\n\nRz_90 = np.array([[np.cos(-np.pi/2), -np.sin(-np.pi/2), 0, 0],\n                  [np.sin(-np.pi/2),  np.cos(-np.pi/2), 0, 0],\n                  [0, 0, 1, 0],\n                  [0, 0, 0, 1],\n                 ])\n\nclass accuracy():\n    def compute(self, t:np.ndarray, box1:BoundingBox, box2:BoundingBox) -> bool:\n\n        c = (box1.center + box2.center) / 2.0\n        \n        c = np.append(c, 1.)\n        c = np.matmul(Rz_90, c)\n        c = c[:3] / c[3]\n\n        d = np.linalg.norm(c-t)\n        d_gt = np.linalg.norm(box1.center - box2.center)\n\n        diag1 = np.sqrt(np.sum(box1.sizes**2))\n        diag2 = np.sqrt(np.sum(box2.sizes**2))\n\n        m = np.mean([diag1, diag2])\n        delta = np.exp(-m)\n\n        return d < 6*(d_gt + delta)\n"
  },
  {
    "path": "VQ3D/VQ3D/README.md",
    "content": "# Ego4D-VQ3D\n\nRun the VQ3D experiments\n"
  },
  {
    "path": "VQ3D/VQ3D/scripts/eval.py",
    "content": "import os\nimport sys\nimport json\nimport argparse\n\nimport numpy as np\n\nsys.path.append('API/')\nfrom metrics import distL2\nfrom metrics import angularError\nfrom metrics import accuracy\n\nsys.path.append('../annotation_API/API/')\nfrom bounding_box import BoundingBox\n\n\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--vq3d_results\",\n        type=str,\n        default='data/vq3d_results/siam_rcnn_residual_kys_val.json',\n        help=\"Camera pose folder\"\n    )\n    args = parser.parse_args()\n\n\n    # Visual Query 3D queries\n    vq3d_queries = json.load(open(args.vq3d_results, 'r'))\n\n    dl2 = distL2()\n    dangle = angularError()\n    acc = accuracy()\n\n    all_l2 = []\n    all_angles = []\n    all_acc = []\n\n    metrics = {'total':0,\n               'l2':[],\n               'angles':[],\n               'success*': [],\n               'success_overall': [],\n               'total_wQframe_pose':0,\n               'total_3d_estimation':0,\n              }\n\n    cpt_valid_queries = 0\n    for video in vq3d_queries['videos']:\n        video_uid = video['video_uid']\n        for clip in video['clips']:\n            clip_uid = clip['clip_uid']\n            for ai, annot in enumerate(clip['annotations']):\n                if not annot: continue\n                for qset_id, qset in annot['query_sets'].items():\n\n                    metrics['total']+=1\n\n                    if not 'pred_3d_vec_world' in qset: continue\n\n                    pred_t = np.array(qset['pred_3d_vec_world'])\n                    gt_t = np.array(qset['gt_3d_vec_world_1'])\n\n                    # compute L2 metric with first annotation\n                    l2error = dl2.compute(pred_t, gt_t)\n                    metrics['l2'].append(l2error)\n\n                    # compute accuracy with the two bounding boxes\n                    box1 = BoundingBox(qset['3d_annotation_1'])\n\n                    box2 = BoundingBox(qset['3d_annotation_2'])\n\n                    a = acc.compute(pred_t, box1, box2)\n                    metrics['success*'].append(a)\n\n                    # count total\n                    metrics['total_3d_estimation']+=1\n\n                    # count total and angular error with Query frame pose\n                    if 'pred_3d_vec' in qset:\n                        \n                        # compute angular metric with first annotation\n                        pred_3d_vec = np.array(qset['pred_3d_vec'])\n                        gt_3d_vec = np.array(qset['gt_3d_vec_1'])\n                        angleerror = dangle.compute(pred_3d_vec, \n                                                    gt_3d_vec)\n                        metrics['angles'].append(angleerror)\n\n                        metrics['total_wQframe_pose']+=1\n                        metrics['success_overall'].append(a)\n\n\n\n    print('total number of queries: ', metrics['total'])\n    print('queries with 3D estimation: ', metrics['total_3d_estimation'])\n    print('queries with poses for both RT and QF: ', metrics['total_wQframe_pose'])\n    print(' ')\n    avg_l2 = np.mean(metrics['l2'])\n    avg_angle = np.mean(metrics['angles'])\n    success_star = np.sum(metrics['success*']) / metrics['total_3d_estimation'] * 100.0\n    success = np.sum(metrics['success_overall']) / metrics['total'] * 100.0\n    print('L2: ', avg_l2)\n    print('angular: ', avg_angle)\n    print('Success* : ', success_star)\n    print('Success : ', success)\n    print('QwP ratio : ', metrics['total_wQframe_pose'] / metrics['total'] * 100.0)\n\n\n\n"
  },
  {
    "path": "VQ3D/VQ3D/scripts/prepare_ground_truth_for_queries.py",
    "content": "import os\nimport sys\nimport csv\nimport json\nimport argparse\nimport numpy as np\n\nfrom typing import Any, Dict, List, Optional, Tuple\n\nsys.path.append('API/')\nfrom get_query_3d_ground_truth import VisualQuery3DGroundTruth\n\n\ndef parse_VQ2D_queries(filename: str) -> Dict:\n    output = {}\n    data = json.load(open(filename, 'r'))\n    for video in data['videos']:\n        video_uid = video['video_uid']\n        if video_uid not in output:\n            output[video_uid]={}\n        for clip in video['clips']:\n            clip_uid = clip['clip_uid']\n            if clip_uid not in output[video_uid]:\n                output[video_uid][clip_uid]={}\n            for ai, annot in enumerate(clip['annotations']):\n                if ai not in output[video_uid][clip_uid]:\n                    output[video_uid][clip_uid][ai]={}\n                for qset_id, qset in annot['query_sets'].items():\n                    if not qset[\"is_valid\"]:\n                        continue\n                    output[video_uid][clip_uid][ai][qset_id] = {\n                        \"query_frame\": qset[\"query_frame\"],\n                        \"object_title\": qset[\"object_title\"],\n                    }\n    return output\n\n\nRz_90 = np.array([[np.cos(-np.pi/2), -np.sin(-np.pi/2), 0, 0],\n                  [np.sin(-np.pi/2),  np.cos(-np.pi/2), 0, 0],\n                  [0, 0, 1, 0],\n                  [0, 0, 0, 1],\n                 ])\n\n\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/clips_from_videos_camera_poses/',\n        help=\"Camera pose folder\"\n    )\n    parser.add_argument(\n        \"--vq3d_queries\",\n        type=str,\n        default='data/vq3d_val.json',\n        help=\"VQ3D query file\"\n    )\n    parser.add_argument(\n        \"--output_filename\",\n        type=str,\n        default='data/vq3d_val_wgt.json',\n        help=\"VQ3D query file with GT pred vector 3d\"\n    )\n    parser.add_argument(\n        \"--vq2d_queries\",\n        type=str,\n        default='data/vq_val.json',\n        help=\"VQ3D query file\"\n    )\n\n    args = parser.parse_args()\n\n    root_dir = args.input_dir\n    output_filename = args.output_filename\n\n    # Visual Query 3D queries\n    vq3d_queries = json.load(open(args.vq3d_queries, 'r'))\n\n    # Visual Query 2D results\n    vq2d_queries = parse_VQ2D_queries(args.vq2d_queries)\n\n    # Load mapping VQ2D to VQ3D queries/annotations\n    if 'val' in args.vq2d_queries:\n        split='val'\n    elif 'train' in args.vq2d_queries:\n        split='train'\n    elif 'test' in args.vq2d_queries:\n        split='test'\n    else:\n        raise ValueError\n    query_matching_filename=f'data/mapping_vq2d_to_vq3d_queries_annotations_{split}.json'\n    query_matching = json.load(open(query_matching_filename, 'r'))\n\n    helper = VisualQuery3DGroundTruth()\n\n    cpt_valid_queries = 0\n    for video in vq3d_queries['videos']:\n        video_uid = video['video_uid']\n        for clip in video['clips']:\n            clip_uid = clip['clip_uid']\n            for ai, annot in enumerate(clip['annotations']):\n                if not annot: continue\n                for qset_id, qset in annot['query_sets'].items():\n\n                    mapping_ai=query_matching[video_uid][clip_uid][str(ai)][qset_id]['ai']\n                    mapping_qset_id=query_matching[video_uid][clip_uid][str(ai)][qset_id]['qset_id']\n\n                    assert qset['object_title']==vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id]['object_title']\n                    query_frame=vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id]['query_frame']\n\n                    # -- -- get GT object centroid in world system\n                    for w in [1, 2]:\n                        vec = helper.load_3d_annotation(qset[f'3d_annotation_{w}'])\n                        \n                        vec = np.append(vec, 1.)\n                        vec = np.matmul(Rz_90, vec)\n                        vec = vec[:3] / vec[3]\n\n                        qset[f'gt_3d_vec_world_{w}'] = vec.tolist()\n\n\n                    # -- -- compute vector in Query frame coord system\n                    # get pose\n                    dirname = os.path.join(root_dir,\n                                           clip_uid,\n                                           'egovideo')\n\n                    if not os.path.isdir(dirname): continue\n\n                    poses = helper.load_pose(dirname)\n\n                    if poses is None: continue\n\n                    T, valid_pose = poses\n\n                    if query_frame > (len(valid_pose) - 1):\n                        continue\n                    if not valid_pose[query_frame]:\n                        continue\n\n                    pose = T[query_frame]\n\n                    pose_inv = np.linalg.inv(pose)\n\n                    for w in [1, 2]:\n                        vec = np.array(qset[f'gt_3d_vec_world_{w}'])\n                        vec = np.append(vec, 1.0)\n\n                        gt_3d_vec = np.matmul(pose_inv, vec)\n                        gt_3d_vec = gt_3d_vec[:3] / gt_3d_vec[3]\n\n                        qset[f'gt_3d_vec_{w}'] = gt_3d_vec.tolist()\n\n                    cpt_valid_queries += 1\n\nprint('number of valide queries: ', cpt_valid_queries)\njson.dump(vq3d_queries, open(output_filename, 'w'))\n"
  },
  {
    "path": "VQ3D/VQ3D/scripts/run.py",
    "content": "import os\nimport sys\nimport json\nimport h5py\nimport torch\nimport argparse\nimport numpy as np\n\nfrom typing import Any, Dict, List, Optional, Tuple\n\nsys.path.append('API/')\nfrom get_query_3d_ground_truth import VisualQuery3DGroundTruth\n\n\ndef scale_im_height(image, H):\n    im_H, im_W = image.shape[:2]\n    W = int(1.0 * H * im_W / im_H)\n    return cv2.resize(image, (W, H))\n\ndef _get_box(annot_box):\n    x, y, w, h = annot_box[\"x\"], annot_box[\"y\"], annot_box[\"width\"], annot_box[\"height\"]\n    return (int(x), int(y), int(x + w), int(y + h))\n\ndef parse_VQ2D_queries(filename: str) -> Dict:\n    output = {}\n    data = json.load(open(filename, 'r'))\n    for video in data['videos']:\n        video_uid = video['video_uid']\n        if video_uid not in output:\n            output[video_uid]={}\n        for clip in video['clips']:\n            clip_uid = clip['clip_uid']\n            if clip_uid not in output[video_uid]:\n                output[video_uid][clip_uid]={}\n            for ai, annot in enumerate(clip['annotations']):\n                if ai not in output[video_uid][clip_uid]:\n                    output[video_uid][clip_uid][ai]={}\n                for qset_id, qset in annot['query_sets'].items():\n                    if not qset[\"is_valid\"]:\n                        continue\n                    output[video_uid][clip_uid][ai][qset_id] = {\n                        \"query_frame\": qset[\"query_frame\"],\n                        \"object_title\": qset[\"object_title\"],\n                        \"visual_crop\": qset[\"visual_crop\"],\n                        \"response_track\": qset[\"response_track\"],\n                    }\n    return output\n\ndef parse_VQ2D_predictions(filename: str) -> Dict:\n    output = {}\n    data = json.load(open(filename, 'r'))\n    for i in range(len(data['dataset_uids'])):\n        dataset_uid = data['dataset_uids'][i]\n        output[dataset_uid] = {'pred': data['predicted_response_track'][i],\n                               'gt': data['ground_truth_response_track'][i]}\n    return output\n\n\ndef parse_VQ2D_mapper(filename: str) -> Dict:\n    data = json.load(open(filename,'r'))\n    output = {}\n    for i in range(len(data)):\n        dataset_uid = data[i]['dataset_uid']\n        video_uid = data[i]['metadata']['video_uid']\n        clip_uid = data[i]['clip_uid']\n        query_set = data[i]['query_set']\n        query_frame = data[i]['query_frame']\n        object_title = data[i]['object_title']\n        visual_crop = data[i]['visual_crop']\n        if video_uid not in output:\n            output[video_uid]={}\n        if clip_uid not in output[video_uid]:\n            output[video_uid][clip_uid]={}\n        if query_set not in output[video_uid][clip_uid]:\n            output[video_uid][clip_uid][query_set]={}\n        if query_frame not in output[video_uid][clip_uid][query_set]:\n            output[video_uid][clip_uid][query_set][query_frame]=[]\n\n        output[video_uid][clip_uid][query_set][query_frame].append(\n            {'dataset_uid':dataset_uid,\n             'object_title':object_title,\n             'visual_crop':visual_crop,\n            }\n        )\n    return output\n\n\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/clips_from_videos_camera_poses/',\n        help=\"Camera pose folder\"\n    )\n    parser.add_argument(\n        \"--output_filename\",\n        type=str,\n        default='data/vq3d_results/siam_rcnn_residual_kys_val.json',\n        help=\"Camera pose folder\"\n    )\n    parser.add_argument(\n        \"--vq2d_results\",\n        type=str,\n        default='data/vq2d_results/siam_rcnn_residual_kys_val.json',\n        help=\"filename for the VQ2D results\"\n    )\n    parser.add_argument(\n        \"--vq2d_annot\",\n        type=str,\n        default='data/val_annot.json',\n        help=\"VQ2D mapping queries\"\n    )\n    parser.add_argument(\n        \"--vq3d_queries\",\n        type=str,\n        default='data/vq3d_val_wgt.json',\n        help=\"VQ3D query file\"\n    )\n    parser.add_argument(\n        \"--vq2d_queries\",\n        type=str,\n        default='data/vq_val.json',\n        help=\"VQ3D query file\"\n    )\n    parser.add_argument(\n        \"--use_gt\",\n        action='store_true'\n    )\n    parser.add_argument(\n        \"--use_depth_from_scan\",\n        action='store_true'\n    )\n    args = parser.parse_args()\n\n    root_dir = args.input_dir\n\n    output_filename = args.output_filename\n\n    # Visual Query 3D queries\n    vq3d_queries = json.load(open(args.vq3d_queries, 'r'))\n\n    # Visual Query 2D results\n    vq2d_queries = parse_VQ2D_queries(args.vq2d_queries)\n    vq2d_pred = parse_VQ2D_predictions(args.vq2d_results)\n    vq2d_mapping = parse_VQ2D_mapper(args.vq2d_annot)\n\n    # Load mapping VQ2D to VQ3D queries/annotations\n    if 'val' in args.vq2d_queries:\n        split='val'\n    elif 'train' in args.vq2d_queries:\n        split='train'\n    elif 'test' in args.vq2d_queries:\n        split='test'\n    else:\n        raise ValueError\n    query_matching_filename=f'data/mapping_vq2d_to_vq3d_queries_annotations_{split}.json'\n    query_matching = json.load(open(query_matching_filename, 'r'))\n\n    helper = VisualQuery3DGroundTruth()\n\n    cpt_valid_queries = 0\n    for video in vq3d_queries['videos']:\n        video_uid = video['video_uid']\n        for clip in video['clips']:\n            clip_uid = clip['clip_uid']\n            for ai, annot in enumerate(clip['annotations']):\n                if not annot: continue\n                for qset_id, qset in annot['query_sets'].items():\n\n                    mapping_ai=query_matching[video_uid][clip_uid][str(ai)][qset_id]['ai']\n                    mapping_qset_id=query_matching[video_uid][clip_uid][str(ai)][qset_id]['qset_id']\n\n                    object_title=qset['object_title']\n                    assert qset['object_title']==vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id]['object_title']\n                    query_frame=vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id]['query_frame']\n                    oW=vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id][\"visual_crop\"][\"original_width\"]\n                    oH=vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id][\"visual_crop\"][\"original_height\"]\n\n                    dataset_uid=vq2d_mapping[video_uid][clip_uid][qset_id][query_frame][0]['dataset_uid']\n                    #dataset_uid=vq2d_mapping[video_uid][clip_uid][mapping_qset_id][query_frame][0]['dataset_uid']\n\n                    # get intrinsics\n                    camera_intrinsics = np.loadtxt(os.path.join(root_dir,\n                                                                clip_uid,\n                                                                'egovideo',\n                                                                'fisheye_intrinsics.txt'))\n                    W = camera_intrinsics[0]\n                    H = camera_intrinsics[1]\n                    f = camera_intrinsics[4]\n                    k1 = camera_intrinsics[5]\n                    k2 = camera_intrinsics[6]\n                    cx = W/2.0\n                    cy = H/2.0\n\n\n\n                    # get poses\n                    dirname = os.path.join(root_dir, clip_uid, 'egovideo')\n\n                    if not os.path.isdir(dirname): continue\n\n                    poses = helper.load_pose(dirname)\n                    if poses is None: continue\n\n                    T, valid_pose = poses\n\n                    frame_indices_valid = []\n                    local_frame_indices = []\n\n                    # get RT frames with poses\n                    if args.use_gt:\n                        response_track=vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id][\"response_track\"]\n                        for i, frame in enumerate(response_track):\n                            frame_index = frame['frame_number']\n\n                            if (frame_index > -1) and (frame_index < len(valid_pose)):\n\n                                box = _get_box(frame)\n                                x1, y1, x2, y2 = box\n\n                                if (x1<(W-1)) and (x2>1) and (y1<(H-1)) and (y2>1):\n                                    # check if pose is valid\n                                    if valid_pose[frame_index]:\n                                        frame_indices_valid.append(frame_index)\n                                        local_frame_indices.append(i)\n\n                    else:\n                        response_track = vq2d_pred[dataset_uid]['pred'][0]\n\n                        frames = response_track['bboxes']\n\n                        frame_indices = [x['fno'] for x in frames]\n\n                        for i, frame_index in enumerate(frame_indices):\n\n                            # check if frame index is valid\n                            if (frame_index > -1) and (frame_index < len(valid_pose)):\n\n                                # check if box is within frame bound:\n                                box = frames[i]\n                                x1 = box['x1']\n                                x2 = box['x2']\n                                y1 = box['y1']\n                                y2 = box['y2']\n\n                                if (x1<(W-1)) and (x2>1) and (y1<(H-1)) and (y2>1):\n\n                                    # check if pose is valid\n                                    if valid_pose[frame_index]:\n                                        frame_indices_valid.append(frame_index)\n                                        local_frame_indices.append(i)\n\n                    if len(frame_indices_valid) == 0: continue\n\n\n                    # get the last frame of the RT\n                    j = np.argmax(frame_indices_valid)\n                    frame_index_valid = frame_indices_valid[j]\n                    local_frame_index = local_frame_indices[j]\n\n\n                    # check if Query frame has pose\n                    if valid_pose[query_frame]:\n                        pose_Q = T[query_frame]\n                    else:\n                        pose_Q = None\n\n\n                    # get RT frame pose\n                    pose = T[frame_index_valid]\n\n                    cpt_valid_queries+=1\n\n\n                    # get depth\n                    if args.use_depth_from_scan:\n                        depth_dir = os.path.join(root_dir,\n                                                clip_uid,\n                                                'egovideo',\n                                                'pose_visualization_depth_superglue'\n                                                )\n                        framename = 'render_%07d' % frame_index_valid\n                        depth_filename = os.path.join(depth_dir,\n                                                      framename+'.h5')\n                        if os.path.isfile(depth_filename):\n                            data = h5py.File(depth_filename)\n                            depth = np.array(data['depth']) # in meters\n                        else:\n                            print('missing predicted depth')\n                            continue\n                    else:\n                        depth_dir = os.path.join(root_dir,\n                                                clip_uid,\n                                                'egovideo',\n                                                'depth_DPT_predRT'\n                                                )\n                        framename = 'color_%07d' % frame_index_valid\n                        depth_filename = os.path.join(depth_dir,\n                                                      framename+'.pfm')\n                        if os.path.isfile(depth_filename):\n                            data, scale = helper.read_pfm(depth_filename)\n                        else:\n                            print('missing predicted depth')\n                            continue\n\n                        depth = data/1000.0 # in meters\n\n\n                    # resize depth\n                    depth = torch.FloatTensor(depth)\n                    depth = depth.unsqueeze(0).unsqueeze(0)\n                    if args.use_gt:\n                        depth = torch.nn.functional.interpolate(depth,\n                                                                size=(int(oH),\n                                                                      int(oW)),\n                                                                mode='bilinear',\n                                                                align_corners=True)\n                    else:\n                        depth = torch.nn.functional.interpolate(depth,\n                                                                size=(int(H), int(W)),\n                                                                mode='bilinear',\n                                                                align_corners=True)\n                    depth = depth[0][0].cpu().numpy()\n\n                    # select d\n                    if args.use_gt:\n                        box = _get_box(response_track[local_frame_index])\n                        x1, y1, x2, y2 = box\n                    else:\n                        box = frames[local_frame_index]\n                        x1 = box['x1']\n                        x2 = box['x2']\n                        y1 = box['y1']\n                        y2 = box['y2']\n                        if x1<0: x1=0\n                        if y1<0: y1=0\n\n                    d = depth[y1:y2, x1:x2]\n\n                    if d.size == 0:\n                        continue\n\n                    d = np.median(d)\n\n                    tx = (x1+x2)/2.0\n                    ty = (y1+y2)/2.0\n\n                    # vec in current frame:\n                    z = d\n                    x = z * (tx -cx -0.5)/f\n                    y = z * (ty -cy -0.5)/f\n                    vec = np.ones(4)\n                    vec[0]=x\n                    vec[1]=y\n                    vec[2]=z\n\n                    # object center in world coord system\n                    pred_t = np.matmul(pose, vec)\n                    pred_t = pred_t / pred_t[3]\n\n                    print('Clip_uid: ', clip_uid,\n                          ' - ai: ', ai,\n                          ' - qset_id: ', qset_id,\n                          ' - object_title: ', object_title)\n                    # object center in Query frame coord system\n                    if pose_Q is not None:\n                        vec = np.matmul(np.linalg.inv(pose_Q), pred_t)\n                        vec = vec / vec[3]\n                        vec = vec[:3]\n                        qset['pred_3d_vec'] = vec.tolist()\n                        l1 = np.linalg.norm(vec-qset['gt_3d_vec_1'])\n                        l2 = np.linalg.norm(vec-qset['gt_3d_vec_2'])\n                        print('L2 distance with annotation 1 and 2 in query frame coord system',\n                              l1, ' ', l2)\n                    else:\n                        vec = None\n\n                    pred_t = pred_t[:3]\n                    world_dist_1 = np.linalg.norm(pred_t-qset['gt_3d_vec_world_1'])\n                    world_dist_2 = np.linalg.norm(pred_t-qset['gt_3d_vec_world_2'])\n                    print('L2 distance with annotation 1 and 2 in world coord system',\n                          world_dist_1, ' ', world_dist_2, '\\n')\n\n                    # save output for metric compute\n                    qset['pred_3d_vec_world'] = pred_t.tolist()\n\n    print(' valide # queries: ', cpt_valid_queries)\n    json.dump(vq3d_queries, open(output_filename, 'w'))\n\n"
  },
  {
    "path": "VQ3D/annotation_API/API/bounding_box.py",
    "content": "import os\nimport json\nimport numpy as np\nfrom typing import Any, Dict, List, Optional, Tuple\n\nclass BoundingBox():\n    def __init__(self, data: Any = None, scale=1.0):\n        self.scale = scale\n        if data:\n            self.load(data)\n\n    def load(self, data: Any ) -> None:\n        if type(data) is dict:\n            position = data['position']\n            rotation = data['rotation']\n            dimension = data['dimension']\n        elif type(data) is str:\n            f = json.load(open(data, 'r'))\n\n            position = f['frames'][0]['items'][0]['position']\n            rotation = f['frames'][0]['items'][0]['rotation']\n            dimension = f['frames'][0]['items'][0]['dimension']\n        else:\n            raise NotImplementedError\n\n        self.center = np.array([position['x'],\n                                position['y'],\n                                position['z']]) * self.scale\n\n        self.sizes = np.array([dimension['x'],\n                               dimension['y'],\n                               dimension['z']]) * self.scale\n\n        self.rotation = np.array([rotation['x'],\n                                  rotation['y'],\n                                  rotation['z'],\n                                 ])\n\n    def volume(self) -> float:\n        return np.prod(self.sizes)\n\n    def get_transformation_matrix(self) -> np.ndarray:\n        rotation = self.rotation\n        position = self.center\n\n        Rx = np.array([[1, 0, 0, 0],\n                       [0, np.cos(rotation[0]), -np.sin(rotation[0]), 0],\n                       [0, np.sin(rotation[0]),  np.cos(rotation[0]), 0],\n                       [0, 0, 0, 1],\n                      ])\n\n        Ry = np.array([[ np.cos(rotation[1]), 0, np.sin(rotation[1]), 0],\n                       [0, 1, 0, 0],\n                       [-np.sin(rotation[1]), 0, np.cos(rotation[1]), 0],\n                       [0, 0, 0, 1],\n                      ])\n\n        Rz = np.array([[np.cos(rotation[2]), -np.sin(rotation[2]), 0, 0],\n                       [np.sin(rotation[2]),  np.cos(rotation[2]), 0, 0],\n                       [0, 0, 1, 0],\n                       [0, 0, 0, 1],\n                      ])\n\n        Tr = np.array([[1, 0, 0, position[0]],\n                       [0, 1, 0, position[1]],\n                       [0, 0, 1, position[2]],\n                       [0, 0, 0, 1],\n                      ])\n\n\n        Rz_90 = np.array([[np.cos(-np.pi/2), -np.sin(-np.pi/2), 0, 0],\n                          [np.sin(-np.pi/2),  np.cos(-np.pi/2), 0, 0],\n                          [0, 0, 1, 0],\n                          [0, 0, 0, 1],\n                         ])\n\n\n        return np.matmul(Rz_90, np.matmul(Tr, np.matmul(Ry, np.matmul(Rz, Rx))))\n\n    def build_box(self) -> List[np.array]:\n\n        sizes = self.sizes\n\n        T = self.get_transformation_matrix()\n\n        v0 = np.zeros(4); v0[3] = 1; v0[:3] -= sizes/2\n        v1 = np.zeros(4); v1[3] = 1; v1[:2] -= sizes[:2]/2; v1[2]+=sizes[2]/2\n        v2 = np.zeros(4); v2[3] = 1; v2[0]  -= sizes[0]/2;  v2[1]+=sizes[1]/2; v2[2] -= sizes[2]/2\n        v3 = np.zeros(4); v3[3] = 1; v3[0]  -= sizes[0]/2;  v3[1]+=sizes[1]/2; v3[2] += sizes[2]/2\n        v4 = np.zeros(4); v4[3] = 1; v4[:2] += sizes[:2]/2; v4[2]+=sizes[2]/2\n        v5 = np.zeros(4); v5[3] = 1; v5[0]  += sizes[0]/2;  v5[1]+=sizes[1]/2; v5[2] -= sizes[2]/2\n        v6 = np.zeros(4); v6[3] = 1; v6[0]  += sizes[0]/2;  v6[1]-=sizes[1]/2; v6[2] += sizes[2]/2\n        v7 = np.zeros(4); v7[3] = 1; v7[0]  += sizes[0]/2;  v7[1]-=sizes[1]/2; v7[2] -= sizes[2]/2\n\n        v0 = np.matmul(T, v0) # - bottom back left\n        v1 = np.matmul(T, v1) # - top back left\n        v2 = np.matmul(T, v2) # - bottom front left\n        v3 = np.matmul(T, v3) # - top front left\n        v4 = np.matmul(T, v4) # - top front right\n        v5 = np.matmul(T, v5) # - bottom front right\n        v6 = np.matmul(T, v6) # - top back right\n        v7 = np.matmul(T, v7) # - bottom back right\n\n        return [v0,v1,v2,v3,v4,v5,v6,v7]\n\n    def save_off(self, filename: str) -> None:\n        v0,v1,v2,v3,v4,v5,v6,v7 = self.build_box()\n\n        vertices = []\n        vertices.append(str(v0[0])+' '+str(v0[1])+' '+str(v0[2]))\n        vertices.append(str(v1[0])+' '+str(v1[1])+' '+str(v1[2]))\n        vertices.append(str(v2[0])+' '+str(v2[1])+' '+str(v2[2]))\n        vertices.append(str(v3[0])+' '+str(v3[1])+' '+str(v3[2]))\n        vertices.append(str(v4[0])+' '+str(v4[1])+' '+str(v4[2]))\n        vertices.append(str(v5[0])+' '+str(v5[1])+' '+str(v5[2]))\n        vertices.append(str(v6[0])+' '+str(v6[1])+' '+str(v6[2]))\n        vertices.append(str(v7[0])+' '+str(v7[1])+' '+str(v7[2]))\n\n        faces = []\n        faces.append('4 '+ str(0)+ ' '+ str(1)+ ' '+ str(3)+ ' '+ str(2))\n        faces.append('4 '+ str(0)+ ' '+ str(1)+ ' '+ str(6)+ ' '+ str(7))\n        faces.append('4 '+ str(6)+ ' '+ str(7)+ ' '+ str(5)+ ' '+ str(4))\n        faces.append('4 '+ str(5)+ ' '+ str(4)+ ' '+ str(3)+ ' '+ str(2))\n        faces.append('4 '+ str(1)+ ' '+ str(3)+ ' '+ str(4)+ ' '+ str(6))\n        faces.append('4 '+ str(0)+ ' '+ str(2)+ ' '+ str(5)+ ' '+ str(7))\n\n\n        file = open(filename, 'w')\n        file.write('OFF\\n')\n        file.write('{} {} 0\\n'.format(str(len(vertices)),\n                                      str(len(faces))))\n\n        color = [255, 0, 0]\n\n        for v in vertices:\n            file.write(v+'\\n')\n        for f in faces[:-1]:\n            line = f + ' ' + str(color[0]) + ' ' + str(color[1]) + ' ' + str(color[2]) + ' 125\\n'\n            file.write(line)\n        file.write(line)\n        file.close()\n\n\n\n\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/Camera_Intrinsics_API/extract_frames.py",
    "content": "import os\nimport av\n\nclass FrameExtractor():\n    def extract(self, filename: str, output_dir: str) -> None:\n        reader = av.open(filename, 'r')\n        for i, frame in enumerate(reader.decode(video=0)):\n            image = frame.to_image()\n            image.save(os.path.join(output_dir,\n                                    \"color_{:07d}.jpg\".format(i)\n                                   )\n                      )\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/Camera_Intrinsics_API/get_camera_intrinsics.py",
    "content": "import os\nimport cv2\nimport shutil\nimport numpy as np\nimport subprocess as sp\nfrom imageio import imread\n\nfrom typing import Any, Dict, List, Optional, Tuple\n\n\nclass CameraIntrinsicsHelper():\n    def __init__(self):\n        self.blurry_thresh = 100.0\n        self.sfm_workspace_dir = 'data/debug_sfm/'\n        self.sfm_images_dir = 'data/debug_sfm/images'\n\n    def is_blurry(self, image: np.ndarray) -> bool:\n        gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)\n        var = cv2.Laplacian(gray, cv2.CV_64F).var()\n        if var > self.blurry_thresh:\n            # not blurry\n            return False, var\n        else:\n            return True, var\n\n    def select_good_frames_indices(self, images_files: List, images_dir: str) -> Tuple:\n        blurry_indicator = []\n        all_laplacian_variances = []\n        cpt_consecutive_non_blurry = 0\n        for image_file in images_files:\n            image = imread(os.path.join(images_dir, image_file))\n            blurry_ind_img, tmp_var = self.is_blurry(image)\n            blurry_indicator.append(blurry_ind_img)\n            all_laplacian_variances.append(tmp_var)\n            if not blurry_ind_img:\n                cpt_consecutive_non_blurry+=1\n            else:\n                cpt_consecutive_non_blurry=0\n            if cpt_consecutive_non_blurry>10:\n                break\n        \n        blurry_indicator = np.array(blurry_indicator)\n        blurry_indicator = blurry_indicator.astype(np.int)\n\n        diff = np.diff(blurry_indicator)\n        nonzero_indices = np.nonzero(diff!=0)[0]\n\n        if len(nonzero_indices) > 0:\n            splits = np.split(blurry_indicator, nonzero_indices+1)\n            idx = 0\n            max_idx_start = -1\n            max_idx_end = -1\n            max_length = -1\n            for s in splits:\n                if s.size==0: continue\n                if s[0] == 0:\n                    assert np.all(s==0)\n                    if len(s) > max_length:\n                        max_length = len(s)\n                        max_idx_start = idx\n                        max_idx_end = idx + len(s) - 1\n                idx += len(s)\n\n            if max_idx_start > -1:\n                start_idx = max_idx_start\n                end_idx = max_idx_end\n                # check the number of frame selected.\n                # if not enough frames are selected.\n                # get the set of 10 frames with the \n                # highest cumulative laplacian variance\n                if (end_idx - start_idx + 1) < 5:\n                    print('Not enough frames selected -> Getting the set of 10 frames with max cumsum Laplacian Variance')\n                    cumsum_10frames = [np.sum(all_laplacian_variances[i:i+10]) for i\\\n                                      in range(0,len(all_laplacian_variances)-10)]\n                    idx = np.argmax(cumsum_10frames)\n                    start_idx = idx\n                    end_idx = idx+9\n                \n                return (start_idx, end_idx)\n            else:\n                return None\n        else:\n            if blurry_indicator[0] == 0:\n                #all frames are not blurry\n                max_idx = 0\n                max_length = len(blurry_indicator)\n                start_idx = int(len(blurry_indicator) / 2.0)\n                end_idx = int(len(blurry_indicator) / 2.0) + 9\n                return (start_idx, end_idx)\n            else:\n                # all frames are blurry\n                # then select the most non-blurry ones\n                print('ALL frames are blurry -> Getting the set of 10 frames with max cumsum Laplacian Variance')\n                all_laplacian_variances = np.array(all_laplacian_variances)\n                cumsum_10frames = [np.sum(all_laplacian_variances[i:i+10]) for i\\\n                                  in range(0,len(all_laplacian_variances)-10)]\n                idx = np.argmax(cumsum_10frames)\n                start_idx = idx\n                end_idx = idx+9\n                return (start_idx, end_idx)\n\n\n    def select_good_frames(self, images_dir:str) -> None:\n        r\"\"\"\n        Selects good frames for intrinsics parameter estimation using COLMAP.\n        A good frame is non-blury - it has a variance of Laplacian greater than 100. \n        We aim at selecting 20 consecutive of such good frames for a better\n        COLMAP performance.\n        \"\"\"\n        images_files = os.listdir(images_dir)\n        images_files = sorted(images_files)\n        indices = self.select_good_frames_indices(images_files, images_dir)\n        if indices is not None:\n            cpt = 0\n            for i in range(indices[0], indices[1]+1, 1):\n                shutil.copyfile(os.path.join(images_dir, images_files[i]),\n                                os.path.join(self.sfm_images_dir, images_files[i]))\n                cpt+=1\n                if cpt > 10: break\n        else:\n            print('NO GOOD FRAMES FOUND')\n\n\n    def run_colmap(self) -> List:\n        # run sfm\n        o = sp.check_output(['colmap',\n                             \"automatic_reconstructor\",\n                             \"--workspace_path\",\n                             self.sfm_workspace_dir,\n                             \"--image_path\",\n                             self.sfm_images_dir,\n                             \"--camera_model\",\n                             \"RADIAL_FISHEYE\",\n                             \"--single_camera\",\n                             \"1\",\n                            ])\n\n        # check if successfull\n        if len(os.listdir(os.path.join(self.sfm_workspace_dir,'sparse'))) == 0:\n            return None\n\n        o = sp.check_output(['colmap',\n                             \"model_converter\",\n                             \"--input_path\",\n                             os.path.join(self.sfm_workspace_dir, 'sparse', '0/'),\n                             \"--output_path\",\n                             os.path.join(self.sfm_workspace_dir, 'sparse', '0/'),\n                             \"--output_type\",\n                             \"TXT\",\n                            ])\n        \n        return self.parse_colmap_intrinsics(os.path.join(self.sfm_workspace_dir, 'sparse/0/cameras.txt'))\n\n\n    def parse_colmap_intrinsics(self, camera_txt_filename: str)-> Dict:\n        # example output\n        #1 RADIAL_FISHEYE 1440 1080 660.294 720 540 0.0352702 0.0046637\\n\n        with open(camera_txt_filename, 'r') as f:\n            for _ in range(4):\n                l = f.readline()\n        e = l.split(' ')\n        outputs = {\n            'num_cameras': e[0],\n            'type':e[1],\n            'width':e[2],\n            'height':e[3],\n            'f':e[4],\n            'cx':e[5],\n            'cy':e[6],\n            'k1':e[7],\n            'k2':e[8][:-1],\n        }\n        return outputs\n\n\n    def get_camera_intrinsics(self, images_dir: str) -> Tuple:\n        self.select_good_frames(images_dir)\n        return self.run_colmap()\n\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/README.md",
    "content": "# Ego4D-VQ3D\n\n## Egocentric video localization pipeline\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/LICENSE",
    "content": "SUPERGLUE: LEARNING FEATURE MATCHING WITH GRAPH NEURAL NETWORKS\nSOFTWARE LICENSE AGREEMENT\nACADEMIC OR NON-PROFIT ORGANIZATION NONCOMMERCIAL RESEARCH USE ONLY\n\nBY USING OR DOWNLOADING THE SOFTWARE, YOU ARE AGREEING TO THE TERMS OF THIS LICENSE AGREEMENT.  IF YOU DO NOT AGREE WITH THESE TERMS, YOU MAY NOT USE OR DOWNLOAD THE SOFTWARE.\n\nThis is a license agreement (\"Agreement\") between your academic institution or non-profit organization or self (called \"Licensee\" or \"You\" in this Agreement) and Magic Leap, Inc. (called \"Licensor\" in this Agreement).  All rights not specifically granted to you in this Agreement are reserved for Licensor. \n\nRESERVATION OF OWNERSHIP AND GRANT OF LICENSE: \nLicensor retains exclusive ownership of any copy of the Software (as defined below) licensed under this Agreement and hereby grants to Licensee a personal, non-exclusive, non-transferable license to use the Software for noncommercial research purposes, without the right to sublicense, pursuant to the terms and conditions of this Agreement.  As used in this Agreement, the term \"Software\" means (i) the actual copy of all or any portion of code for program routines made accessible to Licensee by Licensor pursuant to this Agreement, inclusive of backups, updates, and/or merged copies permitted hereunder or subsequently supplied by Licensor,  including all or any file structures, programming instructions, user interfaces and screen formats and sequences as well as any and all documentation and instructions related to it, and (ii) all or any derivatives and/or modifications created or made by You to any of the items specified in (i).\n\nCONFIDENTIALITY: Licensee acknowledges that the Software is proprietary to Licensor, and as such, Licensee agrees to receive all such materials in confidence and use the Software only in accordance with the terms of this Agreement.  Licensee agrees to use reasonable effort to protect the Software from unauthorized use, reproduction, distribution, or publication.\n\nCOPYRIGHT: The Software is owned by Licensor and is protected by United  States copyright laws and applicable international treaties and/or conventions.\n\nPERMITTED USES:  The Software may be used for your own noncommercial internal research purposes. You understand and agree that Licensor is not obligated to implement any suggestions and/or feedback you might provide regarding the Software, but to the extent Licensor does so, you are not entitled to any compensation related thereto.\n\nDERIVATIVES: You may create derivatives of or make modifications to the Software, however, You agree that all and any such derivatives and modifications will be owned by Licensor and become a part of the Software licensed to You under this Agreement.  You may only use such derivatives and modifications for your own noncommercial internal research purposes, and you may not otherwise use, distribute or copy such derivatives and modifications in violation of this Agreement.\n\nBACKUPS:  If Licensee is an organization, it may make that number of copies of the Software necessary for internal noncommercial use at a single site within its organization provided that all information appearing in or on the original labels, including the copyright and trademark notices are copied onto the labels of the copies.\n\nUSES NOT PERMITTED:  You may not distribute, copy or use the Software except as explicitly permitted herein. Licensee has not been granted any trademark license as part of this Agreement and may not use the name or mark \"Magic Leap\" or any renditions thereof without the prior written permission of Licensor.\n\nYou may not sell, rent, lease, sublicense, lend, time-share or transfer, in whole or in part, or provide third parties access to prior or present versions (or any parts thereof) of the Software.\n\nASSIGNMENT: You may not assign this Agreement or your rights hereunder without the prior written consent of Licensor. Any attempted assignment without such consent shall be null and void.\n\nTERM: The term of the license granted by this Agreement is from Licensee's acceptance of this Agreement by downloading the Software or by using the Software until terminated as provided below.\n\nThe Agreement automatically terminates without notice if you fail to comply with any provision of this Agreement.  Licensee may terminate this Agreement by ceasing using the Software.  Upon any termination of this Agreement, Licensee will delete any and all copies of the Software. You agree that all provisions which operate to protect the proprietary rights of Licensor shall remain in force should breach occur and that the obligation of confidentiality described in this Agreement is binding in perpetuity and, as such, survives the term of the Agreement.\n\nFEE: Provided Licensee abides completely by the terms and conditions of this Agreement, there is no fee due to Licensor for Licensee's use of the Software in accordance with this Agreement.\n\nDISCLAIMER OF WARRANTIES:  THE SOFTWARE IS PROVIDED \"AS-IS\" WITHOUT WARRANTY OF ANY KIND INCLUDING ANY WARRANTIES OF PERFORMANCE OR MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE OR PURPOSE OR OF NON-INFRINGEMENT.  LICENSEE BEARS ALL RISK RELATING TO QUALITY AND PERFORMANCE OF THE SOFTWARE AND RELATED MATERIALS.\n\nSUPPORT AND MAINTENANCE: No Software support or training by the Licensor is provided as part of this Agreement.  \n\nEXCLUSIVE REMEDY AND LIMITATION OF LIABILITY: To the maximum extent permitted under applicable law, Licensor shall not be liable for direct, indirect, special, incidental, or consequential damages or lost profits related to Licensee's use of and/or inability to use the Software, even if Licensor is advised of the possibility of such damage.\n\nEXPORT REGULATION: Licensee agrees to comply with any and all applicable U.S. export control laws, regulations, and/or other laws related to embargoes and sanction programs administered by the Office of Foreign Assets Control.\n\nSEVERABILITY: If any provision(s) of this Agreement shall be held to be invalid, illegal, or unenforceable by a court or other tribunal of competent jurisdiction, the validity, legality and enforceability of the remaining provisions shall not in any way be affected or impaired thereby.\n\nNO IMPLIED WAIVERS: No failure or delay by Licensor in enforcing any right or remedy under this Agreement shall be construed as a waiver of any future or other exercise of such right or remedy by Licensor.\n\nGOVERNING LAW: This Agreement shall be construed and enforced in accordance with the laws of the State of Florida without reference to conflict of laws principles.  You consent to the personal jurisdiction of the courts of this County and waive their rights to venue outside of Broward County, Florida.\n\nENTIRE AGREEMENT AND AMENDMENTS: This Agreement constitutes the sole and entire agreement between Licensee and Licensor as to the matter set forth herein and supersedes any previous agreements, understandings, and arrangements between the parties relating hereto.\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/README.md",
    "content": "<img src=\"assets/magicleap.png\" width=\"240\">\n\n### Research @ Magic Leap (CVPR 2020, Oral)\n\n# SuperGlue Inference and Evaluation Demo Script\n\n## Introduction\nSuperGlue is a CVPR 2020 research project done at Magic Leap. The SuperGlue network is a Graph Neural Network combined with an Optimal Matching layer that is trained to perform matching on two sets of sparse image features. This repo includes PyTorch code and pretrained weights for running the SuperGlue matching network on top of [SuperPoint](https://arxiv.org/abs/1712.07629) keypoints and descriptors. Given a pair of images, you can use this repo to extract matching features across the image pair.\n\n<p align=\"center\">\n  <img src=\"assets/teaser.png\" width=\"500\">\n</p>\n\nSuperGlue operates as a \"middle-end,\" performing context aggregation, matching, and filtering in a single end-to-end architecture. For more details, please see:\n\n* Full paper PDF: [SuperGlue: Learning Feature Matching with Graph Neural Networks](https://arxiv.org/abs/1911.11763).\n\n* Authors: *Paul-Edouard Sarlin, Daniel DeTone, Tomasz Malisiewicz, Andrew Rabinovich*\n\n* Website: [psarlin.com/superglue](https://psarlin.com/superglue) for videos, slides, recent updates, and more visualizations.\n\n* `hloc`: a new toolbox for visual localization and SfM with SuperGlue, available at [cvg/Hierarchical-Localization](https://github.com/cvg/Hierarchical-Localization/). Winner of 3 CVPR 2020 competitions on localization and image matching!\n\nWe provide two pre-trained weights files: an indoor model trained on ScanNet data, and an outdoor model trained on MegaDepth data. Both models are inside the [weights directory](./models/weights). By default, the demo will run the **indoor** model.\n\n## Dependencies\n* Python 3 >= 3.5\n* PyTorch >= 1.1\n* OpenCV >= 3.4 (4.1.2.30 recommended for best GUI keyboard interaction, see this [note](#additional-notes))\n* Matplotlib >= 3.1\n* NumPy >= 1.18\n\nSimply run the following command: `pip3 install numpy opencv-python torch matplotlib`\n\n## Contents\nThere are two main top-level scripts in this repo:\n\n1. `demo_superglue.py` : runs a live demo on a webcam, IP camera, image directory or movie file\n2. `match_pairs.py`: reads image pairs from files and dumps matches to disk (also runs evaluation if ground truth relative poses are provided)\n\n## Live Matching Demo Script (`demo_superglue.py`)\nThis demo runs SuperPoint + SuperGlue feature matching on an anchor image and live image. You can update the anchor image by pressing the `n` key. The demo can read image streams from a USB or IP camera, a directory containing images, or a video file. You can pass all of these inputs using the `--input` flag.\n\n### Run the demo on a live webcam\n\nRun the demo on the default USB webcam (ID #0), running on a CUDA GPU if one is found:\n\n```sh\n./demo_superglue.py\n```\n\nKeyboard control:\n\n* `n`: select the current frame as the anchor\n* `e`/`r`: increase/decrease the keypoint confidence threshold\n* `d`/`f`: increase/decrease the match filtering threshold\n* `k`: toggle the visualization of keypoints\n* `q`: quit\n\nRun the demo on 320x240 images running on the CPU:\n\n```sh\n./demo_superglue.py --resize 320 240 --force_cpu\n```\n\nThe `--resize` flag can be used to resize the input image in three ways:\n\n1. `--resize` `width` `height` : will resize to exact `width` x `height` dimensions\n2. `--resize` `max_dimension` : will resize largest input image dimension to `max_dimension`\n3. `--resize` `-1` : will not resize (i.e. use original image dimensions)\n\nThe default will resize images to `640x480`.\n\n### Run the demo on a directory of images\n\nThe `--input` flag also accepts a path to a directory. We provide a directory of sample images from a sequence. To run the demo on the directory of images in `freiburg_sequence/` on a headless server (will not display to the screen) and write the output visualization images to `dump_demo_sequence/`:\n\n```sh\n./demo_superglue.py --input assets/freiburg_sequence/ --output_dir dump_demo_sequence --resize 320 240 --no_display\n```\n\nYou should see this output on the sample Freiburg-TUM RGBD sequence:\n\n<img src=\"assets/freiburg_matches.gif\" width=\"560\">\n\nThe matches are colored by their predicted confidence in a jet colormap (Red: more confident, Blue: less confident).\n\n### Additional useful command line parameters\n* Use `--image_glob` to change the image file extension (default: `*.png`, `*.jpg`, `*.jpeg`).\n* Use `--skip` to skip intermediate frames (default: `1`).\n* Use `--max_length` to cap the total number of frames processed (default: `1000000`).\n* Use `--show_keypoints` to visualize the detected keypoints (default: `False`).\n\n## Run Matching+Evaluation (`match_pairs.py`)\n\nThis repo also contains a script `match_pairs.py` that runs the matching from a list of image pairs. With this script, you can:\n\n* Run the matcher on a set of image pairs (no ground truth needed)\n* Visualize the keypoints and matches, based on their confidence\n* Evaluate and visualize the match correctness, if the ground truth relative poses and intrinsics are provided\n* Save the keypoints, matches, and evaluation results for further processing\n* Collate evaluation results over many pairs and generate result tables\n\n### Matches only mode\n\nThe simplest usage of this script will process the image pairs listed in a given text file and dump the keypoints and matches to compressed numpy `npz` files. We provide the challenging ScanNet pairs from the main paper in `assets/example_indoor_pairs/`. Running the following will run SuperPoint + SuperGlue on each image pair, and dump the results to `dump_match_pairs/`:\n\n```sh\n./match_pairs.py\n```\n\nThe resulting `.npz` files can be read from Python as follows:\n\n```python\n>>> import numpy as np\n>>> path = 'dump_match_pairs/scene0711_00_frame-001680_scene0711_00_frame-001995_matches.npz'\n>>> npz = np.load(path)\n>>> npz.files\n['keypoints0', 'keypoints1', 'matches', 'match_confidence']\n>>> npz['keypoints0'].shape\n(382, 2)\n>>> npz['keypoints1'].shape\n(391, 2)\n>>> npz['matches'].shape\n(382,)\n>>> np.sum(npz['matches']>-1)\n115\n>>> npz['match_confidence'].shape\n(382,)\n```\n\nFor each keypoint in `keypoints0`, the `matches` array indicates the index of the matching keypoint in `keypoints1`, or `-1` if the keypoint is unmatched.\n\n### Visualization mode\n\nYou can add the flag `--viz` to dump image outputs which visualize the matches:\n\n```sh\n./match_pairs.py --viz\n```\n\nYou should see images like this inside of `dump_match_pairs/` (or something very close to it, see this [note](#a-note-on-reproducibility)):\n\n<img src=\"assets/indoor_matches.png\" width=\"560\">\n\nThe matches are colored by their predicted confidence in a jet colormap (Red: more confident, Blue: less confident).\n\n### Evaluation mode\n\nYou can also estimate the pose using RANSAC + Essential Matrix decomposition and evaluate it if the ground truth relative poses and intrinsics are provided in the input `.txt` files. Each `.txt` file contains three key ground truth matrices: a 3x3 intrinsics matrix of image0: `K0`, a 3x3 intrinsics matrix of image1: `K1` , and a 4x4 matrix of the relative pose extrinsics `T_0to1`.\n\nTo run the evaluation on the sample set of images (by default reading `assets/scannet_sample_pairs_with_gt.txt`), you can run:\n\n```sh\n./match_pairs.py --eval\n```\n\n\nSince you enabled `--eval`, you should see collated results printed to the terminal. For the example images provided, you should get the following numbers (or something very close to it, see this [note](#a-note-on-reproducibility)):\n\n```txt\nEvaluation Results (mean over 15 pairs):\nAUC@5    AUC@10  AUC@20  Prec    MScore\n26.99    48.40   64.47   73.52   19.60\n```\n\nThe resulting `.npz` files in `dump_match_pairs/` will now contain scalar values related to the evaluation, computed on the sample images provided. Here is what you should find in one of the generated evaluation files:\n\n```python\n>>> import numpy as np\n>>> path = 'dump_match_pairs/scene0711_00_frame-001680_scene0711_00_frame-001995_evaluation.npz'\n>>> npz = np.load(path)\n>>> print(npz.files)\n['error_t', 'error_R', 'precision', 'matching_score', 'num_correct', 'epipolar_errors']\n```\n\nYou can also visualize the evaluation metrics by running the following command:\n\n```sh\n./match_pairs.py --eval --viz\n```\n\nYou should also now see additional images in `dump_match_pairs/` which visualize the evaluation numbers (or something very close to it, see this [note](#a-note-on-reproducibility)):\n\n<img src=\"assets/indoor_evaluation.png\" width=\"560\">\n\nThe top left corner of the image shows the pose error and number of inliers, while the lines are colored by their epipolar error computed with the ground truth relative pose (red: higher error, green: lower error).\n\n### Running on sample outdoor pairs\n\n<details>\n  <summary>[Click to expand]</summary>\n\nIn this repo, we also provide a few challenging Phototourism pairs, so that you can re-create some of the figures from the paper. Run this script to run matching and visualization (no ground truth is provided, see this [note](#reproducing-outdoor-evaluation-final-table)) on the provided pairs:\n\n```sh\n./match_pairs.py --resize 1600 --superglue outdoor --max_keypoints 2048 --nms_radius 3  --resize_float --input_dir assets/phototourism_sample_images/ --input_pairs assets/phototourism_sample_pairs.txt --output_dir dump_match_pairs_outdoor --viz\n```\n\nYou should now image pairs such as these in `dump_match_pairs_outdoor/` (or something very close to it, see this [note](#a-note-on-reproducibility)):\n\n<img src=\"assets/outdoor_matches.png\" width=\"560\">\n\n</details>\n\n### Recommended settings for indoor / outdoor\n\n<details>\n  <summary>[Click to expand]</summary>\n\nFor **indoor** images, we recommend the following settings (these are the defaults):\n\n```sh\n./match_pairs.py --resize 640 --superglue indoor --max_keypoints 1024 --nms_radius 4\n```\n\nFor **outdoor** images, we recommend the following settings:\n\n```sh\n./match_pairs.py --resize 1600 --superglue outdoor --max_keypoints 2048 --nms_radius 3 --resize_float\n```\n\nYou can provide your own list of pairs `--input_pairs` for images contained in `--input_dir`. Images can be resized before network inference with `--resize`. If you are re-running the same evaluation many times, you can use the `--cache` flag to reuse old computation.\n</details>\n\n### Test set pair file format explained\n\n<details>\n  <summary>[Click to expand]</summary>\n\nWe provide the list of ScanNet test pairs in `assets/scannet_test_pairs_with_gt.txt` (with ground truth) and Phototourism test pairs `assets/phototourism_test_pairs.txt` (without ground truth) used to evaluate the matching from the paper. Each line corresponds to one pair and is structured as follows:\n\n```\npath_image_A path_image_B exif_rotationA exif_rotationB [KA_0 ... KA_8] [KB_0 ... KB_8] [T_AB_0 ... T_AB_15]\n```\n\nThe `path_image_A` and `path_image_B` entries are paths to image A and B, respectively. The `exif_rotation` is an integer in the range [0, 3] that comes from the original EXIF metadata associated with the image, where, 0: no rotation, 1: 90 degree clockwise, 2: 180 degree clockwise, 3: 270 degree clockwise. If the EXIF data is not known, you can just provide a zero here and no rotation will be performed. `KA` and `KB` are the flattened `3x3` matrices of image A and image B intrinsics. `T_AB` is a flattened `4x4` matrix of the extrinsics between the pair.\n</details>\n\n### Reproducing the indoor evaluation on ScanNet\n\n<details>\n  <summary>[Click to expand]</summary>\n\nWe provide the groundtruth for ScanNet in our format in the file `assets/scannet_test_pairs_with_gt.txt` for convenience. In order to reproduce similar tables to what was in the paper, you will need to download the dataset (we do not provide the raw test images). To download the ScanNet dataset, do the following:\n\n1. Head to the [ScanNet](https://github.com/ScanNet/ScanNet) github repo to download the ScanNet test set (100 scenes).\n2. You will need to extract the raw sensor data from the 100 `.sens` files in each scene in the test set using the [SensReader](https://github.com/ScanNet/ScanNet/tree/master/SensReader) tool.\n\nOnce the ScanNet dataset is downloaded in `~/data/scannet`, you can run the following:\n\n```sh\n./match_pairs.py --input_dir ~/data/scannet --input_pairs assets/scannet_test_pairs_with_gt.txt --output_dir dump_scannet_test_results --eval\n```\n\nYou should get the following table for ScanNet (or something very close to it, see this [note](#a-note-on-reproducibility)):\n\n```txt\nEvaluation Results (mean over 1500 pairs):\nAUC@5    AUC@10  AUC@20  Prec    MScore\n16.12    33.76   51.79   84.37   31.14\n```\n\n</details>\n\n### Reproducing the outdoor evaluation on YFCC\n\n<details>\n  <summary>[Click to expand]</summary>\n\nWe provide the groundtruth for YFCC in our format in the file `assets/yfcc_test_pairs_with_gt.txt` for convenience. In order to reproduce similar tables to what was in the paper, you will need to download the dataset (we do not provide the raw test images). To download the YFCC dataset, you can use the [OANet](https://github.com/zjhthu/OANet) repo:\n\n```sh\ngit clone https://github.com/zjhthu/OANet\ncd OANet\nbash download_data.sh raw_data raw_data_yfcc.tar.gz 0 8\ntar -xvf raw_data_yfcc.tar.gz\nmv raw_data/yfcc100m ~/data\n```\n\nOnce the YFCC dataset is downloaded in `~/data/yfcc100m`, you can run the following:\n\n```sh\n./match_pairs.py --input_dir ~/data/yfcc100m --input_pairs assets/yfcc_test_pairs_with_gt.txt --output_dir dump_yfcc_test_results --eval --resize 1600 --superglue outdoor --max_keypoints 2048 --nms_radius 3 --resize_float\n```\n\nYou should get the following table for YFCC (or something very close to it, see this [note](#a-note-on-reproducibility)):\n\n```txt\nEvaluation Results (mean over 4000 pairs):\nAUC@5    AUC@10  AUC@20  Prec    MScore\n39.02    59.51   75.72   98.72   23.61  \n```\n\n</details>\n\n### Reproducing outdoor evaluation on Phototourism\n\n<details>\n  <summary>[Click to expand]</summary>\n\nThe Phototourism results shown in the paper were produced using similar data as the test set from the [Image Matching Challenge 2020](https://vision.uvic.ca/image-matching-challenge/), which holds the ground truth data private for the test set. We list the pairs we used in `assets/phototourism_test_pairs.txt`. To reproduce similar numbers on this test set, please submit to the challenge benchmark. While the challenge is still live, we cannot share the test set publically since we want to help maintain the integrity of the challenge. \n\n</details>\n\n### Correcting EXIF rotation data in YFCC and Phototourism\n\n<details>\n  <summary>[Click to expand]</summary>\n\nIn this repo, we provide manually corrected the EXIF rotation data for the outdoor evaluations on YFCC and Phototourism. For the YFCC dataset we found 7 images with incorrect EXIF rotation flags, resulting in 148 pairs out of 4000 being corrected. For Phototourism, we found 36 images with incorrect EXIF rotation flags, resulting in 212 out of 2200 pairs being corrected.\n\nThe SuperGlue paper reports the results of SuperGlue **without** the corrected rotations, while the numbers in this README are reported **with** the corrected rotations. We found that our final conclusions from the evaluation still hold with or without the corrected rotations. For backwards compatability, we included the original, uncorrected EXIF rotation data in `assets/phototourism_test_pairs_original.txt` and `assets/yfcc_test_pairs_with_gt_original.txt` respectively.\n\n</details>\n\n### Outdoor training / validation scene splits of MegaDepth\n\n<details>\n  <summary>[Click to expand]</summary>\n\nFor training and validation of the outdoor model, we used scenes from the [MegaDepth dataset](http://www.cs.cornell.edu/projects/megadepth/). We provide the list of scenes used to train the outdoor model in the `assets/` directory:\n\n* Training set: `assets/megadepth_train_scenes.txt`\n* Validation set: `assets/megadepth_validation_scenes.txt`\n\n</details>\n\n### A note on reproducibility\n\n<details>\n  <summary>[Click to expand]</summary>\n\nAfter simplifying the model code and evaluation code and preparing it for release, we made some improvements and tweaks that result in slightly different numbers than what was reported in the paper. The numbers and figures reported in the README were done using Ubuntu 16.04, OpenCV 3.4.5, and PyTorch 1.1.0. Even with matching the library versions, we observed some slight differences across Mac and Ubuntu, which we believe are due to differences in OpenCV's image resize function implementation and randomization of RANSAC.\n</details>\n\n### Creating high-quality PDF visualizations and faster visualization with --fast_viz\n\n<details>\n  <summary>[Click to expand]</summary>\n\nWhen generating output images with `match_pairs.py`, the default `--viz` flag uses a Matplotlib renderer which allows for the generation of camera-ready PDF visualizations if you additionally use `--viz_extension pdf` instead of the default png extension.\n\n```\n./match_pairs.py --viz --viz_extension pdf\n```\n\nAlternatively, you might want to save visualization images but have the generation be much faster.  You can use the `--fast_viz` flag to use an OpenCV-based image renderer as follows:\n\n```\n./match_pairs.py --viz --fast_viz\n```\n\nIf you would also like an OpenCV display window to preview the results (you must use non-pdf output and use fast_fiz), simply run:\n\n```\n./match_pairs.py --viz --fast_viz --opencv_display\n```\n\n</details>\n\n\n## BibTeX Citation\nIf you use any ideas from the paper or code from this repo, please consider citing:\n\n```txt\n@inproceedings{sarlin20superglue,\n  author    = {Paul-Edouard Sarlin and\n               Daniel DeTone and\n               Tomasz Malisiewicz and\n               Andrew Rabinovich},\n  title     = {{SuperGlue}: Learning Feature Matching with Graph Neural Networks},\n  booktitle = {CVPR},\n  year      = {2020},\n  url       = {https://arxiv.org/abs/1911.11763}\n}\n```\n\n## Additional Notes\n* For the demo, we found that the keyboard interaction works well with OpenCV 4.1.2.30, older versions were less responsive and the newest version had a [OpenCV bug on Mac](https://stackoverflow.com/questions/60032540/opencv-cv2-imshow-is-not-working-because-of-the-qt)\n* We generally do not recommend to run SuperPoint+SuperGlue below 160x120 resolution (QQVGA) and above 2000x1500\n* We do not intend to release the SuperGlue training code.\n* We do not intend to release the SIFT-based or homography SuperGlue models.\n\n## Legal Disclaimer\nMagic Leap is proud to provide its latest samples, toolkits, and research projects on Github to foster development and gather feedback from the spatial computing community. Use of the resources within this repo is subject to (a) the license(s) included herein, or (b) if no license is included, Magic Leap's [Developer Agreement](https://id.magicleap.com/terms/developer), which is available on our [Developer Portal](https://developer.magicleap.com/).\nIf you need more, just ask on the [forums](https://forum.magicleap.com/hc/en-us/community/topics)!\nWe're thrilled to be part of a well-meaning, friendly and welcoming community of millions.\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/__init__.py",
    "content": ""
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/extract_descriptors_api.py",
    "content": "from utils import *\nfrom models.superpoint import SuperPoint\nimport argparse\n\nimport numpy as np\nfrom PIL import Image\nimport os\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\n\nparser = argparse.ArgumentParser(\n        description='Image pair matching and pose evaluation with SuperGlue',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\nparser.add_argument(\n    '--matterport_dataset_folder', type=str,\n    default='/home/kvuong/dgx-projects/ego4d_data/Matterport/walterb18_testing',\n    help='SuperGlue match threshold')\nparser.add_argument(\n    '--matterport_descriptors_outputdir', type=str,\n    default='/home/kvuong/dgx-projects/ego4d_data/Matterport/walterb18_testing_descriptors',\n    help='SuperGlue match threshold')\n\nopt = parser.parse_args()\n\nconfig = {\n    'superpoint': {\n        'nms_radius': 4,\n        'keypoint_threshold': 0.005,\n        'max_keypoints': 1024\n    }\n}\nMATTERPORT_DATASET_FOLDER = opt.matterport_dataset_folder\nIMG_DESC_OUTPUT_DIR = opt.matterport_descriptors_outputdir\n\nif not os.path.exists(IMG_DESC_OUTPUT_DIR):\n    os.makedirs(IMG_DESC_OUTPUT_DIR)\n\nK_mp = np.array([[700., 0., 960. - 0.5],\n                 [0., 700., 540. - 0.5],\n                 [0., 0., 1.]])\n\nsuperpoint = SuperPoint(config.get('superpoint', {})).cuda()\nsuperpoint = superpoint.eval()\n\nmatterport_dataset = MatterportDataset(dataset_folder=MATTERPORT_DATASET_FOLDER)\ndata_loader = DataLoader(dataset=matterport_dataset, num_workers=4, batch_size=12, shuffle=False, pin_memory=True)\n\nimg_idx = 0\nwith torch.no_grad():\n    for idx, images in enumerate(tqdm(data_loader)):\n        # print(images['image_index'])\n        images['image'] = images['image'].cuda()\n        output = superpoint(images)\n        for j in range(images['image'].shape[0]):\n            mp_idx = images['image_index'][j]\n            image_descriptors = output['descriptors'][j].detach().cpu().numpy()  # DxN = 256xNum_KPs\n            keypoints = output['keypoints'][j].detach().cpu().numpy()\n            scores = output['scores'][j].detach().cpu().numpy()\n\n            d1 = Image.open(os.path.join(MATTERPORT_DATASET_FOLDER, 'depth/depth_%06d.png' % mp_idx))\n            d1 = np.asarray(d1).astype(np.float32) / 1000.0\n            T1 = np.loadtxt(os.path.join(MATTERPORT_DATASET_FOLDER, 'pose/pose_%06d.txt' % mp_idx))\n\n            pts3d_all = None\n            f3d = []\n            flag_array = np.zeros((keypoints.shape[0]))\n            for i in range(keypoints.shape[0]):\n                pt2d = keypoints[i] * np.array([3.0, 2.25]) # SuperPoint operates on 480x640, so must scale to 1280x1920\n                u, v = pt2d[0], pt2d[1]\n                z = d1[int(v), int(u)]\n                if z > 0.0:\n                    flag_array[i] = 1.0\n                xyz_curr = convert_2d_to_3d(u, v, z, K_mp)\n                f3d.append(xyz_curr)\n            f3d = (T1[:3, :3] @ np.array(f3d).transpose() + T1[:3, 3:]).transpose()\n            pts3d_all = np.diag(flag_array) @ f3d\n\n            # the minimal number of points accepted by solvePnP is 4:\n            f3d = np.expand_dims(pts3d_all.astype(np.float32), axis=1)\n\n            # Write the matches to disk.\n            out_matches = {'keypoints': keypoints,\n                           'scores': scores,\n                           'descriptors': image_descriptors,\n                           'XYZ': f3d}\n            np.savez(os.path.join(IMG_DESC_OUTPUT_DIR, 'image_%06d_descriptors.npz' % img_idx), **out_matches)\n            img_idx += 1\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/extract_visual_database.py",
    "content": "import torch\nimport cv2\nimport fnmatch\n\nfrom utils import *\nfrom models.superpoint import SuperPoint\nimport argparse\nimport random\nimport numpy as np\nimport matplotlib.cm as cm\n\nfrom torch.utils.data.dataset import Dataset\nimport pickle\nimport numpy as np\nfrom PIL import Image\nimport os\nfrom torch.utils.data import DataLoader\n\nfrom models.utils import read_image\nfrom sklearn.cluster import KMeans\nfrom sklearn.neighbors import KDTree\nimport pickle\n\n\ndef convert_2d_to_3d(u, v, z, K):\n    v0 = K[1][2]\n    u0 = K[0][2]\n    fy = K[1][1]\n    fx = K[0][0]\n    x = (u - u0) * z / fx\n    y = (v - v0) * z / fy\n    return x, y, z\n\n\nclass MatterportDataset(Dataset):\n    def __init__(self, dataset_name='walterlib', resize=[640, 480], root=''):\n        super(MatterportDataset, self).__init__()\n        self.root_dir = root\n        self.data_path = os.path.join(self.root_dir, dataset_name, 'color')\n        self.data_info = sorted(os.listdir(self.data_path))\n        # self.data_info = self.data_info[:10]\n        self.data_len = len(self.data_info)\n        self.resize = resize\n\n    def __getitem__(self, index):\n        color_info = os.path.join(self.data_path, self.data_info[index])\n        # print(color_info)\n        _, gray_tensor, _ = read_image(color_info, 'cpu', resize=self.resize, rotation=0, resize_float=False)\n        gray_tensor = gray_tensor.reshape(1, 480, 640)\n\n        output = {'image': gray_tensor, 'image_index': int(color_info[-10:-4])}\n\n        return output\n\n    def __len__(self):\n        return self.data_len\n\n\nclass AzureKinect(Dataset):\n    def __init__(self, dataset_name='walter_basement_03', resize=[640, 480], root='',\n                 start_idx=0, end_idx=10000, skip_every_n_image=1):\n        super(AzureKinect, self).__init__()\n        self.root_dir = root\n        self.data_path = os.path.join(self.root_dir, dataset_name, 'color')\n        self.data_info = fnmatch.filter(os.listdir(self.data_path), '*.jpg')\n        self.data_info = self.data_info[start_idx:end_idx:skip_every_n_image]\n        self.start_idx = start_idx\n        self.data_len = len(self.data_info)\n        self.resize = resize\n\n    def __getitem__(self, index):\n        color_info = os.path.join(self.data_path, 'color_%07d.jpg' % (self.start_idx + index))\n        # print(color_info)\n        _, gray_tensor, _ = read_image(color_info, 'cpu', resize=self.resize, rotation=0, resize_float=False)\n        gray_tensor = gray_tensor.reshape(1, 480, 640)\n\n        output = {'image': gray_tensor, 'image_index': int(color_info[-11:-4])}\n\n        return output\n\n    def __len__(self):\n        return self.data_len\n\n\ndef PnP(x1s, f3ds, x2s, m1_ids, K1, K2, DATABASE_IMAGE_FOLDER):\n    # # extract 3d pts\n    # pts3d_all = None\n    # f2d = []  # keep only feature points with depth in the current frame\n    # for k in range(len(x1s)):\n    #     d1 = Image.open(os.path.join(DATABASE_IMAGE_FOLDER, 'depth/depth_%06d.png' % m1_ids[k]))\n    #     d1 = np.asarray(d1).astype(np.float32) / 1000.0\n    #     x1 = np.array(x1s[k])\n    #     x2 = np.array(x2s[k])\n    #     T1 = np.loadtxt(os.path.join(DATABASE_IMAGE_FOLDER, 'pose/pose_%06d.txt' % m1_ids[k]))\n    #\n    #     f3d = []\n    #     for i, pt2d in enumerate(x1):\n    #         u, v = pt2d[0], pt2d[1]\n    #         z = d1[int(v), int(u)]\n    #         if z > 0:\n    #             xyz_curr = convert_2d_to_3d(u, v, z, K1)\n    #             f3d.append(xyz_curr)\n    #             f2d.append(x2[i, :])\n    #         # else:\n    #         #     print(convert_2d_to_3d(u, v, z, K1), f3d_loaded[i, 0])\n    #\n    #     f3d = (T1[:3, :3] @ np.array(f3d).transpose() + T1[:3, 3:]).transpose()\n    #     if pts3d_all is None:\n    #         pts3d_all = f3d\n    #     else:\n    #         pts3d_all = np.concatenate((pts3d_all, f3d), axis=0)\n    #\n    # # the minimal number of points accepted by solvePnP is 4:\n    # f3d = np.expand_dims(pts3d_all.astype(np.float32), axis=1)\n    # print(f3d.shape)\n\n    f2d = [] # keep only feature points with depth in the current frame\n    f3d_new = []\n    for k in range(len(f3ds)):\n        x2 = np.array(x2s[k])\n        f3d = np.array(f3ds[k])\n        for i in range(f3d.shape[0]):\n            if f3d[i, 0, 0] != 0.0 or f3d[i, 0, 1] != 0.0 or f3d[i, 0, 2] != 0.0:\n                f2d.append(x2[i, :])\n                f3d_new.append(f3d[i, 0])\n\n    # the minimal number of points accepted by solvePnP is 4:\n    f3d = np.expand_dims(np.array(f3d_new).astype(np.float32), axis=1)\n\n    f2d = np.expand_dims(\n        np.array(f2d).astype(np.float32), axis=1)\n\n    ret = cv2.solvePnPRansac(f3d,\n                             f2d,\n                             K2,\n                             distCoeffs=None,\n                             flags=cv2.SOLVEPNP_EPNP)\n    success = ret[0]\n    rotation_vector = ret[1]\n    translation_vector = ret[2]\n\n    f_2d = np.linalg.inv(K2) @ np.concatenate((f2d[:, 0],\n                                               np.ones((f2d.shape[0], 1))), axis=1).T\n\n    rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n    translation_vector = translation_vector.reshape(3)\n    proj = rotation_mat @ f3d[:, 0].T + translation_vector.reshape(3, -1)\n    proj = proj[:2] / proj[2:]\n    reproj_error = np.linalg.norm(f_2d[:2] - proj[:2], axis=0)\n    reproj_inliers = reproj_error < 1e-2\n    reproj_inliers = reproj_inliers.reshape(-1)\n\n    if success==0 or reproj_inliers.sum() < 10:\n        return 0, None, None, None\n    else:\n        ret = cv2.solvePnP(f3d[reproj_inliers].reshape(reproj_inliers.sum(), 1, 3),\n                           f2d[reproj_inliers].reshape(reproj_inliers.sum(), 1, 2),\n                           K2,\n                           distCoeffs=None,\n                           flags=cv2.SOLVEPNP_ITERATIVE)\n        success = ret[0]\n        rotation_vector = ret[1]\n        translation_vector = ret[2]\n\n        rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n        translation_vector = translation_vector.reshape(3)\n\n        Caz_T_Wmp = np.eye(4)\n        Caz_T_Wmp[:3, :3] = rotation_mat\n        Caz_T_Wmp[:3, 3] = translation_vector\n\n        rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n        translation_vector = translation_vector.reshape(3)\n        proj = rotation_mat @ f3d[:, 0].T + translation_vector.reshape(3, -1)\n        proj = proj[:2] / proj[2:]\n        reproj_error_refined = np.linalg.norm(f_2d[:2] - proj[:2], axis=0)\n        reproj_error_refined = reproj_error_refined < 1e-2\n        reproj_error_refined = reproj_error_refined.reshape(-1)\n\n        if reproj_error_refined.sum() < 0.8 * reproj_inliers.sum():\n            return 0, None, None, None\n        else:\n            return success, Caz_T_Wmp, f2d[reproj_error_refined, 0], f3d[reproj_error_refined, 0]\n\n\nK_mp = np.array([[700., 0., 960. - 0.5],\n                 [0., 700., 540. - 0.5],\n                 [0., 0., 1.]])\n\nK_azure = np.array([[913., 0., 960. - 0.5],\n                    [0., 913., 540. - 0.5],\n                    [0., 0., 1.]])\n\nclass AzureKinectPosePnP(Dataset):\n    def __init__(self, match_database='', database_image_folder='', image_list=None):\n        super(AzureKinectPosePnP, self).__init__()\n        self.database_image_folder = database_image_folder\n        self.match_database = match_database\n        self.num_images = len(image_list)\n        self.P = np.zeros((self.num_images, 3, 4))\n        self.good_pose_pnp = np.zeros(self.num_images, dtype=bool)\n        self.original_image_id_list = image_list\n\n    def __getitem__(self, index):\n        azure_img_idx = self.original_image_id_list[index]\n        # matches_file_list = fnmatch.filter(os.listdir(self.match_database), '*_color_%07d_matches.npz' % azure_img_idx)\n        matches_file_list = fnmatch.filter(os.listdir(self.match_database), 'color_%07d_*_matches.npz' % azure_img_idx)\n\n        best_inlier = -1\n        best_solution = None\n        output = {'img_idx': torch.tensor(index, dtype=torch.int),\n                  'is_good_pose': torch.tensor([False]),\n                  'solution': torch.zeros((3, 4), dtype=torch.double)}\n        for file_idx in range(len(matches_file_list)):\n            # 1. Input an query RGB from Kinect Azure\n            # matterport_img_idx = int(matches_file_list[file_idx][6:12])\n            matterport_img_idx = int(matches_file_list[file_idx][20:26])\n            matches_data = np.load(os.path.join(self.match_database, matches_file_list[file_idx]))\n\n            IMAGE_DESC_FOLDER = os.path.join(ROOT_DIR, DATASET_NAME, 'image_descriptors_ours')\n            image_descriptor = np.load(os.path.join(IMAGE_DESC_FOLDER, 'image_%06d_descriptors.npz' % matterport_img_idx))\n\n            _x1 = []\n            _f3d = []\n            _x2 = []\n            good_matches = 0\n\n            for i in range(matches_data['keypoints0'].shape[0]):\n                if matches_data['matches'][i] >= 0 and matches_data['match_confidence'][i] > 0.2:\n                    _x2.append(matches_data['keypoints0'][i] * np.array([3.0, 2.25]))\n                    _x1.append(matches_data['keypoints1'][matches_data['matches'][i]] * np.array([3.0, 2.25]))\n                    _f3d.append(image_descriptor['XYZ'][matches_data['matches'][i]])\n                    good_matches += 1\n\n            if good_matches > 30:\n                success, T, f2d_inlier, f3d_inlier = PnP([_x1], [_f3d], [_x2], [matterport_img_idx],\n                                                         K_mp, K_azure, self.database_image_folder)\n\n                if success and f2d_inlier.shape[0] >= 20:\n                    if f2d_inlier.shape[0] > best_inlier:\n                        best_solution = T, f2d_inlier, f3d_inlier\n                        best_inlier = f2d_inlier.shape[0]\n\n        if best_solution is not None:\n            T, f2d_inlier, f3d_inlier = best_solution\n            ## VISUALIZATION\n            # uv1 = np.concatenate((f2d_inlier,\n            #                       np.ones((f2d_inlier.shape[0], 1))), axis=1)\n            # azure_im = cv2.imread(os.path.join(EGOLOC_FOLDER, 'color/color_%07d.jpg' % azure_img_idx))\n            # VisualizeReprojectionError(T[:3],\n            #                            f3d_inlier,\n            #                            uv1 @ np.linalg.inv(K_azure).T,\n            #                            Im=azure_im, K=K_azure)\n            # self.P[index] = copy.deepcopy(T[:3])\n            # self.good_pose_pnp[index] = copy.deepcopy(True)\n\n            output = {'img_idx': torch.tensor(index, dtype=torch.int),\n                      'is_good_pose': torch.tensor([True]), 'solution': torch.tensor(T[:3])}\n\n        return output\n\n    def __len__(self):\n        return self.num_images\n\n\nparser = argparse.ArgumentParser(\n        description='Image pair matching and pose evaluation with SuperGlue',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n\nparser.add_argument(\n    '--input_pairs', type=str, default='assets/scannet_sample_pairs_with_gt.txt',\n    help='Path to the list of image pairs')\nparser.add_argument(\n    '--input_dir', type=str, default='assets/scannet_sample_images/',\n    help='Path to the directory that contains the images')\nparser.add_argument(\n    '--output_dir', type=str, default='dump_match_pairs/',\n    help='Path to the directory in which the .npz results and optionally,'\n         'the visualization images are written')\n\nparser.add_argument(\n    '--max_length', type=int, default=-1,\n    help='Maximum number of pairs to evaluate')\nparser.add_argument(\n    '--resize', type=int, nargs='+', default=[640, 480],\n    help='Resize the input image before running inference. If two numbers, '\n         'resize to the exact dimensions, if one number, resize the max '\n         'dimension, if -1, do not resize')\nparser.add_argument(\n    '--resize_float', action='store_true',\n    help='Resize the image after casting uint8 to float')\n\nparser.add_argument(\n    '--superglue', choices={'indoor', 'outdoor'}, default='indoor',\n    help='SuperGlue weights')\nparser.add_argument(\n    '--max_keypoints', type=int, default=1024,\n    help='Maximum number of keypoints detected by Superpoint'\n         ' (\\'-1\\' keeps all keypoints)')\nparser.add_argument(\n    '--keypoint_threshold', type=float, default=0.005,\n    help='SuperPoint keypoint detector confidence threshold')\nparser.add_argument(\n    '--nms_radius', type=int, default=4,\n    help='SuperPoint Non Maximum Suppression (NMS) radius'\n    ' (Must be positive)')\nparser.add_argument(\n    '--sinkhorn_iterations', type=int, default=20,\n    help='Number of Sinkhorn iterations performed by SuperGlue')\nparser.add_argument(\n    '--match_threshold', type=float, default=0.2,\n    help='SuperGlue match threshold')\n\nopt = parser.parse_args()\nprint(opt)\n\nconfig = {\n    'superpoint': {\n        'nms_radius': opt.nms_radius,\n        'keypoint_threshold': opt.keypoint_threshold,\n        'max_keypoints': opt.max_keypoints\n    },\n    'superglue': {\n        'weights': opt.superglue,\n        'sinkhorn_iterations': opt.sinkhorn_iterations,\n        'match_threshold': opt.match_threshold,\n    }\n}\n\nROOT_DIR = '/home/kvuong/dgx-projects/ego4d_data/Matterport'\nDATASET_NAME = 'walterb18'\n\nif not os.path.exists(os.path.join(ROOT_DIR, DATASET_NAME, 'features')):\n    os.makedirs(os.path.join(ROOT_DIR, DATASET_NAME, 'features'))\n\n\nsuperpoint = SuperPoint(config.get('superpoint', {})).cuda()\nsuperpoint = superpoint.eval()\n\nmatterport_dataset = MatterportDataset(root=ROOT_DIR, dataset_name=DATASET_NAME)\ndata_loader = DataLoader(dataset=matterport_dataset,\n                            num_workers=4, batch_size=12,\n                            shuffle=False,\n                            pin_memory=True)\n\nK_mp = np.array([[700., 0., 960. - 0.5],\n                 [0., 700., 540. - 0.5],\n                 [0., 0., 1.]])\n\n# ## Extract superpoint for each MP image (theirs)\nif not os.path.exists(os.path.join(ROOT_DIR, DATASET_NAME, 'image_descriptors_ours')):\n    os.makedirs(os.path.join(ROOT_DIR, DATASET_NAME, 'image_descriptors_ours'))\n\n\n# with torch.no_grad():\n#     for idx, images in enumerate(data_loader):\n#         print(images['image_index'])\n#         images['image'] = images['image'].cuda() # 480x640\n#         output = superpoint(images)\n#         for j in range(images['image'].shape[0]):\n#             mp_idx = images['image_index'][j]\n#             image_descriptors = output['descriptors'][j].detach().cpu().numpy()  # DxN = 256xNum_KPs\n#             keypoints = output['keypoints'][j].detach().cpu().numpy()\n#             scores = output['scores'][j].detach().cpu().numpy()\n#\n#             d1 = Image.open(os.path.join(ROOT_DIR, DATASET_NAME, 'depth/depth_%06d.png' % mp_idx))\n#             d1 = np.asarray(d1).astype(np.float32) / 1000.0\n#             T1 = np.loadtxt(os.path.join(ROOT_DIR, DATASET_NAME, 'pose/pose_%06d.txt' % mp_idx))\n#\n#             pts3d_all = None\n#             f3d = []\n#             flag_array = np.zeros((keypoints.shape[0]))\n#             for i in range(keypoints.shape[0]):\n#                 pt2d = keypoints[i] * np.array([3.0, 2.25])\n#                 u, v = pt2d[0], pt2d[1]\n#                 z = d1[int(v), int(u)]\n#                 if z > 0.0:\n#                     flag_array[i] = 1.0\n#                 xyz_curr = convert_2d_to_3d(u, v, z, K_mp)\n#                 f3d.append(xyz_curr)\n#             f3d = (T1[:3, :3] @ np.array(f3d).transpose() + T1[:3, 3:]).transpose()\n#             pts3d_all = np.diag(flag_array) @ f3d\n#\n#             # the minimal number of points accepted by solvePnP is 4:\n#             f3d = np.expand_dims(pts3d_all.astype(np.float32), axis=1)\n#\n#             # Write the matches to disk.\n#             out_matches = {'keypoints': keypoints,\n#                            'scores': scores,\n#                            'descriptors': image_descriptors,\n#                            'XYZ': f3d}\n#             np.savez(os.path.join(ROOT_DIR, DATASET_NAME, 'image_descriptors_ours', 'image_%06d_descriptors.npz' % mp_idx), **out_matches)\n\n'''\n\n# # ### Ours\n# ############# STEP 0: CONSTRUCT DESCRIPTOR CENTERS\ntotal_removal = 0\nall_descriptors = None\nIMAGE_DESC_FOLDER = os.path.join(ROOT_DIR, DATASET_NAME, 'image_descriptors_ours')\n\n# with torch.no_grad():\n#     matterport_filelist = sorted(fnmatch.filter(os.listdir(IMAGE_DESC_FOLDER), 'image_*_descriptors.npz'))\n#\n#     for filename in matterport_filelist:\n#         image_descriptors = np.load(os.path.join(IMAGE_DESC_FOLDER, filename))['descriptors']\n#         _, N = image_descriptors.shape\n#         if N < 300:\n#             total_removal += 1\n#             print('removed ', total_removal, ' images')\n#             continue\n#         if all_descriptors is None:\n#             all_descriptors = np.transpose(image_descriptors, (1, 0))\n#         else:\n#             all_descriptors = np.concatenate((all_descriptors,\n#                                               np.transpose(image_descriptors, (1, 0))), axis=0)\n#             print('all_descriptors shape: ', all_descriptors.shape)\n#\n#\n# kmeans = KMeans(n_clusters=64, random_state=0, init='k-means++', max_iter=5000, verbose=1).fit(all_descriptors)  # data\n# np.save(os.path.join(ROOT_DIR, DATASET_NAME, 'data_descriptors_centers_ours.npy'), kmeans.cluster_centers_)\n\n\n# # ############# STEP 1: BUILD IMAGE DESCRIPTOR TREE\ndescriptors_cluster_centers = np.load(os.path.join(ROOT_DIR, DATASET_NAME, 'data_descriptors_centers_ours.npy'))\ndescriptors_cluster_centers = torch.tensor(descriptors_cluster_centers, device='cuda')  # KxD\nK, D = descriptors_cluster_centers.shape\n\n# image_indices = []\n# vlad_image_descriptors = []\n#\n# with torch.no_grad():\n#     matterport_filelist = sorted(fnmatch.filter(os.listdir(IMAGE_DESC_FOLDER), 'image_*_descriptors.npz'))\n#\n#     for filename in matterport_filelist:\n#         print(filename)\n#         image_descriptors = np.load(os.path.join(IMAGE_DESC_FOLDER, filename))['descriptors']\n#         image_descriptors = torch.tensor(image_descriptors, device='cuda')\n#         _, N = image_descriptors.shape\n#         if N < 250:\n#             continue\n#\n#         # compute vlad image descriptor\n#         assignment_matrix = descriptors_cluster_centers @ image_descriptors  # KxN\n#         v = torch.max(assignment_matrix, dim=0)\n#         assignment_mask = assignment_matrix == v.values.reshape(1, N).repeat((K, 1))  # KxN\n#         assignment_mask = assignment_mask.reshape(1, K, N).repeat((D, 1, 1))\n#         assignment_mask = assignment_mask.float()\n#\n#         image_descriptors = image_descriptors.reshape(D, 1, N).repeat((1, K, 1))  # DxKxN\n#         residual = image_descriptors - torch.transpose(descriptors_cluster_centers, 0, 1).reshape(D, K, 1)  # DxKxN\n#         masked_residual = torch.sum(assignment_mask * residual, dim=2)  # DxK\n#\n#         masked_residual = torch.nn.functional.normalize(masked_residual, p=2, dim=0)\n#         vlad_image_descriptor = torch.nn.functional.normalize(masked_residual.reshape(1, -1), p=2, dim=1)\n#\n#         image_indices.append(int(filename[6:12]))\n#         vlad_image_descriptors.append(vlad_image_descriptor.detach().cpu().numpy())\n#\n# vlad_image_descriptors = np.concatenate(vlad_image_descriptors, axis=0)\n# np.save(os.path.join(ROOT_DIR, DATASET_NAME, 'all_image_descriptors_ours.npy'), vlad_image_descriptors)\n# np.save(os.path.join(ROOT_DIR, DATASET_NAME, 'all_image_descriptors_indices_ours.npy'), np.asarray(image_indices))\n# print('vlad_image_descriptors: ', vlad_image_descriptors.shape)\n\nvlad_image_descriptors_ours = np.load(os.path.join(ROOT_DIR, DATASET_NAME, 'all_image_descriptors_ours.npy'))\nimage_indices_ours = np.load(os.path.join(ROOT_DIR, DATASET_NAME, 'all_image_descriptors_indices_ours.npy'))\nvlad_image_descriptors = np.load(os.path.join(ROOT_DIR, DATASET_NAME, 'all_image_descriptors.npy'))\nimage_indices = np.load(os.path.join(ROOT_DIR, DATASET_NAME, 'all_image_descriptors_indices.npy'))\n#\n## Cross-checking for correctness\nprint(vlad_image_descriptors_ours - vlad_image_descriptors)\nprint(np.sum(image_indices_ours - image_indices))\n# print(np.linalg.norm(vlad_image_descriptors_ours[0] - vlad_image_descriptors[-14]))\n#\n# # for chosen_idx in range(image_indices_ours.shape[0]):\n# #     for i in range(image_indices.shape[0]):\n# #         if image_indices[i] == image_indices_ours[chosen_idx]:\n# #             print(np.linalg.norm(vlad_image_descriptors_ours[chosen_idx] - vlad_image_descriptors[i]))\n# ### Cross-checking for correctness\n\n\n# ######### STEP 2: QUERY IMAGEG FROM DATABASE\nkdt = KDTree(vlad_image_descriptors, leaf_size=30, metric='euclidean')\n\nAZURE_ROOT_DIR = '/home/kvuong/dgx-projects/ego4d_data/KinectAzure'\n# # AZURE_DATASET_NAME = 'tien_walter_02'\n# # AZURE_DATASET_NAME = 'walter_basement_03'\nAZURE_DATASET_NAME = 'walterb18'\n\nif not os.path.exists(os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'vlad_best_match_ours')):\n    os.makedirs(os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'vlad_best_match_ours'))\n\nego_dataset = AzureKinect(root=AZURE_ROOT_DIR, dataset_name=AZURE_DATASET_NAME, skip_every_n_image=1,\n                          start_idx=1140, end_idx=9300)\ndata_loader = DataLoader(dataset=ego_dataset,\n                            num_workers=4, batch_size=12,\n                            shuffle=False,\n                            pin_memory=True)\n\nmatch_pair = {'matterport': [], 'ego': []}\nwith torch.no_grad():\n    for idx, images in enumerate(data_loader):\n        print(images['image_index'])\n        images['image'] = images['image'].cuda()\n        output = superpoint(images)\n        for j in range(images['image'].shape[0]):\n            image_descriptors = output['descriptors'][j]  # DxN\n            _, N = image_descriptors.shape\n\n            # compute vlad image descriptor\n            assignment_matrix = descriptors_cluster_centers @ image_descriptors  # KxN\n            v = torch.max(assignment_matrix, dim=0)\n            assignment_mask = assignment_matrix == v.values.reshape(1, N).repeat((K, 1))  # KxN\n            assignment_mask = assignment_mask.reshape(1, K, N).repeat((D, 1, 1))\n            assignment_mask = assignment_mask.float()\n\n            image_descriptors = image_descriptors.reshape(D, 1, N).repeat((1, K, 1))  # DxKxN\n            residual = image_descriptors - torch.transpose(descriptors_cluster_centers, 0, 1).reshape(D, K, 1)  # DxKxN\n            masked_residual = torch.sum(assignment_mask * residual, dim=2)  # DxK\n\n            masked_residual = torch.nn.functional.normalize(masked_residual, p=2, dim=0)\n            vlad_image_descriptor = torch.nn.functional.normalize(masked_residual.reshape(1, -1), p=2, dim=1)\n\n            # Match and save\n            ret_query = kdt.query(vlad_image_descriptor.detach().cpu().numpy().reshape(1, -1), k=5, return_distance=False)[0]\n\n            # # visualization\n            # query_imgs = [cv2.imread(\n            #     os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'color', 'color_%07d.jpg' % images['image_index'][j]))]\n            # for i in range(5):\n            #     query_imgs.append(cv2.imread(\n            #         os.path.join(ROOT_DIR, DATASET_NAME, 'scolor', 'color_%06d.png' % image_indices[ret_query[i]])))\n            # query_imgs = np.concatenate(query_imgs, axis=1)\n            # cv2.imwrite('query_viz/%d.png' % images['image_index'][j], query_imgs)\n\n            # save image matches\n            # np.savetxt(os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'vlad_best_match', 'queries_%06d.txt' % images['image_index'][j]),\n            #            np.array(image_indices[ret_query]), fmt='%d')\n            for qids in range(len(ret_query)):\n                match_pair['matterport'].append(\n                    'Matterport/%s/color/color_%06d.jpg' % (DATASET_NAME, image_indices_ours[ret_query[qids]]))\n                match_pair['ego'].append(\n                    'KinectAzure/%s/color/color_%07d.jpg' % (AZURE_DATASET_NAME, images['image_index'][j]))\n\nwith open(os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'vlad_best_match_ours', 'queries_ours.pkl'), 'wb') as f:\n    pickle.dump(match_pair, f)\n\n\n### Cross-checking for correctness\nqueries_ours = pickle.load(open(os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'vlad_best_match_ours', 'queries_ours.pkl'), 'rb'))\nqueries = pickle.load(open(os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'vlad_best_match', 'queries.pkl'), 'rb'))\nfor i in range(len(queries['ego'])):\n    if queries['ego'][i] != queries_ours['ego'][i]:\n        print(queries['ego'][i], queries_ours['ego'][i])\n    if queries['matterport'][i] != queries_ours['matterport'][i]:\n        print(queries['matterport'][i], queries_ours['matterport'][i])\n### Cross-checking for correctness\n\n\n# Run PnP\n\n# ### First, let's check if the matches are correct\n# MATCH_DATABASE = '/home/kvuong/dgx-projects/ego4d_data/KinectAzure/walterb18/superglue_match_results_redo/'\n# MATCH_DATABASE_OURS = '/home/kvuong/dgx-projects/ego4d_data/KinectAzure/walterb18/superglue_match_results_ours/'\n# for azure_img_idx in range(1140, 1221):\n#     matches_file_list = fnmatch.filter(os.listdir(MATCH_DATABASE), 'color_%07d_*_matches.npz' % azure_img_idx)\n#     matches_file_list_ours = fnmatch.filter(os.listdir(MATCH_DATABASE_OURS), 'color_%07d_*_matches.npz' % azure_img_idx)\n#     for file_idx in range(len(matches_file_list)):\n#         print(file_idx)\n#         matches_data = np.load(os.path.join(MATCH_DATABASE, matches_file_list[file_idx]))\n#         matches_data_ours = np.load(os.path.join(MATCH_DATABASE_OURS, matches_file_list_ours[file_idx]))\n#         print(np.linalg.norm(matches_data['keypoints0'] - matches_data_ours['keypoints0']))\n#         print(np.linalg.norm(matches_data['keypoints1'] - matches_data_ours['keypoints1']))\n#         print(np.linalg.norm(matches_data['matches'] - matches_data_ours['matches']))\n# ### First, let's check if the matches are correct\n\n'''\n\n## Load all initial poses\nEGOLOC_FOLDER = '/home/kvuong/dgx-projects/ego4d_data/KinectAzure/walterb18/'\nMATCH_DATABASE = '/home/kvuong/dgx-projects/ego4d_data/KinectAzure/walterb18/superglue_match_results_ours/'\nDATABASE_IMAGE_FOLDER = '/home/kvuong/dgx-projects/ego4d_data/Matterport/walterb18/'\nOUTPUT_MATCH = '/home/kvuong/dgx-projects/ego4d_data/Matterport/walterb18/best_match_ours/'\nAZURE_ROOT_DIR = '/home/kvuong/dgx-projects/ego4d_data/KinectAzure/'\nAZURE_DATASET_NAME = 'walterb18'\n\nOUTPUT_DIR = os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'ba_results_ours')\n\nif not os.path.exists(OUTPUT_DIR):\n    os.makedirs(OUTPUT_DIR)\n\noriginal_image_id_list = np.arange(1140, 9300, step=1)\nnum_images = original_image_id_list.shape[0]\nP = np.zeros((num_images, 3, 4))\ngood_pose_pnp = np.zeros(num_images, dtype=bool)\nbatch_size = 8\n\n\nego_dataset = AzureKinectPosePnP(match_database=MATCH_DATABASE,\n                                 database_image_folder=DATABASE_IMAGE_FOLDER,\n                                 image_list=original_image_id_list)\ndata_loader = DataLoader(dataset=ego_dataset,\n                         num_workers=8, batch_size=batch_size,\n                         shuffle=False,\n                         pin_memory=True)\n\nfor idx, output_batch in enumerate(data_loader):\n    print(output_batch['img_idx'])\n    for ii in range(output_batch['is_good_pose'].shape[0]):\n        if output_batch['is_good_pose'][ii]:\n            P[int(output_batch['img_idx'][ii].item())] = output_batch['solution'][ii].numpy()\n            good_pose_pnp[int(output_batch['img_idx'][ii].item())] = True\n\nprint('good pose found by pnp: ', np.sum(good_pose_pnp))\nnp.save('%s/camera_poses_pnp.npy' % OUTPUT_DIR, P)\nnp.save('%s/good_pose_pnp.npy' % OUTPUT_DIR, good_pose_pnp)\nWritePosesToPly(P[good_pose_pnp], '%s/cameras_pnp.ply' % OUTPUT_DIR)\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/match_pairs_api.py",
    "content": "#! /usr/bin/env python3\n#\n# %BANNER_BEGIN%\n# ---------------------------------------------------------------------\n# %COPYRIGHT_BEGIN%\n#\n#  Magic Leap, Inc. (\"COMPANY\") CONFIDENTIAL\n#\n#  Unpublished Copyright (c) 2020\n#  Magic Leap, Inc., All Rights Reserved.\n#\n# NOTICE:  All information contained herein is, and remains the property\n# of COMPANY. The intellectual and technical concepts contained herein\n# are proprietary to COMPANY and may be covered by U.S. and Foreign\n# Patents, patents in process, and are protected by trade secret or\n# copyright law.  Dissemination of this information or reproduction of\n# this material is strictly forbidden unless prior written permission is\n# obtained from COMPANY.  Access to the source code contained herein is\n# hereby forbidden to anyone except current COMPANY employees, managers\n# or contractors who have executed Confidentiality and Non-disclosure\n# agreements explicitly covering such access.\n#\n# The copyright notice above does not evidence any actual or intended\n# publication or disclosure  of  this source code, which includes\n# information that is confidential and/or proprietary, and is a trade\n# secret, of  COMPANY.   ANY REPRODUCTION, MODIFICATION, DISTRIBUTION,\n# PUBLIC  PERFORMANCE, OR PUBLIC DISPLAY OF OR THROUGH USE  OF THIS\n# SOURCE CODE  WITHOUT THE EXPRESS WRITTEN CONSENT OF COMPANY IS\n# STRICTLY PROHIBITED, AND IN VIOLATION OF APPLICABLE LAWS AND\n# INTERNATIONAL TREATIES.  THE RECEIPT OR POSSESSION OF  THIS SOURCE\n# CODE AND/OR RELATED INFORMATION DOES NOT CONVEY OR IMPLY ANY RIGHTS\n# TO REPRODUCE, DISCLOSE OR DISTRIBUTE ITS CONTENTS, OR TO MANUFACTURE,\n# USE, OR SELL ANYTHING THAT IT  MAY DESCRIBE, IN WHOLE OR IN PART.\n#\n# %COPYRIGHT_END%\n# ----------------------------------------------------------------------\n# %AUTHORS_BEGIN%\n#\n#  Originating Authors: Paul-Edouard Sarlin\n#                       Daniel DeTone\n#                       Tomasz Malisiewicz\n#\n# %AUTHORS_END%\n# --------------------------------------------------------------------*/\n# %BANNER_END%\nimport fnmatch\nimport os\nfrom pathlib import Path\nimport argparse\nimport random\nimport numpy as np\nimport matplotlib.cm as cm\nimport pickle\nimport torch\nfrom tqdm import tqdm\n\nfrom models.superpoint import SuperPoint\nfrom models.matching import Matching\nfrom models.utils import (compute_pose_error, compute_epipolar_error,\n                          estimate_pose, make_matching_plot,\n                          error_colormap, AverageTimer, pose_auc, read_image,\n                          rotate_intrinsics, rotate_pose_inplane,\n                          scale_intrinsics)\n\ntorch.set_grad_enabled(False)\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser(\n        description='Image pair matching and pose evaluation with SuperGlue',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n\n    parser.add_argument(\n        '--input_pairs', type=str, default='assets/scannet_sample_pairs_with_gt.txt',\n        help='Path to the list of image pairs')\n    parser.add_argument(\n        '--starting_index', type=int, default=0,\n        help='starting index of matching pair')\n    parser.add_argument(\n        '--ending_index', type=int, default=-1,\n        help='ending index of matching pair')\n    parser.add_argument(\n        '--input_dir', type=str, default='assets/scannet_sample_images/',\n        help='Path to the directory that contains the images')\n    parser.add_argument(\n        '--output_dir', type=str, default='dump_match_pairs/',\n        help='Path to the directory in which the .npz results and optionally,'\n             'the visualization images are written')\n\n    parser.add_argument(\n        '--max_length', type=int, default=-1,\n        help='Maximum number of pairs to evaluate')\n    parser.add_argument(\n        '--resize', type=int, nargs='+', default=[640, 480],\n        help='Resize the input image before running inference. If two numbers, '\n             'resize to the exact dimensions, if one number, resize the max '\n             'dimension, if -1, do not resize')\n    parser.add_argument(\n        '--resize_float', action='store_true',\n        help='Resize the image after casting uint8 to float')\n\n    parser.add_argument(\n        '--superglue', choices={'indoor', 'outdoor'}, default='indoor',\n        help='SuperGlue weights')\n    parser.add_argument(\n        '--max_keypoints', type=int, default=1024,\n        help='Maximum number of keypoints detected by Superpoint'\n             ' (\\'-1\\' keeps all keypoints)')\n    parser.add_argument(\n        '--keypoint_threshold', type=float, default=0.005,\n        help='SuperPoint keypoint detector confidence threshold')\n    parser.add_argument(\n        '--nms_radius', type=int, default=4,\n        help='SuperPoint Non Maximum Suppression (NMS) radius'\n        ' (Must be positive)')\n    parser.add_argument(\n        '--sinkhorn_iterations', type=int, default=20,\n        help='Number of Sinkhorn iterations performed by SuperGlue')\n    parser.add_argument(\n        '--match_threshold', type=float, default=0.2,\n        help='SuperGlue match threshold')\n\n    parser.add_argument(\n        '--viz', action='store_true',\n        help='Visualize the matches and dump the plots')\n    parser.add_argument(\n        '--eval', action='store_true',\n        help='Perform the evaluation'\n             ' (requires ground truth pose and intrinsics)')\n    parser.add_argument(\n        '--fast_viz', action='store_true',\n        help='Use faster image visualization with OpenCV instead of Matplotlib')\n    parser.add_argument(\n        '--cache', action='store_true',\n        help='Skip the pair if output .npz files are already found')\n    parser.add_argument(\n        '--show_keypoints', action='store_true',\n        help='Plot the keypoints in addition to the matches')\n    parser.add_argument(\n        '--viz_extension', type=str, default='png', choices=['png', 'pdf'],\n        help='Visualization file extension. Use pdf for highest-quality.')\n    parser.add_argument(\n        '--opencv_display', action='store_true',\n        help='Visualize via OpenCV before saving output images')\n    parser.add_argument(\n        '--shuffle', action='store_true',\n        help='Shuffle ordering of pairs before processing')\n    parser.add_argument(\n        '--force_cpu', action='store_true',\n        help='Force pytorch to run in CPU mode.')\n\n\n    opt = parser.parse_args()\n    print(opt)\n\n    assert not (opt.opencv_display and not opt.viz), 'Must use --viz with --opencv_display'\n    assert not (opt.opencv_display and not opt.fast_viz), 'Cannot use --opencv_display without --fast_viz'\n    assert not (opt.fast_viz and not opt.viz), 'Must use --viz with --fast_viz'\n    assert not (opt.fast_viz and opt.viz_extension == 'pdf'), 'Cannot use pdf extension with --fast_viz'\n\n    if len(opt.resize) == 2 and opt.resize[1] == -1:\n        opt.resize = opt.resize[0:1]\n    if len(opt.resize) == 2:\n        print('Will resize to {}x{} (WxH)'.format(\n            opt.resize[0], opt.resize[1]))\n    elif len(opt.resize) == 1 and opt.resize[0] > 0:\n        print('Will resize max dimension to {}'.format(opt.resize[0]))\n    elif len(opt.resize) == 1:\n        print('Will not resize images')\n    else:\n        raise ValueError('Cannot specify more than two integers for --resize')\n\n    with open(opt.input_pairs, 'rb') as f:\n        d = pickle.load(f)\n        pairs = []\n        if opt.ending_index == 0:\n            opt.ending_index = len(d['ego'])\n        for i in range(opt.starting_index, opt.ending_index):\n            pairs.append((d['ego'][i], d['matterport'][i]))\n        # pairs = [l.split() for l in f.readlines()]\n\n    if opt.max_length > -1:\n        pairs = pairs[0:np.min([len(pairs), opt.max_length])]\n\n    if opt.shuffle:\n        random.Random(0).shuffle(pairs)\n\n    if opt.eval:\n        if not all([len(p) == 38 for p in pairs]):\n            raise ValueError(\n                'All pairs should have ground truth info for evaluation.'\n                'File \\\"{}\\\" needs 38 valid entries per row'.format(opt.input_pairs))\n\n    # Load the SuperPoint and SuperGlue models.\n    device = 'cuda' if torch.cuda.is_available() and not opt.force_cpu else 'cpu'\n    print('Running inference on device \\\"{}\\\"'.format(device))\n    config = {\n        'superpoint': {\n            'nms_radius': opt.nms_radius,\n            'keypoint_threshold': opt.keypoint_threshold,\n            'max_keypoints': opt.max_keypoints\n        },\n        'superglue': {\n            'weights': opt.superglue,\n            'sinkhorn_iterations': opt.sinkhorn_iterations,\n            'match_threshold': opt.match_threshold,\n        }\n    }\n    matching = Matching(config).eval().to(device)\n\n    superpoint = SuperPoint(config.get('superpoint', {})).eval().to(device)\n\n    # Create the output directories if they do not exist already.\n    # input_dir = Path(opt.input_dir)\n    # print('Looking for data in directory \\\"{}\\\"'.format(input_dir))\n    output_dir = Path(opt.output_dir)\n    output_dir.mkdir(exist_ok=True, parents=True)\n    # print('Will write matches to directory \\\"{}\\\"'.format(output_dir))\n    if opt.eval:\n        print('Will write evaluation results',\n              'to directory \\\"{}\\\"'.format(output_dir))\n    if opt.viz:\n        print('Will write visualization images to',\n              'directory \\\"{}\\\"'.format(output_dir))\n\n    timer = AverageTimer(newline=True)\n    for i, pair in enumerate(tqdm(pairs)):\n        name0 = pair[0]\n        name1 = pair[1]\n        stem0, stem1 = Path(name0).stem, Path(name1).stem\n        matches_path = output_dir / '{}_{}_matches.npz'.format(stem0, stem1)\n        eval_path = output_dir / '{}_{}_evaluation.npz'.format(stem0, stem1)\n        viz_path = output_dir / '{}_{}_matches.{}'.format(stem0, stem1, opt.viz_extension)\n        viz_eval_path = output_dir / \\\n            '{}_{}_evaluation.{}'.format(stem0, stem1, opt.viz_extension)\n\n        # Handle --cache logic.\n        do_match = True\n        do_eval = opt.eval\n        do_viz = opt.viz\n        do_viz_eval = opt.eval and opt.viz\n        if opt.cache:\n            if matches_path.exists():\n                try:\n                    results = np.load(matches_path)\n                except:\n                    raise IOError('Cannot load matches .npz file: %s' %\n                                  matches_path)\n\n                kpts0, kpts1 = results['keypoints0'], results['keypoints1']\n                matches, conf = results['matches'], results['match_confidence']\n                do_match = False\n            if opt.eval and eval_path.exists():\n                try:\n                    results = np.load(eval_path)\n                except:\n                    raise IOError('Cannot load eval .npz file: %s' % eval_path)\n                err_R, err_t = results['error_R'], results['error_t']\n                precision = results['precision']\n                matching_score = results['matching_score']\n                num_correct = results['num_correct']\n                epi_errs = results['epipolar_errors']\n                do_eval = False\n            if opt.viz and viz_path.exists():\n                do_viz = False\n            if opt.viz and opt.eval and viz_eval_path.exists():\n                do_viz_eval = False\n            timer.update('load_cache')\n\n        if not (do_match or do_eval or do_viz or do_viz_eval):\n            timer.print('Finished pair {:5} of {:5}'.format(i, len(pairs)))\n            continue\n\n        # If a rotation integer is provided (e.g. from EXIF data), use it:\n        if len(pair) >= 5:\n            rot0, rot1 = int(pair[2]), int(pair[3])\n        else:\n            rot0, rot1 = 0, 0\n\n        ego_image = Path(name0)\n        # ego_image = Path(os.path.join(input_dir, 'ego_videos', 'thao_ego_0001', 'color', 'color_%06d.png' % int(name0[-10:-4])))\n        # # Load the image pair.\n        # image0, inp0, scales0 = read_image(\n        #     input_dir / name0, device, opt.resize, rot0, opt.resize_float)\n        image0, inp0, scales0 = read_image(\n            ego_image, device, opt.resize, rot0, opt.resize_float)\n        # image1, inp1, scales1 = read_image(\n        #     input_dir / name1, device, opt.resize, rot1, opt.resize_float)\n        # if image0 is None or image1 is None:\n        #     print('Problem reading image pair: {} {}'.format(\n        #         input_dir/name0, input_dir/name1))\n        #     exit(1)\n        timer.update('load_image')\n\n        # IMAGE_DESC_FOLDER = os.path.join(input_dir, 'Matterport', 'walterb18', 'image_descriptors_ours')\n        # IMAGE_DESC_FOLDER = os.path.join(input_dir, 'scene_scans', 'thao_home', 'image_descriptors_ours')\n        # inp1 = np.load(os.path.join(IMAGE_DESC_FOLDER, 'image_%06d_descriptors.npz' % int(name1[-10:-4])))\n        inp1 = np.load(name1)\n        inp1 = {k + '1': v for k, v in inp1.items()}\n        inp1['image1'] = np.zeros((1, 3, 480, 640))\n\n        if do_match:\n            pred = matching({'image0': inp0,\n                             'keypoints1': torch.tensor(np.expand_dims(inp1['keypoints1'], 0)).cuda(),\n                             'descriptors1': torch.tensor(np.expand_dims(inp1['descriptors1'], 0)).cuda(),\n                             'image1': torch.tensor(inp1['image1']).cuda(),\n                             'scores1': torch.tensor(np.expand_dims(inp1['scores1'], 0)).cuda()})\n            # pred = matching({'image0': inp0,\n            #                  'image1': inp1})\n            pred['keypoints1'] = torch.tensor(np.expand_dims(inp1['keypoints1'], 0)).cuda()\n            pred = {k: v[0].cpu().numpy() for k, v in pred.items()}\n\n            kpts0, kpts1 = pred['keypoints0'], pred['keypoints1']\n            matches, conf = pred['matches0'], pred['matching_scores0']\n\n            timer.update('matcher')\n\n            # Write the matches to disk.\n            out_matches = {'keypoints0': kpts0, 'keypoints1': kpts1,\n                           'matches': matches, 'match_confidence': conf}\n            np.savez(str(matches_path), **out_matches)\n\n        # Keep the matching keypoints.\n        valid = matches > -1\n        mkpts0 = kpts0[valid]\n        mkpts1 = kpts1[matches[valid]]\n        mconf = conf[valid]\n\n        if do_eval:\n            # Estimate the pose and compute the pose error.\n            assert len(pair) == 38, 'Pair does not have ground truth info'\n            K0 = np.array(pair[4:13]).astype(float).reshape(3, 3)\n            K1 = np.array(pair[13:22]).astype(float).reshape(3, 3)\n            T_0to1 = np.array(pair[22:]).astype(float).reshape(4, 4)\n\n            # Scale the intrinsics to resized image.\n            K0 = scale_intrinsics(K0, scales0)\n            K1 = scale_intrinsics(K1, scales1)\n\n            # Update the intrinsics + extrinsics if EXIF rotation was found.\n            if rot0 != 0 or rot1 != 0:\n                cam0_T_w = np.eye(4)\n                cam1_T_w = T_0to1\n                if rot0 != 0:\n                    K0 = rotate_intrinsics(K0, image0.shape, rot0)\n                    cam0_T_w = rotate_pose_inplane(cam0_T_w, rot0)\n                if rot1 != 0:\n                    K1 = rotate_intrinsics(K1, image1.shape, rot1)\n                    cam1_T_w = rotate_pose_inplane(cam1_T_w, rot1)\n                cam1_T_cam0 = cam1_T_w @ np.linalg.inv(cam0_T_w)\n                T_0to1 = cam1_T_cam0\n\n            epi_errs = compute_epipolar_error(mkpts0, mkpts1, T_0to1, K0, K1)\n            correct = epi_errs < 5e-4\n            num_correct = np.sum(correct)\n            precision = np.mean(correct) if len(correct) > 0 else 0\n            matching_score = num_correct / len(kpts0) if len(kpts0) > 0 else 0\n\n            thresh = 1.  # In pixels relative to resized image size.\n            ret = estimate_pose(mkpts0, mkpts1, K0, K1, thresh)\n            if ret is None:\n                err_t, err_R = np.inf, np.inf\n            else:\n                R, t, inliers = ret\n                err_t, err_R = compute_pose_error(T_0to1, R, t)\n\n            # Write the evaluation results to disk.\n            out_eval = {'error_t': err_t,\n                        'error_R': err_R,\n                        'precision': precision,\n                        'matching_score': matching_score,\n                        'num_correct': num_correct,\n                        'epipolar_errors': epi_errs}\n            np.savez(str(eval_path), **out_eval)\n            timer.update('eval')\n\n        if do_viz:\n            # Visualize the matches.\n            color = cm.jet(mconf)\n            text = [\n                'SuperGlue',\n                'Keypoints: {}:{}'.format(len(kpts0), len(kpts1)),\n                'Matches: {}'.format(len(mkpts0)),\n            ]\n            if rot0 != 0 or rot1 != 0:\n                text.append('Rotation: {}:{}'.format(rot0, rot1))\n\n            # Display extra parameter info.\n            k_thresh = matching.superpoint.config['keypoint_threshold']\n            m_thresh = matching.superglue.config['match_threshold']\n            small_text = [\n                'Keypoint Threshold: {:.4f}'.format(k_thresh),\n                'Match Threshold: {:.2f}'.format(m_thresh),\n                'Image Pair: {}:{}'.format(stem0, stem1),\n            ]\n\n            image1_path = Path(\n                '/home/tien/Data/Unict/unict_3dscan_004/pose_visualization/render_%06d.png' % int(name1[-22:-16]))\n            image0_path = Path('/home/tien/Data/Unict/ego001_scan004/color/color_%07d.jpg' % int(name0[-11:-4]))\n\n            image0, _, _ = read_image(image0_path, 'cpu', [640, 480], 0, True)\n            image1, _, _ = read_image(image1_path, 'cpu', [640, 480], 0, True)\n\n            make_matching_plot(\n                image0, image1, kpts0, kpts1, mkpts0, mkpts1, color,\n                text, viz_path, opt.show_keypoints,\n                opt.fast_viz, opt.opencv_display, 'Matches', small_text)\n\n            timer.update('viz_match')\n\n        if do_viz_eval:\n            # Visualize the evaluation results for the image pair.\n            color = np.clip((epi_errs - 0) / (1e-3 - 0), 0, 1)\n            color = error_colormap(1 - color)\n            deg, delta = ' deg', 'Delta '\n            if not opt.fast_viz:\n                deg, delta = '°', '$\\\\Delta$'\n            e_t = 'FAIL' if np.isinf(err_t) else '{:.1f}{}'.format(err_t, deg)\n            e_R = 'FAIL' if np.isinf(err_R) else '{:.1f}{}'.format(err_R, deg)\n            text = [\n                'SuperGlue',\n                '{}R: {}'.format(delta, e_R), '{}t: {}'.format(delta, e_t),\n                'inliers: {}/{}'.format(num_correct, (matches > -1).sum()),\n            ]\n            if rot0 != 0 or rot1 != 0:\n                text.append('Rotation: {}:{}'.format(rot0, rot1))\n\n            # Display extra parameter info (only works with --fast_viz).\n            k_thresh = matching.superpoint.config['keypoint_threshold']\n            m_thresh = matching.superglue.config['match_threshold']\n            small_text = [\n                'Keypoint Threshold: {:.4f}'.format(k_thresh),\n                'Match Threshold: {:.2f}'.format(m_thresh),\n                'Image Pair: {}:{}'.format(stem0, stem1),\n            ]\n\n            make_matching_plot(\n                image0, image1, kpts0, kpts1, mkpts0,\n                mkpts1, color, text, viz_eval_path,\n                opt.show_keypoints, opt.fast_viz,\n                opt.opencv_display, 'Relative Pose', small_text)\n\n            timer.update('viz_eval')\n\n        # timer.print('Finished pair {:5} of {:5}'.format(i, len(pairs)))\n\n    if opt.eval:\n        # Collate the results into a final table and print to terminal.\n        pose_errors = []\n        precisions = []\n        matching_scores = []\n        for pair in pairs:\n            name0, name1 = pair[:2]\n            stem0, stem1 = Path(name0).stem, Path(name1).stem\n            eval_path = output_dir / \\\n                '{}_{}_evaluation.npz'.format(stem0, stem1)\n            results = np.load(eval_path)\n            pose_error = np.maximum(results['error_t'], results['error_R'])\n            pose_errors.append(pose_error)\n            precisions.append(results['precision'])\n            matching_scores.append(results['matching_score'])\n        thresholds = [5, 10, 20]\n        aucs = pose_auc(pose_errors, thresholds)\n        aucs = [100.*yy for yy in aucs]\n        prec = 100.*np.mean(precisions)\n        ms = 100.*np.mean(matching_scores)\n        print('Evaluation Results (mean over {} pairs):'.format(len(pairs)))\n        print('AUC@5\\t AUC@10\\t AUC@20\\t Prec\\t MScore\\t')\n        print('{:.2f}\\t {:.2f}\\t {:.2f}\\t {:.2f}\\t {:.2f}\\t'.format(\n            aucs[0], aucs[1], aucs[2], prec, ms))\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/models/__init__.py",
    "content": ""
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/models/matching.py",
    "content": "# %BANNER_BEGIN%\n# ---------------------------------------------------------------------\n# %COPYRIGHT_BEGIN%\n#\n#  Magic Leap, Inc. (\"COMPANY\") CONFIDENTIAL\n#\n#  Unpublished Copyright (c) 2020\n#  Magic Leap, Inc., All Rights Reserved.\n#\n# NOTICE:  All information contained herein is, and remains the property\n# of COMPANY. The intellectual and technical concepts contained herein\n# are proprietary to COMPANY and may be covered by U.S. and Foreign\n# Patents, patents in process, and are protected by trade secret or\n# copyright law.  Dissemination of this information or reproduction of\n# this material is strictly forbidden unless prior written permission is\n# obtained from COMPANY.  Access to the source code contained herein is\n# hereby forbidden to anyone except current COMPANY employees, managers\n# or contractors who have executed Confidentiality and Non-disclosure\n# agreements explicitly covering such access.\n#\n# The copyright notice above does not evidence any actual or intended\n# publication or disclosure  of  this source code, which includes\n# information that is confidential and/or proprietary, and is a trade\n# secret, of  COMPANY.   ANY REPRODUCTION, MODIFICATION, DISTRIBUTION,\n# PUBLIC  PERFORMANCE, OR PUBLIC DISPLAY OF OR THROUGH USE  OF THIS\n# SOURCE CODE  WITHOUT THE EXPRESS WRITTEN CONSENT OF COMPANY IS\n# STRICTLY PROHIBITED, AND IN VIOLATION OF APPLICABLE LAWS AND\n# INTERNATIONAL TREATIES.  THE RECEIPT OR POSSESSION OF  THIS SOURCE\n# CODE AND/OR RELATED INFORMATION DOES NOT CONVEY OR IMPLY ANY RIGHTS\n# TO REPRODUCE, DISCLOSE OR DISTRIBUTE ITS CONTENTS, OR TO MANUFACTURE,\n# USE, OR SELL ANYTHING THAT IT  MAY DESCRIBE, IN WHOLE OR IN PART.\n#\n# %COPYRIGHT_END%\n# ----------------------------------------------------------------------\n# %AUTHORS_BEGIN%\n#\n#  Originating Authors: Paul-Edouard Sarlin\n#\n# %AUTHORS_END%\n# --------------------------------------------------------------------*/\n# %BANNER_END%\n\nimport torch\n\nfrom .superpoint import SuperPoint\nfrom .superglue import SuperGlue\n\n\nclass Matching(torch.nn.Module):\n    \"\"\" Image Matching Frontend (SuperPoint + SuperGlue) \"\"\"\n    def __init__(self, config={}):\n        super().__init__()\n        self.superpoint = SuperPoint(config.get('superpoint', {}))\n        self.superglue = SuperGlue(config.get('superglue', {}))\n\n    def forward(self, data):\n        \"\"\" Run SuperPoint (optionally) and SuperGlue\n        SuperPoint is skipped if ['keypoints0', 'keypoints1'] exist in input\n        Args:\n          data: dictionary with minimal keys: ['image0', 'image1']\n        \"\"\"\n        pred = {}\n\n        # Extract SuperPoint (keypoints, scores, descriptors) if not provided\n        if 'keypoints0' not in data:\n            pred0 = self.superpoint({'image': data['image0']})\n            pred = {**pred, **{k+'0': v for k, v in pred0.items()}}\n        if 'keypoints1' not in data:\n            pred1 = self.superpoint({'image': data['image1']})\n            pred = {**pred, **{k+'1': v for k, v in pred1.items()}}\n\n        # Batch all features\n        # We should either have i) one image per batch, or\n        # ii) the same number of local features for all images in the batch.\n        data = {**data, **pred}\n\n        for k in data:\n            if isinstance(data[k], (list, tuple)):\n                data[k] = torch.stack(data[k])\n\n        # Perform the matching\n        pred = {**pred, **self.superglue(data)}\n\n        return pred\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/models/superglue.py",
    "content": "# %BANNER_BEGIN%\n# ---------------------------------------------------------------------\n# %COPYRIGHT_BEGIN%\n#\n#  Magic Leap, Inc. (\"COMPANY\") CONFIDENTIAL\n#\n#  Unpublished Copyright (c) 2020\n#  Magic Leap, Inc., All Rights Reserved.\n#\n# NOTICE:  All information contained herein is, and remains the property\n# of COMPANY. The intellectual and technical concepts contained herein\n# are proprietary to COMPANY and may be covered by U.S. and Foreign\n# Patents, patents in process, and are protected by trade secret or\n# copyright law.  Dissemination of this information or reproduction of\n# this material is strictly forbidden unless prior written permission is\n# obtained from COMPANY.  Access to the source code contained herein is\n# hereby forbidden to anyone except current COMPANY employees, managers\n# or contractors who have executed Confidentiality and Non-disclosure\n# agreements explicitly covering such access.\n#\n# The copyright notice above does not evidence any actual or intended\n# publication or disclosure  of  this source code, which includes\n# information that is confidential and/or proprietary, and is a trade\n# secret, of  COMPANY.   ANY REPRODUCTION, MODIFICATION, DISTRIBUTION,\n# PUBLIC  PERFORMANCE, OR PUBLIC DISPLAY OF OR THROUGH USE  OF THIS\n# SOURCE CODE  WITHOUT THE EXPRESS WRITTEN CONSENT OF COMPANY IS\n# STRICTLY PROHIBITED, AND IN VIOLATION OF APPLICABLE LAWS AND\n# INTERNATIONAL TREATIES.  THE RECEIPT OR POSSESSION OF  THIS SOURCE\n# CODE AND/OR RELATED INFORMATION DOES NOT CONVEY OR IMPLY ANY RIGHTS\n# TO REPRODUCE, DISCLOSE OR DISTRIBUTE ITS CONTENTS, OR TO MANUFACTURE,\n# USE, OR SELL ANYTHING THAT IT  MAY DESCRIBE, IN WHOLE OR IN PART.\n#\n# %COPYRIGHT_END%\n# ----------------------------------------------------------------------\n# %AUTHORS_BEGIN%\n#\n#  Originating Authors: Paul-Edouard Sarlin\n#\n# %AUTHORS_END%\n# --------------------------------------------------------------------*/\n# %BANNER_END%\n\nfrom copy import deepcopy\nfrom pathlib import Path\nimport torch\nfrom torch import nn\n\n\ndef MLP(channels: list, do_bn=True):\n    \"\"\" Multi-layer perceptron \"\"\"\n    n = len(channels)\n    layers = []\n    for i in range(1, n):\n        layers.append(\n            nn.Conv1d(channels[i - 1], channels[i], kernel_size=1, bias=True))\n        if i < (n-1):\n            if do_bn:\n                layers.append(nn.BatchNorm1d(channels[i]))\n            layers.append(nn.ReLU())\n    return nn.Sequential(*layers)\n\n\ndef normalize_keypoints(kpts, image_shape):\n    \"\"\" Normalize keypoints locations based on image image_shape\"\"\"\n    _, _, height, width = image_shape\n    one = kpts.new_tensor(1)\n    size = torch.stack([one*width, one*height])[None]\n    center = size / 2\n    scaling = size.max(1, keepdim=True).values * 0.7\n    return (kpts - center[:, None, :]) / scaling[:, None, :]\n\n\nclass KeypointEncoder(nn.Module):\n    \"\"\" Joint encoding of visual appearance and location using MLPs\"\"\"\n    def __init__(self, feature_dim, layers):\n        super().__init__()\n        self.encoder = MLP([3] + layers + [feature_dim])\n        nn.init.constant_(self.encoder[-1].bias, 0.0)\n\n    def forward(self, kpts, scores):\n        inputs = [kpts.transpose(1, 2), scores.unsqueeze(1)]\n        return self.encoder(torch.cat(inputs, dim=1))\n\n\ndef attention(query, key, value):\n    dim = query.shape[1]\n    scores = torch.einsum('bdhn,bdhm->bhnm', query, key) / dim**.5\n    prob = torch.nn.functional.softmax(scores, dim=-1)\n    return torch.einsum('bhnm,bdhm->bdhn', prob, value), prob\n\n\nclass MultiHeadedAttention(nn.Module):\n    \"\"\" Multi-head attention to increase model expressivitiy \"\"\"\n    def __init__(self, num_heads: int, d_model: int):\n        super().__init__()\n        assert d_model % num_heads == 0\n        self.dim = d_model // num_heads\n        self.num_heads = num_heads\n        self.merge = nn.Conv1d(d_model, d_model, kernel_size=1)\n        self.proj = nn.ModuleList([deepcopy(self.merge) for _ in range(3)])\n\n    def forward(self, query, key, value):\n        batch_dim = query.size(0)\n        query, key, value = [l(x).view(batch_dim, self.dim, self.num_heads, -1)\n                             for l, x in zip(self.proj, (query, key, value))]\n        x, _ = attention(query, key, value)\n        return self.merge(x.contiguous().view(batch_dim, self.dim*self.num_heads, -1))\n\n\nclass AttentionalPropagation(nn.Module):\n    def __init__(self, feature_dim: int, num_heads: int):\n        super().__init__()\n        self.attn = MultiHeadedAttention(num_heads, feature_dim)\n        self.mlp = MLP([feature_dim*2, feature_dim*2, feature_dim])\n        nn.init.constant_(self.mlp[-1].bias, 0.0)\n\n    def forward(self, x, source):\n        message = self.attn(x, source, source)\n        return self.mlp(torch.cat([x, message], dim=1))\n\n\nclass AttentionalGNN(nn.Module):\n    def __init__(self, feature_dim: int, layer_names: list):\n        super().__init__()\n        self.layers = nn.ModuleList([\n            AttentionalPropagation(feature_dim, 4)\n            for _ in range(len(layer_names))])\n        self.names = layer_names\n\n    def forward(self, desc0, desc1):\n        for layer, name in zip(self.layers, self.names):\n            if name == 'cross':\n                src0, src1 = desc1, desc0\n            else:  # if name == 'self':\n                src0, src1 = desc0, desc1\n            delta0, delta1 = layer(desc0, src0), layer(desc1, src1)\n            desc0, desc1 = (desc0 + delta0), (desc1 + delta1)\n        return desc0, desc1\n\n\ndef log_sinkhorn_iterations(Z, log_mu, log_nu, iters: int):\n    \"\"\" Perform Sinkhorn Normalization in Log-space for stability\"\"\"\n    u, v = torch.zeros_like(log_mu), torch.zeros_like(log_nu)\n    for _ in range(iters):\n        u = log_mu - torch.logsumexp(Z + v.unsqueeze(1), dim=2)\n        v = log_nu - torch.logsumexp(Z + u.unsqueeze(2), dim=1)\n    return Z + u.unsqueeze(2) + v.unsqueeze(1)\n\n\ndef log_optimal_transport(scores, alpha, iters: int):\n    \"\"\" Perform Differentiable Optimal Transport in Log-space for stability\"\"\"\n    b, m, n = scores.shape\n    one = scores.new_tensor(1)\n    ms, ns = (m*one).to(scores), (n*one).to(scores)\n\n    bins0 = alpha.expand(b, m, 1)\n    bins1 = alpha.expand(b, 1, n)\n    alpha = alpha.expand(b, 1, 1)\n\n    couplings = torch.cat([torch.cat([scores, bins0], -1),\n                           torch.cat([bins1, alpha], -1)], 1)\n\n    norm = - (ms + ns).log()\n    log_mu = torch.cat([norm.expand(m), ns.log()[None] + norm])\n    log_nu = torch.cat([norm.expand(n), ms.log()[None] + norm])\n    log_mu, log_nu = log_mu[None].expand(b, -1), log_nu[None].expand(b, -1)\n\n    Z = log_sinkhorn_iterations(couplings, log_mu, log_nu, iters)\n    Z = Z - norm  # multiply probabilities by M+N\n    return Z\n\n\ndef arange_like(x, dim: int):\n    return x.new_ones(x.shape[dim]).cumsum(0) - 1  # traceable in 1.1\n\n\nclass SuperGlue(nn.Module):\n    \"\"\"SuperGlue feature matching middle-end\n\n    Given two sets of keypoints and locations, we determine the\n    correspondences by:\n      1. Keypoint Encoding (normalization + visual feature and location fusion)\n      2. Graph Neural Network with multiple self and cross-attention layers\n      3. Final projection layer\n      4. Optimal Transport Layer (a differentiable Hungarian matching algorithm)\n      5. Thresholding matrix based on mutual exclusivity and a match_threshold\n\n    The correspondence ids use -1 to indicate non-matching points.\n\n    Paul-Edouard Sarlin, Daniel DeTone, Tomasz Malisiewicz, and Andrew\n    Rabinovich. SuperGlue: Learning Feature Matching with Graph Neural\n    Networks. In CVPR, 2020. https://arxiv.org/abs/1911.11763\n\n    \"\"\"\n    default_config = {\n        'descriptor_dim': 256,\n        'weights': 'indoor',\n        'keypoint_encoder': [32, 64, 128, 256],\n        'GNN_layers': ['self', 'cross'] * 9,\n        'sinkhorn_iterations': 100,\n        'match_threshold': 0.2,\n    }\n\n    def __init__(self, config):\n        super().__init__()\n        self.config = {**self.default_config, **config}\n\n        self.kenc = KeypointEncoder(\n            self.config['descriptor_dim'], self.config['keypoint_encoder'])\n\n        self.gnn = AttentionalGNN(\n            self.config['descriptor_dim'], self.config['GNN_layers'])\n\n        self.final_proj = nn.Conv1d(\n            self.config['descriptor_dim'], self.config['descriptor_dim'],\n            kernel_size=1, bias=True)\n\n        bin_score = torch.nn.Parameter(torch.tensor(1.))\n        self.register_parameter('bin_score', bin_score)\n\n        assert self.config['weights'] in ['indoor', 'outdoor']\n        path = Path(__file__).parent\n        path = path / 'weights/superglue_{}.pth'.format(self.config['weights'])\n        self.load_state_dict(torch.load(str(path)))\n        print('Loaded SuperGlue model (\\\"{}\\\" weights)'.format(\n            self.config['weights']))\n\n    def forward(self, data):\n        \"\"\"Run SuperGlue on a pair of keypoints and descriptors\"\"\"\n        desc0, desc1 = data['descriptors0'], data['descriptors1']\n        kpts0, kpts1 = data['keypoints0'], data['keypoints1']\n\n        if kpts0.shape[1] == 0 or kpts1.shape[1] == 0:  # no keypoints\n            shape0, shape1 = kpts0.shape[:-1], kpts1.shape[:-1]\n            return {\n                'matches0': kpts0.new_full(shape0, -1, dtype=torch.int),\n                'matches1': kpts1.new_full(shape1, -1, dtype=torch.int),\n                'matching_scores0': kpts0.new_zeros(shape0),\n                'matching_scores1': kpts1.new_zeros(shape1),\n            }\n\n        # Keypoint normalization.\n        kpts0 = normalize_keypoints(kpts0, data['image0'].shape)\n        kpts1 = normalize_keypoints(kpts1, data['image1'].shape)\n\n        # Keypoint MLP encoder.\n        desc0 = desc0 + self.kenc(kpts0, data['scores0'])\n        desc1 = desc1 + self.kenc(kpts1, data['scores1'])\n\n        # Multi-layer Transformer network.\n        desc0, desc1 = self.gnn(desc0, desc1)\n\n        # Final MLP projection.\n        mdesc0, mdesc1 = self.final_proj(desc0), self.final_proj(desc1)\n\n        # Compute matching descriptor distance.\n        scores = torch.einsum('bdn,bdm->bnm', mdesc0, mdesc1)\n        scores = scores / self.config['descriptor_dim']**.5\n\n        # Run the optimal transport.\n        scores = log_optimal_transport(\n            scores, self.bin_score,\n            iters=self.config['sinkhorn_iterations'])\n\n        # Get the matches with score above \"match_threshold\".\n        max0, max1 = scores[:, :-1, :-1].max(2), scores[:, :-1, :-1].max(1)\n        indices0, indices1 = max0.indices, max1.indices\n        mutual0 = arange_like(indices0, 1)[None] == indices1.gather(1, indices0)\n        mutual1 = arange_like(indices1, 1)[None] == indices0.gather(1, indices1)\n        zero = scores.new_tensor(0)\n        mscores0 = torch.where(mutual0, max0.values.exp(), zero)\n        mscores1 = torch.where(mutual1, mscores0.gather(1, indices1), zero)\n        valid0 = mutual0 & (mscores0 > self.config['match_threshold'])\n        valid1 = mutual1 & valid0.gather(1, indices1)\n        indices0 = torch.where(valid0, indices0, indices0.new_tensor(-1))\n        indices1 = torch.where(valid1, indices1, indices1.new_tensor(-1))\n\n        return {\n            'matches0': indices0, # use -1 for invalid match\n            'matches1': indices1, # use -1 for invalid match\n            'matching_scores0': mscores0,\n            'matching_scores1': mscores1,\n        }\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/models/superpoint.py",
    "content": "# %BANNER_BEGIN%\n# ---------------------------------------------------------------------\n# %COPYRIGHT_BEGIN%\n#\n#  Magic Leap, Inc. (\"COMPANY\") CONFIDENTIAL\n#\n#  Unpublished Copyright (c) 2020\n#  Magic Leap, Inc., All Rights Reserved.\n#\n# NOTICE:  All information contained herein is, and remains the property\n# of COMPANY. The intellectual and technical concepts contained herein\n# are proprietary to COMPANY and may be covered by U.S. and Foreign\n# Patents, patents in process, and are protected by trade secret or\n# copyright law.  Dissemination of this information or reproduction of\n# this material is strictly forbidden unless prior written permission is\n# obtained from COMPANY.  Access to the source code contained herein is\n# hereby forbidden to anyone except current COMPANY employees, managers\n# or contractors who have executed Confidentiality and Non-disclosure\n# agreements explicitly covering such access.\n#\n# The copyright notice above does not evidence any actual or intended\n# publication or disclosure  of  this source code, which includes\n# information that is confidential and/or proprietary, and is a trade\n# secret, of  COMPANY.   ANY REPRODUCTION, MODIFICATION, DISTRIBUTION,\n# PUBLIC  PERFORMANCE, OR PUBLIC DISPLAY OF OR THROUGH USE  OF THIS\n# SOURCE CODE  WITHOUT THE EXPRESS WRITTEN CONSENT OF COMPANY IS\n# STRICTLY PROHIBITED, AND IN VIOLATION OF APPLICABLE LAWS AND\n# INTERNATIONAL TREATIES.  THE RECEIPT OR POSSESSION OF  THIS SOURCE\n# CODE AND/OR RELATED INFORMATION DOES NOT CONVEY OR IMPLY ANY RIGHTS\n# TO REPRODUCE, DISCLOSE OR DISTRIBUTE ITS CONTENTS, OR TO MANUFACTURE,\n# USE, OR SELL ANYTHING THAT IT  MAY DESCRIBE, IN WHOLE OR IN PART.\n#\n# %COPYRIGHT_END%\n# ----------------------------------------------------------------------\n# %AUTHORS_BEGIN%\n#\n#  Originating Authors: Paul-Edouard Sarlin\n#\n# %AUTHORS_END%\n# --------------------------------------------------------------------*/\n# %BANNER_END%\n\nfrom pathlib import Path\nimport torch\nfrom torch import nn\n\ndef simple_nms(scores, nms_radius: int):\n    \"\"\" Fast Non-maximum suppression to remove nearby points \"\"\"\n    assert(nms_radius >= 0)\n\n    def max_pool(x):\n        return torch.nn.functional.max_pool2d(\n            x, kernel_size=nms_radius*2+1, stride=1, padding=nms_radius)\n\n    zeros = torch.zeros_like(scores)\n    max_mask = scores == max_pool(scores)\n    for _ in range(2):\n        supp_mask = max_pool(max_mask.float()) > 0\n        supp_scores = torch.where(supp_mask, zeros, scores)\n        new_max_mask = supp_scores == max_pool(supp_scores)\n        max_mask = max_mask | (new_max_mask & (~supp_mask))\n    return torch.where(max_mask, scores, zeros)\n\n\ndef remove_borders(keypoints, scores, border: int, height: int, width: int):\n    \"\"\" Removes keypoints too close to the border \"\"\"\n    mask_h = (keypoints[:, 0] >= border) & (keypoints[:, 0] < (height - border))\n    mask_w = (keypoints[:, 1] >= border) & (keypoints[:, 1] < (width - border))\n    mask = mask_h & mask_w\n    return keypoints[mask], scores[mask]\n\n\ndef top_k_keypoints(keypoints, scores, k: int):\n    if k >= len(keypoints):\n        return keypoints, scores\n    scores, indices = torch.topk(scores, k, dim=0)\n    return keypoints[indices], scores\n\n\ndef sample_descriptors(keypoints, descriptors, s: int = 8):\n    \"\"\" Interpolate descriptors at keypoint locations \"\"\"\n    b, c, h, w = descriptors.shape\n    keypoints = keypoints - s / 2 + 0.5\n    keypoints /= torch.tensor([(w*s - s/2 - 0.5), (h*s - s/2 - 0.5)],\n                              ).to(keypoints)[None]\n    keypoints = keypoints*2 - 1  # normalize to (-1, 1)\n    args = {'align_corners': True} if int(torch.__version__[2]) > 2 else {}\n    descriptors = torch.nn.functional.grid_sample(\n        descriptors, keypoints.view(b, 1, -1, 2), mode='bilinear', **args)\n    descriptors = torch.nn.functional.normalize(\n        descriptors.reshape(b, c, -1), p=2, dim=1)\n    return descriptors\n\n\nclass SuperPoint(nn.Module):\n    \"\"\"SuperPoint Convolutional Detector and Descriptor\n\n    SuperPoint: Self-Supervised Interest Point Detection and\n    Description. Daniel DeTone, Tomasz Malisiewicz, and Andrew\n    Rabinovich. In CVPRW, 2019. https://arxiv.org/abs/1712.07629\n\n    \"\"\"\n    default_config = {\n        'descriptor_dim': 256,\n        'nms_radius': 4,\n        'keypoint_threshold': 0.005,\n        'max_keypoints': -1,\n        'remove_borders': 4,\n    }\n\n    def __init__(self, config):\n        super().__init__()\n        self.config = {**self.default_config, **config}\n\n        self.relu = nn.ReLU(inplace=True)\n        self.pool = nn.MaxPool2d(kernel_size=2, stride=2)\n        c1, c2, c3, c4, c5 = 64, 64, 128, 128, 256\n\n        self.conv1a = nn.Conv2d(1, c1, kernel_size=3, stride=1, padding=1)\n        self.conv1b = nn.Conv2d(c1, c1, kernel_size=3, stride=1, padding=1)\n        self.conv2a = nn.Conv2d(c1, c2, kernel_size=3, stride=1, padding=1)\n        self.conv2b = nn.Conv2d(c2, c2, kernel_size=3, stride=1, padding=1)\n        self.conv3a = nn.Conv2d(c2, c3, kernel_size=3, stride=1, padding=1)\n        self.conv3b = nn.Conv2d(c3, c3, kernel_size=3, stride=1, padding=1)\n        self.conv4a = nn.Conv2d(c3, c4, kernel_size=3, stride=1, padding=1)\n        self.conv4b = nn.Conv2d(c4, c4, kernel_size=3, stride=1, padding=1)\n\n        self.convPa = nn.Conv2d(c4, c5, kernel_size=3, stride=1, padding=1)\n        self.convPb = nn.Conv2d(c5, 65, kernel_size=1, stride=1, padding=0)\n\n        self.convDa = nn.Conv2d(c4, c5, kernel_size=3, stride=1, padding=1)\n        self.convDb = nn.Conv2d(\n            c5, self.config['descriptor_dim'],\n            kernel_size=1, stride=1, padding=0)\n\n        path = Path(__file__).parent / 'weights/superpoint_v1.pth'\n        self.load_state_dict(torch.load(str(path)))\n\n        mk = self.config['max_keypoints']\n        if mk == 0 or mk < -1:\n            raise ValueError('\\\"max_keypoints\\\" must be positive or \\\"-1\\\"')\n\n        print('Loaded SuperPoint model')\n\n    def forward(self, data):\n        \"\"\" Compute keypoints, scores, descriptors for image \"\"\"\n        # Shared Encoder\n        x = self.relu(self.conv1a(data['image']))\n        x = self.relu(self.conv1b(x))\n        x = self.pool(x)\n        x = self.relu(self.conv2a(x))\n        x = self.relu(self.conv2b(x))\n        x = self.pool(x)\n        x = self.relu(self.conv3a(x))\n        x = self.relu(self.conv3b(x))\n        x = self.pool(x)\n        x = self.relu(self.conv4a(x))\n        x = self.relu(self.conv4b(x))\n\n        # Compute the dense keypoint scores\n        cPa = self.relu(self.convPa(x))\n        scores = self.convPb(cPa)\n        scores = torch.nn.functional.softmax(scores, 1)[:, :-1]\n        b, _, h, w = scores.shape\n        scores = scores.permute(0, 2, 3, 1).reshape(b, h, w, 8, 8)\n        scores = scores.permute(0, 1, 3, 2, 4).reshape(b, h*8, w*8)\n        scores = simple_nms(scores, self.config['nms_radius'])\n\n        # Extract keypoints\n        keypoints = [\n            torch.nonzero(s > self.config['keypoint_threshold'])\n            for s in scores]\n        scores = [s[tuple(k.t())] for s, k in zip(scores, keypoints)]\n\n        # Discard keypoints near the image borders\n        keypoints, scores = list(zip(*[\n            remove_borders(k, s, self.config['remove_borders'], h*8, w*8)\n            for k, s in zip(keypoints, scores)]))\n\n        # Keep the k keypoints with highest score\n        if self.config['max_keypoints'] >= 0:\n            keypoints, scores = list(zip(*[\n                top_k_keypoints(k, s, self.config['max_keypoints'])\n                for k, s in zip(keypoints, scores)]))\n\n        # Convert (h, w) to (x, y)\n        keypoints = [torch.flip(k, [1]).float() for k in keypoints]\n\n        # Compute the dense descriptors\n        cDa = self.relu(self.convDa(x))\n        descriptors = self.convDb(cDa)\n        descriptors = torch.nn.functional.normalize(descriptors, p=2, dim=1)\n\n        # Extract descriptors\n        descriptors = [sample_descriptors(k[None], d[None], 8)[0]\n                       for k, d in zip(keypoints, descriptors)]\n\n        return {\n            'keypoints': keypoints,\n            'scores': scores,\n            'descriptors': descriptors,\n        }\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/models/utils.py",
    "content": "# %BANNER_BEGIN%\n# ---------------------------------------------------------------------\n# %COPYRIGHT_BEGIN%\n#\n#  Magic Leap, Inc. (\"COMPANY\") CONFIDENTIAL\n#\n#  Unpublished Copyright (c) 2020\n#  Magic Leap, Inc., All Rights Reserved.\n#\n# NOTICE:  All information contained herein is, and remains the property\n# of COMPANY. The intellectual and technical concepts contained herein\n# are proprietary to COMPANY and may be covered by U.S. and Foreign\n# Patents, patents in process, and are protected by trade secret or\n# copyright law.  Dissemination of this information or reproduction of\n# this material is strictly forbidden unless prior written permission is\n# obtained from COMPANY.  Access to the source code contained herein is\n# hereby forbidden to anyone except current COMPANY employees, managers\n# or contractors who have executed Confidentiality and Non-disclosure\n# agreements explicitly covering such access.\n#\n# The copyright notice above does not evidence any actual or intended\n# publication or disclosure  of  this source code, which includes\n# information that is confidential and/or proprietary, and is a trade\n# secret, of  COMPANY.   ANY REPRODUCTION, MODIFICATION, DISTRIBUTION,\n# PUBLIC  PERFORMANCE, OR PUBLIC DISPLAY OF OR THROUGH USE  OF THIS\n# SOURCE CODE  WITHOUT THE EXPRESS WRITTEN CONSENT OF COMPANY IS\n# STRICTLY PROHIBITED, AND IN VIOLATION OF APPLICABLE LAWS AND\n# INTERNATIONAL TREATIES.  THE RECEIPT OR POSSESSION OF  THIS SOURCE\n# CODE AND/OR RELATED INFORMATION DOES NOT CONVEY OR IMPLY ANY RIGHTS\n# TO REPRODUCE, DISCLOSE OR DISTRIBUTE ITS CONTENTS, OR TO MANUFACTURE,\n# USE, OR SELL ANYTHING THAT IT  MAY DESCRIBE, IN WHOLE OR IN PART.\n#\n# %COPYRIGHT_END%\n# ----------------------------------------------------------------------\n# %AUTHORS_BEGIN%\n#\n#  Originating Authors: Paul-Edouard Sarlin\n#                       Daniel DeTone\n#                       Tomasz Malisiewicz\n#\n# %AUTHORS_END%\n# --------------------------------------------------------------------*/\n# %BANNER_END%\n\nfrom pathlib import Path\nimport time\nfrom collections import OrderedDict\nfrom threading import Thread\nimport numpy as np\nimport cv2\nimport torch\nimport matplotlib.pyplot as plt\nimport matplotlib\nmatplotlib.use('Agg')\n\n\nclass AverageTimer:\n    \"\"\" Class to help manage printing simple timing of code execution. \"\"\"\n\n    def __init__(self, smoothing=0.3, newline=False):\n        self.smoothing = smoothing\n        self.newline = newline\n        self.times = OrderedDict()\n        self.will_print = OrderedDict()\n        self.reset()\n\n    def reset(self):\n        now = time.time()\n        self.start = now\n        self.last_time = now\n        for name in self.will_print:\n            self.will_print[name] = False\n\n    def update(self, name='default'):\n        now = time.time()\n        dt = now - self.last_time\n        if name in self.times:\n            dt = self.smoothing * dt + (1 - self.smoothing) * self.times[name]\n        self.times[name] = dt\n        self.will_print[name] = True\n        self.last_time = now\n\n    def print(self, text='Timer'):\n        total = 0.\n        print('[{}]'.format(text), end=' ')\n        for key in self.times:\n            val = self.times[key]\n            if self.will_print[key]:\n                print('%s=%.3f' % (key, val), end=' ')\n                total += val\n        print('total=%.3f sec {%.1f FPS}' % (total, 1./total), end=' ')\n        if self.newline:\n            print(flush=True)\n        else:\n            print(end='\\r', flush=True)\n        self.reset()\n\n\nclass VideoStreamer:\n    \"\"\" Class to help process image streams. Four types of possible inputs:\"\n        1.) USB Webcam.\n        2.) An IP camera\n        3.) A directory of images (files in directory matching 'image_glob').\n        4.) A video file, such as an .mp4 or .avi file.\n    \"\"\"\n    def __init__(self, basedir, resize, skip, image_glob, max_length=1000000):\n        self._ip_grabbed = False\n        self._ip_running = False\n        self._ip_camera = False\n        self._ip_image = None\n        self._ip_index = 0\n        self.cap = []\n        self.camera = True\n        self.video_file = False\n        self.listing = []\n        self.resize = resize\n        self.interp = cv2.INTER_AREA\n        self.i = 0\n        self.skip = skip\n        self.max_length = max_length\n        if isinstance(basedir, int) or basedir.isdigit():\n            print('==> Processing USB webcam input: {}'.format(basedir))\n            self.cap = cv2.VideoCapture(int(basedir))\n            self.listing = range(0, self.max_length)\n        elif basedir.startswith(('http', 'rtsp')):\n            print('==> Processing IP camera input: {}'.format(basedir))\n            self.cap = cv2.VideoCapture(basedir)\n            self.start_ip_camera_thread()\n            self._ip_camera = True\n            self.listing = range(0, self.max_length)\n        elif Path(basedir).is_dir():\n            print('==> Processing image directory input: {}'.format(basedir))\n            self.listing = list(Path(basedir).glob(image_glob[0]))\n            for j in range(1, len(image_glob)):\n                image_path = list(Path(basedir).glob(image_glob[j]))\n                self.listing = self.listing + image_path\n            self.listing.sort()\n            self.listing = self.listing[::self.skip]\n            self.max_length = np.min([self.max_length, len(self.listing)])\n            if self.max_length == 0:\n                raise IOError('No images found (maybe bad \\'image_glob\\' ?)')\n            self.listing = self.listing[:self.max_length]\n            self.camera = False\n        elif Path(basedir).exists():\n            print('==> Processing video input: {}'.format(basedir))\n            self.cap = cv2.VideoCapture(basedir)\n            self.cap.set(cv2.CAP_PROP_BUFFERSIZE, 1)\n            num_frames = int(self.cap.get(cv2.CAP_PROP_FRAME_COUNT))\n            self.listing = range(0, num_frames)\n            self.listing = self.listing[::self.skip]\n            self.video_file = True\n            self.max_length = np.min([self.max_length, len(self.listing)])\n            self.listing = self.listing[:self.max_length]\n        else:\n            raise ValueError('VideoStreamer input \\\"{}\\\" not recognized.'.format(basedir))\n        if self.camera and not self.cap.isOpened():\n            raise IOError('Could not read camera')\n\n    def load_image(self, impath):\n        \"\"\" Read image as grayscale and resize to img_size.\n        Inputs\n            impath: Path to input image.\n        Returns\n            grayim: uint8 numpy array sized H x W.\n        \"\"\"\n        grayim = cv2.imread(impath, 0)\n        if grayim is None:\n            raise Exception('Error reading image %s' % impath)\n        w, h = grayim.shape[1], grayim.shape[0]\n        w_new, h_new = process_resize(w, h, self.resize)\n        grayim = cv2.resize(\n            grayim, (w_new, h_new), interpolation=self.interp)\n        return grayim\n\n    def next_frame(self):\n        \"\"\" Return the next frame, and increment internal counter.\n        Returns\n             image: Next H x W image.\n             status: True or False depending whether image was loaded.\n        \"\"\"\n\n        if self.i == self.max_length:\n            return (None, False)\n        if self.camera:\n\n            if self._ip_camera:\n                #Wait for first image, making sure we haven't exited\n                while self._ip_grabbed is False and self._ip_exited is False:\n                    time.sleep(.001)\n\n                ret, image = self._ip_grabbed, self._ip_image.copy()\n                if ret is False:\n                    self._ip_running = False\n            else:\n                ret, image = self.cap.read()\n            if ret is False:\n                print('VideoStreamer: Cannot get image from camera')\n                return (None, False)\n            w, h = image.shape[1], image.shape[0]\n            if self.video_file:\n                self.cap.set(cv2.CAP_PROP_POS_FRAMES, self.listing[self.i])\n\n            w_new, h_new = process_resize(w, h, self.resize)\n            image = cv2.resize(image, (w_new, h_new),\n                               interpolation=self.interp)\n            image = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)\n        else:\n            image_file = str(self.listing[self.i])\n            image = self.load_image(image_file)\n        self.i = self.i + 1\n        return (image, True)\n\n    def start_ip_camera_thread(self):\n        self._ip_thread = Thread(target=self.update_ip_camera, args=())\n        self._ip_running = True\n        self._ip_thread.start()\n        self._ip_exited = False\n        return self\n\n    def update_ip_camera(self):\n        while self._ip_running:\n            ret, img = self.cap.read()\n            if ret is False:\n                self._ip_running = False\n                self._ip_exited = True\n                self._ip_grabbed = False\n                return\n\n            self._ip_image = img\n            self._ip_grabbed = ret\n            self._ip_index += 1\n            #print('IPCAMERA THREAD got frame {}'.format(self._ip_index))\n\n\n    def cleanup(self):\n        self._ip_running = False\n\n# --- PREPROCESSING ---\n\ndef process_resize(w, h, resize):\n    assert(len(resize) > 0 and len(resize) <= 2)\n    if len(resize) == 1 and resize[0] > -1:\n        scale = resize[0] / max(h, w)\n        w_new, h_new = int(round(w*scale)), int(round(h*scale))\n    elif len(resize) == 1 and resize[0] == -1:\n        w_new, h_new = w, h\n    else:  # len(resize) == 2:\n        w_new, h_new = resize[0], resize[1]\n\n    # Issue warning if resolution is too small or too large.\n    if max(w_new, h_new) < 160:\n        print('Warning: input resolution is very small, results may vary')\n    elif max(w_new, h_new) > 2000:\n        print('Warning: input resolution is very large, results may vary')\n\n    return w_new, h_new\n\n\ndef frame2tensor(frame, device):\n    return torch.from_numpy(frame/255.).float()[None, None].to(device)\n\n\ndef read_image(path, device, resize, rotation, resize_float):\n    image = cv2.imread(str(path), cv2.IMREAD_GRAYSCALE)\n    if image is None:\n        return None, None, None\n    w, h = image.shape[1], image.shape[0]\n    w_new, h_new = process_resize(w, h, resize)\n    scales = (float(w) / float(w_new), float(h) / float(h_new))\n\n    if resize_float:\n        image = cv2.resize(image.astype('float32'), (w_new, h_new))\n    else:\n        image = cv2.resize(image, (w_new, h_new)).astype('float32')\n\n    if rotation != 0:\n        image = np.rot90(image, k=rotation)\n        if rotation % 2:\n            scales = scales[::-1]\n\n    inp = frame2tensor(image, device)\n    return image, inp, scales\n\n\n# --- GEOMETRY ---\n\n\ndef estimate_pose(kpts0, kpts1, K0, K1, thresh, conf=0.99999):\n    if len(kpts0) < 5:\n        return None\n\n    f_mean = np.mean([K0[0, 0], K1[1, 1], K0[0, 0], K1[1, 1]])\n    norm_thresh = thresh / f_mean\n\n    kpts0 = (kpts0 - K0[[0, 1], [2, 2]][None]) / K0[[0, 1], [0, 1]][None]\n    kpts1 = (kpts1 - K1[[0, 1], [2, 2]][None]) / K1[[0, 1], [0, 1]][None]\n\n    E, mask = cv2.findEssentialMat(\n        kpts0, kpts1, np.eye(3), threshold=norm_thresh, prob=conf,\n        method=cv2.RANSAC)\n\n    assert E is not None\n\n    best_num_inliers = 0\n    ret = None\n    for _E in np.split(E, len(E) / 3):\n        n, R, t, _ = cv2.recoverPose(\n            _E, kpts0, kpts1, np.eye(3), 1e9, mask=mask)\n        if n > best_num_inliers:\n            best_num_inliers = n\n            ret = (R, t[:, 0], mask.ravel() > 0)\n    return ret\n\n\ndef rotate_intrinsics(K, image_shape, rot):\n    \"\"\"image_shape is the shape of the image after rotation\"\"\"\n    assert rot <= 3\n    h, w = image_shape[:2][::-1 if (rot % 2) else 1]\n    fx, fy, cx, cy = K[0, 0], K[1, 1], K[0, 2], K[1, 2]\n    rot = rot % 4\n    if rot == 1:\n        return np.array([[fy, 0., cy],\n                         [0., fx, w-1-cx],\n                         [0., 0., 1.]], dtype=K.dtype)\n    elif rot == 2:\n        return np.array([[fx, 0., w-1-cx],\n                         [0., fy, h-1-cy],\n                         [0., 0., 1.]], dtype=K.dtype)\n    else:  # if rot == 3:\n        return np.array([[fy, 0., h-1-cy],\n                         [0., fx, cx],\n                         [0., 0., 1.]], dtype=K.dtype)\n\n\ndef rotate_pose_inplane(i_T_w, rot):\n    rotation_matrices = [\n        np.array([[np.cos(r), -np.sin(r), 0., 0.],\n                  [np.sin(r), np.cos(r), 0., 0.],\n                  [0., 0., 1., 0.],\n                  [0., 0., 0., 1.]], dtype=np.float32)\n        for r in [np.deg2rad(d) for d in (0, 270, 180, 90)]\n    ]\n    return np.dot(rotation_matrices[rot], i_T_w)\n\n\ndef scale_intrinsics(K, scales):\n    scales = np.diag([1./scales[0], 1./scales[1], 1.])\n    return np.dot(scales, K)\n\n\ndef to_homogeneous(points):\n    return np.concatenate([points, np.ones_like(points[:, :1])], axis=-1)\n\n\ndef compute_epipolar_error(kpts0, kpts1, T_0to1, K0, K1):\n    kpts0 = (kpts0 - K0[[0, 1], [2, 2]][None]) / K0[[0, 1], [0, 1]][None]\n    kpts1 = (kpts1 - K1[[0, 1], [2, 2]][None]) / K1[[0, 1], [0, 1]][None]\n    kpts0 = to_homogeneous(kpts0)\n    kpts1 = to_homogeneous(kpts1)\n\n    t0, t1, t2 = T_0to1[:3, 3]\n    t_skew = np.array([\n        [0, -t2, t1],\n        [t2, 0, -t0],\n        [-t1, t0, 0]\n    ])\n    E = t_skew @ T_0to1[:3, :3]\n\n    Ep0 = kpts0 @ E.T  # N x 3\n    p1Ep0 = np.sum(kpts1 * Ep0, -1)  # N\n    Etp1 = kpts1 @ E  # N x 3\n    d = p1Ep0**2 * (1.0 / (Ep0[:, 0]**2 + Ep0[:, 1]**2)\n                    + 1.0 / (Etp1[:, 0]**2 + Etp1[:, 1]**2))\n    return d\n\n\ndef angle_error_mat(R1, R2):\n    cos = (np.trace(np.dot(R1.T, R2)) - 1) / 2\n    cos = np.clip(cos, -1., 1.)  # numercial errors can make it out of bounds\n    return np.rad2deg(np.abs(np.arccos(cos)))\n\n\ndef angle_error_vec(v1, v2):\n    n = np.linalg.norm(v1) * np.linalg.norm(v2)\n    return np.rad2deg(np.arccos(np.clip(np.dot(v1, v2) / n, -1.0, 1.0)))\n\n\ndef compute_pose_error(T_0to1, R, t):\n    R_gt = T_0to1[:3, :3]\n    t_gt = T_0to1[:3, 3]\n    error_t = angle_error_vec(t, t_gt)\n    error_t = np.minimum(error_t, 180 - error_t)  # ambiguity of E estimation\n    error_R = angle_error_mat(R, R_gt)\n    return error_t, error_R\n\n\ndef pose_auc(errors, thresholds):\n    sort_idx = np.argsort(errors)\n    errors = np.array(errors.copy())[sort_idx]\n    recall = (np.arange(len(errors)) + 1) / len(errors)\n    errors = np.r_[0., errors]\n    recall = np.r_[0., recall]\n    aucs = []\n    for t in thresholds:\n        last_index = np.searchsorted(errors, t)\n        r = np.r_[recall[:last_index], recall[last_index-1]]\n        e = np.r_[errors[:last_index], t]\n        aucs.append(np.trapz(r, x=e)/t)\n    return aucs\n\n\n# --- VISUALIZATION ---\n\n\ndef plot_image_pair(imgs, dpi=100, size=6, pad=.5):\n    n = len(imgs)\n    assert n == 2, 'number of images must be two'\n    figsize = (size*n, size*3/4) if size is not None else None\n    _, ax = plt.subplots(1, n, figsize=figsize, dpi=dpi)\n    for i in range(n):\n        ax[i].imshow(imgs[i], cmap=plt.get_cmap('gray'), vmin=0, vmax=255)\n        ax[i].get_yaxis().set_ticks([])\n        ax[i].get_xaxis().set_ticks([])\n        for spine in ax[i].spines.values():  # remove frame\n            spine.set_visible(False)\n    plt.tight_layout(pad=pad)\n\n\ndef plot_keypoints(kpts0, kpts1, color='w', ps=2):\n    ax = plt.gcf().axes\n    ax[0].scatter(kpts0[:, 0], kpts0[:, 1], c=color, s=ps)\n    ax[1].scatter(kpts1[:, 0], kpts1[:, 1], c=color, s=ps)\n\n\ndef plot_matches(kpts0, kpts1, color, lw=1.5, ps=4):\n    fig = plt.gcf()\n    ax = fig.axes\n    fig.canvas.draw()\n\n    transFigure = fig.transFigure.inverted()\n    fkpts0 = transFigure.transform(ax[0].transData.transform(kpts0))\n    fkpts1 = transFigure.transform(ax[1].transData.transform(kpts1))\n\n    fig.lines = [matplotlib.lines.Line2D(\n        (fkpts0[i, 0], fkpts1[i, 0]), (fkpts0[i, 1], fkpts1[i, 1]), zorder=1,\n        transform=fig.transFigure, c=color[i], linewidth=lw)\n                 for i in range(len(kpts0))]\n    ax[0].scatter(kpts0[:, 0], kpts0[:, 1], c=color, s=ps)\n    ax[1].scatter(kpts1[:, 0], kpts1[:, 1], c=color, s=ps)\n\n\ndef make_matching_plot(image0, image1, kpts0, kpts1, mkpts0, mkpts1,\n                       color, text, path, show_keypoints=False,\n                       fast_viz=False, opencv_display=False,\n                       opencv_title='matches', small_text=[]):\n\n    if fast_viz:\n        make_matching_plot_fast(image0, image1, kpts0, kpts1, mkpts0, mkpts1,\n                                color, text, path, show_keypoints, 10,\n                                opencv_display, opencv_title, small_text)\n        return\n\n    plot_image_pair([image0, image1])\n    if show_keypoints:\n        plot_keypoints(kpts0, kpts1, color='k', ps=4)\n        plot_keypoints(kpts0, kpts1, color='w', ps=2)\n    plot_matches(mkpts0, mkpts1, color)\n\n    fig = plt.gcf()\n    txt_color = 'k' if image0[:100, :150].mean() > 200 else 'w'\n    fig.text(\n        0.01, 0.99, '\\n'.join(text), transform=fig.axes[0].transAxes,\n        fontsize=15, va='top', ha='left', color=txt_color)\n\n    txt_color = 'k' if image0[-100:, :150].mean() > 200 else 'w'\n    fig.text(\n        0.01, 0.01, '\\n'.join(small_text), transform=fig.axes[0].transAxes,\n        fontsize=5, va='bottom', ha='left', color=txt_color)\n\n    plt.savefig(str(path), bbox_inches='tight', pad_inches=0)\n    plt.close()\n\n\ndef make_matching_plot_fast(image0, image1, kpts0, kpts1, mkpts0,\n                            mkpts1, color, text, path=None,\n                            show_keypoints=False, margin=10,\n                            opencv_display=False, opencv_title='',\n                            small_text=[]):\n    H0, W0 = image0.shape\n    H1, W1 = image1.shape\n    H, W = max(H0, H1), W0 + W1 + margin\n\n    out = 255*np.ones((H, W), np.uint8)\n    out[:H0, :W0] = image0\n    out[:H1, W0+margin:] = image1\n    out = np.stack([out]*3, -1)\n\n    if show_keypoints:\n        kpts0, kpts1 = np.round(kpts0).astype(int), np.round(kpts1).astype(int)\n        white = (255, 255, 255)\n        black = (0, 0, 0)\n        for x, y in kpts0:\n            cv2.circle(out, (x, y), 2, black, -1, lineType=cv2.LINE_AA)\n            cv2.circle(out, (x, y), 1, white, -1, lineType=cv2.LINE_AA)\n        for x, y in kpts1:\n            cv2.circle(out, (x + margin + W0, y), 2, black, -1,\n                       lineType=cv2.LINE_AA)\n            cv2.circle(out, (x + margin + W0, y), 1, white, -1,\n                       lineType=cv2.LINE_AA)\n\n    mkpts0, mkpts1 = np.round(mkpts0).astype(int), np.round(mkpts1).astype(int)\n    color = (np.array(color[:, :3])*255).astype(int)[:, ::-1]\n    for (x0, y0), (x1, y1), c in zip(mkpts0, mkpts1, color):\n        c = c.tolist()\n        cv2.line(out, (x0, y0), (x1 + margin + W0, y1),\n                 color=c, thickness=1, lineType=cv2.LINE_AA)\n        # display line end-points as circles\n        cv2.circle(out, (x0, y0), 2, c, -1, lineType=cv2.LINE_AA)\n        cv2.circle(out, (x1 + margin + W0, y1), 2, c, -1,\n                   lineType=cv2.LINE_AA)\n\n    # Scale factor for consistent visualization across scales.\n    sc = min(H / 640., 2.0)\n\n    # Big text.\n    Ht = int(30 * sc)  # text height\n    txt_color_fg = (255, 255, 255)\n    txt_color_bg = (0, 0, 0)\n    for i, t in enumerate(text):\n        cv2.putText(out, t, (int(8*sc), Ht*(i+1)), cv2.FONT_HERSHEY_DUPLEX,\n                    1.0*sc, txt_color_bg, 2, cv2.LINE_AA)\n        cv2.putText(out, t, (int(8*sc), Ht*(i+1)), cv2.FONT_HERSHEY_DUPLEX,\n                    1.0*sc, txt_color_fg, 1, cv2.LINE_AA)\n\n    # Small text.\n    Ht = int(18 * sc)  # text height\n    for i, t in enumerate(reversed(small_text)):\n        cv2.putText(out, t, (int(8*sc), int(H-Ht*(i+.6))), cv2.FONT_HERSHEY_DUPLEX,\n                    0.5*sc, txt_color_bg, 2, cv2.LINE_AA)\n        cv2.putText(out, t, (int(8*sc), int(H-Ht*(i+.6))), cv2.FONT_HERSHEY_DUPLEX,\n                    0.5*sc, txt_color_fg, 1, cv2.LINE_AA)\n\n    if path is not None:\n        cv2.imwrite(str(path), out)\n\n    if opencv_display:\n        cv2.imshow(opencv_title, out)\n        cv2.waitKey(1)\n\n    return out\n\n\ndef error_colormap(x):\n    return np.clip(\n        np.stack([2-x*2, x*2, np.zeros_like(x), np.ones_like(x)], -1), 0, 1)\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/preprocess_color.py",
    "content": "import cv2\nimport json\nimport numpy as np\nimport os\n\ndataset_path = \"/home/kvuong/dgx-projects/ego4d_data/ego_videos/tong_ego_005\"\ncolor_path = os.path.join(dataset_path, \"color_raw\")\n\nrgb_intrinsics_path = os.path.join(dataset_path, 'rgb_intrinsics.json')\n\n# First read the camera intrinsics.\nwith open(rgb_intrinsics_path, 'r') as fp:\n    intrinsics = json.load(fp)\n\ndownsample_factor = 2\nk1 = intrinsics['k1']\nk2 = intrinsics['k2']\nk3 = intrinsics['k3']\nk4 = intrinsics['k4']\nk5 = intrinsics['k5']\nk6 = intrinsics['k6']\np1 = intrinsics['p1']\np2 = intrinsics['p2']\n\nfx = intrinsics['fx']\nfy = intrinsics['fy']\ncx = intrinsics['cx']\ncy = intrinsics['cy']\n\nif downsample_factor != 1:\n    fx = fx / downsample_factor\n    fy = fy / downsample_factor\n    cx = cx / downsample_factor\n    cy = cy / downsample_factor\n    print('Effective fc = [{0}, {1}], cc=[{2}, {3}].'.format(fx, fy, cx, cy))\ncamera_matrix = np.eye(3)\ncamera_matrix[0, 0] = fx\ncamera_matrix[1, 1] = fy\ncamera_matrix[0, 2] = cx\ncamera_matrix[1, 2] = cy\ndistortion_params = np.array([k1, k2, p1, p2, k3, k4, k5, k6])\n\nos.system('mv %s %s' % (os.path.join(dataset_path, 'color'), os.path.join(dataset_path, 'color_raw')))\n\ncolor_files = sorted(os.listdir(color_path))\n\nif not os.path.exists(os.path.join(dataset_path, 'color')):\n    os.makedirs(os.path.join(dataset_path, 'color'))\nimg_idx = 0\n\nfor i in range(0, len(color_files), 10):\n    if \"color_\" in color_files[i]:\n        color_idx = int(color_files[i][6:13])\n        print(i, img_idx)\n        I = cv2.imread(os.path.join(dataset_path, os.path.join('color_raw', color_files[i])))\n        new_size = (I.shape[1] // downsample_factor, I.shape[0] // downsample_factor)\n        I = cv2.resize(I, dsize=new_size, interpolation=cv2.INTER_CUBIC)\n        # undistort operation\n        c_im = cv2.undistort(I, camera_matrix, distortion_params)\n        C = cv2.resize(c_im[:, 120:840, :], (640, 480), cv2.INTER_CUBIC)\n        cv2.imwrite(os.path.join(dataset_path, 'color/color_%06d.png' % img_idx), C)\n        img_idx += 1\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/requirements.txt",
    "content": "matplotlib>=3.1.3\ntorch>=1.1.0\nopencv-python==4.1.2.30\nnumpy>=1.18.1\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/SuperGlueMatching/scripts.sh",
    "content": "# STEP 0 [Optional]: Extract keypoints and visualize it\n# python ./SuperGlueMatching/extract_keypoints.py\n\n# STEP 1: Extract keypoints and visualize it\n# This script has 2 functionality:\n# (i) It saves all Matterport vlad image descriptors and theirs indices\n# vlad_image_descriptors = np.load(os.path.join(ROOT_DIR, DATASET_NAME, 'all_image_descriptors.npy'))\n# image_indices = np.load(os.path.join(ROOT_DIR, DATASET_NAME, 'all_image_descriptors_indices.npy'))\n# (ii) Using the previous created descriptors, create a tree and query AzureKinect images, top matches are saved\n# np.savetxt(os.path.join(AZURE_ROOT_DIR, AZURE_DATASET_NAME, 'vlad_best_match', 'queries_%06d.txt' % images['image_index'][j]),\n#                       np.array(image_indices[ret_query]), fmt='%d')\npython ./SuperGlueMatching/extract_and_cluster_descriptors.py\n\n# STEP 2: Run SuperGlue matching based on the top queries\n# TODO: Change output dir to ~/Data/KiNectAzure/....\n# TODO: Merge this with step 4 - match and get poses\n# TODO: Parallelization - dataloader and match in batch\npython ./SuperGlueMatching/match_pairs.py \\\n--input_pairs '/media/tiendo/DATA/KinectAzure/walterb18/vlad_best_match/queries.pkl' \\\n--starting_index 0 --ending_index -1 \\\n--input_dir '/media/tiendo/DATA/' \\\n--output_dir '/media/tiendo/DATA/KinectAzure/walterb18/superglue_match_results/' \\\n--viz\n\n# STEP 3: Run pnp to determine poses\n# This scripts reads matches from previous step and save poses to ~/Data/KiNectAzure/.../pose_pred_pnp/\n# Identity poses are saved if RANSAC returns unreliable solution\n# TODO: Parallelization - pool?\npython ./Localization/test_multi_pnps.py\n\n# STEP 4: Visualize overlaid-point-cloud-projected image on actual Azure image\n# Output is saved in ~/Data/KiNectAzure/.../overlaid/\npython ./Localization/visualize_pcd_pose_rendered.py\n\n# STEP 5: Final visualization, pose on map, overlaid image, and matching/query\n# Right now, output is saved in ~/Data/KiNectAzure/.../full_viz/\n# There is an issue with *10\nmatlab ./Visualization/visualize_localization_on_3dmap.m\n\n# STEP 6: Create videos\n./Visualization/make_video.sh"
  },
  {
    "path": "VQ3D/camera_pose_estimation/Visualization/camera_trajectory.json",
    "content": "{\n\t\"class_name\" : \"PinholeCameraTrajectory\",\n    \"parameters\" :\n    [\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99875666779623684,\n                -0.015804533047987467,\n                0.047279332352442131,\n                0,\n                0.0042556066034366898,\n                0.97198214070610867,\n                0.2350161865931947,\n                0,\n                -0.049668987758906415,\n                -0.23452278116103262,\n                0.97084090188428929,\n                0,\n                -2.1888509581876607,\n                -1.181867321777915,\n                0.94394657256919134,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99928795777101587,\n                0.016150876271446853,\n                -0.034098777829958543,\n                0,\n                -0.0067151368197575449,\n                0.96545200631470163,\n                0.2604943961785155,\n                0,\n                0.037127946230897199,\n                -0.26007993520950801,\n                0.96487301906006984,\n                0,\n                -2.3078035383191513,\n                -1.2035828634030123,\n                1.125458179216736,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99183998175464927,\n                0.049548427344230699,\n                -0.117466607768551,\n                0,\n                -0.014126272745388004,\n                0.95842479520217561,\n                0.28499536901499067,\n                0,\n                0.12670398182874926,\n                -0.28101043626417371,\n                0.95130396598529898,\n                0,\n                -2.4188482426049744,\n                -1.2349805893479719,\n                1.3231473785630037,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.97647106051079691,\n                0.082455635128122429,\n                -0.19926197886334898,\n                0,\n                -0.017533043326622519,\n                0.95130980369295548,\n                0.30773730646344677,\n                0,\n                0.21493454905302353,\n                -0.29700290509233834,\n                0.93037219110960367,\n                0,\n                -2.5163967414981374,\n                -1.2728421762480244,\n                1.5280626466118126,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.95452531647635719,\n                0.11293568879968505,\n                -0.27591112772240772,\n                0,\n                -0.016874427700173333,\n                0.94445547214621983,\n                0.32820590308958891,\n                0,\n                0.29765193413700791,\n                -0.30862500113957347,\n                0.90341238356361742,\n                0,\n                -2.5970768143260061,\n                -1.3124667346844974,\n                1.7290772999362063,\n                1\n        ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.92841162626469675,\n                0.13947772114312249,\n                -0.34438033846499227,\n                0,\n                -0.012485236189823293,\n                0.93805432142836831,\n                0.34626320758470408,\n                0,\n                0.3713434678216726,\n                -0.3171751178044786,\n                0.87264195037362813,\n                0,\n                -2.6603035535554964,\n                -1.3487210387006652,\n                1.9142937139767562,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.90110180596821066,\n                0.16123277599600505,\n                -0.40251649310984944,\n                0,\n                -0.0050119686801153307,\n                0.9321076473248614,\n                0.36214667466160944,\n                0,\n                0.43357861507548889,\n                -0.32431362250626189,\n                0.84073197798471244,\n                0,\n                -2.7079485955825113,\n                -1.3770920553590076,\n                2.0724857317292451,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.87558692689320961,\n                0.17797851003985299,\n                -0.44907814845269334,\n                0,\n                0.0047202047231162392,\n                0.92645514246180682,\n                0.37637559521499936,\n                0,\n                0.48303752765295288,\n                -0.33166929156927855,\n                0.81035191608884083,\n                0,\n                -2.7433715265578686,\n                -1.3942703554969946,\n                2.1940329501416365,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.85449270148196643,\n                0.18988997874333541,\n                -0.48351217056751195,\n                0,\n                0.01582985475346993,\n                0.92084062652861998,\n                0.38961770523535372,\n                0,\n                0.51922214784476906,\n                -0.34057941292338056,\n                0.78384566381414034,\n                0,\n                -2.7702978200414217,\n                -1.3981447968106131,\n                2.2711389383673826,\n                1\n        ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.83991312425391484,\n                0.19724993751042866,\n                -0.50560696777057956,\n                0,\n                0.027454300499389735,\n                0.9149801803339721,\n                0.4025636980405724,\n                0,\n                0.54202601883130774,\n                -0.35199961896022547,\n                0.76308850283681984,\n                0,\n                -2.7918924987463849,\n                -1.3873990643530387,\n                2.29747480491283,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.83340128841233585,\n                0.2001914410992664,\n                -0.51513656381901085,\n                0,\n                0.038770367827374835,\n                0.90861625800115142,\n                0.41582851546582927,\n                0,\n                0.55130676673807388,\n                -0.36652405460840398,\n                0.749480464283244,\n                0,\n                -2.8101051435355018,\n                -1.3609860170617862,\n                2.2675452056094811,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.83565908649332266,\n                0.19868881556470294,\n                -0.51205140926535986,\n                0,\n                0.048957178160648845,\n                0.90162037646794824,\n                0.42974863751307207,\n                0,\n                0.5470622321707943,\n                -0.38419194591673939,\n                0.74372001642084173,\n                0,\n                -2.8251824709807165,\n                -1.3185768807219229,\n                2.178653912849239,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.84554890459613141,\n                0.19305749004505887,\n                -0.49777088652690843,\n                0,\n                0.057185636843962023,\n                0.89422099746551775,\n                0.44395789285756038,\n                0,\n                0.53082657514016085,\n                -0.40385345514094168,\n                0.74506746935810497,\n                0,\n                -2.8355968917254817,\n                -1.2630543544210979,\n                2.0382198884078515,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.86130347612886693,\n                0.18357648060701698,\n                -0.4737678733053477,\n                0,\n                0.062781469182758232,\n                0.88684923194227883,\n                0.45777388187908302,\n                0,\n                0.5041971927089488,\n                -0.42402607888116012,\n                0.7523211251141918,\n                0,\n                -2.8387474604497771,\n                -1.1980688552430823,\n                1.8558703155799818,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.88101102962986821,\n                0.17051752998045994,\n                -0.44129733473009186,\n                0,\n                0.065281161048858255,\n                0.88004677999541392,\n                0.47037860817836591,\n                0,\n                0.46857009687199724,\n                -0.44321714428603343,\n                0.76419933742990176,\n                0,\n                -2.8317351128307351,\n                -1.1274504695156782,\n                1.6410853027217358,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.90272575851856207,\n                0.15430134912872556,\n                -0.40159344935412222,\n                0,\n                0.064466449007195767,\n                0.87441277232118253,\n                0.48088083820629252,\n                0,\n                0.42535900350114775,\n                -0.45999282305122874,\n                0.77940767309660963,\n                0,\n                -2.8120111480539198,\n                -1.0553679469520969,\n                1.4034372714511312,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.92459426762715846,\n                0.13558348174069385,\n                -0.35600921301290728,\n                0,\n                0.060393977513041174,\n                0.87053500609705692,\n                0.48838649719228677,\n                0,\n                0.37613562414527152,\n                -0.47306016809563267,\n                0.79670325065872483,\n                0,\n                -2.7779308501415709,\n                -0.98628269512104538,\n                1.1526915236087567,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.94500030704042182,\n                0.11526066754642027,\n                -0.30608723954170708,\n                0,\n                0.053402770254629126,\n                0.86891440095922057,\n                0.49207307174322218,\n                0,\n                0.3226802811183852,\n                -0.48135511041478779,\n                0.81496913674993088,\n                0,\n                -2.7291721937264377,\n                -0.92470255204732243,\n                0.89872890589931786,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.96270261454337069,\n                0.094401364541493615,\n                -0.25355878672225579,\n                0,\n                0.044086423131354191,\n                0.86989977299837651,\n                0.4912542846966898,\n                0,\n                0.26694580582365696,\n                -0.48411028424324681,\n                0.83329296735486813,\n                0,\n                -2.6669459591407016,\n                -0.87481231677101345,\n                0.65131534736965324,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.97693010287163373,\n                0.074125784992616212,\n                -0.20028215622577955,\n                0,\n                0.033226849587870963,\n                0.87365108684603776,\n                0.48541709376494169,\n                0,\n                0.2109586465866809,\n                -0.48087331642748238,\n                0.85103307983788179,\n                0,\n                -2.5939485692898536,\n                -0.84011388049047298,\n                0.41979886142144734,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.98740794036685786,\n                0.05547900483985943,\n                -0.14814735678525887,\n                0,\n                0.021697818269943887,\n                0.88014080305999021,\n                0.47421658708995018,\n                0,\n                0.15669959790249757,\n                -0.47145969797098747,\n                0.86785424421748436,\n                0,\n                -2.5140775088229859,\n                -0.82321499622533201,\n                0.21284634607309424,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99435456459249949,\n                0.039157538149371597,\n                -0.098618898189654483,\n                0,\n                0.010363449534925059,\n                0.88913323108187614,\n                0.45753108779583518,\n                0,\n                0.10560113061799098,\n                -0.45597015756733872,\n                0.88370787968661813,\n                0,\n                -2.4314736625973032,\n                -0.82514989904348013,\n                0.036547668815334361,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99835319508554143,\n                0.024981965477551216,\n                -0.051641061795526015,\n                0,\n                1.2621874699587922e-05,\n                0.90010214992452264,\n                0.43567891794524599,\n                0,\n                0.057366346433943102,\n                -0.43496209156905907,\n                0.89861954196127425,\n                0,\n                -2.3482782122908836,\n                -0.84378407408901512,\n                -0.11049018002215361,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99989762750716282,\n                0.012575034065412697,\n                -0.0068266407405815129,\n                0,\n                -0.0086829745021585643,\n                0.91247689481750249,\n                0.40903608933442964,\n                0,\n                0.011372794702364117,\n                -0.40893493974281819,\n                0.91249267098327735,\n                0,\n                -2.2657303310445216,\n                -0.8765535713756567,\n                -0.23111601584138478,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99934527419491948,\n                0.0015977969723442189,\n                0.036145124001955145,\n                0,\n                -0.015150610924960327,\n                0.92569561648302046,\n                0.37796571883270214,\n                0,\n                -0.032855470364644292,\n                -0.37826587563373448,\n                0.92511374727552398,\n                0,\n                -2.1848282941387391,\n                -0.92118652393796552,\n                -0.32782454818218443,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99695708826719187,\n                -0.0082289580350352644,\n                0.07751676208060039,\n                0,\n                -0.01890665940764644,\n                0.93919470028672525,\n                0.34286419058188594,\n                0,\n                -0.075624747165501549,\n                -0.34328646813264602,\n                0.93618123160698319,\n                0,\n                -2.1064720345978563,\n                -0.97561459057302957,\n                -0.40285018142980789,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.99293141358569859,\n                -0.017115518220605544,\n                0.11744899723176258,\n                0,\n                -0.0195656112262593,\n                0.95240654024666827,\n                0.30420218433258234,\n                0,\n                -0.11706577113763583,\n                -0.30434986632395888,\n                0.94533949673994844,\n                0,\n                -2.0315342690763885,\n                -1.0378851354556882,\n                -0.45827881182899671,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.98743155073717293,\n                -0.025203663120484047,\n                0.15602470308925834,\n                0,\n                -0.016861462531363672,\n                0.96476935256719387,\n                0.26255625574032909,\n                0,\n                -0.15714523120376733,\n                -0.26188713544652559,\n                0.95221872728776336,\n                0,\n                -1.9608700124718375,\n                -1.1060882463952906,\n                -0.49617059311604006,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.98060658774191944,\n                -0.032575989569088915,\n                0.19326025194215168,\n                0,\n                -0.010672701277756096,\n                0.97575031681517477,\n                0.21862619395333663,\n                0,\n                -0.1956957166740885,\n                -0.21644889498142697,\n                0.95647951485472704,\n                0,\n                -1.895276186072566,\n                -1.1783082885383735,\n                -0.51868358493509892,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.9726047133491551,\n                -0.039273403538653155,\n                0.22912370315071742,\n                0,\n                -0.0010409484146981852,\n                0.98488013556164911,\n                0.17323404689167171,\n                0,\n                -0.23246287444967614,\n                -0.16872675647495297,\n                0.95785818034406123,\n                0,\n                -1.8354176676577678,\n                -1.2526071564806984,\n                -0.52818413403476283,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        },\n        {\n\t\t\t\"class_name\" : \"PinholeCameraParameters\",\n            \"extrinsic\" :\n            [\n                0.96357840374030368,\n                -0.045318516171068614,\n                0.2635581376799836,\n                0,\n                0.011825572766665078,\n                0.99179337855961536,\n                0.12730298533044657,\n                0,\n                -0.26716439821583438,\n                -0.11954968146070559,\n                0.95620659796333507,\n                0,\n                -1.7817411939858416,\n                -1.3270427866885102,\n                -0.52732744822472821,\n                1\n            ],\n            \"intrinsic\" :\n            {\n                \"height\" : 1080,\n                \"intrinsic_matrix\" :\n                [\n                    935.30743608719376,\n                    0,\n                    0,\n                    0,\n                    935.30743608719376,\n                    0,\n                    959.5,\n                    539.5,\n                    1\n                ],\n                \"width\" : 1920\n            },\n\t\t\t\"version_major\" : 1,\n\t\t\t\"version_minor\" : 0\n        }\n    ],\n\t\"version_major\" : 1,\n\t\"version_minor\" : 0\n}\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/Visualization/visualize_render_images.py",
    "content": "import os\nos.environ[\"PYOPENGL_PLATFORM\"] = \"egl\"\nimport sys\nimport json\nimport h5py\nimport argparse\nfrom PIL import Image\nimport numpy as np\nimport open3d as o3d\nimport glob\nimport cv2\nimport fnmatch\nfrom imageio import imwrite\n\n\nW = 960\nH = 540\n\ndef create_traj_azure(output_traj, K, Ci_T_G=None):\n\n    d = json.load(open('Visualization/camera_trajectory.json', 'r'))\n    dp0 = d['parameters'][0]\n    dp0['intrinsic']['width'] = int((K[6]+0.5)*2)\n    dp0['intrinsic']['height'] = int((K[7]+0.5)*2)\n    dp0['intrinsic']['intrinsic_matrix'] = K.tolist()\n    dp0['extrinsic'] = []\n    x = []\n\n\n    if Ci_T_G is not None:\n        for i in range(Ci_T_G.shape[0]):\n            temp = dp0.copy()\n\n            # E = np.linalg.inv(G_T_Ci[i])\n            E = Ci_T_G[i]\n\n            E_v = np.concatenate([E[:, i] for i in range(4)], axis=0)\n            temp['extrinsic'] = E_v.tolist()\n            x.append(temp)\n\n    d['parameters'] = x\n    with open(output_traj, 'w') as f:\n        json.dump(d, f)\n\n\ndef custom_draw_geometry_with_camera_trajectory(pcd, output_path='',\n                                                output_path_depth='',\n                                                input_image_folder='',\n                                                comparison_color='',\n                                                trajectory='',\n                                                G_T_Ci=None,\n                                                K=None,\n                                                original_img_indices=None,\n                                                valid_pose=None):\n\n    custom_draw_geometry_with_camera_trajectory.index = -1\n    custom_draw_geometry_with_camera_trajectory.trajectory = \\\n        o3d.io.read_pinhole_camera_trajectory(trajectory)\n    custom_draw_geometry_with_camera_trajectory.vis = o3d.visualization.Visualizer()\n\n    if not os.path.exists(os.path.join(output_path)):\n        os.makedirs(os.path.join(output_path))\n\n    def setup(vis):\n        ctr = vis.get_view_control()\n        #ctr.set_zoom(0.450)\n        ctr.rotate(0.0, -4e2)\n\n    def move_forward(vis):\n        # This function is called within the o3d.visualization.Visualizer::run() loop\n        # The run loop calls the function, then re-render\n        # So the sequence in this function is to:\n        # 1. Capture frame\n        # 2. index++, check ending criteria\n        # 3. Set camera\n        # 4. (Re-render)\n        vis.update_geometry(None)\n\n        ctr = vis.get_view_control()\n        glb = custom_draw_geometry_with_camera_trajectory\n\n        if glb.index >= 0 and glb.index < len(original_img_indices):\n            if valid_pose[glb.index]:\n                print(\"Capture image {:05d}\".format(glb.index))\n                image = vis.capture_screen_float_buffer(False)  # True for\n                image = np.asarray(image)\n                depth = vis.capture_depth_float_buffer(False)\n                depth = np.asarray(depth)\n                if output_path_depth != '':\n                    filename = os.path.join(output_path_depth,  'render_%07d.h5' % glb.index)\n                    with h5py.File(filename, 'w') as f:\n                        f.create_dataset('depth', data=depth, dtype=np.float32)\n\n                    if np.max(depth) >0:\n                        depth = depth / np.max(depth) * 255.0\n                    depth = depth.astype(np.uint8)\n                    imwrite(os.path.join(output_path_depth, 'render_%07d.png'%glb.index), depth)\n\n                if output_path != '':\n                    color_info = os.path.join(input_image_folder, 'color/color_%07d.jpg' % original_img_indices[glb.index])\n                    color_img = Image.open(color_info)\n                    # color_img = color_img.resize((960, 540), resample=Image.BILINEAR)\n\n                    img = (255. * image)\n                    added_image = cv2.addWeighted(np.asarray(color_img), 0.8, img.astype(np.uint8), 0.5, 0)\n                    full_viz_image = np.concatenate([np.asarray(color_img), img.astype(np.uint8), added_image], axis=1)\n                    cv2.imwrite(os.path.join(output_path, 'render_%07d.png' % glb.index),\n                                cv2.cvtColor(full_viz_image, cv2.COLOR_RGB2BGR))\n\n        glb.index += 1\n\n        if glb.index < len(original_img_indices): # visualize only well estimated views\n            ctr.convert_from_pinhole_camera_parameters(\n                glb.trajectory.parameters[glb.index])\n        else:\n            exit(1)\n\n        return False\n\n\n    W = int((K[0,2]+0.5)*2)\n    H = int((K[1,2]+0.5)*2)\n\n    vis = custom_draw_geometry_with_camera_trajectory.vis\n    vis.create_window(width=W, height=H, visible=False) # visible = False\n    vis.add_geometry(pcd)\n    setup(vis)\n    vis.register_animation_callback(move_forward)\n    vis.run()\n    vis.destroy_window()\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser(\n        description='Incremental SFM',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n    parser.add_argument(\n        '--matterport_dataset_folder', type=str, default='',\n        help='Matterport dataset folder')\n    parser.add_argument(\n        '--ego_dataset_folder', type=str, default='',\n        help='Ego dataset folder')\n\n    opt = parser.parse_args()\n\n\n\n    ROOT_FOLDER = opt.ego_dataset_folder\n    INPUT_DIR = os.path.join(ROOT_FOLDER, 'superglue_track', 'poses')\n\n    original_image_ids = np.arange(0, len(fnmatch.filter(os.listdir(os.path.join(ROOT_FOLDER, 'color')), '*.jpg')))\n\n    valid_pose = np.load(os.path.join(INPUT_DIR, 'good_pose_reprojection.npy'))\n    #valid_pose = np.load(os.path.join(INPUT_DIR, 'good_poses_ids_pnp_triangulation.npy'))\n    C_T_G = np.load(os.path.join(INPUT_DIR, 'cameras_pnp_triangulation.npy'))\n\n\n    Ci_T_G = np.zeros((len(original_image_ids), 4, 4))\n    k = 0\n    for i in range(len(original_image_ids)):\n        if valid_pose[i]:\n            Ci_T_G[k] = np.concatenate((C_T_G[i], np.array([[0., 0., 0., 1.]])), axis=0)\n            k += 1\n        else:\n            Ci_T_G[k] = np.eye(4)\n            Ci_T_G[k][2, 3] = 100\n            k += 1\n\n    print(\"Create trajectory ...\")\n    K = np.loadtxt('%s/intrinsics.txt' % ROOT_FOLDER)\n    K_v = np.concatenate([K[:, i] for i in range(3)], axis=0)\n    W = int((K[0,2]+0.5)*2)\n    H = int((K[1,2]+0.5)*2)\n\n    create_traj_azure(output_traj='Visualization/egovideo_camera_traj.json',\n                      K=K_v,\n                      Ci_T_G=Ci_T_G)\n\n    print(\"Loading point cloud ...\")\n    SAVING_SUBFOLDER = 'pose_visualization_superglue'\n    SAVING_SUBFOLDER_DEPTH = 'pose_visualization_depth_superglue'\n    if not os.path.exists(os.path.join(ROOT_FOLDER, SAVING_SUBFOLDER)):\n        os.makedirs(os.path.join(ROOT_FOLDER, SAVING_SUBFOLDER))\n    if not os.path.exists(os.path.join(ROOT_FOLDER, SAVING_SUBFOLDER_DEPTH)):\n        os.makedirs(os.path.join(ROOT_FOLDER, SAVING_SUBFOLDER_DEPTH))\n\n    mesh_file = fnmatch.filter(os.listdir(os.path.join(opt.matterport_dataset_folder, 'matterpak')), '*.obj')[0]\n    mesh = o3d.io.read_triangle_mesh(os.path.join(opt.matterport_dataset_folder,\n                                                  'matterpak', mesh_file))\n    custom_draw_geometry_with_camera_trajectory(mesh,\n                                                output_path=os.path.join(ROOT_FOLDER, SAVING_SUBFOLDER),\n                                                output_path_depth=os.path.join(ROOT_FOLDER, SAVING_SUBFOLDER_DEPTH),\n                                                input_image_folder=ROOT_FOLDER,\n                                                trajectory='./Visualization/egovideo_camera_traj.json',\n                                                G_T_Ci=Ci_T_G,\n                                                K=K,\n                                                original_img_indices=original_image_ids,\n                                                valid_pose=valid_pose)\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/extract_frames_all_clips.py",
    "content": "import os\nimport sys\nimport json\nimport argparse\nfrom tqdm import tqdm\nfrom pathlib import Path\nfrom multiprocessing import Pool\n\nsys.path.append('./Camera_Intrinsics_API/')\nfrom extract_frames import FrameExtractor\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--clips_json\",\n        type=str,\n        default='',\n        help=\"a json file with all clip uids to be parsed for each split split\",\n    )\n    parser.add_argument(\n        \"--split\",\n        type=str,\n        default='',\n        help=\"split set to process. If not specified process all clips.\",\n    )\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/clips/',\n        help=\"Input folder with the clips.\",\n    )\n    parser.add_argument(\n        \"--output_dir\",\n        type=str,\n        default='data/clips_frames/',\n        help=\"Output folder with the clips.\",\n    )\n    parser.add_argument(\n        \"--j\",\n        type=int,\n        default=1,\n        help=\"Number of parallel processes\",\n    )\n    args = parser.parse_args()\n\n    clip_dir = args.input_dir\n    output_dir = args.output_dir\n    Path(output_dir).mkdir(parents=True, exist_ok=True)\n\n    clips_filenames = os.listdir(clip_dir)\n    if args.clips_json:\n        clips_json = json.load(open(args.clips_json, 'r'))\n        if args.split:\n            split = args.split\n            clips_filenames = [x for x in clips_filenames if\\\n                               x.split('.')[0] in clips_json[split]\n                              ]\n            num_clips = len(clips_filenames)\n            print(f'Parsing clips from {split} set - {num_clips} clips total')\n\n        else:\n            all_clips_json = clips_json['train']+\\\n                             clips_json['val']+\\\n                             clips_json['test']\n\n            clips_filenames = [x for x in clips_filenames if\\\n                               x.split('.')[0] in all_clips_json\n                              ]\n            num_clips = len(clips_filenames)\n            print(f'Parsing clips from ALL sets - {num_clips} clips total')\n    else:\n        num_clips = len(clips_filenames)\n        print(f'Parsing ALL clips - {num_clips} clips total')\n\n    def frame_extractor(inputs):\n\n        clip_filename = inputs['input']\n        clip_directory=inputs['clip_dir']\n        output_directory=inputs['output_dir']\n\n        fe = FrameExtractor()\n\n        filename = os.path.join(clip_directory, clip_filename)\n        clip_name_uid = clip_filename.split('.')[0]\n        output_dir_clip = os.path.join(output_directory, clip_name_uid)\n\n        # skip if already processed\n        if os.path.isdir(output_dir_clip):\n            if len(os.listdir(output_dir_clip)) > 2000:\n                return\n\n        Path(output_dir_clip).mkdir(parents=True, exist_ok=True)\n\n        fe.extract(filename, output_dir_clip)\n\n    inputs = [{'input':x,\n               'clip_dir':clip_dir,\n               'output_dir':output_dir} for x in clips_filenames]\n\n    pool = Pool(args.j)\n\n    _ = list(\n        tqdm(\n            pool.imap_unordered(\n                frame_extractor, inputs),\n                total=len(inputs)\n        )\n    )\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/extract_frames_for_colmap.py",
    "content": "import os\nimport sys\nimport argparse\nfrom tqdm import tqdm\nfrom pathlib import Path\nfrom multiprocessing import Pool\n\nsys.path.append('./Camera_Intrinsics_API/')\nfrom get_camera_intrinsics import CameraIntrinsicsHelper\n\n\ndef extract_frames_for_sfm(inputs):\n    images_dir = inputs['images_dir']\n    output_dir = inputs['output_dir']\n    helper = CameraIntrinsicsHelper()\n    helper.sfm_images_dir = output_dir\n    helper.select_good_frames(images_dir)\n\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/clips_frames/',\n        help=\"Input folder with the clips.\",\n    )\n    parser.add_argument(\n        \"--output_dir\",\n        type=str,\n        default='data/clips_frames_for_sfm/',\n        help=\"Output folder with the clips.\",\n    )\n    parser.add_argument(\n        \"--j\",\n        type=int,\n        default=1,\n        help=\"Number of parallel processes\",\n    )\n    args = parser.parse_args()\n\n    clip_images_dir = args.input_dir\n    output_dir = args.output_dir\n\n    Path(output_dir).mkdir(parents=True, exist_ok=True)\n\n    inputs=[]\n    clips_dirnames = os.listdir(clip_images_dir)\n    for clip_dirname in clips_dirnames:\n\n        tmp_output_dir = os.path.join(output_dir, clip_dirname)\n        Path(tmp_output_dir).mkdir(parents=True, exist_ok=True)\n\n        images_dir = os.path.join(clip_images_dir, clip_dirname)\n\n        inputs.append({'images_dir':images_dir,\n                       'output_dir':tmp_output_dir})\n\n\n    pool = Pool(args.j)\n    _ = list(\n        tqdm(\n            pool.imap_unordered(\n                extract_frames_for_sfm, inputs),\n                total=len(inputs)\n        )\n    )\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/get_intrinsics_for_all_clips.py",
    "content": "import os\nimport sys\nimport json\nimport argparse\nimport numpy as np\nfrom tqdm import tqdm\nfrom pathlib import Path\nfrom multiprocessing import Pool\n\nsys.path.append('Camera_Intrinsics_API/')\nfrom get_camera_intrinsics import CameraIntrinsicsHelper\n\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/clips_frames_for_sfm/',\n        help=\"Input folder with the frames selected for COLMAP.\",\n    )\n    parser.add_argument(\n        \"--output_dir\",\n        type=str,\n        default='data/sfm/',\n        help=\"Folder for the COLMAP outputs.\",\n    )\n    args = parser.parse_args()\n\n    sfm_images_root = args.input_dir\n    sfm_workspace_dir = args.output_dir\n    Path(sfm_workspace_dir).mkdir(parents=True, exist_ok=True)\n\n    def run_automatic_reconstruction(inputs):\n        video_uid=inputs['video_uid']\n        input_images_dir=inputs['input_images_dir']\n        sfm_workspace_dir=inputs['sfm_workspace_dir']\n        helper = CameraIntrinsicsHelper()\n        helper.sfm_workspace_dir=sfm_workspace_dir\n        helper.sfm_images_dir = input_images_dir\n        l = helper.run_colmap()\n        return {\n            'result':l,\n            'video_uid':video_uid,\n        }\n\n    video_uids = os.listdir(sfm_images_root)\n    outputs = {}\n    for video_uid in video_uids:\n        input_images_dir = os.path.join(sfm_images_root,\n                                        video_uid)\n        output_sfm_dir = os.path.join(sfm_workspace_dir,\n                                      video_uid)\n\n        if os.path.isdir(output_sfm_dir):\n            continue\n\n        Path(output_sfm_dir).mkdir(parents=True, exist_ok=True)\n\n        r = run_automatic_reconstruction(\n            {\n                'video_uid':video_uid,\n                'input_images_dir':input_images_dir,\n                'sfm_workspace_dir':output_sfm_dir,\n            }\n        )\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/get_intrinsics_for_all_clips_greedy.py",
    "content": "import os\nimport sys\nimport json\nimport shutil\nimport argparse\nimport numpy as np\nfrom tqdm import tqdm\nfrom pathlib import Path\nfrom random import shuffle\nfrom multiprocessing import Pool\n\nsys.path.append('Camera_Intrinsics_API/')\nfrom get_camera_intrinsics import CameraIntrinsicsHelper\n\nprint('Update colmap path in get_camera_intrinsics.py')\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/videos_frames/',\n        help=\"Input folder with the frames selected for COLMAP.\",\n    )\n    parser.add_argument(\n        \"--sfm_input_dir\",\n        type=str,\n        default='data/videos_frames_for_sfm_greedy/',\n        help=\"Input folder with the frames selected for COLMAP.\",\n    )\n    parser.add_argument(\n        \"--output_dir\",\n        type=str,\n        default='data/videos_sfm_greedy/',\n        help=\"Folder for the COLMAP outputs.\",\n    )\n    args = parser.parse_args()\n    \n    images_root = args.input_dir\n    \n    sfm_images_root = args.sfm_input_dir\n    Path(sfm_images_root).mkdir(parents=True, exist_ok=True)\n    \n    sfm_workspace_dir = args.output_dir\n    Path(sfm_workspace_dir).mkdir(parents=True, exist_ok=True)\n\n    def run_automatic_reconstruction(inputs):\n        video_uid=inputs['video_uid']\n        input_images_dir=inputs['input_images_dir']\n        sfm_workspace_dir=inputs['sfm_workspace_dir']\n        helper = CameraIntrinsicsHelper()\n        helper.sfm_workspace_dir=sfm_workspace_dir\n        helper.sfm_images_dir = input_images_dir\n        l = helper.run_colmap()\n        return {\n            'result':l,\n            'video_uid':video_uid,\n        }\n\n    video_uids = os.listdir(images_root)\n    shuffle(video_uids)\n    for video_uid in video_uids:\n        # check if processed or in process\n        input_images_dir = os.path.join(sfm_images_root,\n                                        video_uid)\n        output_sfm_dir = os.path.join(sfm_workspace_dir,\n                                      video_uid)\n        if os.path.isdir(output_sfm_dir):\n            continue\n        \n        Path(output_sfm_dir).mkdir(parents=True, exist_ok=True)\n        Path(input_images_dir).mkdir(parents=True, exist_ok=True)\n\n\n        # copy images to folder\n        video_frames_root = os.path.join(images_root,video_uid)\n        video_frames_filenames = os.listdir(video_frames_root)\n        video_frames_filenames = sorted(video_frames_filenames)\n        N = len(video_frames_filenames)\n\n        mid = int(N/2.0)\n        for i in range(mid, mid+100,1):\n            shutil.copyfile(\n                    os.path.join(video_frames_root,video_frames_filenames[i]),\n                    os.path.join(input_images_dir,video_frames_filenames[i])\n                )\n\n        # run colmap\n        r = run_automatic_reconstruction(\n            {\n                'video_uid':video_uid,\n                'input_images_dir':input_images_dir,\n                'sfm_workspace_dir':output_sfm_dir,\n            }\n        )\n\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/get_median_intrinsics.py",
    "content": "import os\nimport sys\nimport json\nimport argparse\nimport numpy as np\n\nsys.path.append('Camera_Intrinsics_API/')\nfrom get_camera_intrinsics import CameraIntrinsicsHelper\n\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/videos_sfm/',\n        help=\"COLMAP output folder of videos\",\n    )\n    parser.add_argument(\n        \"--input_dir_greedy\",\n        type=str,\n        default='data/videos_sfm_greedy/',\n        help=\"Folder for the COLMAP outputs - greedy.\",\n    )\n    parser.add_argument(\n        \"--annotation_dir\",\n        type=str,\n        default='data/v1/annotations/',\n        help=\"annotation folder. Must contain the vq3d_<split>.json files.\",\n    )\n    parser.add_argument(\n        \"--output_filename\",\n        type=str,\n        default='data/v1/scan_to_intrinsics.json',\n    )\n    args = parser.parse_args()\n\n\n    dataset = {}\n    for split in ['train', 'val']:\n        a = json.load(open(os.path.join(args.annotation_dir,\n                                        f'vq3d_{split}.json'), 'r'))\n        for video in a['videos']:\n            video_uid=video['video_uid']\n            scan_uid=video['scan_uid']\n            dataset[video_uid]=scan_uid\n\n    helper = CameraIntrinsicsHelper()\n    \n    datadir=args.input_dir\n    datadir_2=args.input_dir_greedy\n    cpt=0\n    all_intrinsics = {}\n    for video_uid in os.listdir(datadir):\n        scan_uid=dataset[video_uid]\n        intrinsic_txt = os.path.join(datadir,\n                                     video_uid,\n                                    'sparse',\n                                    '0',\n                                    'cameras.txt')\n    \n        if not os.path.isfile(intrinsic_txt):\n            intrinsic_txt = os.path.join(datadir_2,\n                                         video_uid,\n                                        'sparse',\n                                        '0',\n                                        'cameras.txt')\n    \n            if not os.path.isfile(intrinsic_txt):\n                cpt+=1\n            else:\n                intrinsics = helper.parse_colmap_intrinsics(intrinsic_txt)\n                if scan_uid not in all_intrinsics:\n                    all_intrinsics[scan_uid]={}\n                token = (intrinsics['width'], intrinsics['height'])\n                if token not in all_intrinsics[scan_uid]:\n                    all_intrinsics[scan_uid][token] = []\n    \n                all_intrinsics[scan_uid][token].append(\n                    (\n                      intrinsics['f'],\n                      intrinsics['cx'],\n                      intrinsics['cy'],\n                      intrinsics['k1'],\n                      intrinsics['k2'],\n                    )\n                )\n        else:\n            intrinsics = helper.parse_colmap_intrinsics(intrinsic_txt)\n            if scan_uid not in all_intrinsics:\n                all_intrinsics[scan_uid]={}\n            token = (intrinsics['width'], intrinsics['height'])\n            if token not in all_intrinsics[scan_uid]:\n                all_intrinsics[scan_uid][token] = []\n    \n            all_intrinsics[scan_uid][token].append(\n                (\n                  intrinsics['f'],\n                  intrinsics['cx'],\n                  intrinsics['cy'],\n                  intrinsics['k1'],\n                  intrinsics['k2'],\n                )\n            )\n    \n    outputs = {}\n    for scan_uid, d in all_intrinsics.items():\n        print(' ')\n        print('Scan uid: ', scan_uid)\n        outputs[scan_uid]={}\n        for resolution, v in d.items():\n            print('   -- resolution: ', resolution)\n            resolution_str = str(resolution)\n            outputs[scan_uid][resolution_str]={\n                'f':  np.median([float(i[0]) for i in v]),\n                'cx': np.median([float(i[1]) for i in v]),\n                'cy': np.median([float(i[2]) for i in v]),\n                'k1': np.median([float(i[3]) for i in v]),\n                'k2': np.median([float(i[4]) for i in v]),\n            }\n            for i in v:\n                print('   -- -- -- : ', i)\n            print(' ')\n            print('   -- -- -- : ',\n                  outputs[scan_uid][resolution_str]['f'],\n                  outputs[scan_uid][resolution_str]['cx'],\n                  outputs[scan_uid][resolution_str]['cy'],\n                  outputs[scan_uid][resolution_str]['k1'],\n                  outputs[scan_uid][resolution_str]['k2'],\n                 )\n    \n    json.dump(outputs, open(output_filename, 'w'))\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/main.sh",
    "content": "#!/bin/bash\n\nPOSITIONAL_ARGS=()\n\nUNDISTORT=false\nDATABASE=false\nPNP=false\nTRACK=false\nSFM=false\nVIZ=false\n\nwhile [[ $# -gt 0 ]]; do\n    case $1 in\n      --undistort)\n        UNDISTORT=true\n        shift\n        ;;\n      --database)\n        DATABASE=true\n        shift\n        ;;\n      --pnp)\n        PNP=true\n        shift\n        ;;\n      --track)\n        TRACK=true\n        shift\n        ;;\n    --sfm)\n        SFM=true\n        shift\n        ;;\n    --viz)\n        VIZ=true\n        shift\n        ;;\n      *)\n        POSITIONAL_ARGS+=($1)\n        shift\n        ;;\n    esac\ndone\n\nset -- \"${POSITIONAL_ARGS[@]}\"\n\nif [ \"$UNDISTORT\" = true ] ; then\n    echo \"Undistort image\"\n    python undistort_image_api.py \\\n    --ego_dataset_folder $2 --crop_x 300 --crop_y 300\nfi\n\nif [ \"$DATABASE\" = true ] ; then\n    echo \"Extract image descriptor and query\"\n    python visual_database_api.py \\\n    --matterport_descriptors_folder $1/descriptors/ \\\n    --matterport_output_folder $1/descriptors/ \\\n    --ego_dataset_folder $2\nfi\n\nif [ \"$PNP\" = true ] ; then\n    echo \"Match query and database images\"\n    python SuperGlueMatching/match_pairs_api.py \\\n    --input_pairs $2/vlad_best_match/queries.pkl \\\n    --starting_index 0 --ending_index 0 \\\n    --output_dir $2/superglue_match_results/\n    \n    echo \"Obtain poses with PnP\"\n    python pnp_api.py \\\n    --ego_dataset_folder $2 \\\n    --matterport_descriptors_folder $1/descriptors/ \\\n    --output_dir $2/poses_reloc/\nfi\n\nif [ \"$TRACK\" = true ] ; then\n    echo \"Extract temporal constraints by matching pairwise images\"\n    python superglue_tracker.py \\\n    --ego_dataset_folder $2 \\\n    --extract_descriptor\nfi\n\nif [ \"$SFM\" = true ] ; then\n    echo \"Incremental unordered sfm\"\n    python sfm_api_wsuperglue.py \\\n    --ego_dataset_folder $2\nfi\n\nif [ \"$VIZ\" = true ] ; then\n    echo \"Image overlaid visualization\"\n    python Visualization/visualize_render_images.py \\\n    --matterport_dataset_folder $1 \\\n    --ego_dataset_folder $2\nfi\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/pnp_api.py",
    "content": "import torch\nimport fnmatch\nimport argparse\nimport numpy as np\nfrom torch.utils.data.dataset import Dataset\nimport os\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nimport cv2\nfrom utils import WritePosesToPly\n\ndef PnP(x1s, f3ds, x2s, m1_ids, K1, K2, thres=1e-2):\n    f2d = [] # keep only feature points with depth in the current frame\n    f3d_new = []\n    for k in range(len(f3ds)):\n        x2 = np.array(x2s[k])\n        f3d = np.array(f3ds[k])\n        for i in range(f3d.shape[0]):\n            if np.linalg.norm(f3d[i]) > 1e-2:\n                f2d.append(x2[i, :])\n                f3d_new.append(f3d[i, 0])\n\n    f2d = np.array(f2d)\n    f3d = np.array(f3d_new)\n\n    if f3d.ndim == 2:\n        f3d = np.expand_dims(f3d.astype(np.float32), axis=1)\n\n    if f2d.ndim == 2:\n        f2d = np.expand_dims(f2d.astype(np.float32), axis=1)\n\n    if (f3d.shape[0]<4) or (f2d.shape[0]<4):\n        return 0, None, None, None\n\n    ret = cv2.solvePnPRansac(f3d,\n                             f2d,\n                             K2,\n                             distCoeffs=None,\n                             flags=cv2.SOLVEPNP_EPNP)\n    success = ret[0]\n    rotation_vector = ret[1]\n    translation_vector = ret[2]\n\n    f_2d = np.linalg.inv(K2) @ np.concatenate((f2d[:, 0],\n                                               np.ones((f2d.shape[0], 1))), axis=1).T\n\n    rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n    translation_vector = translation_vector.reshape(3)\n    proj = rotation_mat @ f3d[:, 0].T + translation_vector.reshape(3, -1)\n    proj = proj[:2] / proj[2:]\n    reproj_error = np.linalg.norm(f_2d[:2] - proj[:2], axis=0)\n    reproj_inliers = reproj_error < thres\n    reproj_inliers = reproj_inliers.reshape(-1)\n\n    if success==0 or reproj_inliers.sum() < 10:\n        return 0, None, None, None\n    else:\n        ret = cv2.solvePnP(f3d[reproj_inliers].reshape(reproj_inliers.sum(), 1, 3),\n                           f2d[reproj_inliers].reshape(reproj_inliers.sum(), 1, 2),\n                           K2,\n                           distCoeffs=None,\n                           flags=cv2.SOLVEPNP_ITERATIVE)\n        success = ret[0]\n        rotation_vector = ret[1]\n        translation_vector = ret[2]\n\n        rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n        translation_vector = translation_vector.reshape(3)\n\n        Caz_T_Wmp = np.eye(4)\n        Caz_T_Wmp[:3, :3] = rotation_mat\n        Caz_T_Wmp[:3, 3] = translation_vector\n\n        rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n        translation_vector = translation_vector.reshape(3)\n        proj = rotation_mat @ f3d[:, 0].T + translation_vector.reshape(3, -1)\n        proj = proj[:2] / proj[2:]\n        reproj_error_refined = np.linalg.norm(f_2d[:2] - proj[:2], axis=0)\n        reproj_error_refined = reproj_error_refined < thres\n        reproj_error_refined = reproj_error_refined.reshape(-1)\n\n        if reproj_error_refined.sum() < 0.5 * reproj_inliers.sum():\n            return 0, None, None, None\n        else:\n            return success, Caz_T_Wmp, f2d[reproj_error_refined, 0], f3d[reproj_error_refined, 0]\n\nclass PosePnP_points_accumulation(Dataset):\n    def __init__(self, match_database='', img_desc_folder='', image_list=None):\n        super(PosePnP_points_accumulation, self).__init__()\n        self.img_desc_folder = img_desc_folder\n        self.match_database = match_database\n        self.num_images = len(image_list)\n        self.P = np.zeros((self.num_images, 3, 4))\n        self.good_pose_pnp = np.zeros(self.num_images, dtype=bool)\n        self.original_image_id_list = image_list\n\n    def __getitem__(self, index):\n        azure_img_idx = self.original_image_id_list[index]\n        matches_file_list = fnmatch.filIter(os.listdir(self.match_database), \n                                           'color_%07d_*_matches.npz' % azure_img_idx)\n\n        best_inlier = -1\n        best_solution = None\n        output = {'img_idx': torch.tensor(index, dtype=torch.int),\n                  'is_good_pose': torch.tensor([False]),\n                  'solution': torch.zeros((3, 4), dtype=torch.double)}\n\n        x2_all = []\n        f3d_all = []\n        total_inlier = 0\n        for file_idx in range(len(matches_file_list)):\n            # 1. Input an query RGB from Kinect Azure\n            matterport_img_idx = int(matches_file_list[file_idx][20:26])\n\n            matches_data = np.load(os.path.join(self.match_database, matches_file_list[file_idx]),'r')\n\n            image_descriptor = np.load(os.path.join(self.img_desc_folder, 'image_%06d_descriptors.npz' % matterport_img_idx),'r')\n\n            _x1 = []\n            _f3d = []\n            _x2 = []\n            good_matches = 0\n            \n            for i in range(matches_data['keypoints0'].shape[0]):\n                if matches_data['matches'][i] >= 0 and matches_data['match_confidence'][i] > 0.1:\n                    _x2.append(matches_data['keypoints0'][i] * np.array(s_ego))\n                    _x1.append(matches_data['keypoints1'][matches_data['matches'][i]] * np.array(s_mp))\n                    _f3d.append(image_descriptor['XYZ'][matches_data['matches'][i]])\n                    good_matches += 1\n             \n            if good_matches > 20:\n                success, T, f2d_inlier, f3d_inlier = PnP([_x1], [_f3d], [_x2], [matterport_img_idx],\n                                                         K_mp, K_ego, thres=3e-2)\n\n                if success and f2d_inlier.shape[0] >= 10:\n                    total_inlier += f2d_inlier.shape[0]\n                    x2_all.append(f2d_inlier)\n                    f3d_all.append(f3d_inlier)\n\n        if total_inlier >= 30:\n            f3d_all = np.concatenate(f3d_all, axis=0)\n            f3d_all = np.expand_dims(f3d_all, axis=1)\n            x2_all = np.concatenate(x2_all, axis=0)\n            success, T, f2d_inlier, f3d_inlier = PnP(None, [f3d_all], [x2_all], None, K_mp, K_ego, thres=3e-2)\n            if success and f2d_inlier.shape[0] > 20:\n                ## VISUALIZATION\n                # uv1 = np.concatenate((f2d_inlier,\n                #                       np.ones((f2d_inlier.shape[0], 1))), axis=1)\n                # azure_im = cv2.imread(os.path.join(EGOLOC_FOLDER, 'color/color_%07d.jpg' % azure_img_idx))\n                # VisualizeReprojectionError(T[:3],\n                #                            f3d_inlier,\n                #                            uv1 @ np.linalg.inv(K_azure).T,\n                #                            Im=azure_im, K=K_azure)\n                # self.P[index] = copy.deepcopy(T[:3])\n                # self.good_pose_pnp[index] = copy.deepcopy(True)\n\n                output = {'img_idx': torch.tensor(index, dtype=torch.int),\n                          'is_good_pose': torch.tensor([True]), 'solution': torch.tensor(T[:3])}\n\n        return output\n\n    def __len__(self):\n        return self.num_images\n\n\n\nparser = argparse.ArgumentParser(\n        description='Image pair matching and pose evaluation with SuperGlue',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\nparser.add_argument(\n    '--ego_dataset_folder', type=str, default='',\n    help='SuperGlue match threshold')\nparser.add_argument(\n    '--matterport_descriptors_folder', type=str,\n    help='Matterport descriptor folder')\nparser.add_argument(\n    '--output_dir', type=str,\n    help='SuperGlue match threshold')\n\nopt = parser.parse_args()\n\nEGO_DATASET_FOLDER = opt.ego_dataset_folder\nMATCH_DATABASE = os.path.join(EGO_DATASET_FOLDER, 'superglue_match_results')\nIMAGE_DESC_FOLDER = opt.matterport_descriptors_folder\nOUTPUT_DIR = opt.output_dir\n\nif not os.path.exists(OUTPUT_DIR):\n    os.makedirs(OUTPUT_DIR)\n\nK_mp = np.array([[700., 0., 960. - 0.5],\n                 [0., 700., 540. - 0.5],\n                 [0., 0., 1.]])\ns_mp = [(K_mp[0,2]+0.5)*2/640, (K_mp[1,2]+0.5)*2/480]\n\nK_ego = np.loadtxt('%s/intrinsics.txt' % opt.ego_dataset_folder)\ns_ego = [(K_ego[0,2]+0.5)*2/640, (K_ego[1,2]+0.5)*2/480]\n\noriginal_image_id_list = np.arange(0, len(fnmatch.filter(os.listdir(EGO_DATASET_FOLDER + '/color/'), '*.jpg')), step=1)\nnum_images = original_image_id_list.shape[0]\nP = np.zeros((num_images, 3, 4))\ngood_pose_pnp = np.zeros(num_images, dtype=bool)\nbatch_size = 8\n\nego_dataset = PosePnP_points_accumulation(match_database=MATCH_DATABASE,\n                                         img_desc_folder=IMAGE_DESC_FOLDER,\n                                         image_list=original_image_id_list)\ndata_loader = DataLoader(dataset=ego_dataset,\n                         num_workers=8, batch_size=batch_size,\n                         shuffle=False,\n                         pin_memory=True)\n\nfor idx, output_batch in enumerate(tqdm(data_loader)):\n    for ii in range(output_batch['is_good_pose'].shape[0]):\n        if output_batch['is_good_pose'][ii]:\n            P[int(output_batch['img_idx'][ii].item())] = output_batch['solution'][ii].numpy()\n            good_pose_pnp[int(output_batch['img_idx'][ii].item())] = True\n\n    print('good pose found by pnp / total poses: ', np.sum(good_pose_pnp), '/', good_pose_pnp.shape[0])\n\nnp.save('%s/camera_poses_pnp.npy' % OUTPUT_DIR, P)\nnp.save('%s/good_pose_pnp.npy' % OUTPUT_DIR, good_pose_pnp)\nprint(good_pose_pnp.shape)\nif np.sum(good_pose_pnp) > 0:\n    WritePosesToPly(P[good_pose_pnp], '%s/cameras_pnp.ply' % OUTPUT_DIR)\nelse:\n    print('No good poses found')\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/reconstruction.py",
    "content": "import numpy as np\nfrom scipy.optimize import least_squares\nfrom scipy.sparse import csr_matrix\n\nfrom utils import Rotation2Quaternion\nfrom utils import Quaternion2Rotation\nfrom utils import skewsymm\n\n\ndef FindMissingReconstruction(X, track_i):\n    \"\"\"\n    Find the points that will be newly added\n\n    Parameters\n    ----------\n    X : ndarray of shape (F, 3)\n        3D points\n    track_i : ndarray of shape (F, 2)\n        2D points of the newly registered image\n\n    Returns\n    -------\n    new_point : ndarray of shape (F,)\n        The indicator of new points that are valid for the new image and are\n        not reconstructed yet\n    \"\"\"\n    new_point = np.logical_and(X[:, 0] == -1, track_i[:, 0] != -1)\n    return new_point\n\n\ndef Triangulation_nl(X, P1, P2, x1, x2):\n    \"\"\"\n    Refine the triangulated points\n\n    Parameters\n    ----------\n    X : ndarray of shape (n, 3)\n        3D points\n    P1 : ndarray of shape (3, 4)\n        Camera projection matrix 1\n    P2 : ndarray of shape (3, 4)\n        Camera projection matrix 2\n    x1 : ndarray of shape (n, 2)\n        Point correspondences from pose 1\n    x2 : ndarray of shape (n, 2)\n        Point correspondences from pose 2\n\n    Returns\n    -------\n    X_new : ndarray of shape (n, 3)\n        The set of refined 3D points\n    \"\"\"\n    R1 = P1[:, :3]\n    C1 = -R1.T @ P1[:, 3]\n    R2 = P2[:, :3]\n    C2 = -R2.T @ P2[:, 3]\n\n    p1 = np.concatenate([C1, Rotation2Quaternion(R1)])\n    p2 = np.concatenate([C2, Rotation2Quaternion(R2)])\n\n    lamb = 0.005\n    n_iter = 10\n    X_new = X.copy()\n    for i in range(X.shape[0]):\n        pt = X[i, :]\n        for j in range(n_iter):\n            proj1 = R1 @ (pt - C1)\n            proj1 = proj1[:2] / proj1[2]\n            proj2 = R2 @ (pt - C2)\n            proj2 = proj2[:2] / proj2[2]\n\n            dfdX1 = ComputePointJacobian(pt, p1)\n            dfdX2 = ComputePointJacobian(pt, p2)\n\n            H1 = dfdX1.T @ dfdX1 + lamb * np.eye(3)\n            H2 = dfdX2.T @ dfdX2 + lamb * np.eye(3)\n\n            J1 = dfdX1.T @ (x1[i, :] - proj1)\n            J2 = dfdX2.T @ (x2[i, :] - proj2)\n\n            delta_pt = np.linalg.inv(H1) @ J1 + np.linalg.inv(H2) @ J2\n            pt += delta_pt\n\n        X_new[i, :] = pt\n\n    return X_new\n\n\ndef Triangulation_RANSAC(uv1, P, ransac_n_iter=30, threshold=1e-2):\n    A = np.matmul(skewsymm(uv1), P)\n    N = A.shape[0]\n\n    best_inlier = -1\n    best_C1_X = None\n    best_inlier_ids = []\n    best_outlier_ids = []\n    for i in range(ransac_n_iter):\n        rand_idx = np.random.choice(N, size=3, replace=False)\n        A_select = A[rand_idx]\n        A_select = np.reshape(A_select, (A_select.shape[0] * A_select.shape[1], A_select.shape[2]))\n        u, s, vh = np.linalg.svd(A_select)\n        if vh[3,3] == 0.0: continue\n        C1_X = vh[3, :3] / vh[3, 3]\n\n        inlier_num = 0\n        inlier_ids = []\n        outlier_ids = []\n        for k in range(N):\n            proj = P[k, :, :3] @ C1_X.reshape(3, 1) + P[k, :, 3:]\n            proj = proj[:2] / proj[2]\n            error = np.linalg.norm(proj.reshape(-1) - uv1[k, :2])\n            if error < threshold:\n                inlier_num += 1\n                inlier_ids.append(k)\n            else:\n                outlier_ids.append(k)\n\n        if inlier_num > best_inlier:\n            best_inlier = inlier_num\n            best_inlier_ids = inlier_ids\n            best_outlier_ids = outlier_ids\n            best_C1_X = C1_X\n\n    return best_C1_X, best_inlier_ids, best_outlier_ids\n\n\ndef TriangulationD_RANSAC(Ci_f, P, ransac_n_iter=10, threshold=1e-2):\n    N = P.shape[0]\n    best_inlier = -1\n    best_C1_X = None\n    best_inlier_ids = []\n    best_outlier_ids = []\n    Ci_f = Ci_f.T\n    Ci_uv = Ci_f[:2] / Ci_f[2]\n    for i in range(N):\n        C1_X = P[i, :, :3].T @ (Ci_f[:, i:(i + 1)] - P[i, :, 3:])\n\n        inlier_num = 0\n        inlier_ids = []\n        outlier_ids = []\n\n        for k in range(N):\n            proj = P[k, :, :3] @ C1_X + P[k, :, 3:]\n            proj = proj[:2] / proj[2]\n            error = np.linalg.norm(proj - Ci_uv[:, k])\n            if error < threshold:\n                inlier_num += 1\n                inlier_ids.append(k)\n            else:\n                outlier_ids.append(k)\n\n        if inlier_num > best_inlier:\n            best_inlier = inlier_num\n            best_inlier_ids = inlier_ids\n            best_outlier_ids = outlier_ids\n            best_C1_X = C1_X\n\n    return best_C1_X, best_inlier_ids, best_outlier_ids\n\n\ndef Triangulation_LS(uv1_inlier, P_inlier):\n    A = np.matmul(skewsymm(uv1_inlier), P_inlier)\n    A = np.reshape(A, (A.shape[0] * A.shape[1], A.shape[2]))\n    u, s, vh = np.linalg.svd(A)\n    C1_X = vh[3, :3] / vh[3, 3]\n\n    return C1_X\n\n\ndef ComputePointJacobian(X, p):\n    \"\"\"\n    Compute the point Jacobian\n\n    Parameters\n    ----------\n    X : ndarray of shape (3,)\n        3D point\n    p : ndarray of shape (7,)\n        Camera pose made of camera center and quaternion\n\n    Returns\n    -------\n    dfdX : ndarray of shape (2, 3)\n        The point Jacobian\n    \"\"\"\n    R = Quaternion2Rotation(p[3:])\n    C = p[:3]\n    x = R @ (X - C)\n\n    u = x[0]\n    v = x[1]\n    w = x[2]\n    du_dc = R[0, :]\n    dv_dc = R[1, :]\n    dw_dc = R[2, :]\n\n    dfdX = np.stack([\n        (w * du_dc - u * dw_dc) / (w ** 2),\n        (w * dv_dc - v * dw_dc) / (w ** 2)\n    ], axis=0)\n\n    return dfdX\n\n\ndef SetupBundleAdjustment(P, X, track, fixed_poses=None):\n    \"\"\"\n    Setup bundle adjustment\n\n    Parameters\n    ----------\n    P : ndarray of shape (K, 3, 4)\n        Set of reconstructed camera poses\n    X : ndarray of shape (J, 3)\n        Set of reconstructed 3D points\n    track : ndarray of shape (K, J, 2)\n        Tracks for the reconstructed cameras\n\n    Returns\n    -------\n    z : ndarray of shape (7K+3J,)\n        The optimization variable that is made of all camera poses and 3D points\n    b : ndarray of shape (2M,)\n        The 2D points in track, where M is the number of 2D visible points\n    S : ndarray of shape (2M, 7K+3J)\n        The sparse indicator matrix that indicates the locations of Jacobian computation\n    camera_index : ndarray of shape (M,)\n        The index of camera for each measurement\n    point_index : ndarray of shape (M,)\n        The index of 3D point for each measurement\n    \"\"\"\n    n_cameras = P.shape[0]\n    n_points = X.shape[0]\n\n    n_projs = np.sum(track[:, :, 0] != -1)\n    b = np.zeros((2 * n_projs,))\n    # S = np.zeros((2*n_projs, 7*n_cameras+3*n_points), dtype=bool)\n    S_row = []\n    S_col = []\n\n    k = 0\n    camera_index = []\n    point_index = []\n    optimized_poses = np.random.uniform(-1, 1, len(fixed_poses))\n    for i in range(n_cameras):\n        print('process camera ', i)\n        for j in range(n_points):\n            if track[i, j, 0] != -1 and track[i, j, 1] != -1:\n                if not fixed_poses[i]:\n                    # S[2*k : 2*(k+1), 7*i : 7*(i+1)] = 1\n                    rows, cols = np.meshgrid(np.linspace(2 * k, 2 * (k + 1), endpoint=False, dtype=int),\n                                             np.linspace(7 * i, 7 * (i + 1), endpoint=False, dtype=int))\n                    rows = rows.reshape(-1)\n                    cols = cols.reshape(-1)\n                    S_row.append(rows)\n                    S_col.append(cols)\n                # else:\n                #     if optimized_poses[i] > 0:\n                #         rows, cols = np.meshgrid(np.linspace(2 * k, 2 * (k + 1), endpoint=False, dtype=int),\n                #                                  np.linspace(7 * i, 7 * (i + 1), endpoint=False, dtype=int))\n                #         rows = rows.reshape(-1)\n                #         cols = cols.reshape(-1)\n                #         S_row.append(rows)\n                #         S_col.append(cols)\n\n                # S[2*k : 2*(k+1), 7*n_cameras+3*j : 7*n_cameras+3*(j+1)] = 1\n                rows, cols = np.meshgrid(np.linspace(2 * k, 2 * (k + 1), endpoint=False, dtype=int),\n                                         np.linspace(7 * n_cameras + 3 * j, 7 * n_cameras + 3 * (j + 1), endpoint=False,\n                                                     dtype=int))\n                rows = rows.reshape(-1)\n                cols = cols.reshape(-1)\n                S_row.append(rows)\n                S_col.append(cols)\n\n                b[2 * k: 2 * (k + 1)] = track[i, j, :]\n                camera_index.append(i)\n                point_index.append(j)\n                k += 1\n    camera_index = np.asarray(camera_index)\n    point_index = np.asarray(point_index)\n\n    S_row = np.concatenate(S_row)\n    S_col = np.concatenate(S_col)\n    S_data = np.ones(S_row.shape[0], dtype=bool)\n    S = csr_matrix((S_data, (S_row, S_col)), shape=(2 * n_projs, 7 * n_cameras + 3 * n_points))\n\n    z = np.zeros((7 * n_cameras + 3 * n_points,))\n    for i in range(n_cameras):\n        R = P[i, :, :3]\n        C = -R.T @ P[i, :, 3]\n        q = Rotation2Quaternion(R)\n        p = np.concatenate([C, q])\n        z[7 * i: 7 * (i + 1)] = p\n    for i in range(n_points):\n        z[7 * n_cameras + 3 * i: 7 * n_cameras + 3 * (i + 1)] = X[i, :]\n\n    return z, b, S, camera_index, point_index\n\n\ndef MeasureReprojection(z, b, n_cameras, n_points, camera_index, point_index):\n    \"\"\"\n    Evaluate the reprojection error\n\n    Parameters\n    ----------\n    z : ndarray of shape (7K+3J,)\n        Optimization variable\n    b : ndarray of shape (2M,)\n        2D measured points\n    n_cameras : int\n        Number of cameras\n    n_points : int\n        Number of 3D points\n    camera_index : ndarray of shape (M,)\n        Index of camera for each measurement\n    point_index : ndarray of shape (M,)\n        Index of 3D point for each measurement\n\n    Returns\n    -------\n    err : ndarray of shape (2M,)\n        The reprojection error\n    \"\"\"\n    n_projs = camera_index.shape[0]\n    f = np.zeros((2 * n_projs,))\n    for k, (i, j) in enumerate(zip(camera_index, point_index)):\n        # Remove measurement error of fixed poses\n        p = z[7 * i: 7 * (i + 1)]\n        X = z[7 * n_cameras + 3 * j: 7 * n_cameras + 3 * (j + 1)]\n        q = p[3:]\n        q = q / np.linalg.norm(q)\n        R = Quaternion2Rotation(q)\n        C = p[:3]\n        proj = R @ (X - C)\n        proj = proj / proj[2]\n        f[2 * k: 2 * (k + 1)] = proj[:2]\n    err = b - f\n\n    return err\n\n\ndef UpdatePosePoint(z0, z, n_cameras, n_points):\n    \"\"\"\n    Update the poses and 3D points\n\n    Parameters\n    ----------\n    z : ndarray of shape (7K+3J,)\n        Optimization variable\n    n_cameras : int\n        Number of cameras\n    n_points : int\n        Number of 3D points\n\n    Returns\n    -------\n    P_new : ndarray of shape (K, 3, 4)\n        The set of refined camera poses\n    X_new : ndarray of shape (J, 3)\n        The set of refined 3D points\n    \"\"\"\n    P_new = np.empty((n_cameras, 3, 4))\n    for i in range(n_cameras):\n        if i >= 2:\n            p = z[7 * i: 7 * (i + 1)]\n            q = p[3:]\n        else:\n            p = z0[7 * i: 7 * (i + 1)]\n            q = p[3:]\n        q = q / np.linalg.norm(q)\n        R = Quaternion2Rotation(q)\n        C = p[:3]\n        P_new[i, :, :] = R @ np.hstack([np.eye(3), -C[:, np.newaxis]])\n\n    X_new = np.empty((n_points, 3))\n    for i in range(n_points):\n        X_new[i, :] = z[7 * n_cameras + 3 * i: 7 * n_cameras + 3 * (i + 1)]\n\n    return P_new, X_new\n\n\ndef RunBundleAdjustment(P, X, track, fixed_poses=None):\n    \"\"\"\n    Run bundle adjustment\n\n    Parameters\n    ----------\n    P : ndarray of shape (K, 3, 4)\n        Set of reconstructed camera poses\n    X : ndarray of shape (J, 3)\n        Set of reconstructed 3D points\n    track : ndarray of shape (K, J, 2)\n        Tracks for the reconstructed cameras\n\n    Returns\n    -------\n    P_new : ndarray of shape (K, 3, 4)\n        The set of refined camera poses\n    X_new : ndarray of shape (J, 3)\n        The set of refined 3D points\n    \"\"\"\n    n_cameras = P.shape[0]\n    n_points = X.shape[0]\n\n    z0, b, S, camera_index, point_index = SetupBundleAdjustment(P, X, track, fixed_poses)\n    print('starting optimization')\n    print('poses: ', P.shape[0])\n    print('fixed poses: ', np.sum(fixed_poses))\n    print('optimized poses: ', P.shape[0] - np.sum(fixed_poses))\n    print('feature: ', track.shape[1])\n    print('nnz: ', S.nnz)\n    res = least_squares(\n        lambda x: MeasureReprojection(x, b, n_cameras, n_points, camera_index, point_index),\n        z0,\n        jac_sparsity=S,\n        verbose=2,\n        ftol=1e-8,\n        max_nfev=10,\n        xtol=1e-15,\n        loss='soft_l1',\n        f_scale=0.2\n    )\n    # loss = 'soft_l1',\n    # f_scale = 0.1\n    z = res.x\n\n    err0 = MeasureReprojection(z0, b, n_cameras, n_points, camera_index, point_index)\n    err = MeasureReprojection(z, b, n_cameras, n_points, camera_index, point_index)\n    print('Reprojection error {} -> {}'.format(np.linalg.norm(err0), np.linalg.norm(err)))\n\n    P_new, X_new = UpdatePosePoint(z0, z, n_cameras, n_points)\n\n    return P_new, X_new\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/run_all_data.py",
    "content": "import os\nimport sys\nimport json\nimport argparse\nimport numpy as np\nimport subprocess as sp\nfrom imageio import imread\nfrom PIL import Image\n\nfrom pathlib import Path\n\ndef load_vq3d_annotation(filename):\n    output = {}\n    data = json.load(open(filename, 'r'))\n    for video in data['videos']:\n        scan_uid = video['scan_uid']\n        for clip in video['clips']:\n            output[clip['clip_uid']] = scan_uid\n    return output\n\n\n#scan name to uid\nscan_name_to_uid = {\n    'unict_Scooter mechanic_31': 'unict_3dscan_001',\n    'unict_Baker_32': 'unict_3dscan_002',\n    'unict_Carpenter_33': 'unict_3dscan_003',\n    'unict_Bike mechanic_34': 'unict_3dscan_004',\n}\n\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/clips_from_videos_frames/',\n        help=\"Input folder with the clips.\",\n    )\n    parser.add_argument(\n        \"--query_filename\",\n        type=str,\n        default='data/vq3d_train.json',\n        help=\"Input query file.\",\n    )\n    parser.add_argument(\n        \"--camera_intrinsics_filename\",\n        type=str,\n        default='data/scan_to_intrinsics.json',\n        help=\"Json file with all the camera intrinsics.\",\n    )\n    parser.add_argument(\n        \"--scans_keypoints_dir\",\n        type=str,\n        default='data/scans_keypoints/',\n        help=\"Input folder with the scans keypoints.\",\n    )\n    parser.add_argument(\n        \"--scans_dir\",\n        type=str,\n        default='data/scans/',\n        help=\"Input folder with the scans keypoints.\",\n    )\n    parser.add_argument(\n        \"--output_dir\",\n        type=str,\n        default='data/clips_camera_poses/',\n        help=\"Output folder.\",\n    )\n    args = parser.parse_args()\n\n    #ROOT DATAPATH\n    input_dir=args.input_dir\n    scans_dir=args.scans_dir\n    scans_keypoints_dir=args.scans_keypoints_dir\n\n    # output dir\n    output_dir_root=args.output_dir\n    Path(output_dir_root).mkdir(parents=True, exist_ok=True)\n\n    # load ALL intrinsics\n    all_intrinsics = json.load(open(args.camera_intrinsics_filename, 'r'))\n\n    # load query file\n    clip_uid_to_scan_uid = load_vq3d_annotation(args.query_filename)\n\n    clip_uids = list(clip_uid_to_scan_uid.keys())\n\n    for clip_uid in clip_uids:\n\n        # check if not processed or not in process\n        output_dir = os.path.join(output_dir_root, clip_uid)\n        if os.path.isdir(output_dir): continue\n\n        #create directories\n        egovideo_dir = os.path.join(output_dir, 'egovideo')\n        scan_dir = os.path.join(output_dir, 'scan')\n\n        Path(output_dir).mkdir(parents=True, exist_ok=True)\n        Path(egovideo_dir).mkdir(parents=True, exist_ok=True)\n        Path(scan_dir).mkdir(parents=True, exist_ok=True)\n\n\n        scan_name = clip_uid_to_scan_uid[clip_uid]\n        scan_uid = scan_name_to_uid[scan_name]\n\n        #scan-parameters\n        os.symlink(os.path.join('../../../../',scans_keypoints_dir, scan_uid),\n                   os.path.join(scan_dir, 'descriptors'))\n\n        #scan data\n        os.symlink(os.path.join('../../../../', scans_dir, scan_uid),\n                   os.path.join(scan_dir, 'matterpak'))\n\n        #symlink data\n        # frames\n        os.symlink(os.path.join('../../../../', input_dir, clip_uid),\n                   os.path.join(egovideo_dir, 'color_distorted'))\n\n        # resolution\n        im = Image.open(os.path.join(egovideo_dir,\n                                     'color_distorted',\n                                     'color_0000000.jpg'))\n        resolution = im.size # (width, height)\n        resolution_token = (str(resolution[0]),\n                            str(resolution[1]))\n        resolution_token = str(resolution_token)\n        im.close()\n\n        # intrinsics\n        intrinsics = all_intrinsics[scan_name][resolution_token]\n        intr = []\n        intr.append(str(resolution[0]))\n        intr.append(str(resolution[1]))\n        intr.append(str(intrinsics['cx']))\n        intr.append(str(intrinsics['cy']))\n        intr.append(str(intrinsics['f']))\n        intr.append(str(intrinsics['k1']))\n        intr.append(str(intrinsics['k2']))\n        intr = ' '.join(intr)\n        with open(os.path.join(egovideo_dir, 'fisheye_intrinsics.txt'), 'w') as f:\n            f.write(intr)\n\n\n        ######################################\n        ######################################\n        # command\n        cmd = [\"./main.sh\",\n               f\"./{scan_dir}\",\n               f\"./{egovideo_dir}\",\n              ]\n\n        # get flags\n        if not os.path.isfile(os.path.join(egovideo_dir,\n                                           'superglue_track',\n                                           'poses',\n                                           'good_pose_reprojection.npy'\n                                          )):\n            cmd.append(\"--sfm\")\n\n        if not os.path.isfile(os.path.join(egovideo_dir,\n                                           'superglue_track',\n                                           'track.npy',\n                                          )):\n            cmd.append(\"--track\")\n\n        if not os.path.isfile(os.path.join(egovideo_dir,\n                                           'poses_reloc',\n                                           'camera_poses_pnp.npy',\n                                          )):\n            cmd.append(\"--pnp\")\n\n        if not os.path.isfile(os.path.join(egovideo_dir,\n                                           'vlad_best_match',\n                                           'queries.pkl',\n                                          )):\n            cmd.append(\"--database\")\n\n        if not os.path.isfile(os.path.join(egovideo_dir,\n                                           'intrinsics.txt',\n                                          )):\n            cmd.append(\"--undistort\")\n        \n        if not os.path.isdir(os.path.join(egovideo_dir,\n                                          'pose_visualization_superglue',\n                                          )):\n            cmd.append(\"--viz\")\n        \n        # start data processing\n        o = sp.run(cmd)\n\n\n\n\n\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/sfm_api_wsuperglue.py",
    "content": "import os\nimport cv2\nimport copy\nimport argparse\nimport numpy as np\nfrom PIL import Image\nfrom tqdm import tqdm\nfrom reconstruction import Triangulation_RANSAC\nfrom reconstruction import Triangulation_LS\nfrom multiprocessing import Pool\n\nfrom scipy.optimize import least_squares\nfrom scipy.sparse import csr_matrix\nfrom utils import *\n\ndef convert_2d_to_3d(u, v, z, K):\n    v0 = K[1][2]\n    u0 = K[0][2]\n    fy = K[1][1]\n    fx = K[0][0]\n    x = (u - u0) * z / fx\n    y = (v - v0) * z / fy\n    return x, y, z\n\ndef PnP(x1s, x2s, m1_ids, K1, K2, DATABASE_IMAGE_FOLDER):\n\n    # extract 3d pts\n    pts3d_all = None\n    f2d = []  # keep only feature points with depth in the current frame\n    for k in range(len(x1s)):\n        d1 = Image.open(os.path.join(DATABASE_IMAGE_FOLDER, 'depth/depth_%06d.png' % m1_ids[k]))\n        d1 = np.asarray(d1).astype(np.float32) / 1000.0\n        x1 = np.array(x1s[k])\n        x2 = np.array(x2s[k])\n        T1 = np.loadtxt(os.path.join(DATABASE_IMAGE_FOLDER, 'pose/pose_%06d.txt' % m1_ids[k]))\n\n        f3d = []\n        for i, pt2d in enumerate(x1):\n            u, v = pt2d[0], pt2d[1]\n            z = d1[int(v), int(u)]\n            if z > 0:\n                xyz_curr = convert_2d_to_3d(u, v, z, K1)\n                f3d.append(xyz_curr)\n                f2d.append(x2[i, :])\n        f3d = (T1[:3, :3] @ np.array(f3d).transpose() + T1[:3, 3:]).transpose()\n        if pts3d_all is None:\n            pts3d_all = f3d\n        else:\n            pts3d_all = np.concatenate((pts3d_all, f3d), axis=0)\n\n    # the minimal number of points accepted by solvePnP is 4:\n    f3d = np.expand_dims(pts3d_all.astype(np.float32), axis=1)\n\n    f2d = np.expand_dims(\n        np.array(f2d).astype(np.float32), axis=1)\n\n\n    ret = cv2.solvePnPRansac(f3d,\n                             f2d,\n                             K2,\n                             distCoeffs=None,\n                             flags=cv2.SOLVEPNP_EPNP)\n    success = ret[0]\n    rotation_vector = ret[1]\n    translation_vector = ret[2]\n\n    f_2d = np.linalg.inv(K2) @ np.concatenate((f2d[:, 0],\n                                               np.ones((f2d.shape[0], 1))), axis=1).T\n\n    rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n    translation_vector = translation_vector.reshape(3)\n    proj = rotation_mat @ f3d[:, 0].T + translation_vector.reshape(3, -1)\n    proj = proj[:2] / proj[2:]\n    reproj_error = np.linalg.norm(f_2d[:2] - proj[:2], axis=0)\n    reproj_inliers = reproj_error < 5e-2\n    reproj_inliers = reproj_inliers.reshape(-1)\n\n    if success==0 or reproj_inliers.sum() < 10:\n        return 0, None, None, None\n    else:\n        ret = cv2.solvePnP(f3d[reproj_inliers].reshape(reproj_inliers.sum(), 1, 3),\n                           f2d[reproj_inliers].reshape(reproj_inliers.sum(), 1, 2),\n                           K2,\n                           distCoeffs=None,\n                           flags=cv2.SOLVEPNP_ITERATIVE)\n        success = ret[0]\n        rotation_vector = ret[1]\n        translation_vector = ret[2]\n\n        rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n        translation_vector = translation_vector.reshape(3)\n\n        Caz_T_Wmp = np.eye(4)\n        Caz_T_Wmp[:3, :3] = rotation_mat\n        Caz_T_Wmp[:3, 3] = translation_vector\n\n        rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n        translation_vector = translation_vector.reshape(3)\n        proj = rotation_mat @ f3d[:, 0].T + translation_vector.reshape(3, -1)\n        proj = proj[:2] / proj[2:]\n        reproj_error_refined = np.linalg.norm(f_2d[:2] - proj[:2], axis=0)\n        reproj_error_refined = reproj_error_refined < 1e-2\n        reproj_error_refined = reproj_error_refined.reshape(-1)\n\n        if reproj_error_refined.sum() < 0.8 * reproj_inliers.sum():\n            return 0, None, None, None\n        else:\n            return success, Caz_T_Wmp, f2d[reproj_error_refined, 0], f3d[reproj_error_refined, 0]\n\n\ndef valid_2Dfeatures(x):\n    return np.all(x>-1000, axis=1)\n\n\ndef valid_3Dfeatures(X):\n    return np.all(X != -1, axis=1)\n\n\ndef SetupPnPNL(P, X, track):\n    n_points = X.shape[0]\n    n_projs = np.sum(track[:, 0] != -1)\n    b = np.zeros((2 * n_projs,))\n\n    S_row = []\n    S_col = []\n\n    k = 0\n    point_index = []\n\n    for j in range(n_points):\n        if track[j, 0] != -1 and track[j, 1] != -1:\n            # S[2*k : 2*(k+1), 7*i : 7*(i+1)] = 1\n            rows, cols = np.meshgrid(np.linspace(2 * k, 2 * (k + 1), num=2, endpoint=False, dtype=int),\n                                     np.linspace(0, 7, num=7, endpoint=False, dtype=int))\n            rows = rows.reshape(-1)\n            cols = cols.reshape(-1)\n            S_row.append(rows)\n            S_col.append(cols)\n\n            b[2 * k: 2 * (k + 1)] = track[j, :]\n            point_index.append(j)\n            k += 1\n\n\n    point_index = np.asarray(point_index)\n\n    S_row = np.concatenate(S_row)\n    S_col = np.concatenate(S_col)\n    S_data = np.ones(S_row.shape[0], dtype=bool)\n    S = csr_matrix((S_data, (S_row, S_col)), shape=(2 * n_projs, 7 + 3 * n_points))\n\n    z = np.zeros((7 + 3 * n_points,))\n    R = P[:, :3]\n    t = P[:, 3]\n    q = Rotation2Quaternion(R)\n    p = np.concatenate([t, q])\n    z[0:7] = p\n    for i in range(n_points):\n        z[7 + 3 * i: 7 + 3 * (i + 1)] = X[i, :]\n\n    return z, b, S, point_index\n\n\ndef MeasureReprojectionSinglePose(z, b, point_index):\n\n    n_projs = point_index.shape[0]\n    f = np.zeros((2 * n_projs,))\n    p = z[0:7]\n    q = p[3:]\n    q_norm = np.sqrt(np.sum(q ** 2))\n    q = q / q_norm\n    R = Quaternion2Rotation(q)\n    t = p[:3]\n\n    for k, j in enumerate(point_index):\n        X = z[7 + 3 * j: 7 + 3 * (j + 1)]\n        # Remove measurement error of fixed poses\n        proj = R @ X + t\n        proj = proj / proj[2]\n        f[2 * k: 2 * (k + 1)] = proj[:2]\n\n    err = b - f\n\n    return err\n\n\ndef UpdatePose(z):\n\n    p = z[0:7]\n    q = p[3:]\n\n    q = q / np.linalg.norm(q)\n    R = Quaternion2Rotation(q)\n    t = p[:3]\n    P_new = np.hstack([R, t[:, np.newaxis]])\n\n    return P_new\n\n\ndef RunPnPNL(P, X, track):\n\n    z0, b, S, point_index = SetupPnPNL(P, X, track)\n\n    res = least_squares(\n        lambda x: MeasureReprojectionSinglePose(x, b, point_index),\n        z0,\n        jac_sparsity=S,\n        verbose=0,\n        ftol=1e-4,\n        max_nfev=50,\n        xtol=1e-5,\n        loss='huber',\n        f_scale=0.01\n    )\n    z = res.x\n\n    P_new = UpdatePose(z)\n\n    return P_new\n\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser(\n        description='Incremental SFM',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n    parser.add_argument(\n        '--ego_dataset_folder', type=str, default='',\n        help='Ego dataset folder')\n    parser.add_argument(\n        '--viz', action='store_true',\n        help='Reprojection visualization')\n\n    opt = parser.parse_args()\n\n    EGOLOC_FOLDER = opt.ego_dataset_folder\n    INPUT_DIR = os.path.join(EGOLOC_FOLDER, 'superglue_track')\n\n    track = np.load(os.path.join(INPUT_DIR, 'track.npy'),'r')\n    original_image_id_list = np.load(os.path.join(INPUT_DIR, 'original_image_id.npy'),'r')\n    print('original image id list: ', len(original_image_id_list))\n    print('track: ', track.shape)\n\n    num_images = track.shape[0]\n\n    # Load input images\n    OUTPUT_DIR = os.path.join(INPUT_DIR, 'poses')\n\n    if not os.path.exists(OUTPUT_DIR):\n        os.makedirs(OUTPUT_DIR)\n\n    ####\n    _P = np.load(os.path.join(EGOLOC_FOLDER, 'poses_reloc', 'camera_poses_pnp.npy'),'r')\n    P = _P.copy()\n    good_pose_pnp = np.load(os.path.join(EGOLOC_FOLDER, 'poses_reloc', 'good_pose_pnp.npy'),'r')\n    fixed_pose_parameters = copy.deepcopy(good_pose_pnp)\n\n    # Triangulate initial structure\n    valid_idx = np.sum(np.all(track>-1000, axis=2), axis=0) > 2\n    track = track[:, valid_idx]\n    print('tracks with length > 3: ', track.shape[1])\n    X = -np.ones((track.shape[1], 3))\n\n\n    # Enriching the structure by iterative triangulation and PnP\n    def triangulate_with_track_feat(inputs):\n        f_idx = inputs['f_idx']\n        track = inputs['track']\n        good_pose_pnp = inputs['good_pose_pnp']\n\n        cam_idx = (track[:, 0] > -1000) *\\\n                  (track[:, 1] > -1000) *\\\n                  good_pose_pnp\n        num_observed_poses = np.sum(cam_idx)\n        if num_observed_poses >= 3:\n            uv1 = np.concatenate((track[cam_idx], np.ones((num_observed_poses, 1))), axis=1)\n            _, inlier, outlier = Triangulation_RANSAC(uv1, P[cam_idx], threshold=5e-2)\n            if len(inlier) >= 3:\n                C1_X = Triangulation_LS(uv1[inlier], P[cam_idx][inlier])\n                return (f_idx, C1_X, cam_idx, outlier)\n            else:\n                return None\n        else:\n            return None\n\n    def refine_poses(inputs):\n        cam_idx = inputs['cam_idx']\n        good_pose_pnp = inputs['good_pose_pnp']\n        track = inputs['track']\n        X = inputs['X']\n\n        if good_pose_pnp[cam_idx] == 0:\n            feature_idx_in_cam_idx = valid_2Dfeatures(track) * valid_3Dfeatures(X)\n\n            if np.sum(feature_idx_in_cam_idx) < 20:\n                return None\n\n            pts3d = np.expand_dims(X[feature_idx_in_cam_idx], axis=1)\n            pts2d = np.expand_dims(track[feature_idx_in_cam_idx], axis=1)\n\n            # pnp ransac\n            ret = cv2.solvePnPRansac(pts3d,\n                                     pts2d,\n                                     np.eye(3),\n                                     distCoeffs=None,\n                                     flags=cv2.SOLVEPNP_EPNP)\n\n            success = ret[0]\n            rotation_vector = ret[1]\n            translation_vector = ret[2]\n            inliers_ids = ret[3]\n            rotation_mat, _ = cv2.Rodrigues(rotation_vector)\n            translation_vector = translation_vector.reshape(3)\n            P_init = np.zeros((3, 4))\n            P_init[:, :3] = rotation_mat\n            P_init[:, 3] = translation_vector\n\n            if success and len(inliers_ids) > 10:\n                P_new = RunPnPNL(P_init, X[feature_idx_in_cam_idx],\n                                 track[feature_idx_in_cam_idx])\n\n                f_2d = np.concatenate((track[feature_idx_in_cam_idx],\n                                       np.ones((feature_idx_in_cam_idx.sum(), 1))), axis=1).T\n\n                proj = P_new[:, :3] @ X[feature_idx_in_cam_idx].T + P_new[:, 3:]\n                proj = proj[:2] / proj[2:]\n\n                reproj_error = np.linalg.norm(f_2d[:2] - proj[:2], axis=0)\n                reproj_inliers = reproj_error < 5e-2\n\n                if np.sum(reproj_inliers) > 10:\n                    return (cam_idx, P_new)\n                else:\n                    return None\n            else:\n                return None\n        else:\n            return None\n\n    prev_triangulated_features = 0\n    prev_valid_poses = 0\n    for trial in tqdm(range(20)):\n        inputs = [\n            {'f_idx':f_idx,\n             'track': track[:,f_idx,:],\n             'good_pose_pnp': good_pose_pnp,\n            } for f_idx in range(track.shape[1])\n        ]\n\n        pool = Pool(16)\n        results = list(\n                       tqdm(\n                           pool.imap_unordered(\n                               triangulate_with_track_feat, inputs),\n                               total=len(inputs)\n                       )\n                   )\n\n        valid_pose_triangulation_ransac = copy.deepcopy(good_pose_pnp)\n        for r in results:\n            if r is None: continue\n            f_idx, C1_X, cam_idx, outlier = r\n            X[f_idx] = C1_X\n            valid_pose_triangulation_ransac[cam_idx][outlier] = False\n\n        print('Triangulated features ', np.sum(valid_3Dfeatures(X)))\n        print('good poses/total poses ', np.sum(valid_pose_triangulation_ransac), '/', good_pose_pnp.shape[0])\n        good_pose_pnp = copy.deepcopy(valid_pose_triangulation_ransac)\n\n        ## Refine/Re-estimate bad poses with PnP\n        inputs = [\n            {'cam_idx':cam_idx,\n             'good_pose_pnp':good_pose_pnp,\n             'track':track[cam_idx,:,:],\n             'X':X.copy()\n            } for cam_idx in range(num_images)\n        ]\n\n        pool = Pool(16)\n        results = list(\n                       tqdm(\n                           pool.imap_unordered(\n                               refine_poses, inputs),\n                               total=len(inputs)\n                       )\n                   )\n        for r in results:\n            if r is None: continue\n            cam_idx, P_new = r\n            P[cam_idx] = P_new\n            good_pose_pnp[cam_idx] = 1\n\n        print('good poses/total poses ', np.sum(good_pose_pnp), '/', good_pose_pnp.shape[0])\n        if np.sum(good_pose_pnp) > 0:\n            WritePosesToPly(P[good_pose_pnp], '%s/cameras_pnp_triangulate_iter_%d.ply' % (OUTPUT_DIR, trial))\n\n        if np.sum(good_pose_pnp) == good_pose_pnp.shape[0]: break\n\n        if prev_valid_poses == np.sum(good_pose_pnp):\n            if prev_triangulated_features==np.sum(valid_3Dfeatures(X)):\n                break\n\n        prev_valid_poses=np.sum(good_pose_pnp)\n        prev_triangulated_features=np.sum(valid_3Dfeatures(X))\n\n\n    ## Return all poses for BA\n    np.save('%s/cameras_pnp_triangulation.npy' % OUTPUT_DIR, P)\n    np.save('%s/features_pnp_triangulation.npy' % OUTPUT_DIR, X)\n    np.save('%s/track_pnp_triangulation.npy' % OUTPUT_DIR, track)\n    np.save('%s/original_image.npy' % OUTPUT_DIR, original_image_id_list)\n    np.save('%s/fixed_poses_ids_pnp_triangulation.npy' % OUTPUT_DIR, fixed_pose_parameters)\n    np.save('%s/good_poses_ids_pnp_triangulation.npy' % OUTPUT_DIR, good_pose_pnp)\n    if np.sum(good_pose_pnp) > 0:\n        WritePosesToPly(P[good_pose_pnp], '%s/cameras_pnp_triangulation.ply' % OUTPUT_DIR)\n\n\n    #### Check reprojection error\n    P = np.load('%s/cameras_pnp_triangulation.npy' % OUTPUT_DIR)\n    X = np.load('%s/features_pnp_triangulation.npy' % OUTPUT_DIR)\n    track = np.load('%s/track_pnp_triangulation.npy' % OUTPUT_DIR)\n    original_image_id_list = np.load('%s/original_image.npy' % OUTPUT_DIR)\n    good_pose_pnp = np.load('%s/good_poses_ids_pnp_triangulation.npy' % OUTPUT_DIR)\n\n    print('good pose reproj ', good_pose_pnp.sum())\n    good_pose_reprojection = copy.deepcopy(good_pose_pnp)\n    for i in tqdm(range(num_images)):\n        if good_pose_reprojection[i]:\n            feature_idx_in_cam_idx = valid_2Dfeatures(track[i]) * valid_3Dfeatures(X)\n            reliable_tracks = np.sum((track[:, feature_idx_in_cam_idx, 0] >-1000) *\n                                     (track[:, feature_idx_in_cam_idx, 1] >-1000), axis=0) >= 3\n            if reliable_tracks.sum() < 3:\n                good_pose_reprojection[i] = False\n            else:\n                f_2d = np.concatenate((track[i, feature_idx_in_cam_idx][reliable_tracks],\n                                        np.ones((reliable_tracks.sum(), 1))), axis=1).T\n\n                proj = P[i, :, :3] @ X[feature_idx_in_cam_idx][reliable_tracks].T + P[i, :, 3:]\n                camera_frontal = proj[2] > 0\n                proj = proj[:2] / proj[2:]\n\n                reproj_error = np.linalg.norm(f_2d[:2] - proj[:2], axis=0)\n                reproj_inliers = (reproj_error < 5e-2) * (camera_frontal)\n\n                if reproj_inliers.sum() < 10:\n                    good_pose_reprojection[i] = False\n\n    np.save('%s/good_pose_reprojection.npy' % OUTPUT_DIR, good_pose_reprojection)\n    if np.sum(good_pose_reprojection) > 0:\n        WritePosesToPly(P[good_pose_reprojection], '%s/cameras_poses_final.ply' % OUTPUT_DIR)\n    print('good pose reproj ', good_pose_reprojection.sum())\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/superglue_tracker.py",
    "content": "import os\nimport sys\nimport cv2\nimport json\nimport fnmatch\nimport argparse\nimport numpy as np\nfrom tqdm import tqdm\nfrom scipy.spatial import cKDTree\n\nimport torch\nfrom torch.utils.data.dataset import Dataset\n\nfrom utils import *\n\nsys.path.append('./SuperGlueMatching')\nfrom models.utils import read_image\nfrom models.superpoint import SuperPoint\nfrom models.superglue import SuperGlue\n\n\n\ndef SuperGlueMatcher(model,\n                     superpoints_0,\n                     superpoints_1):\n\n    data = {\n        'descriptors0': superpoints_0['descriptors'][0].unsqueeze(0).cuda(),\n        'descriptors1': superpoints_1['descriptors'][0].unsqueeze(0).cuda(),\n        'keypoints0': superpoints_0['keypoints'][0].unsqueeze(0).cuda(),\n        'keypoints1': superpoints_1['keypoints'][0].unsqueeze(0).cuda(),\n        'scores0': superpoints_0['scores'][0].unsqueeze(0).cuda(),\n        'scores1': superpoints_1['scores'][0].unsqueeze(0).cuda(),\n        'image0': torch.zeros((1,1,480,640)),\n        'image1': torch.zeros((1,1,480,640)),\n    }\n    match = model(data)\n\n    confidence = match['matching_scores0'][0].detach().cpu().numpy()\n    matches = match['matches0'][0].cpu().numpy()\n    kpts0 = superpoints_0['keypoints'][0].cpu().numpy()\n    kpts1 = superpoints_1['keypoints'][0].cpu().numpy()\n\n    valid = matches > -1\n\n    mkpts0 = kpts0[valid]\n    mkpts1 = kpts1[matches[valid]]\n\n    ind0 = np.nonzero(valid)[0]\n    ind1 = matches[valid]\n\n    confidence = confidence[valid]\n\n    return mkpts0, mkpts1, ind0, ind1, confidence\n\n\n\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(\n        description='Extract and track keypoints throughout the video using SuperGlue.',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n\n    parser.add_argument(\n        '--input_pairs', type=str, default='assets/scannet_sample_pairs_with_gt.txt',\n        help='Path to the list of image pairs')\n    parser.add_argument(\n        '--input_dir', type=str, default='assets/scannet_sample_images/',\n        help='Path to the directory that contains the images')\n    parser.add_argument(\n        '--output_dir', type=str, default='dump_match_pairs/',\n        help='Path to the directory in which the .npz results and optionally,'\n             'the visualization images are written')\n\n    parser.add_argument(\n        '--max_length', type=int, default=-1,\n        help='Maximum number of pairs to evaluate')\n    parser.add_argument(\n        '--resize', type=int, nargs='+', default=[640, 480],\n        help='Resize the input image before running inference. If two numbers, '\n             'resize to the exact dimensions, if one number, resize the max '\n             'dimension, if -1, do not resize')\n    parser.add_argument(\n        '--resize_float', action='store_true',\n        help='Resize the image after casting uint8 to float')\n\n    parser.add_argument(\n        '--superglue', choices={'indoor', 'outdoor'}, default='indoor',\n        help='SuperGlue weights')\n    parser.add_argument(\n        '--max_keypoints', type=int, default=1024,\n        help='Maximum number of keypoints detected by Superpoint'\n             ' (\\'-1\\' keeps all keypoints)')\n    parser.add_argument(\n        '--keypoint_threshold', type=float, default=0.005,\n        help='SuperPoint keypoint detector confidence threshold')\n    parser.add_argument(\n        '--nms_radius', type=int, default=4,\n        help='SuperPoint Non Maximum Suppression (NMS) radius'\n             ' (Must be positive)')\n    parser.add_argument(\n        '--sinkhorn_iterations', type=int, default=20,\n        help='Number of Sinkhorn iterations performed by SuperGlue')\n    parser.add_argument(\n        '--match_threshold', type=float, default=0.2,\n        help='SuperGlue match threshold')\n\n    parser.add_argument(\n        '--extract_descriptor', action='store_true')\n    parser.add_argument(\n        '--ego_dataset_folder', type=str,\n        help='Ego dataset folder')\n\n    opt = parser.parse_args()\n    print(opt)\n\n    config = {\n        'superpoint': {\n            'nms_radius': opt.nms_radius,\n            'keypoint_threshold': opt.keypoint_threshold,\n            'max_keypoints': opt.max_keypoints\n        },\n        'superglue': {\n            'weights': opt.superglue,\n            'sinkhorn_iterations': opt.sinkhorn_iterations,\n            'match_threshold': opt.match_threshold,\n        }\n    }\n\n    superpoint = SuperPoint(config.get('superpoint', {})).cuda()\n    superpoint = superpoint.eval()\n\n    superglue = SuperGlue(config.get('superglue', {})).cuda()\n    superglue = superglue.eval()\n\n    ROOT_DIR = opt.ego_dataset_folder\n    OUTPUT_DIR = 'superglue_track'\n\n    if not os.path.exists(os.path.join(ROOT_DIR, OUTPUT_DIR)):\n        os.mkdir(os.path.join(ROOT_DIR, OUTPUT_DIR))\n\n    # EXTRACT KPTS AND DESCRIPTORS, RUN ONCE!\n    if opt.extract_descriptor:\n        loc_list = []\n        des_list = []\n        superpoints_list = []\n\n        all_images = np.arange(0, len(fnmatch.filter(os.listdir(os.path.join(ROOT_DIR, 'color')), '*.jpg')), step=1)\n\n        for index in tqdm(all_images):\n            color_info = os.path.join(ROOT_DIR, 'color/color_%07d.jpg' % index)\n            _, gray_tensor, scale = read_image(color_info, 'cpu', resize=[640, 480], rotation=0, resize_float=False)\n            gray_tensor = gray_tensor.reshape(1, 1, 480, 640)\n            input_batch = {'image': gray_tensor.cuda()}\n\n            with torch.no_grad():\n                output = superpoint(input_batch)\n\n            output_ = {k: [output[k][i].detach().cpu()\\\n                           for i in range(len(output[k]))]\\\n                       for k in output}\n\n            output_['scale']=scale\n\n            superpoints_list.append(output_)\n\n            output_np = {k: [output[k][i].detach().cpu().numpy()\\\n                             for i in range(len(output[k]))]\\\n                         for k in output}\n\n            des = np.asarray(output_np['descriptors'][0])\n            loc = np.asarray(\n                [output_np['keypoints'][0][j] * scale\\\n                 for j in range(output_np['keypoints'][0].shape[0])\n                ]\n            )\n\n            loc_list.append(loc)\n            des_list.append(des.transpose())\n\n        torch.save(superpoints_list, '%s/superpoints.pkl' % os.path.join(ROOT_DIR, OUTPUT_DIR))\n        np.savez('%s/keypoints.npz' % os.path.join(ROOT_DIR, OUTPUT_DIR), loc_list)\n        np.savez('%s/descriptors.npz' % os.path.join(ROOT_DIR, OUTPUT_DIR), des_list)\n\n    else:\n        # -- load superpoint output\n        superpoint_filename=os.path.join(ROOT_DIR, OUTPUT_DIR, 'superpoints.pkl')\n        assert os.path.isfile(superpoint_filename)\n        superpoints_list=torch.load(superpoint_filename)\n\n    superglue_conf_thresh=0.9\n    num_images = len(superpoints_list)\n    print('num image: ', num_images)\n    K = np.loadtxt('%s/intrinsics.txt' % ROOT_DIR)\n\n    original_image_id_list = np.arange(0,\n                                       len(fnmatch.filter(os.listdir(opt.ego_dataset_folder + '/color/'),\n                                                          '*.jpg')),\n                                       step=1)\n\n    assert num_images == len(original_image_id_list)\n\n    def get_tracks_parallel(inputs):\n        i = inputs['i']\n        superpoints_list = inputs['superpoints_list']\n        K = inputs['K']\n\n        loc = superpoints_list[i]['keypoints'][0].numpy()\n\n        num_points = loc.shape[0]\n        num_images = len(superpoints_list)\n\n        track_i = {}\n        for j in range(i + 1, min(num_images, i + 5)):\n            # Match features between the i-th and j-th images\n            x1, x2, ind1, ind2, conf = SuperGlueMatcher(\n                superglue,\n                superpoints_list[i],\n                superpoints_list[j]\n            )\n\n            m = conf > superglue_conf_thresh\n            x1 = x1[m]\n            x2 = x2[m]\n            ind1 = ind1[m].astype(int)\n            ind2 = ind2[m].astype(int)\n\n            num_points_j = superpoints_list[j]['keypoints'][0].shape[0]\n            track_i[j] = -np.ones(num_points_j, dtype=int)\n            track_i[j][ind2] = ind1\n\n        return (i, track_i)\n\n    inputs = [{'i':i,\n               'superpoints_list':superpoints_list.copy(),\n               'K':K.copy()} for i in range(num_images - 1)]\n\n    # build track dictionary\n    track_dict = {}\n    for x in tqdm(inputs):\n        r = get_tracks_parallel(x)\n\n        if r is None: continue\n\n        i, track_i = r\n        # merge the current track dict with the main one\n        for j, v in track_i.items():\n            if j not in track_dict:\n                track_dict[j] = {}\n\n            assert i not in track_dict[j]\n\n            track_dict[j][i] = v.tolist()\n\n    json.dump(track_dict,\n              open(os.path.join(\n                                ROOT_DIR,\n                                OUTPUT_DIR,\n                                'track_dict.json'\n                                ),\n                'w')\n    )\n\n    # build track matrix\n    # NOTE: This will potentially generate duplicates\n    # this is just redondant information for the 3D Triangulation\n    def fetch_graph(g, i, f_idx, start_i):\n        # prevent from matching features more than 20frames apart\n        if (start_i-i) > 20:\n            return []\n        if i not in g:\n            return []\n        output = []\n        for j, v in g[i].items():\n            if v[f_idx] > -1:\n                output.append((i, f_idx))\n                for x in fetch_graph(g, j, v[f_idx], start_i):\n                    output.append(x)\n                # only one match per image for each feature\n                break\n        return output\n\n    inputs = [\n        {'i':i,\n         'track_dict': track_dict.copy(),\n         'superpoints_list': superpoints_list.copy(),\n         'K': K.copy(),\n        } for i in range(num_images, 0, -1)\n    ]\n\n    track = []\n    for x in tqdm(inputs):\n        i = x['i']\n        track_dict = x['track_dict']\n        superpoints_list = x['superpoints_list']\n        K = x['K']\n        if i in track_dict:\n            scale = superpoints_list[i]['scale']\n            for f_idx in range(superpoints_list[i]['keypoints'][0].shape[0]):\n\n                tmp_track = -np.ones((num_images,2))\n                mask = np.zeros(num_images)\n                tracklets = fetch_graph(track_dict, i, f_idx, i)\n\n                if not tracklets: continue\n\n                for tr in tracklets:\n\n                    if not tr: continue\n\n                    k, tmp_f_idx = tr\n\n                    tmp_track[k,:]=superpoints_list[k]['keypoints'][0][tmp_f_idx].cpu().numpy().copy() * scale\n                    mask[k] = 1\n\n                count = np.sum(mask)\n                if count > 3:\n                    mask = mask.astype(bool)\n\n                    # normalize indices\n                    tmp_track_n = np.hstack([tmp_track,\n                                             np.ones((tmp_track.shape[0], 1))]) @ np.linalg.inv(K).T\n                    tmp_track_n = tmp_track_n[:, :2]\n                    tmp_track_n[~mask] = -1000\n\n                    tmp_track_n = np.expand_dims(tmp_track_n, axis=1)\n\n                    track.append(tmp_track_n)\n\n    track = np.concatenate(track, axis=1)\n\n    np.save('%s/track.npy' % os.path.join(ROOT_DIR, OUTPUT_DIR), track)\n    np.save('%s/original_image_id.npy' % os.path.join(ROOT_DIR, OUTPUT_DIR), original_image_id_list)\n    print('total number of feature: ', track.shape[1])\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/undistort_image_api.py",
    "content": "from PIL import Image\nimport torch\nfrom torchvision import transforms\nimport numpy as np\nimport os\nimport argparse\nimport fnmatch\nfrom tqdm import tqdm\nfrom utils import *\n\nto_tensor = transforms.ToTensor()\n\nparser = argparse.ArgumentParser(\n        description='Undistort image',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\nparser.add_argument(\n    '--ego_dataset_folder', type=str, default='',\n    help='Azure dataset folder')\nparser.add_argument(\n    '--crop_x', type=int, default=0,\n    help='Crop image x dim -crop_x : crop_x')\nparser.add_argument(\n    '--crop_y', type=int, default=0,\n    help='Crop image y dim -crop_y : crop_y')\n\n\nopt = parser.parse_args()\n\nROOT_FOLDER = os.path.join(opt.ego_dataset_folder, 'color_distorted')\nOUT_FOLDER = os.path.join(opt.ego_dataset_folder, 'color')\ncamera_intrinsics = np.loadtxt(os.path.join(opt.ego_dataset_folder, 'fisheye_intrinsics.txt'))\nW = int(camera_intrinsics[0])\nH = int(camera_intrinsics[1])\ncx = camera_intrinsics[2]\ncy = camera_intrinsics[3]\nf = camera_intrinsics[4]\nk1 = camera_intrinsics[5]\nk2 = camera_intrinsics[6]\n\nif not os.path.exists(OUT_FOLDER):\n    os.makedirs(OUT_FOLDER)\n\nfor img_idx in tqdm(range(len(fnmatch.filter(os.listdir(ROOT_FOLDER), '*.jpg')))):\n    image = Image.open(os.path.join(ROOT_FOLDER, 'color_%07d.jpg' % img_idx))\n    image = to_tensor(image)\n    image = image.reshape(1, 3, H, W)\n\n    [YY, XX] = torch.meshgrid(torch.arange(0, H), torch.arange(0, W))\n\n    ## Radial Fisheye\n    UU = 2.5 / f * (XX - cx)\n    VV = 2.5 / f * (YY - cy)\n    r = torch.sqrt(UU * UU + VV * VV)\n    valid_r_mask = (r > 1e-4)\n\n    du = torch.zeros_like(r)\n    dv = torch.zeros_like(r)\n    tt = torch.atan(r[valid_r_mask])\n    tt2 = tt * tt\n    tt4 = tt2 * tt2\n    ttd = tt * (1.0 + k1 * tt2 + k2 * tt4)\n    du[valid_r_mask] = UU[valid_r_mask] * (ttd / r[valid_r_mask] - 1)\n    dv[valid_r_mask] = VV[valid_r_mask] * (ttd / r[valid_r_mask] - 1)\n\n    UU_dist = UU + du\n    VV_dist = VV + dv\n\n    XX_dist = f * UU_dist + cx\n    YY_dist = f * VV_dist + cy\n\n\n    ### Sampling descriptor\n    grid_sampler = torch.zeros((1, H, W, 2))\n    grid_sampler[0, :, :, 0] = 2.0 / W * (XX_dist - cx)\n    grid_sampler[0, :, :, 1] = 2.0 / H * (YY_dist - cy)\n\n    undistorted_image = torch.nn.functional.grid_sample(image, \n                                                        grid_sampler, \n                                                        mode='bilinear', \n                                                        padding_mode='zeros',\n                                                        align_corners=True)\n    undistorted_image = 255. * torch.permute(undistorted_image[0, :, opt.crop_y:-opt.crop_y, opt.crop_x:-opt.crop_x], (1, 2, 0)).cpu().numpy()\n\n    undistorted_image = Image.fromarray(undistorted_image.astype(np.uint8))\n    undistorted_image.save(os.path.join(OUT_FOLDER, 'color_%07d.jpg' % img_idx))\n\nK = np.array([[f/2.5, 0., (W-2.*opt.crop_x)/2. - 0.5],\n              [0., f/2.5, (H-2.*opt.crop_y)/2. - 0.5],\n              [0., 0., 1.]])\n\nnp.savetxt('%s/intrinsics.txt' % opt.ego_dataset_folder, K)\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/utils.py",
    "content": "import numpy as np\nimport copy\nimport cv2\nimport os\nimport cv2\nimport numpy as np\nimport torch\nimport fnmatch\nfrom torch.utils.data.dataset import Dataset\nfrom SuperGlueMatching.models.utils import read_image\n\nimport open3d as o3d\n\ndef Vec2Skew(v):\n    skew = np.asarray([\n        [0, -v[2], v[1]],\n        [v[2], 0, -v[0]],\n        [-v[1], v[0], 0]\n    ])\n    return skew\n\n\ndef Rotation2Quaternion(R):\n    \"\"\"\n    Convert a rotation matrix to quaternion\n    \n    Parameters\n    ----------\n    R : ndarray of shape (3, 3)\n        Rotation matrix\n\n    Returns\n    -------\n    q : ndarray of shape (4,)\n        The unit quaternion (w, x, y, z)\n    \"\"\"\n    q = np.empty([4,])\n\n    tr = np.trace(R)\n    if tr < 0:\n        i = R.diagonal().argmax()\n        j = (i + 1) % 3\n        k = (j + 1) % 3\n\n        q[i] = np.sqrt(1 - tr + 2 * R[i, i]) / 2\n        q[j] = (R[j, i] + R[i, j]) / (4 * q[i])\n        q[k] = (R[k, i] + R[i, k]) / (4 * q[i])\n        q[3] = (R[k, j] - R[j, k]) / (4 * q[i])\n    else:\n        q[3] = np.sqrt(1 + tr) / 2\n        q[0] = (R[2, 1] - R[1, 2]) / (4 * q[3])\n        q[1] = (R[0, 2] - R[2, 0]) / (4 * q[3])\n        q[2] = (R[1, 0] - R[0, 1]) / (4 * q[3])\n\n    q /= np.linalg.norm(q)\n    # Rearrange (x, y, z, w) to (w, x, y, z)\n    q = q[[3, 0, 1, 2]]\n\n    return q\n\n\ndef Quaternion2Rotation(q):\n    \"\"\"\n    Convert a quaternion to rotation matrix\n    \n    Parameters\n    ----------\n    q : ndarray of shape (4,)\n        Unit quaternion (w, x, y, z)\n\n    Returns\n    -------\n    R : ndarray of shape (3, 3)\n        The rotation matrix\n    \"\"\"\n    w = q[0]\n    x = q[1]\n    y = q[2]\n    z = q[3]\n\n    R = np.empty([3, 3])\n    R[0, 0] = 1 - 2 * y**2 - 2 * z**2\n    R[0, 1] = 2 * (x*y - z*w)\n    R[0, 2] = 2 * (x*z + y*w)\n\n    R[1, 0] = 2 * (x*y + z*w)\n    R[1, 1] = 1 - 2 * x**2 - 2 * z**2\n    R[1, 2] = 2 * (y*z - x*w)\n\n    R[2, 0] = 2 * (x*z - y*w)\n    R[2, 1] = 2 * (y*z + x*w)\n    R[2, 2] = 1 - 2 * x**2 - 2 * y**2\n\n    return R\n\ndef WritePosesToPly(P, output_path):\n    # Save the camera coordinate frames as meshes for visualization\n    m_cam = None\n    for j in range(P.shape[0]):\n        # R_d = P[j, :, :3]\n        # C_d = -R_d.T @ P[j, :, 3]\n        T = np.eye(4)\n        T[:3, :3] = P[j, :, :3].transpose()\n        T[:3, 3] = -P[j, :, :3].transpose() @ P[j, :, 3]\n        m = o3d.geometry.TriangleMesh.create_coordinate_frame(size=0.4)\n        m.transform(T)\n        if m_cam is None:\n            m_cam = m\n        else:\n            m_cam += m\n    o3d.io.write_triangle_mesh(output_path, m_cam)\n\n\ndef skewsymm(x):\n    S = np.zeros((x.shape[0], 3, 3))\n    S[:, 0, 1] = -x[:, 2]\n    S[:, 1, 0] = x[:, 2]\n    S[:, 0, 2] = x[:, 1]\n    S[:, 2, 0] = -x[:, 1]\n    S[:, 1, 2] = -x[:, 0]\n    S[:, 2, 1] = x[:, 0]\n\n    return S\n\n\ndef VisualizeTriangulationMultiPoses(X, uv1, P, Im, K):\n    out_img = []\n    for i in range(P.shape[0]):\n        kp_img = np.zeros_like(Im[i])\n        # kpt = [cv2.KeyPoint(uv1[i, 0], uv1[i, 1], 20)]\n        # cv2.drawKeypoints(Im[i], kpt, kp_img, color=(0, 255, 0), flags=cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)\n        kp_img = cv2.drawMarker(Im[i], (int(uv1[i, 0]), int(uv1[i, 1])),\n                       color=(0, 255, 0), markerType=cv2.MARKER_SQUARE, thickness=5)\n\n        reproj = K @ P[i] @ np.hstack((X, np.array([1.0])))\n        reproj = reproj / reproj[2]\n        # reproj = [cv2.KeyPoint(reproj[0], reproj[1], 10)]\n        # cv2.drawKeypoints(kp_img, reproj, kp_img, color=(0, 0, 255), flags=cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)\n        kp_img = cv2.drawMarker(kp_img, (int(reproj[0]), int(reproj[1])),\n                       color=(0, 0, 255), markerType=cv2.MARKER_CROSS, thickness=5)\n        out_img.append(kp_img)\n\n    out_img = np.concatenate(out_img, axis=1)\n    small_out_image = cv2.resize(out_img, (out_img.shape[1] // 2, out_img.shape[0] // 2))\n    cv2.imshow('kpts', small_out_image)\n    cv2.waitKey(0)\n\n\ndef VisualizeMatches(im1_file, kp1, im2_file, kp2):\n    im1 = cv2.imread(im1_file)\n    im2 = cv2.imread(im2_file)\n\n    cv_kp1 = [cv2.KeyPoint(x=kp1[i][0], y=kp1[i][1], _size=5) for i in range(len(kp1))]\n    cv_kp2 = [cv2.KeyPoint(x=kp2[i][0], y=kp2[i][1], _size=5) for i in range(len(kp1))]\n    matches = [cv2.DMatch(i, i, 0) for i in range(len(kp1))]\n\n    out_img = np.zeros_like(im1, dtype=np.uint8)\n    out_img = cv2.drawMatches(im1, cv_kp1, im2, cv_kp2, matches, None)\n    cv2.imshow('matches', out_img)\n    cv2.waitKey(0)\n\n\ndef VisualizeTrack(track, Im_input, K):\n    Im = copy.deepcopy(Im_input)\n    fx = K[0, 0]\n    fy = K[1, 1]\n    cx = K[0, 2]\n    cy = K[1, 2]\n    out_img = []\n    trackx = track[:, 0] * fx + cx\n    tracky = track[:, 1] * fy + cy\n\n    for i in range(Im.shape[0]):\n        if track[i, 0] == -1 and track[i, 1] == -1:\n            out_img.append(Im[i])\n        else:\n            kp_img = cv2.drawMarker(Im[i], (int(trackx[i]), int(tracky[i])),\n                                    color=(0, 255, 0), markerType=cv2.MARKER_SQUARE, thickness=5)\n\n            # kp_img = cv2.drawMarker(kp_img, (int(reproj[0]), int(reproj[1])),\n            #                         color=(0, 0, 255), markerType=cv2.MARKER_CROSS, thickness=5)\n            out_img.append(kp_img)\n\n    out_img = np.concatenate(out_img, axis=1)\n    small_out_image = cv2.resize(out_img, (out_img.shape[1] // 4, out_img.shape[0] // 4))\n    cv2.imshow('kpts', small_out_image)\n    cv2.waitKey(0)\n\n\ndef VisualizeReprojectionError(P, X, track, K, Im):\n    uv = track @ K.T\n    kp_img = copy.deepcopy(Im)\n    for i in range(uv.shape[0]):\n        kp_img = cv2.drawMarker(kp_img, (int(uv[i, 0]), int(uv[i, 1])),\n                       color=(0, 255, 0), markerType=cv2.MARKER_SQUARE, thickness=5)\n\n    reproj = K @ P @ np.concatenate((X.T, np.ones((1, uv.shape[0]))), axis=0)\n    reproj = reproj[:, reproj[2] > 0.3]\n    reproj = reproj / reproj[2]\n    for i in range(reproj.shape[1]):\n        kp_img = cv2.drawMarker(kp_img, (int(reproj[0, i]), int(reproj[1, i])),\n                       color=(0, 0, 255), markerType=cv2.MARKER_CROSS, thickness=5)\n    cv2.imshow('kpts', kp_img)\n    cv2.waitKey(0)\n\n\ndef VisualizeBadPoseImage(Im):\n    out_img = []\n    num_images, h, w, _ = Im.shape\n    num_image_per_row = 8\n    rows = num_images // num_image_per_row\n    left_over = num_images - num_image_per_row*rows\n    for i in range(num_images//num_image_per_row):\n        image_row = np.transpose(Im[num_image_per_row*i:num_image_per_row*(i+1)], (1, 0, 2, 3))\n        image_row = image_row.reshape((h, num_image_per_row*w, 3))\n        out_img.append(image_row)\n\n    out_img = np.concatenate(out_img, axis=0)\n    small_out_image = cv2.resize(out_img, (out_img.shape[1] // 8, out_img.shape[0] // 8))\n    cv2.imshow('bad pose images', small_out_image)\n    cv2.waitKey(0)\n\n## Below is for the visual database API\n\ndef convert_2d_to_3d(u, v, z, K):\n    v0 = K[1][2]\n    u0 = K[0][2]\n    fy = K[1][1]\n    fx = K[0][0]\n    x = (u - u0) * z / fx\n    y = (v - v0) * z / fy\n    return x, y, z\n\n\nclass MatterportDataset(Dataset):\n    def __init__(self, dataset_folder='walterlib', resize=[640, 480]):\n        super(MatterportDataset, self).__init__()\n        self.dataset_folder = dataset_folder\n        self.data_path = os.path.join(self.dataset_folder, 'color')\n        self.data_info = sorted(os.listdir(self.data_path))\n        # self.data_info = self.data_info[:10]\n        self.data_len = len(self.data_info)\n        self.resize = resize\n\n    def __getitem__(self, index):\n        color_info = os.path.join(self.data_path, self.data_info[index])\n        # print(color_info)\n        _, gray_tensor, _ = read_image(color_info, 'cpu', resize=self.resize, rotation=0, resize_float=False)\n        gray_tensor = gray_tensor.reshape(1, 480, 640)\n\n        output = {'image': gray_tensor, 'image_index': int(color_info[-10:-4])}\n\n        return output\n\n    def __len__(self):\n        return self.data_len\n\n\nclass AzureKinect(Dataset):\n    def __init__(self, dataset_folder='walter_basement_03', resize=[640, 480],\n                 start_idx=0, end_idx=10000, skip_every_n_image=1):\n        super(AzureKinect, self).__init__()\n        self.dataset_folder = dataset_folder\n        self.data_path = os.path.join(self.dataset_folder, 'color')\n        self.data_info = sorted(fnmatch.filter(os.listdir(self.data_path), '*.jpg'))\n        self.data_info = self.data_info[start_idx:end_idx:skip_every_n_image]\n        self.start_idx = start_idx\n        self.data_len = len(self.data_info)\n        self.resize = resize\n\n    def __getitem__(self, index):\n        # color_info = os.path.join(self.data_path, 'color_%07d.jpg' % (self.start_idx + index))\n        color_info = os.path.join(self.data_path, self.data_info[index])\n        # print(color_info)\n        _, gray_tensor, _ = read_image(color_info, 'cpu', resize=self.resize, rotation=0, resize_float=False)\n        gray_tensor = gray_tensor.reshape(1, 480, 640)\n\n        output = {'image': gray_tensor, 'image_index': int(color_info[-11:-4])}\n\n        return output\n\n    def __len__(self):\n        return self.data_len\n"
  },
  {
    "path": "VQ3D/camera_pose_estimation/visual_database_api.py",
    "content": "import torch\nimport cv2\nimport fnmatch\n\nfrom utils import *\nimport argparse\nimport random\nimport numpy as np\nimport matplotlib.cm as cm\n\nfrom torch.utils.data.dataset import Dataset\nimport pickle\nimport numpy as np\nfrom PIL import Image\nimport os\nfrom torch.utils.data import DataLoader\n\nfrom SuperGlueMatching.models.utils import read_image\nfrom SuperGlueMatching.models.superpoint import SuperPoint\nfrom sklearn.cluster import KMeans\nfrom sklearn.neighbors import KDTree\nimport pickle\nfrom tqdm import tqdm\n\n\nparser = argparse.ArgumentParser(\n        description='Image pair matching and pose evaluation with SuperGlue',\n        formatter_class=argparse.ArgumentDefaultsHelpFormatter)\nparser.add_argument(\n    '--matterport_descriptors_folder', type=str, default='',\n    help='Matterport data set')\nparser.add_argument(\n    '--matterport_output_folder', type=str, default='',\n    help='Matterport data set')\nparser.add_argument(\n    '--ego_dataset_folder', type=str, default='',\n    help='Ego data set')\n\nopt = parser.parse_args()\n\nconfig = {\n    'superpoint': {\n        'nms_radius': 4,\n        'keypoint_threshold': 0.005,\n        'max_keypoints': 1024\n    }\n}\n\nIMAGE_DESC_FOLDER = opt.matterport_descriptors_folder\nOUTPUT_FOLDER = opt.matterport_output_folder\n\nassert (os.path.exists(IMAGE_DESC_FOLDER))\n\nif not os.path.exists(OUTPUT_FOLDER):\n    os.makedirs(OUTPUT_FOLDER)\n\nK_mp = np.array([[700., 0., 960. - 0.5],\n                 [0., 700., 540. - 0.5],\n                 [0., 0., 1.]])\n\nsuperpoint = SuperPoint(config.get('superpoint', {})).cuda()\nsuperpoint = superpoint.eval()\n\n############# STEP 0: CONSTRUCT DESCRIPTOR CENTERS\nprint('Compute descriptor centroids with kmeans++ ... ')\n\nif os.path.exists(os.path.join(OUTPUT_FOLDER, 'data_descriptors_centers.npy')):\n    descriptors_cluster_centers = np.load(os.path.join(OUTPUT_FOLDER,\n                                                       'data_descriptors_centers.npy'),'r')\nelse:\n    total_removal = 0\n    all_descriptors = None\n    \n    with torch.no_grad():\n        # all the image descriptors we got to build the visual database\n        matterport_filelist = sorted(fnmatch.filter(os.listdir(IMAGE_DESC_FOLDER), 'image_*_descriptors.npz'))\n        for i, filename in enumerate(tqdm(matterport_filelist)):\n            image_descriptors = np.load(os.path.join(IMAGE_DESC_FOLDER, filename),'r')['descriptors']\n            _, N = image_descriptors.shape\n            if N < 300:\n                total_removal += 1\n                continue\n            if all_descriptors is None:\n                all_descriptors = np.transpose(image_descriptors, (1, 0))\n            else:\n                all_descriptors = np.concatenate((all_descriptors,\n                                              np.transpose(image_descriptors, (1, 0))), axis=0)\n\n    kmeans = KMeans(n_clusters=64, random_state=0, init='k-means++', max_iter=5000, verbose=0).fit(all_descriptors)  # data\n    np.save(os.path.join(OUTPUT_FOLDER, 'data_descriptors_centers.npy'), kmeans.cluster_centers_)\n    descriptors_cluster_centers = kmeans.cluster_centers_\n\n\n############# STEP 1: BUILD IMAGE DESCRIPTOR TREE\ndescriptors_cluster_centers = torch.tensor(descriptors_cluster_centers, device='cuda')  # KxD\nK, D = descriptors_cluster_centers.shape\n\nimage_indices = []\nvlad_image_descriptors = []\n\nprint('Compute image descriptor for each Matterport image ... ')\nif os.path.exists(os.path.join(OUTPUT_FOLDER, 'all_image_descriptors.npy')):\n    vlad_image_descriptors = np.load(os.path.join(OUTPUT_FOLDER,\n                                                  'all_image_descriptors.npy'),'r')\n    image_indices = np.load(os.path.join(OUTPUT_FOLDER, 'all_image_descriptors_indices.npy'),'r')\nelse:\n    with torch.no_grad():\n        matterport_filelist = sorted(fnmatch.filter(os.listdir(IMAGE_DESC_FOLDER), 'image_*_descriptors.npz'))\n\n        for filename in tqdm(matterport_filelist):\n            image_descriptors = np.load(os.path.join(IMAGE_DESC_FOLDER,\n                                                     filename),'r')['descriptors']\n            image_descriptors = torch.tensor(image_descriptors, device='cuda')\n            _, N = image_descriptors.shape\n            if N < 250:\n                continue\n\n            # compute vlad image descriptor\n            assignment_matrix = descriptors_cluster_centers @ image_descriptors  # KxN\n            v = torch.max(assignment_matrix, dim=0)\n            assignment_mask = assignment_matrix == v.values.reshape(1, N).repeat((K, 1))  # KxN\n            assignment_mask = assignment_mask.reshape(1, K, N).repeat((D, 1, 1))\n            assignment_mask = assignment_mask.float()\n\n            image_descriptors = image_descriptors.reshape(D, 1, N).repeat((1, K, 1))  # DxKxN\n            residual = image_descriptors - torch.transpose(descriptors_cluster_centers, 0, 1).reshape(D, K, 1)  # DxKxN\n            masked_residual = torch.sum(assignment_mask * residual, dim=2)  # DxK\n\n            masked_residual = torch.nn.functional.normalize(masked_residual, p=2, dim=0)\n            vlad_image_descriptor = torch.nn.functional.normalize(masked_residual.reshape(1, -1), p=2, dim=1)\n\n            image_indices.append(int(filename[6:12]))\n            vlad_image_descriptors.append(vlad_image_descriptor.detach().cpu().numpy())\n\n        vlad_image_descriptors = np.concatenate(vlad_image_descriptors, axis=0)\n        image_indices = np.asarray(image_indices)\n        \n        np.save(os.path.join(OUTPUT_FOLDER, 'all_image_descriptors.npy'), vlad_image_descriptors)\n        np.save(os.path.join(OUTPUT_FOLDER, 'all_image_descriptors_indices.npy'), image_indices)\n\n\n# ######### STEP 2: QUERY IMAGE FROM DATABASE\nkdt = KDTree(vlad_image_descriptors, leaf_size=30, metric='euclidean')\n\nEGO_DATASET_FOLDER = opt.ego_dataset_folder\n\nif not os.path.exists(os.path.join(EGO_DATASET_FOLDER, 'vlad_best_match')):\n    os.makedirs(os.path.join(EGO_DATASET_FOLDER, 'vlad_best_match'))\n\nego_dataset = AzureKinect(dataset_folder=EGO_DATASET_FOLDER, \n                          skip_every_n_image=1,\n                          start_idx=0, \n                          end_idx=-1)\ndata_loader = DataLoader(dataset=ego_dataset,\n                         num_workers=4, \n                         batch_size=16,\n                         shuffle=False,\n                         pin_memory=True)\n\nprint('Query image with database images')\nmatch_pair = {'matterport': [], 'ego': []}\nwith torch.no_grad():\n    for idx, images in enumerate(tqdm(data_loader)):\n        images['image'] = images['image'].cuda()\n        output = superpoint(images)\n        for j in range(images['image'].shape[0]):\n            image_descriptors = output['descriptors'][j]  # DxN\n            _, N = image_descriptors.shape\n\n            # compute vlad image descriptor\n            assignment_matrix = descriptors_cluster_centers @ image_descriptors  # KxN\n            v = torch.max(assignment_matrix, dim=0)\n            assignment_mask = assignment_matrix == v.values.reshape(1, N).repeat((K, 1))  # KxN\n            assignment_mask = assignment_mask.reshape(1, K, N).repeat((D, 1, 1))\n            assignment_mask = assignment_mask.float()\n\n            image_descriptors = image_descriptors.reshape(D, 1, N).repeat((1, K, 1))  # DxKxN\n            residual = image_descriptors - torch.transpose(descriptors_cluster_centers, 0, 1).reshape(D, K, 1)  # DxKxN\n            masked_residual = torch.sum(assignment_mask * residual, dim=2)  # DxK\n\n            masked_residual = torch.nn.functional.normalize(masked_residual, p=2, dim=0)\n            vlad_image_descriptor = torch.nn.functional.normalize(masked_residual.reshape(1, -1), p=2, dim=1)\n\n            # Match and save\n            ret_query = kdt.query(vlad_image_descriptor.detach().cpu().numpy().reshape(1, -1), k=5, return_distance=False)[0]\n\n            for qids in range(len(ret_query)):\n                match_pair['matterport'].append(\n                    os.path.join(IMAGE_DESC_FOLDER, 'image_%06d_descriptors.npz' % (image_indices[ret_query[qids]])))\n                match_pair['ego'].append(\n                    os.path.join(EGO_DATASET_FOLDER, 'color', 'color_%07d.jpg' % images['image_index'][j]))\n\nwith open(os.path.join(EGO_DATASET_FOLDER, 'vlad_best_match', 'queries.pkl'), 'wb') as f:\n    pickle.dump(match_pair, f)\n"
  },
  {
    "path": "VQ3D/data/README.md",
    "content": "## Data\n\nInsert the Ego4D data here as follow:\n\n```\n|-- data/\n    |-- v1/\n        |-- clips/\n        |-- full_scale/\n        |-- 3d/\n            |-- scans/\n            |-- scans_keypoints/\n        |-- annotations/\n            |-- vq_<split>.json\n            |-- vq3d_<split>.json\n            |-- <split>_annot.json\n```\n\n"
  },
  {
    "path": "VQ3D/data/all_clips_camera_poses_val.json",
    "content": "{\"6c641082-044e-46a7-ad5f-85568119e09e\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"db6e91d9-3006-46dd-af29-b74f725fe284\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"f0f5f45c-1576-4408-8ed0-a80747a51bd5\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"bd365d25-88d0-4e4b-868a-59a01b134a42\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"307c3ec6-886e-4d25-9ef7-7bea3cf7a243\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"33d909a9-e570-4ba3-ab66-31cf66d42d6f\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.749501213982667, -0.6615678315632205, 0.023998634945484938, -0.5948026008355896], [-0.6563236970041149, 0.7378445573692918, -0.15755828734587282, -0.8774669125955848], [0.08652823232540535, -0.1338410004492344, -0.9872180365093564, 1.9802119485966685]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"ed808fab-fdda-4514-a00f-2fb87a7208ba\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.749501213982667, -0.6615678315632205, 0.023998634945484938, -0.5948026008355896], [-0.6563236970041149, 0.7378445573692918, -0.15755828734587282, -0.8774669125955848], [0.08652823232540535, -0.1338410004492344, -0.9872180365093564, 1.9802119485966685]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6745540312641681, 0.7330798157913002, 0.08701058892257679, -0.3366610608600136], [0.6972317277249035, -0.5939251578560596, -0.40139858584628924, 4.3526860281297735], [-0.24257942361009593, 0.33143157747120006, -0.9117611160254343, 0.22627156448644692]], [[0.6908007328147069, 0.7147562930787393, 0.10916862666078653, -0.11075038998563194], [0.6876258512271897, -0.6027529238887848, -0.4047957527786125, 4.58196405725734], [-0.22352860279334674, 0.3547003724946733, -0.907867065976839, 0.16470955169589355]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7774279963700335, 0.44553257150634207, 0.4439667084219516, 1.0036074253365759], [0.5172238276269451, -0.051210910626974304, -0.854316659540061, 3.140270513404668], [-0.35788995877924284, 0.893799849160707, -0.2702528576079993, -3.351200200667123]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"66db02c4-053b-41ab-8b9f-f467ad1df560\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.749501213982667, -0.6615678315632205, 0.023998634945484938, -0.5948026008355896], [-0.6563236970041149, 0.7378445573692918, -0.15755828734587282, -0.8774669125955848], [0.08652823232540535, -0.1338410004492344, -0.9872180365093564, 1.9802119485966685]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.688848965057364, 0.7200638110201565, 0.08363738039014502, -0.22529287103307205], [0.6907241635263095, -0.6169740282700187, -0.37715139978680445, 4.397866844256503], [-0.21997098276881355, 0.31757071102259127, -0.92236739439354, 0.34093367067380226]], [[0.6989777138416894, 0.7056569112136796, 0.11609685270934338, -0.056314625609146796], [0.6852489354767705, -0.6144277687897338, -0.3910401684840347, 4.5995427557781685], [-0.20460706727920852, 0.3528836077185205, -0.913021964370498, 0.24972889038525964]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7774279963700335, 0.44553257150634207, 0.4439667084219516, 1.0036074253365759], [0.5172238276269451, -0.051210910626974304, -0.854316659540061, 3.140270513404668], [-0.35788995877924284, 0.893799849160707, -0.2702528576079993, -3.351200200667123]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8991096200348885, 0.3352082820973681, 0.2814912055003664, 2.0615061425143053], [0.33532574664505754, -0.11411986260113058, -0.9351648520965882, 2.7810162653032235], [-0.2813512658540082, 0.9352069634969739, -0.21501023377764325, -3.1798956130650486]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"f9cbfb3a-d2e2-4f30-9c01-ee341b5e8887\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.09137262782640432, -0.9929752313265624, 0.07517468228105265, 2.0638852884677634], [-0.9269259702799341, 0.057218616864371574, -0.37085613855608635, -2.456538375382853], [0.3639495686282651, -0.10356746523927321, -0.9256427451448056, 3.197121867987966]], [[-0.11819175614727528, -0.988308557575191, -0.09631668496407146, 2.0301903275766375], [-0.9574998059616203, 0.1391305439529782, -0.2526594809675813, -2.4602471409957403], [0.2631061199635656, 0.06236093940114745, -0.9627493354319826, 2.407102569473503]], [[-0.1695020298642157, -0.9848178687037352, -0.037454336915013264, 1.9108006792149463], [-0.935998605298002, 0.1727634906696739, -0.30669102884144644, -2.1763122287624808], [0.30850554736034475, -0.016927544814956064, -0.951071913934184, 2.6425389823114465]], [[-0.23496348620213925, -0.9700240496979318, -0.062012121068069165, 1.8558141200197353], [-0.8457276412836003, 0.23546814216831224, -0.47885228494044024, -1.850367587187664], [0.47910011158484866, -0.06006743736357473, -0.8757025671128059, 3.0614820556994173]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6984329154278615, -0.7156745589166023, 0.0011782896352103417, -0.41975282848590995], [-0.6937954113491807, 0.6766750412439192, -0.2464930338739036, 0.10964937052098288], [0.1756114741062178, -0.17297634022335834, -0.9691438468489465, 1.9007427553245806]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.16440005613344255, 0.8086973186573658, 0.5647842670787742, 0.5328027304700935], [0.05928405160975403, -0.5796405451651427, 0.8127128888023053, -0.4620781809497449], [0.9846105944829424, -0.10012734490159603, -0.14323579173832157, -1.9643919160951426]], [[-0.6482432290759124, -0.7606143011946298, -0.035307234038354174, -0.48191675257614786], [-0.6566110261943114, 0.581880464644668, -0.479871946611758, 0.7818322194863977], [0.38554205508256467, -0.2878906210405434, -0.8766278081829272, 1.4272778010333624]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"42265e2f-1d83-4ad3-a466-085c64736d76\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.004132574353954532, -0.9907938107694029, 0.13531646747626103, 2.4397707069517494], [-0.91795294539364, -0.04991794752009315, -0.39353600668620214, -2.4274134306019093], [0.3966677600616798, -0.12584046668868556, -0.9092958072438383, 3.1564217043485883]], [[-0.0839771834086187, -0.9954627744995301, 0.04474033138514236, 2.0892443168401087], [-0.9285569560946794, 0.06188363689107057, -0.36599507479379734, -2.4713064614923423], [0.36156577818557234, -0.07227918144826481, -0.9295406973200422, 3.1051067772505236]], [[-0.12767420318382094, -0.9816101741311123, 0.14191815910468794, 2.0016932404964205], [-0.9653505086081486, 0.09015407395394937, -0.2448890329914638, -2.3729944768067597], [0.22759106610621807, -0.1682667792280842, -0.9591082304082487, 2.8093025644441263]], [[-0.18937705032433572, -0.9816967223615992, 0.020195992546711422, 1.8606019516586103], [-0.8695275133231225, 0.1581130148026767, -0.4678912032984967, -2.00052690101898], [0.45613401143146604, -0.10616882713160763, -0.8835552861937604, 3.1992520456364972]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7000290678022385, -0.7138744175111227, 0.01851000418920125, -0.41141965409607806], [-0.6940450492671089, 0.6740251563453431, -0.25296552769389763, 0.1291571148361271], [0.16810941026529563, -0.1899299993070891, -0.9672982071437244, 1.8611911533937568]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7492815402019894, -0.6617581069864835, -0.025561325282549938, -0.35931341711422515], [-0.6079332286374706, 0.7026212770041875, -0.3697844380438769, 0.6595101746854215], [0.2626677807249212, -0.26153307427297007, -0.9287658951696999, 1.60019079003201]], [[-0.8160329376443805, -0.5437532203391093, 0.19601704020398514, -0.414492201964847], [-0.5515690290721849, 0.6311756314470217, -0.5453337770905277, 0.678369391213958], [0.17280581832753794, -0.5531272526628045, -0.8149775404965759, 1.438018359114221]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.2555787668408084, -0.9607910697489392, 0.10751750662483137, 2.709050124247132], [-0.7773673063866926, -0.2703474508258118, -0.5679897241967351, -0.2722407868325687], [0.5747865385525565, 0.06158551877409396, -0.815982633991739, 2.6182649088442114]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"b7d5cc1a-d5fe-49a6-9243-dea23a61b5e4\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9249490197765479, -0.37576639933425576, 0.057174504333429854, 2.280842777629856], [-0.29138090812510037, -0.7975942079453965, -0.528148318024537, 1.5724714571439298], [0.24406244527701626, 0.4718507100591503, -0.8472251354994605, 1.4491470390570609]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.35047046083242084, -0.9320832008232185, 0.09160438213892425, 3.6589313824556466], [-0.7809780404983071, -0.34483115544361886, -0.5207348408689811, -0.4694002285355878], [0.5169562421939933, 0.11096116878693404, -0.8487896457180087, 2.8023878750340474]], [[0.33511562644722903, -0.9387856067126473, 0.079869277823502, 3.6574158519777646], [-0.809059347695, -0.3301737228014233, -0.4862183508248016, -0.533309749896424], [0.482825526270331, 0.09832038141003871, -0.8701796445454022, 2.833740294193622]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.2390549310177989, 0.9705048310572277, 0.031194756781506572, -2.8041254965067557], [0.7432098834745999, 0.20355356759930604, -0.6373421484754218, 3.161070879018684], [-0.6248934381650579, -0.12917553178592572, -0.7699492664624573, 0.08866213315871603]], [[-0.16713484608641263, 0.9848099669021998, -0.0470666794426744, -2.6179318759553616], [0.7390366130537843, 0.0935395950280091, -0.6671395871389938, 3.409479333729484], [-0.6526031165951188, -0.14628627157763086, -0.7434443482590027, -0.16373235811457287]], [[-0.10219473578552296, 0.9873587611212098, -0.1211565632350039, -2.379197556601507], [0.700507222797734, -0.015045640489691814, -0.7134866918944328, 3.6724516621394923], [-0.7062902142787578, -0.15778563160010872, -0.6901143584034621, -0.5009909340782839]], [[0.08776176494300225, 0.9884306962830373, -0.12370380454747326, -1.3658508115933623], [0.6646824645222319, -0.1506012547989387, -0.7317899175375656, 3.949052734507284], [-0.7419535659128145, -0.018000574946800185, -0.6702095831386204, -0.9449059653128772]], [[0.04737166980144106, 0.9823470227293883, -0.18097030650062484, -1.6375338460118216], [0.6727503986922571, -0.1652973447850525, -0.7211682805465176, 4.025609390149213], [-0.7383514244312342, -0.08758490019243254, -0.6687047624315603, -0.786378414818591]], [[0.025350714230704008, 0.9798007003120025, -0.19836312398251615, -1.7067770691669515], [0.6661646744222388, -0.16450700911265304, -0.7274352689447511, 3.9921966847293295], [-0.7453737101883231, -0.11370150228083753, -0.656878984698989, -0.6544350743433932]], [[0.03632103611603166, 0.9773908461542329, -0.20829766246737164, -1.6613576127300638], [0.6426215000391458, -0.18246855032095533, -0.7441389895921378, 3.941555799738801], [-0.7653224091994801, -0.10682865719310652, -0.6347198184864106, -0.8460343257895997]], [[0.05156166254878858, 0.9761979325532729, -0.21066321803751215, -1.5422906708490751], [0.6478156568081131, -0.19323575833601603, -0.7368818198969069, 3.9755774178390944], [-0.7600501758104379, -0.09847607922242013, -0.6423598618154016, -0.832751738711624]], [[0.06291058987397333, 0.9755342471581128, -0.2106541960260036, -1.5614769719790067], [0.6496025633146312, -0.20026530098408282, -0.7334236967516213, 4.0131246372824325], [-0.757666659829221, -0.0907013883212805, -0.6463083557713163, -0.8268256126588862]], [[0.0470599347258952, 0.9694358618103383, -0.24078926965220232, -1.5861912017181703], [0.6354658311093317, -0.21504193628604862, -0.7415794921185948, 3.9694042527173], [-0.7706935448257761, -0.11811467086858213, -0.6261632251174496, -0.8229881563276998]], [[0.04317206870204249, 0.9668038128293281, -0.25184630230094607, -1.602148921143303], [0.6253237572249346, -0.22274666132521548, -0.7478998084760824, 3.945854699080626], [-0.7791703094536375, -0.12519709408426033, -0.6141818269037107, -0.8245093762795438]], [[0.07076345354969471, 0.9660729495120131, -0.24838596953708925, -1.5176112818186964], [0.6281762881636903, -0.23658951186595278, -0.7412286785223022, 4.074139954869704], [-0.7748464910100635, -0.10357827521343366, -0.6236060104530758, -0.8917881519197933]], [[0.07328864562708837, 0.9658835892753459, -0.24839014954446664, -1.4246049975372426], [0.6088756932158579, -0.24059018191000758, -0.7559012862665457, 3.9641609940323], [-0.7898728787805389, -0.09583974299362863, -0.6057355685692061, -0.9211336078582157]], [[0.06341192361327946, 0.9592418863633546, -0.2753796132427677, -1.5513380553450575], [0.6501430454774743, -0.2490546945226913, -0.7178340891553445, 4.248370832084827], [-0.7571611112312477, -0.1335168999875354, -0.6394374786144301, -0.7151689012119082]], [[0.08405186820240151, 0.9609113428971243, -0.2637890720695835, -1.3003981932311315], [0.6120094129819922, -0.25869353513651916, -0.7473433837935598, 4.054306596624021], [-0.7863712621104131, -0.09862578755181717, -0.6098304618143144, -0.964096846716001]], [[0.08410249302850203, 0.9630203684085412, -0.25596589752673665, -1.457283572963357], [0.6344342591765484, -0.2498325797645934, -0.7314894755710926, 4.172040342731694], [-0.7683878847623085, -0.10087344605219517, -0.631984656801144, -0.8534553155494339]], [[0.47801448932133206, 0.8728957982240602, -0.09775005596749109, 0.5354609191831984], [0.3421173434803, -0.28752894586540534, -0.8945852830107992, 3.0681410142695524], [-0.8089857052438252, 0.39418273774013746, -0.4360757938464838, -2.264241125973306]], [[0.08621685975732629, 0.9600123882334647, -0.2663510231477718, -1.4722173323840286], [0.6483004279760499, -0.2570613655657963, -0.7166770607599482, 4.238534792312161], [-0.756487414422511, -0.11088583665972584, -0.6445394658580781, -0.7440638260642319]], [[0.11179774434693579, 0.9615085477415248, -0.2510031413726159, -1.2610871235458772], [0.6077643667557067, -0.2659967342074877, -0.7482434175407002, 4.035275237700854], [-0.78620845763765, -0.0688988389665281, -0.6141084685363757, -1.0144309693296254]], [[-0.3249797585880698, -0.921911366334923, 0.21087339597615357, 0.20241386161040317], [0.2768176719178071, 0.12048206028234182, 0.9533394199675831, 0.7203072492207856], [-0.9043009084491984, 0.3681894970970763, 0.21604712727864922, -8.192906445781059]], [[0.06523601087510544, 0.9550812957661851, -0.2890743526546209, -1.6214079339660203], [0.5744518104089541, -0.2728184477934602, -0.7717351955570266, 3.898844115770134], [-0.8159346667491083, -0.1157143596151835, -0.5664457666677982, -0.9639137747326745]], [[0.028223737711179808, 0.957168382387701, -0.2881529253485413, -1.7921237928774074], [0.47416106046671425, -0.26659219455946814, -0.8391066026060379, 3.466854259349059], [-0.8799856302046591, -0.11294817199617807, -0.4613762034132563, -1.335596938958406]], [[0.12181375276553291, 0.9648580487964578, -0.23283117340654835, -1.2004040781963257], [0.6447195292940271, -0.2552699322025829, -0.7205372927615732, 4.2845891257685], [-0.7546510042291509, -0.06233945288484111, -0.6531582154654054, -0.8820470418824999]], [[0.05394251184599219, 0.9621032333618479, -0.2672967896747405, -1.6452524984657442], [0.6170124615659355, -0.24258310273758088, -0.7486314584216676, 4.1357465840739325], [-0.7851024313349755, -0.12454238885169061, -0.6067152261901989, -0.8540409035045301]], [[0.11758704637608175, 0.9727306074749007, -0.19992111395763157, -1.2261571274400234], [0.5729386622645289, -0.2308852873185181, -0.7864052857034836, 3.8241612065468127], [-0.8111193351209682, -0.022071460788908703, -0.5844640919779096, -1.2214974864764037]], [[0.11759502254234278, 0.9720338633364307, -0.20327709954768325, -1.2380838777505458], [0.5803268497171812, -0.23337284813922798, -0.7802293645132289, 3.861803320855309], [-0.8058487191592464, -0.0262160690920219, -0.5915408350661552, -1.1850366511802888]], [[0.1931279461515677, 0.9562261070322325, -0.21984819454627952, -0.9022931975672018], [0.6872592859944545, -0.29175366876708, -0.6652476761141985, 4.4614304271535365], [-0.7002687128736154, -0.022614795841007673, -0.7135210583993998, -0.5833052393165781]], [[0.10103941604820965, 0.9688061762191201, -0.22628660880468393, -1.4661953814691528], [0.624948848621743, -0.23878079534436802, -0.7432514166693992, 4.082172628906438], [-0.7740994593790869, -0.06631986651372535, -0.6295805764908946, -0.887904093511281]], [[0.06482454431496532, 0.9695823888499537, -0.23602493445899758, -1.504166985124382], [0.6329997305311033, -0.2227994789738672, -0.7413984983236235, 3.999468237124279], [-0.7714331595166932, -0.10134290010153818, -0.6281882655678168, -0.8154699998067204]], [[0.11258990106416011, 0.9635388070477255, -0.24272717501633084, -1.3581797769531305], [0.6449156492660744, -0.25669862795310316, -0.7198538877707839, 4.160425123779166], [-0.7559148890649532, -0.07549027566541361, -0.6503029284647881, -0.7970861643967188]], [[0.3570485937485956, -0.9087022610750521, 0.2162787609064703, 3.9621733679182882], [0.05338549012889515, 0.2510138473006145, 0.9665102368351002, -0.5002465462359924], [-0.9325590014287826, -0.3335449732501325, 0.13813565677883605, -7.222491450413573]], [[0.11152444510750859, 0.9701104046627718, -0.2155182147951663, -1.4463331031525333], [0.6236218805688192, -0.2371730775571922, -0.7448789709461929, 3.960389044440689], [-0.7737299582020019, -0.05132966050037019, -0.6314326707841819, -0.8755129043776934]], [[0.11608083563357607, 0.9725372507099361, -0.20173382358982145, -1.430421699587235], [0.6313678753642078, -0.22904191571858035, -0.740887580407479, 3.971746757194896], [-0.7667462719548732, -0.04136540614476497, -0.6406161546650084, -0.8685299450679858]], [[0.09491979782308241, 0.9694678749917248, -0.22610234704720478, -1.4506193422644698], [0.6723985875340158, -0.22992355277225968, -0.7035732366732282, 4.152178581376041], [-0.7340779055818842, -0.08524786941391183, -0.6736931269479471, -0.6747570300805424]], [[0.12503241280562016, 0.9705676851844992, -0.20582823961645363, -1.3196305944147642], [0.648349594022002, -0.23696143482881504, -0.7235275270059702, 4.027755510708491], [-0.7510057920412536, -0.04298426316075088, -0.6588950245987729, -0.8672152527543717]], [[0.15004103582194672, 0.9693866002213924, -0.1943638517849639, -1.17737882219811], [0.6855863213403315, -0.2436596935958718, -0.6860038991928525, 4.224761845390806], [-0.7123616241492159, -0.030324462534000896, -0.701157146017578, -0.6805663475302265]], [[0.08499370545590645, 0.9755430100167257, -0.2027113850783448, -1.4447261196142902], [0.6545333038140289, -0.2080586334312886, -0.7268409449480653, 3.9414821679195553], [-0.751240456998401, -0.07090444740783841, -0.6562090635663469, -0.753857776333513]], [[0.04602085506593215, 0.9722081654644383, -0.22955035156425285, -1.6251884801007253], [0.6858951174134238, -0.19781668259552695, -0.7002973996776843, 4.1065179836912], [-0.7262437392552353, -0.12521918020484002, -0.6759365266808725, -0.5395263094723366]], [[0.08265277748601063, 0.9765232036901306, -0.19892448574424337, -1.4731483909809617], [0.6638193184676022, -0.20282694648896826, -0.719864669369993, 4.027805639786613], [-0.7433117991819154, -0.07255110221578309, -0.6649991780177018, -0.7502062330660673]], [[0.0673577914910295, 0.9764571425821085, -0.20492529523178638, -1.595696210897832], [0.675560564473223, -0.19578175056617197, -0.7108357263628958, 4.011962478774885], [-0.7342212552453595, -0.090559123480901, -0.6728433647590646, -0.5850992802057372]], [[0.06938183943173953, 0.9811536336382674, -0.18034330471490534, -1.5225183267941134], [0.6747471400643572, -0.17930881796744874, -0.7159362016088355, 3.920701793102016], [-0.7347805504584611, -0.07201315850274348, -0.6744713838780856, -0.7367430188668892]], [[0.040795040837683455, 0.9776731275719334, -0.20613350107822448, -1.6563172732745066], [0.7028383081099706, -0.17471458460307968, -0.6895600964238635, 4.0313955218423345], [-0.7101789051331828, -0.11674788884895543, -0.6942736154810627, -0.4768618658604202]], [[0.05383916151632287, 0.9814122466315128, -0.18420463308208573, -1.6357684297101132], [0.677163223582686, -0.17145774075983786, -0.7155782359467324, 3.894123366913115], [-0.7338605544068468, -0.08621047091402961, -0.673807421590514, -0.6426430569711991]], [[0.047612116459097575, 0.9810986133263875, -0.18755958332040773, -1.6840250077963086], [0.6905356770326416, -0.16800457619410014, -0.703516127123545, 3.9263729525803135], [-0.7217295650805478, -0.09602069207665836, -0.6854826486365377, -0.5395541498735635]], [[0.06126656647246259, 0.9834487961448943, -0.17051355721417955, -1.5603737494703953], [0.6817143300135493, -0.16601083487529494, -0.7125348938530555, 3.860531257970067], [-0.7290486815616999, -0.07258696897629413, -0.6806020510165846, -0.6566546231319978]], [[0.0018360771090371042, 0.9814546489832608, -0.19168568232915614, -1.7854753490448694], [0.7317196172732937, -0.1319726126754146, -0.6687074331881242, 4.011526290612626], [-0.681603279421596, -0.13903237569994065, -0.7183919320182794, -0.23817758411961468]], [[0.04424570456610538, 0.9827351036814315, -0.17964975262909433, -1.7218536054372557], [0.6999986215855788, -0.1587974341858805, -0.6962652545361361, 3.9338790930123912], [-0.7127722268759764, -0.0949478324567063, -0.6949393223196069, -0.5420186769924886]], [[0.08951920108013683, 0.9817980874234735, -0.16750769585181158, -1.5162255608336148], [0.6989286477380872, -0.1817430185156484, -0.6917139731072585, 3.9699597639113224], [-0.709566810109508, -0.055154245098900545, -0.702476299414142, -0.5757189698695344]], [[0.09599306912363142, 0.9819425097482901, -0.16301606739660568, -1.4859074905815386], [0.6971642936868137, -0.18321846909133538, -0.6931038451718424, 4.009888057912618], [-0.7104556835499254, -0.047115816166721336, -0.7021629594179343, -0.62596877475057]], [[0.010238959423511051, 0.9862967903481814, -0.16466270087302531, -1.802173442600222], [0.6828757456809351, -0.12718943413823347, -0.7193772055078635, 3.808443944045659], [-0.7304627845897631, -0.10507849062711022, -0.6748204436269678, -0.5936610555168009]], [[-0.04432720509557175, 0.985336974233741, -0.16476087550238172, -1.954482734120595], [0.6790995055091542, -0.09123946919442505, -0.7283537745342863, 3.8198163121262745], [-0.7327065991961841, -0.14417491622683798, -0.6650974612982271, -0.5332511522850085]], [[-0.11347387967645037, 0.9864999452723099, -0.11807428428283562, -2.2309028654021748], [0.653133095068411, -0.015487777272110786, -0.7570847303185604, 3.6350639443165327], [-0.7486927532422978, -0.16302756433468213, -0.6425583043658907, -0.5505631973221375]], [[-0.44619501119346827, 0.8939132263870784, -0.042768629581788176, -3.1264837143475823], [0.6211447678045205, 0.2749308177707479, -0.7338884267168788, 2.835430242561655], [-0.644274157028767, -0.3540228652645922, -0.6779222827542397, 0.3062126557840403]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"a044eb14-0f57-4128-9be8-4ab6fed911cf\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9249490197765479, -0.37576639933425576, 0.057174504333429854, 2.280842777629856], [-0.29138090812510037, -0.7975942079453965, -0.528148318024537, 1.5724714571439298], [0.24406244527701626, 0.4718507100591503, -0.8472251354994605, 1.4491470390570609]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.35047046083242084, -0.9320832008232185, 0.09160438213892425, 3.6589313824556466], [-0.7809780404983071, -0.34483115544361886, -0.5207348408689811, -0.4694002285355878], [0.5169562421939933, 0.11096116878693404, -0.8487896457180087, 2.8023878750340474]], [[0.33511562644722903, -0.9387856067126473, 0.079869277823502, 3.6574158519777646], [-0.809059347695, -0.3301737228014233, -0.4862183508248016, -0.533309749896424], [0.482825526270331, 0.09832038141003871, -0.8701796445454022, 2.833740294193622]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"3d2ad5e6-3fae-440e-a8ca-0758c2f9245b\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9249490197765479, -0.37576639933425576, 0.057174504333429854, 2.280842777629856], [-0.29138090812510037, -0.7975942079453965, -0.528148318024537, 1.5724714571439298], [0.24406244527701626, 0.4718507100591503, -0.8472251354994605, 1.4491470390570609]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.339672514684235, -0.9405371597682382, 0.003526168343173597, 3.558367340245255], [-0.8046931845237764, -0.2925496357564048, -0.5166077713311896, -0.6309147624923621], [0.48692038522644765, 0.17263997716024798, -0.856214912704186, 2.7009682694902044]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"9cfc44fe-5f79-46a6-8a4b-77ea495f3ef3\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9361834610766473, 0.3466044495079268, -0.05853104123332195, 6.335338658859614], [0.15843065739350481, -0.5646991004744656, -0.8099473147811476, 2.690424851722114], [-0.3137837695044339, 0.7489861691010298, -0.5835747291401092, -1.8403359555949457]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.987766236150553, 0.12395152321186942, -0.09462495767199625, 6.949858718345242], [0.0015187008046336492, -0.6144139522398068, -0.7889823754944887, 1.4423564648502636], [-0.15593446145363665, 0.7791864444319587, -0.607085602320337, -0.5628314138335732]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.993317095849735, 0.06994764220707102, -0.09180672329584877, 6.94840002180288], [-0.032813220394350306, -0.5914631143342597, -0.8056641216719101, 1.277091340545492], [-0.11065459619916723, 0.8032924198146588, -0.5852152156329405, -0.3316788300064049]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"9a24e436-4b41-4316-8484-7b9e084d9ca5\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9368504540018454, 0.3441225942801891, -0.0623768141412282, 6.350363486448405], [0.15600783844236377, -0.5708380841198312, -0.8061051023675151, 2.6765581628229147], [-0.31300604016708417, 0.7454686591831162, -0.5884757403620381, -1.816319995039126]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6386448436427807, 0.7621557156819598, 0.10607275211762948, 2.3246099705847354], [0.6587641034348615, -0.4702772262237215, -0.5872556398375292, 5.662565511892915], [-0.3976966428248442, 0.4449247077300183, -0.8024209523293906, -1.9219477475714886]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8003578963095166, 0.597149649450634, -0.053287277806152306, 3.935816203719957], [0.3645794964896043, -0.5553439088427615, -0.7474456058139811, 4.495414596461353], [-0.4759296466436943, 0.5787965437632014, -0.6621824011353524, -3.053703579023374]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"1d2b62ed-fc94-4fb0-b547-8c50533b0b29\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9361834610766473, 0.3466044495079268, -0.05853104123332195, 6.335338658859614], [0.15843065739350481, -0.5646991004744656, -0.8099473147811476, 2.690424851722114], [-0.3137837695044339, 0.7489861691010298, -0.5835747291401092, -1.8403359555949457]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.987766236150553, 0.12395152321186942, -0.09462495767199625, 6.949858718345242], [0.0015187008046336492, -0.6144139522398068, -0.7889823754944887, 1.4423564648502636], [-0.15593446145363665, 0.7791864444319587, -0.607085602320337, -0.5628314138335732]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.993317095849735, 0.06994764220707102, -0.09180672329584877, 6.94840002180288], [-0.032813220394350306, -0.5914631143342597, -0.8056641216719101, 1.277091340545492], [-0.11065459619916723, 0.8032924198146588, -0.5852152156329405, -0.3316788300064049]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"fe3000d6-d857-4cd1-a927-0a91a7f9616e\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9368504540018454, 0.3441225942801891, -0.0623768141412282, 6.350363486448405], [0.15600783844236377, -0.5708380841198312, -0.8061051023675151, 2.6765581628229147], [-0.31300604016708417, 0.7454686591831162, -0.5884757403620381, -1.816319995039126]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6386448436427807, 0.7621557156819598, 0.10607275211762948, 2.3246099705847354], [0.6587641034348615, -0.4702772262237215, -0.5872556398375292, 5.662565511892915], [-0.3976966428248442, 0.4449247077300183, -0.8024209523293906, -1.9219477475714886]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.800532615720039, 0.5969508320543557, -0.052888895602424935, 3.937169203618846], [0.3649015387207755, -0.5555416799654862, -0.7471414249393054, 4.497848868264279], [-0.4753886811942857, 0.5788118398328921, -0.6625575113615573, -3.049106891505518]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"72154f42-399c-4f95-a667-e26528d1f52a\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.933060392572365, 0.35396537098438924, -0.06408447516042662, 6.29529350968301], [0.15928311982307025, -0.5662819970522452, -0.8086739686387526, 2.701578815320837], [-0.3225324658885258, 0.7443340755053504, -0.5847560110759549, -1.8974195652301342]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.987766236150553, 0.12395152321186942, -0.09462495767199625, 6.949858718345242], [0.0015187008046336492, -0.6144139522398068, -0.7889823754944887, 1.4423564648502636], [-0.15593446145363665, 0.7791864444319587, -0.607085602320337, -0.5628314138335732]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.993317095849735, 0.06994764220707102, -0.09180672329584877, 6.94840002180288], [-0.032813220394350306, -0.5914631143342597, -0.8056641216719101, 1.277091340545492], [-0.11065459619916723, 0.8032924198146588, -0.5852152156329405, -0.3316788300064049]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"b878975c-7136-48b5-aa4a-23950a604354\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9361834610766473, 0.3466044495079268, -0.05853104123332195, 6.335338658859614], [0.15843065739350481, -0.5646991004744656, -0.8099473147811476, 2.690424851722114], [-0.3137837695044339, 0.7489861691010298, -0.5835747291401092, -1.8403359555949457]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.987766236150553, 0.12395152321186942, -0.09462495767199625, 6.949858718345242], [0.0015187008046336492, -0.6144139522398068, -0.7889823754944887, 1.4423564648502636], [-0.15593446145363665, 0.7791864444319587, -0.607085602320337, -0.5628314138335732]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.993317095849735, 0.06994764220707102, -0.09180672329584877, 6.94840002180288], [-0.032813220394350306, -0.5914631143342597, -0.8056641216719101, 1.277091340545492], [-0.11065459619916723, 0.8032924198146588, -0.5852152156329405, -0.3316788300064049]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"87499bfb-3dcf-46fa-aef3-204fcc0496e0\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8767377912241536, 0.4458867528656126, 0.1803215157942977, 3.790323192529359], [0.431657960785277, -0.5640981109762724, -0.7038925529395076, 4.3281030930301725], [-0.21213733836854184, 0.694966419916791, -0.6870366983341935, -1.0597439548320782]], [[0.8100099313094686, 0.5673704604652403, 0.14823856371232014, 3.246568506061669], [0.4808687258581323, -0.4979642800359655, -0.7216625557002656, 4.569256170781639], [-0.33563250687561075, 0.6558371264267704, -0.6761867226799632, -1.8769479707845167]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6850526467880773, 0.7256526011100104, 0.06427420657561808, 2.463088444451259], [0.5261460198998844, -0.4318187980718934, -0.7326000896636962, 4.945853159552826], [-0.5038583500073801, 0.5356872484332826, -0.6776178384560275, -2.842357405863876]], [[0.6091873294088405, 0.7905098393858825, 0.0631267892564723, 2.097253169622799], [0.5697005752612425, -0.3808692758340448, -0.7282718237530954, 5.198849765522732], [-0.5516629879144822, 0.4796173355496614, -0.6823746472470305, -3.165781324900878]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.24975235170639776, 0.96813606661962, 0.01833901108060515, -3.2469409360944863], [0.5529691419949857, 0.1581468521546866, -0.8180554389250725, 5.156499109685503], [-0.794889231791734, -0.19417036247546754, -0.5748469183336485, -4.703236294769985]], [[-0.28542241064337415, 0.9582445183139605, 0.017363485357819508, -3.5542640340770792], [0.5535089770106765, 0.1796041200009062, -0.8132466860967188, 5.217193729152918], [-0.7824077324970146, -0.2225079845757144, -0.5816599839501888, -4.770509255415384]], [[-0.36559344994524484, 0.929990161108306, 0.038206407824874555, -4.311324622785253], [0.5642778540858281, 0.25409707937430637, -0.7855095019423636, 5.306138409169515], [-0.7402242449051684, -0.26561809896013144, -0.617669080300592, -4.516148338711816]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.08321376198682628, -0.996529931151249, 0.0018884214801267452, 0.9425164892728376], [-0.3824511657714566, 0.030186023689478536, -0.9234824902367516, -1.3765369400312395], [0.9202209384794793, -0.07756868113810506, -0.38363592648556966, 7.459914332611271]], [[0.3718897177343371, -0.9276586320879221, 0.03387477167806169, 4.660257757776491], [-0.30978460832143623, -0.15842447492237804, -0.9375154303757902, -1.1861505728524813], [0.8750608746199373, 0.3381584658977716, -0.3462907992584498, 8.065546038520845]], [[-0.039834215022181874, -0.9985613980158172, 0.03589386725142907, 1.4194459434842503], [-0.48395859241123834, -0.012146734174888096, -0.8750065929352862, -1.7454882079613194], [0.8741837999785282, -0.05222634624000838, -0.4827785129989935, 6.8977846128033695]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9294196603019603, 0.36760576288059676, 0.03232797768440132, -3.027105635445825], [0.11083578853967849, 0.36163532313451885, -0.9257080106816514, 0.6065929996666318], [-0.35198653812749203, -0.8567881279280002, -0.37685485378147476, 1.6674292546928535]], [[-0.9641397374245996, 0.265371195405507, -0.0035630559743568685, -3.001812453498321], [0.13434908150340652, 0.4764474483171306, -0.8688775249085948, 0.5838984003265756], [-0.22887745851877855, -0.8381980420170086, -0.4950142940772899, 2.1474161814527224]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.973726799281551, -0.1551740022396822, 0.16666478149214686, -2.1038921635731302], [-0.22502122723239126, 0.5433295382049931, -0.8088006306926189, -0.6316020866484641], [0.03495093211538863, -0.8250539630490049, -0.5639719766100059, 2.794107426329746]], [[-0.9762787058451767, -0.18630587232300747, 0.1103177703329349, -2.0526905180623047], [-0.20702056789723802, 0.6539615350335695, -0.7276515616447492, -0.790311907770767], [0.06342218051101677, -0.7332287723722388, -0.677017868585998, 2.8947554565812106]], [[-0.9609605343710903, 0.09484443925739751, 0.2599218800393273, -2.410859440364448], [-0.1681776153158891, 0.5457346821933984, -0.8209080011535592, -0.5223368644597896], [-0.21970694364969315, -0.8325732334114646, -0.5084787802051229, 2.142685165274474]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5996230440065818, 0.7888099053684501, 0.1350227324893764, -3.395426907333177], [0.26049503312587446, 0.3519120537727173, -0.8990551952612351, 1.0660311867241299], [-0.756699770591369, -0.5039214617399075, -0.41649563933477696, -0.09888400419967279]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9936753943854365, 0.06887970510763548, 0.088683689691129, -2.888139880573073], [-0.06050427260677539, 0.33689521217117624, -0.9395961095132646, 0.4451348879076001], [-0.09459621339817093, -0.9390192768204617, -0.33059696636585256, 2.689741195338423]], [[-0.998184324142279, 0.03738881839827175, 0.04722426595938515, -2.7573213966324954], [-0.0281117970993191, 0.4042159235464077, -0.9142314881994446, 0.40727562911843007], [-0.05327083536484482, -0.9138990991407671, -0.40243093157612286, 2.735161137967014]], [[-0.9949457111062021, 0.09996892735732454, 0.009446984407722, -2.8025862279320206], [0.037681214445109606, 0.45890955230073005, -0.887683586017611, 0.4375463067193225], [-0.09307608731202359, -0.8828410028822685, -0.4603570414368775, 2.520709932332385]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.069649007786309, -0.9930952784153597, -0.09439694753275835, 2.6822912101654195], [-0.5925337458523714, 0.03494135282984645, -0.8047874637993423, -0.1792862041502417], [0.8025289874768016, 0.11198602525109924, -0.5860088347524465, 2.194538432739437]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8735482628179119, -0.4600136796154637, -0.1590624000021689, -0.7932162340036483], [-0.1767581571109684, 0.604294088081874, -0.7769074648914317, -0.6442654655893527], [0.45350852960285404, -0.6505505896361469, -0.6091912211297197, 3.5615202466205322]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8850392694402427, 0.45559164290130877, -0.09561248070816127, -3.509782664895414], [0.395672797455393, 0.6280073856517203, -0.6701117525612539, 0.7125662856262142], [-0.24525197023164902, -0.6309064736435805, -0.7360764176443345, 2.0882115304964604]], [[-0.6840947517198601, 0.729379782311257, -0.004416313499509106, -3.860461580411215], [0.5363150541402698, 0.4988947544936703, -0.6807864471632935, 1.5817227930382243], [-0.4943485949933124, -0.4680909709600087, -0.7324686406487679, 1.0979660055595215]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5600563566222799, 0.8205251719146536, 0.11434736403348206, -3.7974403340854113], [0.4176178557843792, 0.3988233122272854, -0.8164161268336844, 1.4386078643039297], [-0.715494377292397, -0.40948554049988795, -0.5660294940941502, -0.026540770323214214]], [[-0.8231922231681379, 0.55625868348596, 0.11371385474938861, -3.925998030420397], [0.2758182762400669, 0.5668650627227196, -0.7762655983336666, 0.5631165196147379], [-0.49626489116948075, -0.6076514442596461, -0.6200652224417278, 1.1910193200868906]], [[-0.837499593267358, 0.5316916124814776, 0.12608909744246846, -3.3538324465889224], [0.22250917158264574, 0.5425767716460711, -0.8100000712541527, 0.4511262237852234], [-0.4990832594253335, -0.6503187496043569, -0.572714085800595, 1.177052551426088]], [[-0.9277652544187629, 0.3660745930889773, 0.07239492377251322, -3.5759533582328955], [0.1658456131058188, 0.5782836328612562, -0.7988011470812637, 0.11482323791468034], [-0.3342856043966646, -0.7290935689330467, -0.5972233271010345, 1.907244303379739]], [[-0.8356949812675998, 0.4569919625902258, 0.3045853647371787, -3.5048041364449265], [0.15717798421425977, 0.7304256910230645, -0.6646603577556138, -0.24396802355062033], [-0.5262214168603254, -0.5075792115733389, -0.6822421596589437, 1.0915604891814517]], [[-0.9196785448273974, 0.34323374843484067, 0.19074057806227018, -3.347265402068993], [0.13795795978268546, 0.7372155305858034, -0.6614233612412637, -0.2450562337614012], [-0.36763973604163, -0.5819826933839707, -0.7253531340559435, 1.6226800877075134]], [[-0.9486463155649549, 0.3054663629988378, 0.08222207149724471, -3.2277280217233364], [0.13996005076451112, 0.638385379733559, -0.7568852562525148, 0.040478768882205446], [-0.2836923547701475, -0.7065086043486675, -0.6483550260669433, 1.99777977938502]], [[-0.9742570631822625, 0.17611835596898262, 0.1407320131677786, -3.119909415089357], [0.026983007550678048, 0.7108649188797608, -0.7028107742554827, -0.4077766510547858], [-0.22381932924346176, -0.6809209879250703, -0.6973173711160172, 2.189903433291261]], [[-0.9738325017072861, 0.223046741012597, 0.04359369154118664, -3.0529501764476734], [0.11586319650121904, 0.6522691340054867, -0.7490798999574427, 0.03008897275866634], [-0.19551464987322192, -0.7244274485049499, -0.6610437909379071, 2.263865560898852]], [[-0.9524959373623763, 0.3041918461400147, 0.014792229382273175, -3.081209235095038], [0.1708481553539667, 0.5739116012297, -0.800897235471636, 0.363560262189204], [-0.25211584067708837, -0.7603241379279576, -0.5986190843631642, 2.0845430849433133]], [[-0.9378977848300112, 0.34649706845868233, 0.01695661406346191, -3.1066424648561393], [0.20818427479537624, 0.6012656695026907, -0.7714524628293072, 0.3883942578996452], [-0.27750144673295174, -0.720013455587477, -0.6360609804367022, 1.9426551745615765]], [[-0.9379170819526078, 0.3451922375986286, -0.033968610262375534, -3.0656265603709447], [0.2490526418472553, 0.6020449019598348, -0.7586268632292665, 0.44825527706835244], [-0.24142147578541556, -0.7199890659765782, -0.6506392363697155, 2.057734919821019]], [[-0.9384799008796498, 0.26861265271594353, -0.2170316070203295, -2.6907543418805773], [0.329040634082375, 0.504775820422232, -0.7980812190746829, 0.7389799732171083], [-0.10482240584718236, -0.8203954009610044, -0.5621064394885026, 2.6677236811125726]], [[-0.9548984101170941, 0.2924779559045901, -0.051241308196794996, -2.9928542129432087], [0.25537849789159467, 0.7208994839274985, -0.6442714931515278, 0.11562548198189483], [-0.15149537672971752, -0.6282997528114579, -0.7630783521019203, 2.2273511957124295]], [[-0.9358255517620631, 0.3504530922779177, -0.037592110636084114, -2.9742971484514378], [0.27738536006740594, 0.6664820705404617, -0.6919963957047571, 0.2897291775377215], [-0.21745780898718223, -0.6580154099722472, -0.7209215085912957, 1.9879188795210005]], [[-0.9786525151553914, 0.15676584881985395, -0.13290494055458224, -2.7044818838700158], [0.2052457935763492, 0.7119739720578935, -0.6715409349632534, 0.004963211109784993], [-0.010649826254028612, -0.6844834050259337, -0.7289506495263329, 2.604853631673526]], [[-0.9753916800514765, 0.1957507311362386, -0.10145305193037141, -2.711926674260648], [0.20874629785661303, 0.6718028872394667, -0.7107080018037469, 0.13516296867282185], [-0.07096515777137954, -0.7143966209021041, -0.6961331872753511, 2.3835939064743874]], [[-0.9810693667308684, 0.16691344100744726, -0.09819776409545283, -2.6920702954369964], [0.19106206882165588, 0.7515325807573221, -0.631422256432119, -0.05794834858661641], [-0.03159404247451736, -0.6382309012193732, -0.7691964204342252, 2.3919644156532165]], [[0.9887081372049773, -0.06498697563835398, 0.13502930208678335, 2.6585855821877744], [-0.1485930817293475, -0.5418092478017632, 0.8272622528912237, -0.303956485567906], [0.01939885271966537, -0.8379853411569127, -0.5453478270968842, 0.752985942221924]], [[-0.9359831938793127, -0.17453630396451303, -0.3057327908057752, -1.903316160401174], [0.17846682900635158, 0.5133423186338706, -0.8394219766267853, 0.48749876055480434], [0.3034551889816657, -0.8402480243939933, -0.44933084223330655, 3.2192889161222116]], [[-0.9865645794158375, 0.1629879771848459, 0.01119151174972842, -2.683145481772858], [0.08322181700664527, 0.5603260220751498, -0.8240806260066738, 0.14076143132230998], [-0.1405861295297819, -0.8120773782581503, -0.5663619619158802, 2.015770275714261]], [[-0.9979465931649274, 0.0639490339042645, 0.0036219129235305833, -2.5568811723101663], [0.03611466547988362, 0.6084808971570248, -0.7927463205416082, -0.08398770087376159], [-0.05289922615493075, -0.7909876856548991, -0.6095409362910055, 2.268627688546784]], [[-0.9862929893495515, -0.08875318483383329, -0.139100723728442, -2.183613043321014], [0.06683303244487104, 0.5558900342342664, -0.8285647926464464, 0.09441757214430907], [0.1508624702639717, -0.8265041693911032, -0.5423387991329538, 2.829028893498359]], [[-0.9906412859967102, -0.0874898716151983, -0.10476337548752185, -2.2408964587385767], [0.010341098767672106, 0.7172311584792515, -0.6967585858694443, -0.42900687545951927], [0.13609887639161694, -0.6913211899481071, -0.7096140557892522, 2.7630908162680283]], [[-0.9913978995047241, 0.12090065604952938, -0.0501321875087701, -2.5703744907530774], [0.1177762439513314, 0.6570164319173628, -0.7446194763443229, -0.03485728518131813], [-0.05708731223606133, -0.7441185655239161, -0.6656039357037277, 2.26256460445947]], [[-0.9914983253807224, 0.03810407809550225, -0.12441523218527017, -2.4077572421762263], [0.11772683325179406, 0.6699472886585214, -0.7330150224597038, -0.11093994267046584], [0.05542078580936125, -0.7414301785411677, -0.6687374872464418, 2.6701430912708686]], [[-0.9930693597251874, 0.058697094104307915, -0.10182287522318642, -2.423678285739283], [0.11147617840242925, 0.7448767228224737, -0.657823478941001, -0.33727507906048576], [0.037233162957185616, -0.6646151660479632, -0.7462575779415858, 2.587407563790558]], [[-0.9906269300100408, 0.06683875131031915, -0.1191254249191093, -2.465611294181053], [0.1283692359089051, 0.7536148775021662, -0.6446595657240796, -0.31955947130768], [0.04668645211455793, -0.6539091662690409, -0.7551312319446747, 2.7562445533356197]], [[-0.9898001897344512, 0.08774072443376987, -0.11223702453950618, -2.5349755249072348], [0.1411460393973076, 0.7108294679842335, -0.6890567922948768, -0.12383433957790436], [0.019323042309588367, -0.6978703552387712, -0.7159633980273106, 2.7543852490226044]], [[-0.992223570217594, 0.0794243875242678, -0.09583398860032019, -2.5806709198243234], [0.12441836605761282, 0.6547245918087284, -0.7455573613535369, -0.01608442634750915], [0.0035294322780330817, -0.7516830951586508, -0.6595150245146092, 2.7830795365630476]], [[-0.991878184944599, 0.11086801611960959, -0.062337382305562725, -2.7026044172860417], [0.11952633252842965, 0.6449108273513124, -0.7548532841535157, 0.0009021549798758894], [-0.043487033277876674, -0.7561734640720653, -0.6529246282458196, 2.68376857861453]], [[-0.985601810827389, 0.16727561039638458, -0.02465645271097574, -2.828439042774864], [0.13297755904301192, 0.6767868921362217, -0.7240693830176472, -0.03855834856839899], [-0.10443198401224552, -0.7169228499630285, -0.689286288791642, 2.5297933204887175]], [[-0.9882465418285903, 0.15285423996399367, -0.002086597436549334, -2.862543828688906], [0.10911310289440046, 0.6957561887182584, -0.7099420093479464, -0.1442197969463542], [-0.10706588317754796, -0.7018254107577421, -0.7042570478696952, 2.4861609456064464]], [[-0.9975345095895672, 0.015074287618384825, 0.06853953625973762, -2.736171398453632], [-0.03737396064191749, 0.7125208392690012, -0.7006548655888536, -0.6473798278262392], [-0.05939772086400353, -0.7014890016673079, -0.7102007401403956, 2.7320796224890653]], [[-0.9334170990877224, 0.3331553387941798, 0.13319173909667315, -3.021758310497383], [0.10479344812215288, 0.608179343637897, -0.7868520948709773, 0.028061704080983345], [-0.3431484407094554, -0.7205035782042385, -0.6025974953761076, 1.6577414586749324]], [[-0.9850705455230285, 0.16473259785186053, 0.04999191482570093, -2.8879198985002468], [0.07786231214413433, 0.6853334614125512, -0.7240549060781658, -0.21755896411812675], [-0.15353657769578014, -0.7093526752422024, -0.6879282676531024, 2.337184998079642]], [[-0.9894468859035794, 0.14239724317693697, 0.026793378124404618, -2.8840075320448517], [0.08473950034200835, 0.7186732608012405, -0.6901651695725444, -0.2823890193594201], [-0.11753330190842003, -0.6806113203179334, -0.7231556911188514, 2.4619140843874354]], [[-0.9873548269848094, 0.1377518739637636, 0.07845295946787711, -2.9709099579972524], [0.05318727593960883, 0.7540628322189474, -0.6546452159330758, -0.5166452767092312], [-0.1493370660884996, -0.6421944147105383, -0.751854224172923, 2.3093535964310936]], [[-0.9813633731873953, 0.15764182774274824, 0.1098862316770574, -3.0555411718047085], [0.058082367781350286, 0.7884369263480295, -0.6123672523280322, -0.6564660512656378], [-0.18317305565822228, -0.5945723398517607, -0.7828993322030829, 2.1711283684478206]], [[-0.9757495036842707, 0.15721179820024722, 0.15230678437464645, -3.1299954787271096], [0.040459411109708014, 0.8133600607206649, -0.580352003250727, -0.8259600327167919], [-0.2151184374072942, -0.5601159363302575, -0.7999963723394775, 2.071467004362009]], [[-0.9764240791195767, 0.14457706113374713, 0.16029189346132158, -3.0714751024036504], [0.02848517400422916, 0.8223752164138847, -0.5682319933708108, -0.8633005033611008], [-0.2139733922183684, -0.5502694583766622, -0.8071052661211048, 1.9990906440262368]], [[-0.9675451145076295, 0.12922395814303547, 0.21715805311861128, -3.0681803811927577], [-0.009747206917371909, 0.8396324419656869, -0.5430675412469866, -1.0346005267395264], [-0.2525102836514357, -0.5275590308587131, -0.811122694547309, 1.865710981692441]], [[-0.9194685124275491, 0.13883065519266136, 0.3678365178079071, -3.031320371124518], [-0.052938964202936915, 0.8833441758666397, -0.4657258131471856, -1.2924895094655109], [-0.389583265456039, -0.4476931048623191, -0.8048576042601241, 1.2655110231274425]], [[-0.9618159180444108, 0.1300882755881272, 0.24080527475720748, -3.063455164915798], [-0.015063890513062936, 0.8533292341953007, -0.5211547728556959, -1.1025739456967862], [-0.27328230641407647, -0.5048824205913384, -0.8187860052411945, 1.7747263052461828]], [[-0.9591772525655207, 0.09780428686934416, 0.2653550821650852, -3.0175431111804896], [-0.05759993127861128, 0.8510653413266377, -0.5218908245114804, -1.2147207391988992], [-0.27687767349058556, -0.5158702416912151, -0.8106889956449937, 1.7177157299566737]], [[-0.9662709674421999, 0.08742400185520958, 0.2422343109015218, -3.001770775206633], [-0.04520376435451352, 0.8684333450695285, -0.4937409693954217, -1.2442247215611897], [-0.25352916433123907, -0.4880374668721342, -0.8351900345206076, 1.7685155118366314]], [[-0.9675865380849906, 0.0812589256294598, 0.23910934386227822, -3.0010009757474045], [-0.051012702878864204, 0.8644111973177957, -0.5001909496348446, -1.265488117087391], [-0.24733377339477114, -0.49617564325262964, -0.8322474004652364, 1.7965687858021002]], [[-0.9579593072123569, 0.09949370582636195, 0.26910029399121654, -3.023545405346631], [-0.044334088883401304, 0.8753449730835333, -0.4814620095711261, -1.2964659609923788], [-0.283458029147351, -0.47315132949018096, -0.8341339011894758, 1.6717660610279315]], [[-0.966486249839767, 0.06602814404689, 0.24808186766546686, -2.9765861486330527], [-0.06939119899663121, 0.8631945753826304, -0.5000799801349883, -1.3271492593572678], [-0.2471622753829415, -0.5005351228672404, -0.8296839159606526, 1.8072472507527337]], [[-0.9629254786612563, 0.07356564229311265, 0.25954309626532307, -3.0102747603380484], [-0.06021851810524535, 0.87920635768344, -0.4726202605541018, -1.3738158962203253], [-0.2629605533577179, -0.47072739126061125, -0.8421801888519944, 1.7363991666740783]], [[-0.9361802745211312, 0.11137489148275964, 0.333409848601902, -3.034285793404971], [-0.047220792361538005, 0.9000374508003329, -0.433246793324067, -1.4068940801834735], [-0.34833416479910234, -0.42134097914164703, -0.8373380971445586, 1.3964516960585296]], [[-0.964233725509887, 0.0998485917905236, 0.24552714983637344, -3.0635798803411167], [-0.02590264583238508, 0.8863989335235622, -0.462196909971468, -1.3169785358890131], [-0.2637847143566238, -0.45202565122539307, -0.8521094032494028, 1.7223264922186472]], [[-0.9614600036507748, 0.08089644801730628, 0.26277447760015676, -3.0124127807215295], [-0.04621387334981129, 0.8945886403049206, -0.44449459225889465, -1.3876774399534175], [-0.2710330962998055, -0.439507598723363, -0.8563726591703893, 1.676565250410518]], [[-0.9551807573542739, 0.10772489705280144, 0.2757264356841393, -3.074734684439094], [-0.04207398649424094, 0.872575070471535, -0.4866646957116143, -1.298089608788689], [-0.29301791829271956, -0.47645366295848646, -0.8289345007977668, 1.6589166856526294]], [[-0.9213032899806275, 0.13751392996842826, 0.36371715238012875, -3.0521637253524867], [-0.05013655478894153, 0.8855611205406816, -0.4618092979365267, -1.3405187330548383], [-0.3855989804768252, -0.44370195047055005, -0.8089758991489563, 1.2996960938754607]], [[-0.9733901162595276, 0.06610971308845959, 0.2194110010998192, -2.9951724369916444], [-0.05587203293231701, 0.8601171752688996, -0.5070273767198957, -1.279232518148174], [-0.22223860489184455, -0.5057943758513043, -0.8335358731649863, 1.9275281037581584]], [[-0.9647141831748097, 0.06826744595944574, 0.25429530196906014, -2.9812907525810033], [-0.06883434412671709, 0.8668237545882098, -0.49384047176213053, -1.3258656499215704], [-0.25414243614557175, -0.49391915766021177, -0.8315380254962622, 1.8074221333536062]], [[-0.9587815787826394, 0.0911093434265935, 0.26914117434432805, -3.0390146021571205], [-0.06440898579571293, 0.8528568622928194, -0.5181569790988194, -1.2707286351604798], [-0.2767478396227089, -0.5141344765529947, -0.8118351884980973, 1.791561956762071]], [[-0.9616146831689193, 0.019275715747450795, 0.2737254973442572, -2.8855602904604063], [-0.13373477493829916, 0.8381196070092372, -0.5288388547741971, -1.3962991506201625], [-0.23960845370341166, -0.5451458255633124, -0.8033702868445866, 1.9697852471220823]], [[-0.9766994083644771, -0.12769851518770386, 0.1724858107768202, -2.484797812380943], [-0.201105644342067, 0.8251981788194773, -0.527829977821249, -1.5373124690239781], [-0.07493187248590086, -0.5502190971711849, -0.8316514652147758, 2.485525505843848]], [[-0.9364932291130548, -0.3347283889953213, 0.10458172606148974, -1.7725755074155911], [-0.336007849111982, 0.7710916961562428, -0.5408477802986973, -1.7242486066557967], [0.10039500565537676, -0.5416405650608946, -0.8345935184986591, 2.936350563322909]], [[-0.8365868127442686, -0.5435297776115958, -0.0685411233631037, -0.7771394914292049], [-0.4027897184407503, 0.6950613277547855, -0.5955251408447638, -1.628769148145121], [0.3713259315760321, -0.4706008197073651, -0.8004073469365138, 3.2247136545145034]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5869225627528859, -0.8093920171147777, -0.020161050628772548, 0.7427375446764295], [-0.44446755501542534, 0.34291485384709797, -0.8275614753899755, -0.3230710849316113], [0.6767351755821434, -0.476753569091931, -0.5610129557219787, 3.2984372313408996]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9959351580343928, 0.08442931702569116, 0.031382342448968904, -2.3526496658962706], [0.048649380433510955, 0.7974298211784335, -0.6014473527074229, -0.7495689188600841], [-0.07580500494323933, -0.5974758327513399, -0.7982958289404052, 2.403827426298131]], [[-0.9901579764738424, 0.13620556270660472, 0.03217493299142758, -2.4297044554546723], [0.08356957516653292, 0.7598190680988451, -0.6447411184808125, -0.5690115189684573], [-0.11226445444445403, -0.635706715743338, -0.7637235519657019, 2.3321466717924695]], [[-0.9703607060447195, 0.2181675967029273, 0.10393748079139854, -2.5808865522892055], [0.12618023215665225, 0.8242176311418866, -0.5520360907837003, -0.6171583031508363], [-0.2061034914243008, -0.522559275359002, -0.8273168404903818, 1.9376507597511017]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8917494062790167, -0.4525226769376336, -0.0024946459106268692, -0.7077620264529222], [-0.31726217858286565, 0.6291145677652471, -0.7096193139045759, -0.9312906522009653], [0.32268824961853687, -0.6320111450621304, -0.7045808726295228, 3.1961622098189775]], [[-0.9385090744060531, -0.3450172131621475, 0.012799995285883992, -1.1611069660429032], [-0.24124443100750326, 0.6288046401376337, -0.7391927008901316, -0.855723706624638], [0.24698550922141033, -0.6968269850997497, -0.6733723420748983, 3.202457853506289]], [[-0.9369009893728122, -0.3453590813402267, 0.05425533197834401, -1.2000525724227342], [-0.28971148213848635, 0.6801487223532465, -0.6733980788496269, -1.1735469427921348], [0.19566244716185874, -0.646625718957328, -0.7372865022184738, 3.0723914261251846]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8568036865824197, -0.5086221458748384, -0.0847995010860868, -0.6019683160259219], [-0.40677085583968675, 0.7677657329613851, -0.4950487351056615, -1.8414053913350354], [0.31689890106818525, -0.3896656156449285, -0.8647171760094946, 2.932480782240162]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.761727104244603, -0.6462806480823333, 0.04575087511087356, -0.08806396544078976], [-0.1978656107616628, 0.16480713438464356, -0.9662752240090999, 0.8527218886872663], [0.6169449073758901, -0.7450905531344505, -0.2534147763899196, 3.1134595280049786]], [[-0.7483274663650297, -0.6615585797795016, 0.0484380904229727, -0.03410459313558549], [-0.1672668628409155, 0.11753346086996097, -0.9788808314454255, 1.0431757435638287], [0.6418939162190693, -0.7406254998959042, -0.19861034521114007, 3.0807052500829077]], [[-0.9938034728168316, 0.030127415585341648, 0.10699063626015681, -1.5211299641448575], [-0.10780288965639959, -0.026763314483303602, -0.9938119852263796, 1.3456742627897347], [-0.027077562647609216, -0.9991877019999875, 0.02984529733557506, 1.9930192880768463]], [[-0.8177117199334324, -0.5742453775170951, 0.03987216427229451, -0.34350126187913227], [-0.15383694070224138, 0.15126130028288676, -0.9764498014297027, 0.9347327695295193], [0.554690669435572, -0.8045882583265678, -0.2120282901033198, 3.2050000171941813]], [[-0.8950334929655812, -0.43244185513626104, 0.10912876979119598, -0.7550958623027687], [-0.1342276355334177, 0.027841216165785276, -0.9905593412519604, 1.073476511871906], [0.4253210414838875, -0.9012318839281701, -0.08296446867389784, 2.9739669913966607]], [[-0.8655704242571767, -0.4951303821585892, 0.0750582794549712, -0.6042623818315992], [-0.240788755969764, 0.28006467467742546, -0.9292925013128865, 0.36639726437701603], [0.4390997786947569, -0.8224412943556016, -0.3616375280427878, 3.3507654235444377]], [[-0.8992657528408802, -0.4314780042775955, 0.07174843268077871, -0.8118574542522866], [-0.24314982264095247, 0.3567730731406066, -0.9019928702775207, 0.13201758262347443], [0.3635921747194214, -0.8285769162283186, -0.42574760642471177, 3.3594816919421517]], [[-0.9494219003314981, -0.2937845951024774, 0.11085425950950323, -1.2722753125378963], [-0.23357110895127348, 0.42480257363642393, -0.874635530089615, -0.052370775294084064], [0.20986327033142127, -0.8562904794007363, -0.471936460398492, 3.2366398887822965]], [[-0.9756669074701738, -0.20425740554348243, 0.07970569583306211, -1.6749762806850879], [-0.1702670441890115, 0.4767919008714053, -0.862368028701534, -0.13456734141012794], [0.138142025939699, -0.8549552008988995, -0.4999683841256343, 3.19258516007005]], [[-0.9885561520434539, -0.14330576122391428, 0.04711892461712208, -1.933804296104663], [-0.1133117411377029, 0.49919538610825365, -0.8590485526491349, -0.1751043234873276], [0.09958505699843614, -0.8545568590142296, -0.5097208953283673, 3.2108830357683518]], [[-0.9948600573463116, -0.09775561341171823, 0.02640655871923646, -2.10950886055539], [-0.07340481916707003, 0.51660256539965, -0.8530729874668108, -0.16337129173774428], [0.06975097719705108, -0.8506266098994308, -0.521122990963801, 3.211286441624665]], [[-0.9995993771006576, -0.024799601107453727, 0.013640567616068716, -2.3137908022741374], [-0.024733601232164493, 0.5310859520110209, -0.8469568823420921, -0.11310341541219056], [0.013759878998945953, -0.8469549523802664, -0.5314865702616343, 3.1035828531917957]], [[-0.9992596912755926, 0.03317876064809547, 0.019474065668569573, -2.4780051216542005], [0.0016267667847725507, 0.5421799103687985, -0.8402608514159815, -0.08920384554417134], [-0.0384372608497969, -0.8396071192137062, -0.5418325039567358, 2.986410531013753]], [[-0.9891885899832885, 0.13725109179818162, 0.05165337595046986, -2.7032469466173117], [0.03603665971099166, 0.5689242021920051, -0.8216000312299561, -0.07627691424574155], [-0.14215235701087636, -0.810855961290535, -0.56771940026377, 2.689147192098405]], [[-0.9983114350999025, 0.056778851517872146, 0.012265421683925883, -2.6783096396833974], [0.02895119639310951, 0.6693946026474968, -0.7423427066886336, -0.38964817178506395], [-0.05035977339286481, -0.7407341142182601, -0.6699081020984212, 2.817525080006105]], [[-0.9830812864233353, 0.14644778369127337, 0.11001922984712392, -2.7105803756214173], [0.022310904134288906, 0.6919056652513803, -0.7216431070479064, -0.5143423341028013], [-0.18180596206106897, -0.7069792055251409, -0.6834668939415351, 2.353989409273162]], [[-0.990746268314056, 0.0582486161014645, 0.12259253869643451, -2.5057067966434468], [-0.03970879320181115, 0.7393139852776853, -0.6721889934499685, -0.7684740312347585], [-0.12978845697606695, -0.6708367386295195, -0.7301595897751951, 2.404744716336922]], [[-0.9921567623140234, 0.02451029452311434, 0.12257326159054684, -2.397037593740284], [-0.06443066953117094, 0.7400096512352119, -0.6695031029819838, -0.8211487948039461], [-0.10711511479861034, -0.6721495083246956, -0.7326263649641271, 2.4314652019625815]], [[-0.9919511529376582, 0.007406623637587151, 0.12640431998923782, -2.3624211561404023], [-0.08055032890951515, 0.7333305227054988, -0.675083690353314, -0.8318416181032358], [-0.09769623686826132, -0.6798319545260956, -0.7268314515119784, 2.4293806476502198]], [[-0.9913369066088611, 0.019673096213166135, 0.12986187616295164, -2.3806871005535966], [-0.07465903696866594, 0.7290502133456774, -0.680376230198802, -0.7993817865627304], [-0.10806093555992217, -0.6841774299887488, -0.7212656088431675, 2.407220251055282]], [[-0.9911726625711555, 0.09015135384202999, 0.09720846862313706, -2.5427935804473143], [-0.005529410861032959, 0.7044727517528214, -0.7097094952537542, -0.5810462893331764], [-0.1324619892162888, -0.7039821556248835, -0.697755649188601, 2.4072779312724175]], [[-0.9865016128545886, 0.14700919315989436, 0.07213088770958184, -2.6744366718177957], [0.05577239304617127, 0.7157948075775256, -0.6960799046222761, -0.46919707544826766], [-0.15396106004181323, -0.6826610363654355, -0.7143317866504828, 2.3633332393415727]], [[-0.9861562989183095, 0.16013305992817498, 0.043048312647318274, -2.7470402607890763], [0.07166450754261425, 0.6457036230423346, -0.7602177514032915, -0.27580661048428656], [-0.1495324461861583, -0.746608487969459, -0.648240551978617, 2.4507712085289035]], [[-0.9786063746643464, 0.1887265248438448, 0.08192595612301756, -2.8350439609270377], [0.06929902260706675, 0.6772905546397735, -0.7324446395881768, -0.364705180596456], [-0.19371940773193125, -0.7110976047042449, -0.6758794179821392, 2.3647641498954806]], [[-0.9838496580618918, 0.1709867979611145, 0.05294681533863456, -2.8570981901263353], [0.07921376126229529, 0.6811677038026335, -0.7278294713206714, -0.37057518750445784], [-0.16051489139073216, -0.7118806600963767, -0.683711119861721, 2.4835655585859255]], [[-0.9655406975445788, 0.24966607751772746, 0.07347115843676502, -2.8946407983889966], [0.10397630405645164, 0.6288614055228252, -0.7705337506161668, -0.17020814790091673], [-0.2385793150712954, -0.7363424355425735, -0.6331506361359378, 2.2628813864099517]], [[-0.9831094452142976, 0.1775447190217266, 0.04442624762381302, -2.824235849106419], [0.08078613483580657, 0.63878808721083, -0.7651296491809871, -0.2554491573385044], [-0.1642236863206008, -0.748617160092544, -0.6423417536376157, 2.464101188582891]], [[-0.977665326455132, 0.19319142417257373, 0.08275012431140455, -2.8345399770249027], [0.07425163946211483, 0.6858480117307714, -0.7239469585833868, -0.3513421508146659], [-0.1966143521835787, -0.7016335072038112, -0.6848746002622021, 2.3142968487999256]], [[-0.9959875409762624, 0.08269417539227727, 0.03421244767989029, -2.663445800738421], [0.031295272738727835, 0.6799981063738757, -0.7325456854232036, -0.3884456418449234], [-0.0838416610299831, -0.7285356879962256, -0.6798575786086373, 2.56344913896985]], [[-0.9924483003403257, 0.10549299671289827, 0.06259072452153884, -2.6580986441730934], [0.028957857732035713, 0.6973361992667287, -0.7161589681542816, -0.4033176339797337], [-0.11919653362061293, -0.7089382574221584, -0.6951249769185852, 2.3978913301111597]], [[-0.9969264376097388, 0.06473972523559675, 0.04411854452693399, -2.570761010363248], [0.012263696768470944, 0.6851599950074702, -0.7282893538854829, -0.3952956839857578], [-0.0773775144103674, -0.7255098546662082, -0.6838480613746674, 2.486485024611398]], [[-0.9980461126259007, 0.06219163282658541, -0.006013142164549852, -2.5686439090641406], [0.04592359160416727, 0.6648952827917238, -0.7455234983925639, -0.2757943569746746], [-0.042367213815656564, -0.7443429745269831, -0.6664522154407033, 2.617491063266539]], [[-0.9927346479027637, 0.12000750618592697, -0.008724523620839919, -2.681809553740036], [0.09208772703907396, 0.7111004365961646, -0.6970337291706347, -0.31368537687933296], [-0.07744526700937185, -0.6927729552543022, -0.7169852600200843, 2.549377053731595]], [[-0.9934414595034466, 0.11426954535999542, -0.004066637785886541, -2.724145394243698], [0.08226570619131443, 0.6895993450686495, -0.7195033682101387, -0.3285020223734926], [-0.07941297201657915, -0.7151190210616062, -0.6944770446828202, 2.56930345980306]], [[-0.9961312455060931, 0.08635722395635617, 0.016277948182478387, -2.7516438802846896], [0.047361021453767645, 0.6835953492487201, -0.7283229586744995, -0.4046951426509456], [-0.07402347852766356, -0.7247343157020183, -0.6850406530057846, 2.6232096567501473]], [[-0.9687622040502237, 0.22427668288940716, 0.10582892570501187, -3.00035136627969], [0.1003748254051643, 0.7448375425195961, -0.6596528857499616, -0.3744056918828159], [-0.22677011802403643, -0.6284242235667666, -0.7440821922381096, 2.046587309167352]], [[-0.9908741658760977, 0.11124110817650579, 0.07611703653592422, -2.8594925082052556], [0.017699699200681485, 0.6672002880622425, -0.7446680443377882, -0.4081125348626142], [-0.1336230071789798, -0.7365250786370574, -0.6630804630594415, 2.463665037065248]], [[-0.9938123994302703, 0.047553586812975474, 0.10037714440981887, -2.724229426532413], [-0.04510708644306066, 0.6530446763713531, -0.7559748682434179, -0.4489354794166167], [-0.1015000763116318, -0.7558249182477749, -0.6468588930087282, 2.517324342435664]], [[-0.9920392828212701, 0.024501179116803787, 0.12352227961524401, -2.6728517177604134], [-0.08068106766573475, 0.6294662301850693, -0.7728278141843207, -0.432661528516146], [-0.09668829639505166, -0.7766414599276065, -0.6224784462627913, 2.5030891885305224]], [[-0.989286396462911, 0.016082859321342353, 0.14509916405506282, -2.660265583478556], [-0.107040931634167, 0.5959438863411385, -0.7958599897516581, -0.3714740943905047], [-0.09927066398648549, -0.8028650110502198, -0.5878376555674302, 2.497966522738035]], [[-0.9936766640190013, 0.01396501375516778, 0.11140765581811093, -2.6759547903447043], [-0.08251354653945281, 0.5820896845811873, -0.8089271374738609, -0.26193275161398005], [-0.07614592583684468, -0.8130046601926653, -0.5772566331220963, 2.5911169775902545]], [[-0.9944283280115797, 0.07737989577890167, 0.07158667597633385, -2.7826523296834584], [-0.0181469247488318, 0.5432953502988138, -0.8393454899300105, -0.033226043403843206], [-0.10384117473456535, -0.835968010197122, -0.5388640796683428, 2.55995373013055]], [[-0.9930790570451057, 0.10314956837186537, 0.05616184650722998, -2.874945373196714], [0.009173835931735985, 0.544850536193292, -0.8384829956201738, 0.025003710240392562], [-0.11708897126843919, -0.8321646830733569, -0.5420259339300273, 2.545944151343077]], [[-0.9910531872318579, 0.11791681122386331, 0.06252364119572662, -2.991957619952164], [0.014008318957364138, 0.5577667624966316, -0.8298795127330321, -0.0003647183664155228], [-0.13273035477073408, -0.8215788850042469, -0.5544283440063407, 2.538018180638063]], [[-0.9877164945496282, 0.13631437541543684, 0.07638401305046497, -3.1115169289029128], [0.004468639274579564, 0.513278886830048, -0.8582102397417198, 0.016284088054302058], [-0.15619269399567942, -0.8473270769836202, -0.5075831625977818, 2.5661730667845757]], [[-0.9627039410370405, 0.2600367069190949, 0.07471300399812077, -3.27476590717052], [0.0765570962691458, 0.5266747940393095, -0.8466124688040495, 0.16144056862733525], [-0.2594997744172184, -0.8093173496091157, -0.5269395550716316, 2.248493892818704]], [[-0.9743023450448318, 0.22021086092735054, 0.04735099967029738, -3.2477938774777297], [0.07942499743821851, 0.5325965240672558, -0.8426343289549839, 0.16229906140967126], [-0.21077620886162746, -0.8172197496886086, -0.5364002894264763, 2.369282703178522]], [[-0.960738212720546, 0.2722447028231091, 0.05352483912435296, -3.2874145410260662], [0.1010724012951996, 0.5230629224278005, -0.8462798289441328, 0.2396566347656951], [-0.25839205931094894, -0.807643486301998, -0.5300429630879004, 2.2415881405137803]], [[-0.9626516120525836, 0.2654527702691024, 0.053260685022079535, -3.2531408535143016], [0.09844618348502981, 0.5264491184835601, -0.8444878179139789, 0.17601767649414254], [-0.2522106714034794, -0.8077042481034383, -0.5329199047003829, 2.2527255532559325]], [[-0.9651301378060886, 0.25733275328412747, 0.04799657472790303, -3.2178634474302137], [0.09614774273981774, 0.5190183249858451, -0.849338324753408, 0.22386854345541238], [-0.24347367139885706, -0.8151072520939181, -0.5256621908787652, 2.2485262212043438]], [[-0.9847236329937502, 0.16876949836371397, 0.04285117321206262, -3.1035954740851794], [0.050010381918305646, 0.5098511611826096, -0.8588077521431264, 0.11791475567913709], [-0.16678827394027151, -0.8435452861955929, -0.5105027147951519, 2.5411201900704943]], [[-0.985746278312604, 0.1603872365702958, 0.05079575905717302, -3.054843502755422], [0.04368783297255866, 0.5355992744144191, -0.8433414436021213, 0.05024421046948858], [-0.1624673753188997, -0.8291015327401657, -0.5349719622231578, 2.5523150131639096]], [[-0.983557418642065, 0.17097277636023545, 0.05816454227302616, -3.0836564432323246], [0.053174687929267, 0.5819610971163791, -0.8114762682954597, 0.013212303065744384], [-0.1725898513754004, -0.7950406223500612, -0.5814835784572463, 2.450055463490552]], [[-0.9801327265330324, 0.1965675975102974, 0.026476744285403045, -3.0907906583275375], [0.0756098018030224, 0.49370027215054985, -0.8663389631949961, 0.27571630807596315], [-0.18336574448416632, -0.8471252687103029, -0.4987542309216688, 2.449282164547333]], [[-0.9813233306354534, 0.19154595634056784, 0.017738865806973925, -3.099192615164601], [0.09233014613759535, 0.5498992226933099, -0.8301120340023409, 0.19855932033018964], [-0.1687591919415083, -0.8129704739354748, -0.557314402868236, 2.4936609971671038]], [[-0.9621809728482252, 0.27177502018779454, 0.018604136388630427, -3.2073055091801606], [0.13400456875940134, 0.5316712349840184, -0.8362825320680661, 0.3651733152394399], [-0.23717198620505278, -0.8021621010073295, -0.5479830404921829, 2.275842007602413]], [[-0.9675977016572969, 0.25238885136312905, -0.007386166469633151, -3.2228096971571194], [0.14457790269967685, 0.5298199778183995, -0.8356961296760164, 0.3968507907398074], [-0.20700704770243827, -0.8096855308155819, -0.5491424436240653, 2.3886193106935485]], [[-0.9391392413544317, 0.34322230615022964, -0.014694689827974977, -3.301619409608129], [0.17904008867786422, 0.4524943455356012, -0.8736094744818936, 0.6216469424390855], [-0.2931929944498075, -0.8230718776748638, -0.4864057485128328, 2.095054086661974]], [[-0.9397343717053578, 0.3413775833599837, -0.018990950867024986, -3.3492132627131226], [0.1743170777916335, 0.43059139787808054, -0.8855532759035931, 0.655514373628604], [-0.2941306971836194, -0.8354952984025088, -0.4641494795015725, 2.1578343843548216]], [[-0.9336185229038587, 0.3578714813015501, -0.016865840087323503, -3.4219169386744492], [0.19162023647706528, 0.45901617434711883, -0.867517052662487, 0.6612272897297506], [-0.30271791929664565, -0.8131618255665775, -0.49712142055833825, 2.131925434698258]], [[-0.9141011067391285, 0.40479921527800816, -0.023595804046680657, -3.4541003801624393], [0.2090273500666669, 0.42055504096897856, -0.8828595723214919, 0.780186551182835], [-0.34745752773887006, -0.8119550805468793, -0.46904393567309144, 1.8874846832603671]], [[-0.9090658182499274, 0.41511713636339503, -0.03573655253440894, -3.4687714640896394], [0.23105222844547152, 0.4308850126702898, -0.8723261853151641, 0.8323257402440529], [-0.34671920313125393, -0.8012589275344012, -0.48761657603741226, 1.9157765683126113]], [[-0.8900783397452664, 0.4535757196660506, -0.04505125576201402, -3.4675465950635105], [0.24455199241376488, 0.39180249247436794, -0.8869527213427619, 0.9883657589478021], [-0.3846490245961479, -0.8004747800026542, -0.45965775796448227, 1.6960451915282773]], [[-0.9059171485414883, 0.4221800456931861, -0.03283487470599619, -3.5001942376910806], [0.22073475389116073, 0.40463414440855405, -0.8874386613188353, 0.8965679094658302], [-0.3613727831520629, -0.8111936995547099, -0.4597548187889663, 1.8930247019185251]], [[-0.9107837570537474, 0.41075471160597793, -0.04187498991701785, -3.4511216204080974], [0.21147882172150717, 0.3769905954443872, -0.9017509627994693, 0.9268260401221456], [-0.35461197928206467, -0.8301558033525855, -0.43022283331975764, 1.9425016607426595]], [[-0.9240381215340407, 0.3802196132017417, -0.03983209370042248, -3.400347811781862], [0.19221335127034733, 0.3719964499574495, -0.908114898464108, 0.8761262124103246], [-0.33046569798583236, -0.8467890451321233, -0.41682218690823514, 2.039049577844417]], [[-0.9511537524278857, 0.3085237272453873, -0.010938417114293497, -3.3373559312800065], [0.14860745247363183, 0.4265130406957556, -0.8921896946197918, 0.6355309560577131], [-0.27059631245020627, -0.8502351062165534, -0.45152840425080265, 2.245414915156177]], [[-0.9715898394921167, 0.2366657395785735, -0.0015847729836160063, -3.2144134095509695], [0.11837823319244417, 0.480161066115005, -0.8691558804343084, 0.44554482047546634], [-0.20493847296668843, -0.8446506249906106, -0.4945356852655356, 2.4845880200178967]], [[-0.9829915367071282, 0.18312772996746643, -0.013851833059963278, -3.0972192834003374], [0.09719439568168928, 0.4547551616406015, -0.8852971209765121, 0.43832496032200474], [-0.15582325952895998, -0.8715858979344449, -0.4648194642133411, 2.6556890564531757]], [[-0.992760485421352, 0.11986569230820575, 0.007670358103504332, -2.9702089074030753], [0.0543177662603888, 0.5049973380007368, -0.8614100468886182, 0.22535619047964198], [-0.10712702205533027, -0.8547572195773746, -0.5078522390675386, 2.782084871790011]], [[-0.9987710858482316, 0.04021851799994114, 0.02896185220998426, -2.7580753936237743], [-0.005805543709106426, 0.48540151371137463, -0.8742720778733287, 0.09700489297657537], [-0.04922005420340589, -0.8733658118432358, -0.48457150655772085, 2.9374606098960347]], [[-0.9972904715496534, -0.05121542017847344, 0.052808106311552416, -2.4374481139748254], [-0.0714899158271507, 0.5054626805235187, -0.8598817770676422, -0.12890692965148373], [0.017346679546723507, -0.8613271500039471, -0.5077545010876628, 3.1201518727223663]], [[-0.9861232730967635, -0.137383966698018, 0.09320158770774173, -2.1244764356273764], [-0.14981861238707694, 0.4945838486850508, -0.8561198514240241, -0.27262498326989615], [0.07152114120549805, -0.8582030425920198, -0.5083033189410263, 3.2240094583627403]], [[-0.9678141848490524, -0.21442375555985727, 0.13175035732995566, -1.7654306439803797], [-0.22774296258086407, 0.5234370471185146, -0.8210644315148121, -0.5517104017459328], [0.10709270096442407, -0.8246430201944699, -0.555423300415717, 3.2321941888288657]], [[-0.9215863267273544, -0.35908616078660016, 0.1474305650830987, -1.3080421203192838], [-0.332132824083489, 0.532865740506241, -0.7782942179928244, -0.7863543968434197], [0.20091398546519362, -0.7662318394104201, -0.6103460811033493, 3.289091264256806]], [[-0.8794308411805054, -0.4438859601995535, 0.17194955631890718, -1.021308007356825], [-0.39515568731036077, 0.479322183566273, -0.783646748942109, -0.7653671648667351], [0.2654305528133961, -0.7571099647204366, -0.5969347727802379, 3.334275947675811]], [[-0.8512268873606041, -0.49060714303157904, 0.1863261050974051, -0.8499445050798722], [-0.41473572853712726, 0.41132540236561277, -0.8116684599290187, -0.5816804305685657], [0.32156968406420994, -0.7681901096572115, -0.5536035528387491, 3.3625751688332004]], [[-0.9671353394400476, -0.07281919439081556, 0.24361157635559194, -1.6478956985256081], [-0.25398787868512296, 0.3211723495395441, -0.9123258624922786, 0.10252913013094755], [-0.011806468024563796, -0.9442169702030999, -0.32911232200156726, 2.688877874416043]], [[-0.9739056171270706, 0.027809633829084593, 0.2252431423920205, -1.7030955236469567], [-0.19768300423035579, 0.3835836903699761, -0.9021003172156696, 0.26434912505520725], [-0.11148667528812997, -0.9230873072187933, -0.36807681872777087, 2.5524023849020123]], [[-0.8820719886905912, -0.4364651804878758, 0.17733345141036322, -0.8274706577020742], [-0.29595714235576726, 0.22050194979172266, -0.9294020981397969, 0.4907955068743847], [0.36654928271111614, -0.872282658522875, -0.32367358091792375, 3.1973383289717017]], [[-0.9272758755762828, -0.3354754893886967, 0.1661795612993751, -1.0980624939444898], [-0.23699601405113763, 0.18238589850105769, -0.9542370110993574, 0.7510256930875885], [0.2898143196912659, -0.9242248536191702, -0.24862839752231114, 3.000263591263157]], [[-0.979421551366149, -0.15387988226486526, 0.13059252104801938, -1.5119272097513177], [-0.15678065513593764, 0.17261528566030593, -0.9724318944437998, 0.9435275497909916], [0.1270954401018084, -0.9728951356598318, -0.1931885196246541, 2.6872719043322144]], [[-0.9991002139954316, -0.0011551369962924697, 0.04239608534761845, -1.7844696584143986], [-0.041850100733877876, 0.18900501817226134, -0.9810839271816999, 1.1236139795222706], [-0.006879786540803883, -0.9819754420372347, -0.18888329670177306, 2.4252256632265947]], [[-0.9516527544588664, 0.30124783840051816, -0.060056430045979534, -2.1997602119093695], [0.10739138810549931, 0.14311145686009685, -0.9838628972962417, 1.4626176241398525], [-0.28779180789526715, -0.9427453796091477, -0.16854383564514475, 1.787717879377489]], [[-0.8549172106019124, 0.501284659089116, -0.13352997258501195, -2.4040808705196763], [0.23587232365685395, 0.14636238150962788, -0.9606988603155238, 1.68351704448424], [-0.462039835890112, -0.8528140148008465, -0.24336689629014774, 1.3778079927250748]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5018725594783089, 0.8323065621787297, -0.2353502084063571, -2.5032201168700983], [0.5201422812956477, 0.07301787511878444, -0.8509526409393751, 2.1239406456437107], [-0.6910686950305669, -0.5494853742069592, -0.4695635018625142, 0.6387834313620021]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6842754467454053, 0.7216026946456788, -0.1051506731384603, -3.6789462823669337], [0.4334950321881251, 0.2865729555075146, -0.854375794507256, 2.3153314642326532], [-0.5863865363815856, -0.6302106729116731, -0.5089060204975215, 0.13665010339206696]], [[-0.627690086976781, 0.7664131970953216, -0.13644033871699657, -3.5533903669743805], [0.4461874293966103, 0.21057822359430933, -0.8698123875849949, 2.5618454451631627], [-0.6379043286885001, -0.6068505772148464, -0.47414179775092763, -0.3470148500475162]], [[-0.7706989479990307, 0.6250052377433611, -0.12406282419222958, -4.001186583308112], [0.3943014911790007, 0.314838931810839, -0.8633671183628825, 2.2504765814038574], [-0.5005491640260763, -0.7143142864381026, -0.4890865307726444, 0.31015077090958215]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8016295095290642, -0.5818641851556403, -0.1372013100715684, -1.86420548861436], [-0.1515270181932545, 0.4197697417250057, -0.8948926900414278, -0.026804540149163312], [0.5782989643857691, -0.6965826827917017, -0.4246679571442403, 4.457638202337153]], [[-0.7142341893958719, -0.698772911826086, -0.0398238671667453, -1.3313159814892346], [-0.3027722157181537, 0.3597690101104094, -0.8825504205161856, -0.533720491922807], [0.6310297204467801, -0.6182901236978229, -0.4685283501033736, 4.555126817595376]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8414578353271984, -0.5392781276003651, 0.033582919145149936, -0.6411752084859907], [-0.24687021595215075, 0.32842689500473, -0.9116966990799574, 0.10592225044763148], [0.48062855495923645, -0.77544495338444, -0.40948909195288674, 3.707031556544182]], [[-0.8340651805502604, -0.5515012065478755, 0.013479383142382506, -0.68228826910167], [-0.17178151551602944, 0.2364202156961347, -0.9563454357799849, 0.5481675845141143], [0.5242388630392426, -0.7999699374266701, -0.29192758296004084, 3.6320494018608245]], [[-0.869689526720699, -0.49273431458328637, -0.029206546260476807, -0.8609991242438865], [-0.1167909979902571, 0.2629079714029834, -0.9577260889007919, 0.6968512238865932], [0.4795831418020927, -0.8295132872985862, -0.28619524156478715, 3.485564426053813]], [[-0.8766890720646884, -0.4795119368377059, -0.038530161594620416, -0.9457784227277951], [-0.06447266380342276, 0.1964909587040461, -0.9783836562257443, 1.0205555642950879], [0.4767174703579117, -0.8552541175450233, -0.20317688814881674, 3.248419824833246]], [[-0.9001075020694199, -0.4344926366718421, -0.031978639688074906, -1.0791586703183202], [-0.042029778032728254, 0.1596600425676764, -0.9862769228598058, 1.2055218924912952], [0.4336357716758025, -0.8864112022561754, -0.16197283117206063, 3.0387689417197907]], [[-0.9091744993096891, -0.4151908258442887, -0.03191093761884281, -1.1689790635281723], [-0.03721953442193013, 0.15734953649016103, -0.9868413396406467, 1.2834648960365544], [0.4147486420259756, -0.8960232706247472, -0.15851139528923497, 2.9160836801576413]], [[-0.9553935294796088, -0.2911927844805252, -0.04929468627524207, -1.4418513407527054], [0.01635004788302305, 0.11450522334698676, -0.9932880900123988, 1.476246906154573], [0.29488282378381925, -0.9497869845879838, -0.10463653350788149, 2.603206751014096]], [[-0.9879098535565631, -0.13067419207119627, -0.08341688541530534, -1.715166731233709], [0.06361693431825463, 0.1489761762413857, -0.9867922702273474, 1.5188897556714867], [0.14137541127719824, -0.9801685336915461, -0.13886194095996007, 2.397019187269356]], [[-0.9818864842607262, 0.1418950058675927, -0.12555771316787506, -2.1199913980977856], [0.14701502590065454, 0.1525372785450111, -0.9773018780364188, 1.645462732309956], [-0.11952202385142426, -0.9780583755399864, -0.17063499011205818, 1.9858022873820245]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3479499560922502, 0.9358416084102945, -0.0559581274117914, -3.1836111697568388], [0.525685079191937, 0.14533392385686628, -0.8381725646257658, 3.4423535407714514], [-0.77626414677632, -0.3210584596991641, -0.5425269024529863, -1.9445356093106623]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.05424567764677701, -0.9966375611665941, -0.0614082903893739, 1.791782873811362], [-0.7325979613222857, 0.08151182089509212, -0.6757633092442927, -2.216955458322582], [0.6784965980187913, 0.008330349708756957, -0.7345563094485383, 4.032214346565099]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.25240297283845026, -0.9650948929079465, -0.06988982032679641, 1.8848184294366024], [-0.5599286128614457, 0.20458217412581503, -0.8028860956132021, -0.4346074193736432], [0.7891594818548211, -0.16351752723470958, -0.5920213936047212, 3.1751924722521188]], [[-0.2085033291776215, -0.9771363075530204, -0.041605266295243526, 1.9675491716734044], [-0.5365409254087601, 0.14984830215469835, -0.8304633174938351, -0.22534838749575], [0.8177103381291937, -0.15083143837742896, -0.5555174885758647, 3.04804401529008]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.12764343055428784, -0.9839560285963225, -0.12465026444129801, 2.1924451325597274], [-0.5268959469992169, 0.1737490485470321, -0.8319807264382988, -0.03168863827728889], [0.8402903163027234, -0.0405191549511324, -0.5406203681049346, 2.595050268031188]], [[-0.06820583288340443, -0.9917435783404484, -0.10859391871170382, 2.252051227554677], [-0.4354056306052737, 0.12752424950569763, -0.8911562728417686, 0.2289509865852219], [0.8976468688732253, -0.013499652161876097, -0.44050863577642063, 2.5158783115527874]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5604836476285731, -0.8059849244518045, -0.19038482685704894, 1.0602540792922956], [-0.1496525101992977, 0.3246717505708543, -0.9339124051924279, 0.36823369694905483], [0.8145318943614293, -0.49495106418480983, -0.30259087416891073, 3.333889466777572]], [[-0.7792629872502146, -0.5885596185545998, -0.21528300469088543, 0.2019115531607343], [-0.02492966609519176, 0.37236039395295295, -0.927753334008336, 0.4955998291690544], [0.6262010128147782, -0.7175969010677686, -0.30483926769312497, 3.592751042418885]], [[-0.8995687214023212, -0.3258665991572802, -0.29083857211219655, -0.7623142751659231], [0.13079315070835493, 0.4343437206460343, -0.8912006979705197, 0.705300725898371], [0.41673644813283905, -0.83973596558027, -0.34810090621628276, 3.5952250481756476]], [[-0.9513921637040382, 0.029264570347620172, -0.3065885447385759, -1.792132395049876], [0.2984696199019604, 0.3331081661326517, -0.8944019430051133, 1.280723854073649], [0.07595285931502396, -0.9424343661911485, -0.3256510841126753, 3.098131161661906]], [[-0.9240280238253746, 0.19376363175216454, -0.32958741813907955, -2.2549493715495057], [0.3783890951285878, 0.34010591019506997, -0.8609004951434003, 1.4532380134760545], [-0.05471657768118715, -0.9202084681530565, -0.38758543737641116, 2.815408146395458]], [[-0.9242211623710163, 0.20917057554633467, -0.31947286794215046, -2.3764962756444357], [0.37875070489096885, 0.39563598364244645, -0.8366720217575508, 1.3027815097702207], [-0.04861220597917626, -0.8942705623987007, -0.4448786516084464, 2.816024075041556]], [[-0.9260620433447975, 0.21222956997989006, -0.312037980864845, -2.429203309728492], [0.37622828405268793, 0.4549219633038051, -0.8071544372563296, 1.1567415640973737], [-0.02934910824588058, -0.8648726015604628, -0.5011327298383221, 2.84261218968512]], [[-0.9369348150753326, 0.20128444034420415, -0.2857231638755823, -2.4819760872370153], [0.3473047520418432, 0.4446292761891181, -0.8256416995069319, 1.079255378666154], [-0.03914794386562548, -0.8728054656284306, -0.48649569130695525, 2.7444363274028256]], [[-0.9395802063028151, 0.24761543121052057, -0.23638027445281323, -2.6061472473330696], [0.33172158498988824, 0.4880065412679533, -0.8073477600956642, 0.9791668918475231], [-0.08455664359324892, -0.8369804142906319, -0.5406606700307752, 2.581515990758029]], [[-0.925311128289567, 0.31998956677121576, -0.2034846260066303, -2.733388498063962], [0.35237905719576884, 0.5273144978650354, -0.7731548489087858, 0.9442969470270844], [-0.14010109176344637, -0.7871125062523883, -0.6006875948342654, 2.366801313967899]], [[-0.9279195726172651, 0.2954851925114041, -0.22727465270084676, -2.72697022464232], [0.36279834265950767, 0.5756793548086575, -0.7327828075293538, 0.8231184025601611], [-0.08568914352067311, -0.7624183769123, -0.6413856790021956, 2.5350909589172077]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9375961114934136, 0.25894757888941083, 0.23207689049050695, -3.2260088939243308], [0.013935199224324027, 0.6948576836402374, -0.719012245868388, -0.22560721436247652], [-0.3474468908121193, -0.6709090481379999, -0.6551043483228869, 1.489550466649915]], [[-0.9667013176506387, 0.1411213974810963, 0.213479070696641, -3.1772805599699208], [-0.0739496766922785, 0.6445677705244318, -0.760962439623843, -0.4000491211725104], [-0.24498981156290253, -0.7514101013255983, -0.6126686313630132, 2.014684635713144]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9439746346202857, 0.24681948660624992, 0.21907083380707085, -3.1496618689067235], [-0.012818843764177593, 0.6358909192205304, -0.7716724798108445, -0.23559668085303606], [-0.3297689591790708, -0.7312474819678327, -0.5971009576927979, 1.7266667167357461]], [[-0.9610434559239533, 0.2084667229602848, 0.18148581554475315, -3.1033340890414722], [0.018962081029267205, 0.7047927325323635, -0.7091598153114738, -0.32698507445953595], [-0.2757461066067548, -0.6780920509693089, -0.681289406275668, 1.8206284067679284]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9695152723934837, 0.19542517293693365, 0.14781454048353584, -3.001417072258521], [0.0444495925889139, 0.7335087525733174, -0.6782249948335846, -0.4053847543895192], [-0.24096549610778065, -0.650979194506941, -0.7198345073727888, 1.900106682674845]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4879973334903052, -0.8724965016096158, -0.024666924926580847, 1.1110966508787683], [-0.2705951876892611, 0.17809415556419061, -0.9460764853611423, 0.5354433968309282], [0.8298414588978822, -0.4550080509538923, -0.3230028276368102, 3.142852500145957]], [[-0.4194421399681855, -0.9073446716844809, -0.028176905165237187, 1.2647345357357034], [-0.24011371203478177, 0.1408252532139811, -0.9604757432387849, 0.7551234297308009], [0.8754505677145838, -0.3960983398387323, -0.2769339427827747, 2.853596883938993]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6010734579840851, -0.7967181511464766, -0.06285607163030821, 0.8028447274637727], [-0.0912798558925868, 0.1465735736342606, -0.9849792766451033, 1.0131204749476173], [0.7939639072497457, -0.5863074066953464, -0.16082580277708824, 2.889291748030229]], [[-0.6063764883316711, -0.79314946944563, -0.05675802601100666, 0.752152958881007], [-0.16068847618616855, 0.1921284443479594, -0.9681249271108561, 0.8563450959920328], [0.7787726035368204, -0.5779278328567925, -0.2439521510254289, 3.01726311385232]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8910800480081497, -0.39128966590900505, 0.2299320451668555, -0.7594725919520549], [-0.19092541434349405, -0.13642587479595902, -0.9720779119206042, 1.2355929328807953], [0.4117327217984488, -0.9100991034162027, 0.04685923347073229, 2.6280674532017065]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7687982877638034, -0.6394045506704062, 0.010536285560866776, 0.014284735259353329], [-0.31964363238115245, 0.36995411640749354, -0.8723313017605948, -0.05671904629018716], [0.5538746618230761, -0.6740146677447957, -0.48880168438257887, 3.3693189291391987]], [[-0.8673839419322158, -0.49693580758618516, 0.026455631098054683, -0.4970900683137007], [-0.2947708779692425, 0.4702257990453972, -0.8318640678700815, -0.30304954471038903], [0.4009429220966151, -0.7293438839469235, -0.5543485114707571, 3.334188802579986]], [[-0.9542242359005529, -0.29717579906095754, 0.03380313702139595, -1.2186809670928282], [-0.19759561746695514, 0.5415276836675941, -0.8171314091255227, -0.31707163052807186], [0.2245263449527886, -0.7864059462352068, -0.5754594756783924, 3.2197192534660424]], [[-0.9973936310242769, -0.0721173785933524, 0.0022424310539358554, -1.921510366215906], [-0.04373496828051152, 0.5795577458894804, -0.8137567644751145, -0.1739712968470951], [0.05738638637962169, -0.8117338867414168, -0.5812012558262082, 2.9924476251843513]], [[-0.9875143024244415, 0.14897142743511138, -0.05121539138885972, -2.651022757963349], [0.12455914199366878, 0.5393765204655108, -0.8328012904146584, 0.1890751002774746], [-0.09643921740127198, -0.8287825305702725, -0.5511977815345104, 2.672327940961545]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9851518060807274, 0.14639319436927967, 0.08969365428077787, -2.6603931213242946], [0.06403997483806839, 0.7980595262111534, -0.5991659822172557, -0.8032624926427883], [-0.15929469733365564, -0.584525470160187, -0.7955848000907206, 2.192848008563353]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8888661557745299, 0.45472340664237465, 0.05606764280904855, -3.2777429671806018], [0.3476853905817564, 0.7491530301355578, -0.5638125633707745, -0.06813495505345563], [-0.29838201402668507, -0.4816600054917013, -0.8239974592285546, 1.6690744757083646]], [[-0.89734003893913, 0.440652729263685, 0.024617609737467128, -3.3353540755574054], [0.34143992009793417, 0.7284838059026305, -0.5939108733649645, -0.03867755359563069], [-0.2796419773214261, -0.524534571529927, -0.8041541194259213, 1.7956213979411286]], [[-0.8771409459154642, 0.4723094789801667, 0.08687644711893247, -3.3471703715155745], [0.345220868895638, 0.7458956091142106, -0.5696159161953619, -0.03727057518215297], [-0.3338357570384962, -0.46964188097913956, -0.8173066688538093, 1.4864970840523832]], [[-0.8546543004832692, 0.5051059356341764, 0.12014166826117138, -3.332033243429949], [0.3709157540252709, 0.7559133263313114, -0.5394594947635987, 0.05265304720719328], [-0.3633008809256026, -0.41648893966329487, -0.8333963241200586, 1.2302222941905971]], [[-0.8601053188361418, 0.501657246373137, 0.09251404039981892, -3.3211264560238845], [0.3937038920185739, 0.7681357725262211, -0.5049402740671143, 0.12485438539002543], [-0.32437029136344264, -0.39787867764793217, -0.8581820738945362, 1.3084735441929098]], [[-0.8409735229472398, 0.5272148526368332, 0.12168826098202963, -3.3093112016445], [0.4020056107145101, 0.7593450319571288, -0.5116508686556496, 0.1900630848947406], [-0.3621533137440027, -0.3813654698594896, -0.8505323954695017, 1.145455401213272]], [[-0.8607598809486842, 0.5030622619472388, 0.0775937365625266, -3.333840046273991], [0.38854465636274066, 0.7478439064174074, -0.5382959610161605, 0.17519049144260826], [-0.32882438681029547, -0.43319493561083994, -0.8391761855533993, 1.36363709382491]], [[-0.8711454248313637, 0.4855352842483768, 0.0732197824718945, -3.3082076632390307], [0.36473426489911187, 0.7396886202500487, -0.5655348451519888, 0.09643331621927867], [-0.3287469616648768, -0.4659573294009092, -0.8214677123135671, 1.448954510513676]], [[-0.9281258203741861, 0.3714336648920582, -0.024889639201848626, -3.134119096191776], [0.3231190425262559, 0.7705868554149441, -0.5493541504518042, -0.10320769284525806], [-0.18486899662101175, -0.5179120879517702, -0.8352188475134994, 2.018545535139015]], [[-0.9462587544201607, 0.3225186984602534, -0.02400122552516211, -3.0768743003959873], [0.27698487874698374, 0.7698773685639905, -0.5749506190261074, -0.24399112570983514], [-0.1669543249775945, -0.5507000331546109, -0.8178360024202809, 2.097157207648994]], [[-0.9584097723054257, 0.28085171261875475, -0.050724982686774805, -2.975549803473328], [0.25864835604946157, 0.7796329912972332, -0.5703274732939306, -0.3050783288705515], [-0.12063057764253696, -0.5597273572017368, -0.8198497114334958, 2.1914265918958225]], [[-0.9425904131158895, 0.33261723247888186, -0.029817608222423547, -2.9861085078156964], [0.29530054118657745, 0.7884724294462946, -0.5395450105208761, -0.18911687634406954], [-0.15595160620183093, -0.5173751102064608, -0.8414286017612674, 1.9276514435183203]], [[-0.9476575641656748, 0.3116225465139656, -0.06954516218782415, -2.900649730071011], [0.30132279559841546, 0.8008292280494459, -0.5175684692429439, -0.16901453879524592], [-0.10559220583137251, -0.5114332175425056, -0.852810852453101, 2.052712451466215]], [[-0.9395615231615251, 0.3344458703700336, -0.07328099335315344, -2.9059878377863106], [0.32833578646612605, 0.8194681081298631, -0.46975273398218054, -0.11529673858698172], [-0.09705542499038755, -0.465422366835215, -0.8797512517350806, 1.9700422282911259]], [[-0.95544344263902, 0.2584334132271584, -0.14261836784179813, -2.7738052168879177], [0.29411158666864645, 0.7925448031588929, -0.534201375487824, -0.15959757261140514], [-0.025024038549940758, -0.5523449157126302, -0.8332399963882305, 2.3776593141405824]], [[-0.9427412875386919, 0.3178266881184076, -0.10111904414883706, -2.8831073341448232], [0.32179117924549777, 0.7870519316485572, -0.526307603828851, -0.09104120473263068], [-0.08768866363266066, -0.5287111245358465, -0.8442601761674888, 2.161487553504238]], [[-0.945467271306343, 0.282074206520981, -0.16286737212866143, -2.813951218238622], [0.32401877902488935, 0.763518994313918, -0.5586148728427154, -0.08523621504725329], [-0.03321851483370146, -0.5809241665978633, -0.813279560135886, 2.506395426003888]], [[-0.9464647499545952, 0.28267949487777194, -0.1558742450471969, -2.9198052975934], [0.32181136040526365, 0.7883551001274741, -0.5243411908453443, -0.1990347314392175], [-0.025336246910293958, -0.5464325569351153, -0.8371197855228683, 2.46608499181719]], [[-0.9317293417662454, 0.34557019907625525, -0.11163185567854937, -3.054598518406615], [0.3511421141137096, 0.7788868977887569, -0.5196483581699852, -0.10724603352361685], [-0.09262639681858335, -0.5233702685130327, -0.8470560268654032, 2.2088640361845036]], [[-0.9027482674457992, 0.4257422686746816, -0.061555554480026496, -3.1820370229578994], [0.396811691108547, 0.7689244406152247, -0.5012940119571937, 0.05552479850516958], [-0.16609047962837423, -0.4769682644456538, -0.8630847161713142, 1.86130260157114]], [[-0.8663342634585225, 0.4939344044864102, -0.07411982206154036, -3.3129202462577205], [0.46895824583168827, 0.7533451490533987, -0.46103063896467705, 0.31224524003077064], [-0.17188108570824442, -0.4341657407746124, -0.8842833267190935, 1.7664035879966316]], [[-0.8260513787655883, 0.5629828183880664, -0.026257681529409757, -3.3778131339794375], [0.5150334269582929, 0.7351368126286039, -0.4408111112867436, 0.5195787983817194], [-0.22886609350243925, -0.3776562099556771, -0.8972157479262423, 1.43894245176747]], [[-0.7890025933109339, 0.6143161909907923, -0.009514475034667347, -3.4173176294739505], [0.5461474951874331, 0.6941879058404747, -0.4688561238645699, 0.7026877702580923], [-0.28142107463570243, -0.3751250043270651, -0.883223306915927, 1.313871489252915]], [[-0.8139831587841732, 0.5790792669033574, -0.04581069589527188, -3.4466931051355454], [0.522098410464292, 0.6947521168622701, -0.4947047057650193, 0.6138001948636191], [-0.2546461603998747, -0.42659899057319, -0.8678528874386119, 1.5661480070874672]], [[-0.8397248612071124, 0.5419440460652546, -0.034041275021914896, -3.4815622862430398], [0.48945512325716434, 0.7282667737733564, -0.47964694154665605, 0.4163135443488101], [-0.2351506746492779, -0.4194331378803639, -0.8768010053939387, 1.661212702288259]], [[-0.8733795245145684, 0.4865726485860223, -0.021336911835825784, -3.4976672664562054], [0.4385616522214442, 0.7666366317613509, -0.4689690310056815, 0.16650007884113732], [-0.21182984529924848, -0.418945500619823, -0.8829568416128291, 1.7338295940843673]], [[-0.8988244569274126, 0.4376719828544994, 0.02361844731037417, -3.398609859985789], [0.3662926507668014, 0.7796456678342543, -0.5079196064551059, -0.056939548457389855], [-0.240716201414388, -0.4478793007624826, -0.8610806247530702, 1.6645333848453423]], [[-0.9093580285262848, 0.41306460592101824, 0.04945308170481261, -3.305120922024813], [0.3392053666057858, 0.8050259718046484, -0.48669590504319615, -0.1400551909627823], [-0.24084786737819258, -0.42580607799242987, -0.8721705617160451, 1.5648411941974618]], [[-0.94525625756417, 0.32632703027365634, -0.0011299772364319893, -3.145005245097413], [0.2801653103270492, 0.809756525014139, -0.515559665883954, -0.3017181578463561], [-0.16732604825647096, -0.48765258074760787, -0.8568529360777554, 1.9591098867697163]], [[-0.8011460383273002, 0.5475189392656903, 0.24163616537647206, -3.2863698273356916], [0.40839059907329744, 0.7952945460216311, -0.4480219901486989, 0.16338049361966436], [-0.4374724492594083, -0.260249104155271, -0.8607486624592302, 0.47558875612642865]], [[-0.8699138268897043, 0.49081536014495075, 0.04847902672178869, -3.4250984228076353], [0.3986290035498852, 0.757578112147497, -0.5168852111676827, 0.16394347366022238], [-0.29042185061550585, -0.43032044599439695, -0.8546809126476664, 1.3516179385802973]], [[-0.8560688281587515, 0.5146148067403495, 0.04814314217512447, -3.5429295730696357], [0.4392243634730954, 0.7734152804656905, -0.4570675688274452, 0.18625597226320886], [-0.2724483804072907, -0.3701356570580168, -0.888128073752696, 1.363693183780347]], [[-0.8383011568764303, 0.5439231573390454, 0.03740012419716479, -3.6153476213245463], [0.47633270728123656, 0.7640492495516344, -0.43512744826511696, 0.28374899772244566], [-0.26525143233122617, -0.34695294085784645, -0.8995917598979691, 1.374763534739336]], [[-0.8481124930974917, 0.5263198462528105, 0.06076691939184206, -3.65283288358543], [0.42790989586195466, 0.7480936594923366, -0.5071971979918413, 0.19642277386220636], [-0.31240729837084114, -0.4041575139321078, -0.8596850492225916, 1.318014184553387]], [[-0.8592021622357732, 0.5096627846792564, 0.044894212570872005, -3.609150003282994], [0.43143323361772434, 0.7688875340650897, -0.47188698317442457, 0.19159299989827477], [-0.2750218342959823, -0.3860774609742086, -0.8805152950336423, 1.4186880047202055]], [[-0.9145972615765035, 0.40321020373649563, -0.03055128016195731, -3.421839991077303], [0.36026943943919154, 0.7782212464515718, -0.5143710942282163, 0.03718238890199973], [-0.1836240183715937, -0.48144908679333437, -0.8570233349815702, 1.8534070745222773]], [[-0.9234184690196405, 0.3832315999003067, -0.020781528126561893, -3.3400885051131532], [0.3343409003645929, 0.7766637053904303, -0.5338629515827075, 0.017209408693672965], [-0.1884528944240899, -0.49992702424159685, -0.8453156079335843, 1.8098038361152224]], [[-0.8250827426936123, 0.4933192846563954, 0.2754533555709369, -3.3135433882200678], [0.35857506366079694, 0.8339439133854978, -0.41947761924557636, 0.012544638656629813], [-0.43664904835558965, -0.24733304007629808, -0.8649647252095165, 0.41058293560554165]], [[-0.9476302179373214, 0.3170059278481565, 0.038784168950658796, -3.2060992700368574], [0.24453381042460365, 0.7983211744270918, -0.5503512678467932, -0.2469787899855331], [-0.20542683761205072, -0.512045451274082, -0.83403193597022, 1.752179518283278]], [[-0.971875362813682, 0.22868395041306272, -0.05623104106497037, -3.0890566816309937], [0.2232954421453494, 0.8190111118205541, -0.5285451203365449, -0.40209936702886606], [-0.07481593862866004, -0.5262361157673764, -0.8470408052680682, 2.2609350840348257]], [[-0.9542274935979224, 0.2963849560428637, -0.0400730369861907, -3.211828894381848], [0.27472202190677014, 0.8156386711087222, -0.5091771488111516, -0.27547280173258265], [-0.1182273282337166, -0.4968797802521927, -0.8597283192004609, 2.083625712783797]], [[-0.9533710166631946, 0.30179513290939536, 0.0018445429752698278, -3.3052801454392893], [0.26742224086919003, 0.8475883838961584, -0.4583440591660366, -0.39531942690144073], [-0.13988941945368172, -0.43647866985283346, -0.8887729299930403, 1.8969013498937992]], [[-0.9607883865807275, 0.2723478979092632, -0.0520797342159985, -3.234623369851038], [0.25823628093899514, 0.8104582869253096, -0.5258054662714043, -0.35683867262114444], [-0.10099356127199334, -0.5186366624704603, -0.84900901816359, 2.142386041025454]], [[-0.9614398784444858, 0.25243798089227343, -0.1091257345436188, -3.1731379026793602], [0.2726941916719907, 0.8236198926578919, -0.4972807559584043, -0.3150029633164654], [-0.03565442419969399, -0.5078635035334147, -0.8606993806281921, 2.26997831144267]], [[-0.9495468827597384, 0.30501388270824864, -0.07298800446993362, -3.238116808775136], [0.2962794236039365, 0.7960771204404591, -0.5277117787771521, -0.1431030322796248], [-0.10285533817057543, -0.5227119184277949, -0.8462818855105854, 2.0044383457520767]], [[-0.9340000277516892, 0.3571480267754022, -0.009446434792011169, -3.302132297414145], [0.3205106630409897, 0.8259194820882415, -0.4638210042506873, -0.12389693816432645], [-0.15785076191412017, -0.43623651392051943, -0.8858785700566436, 1.686994816113389]], [[-0.9465639796629439, 0.3046544869148156, -0.10584080502018325, -3.21170666213831], [0.3157237450961415, 0.8083137009317825, -0.496938102451836, -0.10083791671285197], [-0.06584184981542263, -0.5038001632479243, -0.8613072891391598, 2.1585063618185907]], [[-0.9451910172476858, 0.31776060438425535, -0.0751141745320976, -3.2640598760710695], [0.30888257308605105, 0.7955796782403844, -0.5211952912437589, -0.10922183644050179], [-0.1058560199423065, -0.5158305670201012, -0.8501254784852031, 2.08590970973548]], [[-0.9232937226554088, 0.3766995251583672, -0.07500779593200715, -3.3506260119516384], [0.3633724875900716, 0.7933872697019739, -0.4883616237353734, 0.02744477478193749], [-0.12445536134582638, -0.4781569909771348, -0.869411729281341, 1.985185670051646]], [[-0.9699478840622818, 0.12390566780309473, -0.20940030489321604, -3.0725342860195943], [0.230885828014483, 0.7402379965239171, -0.6314581877878566, -0.258584283579953], [0.07676481371806528, -0.6608290959003896, -0.7466003411372812, 2.9230051176371754]], [[-0.9250470649713688, 0.3597403725697225, -0.1219622561748233, -3.3723723483385415], [0.361894028203722, 0.7370931616276724, -0.5707244373883124, 0.13802581630936814], [-0.11541507673757219, -0.5720843778894152, -0.8120337583109097, 2.195348463036172]], [[-0.9013464403189173, 0.4297597341694577, -0.05367648843779546, -3.4432415397037985], [0.3930013924012691, 0.7595099478827181, -0.518357545173073, 0.23944497931363184], [-0.18200137388239518, -0.4883146628494662, -0.8534777618374905, 1.783835378470953]], [[-0.8962235500420433, 0.43885344255008113, -0.06473796654190056, -3.454481594834834], [0.4040022755530191, 0.7472069274016511, -0.5276968533078119, 0.3351255980614003], [-0.18320892363097396, -0.49908863301514544, -0.8469622345164239, 1.743345215339988]], [[-0.8583932803210633, 0.5092150443295294, 0.062137065654243, -3.5346655116909127], [0.43403294543502946, 0.7854898969563191, -0.4411587288681297, 0.3898688815270412], [-0.27345269897486285, -0.35171815478878354, -0.8952753548575635, 1.0963590483015977]], [[-0.8978917335426031, 0.40701558800577464, -0.16771626622415664, -3.3294859807988044], [0.4323660196988859, 0.7437398816015908, -0.5098142931744797, 0.4965995501476317], [-0.08276508832594415, -0.5302728539493279, -0.8437776013374811, 2.1053827848474294]], [[-0.9088411933078819, 0.4100590336213112, -0.07654589663895611, -3.44053591716899], [0.3578196192249143, 0.672035153345645, -0.6483316071004349, 0.49694605602483033], [-0.21441269888801523, -0.6166200950449571, -0.7575003979816153, 1.831941234613279]], [[-0.872881671259544, 0.48793137454381885, 0.0007494764333250692, -3.489230273489057], [0.3559062344699685, 0.6377453974769298, -0.6830897161152409, 0.6086405501683873], [-0.3337788792667271, -0.5959897496876705, -0.730334086581391, 1.4681368823610355]], [[-0.8715131653129952, 0.48844469934068463, 0.04343475995226542, -3.6109436004156774], [0.3893225916212562, 0.743057578369705, -0.5443283520823237, 0.482057456644636], [-0.2981488258226608, -0.45747919178180957, -0.8377470183457711, 1.4502724948271748]], [[-0.9056878036603453, 0.4141003474312776, -0.09083228808190942, -3.567595812605963], [0.31218981733951806, 0.5064980229524555, -0.8037395540190695, 0.7715992247012698], [-0.2868224542298217, -0.7562940268192984, -0.5880069937909178, 1.931441698140475]], [[-0.889801173083601, 0.45616361627671304, -0.012985667653197058, -3.5728356562609767], [0.29909810291585764, 0.5614622667736576, -0.7715571578447846, 0.709258760817378], [-0.34466534089052625, -0.6904164527115055, -0.6360274558649799, 1.5576471721198253]], [[-0.9178010550141817, 0.39254510501689105, -0.05957821701035573, -3.5900647366230407], [0.2735973464934183, 0.5165466345696583, -0.8113717189466986, 0.620225160887695], [-0.28772506913130713, -0.7609782617407924, -0.581486345283659, 1.9902611829757135]], [[-0.9254477325098492, 0.3787773569480519, 0.008614421386633264, -3.545746991071571], [0.22917809552806312, 0.57775541614876, -0.7833748015100448, 0.38045672161354266], [-0.3017016654287948, -0.7229981970753594, -0.6214899131146628, 1.8649293784579468]], [[-0.9252578732920271, 0.37659456143442005, 0.04554562777185192, -3.379388273598948], [0.22509613072209567, 0.6417105132020585, -0.7331707503575766, 0.1972851498790146], [-0.30533522535904123, -0.6681198646530182, -0.6785176833443446, 1.8651920533646247]], [[-0.9779527256343229, 0.17955064065612308, 0.10663036089395192, -3.2221092893790204], [-0.0693596154698045, 0.20234899101100634, -0.9768542007785542, 0.029453169725713987], [-0.19697134351544524, -0.9627130690277362, -0.18543418389530364, 2.1651033700340094]], [[-0.9576288283482853, 0.28170632357010883, 0.05990471080727579, -3.1322974331466584], [0.15443393285223161, 0.677835506300783, -0.7188109534375174, -0.1121321458501233], [-0.24309913101465958, -0.6791027710579406, -0.6926198371699612, 2.0798019324582997]], [[-0.9462969587079139, 0.29950998324546474, 0.12172031825646167, -3.1232488379249617], [0.1380142106662051, 0.7147087602218742, -0.6856700851840455, -0.2580524467528107], [-0.2923596134802775, -0.6320483826404536, -0.7176633600841341, 1.8947653944857443]], [[-0.9241580824057608, 0.3493044583283096, 0.1546552104394589, -3.0973551362649894], [0.15791903809058874, 0.7179631375147193, -0.6779310514931176, -0.23179705892991712], [-0.34784107884585774, -0.6020924584829037, -0.7186732604635869, 1.6585841832674]], [[-0.928865912666755, 0.29778780567597873, 0.22029647994564433, -3.059679430612681], [0.06903774441709373, 0.7234829244924341, -0.6868815384137761, -0.5257070599601956], [-0.36392568765004235, -0.6228120749941841, -0.6925772253762628, 1.569484732771735]], [[-0.9534477498164644, 0.2461440469481741, 0.17421393894259907, -2.997445175155381], [0.07950037606855631, 0.7624444067088729, -0.6421512414402956, -0.6091343173931626], [-0.29089014863841417, -0.5984075825307779, -0.7465194482361404, 1.8226138908004912]], [[-0.9106398878271514, 0.38231933223568393, 0.1567383899911374, -2.948523001661771], [0.1609138989746268, 0.6775097939324174, -0.7176957546498635, -0.2892128577188324], [-0.3805807559703154, -0.6283409960558948, -0.6784879371518326, 1.760033746634524]], [[-0.9415470279397609, 0.27625974179295915, 0.19279457783426057, -3.0097349639713125], [0.11685156900099852, 0.8045796184822945, -0.5822347879892529, -0.6583639605970402], [-0.3159666200721337, -0.5256730852795992, -0.789830932803229, 1.6294325428526164]], [[-0.9475097157775523, 0.24782672785500726, 0.20200804802735378, -3.008791485258244], [0.07495126267002843, 0.7863764737463466, -0.613183781392194, -0.7213025209845181], [-0.3108177065923206, -0.5658568321571648, -0.7636742753096688, 1.6965556953997842]], [[-0.9664084070977895, 0.21791652867190414, 0.1362614296941718, -3.0238494057057257], [0.0770775091694807, 0.7515123616773082, -0.6552009064603188, -0.6211898966271556], [-0.24518125595351117, -0.6226889727446456, -0.7430643275997553, 2.0483828359235083]], [[-0.959635706968063, 0.2576341874659401, 0.11280042269721863, -3.0825156996361796], [0.11242087406779515, 0.7190242707144179, -0.6858320823623173, -0.47138507171569516], [-0.257800032943635, -0.645467833104303, -0.7189648248988937, 2.0871151687989844]], [[-0.9514428914494515, 0.29381450327203107, 0.09181210147533338, -3.1677919879663166], [0.1383979936439687, 0.6747131118615828, -0.7249884220022987, -0.2711114340444845], [-0.27495894178155267, -0.6770784698608195, -0.68261433180479, 2.043356251183153]], [[-0.9530920785205781, 0.29459982618298164, 0.06947252891812734, -3.2149530104388386], [0.16103870102863418, 0.6878895652331256, -0.7077248637813931, -0.22377440474530425], [-0.2562850495685092, -0.663339195627952, -0.703064068852425, 2.1043918107275057]], [[-0.9477914718676543, 0.31534733862371284, 0.04740655943945517, -3.2449621065862213], [0.17917682682930108, 0.6495985794907349, -0.7388621997713796, -0.08605773534688775], [-0.26379346197797976, -0.6917931349374324, -0.6721869292623232, 2.119806681464222]], [[-0.9369399060447434, 0.34699234667100426, 0.041712393992877225, -3.3183467310675447], [0.1962368010540389, 0.6210871215454383, -0.758776584616631, 0.029420062475166892], [-0.28919669841294, -0.7027425551381896, -0.650013977407335, 2.085826010093511]], [[-0.9165713152291661, 0.39985407440704535, -0.0037071928951101507, -3.335891647397228], [0.24806499738619658, 0.5613103600628334, -0.7895533147026355, 0.29707027886581117], [-0.31362522406666016, -0.7246015448963778, -0.6136707748971917, 1.9788967367539367]], [[-0.907170337122003, 0.42049025266266443, 0.015163339396062042, -3.40730958172534], [0.2504986963969384, 0.5686820500116586, -0.783486521325015, 0.32888642439088256], [-0.3380715642425225, -0.7069573349292214, -0.621223747163924, 1.8809871970897047]], [[-0.8997480139522658, 0.436401244577983, -0.002732237131152171, -3.4110368344255666], [0.2622422470706831, 0.535651105128235, -0.8026872974117748, 0.48383944150734237], [-0.34883020975866214, -0.7229328096757593, -0.5963938610130389, 1.8757587292357998]], [[-0.9010357546729119, 0.433559794548913, -0.012667807691965127, -3.4370275169411184], [0.25626170733516085, 0.5085523805870742, -0.8220124169091901, 0.5297570130502877], [-0.3499492908332358, -0.7439088524476128, -0.5693286512159661, 1.945923877458538]], [[-0.89432122896974, 0.44550294402495544, -0.041432671639073965, -3.4095687842467695], [0.2614751261071599, 0.44525128274001535, -0.85637728463897, 0.7089207008752619], [-0.3630706513081149, -0.7767099987018758, -0.5146856128504402, 1.924431144732542]], [[-0.98795345180471, -0.12977299486985866, -0.08430270974094681, -2.7878854910955706], [0.06449574303366122, 0.14990626625210202, -0.986594349501805, 0.5929026016963755], [0.14067080790872932, -0.9801464590258242, -0.13973060746108512, 3.4290974119181286]], [[-0.9614764433067134, 0.2746539271394156, 0.011325602552121589, -3.1880577939583827], [0.1577573365912337, 0.5850615299752346, -0.7954970954658958, 0.15141170519481884], [-0.22511257565474266, -0.763065021115457, -0.6058515509860105, 2.4129212038588235]], [[-0.9745941321125182, 0.22374876658571197, -0.010137411070875943, -3.0032314060411585], [0.11032297086263339, 0.44016572401978393, -0.8911133359445259, 0.3034483501306116], [-0.1949233689219686, -0.869592217564941, -0.45366756044332557, 2.546660875470327]], [[-0.9970899795626996, 0.07602883234477592, 0.005584738843090832, -2.69427535185185], [0.03355945230888159, 0.5035356045128488, -0.8633224531706608, 0.018277096748144622], [-0.06844951290099496, -0.8606227464110915, -0.5046217915859825, 2.877812500984451]], [[-0.9897671355597968, -0.14130322989187233, 0.019859873813283385, -2.1309611624085325], [-0.09322211723552501, 0.5349592644556971, -0.8397191329433583, -0.3429015931096009], [0.10803080219956201, -0.8329777803730086, -0.5426576850842297, 3.3174404670719584]], [[-0.9769074132778315, -0.20012153420017384, 0.0748550427972944, -1.8431745156377868], [-0.1782468775113503, 0.5701489863901498, -0.8019714358851803, -0.5648916352203776], [0.11781322735698994, -0.7967945185978961, -0.5926538100713411, 3.3009826187119855]], [[-0.9261123034830501, -0.3552514438608467, 0.1269346799424906, -1.3111414290220762], [-0.31452403207913526, 0.541318193556716, -0.7797751256414738, -0.757645060744016], [0.20830418762473782, -0.7620833451527969, -0.6130565556771422, 3.377305054204695]], [[-0.8853652586265784, -0.42142474679134295, 0.19628943325850293, -1.0631318385899735], [-0.3966817985457158, 0.4646385838133086, -0.791678304069588, -0.7652598666737476], [0.24242918454597814, -0.778788911852124, -0.5785463864346201, 3.3664804870161587]], [[-0.8114246464540086, -0.5473947929703197, 0.20481451060891165, -0.656352859564435], [-0.47995909777946505, 0.42412081273484525, -0.7679588534966283, -0.8332914307611335], [0.3335105809201697, -0.7214433289137233, -0.6068691914903706, 3.3725349691782687]], [[-0.7795949491742598, -0.5847789177881234, 0.2241993142998756, -0.5075389370348043], [-0.5130269651700509, 0.3909642430652267, -0.76416640442566, -0.7513933152986181], [0.35921448777908516, -0.7107605630273708, -0.6048011026896563, 3.3093466438148504]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7298083589559324, -0.6495656816925729, 0.21317641606264065, -0.25881708008112164], [-0.46727457858111004, 0.2463378824987369, -0.8491007689655476, -0.0633805236771186], [0.4990332928872531, -0.7192927587660685, -0.483304975948731, 3.3100236661906433]], [[-0.7604207347435712, -0.614665932886083, 0.2096332443133215, -0.3091768050548937], [-0.3739962141347264, 0.15057586770056186, -0.9151249859331317, 0.4260661660269198], [0.5309304455245897, -0.7742820539154346, -0.34438374380849723, 3.2339349236580452]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"ba779301-79f4-4a7b-bb23-f7fbff508c5c\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, true, false, false, false, true, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8918373756262055, 0.3981884252311476, 0.21464406222418814, 3.9852624594591677], [0.42894004462137036, -0.5937188629962254, -0.6808144753474958, 4.374041945747456], [-0.14365421524055333, 0.6992452286103981, -0.70029963352069, -0.5922106475958386]], [[0.8142445228040627, 0.5602219880787239, 0.15217483746239208, 3.2945859603323004], [0.4825610473626361, -0.5074565706175295, -0.713878606280768, 4.599437105429035], [-0.3227083709045352, 0.6547053940592045, -0.683535042509104, -1.7923153077213378]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6099268633002135, 0.7896531943837771, 0.06661121545400506, 2.1014897568731445], [0.5691939058427661, -0.3780541210901711, -0.7301324394095874, 5.188935962541342], [-0.5513687685897882, 0.48324208646002176, -0.680051150206766, -3.178020625612346]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.25187110083720854, 0.9676212340372947, 0.016434597749732882, -3.272679656353343], [0.549323009650075, 0.15692830368377142, -0.820742187639893, 5.12307941083197], [-0.796746621977173, -0.19769333560612695, -0.5710623130840337, -4.710303399751234]], [[-0.27652418168683535, 0.9607409011005652, 0.02261189719816048, -3.4738286672496193], [0.5610337024532333, 0.18049298415089787, -0.8078758985041703, 5.2889123739094925], [-0.7802407075089347, -0.21071118533380662, -0.5889186995852478, -4.770663481689916]], [[-0.36436639574033564, 0.9304717959106541, 0.03820165794830477, -4.299839899303961], [0.5641929988644832, 0.25319858677953067, -0.785860506505544, 5.306752698092014], [-0.7408936426286156, -0.26478805235065045, -0.6172227293650572, -4.523983511806417]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.08724774645232558, -0.9960375844419713, -0.017232559821262816, 0.9492845613003706], [-0.37263272552948096, 0.04867367041764936, -0.9267015299828443, -1.3740646960366303], [0.923868325359984, -0.07443120439087819, -0.37540286787591565, 7.447151577852775]], [[0.3744826415406556, -0.926382624660235, 0.03972384563894954, 4.675296865855167], [-0.3161877156032563, -0.1678551778597231, -0.9337290655041617, -1.2224840260820846], [0.8716582355982918, 0.33710513492573035, -0.3557696562670542, 8.046713065720228]], [[-0.021959300720796215, -0.9990850552682065, 0.03669933857140234, 1.5150688622016757], [-0.48646755392778024, -0.021391635038972456, -0.8734367274885353, -1.7388262594343342], [0.8734226400130558, -0.03703309722510645, -0.48555271765539526, 6.860549396434]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9560808161055654, 0.29190811121903565, 0.0264410226627321, -3.046230878918873], [0.12364164293000564, 0.4834568944823926, -0.866592277435594, 0.5399122514257584], [-0.2657484096066898, -0.8252630403586335, -0.49831586068430456, 1.9924549107375733]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8901904275544243, 0.45290477290047726, -0.04937883528839451, -3.2486024588648497], [0.36768846626978324, 0.6502094462358319, -0.6648555240034237, 1.107846713223777], [-0.2690096549617611, -0.6100040513879066, -0.7453380862586418, 2.1768925498187173]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9672203105604597, 0.2516125475864002, -0.03429280881481522, -3.143485706509312], [0.21160662004458175, 0.7239442788589229, -0.6566028628179615, 0.393436998839357], [-0.14038343631866262, -0.6423362102548137, -0.7534564909819597, 2.745045560926988]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9763221676797543, -0.18378751996291828, 0.1140928236261407, -2.065234907904069], [-0.2068461579776926, 0.6387647353484467, -0.7410764331734593, -0.7632565582896477], [0.06332212746720667, -0.7471290118721862, -0.6616559134413578, 2.9081868302002407]], [[-0.9623023578796643, 0.07569866283824808, 0.26123530478045975, -2.393712202827871], [-0.17959300088596222, 0.5444661677985144, -0.8193307916559551, -0.5517059997968494], [-0.204256030638053, -0.8353599850168194, -0.5103461270360401, 2.1879817069435203]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9929138590471986, -0.0797824595644859, 0.08807285426191815, -2.308273532896398], [-0.11820222320785129, 0.7395088718328381, -0.6626876058213584, -0.9710585509110183], [-0.012259809979000572, -0.6684021152168536, -0.7436990718246963, 2.6714371516145565]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.692094458629055, 0.7094157487256781, 0.1331711522625701, -3.860794423986332], [0.267066425157386, 0.4230806239666496, -0.865839656159063, 1.0262915543979245], [-0.6705824221440713, -0.5636772845201193, -0.48227288336315866, 0.3979992343327036]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9943171759907503, 0.07341510265352451, 0.0770945927555988, -2.8928209359561716], [-0.04454740690456871, 0.3707975404620488, -0.9276447124440337, 0.43809019814756683], [-0.09668961716677729, -0.9258074349937289, -0.36541991084569314, 2.673905383458382]], [[-0.9980783321559205, 0.0363507494724931, 0.050182326506891035, -2.7702053235561324], [-0.030027312577428533, 0.424683382576996, -0.9048438456785451, 0.35906626669991304], [-0.05420335211251772, -0.9046118767602763, -0.422775766859948, 2.716872621879578]], [[-0.9987489326838455, 0.04941560502583559, -0.007659467527856803, -2.7310389524839094], [0.030305698778808628, 0.4763065115488807, -0.878756889974505, 0.3851783253737164], [-0.039776049130196396, -0.8778896314663175, -0.47720819448069574, 2.6768460698192715]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.08269178116466358, -0.9945139423706674, -0.06406315445065258, 2.7216532512113027], [-0.6496125881501554, -0.0050413498914738675, -0.7602486896457816, -0.1036003099874896], [0.7557549567450231, 0.10448254984266286, -0.6464656542568241, 2.3325471850452795]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8730720110002058, -0.4574298592314753, -0.16882887043254552, -0.7832203648040624], [-0.18320605725066094, 0.6286329063443057, -0.7558149308182383, -0.7075924164260142], [0.4518637009040714, -0.6289503898914313, -0.6326457167014509, 3.532373966125334]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8949186037582499, 0.37982816136066677, -0.23420345959178487, -3.3146655546160138], [0.4307226057228394, 0.5981191131304873, -0.6758191795349753, 0.8816443242478924], [-0.11661359083191361, -0.7056798809271629, -0.6988684969920399, 2.5318897585080036]], [[-0.7029061812927524, 0.7103166765062469, 0.037055625450939045, -3.9220620083439997], [0.5299623496692464, 0.5577574209978332, -0.63878522779953, 1.4354081734795225], [-0.47440785009682535, -0.42936799880634535, -0.7684922337717816, 1.1393004531239133]], [[-0.2955606291337144, 0.9431180805285545, 0.15222417904596613, -3.1262320424715564], [0.44104648073980657, 0.2760540011265301, -0.8539743499011345, 1.7934704284347303], [-0.8474207433932184, -0.1852632576691043, -0.4975496045870369, -1.240446836501598]], [[-0.4383097178547615, 0.8977985809375437, 0.04292201417235547, -3.6408571363108653], [0.4922094682683127, 0.2797079530406256, -0.8243138360799532, 1.9589771810850094], [-0.7520734210042954, -0.3401781431432004, -0.5645036761142836, -0.3537885248075225]], [[-0.5740854747319126, 0.8116299080179199, 0.10808681747862381, -3.821541064886561], [0.4288621225176199, 0.4105098929860839, -0.8047104495594896, 1.4456332728648151], [-0.6974977760333838, -0.41561823849703317, -0.5837450918484084, 0.061967436084790585]], [[-0.8097296257007189, 0.5693760382666304, 0.141946681223514, -3.9210908804832756], [0.28120102136839714, 0.5888198342068454, -0.7577711979390568, 0.5353309580841364], [-0.5150377838993403, -0.5736742367340716, -0.6368939874607362, 1.0737647988678518]], [[-0.8331477083249772, 0.5389603722038678, 0.12404278820917872, -3.3451148875502312], [0.22714941188153032, 0.5379705003720083, -0.8117825357885982, 0.48534323039826055], [-0.5042499784776533, -0.6481585129606491, -0.5706334211049389, 1.1291780285592805]], [[-0.9290676377476645, 0.3625567756562253, 0.07338875197014719, -3.581722915113781], [0.1630064461655561, 0.5793642999803682, -0.7986024708305961, 0.10095900446379355], [-0.33205755976705287, -0.7299928714268511, -0.5973677131110542, 1.9132715637438167]], [[-0.9425539113361376, 0.3281786325405737, 0.06237715422129794, -3.4427547907822413], [0.14183597469988618, 0.5622206471551521, -0.8147333920942327, 0.08810252120516081], [-0.3024478145166233, -0.7590828209465951, -0.5764708062320916, 1.9581436336752844]], [[-0.9430892560681255, 0.30875102005811905, 0.12351300620558575, -3.3599134389038667], [0.13982748967930925, 0.7051780002560947, -0.6951059351529075, -0.1714744956114837], [-0.3017133212485865, -0.6382764256714221, -0.7082176757277816, 1.9368050011131503]], [[-0.9551111071885471, 0.2807688778084508, 0.09450719644159838, -3.2134649367394386], [0.1217877311169925, 0.6629410946979164, -0.738699433809248, -0.06733357263544212], [-0.27005651533418473, -0.6940302170762535, -0.6673766075542696, 2.029135166565752]], [[-0.9673685572435138, 0.20707389707487817, 0.1460084778594214, -3.1458028353574363], [0.04694866050017042, 0.7127726705479426, -0.6998220798154294, -0.3472353148888861], [-0.2489857380129274, -0.6701309732210387, -0.6992357120427857, 2.081455245864525]], [[-0.9675100285015259, 0.2512493110055009, 0.028251167555306086, -3.0708480634737585], [0.13119939964022373, 0.5944311095535416, -0.7933715230136448, 0.2004261702402041], [-0.21612742140464675, -0.7638883686208388, -0.6080818185102824, 2.2145085586189315]], [[-0.9548085940232099, 0.295519427406331, 0.031761876595303704, -3.09376102430685], [0.1588364830973184, 0.5976557365509796, -0.7858616877065467, 0.2793126739069978], [-0.2512200637224191, -0.7453025483608258, -0.6175861000623012, 2.0928600083920244]], [[-0.9504755377851001, 0.31079094350154896, -0.002289434327877718, -3.079560441431075], [0.19973380722436038, 0.6051584406283216, -0.7706423736000761, 0.35378262734717436], [-0.2381231998856615, -0.7329340019222156, -0.6372637526978124, 2.095820370569475]], [[-0.9328154303746042, 0.3594204033714489, -0.025929645106459787, -3.0732283423293745], [0.2555970705260994, 0.609202019195479, -0.7506950361808904, 0.44876745226687326], [-0.25401872055720254, -0.7068874545841488, -0.6601398459099594, 2.01215712733711]], [[-0.9435127932804019, 0.3293804372643957, -0.03594629972234345, -3.0535947501408764], [0.23997370532378726, 0.6045098826582349, -0.7595922738691456, 0.3529339947103404], [-0.22846494188252428, -0.7253111948095401, -0.6494054519439854, 2.0658365188114884]], [[-0.9500383002598353, 0.3082106731859677, -0.04932959531210161, -2.9947582454918553], [0.26251673329721564, 0.70348362611879, -0.6604511734577485, 0.165328642201321], [-0.16885553819274524, -0.6404037544526195, -0.7492468475106367, 2.192434295123344]], [[-0.9374418265548732, 0.34527868426899405, -0.044558411270326254, -2.96205383280777], [0.27525239511072136, 0.6567097732938085, -0.702117079016176, 0.3031214038384367], [-0.21316411708182628, -0.670458726432782, -0.710665994218703, 2.014399197085222]], [[-0.9729297926892948, 0.17598929551757078, -0.14978446635347353, -2.703639140581755], [0.23106953201353483, 0.7301349797481761, -0.6430472632110149, 0.04179865612872954], [-0.0038065565294236603, -0.6602504670285054, -0.7510358386362324, 2.587685890215807]], [[-0.9673653069694662, 0.25324160706273613, -0.008547006736462456, -2.8359634269003298], [0.18002980125868898, 0.6631821850975064, -0.7264837644628087, 0.07667853899863417], [-0.17830769341401764, -0.7043139057420204, -0.687130474253466, 2.0230593868257154]], [[-0.966138344128233, 0.2547480475999479, -0.04098941630678743, -2.831515349877512], [0.2019640277186416, 0.6477568842940955, -0.7345893753365001, 0.20542208432322537], [-0.1605840325587205, -0.7179933503129542, -0.6772727053363066, 2.089874512698992]], [[-0.9671199017217875, 0.24993652619558915, 0.047019448815590004, -2.8717492240027584], [0.132877194321384, 0.6542288114345208, -0.7445322783588709, 0.04815045949553636], [-0.21684728940643339, -0.7138041714379763, -0.6659285681774186, 1.8499243426335985]], [[-0.9832211693004994, 0.16466987035965597, 0.07848545110460303, -2.7746904700552864], [0.04951144461617292, 0.6550015544020317, -0.7540037006427369, -0.15298316145573318], [-0.17556978410699997, -0.7374664721373145, -0.6521644373790747, 1.9291986730786674]], [[-0.9803527911471014, 0.16223669500976112, 0.11219473999434096, -2.7779234818364413], [0.021017931694514033, 0.6514671185109623, -0.7583856802750883, -0.18367873225391942], [-0.19612917028675966, -0.7411274170419913, -0.6420774877468403, 1.837481652833499]], [[-0.9883915669155834, 0.1374068172653219, 0.06481880143270899, -2.6964771159472787], [0.019392787426194706, 0.537256003417452, -0.8431962444103681, 0.0074587396423277715], [-0.1506852024785478, -0.8321510399926934, -0.533684004250716, 2.0282422511313203]], [[-0.9918997188810013, 0.07235518077746086, 0.10440151099697734, -2.609782858991106], [-0.030503379577658397, 0.662176594999687, -0.7487267197509127, -0.3769836323140082], [-0.12330649422529341, -0.7458464217580463, -0.6546057008861033, 2.0535438373539114]], [[-0.9939477448095544, 0.06876255827466661, 0.08567141394610527, -2.5974910359580106], [-0.012543907458245292, 0.7037235237983921, -0.7103631834762082, -0.4487503075240554], [-0.10913537911090436, -0.7071385385002694, -0.6986018582812552, 2.0742044328657796]], [[-0.9945919479623373, 0.10230224267707357, 0.017919491949399464, -2.6184022486411562], [0.060355996510295565, 0.7097301129097362, -0.7018834094879165, -0.3068664892766022], [-0.08452224993297702, -0.6970060386914694, -0.712066409328437, 2.1925454980540855]], [[-0.9932894430672851, 0.09169974701090614, -0.07047863995011883, -2.5464381926054713], [0.11472995396672023, 0.704333022078249, -0.7005369595338385, -0.20533290674857757], [-0.014598628493010395, -0.70392197750053, -0.710127262987323, 2.4917020904540896]], [[-0.9921222392659674, 0.08171597110255915, -0.09495242187879599, -2.4889520753572723], [0.12437087621090218, 0.7333251313936016, -0.6684056678523078, -0.2785363958847444], [0.015011579011402827, -0.6749494438351089, -0.7377112583946798, 2.60016002275132]], [[-0.9947031596024261, 0.07714269954731895, -0.06793105463264468, -2.5383514634825475], [0.10278385330690595, 0.7397249847654324, -0.6650131024372118, -0.34377359828306364], [-0.001050607603111417, -0.6684728497256512, -0.7437358034970024, 2.5928187021609137]], [[-0.9902044870781843, 0.08050776192669219, -0.11407705308161198, -2.523319133214329], [0.13854403534126924, 0.6679912568290007, -0.7311588275274868, -0.0454615732815599], [0.0173385132461523, -0.7398014470583084, -0.6726018100546903, 2.758993693099833]], [[-0.9921417455657519, 0.0804424466986233, -0.09583198565657536, -2.578752786112275], [0.12507247384186074, 0.658517334700634, -0.7420995864342269, -0.020005293311175586], [0.003410717346831668, -0.7482539225877219, -0.6634036737456821, 2.7819441080438896]], [[-0.9922478889407104, 0.10416279740491106, -0.067780812399138, -2.6902288836379906], [0.11953385245743499, 0.6507409469693488, -0.7498318998643093, -0.010068349490201137], [-0.03399683822633878, -0.7521212213295266, -0.6581473113341674, 2.705589755776132]], [[-0.9887985409516704, 0.14921031779404514, -0.0037049258626589837, -2.8393888488821233], [0.1083661547183211, 0.7006174947448127, -0.7052601665832733, -0.16561322810395565], [-0.10263635770726005, -0.6977617122781256, -0.7089389049525252, 2.511308938107364]], [[-0.9837874990790895, 0.17925881552834658, -0.00533232698592092, -2.8790518220228827], [0.12927676987214656, 0.688246800228849, -0.7138654346206819, -0.06359283120024518], [-0.12429671527089772, -0.7029812366131298, -0.7002625989889366, 2.4176186210842037]], [[-0.9935321989034005, 0.09633243706526351, 0.060115150430159955, -2.846514966839281], [0.0312279026973201, 0.7408005321242452, -0.6709988000716267, -0.482485608282083], [-0.1091722851061588, -0.6647816432284388, -0.7390174416014796, 2.4918796071286895]], [[-0.9999136669107482, 0.008930105946066226, -0.009639083612741434, -2.662542123646419], [0.013120084938306981, 0.7188659131005862, -0.6950249364974407, -0.5015211793608919], [0.0007225623246461749, -0.6950913984432924, -0.7189210149340712, 2.8775129364994227]], [[-0.9876921423011926, 0.15200017594038476, 0.03688059856581437, -2.8883511934700956], [0.08588724612089288, 0.7241272036309703, -0.6842975770199397, -0.2683531878013092], [-0.13071959681030937, -0.6727077667722315, -0.728269625574256, 2.3417206085142386]], [[-0.9868044805450298, 0.15796043855624964, 0.03557270059148524, -2.8919175714570606], [0.09182666215918654, 0.7269176562621278, -0.6805575546058376, -0.2866010197063142], [-0.13335959392918376, -0.668310721794505, -0.7318305800125813, 2.3653961042795157]], [[-0.9866030932551781, 0.15129459623795313, 0.06102689184703312, -2.9943866979895257], [0.07246060797752757, 0.7415529418792783, -0.6669697854338791, -0.42904284026715145], [-0.14616359557304892, -0.6536124077305926, -0.74258132469769, 2.3625392194998995]], [[-0.9755590090218822, 0.13318324048779495, 0.1747765555485417, -3.0402758092964164], [0.01486401853018899, 0.8335629594626521, -0.5522244594048684, -0.8908823278609007], [-0.21923430586789217, -0.5361296644143421, -0.8151694928452533, 1.9904207943654075]], [[-0.9710555642811048, 0.15862101273218643, 0.17857901724032435, -3.1387697924173446], [0.027675612631681126, 0.8173346579460329, -0.5754981471609639, -0.8695694165805318], [-0.23724491890062818, -0.5538983943288307, -0.7980673011819097, 1.9819258857334752]], [[-0.9583406024863375, 0.1824287878669069, 0.21977949627645949, -3.11447412874174], [0.0476084695001498, 0.860719529959481, -0.5068484234741027, -0.9377838869857928], [-0.281632248256439, -0.475270058076186, -0.833547628296237, 1.691974550720856]], [[-0.965209695428793, 0.13127846436939775, 0.2261331657299948, -3.050082505343674], [-0.008129922482422329, 0.8493445085348996, -0.5277762880066134, -1.0566545547752437], [-0.26135062313047264, -0.511253235309492, -0.8187282706581536, 1.7736654954224629]], [[-0.9724122724006854, 0.0867135925437498, 0.21655282346968283, -2.9906312176119583], [-0.03733045743252965, 0.8585274979272614, -0.5114068558893538, -1.1599924703453248], [-0.23026247942818032, -0.5053823188150856, -0.8316056171026468, 1.844525856085538]], [[-0.9693947812124615, 0.09440776073104507, 0.2266295057396406, -3.025072919712427], [-0.03968128615996222, 0.8507188331939841, -0.5241210379079985, -1.1596797749451966], [-0.24227908223108166, -0.5170731491412178, -0.8209361758081128, 1.8296988232760394]], [[-0.970611193772266, 0.09803678629880637, 0.2197787502380048, -3.000794017166739], [-0.025440204640775593, 0.8663427201549184, -0.4988016511825239, -1.1545391676262307], [-0.23930463119591433, -0.4897336824915956, -0.8383878659197119, 1.7688771870007554]], [[-0.9691295594704621, 0.06608525656350055, 0.2375302840176911, -2.9729360083434497], [-0.05550206417338187, 0.8802041666303947, -0.47133867432981386, -1.3088421981854155], [-0.24022368291465873, -0.4699716628813155, -0.8493640080998778, 1.7677150694578498]], [[-0.967230893786862, 0.07100404266414716, 0.24376797170591516, -2.9872441908465146], [-0.060709833586138226, 0.8675727891602882, -0.49359069239054887, -1.2944142680971824], [-0.2465333937019715, -0.4922152795616832, -0.834832560670583, 1.7630536626302813]], [[-0.9694639271638021, 0.06476076872112323, 0.2365285115219459, -2.9950350956740484], [-0.06435634831031738, 0.8635118790204759, -0.5002054530117479, -1.3178058395978907], [-0.23663886908177031, -0.5001532541383451, -0.8329758507991241, 1.8229947940215447]], [[-0.9670609881013811, 0.07386359521572257, 0.24359231226413483, -2.9833421268780937], [-0.046459636985362956, 0.8896780849294659, -0.4542184577132753, -1.3409761941184621], [-0.25026895017873907, -0.45057416093030245, -0.8569412920838774, 1.7125082451423115]], [[-0.9717919879039596, 0.05110372087135706, 0.2302362742027685, -2.980324002145749], [-0.0660124224939512, 0.8782774916305887, -0.47357260031758736, -1.382904626360953], [-0.22641265936813265, -0.475412512885582, -0.85012954910982, 1.8291594876041724]], [[-0.9668446059460236, 0.039724616987645026, 0.2522567397677674, -2.9694646403215823], [-0.0808705041132248, 0.8893534735689707, -0.4500115116475124, -1.467802451826409], [-0.24222194268387642, -0.4554913323609915, -0.856654058898023, 1.7637922428013892]], [[-0.9668499467327984, 0.06944870699674928, 0.24571946931259678, -3.0428519676403085], [-0.05265526015083466, 0.8873942897879216, -0.45799432095850073, -1.4040494986332899], [-0.24985716736013888, -0.4557502074034305, -0.8543202820783885, 1.7739858329937628]], [[-0.960000024607066, 0.09887289366059865, 0.26196202712151384, -3.0395876230646697], [-0.027596323422473056, 0.8976133020763544, -0.4399190867297596, -1.3333674190939655], [-0.2786366732646567, -0.42955152291053916, -0.8589802637297562, 1.611475622890154]], [[-0.9588216937946169, 0.09539879292520108, 0.2675070649856485, -3.029653858688446], [-0.039497057470017985, 0.8879544011826048, -0.4582324343296224, -1.3231777174569723], [-0.28124889681567017, -0.4499289407549332, -0.8476219713475529, 1.6402015724405221]], [[-0.9672806724302587, 0.0573794094966641, 0.24713499167192224, -2.982275171606034], [-0.06756857349771488, 0.880647446315187, -0.4689291664782899, -1.3706054519136885], [-0.24454567797929047, -0.4702846783219224, -0.8479562091979134, 1.7810585910083139]], [[-0.972527630361457, 0.05445639877574179, 0.22632832084364954, -2.9837048428916577], [-0.06722997093082757, 0.8651191549996208, -0.49704021835399015, -1.3253482557293856], [-0.22286798601900779, -0.49860139218128896, -0.8376911796853964, 1.909069223441588]], [[-0.9700404788881877, 0.07233695864185714, 0.2319241982476635, -2.9879606880538683], [-0.0468550859390177, 0.881014802853, -0.4707626982626563, -1.300413403694614], [-0.2383821936303602, -0.4675257015056346, -0.851230666853375, 1.8058459873490647]], [[-0.9670359682199988, 0.07872341885233344, 0.24216535568286834, -3.0053489277194068], [-0.05558519264052813, 0.8628159190562752, -0.5024529591734839, -1.269862523882318], [-0.24849893868571238, -0.4993508918058276, -0.8299981712779853, 1.8512211970296082]], [[-0.9750976534426314, -0.01968227533037651, 0.220900824553674, -2.8250962794746632], [-0.1279449266981922, 0.8635090615274434, -0.4878341894457462, -1.4493516479777413], [-0.18114817686873924, -0.5039491132027253, -0.8445239068962576, 2.1042724393088226]], [[-0.9767967603290535, -0.12566006268226718, 0.17342905655441582, -2.5000301807194973], [-0.19818568814935358, 0.8373031369418108, -0.5095545995084043, -1.5642550360377523], [-0.08118203017560748, -0.5321024389289075, -0.8427790175736908, 2.4779669589685644]], [[-0.935977812738745, -0.3453364227150818, 0.06847108299964921, -1.7679723897372501], [-0.3302638022315487, 0.7938997692345889, -0.5105379293890189, -1.7750924843574982], [0.12194816520290491, -0.500465694684078, -0.8571246895569092, 2.9754140282845003]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5897781720257818, -0.8071479675591468, -0.025958934243649145, 0.7390155009812195], [-0.4405995217015194, 0.3485496943482962, -0.8272757533290224, -0.3158791863894362], [0.6767819215067138, -0.47647168754800917, -0.5611960100417968, 3.272633992143673]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9941666004728364, 0.0989558435579493, 0.042901183317227226, -2.375477892290312], [0.05352333615753842, 0.7979801255831741, -0.6003024001791335, -0.7412389482435057], [-0.09363772205073559, -0.5945043819855294, -0.7986216355754163, 2.363970008364616]], [[-0.9901898194026255, 0.13237495914753128, 0.04473244618937425, -2.436760940634226], [0.07819196058058468, 0.7902649727621468, -0.6077559461871246, -0.6529731883681139], [-0.11580215391761992, -0.598296032926788, -0.7928629882470914, 2.2962307378141644]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9002303026186567, -0.43540698924276944, -0.0024811218568910054, -0.7465692030542931], [-0.3117932533253778, 0.6486079838734122, -0.6943289209275703, -0.9621384662393588], [0.3039249404505966, -0.6242823375478552, -0.7196535232998497, 3.1628545919139075]], [[-0.9426392980748793, -0.3334883598156665, 0.0147196328879248, -1.188973942911293], [-0.2319053893427817, 0.6225128363019877, -0.7474608076902941, -0.8233288995268481], [0.24010631836474347, -0.7079994932955181, -0.6641428109786461, 3.202636679351056]], [[-0.938023670993881, -0.3415817262274996, 0.05859621969551454, -1.2107469833661348], [-0.29092048939624104, 0.684176811173574, -0.6687805020347194, -1.1859461008132302], [0.1883530236142099, -0.6443787825183268, -0.7411471669888402, 3.0593513231690634]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9531756986424644, -0.12297168913615399, 0.27628617625290425, -1.5017499330422837], [-0.26775957866222827, -0.08149737046537009, -0.9600328049821297, 0.94711744830062], [0.14057345251531583, -0.9890582097522022, 0.04475446536037353, 2.2603942495355547]], [[-0.7486353713570948, -0.6614703511876266, 0.044744332073934745, -0.04748934389405994], [-0.2018623412659539, 0.16313696279067857, -0.9657318088113596, 0.8456918435846222], [0.6315035042908728, -0.7320131869516768, -0.25565605448961515, 3.1186957900843195]], [[-0.7479380541773483, -0.6620688349877302, 0.047471305558114685, -0.031202191608612966], [-0.16719471389008592, 0.11870162205087942, -0.9787521916040353, 1.0413941362776065], [0.6423664022663502, -0.7399829610609151, -0.19947586966574615, 3.0815337744081432]], [[-0.7009407252101086, -0.7094537806485508, 0.07319448657791805, 0.06852572871828536], [-0.1745116566739185, 0.07109570229858286, -0.9820850690238578, 1.085889307891616], [0.6915401517098276, -0.7011567116117119, -0.17364182772304393, 3.1102070710477854]], [[-0.8090176335770518, -0.5862975855738328, 0.04178049439249276, -0.31459758699713153], [-0.1546346247054656, 0.14372101330636178, -0.9774622259588304, 0.9453090183533257], [0.5670790080787569, -0.7972448880265623, -0.2069347411913397, 3.211589756314243]], [[-0.8604151815897102, -0.5079249929946255, -0.041205785775250914, -0.3740619293835091], [-0.2035430479239581, 0.4166734621756839, -0.8859759892685319, 0.2711297880372885], [0.4671787055632688, -0.7539200404618107, -0.4618967738123856, 3.3871768169929273]], [[-0.8189568570406012, -0.5686984204718224, 0.07675788467014019, -0.4216783235508968], [-0.24800451627708903, 0.23012836876899967, -0.9410285297449202, 0.43317920052113673], [0.5174972716955591, -0.7896980691635084, -0.32950498227959946, 3.4134729139320754]], [[-0.9005103231649014, -0.4284197608511833, 0.07441549828940011, -0.8208358838789314], [-0.24373429093871535, 0.35558546703202454, -0.9023040347112604, 0.13350130681440578], [0.3601038090523987, -0.8306717066012498, -0.4246289704649475, 3.360854910262611]], [[-0.9354744017612061, -0.33821912692836786, 0.1024473807831422, -1.1748057277482982], [-0.25411953328596526, 0.4423409699982015, -0.8600916980552558, -0.12639543105646195], [0.2455827894051958, -0.830627647289002, -0.49974674096696264, 3.277850642317465]], [[-0.9703478382675287, -0.23303819276790402, 0.06417377564865079, -1.613199429789684], [-0.16908810118353526, 0.4647164031587905, -0.8691650468543376, -0.11071772033321206], [0.17272604553940527, -0.8542434461830103, -0.4903405427309615, 3.2373556653104547]], [[-0.988911107494007, -0.14083764883470187, 0.04711239906531624, -1.939464039192009], [-0.11195568535024082, 0.4985653919187357, -0.8595920395738174, -0.17302899581436584], [0.09757431010637117, -0.8553346167738275, -0.5088044293789464, 3.211741014332364]], [[-0.9952511180489829, -0.09313071158995274, 0.028317531336587102, -2.1155443789375235], [-0.07300900016700078, 0.5217807306405531, -0.8499497367649603, -0.1728174514466357], [0.06438088160987258, -0.8479808604508473, -0.5261022356844496, 3.201494964843325]], [[-0.9996292574729189, -0.01740095270931315, 0.020941691644877462, -2.3254520806766776], [-0.027038358260057262, 0.543863115645268, -0.8387382420178671, -0.14216166809752348], [0.0032054308199798136, -0.8389935150437275, -0.5441319756528087, 3.077280627621262]], [[-0.9991377829827021, 0.03561264697351857, 0.021340805794311253, -2.4826632397348036], [0.0015228199277844898, 0.5451108501760228, -0.8383625958019841, -0.09510416539787105], [-0.04148941595007711, -0.837607247100879, -0.5446950779731798, 2.979870656638897]], [[-0.9943222788399507, 0.09980530357206191, 0.03690673626068672, -2.66853147404789], [0.027287698914609027, 0.5743899187052116, -0.8181268867222041, -0.1083380862679071], [-0.102852259530226, -0.8124746904788537, -0.5738521499836156, 2.795980508753464]], [[-0.9872422694422427, 0.1443050332333563, 0.06729605345077953, -2.7692166494136505], [0.04229111087164042, 0.6451117522392522, -0.7629169607919625, -0.30623020333145773], [-0.15350623234179406, -0.7503378469105247, -0.6429844104843484, 2.5497472029699413]], [[-0.9741491277925219, 0.1835431024909291, 0.1317019603083909, -2.738673557398577], [0.0340660202210724, 0.6956800625079546, -0.7175435574898762, -0.48771041462477877], [-0.22332259869383161, -0.6945078690388858, -0.6839487091556646, 2.2257621724035572]], [[-0.9915445738958125, 0.053066552938032016, 0.11842001071206916, -2.4988418150920246], [-0.040654144275211565, 0.7395904361177359, -0.6718282722217248, -0.7708013477614564], [-0.1232339179407269, -0.6709619421118107, -0.7311795085384475, 2.4231126208621365]], [[-0.9915641155820153, 0.02899174777190593, 0.12633322306972927, -2.4045051597042533], [-0.06319748192835649, 0.7428276770985123, -0.6664931510633427, -0.8247623062337676], [-0.11316661596058639, -0.6688546334574943, -0.7347290632161424, 2.414067274297807]], [[-0.9915805480266315, 0.013217217025723003, 0.128815068797482, -2.37055954436313], [-0.07794074277492422, 0.7334826296901226, -0.6752247570687527, -0.8276312539941376], [-0.10340820756060991, -0.6795796767980616, -0.7262769482037441, 2.420524797773059]], [[-0.9925284187643031, 0.008041754654997853, 0.12174838038882103, -2.3642693122378944], [-0.07726510768015113, 0.7308400798554024, -0.6781613973178681, -0.8101671585571607], [-0.09443220361935271, -0.68250136106752, -0.7247582017891041, 2.444158979823608]], [[-0.9905919322425948, 0.09180654231592507, 0.10148488835229022, -2.545870787610863], [-0.006105776389510681, 0.7111948452659211, -0.7029684285669338, -0.5944002887789613], [-0.13671263025252584, -0.6969744979948529, -0.7039433257544666, 2.381485412451648]], [[-0.9885653285198059, 0.13489055972044828, 0.06740273100425807, -2.6655362675162566], [0.051770462883178034, 0.7234216587553812, -0.6884627243478567, -0.4969705306778573], [-0.1416277177016903, -0.6771009086848987, -0.7221329164611558, 2.3944439743367263]], [[-0.9858627977844661, 0.15932631906361588, 0.05186200919964351, -2.752685563643437], [0.07200456033518574, 0.6823423201268323, -0.7274780419056421, -0.3539780677951938], [-0.1512940423001568, -0.7134592365493417, -0.6841681303209823, 2.4418302040261826]], [[-0.9856474289534561, 0.1578973248257866, 0.059729227437676065, -2.8029375946293658], [0.06029405221523736, 0.6597349853741686, -0.7490756813171895, -0.34677428925933873], [-0.1576825071620433, -0.7347232022239432, -0.6597863616723878, 2.467463199843028]], [[-0.9864224296139051, 0.15797511536424563, 0.04488488921957707, -2.8420769949656455], [0.07338273773230843, 0.6684927138191753, -0.7400894982186862, -0.3572998876111566], [-0.14692094526483165, -0.7267471049108684, -0.6710088534037089, 2.524334057267848]], [[-0.9718277478633806, 0.2247956322902698, 0.07083609380822323, -2.8841031070557785], [0.09662594209087086, 0.6541243189708104, -0.7501898444034186, -0.2454055907297328], [-0.21497501203126204, -0.7222107026582975, -0.6574172534760303, 2.3301329667142268]], [[-0.9818460715821157, 0.18340807133627043, 0.04837118033991279, -2.8350156849341666], [0.0808146253420994, 0.6352045113467333, -0.7681043061300811, -0.24866635336805512], [-0.17160212134348146, -0.7502510967226018, -0.6384951086867856, 2.444043640649029]], [[-0.9805246196159383, 0.18156211411166462, 0.07487769391696204, -2.826369838614377], [0.0699357205816542, 0.67905417750917, -0.7307492175801964, -0.3464196986179523], [-0.18352238368587132, -0.7112809731228913, -0.6785270163815207, 2.35720189738849]], [[-0.9955415614047859, 0.08652588252343155, 0.037553577316445735, -2.6636340825404963], [0.031109762960935327, 0.677058892714932, -0.7352709966020317, -0.3781321031855846], [-0.08904595535023116, -0.7308245531241899, -0.6767320669117083, 2.5436679088400145]], [[-0.9921778737629354, 0.10800644362324238, 0.0625913328754069, -2.6593254325620395], [0.0300522791986568, 0.693320730153075, -0.7200022400346909, -0.3920508577992482], [-0.12116074995734637, -0.7124892794111825, -0.6911433276780636, 2.397203061690928]], [[-0.9966063649336505, 0.06865139411383214, 0.04541739160236543, -2.575630660812389], [0.014446424994272122, 0.689060965701405, -0.7245593739311719, -0.3970123368526599], [-0.08103736285578517, -0.7214443648909278, -0.6877143114611659, 2.4739885146885188]], [[-0.9956945678970198, 0.09099719387924088, 0.01765894012875683, -2.6064073434360915], [0.05007583851462131, 0.6883609639915117, -0.7236377502934285, -0.3132384056503045], [-0.07800472971188824, -0.7196378908581597, -0.6899540333846849, 2.5170241307442374]], [[-0.9934954410802033, 0.11339187727170971, -0.01044465038428399, -2.6757673068549304], [0.08822874773863743, 0.7085354241467733, -0.700138015538096, -0.3168455690842579], [-0.07198955914106075, -0.696505444988012, -0.7139311370690642, 2.5611134387681975]], [[-0.9928319754892878, 0.11951838387455394, 0.00015608348029249458, -2.7364512525259372], [0.0829229592771061, 0.6897753071984788, -0.7192592080772912, -0.3295689725653823], [-0.0860723606668567, -0.7140905975401576, -0.6947417989684911, 2.5605546129422736]], [[-0.996664767052525, 0.08006931877673545, 0.01575583405489806, -2.7440778197370523], [0.04341373470573095, 0.6837338399034179, -0.7284389362258357, -0.4164503680843016], [-0.06909840631328901, -0.7253254030857847, -0.6849295364367106, 2.6405504438943255]], [[-0.9833435306205779, 0.17332323009035344, 0.05472256113983452, -2.90578029758395], [0.08975283051735561, 0.7248584283630363, -0.6830261255949085, -0.3770778724219134], [-0.1580504039880296, -0.6667378170931325, -0.7283410966416115, 2.3621804173622447]], [[-0.9906706049639512, 0.11020087431851872, 0.08017181399839433, -2.860488783007356], [0.015351043787641995, 0.6747908856214665, -0.7378493112667566, -0.43158918241123645], [-0.1354108485867694, -0.7297349025376483, -0.6701871933298786, 2.4547983166631933]], [[-0.992134805220404, 0.06536435278099109, 0.10675218806091612, -2.7495190176851056], [-0.03886776721960652, 0.6498058776901692, -0.7591058015788519, -0.431667307477876], [-0.1189866586707667, -0.7572845057868482, -0.6421544614448579, 2.4683449850835695]], [[-0.9937587161206426, 0.0028758580064164457, 0.1115138716706539, -2.6473534075647045], [-0.08401801674598344, 0.6382987734774699, -0.765189942850289, -0.4597955958735049], [-0.07337974513667773, -0.7697833495327654, -0.6340733457462097, 2.562294867128734]], [[-0.9897061314906501, 0.010660363617552807, 0.1427169574274677, -2.6564708910023205], [-0.10804423772365554, 0.5983051850540851, -0.7939504696340383, -0.3796435811346208], [-0.09385209632462282, -0.8011973927721789, -0.5909945192897615, 2.510132643689307]], [[-0.9934277908001311, 0.017862033657683733, 0.11305826913403007, -2.6806078070492974], [-0.0826738813263207, 0.5711403012561196, -0.816678508121471, -0.23959790871621076], [-0.07915967289227797, -0.8206580920424059, -0.5659099240629253, 2.5805384489475918]], [[-0.9946777635621242, 0.07575494293246282, 0.06983792162106499, -2.7799261213526796], [-0.014868259077933845, 0.5651829160271733, -0.8248316230013328, -0.06353872389263844], [-0.10195627272042733, -0.8214800423944095, -0.5610485347994744, 2.5714046262877686]], [[-0.992533026534894, 0.10396293911104668, 0.06379575635476308, -2.879735559889893], [0.005465519068857144, 0.5603985159265075, -0.8282050660607406, -0.01581817991123425], [-0.12185368003795145, -0.8216722038859295, -0.5567822465043654, 2.5428926035138506]], [[-0.9928130715381984, 0.1040616628899904, 0.05910478237383289, -2.9783341972479658], [0.011024832198381046, 0.5713036480621876, -0.8206647273922727, -0.03404399143393854], [-0.11916651399569299, -0.8141150483975872, -0.5683449919852452, 2.5835845639947315]], [[-0.9783882686046481, 0.1865678952728882, 0.08915613445099299, -3.163503137248057], [0.011491492671145118, 0.4795653192477789, -0.8774309375506226, 0.09879998480815887], [-0.20645663334702505, -0.8574435987446756, -0.4713450259828693, 2.3979410711668536]], [[-0.9746715095986421, 0.21121201509390758, 0.07351824982053803, -3.240670332071925], [0.043393172942731165, 0.5010906577631805, -0.8643061872070715, 0.09865063105941421], [-0.21939115961830893, -0.8392244261116534, -0.4975639473463684, 2.419121316915708]], [[-0.9733275551225873, 0.2263677239160669, 0.03729777484175163, -3.2381967423019455], [0.09755491322048719, 0.5555204776799901, -0.8257602786431053, 0.16719657490866802], [-0.2076451524732275, -0.8000966519410357, -0.5627866720233476, 2.387651037850045]], [[-0.9562768903087945, 0.2859137414952313, 0.06154544244328661, -3.2996999448423128], [0.10237724442393778, 0.5243749397430766, -0.8453104887516806, 0.24118891618990568], [-0.2739587722368151, -0.8020500327246686, -0.5307186977305912, 2.182721349041557]], [[-0.9659127139883776, 0.2521221939176703, 0.05871139829493979, -3.245498659830882], [0.08800550955329392, 0.5331095009607731, -0.8414566478872337, 0.1252073471209095], [-0.24344950039766253, -0.8076067479407881, -0.5371253870714292, 2.3133774573650054]], [[-0.9624594856573553, 0.266011696668312, 0.05393992680589371, -3.239497696468401], [0.09538416489024189, 0.5175340433856132, -0.8503295684763232, 0.22101581642880228], [-0.25411335965739845, -0.8132627442423419, -0.5234788527448315, 2.216046266791697]], [[-0.9850028894645614, 0.16253441628224827, 0.057895347570023833, -3.1253065028263105], [0.05869577308118636, 0.6311991062732984, -0.773396725143178, -0.08371816831332683], [-0.16224707691932977, -0.758399796785033, -0.631273026722633, 2.4654667236776273]], [[-0.9862688946047695, 0.1471897900009184, 0.07489214414457442, -3.059463773128091], [0.00043105662764680863, 0.4557794633753458, -0.8900926327947366, 0.060133291387285], [-0.16514684897166498, -0.8778383942872215, -0.44958455466125913, 2.5422617654514257]], [[-0.9819347232507124, 0.1817759832787527, 0.05255179518902588, -3.086859706647093], [0.05794893790489498, 0.5532726355698216, -0.8309821365861709, 0.0805956789366658], [-0.18012806519318786, -0.8129248935988278, -0.5538113374580669, 2.431899716172865]], [[-0.9764343517370766, 0.21217407251078507, 0.03947302499154787, -3.1090274640828817], [0.07463647900430413, 0.5036062295087416, -0.8607032947548353, 0.2521155540916871], [-0.20249778455488177, -0.8374741360508854, -0.5075743479493304, 2.393459158176169]], [[-0.9752459791809883, 0.2207091588016697, 0.013518406428819033, -3.1121662978563998], [0.10181607133701377, 0.5024813681854824, -0.8585720483709806, 0.3206612571624029], [-0.19628746192462598, -0.8359425469776643, -0.512514673393537, 2.401756929128139]], [[-0.9606517904459816, 0.2772344421398054, 0.01700592850628395, -3.2058864197574346], [0.1346140691523226, 0.5182610155103814, -0.8445617633947219, 0.39458263352357686], [-0.24295511910470968, -0.8090405329114106, -0.5351880288340136, 2.25329169726217]], [[-0.9646125696458673, 0.26367035844863385, -0.0007297648702080106, -3.2353598335912515], [0.1506652259494604, 0.548918618716574, -0.8221851006408998, 0.37500799009905433], [-0.21638525867256966, -0.7932000328428241, -0.5692197534584933, 2.378964645495332]], [[-0.9403496744212265, 0.34019286041786234, -0.003362668078470854, -3.3162313970852875], [0.1719948276755169, 0.46684792586486434, -0.8674507440590179, 0.5731500343468584], [-0.2935306952752342, -0.8162853862690348, -0.49751170749526125, 2.1061961487362244]], [[-0.933204976076778, 0.35797378957120307, -0.03135663575022235, -3.345651893256376], [0.18635127093608472, 0.40749160775291304, -0.8939931730340293, 0.7420289236838626], [-0.3072485580861951, -0.840122226578358, -0.4469820667129454, 2.070927468878126]], [[-0.9311109390685601, 0.36442778593289205, -0.014993598197706487, -3.424192580433351], [0.1902039791569513, 0.4500729442183262, -0.8725003101406377, 0.671210617648524], [-0.31121514336504597, -0.8152464251517433, -0.4883834567402715, 2.080876005473014]], [[-0.9274287880885588, 0.3737501849923711, -0.013661707168408893, -3.4651832560981464], [0.19215300727245332, 0.4448360880868344, -0.8747560097145682, 0.6837335077549673], [-0.3208630000806255, -0.8138990440796511, -0.48437101608734856, 2.0171964249422665]], [[-0.9104515828402252, 0.4120637388280254, -0.035796514450395056, -3.468434239157658], [0.23063973235787882, 0.433938669457421, -0.8709205158953423, 0.8253851663372704], [-0.3433412721500496, -0.801187060737124, -0.49011841890077285, 1.9285679546378702]], [[-0.8851930114101824, 0.4601238920422346, -0.06869742733522727, -3.433077599403265], [0.2543383696748265, 0.35498637262336674, -0.8996091756773359, 1.078745842962526], [-0.3895450246912724, -0.8138001469793492, -0.43125861674251287, 1.6993181920299845]], [[-0.9033545962474359, 0.42595794100817574, -0.05010295331322842, -3.476530924831834], [0.2293191505760311, 0.3809754511510437, -0.8956955022770551, 0.9639072015780212], [-0.3624406166777113, -0.8206202155152734, -0.4418362380678461, 1.9014795465831187]], [[-0.922022064671263, 0.3856658665198982, -0.03372167938874268, -3.4652554181177004], [0.19878666793694855, 0.39689375655849957, -0.8960799108647663, 0.8485145923819712], [-0.33220351128467385, -0.8329088698088996, -0.44261003341970806, 2.0473352303304484]], [[-0.9238321863480694, 0.3798956615337181, -0.047046549450566605, -3.391885387082425], [0.19497712482139243, 0.3612199155725825, -0.9118684627675855, 0.9017568781847742], [-0.3294207222743115, -0.8515864365650705, -0.40777754817384926, 2.0513983776609765]], [[-0.9582271589212452, 0.2853584621895121, -0.019268107394226353, -3.3245840614726676], [0.14091901993837083, 0.41243101664686554, -0.9000236032056276, 0.6331299404311446], [-0.2488825862235598, -0.8651423030718522, -0.43541503615539423, 2.3282877972086933]], [[-0.945114289723513, 0.32605157425696024, 0.021197883974057807, -3.268171946908485], [0.13316250243946137, 0.443613369494241, -0.8862702332528307, 0.5581329467278153], [-0.2983734695050485, -0.8348038987274344, -0.46268317817378624, 2.169518280463514]], [[-0.981545770907965, 0.19013884773600614, -0.020374449546246703, -3.0977454838847454], [0.09807541765466221, 0.40907753263884006, -0.907213748100183, 0.5216150842740861], [-0.16416184716477897, -0.8924700504060303, -0.4201762690392038, 2.6273192382097807]], [[-0.9912368636830415, 0.13195516336122015, 0.006108595429484484, -2.9805297212875366], [0.05869924079092271, 0.4814281236484945, -0.874517787635482, 0.2821463277566683], [-0.11833798716547739, -0.8664956991368177, -0.4849549712818919, 2.748529946854914]], [[-0.9984101551388502, 0.046418145247591566, 0.031976833917547576, -2.7637885680353755], [-0.004572815335035396, 0.49873161671410937, -0.8667444051447016, 0.07433351150482909], [-0.05618052576764117, -0.8655126401627561, -0.49772644920977116, 2.9273210051780625]], [[-0.9971648234165794, -0.05044736241838859, 0.055833489642057976, -2.4412713982549272], [-0.07355763195531072, 0.4970865169523202, -0.8645775092178475, -0.11923933784145452], [0.015861580050836415, -0.8662332585910321, -0.49938797741741126, 3.1110974911357756]], [[-0.9856806408001652, -0.1416042385302158, 0.09155279341480357, -2.115026381031386], [-0.15157680879470675, 0.5061855888771164, -0.8489997765893349, -0.2982822311242826], [0.07387926222823879, -0.8507199240898295, -0.5204012541964191, 3.230054732644344]], [[-0.9669630625430268, -0.22009209033973465, 0.12861534685758408, -1.7521066986383516], [-0.2268992126615934, 0.5131478767174582, -0.8277656696879333, -0.529587051638406], [0.11618598439983886, -0.829601547967607, -0.5461337644192955, 3.252823350207538]], [[-0.9319780131123687, -0.3300176981984336, 0.1500176721287491, -1.374562393345378], [-0.31392559358192657, 0.5277588298789426, -0.7892536595917972, -0.7411149653615046], [0.1812945249293435, -0.7826614442788253, -0.5954606274725698, 3.2848183619263325]], [[-0.8829712237423777, -0.4351560095156574, 0.17607119419512338, -1.0421775704467526], [-0.3962657399745892, 0.4898594446455605, -0.7765379500152798, -0.788933765735939], [0.25166501815961445, -0.7554316460633292, -0.6049692114155643, 3.3161617196355446]], [[-0.8616293913546347, -0.4695855641378998, 0.19257255751308927, -0.9049131017200035], [-0.41064947634723287, 0.4220379375171295, -0.8082394365978632, -0.5928792953447232], [0.29826464679808296, -0.7754826737262274, -0.5564753572448977, 3.3333742553462025]], [[-0.9004174027093523, -0.35411698897516625, 0.25268490065159416, -1.1541558567452515], [-0.3377789570715148, 0.20306794682161933, -0.9190586407478749, 0.13066107087530265], [0.27414207458510237, -0.9128880364496041, -0.30245918046798037, 3.1062238113390395]], [[-0.9704712115230612, 0.03585997809897033, 0.23853655815346878, -1.735720908838853], [-0.2044744404255891, 0.4023181828245873, -0.8923733988535095, 0.21255053831618845], [-0.12796808515252553, -0.9147973227657938, -0.3831057653480724, 2.5244435725908634]], [[-0.9150272926161225, -0.3506140989148286, 0.19948635895657568, -1.029897239959648], [-0.2810382757021011, 0.19932483510647958, -0.9387689266801305, 0.558804857979265], [0.2893830357121833, -0.9150624917195094, -0.2809236460145067, 3.070105042038675]], [[-0.9321676766093963, -0.3208879921833868, 0.16761360075231, -1.1297538569235361], [-0.22866621526483064, 0.1629363137787353, -0.9597726395603571, 0.7975828389411831], [0.2806691730153104, -0.9329965992031867, -0.22526020774692934, 2.9608340816564303]], [[-0.9760908889683965, -0.17746407231154715, 0.12551127244788637, -1.4662832489603828], [-0.15762148793398734, 0.1802818043144826, -0.9709036705948694, 0.9296006720825323], [0.1496731205472829, -0.967473500449349, -0.20394357777072059, 2.735623455911209]], [[-0.9987151540421033, 0.009222499591614627, 0.049829575434079766, -1.807976414743947], [-0.04692162134303697, 0.20312812082464604, -0.9780272634138522, 1.0913140143150992], [-0.01914164405683679, -0.9791087335079441, -0.20243439784599548, 2.417234495115577]], [[-0.9566378453905399, 0.28410737578582757, -0.06424197841471198, -2.1797096126180806], [0.11320095413272627, 0.15941220170675852, -0.9807004098757403, 1.447926021679608], [-0.26838326466079465, -0.9454473803290667, -0.18466097118481573, 1.8507390200185452]], [[-0.8544019756607107, 0.5034678554639722, -0.128519969271639, -2.410269029127956], [0.23355480764752357, 0.1511583661841387, -0.9605224100234571, 1.6694242438572133], [-0.4641652893224595, -0.8506887014925324, -0.24673734484497234, 1.379102532141198]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.525886722724856, 0.8154302710526584, -0.24190210398567863, -2.5527192074597416], [0.5191205293232286, 0.08242050365835996, -0.8507177772986013, 2.102730169787836], [-0.673763334485397, -0.5729575321327834, -0.46665044248926735, 0.7479666977370932]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6325146123165193, 0.761873829377304, -0.13954760232997962, -3.5733113946925874], [0.4429280096521411, 0.2079860393730697, -0.8720989540708651, 2.5478113748310878], [-0.6354054166212909, -0.6134248735875215, -0.4690094679134495, -0.3349857936611299]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7951686353144365, -0.5893771332837509, -0.14262340682512326, -1.7915752703972332], [-0.15746657797052435, 0.4278290373400607, -0.8900374102423618, -0.04663694134452757], [0.5855861322080891, -0.685271413069964, -0.4330034320818547, 4.406275058532941]], [[-0.7152990822498682, -0.6973910803913551, -0.04464195250069963, -1.3241090700744071], [-0.3022314172658298, 0.36632578611264743, -0.8800349929670062, -0.5445734352902198], [0.6300820528708813, -0.6159960222432685, -0.47280599322606576, 4.533336626243773]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7870001272060136, -0.6166695350531246, 0.01869449959429842, -0.4259931676671154], [-0.24593894842037461, 0.2857920229398635, -0.9261948786696136, 0.1818758043992897], [0.565813426340873, -0.7335131929020112, -0.37658141538198375, 3.761771127557941]], [[-0.8253087299048925, -0.5645417753878572, 0.01257315333158443, -0.6510745932020751], [-0.17402868678565347, 0.23310586064579175, -0.9567526712313091, 0.5481482673817731], [0.5371959758956075, -0.7918044212900751, -0.2906307655893554, 3.6442458281634287]], [[-0.8631057565968209, -0.5039874968273801, -0.032327325455424855, -0.832734824844391], [-0.11727478514487918, 0.262278204596732, -0.9578396359322038, 0.6963553407066349], [0.49121795335538365, -0.8229257235225945, -0.28547885362345515, 3.4958914679354036]], [[-0.874830203156492, -0.4829624123878657, -0.03767524207837519, -0.9393510991650911], [-0.06348484096973034, 0.19140147739781732, -0.9794565582081631, 1.0307775093202451], [0.48025179917645194, -0.8544663730483639, -0.19810458530118646, 3.246125938300448]], [[-0.8966442655046115, -0.4414683949787511, -0.03368556623512842, -1.0631296354493127], [-0.04366463099303594, 0.16388308399904827, -0.9855129297879371, 1.195878730491647], [0.44059330582515416, -0.8821836492555543, -0.1662213820427919, 3.0532768349680786]], [[-0.9259850083948648, -0.3759593886471395, -0.03473186312352666, -1.2473085514321758], [-0.024916448568321287, 0.15263941287802696, -0.9879678032339886, 1.311873288012854], [0.3767372225022429, -0.9139779798902817, -0.1507093807862513, 2.8655548785928566]], [[-0.9557731880312929, -0.29060577982166497, -0.04523155728848016, -1.4490220990036913], [0.008933888724330485, 0.12503537343844084, -0.9921120607176245, 1.4456022233875112], [0.29396904373209154, -0.9486382008560229, -0.11690921778836749, 2.6179040099091044]], [[-0.9957651107545165, -0.05312638888029557, -0.07502953424209038, -1.8476573205906], [0.06667125160386995, 0.1446200890977266, -0.9872385598420171, 1.5311717152307462], [0.06329919757484193, -0.9880600268373912, -0.14046563619788155, 2.2768263898599064]], [[-0.9816661286694256, 0.09378136277203047, -0.16594176032513183, -1.9994603713624997], [0.1809721264285289, 0.18526210959143607, -0.9658814835194154, 1.642435432380237], [-0.05983896121357085, -0.9782039699093186, -0.19883735055197604, 2.1301271937430037]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3757542652823038, 0.9194125514232898, -0.1161434131041113, -3.3294228630469807], [0.5262665480844833, 0.10854299115609434, -0.8433634681666796, 3.5064078548560387], [-0.7627924045829233, -0.3780198134439571, -0.5246415615964843, -1.7543965856608743]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.050923164083436556, -0.9967792222245021, -0.061951702972947775, 1.798503421674927], [-0.7326050653897217, 0.07944191224456065, -0.6760020715532233, -2.2132413209280357], [0.678746380855952, 0.010961966997053207, -0.7342909408092289, 4.020225518827406]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.27874360084009153, -0.9563137618379437, -0.08812487679458192, 1.8608055604188505], [-0.6150361896977136, 0.24823494284701308, -0.7484049027844872, -0.6339059525378908], [0.7375855817142968, -0.15441308904720635, -0.6573614740598066, 3.1630157112300843]], [[-0.21099749450460514, -0.9768017009672306, -0.03658543836424405, 1.9562030018934837], [-0.5465793426978792, 0.14893030702853594, -0.8240575136386659, -0.24020258511842396], [0.8103894615854363, -0.15387722585201064, -0.5653235532996622, 3.0524577589846977]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.04835627458217506, -0.9963134346714029, -0.0708605009988324, 2.251516968007733], [-0.5153868803633914, 0.08565830237604444, -0.8526658306648305, 0.1441369717811371], [0.855592212597698, -0.004711170483691907, -0.5176289893493689, 2.5520067829018482]], [[-0.19270820630559193, -0.9795945986559645, -0.05707862565392624, 2.2353515828743853], [-0.3318668431910571, 0.11980590347882314, -0.935687417828211, 0.29768943093043637], [0.9234326968506603, -0.16137214064293282, -0.3481825478271905, 3.0293698060967946]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5739312535334802, -0.7969728864662302, -0.18824753505736358, 1.0182432982194363], [-0.13972112251254193, 0.3218084218123707, -0.9364386512604368, 0.3999764332023555], [0.8068958570604532, -0.5111492520666698, -0.29604985723752747, 3.2919765845052136]], [[-0.7630390738506566, -0.6079838561556317, -0.2193786736017435, 0.2641332309619086], [-0.05606699599993309, 0.4003907462774706, -0.91462765224703, 0.3941968597817999], [0.6439160378004851, -0.6855967334734747, -0.3396016126490359, 3.597457565370566]], [[-0.9040814055806351, -0.3122173398629964, -0.2918169713574202, -0.7852639329312522], [0.13345671289310462, 0.4424262890156433, -0.8868191949724665, 0.6936856286208299], [0.4059878297031952, -0.8407016780503774, -0.35832188135274246, 3.5850921050827007]], [[-0.9529769244142827, 0.03260264226072665, -0.30128400098829294, -1.8008651800149513], [0.2930908052838491, 0.35185317362885127, -0.8889865713639156, 1.2390130830539527], [0.07702442075056119, -0.9354872590927812, -0.3448634899248051, 3.1133898359701573]], [[-0.9235137172284581, 0.1898293974148532, -0.3332974856910701, -2.244739753359006], [0.3801937394138424, 0.33807453787325437, -0.8609055275419619, 1.4575659961975427], [-0.05074578407508065, -0.9217756813449236, -0.3843884216254526, 2.8215678572506557]], [[-0.9248050541012474, 0.2019483626198742, -0.3224166105273434, -2.368514813896231], [0.3783529854213786, 0.39954034340391564, -0.8349949295746721, 1.2964553122359468], [-0.03980741553428105, -0.8941948181620343, -0.44590469479547745, 2.8394254701271144]], [[-0.9257871411698293, 0.2130909234347642, -0.3122665969877565, -2.429901346532915], [0.37682807027468046, 0.45392579999271265, -0.8074354299595953, 1.157495385837995], [-0.030311296535366655, -0.8651841575356632, -0.500537310149453, 2.8388390608588634]], [[-0.9344323308462258, 0.21250228068578536, -0.28579538095047885, -2.4869085627180203], [0.35379065363164974, 0.46184181823099246, -0.8133475937973758, 1.0685990207398397], [-0.040845960292049774, -0.8611300224916274, -0.5067412474738855, 2.7471692246000075]], [[-0.9388045960811198, 0.25076680656597944, -0.236139660162511, -2.609412379263588], [0.33251473788027247, 0.4808829510073491, -0.8112863468115785, 0.9921130629368442], [-0.08988814977169832, -0.8401592683266452, -0.5348387835371111, 2.5666521703378455]], [[-0.9311926649727923, 0.286986519935172, -0.22476422775069943, -2.6911511653023705], [0.349624131600238, 0.5286375627190951, -0.7735019676026648, 0.9347165719453485], [-0.10316582430072753, -0.7988623565157601, -0.592600833646425, 2.480560883009162]], [[-0.9334601866605515, 0.27051278242659327, -0.23553113268413312, -2.700348621690374], [0.3542894492387858, 0.5929425873088517, -0.7231169160748224, 0.7644175740066024], [-0.05595592978162316, -0.758447046733855, -0.6493281229262808, 2.642105963583]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9672717448369045, 0.2041595396340879, 0.1506793085216666, -3.0595057394292193], [0.03850942300038164, 0.705061588926295, -0.7080996964841215, -0.24238467957086363], [-0.2508035007338374, -0.6791222557074128, -0.6898482194095505, 1.7478105763037342]], [[-0.9341371069626228, 0.2701399597580243, 0.23326437262778585, -3.227260198950427], [0.022185693665073253, 0.6962430662121111, -0.7174631612481283, -0.20444416820748768], [-0.3562241715438482, -0.6650338298864887, -0.6563797260080538, 1.4588939931370928]], [[-0.956919650413701, 0.22294226394820943, 0.18601486391621325, -3.2303560815308927], [0.008106980898428609, 0.6609164345418674, -0.7504157137301811, -0.17334419644521387], [-0.29023965875261243, -0.7165795234990403, -0.6342513121697544, 1.8115923377940315]], [[-0.9444094725484502, 0.26991337893466094, 0.18771658433082677, -3.227308565905247], [0.036497495337598884, 0.653505960343405, -0.7560409331707688, -0.09390222823938203], [-0.32673946960053696, -0.7071610337594395, -0.6270283816044063, 1.6959891524177377]], [[-0.9444709477330218, 0.2263522853121279, 0.2382000667973558, -3.1602262440270987], [-0.007962931330089101, 0.7089258737570102, -0.7052380429631488, -0.3750522865887292], [-0.32849843319705496, -0.6679736135895167, -0.6677574641553947, 1.656460472191831]], [[-0.9615230629401151, 0.216434737765152, 0.16920225684898293, -3.1044090199348107], [0.03579819735859016, 0.7093556720190484, -0.7039410626183705, -0.28420072368005667], [-0.2723818799041793, -0.6707984308739362, -0.6898098119314702, 1.8155098918389194]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5551224851146987, -0.8296235856750188, -0.059697006724002966, 1.0586677096564712], [-0.27283107096551007, 0.24941820970126827, -0.9291683181131536, 0.3196408265832796], [0.7857494723102865, -0.4995150275628737, -0.36480474778018934, 3.411652381718918]], [[-0.413525909529193, -0.9104559183521879, -0.00814511421207631, 1.2412328514605695], [-0.22854406486849216, 0.1124550375693869, -0.9670167914460711, 0.8278723240343185], [0.8813421200427449, -0.3980249807018924, -0.25458236815580537, 2.8222810821846265]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5858290426775691, -0.80877720296971, -0.051805103146075004, 0.7908202854557363], [-0.18914904624771972, 0.19860548860604554, -0.9616540428860745, 0.8079027095113447], [0.7880526448525256, -0.5535659814801182, -0.2693282998292096, 3.015369804967768]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7378101267004915, -0.6692272066095202, 0.08815419939981972, 0.08581498636926589], [-0.14165053585684, 0.025814191532915642, -0.9895800893343458, 1.1264591310017458], [0.6599782895138859, -0.7426093006750727, -0.11384236435178596, 3.045478946334775]], [[0.9683698084568586, -0.22080758814006413, 0.11620638144695297, 1.3257003636225917], [0.01366484633615496, 0.5119520773704856, 0.8589053163478808, -1.8179751694402138], [-0.24914490972892903, -0.8301500343286217, 0.498776236864139, -0.7309366621631012]], [[-0.7682528812001864, -0.6401464635499734, -0.00012542756690431256, 0.026862767522802818], [-0.3215207904341955, 0.38603309932228547, -0.8646402879499657, -0.09353170862799833], [0.553544841766394, -0.6642220648488666, -0.5023914377472266, 3.365974089222606]], [[-0.8826140065483625, -0.46857711663535573, 0.037788903269921514, -0.5751401174376666], [-0.2856003568337797, 0.47063256193302794, -0.8348277833330491, -0.28352795405495684], [0.37339650724272305, -0.7476232188837175, -0.5492126828150313, 3.3103505980177266]], [[-0.9356482322671485, -0.3528443797040622, 0.007951676968765475, -1.085750093553154], [-0.19401425678406398, 0.4953917711899216, -0.8467263201305606, -0.21692730027509885], [0.2948234278680839, -0.7937807233415088, -0.5319692750822589, 3.296342951469541]], [[-0.9985828592285062, -0.0036403637903555663, 0.053094453632136024, -2.0753799019805315], [-0.044808458686605886, 0.5957846589435422, -0.8018932860410157, -0.2084087266925039], [-0.02871367766678291, -0.8031359710030435, -0.5951034673028268, 2.8265827910283456]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9949278448449612, 0.04342086354272625, 0.09073704955179578, -2.4783205511772177], [-0.0235656509840697, 0.7763232829681362, -0.6298942930486607, -0.8613760552331499], [-0.09779183833970047, -0.6288376491041062, -0.771362409910778, 2.207202120576317]], [[-0.9925337074217957, 0.11234549039160314, -0.04749031922629524, -2.5656125064995416], [0.1166393163802834, 0.7603929060567857, -0.6389036690244129, -0.47596956247229727], [-0.0356666441634951, -0.639672665671425, -0.767819491343459, 2.4643608168500006]], [[-0.9792911188591928, 0.2011790641955741, 0.022713182359660605, -2.7720563230066135], [0.14336919333945933, 0.7683148540483169, -0.6238089126085858, -0.46924778541409806], [-0.14294816866508944, -0.607634157349722, -0.7812467932076204, 2.171876794504123]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.857327181146432, 0.5143591881549364, 0.020608979307766423, -3.2702033311420435], [0.4028145967696359, 0.6952573470975847, -0.5952794486089238, 0.25171686823327505], [-0.32051599819171095, -0.5020476539805993, -0.8032544105299066, 1.530649945057897]], [[-0.8298617356541097, 0.5570551715156078, 0.03192233677011022, -3.331940499564208], [0.4234456605249944, 0.6660111656418524, -0.614103329923338, 0.3776940201206883], [-0.3633500685010239, -0.4961034802620294, -0.7885797769358548, 1.3676584953464272]], [[-0.8361889514235832, 0.5462119891933013, 0.0494014208158472, -3.332663899226757], [0.4132979534645093, 0.6867903008063343, -0.5979162854283139, 0.32386329465114333], [-0.36051746029724513, -0.4795534856299573, -0.8000347587705059, 1.3197438911199288]], [[-0.8313326461652899, 0.5529312383141733, 0.05615226723980493, -3.317628080605502], [0.4174813894152736, 0.687969914444925, -0.5936385148476597, 0.36001809856639705], [-0.36687234961456056, -0.4700685508678466, -0.8027703510801163, 1.2396582312598319]], [[-0.8203256269899128, 0.5675207419233571, 0.07061213203386774, -3.3139678414358533], [0.43257925295233784, 0.6965053690859462, -0.5724993106979669, 0.40945799589429605], [-0.3740869626421154, -0.4390905126750203, -0.8168589021734317, 1.1481378130145665]], [[-0.8232046589245985, 0.5641229553708973, 0.0640264066494412, -3.3033429739389786], [0.42675888205091667, 0.689211955810935, -0.5855456741859831, 0.42842027822807327], [-0.374447521176849, -0.45470008927959354, -0.8081069747834394, 1.1615184422478342]], [[-0.8285305309255667, 0.5584841406837417, 0.040405741286871494, -3.313209053081986], [0.42229781402184347, 0.6706166505531859, -0.6098670873831435, 0.46055449396407094], [-0.3676978591133916, -0.48823024548420674, -0.7914730013069683, 1.2497582311068334]], [[-0.8351181011744916, 0.5494192592188483, 0.02676256135207203, -3.2915687620741942], [0.4226904482042207, 0.6721039817448762, -0.6079547867396047, 0.43348226971535125], [-0.35200929261544567, -0.49640176804892144, -0.793520473957842, 1.3383783715776918]], [[-0.883970933121557, 0.4674127988872678, -0.010984754552305853, -3.184585712077106], [0.3771336304061625, 0.6989546173660233, -0.6076451823880316, 0.24134556093477946], [-0.2763432905153875, -0.5412833992457986, -0.7941326510653252, 1.658404970770135]], [[-0.900181958090752, 0.43464173524336747, -0.02755003289533417, -3.138873004700266], [0.36158264448408506, 0.7106128782207409, -0.6035621993752841, 0.16549039679684893], [-0.2427559134929473, -0.5532774162131225, -0.7968398001936999, 1.7649750265452315]], [[-0.9298815896439221, 0.3596943206178031, -0.07707285486206111, -3.025950533655175], [0.3304873477009715, 0.7248585944621289, -0.6044486173728616, 0.058904067822787606], [-0.16154981352780468, -0.5875372445638523, -0.792907084089584, 2.009791900320779]], [[-0.9198275403034416, 0.3836248613540956, -0.08215389126737574, -3.002691375865539], [0.35575513050033974, 0.7273191234877927, -0.5868945218108917, 0.14397250340384307], [-0.16539523337148243, -0.5690684127238129, -0.8054846729876325, 1.9121157919325968]], [[-0.9240011818104151, 0.37418129285817137, -0.07880467047037294, -2.9571376421190627], [0.34718578204055883, 0.7345552776200674, -0.5830013523735526, 0.12914483320550355], [-0.16026181317407545, -0.5660537997359377, -0.8086403694119316, 1.9037023067793142]], [[-0.9293781323083765, 0.34463541712102685, -0.1322222237477882, -2.8838935499203084], [0.3601179574947112, 0.7678627351427626, -0.5298130582280065, 0.09094619364141966], [-0.08106382594494088, -0.5400122676799959, -0.8377442371501443, 2.0809962476019352]], [[-0.9341663116907908, 0.32578092696128386, -0.14560250592029872, -2.847215089773781], [0.3448919106682821, 0.7196162033583511, -0.6026625007578404, 0.1676203591271976], [-0.09155802563186753, -0.613204131992242, -0.7846004208831621, 2.1864603269209004]], [[-0.9251346618305991, 0.3566559365697901, -0.13008612681262305, -2.894088093615668], [0.3599077505989624, 0.7149242786775765, -0.5994578273875004, 0.1988174139161634], [-0.12079846248350623, -0.601398219707103, -0.7897644666574641, 2.1077668516608967]], [[-0.9110295550724496, 0.3937946270271848, -0.12227404266243143, -2.945467277746886], [0.38209361583415646, 0.6947504599209098, -0.6093654627384655, 0.2668193817335343], [-0.15501489774622879, -0.6018700774786903, -0.7834046153250063, 2.056390495050458]], [[-0.8940045011685706, 0.43185318633028424, -0.1194101224633682, -3.042123579417131], [0.4194366551447498, 0.7129048811675059, -0.5619960166482753, 0.2793122860681928], [-0.1575717113295403, -0.5525119508788249, -0.818475228656772, 1.9739191759470271]], [[-0.8905665864350348, 0.4399935014755836, -0.11531207128790003, -3.0906260295085466], [0.4209487876513369, 0.701217887857483, -0.575409064860435, 0.3009825276434738], [-0.17231736215576113, -0.560980563306739, -0.8096959517570372, 1.9345961522968034]], [[-0.8629108125892991, 0.4977180684003248, -0.08753087400640862, -3.167464160734672], [0.4550168481946399, 0.6898517329333317, -0.5630845890520316, 0.42112384625276944], [-0.21987404889047768, -0.5257198027055182, -0.8217506262046774, 1.7048417255569495]], [[-0.8059386376279407, 0.5898093641066567, -0.05087068301606017, -3.2918046862747947], [0.5154343462283403, 0.6568423222264794, -0.5503504324158283, 0.679882212743469], [-0.29118782101348706, -0.46976917496173265, -0.8333826102992494, 1.3624141705255568]], [[-0.7747218697030633, 0.6303681665677258, -0.0494165881241736, -3.30048594062406], [0.5513324610370626, 0.6351841111716984, -0.5409007878731878, 0.844285740267536], [-0.3095780063418686, -0.44629263885153153, -0.8396334548458219, 1.2559495557719078]], [[-0.7366882340464569, 0.6746118353855168, -0.04679014186018213, -3.3246879314694717], [0.5755065648353339, 0.5891226283866143, -0.5672095931437342, 1.024566534044524], [-0.3550811733237139, -0.44478466731737853, -0.8222432487229204, 1.1352139625616229]], [[-0.7343470939068014, 0.6782031302133603, -0.027836304342263446, -3.353396424396402], [0.5637185755004427, 0.5865151238841632, -0.5815680330717089, 0.9797694692087479], [-0.3780948469714801, -0.4427646368263215, -0.8130213792205396, 1.1163551750712624]], [[-0.7501113173678531, 0.6611941976411432, -0.012459717587049751, -3.390100850796242], [0.5326553560922306, 0.5929058624250754, -0.603937836145606, 0.8653900337461898], [-0.39193275339389944, -0.4596573411876097, -0.7969340283294561, 1.1090566037820517]], [[-0.7754815721611891, 0.6312976645732425, 0.009570263464497741, -3.422485212176112], [0.5052496424782685, 0.6295923161253721, -0.5902002323376966, 0.6946776146297374], [-0.3786173926459162, -0.45285403186927586, -0.8072001584525046, 1.1475972200000655]], [[-0.8344219077910172, 0.5506779703196556, 0.022222799171653956, -3.3759051797246777], [0.43833917982447734, 0.6875606031199953, -0.578894792227459, 0.3902773839838908], [-0.3340641304139128, -0.47330137337841394, -0.8150993600346546, 1.3189250808917097]], [[-0.8785976024611982, 0.4771517220451709, 0.019811287155623525, -3.2955016540156534], [0.3824691956213356, 0.7278849839828254, -0.5691228026472762, 0.17488755623289162], [-0.285978263772272, -0.4924527228492598, -0.8220138371147697, 1.4803076479385289]], [[-0.8571855909261321, 0.507797265071709, 0.08587665744723647, -3.26170574825526], [0.37953017600824557, 0.7355657752876047, -0.5611593674926002, 0.20090965166152028], [-0.34812312219639696, -0.4484249411119296, -0.8232407691441154, 1.138793802455213]], [[-0.8532317737054659, 0.5186714067380639, 0.05454825544215697, -3.2982716763811726], [0.40038061567330757, 0.718457882893716, -0.5687825886056488, 0.30913507004767043], [-0.334201889480727, -0.46346331283094827, -0.8206770709160057, 1.1746194126248697]], [[-0.8289923410117005, 0.5584786482203866, 0.029551616298776062, -3.411332961875679], [0.4477930967524685, 0.6944932169956602, -0.5631700578403056, 0.46259707108132037], [-0.3350418496916092, -0.45363065486026, -0.8258124411307186, 1.1774142252305284]], [[-0.7833385778603081, 0.6186652205862488, 0.060282810756943, -3.475039726444071], [0.4877118908073322, 0.671847381414594, -0.5574569110267535, 0.5696825464693143], [-0.38538005137905906, -0.4072768602846484, -0.8280143568053348, 0.9979367245970243]], [[-0.7283512335715985, 0.6799681256703946, 0.08454483205389576, -3.4913503534396733], [0.5247677443943174, 0.6328888340789227, -0.5692719368996879, 0.7413361480133284], [-0.44059425211642433, -0.3702635166614615, -0.8177907025831588, 0.7463831136033676]], [[-0.7432664419427664, 0.6671000287300807, 0.05032442697206474, -3.521277461270388], [0.5098369988612533, 0.6135384558338366, -0.6030230491491861, 0.747857560443172], [-0.43315266462748614, -0.42254954133374345, -0.7961348216506752, 0.8964379256727862]], [[-0.7910727511110601, 0.609447758525055, 0.05270039922395986, -3.551423268675479], [0.46955963258662925, 0.6601884276932687, -0.5862294699049166, 0.5678595230245179], [-0.39206843011735626, -0.4390041794432897, -0.8084291413207687, 1.046579750685981]], [[-0.8278883289929869, 0.5583160095739852, 0.05370426585087562, -3.4416380807556948], [0.42201244070901545, 0.6831066611727569, -0.5960459624460417, 0.44942385947929425], [-0.36946774501168517, -0.4707956275442562, -0.8011523341295277, 1.1278462382329761]], [[-0.8494091388288105, 0.5254511928495749, 0.0490424184462539, -3.3695170600297355], [0.35429460054849504, 0.6366570345911766, -0.6849402574880176, 0.40084083248178703], [-0.3911258760249454, -0.5644190502087331, -0.7269468239597658, 1.125393049414952]], [[-0.893902597284948, 0.4476363370725503, 0.0236612827102628, -3.2841371493368574], [0.34165948297529986, 0.7145426765599331, -0.610489607665534, 0.23255202166265262], [-0.29018432807489036, -0.5376341442903687, -0.7916707539330274, 1.4385506769853125]], [[-0.92228713913997, 0.3861672889400488, 0.01616347517402382, -3.2549890559860675], [0.2987847305522118, 0.7388709817851399, -0.6039845669093752, 0.05837526893351218], [-0.24518180553591368, -0.5522177987248836, -0.796832093358188, 1.6177323885355182]], [[-0.9292192808972104, 0.369180023547672, 0.01605111280288704, -3.2405199020237423], [0.29052536227145764, 0.7567096769199353, -0.5856496211326063, -0.03965305279294331], [-0.22835617330369892, -0.5395336644446456, -0.8104053819200754, 1.6784659437899478]], [[-0.913036106739005, 0.40656228774744574, -0.03274406774430268, -3.2642640875798246], [0.3397829312789612, 0.7137385636507169, -0.6124743442539355, 0.16437979180334722], [-0.22563826670659637, -0.5703370660752944, -0.7898120052634476, 1.7793462917668081]], [[-0.9172474675323722, 0.39791885966601714, 0.01782314303219472, -3.339625840126961], [0.30891113559046324, 0.738897127304563, -0.5988363261937895, -0.0035060643950905143], [-0.2514577372316468, -0.5437753363137765, -0.8006730855993468, 1.650136773056511]], [[-0.9398835368821126, 0.33938440305033185, -0.03790994677048781, -3.285636187159088], [0.28909511413474914, 0.7316557811409672, -0.6173360777618764, -0.07708131341466401], [-0.18177720451527388, -0.5911835966002195, -0.7857855960944067, 1.958890098907208]], [[-0.9138142838942703, 0.4060966122439434, -0.005384800348532434, -3.3281791129527183], [0.338602851949598, 0.7544820763648811, -0.5622320740545992, 0.04949418685530434], [-0.2242578052206876, -0.5155990088897864, -0.8269619693973052, 1.6051379440715694]], [[-0.8894926209037012, 0.45689969090350346, 0.00674905994541114, -3.341943560625726], [0.35922694552207257, 0.7083191305583624, -0.6076512247135913, 0.2599554497495664], [-0.28241614502139517, -0.538076836276501, -0.7941753202498332, 1.3622116114706206]], [[-0.9294752642545923, 0.3664351962524531, -0.04243795572694864, -3.259345225839502], [0.31891471350582706, 0.7404142151676127, -0.5916757519851767, 0.0714632191622523], [-0.18538915461361938, -0.5634820644218894, -0.805058273932076, 1.7755300178868227]], [[-0.9298813283883108, 0.35999943600815376, -0.07563809350190406, -3.2620433754790223], [0.33717961846065125, 0.7519084852744523, -0.5665187858023851, 0.09999473627392484], [-0.14707351906281854, -0.5522988646069175, -0.8205701335927293, 1.9348041757367396]], [[-0.8881272505319588, 0.4595117531295298, 0.008884570803861958, -3.3640506908319723], [0.3682572196147506, 0.7230540657936325, -0.5844479772750614, 0.24187998693560595], [-0.27498473969323484, -0.5157923677945645, -0.8113825400270332, 1.4539831914533639]], [[-0.8934070109557415, 0.44525009960234324, -0.05980185264046055, -3.3727586583485234], [0.388243568162911, 0.6982426110470077, -0.6014351069719727, 0.32183813955421947], [-0.22603283955049325, -0.5605440258555617, -0.7966803314519448, 1.736347466519772]], [[-0.8935143927907637, 0.4465578803506744, -0.04709659618768172, -3.4231234753517388], [0.3788372814904373, 0.6933658839847509, -0.6129649786725013, 0.2939291022257049], [-0.24106916855684377, -0.5655349771877578, -0.7887051702306473, 1.724642747899637]], [[-0.9128373782130984, 0.39145295018926146, -0.11615725859867942, -3.386006550705211], [0.3821510664854835, 0.7188218546927039, -0.5807372070051555, 0.23654857846161914], [-0.14383491690491718, -0.574508249726899, -0.8057616196336798, 2.098694265831483]], [[-0.8466290938292438, 0.532107945788297, -0.008961668975834919, -3.4619992157952737], [0.4246907867880714, 0.6653795681450014, -0.6139281439325782, 0.5458697098629591], [-0.3207131320965866, -0.5235753664221897, -0.7893110429841123, 1.320146734869077]], [[-0.837178363915738, 0.543866247157355, -0.05780910131063666, -3.4349726239709257], [0.4509311364591938, 0.6265540655913151, -0.6356816129656527, 0.7529699059191102], [-0.30950524577620414, -0.5582468164655924, -0.769783732448954, 1.34877903416648]], [[-0.8602143747099692, 0.503661357849142, -0.07972744917464393, -3.4067631924858484], [0.42171299575019355, 0.6147460932775798, -0.6665173591252896, 0.7405396116456666], [-0.2866869002199685, -0.6069699147482613, -0.7412139662963417, 1.429974744596835]], [[-0.8719110035042289, 0.472302741576624, -0.12923359573831505, -3.372984590329058], [0.4314407587928971, 0.6161780086336948, -0.658926045416649, 0.7903616663739776], [-0.23158167807591934, -0.6302815101011763, -0.7410230390508267, 1.7294647094161193]], [[-0.8112312459473463, 0.5834508708955126, 0.03858687406339495, -3.467891350092016], [0.3730950969523464, 0.5673051059226246, -0.7341423332190012, 0.7416643826151218], [-0.45022651435564714, -0.5811626261601718, -0.6778982871535942, 0.8655529527591449]], [[-0.7959182215516623, 0.6031593212127897, 0.05208663778903244, -3.4871339959895042], [0.38344658277284766, 0.5688225783185124, -0.7276053824394825, 0.8277756076045202], [-0.46849002418607044, -0.5591419387143183, -0.6840156355003362, 0.8477385168853119]], [[-0.8239685523691944, 0.566291454298941, 0.01974369505954693, -3.5458534517809843], [0.3463896937296577, 0.530968994075323, -0.7733602701254528, 0.816964981235569], [-0.4484306019714621, -0.6303855297503503, -0.633659276817504, 1.129821741900836]], [[-0.906153561176678, 0.41352274942772355, -0.08879560390334985, -3.5697759680490804], [0.31055215086004323, 0.5079935153596693, -0.80343011516169, 0.7608991231073999], [-0.2871290392193471, -0.7556067257894556, -0.5887405122621621, 1.930905751369881]], [[-0.8878923627474415, 0.45933736965394795, -0.025618997134123633, -3.5691553286425504], [0.3032085805674946, 0.5423990910535285, -0.7834971491298175, 0.7558339498442108], [-0.3459937988534057, -0.7034290347033585, -0.620867042361962, 1.5594733752007792]], [[-0.9183879231001837, 0.3923255423405756, -0.051422675260086356, -3.599135263945836], [0.27146385791149996, 0.5301814435415505, -0.8032527689164864, 0.587449124588416], [-0.28787323000156867, -0.7516570399799171, -0.5934144400813762, 1.9932963485929656]], [[-0.9268934569099749, 0.37506615725896764, -0.013924698074564368, -3.523853501586333], [0.2339819654295483, 0.5484304562402227, -0.8027929213202292, 0.4398544019962585], [-0.29346372755623834, -0.7473616342488645, -0.5960953181007753, 1.9258242998017487]], [[-0.8592729785883466, 0.4955791104747015, 0.1266936996421447, -3.418262080999368], [0.2563392537111433, 0.6315309998980405, -0.7317504924320823, 0.32016690273231196], [-0.44265125694470187, -0.5962968567994338, -0.6696939026871833, 1.2273912555879232]], [[0.9900225154421243, 0.12428826322820788, 0.06639161499289296, 2.7001960348037755], [-0.09530370873159094, 0.24356472255018408, 0.9651908769932794, -1.1710701687627514], [0.10379124249980291, -0.9618880670601792, 0.25297969172955276, 0.14203362798193073]], [[-0.9603876454418355, 0.2737141628108071, 0.05230800664780069, -3.1291436136998163], [0.1558064966028288, 0.6830470533774085, -0.7135622316860613, -0.12346970272324372], [-0.23104091866818763, -0.6771464243051266, -0.6986363960972413, 2.116491655594782]], [[-0.9367438454486057, 0.32764395050718337, 0.12312761554665651, -3.1302575531942094], [0.14778537013397258, 0.6891198100931654, -0.7094176285598803, -0.17558568725150536], [-0.31728607342353304, -0.6463461371689367, -0.6939497233793457, 1.8281146557290993]], [[-0.9101449463005074, 0.38597763351969444, 0.1505238955986159, -3.11957724256283], [0.21135644306889695, 0.745084219459777, -0.6325962060313666, -0.11984897033158981], [-0.35632096583966355, -0.5439400447977254, -0.759713496634447, 1.533832170391443]], [[-0.881261986280543, 0.43594953297446826, 0.1825522287900509, -3.0320501624925646], [0.13408820955720024, 0.6009963313854138, -0.7879237029808268, -0.09210843310036716], [-0.4532081901230564, -0.6698891060172698, -0.5880909130778733, 1.3485385118023994]], [[-0.9519972201433894, 0.2654589969832747, 0.1524231405000298, -3.0133950894372235], [0.10707714204656066, 0.7552743387180174, -0.6466027829550396, -0.5130187674513498], [-0.2867678128563224, -0.5992430176436727, -0.7474436616327048, 1.8423415988502714]], [[-0.930856859336336, 0.3056806336507109, 0.20016207841994807, -3.0469787210152677], [0.12267640616222138, 0.7774780951962641, -0.6168292396288544, -0.5642161975993494], [-0.34417438428450087, -0.5496245643172155, -0.7612206194668512, 1.577116287590039]], [[-0.9697263927508298, 0.20836373981992795, 0.12733921285572905, -2.903389750570177], [0.06424317260464829, 0.7207826791326459, -0.6901776178898114, -0.6372472062771481], [-0.23559188860432498, -0.6611027767228168, -0.7123479350943812, 2.1466297770340934]], [[-0.8937558479663924, 0.42109113719412716, 0.15454041025709672, -2.905143258062655], [0.1599747579352168, 0.6211124664859653, -0.7672205555114445, -0.19807433677553696], [-0.4190567515855623, -0.6609852934462895, -0.622486851907957, 1.7099577492368265]], [[-0.9614344698311554, 0.24113687686665256, 0.13227534477551733, -3.050852908640035], [0.09631603097945893, 0.7456814080030407, -0.6593045274643323, -0.551423316026001], [-0.2576178999930887, -0.6211378626147335, -0.7401491560689315, 1.9961748975177065]], [[-0.9351221957048388, 0.32415369091969826, 0.14307642630181577, -3.1469989497794173], [0.15335513710816523, 0.7342849254865815, -0.6612925601620673, -0.36863451447061596], [-0.31941928718018586, -0.5964478458895649, -0.7363567655090845, 1.7630914580828514]], [[-0.9155986494287978, 0.3778362850496143, 0.1375458282321494, -3.203278478315978], [0.1864733892751812, 0.7020640519107799, -0.6872654087809486, -0.18066106051268727], [-0.3562397903889852, -0.6036106433078564, -0.7132653104063644, 1.6767916325883663]], [[-0.822723118853744, 0.5488636458044371, 0.1479032386995957, -3.19930817671953], [0.21350797578251085, 0.5395125225571107, -0.8144572317079134, 0.21826649215573693], [-0.5268216149521798, -0.6384942727372928, -0.5610561912151517, 1.1470277585496638]], [[-0.9177249193673995, 0.37467172025603074, 0.13191692238862524, -3.2846413205323244], [0.20211553620695893, 0.7263589206519891, -0.656926197082329, -0.1904346054888788], [-0.34195070170402253, -0.5762150817443641, -0.7423246575282694, 1.7013026223809873]], [[-0.934495402845768, 0.3543071805447646, 0.034420399104966026, -3.3228792335458994], [0.204840145002648, 0.6143008905134204, -0.7620202956022321, 0.08409075304942246], [-0.2911337442747229, -0.7050537835717489, -0.6466376923871218, 2.0467282792250425]], [[-0.9200815795646805, 0.3917010417246447, 0.00449231094098651, -3.338589876432997], [0.240605529856363, 0.5741430117104496, -0.7826038468513895, 0.2384046597602196], [-0.3091259710026014, -0.7189785087301862, -0.6225038458000209, 2.0260306005393365]], [[-0.9123635467404723, 0.4088866447717485, 0.020111447149522593, -3.410070772003158], [0.2425176270655149, 0.5794107824101862, -0.7781184651383922, 0.2690908248857368], [-0.32981503777368604, -0.7050495421983604, -0.6277954952882543, 1.9502165672596106]], [[-0.8953870050129757, 0.4451378034523044, -0.011595136547321139, -3.396091701427208], [0.26564165833503744, 0.5130727537474508, -0.8162051572484815, 0.5407297236612311], [-0.35737462222562005, -0.7338996425259142, -0.5776458206283763, 1.8311535101498915]], [[-0.871110731230377, 0.4875367366436302, -0.05894085474573263, -3.3533554397225247], [0.2915234822776376, 0.41679312611508923, -0.8609863816019, 0.8479473240045718], [-0.39519634767542816, -0.767197119680524, -0.5052013720665358, 1.6233149040556547]], [[-0.8916354473871538, 0.45080298736710095, -0.04198684965090235, -3.4063829330672357], [0.264568034284067, 0.4435285694075479, -0.856321296800657, 0.7288228154995204], [-0.36740983138421157, -0.7746348008579216, -0.5147338546297819, 1.8814857978824928]], [[-0.8381273404780727, 0.5427356701932946, 0.05459444516604825, -3.351822196182197], [0.25436397685762996, 0.47740837070410164, -0.8410589841734206, 0.6250675699932825], [-0.48253655656367045, -0.6910276694036865, -0.5381814115130561, 1.4543107091713452]], [[-0.961338916850331, 0.27518156870734733, 0.010128731055561613, -3.1872549842228732], [0.15888194425621877, 0.5843409853680872, -0.7958028277207967, 0.15653720941075128], [-0.224908903199487, -0.7634269559445852, -0.605471112604712, 2.412535793481155]], [[-0.9353688883561043, 0.3536144260190395, 0.006471507296660961, -3.091563965300254], [0.19138908576794633, 0.5214736986369243, -0.8315259463653772, 0.4143041716456927], [-0.2974142910896771, -0.7765449242259921, -0.5554482155111069, 2.0872608651843376]], [[-0.9969843656393458, 0.07757168909458384, -0.002192651756369228, -2.688151058824883], [0.04166574262854064, 0.5112414589703296, -0.8584265469573393, 0.02786894575126081], [-0.06546862272817183, -0.8559292048299918, -0.5129318236931437, 2.8892073623040972]], [[-0.9944448963206539, -0.09954490541798053, 0.03420760130627666, -2.2024046445673284], [-0.08493822283643787, 0.5669632858036506, -0.8193522629810184, -0.3850483772929153], [0.06216788948638591, -0.8177062090727045, -0.572268913327253, 3.225172164038905]], [[-0.9735988751119559, -0.21748422940675888, 0.06932416851345842, -1.8155216874319646], [-0.18047777187141778, 0.5474693115001453, -0.8171322578541892, -0.526163603578257], [0.13976052461644023, -0.8080705185346789, -0.5722665749753627, 3.3462968686189845]], [[-0.935088849960997, -0.3258443238668763, 0.1394070273779567, -1.3800688468486586], [-0.30685741752981793, 0.5475395899939798, -0.7784850176439856, -0.7529851843037961], [0.17733405760189183, -0.7707307402672893, -0.6119859132541249, 3.334442879002568]], [[-0.8779330749619864, -0.4442555325923278, 0.17852321319340647, -0.9999995485471347], [-0.40139089535766487, 0.47968250908421306, -0.7802499853269121, -0.8024611028628685], [0.26099590995217414, -0.7566648612429295, -0.5994492662006145, 3.3762604914185483]], [[-0.8074397885393392, -0.5528132303954717, 0.20600611685886944, -0.6416090458832997], [-0.4824912244081462, 0.4178603151694902, -0.7698019065808954, -0.8298453042390836], [0.33947489782408796, -0.7209648322256619, -0.6041245769219689, 3.3874870848924608]], [[-0.7713027076585077, -0.5967979044525777, 0.2211885946419176, -0.4737698576400046], [-0.5136153063923552, 0.37838594010177884, -0.7700801239954063, -0.7301490260837132], [0.37588754993766643, -0.7075707325591591, -0.5983746386901381, 3.326465805502697]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.754364846915401, -0.6202625971525108, 0.21496043429414138, -0.35325059397907305], [-0.466195846718482, 0.2756530254537545, -0.8406407330486846, -0.11364998987771655], [0.4621635102869345, -0.7343634795738513, -0.4971067990155078, 3.2825592995989106]], [[-0.7599882871826328, -0.6175570502000621, 0.202586014061697, -0.2968274987229851], [-0.3867376026676607, 0.17917965399027236, -0.9046152100638132, 0.3511568324256241], [0.5223522087902747, -0.7658445934679727, -0.375006971438928, 3.244220581019699]], [[-0.7088462255063993, -0.683676156822566, 0.17356249934146736, -0.05374265579772707], [-0.3472896993061958, 0.12410406151698483, -0.9295095732001905, 0.6513549688871819], [0.6139437216399748, -0.7191558207421492, -0.3254043825020535, 3.2419846477877883]], [[-0.8129907437660986, -0.562275634054202, 0.15130155947507978, -0.4122329572648498], [-0.25725966832311864, 0.11374679223689654, -0.959624473588547, 0.8899892189656171], [0.5223633922901996, -0.8190896035262333, -0.2371259323446373, 3.08788996161258]], [[-0.9362249166528612, -0.343797621620313, 0.07270557617238876, -0.9474244102761062], [-0.14098636373653214, 0.17797758227763283, -0.9738823468196552, 0.9733852513576623], [0.32187847190934216, -0.9220234137888393, -0.2150978236674701, 2.8993842466481063]], [[-0.9991684640784283, -0.02712845326203815, -0.030437270159525028, -1.5627265397062], [0.024217722589990904, 0.20568038813775658, -0.9783195182802275, 1.19007384327824], [0.032800644867269683, -0.9782431318231227, -0.2048523681512614, 2.4705238277004664]], [[-0.9399807365741573, 0.29867482262589307, -0.16501383335616454, -2.012857247424386], [0.23115968779267868, 0.20164813793499103, -0.9517894868125737, 1.4997387386538557], [-0.2510008239211498, -0.9328083290777064, -0.25858694397467485, 1.9340714815853537]], [[-0.7952291136315073, 0.562504249354445, -0.2262733441902505, -2.362900783426311], [0.3549220132753385, 0.12930650835897384, -0.9259104661837403, 1.8751101153943635], [-0.49156995567815953, -0.8166203501959788, -0.3024734406859043, 1.3471374548928983]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7333602583257727, 0.679609596067564, -0.017706734347091746, -4.238074574673471], [0.31994301789473034, 0.3220323731175796, -0.8910284035678501, 2.1168718317465887], [-0.5998493117515167, -0.6591099662401881, -0.45360208949484543, -0.5486915346913601]], [[-0.8092365430213652, 0.5873451261890519, 0.012724786080593742, -4.388162222785666], [0.23997103593608948, 0.35024434358957146, -0.9053964886696162, 1.7666909318629158], [-0.5362369992368954, -0.7296263444568576, -0.424376340202812, -0.31124018863497066]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.19427165289874804, -0.9729404323221937, 0.12508173340936332, 1.5057125336052346], [-0.7751606145098471, 0.07412100316814996, -0.6274010667842884, -1.5603223899802532], [0.601152681598198, -0.2188446756081805, -0.7685847132003379, 3.562624868115228]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.1291149206012534, -0.9897822394760447, 0.06050169994238186, 1.8377208742346787], [-0.7640631889826566, 0.06040853394033219, -0.6423069766621202, -1.3359975737991383], [0.6320892187973036, -0.129158536090209, -0.7640558173558059, 3.5981702549577044]], [[-0.3577912488807321, -0.8977783188435849, 0.2568647746164361, 1.3558015737033824], [-0.7702727984442416, 0.12824661828070838, -0.6246860178333106, -1.4281596020148513], [0.5278875241954889, -0.4213631392444631, -0.7374197357575998, 3.9925748996851844]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9583428034522445, 0.24943462078054757, 0.13914539527902875, -4.139564362483226], [-0.014512990787834468, 0.4440133606486891, -0.895902622311069, -0.476789158712639], [-0.28525154542909137, -0.8606012465256613, -0.4218969664607618, 3.4262771486901693]], [[-0.9682066818926799, 0.21264103247962965, 0.1317558820104968, -3.9698952372155856], [-0.023954323753891643, 0.4454716587222567, -0.8949755257261145, -0.46822382392988726], [-0.24900203114003025, -0.8696774071925972, -0.4262149644333255, 3.506562792246256]], [[-0.9456256683074398, 0.2625642089931768, 0.19196909020437442, -4.000622493692633], [0.01112283545158918, 0.6159668580812081, -0.7876935395679471, -0.7012588121024708], [-0.3250667284875903, -0.7427279891732582, -0.5853945303203845, 3.2951270335998637]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9880277152234375, 0.1542598271047768, 0.0022670888730147443, -3.6784497774792717], [0.061642483069456876, 0.40820325321369544, -0.9108075034532744, 0.003959605558141459], [-0.14142644106172472, -0.8997633076578301, -0.4128250864001062, 3.54206928547805]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9671774280275857, 0.2525481426514276, -0.028058124621197778, -3.8501912260225066], [0.14319227316534158, 0.45047507538702525, -0.8812310590082468, 0.3890392983356201], [-0.20991378139533068, -0.8563244957948875, -0.47185226743329867, 2.9348752585850217]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3385620777425796, 0.9215671626001527, -0.1899728515649824, -2.8684209187324066], [0.482920089940023, -0.0030958127183242645, -0.8756589534036255, 3.1491053196736303], [-0.8075666574636098, -0.3882066212221479, -0.44399517226242025, -1.4387664246622114]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5447440016852089, 0.8315871817660885, -0.10824385317568769, -3.671775386305944], [0.3892268633471457, 0.13638988700543353, -0.9109886100119954, 2.7720619721207314], [-0.7428030839172166, -0.5383869963557623, -0.39797364319524076, -1.4873046019258893]], [[-0.5787814700357443, 0.8114078172474336, -0.08142090673173658, -3.8635104960463655], [0.396012755246418, 0.19238141464600267, -0.8978659638169515, 2.824782119047869], [-0.7128715926626641, -0.5519119000425323, -0.4326746433130076, -1.387562828078197]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"f91c7008-f21c-4047-bfc1-d937787665e5\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, true, false, false, false, true, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8918373756262055, 0.3981884252311476, 0.21464406222418814, 3.9852624594591677], [0.42894004462137036, -0.5937188629962254, -0.6808144753474958, 4.374041945747456], [-0.14365421524055333, 0.6992452286103981, -0.70029963352069, -0.5922106475958386]], [[0.8142445228040627, 0.5602219880787239, 0.15217483746239208, 3.2945859603323004], [0.4825610473626361, -0.5074565706175295, -0.713878606280768, 4.599437105429035], [-0.3227083709045352, 0.6547053940592045, -0.683535042509104, -1.7923153077213378]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6942308491123753, 0.7162292604507343, 0.07112787509060384, 2.540645942166096], [0.5299336547567257, -0.4417689360884224, -0.7238857151950734, 4.993986598326686], [-0.4870460447400121, 0.5402368495220385, -0.6862436132465005, -2.7588184224043095]], [[0.6090814709787069, 0.7905471908712133, 0.06367810232763407, 2.0969720549882154], [0.5653906081239385, -0.37649443361224594, -0.7338837794257598, 5.16395664481984], [-0.5561953091816382, 0.4829980128992539, -0.6762837404371882, -3.211251105134978]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.2517713678388809, 0.967636449690929, 0.017055191763018007, -3.2717894438827186], [0.5506628910946557, 0.15772569636435907, -0.8196907862588512, 5.134715224763018], [-0.7958527242573303, -0.19698300925692142, -0.5725522992323699, -4.702185190415346]], [[-0.27652418168683535, 0.9607409011005652, 0.02261189719816048, -3.4738286672496193], [0.5610337024532333, 0.18049298415089787, -0.8078758985041703, 5.2889123739094925], [-0.7802407075089347, -0.21071118533380662, -0.5889186995852478, -4.770663481689916]], [[-0.3643663957403354, 0.930471795910654, 0.03820165794830471, -4.299839899303956], [0.564192998864483, 0.25319858677953, -0.7858605065055437, 5.306752698092014], [-0.7408936426286155, -0.26478805235065006, -0.6172227293650574, -4.523983511806419]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.08783485267986735, -0.996058212071445, -0.01237242174120845, 0.9436365042098502], [-0.3742756939674807, 0.04450983783543683, -0.9262486595083546, -1.372183187048471], [0.9231482782087971, -0.07672621781959177, -0.3767098936041286, 7.4498166780704445]], [[0.3744826415406556, -0.926382624660235, 0.03972384563894954, 4.675296865855167], [-0.3161877156032563, -0.1678551778597231, -0.9337290655041617, -1.2224840260820846], [0.8716582355982918, 0.33710513492573035, -0.3557696562670542, 8.046713065720228]], [[-0.013773046785996557, -0.9998006464682768, 0.01445581211298419, 1.5683201751569122], [-0.4498821759744226, -0.006715036599156732, -0.8930626719463701, -1.5790457742785309], [0.892981708056077, -0.018803606172410947, -0.4497000038605333, 6.895661542108657]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.965961215920097, 0.2586851979597031, 0.0009474675282095807, -3.0202499288144735], [0.1290296237286246, 0.48497992643704047, -0.8649542341381837, 0.5505017628789741], [-0.22421036001625205, -0.8353899923446961, -0.5018498531948685, 2.1161874935572023]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8901904275544243, 0.45290477290047726, -0.04937883528839451, -3.2486024588648497], [0.36768846626978324, 0.6502094462358319, -0.6648555240034237, 1.107846713223777], [-0.2690096549617611, -0.6100040513879066, -0.7453380862586418, 2.1768925498187173]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9905513749996333, 0.13190795131065253, -0.03752686860587284, -3.0391326668574243], [0.12210615452984731, 0.7237152078085917, -0.6792101184556217, 0.12146996540177893], [-0.062434449723441685, -0.6773747783668899, -0.7329838668894002, 3.077234672697119]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9741206358173468, -0.19900024869003421, 0.10718156509452761, -2.044005509872502], [-0.20836630730045982, 0.6068537901048184, -0.7670149668796478, -0.7011890698320056], [0.08759263015104787, -0.7694981341476543, -0.6326137468364881, 2.971239989627057]], [[-0.9617107914651329, 0.07733839302772193, 0.26292798737182227, -2.4002221088557802], [-0.18162918921451793, 0.5385812452253637, -0.8227642918337994, -0.5477506540000859], [-0.2052393510143324, -0.8390166954568821, -0.5039124859931825, 2.1781654685594765]], [[-0.5121347221013767, -0.8263843842277228, -0.23410868399679907, 0.679367835928042], [-0.28592370316813925, 0.4210515093868987, -0.8607922295244261, -0.8205059189867645], [0.8099170713009841, -0.37390436738233196, -0.4519179811289375, 4.892971719631524]], [[-0.9929138590471986, -0.0797824595644859, 0.08807285426191815, -2.308273532896398], [-0.11820222320785129, 0.7395088718328381, -0.6626876058213584, -0.9710585509110183], [-0.012259809979000572, -0.6684021152168536, -0.7436990718246963, 2.6714371516145565]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6625039274692286, 0.7377519766466922, 0.1296555708087611, -3.6986209940811534], [0.2724816662600744, 0.3985914601394889, -0.8757160438498336, 1.0719771301639776], [-0.6977408456153191, -0.5448365524244577, -0.46509229568146004, 0.29255003990585593]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9933490423362211, 0.08304703844116113, 0.07975505937471718, -2.899042644229603], [-0.04833972055076285, 0.32787794029882933, -0.9434825529295553, 0.4988272537737234], [-0.10450335643789875, -0.9410628276961902, -0.3216827673682008, 2.63851076592592]], [[-0.9965412572339565, 0.05914651170369423, 0.058371335292678156, -2.7992713627054493], [-0.026957835766111354, 0.43434089652674124, -0.9003450786754786, 0.351281335662914], [-0.07860532883572754, -0.8988045815179356, -0.431244161144236, 2.658552172258793]], [[-0.9983942346162994, 0.056507561512586776, -0.0039809266301994335, -2.7409304558965144], [0.03021371472092656, 0.4717445933037798, -0.881217436352354, 0.39268375387709764], [-0.04791746787650902, -0.8799226864790758, -0.4726943855090203, 2.655576437838809]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.08269178116466358, -0.9945139423706674, -0.06406315445065258, 2.7216532512113027], [-0.6496125881501554, -0.0050413498914738675, -0.7602486896457816, -0.1036003099874896], [0.7557549567450231, 0.10448254984266286, -0.6464656542568241, 2.3325471850452795]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8622683332242091, -0.4764029461152045, -0.17185329339729802, -0.7387812866767153], [-0.18400964728182082, 0.6108393121030893, -0.7700751810678255, -0.6701710462601831], [0.4718408325123675, -0.6323887789344289, -0.6143701335936325, 3.559024702922827]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8945894886996693, 0.42652184614620486, -0.133374515812043, -3.45457799884798], [0.35563645876400035, 0.49874521103684305, -0.79042768402025, 0.8668737004283557], [-0.270614773997772, -0.7545411381944975, -0.5978589422817782, 2.1992786485705977]], [[-0.7485125111818284, 0.6627925697601353, -0.02085737459580475, -3.953522030680957], [0.5400423307321984, 0.5910307144536214, -0.599196942240009, 1.3786289756424501], [-0.38481593213068566, -0.45977027311821494, -0.8003299284265171, 1.5370473459542422]], [[-0.3568692676822874, 0.9302574666062592, -0.08523714922035303, -3.2249537044160324], [0.5421208458707137, 0.1319309443245284, -0.829879036005887, 2.3763500106546758], [-0.7607557520363089, -0.34236715927924943, -0.5513940641598596, -0.5001813405454794]], [[-0.4318501562189266, 0.9013824160408785, 0.031861930669651595, -3.609993604514184], [0.4878550803522375, 0.2631507640726937, -0.8323155026445618, 1.9693472126068887], [-0.7586190500825832, -0.343891575093468, -0.5533856895796394, -0.3898736176236263]], [[-0.61346323662128, 0.7897228051694463, -0.00086504881026922, -3.851400612884924], [0.4449436303139844, 0.3447305194908122, -0.8265506849398936, 1.6226628411390527], [-0.6524477167997109, -0.5074433563728029, -0.5628616321228058, 0.35419435972546787]], [[-0.8042423634437734, 0.5884499968358613, 0.0831914783270988, -3.874428726115949], [0.28959474944780517, 0.5102756028309579, -0.80978620033177, 0.719524419265589], [-0.518969268776713, -0.6271725523166469, -0.5807972862247088, 1.0857804195267873]], [[-0.8361425107080156, 0.533963405978273, 0.125494154696457, -3.361677701413387], [0.22521638234537628, 0.5428245933024863, -0.8090853119599019, 0.4696178765102755], [-0.5001432623860462, -0.6482472845929034, -0.5741360249172404, 1.148920448582203]], [[-0.9290676377476645, 0.3625567756562253, 0.07338875197014719, -3.581722915113781], [0.1630064461655561, 0.5793642999803682, -0.7986024708305961, 0.10095900446379355], [-0.33205755976705287, -0.7299928714268511, -0.5973677131110542, 1.9132715637438167]], [[-0.9425539113361376, 0.3281786325405737, 0.06237715422129794, -3.4427547907822413], [0.14183597469988618, 0.5622206471551521, -0.8147333920942327, 0.08810252120516081], [-0.3024478145166233, -0.7590828209465951, -0.5764708062320916, 1.9581436336752844]], [[-0.912654766014088, 0.37804219397739386, 0.15538782978254417, -3.3649289164244975], [0.14973360018931087, 0.6629785430894111, -0.7335116225237264, -0.04298601167093149], [-0.38031714008984396, -0.6461760990440613, -0.6616761458433285, 1.636337448147898]], [[-0.9581527023796859, 0.27833891004590466, 0.06686441562567438, -3.1977338952798378], [0.13370584621666937, 0.6416919154432739, -0.7552180031899575, 0.009306465530800834], [-0.25311291079277143, -0.714674007369234, -0.6520543823798828, 2.0994308025437194]], [[-0.9673685572435138, 0.20707389707487817, 0.1460084778594214, -3.1458028353574363], [0.04694866050017042, 0.7127726705479426, -0.6998220798154294, -0.3472353148888861], [-0.2489857380129274, -0.6701309732210387, -0.6992357120427857, 2.081455245864525]], [[-0.9677110185983219, 0.2506786908630781, 0.026373820932353423, -3.0710020855617346], [0.13256454992746858, 0.5951381038017672, -0.7926142047085484, 0.20438756555040588], [-0.21438755697550688, -0.763525265692243, -0.609152808467353, 2.2190341941532674]], [[-0.9548085940232099, 0.295519427406331, 0.031761876595303704, -3.09376102430685], [0.1588364830973184, 0.5976557365509796, -0.7858616877065467, 0.2793126739069978], [-0.2512200637224191, -0.7453025483608258, -0.6175861000623012, 2.0928600083920244]], [[-0.9504755377851003, 0.31079094350154834, -0.0022894343278772877, -3.0795604414310747], [0.19973380722435985, 0.6051584406283227, -0.7706423736000759, 0.3537826273471719], [-0.23812319988566114, -0.7329340019222154, -0.6372637526978129, 2.0958203705694776]], [[-0.9326207948850312, 0.3598610394016541, -0.026804575519370308, -3.072079130998872], [0.25630604967913345, 0.6082931892201234, -0.7511901256315135, 0.4533535811975584], [-0.25401901866964616, -0.7074457069409444, -0.659541439096087, 2.0105478168767155]], [[-0.946543392515542, 0.32010706411415, -0.03983809219062903, -3.0404259588105877], [0.22897932607414684, 0.5797674844632, -0.781945095380643, 0.377713927188334], [-0.22720931828558252, -0.7492670628443725, -0.6220729814264311, 2.065301035166853]], [[-0.948282484266701, 0.30283032076108884, -0.09515317577837396, -2.9429860864022688], [0.28362121592027845, 0.6737119344888529, -0.6824010808953853, 0.2876235077511158], [-0.14254590808885712, -0.6740964516706964, -0.7247583307090025, 2.293276353323074]], [[-0.9421794120723931, 0.3326556527994335, -0.04047433912372762, -2.965407570046263], [0.2672679378333233, 0.6730795779979785, -0.6895880879832441, 0.24260988552686835], [-0.2021529244736336, -0.6605331924609439, -0.7230699114083721, 2.052332097204858]], [[-0.9723406293178424, 0.1780832385674184, -0.15112928478333426, -2.704267146832039], [0.23354152220692156, 0.7316587354078273, -0.6404169363053198, 0.04581707865832984], [-0.00347246066301167, -0.6579983700912626, -0.7530113458469172, 2.5844738215257177]], [[-0.9599520320891455, 0.2797727257557494, 0.014809389289156788, -2.8703417742099977], [0.18506929825477986, 0.6729176911845565, -0.7161921081206697, 0.06102632783383392], [-0.21033651830198888, -0.68476930627332, -0.6977460471077946, 1.9064976576401578]], [[-0.9674659563199517, 0.25102739339508934, -0.0315415777536365, -2.8300438355764403], [0.19546858472623924, 0.6624800692538144, -0.7231266764727895, 0.15257434043333945], [-0.1606289380748147, -0.7057658291577515, -0.6899948830580045, 2.0818505298855756]], [[-0.9634245010687356, 0.2583864321163086, 0.07106111762885942, -2.8879403578416194], [0.12814403188955525, 0.6770936642714752, -0.7246539014553882, -0.028100891507858945], [-0.23535576863877156, -0.6890432653336299, -0.6854393048744887, 1.766082443385314]], [[-0.9722169064258984, 0.1940979128715879, 0.13084451489669002, -2.8387464214714386], [0.03206139441518188, 0.6641170744485914, -0.7469408131933871, -0.19973862088249236], [-0.23187572932027795, -0.7219934290869535, -0.6518888973647673, 1.7067345664424183]], [[-0.9812491378532958, 0.1693152962695906, 0.09210027096216583, -2.7689774460914114], [0.051034138924084704, 0.6890155248260759, -0.722947524522302, -0.22823601307193458], [-0.18586459083548118, -0.7046913771274543, -0.6847367500549179, 1.833288837630147]], [[-0.9871065629448555, 0.10553181248211219, 0.12034811982509157, -2.6644147082463063], [-0.025269490020509815, 0.6397007388610364, -0.7682085768687743, -0.28634777714923165], [-0.1580572246539134, -0.7613448635506017, -0.6287860625680393, 1.9468312569047321]], [[-0.9972542292705167, 0.04208605476337677, 0.060932472430733804, -2.553784448812084], [-0.015960876696851846, 0.6813197092847673, -0.731811932230671, -0.3786554989839441], [-0.07231357145886223, -0.7307750801269665, -0.6787772312388579, 2.138428678374561]], [[-0.9966925863816325, 0.06385798137670032, 0.05025978975667753, -2.581936165656474], [0.009290031533663246, 0.7039536768213625, -0.7101851281206812, -0.3863099323533141], [-0.08073155248102179, -0.7073693371246579, -0.7022186535046092, 2.201810492422878]], [[-0.9969268764265992, 0.0782483529632277, 0.0037414324591916563, -2.5836726600097144], [0.0543728108511265, 0.7255416583712149, -0.6860268940851335, -0.3592971218603161], [-0.056395039661766164, -0.6837152164655176, -0.7275665620924717, 2.2736954336578084]], [[-0.9877113192470592, 0.15174956885384863, -0.037395429986886414, -2.6392351274218417], [0.13701482106764765, 0.7256398843739167, -0.6742949629157919, -0.1907504801506068], [-0.07518835441099614, -0.6711324955316049, -0.7375146675168475, 2.270913752806254]], [[-0.9898636696743008, 0.11432065425089077, -0.08426567195824713, -2.5315399687904354], [0.14142496437658825, 0.7391602256794236, -0.6585143432186001, -0.2460530548388597], [-0.012995957448659785, -0.66375669396639, -0.7478356479232591, 2.5047865690176763]], [[-0.9921844257615959, 0.10093169571868808, -0.07336796355005357, -2.556155142611022], [0.12446853008163229, 0.7590282901589959, -0.6390490120152201, -0.3301395749697683], [-0.008811940504203766, -0.6431864795979945, -0.7656588680129609, 2.5607374361770496]], [[-0.9897749993831746, 0.07600708372802265, -0.12069951871982779, -2.5146491976019227], [0.13907738043760765, 0.7021336716984963, -0.6983307162926469, -0.11115193850017586], [0.03166911502788883, -0.70797685717144, -0.7055252205718805, 2.7842221647590213]], [[-0.9923189663330199, 0.07850684083811206, -0.09560201356345188, -2.5786254260040007], [0.12359304882621287, 0.6621343481146534, -0.7391230366648193, -0.03305970062345049], [0.0052751623300574466, -0.7452615520663882, -0.6667513717076177, 2.787095629487894]], [[-0.9917088216814912, 0.11305881163551068, -0.06108451612867492, -2.702442890892989], [0.11992714950412911, 0.64350012769705, -0.7559927674691705, 0.005243910819669204], [-0.04616374996599057, -0.7570503885247316, -0.6517235743961012, 2.6779365663274284]], [[-0.9862078427045375, 0.16531327767401854, 0.008100074859844111, -2.860519493614343], [0.11186398836640177, 0.7018171886015822, -0.703519070025918, -0.15928616975250315], [-0.12198581513776004, -0.6929099176718745, -0.7106302181142682, 2.449752339134766]], [[-0.9844389453835947, 0.17532769096424095, -0.011839070621615842, -2.868088534623821], [0.13004166630807967, 0.6815371598054961, -0.7201362821217074, -0.046410693538819374], [-0.1181910649577794, -0.7104697745755304, -0.693731627921591, 2.4422473663599424]], [[-0.9918652155899726, 0.06976810730008952, 0.10646973892341549, -2.842912593418584], [-0.025498246619755343, 0.7105687468554549, -0.7031656244524376, -0.6014632637197236], [-0.12471260370137091, -0.7001603153535849, -0.7030094588851513, 2.4833182483627714]], [[-0.9919675867387459, 0.12646697229812826, -0.002532148781781561, -2.8089625798861895], [0.09130449386241601, 0.7020228120470625, -0.7062771840899742, -0.2170913456491121], [-0.08754311086679897, -0.7008352704332736, -0.7079308775978651, 2.5633488078536124]], [[-0.9822555438515961, 0.18753204503079243, -0.0024038842264253873, -2.887345689448541], [0.13732649217762324, 0.710441139860624, -0.6902280937050642, -0.08087301430490293], [-0.1277320677003015, -0.6783104885523343, -0.7235878661233195, 2.3085422575335857]], [[-0.9829722993017241, 0.1794641769038985, 0.03947237025677322, -2.9298250124068583], [0.10641623914874321, 0.7310963172981788, -0.6739241492026221, -0.26133194735144616], [-0.14980334726206573, -0.6582482693036472, -0.7377453307936513, 2.2980367806398427]], [[-0.9803351314257492, 0.17311144870429598, 0.0947388854692637, -3.0155241705021227], [0.07389945510240065, 0.7671886441338616, -0.6371502608079317, -0.5019402361605616], [-0.18298060178069872, -0.6176196326539071, -0.764894822006546, 2.20271767405462]], [[-0.9514601416951423, 0.2640579292874992, 0.15810442354930623, -3.195688441479239], [0.14165526146661223, 0.8317802665700658, -0.5367265365560531, -0.5562318039058516], [-0.27323503740239113, -0.4882775830662601, -0.8288109653055309, 1.7660693463932458]], [[-0.9721886716659797, 0.18509997084380772, 0.143482359466103, -3.1642387485442205], [0.062438225945946, 0.7953279072385342, -0.6029552121910022, -0.7037997167930282], [-0.2257225168764992, -0.5772274428344473, -0.7847660954792478, 1.9959632210734486]], [[-0.9544149248969507, 0.20004502501344573, 0.22152683607481566, -3.1632686975051243], [0.06301388023093775, 0.860487783901497, -0.5055591208301276, -0.8971821747325125], [-0.2917557232209668, -0.4685539048216975, -0.8338679968940831, 1.6930918999208289]], [[-0.9751888055387189, 0.1293509903692825, 0.1796527618559015, -3.0757347285599836], [0.007558820751949635, 0.8305151046663739, -0.5569448133790653, -0.969129667664137], [-0.22124569550797452, -0.5417683842856538, -0.8108867738517539, 1.9643463512543624]], [[-0.9419119591581967, 0.2008582720848468, 0.26917989473557946, -3.1454672197746465], [0.041021225533367664, 0.8642650321892034, -0.5013613598899858, -0.9742451386790398], [-0.3333453468259435, -0.4611961715691978, -0.8223010221806896, 1.5208880240957041]], [[-0.9710902886511268, 0.12056869057813559, 0.20602631419249703, -3.0499754708508044], [-0.013070600726171513, 0.8349224234138581, -0.5502124192322339, -1.030644085053593], [-0.23835438045928317, -0.5369988247035594, -0.8092091519396376, 1.8260017420904255]], [[-0.9699823742940338, 0.12296943639861951, 0.20979206674875697, -3.0679167745988773], [-0.014937436477216598, 0.8309606044666643, -0.5561306922081221, -1.0357112215711048], [-0.2427160203826648, -0.5425707249163022, -0.804180291920537, 1.8663367519411738]], [[-0.9459073892576638, 0.1543963468707517, 0.2853436156999439, -3.1024230704518385], [-0.002835965441016164, 0.8755361433544859, -0.483144304509502, -1.15395953301478], [-0.32442436444843054, -0.4578189923462324, -0.8277382448572209, 1.5114151640953353]], [[-0.9534574887575518, 0.14059502221900716, 0.2667430540039976, -3.095472713849195], [-0.004756243294626469, 0.8775166013727798, -0.4795226714816393, -1.1771919349806168], [-0.30148995884086255, -0.4584731770151911, -0.8360060709562651, 1.5814103872196055]], [[-0.9778487675585212, 0.07958966458540881, 0.19359047774997468, -3.0182034167890768], [-0.032793669517161575, 0.8552105347218175, -0.517242222310227, -1.194358748446717], [-0.20672775097669038, -0.5121332117642882, -0.8336565302233975, 1.8986555227393573]], [[-0.9555719958317266, 0.12588967585441768, 0.2665219508697937, -3.0731774858218377], [-0.009853668132931565, 0.89005787671397, -0.4557410244028349, -1.2516670718963467], [-0.2945930515244668, -0.43811957912502497, -0.8492739065700855, 1.5949317012302981]], [[-0.9488662247486255, 0.13262527036707525, 0.28646714504695114, -3.0836236257090106], [-0.004442562294775382, 0.901764962026125, -0.432203906625424, -1.2826338594346418], [-0.3156471941448994, -0.4113763373385511, -0.8550651191028498, 1.4821382690366343]], [[-0.9489172221081825, 0.13215355148505, 0.28651622016280065, -3.0985890977915598], [-0.0016876203058551476, 0.9059227532440597, -0.4234396262661369, -1.3067955537547005], [-0.31552061346953786, -0.40229268447809324, -0.8594226774359726, 1.4849278449415022]], [[-0.9741388499537664, 0.08959582070529838, 0.2074273123841158, -3.0714196956958806], [-0.01660344707268606, 0.8871557916324335, -0.46117125552047866, -1.2789953527358755], [-0.2253393586483685, -0.45268884488705274, -0.8627253231236278, 1.8067364443846419]], [[-0.9515193384722116, 0.15252098118346238, 0.26711102338211284, -3.1292935997081064], [0.024070344771052493, 0.9026617841338354, -0.4296769972513352, -1.2185676646737733], [-0.3066456701406501, -0.4024165177563604, -0.8625713763050784, 1.5200113430661184]], [[-0.9465419876620376, 0.15089301618665812, 0.2851132463757034, -3.120538949715966], [0.007895944051941758, 0.8944239612212829, -0.44715034570126155, -1.222467555689513], [-0.3224839835717865, -0.42099533876198914, -0.8478012768805848, 1.4942003176230878]], [[-0.9535189322729933, 0.12855146086662705, 0.2725365437992245, -3.087405321622169], [-0.014135153370290886, 0.884358940953657, -0.4665934643718498, -1.2406938004974706], [-0.30100140072127385, -0.4487580477990143, -0.8414358985088813, 1.6001775824651354]], [[-0.9778060814867541, 0.07544684741914187, 0.19545598026673994, -3.0124813122799208], [-0.03622168782739902, 0.8579870496745196, -0.512392634531126, -1.2032490214509683], [-0.2063571087664633, -0.508100379654775, -0.8362121428538454, 1.940366620461279]], [[-0.9602777032242675, 0.12017631949875406, 0.25184198403375685, -3.06278643279503], [-0.017663042071880644, 0.8745228830959328, -0.4846625051376931, -1.2076529714831166], [-0.2784865340282949, -0.46985889283199783, -0.8376621462090768, 1.7055810899376282]], [[-0.9532665248244664, 0.13521916870095088, 0.2701827327289964, -3.082361177774737], [-0.013003205347030485, 0.8750676014393802, -0.4838260116631111, -1.188364301550704], [-0.3018507069724825, -0.46472838231267277, -0.832414368793126, 1.6482808118017511]], [[-0.9671106688229407, 0.08253928925550114, 0.24059139630926257, -2.973742069702403], [-0.04458335997618821, 0.8762331486186652, -0.47982058446366577, -1.2502574082772335], [-0.25041820673041637, -0.47476597918449986, -0.8437345475603717, 1.84773473861114]], [[-0.9798010017607959, -0.09363802596576332, 0.17669724684266028, -2.5602436197212417], [-0.17271607847212012, 0.8416079089302008, -0.5117277438866757, -1.4924580009224344], [-0.1007926246595128, -0.5319098116404414, -0.8407810649002966, 2.378751474771852]], [[-0.9513383881923283, -0.2990880227452062, 0.07417294521579934, -1.8811446951898025], [-0.2907362654820177, 0.7914260765644547, -0.5376961867703391, -1.639720058010835], [0.1021160863194075, -0.5330957887510994, -0.8398697428355487, 2.900361620564752]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5897781720257818, -0.8071479675591468, -0.025958934243649145, 0.7390155009812195], [-0.4405995217015194, 0.3485496943482962, -0.8272757533290224, -0.3158791863894362], [0.6767819215067138, -0.47647168754800917, -0.5611960100417968, 3.272633992143673]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9948621320055645, 0.09371320709503035, 0.038303695870068794, -2.3661881765177126], [0.051694777020661456, 0.7955413692543292, -0.6036899699628369, -0.738365445821495], [-0.0870458978362959, -0.5986081895705326, -0.7962984660596568, 2.382597139187408]], [[-0.9897120072009241, 0.13753721944854955, 0.03941644414047926, -2.4372267352316612], [0.0817681358410536, 0.7698128794237048, -0.6330103495476697, -0.5957092803950943], [-0.11740576971936686, -0.6232749344709326, -0.7731392121066281, 2.3089660924186006]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9034288012476283, -0.42873772778813973, -0.0006015374772144477, -0.764314886712182], [-0.30882875374564406, 0.6517305907813117, -0.6927279681806957, -0.9640642078930804], [0.2973906554284883, -0.6256446258147716, -0.7211987245225193, 3.1567811450022005]], [[-0.9420862646234472, -0.3348781063681743, 0.01816931157490398, -1.1887840540821828], [-0.23838835055142868, 0.6305642786142489, -0.7386201221582451, -0.854516334291778], [0.23589078898763588, -0.7001752240767718, -0.6738769852575714, 3.1898776671196827]], [[-0.9384129557990365, -0.340649253892468, 0.05778589975954808, -1.2111544589539196], [-0.2898989738812963, 0.6852743342103593, -0.6681000462618749, -1.18626571577481], [0.1879885883001602, -0.6437058122271795, -0.7418241826564163, 3.0585922448100353]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9531756986424644, -0.12297168913615399, 0.27628617625290425, -1.5017499330422837], [-0.26775957866222827, -0.08149737046537009, -0.9600328049821297, 0.94711744830062], [0.14057345251531583, -0.9890582097522022, 0.04475446536037353, 2.2603942495355547]], [[-0.7604726911833489, -0.64757694644545, 0.04822223964875, -0.08894260133469882], [-0.19650301844078077, 0.15870953145587197, -0.9675731746843331, 0.8644375863847724], [0.6189247528642048, -0.7452887917159653, -0.24794508915189095, 3.1100106159924104]], [[-0.7456225014452924, -0.6647580969853951, 0.04630073250847122, -0.02277088306645648], [-0.16865006075482825, 0.12103217690222134, -0.9782169335897339, 1.0355727802423729], [0.6446737487643326, -0.7371891783298676, -0.20235580794105446, 3.0854391523126674]], [[-0.7009407252101086, -0.7094537806485508, 0.07319448657791805, 0.06852572871828536], [-0.1745116566739185, 0.07109570229858286, -0.9820850690238578, 1.085889307891616], [0.6915401517098276, -0.7011567116117119, -0.17364182772304393, 3.1102070710477854]], [[-0.8130796365886835, -0.5807540594888274, 0.040326504337245384, -0.3260060898106173], [-0.1537362244297553, 0.14739198216227345, -0.9770572024668567, 0.9414998223910381], [0.561486133277482, -0.800624959629366, -0.2091243557206529, 3.2085355552752817]], [[-0.9434122993427149, -0.33104743719792523, 0.019514809083811785, -0.8360446750415094], [-0.11567583236168577, 0.2733587014841664, -0.9549314750966804, 0.7133529958127826], [0.3107930746595281, -0.903151490419839, -0.29618414896158873, 3.1202442299574784]], [[-0.7753985888299695, -0.6259433350609932, 0.08337847284049377, -0.27725727607102635], [-0.2523422286252084, 0.18610615046413925, -0.9495724829689842, 0.4989096881713519], [0.5788613202598312, -0.7573370729418574, -0.30225838260485827, 3.43267694300799]], [[-0.8971589861751641, -0.43617811969703835, 0.0696735345931854, -0.8000783850368258], [-0.2466595484352261, 0.36387035412481716, -0.898196767170095, 0.11166604724269566], [0.3664216433166606, -0.8230109436007735, -0.4340370560476168, 3.367165557352357]], [[-0.9437944397080573, -0.31468368990541756, 0.10112482822564035, -1.221109942236988], [-0.2355538767700323, 0.42571573228883086, -0.8736592507496235, -0.05747802652162625], [0.23187588644523321, -0.8483750883832553, -0.47591310414396193, 3.2605056991630734]], [[-0.9732202765970756, -0.21674846861194633, 0.07656627570078098, -1.6470917459161525], [-0.17381300299221977, 0.47587638231569396, -0.8621662883370897, -0.13897842363945193], [0.15043714039803632, -0.8523859279155794, -0.5008062466467027, 3.204032426806421]], [[-0.9886551731928634, -0.14271226924284017, 0.046841826678175345, -1.9355504668537573], [-0.11271083715457883, 0.4987429607324624, -0.859390322442446, -0.1745773600096823], [0.09928351175750752, -0.854920269573354, -0.5091700275602646, 3.2134148013301163]], [[-0.995260186436014, -0.09301737936089158, 0.02837126067313285, -2.115591699326682], [-0.07258889414163719, 0.5164322455437843, -0.8532459130929948, -0.16125680086050806], [0.06471486492796737, -0.8512611249783677, -0.5207364816852366, 3.2011330297350296]], [[-0.9995764917609266, -0.024823142760835026, 0.015187122913627414, -2.314639726780954], [-0.026143718075388643, 0.536814238253776, -0.8432953098489356, -0.12775500317657063], [0.012780576047777367, -0.8433352151970727, -0.5372358622471083, 3.101985750468538]], [[-0.9992972675495758, 0.03280577086171512, 0.018131532370986816, -2.477047214547429], [0.002628359394208135, 0.5438653272429859, -0.8391683964197977, -0.09075388745888084], [-0.03739067791370434, -0.8385310293728244, -0.5435693607849003, 2.9887479705514632]], [[-0.9936326477218866, 0.104892393943098, 0.04113085306772968, -2.6767335574507447], [0.028182222987139197, 0.5848444842023369, -0.810655717062185, -0.12902857235052312], [-0.10908677137350978, -0.8043348276625774, -0.5840766741792687, 2.78482244104616]], [[-0.9882257860934053, 0.13799091764556104, 0.06609313389004265, -2.7649403924520746], [0.0421005520631898, 0.6605419041019231, -0.7496078551091764, -0.33751326506567436], [-0.14709636030862816, -0.7379992544527002, -0.6585740362413421, 2.5629018525937766]], [[-0.9795506064784468, 0.16273912384915043, 0.11830717187270536, -2.722703562954415], [0.027472865700010285, 0.6906934857259143, -0.7226255949148321, -0.4980342453978929], [-0.19931344911454463, -0.7045981027114654, -0.6810401329271771, 2.303342855024396]], [[-0.9947429504388596, 0.024936780251566884, 0.09932079109067463, -2.4634774128187105], [-0.048700887111887456, 0.7379907297163173, -0.673051191550311, -0.7885116197450752], [-0.09008155275475418, -0.6743499387139167, -0.7328966325545705, 2.5148442787497056]], [[-0.9921380318401616, 0.022390101128323077, 0.12312923758309367, -2.396128524887658], [-0.06511781412675124, 0.7478317569150277, -0.6606870163948553, -0.8403529098849974], [-0.10687280318062371, -0.6635106229148449, -0.7404943330096929, 2.4283843007744066]], [[-0.9916313245517477, 0.011544442187339535, 0.12858476590300108, -2.369607971660768], [-0.0789909821737838, 0.7335510050563042, -0.6750284051179677, -0.8303626678065941], [-0.10211631066077241, -0.6795363484284481, -0.7265002479432223, 2.423162869549899]], [[-0.9918810430452998, 0.014389879920089905, 0.12635239532060125, -2.3716361535702983], [-0.0754385077673438, 0.733294001685997, -0.6757136513621523, -0.809897417678595], [-0.10237689189072166, -0.6797593974688555, -0.7262548681830463, 2.4202863462727073]], [[-0.9903415125075873, 0.09349556866027714, 0.10238294411216996, -2.546268696506798], [-0.005004853711183699, 0.7138423118662138, -0.700288587104509, -0.5983366379062398], [-0.1385591571983388, -0.6940372702026825, -0.7064797431817099, 2.379267911260177]], [[-0.9882576450620328, 0.1366413656339768, 0.06838102203189841, -2.666863475232616], [0.05260572717175054, 0.7244386084992539, -0.687329135119701, -0.49703887774928796], [-0.1434554441113214, -0.6756610390671839, -0.7231201116284052, 2.389281800658426]], [[-0.9865836256721959, 0.15619045446978314, 0.047510961767018495, -2.7461000479869973], [0.07193891516124155, 0.6771630912785273, -0.7323079545488576, -0.34327203440494347], [-0.1465521819725936, -0.719065149859615, -0.6793141896180597, 2.456814275002317]], [[-0.9845091932401517, 0.1632809514701876, 0.06388254309759271, -2.8090773305342838], [0.0620634385618577, 0.6652968576003461, -0.7439947720656271, -0.354781978580962], [-0.16398102945006798, -0.7285049225325085, -0.6651246498412158, 2.4484622994165943]], [[-0.977540505003035, 0.19774399576752538, 0.0728825988580542, -2.8857068942919333], [0.08621909374757059, 0.690809588258206, -0.7178776919809366, -0.3764425357487592], [-0.19230400139299958, -0.6954706499259489, -0.6923436618759643, 2.3963911778421343]], [[-0.9702067357809739, 0.23060174659056687, 0.07430830582517284, -2.8907613076153527], [0.09659407101822916, 0.649444980073425, -0.7542485023528744, -0.23701712606581518], [-0.22219017820181147, -0.7245992356653495, -0.6523706556734741, 2.310893817876694]], [[-0.9793017485552089, 0.19434522815187, 0.05655101742062668, -2.850029746090912], [0.08117510865036974, 0.6330503573543105, -0.7698427415967376, -0.23921354464391356], [-0.18541490504355657, -0.7493178079748127, -0.6357233168914846, 2.3895956015948614]], [[-0.9811667797247969, 0.17928269273735012, 0.0718990017268431, -2.8221695326297915], [0.06947249675548084, 0.6748408716545211, -0.7346858989657598, -0.3381126898723097], [-0.18023685127917483, -0.7158543944332617, -0.6745866611574505, 2.3673208583619063]], [[-0.9925107286835847, 0.10988049490373294, 0.053373497990017484, -2.692016132783089], [0.03558135317523134, 0.6780171725240046, -0.7341843644948948, -0.3719704034936965], [-0.11686068951618905, -0.7267867573107422, -0.6768490146580233, 2.4717650262224518]], [[-0.9920245096748632, 0.10835600946876392, 0.06439213784579803, -2.660400100550754], [0.029538228371226376, 0.6964914380325327, -0.716956881417609, -0.39961098323417243], [-0.12253515931779085, -0.7093367690733221, -0.694137221860047, 2.3913230487035806]], [[-0.9959818618289801, 0.07372579021328036, 0.05083934268955312, -2.5824111001588785], [0.013917701008847743, 0.6882156918059652, -0.7253726346855555, -0.39750476941076873], [-0.0884671040913331, -0.7217504204428725, -0.6864764395696548, 2.4577097568516897]], [[-0.9958479285406139, 0.08943794004364872, 0.016963434266596085, -2.6049375298812727], [0.04960405872584477, 0.6893879387837581, -0.7226919864073521, -0.3162059301557913], [-0.07633046953406858, -0.7188498624471108, -0.6909620356289329, 2.5206294600570183]], [[-0.9932037652819473, 0.11587637627900862, -0.010906239049658348, -2.6756881236510126], [0.09061424652373451, 0.7110483792634449, -0.6972799012403582, -0.31756537577496186], [-0.07304340460779847, -0.6935292840012407, -0.7167159781085028, 2.5554743233221267]], [[-0.9932843098421124, 0.11565936343966142, -0.0030317437574516742, -2.7287203002589693], [0.08273547787086961, 0.6917284390660681, -0.7174026814061271, -0.33203123659104444], [-0.08087719408434851, -0.7128356600479205, -0.6966521379003212, 2.5679922176966317]], [[-0.9963953276365436, 0.08301054020413107, 0.01748145529077157, -2.749013642495894], [0.044847073398289805, 0.6903717693435666, -0.7220634044881661, -0.42612123496016463], [-0.07200757648798711, -0.7186766103808101, -0.6916059850954702, 2.62680207198853]], [[-0.984611034268164, 0.1620919521106295, 0.06532465276097467, -2.9047431299693085], [0.06959934582499429, 0.706576097853412, -0.7042060415836964, -0.39771626781358843], [-0.16030297020987905, -0.6888224858432042, -0.7069841163270074, 2.3677980094883337]], [[-0.9907188818720136, 0.11016389320182887, 0.07962420321034677, -2.8611313919052233], [0.01551689211738009, 0.6736188585146444, -0.7389160030155288, -0.4281010112514214], [-0.13503822851801686, -0.7308225161337352, -0.6690763235615739, 2.4535847393573307]], [[-0.992134805220404, 0.06536435278099109, 0.10675218806091612, -2.7495190176851056], [-0.03886776721960652, 0.6498058776901692, -0.7591058015788519, -0.431667307477876], [-0.1189866586707667, -0.7572845057868482, -0.6421544614448579, 2.4683449850835695]], [[-0.9940548082433329, -0.002350828705999411, 0.10885546294378447, -2.6413642115809375], [-0.08523247539191783, 0.63892289751421, -0.7645344702304878, -0.46406957243636066], [-0.0677529582149496, -0.7692671867670177, -0.6353247453205972, 2.5770913166494513]], [[-0.9897954845593119, 0.010572682982439081, 0.14210248808711934, -2.6564472611053778], [-0.10756960147455474, 0.598593214937836, -0.7937977978484133, -0.37871645079567756], [-0.09345415766354388, -0.800983383975559, -0.5913475619383743, 2.511311229036076]], [[-0.9936748222261612, 0.01250100294884364, 0.11159781628275722, -2.6740797739853654], [-0.08337650920208188, 0.5835824640448515, -0.8077622579525584, -0.2648522826159516], [-0.0752243669769456, -0.8119576544282426, -0.578848911226673, 2.5909449273465097]], [[-0.9943918084475232, 0.07661935260953781, 0.07289997323840113, -2.783455303919987], [-0.0171093253313803, 0.5636783971375711, -0.8258171320499008, -0.06784907314395142], [-0.1043657140979224, -0.8224330607448327, -0.5592062752819544, 2.5674402850946043]], [[-0.9936392184593438, 0.09740874645566855, 0.05650344815531052, -2.869257203071979], [0.006664684791505775, 0.5517494606846233, -0.83398328197324, 0.003644123947594057], [-0.11241301310851184, -0.8283019188364604, -0.5488891014910965, 2.566738290111274]], [[-0.9928814008077476, 0.1064477396135482, 0.05343596786071385, -2.974301771832085], [0.014891265235952189, 0.5560577957093178, -0.8310102153707659, 0.007191738302108389], [-0.11817264552220842, -0.8242988575523202, -0.553684584658289, 2.5823494652044197]], [[-0.9783882686046481, 0.18656789527288814, 0.0891561344509931, -3.1635031372480564], [0.011491492671145145, 0.4795653192477798, -0.8774309375506225, 0.09879998480815813], [-0.20645663334702505, -0.8574435987446755, -0.47134502598286976, 2.397941071166854]], [[-0.9868259838785639, 0.15093941003740388, 0.05823892203384861, -3.182961037491916], [0.03822019274228724, 0.5672867908861188, -0.8226329155539986, -0.04301392882653878], [-0.15720589813631883, -0.8095696334372295, -0.5655822789015436, 2.630672337426268]], [[-0.9734818837022426, 0.2256723402061966, 0.03748355598648495, -3.237635923966766], [0.0976899272367795, 0.5582521785325435, -0.8238999837845262, 0.16199757712007987], [-0.2068567142251032, -0.7983899423399123, -0.5654942968328377, 2.3886190252501276]], [[-0.957231779284485, 0.2840752093127499, 0.054850671662033904, -3.2935150548742382], [0.10944522856137909, 0.5310317480213895, -0.8402541428273318, 0.2501988156885748], [-0.2678228195524168, -0.7983148238929703, -0.539411141226921, 2.2093780908617715]], [[-0.9549380344825118, 0.2912930989143853, 0.05693576049840099, -3.2635745895871806], [0.10877536965201645, 0.5219550089216339, -0.8460087987832535, 0.2174285741846687], [-0.27615443008531354, -0.8016927710703586, -0.5301202048194211, 2.1524542384739007]], [[-0.9624594856573553, 0.266011696668312, 0.05393992680589371, -3.239497696468401], [0.09538416489024189, 0.5175340433856132, -0.8503295684763232, 0.22101581642880228], [-0.25411335965739845, -0.8132627442423419, -0.5234788527448315, 2.216046266791697]], [[-0.9871368392192252, 0.15359065420646656, 0.044393373342280926, -3.109646694862754], [0.06052613902471851, 0.6160162896065807, -0.7854046838631036, -0.04672886804131624], [-0.1479778603407887, -0.7726149376499077, -0.6173886223191931, 2.511648358968472]], [[-0.9899412882736824, 0.12571607305149907, 0.06489772528796522, -3.03443410835761], [4.234388500859443e-05, 0.4589732054101109, -0.8884501082911542, 0.05321643707592208], [-0.1414787757157852, -0.8795106967468209, -0.4543618495537277, 2.6270295049011145]], [[-0.9795731565243574, 0.19300730462724938, 0.056432361083255944, -3.0969955729354566], [0.05973623622254928, 0.54726939435377, -0.8348220122191448, 0.09630079944983563], [-0.19201045049390048, -0.8143981767932578, -0.5476199380381865, 2.4009266585951927]], [[-0.979642284723788, 0.19867780543939637, 0.028777136878823772, -3.0968117359452445], [0.07612843543303147, 0.5003017531471721, -0.8624978939779419, 0.2609820909741544], [-0.18575644080267031, -0.8427486490191792, -0.5052417829877818, 2.453305454785977]], [[-0.975683202617248, 0.2186345085431643, 0.015531896363273373, -3.111832434701218], [0.10229118923736386, 0.516866534908014, -0.8499326430350752, 0.29571103009515354], [-0.19385252315860185, -0.8276762270152936, -0.5266623799919375, 2.4026417712059107]], [[-0.9615327240265679, 0.27422972440011206, 0.015902165936960172, -3.203964755389769], [0.13359634131483716, 0.5174426683175986, -0.8452248828516894, 0.393149353308244], [-0.2400142458549858, -0.8105869128352624, -0.5341741462546281, 2.2637595483313273]], [[-0.9584622117044739, 0.2852046295226104, 0.0029168533454212997, -3.2450768824442178], [0.16174820686607674, 0.5519393800566131, -0.8180467213541844, 0.4014086872681503], [-0.23492063832319415, -0.7835950740284119, -0.5751443763510434, 2.327065702107877]], [[-0.9426645617976206, 0.33373809416705313, -0.0015519125758524932, -3.3159945056114712], [0.17052277031728194, 0.4776447959729184, -0.8618453652966452, 0.5469260775268269], [-0.2868893667151493, -0.812695720046397, -0.5071687666685012, 2.134861416864715]], [[-0.9303135741964276, 0.36550950455173775, -0.030322528723890046, -3.3500965734785617], [0.18962012495345343, 0.4085632173440895, -0.8928159416397555, 0.7562924847265091], [-0.3139440425911991, -0.8363485514519587, -0.44939986493734696, 2.0153882963498173]], [[-0.9320784158225466, 0.3617882652460552, -0.01841406766529033, -3.4201142895427514], [0.19131960115402807, 0.44846064484427595, -0.8730863990694852, 0.6779540245007007], [-0.3076144290698918, -0.817307959802244, -0.487217674014293, 2.093831093702528]], [[-0.9220323393619787, 0.3866409083245148, -0.019109504982365966, -3.4560716733092414], [0.20023429834283657, 0.434092657911075, -0.8783335301096337, 0.7307679876727312], [-0.33130437808430613, -0.8136782978288736, -0.4776662398626035, 1.9688429017044324]], [[-0.9058862910943556, 0.4206617492124872, -0.049129628095507, -3.448476210316276], [0.2372750128388217, 0.4080025275220265, -0.8816090436344073, 0.8892452947181915], [-0.3508141899776138, -0.810294779870343, -0.46941641835924586, 1.8993580434777642]], [[-0.8845494179354424, 0.4618395869623103, -0.06539513089330623, -3.4335332896034756], [0.25335651696375383, 0.3579948069054867, -0.8986936038165056, 1.0719700932438307], [-0.39164116553557693, -0.8115071867477119, -0.4336741672209091, 1.6739988058155384]], [[-0.9043881131693482, 0.42388656458647844, -0.04901347897323299, -3.4801314786216584], [0.22792021981296082, 0.38276039002744, -0.8952914928817619, 0.957179985287171], [-0.36074161689275325, -0.8208621468852828, -0.44277626590919106, 1.9002409285290771]], [[-0.922022064671263, 0.3856658665198982, -0.03372167938874268, -3.4652554181177004], [0.19878666793694855, 0.39689375655849957, -0.8960799108647663, 0.8485145923819712], [-0.33220351128467385, -0.8329088698088996, -0.44261003341970806, 2.0473352303304484]], [[-0.9258831065373687, 0.37557217111065533, -0.04106114119140117, -3.397649938886425], [0.19109422966832645, 0.3717775690038214, -0.9084406610082345, 0.8707164148336698], [-0.3259194201273996, -0.8489564084644381, -0.4159922452534205, 2.0735177433116005]], [[-0.9563455584001728, 0.2918456253172372, -0.015142784138081095, -3.3300091412526696], [0.14380430246479914, 0.4248564743133546, -0.8937657964067757, 0.6178150695756296], [-0.25440812785930067, -0.8569265471539648, -0.4482782587432824, 2.314418950117107]], [[-0.9696798471830311, 0.2442572523579703, 0.0077064023790760355, -3.2277642065926324], [0.11661352467081916, 0.4901978620836571, -0.8637750528189964, 0.4243596099394168], [-0.21476098302750818, -0.8366865904740833, -0.503818687118602, 2.452544118016774]], [[-0.9792686184337805, 0.2020523546314421, -0.014415926563520573, -3.1101584726255918], [0.10027192913430766, 0.42168165337890307, -0.9011826249053622, 0.5046473958918355], [-0.17600713956677794, -0.8839453768143845, -0.4331997895082549, 2.598444724642753]], [[-0.9914470704804663, 0.1304579009581252, 0.003666403319501764, -2.9767788638425148], [0.05866337710215114, 0.47056998908186953, -0.8804104120025272, 0.2986157970323381], [-0.11658179370155561, -0.8726652401998655, -0.4741983381711061, 2.7542259661208877]], [[-0.9983563693761857, 0.046250597523834654, 0.03384437847988044, -2.76718969276414], [-0.005580532711391785, 0.5092803770428477, -0.8605825673424671, 0.051531626204156675], [-0.057038735791199134, -0.8593569571416658, -0.5081852052466294, 2.9258567645973295]], [[-0.9908834323278372, 0.09211209381931224, 0.09831269353662725, -2.610176003761154], [-0.04635863306272908, 0.4520528637002821, -0.890785656351139, 0.04740631060951438], [-0.1264946666020343, -0.887222390718695, -0.4436615024189541, 2.7162104689315583]], [[-0.9864527190815583, -0.1349849198167123, 0.09322072966178727, -2.1275079488312656], [-0.14847395901712013, 0.49299916605286154, -0.8572673478938566, -0.2670856773029916], [0.06976042223483744, -0.8594945571050812, -0.5063621133105812, 3.2233972496609904]], [[-0.964522134194103, -0.23216960917588264, 0.12567547582870195, -1.729970142241931], [-0.23077727816483484, 0.5102826265488954, -0.8284645369146412, -0.533922416164727], [0.1282142758528986, -0.8280754274928573, -0.5457583584793169, 3.2767043287356423]], [[-0.9333296822871934, -0.32485383596591555, 0.15285839662876446, -1.3879185667696505], [-0.3134144322471193, 0.5295546381166814, -0.7882533088470522, -0.7445831333233898], [0.17512023818194897, -0.7836082379016573, -0.5960629427097082, 3.2784618647566734]], [[-0.8693515903506469, -0.4639341978344241, 0.17027293512044242, -0.9727349229751875], [-0.41615760189393597, 0.5014247482157038, -0.7585420701996068, -0.8538724672300353], [0.2665345432410013, -0.7303001314230653, -0.6289841455098564, 3.306649616030133]], [[-0.8587031313796766, -0.47487988427923744, 0.1926603946473585, -0.893876863743951], [-0.4121690769104751, 0.4165632049092781, -0.8103034915107289, -0.5851658173404493], [0.30454159682628695, -0.7752188025471577, -0.5534349320198774, 3.33777737423507]], [[-0.7548943345085832, -0.615761275697611, 0.22577111214257237, -0.5046948215747242], [-0.3791813948242578, 0.12889335277866276, -0.916301246004067, 0.1596081789321592], [0.5351224285581512, -0.7773188245248702, -0.330786081166213, 3.4020666983820838]], [[-0.9649995762837301, 0.05644768342625123, 0.2561044255924352, -1.7825626660724505], [-0.21026002955455436, 0.41712042475654254, -0.8841952675866569, 0.17145838362478782], [-0.156737161336868, -0.9070965826673207, -0.3906523415638633, 2.4599083628314573]], [[-0.8979867807292724, -0.3960103439871663, 0.19182165959725206, -0.92990586359665], [-0.2928814388592067, 0.21258056064633002, -0.9322177685535998, 0.5113419102142776], [0.3283903232545663, -0.8933002365892772, -0.3068786126505123, 3.133950152279015]], [[-0.9244546559137783, -0.33809876128598243, 0.17627483307671057, -1.1029244741667028], [-0.23766277441301314, 0.14943140018988343, -0.959784695801928, 0.8018416974290584], [0.29816102162698455, -0.9291713965970834, -0.21849604327808292, 2.9812894177741214]], [[-0.9861229297651275, -0.09872793000970888, 0.13347045825739606, -1.60360288154737], [-0.14947986947309644, 0.17823081546193387, -0.9725685297407478, 0.9486132430715268], [0.0722311291185963, -0.9790232746241387, -0.19051533200895043, 2.597061742433967]], [[-0.9987446298244277, 0.011506994740921504, 0.04875195861603056, -1.8105261723978348], [-0.04541555091209564, 0.202585911991212, -0.9782108034560034, 1.0949689198837618], [-0.02113272656846721, -0.9791968838465129, -0.20180899517380546, 2.413014106879234]], [[-0.9511079572274275, 0.3025554721047975, -0.06207930410461328, -2.1996972707439952], [0.1141422601451184, 0.15755304527174796, -0.9808917281609435, 1.4524838842577694], [-0.28699337648739226, -0.9400197999111728, -0.1843843204486877, 1.8111487168065064]], [[-0.8566056335699025, 0.49895583360627516, -0.13141485702375158, -2.4064721926919117], [0.23543736214445568, 0.15134470957758928, -0.9600333470194333, 1.673898949439251], [-0.45912529558146375, -0.8533099407560787, -0.24711557612601298, 1.394572623685795]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.525886722724856, 0.8154302710526584, -0.24190210398567863, -2.5527192074597416], [0.5191205293232286, 0.08242050365835996, -0.8507177772986013, 2.102730169787836], [-0.673763334485397, -0.5729575321327834, -0.46665044248926735, 0.7479666977370932]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6342312329179518, 0.7608157201684576, -0.13751430156869526, -3.5853052328765287], [0.4426207044446524, 0.21147260267917445, -0.8714162325278404, 2.5427318982382956], [-0.6339066612588121, -0.6135460685723989, -0.4708753195391096, -0.32226479492214394]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7994930080099262, -0.5837909104045944, -0.14141818508316079, -1.8485140623892746], [-0.15207173605791086, 0.42447865273137864, -0.8925760810528633, -0.03232410831763732], [0.5811068036390328, -0.6921026270029103, -0.428145812148265, 4.463130062601064]], [[-0.7159711944118421, -0.6971026165665274, -0.03785750584205594, -1.3339357723373289], [-0.3017770976139754, 0.35793296548427733, -0.8836371289026483, -0.5279965821101795], [0.6295362039852556, -0.6212342023711601, -0.46663929718370584, 4.544045580354444]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8294732357237975, -0.5571673388154653, 0.03922636581670427, -0.6045502325780312], [-0.25595851158940364, 0.3167531806084507, -0.9133195842197666, 0.10857050973950085], [0.49644676609162297, -0.7676144729821883, -0.4053500083945316, 3.7190432852787527]], [[-0.8173446587268657, -0.5761091991519647, 0.006774917205798203, -0.619032064650242], [-0.17063933472150672, 0.23082664488494398, -0.9579150679767812, 0.5569337187815919], [0.5502998512597155, -0.7841028316895953, -0.2869718157587833, 3.6516522984417854]], [[-0.8666960169174152, -0.49780080740447763, -0.0321305214233735, -0.8473158065800803], [-0.1154613745620856, 0.2628517777442506, -0.9579027163135727, 0.6987614413343833], [0.48529031027182223, -0.8265006346544068, -0.2852893542916408, 3.493671966772644]], [[-0.874414998003989, -0.4836328417982792, -0.03869994314988806, -0.9366500755709595], [-0.06420259652106292, 0.1944035193972562, -0.978818317281565, 1.0248572927680646], [0.4809120895399049, -0.8534087801165873, -0.2010398372320299, 3.2496611281353247]], [[-0.8961173435729421, -0.44249176408554647, -0.034274557097572184, -1.0605973562410338], [-0.0439874111443368, 0.1653968418800702, -0.9852456507678267, 1.193307581604642], [0.4416319895666444, -0.8813880662980185, -0.16767904573573622, 3.0557536557578273]], [[-0.9231136049473145, -0.38301434913936505, -0.03407756908175774, -1.234095165645247], [-0.027889842274373716, 0.15507872503722142, -0.9875083522374587, 1.3024919869724647], [0.38351457476748385, -0.9106319769227186, -0.15383749070606145, 2.877286859891188]], [[-0.9581356685415847, -0.28297780307529585, -0.04358444258046355, -1.4668922761376415], [0.0051751563511682475, 0.13508431023072798, -0.9908205926837761, 1.4252168124216134], [0.28626780892219017, -0.9495661072806714, -0.12796464151757259, 2.624817349520729]], [[-0.9916949343425882, -0.10676218779221007, -0.07171465998713783, -1.7704650223679024], [0.05439583293020396, 0.15710196108689667, -0.9860831948585678, 1.491157399731192], [0.11654291295089228, -0.9817946878449035, -0.1499898008547541, 2.372158258981767]], [[-0.9838002441865469, 0.12835882698604675, -0.12514428102497102, -2.1076298754168357], [0.15143207390894622, 0.22142068161658413, -0.9633489548154828, 1.5371475873727616], [-0.09594480981338309, -0.9666937949977821, -0.23727136401736348, 2.103482671398725]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3757542652823038, 0.9194125514232898, -0.1161434131041113, -3.3294228630469807], [0.5262665480844833, 0.10854299115609434, -0.8433634681666796, 3.5064078548560387], [-0.7627924045829233, -0.3780198134439571, -0.5246415615964843, -1.7543965856608743]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.049177872382570986, -0.9968043702728135, -0.06294906093773756, 1.802482584106042], [-0.7323120185745733, 0.0788435876405772, -0.6763895298858464, -2.2109331005803607], [0.6791911691999221, 0.012834955901055045, -0.733849180409613, 4.014919617185099]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.32941300248022654, -0.938495168223487, -0.10350793698132926, 1.7886236982659771], [-0.616590845203447, 0.29684604783066204, -0.7291763528109059, -0.725605544105742], [0.7150544059078727, -0.17637812536843844, -0.6764524768845587, 3.1941895603630632]], [[-0.2089963892992045, -0.9770191709779799, -0.04188136580146479, 1.959306081002033], [-0.5504111167413881, 0.15292317309131453, -0.8207692158574063, -0.24917596755654908], [0.808311890193008, -0.1484858332406983, -0.5697226039919974, 3.041636999054521]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.09061206640553987, -0.9894651884850321, -0.11290745855787532, 2.2180978425411544], [-0.5348755922534896, 0.14398663079520735, -0.8325718893667524, 0.010589175337916973], [0.8400580659890108, -0.01504961556070622, -0.5422877048562671, 2.5427703092457885]], [[-0.19547641434058705, -0.9786236000710695, -0.06391260298631568, 2.2330590546696247], [-0.34104221065759294, 0.12893497497179496, -0.9311637787085603, 0.27679709326507257], [0.919499419241975, -0.16022366121444703, -0.35895570256050946, 3.0244231122675918]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5673487482807862, -0.7994638105710254, -0.19741583880601044, 1.0454541822171803], [-0.14696128002444575, 0.33418451411212424, -0.9309796413999715, 0.3642690166104873], [0.8102578478470922, -0.499177649855138, -0.3070893907110755, 3.2914730252041484]], [[-0.7639292206937256, -0.6057724476476383, -0.22237780339158492, 0.26387567177617866], [-0.055019378326616464, 0.4045007619249146, -0.9128811541546449, 0.3854600440398307], [0.6429502420707451, -0.6851415001831032, -0.34233917530428404, 3.6015201881229704]], [[-0.9097168309133938, -0.29835569892069325, -0.28878913496604425, -0.8145950695791525], [0.1468206729343039, 0.41943724140588934, -0.895832624166443, 0.7571682710592023], [0.38840568681728854, -0.8573542310173562, -0.3377643335295012, 3.554645534352561]], [[-0.951512952306071, 0.005923426909632407, -0.3075516454311874, -1.7567835809144738], [0.2925198471375402, 0.3267174780979738, -0.8987145422969018, 1.2825454402955405], [0.09515902807624038, -0.9451034877297544, -0.31260863208913336, 3.13047062531556]], [[-0.9229128555748827, 0.18445875793074923, -0.33794500682398193, -2.2319412793653433], [0.38208261936468496, 0.33079348863856317, -0.8628954396992434, 1.4737922419573573], [-0.04737861325574222, -0.9255002077238961, -0.3757720485999304, 2.824326512347955]], [[-0.9242297489420669, 0.20701700815014118, -0.3208478292073182, -2.3736795714190335], [0.3791168076337276, 0.3973943918463081, -0.8356722703899624, 1.3017349448824047], [-0.04549524524711562, -0.893991977405652, -0.4457673462628653, 2.8253339210910258]], [[-0.9259299020522613, 0.21151229776458183, -0.31291590624293386, -2.4284838368918216], [0.3766461123051642, 0.4553743551681215, -0.8067043465487359, 1.154483090147743], [-0.02813401092797424, -0.8648102361498528, -0.5013100167356925, 2.8451273138717825]], [[-0.9348786962864515, 0.2054167938671436, -0.2894922521020006, -2.477632491845572], [0.35347096367293107, 0.4639206955220332, -0.8123028167540003, 1.0631844440909108], [-0.032559193323456775, -0.8617317036431333, -0.5063184470927649, 2.7674728270359026]], [[-0.9383517569341285, 0.25286005467234535, -0.2357069642792351, -2.610015377920258], [0.3331103263961817, 0.4792108323555203, -0.8120310884451153, 0.996875308679018], [-0.09237689487563083, -0.8404872223325158, -0.53389862182713, 2.558842338646672]], [[-0.9326400979285383, 0.2761217048332118, -0.23224825479612787, -2.6743426252859703], [0.35017670480427315, 0.5376023503060765, -0.7670462752388567, 0.9197144359542496], [-0.0869409175720353, -0.7967060418155392, -0.5980808973595035, 2.536990463171225]], [[-0.9334601866605515, 0.27051278242659327, -0.23553113268413312, -2.700348621690374], [0.3542894492387858, 0.5929425873088517, -0.7231169160748224, 0.7644175740066024], [-0.05595592978162316, -0.758447046733855, -0.6493281229262808, 2.642105963583]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9692859019274851, 0.19677637318579272, 0.14752592748553475, -3.0536989628231095], [0.03465134404536689, 0.7031388584615891, -0.7102077372693029, -0.2505902126414337], [-0.2434833149940078, -0.6832823755060414, -0.6883611484114641, 1.7749450662830208]], [[-0.934889658381337, 0.26725367940609573, 0.23357396579141898, -3.2265494627237192], [0.022354967071843465, 0.7010978829833112, -0.7127145388748125, -0.21555064253285366], [-0.3542337958168926, -0.6610879134579785, -0.6614236075170983, 1.4679517999894673]], [[-0.9678695068273316, 0.14910227352997782, 0.20247747969097554, -3.178105129838547], [-0.05595756632386353, 0.6573218943506332, -0.7515295589518786, -0.37186218158778056], [-0.24514764637852052, -0.7387126905878133, -0.6278584173518623, 2.0099417986829438]], [[-0.9322641265524966, 0.2839788285644302, 0.2241419712380629, -3.261549023917645], [0.04335640808640129, 0.7027894909403334, -0.7100754560620107, -0.17736067190968224], [-0.3591710180696044, -0.6522598840577282, -0.6674977329009012, 1.5041946885461872]], [[-0.9467595172860088, 0.2160773372386649, 0.23865665873847294, -3.1550016624960118], [-0.011536327479364575, 0.7180580713977802, -0.6958875765874752, -0.4086287695912369], [-0.3217348746664752, -0.6615914074656264, -0.6773355741366305, 1.6778673573501948]], [[-0.9622704518009886, 0.2120950502021649, 0.17044432308077168, -3.1016058954986283], [0.031106287881975503, 0.7080585780967241, -0.7054682479303006, -0.2961120229550603], [-0.2703108885060404, -0.6735493594855432, -0.6879413375366312, 1.8284682432921668]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5570782690802953, -0.8281681798779406, -0.061654423654439905, 1.0572306688377429], [-0.27088282097460986, 0.25138935320717615, -0.9292071299742137, 0.31754387393876954], [0.7850390432452004, -0.5009399753780257, -0.36438007855661303, 3.4159885322425376]], [[-0.4159507201040365, -0.9093190326848344, -0.011130823960999792, 1.2431650202797653], [-0.22886297271242162, 0.11651929738159095, -0.966460031795901, 0.8187593749107909], [0.8801174570284167, -0.399452312716822, -0.2565757426161238, 2.8328693480630367]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5858290426775691, -0.80877720296971, -0.051805103146075004, 0.7908202854557363], [-0.18914904624771972, 0.19860548860604554, -0.9616540428860745, 0.8079027095113447], [0.7880526448525256, -0.5535659814801182, -0.2693282998292096, 3.015369804967768]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5837593515463251, -0.8082889921215415, 0.07677190044121956, 0.5541912938700243], [-0.15290707476836413, 0.016581332165033436, -0.9881014552713778, 1.11847180556885], [0.7973985490129738, -0.5885524315120747, -0.13327261306520832, 3.0892835547890467]], [[-0.2309672095628552, -0.9689121395361466, 0.0886758928132938, 1.345601633094173], [-0.11417679230236222, -0.06351932442080843, -0.9914277359064892, 1.1776683191265935], [0.9662390015965467, -0.2391120266415111, -0.09595639900026431, 2.951445888278281]], [[-0.7682528812001864, -0.6401464635499734, -0.00012542756690431256, 0.026862767522802818], [-0.3215207904341955, 0.38603309932228547, -0.8646402879499657, -0.09353170862799833], [0.553544841766394, -0.6642220648488666, -0.5023914377472266, 3.365974089222606]], [[-0.881389172350803, -0.47095786773017895, 0.036767018995418566, -0.5682530256528496], [-0.2894749001855775, 0.47695885440543484, -0.8298882655917033, -0.3027368890592202], [0.37330605275740736, -0.7420976607073348, -0.5567168516825991, 3.3086437544080054]], [[-0.9360043696500295, -0.3518605555173968, 0.009485223615706001, -1.0892281774552341], [-0.19628874836619384, 0.4994113468482967, -0.8438359046070527, -0.2297708722657292], [0.2921755418594857, -0.7916959366512872, -0.5365174709447558, 3.2958514755827326]], [[-0.998725172750227, -0.04847026317459245, 0.014094782822550278, -1.9685520659054043], [-0.04008457776841935, 0.5918325574207722, -0.8050636313993539, -0.1903792186535484], [0.03067989472205948, -0.8046022977624244, -0.5930209831829478, 2.9335250476856722]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9868868384869091, 0.07226971698805819, 0.14433106397369602, -2.432797316019974], [-0.0407298191892954, 0.7537391494111775, -0.6559103417950672, -0.8359837999202723], [-0.15619042816421388, -0.6531878616840493, -0.7409117137004237, 2.1602052389186692]], [[-0.766058952331782, 0.35433125281112343, 0.5362863459324998, -2.526757644396444], [0.2762516061782371, 0.9348439126142328, -0.22305135985251673, -0.494306516630029], [-0.5803780936908951, -0.022720526609487493, -0.814030125999223, -0.18764294509287463]], [[-0.9755304044157858, 0.2026898215759002, 0.08518959026725842, -2.7524388240729376], [0.09940214347616522, 0.7521951255225623, -0.6513998058124063, -0.5750312997807869], [-0.19611130495898876, -0.6269922881261193, -0.7539370177260538, 2.0703717757947526]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8626107646091343, 0.5045257553575592, 0.03682975646578604, -3.263481599397099], [0.3835955616181057, 0.699837241074668, -0.6025630930548992, 0.1667087093937976], [-0.32978343482857786, -0.5056496793095803, -0.7972209781025483, 1.543177444027103]], [[-0.8448604022802285, 0.532665919692675, 0.04977869681748606, -3.335201136939799], [0.3694828441703476, 0.6482535784771413, -0.6657700247498166, 0.23588420821113107], [-0.3869022208810401, -0.5440903564570296, -0.7444946980924588, 1.3959621169121166]], [[-0.833713491104494, 0.5471072597252471, 0.07480281482864004, -3.3300140187649134], [0.38904345033115745, 0.678102059342148, -0.6235565658946799, 0.2564218101450353], [-0.391876266830214, -0.4907659762777662, -0.7781913312440238, 1.2757147233696053]], [[-0.8079686276085638, 0.5778605263324935, 0.11516904491688337, -3.304952991464359], [0.4022734215641752, 0.6837915858374413, -0.6087734894367267, 0.31543272443201326], [-0.4305377928862748, -0.4455404350276759, -0.7849400802940081, 1.0219520097281671]], [[-0.8075180447283056, 0.5811885039936042, 0.10067040411089756, -3.2989409930167017], [0.4256836323798761, 0.6923697566925632, -0.5825955416421889, 0.39609815069945986], [-0.40829897448077135, -0.4276026693592514, -0.806503505630815, 1.0402355380550066]], [[-0.7985742091740854, 0.5917895909692155, 0.10983766413427187, -3.273699575633588], [0.43080131259920235, 0.689416119973918, -0.5823363654992814, 0.43545015421054906], [-0.4203444557797673, -0.41772059267002504, -0.8054936653721212, 0.9732946308074407]], [[-0.8254498888885051, 0.5616843446553799, 0.056064051789102065, -3.3084244065723323], [0.41561955475961704, 0.6719747476187559, -0.612952138640634, 0.4300298347976015], [-0.3819592473489448, -0.48265995849227616, -0.7881284779988997, 1.2281657184594552]], [[-0.8241710782781165, 0.561507749190584, 0.07383143862076158, -3.2855651509938597], [0.40418077083773984, 0.6744857250348182, -0.6178243368541467, 0.3649492383402915], [-0.3967114041906251, -0.4793517021177456, -0.7828422621843579, 1.209851932578385]], [[-0.8916617501071495, 0.45270052973085073, 0.001246506021819277, -3.173004747918515], [0.3516526728208943, 0.6943615978695622, -0.6278553727586867, 0.16762436353879312], [-0.2850959857552827, -0.5593962833139273, -0.778329028830859, 1.6992732994299788]], [[-0.9086262081848678, 0.4176102888532271, -0.0002458526259235816, -3.1276330936182317], [0.3160948323267729, 0.6873664002388624, -0.6539200935886412, 0.06607273283994035], [-0.27291476833601136, -0.5942466478379093, -0.7565635801157159, 1.7621024382224484]], [[-0.9330942706048018, 0.35451503416447805, -0.06044975364592268, -3.0192481992676887], [0.31362700186666814, 0.7198964600000348, -0.6191826794892953, 0.008910673337412111], [-0.17599200511562663, -0.59671448568874, -0.7829167495363759, 2.0170728765089754]], [[-0.9146097528914809, 0.4020605468200078, -0.04285226489440801, -3.0199358285805213], [0.35023627792814416, 0.7348116961459997, -0.5808496542394415, 0.10250019638475906], [-0.20204838415296467, -0.5462591764884461, -0.8128821332538566, 1.7860370855387122]], [[-0.9237812345539018, 0.37859426178117145, -0.05739874242906885, -2.960896006407629], [0.33953357721568195, 0.7405510267994949, -0.5799147580889248, 0.0936509453411443], [-0.17704570209183645, -0.5552031715080377, -0.8126526058028886, 1.8472204997826474]], [[-0.9227049230513076, 0.36811481848299055, -0.1144862672555765, -2.8942388539240156], [0.3701797648327838, 0.7631396859283237, -0.5297025216756708, 0.1426879020971315], [-0.10762233358009517, -0.531139623992086, -0.8404214021193892, 1.9887116500971644]], [[-0.9402895270494089, 0.3070511038542192, -0.14688507392891947, -2.810293242044853], [0.3315541130876336, 0.7286362310084114, -0.5993005197365757, 0.1040313772662075], [-0.07699009946656304, -0.6122163526758841, -0.7869330734569275, 2.263773201674833]], [[-0.9202126425866602, 0.3809725622916356, -0.08982538173936003, -2.923835599480022], [0.35653777292775873, 0.721138495697225, -0.59400343980423, 0.1661782507965239], [-0.16152247180931176, -0.5786356166055537, -0.799431869702554, 1.968173574083627]], [[-0.908311037862625, 0.4049378205961592, -0.10486381619869617, -2.9611338328853156], [0.3784178109582678, 0.6886526822933918, -0.6185122824323455, 0.2707143724743728], [-0.17824426735935667, -0.6014838689615454, -0.7787465162250017, 1.972165191426858]], [[-0.9152463216160742, 0.3810493824371379, -0.13086458234572784, -2.9952458719113193], [0.3784681264827983, 0.7017627221241678, -0.6035652069772401, 0.17332941522387127], [-0.1381522638426404, -0.6019389088447049, -0.7865007959398387, 2.144138979557746]], [[-0.907249185208149, 0.40501075969550865, -0.1134248670707463, -3.071602389619601], [0.39004265596388016, 0.7092734305493023, -0.587194965275986, 0.17929702021296307], [-0.15737103439893818, -0.5769726902095897, -0.801459214361228, 2.0407043447190953]], [[-0.87124587899762, 0.4849376659832231, -0.07593469852714999, -3.1718335411052054], [0.43939115283652497, 0.7015692381317845, -0.5610133856836013, 0.3425300459840017], [-0.21878307324529192, -0.5221456350654783, -0.8243166276640392, 1.72834250214755]], [[-0.8126962823973143, 0.5804102131714621, -0.051465882134119206, -3.2919692624395585], [0.5092017882651425, 0.6644895674000499, -0.5469617478801196, 0.6439840141086746], [-0.28326364292857287, -0.4707202983330468, -0.8355741195920813, 1.399086751241613]], [[-0.7948487864572451, 0.6024216705699551, -0.0728253904565503, -3.298821426349664], [0.5365034085586097, 0.6416060038900995, -0.5481841190486743, 0.7937870268968545], [-0.2835127850246581, -0.47479455199052367, -0.833181033226081, 1.3928639984271483]], [[-0.7541560697400794, 0.6548277796225808, -0.04948940804614349, -3.342224269507323], [0.5782167585618141, 0.6264167609691388, -0.5227498653229877, 0.9381946350880235], [-0.3113101389169099, -0.4228505889927242, -0.851048398621395, 1.2864096899266912]], [[-0.7576924523414426, 0.6516469323153238, -0.03547426206193077, -3.3804445639030067], [0.553754775181535, 0.613203549550084, -0.5633267753114752, 0.8853920137297254], [-0.3453372216087606, -0.44647248786818383, -0.8254723017450895, 1.268301245776539]], [[-0.7982501473885625, 0.5994902024952682, -0.058379785082851826, -3.414544659176692], [0.49802369920920064, 0.6023984276631612, -0.6237696124170642, 0.7258567185209769], [-0.33877588051707763, -0.5269987015744282, -0.779424961955123, 1.4530291176008179]], [[-0.8196708568422975, 0.5720292435196751, -0.03036825648143812, -3.4403424271972325], [0.4658245247434817, 0.6347583450127461, -0.6165138729859929, 0.5477138442812296], [-0.3333874601584823, -0.5194847331683461, -0.7867581670463224, 1.4551099950905266]], [[-0.8450812923283069, 0.5342053896620285, 0.021499093300870686, -3.375400051886428], [0.42813444136244916, 0.7002730068784037, -0.5712430445587438, 0.32203933070340895], [-0.32021634792118725, -0.47354230802909214, -0.8204993437111928, 1.3940055757060736]], [[-0.8760460565958557, 0.48088353028278624, 0.035976895719541074, -3.302896777703846], [0.38527655953959267, 0.742835577349326, -0.5475009385320067, 0.14554754072040907], [-0.2900091022574719, -0.46577498357775515, -0.8360313303225881, 1.436106373945657]], [[-0.8799365647605863, 0.47121549834954646, 0.06056068124226455, -3.252181923335987], [0.358870738516331, 0.7427890836063733, -0.5652222309074082, 0.1217021998584143], [-0.31132528813779614, -0.4756262517885161, -0.8227127284632987, 1.3192137855722403]], [[-0.8655350795096557, 0.4959845985834251, 0.06962976451383898, -3.3055217307506366], [0.39778120488367014, 0.7652212929594212, -0.5061684362371949, 0.185533224360879], [-0.304333927092445, -0.4104091260797575, -0.8596192238723724, 1.2014553556134437]], [[-0.8499447145455757, 0.526288856397272, 0.024779464241416693, -3.4008263253242537], [0.4336993582217296, 0.7255703494747536, -0.5342775820125187, 0.3402816765412455], [-0.29916358216551003, -0.44335956919314984, -0.8449458228257981, 1.3273692211547437]], [[-0.8128053125661534, 0.5811423535944504, 0.04026274609288494, -3.49633305771783], [0.4707958587202656, 0.6960301272264484, -0.5421192870623419, 0.45434738971979893], [-0.3430725626978718, -0.42168190244761133, -0.8393363985149684, 1.1990252751411896]], [[-0.7748656197653365, 0.6318358608319196, 0.01914983740055856, -3.5340057619157395], [0.5065215801979769, 0.6387376783115337, -0.5791805133971066, 0.6713008140970075], [-0.3781787409406102, -0.4390872615687897, -0.8149743656266717, 1.100282964354126]], [[-0.7878387115282799, 0.6145557827399298, 0.04039002993774635, -3.5821972147897356], [0.48906767387304495, 0.6641306491365143, -0.5654584788027509, 0.5607556048068603], [-0.3743300348487534, -0.4257366213733842, -0.8237872020319975, 1.1347729471017387]], [[-0.8351585391390566, 0.549828456957137, 0.01410256796655776, -3.5705787004876806], [0.4551048269816902, 0.7052224233747997, -0.5436367629468603, 0.4069396071235353], [-0.30885240967342864, -0.44760473801056744, -0.8392021136468906, 1.3927804154987409]], [[-0.8545617367051821, 0.5182151515770345, 0.034311730288843795, -3.4495218110093244], [0.4145527685649975, 0.7204303994018086, -0.5559910446156899, 0.3320459733926031], [-0.31284219701715243, -0.4609046498938167, -0.830479779086607, 1.344385539432551]], [[-0.866308644548383, 0.4995087524704588, -0.000581881560121511, -3.325187325423739], [0.3545669773346013, 0.614111681343142, -0.7050880096992883, 0.446930956706077], [-0.3518402918435414, -0.6110301539558464, -0.7091195667813341, 1.366508389392582]], [[-0.90989019933896, 0.4134284837114908, 0.03430326519335203, -3.2857574754649543], [0.3315907569839142, 0.774478339063575, -0.5387307975270774, 0.05584112811446176], [-0.24929379260170642, -0.4788112270794658, -0.841779314186868, 1.508656418697159]], [[-0.931456840532567, 0.3635509547131426, 0.014793834940645678, -3.221083914032104], [0.2864971654688856, 0.7578871010686474, -0.5861113513762176, -0.022738737229629147], [-0.22429339803788803, -0.5416990357762551, -0.8100954426706112, 1.6897561944715767]], [[-0.9407408219467506, 0.3391242930711491, 0.0011915418356377439, -3.213846661348854], [0.281761910536905, 0.7835615310132674, -0.5537522486516308, -0.13818498192915143], [-0.1887244862055421, -0.5206016144473024, -0.8326806274564799, 1.824230087378625]], [[-0.9261926601662742, 0.3766541646516491, 0.01728573124543359, -3.2897919735917442], [0.2924496403911531, 0.7465591633334049, -0.5975973757288529, -0.055251934066245185], [-0.2379923614093657, -0.5484350972480654, -0.8016099924634793, 1.699050773461134]], [[-0.948224195858301, 0.3152431987365029, -0.038634182264625866, -3.2599928510540725], [0.2776385448755165, 0.763683300992413, -0.5828418775145944, -0.17530218806494713], [-0.15423265798229774, -0.5633911087652247, -0.8116666469530496, 2.0593969765835256]], [[-0.9403268538585667, 0.3365338612563309, -0.05030276473867452, -3.265023428579869], [0.30806465674790073, 0.7791883702924055, -0.5458586363371594, -0.13021506467840446], [-0.14450458530872948, -0.5287820381111388, -0.8363659372522189, 1.9888763509853598]], [[-0.927447408765287, 0.371315580124167, -0.04434009395127849, -3.2895027165540127], [0.33631144820231307, 0.7763613178535752, -0.53306445571687, -0.018222725975113964], [-0.163511203844317, -0.5093013293696702, -0.8449119730005423, 1.8274818651456464]], [[-0.9148997680781367, 0.4028167686060267, -0.02640199424986929, -3.311301252290554], [0.35204884648057294, 0.7641685798458995, -0.5404701576109445, 0.0965024257239784], [-0.19753486796580844, -0.5037708134718604, -0.840948835204396, 1.6454417078635546]], [[-0.9453920100967834, 0.316997384807188, -0.07580636695269469, -3.2238552739367656], [0.31556101029486183, 0.8319866978097866, -0.4563106216704286, -0.1655056549353616], [-0.08157938481533863, -0.45531394959189475, -0.8865855916267645, 1.976776530796067]], [[-0.9353043529342493, 0.33612913000839606, -0.11055756573858949, -3.21162213835389], [0.3428930018857006, 0.7838493193230918, -0.5176916397379222, 0.04093966579239182], [-0.0873507678275165, -0.5221086597218288, -0.8483940068172438, 2.1013606491902146]], [[-0.9210226039651341, 0.38488925326431317, -0.059813256949638585, -3.3039987759348377], [0.3570439634602401, 0.7728664412296924, -0.5245922913821296, 0.07939668502752119], [-0.15568227626125847, -0.50451732055757, -0.8492498466973801, 1.892545142464237]], [[-0.90185850003797, 0.42839494854189947, -0.055937589982465244, -3.367991288455617], [0.37496945461005443, 0.7118429509289079, -0.5938665854569213, 0.24996366565319805], [-0.21459066619660194, -0.5565585155907756, -0.8026166361998056, 1.7812177205807926]], [[-0.9323551172467283, 0.34009381299372227, -0.12267898641263399, -3.3283986894079653], [0.3509707469303181, 0.7699308614850682, -0.5329409004120771, 0.006918498582564389], [-0.08679556522665662, -0.5399469111831754, -0.837211958204572, 2.283266986944418]], [[-0.9181689545611627, 0.37671579918228637, -0.122682425499795, -3.3702730308386477], [0.37851602277569496, 0.7426417644813074, -0.5524570844420043, 0.17010293897849119], [-0.11701021913547124, -0.5536862074266811, -0.8244635785305056, 2.17005209619252]], [[-0.8913335299953098, 0.43963017095275286, -0.11067904541579984, -3.4028837826126694], [0.4186813195087948, 0.7046340030492162, -0.5728846955899691, 0.4270477536100876], [-0.17386917783343295, -0.5569705867771568, -0.8121288533629591, 1.9125900225862162]], [[-0.8841805644995935, 0.4526893551973005, -0.11531295266461822, -3.400999155040868], [0.4304569468925486, 0.6936355148288372, -0.577560896737374, 0.5301553182800507], [-0.1814705106432607, -0.5603053812513192, -0.8081623187873138, 1.8437733834322425]], [[-0.8969630778887068, 0.42579769677148344, -0.1189687283638739, -3.374687601902316], [0.4300383396791017, 0.7778559176646835, -0.45826542282838073, 0.3631193647362294], [-0.10258783217545295, -0.4622082785694485, -0.8808173726212533, 1.9378874937600432]], [[-0.901755442211389, 0.3918965308095007, -0.18235742809553984, -3.3088607174868407], [0.42889775772732164, 0.7588289015781681, -0.4901279542590349, 0.4485774278386951], [-0.053701358070515195, -0.5201882421481179, -0.8523616350307146, 2.1938256605136814]], [[-0.8884091521578698, 0.44267019305128824, -0.12154126273027946, -3.4024831960317385], [0.3965450191383519, 0.6066673381427521, -0.6889896868802551, 0.7407407524346653], [-0.23126008336654155, -0.6603013259222815, -0.7145074756967752, 1.8445514349524421]], [[-0.9029098734224625, 0.4126806767867289, -0.12020157853821992, -3.421603510598341], [0.36815635612844816, 0.5981693757247875, -0.7117965266754547, 0.705342685680734], [-0.2218437691675286, -0.6869410869586019, -0.6920240495312852, 2.010729041882489]], [[-0.9168527154136905, 0.37865371624400485, -0.1265008356223292, -3.469227218269525], [0.36384406379315876, 0.66212344836533, -0.6551412339086009, 0.5812086300639351], [-0.16431249338082213, -0.646694597394635, -0.7448405884614298, 2.2267811271021976]], [[-0.906153561176678, 0.41352274942772355, -0.08879560390334985, -3.5697759680490804], [0.31055215086004323, 0.5079935153596693, -0.80343011516169, 0.7608991231073999], [-0.2871290392193471, -0.7556067257894556, -0.5887405122621621, 1.930905751369881]], [[-0.88627087681679, 0.462406618634582, -0.026533977261816555, -3.571922469555515], [0.3059273159852439, 0.5414178828531838, -0.7831188629198256, 0.772422142384085], [-0.34775337559894814, -0.7021729097378424, -0.6213057174932712, 1.5363222107161545]], [[-0.9173352589350471, 0.3941573637497428, -0.05599995818233283, -3.592942613637046], [0.27386836783346774, 0.5226794388326599, -0.8073427533097756, 0.6114829290628784], [-0.28895006456964584, -0.7559405908028948, -0.5874195122412671, 1.9849481287278814]], [[-0.92605647215324, 0.3771942524696127, -0.011996094655574219, -3.525520679247461], [0.2350588223100453, 0.5516457661315652, -0.8002713906940154, 0.4376167407566406], [-0.2952401741587854, -0.7439162887133263, -0.5995179688296934, 1.921797737625298]], [[-0.9209169365355719, 0.38815109684436677, 0.03536554849641588, -3.38020013793941], [0.22242219090671647, 0.5978797885872932, -0.7701091658921284, 0.2794981844409785], [-0.32006306408924085, -0.701340491072153, -0.6369310406853146, 1.8357592296559684]], [[-0.8976178056700829, 0.43537507143774223, 0.06878097203883057, -3.2649071365065505], [0.2350069420158878, 0.604734521360765, -0.7609651081875618, 0.2688750477310139], [-0.3728994665434193, -0.6668918246950905, -0.6451366382453303, 1.6419513288852154]], [[-0.9603876454418355, 0.2737141628108071, 0.05230800664780069, -3.1291436136998163], [0.1558064966028288, 0.6830470533774085, -0.7135622316860613, -0.12346970272324372], [-0.23104091866818763, -0.6771464243051266, -0.6986363960972413, 2.116491655594782]], [[-0.9367438454486057, 0.32764395050718337, 0.12312761554665651, -3.1302575531942094], [0.14778537013397258, 0.6891198100931654, -0.7094176285598803, -0.17558568725150536], [-0.31728607342353304, -0.6463461371689367, -0.6939497233793457, 1.8281146557290993]], [[-0.9002025743323231, 0.39689168647019757, 0.17919909144942836, -3.104009519659914], [0.1767585082943589, 0.7091045782871125, -0.6825885486864024, -0.1554354918913692], [-0.39798461642507144, -0.5827930046449584, -0.7084917492997996, 1.4619918734844812]], [[-0.9425341493836265, 0.3009545670470914, 0.14510591241979665, -2.9297934030556934], [0.07522829423909266, 0.614315433297587, -0.7854662641757916, -0.3111961703048299], [-0.3255304609273308, -0.729412706899116, -0.6016535730987924, 2.0085171513699414]], [[-0.9555953755863102, 0.2509577609085023, 0.15445931631938176, -3.01049136621532], [0.09601254834442971, 0.7607064923574028, -0.6419557796653174, -0.5583760274744637], [-0.2786019897963193, -0.5986199418037189, -0.7510227004268545, 1.8584592764547385]], [[-0.9278512092710397, 0.31382742927293195, 0.20150552868398527, -3.0663398516191878], [0.14420310995718166, 0.8001635747813289, -0.5821887294270146, -0.5489064424102907], [-0.3439441764777338, -0.5111267927130289, -0.7876876317665183, 1.5092804766179302]], [[-0.9124718939811787, 0.3297005498092944, 0.2422655364467875, -3.0327642079860535], [0.11237965316782049, 0.7713283567897316, -0.6264370515589999, -0.5960960062827584], [-0.39340291845419895, -0.5443804859356198, -0.740867080038125, 1.3691274938473275]], [[-0.9091917566527645, 0.3872762781896062, 0.15292950659132742, -2.9027215122430934], [0.14376740271356322, 0.6366832123080208, -0.757605056135541, -0.27377712037979957], [-0.39077011599104694, -0.666821993875987, -0.6345448328775494, 1.8104267476288949]], [[-0.9563478825982556, 0.2527100149894654, 0.14675277092395078, -3.0625963824278193], [0.09997198062276612, 0.754802656512453, -0.6482889423799432, -0.5576067817849064], [-0.2745984896903016, -0.6053185921857747, -0.7471178430569287, 1.9087897247247587]], [[-0.9426300945982113, 0.30484410745280865, 0.13608297067990416, -3.1343630935817566], [0.13387275045594751, 0.7185927637469451, -0.682424007912886, -0.3937704265821497], [-0.30582117559633903, -0.6250556055598795, -0.718177483993369, 1.8527390885660573]], [[-0.9371441720627113, 0.33223749685437015, 0.10667261341524296, -3.185294603207032], [0.156093096592956, 0.6725561706112753, -0.7233969467510346, -0.21491532766207733], [-0.3120829152083106, -0.661276374186043, -0.6821420753614623, 1.9096625898866868]], [[-0.821674260396246, 0.551629644509813, 0.14337414376469507, -3.2003285643949293], [0.2162341694832894, 0.5344539156902701, -0.8170690276538513, 0.24088061178409215], [-0.5273463698084535, -0.6403622000878215, -0.5584282039336218, 1.1287083536506466]], [[-0.9440706256345324, 0.32653268753250714, 0.045902699123479954, -3.2464394086719577], [0.18642257649049238, 0.6433644687323194, -0.7425151738162843, -0.05000010038308555], [-0.27198764087485516, -0.6924294652494061, -0.6682545614253241, 2.0843442278102415]], [[-0.9338969860534626, 0.35627698242147965, 0.030052141968637647, -3.3212593569047297], [0.20685374345387786, 0.6069453412895515, -0.7673518629064683, 0.10174179800894528], [-0.2916298137354543, -0.7104111939458405, -0.6405216524498369, 2.050232370701995]], [[-0.9200815795646805, 0.3917010417246447, 0.00449231094098651, -3.338589876432997], [0.240605529856363, 0.5741430117104496, -0.7826038468513895, 0.2384046597602196], [-0.3091259710026014, -0.7189785087301862, -0.6225038458000209, 2.0260306005393365]], [[-0.9137289867148286, 0.4058629686091881, 0.019354316025883472, -3.413488357524002], [0.2415284372577901, 0.5808289677420461, -0.7773684610450312, 0.26065774283621596], [-0.3267466187015595, -0.7056294785108171, -0.6287477126985435, 1.9687353778730758]], [[-0.8939470153941169, 0.4480284163650559, -0.01136977560775393, -3.3964362920554048], [0.266580559990736, 0.5111701197818102, -0.817092353211848, 0.5502797365734127], [-0.36026870347419326, -0.7334682316035711, -0.5763946690639618, 1.806566821857732]], [[-0.8899902014106666, 0.455977967180236, -0.0012388862662449651, -3.4372037958588972], [0.26337624294742634, 0.5118432089675027, -0.8177099021564725, 0.5690859351018215], [-0.3722235834063974, -0.7280800937259783, -0.575629204502405, 1.7930694552739617]], [[-0.8916354473871538, 0.45080298736710095, -0.04198684965090235, -3.4063829330672357], [0.264568034284067, 0.4435285694075479, -0.856321296800657, 0.7288228154995204], [-0.36740983138421157, -0.7746348008579216, -0.5147338546297819, 1.8814857978824928]], [[-0.901107231224605, 0.433051904050423, 0.0217211011007645, -3.3602755589475284], [0.23261237420778652, 0.5250882937919623, -0.8186414154488292, 0.46342377977985055], [-0.36591971961093195, -0.7326311023434299, -0.5738940901236985, 1.9355609990588754]], [[-0.9619237144598378, 0.2731601628060789, 0.00928940340090717, -3.18519861403216], [0.15788335876886017, 0.583081726777429, -0.7969244286142285, 0.15567415143635588], [-0.2231044880401372, -0.7651138643064885, -0.6040075844410735, 2.421229004417999]], [[-0.937272241246343, 0.34733493289734496, 0.02965114126393678, -3.105899391832909], [0.1607221124658685, 0.5060440338550839, -0.8474006362778967, 0.3494888118089879], [-0.30933662627236014, -0.7894794995367975, -0.5301254299291462, 2.0542652078116497]], [[-0.995421850486137, 0.0948447950731175, 0.01182389201124849, -2.716087668229453], [0.03863786432316443, 0.5124583786483424, -0.8578423664016933, 0.016393830695768618], [-0.08742113597580425, -0.8534581858536777, -0.513776867895052, 2.81975556335476]], [[-0.994049956627874, -0.1041712918052477, 0.031828064530344924, -2.1926862439270183], [-0.08451150691451167, 0.5532430924719777, -0.8287218386353056, -0.3575095030002288], [0.06872036762969412, -0.8264807454476292, -0.5587549449241329, 3.2368651989991695]], [[-0.9782834410276625, -0.19141621437436057, 0.07950686690887042, -1.8569295367588943], [-0.17901404626853457, 0.5869299047436491, -0.7895994289234115, -0.599081190091922], [0.1044771757353871, -0.7866848923121629, -0.608449997911215, 3.2558108472614555]], [[-0.9362615759810611, -0.32257673416449695, 0.13913486952316123, -1.3859090475620868], [-0.3052450734050248, 0.5509412325507596, -0.7767169390694469, -0.7558535349602465], [0.17389567706938724, -0.7696804589251421, -0.6142900655597174, 3.3281154770260035]], [[-0.8829088648856374, -0.4318231206196279, 0.18439286538443314, -1.032482935706096], [-0.39210638430700806, 0.4620269415070172, -0.7954770195972707, -0.7469168676138901], [0.2583108973544096, -0.7746353321531352, -0.5772482849588745, 3.3856637237660543]], [[-0.8107492361324258, -0.5479890398518098, 0.20589727611840727, -0.6544651358529855], [-0.48180306161928976, 0.42487014196212936, -0.7663883951909497, -0.8411831516135334], [0.3324928359002145, -0.7205507439947391, -0.6084859401856884, 3.3769114539353393]], [[-0.7770945678111033, -0.5879830436677123, 0.22449938315667517, -0.4989337131188917], [-0.5144876460352041, 0.38798855752491734, -0.7647008181680516, -0.74946061592652], [0.36252792272544876, -0.7097470109757323, -0.6040138124706955, 3.3113597356392503]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.754364846915401, -0.6202625971525108, 0.21496043429414138, -0.35325059397907305], [-0.466195846718482, 0.2756530254537545, -0.8406407330486846, -0.11364998987771655], [0.4621635102869345, -0.7343634795738513, -0.4971067990155078, 3.2825592995989106]], [[-0.7445014262607759, -0.6384249592008708, 0.19527211210266793, -0.234372796871908], [-0.3938027425724242, 0.18375989804582338, -0.9006396059538053, 0.3274608960502128], [0.5391076202745677, -0.7474261644734916, -0.3882230060446412, 3.261203643550621]], [[-0.7242950956237991, -0.667163842971501, 0.1740374128939239, -0.10372444984259757], [-0.346350688297725, 0.13379588883580884, -0.9285148684034781, 0.6383667398810527], [0.5961860575114147, -0.7327967431437823, -0.3279803623189377, 3.2340146481871894]], [[-0.8310150214660139, -0.5344984884106012, 0.15403051640705134, -0.4824577548879122], [-0.25666945509799444, 0.12279204121427845, -0.9586672548043614, 0.8771609772756762], [0.49349247706276045, -0.8362018180446716, -0.23923146653658944, 3.07083523001284]], [[-0.9281732075148006, -0.36388019801431143, 0.07801088606567969, -0.9120651997891276], [-0.14754286307044756, 0.1673653160756856, -0.9747922622445575, 0.9780101065464709], [0.34165128480464124, -0.9162860101889325, -0.20903192847836938, 2.920166330882934]], [[-0.9993993509026405, 0.024044164646376848, -0.024956272995756, -1.6420107380496876], [0.02969051057193725, 0.22268803694287842, -0.974437536112246, 1.1708772850739537], [-0.017872073113057156, -0.9745932055729637, -0.22326816309912279, 2.398832285876349]], [[-0.9365485182184954, 0.3231930191814815, -0.13573188783443332, -2.0730711494056435], [0.20682497059800767, 0.19684889120195193, -0.9583704636359033, 1.469860191127779], [-0.2830199720158878, -0.9256331813331463, -0.2512029240578325, 1.852116263286673]], [[-0.7952414196993554, 0.5523222365122222, -0.2500624550961029, -2.3228474633648264], [0.35689399575920727, 0.09303199135635709, -0.9295007931009512, 1.9356485108014005], [-0.4901201487243516, -0.8284233191058828, -0.27110338281919666, 1.3427282875742805]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7333602583257727, 0.679609596067564, -0.017706734347091746, -4.238074574673471], [0.31994301789473034, 0.3220323731175796, -0.8910284035678501, 2.1168718317465887], [-0.5998493117515167, -0.6591099662401881, -0.45360208949484543, -0.5486915346913601]], [[-0.8092365430213652, 0.5873451261890519, 0.012724786080593742, -4.388162222785666], [0.23997103593608948, 0.35024434358957146, -0.9053964886696162, 1.7666909318629158], [-0.5362369992368954, -0.7296263444568576, -0.424376340202812, -0.31124018863497066]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.19427165289874804, -0.9729404323221937, 0.12508173340936332, 1.5057125336052346], [-0.7751606145098471, 0.07412100316814996, -0.6274010667842884, -1.5603223899802532], [0.601152681598198, -0.2188446756081805, -0.7685847132003379, 3.562624868115228]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.1291149206012534, -0.9897822394760447, 0.06050169994238186, 1.8377208742346787], [-0.7640631889826566, 0.06040853394033219, -0.6423069766621202, -1.3359975737991383], [0.6320892187973036, -0.129158536090209, -0.7640558173558059, 3.5981702549577044]], [[-0.2736459259197448, -0.958255774233135, 0.08284792318688783, 1.5717403934927605], [-0.7807094300730753, 0.1709797957366288, -0.6010479974551406, -1.4618495880562021], [0.5617923931689531, -0.22915449067979346, -0.7949072438837029, 3.544867131233248]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9531156519288609, 0.25994304857770845, 0.15491986813946607, -4.151227978764377], [-0.020080849013845742, 0.45649219215843384, -0.8895007802139745, -0.5142770634829329], [-0.30193925473695127, -0.8509080385062262, -0.4298699762188336, 3.3756882197578535]], [[-0.9682066818926799, 0.21264103247962965, 0.1317558820104968, -3.9698952372155856], [-0.023954323753891643, 0.4454716587222567, -0.8949755257261145, -0.46822382392988726], [-0.24900203114003025, -0.8696774071925972, -0.4262149644333255, 3.506562792246256]], [[-0.9707643913984938, 0.20934090951560308, 0.11744309258484278, -3.9211014345907764], [-0.005184054396860274, 0.4708772211740603, -0.8821835229471278, -0.4449369410824632], [-0.23997837813586928, -0.857001182136043, -0.4560256043740334, 3.5200128079953004]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9880277152234375, 0.1542598271047768, 0.0022670888730147443, -3.6784497774792717], [0.061642483069456876, 0.40820325321369544, -0.9108075034532744, 0.003959605558141459], [-0.14142644106172472, -0.8997633076578301, -0.4128250864001062, 3.54206928547805]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3385620777425796, 0.9215671626001527, -0.1899728515649824, -2.8684209187324066], [0.482920089940023, -0.0030958127183242645, -0.8756589534036255, 3.1491053196736303], [-0.8075666574636098, -0.3882066212221479, -0.44399517226242025, -1.4387664246622114]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5447850431634098, 0.8317530759056442, -0.10675241199589552, -3.6750941578070675], [0.38149745883155073, 0.13245973263463107, -0.9148300979610539, 2.7284979628029675], [-0.7467723519590899, -0.539111528305472, -0.38947376599410044, -1.5257387533731641]], [[-0.5774235468157344, 0.8123859919229344, -0.08130834957202987, -3.8528342428279023], [0.4022752452263431, 0.1964305829408428, -0.894197770721671, 2.866566697892958], [-0.7104622964386098, -0.5490391845878676, -0.44022641802402823, -1.3715753841437326]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"f1350714-1aa5-421b-a268-690110ca9c06\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9991345292171464, -0.026860318394814668, 0.03176028686520194, -0.049643623505382324], [-0.007407396834529191, -0.8662411256399154, -0.4995712589033001, 2.425323700775617], [0.04093070971980019, 0.498903633526377, -0.8656903842922202, 0.4865917413536268]], [[0.9984132668656144, 0.039413484589973805, 0.04021847559527104, -0.35973475838114133], [0.0549479641959654, -0.8380968929272858, -0.5427470122408309, 2.6229797618167794], [0.012315428431460223, 0.5440957409299447, -0.8389327475575407, 0.2419217827830622]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.13197818172503417, 0.9892047083747977, -0.0636851982621163, -2.2491628703250868], [0.8959963262208896, -0.1465299447351709, -0.41918916815034296, 1.3995644838571049], [-0.4239956874158304, -0.0017378794661932484, -0.9056625402586431, 1.6122594299384851]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.38408981380872637, -0.9125074908315449, -0.1407305727434373, 0.7733772921789603], [-0.5715973661837301, 0.35470616783859377, -0.7399053895391507, 0.25016105845287046], [0.7250872126166623, -0.20374889858248896, -0.6578259043441677, 2.8329004053099385]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6240523611844704, 0.7806363364748358, -0.03414030865757384, -1.5141962023703985], [0.42712628072497993, 0.3042125629896171, -0.8514798041253439, 0.4913985641960355], [-0.6543101640767419, -0.5459502053250235, -0.5232748632329205, 2.0041953839391473]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8174381354695291, 0.5587824326841533, 0.13984665746338143, -1.1600050706172345], [0.446233639643528, -0.4607921724014097, -0.7671675910152095, 2.1486725411810763], [-0.3642395276882928, 0.6895163281439892, -0.6260166129522762, -0.24747398420302535]], [[0.945690220379364, 0.3195813302857072, 0.059479243536274776, -0.7223458726085115], [0.23880385977417257, -0.5588556257087298, -0.794136704963737, 2.473197583405827], [-0.22055095473787245, 0.7652111884614089, -0.6048215550207278, -0.42460345921662707]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.07295896695983095, 0.981696404290117, -0.17592373047434373, -2.2240119083845293], [0.6539065300686421, -0.18027395188580508, -0.7347840173854236, 2.4467146133643527], [-0.7530492939202204, -0.06142859330417422, -0.6550902906095678, 0.70292575767832]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.1480119978899267, 0.9881901728735534, 0.039656408268630594, -2.0488742572392344], [0.5644891156432732, -0.05148897723301493, -0.8238330677654138, 2.826905736908004], [-0.8120618737515677, 0.14432278912089452, -0.5654435831623332, -0.846330273499399]], [[0.22077170866375695, 0.9743864458352653, -0.04278909704825212, -1.9408530440270522], [0.4941711644280742, -0.149574768692034, -0.8564007524626107, 3.208711699570555], [-0.8408654546962235, 0.16792391950893704, -0.5145355617984722, -1.427969381727213]], [[0.16443202544538005, 0.9838485659495202, -0.070739722129807, -2.156750565610535], [0.27619765302169447, -0.1147709601660406, -0.954223497493052, 1.971052873686279], [-0.9469302854345918, 0.13736675719269742, -0.29060868628643044, -2.2676321355682454]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.3128351740726956, -0.9498072618270561, -0.0005650163681522047, 3.689728323273052], [-0.08456654713457673, -0.028445932663290596, 0.9960117107848937, 0.4188615986231227], [-0.9460352281858437, -0.31153971543850656, -0.08922080887244171, -8.417989887997718]], [[-0.3164153820735073, 0.9483193339291995, -0.023911229231379894, -3.0610288868860263], [0.7811497046549769, 0.24617064192025417, -0.573764022899669, 3.052012210063415], [-0.538225273379761, -0.2002260121778611, -0.8186715453358767, 0.3392767707376723]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.326215565830812, 0.9449787786615317, -0.024464514894898926, -3.7031539667380002], [0.7385886435967889, 0.2386446532027524, -0.6305041990721341, 4.224744123893872], [-0.589974762307286, -0.22374949693149596, -0.775800194936405, -0.853704987799363]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.14387995699664058, 0.9895851498640518, 0.0044484989813091125, -2.5792663530239683], [0.8779449033463604, 0.1297197913949275, -0.46085303775564507, 5.073313748344782], [-0.4566303807925996, -0.062401978245871514, -0.8874653167579042, -0.5948421023045096]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"150bc185-821c-487f-b39c-4c5a0d52467d\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9978565389509237, -0.03565475910171145, 0.05487317948034339, -0.04827571911455557], [-0.004944598013284011, -0.877216488927197, -0.4800695600688799, 2.4514084546469066], [0.06525242235633925, 0.4787692238517841, -0.8755125080025927, 0.5095498271743542]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8368163768612257, 0.5067129462871884, -0.20731700721795368, 0.8671087318789429], [0.25887691218621744, -0.6998858200253358, -0.6656895547208117, 2.1046032203937592], [-0.48241174918712504, 0.5033903346235604, -0.7168521990297569, -0.27173680513506654]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"fe3d5a3a-a878-4b62-b99c-d1427eff1705\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.8804628974880261, 0.47411031281713795, 0.002120713895242571, 0.3127283703338566], [0.323131179222713, -0.5967966605238733, -0.7344521679467574, 1.2747562788375615], [-0.34694571212385483, 0.6473431526385279, -0.6786571413982784, 0.9027574862922586]], [[0.8669033215509155, 0.49805457384988694, -0.020500550021828295, 0.2991482347013506], [0.33026990736973294, -0.6046926469708136, -0.7247541589983593, 1.2824054188105425], [-0.37336365566291796, 0.6215210729867802, -0.6887025021468874, 0.9083053329161332]], [[0.8710215107575957, 0.49099191758294364, -0.015762761997185015, 0.30833192345113497], [0.31890129326067757, -0.5895566791678152, -0.7421084066396805, 1.2776640111764987], [-0.3736622712480126, 0.641365620310944, -0.6700945068637221, 0.8837098282218518]], [[0.8741327998695623, 0.4856519249828265, -0.00583574782480728, 0.303891813777195], [0.3171046087210472, -0.5797803832691255, -0.7505327270040778, 1.2700271850653282], [-0.3678811157426693, 0.6542147315192322, -0.6608075133827912, 0.8630372797840524]], [[0.8760440325466368, 0.4818082183226002, -0.020191428781253462, 0.323824617286523], [0.3135524467438668, -0.600926283326112, -0.7352363328541375, 1.2725328541594376], [-0.36637646783105676, 0.6377683300107234, -0.6775100302246244, 0.8935999065168547]], [[0.8747563338312969, 0.48455408479866496, -0.002948783979360464, 0.2979613936453364], [0.31540844069854373, -0.5739995946537615, -0.7556731971384394, 1.2685115760831678], [-0.36785713525517205, 0.6600998441465091, -0.6549422293604317, 0.843963770373527]], [[0.8761746201499421, 0.481562988952085, -0.02037455954464107, 0.3178212565553151], [0.31225691378321657, -0.5993185295573109, -0.7370976325588378, 1.2780823599447213], [-0.3671697901512118, 0.6394641411375596, -0.6754790577060982, 0.8890507834500766]], [[0.8785057353961767, 0.4777277583188473, -0.0019651482566614975, 0.3040672991260651], [0.3118315941911002, -0.5765416871583195, -0.7552223115301051, 1.2638441313473763], [-0.3619236518110672, 0.6628543368646593, -0.6554657873294791, 0.8494130135025404]], [[0.9185357384885537, 0.3953357670178145, -0.0013146998604592064, 0.342082219234352], [0.266755956618544, -0.6222368158958625, -0.7359773125255316, 1.2369539690541742], [-0.29177621001002163, 0.6756707602525174, -0.6770049239200354, 0.8554405527779474]], [[0.9401905039847887, 0.3406078382870087, -0.005302519616171564, 0.3308963121101316], [0.23859565712363365, -0.6695534656475076, -0.7033990823431271, 1.1883568574134653], [-0.24313356127562968, 0.6600639795783911, -0.7107753613094413, 0.9809498993673336]], [[0.9697095257968458, 0.24344506216070386, 0.01994836555779861, 0.31732602208471644], [0.19194477057562356, -0.708961735935711, -0.6786239474316347, 1.13315093432895], [-0.15106502119129947, 0.6618970907086643, -0.7342149553665316, 1.0694898710074425]], [[0.9599169902568604, 0.28004113260022023, 0.01167629514000211, 0.2966514952390339], [0.2179651944292793, -0.7196478755035746, -0.6592405549574434, 1.1343296257007196], [-0.17621165067502498, 0.6353612353104157, -0.7518414426135376, 1.096678646508119]], [[0.8959970872034495, 0.437462220424313, 0.07626287054893634, 0.18822117217051187], [0.3575276772068639, -0.608821430056785, -0.7081740085139218, 1.2142599805297207], [-0.26336890430344767, 0.6617879358261537, -0.7019070794919798, 0.9845872486982914]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.17420163522859866, -0.984699882174606, -0.00446456369643472, -0.20173749732433088], [-0.7275779288860842, 0.13176709189697366, -0.6732516549484677, 0.4299311719675295], [0.6635391078764827, -0.11403322120475129, -0.7393999437247407, 1.6487544078399554]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.06955434730269716, -0.9973158026629079, -0.02287755516080081, -0.051351497554540326], [-0.6832641943140891, 0.06433624926261028, -0.7273313466358629, 0.4231536142457944], [0.7268509018633837, -0.034957642793228494, -0.6859050442085455, 1.6963101928451785]], [[-0.08071735763215504, -0.9959385826084148, 0.03988794114547278, -0.05302275097065542], [-0.639246141310646, 0.021021183545592126, -0.7687148240158976, 0.4027997123403012], [0.7647542605283953, -0.08754684182930011, -0.6383466703049236, 1.671332575761945]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5630354326308463, 0.8260035357943437, -0.02663194430451063, 0.19090937151024892], [0.6538657241419475, -0.4649448566651587, -0.5968968881246925, 1.2640749960911382], [-0.5054213256230119, 0.31866038209331515, -0.8018758285979319, 0.7698523777473604]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5501894448595661, 0.8335100542508953, -0.05052290795067743, 0.06528455311770294], [0.6966033238194003, -0.49149978979196246, -0.522658364400897, 1.455177697188851], [-0.4604730003039124, 0.25236668975347465, -0.8510438707222951, 0.7642829278160739]], [[0.5026227238644979, 0.864021962519866, -0.028921371654063888, 0.004285343347736401], [0.7558221419938611, -0.4554274347221185, -0.4704452586372215, 1.5376269367410387], [-0.4196466217269533, 0.21459706425240327, -0.8819551082041565, 0.8067020796635029]], [[0.46105899790387483, 0.886795021998758, -0.03192474604593715, -0.02585229292136012], [0.7791218977996329, -0.4217735430198837, -0.4637630286876615, 1.6082263480196246], [-0.42472775847709027, 0.18894884854551716, -0.8853839075860537, 0.7825147116971463]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5194358523791505, 0.8526181136465044, -0.056822069172297374, 0.05082154940794214], [0.7200109027199885, -0.47251965137450075, -0.5082415557874693, 1.6304737587853129], [-0.4601855008879485, 0.22308637642580634, -0.8593379855596466, 0.7658488186310567]], [[0.5192361232951334, 0.8528685415656139, -0.05485525565689961, 0.036151770898434445], [0.7070589337126525, -0.4647466926373334, -0.5329898460006407, 1.6372550517475104], [-0.48006407126816697, 0.23796168281974048, -0.844341592595692, 0.6979341956140713]], [[0.5309377203851159, 0.8473387422773032, -0.011054090110681147, 0.06732909002676149], [0.735728950700863, -0.46739791177025797, -0.49014498178947974, 1.613041808724891], [-0.420485491037282, 0.25210364517142614, -0.8715708255319332, 0.8419844654778151]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.31259765583055477, -0.9257087616086925, -0.2129459890445062, -0.004802772973181039], [-0.686287173053149, 0.3750949426733322, -0.6231482167860283, 0.7647479551224213], [0.6567287276128243, -0.04865257096794179, -0.7525558488685409, 1.3487627612780004]], [[-0.34090997136143875, -0.9195677812750238, -0.19538548325623714, -0.036515840038060514], [-0.724295381080748, 0.3894139101385131, -0.5689929767015833, 0.7647073537063384], [0.5993134341656604, -0.05245857633947426, -0.7987937815212374, 1.3124514873811464]], [[-0.298136875060817, -0.9346691133535293, -0.19366995707103865, -0.050644844432781416], [-0.7309551994421443, 0.35404215265034245, -0.5834026487385933, 0.7964273196292068], [0.6138557649297315, -0.03236978050031497, -0.7887542691947192, 1.2830553825053812]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"5a7efdba-6701-4aaa-bff6-fbab6b293ed9\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.8860612790695193, 0.4634849919594404, -0.008779063847904889, 0.3412427062197993], [0.31537665381713664, -0.616580784503347, -0.7213637795234408, 1.277729084203678], [-0.33975428762679954, 0.6364038013789631, -0.6925007044253537, 0.9348053934894444]], [[0.8625998717258349, 0.5054529329827909, -0.02094740646637236, 0.28683705133613374], [0.3326063298437961, -0.5978482570153846, -0.729349361370466, 1.2827984950428992], [-0.381175144318741, 0.6221694255769572, -0.683820674761173, 0.8936662844731917]], [[0.8703997906546928, 0.49207155039211314, -0.016425398715693762, 0.3071649552865937], [0.31966164332328484, -0.5901771248084701, -0.741287660183727, 1.2777348419716033], [-0.3744604628210093, 0.639966054293124, -0.6709864463134602, 0.8848540938824992]], [[0.8769735553120881, 0.4805206947243782, -0.004152737034321674, 0.31171608504932224], [0.31562978505541983, -0.5825129525612135, -0.749037047738152, 1.2678289099187388], [-0.3623468256645072, 0.6555749553178631, -0.6625150986134858, 0.8723289234973662]], [[0.8770630555019069, 0.48012044433759526, -0.015644666910096056, 0.32224394636630943], [0.3119833681722124, -0.5940774345749377, -0.7414434433675857, 1.271133129895992], [-0.3652762990635713, 0.6454117760452861, -0.6708329633258117, 0.8807632646069371]], [[0.8776409482871972, 0.47931450522876556, -0.0019927284946806845, 0.3054392652100713], [0.31369465416344994, -0.5775189261066425, -0.7537025633085669, 1.2726354185810473], [-0.36241140964216806, 0.6608551241126411, -0.6572126559153, 0.850229125988295]], [[0.8766595869324768, 0.4796834849041646, -0.03703677833688043, 0.33744713417365946], [0.30957193350992657, -0.6213428867563926, -0.7197904105086135, 1.2811514924085496], [-0.36828411128136485, 0.6195456168737123, -0.6932027423418538, 0.92604360274709]], [[0.8785350675708847, 0.4776243510500332, -0.007149428806226876, 0.3076145244718064], [0.3108165428371181, -0.5829484473862938, -0.7507091210240431, 1.2653413557018287], [-0.3627247051787382, 0.6573021276201259, -0.6605942031830534, 0.8575342866335645]], [[0.9040066510127996, 0.426364947430072, -0.03138322047805153, 0.30889585397047753], [0.2724149567351968, -0.6310547147775394, -0.7263332832137044, 1.2261501939819144], [-0.32948758136170014, 0.6480608602284128, -0.6866258480194485, 0.881696261753188]], [[0.9418706430545231, 0.33595059587339393, -0.004109608785600294, 0.33410012137409445], [0.23542318238495666, -0.6686600849390337, -0.7053152600114814, 1.185431295369654], [-0.23969901323910064, 0.663348240324519, -0.7088818625910567, 0.9877415083340015]], [[0.9697210117589914, 0.2438979491275238, 0.012447881928503865, 0.3246551764181657], [0.18750094836034123, -0.7108952686952427, -0.6778431317869134, 1.1282540869216657], [-0.15647540930475562, 0.6596527172369611, -0.7351011759783838, 1.0712098494907603]], [[0.962170683477753, 0.2720798897145895, 0.014146005402602232, 0.3050743225774836], [0.21422493076294732, -0.7234529206691477, -0.656295322712946, 1.1264089084753757], [-0.1683307900996252, 0.6344985462459125, -0.7543714866803087, 1.095976492753986]], [[0.9037576551731156, 0.42078702394431955, 0.07848809588768604, 0.2026966093571208], [0.35695163680385034, -0.6396783622765974, -0.6807327829759506, 1.2065055097382378], [-0.23623638521414106, 0.6432339180385416, -0.7283148336988222, 1.0447955865524245]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.17420163522859866, -0.984699882174606, -0.00446456369643472, -0.20173749732433088], [-0.7275779288860842, 0.13176709189697366, -0.6732516549484677, 0.4299311719675295], [0.6635391078764827, -0.11403322120475129, -0.7393999437247407, 1.6487544078399554]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.06955434730269716, -0.9973158026629079, -0.02287755516080081, -0.051351497554540326], [-0.6832641943140891, 0.06433624926261028, -0.7273313466358629, 0.4231536142457944], [0.7268509018633837, -0.034957642793228494, -0.6859050442085455, 1.6963101928451785]], [[-0.08071735763215504, -0.9959385826084148, 0.03988794114547278, -0.05302275097065542], [-0.639246141310646, 0.021021183545592126, -0.7687148240158976, 0.4027997123403012], [0.7647542605283953, -0.08754684182930011, -0.6383466703049236, 1.671332575761945]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5630354326308463, 0.8260035357943437, -0.02663194430451063, 0.19090937151024892], [0.6538657241419475, -0.4649448566651587, -0.5968968881246925, 1.2640749960911382], [-0.5054213256230119, 0.31866038209331515, -0.8018758285979319, 0.7698523777473604]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5703160638796608, 0.8211587126112065, -0.020927397915574603, 0.1046553770042498], [0.6951800966860546, -0.49607859904528634, -0.5202217380510294, 1.4559464572041683], [-0.43756624692996915, 0.2821425034835623, -0.8537747872100987, 0.8022013072840277]], [[0.4989231182301813, 0.8661677793859236, -0.02879409747032921, -0.0027863161000543472], [0.7549462562259671, -0.4506942738390578, -0.4763725661066986, 1.5370751291073355], [-0.42559590259525415, 0.21593529003463657, -0.8787719147832322, 0.7936326254639058]], [[0.47953861641744555, 0.876885879078474, -0.03337469755988687, 0.014531569667558846], [0.7818759044383609, -0.44422910888129086, -0.43741349874144203, 1.6085938123087726], [-0.39838773252089155, 0.1836617921487918, -0.898640952038998, 0.8442378458664009]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.48744597452537275, 0.8704881626326004, -0.06816729887218057, -0.013053406092468986], [0.715379447829865, -0.4429105094667935, -0.5404280953341555, 1.6300552669452983], [-0.5006282728149175, 0.21466401496381451, -0.8386242860411138, 0.6626139972260722]], [[0.5192361232951334, 0.8528685415656139, -0.05485525565689961, 0.036151770898434445], [0.7070589337126525, -0.4647466926373334, -0.5329898460006407, 1.6372550517475104], [-0.48006407126816697, 0.23796168281974048, -0.844341592595692, 0.6979341956140713]], [[0.5443283958402716, 0.8388690744417774, 0.002296394380687211, 0.09071616784327532], [0.7359608587440835, -0.4762356394450625, -0.48120809440305895, 1.6109308388589798], [-0.40257696391948095, 0.2636252864721968, -0.8766033860611223, 0.8787471635047976]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.31259765583055477, -0.9257087616086925, -0.2129459890445062, -0.004802772973181039], [-0.686287173053149, 0.3750949426733322, -0.6231482167860283, 0.7647479551224213], [0.6567287276128243, -0.04865257096794179, -0.7525558488685409, 1.3487627612780004]], [[-0.3412986014438406, -0.9199262511749655, -0.19300507001540868, -0.039023158905925594], [-0.7251632440159672, 0.3883398637404004, -0.5686215083500854, 0.7642538394806042], [0.5980414151049386, -0.05410954286686859, -0.7996365569369757, 1.3111193057257455]], [[-0.298136875060817, -0.9346691133535293, -0.19366995707103865, -0.050644844432781416], [-0.7309551994421443, 0.35404215265034245, -0.5834026487385933, 0.7964273196292068], [0.6138557649297315, -0.03236978050031497, -0.7887542691947192, 1.2830553825053812]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"1839af1c-6999-4bc4-87f7-550dd9be4b91\": {\"good_poses\": [false, true, true, true, false, true, true, true, false, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.8673798623530662, 0.49555105172345004, -0.04562159050448186, 0.3195507623414297], [0.32717647066566047, -0.6369321687873274, -0.6980494032707382, 1.2853344861973905], [-0.374976974529288, 0.5905476843572025, -0.7145947810285265, 0.9602849333383342]], [[0.8760693044456486, 0.4821587941344585, -0.005046884872981633, 0.3111919387570261], [0.32260415031156575, -0.5938777429400596, -0.7370453097620071, 1.2745236597889382], [-0.3583701103745526, 0.644074625861961, -0.6758244892802463, 0.8926619054206741]], [[0.865037171643591, 0.501468120429832, -0.015505349639003768, 0.28781998832376626], [0.32422576058642716, -0.582342917056728, -0.7454893581574545, 1.2806491631396062], [-0.3828685777744225, 0.6398487720910561, -0.6663371526536388, 0.8650580356623132]], [[0.8747050979304103, 0.48456164871153073, -0.009539405249532396, 0.3095638057403423], [0.3178906970567684, -0.5884745636882026, -0.7433997529033364, 1.270568770770206], [-0.3658367072606487, 0.6472230654804746, -0.6687793411363301, 0.8794074346076305]], [[0.8789480097473187, 0.47680789466079004, -0.010228770716568414, 0.32501117319716333], [0.31019114829167455, -0.5878348728785028, -0.7471489903288412, 1.2687574940216162], [-0.3622593652105071, 0.6535322439000691, -0.6645778799359945, 0.8743121131275946]], [[0.8692855964507805, 0.49356483582540034, -0.027134933938681827, 0.30583869491097404], [0.32116415978707147, -0.6056715869186261, -0.7280216420325275, 1.2892313921006782], [-0.3757607407266963, 0.6241439590640278, -0.6850169224861571, 0.8919562052416664]], [[0.8764979585691369, 0.4807512557684015, -0.025091008374310192, 0.3236948797884926], [0.3098577421763098, -0.6032816322347487, -0.7348737659092047, 1.2798313046163596], [-0.3684284302785742, 0.6363407124216415, -0.677739617756837, 0.8926105236304246]], [[0.8757716855557929, 0.4821367509566959, -0.02383501952352035, 0.3144762087795327], [0.30947885904667777, -0.5986723744961856, -0.738792409150409, 1.271458581837144], [-0.370468339513557, 0.6396370387899843, -0.6735114460987637, 0.8758376753137391]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.962759370619987, 0.27029430881072003, 0.005948185264573497, 0.3040012566555111], [0.20347165556285737, -0.7099061540522874, -0.6742644420560826, 1.1458636442279402], [-0.17802718799643075, 0.6503646969687282, -0.7384660325775712, 1.0411106328019675]], [[0.9534629790348896, 0.30093808042778525, 0.018563926264492395, 0.276981960814854], [0.23561721364931956, -0.7052597512200665, -0.6686502912144285, 1.153737207152961], [-0.1881299450965862, 0.6419072791746867, -0.7433452553830593, 1.0703761424356697]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.2703657410785706, -0.9602355987728673, -0.06964166066621175, -0.2637829149224178], [-0.6927285101859754, 0.24426001167839684, -0.678575167443068, 0.4722550984269595], [0.6686027050697252, -0.13522071418307796, -0.7312221148387571, 1.4926709765013664]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.19393107610183968, -0.9798932787102738, 0.046903092226547816, -0.3685729916994763], [-0.7235439447386022, 0.11058308739414002, -0.6813630022348456, 0.8492217688051966], [0.6624763375050349, -0.16607390860941856, -0.7304413454378835, 1.1900698150534195]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.1400690422984986, -0.9896198548703599, -0.032143525568128606, -0.19983888747044604], [-0.7376046625392669, 0.1259463855907339, -0.663382898300042, 0.42793067336283236], [0.6605452484046156, -0.06921019291258712, -0.747589408704462, 1.663280593014122]], [[-0.07911989914844952, -0.9964432417743783, -0.028998404799358002, -0.20970235501114123], [-0.7213324896394584, 0.07730518379667306, -0.6882611044863013, 0.4166448011449122], [0.6880548531543688, -0.03353765764526295, -0.72488326271917, 1.6772796849971716]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.04831260380631097, -0.9981075216423038, -0.0380429698434821, -0.04604224996875155], [-0.6997702143769041, 0.06100058161292454, -0.7117587906824798, 0.42233864352550393], [0.7127324458619487, -0.007765583296994005, -0.7013930113222555, 1.7128505398286498]], [[-0.0786118374329895, -0.9968849333742947, 0.006372489838119444, -0.043984866894986575], [-0.698175244830124, 0.05049124567956775, -0.7141442162589581, 0.41251085475561344], [0.7115978544949424, -0.06058930368516524, -0.6999695920232117, 1.7002247248475355]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5651775649644927, 0.8249690484995631, 0.000623761599667122, 0.07806282669509713], [0.6882031935622754, -0.4710635126874191, -0.551793014984129, 1.4491699194358467], [-0.4549183272099432, 0.31229030729805796, -0.8339808628117263, 0.7395209028596607]], [[0.4992932244695665, 0.8659195864835211, -0.02982525344387449, -0.0013389174289714677], [0.7528290729223012, -0.45061034288836344, -0.47979027277028063, 1.5384216384964482], [-0.4288993622771337, 0.21710271446078147, -0.8768761305977193, 0.7825485855715053]], [[0.4620134042533991, 0.886455552765774, -0.027206015160454317, -0.028887195141546574], [0.7785893372273212, -0.42010149883112924, -0.46616882632342477, 1.6083220867611354], [-0.4246672323668329, 0.19419393309412253, -0.8842773649163083, 0.7765246066218066]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5096746897415523, 0.8585807807539265, -0.055414380415471365, 0.029207791111788724], [0.7173962458115957, -0.4596523476125051, -0.5235096425375003, 1.6292845771078575], [-0.4749466676715198, 0.22706554616297658, -0.8502157964972352, 0.7289422005416137]], [[0.566747977189742, 0.8238667379196715, -0.006350472496965576, 0.11720331326490467], [0.7043208575690821, -0.4884812924704448, -0.5150904352631258, 1.6317424205051805], [-0.4274679636469709, 0.2874536920201287, -0.8571123117768809, 0.8185966154762132]], [[0.5314203710261798, 0.8470320036786679, -0.01136547414311756, 0.06822946078068695], [0.7360681775750865, -0.4683602270279061, -0.48871498411616066, 1.6147530549725795], [-0.4192803682736503, 0.25134733434526246, -0.872369468916607, 0.8429566437083545]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.3671510509581849, 0.9026449273135979, 0.22457123808566848, -0.036562905023184926], [-0.7484640549515067, 0.14334532919715504, 0.6474980116130917, -0.03783197850027506], [0.5522695575765955, -0.4058130749401612, 0.728226670743226, -1.9526598219469462]], [[-0.3445271708998152, -0.9187972805510211, -0.1926462710872396, -0.03912994459232516], [-0.7250709811951718, 0.3907819681867727, -0.5670639519214249, 0.7641620722639482], [0.5962995059032339, -0.05568671827394167, -0.8008282516666342, 1.310643829592202]], [[-0.2928318836260996, -0.9357708811683048, -0.19642389337726904, -0.040262803057992846], [-0.752856979656807, 0.3522926388745238, -0.5559642657373349, 0.7895618239679565], [0.5894538625830017, -0.014924964064223556, -0.8076641562763952, 1.2783741716204482]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"dbabe8c7-ceea-4042-b5a2-575d2223dfd7\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.8712407101327518, 0.49081775514824516, -0.006128314500462001, 0.2940169721959076], [0.32841834226442385, -0.5921566938403989, -0.7358612929107606, 1.2774336117577563], [-0.3648027103403524, 0.6390996645056588, -0.6771045719511039, 0.8915364737645473]], [[0.8692039466483216, 0.49406800391160777, -0.019527074583296777, 0.3049726737597682], [0.32817060287457145, -0.6059835414067867, -0.7246295625718217, 1.2770985659392662], [-0.369849367364502, 0.623442663807097, -0.6888618804994139, 0.9121006752318128]], [[0.86802091693965, 0.49630691169823254, -0.01480328192705721, 0.2973319268002485], [0.3212910938607873, -0.5841564497755282, -0.745341046227423, 1.2793046237142036], [-0.3785653454305979, 0.642215455736012, -0.6665190077205589, 0.8707755356492569]], [[0.8741327998695623, 0.4856519249828265, -0.00583574782480728, 0.303891813777195], [0.3171046087210472, -0.5797803832691255, -0.7505327270040778, 1.2700271850653282], [-0.3678811157426693, 0.6542147315192322, -0.6608075133827912, 0.8630372797840524]], [[0.8760440325466368, 0.4818082183226002, -0.020191428781253462, 0.323824617286523], [0.3135524467438668, -0.600926283326112, -0.7352363328541375, 1.2725328541594376], [-0.36637646783105676, 0.6377683300107234, -0.6775100302246244, 0.8935999065168547]], [[0.8764855216491184, 0.4814249509951351, -0.0017739500568589306, 0.3019834074806539], [0.3143776834766438, -0.5751410183408066, -0.7552347192454536, 1.273605357451685], [-0.3646091091447547, 0.6613946065558984, -0.6554520363439544, 0.8459360388508604]], [[0.8733171825807774, 0.48652020652309597, -0.024802968650893875, 0.31286047907543174], [0.31379165007598747, -0.6007494303686451, -0.735278805797051, 1.2809856469127643], [-0.3726283657369125, 0.634348650630292, -0.6773107783667446, 0.8862651721588871]], [[0.8777999364833976, 0.4784627575929967, -0.02325212046777711, 0.3195304323908243], [0.3092490719915908, -0.603089398917783, -0.7352878268986417, 1.2701197859837643], [-0.3658309486389618, 0.6382449110721465, -0.6773559998320122, 0.8866690819249085]], [[0.9040066510127996, 0.426364947430072, -0.03138322047805153, 0.30889585397047753], [0.2724149567351968, -0.6310547147775394, -0.7263332832137044, 1.2261501939819144], [-0.32948758136170014, 0.6480608602284128, -0.6866258480194485, 0.881696261753188]], [[0.9370524787107439, 0.34891646856893327, -0.013782238694616866, 0.32809899978228196], [0.23817734977166588, -0.6675170091473457, -0.7054733110151846, 1.1910391290539875], [-0.2553511351018365, 0.65778289766485, -0.7086024677785399, 0.9737257026611661]], [[0.9663633413327051, 0.2571706122477268, -0.0022734828829549247, 0.3202639865288567], [0.19001436205533873, -0.7199134040943045, -0.667547176473733, 1.1324023113357695], [-0.17331022687940945, 0.6446611255547211, -0.7445640324764067, 1.07889873808833]], [[0.9609266676064515, 0.27648248080432486, 0.013318306613317024, 0.2941530934441879], [0.21963070320417505, -0.7322847060686004, -0.6446095434199397, 1.1312016287450006], [-0.1684704534712237, 0.6223476095128104, -0.7643959440243587, 1.1268378255837947]], [[0.899415361433466, 0.4299410146595042, 0.07875742206969268, 0.19032068236375455], [0.363949681960658, -0.6368620236145962, -0.6796671184324401, 1.2128879892955637], [-0.24205915933557143, 0.6399667856936615, -0.7292803826997398, 1.0404353153787436]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.17420163522859866, -0.984699882174606, -0.00446456369643472, -0.20173749732433088], [-0.7275779288860842, 0.13176709189697366, -0.6732516549484677, 0.4299311719675295], [0.6635391078764827, -0.11403322120475129, -0.7393999437247407, 1.6487544078399554]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.06389774099121659, -0.9976086774209609, -0.02634398281619943, -0.051771364381007205], [-0.6855617421687308, 0.0630633614238586, -0.7252779536980964, 0.4217426695112526], [0.7252049202610209, -0.028283196076903716, -0.6879519492296547, 1.696697552836282]], [[-0.08071735763215504, -0.9959385826084148, 0.03988794114547278, -0.05302275097065542], [-0.639246141310646, 0.021021183545592126, -0.7687148240158976, 0.4027997123403012], [0.7647542605283953, -0.08754684182930011, -0.6383466703049236, 1.671332575761945]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5630354326308463, 0.8260035357943437, -0.02663194430451063, 0.19090937151024892], [0.6538657241419475, -0.4649448566651587, -0.5968968881246925, 1.2640749960911382], [-0.5054213256230119, 0.31866038209331515, -0.8018758285979319, 0.7698523777473604]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5501894448595661, 0.8335100542508953, -0.05052290795067743, 0.06528455311770294], [0.6966033238194003, -0.49149978979196246, -0.522658364400897, 1.455177697188851], [-0.4604730003039124, 0.25236668975347465, -0.8510438707222951, 0.7642829278160739]], [[0.4989231182301813, 0.8661677793859236, -0.02879409747032921, -0.0027863161000543472], [0.7549462562259671, -0.4506942738390578, -0.4763725661066986, 1.5370751291073355], [-0.42559590259525415, 0.21593529003463657, -0.8787719147832322, 0.7936326254639058]], [[0.4630812042799779, 0.8858149390810519, -0.029794159552462618, -0.023285788318675355], [0.7790781394042603, -0.42284998242853467, -0.46285542565965876, 1.608101610417217], [-0.42260271052727677, 0.19112766953275037, -0.8859329336885375, 0.7853152453776042]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.4921122447136611, 0.8684892560776397, -0.059598243938811246, -0.00796048593778678], [0.7141857299419153, -0.4419281187754712, -0.5428059330763682, 1.6286447493861462], [-0.49775926083822447, 0.2245572308194085, -0.8377408718312025, 0.6663501247383595]], [[0.520044327520508, 0.8524937142812213, -0.05299400461136977, 0.03713082717728282], [0.7063340157038119, -0.4641095882822133, -0.5345040208681704, 1.6368553917392143], [-0.4802563437097625, 0.24053431600402014, -0.8435028673045567, 0.6977733780132078]], [[0.5483985093053299, 0.8362046744076358, 0.004562618821752518, 0.10010405048424202], [0.7350531176937282, -0.47944564980645427, -0.47940461308835697, 1.608658696217692], [-0.39869285065125376, 0.2662585423615305, -0.8775821326001858, 0.8866669624832014]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.31259765583055477, -0.9257087616086925, -0.2129459890445062, -0.004802772973181039], [-0.686287173053149, 0.3750949426733322, -0.6231482167860283, 0.7647479551224213], [0.6567287276128243, -0.04865257096794179, -0.7525558488685409, 1.3487627612780004]], [[-0.34090997136143875, -0.9195677812750238, -0.19538548325623714, -0.036515840038060514], [-0.724295381080748, 0.3894139101385131, -0.5689929767015833, 0.7647073537063384], [0.5993134341656604, -0.05245857633947426, -0.7987937815212374, 1.3124514873811464]], [[-0.298136875060817, -0.9346691133535293, -0.19366995707103865, -0.050644844432781416], [-0.7309551994421443, 0.35404215265034245, -0.5834026487385933, 0.7964273196292068], [0.6138557649297315, -0.03236978050031497, -0.7887542691947192, 1.2830553825053812]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"b34643f2-eb18-492c-a446-f18c02c4198f\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.8712407101327518, 0.49081775514824516, -0.006128314500462001, 0.2940169721959076], [0.32841834226442385, -0.5921566938403989, -0.7358612929107606, 1.2774336117577563], [-0.3648027103403524, 0.6390996645056588, -0.6771045719511039, 0.8915364737645473]], [[0.8673349306597071, 0.4974327660470757, -0.017051724847550992, 0.29795673614011103], [0.3297696769367449, -0.5999796597607846, -0.7288870749617996, 1.2770740263466325], [-0.37280300190657834, 0.626566078826558, -0.6844215591529502, 0.9029825140603667]], [[0.86802091693965, 0.49630691169823254, -0.01480328192705721, 0.2973319268002485], [0.3212910938607873, -0.5841564497755282, -0.745341046227423, 1.2793046237142034], [-0.3785653454305979, 0.642215455736012, -0.6665190077205589, 0.8707755356492569]], [[0.8756787833085689, 0.48279664497181235, -0.00969886937672626, 0.31167866416194845], [0.3154210869201373, -0.5870765400531349, -0.7455539377170233, 1.270485877578491], [-0.3656449184514181, 0.6498065371502519, -0.666374712821138, 0.8748478486084628]], [[0.8801273832788759, 0.4746984918857639, -0.006093521482746889, 0.3229591782461002], [0.31064436649294375, -0.585569719676704, -0.7487377250839871, 1.2679284964956377], [-0.3589928505818424, 0.6570916566196285, -0.662838357393411, 0.8694384704585963]], [[0.8733744536540593, 0.48702368188883227, -0.004999698382734258, 0.2951477697842174], [0.31625867236223826, -0.5748903554245068, -0.7546400011896789, 1.2732181021061635], [-0.37040183026025564, 0.6575021007717995, -0.656120013122998, 0.8430492398502973]], [[0.8761497662642004, 0.48147367558211523, -0.0233385260167511, 0.32009615353787435], [0.3133526975365097, -0.6056699519149709, -0.7314191659328525, 1.2800776513212127], [-0.36629451814322744, 0.6335195411893503, -0.6815286618400256, 0.9001725959915898]], [[0.8633384460611551, 0.504589808127311, -0.00598774471338831, 0.26243062114216836], [0.32264115764466283, -0.56107545599566, -0.7622971966844518, 1.2675166021599051], [-0.38800697280644464, 0.6561885843363213, -0.6471994521322414, 0.8171964652612707]], [[0.9123849873902432, 0.4080643802874993, -0.032203979963430523, 0.33751405899372305], [0.2626542997592502, -0.6439718743121372, -0.7185491938015732, 1.2215867674705838], [-0.3139527888120821, 0.6471349833191621, -0.694730134485056, 0.9087415145039763]], [[0.938109275097216, 0.34600042650025487, -0.015319687928211714, 0.3300520885436841], [0.23670079311519343, -0.6728007234686273, -0.7009364600580638, 1.18741058343888], [-0.2528314112510834, 0.6539288121513939, -0.7130591743488419, 0.9784172942164316]], [[0.967282900624725, 0.2536484249271948, -0.005125103996186889, 0.323952744147737], [0.19169381567187058, -0.7439547729398349, -0.6401443406398264, 1.129856668452376], [-0.16618444930912585, 0.618218223891849, -0.7682375651163061, 1.1095525016178915]], [[0.9600146190217238, 0.27990523860843297, 0.004998866284547085, 0.30310377437258246], [0.2126512933866091, -0.7175020765362495, -0.6633024932767644, 1.1311059772277254], [-0.18207514571071165, 0.6378431057601281, -0.748334693669014, 1.0613519329049035]], [[0.9004966336371985, 0.4304875101751849, 0.06153305121025099, 0.20188733889053906], [0.35779784963096345, -0.6530361642626126, -0.6674761920582881, 1.206272813073027], [-0.24715685628266876, 0.6230764573857244, -0.7420843729954998, 1.054079054278489]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.17420163522859866, -0.984699882174606, -0.00446456369643472, -0.20173749732433088], [-0.7275779288860842, 0.13176709189697366, -0.6732516549484677, 0.4299311719675295], [0.6635391078764827, -0.11403322120475129, -0.7393999437247407, 1.6487544078399554]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.06389774099121659, -0.9976086774209609, -0.02634398281619943, -0.051771364381007205], [-0.6855617421687308, 0.0630633614238586, -0.7252779536980964, 0.4217426695112526], [0.7252049202610209, -0.028283196076903716, -0.6879519492296547, 1.696697552836282]], [[-0.08512243195893787, -0.995780228211603, 0.03429152490403853, -0.05119653561817664], [-0.6883293200076973, 0.03388740545397928, -0.7246063696720717, 0.4095022244376547], [0.7203866453475782, -0.08528411841864786, -0.6883093057270232, 1.7040545207817175]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5630354326308463, 0.8260035357943434, -0.0266319443045111, 0.19090937151024934], [0.6538657241419477, -0.46494485666515944, -0.5968968881246918, 1.2640749960911384], [-0.5054213256230115, 0.3186603820933146, -0.8018758285979324, 0.7698523777473611]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5709292562876471, 0.8206221821012581, -0.024880083565048117, 0.10795642282164165], [0.6974907503551252, -0.5008030029102402, -0.5125456130386159, 1.4594343488691348], [-0.43306631996020983, 0.27527365751094945, -0.8582994675500304, 0.8103797216301728]], [[0.49716732975300426, 0.867138822244684, -0.029915032715518625, -0.006423298575303913], [0.7548686226926878, -0.44928242014128456, -0.47782702877300154, 1.5386467211470451], [-0.42778266526393105, 0.21497806843511472, -0.8779444295578136, 0.7891623408881343]], [[0.4630812042799779, 0.8858149390810519, -0.029794159552462618, -0.023285788318675355], [0.7790781394042603, -0.42284998242853467, -0.46285542565965876, 1.608101610417217], [-0.42260271052727677, 0.19112766953275037, -0.8859329336885375, 0.7853152453776042]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.4896523159602424, 0.8699262894055554, -0.05889703282723549, -0.014139905852739741], [0.7128870184402795, -0.4383222347137272, -0.5474173156695838, 1.6273210849836086], [-0.5020285932236324, 0.22605722628716374, -0.8347846560815877, 0.6543209095710666]], [[0.520044327520508, 0.8524937142812213, -0.05299400461136977, 0.03713082717728282], [0.7063340157038119, -0.4641095882822133, -0.5345040208681704, 1.6368553917392143], [-0.4802563437097625, 0.24053431600402014, -0.8435028673045567, 0.6977733780132078]], [[0.5274966378348143, 0.8494650133526988, -0.012509522879270818, 0.0597980813961183], [0.7342716924046623, -0.4632718151347297, -0.4962099424991061, 1.6118760778608572], [-0.4273082948014942, 0.25256368779274774, -0.8681124378802362, 0.8243168651219374]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.31062453068156426, -0.9265814126914805, -0.2120360502214624, -0.006882555552358382], [-0.6872336538865912, 0.3730304741243068, -0.6233443433129722, 0.7651682993961093], [0.6566751905657342, -0.04790773454522351, -0.7526503458221495, 1.3469128516585922]], [[-0.34635154598533013, -0.9187166221028036, -0.18973764746508917, -0.03932243330775243], [-0.7269677154579326, 0.3906868551045428, -0.5646961323848403, 0.7635853390730394], [0.5929237280421881, -0.057650234349367724, -0.8031923201849085, 1.3083064562221485]], [[-0.298992234993367, -0.934805639699626, -0.19168218331249193, -0.052486806325220695], [-0.7302141834100107, 0.35344584718792493, -0.5846907554019141, 0.7969484355488314], [0.6143214873016589, -0.03484894677579903, -0.7882859006401771, 1.2844455024738044]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"cdac7d6f-1cb5-4f6a-9a6d-0213e055827c\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"75a9383b-09d7-49bd-81c8-2a9880da6db3\": {\"good_poses\": [false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, false, false, false, false, false, false, false, true, false, false, true, false, true, true, true, false, true, true, false, false, true, true, false, false, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, false, true, true, true, false, false, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, false, true, true, true, true, false, true, true, true, false, true, true, true, true, true, true, true, false, true, false, true, false, false, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6321988285362764, 0.7069055281921662, -0.3171895575341558, 0.7713305923698626], [0.7723561688683104, 0.5424416075016358, -0.33048910853779595, -0.9054149198757078], [-0.06156776436110881, -0.4539181387237082, -0.8889137943181996, 1.8259784094820988]], [[-0.956193927825573, 0.25849422193539284, -0.1373823482675954, 2.051488962325676], [0.29238942077661634, 0.8205955870859509, -0.4910512285627425, -0.03046084770945457], [-0.014198556525850857, -0.5097093482378755, -0.8602294933978388, 1.6216560448818906]], [[-0.9948855449739199, -0.018817542175248086, -0.09924037740974771, 2.3350598478040823], [0.036280191076744815, 0.8503590516119811, -0.5249506939484951, 0.6559363176963623], [0.09426823503906971, -0.52586631708834, -0.8453272244607789, 1.2577435068259488]], [[-0.9935520852667793, -0.09974865135395751, -0.053893046073692746, 2.427482032093865], [-0.06180832198271498, 0.8750356843270926, -0.4800961179679514, 0.945153028542026], [0.09504727873913893, -0.4736694603911916, -0.8755588256062535, 1.1992089577972214]], [[-0.9987808761096595, -0.04831774884174313, -0.010107258010323226, 2.4583470383385198], [-0.03925212169364094, 0.9015287855212386, -0.4309351689281685, 0.9446947381419599], [0.029933801298341892, -0.4300130742471301, -0.9023262843984784, 1.312678359400998]], [[-0.9948619288220124, -0.09828544927992876, -0.024284007914419363, 2.4913747576197656], [-0.07902808437237026, 0.9038357188914146, -0.4205181983416104, 1.1826402187263094], [0.0632795738052854, -0.41643842728053204, -0.9069590574128131, 1.1372226005915822]], [[-0.9913058232607387, -0.12414251178558831, -0.043605063202730256, 2.5562367661267853], [-0.09837547820590233, 0.9193535986351344, -0.3809346741429399, 1.3468842162414563], [0.08737865904847172, -0.37333309181506114, -0.923573154925314, 1.0673138786035514]], [[-0.9902530732477779, -0.1362725990164929, -0.028785928517613354, 2.607473926902679], [-0.12041613185913415, 0.9415118152093396, -0.3147307690857348, 1.461483607788204], [0.0699914717048772, -0.3081968211687211, -0.9487443877620994, 1.0941733033536747]], [[-0.9977394393738742, -0.06715318608010432, 0.0025417940903263393, 2.779794479841292], [-0.06562798353238439, 0.9655470414851486, -0.25181715282472256, 1.4106504095244912], [0.014456102357821628, -0.2514147177047666, -0.9677714920507073, 1.200313400656799]], [[-0.9985521704431253, 0.05340656410257702, -0.006426648744111628, 2.9164753843038036], [0.053588397762091955, 0.9772693101457882, -0.20511698874658546, 1.1094497726570332], [-0.0046740270233148196, -0.20516440811683778, -0.9787163629537682, 1.2309659486165387]], [[-0.9614982391959536, 0.2684898330365484, 0.058603289831606245, 3.082529593273053], [0.2608684245031885, 0.9587840830258666, -0.11260882395919146, 0.5662296416464496], [-0.08642222584674107, -0.09298543806561484, -0.9919097273378462, 1.5778527334504282]], [[-0.8954312578960161, 0.4373844439684379, 0.08305245665951112, 3.040330499091017], [0.4270534674033286, 0.8965730912591032, -0.11739688244962013, 0.011067878401068869], [-0.12581016795773572, -0.06965299853212512, -0.9896061142868567, 1.6101716617304112]], [[-0.8217686443878632, 0.5529240052701134, 0.13773648571452787, 2.963904657678598], [0.5593624577697278, 0.8288636863504036, 0.009931278237428759, -0.4752960292562313], [-0.10867352915380224, 0.08520583222805385, -0.9904191184622708, 1.660835856404021]], [[-0.7102813333498361, 0.6612523177293042, 0.24134166609270358, 2.748258797396714], [0.6933296225808143, 0.7164367198470196, 0.07754006001280118, -1.0522225772004026], [-0.12163248721753707, 0.22240458347899783, -0.9673374485156712, 1.7640174708955911]], [[-0.6108562370880342, 0.6969875141394452, 0.37558362949463747, 2.532102324656935], [0.7803505736166344, 0.6101921638107359, 0.13681558931701426, -1.4985365980173517], [-0.13381943007963365, 0.3766615567823309, -0.9166342955483795, 1.9163845641828516]], [[-0.5853503749140504, 0.6836703498808497, 0.43584376935064284, 2.331194577602409], [0.8034409389947946, 0.5612810980703639, 0.1986106404402572, -1.6074159358223599], [-0.10884666340840488, 0.4664315401457355, -0.877834849058827, 1.886859709465109]], [[-0.6082562033352575, 0.716938784700953, 0.34062174049185123, 2.517759583691273], [0.7918550516122125, 0.5776593870020308, 0.1981797412569162, -1.5961051283445016], [-0.054680602963004754, 0.39026710289231215, -0.9190765039209975, 1.6312868963477798]], [[-0.6049139120772031, 0.7355619425058969, 0.30500456998609976, 2.5835108913284928], [0.7949423991288812, 0.5801158962141513, 0.17757288370376434, -1.6194184217355496], [-0.046322144193383485, 0.3498773723700972, -0.9356495515206129, 1.5904681118657054]], [[-0.5537722367655107, 0.7905821851730735, 0.26137352252033985, 2.5797860491916063], [0.8318888008513118, 0.5388687225414325, 0.13259533507907006, -1.7938755726110527], [-0.03601850643612273, 0.290861321515138, -0.9560870038027803, 1.5799558237918765]], [[-0.398715170669257, 0.8905931002439343, 0.21879246439510322, 2.1077458487641896], [0.9122723319219789, 0.40955801492166277, -0.004628695611258879, -2.065077584175476], [-0.09373049177199358, 0.19775278054005824, -0.9757604381716116, 1.7744137208975512]], [[-0.15271090929819398, 0.9630565685085162, 0.22181394012532268, 1.3342174105983242], [0.9773735640446761, 0.18041289690062057, -0.11041785606745583, -2.4530359560137303], [-0.14635673707734148, 0.19993307001226077, -0.9688170482746193, 1.990579804661916]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5911026288333334, -0.778618976094307, -0.21059480585279247, -0.6195233773288475], [-0.7884128666745596, -0.6128623568631232, 0.0529611480444033, 2.5288125292670096], [-0.17030218392118654, 0.13473018075409426, -0.9761377692445076, 2.7067765757638855]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.2161878985204353, -0.9478098262409542, -0.23434872693148973, 14028.904198009925], [0.7588996974485385, -0.31413894560726396, 0.5704278850698599, -8832.08244774206], [-0.6142752166137218, -0.05452757223504828, 0.7872056288672719, 15879.189689981016]], [[-0.20877181251862817, -0.9765045732664999, -0.05341487327793469, 1.1143865037917837], [-0.947813297108941, 0.18857556276735823, 0.25707821951781973, 2.9766962937984465], [-0.2409653172578265, 0.10429801300401252, -0.9649132812653425, 3.275311524735934]], [[-0.5736057825118062, -0.8185221159878717, -0.03159037682199661, 1.644694062908441], [-0.6863501480729368, 0.5013167242394814, -0.5268823552160902, 2.3884666636713834], [0.4471016444940417, -0.28054070584593166, -0.849350947402892, 0.3950830542621641]], [[-0.7848705854303737, -0.61473823056502, -0.07794274827057776, 2.147779554607228], [-0.48982899690913845, 0.6925379713332597, -0.5295835269800221, 2.0239221021784375], [0.3795335530795263, -0.37747591465337343, -0.8446692938324616, 0.4420862975689722]], [[-0.8733088103371981, -0.48011946268843475, -0.08256526712363133, 2.4374225978586144], [-0.3789360581503697, 0.7759769997390418, -0.5042491048177034, 1.8606052240967543], [0.3061685575314479, -0.40907822897798446, -0.8596021271235595, 0.5390327982574288]], [[-0.8905395251539264, -0.45075545921712057, -0.06130962505660836, 2.497372422791527], [-0.3663647354840692, 0.7905563685390041, -0.4907112274608253, 1.9945585505050163], [0.2696594792183415, -0.414536058924172, -0.869162597630218, 0.5681778932274884]], [[-0.8800573766517752, -0.46754252217253495, -0.08308431718044149, 2.5226933616092224], [-0.3815980471912162, 0.8004309973733011, -0.4622695629433459, 2.164687959064199], [0.28263394024894783, -0.3751189256816116, -0.882838517179007, 0.43396479722259784]], [[-0.8591915136901656, -0.5015390362994965, -0.101235062456514, 2.4742590094920756], [-0.4209705375257711, 0.805395947670039, -0.41727829324318194, 2.449170929737347], [0.29081566212648385, -0.31590498974288456, -0.9031225210997026, 0.34946527699866875]], [[-0.8133511486641772, -0.5703972728702166, -0.1144851958503056, 2.307219960186111], [-0.5032635384098384, 0.78855729573643, -0.3534164713875923, 2.806682497253471], [0.29186592790847027, -0.22983546820077033, -0.9284341321187304, 0.35507645312715524]], [[-0.790015528185368, -0.5988268312430423, -0.1314606078238299, 2.293286141874097], [-0.5521454910278722, 0.7881381663387785, -0.27198085869733224, 3.074417348453204], [0.26647855816853966, -0.1422837198823718, -0.9532809245405317, 0.42419690845871477]], [[-0.7447186553545163, -0.6441346050777168, -0.17459878266567658, 2.1226064763290213], [-0.6319446404515268, 0.764731309395502, -0.12582525912880738, 3.3459377361786085], [0.21456955928451926, 0.016632347146896306, -0.9765670838487408, 0.6731409428369697]], [[-0.7482330598128656, -0.6332989669660549, -0.1976858787136942, 2.261492117129334], [-0.6534209216165052, 0.7550411226977738, 0.05435073347363572, 3.3812812756853776], [0.11484070444278277, 0.16983910466972266, -0.978757524174437, 1.1790448474937691]], [[-0.7874949941626476, -0.5710132441146796, -0.23193858931708802, 2.458013904727111], [-0.6101814505864953, 0.7753217920883076, 0.16295617838282594, 3.1711924171564094], [0.08677690665685081, 0.2698517996208371, -0.9589837197327511, 1.3758416623177006]], [[-0.8053391239397041, -0.5339782571006453, -0.2574803223467522, 2.662895895661285], [-0.5857054165107929, 0.7837734038153851, 0.20651493055361403, 3.0895623256724165], [0.09153174597891692, 0.317122172695954, -0.9439573438787628, 1.365615068761285]], [[-0.8113031387409704, -0.5213873967386765, -0.26446625416320374, 2.646697936389154], [-0.5798054755374263, 0.7755500285854737, 0.24969534176249644, 3.034136872018136], [0.07491880675684372, 0.35591759675961077, -0.9315094399473332, 1.4809655830517061]], [[-0.8070652981257548, -0.5227910715151467, -0.2744724031760403, 2.6297000964415016], [-0.5861230576492824, 0.765569462434055, 0.2652605501771566, 2.990845255238427], [0.07145184289465133, 0.3749571891996161, -0.9242844477835169, 1.461660072140636]], [[-0.8080695029229485, -0.5302466390813143, -0.25663627995439237, 2.6269750929821636], [-0.5874935583287377, 0.7574112558819213, 0.28492017897230243, 2.9676412891486477], [0.04330123979861071, 0.3810074687015221, -0.9235574218344855, 1.5989768613043653]], [[-0.8090917061924677, -0.5355736242638588, -0.2419328501122499, 2.6597402276583195], [-0.5871174941548308, 0.7546882044818914, 0.2928118202416884, 2.981737764723667], [0.025761580462261846, 0.37895462394431034, -0.9250566112208013, 1.6493000010405139]], [[-0.7914568413177634, -0.566179336864317, -0.23029769177998938, 2.5156945543852802], [-0.6106446975114247, 0.7488476543831505, 0.25756599916532885, 3.0963690999881415], [0.02662933969307764, 0.3444824364648158, -0.9384150090630344, 1.6344408789134621]], [[-0.7819240198413665, -0.5963734355432938, -0.18147603856544378, 2.3835940793657233], [-0.6230368863029377, 0.7380829157710437, 0.2589568453485149, 3.125925630285289], [-0.020490619830986156, 0.3155508434867558, -0.9486874088306108, 1.7657631827698193]], [[-0.7041367124047757, -0.6906559408544327, -0.16488135615124003, 1.9596679031682958], [-0.7063559748494884, 0.6576121788000115, 0.26193025615291293, 3.3475833650924516], [-0.07247569963941505, 0.3008996405055678, -0.950897828005405, 1.9539612729172688]], [[-0.6065326243904954, -0.7759625234056797, -0.1732060559561034, 1.491349349493089], [-0.7871932507027, 0.5555408520514431, 0.2677706999469374, 3.556826586807951], [-0.11155698811860702, 0.2987583036031745, -0.9477861121740807, 2.0790108192969314]], [[-0.5655915298356774, -0.8138136641496748, -0.13346737961546426, 1.2102788750155578], [-0.8130530422683776, 0.5231758594156081, 0.25540511072191935, 3.6555460306156324], [-0.13802525796488888, 0.2529710263410026, -0.9575775101764379, 2.144377103176536]], [[-0.49855963128690556, -0.8549237896880015, -0.14333041504359975, 0.9203734876351355], [-0.8536600765367461, 0.45547283648169773, 0.2526043723980117, 3.7000666596419074], [-0.15067437664825997, 0.2482937958403758, -0.9568946771556609, 2.181574736886257]], [[-0.4230662513160252, -0.8886249432342159, -0.1770894047067536, 0.6368600724463358], [-0.891190257697974, 0.372773349773787, 0.2584955595027668, 3.72791770517829], [-0.16369139128746063, 0.26718109955686664, -0.9496417158370621, 2.2667172126238673]], [[-0.3681179659311183, -0.9122121116745493, -0.17988392499885905, 0.41328128109134055], [-0.9170332822844077, 0.3242870924959023, 0.23213754720690843, 3.7718225003918464], [-0.1534246471119334, 0.2504135478659521, -0.9559047717758106, 2.2145496936714966]], [[-0.31151710903166197, -0.9307391775545297, -0.19152460454383882, 0.1866726084442004], [-0.9348736281179506, 0.26408860240196474, 0.2372098428205648, 3.7276609613550065], [-0.1702010288750803, 0.2529462263930715, -0.9523916297003926, 2.2909280045465086]], [[-0.30097277509995596, -0.9285936976992598, -0.21709245321255966, 0.17727142096450982], [-0.9489582215238527, 0.26912124587326386, 0.1644750705180243, 3.831721455586462], [-0.09430632243343134, 0.2555141867154115, -0.9621947920957815, 2.0444246397687538]], [[-0.39949173749018174, -0.8923693031852391, -0.2099604210554143, 0.568081120452468], [-0.9165752939967546, 0.38450559699279196, 0.10975051852260077, 3.9234459925034577], [-0.017207036695461864, 0.23628895999159089, -0.9715304654380396, 1.782947800812048]], [[-0.5802557244948626, -0.795576811354469, -0.17424359794838207, 1.3159269369362971], [-0.814069485574958, 0.5729697005416577, 0.09485038174370333, 3.8308569257634013], [0.024375537874375852, 0.1968838731238761, -0.9801237542561021, 1.586493136833223]], [[-0.6972186757858184, -0.6889946782970092, -0.1979203158189437, 1.8898911407538725], [-0.7146889602330274, 0.6895541542803293, 0.11719538572731528, 3.6080232267101744], [0.05572977890234189, 0.22316227636664024, -0.9731869245681197, 1.4993843989569093]], [[-0.7813974278002206, -0.5912959692857694, -0.19946713146180733, 2.3456503696103974], [-0.6203263827384143, 0.7707958029253684, 0.1451516760885347, 3.32219480211543], [0.06792082674609966, 0.23715587047138248, -0.9690943475199345, 1.4571847333653143]], [[-0.8358393211933245, -0.5163123716953734, -0.1865319382341299, 2.64699608332691], [-0.5459569465929023, 0.8173647325328594, 0.1839725699076961, 3.034871041327625], [0.05747731390763998, 0.2556099153902015, -0.965069909146574, 1.5286955195360468]], [[-0.9383696188794788, -0.32783518649455184, -0.10948309851325908, 3.1774572821700127], [-0.3444695123013943, 0.9130250606168783, 0.2184627972456303, 2.3730191435786114], [0.028341020779449333, 0.24271244134083483, -0.969684204965488, 1.606460055346907]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.600114449224802, 0.767585726213609, 0.22511064111840334, 2.9141572343712494], [0.6970837811927699, 0.6398652216354169, -0.3234914220492547, -1.4242878220048356], [-0.3923478683892682, -0.037210899674491205, -0.919063925478425, 2.5018721777020225]], [[-0.4076903634943017, 0.9061886512072738, 0.11229735498677826, 2.5286070680335984], [0.7822021099140891, 0.41003804380823333, -0.46907212864959763, -2.0174513830027956], [-0.4711140273435209, -0.10339695862577075, -0.8759912340812033, 2.5934511305088743]], [[-0.46964143623785876, 0.8763985240521138, 0.10659525509007209, 2.613109032600945], [0.8827348898373409, 0.4681511729311441, 0.04016955995591105, -2.0447407539989646], [-0.014698150642128406, 0.1129606405898549, -0.9934907438145716, 1.6276771894928483]], [[-0.4710540613953332, 0.8819670124657996, -0.015564708963364149, 2.5990744513801647], [0.8735576558136818, 0.4688677117041759, 0.13061428287363935, -1.9676342081810119], [0.12249527832642057, 0.04792971774840811, -0.9913110757700083, 1.1945679276193828]], [[-0.3607626004385463, 0.932629406335222, -0.007261994466413084, 2.472461472584027], [0.9324961143094849, 0.36054424659444123, -0.021420621964808283, -2.246551526960914], [-0.017359231622704446, -0.01449954090510245, -0.9997441774729232, 1.4299325751764307]], [[-0.3382975654091175, 0.9406139112415672, -0.028288287631192496, 2.497568498284784], [0.9382077446393242, 0.3394574220445784, 0.06734156604684602, -2.227557188119858], [0.0729450830217963, -0.003758802693684317, -0.9973288756800605, 1.2278095575808732]], [[-0.3142647553513795, 0.9454650006976678, 0.0856364174851868, 2.5102388691458617], [0.9448864831118203, 0.32023967184369023, -0.06808881413287708, -2.1886434000467836], [-0.0917997689349695, 0.059518778828239596, -0.9939971415402975, 1.7773034307854123]], [[-0.27368014855218187, 0.9618167536415795, 0.002776455083213638, 2.3977491121015397], [0.9608366473865045, 0.2735295357242295, -0.04443568527151986, -2.184210171985953], [-0.04349842902356278, -0.009493445152353334, -0.9990083889395633, 1.6709921024507142]], [[-0.18908336781537263, 0.9804335204087962, 0.05475027008528603, 2.2162303867996043], [0.9640760004791937, 0.19594368568052986, -0.1793419564462587, -2.206984393696989], [-0.1865608354281218, 0.018872840293521764, -0.9822621190820796, 2.0589236860529114]], [[-0.10020557996047083, 0.9949173456087513, 0.00991550057346166, 1.9500759444917777], [0.9709512052822254, 0.09995839684629718, -0.21739842653734148, -2.1017886695580335], [-0.21728460301130265, -0.012157068180888894, -0.9760325850029117, 2.1351281430255447]], [[0.3406889578278538, 0.9360321214984055, 0.08817540211059462, 0.3378814678579017], [0.9135101913925783, -0.3073889422426398, -0.2664792082111584, -2.610870197786492], [-0.2223289550105108, 0.17133565218641805, -0.9597989008400608, 2.3913148295222713]], [[0.40296428523608635, 0.9070738089962178, 0.12180677262477206, 0.1396563131405742], [0.9050865953541753, -0.3752132158498484, -0.2000832265878433, -2.756063803116631], [-0.13578674358845635, 0.1908720715157353, -0.972177870855398, 2.220043926039773]], [[0.4436641309885784, 0.8961842353029752, -0.003994404657982717, 0.019537742581317765], [0.8812054758495289, -0.43705181760841827, -0.1801738550899754, -2.8686856442843904], [-0.16321473036143352, 0.0764167855879827, -0.9836266703752216, 2.0183430594705962]], [[0.45288135581439865, 0.8880700342688873, 0.07893093049856516, -0.0743132263193096], [0.888058873160667, -0.4414761546933526, -0.12825849928085395, -2.876092692665717], [-0.07905640616874919, 0.1281811962451119, -0.9885947934178356, 1.9403137389595277]], [[0.46943297017582575, 0.8807326028028345, 0.0627914713320756, -0.1067995206944495], [0.8791296123580973, -0.45958508289640077, -0.12614545673233662, -2.8956444581446887], [-0.08224239288228424, 0.11441867827960908, -0.9900225022057543, 1.9178987992131977]], [[0.45019699030921145, 0.8925673605747246, 0.025420006947229297, -0.012830747720130776], [0.8837806940089661, -0.44133918996115906, -0.15540722087939868, -2.879449668983833], [-0.1274925676796809, 0.09242957449375917, -0.9875233764045004, 2.0167760034701074]], [[0.5092229219012375, 0.8606341555108049, -0.0009306871492167079, -0.21439629648759603], [0.8464749802652866, -0.5010399421221303, -0.18010853445390912, -2.880007732922217], [-0.15547386788540615, 0.09092759078770296, -0.9836463031182984, 2.0136732786526577]], [[0.4067243786215341, 0.9127997098396903, 0.037040107336570635, 0.1115577619903297], [0.9094428814177855, -0.4007217317535504, -0.11106637267396222, -2.8980595721819515], [-0.08653857679349163, 0.07885926335575985, -0.9931224956215341, 1.849106415100281]], [[0.3948695641082245, 0.9180744280239979, 0.03489085767633342, 0.11623517414942099], [0.9187347786500795, -0.3944966345650638, -0.01728617411772275, -2.9484481525544894], [-0.0021056684854493905, 0.03888122844314166, -0.999241620547794, 1.557225390376594]], [[0.4831078372384497, 0.8667637788787671, 0.12380375286148415, -0.33511576216500666], [0.8753974172961426, -0.480896597778897, -0.049171374151283705, -2.92971383356308], [0.01691683747131869, 0.13213256172678242, -0.9910876887246092, 1.5827969352101474]], [[0.5011788082082378, 0.8641089574371507, 0.04621159897526832, -0.30734242583547283], [0.862508799173837, -0.49450492778955324, -0.10744043810202267, -2.9476496908780443], [-0.06998838154062467, 0.09370478146140426, -0.9931369695971421, 1.718135394666339]], [[0.3114724893088444, 0.9502510778687357, 0.0027888013658312408, 0.42114479444334607], [0.948041628655743, -0.31054540194889146, -0.06912758974655565, -2.8637578100562813], [-0.06482251722602458, 0.024175242247140256, -0.9976039288829883, 1.6910624884989967]], [[-0.3025706064433851, 0.9069510306653764, -0.2930714180732969, 2.5536682734384706], [0.9425484101828582, 0.23903222197193746, -0.23337971488740145, -1.797773979167867], [-0.14161046069499372, -0.3468478410400872, -0.9271693764289141, 1.2984768357030625]], [[-0.7077842564710348, 0.6506223957589239, -0.27519437572134864, 3.4246223197740293], [0.6443531609599331, 0.43490764514868196, -0.6290185562860378, -0.09007580355626], [-0.289569422164508, -0.6225317970418434, -0.7270513815537153, 1.0326822394973192]], [[-0.8310728102763455, 0.509549604635869, -0.22288379132365613, 3.5305376838203073], [0.4787549795348238, 0.451492303649627, -0.7529597395052162, 0.6327348684089402], [-0.2830400211807296, -0.7324710916893461, -0.6191723881516598, 0.6533198671910185]], [[-0.8830957687044488, 0.43094331301313643, -0.1855524838571572, 3.5800068136655305], [0.3813157783740842, 0.4287581093291155, -0.8190022959964696, 0.9971363575672304], [-0.273386430642168, -0.7940115519649473, -0.5429599569829721, 0.3584758091626999]], [[-0.9505020669546744, 0.2837255108169603, -0.12667144597953575, 3.53742857053141], [0.23765057898316078, 0.40120003836921336, -0.8846246274672158, 1.5259339746055955], [-0.20016998532212557, -0.8709410793642685, -0.4487689976501754, -0.1956030940644472]], [[-0.9891542250226798, 0.1274690538231276, -0.07297643069661774, 3.369731931194345], [0.11584188432924364, 0.3715660286051018, -0.9211510973893928, 1.947604209245615], [-0.09030269627664386, -0.9196142271105145, -0.3823023624581713, -0.7903587985040177]], [[-0.9996551109311861, 0.021305679216729375, -0.01535341076998796, 3.1626747889725526], [0.02200751755863294, 0.36064193355924723, -0.9324446712430468, 2.2831299245470538], [-0.014329283306035206, -0.9324609717257666, -0.3609864372080679, -1.135905327451273]], [[-0.9996475698361623, -0.026403083565497074, -0.0027592207030597143, 3.03008332637675], [-0.007188723202839172, 0.3692864083549384, -0.9292878299337738, 2.39692906558176], [0.025555006933432375, -0.928940485597728, -0.3693460651449928, -1.272192364745236]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.3125538182065716, 0.9483416642786777, -0.054389323563004195, 0.984234632933629], [0.940673027404133, -0.3169713074980949, -0.12109271545923572, -3.0321041754646507], [-0.13207712231433835, -0.01331457908068806, -0.9911500167709566, 1.8356049570725859]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9811960288659458, 0.17039364204617236, -0.09066619925826215, 3.3707489395079357], [0.15301793438888178, 0.40040320565334975, -0.9034726252952445, 1.7930749744844863], [-0.11764295428565998, -0.9003573066581747, -0.4189473184711652, -0.8876372139121644]], [[-0.9985541727518392, 0.03142923172160348, -0.04360925903153845, 3.12585799401865], [0.05242650346981647, 0.3901847165410146, -0.9192428127060541, 2.1723540750206216], [-0.011875428995172615, -0.9202000273697009, -0.3912683015719298, -1.213410265682151]], [[-0.9980860688155913, 0.055103492048609454, -0.028067853503388262, 3.2136750148830213], [0.04633345728080222, 0.3657487960295229, -0.9295595886974445, 2.196876974752018], [-0.04095619577850102, -0.9290809563041332, -0.3676019132979995, -1.137142191358647]], [[-0.9999018582423601, 0.010068348401093281, 0.00974177827448942, 3.1264690838421476], [-0.0053980579483984634, 0.3647869154169757, -0.9310753821850059, 2.3799611984039566], [-0.012928064582946819, -0.9310365914941491, -0.3646967650598185, -1.2016388601933479]], [[-0.9995954830867697, -0.000267512819133427, 0.028439385180047974, 3.105419975655839], [-0.026490969851959895, 0.3726169645487659, -0.9276070430127007, 2.4538407020818944], [-0.01034885060429828, -0.9279851971703835, -0.3724733213584758, -1.179663197883894]], [[-0.9986790215038159, 0.029251082612669066, 0.042244362631800585, 3.2027282669295047], [-0.03054575358305761, 0.3231302334682611, -0.9458614111786092, 2.414593676809789], [-0.04131790103845285, -0.9459023344852966, -0.32180988901685814, -1.199147952270199]], [[-0.9986861596631394, 0.05108095416572339, 0.004085415377853577, 3.3305907235665404], [0.0034542052355109112, 0.14664740888586847, -0.9891827970265413, 2.0456869314109776], [-0.05112751669581954, -0.9878690569040919, -0.1466311817040925, -1.5281228786588048]], [[-0.9956421263945983, 0.08806017901684214, -0.030694641551326732, 3.4862636447865722], [0.029109363782604203, -0.019230561829362225, -0.9993912299154415, 1.6676251421576958], [-0.08859684581639873, -0.9959295107402173, 0.016583381685786214, -1.6853649078659392]], [[-0.9968474717034127, 0.07184817917791263, -0.0336594311795735, 3.442074894966217], [0.027344515577664225, -0.08713461578789439, -0.9958211868600302, 1.5334966034709734], [-0.07448084066615226, -0.993602233230338, 0.08489526779125389, -1.8390340980572637]], [[-0.9994023410452896, 0.021075686896308177, -0.02740029443351711, 3.3222660850133177], [0.025053793784219312, -0.10451657532536707, -0.99420752003758, 1.5156413682417242], [-0.023817391339365, -0.9942998043367532, 0.1039260841448475, -2.0423607769598013]], [[-0.9969583101338924, -0.07787889521304364, -0.0030009224197779585, 3.0119688421545527], [0.011118453177783968, -0.10400988053382221, -0.9945141149075126, 1.5448574197135387], [0.07713953496040266, -0.991522477017912, 0.10455940758419124, -2.368219422666133]], [[-0.9888590716386865, -0.1476741621002853, 0.018710379094340354, 2.7777065330800017], [-0.007583112689981936, -0.0755563912127829, -0.9971126958116783, 1.7058352196975484], [0.14866147059613766, -0.9861458176126288, 0.07359479305843719, -2.5476813393705178]], [[-0.9758767660680965, -0.2079008055591477, 0.06664677408795808, 2.5090372737890054], [-0.04944921043540308, -0.08685271098811409, -0.9949931568515086, 1.8133107214276234], [0.21264833184341955, -0.9742863345248526, 0.07447701203954404, -2.7235818378350487]], [[-0.9621741790741185, -0.24211724379601834, 0.12490031777247651, 2.308856154403318], [-0.098316313114848, -0.11897655524575268, -0.9880174501886884, 1.8790476226933146], [0.2540762714197242, -0.9629246177964678, 0.09067209462109516, -2.868405257431209]], [[-0.9570729834274067, -0.24150037273985853, 0.16027749174438777, 2.276938490445499], [-0.12883803534239946, -0.14087862864786393, -0.9816078507425501, 1.918627542267688], [0.25963833507876594, -0.9601201914118915, 0.10371669586291288, -2.9231818566485606]], [[-0.9631729969270676, -0.2282393459956803, 0.1421428117422592, 2.4259505993768045], [-0.10504024585864948, -0.1672423429072264, -0.9803043126952244, 1.7922344274555908], [0.24751631206949912, -0.9591333586516351, 0.137108991613054, -2.986470060078389]], [[-0.9794383225656963, -0.17582258489974428, 0.09892922181472684, 2.7796197820059882], [-0.060916286822108597, -0.20974036822619346, -0.9758576658182007, 1.5849120833939263], [0.19232726871013844, -0.9618187961230081, 0.19471729541821658, -2.973116677181054]], [[-0.996510211182498, -0.06334793759957452, 0.05435474046385286, 3.215141140792249], [-0.042622826045951065, -0.1737095418379221, -0.9838741229315443, 1.646706670465941], [0.07176833360799864, -0.9827573626670721, 0.17040326409664663, -2.5810009734721646]], [[-0.9969451432053958, -0.06149109973550638, 0.048158343955023976, 3.2757797272690428], [-0.0371998936840345, -0.16833418763165464, -0.9850278012240503, 1.6298880587135243], [0.06867713847466941, -0.9838101676277333, 0.16553248842212887, -2.590177087905781]], [[-0.9882727874896318, -0.1158864265688502, 0.09943456966556619, 3.075673297372437], [-0.09405854581811293, -0.05098395130514621, -0.994260341494066, 2.1000717742143005], [0.12029084531274936, -0.9919531102055265, 0.0394859429104486, -2.5914671080782665]], [[-0.9740444893963138, -0.16642526172909336, 0.1534273930400866, 2.8627682628626627], [-0.15074808517368252, -0.028690508901873413, -0.988155792127648, 2.3011345653168895], [0.16885599631977125, -0.985636589700968, 0.0028575425636557794, -2.6969200374707056]], [[-0.9537840857231995, -0.25526102137043905, 0.15854882147174987, 2.590199461555899], [-0.15760299142865616, -0.02429185116460819, -0.9872037292574088, 2.312709329639438], [0.25584607660446834, -0.9665669748837463, -0.017060719509555677, -2.940782735001292]], [[-0.9536889215388489, -0.28311581821158094, 0.10160154729360343, 2.627283836510718], [-0.10018760062201754, -0.01950829823633482, -0.9947772971783813, 2.1255041099016876], [0.2836192617148391, -0.9588873029602121, -0.009759846618689005, -3.0643750744009446]], [[-0.9698179861377061, -0.24200839873326618, 0.029749095891549143, 2.9290486189694556], [-0.03467376512808479, 0.01611472602379338, -0.9992687554492141, 1.9881737176817023], [0.24135203288070015, -0.9701403251838052, -0.024019693516256546, -2.954836236491803]], [[-0.9746607198677728, -0.21581886625597416, -0.05881069728221934, 3.170604572242471], [0.04285104412128396, 0.07790126471646208, -0.9960397486914321, 1.8440420950401304], [0.21954559700561221, -0.9733209182605507, -0.06667923898701655, -2.8700836334387168]], [[-0.9745338091218111, -0.22195294437509372, -0.03194910580533017, 3.09516179977688], [0.015975228624189694, 0.07339594778627889, -0.9971749229292515, 1.929375594835727], [0.22367084510266083, -0.9722910702725704, -0.06798108354006371, -2.929181339525857]], [[-0.9529205678982544, -0.2904003110492708, -0.08723560407858544, 2.9375050377146437], [0.038255376965293714, 0.17025736791972335, -0.9846567700484731, 2.067954618121582], [0.3007971366381539, -0.9416369194182729, -0.15113237435689675, -3.012282679954235]], [[-0.9563723184764044, -0.28992140534237665, -0.03602175976224048, 2.8620541795056056], [0.023374435927173087, 0.04696958147138419, -0.9986227987390883, 1.8376528673052397], [0.291214052197269, -0.955897189629044, -0.03814365821656285, -3.1894099728121557]], [[-0.9553026192483073, -0.2951023858906832, -0.017649008440981218, 2.8222406186730673], [0.012680017805124455, 0.018743442551735767, -0.9997439174657535, 1.819711344900026], [0.2953576184996508, -0.9552817726738724, -0.014163756255974658, -3.223554832763486]], [[-0.9571217512815124, -0.2896756615861409, -0.0024421933670487894, 2.8223770892476754], [0.005524605265525756, -0.009823682114659449, -0.9999364849861067, 1.7794024960612151], [0.28963327150117024, -0.9570744518345172, 0.011002803514909343, -3.2269319750856584]], [[-0.9666026217622187, -0.25605330495949713, -0.010773886101262092, 2.950538186981697], [0.02240202884526242, -0.04253970757069159, -0.9988435925526156, 1.6466585524158681], [0.25529888504656706, -0.9657261921989682, 0.046855106390456536, -3.1700504435708443]], [[-0.971936984043496, -0.23515645209023686, -0.00631997537701201, 3.012843133899203], [0.020452371700527133, -0.05770752693469339, -0.9981240112465513, 1.6161255762763043], [0.2343505910815191, -0.970242899677918, 0.060897586851440866, -3.122722820414272]], [[-0.9776200517565072, -0.2096249560819125, -0.017787978841355787, 3.112710552826339], [0.03410582309466299, -0.0744870781520025, -0.9966385844524648, 1.5318793442751886], [0.20759534492526516, -0.9749405381745255, 0.07996949286650756, -3.0652225051934856]], [[-0.9848905791366556, -0.1726510292713605, -0.013497007794433594, 3.2259869091256776], [0.034769186647758715, -0.12078627891963356, -0.9920694423701406, 1.4316518077027638], [0.1696515569858305, -0.9775491276228976, 0.12496420405858288, -3.0134962867943442]], [[-0.9847547948745332, -0.17300113112371895, 0.018127399193739874, 3.185114339139909], [0.011301248060984662, -0.16762148407489252, -0.985786650279255, 1.3972376359773435], [0.1735807471002458, -0.9705532683508123, 0.1670211888643961, -3.100851639606197]], [[-0.9873158240562129, -0.1567977117982371, 0.024938747824149787, 3.2531945707722953], [-0.008903819921120534, -0.1021470574762201, -0.99472946102936, 1.643090978090195], [0.15851872305507575, -0.9823341876488805, 0.09945530763715738, -2.9659485184689234]], [[-0.9903163096062289, -0.13516455673893937, 0.03168831850173122, 3.294582069676003], [-0.016869727722287446, -0.1094015396488709, -0.9938544739593584, 1.646350083276658], [0.13780065026870159, -0.9847648682421724, 0.10606193974041911, -2.9057526265570766]], [[-0.9908717718243818, -0.13480712455250313, 0.0004134869964433352, 3.3507834976664803], [0.009921538946386164, -0.07598444151424033, -0.9970596410008302, 1.6144205392835502], [0.13444216178917112, -0.9879541506657356, 0.07662833233079946, -2.8656063993473735]], [[-0.9876670450731837, -0.15603676721105067, -0.012897106447964615, 3.3153501952818125], [0.015545307321985002, -0.015763222972985602, -0.9997549020743879, 1.7559015669752573], [0.15579522295844245, -0.9876254594125387, 0.017994455354383154, -2.8436135058116228]], [[-0.9886726079675532, -0.14996285522808633, 0.006133213389193953, 3.313983291864353], [0.0020180056028333004, -0.05414241866353198, -0.998531184367644, 1.7141807539125677], [0.1500746544491251, -0.9872080533267052, 0.053831752143812084, -2.8828973321278744]], [[-0.9745232762315007, -0.2219633493196969, 0.03219713716783437, 3.0341752312969326], [-0.01523091701973088, -0.07772947700283295, -0.9968581381378215, 1.7156061378799594], [0.22376863777071224, -0.9719518506405799, 0.07236847923365197, -3.142276119850215]], [[-0.9778567129061926, -0.2068383728601771, 0.03184551046614105, 3.1012800703783197], [-0.03658295881333207, 0.019118903379715002, -0.99914771413341, 2.017248358704012], [0.20605323620064014, -0.9781883024480056, -0.026262307688619035, -2.924632601400905]], [[-0.9690035027900954, -0.22337574652993275, -0.10552481908404546, 3.258180065829387], [0.03301125672383286, 0.3062391441530109, -0.951382070210462, 2.3167823074219083], [0.24483151045165427, -0.9253760654191497, -0.289372889261131, -2.481815762929179]], [[-0.9078559766143228, -0.4107180196908071, -0.08431034353456313, 2.5895845682310363], [-0.07054811536371164, 0.3478507775668811, -0.9348918653859091, 2.7335807197695625], [0.4133043541317738, -0.8427992316366799, -0.34477378961913474, -2.7915969906445057]], [[-0.6825386342931523, -0.7253267779481632, 0.0896776331566258, 0.818756259304096], [-0.40502001171689794, 0.27325090120024464, -0.872520908117449, 3.576919824141002], [0.6083582848996817, -0.631850465050545, -0.4802761570277331, -2.7182885348882584]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.713486560244843, -0.7003487160800596, -0.021180279388962303, -3.949558251700975], [-0.5613517976084329, -0.5532695076295482, -0.6154486260031282, 1.98638034362788], [0.4193102522855401, 0.45100391108322957, -0.7878923686112635, 0.6854749682633433]], [[0.9168951429157204, -0.397498822186808, -0.03602753471527781, -3.929640965250317], [-0.33375382578729507, -0.7140814473530558, -0.6153828648236063, 0.9449934854192971], [0.21888736982727913, 0.5762658873352345, -0.7874045633750356, 1.594129418836675]], [[0.9964982621931694, -0.08360945946962998, 0.0008195933074390885, -3.5417933962269452], [-0.06562353525727886, -0.7881324460376341, -0.6119973848988837, -0.03705355091406396], [0.0518147186263708, 0.6098005459081944, -0.7908593611659016, 2.1742758756011846]], [[0.9874795490424001, 0.15749722133623123, 0.00887499264137935, -3.063849601642904], [0.13426437701183652, -0.8096153667794193, -0.5713983154860102, -0.6209831249925437], [-0.08280831654273482, 0.5654357462576917, -0.8206248835889427, 2.462507569502139]], [[0.9359927110377645, 0.35124265111688885, 0.023371883119588516, -2.6380385275049556], [0.2869780699290356, -0.7229183996620511, -0.6285161690918258, -0.8110487512426389], [-0.20386572115974222, 0.5949937709475944, -0.7774452908530476, 2.6764089217362454]], [[0.8971597241036504, 0.4394874254532983, 0.044218008940851816, -2.460938272878452], [0.33770029998264167, -0.617937985415451, -0.710007854584953, -0.5628343684582662], [-0.2847155366991684, 0.6519228858148219, -0.7028041079226693, 2.7684922977666107]], [[0.8860268855756795, 0.4627633484250387, 0.028397911745536575, -2.4564743764052883], [0.32933685524061446, -0.5850850837154726, -0.7410888479756532, -0.2957171124158882], [-0.32633356219868587, 0.665977122856412, -0.6708061404121253, 2.729073676561289]], [[0.8295415639140536, 0.556136394070122, 0.05072578170622763, -2.2754984132918064], [0.41458455631569724, -0.5524426129331792, -0.7231367817225716, -0.42013408978186356], [-0.37413959881779746, 0.620902142536361, -0.688839669291929, 2.7255886502525972]], [[0.8078691054512378, 0.5877544782033812, 0.043499216191637186, -2.198331073942762], [0.457964608271808, -0.5795866917399435, -0.6740531761874554, -0.5150301357281145], [-0.37096620604559827, 0.5644678379764593, -0.7374009315578034, 2.5776830878142944]], [[0.811612096733535, 0.5809113798078306, 0.06186900068335499, -2.2601491149803588], [0.4789666048075834, -0.601040824476643, -0.6397975607889836, -0.45041015616380464], [-0.3344798886553433, 0.5489006249970931, -0.7660491550565862, 2.3661174316609928]], [[0.8275714660442484, 0.561261140968811, 0.010554630631191192, -2.264596919782947], [0.4414305221896412, -0.639037606056731, -0.6298968424469699, -0.20691563825067547], [-0.3467918145930683, 0.5259437894715276, -0.7766070870443922, 2.283748011745959]], [[0.8393832306231628, 0.5371316856303439, -0.08321865440228834, -2.1985617449187775], [0.4136166672082235, -0.730545892369071, -0.5433451497439168, -0.08903433627722758], [-0.3526429423030947, 0.4216541846520477, -0.8353745889175903, 2.2192353063143946]], [[0.842515304935252, 0.5192329646594519, -0.14340533240021558, -2.132482221363817], [0.418034545247146, -0.7981339835599822, -0.43385396536932314, -0.04701664537040629], [-0.33972794988030025, 0.3055802230145635, -0.8894974127969669, 2.19963912988378]], [[0.8020945843530709, 0.5887876884867854, -0.09986658919709679, -2.089829312367274], [0.48174091496194776, -0.7367452979097777, -0.4744808287586109, -0.008788722834209423], [-0.35294471040532527, 0.3324686810727005, -0.8745825332709772, 2.1260206208785406]], [[0.8144383532031, 0.5782993440368402, -0.04753985189693834, -2.142343634197732], [0.5082358244670366, -0.7504928980543258, -0.42244142398483076, -0.007190899505001944], [-0.27997591960762297, 0.31989104185109685, -0.9051426438872971, 1.8705844334221822]], [[0.8783453134825071, 0.4764430560455084, 0.03887833110271975, -2.2800597134922778], [0.46821061577795176, -0.8410615173166587, -0.27091390396550274, 0.08453013435420173], [-0.0963759801825506, 0.2561592052513728, -0.9618181387397703, 1.4980381412978125]], [[0.9120742425855016, 0.3912283052164595, 0.12272322196528382, -2.349708961124325], [0.408925863275483, -0.8898306910170607, -0.20243759450383964, 0.26177083228578363], [0.030003572395374593, 0.23482281516402287, -0.971575025987164, 1.2434876342136834]], [[0.9298834655576833, 0.3262692344549605, 0.1698974017770926, -2.3493211306618944], [0.34996134401468604, -0.9269374530487818, -0.13532928667096245, 0.3866241511233796], [0.11333048212139299, 0.1852979891515582, -0.9761254309967143, 1.1035184616930147]], [[0.9554137124960045, 0.2785414069721808, 0.09797613268832403, -2.3507917929341398], [0.29256004766188576, -0.9378661944718472, -0.1865894417671329, 0.5848477268105811], [0.03991561707749621, 0.20693401332031683, -0.9775403099844371, 1.2289858583614168]], [[0.9904825175941606, 0.13435429928485748, 0.02988820175267038, -2.2194586094694984], [0.1372116592480505, -0.9809391076711002, -0.13759152447670178, 0.9541301038051456], [0.01083249309855571, 0.14038300931772654, -0.9900380133046252, 1.3099976237006898]], [[0.9952187480258087, 0.0769075827959195, -0.060206870757668396, -2.114160392049357], [0.07628750767973519, -0.9970070759131772, -0.01253422319376714, 0.9410870097249834], [-0.0609906529720427, 0.007881261799078535, -0.9981072216763582, 1.6042913923277795]], [[0.9911440665323862, 0.05033287170533494, -0.12288222574294073, -2.0191056910713487], [0.053481344457037776, -0.998316292428942, 0.022457205213461805, 0.9351490515181352], [-0.12154499238023929, -0.028830232340828522, -0.9921671394127414, 1.762271268570636]], [[0.9941844983567928, 0.07963571288677046, -0.07249369945083477, -2.0639803280022777], [0.07838491104544626, -0.9967236754243632, -0.019942932807048334, 0.8953633232389996], [-0.07384435623288742, 0.014144542465729576, -0.9971694655227796, 1.6328429950783596]], [[0.9902486217246041, 0.1233069117899496, -0.06483110887025909, -2.082890302753969], [0.12188723462097328, -0.9922181176702726, -0.02543047391052939, 0.7902257323931441], [-0.0674623540129872, 0.017280407162098103, -0.9975721619608977, 1.62320857885287]], [[0.9349222098190567, 0.32326323312277977, -0.14636032146063038, -2.00632512822624], [0.299797136641261, -0.9402177141714783, -0.16159309026026047, 0.49339128682058914], [-0.18984767169694972, 0.1071985637458215, -0.9759438147158265, 1.777398840196712]], [[0.9056207500391922, 0.38098592540721604, -0.18628145839041008, -1.9316138978547197], [0.3562010274636221, -0.9217262186200506, -0.15343274077667854, 0.3651482058798796], [-0.23015621897378927, 0.07259822690665854, -0.970441967516708, 1.8941566321953]], [[0.922468360680055, 0.35021411894689003, -0.16248752085777388, -1.9924231745763816], [0.3250964149569151, -0.9316387364293003, -0.1623625134277552, 0.43912002455307814], [-0.20824131320756992, 0.09695017109149551, -0.9732606124769031, 1.8258670751853558]], [[0.9526485927787435, 0.27626194383921304, -0.12704328814565258, -2.068351799984412], [0.2645948448887015, -0.9590200015977963, -0.1013420179081036, 0.5203358689818085], [-0.1498339972603141, 0.06292833162846356, -0.9867065411475967, 1.7498395375947877]], [[0.9615182953156444, 0.24700615072905682, -0.12029351302257174, -2.083478407814346], [0.22895909777600784, -0.962411783435677, -0.1460865861390283, 0.6505166825464673], [-0.15185617971914628, 0.11292263106292606, -0.9819308428168108, 1.7069158243422704]], [[0.9692387489785432, 0.21651162877389932, -0.1170425652665794, -2.0730943434916327], [0.20102180465908762, -0.9707730111851172, -0.13111062049347538, 0.7220796084560203], [-0.14200873751326681, 0.1035493860930798, -0.9844343772490041, 1.7005641678465397]], [[0.9657565073638398, 0.22181605052191045, -0.1345808612517356, -2.0616362675879025], [0.20197833049922653, -0.968351020714553, -0.14663237940451193, 0.7227591270241873], [-0.16284692963990097, 0.11442875692737728, -0.9799933352298436, 1.721373753347504]], [[0.9703127394490757, 0.1992640928334303, -0.13706571040964372, -2.0449801720760914], [0.18807672372901038, -0.9779891216282164, -0.09035720208280013, 0.7262747988378904], [-0.152053719632871, 0.06189587453248041, -0.9864322414954149, 1.7706543315421128]], [[0.9625202216061848, 0.23373805753935048, -0.13755487434806601, -2.045484914752356], [0.20762394781850071, -0.9613622553203334, -0.18076202681333112, 0.7505770595790099], [-0.17449102925778576, 0.14542742005252732, -0.9738602292964966, 1.710673591221585]], [[0.9574976546486639, 0.250559824720261, -0.1428916217923925, -2.035309449728252], [0.22500246483316877, -0.9587842769976518, -0.1735125384549746, 0.7155669343815819], [-0.18047751151128694, 0.13398688151547705, -0.9744102746894919, 1.7334585179883013]], [[0.9713289361121356, 0.22082987610826005, -0.08805829710639008, -2.118230721892803], [0.20195791290501525, -0.9618694715323521, -0.1844454422020888, 0.7880539068492225], [-0.1254316518519828, 0.161373125247311, -0.978889991348159, 1.5937750841323817]], [[0.977474061155041, 0.19896579719870883, -0.07040647210415607, -2.1388346459706424], [0.18496827702557878, -0.9682380816500914, -0.16823125077327353, 0.8164218117342655], [-0.10164249240971901, 0.1514187200699886, -0.983229970530347, 1.562778439182912]], [[-0.9664293277788165, -0.22276928501659862, -0.12801640544156215, 2.244211446436352], [-0.24235540322637497, 0.9558265671875684, 0.1663112503272401, -0.6953584595650832], [0.08531244303128448, 0.19175353741619, -0.9777281666968646, -0.25134479897737444]], [[0.9320393790660316, 0.346711254477591, -0.10532759319751586, -2.089071814286036], [0.32146671114977576, -0.9252987965631794, -0.2011996289789778, 0.5056841465030839], [-0.16721767099428483, 0.15366666228335552, -0.9738710424948162, 1.6908558502167117]], [[0.8262294280541159, 0.547334555987844, -0.133303473469216, -2.0001436170120144], [0.5022703326026765, -0.8228984665409206, -0.2656362677643952, 0.0874742977163762], [-0.25508713257348953, 0.15252212162893106, -0.9548128388376667, 1.826646583267627]], [[0.6941216475009367, 0.7113843628657924, -0.11012459643792598, -1.9061484246415494], [0.6460240908713683, -0.6830829883887032, -0.3406618631249775, -0.3402246084013644], [-0.31756576088175426, 0.16531763137666056, -0.9337141255607109, 1.9047905861400964]], [[0.7049172599311572, 0.7092469586399189, -0.007772278377315117, -1.9455445517488574], [0.6857918929537884, -0.6843206695741905, -0.2477795406251106, -0.5306321362798296], [-0.18105561634483722, 0.16933390934351106, -0.9687852656478804, 1.6553839836549786]], [[0.6585426832649531, 0.7469217821377949, 0.09181168600072666, -2.0014159786675045], [0.7407016261011463, -0.6217801096437164, -0.25446138477687613, -0.713316036089842], [-0.13297607081468918, 0.23557874823410577, -0.9627149204053806, 1.4520915995172967]], [[0.6737965965816985, 0.736932917222155, 0.054111199851455474, -1.76171608213995], [0.735487463231917, -0.6759158608128799, 0.046860863524514254, -0.7853750708795629], [0.07110793108788387, 0.008223418755485112, -0.9974347284511267, 1.3692561071724725]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8232206977229495, -0.5263690525420174, 0.21270473282595218, -0.8926492238850393], [-0.30240218973935207, -0.7236456599087897, -0.6203949343249164, 1.6869439261146661], [0.48047955053403224, 0.4463995737242492, -0.754895239154032, 0.4591483482115454]], [[0.8253406193832504, -0.5507892729500945, 0.1242740471666536, -0.9703665172020236], [-0.40542863380740973, -0.7312805779595042, -0.5485037275974256, 1.8316256163802687], [0.39298916637119985, 0.4023181491087868, -0.8268613076039715, 0.5999036783673504]], [[0.8644386859615748, -0.5018175431395188, -0.030412359501409747, -0.916126676302168], [-0.3739638703417947, -0.6014082542496664, -0.7060163846536099, 1.418769003441702], [0.3360011635277639, 0.6216809994826816, -0.7075421916678912, 0.7241766579577861]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8065332020950965, -0.5816488513686515, 0.1057771601989705, 2.0574604309470126], [-0.5033008160066026, 0.5816849712981866, -0.6390077329523606, 2.2893110450629477], [0.3101491294930847, -0.5686186840645987, -0.7618925840348664, 0.5223639572123433]], [[-0.9249649608117128, -0.3796475326127509, 0.017537737928160588, 2.4798397022337335], [-0.2713499362007276, 0.6273937272829735, -0.7298947342527126, 1.9772570987210176], [0.2660996681592212, -0.6798859183326472, -0.6833345481230443, 0.4195042989634963]], [[-0.9686635623415024, -0.2435336993214151, -0.04880819897001776, 2.7249990583043093], [-0.11616857857699057, 0.6179120136569455, -0.7776179040697435, 1.7499210556046765], [0.21953533734520242, -0.7475801499994805, -0.6268398160483126, 0.2729393730919798]], [[-0.9757075387003902, -0.20217714356814848, -0.08437536098797364, 2.844427034706421], [-0.057358689034114965, 0.6074577820440924, -0.7922783752106067, 1.7586173549382766], [0.2114350484558184, -0.768192323349235, -0.6042977532903708, 0.06156423475602058]], [[-0.9829659559922435, -0.16658064128775618, -0.07764547191185656, 2.9016399670450905], [-0.025773864625532925, 0.5432410465686444, -0.8391810729665378, 1.8537461282739256], [0.18197152871402633, -0.8228852017573075, -0.538280881572359, -0.14485754799896858]], [[-0.9895530491621191, -0.13307975951710613, -0.055448539212698315, 2.9809001855562105], [-0.012792765418458966, 0.46414344545695563, -0.8856676618192032, 1.9059065766074668], [0.14360051548271413, -0.8757057951425327, -0.4609970198459893, -0.3995790198731332]], [[-0.9940420408726225, -0.10366141229330636, -0.03368579194777163, 3.057463157419839], [-0.010980327402731908, 0.4027162196443157, -0.9152590228156839, 2.005981393249939], [0.10844285770819681, -0.9094360659423778, -0.4014550891137525, -0.6105597396024984]], [[-0.9986044071657675, -0.05032582722694692, -0.01601715027804724, 3.198846735256754], [-0.0014246665672263924, 0.328837905999686, -0.9443853037309052, 2.0479869108936155], [0.05279401778874466, -0.9430445072697605, -0.3284506796979668, -0.7617734493783185]], [[-0.9988059110124002, -0.0475539015783336, -0.011197257314514021, 3.231665273023851], [-0.00047021079687978307, 0.2385432361311579, -0.9711317641792391, 2.0065317187885765], [0.04885213432897046, -0.9699668813628396, -0.23828075463778298, -1.1282361941117978]], [[-0.9990304302741969, -0.00624396676508154, -0.04357995256066237, 3.424763376694713], [0.04205942524138383, 0.15711407992777415, -0.9866844331582478, 1.8136946602999666], [0.013007848958127944, -0.9875607215596847, -0.15669912921901352, -1.3615686440371655]], [[-0.9999904341524339, 0.0008311103582918675, -0.004294282151775736, 3.392817864767459], [0.004366762006320121, 0.13336196565114677, -0.99105777707823, 1.9764213262482062], [-0.00025098447537398073, -0.99106704887875, -0.13336431919204783, -1.5240754031866457]], [[-0.9990142607958085, 0.042300990454402734, 0.013458563563059724, 3.4980935130883744], [-0.010460801855226198, 0.07030641793341696, -0.9974705906551415, 1.9292494131588256], [-0.04314021732849855, -0.9966281321555939, -0.06979461186153069, -1.6341641387054597]], [[-0.9958697680316273, 0.0850544210487186, 0.03176713050780815, 3.622719273896996], [-0.0321837928178767, -0.0035317435930023455, -0.999475727702804, 1.9004995356626617], [-0.08489763601236969, -0.9963700478473151, 0.006254530537986858, -1.7427819232054291]], [[-0.9925777144387306, 0.10126679836177571, 0.06733881755081084, 3.6561000019613306], [-0.07958168319116779, -0.12217040484753483, -0.989313473010375, 1.8342847199715138], [-0.09195779738579285, -0.9873294423488772, 0.12932260348063085, -2.0105102243532404]], [[-0.9786877329467529, 0.07153011702529269, 0.19249354206802186, 3.400372573546523], [-0.19405443376244744, -0.015487781974040216, -0.9808684954399649, 2.470803166012696], [-0.06718034025428324, -0.9973181894299694, 0.029038438584851667, -2.017461273565988]], [[-0.9655828836689828, 0.0008337064559422735, 0.260094213121009, 3.1140573631826793], [-0.2578956375035834, 0.1267173582069946, -0.9578269944440175, 2.979282678706715], [-0.033756998120565096, -0.9919385142550848, -0.12214110289047952, -1.9057407464746745]], [[-0.9661136906672199, 0.016209181935192857, 0.25760745161263315, 3.168258380734404], [-0.2537119210260339, 0.12396020626774773, -0.9593039812235414, 2.9664170512459633], [-0.04748260560081806, -0.9921547911908953, -0.11564718968616539, -1.8741176915263211]], [[-0.9661599227166077, 0.02573639654628858, 0.25665666098710715, 3.1897275951465587], [-0.2500210970985511, 0.15127441031520883, -0.9563500947819384, 3.002571357347151], [-0.06343859032068375, -0.9881567136221855, -0.13972063047927608, -1.7721737192825013]], [[-0.9572664376054301, -0.012028923444208223, 0.2889572155786781, 3.019776470678943], [-0.28764520172892527, 0.14331159914192304, -0.9469540767501403, 3.096130423150687], [-0.030020082553769423, -0.9896045121927033, -0.14064744608881707, -1.8910717825423842]], [[-0.9691655251246414, -0.02490979851980532, 0.24514829562446705, 3.096461030741462], [-0.2462603059377945, 0.13265641183553323, -0.960082360070398, 2.9494364870054426], [-0.008605035113365578, -0.9908490189411423, -0.13470031564207152, -1.9852341102408921]], [[-0.989423029032021, 0.11543091944168886, 0.08785085348445679, 3.7146852533496646], [-0.08077083706523265, 0.0646524383020688, -0.9946336682926931, 2.248026881603185], [-0.12049125072337327, -0.9912092438322211, -0.05464515935262426, -1.70962773079538]], [[-0.9613523373816775, 0.26869854102677504, -0.06002314104466572, 4.1874460058445395], [0.05592291003920649, -0.02289492078470834, -0.9981725555909704, 1.566437431442952], [-0.26958173443972827, -0.9629521881445333, 0.006983681273041831, -1.2054808403378852]], [[-0.9539592453184287, 0.2891654514733612, -0.0796561356437819, 4.239654002051574], [0.06272891050501249, -0.06735651737282189, -0.9957550820127702, 1.4354835834912907], [-0.29330332773145884, -0.9549065091628665, 0.046116338753641184, -1.1640973310228684]], [[-0.9485419731612972, 0.3092175794993119, -0.06821007022324353, 4.2565973798450845], [0.06249136822019119, -0.02837339541652828, -0.9976421098422549, 1.5310875334606862], [-0.3104238297058419, -0.9505679559932178, 0.007589926853031614, -1.0301893235476678]], [[-0.9403468319004326, 0.3375311770043229, -0.04266778978218061, 4.269571885860334], [0.049528080965877186, 0.011735481628755484, -0.9987037837450996, 1.6581443432683365], [-0.33659293654302586, -0.9412411927986459, -0.027752694433603953, -0.8687716721756432]], [[-0.9341323627985655, 0.3554450352246845, -0.03248931680555228, 4.262176516426149], [0.062073220079118696, 0.07214268748992925, -0.9954608721545712, 1.7490093882127018], [-0.35148775813871247, -0.9319089330915618, -0.08945443702113787, -0.6933616761529889]], [[-0.9315648487863706, 0.35180785346203414, -0.09175056810757651, 4.3179194696606595], [0.10950136953807618, 0.030848424974887156, -0.9935078382911001, 1.482857763735271], [-0.34669349947022765, -0.9355637920093985, -0.06726075011537225, -0.763561513538752]], [[-0.9317903740187189, 0.348666626827131, -0.10098654476238415, 4.306784097527477], [0.10885003833735246, 0.002980979945336637, -0.9940537122874809, 1.4343595261250732], [-0.34629231588357795, -0.9372420696359907, -0.04073002411529558, -0.8215505795328325]], [[-0.9376876750993509, 0.3340645446518464, -0.09561748780075678, 4.273305333099815], [0.08544001329433844, -0.04506405420620763, -0.9953236836058724, 1.4160459312603118], [-0.3368112647983089, -0.9414723102805808, 0.013713529082949538, -0.9662884115264914]], [[-0.9452766234114682, 0.31737041662500876, -0.07568437013731148, 4.220221681489947], [0.06420267830963897, -0.046497416225340205, -0.9968530515488411, 1.486752708712694], [-0.31989079594399433, -0.9471610258745004, 0.023576889843275772, -1.0711571239190951]], [[-0.9348804913659734, 0.3534366052414064, -0.032879065356952675, 4.186504317724178], [0.035667259068775076, 0.0013765149153841527, -0.9993627728894091, 1.7094663208318341], [-0.35316612733080366, -0.9354574663137379, -0.013892991904000729, -0.8558652833541228]], [[-0.9316326345115448, 0.36263207313631063, -0.023635013136017513, 4.181553368100649], [0.02589051525233385, 0.0013605539643447573, -0.9996638585609058, 1.7457931448756603], [-0.36247802075856533, -0.9319313968451602, -0.010656267694718613, -0.8126556577823343]], [[-0.9442656246582994, 0.32785702294107333, -0.02953307631940566, 4.14983398252115], [0.03220722160356171, 0.0027284066111670224, -0.9994774888280091, 1.7170684175544266], [-0.327605135743093, -0.9447234136537426, -0.013135704365162537, -0.9605671313323035]], [[-0.9459291894733601, 0.32431791444486535, -0.0059882278183410464, 4.122849132532531], [0.01803665472984073, 0.03415672946939452, -0.9992537199921303, 1.8446899547784856], [-0.3238713441915291, -0.9453312690279991, -0.03815945766758899, -0.9332766680242891]], [[-0.9508140631046318, 0.3097379171578888, -0.0038781538332059995, 4.090968677324251], [0.004172437232188353, 0.00028763699264300335, -0.9999912539780055, 1.812972558079223], [-0.3097340926827472, -0.950821928617369, -0.0015658513154441778, -1.054816068984983]], [[-0.9441422313604282, 0.3275409809998761, -0.03622640925334272, 4.163366949175461], [0.01763098028320631, -0.0595659527471859, -0.9980686578625608, 1.628549252842288], [-0.3290662478833176, -0.9429574767925428, 0.050463862961886985, -1.0402120051818242]], [[-0.9854857830430666, 0.16442691869480214, 0.04220852791233549, 3.810881568699161], [-0.04779214225604543, -0.030149505793990006, -0.9984021827094309, 1.9324626571536174], [-0.16289162826422784, -0.9859283927897151, 0.037570224014737086, -1.7135150066664409]], [[-0.9521303645624475, -0.2656320450404629, 0.15128577436693263, 2.539010991124531], [-0.13224779898637046, -0.0882582275009881, -0.987279598159328, 2.091711449698418], [0.2756053129775286, -0.960026094398483, 0.048904085029301214, -3.213763829527862]], [[-0.9365718507225144, -0.3209777420322927, 0.14073541684329244, 2.392469209108566], [-0.09135729376266644, -0.16408779750674163, -0.9822062103172371, 1.7748871746801118], [0.33835929617873095, -0.9327638950073258, 0.12435635432174874, -3.509738894249613]], [[-0.9353980882028645, -0.33882293615369274, 0.10114066700698326, 2.426514509063042], [-0.027965507395419503, -0.21424964255420886, -0.9763785234536404, 1.4410852583396436], [0.3524887898679099, -0.916131054272032, 0.19093335071660977, -3.645716288447996]], [[-0.9346951246802786, -0.3351781717867192, 0.11832420317344579, 2.4183903376700546], [-0.016153701600564008, -0.2924860236795235, -0.9561333504677793, 1.1840598163330018], [0.35508320408534993, -0.8956045550966419, 0.26797089220030623, -3.73997373082886]], [[-0.9331382788970343, -0.35609104473098496, 0.04951888851212538, 2.477160637320933], [0.029979461231918386, -0.21432818975548895, -0.9763015205254875, 1.2624422511144318], [0.3582655221498777, -0.909539770949314, 0.2106732557780996, -3.7099872596572427]], [[-0.9359219437410826, -0.3455187476076768, 0.0683147881174801, 2.475978474227616], [0.029466881386259303, -0.2700971459635759, -0.9623820627192192, 1.0942748165879839], [0.35097267432847506, -0.8987014670033389, 0.26297120580163313, -3.759446106474116]], [[-0.9369576419399186, -0.3480517483913246, 0.031150564234529055, 2.53837550227029], [0.05820905389212955, -0.2433519654346593, -0.9681898196965675, 1.0573896991249923], [0.34456071055094284, -0.9053396055408327, 0.2482702466744634, -3.728792576458687]], [[-0.9533422701495952, -0.3009468565942254, 0.023864313358469225, 2.737496617700521], [0.021647124319707473, -0.1469912656876038, -0.9889008897863546, 1.4736774451282828], [0.3011144598897629, -0.9422444254638026, 0.14664762094110306, -3.4260715065362604]], [[-0.9320832349983704, -0.3616054130022781, 0.021502751508236245, 2.495440686509979], [0.03887214333254613, -0.1588618262304048, -0.9865352890999263, 1.3715503406397525], [0.3601524670298776, -0.9186971456656393, 0.16212882235463355, -3.6106141023708704]], [[-0.9686954047765937, -0.2384521690049266, 0.06906356392163221, 2.8230749016008385], [0.009693231974515479, -0.3143173487314722, -0.949268479167146, 0.9867156081675669], [0.24806300413120796, -0.9188825645224008, 0.30678914354673037, -3.3436802853533414]], [[-0.9474335166164078, -0.31732689809076897, -0.04090686177107225, 2.65629056957645], [0.0204973240923976, 0.06739232217082325, -0.9975159821363643, 1.8964158322774705], [0.3192954608147728, -0.9459185560398501, -0.05734539251384707, -3.0243581915159146]], [[-0.8286189281116636, -0.5527431643396683, 0.08868859143569707, 1.4919652639657326], [-0.19984529645336765, 0.1440827323396936, -0.9691759508608297, 2.7134785020762067], [0.522926887299308, -0.8208015354014015, -0.22985280077075043, -3.121766036354666]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.1776456936029851, -0.9749351504256321, 0.13395320081604792, -2.6479576527545707], [-0.764483532793089, -0.22243121497978324, -0.6050531238584058, 3.225545364515512], [0.6196829315323379, 0.005080065665685085, -0.7848358155055872, -0.771809245214868]], [[0.5562134117586602, -0.8189655308641565, 0.14114566885378216, -3.429259558917898], [-0.6088938319875566, -0.5171991717190362, -0.6014593237623408, 2.231312251660332], [0.5655748774011273, 0.24859701532708203, -0.786336176214198, -0.17258672423122612]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9667409471645116, 0.24817641356029307, 0.06180945581230407, -2.9099183047482233], [0.2539917396729747, -0.9032579772450098, -0.34585144603015494, -0.6214618739208181], [-0.03000228746876851, 0.35004784572341496, -0.9362512314817202, 1.680227977654157]], [[0.9429491264257801, 0.3317981174049309, -0.027512801736695215, -2.6131247906131856], [0.3058862746489448, -0.8960008979274773, -0.3218943582831869, -0.5748593254050713], [-0.1314554371422093, 0.29511421551612527, -0.9463757540459564, 1.9590049948238801]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.39259133717461236, -0.9152376621392585, 0.09062043796690886, -0.5237422261650653], [-0.7562955277974924, -0.3773307528776605, -0.5344516606450861, 2.6895948695164242], [0.52334416649941, 0.14128526014642326, -0.8403269355770975, 0.18468418217714824]], [[0.42672847650949697, -0.9034671025306182, 0.040620216405297005, -0.5593321370752121], [-0.7050047083277902, -0.3604506643138552, -0.6107730182574769, 2.7694294422387387], [0.5664549130968248, 0.23199679575509208, -0.7907631239428397, -0.07842941719432328]], [[0.47745530829648963, -0.877702094106398, 0.04093241479253085, -0.6825019979477425], [-0.6803180564790163, -0.39876019816308317, -0.6149452385290518, 2.830984193653891], [0.5560609414516703, 0.26576180756869927, -0.7875067561803516, -0.15606441715834235]], [[0.6888335749153522, -0.7239624425676956, 0.03723825748812559, -1.463269909681305], [-0.6636784696903826, -0.6504726922269175, -0.36934559092602964, 2.741710612038221], [0.2916148057605575, 0.2297034140331447, -0.928545715968121, 0.7385100739594055]], [[0.7757256210878548, -0.6304401664002536, -0.028194988510060727, -1.583177160035755], [-0.613857216276498, -0.7434496199314949, -0.2654467567121223, 2.6098888124653765], [0.14638674398022047, 0.2232215473760015, -0.9637131637442404, 1.0233013637761035]], [[0.7410183187368716, -0.6687376434468941, -0.060677965798756325, -1.3774124154074623], [-0.6406989915507986, -0.6771041601938644, -0.3619872352362056, 2.7455498450291405], [0.20098918757527767, 0.30711548395555854, -0.9302061201650813, 0.7289014824347873]], [[0.7797573781013386, -0.6213295002775745, -0.07699404770075095, -1.54176154481568], [-0.5860590075521492, -0.6811064507888668, -0.43889502430624866, 2.792070191211951], [0.2202572835651882, 0.3873546885976887, -0.8952335305705834, 0.5733290022214786]], [[0.8040604435292251, -0.5906379779959767, -0.06807042015744164, -1.701716958911991], [-0.4499264668678092, -0.5296323079035432, -0.7190659168926148, 2.7898758495708336], [0.3886553454713272, 0.6087991437030695, -0.6916000470380064, -0.2891509689724994]], [[0.8301317283881748, -0.5552900627249188, -0.05034143186498502, -1.850265487159125], [-0.2698957189329022, -0.3211870507538509, -0.9077418021275294, 2.4926964889218435], [0.4878909862099862, 0.7671322080756346, -0.4164979722736331, -1.0400992084449505]], [[0.8724042211966021, -0.4884378042589364, -0.018422437652471563, -2.0646048723674344], [-0.1889365727513413, -0.30222169617889805, -0.9343259697962627, 2.3053442914666396], [0.450792464794308, 0.8185905922556518, -0.3559432482225416, -1.0353231416162663]], [[0.8853343463338703, -0.46398414991025994, -0.03003004884497773, -2.087623601094012], [-0.19110270431656576, -0.30424509663794996, -0.9332280951485867, 2.305100380652831], [0.42386654928700557, 0.8319577091438108, -0.3580272595651182, -0.9506659303019944]], [[0.8838392721561567, -0.46525565071788455, -0.04863456044371736, -2.0198485490073206], [-0.1658033468994077, -0.21435270216657082, -0.9625809935952632, 2.238158956976137], [0.43742129709403776, 0.8588306576671372, -0.26659428032049437, -1.1731694927581036]], [[0.88080938878099, -0.46922635358902465, -0.06325701330924752, -1.9743330950631375], [-0.1651750204611646, -0.17931513235471375, -0.969826425668153, 2.26175795787415], [0.4437251776166331, 0.8646806996840852, -0.23544692468352257, -1.2677583361535767]], [[0.9006082372194726, -0.43129086229197444, -0.053786570404504686, -2.0680813436848444], [-0.15644877417277395, -0.2062315534763332, -0.9659152796237227, 2.2451810429683836], [0.4054979458792239, 0.8783261002920175, -0.253208762552852, -1.1796554996439292]], [[0.9260387352453618, -0.36755418699567705, -0.08576817852279073, -2.151756120832187], [-0.1515721965871673, -0.1540463222560466, -0.9763685778542484, 2.206136744237042], [0.3456560863733077, 0.9171551941854406, -0.19836385691893405, -1.1592773469089523]], [[0.934191303054862, -0.33535630656378085, -0.12174874514572387, -2.142634240197544], [-0.1503875071054392, -0.06069251712273015, -0.9867623908884646, 2.079943725041678], [0.3235277530649735, 0.9401343340253068, -0.10713182059277723, -1.2767199034491612]], [[0.9430500730027636, -0.3230670576432662, -0.07927317374247636, -2.248523774954689], [-0.14261188875943975, -0.1773537326441401, -0.9737594686069327, 2.2429002239678777], [0.3005302131133366, 0.9296092349922699, -0.2133266538038299, -1.0443886812752512]], [[0.9464226698057561, -0.31084578028550497, -0.08751588973689933, -2.2720031896463944], [-0.12611294759061958, -0.10628660557741434, -0.9863055722872284, 2.136196958225337], [0.2972871583633427, 0.9444988397841084, -0.13979373061307893, -1.1702867197649829]], [[0.9463752797655072, -0.3135535943950077, -0.0778329833086792, -2.2848876857396303], [-0.088742406886698, -0.020648393955100902, -0.9958405640698867, 1.9335727968312149], [0.31064226220640656, 0.949345978697464, -0.04736663026055546, -1.3636051137613152]], [[0.9261577641973268, -0.3575118465099968, -0.12007112651266758, -2.0995370448482746], [-0.09236914179645164, 0.09364580733334298, -0.9913114568149978, 1.7869591334199497], [0.3656497469721476, 0.9292016693774817, 0.053707729102109414, -1.7149944693832408]], [[0.9945261961014665, -0.05426360114601183, -0.08929225531150108, -2.7911309594363978], [-0.08017254548153852, 0.15173742591342995, -0.9851640048886161, 1.6591026813595084], [0.06700752359965546, 0.9869301977180722, 0.14655639396904085, -1.2269963303440032]], [[0.9540169584950722, -0.2889919698350999, -0.07959449902248403, -2.3154915122068016], [-0.11257168221496563, -0.09932045554243907, -0.988667316883761, 2.048756560858585], [0.27781155351623577, 0.952165473266948, -0.12728571110389658, -1.187107550383424]], [[0.9775717812325954, -0.20917362482404936, -0.024490961918603157, -2.5541890764243975], [-0.10720722083088538, -0.3941616305490538, -0.9127667943152998, 2.186820098509531], [0.18127334150240737, 0.8949206689315422, -0.4077462102578914, -0.43693239595702016]], [[0.9304107608982365, -0.36451759089083113, 0.03824580939017849, -2.437648097916974], [-0.05749771020022609, -0.24821857960260113, -0.9669961479043224, 2.1107034138607914], [0.3619804267173793, 0.8975045752926344, -0.2519041643210611, -1.1921959913975286]], [[0.9040219372589309, -0.4253858299084322, 0.042322956746006696, -2.2811916920613724], [0.01028574059578577, -0.07733083024765801, -0.9969524292731345, 1.8104837253579988], [0.42736230588928437, 0.9017021894208322, -0.06553335867076812, -1.6864904951642903]], [[0.9220418863818414, -0.377227579929883, 0.08682230530030269, -2.433529122223319], [0.05444984038184125, -0.09567069965598866, -0.9939226992627372, 1.7280195519153472], [0.3832414051740851, 0.9211658212111309, -0.067672410867468, -1.572134604022229]], [[0.9205702774840809, -0.3788645811741308, 0.09493151923693077, -2.4182831264635283], [0.07675477155985835, -0.06283293821509849, -0.9950682021439793, 1.615719259851484], [0.38296092392785364, 0.92331665803613, -0.028762470987671547, -1.628103844062743]], [[0.9779205919431851, -0.1757245526451717, 0.11310259701326257, -2.893370713513892], [0.10706181041975829, -0.04351593077048317, -0.9932996187046599, 1.5121644007285004], [0.1794688959210869, 0.9834771199000174, -0.023741736036635375, -1.1747231743671287]], [[0.9775861665757258, -0.153566445188431, 0.1440230322968038, -2.875841971890722], [0.12185668564021777, -0.14513468395332826, -0.9818792551421731, 1.5413941789105319], [0.1716864440908446, 0.9774217464462085, -0.12316856128690129, -0.9734070227970005]], [[0.9869766255783943, -0.027146695974917402, 0.1585566064834001, -3.0101716975872885], [0.14431916149344587, -0.28595960155325795, -0.9473115041554868, 1.5003432085713542], [0.07105716141048052, 0.9578570682399058, -0.27831765419235904, -0.4266665199106739]], [[0.9716271824376638, 0.16093075330413617, 0.17332602513532108, -3.1307379413170735], [0.23376739319790715, -0.5419931840087865, -0.8072150855660922, 1.228101483731875], [-0.03596420756393438, 0.8248300922789988, -0.5642356729641589, 0.4119557842958905]], [[0.96683099209364, 0.14774510122932447, 0.20834878878928964, -3.1089073012031303], [0.2554169032834224, -0.559884567977306, -0.7882204488961018, 1.0277505103286384], [0.00019556158670826218, 0.8152917610301247, -0.5790503485467078, 0.40304592087278446]], [[0.9619778484433246, 0.21299863765769997, 0.17096841655789852, -3.1184828806262113], [0.26991217234413223, -0.6456014205081732, -0.714385207754402, 1.0201670899063957], [-0.04178562342268827, 0.7333692018306963, -0.6785451904489372, 0.6893250901337693]], [[0.953300514512946, 0.27383198717878443, 0.12741338951252565, -3.1393189726004374], [0.28950659425474945, -0.7083075407411392, -0.6438061506480467, 0.9242737458615821], [-0.08604685300676859, 0.6506277511196071, -0.7545061090280675, 1.0554158090226669]], [[0.9349627345123693, 0.31054410906639257, 0.1714848138970717, -3.1274669638059103], [0.3495623791999581, -0.7241702548468621, -0.5944607514740529, 0.6808412020078035], [-0.06042208305923881, 0.6157432893009808, -0.7856267393359211, 0.963953848593485]], [[0.9235713853389138, 0.38115863289973023, 0.04164123856429225, -2.8904859361396897], [0.3579818651625531, -0.8182785437604775, -0.4497434924887427, 0.504128196569277], [-0.13734948269978753, 0.4302770286539136, -0.8921865265822274, 1.5212315521025468]], [[0.8164810286826762, 0.5772026156295773, -0.01399536750690139, -2.6081846045700408], [0.5141135114530782, -0.7378428216770778, -0.4373502804857838, 0.012028757050496256], [-0.26276610729442346, 0.34989299937264035, -0.8991823295902523, 1.9786366609824515]], [[0.6562160162430164, 0.75329053999302, 0.04397615698500401, -2.371373721177371], [0.6417238261010069, -0.5264692283336856, -0.5576922831024458, -0.3543163556498638], [-0.39695222765520544, 0.3941871560245947, -0.8288820271816804, 2.2224064373824115]], [[0.623597072450081, 0.7817001546815132, 0.008459279081986043, -2.205230611097479], [0.6497369861446838, -0.5122462420282239, -0.5616454721295152, -0.4117083650539832], [-0.4347051185197982, 0.3557367786704957, -0.8273347594739555, 2.269841677178253]], [[0.6453821803875094, 0.7426385713789376, -0.17880098863964633, -1.9977566574202323], [0.6810375850652002, -0.665427290336139, -0.3056048576257646, -0.6778691699579069], [-0.3459330122535641, 0.07546173584111535, -0.9352196947546716, 2.5221249000902937]], [[0.8256039130257807, 0.5549561204502398, 0.10198962286104431, -2.3059894603888274], [0.5159035057465615, -0.6692254973574498, -0.534771733027356, -0.22149250064314135], [-0.22852079020283178, 0.4941264393467457, -0.8388189973907246, 1.7671343167050564]], [[0.630996324329851, 0.7662409989220625, -0.12131929052354856, -1.9542655278886556], [0.6579899267829897, -0.6114430115027746, -0.43953008991027387, -0.5514746029064012], [-0.41096580750025086, 0.19751500007679776, -0.8899971515742784, 2.3892432844554055]], [[0.8003880793674832, 0.5933418550245545, 0.08558250687174311, -2.0948797510762116], [0.5282365618095032, -0.6305405600775306, -0.5686692684371016, -0.09651484556387566], [-0.28345203681417824, 0.5003639127406513, -0.8181020093195952, 1.6524698045897603]], [[0.5702394348270654, 0.8192999831439906, -0.05978732799152578, -1.7190561749805637], [0.7347909269350449, -0.541252981340497, -0.4088123088704171, -0.7262891440749341], [-0.367299987288384, 0.1891897138067515, -0.9106579882303084, 2.2370765499802583]], [[0.7812773566895227, 0.6177296224098074, -0.08953103105442817, -1.8052448376428432], [0.5594146625973457, -0.756592567660019, -0.33856007123214804, -0.15990770982720134], [-0.27687709763599105, 0.21442434600356375, -0.9366756496491269, 1.9998919830421273]], [[0.8007600297655659, 0.565012332094907, -0.1988578369351445, -1.64513601766145], [0.553374748321245, -0.8248945766637625, -0.11543537287638943, -0.22373083078189832], [-0.22925916045002145, -0.01760687284519595, -0.9732061628341473, 2.166941448487085]], [[0.7429526405001186, 0.6095032137433689, -0.27663551183896606, -1.5424056116980562], [0.4377061546041008, -0.7550842325742168, -0.4881199892849064, 0.3575135670600794], [-0.5063938153212306, 0.24156496880613976, -0.8277751322974712, 2.14009011511828]], [[0.6701668211473812, 0.6228914606688706, -0.40358723971282195, -1.315598558816295], [0.5064158680451668, -0.7812768523417486, -0.36489649023665505, 0.21729717364094317], [-0.5426042760845827, 0.040158538578613956, -0.8390279443224495, 2.393701046001354]], [[0.9310125713619193, 0.3410629028622144, -0.12996802782710426, -1.6900142679928558], [0.2553710061036789, -0.8631179097944551, -0.43567547903645687, 0.890944350187598], [-0.26077047610429754, 0.37242928198954905, -0.8906712012348258, 1.5223857685767743]], [[0.8371464655494197, 0.35036645305235237, -0.42003469355950596, -1.3283967317159917], [0.1761028101906772, -0.899672901855683, -0.399470236575294, 1.027560606789565], [-0.517854801523613, 0.26044580672778905, -0.8148585069181343, 2.161024422977917]], [[0.9299028832658429, 0.2694382938914231, -0.2503669975830505, -1.736182838249039], [0.1492909211751775, -0.8986093915316072, -0.41256924546778917, 1.103312883632508], [-0.33614408896861336, 0.34627181120627337, -0.8758441552099251, 1.7334716054317216]], [[0.9673751297514772, 0.1810414574446213, -0.17722682930256306, -1.8318393180540808], [0.09208484766901322, -0.9029546618212674, -0.4197538082317019, 1.2327182582224823], [-0.23602063292874859, 0.3897394891226306, -0.890167058169614, 1.4059780103305364]], [[0.9786071801182847, -0.03723691612074494, 0.20233981095858436, -1.9558309857779816], [-0.052684165533688626, -0.9960482415369034, 0.07150020442810436, 1.1185286737295297], [0.19887776578330205, -0.08063071752786542, -0.9767017567650746, 1.2706562315681311]], [[0.9217541103266083, 0.10304256047000307, -0.3738336405779832, -1.5104125622889917], [-0.16934919507253618, -0.7602866711695506, -0.6271244117160542, 1.697979690169066], [-0.34884123928269584, 0.6413629303083463, -0.6833471895032595, 1.0618125815305672]], [[0.9893428422666934, -0.11308824585367584, 0.0917158061917309, -1.7745881602132074], [-0.12478011956145675, -0.9831225784532889, 0.13379057327623983, 1.1688279151421763], [0.07503773862456899, -0.143809055295885, -0.9867564509021542, 1.5666013535873577]], [[0.9753198740462612, -0.10445243165959818, -0.19452720326674638, -1.5236862630580676], [-0.16267099586528663, -0.9356531665118712, -0.3131953050422449, 1.6045741141855188], [-0.14929598251319753, 0.33710953934397336, -0.9295525095919615, 1.3039825253155728]], [[0.9626476431124837, -0.21543347882833325, 0.16400588833911448, -1.7657865008557632], [-0.22133959862463626, -0.9750229902794793, 0.018410608549088464, 1.4666835876034947], [0.155943250224769, -0.054023926425103064, -0.9862875433071993, 1.328597413366192]], [[0.9660423216769647, -0.2229180533904426, -0.13065134596166883, -1.517265050746727], [-0.25049891481227243, -0.9319723336703104, -0.26206461598428016, 1.7750900424866647], [-0.06334450573533407, 0.285893530436997, -0.9561654474239355, 1.2880124645089621]], [[0.9750846116505317, -0.22007579831092994, 0.02786831749744926, -1.6520806096747969], [-0.21527246572661873, -0.9690764594103138, -0.1206175000435363, 1.6181785356495346], [0.0535515230625005, 0.1116129867648814, -0.9923078028329261, 1.3722433316351463]], [[0.9731300367490103, -0.009568809593624425, -0.23005731777066102, -1.6272386427904644], [-0.09985615530374943, -0.9178294321571452, -0.3842107256624235, 1.5498236937703875], [-0.20747693805534967, 0.39685963683530917, -0.8941228935812588, 1.3744867206131803]], [[0.9999332808358086, -0.0037131868665368573, 0.01093828689650103, -1.8619268076797197], [-0.004383668496738346, -0.9980711914078401, 0.061924795778801556, 1.0109375005794914], [0.010687250696352719, -0.06196861403186095, -0.998020878312435, 1.6563691444987494]], [[0.996454815028726, 0.07401992265215064, -0.039985655635954, -1.8920157684384087], [0.07809517027910946, -0.9905873681925181, 0.11241801615620711, 0.785840974485692], [-0.03128811252128134, -0.11514216008044134, -0.9928561512056344, 1.7957248026600083]], [[0.9879532678725735, 0.09926750526417091, -0.11871942932195584, -1.7972670160237691], [0.08515835522831286, -0.989291776802576, -0.1185319994162331, 0.978383261966519], [-0.1292145310509292, 0.10699412483603576, -0.9858275012474842, 1.6768255211726646]], [[0.9585800449078907, 0.17566072588218623, -0.22420438641322224, -1.7545719382745186], [0.07870049152913389, -0.9198776530024388, -0.3842282344385911, 1.1961152674728897], [-0.2737344153325606, 0.3506685228093158, -0.8956009473941355, 1.5498624429605852]], [[0.9999435199629237, 0.004536346571769965, -0.009611370554643799, -1.8115944991747455], [0.003303058773113007, -0.9921951276579404, -0.12465118713668452, 1.176979590006161], [-0.01010181601986713, 0.12461239991118128, -0.9921540722596852, 1.4270867117302255]], [[0.964318477375444, 0.15028259248176515, -0.2179564557182583, -1.8740599202225434], [0.04166416089805458, -0.8991571161349635, -0.43563812757897746, 1.326524918440894], [-0.26144592536309763, 0.41101292303383374, -0.8733352192659003, 1.5491939165898994]], [[0.972165618069184, 0.11613917521752515, -0.20348391342795233, -1.8370119409235546], [0.023373877350674727, -0.9122384591643071, -0.4089922437884682, 1.3551139384952757], [-0.23312587351419625, 0.3928519894328183, -0.8895614883170917, 1.5093459942256973]], [[0.9667265673123616, 0.07787502348091492, -0.24367031983872164, -1.6859780445241828], [-0.04184745168732376, -0.8915627171523463, -0.45095976779664315, 1.5187126345705229], [-0.2523658749509035, 0.4461517702551141, -0.8586384938136029, 1.3914191981439146]], [[0.997362299303726, -0.07044105740656931, -0.017507180213536415, -1.7531116206528305], [-0.07147250625982893, -0.9951431229960287, -0.06768933152757092, 1.3659469844850733], [-0.012654041904606983, 0.06876206937807428, -0.9975528322040499, 1.5694237988206927]], [[0.9799713857099077, -0.018757944312272352, -0.1982529261195931, -1.6309794695777384], [-0.08406604851763183, -0.941463922692194, -0.32646375259078675, 1.4946439868507606], [-0.18052418861868436, 0.33659147611638196, -0.9241846111732014, 1.4608589996660013]], [[0.9714804701885866, 0.12851127807017593, -0.19927505476334129, -1.8859929062487018], [0.044407619398812645, -0.9241343136881348, -0.37947823864286284, 1.2783243109709996], [-0.23292414941669948, 0.359806366915497, -0.9034853175041513, 1.582410714615348]], [[0.9470437802073358, 0.2501117935502341, -0.201375691426956, -1.9532601868230068], [0.17857292256979646, -0.931442085404211, -0.3170604877034279, 0.9546978401985355], [-0.2668703612158551, 0.2643099170764108, -0.9267796275488469, 1.7240520670626633]], [[0.9844953407701814, 0.17328101631658144, 0.02725093367385987, -2.046222144842082], [0.16378482940877692, -0.9637009680903909, 0.21084348165684783, 0.48983321151870785], [0.06279692394809086, -0.20311113579992687, -0.9771399146778939, 1.7135381269464902]], [[0.9373432017709799, 0.3290853275963243, -0.11441402560240597, -1.951301724632724], [0.2980276880688592, -0.9274329954244371, -0.22593701808775624, 0.6059381466015302], [-0.1804639000965535, 0.17768198040002892, -0.9673995527201081, 1.5956736342216278]], [[0.9337796306744874, 0.35572517663135467, -0.03892557061892883, -1.9945689506915085], [0.3373169531077244, -0.9112964404176607, -0.2361272344059919, 0.4849839647549795], [-0.11946913611280087, 0.20736054685665864, -0.970942186293174, 1.4195948804666616]], [[0.908367426282208, 0.4080936462170536, -0.09125894359846426, -1.9933412380844835], [0.3648217151220212, -0.8800384495480269, -0.3040352668565465, 0.4616802863142828], [-0.20438623986184629, 0.24288248852968994, -0.9482796853886307, 1.5109497074359663]], [[0.9378167633175299, 0.3449551936028202, -0.03880248506310981, -2.025701292562866], [0.34570753185716313, -0.9180071041881727, 0.1942916855587853, 0.05889030811466846], [0.03140096905925878, -0.19562431103133943, -0.9801760597339915, 1.6792237310773102]], [[0.8957554221017462, 0.40928018718836423, -0.17352795783498426, -1.9948235360608524], [0.3532996547335464, -0.8923381231990708, -0.2809128474290874, 0.4442720391173494], [-0.26981767499643056, 0.19032183863292831, -0.9439152610265941, 1.77042243038174]], [[0.8869297687988065, 0.4190834418263084, -0.19422835530764054, -1.9077411503187351], [0.3391161982726838, -0.8762931413156534, -0.3422141647451582, 0.5895564715087639], [-0.3136172656082214, 0.2376539485684167, -0.9193284567782414, 1.787712395306928]], [[0.8656385466276978, 0.37956445768966396, -0.3264976708202346, -1.6108210183053306], [0.21061298560871244, -0.8676774217644003, -0.450308851848669, 0.9877695560501323], [-0.4542158923741785, 0.32104005080212894, -0.8310362259827754, 1.846160810022839]], [[0.8362697985843828, 0.37203787978460745, -0.40279106243933693, -1.4222467877988625], [0.15630999468004558, -0.8658665855428899, -0.4752286203538475, 1.121002406240708], [-0.5255663702509512, 0.3344590737977835, -0.7822513141028072, 1.91209596724317]], [[0.7547716761325352, 0.4711040599299706, -0.45648732909641865, -1.2634517328462846], [0.24416318951302204, -0.8476326206174207, -0.4710661071994801, 0.9353845842478014], [-0.6088547066377261, 0.24408995305571796, -0.7547953636730595, 2.1093349798765635]], [[0.6858627358626018, 0.541294670951508, -0.4864076343506192, -1.157952457710895], [0.31223193517918024, -0.82262397858587, -0.47518523599730894, 0.7755547029973642], [-0.6573458193442254, 0.17403984904340947, -0.7332166151524501, 2.27306679619611]], [[0.7035022591710612, 0.5291645447520013, -0.4744148563426531, -1.1304633302279739], [0.3014486564417891, -0.8266940214403434, -0.4750849423463488, 0.7847993906608574], [-0.6435940326561871, 0.1912116091982926, -0.7410970527786132, 2.11788159892062]], [[0.660400857033459, 0.4379751068485646, -0.6099577967453661, -0.8634835963858738], [0.3079128610256668, -0.8988022133986748, -0.3120004025712654, 0.6254358381702841], [-0.6848798274474591, 0.018231482952070027, -0.7284279202398184, 2.330667885411018]], [[0.719705573120633, 0.4953578669184313, -0.48646117183298687, -1.0908554161508695], [0.4120786996684864, -0.8686851010553701, -0.27491333267768214, 0.3423227600595911], [-0.5587620542759059, -0.0026036294748509603, -0.8293239341867124, 2.2294713300792233]], [[0.745816138610839, 0.4630798067500723, -0.4788688546647542, -1.1433409537981882], [0.39938069284343136, -0.8861715824699227, -0.23493613729406032, 0.3284481623237984], [-0.5331541517905666, -0.01603181222034801, -0.8458662018460206, 2.222154783912896]], [[0.8262117244896225, 0.3787085980187427, -0.4170779113098205, -1.3048918624731072], [0.3059594462756905, -0.9232810129376594, -0.23225199328204388, 0.5215519841352174], [-0.47303594319095565, 0.06428039308753543, -0.8786950708374066, 2.0661231805501346]], [[0.7993805137774708, 0.4510511843868969, -0.39691765299120185, -1.4270742719730614], [0.4235718650565992, -0.8915961339118337, -0.1601349715894199, 0.17011217670080622], [-0.4261193134854846, -0.04011437468848033, -0.9037771670151943, 2.203414260571523]], [[0.8085269013508005, 0.41319107830862856, -0.4189956832692022, -1.3433178501280514], [0.3325487771286598, -0.9082499852937491, -0.2539552618949579, 0.48298390793551943], [-0.4854848716719252, 0.06599315888830079, -0.8717507340734718, 2.133627691531902]], [[0.8236082093651327, 0.4190666315354049, -0.38216838670922115, -1.4065804797319268], [0.34807792453841, -0.9054857637534157, -0.24277003540166708, 0.4435395540845811], [-0.44778485449531735, 0.06692301527473876, -0.8916333518387167, 2.0765927709231535]], [[0.789472572048603, 0.4905155630685401, -0.3689546589630174, -1.4677408088673347], [0.3946622191675217, -0.8660520261495643, -0.30691305082059117, 0.38947387493173613], [-0.47007955788858813, 0.0966869711480752, -0.8773122812690372, 2.1138973971805854]], [[0.8370202122247141, 0.44635989263332543, -0.3164806638258658, -1.5648789250147903], [0.3604660995844292, -0.8849649007364413, -0.2947902907406017, 0.4691956132499999], [-0.41165684177198225, 0.13266488123428274, -0.9016311185342987, 1.9829715371473227]], [[0.8988384930195202, 0.3646537342589167, -0.2431399135424402, -1.7146525360645088], [0.29418643465631755, -0.9131896495686611, -0.28202660439197924, 0.6062029777745166], [-0.324874906895873, 0.18196790379540326, -0.928086190425062, 1.7949888135300127]], [[0.9620877498616892, 0.23597541127498006, -0.13675805950537517, -1.8913000100813617], [0.1903887283937305, -0.9401036560078432, -0.28276712691065126, 0.836321613239297], [-0.19529284079732684, 0.24600959581750065, -0.9493892695301644, 1.5198458761775948]], [[0.9692074063756566, -0.20106792259535372, 0.1421572858834948, -1.9578157662011884], [-0.14610949555090647, -0.9342637854297373, -0.32527402992608623, 1.5769566692712924], [0.19821457750738836, 0.29448746957669636, -0.9348733130889344, 0.6393992380466943]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.995091469514866, 0.0836369873326367, 0.05289443873097579, 1.3738961489719275], [-0.041026190676032706, -0.8350735851869155, 0.5486063789290873, 0.9628010827939937], [0.09005453335262134, 0.5437434704646961, 0.8344059080265733, -2.616915472395131]], [[0.9953364392073527, 0.047311679991104055, -0.0840653181903662, -1.4883095332661318], [-0.006344061030988585, -0.8374734583573972, -0.5464411765565768, 1.5838925298117128], [-0.09625552283200814, 0.5444261304192884, -0.8332677017867767, 1.0979168070694774]], [[0.9955831278177842, 0.07516671701694139, -0.05625122449736164, -1.5338184871756801], [0.03413967932482816, -0.8479911337535004, -0.5289097459596023, 1.5112577302507537], [-0.08745694883858815, 0.5246532204498017, -0.8468118329189174, 1.112356756635231]], [[0.992207617102734, 0.07328039558356898, -0.10076719796853893, -1.4569036745942547], [0.01409043383334527, -0.8695610693054995, -0.49362435760673773, 1.4993757546570476], [-0.12379622061154853, 0.4883579940693016, -0.8638176690661663, 1.2162082328452721]], [[0.9813981215822689, 0.11357736537092598, -0.15478342621286562, -1.3771020689206732], [0.03718979758272721, -0.9034296227141189, -0.4271203996045853, 1.4053481819601343], [-0.18834714202915376, 0.4134187935713906, -0.8908480539415382, 1.4116484623939487]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9712365705574055, 0.14760261115690454, -0.18685018916649096, -0.7043173695441313], [0.06952870418289865, -0.9262970223377415, -0.37032362293388854, 0.7352294943577012], [-0.22773950756629116, 0.3466803940056281, -0.9099161615805963, 2.0406447005984356]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9842246488275654, -0.04182079383768168, -0.1719094582710371, -0.9925250432857231], [-0.07978997760573706, -0.972159152315478, -0.22031827441891222, 0.3327292496493426], [-0.15790946809463735, 0.2305593280959095, -0.9601598804959679, 3.8627893820634673]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9719636455875821, -0.0768125464325444, -0.22223074577259835, 16.816399444582338], [-0.11164434648167051, -0.9825629995620727, -0.1486791572153373, -20.094486744149663], [-0.206935283494086, 0.16932154204982452, -0.9635912016218764, 33.132528931412416]], [[0.9715913506258861, -0.05689746892245562, -0.22972358481267124, -0.9227490792354288], [-0.09621984079533455, -0.9817926607399577, -0.16378312963939404, 0.9828783963729382], [-0.2162220840392739, 0.1812342388936822, -0.9593759226842942, 2.4321632482878055]], [[0.976650520185547, -0.11871915648483258, -0.17905173359906423, -2.8651429498292242], [-0.15587861867475558, -0.9651228883074544, -0.21033227689807274, -8.477033690357676], [-0.14783645579271226, 0.2333314645490557, -0.9610935490315409, 21.742015855978714]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.976459312084855, -0.07724740004413358, -0.20139526069198668, 7.664909622916971], [-0.09324807740258045, -0.9930939422523345, -0.07119844044948653, -35.112614206746386], [-0.19450451897962176, 0.08830210104033939, -0.9769189992258148, 52.77436298707995]], [[0.976917738456383, -0.06077415060140543, -0.20478826848221515, -1.2283086723568077], [-0.08720663232625941, -0.9886146447725046, -0.12262172490895559, 1.1988767051483447], [-0.1950044501225004, 0.13765023341793745, -0.971095091982453, 1.986144873218152]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9509298580067964, -0.05821329597006235, -0.3038809262251842, 0.9013448734988526], [-0.11558771772406871, -0.9778707066685826, -0.17437993161722332, -1.076511244218598], [-0.28700502550045165, 0.2009479863342462, -0.9366151942637362, 6.060132099217744]], [[0.9717055085575885, -0.02940218652348052, -0.23435852036244978, -1.2717381213902001], [-0.07897022098338176, -0.9755632427798425, -0.20503673703683623, 1.4168171436560855], [-0.2226030297113545, 0.21774267097772854, -0.9502820741226309, 1.6554973633160348]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7320060862318504, -0.6629407182054418, 0.15708817226252875, -0.9613448996975568], [-0.6215429369822679, -0.7442380615732781, -0.24452829119164565, 2.092188258873966], [0.27901875780489255, 0.08135915345493022, -0.9568329117155785, 1.2026636330602376]], [[0.5473909746384868, -0.8078624367120192, 0.2184522928102296, -0.8494954116499062], [-0.7688026405285616, -0.5885528094563535, -0.25009616230031345, 2.215922659627491], [0.33061400575389843, -0.03104631750710929, -0.9432552705225713, 1.3597232902029064]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.611234400131363, 0.2661963645692229, -0.7453401931911242, -96.49223884345635], [0.40643063166022875, -0.702510369620294, -0.5842031515014496, -21.202890838629475], [-0.6791219697111267, -0.6600141483832658, 0.3212081477633964, 97.10161529506551]], [[0.4506660591902643, -0.8525611109868532, 0.2646500616413681, -0.28918291036365656], [-0.7457469844792575, -0.5225099441698873, -0.41333375543702655, 2.465582940232341], [0.490674574676548, -0.011086490718182629, -0.8712723750294995, 0.4694354339195821]], [[0.5674749811818816, -0.7887106458546279, 0.23644801299270607, -0.46344952980644094], [-0.6844738456244398, -0.6114839326088126, -0.3969671961476816, 2.503072088267959], [0.4576764144990582, 0.06342647142035496, -0.8868536420032618, 0.3737959618730131]], [[0.9989799077807551, -0.044018025304905777, -0.010077564120900164, -1.779239262117907], [-0.04503693901240683, -0.9549444236372421, -0.293347612720009, 1.6088212886556057], [0.0032890689787426993, 0.29350223374344586, -0.955952729381982, 0.9316002577977578]], [[-0.28219872743349883, 0.9526183401190235, -0.11349967534662803, -23.90066043623905], [0.6768545767031068, 0.28154406243202346, 0.6801476478716447, 17.742896961244718], [0.6798762830331497, 0.11511402598358378, -0.7242354594956524, -48.86374543814951]], [[0.9334919917362434, 0.28093572246405324, -0.2228627856056314, -0.5431583066250036], [0.2288035143569714, -0.9451596819029522, -0.2330710782637127, 0.09359300617041959], [-0.2761189113085164, 0.16657819649855432, -0.9465780745765713, 3.134165880404496]], [[0.9597658778016859, 0.28068655789667873, 0.008032186730504334, -1.912045664861636], [0.2775996209858509, -0.944126568088507, -0.17766112083944904, 0.7416041369747848], [-0.042283687588373746, 0.17274281358578078, -0.9840589464653002, 1.4450881995374774]], [[0.9382164784812025, 0.32599091203077696, 0.11610238920742974, -2.1154892456205476], [0.3432333555084995, -0.919355251949962, -0.192293485012877, 0.6302424247112182], [0.0440534127248648, 0.22026312897387926, -0.9744452015592917, 1.2293026423112083]], [[0.9293747385874863, 0.32457628822079, 0.17582044363570554, -2.2119868583786624], [0.35536507131378414, -0.9155840908619726, -0.18820584117025901, 0.5835829093830275], [0.09989124769263191, 0.2373941989292711, -0.9662638009100514, 1.1565624549918776]], [[0.9358396827881706, 0.32172878073247396, 0.14385645542460657, -2.2417063861235107], [0.34853293641245237, -0.9053925427836732, -0.24246471023105465, 0.6520462407428281], [0.05223868637944076, 0.2770468103409811, -0.9594353467145351, 1.1254882513774072]], [[0.9630854452478894, 0.20356497880274604, 0.1761468834714719, -2.0225185661288463], [0.2329637944495726, -0.9581326836530607, -0.16646210076603357, 0.855287695930018], [0.13488623216374612, 0.20135307278713527, -0.9701869121214977, 1.1579302639293143]], [[0.9777463050070632, 0.20844274166071125, 0.02374418863640214, -1.9413632868498512], [0.2091179403100945, -0.9592909833336958, -0.1898170074970494, 0.8993293886802298], [-0.01678839139104179, 0.19055821352971683, -0.9815323311897903, 1.3807107381941033]], [[0.9820054434407658, 0.18150712406348976, -0.052158153407744864, -1.7942720100886977], [0.17050561568634978, -0.9708659934379129, -0.1683658451267152, 0.949752259779118], [-0.08119817776356629, 0.15644291834408863, -0.9843436743474613, 1.5041075333427378]], [[0.9809617361030192, 0.19261388779136818, -0.02477826732531474, -1.7759017727541446], [0.18731733412052792, -0.972126283271317, -0.14100604849109996, 0.8834866331369406], [-0.05124732812283027, 0.1336801391493522, -0.9896986065248762, 1.4866889099260603]], [[0.9612434082631583, 0.27278546228099226, -0.03999001923945835, -1.8422317375432344], [0.2636219689616441, -0.9518723843998818, -0.1563407218151074, 0.7217947918414842], [-0.08071287103933847, 0.1397392406771561, -0.9868932956827491, 1.5478536133983811]], [[0.9512689216649857, 0.3005307596694233, -0.0690557830080489, -1.8843291321671927], [0.289864521738689, -0.9478897742531106, -0.13222531869346382, 0.6546728546707589], [-0.10519504604084956, 0.10576501481542162, -0.9888112883303656, 1.5913036626435824]], [[0.9670246241349607, 0.24659781119781646, -0.06366235802327828, -1.8216565943334655], [0.2379011843365144, -0.9638651384183886, -0.11986251054013719, 0.7571933535425566], [-0.09091976027202116, 0.10076464883155584, -0.9907472345345868, 1.585118845611731]], [[0.9707312962853933, 0.224633035429045, -0.08497499518101274, -1.8039672222815328], [0.21218163124799638, -0.9678958950892759, -0.13474602639881164, 0.810696657768152], [-0.1125153579429005, 0.11277205178262636, -0.9872298407988477, 1.6169083903388601]], [[0.981521475605993, 0.18256183392557837, -0.05733035599020484, -1.747587987504201], [0.17159112724734768, -0.9723270911861622, -0.15854498666133116, 0.901394083208504], [-0.08468812180122201, 0.14577792884791124, -0.9856859121883579, 1.547958991777337]], [[0.9828112842083726, 0.17544541320080095, -0.05745334297923693, -1.759635171007374], [0.1639320881588531, -0.9724973848605956, -0.16545424416188276, 0.9392137106480696], [-0.08490141403161452, 0.1531918516961725, -0.9845425366480259, 1.5297774918762639]], [[0.9859339786588512, 0.14519504674398623, -0.08278036075627833, -1.7064701859876434], [0.1321834517677323, -0.9804977550479352, -0.14543619709249384, 0.9771060189869711], [-0.10228257331870134, 0.1324482946170723, -0.9858984351586799, 1.5818546980621055]], [[0.9927624505751872, 0.05709312908584262, -0.10565553151225188, -1.5724361443387145], [0.04457996386827451, -0.9921047602493547, -0.11722103698600624, 1.0848013211952006], [-0.11151387155619913, 0.11166252415989268, -0.9874695626442315, 1.6248597480352025]], [[0.9970852920322273, -0.04508877589337289, -0.06154610224413317, -1.3961905786866766], [-0.05231477483145565, -0.9912295259625362, -0.12135563931857453, 1.2394310065572116], [-0.05553453652766171, 0.12422169355037409, -0.9906991905236094, 1.4692426178964857]], [[0.9905475237763557, 0.04322362391499948, -0.1301818784477494, -1.4574874795173696], [0.02332657923952311, -0.9883114310045663, -0.15065319793050536, 1.1582569829155007], [-0.13517201574849788, 0.1461924542558899, -0.9799776999897124, 1.604239596576951]], [[0.981468340850109, 0.08382600701838186, -0.17231684902031008, -1.4888913203707395], [0.0562850090804941, -0.985686154075095, -0.15891759945788717, 1.135928229602226], [-0.18317176000066943, 0.1462737372599844, -0.9721379018052196, 1.686975568680507]], [[0.985653089512141, 0.03379369405681214, -0.16536617966551, -1.4315879877996778], [0.001912692078438409, -0.9819246713978846, -0.18926246672060812, 1.2590724075238728], [-0.1687730095251733, 0.18623084046996832, -0.9679017229624426, 1.6262158924270418]], [[0.9909192654359636, -0.001005302684761837, -0.13445444862243192, -1.414281614035841], [-0.03489998331722349, -0.9676229966077781, -0.24997545399547288, 1.37572608408961], [-0.12984991548825783, 0.2523979512640649, -0.9588713540644523, 1.4851559013582654]], [[0.9901818753667941, -0.09935884493842928, -0.09832432876760304, -1.3215611497692803], [-0.12231222401511838, -0.956370584226731, -0.2653206088533213, 1.4980707000010323], [-0.06767254651314687, 0.2747419253742006, -0.9591336199352537, 1.3615242958917682]], [[0.9825443978212922, -0.14129876894035734, -0.1210006785350145, -1.3396456250752693], [-0.16808538281529614, -0.9530214424712766, -0.2519869724287399, 1.5967925101768892], [-0.07971079220425406, 0.2679268334562753, -0.9601361369723898, 1.4095873851264116]], [[0.9731955145665776, -0.22804738637208893, -0.029746932553683752, -1.2289772965685246], [-0.2272710591522527, -0.9338640926105894, -0.2761262794527424, 1.6771256552170315], [0.03519028416065267, 0.27548547348537256, -0.9606609171811002, 1.1759927693206136]], [[0.9841092628302195, -0.15134430820763284, -0.09286473595997041, -1.375561305663065], [-0.17177174395256994, -0.9439213997591912, -0.28196960661770093, 1.6367423418087441], [-0.04498251650646868, 0.29344043935661174, -0.954918468644807, 1.3279382120673766]], [[0.9928806521669115, -0.08231985122864212, -0.08608979408909526, -1.4488253400342999], [-0.10466054664099027, -0.9479988075578479, -0.30057350323291543, 1.5269991192513472], [-0.05686985606995759, 0.30744382082356536, -0.9498653149304852, 1.3099685314418734]], [[0.995969036819932, -0.012895558034585856, -0.08876588465707703, -1.5469354033488778], [-0.03498265604428471, -0.9670904168358867, -0.2520165459652935, 1.3938970052248916], [-0.0825947423996476, 0.2541059429591646, -0.9636432318450477, 1.4194979078709586]], [[0.9948403083368156, -0.09925371468770142, -0.02101097401364946, -1.4835880772432652], [-0.10128777748164192, -0.9598611827365318, -0.26154788473328366, 1.4959290778069667], [0.005791980761301051, 0.26232653315346893, -0.9649617831616659, 1.2618535300370564]], [[0.9960038159522254, -0.06374923984028347, -0.06254944466892949, -1.4950729618802379], [-0.07912785036903552, -0.9546478904133887, -0.28702994377806973, 1.4859079913225546], [-0.041414754672471285, 0.29083232239393947, -0.9558772820536987, 1.3086830476885911]], [[0.9946902417842016, 0.01003423988549082, -0.10242381036266415, -1.4991123402809896], [-0.017718081879237853, -0.9636779007278911, -0.26647884198038446, 1.3702646832201728], [-0.10137747517968274, 0.26687865721823184, -0.9583832165932307, 1.4289245537723958]], [[0.9830364364343934, 0.10593447956950452, -0.14972391485900644, -1.53192280515462], [0.06709871356141808, -0.9674607152242988, -0.24396214283386378, 1.2152431274202975], [-0.1706960083914429, 0.22977739343988132, -0.9581572011852764, 1.5875917849913015]], [[0.9943921615875043, 0.04200061152171327, -0.09705759941979197, -1.5055736090382683], [0.017508365202075167, -0.9704711753252255, -0.2405808700018059, 1.2737069684734896], [-0.10429614624367212, 0.23753241146141968, -0.9657642918352495, 1.4816040209656827]], [[0.9936090450388795, -0.016789109029652756, -0.11162074822772124, -1.4686357309385918], [-0.044489285267391786, -0.9670761519459199, -0.25056819397894264, 1.3883323418066833], [-0.10373894694531334, 0.2539327512461967, -0.9616425472758654, 1.4689585267278025]], [[0.9863980525345746, -0.0996377605251394, -0.130733311109042, -1.3771567546084553], [-0.1320837882661262, -0.9538711041091327, -0.26959931309796226, 1.5530682038635821], [-0.0978404560152278, 0.28319998838834526, -0.9540571323267665, 1.4191843288706834]], [[0.9796941087846476, -0.1394094951488795, -0.1440987365489013, -1.317002901334554], [-0.17444676201447037, -0.9469602269867914, -0.2698789649598329, 1.6221624500380716], [-0.09883208201450502, 0.28953639005737863, -0.9520508906551262, 1.4135863902746248]], [[0.9851253219187974, -0.12827916126807998, -0.1143352828253105, -1.3497931543459818], [-0.1544679865363322, -0.9525822857461628, -0.26215764344765435, 1.5869532132192898], [-0.07528440243368678, 0.2759192738229316, -0.9582279546554822, 1.3947973209500348]], [[0.9971826638735732, -0.0605352573024053, -0.04429692419723809, -1.5600334534619822], [-0.07110318525631551, -0.9509407741420398, -0.3010913169132318, 1.5209157151596127], [-0.023897111047370297, 0.30339269387622, -0.9525659039594688, 1.3081811989738101]], [[0.9999824053454567, 0.002499792026923797, -0.00537959471864236, -1.6722465840541738], [0.0005382263311361232, -0.9413660675169653, -0.3373864805235381, 1.4155234461979402], [-0.0059075639591280186, 0.33737764888543725, -0.9413508499600998, 1.2123928946537899]], [[0.9991028177750227, 0.03835734630492265, -0.017951977563876415, -1.6818173362881128], [0.03215848611347163, -0.9629516738056694, -0.26774970716277, 1.294570944583642], [-0.02755705508394062, 0.26693217846356343, -0.9633212448689152, 1.3327772325187315]], [[0.9985426025512759, 0.03615636818599686, -0.04006729251800613, -1.6173075951545046], [0.023037808565170723, -0.956934293800385, -0.28938904043738906, 1.327130551742781], [-0.048805022965258224, 0.2880442229734123, -0.9563726236906844, 1.3362312601333035]], [[0.9948329726113041, -0.040069152871957975, -0.09328354406582058, -1.479182509095059], [-0.06666306132718369, -0.9508075258870712, -0.3025245196194765, 1.5082700280841186], [-0.07657279451505199, 0.30717993375972746, -0.9485658097546661, 1.3803924125088816]], [[0.9795635162145606, -0.12513829765645462, -0.1574665810926567, -1.282604774097759], [-0.1785206660668261, -0.9015853339239098, -0.39404854706034464, 1.7475966732206345], [-0.09265899572314845, 0.41410661925759706, -0.9054998721140832, 1.2603410723884119]], [[0.9780688566524306, -0.1289625513128062, -0.16355418675625083, -1.2578395623672194], [-0.18642254865687607, -0.8922340466417756, -0.4112967777232353, 1.7745680668827968], [-0.09288673209280979, 0.4327667574711967, -0.8967078613623196, 1.2400683573491065]], [[0.9806800288846149, -0.11491486706804074, -0.1583074675231893, -1.2867744400063779], [-0.1701614383763753, -0.9003281040715607, -0.40056758469525694, 1.7393287053458446], [-0.09649749134850161, 0.41976645690865216, -0.9024878701776564, 1.269557876191588]], [[0.9932125718599393, -0.016660355871512638, -0.11511394199487507, -1.4109070815126992], [-0.0562772631231829, -0.9349647796552568, -0.3502480984381809, 1.4942175963477422], [-0.10179222344918568, 0.3543491122416312, -0.9295563726309661, 1.3535543548286066]], [[0.983564739838211, 0.12042927529790813, -0.1345258049528523, -1.5033825894718342], [0.06821319458321283, -0.9376925962959771, -0.3407044979692254, 1.2945965693048327], [-0.16717464709621774, 0.3259284959970973, -0.930496240113481, 1.4841103230124144]], [[0.9564234303705513, 0.26245210159940185, -0.1279574781100519, -1.600101815343488], [0.20149192128135637, -0.9104213093013802, -0.3612949559962181, 1.1356960137594827], [-0.21131783525432693, 0.3197685630827688, -0.923630249920068, 1.5702899809237114]], [[0.9775941278080996, 0.20242279097507415, -0.05774716416397724, -1.649590670758329], [0.16192856237605768, -0.898455363816881, -0.4081140770856836, 1.2343962287562198], [-0.13449483990823996, 0.38961900996041954, -0.9111027192998161, 1.3417171347785248]], [[0.9881246894730462, 0.13315432811784234, -0.0766780474274221, -1.632359495914505], [0.09673373805865723, -0.9268083655387408, -0.3628620088802441, 1.3086649816852947], [-0.11938250280085061, 0.35113555569166344, -0.9286827442965176, 1.3713704823640396]], [[0.9972137574308221, 0.0493354612224989, -0.05595296468164067, -1.5564153324339431], [0.02615112335666451, -0.9336721138700336, -0.35717293084533747, 1.376528657322403], [-0.06986301409104918, 0.3547145275392975, -0.932360854613002, 1.2818652244432096]], [[0.997958293374238, 0.033083614422975895, -0.054632583155933244, -1.5785776401707934], [0.016520405354224756, -0.9599858625846586, -0.2795607623478682, 1.3638874225004232], [-0.06169538793548673, 0.27808742886779514, -0.9585724078092321, 1.3797690790817665]], [[0.9992621979812363, 0.019111575363831308, -0.03331377151901676, -1.569502705229959], [0.007389822405801058, -0.9468667948421154, -0.3215410756812108, 1.3847713586175945], [-0.03768886056276279, 0.32105765917126483, -0.9463094257572143, 1.2755591403407742]], [[0.999170868083411, 0.03137002301488561, -0.025951840579974177, -1.5755919055552121], [0.02047252439694665, -0.9381040583187109, -0.34574795951788617, 1.3654492978496133], [-0.035191648416339795, 0.3449299891601352, -0.9379684698643823, 1.2282902083947365]], [[0.9984081488018601, 0.050672826608611166, -0.024767580615321326, -1.6208418533828153], [0.04305191915997496, -0.968374252280255, -0.24575971959883652, 1.2946632177903832], [-0.03643762701776549, 0.2443022148162996, -0.9690143070012762, 1.3852646112711267]], [[0.9971855698365447, 0.051758925612289515, -0.05423977257720519, -1.6225395591854614], [0.036724664409939926, -0.9679376984965932, -0.2484912691687495, 1.3090189911737946], [-0.06536236175156733, 0.24579997039987636, -0.9671143346149293, 1.4286029473032409]], [[0.9978676362684574, 0.04598389140656119, -0.046321293366130396, -1.6002292337699402], [0.03395056655820627, -0.971800374519199, -0.2333482185805616, 1.3028553620387024], [-0.055745309384542245, 0.2312780011489513, -0.9712893218120785, 1.4452556329570134]], [[0.9979113571528705, 0.0601191281940725, -0.023635009847700207, -1.5871169223330928], [0.0466783810651777, -0.9240091198901709, -0.37951057310821396, 1.335746320313006], [-0.04465480944366764, 0.37761466706813124, -0.924885458426379, 1.183284550964629]], [[0.9922185755828637, 0.12444091495111842, -0.004093525918002952, -1.6807572914778184], [0.11782608979124959, -0.949086264690424, -0.2921511162745787, 1.2041718039053582], [-0.040240661436130025, 0.2893954402925286, -0.9563634080751291, 1.3245081032484982]], [[0.923543408192359, 0.3804993899605957, -0.047830820859109655, -1.7488574920906639], [0.35116656352074643, -0.8892089399180251, -0.29323967302343573, 0.7895159446198555], [-0.1541091102091997, 0.25402298204980683, -0.9548417181612102, 1.5321102350697393]], [[0.8490714715357063, 0.5271892415876499, -0.0338989642677901, -1.7287757278348055], [0.48931445021657394, -0.8090134947765544, -0.3256816452898104, 0.5375088522897047], [-0.19912057913094355, 0.25993974075478427, -0.944871592409727, 1.570042362201044]], [[0.7976366811320295, 0.6025299676513075, -0.027080675670955692, -1.7378073516598846], [0.5695221057046064, -0.7672009206305379, -0.2950378255367367, 0.33385226678292906], [-0.19854545078261632, 0.21990994853750717, -0.9551017320200808, 1.6046332391587208]], [[0.7841700809169759, 0.6196333504745831, 0.03364216363888885, -1.7485725954192803], [0.6004729673313346, -0.7440109661758023, -0.29305272173185976, 0.2463706354663786], [-0.1565551011591938, 0.2500043863411024, -0.9555042161661261, 1.4809809157884477]], [[0.8394108077426299, 0.5323920435342551, 0.10930785802624392, -1.7814597356832103], [0.5348757734355798, -0.7735341158470775, -0.3399306967785785, 0.41617059803132206], [-0.09642304100450215, 0.3438076258637954, -0.93407650305601, 1.2594666187812713]], [[0.869091481852108, 0.48851613927685783, 0.07766580868142985, -1.7668023241360729], [0.4894297036710959, -0.8264976851112229, -0.27813691173631244, 0.47674575551001597], [-0.07168375922431867, 0.27973837450700906, -0.9573964071854701, 1.349923212355124]], [[0.8837924645517626, 0.4677613770900205, 0.010496366245946166, -1.7476595196113351], [0.45375822306804414, -0.8514333568145768, -0.26299185139770387, 0.5080309643295605], [-0.11408047422610285, 0.23719302900023953, -0.9647409561089642, 1.471320874797345]], [[0.9319588995422143, 0.35896540683717076, -0.05095533591577493, -1.724207805240553], [0.34719598447930505, -0.9240823097634606, -0.15977118996763687, 0.5941916190458719], [-0.10443925471541395, 0.13120869436303775, -0.9858380803144281, 1.5996940966029003]], [[0.9808256110054703, 0.1946239730876221, -0.010130641407850693, -1.6913782712234329], [0.18783765520988863, -0.9579222535353141, -0.21702988611496882, 0.9092146384296177], [-0.051943585561615886, 0.21096555472733902, -0.976112390371923, 1.4335281087027132]], [[0.991658107286392, 0.12509873870671345, -0.031056461922763786, -1.6698506896149767], [0.11808474822642008, -0.9783097768094612, -0.1701939271399687, 0.9895336968108542], [-0.05167388595290294, 0.1651068931723065, -0.9849210746742678, 1.496811766851325]], [[0.9940802121030606, 0.10863979600841935, 0.0013880303969373425, -1.6553194550443286], [0.10628106469295563, -0.9696860502766043, -0.22003022334827338, 1.0329799723737048], [-0.022558084866973326, 0.21887521244354813, -0.9754920677201463, 1.3583507372738404]], [[0.9633862743989451, 0.26225999579963155, -0.05573671054967028, -1.6534049453854804], [0.2552040732206723, -0.9606917850505486, -0.1092802596444985, 0.6951005190470629], [-0.08220564038615728, 0.09105486664406531, -0.9924470988164227, 1.5953720996357665]], [[0.9753877307130538, 0.22015454959686223, 0.012277991132179072, -1.690337359196911], [0.2202650383044832, -0.970299823899521, -0.10000782290042709, 0.7418043504601133], [-0.010103844573413057, 0.10025081561943208, -0.9949108936444887, 1.4654692017172868]], [[0.9707549111321073, 0.23089923541934987, -0.06573009657420202, -1.7447832939909893], [0.2298435777376991, -0.9729486981537142, -0.023297221588136387, 0.6818369440511078], [-0.06933132254348363, 0.007508251710757278, -0.9975654333779911, 1.6799390052785739]], [[0.9764048662776001, 0.21469171335545958, 0.02325952118851675, -1.7468262999619975], [0.21586613494277504, -0.9733220729067233, -0.07775573404853962, 0.7413911424554206], [0.005945493611932556, 0.08094202004556565, -0.996701078807811, 1.4701400856969729]], [[0.9769695421979036, 0.21236743812450537, -0.020750538355745446, -1.7454802416058608], [0.21053800631323766, -0.9752094597562995, -0.06811943554870248, 0.7564877551674278], [-0.034702471313524184, 0.062181836787450435, -0.9974613564737599, 1.5656648500651937]], [[0.9685367630670532, 0.20644464045337482, -0.13898614684806476, -1.6313946589270518], [0.19672944710583426, -0.977148162819745, -0.08049218930698013, 0.8207951923267016], [-0.15242723913076622, 0.05061697665877293, -0.9870176586287088, 1.7535059426754]], [[0.9817474958212404, 0.18994560237002295, -0.009618866306002434, -1.7022577549027864], [0.18597784862241817, -0.9693650058667943, -0.16044851268442867, 0.9097492153902488], [-0.03980068178436805, 0.15573102947440337, -0.9869973415305334, 1.4703950394329113]], [[0.9811147196283576, 0.19176012166609183, -0.025336982203388737, -1.6922634847538278], [0.18433843777427886, -0.9666401086645997, -0.17783768070864275, 0.9339966439339845], [-0.058593918519821646, 0.16980858653053005, -0.9837336004493269, 1.4920187861661824]], [[0.9748157026555312, 0.22116488486553015, -0.028643316124704943, -1.699848349933638], [0.2150885970659162, -0.9663264084436217, -0.14124506276917298, 0.8443062173960866], [-0.0589172408418701, 0.13152705442937762, -0.9895602016475367, 1.5265436105779222]], [[0.9502372795197929, 0.27225105438142116, -0.15142151762225706, -1.636305684662634], [0.25917470506526197, -0.9605725318228027, -0.10064235371783148, 0.7200064550655051], [-0.17285133746997014, 0.05638948923101805, -0.9833324161437511, 1.749161752252314]], [[0.9775787600016331, 0.2105422469083792, 0.0034249467792295514, -1.7298346762035965], [0.20984753687059488, -0.9727490570491811, -0.09860671011281259, 0.7913597242952095], [-0.017429264557455585, 0.09711454204545804, -0.9951205889038204, 1.4928339719937114]], [[0.9867848878639327, 0.15947858451091068, -0.028673440075479, -1.6589921152977527], [0.15510777377866897, -0.980877422659416, -0.11756300536497752, 0.8870509122941609], [-0.04687391168647028, 0.11156192360934264, -0.9926513857360958, 1.5371995176520639]], [[0.9886773362932199, 0.1492889405946605, -0.01516367093640049, -1.6487790831778824], [0.148358948808516, -0.9876448392791423, -0.050470721747459084, 0.8311902606971244], [-0.02251104192558912, 0.0476495924578715, -0.9986104191976084, 1.5699850821596049]], [[0.964367102252155, 0.15952378880583656, -0.21106457044897986, -1.413247538007085], [0.14469616759204507, -0.9859020695756344, -0.08402456956543033, 0.8950019740206953], [-0.22149291450959857, 0.05049029621137008, -0.9738540028210244, 1.8583247508356713]], [[0.9553626156027113, 0.1455987665373913, -0.25706666818460966, -1.2361945872349167], [0.11818832589148115, -0.9858205523159537, -0.11911909273679558, 0.9382942798746404], [-0.2707651977853044, 0.08341964885000708, -0.9590241758443979, 1.8652599934103833]], [[0.9256784192940709, 0.2349896888937603, -0.29647817823044575, -1.1630722607010382], [0.22082619235847709, -0.9719522536514426, -0.08089876012856295, 0.7023810109149624], [-0.3071730079640578, 0.009416089182651098, -0.9516071040312895, 1.985489275592592]], [[0.864082256349055, 0.3452286873516766, -0.366304528626339, -1.0740670117076103], [0.33510151001861316, -0.9375664852830516, -0.09314538988716359, 0.511762262344521], [-0.37559131013106706, -0.04226392200712972, -0.9258212185139229, 2.1081808756195346]], [[0.7770738743367175, 0.34901188461969146, -0.523781345809045, -0.8075898824634969], [0.3666007711383622, -0.9274237488314956, -0.0740882224384749, 0.4492892132104176], [-0.5116249294396056, -0.13444662322849885, -0.8486247916944051, 2.3279159860949195]], [[0.8215897742250303, 0.35088096700194127, -0.4493025594013973, -0.9449494939513006], [0.35351073476370576, -0.9318883232782309, -0.08132842888259809, 0.4821639791124654], [-0.4472364064962606, -0.09201467238147132, -0.8896701055845596, 2.210406849974279]], [[0.8547501146478647, 0.36669768197972935, -0.36733506712558167, -1.0815978523868237], [0.3403438706717283, -0.9303045764156879, -0.13674591327061117, 0.5741469531441594], [-0.39187790344142676, -0.00813665353329776, -0.9199812518000738, 2.0971149669205973]], [[0.8800819110339931, 0.3567730976966423, -0.3133189854297002, -1.2229152201014624], [0.29534634079768013, -0.928004059493544, -0.22711011545266624, 0.769610103184927], [-0.3717880698034502, 0.10733788857362969, -0.9220912150261382, 1.983035795476555]], [[0.8946724479616641, 0.3327697216942556, -0.2980361105332895, -1.302340529681085], [0.2805441564505376, -0.9377271931197935, -0.20484796207219114, 0.803630770671785], [-0.34764376470712055, 0.09965953846572446, -0.9323152842537008, 1.9845749784115692]], [[0.9333634988660042, 0.2656483220657262, -0.24137843310510293, -1.3987696570833892], [0.20884673054910788, -0.9488695325882018, -0.2367058369892815, 0.9632527268503691], [-0.2919171494166774, 0.17052149163525454, -0.9411199704431575, 1.8626783114037493]], [[0.9248463186565189, 0.30221953871961643, -0.2309169488876618, -1.3981133949335514], [0.24504166396841795, -0.9377964185065929, -0.24595215054110892, 0.906600931531307], [-0.29088463312295076, 0.17088366759965573, -0.941373943956713, 1.8481487252349833]], [[0.8953459256293635, 0.33723793922583345, -0.29090590541549793, -1.309707401641529], [0.2726539452196496, -0.9315152388526446, -0.24070560014561493, 0.8621828124261879], [-0.3521583445199871, 0.13619813556731736, -0.925977628376047, 1.9618917481697125]], [[0.8849517623395148, 0.3458916111929938, -0.31180021109438316, -1.2646303477004317], [0.27480956764418046, -0.9284336683944285, -0.2499812491425766, 0.8655646758506246], [-0.37595223082647833, 0.13553566577834483, -0.9166733351846857, 1.9809060272480474]], [[0.8353205440274923, 0.42736031110403144, -0.34583630986158703, -1.2483432846131415], [0.3275709104141921, -0.8921057003037468, -0.31119884019060673, 0.7933211587381596], [-0.44151657655860616, 0.14666486961309752, -0.8851850250909927, 2.059590619850695]], [[0.8232184497845276, 0.4416859306568025, -0.35668602803332994, -1.1679028141561754], [0.36116022701318806, -0.8921815664198826, -0.2712477519986971, 0.7273268163694785], [-0.43803501499097264, 0.09447534705095557, -0.8939797170190492, 2.085045317578666]], [[0.7594890952414767, 0.5537899291495986, -0.34131075075620776, -1.1559120160568188], [0.46243271475328973, -0.8286318872500162, -0.31547611598721514, 0.5499089551983085], [-0.45752846745878684, 0.08176741285474852, -0.8854274626754328, 2.1039204635614674]], [[0.6789020901748954, 0.6413600077398145, -0.35742033018302605, -1.1000984535666722], [0.567131362205487, -0.7672398194710632, -0.29950805902506006, 0.33125058262027074], [-0.4663196006593621, 0.0006323685597047213, -0.8846160919579169, 2.1706899227404333]], [[0.6463218363812487, 0.6823210615624397, -0.3416226760112329, -1.0791447634959235], [0.5911949409933007, -0.7308175787733435, -0.3411659541920844, 0.2778191660257275], [-0.48244857296990534, 0.018537408237754655, -0.8757281193013781, 2.161605454674123]], [[0.5757126792530122, 0.7291975389285577, -0.3698997974693317, -1.003739672342847], [0.6660891268696598, -0.6806350128798923, -0.3050594275022528, 0.0904705912553763], [-0.4742153371764059, -0.0707596527868992, -0.8775607588789189, 2.267589219350686]], [[0.6014894099975762, 0.7537255701622052, -0.26477963393060766, -1.1741656508157354], [0.688201376690081, -0.6571838687495142, -0.30738937486077655, 0.03349294336827219], [-0.40569613602133947, 0.002669745133992457, -0.9140041125062156, 2.1210866089972775]], [[0.590797546947385, 0.7393934822821403, -0.3228862599734509, -1.1345363755834772], [0.6799837455686438, -0.6717091742666215, -0.29398790956175647, 0.048248007294678937], [-0.4342584072685184, -0.045870072648122664, -0.8996196819500258, 2.199642890673975]], [[0.6274896910203477, 0.7506611403370356, -0.2067958898312291, -1.2952522546459193], [0.6789086798896127, -0.6575193663289057, -0.32672815500500896, 0.07975724194266205], [-0.3812344318575278, 0.06462302445982376, -0.9222169878482678, 2.0193038301674333]], [[0.58720183111329, 0.7724606313868035, -0.24186480209964428, -1.2719644201083222], [0.7323265034074539, -0.6342745496365612, -0.2477774971427998, -0.12795204088682763], [-0.3448070503110569, -0.03162860478804827, -0.9381405701785579, 2.083680001622647]], [[0.7054765813738764, 0.7005498246870091, -0.10739057809710034, -1.5345837974398409], [0.6834912658423061, -0.712573911147401, -0.15836069799473124, -0.11607090367471415], [-0.18746328347255253, 0.03831924168217975, -0.9815238932734103, 1.8121009951292908]], [[0.7478371674314107, 0.6400373873672344, -0.1763284258997655, -1.5471420243328555], [0.621361226432977, -0.7683255737714195, -0.15357746896770458, 0.032196519721627175], [-0.23377296099821065, 0.005287292402019, -0.9722768367317949, 1.8894371892467188]], [[0.8191477232717982, 0.5691197660845996, -0.07141217900638566, -1.7191968841512408], [0.5535448186735338, -0.8170009977606081, -0.16154721717768664, 0.20493284737682874], [-0.1502835359522593, 0.09280119347282503, -0.9842778049472133, 1.6900588221406136]], [[0.9249395795931835, 0.3537827900373325, 0.1390126309922435, -1.888105321734217], [0.3746229444807685, -0.9103687920636018, -0.17574501957443395, 0.5787182299362196], [0.06437719759778307, 0.21463084566310553, -0.9745712783164691, 1.2580330214664939]], [[0.9562072033477582, 0.24823494488968945, 0.15507158476481636, -1.9336828503739358], [0.28230040478174645, -0.9220965850149409, -0.2646589680397128, 0.854863957500146], [0.07729337439859192, 0.2968455828194121, -0.9517922221969889, 1.152505308667763]], [[0.9864102428038987, 0.10849332169550369, 0.12338570435439233, -1.7954632109438355], [0.14149933989487232, -0.9426321494965877, -0.30236165025471884, 1.1251734546510725], [0.08350311192326282, 0.31571162456095514, -0.9451737408626059, 1.1387734921622958]], [[0.9896642465024074, 0.01573068194522443, 0.14253850301010065, -1.752921607778565], [0.06162730621794731, -0.9441543776989408, -0.32368902700006014, 1.2452927266600204], [0.12948650247474305, 0.3291277209799632, -0.935365270340627, 1.0279023730176526]], [[0.9866212962812431, 0.017242464114282912, 0.16211451247679015, -1.7956813540020349], [0.06906673864150527, -0.9449536320403569, -0.319831860369107, 1.2545363589775074], [0.14767600799637592, 0.32674964533263934, -0.9335022581318424, 1.0207519045515485]], [[0.9944928877454883, 0.05962598576387216, 0.08618954719295228, -1.9104029886473912], [0.08314603831641554, -0.9495160033102203, -0.30249974507438915, 1.2701031261189686], [0.0638015088843892, 0.30800016441468303, -0.9492445765895127, 1.2593266121478521]], [[0.9896585852000059, 0.06209711027188078, 0.12930519570305185, -1.8053436621229002], [0.10712544618418562, -0.9194420253386412, -0.37835235009315893, 1.268238038905219], [0.09539404341866325, 0.3882915282839159, -0.9165858746146914, 1.010777472185523]], [[0.9936983895707876, 0.09767844171484712, 0.05497665494173456, -1.7026598958187091], [0.11180078249886462, -0.8987815029547633, -0.42390139770826213, 1.293617554390419], [0.0080059725870689, 0.427376569281162, -0.90403825827915, 1.0821327784825467]], [[0.9989402138549162, 0.023890027920790684, -0.03934101815456449, -1.524017081839794], [0.009612938925314788, -0.9441862731114933, -0.3292717313603565, 1.416882752060088], [-0.04501156016749586, 0.3285445909367135, -0.9434152909601982, 1.3374334417001774]], [[0.9891219058619598, -0.07045674923527451, -0.12912668907395286, -1.319470631627596], [-0.11277110531277879, -0.9268425678997045, -0.35811385359354053, 1.625891638735248], [-0.09444857410537129, 0.368780016834263, -0.9247057726829561, 1.335974122357004]], [[0.9793025666549944, -0.10072835147876986, -0.17555706237947177, -1.2379740847764151], [-0.15493327839786777, -0.9311885215511821, -0.3299751756969191, 1.6629844658232702], [-0.13023886588814088, 0.3503451677127761, -0.9275214829169607, 1.4116882115193954]], [[0.9846230985658836, -0.09538073214035592, -0.14635528588639374, -1.267154006399482], [-0.1385607025547829, -0.9366199604089293, -0.3217825064715308, 1.6862034935064805], [-0.10638743101533821, 0.3371135798213199, -0.9354336688520524, 1.3993158296816632]], [[0.9871267657338619, -0.14781583983561475, -0.06108376106214347, -1.2885409326235646], [-0.15991548258152916, -0.9054969661071336, -0.3930677839781494, 1.730950696720033], [0.0027904842808701806, 0.39777596944067445, -0.9174783328956656, 1.1006665184132767]], [[0.987310565413825, -0.11525977928601046, -0.10923841220547569, -1.2200239166997267], [-0.14932176369625602, -0.907935722517252, -0.39160660702255146, 1.593209646374387], [-0.054044965620053245, 0.40294901297312513, -0.913625325084146, 1.2859162380108944]], [[0.9977480952972927, -0.052470612703515, -0.041780056643597754, -1.532009873828502], [-0.06477742302653706, -0.9153825347857032, -0.3973395279547984, 1.6316382303039438], [-0.017396085670793072, 0.3991511616065005, -0.9167200916264003, 1.0892643412512317]], [[0.9884734778391902, -0.1388650062998894, 0.060305005047903745, -1.4762543983136391], [-0.11520594331783923, -0.9483787668564548, -0.29547471160841987, 1.5891954688823207], [0.09822308401156439, 0.28512142080377567, -0.9534453320280588, 1.092124634498675]], [[0.9706635090453596, -0.2401646434101858, 0.011545400097324417, -1.313084603744758], [-0.222405625747066, -0.9150616805779387, -0.3364488941487757, 1.7698471307436046], [0.09136788190499445, 0.32401090227573576, -0.9416309496626893, 1.0454588720765483]], [[0.9528343491516357, -0.29754065375643346, -0.05980185982871241, -1.1434172778885798], [-0.2991209347791345, -0.8873843984165031, -0.35082131609102496, 1.8827084833915986], [0.051316366333125966, 0.35216258859960725, -0.9345309741989237, 1.076035949822162]], [[0.9609638894366552, -0.26783175868324893, -0.06938697456593254, -1.1359416484813147], [-0.27546882471983414, -0.9028206104961015, -0.3301997454131664, 1.851542646552367], [0.025793987792676738, 0.33642397997777224, -0.9413573051130303, 1.1692022644196154]], [[0.96919125174497, -0.17767466623218892, -0.17058731054887508, -1.1403996585536527], [-0.23059354997312775, -0.8979428274514427, -0.3748670342125317, 1.8156499731807736], [-0.08657327677643209, 0.4026541836462016, -0.9112489649598524, 1.2165118608857703]], [[-0.9562992338798973, -0.17687243951841392, 0.23282593373489674, 1.550622798973821], [0.26002093355786243, -0.8786116446882283, 0.4005380031032565, 0.7128265995779294], [0.13371944283618303, 0.44357380215365694, 0.8862061795375439, -2.5177383398494726]], [[0.9646782404347045, -0.13302079641704903, -0.22737933097002522, -1.1077576777475364], [-0.19990324951255958, -0.931789959513581, -0.3029953170991231, 1.737363828136832], [-0.1715650992076233, 0.3377468564920373, -0.9254687880548027, 1.4739535737180303]], [[0.9816294208885648, -0.06572551100035634, -0.17911961715491412, -1.2175335798782354], [-0.13957027131005334, -0.8874586905687039, -0.43924618598289517, 1.6518446962776485], [-0.13009158086678427, 0.45617675273716446, -0.8803288878877924, 1.203902050154331]], [[-0.9756276774849783, -0.03481270847749865, 0.2166534335147448, 1.3244747630447626], [0.12767822367960904, -0.8930522546155094, 0.4314579257867157, 0.9332423236036502], [0.17846261827981502, 0.44860421961303043, 0.8757313218231358, -2.5770629894752726]], [[0.9766299831668873, -0.018900082586534805, -0.21409498559673587, -1.2681106464334637], [-0.09941404493847276, -0.9228846880062489, -0.37202244597951334, 1.607879602748312], [-0.19055372903308845, 0.38461232367389214, -0.90319579097212, 1.4069945144574099]], [[0.987054991514191, -0.0386903843142713, -0.15564542360292624, -1.3330658882624757], [-0.08511160912244037, -0.9489032334709752, -0.30387278177046, 1.5078026355561862], [-0.1359354910224305, 0.3131863784872239, -0.939912673928035, 1.4232536260052961]], [[0.9896683904213441, -0.027258442719399267, -0.14076027245405281, -1.4204407603175842], [-0.059065168910154175, -0.97209442412003, -0.2270324567465253, 1.3541934479452542], [-0.13064372477253128, 0.2330008753100751, -0.9636611485798827, 1.4989350830925872]], [[0.9855854567447933, -0.14234247717009615, 0.09143263447061961, 13.389119417115158], [0.14660519603939978, 0.44888911763491474, -0.8814791413091956, -7.4804721954958655], [0.084428809937168, 0.8821775213991956, 0.46328673280223037, 19.025447488416166]], [[0.9740549384316527, -0.2143879454480246, -0.07248990111376938, -1.1741496902163087], [-0.22618137719615303, -0.9330713558273435, -0.27967808198744193, 1.5684681693220426], [-0.007678640931882995, 0.2888176825976858, -0.9573533228084297, 1.1582890076650567]], [[0.9894941543587186, -0.1309107355587746, -0.061348983735551865, -1.396854001831193], [-0.14059899846851612, -0.9701674176038271, -0.19750216062000883, 1.476839240275565], [-0.033663632002126936, 0.2040528390769953, -0.9783809067766212, 1.3924291667795383]], [[0.9843405554340809, -0.17192938403217758, 0.03890961107542714, -1.4926151376045729], [-0.15447920760305803, -0.9476657697422244, -0.27940251122208926, 1.5890705898829944], [0.08491080818162261, 0.26901649719895326, -0.9593853651628996, 1.1389794783227511]], [[0.9687405138229682, -0.19902864248415805, 0.1480858411493983, -1.644232371423584], [-0.14168520751932376, -0.9338908756121109, -0.3282881880583761, 1.6469469428659862], [0.20363476826961005, 0.2970444948477564, -0.9328973412077152, 0.933090241305393]], [[0.9432183374657175, -0.1971784284622817, 0.26731972470723814, -1.6791552991381278], [-0.056182224694567046, -0.8878632995315603, -0.4566643395025497, 1.598942319611153], [0.3273877296063154, 0.4157155622466828, -0.8485268680537739, 0.4873285305042855]], [[0.9616868997444616, -0.16537307465796283, 0.21865510064495933, -1.6488975837473763], [-0.03910254451956521, -0.8721617884119555, -0.48765234116751127, 1.6572056074602035], [0.271347190646929, 0.460418897323113, -0.8452130743876292, 0.5506586836520035]], [[0.9677923720772247, -0.21520400626208108, 0.13063368722457708, -1.4981988013702516], [-0.12080931919695519, -0.8522557750202697, -0.508984481433145, 1.8104737817843393], [0.2208688138789781, 0.4768095318188904, -0.8508052876083598, 0.6376212307117962]], [[0.9573553253109367, -0.28253974582437513, 0.06034959095377221, -1.3502143732124803], [-0.21367583277436059, -0.8330191468633404, -0.5103153333452326, 1.9303644289054709], [0.1944567293435062, 0.47565785286124507, -0.857867231816472, 0.688805472861621]], [[0.9774916168661179, -0.20578896074044933, 0.046487015325013654, -1.4507480070661196], [-0.15587142881322835, -0.8529292769124664, -0.4982125512924175, 1.8377323083741088], [0.14217677952529706, 0.47975259480584664, -0.8658078373062189, 0.7812927525206359]], [[0.9907900815808877, -0.1244615526821081, 0.05333231801541223, -1.5535544502249745], [-0.08606919976588512, -0.882934875461304, -0.4615388375270185, 1.6683838426238886], [0.10453280390670862, 0.4526978325528964, -0.8855154235298848, 0.8766532222133138]], [[0.9917702016772869, -0.10306716372952288, 0.07595410999903482, -1.617750856282462], [-0.06000221004410769, -0.8982362693259224, -0.4353979091098991, 1.6029803422205149], [0.11309996399122565, 0.4272572576659183, -0.897028223589973, 0.8902842070117666]], [[0.9890279090229656, -0.07214392082405241, 0.1289148938710865, -1.7243786457216475], [-0.01586062918581595, -0.9194576328724677, -0.3928690644405441, 1.5158359472678569], [0.14687489783993274, 0.38651379799522195, -0.9105135080512634, 0.891483951170519]], [[0.98466375657601, -0.01652762817801398, 0.1736782196834949, -1.8310442377025908], [0.054769318908297504, -0.915891742786961, -0.3976715192228184, 1.407120304295385], [0.1656430143167535, 0.4010849698025003, -0.9009401971310788, 0.7823939191002135]], [[0.9780329152804853, 0.010332320984025818, 0.2081942837136458, -1.9055710362126892], [0.08888712114397482, -0.9240862948913667, -0.3717036444382571, 1.3240759283073769], [0.1885489228892367, 0.38204418950826746, -0.9047052232303512, 0.7894816246071567]], [[0.9845851026471244, -0.026940378633880543, 0.17281895626468374, -1.8653572282995223], [0.03953907667858944, -0.928206578446219, -0.3699583883960011, 1.4120244662621342], [0.1703785111472575, 0.3710886197773046, -0.9128331716206515, 0.8269632078541344]], [[0.973139592419386, -0.21676023160386693, 0.07755214800938398, -1.5149600579145024], [-0.1726686708389425, -0.9100287066469577, -0.3768730332475101, 1.7077972929559375], [0.15226576692265525, 0.35335924365085436, -0.9230126657581423, 0.8880591883004867]], [[0.9210284247683528, -0.38370907756819, -0.06688785061949178, -1.0909266593992408], [-0.37997830618977607, -0.8474450030609693, -0.37074715590566937, 1.9714695445275212], [0.08557527443061745, 0.3668846011742148, -0.9263220616110587, 0.9791934784079416]], [[0.9265749545077524, -0.3613874971007608, -0.10420139451180178, -1.052407939784941], [-0.3738522182322115, -0.8546473741737246, -0.360294858054916, 1.9794747464364242], [0.04115060876598821, 0.37279611419273784, -0.9270003692776954, 1.0500594733384705]], [[0.9318619369596168, -0.33249636004257943, -0.14518781286425664, -1.0149533120912542], [-0.3627946757514783, -0.8579826416285958, -0.36365616990558014, 1.9834892394893135], [-0.0036542704129218923, 0.3915507083666837, -0.9201492754359466, 1.1350363959251688]], [[0.9771487000159308, -0.1867865345197282, -0.10144559418371506, -1.2491876108943472], [-0.21149045368457348, -0.902119042910423, -0.37610240682382773, 1.7854114534357226], [-0.021265137137340434, 0.388962752638981, -0.921008018967282, 1.1225420674729947]], [[-0.9825631562374598, -0.15639143734573754, 0.10055527002407927, 1.7833107954642395], [0.18509913465112468, -0.8738234741964652, 0.44963412492227994, 0.7735013760774215], [0.017548628324916375, 0.4604066184017709, 0.8875346705204034, -2.316268312939241]], [[0.9865316190686776, -0.15089024319942823, -0.06314664745614901, -1.442348338555192], [-0.16301828550325242, -0.9386799662625537, -0.30381731275375157, 1.6873536933403315], [-0.013431424694121015, 0.31001944365563305, -0.9506353356498682, 1.2365877450147937]], [[0.9784917199504886, -0.20102650568470756, -0.04628496516721474, -1.3616454876297], [-0.20577603720092327, -0.9354172379923049, -0.28749054485449055, 1.738988147760301], [0.014497465372204869, 0.29083145441826586, -0.9566644597865742, 1.2038731076951068]], [[0.931274827390892, -0.33621511563941336, -0.1403089159092905, -1.0683743027497077], [-0.3643158419679429, -0.8605755010544356, -0.3559266417059775, 1.9408274345297876], [-0.0010784986107191252, 0.3825822826536565, -0.923920794137822, 1.0283998217734713]], [[0.891123070125772, -0.4058778778378999, -0.20288622962493388, -0.8396685707623663], [-0.4431347746632816, -0.8746179277601456, -0.19665973640954684, 1.885074609673475], [-0.09762809725556101, 0.2651539717265283, -0.9592508149091703, 1.3523479268535734]], [[0.8600057106656506, -0.4533048079746989, -0.23431800760823032, -0.666603160291672], [-0.4741584643719032, -0.8795907998449581, -0.03864939187859201, 1.7805258804968858], [-0.1885840085663363, 0.14434256439154616, -0.9713914225573149, 1.6749279405598014]], [[0.8084271506360554, -0.5134823646113114, -0.2877175756669115, -0.45521983921408976], [-0.5807780866435275, -0.7752990270583073, -0.24821005764699655, 1.9856471841593706], [-0.09561566916124166, 0.3677598127523156, -0.9249920885798049, 1.1974313385851134]], [[0.8594392338818196, -0.3783856045482715, -0.3437855982080546, -0.6316054372394322], [-0.4556054626302215, -0.8719408301524406, -0.1792842746438607, 1.8399462625595864], [-0.23192211124886883, 0.3107145361641655, -0.9217747074693228, 1.4621357351555841]], [[0.8924152800662317, -0.3387533938286011, -0.29806225201107556, -0.725360023864414], [-0.37943206465328677, -0.9208868263074061, -0.08943579510698232, 1.7316626947510048], [-0.24418492217426785, 0.1929082458141144, -0.9503473746371213, 1.6885070342208381]], [[0.9024348346243147, -0.31998068648617123, -0.28848523278050886, -0.7428478855974495], [-0.3807297329780425, -0.9057019631437936, -0.18641036554855708, 1.84027100445957], [-0.20163392493093574, 0.2780581130507017, -0.9391631626525972, 1.52698868063326]], [[0.8785705020517818, -0.3461523100773179, -0.32907818395119515, -0.6570395623028494], [-0.41906521443643624, -0.8892303842267515, -0.1834493658132606, 1.9324925752842272], [-0.2291248981970838, 0.29907842114749794, -0.9263119771600147, 1.5567311638777732]], [[0.8900343428895298, -0.32171705964332803, -0.3230123867774335, -0.7238443087120383], [-0.4251278462504778, -0.8415673958312658, -0.3332125937239034, 1.9626139665148568], [-0.1646365172725453, 0.43389221220048685, -0.885794764814138, 1.2320603359263422]], [[0.9378607493396477, -0.25538191063105325, -0.23494104488255615, -0.9908063485963216], [-0.32215474423528684, -0.8924034647487077, -0.3159626194207132, 1.8607491433085614], [-0.1289710650292207, 0.3720163112377389, -0.9192226762641866, 1.2941619024412743]], [[0.961233884924166, -0.21691064076870115, -0.17023275946452507, -1.1475490135277462], [-0.2581872534872091, -0.9247703545158081, -0.27953377889879066, 1.7722717808898814], [-0.09679235822278007, 0.3126492688781118, -0.94492416312615, 1.35621717728624]], [[0.9631863308737555, -0.23006098632403038, -0.1390828335545638, -1.1636034923980179], [-0.26264359344128224, -0.9156747015256329, -0.3042337650725067, 1.8268333892368183], [-0.05736231203676026, 0.32956301909886226, -0.9423894001951847, 1.2829471946801343]], [[0.9615386856885988, -0.23712483230828066, -0.13861879319562614, -1.158426303018516], [-0.2733865258368108, -0.8749504595055958, -0.3996517245075079, 1.8600316006653435], [-0.026517228647066293, 0.42217710420357474, -0.9061254489700433, 1.0609213404436417]], [[0.9700057513183608, -0.21300297420331035, -0.11712632236114362, -1.254317999172528], [-0.24214892856434658, -0.8888913246940531, -0.38889087065498285, 1.848226203191663], [-0.02127765975011342, 0.4055883946369713, -0.9138081392345786, 1.078776759045091]], [[0.9748148126824456, -0.21723743216642766, -0.05043787307792702, -1.3619747037200252], [-0.21953534206247038, -0.8949368693531312, -0.3884484952447762, 1.836730732074707], [0.03924684140669739, 0.3897382428478806, -0.9200890106405164, 1.0065315616249555]], [[0.9414315472345728, -0.31270594504968957, 0.12618095657467568, -1.436803469228162], [-0.24898606280098307, -0.8969869274353325, -0.36526756294665236, 1.8434821415752378], [0.2274040070059993, 0.3124571073614781, -0.9223112130170126, 0.7468349217469991]], [[0.8821879063111266, -0.39485445481275755, 0.25658226258436384, -1.4768582391222291], [-0.2842916335138012, -0.8809649184308956, -0.37825795379357197, 1.8872533582818392], [0.3753968101521988, 0.2607504017419061, -0.8894304148830242, 0.5065934631285214]], [[0.8693825492065113, -0.34212639619038177, 0.3565438432576979, -1.701671937702796], [-0.2901293594180828, -0.9374986060346309, -0.1921492089153063, 1.7701933602881654], [0.39999867242134796, 0.06360733222598632, -0.914305840158671, 0.7234037017767875]], [[0.8112215249565611, -0.40034633676324416, 0.4261953168295058, -1.5855397378226548], [-0.30403777128394127, -0.911379133105439, -0.2773970248086167, 1.7983744757057876], [0.4994804010968254, 0.09545096322316285, -0.8610507781425698, 0.4616529684521752]], [[0.8037856781509792, -0.3656824127435065, 0.46926000959964415, -1.653068879957996], [-0.28205410258960534, -0.9287355349367643, -0.2406154387359518, 1.6992739931714906], [0.5238072802202569, 0.061046532709155193, -0.849646546531231, 0.4665307775777373]], [[0.8098716884900016, -0.2841234849946639, 0.5132072616953515, -1.7866445516891736], [-0.22332479049019152, -0.9583290286321111, -0.17813340740452577, 1.5401159940524214], [0.5424333010931998, 0.029653299235021385, -0.8395753663070472, 0.483433398878625]], [[0.821012400763101, -0.2696070301640653, 0.5032401882593659, -1.7964221026179967], [-0.231177977656848, -0.9629673754886947, -0.13874644640820671, 1.5155948718213519], [0.5220109006904924, -0.0024254959345009347, -0.8529353648019131, 0.5779933368996067]], [[0.9301377446058818, -0.25604588153096436, 0.263219077216137, -1.5679247321261063], [-0.22569601141206658, -0.9640513261162108, -0.14023676781165467, 1.4864841331437209], [0.2896637472866904, 0.07103201506790434, -0.954489060358067, 1.0369136082943904]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9340225111135196, 0.09971234580818508, -0.34301515538912203, -1.1458459430558208], [-0.030178850050857797, -0.9347908910154664, -0.35391415213878935, 1.5219123030035846], [-0.35593705306247964, 0.34091558803894434, -0.8701065314599462, 1.65844652133551]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.957182294781536, -0.024502756772599457, -0.28844699594084255, -1.126933613484424], [-0.14019992384271507, -0.9109962759315646, -0.38785276406558894, 1.7107826274480333], [-0.2532706771642752, 0.411686045609228, -0.875424790567063, 1.4666807847793515]], [[-0.9343477323083209, -0.10075788888643183, 0.34182182925823745, 1.2719595454951254], [0.26097586753727803, -0.8466280190160889, 0.46380232209429295, 0.5599998747348813], [0.24266419532651148, 0.522559896321984, 0.8173403471397294, -2.763462708985933]], [[-0.9338126607779215, -0.0901524454771501, 0.3462173466846339, 1.2592146311756347], [0.24329762166085714, -0.8695273504564742, 0.4298004817381132, 0.6782962569353895], [0.26229788764881223, 0.4855869884816038, 0.8339095243204373, -2.7268378684290564]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8753157067142625, -0.2131872047556539, 0.43402030978720596, 1.2816210389947618], [0.39631185418940407, -0.8305516703447311, 0.3913065768889322, 0.40744715559769595], [0.27705473792784674, 0.5145241866191017, 0.8114835386966791, -2.823408598374927]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9970854436958658, -0.05950486039675934, -0.047747141893319675, -1.4245516130614109], [-0.0749653676623678, -0.8803906698878177, -0.468286730567636, 1.6150782537795827], [-0.014170801708606347, 0.4705012645717776, -0.882285525448136, 1.0636942881986702]], [[0.9970333512879311, -0.07592936727983148, -0.012618542072722873, -1.4061541028070472], [-0.07361819596277734, -0.8928478048457412, -0.4443007524248945, 1.6057026774851435], [0.02246903742359105, 0.44391162247301624, -0.8957888220951585, 1.0913759669038394]], [[0.9799819660954786, -0.1565321764037135, -0.12301635613997028, -1.2285791534495347], [-0.19537586427502276, -0.874892675366192, -0.44316033018465767, 1.723098205489125], [-0.0382572579575061, 0.45832355857069323, -0.8879616533796204, 1.1452486772725843]], [[0.9727993971346884, -0.16195692946808962, -0.16562392922417585, -1.1478076198092906], [-0.22140625296975183, -0.8603129575903617, -0.4591741348856865, 1.779246482843563], [-0.06812197942133526, 0.4833544951682901, -0.8727702033870809, 1.1474318915301362]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.48129042546069545, -0.8733831252592726, -0.07457508211331657, -0.24663312721320244], [-0.6758085389965965, -0.31553621957725253, -0.6661228961341753, 2.5889553341035025], [0.5582493573477249, 0.37099704937807976, -0.7421043352343462, -0.047801304447815524]], [[0.4688982100765492, -0.8714428536692886, -0.14395076024715966, -0.26628051752497833], [-0.6437020486000307, -0.2255597390652928, -0.7312800262149383, 2.6622864265106445], [0.604799256956498, 0.43555729462554493, -0.6667141080578272, -0.3430723206610093]], [[0.5121972758237342, -0.8410049334414489, -0.17425456253966382, -0.3954599295508891], [-0.5959799683706235, -0.20193679356900368, -0.777193289152718, 2.7102152494855516], [0.6184349827909932, 0.5019285141633356, -0.6046535691865965, -0.5554474679306358]], [[0.578905008046931, -0.7875571623679153, -0.21124087592409632, -0.5489681459895326], [-0.4602201062821264, -0.10173016738683044, -0.8819571570190445, 2.5848393208608345], [0.6731021062452938, 0.6077867134500754, -0.4213417443379007, -1.0705072073889164]], [[0.6432904281664045, -0.7445457513655117, -0.17840697618941265, -0.773056601631085], [-0.34223837540137503, -0.07119375877438489, -0.9369121320135642, 2.460508411963445], [0.6848724840670062, 0.6637643202486408, -0.30061039192407857, -1.4064380075625422]], [[0.6958912049585738, -0.7010342217615275, -0.15584110747974594, -0.9801905221664236], [-0.29751130675794535, -0.08391455261878794, -0.9510233278999882, 2.437735261671659], [0.6536225617376468, 0.7081732611289404, -0.2669610065337592, -1.5117359195239675]], [[0.765430895660173, -0.6315921793130854, -0.12331611005628257, -1.3113698376655822], [-0.20429204171184584, -0.05677599996611005, -0.9772621181244333, 2.2686076472409287], [0.6102297154859564, 0.7732191182701033, -0.17248736034716602, -1.714736285059068]], [[0.8028851686695413, -0.5882837705397326, -0.0964241217229273, -1.5274277124389535], [-0.13376386073667443, -0.020158998402641515, -0.9908081773704848, 2.1512295933163057], [0.5809325567493202, 0.8084032533970641, -0.09487646918883633, -1.8822501763583106]], [[0.8863752056468306, -0.4591698834805355, -0.0591778076563336, -1.9897993099992624], [-0.050736991672140686, 0.030711134523510535, -0.9982397426932771, 1.9091119613202485], [0.4601790439498519, 0.8878174611488278, 0.003924689624674384, -1.8709693865683212]], [[0.8800073006583802, -0.4749239718075271, 0.005862745987580659, -2.0693003893747175], [0.01792783407230683, 0.020879340647231286, -0.999621251224489, 1.7532555918993575], [0.47462168466414123, 0.8797791053080882, 0.02688833036602309, -1.9432956448471777]], [[0.8980457430807426, -0.43720870977840987, 0.048604397213168504, -2.2390718720842195], [0.07194560261462554, 0.036973922739394274, -0.9967230103201591, 1.6050435013158275], [0.43397888612117497, 0.8985997290958637, 0.06465951801447993, -1.928884646435367]], [[0.838915186221614, -0.5383915467924419, 0.07972360170737935, -1.9718036730670878], [0.10709659068652377, 0.01967973738141865, -0.9940538356648103, 1.5239852272966175], [0.533621242633835, 0.8424649846011645, 0.07416952966603986, -2.1318077790372905]], [[0.8898742095566545, -0.4510120845923695, 0.068643941594029, -2.215156066276086], [0.08672260946132251, 0.019511684325818675, -0.9960414063596897, 1.5961471237159952], [0.4478873521033364, 0.8923045409087723, 0.05647588954099786, -1.917469919168052]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7319633483324827, 0.5989304860918203, 0.32482599884817775, -2.8003352513865356], [0.6326414722619711, -0.4204284213071343, -0.6503881226862899, -0.10714862986292442], [-0.2529711925735937, 0.6815586661374108, -0.686646459497817, 1.3391820779212598]], [[0.6462454706258082, 0.7253701877013694, 0.23707568936883433, -2.4074872126352624], [0.6979659480148894, -0.43620458132502904, -0.5679516692842208, -0.3690633579404476], [-0.3085617071305264, 0.5325069520908965, -0.7881789256682514, 1.7024499682530525]], [[0.7255000225070157, 0.6806343086541012, 0.1019149411287315, -2.2052445340828224], [0.6300035544152286, -0.5971975679490344, -0.4964378976870484, -0.13777976722323582], [-0.27702931030217215, 0.42437248110440895, -0.8620688826971954, 1.7515738972317825]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6857775601379125, 0.7239687920764415, -0.07468819257868026, 0.7895717466141824], [0.5997396352358193, 0.5039803299178809, -0.6215433991147122, -0.13237523049494265], [-0.4123366439433903, -0.47103398513827244, -0.7798111802906262, 2.1736123161398253]], [[-0.8455350850587062, 0.5331865663892844, -0.027973297209509695, 1.163898965272662], [0.4128709136412961, 0.6197195799456512, -0.6674468150354658, 0.2433633559773042], [-0.33853807555985166, -0.575899060299625, -0.744131872548301, 1.9980748895856073]], [[-0.9349452750147522, 0.35432238358318624, 0.018247773001620088, 1.412427896027377], [0.24009618384808404, 0.6697287616470042, -0.7027212877979138, 0.6633744780741335], [-0.26121094010239365, -0.6526247270175264, -0.7112311933936272, 1.7432430981404068]], [[-0.9621624898405549, 0.2724267947800378, 0.005194673204301406, 1.5724003097143302], [0.17717234038618795, 0.6399975844179853, -0.7476717553453681, 0.9698179288609898], [-0.207010398158897, -0.71846136529741, -0.6640481621306369, 1.4795401522160319]], [[-0.9464362669367202, 0.3177131038026234, -0.057591460295678895, 1.6887593808895272], [0.25654493498977404, 0.6316031212203624, -0.7316161518144532, 0.9147089692518853], [-0.19606909230671188, -0.707202856991401, -0.6792797877938237, 1.3504151662101143]], [[-0.9058245992356222, 0.4016910701008856, -0.13463312972975783, 1.7777766675362034], [0.3737459346132353, 0.6080506097757234, -0.7004201826842581, 0.7737679458698917], [-0.1994887760745041, -0.6847764161772626, -0.7009176043357169, 1.240776402948768]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8519721130195697, -0.5126499512622861, -0.10645912881357456, -1.5888522409780037], [-0.5180535367985976, -0.79587632225483, -0.31337104634058105, 0.2595603982525233], [0.07592135172290956, 0.32213492071630806, -0.9436445523647474, 1.8471147950192006]], [[0.9081728709457325, -0.40712644207706905, 0.09731442154096599, -1.6189227308808876], [-0.351593875096163, -0.8680708110515194, -0.3504779793299737, 0.10427247366764787], [0.2271646615850485, 0.2840794381190316, -0.9315015240808392, 1.594670677818632]], [[0.9991177669474497, -0.017898411059666802, 0.0379912444055302, -1.1357252874681196], [-0.004432191407310884, -0.9445208690496684, -0.32842150296378075, -0.36966675765369666], [0.04176174624306905, 0.3279633741916906, -0.9437669107038724, 1.8503768713960507]], [[0.6533756986546048, 0.7291665036256901, -0.20351021202360692, 0.36847154731013637], [0.6611687504245162, -0.6805660531620888, -0.31573047167712665, -0.7614262999225594], [-0.3687222258959864, 0.07173602493631401, -0.9267674265189978, 1.9286436674044127]], [[0.3064417088033, 0.8966185442742138, -0.3196383349495223, 1.037964680347779], [0.8192209627647133, -0.4194169195427885, -0.3911092708797557, -0.5471242579740954], [-0.4847375509206705, -0.1420022311966525, -0.8630555445987255, 1.7363839801718872]], [[0.1419984314156867, 0.9147564186302756, -0.37822895189315725, 1.2876578730305699], [0.8379540293888851, -0.31449175401105145, -0.4460134317371886, -0.3794802016082918], [-0.5269435359755501, -0.2536052665733977, -0.8111811626633226, 1.6095056099278853]], [[0.08520831831571773, 0.930263229159595, -0.35686113120283897, 1.3247036040591595], [0.8123071063842672, -0.2722641178184102, -0.515780394224307, -0.20352437368960968], [-0.5769720161389337, -0.24593205285632333, -0.7788585994713344, 1.6533388955121158]], [[0.15882354700512868, 0.9405189415657109, -0.30033181894834987, 1.1672179127723794], [0.7621204550231009, -0.3101709412933634, -0.5683013278293219, -0.10688051102249448], [-0.6276523663239795, -0.13862938986125467, -0.7660511727780366, 1.8055151373479257]], [[0.3432952195199668, 0.9092540469509718, -0.235383666294028, 0.8318465374501848], [0.6713079650596752, -0.4128138722297456, -0.6155731661972617, -0.04206140703575732], [-0.6568820353017552, 0.053308395192160185, -0.7521065128689289, 1.996589887428007]], [[0.46758628446337414, 0.8506201741047223, -0.240433745526265, 0.6227768782103805], [0.5959171476978049, -0.5042371435096733, -0.6250021249443221, -0.013276034998590654], [-0.6528750413834561, 0.14896382954011733, -0.7426735203488094, 2.0721612836721115]], [[0.6305705018092724, 0.7003551061708906, -0.3344900110741169, 0.4061960598401857], [0.43139454688552964, -0.6745332892381924, -0.5990856254551044, 0.013808212639058692], [-0.6451973242082075, 0.23346855670489253, -0.7274701683675445, 2.101625827097522]], [[0.7359747604107714, 0.6051320630790697, -0.30357262437838006, 0.15050234653180317], [0.3774442787699855, -0.7390041849617861, -0.5580399905318361, -0.04077112145860237], [-0.5620293306066096, 0.2961215980684876, -0.7722920630792804, 2.1109520044535275]], [[0.7884946610936684, 0.5442742899509492, -0.2864291652837935, -0.08804551516518638], [0.31510157824323914, -0.7574303747643525, -0.571848076654064, 0.04513303173759957], [-0.528192355885051, 0.36064487336259543, -0.768731494412631, 2.1208930938367794]], [[0.7053687406383774, 0.6692580659519473, -0.23355637625311923, -0.08075237412694007], [0.41955364185808997, -0.6597614637450739, -0.6234497193523882, 0.0958024434807552], [-0.5713402500558167, 0.3417725151547694, -0.7461647717166365, 2.1342349003725416]], [[0.6138921089785405, 0.7703356400679645, -0.1723933878516197, -0.1818073862308089], [0.5682833637709196, -0.5828524328780256, -0.5808072485337759, -0.08757778958981297], [-0.5478964290767812, 0.25858469237223974, -0.7955774380132117, 2.124827275519119]], [[0.5968603104605933, 0.7987935656508367, -0.07540960994267315, -0.42337575048944937], [0.6263772671535477, -0.5226308593545685, -0.5783671014533573, -0.09418561120477925], [-0.5014073084729986, 0.2979695023406378, -0.8122837476428638, 2.123861748081864]], [[0.507853332677901, 0.86090544859013, 0.03044340775564741, -0.45191765508424014], [0.7185693643539584, -0.40386744489360504, -0.5661706064138788, -0.16324723460100962], [-0.4751242585891588, 0.30940732949130045, -0.8237257088115947, 2.0598885309798125]], [[0.3927218684554863, 0.9171226415979887, 0.06823191559057318, -0.4143323346668793], [0.7686659175414512, -0.28660691123534277, -0.5718471698297505, -0.11057998259692918], [-0.5048982484095096, 0.2770244370095602, -0.8175177184945569, 2.0087556749907645]], [[0.2219503380316879, 0.9702698814046904, 0.0965111635332811, -0.3324717938553692], [0.8285325301347926, -0.1354863728148013, -0.543302208066494, -0.06106933368366132], [-0.5140738215043232, 0.2005487472422029, -0.8339714059987456, 1.9719973593467475]], [[0.05328224139264304, 0.9971411913376479, 0.05357655541290807, -0.17930624656372376], [0.7064407272313015, 0.000280049221062062, -0.7077721529428406, 0.3007159578801963], [-0.7057637718536466, 0.07556034747253393, -0.7044062267106559, 1.923669966437681]], [[-0.1350037103736048, 0.9907754511493252, 0.0117474927201775, -0.025080689122516417], [0.7168401163515248, 0.10584833698019391, -0.6891562791904746, 0.46174921789836093], [-0.6840425759954507, -0.08461758066961139, -0.7245175079093185, 1.8359813643255727]], [[-0.2656996185778109, 0.9545679960864873, -0.13492091585456084, 0.1223586765688702], [0.7233366066313575, 0.1048733711537494, -0.6824849665229854, 0.6684991375217324], [-0.6373286955681805, -0.2789292327280801, -0.7183387898026153, 1.7430484338904288]], [[-0.41597286002785594, 0.9063621272011375, -0.07398833756528655, 0.1396700390963616], [0.6810619597423258, 0.2565887773918625, -0.6857964758647365, 0.6958233621111564], [-0.6025953756146728, -0.3356633636427696, -0.7240227341705737, 1.641319216012871]], [[-0.5235053578553, 0.8517717565471944, 0.02066434236314163, 0.02823993574201978], [0.6604741093764716, 0.4210152625148977, -0.6217074067218987, 0.6818349575211766], [-0.5382528134066286, -0.3118188953190917, -0.7829769379629457, 1.5534115414143599]], [[-0.4553003708294041, 0.885420033343938, 0.09345018392612353, -0.08458200721090434], [0.6807565622820096, 0.4138488130278648, -0.6044002505504175, 0.7640221559247505], [-0.5738223376904972, -0.2115668322508206, -0.7911810161137371, 1.4987231044127054]], [[-0.6705029966867666, 0.7419012078182134, 0.0028860478065968476, 0.060616120429942764], [0.5761824841207486, 0.5231752239163381, -0.6279342561706064, 0.897034965350969], [-0.4673750917908539, -0.4193689102901711, -0.7782610363210567, 1.388432328902593]], [[-0.7918524824857655, 0.6092268636308517, -0.04257081878054883, 0.10714560320280789], [0.5038978090982503, 0.6123833198421463, -0.6091581630127728, 0.9856160148179004], [-0.3450458577741716, -0.50381474592317, -0.7919053338772621, 1.2754532435639785]], [[-0.854453985262235, 0.5063783638911674, -0.1161436164943574, 0.168739861974326], [0.48045333779285326, 0.6851329822453607, -0.5475010382120602, 1.0080646658050278], [-0.19766885762099806, -0.5236160322435532, -0.8287057822317445, 1.2472033473809845]], [[-0.9160841672458925, 0.3677920713321365, -0.15974601962683205, 0.18094188336841507], [0.39370770746046163, 0.7494393422491321, -0.532292131611406, 1.033527416268373], [-0.07605287376310721, -0.5505176332819899, -0.8313520889719165, 1.2313917686226732]], [[-0.9420354280658929, 0.28193098803505323, -0.18189054470831795, 0.18875611808412188], [0.3354771702688619, 0.7835357283397024, -0.5229979260413651, 0.9890279326378194], [-0.004931581602988622, -0.5537027003733599, -0.8326998253285167, 1.239956268991763]], [[-0.9835732095865191, -0.006146564952935252, -0.18040499195685583, 0.23581802446602018], [0.07811124437065983, 0.8865098609875789, -0.4560689639458606, 0.8505367200682368], [0.16273406185104866, -0.4626688730734574, -0.8714672334645729, 1.3511609762320798]], [[-0.8560991406526363, 0.5129330728358332, 0.06319750125604374, -0.1586648257605534], [0.433567305236791, 0.7793668317443331, -0.4523347581233481, 0.8152849033978101], [-0.28127149376274363, -0.35984302739943475, -0.88960628506575, 1.3848849958469138]], [[-0.5569189707788396, 0.816794635188535, 0.15062464577175388, -0.34435759102967595], [0.64877178113927, 0.5410394466173482, -0.535136892020512, 0.9456717203970031], [-0.5185908174891043, -0.20030686740903808, -0.8312284420571524, 1.2926072211385418]], [[-0.6481333824672981, 0.7425645424962418, 0.1688816708788913, -0.389002826052088], [0.5827155718678817, 0.6263720747901116, -0.5177843047310515, 0.8520777092836448], [-0.4902710279367799, -0.2371833133896181, -0.8386765735462839, 1.343184699162691]], [[-0.7146633058701256, 0.6776231024052798, 0.17344535257373456, -0.3796919288170772], [0.5537243807291613, 0.699590025202937, -0.4516227483449661, 0.6997486077111471], [-0.4273706464287061, -0.226717285894123, -0.8751877529124321, 1.4090472044944504]], [[-0.7148507179496765, 0.675755113795188, 0.1798429237598315, -0.38372402569641845], [0.5594599112877281, 0.7069733645397008, -0.4326583750412588, 0.6213376305553637], [-0.419515266359592, -0.20867124385278324, -0.8834383132285881, 1.4352763046929173]], [[-0.8610719467302619, 0.48545842652430266, 0.15127861273394066, -0.253173306946503], [0.42422060179358173, 0.8498778755714931, -0.3126411323354256, 0.3049219341526352], [-0.2803426181800561, -0.20503100431552782, -0.9377474626472297, 1.4876040983606282]], [[-0.9131826624286133, 0.39147985298994087, 0.1133179144829462, -0.11397356948311553], [0.36126505461964337, 0.9062504186100319, -0.2195398348359772, 0.13528223088045205], [-0.18863982970321003, -0.15954216831958998, -0.9690001605662553, 1.5462512313486207]], [[-0.9901176935820861, 0.13992191060918868, -0.009424000592304168, 0.19833062651615596], [0.13912382277668106, 0.971567179195646, -0.1915770817342673, 0.08408746353779169], [-0.017649781632988325, -0.19099496129817067, -0.9814323257194137, 1.535781648339606]], [[-0.9863427354198164, -0.106740551565221, -0.1254370875622772, 0.35576758191744084], [-0.0786837791350353, 0.974427021611683, -0.21047765309888283, 0.1756977281359874], [0.14469578841688166, -0.197733240009203, -0.9695177639475616, 1.5238953975255776]], [[-0.9619367961506092, -0.2530835213280342, -0.10308409888874165, 0.44392845948810655], [-0.21639927494139924, 0.9358249310068689, -0.27821404046313986, 0.3174127466184023], [0.16688005877377354, -0.2453169984697175, -0.9549715264056152, 1.5096464940768717]], [[-0.8973248725043511, -0.440981443426657, 0.018532127195542605, 0.4298881051132706], [-0.4012256830823627, 0.7974928870305614, -0.45058078784026256, 0.48615296424882104], [0.18391852658212843, -0.41175291339467457, -0.892543284043332, 1.4022295682353982]], [[-0.8490479026629022, -0.5282489231251203, 0.008410362707861552, 0.4447207696366354], [-0.4956604266930863, 0.7909569448645951, -0.35875876683489333, 0.6549440269480749], [0.18286169744961522, -0.3087720625115176, -0.9333924217703018, 1.4507226297419433]], [[-0.8292340515672105, -0.5574540217315825, -0.04019827579278773, 0.5503501705753433], [-0.5005195144214615, 0.7726947434412855, -0.3904139458850188, 0.8112019126095574], [0.2486988206741903, -0.3036245166541897, -0.9197614089978859, 1.409494273277655]], [[-0.9093281189558973, -0.415884982245761, 0.012730028223582879, 0.67877670932215], [-0.3831674620317004, 0.8250813504489247, -0.4152390410132025, 0.8766593843764037], [0.16218837232155583, -0.38246626868760814, -0.9096232655335194, 1.3181424376952917]], [[-0.9274350257749531, -0.3695285639558537, 0.05755791332681422, 0.6796030876864533], [-0.3514060770546323, 0.8083952602342561, -0.4722402696084518, 0.9548063537375333], [0.12797672434816565, -0.45819836714191153, -0.8795886620310656, 1.295823723941816]], [[-0.9295170028300408, -0.35678414042172146, 0.0932910424070326, 0.7323435449315128], [-0.35583670938512824, 0.8012910873632411, -0.4809499241773497, 0.9999895067417114], [0.09684202447192646, -0.48024750957789253, -0.8717705844087712, 1.4397213361169352]], [[-0.9520201232893241, -0.25153839662371347, 0.17431614921214683, 0.7485227833953423], [-0.3056034627057752, 0.8116382957274023, -0.4978451571432202, 0.9938800844411444], [-0.01625448966962416, -0.5272302266872501, -0.849566995376404, 1.3700588767954656]], [[-0.9328319317538593, -0.2493772952586115, 0.2600683596861817, 0.6805040100015718], [-0.33715420366873905, 0.8587206228094512, -0.38590923143952743, 0.9345596612050937], [-0.1270890634510314, -0.4476715945548116, -0.8851206208081985, 1.5082657222574405]], [[-0.8799749697590318, -0.09656663558206546, 0.4651009970855281, 0.7209093910479529], [-0.31888568379863075, 0.8457904487053585, -0.42772705963858315, 0.8551270867298154], [-0.352073817921571, -0.5247031558616252, -0.7750681421416958, 1.621744849216087]], [[-0.9369622893988854, -0.18611769542606055, 0.295739533531943, 0.5759293675510657], [-0.28477056776856263, 0.8971857721247049, -0.3375846768290403, 0.8511868507048137], [-0.2025028196770839, -0.40052202654322183, -0.8936300768643258, 1.5605972186356636]], [[-0.9535954559286887, -0.11823207986387191, 0.2769059077073283, 0.5600022141556862], [-0.21083106010949676, 0.9187814725232503, -0.3337527076161536, 0.7606168118691229], [-0.21495574085206975, -0.37664543145917884, -0.9010728319262915, 1.5657592652876897]], [[-0.946386261744461, -0.26927617491022815, 0.1784471496187588, 0.6953045721200026], [-0.3143453270828407, 0.8949392672971548, -0.31665552764923227, 0.8642570449536129], [-0.07443157208151246, -0.35577246868658624, -0.9316039349434532, 1.5048126720233053]], [[-0.776961789127262, -0.6267162828820301, -0.05964125255806349, 0.5053228833498771], [-0.562961757036025, 0.734063704513842, -0.37976905854785814, 1.0901482164223684], [0.2817879315213395, -0.2614903028526031, -0.9231567489668145, 1.0934287365154451]], [[-0.709127035549918, -0.6993685473465244, 0.08956831155379377, 0.5757193397858554], [-0.6521279265405383, 0.6022571168175456, -0.460451444420099, 1.4156820614195946], [0.26808210473309013, -0.38492856509361517, -0.8831545645564239, 1.1165132686575323]], [[0.6257800849558338, 0.7634431462458959, -0.15985570907176155, -0.471817991864321], [0.7220015151769186, -0.6445039269095393, -0.2516515453567031, -1.6554398993487802], [-0.29514927978042244, 0.042062461273092086, -0.9545248304767915, -1.3693827599373558]], [[-0.5115218271123767, -0.8536249656397448, 0.09833533659961988, 0.4001562297124312], [-0.746016752016869, 0.384397092503799, -0.5437810965681201, 1.587742675451498], [0.4263853023942279, -0.3515157084842305, -0.8334460274013024, 0.7278905189091877]], [[-0.49291327786796024, -0.8642084618370085, 0.10089715055825446, 0.5171740357799903], [-0.7613173321404814, 0.37224782701486125, -0.5308742554176215, 1.7097762143774775], [0.42122727865602827, -0.3384897188571992, -0.8414227771721011, 0.7238155388732889]], [[-0.37459682810838657, -0.926869982295442, 0.0242745193728498, 0.41248238734652093], [-0.7613687330332379, 0.29255680429338315, -0.5785569709380444, 1.703646539353592], [0.529145413596771, -0.2352074662532849, -0.8152806750366477, 0.4869046964830673]], [[0.2368928103567873, -0.9712555295791498, -0.023334366569258636, -0.24639908605885566], [-0.7674390659337438, -0.17234526754357085, -0.6175227840607002, 1.7238058684643223], [0.5957508510107277, 0.16419441225955425, -0.7862067911832955, 0.2897200591914028]], [[0.6374953536778426, -0.7699144187394854, -0.02883508030512183, -0.7208236466550016], [-0.6557150855376154, -0.522526602867621, -0.5449804362488819, 1.7822329197966131], [0.4045211992436987, 0.36633009310274295, -0.8379527804415808, 0.5967217400963607]], [[0.8852856882660266, -0.4405870986485018, -0.14883634857064804, -1.0618731328941422], [-0.4510694481567881, -0.7356338976096386, -0.5053504938428206, 1.6804626994407865], [0.1131618446777833, 0.5145150893726513, -0.8499815408095485, 1.129091960827026]], [[0.9379852968869299, -0.31853649097652464, -0.1368140590008921, -1.159684597491926], [-0.34350341541930113, -0.8007063617157506, -0.49078989996046235, 1.5620868455905674], [0.04678660512595691, 0.5073498065677053, -0.8604691669993177, 1.21314718853746]], [[0.9601255925892737, -0.26467368050827994, -0.09003715511552818, -1.2087146875522727], [-0.27564602840308944, -0.8424523507096544, -0.46291824743617593, 1.5740391934928375], [0.04667026334508876, 0.4692780408563545, -0.8818163113082689, 1.1790284635737303]], [[0.9558944518053389, -0.2815236288175792, -0.08372719644865793, -1.1664943691745173], [-0.2792301799295859, -0.7826572236505401, -0.5563076279219255, 1.7562892912001216], [0.09108404703493013, 0.5551505351569159, -0.8267475912820843, 0.8795069284377475]], [[0.9600704692154846, -0.2758049651661344, -0.04686486242449448, -1.166069643818532], [-0.2567999118557127, -0.8023687191876683, -0.5387562006511285, 1.798678950553518], [0.11098873551517549, 0.529278810891621, -0.8411572034583633, 0.8367336354646906]], [[0.9469027628495561, -0.3084677779213762, -0.09067958806768975, -1.0705041023040882], [-0.30161872335189205, -0.754546141222894, -0.5828261031295827, 1.9273213242220442], [0.11136113968280034, 0.5792303089012942, -0.80752148319327, 0.9225544548437972]], [[0.9452519747236788, -0.31543666895453915, -0.08365651295535859, -1.0817754824044221], [-0.31766503267635593, -0.8306571445691818, -0.457271948834501, 2.008374333680132], [0.0747504601705925, 0.45881196154311105, -0.8853835059731161, 1.0675480045402377]], [[0.9293663138037288, -0.368277739615219, -0.025490415272686404, -0.9987637951437016], [-0.3399099746350685, -0.8267521176132111, -0.44826570821964373, 1.9812782889857583], [0.14401202696461207, 0.42526749526148433, -0.8935368451068862, 0.8773032813662229]], [[0.8327843855994922, -0.5421661372760105, -0.11191982260925282, -0.6869330910031924], [-0.5271054279598091, -0.7147669782960243, -0.4596390263596827, 2.0657410187200536], [0.16920412204489282, 0.44177375015813325, -0.8810254926812482, 0.8332523375104601]], [[0.7532341983968827, -0.6368636681537019, -0.1644472880628231, -0.4733359854875363], [-0.6397593630422889, -0.6512847700726528, -0.4080883552260917, 1.9921414290111614], [0.15279463264503262, 0.412592797388931, -0.8980094563965607, 0.9185318311812046]], [[0.7634250199009677, -0.543850118095191, -0.34843835615077423, -0.4801217711768879], [-0.6390986290454949, -0.714106137387483, -0.2856665309372069, 1.9871178446421105], [-0.09346219204242998, 0.44077145278860325, -0.8927403570273094, 1.5887885344237584]], [[0.7761088132013279, -0.6200040994402628, -0.11510876052019152, -0.6332624119193708], [-0.6196807181481395, -0.7160365331786007, -0.32138371257575654, 1.919654708534721], [0.11683714146893649, 0.3207594111337016, -0.9399268495699697, 1.0992581855951582]], [[0.8910693631339183, -0.3899628515585573, -0.23221620203687743, -0.768447473336218], [-0.44828610251630235, -0.8361822859127591, -0.31597271245545194, 1.683869514159543], [-0.07095745468135517, 0.38565289980762624, -0.9199113438234752, 1.324256476827786]], [[0.9375743755222053, -0.18790301073013663, -0.29265465812574515, -0.8465735130527046], [-0.2616995280466174, -0.9353892694552457, -0.2378240349673645, 1.304675152387853], [-0.22905817467255857, 0.2995653069808496, -0.9261711394062891, 1.6171005808617167]], [[0.9518602906142423, -0.16954628017152554, -0.2553743253182843, -0.8984560226790901], [-0.23509432257435944, -0.9383988383615891, -0.2532553645136129, 1.2717450086215518], [-0.19670446523928575, 0.3011007788791296, -0.9330839588768568, 1.5606302124220746]], [[0.8166670555265655, -0.5759019305438015, -0.03730799932309576, -0.900437281224673], [-0.5665644167806007, -0.7877668193517215, -0.2417192585759972, 1.7286790197208692], [0.10981658370040176, 0.21854154004306492, -0.9696287502028692, 1.2072245360596934]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9252854121875065, -0.37717065270785344, -0.039864830727449695, 2.1028069197638404], [-0.34549313092973655, 0.8815711738529755, -0.3216624968998639, 1.4257617971734133], [0.15646533952720756, -0.2838565908472426, -0.9460148166700229, 1.109659513020834]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9162668461999308, 0.13825932458384343, 0.37595136084399644, 2.3524863889146816], [-0.022159161657253755, 0.9196123880110461, -0.39220151372893625, 1.2660075240941728], [-0.39995504511067376, -0.36769201103945776, -0.8395466317651923, 1.8593230679967545]], [[-0.9172832730212286, 0.329171283525282, 0.22413759867050587, 2.664936696637399], [0.1777204594188875, 0.8420362344562047, -0.5093038564224259, 0.5458608608437076], [-0.3563801837075147, -0.4273420713727281, -0.8308862248800761, 1.8378901780799382]], [[-0.988587567503354, 0.14862486245178788, 0.024602268980496375, 2.714940724317944], [0.12158019115521919, 0.8835616673821004, -0.45225771088133243, 0.8785520388791422], [-0.0889543618742888, -0.4441052017193107, -0.8915479186837848, 0.7838162720457351]], [[-0.9880956880838622, 0.15373415288925088, 0.005720264460997923, 2.8106496934841263], [0.13165947038604295, 0.8642790609005409, -0.4854765583903572, 0.6671313351929755], [-0.07957823224818453, -0.4789441670219021, -0.8742309705266399, 0.7255894536915293]], [[-0.990831369599186, 0.04319993944908304, 0.12801157076529043, 2.7677668318410036], [-0.011935710318698844, 0.9158071249639738, -0.40144096537898166, 1.1783190096819043], [-0.13457613398143634, -0.3992882105657719, -0.9068948059536974, 1.2048705949623637]], [[-0.9846388095330905, 0.14405955672524137, 0.09865727990060033, 2.8295053495669102], [0.06626049196919809, 0.8310641332656972, -0.5522154956204466, 0.7084364149186255], [-0.1615424463268347, -0.5371957283108855, -0.8278434559258646, 0.9490130681007529]], [[-0.9736551612399932, 0.2221695545175179, 0.05134506827544975, 2.8042067836297693], [0.16580497590261478, 0.8443756880942358, -0.5094491214256031, 0.6196090665613172], [-0.15653861171179556, -0.48751449865708935, -0.8589675643715952, 0.962618558203166]], [[0.7864227771971071, 0.49934944012286825, 0.363578536432732, -0.3091489521107029], [-0.43703877395445806, 0.03386624105396478, 0.8988048663515673, 2.1440900884666845], [0.436504668435486, -0.8657385369531916, 0.2448682504290291, -4.996516179303131]], [[-0.8335283341007586, 0.49595187296542365, 0.24343840279073126, 2.876235442983385], [0.4013998309995105, 0.8464025504377847, -0.3499727107732511, 0.17480706199058102], [-0.379616506391356, -0.19399603685256428, -0.9045755058372518, 2.086788365589193]], [[-0.6720972614409455, 0.7011285428328047, 0.23812609598431222, 2.4634059143929425], [0.5617654473039033, 0.6923213963847041, -0.4528914509276797, -0.6149615086511365], [-0.48239491433785575, -0.17061609107315046, -0.8591771040291354, 2.5671340813472443]], [[-0.6684221391479253, 0.7081372278206537, -0.2274939789783268, 2.5782966068134705], [0.7157486703556117, 0.5292221837787652, -0.4556618494899576, -1.1743761788487745], [-0.2022762585700199, -0.4674029811318223, -0.8605921034078804, 1.0185164972970724]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8951190767519186, 0.4183437316265189, -0.15411152015210441, 2.8120127823183863], [0.4292800099112926, 0.7154611997267162, -0.551211343112756, -0.33075936801583483], [-0.1203349970929232, -0.5595567834406149, -0.8200095698101575, 0.893132535244634]], [[-0.9516718835504923, 0.30440105265838663, -0.040750769316963885, 2.9198768546918994], [0.2808267683397006, 0.8087976968516016, -0.5167036014500233, 0.3029541306130318], [-0.12432599182527523, -0.5031761964839061, -0.8551939914713217, 0.844237670668583]], [[0.9719042524797707, 0.1794491019042298, 0.15231593428628304, -1.719394518571042], [-0.21237390947570878, 0.3895447407496547, 0.8961876017488122, 2.582996536016831], [0.10148618913793833, -0.9033564715991409, 0.41671049738902544, -4.304343019478587]], [[-0.9633131070957731, 0.26825540995150876, 0.00817879754214565, 2.804423492727669], [0.231458357667045, 0.8458275798938322, -0.48062743758239285, 0.49610596599559253], [-0.13584876283412264, -0.46110165920617835, -0.876886750677502, 0.8853735610942187]], [[-0.9537146895398492, 0.2986660055251886, 0.035027247958367924, 2.7802813596687934], [0.2509949154618587, 0.8547671323438494, -0.4542848246166344, 0.4512196795437382], [-0.16561957423023219, -0.4244664493317462, -0.8901676190603075, 1.0255536785279735]], [[0.8473309295717362, 0.4230641221859608, 0.32100941467520844, -0.7523864100289441], [-0.38203704970197216, 0.06571808618469183, 0.921807369141316, 2.0553112050689912], [0.3688875010705979, -0.9037133846896614, 0.2173111361312295, -4.803482585077226]], [[-0.930301379029195, 0.3646763090602672, 0.03937681788258614, 2.761146164683309], [0.2948929101183328, 0.8074516433844463, -0.5109403244584417, 0.14747657868197556], [-0.21812270798410416, -0.4637165440287173, -0.8587138353699348, 1.196568006515264]], [[-0.9763904611467289, 0.19623770459089118, 0.09029081170626485, 2.69210192324163], [0.1616739175756164, 0.9410821802394511, -0.29702840674170233, 0.7554149279041104], [-0.14325924667340273, -0.27541803378257473, -0.9505901824182226, 1.0813275892699397]], [[-0.9826542220739424, 0.15699222273750055, 0.09871231858382493, 2.5648897724205457], [0.12816312336473365, 0.9596301133488243, -0.2503682475145734, 0.7788589808317655], [-0.13403318115172674, -0.23337413642917174, -0.9631051961215281, 1.172118985775534]], [[-0.9652959828978451, 0.23735944148579996, 0.10892272921127288, 2.739209634873906], [0.16896380174769543, 0.8856373373207722, -0.43254796316979494, 0.6911286987743938], [-0.1991353788261861, -0.3991328128341767, -0.8950073176342356, 1.0669796965636118]], [[-0.9505521264135399, 0.2813932244957062, 0.1314096959078977, 2.696346405240746], [0.18986740946058697, 0.8613896078201349, -0.4711245168362606, 0.5289143096004674], [-0.24576619335340416, -0.42287799274422316, -0.8722231259587154, 1.2764012294074056]], [[-0.9504591078596639, 0.277295091783796, 0.1404810177896884, 2.288784482974047], [0.17222524116002605, 0.8459771939247699, -0.5046395284423755, 0.5097146081156254], [-0.2587778015865764, -0.455444858826827, -0.8518239430623145, 1.6549864787496353]], [[-0.9493606105944283, 0.3022750765256528, 0.0856983614964989, 2.597455808937867], [0.22434481561916617, 0.8431420252359408, -0.4886521554089764, 0.6356665576491632], [-0.2199632577422334, -0.4446811255185527, -0.8682596742052325, 1.3227553977197422]], [[-0.9241101285056263, 0.38198774204247554, 0.010287629591190242, 1.1243578620209775], [0.32389531786052683, 0.7972894221878413, -0.5093342717071043, -0.7304500744751454], [-0.20276166664668815, -0.46734884422310197, -0.8605072715218552, 2.7150615387469035]], [[-0.9578409160563259, 0.2754788335671254, 0.08156096973966706, 2.708372194542703], [0.20676823776309386, 0.8580936995254848, -0.47002350865356934, 0.6665382518173357], [-0.19946848217380994, -0.4333435301134232, -0.8788775281733591, 1.1676067005145472]], [[-0.9500418644493535, 0.30000565740213075, 0.08612236248682872, 2.6813241224853064], [0.22260436010086065, 0.8446756703893716, -0.48679596415372234, 0.5125897308038798], [-0.21878700751572003, -0.44330533199926786, -0.8692598161443655, 1.2484684008005822]], [[-0.9598876516722814, 0.26208140391019213, 0.09964453769041545, 2.556114593798263], [0.18428042629233135, 0.857540421172318, -0.48027611906185824, 0.6701409668472884], [-0.21132065836683014, -0.4426485781972718, -0.8714389339290184, 1.3905579716453431]], [[-0.93845502898755, 0.32478043558772485, 0.11755776123856354, 2.467693221633243], [0.21635145620011842, 0.8180429354535522, -0.5329144426215371, 0.35645282110769977], [-0.2692474808945548, -0.4746824458666899, -0.8379632268888367, 1.6286736822970198]], [[-0.9521035228600944, 0.27823910284405484, 0.12681436592883888, 2.75922218558801], [0.1792237133089363, 0.8438203032721637, -0.5058123726970605, 0.7620738884813354], [-0.24774531750399276, -0.4588576003884095, -0.8532713286057587, 1.208920502568402]], [[-0.9285025748910802, 0.34811730804265945, 0.12921806476559894, 2.5740104316924275], [0.24022616252691192, 0.8284995172173101, -0.5058457678070243, 0.5576452543637441], [-0.28315077124780724, -0.4386375380787836, -0.8528908200525763, 1.5135429029759169]], [[-0.9198746459953548, 0.3919235912605892, 0.015051055388982035, 3.0619251116481627], [0.32730518058428015, 0.7882232297430138, -0.5211290232333866, 0.27093169848472726], [-0.21610634978549637, -0.4744470873626421, -0.8533451862379569, 0.9891551293827233]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9225006308919226, 0.3853375335708731, -0.022529341435582564, 2.712161268733001], [0.34320166762309257, 0.7921166172376931, -0.5047413991705483, 0.062095704322148275], [-0.17664994012094393, -0.47335636672324455, -0.8629765632610402, 1.0183511228545061]], [[0.6639764121243472, 0.7388377376172537, 0.11512654609210339, -1552.6785285628976], [-0.7338511897413493, 0.6143112496641796, 0.28997261914056643, -1084.0806271995089], [0.1435191814974048, -0.27702073209175554, 0.9500851322558745, 4492.86283469679]], [[-0.9358845350639605, 0.33940307939924985, 0.0944758525890146, 2.4276173359545736], [0.2657444811632623, 0.8561379755663219, -0.4431790129557903, 0.3370279107327194], [-0.2313006868977765, -0.3896579480615101, -0.8914407864536548, 1.5322166316409966]], [[-0.9658740390214424, 0.23720929082344339, 0.10401486956894271, 3.0373328441065706], [0.16184436081116205, 0.8662581151371759, -0.4726555625744965, 1.1226644607460956], [-0.20222201566108347, -0.43969151720953914, -0.8750872105544351, 0.7315766015370149]], [[-0.9497018406473369, 0.2237214997911384, 0.21912349121503055, 2.6181063199429233], [0.11918392094923466, 0.9052899505350959, -0.40773189530294324, 0.923892005085865], [-0.2895886856529904, -0.36110773460474005, -0.8864195378884683, 1.6047314504517922]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.959977514205156, 0.22859616047547907, 0.161823878449255, 2.7095049207861956], [0.12579554631672327, 0.8681422270253246, -0.4801088982537054, 0.8626622114307384], [-0.25023719297372116, -0.44053702349675306, -0.8621533959692176, 1.1081708911979442]], [[-0.9580996083401806, 0.22223593937868266, 0.18071061879941552, 2.561188186451423], [0.12265308356061436, 0.8884385391776665, -0.4423044010598661, 0.8813204332014467], [-0.25884621224090987, -0.40160695879470076, -0.8784705396632297, 1.3373266642368162]], [[-0.9536752469510216, 0.2527479441895716, 0.16316249587712606, 2.650827018497212], [0.1489370497499354, 0.8678962958338571, -0.47389215533669177, 0.7548391559929837], [-0.2613833938196786, -0.4276382775030963, -0.8653347473951867, 1.263817829614883]], [[-0.9563554189418357, 0.23539741902361783, 0.17312529502532398, 19.32546948105717], [0.13459567915563575, 0.8807551802765957, -0.45404219580186006, -4.842856341258884], [-0.259361361450042, -0.4109237977204055, -0.8739984649035833, -14.670815701556933]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9551239514058983, 0.2444342114975607, 0.16730258127222156, 2.669350892083594], [0.13436874051779743, 0.8609045115559328, -0.49070201095400207, 0.7590739425953296], [-0.26397590614001754, -0.44620100653428213, -0.8551148359988555, 1.2355960495613243]], [[-0.950159693441982, 0.26595991205172476, 0.16267108575182238, 2.660734745040213], [0.16313868278031857, 0.8687883138706753, -0.4675389137413604, 0.7257907710130306], [-0.265673346685249, -0.41769868429669194, -0.8688759876978253, 1.2785088165442473]], [[-0.9310164781834006, 0.3340346023531935, 0.14706869749107648, 2.5177956585501464], [0.23954014748038607, 0.8632596274245512, -0.44430094913684337, 0.2481503224984422], [-0.2753703598720327, -0.37842264743216525, -0.8837236359939563, 1.687638249916664]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9453418479908645, 0.2873923086743737, 0.15405989533954076, 2.4753541250677475], [0.1958328536887286, 0.8781454035139736, -0.436474677047145, 0.5389685946159091], [-0.26072645407274225, -0.3824477888576348, -0.8864284544984777, 1.4554546845160452]], [[-0.8958945877735115, 0.4178069336274921, 0.15103063864965663, 2.522515694886616], [0.3232412970156451, 0.8462315464140252, -0.423564910913748, -0.01294167263055465], [-0.30477524752147167, -0.33065017173218, -0.8931867175634143, 1.8120749823982858]], [[-0.9320687298501891, 0.34576242184657235, 0.10814911222126541, 2.4952630326994685], [0.2704948937408763, 0.8627747864522439, -0.42714421489983534, 0.25604299281287257], [-0.2409987454232219, -0.36887398322608456, -0.8976923689122879, 1.5030595205298372]], [[-0.9431535903303354, 0.30010740508860295, 0.14281754254286652, -38.67079520097103], [0.1979503457673622, 0.8524106353855239, -0.48395430496300906, -87.6407870870087], [-0.26697746282707097, -0.42817245835367856, -0.8633605158042542, 46.85454701897262]], [[-0.9791188617835165, 0.010799765595402362, 0.2030015260111005, 2.272019913888187], [-0.07915411530417485, 0.899528126122799, -0.4296321407255506, 1.877117806788426], [-0.18724550870492074, -0.4367293388096228, -0.8798901091004179, 0.7069547506489194]], [[-0.9835155818399723, -0.07453151467524263, 0.16474875901867886, 2.348673900494886], [-0.11576314018302877, 0.9594437706424829, -0.25703413460141694, 2.089526493288817], [-0.13891002718646722, -0.2718689101305057, -0.952255900507582, 0.8315055532271892]], [[-0.9822010385342139, 0.09640548031830308, 0.16120515893391651, -242.08116860779958], [0.02368757797760261, 0.9149602130007087, -0.40284824348041115, 287.55228810498755], [-0.18633308496310308, -0.3918594033455046, -0.9009584837592898, 91.22518606807492]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.97545329561972, 0.06111418045003642, 0.21155596189317535, 1.7812669962503747], [-0.03083377648508808, 0.9133453300247231, -0.40601673161299306, 1.192503650637678], [-0.21803702963555047, -0.40257342817174363, -0.8890413312314311, 1.277943008081262]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9840114916240984, 0.029108856862148945, 0.17571015566521977, -1696.473512337321], [-0.04005562276356519, 0.9251113946122006, -0.3775770843731016, 232.10064819888873], [-0.17354230445842247, -0.37857836970810715, -0.9091542699412525, 619.0244745867086]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8389991414502815, 0.5435367510559371, -0.02546057535184179, 2.808395387306938], [0.47156076625596544, 0.7029572653777831, -0.5324298327297934, -0.24274493897087857], [-0.27149748502293225, -0.4587143809650459, -0.8460911489444134, 1.3406034027730709]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9425949626811365, 0.2564756080022108, -0.21385742640376865, 2.9505403527185723], [0.3336877985322907, 0.7481980864529499, -0.5734562551222347, 0.26638674490359987], [0.012930175513906197, -0.6118985912126621, -0.7908305283897045, 0.32161057921063396]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9844557658841417, 0.15993100922211312, -0.07258730816516279, 2.936313747069119], [0.1735853561472137, 0.8230741855286582, -0.5407559608987964, 0.67801954551298], [-0.026738907021658948, -0.5449504173826569, -0.8380418088888855, 0.5574413584954181]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8418546497846037, 0.04154213863904837, 0.5381031493620303, 1.9717550795936807], [-0.1078385369678862, 0.9639800901374305, -0.24313213642638282, 1.3369692980648284], [-0.5288209513442781, -0.2627101759276284, -0.8070512777286251, 2.0604420982876586]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8899537248132219, 0.036872567070987364, 0.45455778674297015, 2.082487915156397], [-0.15343080777506568, 0.9144162900953451, -0.37456886634336894, 1.4865030846976983], [-0.4294663606344074, -0.40309212620176704, -0.8081307956497982, 1.6938918107064227]], [[-0.8503980769221606, -0.4385246920812661, 0.2907218691500901, 0.9834830353497881], [-0.02638747500934091, 0.5874086529858944, 0.8088601705857006, 0.7622169405351751], [-0.5254776987938905, 0.6801817175081435, -0.5111027482199147, 4.325475489439363]], [[-0.9335564707937084, 0.13217210688804662, 0.33317090209076095, 2.3558518057933293], [-0.09149279044328346, 0.8108612606473463, -0.5780424597538643, 1.4689934540143796], [-0.3465564674567452, -0.5701180142235212, -0.7448919819153188, 1.317159183614526]], [[-0.95946532557677, 0.2045635517443462, 0.1938557255115278, 2.6735851292243877], [0.016249552778376627, 0.7268645884042457, -0.6865885391982808, 1.1306480578866853], [-0.2813578522991057, -0.6556078274560674, -0.7007254351941066, 1.0371625298131624]], [[-0.9974509104135367, -0.06464535913498694, 0.030210244247858398, 2.739674583982488], [-0.06710157935944001, 0.7057647407446288, -0.705261305311114, 1.4081236625326654], [0.02427054516642494, -0.7054906861638756, -0.7083034888897191, 0.2038846731565257]], [[-0.9900502815360526, -0.12842023235791314, -0.057521160902077206, 2.7077201093212557], [-0.045517741459494755, 0.6790811924388868, -0.7326505778938593, 1.3550579104327096], [0.13314869598614043, -0.7227426775809763, -0.678169924694594, -0.11719203924924997]], [[-0.9845679501714742, 0.015368458829679126, -0.1743265956999733, 2.82939992556772], [0.1384205544792341, 0.6778900535876577, -0.7220144218397466, 0.8541650957655723], [0.10707801638433015, -0.735002643342269, -0.6695561310951267, -0.06141882101944656]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9530175122882449, 0.19616267640845977, -0.23081989874400993, 2.9071229793699542], [0.30220002925343414, 0.6680313439218297, -0.6800068130961758, 0.35075748898763087], [0.020802970728928505, -0.7178121815086895, -0.6959259360640238, 0.2171159535141558]], [[-0.9981050092183735, 0.02150263108020595, -0.05765437910357714, 2.8204255562765823], [0.0570537994647657, 0.6743507889318648, -0.736203692895931, 1.1285415601363904], [0.023048959625647607, -0.738097995068135, -0.6742997072048709, 0.14523162348607316]], [[-0.9847472020305791, 0.06794583706886487, 0.16017587620474272, 2.751784592068566], [-0.07486003288029841, 0.6655753645791448, -0.7425667711004169, 1.4766366306241643], [-0.1570634380436976, -0.7432313215213346, -0.6503370504127408, 0.533767225330029]], [[-0.9185245987118118, 0.1832649454047833, 0.3503234524651267, 2.5999382325347864], [-0.12593855414112745, 0.7042992606169823, -0.6986429932914336, 1.6304064130386369], [-0.37476931857096624, -0.6858400041410194, -0.6238360734822083, 1.1292779177749894]], [[-0.8404327179291242, 0.29825620737741404, 0.45245561262416334, 2.4372385027073316], [-0.06099361367929011, 0.7775522468919349, -0.6258532435352916, 1.5401306411943205], [-0.5384724930064743, -0.5535844453325477, -0.6352886242970582, 1.7492328760472906]], [[-0.7794474486285994, 0.39583657818980444, 0.4855667597698121, 2.346506178810673], [-0.001852247470230134, 0.7736272346360367, -0.6336382808895843, 1.3850467884934787], [-0.6264648785093037, -0.49478713119520956, -0.6022685869260811, 2.022443511849831]], [[-0.7620186595829597, 0.4599743711664138, 0.4557972579090981, 2.3721052765637536], [0.05950712977479444, 0.7506368599989296, -0.6580297910557797, 1.1372409850152543], [-0.6448150618226567, -0.4743077927685877, -0.5993710484880256, 2.0583904173019754]], [[-0.7563378035988675, 0.4952308945844033, 0.42743360641902267, 2.398180816402326], [0.10170041179646402, 0.7344554389897876, -0.6709934682087061, 1.036576901944546], [-0.6462276325627604, -0.4640275521856972, -0.605861599480343, 2.1065178463324616]], [[-0.7299250210823177, 0.4790415724955772, 0.4875742358030652, 2.2460360417892837], [0.08572155256792524, 0.7718440560458308, -0.6300068004173168, 1.2175652613504977], [-0.6781307241405029, -0.41806210659145504, -0.6044524762204159, 2.2802648037036533]], [[-0.6683570999502843, 0.5189642273089197, 0.5328929702292021, 2.185938403236409], [0.07132550200159102, 0.7578191116069969, -0.6485544440117599, 1.1658959352074176], [-0.7404130331850368, -0.3954571087448522, -0.5435091677542296, 2.337992353312601]], [[-0.6070637436874969, 0.43567903137677455, 0.6645730905767374, 1.7700694217986979], [0.08163632711167246, 0.866073410340278, -0.49320620231022694, 1.3486012180494409], [-0.7904486834677106, -0.2451542973724018, -0.5613290027105378, 2.702903997029555]], [[-0.5903371821868689, 0.4779526589027115, 0.6504331381283518, 1.7849777475941808], [0.06646336744014764, 0.831879990784237, -0.5509612524682054, 1.3008384214322601], [-0.8044157085215226, -0.28202293662155564, -0.5228560328648515, 2.5820708295850245]], [[-0.6204127830717665, 0.4414424550411524, 0.6482411106126985, 1.7593231531459839], [0.06899699257897507, 0.8540648111109387, -0.5155702798233172, 1.3554550555124019], [-0.7812345317612385, -0.2751397050759429, -0.5603309281795189, 2.5391171915626747]], [[-0.5651306847080068, 0.5320025281531234, 0.6305558018448048, 1.8442723763809563], [0.07991113027916832, 0.7960137082207582, -0.5999803226624549, 1.2266542104740814], [-0.8211221105651494, -0.2886788637280583, -0.4923646952998477, 2.6143826129726166]], [[-0.6406617723668855, 0.4018322632683291, 0.6542807697192187, 1.7383579350901484], [0.06314875206165826, 0.8768124595993803, -0.4766677520079793, 1.4336710399672095], [-0.7652220125824768, -0.26406579272586117, -0.5871154303638138, 2.555405992893951]], [[-0.6074147870139762, 0.47996916952408475, 0.6329904207988659, 1.8522281733307755], [0.03516446635186557, 0.8122956514637719, -0.5821848803595252, 1.3873331061558904], [-0.793606159768782, -0.3313689347531036, -0.5102782498379086, 2.4721940895461003]], [[-0.5994678510136856, 0.46787225174543456, 0.6494103876961702, 1.8078797982329944], [0.037618637278753, 0.8269314621434739, -0.5610429529425942, 1.4224318556550686], [-0.7995143111479138, -0.3118972795070728, -0.513319543077958, 2.510088057557959]], [[-0.546064456394237, 0.5302114630862851, 0.6486057461006396, 1.8030969709711828], [0.050048881664521705, 0.7934943264059491, -0.6065161691214009, 1.329734766985415], [-0.8362468050205019, -0.2987349299520732, -0.4598355387739541, 2.630013130159464]], [[-0.599676435613336, 0.4591277158479108, 0.655431089520755, 1.7304045735220108], [0.05753423125763091, 0.8416571808176313, -0.5369385460289756, 1.4384535292199891], [-0.7981716512152491, -0.2842796695481352, -0.5311375383814677, 2.570845033945435]], [[-0.5742414693126211, 0.5362767839297203, 0.6185902892381014, 1.8112260152274102], [0.0537668860619642, 0.7786617553681761, -0.6251359793598112, 1.3297596987054763], [-0.8169185130016834, -0.32571932970726, -0.475973803239392, 2.5192911911485454]], [[-0.5854180918192291, 0.5225862267259817, 0.6198300520360672, 1.8187241755306296], [0.05475733920761092, 0.788272625520253, -0.6128849008242164, 1.3862013272757812], [-0.8088802702338805, -0.32485366473492017, -0.49008448754746037, 2.5099979515295194]], [[-0.5000711509003296, 0.5761967793524465, 0.6464720531477663, 1.723696186349584], [0.054727818853356924, 0.7660524445938548, -0.6404440006552745, 1.307337562970092], [-0.8642532672086201, -0.2848875630764658, -0.4146147205823484, 2.6845320215761492]], [[-0.5328212854296818, 0.49729865708183335, 0.6846864417071999, 1.5929867715536647], [0.02553864532914768, 0.8181854177785608, -0.574386977332594, 1.5130955790929577], [-0.8458423348283141, -0.28855964339998585, -0.44864694004646843, 2.596832659268183]], [[-0.5007983141141733, 0.47653653581732136, 0.7225745488263676, 1.3971856521619117], [0.027576249180745083, 0.843162279644964, -0.536951506809534, 1.4782821304576514], [-0.8651246147587776, -0.24897851356117928, -0.43539533842628864, 2.6549145054831182]], [[-0.4903018382343998, 0.5539036151483978, 0.6729003585595005, 1.5235374130600774], [0.02277362632895258, 0.7799493600665786, -0.6254281394977074, 1.351265624178522], [-0.8712551115303703, -0.29132418515679415, -0.395024998924033, 2.5050819766906844]], [[-0.4582259848185235, 0.5128235588377509, 0.7259758565806979, 1.412337421957025], [0.07243251456705224, 0.8355997296276602, -0.5445425811446474, 1.3423849835386559], [-0.8858794938763329, -0.19693930371351717, -0.4200386089185696, 2.7544652457493655]], [[-0.542048388344829, 0.5051766307205069, 0.6715505315809454, 1.5897726991196655], [0.12420711461650838, 0.838519949280703, -0.5305251052843108, 1.2100985299372065], [-0.8311174028808537, -0.20415892444897984, -0.5172649187760763, 2.6361997963093877]], [[-0.49512850731708663, 0.5547656058907188, 0.66864256801572, 1.5376448858420162], [0.231481212464808, 0.8260139327038135, -0.5139235655766352, 0.9271456267286735], [-0.8374151954184827, -0.09968001554917272, -0.5374008606081131, 2.886888661099258]], [[-0.5503903236245105, 0.6533358681450594, 0.5198295249941544, 1.8874397452081364], [0.279714672007169, 0.7309309223548519, -0.6224947301057313, 0.6529976680347346], [-0.7866576090806142, -0.19721113087406333, -0.5850449349707633, 2.610667291610491]], [[-0.4921555004231549, 0.7651736478892814, 0.4150810185723308, 1.9918787751577425], [0.42317044648808455, 0.6269920215552459, -0.6540701629986962, 0.1005797733893892], [-0.7607297395411257, -0.14625420842449577, -0.6323764463480712, 2.6873523481030346]], [[-0.3537398671775906, 0.8198549934196318, 0.45022871535929, 1.518953878179502], [0.5869324864773626, 0.5693519769095663, -0.5756288584727746, -0.45046223062439655], [-0.7282708031266129, 0.060630983449589504, -0.6826020225279548, 3.034173000112982]], [[-0.47116373524298283, 0.8547300421302813, 0.21781021480143578, 1.8869019709584995], [0.6390300551634327, 0.5009918645962604, -0.5836503578395051, -0.7391185554557561], [-0.6079846405869973, -0.13580760909584425, -0.7822473842218776, 2.360850225324175]], [[-0.34767421609444515, 0.8802965630545541, 0.32280117802984043, 1.603417800022954], [0.6576279181224247, 0.47434211479944566, -0.5852564219498622, -0.8620790697238099], [-0.6683174101944963, 0.008804498959572027, -0.7438241190153707, 2.981829506147394]], [[-0.4531333668614521, 0.8898348167302501, 0.053517761270871156, 2.016870655423689], [0.6861042659990146, 0.38645763081677287, -0.6163695610276678, -1.0417698984186017], [-0.5691494426025182, -0.2425788501047212, -0.78563631119438, 2.3254191204574663]], [[-0.456738992027754, 0.882189239754419, -0.11459336116455929, 2.130616241825753], [0.7542570293883931, 0.3157245545312289, -0.5756859728048387, -1.317510140914826], [-0.4716840327800671, -0.34937107912301085, -0.8096011501305782, 2.066010122695193]], [[-0.41168192307146634, 0.8467813354753314, -0.33686698280893285, 2.088829038407672], [0.8448837815380305, 0.2160785955882587, -0.4893684054192752, -1.7396052844220955], [-0.34159828733495906, -0.486077576544342, -0.804387468618577, 1.444199611154633]], [[-0.43992422461157554, 0.8702018611778175, -0.22184543583893362, 2.199941319318957], [0.7934367173910251, 0.26093097229486606, -0.5498847180937203, -1.5076628344464489], [-0.4206243598457637, -0.4179279226133595, -0.8052399638644516, 1.831393334887264]], [[-0.5242146396423435, 0.8427219622269411, -0.1225508301278368, 2.345270770379361], [0.7616639631322111, 0.3996163740590148, -0.5100732896845898, -1.3326266663639412], [-0.38087664518894, -0.36073043670350247, -0.8513557030908518, 1.7868635578530006]], [[-0.5503122902803526, 0.8244350212766777, 0.13214869980032845, 2.2758198309574214], [0.7016525298401027, 0.5424134306248821, -0.4620296501813817, -1.1261153584515662], [-0.4525926540890572, -0.1615381254387654, -0.8769636956535619, 2.397114968610396]], [[-0.5451926334788284, 0.8376052112781173, -0.03438753320843449, 2.313102482793068], [0.7700335876673478, 0.48415222559710674, -0.41550559119405556, -1.3997142259575968], [-0.3313808477636778, -0.25301014305578534, -0.908940372767278, 1.6283275947508986]], [[-0.48114779522832707, 0.872355807048679, 0.08655717795404158, 2.121557121103817], [0.7494231630648605, 0.4605418273559353, -0.47567441377218866, -1.317431749782997], [-0.45482053802437217, -0.16400174134472975, -0.8753523330791533, 2.229374204240529]], [[-0.49443988011329826, 0.869070774119432, -0.015658688482718702, 2.1724854828610507], [0.7900078680062402, 0.44179952788117544, -0.4250891031915609, -1.4407750528754262], [-0.3625145148015213, -0.22255149232351124, -0.9050160550083054, 1.8837639183542991]], [[-0.49610309171860023, 0.8674705041326535, 0.037103191871950464, 2.1937774863876864], [0.7741859182747969, 0.4612917660776553, -0.43341212545793806, -1.3905170288465944], [-0.3930876318739325, -0.1862923267577008, -0.9004317201536974, 2.0746324716663747]], [[-0.5307258918081594, 0.8472997570182659, -0.020326079829148913, 2.2738160107774084], [0.7752644799147157, 0.47563460748203656, -0.41561605641261534, -1.3764235844046415], [-0.34248359661011313, -0.23633628989682579, -0.9093130066873585, 1.795487098996242]], [[-0.5531214524905457, 0.8329240186616959, -0.017153365010957683, 2.3047017085481896], [0.753520886991582, 0.49139794861093744, -0.43673141513793323, -1.3004039462797572], [-0.3553349569943376, -0.25449093350729246, -0.8994283924251103, 1.8129885275543611]], [[-0.5652635984757781, 0.8248614871363515, -0.008977264473173402, 2.3583818538333263], [0.7334562893358039, 0.497585208089654, -0.46308836340824777, -1.2613335271253987], [-0.37751680210550653, -0.2683514258012848, -0.886266650844118, 1.8660947941154657]], [[-0.6097936137183646, 0.7869832038639327, 0.09385726132994548, 2.407790909721539], [0.690384358513591, 0.5856040826572593, -0.42477911424048065, -1.0772139949648882], [-0.38925722368130233, -0.1942300059496718, -0.9004185241323699, 2.0415248051070796]], [[-0.6463705009151188, 0.7618254495467366, 0.04274529178344019, 2.4674716421977347], [0.6740379462581275, 0.5963473384291444, -0.43593887066032677, -1.0009235797122735], [-0.35760036710113186, -0.25296607751117217, -0.898960589279501, 1.7606406447504945]], [[-0.5861089194233603, 0.7983206652586986, 0.13842127724193928, 2.3160607276337655], [0.6804973644288298, 0.5777519882038308, -0.4506949934622494, -1.0996804508732805], [-0.43977229514579186, -0.1699610412636654, -0.8818807021784598, 2.0968918926149396]], [[-0.591851521580902, 0.7947847586106038, 0.13427197727990492, 2.2833517462149104], [0.7161372712677343, 0.594941206441746, -0.36495529805558846, -1.182039627750752], [-0.36994484062299715, -0.1198421810462573, -0.9212918465603077, 1.9505397548773769]], [[-0.5420966752482321, 0.8101951208267602, 0.2229687441623233, 2.140416278841749], [0.6848040757122102, 0.5797163503091527, -0.4415567133134557, -1.140892446430963], [-0.4870057212936596, -0.08667652146196916, -0.8690872269539429, 2.273147037256374]], [[-0.5632578060678166, 0.7941439451471045, 0.22820174909466084, 2.1463950447889766], [0.6921417210924284, 0.6043144639877049, -0.39464397441043475, -1.0853589129639953], [-0.4513097404520323, -0.06433834782962397, -0.8900449961500112, 2.167332780762447]], [[-0.542890285447488, 0.8067223185541408, 0.23338645786201204, 2.0626402900396825], [0.7225540235862429, 0.5903282637722225, -0.35976134310262464, -1.2050007204368829], [-0.42800212729153164, -0.026676614071217603, -0.9033839368151391, 2.1408426055599277]], [[-0.46002307520991287, 0.8278270834026016, 0.3210624398143716, 1.8731995160724164], [0.7038946838066626, 0.56041576538311, -0.4364246143594348, -1.1977000734045127], [-0.5412125685746159, 0.0252287513604052, -0.8405072669059213, 2.52821781883805]], [[-0.49675023790747247, 0.825716720616103, 0.2672659694646098, 1.9330206445981273], [0.7385316641826788, 0.5639159685264998, -0.36955346222215596, -1.2852205543081674], [-0.45586202094321493, 0.013808610929709142, -0.8899433353454361, 2.273117335688509]], [[-0.5619882840032225, 0.8104325956133278, 0.1654332995819105, 2.091041211462135], [0.737347036709737, 0.5814859434764948, -0.34379273551752165, -1.2667389790245371], [-0.3748179772882882, -0.07122573626642975, -0.924358360374818, 1.9396109854582897]], [[-0.5982791047518344, 0.7627003003166211, 0.24566311223763287, 2.150715679699736], [0.6424589829790042, 0.6398097758325612, -0.4217699680378767, -0.9061942194725052], [-0.47886174205810944, -0.0945076856452641, -0.872788479155774, 2.287120411559364]], [[-0.708656290701184, 0.6819505675459494, 0.18096874059736595, 2.4235394296099906], [0.5586249432155075, 0.6989866296097251, -0.4464928492644737, -0.5640794481385647], [-0.4309807820159853, -0.21531631394437928, -0.8762958692600893, 2.080355587935662]], [[-0.8187691762518224, 0.5410547154636479, 0.19203341088066483, 2.600767594302372], [0.44084626719060493, 0.8067633484363954, -0.39343038561326826, -0.08523299591500831], [-0.3677928829164875, -0.23747146037839184, -0.8990749138874535, 1.9707278379900606]], [[-0.9067575260429399, 0.3901266212659624, 0.1599750241259274, 2.7336163961088085], [0.28565013061116207, 0.8474315009306802, -0.4475084961340964, 0.3817688860620487], [-0.3101528523910635, -0.36008481030165485, -0.8798546115942724, 1.5527753708523286]], [[-0.9587850161614752, 0.22465549686571357, 0.17395746753807273, 2.6649042751937184], [0.13979329238695692, 0.9059911836939928, -0.3995470065866752, 0.8102018762685076], [-0.24736436321316585, -0.3587615960450299, -0.9000561032598846, 1.450537114733669]], [[-0.9575953439770204, 0.2007756312705737, 0.20664051655334653, 2.6582538198789165], [0.10271989993294225, 0.9079904749301175, -0.4062042830817343, 0.9107619019628437], [-0.269183542125624, -0.3677532370001412, -0.8901111039216508, 1.506289819865344]], [[-0.9479050231235446, 0.22966420798562814, 0.22074967430890305, 2.6509280037193372], [0.1233102217292265, 0.9034930166845141, -0.4104813735352745, 0.8616677243588907], [-0.29371866871930635, -0.36187666458705325, -0.8847455132822702, 1.5188247208672088]], [[-0.9283207245474845, 0.3086505856179958, 0.20725696218294182, 2.673825076979676], [0.20866542585641418, 0.8939419255674765, -0.39664413996033476, 0.5911118120929952], [-0.30770013394178825, -0.3249656131198816, -0.8942695219349839, 1.5936352101952993]], [[-0.9101550010001466, 0.39449773486628037, 0.12644924412505243, 2.67095930849009], [0.32101749698559, 0.8645569820038106, -0.3866380626601182, 0.25996817021950014], [-0.26185041680992205, -0.3113081464623704, -0.9135215362336201, 1.5127395842516769]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7685112009676582, 0.5626667799717998, -0.30462539077268946, 2.7736801885301112], [0.6341000525274881, 0.6061546617468566, -0.4800975415758667, -0.7052909787670905], [-0.08548483708754664, -0.5621233145482586, -0.8226236818068121, 0.6854574566655748]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"159ac0ad-e5ec-449d-a69e-556655f79b2a\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.997744804242483, 0.03346079906860886, 0.05818660097324504, 0.2214559238387145], [0.06534966597355873, -0.6821259147263545, -0.7283087653021063, 1.2950650434292887], [0.015320795158011775, 0.7304687614021728, -0.6827742392997131, 0.8685248819357283]], [[0.9972900067719154, 0.0404447969644931, 0.06145616967705046, 0.21824054748000232], [0.07271078372295355, -0.669184527331849, -0.7395303985030256, 1.3053535139935464], [0.011215361040437393, 0.7419948023929487, -0.6703118146792445, 0.8416297480261654]], [[0.9974368001870209, 0.03567632396355877, 0.06202442697135638, 0.2336950085019392], [0.0698895254220347, -0.671585007654276, -0.7376239094079645, 1.2934287512574842], [0.0153389657070052, 0.7400680897069224, -0.6723570024388725, 0.8574801503737679]], [[0.9967208326856669, 0.05745281548842658, 0.05698030960642464, 0.2377269475410982], [0.08083760645095421, -0.6757850602105575, -0.7326526010187188, 1.288385100302443], [-0.0035865127452503857, 0.7348562624001146, -0.6782133960175529, 0.8587079287101794]], [[0.995977125083177, 0.06899927511174682, 0.057172251530817356, 0.23643680872187128], [0.08903389153484755, -0.6899057231101202, -0.7184031315202233, 1.294109232273954], [-0.010125831778702087, 0.7206033536238614, -0.6932735926579303, 0.8770717735920758]], [[0.9965663794035192, 0.06797775135103501, 0.04727025241964207, 0.26055365364318045], [0.08105522579303259, -0.6844650551002018, -0.7245258026587583, 1.2995421102499316], [-0.016896798933535392, 0.7258695569232355, -0.6876248137740997, 0.8643030223473839]], [[0.9973563232211156, 0.06301916810474716, 0.036179399970748885, 0.29442715880265535], [0.0696057591431292, -0.6855530557747552, -0.724687550611989, 1.2949500142942294], [-0.020866308369390407, 0.7252900055627962, -0.6881271721170096, 0.8724732943936854]], [[0.9964861772785614, 0.07520018876718976, 0.036881297457366194, 0.30502111343953786], [0.07862256492253716, -0.6880238900937631, -0.721416397751844, 1.2850964178504538], [-0.028875435542362424, 0.7217811706255743, -0.6915187278393944, 0.882709882680512]], [[0.9807715451233773, 0.1916907309294893, 0.03663113364367904, 0.29374008492380205], [0.16323191704617745, -0.7028603158038442, -0.6923458079063888, 1.2983670679987027], [-0.10696970381249438, 0.6850124379482744, -0.7206354434264448, 0.897299556267702]], [[0.9230276701614464, 0.38462816105593856, 0.009005433862897705, 0.2847757121815961], [0.2961957506881153, -0.6954805622284408, -0.6546562951936807, 1.2752418371141752], [-0.24553614273795993, 0.6069332461524404, -0.7558730298960437, 0.8590520266941237]], [[0.8751393976539046, 0.4835905066813839, -0.01646986707911019, 0.29541769192172757], [0.37943131484148673, -0.7069725604314019, -0.596843091703949, 1.2340985823017976], [-0.30027139722527973, 0.5160717204465967, -0.802188922488754, 0.9084243917301674]], [[0.7963926346887167, 0.6045665825761227, 0.016062958811889433, 0.2332076441240123], [0.49293075528879593, -0.6334889184658745, -0.5964151747493969, 1.1774165880411638], [-0.35039697758967825, 0.4828985788063209, -0.8025153709947579, 0.8482354091626584]], [[0.6962886688220307, 0.6972541690298322, -0.17034879935169123, 0.27896846517154594], [0.6266823329540732, -0.7062713589403542, -0.32931750804320375, 1.2888838996092298], [-0.34993048342961575, 0.12254546630154751, -0.9287256136532747, 0.9745047505885326]], [[0.6848814637557099, 0.7248190881546361, -0.0746637130774907, 0.31079000524231776], [0.6032179336503356, -0.6214750001455187, -0.4998969380949905, 1.3475993796683472], [-0.4087364739370041, 0.2973316559682292, -0.8628605804142031, 0.862877641383884]], [[0.719293663133943, 0.6913221820261958, -0.06848552265912039, 0.3764007721198105], [0.5447744115701806, -0.6224813629113437, -0.5619055021321642, 1.4644571894873648], [-0.4310886993110779, 0.3668659066560635, -0.824361534679844, 0.6794519446175046]], [[0.7806862288534103, 0.6218798949053346, -0.061598769396552594, 0.4659684267604896], [0.5191013742137887, -0.7002113395470383, -0.49014063620464915, 1.4788879322895372], [-0.3479407641653903, 0.3506700390427904, -0.8694640581126583, 0.7054654799753888]], [[0.7616409036486607, 0.6460711861459535, -0.04995153972814312, 0.44586333269356626], [0.5713309696049961, -0.705900943366828, -0.41867025368903044, 1.4947813584031342], [-0.305751626421621, 0.2903375287243847, -0.9067635096069705, 0.6972534613926672]], [[0.6408450463266152, 0.7664260107333813, -0.043689777636802235, 0.2909677227149147], [0.7048111252503715, -0.6099719293718452, -0.36218161618405476, 1.5471242856910543], [-0.3042349492118609, 0.20130925326398585, -0.9310830683823828, 0.7076548568028097]], [[0.5403589425841157, 0.8406907254360707, -0.03537396408588431, 0.16004798082445945], [0.8097435792573244, -0.5309766226688527, -0.24975820713385113, 1.578080405227843], [-0.2287521563197019, 0.10631524041712834, -0.9676618834252668, 0.7853116483538729]], [[0.4636494978176446, 0.8818612682655717, -0.08573124696680508, 0.1025144417150957], [0.8623293016150587, -0.4713606764005028, -0.18495212439803316, 1.5856452316035854], [-0.2035124535489931, 0.011824393273981451, -0.9790009524888987, 0.8563105711527654]], [[0.4657901222585363, 0.8812426753121472, -0.08031755234733887, 0.11402091482486629], [0.8520486643512823, -0.471149044682806, -0.22810447446658108, 1.5965777830298553], [-0.23885693538931121, 0.03781434784799367, -0.9703182155938626, 0.8198758679974386]], [[0.5599749714317183, 0.8249919542971595, -0.0762647147441052, 0.22728904970808494], [0.7927787862122013, -0.5602913946462231, -0.23994863870690997, 1.5668956294502936], [-0.24068615976402777, 0.0739041841193301, -0.9677852778729904, 0.8404963885608335]], [[0.6605236346423066, 0.7499594411443925, -0.035628145016368226, 0.315495880257536], [0.7164313613897394, -0.6437669825941513, -0.26886832565192065, 1.5206473520099655], [-0.22457656265995707, 0.1520687632619302, -0.9625177706119645, 0.8640243261707767]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.25402987971719115, 0.9660400446906083, 0.04728056963528221, -0.4168841164575128], [0.7671284036195818, 0.23101398142715157, -0.5984534674853572, 1.1182332005033542], [-0.5890524871103944, -0.11575479445510278, -0.7997612112310246, 0.7601184336511354]], [[-0.33875687796439957, 0.9288503644415693, 0.14993591333825482, -0.5638814729577748], [0.7274809192913414, 0.359638105238383, -0.5843217823490496, 1.1223899218597122], [-0.5966701682662185, -0.08886750664505688, -0.7975507987356374, 0.7050158078716462]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"dfe962ab-6aa7-4888-9378-796817a30ab6\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.997744804242483, 0.03346079906860886, 0.05818660097324504, 0.2214559238387145], [0.06534966597355873, -0.6821259147263545, -0.7283087653021063, 1.2950650434292887], [0.015320795158011775, 0.7304687614021728, -0.6827742392997131, 0.8685248819357283]], [[0.9972057072129127, 0.04147591883305655, 0.062133128514075237, 0.21638610410448372], [0.07396196748026496, -0.6651267809447092, -0.743058539172101, 1.305628992481383], [0.010507372099679137, 0.7455777044863146, -0.666335862538162, 0.8336918380344585]], [[0.9974368001870209, 0.03567632396355877, 0.06202442697135638, 0.2336950085019392], [0.0698895254220347, -0.671585007654276, -0.7376239094079645, 1.2934287512574842], [0.0153389657070052, 0.7400680897069224, -0.6723570024388725, 0.8574801503737679]], [[0.9967792187184527, 0.060259301436082, 0.05291508028405102, 0.23938378595454138], [0.07985619508557056, -0.685269449238872, -0.7238983147143723, 1.2901591934405054], [-0.007360518832762768, 0.7257923935467281, -0.6878744247551468, 0.8710831761998195]], [[0.995977125083177, 0.06899927511174682, 0.057172251530817356, 0.23643680872187128], [0.08903389153484755, -0.6899057231101202, -0.7184031315202233, 1.294109232273954], [-0.010125831778702087, 0.7206033536238614, -0.6932735926579303, 0.8770717735920758]], [[0.9965663794035192, 0.06797775135103501, 0.04727025241964207, 0.26055365364318045], [0.08105522579303259, -0.6844650551002018, -0.7245258026587583, 1.2995421102499316], [-0.016896798933535392, 0.7258695569232355, -0.6876248137740997, 0.8643030223473839]], [[0.9973563232211156, 0.06301916810474716, 0.036179399970748885, 0.29442715880265535], [0.0696057591431292, -0.6855530557747552, -0.724687550611989, 1.2949500142942294], [-0.020866308369390407, 0.7252900055627962, -0.6881271721170096, 0.8724732943936854]], [[0.9960895935805121, 0.08192640294673106, 0.03306941276797305, 0.30143515835360235], [0.08049953102913485, -0.687378192891792, -0.7218248024561802, 1.2872712283623238], [-0.03640531643452753, 0.7216642463341412, -0.6912853018098082, 0.8736583354242686]], [[0.9795583890845667, 0.198333490754174, 0.03360340487679204, 0.2882708913999596], [0.16571170414161251, -0.7009014125075674, -0.6937411916957069, 1.3005715731635643], [-0.1140394382857629, 0.6851284816661477, -0.7194400392842387, 0.8878412365948236]], [[0.9220687231714693, 0.3869442430735408, 0.00796382453227644, 0.28128258628401576], [0.29674701442617557, -0.6936242084337558, -0.65637387737767, 1.275480119336448], [-0.24845619166784205, 0.6075850641901017, -0.754393737112804, 0.8548152448307724]], [[0.8744500189851883, 0.4846691485599898, -0.02080818903552828, 0.2958715631424865], [0.37593782763903844, -0.7041366072908634, -0.6023806006363024, 1.2328468256313587], [-0.3066071004507958, 0.5189291422796047, -0.7979377364469665, 0.8951933850777581]], [[0.7895889985864392, 0.6135420817919971, 0.010739049380950716, 0.22044053267542701], [0.4984734040434647, -0.6311001468375274, -0.5943373369753682, 1.1833961777674427], [-0.35787355137336563, 0.4746353532260254, -0.8041441429839686, 0.8456136134549164]], [[0.686586654428846, 0.7030983143993641, -0.185071678678767, 0.2699499102814482], [0.6360330858319172, -0.704170571838516, -0.3156037380699828, 1.2907535756775157], [-0.3522224860614848, 0.09897760375655813, -0.9306679076165014, 0.9836750108951039]], [[0.6782014909317458, 0.7317995267708205, -0.06717283912386615, 0.2909064789836888], [0.6028225060013329, -0.6062811788459035, -0.5186792442690324, 1.3478841631008125], [-0.4202948535923685, 0.3112757375627355, -0.8523260240357234, 0.8302053475197052]], [[0.7272600249836996, 0.6838510159160489, -0.05865700377018873, 0.3851120878328242], [0.5423829564692559, -0.6249705606618005, -0.5614557211728669, 1.4636644875012068], [-0.42061096584893914, 0.3765097426849171, -0.8254252413580287, 0.6833357775565961]], [[0.7764165630029976, 0.6272712456045663, -0.06089421263394321, 0.4540635897835181], [0.5230026312056287, -0.6952237801982654, -0.4930843165208391, 1.4829213661904614], [-0.35163271811166996, 0.3509909968710448, -0.8678477698703091, 0.6956138191723876]], [[0.7616409036486607, 0.6460711861459535, -0.04995153972814312, 0.44586333269356626], [0.5713309696049961, -0.705900943366828, -0.41867025368903044, 1.4947813584031342], [-0.305751626421621, 0.2903375287243847, -0.9067635096069705, 0.6972534613926672]], [[0.6513969186081787, 0.7575948577374854, -0.04161833679388201, 0.3060362444454417], [0.7060739164370635, -0.6253506653865678, -0.33225919073488763, 1.5495675790785877], [-0.2777439089431057, 0.18704699096829988, -0.9422694647576707, 0.7387002750528283]], [[0.5629143702721596, 0.8262420257362622, 0.021249156414689344, 0.17743223824792598], [0.8079305733582682, -0.544653762818718, -0.2249454762390027, 1.5745728049779677], [-0.17428597296993775, 0.14379288422814876, -0.9741396234992562, 0.8409490220002315]], [[0.46802431134104855, 0.8796478521480428, -0.08469297612595887, 0.10645896688035342], [0.8599895620714556, -0.47542057144132205, -0.18545412742388015, 1.584482464604109], [-0.20339910796727523, 0.013961964823824946, -0.9789963566920844, 0.8529544670010164]], [[0.47244579754055394, 0.8795018810198685, -0.05719623823979045, 0.11326797032105827], [0.8604312781658428, -0.4743131668458961, -0.18623918843925186, 1.5989723146736334], [-0.19092664544312313, 0.038774489540546894, -0.9808381900296836, 0.8854596093356225]], [[0.5689504385901263, 0.8191186033980018, -0.07307606992312914, 0.23826273904486764], [0.7931309358495204, -0.5700345794128432, -0.21448519033277533, 1.5674480419173855], [-0.21734469633871195, 0.06407255138458282, -0.9739897284532846, 0.864826050596348]], [[0.6634518720072258, 0.7480416140071151, -0.016289789554742903, 0.3113214701781467], [0.7207712293117143, -0.6448050537609287, -0.2543919763688425, 1.5241101990319894], [-0.2007995232230091, 0.1570356213029253, -0.9669639937016352, 0.8858297122368526]], [[0.7766197516101448, 0.6299389469537264, 0.006219688081201893, 0.38123349726380074], [0.5787882864429106, -0.7095910260978199, -0.4018515834956015, 1.4679913772421118], [-0.24872852849135824, 0.31568575956522565, -0.9156836901038755, 0.7477511344859676]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"b3d7a127-2aa6-42d2-88ce-fb023625117e\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.9978468164946103, 0.02971979078424917, 0.058467639317079406, 0.22536781457900318], [0.0629345781618171, -0.684840956367428, -0.725969767520205, 1.2934701276149756], [0.018465364420064, 0.7280862576079066, -0.6852367706124266, 0.8765495859563255]], [[0.9972232806533268, 0.040547070473513, 0.062463298015972446, 0.2171674861932056], [0.07358834202102355, -0.6652008736458411, -0.7430293087216726, 1.304861905076353], [0.011422978666402097, 0.7455626954031604, -0.6663375892005202, 0.8355413420918978]], [[0.9974161855990059, 0.0411290173158512, 0.05890124480655429, 0.2320539054222815], [0.0711945976773938, -0.6755388395347075, -0.7338791491394578, 1.295429933522218], [0.00960635033107049, 0.7361763920520223, -0.6767215363933555, 0.8593079981232322]], [[0.9966638331831114, 0.06059788162719997, 0.054672665629567546, 0.23692849027414592], [0.08130934512979415, -0.6791813382611637, -0.7294528772664749, 1.2899890599500972], [-0.007070644900619465, 0.731464699421695, -0.6818426500891673, 0.8593274996378402]], [[0.996534980666368, 0.06265685526375946, 0.05470055572605036, 0.24592101001884362], [0.08299530606941401, -0.705914826039067, -0.703417399236526, 1.2915339477664822], [-0.005459988894377973, 0.7055199337132085, -0.7086690423989065, 0.9106147329675341]], [[0.9964538649352882, 0.06936703292110813, 0.04762257657086994, 0.2591819963299903], [0.08215401158456659, -0.6798206039344465, -0.7287624200291665, 1.2978751970523335], [-0.01817727801650639, 0.7300905157649469, -0.6831086482793088, 0.8546725407510635]], [[0.9971902941313786, 0.06509660228200359, 0.03706682696850275, 0.29096950573784675], [0.0715385123366985, -0.6807747873619557, -0.7289910357095868, 1.2960303156574235], [-0.022220678271067988, 0.7295944909767498, -0.6835189245321237, 0.8622776325833789]], [[0.9964055553401627, 0.07680438110565817, 0.03573592492492441, 0.3041253881601076], [0.07885672543854864, -0.686865797420645, -0.7224935938725069, 1.2853323807260524], [-0.03094488876005811, 0.7227146486523423, -0.6904534383164076, 0.8790378827968435]], [[0.9807624489327402, 0.1918922819731088, 0.0358102064027381, 0.2931236810003806], [0.16350320999856127, -0.7073264495941431, -0.6877179611037582, 1.299193553833759], [-0.10663826275601165, 0.6803430354047116, -0.7250942249754048, 0.9051641900292815]], [[0.9235652018988816, 0.3833438172230141, 0.008650759409816106, 0.2848613501054686], [0.29556542411661507, -0.6973516411160692, -0.6529485191801039, 1.275867019137372], [-0.24427115652127993, 0.6055973963200414, -0.7573528871418811, 0.865545210075392]], [[0.872737326973493, 0.48778557268222916, -0.019869403368796973, 0.2909344662034883], [0.3780379973749873, -0.7010109831140656, -0.6047072631399102, 1.2325635941773314], [-0.30889614864525483, 0.520239210975606, -0.7961999326272313, 0.8909176305027905]], [[0.7845296639096279, 0.6192255180523075, -0.03275613284100937, 0.2350316927650548], [0.5148317373645669, -0.6798914243626862, -0.5222029617689462, 1.198698360146925], [-0.34563201334371224, 0.39281981730932225, -0.8521919399296398, 0.9555903562793513]], [[0.6914762842897905, 0.7056075622620112, -0.15484998012091106, 0.2626983966598665], [0.6313492685771903, -0.694452274946545, -0.34515813606029183, 1.2960448727258251], [-0.351082111950796, 0.1409042437268309, -0.9256820970332842, 0.9650400136417769]], [[0.6877820071792063, 0.7222510466607251, -0.07286519195082111, 0.3159001263631336], [0.601780750645008, -0.6234237190963099, -0.49920215806951024, 1.3476877956710231], [-0.4059751701196439, 0.29949339235718125, -0.8634163938568191, 0.862805815319945]], [[0.7204288573146493, 0.6900215730771121, -0.06965981794762358, 0.38124958621602595], [0.547919512504594, -0.6278694736098684, -0.5527785559567181, 1.4666449884982358], [-0.4251664019710828, 0.3600696499249198, -0.8304115713535725, 0.6960408912109975]], [[0.7756590472438695, 0.6282860223464914, -0.06008091671035437, 0.4523479305689346], [0.5195321145764344, -0.6896360868495227, -0.5044684823045104, 1.481356941420849], [-0.35838446444073313, 0.36008157664465634, -0.861337235819181, 0.677394640819885]], [[0.633750192932736, 0.7552672552519751, -0.16712889068580533, 0.25443395653976925], [0.6580773688789984, -0.6399784498477965, -0.39668849277450224, 1.5402619594606601], [-0.40656471751372475, 0.1414176681838565, -0.9026107542005168, 0.5935330174384561]], [[0.6352266981138303, 0.768367310229848, -0.07809429283596375, 0.2979615737357093], [0.6963979839213168, -0.6135624032030232, -0.37225129330340323, 1.5457785451287465], [-0.33394144695399275, 0.1820792518269977, -0.9248406652285541, 0.6545294471202778]], [[0.4612989967138336, 0.8796900709780097, -0.11553620494682468, 0.05710178678495147], [0.826001125445306, -0.4733416539622643, -0.3060552554480247, 1.583324484421124], [-0.32392186773031895, 0.04574994696141316, -0.9449770187465564, 0.6514533551798238]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8051480694712221, 0.5930192626146856, 0.008046141603281112, 0.4483160944970408], [0.5567136472506152, -0.7510391914603682, -0.3549789400168326, 1.4492792811218318], [-0.20446638156842084, 0.29029000509575087, -0.9348396716816344, 0.8317729489474491]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.23324595525338543, 0.970479422479513, 0.06136786538381833, -0.37767347484398317], [0.7863928717081137, 0.22537159045847677, -0.5751468486750863, 1.143605315375902], [-0.5719987549677025, -0.08589142424041693, -0.8157451118807583, 0.8231882215157266]], [[-0.33340788183943626, 0.9300108172014538, 0.15465789412643888, -0.5522757971037959], [0.7295476544744961, 0.35840949822297086, -0.5824970827689352, 1.1265422646808758], [-0.5971594461934786, -0.081378814637733, -0.7979837619588858, 0.7054618845633136]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"d5935c29-1b8d-417d-9bbb-5ebd47e9256d\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.997902231231284, 0.025628385230378564, 0.05945017051370606, 0.22840237959441012], [0.0607061821346441, -0.6894786127748473, -0.721757578399221, 1.2920866643041755], [0.0224921398328578, 0.7238524907718116, -0.6895880474958827, 0.8893795956030935]], [[0.9972446754781691, 0.040803112521566834, 0.06195291146502794, 0.21714555246990452], [0.07338730236410848, -0.664600790718042, -0.7435859686873282, 1.3042533965926928], [0.010833331997135105, 0.7460837050797354, -0.6657640302181654, 0.8338459527596297]], [[0.9975440053251114, 0.039605442322254936, 0.057769943555384826, 0.23493775642285233], [0.0692212179875795, -0.6833826645993913, -0.7267713235298651, 1.2953217347165058], [0.010694878225104367, 0.7289852828853914, -0.6844458173707075, 0.8739969478476501]], [[0.9966552913222474, 0.06130415576365341, 0.054037309013981294, 0.2374587254632911], [0.08135463297322414, -0.6818173530008311, -0.7269845396160307, 1.2906236479010214], [-0.0077235984591883175, 0.7289491735594779, -0.6845242496754922, 0.8630008174909573]], [[0.995884507286514, 0.06992232332184477, 0.057662091949329586, 0.2348772401037151], [0.0900010334597894, -0.6880763151525051, -0.7200352758735646, 1.2942685290216118], [-0.010670619610285436, 0.722261623809147, -0.6915376234520482, 0.8739748111644134]], [[0.9965482178465364, 0.06779419851670918, 0.04791237996977825, 0.26066403584890285], [0.08133634101249776, -0.681846540721055, -0.7269592110548083, 1.2978420417331487], [-0.016614726527693902, 0.7283469238997359, -0.6850070870496174, 0.8603452476510591]], [[0.9971806173754167, 0.06526631845006224, 0.03702869166953166, 0.29087223713888166], [0.07161914280999877, -0.680522846918821, -0.7292183165586722, 1.2960216154498934], [-0.022394524195507685, 0.7298143342641866, -0.6832785104103443, 0.8615409105138404]], [[0.9963681596795652, 0.07729910066574756, 0.03571189455943857, 0.30357144888600546], [0.07919711006223278, -0.6872139384200716, -0.7221252111642168, 1.2857363004141087], [-0.031277917682422884, 0.7223308465498622, -0.6908399525128892, 0.8790269590653595]], [[0.9816264302006584, 0.18650673469728782, 0.040308677031958076, 0.29685519529713783], [0.16216169860465782, -0.7040720857843009, -0.691365374838078, 1.2973736842881056], [-0.1005640842307199, 0.6851990484026517, -0.7213800170720958, 0.9034280330494068]], [[0.9217480501577092, 0.3877594202434658, 0.004812903792150908, 0.2815348258682901], [0.2954586444775576, -0.6941919199429996, -0.6563549098539121, 1.274625129827838], [-0.25116672039493093, 0.6064158723997122, -0.7544369213312344, 0.8537656870279897]], [[0.8711734139804462, 0.49049053860306313, -0.021815460447377588, 0.28850382751136017], [0.3780553614022615, -0.6984982681436563, -0.6075971635181636, 1.2319839915561992], [-0.3132587213289672, 0.521075043483364, -0.7939456987541091, 0.8829033262501655]], [[0.8070057082799568, 0.5905362738000408, -0.002948920129221072, 0.2683598698971682], [0.49769818374549724, -0.6828073733692498, -0.534855689666866, 1.1892111448639127], [-0.31786523040433123, 0.4301639224748501, -0.8449382788707422, 0.9551388543376756]], [[0.6917086406936191, 0.7052846027981091, -0.15528292065033916, 0.26101613169435084], [0.6319318808901467, -0.6951953513255835, -0.34258651667854656, 1.295565031998794], [-0.34957295991599174, 0.1388418256549951, -0.9265644570910113, 0.9739117322651039]], [[0.6879870246742424, 0.7220551192088113, -0.07287152190143753, 0.3159753429468012], [0.6020699632008654, -0.6239429319999237, -0.49820375050640364, 1.3479006877777013], [-0.40519823949665784, 0.2988839614828599, -0.8639923404041967, 0.8639471914567564]], [[0.7204288573146493, 0.6900215730771121, -0.06965981794762358, 0.38124958621602595], [0.547919512504594, -0.6278694736098684, -0.5527785559567181, 1.4666449884982358], [-0.4251664019710828, 0.3600696499249198, -0.8304115713535725, 0.6960408912109975]], [[0.7745267429057697, 0.6295380521380975, -0.06156431948742214, 0.4505756783512932], [0.5206326186528853, -0.6897468276558656, -0.5031808721854488, 1.482420379371571], [-0.3592353002120181, 0.3576746491559607, -0.8619854084801793, 0.6771233481388761]], [[0.6421923833060861, 0.7487026177711087, -0.16441816495247163, 0.2685391172162497], [0.6583437059225477, -0.6485783191905317, -0.3820074982878625, 1.54123796245164], [-0.39264807104558064, 0.13707864173048312, -0.9094157125789673, 0.6217102648132573]], [[0.6300536720492828, 0.7731901338866891, -0.072176084664511, 0.28517919446867124], [0.7018364605470211, -0.6067475434304218, -0.3732063788146966, 1.5473328719642274], [-0.33235215206771984, 0.18448424160733273, -0.9249365446421303, 0.6582443294092433]], [[0.4637957644910539, 0.8804525195220518, -0.0984725835318119, 0.05329375548663105], [0.8285295411476954, -0.47041398246940486, -0.3037260024147802, 1.5834657283721678], [-0.31373920425370483, 0.059279389036534375, -0.9476569346286167, 0.6609583859556815]], [[0.37176270545696793, 0.9153449795715825, -0.15471282818310447, -0.02433371900536043], [0.8744019579984279, -0.40124428743886037, -0.27280806008290287, 1.5859658929113312], [-0.31179112668552844, -0.03386133740389384, -0.9495471042288468, 0.6931465129754592]], [[0.36749934013088786, 0.9167161371464158, -0.15676657455821336, -0.014281261482516613], [0.8763258950407865, -0.39777321058998044, -0.27171565766054645, 1.600773078710928], [-0.3114436717679882, -0.03752328386872349, -0.9495234817967276, 0.7125663586040315]], [[0.5019078355377256, 0.8558354647416205, -0.1250367222712196, 0.147942449744088], [0.8095545990863114, -0.5157359627733498, -0.28042426392958325, 1.5785381283406708], [-0.30448296458757296, 0.03952308177181346, -0.9516974573272867, 0.7420084774491538]], [[0.5848954028529902, 0.805026199377988, -0.09914729465028398, 0.2038902304795563], [0.7519747488380343, -0.5840047606166452, -0.3057325901618451, 1.5472058361237198], [-0.3040252371620052, 0.10426532449538274, -0.9469410738142368, 0.7461130824048942]], [[0.7932676126205184, 0.6088568988537889, 0.004446513858133161, 0.42097715981951284], [0.5677412866324184, -0.7370208532587399, -0.36670164073088773, 1.4586369634449965], [-0.21999165034225643, 0.2934170045854637, -0.9303279718463723, 0.8041133500916594]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.23324595525338543, 0.970479422479513, 0.06136786538381833, -0.37767347484398317], [0.7863928717081137, 0.22537159045847677, -0.5751468486750863, 1.143605315375902], [-0.5719987549677025, -0.08589142424041693, -0.8157451118807583, 0.8231882215157266]], [[-0.33340788183943626, 0.9300108172014538, 0.15465789412643888, -0.5522757971037959], [0.7295476544744961, 0.35840949822297086, -0.5824970827689352, 1.1265422646808758], [-0.5971594461934786, -0.081378814637733, -0.7979837619588858, 0.7054618845633136]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"6836bfae-e56b-457d-bade-1160256d4d9f\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.531222199687829, -0.8415509904474308, -0.09795358613022914, 0.39703517242594755], [-0.7263606916507135, 0.5118950017002024, -0.4586541756694763, 1.6038611017213844], [0.43612282694617227, -0.17249764552392632, -0.8831995482931252, 0.920287687117122]], [[-0.32984840161653456, -0.9391532426728914, -0.09587084399342105, 0.31646224907471765], [-0.8352764232042881, 0.3376617377763667, -0.43393299906885996, 1.8261522693173013], [0.4399014989631981, -0.06305345049113156, -0.8958297458731175, 0.965827339460753]], [[-0.2199627619841079, -0.9681032633717562, -0.11996855750270008, 0.4535230657681925], [-0.8497535566598765, 0.2505515208686051, -0.4638349149582414, 1.9599729347226198], [0.47909839937554877, -8.270057360432181e-05, -0.8777611958137602, 0.7539487620899701]], [[0.09630991830095603, -0.9749390818498618, -0.20054472398597717, 0.18798062736521537], [-0.8881074253889569, 0.006804434047134596, -0.45958557488926555, 2.1854255617326017], [0.4494325317618448, 0.22236790766440828, -0.8651953034055906, 0.6684749821054072]], [[0.32959122977011046, -0.9187600958447499, -0.2173695184288089, -0.14185179749543245], [-0.860876969803883, -0.19792774484334652, -0.46873814724482543, 2.313621415773212], [0.3876344465084479, 0.3416203947433074, -0.8561746561160966, 0.6561781383952955]], [[0.5609129405484976, -0.8062271079425948, -0.18808116211826645, -0.6450240397818153], [-0.7798857058389598, -0.4383568070396351, -0.44679032615991565, 2.3577986736240444], [0.2777678148261701, 0.3972922855285965, -0.8746450027903656, 0.7756359977461508]], [[0.6677890721106916, -0.7208741508160957, -0.18546755472242124, -0.9454552181213575], [-0.7221608764813242, -0.5670626194290944, -0.39613590360624906, 2.393890552850888], [0.18039241571991646, 0.3984726393761391, -0.8992653290432953, 0.915564295813396]], [[0.8259315133961923, -0.5103718083103613, -0.23949478587453205, -1.3462503265578596], [-0.563768367963548, -0.7488571420858238, -0.34839375429357194, 2.1615404967919725], [-0.0015370305116124, 0.42276896530973523, -0.9062361941062287, 1.3087693147814383]], [[0.9266390813809949, -0.2296391975152215, -0.29766735095060726, -1.6970599346642024], [-0.32858433598501585, -0.8794289703626006, -0.3444372515165316, 1.6927937765623193], [-0.18268099792445067, 0.41697784719519726, -0.8903690964683049, 1.699265868067901]], [[0.9635183346671404, -0.0864386592983848, -0.25329977682374316, -1.8994721515828794], [-0.18157418473356607, -0.9064150771547421, -0.3813692742538428, 1.448059984696307], [-0.19662968798887204, 0.413448988492244, -0.8890425747488914, 1.7267183073623922]], [[0.9668635987562202, 0.02030538803602496, -0.25448471981020304, -2.0006589798363144], [-0.08309532710361217, -0.9175193677250393, -0.3889130705736024, 1.3160636621424884], [-0.2413916900262202, 0.397172382053625, -0.8854287949463439, 1.8232033518236763]], [[0.9738398164762846, 0.07545826102907979, -0.2143409962837339, -2.045014029492072], [-0.00985233554881882, -0.92834645920807, -0.37158549912513067, 1.201285537585428], [-0.22702190055073948, 0.36397651369052136, -0.9033173053540067, 1.773884628307395]], [[0.9297135502270535, -0.33693393329032767, -0.1486883960560379, -1.8329460831749678], [-0.36828017426139487, -0.8522736819604606, -0.3714825490969349, 2.09900809582219], [-0.0015581303555270848, 0.40013134797847194, -0.9164564782872815, 1.1795792650204469]], [[0.6438789663415294, -0.7559885912570607, -0.11790303894356712, -1.0116971207687264], [-0.7363474726051937, -0.5703925252488337, -0.36392961782218597, 2.91233639516271], [0.20787562697658207, 0.3211442308829843, -0.9239340380566513, 0.6949237392773548]], [[0.16822348582589358, -0.9811874805456153, -0.09472057240712436, 0.20850774013243747], [-0.9028995377378335, -0.11481224601316047, -0.41423492479294916, 3.272103185095741], [0.395567040549882, 0.15520720404015237, -0.9052278388586196, 0.24312599585708533]], [[-0.08217693006726205, -0.9887112505451336, -0.1252877296872999, 0.8151355438409972], [-0.8816308253841043, 0.1307397152049104, -0.45346908891420773, 3.2772088643102246], [0.46473007208191613, 0.07319282692734691, -0.882422104318064, 0.002409408653549965]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.23783809857252702, -0.9678329241780845, 0.08205162852925596, -1.508492880482499], [-0.767451680408028, -0.23902904312533135, -0.59488068953487, 4.306835206570875], [0.5953578395438317, 0.07851463188149443, -0.799615217135226, -1.7654384223172466]], [[0.2847689491087452, -0.9468261705258123, 0.14975596292277144, -1.7322423488905432], [-0.7431934144686967, -0.31674010955049725, -0.5893549454210927, 4.289568304795636], [0.605450406155501, 0.05653234303798421, -0.7938727227186826, -1.714084186621358]], [[0.4112872153878335, -0.9031895067875108, 0.12284763443979874, -2.314905700382444], [-0.7452035981835076, -0.41079138055954656, -0.5252828180250475, 4.299282858085127], [0.5248946786859959, 0.12449560830372583, -0.8420133133153005, -1.2255548768445785]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.909210449616153, 0.2730436046722518, -0.3142985018360357, -3.5913613981373578], [0.017113010493934433, -0.7787854328910718, -0.6270569307395465, 0.7596766369122777], [-0.41598497951323665, 0.5647481203724799, -0.7127524516654595, 3.1202726611015326]], [[0.8023589941726422, 0.592222666097038, -0.07411044616774567, -3.1881327678511813], [0.3616209500828982, -0.5811636306702043, -0.7290261468886892, -0.44122838882404936], [-0.4748161043303061, 0.5581407959889177, -0.6804619893289038, 3.2895607134578904]], [[0.7087292446163806, 0.6922007084137991, 0.13623889715103202, -2.9037180771063875], [0.5194837730843163, -0.3813913646711766, -0.7646419007982367, -0.897192064910749], [-0.4773253265096852, 0.6126979730876317, -0.6298902495250505, 3.122225341257548]], [[0.6377877282687905, 0.7483069165687535, 0.1823830372734817, -2.569760909864125], [0.5647583813806571, -0.2933462400571971, -0.7713598084581575, -0.8986645896048423], [-0.5237125015980006, 0.5949661688362372, -0.6097052350195906, 3.1864355246657836]], [[0.5861457992700592, 0.7909546174438583, 0.17556735215381744, -2.2772675336940718], [0.5584232803177017, -0.23739068219670917, -0.7948642047578933, -0.733843495686344], [-0.5870234594948318, 0.5639472113154034, -0.5808330232108871, 3.24717057903372]], [[0.578534702352795, 0.8113282819940391, 0.08392864237055264, -2.0799921184945966], [0.5012931778671579, -0.27250291152001815, -0.8212474128038147, -0.4009569295818108], [-0.6434304531162703, 0.5171929833724684, -0.5643657235807971, 3.2776984725994054]], [[0.6310457065642322, 0.7706989450363092, -0.08834281151722917, -1.9485076167561484], [0.36528066697468653, -0.3956775382217028, -0.8426205077502809, 0.22246810105179887], [-0.6843620025698218, 0.4994621325653558, -0.5312120363582609, 3.228505772709093]], [[0.6285123994248242, 0.7753944473296313, -0.0611196762068128, -1.9109959564037036], [0.38034296048177957, -0.3749356958646084, -0.8454362521080329, 0.25155713850816774], [-0.678462523785364, 0.5081207287809634, -0.5305675534763665, 3.0309836607953677]], [[0.6397036584252673, 0.7682417436201822, -0.024163045270641115, -1.899831346342041], [0.35806598575657167, -0.3256788987091194, -0.87505542954706, 0.4751395639353624], [-0.6801235029327419, 0.5511241949824354, -0.48341922020484374, 2.7639109671942497]], [[0.6853175706972301, 0.7281474128644192, 0.011881600586612917, -1.992726612686218], [0.3705365843226873, -0.3346030777408523, -0.8664545112380828, 0.5565189161586909], [-0.6269309905979467, 0.5981990684589888, -0.49911462363136094, 2.4630683259189157]], [[0.708563825369655, 0.7048732191861765, -0.033031049811319435, -1.9292987204160377], [0.37212873914877387, -0.41302894788504807, -0.8312203617023072, 0.6014633530753006], [-0.599547751957311, 0.5766808762938883, -0.5549609536173226, 2.297090008217441]], [[0.7200992150115592, 0.6776398494972102, -0.14920239580225983, -1.757954812151805], [0.35854386970055296, -0.5474892481949485, -0.756109659117699, 0.6735497213394934], [-0.5940567431145689, 0.4909783676337771, -0.6372101917544812, 2.244044469258534]], [[0.7583121077565242, 0.6136572983995168, -0.21997151486241306, -1.6621635544053235], [0.3192945159596904, -0.6438234448476774, -0.6953721190431328, 0.8557874084809296], [-0.5683429944214368, 0.4570733989038045, -0.6841565235431133, 2.138601265631278]], [[0.8051488860498406, 0.565337631388874, -0.1792446200819397, -1.730599745906293], [0.27666860625479844, -0.6253662812323604, -0.7296379215820925, 1.0969934842930436], [-0.5245853158502711, 0.5378758005648014, -0.6599241392471148, 1.8185204757251237]], [[0.8796448966694722, 0.45487581110729913, -0.13897068839445942, -1.7635217116941222], [0.21588706901119037, -0.6421943731186912, -0.7355128554746333, 1.3398975601859462], [-0.4238132008292223, 0.616988155157105, -0.6631048086077503, 1.3986047469150116]], [[0.9546519163289291, 0.2971624649286703, -0.018280811990179738, -1.8214140400474454], [0.1896291489372435, -0.6542340867257456, -0.7321328743059325, 1.45194326026476], [-0.22952233992106358, 0.6954654766439858, -0.680916489940957, 0.8994399695497497]], [[0.9781167745966631, 0.2031961213196058, 0.04470918846600498, -1.8437231837163957], [0.18129588220368364, -0.7269699382669791, -0.6623039422743101, 1.5215539884991194], [-0.10207535622572551, 0.6559161875855578, -0.7479001113214375, 0.7810683211273356]], [[0.923275351744985, -0.38390621515785095, 0.013365733176597061, -1.2205986415380314], [-0.3048116443629243, -0.7533442875869487, -0.582719697471162, 2.2653022313539113], [0.23377871229208252, 0.5339367025437437, -0.8125632968303265, 0.4185714128220292]], [[0.3899190839976957, -0.9107446547586437, -0.13604147074681675, 0.2284084342514201], [-0.7746817624680549, -0.24455945030513282, -0.583145644042584, 2.626706434749799], [0.49782655095302675, 0.33276846168922103, -0.8008956711527435, 0.1094496355402887]], [[0.20541756967129643, -0.9738597293323735, -0.09695797881048321, 0.4857988223907136], [-0.8182138786230818, -0.11653650147735495, -0.5629789451231646, 2.64756124139931], [0.5369633794765811, 0.19497813058929075, -0.8207641912833398, 0.13839529619784824]], [[0.4369550392836517, -0.8833959620615743, -0.16935721968055556, -0.09796533826994373], [-0.8238949372115536, -0.3175269397935356, -0.46943985231605856, 2.708468868609478], [0.3609257902696796, 0.3446566649851096, -0.8665704571467627, 0.3504238514528783]], [[0.6706645599540081, -0.6992556525505377, -0.24748854599318026, -0.7002812094168133], [-0.7417327098881114, -0.6293071429418763, -0.2319592785908159, 2.453313700264318], [0.006452526926365484, 0.3391372173891488, -0.9407147881679174, 1.243425174185578]], [[0.7505238122330841, -0.5866370696325386, -0.3042547547764319, -0.8860932805415097], [-0.6571338941362147, -0.7112212529637701, -0.2496785423499963, 2.3081248124994675], [-0.06992175947795304, 0.38732580325301447, -0.919287588127847, 1.3437465028101374]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8073715923411746, -0.5427072845969176, -0.23155974418261105, -1.2889144255421612], [-0.5677400649026676, -0.8214098159155642, -0.05437952759883994, 2.1835181347996313], [-0.1606932810816642, 0.175370229979317, -0.9712996200206246, 1.7805079080936994]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6048143689919512, 0.7956242532306607, -0.03437479791972187, -2.368066554048462], [0.5873036636991668, -0.47477429368156565, -0.6554874344064168, -1.704370724417024], [-0.5378419709044695, 0.3762597742654987, -0.754423353696896, 3.6397001564258216]], [[0.5770942224676292, 0.8054759516660197, -0.1347989231492679, -2.1057869012731563], [0.49404455529842384, -0.47575163134712706, -0.7277227237420376, -1.0437784490342787], [-0.6502939610472058, 0.35336790538795015, -0.67249452612439, 3.9538522731362216]], [[0.5701204297565386, 0.7853720239407185, -0.2411503257005461, -1.896177477818339], [0.41820672776567497, -0.5300812845816449, -0.7376428435142577, -0.554707426836495], [-0.7071533273808068, 0.3196945663403316, -0.6306580339825386, 4.04559388857874]], [[0.5317691037490515, 0.8168805894445728, -0.22344512276310075, -1.7099852758658032], [0.4356135910808166, -0.49009622848692935, -0.7550142290636399, -0.4904097440840132], [-0.7262660804165404, 0.3041575075706249, -0.6164623192254497, 3.9450838692698977]], [[0.510791853492065, 0.8498638984635641, -0.12970364873223195, -1.7097038645596008], [0.4685449884296172, -0.40169286136629745, -0.786834441890317, -0.4336167420744716], [-0.7208032160192068, 0.34113662837002656, -0.6033809116641818, 3.7103229360743573]], [[0.4937389934455503, 0.8669959793931433, -0.06737787520766064, -1.702400760197092], [0.5319901500987644, -0.36243097688223525, -0.7652648346775661, -0.5266519384756897], [-0.6879013639681701, 0.3419967232479177, -0.6401796269317059, 3.4959083591832245]], [[0.5517437636306676, 0.8186060026350004, -0.15957140014617746, -1.7506674357440093], [0.5146121065679681, -0.4847181254240208, -0.7072642495270783, -0.41885570683102824], [-0.6563179100621466, 0.30811126453826543, -0.6887047622866325, 3.2713457609710437]], [[0.6133967717839589, 0.7438428045227787, -0.265409650398594, -1.7626590493700551], [0.45964160399491627, -0.6095094273353898, -0.645931771835281, -0.13567480751259334], [-0.6422413847160562, 0.2742191462115147, -0.7157722148903451, 3.1001631128547493]], [[0.6716106878641115, 0.6913668588096842, -0.26636619621552127, -1.8519918473220138], [0.4622795587612194, -0.6719780478904482, -0.5785698857570059, -0.06428992025471265], [-0.5789962810746091, 0.26543807129530744, -0.7709124054059577, 2.8515295045644975]], [[0.7176381963206007, 0.6626258683113542, -0.21429507186666572, -1.9358223174091942], [0.4953612826726966, -0.7019755861962711, -0.5117103438599442, -0.1204967615061486], [-0.48950241961667174, 0.26106940653593536, -0.8320036935978099, 2.5504609569457277]], [[0.7695172242265292, 0.6240886726604888, -0.13548642100065694, -2.0376332746349695], [0.5318080545562285, -0.7436812882507451, -0.40511521153226493, -0.22922962174255868], [-0.35358653074999574, 0.23969036309910616, -0.9041709435220759, 2.1836190651035334]], [[0.850459008857174, 0.5052040795313854, -0.14658892276880608, -2.0596507499458947], [0.44348608032716663, -0.8384593599950818, -0.3167112220820148, 0.05322741651979638], [-0.28291265579630615, 0.20433976524769498, -0.9371262932651059, 2.0314506510676114]], [[0.8892586446535169, 0.41127465147402853, -0.20018047847856313, -1.9621126420585888], [0.34623168264292703, -0.8912265929485832, -0.2929825625451246, 0.37139958809108586], [-0.2989024671079809, 0.1912284525800926, -0.934927266732865, 2.013479844737579]], [[0.9594001950276174, 0.18022556750998042, -0.21695624120240253, -1.9137294193575196], [0.1210619443462846, -0.9578887097977649, -0.2603713219098279, 0.952958575182888], [-0.2547455032224645, 0.22353515262186313, -0.9408170726183993, 1.878399451008102]], [[0.9794246075535638, -0.028271855087351964, -0.19982027006404424, -1.784220467049903], [-0.0773396079729407, -0.9671272094681801, -0.24224686942225598, 1.3720279263686481], [-0.18640285179454646, 0.25271656636677275, -0.949414721776869, 1.6792507381455504]], [[0.9245345303116993, -0.3704748254029527, -0.08935494392576943, -1.5240738301373908], [-0.3810719538175475, -0.8959440694756033, -0.2281849915861515, 1.9632826455965386], [0.0044797628288354915, 0.24501556708533198, -0.9695087950146973, 1.317077036369525]], [[0.7834653658920274, -0.6170759531049976, -0.0734798513010905, -1.084779687536392], [-0.618013992103098, -0.761295187341965, -0.1961844624193108, 2.357603434238519], [0.06512085696966438, 0.19911530787340503, -0.9778099857119559, 1.2563351966909264]], [[0.6812631009649867, -0.7114187259500614, -0.17252241486590042, -0.7657647403324679], [-0.7292678493414445, -0.6390817259765995, -0.24442371292424797, 2.5629283975853054], [0.06363168377840148, 0.2923319070685965, -0.9541976026637059, 1.1502756854253307]], [[0.4054305206080399, -0.8950945294691918, -0.1855582826871919, -0.16466192166996338], [-0.8758866022761954, -0.32228646259236043, -0.35910179055911756, 2.8837294303506624], [0.2616271257200893, 0.30811883964475256, -0.9146660744465244, 0.6420409147232811]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9993397005531715, 0.03469708086000457, -0.010783110779898407, -4.410099191325978], [0.015146754379054429, -0.6675901590634903, -0.7443748755522074, 1.0245879726206188], [-0.03302633388794239, 0.743720036103222, -0.6676748978122093, 1.345732153379546]], [[0.8281526802962595, 0.5558400561493694, 0.07214547870786733, -3.4695753403141074], [0.40395043431190825, -0.5026465572174061, -0.7643104638409117, -0.5111277418115444], [-0.3885706946455718, 0.6621089566660119, -0.6407999256907753, 2.824672099808459]], [[0.7375162989375603, 0.6684408715505349, 0.09621075845353547, -2.981013878486818], [0.48025041913088357, -0.4189633002783019, -0.7706031974658061, -0.7164829832859569], [-0.47479389604970057, 0.6145376752166418, -0.6300112713382764, 3.081154840850844]], [[0.7546482361574374, 0.6509962552499322, 0.08191407275330378, -2.935301873807512], [0.48307678398917964, -0.46678133673970923, -0.7407779724331451, -0.6784494802583051], [-0.44400772564803415, 0.5985975771100775, -0.6667368898169689, 2.9134832493222858]], [[0.7594627029973828, 0.645693896213958, 0.07934604683251645, -2.8866777395347096], [0.48095530294415917, -0.47515307124647504, -0.7368253222134364, -0.5753919659511889], [-0.4380620952853619, 0.5977532528368883, -0.6714109392891344, 2.798476424355041]], [[0.7285026784881315, 0.6801029915210128, 0.08212045031407736, -2.7535317694319357], [0.515251498798907, -0.46498995981213687, -0.7199307121240122, -0.6306737909501525], [-0.4514418461120965, 0.5667841372145805, -0.6891705169120526, 2.7314907749735813]], [[0.7773214796160852, 0.6285463610336688, 0.026472426386564496, -2.8740589531183467], [0.48337424916017385, -0.569797047845717, -0.664590595415812, -0.457195850288724], [-0.4026420899214305, 0.529396634195608, -0.7467386096393196, 2.527444258668452]], [[0.7276570300887867, 0.6859391890453868, 0.0016356937743556843, -2.6557716544089787], [0.5404600862219935, -0.5718584244415053, -0.6171554403845068, -0.6018035389623836], [-0.4223957170276254, 0.4499615220516486, -0.7868395560148727, 2.5774217570771087]], [[0.6732446036201998, 0.7393977004604085, -0.0057222591814314605, -2.4512538350633695], [0.6010297543631188, -0.5517312936093131, -0.5782350854301413, -0.7544302172296257], [-0.4307028419531135, 0.3858544028594902, -0.8158501343552366, 2.5545403535470315]], [[0.6824241403222089, 0.730661244155643, -0.020771109609768967, -2.4024515578616454], [0.6094706581765872, -0.5844624784634621, -0.5356763277298564, -0.7023399928039544], [-0.4035378662867848, 0.35289907559708134, -0.8441678937956799, 2.395891917276868]], [[0.7424039469524571, 0.6699149640770793, 0.007093691212517156, -2.5344893508247752], [0.6067184601593939, -0.667803258106951, -0.4311977719835236, -0.6117817747579778], [-0.2841286498247353, 0.3244268012469782, -0.9022295500488922, 2.0344749824253534]], [[0.7738363896802238, 0.6299745524939251, 0.06564529851219851, -2.6014672336667877], [0.6056760677011483, -0.7056774900257776, -0.36766259135924084, -0.5662111853131097], [-0.1852936669742134, 0.32427047858384683, -0.9276394308664611, 1.7401234924768427]], [[0.7936490884795857, 0.6069562563832674, 0.04153585430362644, -2.686625004963729], [0.5858372630317717, -0.7440522127379944, -0.3212180037967013, -0.512817846461185], [-0.16406043276477578, 0.279267627119407, -0.9460939524403117, 1.7027106427819425]], [[0.8563490144322844, 0.5113615981827851, 0.07194220864557323, -2.759900797795166], [0.5148503043458864, -0.8346809774599868, -0.19554239944674548, -0.33600427384405507], [-0.03994408086066696, 0.20449200906243317, -0.9780529068684413, 1.446934460365217]], [[0.9763713649536372, 0.17433509335301095, 0.12769586102990305, -3.071483941885468], [0.18931425051522727, -0.974990959659725, -0.11641624943995797, 0.48585135373512184], [0.10420687237619755, 0.1378401385932476, -0.9849573716370499, 1.0984348064365967]], [[0.979671624203665, 0.18384323805526706, 0.08028183201389641, -3.042047954280719], [0.1942179080762382, -0.9694049310709557, -0.15011157116560164, 0.5031036337919521], [0.050228606517033425, 0.16265221620583592, -0.9854041524423809, 1.2484989830876498]], [[0.9792093248071573, 0.2011514793387663, 0.026214129215691873, -2.9770612470057287], [0.20238885478276822, -0.9600483990420223, -0.1932506738838697, 0.5222048798989941], [-0.013705826149148202, 0.1945383094834436, -0.9807991621493636, 1.3966509599013641]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3832102067697808, -0.9050223169973137, -0.18461999665333056, 1.8148623777440556], [-0.8275894266589356, 0.4251848350842742, -0.3664881947576115, 3.837929587555147], [0.410177618002002, 0.012347540288356412, -0.911922069005368, -0.2170249365352744]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9610070227236146, 0.17091798509223202, -0.217376504360305, 4.6336750552199035], [0.25628568251670214, 0.8457224428615713, -0.46805042311401057, 0.01669371795862711], [0.10384195304809282, -0.505510229384399, -0.8565490393286832, 0.6823156578234024]], [[-0.9099079843655414, 0.31023764904398193, -0.27535442815306366, 4.426399059983424], [0.4127748674329656, 0.7428604569895971, -0.5270438788724386, -0.5473227190581881], [0.041041062407487394, -0.5932208210749782, -0.8039929655411131, 0.877238635437131]], [[-0.8865528722595586, 0.27871563600073307, -0.36924463291567733, 4.175284717029843], [0.4518564213402972, 0.6929038352268226, -0.5618808144273125, -0.590539380782276], [0.09924605373447473, -0.6649826083264637, -0.7402353351748795, 0.5172242567686981]], [[-0.8395475559985679, 0.36097557422978505, -0.4060252898851344, 4.047923812371235], [0.52386846836788, 0.7359030987458421, -0.4289620695424698, -0.8678635052211867], [0.14395043961975917, -0.5728379038312184, -0.8069293691938179, 0.5001438135781149]], [[-0.8230080312972224, 0.2787824187589006, -0.4949122582955562, 3.9224755632387898], [0.49420135215087085, 0.7809674574928985, -0.3819094838693177, -0.7129329566943214], [0.2800407183830975, -0.5589008796987304, -0.7805171380049667, -0.12201757049643493]], [[-0.8602281089946993, 0.17262154654186382, -0.47980141951113314, 3.9018501394156115], [0.35654166756128325, 0.8763151226515848, -0.3239596349929372, -0.0027323565800741485], [0.3645348265776846, -0.4497483824113577, -0.8153776749030746, -0.33970411718570787]], [[-0.8638430206843166, 0.09083961780713824, -0.49550317804394367, 3.833952808892992], [0.2576478600753231, 0.9248962504421191, -0.2796149247030917, 0.4672963093445149], [0.4328889185617966, -0.3692087346674804, -0.8223698039395878, -0.5853915968161983]], [[-0.8825701490173815, -0.10053813365256341, -0.4593060153591463, 3.67551317593675], [0.17500006306591054, 0.8364458216166581, -0.5193586096590308, 1.1791494799671354], [0.4363999427020635, -0.5387489871746336, -0.7206279336994523, -0.9532517288731671]], [[-0.8518369417846984, -0.3766469149961862, -0.3640205022175923, 3.0418184135665096], [-0.02524024216604681, 0.7236591682538474, -0.6896958303321462, 2.145596199033264], [0.5231985806424667, -0.5783204212424157, -0.6259462721254143, -1.5378087495008606]], [[-0.7510093278956658, -0.594426957659386, -0.28747448829679956, 2.2154132646291544], [-0.1657679046556618, 0.5911670152465199, -0.7893304516301093, 2.7538596144213208], [0.6391447341563347, -0.5451404883993917, -0.542508854036412, -2.103074140687536]], [[-0.6225714174575141, -0.7356391566120682, -0.26690796433232633, 1.4173799155889142], [-0.26371227354543636, 0.518337458627689, -0.8134999174953154, 3.1643777461368785], [0.736790789129749, -0.43607489063516713, -0.5166991608383822, -2.428303182451053]], [[-0.5426447396490142, -0.8048434799616588, -0.24034071501612053, 0.952733277743347], [-0.31176720629748517, 0.45868439933633315, -0.8321116697192321, 3.321253641079375], [0.7799601884767675, -0.3766106670935834, -0.4998264797133213, -2.61591213515166]], [[-0.47170843034605886, -0.8576905721785673, -0.2045923731140996, 0.5426415863671273], [-0.33803971690443185, 0.3902046907480661, -0.85642830938344, 3.42511413633765], [0.814383390385406, -0.3348241056348951, -0.473996320397283, -2.8018199105393076]], [[-0.36652959261213375, -0.9015523812313171, -0.2299116387565554, 0.0664142332116538], [-0.3336385657991467, 0.3580338419639011, -0.8720648344131625, 3.445181227992275], [0.8685282753895072, -0.24293017907355563, -0.4320226417032081, -2.9784070287775086]], [[-0.24505675464717153, -0.9357270527056654, -0.25369680691046387, -0.4728784988867682], [-0.38195395768402657, 0.33369271384877175, -0.8618354523537255, 3.6172141643208247], [0.8910995237409258, -0.11429809954242914, -0.4391783045981256, -2.8611168989382234]], [[-0.08296314309732933, -0.9634921178917629, -0.25455855052984866, -1.1940817660304952], [-0.40904534752427246, 0.2658528267908449, -0.8729285068985113, 3.645050762388406], [0.9087348461218814, 0.031705098135197785, -0.41616795431181175, -2.722098326670581]], [[-0.01407461588180614, -0.9662108935782544, -0.2573682465233238, -1.4778392366199347], [-0.4427684084480107, 0.23680534426682232, -0.8648001881400622, 3.7182365277399363], [0.8965255387707562, 0.1017827984356024, -0.4311406038340886, -2.504917655705599]], [[0.018114565695425355, -0.9741882058430911, -0.22500933781931243, -1.6598063523939963], [-0.4249564197282345, 0.19620595138066332, -0.8836941020367679, 3.6005334784216765], [0.9050325429736915, 0.11162689747112081, -0.4104333465004338, -2.551158480270536]], [[0.03593909800034023, -0.9822646599029199, -0.18402314838281425, -1.8000263683193207], [-0.44717565655662533, 0.1488720984720996, -0.8819699714160708, 3.5832980151603264], [0.8937238462847867, 0.11398787743578165, -0.43389451526795325, -2.4591661807521104]], [[0.2780872178686802, -0.9564070137235605, -0.08918028570507086, -2.769910457001012], [-0.5021815785039123, -0.06561311493589772, -0.8622694366378338, 3.3038741165046748], [0.8188291405839048, 0.2845708053346118, -0.49853615243213245, -1.7105751147375325]], [[0.7670834436467807, -0.6386202544994909, 0.06121405905510777, -4.086600716813333], [-0.36675504303283113, -0.5148071478081326, -0.7748963407938134, 1.7795970761648328], [0.5263779335163878, 0.5719595887024373, -0.6291172386752378, 0.1521465981771778]], [[0.9016535038737554, -0.42595113747112245, 0.07474347756987017, -4.001695176854855], [-0.3024557435346945, -0.7446454317923686, -0.5949989110188623, 0.8307622491376505], [0.3090978520712427, 0.5138762588384618, -0.8002435307124516, 1.0653541259577948]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9481463377140374, 0.008392539181942767, -0.31772328772933517, 4.8687682777663275], [0.022150163580600603, 0.9989655897273321, -0.03971298017117026, 0.12594194094617514], [0.31706133875452397, -0.04469133950557628, -0.9473514615180505, -0.0846261204760888]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.014800220597204428, 0.9959667315681232, -0.08849419800068098, -0.025635896193047458], [0.8559656703436161, -0.05836581114153416, -0.5137277521051344, -2.5974544022907207], [-0.516820785827619, -0.06814471145511161, -0.8533771579068787, 3.469330230937436]], [[0.20834400480718268, 0.9669324992933537, -0.1470860886393183, -0.846689478512153], [0.8245963246710273, -0.2545284525279908, -0.505228827555139, -2.2066732033256007], [-0.5259597674727019, -0.016025250825343562, -0.8503584622593265, 3.3524288277319694]], [[0.3669078726584928, 0.9213955126459233, -0.1280973155736475, -1.3426112809892752], [0.7408794508264259, -0.3727036893742314, -0.558739294546186, -1.7189250028139111], [-0.5625622208470382, 0.11010117711810488, -0.8193909192033163, 3.351354063900877]], [[0.45117126909320804, 0.8875339632022449, -0.09342349868924513, -1.5862226881308321], [0.7029433731351281, -0.41791576900594485, -0.5755145733876577, -1.4025846608299521], [-0.5498318834973388, 0.19398421115824277, -0.8124377057418514, 3.1476822889886713]], [[0.4733200325610013, 0.8759981899578837, -0.09271093768786842, -1.577458914905644], [0.6758662505245998, -0.4286389067250267, -0.599561088666862, -1.079113206127593], [-0.5649539434133294, 0.22112408017238916, -0.7949409934011727, 3.0875512918324968]], [[0.5875270364619302, 0.7787507900567525, -0.21990722683041794, -1.6983469422690258], [0.5456257580803177, -0.5819329995113874, -0.6030311071569676, -0.4792949876908602], [-0.5975822232509429, 0.23431003193560287, -0.7668078608026896, 3.0087266619746775]], [[0.6862800710651961, 0.6305223075545207, -0.36257590065374073, -1.6840080766927048], [0.4116744867363738, -0.7476949543995233, -0.5210339452817232, 0.019587500326769695], [-0.5996196969989328, 0.20831196519071335, -0.772698093778735, 2.922484185973074]], [[0.7702238994385923, 0.5198749727191575, -0.36943897665766784, -1.8003638994617908], [0.3048115367944683, -0.8088879234746785, -0.5027825119212253, 0.4410245410588837], [-0.5602187713479476, 0.27464584467469716, -0.781488700002961, 2.6942050981235774]], [[0.8733062943024066, 0.3502903052480351, -0.3385746865627093, -1.9822025247187138], [0.188501801264437, -0.8838139461813103, -0.4281821802171158, 0.7705361220798669], [-0.44922509641811104, 0.31011225481212173, -0.8378706356971107, 2.329231157271636]], [[0.9741883363436008, -0.051548360916291606, -0.21977227263449586, -2.0907878984483337], [-0.1250052587734135, -0.9338631558968609, -0.33507206887078417, 1.522501896627898], [-0.1879648121619559, 0.35389599114033393, -0.9162024104114339, 1.6981194213340385]], [[0.8277080647065473, -0.5534272151794795, -0.09283144466412302, -1.6659534367751352], [-0.5450864368726607, -0.7536146162287726, -0.36734967883996644, 2.5112688346190346], [0.1333421762129632, 0.3546594531449087, -0.9254385643238264, 0.8685299164066218]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.13687648564838661, -0.9901271244631665, -0.0302176286105984, 0.4441596108479821], [-0.8986688977437941, 0.1369504173224665, -0.4166998865168505, 3.913216585678386], [0.41672417724977384, -0.02988077304059017, -0.9085417433987256, -0.04548917552284004]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7926745384971676, 0.6033147280245368, -0.08762656541814443, -3.4609778320572997], [0.4378825127885672, -0.6634396808474707, -0.606717969794019, -1.5787865830762269], [-0.4241768275286516, 0.44255974605208404, -0.7900727119462128, 3.1759089468368744]], [[0.7196585318484809, 0.6907568215247354, -0.07033214808843977, -3.0494011563642904], [0.49876281150922075, -0.5847700241498637, -0.6397496984846381, -1.5910866249142377], [-0.4830396002328451, 0.4253222688418898, -0.7653585514215416, 3.4942235124967302]], [[0.652248662612984, 0.7557525279336915, -0.058393481155081334, -2.6201410809588435], [0.5220238208557565, -0.5037123928160969, -0.6883058591808144, -1.4383447811444277], [-0.5496024131849596, 0.4184637879737228, -0.7230665568092276, 3.6704723349544475]], [[0.5834592493052753, 0.8085099189774904, -0.07672688782386816, -2.1844199532786575], [0.5944706114523123, -0.48953752167035275, -0.6379323686695658, -1.6308637256488252], [-0.5533353382169248, 0.3265956610119931, -0.7662605808003572, 3.61574572944061]], [[0.5991511399510894, 0.7888249223414192, -0.13701515751318902, -2.1147210850132807], [0.5417885346879714, -0.5254615668646474, -0.6560147295822026, -1.212624761991437], [-0.5894769674685949, 0.31881873163477004, -0.7422071955881495, 3.660076562402759]], [[0.6208700684552877, 0.7529566857902028, -0.21812058000143045, -2.0541275396102727], [0.46515621115593625, -0.5778283208658519, -0.6706296525120286, -0.7401625069034433], [-0.6309913290366046, 0.3149137356946882, -0.7089987882580869, 3.634953202403642]], [[0.6555006107468653, 0.7159088565224374, -0.24040270061549282, -2.0730393698965477], [0.4464668634287094, -0.6241128952058845, -0.6412101324042366, -0.535721469745768], [-0.6090864381765665, 0.31298179370446544, -0.7287359656548584, 3.45651031692966]], [[0.647337528912769, 0.7301252788817009, -0.2187948829361147, -1.978703976527244], [0.4717873609407809, -0.6092803642393647, -0.6373336048011906, -0.5069329880851505], [-0.5986408019151742, 0.3093453004172935, -0.7388739238815317, 3.246791711849906]], [[0.6637294073735845, 0.7234090188757253, -0.19011224367928303, -1.9707951993514765], [0.4922053699775605, -0.6138080324316044, -0.617230567201346, -0.41570209976097533], [-0.5632025812731716, 0.3160998113439851, -0.763468245387805, 3.019647607100708]], [[0.7514397647872941, 0.6068267095286394, -0.2590359521361081, -2.0565554036196327], [0.3796362097631191, -0.7187483729818251, -0.5824749990966754, 0.07841549176382445], [-0.5396430562261585, 0.3393554492543524, -0.7704695003231911, 2.796165407959116]], [[0.813274491314742, 0.4796518893243866, -0.32942171580558266, -1.9939757782084986], [0.3124177357063812, -0.8375534714284809, -0.44821796139177483, 0.25186201462718705], [-0.49089689364758193, 0.26160704800453527, -0.8310126306149068, 2.6165999043542367]], [[0.847346909951742, 0.3914114912763013, -0.3588875293070189, -1.9432786695771076], [0.24542114151706423, -0.8879555267453703, -0.3889774361306998, 0.5095419642155017], [-0.470926403476908, 0.24152024142753215, -0.8484670267541871, 2.484410069824583]], [[0.9237609119767521, 0.24141522816850713, -0.29729524905761046, -2.0783782095334304], [0.1284731206758844, -0.926652664912095, -0.3532838743491032, 0.8297726320180037], [-0.3607775419391826, 0.28815538554686243, -0.8870208785663735, 2.1958786806725747]], [[0.950571160158302, -0.23677083588464173, -0.20088315198091614, -2.0608809032717073], [-0.29824204469858495, -0.8762407814967713, -0.3784888051395119, 1.9106794268485312], [-0.08640689931543108, 0.4196923446006803, -0.9035442344646317, 1.412893243225462]], [[0.530250528511124, -0.8443691292743407, -0.07664953060629648, -0.9326502107952298], [-0.7733504046318078, -0.44462742621181833, -0.45192433383927644, 3.0551954917087976], [0.3475104727479347, 0.29891006237453155, -0.8887571355222761, 0.36570538014555903]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7827444536216152, -0.622306704364623, -0.006744332987166576, -4.057463676288116], [-0.6024199461585374, -0.7549215688963528, -0.25919805802786067, 3.1445142540242426], [0.15620924682919707, 0.2069487630258055, -0.9658006423103808, 0.5179810587281115]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8833474953369855, -0.4652716320836409, -0.05674073369370765, -4.4135068690359], [-0.42582651235774865, -0.746021529574048, -0.5119801351470915, 2.4607202379044724], [0.1958800241349568, 0.47641807878188575, -0.8571212460058761, 0.23360357001404713]], [[0.7628551384786786, -0.6291600856759211, 0.14902893775687923, -4.123745332030347], [-0.5007217312963418, -0.7206928771164606, -0.4794575316763648, 2.925973794732036], [0.40905963563308256, 0.29113461399473933, -0.8648183919354767, -0.8052993109010141]], [[0.6531272349821837, -0.7405255276774585, 0.15826167502762442, -3.692528929623774], [-0.5888032125793778, -0.6280476519661391, -0.5087896654964832, 3.502045604267329], [0.47616760891594845, 0.23911940472876936, -0.8462188360592237, -1.1341009666725215]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5038042282971645, -0.8516034900910625, 0.14475080384792594, -2.99146078733149], [-0.7031768530116933, -0.5016428004010536, -0.5038817462404848, 4.262932564165992], [0.5017206522941531, 0.15207233959701755, -0.851557626112889, -1.189654544987725]], [[0.3415120810113772, -0.9395846675845615, 0.023455297126390384, -2.0417240549920805], [-0.8200173573614421, -0.310062092633411, -0.48107487186273484, 4.951593807198547], [0.45928317207278035, 0.14505912984641417, -0.876365686628, -0.9427298684574793]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9047895437783312, -0.4061713574360135, -0.12798714727653449, 4.853983032702034], [-0.22936241072553673, 0.7180048473795447, -0.6571620224006, 1.7973843443529278], [0.3588157828406791, -0.5652378857950541, -0.7428037200003564, -1.1524978619949848]], [[-0.8003464702444362, -0.5569386360331943, -0.22195694010496075, 4.383166279487499], [-0.20018170596893403, 0.597210018006295, -0.7767029541518999, 1.8323024361526992], [0.5651307920850175, -0.5771997488620437, -0.5894638561870902, -2.238885595505652]], [[-0.7891535264723502, -0.5071209396745048, -0.3465040608707223, 4.468527520363546], [-0.13300879352464479, 0.6918752492877018, -0.7096599891977846, 1.5620250105093152], [0.5996210240655111, -0.513942595983957, -0.6134473372115157, -2.3157614356507112]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8811661878011627, -0.4452410488385925, -0.1590803504681709, 5.3979224383721185], [-0.41551720272780635, 0.8897833016734021, -0.18876209974578595, 3.0184060084292326], [0.22559167474271988, -0.10023015759884357, -0.9690522750576905, 0.25481539860308716]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8729480957320706, -0.41372948152724554, -0.25843672005531304, 5.411834874983208], [-0.36093546301661583, 0.9042001016148127, -0.2283588574519133, 2.6921657717947096], [0.3281573002307473, -0.10606645254253914, -0.9386493988440564, -0.41864026875086663]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5970401852154992, 0.7915068850159573, -0.13061343043568743, 3.422631453703418], [0.7934496830262238, 0.558641783335701, -0.2415718493887312, -3.5185095802043227], [-0.11823966231103271, -0.24786328668006266, -0.9615524808208494, 2.046368534527225]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.03634855186721203, 0.9789536668351809, -0.20081957316733465, 0.3432674948571301], [0.7650428552142777, -0.15654726492533627, -0.6246618153288888, -2.424573663724593], [-0.6429527295709558, -0.13093002724490116, -0.7546317747768825, 4.069910568736825]], [[0.25781618962683783, 0.9601509143055744, -0.10789362411407011, -0.8389333976584354], [0.7198711495699053, -0.2653696653528258, -0.6413770098213939, -2.039944379092491], [-0.644450417319441, 0.08768786956414765, -0.759601538405564, 4.039417963832238]], [[0.4374263929506246, 0.8875990874540747, -0.14431219872519369, -1.5556152483560377], [0.6541156195881539, -0.4241829434488761, -0.6262599992797347, -1.6721341581618359], [-0.6170825771005137, 0.1795457892509363, -0.7661412419399225, 3.7970645543419836]], [[0.4694004461744047, 0.8792126459201706, -0.08153738029470109, -1.7023456444392036], [0.6617021554704878, -0.41140457700409605, -0.6268145909802924, -1.5553665576645006], [-0.584648166487316, 0.24027358838235557, -0.7748903949262026, 3.5691796614243825]], [[0.4420545711485163, 0.8964722328880788, -0.030418609227965354, -1.6153893268627777], [0.7162141998605747, -0.37317871621002774, -0.5897243980758408, -1.6677554491965616], [-0.5400231254722138, 0.23890412601815403, -0.8070315003311357, 3.344338528020336]], [[0.5046277711025203, 0.8629398400270792, 0.02618482625760632, -1.8805802395682347], [0.747764970743532, -0.4217146333187098, -0.5128394647195073, -1.7651817792229014], [-0.431507081240884, 0.278373131855258, -0.8580850996842144, 2.879250033768409]], [[0.6243257303868865, 0.7810591567101025, 0.012805315153651825, -2.2589889835931367], [0.7054470371380096, -0.5566945379373764, -0.43867490152035665, -1.53273314885989], [-0.3355023996487724, 0.2829094999288542, -0.8985545919307969, 2.4855115915905395]], [[0.5814077742758598, 0.809769883131063, 0.07897934151090151, -2.1219568005096314], [0.7658083076615098, -0.5118787136529447, -0.38925289777421224, -1.7203453166906155], [-0.27477742980129455, 0.28679769678801736, -0.9177387674000066, 2.220340754792052]], [[0.6717000894149858, 0.7351210611590108, 0.09173884302927476, -2.406661187375711], [0.7045329840231415, -0.595596131746141, -0.38587371285497213, -1.3609573729824733], [-0.22902459322821206, 0.3238244482578229, -0.9179790097857187, 2.015307254253079]], [[0.5806437784362223, 0.785897879411373, 0.21264365896968132, -2.0304011005189935], [0.7264305262831013, -0.3821595978223697, -0.5711853747044832, -1.2423011359780587], [-0.3676295595397133, 0.48612607925203044, -0.7927988029908248, 2.1812658200749615]], [[0.6070879553664138, 0.7568141329868713, 0.2422324969122798, -2.0311987428009286], [0.7566377811794701, -0.4574108329323131, -0.46719867081143923, -1.134250879497068], [-0.2427827888068582, 0.4669129448060931, -0.8503227736757768, 1.8903135448846466]], [[0.5604950133463685, 0.7985350541682135, 0.21951561966844751, -1.8800485424275621], [0.7868653346156764, -0.43084539665420435, -0.44183163010590465, -1.186773515112029], [-0.2582407504520029, 0.42037365693683737, -0.8698262489483384, 1.9057676968327408]], [[0.4510006464576878, 0.7780151166043717, 0.43736814610786834, -1.499334276794657], [0.8527930230259783, -0.23105817383633057, -0.46835475889717804, -1.3280697218662418], [-0.263329597221735, 0.5842128025287586, -0.7676932490184691, 1.7240800359635675]], [[0.32480118908725597, 0.8766453259359344, 0.35496078668239395, -1.1314052060417656], [0.8242137432390368, -0.0782858367106062, -0.5608413619076389, -1.2702818147067532], [-0.46387055632298924, 0.4747254999314863, -0.7479704584349577, 2.133170938085478]], [[-0.35535931567114093, 0.8895965988473552, 0.2869453747404833, 0.6603533732725527], [0.8368088884666279, 0.4395569689502989, -0.3264055073531582, -1.4595829772421847], [-0.4164980683616494, 0.12412720236291404, -0.9006230047498073, 1.9040788906988477]], [[-0.6765425032258294, 0.6767803599375599, 0.2902732948993334, 1.3276128180041362], [0.6523822315099337, 0.7336713673845958, -0.19006248627790007, -1.0578574449079847], [-0.3415957630578107, 0.060783789638392816, -0.9378793448936529, 1.6508315381547276]], [[-0.8649889765417669, 0.4220381624012911, 0.27143665916410153, 1.642259324355686], [0.41247590393650313, 0.9060698028686998, -0.09434585842123835, -0.5555435100934782], [-0.2857581129784277, 0.030352953833475874, -0.9578209639909703, 1.5176300887893428]], [[-0.947405409793325, 0.18203279656691868, 0.2632243348711685, 1.7120332051355736], [0.18254193475774938, 0.9829351061270771, -0.022738056158106666, -0.099150078657074], [-0.2628715114827771, 0.026507321950330134, -0.9644666558952579, 1.3265415388539843]], [[-0.9717539407510586, 0.0049195098158532355, 0.23594507212052554, 1.690698831989282], [-0.004633928755717553, 0.9991921935909086, -0.03991850412121082, 0.27971649607430266], [-0.23595085365193155, -0.039884316343143135, -0.9709461550316603, 1.3073350173969487]], [[-0.9522249841544213, -0.2799268089112917, 0.12210061918292768, 1.7822416502879033], [-0.2822334874834039, 0.9593442960253388, -0.0016674011521885593, 0.8516536576758303], [-0.11666978227059659, -0.03604862461160249, -0.9925163266004969, 1.2024379223510164]], [[-0.9094808574959168, -0.362781854875276, -0.2030613100069683, 1.6691984527361992], [-0.2938270144261534, 0.9064321473367742, -0.3033915751431775, 1.215241776460121], [0.2941262576546082, -0.21626393145344291, -0.9309777959276986, 0.9547181057296524]], [[-0.7666291553684994, -0.6418054578651768, 0.019117855357028264, 1.3639758907242487], [-0.639881122111122, 0.7611853084984442, -0.10558918359349001, 1.6026700177810134], [0.05321548369406188, -0.09318090137254001, -0.9942260466888847, 0.8262652280197934]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7744093701551409, -0.5766058882085511, -0.26041462535569293, 2.118686288188214], [-0.4927360995275529, 0.8078396193979334, -0.3234289497762612, 2.419008578017038], [0.39686428869109835, -0.12215072252848003, -0.9097131071648241, 0.20952992916145052]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.30877415232550964, -0.9498610066061456, -0.049219823088087866, 0.3085807494741077], [-0.7411728862183601, 0.2727215008444096, -0.6134213362053185, 3.697445328275988], [0.5960883119055504, -0.1529282547678235, -0.7882205740167272, -1.033260556607759]], [[-0.3354640794994146, -0.9401491630516037, -0.05986152837156816, 0.43339845439187985], [-0.6878556982149835, 0.28786711189742675, -0.6663235432738457, 3.6191445816727885], [0.643675686816574, -0.18235152069890806, -0.743256034687918, -1.24514420927525]], [[-0.30885209480944853, -0.9497672493345165, -0.050522822796844225, 0.33022035490221613], [-0.7000777392077263, 0.26297136440585966, -0.6638804264084902, 3.6491376282956645], [0.6438179421215393, -0.16967095683724479, -0.7461301654592982, -1.1629027239498053]], [[-0.16228631920623748, -0.9863488755740231, -0.027911400042835988, -0.2216817590785883], [-0.556619690297308, 0.11486496965447557, -0.8227882832901822, 3.3114608378748067], [0.8147623401776865, -0.11799124713357478, -0.5676622187780719, -1.8222200234304928]], [[0.08704623069283846, -0.9949619047554675, 0.049736925996098746, -1.1975298283602283], [-0.5253082880203906, -0.08826423590437438, -0.8463218224749398, 3.048206858294547], [0.8464479642950626, 0.047541905153129504, -0.5303448038730606, -1.7491036284157266]], [[0.258562298671665, -0.9623686614703741, 0.08361876060636542, -1.7935292674010932], [-0.4760332377032319, -0.2022608916133256, -0.8558521416258538, 2.7880651722735554], [0.8405580850288707, 0.18148578771766877, -0.5104165108507899, -1.6047157348609575]], [[0.1586451551168409, -0.9844983770942601, 0.07479746156602746, -1.5499602242561001], [-0.4102690302728998, -0.13463945922400605, -0.9019709190538246, 2.737270615962811], [0.8980595957712871, 0.11240623434060482, -0.42526909236914556, -2.0250191989224025]], [[0.08115380438946251, -0.9911376317868937, 0.10516774642914195, -1.415368473294914], [-0.32675421021583084, -0.12614101289855717, -0.9366536878543501, 2.5495141387383953], [0.9416186840432518, 0.04164900624016776, -0.3340952171759739, -2.434545699475918]], [[0.061918985223284206, -0.9915952385926122, 0.1135998330517205, -1.3625728131816557], [-0.24568862669924674, -0.1254589129091428, -0.9611956928130161, 2.3664363320461486], [0.967369183910443, 0.031606074924232785, -0.2513919609858815, -2.7096756506979487]], [[0.11358219616861431, -0.9898452340757378, 0.08547220186155774, -1.5245167080624762], [-0.24682767502398217, -0.11144501494661119, -0.9626297873460002, 2.405729797212021], [0.9623799579977601, 0.08824070047941579, -0.2569793673101636, -2.675470840191304]], [[0.14686126552144207, -0.9860551617621891, 0.07827507043486759, -1.644926383980055], [-0.24708897887947107, -0.11319496718406863, -0.9623585277434277, 2.4125825349834717], [0.9577989377764733, 0.1219922840442817, -0.2602673191699616, -2.64805693381981]], [[-0.016088082731569697, -0.9997583552121327, -0.014980146112556159, -0.972335100560929], [-0.2734309785674043, 0.018810047276599517, -0.9617076905594153, 2.6288088527529476], [0.9617570761651271, -0.011375996878668027, -0.27366752299336244, -2.7921706735468934]], [[-0.45393592772694696, -0.8232776705085196, -0.34081674072841667, 1.0031592748141624], [-0.12145724812592507, 0.4360964446075329, -0.8916658723301831, 2.6362410452934393], [0.8827175711383302, -0.363364511534539, -0.29795288446483026, -3.224694123054695]], [[-0.5787004547501902, -0.6924882616361234, -0.4307734801123474, 1.8043205067261618], [-0.02455586452856423, 0.5427623690274512, -0.8395272600011054, 2.2152620603232447], [0.8151704074542806, -0.475256791917684, -0.33110147771783405, -2.760605082022117]], [[-0.5530063125577794, -0.6847228084504808, -0.47469852944677804, 1.765400715360826], [-0.04218738113061732, 0.5920261598993867, -0.8048137988802913, 2.357675642003707], [0.8321083121472754, -0.42504082343049343, -0.3562808657126293, -2.749411416543085]], [[-0.5134672161784719, -0.7334904200782634, -0.4453574087891023, 1.5790561927675761], [-0.04388822875327392, 0.5407668744772813, -0.8400267917423663, 2.2360214627329276], [0.8569861383282877, -0.4117802704373841, -0.3098576569841126, -2.8843402382642]], [[-0.4572204946314814, -0.7744866389951369, -0.43717258068977705, 1.26974975565651], [-0.1631362300702447, 0.5562583531565114, -0.8148393798670226, 2.7008793045480775], [0.8742631124137694, -0.30124257760419976, -0.38067954989855446, -2.7235248050921386]], [[-0.43333606142365927, -0.7795774576999417, -0.4521933715966283, 1.1920179771382733], [-0.1651726072346134, 0.5619499905227994, -0.8105123182103687, 2.7950827805805414], [0.8859671933481233, -0.27653425754781524, -0.3722780368398435, -2.798392497653106]], [[-0.4312495334296586, -0.8121388597696363, -0.3930067586807854, 1.1010966819363506], [-0.23721036325123268, 0.522328945337905, -0.81908712383263, 2.966428370211898], [0.8704912885738262, -0.26000566400420405, -0.4179018679101746, -2.652240645833282]], [[-0.46490537961172734, -0.8051895575935841, -0.3681477479902922, 1.1955393774758145], [-0.18728191904377922, 0.4958446014968811, -0.8479761871454164, 2.7261216184354207], [0.865325644371733, -0.3252812744512775, -0.38131826822747117, -2.7486410893534567]], [[-0.5043019195914653, -0.7798284083373741, -0.370873600363198, 1.33533286310958], [-0.27659439988461054, 0.5527336392380892, -0.7861177151082973, 3.131157762431852], [0.8180312413647999, -0.29385911182846736, -0.4944408059075919, -2.4181028014208263]], [[-0.5323132113100977, -0.7726420403206586, -0.34592907162287034, 1.4565254671038546], [-0.21977329493074843, 0.5207542122219394, -0.8249331786807884, 2.872110964700519], [0.8175220754817655, -0.3630968575769241, -0.447010434014408, -2.5557265152709863]], [[-0.5380458682919709, -0.7582297255871521, -0.36823134962951076, 1.5567181806423143], [-0.20054050539577495, 0.539458132415819, -0.8177826294719422, 2.8103713823341643], [0.8187124949025427, -0.3661592639910519, -0.4423089916381814, -2.551969564943056]], [[-0.5439483963337217, -0.7540869506689003, -0.3680665876670304, 1.5344931641363677], [-0.19715496836105267, 0.5412081169855668, -0.8174495045930906, 2.795523138927276], [0.8156286290809835, -0.372084190660953, -0.4430612762177021, -2.5602092742234617]], [[-0.5309060617897483, -0.7748634881953232, -0.343111247581125, 1.454551889178419], [-0.1571319016744851, 0.4878747643143271, -0.8586546336108598, 2.671199628726079], [0.8327354436020241, -0.40195122714953363, -0.3807714432069771, -2.7397488851260645]], [[-0.535759227932958, -0.7785891621333774, -0.3267429667079716, 1.4426040449271544], [-0.14428290252422382, 0.4656912332961841, -0.8731060183450029, 2.609801920947895], [0.8319522184139343, -0.42063118267613564, -0.3618354797924179, -2.796937923234239]], [[-0.550109633684602, -0.7867157685585064, -0.28010299967831714, 1.4140237576161412], [-0.16388324707279034, 0.4305960432847622, -0.8875411702205063, 2.645752780631433], [0.8188538772310183, -0.44234075892789443, -0.3658045663121533, -2.7718980933244546]], [[-0.5937925874387413, -0.7552441645268371, -0.277518675139106, 1.6153384314176351], [-0.16132492621334887, 0.44965268702102223, -0.8785139322953464, 2.672257574730517], [0.7882795387963982, -0.4768843811689943, -0.38884014159034963, -2.684357441027455]], [[-0.529621648945146, -0.7906874599797524, -0.3071062513192984, 1.2852357538304693], [-0.20979766725284077, 0.47291153807717207, -0.8557684359502573, 2.866205105760674], [0.8218794606168784, -0.3888033150376302, -0.41634857323144314, -2.605542951646658]], [[-0.5835071421199728, -0.7661040299693676, -0.2694513506362071, 1.5594315720254657], [-0.17462308490486772, 0.44239226363839146, -0.8796566735330367, 2.70995699228418], [0.7931117155314813, -0.4662335255401466, -0.39191849452292543, -2.6875072608667243]], [[-0.5579267627712552, -0.7865406514416793, -0.2647102774984123, 1.3732739889786916], [-0.20298589854233656, 0.4386187931989767, -0.8754486159938992, 2.775426240735811], [0.8046828271912778, -0.43470375876264544, -0.4043738242531037, -2.6314290135777645]], [[-0.5543287614106944, -0.7887041279739385, -0.2658296875628352, 1.3813711974335106], [-0.2508577115844669, 0.46286540321532454, -0.8501917589843593, 2.9444987516419436], [0.7935931154007636, -0.4046003176261528, -0.4544321183249775, -2.4945937839121988]], [[-0.5155063493899417, -0.8280300327487877, -0.22049822812144512, 1.126822446424762], [-0.526258543179482, 0.5090157251659688, -0.6811423766470357, 3.6902967565870424], [0.6762434099266806, -0.23509414369525322, -0.6981587170056183, -1.534581350987217]], [[-0.5457710402700547, -0.817694237146309, -0.18305765796671436, 1.209991249768008], [-0.6291026797796315, 0.5441621527168489, -0.5550832098385352, 3.8719956002462834], [0.5535013910521175, -0.1877862776889751, -0.8114015799929715, -0.8723535574245005]], [[-0.4527907027753276, -0.8742888414627897, -0.17492741687305158, 0.7717280501225645], [-0.6828836681341884, 0.4661944446897134, -0.5624345611144871, 3.9354608900519668], [0.5732804508055557, -0.13521006410065364, -0.8081260813079088, -0.8144832263407152]], [[-0.2557553319685442, -0.9576414894852978, -0.13233286736876954, -0.11320060502120478], [-0.7236807312351619, 0.28041203565610157, -0.6305991512031577, 3.940508992294802], [0.640995639149442, -0.06551234903116898, -0.7647435666390513, -1.0239406332567715]], [[-0.28550219544131195, -0.9472666052903429, -0.14551451783207325, -0.06989595390484442], [-0.7023746345073814, 0.3101143155817523, -0.6407019463618665, 3.8698949591202703], [0.6520416928378227, -0.08071610603201429, -0.7538743536082224, -1.0379682604479639]], [[-0.3953880081870203, -0.8976232364375062, -0.1947841071272442, 0.38386530705606514], [-0.6596669544959098, 0.42506936916259186, -0.6198028239253253, 3.822840648221741], [0.6391461743044327, -0.1165699652876907, -0.760199717880002, -1.0110921544167801]], [[-0.47289095397673114, -0.8542548637178995, -0.21592307301742908, 0.6784823421812857], [-0.5912209192388029, 0.48932958462838383, -0.6411040338836106, 3.7161295786439563], [0.6533237867255423, -0.17551406046731952, -0.7364528798754691, -1.174745096362334]], [[-0.486088006841755, -0.8476380914506356, -0.21266902813182234, 0.6941646811436782], [-0.5683900879336392, 0.49149646435535577, -0.6598211374796769, 3.716440133978363], [0.6638156050767411, -0.1998521739889477, -0.7206996260637933, -1.2742889206042223]], [[-0.43620650012830503, -0.8785919296855838, -0.19442250470862985, 0.4719233745433378], [-0.6073282486430924, 0.44688158695337876, -0.6568479623490842, 3.800848935784821], [0.6639851561939687, -0.16844307149120713, -0.7285263509446167, -1.2557712620101447]], [[-0.19658825982285633, -0.9689043946326225, -0.1502575461047233, -0.5024712566832245], [-0.7531932422980369, 0.24734595237838708, -0.6095243388074016, 3.961609564239415], [0.627736406349347, -0.006652360755461106, -0.7783975528224552, -0.8519173743536262]], [[-0.033951088791386405, -0.9930478648209426, -0.11270874741760972, -1.1356325104723273], [-0.7913630997312913, 0.09558878687193097, -0.6038271509364541, 3.899707988386645], [0.6104029553938629, 0.06869295450713742, -0.7891067798767913, -0.6988966814111857]], [[-0.008123465897545534, -0.9962535437884351, -0.08609811723142222, -1.239422364512989], [-0.834888262671221, 0.054145268480023434, -0.5477498322729601, 3.99184838043618], [0.5503595171845775, 0.0674326804317496, -0.8322002375955849, -0.4836719305953907]], [[-0.05814499326020185, -0.9944457757870545, -0.08773117335391206, -1.1770965894214296], [-0.7984639579309555, 0.09907476865188601, -0.5938345713258942, 3.9419916757532985], [0.5992282266749491, 0.035521672762672374, -0.799789811838171, -0.6975744387706948]], [[-0.17164969464125124, -0.9802604373224887, -0.09811145371407115, -0.8144512974675041], [-0.7739067829621579, 0.19579562974856846, -0.6022726647097019, 4.041363598807181], [0.609593859561207, -0.0274507994725956, -0.7922384615717585, -0.832368455417826]], [[-0.17218836835179252, -0.97722899289365, -0.1239946017067291, -0.8160638694163538], [-0.7214853009603925, 0.2108134332028464, -0.6595579253403911, 3.9560157993848657], [0.6706788548198306, -0.024107920468011856, -0.741355975134934, -1.1051870313726548]], [[0.057360503610023095, -0.9896415487950493, -0.1316031060581025, -1.6465434018166383], [-0.7120366107727788, 0.051846126491457145, -0.700225566576261, 3.7185902457031386], [0.699795425495779, 0.13387152074421016, -0.7016870943581719, -1.0080832686253547]], [[0.24021357235646557, -0.9668071845352715, -0.08707070452641558, -2.297895532098955], [-0.6956431949673525, -0.10888950639199557, -0.7100870514896899, 3.449790944944459], [0.6770361769886148, 0.231142690407222, -0.6987095760900606, -0.7550442010103555]], [[0.33312964673837697, -0.9413127734769797, -0.05435900066264471, -2.604200595072354], [-0.6404687888943335, -0.18359762623110698, -0.7457155235708381, 3.18511441401273], [0.6919713642313465, 0.28323519225438704, -0.6640432643679399, -0.7700691615066886]], [[0.38397627211554275, -0.9221629447244957, -0.046666110072487665, -2.759679643244201], [-0.616877767100481, -0.21859747990793033, -0.7560932232436862, 3.058883194632856], [0.6870400591736813, 0.31910914301371684, -0.6527980636733505, -0.7108886939888749]], [[0.3578037508932703, -0.9324394728679639, -0.05032996408125251, -2.6732254527104957], [-0.6317131208659001, -0.20200928375079652, -0.7484188547894519, 3.1267043477357648], [0.6876881624490647, 0.2995811721657484, -0.6613139288652743, -0.7329860053867858]], [[0.3137856740694692, -0.949224861715132, 0.022598952423889596, -2.6605653503457076], [-0.5717593753056747, -0.20790161951555486, -0.7936423207924801, 2.982402875037966], [0.7580433810138001, 0.2361124276794806, -0.607964763778682, -1.1482984268063745]], [[0.274695644238232, -0.9594363253829027, 0.06343690229113835, -2.592979963602639], [-0.5719535348959636, -0.21607660320568822, -0.7913153956970024, 2.9688995400833638], [0.77292396583141, 0.18108793190835315, -0.6081082995327405, -1.2882504207424321]], [[0.2919110293462651, -0.9532204523689112, 0.0784775135412199, -2.654311396111903], [-0.5796752945510439, -0.2415870024923461, -0.7782109438410152, 2.9127004379110053], [0.7607657351860455, 0.18167688188751902, -0.6230802570732473, -1.2072120638914057]], [[0.4099464224987095, -0.9082747729503284, 0.08355158587686384, -2.987480527541154], [-0.6074602230031776, -0.34020581627456925, -0.7178106157210854, 2.773343100025753], [0.6803940094896775, 0.243509628957426, -0.6912069534195798, -0.7321684713290189]], [[0.4413710031843494, -0.8938549733474307, 0.07883479035365631, -3.0069089576761803], [-0.6609738241228639, -0.3832775472364449, -0.6451448872995988, 2.7642731963263416], [0.6068815711260629, 0.23264051325269744, -0.7599823354664783, -0.42269211213178226]], [[0.30275157589213575, -0.9433237310672672, 0.13594786390435903, -2.6361455258945248], [-0.7916551323732056, -0.32833035265530885, -0.5152488048626624, 3.0866786271354854], [0.5306822351294513, 0.04836856345365051, -0.8461896048684588, -0.3573925953900618]], [[0.08393787928282288, -0.9768676270175485, 0.1966826675297207, -1.9577416731006716], [-0.8656387150203297, -0.16925074523380873, -0.47119401555596324, 3.4990164288501244], [0.4935828678950021, -0.13070510519067297, -0.8598209860183926, -0.4814615270674804]], [[0.09234948717502861, -0.9802612389337335, 0.17481268736167688, -1.8962061053994053], [-0.8716025144116544, -0.16446699912480073, -0.46180045806621395, 3.554165156940926], [0.48143600726346936, -0.10972014237588776, -0.869586603661317, -0.438170673516229]], [[0.5338501327112527, -0.8454780068335213, 0.013075770149179988, -2.8982481209421818], [-0.7718248798461691, -0.4935439593886669, -0.40087493685862235, 2.6771779392664183], [0.3453844099762241, 0.20391493351830364, -0.916039469255338, 0.4904384721945741]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.99536901580584, -0.09607661966664062, -0.0031313778349843554, -3.283714103989704], [-0.09061048250698299, -0.9268657344143545, -0.364293358199667, 0.26715956374471084], [0.03209770760608107, 0.36289005707234645, -0.9312789827138072, 1.6019985369931393]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9818612877293615, -0.1847660553511957, 0.04254311281982048, -3.2928656532709564], [-0.15227898078403332, -0.9021601257884853, -0.4036312914637323, 1.3475397704703207], [0.11295806155302551, 0.38983151774486274, -0.9139320894371308, 0.9726986313420414]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7531252381782761, -0.6087847201649585, -0.2493662770155342, 2.8280773786356512], [-0.4124370763341203, 0.7322259394843638, -0.5419786265261796, 2.212464921637616], [0.5125407629485463, -0.30532988396145266, -0.8025432251761945, -0.35201032199296195]], [[-0.7451153585310224, -0.5907646109142536, -0.30951619823931076, 2.7810080692579535], [-0.37020450006423616, 0.7523885753247128, -0.544848657750973, 2.198974058989093], [0.5547537567366035, -0.29139081353429547, -0.7793200004968733, -0.5543849013084947]], [[-0.8757589777937097, -0.40048934019920435, -0.2695449891957233, 3.0760857605370746], [-0.233312222085311, 0.8399469622848635, -0.48995357695810976, 1.8330115566650795], [0.4226246796382473, -0.3661931033419907, -0.8290301509748792, -0.13399063293112534]], [[-0.8546186707426573, -0.4714247910693438, -0.2176823235434589, 2.8869499165245913], [-0.28295393039942623, 0.7743123440802039, -0.56601896353085, 2.210588914785746], [0.4353894818315783, -0.42213630520277046, -0.7951332837582535, -0.3129268288263165]], [[-0.7194014484335849, -0.6800673615392501, -0.141315037277365, 2.235624579952918], [-0.4118321573079413, 0.5814511567703105, -0.7016472236797883, 2.8881576714951502], [0.559335168033217, -0.4465679523426539, -0.6983704129913737, -0.886299335517949]], [[-0.5392229254145973, -0.8400180087946458, -0.06006980612589674, 1.410761363318412], [-0.5508211832118854, 0.4057391131033661, -0.7293639669075741, 3.3304842092948186], [0.6370515370300767, -0.3602020502423223, -0.6814835450462802, -1.15507295084378]], [[-0.45231899938179077, -0.8916918918153754, -0.01711995528534832, 1.044061573577855], [-0.5485234323115012, 0.2932770096931724, -0.7830138183906087, 3.3340670217262147], [0.7032279623304705, -0.34478133020241664, -0.6217686606290049, -1.4422510825643713]], [[-0.4744299214519721, -0.8799780711173237, 0.023555126484696487, 1.18329172569518], [-0.5818820145900436, 0.2934114740261051, -0.7585005128584033, 3.3934720352658037], [0.6605524738638923, -0.3735616431895312, -0.6512465953921214, -1.2927465185262519]], [[-0.5448736289189264, -0.837802147722592, 0.03464519851483194, 1.410114202561998], [-0.5425718939168537, 0.32076326585013676, -0.7763547302700182, 3.270883215865662], [0.6393187533931711, -0.4418127301839169, -0.6293433427051047, -1.32038175069483]], [[-0.5745855599794434, -0.8147709105912377, 0.07745835989378186, 1.5146699552016931], [-0.5141710449837216, 0.28571809990719665, -0.8086985247209053, 3.135989639097631], [0.6367727779698635, -0.504493340530622, -0.5831011049524746, -1.299678969649398]], [[-0.6682669623630904, -0.7371555046478513, 0.10010508968768539, 1.918621738033271], [-0.5160144030082685, 0.3623920693175602, -0.7761450405586293, 3.2848833177147725], [0.5358622984517832, -0.570327756700573, -0.6225575050024406, -1.0306132757551763]], [[-0.6500448547574889, -0.7346169372096005, 0.19436985972135978, 1.7314059385163871], [-0.5805295626547524, 0.3150387259183697, -0.7508235665291897, 3.44624775069916], [0.4903336758649126, -0.6009064459102734, -0.6312561521096539, -0.8803745069755955]], [[-0.5876818318497565, -0.7617317217847531, 0.2727541906929196, 1.3016872106235922], [-0.6074959986563101, 0.19276615420857868, -0.7705775894796102, 3.4058909647891995], [0.5343956176189009, -0.6185515288304361, -0.5760341396577492, -1.0351613196911698]], [[-0.5830428625709316, -0.7138680726240187, 0.3878832237841208, 1.250497545359469], [-0.7040820696411838, 0.20575607761071146, -0.6796564394869234, 3.7419156906857403], [0.40537570180621446, -0.6693704590242412, -0.6225863225053981, -0.6230147094526888]], [[-0.5815180315905836, -0.6429540007194077, 0.49844451235209825, 1.2091847321771143], [-0.7065439445172188, 0.09542834193490835, -0.7012054520763535, 3.6618791282457654], [0.4032771173784377, -0.7599365661122395, -0.5097685573713582, -0.7248451540765986]], [[-0.5705586863145473, -0.6113658878483782, 0.5483562132832835, 1.084764233782533], [-0.6985743926337556, 0.010220257716499148, -0.7154644395695622, 3.710264701080559], [0.431806210501189, -0.7912820593868994, -0.4329158105971993, -1.0035777588424397]], [[-0.4126580965154639, -0.7192772753205328, 0.558885942377964, 0.2667507213244061], [-0.8034665430964647, -0.0016328462355922335, -0.5953476698012582, 3.749313284574353], [0.42913262461021445, -0.6947211922927367, -0.5772414187101507, -0.7523034380040639]], [[-0.2520294087289703, -0.7000778976007829, 0.6681108548935526, -0.32552782666273644], [-0.9335396396192119, -0.005981768990674041, -0.3584242733121942, 4.1192381737710875], [0.2549213965036241, -0.7140414243799936, -0.6520428865297376, -0.1456076806716688]], [[-0.5285527338794416, -0.43329804520241155, 0.7299895968658303, 0.8620215399312967], [-0.5654067533845774, -0.4617368227059765, -0.6834576137438968, 1.8901863272996844], [0.6332039250791803, -0.7739844382034815, -0.0009373810117286885, -1.9865710973306272]], [[-0.2045430141418848, -0.5407648013095243, 0.8159262129815557, -0.5502249494472814], [-0.9735351485213766, 0.02557818734755979, -0.22710145513728924, 4.044653447150371], [0.101938559726993, -0.8407848630872725, -0.5316853806943561, 0.2018240086216308]], [[-0.20217435856909666, -0.5008146000742353, 0.8416117068397144, -0.45529249184453596], [-0.9785089287189348, 0.13889610927493873, -0.15240783196937868, 4.202902697240627], [-0.04056852418435075, -0.8543375253263592, -0.5181327896058455, 0.676189243439036]], [[-0.2971003632758411, -0.5502504457499282, 0.7803562142338388, -0.26158710262310503], [-0.9546189668879019, 0.18900048941278558, -0.2301769820368721, 3.9474815058029207], [-0.020832719439342062, -0.8133285080173528, -0.5814316261152542, 0.7262396796467686]], [[-0.30020290864621174, -0.5614844747423056, 0.7711117936225018, -0.29844910328838353], [-0.951824785196864, 0.22930859133453668, -0.20358572696806265, 3.9689506704702113], [-0.06251233418533092, -0.795080344722172, -0.6032739456591625, 0.8857659220527835]], [[-0.30739906308384235, -0.4876746499152591, 0.8171164249023547, -0.11583429970688544], [-0.9466626702979362, 0.24391388745794806, -0.21056068999111038, 3.98172108034185], [-0.09662093292634355, -0.8382597755679209, -0.5366422868031013, 0.9249939285446006]], [[-0.30167981883317957, -0.4823876541876655, 0.8223694048273567, -0.1156123390438173], [-0.949309190320424, 0.23189022828764888, -0.2122238987434799, 4.040153560683397], [-0.08832524034476563, -0.8447065011659511, -0.527891635476464, 0.861824748551306]], [[-0.306914162156976, -0.5318226359692385, 0.7892834604489142, -0.22751900989501225], [-0.9509893486036757, 0.2042358733427333, -0.2321787390832502, 4.027190372199901], [-0.0377220878244906, -0.8218591070923666, -0.5684405441024593, 0.7577999176545755]], [[-0.23096035842939366, -0.5575120806129126, 0.7973942518007182, -0.5390748026138769], [-0.972717712326282, 0.15071546729240648, -0.17636638014529826, 4.176443191204694], [-0.021853259731450858, -0.8163731548069747, -0.5771111739947657, 0.6366745686254734]], [[-0.16751697430111, -0.47818259153940784, 0.862136574139885, -0.7046950341690557], [-0.9832298194601485, 0.14498153528625568, -0.11063216779221213, 4.219685394098575], [-0.07209150744273074, -0.866211154150474, -0.49445025126896114, 0.7076287464839004]], [[-0.09558074188561078, -0.34981405176519254, 0.9319304968548972, -0.8372271060227016], [-0.9908464774834796, 0.12309379403099047, -0.05541819132411707, 4.146057325667994], [-0.09532879858246729, -0.9286969619088217, -0.3583774171207613, 0.5791255658074351]], [[-0.03159175117378221, -0.49015618747528084, 0.871061922676839, -1.3904794948305856], [-0.9974177878437704, 0.07169636270886215, 0.004169900137746929, 3.933363524202747], [-0.06449587390378825, -0.8686809215437028, -0.49115551386029466, 0.642540290408519]], [[-0.04145620264592281, -0.444653882288155, 0.8947425932793476, -1.278186945611894], [-0.9926128624913997, 0.1205252486150245, 0.013905742084347583, 3.9476535940055837], [-0.11402231570534815, -0.8875565274462006, -0.4463656820464942, 0.7571738511419255]], [[-0.09717352589966066, -0.015996338203042193, 0.9951388963498121, -0.16510051490412178], [-0.9709042015549256, 0.22140191948682753, -0.09124813121670317, 4.372606415776495], [-0.21886602584051362, -0.9750514382388461, -0.03704531712831516, 0.5894907038608548]], [[-0.060358012634365854, -0.33450747670622216, 0.9404582172209812, -0.9584419307604252], [-0.9785177455013665, 0.2058983828031829, 0.0104344476594182, 4.149771265958817], [-0.1971292267771398, -0.9196252519296491, -0.3397491191505535, 0.9188787047725008]], [[-0.0700801359716886, -0.4629120097913331, 0.883629586270819, -1.1905084755328108], [-0.9945501993815813, 0.10096956328236273, -0.0259816897184596, 3.9666131191339336], [-0.07719245722379264, -0.8806347815533508, -0.46746519235792894, 0.56996954056574]], [[-0.09961199737077736, -0.4290654185739372, 0.8977640650882481, -1.0847501407195315], [-0.9772986622965555, 0.21174257015831172, -0.007239382302089037, 4.108316364525129], [-0.18698870193989697, -0.8781047491995044, -0.4404171599519119, 1.0064479455166202]], [[-0.0741322848776759, -0.46643435329117205, 0.8814439281137862, -1.2594426133217598], [-0.9919044140506528, 0.12586833529190264, -0.016816526326105974, 3.91837371793729], [-0.1031020743033168, -0.8755547705544706, -0.47198920118331356, 0.8036615996912067]], [[-0.19462904804075423, -0.6034360690830403, 0.7732945390912558, -1.2339574636500816], [-0.9807007511836949, 0.13465555466627196, -0.1417530183990967, 3.830469893622225], [-0.018589520878325216, -0.7859597904009636, -0.6179980886591698, 0.6846811944185607]], [[-0.20261792229262726, -0.41375207968741295, 0.8875557414158052, -0.7805498784866105], [-0.9720273585348851, 0.19491483526189296, -0.13103824348076065, 4.060520667052315], [-0.11878043536505867, -0.8892791595158238, -0.44167158005164575, 0.801363375153751]], [[-0.18737763668325397, -0.3769029096188235, 0.9071018785075158, -0.754279367635863], [-0.9566120285534643, 0.27977562355969415, -0.08135740463295754, 4.257536236128861], [-0.2231211511664128, -0.8829891263105394, -0.4129735520823651, 1.103278240036821]], [[-0.2543850583372824, -0.31906372499224495, 0.9129548627883035, -0.3838804261761531], [-0.963840402825296, 0.16111956479084633, -0.21225494982020787, 3.9725530814467938], [-0.07937203522846065, -0.9339372705035821, -0.3485129191120617, 0.6864136916889693]], [[-0.310715534934149, -0.4813603299764662, 0.8196023969435018, -0.5886942416101736], [-0.9470318396751614, 0.23040508962587097, -0.2237055862422172, 4.047696249954138], [-0.08115756891421383, -0.845698366676584, -0.5274539995189085, 0.7415876051782041]], [[-0.36212098933625275, -0.4215000484060225, 0.8313880551678943, -0.15769947136881463], [-0.9317553226767981, 0.18900494409042973, -0.3100147573468546, 4.034585395763992], [-0.02646521765617832, -0.8869130962518785, -0.4611775709543089, 0.50206573317888]], [[-0.4942303090858393, -0.30710067826302595, 0.8132807479531927, 0.753330002777229], [-0.8682850843045167, 0.2202594176748851, -0.4444848718458465, 4.091521753190204], [-0.0426311383288514, -0.925837438396131, -0.37550981839211106, 0.4453179783904108]], [[-0.6703671746003497, -0.4387694303865537, 0.5984055800012256, 1.4314394364830243], [-0.7324802943453046, 0.26233149977609566, -0.6282155701835479, 3.813165493552755], [0.11866115461329346, -0.8594553922010633, -0.497248387832838, 0.08953967806444184]], [[-0.8813337003405575, -0.4319254794980862, 0.1915497032218234, 2.6429069765446127], [-0.3904140987312396, 0.43736027063723915, -0.8101190191447143, 2.964879819111455], [0.26613481575302045, -0.7887688976046585, -0.55409014249997, -0.34872066257262163]], [[-0.9165665197582136, -0.3930198130047997, -0.07376477102240886, 3.0931648109194647], [-0.13524707731362903, 0.4782739563943377, -0.8677339746218472, 2.162285078782229], [0.3763164133231999, -0.7853594395056186, -0.4915246767385978, -0.8839665588906019]], [[-0.8831564355504729, -0.41888921838137405, -0.21110787069558815, 3.019257971602928], [-0.037178153263156793, 0.5111398955883122, -0.8586930720914845, 1.909951477844256], [0.4676029247831165, -0.7505117120084215, -0.4669900158166808, -1.2544837661698078]], [[-0.8467512948465848, -0.45381487620573224, -0.2776045799514265, 2.8541541457338426], [-0.03951452015162957, 0.5740345184214678, -0.8178771144602471, 1.979493271939507], [0.5305194128142895, -0.6815690939259275, -0.5039967488309542, -1.4271675396875696]], [[-0.8247114092291414, -0.47535977483248626, -0.3064052479290972, 2.689146439450983], [-0.0758181157027866, 0.6298172621044162, -0.773034171098908, 2.134617791660459], [0.5604486638565235, -0.6142990320898324, -0.5554583641956727, -1.4532037689646424]], [[-0.8427853736543452, -0.488910227761996, -0.22512130761884563, 2.539278871916465], [-0.11060986984780075, 0.5666361786493337, -0.8165101945094949, 2.340905785107705], [0.5267620626493126, -0.6632422108365795, -0.531630980209062, -1.539104264052355]], [[-0.8240578288203277, -0.556730285220077, -0.10478589732735574, 2.1725602390280274], [-0.26687749087451873, 0.5446678629371215, -0.7950555477122526, 2.903144978125583], [0.4997050126068864, -0.6272067510815557, -0.5974165981735615, -1.4216414371173034]], [[-0.7896650701136967, -0.5999091639634706, -0.1286004355940531, 1.9723855587350025], [-0.3086743482442052, 0.5696051199057202, -0.7617546548024537, 3.1151648570613397], [0.5302350646443006, -0.5618353872530993, -0.6349738371396214, -1.468478020309954]], [[-0.64025214609784, -0.7609368112753174, -0.10513019862656964, 1.1199599474435533], [-0.4176866634405835, 0.4597176877124859, -0.783707533961591, 3.4188586357953126], [0.6446821236865365, -0.4578589486407768, -0.6121683939477598, -1.82960187602807]], [[-0.33535983572347605, -0.9343649032785314, -0.12039936920442718, -0.29556842590549426], [-0.5643944918453186, 0.3015900040943513, -0.7684414922458533, 3.7084161450214053], [0.7543160068288275, -0.18975167180204267, -0.6284915790129111, -1.7817241532729473]], [[-0.009288500666673305, -0.9908491540588978, -0.13465391808682153, -1.5616595788707865], [-0.6066686553210549, 0.11262966609454561, -0.7869356396595435, 3.5934371155620717], [0.7949005386878971, 0.07438085920583654, -0.6021632846475222, -1.5156269361552113]], [[0.29370695088648296, -0.955209499853094, -0.036208264130818735, -2.7004632208785733], [-0.6141063652560474, -0.1595260096051208, -0.7729326131115656, 3.127706120173108], [0.7325364148989257, 0.24925140651532762, -0.6334541318810386, -0.9897185844214803]], [[0.5962192975217862, -0.8028128931533742, -0.003742706151619979, -3.583476572744235], [-0.5090330837158452, -0.37442671392520555, -0.775041905694079, 2.3351613442743333], [0.6208122654598294, 0.4640001018166714, -0.6318987549985781, -0.2096653401654489]], [[0.798761166732664, -0.6016432053265317, 0.0024600821714440835, -3.97120542985228], [-0.39045038797628495, -0.5214769220179463, -0.7586898670285885, 1.6876821660474277], [0.45774347952651595, 0.6050514633377112, -0.6514473375982531, 0.6418230372070638]], [[0.9252709472182212, -0.37926433179924646, -0.00567810344800701, -4.021735650994168], [-0.25801009050986623, -0.6183394197335647, -0.7423524467519785, 1.002720805317462], [0.27803680948569703, 0.6883421595605123, -0.6699855251739283, 1.4803741402811386]], [[0.9492388011178241, -0.31072596003339914, -0.04893951587132277, -3.9236345357629028], [-0.24280730955562876, -0.624888816699796, -0.741996345806289, 0.9217539946210319], [0.19997577072924133, 0.7162145939066387, -0.6686152455608492, 1.8243829670251301]], [[0.9512074351318661, -0.29915624511008965, -0.07556425319877093, -3.8602650879503773], [-0.2561845118289635, -0.6292243714872563, -0.7337889248451647, 0.9433922891307431], [0.17197066973414876, 0.7173438724475864, -0.6751620971389678, 1.940531027286419]], [[0.963230489486858, -0.2683994733705908, -0.012196180438893672, -3.924353066277367], [-0.20269994517744502, -0.6961544507307607, -0.6886811402621782, 0.5416653237906434], [0.17635123007217524, 0.6658308369414432, -0.724961750873719, 1.8968277077785551]], [[0.9618350494704739, -0.2707696894652483, -0.03946026960151513, -3.8619042164175337], [-0.22862698300513046, -0.7160101251741857, -0.6595901782849853, 0.5524053705268196], [0.1503430751717653, 0.643438634148541, -0.7505888913599488, 1.9699687643835362]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6368441440256233, -0.7545493858306023, -0.15838169263817103, -3.3409232343212842], [-0.67334720910679, -0.4442654881430248, -0.5909582997413071, 2.5050433951173665], [0.37554370212848465, 0.48299420326511233, -0.7910015975988488, 0.9103814649718723]], [[0.510107737405371, -0.8230195476598803, -0.24985780037633223, -2.9185815946161613], [-0.7250884813752476, -0.2552324274737611, -0.6396116807429241, 3.1805391084010464], [0.4626411032497115, 0.507439880316454, -0.7269580300459666, 0.5205786946882122]], [[0.49411240544778734, -0.8179858414610179, -0.29453708417092755, -2.794956508308751], [-0.6979610040164244, -0.17122606687731617, -0.6953647035147166, 3.229185969267493], [0.5183660556546756, 0.5491637253051547, -0.6555271429574662, 0.44146460967853635]], [[0.5046922076356742, -0.7919745229933743, -0.3436017032571963, -2.7136894497798214], [-0.6848026112114407, -0.12491326827744298, -0.7179429358147067, 3.2689131343383915], [0.5256721023887626, 0.5976395488399882, -0.605388974488728, 0.4274155871076323]], [[0.5045670291127227, -0.7605289775406827, -0.4086658628430866, -2.579030383883284], [-0.7308158975310677, -0.12419939617869291, -0.6711800309192072, 3.3957488820284483], [0.4596958092567526, 0.6373148235446683, -0.6184735876672565, 0.745761824275742]], [[0.49656628920763535, -0.7317351112656202, -0.4668893309593286, -2.4353217059601415], [-0.7723043224669256, -0.12694467028739065, -0.6224396229230017, 3.4745802235709866], [0.396191814556361, 0.6696631822242552, -0.6281586331905517, 1.0522921630907667]], [[0.5238382085480995, -0.6888778470911334, -0.5010397619472954, -2.444571323396517], [-0.7605790250212805, -0.11340721015377864, -0.6392639137185947, 3.4720108974768986], [0.38355322702696143, 0.7159511969905641, -0.5833530711027264, 1.1524435447131411]], [[0.454989758755027, -0.7343137061253798, -0.5037536108301875, -2.28084041499543], [-0.7754698760534008, -0.048635377014620174, -0.6295085952045207, 3.6402374416471863], [0.43775654279721055, 0.6770657140182592, -0.5915667571282034, 0.880340731271356]], [[0.5280393558762794, -0.7425326177265751, -0.4120919196707025, -2.643036336748918], [-0.7449039694836569, -0.17196931050785308, -0.6446275145314114, 3.3346095383617964], [0.4077897925319563, 0.6473576043081396, -0.6439220583666709, 0.9834170306580015]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.571103516477995, -0.7885145668990947, -0.2282225914636891, -3.1601503848594708], [-0.6930014699593334, -0.3141091148436295, -0.6489101837745769, 2.8872130635503077], [0.4399883363234437, 0.5287534791943077, -0.725830573990407, 0.7275022589587776]], [[0.6048491800397393, -0.7573756727358884, -0.24604788101732517, -3.191538724373533], [-0.6957539507635201, -0.3522830807428413, -0.6259577230287093, 2.778001788948007], [0.38740664604806213, 0.5497988008082536, -0.7400252490473539, 0.9748301171381627]], [[0.726549643915084, -0.6172770301609656, -0.30181895726167246, -3.354678924062061], [-0.6682164699977067, -0.532444394303385, -0.5196053465840256, 2.1996180800143654], [0.16003863330667606, 0.579199477736781, -0.7993219631905353, 1.8883720992889643]], [[0.7974469959945549, -0.48660642912246976, -0.3567807053582628, -3.3337713948072043], [-0.6033067152416877, -0.6332528762306386, -0.4847801585150828, 1.7318839029459494], [0.009964733992733316, 0.6018346765369227, -0.7985585302243987, 2.4957933702799386]], [[0.8357588855592152, -0.4142574783257119, -0.36041341104354185, -3.3568790931865427], [-0.5481834256453253, -0.6673159296710868, -0.5041670178174775, 1.5182853012925837], [-0.03165465300038628, 0.6189347232612135, -0.7848043012656019, 2.6662957299907366]], [[0.8109666330816332, -0.4117666589623918, -0.41566974702904314, -3.2144256303368652], [-0.5794531310853446, -0.663626535529363, -0.47311086461492885, 1.5826019031978105], [-0.08103819410395291, 0.6245382613645414, -0.7767784569541857, 2.8628302658181437]], [[0.8080006200453628, -0.3878184112450482, -0.4435446740810627, -3.1242885909946754], [-0.5805917152672244, -0.6521789543337904, -0.48741755373308615, 1.6478803031478424], [-0.10024100044079595, 0.6513520487596937, -0.7521251560792113, 2.9522750672097415]], [[0.810951651904869, -0.3681659260051731, -0.4547650703401896, -3.0720013844889587], [-0.5794942031129506, -0.612822854890271, -0.5372472587948907, 1.7999591101185486], [-0.08089429418228805, 0.6992152740414723, -0.7103197264020324, 2.921479107998577]], [[0.8121250578551124, -0.35302423131355176, -0.46457161182029433, -3.0293221235005285], [-0.57987801591906, -0.5766978385360157, -0.5754659761286169, 1.9521450875666253], [-0.064764010512049, 0.7367452036717737, -0.6730617563114337, 2.9012452336458816]], [[0.842469584376077, -0.27982056215456697, -0.46037533860612345, -3.020145257781969], [-0.5353424208534138, -0.5306853622242698, -0.6571008588913138, 2.0188397840047028], [-0.06044412160009535, 0.8000459357539403, -0.5968860936959371, 2.882510347105185]], [[0.8711251691079879, -0.25854883671017004, -0.41748465694250037, -3.104495977810819], [-0.48960867534205244, -0.5226384328588868, -0.6979487184088868, 1.9322745843123699], [-0.03773969761908666, 0.8124048052138939, -0.5818712466594266, 2.8071253829174534]], [[0.9115570713088448, -0.2031639498450244, -0.35747463578582805, -3.209916840205047], [-0.40886502533131996, -0.5398769799355769, -0.7357732242997564, 1.6610134657544249], [-0.04350973233267566, 0.8168581615060285, -0.5751953121969353, 2.8289816508711594]], [[0.9637247848358486, -0.11093335728692622, -0.242751579467877, -3.3545828057928526], [-0.26092915096781555, -0.5828808787958648, -0.7695231376049556, 1.076618851419702], [-0.05612946880483337, 0.8049494837411921, -0.590682496233362, 2.8719612358565034]], [[0.9955293310230764, -0.038811638420513245, -0.08611043952890529, -3.534519465328675], [-0.08839770452056428, -0.7040199599232918, -0.7046571803828452, 0.08120041569173758], [-0.03327456849067958, 0.7091188565767532, -0.7043033794743833, 2.7308957381344774]], [[0.9914438508573141, -0.12258940117527518, 0.04484338654370312, -3.8146948947926225], [-0.06156479683273726, -0.7420734823141243, -0.6674853726016272, -0.11791910549322189], [0.115103720131733, 0.6590134942212311, -0.7432713825018148, 2.147352644823844]], [[0.9745046909872528, -0.18464160051606016, 0.1274679826572442, -3.933895042980436], [-0.05848163590582002, -0.7575169065478636, -0.6501907678181339, -0.16174271502028792], [0.2166114159171186, 0.6261594171239645, -0.7490019217874933, 1.7227072508034802]], [[0.9532999917695886, -0.2602733416267774, 0.15322177825143937, -4.00271841268524], [-0.10618564698813499, -0.7637548738167924, -0.6367127304324981, 0.003142139942166424], [0.28274322992038836, 0.5907082870245911, -0.7557248080979345, 1.4254334718281856]], [[0.915951469610957, -0.38708311270865275, 0.10582801695821831, -4.0372831725948055], [-0.15479412959719224, -0.5841232777609561, -0.7967677038008285, 0.8058405099112798], [0.37023193103752705, 0.7134189934628721, -0.5949467682126246, 1.107419699468975]], [[0.8864821074673046, -0.4619463482860343, 0.027478072085299038, -3.9441456389823504], [-0.23820646804098763, -0.5064176089901395, -0.8287333008200819, 1.3053879796467007], [0.3967457015819642, 0.7281117885393069, -0.5589687573257802, 0.9921713393266419]], [[0.8692448738705216, -0.4909619051308348, -0.058049607751667565, -3.815314712390087], [-0.2872799908337367, -0.40605494470077264, -0.8675192152054159, 1.660733909979287], [0.4023475563693527, 0.7707631215842865, -0.4940047107966248, 0.9390494567508856]], [[0.8805978105241792, -0.45862422188362717, -0.11921123773226712, -3.7704820963414223], [-0.3089271779521554, -0.3648640998896928, -0.878315539731708, 1.9530455568973228], [0.35932088002583285, 0.8102703324899176, -0.46298001410875106, 1.0579927605600132]], [[0.8755349550241656, -0.463298503165379, -0.13708770731014486, -3.734873577525462], [-0.3116510964571707, -0.324722986949452, -0.8929885642177449, 2.080401421827531], [0.3692047353540796, 0.8245662367034836, -0.4286938122725575, 0.9809599241559525]], [[0.8735112032355232, -0.4671733179014601, -0.13684761182778957, -3.7258627329217755], [-0.30850149762123347, -0.313788076497832, -0.8979776550745829, 2.100220278939975], [0.37657005163380175, 0.8266112351575751, -0.4182210684838628, 0.9246992345033179]], [[0.8726123282523894, -0.4606842508264964, -0.1622274502739083, -3.6862872785669905], [-0.32960145782214373, -0.3103259619744172, -0.891661749951275, 2.1758471375213437], [0.36043113570203844, 0.8315454397476317, -0.42263646086377404, 0.9906849495311665]], [[0.8712514950295569, -0.4542104689663531, -0.1860475269659001, -3.614461669504857], [-0.3375847293299239, -0.2793539489764772, -0.8988870461378836, 2.271995904558872], [0.35631079541883615, 0.8459634868436187, -0.3967220639129905, 1.0078438011524598]], [[0.8793995968100756, -0.4326413781320253, -0.19869017856526927, -3.609755390241235], [-0.34050343977362896, -0.2798862492250504, -0.8976196828262288, 2.2768302292291844], [0.33273676777988237, 0.8570210764168842, -0.39344773216355156, 1.105677995484672]], [[0.88442257200209, -0.42050065476485304, -0.20242508114247598, -3.6020816787284744], [-0.3456996111497754, -0.2989186533987551, -0.8894601832016816, 2.2126409661095416], [0.31350995675433063, 0.856636934758597, -0.40973731709876393, 1.2077491076386235]], [[0.893308299431032, -0.4164640722994983, -0.1689910016875361, -3.65560632106282], [-0.3098445571524124, -0.29828231709391195, -0.9027868019151103, 2.1326996014911592], [0.3255712403924278, 0.858827884848184, -0.3954971954850384, 1.1591528766850907]], [[0.8927440540615277, -0.4220798925242047, -0.1576598181672924, -3.69390590169611], [-0.2987090170470699, -0.2924781465174308, -0.9084214093384753, 2.122917060461526], [0.3373143594224254, 0.8580822210816887, -0.3871871960576108, 1.0977594893239755]], [[0.9009475929188471, -0.4063851513645873, -0.15213330852945028, -3.712164480516502], [-0.3156628016260905, -0.373234768145605, -0.8723834039668934, 1.9630829246443873], [0.2977422215328267, 0.8339945542973755, -0.4645456413733953, 1.3054517778908097]], [[0.8776880854548663, -0.4488429212604198, -0.16793944350563988, -3.6728354733577557], [-0.3946585675835963, -0.4781657245443991, -0.7846031830828842, 1.8902686966712525], [0.2718606990416882, 0.7549156058165326, -0.5968200636801867, 1.4686686739016819]], [[0.8925349696248029, -0.4128433024346576, -0.18149858300189914, -3.6541056722794116], [-0.3941324488658394, -0.5184717540433109, -0.7588456055155548, 1.7551039963783335], [0.219182437133699, 0.7488307204529594, -0.6254691130327971, 1.7025399998975372]], [[0.8908727319557708, -0.3645305894595109, -0.2710410020752632, -3.4422297908650137], [-0.41620033607800677, -0.41596417677176817, -0.808548751709592, 2.110075992747474], [0.18199740576781737, 0.8331213915095967, -0.5222888964001606, 1.8519602087372968]], [[0.8809399972680142, -0.3903000706307118, -0.2676015248071161, -3.443409911128316], [-0.4329571187263366, -0.4364642262604807, -0.7886996339158712, 2.0868034217840172], [0.19103103035271815, 0.8106570384943941, -0.5534819883084521, 1.8326952951030913]], [[0.7887549179581563, -0.5616330010017175, -0.24986806835333567, -3.4666194273903614], [-0.560930303652737, -0.49133791360717727, -0.6662914145448628, 2.1440958028269765], [0.2514415913107273, 0.6656992014701164, -0.702582165530252, 1.6020694824586075]], [[0.7358045276865022, -0.6480465062078276, -0.19653860391249342, -3.5079228756648813], [-0.6149753471920916, -0.5179222219249981, -0.59461070826402, 2.1895138769612172], [0.28354368161186416, 0.5583836475292783, -0.7796221410336475, 1.3930495102535911]], [[0.7414932812585237, -0.6420591144791357, -0.19480196960692348, -3.529436741296774], [-0.6155823148950983, -0.5354910592484523, -0.5781935134999033, 2.092116660245508], [0.2669197022268317, 0.5486432529241921, -0.7923032585973003, 1.476998390881858]], [[0.7510883800320326, -0.6195669495256025, -0.22804175152019215, -3.527853706340176], [-0.6216296501760684, -0.5473428969395985, -0.5603501862155014, 2.083842603734882], [0.22235742263939942, 0.5626300278382834, -0.7962440758786566, 1.669424233518189]], [[0.652844804155681, -0.6724573817836437, -0.34870436098738145, -3.214412811988712], [-0.7403061434734484, -0.4689080431393315, -0.48173858161321587, 2.5698095575300868], [0.1604383857510451, 0.5726485106624568, -0.8039485105488218, 1.911567974054153]], [[0.5993486014327946, -0.6408799563470801, -0.4796395891845431, -2.7945730529016575], [-0.7954843743934604, -0.4099551188648054, -0.4462526309304943, 2.865190420383877], [0.08936366183408909, 0.6490066887706997, -0.7555160182779017, 2.2658499524818994]], [[0.6704387800429343, -0.493224735272552, -0.5542934265620173, -2.6498296477819356], [-0.7418854486147723, -0.43470052673839615, -0.5105305408954676, 2.7264705480296714], [0.01085464638758038, 0.7535017004417984, -0.6573563448260911, 2.625262096387614]], [[0.6662410999768048, -0.4667582874032473, -0.5816008062598303, -2.5562028511413732], [-0.745375963242979, -0.44104593379585244, -0.49989314628402914, 2.7264038714090284], [-0.023183401849133145, 0.7665606208399517, -0.6417533361472845, 2.7390109844987234]], [[0.6261520246260268, -0.485726594509709, -0.6099207468538252, -2.4273644655006192], [-0.7753705150761766, -0.470234904199493, -0.4215206984514498, 2.659258066425096], [-0.08206221059191499, 0.7368506024008491, -0.6710566170855288, 2.9262443698414824]], [[0.5883577946255577, -0.5248826638010334, -0.6150880382063049, -2.3575309675196596], [-0.8004186252878832, -0.48599280465998834, -0.35091454531121047, 2.6207519022998453], [-0.11473939949121553, 0.6987912299534459, -0.7060635149507059, 3.006974042100584]], [[0.5994835997220878, -0.5260059603407957, -0.6032720309696153, -2.4258884501002225], [-0.7808004445768203, -0.5500567834566753, -0.2962907368142581, 2.32886562729997], [-0.17598317934645663, 0.6486565074515582, -0.7404557082823114, 3.171055344976093]], [[0.6203977168418026, -0.5504675171913972, -0.5586521148752749, -2.4770212628311317], [-0.7644608501879931, -0.5835798697360538, -0.27392361009723354, 2.106488497345371], [-0.17523207887635536, 0.597009252990261, -0.7828624849720935, 3.157303133750275]], [[0.6611043536782791, -0.565251971974806, -0.49338751679204174, -2.8596460314787353], [-0.7271531208387881, -0.6447556493864959, -0.23566605915703825, 1.8118946847543964], [-0.18490368412239622, 0.5145681303411542, -0.8372755023498383, 3.0199700388836828]], [[0.7704663335740969, -0.5007254185123582, -0.3945322345316205, -3.202034498951398], [-0.6213498256621683, -0.7282129607861412, -0.2891890002968222, 1.3205632633326823], [-0.14249920343104688, 0.4679529239129789, -0.8721892214553051, 2.7885211789706896]], [[0.9097427570584629, -0.3046505848165324, -0.2820569750079076, -3.328226185621678], [-0.3969000737807207, -0.8375131420391647, -0.37555567941990187, 0.46485083568801755], [-0.12181316600649165, 0.45360749341543116, -0.8828373545024272, 2.6740930607405775]], [[0.9747743527158274, -0.0752227069549443, -0.21013449418363095, -3.0242249856950005], [-0.18020111273123984, -0.8207594194121483, -0.5421084157404831, -0.01801481436493729], [-0.13169100294956687, 0.5662998497303385, -0.8136104472888319, 2.7669286434014513]], [[0.9850808511193722, 0.08863869877251812, -0.1475089754484384, -2.799612328945414], [-0.007103220997543791, -0.835478015366737, -0.5494779614236753, -0.5248945895687434], [-0.1719455175612126, 0.5423280067623031, -0.8223837742026734, 2.8540652296021007]], [[0.9755468979595565, 0.18092374596476346, -0.1247992308772955, -2.535343414935227], [0.08848472475697004, -0.8430501012948426, -0.5305063432150828, -0.7888847366170458], [-0.20119319910516364, 0.5064909918772827, -0.8384438990063656, 2.78181677365099]], [[0.95548944550994, 0.26970781088950707, -0.11957264011594566, -2.425512236758531], [0.13426058962843396, -0.7584072344962622, -0.6378029168452877, -0.7106618199627847], [-0.26270518379303603, 0.5933600621957309, -0.76086123767698, 2.9217873628260844]], [[0.9548765481726919, 0.26387417142281266, -0.13631287322087016, -2.3004055255796976], [0.12056630126602065, -0.7638322722220133, -0.6340536467138939, -0.29434094041555775], [-0.27143055234965, 0.589008218591286, -0.7611798563303445, 2.8451631580941608]], [[0.9412987486933724, 0.32968263762841105, -0.07256737665553209, -2.2366011677531787], [0.2142888267484186, -0.7496588206932805, -0.6261724612976415, -0.40333054942767416], [-0.26083896265527184, 0.5738649762819944, -0.77630021548225, 2.678083059262801]], [[0.9171326874847964, 0.3961139760046875, -0.044287148933663506, -2.102036618046478], [0.29800008160002606, -0.7552373644705318, -0.5837914650575005, -0.5281451701350489], [-0.2646952680221021, 0.5222166612828079, -0.8106948709381012, 2.5120676224882867]], [[0.9071373966341586, 0.4184015279616956, 0.0451874432460936, -2.1496368545688096], [0.37084974625570677, -0.7440137156947942, -0.5558003747390817, -0.5426481018615165], [-0.19892764848024108, 0.5209450568508586, -0.8300867655930778, 2.2418804749011065]], [[0.8792549918690009, 0.47601887911594964, 0.017795673593269737, -1.9992578632743163], [0.3958366074154255, -0.7093470839155503, -0.5832153073868616, -0.3799751543168115], [-0.264998187735859, 0.5198391494161441, -0.8121226626754177, 2.2633294918363993]], [[0.8422176940341607, 0.5391256148341048, 0.0035954534525387827, -1.8878426184864627], [0.4498779362082721, -0.6990892106055182, -0.5557734413661193, -0.3898243274159541], [-0.2971181555690712, 0.46969974137176385, -0.8313260218389241, 2.227658567508903]], [[0.8421991591209176, 0.5390967468607759, 0.008676053258696859, -1.9259773447387318], [0.45494154336763193, -0.7019083750772966, -0.5480445466516624, -0.2593639798506027], [-0.2893592377898039, 0.46550975341068584, -0.8364041493113399, 2.1479310391687494]], [[0.8439861523572622, 0.5363221085034773, -0.006780159258264112, -1.89625809690137], [0.4446120722859426, -0.7066249962371364, -0.5504554658375794, -0.10522381379826573], [-0.3000124660856326, 0.4615622499980378, -0.8348369958081433, 2.0761976842695287]], [[0.8657986287368499, 0.5002562657183497, -0.011679173212256228, -1.8828110937830576], [0.4083886013912761, -0.7199045365616125, -0.5612095940837856, 0.11805822539986705], [-0.2891565056004576, 0.481124855778146, -0.827591317270421, 1.9418328882994371]], [[0.8560427485297875, 0.516691436894015, 0.014858389211657663, -1.8081530150688077], [0.4274513269108361, -0.6914437571463146, -0.5824009734071139, 0.25897002026135396], [-0.2906478553365439, 0.5049113682061303, -0.8127658546251073, 1.8493236042635364]], [[0.8729531740218642, 0.48776498225344117, 0.006170741645228517, -1.7853663702460654], [0.411682664155326, -0.7298849765961168, -0.5456970816975834, 0.36676771067543207], [-0.26166799574866817, 0.4789083868826961, -0.8379597943662266, 1.7421537698521268]], [[0.8909379795924524, 0.45353953491723675, -0.023052262075020327, -1.7724206839694754], [0.3754238002360236, -0.764147310905893, -0.5245339430881806, 0.5399787077915673], [-0.2555122046714425, 0.45867284365040517, -0.8510773970454096, 1.6382659731413756]], [[0.913051188534069, 0.396469165218151, -0.09565421134349783, -1.7243482416123252], [0.319688554720563, -0.8413665883729022, -0.43577688322170205, 0.6763756854777675], [-0.25325235457385525, 0.36730704458390917, -0.8949574179265919, 1.66988252331055]], [[0.9371473572097777, 0.3372276387006945, -0.0896233818324394, -1.7037828744482995], [0.27930991017633455, -0.8789382012676493, -0.38659230777354847, 0.7822169790866054], [-0.20914302510965382, 0.337261260818292, -0.9178856339431617, 1.5886742692799916]], [[0.9581877777747577, 0.27312353304426285, -0.08532126476143592, -1.68314318452452], [0.23191215974630938, -0.9159306593449145, -0.32754812995007515, 0.8620639161296456], [-0.16760946478308997, 0.2940655759680288, -0.9409742314993097, 1.5508586758569711]], [[0.9704711942040233, 0.22689691409649135, -0.08187460896826587, -1.6098966660192724], [0.19028567522391746, -0.9287158047984307, -0.31824254228839566, 0.9553417567243591], [-0.14824649413997895, 0.29326565480992306, -0.9444671686639577, 1.5182211964045937]], [[0.9681274382100006, 0.23778143727481485, -0.07867179591483045, -1.534847436472481], [0.20187754317734577, -0.926759956347736, -0.3167987387459457, 0.9679299590889093], [-0.14823872957368575, 0.29081948249363615, -0.9452244747447635, 1.5142942476628038]], [[0.9962908224893285, 0.07817679653968024, -0.03595810765781319, -1.5318869497332825], [0.0673207014859162, -0.9683987800910224, -0.24014938240533495, 1.1641140394133676], [-0.053595896997639676, 0.23683790068528532, -0.97006973389752, 1.4611629840926494]], [[0.9762752712033738, -0.1981762971770079, 0.08725107491595227, -1.3903675239816504], [-0.15446783100046374, -0.9197819571902172, -0.3607503851880784, 1.522840456573342], [0.15174413999489747, 0.3387141958414867, -0.928572242484485, 0.9846005246306743]], [[0.8961790954289799, -0.3996157143288057, 0.19279603154000297, -1.1449928864414436], [-0.2575236408389301, -0.8223244595180617, -0.507409162005762, 1.7130372795473927], [0.36130956716527335, 0.4050799478372217, -0.8398604839704251, 0.5402110881517699]], [[0.8878694204747855, -0.40214529771365376, 0.22353311099827114, -1.1826012581618472], [-0.23041146086444503, -0.8091618110446698, -0.5405254131391254, 1.7332277391481952], [0.3982442101124396, 0.42841139465904343, -0.811088913768529, 0.45391779636747787]], [[0.9411789957056278, -0.24121047055478073, 0.23664236082596674, -1.4240901138674067], [-0.09390737587150196, -0.859439173635649, -0.5025392637171762, 1.640224736837331], [0.324597447308931, 0.45075693640277387, -0.8315375406350045, 0.6001741701280637]], [[0.9456848111770956, -0.2779602997038935, 0.1685773107433582, -1.3082955739834548], [-0.1305601654063972, -0.7996521177762319, -0.5860977168911696, 1.7485053601555536], [0.29771510058778555, 0.532254227155134, -0.7925094047123326, 0.5451562582378329]], [[0.9040818650420195, -0.42693219380103864, 0.019101916091749743, -0.9472192147420851], [-0.31851978765448796, -0.702957703860356, -0.6359210732912661, 1.972212275286523], [0.28492301797974084, 0.5688403717033526, -0.7715176636640978, 0.5161315424592103]], [[0.9057369742561955, -0.42067354257206974, -0.051713673676279076, -0.906843231279902], [-0.376789489319211, -0.7433019663103235, -0.55274937143137, 1.9618595330768633], [0.19408816090581063, 0.5201307118975687, -0.8317414432004266, 0.740924750119348]], [[0.9296825221015095, -0.35525244290374947, -0.09739666272462706, -0.9935108576907953], [-0.3500114322808425, -0.7695194400632102, -0.534164608185077, 1.9184102823653213], [0.11481465660659242, 0.5306934455744878, -0.839751190206116, 0.8155648268952713]], [[0.9229640341334471, -0.3637928008839558, -0.12566697943819485, -0.9675766100022576], [-0.37592472604117866, -0.7820233874624045, -0.4971116794169004, 1.9731822708985207], [0.08257113325477586, 0.5060575258672011, -0.8585381694870589, 0.9302393421340571]], [[0.9078705104116621, -0.39049803555110824, -0.15258578097448522, -0.9039756313567195], [-0.41711920463413704, -0.8046559883795739, -0.4225403051665919, 1.9799739984658826], [0.0422220967060264, 0.4472583421196492, -0.8934076728762353, 1.0838443505119515]], [[0.9011611686931938, -0.36453158077789716, -0.23457466754763706, -0.8360290888216648], [-0.430561295418317, -0.8154422123815254, -0.386873324428066, 1.9557207939748553], [-0.050254541359142826, 0.4496339899094487, -0.8917980467521172, 1.1966459597982866]], [[0.9146733026806528, -0.2932123372242537, -0.2782072512763758, -0.873257420109292], [-0.3811162485149637, -0.8548903688747753, -0.35201258830193954, 1.885132952618358], [-0.1346222659189275, 0.42800582064341236, -0.8936933831097849, 1.3740468203029716]], [[0.9423932008150511, -0.2113024813898895, -0.25931894727543203, -0.9172928361277242], [-0.2958122446591398, -0.8883668151564421, -0.35114031047221134, 1.7671917634580268], [-0.1561735283820024, 0.4076219609972887, -0.8996967077551417, 1.4538100020026743]], [[0.951074742232916, -0.16915418492412315, -0.2585414790884577, -0.9657875672340861], [-0.27188820630513777, -0.8556765160645295, -0.4403345354702986, 1.8091921443241754], [-0.14674344264316116, 0.4890854338235033, -0.8598033498788596, 1.298942918389816]], [[0.9467862669582165, -0.19682090050120232, -0.2546709599173421, -0.9629845279455017], [-0.303273450982046, -0.810534002069801, -0.501058724520541, 1.8867203950539382], [-0.1078006429886445, 0.5516304601946912, -0.8270930157827637, 1.14434092626995]], [[0.9638379044380557, -0.13751316134218294, -0.22826875481794623, -1.0373507678967724], [-0.23379984887506794, -0.8474041850992837, -0.4767009311321033, 1.7643961766253746], [-0.1278832461053921, 0.5128316268853723, -0.8489108303182673, 1.2317267970132533]], [[0.9544740878842092, -0.06617263358432716, -0.2908614758301986, -0.9794389313622349], [-0.2094623264357191, -0.8429211366440421, -0.4955900434864003, 1.741406956966935], [-0.21237878745708827, 0.5339523761190976, -0.8184070568335945, 1.3079328067663352]], [[0.9310718335352908, -0.07069551150191158, -0.3579209206664439, -0.832992573423979], [-0.2186081409483103, -0.8935332554812174, -0.3921846530147012, 1.6783959202981675], [-0.2920885507998481, 0.4433965110401986, -0.8473982608484774, 1.5514057613395895]], [[0.9060197514248973, -0.038849712379795634, -0.4214485850919119, -0.7928964666914627], [-0.24588948697313456, -0.8588018436026326, -0.44944160201388583, 1.7127580040959467], [-0.3444801448909009, 0.5108327449104321, -0.7876441687102225, 1.4704885728569503]], [[0.9131545617187279, -0.10468779439787543, -0.3939406200385869, -0.7210545397416412], [-0.2668489763944035, -0.8841009965129699, -0.3836105469900866, 1.6991124288213222], [-0.308123952670897, 0.4554183721248875, -0.8352566887619524, 1.5388872774135718]], [[0.9157572033772751, -0.07383308726614345, -0.39488912328320996, -0.7745849247640993], [-0.2506807788207941, -0.873135581503481, -0.4180830102292812, 1.7641858497222351], [-0.31392338490853505, 0.4818536411996148, -0.818088734105439, 1.502587961742285]], [[0.9249214016649079, -0.10116005165202407, -0.36645196778293065, -0.8016451668347849], [-0.2674911503399975, -0.8581252302599077, -0.43825742855217514, 1.8287657429782194], [-0.27012753512370247, 0.5033763335131478, -0.8207578093608691, 1.4296521129954103]], [[0.9583223042948402, -0.06525076308507795, -0.2781379136468864, -1.0249471474285647], [-0.2134694583690384, -0.8105711258069958, -0.5453487327862867, 1.8166486502631691], [-0.1898661408325802, 0.5819938040261206, -0.790717434132161, 1.1793545343346536]], [[0.96267551962716, 0.21963588374509735, -0.15816422630319088, -1.346995940271607], [0.07225204787007876, -0.7717033371974282, -0.6318651762337693, 1.5379517446093558], [-0.26083612765327724, 0.596853447614959, -0.7587690535208858, 1.2279280379527158]], [[0.989268800599936, 0.11286887663902218, -0.09277853655780455, -1.3923626508350555], [0.03294252835871567, -0.790960505091034, -0.6109797617036685, 1.600143619763015], [-0.14234475749003858, 0.6013668564797876, -0.7861907363628248, 1.0713948724132305]], [[0.9915029913246288, 0.04172883663453519, -0.12320926258784734, -1.3448902167965657], [-0.043780382888132734, -0.7848549768814792, -0.6181310082325115, 1.804509500879969], [-0.12249529080124402, 0.6182728923845044, -0.7763591528886729, 1.0081609800256792]], [[0.9856580677064686, 0.04899172061832544, -0.16148679474188488, -1.3364151155251052], [-0.05846050236925065, -0.7985483565956654, -0.5990850455829263, 1.7876478263497984], [-0.15830522173284922, 0.5999336075677192, -0.7842315495329779, 1.0598120290725197]], [[0.9880195038205157, -0.048001261501892135, -0.14667426142472773, -1.30105382477123], [-0.12400350709882937, -0.812696700915619, -0.5693392684051045, 1.8792996343440662], [-0.09187268526310188, 0.5807064242929435, -0.8089125159666224, 0.9968739199280086]], [[0.9769881522140011, -0.07109918021139662, -0.20109464688732853, -1.2422558403269588], [-0.17656228754231285, -0.7985359028532861, -0.5754703906128558, 1.9385937937518747], [-0.11966582240262946, 0.5977334844456637, -0.7927135501056783, 0.9908605785653509]], [[-0.9521611949545224, -0.18466034401623455, 0.24349459166597917, 1.5491353726836543], [0.2964724277840202, -0.7514209043210756, 0.5894664741214264, 0.15319205571456945], [0.07411584436964172, 0.6334565351285779, 0.7702205266780893, -2.6970182607008355]], [[0.7954806198532831, -0.5383828177147627, -0.27812681464998856, -0.5023960534792646], [-0.6059175405329653, -0.7132122071229764, -0.3524092531209343, 2.2684335978919177], [-0.008632352652597736, 0.4488566466036623, -0.8935620813840502, 1.0887847109742854]], [[0.6913335714193354, -0.6632676914138846, -0.2865900601121444, -0.23631226580718626], [-0.7224627196113507, -0.6289219549407841, -0.2872364763835425, 2.3182423259158065], [0.01027189370844439, 0.40562685330234033, -0.9139810414224598, 1.1210182124697043]], [[0.6956842199772155, -0.6693624334660692, -0.260724756667017, -0.22466376017354153], [-0.718327455301958, -0.6454989537402502, -0.25949329024014417, 2.2868634099524194], [0.005397502580519076, 0.36781113820087646, -0.9298848496353025, 1.1927731374342259]], [[0.7024856210208519, -0.6679182871561113, -0.24576231188161135, -0.27254540405890393], [-0.7111074950143501, -0.6446624892470099, -0.2806000810624698, 2.287699873783301], [0.028984181778411278, 0.3718809441747386, -0.9278278291613917, 1.1266022211541695]], [[0.688309869399401, -0.6845892854426546, -0.2399313108881274, -0.23901955533471136], [-0.7252145219753005, -0.6415795602154404, -0.24987910082657633, 2.2678597772682934], [0.017129530160400044, 0.345995922188221, -0.9380796346929221, 1.1734529612897657]], [[0.6781090507792726, -0.701776580422598, -0.21835234466705064, -0.23816235943370273], [-0.7342574371407379, -0.6338720034873897, -0.24304793600933536, 2.3034094047517177], [0.03215791123112935, 0.3251398381700515, -0.9451190159868774, 1.1568304105704266]], [[0.6669696486441868, -0.7092429869161611, -0.22831091366312792, -0.2122380282894236], [-0.7446944111025436, -0.6246336032841731, -0.23508104075162273, 2.3032505815946838], [0.024118910839539348, 0.3268137805516663, -0.9447809433839368, 1.1703751253571544]], [[0.6415789104623181, -0.7291986959055289, -0.23800370488641742, -0.13973558210856035], [-0.7659902497487846, -0.5927067599293531, -0.24891290449440873, 2.3221136254108274], [0.04044056057696993, 0.34200578741261667, -0.938827248452289, 1.1199130789894287]], [[0.6506138632174907, -0.7180571518901252, -0.24717509504125565, -0.15562328566450798], [-0.759329001588183, -0.610405905945764, -0.22544200436836076, 2.312408424736452], [0.011003105757258297, 0.3343629115287345, -0.942380164826129, 1.1798199817851858]], [[0.6994013047362252, -0.6278299599698528, -0.34156603504669325, -0.16122474472519505], [-0.7117336740759922, -0.6554984843850663, -0.2525013151553275, 2.2788888504323483], [-0.06536812770421949, 0.4197037983306009, -0.9053042193358598, 1.1680046382852116]], [[0.7278383743431018, -0.27450804052848465, -0.6284080175481552, -0.1274837279712848], [-0.5757252759021834, -0.742454843146919, -0.3424926460159973, 2.197271632059391], [-0.3725475909477145, 0.6110696699828067, -0.6984283434298458, 1.2409578350966837]], [[0.6740107222891627, -0.31637008711794623, -0.6675473872439501, 0.11369305340847956], [-0.6056743389624184, -0.7540212533665465, -0.25418604327141914, 2.202051164094418], [-0.42292805695730173, 0.5756404411162627, -0.6998356529856105, 1.3702334151340254]], [[0.6536791407451061, -0.31876503018625735, -0.6863617387974755, 0.17337871801133478], [-0.628244642650921, -0.7342256643654459, -0.25733507877383355, 2.2307255932315924], [-0.42191497951027557, 0.5994176584965386, -0.6802104238743845, 1.308177782973988]], [[0.6314888354650698, -0.3142906920382125, -0.708832287343848, 0.25251737362108423], [-0.6155017303788586, -0.7591610819704253, -0.2117358531806165, 2.2065304002496844], [-0.47157127837008983, 0.5699963267597733, -0.6728482123753949, 1.4217112197832766]], [[0.687734955371021, -0.2733871116483859, -0.6725177457475546, 0.06729397258177455], [-0.5988141371509134, -0.7373536690024236, -0.31261989053301026, 2.240699842321175], [-0.4104171783795443, 0.6177127601023127, -0.6708119600139492, 1.2518809459321725]], [[0.72307316444918, -0.2531302776612099, -0.6427209825302171, -0.03640386859944556], [-0.5524121889245616, -0.7705266350628135, -0.31800861338390163, 2.205155368017796], [-0.41473602734875037, 0.5849903992288559, -0.696979383073158, 1.3289678615101996]], [[0.7584129168867496, -0.20796707952794335, -0.6177050601476, -0.1974458979136], [-0.5121727936860154, -0.7762973542137204, -0.3674798596503474, 2.203793334174691], [-0.4030990906801879, 0.5950731985843378, -0.6952690208972424, 1.3088578066535936]], [[0.8052979513233389, -0.17609414643313992, -0.5661148833818248, -0.3611995686324653], [-0.46352882750247393, -0.7823515979072876, -0.4160132249413421, 2.202644211096327], [-0.36964338986192496, 0.5974251658943551, -0.7116508522354815, 1.2763782543537878]], [[0.8165382586629069, -0.1098158857489687, -0.5667501595737909, -0.45775488635136863], [-0.4411571534898536, -0.7519185352970932, -0.4898968077068931, 2.2228641553742965], [-0.37235149800219386, 0.6500453734269973, -0.6624163150328338, 1.1787749630784365]], [[0.8297809717801341, -0.10988247270260718, -0.5471648573002265, -0.4889657113755459], [-0.42690492088145016, -0.7564660874744078, -0.49549091518247285, 2.223654395082188], [-0.359465891843467, 0.6447363032232034, -0.6746105334985946, 1.1848005383727767]], [[0.8360758719418022, -0.10560474501115946, -0.5383537630479451, -0.5109716961644288], [-0.4146052758386545, -0.7642601725017909, -0.4939725235013439, 2.2199583860144125], [-0.3592764974271324, 0.6362028187289495, -0.6827637745500496, 1.2016963985667346]], [[0.8478703457404873, -0.1317516295263226, -0.5135731544104161, -0.5224170584758938], [-0.3966502939166344, -0.8003803559544007, -0.44951065631212045, 2.1977907301586272], [-0.3518301026770649, 0.5848356982259756, -0.7308780917025633, 1.3060862728898912]], [[0.8698096099334846, -0.05632682000928735, -0.49016174046430927, -0.6868846975361208], [-0.3499455491259269, -0.7707578063876384, -0.5324194930122956, 2.144613394869614], [-0.34780649090307814, 0.6346335109653112, -0.6901238668858872, 1.1995230202383262]], [[0.8798162290398464, -0.0174569294687571, -0.4749933249337588, -0.7702775784692832], [-0.31128145831619236, -0.7763705207976881, -0.5480444034427056, 2.088438244888257], [-0.3592036425576015, 0.6300349752591908, -0.6884974024086812, 1.2276975428760415]], [[0.8976205442689243, -0.026285638204909006, -0.43998457215057046, -0.8204489199708002], [-0.30019389391906104, -0.767374394990899, -0.5665864135028864, 2.082234834935539], [-0.32273980938221963, 0.6406602868420306, -0.6967018101766467, 1.1453935490342284]], [[0.8919174993537228, 0.2866321010573049, -0.3497502151394289, -1.1492902178954236], [-0.037413287080045335, -0.724017363820993, -0.6887663630256392, 1.7893354754244135], [-0.4506477785327117, 0.6274080773541056, -0.6350399075446812, 1.2831285131686907]], [[0.39069530696279997, 0.8931478945882109, -0.2228093703368187, -1.041176855199407], [0.4826138617303707, -0.40485816663815466, -0.7766425982214022, 0.8501095748705417], [-0.7838628946333294, 0.19589972766453284, -0.5892217401946567, 2.039960496227349]], [[0.35847231885735287, 0.9063206495595738, -0.2237866769826671, -0.9054607276449058], [0.694530221860184, -0.4190997916825637, -0.5847932416969912, 0.27699167414426373], [-0.6237991403776348, 0.054205578989103664, -0.7797027559721589, 2.1689596540344254]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5577030571640549, 0.809616255454013, -0.18299950528482328, -1.150280601742901], [0.6836168796062019, -0.5730652473071437, -0.45195595387856335, 0.18210569334480278], [-0.47078154376244125, 0.12695566640928166, -0.8730675786095987, 2.003690339085817]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"1eb995af-0fdd-4f0f-a5ba-089d4b8cb445\": {\"good_poses\": [false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5323585275141812, -0.8411631121767574, -0.09507374451469044, 0.39974223110155693], [-0.7288425437435521, 0.5125786869244, -0.45392910915724094, 1.6105276961029056], [0.4305611972906538, -0.17235924235146127, -0.8859510973883767, 0.9403262858870717]], [[-0.3393218519715513, -0.9364569970340413, -0.08893240961866958, 0.34872619565510743], [-0.8303904290550392, 0.34261672192864945, -0.4393922133910144, 1.8144016233672684], [0.4419416433290544, -0.07524675780957238, -0.8938822681599424, 0.946032380063546]], [[-0.2191285403907991, -0.9679210144554352, -0.12292921768952597, 0.4470382610730766], [-0.8495693067744855, 0.2512390137238898, -0.4638005508510817, 1.9629744881632092], [0.4798069150949346, 0.002804952514374348, -0.8773696236299011, 0.7534001436136122]], [[0.098331233522076, -0.9719549574544328, -0.2136223986237836, 0.18692700429965173], [-0.8845558349840559, 0.012986941208457151, -0.4662534870150654, 2.175170960037256], [0.4559516896664455, 0.23480821969811838, -0.8584714070092921, 0.6418603875834573]], [[0.33285022299222755, -0.9178469396806458, -0.21625846659240253, -0.15081116999145824], [-0.8625842296634766, -0.20369785575589214, -0.46309354378604617, 2.3196799011050215], [0.380997606015958, 0.34068193212925857, -0.8595211721247967, 0.6731937519593996]], [[0.5610343515152777, -0.8056669069757424, -0.19010863058780825, -0.6464248948385525], [-0.7797267359605938, -0.4372151667576936, -0.4481842424553548, 2.357897002782528], [0.2779688357497466, 0.39967953783147614, -0.8734927552022099, 0.7740501935494686]], [[0.6693815108827866, -0.7193501284417843, -0.1856442447237889, -0.9505172710248105], [-0.7200452337905061, -0.566660668717738, -0.4005378232126659, 2.3884790513340572], [0.18292964271504233, 0.4017848668617993, -0.8972768059952249, 0.9041592548699923]], [[0.8259600044601831, -0.5107108876976957, -0.23867228624028705, -1.3478824881401759], [-0.5637286566484928, -0.7480771205800868, -0.3501294379767175, 2.1611315365797545], [0.00026963942528449025, 0.4237393194543526, -0.9057841445084708, 1.2997301900251306]], [[0.9266080439487163, -0.2311622957402034, -0.29658308434172853, -1.687813302778107], [-0.32814483124760063, -0.8822498203883964, -0.3375740276593061, 1.6918930827158332], [-0.18362598567473445, 0.4101210156194889, -0.8933544928706751, 1.7055790307093266]], [[0.9635969367433791, -0.08312747911890156, -0.2541077836551112, -1.909178094525317], [-0.17830465472990087, -0.908013550923577, -0.3791026792846583, 1.4425309808445006], [-0.1992194608978427, 0.41061078109870935, -0.8897810926542999, 1.7348589611996725]], [[0.9667185243219085, 0.020432538054986765, -0.25502510880598, -2.00027699920278], [-0.0832827375668001, -0.9173813276273262, -0.3891985166262892, 1.3172498273407958], [-0.24190758639664428, 0.3974846048708754, -0.8851478455797054, 1.8224129319838562]], [[0.9755961741544706, 0.07491919601918093, -0.20639578252231663, -2.0524538189501422], [-0.009106455055192912, -0.9253745993105534, -0.37894448594373487, 1.2019517373478374], [-0.21938363077378317, 0.3715763246207612, -0.9021096704557823, 1.7443332038599173]], [[0.9304601743743935, -0.338160219257561, -0.14103733553513925, -1.8317699047430658], [-0.3662912461957042, -0.8494505072719604, -0.3798217458964233, 2.0899524701423036], [0.00863636865651439, 0.40506974931126044, -0.9142449952443499, 1.1523321806425662]], [[0.6436358796469495, -0.7570660429127161, -0.11217781019247616, -1.010382330144209], [-0.7334870490243914, -0.5683515922134692, -0.37279111650078917, 2.9015365842056466], [0.2184710583683516, 0.32222270915765155, -0.9211096147356821, 0.6666562883077828]], [[0.163526227550841, -0.9832721828810391, -0.08021837243017732, 0.2236240199942308], [-0.9030042168211119, -0.11643813243856471, -0.4135523494281097, 3.2634979276709526], [0.3972940438847286, 0.1400641841677425, -0.9069396159652217, 0.23542337673561423]], [[-0.08332043073449939, -0.9895675004391591, -0.1175324121117754, 0.8195326004557673], [-0.8823656034186065, 0.1280739120832936, -0.4528001931839244, 3.279854436672014], [0.4631291911831254, 0.06597905060150189, -0.883831498169073, 0.010791221272585532]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.23097318530604216, -0.9688001452646312, 0.08987583771409768, -1.4458307876936587], [-0.7693323805377276, -0.23840257983821422, -0.5926988258657488, 4.331254836747663], [0.5956333401730753, 0.06775314355595369, -0.8003939252721449, -1.7822139154846581]], [[0.2805095521179388, -0.9473312906273852, 0.1545244866318788, -1.696603939220644], [-0.7453059840331795, -0.31641433540686315, -0.586856846695484, 4.306581799589465], [0.604841616735263, 0.04945092665750195, -0.79480892327514, -1.7174684454308702]], [[0.41244906962081884, -0.9029467916239581, 0.12071808673484274, -2.3228232470221175], [-0.7446053870034449, -0.4104930313337726, -0.5263632670236974, 4.294951928184612], [0.5248319565483512, 0.12721070207498572, -0.8416465140801207, -1.2259594521764314]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9095663184532926, 0.2705491119229686, -0.3154239850946937, -3.5835243593102937], [0.017250270876196322, -0.7829631773208456, -0.621828827825105, 0.7597552464154455], [-0.4152006027091272, 0.5601534084492739, -0.7168239801461993, 3.124532866186936]], [[0.8019119624911475, 0.5927141353601963, -0.07501438633896665, -3.187427312305783], [0.361845954310944, -0.581751724513426, -0.7284452185130031, -0.4416284721367488], [-0.47539952646421424, 0.5570052825331818, -0.680984879030167, 3.2914192140356247]], [[0.7093842375924286, 0.691358500080806, 0.13710371191702578, -2.904578236763285], [0.5190686549811232, -0.38085702211851785, -0.765189950351612, -0.8975840622223575], [-0.47680366490988324, 0.6139799288812566, -0.6290364950139783, 3.1219600414656505]], [[0.6379408137791215, 0.7479261585062855, 0.18340659621960811, -2.5693417512770944], [0.5647892913964767, -0.292509557655955, -0.7716548548436555, -0.9002141111995985], [-0.5234926689445589, 0.5958562075718838, -0.6090244703288649, 3.1855646911420044]], [[0.5861139923538187, 0.7910099891492466, 0.17542401498420204, -2.276538136857906], [0.557630139233005, -0.23674161317920805, -0.7956142510087951, -0.7329053149716198], [-0.5878086557597192, 0.5641423629328111, -0.5798485824407409, 3.246047241680684]], [[0.5793204423331033, 0.8106838137784431, 0.08473239742043698, -2.079286719996805], [0.5006049006660442, -0.27183224955045454, -0.8218892635467863, -0.39924219350880974], [-0.6432593244750644, 0.518554705100607, -0.5633102691180998, 3.273067476498651]], [[0.6303869673384032, 0.7711443676215131, -0.08915512153268151, -1.9470599506257191], [0.3649093113927832, -0.3957363900769651, -0.8427537623930829, 0.22328352788929304], [-0.6851667431134814, 0.4987274544823742, -0.5308648229792552, 3.2293139774400412]], [[0.6279372478189956, 0.7758066159058566, -0.06179730995931709, -1.911005586170262], [0.380614831154234, -0.37538731972837064, -0.845113430547985, 0.25168271326208835], [-0.6788425171620729, 0.5071572289772202, -0.5310031845377277, 3.0323561168704964]], [[0.6396582055649349, 0.7682856423368752, -0.023969810855791307, -1.9005560748466932], [0.35830865128775635, -0.32561865618112046, -0.8749785146843037, 0.47455533887345824], [-0.6800384477849737, 0.5510985960114725, -0.4835680376207544, 2.7644874528248047]], [[0.6855045341622688, 0.7279713166736818, 0.011886788605710075, -1.9922346144740808], [0.37077757662266075, -0.3350041558658923, -0.866196400492641, 0.5562450603837862], [-0.6265840105818195, 0.598188914685793, -0.4995623084563479, 2.4647278934863666]], [[0.7087882719649213, 0.7046340202834145, -0.03331790786068256, -1.9280506750954065], [0.372302872135458, -0.4137798897442052, -0.8307687850677601, 0.6023565006664855], [-0.5991742291893646, 0.5764348187804982, -0.5556196025815008, 2.2966511358044563]], [[0.7200323592282982, 0.6778370387864155, -0.1486282291941715, -1.760018849973659], [0.3590141526066347, -0.5471574395793387, -0.7561266921231669, 0.6722809361418495], [-0.5938537192712291, 0.4910760482473624, -0.6373241521749216, 2.2454783049464906]], [[0.7563138103020992, 0.6159990115686336, -0.22030578315783333, -1.6628674343594319], [0.3204033145027457, -0.6423752826423441, -0.6962009137496324, 0.8539559810106543], [-0.5703780644467092, 0.4559596626858949, -0.6832054226961247, 2.140772879770247]], [[0.8062116878277465, 0.5643017554483764, -0.17772519013301674, -1.7322952614294156], [0.27520185957738874, -0.6236197772235574, -0.7316845699758796, 1.098861321358556], [-0.5237238307496455, 0.5409823492994217, -0.6580664456203456, 1.8108346410933314]], [[0.8812265544109911, 0.45202390546624494, -0.1382539282913001, -1.7611466867608783], [0.214265088997724, -0.6426866918860995, -0.7355571274274346, 1.3432520156968817], [-0.42134336524707505, 0.618569482725704, -0.6632055213904094, 1.3928548429825909]], [[0.9554493632867433, 0.29441860520004887, -0.0208374448293263, -1.815494276343596], [0.1870373722515929, -0.6585636031978213, -0.7289108326292879, 1.4558076074552062], [-0.22832769340615816, 0.692540010003148, -0.6842914576177779, 0.9092421525636518]], [[0.979473256019695, 0.1967320373352393, 0.04391635490454457, -1.8323622853199593], [0.1762453014997022, -0.7300932864428533, -0.6602282838460897, 1.5260911430137487], [-0.09782501950654027, 0.6544159981059446, -0.7497799457051016, 0.7832643451941006]], [[0.9234958249921129, -0.3832442458336831, 0.016712547905932698, -1.2255529224456172], [-0.31149912492561804, -0.7746149563500502, -0.5503998224648916, 2.2762068030149742], [0.22388335443420265, 0.5030859940747521, -0.8347339253756899, 0.4957215511588638]], [[0.3981278279261636, -0.9054584976065567, -0.14710248720831415, 0.21534173076796514], [-0.7800332451953842, -0.24976982298085865, -0.5737274369577143, 2.633786586979406], [0.48274462091332787, 0.3431616887710336, -0.8057280473826511, 0.13010819533592233]], [[0.2077953827496466, -0.9735084835410057, -0.09540603430401745, 0.4805441557693553], [-0.8202047695156867, -0.12026136721773506, -0.5592864557797199, 2.6549508816850453], [0.5329964493049155, 0.19446962752217245, -0.8234660581953211, 0.15564884238168677]], [[0.4406575808370743, -0.879069019270713, -0.1818201193741889, -0.09494522166280926], [-0.8200895391406636, -0.3118561933509296, -0.479790435982963, 2.696995488646731], [0.3650671777123649, 0.3605320707330967, -0.8583371026176336, 0.30773965080654425]], [[0.6602541471164218, -0.7146332714655924, -0.23100594912242253, -0.6584806612433776], [-0.7492283932713325, -0.605365189619638, -0.2686815995055066, 2.4687601778917], [0.05216585024346851, 0.35047435642449604, -0.9351184147246868, 1.1202997466538145]], [[0.7582745098710117, -0.5709459581581711, -0.31470697568170425, -0.9268205939370314], [-0.6471583030992132, -0.7175396099243811, -0.2575325977799954, 2.324597248878774], [-0.07877752477466958, 0.3989456367130916, -0.9135844134714435, 1.3449224859812559]], [[0.8104583584479126, -0.5194122576938088, -0.2708655677256436, -1.1757477885889067], [-0.5833595184343131, -0.7577567470401068, -0.2923976480194086, 2.2716732713093917], [-0.05337528898283478, 0.39498812497670865, -0.9171343738260946, 1.274736862270055]], [[0.8418310997606577, -0.46484515899092216, -0.2742979723557319, -1.3654496784839032], [-0.5334921054964649, -0.7937308583029594, -0.29219428117366725, 2.2200104125165754], [-0.08189366794026494, 0.39231403586967367, -0.9161785439590571, 1.3868708568089003]], [[0.78528216180155, -0.5185672005296768, -0.33826023250021336, -1.2894830711495724], [-0.6068938814548556, -0.7528325258039615, -0.25479993081688174, 2.382826845113988], [-0.12252241839330519, 0.4053779059426426, -0.90590121446249, 1.4519499477860127]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6044082395071556, 0.7959247796999707, -0.0345604553704682, -2.3669540824138546], [0.5874319290357561, -0.47454778189888475, -0.6555365218232918, -1.70503118955703], [-0.5381583491549595, 0.37590976012123156, -0.7543722181260435, 3.6412454924484874]], [[0.5773016244664264, 0.8053091179847045, -0.13490759385268575, -2.1056371650014563], [0.4943787383095506, -0.4762252477749359, -0.7271857922767451, -1.0452375349947756], [-0.6498557512986101, 0.3531100931330025, -0.6730533148508528, 3.953824160266645]], [[0.5703830255512096, 0.7852086708856707, -0.2410612937180219, -1.8971850880799117], [0.4185528539472603, -0.5303742555339601, -0.7372358221894817, -0.5557817872729783], [-0.7067366642644568, 0.31960990634327335, -0.6311678026892631, 4.046853677103264]], [[0.531719831830027, 0.8169108386100531, -0.22345178943134075, -1.7096550936752575], [0.43586355779262786, -0.49016838890126313, -0.7548230981563117, -0.49096784563534124], [-0.7261521737397756, 0.3039599188764205, -0.6166939178309115, 3.944803118363548]], [[0.5109228319300483, 0.8497554340512931, -0.1298982760196527, -1.7098429551132883], [0.46864167088731035, -0.40202032844220364, -0.7866095853898378, -0.43437588271132316], [-0.720647517251346, 0.34102105187146603, -0.6036321711605086, 3.7112316787266324]], [[0.493852546563483, 0.8669455246040869, -0.06719463982869739, -1.7019496781244823], [0.5314344630934502, -0.362086026854368, -0.7658140248085005, -0.5258863311536438], [-0.6882492816482557, 0.3424896590055865, -0.6395418358363253, 3.494810483985314]], [[0.5516919731976518, 0.8186883412372126, -0.15932785893101958, -1.7512875687511964], [0.5146235901267444, -0.484466135445927, -0.7074285293166719, -0.4190265305112962], [-0.6563524412953317, 0.3082887664647388, -0.6885924115740079, 3.272570530658829]], [[0.6129226629594245, 0.7440999475192565, -0.26578389216159753, -1.7620248535234255], [0.4592071695721902, -0.6091906378788258, -0.6465412145673988, -0.13474948688243607], [-0.6430043426324783, 0.2742298941082633, -0.7150827787977733, 3.0990489695869643]], [[0.6708978753764014, 0.6921720876036661, -0.26607112199149596, -1.8523184548522658], [0.4627177348451382, -0.6711382423005116, -0.5791940586552699, -0.06365585658783098], [-0.5794724658473559, 0.2654642365068459, -0.7705455213422645, 2.849858939535703]], [[0.7181482926248056, 0.661963612960638, -0.21463272098208971, -1.9342921914450975], [0.4948274866206202, -0.7026214827879628, -0.5113402100456843, -0.11912476830266436], [-0.4892941735651436, 0.2610119289246052, -0.832144209061302, 2.548219559987737]], [[0.7672239180152597, 0.6265180615348139, -0.1372682709003576, -2.0333907999369933], [0.5315436684703599, -0.7408742217556715, -0.4105687713976798, -0.22763632132278713], [-0.3589272741578536, 0.24203410112748003, -0.901438131963046, 2.1826100894456233]], [[0.8480894299101951, 0.5081431167078428, -0.1501162610013984, -2.065499298054295], [0.443403876085112, -0.8357377738539666, -0.32393730261628595, 0.05962146202863812], [-0.29006434035796086, 0.20816567031106792, -0.9340929997364531, 2.034103533980026]], [[0.886414288641755, 0.41532913043208197, -0.20438058201860135, -1.9619725676199153], [0.3478436093907167, -0.8889708755696106, -0.29788522251873834, 0.37308464419931187], [-0.3054087953837775, 0.19295723827711259, -0.9324660701058776, 2.0155067082057188]], [[0.9608022106402396, 0.17659597056766188, -0.21371236559472664, -1.9077896546251407], [0.11914317970702623, -0.9590746418998627, -0.25686715242309505, 0.9535734296606518], [-0.250327814591443, 0.22133615710930687, -0.9425212415632639, 1.868842365296085]], [[0.979813364373431, -0.031878521136364024, -0.19735635506711316, -1.7810110975167428], [-0.0815865586473888, -0.965015703651483, -0.24917529001510152, 1.3868742873609354], [-0.18250864210577603, 0.26024690506553994, -0.9481361421022374, 1.656489578180329]], [[0.93103316885051, -0.3540787557060857, -0.08834858945001804, -1.5629363383088988], [-0.3639044591032061, -0.8826103975493487, -0.2976112074209963, 1.9741427850184994], [0.027400422350407516, 0.30923635118693665, -0.9505903933659379, 1.1629659149051321]], [[0.7848774449725918, -0.610006035388933, -0.10890377937597837, -1.0589294588439027], [-0.6107980948841792, -0.7320194913159893, -0.30178328585151515, 2.38966920129556], [0.10436993656773544, 0.3033811153031051, -0.9471361122976416, 1.0355203347189057]], [[0.6853682522170133, -0.7069658348110983, -0.1745556279895995, -0.7741642701265845], [-0.7243149181176032, -0.637121449624032, -0.2635225945175517, 2.563175739488813], [0.07508833627992062, 0.3070432654184407, -0.9487287151319364, 1.1011555440749607]], [[0.42354171613980857, -0.8787136938052418, -0.22016961418073522, -0.1958286249853537], [-0.8723792373793875, -0.3301677162958006, -0.3604771078797855, 2.8909575578424374], [0.24406327228549607, 0.3447484930136231, -0.9064113832505264, 0.6319668206114422]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9998710405893831, -0.007963868334698724, 0.013945572482051066, -4.353482352347503], [0.005349425946754928, -0.6536192597004233, -0.756804629340169, 1.0639111880346843], [0.01514218718497239, 0.7567816330684948, -0.6534923672220183, 1.1150372491867668]], [[0.8271252035432317, 0.557729019472638, 0.06929818541389021, -3.466416748881694], [0.40330907775055314, -0.5031498100739134, -0.7643180335610192, -0.5081777370327946], [-0.3914149785937763, 0.6601352963299832, -0.6411050655483537, 2.834920005355591]], [[0.7375601244453274, 0.6683213215638028, 0.09670405354174466, -2.9818081750164414], [0.47977411035494966, -0.41784454389910863, -0.7715067985227755, -0.716980921269526], [-0.47520718203885454, 0.6154287515845827, -0.6288287412815455, 3.08149823319116]], [[0.7542366165117859, 0.6515745039186305, 0.08110358904538931, -2.9355846785749202], [0.48295785530404056, -0.466840689524869, -0.7408181157369642, -0.6782304536284359], [-0.444835740822356, 0.5979217644869061, -0.6667913671006025, 2.915487724906862]], [[0.7595794685791021, 0.6455770865014425, 0.07917863535953854, -2.8874870690876726], [0.4814404225839759, -0.4762105680601013, -0.7358251248564692, -0.5760485890354075], [-0.4373261373566101, 0.5970374529727468, -0.6725266755546302, 2.7982404904725224]], [[0.7276362302465111, 0.6810875331139249, 0.08164121918145853, -2.753379320581076], [0.5162309386221874, -0.46532541564411856, -0.719011735345734, -0.632881961751157], [-0.45172019485728343, 0.5653247118182759, -0.6901860877804488, 2.7344703880015007]], [[0.7774553723221536, 0.6283729435991325, 0.026656852777160706, -2.8719967699230975], [0.48310021325541896, -0.5695040897495212, -0.6650408075532945, -0.457416334070742], [-0.40271246317936404, 0.5299174799071369, -0.7463311171918793, 2.5258553013594414]], [[0.727794878771671, 0.685793675308908, 0.001284266338471618, -2.656172554411598], [0.5405159438560783, -0.5724650773653176, -0.6165437937685316, -0.601852444243376], [-0.42208663668860796, 0.4494115820752964, -0.7873195672822302, 2.5767063679783124]], [[0.6732688307124495, 0.7393775843591386, -0.005465284835690309, -2.4510655657353153], [0.6009760485539615, -0.5515180418898951, -0.578494285654061, -0.7544845681596112], [-0.4307399106834157, 0.3861976659913685, -0.8156681262175581, 2.5535419184874257]], [[0.6829195581768122, 0.7301638608623146, -0.021945690926168576, -2.403117541044531], [0.6097606628806603, -0.5863354972375441, -0.5332941202399852, -0.7021399908420832], [-0.4022596314110155, 0.35081536592606766, -0.8456451785277518, 2.395246968041365]], [[0.7456305114697785, 0.6663420850497845, 0.004833844931536185, -2.5267196898632607], [0.6046105245030304, -0.6734681669423609, -0.425307820026233, -0.6030822980209842], [-0.28014505889893326, 0.320045080897679, -0.9050358513162399, 2.033089715965523]], [[0.7681327117407386, 0.6388017084773692, 0.04364074243426157, -2.6085635855106966], [0.6056334553013347, -0.7027464340531048, -0.37330358589948165, -0.56275946653415], [-0.20779859232820985, 0.313176989371888, -0.9266822100128905, 1.7985207080308583]], [[0.7949879384837324, 0.6052756917633382, 0.04044149633480097, -2.687379286183528], [0.5851733705003346, -0.7475970607650636, -0.3141190239267854, -0.5118787708909529], [-0.15989466571047128, 0.2733861219883898, -0.9485218627851898, 1.6964517565078798]], [[0.8544230928741043, 0.5158917727706334, 0.06178071827862501, -2.768316695862285], [0.5162154931475229, -0.8293658119856662, -0.21371456324690893, -0.33270735327187384], [-0.05901476932013998, 0.21449482207487094, -0.9749406280923782, 1.487268354793314]], [[0.976635132280448, 0.17665603160635346, 0.122378367747928, -3.0721245225803715], [0.19100013123703197, -0.9745308281724058, -0.11751006258632544, 0.48190600344876056], [0.098502630741461, 0.13813873981870767, -0.9855023695041587, 1.1122440878940734]], [[0.979689902168415, 0.18827932450309795, 0.06898254528428693, -3.0486593429459643], [0.19683307375623507, -0.9686388321238516, -0.15164285007019893, 0.49949984212987086], [0.038267958724160805, 0.1621410153736477, -0.9860252808466363, 1.2767091035833438]], [[0.9794209195718404, 0.19905393525871762, 0.033349560163049824, -2.9731701891892888], [0.20178070087913047, -0.9621414311312809, -0.18321685308229005, 0.5192627550684372], [-0.004383042068872625, 0.1861757163506262, -0.9825066878060188, 1.3802591058858373]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.38315732926791524, -0.9072444250416738, -0.17348779282439786, 1.8092364218098786], [-0.8278230260817108, 0.42060152560551667, -0.3712187955198809, 3.8351372048075403], [0.4097554130419725, 0.001381987378680033, -0.9121943825707806, -0.23003348151433514]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.961198422987811, 0.16578645311106446, -0.2204822977261394, 4.623126142937293], [0.25425170440569805, 0.842501736482681, -0.4749177769156093, 0.013206228579263981], [0.1070217849437333, -0.5125482182083162, -0.8519628287425088, 0.6620723284081808]], [[-0.9101910035197793, 0.3107764691119968, -0.27380709150410487, 4.429019874154967], [0.4123149759894876, 0.7426604289656817, -0.527685368210355, -0.5475936350116271], [0.039353496495806134, -0.5931892391933538, -0.8041006335147143, 0.8835567277406103]], [[-0.8881200218520482, 0.2772097987385574, -0.366602719941965, 4.179010272634251], [0.4479658654185566, 0.7005055474492661, -0.5555344826494643, -0.5695429776073353], [0.10280763690174968, -0.6576068015738074, -0.7463135295025449, 0.51590751497437]], [[-0.8418726687071023, 0.36012569293332486, -0.4019451392581759, 4.052349662078169], [0.5185628950783795, 0.7460894199262738, -0.4176638616423569, -0.832218043351364], [0.14947552820415574, -0.560053624899767, -0.8148601129670785, 0.5106726787379414]], [[-0.8226931949094061, 0.2647786348847382, -0.5030588251470486, 3.8912857837114254], [0.48088118588521256, 0.796091756505979, -0.3674114863267842, -0.6421060954707432], [0.30319827194656956, -0.5441784539393301, -0.7822663345413855, -0.17631162046668133]], [[-0.8582660840380835, 0.17150166107549378, -0.4837008468447006, 3.8888065316467353], [0.35509857076671947, 0.8789177115896504, -0.31844726611080415, 0.006549124413295612], [0.37051900629976753, -0.4450739674507583, -0.815245257249789, -0.34940221996387194]], [[-0.8794999464023728, 0.09554227211107187, -0.46620973661869974, 3.8962197810281745], [0.25199505225075597, 0.9245262156444979, -0.2859191672959373, 0.49671304420063284], [0.40370575660914504, -0.3689484392512283, -0.8371969369597101, -0.4555929568145294]], [[-0.8793759554368986, -0.10670457639472258, -0.46401730827186244, 3.650152901443183], [0.17058027534374742, 0.8392667050634421, -0.5162690843306478, 1.1987061847812033], [0.4445225513549263, -0.5331468195050749, -0.7198292646096921, -0.9741212905235102]], [[-0.8533742061209452, -0.3737641243927632, -0.3633907588868456, 3.0535771427136713], [-0.0241213794498919, 0.7246522730106872, -0.688692414851419, 2.1446495264931644], [0.5207404568313094, -0.5789468564016526, -0.627415264463468, -1.5278680786578958]], [[-0.7483803762666267, -0.5975266609149679, -0.28790398037337245, 2.196055084837726], [-0.16593004726049243, 0.5889299267025286, -0.7909669783564195, 2.7515147536062163], [0.6421791275299695, -0.5441722438070165, -0.5398912272253402, -2.1162978000364583]], [[-0.6246810808698688, -0.7336199379498907, -0.2675356683615311, 1.429066369569277], [-0.2608186743018288, 0.518951900010103, -0.8140408740421703, 3.15309871730066], [0.736034758920181, -0.4387376347184075, -0.5155212134752636, -2.4282041701236063]], [[-0.5432899952455224, -0.8045247417326947, -0.23994983018552213, 0.954634739244884], [-0.3125969075398417, 0.4591093797453854, -0.8315658427486877, 3.3263408992754044], [0.7791785125776043, -0.3767738278725691, -0.5009214790439751, -2.61037730823967]], [[-0.47257532803986213, -0.8578475655103296, -0.20191610553895223, 0.543458381575281], [-0.34159425460812154, 0.3895041172185142, -0.855336137368548, 3.438687760034136], [0.8123951775747678, -0.33523737413633686, -0.47710583567530923, -2.791144937893624]], [[-0.3784332864571844, -0.8980767130065154, -0.22415723333550358, 0.11940602458767803], [-0.3340676341281307, 0.35836032403653917, -0.8717664216890093, 3.4466180392431953], [0.8632421812731628, -0.2550217553696923, -0.435633837940664, -2.9693958980354647]], [[-0.24149434234050648, -0.9362502356254918, -0.25517832766270926, -0.4881057378004547], [-0.3816668341800864, 0.3334073826203702, -0.8620730507916275, 3.615754263459379], [0.8921944352575151, -0.11079265998000298, -0.4378516600289176, -2.8620034039006965]], [[-0.08109593611688137, -0.9635465338687825, -0.2549539688155144, -1.2020084497162302], [-0.4096223109682274, 0.2654155534796845, -0.8727910095367172, 3.646135343606457], [0.908643500775951, 0.033655029943954196, -0.416214280698171, -2.7173697130981953]], [[-0.01819163992039058, -0.9667161868092342, -0.2552036018515823, -1.4649370781256021], [-0.44322237439635553, 0.23659325418106297, -0.8646256756021486, 3.717920945629304], [0.8962270867762611, 0.0973829874106818, -0.4327742629726349, -2.5184014907160046]], [[0.01880442295831697, -0.9739748953048561, -0.22587451603290565, -1.6617294736480441], [-0.4225170321744936, 0.1970096764819017, -0.8846844323796788, 3.5932260813028583], [0.9061598927339825, 0.11207181040917952, -0.40781632889322406, -2.555257498532206]], [[0.03638958553787519, -0.9824219425269666, -0.1830926675372973, -1.8027655847226285], [-0.4462318332731233, 0.1479604713417002, -0.8826011839409968, 3.5768828319480725], [0.8941772469919425, 0.11381926797288555, -0.43300372423343814, -2.4633520537981948]], [[0.2768098856792097, -0.9568364201456583, -0.08854576372195172, -2.7651823826127098], [-0.5025525235117312, -0.06561240064957208, -0.8620533475330807, 3.305584343225777], [0.819034338902987, 0.28312378558475276, -0.4990227186550784, -1.714474931811497]], [[0.767435515911935, -0.6384775873405216, 0.05821597187034694, -4.087712283918505], [-0.36864453647886386, -0.5137397207632366, -0.7747081418407809, 1.78926941206279], [0.5245416424281928, 0.5730775425489454, -0.6296333818856776, 0.1587686369431187]], [[0.8999936231405775, -0.4287344732540715, 0.07872883683791039, -4.004182036147001], [-0.30318819344703424, -0.7454539963574524, -0.5936120439049626, 0.8311647999117069], [0.313190673010261, 0.5103774003208383, -0.800891073480734, 1.0407368300932307]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9454898697838282, 0.004023050073493266, -0.3256266592345684, 4.8523912258725455], [0.01709233261432113, 0.9991584895248198, -0.03728491620324078, 0.15750008975984822], [0.3252026419049528, -0.04081822973363052, -0.9447629934642083, -0.13171873972317372]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.015065729772569258, 0.9959843626182981, -0.08825062722860771, -0.026648371706735684], [0.855931347786321, -0.058470817138866815, -0.5137729960009629, -2.597742537333577], [-0.5168699562395866, -0.06779611318457665, -0.853375143400575, 3.4707279610729165]], [[0.20351324982143712, 0.9671711203253456, -0.15219192211064678, -0.8376518118273248], [0.8263642497753051, -0.2530479714546744, -0.50307936832668, -2.2035515945029753], [-0.5250756934389692, -0.023382646370547988, -0.8507342522834586, 3.3303675436876787]], [[0.36733597035193744, 0.9211718842608535, -0.12847818699261346, -1.3435592420504328], [0.7408954864542542, -0.37331589994120706, -0.5583091589816528, -1.7197500304024824], [-0.5622616499791837, 0.10989812782024663, -0.8196244496501374, 3.349255630375857]], [[0.4508597673907204, 0.8877177550137925, -0.09318077903547617, -1.5850536612926163], [0.7029782975562575, -0.4174722632270108, -0.5757937326864746, -1.4037752328132036], [-0.5500427104446451, 0.19409816297273363, -0.8122677636206661, 3.1489078161124135]], [[0.47274097875779486, 0.8764124771522399, -0.09174495569238125, -1.5777880652848453], [0.6757619007069826, -0.42737898755711395, -0.6005772677578985, -1.0772202473743466], [-0.565563277234306, 0.22191973974058973, -0.7942857222419779, 3.0832978682412535]], [[0.5880951362775332, 0.7782365798531641, -0.2202088473816604, -1.6979202317909141], [0.5456952858938882, -0.582758510490359, -0.6021703856918287, -0.4793371455638206], [-0.5969596013466048, 0.23396654510743195, -0.7673974785797741, 3.009986732952875]], [[0.6871749225696352, 0.6304166010005352, -0.36106167752109514, -1.6875480475564668], [0.4112152401393936, -0.74723645081581, -0.5220533620706721, 0.020101874776130166], [-0.5989095524939605, 0.21026791423116253, -0.7727190641988589, 2.920114434223296]], [[0.7731952505533386, 0.5147383386426283, -0.3704234701705418, -1.7937786955972443], [0.30285722557319006, -0.8129085350153916, -0.49745071576713973, 0.443870258989183], [-0.5571773554622166, 0.27244110635246777, -0.784429243545633, 2.6955866364662473]], [[0.8785755260507175, 0.34428747723620035, -0.3310153743303138, -1.9868283143408434], [0.1916959455620101, -0.88900068280583, -0.41584907169050495, 0.7573010468242486], [-0.43744452160221614, 0.30190051174037574, -0.8470527560495317, 2.319995015951044]], [[0.9774938134397338, -0.0519378678488508, -0.20447078659398304, -2.1096787514407365], [-0.11774219852274295, -0.9385357561076031, -0.3244802138722178, 1.5050307999391113], [-0.17505033383023821, 0.3412522415909448, -0.9235281740342723, 1.6636416630090687]], [[0.8287950116881113, -0.554173561640979, -0.07739826987120256, -1.6803480008870348], [-0.5400327705300875, -0.7559781870676967, -0.3699480874817926, 2.4951397324280564], [0.14650404552264545, 0.3484087316012476, -0.925822834234233, 0.8469909631543104]], [[0.3518665627712003, -0.9312492451091743, -0.09468244550693852, -0.3222464889533071], [-0.817611349465367, -0.25652010457862107, -0.5154698023865173, 3.1653659665737894], [0.45574291352581997, 0.25879002961970266, -0.8516607994621042, 0.054650826394899724]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.13688293286260567, -0.9901669974881039, -0.02885099264020427, 0.4443147343112708], [-0.9002859450433188, 0.1365013602310604, -0.41334319374162853, 3.9201672279605337], [0.41321698881869606, -0.030605485463626403, -0.910118137612445, -0.028519870551217755]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8010056648050712, 0.590491628585903, -0.09853710732589102, -3.4908410310926135], [0.43179434033297787, -0.6838714702010118, -0.5881100746471829, -1.531357046963786], [-0.41466079222250396, 0.42853173606522377, -0.8027558648669785, 3.140815573869241]], [[0.7197294782527995, 0.6907019893260067, -0.07014442297895557, -3.0482179281005557], [0.49924896914566985, -0.5851285489230104, -0.6390422897134731, -1.5940299639475872], [-0.48243128520126016, 0.42491804289339075, -0.7659665213850478, 3.493071759795892]], [[0.6524342019838761, 0.7556024761796125, -0.05826242419348057, -2.620984038394326], [0.5222382776557866, -0.5039788089325974, -0.6879480659889947, -1.4393299409711335], [-0.5491782892948158, 0.4184139793770265, -0.7234175477752118, 3.6712026442094197]], [[0.583980633140849, 0.8081417426903935, -0.07663904903994387, -2.1830042775709124], [0.5944646025798966, -0.49003471693332756, -0.6375561249643823, -1.6322891704824924], [-0.5527915125939785, 0.3267612276898948, -0.7665824441523912, 3.6186099146922066]], [[0.5979757585009328, 0.7896976962370141, -0.137122357050871, -2.1153471453920054], [0.541082910491854, -0.5239410413813592, -0.6578108156072543, -1.2095047777940975], [-0.59131571619474, 0.31916035736627657, -0.7405959695184225, 3.6601962871499643]], [[0.6235575668106882, 0.7520910247865248, -0.21338943579448627, -2.0599279893423468], [0.4645537989313847, -0.5760010595045759, -0.6726161961683829, -0.7419551752323749], [-0.6287811453690011, 0.32028404563006385, -0.7085565618518301, 3.6297744122167384]], [[0.655563280950402, 0.7159627707702765, -0.24007102186747536, -2.0714988762757263], [0.44609971322662556, -0.623693993806526, -0.6418729219625858, -0.5350759442552582], [-0.6092879701164857, 0.3136927046659101, -0.728261667610426, 3.4537584666548002]], [[0.6474331780371295, 0.7300281805128775, -0.21883586459673143, -1.9792939817249864], [0.4709614617079584, -0.6089920593823335, -0.6382193770132394, -0.5053148816357854], [-0.5991874344165145, 0.3101411408799573, -0.7380968033876272, 3.245976251946708]], [[0.6633584072322003, 0.7237996697486911, -0.18992014539285743, -1.9711977773537879], [0.4924383363456225, -0.6133459172256623, -0.6175040653467527, -0.41630966784505186], [-0.5634359843420671, 0.3161025528120529, -0.7632948759517447, 3.0195831389023984]], [[0.7525732219326517, 0.6049832276740906, -0.2600554553608664, -2.0531911356145796], [0.3785888877284297, -0.7206242481129286, -0.5808365924425105, 0.08104072791262465], [-0.5387986634341798, 0.3386679601980618, -0.7713624394646303, 2.7999446770374288]], [[0.8118063392928596, 0.48126103803168485, -0.3306936357969281, -1.991847765470847], [0.3139521597747793, -0.8372392898490397, -0.4477325238418884, 0.24831809310970493], [-0.49234592397691035, 0.25965011998021664, -0.8307691053100021, 2.6193719956367048]], [[0.8456365434185754, 0.3967317302427594, -0.35707530109721997, -1.947958931361938], [0.2472594080829041, -0.8840408129964393, -0.39665429037272015, 0.5075753800932578], [-0.4730344824107179, 0.24713513545261157, -0.8456728701307872, 2.477276955177556]], [[0.9240607188149291, 0.24018355061710797, -0.29736114399194064, -2.07595074734074], [0.1267004194838434, -0.9264122306124438, -0.3545523694382743, 0.8352548660904577], [-0.3606366476744351, 0.2899521356786936, -0.8864925083549832, 2.1949307579323807]], [[0.9496193766881428, -0.2519778744872461, -0.18636037719245174, -2.051820136732956], [-0.3053543570418284, -0.8777954190106784, -0.3690987930072897, 1.9193007918876257], [-0.07058155604685146, 0.40740931890760196, -0.9105140805134471, 1.3938590557295247]], [[0.529139713314069, -0.8452125517401006, -0.07501270675620741, -0.931524984052131], [-0.772612091499248, -0.4433582157945941, -0.4544271652933963, 3.0526941395337843], [0.3508300441282967, 0.29841118422140583, -0.887619876562324, 0.35926666765695126]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7829408102822399, -0.6220554753333074, -0.007118511251893139, -4.059097400661017], [-0.6022256432821524, -0.7550140647962676, -0.2593801004958072, 3.143273931492546], [0.15597423559033052, 0.20736621607115857, -0.9657490824558631, 0.5193086561429887]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8843735407811344, -0.46269878281963867, -0.06158958307590495, -4.420728597632938], [-0.42420496433094684, -0.7416283518723827, -0.5196513599867063, 2.4492761181576634], [0.1947654707673283, 0.48569252009504754, -0.8521556121510336, 0.22992128660391328]], [[0.7591834840268773, -0.6342944398040414, 0.14598287986777606, -4.09591829545635], [-0.5030652304940119, -0.7141418038372174, -0.4867513306403304, 2.93543519356855], [0.41299613975050553, 0.29609465994138207, -0.8612561412874675, -0.8348625325495113]], [[0.6524029602325248, -0.7409184077579144, 0.1594060554850875, -3.689580637589638], [-0.5896596731848945, -0.6283775791030874, -0.5073884979973691, 3.5061411915632807], [0.47610066929098227, 0.23702643550038843, -0.8468450989258064, -1.130861868638163]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5031663725323314, -0.8519877333669709, 0.14470834027403923, -2.987285381506224], [-0.7034792748103386, -0.5010688931359566, -0.5040306282795003, 4.2640155797614145], [0.5019367604240358, 0.15181194460159908, -0.85147673016431, -1.190779233783557]], [[0.3434488037376203, -0.9389048653603688, 0.022373489084745984, -2.0559179881253167], [-0.8198952860654231, -0.3113640385053673, -0.48044162539618285, 4.950898132924437], [0.45805527952300207, 0.14666318327465744, -0.8767412797244399, -0.934091723910624]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9040249119022916, -0.40725492831398413, -0.1299322208846817, 4.849632666239614], [-0.22821643960419072, 0.7168036145478501, -0.6588701198760839, 1.7886605343520883], [0.3614639890147299, -0.5659823332358617, -0.740950594243941, -1.1720914321339204]], [[-0.8007602373506915, -0.5560932213699509, -0.22258340329965076, 4.388639134500745], [-0.19704228813406613, 0.5954746552083062, -0.7788352018825551, 1.8086381200185953], [0.565647751666137, -0.5798019180297178, -0.5864063069955034, -2.2467166188787866]], [[-0.7885206866137415, -0.5074584220580788, -0.34744938719836344, 4.464778155419826], [-0.1324025872331679, 0.6917742784892065, -0.7098717507512903, 1.557797981260177], [0.6005869476405201, -0.5137453625124643, -0.6126671370497849, -2.3217069959825722]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8694802895430028, -0.4634305923049582, -0.17098570762520404, 5.26762047640078], [-0.4229956962698457, 0.8772921765847166, -0.22678861929215108, 3.0473124088661945], [0.2551052077739783, -0.12486201591808196, -0.9588174017754726, -0.005169913985183719]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8717198952333414, -0.4112675677318371, -0.2663895868578784, 5.403310266819796], [-0.3592919929341439, 0.9061366038804861, -0.22321675322732665, 2.684792878518715], [0.3331871667213242, -0.09887083917858137, -0.9376624494413432, -0.4447342450241914]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.04585424629835547, 0.982276174279835, -0.18174406603402737, 0.3278841037289397], [0.7705689883836716, -0.15055978575594917, -0.6193183228796704, -2.447357639812823], [-0.6357049805041445, -0.11164796619416684, -0.7638153634268765, 4.068523689907709]], [[0.25637187548120166, 0.9603985302457907, -0.10912435367037321, -0.83577733723502], [0.7206168483970434, -0.2651545353585838, -0.640628152819626, -2.040197007925138], [-0.6441931536958181, 0.08560219319911666, -0.7600575275931007, 4.037593008331435]], [[0.4388240457901055, 0.8871059584486028, -0.1430960353098206, -1.558805668281209], [0.654197012724825, -0.42457448569174555, -0.625909557876779, -1.6738090845444078], [-0.6160030238386162, 0.18105116565373366, -0.7666555615379735, 3.7988375598679953]], [[0.4699521564271377, 0.8789834722363904, -0.08082713779877149, -1.7039013370684237], [0.6618698834092825, -0.41148898105928544, -0.6265820583950467, -1.556006149254172], [-0.5840147499038578, 0.24096654125012804, -0.775152822282603, 3.5690865209983023]], [[0.4413636683429696, 0.8967993036400395, -0.03080781163239782, -1.6131023807063376], [0.716152671067692, -0.37272882673607616, -0.5900835309026665, -1.6670298930467669], [-0.5406694590870169, 0.23837833523768093, -0.8067541789788661, 3.34226450876208]], [[0.5033967421582218, 0.8637462052504679, 0.02311304609750206, -1.8783537410683944], [0.748292314591235, -0.42242259989739395, -0.5114858346226396, -1.7647685267260995], [-0.43203047567061825, 0.2747756175706696, -0.8589808077486228, 2.877653065738355]], [[0.6241436050944181, 0.7811274029527646, 0.016874257791445524, -2.2600756190972584], [0.7057792309436777, -0.5544109723632296, -0.44102624739555923, -1.535035342889209], [-0.3351424135920335, 0.2871732126775189, -0.8973355607197225, 2.4861563885233617]], [[0.5663292912822214, 0.8203895979106068, 0.07894328011838406, -2.110602635861542], [0.7636118524280342, -0.4862581480374978, -0.42479401160864927, -1.7210444249772832], [-0.3101097751880826, 0.3008553159032026, -0.9018414529314902, 2.3134615374371834]], [[0.6904974771585046, 0.7054406709705462, 0.15989588418207107, -2.3900872518472425], [0.684891375747715, -0.5665194118003788, -0.4582352665168358, -1.2842918009054274], [-0.23267367161787528, 0.4259216075687861, -0.8743304562588899, 1.944850986476015]], [[0.5836864507960625, 0.7837486189820849, 0.2122456817011134, -2.0316737602098973], [0.726122499591057, -0.38683675722577876, -0.5684218845599448, -1.2416994981480225], [-0.3633954357786174, 0.4858965172778236, -0.7948888801288833, 2.174748399787393]], [[0.6168475881085235, 0.7575920662305964, 0.21343222397087316, -2.0614321771254844], [0.7451566672554617, -0.474786515739024, -0.46831539128789096, -1.1192414645216415], [-0.2534572829678217, 0.4479196642890921, -0.8573956963116367, 1.9574384356725658]], [[0.5864096053249682, 0.732745620296747, 0.34526458074721555, -1.8901245753852303], [0.7547764460604715, -0.3395871937133349, -0.5612424202946762, -1.1487554237549125], [-0.29400049533111206, 0.589715519383573, -0.7521963273928045, 1.919127707306864]], [[0.4705947329801941, 0.8134272297912585, 0.3418724018188936, -1.5858394423362505], [0.836511845555478, -0.2880402404460232, -0.4661338349971662, -1.2503343010320227], [-0.2806929452919468, 0.505340441403532, -0.8159917332580128, 1.8557265407507368]], [[0.3094582777474572, 0.8867908484414936, 0.3432747667015357, -1.1021545898097647], [0.8424541853650281, -0.08824712615265934, -0.5314916653031766, -1.2690738081882615], [-0.4410289331716512, 0.45366775931976133, -0.7743894654883051, 2.0963375411650915]], [[-0.3633006908441874, 0.8840790489371283, 0.293967418709214, 0.673298863483983], [0.8518871109067915, 0.44297444542795256, -0.2793957604701218, -1.475466677417473], [-0.3772279924700918, 0.148922382227187, -0.9140684688625701, 1.9120109740176137]], [[-0.6787425222869742, 0.6868177984895211, 0.25998057642355543, 1.3385356310599765], [0.6708668236165686, 0.7239019371348093, -0.16094623444829753, -1.076314253964716], [-0.2987411813093942, 0.06517129038524705, -0.9521063015752966, 1.6448823668299906]], [[-0.8774158034413805, 0.423309174843587, 0.2257229504604221, 1.6854443195601856], [0.4191857735420522, 0.9053229636673178, -0.06836386996488572, -0.5537196007992113], [-0.23329122386251053, 0.034636309703344095, -0.9717898594443481, 1.5217602065461246]], [[-0.9525388702688778, 0.20085385758408505, 0.2287518929331102, 1.7593619588905476], [0.20336671713508994, 0.9790191362398022, -0.012787073080568796, -0.12154121746542108], [-0.22652081358803516, 0.03434033735803363, -0.9734007716462681, 1.4313395437289775]], [[-0.9754080699531126, 0.035180668775255254, 0.21758083007210935, 1.6599864218890477], [0.011086751705990881, 0.9937608272543728, -0.11097973757093908, 0.2841932898758491], [-0.22012764707540042, -0.10583826698897984, -0.9697123698467581, 1.2355675924704905]], [[-0.9624113835582429, -0.26050408722031254, 0.07682414554695931, 1.7972236598471112], [-0.2623791962863233, 0.964844497109003, -0.015239873838651047, 0.8571940378441767], [-0.07015330465239429, -0.03482408563030393, -0.9969281804154005, 1.2062498902729446]], [[-0.9093768584905543, -0.3630238506017362, -0.20309459159745896, 1.667982548025414], [-0.2938949795180022, 0.9062347032657407, -0.3039151256699274, 1.214030589090519], [0.2943798061280077, -0.21668490139172836, -0.9307997546480625, 0.9542066004587836]], [[-0.6775793765567781, -0.7349416875443457, -0.027329551302522084, 1.1590172810239436], [-0.7340554287079513, 0.6735406932038754, 0.08663464770418801, 1.6486679298391815], [-0.04526384925427421, 0.07876325607738861, -0.9958652185124119, 0.9796156591958187]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7731896848254586, -0.5780225053948183, -0.26089786226913675, 2.1107092078318987], [-0.49103551862608663, 0.8060092689173403, -0.33050442942106706, 2.41216225620414], [0.4013250935676938, -0.12743249850972999, -0.9070276333146909, 0.181533058063117]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.30877415232550964, -0.9498610066061456, -0.049219823088087866, 0.3085807494741077], [-0.7411728862183601, 0.2727215008444096, -0.6134213362053185, 3.697445328275988], [0.5960883119055504, -0.1529282547678235, -0.7882205740167272, -1.033260556607759]], [[-0.33574498677779085, -0.9400375795026664, -0.060038762281954206, 0.4351483134753226], [-0.6874544176257863, 0.2881089076403893, -0.6666330932567424, 3.61924228748785], [0.6439578616185784, -0.18254480672160897, -0.7429641081496456, -1.24739010103198]], [[-0.3088570886022579, -0.949758950214958, -0.05064815205630052, 0.3302406468538594], [-0.7003206766586118, 0.26312699392516037, -0.663562457431351, 3.650961422703866], [0.6435512789704962, -0.1694760205884303, -0.7464044679535009, -1.1615619730797937]], [[-0.16240382002376663, -0.9863071478470378, -0.02869162504162759, -0.2224910140198898], [-0.557797908881865, 0.11575416505750435, -0.8218652359838922, 3.3174913572742573], [0.8139327319187419, -0.11746992541787604, -0.5689589831733145, -1.8171228540273587]], [[0.09123833383131263, -0.9946478259074779, 0.048489884070947065, -1.2202489710423372], [-0.5270391701695379, -0.08954473622147807, -0.8451103202079779, 3.0560182167510654], [0.8449291565253807, 0.05155038925705385, -0.532388277313424, -1.7384940418727661]], [[0.25837386203570967, -0.9628359265195257, 0.07867608289715006, -1.784711549164208], [-0.47656481470992973, -0.19787825303060103, -0.856580512478569, 2.789086529313629], [0.8403147772098518, 0.18382376228563158, -0.5099802933662367, -1.6064154375042852]], [[0.15951702063609352, -0.9836606284926673, 0.0834630941242625, -1.5786226820165727], [-0.3985187607505555, -0.14151510726813576, -0.9061767331733532, 2.6942793889748953], [0.9031816635966579, 0.11128900380675383, -0.4145812829524208, -2.0857050468364013]], [[0.07802407866694261, -0.9912961947368113, 0.10603818863264397, -1.394327434245735], [-0.32670204105409395, -0.12591279227685692, -0.9367025916010556, 2.554729813414716], [0.9419012790729522, 0.03844246403864621, -0.333682719719457, -2.4360303468812097]], [[0.06254018625263769, -0.9915592290916952, 0.11357385397426584, -1.3664304485977263], [-0.2456256444927431, -0.12558814499535798, -0.9611949129100452, 2.3651611014638356], [0.9673452164925453, 0.0322166577985285, -0.25140668067750843, -2.7093929804338774]], [[0.11462569712980086, -0.989800421932485, 0.08459358308868403, -1.528498037255709], [-0.24730785313329795, -0.11090617288566718, -0.9625687749945215, 2.406657290826307], [0.9621329301796641, 0.0894144594466097, -0.2574981147615731, -2.677015335957776]], [[0.1462361266524288, -0.9860941865222197, 0.07895093773209377, -1.6420743072928439], [-0.24652191608094393, -0.11361701005266006, -0.9624542170505952, 2.408409294248289], [0.9580406777133605, 0.12128244033567165, -0.25970873976966813, -2.6517619359719937]], [[-0.017435920918658532, -0.9997301227481228, -0.0153515579581317, -0.9665157430151472], [-0.2733759431924448, 0.01953556302578885, -0.9617088725081551, 2.6293613623834093], [0.9617492304885715, -0.012571533211546693, -0.2736427857761857, -2.794487196392795]], [[-0.5151092145929177, -0.7906832365358067, -0.3308814236289621, 1.3805402020398299], [-0.07462179964923948, 0.42594024227570054, -0.9016687290946861, 2.214227952300133], [0.8538700627487628, -0.43976690356526255, -0.2784079497249403, -2.7918899433001756]], [[-0.5854941198227912, -0.6832197165376224, -0.4363570265129069, 1.874692200433195], [-0.06453683300850993, 0.5758365386249341, -0.8150136673514662, 2.48314405336598], [0.8081037265340179, -0.44902460925733856, -0.38124174409831857, -2.7090148075639546]], [[-0.5596723139757372, -0.6764792783416448, -0.47868850721885026, 1.92335572687303], [-0.031729599754755755, 0.5946967356849596, -0.8033237361519054, 2.3230600032834614], [0.8281063539597113, -0.43440945954251586, -0.3542997149187852, -2.658241823164348]], [[-0.4943419133467695, -0.7420107318049096, -0.4528202144284171, 1.4797762906418652], [-0.08069459429380821, 0.5578441310364315, -0.8260135034731372, 2.439592163854556], [0.8655139832263907, -0.37179295226584264, -0.33564199005046447, -2.838719135035105]], [[-0.4768401294801243, -0.7573987533306135, -0.4460612282754588, 1.3936327989855624], [-0.16371094143022996, 0.5751164374978892, -0.8015234313329613, 2.746557382943879], [0.8636099921685749, -0.3091734331616627, -0.39823305946847853, -2.6944958108454977]], [[-0.46776724064130903, -0.7395552553635689, -0.48399569507067064, 1.4509768624671358], [-0.17421843325393405, 0.6140048546126989, -0.769835031696131, 2.9453241126520764], [0.8665112498388926, -0.275782636828653, -0.4160555144767042, -2.6697929140208743]], [[-0.4367312225918407, -0.8062014843806252, -0.3991303117979298, 1.1505895302229712], [-0.23657409172993737, 0.5309904484808985, -0.8136841172987277, 2.964164313837461], [0.8679277264470765, -0.26093736835595416, -0.4226264916683262, -2.6335052480284284]], [[-0.461775118172216, -0.8075560828384308, -0.3669017761032047, 1.1625367217978062], [-0.20322704081574006, 0.49896665911583377, -0.8424553655666637, 2.791837556739054], [0.8634017084291148, -0.3144605637618697, -0.3945276209852151, -2.729313772927789]], [[-0.5026986726977877, -0.7842041729933638, -0.36375521924458637, 1.323195251688256], [-0.2710648228800257, 0.5425606579932475, -0.7950797407775868, 3.093392936482403], [0.8208641216820862, -0.30108428630157513, -0.48531468788546706, -2.4464913617520594]], [[-0.5535220601776877, -0.7468928009749791, -0.3684623084501294, 1.6600504919558343], [-0.2486356961275376, 0.5704407226184869, -0.7828011705341735, 3.0491823774815066], [0.7948544643567291, -0.3416848340653236, -0.5014557354960946, -2.335400031052006]], [[-0.5338263351486434, -0.7590862851851498, -0.37258214603705486, 1.5174068144248376], [-0.20383898772262787, 0.5431414150628631, -0.8145226027113825, 2.82782967276504], [0.8206577307172473, -0.3588668484094344, -0.44467457103672725, -2.5598675866592844]], [[-0.5615198798539067, -0.7410661840735007, -0.3681254342633685, 1.685245123383593], [-0.2499501822521135, 0.5760093049456849, -0.7782918392274996, 3.066910528989059], [0.788809438914741, -0.34501332066853463, -0.508670303477883, -2.3288259228482784]], [[-0.5269435992843542, -0.7773042980947449, -0.3436982271363731, 1.4170864109316146], [-0.1549045459361864, 0.48546284059579514, -0.8604245533740685, 2.656699951108235], [0.8356644211772772, -0.40015479325393255, -0.3762195058929676, -2.7639312207565574]], [[-0.540321762675512, -0.7752383431361745, -0.32719704172059294, 1.4808774525668646], [-0.16473437121291018, 0.4787762719616113, -0.8623432427679993, 2.710798847016825], [0.8251757265699928, -0.4120422220331559, -0.3864016401901843, -2.7276832971942886]], [[-0.5451183716090156, -0.7884959549469384, -0.28481588784099066, 1.3977930013042372], [-0.18443556985966275, 0.44419816107808757, -0.8767391369531687, 2.7569935909979115], [0.8178199566560341, -0.42539643008276573, -0.38756727902128396, -2.7232835087826994]], [[-0.5921937772361772, -0.7559459185285908, -0.2790202474063745, 1.6051632983297524], [-0.16273777683094443, 0.4513316758810296, -0.8773916653003626, 2.680109054233901], [0.7891913242014708, -0.47417874963602796, -0.3902967681120898, -2.683427550670711]], [[-0.5826907926534312, -0.7561395983785091, -0.2978663255906971, 1.5926787912800808], [-0.15212995755683528, 0.46152317334243664, -0.8739867484588554, 2.641803484692103], [0.798328200786288, -0.4639496397583621, -0.3839567887111965, -2.710391585347946]], [[-0.5778208171660649, -0.7709398345931573, -0.2679083326196039, 1.5223270858879523], [-0.17150853370701302, 0.435618857534418, -0.8836407832519269, 2.685811083951262], [0.7979398010597112, -0.46463747416441104, -0.38393240484088464, -2.7144553523859556]], [[-0.582791217858842, -0.7703441475878666, -0.2586972954318061, 1.5073308117687023], [-0.2010502989338584, 0.4451382014984794, -0.8725999993498201, 2.786423161220002], [0.7873583515053448, -0.4565324477447612, -0.41430055572128194, -2.6120191292756507]], [[-0.5589896350433182, -0.7858920401016696, -0.2643941928616692, 1.405675802427021], [-0.2501314040519101, 0.4638341857423818, -0.8498777140528636, 2.9442138152796304], [0.7905471956949551, -0.4089395425261989, -0.4558547816325997, -2.491631802598215]], [[-0.4648556883396181, -0.858639629485536, -0.21597957240267368, 0.8574589934552304], [-0.5265696257821181, 0.46422114878197374, -0.7121960082921168, 3.5849910814076593], [0.7117820018952294, -0.2173400830507024, -0.667929390038748, -1.6311594935964304]], [[-0.5350001271739532, -0.8224360702105159, -0.19332297933907863, 1.1765688417590694], [-0.630158279226653, 0.5408739155357396, -0.5570959976656997, 3.872250937066365], [0.5627391998483472, -0.17622235360396604, -0.8076325123744842, -0.8715928101602571]], [[-0.45115409799672235, -0.8760211296622826, -0.1704316879162501, 0.7586670841498654], [-0.6850024064981286, 0.4623220844118353, -0.5630541655621317, 3.9288268026938806], [0.5720416793840607, -0.1372780778213114, -0.8086550849386588, -0.8247602159921867]], [[-0.2644435279157714, -0.9564396626044193, -0.12366403010012722, -0.06711265280449351], [-0.712742860239436, 0.28020527691264885, -0.6430261409678564, 3.89856084118509], [0.6496670191114586, -0.08190344673730376, -0.7557940127385115, -1.0708879604850559]], [[-0.2897751078499682, -0.9478165904171887, -0.13294396488925203, -0.05993490230127313], [-0.7004900519752328, 0.3046799475984847, -0.645355573784809, 3.851994391247395], [0.6521840798074381, -0.09388205612000544, -0.7522247573593981, -1.068282697705864]], [[-0.3962529342618661, -0.8971644768570273, -0.19513972828390894, 0.38795754188132187], [-0.6593460789617718, 0.4259668747248011, -0.6195280217995975, 3.8227655161152945], [0.6389415937678485, -0.1168251818018789, -0.7603325040075294, -1.0097125299691723]], [[-0.4682944234995349, -0.8553282815361929, -0.22161647890800287, 0.6598732108153251], [-0.5953055685584012, 0.4907721482901002, -0.6362027809638044, 3.7349291653511703], [0.652925426800486, -0.166000690562006, -0.7390075491971244, -1.1499441623240874]], [[-0.48544297689783816, -0.8479736627817634, -0.21280456623166055, 0.690807859308041], [-0.5683330687997324, 0.4910400115649324, -0.6602099892844622, 3.7149545699378206], [0.6643362394821192, -0.1995504303949036, -0.7203033990201387, -1.2752858371819518]], [[-0.43494114976221704, -0.8793425317195094, -0.19386311705077963, 0.4645596523068072], [-0.6067029860802604, 0.44526764507574657, -0.6585197118765651, 3.7953446515580738], [0.6653853642249851, -0.16879998861914208, -0.7271649612827624, -1.2621698260793914]], [[-0.1887263466299609, -0.9717757844040049, -0.14154218782288347, -0.5367814413094567], [-0.748282043534946, 0.2356442057304171, -0.6201175627482629, 3.9186715493994657], [0.6359688273892619, -0.011119044548040746, -0.7716346398636247, -0.889103354174276]], [[-0.0057885819312969156, -0.9912076401501806, -0.1321889043268563, -1.234554479902438], [-0.7760571832297845, 0.08781879490574876, -0.6245183004674522, 3.829546956982681], [0.6306359811148405, 0.09897107339628147, -0.7697421555002107, -0.7190522637869561]], [[0.001456665708985172, 0.7109454007790241, -0.7032457004747096, 0.7177582417392053], [0.8496864492416059, -0.3716925382982169, -0.37400213227817325, -4.6671345555737815], [-0.5272862752814679, -0.596993546099605, -0.6046221049674042, -0.6395731606459781]], [[-0.04735940108758202, -0.9932605423832729, -0.10578554756256639, -1.2117945629212525], [-0.7945471786679487, 0.10164121477228677, -0.598634984218611, 3.9367543079008054], [0.6053526806741903, 0.05570061403701365, -0.7940060286902556, -0.6869428182897641]], [[-0.17611855366160556, -0.9798883894181848, -0.09381364154311572, -0.796072852987999], [-0.7813124612530439, 0.19712391755191205, -0.5921933797499752, 4.074207777103245], [0.5987763296481043, -0.0309984743563812, -0.8003161885409551, -0.793026962537286]], [[-0.1743803930753195, -0.9769760164403415, -0.12292006268815114, -0.8046402233076292], [-0.7207560247537416, 0.21169594426096616, -0.660072405092534, 3.953371591099648], [0.6708965876288844, -0.02650830971261514, -0.7410769718619645, -1.1100817577695257]], [[0.05183947337401429, -0.9902691762505738, -0.1291496324745648, -1.626923621094403], [-0.7173882131309821, 0.05304110042500765, -0.6946515625307705, 3.740557560590971], [0.6947422692344561, 0.12866079524748225, -0.707657812155878, -0.9906610706639065]], [[0.23975954053124204, -0.9670753819044622, -0.08532624706727665, -2.296599469664269], [-0.6950757477114138, -0.10963400909441678, -0.7105280353323886, 3.445379925235956], [0.6777795125759307, 0.22966408026555593, -0.6984764438176208, -0.7614366162491426]], [[0.3339007384867414, -0.9409560635515748, -0.05578515307439447, -2.6104988848128934], [-0.6413226716380445, -0.18340556515561002, -0.7450286098620592, 3.1882522940845193], [0.6908078804422036, 0.28454188643409994, -0.6646957102189497, -0.7641088308299172]], [[0.3855035388133663, -0.921473603289098, -0.04768039433327903, -2.7604484096767927], [-0.6184565969768805, -0.21969498520318054, -0.754483632116927, 3.064435015908175], [0.6847616075818996, 0.320344364579713, -0.654584623149576, -0.7026368699952424]], [[0.3539051296256676, -0.9340359493658416, -0.0482493991350193, -2.6638618178094426], [-0.632572213684213, -0.20104393983474117, -0.7479530257512026, 3.130591947841761], [0.688914765191815, 0.2952256417521619, -0.6619956697386548, -0.7472623002753012]], [[0.30345255388825154, -0.9523729259282906, 0.03003926592786771, -2.6213007217649227], [-0.5664931734700863, -0.20567025360136926, -0.797988240010678, 2.9590687957142956], [0.7661605784367198, 0.22513453031984143, -0.6019239248502883, -1.1807187779426382]], [[0.2823214708732956, -0.9582376925586211, 0.04555339332989661, -2.619776344426878], [-0.5925540037701671, -0.2115316270235544, -0.7772606534391875, 3.0420811439779363], [0.7544364384756901, 0.19244452532794287, -0.6275275013666086, -1.1823454296633362]], [[0.2924740220800023, -0.9530734546307591, 0.07816608271198527, -2.6585532029630676], [-0.579285676274113, -0.2416158842902303, -0.7784920485928508, 2.9121796341056605], [0.7608462733509247, 0.18240820852374084, -0.6227681701814645, -1.2084691253032191]], [[0.4124155387326037, -0.9063625333383193, 0.09176263712666627, -2.979889274112361], [-0.5946581600696498, -0.3441457982504912, -0.7265984738554787, 2.7142021862520456], [0.690141359486935, 0.24509310008051272, -0.6809069512190699, -0.7790959699084279]], [[0.45539173008988043, -0.8879736403395107, 0.06419646585243688, -3.0358057007005588], [-0.6576007637052572, -0.3841008066654594, -0.6480955221980835, 2.752816722675753], [0.6001496544529609, 0.25292169614554894, -0.7588484749137019, -0.38573632153655124]], [[0.31763194114668025, -0.9398815768109037, 0.12542954809310825, -2.666666539279735], [-0.7959021916772373, -0.3361698886843344, -0.503517136972847, 3.08569222442798], [0.5154121178695377, 0.060103473388913975, -0.8548321011987245, -0.28154045119718735]], [[0.09537280659790363, -0.9734917268682073, 0.20788911823564646, -1.981264701999257], [-0.8612684530540611, -0.18541225961315105, -0.4731162074575442, 3.4620460672382336], [0.49911990496823844, -0.13392591871740595, -0.856121001237673, -0.5253176258095325]], [[0.10895606435663654, -0.9825045848932826, 0.15104077828053922, -1.9805780992667477], [-0.8497975072325922, -0.17089502653484698, -0.49863722946339134, 3.4664166415312994], [0.5157254819583624, -0.0740245268092446, -0.8535499965962643, -0.4960693397992174]], [[0.5774043810916399, -0.8081953753220993, -0.11586378210705542, -3.0749911589068986], [-0.7266210161104855, -0.44395569228435555, -0.5243331405079064, 2.538236596252751], [0.3723252336905809, 0.386941311565836, -0.8435937065678979, 0.4214188278743379]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9954376730670501, -0.09533154948369951, -0.003966700378524543, -3.284534025780654], [-0.09019848028657906, -0.9266542470969854, -0.3649330630281541, 0.2660134837969534], [0.03111387460358553, 0.3636259094318721, -0.9310253083547173, 1.6058660688193684]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7532652943010788, -0.6079358780894782, -0.25100869413843874, 2.8293435781233782], [-0.4128006468807176, 0.7340961668307563, -0.5391645794924333, 2.219072711126845], [0.5120420122766982, -0.3025174143350536, -0.8039254888903966, -0.3454095585707419]], [[-0.7450831280032894, -0.5905594885235447, -0.30998487524336277, 2.781440097391373], [-0.36992598046764064, 0.752632881001795, -0.5447003904992103, 2.1980812643847676], [0.5549827937331829, -0.2911756118732245, -0.7792373590314857, -0.5535596030023896]], [[-0.8753059763016257, -0.40002279349538505, -0.27170059354886655, 3.076380514164062], [-0.23221308921761907, 0.8405498100055001, -0.4894416186796206, 1.8310300254299487], [0.4241656858430063, -0.3653187397107703, -0.8286288007120356, -0.13630360540572092]], [[-0.8546291635133649, -0.4710914492520203, -0.2183617166860466, 2.8880398237767997], [-0.28377123639112123, 0.7759399119476493, -0.5633747761869787, 2.215916840796771], [0.43483661100406495, -0.41951173939271963, -0.7968230808919847, -0.3045185667048157]], [[-0.7185261147261109, -0.6806658037993659, -0.14287857080319227, 2.226503971474711], [-0.4127246361443794, 0.5826457433113497, -0.7001302111183709, 2.894352208881976], [0.5598022840039949, -0.4440923342496783, -0.6995737284122258, -0.8861930779825821]], [[-0.534350974561806, -0.8428089651673785, -0.06435902592753012, 1.3883167582548654], [-0.5405593478009136, 0.39926957144375613, -0.7405264349259721, 3.2945879608977364], [0.649818918999669, -0.3609111491109854, -0.6689383491454868, -1.2212551464792365]], [[-0.454570116937604, -0.8907106042632584, 0.0007926161200376702, 1.0756140583888474], [-0.536971312704525, 0.2733306755388791, -0.7980928211316268, 3.280990253840629], [0.7106530926687872, -0.3632147591473135, -0.6025339995534251, -1.508042449792491]], [[-0.46020594076217264, -0.8876275466896747, 0.018106088613311477, 1.1080234137110057], [-0.575511483708982, 0.2827309923687412, -0.7673654397177873, 3.36297221122665], [0.676015550269585, -0.3635663960157157, -0.6409543287020176, -1.3582935717420201]], [[-0.5679906849934192, -0.82259187413734, 0.027003525027756436, 1.5655063121366362], [-0.5406056255867834, 0.34814106099902065, -0.7658611879645023, 3.31307826883257], [0.6205901540828929, -0.44960027830251015, -0.6424386744317907, -1.2324659320998321]], [[-0.6244719443428205, -0.7782449856186134, 0.06610244388962483, 1.7521216666502877], [-0.5262216276175701, 0.3566800108454613, -0.7719262714086086, 3.3088912136487583], [0.5771703295875598, -0.5168308352089352, -0.6322660028983226, -1.1419637838723211]], [[-0.6677336072794806, -0.7374610020778875, 0.10140562175644036, 1.915442743257698], [-0.5166047919423583, 0.36099932629224396, -0.7764012978857893, 3.2843876274465185], [0.5359583180171055, -0.5708158694630199, -0.622027269914633, -1.0299638927011818]], [[-0.6469587500074702, -0.7373697966707116, 0.19424252558738275, 1.7166311464971915], [-0.5833394731742534, 0.3145481338752334, -0.7488488035060165, 3.460389895258535], [0.4910798660356136, -0.5977836184050224, -0.6336365762336027, -0.8866972436198717]], [[-0.6131706359754387, -0.7395160387597015, 0.27773692515514603, 1.4453162889568112], [-0.6309368056136344, 0.24691564961518453, -0.735493989980322, 3.58360748232792], [0.4753320087050087, -0.6262177659506881, -0.6179893131019261, -0.8577545685065524]], [[-0.5833015735414174, -0.7135001611100125, 0.38817108908327075, 1.2519174776493736], [-0.7039249528350573, 0.2056007123091793, -0.6798661690907409, 3.7408255330431284], [0.4052763687661403, -0.6698103218030788, -0.6221777862683523, -0.6229243903686126]], [[-0.5627519315833283, -0.6795402578498291, 0.47067536738246724, 1.0658958318962106], [-0.7248291558359945, 0.1319074803557826, -0.6761827500581985, 3.764161959404175], [0.3974077985512013, -0.7216823779112085, -0.5667817808143721, -0.6646541410973258]], [[-0.5723488091948794, -0.6215238554422395, 0.5349064756846915, 1.0656348363098904], [-0.6873525689670417, 0.007904866113534137, -0.7262809091709178, 3.6618467378556874], [0.4471725467284541, -0.7833553537239285, -0.4317303594194497, -1.056511044604868]], [[-0.39884058786344706, -0.7527001217706262, 0.5238021689142036, 0.2252354645337803], [-0.8505591010643438, 0.09015364363222661, -0.5180941382957815, 4.103645964937994], [0.342746846913804, -0.6521616726137145, -0.6761728711685548, -0.4220610968048402]], [[-0.2743765972899449, -0.6496206338966644, 0.7090208141340336, -0.13139558016050285], [-0.9321804971970298, -0.0013712520898224723, -0.3619912157956389, 4.13327436074457], [0.23612920934329595, -0.7602572930813638, -0.6051874460128099, -0.14963114840174974]], [[-0.13268023522065872, -0.718538817799896, 0.6827136460453375, -0.9781120596316398], [-0.9910171424861237, 0.08452353881714872, -0.10363780528583094, 4.288411043448763], [0.016762412726946563, -0.6903316150232102, -0.7232988889933523, 0.8011468217263265]], [[-0.21163426997579327, -0.5155710129371758, 0.8302996244674257, -0.4571094018277074], [-0.975215677093153, 0.05529802060855593, -0.21423471256665927, 4.126528338325929], [0.06453928201922116, -0.8550606174627098, -0.5144958906937289, 0.28769573253396985]], [[-0.24304383116535966, -0.5313615602486659, 0.8115322473091053, -0.37155621485559803], [-0.969863690450016, 0.11832398136581612, -0.21298792778093611, 4.142721597307186], [0.017149871111447113, -0.8388410622542539, -0.5441061975359361, 0.48021764209469564]], [[-0.3159518767550308, -0.529044750732627, 0.7875824168283764, -0.1660359180603193], [-0.9475987603370031, 0.21728447791435812, -0.23418805491583017, 4.007245864192659], [-0.04723347311757797, -0.820304277314057, -0.5699735885438147, 0.76853083449511]], [[-0.2987873359218116, -0.5237468742887104, 0.7977564412560716, -0.20802803013278495], [-0.9468357950987645, 0.2671791192282298, -0.1792129888376332, 4.045715697514002], [-0.11928162059779618, -0.8088909258492352, -0.5757320253957825, 1.0543653892709661]], [[-0.3002275704845814, -0.5033096949236509, 0.810273260645313, -0.16657933195346605], [-0.9454009026694394, 0.2699384438167636, -0.18262083611021296, 4.028395165848698], [-0.12680906573559736, -0.8208608819682209, -0.5568724030705954, 1.068488152312772]], [[-0.30795600867162576, -0.5007839986718922, 0.8089366374427801, -0.136436433671935], [-0.9471053001450312, 0.242068556587812, -0.21069970182390774, 4.046165859994366], [-0.09030308499841999, -0.8310344160055488, -0.5488416458816554, 0.9029881560682269]], [[-0.3343686703914733, -0.49017065639267166, 0.8049411903190289, -0.049466645836932395], [-0.9414283427992477, 0.21333000822980014, -0.2611570082592755, 4.0225258549910885], [-0.043706608595267926, -0.8451171724679665, -0.5327914199429724, 0.7325421000972494]], [[-0.2681130937537092, -0.5043759139841624, 0.8208046700345066, -0.29267449479227353], [-0.9632403671421115, 0.15523473144393185, -0.21924911233904842, 4.189168451165987], [-0.01683342109450786, -0.8494157495279747, -0.5274557046692012, 0.5638392217833053]], [[-0.19549650642866911, -0.4781856813039502, 0.8562240186832312, -0.6759687798627615], [-0.9795432625121203, 0.05273756065063917, -0.19420027436574722, 3.9390539677201146], [0.04770862439115808, -0.8766739438882036, -0.47871357121582225, 0.3248640546116309]], [[-0.05986188510682694, -0.450518567729812, 0.8907578654393886, -1.237866117430762], [-0.9979953753294506, 0.008651965584102805, -0.0626926974420508, 3.8776543856458203], [0.020537417863160712, -0.8927251332981558, -0.4501333700641441, 0.3236764548090924]], [[-0.07508496675077253, -0.43022760459097037, 0.8995923832580792, -1.140260375207532], [-0.9967019817847675, 0.06022606417606341, -0.054387321134412414, 3.9515373966017076], [-0.030779981714620763, -0.9007091813908508, -0.4333307781405231, 0.4380630401086912]], [[-0.09913448716862516, -0.37413977061062076, 0.9220584501544604, -0.9115524092827834], [-0.9944192759233185, 0.07085878810247948, -0.07816224037724795, 3.8470836128372463], [-0.036092341652439686, -0.9246612699773251, -0.3790763494046594, 0.5076223290738573]], [[-0.058283230806220054, -0.41997979352462933, 0.9056600013458684, -1.1732462269798547], [-0.9982329671428126, 0.035037644572248616, -0.047992778332628494, 3.774689441156089], [-0.011576196095648028, -0.9068568445426424, -0.42127978255562715, 0.4520071209970726]], [[-0.06601316864594692, -0.3983270804096013, 0.9148649072828645, -1.1563583543326832], [-0.9974725263901005, 0.05049423594265673, -0.04998891110553505, 3.787914851829476], [-0.026283467470474775, -0.9158525367923211, -0.4006536037386885, 0.4323132975132568]], [[-0.08303051879075696, -0.41581190275517366, 0.905652468928595, -1.127769091787246], [-0.9921283394726856, 0.11997679815729967, -0.035873749721683446, 3.9632618840381073], [-0.0937405513345701, -0.9015020961878262, -0.4225005084073228, 0.6402208508843024]], [[-0.11392622849454914, -0.35896610597454987, 0.9263714963352855, -0.8970125703852171], [-0.9841884604761095, 0.16806870009946284, -0.055910520589080415, 4.013733878706336], [-0.13562407133939358, -0.9180938115510555, -0.37243773233250943, 0.7550382785662482]], [[-0.029587574172367848, -0.4366302956109205, 0.899154358499871, -1.3874811280039265], [-0.9995565233725971, 0.009894932701770054, -0.028086418249998968, 3.721079872424554], [0.003366309237289644, -0.8995866135406569, -0.4367294273352452, 0.32386639634682285]], [[-0.15536435486981387, -0.370938054847049, 0.9155691545165632, -0.7947192915737644], [-0.986628131306316, 0.10448573456492666, -0.12509061430592883, 3.848649076204569], [-0.04926304650438845, -0.9227609065942898, -0.38221127862792226, 0.5411987440711822]], [[-0.1869977556238261, -0.38486637252999467, 0.9038305785307637, -0.7717215971014749], [-0.9757392497222989, 0.1794094971575963, -0.12547967517101583, 4.0307965190143165], [-0.11386288220055268, -0.9053673882050655, -0.4090783988818294, 0.72215368306173]], [[-0.25740847064388755, -0.2247173379031714, 0.9398100857548227, -0.18442114642550542], [-0.9539496070525676, 0.21411345995376269, -0.21008468166641903, 4.089537107270994], [-0.15401631876209476, -0.9506090386233137, -0.26948363446159884, 0.6970662132815201]], [[-0.2522684405040125, -0.3127038002479276, 0.9157384819019991, -0.3747798690726501], [-0.9638673564796858, 0.1648773830097628, -0.20922516025735144, 3.979337377727745], [-0.0855590616973792, -0.9354313346699246, -0.3429983455923773, 0.6909303637218825]], [[-0.2634460463016971, -0.3356811465311815, 0.9043861722469642, -0.35240253147237066], [-0.9627332171048044, 0.15092835449740005, -0.22442233510000864, 3.9430101244666043], [-0.06116317005386046, -0.9298057859963115, -0.36293286838855454, 0.6155881838319244]], [[-0.4017153050761125, -0.3376115260692484, 0.851259814118345, 0.1809129609367329], [-0.9145180182765141, 0.19638312577406836, -0.3536813002673505, 3.987972759304086], [-0.04776617961699675, -0.9205716296825575, -0.3876419310502892, 0.4901797218047872]], [[-0.4832797540781247, -0.22187460584199076, 0.8468838991152494, 0.9276592347390002], [-0.8712648925755566, 0.21654677659310867, -0.44045996471011734, 4.097792416687621], [-0.085663097442776, -0.9507255928129816, -0.29796422756249397, 0.4992865986028105]], [[-0.6686287413245259, -0.4337149905726023, 0.6040090340610706, 1.4372680997795664], [-0.7345085012143617, 0.25861688977054353, -0.6273870942004166, 3.8107354176692807], [0.11590024986432174, -0.8631388134466077, -0.4914860331722253, 0.0836738663150528]], [[-0.8815998783996661, -0.43074690171190394, 0.19297347245486696, 2.6456076530797], [-0.3917643617493734, 0.4397588067818837, -0.8081663669819974, 2.973311554256324], [0.2632533746579519, -0.7880795001288701, -0.5564425956087748, -0.34056059525873505]], [[-0.9154920156354304, -0.39562503603507065, -0.0731792331882889, 3.0848312710704566], [-0.13573534840894647, 0.4749282375621543, -0.8694935792508236, 2.1559332096482384], [0.37874831286763355, -0.7860814207372895, -0.4884933115934811, -0.8950006892536675]], [[-0.8836764880897121, -0.41846249033480676, -0.20977370802897247, 3.0191247510171544], [-0.0368463101318956, 0.5089327056536972, -0.8600173547933032, 1.9047031506485737], [0.46664570482015266, -0.7522477286763969, -0.46515066470349664, -1.258756047570681]], [[-0.8464136932496718, -0.45420264384129394, -0.27799967303403295, 2.852565809738243], [-0.039836155051781175, 0.5745812851219655, -0.8174774783064555, 1.9816079308351746], [0.5310338413228869, -0.6808496934824672, -0.5044271545572161, -1.4264846820133241]], [[-0.8251576115928086, -0.4753096837030703, -0.30527957777836834, 2.689953432863164], [-0.07529779760220107, 0.6281328318745342, -0.7744542511972784, 2.1291957897422304], [0.5598617308824649, -0.6160599403462025, -0.5540983596744573, -1.4570528728829073]], [[-0.8424281664941105, -0.4892629747179164, -0.22569121796726319, 2.5380455829723494], [-0.11028885410108741, 0.5665824759619621, -0.8165908807927516, 2.3404280873711527], [0.5274003725429479, -0.6630279326717603, -0.5312652892280574, -1.5409255201475511]], [[-0.8232130421855377, -0.5579433668923421, -0.10497374203327905, 2.165073082819662], [-0.26719936837576547, 0.5439006109807909, -0.7954725783547254, 2.9019663895605503], [0.5009239310666083, -0.6267944836352344, -0.5968281918351512, -1.4235437874163557]], [[-0.7896948629824128, -0.5998400338899998, -0.1287398816297121, 1.972736635251838], [-0.30836328074453234, 0.5694978994484985, -0.7619607795760993, 3.1140833891765927], [0.5303716720071474, -0.5620178611633194, -0.6346982064459854, -1.4698253783506758]], [[-0.6394763884207453, -0.7615089032952416, -0.10570779940211883, 1.1163945733467913], [-0.4181568288778801, 0.4598874376683718, -0.7833571414990831, 3.420699547690492], [0.6451471267200649, -0.45673595750378315, -0.6125173058844517, -1.8285442028042782]], [[-0.33676284237610044, -0.9339482582730584, -0.11971398775201852, -0.28934350692295757], [-0.5644083016314664, 0.30199191889481514, -0.768273486443279, 3.710102774405824], [0.7536803414208528, -0.1911583945081881, -0.6288278072451937, -1.7827462554879046]], [[-0.018662317860372646, -0.9897593891744453, -0.1415205618739106, -1.5058910123245874], [-0.6135290822051332, 0.12309912418028457, -0.7800183785748729, 3.637737110353739], [0.7894515711432877, 0.07227002952175837, -0.6095434846278966, -1.483989389084748]], [[0.3223111776744719, -0.9457789759865433, -0.0402198126293597, -2.801689001441454], [-0.6139707961657991, -0.17651799900208553, -0.7693381944787576, 3.0958438283901386], [0.7205243689158819, 0.2726600898740874, -0.6375743950224355, -0.8920630285425103]], [[0.5930376558601684, -0.8051498996630836, -0.006322800360877512, -3.5827279561128242], [-0.5388619205337158, -0.3910424179238593, -0.7461324667798455, 2.430216209261108], [0.5982759976219941, 0.44589176540589803, -0.6657675001174354, -0.1319672927702595]], [[0.7988164872066488, -0.6015702687821929, 0.0023305544727442173, -3.9698768460335394], [-0.3903129677235602, -0.5212311452850569, -0.7589294304555958, 1.686402694083458], [0.45776413904286706, 0.6053356960415834, -0.6511687094019449, 0.6438941148836818]], [[0.9251730111020438, -0.3795077768503225, -0.005361607828200027, -4.0209311546644555], [-0.25787226486898024, -0.6181564589709805, -0.7425526831436279, 1.0018503272100403], [0.2784902054646089, 0.6883723117198893, -0.6697662024301432, 1.4791973517642698]], [[0.9492500962429119, -0.3106809705835515, -0.049006012897236745, -3.92385374493915], [-0.24284813134839667, -0.6249664701749095, -0.7419175805018412, 0.9219369795988314], [0.1998725591055801, 0.7161663533526108, -0.6686977751138476, 1.8248920440398915]], [[0.9511218003854497, -0.29933043501042406, -0.07595137594547577, -3.8596617659524846], [-0.25669399603582516, -0.6295766907215755, -0.7333085182235575, 0.9444828168033541], [0.17168434183320402, 0.7169619802866398, -0.675640441057786, 1.9419501086144033]], [[0.9632404129417104, -0.2683483498303398, -0.012532757845609643, -3.9242039984806163], [-0.2029205637892792, -0.696229271330604, -0.688540519166372, 0.542383328616452], [0.1760430392470097, 0.6657732082967815, -0.7250895692580924, 1.8976943534106865]], [[0.9614696463454317, -0.27208693275265083, -0.0393042005598034, -3.8603742675058097], [-0.22957198095128784, -0.7160002385497822, -0.6592726021599536, 0.5549516084461757], [0.15123764319273267, 0.6428937388261838, -0.7508760322846896, 1.9684770026742044]], [[0.8823913626669513, -0.4514627279066479, -0.13254013883291668, -3.7632424190748424], [-0.4263522201831723, -0.6480385792807359, -0.6310861938821708, 1.352375298341812], [0.1990207713673137, 0.6133737890347883, -0.7643057814052345, 1.7354525680872799]], [[0.7625668902411765, -0.635149221902587, -0.12278926591701658, -3.6171046350915943], [-0.5621553015096862, -0.556689170431398, -0.6116196403884986, 1.9498534687663402], [0.3201142841118707, 0.5354275239852175, -0.7815652318691029, 1.18862452949235]], [[0.6564481121858439, -0.7383577419741385, -0.15460828203719662, -3.356898485592633], [-0.6547018671814722, -0.45580835044605483, -0.6029960304784274, 2.4040575658198335], [0.37475504148274746, 0.49705793679459354, -0.7826187234872204, 0.8596592752470988]], [[0.5161759248609767, -0.8210356673178362, -0.2438500514370882, -2.9547264923499394], [-0.7207642469066281, -0.2626055146701528, -0.6415116866012226, 3.145667115879218], [0.4626676074408456, 0.5068912868227066, -0.7273237988462801, 0.5310955419609771]], [[0.4610315253232822, -0.8384677812715943, -0.29055414715260564, -2.7028739759935094], [-0.6994130406505515, -0.14182650560335183, -0.7005045616384612, 3.3148262097590364], [0.5461422261884151, 0.5261720460817286, -0.6518217905962715, 0.2371425629073557]], [[0.48840605703852547, -0.8051933729243969, -0.33633785937166427, -2.6793044632352907], [-0.6933802381235005, -0.1240897380927739, -0.7098067217770374, 3.305351134814785], [0.5297955915519477, 0.5798839272636376, -0.6189113523546179, 0.38927928037405835]], [[0.5367187771163535, -0.7414060383184955, -0.40280273166352765, -2.712140523523858], [-0.7179543083521558, -0.15050426467654235, -0.6796249535094716, 3.341338633372671], [0.44325451538512717, 0.6539614305592092, -0.6130741243370571, 0.8079167754272847]], [[0.4985363423371594, -0.730077352466712, -0.46738482515405144, -2.439897893173179], [-0.7714035514032768, -0.12765820261963368, -0.6234099326978492, 3.469867604092567], [0.3954719664546389, 0.6713348216196752, -0.6268265158952515, 1.0584829467618477]], [[0.49945123516559, -0.711699533353221, -0.49399619220837465, -2.3777862107222005], [-0.7699628258118707, -0.10327611560199801, -0.6296755440812047, 3.5298755546269294], [0.39712178303307033, 0.694850932337987, -0.5995635673301581, 1.063061618482886]], [[0.45145901060106075, -0.7336623771734627, -0.5078624597932943, -2.2618552345515894], [-0.7843162701058164, -0.05488050096216357, -0.6179288948264536, 3.6632479652476677], [0.4254794356892138, 0.6772943576719992, -0.6001996358473256, 0.9397997205680602]], [[0.5103656087675872, -0.7575541087072069, -0.4069873680694762, -2.5935985411230082], [-0.7526247385592617, -0.16452010078512408, -0.63756500793743, 3.3808182510004965], [0.4160323885178806, 0.6317000148951097, -0.654119364401961, 0.9228007410007694]], [[0.540870081261362, -0.7731369806542041, -0.33123822898516464, -2.880999589351609], [-0.7291670629875437, -0.23469892338951476, -0.6428310894892388, 3.173456762329406], [0.41925523187009495, 0.5892161101876825, -0.6906876472363244, 0.8749877543808318]], [[0.5672175856761767, -0.792770449687571, -0.22311258279589596, -3.14296676849707], [-0.6898610614482775, -0.3093885613714082, -0.654500140557652, 2.8917640174632853], [0.4498398897353868, 0.5251606727418732, -0.7223920967232118, 0.6688369287722862]], [[0.6003019762598677, -0.7619933617194358, -0.24290667754100817, -3.176815966568237], [-0.7090157606436155, -0.3665132562987576, -0.6024655045031516, 2.8128419906593347], [0.370046197734085, 0.5338858957237912, -0.7602839350464745, 1.0268015345464945]], [[0.7260484758975129, -0.6182340066487656, -0.30106531462443914, -3.3542298670487334], [-0.6687899776251193, -0.5330460322540269, -0.518248871997259, 2.2001343102727935], [0.15991740516620118, 0.5776232686805934, -0.8004859667749686, 1.8870012558699107]], [[0.7966963916760353, -0.4875944176641282, -0.3571085876216992, -3.3300347343210057], [-0.6043047129870195, -0.6333602538545273, -0.4833948724376426, 1.7350504760765069], [0.009522255618346798, 0.6009213531736981, -0.7992514334975136, 2.49900624017447]], [[0.8334640336904129, -0.4081644251667699, -0.3724775249230303, -3.3545270070303035], [-0.5506990174998232, -0.6690370324313404, -0.49911926566723036, 1.5381145410817696], [-0.04547852976114938, 0.6211209634714853, -0.7823940516562089, 2.7128525237518124]], [[0.8111297913166747, 0.39347321350379394, 0.4327208013183157, -4.171984929667501], [-0.57563091367719, 0.6680379840279135, 0.4715657993483884, 3.661288528096222], [-0.10352542131153522, -0.6315885386475271, 0.7683608559728626, -2.0216924940053467]], [[0.8072950143468877, -0.38802003389615397, -0.44465178860079524, -3.1197812083183076], [-0.5813607272855553, -0.652428542364158, -0.4861653030385759, 1.6501830255311258], [-0.10146164093227042, 0.6509819125012674, -0.7522819185754257, 2.9570461321836876]], [[0.8108879272566689, -0.3694590508483137, -0.4538290197592558, -3.073597272085524], [-0.5797375238596907, -0.6128903461555236, -0.5369076522255919, 1.8007096579592117], [-0.07978203343120871, 0.698473645412356, -0.7111746577360275, 2.9165374098719843]], [[0.8202159582019574, -0.34505327064031127, -0.45627187326337504, -3.0546233871413735], [-0.5685339612521505, -0.5800422568278445, -0.5833696214211015, 1.9183535322935505], [-0.06336337123120503, 0.7378951285341875, -0.6719344182818227, 2.884108402534739]], [[0.8449024552965827, -0.2864890622618552, -0.45173427835192015, -3.0231557493060115], [-0.5325159135721944, -0.5304542267137481, -0.659579498736802, 2.009362458925816], [-0.050662045223010016, 0.7978360298744616, -0.6007420632917087, 2.85501751234243]], [[0.8721405506600178, -0.25730341852150496, -0.41613196309775136, -3.10795379455768], [-0.4877730690073021, -0.5234350357566129, -0.6986366698747433, 1.9230044504273522], [-0.03805644552028942, 0.8122873347280632, -0.5820145984378232, 2.8079267501639267]], [[0.9128783159937478, -0.20099794502960916, -0.35532099048929466, -3.2164882325909616], [-0.4059640276955409, -0.5385855481216253, -0.7383216206855536, 1.6517930990929053], [-0.04296962189306874, 0.8182453381770058, -0.573261003510586, 2.826655091551888]], [[0.9638944931823459, -0.11097719392498866, -0.24205674632466734, -3.356586149840766], [-0.260436761441249, -0.5823484908562884, -0.7700928051133821, 1.0761054771230718], [-0.055498642350447144, 0.8053286891859367, -0.5902250444290874, 2.86883603136355]], [[0.9955548562617883, -0.0391968567281591, -0.08563956209721178, -3.533892633928293], [-0.08833647181377954, -0.7039931264180435, -0.704691667116649, 0.08182530599689998], [-0.03266796475238942, 0.7091243081285403, -0.704326287809958, 2.7281849368152957]], [[0.99156436254143, -0.12179363478676354, 0.044344396074765924, -3.8153582754949418], [-0.061273756891264755, -0.7419417923111769, -0.667658523152748, -0.11753680238830184], [0.11421751903380425, 0.6593092501607322, -0.7431457939047059, 2.1467245317449217]], [[0.9745568140822003, -0.1843787866965531, 0.12744990836504566, -3.933674535233363], [-0.058391242854097775, -0.7578272499521568, -0.649837150359923, -0.1622960044019894], [0.21640119889664505, 0.6258612643759465, -0.7493118168491916, 1.724483164244387]], [[0.962881932407003, -0.2440394510693946, 0.11533919787264102, -4.06162990406087], [-0.12490757094029473, -0.7816487989033155, -0.6110836717625504, 0.06519177125975655], [0.23928326929802451, 0.5739946876886176, -0.7831178809983182, 1.5675821294155816]], [[0.9157059480972468, -0.3874114619693176, 0.10674725174035271, -4.036100001505649], [-0.1539030120621076, -0.5834897524648708, -0.7974042711490168, 0.8034637482030722], [0.37120948196070236, 0.7137591105571122, -0.593928827890335, 1.1033610599684958]], [[0.8855885753059891, -0.46363118168738904, 0.027910619030463935, -3.942112339412421], [-0.23810678910236618, -0.5047634178149527, -0.8297704797226332, 1.3029151924609776], [0.3987957274982641, 0.7281895490893308, -0.5574064480486456, 0.986302245166684]], [[0.8723173992336017, -0.48625734678206983, -0.05114829122059808, -3.8429726108579807], [-0.2850396619373175, -0.4207536747327284, -0.8612309425012348, 1.6692100477024263], [0.39725904157990544, 0.7658460275403713, -0.5056333810021325, 0.9755035152533579]], [[0.879933399433377, -0.4598483063423868, -0.11940162358887417, -3.7702424736288833], [-0.3111446495978144, -0.3678537077515118, -0.8762834340098634, 1.9580833780594833], [0.3590351230566086, 0.8082222372884228, -0.46676610370101024, 1.0639655055900639]], [[0.8755836067960724, -0.46306229348779016, -0.13757419765279041, -3.7365097261754823], [-0.3123434306183085, -0.325441977792361, -0.8924847900329632, 2.0822307327920133], [0.3685036347983114, 0.8244154483271308, -0.429586126056241, 0.9853619022217027]], [[0.8735385381067831, -0.46731597360023325, -0.13618444573566849, -3.7275772007770676], [-0.30793914009479106, -0.31388731346036386, -0.8981359810442493, 2.0983186693199554], [0.3769667206000362, 0.8264929130166221, -0.4180975439934475, 0.9218421852520811]], [[0.8731400839452521, -0.45945538573721256, -0.16287155161398303, -3.6898214843282457], [-0.3302781585845017, -0.3118476251235439, -0.8908801247456563, 2.1789960494976772], [0.35852856478962436, 0.8316560630584463, -0.4240347403315174, 0.9974712620600618]], [[0.8728481004234916, -0.4513764958525641, -0.18546011047921557, -3.6218683372811853], [-0.33497825723960617, -0.27783834627824544, -0.900330728407115, 2.261745446038352], [0.35486019890066417, 0.8479770706388411, -0.3937119847133829, 1.007974409653855]], [[0.8798447553915167, -0.43127190956287126, -0.19969413219230117, -3.611754872293073], [-0.34133396327060467, -0.28104511500409907, -0.8969418982578047, 2.279678634784277], [0.33070278488096105, 0.8573320146561233, -0.39448382060313897, 1.1140900571005734]], [[0.8846834443898672, -0.4204106367983048, -0.2014698480897961, -3.6039822808276902], [-0.3446069792789146, -0.2986768453776223, -0.8899652644162771, 2.2115284828097583], [0.3139764848754496, 0.8567654512771369, -0.4091108999319632, 1.2056567564555687]], [[0.8935638018654953, -0.4156507595734979, -0.1696413217988354, -3.656995414883577], [-0.3106668115978711, -0.2997216493068857, -0.9020271975436068, 2.136524034579575], [0.32408311305480675, 0.858720780581636, -0.39694931267098943, 1.1656900423089787]], [[0.8881406361246451, -0.429980728441986, -0.16224297714418684, -3.6827248386569207], [-0.30402513261198716, -0.284968621259135, -0.9090443353533043, 2.1222625664628008], [0.34463738799551863, 0.8566851569078143, -0.38381716054582504, 1.088133165813071]], [[0.9002782044057008, -0.4078292997626897, -0.1522314584017417, -3.706676023743312], [-0.3168337321119234, -0.3740604539754556, -0.871604935144189, 1.9652634127848256], [0.29852226193045805, 0.8329189870730227, -0.4659725529526098, 1.3066590085333096]], [[0.8784092537516199, -0.44767041793690643, -0.1672972797977249, -3.674752489272335], [-0.3928633623418142, -0.4770718952689474, -0.7861684204252796, 1.8859292661589406], [0.2721315149941424, 0.7563025873608328, -0.5949376731207252, 1.4695349700581029]], [[0.8925820632333678, -0.41261227308713505, -0.18179211339310553, -3.6550622729485007], [-0.39432188397074924, -0.5188275221594947, -0.7585039578483411, 1.7555296047348488], [0.21864929045350973, 0.7487116363111411, -0.62579818906455, 1.7050784047777618]], [[0.8924493899497169, -0.36587423078097675, -0.2639510061144036, -3.4511086447977344], [-0.41000286442821704, -0.41364829976922535, -0.8128915888719024, 2.0909368224996827], [0.18823319988523393, 0.833685271159601, -0.519169655423454, 1.8276441753271773]], [[0.8783724769624874, -0.39442060557599906, -0.26998921758441796, -3.4358764915937057], [-0.4364389958768781, -0.43151563465279075, -0.7895031728423778, 2.087587193765928], [0.1948917509613128, 0.8113116805194298, -0.5511719899087509, 1.8255100433663065]], [[0.7661506968813131, -0.5882815343552205, -0.2587236865943018, -3.4059361719889534], [-0.591508515822884, -0.4881047668764786, -0.6417720874745703, 2.274047644874243], [0.2512584035953581, 0.6447313959232372, -0.7219353445659701, 1.5778978967718225]], [[0.7359367190506098, -0.6479291412404486, -0.19643058184620482, -3.5061296751696767], [-0.6149457431394412, -0.5182966680605574, -0.5943149811943199, 2.1885371011410304], [0.2832646793154845, 0.5581723674714999, -0.7798748166491573, 1.3963151772745603]], [[0.7447227331924399, -0.6377444813072747, -0.19664696089311307, -3.5346359559296876], [-0.6130433794442699, -0.5372713497431103, -0.5792385619628285, 2.0769902182367956], [0.26375341815023223, 0.5519252424987752, -0.7910832200892248, 1.4973314716766173]], [[0.7506209084253602, -0.6214858875210637, -0.22432909630015208, -3.523921151320431], [-0.6209484490298013, -0.547489031575004, -0.560962373027415, 2.0797633553702526], [0.22581247857939896, 0.5603668904541202, -0.7968674121838641, 1.6572770931667602]], [[0.6541338404863013, -0.6694599612143793, -0.3520401668297013, -3.221751743003459], [-0.7397511265455731, -0.46918270646258303, -0.4823233964167624, 2.5699337500992256], [0.157725044001255, 0.5759261656560565, -0.8021420461536191, 1.917476122673091]], [[0.5994109384565813, -0.6408719210770764, -0.47957242167745495, -2.7965223442856946], [-0.7953316606077347, -0.40926356247140644, -0.44715868108329987, 2.865934222067835], [0.09029992521339125, 0.6494509351815507, -0.7550227852841694, 2.2612813353471766]], [[0.6742535503974085, -0.4812343484768877, -0.5601746617105372, -2.645212203026541], [-0.7384977908722248, -0.4375410938014982, -0.5130095555755587, 2.7074850909999424], [0.0017783850351089092, 0.7595862644104447, -0.6504041391824416, 2.6711813569991985]], [[0.6698919072533192, -0.45795437329872235, -0.5843993707842993, -2.555197658914733], [-0.7418832657131009, -0.4438562916892159, -0.502594083115552, 2.7071165354870774], [-0.029224179225001645, 0.7702398225906475, -0.637084423796527, 2.7685765396311384]], [[0.6267874257286034, -0.4808114276442899, -0.6131540540477327, -2.420509755616147], [-0.774246095674793, -0.4728216745474225, -0.42069305605216567, 2.649045147590897], [-0.08763849770990867, 0.7384172500184641, -0.6686250508276813, 2.9535979349548653]], [[0.5941421132483432, -0.5149931711068401, -0.6178812045839503, -2.3654421579150684], [-0.7954069109525792, -0.4904598519867044, -0.35605755096340186, 2.593684343433656], [-0.11967871687843315, 0.703015766041204, -0.701031980314615, 3.0328084756422844]], [[0.6003528500864301, -0.5229237152564485, -0.6050844927904636, -2.4250507343567294], [-0.7791886972836386, -0.5528695399774926, -0.2952968773802084, 2.3174468653185545], [-0.18011504495329148, 0.6487573196407639, -0.739373052520854, 3.1854193969040123]], [[0.6238607915584595, -0.5290345700153644, -0.5752565831737269, -2.51552559066359], [-0.7595302404479339, -0.5838468440595102, -0.2867693786422344, 2.127201965713544], [-0.18415082568686997, 0.6158289424916695, -0.7660569084529134, 3.1693179493073806]], [[0.6618650894488096, -0.5645072655110536, -0.4932201846580816, -2.8616407591736284], [-0.7264941037082818, -0.6452207587436389, -0.23642438487470613, 1.8086696483837108], [-0.18477261876701181, 0.5148026026269834, -0.8371602950943533, 3.019540788409166]], [[0.7693328055395412, -0.5049723233402044, -0.39131826814123405, -3.2058093484875907], [-0.6238233457937938, -0.7258750302624359, -0.2897410459084879, 1.3364585728561542], [-0.1377369506098323, 0.4670207630308356, -0.8734529977822508, 2.7660348934064363]], [[0.9021704856757106, -0.32218923299435115, -0.28684928606877197, -3.2928102595418056], [-0.4168977285832159, -0.8220438328250236, -0.38786624088273064, 0.5523580208403837], [-0.11083635990868566, 0.4695082907221734, -0.8759436433157877, 2.642660832124443]], [[0.9755478882970062, -0.0755228744745853, -0.20640400449203464, -3.029335115967398], [-0.1783807893196084, -0.820694536248073, -0.5428082278063533, -0.01984141351636431], [-0.1284002010939442, 0.5663539296267455, -0.8140986517341606, 2.769469483855669]], [[0.9858531962350721, 0.09652485869243066, -0.1370271036236946, -2.8139707509371004], [0.0026336675357689285, -0.8263500188134574, -0.5631506993712333, -0.5351259959185287], [-0.16759039133674544, 0.5548230331028124, -0.8149140216428918, 2.82811878510988]], [[0.9749404754311135, 0.18416910425601676, -0.12479106700277354, -2.53491933373891], [0.089970767396197, -0.8394383974608405, -0.5359556305166642, -0.7909391392626804], [-0.20346088169545934, 0.5112972891634691, -0.8349723059561879, 2.7822257533164083]], [[0.9574542491925639, 0.2545578972194596, -0.13594718704817252, -2.3371065164004845], [0.12376868196866188, -0.7877728468751538, -0.6034030618831461, -0.6240464040172415], [-0.260696517174365, 0.5609048214175223, -0.7857627550627057, 2.872005121490127]], [[0.9548040071461116, 0.26414863590871684, -0.13628942029846813, -2.3018724016252117], [0.12121388635172167, -0.7646914243037463, -0.632893529238386, -0.2953714214462148], [-0.27139731334934075, 0.5877691075106551, -0.7621489188884858, 2.8479387245724594]], [[0.9414639531992194, 0.32926730846871466, -0.0723095042180907, -2.2379950124087524], [0.21423758773918877, -0.7499913967698149, -0.6257916272777668, -0.40339167607336907], [-0.26028423084426605, 0.5736688455415984, -0.7766312991560271, 2.678675170521997]], [[0.9167319287694184, 0.39697313895808867, -0.04488761210472042, -2.1017276518319012], [0.2979784171351147, -0.7542765486729726, -0.5850433753523242, -0.5278974067683903], [-0.2661041782767671, 0.5229524022965674, -0.8097588228824035, 2.514138408678707]], [[0.9066505305196552, 0.41971706213572696, 0.042689615371674275, -2.149243752282925], [0.3704305169871865, -0.7435640731642377, -0.5566809689436256, -0.5420109227875873], [-0.20190603654431166, 0.5205286321150475, -0.8296287697249924, 2.2459555768993567]], [[0.8792267698429437, 0.47607731110361623, 0.01762614659797547, -1.9991345619605307], [0.3960227169221708, -0.7098136536589624, -0.5825208878322704, -0.379423060563464], [-0.26481369842424113, 0.5191483130394098, -0.8126245961052434, 2.2630168904162122]], [[0.8422124766627673, 0.5391309069379631, 0.00400116705695458, -1.8873338595370655], [0.45018417155952933, -0.6991404672822005, -0.5554609065323021, -0.39052276983616657], [-0.2966687645014697, 0.46961736785672226, -0.8315330251869107, 2.2261988540564284]], [[0.8421432363204719, 0.5391836516106654, 0.00870398503392339, -1.9267966260403997], [0.45498023658895226, -0.7017779227329706, -0.5481794701355185, -0.25973859466975197], [-0.2894611439090629, 0.46560577423436805, -0.8363154364033175, 2.148310755302379]], [[0.8432213174415671, 0.5375254777629404, -0.006646094178598322, -1.8973358724656813], [0.44501240393533675, -0.7049240706592789, -0.5523097092654126, -0.10573283660801829], [-0.3015655321083641, 0.46276172633535134, -0.8336125085933659, 2.0748578934823616]], [[0.8658862414147761, 0.5001152615378106, -0.0112134787447698, -1.8825241380145956], [0.4082583447890089, -0.7194462387225847, -0.5618916563698596, 0.1180208847393315], [-0.2890780877872462, 0.4819562581447542, -0.8271348284266454, 1.9404826230801897]], [[0.8557757457074191, 0.517145807026114, 0.014425232553400308, -1.807693352274407], [0.4275393922339786, -0.6912442975402298, -0.5825730762799757, 0.25901539357377135], [-0.2913038639412643, 0.5047192639412761, -0.8126503082257865, 1.848882022603832]], [[0.8730765478203262, 0.4875442082607053, 0.006163330072597367, -1.7856560863534217], [0.4116701847232014, -0.7303127337389403, -0.5451339009351014, 0.36631524213904393], [-0.2612757176932198, 0.4784808835577422, -0.8383263346774306, 1.7431864102418406]], [[0.8914253509467202, 0.4526004405572941, -0.022664617730293088, -1.772179225334637], [0.37460053089378165, -0.7640993148846938, -0.52519204034985, 0.5407590179309807], [-0.2550201677193667, 0.45967932104901665, -0.8506818652447584, 1.637228939707142]], [[0.9109950041540552, 0.4006796613864459, -0.09769294425697247, -1.718799973036046], [0.31976802843340474, -0.8358337760411693, -0.44624018960709255, 0.6716967451880383], [-0.260454430559678, 0.37528350320791304, -0.8895649396316327, 1.6691711702612062]], [[0.9334496664155011, 0.3450942760275993, -0.09788595875699951, -1.7069454380703921], [0.28242992903220215, -0.8752941566538642, -0.39254741689949463, 0.780788658316845], [-0.2211448743598981, 0.33877733097211143, -0.9145079904318809, 1.599011058892757]], [[0.9581322074951744, 0.2733332064093924, -0.08527386020571989, -1.686501816642781], [0.23238962018004927, -0.9163367793526578, -0.3260705004108309, 0.8642279167989468], [-0.16726546981668575, 0.29260188837319173, -0.9414915812302542, 1.5527256931111715]], [[0.9714258500101478, 0.2232623563281233, -0.08053408085323792, -1.607542536670075], [0.18720340115907969, -0.9293343897843369, -0.3182647931497385, 0.9577923121523755], [-0.14589963854147975, 0.2940943933688421, -0.9445749219953266, 1.5162111272450856]], [[0.9669953101968491, 0.24245092663345708, -0.07834295266249286, -1.5401790684365202], [0.20670124661105033, -0.9262515584342106, -0.31517081899762533, 0.9605577903246001], [-0.14897873910977144, 0.2885751179030759, -0.9457958218455442, 1.5179174754704776]], [[0.9960670270163954, 0.08304149021845877, -0.03089641715502309, -1.538828274851766], [0.0711304496625646, -0.9573664529732407, -0.2799820241591179, 1.1862260771186686], [-0.05282931782183972, 0.2766831863770062, -0.959507935118176, 1.3865078956266184]], [[0.9797827097644961, -0.1760400728078926, 0.09505648011752217, -1.4395936966806333], [-0.13855351807350072, -0.9398070597389091, -0.3123549472865163, 1.4866331868458718], [0.1443217387506024, 0.2928695669247628, -0.9451976790562409, 1.0770228802098005]], [[0.9088285492413611, -0.37160883407855694, 0.18957199824504223, -1.2110556130014352], [-0.2585313392353147, -0.8583530286644164, -0.44316094685319274, 1.7073161464456539], [0.3274022216128617, 0.35374701782120965, -0.8761682673240132, 0.691126567201295]], [[0.862470803663901, -0.43922276144820094, 0.2514507479669954, -1.1131952889316006], [-0.2652469351774207, -0.8154128337221311, -0.5145347160107171, 1.7511349815950552], [0.4310315257685101, 0.3770746297844247, -0.819772253352484, 0.49246104603256174]], [[0.9519160096817425, -0.20712946204485616, 0.22572836876342606, -1.487624366584718], [-0.07896364785462003, -0.8777989737364065, -0.4724761412228166, 1.6298669545187505], [0.29600785940424, 0.431933267600818, -0.8519465942831157, 0.6831028412357227]], [[0.9493043381646409, -0.2694082060807597, 0.16198917259539097, -1.3204675198688882], [-0.12301406962609428, -0.7925699609387332, -0.597244000130266, 1.7410937004212919], [0.2892901868640188, 0.5470393729101423, -0.7855311020387794, 0.5288405721992647]], [[0.9543127910601077, -0.29879154946162234, 0.003272123070733088, -1.197941572573363], [-0.23803224237177556, -0.766781616175611, -0.5961431075560482, 1.929801572532204], [0.18063152662404047, 0.5681281220512153, -0.8028715267862149, 0.6852347264137699]], [[0.905401035549328, -0.42172869611743924, -0.04892720814934294, -0.9088910983341332], [-0.3790003201861336, -0.7509266010483963, -0.540803103852697, 1.9635821229939956], [0.19133144572968847, 0.5081871178109372, -0.8397250330709451, 0.7716294020106524]], [[0.927114861620317, -0.3703371946871331, -0.057518654313225365, -1.0054620463567372], [-0.34951253450754327, -0.7989763778205158, -0.48936462469913133, 1.9094949740024796], [0.1352738762099069, 0.4738007069602923, -0.8701803654984833, 0.9041211413264223]], [[0.9249200869941262, -0.3602084919973277, -0.12154289353059336, -0.9835156085974982], [-0.37154377390354626, -0.7888199161796513, -0.48961042055070586, 1.9666621744251191], [0.08048637616571225, 0.49800901812250314, -0.8634286080043749, 0.9506714833977566]], [[0.9132408341546864, -0.37534815793514453, -0.15844538228407418, -0.9345989469363665], [-0.40597204657187724, -0.8056003159174739, -0.4315029877021807, 1.9788918710034744], [0.03432020155380978, 0.4583905445451079, -0.8880879643576676, 1.074859075446334]], [[0.9047769428848044, -0.3582689999005285, -0.23026508057954093, -0.8605221595597488], [-0.42112822654726145, -0.8332148388306605, -0.3583351073472363, 1.9399280871774685], [-0.06347992146486832, 0.421184467974155, -0.9047507631984306, 1.2732743895363843]], [[0.9082330715959372, -0.33170676529833143, -0.2551143067621393, -0.8167650774549652], [-0.40738077798944217, -0.8402493003747713, -0.3578016418973283, 1.8984889119634503], [-0.09567439252028767, 0.42889594900747763, -0.8982731630973113, 1.3115412067331973]], [[0.9421899035606517, -0.19817486948611077, -0.2701942018854824, -0.9225326386283536], [-0.2949884124335814, -0.8730351545980041, -0.3883187548470385, 1.7820133281053145], [-0.15893401825375555, 0.44557416884308054, -0.881024198249692, 1.3790050629272665]], [[0.951116847944771, -0.15933281168821894, -0.2645558479322086, -0.9847754141536743], [-0.2683621649007185, -0.8503337332080408, -0.4526745968333943, 1.8029214710524915], [-0.15283484552091806, 0.5015432157730808, -0.8515256383143106, 1.291991949897493]], [[0.9461296135655731, -0.2088885927578934, -0.24739504875782442, -0.9478554484565817], [-0.3080578102339856, -0.8159895066635359, -0.4891436502387018, 1.8853034690750428], [-0.09969523503207685, 0.5390052697614622, -0.8363815990809892, 1.160294550544598]], [[0.9652953348891244, -0.1394119001655713, -0.22083758406013687, -1.0461473337212954], [-0.22878980022196266, -0.8591861084279175, -0.45766194772876323, 1.7513555704791781], [-0.12593706267690885, 0.49230432983746497, -0.8612643630544554, 1.2754335426227061]], [[0.9512893868710759, -0.03323688299199774, -0.3065025481711835, -1.0072012003764306], [-0.17815835220683418, -0.8706334945151676, -0.4585378062572962, 1.7070378696574307], [-0.25161101717809986, 0.4908081375010854, -0.8341458314931017, 1.4318229572077474]], [[0.9294262630944613, -0.07441464445343068, -0.3614267313870608, -0.8251129127735027], [-0.2336762477154726, -0.8767331251157833, -0.42039795263336954, 1.678850539542166], [-0.2855910235351982, 0.4751857405431914, -0.83224772709845, 1.4859035663435378]], [[0.9177582663173391, -0.09204829063910182, -0.3863248332641995, -0.7596395873147693], [-0.25503423492781574, -0.8822830029731411, -0.3956440846006422, 1.7046393564513922], [-0.3044294723264746, 0.4616316874469471, -0.8331979845894423, 1.5221464848679787]], [[0.9127595647871003, -0.09236273354234499, -0.39791846192687397, -0.7409499812791424], [-0.24987078720201578, -0.8968540928856698, -0.364989487214724, 1.6941264185869236], [-0.3231633744605168, 0.43257584482586176, -0.8416909004382093, 1.5978537886893864]], [[0.9144696648906531, -0.06128573104121694, -0.39998661373291006, -0.7962277758580882], [-0.24688112274837737, -0.8676802352303413, -0.4314866401421024, 1.7655529484315777], [-0.32061650491713184, 0.4933305874982446, -0.8085975440312441, 1.4985621104375662]], [[0.9242662417880542, -0.08448734354526422, -0.37228188657474437, -0.8294511408273859], [-0.25953518412169757, -0.8542263139158499, -0.4504873947366965, 1.8240946285401822], [-0.2799525004244521, 0.5129905392835273, -0.8114599830624384, 1.4279970434413607]], [[0.9577314503322362, -0.07603285827703761, -0.2774337281347301, -0.9991889255611108], [-0.21833416642009823, -0.8200770432438077, -0.5289648711569941, 1.8064107863481866], [-0.1872983203826246, 0.5671795549971088, -0.8020141467425184, 1.211266969866132]], [[0.9621360593468398, 0.22139489287016015, -0.1589921529999035, -1.3499722887149321], [0.07490305893121027, -0.7756089616739192, -0.6267537557397262, 1.5358245914233162], [-0.26207581931052326, 0.5911133901225003, -0.7628245046867613, 1.244032890664365]], [[0.9890571955692258, 0.11418814068057045, -0.09341805189925864, -1.3942258881004617], [0.034265588143804586, -0.7936845509492789, -0.6073637320861369, 1.597073423254011], [-0.14349819985594764, 0.5975164450559967, -0.7889121399279813, 1.0811224942577187]], [[0.991864452709411, 0.03990038776647747, -0.12088368999805332, -1.343414505627705], [-0.045093277294703644, -0.7779058125458149, -0.6267608340908505, 1.8037480986848127], [-0.11904412540853784, 0.6271128334387045, -0.7697778837705043, 0.9794525387237403]], [[0.9869830906401421, 0.033471113804566396, -0.15730245812165383, -1.3126314657923357], [-0.0721224306193483, -0.7821145247954258, -0.6189468677565002, 1.8015996248011363], [-0.1437453783326274, 0.6222351281024778, -0.7695197928340133, 0.9892383925452869]], [[0.9867272503414535, -0.04142383263204856, -0.15701401059672057, -1.3017702293351985], [-0.12745912273847138, -0.7966766134584362, -0.5908134609156571, 1.8802160766885554], [-0.10061563230599083, 0.6029846098023312, -0.7913823695769298, 0.9590488633725643]], [[0.977094350859918, -0.08141470539734783, -0.1966170777493602, -1.2278720628494302], [-0.18244422839788807, -0.7960934768531831, -0.577017573073914, 1.9432127754606872], [-0.10954785731329544, 0.599672262037251, -0.7927120820961369, 0.9728916971391829]], [[0.9632074053341706, -0.1295170712608937, -0.23549272294789916, -1.1241268941151992], [-0.2333474885906501, -0.8377495768808018, -0.49368471315655904, 1.9813460833207768], [-0.13334333083379848, 0.5304724070939394, -0.8371490795755019, 1.1561191812933296]], [[0.7977498093546321, -0.5617747992043339, -0.21909887414949947, -0.5271074533353023], [-0.6029409046818098, -0.7385958157444436, -0.3015600875883284, 2.2241934618785226], [0.007583345971835784, 0.3726731757770204, -0.9279316768599621, 1.2058964777162282]], [[0.6858338962224365, -0.690045361766213, -0.23123422215859074, -0.23548112884959488], [-0.7258161794739588, -0.6253624328873525, -0.286553138435155, 2.3047474618560657], [0.053129468340819344, 0.36436139509853055, -0.9297408420391533, 1.1147626009882026]], [[0.6967103898166778, -0.6811446744677425, -0.22502569890065, -0.24265262857716083], [-0.7166520416950115, -0.6470392585572571, -0.26028839586129565, 2.277177858003393], [0.03169359329366793, 0.34261075629627874, -0.9389426957031124, 1.1918613444614785]], [[0.7075022358830111, -0.6694549435610577, -0.22643026467811533, -0.29821489889067376], [-0.7064409457595884, -0.6610897663537219, -0.2527874818433077, 2.281628961776783], [0.019539098618886835, 0.3388073189351779, -0.9406528712873411, 1.20159047673046]], [[0.6974125560006903, -0.6818421816093373, -0.2206965475733672, -0.27334322745723855], [-0.7163779328461793, -0.6544612810101618, -0.24183277071061715, 2.2560703142802154], [0.020454438726571905, 0.32675934728291767, -0.9448862073814093, 1.1980908435222601]], [[0.6812845981114248, -0.7184198946758827, -0.14044269760314318, -0.2876791736441758], [-0.7295234206101538, -0.6505215813123518, -0.2112279598635972, 2.2687022396831624], [0.06038936294923789, 0.24636259290072945, -0.9672944730855305, 1.2312071903144963]], [[0.6703842299158689, -0.7180245224071456, -0.18715172855760043, -0.24660538691110154], [-0.7410727671908365, -0.6351865595784176, -0.21759868625304057, 2.277631177900231], [0.03736493019160568, 0.28456777708117864, -0.9579274723270299, 1.2236299775804511]], [[0.6589856088510012, -0.7317875410874706, -0.17385327732438327, -0.23077585688509358], [-0.7509265236315659, -0.6268849144365415, -0.20766477832916488, 2.2929585278801863], [0.0429805006239659, 0.26739913754730654, -0.9626268112851779, 1.2406302432955376]], [[0.6601022099916398, -0.7231965541135887, -0.20310543193716954, -0.20516632518487574], [-0.7507324921648064, -0.6258524396791567, -0.21144608995123715, 2.2819765808478008], [0.02580305354356019, 0.2920538783613035, -0.9560537299555656, 1.2271608652208612]], [[0.6951207124269976, -0.6863824488628997, -0.2137436058644849, -0.19644252153552108], [-0.7187344210967855, -0.6697841172551718, -0.18657456472782738, 2.221822920904284], [-0.015100565739465721, 0.2833167311785144, -0.9589075047931729, 1.3096102739230229]], [[0.7538797243380202, -0.27941432149209133, -0.5946368624439162, -0.19797045915587547], [-0.5853065460696769, -0.6967673220587092, -0.41464629027536276, 2.2256533476800717], [-0.2984654223859373, 0.6606382791333314, -0.6888217881162986, 1.0521972210765123]], [[0.6936568651503177, -0.3473692458860792, -0.631010903584376, 0.08809458249782368], [-0.5819511969688036, -0.7865002877349836, -0.20676097731284956, 2.1556052171410243], [-0.4244678524651905, 0.5106387219995411, -0.7477132724636261, 1.504862599659835]], [[0.6709789544163565, -0.35845238125228773, -0.6490755989134839, 0.1648275234161708], [-0.6201547755218577, -0.7511408387407948, -0.2262642145218949, 2.196063601290849], [-0.40644224328650613, 0.554345858422646, -0.7262956506285115, 1.382596640007713]], [[0.6540122952750679, -0.33867850945675126, -0.6764353515755889, 0.221007133380974], [-0.608644877307534, -0.7665966619263076, -0.2046484088644209, 2.176624269207178], [-0.4492430644498969, 0.5455514871720134, -0.7074985822516325, 1.4460614281340565]], [[0.6862701433341277, -0.31410502566492043, -0.6560269226336641, 0.11966381878028406], [-0.5751808448752158, -0.7864300141989916, -0.22515512087360423, 2.1759384656619973], [-0.4451969070611213, 0.53185135669566, -0.7203706326081025, 1.4692269331935803]], [[0.7190838346842474, -0.24742448212921428, -0.6493839883604215, -0.02237970723400944], [-0.5226073510098351, -0.8084701295263761, -0.27066142380118857, 2.1509600133105304], [-0.4580392945657401, 0.5340011004732985, -0.7106636541480255, 1.487503312987737]], [[0.7680464237335597, -0.24156522791599874, -0.593085939516341, -0.1866385411439713], [-0.5007441949634646, -0.8038535612868665, -0.321052492930384, 2.1637505603656355], [-0.3991991260016499, 0.5435675603531857, -0.7383592385358263, 1.4112819180938856]], [[0.8177409792937308, -0.1982450025763013, -0.5403689570443999, -0.3740457887307536], [-0.45686601027239493, -0.7945963801593942, -0.39986252799602495, 2.1763711909015795], [-0.35010446932524897, 0.5738601847062664, -0.740345425438272, 1.3019232082919314]], [[0.8326067389224994, -0.1622699828534812, -0.5295606395546897, -0.4490101506066518], [-0.4409283788657438, -0.7728127700346272, -0.45644560155864455, 2.211428319131845], [-0.3351838048171004, 0.6135379981192174, -0.7149985607343519, 1.2161927820877172]], [[0.828540660218315, -0.13923091382218591, -0.5423422600178209, -0.4530476838634811], [-0.41748174558119167, -0.7990762118213427, -0.4326502049089236, 2.1997643493563923], [-0.3731345152508407, 0.5848862798335173, -0.7201934970485561, 1.3332761707900667]], [[0.8401474998325649, -0.13055012570388813, -0.5264112871166322, -0.4917947010776487], [-0.40557603085492977, -0.7956298325439325, -0.449979169253505, 2.1958288285556438], [-0.360083687107666, 0.5915486744510653, -0.7213944164145821, 1.2973207999803278]], [[0.8614507761753654, -0.10594925789511803, -0.4966662007609681, -0.5988498499278433], [-0.38097975559510733, -0.7814932795447412, -0.49408772485571567, 2.177686496009474], [-0.3357930702881655, 0.6148520218539407, -0.7135825146180143, 1.2266043302921474]], [[0.8749649728124839, -0.09868312696788376, -0.4740231395228401, -0.6569141809938254], [-0.36009596609513606, -0.7870918617159214, -0.500816629538771, 2.1584963762364726], [-0.3236776043430562, 0.6088908290263573, -0.7242132053299875, 1.2287097283897248]], [[0.8735087988646308, -0.05924771685296143, -0.4831894932154271, -0.700384560202614], [-0.3129931176896416, -0.8285680483726199, -0.4642308665900052, 2.0850565597128035], [-0.37285075644953186, 0.5567447325872965, -0.7423056083253801, 1.39931109175657]], [[0.8972141597625014, -0.04373142003991408, -0.43942498156450005, -0.7934806296793401], [-0.28232646348636775, -0.821956330247952, -0.4946509468105776, 2.057751681435245], [-0.33955635693791575, 0.5678691346310458, -0.7498173953679912, 1.3211999013095457]], [[0.8992402777593593, 0.27612405289427633, -0.33929696472044835, -1.1555039061066366], [-0.02426298163313237, -0.7429400563935826, -0.6689180669769432, 1.7709358677544544], [-0.43678167381145994, 0.60975042436979, -0.6613820298460795, 1.3151191290609299]], [[0.3457599193798005, 0.9338599735619496, -0.09140912388459133, -1.2804835554547407], [0.4829336151174205, -0.260632617007083, -0.8359699530136584, 0.7185316253918499], [-0.804503077396285, 0.24490036490563627, -0.5411086856898465, 1.8387232171889403]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"89f8409e-483a-432f-9f42-6c96ecd07b76\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, false, true, true, false, false, false, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, false, false, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, false, true, false, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7705850411688551, 0.3681605686997442, -0.5202465665254075, 1.28381283756883], [0.5531661069395781, 0.7917761084966172, -0.25903253105983504, -0.3707722131464893], [0.3165532379554906, -0.4873893614643575, -0.8137847736786802, 0.323942661545438]], [[-0.9893697265866512, 0.10476630695344263, -0.10085417711325588, 2.5334004939877315], [0.14149150849456613, 0.8536579429394107, -0.5012467151816414, 0.5244401052187571], [0.033581202149224346, -0.5101883352094504, -0.8594068684147355, 1.36736969437285]], [[-0.9470030502102511, -0.302803514577557, -0.10721592443270676, 2.5021629413336703], [-0.1913628861707155, 0.7998862512113146, -0.5688253079105432, 1.584664993104371], [0.2580028462806068, -0.5181621528851656, -0.8154400742105553, 0.6514623050865558]], [[-0.8604435442369168, -0.4991330119073789, -0.10248484573477817, 2.179742142029969], [-0.3240356370856985, 0.6912215024017775, -0.6459208469432575, 2.1108185574065965], [0.39324014683076103, -0.5225696805610692, -0.7564939628832629, 0.12712488421862042]], [[-0.8400963009456072, -0.5296320117277908, -0.11716713400387105, 2.0482729261655943], [-0.32760519083098766, 0.6675566077353986, -0.6686127536993288, 2.2828107733561454], [0.4323344123223365, -0.5233145398534044, -0.7343220331025888, -0.08155524172845341]], [[-0.8115927518665356, -0.5771496298700062, -0.09063944979212435, 1.871769094589925], [-0.3846365373998313, 0.6446368175400109, -0.6606800341836851, 2.527149496402027], [0.43974076364918946, -0.5013398829265452, -0.7451754038965763, -0.1755666638196927]], [[-0.7844571704011611, -0.6165761520310393, -0.06678919488061202, 1.7367729952362232], [-0.4468221267043388, 0.6365731158604214, -0.6285894170690169, 2.763399609632581], [0.4300894498748087, -0.4632585853606508, -0.7748642127470033, -0.22865347105719616]], [[-0.7583521594021667, -0.6500521890607596, -0.04831308132778481, 1.587166199097605], [-0.5232622346429852, 0.6512837373887383, -0.5495690377099012, 3.0129716530370656], [0.3887140801752621, -0.39148645558980943, -0.8340501897147605, -0.06933813749491631]], [[-0.7811500365130808, -0.623201826382989, -0.03773730314316884, 1.626621855953602], [-0.5235412439415827, 0.6867646043476322, -0.5042409583793649, 3.0933571089487097], [0.3401605302613939, -0.37413080841885654, -0.8627380551732606, 0.05368956150876804]], [[-0.7520766958828149, -0.6584056648226438, -0.02970898920260376, 1.4241353549022773], [-0.5693337465856779, 0.6717195395395771, -0.47397462505861493, 3.271361877494046], [0.33202368666813986, -0.33955093981638734, -0.8800371757835603, 0.06018536632688624]], [[-0.6312841067252359, -0.7754982106731048, -0.00910504469696255, 0.8633376457955823], [-0.6888154049833239, 0.5660387575909152, -0.4529166178918513, 3.5594554820898723], [0.3563898349473234, -0.2796473674965429, -0.8915063855062806, 0.05231924936766451]], [[-0.4357761596364065, -0.8997407281955171, -0.02378572510446933, 0.006903269712932059], [-0.8181152758382318, 0.40698222977530973, -0.4062669812909364, 3.766591400579855], [0.3752153170283413, -0.15758199983918475, -0.9134447871623136, 0.23993382537131094]], [[-0.39897468526412316, -0.9159775357808524, -0.04247769371365409, -0.11352475086958715], [-0.8341531849149002, 0.38179227470361454, -0.39802402323599506, 3.7537497643749194], [0.38079871929238707, -0.12336860589905693, -0.9163910314182483, 0.17219923174607227]], [[-0.47447826419729056, -0.880262243497526, -0.002959641368191379, 0.14115169852140166], [-0.8143315314477473, 0.44021212526699194, -0.3782557886640789, 3.831708903809178], [0.3342671591620878, -0.17706402074001387, -0.925696385898253, 0.22617770530849135]], [[-0.4329157304977843, -0.901323768616172, -0.014122125021086951, 0.04490492158082359], [-0.8285380852963796, 0.4040299850687975, -0.38766533553919524, 3.8647152719772717], [0.3551177431514497, -0.15612570349833196, -0.9216920056104272, 0.15797781152679458]], [[-0.30588931346291, -0.9520471986927064, -0.006152996876414685, -0.4118882247625653], [-0.880802901191114, 0.2854402724485921, -0.37776990366860963, 3.9112359956764067], [0.36141109164289226, -0.11013619898037455, -0.9258790636533746, 0.2031645519832591]], [[-0.2886489009813916, -0.9556296290258293, 0.05876924442419615, -0.4561297121726881], [-0.8977936522073837, 0.2488320152632839, -0.3633857265167971, 3.944133192947284], [0.332638497498955, -0.15765354518046548, -0.929783302535418, 0.2134843420298526]], [[-0.2509932748220324, -0.9627014279140366, 0.1010363137014926, -0.6319247310785338], [-0.9212987227210409, 0.2055562959375924, -0.33008373591104967, 3.910199561011159], [0.2970034334930999, -0.17593342460343286, -0.9385288437765871, 0.2936911392730249]], [[-0.14142980479128398, -0.9886765154268049, 0.05016331488458617, -1.0955791713785292], [-0.9489339758727804, 0.1209614991478064, -0.2913633902160542, 3.7941986200148423], [0.28199631159108585, -0.08880914123797179, -0.9552962978477396, 0.4693772200070968]], [[-0.2042191982243795, -0.9738498998010248, 0.09955346168830784, -0.8000234562012514], [-0.955241688668728, 0.17601078535079984, -0.2377677851802279, 3.8063441711365806], [0.2140276507975267, -0.14365436330904935, -0.9662068042589866, 0.6348981714152077]], [[-0.23655114883124448, -0.9666374922332613, 0.09826246788886779, -0.6714461465553454], [-0.9599472235088308, 0.21688269426050147, -0.17737876143437614, 3.8445620467854678], [0.15014953234794354, -0.1362859330206091, -0.9792248272977953, 0.8606762765525047]], [[-0.28395628432974424, -0.9538120220702617, 0.09803802906976494, -0.4728996718268817], [-0.9478033078183636, 0.2637506265695468, -0.1791772772221402, 3.827247395008619], [0.14504384950149943, -0.14379928212063556, -0.9789198374654465, 0.8598899517061442]], [[-0.29551048182062156, -0.9524707931546427, 0.07397934388401856, -0.4476043947281634], [-0.9491720605208186, 0.2839361577835733, -0.13584056032630787, 3.810021617368602], [0.10837875557879162, -0.11036143570318258, -0.9879647761174102, 0.9989711676855488]], [[-0.282156151981578, -0.9571855671772019, 0.0646814957047739, -0.4965400960006117], [-0.9574720598974648, 0.27672053473297004, -0.08168843353134309, 3.7316931100781847], [0.060292291502762475, -0.08497961899630557, -0.9945568379638181, 1.2210918675886755]], [[-0.285931668073291, -0.9567156762826868, 0.05420512842698766, -0.4593723271594616], [-0.9551091897450718, 0.279961978723731, -0.09689027883954857, 3.761089199766345], [0.0775210736338034, -0.07947581534060616, -0.9938179299643412, 1.1727421100839932]], [[-0.268505828456055, -0.958233465200048, 0.09845428510651826, -0.4806686826999913], [-0.9374236255723424, 0.23640971945241337, -0.2556313571673786, 3.562311000669121], [0.22167897127136849, -0.1609318822332581, -0.9617480766692119, 0.5467085677692315]], [[-0.27524776616843977, -0.9612649811592208, 0.014432713405541562, -0.5287144619237911], [-0.9589705173985731, 0.27346813546098797, -0.07477115518569698, 3.8212792648128544], [0.06792800585617594, -0.03442114008067436, -0.9970962697432729, 1.264388766476302]], [[-0.31757709395869815, -0.9473948627204479, 0.039846749976031035, -0.359262419193512], [-0.944816142942294, 0.31258952987430266, -0.09803184099367591, 3.780044063935509], [0.08041918569840993, -0.06878051979933232, -0.9943852345382744, 1.1839684042447687]], [[-0.343943084787383, -0.9377850131081207, 0.04756494104633305, -0.24846750336813922], [-0.933303939291199, 0.3358548453816952, -0.12706407728845973, 3.7896335258259826], [0.10318387146482383, -0.08809535755895154, -0.9907533985034276, 1.0671435193362129]], [[-0.35532544715516545, -0.9334755687814839, 0.04865376750126477, -0.18925827684219598], [-0.9252219997647694, 0.3438195932185554, -0.16047535159739792, 3.7742400424763316], [0.13307170155695458, -0.10203651212733814, -0.9858399831806502, 0.9338395981443821]], [[-0.3209967527611739, -0.9469525216848425, -0.0155565546153393, -0.37916902514490214], [-0.9458208556929724, 0.3213734608507577, -0.04628182793516597, 3.902109391677222], [0.048826157467034816, -0.00014260268112498836, -0.998807281717289, 1.4033286113045127]], [[-0.31540146223167115, -0.946144752115522, 0.07302072080157289, -0.3449939216044955], [-0.9383050910060138, 0.2994383992982576, -0.1729745681246044, 3.6816383958686227], [0.14179377212811534, -0.12307214579243661, -0.9822157467255986, 0.8835465873620354]], [[-0.2660244713914, -0.96218458604581, 0.05858159264461317, -0.5450050118589662], [-0.9603044932334868, 0.2592321478623439, -0.103024141783623, 3.740661771637172], [0.08394200912834017, -0.08366310949593676, -0.992952276402531, 1.133469457167717]], [[-0.17014737482251782, -0.9837046783503051, 0.05809454907930865, -0.9385927331572481], [-0.9835574546016527, 0.16590897751403302, -0.07133683955549115, 3.6574484390201625], [0.060535975572574854, -0.0692771027971776, -0.9957590465014644, 1.190738892767019]], [[-0.14411191105888127, -0.9889965377982771, 0.03343060445128214, -1.0691445939225122], [-0.9895546742407463, 0.14390414908197452, -0.008552342678083635, 3.6237097578508948], [0.0036474346118313353, -0.0343139053448288, -0.9994044487197055, 1.373346315855332]], [[-0.1522560561428419, -0.9750192627344192, 0.16172671598921967, -1.0420591091472202], [-0.9880240565322767, 0.15429989476398195, 7.867228887885325e-05, 3.5670824335436], [-0.025031122254761284, -0.15977790764887978, -0.9868355806039899, 1.2227327579812932]], [[-0.11577249467106475, -0.9766075757927221, 0.18120257277947477, -1.259041207774689], [-0.9857046587280286, 0.1354435427525955, 0.10020664892354433, 3.4523610556690723], [-0.12240529089667213, -0.16701104643372663, -0.9783272740395275, 1.5221890510289926]], [[-0.08933659976662521, -0.9827160299285086, 0.16213628978019873, -1.3728202021204567], [-0.9830590854613829, 0.11315713433723464, 0.14418840952175968, 3.3652794865279065], [-0.16004313929052838, -0.14650825051899222, -0.9761769952707843, 1.6551078375957855]], [[-0.02849261817237049, -0.9987227746232523, 0.04172517415800997, -1.403609980747823], [-0.9760622779676975, 0.036801574153545444, 0.21435501782867245, 3.147315689743771], [-0.21561679025111402, -0.03461883286094207, -0.97586419965749, 2.000278225678522]], [[-0.027393753220774166, -0.9899244597863281, 0.1389213669714846, -1.2353761462148907], [-0.9950583332723995, 0.040272399045354325, 0.09075818012877082, 3.1640354316759036], [-0.09543843916176548, -0.1357486566853547, -0.9861357951816211, 1.4139997072614796]], [[-0.004149694203838967, -0.9989307978984413, 0.046043903483498974, -1.4535858411411895], [-0.9924449622256298, 0.009760032417765867, 0.12230183449225952, 3.2536316183239795], [-0.12262045910443535, -0.04518852483969028, -0.9914243391362902, 1.681989813905663]], [[-0.04136752730188148, -0.9888594811626235, 0.14298830091904333, -1.275487072858015], [-0.9942295733362567, 0.05491703571282064, 0.09215028319067327, 3.3149009147111883], [-0.09897617485300463, -0.13835116805905046, -0.9854251220200158, 1.443438316452046]], [[-0.056046066168732804, -0.9921053611560436, 0.11218641108639629, -1.3843625720414663], [-0.9735205057439044, 0.0792432292335204, 0.21442559436031952, 3.248937427675921], [-0.2216227952245494, -0.09719806060863376, -0.9702761842129165, 1.9345715949786875]], [[-0.09322340169805297, -0.9625837005220959, 0.2544445261054601, -1.2381164275380634], [-0.9818639052902027, 0.13125322350331603, 0.13680593118816414, 3.263638669736511], [-0.16508382375058955, -0.23707638180379154, -0.957362063342134, 1.5081466149565195]], [[-0.09338385914750173, -0.969291266982615, 0.2274948232421051, -1.3392343920451053], [-0.9776126167916426, 0.13254087742366435, 0.16342119599844523, 3.3259304475886515], [-0.18855510160299724, -0.20714090750743147, -0.9599685505767785, 1.641153718754742]], [[-0.05734257373701591, -0.9694123340779592, 0.23864525089500122, -1.4792466836551457], [-0.9816565202737457, 0.09828505667068443, 0.1633723472295157, 3.272327494080083], [-0.18183043045996455, -0.224899475705844, -0.9572658566908049, 1.6075756620390025]], [[-0.04015609397316917, -0.9733531361540625, 0.22576793495948186, -1.5718519315151354], [-0.9786990511959645, 0.08384360467405166, 0.18739908522556945, 3.2334337494108065], [-0.20133468480353026, -0.21343364845851318, -0.9559866225009378, 1.7003765912358229]], [[-0.036213099540637596, -0.9663356912989669, 0.2547232677699602, -1.5958402954968667], [-0.9808342569540673, 0.08319898017750324, 0.1761876558751644, 3.2719854485009567], [-0.19144913634441324, -0.24346100595202194, -0.9508280426942648, 1.61281275349377]], [[-0.004077664069352874, -0.9626083333788475, 0.27086633080789874, -1.6827710941113587], [-0.9905792223429588, 0.040965121610342124, 0.13067005423534528, 3.2101718381147384], [-0.13688015531170206, -0.26778173074548317, -0.9537068563037577, 1.4089388399002065]], [[0.02269280626945883, -0.9697761776491911, 0.24293867911006092, -1.7997054542675126], [-0.9902312388942762, 0.01163653904960785, 0.13894849577038898, 3.199816920051564], [-0.137575906544437, -0.24371860048644478, -0.9600386001174145, 1.4820813992733908]], [[0.0774001682405785, -0.9760484956362729, 0.2033188336640238, -2.0919826182036645], [-0.9774070866267501, -0.03405395217886874, 0.20860420741875793, 3.3123558913513147], [-0.19668401299581767, -0.2148712696178067, -0.9566324981541727, 1.7522726472312353]], [[0.05443691093060217, -0.9612884752102999, 0.27011310622809614, -1.9318797712538154], [-0.9876743453648971, -0.012080868608853086, 0.15605588781484037, 3.2235669029240865], [-0.14675152549924678, -0.2752789858334862, -0.9500976106285776, 1.477690825482137]], [[0.04999045334985861, -0.9550641308109519, 0.2921531458194429, -1.890775033086357], [-0.9939496689162558, -0.01892969557401416, 0.10819298631029864, 3.1718044743791736], [-0.09780087031893393, -0.29579413899500473, -0.950231980676857, 1.2105734945178788]], [[0.06441855124670658, -0.958999125141338, 0.27599081186413343, -2.0165655686875628], [-0.9935179413533027, -0.03567540638310375, 0.10793222683005886, 3.1405010200983288], [-0.09366082673332718, -0.2811546609209039, -0.9550809945643777, 1.2369895414934156]], [[0.07338793661962409, -0.9545433831903001, 0.28889641805728666, -2.1015563785097218], [-0.9830066645138638, -0.020360916645695924, 0.18243719630238697, 3.2278268286172986], [-0.16826202269092883, -0.2973757937037976, -0.9398167529039875, 1.480000783241755]], [[0.04350343086523246, -0.9345590104958945, 0.3531386518124125, -1.91280029074882], [-0.9865970328813505, 0.015455641284062635, 0.1624420446258095, 3.225885706809481], [-0.1572696608143766, -0.3554723323318325, -0.9213607733857013, 1.300819166821973]], [[0.028715558870124995, -0.9521229390818737, 0.30436380460375206, -1.9162184547023429], [-0.9829175562000587, 0.028480830527599414, 0.18182937058176957, 3.171067425322935], [-0.18179244866737646, -0.3043858590121308, -0.9350405095186874, 1.4716647354964056]], [[0.28324854188121035, -0.907745686569322, 0.309464104601743, -3.639800235301252], [-0.9589485278016573, -0.26345665905267385, 0.10492049288788773, 2.779595693701941], [-0.013710745756604942, -0.32647872413925166, -0.9451051042795211, 1.742229052613023]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.027727789372056257, -0.928291552075135, 0.37081796618081536, -1.6594336217300782], [-0.9832007112191817, 0.09227703894919834, 0.1574843152217505, 3.1070317539776866], [-0.18040934331301822, -0.3602217961599568, -0.9152555525188911, 1.2548077858415974]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9973534376916817, 0.07126434969284556, 0.014405304142593424, -37.753273471009685], [0.05555910562593844, -0.8748319344099192, 0.48122995783579814, -15.354893835684397], [0.046896760086711876, -0.47915600695332417, -0.8764760207181453, 83.82039994579834]], [[-0.1468828864062289, -0.9310880292965464, 0.33391690490546894, -1.3892571670937928], [-0.9786610505110567, 0.18583370393910917, 0.08768342313611062, 2.6872281069736372], [-0.143694000896243, -0.3139122746579762, -0.9385153796957647, 1.4257436930021092]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.15034322064422634, -0.9569418278103068, 0.24831281520169346, -1.3774383526881218], [-0.9714530349901334, 0.18961647214467348, 0.14256435143424517, 3.4598922756057457], [-0.18350999104893484, -0.2197906542109495, -0.9581315940447547, 1.477138344233036]], [[-0.2811238424189548, -0.9187495236092101, 0.2772520479481657, -0.7431467647656701], [-0.9415965235351892, 0.31987438171945665, 0.10524431949535878, 3.553042061388763], [-0.18537899581680903, -0.2314728770017011, -0.9550156727104048, 1.5611692894524534]], [[-0.2557625623962192, -0.9393780335925862, 0.22837342595023175, -0.8123436364953069], [-0.955896822764109, 0.28101773227849014, 0.0853832441087608, 3.4432778949790546], [-0.14438412622584734, -0.1964635949706225, -0.969822292971871, 1.5440627565272966]], [[-0.10692351178462785, -0.9767954301538962, 0.18557491818160043, -1.4796819679894742], [-0.9893256269733736, 0.1231079998051428, 0.07796937987260388, 3.4304358449134664], [-0.09900589094283252, -0.17525726237289585, -0.9795318910296766, 1.3514594244760152]], [[-0.18967046887155134, -0.9695109508875941, 0.15515678956165202, -0.8984568176635209], [-0.9815658538596923, 0.18344666048249939, -0.05362646076809078, 3.047520664820143], [0.023528446075736967, -0.16246796258601723, -0.9864332584409397, 1.297849308993228]], [[-0.20824889232136165, -0.9738248211404558, 0.09109125412291116, -0.7386505157464947], [-0.9774485443935267, 0.20387569139591813, -0.055036765173945415, 3.1594172288578934], [0.03502487558723688, -0.1004983591338454, -0.9943205408224767, 1.510888073756729]], [[-0.19982593597370826, -0.9782595468363552, 0.05547841324119114, -0.8699274741209356], [-0.9756713944066296, 0.2038702664531615, 0.08063649665591723, 3.2107285722154058], [-0.0901938215669691, -0.03801543738859073, -0.9951984229646367, 1.8734360853088912]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.1974113041312308, -0.9802848536669383, 0.008389438145432814, -0.7891044101131724], [-0.9783528581515205, 0.19646583266961976, -0.06501431796292038, 3.3563712453104966], [0.06208431321966447, -0.02104239208413221, -0.9978490646322319, 1.746187978511767]], [[-0.2895052300629817, -0.9571715782594971, 0.0030482024872652835, -0.26956470923964027], [-0.916267166363515, 0.276209442456252, -0.290108296575918, 3.6838074461918993], [0.27684147379024443, -0.08678083699889964, -0.9569889679193881, 0.5913743947715692]], [[-0.3642257236428277, -0.9287642949960312, -0.06882228256446657, 0.1569883885212271], [-0.8504682120906869, 0.361814920148152, -0.38182952188307284, 3.7111046401168815], [0.37953055537088, -0.0805409703114551, -0.921666810534675, 0.18164170241041602]], [[-0.25003452306686036, -0.9321563311627631, -0.26185360709355304, 0.08953865292701278], [-0.9285188164543635, 0.3075073741331793, -0.2080673504995554, 3.8458079180507383], [0.27447321320106205, 0.1911119805948702, -0.9424121529926226, 1.79040289579943]], [[-0.2515482364830072, -0.9142874631400245, -0.3174931801901691, 0.09158198807422026], [-0.906988633121996, 0.33717388620287875, -0.2523596438623683, 3.9235603017395744], [0.337779667993475, 0.22448208215317847, -0.9140638329364045, 1.1308485327799427]], [[-0.2084912119710684, -0.9239715790604481, -0.32063676585721984, 0.02394937317234433], [-0.9021933799327984, 0.3082696021228111, -0.3016901682396651, 3.721458226910681], [0.37759570937216574, 0.2263766187034032, -0.8978725448348146, 0.8282693441133018]], [[-0.1853769079330886, -0.9000466426740319, -0.3944001052438629, -0.034913184971895335], [-0.889851744593616, 0.32402733889059904, -0.3212011150279126, 3.757111146898633], [0.4168924017643693, 0.2914143521906224, -0.8609752613684405, 0.45745227905232577]], [[-0.17946710606772254, -0.8820090588555571, -0.4357196093090271, -0.10426310258206711], [-0.8954569888238639, 0.3298658355754591, -0.29890686122369725, 3.9412948396515204], [0.40736757235471666, 0.33652421995576853, -0.8490012428595063, 0.3688260504257894]], [[-0.14066756854403592, -0.8915006180530796, -0.43062661688623716, -0.24445448473939865], [-0.9132754258951055, 0.28478610235284996, -0.2912470984624321, 3.851371027596745], [0.38228344407784975, 0.3523116857523309, -0.8542457752112844, 0.4933985712020618]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.993448694233383, -0.09245995755783044, -0.06716284817062448, -2.8070327487420657], [-0.1139028373021262, -0.8487722191641249, -0.5163447139554466, 0.8161457138060577], [-0.009264749349633433, 0.5206120208212742, -0.8537431043328418, 1.661511028676898]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9073233423231453, -0.3807305493072484, -0.17834966021766757, 2.9903873809773422], [-0.27898828458261576, 0.8625712239306464, -0.4220621052788751, 1.6932758207713958], [0.3145312218861682, -0.3331893342695528, -0.8888503687279464, 0.4411855126295113]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6469855156520616, 0.7411529936903501, -0.17917026114918705, 3.5470371146239064], [0.6995961124943578, 0.670447415312722, 0.24711443236539749, -1.5919551151522375], [0.3032738398200837, 0.0345326402744231, -0.9522775198630173, 0.3640292856832649]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6854902118867048, -0.6521700107845311, -0.32369344516196974, 2.107497878754163], [-0.3267712231949794, 0.6728705925991824, -0.6636759249113093, 3.1563128901762028], [0.6506333353734479, -0.3491696473757843, -0.6743565972482903, -1.7181244745988125]], [[-0.6883687946826351, -0.6903620098294482, -0.22259536808168542, 1.9556468135144958], [-0.360472945344659, 0.5918824231375556, -0.7209261077637305, 3.3390510971287295], [0.6294502825336744, -0.416023427904079, -0.6562902172463162, -1.7870710449509926]], [[-0.7205269196017878, -0.6665854394918823, -0.19106231964093018, 2.0641748592137223], [-0.37427247392621565, 0.6057980128492194, -0.7020889422922761, 3.446364787801717], [0.5837474397291256, -0.43436461583023867, -0.6859783576209529, -1.6355580035307808]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.08343765133955443, 0.029587792341007182, -0.9960736523386835, 0.0935716066125557], [0.1904610094097427, 0.981605961766764, 0.013203776678221035, 0.908863777845868], [0.9781425060969189, -0.188611501156032, -0.08753821678619733, -3.5482992930480424]], [[-0.9522154836732064, -0.11298739936491303, -0.2837596169960678, 3.5108771690821716], [-0.11231595960889226, 0.9934967484828646, -0.018690531589799195, 2.1475209706560263], [0.2840260513934155, 0.014073320103275099, -0.9587132750677522, 0.6002697679522699]], [[-0.901650790058996, -0.24892000758654237, -0.35364485378569216, 3.2534792479053163], [-0.24650152486637367, 0.9677104661078193, -0.05266357397613345, 2.787768239988712], [0.35533484352725736, 0.03968984263640777, -0.9338960677543066, 0.2759974941981495]], [[-0.691115200709993, -0.5318597326686115, -0.4893720508092577, 2.2828004672204374], [-0.364673232892051, 0.8412062690164596, -0.3992310686550682, 3.532216713106568], [0.6239977664700777, -0.0974537722875875, -0.7753254476071793, -1.1774168410025592]], [[-0.40976175463157577, -0.8171549151782973, -0.40540491985322785, 0.6557135931081093], [-0.5015891907815453, 0.5730506245498949, -0.6480904762408487, 3.954587055642187], [0.7619078606579452, -0.06221596501642601, -0.6446903020557296, -1.8522089640692245]], [[-0.25216608666023793, -0.928924439392908, -0.27113032039414725, -0.3468522909384068], [-0.5319674775510775, 0.3671212389026677, -0.7630416756472179, 3.970714436303582], [0.8083457599111936, -0.048180720678939526, -0.5867331170033381, -2.135520740416724]], [[-0.1420816859471673, -0.9700303693453659, -0.19711386827441546, -1.018415795736777], [-0.4993707757930682, 0.24217906919105747, -0.8318522264979413, 3.8145226554872074], [0.8546587756539096, -0.019758061479964784, -0.518814028534613, -2.401703172037393]], [[0.00837869071026831, -0.9766172219000862, -0.2148222507798938, -1.6579846779043852], [-0.48483123709117165, 0.18392222561770188, -0.8550504584318256, 3.736503560962001], [0.8745675897737268, 0.11131674093319932, -0.47195350841516726, -2.334650625023001]], [[0.07093199650417381, -0.960677800760387, -0.2684526308273358, -1.855367178151885], [-0.5085119324017763, 0.19670508104356754, -0.8382855871936811, 3.8575648503466238], [0.8581283508176052, 0.19597263640067075, -0.4745634407592176, -2.1198266980348284]], [[0.11225834639991439, -0.9384622331839721, -0.3266293014273348, -1.9219909162446853], [-0.5056981166190192, 0.22900119787380857, -0.8317619047662242, 3.921582454083875], [0.8553756359118102, 0.25854803859188846, -0.44887128804230025, -2.0397236503356377]], [[0.15077244288022318, -0.9228835518108596, -0.35433546289484297, -2.0283287460903563], [-0.5098865874878646, 0.23447769842983468, -0.8276689415696519, 3.9644076398988832], [0.8469258163309878, 0.30546056821792944, -0.43521316948832056, -1.9403145106913149]], [[0.1682616491927107, -0.9166775621098981, -0.3624779504124389, -2.0744853413454822], [-0.5282999878421757, 0.22659008692424176, -0.8182640498968662, 4.006598828741019], [0.832218204713707, 0.32917955530670173, -0.4461543232012621, -1.8237416024247621]], [[0.1928484198368995, -0.9205827926708218, -0.3396127335728173, -2.195708241932236], [-0.5190077222913444, 0.19802982565363914, -0.8315137836220995, 3.922343396410625], [0.8327307314902949, 0.3366177505568887, -0.43959983944680725, -1.8191595142521233]], [[0.1687156913351946, -0.9307873552770298, -0.3242991130941917, -2.1276043183949485], [-0.503983088457896, 0.20129069493286034, -0.8399304153808732, 3.8834094950886286], [0.8470750037899404, 0.3051507093058087, -0.43514018725513526, -1.951612855710757]], [[0.13945484175248002, -0.942359581300349, -0.30415582625230453, -2.0565473520283275], [-0.5008128100576353, 0.1978571057763464, -0.8426381755985086, 3.8662925731213047], [0.8542475498319946, 0.26983510747350686, -0.4443536186201202, -2.041392783942069]], [[0.14563474051133474, -0.9435491485507205, -0.297498784241897, -2.08971710008013], [-0.5121136891332624, 0.1853876934439873, -0.838672148411904, 3.876707997626406], [0.8464810049602511, 0.2744930006188296, -0.4562055467141481, -1.9797331487105538]], [[0.16696007058888862, -0.9517290399426894, -0.25755808929000895, -2.2430982528237995], [-0.5183960239782923, 0.13746820377457003, -0.8440189898778885, 3.8099746766138107], [0.8386834308321891, 0.2744345595597614, -0.4704208492050376, -1.9290390303616924]], [[0.2356811034320857, -0.9432246306490171, -0.23405493718796022, -2.527040006533455], [-0.5907858880706904, 0.052171961083847015, -0.8051398145249006, 3.8489243902796377], [0.7716388092505199, 0.3280325938282521, -0.5449478557116716, -1.4479245590765673]], [[0.3857627727269112, -0.8942957018995983, -0.22676481372106724, -3.0149033988203007], [-0.7062434627066443, -0.12808895513833451, -0.6962854234835729, 3.7416027263339457], [0.5936389934650304, 0.4287521628347483, -0.681002443683098, -0.33816108206693163]], [[0.4717146198789393, -0.8463470221097118, -0.24735002639678616, -3.2032951282144344], [-0.7489245504669912, -0.23650555017960412, -0.6190130389919568, 3.561768506729208], [0.465400188118014, 0.4772440077154095, -0.745413188774824, 0.3493890472134409]], [[0.5165805383195873, -0.8075838706306305, -0.28452212449420256, -3.208531606599143], [-0.8052584482882149, -0.3452696225883351, -0.48202460432862276, 3.341492412409063], [0.2910384491607627, 0.47811837406123386, -0.8286733020286949, 1.151828266352709]], [[0.5592931668415196, -0.7647674421813254, -0.31987796564286364, -3.206643535590864], [-0.820449008089707, -0.4554887309906005, -0.34553355996948854, 2.999735033080723], [0.11855200820315048, 0.4556981186268002, -0.8822044241733289, 1.8494440778804826]], [[0.6444600150011125, -0.6824756276465727, -0.3448163376830951, -3.3934262439580354], [-0.763998412449894, -0.5562890244485222, -0.3268775719625812, 2.554654394096962], [0.03126843198510909, 0.4740986595072036, -0.8799163290987755, 2.2138618246080655]], [[0.6888299027674968, -0.6323775990361682, -0.3544177440402383, -3.375058089506663], [-0.7243616016502612, -0.6196642834024819, -0.30218611141142265, 2.2126018204259053], [-0.02852428978938701, 0.4648814344674776, -0.8849133385702079, 2.413414549914529]], [[0.6168525620837783, -0.6784597372978112, -0.3989803272298823, -3.0762870437060137], [-0.781892032202435, -0.5863201614785367, -0.21183370416940067, 2.373337543262305], [-0.09020957060659018, 0.442629702019157, -0.8921553565727255, 2.571022825473225]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3625745016494144, -0.8907644583482839, 0.27400439868215093, 1.0277579224533455], [0.44222382017554196, -0.4232442896727626, -0.7907606237849406, -2.609801120632003], [0.8203522558163832, -0.165538367162682, 0.5473748490514381, -1.744207198695149]], [[-0.10888668115411715, -0.9811086676586159, 0.15990457439478295, 0.01447679043440215], [0.49796232295492115, -0.19305768659075528, -0.8454361327537192, -2.6740022145037594], [0.8603355250043905, -0.012430281306580138, 0.5095765619826514, -1.8926782950366805]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9470168714181235, -0.08035771776940838, 0.3109689412856554, -3.1625430480336245], [-0.2537479680680554, -0.7807472665067947, 0.571004093280863, -0.7748096648237592], [0.19690356510424695, -0.6196582469692947, -0.7597714412980903, -0.30342725818112465]], [[0.8468826081333652, -0.3409633951401272, -0.4080855439926123, -3.5273242269450162], [-0.19538375538037522, -0.913227652221454, 0.3575478196710935, -1.065870792894127], [-0.4945857217658942, -0.22306774395373397, -0.8400153245225356, 2.349522301306483]], [[0.8476396674665654, -0.5131131377556937, -0.13498852543707912, -3.98803799674849], [-0.47441553898252936, -0.8469005463498793, 0.24018609652557424, 0.010570158718151305], [-0.2375644975771562, -0.13955060893734136, -0.9612953432926485, 1.7120499575727517]], [[0.8315965764451675, -0.47601481156427167, 0.28610668152999763, -3.9036750065091304], [-0.5552836985394026, -0.7222368336418389, 0.41235175550422115, 0.5865797280754991], [0.010351240557460978, -0.5017806844652771, -0.8649329433640969, 0.3341299285382589]], [[0.7908247295607738, -0.5994010278189013, 0.12375239377391381, -3.966662572727869], [-0.6108946952453631, -0.7606593649669263, 0.21955637501377218, 0.7762491006864521], [-0.037468899586244914, -0.24923029177400946, -0.9677191448070245, 0.9557082546134555]], [[0.7717463610948886, -0.6336145427904898, -0.05422329113209809, -3.934495217098151], [-0.6077520433946815, -0.7599642149337522, 0.23041667858406895, 0.8004287938859675], [-0.18720311932867734, -0.1448689172477084, -0.9715801505429641, 1.6821026259166572]], [[0.7351303531592962, -0.6611968913435157, -0.14967309291104913, -3.8376638248230615], [-0.654760503819415, -0.7497116058256368, 0.0960270312385581, 1.0247221580589416], [-0.17570442937511366, 0.02740764433540866, -0.9840613672581348, 1.9326534651769989]], [[0.7400263297533595, -0.6722785780577969, 0.02006351804541552, -3.833064295503098], [-0.6510990509973031, -0.7085961194398067, 0.2719587566254446, 1.139481494740638], [-0.16861511516522837, -0.2143199780688522, -0.9620997297257613, 1.4849240271689923]], [[0.692692969925327, -0.6597062136376493, 0.29148612506242244, -3.588153608701429], [-0.6869992853989795, -0.7265623552721592, -0.011795158441644929, 1.315865256891198], [0.21956418486930263, -0.19208033628991905, -0.9565023330517441, 0.19118309855625432]], [[0.6882918020736312, -0.7245205722940831, 0.036391420979233834, -3.7005065982461605], [-0.7095888898044898, -0.6619828679713123, 0.24137582724562232, 1.4681509725561241], [-0.15079125526457138, -0.19195995112296524, -0.9697491296725171, 1.6318050275909521]], [[0.6159180973983696, -0.7868281339909896, 0.03932410021131989, -3.5893105501432125], [-0.7693298397097913, -0.5899720263774875, 0.24508081488388228, 1.7827409728713406], [-0.16963636116493247, -0.18120291292442925, -0.968704810207125, 1.57503599482076]], [[0.6630257265533881, -0.7252745401695985, 0.18540152995628006, -3.6312506699368985], [-0.7228431382812847, -0.5558674549704576, 0.41049868446114435, 1.6646869436576701], [-0.1946655680083551, -0.40618741226980937, -0.8928141479308787, 1.2284578869893574]], [[0.650884228868251, -0.7591668430149006, -0.003927477227379683, -3.682746965511517], [-0.7069930998218403, -0.6080208847397932, 0.3612081955390062, 1.397790879815737], [-0.27660527365704296, -0.23232801851483365, -0.9324769243247171, 1.799422675743536]], [[0.6991456204703207, -0.7079017528633441, 0.10035192908048855, -3.7561549409402897], [-0.7018091729617145, -0.6526583002022571, 0.28548384879690625, 1.193687785219441], [-0.13659899752181473, -0.2700226869544585, -0.9531151359651833, 1.2841031701138013]], [[0.6623326608864554, -0.7415490589541602, 0.10686645632408258, -3.6960354124397545], [-0.6847676884107439, -0.5412981591297058, 0.48794417286345193, 1.2457697255293274], [-0.3039879261281178, -0.39636005864238044, -0.8663082850125208, 1.5250059380830656]], [[0.553077176990627, -0.820825709214989, 0.1426561999486495, -3.4885154357581984], [-0.7946847774302152, -0.4683488899235686, 0.38616760846561243, 1.7432883903625607], [-0.2501634282079779, -0.32694720124061544, -0.9113307779221332, 1.4076734041719123]], [[0.48046844909264785, -0.8709226298769605, 0.10316899822477876, -3.3306709271684554], [-0.8138124049700411, -0.39890161050655537, 0.42259540301824594, 1.8937953166740986], [-0.3268936202243526, -0.2870039684455161, -0.9004272781036463, 1.7144199588297415]], [[0.48014886975770577, -0.8721774434417028, 0.09361394138638207, -3.3380224383234762], [-0.725542965166074, -0.33489590873409913, 0.6011922621018861, 1.7129797092760608], [-0.4929954042061841, -0.35658272176965766, -0.7936021005308163, 2.073674476274722]], [[0.39902779562298346, -0.9119925682212955, 0.09511242731309213, -3.1698020129787126], [-0.8176170952523842, -0.30693221885565264, 0.4871292421723414, 2.1919785486649537], [-0.4150651802684927, -0.27214365422965775, -0.8681352012164997, 1.9540050038911456]], [[0.29689374411923913, -0.954910459836181, -0.00034409055962106305, -2.898427822286204], [-0.8803210717410627, -0.27384253889447324, 0.3873565212314045, 2.5227037440330116], [-0.36998502044208015, -0.11470081772717358, -0.9219299360912363, 2.0404382023144847]], [[0.27915100769670737, -0.9601840911135258, -0.011010271313895259, -2.8075902514112223], [-0.7545455384150359, -0.22642938319620237, 0.6159470471423264, 2.1494689050716604], [-0.5939156045768428, -0.1636344878009531, -0.787710612498171, 2.633398112285801]], [[0.21136702975914007, -0.9768703210698263, 0.03237830359567079, -2.593655987528234], [-0.6317025573014302, -0.11125418501890755, 0.7671860174785592, 1.9092638218416933], [-0.7458390294357302, -0.18261128696965417, -0.6406069466073989, 3.021529318948284]], [[0.3015157511589126, -0.9506518465931006, -0.07313903453153078, -2.778148143296515], [-0.7663009910128467, -0.28725957407925373, 0.5746866348476661, 2.0546187726219522], [-0.5673367985384041, -0.11723055774384694, -0.8150987384085812, 2.5804186251455214]], [[0.39548299092763817, -0.9008078997709617, -0.1792716698119332, -2.9735298057333894], [-0.6236814590036386, -0.40666908229852294, 0.6675640008250668, 1.3001241177899048], [-0.6742511709904716, -0.15220179109559273, -0.7226478901963747, 2.862526500136478]], [[0.69009093705977, -0.7185459526406405, -0.08640724814344533, -3.6394993259131967], [-0.5655643787034063, -0.6099198188850657, 0.5550988633325047, 0.7120166183653033], [-0.45156553470099836, -0.3341998331462227, -0.8272841346207713, 1.7127112257542434]], [[0.8307918591310544, -0.5565526991761605, 0.005829223043997467, -3.8692217445122203], [-0.4867433722172601, -0.7214251641172501, 0.4925714386573474, 0.26783847256000237], [-0.2699366155306393, -0.41206167695883766, -0.870252490934519, 0.9267658410976195]], [[0.8948355754470513, -0.4443315642946301, -0.04288069362582192, -3.8780694286829336], [-0.35637408841307455, -0.7689245387117912, 0.530803695234509, -0.23792035632264036], [-0.26882485380279625, -0.4597004619731705, -0.8464092882521783, 0.8516010730978961]], [[0.9309682168421162, -0.34671920765099074, 0.11438518381188988, -3.817878199336104], [-0.3524752961886479, -0.7718510149579388, 0.5291570431215341, -0.1609968694013531], [-0.09518059049268186, -0.5329463404079903, -0.8407787184742461, 0.12071080573754256]], [[0.9118390791264535, -0.38387301336115826, 0.14557130002457744, -3.879396315778754], [-0.40828252643160584, -0.8106924616132989, 0.4196225819638343, 0.005667224838917695], [-0.043068229455673866, -0.4420624868685351, -0.8959497113762354, 0.11879718360787268]], [[0.8800813789843202, -0.44122336037700854, 0.17543862922024345, -3.960629021536622], [-0.47415877941290435, -0.7971263368890377, 0.37384897344185664, 0.30455874267465666], [-0.025104148476344276, -0.41220328637152537, -0.9107459757988463, 0.1451861325320375]], [[0.6666688885232261, -0.6684105854341545, 0.3298179533542359, -3.7940858927319927], [-0.6749980274597828, -0.7290868759232971, -0.1131812276033803, 1.4756820779376862], [0.3161174718369876, -0.1471720647268921, -0.9372353639099487, -0.49867691761304417]], [[0.6098727400391049, -0.7161562604479047, 0.33937508980251824, -3.6397402325402286], [-0.706546134305447, -0.6853123414826983, -0.17646403233954128, 1.6919638663526522], [0.3589537589373088, -0.13216355485826792, -0.92395075286078, -0.5532554090702343]], [[0.5775278962578809, -0.7855361222904318, 0.2222488011685505, -3.6176780351490154], [-0.761217614866452, -0.6165371983042838, -0.20107119615731708, 2.0360775525325145], [0.2949733409326616, -0.053055477417661284, -0.9540313645027652, -0.08814871668515313]], [[0.5990040687601086, -0.7954395364071569, 0.09203298066021207, -3.6188394478533645], [-0.7756458622678613, -0.6049338098307921, -0.1800793771378308, 2.08701982459763], [0.19891611788787136, 0.03648327896407508, -0.979337198517675, 0.5155488672095457]], [[0.6286686343826181, -0.7776729467034232, 0.0007321947203485918, -3.622985903634834], [-0.7642214811600919, -0.6179683208657757, -0.18460953967714872, 2.0170319860068933], [0.1440183178521714, 0.11549866826915443, -0.9828116715582302, 0.9329262343110836]], [[0.676512074543766, -0.7335742794339888, -0.06480886937290448, -3.623112396209015], [-0.7351821852325504, -0.6778680496228209, -0.0014359029374949595, 1.5537306554190822], [-0.04287852041736088, 0.048617731883111005, -0.9978966623019445, 1.5760412542419058]], [[0.6827688021747462, -0.7185284849129414, -0.13245217682459942, -3.5619038623766697], [-0.7271960706714569, -0.6858627349458668, -0.027895942582548718, 1.5240348210693122], [-0.07079998288739621, 0.115365181841352, -0.9907967688894912, 1.8761644470852374]], [[0.6836952547663572, -0.7130368195568461, -0.15536824825627504, -3.5381124859474724], [-0.726384613474165, -0.6854001005135115, -0.05091262637161694, 1.546468672085763], [-0.07018683578815536, 0.14766582601375947, -0.9865437709041199, 2.001724601903196]], [[0.7413723225267652, -0.6407881489448328, -0.19939314823515253, -3.589394181810466], [-0.6596605548327463, -0.7504435010655998, -0.04101833865673483, 1.1377942841459385], [-0.12334922694943862, 0.1619416557907816, -0.9790607071733172, 2.2458865036663345]], [[0.7493670998255397, -0.6286724741768123, -0.20789389099121058, -3.5799280678321734], [-0.6485672239911192, -0.7601526344449454, -0.03909639767117559, 1.0972295996868244], [-0.1334522598666405, 0.1641307179013566, -0.9773697364752358, 2.2976123153199826]], [[0.7615932920603111, -0.6136247325003759, -0.20842347553138074, -3.570961231715359], [-0.6304761775876908, -0.775969865167249, -0.019249879135619402, 1.0264711309318293], [-0.14991813427051592, 0.146066614995226, -0.977849219972427, 2.318407150819897]], [[0.875845964659929, -0.4352852670505852, -0.2083760602315417, -3.579277320870624], [-0.4423778898564236, -0.8967225927780542, 0.0137983393052458, 0.17718920827166704], [-0.19286173481304247, 0.0800957420223164, -0.9779514422274753, 2.298800859694902]], [[0.9748346922250535, -0.12330801167539908, -0.1857214502720271, -3.3650156310619894], [-0.12593170715685847, -0.9920361277984816, -0.0023508030870929113, -1.007244476105683], [-0.1839525155224702, 0.025679863692291895, -0.9825996217349674, 2.1342852029282486]], [[0.987307158173568, 0.15353609663923423, -0.040635482623205946, -2.9766262093901457], [0.15441815686590488, -0.987812718004927, 0.01952093691031471, -1.895028238368139], [-0.03714307808152055, -0.025548017075840295, -0.9989833284765686, 1.536972311430714]], [[0.9033280923858242, 0.4237562088640777, -0.06655098012600388, -2.3160579046630208], [0.42573079600657704, -0.9046650159557142, 0.018289292973013842, -2.6168597772881053], [-0.05245614204451098, -0.04485403387645958, -0.9976153912238998, 1.5833972590891596]], [[0.48936760543185287, 0.8563847237985435, -0.16469532961923106, -0.24453162803117534], [0.8476852994505287, -0.5114739460906177, -0.14079785355594054, -3.3897406060142967], [-0.2048145010719749, -0.07070790136176607, -0.9762435212771728, 2.1108551070461754]], [[-0.1468629384177438, 0.9661768852899096, -0.21197524301388243, 2.0187611759503388], [0.9888673800365478, 0.1485931606049112, -0.007834367944931475, -3.021321527961981], [0.023928686110177885, -0.2107659814887869, -0.9772436334037221, 1.1621206672286253]], [[-0.6211950017258137, 0.7491924687999802, -0.22984215132185218, 3.4161391337116638], [0.7336910554089606, 0.6590627346506224, 0.1653292079692177, -1.7096606647319412], [0.2753437942713657, -0.06593145295103012, -0.9590822897270153, 0.3766981386870157]], [[-0.8098598052459637, 0.5069496801067105, -0.2951764179040616, 3.826497581223889], [0.4434860752454596, 0.8584653626273715, 0.25759915029447245, -0.5772021822116761], [0.38398853747260203, 0.07771256660772133, -0.9200617153652749, 0.08546478502042595]], [[-0.8827554158613056, 0.3707401693678617, -0.2886080431738221, 3.8781262863800072], [0.30150947402031225, 0.9181220158219581, 0.25718476070525403, -0.011573514341075255], [0.36032612012387916, 0.14001318109418623, -0.9222588553526383, 0.1705515616408169]], [[-0.8486365454821743, 0.3055204857258888, -0.43182548150138006, 3.7354282653553352], [0.18307217077270937, 0.9355271637448893, 0.30211505454712273, 0.39376364111691875], [0.4962868061520976, 0.17733064793560074, -0.8498548389825703, -0.34048171374428843]], [[-0.628290952809613, 0.33532830928146196, -0.7020009997229524, 3.0169346692775507], [-0.04357331705616618, 0.8857559046077821, 0.4621015510612059, 1.0576531604168014], [0.7767572623788666, 0.32092273594571896, -0.541901054524535, -1.2915541840788156]], [[-0.8370145341992745, 0.10408867183329538, -0.5371891826304322, 3.351778004512317], [0.07848268596727549, 0.994426716453228, 0.07039867617656699, 0.7728234127495438], [0.5415229796994152, 0.016764665222773176, -0.840518773411656, -1.0105762324900065]], [[-0.9225601416301092, 0.0677157852003637, -0.37986492008361494, 3.6490384213302494], [-0.015061888034605224, 0.977409737718464, 0.2108159010652582, 1.128496453496494], [0.3855592361807275, 0.20021183043921734, -0.9006993384853307, -0.2996823701809495]], [[-0.8917704240984884, -0.1066788214189477, -0.43973303237744943, 3.205427523090743], [-0.15530058445845077, 0.9849393509500557, 0.07600133825760404, 1.751635664629525], [0.42500263430956087, 0.13606654258394096, -0.8949070660237223, -0.59298315172055]], [[-0.9876731068754455, -0.07715250313133448, -0.13619590748467522, 3.718657236748859], [-0.10325363250629416, 0.9750676550606286, 0.19642239034494505, 1.5328873017844882], [0.11764574505378403, 0.2080638347121773, -0.9710143764927499, 0.5517047334508859]], [[-0.8859216687655591, -0.13610286024325047, -0.44341719435003035, 3.1940747706257238], [-0.24298284878089943, 0.9504900819917559, 0.19372129266971094, 2.0262861044042744], [0.3950976233919472, 0.2793646639589758, -0.8751304202923831, -0.3304198096883951]], [[-0.9468399438586564, -0.2421978295354963, 0.2117411912737594, 3.249517222915214], [-0.28604617775842556, 0.9350089609476928, -0.20960874775951263, 2.2352826224471847], [-0.1472131274836972, -0.2590336933987748, -0.9545835954910696, 0.9653923165718645]], [[-0.9769254668772771, -0.21232941915439654, -0.02308354236615278, 3.4705069208620243], [-0.2127572681057103, 0.9579792670337202, 0.19238001144019923, 1.8600419601439837], [-0.018734381089544797, 0.19285212390609768, -0.9810489698634304, 1.1427855203129453]], [[-0.9099864845685816, -0.27536582033313917, -0.3099971982047145, 3.152861042029032], [-0.25064348070777087, 0.9608872498287099, -0.11778598683761918, 2.013071713615684], [0.33030659012682295, -0.029484879326119866, -0.9434130582146487, -0.5933927482361185]], [[-0.8740620200229616, -0.27226690977710594, -0.4023509848301656, 3.067860378550623], [-0.32374013373859384, 0.9439427557473116, 0.06453216003736892, 2.2551704967754875], [0.36222632560361523, 0.18666227179748054, -0.9132082376583702, -0.36407177376133937]], [[-0.9871662264115683, -0.1582159525640141, 0.021692251764294262, 3.6706842375243984], [-0.15894441426233397, 0.986577085209006, -0.037447671694048376, 1.7382942082615593], [-0.01547625946885902, -0.04041493900481988, -0.9990631201771432, 0.7646475558718194]], [[-0.959973220612556, 0.00831051470767194, -0.2799684822476465, 3.7412932989422183], [-0.23007066121235897, 0.5466883871313181, 0.8051082524884874, 1.2858055151873318], [0.15974638198114255, 0.8372948959124566, -0.5228942060521261, 1.3475442981451424]], [[-0.9153676834283484, -0.19481492077993295, -0.35234805345925757, 3.2445624202161882], [-0.17320413309532823, 0.9805618382421646, -0.09218898883187057, 1.8029903165832226], [0.36345884555712105, -0.023358681997394166, -0.9313173677976965, -0.6961431794747701]], [[-0.9275432250165969, -0.16191294889510857, -0.33682007467771236, 3.354659859873726], [-0.17732485249661925, 0.9840336533694327, 0.015286128465357159, 1.8672305442006039], [0.32896726647625896, 0.07390511495490101, -0.9414449381512655, -0.38621672650359384]], [[-0.9486317657438994, -0.17463878625086385, -0.26381635157517525, 3.429774188005745], [-0.18164777005479152, 0.9833611696424593, 0.002213068805037341, 1.946695731272002], [0.2590402684057692, 0.05002103933585678, -0.9645703888094572, -0.10275554960315923]], [[-0.9480866622267976, -0.20230235554985915, -0.24536796418161286, 3.4238625533236786], [-0.1732034890044435, 0.9755759066202123, -0.1351007099124144, 1.9505211175324366], [0.2667062659637724, -0.08558859363915909, -0.9599699788714922, -0.352656603411798]], [[-0.9320170413587142, -0.22912818365725104, -0.28079264604130544, 3.2935181208108917], [-0.1764284107414453, 0.9636308858688456, -0.20072003308805936, 1.9575082704082287], [0.3165710828553307, -0.1375346910912036, -0.9385451285080811, -0.6017420465703297]], [[-0.9527441565475532, -0.20848413924264125, -0.22093649732162227, 3.3920067718804225], [-0.16927772339104413, 0.9682897158892332, -0.18373915877322688, 1.959933761860886], [0.2522372385831192, -0.1376567825695592, -0.9578240891126932, -0.3051875941125232]], [[-0.9337482080457108, -0.17423540863362524, -0.31266004917433643, 3.2787411209218065], [-0.11990919494082171, 0.9753180690902964, -0.18540886999984635, 1.788877933227893], [0.3372477856711128, -0.1356343853314842, -0.9315939268671101, -0.5034588757186029]], [[-0.9935906311323316, 0.09946729819772916, -0.0537020885562154, 3.7339987484556145], [0.1077711317138202, 0.9768942049241646, -0.1845619016880429, 0.9884574196685098], [0.03410338539174658, -0.18916651124030495, -0.9813526329154032, 0.45666795468190435]], [[-0.9708506612351725, 0.23671281146872794, -0.0376302865495156, 3.745278371567731], [0.23802056715789974, 0.9336807773978435, -0.26755637822259154, 0.4723774707740441], [-0.02819934731620463, -0.2687140688619209, -0.9628071177585938, 0.575940418869287]], [[-0.9527222132222066, 0.30205764341840013, -0.03288714772526906, 3.7391623540844483], [0.30050771134726395, 0.9207367371732091, -0.24887542313467248, 0.21813449316744124], [-0.044894318725318766, -0.2469919854411382, -0.9679769931532645, 0.6661240820658433]], [[-0.948222477802939, 0.3167953404200135, -0.022690193419674966, 3.6832803854777594], [0.31760390844899716, 0.9454815075016768, -0.07205883922377361, 0.2101713615981649], [-0.0013747462222274739, -0.07553430518992273, -0.9971422560559249, 0.8502616705850914]], [[-0.9000340943112919, 0.4314396950680231, 0.061631311821700605, 3.6643567193522553], [0.4057871436175387, 0.8811776773677764, -0.24261635349549282, -0.12068026976494535], [-0.15898246177478642, -0.1933537960018944, -0.9681626342819094, 1.234995111593559]], [[-0.8702413082782345, 0.47621628448317044, 0.1260877304071666, 3.6000140009003965], [0.42493853543190563, 0.8551468216979573, -0.29690260093988585, -0.12044219034776275], [-0.2492133753857793, -0.2047973723779826, -0.9465467393615067, 1.579705609385274]], [[-0.8571860300220415, 0.5094705554337231, 0.07531177252664584, 3.5997532343993335], [0.4666313043088238, 0.8301961464061971, -0.3050075152047011, -0.30985485119883927], [-0.21791589151344032, -0.22630535044128702, -0.9493674486665049, 1.3508353289230393]], [[-0.844879697268691, 0.5214697900990395, 0.11936312310436978, 3.5330145181605896], [0.49014421063242364, 0.8439855590471287, -0.2178233892478582, -0.3871894707061429], [-0.2143290692525948, -0.12552941541315854, -0.9686616622636344, 1.401883980440438]], [[-0.8318026906324227, 0.5065577212172635, 0.22694395548644894, 3.459932823548971], [0.5156138582250468, 0.8565381070009603, -0.02201863895641401, -0.45648418294485693], [-0.2055398576017399, 0.09870028536121216, -0.9736588830831217, 1.6266655588713688]], [[-0.7216511789780832, 0.5470598806732162, 0.42419931970401537, 3.164894191775468], [0.46899045419530755, 0.8370822966771959, -0.28167566892316076, -0.3282152906032987], [-0.5091831986163939, -0.0043261469505125605, -0.8606472882077425, 2.5375745792969804]], [[-0.8870248696996825, 0.4592795824427942, 0.04742515878132675, 3.5791357345896575], [0.4599793042574888, 0.8700890269477094, 0.17709919491625223, -0.23565109378038265], [0.040073934035206135, 0.1789059818350429, -0.983049708547122, 0.7353061108293873]], [[-0.880946886195183, 0.45637928318602744, 0.12510209263484706, 3.563240667169293], [0.4689579076197998, 0.8773430437157954, 0.1017234708627427, -0.2969972615621934], [-0.06333296601193883, 0.14828059051039594, -0.9869152962103778, 1.0882677603652473]], [[-0.887074178425339, 0.4263017261130844, 0.17710516729902298, 3.5304597568143876], [0.4484728893458612, 0.8867828361293117, 0.11175092423881411, -0.18808671832389828], [-0.10941421065284485, 0.17855822540409327, -0.9778269226441642, 1.32902488732809]], [[-0.9115308539019659, 0.38753989218104495, -0.13756574556573387, 3.548563269911503], [0.36125045931952976, 0.9144506273133741, 0.182423013481318, 0.17731593157784947], [0.1964932773053087, 0.11658851647774077, -0.9735489252211919, 0.09766648968913164]], [[-0.9215728973207545, 0.38093399799822025, 0.07478425029993059, 3.6115648830378664], [0.38788971355098345, 0.9113426817967227, 0.13782629087693485, 0.023276108911934792], [-0.015651359211479702, 0.156025015637395, -0.9876290950808327, 0.9304010338510554]], [[-0.8922092973301763, 0.40038471579553425, 0.20893695009481328, 3.5502615499278836], [0.399549273995915, 0.9154488699615857, -0.048101394318594684, -0.04452392574214592], [-0.2105301579511365, 0.040564095495708274, -0.9767454155252968, 1.511155730695345]], [[-0.9049468307754516, 0.377641064001463, 0.19610828704904265, 3.596388065419311], [0.3616799338366631, 0.9254195065682089, -0.11307679834059545, 0.2491560572166738], [-0.22418487667408304, -0.03140005800783758, -0.9740406446487391, 1.5550361515438165]], [[-0.8888326350783107, 0.41269307293297486, 0.19915063236877836, 3.5908341327260573], [0.30784104255505806, 0.8597044070679927, -0.4076054771301363, 0.5710539662156958], [-0.3394266332189637, -0.30098631201602744, -0.8911771993496181, 1.6615583540115249]], [[-0.8848027843859239, 0.4600207117298038, 0.07419553573174088, 3.5258268994823583], [0.349242066775687, 0.7601106608909859, -0.5479614603182555, 0.49212510362563083], [-0.30847043867632096, -0.4589256235812872, -0.8332066133219082, 1.431484537157244]], [[-0.8551200576066911, 0.5183921529357428, 0.006266007770083015, 3.5701720835351836], [0.37409136961756356, 0.6253646054058002, -0.6848173168687426, 0.2404748980438884], [-0.3589224627358738, -0.5832569640221141, -0.7286878478905228, 1.3094603004553438]], [[-0.8333830399082153, 0.5519965395136904, -0.02779440875882852, 3.550891285254258], [0.42632668839241283, 0.6100199567531731, -0.6679230547953969, 0.07989793713263633], [-0.3517360708794316, -0.5684852440721457, -0.7437111426585811, 1.381540810596268]], [[-0.8132181030858362, 0.5795250053772649, -0.05317033906188036, 3.5424211928643494], [0.4981144068728085, 0.6458997990889598, -0.5785287263417362, -0.09246534339776656], [-0.3009291519265365, -0.4969549453213262, -0.8139271637201041, 1.472843036330244]], [[-0.7852230471431778, 0.5974061253440159, -0.16288243501566613, 3.6055067967312406], [0.58376389518875, 0.6264744595579587, -0.516477943571283, -0.44197332273024215], [-0.20650540164664172, -0.5006352693558587, -0.8406663108319173, 1.3236961650892738]], [[-0.7058006137289714, 0.6510288576887417, -0.27929718959613514, 3.524504279714457], [0.7082932464859875, 0.641348737460684, -0.2949448659324771, -1.1149947978568597], [-0.012890719225381042, -0.4059965805448104, -0.9137836756824745, 0.9276467608942562]], [[-0.6056018991919639, 0.7160809640570616, -0.3470942128733865, 3.4389447202161705], [0.7934862764863122, 0.5764006392942223, -0.19529933960231316, -1.515458538325932], [0.06021518681341298, -0.393688145536948, -0.9172697396844097, 0.7328513131800227]], [[-0.5192501665049164, 0.7458412261113903, -0.41725307670198675, 3.2254290545490014], [0.8520029981371553, 0.4899637834791176, -0.18446241363520863, -1.9076113909227117], [0.06685922337205738, -0.451283011326026, -0.8898727369341071, 0.5866382798056219]], [[-0.43154106857955987, 0.8081205532114489, -0.40089085497979765, 3.0408038266438173], [0.89742173767479, 0.42975274779742656, -0.09973364782921443, -2.1654904486828], [0.09168713583688709, -0.40280733265145896, -0.9106809111232347, 0.5431474923984342]], [[-0.2112681436189172, 0.9328726357073877, -0.2917437523584164, 2.4248127693287733], [0.9749938113236601, 0.2221881494105639, 0.004415217103656305, -2.768930089234032], [0.06894083965531868, -0.28351555832063435, -0.9564863244279868, 0.8198786854662866]], [[-0.04465212573880388, 0.9897740817637803, -0.1354749229033603, 1.8852975317115452], [0.9976351344015346, 0.051272133981539805, 0.04577452222154769, -3.1536695528189953], [0.05225252409824799, -0.13311061319686118, -0.9897228088610052, 1.1180244464901679]], [[0.13242769240113408, 0.9862202579423948, -0.09915900921926955, 1.2382826802204683], [0.9911904685442771, -0.13197384268454157, 0.01115167763400058, -3.396895660130985], [-0.002088385090764394, -0.0997622557439061, -0.9950091110018042, 1.348008319319616]], [[0.2560288657645838, 0.9627204776091199, -0.08728402996750724, 0.8056446153896568], [0.9658051550075902, -0.2585718417257106, -0.019000137561039875, -3.581155470668068], [-0.04086101388934375, -0.07943478242333138, -0.9960022554619506, 1.4958944176538915]], [[0.22796952148644684, 0.9629000736758336, -0.14440687444964145, 0.9238025852139822], [0.9734035931476793, -0.22884493886763252, 0.010744245057531465, -3.5047820576549773], [-0.02270114799800585, -0.1430155308690054, -0.9894600627664709, 1.3625874156905056]], [[0.19415774776117595, 0.961423331770919, -0.19485365305996372, 1.070917850084317], [0.9807120566160882, -0.1947964961268967, 0.01606820165811701, -3.4814426207050655], [-0.022508464899893096, -0.1942150926761072, -0.9807007019395166, 1.2544469658313129]], [[0.1673864396462986, 0.9594533624103532, -0.2267840937588071, 1.188428305933072], [0.985797862336772, -0.16605026995233832, 0.02509745925399738, -3.434286846401836], [-0.0135777183203417, -0.22776424918810884, -0.9736216371655831, 1.172533759434565]], [[0.15570734018116875, 0.9611579933286825, -0.227882724387098, 1.2708915338214952], [0.9877909835593606, -0.1526541933857147, 0.031075231947452694, -3.4110530945650503], [-0.004919045897014571, -0.22993914217056893, -0.973192578005672, 1.1397627661464769]], [[0.10852027933639752, 0.97127435201605, -0.2117769630733059, 1.4735245322721588], [0.9935638362717935, -0.09901439194364514, 0.05501866447767298, -3.3330584398006575], [0.032469250462965143, -0.2163845727029364, -0.975768140733515, 1.0558867011604365]], [[0.10546104928977518, 0.9671434504819052, -0.2313255568947244, 1.4830521920087467], [0.9940542068871181, -0.09619132945124931, 0.051024130648389135, -3.326958033774236], [0.027096140919368447, -0.2353312013489839, -0.9715374541513682, 1.0256374399174983]], [[0.11294642792735565, 0.9623521514328022, -0.24722750868604448, 1.4400941818211201], [0.9935392842266204, -0.10661243791639607, 0.03890345460210219, -3.3401874609250988], [0.011081295813485145, -0.25002424825240466, -0.968176161743778, 1.0439041544184118]], [[0.09741726897520019, 0.9742307130003668, -0.2034315451256522, 1.5123570355505522], [0.9947196545079825, -0.08867839086883635, 0.0516619001628249, -3.3337464836279747], [0.032290627756878784, -0.20739011750734565, -0.9777252449023478, 1.0547840211596995]], [[0.05613058637198565, 0.9727780801581989, -0.22483808404553246, 1.6228454523787301], [0.9971859287273932, -0.0434124244887113, 0.06111943183716842, -3.268343606453654], [0.049694877217107414, -0.22763604319997485, -0.9724773781505851, 0.9556322418109967]], [[0.022959775081869832, 0.9784099138393909, -0.20539447224544513, 1.734976153243335], [0.9976573577920456, -0.009180456292784326, 0.06779023281896868, -3.2250270300565047], [0.06444102087633055, -0.20646975498375358, -0.976328630690181, 0.9383352846600187]], [[0.006073268267315885, 0.9800974565320356, -0.1984240184856348, 1.756741717566397], [0.9984064697939256, 0.005189623602294442, 0.05619242725223152, -3.2192873571033322], [0.05610380099586869, -0.19844909550386175, -0.978504123653812, 0.9649330437298925]], [[-0.0318364073649279, 0.9886017491607921, -0.14714966776149008, 1.8502376826778186], [0.995144406307471, 0.045071112960206584, 0.08749974497951213, -3.1263328357704103], [0.09313460023560394, -0.1436494912373546, -0.9852364030557358, 0.9564491024265149]], [[-0.06556196106918376, 0.9916045609019271, -0.11145413433004063, 1.9267958301896173], [0.9929296012823003, 0.07590729747935233, 0.09126274753015523, -3.0766666138917174], [0.09895673882123711, -0.10468274446095241, -0.9895701525682693, 1.0038854153542847]], [[-0.06854183170422312, 0.9945021607141006, -0.07916735211951247, 1.9046990145008018], [0.9918364809253727, 0.07648059715077316, 0.10203486347829155, -3.0772540859101136], [0.10752865856227505, -0.07152741148990463, -0.9916256435738996, 1.0276527968719522]], [[-0.041870267586266455, 0.9964558117892856, -0.07295680806895728, 1.8197239419795237], [0.9958425560647287, 0.04753380644539927, 0.07770547455153523, -3.168562549158533], [0.08089798651834566, -0.06939994521732365, -0.994303355813059, 1.1010142057673986]], [[-0.015395647502010586, 0.996609442135131, -0.08082446340741722, 1.757021402254911], [0.9950864735281606, 0.023178615168277822, 0.09625830873317102, -3.2042588174855395], [0.09780533850093986, -0.07894537127649705, -0.9920694250478305, 1.048133827574485]], [[0.14703220834099084, 0.9832938836573032, -0.10730642139457239, 1.2223510244762086], [0.9824109956989985, -0.13254640228791892, 0.13152979423017294, -3.4261189161500663], [0.11510936208699074, -0.12475812439543663, -0.9854873135445523, 0.9197979656205401]], [[0.44404093272756195, 0.8945665318551633, -0.050777654012979866, 0.10137311797697166], [0.8887167431189243, -0.4325062109575448, 0.15205567395937353, -3.633084179949453], [0.11406226616426915, -0.11264589458907331, -0.987066716017564, 0.9316761965307079]], [[0.6825689474419064, 0.730477240433441, 0.022419482527314794, -1.008032116088278], [0.7192944358964395, -0.6769140267942645, 0.15621432334326868, -3.5158713935154515], [0.12928707002817655, -0.09050083722218955, -0.9874687093703833, 0.904185878686209]], [[0.8043777516982266, 0.5932584606117531, 0.031950453603652416, -1.620889531816392], [0.5844795858081236, -0.7998305480109299, 0.13658223984874146, -3.2491496199519734], [0.1065835181745767, -0.09118932712279414, -0.9901133572841148, 1.0029289722759935]], [[0.8826695936128078, 0.4577766199075343, -0.10646574461972998, -2.0680786876277883], [0.4692723869078324, -0.8709528935049818, 0.14568625254678622, -3.130115071699844], [-0.02603488807785305, -0.17855425943206507, -0.9835855636605495, 1.2558149989909506]], [[0.9121855937898431, 0.38627912444856877, -0.13676944285006937, -2.187242900872095], [0.40565909637981196, -0.8984358238730361, 0.16808857161001012, -2.966343664285058], [-0.05794946079633291, -0.20880974210229314, -0.9762378560558838, 1.3060126833401753]], [[0.9284458743197288, 0.2989813102807466, -0.22045052633523532, -2.271166949486997], [0.3367690130196477, -0.9279172682042726, 0.15986298895645482, -2.7737440921005527], [-0.15676380426758835, -0.22266503872661988, -0.9622086001488582, 1.6125136517394376]], [[0.9596130019720929, 0.15020086658836912, -0.23787094425803845, -2.5118238223032403], [0.1995296235606705, -0.959450791166347, 0.1991032612791863, -2.440688193262815], [-0.19831998327915673, -0.23852437822238157, -0.9506709763245017, 1.7140927584238008]], [[0.9642561793746143, -0.0028737246853735784, -0.2649561515502224, -2.7606200624318684], [0.0584415264521665, -0.9730100547418638, 0.2232398292356812, -2.020379228322677], [-0.2584465293321086, -0.23074482676252583, -0.9380630130212574, 1.8955853078721447]], [[0.9649505274297626, -0.16346778814176183, -0.20530163626494297, -3.039976459366468], [-0.1292897260569006, -0.9768987330452888, 0.1701559053064022, -1.363577008136479], [-0.22837391783904415, -0.13764863825897364, -0.9637936532454943, 1.9368491210472942]], [[0.9434250198342359, -0.2641473957356615, -0.20043798361797446, -3.192357491411867], [-0.24145603585608263, -0.9615679370936163, 0.13071375253657694, -0.9587997123422832], [-0.22726243574211227, -0.07492166362004495, -0.970947233180551, 2.0385497150946934]], [[0.8844828930922914, -0.4226794942755189, -0.19756532323786372, -3.273129294008677], [-0.3965610919699697, -0.9041375525397626, 0.15897983023953932, -0.33952042335648946], [-0.2458237420646656, -0.06226821987498181, -0.9673124400269673, 2.177816585470968]], [[0.8453519800347145, -0.479184240666782, -0.2361408337157875, -3.1662004671905324], [-0.4555729437531012, -0.8775079115591826, 0.14977702784865005, -0.11340028236310451], [-0.2789862411867678, -0.01903493229935803, -0.9601064256533425, 2.3578271995787223]], [[0.8155688956197519, -0.48976009730114334, -0.3081921861260487, -2.983602546512245], [-0.46231629783586203, -0.871795454553774, 0.16197631362246012, -0.07661449891881945], [-0.3480100821138965, 0.010379427294107388, -0.9374333310887372, 2.608249308190426]], [[0.7989770749270784, -0.4897791502666111, -0.34892981773572473, -2.8827969035797003], [-0.4475134090646422, -0.8718417427941073, 0.19905708786444948, -0.18726286960873031], [-0.4017055917563408, -0.0028912775462218154, -0.9157643026815568, 2.7047139790533783]], [[0.7549629777143941, -0.5620523518791533, -0.33782844170929077, -2.814614748334652], [-0.4938430254711849, -0.8262387559174276, 0.2710139930215556, -0.06210512469209128], [-0.4314510035613334, -0.037771311429889626, -0.9013453053956536, 2.7073774714853283]], [[0.7494911648982798, -0.5719125099176631, -0.3334352631907705, -2.8242384998363628], [-0.4789608204800098, -0.8161472498087337, 0.32326490541776554, -0.1656069492183864], [-0.4570115164681688, -0.08258176329747394, -0.8856188379806209, 2.6719043411937844]], [[0.7280848044597655, -0.6191666523567277, -0.29415161757866976, -2.8506625441896203], [-0.510160525288695, -0.7760526703382273, 0.3707809208927414, -0.061769501439729], [-0.4578523298531391, -0.11989541054714992, -0.8809065413412381, 2.5657905049797223]], [[0.6853313767128961, -0.6691312156940726, -0.2873748776016771, -2.785706872461685], [-0.5437689703615848, -0.7326922285631711, 0.4092400335683646, 0.0764076792467522], [-0.4843926206753242, -0.12419949431018873, -0.8659897659027994, 2.528065173890496]], [[0.6247556510526967, -0.7676906521798478, -0.1425883551816241, -2.638150348772498], [-0.5762610594532601, -0.5765527335957935, 0.5792323685197713, 0.3024304397023515], [-0.5268809807115145, -0.2797105788827049, -0.8025948070013753, 2.433241348739029]], [[0.6026533064844455, -0.7405400262891156, -0.297337286002077, -2.6160950524449396], [-0.5830451439917347, -0.6630125979130567, 0.4695451576539116, 0.25449261074481216], [-0.5448553498416093, -0.10961188107269745, -0.8313350006325261, 2.747391346268376]], [[0.6203540362542422, -0.7273189887703331, -0.29354379277574627, -2.6627424157271897], [-0.5773528765839382, -0.6767870563715778, 0.4567525984908536, 0.22696591014028908], [-0.5308714774814353, -0.11386996488097786, -0.8397672924654087, 2.7006494259432006]], [[0.6485361397302805, -0.703703603608319, -0.2901760047495521, -2.7215470016021643], [-0.5917176518285522, -0.7058831055701371, 0.389357498688754, 0.28550166577435204], [-0.4788226143137462, -0.08081014502724651, -0.8741845482976836, 2.655844522112339]], [[0.6004659261336488, -0.7588747242374092, -0.25209090516330734, -2.6285308611657405], [-0.6401340740366961, -0.645105689224286, 0.4172133950242255, 0.6169337215615528], [-0.47923797721971195, -0.0891504494887991, -0.8731455540437136, 2.760597643988102]], [[0.48988781341307874, -0.8319441706849576, -0.2605356542446171, -2.6164381001495567], [-0.7860017967078937, -0.5507726175852184, 0.28080366680349717, 1.5250512621717056], [-0.37710887796671577, 0.06721919801399569, -0.9237264062356558, 2.833307867772791]], [[0.3691773338178099, -0.9203340643209424, -0.1292025783243847, -2.404439840130259], [-0.9236365453079839, -0.37874512430163887, 0.05871680329572447, 2.484562258835745], [-0.10297392080864871, 0.09765931019739853, -0.9898782908848254, 2.0683103022321845]], [[0.3943161878168919, -0.9020964999725074, -0.17531870625493987, -2.364883531858923], [-0.8707145652134722, -0.4277571873985212, 0.2426518793539859, 2.169001488654925], [-0.2938892477629423, 0.05697098705709021, -0.9541401452004176, 2.6984399909479015]], [[0.4088038222255975, -0.8532314498197476, -0.3238449134574039, -2.2007192533528346], [-0.8494237620374759, -0.48548581796844914, 0.2068400179791308, 2.0494545094829486], [-0.33370452112586585, 0.19052457476660886, -0.9232235260164027, 3.0272965789376873]], [[0.5011184224827131, -0.762835983825849, -0.40860933473048044, -2.2365194779258255], [-0.7959213464591645, -0.591627813147349, 0.128396810556631, 1.6819594364622188], [-0.3396903544392562, 0.2608788847165168, -0.9036330397954679, 3.073371786399318]], [[0.526758040163075, -0.7559044524772734, -0.38876011350007317, -2.322460326962593], [-0.7807307758148255, -0.6111137079607237, 0.13038209861049208, 1.5864123769433873], [-0.3361330433312634, 0.23483716628236015, -0.9120669287466432, 2.990640032033784]], [[0.4909365256765955, -0.8482669412871582, -0.19855609805775928, -2.6071772713927186], [-0.8592727432943517, -0.509050859437587, 0.050175443568077724, 2.021732189547221], [-0.14363732240609586, 0.14598088513631896, -0.978804322010699, 2.3191167509871446]], [[0.527196134331889, -0.8279948522551881, -0.19102031458570562, -2.887440415613473], [-0.8492786012046949, -0.5208577379291416, -0.08621527924407575, 2.2311717754741878], [-0.02810860155378539, 0.20768182751084996, -0.9777924959010698, 2.0333658104901646]], [[0.511315818693709, -0.8587526269709991, -0.03316714072678277, -3.0377813737632446], [-0.8552162053075414, -0.5046513761953109, -0.11803487062536884, 2.463600231759061], [0.08462491201148303, 0.08871817274147685, -0.9924553945102326, 1.5736705555326942]], [[0.648917534372526, -0.7607915931854716, 0.010108675590466187, -3.4854308918896004], [-0.7001472548007277, -0.6022860359710029, -0.3834649299079912, 1.910000564724763], [0.2978252091057546, 0.24175955536989113, -0.9235001148935857, 0.9408302497558011]], [[0.7397303484829121, -0.6728995267423443, -0.0022887645746725027, -3.656722083339451], [-0.6236755884759169, -0.6843326425819881, -0.3777798229603742, 1.5526741287733399], [0.25264158777320866, 0.2808826466812822, -0.9258926325016038, 1.1323307214277938]], [[0.7703462627958112, -0.6376058427629017, 0.005042288283845481, -3.729273198398447], [-0.5981171822126343, -0.7253317862253763, -0.34080733007540126, 1.4984168004292724], [0.2209580768800855, 0.25952377379676633, -0.9401196408413873, 1.08909278847692]], [[0.775184051178131, -0.6314744720715622, 0.018157035027850932, -3.772449503019829], [-0.5737717384255572, -0.7157940602234784, -0.39802619955588564, 1.4026074308470924], [0.26434008205940845, 0.29812556829418285, -0.9171943450251403, 0.8799394590302216]], [[0.7621860472106989, -0.6434745022151023, 0.07080250303736922, -3.6728583637373844], [-0.6214877991439252, -0.7579473494257077, -0.19816339473723257, 1.513733102311215], [0.18117766129567514, 0.10703448275004904, -0.9776084464395033, 0.990471843930014]], [[0.786703614642228, -0.6162413396000002, 0.03666107031784499, -3.697392299021614], [-0.5876316426913786, -0.765732526686033, -0.26142446343610604, 1.3233529109063176], [0.18917313555757498, 0.1841203653673902, -0.9645274572765123, 1.061254503173844]], [[0.773673214710462, -0.6329819506473965, -0.027633439782195568, -3.6204208854518827], [-0.6206179157566484, -0.7483394567688955, -0.2341398301970578, 1.4542419212305642], [0.12752709312711963, 0.19829752292313246, -0.971810132135437, 1.3586295205608363]], [[0.8439412436891145, -0.5145417977508903, -0.15169019601725278, -3.59053679470314], [-0.5351515781601429, -0.8271129429548463, -0.17174681362191646, 1.0675907728109648], [-0.03709401020621947, 0.226121467277777, -0.9733925808444226, 1.9370770313348262]], [[0.9175673740865335, -0.3361218841730795, -0.21234922413769797, -3.541679056425083], [-0.3698486202302875, -0.917599140586571, -0.1456839569360301, 0.31482057122844204], [-0.14588389947384856, 0.21221191336662842, -0.9662732489826978, 2.2963570740153596]], [[0.9888515440370325, -0.014264197967788599, -0.14821995989714906, -3.1896032526432316], [-0.049568731276779236, -0.9701628100691866, -0.23733323163490844, -0.8222770480469248], [-0.14041212460178495, 0.2420344079154747, -0.9600540509001656, 2.3711806452460276]], [[0.7995737855026871, 0.53168255996722, -0.2792765958035267, -1.6417808063256787], [0.48315904346236327, -0.8456760032038219, -0.2266923825931153, -2.534667558030531], [-0.35670590162967175, 0.04632227360474361, -0.933067600289845, 2.7639882034231555]], [[0.6642279966167067, 0.7052336043910876, -0.24788451292509384, -0.8478901901696381], [0.6759464460004565, -0.7082408038021019, -0.2036942953769324, -3.104022376922448], [-0.3192139888067378, -0.03225720178979981, -0.9471335187199239, 2.5735402478512364]], [[0.49405812910034824, 0.7911134077643615, -0.36061910809789693, -0.21208631555846927], [0.8173407990237868, -0.5640309588331532, -0.11757166209980865, -3.28709010989683], [-0.296412859574313, -0.23666147454373068, -0.9252733450963373, 2.0899610988465898]], [[0.45020643551967204, 0.8537187965047315, -0.26168374407132, 0.10061979926363641], [0.8526373221438415, -0.4980544072679323, -0.1579601351239217, -3.318136293173702], [-0.2651862784988138, -0.1520066574051981, -0.9521398079066162, 2.1744975587606135]], [[0.2132772415860023, 0.8652241189529709, -0.453762098685557, 0.6538558721852168], [0.9430851275251005, -0.30361971324723874, -0.13566691552706955, -3.1411088190560617], [-0.25515340574335005, -0.39900162118683125, -0.8807351734930594, 1.5724954257867565]], [[0.3299693106748748, 0.9307518041957963, -0.15754787526024566, 0.41880296202206674], [0.8769676753916709, -0.36400678823173505, -0.31373038494756245, -2.841334661101146], [-0.3493536178872015, -0.034642995070964355, -0.936350315085992, 2.583978828745912]], [[0.21690823821493843, 0.9713846488989188, -0.0967609429367845, 0.6591124598497373], [0.876952736167721, -0.23744161670187913, -0.4178221836929501, -2.437710354241548], [-0.4288411299332643, 0.005774300089374296, -0.9033614684809392, 2.8557244444355048]], [[0.05930374977666275, 0.9978774020077245, 0.026902710360512477, 0.8396940336033607], [0.8537525312825299, -0.0367359334948798, -0.5193814460672741, -1.9812743382098512], [-0.5172907118739906, 0.05376952438486304, -0.8541189364815217, 3.1226123233466114]], [[-0.01325572005596154, 0.9976423660832123, 0.06733494844200383, 0.8110869934975804], [0.8161019455902649, 0.04970441268816084, -0.5757665201825382, -1.6466171900508644], [-0.5777559175721024, 0.04731998262060472, -0.8148367437439255, 3.272813195018159]], [[-0.0903716887820899, 0.9906769012382054, 0.10194231319594438, 0.8563893405163023], [0.7623874166973034, 0.13467836297675717, -0.6329511556253871, -1.278526360450742], [-0.6407795133493933, 0.020518671959161905, -0.7674507146213019, 3.347845860162954]], [[-0.25626924236845405, 0.9501956062352608, 0.1773538420985119, 1.0756401524602799], [0.6655470922555533, 0.3065162966243786, -0.6805107110794467, -0.7170565392826018], [-0.7009801305358639, -0.0563566304429326, -0.7109506219133942, 3.299525147586943]], [[-0.46633181869538703, 0.8721193752983076, 0.14812977452741338, 1.5935650240922772], [0.4954806722067764, 0.396230154145329, -0.7729816093643432, 0.11499643164386873], [-0.7328257216704213, -0.2870704794562805, -0.616893022721904, 3.039586439001875]], [[-0.668462969968438, 0.7432449203643336, 0.027280874868495564, 2.0993547684680047], [0.30467940524271153, 0.3071165856089785, -0.9015818669787181, 0.8233715451508807], [-0.6784745520665627, -0.5943621717408489, -0.43174748522901535, 2.359234976222867]], [[-0.8416165030925722, 0.538080221481338, 0.04638250718562542, 2.238270386629604], [0.16359790331592378, 0.33584429630239443, -0.9276013878125577, 1.2852823432348237], [-0.5147012606870748, -0.7730965553485176, -0.37068089828772177, 1.647917972134493]], [[-0.9352218985893225, 0.3537765092119744, -0.014219069195023026, 2.29145235384062], [0.10043351293691222, 0.22656144206029638, -0.9688049455131362, 1.5554872908260282], [-0.33951893890935475, -0.9074756715754695, -0.2474162396054811, 0.8788163279043157]], [[-0.939254531816581, 0.34302918865203413, -0.011484781005414751, 2.146144628144446], [0.07228346674305433, 0.16498784322450166, -0.9836432849482241, 1.6218326331910227], [-0.3355235087108218, -0.9247215728644241, -0.17976091839308284, 0.5718834418555472]], [[-0.9513244214524835, 0.3029788912041477, -0.05644144428345764, 2.069419027635006], [0.11487714612442373, 0.17866576101001053, -0.977180529452476, 1.6317322127447569], [-0.28598091972438516, -0.9360995338784326, -0.20477445208369094, 0.3270555747789171]], [[-0.9695011134248455, 0.2333183901691402, -0.07503412474911551, 1.9173689807418601], [0.12602780280485104, 0.21201992691703542, -0.9691050219198519, 1.65338850651696], [-0.21020129397357795, -0.9490047836544219, -0.2349581592813017, 0.06597290981725466]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9677239214744665, 0.23471051874624796, -0.09176810009991362, 1.7694856342060723], [0.17067231518103834, 0.342460625541642, -0.9239002547809868, 1.7429790075825697], [-0.18542214710445162, -0.9097426517117327, -0.37146592713152093, -0.1893711290647174]], [[-0.9672348089541395, 0.2090859740389956, -0.14401347092412517, 1.7381636279330963], [0.20408562776983663, 0.30291505976111865, -0.9309089768112185, 1.7540645400490336], [-0.15101616100683088, -0.9297986459605555, -0.3356614322269935, -0.5164414302876551]], [[-0.9765894943611154, 0.15750859805408804, -0.1465059761325001, 1.6437801172427795], [0.18237553979455248, 0.24509334634959068, -0.9521913747035332, 1.7548582784294544], [-0.11407068855822061, -0.9566191996370313, -0.2680813027752187, -0.8370410395975403]], [[-0.9930197356346088, 0.06258852452586731, -0.09997240238109036, 1.4179908661956298], [0.10828171508735772, 0.14769999107673526, -0.9830868643277013, 1.7046912634988718], [-0.04676403337942549, -0.9870498413117783, -0.15344619887270194, -1.2314980644285547]], [[-0.9973863458891116, -0.05913869513287096, 0.041510140591750386, 1.0373554880840008], [-0.04454059240585708, 0.0508813237621516, -0.9977109934847599, 1.6759927043015639], [0.05689123537154775, -0.9969522082979667, -0.053382410096460386, -1.6962511024796905]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8754092829820658, -0.48331351450408483, 0.00816296309775244, -0.1771042671776902], [-0.052543335977094874, 0.07835570064478337, -0.9955398445169652, 1.9762052061087727], [0.4805182463894827, -0.8719337307812876, -0.09398821209386565, -1.855148617975287]], [[-0.9219478495154718, -0.38474021212096005, 0.044577258225641514, 0.038464477661889554], [-0.06709734042839194, 0.045301520444373855, -0.9967174720816647, 1.9583565557128781], [0.3814578740585038, -0.9219125454307184, -0.06758068434264364, -1.9221668841127741]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0545189298927552, -0.9850096157236894, -0.16365739584637984, -1.75653455033627], [-0.47111981357463467, 0.11913533691961709, -0.873986780652002, 2.1572184941437564], [0.8803827619511584, 0.12475106584281814, -0.4575624154476968, -0.18080726811726616]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9858291729425716, -0.0664104483693369, -0.1540470516522433, -1.2268222024415536], [-0.1262531188223868, -0.8983901523345419, -0.4206605331807809, 0.4450694910028352], [-0.11045809958072593, 0.4341483462316794, -0.8940437470847342, 1.8232171999450961]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8370898084022462, -0.5089290027633295, -0.20067865560495743, 2.550156388253575], [-0.37316492485444286, 0.7994305180093677, -0.47080652685965607, 1.442320271432014], [0.40003573781284607, -0.31922110992476205, -0.8591095922237943, 0.6687184685883136]], [[-0.902209523800787, -0.36711679399857206, -0.2263696859726743, 2.6962493715214233], [-0.22198556288984933, 0.8452579493143136, -0.4860672885408335, 1.3085047779504888], [0.36978424118887754, -0.3882837347677226, -0.8440944001017866, 0.4823141710779314]], [[-0.9345809425927898, -0.24224549639491433, -0.26052942486167263, 2.9415804650976543], [-0.09408900115760589, 0.8745736503355456, -0.475676560280115, 1.074094383256641], [0.3430826745895753, -0.42004529471848556, -0.8401525032881376, 0.4415659154722177]], [[-0.9073101441378292, -0.3218903141511603, -0.270508646812369, 2.9971439496710595], [-0.1604439736962292, 0.8597320808813557, -0.4848901735527108, 1.430487032428427], [0.3886464121140904, -0.39654429104336075, -0.8316889993211182, 0.2195083328377776]], [[-0.8709630712053906, -0.39986120259369073, -0.28554219873216846, 2.9633597548047343], [-0.24435003060523972, 0.8566691508572863, -0.45432480508186496, 1.7136760202073822], [0.4262820558499879, -0.32592788255959876, -0.8438332917291923, -0.023449256018044633]], [[-0.8619750146171397, -0.41244986037673986, -0.2947612370224249, 3.0216409403424307], [-0.2767509932454259, 0.8699998666495831, -0.4080552900862553, 1.953192704718445], [0.42474458432504186, -0.27015799952049446, -0.864064056295384, -0.10561641212197219]], [[-0.9377331731902991, -0.3008392622957082, -0.17364398682311563, 3.628364855102474], [-0.154146544440889, 0.8083919553252258, -0.5681032383311962, 1.3898704358076013], [0.31128016116576607, -0.505962631848275, -0.8044292861636637, -0.09303132495891432]], [[-0.8586209026323499, -0.4563976054275842, -0.23339102665435918, 2.9751677587410956], [-0.355558540007668, 0.8582181750708019, -0.3701887202573269, 2.535447508981231], [0.36925366645495095, -0.23486760044354577, -0.8991601303836079, -0.032236465702722]], [[-0.920190223646948, -0.32658303853941517, -0.21585520897801488, 3.3447608335766286], [-0.2960185689774031, 0.9413030313643158, -0.1622393600977284, 2.451919144753368], [0.25616978573818977, -0.08539392298467621, -0.9628524906714097, 0.522795859498079]], [[-0.935615063345233, 0.25568043165746046, -0.24341727569946742, 3.7443910176039443], [0.3237761619471393, 0.8962881207362098, -0.3030455437420806, 0.19938525860950163], [0.14068919715555855, -0.3623466868823395, -0.9213638957052293, 0.468781639980662]], [[-0.8256514299891353, 0.3824908109783931, -0.4147294246541796, 3.3429558462405877], [0.5107263683984377, 0.8190457262250802, -0.2613860649976858, -0.2572571888738105], [0.2397045948233764, -0.42762703126617496, -0.8715944179209952, -0.12907568311430753]], [[-0.7302437066401393, 0.5784591931619777, -0.3634956543878679, 3.4576198135095684], [0.6649978306880774, 0.7237958685958215, -0.18411253565081248, -0.920874744589827], [0.15659506407489854, -0.3761708421050393, -0.9132214865285223, 0.26871749252952654]], [[-0.6389979257060866, 0.7358758844228157, -0.22398288699866548, 3.5285440735982534], [0.7690921948706242, 0.6162779732235233, -0.16940677527357698, -1.4553223038977083], [0.013373359054630343, -0.2805140681756355, -0.9597567456512875, 0.9963089756026295]], [[-0.5274577054933794, 0.7117587861691385, -0.4638833896861305, 3.042653107319655], [0.8185033883803768, 0.5720570440903243, -0.05294281364342959, -1.6454221254784487], [0.22768524793122158, -0.4076152212781995, -0.8843128740761513, -0.06336742481046806]], [[-0.3584663759029671, 0.9063419326280159, -0.22370998749967547, 2.8298174209908598], [0.9294564119293588, 0.36889510888566207, 0.005213152945895583, -2.32259830826251], [0.08725041931357129, -0.20605994225066707, -0.97464181345213, 0.7977201431034157]], [[-0.1352009556981832, 0.9768131413874495, -0.16600237465494466, 2.1780136047881395], [0.9883134115306682, 0.14485849378331533, 0.047461746358948786, -2.78181731696047], [0.07040811151358797, -0.15764549975058584, -0.9849825349931225, 0.924238046681814]], [[0.11775708518649397, 0.9908669046101242, -0.06569662271937986, 1.3449721977650781], [0.9926756536293644, -0.11925361582652438, -0.019329299103034228, -3.2944929595588426], [-0.02698732257738382, -0.06293927597813091, -0.9976524103912409, 1.511621986699691]], [[0.16741985964378336, 0.9845332282938848, -0.05162279517883972, 1.1839215399480834], [0.9854016963270036, -0.16546758851063625, 0.040049644546960764, -3.329907115077289], [0.030888306407420782, -0.05757429580720576, -0.9978632736951419, 1.3682404572414868]], [[0.10603210920631188, 0.98846200793191, -0.10816677258972758, 1.4176751706395734], [0.9887466656761059, -0.09326262940965381, 0.11697056497247796, -3.1544762380929208], [0.10553304189515143, -0.11935217145412455, -0.9872273477966168, 0.9766411356343573]], [[0.2227701065554152, 0.9346768329343268, -0.2770427721510621, 0.9182080123301272], [0.9725898451728833, -0.1936558118197141, 0.12871060412815177, -3.299223421570226], [0.06665187688186672, -0.2981218618691081, -0.9521979220644308, 0.7037240445892602]], [[0.3068554228895183, 0.9388804869355327, -0.15602301335056884, 0.7037205449799415], [0.9516914280379252, -0.30077199726890624, 0.06180316705483162, -3.450250356708586], [0.011098434233234547, -0.16745040134490502, -0.9858180297838949, 1.1424985214348538]], [[0.4935417369317306, 0.8589283719258848, -0.13659650730219774, -0.07516911755478821], [0.868644411793774, -0.4789963822405369, 0.12656757744353836, -3.4378768552748533], [0.04328325040773594, -0.1811201747493268, -0.982508036879554, 1.000784676689309]], [[0.5246728131087695, 0.8422001026286392, -0.1241669292397933, -0.25174958959999677], [0.8459195620386162, -0.499400414286103, 0.18713449914770994, -3.3513429784906594], [0.09559567848457429, -0.20321961849973538, -0.9744553621956705, 0.818349205332157]], [[0.6670875811498077, 0.736146825070797, -0.11437661917491797, -1.0856207064963896], [0.7445924037862288, -0.6538888475033242, 0.13420703161392428, -3.089102315842935], [0.02400648453115274, -0.17469180590102273, -0.9843304636408933, 1.1680369077166093]], [[0.7724823893535316, 0.6335650683455633, 0.04320025822770625, -1.6663249411618726], [0.6290151602372253, -0.77273122080113, 0.08500816778953361, -2.7765767622836344], [0.08724039391472647, -0.03849369521723471, -0.9954432927586214, 1.285508059913112]], [[0.8290489494751457, 0.5565703696337163, 0.053919041348541155, -2.1252122770963022], [0.5524897027499158, -0.8301856803119447, 0.07447727546240547, -2.403516104277205], [0.08621466075712965, -0.031955591854662374, -0.9957639642102697, 1.3345869011758897]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8918100602790738, 0.3775673493633846, 0.2492342534238473, -3.0924073804792087], [0.42170754842734476, -0.8932543081686762, -0.15575456506150281, -1.5520463751153506], [0.16382173233253683, 0.24400745405172997, -0.9558361796786932, 1.7163927662962082]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9843350683475584, 0.10477556284707334, 0.141797583376046, 1.9140178070802334], [-0.042148215107853555, -0.9207836728769008, 0.3877898344806716, 1.309654403614818], [0.17119579780014996, 0.37573861818211285, 0.9107757625355246, -2.625913886938092]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8235044853083135, 0.5352321394635906, -0.18806094640386425, 3.588157208471346], [0.5634052226271231, 0.7327677034918911, -0.38160981097935753, -0.4158964412231004], [-0.06644484775790668, -0.42021191035529526, -0.9049900732063207, 1.1837021572032933]], [[-0.7466213831240563, 0.6578564618541843, -0.09890088906888092, 3.565873346559499], [0.6511887985606765, 0.692315476590174, -0.3108897384971447, -0.7171053988855868], [-0.13605020724359, -0.2965200776851617, -0.9452862977101498, 1.5887733373294828]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.441209443436824, 0.886615141833681, -0.1387365031035824, 0.2749263971178689], [0.8924655552417449, -0.4497028705270699, -0.03567297221647794, -3.5422886360545416], [-0.0940184010139103, -0.10807829805726721, -0.9896866280595247, 1.6607401689730092]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9332483362438934, 0.35515361237638976, 0.05397642553936016, 1731559.8176735528], [0.3515732039463728, -0.933843569398724, 0.06582150225824969, -7823148.864617206], [0.07378228218811861, -0.04245114260713951, -0.9963704508497135, 3302138.6550570466]], [[0.9026603577809543, 0.417493297029125, 0.10442042628964052, 491707.1713890955], [0.4239653405624067, -0.9043391326759449, -0.04923538476261592, 903880.5361478496], [0.07387603462938386, 0.08871347161886496, -0.9933137729140614, -354672.684822008]], [[0.8810791181644926, 0.4452786088901943, 0.15945704123460103, 48137.13659242857], [0.46733605683965773, -0.8714940483801794, -0.14864431914972318, -26667.199144524682], [0.07277772675784891, 0.20548743052249666, -0.9759499569062038, 24215.864178404754]], [[0.8655056860812054, 0.48953716537468855, 0.10608143606690519, -369993.4782074902], [0.5007082614413829, -0.8397056118252264, -0.21020400184956126, -96836.7220303271], [-0.013825494039990754, 0.23504861026208476, -0.9718852846547339, 496939.849560845]], [[0.7499462451937712, 0.6596933349516827, -0.04883987244138576, -1074127.050984533], [0.6489042476083844, -0.7479985631847954, -0.13936077966658034, 2458427.2966791764], [-0.1284675319119983, 0.07282069275836146, -0.9890365210398607, -1005097.90678095]], [[0.7329127384543483, 0.6707400747584366, -0.11378343431446901, 749295.0710543619], [0.6514328200533951, -0.7401254657941907, -0.16688192184959344, 5637925.350873266], [-0.1961484100588869, 0.048187622850475294, -0.9793894803577337, -1321730.0827200562]], [[0.6832822902055307, 0.7061624450053764, -0.18563381468771772, -7645.562161624664], [0.692558147352521, -0.7073340195848823, -0.14156905478789356, -3572.4931387459947], [-0.23127586218005747, -0.03183058280840283, -0.972367363485092, 17889.668844107095]], [[0.6719755715800843, 0.7060434580324506, -0.2234982473515135, 11288791.094833441], [0.7080859997768716, -0.7009457483785005, -0.08537724960487242, 27665635.72651565], [-0.2169401947994136, -0.10088455382110526, -0.9709579077801003, -7985575.211076319]], [[0.6629085025778867, 0.7002797786527011, -0.26487836608539367, -1272269.7911281995], [0.7042903248326331, -0.7032915929634069, -0.09672679884157133, -1229229.8955535442], [-0.25402254930830087, -0.1224302531122005, -0.9594182495480239, -2242579.3421049863]], [[0.6248992961947578, 0.7277670363521161, -0.28258805780597673, 2891358.8684278056], [0.7327237444003935, -0.6716632553135524, -0.10947321980041136, -25066444.908673245], [-0.26947501555276576, -0.13864924183297897, -0.9529740834524186, 2480941.1394683123]], [[0.6041568619520148, 0.7424080116578293, -0.2895251809127533, -439746.79106229736], [0.7501529508119593, -0.6524424965382363, -0.10765379277603082, 397232.4558002914], [-0.2688215700876782, -0.15214839117526896, -0.9510971719642394, 699899.8639780332]], [[0.642633504002648, 0.7168885206130057, -0.27035722395855205, 8137.9548214111865], [0.708811995129425, -0.6902416782780282, -0.14543720682333922, -4449.062048023608], [-0.2908740880414112, -0.0981696214784738, -0.9517116109015642, -1549.9443889004745]], [[0.6254009640974604, 0.7435595632716051, -0.23662799913219723, -1298.2637792630783], [0.7301918381959193, -0.6646010761203888, -0.15850958662392092, 33654.03794057226], [-0.2751245418679179, -0.07365178536167141, -0.9585832780593491, 42720.346508252595]], [[0.5895421126548576, 0.7387750943331036, -0.3265753472011647, -432.7943245624348], [0.746078411144168, -0.6529798359304694, -0.13032397435933216, -827.5138391645892], [-0.3095272230855331, -0.16681934498532172, -0.9361432605683959, 3503.0925390078105]], [[0.5651436906204782, 0.738624997947254, -0.3674856750395647, 2640.5176252139936], [0.7692307104719082, -0.6327641988193132, -0.08884583704055588, 1702.2138855127123], [-0.2981555349456871, -0.2324706026575677, -0.9257757265565347, 8098.498108975007]], [[0.604590315222103, 0.7200823320779972, -0.34051723270453, 2859.568790925294], [0.7505706625916457, -0.6581410764660075, -0.05911010002446987, -3550.9371794581966], [-0.2666725167623693, -0.21984485096830841, -0.9383783939895175, 6131.569194016338]], [[0.5908809165855585, 0.6615319720137806, -0.461773962473599, -2278104.228440216], [0.71446179042054, -0.694931170953306, -0.08133275887699187, -368008.1922514115], [-0.37470534082674395, -0.2818618768848057, -0.8832608844021612, 7710371.589248952]], [[0.5474837997614602, 0.7586537055339648, -0.3531374294496938, -2577924.5872223126], [0.7959208111277405, -0.6024000933489974, -0.06020124539308551, -2785653.5648133284], [-0.2584019183607444, -0.24811022270898697, -0.9336325647570267, 790046.5220264967]], [[0.6571496331527873, 0.690017166483664, -0.30336557089592825, -911.5658895736282], [0.6888015231511574, -0.7131833777647913, -0.13008432413111215, -33511.08771724018], [-0.306115699289995, -0.12347380142304719, -0.9439530703431919, 27357.105051714738]], [[0.513036855668176, 0.7841705708959434, -0.34909841086266974, 2824.48968312702], [0.8154762897920829, -0.5722233138024247, -0.0869419342314777, -1584.6971739492565], [-0.26793955570809275, -0.24007706029877543, -0.9330441573715833, 4915.512302988034]], [[0.5239272593100311, 0.7832110005164408, -0.33478464066010427, 566.2147524215052], [0.8147914158751544, -0.575392878249935, -0.07097875932570646, -219.34581885851003], [-0.24822404309018983, -0.2355919445339575, -0.9396176137677861, 1202.8185053891702]], [[0.6117793933869982, 0.76762188905551, -0.19100421270193751, -0.37312448004926635], [0.7514408748241674, -0.6393962668556394, -0.1628159254328697, -3.3686698688721446], [-0.2471084488044199, -0.04392094459278153, -0.9679919241169067, 2.206567232479219]], [[0.3252432799345028, 0.9083869517388351, -0.2627735808030817, 570.731357809627], [0.9417661368968223, -0.3362527997032381, 0.003255470191791565, -3979.7567761694804], [-0.08540112558908315, -0.24853007987437054, -0.9648520338092035, 4494.009541828718]], [[0.34954119413274115, 0.9104661573768313, -0.22107087070829684, -344068.9110250948], [0.9367847698752565, -0.34364571420783435, 0.06589323209822706, -324247.578702032], [-0.015976499429487936, -0.23012822377547454, -0.9730291630202692, 520126.236723179]], [[0.5274922152905268, 0.8390549670956842, -0.13318680490180995, -12.31293990320172], [0.8495597895531046, -0.5210353784556463, 0.08228182285332529, -56.458538454241804], [-0.0003560651305431206, -0.15655317495867532, -0.9876694672956035, 51.72927202117734]], [[0.691619129689304, 0.7181384417962968, -0.07707241959479873, -8891.872393664302], [0.7213859618051812, -0.6815803248825442, 0.12268070281596571, -11675.462018423379], [0.0355706839718255, -0.14044728244929672, -0.9894489816531139, 7894.116274376411]], [[0.8039496185849648, 0.5931215195688387, -0.043265156898378884, -364.91067919429406], [0.5855044449629433, -0.7766820996045096, 0.2322702328809408, 4534.284921749665], [0.10416120057740023, -0.21206550680929329, -0.9716885638495456, -851.3566180390353]], [[0.8637961383271109, 0.5037804482192098, 0.007841645441034488, -2.014647571938493], [0.4914671784567587, -0.8459074765048975, 0.2071244883949466, -2.8398256819589913], [0.11097857410745232, -0.1750594218691698, -0.9782831670349379, 1.2969851590814783]], [[0.8596533760979773, 0.5108614685002385, -0.004078353237449997, -310.3582066097566], [0.4993720096389293, -0.8385812091294633, 0.21773642709511135, 3543.5418135172463], [0.1078131205026858, -0.18921447010402645, -0.9759990857325257, -1628.580355698513]], [[0.8342120958361927, 0.5447386437119406, -0.08573207805403041, 17278252.71318517], [0.5497900531226203, -0.8095664879452626, 0.20574984588912607, 4724463.3247853], [0.04267407465913278, -0.2187736539047795, -0.9748420444918953, 15040227.071112588]], [[0.8479702696357634, 0.52948519265546, -0.024328020315294192, 13.577099679733058], [0.5247962971891957, -0.8322479854031202, 0.17875160768216378, 288.72967887598963], [0.0743993835348139, -0.16434330394348054, -0.9835934171081979, 353.6216220040426]], [[0.8521751005841282, 0.5232546460847383, 0.0014742100143996656, -1.1970944872255131], [0.5181618851065002, -0.8442665064967835, 0.1368295539369868, -31.774268787953595], [0.07284132595793039, -0.11583885944902887, -0.9905935088997093, 26.987249264253308]], [[0.8211551959842429, 0.5630285642022287, -0.09328976364240912, 1997429.2151834639], [0.5705113980983231, -0.8140922614021108, 0.10849209448201774, -568405.0505759604], [-0.014862326465814223, -0.1423117205910152, -0.9897103037932108, 1085801.5495470595]], [[0.8009603714750904, 0.577755631997729, -0.157037934975566, -1.0115405593072857], [0.5975920423888467, -0.787539049527863, 0.15055230434064176, -3.192077068635621], [-0.0366910643074337, -0.21443104990568662, -0.9760497377881584, 2.5876305699382653]], [[0.7931003327146705, 0.6021884012880709, -0.0914384580031626, -2.3934387545209814], [0.608726420034047, -0.7784495542684449, 0.15319411546072048, -4.514865145227024], [0.021071492600475597, -0.1771593091355258, -0.983956590194004, 1.1384603623225675]], [[0.8287578683571454, 0.5554109249800419, -0.06840394761221541, -1.7409415089452638], [0.5582230546558129, -0.8119159061922094, 0.17082032233553696, -2.9799608386517398], [0.0393372201210732, -0.17975334679748717, -0.9829248788326851, 1.279488591846322]], [[0.8438202615285585, 0.5318042067379765, -0.07177500908858533, 95.35480272699726], [0.5345642768431806, -0.821312634686803, 0.19921493424678105, 245.17159069586342], [0.046993618258252295, -0.2064699537453657, -0.9773237733951754, -53.000278851509165]], [[0.8467881847751183, 0.5266932732091639, -0.07445781410622435, -247.33193146582505], [0.5290763192176279, -0.819472542933969, 0.22032475988971736, 455.90763369475985], [0.05502743468840596, -0.2259622697123391, -0.9725806054502948, 195.50721643153156]], [[0.8709021642818037, 0.491323261307066, -0.011439980238566377, -4.967566662226539], [0.4854687545956105, -0.8564358422869601, 0.17560676626375382, -5.259494703144818], [0.07648207999693239, -0.15849006576064723, -0.9843939203868182, 1.8337555496342157]], [[0.8788844739925844, 0.4767124304270002, 0.017531116654701147, -7563.053801394432], [0.46591184237242667, -0.8657017148278281, 0.18299370503186438, -4565.714086181548], [0.10241209162940312, -0.15266237133144653, -0.982957763013015, 1325.2695241519523]], [[0.8818235819185514, 0.4715039426623895, 0.008438153006324375, -2.1943676562151353], [0.4658049928384318, -0.8736778690279312, 0.14040188680214324, -14.239961277821472], [0.07357227072154614, -0.11987916092730841, -0.990058638544324, 15.811117745450503]], [[0.9055141249784232, 0.4241249993559259, 0.012733985467893488, 4502.898402551977], [0.4198121846304174, -0.8998599404830009, 0.11836307342142706, -3410.631615987174], [0.06165954184387819, -0.10183355260063202, -0.9928887291455861, 2227.250144406342]], [[0.8889615114460382, 0.45788711536371496, -0.009317765368985334, -9917.588070524975], [0.45638919217602425, -0.8839913179104542, 0.10133239918138334, -281.4466773955028], [0.03816197626553835, -0.09433313014437275, -0.9948089887635084, 1939.020735821985]], [[0.8841387183745066, 0.4662157055852181, 0.03068619456306182, -2.2898530501111467], [0.46134364951647233, -0.881513032507413, 0.10048288695298664, -2.7617706239504183], [0.07389698046542349, -0.07468392989968857, -0.9944654578681107, 1.1107464106225988]], [[0.8665274152194627, 0.49844104895061886, -0.026206094598080813, 8.430042466584936], [0.49748190064971104, -0.8582133852969903, 0.12641813091100024, -0.6217225757905993], [0.0405215646172235, -0.12258183396444407, -0.9916308268619354, 15.1626765502063]], [[0.7867251976595631, 0.6124377372423441, -0.07735296612928885, 152.41256188586556], [0.6171094248479699, -0.7771379676947587, 0.12342016419964756, -25.779915077832413], [0.01547323919963367, -0.1448329975134734, -0.9893351210282253, 45.497591757850614]], [[0.7992818960015088, 0.6008558799765794, 0.010984635715577257, -158.60362854421328], [0.595123864647589, -0.7939328605085023, 0.12449176170215367, -1141.6595691689638], [0.08352267028269425, -0.09296679247106512, -0.9921598354330269, 424.0952568422067]], [[0.8270349208899728, 0.560717888165807, 0.04010847191546782, -1.9011913700597713], [0.5536089859418702, -0.8247832712770812, 0.11510710710416797, -2.939281715493097], [0.09762341068068894, -0.07299318675296906, -0.9925430289789533, 1.4116147402388008]], [[0.8263571192075438, 0.5624191748909286, 0.02861089390452659, -15.73436234469901], [0.5585877522939402, -0.8250605859376972, 0.08517483501215298, -38.86383095159094], [0.07150968131807606, -0.05440313637237068, -0.9959551517165, 12.262968526083982]], [[0.8279995846152056, 0.5606855291948178, 0.006958823792421531, 42236.6089031148], [0.5571098860025552, -0.8240001743988427, 0.10320991962450815, -172515.70525246114], [0.06360238042138812, -0.08158094104755367, -0.994635253378106, 26717.53327425557]], [[0.8063526200667184, 0.5912382674409359, -0.015256579727415395, -14341.549434018561], [0.5898411371963858, -0.8020192786199848, 0.09408777600068156, -30190.21396579058], [0.043392222602823854, -0.08486688303054611, -0.9954469986806266, 6157.182395042197]], [[0.7411063528876344, 0.6688684611512445, -0.05810641433400726, -2.771679605361822], [0.6701207236971449, -0.7316179888114519, 0.12519318719124461, -3.1144806921569215], [0.04122607647113617, -0.1317197787906333, -0.9904293566399089, 1.2772380214212533]], [[0.7038844292311954, 0.7071274845394826, -0.06721183597208255, 306.9410733118713], [0.7095411662926479, -0.6955491174819557, 0.11297237939488627, -519.6456981654742], [0.03313674126922203, -0.12720906327356118, -0.9913222536587789, 221.66831701250908]], [[0.6987325681209081, 0.7122768900079317, -0.06659151753631355, -1.206466469055931], [0.7142060769044174, -0.6892170293004666, 0.122022810306278, -3.3371694931914373], [0.041018019941995554, -0.13282137810935826, -0.9902908681580225, 1.2158000820203174]], [[0.6767117280809224, 0.7358795186081173, -0.023293157167231234, -1.1661647921720977], [0.7325865922761714, -0.6698579090116187, 0.12086052520061427, -3.4493394688802135], [0.07333567954903174, -0.09885198949777077, -0.9923961720388759, 1.162715611574611]], [[0.6589960024287126, 0.750580627524327, -0.04850763206098287, -1.1217323395468375], [0.7487401574627819, -0.6485150586650951, 0.13717286643945747, -3.466158120671684], [0.07150136631970552, -0.12671598269277723, -0.989358688416198, 1.1688759838928724]], [[0.6386687104519573, 0.7682355647440144, -0.04377665304793245, 31.12527028441545], [0.7622657825519974, -0.6238817084408479, 0.17240211896412272, -32.616088342492326], [0.10513398613210125, -0.1434772836910907, -0.9840534101483522, 23.740048216623848]], [[0.6617128128632997, 0.7481483662433723, -0.04909353704829818, -1.0968111456095728], [0.7453602431006761, -0.6493390781195233, 0.1509863226646332, -3.4390777467019937], [0.08108181853807135, -0.13650195498329176, -0.9873160360230653, 1.0830967234206064]], [[0.6519811501107428, 0.7567839724290474, -0.04688922024073455, -1.0490558091743192], [0.7538612946485573, -0.640346885355141, 0.1471360419705936, -3.4219779386897424], [0.08132483219210726, -0.13127789414247165, -0.9880042440083165, 1.070327763354768]], [[0.6350674160735751, 0.7705780475467332, -0.05384096656540743, -0.9830567651838328], [0.7686932093829995, -0.6235642834041635, 0.1424020165275636, -3.4566213929141605], [0.07615856412838176, -0.13182206606527216, -0.9883434706660364, 1.1252761230811823]], [[0.6928631762784044, 0.7156387976062142, -0.08832740411748045, -1.1436466048186866], [0.7199968314819611, -0.679944991030669, 0.13885017763128535, -3.2530367490525665], [0.03930879816703976, -0.1597996261980457, -0.9863665129421352, 1.1909905266553469]], [[0.6741727446781297, 0.7349353077218536, -0.07322024171594461, -1.0918242561518685], [0.737484309081, -0.6644795681671948, 0.12076339407145292, -3.368179130323628], [0.040099927586930206, -0.13541416821042523, -0.9899772718882995, 1.192609387505028]], [[0.6587231375403096, 0.747456594447474, -0.08597945967517323, 17.4583155394943], [0.7512298318368611, -0.647071590902894, 0.13020021507186066, 40.74027063263507], [0.041684143596956075, -0.1503562292137637, -0.9877527203248828, 4.2411072023194265]], [[0.6756726047147571, 0.7324223593078014, -0.08380941966133316, -47092.48208906458], [0.7356776678615911, -0.6625975043933531, 0.14050948786979284, -100522.74216438275], [0.047380378298469986, -0.15659513005740244, -0.9865257548562023, 61632.4691487012]], [[0.2373278597303421, 0.041013462534487566, -0.9705634357870419, -9.241321925611699], [-0.5775644835774875, 0.8092982831586886, -0.10703063199976601, -2.704972670852722], [0.7810856254634861, 0.585964320387625, 0.2157569487339479, 27.664961960961243]], [[0.616970135476157, 0.7869771182401111, -0.0038558134061212612, -0.9361584038029529], [0.7754561976773215, -0.6070878194343551, 0.17352828293471476, -3.4825080802084516], [0.13422197068424854, -0.11005178263403989, -0.9848213379718712, 0.9001086197644419]], [[0.5945327924432059, 0.8035165215783493, 0.029865670263936273, -0.9055011729775371], [0.7814310697883617, -0.5861457948443133, 0.21400605214746798, -3.5071049515471535], [0.18946303565366138, -0.10389565311868627, -0.9763756712372247, 0.7407254956246634]], [[-0.41453988293435895, 0.8882461968279255, -0.1979277122524644, 47.743778508451776], [-0.8677863681756931, -0.45133096997989464, -0.2079595507435228, 37.13726327215615], [-0.27405018639878437, 0.08555144275658787, 0.9579026286512935, -150.46119932056712]], [[0.6092927117519318, 0.7925853673322594, 0.02389198394367699, -0.9576726914742947], [0.779550682399152, -0.6042431290179482, 0.1648968605086708, -3.468283603430051], [0.14513140589477513, -0.0818454429115451, -0.9860213986002633, 0.9764437375896444]], [[0.6824062874928065, 0.7299450360192853, 0.03875439563571194, -1.2634719574206539], [0.7229205063135752, -0.6817874274521809, 0.1120350182731329, -3.2550200182478455], [0.10820166515173936, -0.04843705357411189, -0.9929482622470567, 1.0597889772558764]], [[0.7002253855040453, 0.7136849196264567, -0.018391438048422727, -1.3141267178086355], [0.7122530229187507, -0.6965963502258322, 0.08630849433949445, -3.2284710650558095], [0.048785662225826816, -0.07353475606695822, -0.9960986892930639, 1.260745909435791]], [[0.7257428615706167, 0.6843394698030071, -0.07054636028195758, 359991.53644269065], [0.6864444522227894, -0.7271367564095911, 0.00813335666830562, 365922.57366530027], [-0.04573087460181802, -0.0543288831826905, -0.9974753428332325, 93091.04655273983]], [[0.8012058051195785, 0.5980611153789894, -0.01980303295778533, -1.889970215041797], [0.5978383609156626, -0.7986109747424663, 0.0693527594156225, -2.9841724271685814], [0.02566226919744377, -0.06740484620949946, -0.9973956259414369, 1.336423894720047]], [[0.7428253714651332, 0.6689411350176193, -0.026985651539774697, -1.4372229167064778], [0.6694833533300333, -0.7423149333010468, 0.027578604247418002, -3.149168893124168], [-0.0015833892953636183, -0.03855253142922232, -0.9992553203254599, 1.4623782559807568]], [[0.7214059002973042, 0.6917670025143193, -0.032123842369640165, -1.3781623932018678], [0.6925039031529777, -0.7203896156606576, 0.03843365408311866, -3.152988189836609], [0.0034454512225425976, -0.04997215105079421, -0.9987446685641077, 1.4443760574952789]], [[0.7055053281674036, 0.7078420898329137, -0.034954367228966, -1.325293144476656], [0.7086709561415033, -0.7050939205254801, 0.0250607094770902, -3.1783989127942323], [-0.00690708685999997, -0.04245160890921505, -0.9990746483882609, 1.482048388097539]], [[0.7434448996538023, 0.6674156507421315, -0.042965454998232025, -1.4970546292394988], [0.6687888037851474, -0.7422215721723345, 0.04276299490985459, -3.11741806239081], [-0.0033491954824443997, -0.06052674571200507, -0.9981609569318645, 1.4535220109924822]], [[0.6999448182121744, 0.7138812690556868, -0.02123170151844423, -1.3022582398227105], [0.7141945499351525, -0.699709839483962, 0.018228696394786095, -3.182734036614646], [-0.001842905545901283, -0.027922647094616247, -0.9996083880592332, 1.5022666829600648]], [[0.6816139971053918, 0.731308271899812, -0.02430165428363726, -1.2341983667588414], [0.7315345560154597, -0.6818040778351677, 0.0006267396596349086, -3.1904274075943317], [-0.016110627091305674, -0.01820469440137, -0.9997044747306465, 1.5608058646534642]], [[0.6828183439987099, 0.7301220870040814, -0.026093048263172283, -1.2475939639790214], [0.730171510885971, -0.6831995921990421, -0.00937453516507741, -3.1774812319939043], [-0.02467131511204869, -0.012651295896765235, -0.9996155615649323, 1.597700324523794]], [[0.6608056905724625, 0.7500840540763831, -0.02664115476830416, -1.1538241330169212], [0.7504232135308906, -0.6609417607916829, 0.004581422875237681, -3.3087651045670294], [-0.014171799498390123, -0.023019571280280524, -0.999634562946405, 1.5845394299981967]], [[0.6447541648182149, 0.764389673464366, -0.0007028873351431937, -1.1152060540154998], [0.7641421221853182, -0.6445682288711989, -0.02487198086128116, -3.2179754737743123], [-0.019464944173675915, 0.015499207427656458, -0.999690397331809, 1.617135120032615]], [[0.8006523095366281, 0.022640005006759112, 0.5987013524345484, 87.19209051405761], [-0.3993840041558253, 0.7650449407973768, 0.5051719071611147, 0.3398459829960486], [-0.4465963462211968, -0.6435787976103875, 0.6215770546024402, 193.65513713966303]], [[0.6408649674917, 0.7643524865820167, -0.07111518612610207, -1.0313433789055475], [0.7617735867368031, -0.6446655174096573, -0.06408879163383442, -3.172547421585858], [-0.09483193550702579, -0.013101409039736483, -0.995407081092537, 1.8702585582386018]], [[0.6728918701026081, 0.7391210648696818, -0.030275115453493123, -1.186221059831129], [0.739548646407709, -0.6730863057315575, 0.00475653583709261, -3.165261030892014], [-0.016862109783185385, -0.025590554948099274, -0.9995302860599611, 1.5442549984266516]], [[0.6565308735821151, 0.7542991519526926, -3.737584118159885e-05, -1.1176463234475407], [0.7542975799628066, -0.6565294025420536, 0.0020747192648023684, -3.2150624870889106], [0.0015404206432998785, -0.0013903097579106968, -0.9999978470691919, 1.52679269772777]], [[0.6803967797859237, 0.7305582894215038, -0.057834313469352944, -0.8673281696843655], [0.7297706854776341, -0.6826501282979563, -0.03772994768466025, -2.6073239510368795], [-0.06704452755034626, -0.016534451678523868, -0.9976129726668759, 1.6956347851103946]], [[0.6693102789282177, 0.7420342015062826, -0.03753657304503175, -1.1844530337833243], [0.7416650233468975, -0.6702776770966692, -0.025706589228053474, -3.2387556637394836], [-0.04423509539808198, -0.0106338789172844, -0.9989645524012831, 1.6775404084777517]], [[0.6045103024009532, 0.7954735970095608, -0.042297171912304976, -0.9020140664393014], [0.7956734691293883, -0.6055139414904476, -0.016018651138804622, -3.5218936119382365], [-0.03835394131914506, -0.023971297865851678, -0.9989766524118137, 1.6781647909022572]], [[0.714807284801353, 0.6990791487556401, 0.018408948096161275, -1.343364132714675], [0.6990956466053669, -0.7149977685737383, 0.0065930138782801856, -3.0900168716610494], [0.017771395340307312, 0.008156881123619408, -0.9998088031208737, 1.4971851564406162]], [[0.7417391938341863, 0.669808975051651, -0.034335189972796026, -1.7392029474247215], [0.6690327947115494, -0.7425328507724239, -0.03225035076136038, -3.1760887731066054], [-0.047096580880836014, 0.0009499810701494929, -0.9988898886290225, 1.759196682196268]], [[0.7000327191096297, 0.7116039349334548, -0.05978320803705295, -1.289436876411183], [0.7113330203213647, -0.7022387017939101, -0.02943025489676803, -3.1234742317932405], [-0.06292476759165003, -0.021923628578023338, -0.9977774441895897, 1.7263843220218242]], [[0.7285958442469574, 0.6817267757660963, -0.06630760853496431, -1.393536249455487], [0.6800323798219521, -0.731546141830238, -0.048951044595450424, -3.0254333099409934], [-0.0818783130001817, -0.009425793168541498, -0.9965977605249715, 1.7749189068357971]], [[0.7002397830040794, 0.7130990322968863, -0.033970817412069046, -1.2825060784025684], [0.7111394897965645, -0.7009207798652339, -0.054687168558946564, -3.0608137673630478], [-0.0628082188115684, 0.014136141282433234, -0.997925496797913, 1.759835438810577]], [[0.6987366535925084, 0.7128897831220635, -0.059625884031349975, -1.2628992631851716], [0.7118037170158729, -0.7011479710655106, -0.0415570825865476, -3.0933307054093864], [-0.07143218720387806, -0.01340446906428052, -0.9973553844244163, 1.7387082516389822]], [[0.6969992315929426, 0.7134383043083338, -0.07209616567125343, -1.2446713742340185], [0.7134750383718135, -0.7000466273298119, -0.029800825231770342, -3.123143409480276], [-0.07173172784191559, -0.030667662281378662, -0.9969523828704201, 1.7270161349635142]], [[0.6954854577659858, 0.7165769626405672, -0.05307951251524841, -1.2713638928758568], [0.7150142603972588, -0.6974909454610042, -0.04754985203421641, -3.1360275474938075], [-0.07109560791355699, -0.004882377774615487, -0.9974575564517361, 1.7646579956945458]], [[0.7223069355730928, 0.6892259880136988, -0.0569230029913096, -1.3742864761232736], [0.6882352114495554, -0.7244586718966319, -0.0386254635539109, -3.0288534890100722], [-0.06786003642788349, -0.011276974785352062, -0.9976311168441457, 1.734763644466874]], [[0.7745271001178463, 0.6255396292341288, -0.0938506443274025, -1.5722144096995143], [0.6231779095298736, -0.7800505798143121, -0.05630618088036389, -2.8912751928138922], [-0.10842999703502973, -0.014874985344003222, -0.9939927920030402, 1.838983195780366]], [[0.19436562906398736, -0.9802862570249553, 0.03550854160006468, 31.802832457967256], [0.967502337911049, 0.1856107439109912, -0.1717203478958227, -26.34824158715549], [0.16174433027223684, 0.06773113045573263, 0.9845055944950105, 128.4807059751155]], [[0.9418590073609289, 0.2872535101975202, -0.17431876299552174, -2.3847758385015854], [0.28893257434091724, -0.9572119097944494, -0.01622736061078144, -2.047641986269805], [-0.1715213623366374, -0.03508248319126189, -0.9845555553828934, 2.0014142157791293]], [[0.9694917299041154, 0.19834864330902943, -0.14402639114062826, -2.545642358104228], [0.20195266992648683, -0.9793368136368583, 0.010701615072899242, -1.832126512002429], [-0.1389276961483537, -0.03946164154051943, -0.989515979704137, 1.9002849262262616]], [[0.9778305851577366, 0.015820955103844313, -0.2087990519846312, -2.6814129952257453], [0.021183063652898786, -0.9995001061588313, 0.02346946106671883, -1.260110309010199], [-0.2083233653346542, -0.02737216045706175, -0.9776769099695243, 2.1733002533549772]], [[0.9664601664922768, -0.018617393598060146, -0.2561408581998106, -2.736500704495426], [-0.022577974832613402, -0.9996665574437545, -0.012530322462393419, -1.148288563129295], [-0.25582216799210045, 0.017893199383245982, -0.9665582505879582, 2.3205636825533293]], [[0.97024872288758, -0.04165698574925114, -0.23849970916818036, -2.786730870046917], [-0.045407576273809605, -0.9989159488619377, -0.01025081100169701, -1.0722673160523852], [-0.23781414539921314, 0.020775530018294037, -0.9710884664130763, 2.2443672880538035]], [[0.9698277169191891, -0.07303101567356343, -0.2325955077919628, -2.7933835989578943], [-0.08286214780137591, -0.9960221769982528, -0.032767169383466514, -0.9376598499814291], [-0.22927726437014256, 0.05105187241766538, -0.9720214207339234, 2.2840072226004877]], [[0.9584202514521727, -0.15431452225183734, -0.24003676765975118, -2.8913580888330395], [-0.15603799430245685, -0.9876790261648872, 0.011928353115467994, -0.7461186997163868], [-0.23891999903821493, 0.026022480592135272, -0.9706905091549068, 2.280219880425099]], [[0.9612483490113075, -0.1533172879640578, -0.2291187917530591, -2.921539157825382], [-0.14929799732101356, -0.9881767814129571, 0.03488203939370041, -0.8048573229243817], [-0.23175788987426105, 0.000676673980000167, -0.9727732637122356, 2.226306246924713]], [[0.9620673510596545, -0.13506057718259218, -0.23703386364856102, -2.8746081499955487], [-0.1242213758078785, -0.9904294479237372, 0.06015445517896644, -0.9224336425250422], [-0.24288981414925034, -0.028427964692983622, -0.9696372460904936, 2.2000009481143286]], [[0.9732049898431746, -0.050720787566602116, -0.22427538753276077, -2.7871331182655843], [-0.040771839665920184, -0.9979773248040607, 0.048774135227457265, -1.1968622668489084], [-0.22629561382095525, -0.03832311163714933, -0.973304492068049, 2.1548573714057575]], [[0.9697985973162425, -0.017375169252111376, -0.24328745166347782, -2.7536783140502274], [-0.0016740974714281095, -0.9979101135860046, 0.06459568561771427, -1.3273289655391356], [-0.24390136949411484, -0.06223751839708026, -0.96780091613031, 2.1708398959526143]], [[0.9720764267576025, 0.00800937782114556, -0.23452776042313078, -2.74561303864046], [0.02221195150945182, -0.9980706453352216, 0.05797944575688529, -1.4121865588415008], [-0.23361089390761092, -0.06156977169887821, -0.9703788504809009, 2.1491100857452214]], [[0.9817708713576788, -0.0032323920984708627, -0.1900408056047592, -2.831957162877201], [0.010601669562303143, -0.9973674893462897, 0.07173350540417733, -1.3715039415486912], [-0.18977239197542897, -0.07244061593057549, -0.9791520803264036, 1.9819049661439327]], [[0.9845259710385517, 0.005614117768235296, -0.1751487768506572, -2.8012823809070047], [0.008879830709540988, -0.9998009355079565, 0.017867231570241823, -1.3286063982140366], [-0.17501360220613374, -0.019146044998880007, -0.9843798392915886, 2.053334751166863]], [[0.9728328602432564, -0.04952927266181331, -0.22614835215078735, -2.8394356883706195], [-0.036771608367693165, -0.9975037605876601, 0.0602834673150861, -1.210745006690508], [-0.22856962801076122, -0.05032989929522816, -0.9722257075329548, 2.1516661099460515]], [[0.9608395608835427, -0.07124493031676347, -0.2677900262244288, -2.758039425156949], [-0.05269553752298554, -0.9957267959886564, 0.07583751100430526, -1.1943833934827537], [-0.27204874299706727, -0.05875634139668683, -0.960487987316547, 2.2532352778261546]], [[0.95661082845221, -0.03891762798714168, -0.2887579282371841, -2.686669782163373], [-0.013173343725190181, -0.9958030484951517, 0.09056904340259181, -1.329340371968956], [-0.2910707575540255, -0.0828354201994353, -0.9531086544866271, 2.267943757038051]], [[0.9631395628162926, 0.0005358664550573836, -0.2690016642795783, -2.670724872433757], [0.03634339069683799, -0.9910886122380965, 0.12815038292810868, -1.4625275149093828], [-0.26653581464917164, -0.13320313637113143, -0.954576127907144, 2.1214113486678783]], [[0.9791602462889148, -0.010133125948154542, -0.20283621926557038, -2.8588336957571565], [0.0024085696641331093, -0.9981048242894338, 0.06148949928509703, -1.3387719605134172], [-0.20307488983034, -0.06069661842868816, -0.9772801592336345, 2.055682645074309]], [[0.9822247650146834, 0.13831551030468414, -0.1268988991323604, -2.7647580499082864], [0.14432838504234108, -0.9887437276929183, 0.03943549440520312, -1.7429516984752595], [-0.12001595003548442, -0.057049632400813, -0.991131429821501, 1.8217569735969146]], [[0.9194030710486084, 0.3630867870180224, -0.15121500599912924, -2.2435205225704618], [0.37007619110982787, -0.9287868574453627, 0.01996462397364193, -2.352109777176247], [-0.13319761904790034, -0.07431661005250459, -0.9882992642667876, 1.8378484921116827]], [[0.7431642784814809, 0.6273415847425766, -0.23270021753701123, -1.276899343223385], [0.6527583571181897, -0.756159970304133, 0.046137040672488194, -2.973956913429412], [-0.1470149053717402, -0.18618441224314525, -0.971453540956135, 1.7051690814899185]], [[0.6410734830535926, 0.7145132822803064, -0.2801705886965268, -0.7412431084558412], [0.7436731774185013, -0.6685351390331923, -0.003312561869660377, -3.2426303988947667], [-0.1896707529214915, -0.20623175633954444, -0.9599445130648443, 1.8453700974835558]], [[0.5703235768418302, 0.7570229665301064, -0.31882165209455054, -0.3809775195229663], [0.799742819688885, -0.6003202855935925, 0.005193944637683384, -3.3326130366992444], [-0.1874631698612093, -0.25793755610764657, -0.9478004943524785, 1.6837900239674632]], [[0.4271432945195558, 0.8150503001408858, -0.39146087184702383, 0.18230773158721766], [0.8952294958035232, -0.4420026049746232, 0.05654950962666952, -3.4572056475327395], [-0.1269360303079848, -0.37460206277581976, -0.9184555181247218, 1.3458677141074946]], [[-0.019792441975608588, 0.8459270689449314, -0.532931189992554, 1.7407614930791657], [0.9981250030954865, -0.014161403471590894, -0.05954773587089937, -3.0816303353891317], [-0.05792009527165637, -0.5331105407680028, -0.8440606695527109, 0.8392108496876383]], [[-0.37924342920808096, 0.7472161978684987, -0.5457493701741117, 2.884332934621003], [0.9207267272487641, 0.363291130273973, -0.14241435459264268, -2.3044300042850736], [0.09185159297625123, -0.5564957397026538, -0.8257576984567089, 0.34231778600065077]], [[-0.508388011222157, 0.5907252333887074, -0.6265663003094223, 3.075782771199283], [0.8495264538444025, 0.46308496908522745, -0.2526996549777783, -1.9228792052532655], [0.14087737314464024, -0.6607541222309483, -0.7372635591772285, -0.08384298423509999]], [[-0.6196087538383724, 0.5757191382194624, -0.5335095744733157, 3.427607180139204], [0.7651597262448675, 0.5945576969049214, -0.24704602482937296, -1.4389435327243238], [0.17497309936026864, -0.5612919195382694, -0.8089102518582059, 0.07280916639920046]], [[-0.717763151153922, 0.4803851906355012, -0.5040298874706598, 3.589683170596451], [0.6617320019226345, 0.695837117899397, -0.2791441616529411, -0.9219961556692237], [0.21662598292230598, -0.5338920995590346, -0.8173324963265509, 0.012119400363370529]], [[-0.7532118406081653, 0.4334315935158993, -0.4947817467428729, 3.657799990226943], [0.590649784430399, 0.7767122419349538, -0.21874854372246894, -0.6059016149464116], [0.28949050989623737, -0.45700672530133063, -0.8410351346462115, -0.06414263727984186]], [[-0.8651736015489164, 0.3369102950773192, -0.3714378713241161, 3.7995350610951193], [0.41615401416654396, 0.8956487955124207, -0.15693652089371024, 0.06916414628623313], [0.2798043524964343, -0.2903526961611752, -0.9150982658468912, 0.2809577993130531]], [[-0.7937406855073581, 0.3269453877941847, -0.5129156242213913, 3.561432217520852], [0.5016169787971383, 0.8287909501323802, -0.24796364161122075, -0.3037035702804364], [0.34402925857075084, -0.45410601667317374, -0.8218464545573477, -0.2678437480692897]], [[-0.8313186416238312, 0.35236261140921377, -0.4298254368573218, 3.708934949211851], [0.4886522676654579, 0.8318429438842686, -0.26316587547658854, -0.226555580139423], [0.26481744163501364, -0.4288098725435703, -0.8637093352598738, 0.0853177525178288]], [[-0.8649144913267102, 0.2894461132324163, -0.4100534967875605, 3.6161129470940283], [0.4220985780429152, 0.8615059230472146, -0.2822061922933579, 0.14839390962144813], [0.271580030759273, -0.4171672231722117, -0.8673037500227812, 0.09347066272038301]], [[-0.9014251935736378, 0.26588757812899705, -0.3416671131195194, 3.6331903530380534], [0.3747110721155002, 0.8744511420466542, -0.30810195164483223, 0.3525138782617424], [0.21685071552748542, -0.40575731166548146, -0.8878833094530043, 0.26044240290365656]], [[-0.9392103822278234, 0.21986988042424876, -0.2637064534623535, 3.6117300337798484], [0.3013204040541531, 0.8960288654235129, -0.32609551733885256, 0.6757337951242491], [0.16459001189655398, -0.3857324305915676, -0.9078108943903536, 0.4773307773258976]], [[-0.9664763278335097, 0.16764196218220542, -0.19447282651608255, 3.553175820511239], [0.22841618506398134, 0.9072944838645298, -0.35304782388482986, 0.9676966195996143], [0.11725849281937477, -0.3856331055092351, -0.9151707784872897, 0.6473202537845423]], [[-0.978970410133973, 0.13093893529871148, -0.15643507057229997, 3.4954374844594205], [0.17708245691348684, 0.9261606802928058, -0.3329687638999324, 1.1201276650472798], [0.10128543595010933, -0.3536684740012965, -0.9298708894045402, 0.7610816011090001]], [[-0.9818784346175086, 0.12558241623430494, -0.14192884261426453, 3.4808426826885803], [0.16550072115525188, 0.9330761781639275, -0.319340503287775, 1.1247277824499788], [0.09232687003338977, -0.33704287928355897, -0.9369513576456815, 0.8206690961292017]], [[-0.9841964764473508, 0.11206217151589679, -0.1371107780729184, 3.4754016703257955], [0.15018871612150772, 0.9384449404782632, -0.3110698365970612, 1.1630343997610986], [0.0938117545854064, -0.3267463288330734, -0.9404446774243111, 0.8290305564336807]], [[-0.974491379173376, 0.17655631475534053, -0.13854392674088792, 3.5642644123660103], [0.20857521951575878, 0.940371643290495, -0.2686960183908345, 0.9627955507455401], [0.08284280126072774, -0.290738783472635, -0.9532093317126767, 0.8933780547580699]], [[-0.9489040033046859, 0.2798290008132474, -0.14586611263827035, 3.5931491647284477], [0.30682243419932326, 0.9261844348389823, -0.21918573524296003, 0.5468331075733193], [0.07376439781048127, -0.2527412173861925, -0.9647179332062833, 0.936677040704399]], [[-0.9405862116074329, 0.3363656721209206, -0.046429658114395866, 3.6843206387928125], [0.33888155390812935, 0.9212963904594128, -0.1907151104324693, 0.4390631152111237], [-0.02137453987317561, -0.19511815790719905, -0.9805468033195113, 1.3276763733438322]], [[-0.9676120923850606, 0.2513862770429357, 0.023060320567983152, 3.546059821459782], [0.24788217205379837, 0.9634460628860815, -0.10161748219277973, 0.7362024460747236], [-0.047762615591033994, -0.09261006221680863, -0.9945562371872707, 1.552195099530738]], [[-0.9786003913614096, 0.15051753328695705, 0.14030590222975356, 3.408068157733001], [0.15040617188577693, 0.988557877185175, -0.011458922890340513, 1.0564510743023119], [-0.14042527367237537, 0.009889167222289885, -0.9900418914801977, 2.0247888259401883]], [[-0.9970393127396069, 0.03253390339859629, 0.06967175885093946, 3.13425174400771], [0.024892990434476184, 0.9938545779719589, -0.10785831850816448, 1.4588302345028323], [-0.07275264860444416, -0.10580464533200036, -0.9917219515303713, 1.591363174607028]], [[-0.9735894502210124, 0.02858841458435958, 0.22650890704318843, 3.186738323995212], [0.019777576251317444, 0.9989603779642248, -0.04107323623963101, 1.4826294910670175], [-0.2274476420980669, -0.03550867230869088, -0.9731426947241109, 2.212011332034294]], [[-0.9906507334868746, -0.060198852759377246, 0.12242231156276864, 2.946200754109622], [-0.06502285517636741, 0.9972415584684107, -0.03579528416158558, 1.748958189288926], [-0.11992978173343738, -0.04342087274514791, -0.9918323826450814, 1.8326197406794356]], [[-0.9738389236810309, 0.006974602909989567, 0.22713235268895549, 3.1192911440678657], [-0.009042613335912861, 0.9975477567816534, -0.06940247894671026, 1.601356197660055], [-0.2270594236490291, -0.0696407054397021, -0.9713877651473855, 2.169489584744635]], [[-0.9926033811984206, -0.06536985443121789, 0.10230009660358984, 2.9255260793806017], [-0.08246817682439046, 0.9814589825320217, -0.17302388684360862, 1.784757606295537], [-0.08909280242939659, -0.18018059756491597, -0.9795904372830647, 1.5358176205273693]], [[-0.9824830209960065, -0.020028718122800035, 0.18527267446905865, 3.0967050480277294], [-0.03601893187749221, 0.9958693900635328, -0.08334743235932232, 1.722663119331779], [-0.18283804308995688, -0.08856076097710913, -0.9791461799007287, 2.000356699557668]], [[-0.9905325219928073, -0.03434678587033939, 0.13291208062078447, 3.058974604291959], [-0.04898808392535915, 0.9928880007613166, -0.10850615456054899, 1.7507341356528046], [-0.12823997234829249, -0.11398998308874703, -0.9851704386792858, 1.7671796815127099]], [[-0.9842901967990748, -0.010334358112063423, 0.17625552339614478, 3.147315758910472], [-0.020374981614877347, 0.9982645319714057, -0.05525200749387853, 1.6505820907022792], [-0.1753786435385755, -0.05797521237841072, -0.9827925549882062, 2.021040748804427]], [[-0.992971129831469, -0.08794919680043824, 0.07920400307669839, 2.8989546491140823], [-0.09595416117081092, 0.9899703589553194, -0.10368937912767255, 1.801890709938515], [-0.06929021774552241, -0.11056051362052348, -0.991451077236161, 1.557959311349334]], [[-0.9761922060199629, -0.062722510784937, 0.20764070782655084, 2.963260931844524], [-0.06761642265790836, 0.9975741306145895, -0.016549118269354374, 1.7282704839392005], [-0.20609899634113868, -0.030195042132433646, -0.9780651630325022, 2.1295442021394067]], [[-0.980165821590272, -0.08360573836835573, 0.17968039041072115, 2.920041692602522], [-0.09019389917828656, 0.9955077160579663, -0.0288001357647592, 1.795211111433114], [-0.17646535846245914, -0.044434983750796325, -0.9833033659465334, 1.995885323784362]], [[-0.974489838141971, -0.0461968019663857, 0.21962561518664814, 3.030588528619708], [-0.04324941157224986, 0.998898301078326, 0.018211878032979384, 1.6696035641447429], [-0.22022498440615051, 0.008248611453603486, -0.9754142282396736, 2.259871055006093]], [[-0.9731526922081855, -0.04504064419093669, 0.22571038527020668, 3.0093915767710766], [-0.038410819066416704, 0.9986942339384758, 0.03368139065846309, 1.6500246691977496], [-0.22693269184189105, 0.024107415226573878, -0.9736120304846719, 2.310796812030921]], [[-0.9728378161130862, -0.0654560388802267, 0.22204074066357982, 2.974109795315622], [-0.053737631999146246, 0.9968447370788045, 0.05841949217011012, 1.698118196075492], [-0.22516405229841907, 0.044900747570608156, -0.9732857095530352, 2.3563915888406695]], [[-0.9827647994734505, -0.08079310687002388, 0.1662703304808098, 2.9245333473879866], [-0.0906378058188675, 0.9944998634740886, -0.052486281125266036, 1.819160932580925], [-0.16111529124279322, -0.06665204747273779, -0.9846823688354748, 1.923644594245026]], [[-0.972854939317888, -0.04625187768292167, 0.2267466225891632, 3.02014596570456], [-0.04956602639123089, 0.9987308269538043, -0.008941158759010694, 1.7159180247082124], [-0.2260452965061918, -0.019937379541305887, -0.9739127398409232, 2.2395198611179628]], [[-0.987246787622557, -0.05227051461460649, 0.15037145218047804, 2.968408624396514], [-0.0635951294439697, 0.9954102579237246, -0.07151278159342399, 1.7517867677113035], [-0.14594327610392444, -0.08016365586815656, -0.9860397296447568, 1.8725612879234148]], [[-0.9814085409590555, -0.018267985947654934, 0.19105903910057553, 3.057444496361191], [-0.029556308003710875, 0.9979706229614329, -0.05640088973730202, 1.6658427507490348], [-0.18964097761245785, -0.060999314712427755, -0.9799568272198559, 2.0549937777183915]], [[-0.9836441515709986, -0.020322659554100356, 0.17897254702556709, 3.07226725040466], [-0.03174137121262385, 0.9976224905210864, -0.061170677289426954, 1.678128287805798], [-0.17730388724930174, -0.06585101301538902, -0.9819505973576952, 1.9985890132371866]], [[-0.9762963914933691, 0.02199006480071068, 0.21531788826543477, 3.157690063403038], [0.016611854725075464, 0.9995039561662022, -0.02675608137794955, 1.5382265916690205], [-0.21579944911796853, -0.02254503622021965, -0.9761774014502742, 2.217521085963735]], [[-0.9948240212439856, 0.0745381417992866, 0.06905962766374765, 3.136905091411097], [0.06247267417572836, 0.9846712932360574, -0.16284842418078102, 1.386649820500849], [-0.08013945181544044, -0.15769118457903644, -0.9842312525869014, 1.5322164520165806]], [[-0.9546480020673548, 0.26452175963917934, 0.1366580799887085, 3.4449980543857177], [0.24304490113511068, 0.9574709642973089, -0.15549446472400769, 0.8222726299650488], [-0.1719778130487543, -0.11522843054113698, -0.9783384080235195, 1.9353707793143669]], [[-0.8641455049222345, 0.4983285097571225, 0.07015156937618872, 3.536403783117418], [0.49442321756307905, 0.8666952869080012, -0.06621904247291342, -0.2355668213356352], [-0.09379887130061298, -0.02253832324514787, -0.9953360215163665, 1.8124524004386378]], [[-0.7940945986189594, 0.5755591619568583, -0.1953085239607144, 3.2647320814934844], [0.5613556079474649, 0.817715947013355, 0.12735977161562442, -0.8043165055173342], [0.23300997804842177, -0.008501828483977257, -0.9724371799979179, 0.5550808341227902]], [[-0.7659928227470277, 0.6363716209226058, 0.09102832297904008, 3.2650689142041394], [0.6340333686501034, 0.7245055807727047, 0.27035782005965375, -1.293583698112743], [0.10609751617376924, 0.2648071440001975, -0.9584469174389452, 1.5188374323292466]], [[-0.7010372505775936, 0.7117960384492831, 0.043510607333324736, 3.123463342257423], [0.6990264867318897, 0.6738255766850311, 0.23941817611108102, -1.6190190860358482], [0.14109834921032677, 0.19825612689899913, -0.9699411136750149, 1.1883932752540354]], [[-0.7024901456568343, 0.6913672484283745, 0.16887546611517673, 3.0504605458695857], [0.70576657392471, 0.6461838667950789, 0.29041341812033555, -1.6486221771274898], [0.0916577240914092, 0.32319922353610037, -0.9418816929530189, 1.654016122115049]], [[-0.704672554264713, 0.6993275140185151, 0.11990671124973928, 3.2128634660296576], [0.695357252323058, 0.6470500171415581, 0.31273721709901453, -1.5750910405631744], [0.14112010100539085, 0.3037553348565137, -0.9422408469379977, 1.3287081757868957]], [[-0.6588572008154322, 0.7455830627289624, 0.10006540613695299, 3.0759735892591813], [0.7450686459144125, 0.6283940547471634, 0.22359254199029732, -1.7917412776793273], [0.10382630595815841, 0.22187115299226956, -0.969532510883964, 1.4063277822911102]], [[-0.7104995470078986, 0.7034887803545665, 0.01714437566127902, 3.35924076334593], [0.6920132868693635, 0.6940735421202023, 0.19844275981999374, -1.50087328270358], [0.12770279753329827, 0.15285762671178763, -0.9799625204354547, 1.2275820295398119]], [[-0.7374739571682353, 0.675194538538581, -0.015636419868268144, 3.428105931477953], [0.6609781300065952, 0.726314252196871, 0.18861473619175367, -1.32059623410626], [0.1387085943682248, 0.1287631243150495, -0.9819266691892112, 1.2391976181025721]], [[-0.7768309506458159, 0.6260762005916012, -0.06754454212963916, 3.6057317791575145], [0.6065107410532498, 0.77274198698687, 0.18712173186089812, -1.045150136479301], [0.1693469666269672, 0.10439546254684309, -0.9800118327315619, 1.0295272359014813]], [[-0.760911636082973, 0.648144222065736, -0.03037349957339669, 3.3520854429817146], [0.6451807317180335, 0.760747754210466, 0.07074374801715883, -1.0626673256599488], [0.06895872311256994, 0.03423334436677645, -0.9970319817539202, 1.3185100149730178]], [[-0.7770985299713512, 0.5654407095359384, -0.27639587318890807, 3.13591636091714], [0.6007973838005609, 0.7972867385020805, -0.05810645598482722, -0.8584030531439741], [0.18751100856953967, -0.21121235903282187, -0.9592856514391445, 0.46801491432879055]], [[-0.8932857360766003, 0.4330214366082023, -0.12055301389784907, 3.6825145787933735], [0.42059833052220724, 0.8998485321404613, 0.11562726134692083, -0.13255115521307986], [0.15854853542060385, 0.052583786877949845, -0.9859499517082781, 1.1216789020977245]], [[-0.8820639335847639, 0.430147028203697, -0.19218936285991783, 3.6971676220347356], [0.42052304362752324, 0.9027582866565813, 0.09048671532947831, -0.11191582556672412], [0.21242313161992843, -0.0010049877620027237, -0.9771772629120986, 0.8398312852476643]], [[-0.8838118586696372, 0.41344709310395006, -0.21894770991909054, 3.709717921488253], [0.40433273498040917, 0.9104549421239568, 0.08710245567907085, -0.0355113566035173], [0.23535428166528596, -0.011545543120873816, -0.9718410685579513, 0.7782735164472051]], [[-0.9000654418958254, 0.37651931173614195, -0.2193522468419545, 3.72228983612624], [0.3648786783935728, 0.926401606213408, 0.09297103881842783, 0.12126682506380822], [0.23821366534821517, 0.0036430612072691076, -0.9712059399254145, 0.7936965089364878]], [[-0.9168010973576826, 0.34911211075086257, -0.19389812276251298, 3.720688023699018], [0.33062462551217076, 0.9358753445938984, 0.12175670981998839, 0.23058365153861676], [0.22397121441981324, 0.047519190947757514, -0.9734366037924528, 0.9247711415944518]], [[-0.9193808249723608, 0.3495746997987757, -0.18037856838809097, 3.7962647535868914], [0.34442550431498026, 0.9368837344029932, 0.06016593877330508, 0.18119738341429042], [0.19002623674249003, -0.00681156896004461, -0.9817553829125613, 0.8793124508004243]], [[-0.9176447830788534, 0.35620590445672434, -0.17619706501054633, 3.7015815357753623], [0.3471501639629428, 0.9343164908563699, 0.08086691891212877, 0.195597678687211], [0.19342909747156872, 0.013040266255175202, -0.9810275917156093, 0.9294581829390753]], [[-0.9163698736813474, 0.3677518526186025, -0.15819238131091212, 3.726378184266646], [0.35906484737001026, 0.9297531602863248, 0.08143399978352339, 0.14469075856523567], [0.1770273707435735, 0.01782234084449307, -0.98404454887695, 0.9735889125238688]], [[-0.9440266313529965, 0.23818620214448882, -0.22821273497396788, 3.653734346847414], [0.22371199696646965, 0.9707004007383413, 0.08771359312956009, 0.6764072299169953], [0.2424183609168003, 0.03175004117175992, -0.9696521402936228, 0.7778789897722286]], [[-0.819124123769862, -0.3415541376205447, -0.46084318475219027, 2.7877084246534536], [-0.3549891608720776, 0.9329136475943541, -0.06045512216128042, 2.6551816606371874], [0.4505755935707055, 0.11407408648103708, -0.8854200908449745, 0.09223146528552768]], [[-0.6974470100961184, -0.5519430423610563, -0.45708483468302213, 2.186049789750215], [-0.5252144286636162, 0.8276210032582364, -0.19797292463713706, 3.206844760648249], [0.4875627877838254, 0.1019919259306915, -0.867110243863727, -0.1236756646722015]], [[-0.6606935843400881, -0.6164069427451988, -0.4283998932625498, 2.0424156887801628], [-0.5372076913817527, 0.7868755088334665, -0.3037018767119507, 3.27714237461956], [0.5243013293251644, 0.029485836152133377, -0.851022151024446, -0.4532400423840215]], [[-0.7199072457133469, -0.5085192551950004, -0.47237879362366025, 2.403301868104928], [-0.5003680140736269, 0.8519116658103063, -0.15452625714849802, 3.3205282219390684], [0.4810045821626206, 0.1251186666817989, -0.867744150764689, -0.2290486252095584]], [[-0.7847077599694592, -0.3625057375607762, -0.5028153952289358, 2.8295556591958095], [-0.2643701964509111, 0.9294150846288854, -0.257480095721569, 2.496818989772323], [0.5606622251161746, -0.06911722433517813, -0.8251549421944829, -0.9975293793443966]], [[-0.9579321130218088, 0.279213988431653, -0.06637481077683492, 3.8566294834325157], [0.2753004396884571, 0.9593327337261202, 0.06237286195863694, 0.5546554384902022], [0.08109090423046293, 0.04147595286015391, -0.9958433664916524, 1.1673439524430964]], [[-0.7523453440054845, 0.6583039765741328, 0.024745863895865375, 3.558411710269173], [0.6568098018758819, 0.7524733815124172, -0.04883333159874531, -0.9439473892022058], [-0.05076778026498514, -0.020486203697901065, -0.998500349496691, 1.583633800243352]], [[-0.5479226460541847, 0.833915552371347, -0.06607287986891404, 3.174636720824098], [0.8355816362535821, 0.5418342979198311, -0.09065827460033812, -1.7816523053254667], [-0.03980079266505984, -0.1048830067785777, -0.993687803986905, 1.4933545005483504]], [[-0.39223541826381175, 0.9093509176748159, -0.13868051479347207, 2.8446915960963093], [0.9196789359834298, 0.38464273484328143, -0.07899760275266164, -2.286918585057692], [-0.018494090077608216, -0.15852720604442339, -0.9871813883861211, 1.3629675578364715]], [[-0.3450084327749298, 0.925959709950494, -0.1535180668930637, 2.814662915259254], [0.9385921386749104, 0.3410111168016661, -0.05249967081171079, -2.431103458970809], [0.003738787483128364, -0.16220367987834672, -0.9867502154558052, 1.3041858264092787]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8354219702810136, -0.5455465582866301, 0.06670145660630393, -3.9405578070307574], [-0.5283047066077375, -0.8305650839195464, -0.1762264972977367, 0.7537551303374124], [0.1515396599834592, 0.11198479412549471, -0.9820871332711615, 1.204411953948671]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.45236086834816347, -0.8666802090070661, 0.210321325839209, -3.4595783274251204], [-0.5685140338213867, -0.4619328782213299, -0.6807421019492571, 2.2121018870977225], [0.6871400425935238, 0.18837046300740934, -0.7016802195665375, -1.054802161290405]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.24139155931534206, -0.9701100939748066, -0.02482983406105027, -2.7630859247659605], [-0.6207818973306292, -0.13470101628634013, -0.7723247193752194, 3.3941066416480794], [0.7458954022099156, 0.20184657980659176, -0.6347424731199964, -1.3775494465598062]], [[0.14665076306372826, -0.9856183367993008, -0.08396456310733774, -2.3543511380959963], [-0.6266184035923286, -0.026883860736543808, -0.778862397546126, 3.6963851236483465], [0.7654037692435463, 0.16683450541443168, -0.6215491274476171, -1.582187808411268]], [[0.09283586552337808, -0.9797554632902914, -0.17737174021064378, -2.0440400844577695], [-0.5873274136787163, 0.08996232973973539, -0.8043340651553118, 3.8948848746400104], [0.8040074696257464, 0.178846334546241, -0.5670855115459914, -1.844841838442827]], [[0.06716920586711683, -0.9680956731890444, -0.24141057420053402, -1.8455563274339228], [-0.5300723360762303, 0.17036145589777973, -0.8306625625794609, 3.9192029227710043], [0.845287889603222, 0.18376001169198786, -0.5017176913295879, -2.1276051461015735]], [[0.10713791932076555, -0.9579997817799843, -0.26600354199355947, -1.9574011894173067], [-0.4925367959628321, 0.1812673981950682, -0.8512048137635606, 3.837631486461249], [0.8636717958034085, 0.22221284495072008, -0.4524295311676976, -2.1980282949750216]], [[0.1587179047623387, -0.9545695006461148, -0.2522016953632164, -2.169843371928724], [-0.5046579777332081, 0.14111492338784115, -0.8517082269812078, 3.801628992215845], [0.8486041198451031, 0.262456942818191, -0.4593336488310503, -2.0368346751348323]], [[0.2564682450678107, 0.9422274795146448, 0.21547950278232247, 0.23946058762057315], [-0.5476995936709603, -0.04201880485002668, 0.8356192764241622, 1.1943025530254365], [0.7963976358355809, -0.33232784548763716, 0.5052811185360511, -5.596316374407351]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8699808578936248, -0.4911330272759901, 0.04383670171664367, -3.849063847945419], [-0.4830842736351229, -0.8667749700381195, -0.12381734887261404, 0.5416520524307797], [0.09880734519810813, 0.08654190218696665, -0.9913362737743249, 1.3596452651745357]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7143844584284942, 0.6932115680704689, 0.09545976874636197, -1.353154231351244], [0.6884885890441583, -0.6719334543357545, -0.2729265390181114, -2.863226449891001], [-0.12505322191695575, 0.2606974392618812, -0.9572870712855609, 2.426653787381941]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5001548452168443, 0.8540181524120819, -0.14317166673881043, 0.04921088121354355], [0.8375394602004164, -0.519089344406733, -0.17051071852110422, -3.240771471166639], [-0.21993813542291835, -0.034630158446681464, -0.9748989530780345, 2.179413142671884]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5955746291645523, 0.7786139180595548, -0.19761383478758365, -0.43442603841153077], [0.7425923081770927, -0.627461238344673, -0.2341987579198217, -3.0848118903587145], [-0.30634543399849046, -0.007263675303741793, -0.9518927009329141, 2.495007030192545]], [[0.3609544684781767, 0.909319748050416, -0.20700112920263097, 0.4776124558580176], [0.8545084012164017, -0.4113904825040733, -0.3171328793355469, -2.999043808758003], [-0.373533484357461, -0.06241367406741391, -0.925514597050301, 2.6313542505422047]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3965799318010673, 0.9115880952049316, -0.1083120601470843, 0.9633379547952861], [0.9036518026704816, 0.3668755628555551, -0.22094284534650302, -2.1925553255080255], [-0.16167181950807016, -0.18549788694231625, -0.9692537112216212, 2.443655459414125]], [[-0.763838828011637, 0.6248538564855602, -0.1615794010910166, 2.2445763923841193], [0.6453382954249446, 0.7357815228201251, -0.20533883007002007, -1.3057977367441342], [-0.00941962206437319, -0.26111914658182495, -0.9652606186976364, 1.739203294691925]], [[-0.8464539317094012, 0.45047458006224156, -0.2838809507724035, 2.5481812353084408], [0.5225260933709686, 0.8052703850497807, -0.2801893800775682, -0.9973319510941161], [0.1023827292084489, -0.3855026065794176, -0.9170090059973809, 1.1730098151760149]], [[-0.9126062964181934, 0.31364317973983225, -0.26225503530066996, 2.661061683209631], [0.3684613765240602, 0.9089276707688619, -0.19515814951132834, -0.35395320916251816], [0.17716083581836903, -0.2747334073486123, -0.9450585130767079, 1.017625352968869]], [[-0.9521505477350448, 0.20534881833601973, -0.2263651856091286, 2.8371855156635504], [0.26543361651479674, 0.9227584596761238, -0.2793954550811867, 0.003601654195451667], [0.15150686344760322, -0.3261114654595081, -0.9331114523057372, 0.9911381199768178]], [[-0.9761835635431527, -0.0320373788612032, -0.21456760385457813, 2.8415531270527965], [0.042462949741818884, 0.9416899277925921, -0.3337918180441328, 0.7099598826286725], [0.21274996631589677, -0.3349532597985687, -0.9179018278568234, 0.8403428134715616]], [[-0.9768950766766888, -0.12528526290640998, -0.17314621585041337, 2.7953255520708873], [-0.06415760297536924, 0.9447029236627994, -0.3215900931362988, 1.1321043410184408], [0.20386223570171377, -0.3030511325196298, -0.9309136372044771, 0.8608063537901879]], [[-0.9771678693804434, -0.12803786136555076, -0.16955607068878645, 2.769167418665252], [-0.07224268688972946, 0.9507035613765165, -0.30156878581338814, 1.2385478274924007], [0.19980978264698965, -0.28243414177989296, -0.938246772611352, 0.8132791419212695]], [[-0.971131237251233, -0.17220401512788724, -0.16507542884609883, 2.6486538676332407], [-0.10877937895756629, 0.9355550117124855, -0.33601170630389854, 1.4829977344586989], [0.21229970972305928, -0.30835466144277046, -0.9272789418605487, 0.6486533990621461]], [[-0.9676414447486923, -0.20836074206435554, -0.14232299733723483, 2.5721219947124556], [-0.1468403462037897, 0.923679765263052, -0.3539118590416885, 1.671112090658441], [0.20520221034729288, -0.32156102439503437, -0.9243865860442813, 0.5700801250400555]], [[-0.9570651226207725, -0.24808657095873105, -0.1499313321918541, 2.498271601550201], [-0.19251848361991908, 0.9306861734634475, -0.31106250173984806, 1.9079027263828856], [0.2167094472503969, -0.2688425186496819, -0.9384885271746921, 0.6273684097132606]], [[-0.9820958379954613, -0.1749138102196519, 0.06994943878571733, 2.9478839781396475], [-0.1845867991608509, 0.9676689869555019, -0.17188497683062506, 1.9049108692681194], [-0.037622846350919746, -0.18171926336785657, -0.9826304650037567, 1.5843020492312658]], [[-0.9299563844268544, -0.3624940983819411, -0.061474805424635265, 2.3996708669224596], [-0.327957914224638, 0.8934188446195427, -0.30699572403554154, 2.409806882896825], [0.16620688782706364, -0.26533148459416767, -0.9497233669452897, 0.7534390400761106]], [[-0.841317170409147, -0.518863737542792, -0.15154484695254686, 1.7999213273097205], [-0.47776968222195404, 0.8449256479329367, -0.2404927862008341, 2.726332005496758], [0.25282711390252277, -0.12992717701940473, -0.9587478183273686, 0.6340112291564259]], [[-0.8328344620738019, -0.5339261435347677, -0.1459781902625559, 1.7843090218415083], [-0.5056623313093762, 0.8411618917186848, -0.19170883812440684, 2.8418042901669094], [0.22514965129221723, -0.08584605506564627, -0.9705349500933278, 0.7663111556316778]], [[-0.8669007155937521, -0.4714349476887044, -0.16196369778684536, 1.9132061136376781], [-0.411985696283812, 0.8605192733062884, -0.29962370788367176, 2.627193964175898], [0.28062597057396993, -0.1930172799677941, -0.9402092289874904, 0.3871970032666161]], [[-0.8463364946581982, -0.5162909165445164, -0.13098941676065373, 1.915634980586311], [-0.4806488403229914, 0.8462392503859294, -0.22990394386009058, 2.8414323383613587], [0.22954570374075095, -0.1316161866940511, -0.9643577911202249, 0.6545016610665959]], [[-0.8100209378066593, -0.5581826591553838, -0.1797169978968157, 1.8442457726473174], [-0.5434119917938327, 0.8296980279674557, -0.12768942619330134, 3.0013395852092226], [0.2203848622058214, -0.005770736966775526, -0.9753959253069394, 0.870837661938487]], [[-0.805302806389134, -0.5462356052413528, -0.2304648641081717, 1.846960610826996], [-0.5248697923518368, 0.8376311357539147, -0.1512804729373446, 2.91560015515775], [0.275679326570428, -0.0008625440394686296, -0.9612492730397539, 0.6888711955997857]], [[-0.8541161862118313, -0.4582566894965379, -0.24593972225451932, 2.0986122718029945], [-0.4220996668191303, 0.887062115798328, -0.18695634246147613, 2.6159267472898553], [0.30383780495872414, -0.05587136339008701, -0.9510841072327921, 0.4847245423980279]], [[-0.9037352091657754, -0.3990003542834112, -0.15511733944277087, 2.3056547186280514], [-0.3865885109329591, 0.9162981403891125, -0.10462810871888918, 2.639551565642565], [0.1838803821203577, -0.034589524442621686, -0.9823398443869127, 0.9444520460747812]], [[-0.9055524921302921, -0.4077920031183009, -0.11696309755380731, 2.232043929123954], [-0.4018805806955811, 0.9129042324767865, -0.07139930802011916, 2.6089557183797636], [0.13589217363925093, -0.01765062374911927, -0.9905663898118426, 1.1112687293886534]], [[-0.873707826258001, -0.4802907946919341, -0.07717115309302988, 1.9860614279852797], [-0.4687011917639616, 0.8736298842511971, -0.1307287963008989, 2.7833525029233734], [0.13020686300867382, -0.0780485610208812, -0.9884101349885123, 1.0468573157238694]], [[-0.8546462899540466, -0.5192080920190068, 0.0016359247435035543, 1.821600092465689], [-0.5045261543271067, 0.8297266876193283, -0.23876135250948421, 2.79163137435622], [0.1226094558657051, -0.20488187092624938, -0.971076897211583, 0.8878580273137682]], [[-0.7563696202283686, -0.6526172650597801, 0.04467329114231163, 1.26439553165831], [-0.6529354086236818, 0.7490587174729253, -0.11218908121221877, 3.103475519626104], [0.039753613181933246, -0.11402518635682549, -0.9926821783004226, 1.2438833672274765]], [[-0.6355498410132564, -0.7530123029030119, 0.17043729423083376, 0.7102192965944144], [-0.758669145300865, 0.650055806175296, 0.04299507909331981, 3.17881701086881], [-0.14316957622511867, -0.1019800006593869, -0.9844300645089179, 1.7938035123201526]], [[-0.5477951357264997, -0.8260412716228523, 0.13257566462245804, 0.24587056851266334], [-0.8171005822524969, 0.5622835632745318, 0.1272156946053663, 3.220920497081203], [-0.17963053124960623, -0.038639514062634654, -0.9829750048683777, 1.941963266882317]], [[-0.49843709261844316, -0.8604604551535358, 0.10568003510145038, 0.01924131919542499], [-0.8596451202823727, 0.4747994281292788, -0.18861540293097764, 3.091768258280535], [0.11211927522410581, -0.1848602395462043, -0.9763482780023435, 0.793121217844894]], [[-0.656782646081503, -0.7458468030292363, 0.11112651446548397, 0.817576065373825], [-0.7540247971940114, 0.6513464536475887, -0.08481982396373965, 3.266652502837618], [-0.009119266566452656, -0.13950033595578606, -0.9901800317343881, 1.371430510902533]], [[-0.8143733373580773, -0.5716762329249333, 0.09991172157972553, 1.5821681732515198], [-0.5803306469104156, 0.8011541662522024, -0.1461791440434544, 2.9860770847948217], [0.0035224503979260427, -0.17702623140511048, -0.98419983018577, 1.289535248740034]], [[-0.9089237751350312, -0.41654926974981504, -0.018554699274824712, 2.0859409027832707], [-0.4001284371329428, 0.8838807092199871, -0.2421820093779086, 2.634765981978462], [0.11728087990730633, -0.21270072341124882, -0.9700533992871215, 0.88893976555188]], [[-0.9618280001908586, -0.2700410658609344, -0.04432517115076532, 2.469557425767918], [-0.24474744681553412, 0.9213239996049154, -0.3020939837687592, 2.275912309969908], [0.12241562533488706, -0.2797139798091839, -0.9522470814726481, 0.7722898452053323]], [[-0.9803480208472429, -0.19536066946205408, 0.0274220139346356, 2.6751842703098454], [-0.19563682772296728, 0.9448838480495942, -0.2625276087071325, 2.234754624468761], [0.0253769513414695, -0.26273317742974395, -0.9645347520013382, 1.1081088552045526]], [[-0.9808016273605182, -0.1917160656225767, 0.035680778427025384, 2.641785254263325], [-0.19433201004570178, 0.9456778663972674, -0.26063085557529364, 2.207153217832905], [0.0162245997964783, -0.26256108468033146, -0.9647789587117515, 1.129313928932417]], [[-0.9714270790323745, -0.23687924400711097, 0.014753097344260606, 2.5083886086582847], [-0.23218316666006344, 0.9356044015712964, -0.2659612394318419, 2.3109219965966403], [0.049197634519708926, -0.2617873708165387, -0.9638708239378501, 1.0199948822704696]], [[-0.9683808026001687, -0.24936550056713847, -0.007447703159575762, 2.4456641808905006], [-0.23528494482302215, 0.9228116764635906, -0.3050567234500574, 2.2963907971001074], [0.082943449982986, -0.2936587422661854, -0.9523050599443235, 0.8614962564991475]], [[-0.9555090976569292, -0.2899767397472256, 0.05399865461667459, 2.3254274797484435], [-0.28384038553330604, 0.8541472536456178, -0.4357374262442378, 2.3234705240566673], [0.08023091570676037, -0.4316780739106611, -0.8984525812026122, 0.5267654969126998]], [[-0.9717453893467662, -0.23294633622020572, 0.03803817457352452, 2.545827066705042], [-0.23497992130422346, 0.9395744542516172, -0.24896642645472625, 2.28453364348023], [0.022256119768818715, -0.2508701842773639, -0.9677648556201442, 1.1270022704277427]], [[-0.9591298471907972, -0.28285327049412917, 0.007997724584696338, 2.4605849469704246], [-0.27576802534884254, 0.9280228877165823, -0.25045062601114776, 2.3387965494129754], [0.06341870720030338, -0.24242018737091728, -0.968096338352796, 1.0280609930486355]], [[-0.9535933145987712, -0.3008597239797403, -0.011967323817921281, 2.4551958269894016], [-0.2920342676142674, 0.9338366578768877, -0.20655527818074051, 2.39915675193009], [0.07331968965787417, -0.19347486372177422, -0.9783617430257141, 1.0724917514363574]], [[-0.9553545427562821, -0.2949218896691117, -0.01785431681515027, 2.504005663307274], [-0.2842103567934211, 0.9338114954842773, -0.2173029313948015, 2.3777395204810423], [0.08075995744359774, -0.20252696090994365, -0.97594090977799, 0.9887381067773788]], [[-0.9463405702752137, -0.31935443931145346, -0.049520370992664736, 2.449108069964139], [-0.3052779985519636, 0.9336671688955713, -0.18727242543053702, 2.376688755526752], [0.10604182500924478, -0.16210601413456538, -0.9810590051215642, 1.0229831740027]], [[-0.9396519777972184, -0.33212074135761877, -0.082158224066987, 2.470759632230151], [-0.31548284075922556, 0.9340241817635436, -0.16753926425597043, 2.3916359269767447], [0.13238103266051632, -0.13150909109642744, -0.9824360646631041, 0.969112324280068]], [[-0.925916302496008, -0.3679595894475118, -0.08535069598860373, 2.421709593760515], [-0.34921027593890736, 0.920001802862231, -0.1779012813582764, 2.478569394286313], [0.14398327663583932, -0.1349163565467992, -0.980339937361191, 0.9258346005117671]], [[-0.9038732412095976, -0.4183327861034619, -0.08950331779421629, 2.3221742353541432], [-0.40793695984908895, 0.9058416741777772, -0.11418536732823767, 2.6535749612121364], [0.1288433180818474, -0.06669738670830319, -0.9894194550300411, 1.0822086791284025]], [[-0.8409878480118175, -0.528711841878356, -0.1149052990686195, 1.998109659183278], [-0.5061416425561441, 0.8438276183912773, -0.1782570843211381, 2.855435044590004], [0.19120689623290493, -0.09175368492709893, -0.9772518529710128, 0.8522937146621657]], [[-0.4619609960747927, -0.8687676265556779, -0.17842323042249802, 0.5629988986381007], [-0.8449877349596955, 0.492244536707404, -0.20902402696675043, 3.462524322195439], [0.2694211681981747, 0.054204493637774076, -0.96149576545932, 0.795053912524516]], [[-0.03797163842620018, -0.9849174991711741, -0.16880661865468785, -0.7596629218321989], [-0.969337774275499, 0.07734669579376256, -0.23324186590834808, 3.351790622443649], [0.24278062945352638, 0.154774056211584, -0.9576547172577187, 0.9922059878557257]], [[0.47820363422019396, -0.8471769498525774, -0.2315437320617479, -1.9158693742049997], [-0.8752279153380458, -0.4378494124798896, -0.20558207169895293, 2.456011457521978], [0.07278310539965543, 0.30096363173895047, -0.9508540960309753, 1.6496604374054102]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9857865829648456, 0.07398810876129494, -0.15083292945646803, -2.171249421298074], [0.01045767145555005, -0.923085024889608, -0.3844537344496467, 0.1968591581717871], [-0.16767662315964277, 0.37741197197025755, -0.9107385758049895, 2.131570170608045]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.03700908003308068, 0.9354319761620737, -0.35156414204042813, -0.2929856014579115], [0.1348610555279548, -0.35326203858449745, -0.9257528978064344, -0.10998423245305627], [-0.9901731281432509, -0.01315104819557722, -0.1392272467384409, 0.6326544406376302]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7324189118520672, -0.677359914256547, -0.06889182912216169, 1.1477113448992333], [-0.6116392371784918, 0.6990352050228351, -0.37046892674338466, 2.425314919158996], [0.2990986143484224, -0.22920150238828302, -0.9262865054602747, 0.6012881967896335]], [[-0.7298369338559483, -0.6815136241073272, 0.05363981856648364, 1.1213811113605032], [-0.6612568875504474, 0.6838784518846169, -0.3083011380371391, 2.693086952942529], [0.1734283098194854, -0.2604792567633687, -0.9497753303540578, 0.8932642065290067]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"e30fa220-83a0-4601-938e-6acb14211b72\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, false, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, false, false, true, true, true, true, true, true, true, true, false, true, false, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, true, true, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, false, false, false, false, false, false, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, false, true, true, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, false, false, false, false, true, true, false, false, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7238772735580352, 0.5361653769881335, -0.4341985506025535, 1.3305062782730244], [0.6785103651165548, 0.667261310365147, -0.3072230917740173, -0.9114272459466282], [0.1250015090132316, -0.5170000311498631, -0.8468090638009584, 0.8612658474924021]], [[-0.9889997078988144, 0.11314026136803597, -0.09528304693717662, 2.5518819154051777], [0.1458322215901809, 0.8535909815887577, -0.5001153859824881, 0.5032868173920773], [0.02474956407963741, -0.5085093090671136, -0.8607007271229383, 1.4060262892773705]], [[-0.9476560853985261, -0.3011291182845587, -0.10615647850369582, 2.5046669167346542], [-0.1905800731790192, 0.800214180668143, -0.5686268554726308, 1.5813687163721173], [0.25617802308984483, -0.5186313904680055, -0.8157170473313661, 0.6607347749740737]], [[-0.8591894667138099, -0.5009143013111158, -0.10429919956565212, 2.172647981371996], [-0.32437461120529887, 0.6909076964456832, -0.646086423474082, 2.111657465908293], [0.39569504911415077, -0.521278637327597, -0.7561044969926005, 0.11555674089183622]], [[-0.8399025425764234, -0.5303147922352964, -0.11545535981535768, 2.0461446482790158], [-0.3282374148263224, 0.6657457712095946, -0.6701065345336327, 2.281201567287709], [0.4322313251972745, -0.5249274133182381, -0.7332307223959124, -0.08559849885337457]], [[-0.8119051649946978, -0.5767912901352485, -0.09012108898059348, 1.8738074885716562], [-0.38462515152822835, 0.6446368882062677, -0.6606865937610871, 2.527373601057914], [0.4391736511527302, -0.5017520204123307, -0.7452324564492103, -0.1739457271181802]], [[-0.7827190712768977, -0.6186379817583709, -0.06810215110670387, 1.7264646638209136], [-0.4485823115828893, 0.6366144853278923, -0.6272925209227784, 2.768623365440861], [0.43142179499230493, -0.4604443990284086, -0.7758003546074115, -0.22622091163033844]], [[-0.7601774039224773, -0.6481458105324994, -0.04513671293805191, 1.5974675394016482], [-0.5221082632652695, 0.6507467382275731, -0.5512999583859035, 3.007098453097206], [0.3866953270933162, -0.3955195203467767, -0.8330852495566399, -0.06849937439601583]], [[-0.7818522632935816, -0.6223584174466761, -0.03710847094630487, 1.6303968260520751], [-0.5231199695617519, 0.6872351440123345, -0.504037056455234, 3.093576917391971], [0.3391939501648218, -0.3746703311814453, -0.86288446915214, 0.0545371393155071]], [[-0.7509846027083485, -0.6594353508045996, -0.03416349812590447, 1.4185781880983468], [-0.5702256682465512, 0.6737402671507358, -0.4700178078460747, 3.2774760486736545], [0.33296368235553564, -0.3334952331426496, -0.8819955304327635, 0.06953347770147476]], [[-0.6347147742952886, -0.7727176051463774, -0.006682663251124238, 0.8784952960315868], [-0.6850872322059675, 0.5666932168497323, -0.4577273011792821, 3.5394951659151648], [0.3574809639122726, -0.2859480733863224, -0.8890675226140041, 0.04588702375166485]], [[-0.43136058672170363, -0.9021182598100204, 0.010520909677799894, -0.05470890997083304], [-0.86011488200276, 0.4077007721651955, -0.30656560494171853, 3.864963134265645], [0.27226904704810995, -0.1412895102024363, -0.9517913848771009, 0.8022214947353006]], [[-0.4017443758380598, -0.9149419311537057, -0.038506091715664464, -0.0992899524634892], [-0.8339610755676026, 0.3829092031057757, -0.39735307550719584, 3.75733945888691], [0.378299327147981, -0.12752178164387157, -0.9168575757912226, 0.17136395477905617]], [[-0.46945335194424254, -0.8829110361650091, -0.009036180960204532, 0.1118873832047887], [-0.8122842051078146, 0.435866950112089, -0.38757498878585067, 3.812712421857495], [0.34613280757634235, -0.1746084305467998, -0.9217938899240449, 0.18471397016987262]], [[-0.4303896876465265, -0.9025490893736492, -0.013032959691562734, 0.031993234562355276], [-0.8331565998273767, 0.4027716945045485, -0.3789789470010422, 3.885475278118771], [0.3472964107669553, -0.15225013424207842, -0.9253135142705198, 0.1909918663437012]], [[-0.33116366470441316, -0.9435584851474659, -0.00529266339030024, -0.2974238640706888], [-0.8935741978945206, 0.3154123300944256, -0.3194373410883101, 4.054032810130782], [0.30307718494916025, -0.1010566530745251, -0.9475926196592437, 0.43265177276477407]], [[-0.28735464338915606, -0.9561810070992194, 0.05608199876442835, -0.46149602250221894], [-0.8925580987428328, 0.24607137283621494, -0.37787421166187046, 3.9214153098260556], [0.34751596983630906, -0.15864035152893136, -0.924156853340117, 0.1439039986939642]], [[-0.263298619036256, -0.9597964580039126, 0.09728615737474894, -0.5704708270945879], [-0.9259143277247911, 0.22310854674469188, -0.30480359919695854, 3.972497841804342], [0.2708440417058294, -0.17033301374840853, -0.9474334644183915, 0.40707685893538176]], [[0.08635829977840231, -0.9961696841951606, 0.01371875905094705, -2.1309997800983327], [-0.06056076957737494, -0.01899377630108373, -0.9979837822580188, 0.08542043214948108], [0.9944217602444045, 0.08535336403644977, -0.0619690729322423, -3.1677651969909992]], [[-0.20793396671119052, -0.9721135619652037, 0.10843748489832042, -0.7852032374960244], [-0.9623456262303367, 0.18347114827657657, -0.20057226484590443, 3.903116999411915], [0.1750838689402616, -0.1460601259529732, -0.9736591181946128, 0.7613226361154776]], [[-0.2407137854911329, -0.9649399513074544, 0.10463156237625844, -0.6500327294549942], [-0.957325352315826, 0.21827340730611552, -0.18943307387137678, 3.8424243248313763], [0.15995325344583936, -0.1457655996240074, -0.9763028969937277, 0.8019058165443591]], [[-0.299402203990606, -0.9499869837352979, 0.0887865472866165, -0.40658004998477737], [-0.9488253921065524, 0.28665059327941544, -0.13252098953149355, 3.8973780247329417], [0.10044249867170102, -0.12392000688375604, -0.9871955917418368, 1.0593848684552258]], [[-0.3171408242286971, -0.9438452069252252, 0.09261707710687908, -0.34191118853565283], [-0.9418988883445096, 0.30207216852528435, -0.14689754639819322, 3.7791790238825915], [0.11067150375286211, -0.13382313091058343, -0.9848061676748218, 0.975849542991223]], [[-0.2810954201815263, -0.9571037451136694, 0.07026938054629323, -0.500751628168333], [-0.9582195520924423, 0.27587651432412724, -0.07554759315907562, 3.7584973430773956], [0.052921212578048084, -0.0885695767956358, -0.9946631466609747, 1.2349510065264364]], [[-0.29129149653903663, -0.9550463410362541, 0.05509764529734062, -0.43544117869726234], [-0.9532563124592609, 0.2849451694919377, -0.10054179797369256, 3.7712289805532606], [0.08032226839812397, -0.08180914897781363, -0.9934060581368052, 1.1513928165745133]], [[-0.2997823421210551, -0.9526869739757196, 0.05018044409330995, -0.3939642006176194], [-0.9492222745289762, 0.29260391911209344, -0.115585552982544, 3.7712128282116786], [0.09543385610176223, -0.08228290306759012, -0.9920291845365832, 1.107851819234956]], [[-0.3094873209676563, -0.9493316909872059, 0.054652892399535136, -0.36861500680183096], [-0.9475895442909174, 0.30310463449077574, -0.1010031489645005, 3.782425186492188], [0.0793199452268771, -0.0830477033853764, -0.9933838257449232, 1.1589696027945926]], [[-0.32407028333460997, -0.9446073236635104, 0.0519177767309565, -0.32253908036859386], [-0.9414885480236239, 0.31665483932653027, -0.11545140393887582, 3.7749180567018135], [0.09261622643896465, -0.08629436141689295, -0.9919554011082637, 1.1062651812009863]], [[-0.3469597190426316, -0.9370960389197134, 0.03834015131478158, -0.23895095678725167], [-0.9331166612174113, 0.34079415874328817, -0.11468495073428298, 3.804433035154497], [0.09440471344338774, -0.07556689227060426, -0.9926617726457656, 1.1171359845483322]], [[-0.3656586265565567, -0.9287282459547256, 0.06129938001832785, -0.14786254596194157], [-0.9209345978289246, 0.3514782603076402, -0.16835230634829948, 3.7209770772362107], [0.13480814273051, -0.11801219300128904, -0.9838190316092573, 0.9199864576371284]], [[-0.3567004176310411, -0.9328569154223156, 0.05042605884464808, -0.18028384959440064], [-0.9303123868175143, 0.3497600706983105, -0.1103936405732353, 3.8133422421266685], [0.08534444912084675, -0.08628944485784905, -0.9926079068345083, 1.1377080269153799]], [[-0.3272872725512079, -0.9433063997881171, 0.055281799398827956, -0.3067784460932005], [-0.9424734469705397, 0.3216676201075072, -0.0909601227453095, 3.805142938715446], [0.06802090106328151, -0.08187171851838272, -0.9943189522107009, 1.1966135892196277]], [[-0.2813201806005708, -0.9580628801501753, 0.05453873545667413, -0.48162351316781327], [-0.9572279000307412, 0.2761616987158359, -0.08631027496840218, 3.7720396592847503], [0.06762916079325226, -0.07648682135332013, -0.9947743778212554, 1.1973756623980818]], [[-0.17859274617541943, -0.9817012917590876, 0.06608483012053952, -0.9017095057136337], [-0.9823985779092362, 0.1741759653428896, -0.06749642374809431, 3.663291443568279], [0.05475093730185713, -0.07697601480598348, -0.9955285169241294, 1.1947942417993618]], [[-0.146632697131266, -0.9879826425510034, 0.048878933600752364, -1.0511443371658946], [-0.9891870351730212, 0.14631292596456627, -0.010076563962751427, 3.601302590727738], [0.0028038504985995368, -0.04982796116262116, -0.9987538799467854, 1.3694085308983337]], [[-0.11543944342505227, -0.9856809474247846, 0.12290974243522465, -1.1290539476179557], [-0.9876832709577089, 0.10074587647550007, -0.11971643430817829, 3.387131066121421], [0.10561955866218747, -0.1352158949863601, -0.9851706301809056, 0.9076748705574288]], [[-0.07201871382509792, -0.9816633774740381, 0.17649452735210425, -1.4138631395973722], [-0.9974022859105128, 0.07113207886879483, -0.011353740189345582, 3.33357651710822], [-0.001408871698284811, -0.17685372679722527, -0.9842361375190761, 1.1130861381732273]], [[-0.15399172249191395, -0.9772690097530753, 0.1457114682522167, -1.0472513693201757], [-0.9850232080136644, 0.1634142158616103, 0.05500067025777243, 3.2731157905645616], [-0.07756177588504859, -0.13505952995097553, -0.9877970916595061, 1.475050348025561]], [[-0.05988895619903749, -0.9971366681053856, 0.04617118197620376, -1.3041302017704304], [-0.9652080174674557, 0.06964163426214816, 0.2520387386768962, 3.18081257168769], [-0.2545325046864021, -0.029470458038299452, -0.9666150713500588, 2.148639303774572]], [[0.00038045987185541283, -0.9961228271487442, 0.08797254391842531, -1.2490412814232157], [-0.999228082961965, 0.0030770657928205136, 0.03916337429619114, 3.0487667131787917], [-0.039282228430205166, -0.08791953650526153, -0.9953527322664352, 1.4160787351018602]], [[0.03084740716392245, -0.9979046954019849, 0.056874039472637854, -1.498523453553484], [-0.9992615735711531, -0.029485267206238317, 0.024635880375582637, 3.0943880850321284], [-0.02290731445120666, -0.05759199521156326, -0.9980773602442775, 1.4339284995007964]], [[0.052793320749223285, -0.9947203593179098, 0.08800154568368729, -1.5597147679560408], [-0.9971910738345041, -0.047824828110470494, 0.05764328305182391, 2.9714919639971216], [-0.05313028843379619, -0.0907975361706055, -0.9944510947634826, 1.4626770552953445]], [[-0.0646616163081274, -0.9805932318979435, 0.18508319462438202, -1.254883367577878], [-0.995516388476864, 0.07621857020267984, 0.05601651390653507, 3.1846874401499288], [-0.06903619087408006, -0.18063123515108204, -0.9811250487258963, 1.3399088108890003]], [[-0.13219881091946215, -0.9634608377193445, 0.23295211648023278, -1.1279635053520698], [-0.9881370891095009, 0.14662685985344862, 0.045668994905951735, 3.367057727783118], [-0.07815732542560011, -0.2241512394582208, -0.9714152841764748, 1.2010401388668963]], [[-0.039390694095973774, -0.9756932037097942, 0.21557167126771426, -1.5600497979189598], [-0.994101408386547, 0.060082912146168524, 0.0902908273963602, 3.218851951206286], [-0.10104832043394356, -0.2107434836538341, -0.9723046955738336, 1.3269331114028986]], [[-0.10537379441478467, -0.9529837318258664, 0.2841097856918634, -1.170356396711367], [-0.9842105797702455, 0.14080283362289614, 0.10725715226538779, 3.320095829854537], [-0.1422177841162926, -0.26832176378186084, -0.9527736000551464, 1.4315493129038768]], [[0.0036921518952105284, -0.9673875247299194, 0.2532740512000838, -1.6330860638125149], [-0.9999792886369473, -0.0022365256157413013, 0.006034919246812903, 3.007574364598434], [-0.005271651688807791, -0.25329108738779205, -0.967375746407973, 1.1090446227757842]], [[0.005891978902445281, -0.9636926611594533, 0.26694894532854785, -1.644317772250832], [-0.9999731983873837, -0.006838282977902812, -0.0026154144642460964, 3.021121323709683], [0.004345928153893619, -0.2669263806994824, -0.9637071236611027, 1.0362513586878515]], [[0.02282158090675112, -0.9633216413417662, 0.26737724429637233, -1.8270573659645366], [-0.9993064071505315, -0.014108822620718118, 0.03446223660984747, 3.1793500911940473], [-0.02942584022271265, -0.267978276072637, -0.9629754739765312, 0.9656289333839395]], [[0.05847546366263222, -0.949538334432807, 0.30815186449543164, -1.8489041324507451], [-0.9976925327064674, -0.06625427296560128, -0.014831773176322477, 2.961717479970575], [0.03449971494366974, -0.30657351933324295, -0.9512215551134421, 0.7372939760053681]], [[0.027036621182625287, -0.9659904711891747, 0.2571603209804031, -1.841180022060206], [-0.9932346175405284, 0.00310390363997215, 0.11608341957969023, 3.276042743858413], [-0.11293367803338315, -0.25855903649633005, -0.9593712571324735, 1.349571653642491]], [[0.08737098941934868, -0.9479256657578827, 0.30627314999091804, -1.9021557348935927], [-0.991747754335736, -0.11172600271632921, -0.06287839125690116, 2.841652873732723], [0.09382271568180657, -0.2982519614596125, -0.9498647616937822, 0.8543319938868451]], [[0.08101407871422253, -0.9467064219933936, 0.3117429543815743, -1.9782929135389842], [-0.9945857719636411, -0.09720862435926789, -0.036737250273621735, 3.0084329078697056], [0.0650834945095431, -0.30707887245241294, -0.949456004686779, 0.7420974408992809]], [[0.03637817476875027, -0.9355539513508356, 0.35130532662106384, -1.7514810511288497], [-0.9984885388404435, -0.048519552338293304, -0.0258164839815114, 2.9468919619850156], [0.04119789078060046, -0.3498351856985368, -0.9359049506453633, 0.6364700964678173]], [[0.040590577035495096, -0.93802393524585, 0.34418527272649857, -1.8937165083750291], [-0.9990685127293161, -0.03305290909078215, 0.027741883019511998, 3.1810821041985995], [-0.014646225751277525, -0.34499072756601024, -0.9384918145432682, 0.935089836907396]], [[0.014904015429409882, -0.9191427461348692, 0.39364258223892756, -1.6920861502477609], [-0.9980580645737275, -0.03748860046636005, -0.04974640262791427, 3.0781855375823297], [0.06048115461385348, -0.39213673261086446, -0.9179165609541262, 0.5447379586574934]], [[-0.04341534690819637, -0.9180387918773182, 0.3941064377313252, -1.5388822892954057], [-0.9982528756146304, 0.024037362908741478, -0.05397593455897373, 3.3570102058539977], [0.04007872228455028, -0.3957612686871056, -0.9174784543667552, 0.42427792821324517]], [[0.09171977078696095, -0.9409719885708574, 0.32582081021904313, -1.9209075673236202], [-0.994458621626874, -0.06967411981119018, 0.07872462702683164, 2.5110878264543723], [-0.051376390674756134, -0.33123591857397094, -0.942148201042539, 1.6413224707530392]], [[0.03152804015777303, -0.9015764454064334, 0.4314694609959202, -1.7856335236590126], [-0.9982702517690665, -0.04983631319263301, -0.03119048445103706, 3.014452612111304], [0.049623453293119874, -0.42973975261274805, -0.9015881864285931, 0.2090643372310704]], [[-0.04268606437764273, -0.8951072197511426, 0.4438028448053564, -1.6364894412092772], [-0.9989090913012163, 0.029817928741721664, -0.03593770222665321, 3.35007089175004], [0.018934815122564563, -0.44485273549224486, -0.895403549524649, 0.02219998426298294]], [[0.04130763645474865, -0.935005634093668, 0.3522188856146418, -2.301140605421881], [-0.999104079773311, -0.041901653899741445, 0.005940469745055438, 3.7774671778054647], [0.009204181161187541, -0.3521487123553969, -0.9358988019201584, 0.13099111528839694]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.18599661195502673, -0.8926252325241083, 0.41064029831780147, -0.9352713654049579], [-0.982331374251603, 0.1777598878674945, -0.058536257364927874, 3.104085861800259], [-0.020744433041387095, -0.41427239411601813, -0.9099165082419235, 0.6057659109188368]], [[-0.1237592623116194, -0.9400958283839715, 0.31765307876225346, -0.9601768439199444], [-0.992006874669817, 0.1251522003938503, -0.016102401820843604, 2.7799586449073943], [-0.024617180990239546, -0.3171068592629811, -0.948070268602735, 1.1907799247986333]], [[-0.16075874710416901, -0.9270672489269314, 0.33867822663488195, -1.2214708709500846], [-0.9815444062653331, 0.1861726387795827, 0.04370728885530811, 3.3358204306256343], [-0.1035722151869507, -0.32540138988163186, -0.9398865525713034, 0.7937373746062066]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.011977973222817934, -0.9769990349148138, 0.21290705468113444, -1.1976643152856299], [-0.9941964593162237, -0.011129116972557168, -0.10700253753297301, 1.6938710196890183], [0.1069108434189798, -0.21295311345677304, -0.9711956770025846, 1.7735437803628786]], [[-0.23434430001035877, -0.9450615755442576, 0.22790648846064082, -1.2031600288251383], [-0.9720884754030418, 0.22508339898662877, -0.06619259391514849, 3.864253690405168], [0.01125811002098355, -0.23705712798908074, -0.9714304777122879, 0.3450571373046927]], [[-0.21219241329431274, -0.9592326912673966, 0.18667357537756418, -0.9666920361445402], [-0.9729734674724474, 0.18957279045461814, -0.13185138874464686, 3.3727227539691302], [0.09108793188440593, -0.2096063002945211, -0.973533865636869, 0.7071811667384578]], [[-0.2634935481755093, -0.9544349155044143, 0.1400897645653022, -0.7758690408014255], [-0.9646413452361962, 0.2597641879157223, -0.04460540031640847, 3.6309163080887408], [0.006182647554421453, -0.1468896141412546, -0.9891335683954168, 1.064097792344195]], [[-0.19864707887731672, -0.9743318686914021, 0.10590914835758572, -0.9501580131202312], [-0.9727636903093916, 0.18283996472101113, -0.14247929715040464, 3.3784114342351605], [0.11945769489305802, -0.13132767017327102, -0.9841152890681545, 0.82818289634957]], [[-0.18266498279413046, -0.9776332066708638, 0.10424402752802711, -0.949489234278669], [-0.9805229141481545, 0.1733624921392488, -0.09230526068258459, 3.228582343153327], [0.07216868359081394, -0.11907459650871362, -0.9902590174166838, 1.1185013540138333]], [[-0.3011225309983172, -0.9512175874761294, 0.06715893537914149, -0.4141367013181744], [-0.9534393045740458, 0.299095768269549, -0.038667995766633906, 3.4550427432268185], [0.01669472427228537, -0.07567577339770296, -0.996992709854055, 1.520919150121638]], [[-0.2697295645092264, -0.9623401645019011, 0.03387284777099804, -0.043055963547029376], [-0.9442896844698526, 0.2574537910990538, -0.20502326027197787, 2.9379559262438995], [0.18858142494288666, -0.08728661544119343, -0.9781707892445634, 1.7409553573124237]], [[-0.31374045031697606, -0.9494330119136744, 0.011995237531209013, -0.14787173562745554], [-0.9049342018784169, 0.29516281662542476, -0.3065501622123518, 3.684972063064216], [0.28750829571609593, -0.10703208663889202, -0.9517789198780097, 0.4928842205400475]], [[-0.36728707954718776, -0.9282436960928797, -0.058854412421899094, 0.16349089219326188], [-0.8562819039008591, 0.3621627874523362, -0.3682654157488493, 3.7345894988955286], [0.36315492871447735, -0.08486316072703551, -0.9278559918984197, 0.24474871324589945]], [[-0.3891221460316502, -0.9173753059501021, -0.0837048594806766, 0.36778903244116323], [-0.873289465934651, 0.3962824462217791, -0.28341794492243244, 3.8046054086595658], [0.29317139041061846, -0.037185626920081885, -0.9553364669032922, 0.6197780379818575]], [[-0.03831361378899342, -0.9630039520819571, -0.26674979901203155, -0.6288845679065224], [-0.8457979160945144, 0.17340571600931445, -0.5045357695797927, 3.187551209406013], [0.5321258799650742, 0.20628583550459406, -0.8211505354936856, 0.4309755159221307]], [[-0.050413994520586, -0.9383533170424581, -0.3419816976855551, -0.7043697356339824], [-0.8424332127921694, 0.2238729053641816, -0.4900889758283323, 3.338573591003648], [0.536437052356697, 0.26338939735535344, -0.8017863270346046, 0.16236379852795524]], [[-0.23620961569119459, -0.8931268483016838, -0.38279165390290193, -0.01691202746430068], [-0.8126986974992328, 0.3975287136896134, -0.42601848419444394, 3.766299739709289], [0.5326592198939847, 0.2104646161115506, -0.8197431310032118, -0.3425123156603438]], [[-0.22389100483317703, -0.8791767777006458, -0.4206197944779816, 0.13292221017877986], [-0.824353845627938, 0.40105679873164546, -0.39949240467066977, 3.76923264814953], [0.5199168733107439, 0.25729678922021865, -0.8145457673475115, -0.17135795934424014]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.0497014272301249, -0.8433230343205814, -0.5351037543464034, -0.42073634063100446], [-0.8780130030998986, 0.2922590662045253, -0.37904855178295627, 3.728206749086601], [0.4760492984122402, 0.4509888003105913, -0.754974282658441, -0.22521627551406592]], [[0.272308527484633, -0.8327323976508381, -0.4820838306372005, -1.4685988901323395], [-0.8988374904210199, -0.041326350212221495, -0.4363293464709651, 3.395124188180643], [0.34342281763562776, 0.5521312223383341, -0.7597446160693624, 0.46328087040773985]], [[0.526316763208921, -0.663113102970489, -0.5322327286386419, -1.8239099528304648], [-0.8265573968885714, -0.25215165746671864, -0.5032120937393842, 2.854488016113034], [0.19948316824753173, 0.7047698591069542, -0.6808126844296385, 3.3348756159039588]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9932572171064498, -0.09131001756901597, -0.07143235511655258, -2.807947211188926], [-0.11522625203688602, -0.8454094143262517, -0.5215417845293665, 0.8171394909112458], [-0.012767595994677163, 0.5262560240606183, -0.8502303132871861, 1.656202439571658]], [[0.943513477984148, 0.3134035376378311, -0.10751994911805593, -2.459289191563407], [0.023552229075487652, -0.38712353571957125, -0.9217269989522675, 0.5653723219740877], [-0.33049600507091226, 0.8671295120615318, -0.3726376255078076, 2.769428953503695]], [[0.9924396552367127, 0.09588431996975368, -0.07661414946060752, -2.609520957808306], [0.023843402070991435, -0.7629622754365575, -0.6460031411985173, 0.8278555468646798], [-0.12039527769524622, 0.6392923927629738, -0.7594802259862176, 1.6971644805349406]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9124954085104047, -0.37372149978547325, -0.16638620749787586, 3.029940510491691], [-0.2798188653179539, 0.8668924382320258, -0.412551697546267, 1.7079496572830732], [0.2984183842520472, -0.3298935299975286, -0.895609695574008, 0.5005386213456777]], [[-0.9704037725644308, -0.1994201200355419, -0.13619153394293815, 3.337625327682163], [-0.13654292533622445, 0.9182665155642699, -0.3716754443517638, 1.327631637351477], [0.19917968705002687, -0.34207926291791635, -0.9183186974837159, 0.7388464384463754]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6473151252455792, 0.7409278638606492, -0.1789106737542376, 3.5481877883262034], [0.6994320661387022, 0.6706873514944458, 0.24692764406260992, -1.5906458011398503], [0.3029486977777689, 0.03470413664479037, -0.9523747736130425, 0.3659437559986632]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6890644830917724, -0.6476109650243227, -0.3252540178410317, 2.12960447546754], [-0.32883624334562556, 0.6793551281308838, -0.6560055906351767, 3.1783059614389915], [0.6457993985780763, -0.345074843856425, -0.6810774470892857, -1.694509880802362]], [[-0.6852292722039257, -0.6925316365546483, -0.2255233400023576, 1.9383680353413952], [-0.36189455128986814, 0.5924614495304503, -0.7197372885761738, 3.345970158780686], [0.6320547272678082, -0.4115693904935328, -0.6565953537356158, -1.78849318688392]], [[-0.7206144779323742, -0.6677237663562766, -0.18670764857723512, 2.0615535532864055], [-0.3741676091307963, 0.6012322821987588, -0.7060583142484873, 3.438219782610897], [0.5837065825152185, -0.4389358890374089, -0.683097292370087, -1.6468597677685088]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9626900753327248, 0.08537695510178593, -0.2567851132628621, 3.6901034679207467], [0.07413128630179734, 0.9958296039434988, 0.053178494722728405, 1.441200797674252], [0.2602544355954654, 0.03215859834137561, -0.9650043799411505, 0.7370145878758589]], [[-0.9504819338235337, -0.11599352700824102, -0.2883220337873335, 3.4982251904640695], [-0.11537930619370619, 0.9931362220839347, -0.01918489215785655, 2.1595112683144433], [0.2885683786857715, 0.015031502820345412, -0.9573412895857084, 0.5838515282152538]], [[-0.8962240215264174, -0.2580089047762953, -0.3608516430545276, 3.216669530003995], [-0.258770023200737, 0.9647883404616192, -0.04713314334950361, 2.8352218197120167], [0.3603062285496958, 0.05113573276537092, -0.9314314566852694, 0.27129664538516646]], [[-0.7025345947210222, -0.5253680528416785, -0.4800349490125826, 2.339764147796747], [-0.35974609180727746, 0.8441829090736093, -0.39741409821168683, 3.5138228221338017], [0.6140259706637492, -0.1065064555853856, -0.7820668016666348, -1.1411203428095078]], [[-0.4098040374059687, -0.8171981721508599, -0.40527496636118665, 0.6555319381989431], [-0.501639307881647, 0.5729800313885577, -0.6481141013880114, 3.9547159356241792], [0.7618521219461095, -0.06229792182136501, -0.644748255695934, -1.8522279379644773]], [[-0.25329084740947344, -0.9286905194620665, -0.270883121806929, -0.3407675876854589], [-0.5305057058097271, 0.36749976345137947, -0.7638767046889849, 3.9657349036247207], [0.808954536869603, -0.049777936120901756, -0.5857599460134071, -2.1422079223127604]], [[-0.13752867175444827, -0.9698478045527075, -0.20119915618548273, -1.0359498865541554], [-0.4975360876872146, 0.24328520371243323, -0.8326284592202573, 3.808790037420671], [0.8564716608822251, -0.014406445047020877, -0.51599297325327, -2.4017879104732067]], [[0.009346588722569438, -0.9762779317832961, -0.21631930378997982, -1.6608925249688133], [-0.4881891606016311, 0.1843406578589334, -0.8530473992289123, 3.7495470427152466], [0.8726877934005532, 0.11357782254060933, -0.474885347717328, -2.317060542562574]], [[0.07039422881502333, -0.9609205146897182, -0.26772451699085237, -1.8539667595771157], [-0.5095314417076464, 0.19609726163791552, -0.837808793155955, 3.860177311078491], [0.8575677013862317, 0.19539096301149117, -0.4758150997105669, -2.1181773165153968]], [[0.1156291011586259, -0.9377946759272926, -0.32736990815845096, -1.9358694217936994], [-0.5075843939237048, 0.22751228379085953, -0.8310212053668502, 3.92617368976272], [0.8538079374252465, 0.26225809144179285, -0.44970290132814855, -2.024483897163471]], [[0.1502763694001097, -0.9229351067871001, -0.3544119093086545, -2.0261352228122123], [-0.5088653839121462, 0.2351423790193221, -0.8281087384184987, 3.9612366074730185], [0.8476278864312251, 0.30479312697142247, -0.434313384430087, -1.9460671408852204]], [[0.16698421444378964, -0.9171059305732585, -0.3619847845337536, -2.0696731487928575], [-0.5279236975939516, 0.2269095291488138, -0.818418374121814, 4.00617313413849], [0.8327141416148283, 0.3277632952129038, -0.44627164447885176, -1.8288634208893715]], [[0.1943639995005948, -0.9202298174607373, -0.33970534107416006, -2.2007687006733296], [-0.5189200587383997, 0.1974263579955695, -0.8317119728653312, 3.920307412653304], [0.8324329452496874, 0.3379347810225869, -0.43915313438269743, -1.8158238335946768]], [[0.16754526728432773, -0.9311801834963951, -0.3237777776102664, -2.123034138292595], [-0.5036589497137967, 0.20147920564049382, -0.8400796343607376, 3.882947057885101], [0.8474999975125772, 0.30382494229094414, -0.4352403458528243, -1.9555550527672927]], [[0.13956250770455192, -0.9423144202386973, -0.3042463473131998, -2.0562952735566915], [-0.5007208327464288, 0.1979170388906486, -0.8426787604837798, 3.865957138244887], [0.8542838837862619, 0.26994884538920466, -0.44421466294585077, -2.0415083499632654]], [[0.15725866072726102, -0.9409150835902388, -0.299914186224397, -2.1378896238683973], [-0.5102663478977608, 0.18259539264165625, -0.8404089342630294, 3.862978203234197], [0.8455163912245283, 0.28519769995288075, -0.4514025964837124, -1.9653237476384302]], [[0.16642519602800765, -0.9520963936773712, -0.2565445600155711, -2.2421008512227414], [-0.5165767578642511, 0.13742803573109075, -0.8451402180878347, 3.8028942257016753], [0.8399113687535713, 0.2731775835269757, -0.46895938043381147, -1.9380974761277652]], [[0.23516247450235161, -0.943319163083524, -0.2341955745639327, -2.526759005471465], [-0.5939306862772136, 0.051266836485821435, -0.8028810941696249, 3.860566764571833], [0.7693795880345468, 0.3279034431599275, -0.5482101617807309, -1.4359802352173534]], [[0.3848710810480481, -0.8948701853088635, -0.22601239439063267, -3.0119455910761417], [-0.7068169053485213, -0.1282915171567749, -0.6956659751196348, 3.743554542246941], [0.5935352670957692, 0.4274910970662349, -0.681885069966091, -0.3395551206536827]], [[0.47650549538316467, -0.8407720084535829, -0.2569921062417541, -3.204443882103308], [-0.7499929427142816, -0.2362089965749522, -0.6178316079773083, 3.56596276854006], [0.45875167438214, 0.48714242243719896, -0.7431279576988075, 0.3939249512618911]], [[0.5135776392670294, -0.8132665650976086, -0.2735607839936895, -3.2061450527971114], [-0.8060763919778328, -0.34802817531115826, -0.47866192608728003, 3.338663401001904], [0.294072879981994, 0.46634095175517515, -0.8342944671848022, 1.1244090250054566]], [[0.5718871621595423, -0.7584308828294829, -0.3126142506790063, -3.2434608228671693], [-0.8104407777317516, -0.46335699834423755, -0.35844949138612464, 2.94641937675265], [0.12700716336750023, 0.4583479988566647, -0.8796512333859547, 1.8256321151825126]], [[0.6341063590438114, -0.6947208681401235, -0.3395173644908815, -3.3668614520958986], [-0.7725895925077134, -0.5511418730983855, -0.3151951098389193, 2.5981366773413064], [0.03185038412588387, 0.4621748057696743, -0.8862166788899863, 2.1976171726615945]], [[0.6632231118497847, -0.6465964117983509, -0.3768928019447776, -3.282404025040308], [-0.7461019917735521, -0.6108317651881856, -0.26498372121438696, 2.305827917271585], [-0.058880572176452484, 0.456943798389455, -0.887544614841187, 2.5248834760405225]], [[0.6132735149071497, -0.6646966338815837, -0.4267012782028218, -3.02503832446678], [-0.7820436402736767, -0.5868334648174346, -0.20984334461178683, 2.375486691167832], [-0.11092042472388206, 0.4623903864451084, -0.8797111968721423, 2.6866309528784806]], [[0.4457123799861801, -0.7834457854348807, -0.4330740994464779, -2.5397425260788196], [-0.8907619229437843, -0.43614313318909037, -0.12775900753173933, 2.9359138249538637], [-0.0887900386335462, 0.44270968891173623, -0.8922580682645168, 2.5101239708386522]], [[0.3055802813225208, -0.872532921614537, -0.38119154288316714, -2.140938334636436], [-0.9459886001400077, -0.3237365703977232, -0.017326320794346373, 3.2854870190995773], [-0.10828785745409142, 0.3658974360198776, -0.9243337093507312, 2.496244163928208]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9406194009262935, -0.3002595569420269, -0.15836458273881315, -3.920351761719264], [-0.23414143616182315, -0.9116407757596195, 0.33777046028993907, -1.0656494516571275], [-0.24579041981562172, -0.2806337371688873, -0.9278102042387137, 1.6854677556539601]], [[0.9022091857033678, -0.4282660459466297, -0.051056626618931844, -4.0875129327846915], [-0.3904756292305867, -0.8613421402181104, 0.32499000055611227, -0.342321304412132], [-0.18315940655462692, -0.2732725953580486, -0.9443382447072831, 1.431305557527347]], [[0.8311505675761346, -0.5560285167880448, -0.004585033953666384, -4.095056646158735], [-0.5383099857211169, -0.8066762880697604, 0.24391745640466797, 0.3850155631412378], [-0.13932369967381755, -0.20026396277033784, -0.969785157612097, 1.4195038466469767]], [[0.8341791283582054, -0.5507740963496975, -0.028161615751210275, -4.078396333330147], [-0.5338081716656752, -0.8192031074253823, 0.20965472722442152, 0.42223358248103043], [-0.13854247606598413, -0.15985669699694044, -0.9773698474736852, 1.5069322785735555]], [[0.7953514579596255, -0.6047650963898493, -0.04092965318780788, -4.003866570748866], [-0.5870299992624938, -0.7853324310594483, 0.1965928602267454, 0.6954226219709173], [-0.15103588410498514, -0.13233348372514184, -0.9796305481138246, 1.6316331617648956]], [[0.7887392357523704, -0.6123838831772119, -0.053632057666710684, -3.9381499715129222], [-0.6006697225357751, -0.786314442068921, 0.14458728375149596, 0.785389208738961], [-0.13071458378299433, -0.08182651048798026, -0.9880375092919287, 1.5932918557706377]], [[0.7427489016011349, -0.668544595240471, -0.0370431281759815, -3.854245903390668], [-0.6574322875407562, -0.738653907716102, 0.1489066550381794, 1.1190891285278153], [-0.1269127908023293, -0.08624690597630587, -0.9881571811914727, 1.596928120292345]], [[0.7518411934350551, -0.6522350963590361, -0.09656189171547448, -3.8693766883701852], [-0.6500376976931798, -0.7577563732147676, 0.057063740064534366, 1.1675723431814435], [-0.11038936285667357, 0.019865999343637846, -0.993689856362727, 1.777981973269846]], [[0.6970416423602939, -0.7166481285217129, -0.023418127636315657, -3.792274843807171], [-0.7141860022239962, -0.6968122395173486, 0.0662650517703229, 1.4647650888609318], [-0.06380676330116053, -0.029464601560924213, -0.997527209760158, 1.4621506443268322]], [[0.6834846827324786, -0.727691823503042, -0.05756125847217776, -3.7179173621901422], [-0.7206616562857645, -0.685222013024818, 0.10543988820970682, 1.4774859491642034], [-0.11616998592382592, -0.03058435667190687, -0.9927583449648885, 1.644198230655951]], [[0.6607992371918062, -0.7491612329225298, -0.04584555826600896, -3.694047430407101], [-0.7388864113473818, -0.6600369027261705, 0.1356398104017791, 1.5651300017363], [-0.1318758478756238, -0.05575602322294818, -0.9896969367546039, 1.6634448585604482]], [[0.6790069559167817, -0.7324268866342292, -0.05000409535143682, -3.739580900928587], [-0.7083684682280456, -0.6715426776463114, 0.21735810387440022, 1.3076464470693647], [-0.1927788033910317, -0.11216634002637368, -0.9748102610909517, 1.754927889612552]], [[0.7192311391918859, -0.6942436818918049, -0.02706064614994573, -3.8319857324846875], [-0.6631091709434925, -0.6975577884794489, 0.271476258892549, 1.0151416694163562], [-0.20734704200295712, -0.17731001631315363, -0.962064635192279, 1.652879653354099]], [[0.6970188205138426, -0.7170514585479777, -0.0014034399557752153, -3.778495794981177], [-0.6666804361037639, -0.6487731896632545, 0.36692035169865034, 1.0180926540768602], [-0.26401128757306336, -0.2548147448017558, -0.9302513025336909, 1.664644612575759]], [[0.5777479872491061, -0.8110150640184077, 0.09198820122616166, -3.558279619007967], [-0.7564839503048122, -0.48973638242574447, 0.43346315721151235, 1.5590698021092817], [-0.30649518130116393, -0.3200200644705949, -0.8964640886144877, 1.6421000663624679]], [[0.49620592914634754, -0.8600711587938963, 0.11856339102325975, -3.365974247279842], [-0.8150152685071412, -0.4143784450692608, 0.4050192790006594, 1.8596757341672547], [-0.29921528700960837, -0.2976039416286452, -0.9065881677734668, 1.6402450129029236]], [[0.5133883747484966, -0.8449376305604767, 0.1500425844083757, -3.381465776185153], [-0.8021010997779344, -0.4103068127622062, 0.43391490540882277, 1.811351246288949], [-0.3050675374537991, -0.34311619003446486, -0.8883721504685451, 1.5211217940970412]], [[0.5372315290717502, -0.7645209015406038, 0.3562163321336787, -3.336905303887137], [-0.8340349094693249, -0.418661474095197, 0.35931648987338594, 2.0077885951044645], [-0.12557091206853604, -0.49013300359798095, -0.8625552647954198, 0.397371569982285]], [[0.34436297019140677, -0.9115256481031514, 0.22480021710639414, -3.0245129271334137], [-0.9252476694464097, -0.28891385359052885, 0.2458567375270763, 2.647695897117396], [-0.15915682500269873, -0.2926598333451312, -0.9428782142999487, 1.1659549909502853]], [[0.23258907775434767, -0.8658782439120224, 0.4428963621765417, -2.437506642881003], [-0.971551726201236, -0.18596986919777203, 0.14663714081351417, 2.8652515573485573], [-0.044604531437745065, -0.4644029225472165, -0.8845000629196266, 0.2877370405309541]], [[0.36905902363262405, -0.910754992089796, 0.18525868794431677, -3.021094377737399], [-0.87287297914247, -0.27119577160259506, 0.4056422262879228, 2.4932008300362622], [-0.31919930977100097, -0.31141322683596573, -0.8950606698952468, 1.2410677765793963]], [[0.4133150989421916, -0.9092131294474454, 0.05002113779982412, -3.0438651203900697], [-0.853117817691951, -0.36743838395954215, 0.37037686635334355, 2.2005780659526373], [-0.3183718236950769, -0.19575627508098536, -0.9275337528324712, 1.5014314225938459]], [[0.5003820225391449, -0.8590255490041799, -0.10813388773969962, -3.2756339073040466], [-0.7618255121342826, -0.49618447635789487, 0.4164406974381585, 1.6406335227677957], [-0.41138755520916387, -0.12600028404535016, -0.9027093706390326, 2.030164899232706]], [[0.7334038378795377, -0.67614029064086, 0.0703783912551166, -3.6170275944941195], [-0.6173180566800454, -0.6190690044682378, 0.48546059016513204, 0.8922484150462332], [-0.2846703839185546, -0.39948451168824967, -0.871421194050767, 0.993373853655539]], [[0.862120284507388, -0.5056872805846423, 0.03207786301812532, -3.8397232201897116], [-0.48357287329883875, -0.8022053846192779, 0.35017680833736187, 0.13470704192040964], [-0.1513469234917103, -0.3174065140206569, -0.9361341856843222, 0.6957355404311582]], [[0.825726181704496, -0.3914172218942276, -0.4061635523435342, -3.5362611717324994], [-0.30475665827645887, -0.9154891969808004, 0.26268404871178375, -0.7643010923935164], [-0.47465740496054576, -0.09312404961154794, -0.8752304035510114, 2.442409397751278]], [[0.909507719584779, -0.35088945770801083, -0.2228728258112078, -3.809952724440442], [-0.2689889955179928, -0.9055660794416366, 0.3280167618505559, -0.7476121789037675], [-0.3169236947688136, -0.23838343951306923, -0.9180047426130229, 1.5479716616135297]], [[0.9303383309046729, -0.3651879856766464, 0.03329151794287727, -3.9389454582108416], [-0.3553190562580039, -0.8752911396942101, 0.32804540696789547, -0.299280333295857], [-0.09065847069871018, -0.31702232711631556, -0.9440751483861477, 0.5878075644960764]], [[0.8726248238688199, -0.4404900065923313, 0.21093712537199089, -3.9236493461590642], [-0.4866098635962145, -0.8210219177240338, 0.29855292875405454, 0.3200890320769269], [0.04167442163707359, -0.36316878267416924, -0.9307908883697656, 0.0027632065352122047]], [[0.6789203828515381, -0.7167056069218691, 0.15937436040805314, -3.9592805326855305], [-0.6822222282754771, -0.6960334213287088, -0.22385331724210383, 1.576340810614403], [0.27136680894236775, 0.04324984855703491, -0.9615037730577187, 0.0911637760907917]], [[0.6193085793985476, -0.7280460944435947, 0.2939485802802615, -3.7152662951146427], [-0.7131443050764017, -0.6782223208080973, -0.17731239013327338, 1.73137303507578], [0.32845408144891297, -0.09981667156896341, -0.9392308281016142, -0.3605617266842247]], [[0.5796954354505286, -0.784377068285609, 0.22069394388042207, -3.6218408231284847], [-0.7618499653334645, -0.6178146392350777, -0.19465277256753788, 2.033136939281183], [0.28902912040004025, -0.055296349739413525, -0.9557219686008455, -0.06411382663225035]], [[0.5990040687601086, -0.7954395364071569, 0.09203298066021207, -3.6188394478533645], [-0.7756458622678613, -0.6049338098307921, -0.1800793771378308, 2.08701982459763], [0.19891611788787136, 0.03648327896407508, -0.979337198517675, 0.5155488672095457]], [[0.6251347348384174, -0.7805167930258358, -0.00031480655270989255, -3.6117059393663418], [-0.767758266865331, -0.6148433952328944, -0.18031872614465178, 2.0365509107145066], [0.14054823712321785, 0.11296519438814455, -0.98360818311887, 0.9433511207353894]], [[0.6727424094821723, -0.7379241246463041, -0.053718123097399595, -3.5945686711333726], [-0.7388729290096717, -0.6738373798535375, 0.003159159506677018, 1.5717524813865327], [-0.03852849933218422, 0.03756556637541732, -0.9985511418861353, 1.5485763791011513]], [[0.6807756927539163, -0.7196387960052579, -0.1366179323497767, -3.5504349120048913], [-0.7286697728160894, -0.684368613032222, -0.02607611321693052, 1.5314095575155073], [-0.07473164215761789, 0.11730134176750107, -0.9902805546308432, 1.8982927475102707]], [[0.6831779058646702, -0.7132063934795655, -0.1568585006884719, -3.5355011123432036], [-0.7267054675732304, -0.6851346538393641, -0.049896588135737295, 1.5480178307533812], [-0.0718826288997334, 0.1480781766780168, -0.9863598436950772, 2.0097111044399485]], [[0.7297098417253236, -0.6540851361322155, -0.19923900617124163, -3.5613075604312145], [-0.6711681749015368, -0.7408491322869712, -0.025997003461589063, 1.201547858536432], [-0.1306017912914797, 0.1526931494224371, -0.9796060301115516, 2.2599232838359753]], [[0.7495188677175659, -0.6284600076802149, -0.20798914799085635, -3.5803086884912645], [-0.648388282239811, -0.7602975954091759, -0.03924540570732035, 1.0962599994148416], [-0.13346948111641563, 0.16427289843918044, -0.9773434976756664, 2.297828941668685]], [[0.7617362819832585, -0.6122459175008571, -0.21192633912247955, -3.5698040973955734], [-0.6295420024519952, -0.776738293125216, -0.018827935140587948, 1.0223080509003777], [-0.15308397649347455, 0.14775845321489975, -0.9771042603757726, 2.332673802961421]], [[0.9011643129027498, -0.3867781502540454, -0.1957180207251595, -3.624380217255331], [-0.40215432747175905, -0.9144917556032176, -0.04446038494527646, 0.02628142470630923], [-0.1617862109274212, 0.11877496124943215, -0.9796518414895895, 2.2246022955625806]], [[0.9706099037046706, -0.09873930220693304, -0.2194697360232113, -3.3316276273554046], [-0.11537039484844706, -0.9912412012805237, -0.06426937743948608, -1.0518999702706742], [-0.21120153129871838, 0.08770080434998104, -0.9735001192056651, 2.298790460531106]], [[0.9624360657822462, 0.2299546735750986, -0.14435258010358518, -2.8166701819596134], [0.21967380837169107, -0.9719729638941575, -0.0837375386208872, -2.1093999047245724], [-0.1595626434885988, 0.04888154620894142, -0.9859768543141131, 2.0441152909442977]], [[0.8640302965354864, 0.4886336735823507, -0.12119727600163438, -2.136922665648758], [0.456721059657951, -0.8620741708193491, -0.21962239792664626, -2.655034895655225], [-0.21179594031453475, 0.13440705728327115, -0.9680274906317142, 2.2817346569513455]], [[0.44603326941102234, 0.8948641861626029, -0.016504875099706398, -0.11615984699988859], [0.8660716060279695, -0.43618703889658256, -0.24425568638368442, -3.3741876840725653], [-0.22577487860842255, 0.09465175868505435, -0.9695703939205128, 2.2338338894745413]], [[-0.1888211697095406, 0.980621569209186, 0.05222933918052343, 2.114476105735105], [0.9708765076716239, 0.1944025649242656, -0.14002303239902275, -2.915629782261535], [-0.14746312325755156, 0.024268925657722915, -0.9887697641648169, 1.8550667218292456]], [[-0.6684606901571848, 0.7429280298355758, -0.03490341242930739, 3.5449693014866304], [0.7338711078131481, 0.6664798424478411, 0.1312928662487185, -1.7019426103054003], [0.120803571270403, 0.06214951403937829, -0.9907289917394091, 0.9786318948351082]], [[-0.8004577158808794, 0.5681928136049452, -0.19085170068527366, 3.904242219014418], [0.4950743540123536, 0.8062337938275693, 0.3238648694898155, -0.8442363766870402], [0.3378887821251485, 0.1647543512569559, -0.926653751223122, 0.3343557309111613]], [[-0.9146190827194619, 0.3440485626369295, -0.2123735390129225, 3.9987865785269303], [0.2819826699493554, 0.9192320604404794, 0.27476934491784877, 0.06023499342314968], [0.2897545640255618, 0.19142362865073273, -0.9377629162109917, 0.4956640466587392]], [[-0.8919376094848095, 0.37962597941965665, -0.24562454383914817, 3.9916537824209137], [0.2507770564961213, 0.8673535707506862, 0.4298937673904747, 0.029798579646098874], [0.37624216765490864, 0.3218414191114948, -0.8688267561617992, 0.26605997112074703]], [[-0.8466218946020954, 0.30657103695045507, -0.43502363945362854, 3.6565725233068007], [0.18068128701923244, 0.9344382421680619, 0.3068866958584817, 0.4091687079575652], [0.500585297528235, 0.18121636481561276, -0.8465075244920051, -0.5458925159369117]], [[-0.8750479078939385, 0.2216910304129424, -0.43028391316070386, 3.6401296290691425], [0.08809042804190957, 0.9470421170797051, 0.30879006616888316, 0.702740060709492], [0.47595297601531333, 0.23230220728963794, -0.8482360810001703, -0.5225996604085292]], [[-0.9094273070850555, 0.10949575624400042, -0.40118904832083724, 3.6316198907479897], [-0.04139910797250153, 0.9360852452761861, 0.3493286810946158, 1.1972906499431484], [0.41379715681370477, 0.33429791046426993, -0.8467684571782995, -0.2763928230956417]], [[-0.9636605077516868, -0.06339294196405619, -0.259499057240874, 3.595220973982867], [-0.1011036246383381, 0.985721664636411, 0.13465087059285194, 1.5339860728450114], [0.24725792785015135, 0.15599402160199835, -0.9563102960544156, 0.07511172531170772]], [[-0.978905162845442, -0.10455410625997422, -0.17553666573886229, 3.622238915903243], [-0.13083138961237953, 0.9806715614560089, 0.14548689303001552, 1.653372393936343], [0.1569325640096178, 0.16538357661996386, -0.9736634135766612, 0.3324730778287922]], [[-0.9230257482722154, -0.1510541604511554, -0.3538447521681131, 3.241441326999412], [-0.19462822072783623, 0.9766685307896253, 0.09076583421944243, 1.8833230874719928], [0.33187847734198356, 0.15264737657631472, -0.9308896039281647, -0.3229901122766333]], [[-0.8889753322321302, -0.12384725311411378, -0.4408908216087768, 3.144637432785275], [-0.24084968602116336, 0.9452766667282787, 0.22009873257831797, 1.9907432311521547], [0.38950518279771407, 0.3018507598717676, -0.87015621088317, -0.33782416600258475]], [[-0.8951884668242123, -0.21980025984221452, -0.3877182670937896, 3.09540842614566], [-0.30483522041701716, 0.9365857962247606, 0.17286565507161847, 2.1875297885076614], [0.32513550599438495, 0.27293752413936456, -0.9054236636284967, -0.14831541183825042]], [[-0.9315575843140593, -0.14981743966735717, -0.3312932264301101, 3.43872334208683], [-0.2722282615382602, 0.8913927802015316, 0.3623681622665555, 2.0434218123106302], [0.2410233198817306, 0.4277541889638275, -0.8711682461482899, 0.36327043703861717]], [[-0.8956832260320792, -0.21674595478931355, -0.38829466863097084, 3.1953237286498934], [-0.3198150874691945, 0.9206682901856384, 0.2238039527660862, 2.243792072076407], [0.30898198722876713, 0.32463993982429507, -0.8939457707484494, -0.027218129123774398]], [[-0.8276932304508806, -0.1739762066983262, -0.5335318132676321, 2.9077813632236205], [-0.34249203184745786, 0.9097407069263145, 0.2346722273346584, 2.3032198712570153], [0.44454822504064295, 0.3769670087210165, -0.8125716891137321, -0.44202235856288397]], [[-0.9330165533696151, -0.18525497478073283, -0.30848128866638713, 3.322998547742806], [-0.24574155174142626, 0.9542807183453844, 0.17017461720812835, 2.0163876123124016], [0.2628520513254571, 0.23458240537859423, -0.935884551748127, 0.017584141823867274]], [[-0.914397287144906, -0.05593654310554311, -0.40093478822301987, 3.4250407724800747], [-0.20978161248877433, 0.9125235541880083, 0.3511302295640387, 1.8745949937247466], [0.3462214267252185, 0.4051812757241955, -0.8461435206150711, -0.03485707738842277]], [[-0.8501876379124508, -0.1514841095489742, -0.5042157721600962, 3.044862139895066], [-0.2402523639307058, 0.9638096335227166, 0.11554129977853922, 2.0858603761443204], [0.46846534766891285, 0.2193708159326599, -0.8558134511390224, -0.6916602731523226]], [[-0.883031814769932, -0.18719327786428133, -0.43036436983856663, 3.114902763745788], [-0.2394002695548709, 0.9683950501280361, 0.0699895551105569, 2.155107775605932], [0.40366115126573143, 0.1648323500103802, -0.8999377597083477, -0.5455883139475638]], [[-0.9121368883235564, -0.2304058198226206, -0.33899772145441726, 3.204049024712882], [-0.21776533497959277, 0.973081701650299, -0.0754338173141488, 2.104065288733697], [0.34725287016905465, 0.005015984970544569, -0.9377581159628157, -0.5143977741572983]], [[-0.9294208057917678, -0.24706812656295085, -0.2741063782513184, 3.2323208481661636], [-0.21646034765689415, 0.9665906341004918, -0.13728606615919017, 2.1166496389229503], [0.2988676691340795, -0.06826336430240398, -0.9518498985872088, -0.451741884580826]], [[-0.9193556853404945, -0.2482395944755595, -0.3052248803205915, 3.1630305593169408], [-0.19864966227631414, 0.9625483656834657, -0.18449649155904158, 2.0581191747274734], [0.33959304396529666, -0.10898507904616554, -0.9342370240124747, -0.6300612971913908]], [[-0.9372327440871954, -0.18519335603862624, -0.2954626952593776, 3.2551493478317646], [-0.1355245296796096, 0.9741568373377247, -0.18069742146273804, 1.8561694465565237], [0.3212909666733657, -0.1293130973541055, -0.9381099283062627, -0.5240706789107022]], [[-0.9895325643801984, 0.03954903807293224, -0.13878464475097615, 3.583225224575215], [0.06858044044963112, 0.975051277258469, -0.2111201788185178, 1.1314028260699038], [0.12697254513824432, -0.21842820400336144, -0.9675572812381615, 0.030761999668266874]], [[-0.9784147004995831, 0.20210513794358076, -0.04310669394788078, 3.705239157410223], [0.20664742268459985, 0.9556312640466103, -0.20991838860492923, 0.6259205288893028], [-0.0012314804596097462, -0.21429512452103044, -0.9767681828675587, 0.4942924063432945]], [[-0.9707572937860459, 0.20897005138831767, -0.11816003632343444, 3.626413004998482], [0.2252406852225675, 0.9631232205314372, -0.14717437206803713, 0.5860347315161676], [0.08304763862783665, -0.16948504269084225, -0.9820274487112988, 0.2530379101711302]], [[-0.9498618040318926, 0.3109318435393179, -0.032923273144074054, 3.675605905182977], [0.3109242620241436, 0.928195728866024, -0.2043986110510839, 0.2151562974578846], [-0.03299479543837051, -0.20438707784033625, -0.9783339235076478, 0.6413931661837081]], [[-0.9198111345001577, 0.3910113038678214, -0.032521332954222285, 3.6469221615705467], [0.38593863949263624, 0.8867051494331711, -0.25456893863012947, -0.02715762830714394], [-0.07070249922107474, -0.24670658324471997, -0.9665076401082457, 0.7718027287307668]], [[-0.8907088358909065, 0.454536314164399, 0.005874416712322292, 3.6536506719103077], [0.43400190013921636, 0.8541712489006921, -0.28641548182139476, -0.15673646869059438], [-0.1352039952864446, -0.25256329237891006, -0.9580875027894422, 0.9924846225564851]], [[-0.8778018774249837, 0.478961440524412, -0.007733206317871451, 3.6191322710617455], [0.46851571913466333, 0.8550711738166669, -0.22214029042818176, -0.26540838743964396], [-0.09978419169840436, -0.19861829270882328, -0.9749840454533238, 0.8756600345098691]], [[-0.8619232391872349, 0.5028507686124714, 0.06503410070748827, 3.576740850857203], [0.4810780415928879, 0.8515529239636646, -0.20837834721027276, -0.32610751092671847], [-0.16016319067169116, -0.14831966219884746, -0.975883717539689, 1.0505188384362592]], [[-0.8465051487391972, 0.5271295669006674, 0.07458855714614761, 3.55830938713552], [0.5193250692086232, 0.8484389071826788, -0.10223939196865474, -0.4545136375986908], [-0.11717724032203482, -0.04781046410333671, -0.9919595021333962, 0.9637527947865817]], [[-0.8485986131043788, 0.5142863713098539, 0.12405612488816575, 3.5408945706917265], [0.5104516403098834, 0.8575656907367383, -0.06340511790203035, -0.4043128162493338], [-0.13899466443815156, 0.009519157324269382, -0.9902473776292274, 1.09910092645315]], [[-0.8573586983139331, 0.5040470720638223, 0.10427181579566676, 3.5401000171772874], [0.5068195547676194, 0.8620521603646173, 0.00010823977169215418, -0.3963116774652727], [-0.08983318613179365, 0.052939795566134845, -0.9945488307342307, 0.9301264297721357]], [[-0.8773535386494955, 0.4752636509847506, 0.06614552344530156, 3.571784674551508], [0.4779214588089727, 0.8778241757079379, 0.03187155083428999, -0.2742737856682295], [-0.04291674998309119, 0.059574982965373245, -0.9973008442669462, 0.785526518440653]], [[-0.8793181900888907, 0.4737659311209701, 0.048428948861993996, 3.595105862774768], [0.47366769317900304, 0.8805889239411847, -0.01421490311568111, -0.2586425889406892], [-0.049380532776381, 0.010439805610574957, -0.9987254745131587, 0.7270151121552118]], [[-0.8875086613088486, 0.4495127081087812, 0.1013247321757362, 3.583189501196105], [0.4524435979041608, 0.8917672529174704, 0.006779184284730105, -0.18189075692109155], [-0.08731074857835719, 0.05186031115157237, -0.9948303077962335, 0.9412448165343342]], [[-0.868531744780208, 0.41044093047475505, 0.27783241513557244, 3.526846417976989], [0.4494333018716009, 0.8885270082861512, 0.09235509035701392, -0.21853451329380433], [-0.2089552954051133, 0.20508046746845274, -0.9561797353976306, 1.6677936676786782]], [[-0.9362127514738506, 0.3497586938038163, 0.03427156381623897, 3.6231188689756992], [0.35069574549010096, 0.9361103951373931, 0.026642488826233234, 0.22029784523136822], [-0.022763525054449747, 0.03696192939176663, -0.9990573745800257, 0.7032400218936956]], [[-0.9167704203389454, 0.3967314253080876, 0.04621874689523406, 3.6635347237670706], [0.3775429806455447, 0.898514259660933, -0.22390494177494885, 0.15949151511726195], [-0.1303583298329271, -0.18781986412245838, -0.9735144603364606, 0.8603051105817404]], [[-0.9858497265599234, -0.009256393443271414, 0.1673757324768058, 3.038349267432994], [0.07714018362530728, 0.8614217168107843, 0.5019980257700372, 1.5029992364332887], [-0.14882778205690553, 0.5078060111766938, -0.8485183240807693, 2.507017419391387]], [[-0.8523064552916342, 0.5108230487700668, 0.11239892843556634, 3.5478216918854724], [0.37439388163182347, 0.7458895667175243, -0.5508883513549728, 0.39330508855334034], [-0.3652436552013816, -0.42744422689656, -0.8269755167040536, 1.6651630966482933]], [[-0.84163663659381, 0.5397696423335637, 0.017219325136471036, 3.58271588884502], [0.38124871263980176, 0.6164409510219571, -0.6889484545404244, 0.20000046401676513], [-0.38248815805662884, -0.5732794145251005, -0.7246057699385269, 1.3971449323842369]], [[-0.8354199266836351, 0.5488279413442877, -0.029350245309043344, 3.5486248470001627], [0.4261432854648999, 0.6130961163552386, -0.6652180487353786, 0.08498839063363471], [-0.3470957308194539, -0.5682438234683372, -0.7460720546549069, 1.370937506669951]], [[-0.8148357056801625, 0.5767358031705172, -0.058468676143469914, 3.544231744766338], [0.49773871217763954, 0.6443695599501383, -0.5805549453836472, -0.08941893748875475], [-0.29715138759301873, -0.5021590221741745, -0.8121190610376169, 1.4441589473545957]], [[-0.7692914824239185, 0.6234317628813658, -0.13972634719566, 3.6218042584962697], [0.5946249070485002, 0.6186561969818788, -0.5135033883563773, -0.4668565532377707], [-0.23369175207433443, -0.47811854907182844, -0.8466349969413486, 1.4151482339481327]], [[-0.7066682556557391, 0.6573211028968632, -0.26181853283319545, 3.5381998704386146], [0.7073154258667248, 0.646867164874489, -0.28507500651269774, -1.0771830144357912], [-0.01802400564384944, -0.3866417446340891, -0.9220538468695085, 0.9788948570964322]], [[-0.6129309138349641, 0.6981805224620484, -0.36994547290115143, 3.4201559871988283], [0.7881894430595758, 0.5731124414504781, -0.22427557001177761, -1.5019055571980708], [0.05543551853163395, -0.4290525463265464, -0.9015768496228346, 0.6454608529120116]], [[-0.5427137224748252, 0.7339497972965371, -0.40838647196729017, 3.277543740269015], [0.8350239152842115, 0.5238901734064768, -0.16814918112068725, -1.756986062477921], [0.09053660221669577, -0.4322693387883343, -0.8971880195380184, 0.5308583553517257]], [[-0.43669944640573033, 0.7940457644873216, -0.4228296553089358, 3.0263086261768093], [0.8934601550864387, 0.43767531549168726, -0.10084279588631398, -2.103306459600502], [0.10498830783399271, -0.4218194425450267, -0.9005808198652452, 0.4284317384788469]], [[-0.17789040465952186, 0.9487394403553417, -0.2612440970515977, 2.374766525873719], [0.983622094404015, 0.16360149652912995, -0.07564473368112247, -2.9223819182673645], [-0.02902721706141434, -0.27042193817747495, -0.9623042117864847, 1.1046237034438928]], [[-0.061746999280579085, 0.981226638321342, -0.1827063007354766, 1.914242030603504], [0.9971374070763811, 0.06864908887283999, 0.031690598068202375, -3.108244783578546], [0.043638280085672596, -0.18022648763577223, -0.9826566611312607, 1.0213598273861513]], [[0.1289761709488793, 0.9881997215279177, -0.08262238013705031, 1.2494749656227213], [0.9916056457739231, -0.12928952740231864, 0.0015688764660202886, -3.3827618604010117], [-0.009131845193941023, -0.08213116629045744, -0.9965796912074429, 1.4033652699848504]], [[0.2717312874355922, 0.9479416649051493, -0.16603827078553068, 0.6692477119712743], [0.9609010974595187, -0.2767861219101763, -0.007650073138045249, -3.5425354587405824], [-0.05320891212652356, -0.1574675923953197, -0.9860896353859181, 1.4086795225779374]], [[0.22296444250254788, 0.954576632229244, -0.1976621121545613, 0.9424956390779899], [0.9721768827491576, -0.23267935724614708, -0.027063358247829475, -3.509107036466791], [-0.07182594258106577, -0.18612836944806177, -0.979896557836054, 1.3873356131139698]], [[0.2266534777943727, 0.9423063147538715, -0.2463473364554479, 0.9379508713749299], [0.9714480503169587, -0.23692418720721145, -0.012474576208530111, -3.5426528556175563], [-0.0701205143955447, -0.23648623361874638, -0.9691013232731265, 1.294406601625816]], [[0.11987262813100105, 0.9468622325384298, -0.2984668584906996, 1.320007609367122], [0.9927077844892641, -0.11816981872572843, 0.02381488099372453, -3.320691328316776], [-0.01272036317812858, -0.2991451262091179, -0.9541228358162002, 0.9840755424890202]], [[0.14929495612375548, 0.9534692595610631, -0.26193011882577383, 1.27991718339467], [0.9885286538908861, -0.1500446377782752, 0.0172541911041576, -3.4049601735172126], [-0.022849868986027644, -0.26150139148016815, -0.9649325912939497, 1.1165165639904853]], [[0.06748261494508334, 0.9603560486961378, -0.27048540887248373, 1.5558998218206062], [0.9975906912801089, -0.06057475930685774, 0.03381584253261481, -3.252242502373226], [0.01609066037948506, -0.272115707498956, -0.9621299976515101, 0.9699156822284042]], [[0.1004434399019889, 0.9657336331035787, -0.23931081311386027, 1.4838843005126887], [0.9947424140441147, -0.09264822790183702, 0.04363296423961638, -3.3242631147640673], [0.019966098325456497, -0.242435260965089, -0.969962112228332, 1.0306016053711786]], [[0.1149334518093501, 0.9596800573620292, -0.25652385689600166, 1.4293399438633836], [0.9931597050237448, -0.11636479001513544, 0.009645515117497047, -3.348475214405963], [-0.020593736240330007, -0.2558777503933195, -0.9664897696723529, 1.1016049281862634]], [[0.09067359322854252, 0.9683100771110952, -0.23270989247586776, 1.506048581978771], [0.9956703962966414, -0.0833431401200706, 0.04116288295801694, -3.310606088679447], [0.020463661195249574, -0.23543473736904535, -0.9716747002008721, 1.0367814317133788]], [[0.03316518539289699, 0.9658458185471084, -0.2569862355709363, 1.6798539023344803], [0.9994419510775325, -0.031025367761940578, 0.012377923152581669, -3.2430051522512433], [0.0039820728508734304, -0.2572533407952214, -0.966335791402506, 1.0151074204629773]], [[0.0281023300239268, 0.9714795731014741, -0.23545211422665896, 1.7051543768283273], [0.9993984542087747, -0.02251731237124245, 0.02637613255743103, -3.261518169619318], [0.020322125192449816, -0.23605170978019457, -0.971527972596522, 0.9918467550210762]], [[0.033506104030119985, 0.9770758817567547, -0.2102381085388264, 1.6718235174791982], [0.9994236890615574, -0.03390161148219974, 0.001723508484909403, -3.316173198874437], [-0.005443412101827708, -0.21017469407179015, -0.9776486931595213, 1.1173329951365845]], [[-0.03721436002679303, 0.9800376873586559, -0.1952977797223851, 1.8478009537232596], [0.9982638008778003, 0.04538753715661846, 0.037541381539093616, -3.1331190307012036], [0.04565605397757709, -0.19356162540016453, -0.9800252149346171, 0.9825383491647166]], [[-0.02920589381183204, 0.9821958755555511, -0.18557553127585458, 1.831203436958095], [0.9989706334255939, 0.022234272295518765, -0.03953872391410622, -3.2344604393643266], [-0.03470863465939193, -0.18653926979902236, -0.9818342077473808, 1.1946439400767488]], [[0.024025118813087176, 0.9812806628485379, -0.19107866020451109, 1.693629675632404], [0.9935187395175534, -0.04467729765616517, -0.10452010955598086, -3.387016610899887], [-0.11110044056379292, -0.18732912158464943, -0.9759941046506656, 1.3615605832884905]], [[0.028218477499104354, 0.9890033905320691, -0.14517579358730562, 1.5994539514348465], [0.9979584643357905, -0.03619774344890323, -0.05261774253764635, -3.3883729289723727], [-0.05729416190313996, -0.14339461944326498, -0.9880057500473048, 1.3481856074662406]], [[-0.01816786067126437, 0.9864192621738547, -0.16323899059666253, 1.7549058116202487], [0.9991042400261151, 0.02415178017883883, 0.03474779239076592, -3.2051303965087636], [0.0382184039497757, -0.1624614745919192, -0.9859744534585824, 1.02823914334021]], [[0.1669681436583124, 0.9687551775641554, -0.1833985958123418, 1.1818914602401054], [0.9858683588543602, -0.1666061081888409, 0.01749239045923974, -3.5290282393047456], [-0.013609482470230208, -0.1837275446328332, -0.9828829896432648, 1.1261068112437955]], [[0.4328775520479047, 0.8928888042323083, -0.12396212409285343, 0.12142294004255226], [0.8969098106899599, -0.41281611720268785, 0.15854224946618006, -3.6174569334727797], [0.09038703679794832, -0.17981222609793474, -0.9795395586318048, 0.8517522878973802]], [[0.6784810682996752, 0.732600014517606, -0.054411935158885864, -0.9970550327640941], [0.7300318893527397, -0.6641301482408911, 0.16119735334552393, -3.499854279341731], [0.08195657683798589, -0.14909180033233155, -0.985421105206634, 0.9193592909964297]], [[0.8181568939163448, 0.5718211083084535, -0.060331724905315354, -1.7088243226661188], [0.5734795256879104, -0.8038831666348258, 0.15777543540720682, -3.1294585452587564], [0.04171966627297172, -0.16368406915169295, -0.9856302526566518, 1.0373875287360852]], [[0.87398720420457, 0.4738329685656305, -0.10783637970073709, -1.986454499593777], [0.48588635419771964, -0.8556479151409058, 0.17827253327271286, -3.095230012894273], [-0.00779856981295407, -0.20820413832415663, -0.9780543027325064, 1.1253362614883864]], [[0.9146544674626994, 0.3878026217560769, -0.11408913931500572, -2.1617583630088166], [0.40422159418586995, -0.8798667859641635, 0.24987865405217558, -2.9190846179616874], [-0.003479647160198329, -0.2746699210255942, -0.9615322805498703, 0.9990807915150798]], [[0.939540455639075, 0.2651045631341299, -0.21675632129878386, -2.3712538220976356], [0.31220355649499687, -0.9231944798303651, 0.22414480079318685, -2.695105568859075], [-0.14068642979830986, -0.27826520266861304, -0.9501451496768277, 1.4824492511602105]], [[0.9488577346206836, 0.1351292056473883, -0.28532279479847084, -2.5414121941467975], [0.2133354192505931, -0.94064217415141, 0.26397026177371097, -2.45390355240022], [-0.2327165622461756, -0.311339682643915, -0.9213634481937667, 1.6907148079501038]], [[0.9618701521101655, -0.004208955811191947, -0.27347412157377254, -2.7583436487765947], [0.06939900376706558, -0.963402581712465, 0.2589193770769136, -2.0418009665852175], [-0.26455545497249894, -0.2680256522065334, -0.9263760904748984, 1.8563496128416257]], [[0.9524079580373653, -0.20865951419719192, -0.22221676039868832, -3.0391827049631357], [-0.15296427224921672, -0.9577146606655631, 0.2436894748681453, -1.2660923306090668], [-0.26366837672038657, -0.1981005701184042, -0.9440525150839857, 1.9835424603413325]], [[0.9208912235715627, -0.24441414163900738, -0.3036792414962493, -3.068339821898387], [-0.19422541964758733, -0.9631256367743569, 0.18618671851318563, -1.1386710495511398], [-0.33798792983121256, -0.1124754869065116, -0.9344053853299191, 2.4049761961922203]], [[0.853254501193336, -0.49597241858179497, -0.16114625716856126, -3.2632594744786845], [-0.46086133108827565, -0.8617584216491299, 0.21208313517190058, -0.1779668365066111], [-0.24405652972386147, -0.10669481113402214, -0.9638737612240623, 2.191485279138953]], [[0.8349193694526335, -0.4964276438406995, -0.23763257551015285, -3.1290803577233084], [-0.4568466933280224, -0.8658918519330748, 0.20377045799419072, -0.10372683452283216], [-0.3069213992345088, -0.06157024595274915, -0.9497412065953807, 2.4077486018373686]], [[0.8252520181398294, -0.48749120712176175, -0.2851515904481444, -2.9535075750891417], [-0.4470438848717583, -0.8723999910232358, 0.19766137878053797, -0.14384915552341948], [-0.34512442909029895, -0.03564517697564111, -0.9378798162896297, 2.5471528662054914]], [[0.7829187260388338, -0.5595063001634892, -0.27201280943200623, -2.9041391955809996], [-0.5040620853782178, -0.8267635468653143, 0.24976679454812958, 0.048337949918291295], [-0.36463637024012263, -0.05843575662253994, -0.929314575289799, 2.498680269847438]], [[0.7797677811944885, -0.5765682201821167, -0.24399035818460213, -2.8513998333458312], [-0.4975633655380974, -0.8072544451082663, 0.31744441738255047, -0.047717855120412246], [-0.3799906639450842, -0.126132265217792, -0.9163502316175857, 2.4525536687239398]], [[0.7242641694973595, -0.578745505275985, -0.37482669716169453, -2.740049453298664], [-0.4586846728165134, -0.8102709560149906, 0.3647867168110156, -0.21917005833964318], [-0.5148298589879068, -0.09227468754429238, -0.8523119137575714, 2.850309255374031]], [[0.6881055588236447, -0.6058462087881472, -0.3993258208694103, -2.6962548396913024], [-0.44037654103115015, -0.7860747837633129, 0.43376829810499085, -0.3631923971212257], [-0.5766968371904247, -0.12262465342862039, -0.8077028861815903, 3.004507630656985]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5971953518861577, -0.7337048343610233, -0.32409092508250115, -2.5963942482206996], [-0.4941061856345317, -0.6548027877808047, 0.5719199126033117, -0.1184121579987163], [-0.6318360459828656, -0.1814125826665538, -0.7535732783525358, 2.9498255440879815]], [[0.6036203955463824, -0.7166142914352783, -0.3494372266819077, -2.5784876377740376], [-0.5098112185238411, -0.6839077609501295, 0.5218837954750244, -0.037070876329245724], [-0.6129722175985345, -0.13687268472158648, -0.7781586783101763, 2.932887837297917]], [[0.6217359561456589, -0.7237446954554857, -0.29939608654037175, -2.66150731617765], [-0.5455152887894564, -0.6744443692573018, 0.49753177031630536, 0.13780108593337503], [-0.5620119843318285, -0.14600824831894652, -0.8141401113384807, 2.7431950427395826]], [[0.6118433778537901, -0.6885150886441319, -0.38935158107528883, -2.596526784271504], [-0.5085557684980685, -0.7194355369393305, 0.47305764819539226, -0.01633480773183772], [-0.605820692370113, -0.09143019686175707, -0.7903301890969474, 3.0293734433261257]], [[0.5952921294546263, -0.7121423355725611, -0.3721297817894104, -2.544523664724801], [-0.5973880541629331, -0.7019834543074912, 0.3877457190246554, 0.39750810356949223], [-0.5373590916257034, -0.008516088525849536, -0.8433105494913595, 3.0547708618723006]], [[0.5026154806637567, -0.8186725787837333, -0.2777640857719599, -2.6411408755350942], [-0.7800183743324133, -0.5679845661777546, 0.2626116301455196, 1.4824194732757094], [-0.3727586542267798, 0.08466841991829012, -0.9240574897524398, 2.803711647740453]], [[0.3765888866804502, -0.9021318202392551, -0.2105682534015689, -2.486180663207135], [-0.901342230134672, -0.4093087338261111, 0.14159288325873529, 2.3394021826717566], [-0.21392287069089908, 0.13647175284825072, -0.9672706271100611, 2.6287316465465342]], [[0.4184107734181833, -0.8491514151924539, -0.32229535951398713, -2.3885124483353413], [-0.8654640531165326, -0.4803897359064652, 0.14211852236362266, 2.083758368484927], [-0.2755075270309343, 0.21947112728641271, -0.9359102664448817, 2.818916301648125]], [[0.44209845773979695, -0.8218894528142077, -0.359230679392581, -2.2685767194539896], [-0.8553353817141153, -0.5068890549437776, 0.10707413677528875, 2.060449879963902], [-0.2700932032689122, 0.25992539954949895, -0.9270859982854729, 2.87853315324395]], [[0.5172401698383087, -0.717848903351346, -0.46599952646210663, -2.244194179668598], [-0.7771225862033817, -0.622038876004015, 0.09564581931391172, 1.5982551967343912], [-0.3585290681635245, 0.3126668973475316, -0.8796000901460068, 3.1710464302706107]], [[0.5560307322835786, -0.6977809674398244, -0.4515878056756295, -2.375676556377826], [-0.7514041940039492, -0.6542482445077741, 0.08573780841479185, 1.4559906531399494], [-0.3552767400062422, 0.29165211474844255, -0.8880976759193204, 3.097791925370113]], [[0.5183967589900315, -0.7898662343557971, -0.32768297498226, -2.671982659960544], [-0.7996100713103921, -0.5835677492775012, 0.14167715363523414, 1.7362584969319297], [-0.3031312160230632, 0.18857362972532815, -0.9341046258554737, 2.9184977065464737]], [[0.5173902652826358, -0.8368616744371576, -0.1788011500214708, -2.852937996255263], [-0.8555479835876169, -0.5103862135436658, -0.0868536746702348, 2.2439636960355047], [-0.018573130321158524, 0.1979102091424208, -0.9800441765284242, 1.994203866368969]], [[0.5594645871219647, -0.8239195103692866, -0.09031066487012916, -3.1651204546260896], [-0.8230555493551245, -0.5393770312263372, -0.17791003586418996, 2.323287188291133], [0.09787205133327868, 0.17386505864692364, -0.9798938733095122, 1.5744431834647048]], [[0.6504374120143939, -0.7594584441942038, 0.012411470264906632, -3.48997001696929], [-0.697227565533308, -0.6034630679608608, -0.38691865743042453, 1.8967110725014609], [0.30133850552578595, 0.24301275100163933, -0.9220303183399672, 0.927701720039541]], [[0.7442783649173829, -0.6678644800950584, 0.0025984116811266778, -3.6780993777462756], [-0.6139189386198662, -0.6856821766404178, -0.3910799016077351, 1.5158501124455324], [0.2629700597401994, 0.28947709557928125, -0.9203530620447893, 1.0925670235604494]], [[0.767950363194722, -0.6404903062848811, 0.004940366807558494, -3.7224420055451857], [-0.6013617687555494, -0.7236474090159984, -0.3386715968362707, 1.5149814195778049], [0.22049095842753116, 0.25711202807245603, -0.9408916740370155, 1.0873543521635587]], [[0.7954256610527585, -0.6060509739053647, 0.0004845277508138679, -3.8087149560455327], [-0.5908808360633498, -0.775692525313199, -0.22172267305422041, 1.3628288409914011], [0.13475108649602419, 0.17607760562204108, -0.9751096458791442, 1.2917541824468264]], [[0.7829241522338377, -0.6208638821329368, 0.039469123523905594, -3.744423229534457], [-0.59446943420278, -0.7653259247751995, -0.24674343084591388, 1.4068825927709485], [0.1834008278267935, 0.16971820388456987, -0.9682767515657092, 1.106015673196056]], [[0.8231000045038414, -0.5633666348301053, -0.07158503576851175, -3.78293133689568], [-0.565414748759029, -0.8011947547967176, -0.19594164124042537, 1.19701768420636], [0.053033427869039196, 0.20175480080144334, -0.977999210573316, 1.5666967147836766]], [[0.7983761234077563, -0.59782818543879, 0.07209040343462293, -3.621107974490026], [-0.5730215165555966, -0.7910699621608929, -0.21413700411439296, 1.2424178755303765], [0.18504568932219695, 0.1296525189177874, -0.9741397831941501, 1.0819478455494396]], [[0.8703780028542406, -0.45566242678103785, -0.1865847929695203, -3.607510681258437], [-0.4872810359059374, -0.8515335082017663, -0.19351453809992936, 0.8673645929345971], [-0.07070589928641045, 0.2593500283971601, -0.963191693577396, 2.124822940457807]], [[0.9256999060599396, -0.34843919031840276, -0.14720670694936053, -3.574882465660635], [-0.36846604544795325, -0.9186268737769345, -0.14267950142456703, 0.29310344926941884], [-0.08551290705247885, 0.18631907423844735, -0.9787608212951528, 2.093439871898243]], [[0.9661742283106711, 0.027933810498472628, -0.2563728979032585, -3.090219051684307], [-0.046260177172743125, -0.9592193053045408, -0.27885178919817083, -0.8141477694190932], [-0.2537072260622973, 0.2812792679208869, -0.9254807490605436, 2.7162014609590317]], [[0.8092377134352238, 0.5286381992269638, -0.25627324767170595, -1.66938892372107], [0.4805272017551614, -0.8465715649461305, -0.228932727669098, -2.5110775693201], [-0.33797622923437237, 0.06211473048103734, -0.9391026720917062, 2.6966788290093584]], [[0.6643203343251677, 0.7121312608854355, -0.22704087885624757, -0.8260539495296457], [0.6835054262915647, -0.7017131881506563, -0.20104460650668737, -3.1053648057515875], [-0.30248772806856783, -0.021625652479456636, -0.9529079207996725, 2.5486291074800858]], [[0.5090191451275534, 0.7834580154764096, -0.3565011190436587, -0.25622890466602355], [0.8011359929119283, -0.5826772105323561, -0.13663231384724242, -3.284925443832672], [-0.31477075905273294, -0.21605741438793216, -0.9242502707239895, 2.1687695935629416]], [[0.443682540687164, 0.8546623012457046, -0.2696259518643925, 0.11925295569464575], [0.8547696582905207, -0.4939749583541107, -0.1592406097230285, -3.3115705949162653], [-0.2692854143010533, -0.15981580443889665, -0.9497074677479689, 2.1726874263329132]], [[0.32819868803480545, 0.8994038349931391, -0.2887184835992779, 0.45139556624712623], [0.9077120545197163, -0.38487712352493464, -0.16711799982876666, -3.227768224951544], [-0.26142770941854665, -0.2072253396349155, -0.9427158699000274, 2.0075426201821043]], [[0.33398306181261594, 0.9301301638159958, -0.15268658350326136, 0.4124313206205006], [0.8764301256718594, -0.3660565661884192, -0.3128463283549159, -2.8419773564743864], [-0.346879733102236, -0.02933374694736035, -0.9374507891366617, 2.5847426059512757]], [[0.2177626390427725, 0.9714699333689927, -0.09394467306437451, 0.6587894970020284], [0.8780088008255642, -0.23702543199484827, -0.4158358934249308, -2.438428641363412], [-0.4262393443946513, 0.008069271819720891, -0.9045744348268512, 2.8535347031323752]], [[0.059141531356760035, 0.9979434218187144, 0.024722583148471394, 0.8403545958660248], [0.8528496742083631, -0.037640773933612426, -0.5207980465980722, -1.980197601032494], [-0.5187964075352358, 0.051885440987182146, -0.8533218551883569, 3.1206105381082847]], [[-0.012470084591895914, 0.9976191439303379, 0.06782728546809313, 0.8091959304797708], [0.8149761635421451, 0.04944275000615761, -0.5773813881049119, -1.6447967500023557], [-0.5793602936415277, 0.04807762614281008, -0.813652377871579, 3.2777031719781284]], [[-0.09050221706047179, 0.9906150606511449, 0.10242631653177581, 0.8553781104792352], [0.7623527305364367, 0.13508859081419777, -0.6329055118068359, -1.2779406656411292], [-0.6408023587275393, 0.02080563007847752, -0.7674239133661783, 3.3459114204480325]], [[-0.2544786940376871, 0.9505561093681678, 0.17799909332276148, 1.0711628565066122], [0.6651511347136467, 0.30564785968581243, -0.681288010945907, -0.7147930542762053], [-0.7020075229440361, -0.054976984387412775, -0.7100443429234858, 3.2965622399589662]], [[-0.46483575693347984, 0.872865884451284, 0.1484347224781195, 1.5918749447600546], [0.4951771106018892, 0.39526729702544783, -0.7736687876851179, 0.11141084308329632], [-0.7339804821737721, -0.28612743954971076, -0.6159575798094244, 3.040290830629649]], [[-0.6683246062462552, 0.7433657964464511, 0.027377241630988702, 2.0990133971919223], [0.3043971374900254, 0.30687952355347337, -0.9017579169108926, 0.8235527332040012], [-0.6787375069742843, -0.59433345076407, -0.4313735572902057, 2.358758858418233]], [[-0.8411482200392434, 0.5387931084963997, 0.04660105322414321, 2.239395064629558], [0.16346183556183974, 0.33543641452289574, -0.9277729464296629, 1.2844795818113577], [-0.5155093599921989, -0.7727770687907418, -0.3702238535151706, 1.6501064667716037]], [[-0.9349749309888327, 0.3544341939099537, -0.01408121478527491, 2.29261257692097], [0.10059602682450458, 0.22688019943658522, -0.9687134842102381, 1.555803752382208], [-0.3401504340869657, -0.9071393373076801, -0.24778197048904094, 0.8817307868610444]], [[-0.9371486714817063, 0.3487917056521066, -0.009834307721797803, 2.1618923553136407], [0.06994903497889637, 0.16018077415593202, -0.9846061405944648, 1.6161344318997697], [-0.34184718814931614, -0.923410236925658, -0.17451084291615138, 0.5824305220921051]], [[-0.9519165106328366, 0.3006785305784728, -0.058714376721339195, 2.067786076336622], [0.11566943688063648, 0.17527883298277447, -0.9777003181343012, 1.6192133608013646], [-0.28368210757169965, -0.937480534175173, -0.20163013139486696, 0.31235048897376333]], [[-0.9694629772416896, 0.23411901011730918, -0.0730056495031066, 1.9183878654598525], [0.12459691442923221, 0.21381079931798552, -0.9688965636277789, 1.6613528875772507], [-0.21122770810761016, -0.9484056258778177, -0.2364521603430827, 0.06935388204154967]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9636669327883026, 0.2520214686402832, -0.08849419187031235, 1.8143650731103176], [0.1727454451112671, 0.33533808321524106, -0.9261249273930804, 1.7273775981157842], [-0.20372789166850744, -0.9077629367240784, -0.3666897828770007, -0.20487060228831486]], [[-0.9694751432469756, 0.20294323043509632, -0.1375935748747869, 1.7159657461051918], [0.19551762575038134, 0.3012423089608447, -0.9332876991115185, 1.7471760370034832], [-0.1479554143895721, -0.9317011948648054, -0.3317259092086473, -0.521236499006405]], [[-0.9801364011453152, 0.11971256245115885, -0.15811874506612802, 1.552228162100747], [0.18421163899105103, 0.25415256191737856, -0.9494590814411454, 1.7789488752904186], [-0.07347589543612573, -0.9597267203023006, -0.27115662471650803, -0.825487267944822]], [[-0.9926056457702258, 0.04825695489576787, -0.11137907473695795, 1.3695210526443309], [0.1179087589894747, 0.16533403617052034, -0.9791640215189317, 1.7510317311294834], [-0.02883672205079847, -0.9850563043744012, -0.16980141540520832, -1.2285882814065427]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8968872784494718, -0.44159656858483853, 0.024200834068183186, -0.09755494494275097], [0.005206051534904582, -0.0652590199777584, -0.9978547776800785, 1.5971301105744695], [0.44222856848344344, -0.8948372650519417, 0.06082895931582166, -2.093732306537101]], [[-0.8771413528663499, -0.479403892836908, -0.02819493969860845, -0.10330671527454559], [-0.051245992006593855, 0.15181484575570492, -0.9870795818531715, 2.134893258628652], [0.47749020450167334, -0.8643634421590203, -0.15773060725160537, -1.7242217567094138]], [[-0.9054649937863768, -0.42051883080414476, 0.05742001364116606, -0.09237998776427903], [-0.06408449826082971, 0.0017225620082647053, -0.9979429892848518, 1.8507409456089567], [0.4195549095292467, -0.9072821753562909, -0.02850845787942402, -2.013843625228547]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.03942000072901197, -0.9960619429083792, -0.07941454169174406, -1.556224599149515], [-0.4486718075364516, 0.08865819131383335, -0.8892881053038622, 2.1402483912529813], [0.8928267876046834, 0.0005753282061338738, -0.4503998183091964, -0.07053922202634273]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9859438431443354, -0.06140146425191383, -0.15538532219453538, -1.2303353203401133], [-0.12251349964613142, -0.8980451120706578, -0.4224990166739527, 0.4459089999673699], [-0.11360097081555236, 0.4355971038399136, -0.8929445573808285, 1.8205588305507159]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8089403043963409, -0.5186840266205578, -0.2767353689932683, 2.4145259502272713], [-0.3866129756868881, 0.8239743298337235, -0.41424233343007777, 1.537327245102685], [0.4428837217077249, -0.22810783481448108, -0.8670760201634944, 0.4349642268982144]], [[-0.894527140780686, -0.37834762657062077, -0.23806357948058515, 2.641287323623687], [-0.23058096687353663, 0.8467854829636126, -0.4793607864205688, 1.3320558430792397], [0.38295379893976217, -0.3739083033451641, -0.8447123584789942, 0.47637325827056953]], [[-0.9342144552225592, -0.24238574323440343, -0.2617107241400758, 2.938895561272393], [-0.09439118900714556, 0.8755000675733394, -0.47390920556251637, 1.0775678799451907], [0.34399659168520014, -0.4180296438720392, -0.8407838971776171, 0.44298887481090465]], [[-0.9053208780484417, -0.3263793572426807, -0.27179150637106586, 2.980734799473079], [-0.16153396045998303, 0.8564169567752337, -0.49036392176215415, 1.4289524902005184], [0.39281151636339684, -0.4000331377694878, -0.8280535014711229, 0.1964371600656536]], [[-0.8711717351886936, -0.3991916985132453, -0.28584225657944784, 2.964029026606551], [-0.24410667359007066, 0.8572935288391687, -0.45327666752136714, 1.712512542740758], [0.4259949996386241, -0.32510581854004944, -0.8442952487336957, -0.020843537465779365]], [[-0.8560197643515011, -0.4227925982610379, -0.29745013345984805, 2.9680189684223177], [-0.2752663504387207, 0.8598441814508389, -0.42999583712087747, 1.92283992949615], [0.4375598237449917, -0.28620692248933716, -0.8524241891003765, -0.17400253154624726]], [[-0.9359842357342094, -0.3222275589360978, -0.14178473373086226, 3.5739287267575954], [-0.18111004798046745, 0.7861071213419283, -0.5909608652829893, 1.4899162769366272], [0.30188186593030175, -0.5274514139118315, -0.7941425218339899, -0.16236507675796832]], [[-0.8356975706203459, -0.4844914011121998, -0.2586071397072971, 2.8219371748374127], [-0.37558448828106783, 0.8477480348466979, -0.3745124318046191, 2.5742784080216214], [0.40068174730314376, -0.21585029919344229, -0.8904284281828613, -0.06007747923654561]], [[-0.9275248254757763, -0.3126173260184255, -0.20486118617058846, 3.3543539150771045], [-0.3011738183018199, 0.9497130586540639, -0.08567051646538104, 2.5358681938804635], [0.2213414314935941, -0.017762705172136038, -0.9750345927244503, 0.7522301989861253]], [[-0.9147144968996122, 0.10370273942214117, -0.3905677034753792, 3.3404179974776107], [0.2568444773591385, 0.895367373969846, -0.36379689399505993, 0.46765723361130457], [0.31197484451762975, -0.43308545053682573, -0.8456409929287454, -0.37533381674661936]], [[-0.8129785706060587, 0.4449785551956608, -0.3755794578398972, 3.412033593331447], [0.5540308360370344, 0.789616911841371, -0.2637327534725282, -0.49100027956783693], [0.17920847205261695, -0.4224916779654705, -0.8884734692687716, 0.15607864886462877]], [[-0.7539245633621519, 0.629948541750097, -0.18644727808717143, 3.6082344461538556], [0.6569351395191176, 0.7254147867701515, -0.2054497739113209, -0.8978606302830868], [0.005828826999156864, -0.2773773997321011, -0.9607433595365997, 1.1165363446552998]], [[-0.6337962363832993, 0.6556384357587698, -0.4104151219218883, 3.29226274274494], [0.7558061794660932, 0.6377724628354811, -0.14833510956490573, -1.3507195796690494], [0.1644972638898064, -0.40420851946063485, -0.8997533678559969, 0.2424251253408001]], [[-0.5247407928557382, 0.736674153964887, -0.4265656938775663, 3.081094141977117], [0.8292167175517752, 0.5556467951970506, -0.060467134212781076, -1.7210252623418727], [0.19247528580519407, -0.38544497644587994, -0.9024330637154451, 0.141086799042107]], [[-0.30859416166776027, 0.8301087339921519, -0.4644234416289935, 2.4319752452828354], [0.9317492753827027, 0.3620239451130704, 0.027963386572036203, -2.337246549452815], [0.19134505796696413, -0.4240968673719666, -0.8851716872318635, 0.02757076956147841]], [[-0.04254101407095733, 0.926476358083256, -0.3739409312105337, 1.7133372855863014], [0.9890504342209623, 0.09199106129383394, 0.11539880072756496, -2.88647635147912], [0.14131348374851133, -0.36493725838124635, -0.9202452372906033, 0.3108590817351555]], [[0.10286400387490979, 0.9843016355409967, -0.14341996715291172, 1.353631237039704], [0.9914415760285337, -0.11310905300133633, -0.06519159034107856, -3.2597334507267135], [-0.08039028566239091, -0.13548665026658707, -0.9875124148944452, 1.4904428541872128]], [[0.16377835615380132, 0.9850235237129376, -0.053900907113944053, 1.1889334379211274], [0.9858123464357523, -0.16138464402757735, 0.0461412427978251, -3.327492233684863], [0.036751430861860536, -0.06069311661333397, -0.9974796629131675, 1.3523019416132431]], [[0.16308179269325446, 0.9473225688051594, -0.275652461487919, 1.1205221722570753], [0.9794676987029673, -0.1218899970117488, 0.1605797491154768, -3.1627299500857275], [0.1185215427231179, -0.2961803154513653, -0.9477498956210244, 0.5438761177352089]], [[0.23625848257693932, 0.9258113916542184, -0.2950511760588689, 0.8509568092688795], [0.9669604959996366, -0.1940843508313413, 0.16528358641593527, -3.272927422477916], [0.09575661118992798, -0.3243524808686632, -0.9410771166954199, 0.5722414229265158]], [[0.3116813558442631, 0.9211624762271757, -0.2330545532919276, 0.6094544820792416], [0.9482690275153538, -0.28597608520295986, 0.1378532921154773, -3.373738106040352], [0.06033725113201126, -0.26396471560230855, -0.9626432594906721, 0.7938642307977849]], [[0.5398321371427591, 0.7959625392659715, -0.2739067355746262, -0.3775357766174855], [0.8386686057742303, -0.4806531120460068, 0.25613971884344205, -3.3321337814303225], [0.07222349615319133, -0.3679894318669433, -0.9270207897548222, 0.45853425581662854]], [[0.5825825649802523, 0.7844351416694725, -0.2127417765626325, -0.5545197423178972], [0.8087109099340101, -0.5333306315124839, 0.24808285237839678, -3.3063702890121918], [0.08114320140797804, -0.31657534017116806, -0.945090384492814, 0.5757692433109066]], [[0.7250721485784027, 0.680545181550565, -0.1054923467565656, -1.298710762801644], [0.6881339188975466, -0.7098947435384529, 0.15007052595089845, -3.1258527952769883], [0.02724131088262128, -0.18140482067680322, -0.9830311297291727, 1.0295625113414164]], [[0.8417407990778357, 0.538518724371747, 0.03834071815750123, -2.0365899466172177], [0.5330133875959807, -0.8402257771321998, 0.09958600346457812, -2.7419515975123554], [0.08584378726071813, -0.06338948606524962, -0.9942900066103044, 1.150153416621068]], [[0.8293511472120207, 0.5522925417648337, 0.08455544292974096, -1.9859606422654597], [0.5380763585233537, -0.8302624084533028, 0.1453897022060666, -2.460983779622344], [0.15050085387250328, -0.07508183149245112, -0.9857546406501909, 0.8742470974965032]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9411768481620854, 0.32970580951995254, 0.07402850567501551, -3.0060400142328425], [0.33787096191534005, -0.9146833176714515, -0.22180541352263938, -1.6382257046665067], [-0.005417894248306583, 0.23377020242609842, -0.9722767810040384, 1.7745756461127695]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9960011855180891, 0.05309236561855731, -0.07185289945149054, -2.2407877782704637], [0.025241513634497705, -0.9387260920940413, -0.3437385489165985, 1.3958499214606688], [-0.08570008422399619, 0.34055032628801685, -0.9363124322730769, 1.4318202530849398]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9978737761399812, -0.05552125611672483, -0.034136739905215235, -2.1713293845621795], [-0.059836862631784976, -0.988033997056924, -0.14215614840766896, 1.3677112739690427], [-0.025835571650733073, 0.14389652802948152, -0.9892554333732722, 1.5775826790704324]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.828965288462003, 0.5262353250795672, -0.18945430362889704, 3.583427357601927], [0.5567874813774086, 0.744382838153088, -0.3686216093022145, -0.37739704497713505], [-0.05295518016690874, -0.4110603032421825, -0.9100687754186136, 1.171672571611341]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.44200832012973945, 0.887483714387367, -0.13038903954431522, 0.27571801394853845], [0.8936816676888409, -0.44820274211829436, -0.021151330798181045, -3.54034136489664], [-0.07721218668693844, -0.1071772301136974, -0.9912372670416387, 1.6141104418772618]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9101983144319866, 0.40148823297617486, 0.1017164056917032, -5445128.018250772], [0.4076531984992703, -0.91183743013238, -0.048696722301334025, -9845063.598763391], [0.07319766497973107, 0.08578869267710894, -0.9936208542750445, 9817465.674289703]], [[0.8876335071158111, 0.4240986245838511, 0.17957481357743615, 15928800.004668474], [0.4436335740819128, -0.892062783054083, -0.08610019185292839, 1201693.320763111], [0.12367703502507327, 0.15609083162021023, -0.9799692052771439, -10312263.211231232]], [[0.861818414534797, 0.48895376175997474, 0.1348823162223228, 565722.7765662372], [0.5052472617149593, -0.8509739067194956, -0.14341762308759443, 1234118.845985504], [0.044656745271730906, 0.19174886947079955, -0.9804275323339338, 2651020.7181215733]], [[0.8000398486457008, 0.5974009086435221, -0.05521227156038915, -2508139.0659868666], [0.5949781597670987, -0.8018666097129992, -0.054871938434294235, 926060.9867118914], [-0.07705342289036149, 0.011049641590307312, -0.9969657343367446, 3688240.510557674]], [[0.7650593677773354, 0.6417403002998402, -0.053418636703071565, 4150651.198926747], [0.6280472215532292, -0.7619096674080796, -0.15827301162667817, -3825471.997189738], [-0.14227034573449482, 0.08753882385079581, -0.9859493410127149, 4826176.803030096]], [[0.7283729710683491, 0.6712192985193213, -0.13761347431227852, 3317099.8078887085], [0.6711557944285611, -0.7393543449871561, -0.053898535727615646, -773081.3313218934], [-0.1379228575038702, -0.0531018440719747, -0.9890184424641048, 6488120.590019718]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6577640820315177, 0.6965390329449429, -0.28667017280030826, 28386171.396634817], [0.7157780840799434, -0.6965317777002933, -0.050052142856372106, -12867010.72561718], [-0.23453815625624855, -0.17226972525023895, -0.9567209598530423, 44250397.60631645]], [[0.6619379542758045, 0.7003469205125205, -0.2671185796940981, 2438717.0792677584], [0.712033973909384, -0.6988597959248969, -0.06784250613459328, -1844327.8441842087], [-0.23419172634397983, -0.14528997408094274, -0.961272624567862, 4480749.881972402]], [[0.6791515334604838, 0.6873819687778795, -0.2574086704004348, -15547354.729557583], [0.6788120563131022, -0.7216097447320717, -0.13599106041094441, -3053792.9127413332], [-0.2792264077809461, -0.08237357165233045, -0.956685532393476, 36155176.42834389]], [[0.7060542483636851, 0.653759628867329, -0.2721869688850735, -399052.25960652344], [0.6731702870781401, -0.73893344392468, -0.02862044801793097, 2198907.3670481667], [-0.2198389477838862, -0.16302059107016148, -0.9618186543857474, 4314912.3995260745]], [[0.6283066874076016, 0.7204312132791484, -0.2936146683870217, 4374975.157281086], [0.7340360789747107, -0.6740145595115828, -0.083038595423091, -2105565.746676564], [-0.25772415742867155, -0.163350055095007, -0.952310358117636, 3035803.159244731]], [[0.6091771443044146, 0.7167827924973371, -0.3393016876421894, 4369070.827191636], [0.7580072276731027, -0.6520367050506121, -0.01652809916715424, 375484.92398351256], [-0.2330842115040307, -0.24712459134303372, -0.9405323953490832, 6308253.257059626]], [[0.6301802004265785, 0.666124589356975, -0.39893727131507617, -2506422.823813911], [0.7428993707170376, -0.6666785845106983, 0.06033398663308623, 1877959.651998666], [-0.22577298327866158, -0.33439153160451496, -0.9149911822595014, 3365049.6998374164]], [[0.6812297624650316, 0.6518656092467738, -0.3331624802002304, -1861471213.7828114], [0.7049908133035363, -0.7067900179077365, 0.05861590009203868, 13076563216.54761], [-0.19726622592186197, -0.27480738357495726, -0.9410456620394311, 6853608027.874378]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6228199371453204, 0.6938500589469397, -0.3614794898657842, -12746621668.068085], [0.7594737660235492, -0.647142195312486, 0.06638205908334138, 113221425621.3233], [-0.18786943502418535, -0.3158782593745021, -0.9300139787327011, -20018085645.44632]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5719638893147561, 0.7413217363375396, -0.35114013235948, 2467149.0697558895], [0.788051052867036, -0.6154119336985181, -0.01561057130945609, -4054435.3305310896], [-0.22766828368284803, -0.26778766792917663, -0.9361927779629365, 5167907.201180294]], [[0.4857646795204355, 0.8156025410549445, -0.3143647104163035, 948679.0124357273], [0.860111871281081, -0.5100735001952845, 0.005709052451008084, -1449723.2908342127], [-0.1556927904938628, -0.27316207537513126, -0.9492851181626021, 850604.9827620648]], [[0.32789857570155, 0.8568810381643871, -0.39779066163902976, -5323185.622521981], [0.943014556879561, -0.3221157038098479, 0.08345668860152139, 1412645.6423601045], [-0.05662216497220754, -0.4024877138415637, -0.9136725729934392, -542439.3648385981]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5889985725388326, 0.7899375456992896, -0.17052670008476734, -577369.8006298029], [0.7979885836649132, -0.535177102575903, 0.27712756849315223, 2945186.7938256743], [0.12765148603789667, -0.29930610213131914, -0.945579692748989, 712309.0129343995]], [[0.735361545314578, 0.6754138554375035, -0.05531294202628161, 755010.9191288095], [0.6751439054305057, -0.7231226861492127, 0.14585707982950788, -2809123.9630087544], [0.05851584941364322, -0.14460188331897358, -0.987758164080665, 804632.824683356]], [[0.8130956850039983, 0.5820144121086526, -0.011603065357838525, -189616.3494160278], [0.5672402756594561, -0.7876615698747287, 0.24047395079771472, -1382318.2635216934], [0.13082001642586283, -0.2021100577415606, -0.9705862392709055, 2834517.9860092625]], [[0.8758595620475419, 0.4825360924053769, -0.005380250555299684, 86458722.06968468], [0.46665100107221275, -0.8440812450225211, 0.2641281791091833, 135105642.83152732], [0.12291001085424232, -0.2338498905866339, -0.9644725801724121, 97185818.70450196]], [[0.8248016139695831, 0.5562946966278862, 0.10118551327566101, 3880704.0980273415], [0.5620997781067535, -0.8260901664658776, -0.04023526215544332, -8529093.39705066], [0.06120569455132026, 0.09006246372416593, -0.994053628121956, 3572507.951607184]], [[0.8442841352483083, 0.5340541605167105, -0.04438978038702156, 5231212493.980412], [0.5266275616264039, -0.8114923894234145, 0.2532656969336856, 4273110987.113111], [0.09923563021135436, -0.23720509173006557, -0.9663777905942822, -7694070849.733641]], [[0.8637436634990359, 0.503892550683657, -0.006259483268004351, -3034522361.0707016], [0.49204363140919977, -0.8406207221661337, 0.22638433305892852, -6165619606.930721], [0.10881152767474539, -0.19861797207303883, -0.9740179426554123, 5120277568.563423]], [[0.8588576486320729, 0.51220938990936, -0.002253946509584548, -4817600687.863579], [0.50307583134711, -0.8426989224744733, 0.1917634844666124, 6336573018.902948], [0.09632365909059455, -0.16583144137660893, -0.981438579713655, 1669095311.2422638]], [[0.8482271593365732, 0.5221394458066764, -0.0887754768869461, -32392.83261246537], [0.5294484625437883, -0.8315163576369894, 0.1681216003139812, -8144.00487509917], [0.013964658027553548, -0.18960734720683226, -0.981760684796128, -10108.121335332515]], [[0.832049480163804, 0.5362756070893167, -0.14178200097377774, -91193.18437449196], [0.5546994156544556, -0.805094638930656, 0.210074226495594, 34232.63484330782], [-0.001490245533106213, -0.2534385440419462, -0.9673503416871003, -63641.84377259625]], [[0.8434102170002773, 0.5291219452447663, -0.09321573322105908, -49033.61023770735], [0.5353537489565704, -0.8130154102946836, 0.22891549991539076, 14423.281154249287], [0.04533838702127061, -0.2429730636999962, -0.9689729206631874, -19375.23432335596]], [[0.8520259402912058, 0.5190906422044447, -0.06779898411232907, 6439.506536687326], [0.5200245570446614, -0.824344289750401, 0.22367599787731238, 12704.567738933367], [0.06021841197997745, -0.22583488909308277, -0.9723025998766668, 9383.617135330103]], [[0.8705070463730245, 0.4883462837642092, -0.06111783167455669, -64925.03105784983], [0.485353530390532, -0.8312542043814136, 0.2710136495375642, 61294.86862878539], [0.08154405405889449, -0.2655830469587794, -0.9606332351192782, -56255.75112190616]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8922859353148513, 0.4514703494993416, 0.0005772020818709186, 1610964.037722782], [0.43754929592290703, -0.865085993902631, 0.2453096752899586, 6336837.103866348], [0.1112493742754056, -0.21863381869335533, -0.9694445987506926, -479825.3407954185]], [[0.9024608733213074, 0.43040030590536527, 0.01788711269912517, 336603.36322168633], [0.4150062375241117, -0.8798131851696993, 0.23172954498213943, 3345597.0704117683], [0.11547378464493059, -0.20170358419749707, -0.9726157870308604, 485244.7097826081]], [[0.905767496496797, 0.4232530716427187, 0.021025689879964574, -66243.16142711183], [0.4124802569752745, -0.8919191255043876, 0.18531138973387484, -646845.2679164906], [0.09718682984610795, -0.15917635158682386, -0.9824548891424846, 84268.98660648428]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9041573677827792, 0.41024094462017674, 0.11917139606995125, 25.553367776906892], [-0.39681368723586613, 0.9098338112226829, -0.12141389367895103, 3.6370850615709616], [-0.15823511590791817, 0.062488425433455404, 0.9854221657647322, -3.1815120849678684]], [[0.8975840243006574, 0.4406737329531954, -0.012230306837227357, 35.56444313304774], [0.43825439282879614, -0.8889668419368765, 0.13293246820487692, 1.703216301971566], [0.04770750974951607, -0.12467804546861155, -0.9910496347265497, 9.435489835837506]], [[0.8810185094390617, 0.47228128418039805, -0.027509537231441998, -37512.233520125585], [0.4709968490391807, -0.8701981606643001, 0.14462755398482202, -22815.77195062634], [0.044366138224294686, -0.14037645739006055, -0.9891036831342201, -19301.732698117758]], [[0.28392233203133854, 0.010965553428167851, -0.9587845774791648, 764321.9035361614], [-0.5640763293547035, 0.8105102958499885, -0.15776867554393761, -2096620.7391235505], [0.7753747507080757, 0.585621735388278, 0.23630738246024263, 7807124.934275054]], [[0.8275274849227813, 0.5609645499771363, 0.022738411693104275, -6074951.270691276], [0.54880697162828, -0.8168032890637463, 0.17788562299085073, 1371143.2762470376], [0.11836033790747819, -0.13472624333661118, -0.9837884273393505, 2600991.3928753175]], [[0.8575300170201993, 0.512724475727492, 0.041903244496163415, 230187.44816055475], [0.5030809522679958, -0.8528368250768089, 0.13992464135396335, -627326.3328068694], [0.10747941837609346, -0.09890885593756091, -0.9892750946236641, -127910.88439482823]], [[0.855491787548773, 0.5163873319166765, 0.03844378847852112, 152.76856284573296], [0.5061182066947671, -0.8495491516776895, 0.14869633396890317, 168.8460571837113], [0.1094447910531971, -0.10775139126570424, -0.9881353527688541, 166.4599398184946]], [[0.8507167324144834, 0.5251737824368131, 0.02176096116983385, 673503.965781674], [0.5178491350601596, -0.8445085056937717, 0.13651980489408116, 2810425.18007381], [0.09007393911375693, -0.10487078740947937, -0.9903983054512198, 485350.46106055146]], [[0.8361222821825224, 0.5454335239548483, 0.058324953356913546, 15558.816094621063], [0.5347071618316191, -0.8341426830447984, 0.1352561843643359, 16242.898323161147], [0.12242459035612502, -0.08190393927657172, -0.9890924953749848, -85958.50774443454]], [[0.7800911779233117, 0.6235936748048418, -0.05087910051890748, 112865.4970750073], [0.6211352782934447, -0.762108931320443, 0.1827045233729524, 5791076.929909058], [0.07515796821059653, -0.17412899111005542, -0.9818504846815781, 3622096.781021933]], [[0.7486756846580971, 0.6611363704174691, -0.048820271536982006, -0.9241312608258304], [0.658030917282125, -0.7321756791446111, 0.1758240221641332, -5.494877195846135], [0.08049864037718155, -0.16376041823451556, -0.9832103001479809, 2.033272531522218]], [[0.7156162256901657, 0.6964279823808338, -0.05367944565588297, 78467.59208651481], [0.6931287780578396, -0.6985131500446139, 0.17790974184343397, -43147.598563565014], [0.08640552388017825, -0.16452186654579434, -0.982581620462789, 70065.36802130565]], [[0.704256506834603, 0.7092794884577037, -0.030747029682572043, -1.1770551221652796], [0.6979093813532372, -0.6837261069852676, 0.21316919581851484, -3.5678545294767843], [0.13017399125887086, -0.1715844336761022, -0.9765313687331232, 0.7757245295817244]], [[0.6938217274645879, 0.7180513318556648, -0.05489713397219327, -0.2978636463876505], [0.7110986697268858, -0.6710648218914692, 0.20978724158638515, -7.673309165614837], [0.11379847279602796, -0.1845922252969419, -0.9762047008436372, 0.8323475274764769]], [[0.704303559186242, 0.707866894375677, -0.053674541120776915, 0.7900272001608215], [0.7017465203525277, -0.6827968730569013, 0.2033230221023622, 5.4396101137426704], [0.1072768273706457, -0.18086705059422048, -0.9776393978960938, -2.520666225357381]], [[0.6672946285557093, 0.7431706210765908, -0.04914576959751589, 49.05510454314833], [0.7349510755116123, -0.6463487576156699, 0.20513459028892334, -773.0853820842995], [0.12068469374789083, -0.17300494645331493, -0.977499101379466, 269.40308029016114]], [[0.6636438527679921, 0.7468950805286843, -0.04152800699896286, -1.1018942539727465], [0.7359382613710985, -0.6419440928860095, 0.21518052202474863, -4.044081188781802], [0.13405861454356588, -0.17336527994615553, -0.9756909180554316, 0.8198346011664119]], [[0.553584341422908, 0.831417251790173, -0.04785112701954847, -0.6189115312736839], [0.7992098683459341, -0.5142302758564965, 0.3111764928959543, -2.3362099725350207], [0.23411100629795195, -0.21050552681159498, -0.9491467009435015, 0.8605387461855046]], [[0.6802239632014349, 0.7306984585633648, -0.0580958048369718, -0.7112690469627099], [0.7269431642212753, -0.6623057261103683, 0.18139669554150456, -3.7468908095385145], [0.09406910161414853, -0.1656227273490562, -0.9816924754254596, 0.5239112815529333]], [[0.7069487427648763, 0.7023168929171248, -0.08351321468124986, -0.6529391652171355], [0.7064051481544309, -0.6953298283305502, 0.13231854176465127, -1.6791517173937176], [0.03486031789982884, -0.1525365915347631, -0.9876828167376809, 1.3751744922122116]], [[0.6568051321245624, 0.7497783129060641, -0.0802464946933663, -0.9524914863242264], [0.7463879498993456, -0.6312882245390491, 0.21066610027099092, -2.7541265501997048], [0.10729420608722588, -0.19826159248344488, -0.9742588435759978, 0.8742690521539322]], [[0.6995442725050076, 0.708096370646137, -0.09611108512137528, -1.1556348111743338], [0.7137884493840281, -0.6860455447066213, 0.1408813689390474, -3.3943836375736685], [0.03382100429296053, -0.16715573716137827, -0.9853502418950592, 1.116686690600756]], [[0.6844742661510167, 0.7262638028164858, -0.0635284794054117, -1.137262923614144], [0.7221762457018892, -0.6635269228772068, 0.19543155518244817, -3.365371638423118], [0.09978200800220388, -0.17964662906840814, -0.9786575701150053, 0.8603895372798596]], [[0.6254953400235533, 0.7800660175677243, -0.01589301245359756, -0.9102832651437466], [0.7604357874828378, -0.604942918678454, 0.23618102856950485, -3.3801212538759136], [0.17462242904099023, -0.15981574821282096, -0.9715790929713339, 0.6488640619598229]], [[0.6152302361370267, 0.7874622025144336, 0.03735018278262535, -0.9444852353949373], [0.7613761357300792, -0.6058011375670894, 0.2308925327141426, -3.465366966091802], [0.20444592557326785, -0.11361452958815063, -0.9722621057014162, 0.6175527354952265]], [[0.5533615826670439, 0.8322867194792368, 0.03301174649597172, -3513.7101438105738], [0.8051439311545671, -0.5446276732479169, 0.2347848965703071, -7268.421323026989], [0.213387462033724, -0.10334173460441869, -0.9714866324019882, 2073.980541099853]], [[0.606486888121771, 0.7931985590946061, 0.05486073629300746, -0.9084505496449498], [0.7719580877268292, -0.603959767298048, 0.19827584391050843, -3.3991927235420896], [0.19040579121840673, -0.07790151048296631, -0.9786097226856905, 0.6871624224065487]], [[-0.46062759045309576, -0.5901501810874957, 0.6629818901567154, -59.137047582771174], [0.865120322959129, -0.465528499167973, 0.18668166290642169, -15.834783300026347], [0.19846674713026205, 0.6595498314947934, 0.7249861861157922, 206.40065348783295]], [[0.6975719930138082, 0.7163247556433667, 0.016497242654889985, -1.2468199366176864], [0.70209663825281, -0.6879495482728257, 0.18380894859967506, -3.1201182378399626], [0.1430161708229052, -0.11663731600000886, -0.9828235403160974, 0.8978239435407918]], [[0.7656819010144091, 0.6424445824118571, -0.03156239833433334, 5740192.436399808], [0.6399907292637578, -0.7560103955673426, 0.13733225495328463, 6272395.471193424], [0.06436686193534827, -0.1253524643705297, -0.9900220536739731, 6108709.649932906]], [[0.7655814159142891, 0.6425434359550348, -0.0319848169882258, -1.5217117492237364], [0.641612201411746, -0.7589420179494871, 0.11108913713920537, -3.067520679646103], [0.04710497432591596, -0.10556962774329687, -0.9932956131443934, 1.1610113614293862]], [[0.7574543010671441, 0.6525904484768503, -0.019715180741440633, -1.480578534177926], [0.6514064738857419, -0.7533573836740955, 0.0901235720744905, -3.045130473635496], [0.043961205336393874, -0.08110708366415952, -0.9957354334384543, 1.2279888658512175]], [[0.7214064112061308, 0.6923431602536045, -0.015288502894091307, -1.3014814999863136], [0.6892986111549728, -0.7157597154695479, 0.11205112391572844, -3.077236219429912], [0.06663493476035352, -0.09137274298719503, -0.9935848264282622, 1.137439830843182]], [[0.7315592138656177, 0.6807998385662648, -0.03650611478187193, -1.4087284953942], [0.6816948805482823, -0.729585133047409, 0.0547505568050012, -3.1674787444854062], [0.01063985162408191, -0.06493930585048159, -0.9978324910089245, 1.37306327772249]], [[0.7391617718714729, 0.6732811017516263, -0.018232746034012592, -1.427152576812227], [0.67175466142644, -0.7349824631315305, 0.0924470320830082, -3.1208386983959384], [0.0488420910247855, -0.08058124417768764, -0.9955506582947458, 1.2152546116950798]], [[0.7275763044326108, 0.6859239801554359, -0.011874960038247909, -1.3676465558424107], [0.6854709764133976, -0.7261813042778273, 0.05282285312454333, -3.1418985471480605], [0.02760908768953082, -0.0465725967182297, -0.9985332901370255, 1.3206162868679787]], [[0.6880592813596801, 0.7256452351281785, 0.0036630684638735145, -1.2035967797039084], [0.7246419748281133, -0.6873570484879069, 0.04933858744639141, -3.181667182230268], [0.03832014681616612, -0.03129345985607393, -0.9987753930279939, 1.3181415625078636]], [[0.7061544753461718, 0.7079982077925004, -0.009186659413526768, -1.2964419555726372], [0.7080572911247411, -0.7060788735037962, 0.010368070056863432, -3.1563161131354955], [0.000854068888560375, -0.013826140250184115, -0.9999040496028188, 1.4497754904730766]], [[0.7070863325928449, 0.7070805973046549, 0.008120786642505448, -1.336172357713357], [0.7069621452509341, -0.7071227782100676, 0.013487094523004142, -3.1634877337078406], [0.015278856063129771, -0.00379545145769326, -0.9998760678732311, 1.4434634071275776]], [[0.6655066253127366, 0.7458327459088541, 0.028886792741865376, -1.1396697335696364], [0.7457182638778561, -0.6660517688179899, 0.016712635142992826, -3.2182149710997834], [0.031704929961269265, 0.010419039518367104, -0.9994429653720442, 1.3930643544966494]], [[0.6587358500788666, 0.7520244636111136, 0.02294092306970042, -1.1024001783759296], [0.7513542215806969, -0.6591240981268823, 0.03197275373329253, -3.2069086369270794], [0.03916520820496401, -0.0038248397144853043, -0.9992254285532476, 1.3543004109458052]], [[0.7095249281434413, 0.7046139266485744, -0.009674229474330874, -1.3245559563587377], [0.7045523522368816, -0.709590848494332, -0.009317225476009256, -3.1255287562096448], [-0.013429791529340337, -0.0002051973958574812, -0.999909795228303, 1.5276662516210613]], [[0.6860167160217168, 0.7275836330202331, 0.0017670030724158733, -1.2284466597980173], [0.7275841884398836, -0.6860081159816096, -0.00375679912142389, -3.173138018425005], [-0.0015212071046510852, 0.003862870492446972, -0.9999913820431172, 1.5067282354608968]], [[0.6690886119138, 0.7431825408935665, -0.000374590772115704, -1.12584824712128], [0.7427897452646316, -0.6687184201124157, 0.03284918464830361, -3.2087023712884744], [0.02416244476389031, -0.022257257543031872, -0.9994602497096596, 1.3682357505987213]], [[0.6976012955176982, 0.7164401361281227, -0.00812181240525325, -1.2306862331502975], [0.7161119295940448, -0.6968257889123519, 0.04021845595958212, -3.1592290532079437], [0.0231546277258572, -0.03387257373445274, -0.9991579014167289, 1.3419330127479725]], [[0.7207270365484985, 0.6924254280707417, -0.03315969464680636, -1.3459211934681423], [0.6926842510836174, -0.7212251515711214, -0.00477588127377052, -3.111650899761812], [-0.027222547433100614, -0.019527091495232407, -0.9994386552505309, 1.5416600844977832]], [[0.6902400781197697, 0.7233627477003481, -0.017747388444969096, -1.2231508368830315], [0.7234496609982255, -0.6903740058757551, -0.0020784640039210253, -3.1610666554293254], [-0.013755819087458983, -0.011404702997681137, -0.9998403423501013, 1.5153527764106214]], [[0.7305426505037208, 0.6826788962469973, -0.016029984840289564, -1.3719334754197325], [0.6828636945213037, -0.7304115414513342, 0.014005528172886387, -3.0713934452845053], [-0.0021472074222151187, -0.021177930344285577, -0.9997734167133165, 1.456269361022622]], [[0.7235386563981409, 0.6899937257571284, -0.020011774368343206, -1.3503584146272682], [0.6897249112308631, -0.721482476811771, 0.06117664980308834, -3.047359112447294], [0.02777335999030145, -0.05806629030124371, -0.9979263231348796, 1.3234127726216878]], [[0.7351237606663847, 0.6764638878841075, -0.04460565986990419, -1.3977708547473615], [0.6765999554546448, -0.736212530613445, -0.014269199224897477, -3.0572430458137356], [-0.0424918437171718, -0.01969056008509772, -0.9989027605633345, 1.5902936210232816]], [[0.7377495581156582, 0.6738364085357694, -0.04086666161758811, -1.4298960571849468], [0.6720577024061788, -0.7388223571452415, -0.049799289341081056, -3.0344178332949134], [-0.06374977754219112, 0.00927464899412931, -0.9979228160280514, 1.7253935801463662]], [[0.7207421813088032, 0.693032748211201, -0.015372637674072199, -1.290716869151952], [0.692596668731348, -0.7208619351318907, -0.025844243849353722, -3.0165358280253134], [-0.028992456682171135, 0.0079799990435834, -0.9995477762822529, 1.5800491642835057]], [[0.7147251731876558, 0.6989349455887998, -0.025648950205748124, -1.2851488886612057], [0.699144452526605, -0.7149796046072012, -0.0010952155056630063, -3.074474780790774], [-0.01910396066655417, -0.017149543157517128, -0.9996704116139172, 1.5249004975771292]], [[0.7387429757120529, 0.670751741665989, -0.065961480336204, -1.41006716578565], [0.6704636422485034, -0.7413473130941992, -0.02970969186783654, -3.063960414152384], [-0.06882819377967195, -0.02227694817638064, -0.9973797758732499, 1.6909890460616162]], [[0.7125362026393874, 0.7010076455485624, -0.02967222288105431, -1.3055746332730833], [0.7015221363409968, -0.7125435504378165, 0.01218117207148758, -3.077201033772709], [-0.012603656287193237, -0.02949524727701815, -0.9994854567407483, 1.5039395143495025]], [[0.7364409913383906, 0.6760257812546147, -0.025373398582309085, -1.3865649247956635], [0.6755023224171208, -0.7368736022466619, -0.026719032937304175, -3.011579494205652], [-0.03675974273039527, 0.0025372014339863306, -0.9993209113809631, 1.603063380221999]], [[0.7956449517746158, 0.6034651312979358, -0.0527157094530109, -1.628233201675402], [0.6036243656684117, -0.797134313904799, -0.014646186088255892, -2.865977398520671], [-0.05085996349759394, -0.0201673226554616, -0.9985021498273967, 1.6230394139121385]], [[0.8977360380035493, 0.4183619692447283, -0.13799735055196866, -2.119889118977559], [0.4141531338348485, -0.90827202963299, -0.059322018855935923, -2.404730265726168], [-0.15015721029795398, -0.0038965210179041886, -0.9886544539521855, 1.952530905520594]], [[0.9343530788126552, 0.31408934038730857, -0.16832174657000673, -2.346039371326141], [0.3081792530929062, -0.9493803687718076, -0.06084787057740989, -2.116533247873456], [-0.17891302936457873, 0.00498012507595879, -0.9838522888512368, 2.0694377833121727]], [[0.967357298688622, 0.1808504371943862, -0.1775189455817368, -2.56171139279009], [0.1849084374160201, -0.9827346031387765, 0.006447446474207464, -1.8053384575880098], [-0.1732879870222343, -0.03906173524398726, -0.9840962627677797, 1.9630101656338563]], [[0.9823692383358738, 0.026018046577965723, -0.18513168508837713, -2.7774627478152967], [0.0315492864341955, -0.9991376121397402, 0.02699397216400903, -1.3621100856846058], [-0.18426969934551996, -0.03235882043531582, -0.9823429058343867, 2.0137844350962126]], [[0.9605962688468156, -0.06013721224586982, -0.27136382216661004, -2.781867281003064], [-0.06291134480221738, -0.9980179511501265, -0.0015270485517696573, -1.0379429217110883], [-0.27073413337212004, 0.018538740124349074, -0.962475633011999, 2.351506320796534]], [[0.9899327032485334, -0.014030401831801327, -0.14084172273686965, -2.722171127111637], [-0.001029423258295188, -0.9957621185430194, 0.09196055438324122, -1.1873007189380467], [-0.14153509574238596, -0.09088977444771204, -0.9857519290237466, 1.791594577348278]], [[0.9700785877469403, -0.08880272300901122, -0.2259681614322834, -2.839786461835343], [-0.08423373659075027, -0.9960002749268603, 0.02980150945134047, -0.9439030650222656], [-0.22771080610032932, -0.009875663613300362, -0.9736787252750954, 2.171738565661766]], [[0.9627559713645347, -0.16477287172562344, -0.214361471223778, -2.931715927576971], [-0.15913744559303178, -0.9863016413790683, 0.043409050013567985, -0.7506557989464442], [-0.218577704746061, -0.007679385147708093, -0.9757893287137838, 2.157375572835356]], [[0.9484753459872902, -0.18531878216085357, -0.2570047996297118, -2.935568667280671], [-0.18111708361447793, -0.9826419236942412, 0.04014289253986196, -0.7351656731597349], [-0.25998292266469425, 0.008473415893180482, -0.9655760359214723, 2.3194125824986958]], [[0.9831815326534483, -0.09854811684404625, -0.1537606663477644, -2.864476908578176], [-0.07706618780251916, -0.987160480657571, 0.1399106433603245, -1.0508010697228687], [-0.16557438372768649, -0.12570781238413653, -0.9781526820281133, 1.8203579976868587]], [[0.96750836773755, -0.08052007776093974, -0.23967493701927625, -2.850951866367478], [-0.06257262274449911, -0.9947002587701153, 0.08158469271585166, -1.1603714034486114], [-0.24497392767536794, -0.06393678346646446, -0.9674191761998858, 2.147014368835309]], [[0.9775415108903542, -0.02139057492673925, -0.20965456777878008, -2.79400821166578], [0.002492917442534359, -0.993592147297044, 0.11299747869874419, -1.349363237725238], [-0.21072821322458993, -0.11098237758289373, -0.9712242439402031, 1.975387122384624]], [[0.9681713956923901, -0.02755558527475111, -0.2487666341839583, -2.778922292828628], [-0.015233429215416996, -0.9985659080141704, 0.0513231915041746, -1.357878248043289], [-0.24982412052759898, -0.04590007703698568, -0.9672027149106905, 2.228196078563882]], [[0.9763576768131033, 0.022944284410189527, -0.2149401003559463, -2.829366184691437], [0.036425561469571904, -0.9975948957821, 0.058971199590377325, -1.4087773421527066], [-0.2130700950385726, -0.0654062972687341, -0.9748451932885797, 2.164379969856839]], [[0.9814417574365807, -0.01726803848206002, -0.19098139073422296, -2.8574151113888875], [-0.00203771248137535, -0.9968201542226535, 0.07965819394995204, -1.3171855944659754], [-0.1917496401238842, -0.07779071270085537, -0.9783561113060282, 1.9758498909106708]], [[0.9763135936727848, -0.059329947756699614, -0.20806663381936027, -2.8881591573089733], [-0.03716875938484049, -0.9933631784275075, 0.10884888180496481, -1.2123409147431647], [-0.21314373116637583, -0.09853706431382388, -0.9720391951052636, 2.0089286410968286]], [[0.9410177735088556, -0.13918022236785643, -0.30840625097761903, -2.783872014150587], [-0.1205066871622204, -0.9895729229075864, 0.0788895975228864, -1.0204186322402709], [-0.31617034694863916, -0.037071497808563135, -0.9479778561551989, 2.370938249916906]], [[0.9552453049066689, -0.004387984658772217, -0.29578227303947696, -2.6113869184629928], [0.03163041471649969, -0.9926424326409626, 0.11687821775461173, -1.411699169841156], [-0.2941188948684316, -0.1210030847179797, -0.9480782294568871, 2.213522123323021]], [[0.9652949188884529, -0.024397595110124667, -0.26002014714436567, -2.7544459190238486], [0.013797182879096426, -0.9894724320770812, 0.14406229174932297, -1.4094834553107443], [-0.2607975408487126, -0.14265014375144772, -0.9547960929826618, 2.091721892611384]], [[0.9736439789403943, -0.03127985464950483, -0.22591806693184796, -2.8848676963339153], [-0.021081766876923775, -0.9986528491495256, 0.04741356336410441, -1.296853294874463], [-0.22709681058628745, -0.04140117846922665, -0.9729917682297703, 2.129444099125647]], [[0.9801514074171273, 0.1316473098767335, -0.14823024097816248, -2.7652591853516277], [0.14179398451978853, -0.9880725944044546, 0.06005842273030732, -1.7388123514505944], [-0.13855570898460587, -0.0798845040609856, -0.9871275406545518, 1.814769466754611]], [[0.9130122261115704, 0.38610073679446494, -0.1316620523065239, -2.205462401037368], [0.39895977926538967, -0.9124637975902229, 0.09077947243589513, -2.394659218346709], [-0.08508683505282148, -0.13541063153976954, -0.9871292678097909, 1.6167628221473604]], [[0.7536972753432318, 0.616439670504067, -0.22790908224339387, -1.327499409028063], [0.6395845444173845, -0.7677552051867729, 0.03851695017811359, -2.9603903779649023], [-0.15123500812508803, -0.1747972469390005, -0.9729202921000009, 1.7484469599520203]], [[0.6517555718888255, 0.7056808649048599, -0.2779014059320297, -0.7772341928846659], [0.7271587492071329, -0.6855533017896835, -0.0354517116199055, -3.233279369876104], [-0.21553382092699075, -0.17897258815916917, -0.9599551993318334, 1.9463666682083784]], [[0.5731984685458836, 0.7576763746649756, -0.3120417070380063, -0.37653969358157857], [0.7940234780522782, -0.6076523669978482, -0.016891334573544872, -3.3327816815945823], [-0.20241104702663032, -0.23808635441043585, -0.949918236420973, 1.7499289066845451]], [[0.4214720305718488, 0.8080842163170201, -0.41153520722405945, 0.1829398857069146], [0.8974721243499504, -0.43675828103097003, 0.06153039871200372, -3.4483564908026727], [-0.13001966566804116, -0.3952747187592175, -0.909314457846894, 1.3208167588764903]], [[-0.001223004536019659, 0.8567738805427669, -0.5156908200458813, 1.7157622178705165], [0.9983943533400488, -0.028158652910879725, -0.04915084419367277, -3.1126037032873377], [-0.0566323183227648, -0.5149229145085051, -0.8553637662629018, 0.8807361155578965]], [[-0.40249247266555965, 0.6785398857916318, -0.6144781793013017, 2.8048444631623575], [0.9041051480075477, 0.3998787612454078, -0.15063484872727287, -2.1794154500236025], [0.1435050200996945, -0.6161822779784544, -0.7744195952527728, 0.0642544553686717]], [[-0.5022238349983478, 0.635139227506025, -0.5868299423534921, 3.161307474742928], [0.8522196817813181, 0.47858836710559455, -0.21136411439917976, -1.907751819071793], [0.14660434353763788, -0.6062601228468276, -0.7816366354653859, 0.03394401605567992]], [[-0.6139720610720939, 0.592721289732227, -0.521267475410706, 3.448827287919775], [0.771008679209925, 0.5917945000285765, -0.2352124280706575, -1.4605542867961259], [0.16906781126474832, -0.5463156069838135, -0.8203385476497221, 0.11217494100688963]], [[-0.7131254901005822, 0.4909300488672327, -0.500439529302014, 3.5950543986664925], [0.6660595235869918, 0.6971488986564245, -0.2652322079635198, -0.9308591056349357], [0.2186704058803437, -0.5224663627654424, -0.8241432844904916, 0.024450879270803336]], [[-0.7525364867541663, 0.423544149415992, -0.5042808638042702, 3.629130035239534], [0.5881523470972007, 0.776726896908052, -0.2253267499069796, -0.5906493109811678], [0.2962526838827812, -0.4661605743894183, -0.833623815744954, -0.11890497802523836]], [[-0.7752253932164916, 0.35046817489979976, -0.5255450961570652, 3.5931218850432036], [0.5129674077816255, 0.8347888994199407, -0.19997982888042423, -0.3226420246753308], [0.3686326467720068, -0.42461694712722853, -0.8269283039938934, -0.28832931765429265]], [[-0.7944663271320705, 0.3559034829060633, -0.49209345241387986, 3.625215540797436], [0.5140399122202247, 0.8255675315287638, -0.23281155368693981, -0.3447036107861354], [0.3233979339728403, -0.43791661505455204, -0.838834199685052, -0.17390990974973475]], [[-0.8254824889410352, 0.36526638401623657, -0.43030120748077993, 3.7210252325411797], [0.5008402379198865, 0.8255608446070323, -0.2600160532199405, -0.27384922089560604], [0.26026470473743757, -0.4301508579085094, -0.8644261234533048, 0.09355374425358123]], [[-0.8531830766082521, 0.29097733480525334, -0.4329097231743686, 3.5888889497421896], [0.4220541846465867, 0.872796960072208, -0.24514430793109868, 0.16115208364901557], [0.30651085300782055, -0.3918643350935933, -0.8674637974406043, 0.0061400247642052624]], [[-0.9020378537585063, 0.2692920361237304, -0.33735665054521063, 3.6472615897474054], [0.3721987382414046, 0.8810560609107402, -0.2919046364550526, 0.3650388591618778], [0.218622527746466, -0.3888727514403465, -0.8949760742885592, 0.2954481401950437]], [[-0.9378838134543765, 0.21794380604470331, -0.2699526807924402, 3.6060192935026723], [0.30352085677177587, 0.8923329151668891, -0.3340913917093473, 0.6637700262419487], [0.1680745131327279, -0.3952751774606017, -0.9030550880863727, 0.4376243801220372]], [[-0.9665536999776632, 0.168260060943689, -0.19355231063130077, 3.555697583144001], [0.2284719827249666, 0.9077706215956223, -0.35178551942571384, 0.9699228577936949], [0.11650964839536701, -0.3842408755704197, -0.9158517627715006, 0.653379133018503]], [[-0.9785452422570002, 0.12628485792442054, -0.16279233248282238, 3.488175605613912], [0.17588642873858015, 0.9235218663010909, -0.3408391506991786, 1.1241794301388934], [0.10729945499291797, -0.36215949127802505, -0.9259197210533238, 0.7126796414311607]], [[-0.9818302302055704, 0.1248771728463547, -0.14288138701866793, 3.477469265154202], [0.16548550166306641, 0.9319396618272422, -0.3226499890789534, 1.1218590944182847], [0.09286521304449775, -0.3404323110623126, -0.935671894304287, 0.8118866233038486]], [[-0.9844031657939087, 0.11483241558710176, -0.13328136968594417, 3.4825257189332817], [0.15118576398513944, 0.9395866651466773, -0.3071152282886281, 1.1602686313812751], [0.08996261414143031, -0.3224754486917997, -0.942293114188925, 0.8548714975831827]], [[-0.9741716966970603, 0.17812698891511053, -0.13878141509008596, 3.5643451377349464], [0.21004613290123142, 0.9404207861928964, -0.2673749557261716, 0.9553554771114146], [0.08288623171316742, -0.2896196138322991, -0.9535461980816771, 0.898956649417743]], [[-0.9599198185305713, 0.25345997428462796, -0.11963270216738917, 3.573296994101565], [0.27047459269753404, 0.9496136135585435, -0.15835870563182938, 0.7037019309317283], [0.07346724914775699, -0.18436926636487175, -0.9801074109110394, 1.0694388283413128]], [[-0.9418992768626163, 0.3016690575384793, -0.14772112905581716, 3.577504884154441], [0.3286070204566721, 0.91868530966913, -0.21916826390863028, 0.4634843049200921], [0.0695929475756557, -0.25497662936430165, -0.9644395990033543, 0.8958005001447155]], [[-0.9721060883641028, 0.233807353807968, 0.018543847248010323, 3.518055003233162], [0.23106651424829291, 0.9682646504892626, -0.09524616845862903, 0.8035730765325476], [-0.040224606381981, -0.08830451810763577, -0.9952810121383767, 1.5235849508971329]], [[-0.991777925277026, 0.11736292287241563, 0.051014618179897935, 3.30623410408764], [0.11318342480875083, 0.9904855623598084, -0.07828066878441947, 1.1952704431475094], [-0.05971649086943404, -0.07186303007539802, -0.9956252536103244, 1.58153715584248]], [[-0.9924105082086494, 0.05079765370202318, 0.11198652407954812, 3.1840380600461073], [0.04106982494685305, 0.9953153957270576, -0.08752446805051403, 1.4147062292615418], [-0.11590794914881691, -0.08226093487834876, -0.9898477084466352, 1.7602803371693907]], [[-0.9941619489967439, -0.025999112946509254, 0.10471898248641738, 3.029402267523646], [-0.038253140294306695, 0.9924223795140509, -0.11676693837423922, 1.6224754200213412], [-0.10088962496025063, -0.1200910769610463, -0.9876231147607454, 1.6369848806014944]], [[-0.9896743821481467, -0.11374466647029388, 0.08721678834516648, 2.825647801587153], [-0.11593216431122977, 0.9930471344074724, -0.020423567837710002, 1.898883495168652], [-0.08428730982655687, -0.030323912918175995, -0.995979974551463, 1.7507947812881104]], [[-0.987406017620695, -0.04219138764263548, 0.1524770250733803, 2.983481448169246], [-0.05811060156512478, 0.9931365473028829, -0.10150347972876517, 1.7424422754809732], [-0.1471479335640793, -0.1090856783454977, -0.9830807700426876, 1.81319166926218]], [[-0.9871181955039744, -0.03364405223793508, 0.15641529929641912, 3.0115023229941253], [-0.05099027988437771, 0.9928157586944641, -0.10824444856549555, 1.7339230611735874], [-0.15164979216039204, -0.11482572463061787, -0.9817420198304457, 1.826717967843791]], [[-0.9916639975250199, -0.037680721919880214, 0.12321801495030707, 3.020281200711018], [-0.05777532921126219, 0.984796546203963, -0.16382238528136597, 1.746304479348129], [-0.11517172980913204, -0.16957572285071557, -0.9787642958712939, 1.618824919153207]], [[-0.9925709005255555, -0.06885517423854665, 0.10030938346170544, 2.9821344665514897], [-0.07926895680770679, 0.991431427364274, -0.10382753642967824, 1.842987169800469], [-0.09230081211184439, -0.11100761151838925, -0.9895240625009969, 1.6555888142107404]], [[-0.9912758141338556, -0.049116087802603466, 0.12231054832772809, 3.0240347235244185], [-0.06252098102385412, 0.9921514648569676, -0.10828941644495259, 1.7637046308879973], [-0.11603183720461135, -0.11499165491956555, -0.9865665370636605, 1.704004628917212]], [[-0.9885737399375829, -0.05854463848883584, 0.13890459319270634, 2.9813488842289675], [-0.06797700689616623, 0.9956217967706931, -0.06415889905956303, 1.7404257603381088], [-0.13454028110294067, -0.07286812128295987, -0.9882252524912694, 1.8198694386795353]], [[-0.9875979145637223, -0.11925223617116834, 0.10212376470519707, 2.8271220668158863], [-0.12992698823162424, 0.9859290797539688, -0.10517997634793239, 1.8860397346736557], [-0.08814384197688424, -0.11714415847010098, -0.9891955869583556, 1.5797715557449898]], [[-0.9808785105823333, -0.12932597042632474, 0.1454377559338457, 2.8200653613153683], [-0.13130927813780593, 0.991333056889798, -0.0040796804356237355, 1.9157073529289752], [-0.1436496465457253, -0.023098997615002177, -0.9893589921542486, 1.927166847069966]], [[-0.9848355647252803, -0.0846207260090102, 0.1514537658229294, 2.9145167971798753], [-0.08983610243203956, 0.9955651863249046, -0.02791835377807872, 1.8001735440013464], [-0.14841962522543578, -0.04110100372942113, -0.9880699987047353, 1.910661976051089]], [[-0.9803497584676211, -0.05622584732056173, 0.18908465079313544, 2.9695892210778134], [-0.06327044579273196, 0.9975015705181743, -0.03142399565562078, 1.726357155208125], [-0.18684539534509823, -0.04276997669932014, -0.981457858153611, 2.0250956562102007]], [[-0.9793240479566087, -0.07429124362298883, 0.18816274927527926, 2.9300751015344595], [-0.08203863576853168, 0.9960587024769811, -0.03371532976423297, 1.7933313748678785], [-0.18491639012029215, -0.04845484847590076, -0.9815589927885421, 2.0107772922718867]], [[-0.981919238526453, -0.11142990530455626, 0.15302936063203595, 2.8574097704274672], [-0.11823936857219403, 0.9923281937192404, -0.03611381549433217, 1.9049069123068376], [-0.14783118998127884, -0.05355494518461793, -0.9875615459883972, 1.896754397391816]], [[-0.9868257095405559, -0.09017887992624105, 0.13432344771121466, 2.8882308954522418], [-0.09859406086263159, 0.9934731950826179, -0.05736045514943568, 1.8428142414929036], [-0.12827404317473787, -0.06984826603132908, -0.9892759926228993, 1.8036754991064468]], [[-0.9873375111341672, -0.04855179775719878, 0.15102106489470937, 2.966244648188629], [-0.0611308580990765, 0.9949349644995, -0.07979620670463737, 1.7506155258139608], [-0.14638188854997916, -0.08801783541375412, -0.9853046246484477, 1.8364217223128916]], [[-0.9879751778617889, -0.048873184214343876, 0.1466848996785859, 2.976215177268714], [-0.06330506714341982, 0.9934251823680795, -0.09538802603532094, 1.7577539916348666], [-0.14105855664557576, -0.10352689941120986, -0.9845733414506852, 1.7952118321656076]], [[-0.9896537316851074, -0.053655327118276745, 0.13306613856865304, 2.9824299373280363], [-0.06424369622487762, 0.9949902641155898, -0.07659713970217459, 1.7686642296533148], [-0.12828966777222126, -0.0843533057266846, -0.9881428444085771, 1.7940588280477154]], [[-0.9897450088084753, -0.004034739193272042, 0.14278843937221591, 3.075292766136158], [-0.017765983964757242, 0.9953166894469322, -0.09502135298006946, 1.6199231125848454], [-0.14173633039018152, -0.0965836869664916, -0.9851814066756861, 1.8166242926448664]], [[-0.9729581889927046, 0.1250653963412856, 0.19419322622077764, 3.2372045283168136], [0.10329710801585694, 0.9875694585128605, -0.11847477405834538, 1.2687467832555808], [-0.20659639383977, -0.09521140294425214, -0.9737826856140903, 2.0413877498430817]], [[-0.974040149845884, 0.21759437852691846, 0.06243775237540135, 3.3619190457367396], [0.20153989979484063, 0.9591459209565314, -0.19854664717172377, 0.9708311305842877], [-0.10308954980449477, -0.1808087076053902, -0.978100585816804, 1.565617212452444]], [[-0.8898129643440007, 0.456281254901115, 0.00634861490444809, 3.498923223923208], [0.45585855197487607, 0.8894457335655982, -0.03285220895653723, -0.05612686369907532], [-0.020636595569774784, -0.026338251039477113, -0.9994400569596308, 1.5591081127258712]], [[-0.7691665233946918, 0.6388174885711863, -0.01717776424699366, 3.2819888574364], [0.6349410516459805, 0.7669894498667795, 0.09261233572128008, -1.1837663559556801], [0.07233754366592261, 0.06032744059428615, -0.9955540566376713, 1.2986126911567724]], [[-0.8246745942635791, 0.5095462817541662, 0.24550845265836613, 3.199345723850196], [0.565572394368624, 0.747723617177672, 0.3479040946049353, -1.004237410690961], [-0.0062992304564123275, 0.425760471468691, -0.9048139812306257, 2.2488117541791546]], [[-0.6925477596566004, 0.7129149907178794, 0.11013544662981682, 3.0225077881796905], [0.7107752482309765, 0.648301660494241, 0.27295329912386773, -1.73175767550887], [0.12319150578192166, 0.2673147452164501, -0.9557021920520257, 1.4357283868858868]], [[-0.7062180400539491, 0.7064804123661964, -0.04627641780916181, 3.0861677293516387], [0.6445643351235187, 0.6686134066964413, 0.3708003914137031, -1.4078728228118722], [0.2929042467925915, 0.23203779719836198, -0.9275589269055615, 0.6933931009305107]], [[-0.6090112923188061, 0.792583368707436, 0.030279522396337695, 3.0332103914890527], [0.7830356329874235, 0.5947174324027905, 0.18211637232335134, -2.0360580221336013], [0.12633464805888672, 0.1346208722472302, -0.9828106518832771, 1.0313089170709715]], [[-0.6709429363866766, 0.7367466275508331, 0.08390460598380538, 3.08791690632637], [0.7322506138549044, 0.6404851319883225, 0.23149046246231553, -1.7223728154801643], [0.11681016489132791, 0.21675608986687117, -0.9692121454478813, 1.3370458146928386]], [[-0.6905955791225152, 0.7207247733682313, -0.06027891131854426, 3.2396703389507477], [0.7067162263635188, 0.690183238993272, 0.15556115198616755, -1.5660708088116688], [0.15372027026695267, 0.0648297591085102, -0.9859853857147108, 1.018473440326622]], [[-0.647529566397674, 0.7618948349247722, 0.014890304086697838, 3.265449559685421], [0.7619431299833276, 0.6476354403806077, -0.0033170821856230797, -1.8537258412452375], [-0.012170756428836917, 0.009197656112860124, -0.9998836311341331, 1.526784936676502]], [[-0.7619921745113641, 0.6372579032920388, -0.11519674767664721, 3.5000734925239554], [0.6121922688678613, 0.7668604051888138, 0.19273231408372768, -1.0880861903206633], [0.2111600149693662, 0.07633795678090169, -0.9744659893668193, 0.8543498507832875]], [[-0.7522713601535131, 0.6588268371048301, 0.0059160293464770065, 3.3456069131725963], [0.6581597633124822, 0.7510371593600929, 0.0526204448553963, -1.1442460807668127], [0.030224603376060834, 0.04347854609767893, -0.9985970605704741, 1.4631929522386158]], [[-0.7486415587220565, 0.6625462286687027, -0.023839283359380348, 3.2857782553776964], [0.6628907239274948, 0.74748909970785, -0.04284779981317028, -1.1850349982317907], [-0.010569043716983965, -0.047880483443954756, -0.9987971538906595, 1.4964024101269193]], [[-0.8709033889239356, 0.44576101179895966, -0.2069405893505972, 3.6133750286000894], [0.43844904178581656, 0.8949542639706458, 0.08257907215426237, -0.22663489458834402], [0.22201289358481865, -0.01881450931402022, -0.9748621899126918, 0.7259828811669469]], [[-0.8587068607482639, 0.46266659400502397, -0.22036821480343471, 3.644465853013021], [0.46627672245509266, 0.883796056944314, 0.03860761357840492, -0.33620768037439747], [0.21262301239611592, -0.06959994627493124, -0.9746524006424694, 0.7177083829816452]], [[-0.8608400386607218, 0.44775347523526376, -0.24180829856179703, 3.679931666192352], [0.45457746986059955, 0.8901994498607335, 0.03007097209574671, -0.28081516690569885], [0.22872199661104492, -0.08403430777005005, -0.9698579707276038, 0.6599336263026984]], [[-0.8759666842742612, 0.4046143308035513, -0.2626206605542494, 3.671140823582409], [0.4112285816882691, 0.9109747889832892, 0.03187455787154356, -0.1034721795207254], [0.252137703733913, -0.08007607099031626, -0.964372542750229, 0.5842187587157506]], [[-0.8828713023332637, 0.3794917874743796, -0.27663016241159777, 3.655024411221459], [0.38358608166517183, 0.9225765960449672, 0.041402202632727717, -0.012854901983263133], [0.27092430948352864, -0.06955866351204289, -0.9600841686338191, 0.48355497219393057]], [[-0.9010050514351672, 0.3685208395237676, -0.22887177223285785, 3.715557472174313], [0.3777393202849897, 0.9259041840172628, 0.003801043272664159, 0.00447547251505556], [0.21331409517175745, -0.08302910848626664, -0.973449158377072, 0.6782465355696269]], [[-0.9060981901372515, 0.37613442548900716, -0.19367231033901655, 3.691064974860857], [0.3744726509549527, 0.9260683014276668, 0.04655893875128904, 0.05566577656049045], [0.196866207147819, -0.030338013331967704, -0.9799608672953741, 0.8220476159758278]], [[-0.8648031578148737, 0.4663199923592933, -0.18617508683884498, 3.6537181885408523], [0.48967186878377694, 0.8652829335891408, -0.10727024639281021, -0.5051503175085353], [0.11107186482285407, -0.183932350513441, -0.9766431954810183, 0.902465033365103]], [[-0.9394656974423947, 0.29841558040942884, -0.16838154500413316, 3.7608553828980424], [0.2945543435556055, 0.9544256576631266, 0.048056245034695064, 0.3462011995370019], [0.1750483990832294, -0.004450321697588664, -0.9845497715276698, 0.9449313517888084]], [[-0.7128461655337184, -0.3899540449666438, -0.5829118176002515, 2.301985840442682], [-0.42651079492824445, 0.9008428534432751, -0.08105982488172048, 2.818717217885098], [0.556721551669731, 0.1908349973519819, -0.8084819835296997, -0.13291238195548283]], [[-0.8082735072830616, -0.5059006393611022, -0.3012614819693458, 2.683047833519602], [-0.4919538000822825, 0.8613700326917951, -0.12658248443263095, 3.121709395184916], [0.32353577237909886, 0.04589346222027357, -0.9451023193900733, 0.3745987546258427]], [[-0.43373742307993524, -0.7043686848865907, -0.5619044434520093, 1.0609391303162479], [-0.5294569822107951, 0.7038354784526629, -0.4735936267091745, 3.0354951526652654], [0.7290728028175344, 0.09208895168501904, -0.6782127049601321, -0.9795297549576755]], [[-0.7994905652209071, -0.47254205670236055, -0.37083532837400707, 2.7622662194944034], [-0.462448781026288, 0.8782038728992143, -0.12206179808654774, 3.165434944053443], [0.3833483546985104, 0.07390508962394848, -0.9206422088290441, 0.07103022638829969]], [[-0.9179598223342195, -0.2922247977668313, -0.26824323318634197, 3.4296520791979033], [-0.32207424829643205, 0.9438197162961874, 0.07397649434024586, 2.670102609149141], [0.23155548614622784, 0.15430168729057617, -0.9605066611611107, 0.7412171974897618]], [[-0.9341031974476922, 0.3479855838671108, -0.07973236443668023, 3.8263629536159782], [0.3567109440606953, 0.9187972597732681, -0.16902336471760696, 0.11095865677477713], [0.014440183701225295, -0.18632667241648374, -0.9823817243011369, 1.0204543352582647]], [[-0.6993939464413499, 0.7110133408055366, -0.07285696176580833, 3.399415763728146], [0.7047630313893656, 0.669072935660953, -0.23590353187883067, -1.3098287087757796], [-0.1189839370170056, -0.21633639537207833, -0.9690414783534034, 1.4989327837371444]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.35092029710421535, 0.881921898191351, -0.31475182377685007, 2.5907862282980068], [0.9329226195489808, 0.3003103748570837, -0.19866822767384135, -2.497733627932601], [-0.08068662227504912, -0.36335580942619056, -0.9281498934666108, 1.2118216611130321]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8804464589066435, -0.4701614196339218, 0.061337366152835075, -3.969160692881928], [-0.4429062319311172, -0.8617064887457976, -0.24758028388780878, 0.3544948707890371], [0.16925750416253638, 0.19081448252479138, -0.9669238494025603, 1.292172304263864]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.2237584613839465, -0.9744258485886855, -0.020649856205543826, -2.685072042508038], [-0.6225082590338046, -0.12658061735446802, -0.7723087560974974, 3.414518392295892], [0.7499437434859971, 0.18566532501353683, -0.6349116227427458, -1.4105758658647134]], [[0.14942284377003878, -0.9851833788157361, -0.08418149360093352, -2.364123007273349], [-0.6256772244142915, -0.028284254407397902, -0.7795691193228769, 3.689057157996793], [0.7656375282135162, 0.16915587798781057, -0.6206331157239922, -1.5751501775632892]], [[0.09188285086596615, -0.9797979413709669, -0.17763314950188291, -2.039551232687317], [-0.5860950063820615, 0.0910015839253242, -0.8051157402616681, 3.8913064882515913], [0.8050156428360595, 0.17808623138327628, -0.56589319573657, -1.851867381654049]], [[0.06641764027034358, -0.9680682027362073, -0.2417284673182054, -1.8421422216968628], [-0.5300014408732181, 0.17103232186361017, -0.8305699353758569, 3.9208637140241462], [0.845391725611998, 0.18328093116587968, -0.5017179790855977, -2.127152144428812]], [[0.10686053282755115, -0.9585491646490276, -0.2641293726083161, -1.9586919602656065], [-0.4930069651223418, 0.1796110803501454, -0.8512837318757543, 3.837364019447369], [0.8634378720351972, 0.2211862535649637, -0.45337807883622466, -2.197746160685991]], [[0.1593886912561393, -0.9546640209916777, -0.2514196733027401, -2.173705112541239], [-0.5058294892010837, 0.13973015113983467, -0.8512414538290588, 3.803519615291462], [0.8477804980973707, 0.2628537461906154, -0.46062580817767207, -2.032923900216514]], [[0.2825108651274145, -0.9381133634796972, -0.20032705345451718, -2.686816397141703], [-0.5124883427183562, 0.028928810833252272, -0.8582067480983626, 3.6042279941626147], [0.8108904424536969, 0.3451180104900107, -0.4725994595560436, -1.6888787724184857]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8715924618461924, -0.4876024042203206, 0.05069986046783403, -3.8489880281012345], [-0.4782800747310944, -0.8684812219077261, -0.13034008327786886, 0.5212871020299578], [0.10758601474222135, 0.08935470100798368, -0.9901722005993, 1.327997709195251]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7250962544673271, 0.684678112834393, 0.07383294361589791, -1.372997511929598], [0.6708806606726517, -0.6781206591094265, -0.3001191610417826, -2.8253948218983402], [-0.15541737641872705, 0.26714837355771326, -0.9510400546836018, 2.469234701158313]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.50572952795903, 0.8504574395440172, -0.14477495665539633, 0.032455708491764504], [0.830608069547248, -0.5253568813803766, -0.18463580906552035, -3.237741693642726], [-0.23308341715645867, -0.026875466703286097, -0.9720852997222769, 2.2191059520305894]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5724908997300494, 0.7950660608134401, -0.20031008129616903, -0.3699778986707299], [0.7873722958675129, -0.6012541623942549, -0.1361554255397295, -3.1517819776726257], [-0.22868982799110363, -0.07977086652520526, -0.970225526064542, 2.229022890607528]], [[0.3651800643653367, 0.9083654529219006, -0.2037540785557887, 0.4713667014845505], [0.8497808212060173, -0.4146391923980929, -0.3254948479436872, -2.988437489629448], [-0.3801527015563025, -0.05428207867655227, -0.9233295075074756, 2.6416117643183714]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9852281072431026, -0.004655447983048632, -0.17118382955831585, 2.9192430464906782], [0.055238054007265155, 0.9375584914405929, -0.343413500778769, 0.6648817788573561], [0.16209359668927042, -0.34779649499630705, -0.9234518200645986, 0.9687601993296268]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9700440064267735, -0.18571557874355557, -0.15660252043769923, 2.631304881047376], [-0.1351105137937346, 0.9481891735687608, -0.2875455445479634, 1.6784226470612977], [0.20189050165346273, -0.25777318506574337, -0.944877352042674, 0.7316910514931688]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9690239618710591, -0.24663315314729628, 0.012831566090643754, 2.445398290373614], [-0.24353557948031423, 0.945639912216328, -0.21553556075664954, 2.404088094108612], [0.04102417393322875, -0.21198406589203378, -0.9764116821100504, 1.1077748042062552]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9887387795948329, 0.06125597861304429, -0.13654058301281194, -2.129809972820379], [-0.0029412430375215168, -0.9042587773725906, -0.42697472130563147, 0.19687776982940206], [-0.14962277505351437, 0.4225680639006995, -0.8938955512566888, 2.0434670242877284]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.17655514934275363, 0.9599394219151511, -0.2175881097251477, -0.2924742658891398], [0.7398341321648854, -0.27522849308266994, -0.613917529868038, 0.13008042702734665], [-0.6492100862774612, -0.05258880915791653, -0.7587889568430497, 1.3895921440697738]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.533454811338852, -0.837662728708714, -0.11724810101533092, -3.2593240864273256], [-0.8228386032088045, -0.48184590309208875, -0.30126592695283827, 2.445316461574936], [0.19586372131871002, 0.2571880218937904, -0.946304244979143, 1.35165479902294]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9265332039626665, -0.33246687942767716, -0.17607383689321474, -4.135829749240888], [-0.35355169521465757, -0.9294536437090323, -0.10543776840793166, -0.18905813460891133], [-0.12859790342582514, 0.15994279689821972, -0.9787138912648867, 2.1619200148621536]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7838844353246592, -0.616644135356173, 0.07263058850497126, -4.0660409248106095], [-0.5979425739868, -0.7812287227597436, -0.17929406278295984, 1.2646785196790393], [0.16730173421032085, 0.09711690412084584, -0.9811108177286609, 1.1170453190534084]], [[0.43989623261174127, -0.8856870487592065, 0.14849160311008788, -3.428444297914852], [-0.7468265873215668, -0.4526150097411037, -0.4872265401501469, 2.8928464395910876], [0.4987397648108871, 0.10343164224388737, -0.8605582736683864, -0.2900284450496397]], [[0.21224779247364314, -0.9754860309042575, 0.05811951566146517, -2.7642852994488805], [-0.7732766232512949, -0.20401959621281482, -0.6003492885764375, 3.726485793036108], [0.5974898647869602, 0.08248034839777241, -0.7976232529239865, -0.8725771175398693]], [[0.03124130841069106, -0.9988296639876809, -0.03692266224209839, -2.018111285849502], [-0.6501896699147386, 0.0077476352913818936, -0.7597324313753853, 3.8543351563081956], [0.7591293524722588, 0.04774176877376579, -0.6491866832656079, -1.747710857275846]], [[-0.025220968882381012, -0.9952187248864468, -0.09435884889097018, -1.7385616659332161], [-0.593891161525105, 0.0908433458162714, -0.7994002594340754, 3.8723324526575276], [0.8041499804085028, 0.035877237300275866, -0.5933427616923493, -2.061588591967079]], [[-0.0026791457502725047, -0.993237686993275, -0.11606773588856434, -1.8185430477961753], [-0.6254156134727645, 0.09223108080206321, -0.7748217460542576, 3.994126450143594], [0.7802872116102724, 0.07051471385698149, -0.621433457843343, -1.885422724429725]], [[0.011209806113760767, -0.9883335786834284, -0.15189166367414392, -1.82925598488645], [-0.6382239912371663, 0.10986441442303918, -0.7619710935808419, 4.068550794662742], [0.7697691064573802, 0.10548245204909695, -0.6295466424765654, -1.7645572534112217]], [[0.02624654800712667, -0.9837890470007296, -0.17739850540268415, -1.8511396137533742], [-0.6323160434915469, 0.12110995274546654, -0.7651854680332, 4.077314637280562], [0.7742658069816244, 0.13225539817862803, -0.6188868796409459, -1.7502762297156365]], [[0.023642649457985998, -0.9807221176715577, -0.19397204189372763, -1.8121180424585335], [-0.614082123869679, 0.13886118112016677, -0.7769303170308238, 4.065359220829839], [0.7888879326433578, 0.1374834545962803, -0.5989608747171734, -1.828722490661092]], [[0.023183526937374133, -0.9808749305563104, -0.19325344676071815, -1.8147260725310095], [-0.6201640670254348, 0.13750701504486085, -0.7723265829841188, 4.087606963178024], [0.7841294880625371, 0.13775409765087254, -0.6051154885897216, -1.8031321237171163]], [[0.038715181782872365, -0.981910516407936, -0.18534527905242004, -1.8890162131001753], [-0.6313035951757822, 0.11974325112130135, -0.7662358152220718, 4.081374160369274], [0.774568851308682, 0.14667409988952135, -0.6152477574148056, -1.7382127664435068]], [[0.10236194545917399, -0.9806952432334927, -0.16660993974254457, -2.170210399838226], [-0.6614305178081917, 0.05799867407738246, -0.7477605391549178, 4.051769518673325], [0.7429883594201196, 0.18674312224140088, -0.6427249054313457, -1.492019759840568]], [[0.555020754794993, -0.8302788354505084, -0.05088238545649054, -3.786582440878004], [-0.6214262983281031, -0.37319095777517997, -0.6888816043276776, 2.9007584946426213], [0.5529749700420687, 0.4139632404426644, -0.7230858303612249, -0.14484052183836219]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6181847280759124, 0.7768945296934742, -0.1195095465059812, -0.5024141824075742], [0.7360434643054363, -0.6254955124590706, -0.258834662568243, -3.3358917740717935], [-0.27583991847983413, 0.07204341486853583, -0.9584999143177418, 2.6022869372232873]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6884936407526834, -0.6145789525737981, -0.38505742129766574, 1.4200583801680815], [-0.6463305720757311, 0.7608013403998873, -0.05863541631123702, 3.285372643272157], [0.328988294994477, 0.2085042721361533, -0.921028050744167, 0.7906605912201636]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4649557816041329, -0.8190996854470938, -0.3359937893077217, 0.5735965599755597], [-0.8586375014368606, 0.3247058784488997, 0.39662038982759523, 2.5012414054505525], [-0.21577247803914865, 0.47290781110191066, -0.8542835828456756, 2.7062299532662624]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4317697974391497, -0.849076381850947, -0.3043749986484771, 0.3586560086251241], [-0.86349117508201, 0.2915699433534113, 0.4115458160258442, 2.4184390085501772], [-0.26068723132298816, 0.44051817887096706, -0.8590610580799025, 2.888376963714229]], [[-0.42250464564513646, -0.8774576110394139, -0.22706379111888855, 0.2598330649558391], [-0.8558836216488366, 0.3038137362701929, 0.4185217316302904, 2.4349547784322794], [-0.29824998005288916, 0.37116755580539407, -0.8793643129647124, 2.6598531577746414]], [[-0.2294703780411312, -0.9293136214264645, -0.2893432885568456, -0.3933230026508732], [-0.9495063138503473, 0.148386304684778, 0.27644034535559725, 2.6569657558538777], [-0.2139651970765009, 0.3381681499095177, -0.9164394125237018, 2.649835262968883]], [[-0.12541691056990972, -0.9651372187067297, -0.22974060940577634, -0.8679030709047918], [-0.9659123913523253, 0.065928509776848, 0.25033314568917264, 2.6701775710227045], [-0.2264593799672069, 0.253305311167457, -0.94050654891884, 2.4740503472895328]], [[-0.03092561242370257, 0.999249963509606, 0.023304869067859016, 1.1514880252220452], [0.9708841270019234, 0.03557264237997842, -0.23689364501780025, -2.5074024033959867], [-0.23754498191275764, 0.015300246408383789, -0.971256034229858, -0.8552529124046319]], [[0.1621204044434482, -0.9769388162189592, -0.13895151610468817, -1.9584554210835898], [-0.9816127200277753, -0.1740452949850481, 0.07838815709812084, 2.5508362134801206], [-0.1007642910100841, 0.1236882559431823, -0.9871918623038627, 1.8930576879531973]], [[0.26123547825906784, -0.9582637672516304, -0.11613172379444471, -2.180357278021515], [-0.9632899215277432, -0.26651660514860936, 0.032271136687984675, 2.3362645780062627], [-0.061875293791871885, 0.10343815327418276, -0.9927094219686827, 1.8657733173457658]], [[0.24631215993322492, -0.9684328036339518, -0.03831742051226368, -2.194817994523984], [-0.9678795895237076, -0.24784230662764434, 0.042229033009395275, 2.5400908605600425], [-0.05039265871582019, 0.026685124904581442, -0.9983729183308101, 1.7090755523090835]], [[0.231168048784296, -0.970600060279438, -0.06705860278004934, -2.158406034386688], [-0.9727343913046067, -0.22925200787126818, -0.03509018182124256, 2.624151204853791], [0.01868521325854634, 0.07334193802009153, -0.9971317981756168, 1.6325503735652345]], [[0.1938726662438818, -0.9800644775237268, -0.04343971891751021, -2.04553772501949], [-0.9774599094165151, -0.18920586414309545, -0.09366571655265359, 2.732099273996698], [0.08357939199914126, 0.060619805921895045, -0.9946555807730859, 1.4290339452457406]], [[0.140812503322988, -0.9874047294922098, -0.0721369467355643, -1.9631588220731917], [-0.9838301911683417, -0.13141226748869128, -0.12169211518888612, 2.826283462785865], [0.11067969033918547, 0.08810627747156716, -0.9899430741292781, 1.363549910048508]], [[-0.03818408667406379, -0.9963563787831546, 0.07626232348274117, -1.4808545948625083], [-0.9991783593107626, 0.03703158529580044, -0.016470214799213782, 3.2250741640013563], [0.013586088838218317, -0.07682856336414562, -0.9969517491039781, 1.4058027754551234]], [[-0.08142948549854405, -0.9946717531146595, 0.06322453991333163, -1.4993845381080997], [-0.9894577356461319, 0.07305432178085665, -0.12504581336121856, 3.2373574292942204], [0.1197607125123766, -0.07274042634566455, -0.9901344363840597, 1.0827722923328347]], [[-0.06951474989124092, -0.9856492450876259, 0.15382868785031967, -1.5456184777645459], [-0.9908142352299204, 0.05028741633533666, -0.12553217525425148, 3.162343329127531], [0.11599504650331299, -0.1611419914749394, -0.9800910201456718, 0.9509874239123366]], [[-0.05134578241996046, -0.9722615409246173, 0.22819094343678747, -1.5874639230680774], [-0.9949799573582102, 0.03014922266597475, -0.09542488579030084, 3.0755524080143095], [0.08589816693699898, -0.23194508059350288, -0.9689287819573412, 0.945516328639088]], [[-0.03891636617726388, -0.9845578079215882, 0.17067934644881522, -1.714121500137466], [-0.9963329608770086, 0.025207645998532785, -0.08176310692033739, 3.1091979831722], [0.07619808077380308, -0.17323538161660335, -0.9819283859032388, 1.0036433751071248]], [[-0.05300987132929451, -0.9747899287150663, 0.21673612623955305, -1.6338735150382118], [-0.9971724786513498, 0.04009592566419702, -0.06355599551147109, 3.109956327578868], [0.05326350872759486, -0.2194923953598553, -0.9741591692414634, 1.0671932563230597]], [[-0.036161783164338594, -0.9773222310973226, 0.2086470273963343, -1.6933780092019166], [-0.9947790880217868, 0.015265968530330139, -0.10090349963887751, 3.0963238929143637], [0.09543003443841633, -0.21120655010624623, -0.9727717623981998, 0.9045841264192642]], [[-0.031651367891442406, -0.9795524888388382, 0.19868344802785845, -1.702197969785078], [-0.9868122787604886, -0.000945488173659137, -0.16186609447208414, 3.070406819877248], [0.1587441885491647, -0.20118654940564898, -0.9666044976825401, 0.7442817141991729]], [[-0.019737390565510986, -0.9807427571617393, 0.1943040907661351, -1.729430015255483], [-0.9911644888877797, -0.0063014383785337455, -0.13248867061823888, 3.1023944834665564], [0.13116169936948488, -0.19520229545051854, -0.9719530196822056, 0.8237414187024525]], [[-0.04249808732529842, -0.9780758728779207, 0.2038663765013374, -1.6650581908080173], [-0.9952889993476256, 0.023647930323546233, -0.09402437539816438, 3.1343411876300236], [0.08714195517254339, -0.20690181798502022, -0.9744731486106739, 0.9791068145696752]], [[-0.07362164112031987, -0.9726860803923935, 0.2201400530790187, -1.5795114313633345], [-0.9942913413705313, 0.054495746729313135, -0.09173299332303574, 3.2120721579529867], [0.07723070914047345, -0.2256368821786387, -0.9711454139140868, 0.9586031282232631]], [[-0.05560850796004244, -0.9721008191581447, 0.2278764824077336, -1.6302094041501733], [-0.9903329999925489, 0.024653169555162634, -0.13650190605498075, 3.1298595146329493], [0.12707573713426298, -0.2332642677800194, -0.9640744465075483, 0.7987431181634024]], [[0.08354931471966057, -0.9964551127016612, 0.00983465203221666, -1.7929098103432852], [-0.9964105325699004, -0.08340252875535167, 0.014493749721185206, 2.833082363026864], [-0.013622136162977447, -0.011010293725983951, -0.9998465936524589, 1.6283335749650203]], [[0.2993701607592373, -0.9207985415355845, -0.2500151050495321, -1.8255569261584506], [-0.9380569332781928, -0.3319448946068758, 0.09930647951237351, 2.222342299200424], [-0.17443249919582096, 0.20479900597993625, -0.9631358525015716, 2.47586290859351]], [[0.3967693644100633, -0.9020907333492203, -0.16972442449777442, -2.1042832234327786], [-0.9063137953491287, -0.4143066134989608, 0.08333867272089901, 1.9958951928042412], [-0.14549699593287935, 0.12075735512377514, -0.9819614479998792, 2.1056904185181415]], [[0.44028725251717743, -0.8792451490041235, -0.1818656185857896, -2.104269190562265], [-0.8863893816266342, -0.4579236667070718, 0.06796896062986307, 1.9026259904805984], [-0.14304194982741392, 0.1312778862652327, -0.9809715170010312, 2.107268540111256]], [[0.4380574408481708, -0.8501611687649682, -0.2921158428461812, -2.0964021346325326], [-0.8741292913353116, -0.4786750347832839, 0.08226902883131602, 1.778487472012813], [-0.20977049493953456, 0.21930845446403896, -0.9528379407083963, 2.453171919145867]], [[0.17998952575391375, -0.98363173076854, -0.008508163383937433, -2.01165979021173], [-0.9819647788720562, -0.18017990929609523, 0.057274543566969496, 2.5810401096850146], [-0.057870058524550544, -0.001954101158475264, -0.9983222114202549, 1.7629298458286764]], [[0.03082424013599533, -0.9832449132257381, 0.1796644284096017, -1.8186790453173134], [-0.9992602332184317, -0.034449794370072506, -0.0170937993466886, 2.937165401350753], [0.022996793869660442, -0.17900461525773598, -0.9835794300350864, 1.1635472957934065]], [[-0.06786790201419317, -0.968291649150122, 0.2404271824530854, -1.5305981168843583], [-0.9964330828959495, 0.05367122081679428, -0.06511920889038225, 3.056339869195723], [0.05015036576802026, -0.24398910271192897, -0.9684803862604352, 1.0099553258740424]], [[-0.11511617964923386, -0.96759509142435, 0.22473985902476085, -1.4312794743313946], [-0.9933400456038078, 0.11324150815781416, -0.021258283796413716, 3.16610169945116], [-0.00488046952562278, -0.22569027422919163, -0.9741868820383296, 1.1847666137500381]], [[-0.1811078055925726, -0.9527182450123332, 0.24398341823587583, -1.192120410949142], [-0.982842812964399, 0.18414619262673587, -0.01049689217359541, 3.2634759734357224], [-0.03492803684248147, -0.24169841820271942, -0.9697225927452823, 1.255998408592785]], [[-0.2285835497650939, -0.961256715571132, 0.15406196008810352, -0.9615947478082121], [-0.9723934250009085, 0.2178153872667797, -0.08371071666653748, 3.377689620178734], [0.04691042306131204, -0.16894372980144143, -0.9845087243742362, 1.1183972319097628]], [[-0.2360860514046189, -0.9716280467835204, 0.014223749007080316, -0.8560071349914192], [-0.9545906458465033, 0.2291593882790096, -0.1903750866735071, 3.4576484206114664], [0.18171426799932644, -0.058522760249587705, -0.981608379822747, 0.9222836478722025]], [[-0.12244268173262729, -0.9815005210844236, -0.147188711527508, -1.1039511112591527], [-0.946672866786342, 0.1600338533375435, -0.2796420016314916, 3.4641724691301032], [0.2980239469919353, 0.10509944289549418, -0.948754886217934, 0.8034959299277288]], [[0.009970025080605183, -0.9801400065544464, -0.1980559672197288, -1.519050551569449], [-0.9434909098527379, 0.05639151492177519, -0.3265653075115001, 3.347241591508786], [0.33124839867559436, 0.19011986902025108, -0.9241909617490193, 0.840003061441415]], [[0.029235434022856527, -0.9954779973147274, -0.09038166993231997, -1.7275861602321456], [-0.9335653159409418, 0.00512011164740675, -0.3583707372663227, 3.4595474070739445], [0.3572129480710138, 0.09485431629070823, -0.9291940423891221, 0.6840951170602402]], [[0.17190613236123592, -0.9849642510527507, -0.017137847142958157, -2.3623909579989086], [-0.8665451645941634, -0.14291801227300455, -0.4781986192853424, 3.101315277971119], [0.46855923785053655, 0.0970559937151107, -0.8780844917824807, 0.16879893999626325]], [[0.3469667469482321, -0.9373113293020834, 0.03258141301605674, -2.9634310902657166], [-0.8170697957591226, -0.31914684554555933, -0.48014814363534103, 2.675149257247393], [0.4604465499602608, 0.1399741509718136, -0.8765821191932975, 0.2307819051318622]], [[0.3364815382595827, -0.9385795014380263, -0.07647675392438641, -2.8336284664927334], [-0.8699457003948015, -0.27872772510341814, -0.40682346739497677, 3.0110142492823564], [0.3605199755562283, 0.20341920936583013, -0.9102999354530995, 0.7070661057143227]], [[0.2701554833347503, -0.9460102583978925, -0.17911059664386197, -2.559693237527883], [-0.9567808176534912, -0.24297830534433582, -0.15978739031072378, 3.444588782175424], [0.10764052115483425, 0.21453702276751088, -0.9707663900586836, 1.6419529572273242]], [[0.39778514426640854, -0.9158855981438891, -0.05404211425881908, -2.9994038291461003], [-0.8107025131893668, -0.32330206341307666, -0.4880954936293629, 2.8620232650085784], [0.42956770608298434, 0.23796921419683148, -0.8711155141455955, 0.1277334756569486]], [[0.5342389731219868, -0.841620569762305, -0.07914250533397452, -3.426730000685187], [-0.8453141441533557, -0.5312467853533878, -0.05675253955525773, 2.3591483570096], [0.00571990313246646, 0.09721969761660688, -0.9952465087120329, 1.621969769840405]], [[0.6369389665647781, -0.7706540293110773, -0.020027979878006665, -3.75426282281994], [-0.7702619688748709, -0.6372537285404196, 0.024580170185351864, 1.8492485655177138], [-0.031705712046885666, -0.0002292769824246768, -0.9994972212345892, 1.500712854136662]], [[0.6519589762934452, -0.7578223925081581, -0.02558739227849292, -3.794146407144906], [-0.7541937079238051, -0.6515859559995834, 0.08141002930997503, 1.7581703005375295], [-0.07836672864516273, -0.033778149110333194, -0.9963521929940915, 1.6032949566945671]], [[0.6570292950534357, -0.7507763478584086, -0.06817170188557228, -3.7512960575305954], [-0.7429614506068019, -0.6601978239392343, 0.11021395636731489, 1.6909985287526197], [-0.1277528408835677, -0.021764851533827775, -0.9915671953447676, 1.8075165230729762]], [[0.6716360685750649, -0.7353736467272866, -0.09016979032937159, -3.7548213396469357], [-0.7257558887677426, -0.6775003336408203, 0.11946416967242227, 1.5918858393196782], [-0.14894086513772853, -0.01479518893387611, -0.988735415101753, 1.898314373196568]], [[0.7059300974631614, -0.701469781104741, -0.09799410029444741, -3.757967559171106], [-0.6925888087611973, -0.7126132920920316, 0.11181698400735879, 1.3828057551222876], [-0.14826813371185724, -0.011065357229794903, -0.9888852908173825, 1.8858081700638227]], [[0.7445547467774527, -0.6537453360832514, -0.13511204461690243, -3.759601315191713], [-0.6415161649518354, -0.7566805370319578, 0.126061790335202, 1.1000869543769083], [-0.18464896197014666, -0.0071833436799021225, -0.9827782865005323, 2.0358257500118433]], [[0.7618052691348678, -0.6262479582003807, -0.16572937810842747, -3.759913033506629], [-0.6122112868321353, -0.7796232824130227, 0.13185172655254196, 0.9543962071117812], [-0.21177835629188535, 0.0010160558053936286, -0.9773171928483142, 2.154220019589706]], [[0.7979207708526684, -0.5908887578225518, -0.11905007064594796, -3.793507767403739], [-0.5817695212592123, -0.8066314352993883, 0.10435493146313417, 0.7926126048393365], [-0.15769168518254348, -0.014007264749772846, -0.9873890464039587, 1.9289163283524975]], [[0.8067268580177976, -0.5570330664876479, -0.19724588561513698, -3.7402458981941225], [-0.5445993781338563, -0.8303966933102853, 0.11769812689911627, 0.6213172299253898], [-0.22935407973033564, 0.012469746537561284, -0.9732631769117434, 2.2360953957826517]], [[0.8832184414817645, -0.3711487200435725, -0.2866597499415303, -3.549036595468773], [-0.34917904874537736, -0.9285025506393892, 0.12632104089747617, -0.29416543957275704], [-0.31304820163003044, -0.011473494069651834, -0.9496679326954435, 2.476978044173749]], [[0.9042663287035069, -0.024457312879378794, -0.4262678109121089, -2.8514007536536807], [-0.013702482944929331, -0.9995061406126897, 0.02827926517204639, -1.6107510700210317], [-0.42674892938849324, -0.019731059886563804, -0.9041548742010566, 2.8456637407786998]], [[0.8645599112054524, 0.1425722093483866, -0.48188102790827964, -2.3011690837168457], [0.17479699427330703, -0.9843502559260616, 0.02237374468690239, -2.2394066357041096], [-0.4711498389360202, -0.10357479799554065, -0.8759509635195029, 2.838914445906486]], [[0.8292332102753195, 0.2393096586859553, -0.5050773903434002, -2.021860140826053], [0.23158799565996716, -0.9695864416723032, -0.07917785291002173, -2.402744455663568], [-0.5086642146275743, -0.05131295533151052, -0.8594345218644992, 3.036662264296121]], [[0.8079447169943195, 0.2869565392984472, -0.5146661819420698, -1.8162436955283014], [0.28686629622151816, -0.954468636888419, -0.08183733431944175, -2.485717380175596], [-0.5147164873725313, -0.08152033948790065, -0.8534760523158578, 3.2006537665777333]], [[0.8843326976088249, 0.2960287785256286, -0.3610022745420351, -1.9891612204451699], [0.24664911433537884, -0.952785964349805, -0.17709635946451285, -2.189935145659566], [-0.3963835192556216, 0.06757121001310452, -0.9155950181384189, 3.0967798038951204]], [[0.8363740730624138, 0.24289766748304015, -0.4914052635455653, -1.9097955725372628], [0.10073417958128981, -0.9493038443741976, -0.29778320322082363, -1.6153077935400388], [-0.5388237513074869, 0.19955684450218275, -0.8184412201491685, 3.8649443824301417]], [[0.9003856914165054, -0.0032848392644523675, -0.4350802414767054, -2.5662219218554223], [-0.08502554802885445, -0.9820202121388822, -0.16854364162761903, -0.9707266958115846], [-0.4267039522605978, 0.18874721926882265, -0.8844762429502976, 3.5103973379621323]], [[0.8744729741429068, -0.022788314095150974, -0.4845386571104103, -2.307706626044585], [-0.24422340071786325, -0.8837388001947227, -0.39920002952428996, -0.29763043148955076], [-0.4191085158231231, 0.4674253157148131, -0.7783711365367079, 3.842374560202728]], [[0.9136519655194485, -0.34989176512709386, -0.2069198844932379, -2.794361364780572], [-0.36962653796768485, -0.9269255395402342, -0.06469363630272813, -0.16386758660850304], [-0.16916355497704566, 0.13559054850649666, -0.9762166228984404, 2.3391440435008084]], [[0.7565582985060726, -0.6119429026414316, -0.23053291493488687, -2.829124430897523], [-0.6312603487901078, -0.7754582102904775, -0.013226342596547619, 0.8369284284888246], [-0.17067487514859286, 0.1555327875396994, -0.9729746343009891, 2.303808939305745]], [[0.497270292006338, -0.8473364434292688, -0.18639530124058679, -2.61507444595734], [-0.8669717599888657, -0.4934555474630725, -0.06972510351178245, 1.8704499110719703], [-0.03289717419080665, 0.19627168495368247, -0.9799975518416886, 1.9225123034583709]], [[0.1294476094736263, -0.9866748009994133, -0.09857055074580509, -1.6059777385554257], [-0.9865358669657793, -0.13817057257841006, 0.08749786319352124, 2.9727336502676307], [-0.09995148619025862, 0.08591699451285548, -0.9912759305371214, 2.1261325751354536]], [[0.06776499936022704, -0.9877832686750554, -0.14032861072258895, -1.3434513743742915], [-0.9716140896765726, -0.033383724007943566, -0.23420415818965878, 3.1327331470848305], [0.22665825730308986, 0.15221609999269115, -0.9620063894275036, 1.046629262016087]], [[-0.1694222223803221, -0.9669125896832603, -0.19072533779161085, -0.564052345644671], [-0.9415252941495259, 0.21598563315979039, -0.25861230973256727, 3.4552636432675543], [0.291249430970022, 0.13575805751621436, -0.9469654263905641, 0.7967758961118122]], [[-0.4218102124963494, -0.8787513625329274, -0.2233208173912781, 0.3474025596815214], [-0.8465466931174775, 0.4699080922850799, -0.2500901461010814, 3.5567248700947403], [0.3247073159102643, 0.08356092179673838, -0.9421160922852511, 0.6340174285675362]], [[-0.5254797374325744, -0.8326368087921227, -0.17489136683170944, 0.6980847998907145], [-0.804020014075148, 0.5532053971261922, -0.21798074584020244, 3.5158690059271795], [0.2782496406365913, 0.026071694132186643, -0.9601548855526832, 0.7130330262554098]], [[-0.6335626340181018, -0.7553769326920867, -0.1673441912130189, 1.131116629569376], [-0.7368395199683326, 0.6550605419609689, -0.16722203257536994, 3.4490749592540473], [0.2359362426353394, 0.017360182098577592, -0.9716134588861057, 0.8515872095261223]], [[-0.6625390260291857, -0.7314699284084403, -0.16122587516415976, 1.2355166631856394], [-0.6987623169801105, 0.6811120213021221, -0.21867244638116867, 3.4091012028754846], [0.2697652004185964, -0.0322204635579445, -0.9623869171862353, 0.672054460138927]], [[-0.6656198653135661, -0.73365438988364, -0.13675317584763472, 1.2442470122615552], [-0.6974078815416159, 0.6767171757018764, -0.23595785825801902, 3.428334776473704], [0.26565474146641077, -0.0616854951713931, -0.9620927491785158, 0.6606124847381842]], [[-0.6387247189260217, -0.7602270458174054, -0.11868265349500587, 1.1179127252721135], [-0.7266048160419694, 0.6466964648495309, -0.23201104209872303, 3.4735406821366057], [0.25313272158591194, -0.06195580004212871, -0.9654456505177541, 0.7120280911309107]], [[-0.6084998131422309, -0.7856595739968509, -0.11165577097919009, 0.9822781437805027], [-0.7479854267627734, 0.6148453520455742, -0.24996598652309857, 3.492611850404301], [0.26503920230106026, -0.06858736658482287, -0.9617951935773943, 0.6448117428723784]], [[-0.5963924807088182, -0.7950222198812675, -0.11070536955831634, 0.9476263417776143], [-0.7767836976011535, 0.6063847702385138, -0.17001352170890538, 3.584484291551797], [0.20229457752263547, -0.015400659656205476, -0.9792036170210423, 0.8585160819407586]], [[-0.5830844314189235, -0.8087339259014662, -0.07721387785154321, 0.8350306263835472], [-0.7726469623344264, 0.5814049319167686, -0.25492151093668286, 3.5324842908235357], [0.2510562037318632, -0.08898169608891222, -0.96387397533541, 0.6618031800136562]], [[-0.5212652186040315, -0.8363525425815941, -0.16969677778612566, 0.5569609957837246], [-0.7668381365143022, 0.5463009159900741, -0.3369192508238116, 3.39359890499257], [0.37448877721630514, -0.045494326082586495, -0.9261146916194167, 0.3538170307131589]], [[-0.5937969435609048, -0.8035450551486223, -0.041479322124705245, 0.913968460618175], [-0.7833896622206435, 0.589126924080663, -0.19806590935616047, 3.6064461755914787], [0.1835914675129366, -0.0851164594508852, -0.9793106562204825, 0.8714450582668928]], [[-0.5721834088968363, -0.8154640130270823, -0.08731889853269079, 0.7718142906624622], [-0.7687437202974194, 0.5703801919293439, -0.28930870909450257, 3.486810790039652], [0.2857258110260229, -0.09841178848294199, -0.9532449217284664, 0.534310214238299]], [[-0.5722278517453783, -0.8142553223254585, -0.09769112422084508, 0.8011896408236822], [-0.7591904731017007, 0.5710081385119878, -0.31237722596996464, 3.447130239563005], [0.3101372458097943, -0.10458477813591316, -0.9449216438116848, 0.44583798720834134]], [[-0.6055056262869568, -0.7902268768832093, -0.0943632321736036, 0.9245785673003837], [-0.7466330694057395, 0.6051055887393869, -0.27638069061735143, 3.4612569284379457], [0.27550316913713396, -0.09689535348905697, -0.956404357093602, 0.5730084823213393]], [[-0.6794760997127791, -0.7255801506399349, -0.10883783770563855, 1.238020851954023], [-0.6963245046901623, 0.6844711128019658, -0.21594323306748675, 3.381060034078351], [0.23118047946811976, -0.07094181233213649, -0.9703210011001113, 0.7397310160664885]], [[-0.7442187412717567, -0.6599300728121079, -0.10310559702600133, 1.4959872683927262], [-0.6353088838051072, 0.7470366112192723, -0.1957521996206796, 3.2736956494610676], [0.20620641914884932, -0.08017855384223174, -0.9752180844332089, 0.827022288451736]], [[-0.7819379484222209, -0.615277969274728, -0.1000303221149223, 1.659896511439015], [-0.5905784377409676, 0.7825716106001497, -0.19697406722237754, 3.180245029204423], [0.19947469436669474, -0.09494574665488992, -0.9752923415568582, 0.8209836002408925]], [[-0.8099599676799899, -0.5778763452662077, -0.10011883108387135, 1.7964996412051892], [-0.5516459161934237, 0.8086231784600173, -0.2044879908560335, 3.077074265194521], [0.19912718022145595, -0.11039694216322213, -0.9737355294216506, 0.8016319315329805]], [[-0.8376317907148885, -0.5317079578915204, -0.12513844612507655, 1.9464599627242738], [-0.5078551087907844, 0.8424228322154472, -0.18001933295400535, 2.9457516951522527], [0.20113719610969497, -0.08723771705480277, -0.975670748287657, 0.8365828755479358]], [[-0.8738938397467557, -0.4353002389432481, -0.21638682683708435, 2.194276776030485], [-0.40401136599562404, 0.8979184256325322, -0.17469206351733518, 2.680499609906081], [0.27034121587175924, -0.0652395806665392, -0.9605516249090585, 0.6102034073827628]], [[-0.8921811382409686, -0.3524654769176583, -0.28245513652305476, 2.402622858923482], [-0.32500344586954444, 0.93522455390503, -0.14045566541104598, 2.4347418453111596], [0.3136647521478496, -0.03351300276527423, -0.948942201562183, 0.5111169477248344]], [[-0.909570876693273, -0.2747387842964467, -0.3117682162676961, 2.64238904088247], [-0.2674198548632819, 0.9612550407461918, -0.0668981902964366, 2.2552042511685304], [0.3180682969054471, 0.02252436554816833, -0.9478001959592119, 0.5873710886320971]], [[-0.837414314460178, -0.32269358827029965, -0.44114182983075656, 2.360423547111684], [-0.3065729322150829, 0.9455078834937695, -0.10967168952915152, 2.3292660919560046], [0.45249342886967536, 0.04340150159119826, -0.8907109556356613, 0.14679115429568282]], [[-0.8651682094439742, -0.25258918675134046, -0.43322358211875295, 2.6701554679525654], [-0.3055940709374301, 0.9505080069913628, 0.056096278425544835, 2.260286604164188], [0.3976131702740698, 0.18092327484766502, -0.8995390683249949, 0.4912759493266056]], [[-0.8686178996244761, -0.21855722552537246, -0.4446748065976024, 2.774577541729804], [-0.31438566666265483, 0.9367713046337903, 0.1536918195994324, 2.217545150199442], [0.38296814103661636, 0.2732988510501972, -0.8824075821102177, 0.6270901847994493]], [[-0.8442746943668505, -0.22200360188741344, -0.4877649446206394, 2.688501177982408], [-0.33013479003580903, 0.9324092881775006, 0.14705080662253828, 2.2134497793272945], [0.4221507560810153, 0.2851794523968052, -0.8605006792971664, 0.49337714716651293]], [[-0.8600068617716734, -0.1908904067808128, -0.4732325541472115, 2.8042458278711844], [-0.3011096074178147, 0.9385640354588215, 0.16861362834581733, 2.116990348288741], [0.41197233162717023, 0.2875037459622182, -0.8646504461522962, 0.522416207601246]], [[-0.8723191726804379, -0.16400706615124, -0.46060931734668525, 2.89843093341088], [-0.28239586283949564, 0.9380455357094952, 0.20080624887344195, 2.062671559258144], [0.3991388701006873, 0.30524130649037123, -0.8645900226042388, 0.5819085779842501]], [[-0.866925364909412, -0.16557878534648895, -0.47013197883133206, 2.871635218149523], [-0.2812090235703915, 0.9412407455853221, 0.18704904146392692, 2.0871350933387944], [0.4115360211928838, 0.2943629132434455, -0.86254772538542, 0.531705795467075]], [[-0.8617564538672741, -0.16803371982834825, -0.4786862053775414, 2.872000091532758], [-0.27983328704510557, 0.9444732284335371, 0.17223139154597542, 2.0791155965839465], [0.42316562440684274, 0.2823738475372316, -0.8609273282614439, 0.4793197444999374]], [[-0.8410333387039575, -0.1852059979520397, -0.5082928894948899, 2.7685003890633517], [-0.2964409535952578, 0.9437273893740864, 0.1466334735887604, 2.120271211330077], [0.452532522831243, 0.2740024687256678, -0.8486088397561217, 0.36594828104591454]], [[-0.8651952701383414, -0.17706244146019062, -0.46913328207919613, 2.897107343335428], [-0.29215350490379194, 0.938379754576204, 0.18463414032603226, 2.10871875803286], [0.4075334024379744, 0.2968035175425984, -0.8636111381123266, 0.5327766118033923]], [[-0.8456560775220763, -0.19745347631147128, -0.4958607901845961, 2.8108844317921924], [-0.32063423808608305, 0.9306655584896473, 0.1762251503279543, 2.208037699604025], [0.4266842906844987, 0.308015816044677, -0.8503333306118246, 0.49423287471264377]], [[-0.830641404924001, -0.21347162186556226, -0.514261337341208, 2.736038328584898], [-0.32512417122454196, 0.9357364214047736, 0.13671731032368423, 2.209567567505843], [0.45202779749860084, 0.28076184982058056, -0.8466661998532179, 0.37705326406768624]], [[-0.8356153805221104, -0.19313811850226548, -0.5142417748649881, 2.754543107020007], [-0.30685487248666515, 0.9405909896434665, 0.1453570687401084, 2.1431893017397274], [0.4556171891688029, 0.27926019656035656, -0.8452376704519208, 0.3775033846571438]], [[-0.8474726223610506, -0.17387825599653967, -0.5015540912405015, 2.8017914627295446], [-0.29611724822163177, 0.9390187909885319, 0.17480928315190927, 2.1243002456896143], [0.44057318308554827, 0.2966648989382426, -0.8472810679366262, 0.44768199847082996]], [[-0.8546016775257734, -0.1788316114527897, -0.4875194637297382, 2.8569644476700855], [-0.3007948515013877, 0.9357657968897465, 0.18402399485272522, 2.15348942592342], [0.42329473193082756, 0.30391055940275613, -0.8534986478039152, 0.49254553357083913]], [[-0.8488167695230524, -0.14977266614201912, -0.5070288357215597, 2.869481007316387], [-0.27684973253907197, 0.942949530200116, 0.18493352613418895, 2.0232602091682326], [0.45040461517339425, 0.29734547578884013, -0.8418558966108242, 0.40835393893417865]], [[-0.8494749704796051, -0.13881451704769343, -0.5090410635552796, 2.8790266827212903], [-0.2702573464603168, 0.9430765651375231, 0.1938235253333283, 1.9985927131931502], [0.4531591786700373, 0.30222032053656933, -0.8386355803576848, 0.406099444701056]], [[-0.8482716537879301, -0.12646929396797957, -0.5142379984629013, 2.917841098947954], [-0.2730963209782006, 0.9364489732540068, 0.22018564885043707, 1.9984324164152274], [0.4537109221167832, 0.3272137499781406, -0.8289014181295513, 0.4238349037791918]], [[-0.8515721858828822, -0.11653998837233301, -0.5111195978837311, 2.9570081345633246], [-0.2671398058657868, 0.9353615338081237, 0.2318083803362253, 1.9743769752434235], [0.451066665086925, 0.33394195930174875, -0.8276603358051354, 0.43382606314327976]], [[-0.8474986498417297, -0.10591923879950561, -0.5201222484845054, 2.9502114234850767], [-0.2566331949161725, 0.9395124355843838, 0.22683867979120487, 1.9156165112712409], [0.46463474018153456, 0.3257261092304887, -0.8234179133234866, 0.3900544099904652]], [[-0.8503155200871212, -0.11153241534248423, -0.5143190027860529, 2.917480436107106], [-0.25972722125620396, 0.938913335535103, 0.22579530307975376, 1.9144112608984998], [0.45771747490946774, 0.32557989600437337, -0.8273405855391611, 0.42042917267209373]], [[-0.8560455872013636, -0.10000316868518473, -0.5071344189522099, 2.9742443140630073], [-0.2648545967456971, 0.9273885159500045, 0.2642017847530979, 1.9020381231995855], [0.4438896205316669, 0.36048565399606486, -0.8203731456156294, 0.48792837807416356]], [[-0.855816488478321, -0.11542624054846262, -0.5042369691340419, 2.9674733557729285], [-0.2809166198377781, 0.9222265622574466, 0.2656765337129517, 1.9487909088340907], [0.4343546831191688, 0.3690189031196916, -0.821681847428058, 0.5215351798572688]], [[-0.8454735689075277, -0.12496336185286613, -0.5191903335706445, 2.927662342991977], [-0.2825270633166185, 0.9296960874956921, 0.23631259676303717, 1.9672693952099802], [0.4531588052465216, 0.3464813748091403, -0.8213390007408101, 0.43736072013366184]], [[-0.8515094257607918, -0.14418262181829403, -0.5041260451574882, 2.8715263459679874], [-0.27498790612034174, 0.9414182710829029, 0.19522625427648851, 1.9965259348468483], [0.4464452366506748, 0.3048655612509895, -0.8412750086832739, 0.4348550198282887]], [[-0.8641548147862623, -0.1601025851658517, -0.477078209840832, 2.8921191579688297], [-0.28040651384629456, 0.9404177194280653, 0.19231926574912994, 2.05936240450886], [0.41786199046370504, 0.29996945712676787, -0.8575603079182149, 0.5131838710098355]], [[-0.8648085612920469, -0.16436448451881297, -0.4744370016607529, 2.890262375975564], [-0.281510199676315, 0.9411427518767538, 0.18708909125882323, 2.079890791976834], [0.4157621432913074, 0.2953551029163301, -0.8601785880775589, 0.5158726352071618]], [[-0.861288929570175, -0.12772170343237932, -0.49180132805045745, 2.938477265338749], [-0.26236982324302743, 0.9406665862903664, 0.2151939806041315, 1.9592964961023722], [0.4351361346191383, 0.31437802071576204, -0.843696037942312, 0.4776229370148504]], [[-0.8569677209989187, -0.11024102297713281, -0.503441398793221, 3.016440443442853], [-0.2520489980563707, 0.9417097435713337, 0.22283191297835347, 1.9988683399501683], [0.4495304525220726, 0.31785165677681804, -0.8348009921768976, 0.38080675867858704]], [[-0.8609904215231976, -0.09922482639570272, -0.49884860215505233, 2.9755981098699777], [-0.25030083309276707, 0.9364625477921829, 0.2457384575837498, 1.885464763625369], [0.442769677144194, 0.336440678886065, -0.8311213404746087, 0.4719964100577598]], [[-0.8618463462045672, -0.09438290389837688, -0.4983098865019103, 2.986207468821258], [-0.24908367577363905, 0.9346424980676795, 0.2537729758443563, 1.8644821020449156], [0.44178976674084436, 0.34283417020115914, -0.8290274626003368, 0.48831433288269743]], [[-0.8682497455929836, -0.08458968764349872, -0.488862929686936, 3.0290638610171885], [-0.2410648780147145, 0.9331505199422081, 0.26667926750937604, 1.8172616317247785], [0.4336243810782203, 0.3493918886808362, -0.8305993042728654, 0.5165651113910422]], [[-0.850645545110502, -0.04447862362390924, -0.5238547590928039, 2.7737334850281425], [-0.2023508348677932, 0.9473532965087613, 0.24814485935092442, 1.6252934606254008], [0.48523839111509315, 0.31708576700083146, -0.8148621479449947, 0.5773453853197823]], [[-0.8602077501531642, -0.08391441320270251, -0.5029920454970211, 3.0011348893611407], [-0.25847410365420276, 0.9220208271128665, 0.28821646745157026, 1.8392227017670857], [0.43958362607880164, 0.37793645712864443, -0.8148191640213553, 0.527838086160659]], [[-0.8543026951266387, -0.09842980047710657, -0.5103709234247173, 2.9718373405258216], [-0.2753270221935041, 0.9185307168909835, 0.2837187920772848, 1.8862695632400697], [0.4408649860778461, 0.3829006352903751, -0.8118036508570333, 0.5238405129135326]], [[-0.8599202022996683, -0.12417351034469645, -0.49509411732071, 2.9234227274709412], [-0.2910340204072195, 0.9161205208842739, 0.2757215809115002, 1.9062203527574266], [0.4193285640670184, 0.3811877890796114, -0.8239292595933767, 0.5985848056373546]], [[-0.8623702304497052, -0.1948770826860533, -0.46726920322004534, 2.9671892906171387], [-0.3282857701586067, 0.9178606093108015, 0.22307029158311262, 2.1417556540730245], [0.3854167079220792, 0.34576700900950275, -0.8555110383479161, 0.562399907784143]], [[-0.8789365408800305, -0.1955084947209366, -0.43502527006807334, 2.804807744394283], [-0.3066405347884415, 0.9302590500517419, 0.20146881203176142, 2.1036437536774364], [0.36529733030848344, 0.31047468220256563, -0.8775895009517324, 0.7157502209047287]], [[-0.8749446725051288, -0.28025975605318504, -0.3948750298409631, 2.611491161873374], [-0.33858659672501806, 0.9370753076839429, 0.08514096691495668, 2.363963121207031], [0.34616605346720863, 0.20819302789971847, -0.9147812451952019, 0.6783674794429576]], [[-0.8667187951584482, -0.3537522513434119, -0.3516502165342084, 2.418780581877716], [-0.3961866595442982, 0.9165536896042762, 0.05445608204708173, 2.515120348205841], [0.30304234179107464, 0.18651723443761342, -0.9345462323178699, 0.7982305606205541]], [[-0.7648729036374283, -0.5384753409479652, -0.35357283333455064, 0.7708590488179788], [-0.5807243967424824, 0.813929216055193, 0.016685511075745244, 3.3116053409884083], [0.27879852278900125, 0.21809066564791696, -0.9352581703721808, 1.9598388390620243]], [[-0.8588876825684634, -0.38658670862938127, -0.3359503913426453, 2.1920398037506885], [-0.4493845225474129, 0.8834982969416332, 0.13222825037059044, 2.469005628768408], [0.245693914509514, 0.2645401217440102, -0.9325518882939737, 1.1688988994279637]], [[-0.8940903417802742, -0.32614844337648374, -0.3069684896179561, 2.4960655385956576], [-0.39831788562220427, 0.8924158312807625, 0.21198312685900816, 2.2814995184534888], [0.2048055729922632, 0.3118031060822876, -0.9278111339646387, 1.2120253524920985]], [[-0.07273494938514036, -0.14742872652831499, -0.9863946460378727, 4.094003880190249], [0.5420430642945014, -0.8360421353389241, 0.08498743664894656, -1.8469722773472304], [-0.8371970757164455, -0.5284868196390247, 0.14072220109016548, -1.0423384432885259]], [[-0.8964949461879734, -0.3505177930735167, -0.27098724729826923, 2.3679513176864764], [-0.4203778701494869, 0.8661200098613075, 0.2704044652117075, 2.3969000043907553], [0.13992590091903329, 0.3563332783458763, -0.9238221349346836, 1.4985791988177335]], [[-0.9097785236722025, -0.3277528649455559, -0.2547176817278459, 3.6340395637614353], [-0.39761565593576564, 0.8642930134045818, 0.30805742506032596, 3.4662343560326137], [0.1191840090767164, 0.3815437674762985, -0.916634892135573, -0.6344287766889736]], [[-0.9844482307978822, -0.04991601079406742, -0.1684341792669353, 1.5011240383371616], [-0.10035772134171252, 0.9467286968152235, 0.3059952653124681, 0.13337564800694707], [0.14418740807025673, 0.318140167996679, -0.9370148477270924, 2.4328372202524076]], [[-0.8988298205574005, -0.3739070828125776, -0.2286885373151442, 2.8458612192294774], [-0.4303325339082808, 0.8518671691407913, 0.2985569232158799, 2.5458055563243045], [0.08317970868445178, 0.36676398345890326, -0.9265879971705481, 1.0386236337768078]], [[-0.8903726987863049, -0.4088442763278873, -0.20020693037434567, 2.2365345043664773], [-0.45048429189409006, 0.8546565301643727, 0.25812035604360034, 2.4921545668230825], [0.06557713025645605, 0.32001339528419886, -0.9451407656143115, 1.593680165570995]], [[-0.8669252725219175, -0.43419743673581707, -0.24477164418053998, 3.1956026464403133], [-0.48473480884549663, 0.8487883207456334, 0.21116475003969662, 3.011561066399516], [0.1160721196339524, 0.30171339462783864, -0.9463066577731698, 0.23343809026126647]], [[-0.8577268537793364, -0.4723447946540392, -0.2029656110503288, 2.0023371735402886], [-0.5103222095635795, 0.8300623314353226, 0.22487278260897353, 2.7852315412084], [0.062256619984912734, 0.2964572834244255, -0.9530147912664645, 1.6080929045951708]], [[-0.9244695631914817, -0.3188825889928797, -0.20897349394061654, 2.5742723438153523], [-0.3468528171176478, 0.9309922225158551, 0.11378314845591214, 1.756646010139383], [0.1582692326072957, 0.1776721026278092, -0.9712792976058486, 1.0956975123447499]], [[-0.873288059924435, -0.43391089707911173, -0.22156104754540515, 2.4223855542513633], [-0.4759785144314905, 0.8569003577262833, 0.19790460006821253, 2.6293907186171204], [0.10398277834818684, 0.27828602251023726, -0.9548531151346913, 1.1562017413502375]], [[-0.9110934299930188, -0.34518392626105304, -0.22529274039471323, 2.3988685593643133], [-0.3857375635130172, 0.9066629528262474, 0.1707888230167035, 2.313792474332126], [0.14531102476617805, 0.24250844732378646, -0.95920506621786, 1.2831710582486375]], [[-0.8795007219638021, -0.41503861610889237, -0.23285494884920488, 2.502710647496099], [-0.4563421709675264, 0.8743307375930564, 0.1652198060058988, 2.670410360445054], [0.13501963954105084, 0.2515724715432858, -0.9583741380587265, 1.0665253455239165]], [[-0.8710628075567791, -0.4240128093252027, -0.24791676591035844, 2.2049292392412823], [-0.46441328770033885, 0.8753199599507805, 0.13466724144767492, 2.5302850652394913], [0.159905858237478, 0.23243946575380317, -0.9593758446309886, 1.0827534437514696]], [[-0.8438966739605955, -0.5018343880995452, -0.18973837408125946, 2.9226866405731826], [-0.5255993203139792, 0.8442603158452431, 0.10473716424638174, 2.660432144102915], [0.10762786889894246, 0.1881137050021756, -0.9762322857940251, 0.20452308926442697]], [[-0.7746297128680116, -0.6000507029354428, -0.19971970821304302, -11.726737817351584], [-0.606683844420184, 0.7942488808796286, -0.03321788887035989, -8.63048199735145], [0.17855957230450625, 0.0954351566674379, -0.9792898498454344, 10.668581486026056]], [[-0.6442041453074624, -0.7436524176634614, -0.17883540161827707, -4.146700655766754], [-0.7540368370007391, 0.6566733050779165, -0.014443643721941783, 2.4743812165559964], [0.12817748481930227, 0.1255438254209835, -0.9837729820868547, 6.382697601765382]], [[-0.4916564035571465, -0.846212605624047, -0.2054220215172002, -3.3161554980270296], [-0.861811427993168, 0.5066417684861858, -0.024396331805551535, -0.14490499431679202], [0.12471985977232622, 0.16504043294947732, -0.9783693638244302, 8.14718783413835]], [[-0.23817451757625707, -0.9517316537093204, -0.1935968969406243, -2.0424166493679157], [-0.9549696392829331, 0.2658030711735324, -0.1318397337775765, 2.50529849069207], [0.17693469762921318, 0.1534782938478267, -0.9721823522839828, 2.700538265346797]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6792590744361463, 0.7068721501307561, -0.197329352012496, -5.455361772084309], [-0.5542448676104957, -0.6703360518487327, -0.493418893354599, -13.531382033787587], [-0.481061052802629, -0.22579048022752177, 0.8471121074067182, 53.856312003836095]], [[-0.7181477335912521, 0.6773360040631415, 0.15962384012898592, 16.47950682026709], [0.41496117898234597, 0.23267745455591315, 0.8795842325092933, 18.65081376452496], [0.5586332004771374, 0.6979091199727634, -0.4481649334603428, -42.63045932390323]], [[0.33367665808200386, -0.9217138258357447, 0.19774607736807318, -1.4008177759910339], [-0.8335665251766184, -0.38645409501364947, -0.39474052306820373, 1.607844236577339], [0.440257579101375, -0.03311881203207115, -0.8972605019354083, -1.3253395133610548]], [[0.441269466715584, -0.8718069189194412, 0.2126827540463384, -3.276418527689942], [-0.7604456629454489, -0.48911765649377825, -0.42718416615494004, 2.285413739784673], [0.4764490019424965, 0.02676965129070022, -0.8787944778603093, -1.8655822688090886]], [[0.6172257309773975, -0.7835785069574235, -0.07097267399353101, -3.5042119148707043], [-0.7861434689084472, -0.6105621086246095, -0.0958767844916787, 1.8886056896205599], [0.031793762155650995, 0.11497232252262164, -0.9928597694245368, 1.5978322246012124]], [[0.5985617090304264, -0.5515631630934748, 0.5809491867632627, 1.8443959087139874], [-0.4602445031034161, -0.8303513549849341, -0.3141522316294666, -2.040888770439023], [0.655666742976693, -0.07933917313033553, -0.7508704400636173, -0.8698878036126276]], [[0.6422006638462605, -0.6621182305496779, 0.38623536364396505, -1.7966773775178753], [-0.6345058305517358, -0.7418881900844401, -0.2168046687898703, 6.394802767612297], [0.4300937785544847, -0.10583648797554243, -0.8965589659702973, -6.625466844712791]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.921238182368265, 0.25212703123080393, -0.29622993007047177, -2.0533692560584775], [-0.18433036620735926, -0.9535320859824584, -0.23832514994394186, -3.5216301184541567], [-0.342552955673537, -0.1649500564555307, 0.9249048337178485, -26.007716879222166]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8299443414725097, -0.5570799154225531, 0.029229401132478978, 1.6155522700241929], [-0.5529453982233287, 0.814592916910858, -0.17518494884636485, 3.0071930621903005], [0.07378195335857363, -0.16155601985521958, -0.9841015576692953, 1.048219878050005]], [[-0.8653753310412295, -0.4999993565516438, -0.03355860356487645, 1.8287483414557106], [-0.48552850029904887, 0.8531380912339267, -0.1908336256614326, 2.8726115639993144], [0.12404681302894835, -0.14884905351957553, -0.9810485958624515, 0.9429941515565644]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7767078014509012, -0.5805605496632341, -0.24428352244887636, 2.595550365049736], [-0.6298194988894862, 0.7203228498580655, 0.2906241400691818, 4.215286948399158], [0.007238092559772383, 0.3795845625774028, -0.9251287315120084, -0.8013194105115785]], [[-0.5902509181098419, -0.7432057988771565, -0.3150380837071234, -0.0686575505622766], [-0.8043426631172712, 0.5744278819590527, 0.15187326531504014, 6.753334060236078], [0.06809356768377488, 0.3430419055208915, -0.9368487162272738, 2.1216085255328196]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5610370447994804, -0.7652523731897574, -0.31563624584339284, 1.0620503497625362], [-0.8266403104924622, 0.5380259470070676, 0.16490566217105446, 6.87432665133701], [0.04362604075081927, 0.35343582964180714, -0.9344409467129617, 1.6736483162207438]], [[-0.7663168421809361, -0.5896005360111599, -0.25520522197868734, 1.1137350271292077], [-0.6415967378392841, 0.722934794987145, 0.2563569936453537, 2.505266967325921], [0.033348513967301124, 0.3601895197423819, -0.9322828897303247, 1.8416744517100292]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8838057589690168, -0.4332596896420673, -0.1765599664263081, -2.9056470373524768], [-0.4678375026714888, 0.8215967179649282, 0.3257405472509724, 1.9778505763132836], [0.003930840534059177, 0.37049274535477456, -0.9288270420978156, 5.891833783503533]], [[0.9672926642384142, 0.24589134749388342, 0.06230848207260986, 3.6795429443307595], [-0.25191375028591156, 0.9023941314284144, 0.34960591239343325, -17.18005751754054], [0.029738260329714144, -0.3538675978260793, 0.934822635092541, -9.33870496690424]], [[-0.9830289603665193, -0.180007267180947, -0.03537579458848972, 2.6872298062198228], [-0.1827850255703523, 0.944670366481754, 0.27237388479528346, 1.4105654088493746], [-0.015610813814965244, 0.27421758231972626, -0.961540961186136, 1.898677667880889]], [[-0.9897030603083774, -0.1311206644355301, 0.057404039702948904, -5.554417508872789], [-0.10098620705506611, 0.9238633291182119, 0.3691589564066484, 1.3718096093575136], [-0.10143785487116702, 0.35956073265666755, -0.9275917427028644, 10.945300410660355]], [[-0.9923529363751975, -0.08637142444062754, 0.08817951410401807, 4.175634916247235], [-0.037054689989371926, 0.8899002036122934, 0.45464775107833794, 0.8219076343469888], [-0.11773954143496267, 0.44790356624043054, -0.8862955464921334, 0.9882320808016704]], [[-0.9953523456965804, -0.09596185183085405, 0.008064174446758932, 3.9105449823778393], [-0.08475137024521469, 0.9126711897875891, 0.39981058586944024, 1.0018507810875659], [-0.04572650388858833, 0.3972689546452122, -0.9165623080386989, 1.2843275890791628]], [[-0.9950545898337351, -0.09072533616759836, 0.04043855373394896, 2.804724463090093], [-0.06598320145057172, 0.9080523675912258, 0.4136267820611991, 0.6805459795557589], [-0.07424675331050158, 0.40891296273075733, -0.9095480243140566, 2.4093355510509133]], [[-0.9954401822075247, -0.09297289753479075, 0.021328009064019517, 2.2182182565356876], [-0.07621374932683707, 0.9096654204571143, 0.40828946500997004, 0.5589708145310217], [-0.057361206927640934, 0.4048022519064917, -0.9126033249946207, 2.7969327481572117]], [[-0.9927947193612366, -0.11869328701239565, 0.016448368509863084, 3.1523879029153252], [-0.1022427873931901, 0.9106679997947288, 0.4002876547883269, 0.8976047300389699], [-0.06249046034807325, 0.3957217428548258, -0.9162419137964737, 1.7949232382156144]], [[-0.9876418377268475, -0.15154657660579393, -0.03996542869281063, 2.9027504762900005], [-0.15594100101322153, 0.9246785211847036, 0.34735002038673335, 1.2773025117415566], [-0.01568453297138131, 0.34928966142549056, -0.9368835188254387, 1.8215926869579442]], [[-0.9909768631107306, -0.1340303653784663, 0.0008473108821951646, 2.85946647119781], [-0.1227440342755387, 0.9100325040255465, 0.39594790524355494, 1.1441891762707606], [-0.053840122854444186, 0.39227121073755666, -0.9182725839300168, 1.9866937557534448]], [[-0.9942630226807948, -0.1061901879824862, 0.012832992865794677, 2.70625199704343], [-0.09358194627974914, 0.9217036355720397, 0.3764370166492381, 0.891562235583962], [-0.051802133741221876, 0.37307646957363694, -0.9263533271869475, 2.3074503312579755]], [[-0.9717396974484009, -0.20983858909411318, -0.10811904055198812, 2.5935944133064393], [-0.23364482629114647, 0.9202824075177726, 0.31383177908024623, 1.4214856672463636], [0.03364603320260102, 0.3302242525016665, -0.9433026489464796, 2.044525042434792]], [[-0.9462058971662873, -0.2801390559780791, -0.16191513049573755, 2.993071034040891], [-0.3166803669737889, 0.9044623909504332, 0.2857644633777475, 1.9001629996596165], [0.06639235905650162, 0.3216673633925834, -0.9445221871332489, 1.591407819632963]], [[-0.8894369912262136, -0.3912525652697431, -0.23626948344698617, 2.4614501215936753], [-0.4531700041057443, 0.8221842345872092, 0.3444561391164985, 2.1452277550300987], [0.05948769635193407, 0.4134422747689094, -0.9085849984545472, 1.8076812054236115]], [[-0.8262066367219268, -0.43294005002540414, -0.36047955076625726, 2.3947093622816307], [-0.557302084977781, 0.7217318042706127, 0.41050893873788447, 2.2371295140646392], [0.08244379610413552, 0.540061214852804, -0.8375779991712134, 1.8956511067952297]], [[-0.7838670076483811, -0.4848051937795752, -0.3879644808545245, 2.27632535052692], [-0.6203871218703472, 0.637580933153042, 0.4567388451808354, 2.2407290017837944], [0.02592939138890879, 0.5987106795139407, -0.800545557041044, 2.0988052312600702]], [[-0.7463663143325345, -0.5312508045860982, -0.4008864021843243, 1.8605440550096795], [-0.6654849898203545, 0.58831625476568, 0.45936228915996824, 2.138179039500892], [-0.0081885989931752, 0.6096364219804351, -0.7926388710134156, 2.3787859868076757]], [[-0.6489750348351735, -0.653073609348401, -0.39028997544561317, 1.5053668058465206], [-0.7605270356569368, 0.5428860256342507, 0.3561929129080474, 2.6279440183808704], [-0.02073721764262093, 0.5279863861348129, -0.8489996135810325, 2.1887071554077817]], [[-0.633733632182471, -0.7089376689493893, -0.30949808559249375, 1.2431093124869366], [-0.7735460632212964, 0.5793162380529085, 0.2569419864542577, 2.851263888680917], [-0.0028585863020864077, 0.40224380402043736, -0.9155281266086375, 2.024958971748917]], [[-0.5864058863700916, -0.7778274115005283, -0.2260810791483782, 0.8697729722315778], [-0.809962628417323, 0.5663089083323256, 0.1524951176620128, 3.031969900508607], [0.009416846489600256, 0.27254125974214927, -0.9620980120239069, 1.8478739333912355]], [[-0.5836813965406835, -0.792695255704543, -0.1759268567212714, 0.779379503490003], [-0.8119804319033965, 0.5692946827263379, 0.12880738498041233, 3.111048139847851], [-0.0019507788935033549, 0.2180316394540654, -0.9759397515516424, 1.845972629515973]], [[-0.5113759739890222, -0.8390151700809935, -0.18587134690624332, 0.4926375075323697], [-0.8591186021771081, 0.49403725264067067, 0.13357552319384725, 3.0867260833865386], [-0.02024452074096192, 0.22799284501321493, -0.9734523213813555, 1.9003813293718415]], [[-0.35836544763697226, -0.8870332541742423, -0.2911120264245495, 0.0600510012876137], [-0.9333402228176346, 0.3333222718862599, 0.13331275833659278, 3.071874937062697], [-0.021218727829008383, 0.3194812499249946, -0.9473550002695309, 2.0107094651906072]], [[-0.4218968849313425, -0.8330105631766039, -0.35790560224928936, 0.46947413789541353], [-0.9006447927879476, 0.33973094496310186, 0.27096465130793856, 2.888495229437094], [-0.10412480832723889, 0.43666495928878357, -0.8935780534570779, 2.4151170000212123]], [[-0.44413785520091476, -0.7929899305619171, -0.4170234233288795, 0.6398052636965138], [-0.8870344038126278, 0.3236496183529355, 0.32927327707054427, 2.705522955996673], [-0.12614092131543914, 0.5161568507415216, -0.8471543976172747, 2.5438041882576328]], [[-0.37873321621136785, -0.7648656428847356, -0.5210966314156268, 0.387270532198207], [-0.925452028459701, 0.30690392627277235, 0.22214527466993675, 2.805024106536354], [-0.00998468617525572, 0.5663837289090118, -0.8240811717719955, 2.2349861052692943]], [[-0.38557840028209445, -0.8227890184417097, -0.41754943224441005, 0.43124709498464386], [-0.9154568904982969, 0.28465160748437, 0.2844506002731465, 2.791076414774072], [-0.11518671310133982, 0.4919265122843982, -0.8629833878103437, 2.4923519541233725]], [[-0.21666760842849359, -0.873586929474485, -0.4357763464315364, -0.2066197022286787], [-0.9761310556590735, 0.20069370626453603, 0.08300721922644463, 2.906752965076295], [0.014943548299518272, 0.44335980074556314, -0.8962191570408854, 2.054140304077195]], [[-0.23577028550419532, -0.8793080342645512, -0.41379917031221936, -0.16858132781050186], [-0.9681636444400037, 0.17568300162307926, 0.17831051714734988, 2.922027655167423], [-0.0840923900119413, 0.4426656343319594, -0.8927349024898509, 2.3716442611389446]], [[-0.20774958053609857, -0.9032895312026715, -0.37537732297880344, -0.3002521642911764], [-0.9780025615176399, 0.1844574815433391, 0.09739829139992012, 2.89175447607241], [-0.01873770135342437, 0.3873544375921703, -0.9217404397256547, 2.091951596404996]], [[-0.2791777206321936, -0.8910391777973761, -0.35792315366959526, -0.050544691278166416], [-0.955894492185511, 0.2224673851684925, 0.1917654357429861, 2.945299241078032], [-0.09124428810625057, 0.3956734084652007, -0.913847379884362, 2.3301813084376004]], [[-0.2606547593479646, -0.9226286596021518, -0.2842805883453724, -0.25889885271741225], [-0.9645347707213074, 0.23617428474133734, 0.11787443869012695, 2.992380711190498], [-0.04161457075171303, 0.3049230455502736, -0.9514673740036996, 1.9360507364803532]], [[-0.29343035033195164, -0.856431397890475, -0.42476333435389035, -0.024934654408287935], [-0.9539924851003374, 0.2336883013787909, 0.18785131399800667, 2.9454851038496015], [-0.06161954134972339, 0.460342305796526, -0.8856003577335473, 2.3204613410889556]], [[-0.2622599093813443, -0.9118675737275663, -0.31578041091158643, -0.18270410516159039], [-0.961227228586486, 0.21795505514499297, 0.16893137352394447, 2.9890206560108656], [-0.08521710482780111, 0.34784065593450164, -0.9336728137435636, 2.260978795747105]], [[-0.32793901153715793, -0.9163677868904048, -0.22962161017990743, -0.15142996083863608], [-0.9446954881237344, 0.3174502109171055, 0.08231523739469127, 3.163774123118536], [-0.002537603335994565, 0.24391687669832707, -0.969792822117715, 1.836893847372915]], [[-0.5494356448705339, -0.8342060592190741, -0.04712454676581066, 0.41336800551027236], [-0.8354622074880469, 0.5477628327635166, 0.044258094198547995, 3.2931106660361635], [-0.011107295120780028, 0.06368775239455794, -0.997908060990605, 1.6589059632052199]], [[-0.6438241904702648, -0.7648084530800077, 0.0236313745405086, 0.7052031315274107], [-0.7648752598609427, 0.6424041703031984, -0.04777780687426546, 3.3474808312328204], [0.02135997701224277, -0.0488355615758114, -0.9985784091935954, 1.4258210102107416]], [[-0.7490286100249787, -0.6612928422332123, 0.04059455844281793, 1.1458638250292252], [-0.6600459620734276, 0.7395007104015789, -0.13220449034024262, 3.235416153206271], [0.05740617836619006, -0.12581922002094847, -0.9903908594886709, 1.2245184360870622]], [[-0.8020744213210026, -0.5960927891705523, 0.03674247353472866, 1.3939614786804668], [-0.591899865478065, 0.7852215101649274, -0.18188383441460512, 3.135126289560268], [0.07956866160510234, -0.1676322363782767, -0.9826333300968323, 1.084773756206824]], [[-0.8372625969903822, -0.5458263167961364, 0.03263396349947249, 1.587870853773078], [-0.5385933407660524, 0.8129231111346468, -0.22152478115468366, 3.0558867273486916], [0.09438515224008544, -0.2030508489909148, -0.9746085346233557, 0.983258477205353]], [[-0.8664490931582385, -0.49832328922012864, 0.030657272972299122, 1.7883705230319256], [-0.48858069428059275, 0.8336706146459791, -0.2574533189766422, 2.9702893072151526], [0.10273691713089314, -0.2380487464714459, -0.9658042866760393, 0.9168277083292898]], [[-0.8789941143111878, -0.47675984292649465, 0.008330616963622112, 1.8512012469864638], [-0.46321774060443843, 0.849621065778111, -0.2521376000825455, 2.946455500202475], [0.11313121494799591, -0.2254863560368356, -0.9676555334650961, 0.9180482747628916]], [[-0.8868358242920624, -0.462084100717492, -0.0007103635160266991, 1.9040660440265789], [-0.4434286130693417, 0.8514624478438616, -0.2799692215639778, 2.934474070691455], [0.129974173833182, -0.24797173987341053, -0.9600087136898995, 0.8365771400088547]], [[-0.8973630527297164, -0.4398056056765298, -0.03620194485252093, 2.006878645878594], [-0.41067426234593396, 0.8623103881702686, -0.2962557082998805, 2.878541447644487], [0.16151223434225428, -0.2509817197907879, -0.9544223250158345, 0.7374232782537947]], [[-0.9136724827421966, -0.4022801279765895, -0.058080056085108925, 2.171786680979742], [-0.3648998863659628, 0.8747906491029172, -0.31873091028672446, 2.7738285117480297], [0.17902700134286464, -0.2700222562627668, -0.9460641172314627, 0.6501936758398096]], [[-0.9094575873010229, -0.4067041764648901, -0.08647895551299095, 2.161145666284423], [-0.36519317432961795, 0.880746968743027, -0.30152731629659535, 2.7643370526310735], [0.19879849678420508, -0.24264478130795505, -0.9495276024320488, 0.6330040884997602]], [[-0.9012869587054481, -0.418909927406714, -0.11043681807977622, 2.1118749273482043], [-0.37784543680727173, 0.8848142441063183, -0.27264735338984464, 2.7753501397420663], [0.21193075272693668, -0.20400545616886437, -0.9557547435937357, 0.6482412596180039]], [[-0.9065486412493624, -0.41296725672398227, -0.08733616617875657, 2.1458971171861605], [-0.37788230944586576, 0.886211651667435, -0.26801841104061414, 2.7616099540707055], [0.1880811560385406, -0.2099689341849054, -0.9594469893748487, 0.7187961622503442]], [[-0.9067240288845176, -0.4133223313229686, -0.0837626758955001, 2.1376475325917395], [-0.3801631340338477, 0.8870603089850445, -0.26191601658722596, 2.766378253804262], [0.182558283747934, -0.20564206440585894, -0.9614488100683808, 0.7443397749577912]], [[-0.9086228735146693, -0.4118002486505058, -0.06946242824237431, 2.138855574181573], [-0.38192585985939564, 0.8866737499008591, -0.260657435741645, 2.764880753146199], [0.16892930857789804, -0.21030981063214835, -0.9629292145611033, 0.7769330221119024]], [[-0.9006175486307849, -0.4275153993724733, -0.07822157245715926, 2.0726584009848206], [-0.39890415113248845, 0.8845668098262806, -0.24169616704247948, 2.8058907911002318], [0.1725210401879862, -0.18647289951398305, -0.9671940593486414, 0.801971392320878]], [[-0.9030626779115448, -0.42225801208754143, -0.07858734625311616, 2.09183579923725], [-0.39425896051672793, 0.8875464073281336, -0.23837207657607895, 2.7798398302932577], [0.17040443602059957, -0.18428116036860792, -0.967989040288009, 0.8027703521447405]], [[-0.8982586000484816, -0.4328311943035814, -0.076083143183476, 2.0621231009277063], [-0.4081529887245525, 0.8858367456646289, -0.22069072890702673, 2.8056001451805055], [0.16291907572214268, -0.167183782909811, -0.9723718206004367, 0.8573808213655635]], [[-0.8996813781713099, -0.4343325215292658, -0.043916722484747636, 2.082046421813246], [-0.4140237174264966, 0.8808303901449593, -0.22961312071705245, 2.770986414386428], [0.13841162949736924, -0.18839608419261009, -0.9722906645035598, 0.8853957127501326]], [[-0.8608334142949341, -0.508620444185348, -0.01646440372518715, 1.8654106095229128], [-0.4937270308724067, 0.8425900237354679, -0.21511780699742486, 2.873227017460041], [0.12328605687280397, -0.17705167510691064, -0.9764493087316889, 0.9496254969954087]], [[-0.6968109619358129, -0.715553623728078, -0.049370992452088605, 1.0736485061350376], [-0.7109812037178707, 0.698162046204659, -0.08411590336679046, 3.3087678952623265], [0.0946583925807727, -0.023511035896781246, -0.9952321437258173, 1.2520824055931727]], [[-0.4135194291161378, -0.9025392695757051, -0.12010224234882637, 0.06192864270709374], [-0.9104405611097053, 0.41132774112879644, 0.043674638683415264, 3.40453338441827], [0.00998330755353359, 0.12740626456981877, -0.9918003717072588, 1.692693193508532]], [[-0.1793665617236675, -0.9783745921690103, -0.10300870804719442, -0.7760457650826021], [-0.9814796639320675, 0.17080330545606703, 0.08674041810526988, 3.15239555981173], [-0.0672703933630931, 0.11665928271425248, -0.990891167552406, 1.9005922115307332]], [[-0.0027104442936311257, -0.9997240507498671, -0.02333400617142796, -1.4780740490114195], [-0.9919225465154434, 0.005646977310743678, -0.1267192698904558, 3.2373449844695705], [0.12681606840637094, 0.022802061300002223, -0.991664132049971, 1.1906867397101017]], [[0.06935304992767366, -0.9015135696926242, 0.4271573926854034, -1.6552532291343554], [-0.9930283163840279, -0.10329811037602332, -0.05678259638521474, 3.355168162398226], [0.09531483266120144, -0.42024134024725046, -0.9023925413155643, 0.46904525643335226]], [[0.25943002494470374, -0.9245980039413847, 0.27895267208757346, -2.392681083964429], [-0.9140401274532813, -0.3283279676357463, -0.2381835239334771, 2.7670789702491096], [0.3118119746936918, -0.19318197839287968, -0.9302978101994183, 0.24568039550614962]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.611540465423025, -0.3582838522475543, -0.7054437896592773, 1.940839785845634], [-0.5683561830410102, 0.8192055122441811, 0.07663927131570586, 2.9931733700827703], [0.5504448277068681, 0.44781135529082045, -0.7046101629435634, 0.3769701631038275]], [[-0.45219959801951487, -0.7459605505685719, -0.48893596773649484, 0.6553348091515432], [-0.7857005959904068, 0.5926061129895875, -0.17746145583673062, 3.644320247060168], [0.42212568864179445, 0.3039092822583829, -0.8540778952448577, 0.633144162336922]], [[-0.21523319899807025, -0.9252374405344537, -0.3124265492596779, -0.5797597186871013], [-0.8844255496150757, 0.3203368652127846, -0.3393755146938526, 3.709224203401392], [0.41408467399449583, 0.20327314485415765, -0.8872507601258913, 0.4817942927067335]], [[-0.051290004586427296, -0.9775549956835001, -0.20434178682725654, -1.2936251688292475], [-0.9311559008642296, 0.1207712911225961, -0.344039218006183, 3.642488118547145], [0.3609958776984151, 0.1726282875278925, -0.9164504627255846, 0.6211253164644102]], [[0.029195656293185324, -0.9871738328160587, -0.15695680124436187, -1.6178525830422446], [-0.9484510880466727, 0.0222152323746021, -0.3161439814920175, 3.5832807758963403], [0.3155758977436218, 0.1580958799393405, -0.935637507536713, 0.7951214632434322]], [[0.25428665248590976, -0.9552576753314849, -0.1510664492460121, -2.4470791613666467], [-0.8977582936633403, -0.17505807533143514, -0.4042087535172161, 3.180481219002199], [0.35967811238133207, 0.23840604854227446, -0.9021054325810596, 0.7607483119914366]], [[0.30733700045425616, -0.9483075522240944, -0.07909964947157944, -2.6889628013889224], [-0.8848644465276693, -0.2542142843909706, -0.3903716291982139, 3.1142958550594324], [0.35008410335669593, 0.18996811313042195, -0.9172530929741284, 0.7078211321055035]], [[0.48436736720705087, -0.8748464800702647, -0.00564711373876195, -3.275526243894436], [-0.7942820482018422, -0.4370378470373036, -0.4220354821117356, 2.5447219501903064], [0.36674825355984564, 0.2089056164052723, -0.9065617253916782, 0.6343126318520439]], [[0.6303148713255533, -0.7703374553227528, 0.09635023566508374, -3.636073706534018], [-0.6752940377792652, -0.6052625449786628, -0.42146792782574677, 1.898982524100983], [0.3829897198693818, 0.20059276301207501, -0.9017102738139089, 0.5660405129653682]], [[0.0062167437142408855, 0.5857259857543533, -0.81048530011943, 0.8182259713994924], [0.31326919436453693, 0.768561511791297, 0.5578311702076802, -0.26056103315117735], [0.9496440195988102, -0.25736797043371007, -0.17871195772820456, -5.676755912265724]], [[0.9099542807381263, -0.41470465083471325, -0.0018054202882241271, -3.97660073837787], [-0.397007442575339, -0.8698478267632703, -0.2928307511430528, 0.41193137300791827], [0.11986783349234044, 0.2671793608257834, -0.9561625864059827, 1.517195158581335]], [[0.975993893215809, -0.21429655722194144, -0.038896091940851155, -3.718862230276466], [-0.21764727509796009, -0.9529992254694987, -0.21076560416008966, -0.44958534262084754], [0.008098397858888143, 0.214171570983074, -0.9767624860398562, 1.809837212584793]], [[0.9040565589225004, 0.353317466958616, -0.24051716323612976, -2.1549671258910537], [0.2906833344140838, -0.9208066781090115, -0.260035114251437, -2.1638077601647194], [-0.31334475799527545, 0.1651721195958787, -0.9351648162463597, 2.775628539122803]], [[0.7886862748064971, 0.5617654620839344, -0.24978696031113037, -1.2933206981581151], [0.4733460486899349, -0.8141205221170784, -0.3363796867491281, -2.4406452086420933], [-0.39232318070880845, 0.1470623713852031, -0.9079951435999447, 2.9975177008793583]], [[0.725946227318943, 0.66088453996878, -0.1903515165992842, -0.8354937540375511], [0.5464121285205287, -0.7223046741150785, -0.423921860202061, -2.362627387145308], [-0.4176551937269055, 0.20373409773958895, -0.8854696813393312, 3.0907627985489374]], [[0.6726290397941792, 0.7346917478694023, -0.08830747668325442, -0.4443776898013872], [0.6365509308183307, -0.6353305365878985, -0.43721621853866505, -2.3464029475970185], [-0.37732358434091773, 0.23787211877716058, -0.8950104847478529, 3.0339028147439677]], [[0.710710276725094, 0.698802296849751, -0.08103241619779128, -0.5707462109303895], [0.5940883344107767, -0.6578855064227647, -0.462866839767002, -2.0674039611631523], [-0.3767624629317109, 0.2808238066054492, -0.8827162829410458, 2.993464215815086]], [[0.7792219816713323, 0.6005473857419831, -0.1793207761489775, -0.8109823664108253], [0.4595205818045792, -0.7419946391414992, -0.4881442311277039, -1.7056571439924135], [-0.4262087964580071, 0.29797112773513146, -0.8541424171987193, 3.0639872641113373]], [[0.7560298951888155, 0.48306407195294504, -0.44166491820047105, -0.709773531607786], [0.27756729568572985, -0.8477123550258892, -0.452039997679599, -1.0949761425002758], [-0.5927690899047449, 0.2191640151226958, -0.7749786710154026, 3.2256061819505164]], [[0.7946605042474423, 0.5065659602136979, -0.3345229602612877, -0.8729698689969579], [0.2826501676169762, -0.7964359767868745, -0.5346013632844879, -0.9306012575391439], [-0.5372369735370939, 0.3302736181294413, -0.7760771684777182, 3.0823582690558506]], [[0.8693026291440228, 0.44678685421930525, -0.21141060962048905, -1.2650340927812849], [0.26778770128846535, -0.785215950149916, -0.5583239728587732, -0.6615792783387625], [-0.41545479417372133, 0.42873933634200373, -0.8022343145684363, 2.814466512915303]], [[0.8746546432054642, 0.4840990113818325, 0.025047999885315086, -1.5358024155415686], [0.41506479976770133, -0.7212316415583454, -0.5545684188707941, -0.7440192656940324], [-0.25040061324389834, 0.49545238559743254, -0.8317610633426482, 2.453290397424268]], [[0.8982026819050639, 0.4360310767337815, 0.05575699365039778, -1.599346411069423], [0.3917732274632343, -0.7365234286573995, -0.5514045495657336, -0.5324283565762263], [-0.19936318732803276, 0.5171171425906589, -0.8323726211122516, 2.2468458440698935]], [[0.7369388667647999, 0.6740779761859168, 0.05039830029386788, -1.0796201764382176], [0.593975345582866, -0.6101663488986402, -0.5242998335985026, -0.6234383592956813], [-0.322667623865685, 0.41631227305089297, -0.8500409965502084, 2.3577869124522306]], [[0.8394055540843179, 0.543144484571712, -0.019808701414483598, -1.1361861454385829], [0.42533062117499965, -0.6791464144875459, -0.5982090022555657, -0.13947564319645156], [-0.3383669287375583, 0.4937147117192679, -0.8010952533679577, 2.171648467712881]], [[0.9882673984072459, 0.14929794727453122, 0.0322129195352651, -1.5627716610756242], [0.13898807921797207, -0.7916537498289933, -0.5949509679099552, 0.4965089704429997], [-0.06332347969491954, 0.5924478570484537, -0.8031162267057129, 1.654572521234016]], [[0.9980602674501486, 0.047629577610369504, 0.040088974469232666, -1.3878545999066627], [0.061999496052948834, -0.8187483626857981, -0.5707952181724238, 0.6446328748807562], [0.005636047064865743, 0.5721735243228074, -0.820113219645617, 1.4842720108647653]], [[0.9737487231993298, 0.2220428019730928, 0.050104073283646515, -1.1519486741554672], [0.21304486549334614, -0.8115081610311443, -0.5441198304296326, 0.6266713862951466], [-0.08015802738713809, 0.5405104057016739, -0.8375101145500361, 1.5793251318507848]], [[0.9045139841329877, 0.41829850294279664, -0.08295067777712577, -0.8182023682823496], [0.3552167476409584, -0.8466740596338326, -0.3961869494803497, 0.6360182753278273], [-0.23595659495604066, 0.32889116616136205, -0.9144151606998708, 1.7833214187714337]], [[0.8203796948621177, 0.5339259829727975, 0.20469538579184118, -0.5637486978704792], [0.5200492918522458, -0.54782531855041, -0.6553137831597311, 0.46631476734923644], [-0.23775174090196763, 0.6440578118939895, -0.7270925970166453, 1.4273943563346785]], [[0.6031035321737719, 0.7581340760071666, 0.247989621307586, -0.4613284829728098], [0.7098430162371405, -0.3682926192400577, -0.6004027306006003, 0.5813472526692891], [-0.36385302222034493, 0.5381387083364828, -0.7602747587622936, 1.4496496848793445]], [[0.5607793720255285, 0.7952350901548395, 0.2304943541544521, -0.3428713201346222], [0.7677181177618801, -0.3951686667983353, -0.5044309828321228, 0.9135971594823918], [-0.3100570714736393, 0.4598291815090142, -0.8321188234032083, 1.610966716836334]], [[0.4930554392814755, 0.848508545005763, 0.19217071277162429, -0.45912118991147755], [0.6388185825378201, -0.20314728573467186, -0.7420525580462649, 0.9645161684839552], [-0.5905989776483882, 0.48863527231549536, -0.6422059001985578, 1.243155269168697]], [[0.4622562630678192, 0.7908870739441782, 0.40101967971982494, -0.36090297792762593], [0.7961579686226405, -0.17103872969971692, -0.5804121311114867, 1.266675618712514], [-0.39045055545260227, 0.5875741563502628, -0.708734770232159, 1.225380797941506]]]}, \"8d9b71b3-da22-41d2-bc2f-a0a1a6fd9c8a\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, false, true, false, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.15814686053711172, 0.9167415779973332, 0.366843903688224, -3.045318872939783], [0.9545264210750822, 0.23702501758199876, -0.18082713432958047, 1.9232303880791877], [-0.2527229351915858, 0.32156495488658693, -0.9125388198958648, 2.5051983051106976]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4068313246258629, 0.8274570332401183, 0.3870440949615787, -3.289589462583266], [0.7878545709217981, 0.5322688199415777, -0.3097984480200468, 1.4282609746203032], [-0.46235640839161635, 0.17889874638873815, -0.8684594349534945, 1.7377770124063965]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.475172929857361, 0.7525440269774594, 0.4559475564045943, -3.352604877125818], [0.7147687959747503, 0.6323339011852355, -0.2987631264273866, 1.1879563961627366], [-0.5131435033512337, 0.183932935801095, -0.838362940554992, 1.3255456043182787]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6719229322818794, 0.5891787415420028, 0.44876272526659666, -3.5114100026796335], [0.4981947655472144, 0.8079125581016586, -0.31476860396645345, 0.6482394616356278], [-0.5480160113126961, 0.012070997333108097, -0.8363807400749417, 1.6351702060246578]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5988121726367275, -0.7970973956355094, -0.07784422761624706, 0.3974887869861808], [-0.7986548192230742, 0.6015697829802866, -0.01625656595992776, -2.3331848652172473], [0.05978680150200907, 0.05243603795233702, -0.9968329851534912, 2.844955045399164]], [[-0.437953512661034, -0.8575257692125164, -0.2699004925603936, 1.2204750904061346], [-0.8590523715643761, 0.48768651838961574, -0.1555341849582787, -1.93956504025398], [0.26500140312361053, 0.16374191557905027, -0.9502435695257402, 3.1612655205169573]], [[-0.3659263615180409, -0.9284199894930727, -0.06429790864290721, 1.2885358277838757], [-0.8172642887190926, 0.35362686060517345, -0.45500233608521756, -1.7779931966642692], [0.44517073166443066, -0.11394896475270153, -0.888165892781942, 3.2073044741017185]], [[-0.39217458159630836, -0.8961678887414469, -0.20756255138742497, 1.428606615892443], [-0.8846857043811974, 0.42926441358589496, -0.18183307645283395, -1.7704122714198638], [0.2520521811318135, 0.11231731129908282, -0.9611735116872705, 3.468915904787849]], [[-0.33947379983156906, -0.9285173077130249, -0.1503766887029749, 1.3589799026828944], [-0.9133519375349286, 0.3636063593071885, -0.1832447916655845, -1.6674118873936408], [0.22482388091372177, 0.07514003426088872, -0.9714979144713408, 3.256991618305827]], [[-0.47091203525919995, -0.8674387895032997, -0.160598261239306, 0.9277232623100122], [-0.8644599133374752, 0.4900466305649514, -0.1120863867938604, -1.923908485214895], [0.1759287164751767, 0.08604793046313297, -0.9806349169708415, 3.185547396949726]], [[-0.7607311805717429, -0.4667042281410983, 0.45108229220525203, -0.004507359192699326], [-0.48376344038310887, -0.055653556663119996, -0.8734275100885267, -1.4960279671109014], [0.43273664584204213, -0.8826606624665942, -0.1834370471835296, 3.349353276964455]], [[-0.6575536338084833, -0.7492865100431221, -0.07869526372442923, 0.2309175194715484], [-0.7534065681003062, 0.6541397458230742, 0.0669308305479822, -2.4219325181068], [0.0013273313745927537, 0.10330013940901626, -0.9946493449399643, 2.618024195622778]], [[-0.6899378149822978, -0.7204748650787398, -0.07001271489682857, 0.22685340387094283], [-0.7195473946833748, 0.6720511785512414, 0.1749250131120617, -2.424246862902875], [-0.07897694766082373, 0.1710648479310085, -0.9820893337881849, 2.361185903378189]], [[-0.5845081999470992, -0.8055001826195307, -0.09756853998346461, 0.6789075613183441], [-0.7973422619031851, 0.592499511610281, -0.11484618463271179, -1.93511429159553], [0.15031793498353663, 0.010666983710548479, -0.9885801605741462, 2.7494640856879107]], [[-0.4275721775607941, -0.8876435428186458, -0.17108762044134987, 0.8076058871717379], [-0.8276852698165489, 0.46050944531657695, -0.320730642288705, -1.3620793348894817], [0.363481948801625, 0.0044712041534162306, -0.9315905115600903, 2.4773193789179526]], [[-0.3274307479226503, -0.9447719096690743, -0.013969395658506245, 0.850505706797683], [-0.8578124531555991, 0.3034268858526305, -0.4148372212723296, -0.8823832604694217], [0.39616524396517505, -0.12384734006842854, -0.9097884016802961, 2.8450919522928038]], [[-0.29340410276300516, -0.9470534053498417, -0.13039892598140634, 0.918488816037875], [-0.8790836808988355, 0.32088031928592226, -0.3524878759224479, -1.0674058606371735], [0.3756672922403418, 0.011210178867126136, -0.9266867957571083, 2.5253111297138435]], [[-0.20980474948755462, -0.974827089077044, -0.07545934994446718, 1.0432325962196403], [-0.8831764931428995, 0.22206015628314307, -0.4131447312399328, -0.7683131917000174], [0.4195011907638341, -0.02003580278109976, -0.9075336454119166, 2.4430516530699657]], [[-0.10141920875671082, -0.9936086452494772, -0.049558088952882384, 1.1758021162310772], [-0.9332517548995485, 0.11227774715312791, -0.3412255404730598, -0.6152279790495723], [0.3446089175748015, 0.011643349162386796, -0.9386741321396939, 2.25765281534335]], [[0.09139738699929131, -0.9941115785846634, 0.05821242971746554, 1.229679087518552], [-0.9438838520617826, -0.10511403648427112, -0.31310431672366734, -0.20379858390745337], [0.317379570020997, -0.026328855992855366, -0.9479330144453223, 2.2804085632231135]], [[0.2034988031911843, -0.9786881543056137, -0.02752696353808244, 1.4184131884435396], [-0.9457929131985688, -0.18923513045504659, -0.2639428550747791, -0.20215836619903294], [0.25310867713912927, 0.07974686215477553, -0.9641454431429665, 2.032489188379181]], [[0.3055336268155309, -0.9477710423028692, -0.09153826662702799, 1.4741659899333792], [-0.9183580799237222, -0.2679202872709215, -0.29126818691281947, 0.03245839668748021], [0.25153059440903425, 0.17305713230260086, -0.9522518516839115, 1.7217143445443224]], [[0.29959119755583, -0.9540424663533462, 0.006934460432371725, 1.399106323968212], [-0.9080091758178561, -0.2873516693386952, -0.30487432617202004, 0.26963416044725], [0.29285568285017366, 0.08504111077996288, -0.9523673443055832, 1.927043937607351]], [[0.28510290654395876, -0.9550383812947203, 0.08135123191536034, 1.2648766766879365], [-0.8879999876677513, -0.2951285551947629, -0.3526402668594798, 0.4462386608473101], [0.36079406117931023, 0.0282988721084787, -0.9322160797020872, 2.0721895590071284]], [[0.28445317727940167, -0.9585368106405602, 0.017133959923970626, 1.3981041796070621], [-0.8863571857992075, -0.26975970053625, -0.37629860901776124, 0.5150220392362755], [0.36531812043445444, 0.0918525264411145, -0.926339993883791, 1.8733188115283765]], [[0.2812985313327516, -0.9564213642311314, 0.07828991194464247, 1.3456406183805005], [-0.8754688099002179, -0.28918449828787185, -0.3872036787556242, 0.716391662788987], [0.3929700995774798, 0.04037945012322644, -0.9186642481591475, 1.9362488801034685]], [[0.2850743469205328, -0.9556752261735382, -0.07360352441281809, 1.3640672906480493], [-0.8841039387289173, -0.23250667370556022, -0.40534043988527796, 0.692516550313057], [0.37026050593041415, 0.1806253270184796, -0.9111979197669521, 1.6457434572738785]], [[0.3036500274670124, -0.9527663534805257, 0.005739032558239571, 1.400696267863402], [-0.8707601632585498, -0.27994928522350493, -0.40423401116777957, 0.8131853188675503], [0.3867472028356851, 0.11774834766683798, -0.9146375936514435, 1.7364056612921923]], [[0.32084402054906336, -0.9459570309909582, -0.04716365122298527, 1.4074857850757523], [-0.871343463818947, -0.27528590559175514, -0.4061751324767762, 0.7845850920902958], [0.3712407339421572, 0.17141460177388207, -0.9125773127580972, 1.6439966709704432]], [[0.3703170440399888, -0.9243619916862721, -0.09176162171231202, 1.3364180619988337], [-0.8654092462923281, -0.30742061687139266, -0.39567587840827134, 0.7978038031814386], [0.33753832867576655, 0.22593687757469072, -0.9137945086432558, 1.59858628364506]], [[0.37550573645462426, -0.9226801364751386, -0.08750318647848773, 1.328084040994824], [-0.8738836750666633, -0.32102600853527863, -0.3650611240544372, 0.8485698322889127], [0.3087438490750086, 0.21355015241887904, -0.9268622163300335, 1.6076675598256487]], [[0.306221146506621, -0.9513389070229344, -0.0343932175956117, 1.3715319750941735], [-0.8849660434410399, -0.27117119709086224, -0.37855156032516935, 0.7660284118116311], [0.3508043776643645, 0.14635732251143893, -0.9249409833923463, 1.7162083454703505]], [[0.2785292294409899, -0.9592054161525625, 0.04844004511349456, 1.2771196923983923], [-0.8882718590722156, -0.2764555851054068, -0.36680432637090965, 0.8362625981305027], [0.3652322175375522, 0.059137797453205077, -0.9290361393320422, 1.934937226456316]], [[0.2807566321806993, -0.9596431938365548, -0.016144782740192404, 1.3678306816874133], [-0.8983596800576465, -0.2568321280958606, -0.35635255467650934, 0.7593694471484744], [0.337824804792772, 0.11455216497704473, -0.9342120759045014, 1.866757110351526]], [[0.2836825773828849, -0.9489294088890692, -0.13804771723880555, 1.3085756053518953], [-0.8947970430211241, -0.21019645730391542, -0.39389808470914917, 0.7413680910963864], [0.3447643355830999, 0.2352667130775728, -0.9087283018744485, 1.6014780558338173]], [[0.18243968484421147, -0.9802211171608579, -0.07669630281744527, 1.3957743793579829], [-0.8851881883825188, -0.12979579311976064, -0.4467604763589628, 0.6744257538996354], [0.4279691957863558, 0.1493975018543902, -0.8913600585047814, 1.7050541183965144]], [[0.1712241280995294, -0.9849319965166531, -0.024315842454562975, 1.4184697387369496], [-0.8842342097989685, -0.14273986034432082, -0.4446967444113761, 0.7793690474969315], [0.4345252123614337, 0.09764371206894376, -0.8953510737781282, 1.855769668817004]]]}, \"efe7dfaa-07e0-42d5-85eb-1e6f93409ab5\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, false, true, true, false, false, false, false, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, false, false, false, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9938707526044285, -0.10627879914933716, -0.03042604096628676, 4.549269760034359], [-0.1099517054028259, -0.9217745816369289, -0.37180941774930193, 2.705862273133096], [0.011469507248243012, 0.3728759009368125, -0.9278103323977606, 0.8417847807668181]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6653092774010602, 0.6947309634380632, 0.2733357895419106, 0.12921821616742235], [0.7284070896583505, -0.5237907199923718, -0.4416632126239679, 4.453902115249573], [-0.1636663592175586, 0.4929423598051734, -0.8545297846009675, -0.12433374166602773]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7102551513325762, 0.6968691666696297, 0.09955392785176595, 0.40002124894495206], [0.6239810110539187, -0.5577815409729496, -0.547291010700862, 4.680440988692179], [-0.3258608872658214, 0.45083602018363317, -0.8310003399850775, -0.8158199215262124]], [[0.6700563614416346, 0.739985431466732, 0.05870292759814011, 0.09703872794730724], [0.6344696358785338, -0.5298690371570286, -0.5627495753978358, 4.7790562331425805], [-0.3853216236337624, 0.4143191579920944, -0.8245404063361378, -0.9744558300464605]], [[0.6671827713721684, 0.7428855589700055, 0.054664392962657266, 0.12482435802589391], [0.6493664439927301, -0.5440984639751933, -0.5313003697684314, 4.9321598832622], [-0.3649525599312735, 0.38997167560434176, -0.8454180748162133, -0.7802577067096281]], [[0.6070190974387997, 0.7946654115592515, 0.0058905870633509105, -0.15712616551962819], [0.6399250795639786, -0.4843960561056783, -0.5965369673157737, 4.870874085802761], [-0.47119391750066275, 0.3658788658840929, -0.8025639834989785, -1.1382621979934886]], [[0.38714090036255877, 0.9209161485600768, 0.045115081599637286, -1.4440048708277238], [0.7148727844104783, -0.26890119086213704, -0.6454835796998513, 4.545176310522676], [-0.5823047530079735, 0.2821446382162866, -0.7624405404686478, -1.300550423260335]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.10559152694100327, -0.9879307179026363, -0.11332839918859311, 2.2140957840930455], [-0.7508032528397389, 0.15393156984389922, -0.6423391217500767, -2.535642038201713], [0.6520313680824983, 0.017261762070382547, -0.7579954660858408, 3.911457394583115]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.957552804957863, -0.2530236462185268, 0.13810018164944826, 5.556802529071677], [-0.20401998479758135, -0.9333335288973351, -0.2954054326501821, 2.42243409462652], [0.20363808956215312, 0.2546911036733093, -0.9453380190117963, 2.0516632897486424]], [[0.8619572801229813, -0.489308206638996, 0.1326918466173481, 5.621362301048152], [-0.43655920260113457, -0.8494291819687424, -0.29645594519957685, 0.9638702426632582], [0.2577706536191693, 0.19760451344957336, -0.9457836678633774, 2.4416752719752557]], [[0.7054968531307025, -0.7022948523586378, 0.09516370407479419, 5.520428168148311], [-0.6345009722451543, -0.6857206754552381, -0.3566450216576217, -0.3489851843430316], [0.3157256822664729, 0.19123047770627624, -0.929380545284653, 2.717254864756766]], [[0.6295152839057262, -0.7764252604993045, 0.02956893957652132, 5.327091367186952], [-0.6966503119315894, -0.5808692206309533, -0.42103359890774567, -0.9769413642514695], [0.3440768085976038, 0.24444787457078937, -0.9065629522559986, 2.69028030611112]], [[0.5214123564991696, -0.852987879121338, 0.02325580706112898, 4.823377964843085], [-0.7851087885034939, -0.4902390645863418, -0.37851003919062026, -1.637622701263355], [0.33426538065519007, 0.1791014729855404, -0.9253049862990315, 2.6863768336121736]], [[0.46124903876018797, -0.8872574085709741, 0.004859545114722641, 4.501164633127001], [-0.8334829431344697, -0.43515883569284386, -0.3405039958977728, -1.8876237783951966], [0.3042293670024391, 0.1530067928373369, -0.940230510884925, 2.5339564259749707]], [[0.41424768001240886, -0.9089563682616368, 0.04687408880130425, 4.272640333991677], [-0.863628106199682, -0.40880282810912594, -0.29500295237832985, -1.9697309132476404], [0.2873070722872788, 0.08172250807822813, -0.9543458900666552, 2.560041493851855]], [[0.5194827932132879, -0.8543097328824107, -0.017102861097040623, 4.510354311146583], [-0.8128428667954286, -0.48789798833453146, -0.3181855227361965, -1.513366414540443], [0.26348453741179917, 0.17919384275555192, -0.947874182190542, 2.2196579589377383]], [[0.5646090409920257, -0.8253584185485036, -0.0003343070131513748, 4.584433375817563], [-0.795998811085361, -0.5444176358875008, -0.26456630640608153, -1.1478556013302208], [0.21818002562278171, 0.14964263652374601, -0.9643674391814897, 2.0201635992367235]], [[0.6106892255800139, -0.790818531656156, -0.040800977312862544, 4.667431708408728], [-0.7770553144483423, -0.5885478117137759, -0.2231513199927655, -0.883677748619963], [0.15245887330054309, 0.16798072304918588, -0.9739295501399481, 1.7969304461709703]], [[0.6504635728648984, -0.7558264048065284, -0.07499057389478617, 4.7090137236635705], [-0.7513868210872496, -0.625914091210654, -0.20892437751573892, -0.6378300570714994], [0.11097290422544234, 0.19224462598777417, -0.9750523156767495, 1.5797475677515915]], [[0.6938620307207916, -0.7096225306702509, -0.12243915341575959, 4.7183421156602305], [-0.7186571075544296, -0.6715933473057585, -0.18026185846192694, -0.38640501041221803], [0.0456885553013019, 0.21306862701907936, -0.9759683991270847, 1.287428945583988]], [[0.6981951081283196, -0.7056509975120615, -0.12074875028718343, 4.670040133068391], [-0.715315975829798, -0.6807684900368516, -0.15772545037377117, -0.3588284952445688], [0.02909717698244807, 0.19649664802020828, -0.9800726613922431, 1.284714682051581]], [[0.6433409300252511, -0.7593638347236694, -0.0973602293958261, 4.501549879236227], [-0.7636896042364364, -0.6276110001085867, -0.15127002652176194, -0.6919671422159575], [0.05376463647640055, 0.17167119460312188, -0.9836861109155184, 1.4268094501297102]], [[0.5106634665246153, -0.8558997356339456, -0.08159942707400056, 4.134963208194998], [-0.8573474325991387, -0.4997844890107284, -0.12316998156998456, -1.3939714728732648], [0.06463902670004015, 0.1328574690637563, -0.9890251205814968, 1.5950654057689462]], [[0.18502117565011256, -0.9821138409177613, -0.03492231433929305, 3.131348304239154], [-0.9693727898122543, -0.1765502506083142, -0.1707231776348732, -2.5465098823914603], [0.16150405237224608, 0.06544014431450823, -0.9846999688125512, 2.0594005913100917]], [[-0.41787555479491617, -0.9082974513731773, -0.019384543683864955, 0.6717481656731428], [-0.8933196701773781, 0.4146824217926737, -0.17325835024708966, -3.5968291991592185], [0.16540854747872386, -0.05508383506214528, -0.984685626753953, 2.292112662914724]], [[-0.6819683114079927, -0.7235299143632291, 0.10688164134625364, -0.6432777332790932], [-0.7308888691269898, 0.668828385877338, -0.1359045666303554, -3.638687636796112], [0.02684554379409748, -0.17080120979153837, -0.9849397258269899, 2.079232546404595]], [[-0.7991723617524329, -0.594952249727778, 0.08576337653622482, -1.2662406042248802], [-0.601037686894338, 0.7929977296675095, -0.0995404424084966, -3.4700069481634377], [-0.008788352732012665, -0.13109699190306096, -0.9913305924716671, 1.86078358537383]], [[-0.8539463114177709, -0.4727069083706278, 0.21754051575434535, -1.6372698981454066], [-0.5020229244724644, 0.858410348610234, -0.10537863494547078, -3.262354668106339], [-0.1369258212321472, -0.19919802252416924, -0.9703460554371119, 1.6936459681511589]], [[-0.8586797662117986, -0.49101261192380913, 0.1468866026232791, -1.4364450797638006], [-0.5039769446599531, 0.8610456931234122, -0.06787896290340026, -3.1081683565906197], [-0.09314664969642665, -0.132313753198152, -0.9868215504157524, 1.648452324905383]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.14869962751812293, -0.9853606799373282, -0.08338315902757182, 2.8060761028887358], [-0.9124619003413035, -0.10421645566321913, -0.3956667926355877, -0.6654821457062894], [0.3811846025241685, 0.13491946042896164, -0.9146010266755933, 2.0812733607672356]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8350374239617026, -0.5432985920579392, -0.08682822381728614, 4.623113716326354], [-0.5112115580310532, -0.7078071793559382, -0.48751588670283746, 0.7218115525855364], [0.20340905466293, 0.4514816017514465, -0.868786003432998, 1.2317094470376564]], [[0.9763568842195772, -0.12936601576110893, -0.1731810284157487, 4.020105778691532], [-0.20831376240122154, -0.7770435803952119, -0.5939769781404304, 2.248500242908735], [-0.05772877126084756, 0.6160095032811478, -0.7856205705275457, -0.3663644936568037]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.21472114772962347, -0.9763146836892662, -0.02654179968278389, 3.3773966723302995], [-0.9235480277286852, -0.19412536266913982, -0.3307179826484047, -1.9035146201876227], [0.31773238613041743, 0.0955247715584961, -0.9433563212395243, 2.303659551534993]], [[0.18652921517979626, -0.9822508093285822, 0.019753466980622997, 3.2279517773362993], [-0.9343387723080552, -0.1835738495955722, -0.3054696389275676, -1.6286417626187688], [0.30367402003840505, 0.03852258192291194, -0.9519969013792571, 2.482226630965882]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.32039521534896453, -0.9472836214921986, -0.0008040112662239252, 3.405185059841319], [-0.8312362169542474, -0.28073780173995155, -0.47982563322295646, -0.4952208418784539], [0.4543052471687756, 0.15440216036974688, -0.8773635023569608, 2.5378274951815185]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.371476009955638, -0.9283385432576059, 0.01389687482079785, 3.1973216058987712], [-0.7957002990402269, -0.32604184580235174, -0.5104485761495364, 0.2305039155604313], [0.4784000503080369, 0.17856165290493306, -0.8597959804378746, 1.9919951087533943]], [[0.33643939731550665, -0.9416834992524091, -0.006381157396262993, 3.105342994518419], [-0.667964438108478, -0.2338591526762156, -0.7064937410423304, 0.31405996648393486], [0.6638012062028836, 0.24195471465813612, -0.7076905218372623, 1.7300320966814815]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9965532871112439, 0.06057188922043063, -0.05667973345070147, -1.285947871342276], [0.08101253785145747, 0.8576170558152497, -0.507868048104672, -1.1569011471595028], [0.017846978977991187, -0.5107093418090678, -0.8595681785235584, 3.0474225057906583]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4717624684413254, 0.8776743311744819, -0.08442713880958724, -2.9224886732473663], [0.8134326358472603, 0.3962734023552581, -0.42578719746414, 1.3530339681472583], [-0.3402462642098014, -0.26954620936532186, -0.9008758630954989, 1.634160722738584]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9739076481516107, -0.08210184138721988, 0.21157310914345026, 0.9968829246620398], [-0.18314536347215954, 0.8348787075107182, -0.5190715938903642, 0.16929808387303502], [-0.13402115023550984, -0.5442764292030845, -0.8281313301062161, 2.232194795206335]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8238223323930925, -0.5030437861926396, -0.2612732550862785, 4.609552002106302], [-0.5330965710380806, -0.5308891473945457, -0.6587600163383728, 0.35389936818770834], [0.19267799718142806, 0.6819850895376426, -0.7055292531500642, 0.30304828420506635]], [[0.8274432849076805, -0.5116348685388449, -0.23144626062312154, 4.7026879217121085], [-0.5402100802317987, -0.6127058798846376, -0.5768574988424311, 0.46445205627799385], [0.15333192582479524, 0.602346466786376, -0.7833696793167506, 0.5478157760544213]], [[0.8894832165037836, -0.330966280463113, -0.3150887632945606, 4.488805837442157], [-0.4562860828063256, -0.605610689122481, -0.6519499243483756, 0.8907554625822862], [0.024952318436220644, 0.723669133248756, -0.6896958513632307, -0.635002561763892]], [[0.8411662148839963, -0.4655836698622645, -0.2750840695047897, 4.739718665195466], [-0.5391847371735413, -0.6830705349949098, -0.49264029821043537, 0.6704727615877291], [0.041463455437641294, 0.5627135066615634, -0.8256114650874328, 0.0900565255752736]], [[0.8042902284912039, -0.5381656803772845, -0.2519820009794781, 4.802602929410571], [-0.5873098750144568, -0.655351447620465, -0.47495430392013915, 0.42785627808386417], [0.09046733700109885, 0.5299926231239593, -0.843162784028158, 0.2985030526010811]], [[0.7811012911783197, -0.5283553541614918, -0.33274824214178134, 4.721524762596632], [-0.6213179716646096, -0.6047616256415469, -0.49822420077508156, 0.1996623112435176], [0.062006056205313714, 0.5959060294041988, -0.8006567636094668, -0.15049774821672077]], [[0.7214794784472776, -0.609986537176432, -0.32769465458403535, 4.7569645195829775], [-0.6857881467838586, -0.5640510129935166, -0.4599359438788719, -0.18879024705774894], [0.09571823185896114, 0.5565634547870468, -0.8252727675655492, 0.16005913630543073]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.13432785147968496, -0.9904520258384542, 0.03099698097159609, 1.2655900434642413], [-0.5599627989155143, 0.0500619656495529, -0.8270039077453057, -1.1423172058480016], [0.8175559260060163, -0.1284468143155163, -0.5613410048665965, 4.601848926467997]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9409608328055339, 0.09882099757238708, 0.3237701678115427, 0.9576901193788274], [-0.22875593923646567, 0.5193868896941513, -0.8233516739995602, 0.24974764044093714], [-0.24952641421292193, -0.8488060256929341, -0.46611683015892846, 2.125491392206906]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.10239810210024747, -0.9907060841777188, 0.08953258322821883, 1.1854059667921821], [-0.5658585310567986, -0.01601187709099705, -0.8243468581988196, -0.32482946420420905], [0.8181190326086476, -0.13507432977910122, -0.5589599036766566, 4.683847013163908]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5508509711115632, 0.5081289805133234, 0.6620937598164917, 11401.205304789502], [0.41920237665096904, -0.8544247026974903, 0.30696546195050123, -9254.966599752564], [0.721687311122779, 0.10845905486770593, -0.6836695534990405, 1157941.4941327763]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.014480558263816667, 0.8954575423071993, 0.4449113432556186, -98531.51620680362], [0.20908637112529838, 0.4378328169951088, -0.8744056917539945, -254417.83194531256], [-0.9777899584481435, 0.08036301566814275, -0.1935680316340993, 803874.0323078486]], [[0.07976079784893819, 0.9715277903497884, -0.22309631934336804, -2905.7970716053837], [-0.505716421068794, -0.15342899422096257, -0.8489466680503044, 370.08558334513697], [-0.8590047244269793, 0.18053613574683874, 0.47907993811234484, -11564.306296202196]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.965582068452531, 0.095348216855525, 0.24199170776165727, 1.1646964931504522], [-0.15154283974044408, 0.5499198884093378, -0.8213542987379214, -0.11966183212163982], [-0.21139072071955675, -0.8297570932955816, -0.516543443787, 2.3833252348492984]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.25671385749512327, -0.9664344925020847, -0.010117661400318334, -8660.80828173344], [-0.793797722403452, 0.2168051683386179, -0.568225918881527, 261.77912570562705], [0.5513466888238884, -0.13784009098916575, -0.8228103900893771, 23181.63930485682]], [[-0.21254522356035385, -0.9766316842976035, 0.03186033847444211, -1479.5722911717726], [-0.9404080665254333, 0.1955872096214958, -0.27816957390479213, 189.92369651847548], [0.2654377447831713, -0.0890853335768783, -0.9600034411323333, 1104.5975861142579]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.003493252630670317, -0.9962089646415764, 0.08692235589200588, 1.580193826381171], [-0.9603743223466643, -0.02088266566031024, -0.2779299826432995, -3.0043304616223305], [0.27869151074843196, -0.08444887827957166, -0.9566605609065726, 3.15021533317708]], [[-0.14970529218210651, -0.9880905673654926, -0.035571845271355526, -1430.7789091887048], [-0.9593989254066381, 0.1538682602803034, -0.23638582953912674, -56.59930829887253], [0.23904398637334195, -0.0012606195507948587, -0.9710079213977043, 1117.4405807271305]], [[0.09714369830529254, -0.994966917427604, -0.0245750911327271, -188.89395184434582], [-0.9059259281615638, -0.0781713176577469, -0.41615797214550726, 10.86708801438223], [0.41214234745313355, 0.06269033673751634, -0.9089601790593236, 202.12519981610714]], [[0.417960834308787, -0.9023146032149875, 0.1055324490802822, 1.2750681114253901], [-0.7875274267023035, -0.417778813925572, -0.4530578493157248, -1.2668632750320523], [0.45288993494617497, 0.10625073863235848, -0.8852126791706766, 4.7203619472380165]], [[0.4902637970275417, -0.8566605963830992, 0.16054292861627462, 3.060521879837755], [-0.7858474587988008, -0.5141414998138061, -0.34366013686297275, -1.2683454244224637], [0.37694187990140393, 0.04232187110422897, -0.9252695166288754, 3.1947956315626236]], [[0.521101638964461, -0.8493217567825148, 0.08429493059736985, 2.8961278269174198], [-0.8167260601776766, -0.5248910108650424, -0.2396830601851628, -1.6911499476120553], [0.24781368907952372, 0.05605336893476534, -0.9671847782796524, 2.9458661811540976]], [[0.6400895672603987, -0.7562206214888294, 0.13570452284078133, 2.8822316359311957], [-0.7625106602746938, -0.6469211132779527, -0.008400366817298575, -1.2138250937260424], [0.09414265160832326, -0.09809915815267314, -0.9907137408544867, 3.042764861440674]], [[0.41573692511058885, -0.9090499468101754, -0.02812478095932046, 2.9263750660950856], [-0.8698735499139805, -0.38841298223184767, -0.3040647338870654, -2.315389231993192], [0.2654860001198598, 0.15087594055441522, -0.9522361231869847, 2.55077563409476]], [[0.4308464762029365, -0.8990435475473645, 0.07805135205082905, -87.38032284359059], [-0.8482547452752237, -0.4329811473929692, -0.3049446066424746, -78.35588258197848], [0.3079532449278264, 0.06517687945673797, -0.9491663570326883, 91.59865615731584]], [[0.419025721733033, -0.9053865821964505, 0.06850241824009523, 2.330958676742909], [-0.8049959474923921, -0.4053413844350817, -0.43322036723251767, -2.2225681992762194], [0.4199987726731314, 0.12638630797234976, -0.8986809957433072, 3.9110451419313064]], [[0.4692369961591889, -0.8758274791350291, 0.11288431346950509, 3.7518486798523787], [-0.7812802385803761, -0.4713247500572624, -0.40921164302503643, -1.0707735544196442], [0.41160397257472114, 0.10382295880699755, -0.9054297117862153, 2.3035916246548536]], [[0.26869095377448055, -0.9610301060261489, -0.0650100505393496, -335.4059815760128], [-0.6919948507676724, -0.14564253774150931, -0.7070582562358209, -138.72553316539978], [0.6700360422177203, 0.23496677746349984, -0.7041607171787073, 463.76130773656155]], [[0.49027543877367813, -0.8667530285407529, 0.09148323152747909, -78.4523644795374], [-0.7620574470352387, -0.4772437644574566, -0.43761494113502375, -53.27738572047122], [0.4229638773623723, 0.14483637941452676, -0.8944964961612089, 130.53776692957598]], [[0.4219611167979602, -0.9050642135531309, 0.05298665167823473, 2.2725243931794337], [-0.8549013237383941, -0.41666905128728426, -0.30908029437299234, -3.187769703731058], [0.30181541143712237, 0.08512150753368204, -0.9495587324511493, 4.673166807053579]], [[0.4273812170570378, -0.8984170145311593, 0.10095624452090181, 2.8133406502349017], [-0.8371792777486468, -0.4354387338911988, -0.3309440525760885, -1.8920838513688214], [0.3412860269848441, 0.056920796095532744, -0.9382344433864875, 3.4039531315518543]], [[0.36010061014216677, -0.9287721393397913, 0.08780582988291089, 2.4009737520083205], [-0.8834051146246854, -0.3697304089355087, -0.2879146195720679, -2.143383293229458], [0.2998715625566819, 0.02611011096432303, -0.9536222040594721, 3.3772013408684822]], [[0.33687673151512676, -0.9310390228435442, 0.14028686932932877, 2.7138695595300315], [-0.8857017912760504, -0.3639090601150875, -0.28827509933490514, -2.0360424356854705], [0.3194470295590198, -0.027139158216354486, -0.9472154250207427, 3.2862849747538685]], [[0.31312293967736193, -0.9380180128293051, 0.14858072639332637, 2.695897096202487], [-0.8797118947865735, -0.3454223347648996, -0.3267879936848691, -1.9743597180795514], [0.35785612586460397, -0.0283834151103651, -0.9333452603018078, 3.4006975588353625]], [[0.2752591271335848, -0.9542768533732215, 0.11656800609841175, 2.429792249488302], [-0.8754596259383813, -0.29891390365343407, -0.3797642973667939, -2.043522461172379], [0.3972440764586501, 0.0024830059943844462, -0.9177096373035133, 3.515406585520612]], [[0.32271934777868116, -0.9404853279325198, 0.10648741950560855, 2.5719799382138326], [-0.8583286195098918, -0.3382164559882588, -0.3858517977526935, -1.8193053748133023], [0.39890375217531615, 0.03312064073056109, -0.9163944672781754, 3.4244780906618164]], [[0.25205076959721195, -0.9471836075726952, 0.19827663274079327, 2.4673701423874115], [-0.8620171623755462, -0.31286892312324965, -0.3987975033945288, -1.8356417672346805], [0.43976905452233, -0.0704006426765591, -0.8953473785047139, 3.7143200464491613]], [[0.2551751561382265, -0.9553220908570944, 0.14914872580837357, 2.3087453876513164], [-0.8702348955967446, -0.29414520105243636, -0.395183283026427, -1.9043336048422463], [0.4213987021521959, -0.028953469882751964, -0.9064131676041526, 3.6830009667636174]], [[0.17589167335206934, -0.9690071445345881, 0.17345683349563548, 2.2447369176167413], [-0.879904689967646, -0.23376648853369497, -0.4136676992606101, -2.0338273318247153], [0.44139535092516513, -0.07986477746509749, -0.8937515099299697, 3.7907932603966237]], [[0.11971786901027326, -0.9927458643014602, -0.011103186568987816, 1.9249167578648836], [-0.8701399526017719, -0.09953440299394789, -0.48264828343921873, -2.3608365707907097], [0.47804193825000885, 0.06744295020967725, -0.8757438859285229, 3.6200215470875388]], [[0.08451450437095914, -0.991925686015123, 0.09455544391709442, -1217.596065517234], [-0.8984905497080927, -0.1168899288387884, -0.4231447466545136, 105.93239634666315], [0.4307807222197631, -0.04919530424228158, -0.9011147492990716, 976.130387793431]], [[0.16454046315084636, -0.9840396103120368, 0.0677678487414193, 1.829274446129081], [-0.8675495400971824, -0.17706906093983965, -0.4647626739907698, -2.136859231852314], [0.46934446994001355, 0.017680299624673268, -0.8828381366603447, 3.8107280045906764]], [[0.17351931291826872, -0.9822198800037718, 0.07165999839344095, 2.1237489939003815], [-0.881207760559821, -0.18733963812107635, -0.4340238964824508, -2.198692241859195], [0.4397316576885465, 0.012164181601740154, -0.8980468261245862, 3.626271278460817]], [[0.19157923160117174, -0.979937889733367, 0.05494661303502468, 2.260038096106742], [-0.8765731495300275, -0.19601704903162842, -0.4395416135156498, -2.2027458923160887], [0.4414939541399333, 0.03604231892994805, -0.8965400379815943, 3.49937342457414]], [[0.1562357491515649, -0.983578650808705, 0.0903516926259661, 2.023338940370973], [-0.8532984961099068, -0.18047878525806826, -0.48919227774806884, -2.162878441388391], [0.49746564426462747, -0.0006676414455914215, -0.8674834217616376, 3.892291374931293]], [[0.31141971694154913, -0.9474138182626678, 0.07365335610139123, 2.4555358920880774], [-0.8395903862397055, -0.3106228821547513, -0.4456471792974098, -1.68684216519838], [0.4450907134887311, 0.0769446687355815, -0.892173623640188, 3.4568164758458337]], [[0.24657071538293263, -0.9523743191676883, 0.17940467804778826, 2.3705769092054902], [-0.8475545686575194, -0.3016820644774303, -0.4366224743647553, -1.7093574112738634], [0.4699512054068108, -0.044396938661550395, -0.8815751677390692, 3.7615093435946125]], [[-0.03626510834748237, -0.9699393591281019, 0.24062934469992023, 0.029108701038820167], [-0.8793278340758875, -0.08343843005567747, -0.4688502837892422, -3.0928609306006014], [0.4748340785326538, -0.22859498683044543, -0.8498687721407556, 6.285742879513879]], [[0.19160702397476592, -0.9790088564692424, 0.06948674203270458, 2.269053163461604], [-0.8701431495608204, -0.2021977540930021, -0.4494073514219826, -2.099441875719478], [0.4540238403827589, 0.02564619259329018, -0.8906203597322256, 3.6253220025756723]], [[0.15483299553729063, -0.9837550738178497, 0.09084436267918042, -555.6471626832199], [-0.8745278869550052, -0.1792550736264203, -0.4506313277139086, -509.3768674880221], [0.45959516798043354, -0.00967333018270683, -0.8880758460020253, 483.1945165678575]], [[0.14099855885546228, -0.9870310502280151, 0.07674055177326028, -2.3806885363923698], [-0.8596506393004248, -0.16051127370226861, -0.48501227754031795, -3.6939246379547925], [0.4910399013838424, 0.002415967768239824, -0.8711337316099576, 8.479372521198695]], [[0.10903950753389846, -0.9862619107787673, -0.12408798952267364, 2.1509173261524204], [-0.8382272831382986, -0.024129876912865833, -0.5447869040668617, -2.3331548120423973], [0.5343083450586851, 0.16341723405805228, -0.8293427518303061, 3.4593507084598607]], [[-0.0001512382953589575, -0.9945286351997272, 0.10446420867811862, 9.05581928966826], [-0.8681440867786921, -0.05171628645259524, -0.49361044387932396, 2.483384034201785], [0.49631222201167696, -0.09076463784602784, -0.8633863322977209, -5.491452822908095]], [[0.4699035810291414, -0.8826732825109297, 0.00886007208603043, 2.9198353177455614], [-0.8222289768883028, -0.4413327286995542, -0.3593952311089015, -1.3458078861043934], [0.3211388081518708, 0.16159609809641529, -0.9331433796468845, 2.8151631343432637]], [[0.15669294551689703, -0.9841601123606085, 0.08292281992065653, 4.050001109835124], [-0.8737132005223469, -0.17727580312284044, -0.4529884467181803, 1.4675189796343908], [0.4605133701188667, -0.0014706683878193405, -0.8876515493572111, -0.8209576620865894]], [[0.2631431546079199, -0.9633638859595223, 0.051823772652716815, -0.03129418035092865], [-0.8597514475716982, -0.258534669061095, -0.4404398634227368, -1.5024313411651944], [0.4377021002706767, 0.07134317151934041, -0.8962851238842469, 4.27100200329055]], [[0.2473644407199057, -0.9455886337573127, 0.21135980974704463, 7.52182798841039], [-0.9131514388955475, -0.3004521925037027, -0.2754685638375262, 1.6695990517400772], [0.32398346116788057, -0.12486238716561764, -0.9377868100805128, -2.8172912500352325]], [[0.23917583128764225, -0.9709679235846648, 0.004026549086924208, 2.063169697719951], [-0.8833147143239918, -0.21930262343027002, -0.414320497701146, -2.9255805161709616], [0.40317494612957994, 0.09553873940075319, -0.9101221413014432, 3.793601825459475]], [[0.24930702043315367, -0.9505040917137282, 0.18543996656115902, 7.692526944341499], [-0.9400961330941888, -0.2835118658927318, -0.18931529901034166, 7.30365462647278], [0.23251939726417764, -0.12713376236658142, -0.9642467196534409, -3.233477629775502]], [[0.42397451841126554, -0.905229406515713, 0.028378324776936373, 3.029057065572115], [-0.8712155809439025, -0.41620407257293834, -0.2603028649367473, -1.231129984418983], [0.24744498228599004, 0.08563814309587676, -0.9651098845150099, 3.7876209237531104]], [[0.28819115981760596, -0.9487973904198187, 0.12934205555628575, 9.99200451447845], [-0.9241655325215227, -0.3109548269543941, -0.2218674471232162, 5.547848675105983], [0.2507267913530451, -0.05559323273839219, -0.9664602778032326, -10.06114600034289]], [[0.7128408176290152, -0.7004331935910784, -0.03537386093996611, 3.856417427384068], [-0.6963460454392858, -0.7008783373646856, -0.15450482585984773, -1.9841297912207114], [0.08342753576047353, 0.13476979457102709, -0.9873585715170644, 2.273260381551375]], [[0.8208216041500698, -0.5639823326295184, -0.09042025570785325, -3.5976515323065787], [-0.5709314057003361, -0.8148255473345172, -0.100482124758802, -5.585717416151282], [-0.017006591238239076, 0.13410166252799577, -0.9908216388239024, -0.9322877494317486]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7861467288026194, -0.6004339574389025, -0.146466322228692, 0.5907342239703057], [-0.6168511982438077, -0.7769741642021086, -0.1257209107014956, -5.9413995057105655], [-0.03831344435207281, 0.18918300905919933, -0.9811941036640954, 0.7669025525935107]], [[0.7501529778676131, -0.6510418874650432, -0.11582301395796268, 176.27592925156662], [-0.6612639162919209, -0.7383608073165776, -0.13248906079025224, 12.217540742315995], [0.0007367541135160985, 0.17597664329326718, -0.9843940665244841, 148.7483554554433]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3946938952109492, 0.9094870524141925, -0.13057576564643378, -0.9914499964426141], [0.7981730477710827, 0.26899656261647764, -0.5390367660116897, 2.0394745935130416], [-0.4551225273429449, -0.3169765776701235, -0.8320993536312276, 0.739805522084397]], [[-0.2761967830815104, 0.959908195376728, 0.04787059080498701, -2.2804693713650637], [0.80767804725939, 0.2588155151449141, -0.5297836361152839, 1.657834822078935], [-0.5209333057030273, -0.10766051072174171, -0.8467807894847698, 1.3018812025753177]], [[-0.29449251016083167, 0.9400245030432114, -0.1721281358103211, -0.6645484213396645], [0.7383606340189203, 0.10946169936889016, -0.665463530557801, 2.1495872279292696], [-0.6067105863509807, -0.3230666650238597, -0.7263127386739202, 0.15042661347019604]], [[-0.3293920990968341, 0.9196948114747617, -0.21368738568054102, -0.6673035383276147], [0.8055918223215927, 0.15570641557441223, -0.5716444069152995, 2.3198186224969715], [-0.49246589817078423, -0.36043996156831937, -0.7921870822245659, 0.3802719610701232]], [[-0.24467989936532475, 0.9692948386006566, -0.024479842905982818, -1.9898556863382726], [0.8419948509633404, 0.19989034122063765, -0.5010873401293625, 2.1455946212205075], [-0.4808080883240182, -0.14321790163531967, -0.8650504117410609, 0.9766186651363352]], [[-0.24229161851908176, 0.9697690494940439, 0.029030367528206702, -1.963287283910285], [0.8423809667805806, 0.22512093460243432, -0.4896068541284334, 2.1486868134884842], [-0.4813409170237018, -0.09417300806040774, -0.8714599050740294, 0.9124236140562859]], [[-0.2520992761958244, 0.9360561548238971, -0.24544822255995563, -0.41100947964260837], [0.8376762095397187, 0.08409808803945162, -0.53965366630764, 2.4099055080359406], [-0.4845044095905739, -0.34165243538486384, -0.805313038813405, 0.27732968497904636]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7554800565272686, -0.5407917622006038, 0.36985693737649517, 0.29395115671716204], [-0.6378145594608042, 0.7361479534494668, -0.22644818032384526, -0.6246550929003956], [-0.14980811703434227, -0.40697722364786726, -0.901069957052447, 2.3649691215175093]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7798043648203551, -0.6227469732553197, -0.06396373901251326, -0.5590976781764837], [-0.4781725039907392, 0.658463022066686, -0.5811862911305067, -1.558554440279755], [0.40404976059187225, -0.42262590534909916, -0.8112528182345533, 3.5194428474978925]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9756480807542504, 0.19318268684004464, -0.10388104748128527, -1.7980171769151512], [0.21139014976933435, 0.701774601619506, -0.6803136137857914, -0.09030726911414187], [-0.05852373109300368, -0.6857061017863598, -0.7255219602961087, 2.9804311715171106]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5479699949289011, 0.8170536073372912, -0.1793105891874207, -1.1443457494859959], [0.7213239529585529, 0.35299281690490114, -0.5958924618601843, 2.0998319456014034], [-0.42358073556981757, -0.45587221230369307, -0.7827898099128967, 0.6061586228019082]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.47111765084958745, 0.8414040274076957, -0.2647402910780222, -0.9260176089361686], [0.7475652928408358, 0.221565314884545, -0.6261429103486742, 2.305944677953797], [-0.4681819005448221, -0.492897630246101, -0.7333877788046486, 0.20742301540578517]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.36210179166387746, -0.9305524211359445, -0.05435516527287278, 3.374378663781377], [-0.9279371548690606, -0.3543261005909837, -0.11569637441813338, -1.0809190078378148], [0.08840208757332933, 0.09233204188156804, -0.991796281982675, 1.5751722767509084]], [[0.5386788448206113, -0.8022312338621244, -0.2573910440531769, 3.545593480214785], [-0.7272310399182854, -0.28848885255353296, -0.622823567739464, -0.47273497538683584], [0.4253940722695839, 0.5226846366293916, -0.7388102962936431, 1.3411181326413124]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5785856766573548, 0.8035950414255381, -0.13954792783570505, -2.3242223897008576], [0.8147153854659116, 0.577484007504867, -0.05245056492784238, 0.5282858958925369], [0.03843768270958057, -0.14403898941747184, -0.988825219174507, 2.4946556459623115]], [[-0.5480374565413672, 0.8323611619917484, -0.08264285955492853, -2.5585971969025967], [0.8168749026010882, 0.5113390743979137, -0.2669227313181615, 0.632226085087904], [-0.17991759149158223, -0.2137925326142876, -0.9601679088941877, 2.0303095191179694]], [[-0.26152918779677814, 0.9582377299630669, -0.1156846437760265, -2.0410591588002234], [0.9651356070262653, 0.2609637262758978, -0.020277909612202737, 1.6283983483814695], [0.010758437637498314, -0.11695463412548845, -0.9930789845607313, 2.458002440678623]], [[-0.28906693522392096, 0.9486716794004147, -0.12830569614731102, -2.4186186316777953], [0.943657572464791, 0.2598203130269527, -0.20494826388245888, 1.6288001037491653], [-0.16109218755143623, -0.1803204082797424, -0.9703266756447128, 1.9311308727175]], [[-0.23598691645234363, 0.9596258996019081, -0.15306308528362667, -2.336765386610966], [0.9604384531843672, 0.20635729153150614, -0.1870150953174663, 1.8932349090347904], [-0.1478788453705751, -0.1911407885434433, -0.9703592355652908, 1.9669092030804438]], [[-0.19133591272052333, 0.9691997401329014, -0.15505622280231365, -2.3458406556950346], [0.9728843201447278, 0.1663551213004056, -0.16069248032704592, 2.2315838459689656], [-0.12994871342162265, -0.18159801029593842, -0.9747489392333912, 1.9663374346247497]], [[-0.13304515773242365, 0.9859989994691835, -0.10052342537798495, -2.515232882073738], [0.9532779583073138, 0.09955151367543591, -0.28522031892971517, 2.390979081397245], [-0.2712196899367625, -0.1337739480268792, -0.9531759599464876, 1.503136414649478]], [[-0.08367446411874571, 0.9947184790650384, -0.0594451971228724, -2.4925215286129427], [0.9615979563554397, 0.06495224744047842, -0.26666566311670575, 2.78463066846601], [-0.2613961636816467, -0.07947548652866072, -0.9619541011158224, 1.2373682303196656]], [[0.08968143609279713, 0.9953103412784674, -0.0362569243658977, -2.085362092565163], [0.9445392196324085, -0.09654098128375518, -0.3138877211822258, 3.381749498603099], [-0.31591597394961624, -0.006096185439318724, -0.9487675868865648, 0.8409944066632997]], [[0.24043594657364145, 0.9696637557936684, -0.04407670921647902, -1.6651880607064173], [0.9082059436911106, -0.24075832589898036, -0.3423410468443124, 3.8741867663944194], [-0.3425675399674878, 0.042280364360272604, -0.9385413423766619, 0.5937055375424692]], [[0.4050779335023962, 0.9091635245541732, -0.09661031730442403, -1.0627150891818915], [0.8513522322137295, -0.41360966882854844, -0.32268625405529494, 4.372388889879766], [-0.33333353340779914, 0.048463671670349956, -0.9415625460021759, 0.5257123315119426]], [[0.5269196679397774, 0.8499000649884235, 0.005054015325268779, -0.5608647136574114], [0.7685145303995061, -0.47390606020640896, -0.4298819171173241, 4.3948129663842765], [-0.36296154080434095, 0.2303973212351062, -0.9028709732096972, -0.08954838985550095]], [[0.6465726401309781, 0.7614412635156309, 0.046379125151038106, 0.15302127347512318], [0.7193502691123697, -0.5883363489307643, -0.3693176557582637, 4.733870903108411], [-0.2539271772812384, 0.2721535278891999, -0.9281451642364168, 0.1242519303716492]], [[0.7127487441206083, 0.6996234136477816, 0.05016280325421234, 0.565854581603951], [0.6680173178268446, -0.6552625781595871, -0.35268089932271574, 4.833320872717999], [-0.21387400692446062, 0.284882489352147, -0.9343981359263297, 0.14878973531488354]], [[0.8486571497290339, 0.5199621033289789, 0.09705901975342267, 1.6884696129144383], [0.515789961647651, -0.7728352097892954, -0.36971131166553506, 4.679971967570219], [-0.11722524334504751, 0.36382021605683224, -0.9240633596843099, 0.3750746021125367]], [[0.9198232668245349, 0.37533710273879173, 0.11422441558567868, 2.2991272248260177], [0.3898528201358902, -0.8417291214813124, -0.3735061775692488, 4.557917699554244], [-0.04404470956123287, 0.3880903829753421, -0.920568258306639, 0.5353934588048386]], [[0.9434081088550875, 0.32655457462248894, 0.05782084347009349, 2.5763472759772315], [0.3024318612272563, -0.7756198510314186, -0.5540296165374354, 4.2736273082675025], [-0.136073911757858, 0.5401628980956814, -0.8304865646473694, -0.40130661368626214]], [[0.9095831566158471, 0.4144704998767848, 0.02954125814244314, 2.1801528980797418], [0.32690977561310103, -0.6699141594845337, -0.6665920923103741, 4.176398527891233], [-0.2564926505951823, 0.6159782655695074, -0.7448370939585641, -1.2195554458081581]], [[0.9284937792106404, 0.367444861489417, -0.05369893604314546, 2.463448932944943], [0.23981470113322026, -0.7037222409135993, -0.6687779278384764, 3.97614565268118], [-0.28352814866874665, 0.608078351373049, -0.7415204026214705, -1.269570658344695]], [[0.8921712876119716, 0.4499219079920319, 0.040008377492797925, 2.140853628541137], [0.4123598564287203, -0.775120956135653, -0.4786928578592302, 5.027075980120184], [-0.18436307213452968, 0.44357387216580013, -0.8770703948742983, -0.22261691435555292]], [[0.8421120164807392, 0.5361382917052648, -0.05833595688855761, 1.7561267183607632], [0.3858337627172436, -0.6745139787481897, -0.6294149664734235, 4.584501165772086], [-0.3768018832837716, 0.5075299248720685, -0.7748765812135221, -1.3610628552303572]], [[0.7364894059543641, 0.6753207529301449, -0.03905426454114999, 0.9523162445472594], [0.4736493234933087, -0.5560485470666477, -0.6829834051127455, 4.569600672365717], [-0.48294893443439646, 0.4845120163287302, -0.7293890818772576, -1.7155316788372108]], [[0.5660391697788213, 0.8240972727433759, -0.021525411332481648, -0.0035445023044211083], [0.6281807908760558, -0.4480866395067705, -0.6360874605507187, 4.666128509997084], [-0.5338431906940797, 0.3465285681620769, -0.771316665966129, -1.3300492514437872]], [[0.4931444068879658, 0.8679107678454551, -0.05949363842486324, -0.2754400617598492], [0.7474543917588156, -0.45770559217042156, -0.481474322406068, 4.908066615635257], [-0.4451073198629458, 0.19296758783235068, -0.8744386678610394, -0.4281933054302132]], [[0.527988313403542, 0.8419654445634391, -0.11100689649915649, -0.007907991002210318], [0.708335350551453, -0.5087090626777768, -0.4893629743949253, 4.790166322137332], [-0.46849692855816494, 0.17974782254755822, -0.8649863283433892, -0.4916589716502344]], [[0.9117834509818082, 0.37269139034245846, -0.17248787227022566, 2.441525751285885], [0.2603755046056737, -0.8494318928706859, -0.45898807824982085, 4.025198843515567], [-0.31757760487327386, 0.37358611716541085, -0.8715376514782512, -0.45981624037208857]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.39655582616467255, -0.9180075220941147, -0.002380359947172145, 3.505028997132776], [-0.8133315452013922, -0.35013365845410427, -0.4646484895034749, -0.6429099244354687], [0.42571736435711716, 0.18619508746518657, -0.8854920186476336, 2.2895100956658094]], [[0.2483976367060181, -0.9686404856118168, -0.005850103637398185, 3.142822233738977], [-0.7484327910942185, -0.18808668937963935, -0.6359809387812851, -0.7151528464606011], [0.6149365587552773, 0.16235457157687455, -0.7716825913510729, 2.6413295532432257]], [[0.33435905669377797, -0.9409471081345074, -0.05312777898760074, 2.9741542775563103], [-0.864169976300266, -0.283607572414041, -0.41566452450336966, -0.2941341901557898], [0.37605089185912755, 0.184892629822615, -0.9079650005199718, 2.118789088121515]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.05788420625768287, -0.9817974606303004, -0.18089545313747368, 2.4853055863835176], [-0.6928706317538009, 0.16996155720818396, -0.7007448585073303, -0.8823884872809116], [0.718734795539361, 0.08477508697290237, -0.690096716634509, 2.5821336852503656]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.3238600702936293, 0.9451263815213499, 0.043020667379362054, -2.0746266527915784], [0.7840969818991804, -0.24267993513739372, -0.5712253251198751, 1.8480736496955983], [-0.5294398717947132, 0.21872944939827021, -0.8196650841166331, 0.9025398592601268]], [[0.20542233713933344, 0.9786733585575601, 0.00034735267256785773, -2.090561984414693], [0.8231346256935014, -0.17258294057893053, -0.5409847655946962, 1.7260508983444287], [-0.5293874303273862, 0.11141627291735484, -0.8410323196765819, 1.0705951549375168]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3555874904118146, 0.932419244085554, -0.06443516060003349, -1.0690150273090662], [0.853394108465466, 0.2957892674341399, -0.42921696717069296, 2.0364559881619817], [-0.3811509311271064, -0.20761277063249167, -0.9009000528200896, 0.9054680549351211]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"477894c0-9bec-4271-9852-6d28bc05abfe\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, true, true, true, false, false, true, true, false, false, false, true, false, false, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, false, true, false, false, true, true, false, false, false, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9938707526044285, -0.10627879914933716, -0.03042604096628676, 4.549269760034359], [-0.1099517054028259, -0.9217745816369289, -0.37180941774930193, 2.705862273133096], [0.011469507248243012, 0.3728759009368125, -0.9278103323977606, 0.8417847807668181]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6653092774010602, 0.6947309634380632, 0.2733357895419106, 0.12921821616742235], [0.7284070896583505, -0.5237907199923718, -0.4416632126239679, 4.453902115249573], [-0.1636663592175586, 0.4929423598051734, -0.8545297846009675, -0.12433374166602773]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6700563614416346, 0.739985431466732, 0.05870292759814011, 0.09703872794730724], [0.6344696358785338, -0.5298690371570286, -0.5627495753978358, 4.7790562331425805], [-0.3853216236337624, 0.4143191579920944, -0.8245404063361378, -0.9744558300464605]], [[0.6671827713721684, 0.7428855589700055, 0.054664392962657266, 0.12482435802589391], [0.6493664439927301, -0.5440984639751933, -0.5313003697684314, 4.9321598832622], [-0.3649525599312735, 0.38997167560434176, -0.8454180748162133, -0.7802577067096281]], [[0.6070190974387997, 0.7946654115592515, 0.0058905870633509105, -0.15712616551962819], [0.6399250795639786, -0.4843960561056783, -0.5965369673157737, 4.870874085802761], [-0.47119391750066275, 0.3658788658840929, -0.8025639834989785, -1.1382621979934886]], [[0.38714090036255877, 0.9209161485600768, 0.045115081599637286, -1.4440048708277238], [0.7148727844104783, -0.26890119086213704, -0.6454835796998513, 4.545176310522676], [-0.5823047530079735, 0.2821446382162866, -0.7624405404686478, -1.300550423260335]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.09929523485253078, -0.9889537215778668, -0.11004995644191679, 2.203807595665252], [-0.7538818028715379, 0.14695228007539207, -0.6403649386715382, -2.5302929806691554], [0.6494633812885375, 0.01937947259164957, -0.7601458757418402, 3.908515575881442]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.953079716211706, -0.24658813562355883, 0.17559426504163356, 5.556811339032047], [-0.1926682047770005, -0.9415220936470711, -0.2764328309778776, 2.4864881091676523], [0.2334909364703947, 0.2296310922852857, -0.9448553032301003, 2.2418797726720365]], [[0.8452061667692105, -0.5082569444728097, 0.1652313954745311, 5.669651197076518], [-0.4459853244985389, -0.8411193725656887, -0.3059661605907336, 0.9274634834528845], [0.29448875358361415, 0.18491370822593145, -0.937594418990911, 2.63387018888427]], [[0.693939589762782, -0.7053219253609659, 0.14480617170881094, 5.434692433925985], [-0.6281802816458577, -0.6913355247835253, -0.35699401384843765, -0.31920862425496344], [0.3519053559001235, 0.1567678977896545, -0.9228144161809675, 2.84297047957542]], [[0.6275408325249312, -0.7771433655803944, 0.04733595724493031, 5.310428020241423], [-0.6965195692539942, -0.5875270799538221, -0.4119131218681511, -0.9705973724489425], [0.34792670659227487, 0.22552188287461872, -0.909992795127819, 2.7303376179283365]], [[0.513194369469065, -0.8571382800790928, 0.04410791276294501, 4.834394276963704], [-0.7999877360790515, -0.4963268945027334, -0.3371635151026677, -1.6805948213643078], [0.3108876988051517, 0.1377446282666865, -0.9404122798620348, 2.742937211160836]], [[0.46456192310735156, -0.8852858106048492, 0.021242719706150798, 4.492343479313439], [-0.8293955071909928, -0.44338820252173183, -0.33986761322012393, -1.8483786434275773], [0.31029874677509595, 0.14027093571464733, -0.9402333499422058, 2.5933554021369134]], [[0.4318206071734306, -0.899464052693409, 0.06704760348228689, 4.3177241055843405], [-0.8489290708962272, -0.4304205055416298, -0.3066881494230846, -1.856190473269901], [0.30471362917933015, 0.07551560316673574, -0.9494456266004523, 2.631701556679147]], [[0.5181824317726181, -0.8550412921979955, -0.019782720707648777, 4.5112684156426335], [-0.8132745888636219, -0.48544781922423946, -0.3208190423262568, -1.522151110685674], [0.2647100498865158, 0.18233157556169932, -0.9469338868380762, 2.215900549000919]], [[0.5753125397476107, -0.8179302988364466, 0.0023468818621757565, 4.572658501937412], [-0.7817492555034565, -0.5507031165857246, -0.2925648285467024, -1.099325929402521], [0.24059007279799677, 0.16648154140351717, -0.9562428108189696, 2.0082004621950733]], [[0.6171666585902565, -0.7857917113264743, -0.04045617301660243, 4.670214493029709], [-0.7738776626973052, -0.5969107055606526, -0.21168602401963146, -0.8585648761219572], [0.14219240029865932, 0.16195368473021873, -0.9765000385558675, 1.7878479050518343]], [[0.6562626966731752, -0.7490305964633125, -0.09095294672008294, 4.704224636005953], [-0.747300614803878, -0.6285838948018048, -0.2154624754093844, -0.6232275082949676], [0.10421642897834224, 0.20936917814618267, -0.9722671871319088, 1.530949076138477]], [[0.6986985032862937, -0.7009889997852057, -0.1429504238735576, 4.704483732111637], [-0.7146041841974224, -0.674313584971182, -0.18612374660652178, -0.3732893624713475], [0.03407728617465212, 0.23219735421285356, -0.9720715648878541, 1.2082090665324958]], [[0.6960697626017905, -0.7088103137895062, -0.1143451995367902, 4.672461159604471], [-0.7171922796931726, -0.6790066217678237, -0.15679681611549906, -0.3647455168239067], [0.03349805277917874, 0.19114901689799335, -0.980989262835702, 1.3082380489769727]], [[0.6454086718919828, -0.7569907973097432, -0.10204204542729765, 4.500503601152656], [-0.7620544647104053, -0.6290080436767804, -0.1536940916393581, -0.6854838755765503], [0.05215974560487273, 0.17695709586865693, -0.9828354629133841, 1.4118058698233305]], [[0.5096726267157587, -0.8599205073243703, -0.027758506077529724, 4.148854766976713], [-0.8563718368145574, -0.5039348332845374, -0.11259201087708641, -1.388448996873697], [0.08283170098168742, 0.0811566687677761, -0.9932534945455752, 1.7959778097530688]], [[0.17659369833456448, -0.9842172906733397, -0.011445105860203253, 3.1207589690698576], [-0.9752479149115887, -0.1733887445680379, -0.13721460460795792, -2.564108854597171], [0.133064533851509, 0.03539305011933989, -0.9904752202019647, 2.074380223728885]], [[-0.4205065376893938, -0.9066987948567108, 0.03273449504524139, 0.6629245409781372], [-0.8975076334898026, 0.41041833634470043, -0.16135934128392682, -3.600880781320468], [0.1328694832834573, -0.09723211710868357, -0.9863526832804534, 2.328310909267309]], [[-0.6730948215325233, -0.7342713827090518, 0.0882547322280054, -0.6017898351234228], [-0.7388427540054981, 0.6623997936225315, -0.12384626866562619, -3.6387763965360436], [0.032476854522423534, -0.14856665151831597, -0.9883689614597191, 2.041414430512806]], [[-0.7967203895701052, -0.5969188512270468, 0.09446960301092974, -1.2554214518643003], [-0.6038579531412352, 0.7925824260636656, -0.08466800058529705, -3.475662971612733], [-0.02433502149860762, -0.12450294351868485, -0.9919207749532446, 1.825365134880884]], [[-0.8562056985363865, -0.48221489860045325, 0.18542004573824644, -1.6277688482340449], [-0.5028742641491439, 0.8601583205541962, -0.085118376616578, -3.2620882634776116], [-0.11844524579009397, -0.16612180816840166, -0.9789659179974477, 1.6634657238895605]], [[-0.8646142479798707, -0.47153954150782074, 0.17347236951398362, -1.4906753475418213], [-0.4828208294074564, 0.8752969632218783, -0.02718957272289437, -3.089233010196446], [-0.13901887958294626, -0.10726456530071768, -0.9844633381443667, 1.4920688905914945]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.14869962751812293, -0.9853606799373282, -0.08338315902757182, 2.8060761028887358], [-0.9124619003413035, -0.10421645566321913, -0.3956667926355877, -0.6654821457062894], [0.3811846025241685, 0.13491946042896164, -0.9146010266755933, 2.0812733607672356]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8338224877274383, -0.5370305213165939, -0.12782127418569067, 4.632381023538326], [-0.516205213080149, -0.6764601838458775, -0.5252940106836167, 0.6280867733577986], [0.1956329137668405, 0.5039839668537375, -0.8412656680297057, 1.0164683503859546]], [[0.9786367819006538, -0.11570722861270002, -0.16994671623158422, 3.967586539078475], [-0.18793940781112536, -0.8386098648417487, -0.5112849240704318, 2.4878198087706775], [-0.08335963113362341, 0.5323019179346173, -0.8424404074238093, -0.15679823977773003]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.21472114772962347, -0.9763146836892662, -0.02654179968278389, 3.3773966723302995], [-0.9235480277286852, -0.19412536266913982, -0.3307179826484047, -1.9035146201876227], [0.31773238613041743, 0.0955247715584961, -0.9433563212395243, 2.303659551534993]], [[0.18652921517979626, -0.9822508093285822, 0.019753466980622997, 3.2279517773362993], [-0.9343387723080552, -0.1835738495955722, -0.3054696389275676, -1.6286417626187688], [0.30367402003840505, 0.03852258192291194, -0.9519969013792571, 2.482226630965882]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.36615672688374723, -0.9305531544055624, 0.0002796133730572359, 3.2053285216240273], [-0.791217547470353, -0.31148868326062595, -0.5262600049173044, 0.19496050907583093], [0.48980000401468005, 0.1924724058830747, -0.8503236613436089, 1.9321280405562342]], [[0.3205004657412529, -0.9467055072707741, -0.032064528108582235, 3.1126457549405417], [-0.6789153504460755, -0.20597296886145455, -0.7047333417875732, 0.29403142106361563], [0.6605705097779662, 0.24763646460403316, -0.7087473336881722, 1.6012431041798174]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9965532871112439, 0.06057188922043063, -0.05667973345070147, -1.285947871342276], [0.08101253785145747, 0.8576170558152497, -0.507868048104672, -1.1569011471595028], [0.017846978977991187, -0.5107093418090678, -0.8595681785235584, 3.0474225057906583]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4717624684413254, 0.8776743311744819, -0.08442713880958724, -2.9224886732473663], [0.8134326358472603, 0.3962734023552581, -0.42578719746414, 1.3530339681472583], [-0.3402462642098014, -0.26954620936532186, -0.9008758630954989, 1.634160722738584]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9693223892618217, -0.041425001340057666, 0.24227685597210818, 0.9138742575886373], [-0.202184865593653, 0.6948935507395477, -0.6901045089444494, 0.42231662737190656], [-0.13976904450066863, -0.7179184650115634, -0.6819513852136461, 2.2122687733556026]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8194705039484911, -0.5059260171883107, -0.26927116126755923, 4.619697701805017], [-0.5370154211652516, -0.5136944601992544, -0.6691281185178997, 0.2996238032775823], [0.20020622015590356, 0.6929335225637234, -0.6926475313738697, 0.25569744720483567]], [[0.8404781665650163, -0.4890151582747896, -0.2333680066011444, 4.6789406091921295], [-0.5304830155519921, -0.6548864440706386, -0.538248563010975, 0.6046431963091076], [0.11038216222911315, 0.576183929270851, -0.8098319936330182, 0.5009396260270912]], [[0.8690600753075726, -0.3824214139774807, -0.31382869154661625, 4.5911245836751196], [-0.49203902173918296, -0.6023948419531984, -0.6285046184986464, 0.721892146992257], [0.05130483985302642, 0.7006242334658753, -0.7116835651383343, -0.4244809076019317]], [[0.8503949365525612, -0.4202785682260961, -0.316534953797504, 4.670607529615806], [-0.5236107768745693, -0.6170390234819473, -0.5874475277343968, 0.6189526632118434], [0.051577187075056985, 0.6653035161415183, -0.7447892488369827, -0.3489986914242594]], [[0.827839208492642, -0.4737433820900902, -0.3004154669921627, 4.721014629640474], [-0.5585791380925542, -0.6468039832783055, -0.5192628945949217, 0.5484123527396979], [0.05168743919034499, 0.5976719962832125, -0.8000728676119345, -0.1316372341907678]], [[0.7512454825443904, -0.6083079936809196, -0.2561085898218591, 4.794766818584119], [-0.6445461771751485, -0.5926104214823551, -0.48308706652052663, 0.05456290334085487], [0.14209310484871884, 0.5279907889105642, -0.8372784939194671, 0.42610482035569586]], [[0.7219601825115725, -0.6390807357295268, -0.2652344398589002, 4.773796611359897], [-0.6706664514317481, -0.5520087035862864, -0.4954724029539224, -0.1585060164622472], [0.1702351485205229, 0.535595187043717, -0.8271383135992441, 0.5324070610783235]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.1505082536149125, -0.9884385101593178, 0.0183460412028722, 1.2520223283836962], [-0.5888992317378445, 0.07473437403349636, -0.8047437282740375, -1.062821032571365], [0.7940686119299551, -0.13192454271988147, -0.5933388193737069, 4.558721769273324]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9409608328055339, 0.09882099757238708, 0.3237701678115427, 0.9576901193788274], [-0.22875593923646567, 0.5193868896941513, -0.8233516739995602, 0.24974764044093714], [-0.24952641421292193, -0.8488060256929341, -0.46611683015892846, 2.125491392206906]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.10239810210024747, -0.9907060841777188, 0.08953258322821883, 1.1854059667921821], [-0.5658585310567986, -0.01601187709099705, -0.8243468581988196, -0.32482946420420905], [0.8181190326086476, -0.13507432977910122, -0.5589599036766566, 4.683847013163908]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.02731090973339234, -0.9910558551782555, 0.13062314544685905, 2.22534487400634], [-0.668211291610156, -0.11528662564023628, -0.7349848050899932, -1.7329201499471523], [0.7434700962205687, -0.06721075706599927, -0.6653832956727976, 4.961939790541209]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.016411382357033367, -0.9975512766138993, 0.0679861534072252, 1.4455542850648693], [-0.9800773168986642, 0.0025887483739473575, -0.1985994745274302, -3.151624899152731], [0.1979371603056037, -0.06989097872998985, -0.9777198635919787, 2.897888727746584]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.16866814831625496, -0.9844798253540342, 0.0484822566972323, 2.166196171181482], [-0.9141126722223881, -0.1746329122656223, -0.3659253591049305, -2.409107582131898], [0.36871273130448134, 0.017401707517310544, -0.9293804938503237, 3.2302352415057607]], [[0.3825155876448451, -0.917867204678378, 0.1058377049289112, 2.678229172747484], [-0.8156997545124225, -0.3892780838613354, -0.42789774936732344, -1.573657714970567], [0.43395361007496236, 0.07734576912247731, -0.8976089885366344, 3.543943553878315]], [[0.47294440509725383, -0.8664519493785188, 0.15995189622311257, -1.2916227466831425], [-0.7985735313633393, -0.4982351519644807, -0.3377011228184121, -2.9691908557951012], [0.3722954534950571, 0.03198050601687519, -0.9275631205162342, 7.668394978314419]], [[0.4895022432247127, -0.8681069440095077, 0.08232792746357463, 3.0337397293216264], [-0.8320061416230422, -0.49322956780320193, -0.25394954960819444, -1.7362867882073538], [0.2610619355239528, 0.05581153292232617, -0.9637072888659437, 2.8003793922551186]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.2691264016368593, -0.9617114467331842, 0.05178873588302646, 1.9086474175513557], [-0.8369599566557673, -0.2601438049116801, -0.48148025060312694, -2.9122251552406904], [0.4765175871851658, 0.086233949164118, -0.8749255368971626, 4.265093547670372]], [[0.5116379760289536, -0.8496785942686024, 0.12756515169405777, 3.193025629303874], [-0.7905284146165178, -0.5236896124042427, -0.31751222896731035, -1.357363973372669], [0.3365878892189843, 0.06160743706425734, -0.9396345654186435, 2.922208724877349]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8117564340071118, -0.014305183436755464, 0.583820908819561, 1951.8614701526765], [-0.34613885910810266, 0.7933906209652346, 0.500718696255433, 1798.2865451336734], [-0.47036090618098614, -0.6085447266152589, 0.6390883613752963, -5443.502251925473]], [[0.539372246992747, -0.8300687261496252, 0.1416456460408616, 3.1225343393102176], [-0.7758453407468436, -0.5552601811448826, -0.2995832746939742, -1.3349341207964693], [0.32732489427999334, 0.05169178951525512, -0.9434968852525696, 3.2613827790230934]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.349753139423684, -0.9333952871230301, 0.08028685720460393, 2.762195283615418], [-0.8869943619768578, -0.35750724382632426, -0.29228337693576023, -2.059316634574684], [0.30151905957093844, 0.03101303900331351, -0.9529556380688641, 3.0409980464927293]], [[0.3397207326083158, -0.9300290968770691, 0.140127451978876, 2.716755565396677], [-0.8749087113161441, -0.3671664898151179, -0.3157903032392997, -1.9114867691416002], [0.3451442751940021, -0.015318215263796175, -0.9384246275444496, 3.342660026519911]], [[0.2752591271335848, -0.9542768533732215, 0.11656800609841175, 2.429792249488302], [-0.8754596259383813, -0.29891390365343407, -0.3797642973667939, -2.043522461172379], [0.3972440764586501, 0.0024830059943844462, -0.9177096373035133, 3.515406585520612]], [[0.305563343699606, -0.9443891388657701, 0.12149155270835124, 2.535324937489198], [-0.8641958128810219, -0.32863128136688646, -0.381007976171193, -1.8604946176726307], [0.39974571915910084, 0.011429580024118285, -0.916554812716864, 3.464867637458472]], [[0.25205076959721195, -0.9471836075726952, 0.19827663274079327, 2.4673701423874115], [-0.8620171623755462, -0.31286892312324965, -0.3987975033945288, -1.8356417672346805], [0.43976905452233, -0.0704006426765591, -0.8953473785047139, 3.7143200464491613]], [[0.2551751561382265, -0.9553220908570944, 0.14914872580837357, 2.3087453876513164], [-0.8702348955967446, -0.29414520105243636, -0.395183283026427, -1.9043336048422463], [0.4213987021521959, -0.028953469882751964, -0.9064131676041526, 3.6830009667636174]], [[0.17589167335206934, -0.9690071445345881, 0.17345683349563548, 2.2447369176167413], [-0.879904689967646, -0.23376648853369497, -0.4136676992606101, -2.0338273318247153], [0.44139535092516513, -0.07986477746509749, -0.8937515099299697, 3.7907932603966237]], [[0.11971786901027326, -0.9927458643014602, -0.011103186568987816, 1.9249167578648836], [-0.8701399526017719, -0.09953440299394789, -0.48264828343921873, -2.3608365707907097], [0.47804193825000885, 0.06744295020967725, -0.8757438859285229, 3.6200215470875388]], [[-0.3922468545452926, 0.8301345506004039, -0.396256271873126, 10495.960067827244], [-0.23916214392027596, -0.5079998278061915, -0.8274887575455853, 2926.905138555075], [-0.8882251257506628, -0.2298103627958158, 0.39779809343041683, -15029.026055715627]], [[0.16454046315084636, -0.9840396103120368, 0.0677678487414193, 1.829274446129081], [-0.8675495400971824, -0.17706906093983965, -0.4647626739907698, -2.136859231852314], [0.46934446994001355, 0.017680299624673268, -0.8828381366603447, 3.8107280045906764]], [[0.17351931291826872, -0.9822198800037718, 0.07165999839344095, 2.1237489939003815], [-0.881207760559821, -0.18733963812107635, -0.4340238964824508, -2.198692241859195], [0.4397316576885465, 0.012164181601740154, -0.8980468261245862, 3.626271278460817]], [[0.19157923160117174, -0.979937889733367, 0.05494661303502468, 2.260038096106742], [-0.8765731495300275, -0.19601704903162842, -0.4395416135156498, -2.2027458923160887], [0.4414939541399333, 0.03604231892994805, -0.8965400379815943, 3.49937342457414]], [[0.1562357491515649, -0.983578650808705, 0.0903516926259661, 2.023338940370973], [-0.8532984961099068, -0.18047878525806826, -0.48919227774806884, -2.162878441388391], [0.49746564426462747, -0.0006676414455914215, -0.8674834217616376, 3.892291374931293]], [[0.25682358953529094, -0.961391130722153, 0.0988369244108131, 2.3965891743360705], [-0.8328828434528073, -0.2720440277406766, -0.4819732524244437, -1.742621092005962], [0.49025280513238806, 0.04146252210623619, -0.870593502342175, 3.631165305582579]], [[0.24657071538293263, -0.9523743191676883, 0.17940467804778826, 2.3705769092054902], [-0.8475545686575194, -0.3016820644774303, -0.4366224743647553, -1.7093574112738634], [0.4699512054068108, -0.044396938661550395, -0.8815751677390692, 3.7615093435946125]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.19160702397476592, -0.9790088564692424, 0.06948674203270458, 2.269053163461604], [-0.8701431495608204, -0.2021977540930021, -0.4494073514219826, -2.099441875719478], [0.4540238403827589, 0.02564619259329018, -0.8906203597322256, 3.6253220025756723]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.16948151264261802, -0.9797348909716408, -0.10674998962602847, 2.2047966248045285], [-0.8471358644647189, -0.08947250835269693, -0.5237895544841363, -2.182498638245687], [0.5036237127161345, 0.1792043907438198, -0.8451324998650525, 3.416199731122101]], [[0.09178921573646316, -0.9752072219546564, -0.20135941528015688, 0.9364276002673454], [-0.8902342027938293, 0.010236565249959872, -0.4553880509059482, -3.243143274742323], [0.44615894482854446, 0.2210567505853756, -0.8672232174994595, 5.1642734976118385]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.42641614518154397, -0.9025955901810118, 0.059080214237114015, 2.9251844750842593], [-0.8773884334230889, -0.4286185713439347, -0.21558213561068099, -2.2982482455217115], [0.21990636194501095, 0.04009140662130947, -0.9746968098292076, 2.8024456374172955]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3946938952109492, 0.9094870524141925, -0.13057576564643378, -0.9914499964426141], [0.7981730477710827, 0.26899656261647764, -0.5390367660116897, 2.0394745935130416], [-0.4551225273429449, -0.3169765776701235, -0.8320993536312276, 0.739805522084397]], [[-0.27107992785233226, 0.9608924789249261, 0.05658017904783455, -2.2982211639466987], [0.8334048022400672, 0.26371273213121615, -0.48568717351303864, 1.7107922700141713], [-0.4816140657401622, -0.08450585102464964, -0.872299634772267, 1.4325648648774]], [[-0.29449251016083167, 0.9400245030432114, -0.1721281358103211, -0.6645484213396645], [0.7383606340189203, 0.10946169936889016, -0.665463530557801, 2.1495872279292696], [-0.6067105863509807, -0.3230666650238597, -0.7263127386739202, 0.15042661347019604]], [[-0.3293920990968341, 0.9196948114747617, -0.21368738568054102, -0.6673035383276147], [0.8055918223215927, 0.15570641557441223, -0.5716444069152995, 2.3198186224969715], [-0.49246589817078423, -0.36043996156831937, -0.7921870822245659, 0.3802719610701232]], [[-0.24467989936532475, 0.9692948386006566, -0.024479842905982818, -1.9898556863382726], [0.8419948509633404, 0.19989034122063765, -0.5010873401293625, 2.1455946212205075], [-0.4808080883240182, -0.14321790163531967, -0.8650504117410609, 0.9766186651363352]], [[-0.24229161851908176, 0.9697690494940439, 0.029030367528206702, -1.963287283910285], [0.8423809667805806, 0.22512093460243432, -0.4896068541284334, 2.1486868134884842], [-0.4813409170237018, -0.09417300806040774, -0.8714599050740294, 0.9124236140562859]], [[-0.2520992761958244, 0.9360561548238971, -0.24544822255995563, -0.41100947964260837], [0.8376762095397187, 0.08409808803945162, -0.53965366630764, 2.4099055080359406], [-0.4845044095905739, -0.34165243538486384, -0.805313038813405, 0.27732968497904636]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7554800565272686, -0.5407917622006038, 0.36985693737649517, 0.29395115671716204], [-0.6378145594608042, 0.7361479534494668, -0.22644818032384526, -0.6246550929003956], [-0.14980811703434227, -0.40697722364786726, -0.901069957052447, 2.3649691215175093]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7798043648203551, -0.6227469732553197, -0.06396373901251326, -0.5590976781764837], [-0.4781725039907392, 0.658463022066686, -0.5811862911305067, -1.558554440279755], [0.40404976059187225, -0.42262590534909916, -0.8112528182345533, 3.5194428474978925]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9750959974059686, 0.19489945795259392, -0.1058394875868374, -1.7964813199316902], [0.21448366343605027, 0.7072684396765655, -0.6736231233831917, -0.07712843559646032], [-0.05643185237000765, -0.6795480524048765, -0.7314573743635571, 2.9790140457034853]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5299684732845712, 0.820663848956599, -0.21364518328331467, -1.0210849445128043], [0.7336640867647423, 0.3173662745793262, -0.6008457835013045, 2.1351032152957203], [-0.42528863741708106, -0.47517312084689733, -0.7702857132963992, 0.5263678800936629]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.47111765084958745, 0.8414040274076957, -0.2647402910780222, -0.9260176089361686], [0.7475652928408358, 0.221565314884545, -0.6261429103486742, 2.305944677953797], [-0.4681819005448221, -0.492897630246101, -0.7333877788046486, 0.20742301540578517]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.36210179166387746, -0.9305524211359445, -0.05435516527287278, 3.374378663781377], [-0.9279371548690606, -0.3543261005909837, -0.11569637441813338, -1.0809190078378148], [0.08840208757332933, 0.09233204188156804, -0.991796281982675, 1.5751722767509084]], [[0.5386788448206113, -0.8022312338621244, -0.2573910440531769, 3.545593480214785], [-0.7272310399182854, -0.28848885255353296, -0.622823567739464, -0.47273497538683584], [0.4253940722695839, 0.5226846366293916, -0.7388102962936431, 1.3411181326413124]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.047322426232773954, 0.9090520381386055, -0.41398669052457615, -0.782884861991259], [0.8669729264739249, 0.16846152183820662, 0.4690188273632454, 1.6617697597107557], [0.4961033488464698, -0.3811103614650262, -0.7801514978818634, 4.746459234070207]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.08771949193373801, 0.9228604376790077, -0.37501187088117294, -1.6150745764426613], [0.989567077924502, 0.12392206426101499, 0.07348687146185812, 2.273591816231992], [0.11429037152293159, -0.36465317022644883, -0.924102687162499, 3.4650932042488227]], [[-0.22728011740106543, 0.8648511114470743, -0.4476341176261235, -2.2530858609668383], [0.9703199401723237, 0.16212931420763002, -0.17942491236877214, 2.5353029031552805], [-0.08260122237676557, -0.47512802538192156, -0.8760310482845571, 2.737137916418008]], [[-0.13533334344622394, 0.9856643067217816, -0.10075098315319668, -2.521681299473569], [0.9524600714891251, 0.10140851550313823, -0.2872910113497811, 2.381967305539562], [-0.2729554878924341, -0.1348413417247063, -0.9525298495014654, 1.5012679105999105]], [[0.023940515705515704, 0.9818578963184093, -0.18810083238769112, -2.041994974526463], [0.9997133838244199, -0.02350469796162346, 0.004547458197850199, 3.2008481831667916], [4.3704488134510555e-05, -0.1881557881408945, -0.982139194553907, 2.489951952260137]], [[0.17355009079565747, 0.9848109353563551, -0.005271393303492744, -1.7359811950020847], [0.9434405547165409, -0.16779011447561915, -0.28594824217050957, 3.682937728213186], [-0.28248944352128413, 0.044653097169174316, -0.9582305647453726, 0.9242515865106621]], [[0.1961192571390949, 0.9378547276517576, -0.28629660633765247, -1.5496277533339644], [0.8960837997453391, -0.28997737428402687, -0.33607580430208817, 4.015215464034798], [-0.3982098200863006, -0.19063481377908995, -0.8972665751950458, 1.068741929588786]], [[0.6880485394471888, 0.7126285396473014, 0.1369298062685582, 0.6149548240355386], [0.7219190220868626, -0.6913479403757515, -0.029511877055765717, 4.5412586211762385], [0.07363513369131733, 0.1191578357405057, -0.9901410390787269, 2.2874743651095546]], [[0.5735261407661034, 0.817798937084899, -0.04767246963131974, -0.2613138146867793], [0.7911757798421988, -0.568064087556096, -0.22659231633078217, 4.748793721964337], [-0.21238797340958018, 0.0922393133748827, -0.972822315646132, 0.8192796742205765]], [[0.6417992681790388, 0.7656310898330076, 0.043620335234518456, 0.12214081700781312], [0.7214575586877305, -0.583529808938575, -0.37281624574641337, 4.728470308836837], [-0.25998594265304165, 0.27074341425274073, -0.9268793412637797, 0.10150014590566239]], [[0.7214806165367548, 0.6882218789085632, 0.07626509918246371, 0.6141950503353191], [0.6666113825789244, -0.6605501197847166, -0.3454023796510552, 4.820974313572283], [-0.1873365543025684, 0.30004030503244644, -0.9353506458960069, 0.25304880685795866]], [[0.8285433880912438, 0.5559785966550009, 0.06636003399500653, 1.4655733427116016], [0.5509454873957004, -0.7883705863304609, -0.27373506996232716, 4.871496142882973], [-0.09987454114336053, 0.2633621435789543, -0.9595131355853874, 0.7230614721944615]], [[0.8163679952137695, 0.5618651944199223, 0.13360688489038697, 1.2270098065828041], [0.46545445551595127, -0.5031387768876159, -0.7281507543307106, 4.0664317614109295], [-0.3418997605015242, 0.6566268913861939, -0.6722690527441403, -1.7431522453483894]], [[0.9544399571512749, 0.28321179576353717, 0.09399705811069121, 2.7404326454258463], [0.29517345058108724, -0.8498281428924175, -0.43665176241494696, 4.384243425338064], [-0.043783584425291164, 0.4445033253963544, -0.894706539288976, 0.3398351147970574]], [[0.9095831568366849, 0.4144704994015419, 0.02954125801057371, 2.180152900673515], [0.32690977540558064, -0.669914160229645, -0.6665920916633218, 4.176398528965763], [-0.2564926500765346, 0.615978265078928, -0.7448370945428741, -1.2195554415804872]], [[0.9427128742953788, 0.3250738983400908, 0.07496263906588463, 2.6570477519764655], [0.3200051276355713, -0.8176508185929979, -0.4785852663226711, 4.555739699974757], [-0.09428231501552928, 0.4751569208926422, -0.8748352676950878, 0.06013864425588446]], [[0.8638904276384267, 0.5008620448355467, -0.0532028296037996, 1.86221755134745], [0.2670580277052452, -0.5450426667192725, -0.7947380079584263, 3.7383332377380305], [-0.4270519158988525, 0.6723583148133874, -0.6046163722794979, -2.181812913400166]], [[0.865784646687332, 0.4981463292980663, -0.047614915387451495, 1.9715339763859796], [0.39413090093945385, -0.7374325942801324, -0.548501596914656, 4.751589652220643], [-0.30834684769776083, 0.45611775179238073, -0.8347926796604758, -0.8599127592833286]], [[0.712641659381274, 0.7014693132847928, -0.009092185329471258, 0.743468348350218], [0.4511576517810766, -0.46819115414092805, -0.7597722135111096, 4.270734509015018], [-0.5372137736075733, 0.5373433220055381, -0.6501257691726764, -2.132154255748269]], [[0.5934035177927706, 0.8040563535213939, -0.036954640209913875, 0.20474005016733307], [0.6640003393133757, -0.5149576181388296, -0.5421459221579603, 4.963529962969522], [-0.45494594674849775, 0.29717340372695267, -0.8394713536830487, -0.803823056624085]], [[0.4931444068879658, 0.8679107678454551, -0.05949363842486324, -0.2754400617598492], [0.7474543917588156, -0.45770559217042156, -0.481474322406068, 4.908066615635257], [-0.4451073198629458, 0.19296758783235068, -0.8744386678610394, -0.4281933054302132]], [[0.527988313403542, 0.8419654445634391, -0.11100689649915649, -0.007907991002210318], [0.708335350551453, -0.5087090626777768, -0.4893629743949253, 4.790166322137332], [-0.46849692855816494, 0.17974782254755822, -0.8649863283433892, -0.4916589716502344]], [[0.9213998735184957, 0.3480806318390678, -0.17280667469347166, 2.560547870961188], [0.2619531314994501, -0.8847680863319336, -0.38544259015599014, 4.091726059078592], [-0.287058931193112, 0.30987950423840904, -0.9064060143639961, -0.11320013704346606]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.3982019899366426, -0.9172714231673241, -0.00695064393347708, 3.5555609977089118], [-0.8404650826551415, -0.3618025072119314, -0.40338243716434485, -0.6575524576992544], [0.3674964218165728, 0.16646946271239096, -0.9150050808253818, 2.3269911337622586]], [[0.2561104986709445, -0.9665429972707218, -0.014214320154343096, 3.15022086707596], [-0.7501688147073893, -0.18945976225975603, -0.6335232812809548, -0.7178179430826146], [0.6096344494129506, 0.17291510319057313, -0.773593048816729, 2.616864774789576]], [[0.4312034300187799, -0.894382566806493, -0.11892613729819203, 2.993675869669025], [-0.8410055851775767, -0.35068808527457707, -0.41197994192262893, -0.043256504357139125], [0.32676169855134635, 0.2776647097473502, -0.9033986392068336, 1.778873675197294]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.05788420625768287, -0.9817974606303004, -0.18089545313747368, 2.4853055863835176], [-0.6928706317538009, 0.16996155720818396, -0.7007448585073303, -0.8823884872809116], [0.718734795539361, 0.08477508697290237, -0.690096716634509, 2.5821336852503656]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.3238600702936293, 0.9451263815213499, 0.043020667379362054, -2.0746266527915784], [0.7840969818991804, -0.24267993513739372, -0.5712253251198751, 1.8480736496955983], [-0.5294398717947132, 0.21872944939827021, -0.8196650841166331, 0.9025398592601268]], [[0.20542233713933344, 0.9786733585575601, 0.00034735267256785773, -2.090561984414693], [0.8231346256935014, -0.17258294057893053, -0.5409847655946962, 1.7260508983444287], [-0.5293874303273862, 0.11141627291735484, -0.8410323196765819, 1.0705951549375168]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3555874904118146, 0.932419244085554, -0.06443516060003349, -1.0690150273090662], [0.853394108465466, 0.2957892674341399, -0.42921696717069296, 2.0364559881619817], [-0.3811509311271064, -0.20761277063249167, -0.9009000528200896, 0.9054680549351211]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"ad9083b3-9b0b-4c27-a941-38f57be13edf\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, false, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, false, true, true, true, true, true, false, false, true, true, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9213203909758961, -0.38475953969169885, 0.055935979371544806, 3.344140325419914], [-0.34644343732893035, 0.7470987147647631, -0.567292213174616, 2.641728009876278], [0.17648139251416095, -0.5420365366034566, -0.8216146974605506, 0.4603509752461822]], [[-0.8701631862051189, -0.48784182213877975, 0.06947219548618493, 3.0189673184594015], [-0.41800848428098275, 0.656126339302191, -0.6283049688988792, 2.9578637710712354], [0.26093090357884186, -0.5757678207804092, -0.7748590066013995, 0.01606370625701962]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0035519565627868954, -0.9371946683560552, -0.3487886712746838, -1.337250151346301], [-0.27050435961646085, 0.3348868580847017, -0.9025952491070652, 2.1960261257644436], [0.962712197405364, 0.09755483528324072, -0.2523257400262512, -2.2337812981675023]], [[-0.11254601024115035, -0.9002956799872195, 0.42047721005441996, -1.1962754262393567], [-0.5104803282002881, -0.31066441452859145, -0.8018088650458622, 1.911045965957969], [0.8524923636604173, -0.30488573292621857, -0.42461919381808144, -2.9527345899631148]], [[-0.4222563351627376, -0.9063064920216402, -0.01755363023317119, 0.213786136676284], [-0.66155338492099, 0.32134680009749805, -0.677556900169041, 4.005196849486422], [0.6197150202427844, -0.27449003003119843, -0.735260849698226, -1.4247270996987662]], [[-0.43469865629118404, -0.884234768399543, -0.17078042209821864, 0.4577046674587554], [-0.4960954876921212, 0.3933831256114344, -0.7740406859950548, 3.692627635216733], [0.7516158229508979, -0.2517510493276746, -0.6096679947744176, -2.0251669289985004]], [[-0.4103301938227588, -0.8761054653277314, -0.253117256741328, 0.4746297003094013], [-0.5297853940557038, 0.4549309605858698, -0.7157969386255154, 3.981742452717054], [0.7422644867448656, -0.1596152709589423, -0.6508197884161817, -1.8463347780462909]], [[-0.21589526508751403, -0.9469080767935024, -0.23823167005254237, -0.4622937747081504], [-0.5370428234772658, 0.3189227794273559, -0.7809438305754755, 3.830297297298388], [0.8154595270547516, -0.0406614665938288, -0.5773841051415262, -2.0340412939353927]], [[0.005838729748975147, -0.9916153637981924, -0.12909252307665808, -1.5239952734886666], [-0.45658621945702443, 0.11220874957773919, -0.8825747677789926, 3.3376881375338665], [0.8896600100245379, 0.06409498262406588, -0.45210275354786333, -2.310256416229457]], [[0.31327880364908467, -0.9471563069783762, -0.06892982906755851, -2.7947217398280397], [-0.5076553305492026, -0.10568365582530281, -0.855053817169644, 3.1039650178681604], [0.8025848594068908, 0.30286283205848047, -0.5139373973630817, -1.3785805453113285]], [[0.44634356822132604, -0.8936154629518108, -0.047210417080086386, -3.232090755327271], [-0.5152577204626433, -0.2135109448028148, -0.8300135890171016, 2.878675132360253], [0.7316330368505071, 0.3947967588808581, -0.5557415033683145, -0.8455889077919247]], [[0.5140476720385009, -0.856347649625629, -0.04923102530375412, -3.4142843516686656], [-0.5008988862722432, -0.25309665083618127, -0.8276728768461215, 2.717657261025015], [0.6963155151244472, 0.4501230812968487, -0.5590473281224111, -0.5847101925379736]], [[0.5255052036175291, -0.846598941245515, -0.08434757644931029, -3.408044980924481], [-0.5354806967718806, -0.2520786515012465, -0.8060501081458984, 2.8077683700466443], [0.66113894481841, 0.4687500252152379, -0.5858060340292794, -0.37554727338075067]], [[0.5145650136520267, -0.8499233728988401, -0.11337154372040897, -3.348477487068881], [-0.5692879208313811, -0.23976310622326039, -0.7863999720814189, 2.9111537844285578], [0.641197403239262, 0.4691949627760642, -0.6072248158505996, -0.26727861804354197]], [[0.5228479550416004, -0.8423599906696685, -0.13061264114859888, -3.3518719427861075], [-0.6084413482985583, -0.26147496781104645, -0.7492863050188789, 2.9488931721379106], [0.5970168687645676, 0.471232943805087, -0.649238300690388, -0.04878597921775701]], [[0.5281331037478411, -0.8386681557000387, -0.133083242147037, -3.363376946808493], [-0.6241597901698589, -0.27713335701634895, -0.7304941195957475, 2.940285697155334], [0.5757603503722613, 0.46886333514526823, -0.669826240076982, 0.04769500478017527]], [[0.5384708591966378, -0.8313567263853818, -0.13745954783068515, -3.3922153272039015], [-0.6428420073350272, -0.2998215698128162, -0.7048838059428318, 2.924824967808756], [0.5447965559743454, 0.4679241602746754, -0.6958762051038474, 0.18824947987300117]], [[0.5880102158147082, -0.8025043888675938, -0.10114688302557803, -3.5599496508931248], [-0.6238312597752711, -0.37034764567993306, -0.6882420945180037, 2.6895138548464184], [0.5148577914577369, 0.46779196999048644, -0.7183955229451815, 0.31403800168240054]], [[0.6679957916464422, -0.7428090030036734, -0.04490442516424098, -3.785867260939967], [-0.5417706483834634, -0.4440638287283588, -0.7136468878691142, 2.243200258316739], [0.5101629023094523, 0.5010410173546667, -0.6990648839953247, 0.36965101942603446]], [[0.6902234067541033, -0.7233108236510253, -0.020324890111257765, -3.866107402553815], [-0.5599860587104437, -0.5161591839173294, -0.6480704521174676, 2.1118287346661098], [0.45826549381194187, 0.45869505038431657, -0.7613091277097794, 0.5427870100506095]], [[0.6370113918391891, -0.7704884367916732, 0.023749851313699222, -3.8359468430119494], [-0.5414494060020479, -0.4691552561233485, -0.6976574276762663, 2.2352924869696786], [0.5486793484423562, 0.43155638614456737, -0.7160377491241035, 0.10176057009958579]], [[0.5297108947244296, -0.8432716974791403, 0.09110001229908488, -3.70114768624935], [-0.5068039833532709, -0.40080662540013884, -0.7632193469066477, 2.362353551099705], [0.6801147627183972, 0.358115754004207, -0.6396850914836896, -0.627529003706003]], [[0.5099939507482563, -0.8413101482725628, 0.17917422977030945, -3.766139660638419], [-0.4603474287670005, -0.44290869263049437, -0.7693582616830457, 2.1232994983362135], [0.7266267370719279, 0.3098856634404776, -0.6131757175282293, -0.9512445466742773]], [[0.7282800887869223, -0.6682421626920776, 0.15185692041236543, -4.082458659566209], [-0.47440039484068386, -0.6515472637867401, -0.5919716449518642, 1.5657635184749559], [0.4945223732567777, 0.35908017914196766, -0.7915232449497975, 0.19574335707385854]], [[0.7989004306473987, -0.5918796111972188, 0.10694217016888166, -4.008977140127974], [-0.4496099512501658, -0.705786337783474, -0.5474637313421011, 1.2661661726658648], [0.39951094308945345, 0.38928674681681863, -0.8299679723366165, 0.6112428737423702]], [[0.8419449334095183, -0.5368860132233643, 0.05368554657599478, -3.9863164484405003], [-0.4273200806155637, -0.724238528677945, -0.5411802863012594, 1.0880587465719385], [0.3294332676108318, 0.4327030880217131, -0.8391911342523366, 0.8848847386774155]], [[0.8463760908958771, -0.5324708016755723, 0.011061560594580161, -3.9392448938353137], [-0.4562644248261027, -0.7356445886863813, -0.5006493920644982, 1.1426997252471522], [0.2747185603448006, 0.41869067878258215, -0.8655794753242835, 1.0798468277925533]], [[0.9152795640044623, -0.4026034278371916, 0.013183307989447945, -3.9445592579522306], [-0.36510235469261343, -0.8429625740107848, -0.39511310964712504, 0.5434955925613728], [0.17018692756410667, 0.3568256979406825, -0.9185378767233467, 1.4190528399020585]], [[0.9935760240829211, -0.05788276630613468, -0.09724335315240709, -3.41826683723212], [-0.09005751932867428, -0.9247791695351314, -0.36969329288787317, -0.6532228475878796], [-0.06852975689392032, 0.3760758872337639, -0.9240511887668335, 2.205811679804769]], [[0.9610339565831432, 0.20534895032872874, -0.18505551300363526, -3.0182736567388133], [0.11514278901293257, -0.9059773239887222, -0.4073662069398452, -1.218793196513834], [-0.2513083214548866, 0.3701849497442093, -0.8943194231092179, 2.848798966640484]], [[0.979729822521144, 0.004754273615901014, 0.200267001138662, -2.1796279665397518], [0.06016627928960565, -0.9605453659245817, -0.2715375090797898, -1.1727506204850797], [0.19107457627620913, 0.2780827159015765, -0.9413609878349912, 2.2971269498862013]], [[0.8754283118781808, 0.48001577294243086, 0.056657995804647004, -2.0336974776970718], [0.4402442847589219, -0.7434747916049543, -0.5034185177216629, -1.5828487390917243], [-0.19952503727408247, 0.4656501819761822, -0.862183082370749, 2.6095003311817897]], [[0.7171410161424839, 0.6957827420867876, 0.0399391885285148, -1.8028783313277958], [0.453815665531346, -0.42271750547294634, -0.7844496492988384, -1.3164807729225954], [-0.5289235338727774, 0.580686048033634, -0.6189051695814252, 2.586219957352119]], [[0.8395443597244011, 0.542132314188694, -0.03546578586971803, -1.8865416036186644], [0.46673018165975266, -0.7531096398370282, -0.4636688558792751, -0.984916036505525], [-0.27807949507793595, 0.3727176200516322, -0.8852984638641633, 2.426458660387087]], [[0.8646933079945075, 0.5015749768645322, -0.026981951242657842, -2.0058202671160545], [0.4421522448877772, -0.7855403150981567, -0.4329293310647685, -0.7629494245289402], [-0.23834192969390916, 0.36242096509284993, -0.9010239556254601, 2.2643883995197385]], [[0.9231277784939429, 0.3682863902092238, 0.11045469369609064, -2.077765585078903], [0.3732936246844153, -0.7896300054648676, -0.4869664508357066, -0.3814421563326784], [-0.09212477594441555, 0.49076429093426627, -0.8664083543000834, 1.6693512194090077]], [[0.8914743795798481, 0.45268338683239945, 0.018739846281993308, -2.165027008445341], [0.38000947675274105, -0.7245538057020524, -0.574990939251029, 0.04500413428824862], [-0.24671081883620855, 0.5197110100128924, -0.8179451313752939, 1.9494698964326984]], [[0.983707220323228, 0.1791644483367229, -0.014839310501024605, -2.3171488669493883], [0.1349678681104317, -0.7905224185495272, -0.5973759120924874, 0.8348840728523315], [-0.11875933336657454, 0.5856401678700017, -0.80182405458774, 1.5108096170686505]], [[0.9967957098215455, 0.06240211353840071, -0.05004287269234754, -2.225319660020595], [0.022950628570069857, -0.822431819870412, -0.5684005368689239, 1.1691071398863768], [-0.07662624569689323, 0.565430701227465, -0.8212286773973597, 1.3149807743655249]], [[0.9625768003280875, -0.2508690090789935, -0.10252143070531736, -1.962881719887834], [-0.27100425240873943, -0.8932773380902466, -0.35862556020281583, 1.6963734543291928], [-0.0016120317991702299, 0.3729883879400632, -0.9278346101624746, 1.3207458382534427]], [[0.7407430720971724, -0.6711047326729939, -0.030300807315195938, -1.3272252984024162], [-0.6447686244451324, -0.6975629041987851, -0.31253706278918, 2.4518402887301844], [0.1886083828231795, 0.2510466738868799, -0.9494221639814181, 0.9404622171966267]], [[-0.021171934304441975, -0.9954058125047944, 0.09337568007505223, 0.33762077992579853], [-0.8569326983492684, -0.030041745113360996, -0.5145520809892674, 2.9551909825137463], [0.5149933006337559, -0.09091073634183125, -0.8523597470083485, 0.20798183271480275]], [[-0.29315932277419343, -0.9546123468025962, 0.05265813140072162, 0.9203466763594381], [-0.817154322378455, 0.2215933944982419, -0.5321232760676362, 2.8563093921693805], [0.49630275527019174, -0.19902671892684562, -0.845027774847922, 0.24965629951412002]], [[-0.4210459760329367, -0.90592463421374, 0.044953789508486997, 1.1198419581590717], [-0.7884536954905598, 0.3410483041153677, -0.511885557842094, 2.8093042652731803], [0.4483983230719664, -0.2509713357830602, -0.8578766417623893, 0.33324302214079243]], [[-0.486526716296354, -0.8713644850979024, 0.0633694598363809, 1.2329011419506795], [-0.7549496552841902, 0.382803703586719, -0.5324587707105348, 2.869490186245709], [0.43970759865639086, -0.30689616913601087, -0.8440805465436764, 0.25353140129557]], [[-0.513421277398048, -0.853657868121931, 0.08756047115266372, 1.295769829431944], [-0.7511947392663648, 0.3977645881361527, -0.5267730024625548, 2.974692515108665], [0.4148554635213265, -0.33623143312069526, -0.845484102611107, 0.20783770907823906]], [[-0.5562429199012278, -0.8228301785444707, 0.11638002979992296, 1.4999360185836568], [-0.7360815607800053, 0.4228389152929507, -0.5285746755128857, 3.076186880074479], [0.3857171890639927, -0.3796811148718824, -0.840871274970323, 0.22507411311569483]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6239269444174507, 0.7804308490437416, -0.040532183395027385, 2.4361051463962915], [0.7281453197955335, 0.5617278805004388, -0.39276733765467986, -1.4953064348665437], [-0.2837596893319479, -0.274571444490045, -0.9187442302299844, 2.3708360502141086]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9751550421416508, 0.21546627399737, -0.051448309548557426, -2.40317470978496], [0.1737272653241273, -0.8879435995549172, -0.4258814404179373, 0.7416863671223068], [-0.13744628430304762, 0.4063624598546808, -0.9033150447945273, 1.5741515820121363]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8708136943053169, -0.4887012800413947, 0.05342816388598148, -1.435755353476708], [-0.368026001416067, -0.7200932551838841, -0.5882368282591446, 2.5343733698819424], [0.3259453513888885, 0.4925817320248282, -0.806921845771568, 0.16297768477973126]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9675932080003089, -0.24984460108647832, -0.036620474322554775, -1.7767418629240803], [-0.24197992875559116, -0.8759745272321348, -0.4172701064297286, 2.136322508923921], [0.07217408060453145, 0.41260914065053933, -0.9080443817019705, 0.9810193367317663]], [[0.9527638421335908, -0.3026465622560971, 0.025418880333431704, -1.6921091463310982], [-0.219295554227384, -0.7434329965336562, -0.6318360859915277, 2.205234766875669], [0.21012025370949713, 0.5964163294373781, -0.7746851237512578, 0.31765212216525024]], [[0.9575182170839741, -0.2883148070927584, 0.005782383884941594, -1.7169583249746483], [-0.2134425541806966, -0.722059408855275, -0.658082431119682, 2.2550555609875564], [0.19391013386913986, 0.62889170935435, -0.7529236866298045, 0.2852397213866653]], [[0.9007396178693592, -0.4333080786521821, -0.03020347290155609, -1.4530411898249265], [-0.32631357494354996, -0.6291502569021598, -0.7054710518848428, 2.448038224066062], [0.2866837833016037, 0.6453015289108657, -0.7080948701813751, 0.04075181507648344]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.45431234053668684, -0.8735637761451093, -0.1746041988131302, 1.5837912608876978], [-0.69245126583206, 0.46959629196043895, -0.5477139463484422, 2.640606964719475], [0.5604565475428541, -0.12792830642240147, -0.8182437330846114, -0.06551220392526452]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.525073428113388, -0.8472238672386797, -0.08068217814604683, 1.438353249595411], [-0.6892004754156636, 0.47891719872448024, -0.5437288124172925, 2.9984243642604986], [0.49930010992996765, -0.22989135596414234, -0.8353737874011191, -0.0613128726750251]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.4890821067147061, -0.5795497125430652, -0.6518595121517787, -4.267603961672222], [0.871880598554179, 0.30344821387775917, 0.38437404095386596, -2.4435596947559612], [-0.024958260282144595, -0.7563341273442895, 0.6537092419860993, -3.3911829584250377]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7826531905500195, -0.6050719504644504, -0.14608873359373176, -3.0611934522132174], [-0.5837498847111922, -0.6320099841397451, -0.5097052599761444, 2.539713702218947], [0.21607881761418557, 0.48420172935340156, -0.847855311872038, 0.8898310751549872]], [[0.987501118612331, -0.15570457778691824, 0.024446373874109695, -3.566520058680363], [-0.1313229965221602, -0.8986003738396143, -0.41865455774390653, 0.7391803235607665], [0.0871539518543819, 0.41021147301300925, -0.9078164660792738, 1.3833813668737795]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.3771895381849695, 0.9236302302059656, -0.06808267131572143, 1.9826562758937991], [0.8455265994374181, 0.3134312929326798, -0.43225639874308963, -1.9136645348725079], [-0.3779058373822842, -0.2206083009776015, -0.8991769323176448, 2.6206260201723732]], [[-0.22767372271357333, 0.9634357343835542, -0.14126663335184572, 1.350733899393364], [0.9023016310998002, 0.1541965370376177, -0.4025856362070648, -1.9669063602933126], [-0.36608256240960635, -0.21912328419962257, -0.9044161342110103, 2.4752574812765142]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.3479131449031978, -0.93734062564994, 0.018681410807138144, -0.3612071265450592], [-0.7908458907776944, -0.3041236529637772, -0.5311041147910669, 2.510310495401052], [0.5035069221407001, 0.17000398587723398, -0.847100598596325, 0.3158585080942914]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6204614548522969, -0.7828752984430968, -0.04619361568662095, 2.4825302345306204], [-0.5942795218657725, 0.5077918123082262, -0.6236820706447439, 2.5952335252598284], [0.5117220270161915, -0.3595187650740344, -0.7803120046661344, -0.4435601809111963]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7962675746201484, -0.5920480555509502, -0.12424592358256797, 3.0383887598994113], [-0.42457672214651976, 0.6932429431676495, -0.5823648587952149, 2.231015142271728], [0.4309205920118732, -0.4109663266821172, -0.8033766997576814, -0.24297155815021954]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.22107973361773048, -0.9709638806291697, 0.09139416774092593, 0.4587136383723206], [-0.8993318474111452, 0.16672015283913755, -0.4042358456017364, 2.9968608926642966], [0.377261155720503, -0.17156203878142096, -0.91007718751411, 0.533485800789716]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5866278097430889, -0.8082234598368981, -0.051406729183055916, 1.5068976629954902], [-0.7296907628423831, 0.555028544524742, -0.39936788226552067, 3.3417835420333044], [0.3513106936296233, -0.19676929062234227, -0.9153483723749407, 0.24166376418212604]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6971697232622084, -0.69772415647252, -0.1647281956472728, -2.9114654694069344], [-0.6916450420754473, -0.5941492492608826, -0.4106261138495482, 2.6961388346747555], [0.18863062513533807, 0.40020953396619613, -0.8968003212441505, 1.100733496226974]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9577354165514315, -0.011093276064587917, -0.2874366210301169, -2.856532478822716], [-0.07839549462515051, -0.9714957003879875, -0.22371913317848308, 0.05590319194183547], [-0.2767616633595307, 0.2367974732842576, -0.9313055021531105, 2.592902728722729]], [[0.8858467626424766, 0.3344982186387701, -0.3215376414097315, -2.2815142374064257], [0.25593750015666666, -0.9303148931884672, -0.2626979168651452, -0.8308834354161971], [-0.3870032417556729, 0.15041655905923396, -0.9097270742543501, 2.783170686881872]], [[0.7640992325205362, 0.5979720111608094, -0.24203684994195412, -1.710115446805622], [0.47868796483653087, -0.7770840090770843, -0.4086542244457358, -1.0881633672917517], [-0.43244675415845996, 0.19639225215110284, -0.8800112999915568, 2.8450176150486466]], [[0.60588934430145, 0.7864811480082904, -0.11977272765333788, -1.257447985566115], [0.6626883863280443, -0.582248520652819, -0.4709891323836853, -1.2726521875619772], [-0.4401615670272584, 0.2059953009783611, -0.8739700972498675, 2.767637086647806]], [[0.48982606311112165, 0.869266997156579, -0.0666731996490604, -0.9726376065889245], [0.7103247480117494, -0.4422627336974918, -0.5475786945676991, -1.069464621100987], [-0.5054791590749356, 0.22085869246376744, -0.8340936744179818, 2.749483303162138]], [[0.40133740247075606, 0.9139687725298814, -0.05991136969097047, -0.7529447204707381], [0.7407465658729294, -0.36235372533832516, -0.5656803893373886, -0.9165334100775524], [-0.5387233190845633, 0.18264955672998365, -0.8224453324694916, 2.682357567910689]], [[0.3631163479308468, 0.9274913773594923, -0.08891716813504735, -0.6073972440561651], [0.7302195533571677, -0.34255450391222353, -0.5911309632765898, -0.6281784181180611], [-0.5787278477490286, 0.14972026173248026, -0.8016594797459422, 2.630868493012398]], [[0.276088569446825, 0.9609986193587655, -0.016023589215674316, -0.507946275698169], [0.7870708195572703, -0.2356258408900177, -0.5700877021181207, -0.5881036180743013], [-0.5516290663319445, 0.14478299864078967, -0.8214275722681387, 2.428016987967432]], [[0.2581097114127077, 0.9642512265014064, 0.059991241568932374, -0.5576764515787401], [0.7736398262737482, -0.1690955182364387, -0.6106456623242933, -0.2663532689323986], [-0.5786715787712176, 0.2040251893832804, -0.7896283467679861, 2.2710101280392845]], [[0.3101440628792713, 0.9504054539347395, 0.02324077003544306, -0.5816140459662963], [0.7448083232561884, -0.22771414827705727, -0.6272215145247806, 0.037338466563455026], [-0.5908224960756352, 0.21183894780128637, -0.7784940836804093, 2.1477127957263527]], [[0.385213256983595, 0.9219383784033827, -0.04050151936695423, -0.5841901373149196], [0.6898592510525404, -0.3168394971063375, -0.6509277585190474, 0.3345455507948406], [-0.6129477631750676, 0.22280565410317638, -0.7580584938633278, 1.9442776954102279]], [[0.5176538157670341, 0.850666461819845, -0.09165750245744114, -0.5864111550769032], [0.5653780906445331, -0.42050522973407234, -0.7095935219443855, 0.75567776202387], [-0.6421698697704306, 0.3155026505454449, -0.6986243166808804, 1.6981896513544972]], [[0.6037454377212097, 0.7905530470084734, -0.10255401648128509, -0.5633916859993205], [0.4956049575449679, -0.47299256788578753, -0.728459852553083, 1.049164351473829], [-0.6243934436616674, 0.3889780335577156, -0.6773691142367632, 1.455062780651264]], [[0.7375270441813332, 0.6673175436542522, -0.10363954376781548, -0.4015954931634644], [0.4014809049411951, -0.556672688580192, -0.7272747766535697, 1.2232713373119912], [-0.5430165209906094, 0.49477551851335133, -0.6784764138944696, 1.167488564544006]], [[0.8762451194798285, 0.47971846476046215, -0.045438806714594215, -0.24308020820378884], [0.3135082871546155, -0.6391670803969384, -0.7022663292670619, 1.4028960138341398], [-0.36593311475344803, 0.6011120011318352, -0.7104627489334827, 0.9825597767892389]], [[0.9947916740639445, 0.09977995994864094, 0.020820297925396573, -0.15388921801435587], [0.09136995053024624, -0.7824020229094161, -0.6160345823793931, 1.5040411854099947], [-0.045178062742386595, 0.614728423077948, -0.787443908165492, 0.9665327689701846]], [[0.9379049130287029, -0.3204792347069547, 0.13276834802868573, -0.08416825803323401], [-0.20133912878970395, -0.814590116381932, -0.5439719639017009, 1.4181153785146823], [0.28248350276578027, 0.48346251397033363, -0.8285330821703261, 1.0634176801633555]], [[0.8360439523031417, -0.5127355260268278, 0.1952761894531288, -0.018430670538509643], [-0.36156828458533485, -0.7825733521174472, -0.5068010695901107, 1.430521025851025], [0.4126728551763011, 0.35310229241064706, -0.8396546228628682, 1.1650818461748573]], [[0.8163066379006976, -0.544068845868927, 0.19399114380330235, -0.029854626722763285], [-0.3921844704578251, -0.768621104704355, -0.5053839515999419, 1.4156763334604334], [0.4240693505206136, 0.3364679603735114, -0.840805862010437, 1.1656456829802664]], [[0.6589170462997892, -0.7432358977931828, 0.11588238143532784, 0.2172952408374575], [-0.5369465282361099, -0.5726223203879983, -0.6195095673261657, 1.521411984552984], [0.5267985876127136, 0.3459827718615855, -0.7763885429758892, 1.016931155418035]], [[0.29756507633736096, -0.953283442037455, -0.05201638666384917, 0.5566857566376219], [-0.6604149469537652, -0.16618970828292723, -0.7322793720301639, 1.5798553235502721], [0.6894252121763436, 0.25225316647776286, -0.6790148870367614, 0.8382794967495198]], [[-0.17174487607193734, -0.9638141590862509, -0.20387732656648644, 0.8134559441284739], [-0.6558859571474697, 0.26628598541816284, -0.706332347543722, 1.4454159852344122], [0.7350627923924473, 0.012411313981230132, -0.6778854258099056, 0.8077135546373934]], [[-0.19841950546580867, -0.9599204520229706, -0.19794551179231015, 0.704771472281922], [-0.8172997766308702, 0.27352015134427865, -0.5071565852157817, 1.3805681002681371], [0.5409720648701127, 0.06115106374069482, -0.8388145041864429, 1.0280625567395507]], [[-0.2765888754834961, -0.9351891405669623, -0.22117835636517602, 0.7374625024057705], [-0.8696227051608545, 0.34152087113604057, -0.35653870091085077, 1.237909390518815], [0.40896814622595234, 0.09372708223403703, -0.9077225839585579, 1.0789660255984237]], [[-0.24958732654225546, -0.9602834433525773, -0.12474724386697753, 0.584451720666554], [-0.9134755213078642, 0.2762325151920605, -0.2987608902148903, 1.4413456434714105], [0.3213543813312887, 0.039386621758987855, -0.946139553990636, 1.1739109070306468]], [[-0.2585098760718158, -0.9659575291405404, 0.009934579509799979, 0.37834413132927], [-0.8070777862206855, 0.2103161762467825, -0.5517178200838267, 1.9039961073613172], [0.5308465794958577, -0.15064248373428513, -0.8339716728594047, 0.7987328091176469]], [[0.07451592320455869, -0.9925736068342118, 0.09615098650090032, -0.08606383876883497], [-0.8158310902408185, -0.11612537548280555, -0.5665108378181791, 2.009630207917846], [0.5734692750143204, -0.03622888605935021, -0.8184255973693934, 0.5420218600345841]], [[0.7464303574670249, -0.656385189498534, -0.10954544471872486, -0.7165113117632123], [-0.6628241662820109, -0.7186805485514663, -0.21014850398306612, 1.5892971091732153], [0.059210185307990756, 0.22947059101492145, -0.971512944749094, 1.4853664565171818]], [[0.809974284414779, -0.5653108225723448, -0.15609398601274, -0.7812499616458604], [-0.5850564729407376, -0.7604435075629524, -0.2818414364061766, 1.5227900650307422], [0.04062735601673641, 0.31960811267540085, -0.9466784418455702, 1.3921952786582301]], [[0.25231983983562994, -0.967390118878936, -0.022159790628971165, -0.12343495377433311], [-0.8764922435489673, -0.21878831599738996, -0.4288274941996185, 2.1622522585526953], [0.409995177317758, 0.12762456925852458, -0.9031145685336694, 0.8827643833440841]], [[-0.3661847272400095, -0.9280918980110635, -0.06748462330324884, 0.9382026386829622], [-0.7754268664788233, 0.34443150572758297, -0.5292259560953738, 2.0966225214467658], [0.5144141524870722, -0.1414650723975756, -0.8457929492568237, 0.6331122497551014]], [[-0.5409102278414892, -0.8219515702640708, -0.17835846365366861, 1.3666151810421137], [-0.638349281963647, 0.5392728798339028, -0.5492676536008154, 1.9686607587752516], [0.5476552927097162, -0.18324949444971853, -0.8163904109866542, 0.429281862465832]], [[-0.6064420245581548, -0.7571829310775146, -0.2426975066511198, 1.5207684189129715], [-0.5070525553491191, 0.6033873271546264, -0.615484719179221, 2.0119213232785973], [0.6124751235468548, -0.25019540825934394, -0.7498509723419748, 0.08693131130221504]], [[-0.6257395143912221, -0.7441910269980417, -0.2337301338403701, 1.5397729618868978], [-0.5029452368296498, 0.613960749179274, -0.6083570392603278, 2.1653285016473545], [0.596234977907037, -0.2631195808046686, -0.7584668333667403, 0.03636713206753872]], [[-0.6435175671656075, -0.750383581814318, -0.15102854330480892, 1.4813101757844174], [-0.5190853025502643, 0.5728358445606819, -0.6343575835936315, 2.368675594442012], [0.5625260788848445, -0.3298235518121248, -0.7581430176717823, -0.04122420320186704]], [[-0.6677303343168235, -0.7393128841695384, -0.08690604083757261, 1.4916092931862934], [-0.5017977263043039, 0.5332688818626282, -0.6810457704977054, 2.5347808564510332], [0.5498502000626844, -0.41114566632508864, -0.7270653330706429, -0.22316989940794307]], [[-0.6946223204959919, -0.7193304731295634, 0.007968832785401891, 1.4602462493912518], [-0.5019614539858098, 0.4767252259391207, -0.7216424029017041, 2.7653326665088795], [0.5153004274995461, -0.5052689673634154, -0.6922201528692247, -0.3457235980057392]], [[-0.732206492368703, -0.6807342962461553, 0.021782342559327927, 1.569512922090922], [-0.44663605392153194, 0.4557710499590153, -0.7699279091945291, 2.7979380182081273], [0.5141885722869799, -0.5734749932939608, -0.6377590016581255, -0.617488605991969]], [[-0.7702103672648065, -0.6277226572253742, -0.11287274145570861, 1.9002139742514907], [-0.3132806508333272, 0.5265070953303749, -0.7903451855867905, 2.6467768289380387], [0.5555458792676432, -0.5733712097521872, -0.6021745858603255, -0.9629773845324454]], [[-0.7527488250992312, -0.6171049539949818, -0.22923935540517093, 2.039960865841547], [-0.20456397018344713, 0.5502565251727851, -0.8095500840637082, 2.4342335808052478], [0.625717818520867, -0.5624937619739641, -0.5404423922360871, -1.4300730567136175]], [[-0.7476991652362053, -0.6208292932957022, -0.23562034481563918, 2.033975203157699], [-0.20315130409822882, 0.5516786188864043, -0.8089377288189603, 2.5357318055026807], [0.6321989449123359, -0.5569754842446368, -0.5386119233754312, -1.6024439399327508]], [[-0.7281454523654539, -0.6420746434085609, -0.23988403967600244, 1.9667038584074616], [-0.23239264009502353, 0.5605144356492834, -0.7948693152074938, 2.6848209776221763], [0.6448238992385233, -0.5230331917962135, -0.5573494588230008, -1.7219809706588336]], [[-0.7165226760958232, -0.6414713451618534, -0.2740616134680705, 2.0191851446462397], [-0.23779370777224232, 0.5939666858328658, -0.7685426004228073, 2.784944285189754], [0.6557815239730449, -0.4855080735239774, -0.578128448840417, -1.7963741599054979]], [[-0.684696796109004, -0.6655602779854962, -0.29701820443523974, 1.890568952512404], [-0.25626334909323367, 0.6013541608946965, -0.756770948891509, 2.892569204699887], [0.6822898162141835, -0.4420437642841538, -0.582303973151404, -1.9080151978756754]], [[-0.5970275897306727, -0.7340210431784124, -0.32368374267432487, 1.544877833979565], [-0.23658023355934796, 0.5466393963358226, -0.8032528639616617, 2.860089753722422], [0.766542790840399, -0.4029869458740353, -0.5000136710788311, -2.281400208699671]], [[-0.42923739969991226, -0.8517477523359716, -0.30046800343710167, 0.6037779925443909], [-0.3288757710117829, 0.45722964883764117, -0.8263061027641105, 3.1659556744940613], [0.8411872454693206, -0.25586483661188747, -0.4763792642898188, -2.4454922508743024]], [[-0.1524083635862673, -0.9165402788437591, -0.36976425999001084, -0.6004704281889193], [-0.34229975837628457, 0.39993105424653963, -0.8502270445385682, 3.273532333662482], [0.9271475428023812, -0.003011495684145271, -0.374684353515397, -2.3617445068918634]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.2334151255550062, -0.9645307929074366, -0.12327906835911973, -2.4417157777925063], [-0.32113633448850154, 0.04320206511246916, -0.9460470581537197, 2.8489413484044572], [0.9178174294670102, 0.26041108099189986, -0.29966186788311955, -2.0199331059985273]], [[0.2003564649032633, -0.9771372911728731, -0.0711336852047455, -2.3758171054765462], [-0.3332560074434335, 0.0003043860658616948, -0.9428363277112234, 2.798946182272713], [0.9213021873817135, 0.21260908152866664, -0.3255758866642413, -2.1058351336233305]], [[0.08347805005763098, -0.9963764163423883, -0.01629270128846355, -1.9940369084380103], [-0.3484597515486758, -0.013869132613749335, -0.937221131169788, 2.800007684145387], [0.9335990663605072, 0.08391474314589592, -0.34835484663421523, -2.388279030639827]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4148749122966183, -0.8806983569260942, 0.2285808637103099, -0.11059643450732252], [-0.3903546367879022, -0.054646319875157, -0.9190413686348875, 2.9351365093794803], [0.8218893262995075, -0.4705148072396661, -0.32111330007204886, -3.0947838401498022]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4967847611373071, 0.723138403906502, -0.4798705553556139, 4.588700816807398], [-0.7242273504099154, -0.04074334380013228, 0.6883565390509612, 2.25491068932338], [0.47822551795150176, 0.6895004196746661, 0.543957282558545, -2.543511760495484]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.2288265508416149, -0.9648982079364173, -0.12887923785862523, -1.8418763557732034], [-0.82044270279519, -0.11990251006790793, -0.5590144537572694, 3.6020846898337893], [0.5239391005260565, 0.2336553795668, -0.8190805714576808, -0.0945581937534947]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.16045216954217023, -0.9543491026414426, -0.25193826937701197, -0.29257740032372614], [-0.796630103790454, 0.2759145191991019, -0.5378212117701746, 3.995038669660633], [0.5827826172974115, 0.11440702942827286, -0.8045343079032595, -0.5435641615359541]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.41868395348426846, -0.8750699430039627, -0.2428092707163882, 0.6898092033855514], [-0.49277678425451243, 0.4435036236949864, -0.7486491679479765, 3.4661577296318766], [0.762807176155655, -0.19379662179836177, -0.6169020030644885, -1.8994053002779812]], [[-0.4859737257964782, -0.8451090466969768, -0.2227560033454008, 0.9265337033001118], [-0.4621015820555654, 0.4648020780283883, -0.7552623094807761, 3.4867036811265826], [0.7418164636196967, -0.26410173693374117, -0.6164078251055448, -1.876305548063243]], [[-0.49043099293068015, -0.8551642344509209, -0.16784389559646673, 0.8468192589127832], [-0.4402850512390713, 0.40934383853345135, -0.7991161965009269, 3.40509098326464], [0.7520814549159124, -0.31801219154408245, -0.5772709339650614, -2.0349777836410006]], [[-0.6212670047699898, -0.7512898726567738, -0.2226899998372036, 1.525617273292692], [-0.28736023687356843, 0.4828261666106368, -0.8272260797992554, 3.1345936982480547], [0.7290071351146652, -0.4499360177619103, -0.5158548021221299, -2.056876964488817]], [[-0.6410357624915006, -0.7433757236510746, -0.19095990336502827, 1.5361487757353507], [-0.27207054262940933, 0.4527386054162049, -0.8491203536596732, 2.9857070312087526], [0.7176703777085123, -0.4923619488262987, -0.49247227364359325, -2.2409316688527308]], [[-0.5340837800264946, -0.8378939049651082, -0.11264244286650232, 0.9216970514165109], [-0.3885512895390029, 0.36160238292287344, -0.8475090631150074, 3.2825113772211396], [0.7508544541455346, -0.4088734776025732, -0.5186907248090998, -2.19283662788897]], [[-0.2812923793580198, -0.9595285830974367, -0.013397594341123031, -0.2833317472784694], [-0.6526928293364378, 0.2015386691460484, -0.7303247465146141, 3.744355473556555], [0.7034676025574309, -0.19669027189432903, -0.68296871750779, -1.5305078579090274]], [[0.16336681849536536, -0.9815107729503899, -0.09973908560354121, -1.6994076110369363], [-0.9430385602105483, -0.12566113483750388, -0.3080382332558196, 3.602950280486897], [0.289809517736596, 0.14438102982621664, -0.9461313659611983, 0.7179396551931393]], [[0.2730109566987613, -0.9509695817851939, -0.14533365763552653, -1.9959548147260737], [-0.93380716871929, -0.2256527244310819, -0.2776418909409984, 3.2844761065906933], [0.231234057117221, 0.21151288962170475, -0.9496278788836109, 1.0201230636164462]], [[0.322339361024667, -0.9431240258345609, -0.08132901221470677, -2.2406361835067674], [-0.9185696136346041, -0.2908685635973407, -0.2676291157889851, 3.170527513607517], [0.2287513961517691, 0.16097375750236528, -0.9600834589524945, 0.8656352102051591]], [[0.3189096519585059, -0.9459190510674409, -0.059445628227624475, -2.2797002911160464], [-0.8990495573507298, -0.28206205611287233, -0.3348893696862236, 3.21303499435991], [0.3000108786613609, 0.1602440180757188, -0.9403804162974617, 0.7376240088672662]], [[0.22123154882985885, -0.974479415577653, -0.038032491606223295, -1.94142968954113], [-0.9026866648902938, -0.1898620422695685, -0.3861465912506116, 3.5072852386797244], [0.36907097804024114, 0.11975923146323303, -0.921653047327331, 0.4391512880551567]], [[0.21200181511284286, -0.9770539892739357, 0.02051176327740964, -1.9433528129491962], [-0.8769680115492006, -0.19946338642149378, -0.4371972829246674, 3.419414146938748], [0.4312566951460599, 0.07469845728767485, -0.8991316941196884, 0.12207720587754702]], [[0.23426011931475518, -0.9720766462235172, -0.013754648867785546, -2.057852180106996], [-0.8934875159764201, -0.209701807842028, -0.3971211535313527, 3.4849707611688374], [0.3831478243353648, 0.1053192558586735, -0.9176631184985329, 0.2706760514867363]], [[0.35818106952466183, -0.9246726895070378, 0.12917716018705036, -2.429102245419521], [-0.8294799983812948, -0.37866536224422315, -0.4105794389905792, 2.937723068992904], [0.4285665102636189, 0.03991191195962657, -0.9026282654361046, -0.0248767275290111]], [[-0.005647131089459245, -0.9983186865712158, 0.05768803994920435, -1.3895027147427497], [-0.7722717038427255, -0.03229456734185876, -0.6344710209017081, 3.666450405222226], [0.635267286545051, -0.04813378193041434, -0.7707909014011277, -0.8961625140217795]], [[-0.4018347373916204, -0.910395220511855, -0.09853621818691027, 0.3199819251020558], [-0.496987711669585, 0.3072017661597342, -0.8115604039859077, 3.457436368760937], [0.7691112132031602, -0.27714187221982717, -0.5758995783881526, -1.894245301448127]], [[-0.3807431531983019, -0.9229390046360999, -0.056729577946074805, 0.24475924945207006], [-0.5002509286649899, 0.25719062526970604, -0.8268022681652446, 3.4009821103846307], [0.777678378034538, -0.28642027860244623, -0.5596246638085811, -2.0044264200492368]], [[-0.3969596447263971, -0.9140736887736586, -0.08302006956398472, 0.31912415532499555], [-0.4414665376836767, 0.2694512470396714, -0.8558640789134409, 3.242429567661514], [0.8046926969746147, -0.3030929180308945, -0.5104942178666061, -2.167142293726618]], [[-0.3668801885034544, -0.9237612757238307, -0.10983639085817887, 0.14976499730869872], [-0.5144533493622359, 0.2998436259822762, -0.8033875473815723, 3.5881365205240314], [0.7750720473695636, -0.2382412756658293, -0.5852387683291935, -1.722855833195227]], [[-0.3873082242229119, -0.9113593890947398, -0.13934275495395432, 0.29616497338497394], [-0.4520426499830854, 0.3194450088187192, -0.8328339143773376, 3.253736145615937], [0.8035233550094016, -0.25957455624477377, -0.5356969924358028, -2.0409748351522596]], [[-0.47910471692404283, -0.8718680227827437, -0.10151266457955938, 0.7083587091227598], [-0.5127278409610131, 0.371851498158994, -0.7738453491624606, 3.601533206777855], [0.7124386509199168, -0.31870458761339093, -0.625186815687589, -1.811059345260356]], [[-0.30285432577879773, -0.9526830131444145, -0.02596793836924094, -0.2256081641209098], [-0.5647959846236811, 0.20136048476507246, -0.8002871053116759, 3.396564138819528], [0.7676488475273288, -0.22770382438873094, -0.5990544342951727, -1.8027221008823617]], [[-0.28548309562602936, -0.9521933702790277, -0.10875287448360121, -0.32008746455135245], [-0.6437076033926388, 0.27457821491155343, -0.7143159841628144, 3.777697569065736], [0.7100281145463783, -0.13392008621805446, -0.691321551133092, -1.4766793789691854]], [[-0.5750524592929496, -0.8165760317305142, -0.05018220266565521, 1.0992580825958065], [-0.5717286793299312, 0.44498472712140635, -0.6892857969379179, 3.8425821958005932], [0.5851845745512977, -0.3676848882289484, -0.7227494978727295, -1.3605004122379485]], [[-0.45424239735083943, -0.8906022915614081, -0.022167605069790486, 0.42692690720264254], [-0.5182736334323476, 0.2844152021931485, -0.8065360708922218, 3.4558103286405917], [0.7246076768416094, -0.3548739931679959, -0.5907691288779453, -1.9326931577410664]], [[-0.4039906669372939, -0.9074624772662361, -0.11534033718256093, 0.21720954427431838], [-0.5194930717882091, 0.3313774077448357, -0.787601397916715, 3.6487407909232785], [0.752939897595825, -0.25826510796106217, -0.6052938498103626, -2.0706980632829945]], [[-0.4389467947624887, -0.8977966395429888, -0.03587346363337035, 0.40632957219979654], [-0.4607117571915889, 0.25916758134931933, -0.8488679765210739, 3.351572126984313], [0.7714080555407601, -0.3560805510033661, -0.5273862465441843, -2.2668656391649833]], [[-0.48114200755459646, -0.8733386479385633, -0.07603929630904516, 0.6591659765601283], [-0.40528452826427175, 0.29851357293860636, -0.8640799140826235, 3.2196221075398697], [0.7773331459007389, -0.3849275942151581, -0.49757806171071417, -2.35292199351773]], [[-0.5037393219148143, -0.8580380608015428, -0.10008687113068743, 0.7639685949340752], [-0.39150645907781967, 0.3300400042715969, -0.8589506901334626, 3.2275901316486393], [0.770045055861766, -0.3935025816895389, -0.5021815708949474, -2.3493339684556593]], [[-0.5169605766902328, -0.8543786519713256, -0.052809858963674516, 0.8079188989399388], [-0.3935429562859437, 0.2920022390289299, -0.8716987059528147, 3.1743097142448553], [0.7601813623773096, -0.42985091771188827, -0.48718834636762987, -2.3747415354845063]], [[-0.5131905128384475, -0.8558416548890168, -0.0645798675241746, 0.7756807696271993], [-0.4263320792964339, 0.3194996688173113, -0.8462629141043624, 3.32603994642552], [0.744900299164519, -0.40676162968310725, -0.5288369511694055, -2.2610223026584677]], [[-0.4907376309444006, -0.8710413811627482, -0.021528815043320826, 0.6663237061472177], [-0.4271484076417322, 0.26204077421190364, -0.8653778772880428, 3.2282050876743007], [0.7594213688224807, -0.4154774903078603, -0.5006572077013094, -2.3378998598402387]], [[-0.4845443709510046, -0.8747016476124847, -0.010666782256137985, 0.6215291664377426], [-0.43758381165377674, 0.2529237857351588, -0.8628730882278967, 3.2687184934685116], [0.7574543949032491, -0.4134326865082151, -0.505308077679699, -2.326825335328766]], [[-0.46537686410651585, -0.8842908042762759, -0.03813329026982132, 0.5003963778393774], [-0.4458217089632376, 0.2714064095819369, -0.8529839181690005, 3.3195814495107068], [0.7646354544300726, -0.37995833233429555, -0.5205423013725756, -2.300907681428284]], [[-0.4631981146717075, -0.8861437473891132, -0.01402731363286669, 0.4962452423822687], [-0.4583685128753703, 0.2530811101348202, -0.8519672869877974, 3.332454592379218], [0.7585155324507182, -0.3881999622051841, -0.523407084758027, -2.2747294246722696]], [[-0.4549657055287073, -0.8902446618902679, 0.021694440961867234, 0.4549535756888667], [-0.461040097142687, 0.2146352154550184, -0.861030634247841, 3.225830753873433], [0.7618715348531057, -0.40174141716091494, -0.5080901476294462, -2.3172886327472706]], [[-0.4449281956464226, -0.8955074352010316, 0.010263246001579018, 0.44848217244533056], [-0.5200340448154782, 0.2490122340108165, -0.8170419203111892, 3.457145013678085], [0.7291114406945428, -0.36886222470268315, -0.5764869176622445, -2.093611860060079]], [[-0.40162496365571243, -0.9152007892493107, -0.03324009515611198, 0.33296833770807954], [-0.6355958388097228, 0.30468741185885995, -0.7093542914105156, 3.781609507394903], [0.6593294459193473, -0.26376712534390767, -0.7040678840364039, -1.5697940442345892]], [[-0.3533598174882646, -0.9252650437561136, -0.13791823007730825, 0.212612732785307], [-0.6872548564226293, 0.3567817121505532, -0.6327618605750751, 4.020890034854497], [0.6346791328759527, -0.12880764215649965, -0.7619652154881558, -1.1707970766800877]], [[-0.39805141448730297, -0.8963468936893707, -0.1952365682910694, 0.5291262224061499], [-0.686871898522614, 0.4322831514176194, -0.5842416212667423, 4.232932539318354], [0.608080641399311, -0.09845569142445518, -0.7877464124840781, -1.0735331114224518]], [[-0.33146167889908984, -0.9264169440981127, -0.17856315720022092, 0.2646622453237631], [-0.866368044467269, 0.3738085461127312, -0.33117002035064425, 4.316224811362576], [0.3735499524124673, 0.04493124237098664, -0.926521244500979, 0.23896818181330978]], [[-0.109078452184263, -0.9939066335706225, -0.015858594307121193, -0.719387835715226], [-0.8684805123510012, 0.10305017087549988, -0.4848940729160058, 3.913783496050006], [0.4835736665034893, -0.03911861483798579, -0.8744290954888964, -0.4715267454529417]], [[-0.09041503748698798, -0.9726597716399097, -0.2139114060297526, -0.6354913546882559], [-0.8447422893379615, 0.18866562539912057, -0.5008150820380899, 4.10861964853074], [0.5274804125275996, 0.13541879642855253, -0.8387050518350035, -0.42427498597533253]], [[-0.21937154181797316, -0.9370330549631752, -0.2717446973664507, 0.04429440493126145], [-0.7397123915844565, 0.34135497674296233, -0.5799158193990015, 4.250474044858054], [0.6361616967224676, 0.07379589256313929, -0.7680185296358418, -0.942094111639846]], [[-0.3051334116876143, -0.919311122852196, -0.24851692190293828, 0.3082839088731672], [-0.6599248623829612, 0.39226660097359733, -0.6408011312173614, 4.049796279083351], [0.6865804957036765, -0.031527339895002504, -0.7263699124815388, -1.3121872444430045]], [[-0.4124116119514102, -0.9041519155664661, -0.11147186149485871, 0.5389907437567778], [-0.5753772903347252, 0.3533856984800222, -0.7376039058172454, 3.592344718621352], [0.7062985460091988, -0.2400580381642669, -0.6659688447803054, -1.7755650814814907]], [[-0.4770578032590621, -0.8710477389480225, -0.11701149013313311, 0.7154762136830894], [-0.7628002213082825, 0.47649490102121417, -0.4371366281528221, 4.141449359724704], [0.43652224997321015, -0.11928304898149283, -0.8917510187849553, -0.307804674541336]], [[-0.3907019504097428, -0.9176650444081796, -0.07240754254466036, 0.2043961861262363], [-0.9015877794096895, 0.39735185372790044, -0.17102917984398625, 4.070547123945851], [0.1857187711706288, -0.0015396786466711498, -0.9826017338802822, 0.8973452965307849]], [[-0.3996294130970883, -0.9138045646308087, 0.07250896391188139, 0.17192547385346238], [-0.9153221198399762, 0.3934898214404515, -0.08573900719283836, 4.218077480976363], [0.0498171568772111, -0.10063288767922465, -0.9936756376192443, 1.2182043102010227]], [[-0.30206469978609163, -0.9486986962862586, 0.09342216443591705, -0.35579618742736724], [-0.9258287671707378, 0.2686001331767284, -0.2658854308467381, 4.098574541658671], [0.22715195579666508, -0.16680753017234262, -0.9594671629897257, 0.43426666809829745]], [[-0.22663861258433127, -0.9564523161140552, 0.18393995293548496, -0.7801707383886047], [-0.9576845222038473, 0.18443664154316042, -0.22096036112268705, 4.071209643637743], [0.17741278200016428, -0.22623459562219675, -0.9577800439175076, 0.45159816901396566]], [[-0.09565455869856271, -0.9666773264584676, 0.23745557881695042, -1.4460626730307684], [-0.9820032239363876, 0.052614939860926406, -0.18138725501526395, 3.812710845350267], [0.16284923573270024, -0.25053266177195493, -0.9543131099417713, 0.4278188359485892]], [[-0.11251205098123002, -0.9853373229052951, 0.12826300508651375, -1.2487852345118489], [-0.9870966888823021, 0.0960338865807791, -0.12813125858191537, 3.944562308939577], [0.11393491642860248, -0.14102429832484925, -0.9834281784148706, 0.9212850980620826]], [[0.019843791062697375, -0.9862978491525075, 0.16377660612369987, -1.7127707541687867], [-0.9008932296675, -0.08867849462536795, -0.42488529432099653, 3.5184959933863436], [0.4335869148112305, -0.1391139006286435, -0.8903087722562114, -0.2995787589996141]], [[-0.27951005771895054, -0.9594046849931146, 0.03764011221039787, -0.4470762823634756], [-0.6971453470189071, 0.17583616389106724, -0.6950323795320339, 3.7698231376415015], [0.6601988282054402, -0.22050916960828681, -0.7179924883693612, -1.371646168538659]], [[-0.40774253512115904, -0.9128310258935475, -0.022035045248533447, 0.2939115485971421], [-0.6438601472208947, 0.30454278586563727, -0.7019243566068104, 3.8763274548318214], [0.6474489446077265, -0.27201692914840925, -0.7119105662813352, -1.4263424821922301]], [[-0.45533331623126944, -0.8874885304494979, -0.07096252144917975, 0.5910026441216449], [-0.6180170526976365, 0.3724380159393306, -0.6923473455268688, 3.8272674290931055], [0.6408794689368362, -0.271392764464651, -0.7180664827796052, -1.3401032998445055]], [[-0.47449295620514964, -0.8754879481191069, -0.09152752159811955, 0.6971894176649532], [-0.5936237361878087, 0.39502740050035945, -0.7011164045209295, 3.7284342215848456], [0.6499748413178199, -0.2783418860899752, -0.7071481457953138, -1.3415708467081298]], [[-0.4621884865751108, -0.8829584014702272, -0.08225730454221447, 0.6164517743099566], [-0.5769458013504922, 0.3698491607676522, -0.7282479938753706, 3.635939867006961], [0.6734354795980442, -0.2891298316545784, -0.680359166371666, -1.4237217737993961]], [[-0.41188260637111657, -0.9079767523841755, -0.07701256844711513, 0.3480345815327502], [-0.5502744121438035, 0.31520079040376114, -0.773205362803852, 3.526916430546015], [0.7263269166902241, -0.2760917942618548, -0.6294620967401787, -1.6196808759113144]], [[-0.43989681699257127, -0.8918192119846629, -0.10559016779444386, 0.4573871017763776], [-0.3909388443899762, 0.2960198713322043, -0.8715153789368804, 3.1358197187267485], [0.8084909463604609, -0.3420975429779045, -0.4788649713036511, -2.1765451043255437]], [[-0.429006215873718, -0.8936526090418117, -0.13167642573549732, 0.4477978895576723], [-0.34147525164465653, 0.29540004752021753, -0.8922631139071434, 3.0164035392386594], [0.8362704821144481, -0.337822181447306, -0.4318887061110212, -2.3015008145440463]], [[-0.41085053215560724, -0.9030466129954434, -0.12533417325259844, 0.38843122357815474], [-0.38359195528824863, 0.2959334422590265, -0.8748031833451808, 3.093817211345716], [0.827078625080828, -0.31133617282638654, -0.467985828230114, -2.1685493657540316]], [[-0.37446131436077745, -0.9191393424054095, -0.12231759190627606, 0.2718949764601669], [-0.46533498556754904, 0.30038146993528103, -0.8326069443178867, 3.2988836767868084], [0.802023737338271, -0.25486043585082213, -0.5401889326743755, -1.881323106793207]], [[-0.37322800216488733, -0.9217986504679991, -0.10482416894677754, 0.2856859428190626], [-0.5240423365016289, 0.3027081505043363, -0.796082536658202, 3.408675363388379], [0.765558938262705, -0.24218799229858556, -0.5960406768270601, -1.654026060711412]], [[-0.3783089926263464, -0.9177505367092165, -0.12089771903548996, 0.35348534669519743], [-0.5576259474647276, 0.3301879717768179, -0.7615964850286379, 3.4790991760496284], [0.738874555531657, -0.2207030939154609, -0.6366745915489636, -1.4813536572945543]], [[-0.39187136412865886, -0.9095752319948631, -0.13823795179846654, 0.4399968874480743], [-0.5612581909437766, 0.3554038975249072, -0.7474471972806007, 3.498616893283176], [0.7289897647254477, -0.21531597006631165, -0.6497791593764297, -1.4263494166348805]], [[-0.3857651570363659, -0.916621432838042, -0.10483507275069293, 0.3707135528557596], [-0.5948780852616955, 0.33397996623117954, -0.731148032775579, 3.5754154217625223], [0.7051987714765866, -0.21968734833429843, -0.6741158369966973, -1.303072264802738]], [[-0.39319735991946975, -0.9151920934652854, -0.08842662614273611, 0.36977796686840453], [-0.5917209707493906, 0.3254825207065464, -0.7375143534128076, 3.536894350280019], [0.7037486262350768, -0.2376648076033575, -0.6695172218091938, -1.3345840382565701]], [[-0.40278097258048956, -0.9108620472544631, -0.08998788250938838, 0.413933340330303], [-0.583009760888493, 0.3311044891553223, -0.7419362748713231, 3.523085436651376], [0.7055969861300835, -0.24637400052075661, -0.6644040525399744, -1.3669883385023658]], [[-0.3997680289690044, -0.9118534576630645, -0.09332092349602678, 0.39547134779346077], [-0.5868631987228484, 0.332828594555779, -0.7381170047023787, 3.5567761337683765], [0.7041144147075984, -0.24030896444772673, -0.6681874681607232, -1.3718401622694354]], [[-0.4176150393431894, -0.900646185965195, -0.12014211010604836, 0.510853389647716], [-0.5711618344964923, 0.3630427434326674, -0.7361889195413662, 3.5226810885421114], [0.7066624637894586, -0.23882297658983764, -0.6660268373900423, -1.3625562379220821]], [[-0.4408794321658037, -0.8874318460700557, -0.1344992374470988, 0.9254699612338285], [-0.5208265545613429, 0.3749794428333223, -0.7668964190268275, 3.170748872752631], [0.7310027540009124, -0.2680580833198356, -0.6275187946268836, -0.9951202700161156]], [[-0.4598897387561032, -0.8673817262186343, -0.19013250434585188, 0.8003081272223377], [-0.5049083087546371, 0.4315676757930652, -0.7475405948583019, 3.3221917256867353], [0.7304580945799528, -0.24778676767041863, -0.6364217861057797, -1.5074706255575239]], [[-0.4635807006809369, -0.8544152808874722, -0.2346645728314219, 0.863301612247919], [-0.5063855843476596, 0.47280750661359827, -0.7211287691215151, 3.423494682436285], [0.7270946113959662, -0.21547062323160004, -0.651848016490911, -1.4280957914884123]], [[-0.4893917495063497, -0.8393754462114676, -0.23652605736454063, 0.9708922246023011], [-0.4857910006566134, 0.4876465734539154, -0.7254019045189373, 3.349884860729092], [0.7242256686946138, -0.24010347705927704, -0.6464112476650485, -1.472232659485814]], [[-0.4977613196064986, -0.826914667499441, -0.26162148493173454, 1.1155428494941584], [-0.48814188890530746, 0.5164348115110998, -0.7035713053809495, 3.260960913081693], [0.7169038743092099, -0.22250217557089993, -0.6607129610251798, -1.2465407244565634]], [[-0.47383445366695987, -0.8455894951538302, -0.24588476204031876, 0.9286503386522283], [-0.5356861632600621, 0.49839072560034414, -0.6816502175803046, 3.4090448571011143], [0.6989429483225708, -0.19127229365763623, -0.6891252895294868, -1.3027165765925248]], [[-0.4452161977653201, -0.862784888289049, -0.23955119241499076, 0.7827452469523146], [-0.526948540413051, 0.4687534236017103, -0.7089396755847641, 3.4325831735343844], [0.7239528803754745, -0.18940027561154316, -0.6633398545197814, -1.3581548702467812]], [[-0.4281872813228921, -0.8769578593374499, -0.21817553726205802, 0.633338742170323], [-0.5418935683155282, 0.4423713740632861, -0.7146040358321691, 3.4716635956355044], [0.7231922377428937, -0.1877564389192491, -0.6646356196539482, -1.3999854728774348]], [[-0.4098903170926037, -0.8789345421763286, -0.2438524113536954, 0.6458025827178621], [-0.6049706645816633, 0.4620425832821371, -0.6484806444525464, 4.197769281795645], [0.6826422364235492, -0.11828238162658417, -0.7211163950759943, -1.180225163364682]], [[-0.27350618112313974, -0.9379643787491941, -0.21311309928081446, -0.023093806301330462], [-0.8884052138259043, 0.3312631391101345, -0.3178064013103715, 3.8283972970502207], [0.36868759802085205, 0.10240877337678536, -0.9238949605886355, 0.3896026878082683]], [[-0.18364316239786505, -0.9659143221901504, -0.18244097975085988, -0.294767281518537], [-0.9254513123711922, 0.2324573695171317, -0.2991712549487563, 3.7553066283984116], [0.33138355018761784, 0.11389948878339183, -0.9365958835698204, 0.6252367383941]], [[-0.23575593995840355, -0.9631032366878326, -0.12981252734520865, -0.21486263093187244], [-0.7351937658658706, 0.2641115317999207, -0.624287774509688, 3.700381540123268], [0.6355385616988863, -0.05174219024858118, -0.7703333579314806, -0.7728848386104233]], [[-0.3942859671348362, -0.9100355569248522, -0.1279603893907037, 0.4591895642735726], [-0.4890585279859452, 0.3256697048789631, -0.8091730343556125, 3.2447088402727706], [0.7780490552174502, -0.25646545275440696, -0.5734676444392567, -1.896217129270354]], [[-0.40419660428260634, -0.9117673951240053, -0.07283764325674313, 0.34797903605823727], [-0.5610567126891188, 0.310037210223702, -0.7675234806982678, 3.487438932506214], [0.7223852644073591, -0.2693643359197555, -0.6368692050190677, -1.552828979181427]], [[-0.4355449479087327, -0.895742155258191, -0.08914364612573411, 0.5049541312964947], [-0.5581820186363295, 0.3464406581687528, -0.7539308353149335, 3.514688523914371], [0.7062106147759687, -0.27861238605096517, -0.6508776428152501, -1.4593142180748422]], [[-0.4421270343776325, -0.8911950668758721, -0.10146446791142893, 0.5593113623543992], [-0.5442286193370633, 0.3564590684359925, -0.7594419941142432, 3.5045749573243765], [0.7129788884440503, -0.28054996935635906, -0.6426140516104768, -1.5163958139859919]], [[-0.4140333156456422, -0.9042682396402729, -0.1042850148072964, 0.4446276617331721], [-0.5317379041973854, 0.333255137960075, -0.7785857783590602, 3.481054367249263], [0.7388039082024731, -0.2669081561157198, -0.6188124283041336, -1.6552679448487053]], [[-0.4173550037129476, -0.9036367336057799, -0.09620527300539505, 0.44853015656236905], [-0.5214254609463554, 0.32483216289319855, -0.7890497795621056, 3.4654736660964027], [0.7442649323679349, -0.2791499948565348, -0.6067495288988285, -1.7221313467523167]], [[-0.34598737553372544, -0.930015969138428, -0.12394770316062853, 0.17387178662068858], [-0.5504031762891137, 0.30817601106874687, -0.7759406483311788, 3.566283808384719], [0.7598349027927971, -0.20024445897269189, -0.6185087526855173, -1.6892568402182313]], [[-0.17657445117471385, -0.9799660077945374, -0.09213081330144307, -0.46831061415761027], [-0.540526681444351, 0.17476581326566773, -0.8229749796684871, 3.415175686302218], [0.8225888218539719, -0.09551719259288632, -0.5605569516829381, -1.828445638216901]], [[-0.10419497504650221, -0.9894150793559204, -0.10100102929265786, -0.7405087055173266], [-0.5713767083274162, 0.14267291148605266, -0.8081912505768791, 3.523682926703917], [0.8140467212365551, -0.026499831531739626, -0.580194531663996, -1.7178632273147814]], [[-0.12496962471941056, -0.9813822880117329, -0.1458471723220759, -0.6068104114994941], [-0.5635752600306208, 0.19119709611693766, -0.8036333720782558, 3.5350849518467355], [0.8165571132375906, -0.018233902854469575, -0.5769766075048327, -1.7410309758709415]], [[-0.1364787875588066, -0.9754987690916578, -0.1725563445577668, -0.5284436208320891], [-0.5964260553770017, 0.2199914106882317, -0.771932470939545, 3.6549578760296235], [0.7909800888858758, -0.0024353077962392944, -0.6118370438785394, -1.5938973518963202]], [[-0.1213405758740913, -0.9777698667954247, -0.17100453863392362, -0.5804751175861391], [-0.6049974585501465, 0.2094305029040887, -0.768190692212034, 3.676588666446897], [0.78692727732263, 0.010244610299939172, -0.6169607022861301, -1.5684597876307562]], [[-0.1458900399221107, -0.9758524277129677, -0.1625673262935458, -0.5617627538663915], [-0.6138288476342226, 0.21815883522658996, -0.7586968224690411, 3.76716447609169], [0.7758416346546293, -0.010897795157043089, -0.6308335723446779, -1.5694927161835397]], [[-0.20035799963472462, -0.9656177081844823, -0.16564755845746398, -0.3228162525380684], [-0.6146123926478106, 0.2555496988630503, -0.7462881201082712, 3.7406399832849813], [0.7629602078654592, -0.04771575265624234, -0.6446820364818172, -1.5476805690871887]], [[-0.21991558381892065, -0.9634286757378454, -0.1531088591806669, -0.28714958178387784], [-0.6171297817140178, 0.2589512762899582, -0.7430310013918737, 3.7587061364619867], [0.7555051081992712, -0.06891605962200376, -0.6515079494610827, -1.5435489417181196]], [[-0.22181480982966686, -0.9621183584557834, -0.15851326273399785, -0.26663374322444167], [-0.6054447467202241, 0.2633253379692445, -0.7510635293051227, 3.740621509335153], [0.7643525683930894, -0.07062599171503253, -0.6409189656151203, -1.5910891648393515]], [[-0.18736743277444443, -0.9707661953433316, -0.15002146217840584, -0.4454981955283543], [-0.6276287783384761, 0.23579804121633355, -0.7419443377773649, 3.8067493880467134], [0.7556292488627385, -0.0448584187992952, -0.6534616748715727, -1.5364982353165555]], [[-0.20589102035620477, -0.9686472750578519, -0.1390372045881222, -0.36392600527929003], [-0.627031198815742, 0.23966997100712284, -0.7412085946001559, 3.751243596602859], [0.7512927282014477, -0.06542752876613472, -0.6567179569885251, -1.5429392111314455]], [[-0.25500877127156313, -0.9586875895988719, -0.12605011750756917, -0.21796030146824802], [-0.6459153859092545, 0.26590114580322893, -0.7156045660182924, 3.824275015812694], [0.719558087175918, -0.10106773080283665, -0.6870381888731504, -1.4469554585522904]], [[-0.32741888521075335, -0.9368649273548348, -0.12280464771240424, 0.03500250699593443], [-0.6253504729014163, 0.3122893590034965, -0.715130856763404, 3.799961525663343], [0.7083316028876043, -0.15735140337984083, -0.6881183591542026, -1.484217490358624]], [[-0.4132333503281819, -0.8991232348830409, -0.14427614726628196, 0.41523629833421943], [-0.5727365592390978, 0.37979566188636077, -0.7264489582367507, 3.8300514259805913], [0.707962592152654, -0.21756071268902633, -0.6719049816802503, -1.679512876919626]], [[-0.5633960330428158, -0.8080823242965549, -0.17201124123468253, 1.2265291879458533], [-0.4409136858793528, 0.470152482026504, -0.7645598506648131, 3.5723566870161], [0.6986988131919947, -0.3549078765028969, -0.6211765993985146, -1.9387908582200166]], [[-0.6361295486256768, -0.7323311894910232, -0.24296136784261874, 1.6979651652503407], [-0.2846069985130742, 0.515389884168294, -0.8083143718222333, 3.1409015453522167], [0.7171736566290428, -0.44504415083860593, -0.5362813161407662, -2.3169986306617782]], [[-0.6390966530709195, -0.7402924361170921, -0.20862065348706643, 1.6311366079570229], [-0.27889867803828705, 0.4758418342439646, -0.8341403216316997, 3.140653429981009], [0.7167782051806857, -0.47491226327729297, -0.5105755054512451, -2.422114968631601]], [[-0.6558672169012644, -0.7280694157071308, -0.19938184397298503, 1.7339841723068774], [-0.23702108162688995, 0.4493882238114103, -0.8613194710234091, 2.977699704303897], [0.7167002167284517, -0.5176535040077515, -0.46730680406975433, -2.603219714114377]], [[-0.6720723146577425, -0.7270883524590586, -0.14021887030266839, 1.7125363202707253], [-0.2650995483748006, 0.4130635585740437, -0.8712638670515519, 3.0587907295507475], [0.6914051151980736, -0.5483803646161299, -0.47035937577709586, -2.5241703131648854]], [[-0.49477083836845853, -0.8616297369811559, -0.11311946715732385, 0.6511139316754142], [-0.508963434945636, 0.39281614912125096, -0.7659319126906063, 3.8612305903966018], [0.7043848659564684, -0.3213871020114767, -0.6328920060106247, -1.9341402548942688]], [[-0.6288536965090645, -0.7643094495629691, -0.14273784955517788, 1.474180796480774], [-0.29999536762040135, 0.40787488498463986, -0.862346135612068, 3.200793657155461], [0.7173184842126862, -0.4994688613993049, -0.48578292343318985, -2.548870436170955]], [[-0.6450034513817807, -0.7454339543430324, -0.16822237490328468, 1.6061153266678256], [-0.28205885053913865, 0.43682169664295467, -0.8541835927799776, 3.147312830565107], [0.710220636519477, -0.5035027557565904, -0.4920077462879915, -2.531475947550235]], [[-0.7110057427469318, -0.6779603079216836, -0.18665651519199458, 2.000455149117632], [-0.25605712632138233, 0.49683649873005936, -0.8292094075622221, 3.0687447798113383], [0.6549088347555857, -0.5417779198272956, -0.5268501720097366, -2.2956761557670253]], [[-0.7122444369408774, -0.6562181830091858, -0.24916973799981215, 2.082865063854867], [-0.2379762159406424, 0.5597005647727872, -0.793790021630151, 3.042480138115933], [0.6603598887677424, -0.5060760556291373, -0.5548079336360549, -2.2494819709024454]], [[-0.698874325457137, -0.6827505833855323, -0.21313450706900353, 1.9530761750522831], [-0.38497101618816304, 0.6102134993414029, -0.6924137505253434, 3.5214521055562007], [0.6028034455043243, -0.4018595850645281, -0.6893017336260517, -1.655064889954571]], [[-0.6811544920034325, -0.6926090051839278, -0.23732114099185347, 1.9041018236080927], [-0.3707107162672452, 0.6057963615170672, -0.703977509028029, 3.5021379967364044], [0.6313494459237066, -0.3915399523813793, -0.6693984932915634, -1.8096073869535447]], [[-0.6898138874846045, -0.6894447075316676, -0.22095881039223272, 1.9628995201769117], [-0.3926178619695966, 0.6126601924875013, -0.6859290801559595, 3.4604131187147207], [0.6082828413623059, -0.38641102960157736, -0.6933098161042064, -1.6316650950891498]], [[-0.6081179215538011, -0.7445924416821034, -0.27527202777428894, 1.6242317798708634], [-0.4747583683324982, 0.6190309947569489, -0.6256237840975089, 3.725534347453604], [0.6362366581574417, -0.24976533650630148, -0.7299453345946839, -1.478097782211986]], [[-0.5313917829181968, -0.8142870520804235, -0.23357947225985956, 1.1813033878302583], [-0.5063027406883578, 0.5263511506459785, -0.683090038710207, 3.7661693544969594], [0.6791761979180942, -0.24472650659016953, -0.6919744425581731, -1.6645066335427894]], [[-0.46296481354137453, -0.8572542673037139, -0.22534130249950268, 0.8543167614648822], [-0.5131123758852182, 0.46649808163629414, -0.7204826365312933, 3.768632249204701], [0.7227581000141239, -0.21793269837091883, -0.6558399712161063, -1.8394072018495162]], [[-0.45040625941302315, -0.8617654332617188, -0.23344065523556778, 0.8433893854159266], [-0.5048114892302034, 0.46146287308503386, -0.7295323002481044, 3.710846967958317], [0.736409914261584, -0.21074238965938558, -0.6428748582561765, -1.8887207837073936]], [[-0.34142739238268277, -0.9028435874675297, -0.2613442027279787, 0.3276839413009286], [-0.540844405612985, 0.41612490261577817, -0.7309770135511419, 3.782284445662897], [0.7687097401801923, -0.10822902564363424, -0.6303743438309739, -1.8521750611805123]], [[-0.36929254539370393, -0.9123570833577991, -0.17671323765776425, 0.4013229313529739], [-0.5410473656235059, 0.3656839342656706, -0.757326223216815, 3.7773194421823355], [0.7555731361479865, -0.1840646969596041, -0.6286727473532361, -1.9214132808346929]], [[-0.35352926576528704, -0.9333199914070335, -0.06269650618201789, 0.12567257653690456], [-0.550001476087408, 0.261612504076239, -0.793131309439132, 3.7219789779922112], [0.756647496889489, -0.2459119585358439, -0.6058150494168464, -2.0454484119579943]], [[-0.39090797157885576, -0.9202334062086329, -0.0190114663758843, 0.20133596730113737], [-0.5229376401015334, 0.2390426355230148, -0.8181655351866455, 3.6192309347746825], [0.7574478083149645, -0.3098856184140661, -0.5746683575585037, -2.17994983375874]], [[-0.4177049030618224, -0.9083222260497839, 0.021756553543222368, 0.2220772868779446], [-0.5128295369612808, 0.21593007310073853, -0.8308911297822286, 3.566524348833181], [0.7500189864118055, -0.3582247021000579, -0.5560095168494267, -2.237274453527619]], [[-0.40978337038274515, -0.9117252043481715, 0.02889188664733594, 0.1692549199416307], [-0.5284333641749855, 0.21145375961303403, -0.8222198533070216, 3.6619762447904574], [0.7435292657215753, -0.3521994595421717, -0.5684362512311624, -2.295290335800076]], [[-0.5072144126910239, -0.8613270138520689, 0.029143005458906135, 0.6110883915822608], [-0.5268194235924096, 0.2831143142220876, -0.8014409398129836, 3.6699240494259326], [0.682051929463044, -0.4218554969313959, -0.5973634615746966, -2.0620404060190647]], [[-0.5141428004678517, -0.8573744120802477, 0.023797021601975665, 0.6562778760029128], [-0.541915069588991, 0.3032151662925909, -0.7838294586723031, 3.723141916585522], [0.6648197034380332, -0.41589623758842326, -0.6205200089282858, -1.9495900927659753]], [[-0.5255735428247484, -0.8506036129452829, -0.01568262500582951, 0.7674415327352562], [-0.524302295805977, 0.3383645691030224, -0.7814195550332149, 3.706550728130376], [0.6699847413898499, -0.40247100767652466, -0.6238088924379154, -1.9588196003102851]], [[-0.5372233545474441, -0.8409578229410504, -0.06466070957730119, 0.8959136622655841], [-0.5124220616830124, 0.3863159507283671, -0.7669312986919812, 3.7098598319273215], [0.6699363387884869, -0.3788798308792467, -0.6384632923853895, -1.9049034318218543]], [[-0.5443957538371927, -0.8339915793840393, -0.08995170215482484, 0.9784553612351213], [-0.4998986144774036, 0.40867314362760676, -0.7636017528274159, 3.6706358715746448], [0.6735982767552238, -0.3707348205848018, -0.6393911591180691, -1.9012968351885027]], [[-0.24151265904171126, -0.9700795026717732, -0.024847414728444428, -0.37624862632403294], [-0.6226026046476019, 0.17454303365515178, -0.7628241777031446, 3.7988194293778093], [0.7443370420774612, -0.1687616304097046, -0.6461283772539588, -1.8287686026619596]], [[-0.04402650472639161, -0.9965689822209928, 0.07008516645190438, -1.2155973233994437], [-0.6798071372960964, -0.02152199858632811, -0.7330750709566763, 3.689271259423177], [0.7320682502081777, -0.07991912944886359, -0.6765271685492551, -1.6112275157661706]], [[0.02068017379764453, -0.997823020961074, 0.06262227440628299, -1.4557488077568446], [-0.728453574614408, -0.05793919739808806, -0.6826407833087303, 3.8002522835971013], [0.6847829729506939, -0.0315002896015566, -0.7280659391235298, -1.305535957352572]], [[0.10564571961257843, -0.9892583034097286, 0.1010296543716041, -1.821668627201394], [-0.7142036924579171, -0.14617791836181257, -0.684503544083509, 3.534242384406385], [0.691919119266853, 0.00015911729211587344, -0.7219750044666853, -1.2278018522107703]], [[0.039139062378743567, -0.9935164532753782, 0.10673889107174633, -1.5986879553690514], [-0.7070615290630662, -0.10301703316320507, -0.6996080938620207, 3.552915604756702], [0.7060680759778846, -0.048088958705345575, -0.706509252689251, -1.3405611318826647]], [[-0.10229001021200848, -0.99436126488891, 0.027971926986790074, -0.8329996100516919], [-0.762389232078055, 0.06030243708716551, -0.6443029372063906, 3.877476955783635], [0.6389831082448588, -0.08723124996167098, -0.7642586580522748, -1.0750593860774833]], [[-0.029708386739866227, -0.9994936636172135, -0.011394215477814162, -1.1365919316987962], [-0.6659129296070153, 0.028291829842629984, -0.7454928185746379, 3.4242542386351262], [0.7454377116429761, -0.014559833556603452, -0.6664162582855306, -1.4084758708264993]], [[-0.20148898018914635, -0.9785360616497831, 0.04323617597880344, -0.4845368336787389], [-0.826391077763003, 0.14613328347033033, -0.5438040548358228, 4.221238879841729], [0.525813633767745, -0.1453005144970668, -0.8380977168748568, -0.5767849778711013]], [[-0.30425965191252236, -0.9524528811917861, 0.01611127951270891, -0.11858727365916097], [-0.7551531512156922, 0.23085391124068674, -0.6135553682218804, 4.003421451343558], [0.5806632263430163, -0.19884662625838767, -0.7894873252931782, -0.9072028981401286]], [[-0.46706294936520665, -0.875722630151454, -0.12231956659052384, 0.729069992672593], [-0.7118114000878384, 0.45444511927395237, -0.5355410014864168, 4.119239506122406], [0.5245729044043976, -0.16306289770730414, -0.8356038291894259, -0.5945344575242971]], [[-0.5130481366514745, -0.8493769542701387, -0.1238563645245242, 1.0132102772044675], [-0.7096904627758015, 0.5009134216331791, -0.4954040684863311, 4.040225180504011], [0.4828261141689809, -0.1662664535693339, -0.8597874213396924, -0.40349901260358345]], [[-0.5462376228723592, -0.8244220530227022, -0.14816456340362577, 1.1850713141933649], [-0.6842504490773322, 0.5412057613724051, -0.4887715691350966, 3.988409926542246], [0.4831415758307533, -0.16560375100567032, -0.8597381085869281, -0.40514542196979136]], [[-0.5825747829991442, -0.7909182909861058, -0.18722948271337236, 1.4177435207490878], [-0.61463873112497, 0.5794336653378309, -0.5352343950777577, 3.845795668788878], [0.5318137384597977, -0.1967355698819714, -0.8236924566418155, -0.6590556288392904]], [[-0.6305170958807538, -0.7654873458309692, -0.12836399485353578, 1.581176709480227], [-0.6025422729481473, 0.5869785594794696, -0.5407392902516767, 3.776258285322047], [0.48927599686943657, -0.2636006336943534, -0.8313385019373003, -0.5488929304196343]], [[-0.628025505964204, -0.7611597288447254, -0.16192538727275024, 1.638240261333873], [-0.6060501118984816, 0.608919861017088, -0.5117810710907236, 3.818143679440555], [0.4881467256125394, -0.2232766670387985, -0.8437181426458733, -0.5019640054501551]], [[-0.6212542917089288, -0.7657424347313921, -0.1663779693495403, 1.616760304533479], [-0.6366807044309495, 0.6170354159856333, -0.4624986227274047, 3.8871800434053596], [0.45681592095563706, -0.18139961155161266, -0.870869333074932, -0.3010884040303562]], [[-0.6669038084565798, -0.7264489089798424, -0.16586528542195544, 1.877659792910593], [-0.581879913270762, 0.6467630751428501, -0.4930651997086942, 3.7352253270020084], [0.4654622184432594, -0.23231338160717455, -0.8540347861346863, -0.4453470299010904]], [[-0.6696955800892194, -0.7261587223953516, -0.15556779839708001, 1.871155508546094], [-0.5871742128319888, 0.6460099652555787, -0.48774744343319754, 3.742682910402888], [0.4546804084124343, -0.235296907501218, -0.8590116946388244, -0.40676426580652736]], [[-0.6515644252391014, -0.7448176978571024, -0.14391107226925326, 1.764025239706942], [-0.6073513958493961, 0.6258535165930276, -0.48931754283688955, 3.7319918729959927], [0.45451961643325156, -0.23141731293701287, -0.8601499552696512, -0.4306071886286795]], [[-0.6337938982682678, -0.766173516153081, -0.10622352688334402, 1.6814782131326895], [-0.6907912706721385, 0.6224458774681898, -0.3679246525934725, 3.9437928032663376], [0.3480125211556106, -0.1598101147251939, -0.9237683759203037, 0.16221061567205766]], [[-0.6778133584715604, -0.7268112154601342, -0.11097075361943956, 1.8602691515518863], [-0.6169333583254769, 0.644340567640226, -0.4519053709332521, 3.7945064178145027], [0.39995285029957317, -0.23784593747725402, -0.8851367281741355, -0.1958009404642508]], [[-0.6321382746410403, -0.7654396966607947, -0.1204295333781521, 1.6578509006877784], [-0.6803228340451976, 0.6226671140893124, -0.3865831172055989, 3.859539326278811], [0.3708935739677345, -0.16244302326513718, -0.914357818899102, 0.05513986158495007]], [[-0.7140480968639535, -0.6996291050668568, -0.025581843333017606, 1.93259496682266], [-0.5127431453097893, 0.5474916789061741, -0.6613224088644835, 3.298612841322398], [0.4766862514304251, -0.45909909264977605, -0.7496654192540576, -0.9632532548529577]], [[-0.8244245256107904, -0.5653703864584576, -0.02608692559957418, 2.6034478084544843], [-0.32700745118018504, 0.5134501889265234, -0.7933694160754854, 2.7269142193966007], [0.4619419102485314, -0.6455425854326979, -0.608181257479056, -1.4439086129076655]], [[-0.8342372189170414, -0.519335612371058, -0.18530726995112434, 2.7878961673938045], [-0.3146487501656639, 0.7243317583115546, -0.6134652947970874, 3.0912574398942696], [0.45281831521344873, -0.4534688805469126, -0.7676728129761949, -0.8761918544928535]], [[-0.8228952116295709, -0.52593920124144, -0.2150149466307847, 2.7490929783733864], [-0.3425294968347249, 0.7611092743287027, -0.5508050620037779, 3.2426600394669025], [0.4533398443499901, -0.37960588658285, -0.8064628673388345, -0.805897356118411]], [[-0.7289946868728896, -0.6573395879455312, -0.19097490052542807, 2.186609799413002], [-0.43468045477987277, 0.6600625432543877, -0.6126747434201222, 3.3525785412068085], [0.5287907419229848, -0.3636235761225459, -0.7669147580692331, -1.1301098448238167]], [[-0.6272985180138888, -0.5506348247055428, -0.550724848830226, 1.9786764457866879], [-0.5486516337960834, 0.8143443221075152, -0.18927416565432253, 4.0825885298891205], [0.55270060071477, 0.18342468446953275, -0.8129436826107853, -0.19475652792645917]], [[-0.7476535702677586, -0.62117916515317, -0.2348416139560565, 2.3807167081527347], [-0.3768566220343456, 0.688037710427826, -0.620147720674758, 3.3768590132947414], [0.5468027297798878, -0.375154040107322, -0.7485093325379568, -1.1681563224285831]], [[-0.8361711640922318, -0.46920869355475636, -0.28400877844404876, 2.94998793596052], [-0.21733736896351372, 0.7588914340743945, -0.6138796782273594, 2.8622927962238403], [0.5035695109839947, -0.4515827644863648, -0.736539716801608, -1.217761474613486]], [[-0.8716022966965233, -0.40001534537129996, -0.2833675349450349, 3.1245508163631186], [-0.11997589836739281, 0.7345372424434062, -0.6678778505644379, 2.3907569421549137], [0.4753053967758866, -0.5481265938915173, -0.6882165479444684, -1.2879741931560358]], [[-0.892221178372089, -0.3757416417430496, -0.25051863708027566, 3.2172933774926458], [-0.075160315635696, 0.6705510582991148, -0.7380462080164627, 2.1640465990608764], [0.4453002311001687, -0.6396713975739223, -0.6265207157851697, -1.2915568311785155]], [[-0.8204844089297583, -0.5437853680199674, -0.17635988271308703, 2.637644001047229], [-0.21988697071107938, 0.5849643406901972, -0.7806833162252078, 2.769106309772027], [0.5276884069360347, -0.6017592489096213, -0.5995254386071023, -1.6490055145794764]], [[-0.7475148700071044, -0.6583591386736516, -0.08823130761327938, 2.144121287920336], [-0.34244814509420896, 0.4957791815853985, -0.7980803662714977, 3.0789216573850204], [0.5691667480095769, -0.566362293617257, -0.5960561763196508, -1.7588685583290489]], [[-0.6853105793324095, -0.7251717002641753, -0.06689854251807387, 1.7877081936045212], [-0.424096186475464, 0.47208061346209157, -0.7728404227330659, 3.2270488935347927], [0.5920235083778735, -0.5012643010720197, -0.6310643913252701, -1.7225121886412376]], [[-0.7401251634729091, -0.6626568369009, -0.11445810981618224, 2.174659176436011], [-0.40259653232386866, 0.5729679217395764, -0.713879396549744, 3.2292250883004994], [0.5386378881539949, -0.4822796669629815, -0.6908513213992429, -1.4252977093558077]], [[-0.7568822788814537, -0.6323800623281706, -0.16499900813349197, 2.2729736102784694], [-0.3740573993655836, 0.6261900920005756, -0.6840811579485047, 3.152109665498074], [0.5359200293841175, -0.45604980588761324, -0.7104986253715039, -1.3876302707944494]], [[-0.7816277100416663, -0.5768052287614399, -0.2373896606183264, 2.548384521728653], [-0.33000952676818596, 0.7053769797079342, -0.627325297385934, 3.023461322341183], [0.5292937134873785, -0.4119939860866606, -0.7416934139461977, -1.2832428572628098]], [[-0.7836216640988193, -0.5542868647047602, -0.2805408333393984, 2.6270735072657496], [-0.2831577233732102, 0.7206258461851082, -0.6328665684835132, 2.864432878922454], [0.5529546014358664, -0.41649064986595274, -0.7216486314856687, -1.4521339194156873]], [[-0.7605203421076716, -0.5667382933517907, -0.3168856514409089, 2.5371811747101907], [-0.28794033776219596, 0.7317863756949372, -0.6177208610988144, 2.912329829900653], [0.5819786689646125, -0.3785451191020272, -0.7197252404037318, -1.4838118154141406]], [[-0.7787723479966709, -0.5749824543270637, -0.2508162817916303, 2.5716980467562705], [-0.2914455941492211, 0.68569534581075, -0.666994271627938, 2.946373390595396], [0.5554935604008024, -0.4463373947469584, -0.7015766774941555, -1.4408838285440029]], [[-0.7785774454033796, -0.5778125006721194, -0.24484663684882246, 2.519610438892806], [-0.25693336349612494, 0.6494679878705091, -0.7156651308076986, 2.8329942099959715], [0.5725403114469018, -0.49429145936225133, -0.6541204361352887, -1.6226592745878459]], [[-0.8057033330736242, -0.5281068178289944, -0.26822626276445494, 2.6958976830336527], [-0.21622342454954202, 0.6838233607405364, -0.696873763304077, 2.7019956159492544], [0.5514431700094957, -0.5034767127365988, -0.6651478256612039, -1.5485797571152637]], [[-0.8124793778886005, -0.5285342476244784, -0.24602603438209575, 2.7113507493409035], [-0.24498769403447884, 0.6924711181362231, -0.6785755524028534, 2.80071385281654], [0.5290163421647975, -0.49105529183096636, -0.6921028898129115, -1.388236812829762]], [[-0.7738221421416893, -0.5936955701838094, -0.22073708858134608, 2.4680034535997475], [-0.30351253282478885, 0.6534326957822566, -0.6934737590572656, 3.0344671614230245], [0.5559491296418486, -0.46962887690904875, -0.6858347346289898, -1.444077124545649]], [[-0.7300626106570198, -0.630954045971986, -0.2624987169344598, 2.2809649956016638], [-0.2786725605436996, 0.6255995752254001, -0.7286746705339888, 2.908653896251593], [0.6239793173821347, -0.4588269427021259, -0.6325564386913988, -1.7238868724567413]], [[-0.7031859222414909, -0.6394331857736104, -0.31089348608936074, 2.2571142779953486], [-0.2670606948295538, 0.642777256089538, -0.7179944180362131, 2.8846297054067045], [0.6589447200171954, -0.4218561365980301, -0.6227593885089524, -1.8833673964982152]], [[-0.7459522399084868, -0.6119301200442819, -0.2628626712907366, 2.4885350053182895], [-0.26580500377754196, 0.6354367794653681, -0.7249605501470421, 2.8289895945437804], [0.6106578057654976, -0.470915732892066, -0.6366595768323887, -1.6368390886307427]], [[-0.705094764212253, -0.6684774368217139, -0.23659942929081254, 2.152814817876763], [-0.31726938132264354, 0.5957899618765504, -0.7378173629037782, 2.9474876449736223], [0.6341778245536608, -0.44516540497595936, -0.6321758054979452, -1.6822528658089226]], [[-0.522406516605908, -0.8159670928178719, -0.2475664251186573, 1.1069692915011184], [-0.4366828814802544, 0.5053823957681061, -0.7442423631249377, 3.214349929216176], [0.7323929904291707, -0.28068904055206706, -0.6203339182119392, -1.7944500666028338]], [[-0.5817013233128757, -0.803343738304958, -0.12752414901603626, 1.4684744647737973], [-0.5044973498061405, 0.4793077418238879, -0.7181549363934401, 3.372931475420364], [0.6380485831773548, -0.35341608162886456, -0.6840987346512708, -1.4114578436362881]], [[-0.6189362843574241, -0.78002525166688, -0.09207867651006846, 1.6567762924956912], [-0.3946839523654085, 0.41022665943842673, -0.822154891508412, 3.0281499787625767], [0.6790747040282425, -0.4725195177429282, -0.5617676136098847, -2.003334001349835]], [[-0.36813117640523074, -0.9247374584933912, -0.09664403663798737, 0.37336712428024915], [-0.5932428820628, 0.31365000644307717, -0.7414084949203649, 3.7880761288140543], [0.7159206100122582, -0.21560219460256302, -0.6640582608794463, -1.6847918714749839]], [[-0.360589912561309, -0.9250885124431925, -0.11910566361289843, 0.35880137077497354], [-0.5900571997158577, 0.3251442111792111, -0.7389950899702442, 3.794027963979757], [0.7223623855257887, -0.19619502053388133, -0.6630988598204658, -1.6887898039747382]], [[-0.3412558810640367, -0.9300790229258081, -0.1360052747233808, 0.2940927962968061], [-0.600041583896339, 0.3269263456968722, -0.7301159237302406, 3.821797293003262], [0.7235292124264099, -0.16754753236817227, -0.6696516282089929, -1.6513744271058073]], [[-0.4582400397713714, -0.8640456323990705, -0.20842555285382391, 0.8976944772614864], [-0.46141306320427644, 0.4316732475122529, -0.775084635692562, 3.316474056905118], [0.7596802294747298, -0.25900454149361085, -0.5964919081017831, -1.9114826887490877]], [[-0.5595462187704812, -0.7822457550697214, -0.2738605625771239, 1.4992218855563209], [-0.40039374542208883, 0.5444470228629015, -0.7370632862397875, 3.174824579281926], [0.7256671948534871, -0.3027689184363627, -0.617849580676678, -1.7693482231037911]], [[-0.632896404672925, -0.7190559904652646, -0.28705508796762724, 1.8697836949323583], [-0.34698074817126534, 0.5948642967023224, -0.7250798776047782, 3.061300450874384], [0.6921318525762226, -0.35929785844737294, -0.6259860601998557, -1.784729032900914]], [[-0.6738584760074764, -0.677708659202518, -0.29432248904018077, 2.1069016126022033], [-0.2613528101188297, 0.5912255042817227, -0.7629856563067315, 2.7524774672298413], [0.6910929481306208, -0.43722234198259835, -0.5755233798164758, -1.9412668678606892]], [[-0.6823742282508299, -0.648584096592252, -0.33720035923275105, 2.206423879367755], [-0.16753806344353533, 0.5877658937897886, -0.7914936837366934, 2.3602213938253116], [0.7115450863555126, -0.4836009964269131, -0.5097388216903069, -2.07911843755052]], [[-0.6269038462010776, -0.7096112847215885, -0.321626168422397, 1.8444549248612596], [-0.26312074744404856, 0.5814025777103407, -0.7698951324019763, 2.728095737738389], [0.7333205573845457, -0.39802370184142033, -0.5511969637885095, -1.9500096219211287]], [[-0.5625742683505817, -0.7829961947611789, -0.2653811439784698, 1.4575640055818513], [-0.3994879545126958, 0.538486186032858, -0.7419177863153358, 3.1981036154660187], [0.7238228835765484, -0.31136728543843517, -0.6157360203606981, -1.8423477871337273]], [[-0.6012927137771948, -0.7631903282240288, -0.23661698008332926, 1.707529996125137], [-0.45201471437311447, 0.5690892166460602, -0.6868916664856003, 3.252798217690011], [0.6588852482402738, -0.3060685975438717, -0.6871624576829551, -1.5203263039334496]], [[-0.5401578065917128, -0.8162633669263333, -0.2048015131587562, 1.2107335919045348], [-0.6919745731299067, 0.5692935877806685, -0.44393242847701236, 3.955124268923174], [0.47895796696548787, -0.09807612719668607, -0.8723418705727625, -0.49926979245478953]], [[-0.6079481699935081, -0.7849711250813518, -0.11924493863498509, 1.4411095906255331], [-0.7227306986047917, 0.6092989599639381, -0.32621329629721285, 3.950031281836771], [0.3287238353021796, -0.1121387987066923, -0.9377449173036586, 0.14772098488535712]], [[-0.6585441777559334, -0.7406512007677792, -0.1332492579529358, 1.6721757557199382], [-0.6914620924903836, 0.6654099077736209, -0.28126469612363614, 3.867880569371966], [0.2969844113629221, -0.0930884173135846, -0.9503340496738345, 0.2551677839940813]], [[-0.6500448133747849, -0.749562380032676, -0.1248918694082655, 1.6476270410491067], [-0.6731169359380235, 0.6442512778805054, -0.3631168978479833, 3.9506705080054654], [0.3526405126441766, -0.15197542363515973, -0.9233353342383068, -0.05457635227449706]], [[-0.6916492091741758, -0.6847088950695753, -0.22977184436161663, 2.0220236455239844], [-0.44763953203274587, 0.6560747602856866, -0.6076057589239781, 3.32063762613717], [0.5667805755406954, -0.3173950817651093, -0.7602763584783352, -1.233652867262233]], [[-0.6672220255423762, -0.6790743730923788, -0.30606006671946195, 2.0399663503507606], [-0.30525899286189573, 0.6240978497192673, -0.7192487895385906, 2.9202725924457758], [0.6794348503779225, -0.3864710465028131, -0.6237053906348338, -1.7584941334026463]], [[-0.6492405629731581, -0.6678641879528655, -0.3639287263192564, 2.030109753294411], [-0.16141724650904338, 0.5885768406998256, -0.7921627201031685, 2.438761115654526], [0.7432571317651351, -0.4555597974381318, -0.48993275767026734, -2.2104952816541728]], [[-0.6127990892372994, -0.6413504812296122, -0.46167828241804965, 1.968604680555851], [-0.02383439722922237, 0.5989608767751633, -0.8004235064023589, 1.9196303162236859], [0.7898792298438131, -0.4794949721522347, -0.38232888190937375, -2.6003041344347766]], [[-0.5336488447357223, -0.7218492902321503, -0.44062740802584044, 1.4765505626707485], [-0.191254407675656, 0.6105280356717092, -0.7685553130409537, 2.715370438087556], [0.8237964931078935, -0.3258667209921644, -0.46386443934942023, -2.628302910454498]], [[-0.6021024214425756, -0.6352524127233822, -0.48366005233232656, 1.939281915992973], [-0.017835062411174163, 0.6163223082085557, -0.7872920188553086, 1.9006379495187435], [0.7982196343374276, -0.46540432371605645, -0.38241892058921934, -2.6273213042893513]], [[-0.5798209701705034, -0.6588643781001976, -0.479275884873396, 1.7748411519259961], [-0.036813430120376855, 0.6088388594872632, -0.7924392812960629, 1.94383717298322], [0.8139117973793653, -0.4418291235861308, -0.37727259592740503, -2.7256463687112245]], [[-0.5453128460050779, -0.6916434147270829, -0.4735644484613505, 1.5753068041710974], [-0.09433113647718322, 0.6120024732919334, -0.7852099142111488, 2.1878872208014437], [0.8329078800640354, -0.3835131804113348, -0.39897631982113635, -2.7585809256618656]], [[-0.569275560631267, -0.6811138045423598, -0.46044469953490397, 1.711100342260016], [-0.07361914059685803, 0.6000331206741678, -0.796580489487283, 2.107817974437475], [0.8188440377787066, -0.41957626166866424, -0.3917272041081804, -2.634065797223669]], [[-0.5549079477639236, -0.6969354985458778, -0.4542665301065445, 1.6137691441285567], [-0.0934959208165671, 0.5948376849636204, -0.7983900308356705, 2.1573490968034696], [0.8266412052995504, -0.4005609059977392, -0.39524078520210615, -2.673855626641453]], [[-0.5369550049024129, -0.7228899824359335, -0.4348671015425581, 1.4603013358887094], [-0.05103277395872685, 0.5423729413201576, -0.8385864585752613, 1.9181705400115217], [0.8420658992574912, -0.4280907214802684, -0.3281209464361823, -2.7619493890621056]], [[-0.5634584792970349, -0.6847429517534065, -0.46221383810126754, 1.6289663471709204], [-0.1143922688353744, 0.6187595262378943, -0.7772072165906284, 2.263619849526421], [0.8181863790964552, -0.38505030673132634, -0.42697460152466116, -2.642427069461345]], [[-0.586779509195499, -0.675304031811812, -0.44682689288694377, 1.8081055382616016], [-0.10853703128086817, 0.6124236508758605, -0.783043411752259, 2.1542972390955355], [0.8024397300913165, -0.41097656437635643, -0.43265314410550804, -2.580993017453806]], [[-0.43893115744074973, -0.7801575333329709, -0.4457506726989192, 1.098809687152288], [-0.276581352720819, 0.5893189486709476, -0.7590822959761947, 2.7621961662094976], [0.8548930894298107, -0.20989854673433062, -0.47444747414647526, -2.473991382682787]], [[-0.5039927920051147, -0.7946176998512743, -0.33848777923280876, 1.4180511349603298], [-0.35921101760272534, 0.549240272809437, -0.7545214162348406, 3.169045126442296], [0.7854671924655434, -0.2586848155715469, -0.5622485711435922, -1.9460643958990222]], [[-0.5047138930780002, -0.7316766184689429, -0.4581628663694847, 1.4999770117315376], [-0.23639920185085117, 0.6275719101064925, -0.7418011290161057, 2.595186194862234], [0.8302886868423114, -0.2660879997879302, -0.4897120305552325, -2.4544276106462686]], [[-0.5765179455695512, -0.6550379413239993, -0.4884182161450175, 1.9550317650948015], [-0.1557957019397373, 0.674915989926509, -0.7212600819389805, 2.410918864712138], [0.802093983080143, -0.3397259218363198, -0.49115327581020374, -2.4844743392599904]], [[-0.5170891196547989, -0.6706352465888055, -0.531852619028427, 1.6921216237502534], [-0.09603920583264647, 0.6629082082767015, -0.7425154398006871, 2.1780300453530024], [0.8505264918141349, -0.33286795194512997, -0.40718989831550967, -2.7106786914259122]], [[-0.4087347873725875, -0.7633471760657983, -0.5002369062592811, 1.0645191224391704], [-0.20195905095383648, 0.6101754223742156, -0.7660930071918639, 2.5258374891793616], [0.8900271992075923, -0.212101491561985, -0.4035647927506435, -2.670090425550483]], [[-0.5321398725850339, -0.7268795118793894, -0.43413515316680407, 1.497662812994441], [-0.21226666528995936, 0.6109270498021815, -0.7626998116078718, 2.5808902166226817], [0.819615775111646, -0.31371055932177905, -0.479390932494715, -2.517620709230394]], [[-0.5804841604734405, -0.7243726108816646, -0.3719172758073032, 1.584168992133528], [-0.23644215897307727, 0.5870161949781134, -0.7742784333129573, 2.6577840795468357], [0.7791875543793003, -0.36151944268309855, -0.5120258271440092, -2.2354112743615713]], [[-0.568333981469355, -0.7461986520367501, -0.3466757234155977, 1.5098790398004673], [-0.2036036835576827, 0.5357771796236916, -0.819443929647554, 2.5700407849794558], [0.7972088970583142, -0.39513337684004823, -0.4564291718964143, -2.525494243485933]], [[-0.5320222826776939, -0.7734460485152226, -0.3445772783725066, 1.3423802956065383], [-0.1613356998899762, 0.49209256395675416, -0.8554622729492396, 2.360838471302281], [0.8312178310620072, -0.39953237482669124, -0.3865886687293314, -2.7977941548931162]], [[-0.10405387516291709, -0.9728393013631641, -0.20677641254942697, -0.7931351520923584], [-0.5685267551421244, 0.22876906311876533, -0.7902164541739999, 3.778560788214711], [0.8160576693783026, 0.0353328385923507, -0.5768894788136285, -1.9116680330456408]], [[0.2794786754765096, -0.9599669757132316, -0.018843446974687927, -2.3615636610173154], [-0.5728768254929837, -0.15097002497085343, -0.8056178960111187, 3.277631148416534], [0.7705217795539447, 0.23594799660156446, -0.5921357362402057, -1.4218098511968498]], [[0.13367565252020092, -0.9903902871787273, 0.03546687165985207, -1.781062102115215], [-0.43155991929499615, -0.0903907671753646, -0.8975441745493897, 2.6629439426938166], [0.8921249105262081, 0.10467372292742305, -0.43949579718936804, -2.298039180654902]], [[0.2720732986366011, -0.9606187563372637, 0.05645994280946298, -2.317572090195314], [-0.587884401459122, -0.2123823269103835, -0.7805675356669536, 3.302446088174672], [0.7618189093807326, 0.17917966455259338, -0.6225163428543634, -1.360113785904367]], [[0.15736696282366036, -0.9858232849164994, -0.05820730132980717, -1.711127672401677], [-0.643379175773179, -0.0576296008937387, -0.7633754418909826, 3.6011556637400957], [0.7491988222048145, 0.15757944033810617, -0.6433271677689727, -1.380844959169272]], [[-0.06837260208703477, -0.9750991967727074, -0.2109662146815669, -0.6750022471907643], [-0.5796130494256275, 0.2109373854630089, -0.7871176102397628, 3.5014190508352736], [0.8120184112564031, 0.06846149185674355, -0.5796025568554507, -1.9015242778219157]], [[-0.03896428823607136, -0.9792856303452253, -0.19869936698845087, -0.778510719668151], [-0.6148192214945549, 0.18024989586045392, -0.7677937873694505, 3.5260664518387976], [0.7877049632464466, 0.09224765168637206, -0.6091069377664845, -1.7632400433947633]], [[0.10740922371421632, -0.9663539506940878, -0.23371628235755876, -1.356278783931998], [-0.8051054980880964, 0.05338228716599012, -0.5907245283253829, 4.075932763710084], [0.5833252914193141, 0.25161552693515654, -0.7722831287783749, -0.604509359799167]], [[0.07441210703426315, -0.984890285689596, -0.15637763101219881, -1.1915324679769792], [-0.7812238364085855, 0.039889599376595426, -0.6229752300763063, 3.982973845089181], [0.6198000933799327, 0.16852283232796908, -0.766451498289609, -0.7868641187316304]], [[0.017801596216088234, -0.9734679507357953, -0.22812990172796432, -0.9346291643701404], [-0.6738103879791089, 0.15689030509061652, -0.7220560873090234, 3.7989063230271207], [0.7386898295114142, 0.1665700485045994, -0.6531399197090721, -1.3560511539659248]], [[0.006113593647802534, -0.97002057668701, -0.24294588857708566, -0.8690744807336968], [-0.6351615996980204, 0.18388065718228488, -0.750171744458069, 3.8467983399286156], [0.7723550778248052, 0.1588961444403585, -0.6149956496108142, -1.57637387442195]], [[0.09692341812960274, -0.9489091401581362, -0.3002953458554103, -1.129426741023831], [-0.6480193836287453, 0.1688393351210729, -0.7426736546810415, 3.8437828362033932], [0.7554314856156679, 0.2665796740942947, -0.5985470306502944, -1.3727018530011192]], [[0.18017327471997782, -0.9383826983254305, -0.2949160941016334, -1.3850800926364457], [-0.6715984598806332, 0.1017020343236569, -0.7339020403980298, 3.932497797162127], [0.7186745437001656, 0.3302947285348553, -0.6118923864042151, -1.1336010049928749]], [[0.26954236318601177, -0.9088106839116261, -0.3184494547902109, -1.7154401438072737], [-0.5932706163274637, 0.10376488239039315, -0.7982874325610664, 3.608333278356824], [0.7585360177674699, 0.40409898538673705, -0.511201642954009, -1.319630866545738]], [[0.3118728427519157, -0.8719109816243803, -0.37750042394234273, -1.7527670612711277], [-0.6652805481660643, 0.08326333260805101, -0.7419359875857636, 3.9611071065727668], [0.6783340785967487, 0.48253337456160567, -0.5540978435696079, -0.8921602762146205]], [[0.3269151502232006, -0.8678824947785837, -0.37404071945637696, -1.7898928755804688], [-0.6282147480895848, 0.09611506765540356, -0.7720803870403243, 3.787363659341139], [0.7060260015305965, 0.4873826720622094, -0.5137951110474089, -1.026722641064504]], [[0.3313795479263407, -0.86276895664372, -0.3818603444559818, -1.8013821159130896], [-0.6512269241937823, 0.0837025625215918, -0.7542528582858834, 3.880214121548264], [0.6827086409451986, 0.4986217087925735, -0.5341210565962871, -0.9047730169477638]], [[0.363140278347899, -0.8632348228645697, -0.350649082182437, -1.9791895437576903], [-0.5405022882542867, 0.11137360134193847, -0.8339383654179767, 3.387164132898353], [0.7589376882414591, 0.4923632414367486, -0.4261361564671642, -1.3635861978108843]], [[0.33195628807831645, -0.858463269972854, -0.390955031829468, -1.8059269837927012], [-0.6648181629424659, 0.08110807315941457, -0.742588910966338, 3.908560519489536], [0.6691949140774088, 0.506421064506485, -0.5437976391977511, -0.8542536359089379]], [[0.3110433666174168, -0.8702151428252202, -0.3820701889456765, -1.7367515272129885], [-0.6715464280693492, 0.08322995197304883, -0.7362731626521928, 3.901659599734534], [0.6725157388720369, 0.4855907539196413, -0.558501746351032, -0.8587323471848124]], [[0.30899888691989696, -0.8805018012788492, -0.3594944586874281, -1.751660077194791], [-0.6737688080232758, 0.06411129704482857, -0.7361557816971378, 3.9004639572394013], [0.6712341478330488, 0.4696874700648634, -0.5734443296841545, -0.8544098477977509]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.30587522960569535, -0.8942992897786619, -0.3266023946866343, -1.7294618231158723], [-0.6708338770971867, 0.040980995087437126, -0.7404744880010383, 3.8526017123319694], [0.675590299850745, 0.44558875473133774, -0.5873911885656405, -0.8687845245209219]], [[0.3173545329173375, -0.8741200670983482, -0.3676958100560819, -1.797287207498627], [-0.6968919557758921, 0.04799085560902705, -0.7155686408394136, 3.9538805502637593], [0.6431389448724676, 0.4833332039844699, -0.5939371275770156, -0.7386043216015393]], [[0.3325800514292827, -0.9072906354998124, -0.2573212236206761, -1.98720079703827], [-0.6812439608293591, -0.042446606543863986, -0.7308248431918805, 3.7946793844988798], [0.6521481236841995, 0.41835629351935966, -0.6322031607386354, -0.7423993974675779]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.5702859847264583, -0.8177500447496319, 0.07783803656663962, -3.274065654801189], [-0.5755728693780992, -0.4653981518866136, -0.6723990126824892, 2.705135869935358], [0.5860800010753104, 0.3386582710233134, -0.7360847830291455, -0.4813002358472929]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6773754141708723, -0.7214111265021592, -0.14397407695736314, 1.9603145298318987], [-0.3072791248204447, 0.4552927949151383, -0.835636290707831, 2.8851921359174932], [0.6683876777188675, -0.5217992501501385, -0.5300787251119708, -1.9107943852640514]], [[-0.73920500508317, -0.63795144808383, -0.21585622610370755, 2.3331696298747775], [-0.21703043669650007, 0.5290543008344104, -0.82036536757468, 2.601467283011211], [0.637552938984142, -0.559570814693152, -0.5295344685063713, -1.879162228103403]], [[-0.7555747584450563, -0.6143173943390062, -0.22742234589685495, 2.397940029002913], [-0.21737032982545232, 0.5626335424580027, -0.7976174751174483, 2.56812409526971], [0.6179457290994647, -0.5532247607561442, -0.5586460775607738, -1.7606293876961738]], [[-0.7811771943241358, -0.6043662324819292, -0.15653641143028016, 2.424913887542886], [-0.3031487213814126, 0.5863942628075077, -0.7511608491336953, 2.8623602660663856], [0.5457683059620502, -0.5393359116376714, -0.6412906756107373, -1.340668472156932]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8839314867048012, -0.4569884613221664, -0.09912957696993735, 3.0545154696678964], [-0.20161427205115864, 0.5637211964682443, -0.8009807101033661, 2.3881297064181655], [0.42192038599375753, -0.6880261324040027, -0.590426311246432, -1.010364841408767]], [[-0.9097653195201453, -0.41388104873401876, 0.03208645971803206, 2.977366422611508], [-0.30693184763919534, 0.6186046478199551, -0.723271132149168, 2.702490586424858], [0.27949938157927634, -0.6678553490048411, -0.6898183300713485, -0.3902702203492381]], [[-0.8966582802229429, -0.43157099254117637, 0.09874414871099055, 2.7637740560374104], [-0.3617162552172343, 0.5855344478066952, -0.7254727845641967, 2.9745971990126745], [0.2552749091063493, -0.6862185430522355, -0.6811305542640209, -0.39304834510543407]], [[-0.8931792822937261, -0.4316215791520258, 0.12622829354616186, 2.6974642907374764], [-0.3814801136784677, 0.5785881122585422, -0.720908259920054, 3.1332689815550134], [0.2381253714939419, -0.6920539059664417, -0.6814379639317609, -0.4381717840534801]], [[-0.8544942589625713, -0.5108208679911995, 0.09434830271247005, 2.4637733153036354], [-0.4126229564578794, 0.5571241193564337, -0.7206628972239915, 3.323547531271951], [0.31556593162755286, -0.6547325839272364, -0.6868357782905599, -0.7194319889248523]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8842550613814523, -0.42352893171422823, -0.19676440334137824, 3.4361917899276615], [-0.3325770715603419, 0.8668862338541893, -0.371349901072354, 2.3676407356056055], [0.32784977946253246, -0.26292870051613715, -0.9074045517580702, 0.13353053622670288]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.8691414723609221, -0.48787124204247556, 0.08108484574950274, 2.8707665164202227], [-0.39173894478627125, 0.5790455213749254, -0.715015302852589, 3.0421839160514406], [0.3018835870994432, -0.6532135449939576, -0.6943906425610873, -0.40392238087772825]], [[-0.888626585518367, -0.4565805895977534, 0.04332385846777881, 2.91091357125336], [-0.3159788740340208, 0.5410238691933531, -0.7793911239725828, 2.8156079007584007], [0.33241561737403463, -0.7062770972965366, -0.6250380141721126, -0.7137205312694634]], [[-0.8401004111594086, -0.5414266654358907, 0.032991894834408175, 2.5007364656477082], [-0.3517582477506098, 0.4974841831630633, -0.7929537329768999, 3.000253703887079], [0.41291334963792725, -0.6777659282212054, -0.6083879619397763, -1.073177452283169]], [[-0.7931443051081464, -0.6083681910477788, 0.02846498543419207, 2.1955905410024346], [-0.42583165402509493, 0.5205397530930419, -0.7400714613333543, 3.2752591699553832], [0.43541877968774767, -0.5991047567588561, -0.6719255737982777, -1.0401765402776082]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6867078533103891, -0.7265122344668511, 0.024744643295482677, -3.3774881829639765], [-0.6785522232884822, -0.6528431144239656, -0.336693849393594, 2.3899775707344486], [0.2607665708485183, 0.2144197778172562, -0.9412889855983149, 0.8091452041700485]], [[0.7645830618645689, -0.6441875077098072, 0.020861361902521636, -3.5681560939465453], [-0.5911433207093781, -0.7137877874319655, -0.3755749843821713, 2.0572090510626695], [0.2568312985025191, 0.27482621676908137, -0.9265571945033417, 0.8541166297204718]], [[0.7809996962111192, -0.6241495717397251, 0.021835444013283606, -3.6538555956422036], [-0.5595932493387606, -0.7148882251178708, -0.41927344404613615, 2.0008986951184347], [0.2772992423585524, 0.31523346536327407, -0.9075973735651919, 0.7693347356970618]], [[0.7772771865761171, -0.6194026130862207, 0.11036565648007411, -3.7240155647446653], [-0.5190039345909128, -0.730403039987773, -0.44401161590184957, 1.8919487161724273], [0.3556333661335333, 0.28783988965843765, -0.8891980132759806, 0.45786994456174684]], [[0.7773741518512554, -0.6196968250855828, 0.10800589341508238, -3.734412460154337], [-0.5078752919801781, -0.7196257922767864, -0.473499109699328, 1.9072026911588065], [0.3711497215809144, 0.3132324441510747, -0.8741471959009841, 0.39665932734650616]], [[0.791278748366234, -0.5958179532014455, 0.1374005423089962, -3.8023612366492046], [-0.4680627871150561, -0.7348143522666353, -0.4908819563001383, 1.7735964563782984], [0.39344017296413925, 0.3241123791924728, -0.8603231927317447, 0.309712948585829]], [[0.7965999054012571, -0.5935711599934067, 0.11446339475478476, -3.7984869111614885], [-0.4691421033854987, -0.7264487165994081, -0.5021732260705494, 1.8076353999291261], [0.38122733053355207, 0.3463315466069393, -0.8571582014302305, 0.37526941502205147]], [[0.795283036822133, -0.5884746392118755, 0.14567940948335445, -3.819897829700469], [-0.46118622546049337, -0.743241987153701, -0.4846634027624953, 1.7236380995352354], [0.3934871748716454, 0.318259245798564, -0.8624841422746626, 0.3184787003207698]], [[0.7919098593495338, -0.5886808072536078, 0.16227655972518792, -3.8451577099814536], [-0.46166488910365655, -0.7511252431079395, -0.47188600247829693, 1.703532887427477], [0.39968025324490364, 0.2987737879019501, -0.8665967452216805, 0.26179004906726355]], [[0.7929693270257138, -0.5859208625593177, 0.1670221219303945, -3.858863840662878], [-0.4590864248389992, -0.7548498151725404, -0.4684457397207576, 1.6836027406090193], [0.40054874974830773, 0.29478551414838366, -0.8675610639737936, 0.25883796477253507]], [[0.7855821805333852, -0.6007950625757241, 0.14800652152200422, -3.8180858814429435], [-0.47471987328316684, -0.7386342194002351, -0.47860268683013024, 1.7738302912042554], [0.39686481267356744, 0.3057201051871425, -0.8654672366681117, 0.2827389370358723]], [[0.7906116252717793, -0.6009316187890182, 0.11753487790747733, -3.779716826318167], [-0.4872406535416312, -0.7336707744455572, -0.4736282722354953, 1.823979028278918], [0.370850109237465, 0.31718824736119455, -0.8728469580713987, 0.40920772452897497]], [[0.7824304575137431, -0.6046160524120998, 0.14913754832517367, -3.760379439510164], [-0.464671723865038, -0.7262788665086378, -0.5065562131720641, 1.7792280777411391], [0.4145874674843999, 0.3270450079553834, -0.8492106891557208, 0.22750298148736214]], [[0.7865972570763862, -0.6006267981073722, 0.14322082444669879, -3.8033992018122795], [-0.468642188823219, -0.7317532022477824, -0.4948855926929964, 1.8012885042137545], [0.40204384588610287, 0.3221563291251656, -0.857074119075888, 0.2735359872888838]], [[0.8181620056602088, -0.559605441909775, 0.13210859880806408, -3.881512301646395], [-0.4345956014059885, -0.752289111059468, -0.4951643733346762, 1.6202736555172217], [0.3764805383185587, 0.347710860869086, -0.8586964315175925, 0.36012954648100187]], [[0.811571221897476, -0.5697524846578096, 0.1293609601622147, -3.8562395791470228], [-0.4491780386819502, -0.7500444315478156, -0.48546105947846263, 1.684091314412126], [0.37361911267181463, 0.33588012285690183, -0.8646347793814215, 0.4029946076771063]], [[0.7946388564569582, -0.5689463467337407, 0.21177616095091686, -3.787267604724183], [-0.42586968483223403, -0.7710318838057552, -0.47343937911399203, 1.6420885086284505], [0.4326477774699323, 0.28602427990168733, -0.8549888958092082, 0.20085354053269094]], [[0.8039545223202814, -0.5780337541430961, 0.139764462979711, -3.8592892739335394], [-0.45442335834112735, -0.7487235041490737, -0.4826101177230989, 1.6825060610377607], [0.38360987661260715, 0.32448435001702436, -0.8646116869203709, 0.3386549201251218]], [[0.7783202852555553, -0.6186163541395181, 0.10738407680304168, -3.8085175103790174], [-0.5078539856997532, -0.7208395619473101, -0.47167219034037333, 1.902742787396598], [0.36919082162018335, 0.3125766023277188, -0.8752108345471242, 0.3831640373261278]], [[0.8005283076823481, -0.5800068318096706, 0.15081944056833074, -3.8389737522871803], [-0.454470590457109, -0.7515830630038125, -0.4780997613630166, 1.6827747925560166], [0.39065446497999035, 0.31418939265977, -0.8652595648308558, 0.2994441693317596]], [[0.8200177638267164, -0.5548547593510104, 0.14038184723875088, -3.8899003045631413], [-0.4377919482468595, -0.7660762141392048, -0.4706011519114276, 1.6091634824571361], [0.36865848296065384, 0.32444326184354, -0.8711070501295887, 0.419976433930757]], [[0.8361299849960967, -0.5293217518701173, 0.14389277670396342, -3.920123091444272], [-0.41088755537981325, -0.7781724100951215, -0.4749938073288441, 1.5066589726086297], [0.3633979430657631, 0.33803281373840044, -0.8681450062124831, 0.4559228670475162]], [[0.843984800150944, -0.5191803141822536, 0.1346902315678017, -3.922370277651348], [-0.40682690480837497, -0.7832877870430397, -0.4700554352342446, 1.4510161056117663], [0.34954474196904894, 0.3419240325493868, -0.8722995066644007, 0.5034026871526385]], [[0.8565380669583221, -0.5006356061822669, 0.12532569438792288, -3.927249456612982], [-0.40212724661342614, -0.7996369272760588, -0.44595343037990887, 1.3795299553548936], [0.323475219116404, 0.3315792127969087, -0.8862386858282464, 0.596157200805018]], [[0.8665286830072384, -0.4871275904291332, 0.10878764713168367, -3.941099634249319], [-0.3967011357156917, -0.8044245564568014, -0.44218699878123874, 1.356509412669367], [0.3029129420272785, 0.3400115345278533, -0.8903010198468795, 0.701282164585131]], [[0.859572064563677, -0.5011602284555013, 0.0998713734569008, -3.9173987253904317], [-0.41440023297569034, -0.797973401782662, -0.4376195801802065, 1.4216090676901825], [0.29901222839782265, 0.3347788456008478, -0.8935965598673332, 0.7135703990355518]], [[0.8488607687899787, -0.5196565188571334, 0.09691489884724762, -3.893291815592372], [-0.42964654617652953, -0.7850468359485996, -0.4462121812833795, 1.4969030251667172], [0.30795980349367946, 0.3371328636848952, -0.8896640892245544, 0.6775191563635096]], [[0.8508964028776981, -0.5143091890771286, 0.1070577862680729, -3.917934736822909], [-0.42348653043231616, -0.7921283782247838, -0.43953588130364646, 1.462687881064546], [0.3108608532964436, 0.32866196987452095, -0.8918222017005446, 0.6670739332687836]], [[0.8411815141980692, -0.5321520033514423, 0.09606198780209575, -3.8697849544159104], [-0.44054875372879665, -0.7774208911847953, -0.448924886297744, 1.5501100461607173], [0.3135768737637512, 0.3353073266102082, -0.8883909842867987, 0.6476030310553993]], [[0.837679923478362, -0.5417282413444797, 0.06944680216613942, -3.824683079474148], [-0.4642416688032203, -0.7732361381127617, -0.4319554926879186, 1.6245865355829794], [0.2877012665041411, 0.3296003447302181, -0.8992172118045972, 0.7643349108890164]], [[0.8216038953619879, -0.5671377677624841, 0.05763498506458119, -3.7852610642320874], [-0.4911618032247966, -0.7555845740811983, -0.4334190056556138, 1.7384614880102667], [0.28935639301555804, 0.3277906401774178, -0.8993476380316485, 0.7490971744232069]], [[0.8415857056923647, -0.5338051454729498, 0.08237455092980751, -3.8768203976811666], [-0.4524444913042487, -0.780021013028221, -0.4322744516194162, 1.5691924632727399], [0.29500420719495535, 0.32652608762705365, -0.8979717322033277, 0.7192537119130825]], [[0.8345387186955922, -0.547244351426564, 0.06378672925960793, -3.8077539782551773], [-0.4655272524772286, -0.7623270161668869, -0.4496019324058716, 1.6601656575865567], [0.294668464887103, 0.34551575977632426, -0.8909485706522391, 0.7329203388128341]], [[0.8191648338579327, -0.5734810537842587, 0.00940510079699422, -3.6900509875335765], [-0.5090593662537923, -0.7345036505096508, -0.4487348315177735, 1.8611610252620683], [0.26424900491731795, 0.3628000390552535, -0.893615462635755, 0.8860323816497065]], [[0.8231018644849933, -0.5661841548774553, 0.04403207293586703, -3.7739807691862763], [-0.48779902755059634, -0.7445860101118608, -0.4556794731677005, 1.7738886361895407], [0.2907841629147302, 0.35359182161272096, -0.8890542133562935, 0.772346523058453]], [[0.8492779509784606, -0.5183492027676683, 0.10020511948972595, -3.8863972503595767], [-0.4327233860771629, -0.7921797940238701, -0.4303506071591083, 1.488499041970419], [0.3024523650490142, 0.322126183242563, -0.8970826544671546, 0.6864992682525785]], [[0.8212242231882064, -0.561031219575845, 0.10409008555173248, -3.8078402026030154], [-0.4862057525781177, -0.783492005148524, -0.386968014218606, 1.6152321516437904], [0.2986548867989157, 0.26717830849375673, -0.9161992196359596, 0.68060835696856]], [[0.7951487334303319, -0.6003822387725136, 0.08532091824777517, -3.7372010844723156], [-0.5282838943424978, -0.7548934164021391, -0.3886541609850989, 1.8069421447196676], [0.2977492547471172, 0.2639641968889171, -0.917424811119868, 0.6742297185849594]], [[0.8116358109847117, -0.574170561383542, 0.1075893896613298, -3.956657422656528], [-0.48782699298376714, -0.7675101337348372, -0.4158762069784083, 1.8578141873598124], [0.3213598220742676, 0.285055014084721, -0.903034608252394, 0.6609154033264223]], [[0.8447448301907468, -0.5212616178342057, 0.12121261336541238, -3.8953716154620044], [-0.43617953216465477, -0.8018355558336279, -0.40842031918306926, 1.4459994347239726], [0.3100864195456314, 0.29214049218457167, -0.9047100890558959, 0.6319552047974459]], [[0.8506894099045655, -0.5059903402872522, 0.14248264249449005, -3.9164584897198607], [-0.4194583342207381, -0.8167659079186974, -0.3961668304067235, 1.3422413589639262], [0.3168315541876875, 0.27724939530634995, -0.9070559735061987, 0.5637198068889113]], [[0.85359547903928, -0.49631475659425084, 0.15826060959850882, -3.959210465291024], [-0.4081018838612237, -0.8259182898292062, -0.3889882143645475, 1.2922455507647987], [0.3237709229573008, 0.2674521282629629, -0.9075471054083026, 0.5928442921039735]], [[0.8529323318018812, -0.5009487610418332, 0.14682226049771147, 16.11626420282706], [-0.41893809471312704, -0.8246735055384042, -0.38000589740309804, -11.843176245868783], [0.31144391174839253, 0.2626098780961052, -0.91325721555387, -22.64786324524026]], [[0.8611771267971473, -0.48150190657662056, 0.16287992584873517, -3.9373186515802012], [-0.4040093316732622, -0.8428425629387205, -0.35551775485875947, 1.1913708344625797], [0.308464610939949, 0.24035874866950102, -0.9203680001693332, 0.5513797852045061]], [[0.8471426337854513, -0.4971828972901375, 0.18750606567584233, -3.9474313669850223], [-0.4292735411710304, -0.8483257100377435, -0.3099479255285342, 1.2076020703449009], [0.3131670239241871, 0.18207870916486268, -0.9320803392386972, 0.496052374984364]], [[0.8286937997747129, -0.5034647446685769, 0.2445196047165801, -3.968147533480113], [-0.43725846749538677, -0.8550680326699569, -0.27868206276959373, 1.1723760644705647], [0.3493874909302474, 0.12402382989464014, -0.9287337997508932, 0.2630896585004788]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.2982971840884101, -0.5841672151595639, -0.7548294209274335, -7201.094729460656], [-0.01664164715164962, -0.7938965946960065, 0.6078250180028489, -7029.968380896272], [-0.9543279549216845, -0.16875088640597855, -0.24653862332744345, 11726.344977190272]], [[0.4372049975028599, -0.8983462536355825, 0.04272936621854101, -426.53726223427725], [0.814353466716658, 0.4155960932394608, 0.4051028493242902, -37.45042216005259], [-0.38168078469459976, -0.14231618271655322, 0.9132720748670153, 773.4406641054214]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.11841074065199052, -0.9927674074794305, 0.019793209563323422, -51.73458884945481], [-0.9601611027693205, -0.1195574671233708, -0.2525800245147002, 7.272274285748175], [0.2531196421201829, 0.010903517855018696, -0.9673735369914436, 44.72014765434673]], [[0.04410808431822938, -0.9990050898120179, 0.006580837899379022, -50.52013798812825], [-0.9678507622770004, -0.04436347687867809, -0.24758187308255025, 12.18580679220402], [0.24762750020465218, 0.004551093156254904, -0.9688446256719793, 48.73146841846752]], [[0.028319286827440636, -0.9995988359172095, 0.0004303795358180651, -24.284571606284803], [-0.9653924263762229, -0.027461861404413347, -0.2593517095830177, 7.655216471474941], [0.25925948601548665, 0.006929170308522498, -0.96578284593889, 15.75908771233101]], [[0.004854153583053689, -0.9998461587778081, 0.016855146699281287, -1.0454929967181297], [-0.9817497635223732, -0.007969440565372798, -0.1900102361475283, 3.9818762947058755], [0.19011533083041093, -0.015625197417541897, -0.9816374148273417, 0.8261884239577725]], [[-0.06316764841768222, -0.9976796380545105, -0.02540055126963711, -58.3609238839944], [-0.9492250703814089, 0.06792041671446356, -0.30717842169127596, 39.36076961798672], [0.30819087259811884, 0.00470710152375492, -0.951312897653793, 54.67420819354566]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.07259216109064098, -0.9956538831793649, 0.058341435172977504, -21.80285682899207], [-0.952631519219435, 0.051896157066530106, -0.2996664436859718, 16.744213906340125], [0.29533636203126457, -0.07733132477578718, -0.952258525543647, 17.832126878355968]], [[-0.013226316833133273, -0.999511098315868, 0.02833070571724519, -4.464560154947208], [-0.9380803861237111, 0.002594635675130491, -0.3464079344294855, 16.21803853945454], [0.34616506714719053, -0.031158180452666134, -0.93765607451659, 3.2798922355319746]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.19142150933080168, -0.9720668861013673, -0.13580785953216973, -51.07331259497541], [-0.9195926746513103, 0.22598701713301597, -0.3213707840096409, 65.67271033583094], [0.34308471037510135, 0.06337063225590894, -0.9371643636386946, 101.64937444093725]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9791672977678538, -0.20141141372365765, 0.025784596251187668, 3.697558224085342], [-0.19883561056863638, 0.9253055340854774, -0.3229149556161603, 1.6078237830412994], [0.0411801281177794, -0.3213146604383728, -0.9460766808433535, 1.2438159455488045]], [[-0.9654651715553191, -0.24775046360306258, -0.0806021730360025, 3.704077390758953], [-0.20678328319904532, 0.9168892490296229, -0.3414011991825992, 1.5439392134986203], [0.15848557127726656, -0.31294378536465767, -0.9364552903895399, 0.8569591438768711]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.41052656991932146, -0.907392409947891, -0.09003860149533177, -2.006000976261328], [-0.7717882735692515, -0.29318602404271654, -0.5642559845380624, 3.5774117905021954], [0.4856035380547294, 0.3011328106915323, -0.8206754743220652, -0.22611945988362697]], [[0.8909042604702307, -0.45379034054902934, -0.01907683150808967, -3.3797667326270755], [-0.3748572003956214, -0.7109240241665988, -0.5950370670591254, 1.882865568071824], [0.2564598954759768, 0.5372721458322265, -0.8034718186254487, 0.7440063387869436]], [[0.9883719448322004, 0.1472415639136006, 0.03795814174707359, -3.262631140370631], [0.1425245852072189, -0.8100994316359574, -0.5687052430518018, 0.07840042582702605], [-0.05298718033755024, 0.567502275519117, -0.8216650935755395, 1.790606480784501]], [[0.9119817656755287, 0.4099008824872382, 0.01644766279833909, -2.727352400039604], [0.3585741445409365, -0.7770264515626137, -0.5173533380956855, -0.5631543985415948], [-0.1992833207824482, 0.47771451737224435, -0.8556138135570998, 2.158950366239641]], [[0.8561055186354278, 0.5134079838645698, -0.0591234561412161, -2.418295414159128], [0.44376212650812363, -0.7889211256849223, -0.42506309240514284, -0.7245995467473014], [-0.264874528860275, 0.33766210855254786, -0.9032307481529261, 2.293020679510959]], [[0.8125179356741613, 0.5772369330485032, -0.08131498836350727, -2.239824620346254], [0.5084318555424334, -0.7699771498859048, -0.38552851635547924, -0.8063328516209417], [-0.28515198136691544, 0.27190570383560675, -0.9191058892990436, 2.267434785180223]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.8667887182445752, -0.4439225405234299, -0.22717855519205654, -1.1838769532060056], [-0.4848922863714243, -0.6439230224253718, -0.5918129871911115, 2.422764881274034], [0.11643362289914011, 0.6231339496495099, -0.773399826902478, 0.5427533911447183]], [[0.5060568008591847, -0.8465884778719391, -0.16490743900334487, -0.4518086487815975], [-0.7469896559518204, -0.3346153281411994, -0.5744902401903266, 2.851536798082861], [0.4311762611799839, 0.4139088442005453, -0.8017271982959161, 0.09591335305621501]], [[0.1588975958947747, -0.9802836837021658, -0.1174540484026535, 0.15430514653770813], [-0.7346426056673439, -0.0379178908504304, -0.6773938850415985, 2.9497896963817287], [0.6595845631586267, 0.1939230079716351, -0.7261832213856754, -0.4657645800429199]], [[-0.18078455534845983, -0.972966654451715, -0.14371093859722844, 0.9008581721744652], [-0.7017840457499886, 0.22998532677984773, -0.6742446904475734, 2.889500045410905], [0.6890690079217301, -0.021038982651333193, -0.7243902701795211, -0.5581402132242614]], [[-0.4178746508675748, -0.8881950229509918, -0.19102454650486594, 1.5034316646839043], [-0.6315918943335572, 0.435152229315682, -0.6416651902150693, 2.754853592018092], [0.6530485856155355, -0.14748606214378104, -0.7428158629827917, -0.5071165014969535]], [[-0.5121036153580272, -0.8444121118293464, -0.1572198223289325, 1.7148329317954654], [-0.5614219316543141, 0.46760195659403414, -0.6827545861046777, 2.7780169558580226], [0.6500425384501974, -0.26137443560022156, -0.7135321314558225, -0.63956016566829]], [[-0.573337048308546, -0.8159162762888659, -0.0746006643653716, 1.7100551966623325], [-0.5268968969897008, 0.43690289773546254, -0.7290373912859203, 2.850665037163999], [0.6274267200075786, -0.37867728745894763, -0.6803963719650958, -0.7661591701580989]], [[-0.6124341096940009, -0.7867888378564835, -0.07673190931914076, 1.795936144941861], [-0.5386810906812481, 0.486397871950227, -0.6879242637854494, 3.0059964644328616], [0.5785733694405384, -0.3799742554262534, -0.7217149169772555, -0.6800568451705709]], [[-0.6358239750754328, -0.769623228433329, -0.05837772670407218, 1.891390158630899], [-0.5537113722472736, 0.5075238424706768, -0.6601691189141163, 3.102079952490625], [0.5377095767822223, -0.3874269422480314, -0.748844960894459, -0.6357740391972153]], [[-0.6676123446898434, -0.7445040572435427, -0.0027323919252977835, 1.952959784450929], [-0.5772666234100751, 0.5199577598727625, -0.6296087463217369, 3.230642915746108], [0.47016699449712585, -0.41875725270853803, -0.7769075624484147, -0.5259756761281907]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.39212657147359037, -0.8816164166316275, -0.26265803979694924, 1.0342722903099575], [-0.6628650205712684, 0.4687708414705037, -0.5838354757036333, 3.436417271677653], [0.6378453703268677, -0.05483057643910455, -0.7682101870191103, -1.6699418275221067]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}, \"151a8f90-fdec-4693-89d4-1a6e6459a612\": {\"good_poses\": [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, false, false, true, true, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, true, false, false, false, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, false, false, false, true, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], \"camera_poses\": [[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.9216547637714829, -0.3839596121663104, 0.05592416867892026, 3.3450474822051617], [-0.3450655168616054, 0.7451779584108197, -0.5706484025840389, 2.635949660562685], [0.1774324814975121, -0.5452383208504138, -0.8192880372529896, 0.4568679088187981]], [[-0.8678494262272505, -0.49203622939752245, 0.0688311147468988, 2.9873266426634073], [-0.42593441486249595, 0.6655187159404118, -0.6129149312659695, 3.001971558281999], [0.2557679566184461, -0.56123541200934, -0.7871451992319658, 0.06530644042744084]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.02573672533617148, -0.9984998449319282, 0.04832887997756499, -1.5288749932149395], [-0.8709775771721122, -0.046125514803217874, -0.4891528359802645, 3.9765434922528846], [0.4906482253431351, -0.029504178603267955, -0.8708580954510203, -0.597413750759947]], [[-0.06848030670736528, -0.9916832608744778, -0.10897136180954986, -1.4281987524268327], [-0.8975719137815358, 0.10892449722246188, -0.4272003201021568, 4.405095030435898], [0.4355170572822797, 0.06855482482069755, -0.8975662253059588, -0.0521101835174514]], [[-0.4297374426441785, -0.9027427036601768, -0.019527963999242448, 0.2528980977521366], [-0.660264709588693, 0.3289146761640396, -0.6751782350429139, 4.015681407289532], [0.6159352593101002, -0.27725574257753377, -0.7373961008483705, -1.4154297630299348]], [[-0.4286353648366825, -0.8873262024482982, -0.170070380901572, 0.4269550718302068], [-0.4920453335025221, 0.3871414149980962, -0.7797518288350875, 3.6639534500654105], [0.7577355170438534, -0.25054687234518314, -0.6025472188702978, -2.0526445267240043]], [[-0.212022100979253, -0.9171319711643373, -0.33751381625729154, -0.39396997012431373], [-0.49830787372426166, 0.39855310752584006, -0.7699640793348099, 3.7322810004310956], [0.8406758541083175, 0.004936390352609454, -0.5415161496848806, -1.976781277608392]], [[-0.14337004320112276, -0.9574997450152731, -0.25027838302217525, -0.7621036559704704], [-0.5286258491935565, 0.28788336812326976, -0.7985473548402706, 3.737851221316884], [0.8366598725150496, 0.01781585399829555, -0.5474329667360304, -1.9872405674931082]], [[0.16554948984626816, -0.9723582358773813, -0.16465973257924177, -2.1383429204764712], [-0.47621770648511375, 0.06738915325199268, -0.8767413518558581, 3.311409811940467], [0.8636029541645271, 0.2235579637262034, -0.4518979690293983, -1.8286104057936756]], [[0.37087344603508704, -0.9236922089687252, -0.09615399168280342, -2.982361412041815], [-0.48291048060632735, -0.10337678366760887, -0.8695462657726194, 3.014078569190093], [0.7932530206350465, 0.3689253904097925, -0.48440035256423697, -1.2413873737030492]], [[0.4465544630958893, -0.8935667299126595, -0.04612603042034347, -3.2328679545449734], [-0.5151933129430835, -0.21463213730155373, -0.8297643616931841, 2.877739808963798], [0.7315496987818889, 0.3942988014571732, -0.556204542755239, -0.8485653891492209]], [[0.5053501083427195, -0.8614588835798228, -0.05009850196769994, -3.3642747240152304], [-0.5111312844299004, -0.2520533634540202, -0.8217140086724555, 2.7485191020022124], [0.6952453366079075, 0.4408601749681198, -0.5676937801773386, -0.5773806728786872]], [[0.5247676169174589, -0.8470860051719444, -0.08404908135493128, -3.40478898370946], [-0.5354903375134081, -0.25174783296870323, -0.8061470877112552, 2.809790498808906], [0.66171674201621, 0.46804735704562905, -0.58571548118353, -0.3772788957219179]], [[0.5172364279211586, -0.8480052580264097, -0.11555760464340897, -3.352985698961798], [-0.5703433386007899, -0.24086554128797308, -0.7852975659797736, 2.9164574241404417], [0.6381026200738131, 0.4720920179155905, -0.6082385821988943, -0.2561203967132078]], [[0.5219069292154048, -0.8428254188222031, -0.13137149852279625, -3.348851564296885], [-0.6104609827607212, -0.2614840617742714, -0.7476385984985284, 2.9553066496891223], [0.5957772618720535, 0.47039493920025055, -0.6509823771892995, -0.0451063762329378]], [[0.5287179536203022, -0.8381320314777908, -0.13413434806369215, -3.365569386345483], [-0.6242189927135738, -0.27685883628821434, -0.7305476260345982, 2.9406177792101316], [0.5751590863884629, 0.4699828534957924, -0.6695581698140508, 0.04876558136571452]], [[0.5376382991602139, -0.8322907037156039, -0.13504533973706204, -3.3892248753968737], [-0.6422329882628514, -0.300446398165787, -0.7051728515875906, 2.9231372204012116], [0.5463349229758993, 0.46585850463181494, -0.6960560362493292, 0.18279107583642087]], [[0.5938985593984172, -0.7977159824273163, -0.10456439415262869, -3.576823488572284], [-0.6255069238199109, -0.3760836791614907, -0.6835950223061232, 2.684963467620279], [0.5059897127391395, 0.4713918514870389, -0.7223324255173547, 0.35207133537335883]], [[0.6658412273375456, -0.7448369657836998, -0.04328226403232116, -3.776758112969068], [-0.5398931402552337, -0.4409697500734057, -0.7169805273684501, 2.237699431190185], [0.5149474313781693, 0.5007629917658952, -0.6957482080427485, 0.3520153882192686]], [[0.7001268208459392, -0.7134088026399776, -0.02950110248704957, -3.8808367503661234], [-0.5555615396904621, -0.5183335175679664, -0.6501397851096185, 2.087158440739198], [0.44852403541941993, 0.4715699787745306, -0.7592416906161481, 0.602199687147075]], [[0.642768163913787, -0.7657430774644545, 0.022059618631475153, -3.854536964908083], [-0.5403487966222849, -0.47360722598556654, -0.6954993698653547, 2.2262483365358703], [0.5430214226416379, 0.43512496459008543, -0.7181879974928073, 0.11291683861801592]], [[0.5282755704004233, -0.8437718874497533, 0.09473079577195648, -3.6788458708387006], [-0.5059404996841168, -0.40241948677591166, -0.7629434890228753, 2.359088994120113], [0.681871785966756, 0.3551162606985109, -0.639486754272529, -0.6439133610504348]], [[0.4851554291737916, -0.8585171705429804, 0.16604962338430407, -3.6543390789407892], [-0.49423882303378575, -0.4258799891772348, -0.7578616104702602, 2.2980223107612012], [0.7213544172938655, 0.2856125044553781, -0.6309305048492696, -0.9638063773150002]], [[0.7707280235560229, -0.6287222971682905, 0.10337594859953786, -4.1920231286232434], [-0.43145152355847494, -0.6343658870493963, -0.6414277076702435, 1.4349289013725937], [0.4688580771667448, 0.4497645988641841, -0.7601867593453877, 0.42838994178090234]], [[0.8203285411730873, -0.5435209898911877, 0.17789327723255274, -4.047589145124847], [-0.2007037974183875, -0.5648850933930044, -0.8003891659463012, 0.36302098485263723], [0.5355175722968138, 0.620878220595698, -0.5724780912412688, 0.21313058185696637]], [[0.8558652935837013, -0.516212983134803, 0.031917946079788345, -3.997370388368394], [-0.4108261190402719, -0.7160329331312904, -0.5643746438188995, 1.0428049139938917], [0.3141918190424332, 0.4699159443075631, -0.824901512989483, 0.9668563345881055]], [[0.8537120696362268, -0.5202587426997334, 0.02250650576884025, -3.923477574865838], [-0.43147360242375415, -0.7308968358007311, -0.5287914010533338, 1.048732091809754], [0.29155828331381406, 0.4417246382770292, -0.8484533642871186, 1.0045284036105315]], [[0.9066834393805077, -0.41206559831075873, -0.09015033800230374, -3.9793615500135218], [-0.40628032999257957, -0.795659573229423, -0.4492907043212601, 0.7438976957431253], [0.113408263430201, 0.4439907501482094, -0.8888255056919651, 1.6206859944167735]], [[0.9963261083796469, -0.04210698954223231, -0.07457403832942547, -3.4071909323736307], [-0.06763226608019496, -0.9210499226415128, -0.3835269437561345, -0.6736106205555924], [-0.05253724722447867, 0.3871615185342595, -0.9205138761693494, 2.0969155030565143]], [[0.9876094865878787, 0.15228011645923203, -0.037924505702635766, -3.050664528776201], [0.11886280084729785, -0.883650848585027, -0.45280549065762965, -1.1366399403131788], [-0.10246529449702536, 0.44268718518398953, -0.8908024020496988, 2.2556412200163245]], [[0.9474094681018362, 0.30085528493125374, -0.10909352538042708, -2.538890603386171], [0.2491869646148457, -0.9074099742911408, -0.33839768796933584, -1.2433804091007625], [-0.2008012858948752, 0.29341648911723833, -0.9346580163338242, 2.369143096229232]], [[0.8621952959912513, 0.4957520294600307, -0.10415947799801667, -2.0964785794900958], [0.396924863454192, -0.7888892801057729, -0.4691528072025854, -1.3516891243770337], [-0.3147537519116007, 0.36315785688933694, -0.8769529329656832, 2.6283521621571153]], [[0.7583803651503093, 0.6501176645351217, 0.04697067184832007, -1.8660646535421257], [0.47000694880599325, -0.4955008030708796, -0.7304604179763564, -1.253051224007974], [-0.45161121534851634, 0.5760433806715531, -0.6813378998381959, 2.474279418322704]], [[0.8393080968198853, 0.542285144195502, -0.03858420658048119, -1.8850885699230853], [0.4676649841369663, -0.7563606431640484, -0.45739265416558467, -0.9873547111513619], [-0.27722081672333476, 0.36584887570871477, -0.8884273852813839, 2.428269817653989]], [[0.866327721167327, 0.499135270018205, -0.018446185537396728, -2.006895646407141], [0.4417912569900291, -0.7829815006383639, -0.43790461850186724, -0.7622797916173837], [-0.23301666203127308, 0.37121954674013247, -0.898832177513608, 2.2511680589673952]], [[0.8809974905657529, 0.47221349815839353, -0.029288799460869278, -2.1487993786238877], [0.4109441472770492, -0.7944275872289458, -0.4472244587098687, -0.5029858100492242], [-0.23445325639791192, 0.38196756512380603, -0.8939420841183204, 2.1228144841645915]], [[0.8921621042021454, 0.45123846790454986, 0.02075150377094738, -2.163505408410719], [0.3798788581214478, -0.7246320353955874, -0.5749786660657883, 0.0449044302630699], [-0.24441528793826728, 0.5208572341454065, -0.8179051953988623, 1.9469409753278504]], [[0.9842965305809024, 0.17608479049804304, -0.012429257486197873, -2.3177174728946768], [0.13448047204990582, -0.79361657453547, -0.5933698132360807, 0.838038930214385], [-0.11434746400175393, 0.5823803561057388, -0.8048340066737492, 1.5138039923871172]], [[0.996771702608996, 0.06210656007820366, -0.050881706665709805, -2.2219649099988], [0.023824231815383245, -0.8339926849449314, -0.5512609250044403, 1.16866325003085], [-0.07667189091427014, 0.54826907322372, -0.8327799496205666, 1.3503352798875388]], [[0.963216135432315, -0.25478486345584744, -0.08543623234097733, -1.943316573147589], [-0.26806214204782725, -0.8886117715250452, -0.3721717446392894, 1.6810356272676725], [0.018904085367104674, 0.381384049038377, -0.924223372727355, 1.2715401301797555]], [[0.7419413912877942, -0.6699874050856391, -0.025295235135175398, -1.342137883313695], [-0.6435088369987985, -0.7010145193639511, -0.30736789088221667, 2.447093100090125], [0.18820028851833914, 0.24432666794179464, -0.9512545036603368, 0.9484408537965674]], [[-0.025240005938646393, -0.9952954358214151, 0.09354110077007052, 0.348438201603527], [-0.8565769468487429, -0.026709960355040696, -0.51532757751271, 2.9509826233649634], [0.5154016649444423, -0.09313202161926665, -0.8518729660704143, 0.2114498024904434]], [[-0.2940055733757365, -0.9543299729878091, 0.053056813710324696, 0.9265228259177987], [-0.8171718055624803, 0.2221817941351446, -0.5318510040872766, 2.8552965003087696], [0.4957730963028958, -0.19972369166419918, -0.8451742329071938, 0.25284177810274494]], [[-0.4224020351434513, -0.905047441319612, 0.04965530855300393, 1.1207278410550183], [-0.7850422023007583, 0.3379098468680305, -0.5191586231551961, 2.797603824212219], [0.45308416581629263, -0.2582751717654007, -0.8532342435322829, 0.3025101523540943]], [[-0.48547273403475566, -0.8720321060561894, 0.06225938094798211, 1.2267605988707095], [-0.7530823731385224, 0.38095397286777843, -0.536414960477713, 2.859559069941551], [0.4440531091850054, -0.30730127979470234, -0.841654774631302, 0.23016982777342584]], [[-0.5121610702722559, -0.8555493894439266, 0.07567218986987181, 1.2725234316855258], [-0.7517218044329956, 0.4038955922279821, -0.5213278040914454, 2.9877009625665036], [0.4154580205478988, -0.32388824122053583, -0.8499947296080663, 0.22142683686086106]], [[-0.5520376612104916, -0.8274478135553932, 0.10288117635238023, 1.4641724400119172], [-0.7366976916202511, 0.42621814441689176, -0.5249900994601842, 3.086995380325267], [0.39055208585621926, -0.3656066317946378, -0.8448673617918593, 0.20780060150539315]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.940935122424545, 0.3368284668045789, 0.034462723890948246, -2.567627606864553], [0.3191598056651419, -0.8483592337479923, -0.42240221230754493, 0.10679258303500605], [-0.11304031951341907, 0.40845219360972485, -0.9057531074744971, 1.660159129968787]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.971718251914619, 0.22758229786458437, -0.06300743285257937, -2.411379869627235], [0.17960679812645772, -0.8855088139442591, -0.4285038371984474, 0.7186533126854383], [-0.15331352504837453, 0.4050684363483623, -0.9013404045706229, 1.6115067164040213]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9479498659723812, -0.3167499745920483, -0.032565398798119025, -1.6419739787544851], [-0.2841663050417536, -0.795396041085547, -0.5353453547985224, 2.2392376766807436], [0.14366823825000719, 0.516734546378869, -0.8440052404438989, 0.6290281146902744]], [[0.9650518901538725, -0.26093381701674634, -0.024256802087428857, -1.7465845442227224], [-0.21753371797195478, -0.7460306061608996, -0.6293785952957875, 2.2209856552447635], [0.1461298424543584, 0.6126596753567775, -0.776720149948482, 0.42448424337698454]], [[0.9594760401675482, -0.28170660401136266, 0.006864226160761391, -1.7373141015246998], [-0.21675726413642, -0.7533897407490359, -0.6208221862805763, 2.274161972743151], [0.18006114735970957, 0.5941761420576273, -0.7839213579314057, 0.40410396729583337]], [[0.8900042940858158, -0.4553302001623463, -0.02380683366023384, -1.3959931077870948], [-0.33467323358016615, -0.6169203712049987, -0.7123223163128347, 2.456405676466029], [0.3096549422079421, 0.6419374302939533, -0.7014486099165012, -0.019313559798326024]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4538702233992314, -0.8735537502748595, -0.17580007307239776, 1.581182013522975], [-0.6925663983548102, 0.4699674481752478, -0.5472498346509501, 2.6418800965095337], [0.560672457127491, -0.12662718126995628, -0.8182982052908631, -0.06782729489443134]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5060887759936514, -0.8562307297495154, -0.10364886996904582, 1.3560310186527174], [-0.6983869116058009, 0.47734832180412434, -0.533286322127708, 3.0244615891799214], [0.5060927508974604, -0.19750320783065473, -0.839560962876218, -0.005979752291257041]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.4411533101833703, -0.6650593970980362, -0.6025609971163512, -4.381062084792938], [0.8944591477420628, 0.27123862883822547, 0.3554890142416527, -2.5703080356770216], [-0.0729834908372956, -0.6957913513098275, 0.7145262804877414, -3.142509298026541]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.7763346622493789, -0.6188602143012574, -0.11965169177719602, -3.0221189065881875], [-0.5880283678341758, -0.6427147499613466, -0.49106047367345623, 2.563543997705562], [0.2269958828093993, 0.45158585599764495, -0.8628691000670125, 0.8759582152250521]], [[0.985429407865713, -0.16569285317316498, 0.0384026108587098, -3.544408563279942], [-0.13644176024056434, -0.9049029194086402, -0.40315549420561847, 0.7627063824741899], [0.10155061878632676, 0.3920415601094559, -0.9143253725950397, 1.342517129729646]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.41940072631777614, 0.9017127097443923, -0.10496294512611322, 2.064731521553507], [0.8386011952990436, 0.3405549811795643, -0.42517095389596216, -1.8266108226395148], [-0.3476363991401609, -0.2663390581180548, -0.8990063626658324, 2.419380223894102]], [[-0.22805896601919995, 0.9634372557390495, -0.14063343227078967, 1.349363313016132], [0.9041389191559818, 0.15596178027429652, -0.3977546202888471, -1.9682565954838052], [-0.36127817936557743, -0.21786366688294168, -0.9066496014263792, 2.4657001600501123]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.347265656809433, -0.9375453444943935, 0.020378680467647958, -0.357932522530351], [-0.7922452557232447, -0.30493528773691925, -0.5285469941990146, 2.5143313292015517], [0.5017509525498922, 0.1674013061767783, -0.8486594041814326, 0.32444477993994975]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7622377541468693, -0.6289450602697356, -0.15304155421138163, 2.8318210364789747], [-0.4779852954143674, 0.7063353466468745, -0.5221306689372683, 2.489697503471119], [0.43649016428870036, -0.3248360959615447, -0.839021958735101, -0.14426160009405012]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.7109343210550461, 0.7031013547390854, -0.014861901293687377, 2.8316643809109885], [0.685698259643664, 0.6883346745111656, -0.23667123312151428, -1.311958178374625], [-0.1561739026458992, -0.17844848228458166, -0.9714761197799349, 1.99388375215292]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5893206193933238, -0.8072703504790179, -0.03187144168927916, 1.5332373421939864], [-0.7277594239896573, 0.5475795784111984, -0.41294409561253864, 3.32877691952693], [0.3508096753969475, -0.2201617281556875, -0.9101985415849607, 0.2321278810247089]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.6959336776130337, -0.698400058802061, -0.16707385860533697, -2.9076217749990763], [-0.6929381344359465, -0.5920590285767584, -0.4114642736923526, 2.7011571419299374], [0.1884490865152399, 0.40212369309209206, -0.8959818509576791, 1.0995129345234826]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.9557220019294255, -0.008977732697395893, -0.2941340771546631, -2.8470993235523645], [-0.07680765590850912, -0.9724971768556975, -0.21988593634322745, 0.062481925505312355], [-0.2840704824895597, 0.23274157626713782, -0.930126507339102, 2.5891198168968765]], [[0.8867054378523157, 0.3324724334135665, -0.32127176580458267, -2.2935925238113617], [0.25986101429365055, -0.9331356605223312, -0.24845541312643526, -0.8355461540205145], [-0.38239471718815393, 0.13682075895716278, -0.913813088210591, 2.7865242291722785]], [[0.7588141009392737, 0.6016913620005432, -0.24933644962109536, -1.711665709920258], [0.48294121922478744, -0.7766536896867928, -0.4044463191445392, -1.0857693872528045], [-0.436999930193813, 0.18648472106267056, -0.8799173312424187, 2.850317686053437]], [[0.6044242248290213, 0.7867916210866743, -0.12502120391213878, -1.255950771006648], [0.6609632287851317, -0.582864887112045, -0.4726480017579647, -1.270295730893411], [-0.444745957411387, 0.20304548347517187, -0.8723379878272884, 2.776267164792075]], [[0.49529697091861646, 0.8664049233416792, -0.06343042967016879, -0.9781719378648024], [0.7063883526386928, -0.44416830164797094, -0.5511170611290772, -1.068728885108535], [-0.5056643213192297, 0.22816009427692702, -0.832013560901688, 2.76225085925759]], [[0.40194821362135486, 0.9136835677289733, -0.06016620005165907, -0.7541638993793133], [0.7366278555396316, -0.3616881723549816, -0.5714552199618067, -0.9055259000144672], [-0.5438906471062775, 0.18537530590822457, -0.818424681904051, 2.6824747372260433]], [[0.3627450904881083, 0.927587500398324, -0.08942834243998699, -0.6064201716562072], [0.731370566953085, -0.34284877960575766, -0.5895352475616414, -0.6287556676104876], [-0.5775059247501254, 0.14844575921066896, -0.802776907646745, 2.632953845225699]], [[0.27953000995098554, 0.9600377864147662, -0.013799354790637375, -0.5094130725780598], [0.7880367879830859, -0.23761244340454035, -0.5679245966892306, -0.5909885168256732], [-0.5485079710652372, 0.14787756893849713, -0.8229649022180332, 2.4253973613563664]], [[0.26026064057857745, 0.9634914393407653, 0.06283824697338791, -0.5577455361557405], [0.773836155848394, -0.16922314174546113, -0.6103614766673723, -0.26502604549076975], [-0.5774443720977877, 0.20747957638007522, -0.7896266348836872, 2.2700095362715547]], [[0.31201578120111595, 0.9496858243021221, 0.02725779523468075, -0.5836678471007151], [0.7423910765515248, -0.22580563177582202, -0.630767236082368, 0.037447200277550836], [-0.5928757388678719, 0.21704527587100453, -0.7754932020875195, 2.1422228561084924]], [[0.38565212154164374, 0.9217575714744942, -0.04044033357765736, -0.5836571774210034], [0.6898506236206404, -0.31717648265278664, -0.65077276828569, 0.3343986938827755], [-0.612681449238218, 0.22307410939293118, -0.7581948189468901, 1.9441708796586077]], [[0.5130319366838794, 0.8529943277074348, -0.09591094223981805, -0.5852169501220846], [0.5713655780477898, -0.4227420453044065, -0.7034419232274703, 0.7580691383485845], [-0.6405775582741744, 0.30608796126406, -0.704251767342268, 1.7048234537318039]], [[0.5896343245674249, 0.8011251951300506, -0.10261474075275079, -0.5708023289359877], [0.5065928364215062, -0.4657890444612002, -0.7255372245076988, 1.0508244165701928], [-0.6290429726007034, 0.37581775874452766, -0.6804894935514513, 1.456127378665106]], [[0.7162758863570328, 0.6850796131353871, -0.13272067770214077, -0.45607615421955744], [0.3925433472586859, -0.5528200900285849, -0.7350507931998542, 1.2411297811051116], [-0.5769389700361676, 0.47440053934102605, -0.6648951444600498, 1.1859560025627915]], [[0.8972355477232635, 0.4330039548823742, -0.08646355855479387, -0.24418220122564854], [0.3045720841520091, -0.7486861656446827, -0.5888165002168022, 1.495847325712763], [-0.3196939434162569, 0.5019727088482848, -0.803628758889624, 1.1205845308161488]], [[0.9964917855492633, 0.07879539787281131, 0.028202953868457538, -0.16314938392423675], [0.08011971943533899, -0.8007866964230242, -0.5935667589997795, 1.5264390506437462], [-0.02418577868176966, 0.5937440122695681, -0.8042904301330409, 0.9653561228867802]], [[0.9200488127792777, -0.35792581521296774, 0.15937155614341603, -0.07167272656788302], [-0.22345421703853807, -0.8134772085743408, -0.5369572087399452, 1.462231190942762], [0.3218359752904194, 0.458414596118221, -0.8284187727681174, 1.027468182674765]], [[0.8300374100375622, -0.5169379667663068, 0.20931563833993044, -0.03397476122930429], [-0.3470115929323657, -0.7725184219319926, -0.5317877792374003, 1.4279257329296244], [0.4366014799662021, 0.36876879788184447, -0.8206026574415303, 1.095122741727449]], [[0.8118715751910115, -0.544754722585591, 0.21001627941081596, -0.04899230671629052], [-0.3984709440338293, -0.7799260274958661, -0.4826347463613725, 1.4174771661439496], [0.42671471987459614, 0.30815204665102136, -0.8502687010511041, 1.2040161785465553]], [[0.6582365301246823, -0.7441992197721156, 0.11354378758871936, 0.2231787104113361], [-0.5365824640131941, -0.5695941768040593, -0.6226088122283808, 1.522527314478941], [0.5280188725064163, 0.3488982588685137, -0.7742519455807474, 1.0064925875333912]], [[0.30028540283544947, -0.9523175351800106, -0.054036922864110715, 0.5506570864051232], [-0.658844750336198, -0.16611482838590463, -0.733709383028972, 1.5769405828910878], [0.6897479770165227, 0.25592416060034506, -0.6773112668652601, 0.8372351179593387]], [[-0.18021986435982573, -0.9625617896697884, -0.2024737058430558, 0.8369735240107111], [-0.6517707398805759, 0.2710280829603682, -0.7083351472871828, 1.4361897731070175], [0.7366924074032887, 0.00431037289829711, -0.6762142541826701, 0.8033262716107878]], [[-0.2000446711090368, -0.9613607346125632, -0.18912341871399643, 0.7027830149513817], [-0.8116778068565826, 0.27071894397162954, -0.5175812894911996, 1.3723262377228675], [0.5487816208815351, 0.04996790289853781, -0.8344710547781494, 1.0018967645587347]], [[-0.20929635518657677, -0.9692934713289998, -0.12909377267936678, 0.5971102331865423], [-0.939570265066052, 0.2359200038665846, -0.24809165398960867, 1.392571083738244], [0.2709294238530091, 0.0693679912824949, -0.9600965207082613, 1.3796229865742458]], [[-0.23602479871696183, -0.9611401347534307, -0.1431849704290747, 0.5496077459922957], [-0.9292793408510363, 0.2663300945473633, -0.25594567276251473, 1.469927401079932], [0.2841341251206578, 0.07264930904385576, -0.9560281778469553, 1.271232662559982]], [[-0.2715123632572314, -0.9622675936128914, 0.017947559191397844, 0.43888673381054477], [-0.8065901636950069, 0.21733382201719043, -0.5497074837018886, 1.8849826473434557], [0.5250650858978678, -0.16372870270620118, -0.8351643954822364, 0.8266747987064377]], [[0.0365932551098932, -0.9930125033951955, 0.11219225365981816, 0.13410538821149814], [-0.8122270256637647, -0.09495900143676983, -0.5755606369684482, 2.001171210405056], [0.5821925733482491, -0.07006394327282961, -0.8100264510441652, 0.5149224480688204]], [[0.7505247455524912, -0.644959167400671, -0.14401485582814516, -0.7344973068960138], [-0.654507071451848, -0.6953606222091734, -0.2968065000979527, 1.5421373573747812], [0.09128581342625929, 0.3170193644979808, -0.9440156899121972, 1.382080268842173]], [[0.8063331770699799, -0.568308613490157, -0.16386618744917414, -0.7672876235964192], [-0.5888242865751302, -0.7451801001530283, -0.3130376620715331, 1.5434045077843157], [0.055792177727002776, 0.3489010435192445, -0.9354973515385602, 1.334746927771473]], [[0.2521528428888509, -0.9671936782645216, -0.030908454316190714, -0.11424414202914754], [-0.8829910057066055, -0.21689800272609047, -0.4162717144542385, 2.18381806319944], [0.39591138865194103, 0.13225598337534225, -0.9087147666881585, 0.9659331707057138]], [[-0.36751977851101825, -0.9276889846655452, -0.06574465859233247, 0.9448361150980744], [-0.7774080214323658, 0.34524494335301625, -0.5257781826034509, 2.104862711122898], [0.5104566393101639, -0.14212345626033446, -0.8480772031865909, 0.6407849310414772]], [[-0.5587277914891751, -0.812679331247594, -0.16545561211573354, 1.4593896791497376], [-0.6233589373412902, 0.5430993729087277, -0.5625537364402481, 1.9053402949167673], [0.5470346335053806, -0.211176172209627, -0.8100356375101799, 0.3969485590816619]], [[-0.6081893037618502, -0.7563091405355552, -0.2410440929208714, 1.5276014657795811], [-0.5089431782287178, 0.6045635579346273, -0.6127640212609381, 2.0178934048489086], [0.6091655047063379, -0.24999877671659473, -0.7526074670876437, 0.1044903266722297]], [[-0.6245539349975535, -0.7448325537680992, -0.23485495337838463, 1.5363572710805133], [-0.5035798871978726, 0.6139273047921147, -0.6078655785948635, 2.1699047363323434], [0.5969419397972047, -0.261376608130838, -0.7585134074182003, 0.02933685371358021]], [[-0.6414866947484158, -0.7518901566244368, -0.15217099865622402, 1.473341394203842], [-0.5181590924977352, 0.5709550942394455, -0.6368056494912315, 2.3641945878318786], [0.5656907064135632, -0.3296535647210651, -0.7558588174679304, -0.05822982416961812]], [[-0.6683302915165656, -0.7388161755199703, -0.08651751401552743, 1.4937682193441073], [-0.5025127724602516, 0.5341782422993723, -0.6798047653321244, 2.5389126772483817], [0.5484665303878568, -0.41085796115445783, -0.728272065096766, -0.21707109502545904]], [[-0.6933782405813501, -0.7205214237214269, 0.008688696493680481, 1.4528987189448892], [-0.5006191492139819, 0.4730172453810927, -0.7250070020436711, 2.7531858622131704], [0.5182731740391164, -0.5070538073326448, -0.6886866875008467, -0.36010892504677516]], [[-0.732061724528211, -0.6809035272895769, 0.021354578089810783, 1.5674904163556527], [-0.4464732564306806, 0.4558703592520239, -0.7699635360506456, 2.7973566443635], [0.5145359683957627, -0.573195082044536, -0.6377304564994464, -0.6164335253167554]], [[-0.7682610304349036, -0.6301697935177085, -0.11252120001559099, 1.8809014193056213], [-0.3133514126860263, 0.5234910764573556, -0.7923181084874881, 2.636869180354794], [0.5581987829463368, -0.5734484494768189, -0.5996423888534402, -0.9683042110408021]], [[-0.7637592383223818, -0.6097082330921658, -0.21196154457081254, 2.0811683585568432], [-0.2017272337117889, 0.5373699717633686, -0.8188648463733356, 2.4005691745449584], [0.6131704078445116, -0.5826571753155249, -0.533416035564295, -1.4374496624101996]], [[-0.7475892100506051, -0.620599434828233, -0.23657285242983875, 2.0382277316861304], [-0.20361029854720036, 0.5532008571071135, -0.8077819371720781, 2.5389705630008765], [0.6321813184059083, -0.5557203911922192, -0.5399274279676249, -1.5943495920778064]], [[-0.7289802212750809, -0.6423693489031416, -0.2365363747491875, 1.968854254496018], [-0.23253634300798584, 0.5573760290960255, -0.7970312486782554, 2.6798301661121338], [0.6438281495633803, -0.526016712452086, -0.555690320278204, -1.7247931363006301]], [[-0.7212479781032328, -0.6405454809650651, -0.26363391454293617, 2.032154009810645], [-0.24053633551986775, 0.5885249581505015, -0.7718682821107653, 2.7817212973816976], [0.6495718785297532, -0.4932949021114893, -0.578546898854487, -1.790568888963476]], [[-0.6855497516903264, -0.6662372741373591, -0.2935122357029658, 1.8883566115259984], [-0.25192851836812513, 0.5953498762630679, -0.7629485870400383, 2.863595631531121], [0.683047260143962, -0.44909511173421945, -0.5759861291960561, -1.9251898384698283]], [[-0.5897730999768942, -0.7378835833254205, -0.328169937688511, 1.473131732980646], [-0.2512555721682177, 0.5538590422080503, -0.7937951869461055, 2.897781744695679], [0.7674883243398987, -0.38570452268960786, -0.5120485261952386, -2.276502651823176]], [[-0.42899801405979554, -0.8484368345360332, -0.3100252275787038, 0.6129062334357229], [-0.33303219857173383, 0.467591172323671, -0.818808921714616, 3.192157230240894], [0.8396727092428504, -0.24801901815677496, -0.483152468673524, -2.4293530998486825]], [[-0.2519650930009588, -0.9152640957286922, -0.31433298741773485, -0.16945279380564365], [-0.36926303881676636, 0.3911670428741685, -0.8429906006195358, 3.3107682599936625], [0.8945157349498251, -0.0963326509498102, -0.4365336416453566, -2.439526406979496]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.2342394850562739, -0.964318128996677, -0.1233791300379442, -2.4448718186684224], [-0.3204622589245697, 0.04322805804437413, -0.9462744187616372, 2.845129363200143], [0.9178430172123847, 0.2611931872887587, -0.29890184788389274, -2.0186905927037726]], [[0.19794033732240712, -0.9782871315702489, -0.06143216636866039, -2.3842179336582716], [-0.3184290847743244, -0.004902774146539723, -0.9479340065508013, 2.7345017022623517], [0.9270504521494385, 0.20719616552852277, -0.3124855327207948, -2.167844787476754]], [[0.08354353504990086, -0.9963700050856217, -0.01634902801528343, -1.994793861478325], [-0.3486248322174566, -0.013853986324285916, -0.9371599614923147, 2.8019986004734863], [0.9335315763875995, 0.08399333323904346, -0.3485167368415448, -2.390005978055297]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.4147791620768131, -0.8811163197557903, 0.22713933557811855, -0.10910249860754848], [-0.3869578846353388, -0.05512095518723148, -0.9204484101880949, 2.9214339241355374], [0.823542252847661, -0.4696761771255379, -0.31809188360494156, -3.1064721228631873]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.5646045827726306, 0.7485565867390709, -0.34768477326695724, 4.76873276854444], [-0.5474802928775744, -0.02442672285942804, 0.83646199203612, 1.2521031378727765], [0.6176463340964868, 0.6626208355159839, 0.42361141901189414, -3.0424044013363383]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.17243912597808664, -0.981539369031811, -0.08273581372385072, -1.6549795367506785], [-0.8533059255565194, -0.10689359307533551, -0.5103359258072824, 3.7213918892481557], [0.492070874206191, 0.15860084110772765, -0.8559859975244196, -0.22953586947713683]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.21173198277879754, -0.9602797968627632, -0.18174784512001568, -0.07301361769130313], [-0.8120267345858465, 0.27633625324714345, -0.5140533605173474, 4.0460229464298925], [0.5438585751704264, 0.03874257191437849, -0.8382820905489112, -0.5176613460161472]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.46234784168274096, -0.8633889650123722, -0.20197516774637447, 0.9206536929107683], [-0.5682606359867856, 0.46337390523211025, -0.679973877099582, 3.779027367193154], [0.680671964223006, -0.1996099172005446, -0.7048698873380722, -1.5101685306213117]], [[-0.5840895650039468, -0.8058822470526975, -0.09691843962216456, 1.385511488112005], [-0.45810618418412286, 0.4258624906485034, -0.7802434639719297, 3.3903288061522043], [0.6700582840811407, -0.41133312891614804, -0.6179214780134196, -1.892201162311052]], [[-0.5373671168084433, -0.8411902125146282, -0.060296004366580336, 1.066723643834791], [-0.4650212842601602, 0.3551902081702579, -0.8109223891378261, 3.382462757306181], [0.7035565271945186, -0.40772410082010496, -0.5820388910136717, -2.005789442573289]], [[-0.6741530554537355, -0.7091941897971847, -0.20630380263171613, 1.8451274934273267], [-0.2619367262254205, 0.4907330760057168, -0.8310055352212018, 3.0024365835776567], [0.6905843969253147, -0.5061863779991336, -0.5165932069350281, -2.007540130138973]], [[-0.6971141065688624, -0.7093537042530993, -0.10415970758937626, 1.8335029962784943], [-0.32048026792801804, 0.43826076973737, -0.8397737168892547, 3.1051304771796926], [0.6413457104335256, -0.5520369733737178, -0.5328516301344142, -2.0456741101145846]], [[-0.5876107126914165, -0.8014170800618458, -0.11155408605439521, 1.2337267246090131], [-0.3409570436247883, 0.3702722124493871, -0.8640872543270619, 3.0819574744413973], [0.7337996625325814, -0.469711775957322, -0.4908247169755092, -2.2464471885600803]], [[-0.34024664863317544, -0.9364345273186943, 0.08557215750059216, 0.01695362533134553], [-0.7017630623097466, 0.19229625436303485, -0.6859670217551233, 3.9020429134925956], [0.6259079984083438, -0.2934493595211287, -0.7225833176354823, -1.3736139487085242]], [[0.1987252973075042, -0.97866238500466, -0.052232101116411356, -1.8349900613253798], [-0.9345842611680074, -0.17319057957657502, -0.31073667617933365, 3.502858486662584], [0.2950601887532338, 0.11056653798921776, -0.9490598114397141, 0.5858022564510734]], [[0.20219659389503655, -0.958246823514905, -0.20218694972930404, -1.661910603956715], [-0.9738274872516212, -0.17484229438126372, -0.14522464380637645, 3.5256025193956684], [0.10381022343892296, 0.22625913753722726, -0.9685196127030524, 1.5396224076002798]], [[0.2816900397581983, -0.9534212265685535, -0.10788274296447828, -2.0704613423335547], [-0.9438548318847246, -0.2551135293187541, -0.20989317160495594, 3.3506953151502343], [0.17259425780970492, 0.16095046407837502, -0.9717541717348441, 1.0818959576786962]], [[0.26360328286364015, -0.9612307025646282, -0.08092493874340274, -2.0337643779324543], [-0.9300851890343197, -0.23101695398615169, -0.28560936278412674, 3.4372178172987136], [0.25584145559800503, 0.1505546525952367, -0.9549232671683223, 0.8468160545281207]], [[0.23237228148335495, -0.9696532278072258, -0.07599829341010775, -1.9457597530264032], [-0.9184398582957911, -0.19303893278050524, -0.3452596083015951, 3.5638439593564057], [0.32011146416807323, 0.15002862471539247, -0.9354250703686431, 0.6690563029527666]], [[0.19609797769637027, -0.9758683130763648, -0.09605528968715901, -1.8567052837959062], [-0.9344709489679512, -0.15629118046017865, -0.31990172310461285, 3.7307622423870708], [0.2971693602616704, 0.1524929586697497, -0.9425689730082437, 0.7616382359224152]], [[0.27945365608836553, -0.9593059272319399, -0.040469643889139414, -2.2451243071496343], [-0.916843246556298, -0.2540924790989168, -0.3079536869554803, 3.5085620401149193], [0.28513876506527974, 0.12316310341589683, -0.9505402330327806, 0.5389391959179592]], [[0.32063389149788163, -0.9465009169869573, 0.03646809243398325, -2.3153936467121277], [-0.9388285025405817, -0.32267179116213135, -0.12034931659810168, 3.466653254781861], [0.12567796322479646, 0.004350785109651881, -0.9920615506250583, 1.2446967180081707]], [[-0.03346676366737511, -0.9806438145556642, 0.1929188552302449, -1.2515284799661424], [-0.7840172247549211, -0.09395268601507312, -0.6135877150645574, 3.5922880142273157], [0.6198362420972362, -0.17178650052978325, -0.7656973496222298, -1.0757582293875516]], [[-0.44980363112845695, -0.8928012163197768, 0.02413879784872819, 0.5417346672877892], [-0.6199269095947885, 0.2926420918258033, -0.7280461749450188, 3.852749800697292], [0.6429364822312619, -0.3424421034711488, -0.6851029744398611, -1.5597764503851934]], [[-0.48999778962101614, -0.869257616976962, 0.06552374755805429, 0.803661002361058], [-0.6245414087864761, 0.29762402894514883, -0.7220581459311022, 3.9673079827235274], [0.6081531015110604, -0.39472918909296584, -0.6887224930263913, -1.50998966835835]], [[-0.5077381548861265, -0.8608737437790118, -0.033141565212588264, 0.9361145874969832], [-0.5707904296022827, 0.3649647539712201, -0.7355263515559238, 3.8672008316841797], [0.6452908271060991, -0.35453790436374377, -0.676685024824764, -1.5466504879643637]], [[-0.37438578394165073, -0.9261221507982471, -0.04618491726986362, 0.2079778369124184], [-0.471863672773043, 0.2331543095628314, -0.8502845066502234, 3.2625413325667956], [0.7982355285876029, -0.29654144690600676, -0.5242930584771859, -2.2187456099173892]], [[-0.46087042216107127, -0.884644497045983, -0.07072883304095767, 0.6381139742642601], [-0.5122192277281685, 0.33023709888532676, -0.792827169858199, 3.5319421618748144], [0.7247274775545871, -0.32916192423496154, -0.6053284322673955, -1.916552483827743]], [[-0.4523308409965578, -0.8916806512000606, 0.017390415716212693, 0.611988491804701], [-0.5970253950042399, 0.2882576447077581, -0.7486442466135483, 3.7692027339156473], [0.6625386690627032, -0.34901740149020055, -0.6627438158547012, -1.6259820009463095]], [[-0.41893368974371714, -0.9056632789155883, 0.06533443825104779, 0.3774684788707092], [-0.6675403596159764, 0.25841007838931895, -0.698293705879266, 3.9358149874831465], [0.6155358900027582, -0.3361521331342272, -0.7128234785048966, -1.3713482098757381]], [[-0.3389086664827986, -0.9401625064779886, 0.03514793302424446, -0.043054033938305564], [-0.6602472719210815, 0.21105872412541526, -0.7207827376479831, 3.711125342696433], [0.6702346273534517, -0.26748584333302117, -0.6922693608074835, -1.5244525623005827]], [[-0.5751618193229804, -0.8165019417767583, -0.050134425975199126, 1.0994952707047827], [-0.5743197727885714, 0.44668625877900037, -0.6860234579094975, 3.8539501904446642], [0.5825338446624052, -0.36578130801450687, -0.7258500909485603, -1.3440007087419785]], [[-0.5172578721102885, -0.853526273167706, 0.06274706967168153, 0.770784273030187], [-0.5803655454727272, 0.2959413686529238, -0.7586794711523291, 3.6797008963401123], [0.6289834078638958, -0.4288491661788335, -0.6484352437210974, -1.6944962996522497]], [[-0.4457065181217279, -0.8947168835193761, 0.028764527619639935, 0.40766523090855855], [-0.5296112616207237, 0.23764960970313798, -0.8142693501369503, 3.538429988148557], [0.7217046565377774, -0.378159174625344, -0.5797741175478321, -2.045089725744191]], [[-0.48766781572412005, -0.8719005637036883, 0.044379145102816875, 0.6356234410305249], [-0.47403186809132536, 0.22176099558446744, -0.852124315385516, 3.3098247987103906], [0.7331261075290625, -0.4365907326668497, -0.5214543533318227, -2.274774927579635]], [[-0.5272532033356495, -0.8495743652166067, 0.01508169549805527, 0.8763946889786824], [-0.4438632447390093, 0.26024347068758646, -0.8574723062199955, 3.27488161230667], [0.7245615774674051, -0.4587992305260321, -0.5143090379593444, -2.3392113687077676]], [[-0.4638070433705586, -0.8833556501074984, -0.06757086608161295, 0.5395517173509505], [-0.41841749564970443, 0.2856409129754733, -0.8621693964464103, 3.257596160058086], [0.7809032115788037, -0.3716074060856387, -0.5020937261988172, -2.3547702416605754]], [[-0.5361183349501788, -0.8441285196953107, 0.004916621528147647, 0.9003496026085146], [-0.35772733175125004, 0.22191459307881972, -0.907075007646442, 2.898689685961346], [0.7645968133914623, -0.48805835267482633, -0.42094032514829927, -2.5436102349447416]], [[-0.5211777093972851, -0.8533226600307673, 0.01463670404889239, 0.8040716567706949], [-0.41197440297493304, 0.2365249894282071, -0.8799619427392494, 3.1000405402800997], [0.7474295194336699, -0.46464649708569017, -0.4748186456165673, -2.433655189231236]], [[-0.5237206560688406, -0.8509606114627852, 0.039783314915998846, 0.817654719087326], [-0.46794831715976765, 0.24834545981300765, -0.8481443892743777, 3.3329324039372015], [0.7118574624699556, -0.46280727125786225, -0.5282692332482433, -2.292141311836327]], [[-0.3970138370493024, -0.9111126057771531, -0.11069703151103988, 0.176746313705666], [-0.47913366764816645, 0.3086141766804602, -0.8216983743916366, 3.491041929845535], [0.7828224202955654, -0.2731869498087485, -0.5590688228982064, -2.2278201997568634]], [[-0.4574970763531201, -0.8885844236976636, 0.03337884195472751, 0.44792393893333343], [-0.37938938243368747, 0.16110791497761467, -0.9111025936897288, 2.8444886761105983], [0.8042139775115407, -0.42949035110635125, -0.41082589582645657, -2.610431881538152]], [[-0.48017833482530026, -0.8763766175248181, 0.03732011548964803, 0.5850874126259901], [-0.49322258789057305, 0.2345709351996511, -0.8376801031146002, 3.4187318111481284], [0.7253690409432483, -0.42064296097203374, -0.5448846243249597, -2.2226559531561496]], [[-0.493825428859135, -0.866423079299727, 0.07380713697787544, 0.6429599073360737], [-0.5132667188255942, 0.2219181263313908, -0.8290413865131061, 3.414043154792391], [0.701921449421586, -0.4472844652593517, -0.5542949449341532, -2.2171130490755706]], [[-0.3688161670564264, -0.9278347452327212, -0.055653575417372425, 0.058207928045257554], [-0.5327370862194986, 0.260069477715542, -0.8053291648308308, 3.5056617044453966], [0.7616861767710927, -0.26736969218611206, -0.5902098066079036, -2.0537758267964983]], [[-0.3960641155890402, -0.9159319403471238, -0.06482204096312455, 0.30205721883309544], [-0.6536804610232352, 0.3308313226834675, -0.6806265428323806, 3.8936708242265694], [0.6448527515790894, -0.22719884811209032, -0.7297572282597942, -1.4562811304520207]], [[-0.35982985933355516, -0.9329391223719046, 0.012127088683370257, 0.18227844655183875], [-0.674531865125376, 0.2511395254677885, -0.6942158898197992, 3.7587660480985474], [0.644615571687867, -0.25797971372911177, -0.7196646663841223, -1.5416362696822914]], [[-0.31844296657095916, -0.939510382922107, -0.12615196162978387, 0.09887315724095733], [-0.6524161618528785, 0.313763855461342, -0.6898589672963542, 3.8518243151516462], [0.6877115883818194, -0.1373771574447144, -0.7128676509828205, -1.5053093076578035]], [[-0.3019361820157578, -0.9508506145779304, -0.06868515666808891, 0.0769233644680164], [-0.8035848890480503, 0.2926122179962036, -0.5182947192215789, 3.9502356852982268], [0.5129189683404002, -0.10129757468031841, -0.8524394015298129, -0.646993422047366]], [[-0.15800691960215932, -0.9701233215958329, -0.18410473718431244, -0.5299206576988361], [-0.9055117999889652, 0.21671431365664337, -0.3648058200427647, 4.260932071557858], [0.39380476563721356, 0.10906716807636518, -0.9127004762840988, 0.12248778539426439]], [[-0.08584251423818966, -0.9841445341280226, -0.15521146444513578, -0.6876157788867747], [-0.8424137586224485, 0.15487422609368295, -0.5160940160237104, 4.055657736219673], [0.5319493604027223, 0.08644946522576158, -0.8423516889811018, -0.551309958352881]], [[-0.08293082175491016, -0.962966051792815, -0.2565518697994871, -0.5927589234057535], [-0.7023616981959201, 0.23910997510586063, -0.6704583989422597, 3.9281899908101803], [0.7069727885218771, 0.12459054097094341, -0.696180058167547, -1.2541998206417806]], [[-0.26697226982710787, -0.9509703797240804, -0.15614462536635781, 0.05935326733345926], [-0.606867261639667, 0.2917618178790248, -0.7393153375778827, 3.65539588751997], [0.7486240270612037, -0.10261763257532863, -0.6550051050116334, -1.7659656676617672]], [[-0.4058859814243759, -0.9069520999957684, -0.11266968712318703, 0.5104507531711496], [-0.5781251916993929, 0.350275957593463, -0.7369382716717343, 3.592889622563603], [0.7078331956087617, -0.23397572917986215, -0.6665039574894063, -1.779586462593566]], [[-0.4559664551990012, -0.8820217615363813, -0.11887894645190863, 0.6031748085470051], [-0.7337162064417774, 0.4481340720452422, -0.5107214327564848, 3.996614970784018], [0.5037411241282015, -0.14564843167163993, -0.8514877651579306, -0.6323233227482317]], [[-0.374645227856307, -0.9254934650614567, -0.05570277706752233, 0.1169963763070353], [-0.9067868461494507, 0.37827545344974683, -0.18613247155647197, 4.06070299988493], [0.19333537931487946, -0.01922309667890748, -0.9809443937651334, 0.8109242005294358]], [[-0.3592276175088294, -0.9327372929550891, 0.030929939375027485, -0.020988852709242202], [-0.9224127819187465, 0.3498250394776758, -0.16363710308900553, 4.174140357599953], [0.14181036129934071, -0.08731313810220742, -0.9860356166705622, 0.9051321411566636]], [[-0.29184946245734084, -0.9499799733107052, 0.11118426854529863, -0.3990082027162566], [-0.9348403452329125, 0.2587390211037423, -0.24316177307111064, 4.128674724067572], [0.20223110588673127, -0.17490617275233333, -0.9635924504399983, 0.47744665242216455]], [[-0.21567224912397018, -0.9574983985161857, 0.19152623265951793, -0.8295190568087403], [-0.9586975210053, 0.17038726894924186, -0.22774380737642663, 4.055150804739733], [0.18543069911991486, -0.23273374361909432, -0.954699146540386, 0.39379131120819305]], [[-0.10310153204380859, -0.9621509225142306, 0.2522611273962653, -1.409540856096389], [-0.9794497199706909, 0.05400666675126006, -0.19432325129987352, 3.8195653319944007], [0.17334451286255065, -0.2671121155085137, -0.9479466217087393, 0.3513076766308084]], [[-0.10654137043440216, -0.9829144136962095, 0.1500939430296797, -1.2808328930815662], [-0.9863116218451741, 0.08536721455588302, -0.14107382213618733, 3.9334470315561014], [0.1258503913347207, -0.163069598721549, -0.9785550495366581, 0.8119256723089294]], [[-0.03782859933218165, -0.9863306107043338, 0.16037744062112122, -1.4790614253663046], [-0.9441556326263022, -0.017291805648326566, -0.3290457944381716, 3.8006409166243045], [0.32732115491149094, -0.16386860542836293, -0.9305954769406367, 0.05547732565346101]], [[-0.28774029154606384, -0.9532391953136036, 0.09241515643475345, -0.4126435655106914], [-0.715577707927065, 0.149855870643025, -0.6822695669247376, 3.7833299907397824], [0.6365171392341564, -0.26244666991923266, -0.7252362903974615, -1.3608061585766495]], [[-0.4011472929858598, -0.9157691886955773, -0.021157560491722016, 0.25880908591675406], [-0.6353586781341635, 0.29480483421231074, -0.7137292622869407, 3.824811000743402], [0.6598486185859036, -0.2728679218246369, -0.7001020624090308, -1.4866363828582825]], [[-0.45133471777057776, -0.8896804999499961, -0.06903318436576866, 0.5713998043869003], [-0.6154576133401084, 0.3663694305217511, -0.6978433682144336, 3.79931594459977], [0.6461492851629962, -0.272473940750107, -0.712915880658761, -1.3710259862309973]], [[-0.47367709851660184, -0.8760042087916438, -0.09081097136480809, 0.6957376464451994], [-0.5951293833270015, 0.3943873467058932, -0.7001997128384935, 3.7373558835618317], [0.6491925934895721, -0.27762429097183106, -0.7081480986493374, -1.3321369050433]], [[-0.45817758937924374, -0.8851126336499904, -0.08154092434969884, 0.595754885262994], [-0.5751510867337359, 0.36516382109375706, -0.7320222750662777, 3.6199439113620304], [0.6776979592854238, -0.28849785010877405, -0.6763833724028021, -1.4400703649603142]], [[-0.40965917420041226, -0.9096314497117608, -0.06892014719018424, 0.3306848587508871], [-0.5471984200596709, 0.305477630877222, -0.7792671596556855, 3.4954291264502277], [0.7298994794337343, -0.2815209454533001, -0.6228906061207247, -1.6480529335517506]], [[-0.4400246872907046, -0.8917199171723837, -0.10589553292181325, 0.4590869840298615], [-0.39269618699175757, 0.29713550826608237, -0.870344870984825, 3.143278239696293], [0.8075691792638278, -0.3413884576923102, -0.48092197044594825, -2.1679249149564517]], [[-0.42948122763969265, -0.893515725006182, -0.1310554244271453, 0.44935431330519643], [-0.34106265977764066, 0.2948578305446278, -0.8926002027066298, 3.0151887730878757], [0.8361950353897729, -0.33865691921647195, -0.4313807527652388, -2.3040217431454333]], [[-0.4100667895965739, -0.9033537025370979, -0.12568737479347725, 0.38478309001995936], [-0.38449981562248725, 0.29618679007196314, -0.8743187503268706, 3.097346873252584], [0.8270460203980385, -0.3102023105964618, -0.4687956981931294, -2.165389877165486]], [[-0.37483400361777286, -0.918979183478343, -0.12237945115643123, 0.27331571507857955], [-0.46572670481402434, 0.30078955867933443, -0.8322405168054254, 3.3007447743410716], [0.8016221716962062, -0.2549566663630683, -0.5407393014402495, -1.8780534540398934]], [[-0.37378582226752455, -0.9215986552990403, -0.10459482598480235, 0.28892279669220744], [-0.5229702430113399, 0.3025451046193143, -0.7968491605037608, 3.4041176505459623], [0.7660197673666462, -0.24315093711908398, -0.5950557434238078, -1.6578157008820493]], [[-0.3773379356054398, -0.9179890877915139, -0.122115179436176, 0.34605192963394876], [-0.559055506035124, 0.3309276853362888, -0.7602261559889782, 3.4863892041185838], [0.7382906091268103, -0.21859300485987893, -0.6380784236294881, -1.4762739374447018]], [[-0.3921454938976103, -0.9095710354471513, -0.13748615599905423, 0.44141993433167037], [-0.5604058285600302, 0.3547340905767782, -0.7484043240779759, 3.494496526676314], [0.7294979224999515, -0.2164353401324815, -0.6488362849055158, -1.4306446136310442]], [[-0.3958302377133295, -0.9123477424090058, -0.10459454972893834, 0.4205168110048327], [-0.5802447541639284, 0.3367591152846168, -0.7415587121313892, 3.504062297046714], [0.711782584907113, -0.2328409225070036, -0.662684432161369, -1.343604208419638]], [[-0.3928133011723567, -0.9154407698343552, -0.08755516744977826, 0.3679552541050141], [-0.5898659844270095, 0.3238580125339372, -0.7397121792518514, 3.5271902450877954], [0.7055181293475246, -0.23892296800988266, -0.6672031058975357, -1.346399482680557]], [[-0.3937439017157632, -0.9146914772440476, -0.09113309672533565, 0.3697155133158422], [-0.5803513217226869, 0.324250280418071, -0.7470301861528306, 3.493836898406613], [0.7128520766865857, -0.2412493670580384, -0.6585139783313017, -1.3804044215461748]], [[-0.4028433664786295, -0.9114664916936334, -0.08334300572852116, 0.41275700124799614], [-0.5779850898074511, 0.3239406790346834, -0.7489964435341604, 3.483745038189512], [0.7096833505475785, -0.2535572341429996, -0.6573113957397322, -1.409981366620474]], [[-0.42041781856433097, -0.899370853632301, -0.11992049645625874, 0.5261058482315224], [-0.5753168743879459, 0.3664403508987095, -0.731253692830139, 3.5395818525362186], [0.7016119667437932, -0.23843979716049293, -0.6714812813861375, -1.333184794588599]], [[-0.42887855518325335, -0.8899842036750005, -0.15489125899449757, 0.6041320741637328], [-0.5487670833116454, 0.39287185155988624, -0.7379067668246017, 3.476774218296541], [0.7175777819703972, -0.23147316358680203, -0.6568883477133406, -1.4061768707514641]], [[-0.3403270786971479, -0.9193758459715642, -0.19729554822533724, 0.2639112706088349], [-0.540446951179965, 0.36295199960145885, -0.7590671504851094, 3.272734781301208], [0.7694768173673241, -0.1517033283398025, -0.6203962666754854, -1.4466785889348648]], [[-0.4569300685049195, -0.858766616005734, -0.2318077042079264, 0.8247989164738387], [-0.5033560806729961, 0.464498834233684, -0.7286106566919457, 3.4001162777713185], [0.7333809164040265, -0.21624229981575804, -0.6445088821923108, -1.459892335920464]], [[-0.5048833574203746, -0.8305702575700795, -0.23504434185893971, 1.0461992273922112], [-0.4851197534129259, 0.49825338344995085, -0.7186114323674917, 3.3683035962376033], [0.713968921066255, -0.24879029949065132, -0.6544858796267798, -1.4517585739195085]], [[-0.4929158747324145, -0.8331228017574654, -0.2508791295197157, 0.6198438688879274], [-0.4912759403042313, 0.5044765984931785, -0.7100361343276452, 4.664935865583036], [0.7181099434731235, -0.22673720198622782, -0.6579577116505928, -1.68835482625947]], [[-0.4455873670654951, -0.864136673567566, -0.23392243951194894, 0.7881901952981845], [-0.524686564593996, 0.4637946597564037, -0.7138616970506206, 3.4700766263199623], [0.7253660505194531, -0.195351792868721, -0.6600619438937425, -1.4088667820280392]], [[-0.4497088899919244, -0.8622141158079502, -0.23312814665703802, 0.7976820916475631], [-0.5336004265839884, 0.46866378862245905, -0.7040062769488837, 3.4682355543705516], [0.7162628700495486, -0.1922006028490998, -0.6708400921626746, -1.3345176221740955]], [[-0.4594940508398343, -0.859141953556074, -0.22525612285274857, 0.8023264038713152], [-0.5628309590486353, 0.47785013146641353, -0.674448340048313, 3.5535719441223543], [0.6870855323605595, -0.18312388019421166, -0.7031209822807329, -1.1757308087398044]], [[-0.4063139210594897, -0.8790116598324873, -0.249494487778384, 0.88653894744007], [-0.5859936265743044, 0.4601786044250298, -0.6669686061905212, 3.2437832091390586], [0.701085206781285, -0.12479644990129968, -0.7020722034979556, -0.8049868037803041]], [[-0.32010364393057045, -0.9326209056468738, -0.16658902572731388, 0.27590874779170144], [-0.8721796494628525, 0.35876098456432237, -0.33255558184654455, 3.744436960275274], [0.36991393080718976, 0.03884330450467685, -0.9282536730279772, 0.3698166518828988]], [[-0.19328550926463256, -0.9685535907810493, -0.15666733448120987, -0.24991466965750384], [-0.9271407023786954, 0.2325480177554458, -0.29382228885969885, 3.7805458269318084], [0.3210153110072028, 0.08846107179516002, -0.9429336184884918, 0.6246817604035693]], [[-0.23424240117339956, -0.9696860065115647, -0.06956684747905356, -0.19608108180139433], [-0.7346052105529581, 0.22341676228692497, -0.6406560192159843, 3.6239641970245042], [0.6367775766474224, -0.09896463562748814, -0.7646700718441609, -0.8105994134694124]], [[-0.3810768254220469, -0.9206760333854231, -0.08447540870536108, 0.3233414151779686], [-0.5182089231066995, 0.2883692779505198, -0.8051724483282388, 3.0922416201337906], [0.7656630885310126, -0.263056649952019, -0.5869933847814397, -1.439925758545806]], [[-0.417345907857458, -0.906327793047585, -0.0662746161371644, 0.4062689987386435], [-0.5488516578863529, 0.30951673235529764, -0.7765057952311121, 3.4478748450871137], [0.7242818863053502, -0.2876965831246417, -0.6266150534645414, -1.6170749182039177]], [[-0.4198059168821681, -0.902595869201535, -0.09530838919553564, 0.42877904064019695], [-0.5605347579713762, 0.34042530184214137, -0.7549247637822312, 3.510859622905409], [0.7138373605077649, -0.2634982177662924, -0.6488489130585755, -1.4593001547965094]], [[-0.43034052342980594, -0.8962312642993506, -0.10759439941999005, 0.5049761386622407], [-0.5393477171311893, 0.35087667484735596, -0.7654995748355695, 3.4824996303993783], [0.723817016876182, -0.27139469401676, -0.6343767383345752, -1.5507667832258598]], [[-0.4146815550014689, -0.9039188694940566, -0.10473722029035443, 0.44926915832203773], [-0.5334558581776313, 0.3347330364798774, -0.7767745114670844, 3.4941979289615936], [0.7372001460373774, -0.26624137856754626, -0.6210084323267455, -1.6424274412991788]], [[-0.42702247760671025, -0.8985627384045998, -0.10117711583877398, 0.4810394738912504], [-0.5035162900825048, 0.3292290278812175, -0.7987988437785442, 3.3844350529749936], [0.7510813199915017, -0.2901607353713024, -0.5930291716337464, -1.730696757445264]], [[-0.33788154165182477, -0.9325249242385298, -0.1274100839216059, 0.1353857980873932], [-0.5497224050548697, 0.30541193731641597, -0.7775145181444033, 3.5568617587390685], [0.7639642276911115, -0.19266762628567846, -0.6158229003453559, -1.6937174431745907]], [[-0.16038121536990987, -0.9815168706826243, -0.10441502919532042, -0.5347192233035015], [-0.553374259759011, 0.17700665847791544, -0.8139075939507197, 3.482392274285337], [0.8173461900520719, -0.07275489962793946, -0.5715347147702328, -1.795745447042468]], [[-0.10410053086672111, -0.9892372275757686, -0.10282405871912081, -0.7369501242624731], [-0.5703672431989515, 0.14407540942646346, -0.8086553556888277, 3.516037123772296], [0.8147664004847613, -0.02553397690927206, -0.5792268369683004, -1.7253504843498206]], [[-0.12279907967223733, -0.9826997742083043, -0.13864176788615706, -0.623745362751631], [-0.5591454355259919, 0.18392400174210868, -0.8084109991295377, 3.5056375638479804], [0.8199248550703291, -0.021751215003222413, -0.5720577913845621, -1.771211814830448]], [[-0.13634217806134996, -0.9755611032184899, -0.1723117650324852, -0.5328944089469998], [-0.596954801058865, 0.21971586249155317, -0.7716021677408406, 3.65811868409582], [0.7906046900785868, -0.0023395847315763607, -0.6123224235392866, -1.5877736421109578]], [[-0.11872168240164915, -0.9734214462266899, -0.19584649640384422, -0.5652493537781824], [-0.6013815589067473, 0.22744190926784846, -0.7659049539698028, 3.6353803213047375], [0.7900920090309813, 0.026848946618716008, -0.6123999929219897, -1.6161907225565737]], [[-0.14589003992211136, -0.9758524277129675, -0.16256732629354514, -0.5617627538663917], [-0.6138288476342227, 0.21815883522658963, -0.7586968224690411, 3.767164476091692], [0.7758416346546289, -0.010897795157043866, -0.6308335723446782, -1.5694927161835386]], [[-0.19645511149472616, -0.965113939070025, -0.173090940780661, -0.3305412102843523], [-0.6130305729104397, 0.2586717561094912, -0.7465135224952926, 3.7403291931509632], [0.7652443438828492, -0.0405463587017581, -0.6424617396789752, -1.558230842365876]], [[-0.22285119696581893, -0.9620427691694727, -0.15751525100647984, -0.2695515168014269], [-0.6025763359664856, 0.26295306727644907, -0.7534968107053356, 3.6945913249088242], [0.7663152767263006, -0.07300270336528525, -0.6383036126775825, -1.5828599496040525]], [[-0.22266563041045362, -0.9597741355174455, -0.17103691363461648, -0.2460704279180606], [-0.5985556962238595, 0.27307062614770783, -0.7531025903907578, 3.7196276371048165], [0.7695135447488145, -0.06531494413255584, -0.635281719020054, -1.6268290447598464]], [[-0.18793102160595004, -0.970483573068083, -0.15114087972203427, -0.44021022871729343], [-0.6242611506609697, 0.2368257010301134, -0.7444538958908318, 3.7925116256077684], [0.758274321663068, -0.04555460170610531, -0.6503420879581853, -1.549381828315337]], [[-0.2058867269251935, -0.9686314796465249, -0.13915355659779033, -0.3636276073729984], [-0.6266968888261287, 0.2397270350616496, -0.741472830383016, 3.750229411370405], [0.7515727943530695, -0.06545231316259237, -0.6563949493178513, -1.5445719080757634]], [[-0.2554973706161394, -0.9576709105948028, -0.132617949798511, -0.21539197458455706], [-0.6363562249557723, 0.26984702902249114, -0.7226571357758625, 3.7851351631277774], [0.7278542770144845, -0.10024474015256868, -0.6783650517998893, -1.4867928009763318]], [[-0.3283703178142531, -0.9363515480422645, -0.12417210982109095, 0.04610443581334081], [-0.6176743514777935, 0.31232688979470913, -0.7217550203757856, 3.7767309065685706], [0.7145987194958114, -0.1603049980194577, -0.6809192152560596, -1.5231902943352205]], [[-0.42040636203426746, -0.8956730841397206, -0.14501109305413024, 0.4577015078486116], [-0.5652336169878273, 0.3835501853518513, -0.7303425316544414, 3.799635874222957], [0.7097671794243312, -0.22507550214139604, -0.6675114750682776, -1.7031529520896829]], [[-0.518658826384834, -0.8279466137794625, -0.21330125771834707, 1.0258729611609854], [-0.37729491498351353, 0.44551690739145783, -0.8118886822440221, 3.304577450697273], [0.7672298019111944, -0.34061575119109344, -0.5434513235790646, -2.293765511812443]], [[-0.60528286483299, -0.7478810846331482, -0.27259225371883666, 1.5829818661965465], [-0.241773793364487, 0.49899793113117547, -0.8321937860672555, 2.952444282907582], [0.7584049619970291, -0.43780697570362287, -0.4828529441181163, -2.5607461400629985]], [[-0.6339160792033067, -0.7247021207285428, -0.27010598056885027, 1.7317312492611652], [-0.16110534022976652, 0.4653173192439853, -0.8703590418678043, 2.6672856614799083], [0.7564360342269257, -0.5082190754223456, -0.41172551232574595, -2.8108785466160504]], [[-0.6245786132135414, -0.7513931638500859, -0.2128611501322092, 1.5707254849305534], [-0.25321929102474416, 0.4526834588681809, -0.8549606287543688, 3.0509166573782918], [0.7387702935075117, -0.48008957433639166, -0.47300365119555576, -2.649558123333553]], [[-0.6328445314797846, -0.7539178675362264, -0.17639628109957772, 1.5383664687040821], [-0.2559786168319975, 0.418728014137504, -0.8712874370156153, 3.0284611231258727], [0.7307412310119838, -0.5062358138121911, -0.4579765868611617, -2.6570914355095048]], [[-0.9688743488488836, 0.132451519275373, 0.20913892795053096, 4.674047650402773], [-0.21486441804763576, -0.030358833917293437, -0.9761719229009983, 1.812608990923856], [-0.12294624028290863, -0.9907244502104645, 0.05787301405205658, -0.9549052022703566]], [[-0.6160087591975055, -0.770155947609281, -0.16550838333450052, 1.440532569002901], [-0.2805250674131541, 0.4108043260565666, -0.8674937995432909, 3.118772450798539], [0.7360970691048803, -0.48795452867583944, -0.4691071122888081, -2.657965968445861]], [[-0.6234855284140877, -0.7578050120251055, -0.19234697712164534, 1.5302076418649053], [-0.2626018119724146, 0.4347066350244393, -0.8614350990147391, 3.0747092211191878], [0.7364143427493857, -0.4865816531840862, -0.4700342653228924, -2.671852478034882]], [[-0.6454762627112203, -0.7342213363081074, -0.2104267653752553, 1.6434030291056467], [-0.26104942233645745, 0.47099204486750196, -0.8426266627453293, 3.0745996636895723], [0.7177838068486622, -0.48896372358434326, -0.4956822405981237, -2.530502522473532]], [[-0.7011828027512864, -0.6737896946161199, -0.23313113167264127, 2.0098541382570065], [-0.2584052135234773, 0.5449094403338293, -0.7976844284922195, 3.0983682521216687], [0.6645069019579382, -0.4990803034223938, -0.5561918985261064, -2.277214196994256]], [[-0.6990205875872382, -0.68428294060289, -0.2076705933180091, 1.9488683743611503], [-0.38896836652356803, 0.607523724539094, -0.6925449689125852, 3.5304422355557836], [0.6000615201570414, -0.40332589964197474, -0.6908360085467551, -1.6432661365274572]], [[-0.6833421871056937, -0.6810769443286822, -0.26301644668254387, 1.9658153878752116], [-0.32163378107833557, 0.6042309263179828, -0.7290107671016702, 3.3029998096057445], [0.6554350968561721, -0.41356883778256004, -0.6319538355167426, -1.9932199700208713]], [[-0.6346255592418184, -0.7296788252943175, -0.25459617332967566, 1.698605771929727], [-0.4017728403061994, 0.5929300702477676, -0.6978628207522355, 3.5098506535402687], [0.6601734502002474, -0.34059175520420704, -0.6694537115720691, -1.818988798727495]], [[-0.6076781225201793, -0.7434210193180022, -0.27937875267552525, 1.6329891236271474], [-0.44671995781711843, 0.6108189430507587, -0.6537136208602554, 3.6038447133005778], [0.6566342807820967, -0.2724434011800187, -0.7032823149029424, -1.6383423723334523]], [[-0.5144233523562196, -0.8178575844515207, -0.25783247682499644, 1.122528570452319], [-0.4933591519114805, 0.5281879942813239, -0.6910963680430225, 3.7163909665512604], [0.7014024249856663, -0.22831209834828278, -0.6752097629418805, -1.755646026230881]], [[-0.438010847926143, -0.8642647128337174, -0.24737219578900538, 0.7419836159827309], [-0.49929165323641767, 0.4627099887504119, -0.7325348533135054, 3.705574888921473], [0.7475656105703813, -0.19734733963508572, -0.6341921518211087, -1.930020217527335]], [[-0.394455100154667, -0.8819275123201905, -0.2580872662001982, 0.5877733091223155], [-0.509216437165639, 0.44358200039420415, -0.7375185618319102, 3.7332905972010244], [0.7649207763437366, -0.1594956800010473, -0.6240651680543461, -1.972291047468035]], [[-0.3371857053899522, -0.9032297557411657, -0.26548410201824624, 0.3100431477361569], [-0.5438149378718105, 0.4170604230850755, -0.7282347951338066, 3.795751735113291], [0.768486248041017, -0.10117614264169406, -0.6318166464505253, -1.8354272826725402]], [[-0.3267610959821571, -0.9225428035075824, -0.2052850745887504, 0.2031701694731248], [-0.551003306208298, 0.3624302605511336, -0.7516912017473409, 3.8144556095946953], [0.7678688317024356, -0.13251068610948774, -0.6267522440061372, -1.909004832697152]], [[-0.29424704468275575, -0.9519301680181413, -0.08513302480481527, -0.1609428934727034], [-0.5492361819597302, 0.24132337872754886, -0.8000641494941627, 3.6833957552274645], [0.7821497894404641, -0.18865837404280028, -0.5938431819780069, -2.082828248655328]], [[-0.3797734965705038, -0.9244121277963041, -0.035132738090309146, 0.15275818783435133], [-0.5162870911328145, 0.24331197170464886, -0.8211254008705448, 3.6020360961929914], [0.7676064947824698, -0.2937030854592869, -0.5696654867195873, -2.2155603627467326]], [[-0.42212242927318383, -0.9065367527112792, -0.0019418259950017558, 0.26124251324055764], [-0.4995250631324518, 0.23438674043574909, -0.8339889490937065, 3.544682713092668], [0.7564967719739628, -0.35107545042567967, -0.551777728892151, -2.286344428227068]], [[-0.4392122069198801, -0.8981321524793262, 0.021243210101612786, 0.2770290253403757], [-0.5066217891185576, 0.22808646047298048, -0.8314510985856111, 3.5740289128138154], [0.7419076762528344, -0.37594574506404543, -0.5551916756268592, -2.29820660665221]], [[-0.5208069821042216, -0.8536708056337841, 0.0024985996196897897, 0.7115277249158716], [-0.4866147176029707, 0.2944662727761868, -0.8224936053304498, 3.5168580804776695], [0.7014030253739105, -0.4295762677405103, -0.5687688688654288, -2.173465148570102]], [[-0.5222421033632028, -0.8526302295506039, 0.016878303565887598, 0.7017165157178877], [-0.5430729754131733, 0.317246030043943, -0.7774488406301988, 3.754365544505206], [0.6575218086502229, -0.4151826683254519, -0.6287196697030379, -1.9452595718964447]], [[-0.538688553390501, -0.8423153404159531, -0.017874835551896284, 0.8354977125375898], [-0.5257845335130897, 0.3526829561155069, -0.7740577218683699, 3.7334787571074526], [0.6583048433396742, -0.4075777223617415, -0.6328626497668695, -1.93789709463792]], [[-0.5426782103554659, -0.8347685114162556, -0.09306928791646424, 0.9426195797220419], [-0.4846698708077143, 0.40170939760560526, -0.7769972176311671, 3.6172942989352492], [0.6859996183210473, -0.3765515797646194, -0.6225860835580468, -1.9917920683566441]], [[-0.5488010945754302, -0.8264680866766425, -0.12557014094863422, 1.0410346994960882], [-0.47756834151311484, 0.43325179316419643, -0.7643437465593745, 3.6245458276890234], [0.6861092025160596, -0.3595043607872625, -0.6324640517829603, -1.964378607599755]], [[-0.23699877003678646, -0.9705463060033946, -0.04326026934978122, -0.4003257556099491], [-0.6062625214463254, 0.18254485782601196, -0.7740304451188111, 3.7534391344274796], [0.7591293289621962, -0.15721718348973907, -0.6316687574393398, -1.915809051548326]], [[-0.012373623076126522, -0.9996987814522242, 0.02119527812763894, -1.341295710112502], [-0.6487907218567217, -0.008102539229985023, -0.7609237465677232, 3.597348039918719], [0.7608662777943336, -0.023166683426087853, -0.6484950362912822, -1.673341302989948]], [[0.02068017379764453, -0.997823020961074, 0.06262227440628299, -1.4557488077568446], [-0.728453574614408, -0.05793919739808806, -0.6826407833087303, 3.8002522835971013], [0.6847829729506939, -0.0315002896015566, -0.7280659391235298, -1.305535957352572]], [[0.10375273594601428, -0.9895996753641798, 0.09963860849502976, -1.8144436198454743], [-0.6612580182319014, -0.1434645363897548, -0.7363122707944574, 3.3416706960005347], [0.7429489909191171, 0.010507583812739585, -0.6692655583359142, -1.468408720136143]], [[0.05106463929745367, -0.99541728862793, 0.08085062840845131, -1.634709133848925], [-0.6861181465012374, -0.09379334510542012, -0.7214185314057593, 3.496159441099832], [0.7256957293901678, -0.018634106218333002, -0.6877633884049924, -1.4083051275707912]], [[-0.05205734920882987, -0.9985844078606418, -0.010918460100260374, -1.017058720253599], [-0.7438245268522152, 0.046067016129729854, -0.6667855002007625, 3.7950592228225752], [0.6663445847655909, -0.026589667213304524, -0.7451697014446155, -1.070663740299601]], [[-0.12006212179869055, -0.9915855050135833, 0.04840736675499929, -0.7146265705653935], [-0.7715456402099319, 0.06251295294375805, -0.6330951396017013, 3.9043026748372016], [0.6247418762835115, -0.11335923853488145, -0.772558911058923, -0.999881996107129]], [[-0.10752217842995845, -0.9935960681750289, -0.034725127109920206, -0.8703031141876314], [-0.73687754562784, 0.1030914032777677, -0.6681194843137803, 3.9276276773380285], [0.6674207547680604, -0.04624949596854511, -0.7432432443201145, -1.1473236576697845]], [[-0.28063087927857633, -0.9593970408829086, -0.028348325178952305, -0.18835305051320853], [-0.7361372476248224, 0.23409055231078557, -0.6350618599618325, 4.011717141267826], [0.615912544323205, -0.1573497100853698, -0.7719409345807268, -1.0352619102858605]], [[-0.44353588249988596, -0.8869962311168843, -0.12850527973390657, 0.632794841832716], [-0.7025619427976352, 0.433114244299195, -0.5646403881388131, 4.055346166614596], [0.5564913633359097, -0.16015535385861973, -0.8152715039561731, -0.7336682981932687]], [[-0.49897297707252003, -0.8621716333558558, -0.0876700792054114, 0.9729116909110019], [-0.6816794469579639, 0.45294249329973896, -0.5745922287661926, 3.8423503586662853], [0.5351066246520144, -0.22694310388269565, -0.813730746533285, -0.6933035166035972]], [[-0.5014105037894574, -0.8424642362385995, -0.19708251406077615, 0.9909852298941193], [-0.6902616306630454, 0.5268457513536531, -0.49595608224418264, 3.997746582789401], [0.5216573472347499, -0.11263909152473725, -0.8456867310869232, -0.49411528047304043]], [[-0.5430035337003949, -0.81386559627155, -0.20680897851504898, 1.2404790009561848], [-0.6101769141870605, 0.5516123870972722, -0.5686896410116905, 3.7805585376873805], [0.5769153280872679, -0.1826104203116664, -0.7961294735227153, -0.8131940927721635]], [[-0.56185488306447, -0.8031112668803703, -0.1983214143415117, 1.298614007633397], [-0.6426984047538294, 0.5747270189651021, -0.5065842616962848, 3.9060623140941324], [0.5208242034540002, -0.15716598449185407, -0.8390715120984699, -0.5643908231277082]], [[-0.5901403156979743, -0.7776738880993157, -0.21669732706332034, 1.4752523786855698], [-0.6199282078757979, 0.6084817619253886, -0.4954179674618959, 3.842812781872445], [0.5171299883663643, -0.15802933010257234, -0.8411915988403209, -0.5908646776862677]], [[-0.5946139575890221, -0.7782508617529841, -0.20189065758736166, 1.5167340628506898], [-0.6244476263606326, 0.6051933871973755, -0.49376727921677754, 3.8155731273773856], [0.5064577014646844, -0.1675307741082368, -0.8458333384029045, -0.5160381277575097]], [[-0.6118705103756046, -0.7619059457370316, -0.21240011389652486, 1.6077862407500187], [-0.6007774553843188, 0.6223463928150708, -0.5017483596904055, 3.763471997406232], [0.5144715032289351, -0.17939982497379708, -0.8385313203242506, -0.5776834223155225]], [[-0.6057509531660448, -0.7579000018107658, -0.24218457835640503, 1.5716170568773382], [-0.58223154302641, 0.6296890607494889, -0.5142938042379201, 3.692409110731547], [0.5422842548364409, -0.1705264613708611, -0.8227080362612355, -0.6493844220563486]], [[-0.6065925734478289, -0.7627030662806118, -0.22434233333032216, 1.5774940838499807], [-0.6182713795764729, 0.6299648225292876, -0.46998385458678027, 3.763984959244224], [0.4997859051979612, -0.14638427190718192, -0.8536894598761655, -0.49605998907824994]], [[-0.580961399828936, -0.7882619699828508, -0.20279772826034873, 1.4696628109926413], [-0.6939577121492961, 0.6099076374498263, -0.38266874386195426, 3.9403335152005536], [0.4253311012109482, -0.08158272157219529, -0.9013532680828066, -0.07691271895677243]], [[-0.6674368266852693, -0.7428138596963124, -0.05249430661858068, 1.8808669730602503], [-0.6377758839553517, 0.6065998257463394, -0.4746352001795489, 3.8624275150192533], [0.3844086422406085, -0.283309409034677, -0.8786158287460764, -0.1363409638429041]], [[-0.5847156760619934, -0.7847841746993084, -0.20547841080972643, 1.4644829136022468], [-0.6820416526428094, 0.6127044518740072, -0.39926487287768964, 3.8259308988639544], [0.43923429081485754, -0.09331159518140036, -0.8935133932835426, -0.16903463069026795]], [[-0.6434083285768276, -0.73530366397519, -0.2129653597715695, 1.6613179792718704], [-0.5453305366130523, 0.6354880402839269, -0.546598167297892, 3.6237258693261576], [0.53725257426586, -0.23554929930007215, -0.809861839478779, -0.7311979890145829]], [[-0.7928030553381658, -0.6038096780200369, -0.08292881390571477, 2.4215233488458083], [-0.36479306560247227, 0.5791078689635095, -0.7290816795071, 2.974563975045266], [0.4882513028500996, -0.5477663268528676, -0.6793840713700151, -1.2552171273628423]], [[-0.7892055944355382, -0.5753179837155297, -0.2148575046982226, 2.522844643183355], [-0.3712566470170989, 0.7256352237862537, -0.5793289428695023, 3.276529209532593], [0.48920653282358206, -0.3774423659503147, -0.7862660037344604, -0.9074106451621925]], [[-0.773447578652704, -0.5667650716613525, -0.2838242354362494, 2.525123426878627], [-0.3746269642559503, 0.7699349310185727, -0.5165799450712315, 3.3487933377905303], [0.5113056627191219, -0.2932192959921426, -0.8078297863592504, -0.8138814987955313]], [[-0.6442200260501968, -0.6950422442840988, -0.31921283917851295, 1.829384318122782], [-0.44591570304670636, 0.6804031097214861, -0.5815589342944472, 3.4156359677294916], [0.621401435315566, -0.23230989419707154, -0.7482595600765152, -1.2030309848859408]], [[-0.5706891939106741, -0.7259822932419999, -0.38374933726675364, 1.5450329367220972], [-0.554468181678685, 0.685379445486198, -0.4720381882972656, 3.925067886375334], [0.6057052744194314, -0.05661029591972408, -0.7936727253322766, -0.9493772812355807]], [[-0.5419031062112287, -0.7784243222901263, -0.31685422191566315, 1.295683043895754], [-0.5776176930627638, 0.6188134580371464, -0.5323792866114908, 4.058208760771892], [0.6104906421391514, -0.10547738439716228, -0.7849685963408096, -1.074118040551065]], [[-0.6875132662952549, -0.6773230603901954, -0.2618376988359214, 1.9835664872345498], [-0.44780486959086724, 0.6792978129236301, -0.5813994153143597, 3.668302018435472], [0.5716610074499897, -0.28246761446373403, -0.7703348228792666, -1.1991164881596261]], [[-0.6515725886066215, -0.6971322743225377, -0.2990982344888587, 1.7582200413086113], [-0.46339815732183137, 0.6779483888618337, -0.5706558768911218, 3.7397909544723515], [0.6005957954957706, -0.2332221561891797, -0.7647823980030347, -1.2528773974932903]], [[-0.6860193799205785, -0.6827177678640777, -0.2515429581921863, 1.906971651122136], [-0.45480595361275283, 0.6722371977328506, -0.5841649549080111, 3.774192276750754], [0.567916327403764, -0.2863452451621564, -0.7716718510100294, -1.2122556658760686]], [[-0.5394763608440709, -0.8165585613625295, -0.20541998918311988, 1.0322185660782175], [-0.5280591455205088, 0.5181339505222626, -0.6728229693971091, 3.936738112310014], [0.6558344264542592, -0.2544981830617839, -0.7107122342380654, -1.5687232875289567]], [[-0.40796647657160057, -0.901494947939825, -0.14446526514261526, 0.33712958904509777], [-0.6210978311022429, 0.39001275408150327, -0.6797996291951405, 4.054729721020938], [0.6691792272581715, -0.18760839664773318, -0.7190286860156717, -1.4683145733647307]], [[-0.3188956310767419, -0.9373480830167552, -0.14030020579093938, -0.07105069740271265], [-0.7260159206688314, 0.3367431313668018, -0.5995873134187127, 4.285063385667974], [0.6092671494636446, -0.08934559162093347, -0.7879155448665481, -1.0482494692780897]], [[-0.4279219513914654, -0.8847422997170098, -0.18469939525828816, 0.4305347031593747], [-0.6968561257280366, 0.45310853958214636, -0.555953407573913, 4.345518091822757], [0.5755643695996404, -0.10919576204776155, -0.8104331816986379, -0.9752203955945178]], [[-0.4611053671332674, -0.8675995800921277, -0.1861526497927398, 0.6558542063894974], [-0.7115906313091636, 0.4868760341149146, -0.5065476293869694, 4.312544939116317], [0.5301137744238691, -0.10110734903307539, -0.8418768853802694, -0.6698894400526547]], [[-0.4701803356835604, -0.8419924903611966, -0.2645356273015882, 0.8485719631418783], [-0.718026013018916, 0.5392220362545893, -0.4400889003890166, 4.322406499783776], [0.5131949888343162, -0.01697768514269951, -0.8581041088600738, -0.47795363219648035]], [[-0.5070774763172908, -0.8212189636204342, -0.26167125711829176, 1.007739421578791], [-0.6566766272201975, 0.5647450785874798, -0.4998387774812265, 4.15899643370646], [0.558254637485792, -0.08162358728579142, -0.825644808452282, -0.7732450687941549]], [[-0.4632979345359729, -0.8396650583965959, -0.28340362305825095, 0.8219570841415996], [-0.6688812429819029, 0.5411029951264426, -0.5097111254938211, 4.208628636261551], [0.5813371712196688, -0.046584743994515704, -0.8123281079620965, -0.8280115616392232]], [[-0.45250689371888353, -0.8419413398823529, -0.29389163195639856, 0.7798801398066162], [-0.6179605874716178, 0.5336591126063707, -0.5773496894118105, 4.074949093267661], [0.6429325185963298, -0.07964126900853208, -0.7617709923606244, -1.1919392841843413]], [[-0.5102815641512171, -0.8310602818372809, -0.22124993387553113, 0.9639239428900543], [-0.617961995868661, 0.5332437917939219, -0.5777317977879196, 4.131817745779347], [0.5981101043699301, -0.1580818347115817, -0.7856681466018665, -1.0664892996871043]], [[-0.5750730472078178, -0.7875350523859195, -0.2215390070362828, 1.276293934201965], [-0.5384330766996941, 0.5682215465728946, -0.6222652938466111, 3.881359645641569], [0.6159389679918104, -0.23856406953649784, -0.7508038175418188, -1.3033600935720897]], [[-0.5143174481782077, -0.8291593848027812, -0.21902574527422455, 0.9238225590703668], [-0.6092693980358697, 0.5330085756838213, -0.5871053217818016, 4.085135924736044], [0.6035464879497395, -0.1685128269330773, -0.7793170497573867, -1.097222118536375]], [[-0.42396507938259853, -0.8593690096681537, -0.28589948703361495, 0.5818577447853855], [-0.581493905153313, 0.500304421004569, -0.6415296755356161, 3.9524360645316805], [0.6943474992636305, -0.10573737061824434, -0.7118294449663369, -1.4611233941754849]], [[-0.47977368934630443, -0.8587441059054337, -0.1799326751418782, 0.8095253269713834], [-0.6576311972930076, 0.48771620262379095, -0.5741551306443188, 4.24303527048684], [0.58080841536431, -0.15713518470064716, -0.7987303164216895, -0.8949064204718717]], [[-0.36786433826980186, -0.9141816990586054, -0.1701400885612859, 0.29485141414616023], [-0.7883560878288265, 0.40364273555519664, -0.4642921718236752, 4.645992954668434], [0.49312321727185815, -0.03666555795074, -0.8691864756469767, -0.43750853946649526]], [[-0.33600836952969176, -0.896321423409187, -0.28932037872180183, 0.2547164267686952], [-0.6293258981227272, 0.442200792248106, -0.639067581158026, 4.081019289661789], [0.7007476646825309, -0.03265524877988679, -0.7126614520016519, -1.3102390656116756]], [[-0.4380560014155662, -0.8676500973795656, -0.2351387848506403, 0.7136523270089545], [-0.5800429749228284, 0.4726469791978467, -0.6634417685809548, 3.9013511921720903], [0.6867729514668443, -0.1542340480321402, -0.7103201894646801, -1.4604868128958275]], [[-0.3104076417426859, -0.9171805144908809, -0.24985395691480938, 0.15188499146035225], [-0.7276114986428128, 0.39838240574766753, -0.558455876353236, 4.299863913414856], [0.6117422684354126, 0.008447640436468284, -0.7910120317546072, -0.8709332906155031]], [[-0.07484989928135487, -0.9807952620022746, -0.18010593163874605, -0.9642965009036398], [-0.6464364499148099, 0.18524648406218736, -0.7401375928596895, 3.736701893521333], [0.7592874349013743, 0.06102781477725827, -0.647887487936296, -1.2129186799332201]], [[-0.09020268844764352, -0.9343926593576285, -0.3446357978147308, -0.7738877308510164], [-0.6029401043870969, 0.32665918465161464, -0.7278440819326752, 3.7281741258402974], [0.7926706160307029, 0.14214125094891, -0.5928483442333166, -1.7679905404215206]], [[-0.36708159913809874, -0.9253769863932901, -0.09449091293817052, 0.36391138241063903], [-0.5916655244752693, 0.3106661452502478, -0.7439209993962779, 3.7770860893115286], [0.7177625002196903, -0.21717269452908872, -0.6615534853882596, -1.699336843502361]], [[-0.36078593752597987, -0.9249660699657419, -0.11946244889349023, 0.3601660992212987], [-0.5897793740899376, 0.3254975397574149, -0.7390613245935354, 3.794148947510337], [0.722491382081185, -0.19618644454701722, -0.6629608448426039, -1.6899330479878116]], [[-0.3414866504074129, -0.9300801035457695, -0.13541738655658742, 0.2956948224673036], [-0.5991246926597189, 0.3264192754775217, -0.7310951095733902, 3.8175075497848563], [0.724179860420685, -0.16852731999595977, -0.6687017811970121, -1.6560800244825609]], [[-0.12178643762265214, -0.9538762753297301, -0.27438679810490973, -0.5823480017515154], [-0.7310002678404739, 0.27320097418729145, -0.6252997969936263, 4.244225671550612], [0.6714213818671096, 0.12442378818455768, -0.7305559861540146, -1.000979754483081]], [[-0.33459283000488454, -0.8953271841989138, -0.294001481873418, 0.3871347598341831], [-0.6228610413963621, 0.4442329636964671, -0.6439729785294506, 4.030130124667597], [0.7071716631907423, -0.03234667216109305, -0.706301586845266, -1.404483739406761]], [[-0.35376626301654107, -0.8974594850207804, -0.2634689809020153, 0.41804478776362664], [-0.6704139194041683, 0.43972228698830734, -0.5976533167271088, 4.212974120116067], [0.6522228206835854, -0.034796308310048596, -0.7572282410921684, -1.078205619073802]], [[-0.3508949397416299, -0.8885111620140922, -0.2956698433051379, 0.3800562109838898], [-0.6334327556700272, 0.4577637967221182, -0.6238711809779536, 4.151357758484794], [0.6896634580054194, -0.03162627684249997, -0.7234390736648719, -1.173144498644972]], [[-0.292122551988941, -0.8801050705239777, -0.3742719325002238, 0.21857752148259443], [-0.6368093049025243, 0.4709710638955066, -0.6104589799181419, 4.280049387376614], [0.7135392938087095, 0.060011014081738534, -0.6980403672996632, -1.1228997377741423]], [[-0.3619320419113524, -0.8912300280548265, -0.2733390461153926, 0.47028296813243387], [-0.646837531066028, 0.45124225810909724, -0.6148021087317515, 4.210407149375189], [0.6712722290116616, -0.04571062885146426, -0.7398000628330059, -1.240738659623859]], [[-0.3026134943871731, -0.9176680462177852, -0.25750811631017995, 0.17110687565909688], [-0.6619734881132818, 0.39673989079983285, -0.6359155290471145, 4.138452383632213], [0.6857231030451862, -0.02197307440868468, -0.7275307622026104, -1.1242546788171182]], [[-0.25214941494166176, -0.9418833421411331, -0.22198297759428942, -0.06923337316409564], [-0.760718349812514, 0.33471702431103667, -0.5561223839182257, 4.253672931452735], [0.5981038913124569, 0.028640590661053345, -0.8009066436005402, -0.6760967780607277]], [[-0.31059637225923303, -0.9134160167389519, -0.26306096993691575, 0.2398375436212638], [-0.8656053716924837, 0.38614572755240456, -0.31877706565896663, 4.303098233742418], [0.3927559471688762, 0.12869598850691094, -0.9105932728203676, 0.3067810944357815]], [[-0.3875084699401432, -0.9057567699738758, -0.17158630298231956, 0.3483452943987017], [-0.8682988153628599, 0.42113671366721206, -0.26210882404267644, 4.2534125968291745], [0.30966813359482614, 0.047418794249453056, -0.9496615739240083, 0.4862584599351805]], [[-0.4873103356425779, -0.8687206717968695, -0.08861732995703941, 0.7335228437058962], [-0.8351750424375467, 0.4932997255031148, -0.24318311887956798, 4.193230976913541], [0.2549731069453427, -0.044494664976238635, -0.9659238787416389, 0.4961187314739379]], [[-0.3712857377848044, -0.916079375494212, -0.15147765086549125, 0.16088472325422792], [-0.7560704369280695, 0.3929773986708525, -0.5233796504806885, 3.861633029989501], [0.5389845965526204, -0.079795625995566, -0.8385274370889626, -0.41097207693277577]], [[-0.41995456019549277, -0.8571286424819237, -0.2982761432097865, 0.7066237740911764], [-0.7231035232362643, 0.5146240646201015, -0.46074219124927884, 4.200520649147723], [0.548415410117469, 0.022193745762722705, -0.8359114639689469, -0.4981320335954559]], [[-0.3449753453264359, -0.8750071294410869, -0.33963882955895175, 0.4282313790467691], [-0.6253932417477431, 0.48410831630494067, -0.61198237822722, 4.104774392491613], [0.6999109259706943, 0.0012889963786532066, -0.7142289788262448, -1.2505396450314785]], [[-0.20933984875271774, -0.8974855493629066, -0.38819649201010475, -0.3698289264996993], [-0.4699060070372439, 0.44048079523245687, -0.7649607921859108, 3.579286258983031], [0.8575343563231174, 0.022279086968375994, -0.5139440339271899, -1.8118226172860659]], [[-0.3555946295712347, -0.8439636233057212, -0.4015941508000026, 0.5905884919764658], [-0.35389187208653994, 0.5192653001751479, -0.7778972238702858, 3.2946226816160604], [0.8650508668807751, -0.134495169321029, -0.48331981868957885, -2.2858081660776577]], [[-0.34827178284763327, -0.8452567415702434, -0.40527497591411354, 0.6282247160942059], [-0.4477961684812821, 0.5298399058492017, -0.7202418105492018, 3.7443269736067735], [0.8235201010088423, -0.06935931804569395, -0.5630310188920518, -2.027020253288911]], [[-0.29741225416885614, -0.8714715751687317, -0.3899785183098281, 0.43620177569124535], [-0.5798179611773521, 0.48937582021945053, -0.6514003672709117, 4.248075400398138], [0.75852296139691, 0.03238209779290652, -0.6508412377655493, -1.6158981808526363]], [[-0.37262987855829693, -0.8624501162344349, -0.34252995578903417, 0.6522722546109407], [-0.5365564347105034, 0.5013978523238859, -0.6787542898985963, 4.178659010423628], [0.7571355004068832, -0.06913747675612669, -0.6495889803032482, -1.564741393593869]], [[-0.31305048509752176, -0.8822240259296359, -0.35168190435777485, 0.3487936679426441], [-0.415419257959889, 0.46018856590244195, -0.7846357906243564, 3.4400504746171636], [0.8540645373133469, -0.09953517913360493, -0.5105551039981674, -2.192992431758431]], [[-0.3089111276372839, -0.8771727043465742, -0.3676165964305469, 0.3898922209240049], [-0.4774707758316137, 0.47731213645607673, -0.7376955893988337, 3.7291029074628135], [0.8225542981764906, -0.05235619486797394, -0.5662713619902813, -2.00837993198914]], [[-0.34333362888713975, -0.8951418068671095, -0.2843293246815648, 0.36558023403881995], [-0.630648788254069, 0.4440536670988789, -0.6364734453295854, 4.27614083242069], [0.695991469163856, -0.039210793599780414, -0.7169786527620006, -1.0796151954165714]], [[-0.3932154617353797, -0.8661444070469576, -0.3085052135596841, 0.5975874078120162], [-0.3656427683004121, 0.45516825677243355, -0.8118665062781905, 3.234643522515064], [0.8436154139427771, -0.20643576281259546, -0.49567863499462883, -2.0946811797008236]], [[-0.3417011445320625, -0.8774624766968799, -0.3366005493377224, 0.3998460851532896], [-0.4121997132857582, 0.4617986169472264, -0.7853874418099438, 3.379449971600332], [0.8445896780050166, -0.12962113783872853, -0.5194868972676558, -2.1385167178230926]], [[-0.290291221202782, -0.8848834991767399, -0.36429685666682143, 0.31144192005699745], [-0.5892439983462824, 0.4652488688076944, -0.6605565838639771, 4.095806800613186], [0.7540043218082271, 0.022905959003928722, -0.65646995341495, -1.5576937974967142]], [[-0.16308884795985346, -0.9139232860344921, -0.3716803127891548, -0.1725088208488622], [-0.6993911311072349, 0.3728069001600395, -0.6098090364381337, 4.389728735231605], [0.6958836636965051, 0.16049686114369446, -0.6999904886234896, -1.0893521563976893]], [[-0.36760403652070367, -0.873897084108916, -0.31807414028747927, 0.7083170544515152], [-0.4911410485234122, 0.47286520000001936, -0.7315592751679558, 3.5294846685816723], [0.7897137093839818, -0.11270487573692539, -0.6030338864409824, -1.7281149353442933]], [[-0.19068392599370687, -0.9010466614549029, -0.38955686908152487, -0.028297939247895542], [-0.7761594919704538, 0.38135054179906325, -0.5021436122203768, 4.584559142632271], [0.6010125484478621, 0.206607546209074, -0.7720733374865835, -0.4890007096885973]], [[-0.4561456669145172, -0.8228249075648977, -0.33895471975756397, 1.141915058842534], [-0.4467702098177809, 0.5411511917179676, -0.7124266750491589, 3.5288197732274607], [0.769628163579327, -0.17353546955317645, -0.6144574278438436, -1.8563037969648462]], [[-0.35316817094271186, -0.8524510015693348, -0.3854860995631589, 0.7006040033170966], [-0.744197195709568, 0.5056733438670327, -0.43642296364919736, 4.759008982030017], [0.5669592374509781, 0.13274697445053757, -0.8129793747957166, -0.46674176543096524]], [[-0.38300640658501317, -0.8614888064527215, -0.33338135651457945, 0.9102712784002518], [-0.4794583245342761, 0.49387787593270516, -0.725399447683126, 3.6534800908927405], [0.789573180616984, -0.11799016917042299, -0.6022063702996794, -1.7396704316834206]], [[-0.21277977488013544, -0.9137208636469447, -0.3461776288818211, -0.07063751094311704], [-0.6526826529686602, 0.39656920159528897, -0.645552649177328, 4.217384218936741], [0.7271383100316955, 0.0885835858517603, -0.680751662797744, -1.348726681757868]], [[-0.26503846959357674, -0.9184096476557293, -0.2937317291822149, 0.06637635577510691], [-0.603119291983047, 0.39557863260740384, -0.69265046384329, 4.117980313257104], [0.7523308642302023, -0.006423746362972993, -0.6587541318347092, -1.5580808960017078]], [[-0.22430724467858254, -0.9463723686133728, -0.2325201064635415, -0.2225846854910232], [-0.5380783485135533, 0.31920554643126087, -0.7801150620187043, 3.749466631374173], [0.8125010466735593, -0.049871425211579, -0.580822597788461, -2.037206120535081]], [[-0.26984438012285294, -0.9533413466873972, -0.13536723094003678, -0.016009143469545045], [-0.5498711907325897, 0.2679713204914407, -0.7910961035148623, 4.002143623612276], [0.7904591603102827, -0.13903829720740085, -0.5965254963463249, -1.7226388589266213]], [[-0.10767426862655471, -0.9698238949703881, -0.21874154754001818, -0.7493537606390998], [-0.5745810299715068, 0.2402586262958436, -0.7823889266134307, 3.82225967741042], [0.8113340199157303, 0.0414415882284887, -0.58311208433069, -1.8637069674135263]], [[0.28094844023002163, -0.9592513590852332, -0.030079960529408922, -2.359521983572958], [-0.5738083143990302, -0.14277027905722173, -0.8064494192101985, 3.2732591089521232], [0.7692931770520661, 0.2438308379000817, -0.590537492654008, -1.4239696383144647]], [[0.4173773589002495, -0.9075045299333798, -0.04724053797161637, -2.8373868707105], [-0.5685294161887403, -0.22021546042397386, -0.7926408101519549, 3.0998563018845053], [0.7089220290028675, 0.35768796337122216, -0.6078559678524224, -1.1858975784028165]], [[0.27138795285365214, -0.9606432434296694, 0.059271729338947254, -2.316371402375619], [-0.5865995119038783, -0.21391306145526456, -0.7811160059638826, 3.298254263129213], [0.763052810544615, 0.17721670629983383, -0.621566285546604, -1.368528215931381]], [[0.15084590616661586, -0.9867359092762824, -0.059981313235709544, -1.6614292158990651], [-0.641038243049421, -0.05144775202921337, -0.7657826713626078, 3.589683943345649], [0.7525393568052662, 0.15396549664080084, -0.6402961364113232, -1.4072743747971668]], [[-0.04014238358595244, -0.984438449159793, -0.1710833973706974, -0.6847911252347563], [-0.7020815080434223, 0.14961992663413937, -0.6962007136002295, 3.9912538468828465], [0.710964236163474, 0.09216733352905704, -0.697162131449085, -1.3303692279748545]], [[-0.06764330670918581, -0.9837894504064668, -0.16608040319793438, -0.5919004123118407], [-0.7556728457299628, 0.1592086130571925, -0.6353039963315079, 4.07051638394804], [0.6514468000411288, 0.082528387827139, -0.7541923706315428, -1.000976943774701]], [[0.054686963565302296, -0.9900644725883265, -0.12954410883712733, -1.0963157917620774], [-0.7887370589775013, 0.036723749747482784, -0.613632803881935, 3.9693675394720866], [0.6122933837724595, 0.1357339542004226, -0.7788922299430058, -0.779529183688208]], [[0.04737743630652201, -0.9904700595848182, -0.12932300489498522, -1.0485604811980025], [-0.7740462062286739, 0.045427722235016996, -0.6314972626033586, 3.9477628657879724], [0.6313539808633652, 0.13002070265378912, -0.7645173429879772, -0.8537222528115758]], [[-0.007448394167641495, -0.9884905612516925, -0.15109907921836363, -0.7616565105812111], [-0.6786699245911654, 0.11597127189286287, -0.7252294792346583, 3.778752247819869], [0.7344056473637341, 0.09714460567558836, -0.6717226144089458, -1.3454815381062015]], [[-0.01657144740106152, -0.9678807405366001, -0.2508630288212211, -0.6784868091477259], [-0.6483492365302774, 0.201401880898312, -0.7342210497263264, 3.855059773574015], [0.761162699179118, 0.15047974770361977, -0.6308622598550454, -1.4688789907378992]], [[0.07540421731631859, -0.9637893413822529, -0.2557817613687042, -0.9785425865090537], [-0.6603343040300702, 0.14394357968599963, -0.7370473884278428, 3.853659926207717], [0.7471765594101816, 0.22447795282642702, -0.6255692110093178, -1.3437007760422885]], [[0.16460901670959643, -0.9470362947650082, -0.2757283591066836, -1.3018448036977555], [-0.6747678471444323, 0.09577477143720375, -0.7317892767841158, 3.9545420313285238], [0.7194388258065919, 0.3065117445611437, -0.62326425083436, -1.1287202251797075]], [[0.2858051893382996, -0.8834526474045435, -0.3712503381024749, -1.7359138044314215], [-0.6863296487141516, 0.08166022741545935, -0.7226916497057128, 4.008424820608796], [0.6687802382271831, 0.4613491379122308, -0.5830008283908635, -0.8749773699688708]], [[0.276516332848475, -0.8867575616461021, -0.3704048386988096, -1.5945748411335405], [-0.6494501089752254, 0.11166559389356076, -0.7521604556824737, 3.8718525961903887], [0.7083454479419625, 0.4485441137768482, -0.5450274345168716, -1.0450850272329641]], [[0.315482796453135, -0.8709342497940589, -0.37675474473159554, -1.7508900054172474], [-0.6604770439456829, 0.08354166141768923, -0.7461842032825037, 3.9334086003960658], [0.6813520966158997, 0.48424613921355336, -0.5488761218106374, -0.8906188799365719]], [[0.31702557107309337, -0.868839773570607, -0.3802791542374572, -1.7117950332017722], [-0.6500167188171595, 0.09292950685893775, -0.7542163960118666, 3.8630460976048977], [0.6906323570062102, 0.4862936917303485, -0.5352993488127139, -0.9423065852994609]], [[0.3129704801729957, -0.8721377988474069, -0.3760653378894211, -1.7008146542892177], [-0.6669484533525206, 0.0800895756175867, -0.740787027726644, 3.9219091042383245], [0.6761872810922763, 0.48266066723837664, -0.5566052831136623, -0.8624923319015495]], [[0.299465020368671, -0.8820136725141241, -0.36383043175872326, -1.6661823078824298], [-0.6686858583347683, 0.07798543697760205, -0.7394440441862431, 3.9292013904706375], [0.6805732322378582, 0.464725890302617, -0.566436159195151, -0.8887376522432844]], [[0.3029646454459262, -0.8745474019202146, -0.3786545462613997, -1.7047771148590125], [-0.6824325969046188, 0.07825017342308085, -0.7267480038096257, 3.9447804613903017], [0.6652053624948029, 0.47858515663762496, -0.5731126185613935, -0.8286374915466116]], [[0.29962717440875064, -0.8813450023592738, -0.36531430737401943, -1.6862230817691528], [-0.6813824124059834, 0.07033076072067479, -0.7285407278665026, 3.919265976676401], [0.667788562660091, 0.46720934377726503, -0.5794599767607654, -0.8370308466638857]], [[0.3135374202945183, -0.8774604603905752, -0.362984058226003, -1.7651286749625672], [-0.6871999893372861, 0.05413390490161067, -0.7244485454433165, 3.9465783368775336], [0.6553246987027822, 0.4765843690169276, -0.5860178141309736, -0.7828217714577806]], [[0.32357712691949714, -0.8764949861748668, -0.35644688544696873, -1.825855067559766], [-0.682996567833287, 0.04435167519809535, -0.7290738078103434, 3.902857447392924], [0.6548385535859007, 0.47936360741867273, -0.5842918796458516, -0.7767582358535143]], [[0.3166374093470844, -0.8749642226136173, -0.3663036447376903, -1.7952763195191426], [-0.6954406948244133, 0.048479133133467855, -0.7169463115413632, 3.9482315366333656], [0.6450604552940019, 0.481754483940499, -0.5931354197981425, -0.7456629609763902]], [[0.38155835902846863, -0.8804062044318905, -0.28159924334652264, -2.2019593800227755], [-0.6954220321457776, -0.07272247521923632, -0.7149123294532166, 3.8399233835785043], [0.6089346564794446, 0.46861109333414136, -0.6400017401089166, -0.5390326324122131]], [[0.5438615474954284, -0.8359509782698226, -0.07348863235633563, -3.1108855370457724], [-0.5858374114297932, -0.31551619585707347, -0.7464878147171059, 3.0831905711805194], [0.6008403652594566, 0.44903840824767727, -0.6613284837304947, -0.5402092872239816]], [[0.5687458658738401, -0.8191758365461596, 0.07402086780304223, -3.258849711647008], [-0.5751785352729369, -0.460437155400469, -0.6761414633699099, 2.6976864710134683], [0.5879607066910975, 0.3419774477149393, -0.7330440864243305, -0.4974217370001927]], [[0.7954768433247285, -0.6046095684000613, 0.040790458850286315, -4.569679074401476], [-0.4379198454256642, -0.6200816557739512, -0.6509415865920667, 2.161247443499176], [0.4188589269867454, 0.4999460070564883, -0.7580311268752661, 0.08143149156311172]], [[0.771036986596565, -0.6342460433071454, -0.056867581708027026, -4.442552142942202], [-0.432108123406972, -0.4555172305158934, -0.7783229550699604, 1.5457540358764932], [0.4677440913424707, 0.6246887298906241, -0.6252835003115349, -0.3366136553612464]], [[0.6903214793709356, -0.6701861812815133, 0.27259262194422185, -3.646874888056409], [-0.4570987562514423, -0.696044495266037, -0.5536991851567348, 1.7617088346450767], [0.5608181364332893, 0.2576286921698553, -0.7868357356007301, -0.31230958945004755]], [[0.5528497895520241, -0.7495995763138815, 0.3639472288427705, -3.2818210762244826], [-0.5811785347221184, -0.659863488017508, -0.47624750703769514, 2.368233185282641], [0.5971504173744953, 0.051775016865449025, -0.8004565738739666, -0.7702348040405398]], [[0.6174189493891774, -0.7765586441955286, 0.12550104804489406, -3.8095185397701643], [-0.5747217246821246, -0.5542480803265454, -0.602083054596908, 2.3240573850394486], [0.5371115155287295, 0.29960930823247406, -0.7885083907650505, -0.6065613719330167]], [[0.5872597314409298, -0.7582526986088787, 0.2831587061707268, -3.6064634511948226], [-0.5384634236118913, -0.6271876828086964, -0.5627546107898351, 2.105995050426594], [0.6043038550763083, 0.1780125152493805, -0.7766134142251866, -0.8578493075112866]], [[0.6019252257350998, -0.746671589918878, 0.2831387635626108, -3.62217120324081], [-0.5483972341744561, -0.6442445245131163, -0.5331129957004197, 2.102258825411896], [0.5804709262086741, 0.16562164545397942, -0.797259665594316, -0.73205804154585]], [[0.7199919903494506, -0.6789536276115902, 0.1436436750633269, -3.9299714248895117], [-0.5337977333457882, -0.6740804556783193, -0.510563922684915, 1.8385993369181495], [0.44347662137652244, 0.29092526673627217, -0.8477564364054649, -0.13906940335151657]], [[0.763037193177475, -0.643784414155351, 0.05758359070509625, -4.0829599379775905], [-0.5324465882343394, -0.676573963410627, -0.5086730803890126, 1.803089530014877], [0.36643535924560067, 0.3574762930957612, -0.8590319128932642, 0.26630434197484487]], [[0.7063147238832509, -0.6890598535556279, 0.16222215953322644, -3.6105257605789003], [-0.5445432282730253, -0.6752911186447033, -0.4974480652506118, 2.0015119171874702], [0.4523186745732691, 0.2630179144040984, -0.8521909371348649, -0.060747032048970924]], [[0.7925409320096564, -0.6097721420185221, -0.007536969378239111, -3.8809789633015574], [-0.5291594904872748, -0.6815179629208581, -0.5054933232431975, 1.822307702993333], [0.3030991664728113, 0.40461240840382945, -0.8627975974984747, 0.6146119955698518]], [[0.7100674072040436, -0.6989834906459772, -0.08500798215986609, -3.5790418536832806], [-0.6392841502021555, -0.5893493166929393, -0.49394651351525243, 2.3555613243222964], [0.2951610620099388, 0.4050795757847223, -0.86532680806458, 0.6471277819273592]], [[0.45622515349084203, -0.8520553670242369, -0.2566325405077281, -2.720656877793345], [-0.8310347442774558, -0.30484166125179224, -0.4652448982728895, 3.4270882600227472], [0.3181821225744169, 0.42552698279949386, -0.8471640477402227, 0.4625059230359436]], [[0.10299461539691755, -0.9314218360767332, -0.34906370833801675, -1.3422469214785147], [-0.9375370082942056, 0.026330326572163595, -0.34688769361474, 4.264838682923282], [0.33228973393409483, 0.36298770940907926, -0.8705305597967012, 0.3645265128056938]], [[0.08859151365260579, -0.91387866476709, -0.3962036468689567, -1.235040704090121], [-0.945050016092744, 0.04855072865432455, -0.3233006245435331, 4.244644795664842], [0.31469351882719887, 0.40307395454265577, -0.8593598643045303, 0.45575109152954596]], [[0.10155215069285752, -0.9710473543616616, -0.2162271867200629, -0.997088339628593], [-0.9447353403952494, -0.026030752930232704, -0.32679892366737884, 3.9602472809675913], [0.31170867376113753, 0.2374645983912191, -0.9200262318069903, 0.4478092879729523]], [[0.14730960351182945, -0.8939339539634905, -0.4232989093588453, -1.3557882461697972], [-0.9707572505758324, -0.04865252069634471, -0.2350814596780071, 4.024978659445159], [0.18955273980514842, 0.44555024203909044, -0.8749598508796104, 0.9220176864641891]], [[0.19943525151622113, -0.9051902650366845, -0.37530809281905797, -1.4642276902497546], [-0.9608404325358604, -0.1054487359778123, -0.25625422393588515, 3.9648360111625376], [0.19238306489128065, 0.41171731584121973, -0.8907736009669005, 0.9754304701266273]], [[0.2372258272824637, -0.872178992283011, -0.4278173819404047, -1.5408715214947293], [-0.9481006906737917, -0.11188026199432076, -0.2976371739550714, 3.841803241914495], [0.21172856966888048, 0.4762211801214573, -0.8534543926828758, 0.9465574353943754]], [[0.21001103499675147, -0.9147781935986495, -0.34507422635714896, -1.3382024580951315], [-0.956052914121431, -0.11828805495950076, -0.2682736689535848, 3.9776669874743176], [0.20459274322300075, 0.38624965057626887, -0.8994181546145249, 0.9470959433606904]], [[0.094097447767653, -0.841882989626432, -0.5313931709208114, -0.9180512900898263], [-0.9439976329512157, 0.09410379399647356, -0.31624823309857586, 3.753318857825628], [0.3162501214325707, 0.5313920471112925, -0.7858806225889235, 0.4214780398583001]], [[0.16606240342815679, -0.8814377058713689, -0.4421434708732931, -1.178732555167105], [-0.9666793214775444, -0.05692843003177043, -0.24958013398873008, 4.002714471594183], [0.19481880708848076, 0.4688568273176113, -0.8615212753509257, 0.9877525001488863]], [[0.2077452352932146, -0.8615683131995118, -0.4631867430135659, -1.3874457824416153], [-0.9591943346479994, -0.08657932705997667, -0.2691658382949511, 4.008316542742761], [0.19180236075749682, 0.5002040201921512, -0.844397887604808, 1.0390875988087316]], [[0.20910994795669158, -0.8878989731381158, -0.40976632751585285, -1.3274261014812312], [-0.961768102110354, -0.11095552028116741, -0.2503816891910887, 4.01447001649081], [0.17684780866212982, 0.4464574851197086, -0.8771548133322804, 1.0723245363185325]], [[0.18909234982527487, -0.8398554175824207, -0.5088093560411538, -1.353778364515886], [-0.9387467330032986, -0.0025898246576554866, -0.3445981196754795, 3.7691225173531526], [0.2880948706818456, 0.5428039888999531, -0.7889012454807701, 0.7394545389878325]], [[0.24208413333560727, -0.8732407702641046, -0.42290167833162023, -1.53726263762827], [-0.9518043262913879, -0.12913718679294908, -0.2781943770822845, 3.993087718607338], [0.18831833909671475, 0.46986609170672894, -0.8624164069775682, 1.0300298836299107]], [[0.26905137126847684, -0.8761701696890586, -0.3999214840010452, -1.6750062209221852], [-0.9420098374848583, -0.1529215164264221, -0.29871805418419917, 3.905861356224137], [0.20057124843881022, 0.45710047425143796, -0.8665046628488546, 0.9716577842709643]], [[0.2624153503477807, -0.9011642896452482, -0.3450233426451419, -1.6356614083049665], [-0.950771212153665, -0.18038572925010282, -0.251982322440999, 3.9393525223227557], [0.16484018333435072, 0.394162291132833, -0.9041370483545147, 1.084645978216792]], [[0.18686137906949746, -0.8827643808833169, -0.4310566933199624, -1.40080763618683], [-0.9253099803508512, -0.010771798513118665, -0.37905858204227555, 3.5218978493953372], [0.3299761586468836, 0.4696924698145451, -0.8188435250547934, 0.47018357105563074]], [[0.36190543998012853, -0.8647575345076687, -0.34816498822398534, -2.0241456925280183], [-0.9279910415675455, -0.2986833062437297, -0.22275751242482622, 3.5474950345953102], [0.08864016743650496, 0.403711145602314, -0.9105823585120107, 1.3522975649727114]], [[0.41585788320633293, -0.8442439669373654, -0.33810404502905406, -2.1958217103993904], [-0.9024806625262576, -0.33722921470025374, -0.26796475611321924, 3.3361402256946855], [0.11220906710830068, 0.41656761881177296, -0.9021532819960107, 1.1866474075867592]], [[0.4551683838917117, -0.8559279551874116, -0.24537538147520732, -2.342928255782132], [-0.8878235517622312, -0.41530437781282264, -0.19822112578078147, 3.3054776813645668], [0.06775753273034596, 0.30807403217116497, -0.9489464196992868, 1.3557974931725807]], [[0.521415140798544, -0.8265320361172986, -0.2120637739403574, -2.634548145102267], [-0.8484943575740477, -0.475863269591056, -0.2315415164049724, 2.9258127982208104], [0.09046312017081168, 0.30066416801125867, -0.9494300827143929, 1.1741007053682986]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.4672338102827446, -0.88174620449133, -0.06493225233889302, -2.5255020871809526], [-0.883867536369974, -0.46402946533029454, -0.058777831335917685, 2.955459544668111], [0.02169665135316868, 0.08485450000096817, -0.9961571006370654, 1.0430446698892197]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.477935665378087, -0.8510986556649696, 0.2172753508451588, -2.6631015277667864], [-0.8783768838109234, -0.46465602732029304, 0.11202154373840237, 3.0467718788690075], [0.005616916077065506, -0.2443887366475895, -0.969661072567925, 0.8777848295633116]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[-0.6631842087797091, -0.7344131973787482, -0.1443050960332145, 1.8739284135961733], [-0.3058542303029013, 0.4418937441839601, -0.8433167309243312, 2.8524334033332734], [0.6831104559520745, -0.5151380148727183, -0.5176803363099124, -1.9628747792842451]], [[-0.7365694771158138, -0.6389742054291416, -0.22175971270168474, 2.327929652760032], [-0.21504409453362885, 0.5320995121651524, -0.8189176677541024, 2.5975442530252204], [0.6412655010115142, -0.5555016417165695, -0.5293358888859208, -1.8821261642518912]], [[-0.7179546483876009, -0.6615711801807417, -0.21648255452321488, 2.116191377223944], [-0.2541399667714379, 0.5386539022698142, -0.8032837922296907, 2.662512472343387], [0.648038579212726, -0.5217044633926005, -0.5548607507548088, -1.8018723593986585]], [[-0.7676813788711347, -0.6201939167670615, -0.16132205720125387, 2.332898758321334], [-0.31509430105060876, 0.584515204718837, -0.7477015159125494, 2.903105440462529], [0.5580151270171281, -0.5231648698619081, -0.644141007049257, -1.3488039102372265]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]]}}"
  },
  {
    "path": "VQ3D/data/mapping_vq2d_to_vq3d_queries_annotations_test.json",
    "content": "{\"13e70b53-abc6-46d3-96da-d30b8327b223\": {\"c1d2ee0f-a206-471a-84ba-55015139baf8\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"a70bea55-d052-4650-b0e3-9f2e9ec69700\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"ed33c3c9-2e63-47ec-a3d8-0408910a1bef\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"45219b12-3546-49ff-915a-e802739190c0\": {\"3eb5afd6-4adf-4801-b53a-d2090251d878\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"c474b461-e727-429f-b253-ac7ebc10097a\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}}, \"46d00bf5-ed73-4e5f-84eb-9c880eec10d8\": {\"2337fc5e-4798-45a9-af6e-64476df3be46\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"cac8a35c-026b-4c17-8f95-9cfbcfca1979\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"e8c55e7d-8767-43fd-b74f-01ffaa9f02f8\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"17940429-cddd-4146-a7be-d50c815919fe\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"526d389b-a187-4c63-a5c6-c36bd66266b6\": {\"95ebdc21-8a19-4d5b-b620-eeb082362fe0\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"058464f1-2c8d-4c71-8e76-bbc053a9f1b3\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"b69ae0ef-cb54-43a1-bc66-84449063f99e\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"d407ae63-1969-4593-adde-c88ee56b0eb4\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"e806ab3b-b1c0-4d2e-9055-a04a22630963\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}}, \"542bd8e2-37a1-49be-8f4c-0fedeb1cc9f1\": {\"ab35e7a4-ff70-4eb3-a82d-03e00e6c601c\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"1ee9157c-60da-4f7a-a573-938e609bab6d\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"d51751f0-300a-41f0-9b69-5aa9cf04379a\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"5b4ee633-78b9-4282-b001-5a85373d549e\": {\"bbad791f-88e7-4163-8c42-c6c8364d3221\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"759daf88-1e43-4f09-8486-725ca9d8971d\": {\"0\": {}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"7bca86ab-7327-4a38-8d2f-0a668da52f5d\": {\"20b16edf-9cdd-440b-9ebf-811d0e2647ac\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"fa2ef57b-25cc-41a8-9acc-16497a7cc206\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"0b8b281c-d26b-4059-9bb5-7ea96e57aa6e\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"90e4acc5-28a2-4bd4-972c-c6f7e18e1cde\": {\"71242aba-94a8-48dc-a20d-9c0e15880031\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"2a1f16d0-c365-4c02-ac28-845d12e6937c\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"de80ae71-3857-4b04-87b8-1c6ad4662a72\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"8ad65552-a6e2-4942-b245-12d60c3c6d23\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"bc653dc7-24f1-4e5e-9e20-9b43192dff5a\": {\"2e4044a3-23a8-4116-b38a-7df6fa9bab5b\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"cfb10a75-e20d-444c-a23e-aaff7c9a85bd\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"296c2734-64bd-44c0-994f-7558d6d872bc\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"58b9bc16-f59a-494a-b4c0-c4eb6d030d74\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"598eb006-db55-4fca-9150-4d143bf22849\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"39afe671-501e-4937-818e-a6e4a6097bfc\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"21f0a7b1-f613-4021-ae2d-a13e3ad681a1\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"71de512d-417a-44d5-ad37-0bed8ce309ce\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"05725fca-9b6c-43b1-b20f-8e05ab01824a\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"8cdf4663-b3ce-4795-84d7-12be2f939fc7\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"679d0e71-9e19-4a00-8feb-1c07b021a469\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}}, \"c1a20696-b0bc-42fb-bd9b-ebb4bd4aebb8\": {\"0260c617-dc20-415f-a0fd-436dd7058016\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"c0b6deed-de35-43d0-b83f-1cdccd0461ad\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"e6bf00da-3164-4eba-9408-be90db0838af\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"c53d79b9-097a-45e6-9603-22f1a63fece8\": {\"44762176-18a4-4a27-9478-0cd386c92eee\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"5e3785e3-5c83-4ace-8fbb-5fafb16e708e\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}}, \"e989b029-509c-42de-801c-2d6d547967d2\": {\"20aee5ce-0d40-462a-bfed-8053b2a097c7\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"2\": {\"1\": {\"ai\": 2, \"qset_id\": \"1\"}, \"3\": {\"ai\": 2, \"qset_id\": \"3\"}, \"2\": {\"ai\": 2, \"qset_id\": \"2\"}}, \"3\": {\"1\": {\"ai\": 3, \"qset_id\": \"1\"}, \"3\": {\"ai\": 3, \"qset_id\": \"3\"}}}}, \"d680fc86-1484-4f8d-9a5b-90fc4f473aee\": {\"2f9c862d-5607-4a07-b5ad-b9a2636f5053\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"f66f3e1e-de66-45a2-b33c-b11eed3d9c48\": {\"f81268f3-02f3-4be9-a79b-18598180ac97\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"17607d8a-806f-4990-b5e7-756b6389c826\": {\"93618381-50bd-4f3d-899c-a37844966a5f\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"634a5fae-5d81-460e-b82b-b5aaa4d77cb3\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"66fc3efa-aa5a-4bf4-b2ad-dd3860818cc4\": {\"2062924c-434a-4bb6-845c-5d3dfa4798c8\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"13f84b98-d741-4631-93b5-a647f1d055f3\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {}, \"2\": {}, \"3\": {\"1\": {\"ai\": 3, \"qset_id\": \"1\"}, \"2\": {\"ai\": 3, \"qset_id\": \"2\"}, \"3\": {\"ai\": 3, \"qset_id\": \"3\"}}}}, \"6da9db5b-6920-4714-8490-ff77e9c9dfb8\": {\"6d78e2d3-a06b-4a0c-9afc-b04f2e9bf225\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"0f52e4ce-0752-473c-bcb6-fe4dbac43b19\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"a02ca803-1c12-4cfc-a502-b8a508e16bc7\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"9850388d-567c-4463-91f2-5abe0abded76\": {\"0\": {}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"81c0ebb5-53e4-450b-a9e6-d04803c3014e\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"6f140645-1904-4493-862d-06929ec947db\": {\"a97419c5-7e52-42a3-851c-632b29324481\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"c5c0dc6e-f414-490c-b9ec-1d36852e95d1\": {\"fe71c340-80b3-42f2-8f41-e8d779731e14\": {\"0\": {}, \"1\": {}, \"2\": {\"3\": {\"ai\": 2, \"qset_id\": \"3\"}, \"2\": {\"ai\": 2, \"qset_id\": \"2\"}}}, \"e682e089-41ef-480e-96e5-ae381742b039\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"1bcb2c95-018b-4bd7-a54a-549a0e687d88\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"2\": {\"3\": {\"ai\": 2, \"qset_id\": \"3\"}, \"2\": {\"ai\": 2, \"qset_id\": \"2\"}}, \"3\": {\"1\": {\"ai\": 3, \"qset_id\": \"1\"}, \"3\": {\"ai\": 3, \"qset_id\": \"3\"}}}, \"ac4a0311-ab6a-44c0-ab28-baff98e78878\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"dc5ac6b6-64a6-4673-be16-d4a2a1059aea\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}}, \"dea11d9b-46ad-4561-a9a7-a9c2f453723f\": {\"321438d9-df74-41db-a7fa-478c411b63f3\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"62a39ddf-a093-4be4-8ba9-1cc6e250d242\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"e677256c-21dc-41c1-ab2d-ebd598cfe9be\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"c16d8009-4518-4b08-9f77-9de382ae4dfd\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"88a4a1a2-c61f-4a66-991d-a0d0538b0fe4\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"2\": {\"2\": {\"ai\": 2, \"qset_id\": \"2\"}, \"3\": {\"ai\": 2, \"qset_id\": \"3\"}}}, \"4788e9ec-cb06-4002-82c5-f0e3adb8f37d\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"b0bc5753-96c9-42bb-adb2-89e8c6b9e89a\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"6f83579e-75fa-4409-b4a5-7b73463eb217\": {\"5b5a2203-d229-4120-b3f7-f1db3b8aaa91\": {\"0\": {}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"2\": {\"2\": {\"ai\": 2, \"qset_id\": \"2\"}}}}, \"047c5e54-444f-463e-b677-be38e706a9ea\": {\"85c440c7-a8c4-4501-b7f0-aaa4913b0e1d\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}}"
  },
  {
    "path": "VQ3D/data/mapping_vq2d_to_vq3d_queries_annotations_train.json",
    "content": "{\"11f51f72-c0bd-4631-aabb-6ecbe17d95c9\": {\"8e525a99-786e-480e-93c9-feacfdf4ec61\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"358ec512-524b-42ef-9b10-1df4ddad5661\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"1ea5b82f-85ab-4b05-8c55-9cc9ce9b542a\": {\"6b7ceb0a-f012-4506-bc4e-a50d7536b9ef\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"2dbb7845-1de0-4e26-877a-035c051d12a5\": {\"0c08ebfa-5373-457c-8bc6-6f5c267e03b3\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"95acbace-bd51-4d60-bc66-814945588be0\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"3837916b-c0e8-4359-8a73-524d40660731\": {\"22ffbd28-748d-47ec-b2f3-9b58f590285e\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"94827d75-45cb-46e1-9c5d-8f2c991849ee\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"4fe76a25-2a6d-44bb-ab28-2dcf796572cd\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"507cf5d4-152a-4e8a-8407-d485f6e35b88\": {\"0\": {}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"60faf711-ca36-4c72-8ed3-49755ce45a56\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"83900c13-afc6-4911-8a08-371a6be0cdb4\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"3863821d-786d-4ce1-8cd3-5c56953d4ff7\": {\"43f2b0fa-ca53-4616-89a7-c50dd06cc281\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"b11d6270-aedb-4cf7-9785-cef161d04c63\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"3dedfa92-4e30-47ed-9611-aa4f79a32a13\": {\"8f830ea8-da9f-4552-a519-84cd9c819fe4\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"4189532b-10c0-4d17-b084-45fefc6f77a7\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"f7f4171d-745b-491e-875c-221b918617cc\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"c7653a1d-2645-4f39-9a6f-73c834a23739\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"3fc288bb-1082-4ec5-96a7-75bb61144b11\": {\"94978ed1-1d58-498c-96b5-e9b29410e01b\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"d77b9d16-1cda-4a75-ac25-c61964ea2fe8\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"3fffb452-1c17-43fa-b473-c9e19ac21433\": {\"e008ffbb-1fd0-4cf1-a9d3-690542ef21b5\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"a22e3deb-69a6-443f-83bb-406445e9062a\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"ae65eb84-db95-4912-97fc-93dcba293932\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"61576b93-d1a6-4fd1-806e-67811428f349\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"990c1b63-5864-47bd-b45c-44b7a616c2d7\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"45a39fe0-4674-40a7-84f2-ec24d301b73b\": {\"adeb8af8-5ad5-41d3-bc17-d8d06a8d05d7\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"83ca2bb7-5674-4bde-af9b-2056bdb3ac8d\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"52d248bf-0d93-4418-a767-c4dd3cc2d668\": {\"ebd43cf4-ee34-411d-9d28-ce8afe28f882\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"7dbcc836-cf84-4093-9600-bc71a8e69fa2\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"91647c85-6673-4be8-a12d-9a72046a2996\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"17378d44-a657-4384-891c-346b256bbe34\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"1ffcb567-c864-4611-84bb-d4d76f2405f5\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"5938b2fb-70a3-4303-827b-4e9de1541ccd\": {\"eb88d9fb-b35c-4b09-bff8-1f97f3e315c5\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"94d3e48c-cff8-4a50-ae68-d4b49e226a49\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"6767f3a8-9a7e-4978-8939-5a988bd44c7e\": {\"b6a6c500-5e85-4699-8169-5e3e2528c838\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}}, \"6f85ad9d-72b1-496b-8477-59a0e2cf8967\": {\"2d129b76-232b-4df4-a885-c279be452d82\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"dfad5aaf-eca9-4424-833d-2a35efd3d3d1\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"cdd6616c-a0e6-4c46-81d1-1f9d4c42dda8\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"559df73c-5382-4fd1-9d39-9e2c5b0cd23a\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"5d9ab95a-a9a7-443f-a6cc-4cce8d45fb3e\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"69da2eca-e152-4366-9a1c-ca53c2b87f23\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"6acb2e7b-1ac6-42a6-8187-66755223d0c8\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"70c31020-9fed-4e76-b127-2c10487317ff\": {\"b6eaea86-7140-4151-9f8d-54185a3ca4d6\": {\"0\": {\"2\": {\"ai\": 2, \"qset_id\": \"2\"}, \"3\": {\"ai\": 2, \"qset_id\": \"3\"}, \"1\": {\"ai\": 2, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"2\": {\"1\": {\"ai\": 3, \"qset_id\": \"1\"}, \"2\": {\"ai\": 3, \"qset_id\": \"2\"}, \"3\": {\"ai\": 3, \"qset_id\": \"3\"}}, \"3\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"70c8bd4f-bfe1-4fb5-82ad-7d763cc28935\": {\"503d5009-1300-4963-98fc-e026043e162a\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"75141dec-d6b3-4e2e-a144-5a126abf7dac\": {\"c72dce47-2ba7-4840-ae05-e23139bbb841\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"1b79cd27-02e5-4a36-9d51-9c9c93d30d1d\": {\"0\": {}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"354f0f61-f347-4434-a3d2-68550ba2d4c9\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"b8132cc3-21aa-490c-919f-4a493b865c24\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"7bb47140-606f-4775-b5a1-fc8cb5ed118c\": {\"dc3736a4-6620-4d5f-a9f8-701be0f4ff17\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"a0799dcb-b14e-48d4-819a-4ee882bccb87\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}}, \"7d683e6b-ba5f-4c3f-9358-13ba16799993\": {\"ae1c7722-2162-4557-a5a0-15e4b4a2bf5d\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"8c3e4a8e-f4dd-44f8-be1f-3b4d4d503556\": {\"4c6d1568-70f5-4e3b-9906-d6a5f34bd698\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"a40d9c7a-6b43-4837-be7b-15190838475d\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"a4528822-10e4-4e2d-8912-f6638d14572d\": {\"7ebe4e31-36b8-4e5b-8efb-db35397151b9\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"2\": {\"3\": {\"ai\": 2, \"qset_id\": \"3\"}, \"1\": {\"ai\": 2, \"qset_id\": \"1\"}, \"2\": {\"ai\": 2, \"qset_id\": \"2\"}}}}, \"b5410470-6cb6-43ea-8233-4824ba6a27b0\": {\"9de6abeb-4566-4ea5-b4b7-1c825e1edc52\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"f08f7975-bb9e-4ef2-989f-29de6949ddeb\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"79a7887f-d765-4aea-adf3-526f201ac226\": {\"0\": {}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"d6ada08c-d359-4f18-85e8-fa7635c3b347\": {\"0\": {}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"1673a05f-d422-415e-8e76-d6dc0f80246d\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"df127353-03e4-44dd-a973-91aed209120a\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"c037be7a-e56b-4053-a48b-c593bf069ef4\": {\"98d97751-3415-42d4-a83c-6a8801554b97\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"d0b0c9ad-09ea-4680-b493-5e7435412754\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"c3361017-8999-4dfb-88cd-90f1f13d58b2\": {\"286f9de0-8e55-4403-a119-65e88748480b\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}}, \"cd087f89-9c3e-4224-a11c-3fa89405d057\": {\"487ad389-d35c-4b05-a8e6-9f78df10d7d9\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"615200e4-9ed5-4f72-819f-0e6e4216f67f\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"a501037b-d904-460b-8101-3c9cd936681f\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"b7ff9c3c-6601-4597-b9bf-2da4dfce344a\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"30c0d003-96f6-4adb-93a7-b9090c3b2300\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"4d2e760d-f390-48b4-9e11-76cf04c15583\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"e55b572f-a526-4fcf-88c0-3dfa5e7090b9\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"377d4958-9e16-43b8-9ec4-041bee39ab5c\": {\"0\": {}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"172e5a39-084d-4715-915b-51327e15d05c\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"e5a9f6d7-e7df-4209-a825-0a391c4815ba\": {\"eccfd4b3-78be-4a72-8918-696b5e83a13a\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"07d51556-b587-4a2f-9e3a-e927f17099e9\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"efb57fdb-d4df-490b-9bef-bc8bf8128a04\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"f0a5b497-94d3-47ec-8bd6-427d91d15adf\": {\"654f6ab4-3602-4e2c-bc3e-f7ace2daac36\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"932fdaa7-f53d-47b2-a26d-6cbaa078f54a\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"ad789bf8-4bf4-49d8-8685-d4f093c7baef\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"c1d773d7-fcdb-4d34-878a-2791c23af9d5\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"900a437a-e67a-40de-95c2-84f2ff3b4d2d\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"75673c36-7622-40c4-bfd8-d65b580e07e6\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"f1fdd432-588f-43c7-bacc-96d630e5371f\": {\"f70fe5cc-5ac1-4ff2-94ab-8dd44e5db5f0\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"53cd2834-1592-44b1-a224-c3c11ce824a5\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"8d2fb416-3cc0-48b2-b761-014e848c31ea\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"0c4ecbde-0957-4cfe-9ae2-532d0f23eda3\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"c0007b04-7682-4848-8f2a-26144d16eecc\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"f938bcd9-bf30-4dfb-9a99-d6b9ee53c046\": {\"1b160124-9552-44be-99c8-43f16d112a41\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"fa8a5802-fc36-488d-b646-9831f6afeea5\": {\"afef7677-c5b0-48ef-ac7c-65ab53b2237d\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"0c24b196-6dc8-44f5-b365-acc16ebd494d\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"23bbce66-5157-48c6-8592-3e565504f86f\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"acf1942e-74a1-4a69-b480-bd8c8573cbd1\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"463f5337-19ae-46d8-afa4-af0da97ffddb\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"e85ba9f4-352d-45f1-bf01-dcfd69772c03\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}}, \"0e61fde0-18ed-44df-8328-816a4756f77e\": {\"993d1c8e-f8fe-4398-8c5c-d5f906d8607e\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"5bd5f3d9-b20d-4e6b-ba74-ea26a94f7a25\": {\"446cf8e8-61c5-4dc4-b48b-f9c616920bec\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"9567030a-6a75-45b2-80c2-9af812271e7c\": {\"f34125d8-6d39-4aad-bf00-55c62fc729f1\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"4c642620-db0e-4096-9ece-2b2c6fdb47b0\": {\"1c89109e-80d1-4093-8aa2-81559da4ce7b\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"69c40eb5-5260-48ae-8f4a-df54ca8e1380\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"ff6dc7c8-17ad-45b6-8f84-045409dfffe2\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"952a6bf1-bf81-4f38-83d7-142f97aaf172\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"099fa5c9-7ff8-4814-8283-8841bc652aff\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"019061c0-6d2d-4a35-a972-b6224ee38f49\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"053398fd-fcc4-47fc-af69-99366b13a505\": {\"6a5d9dc9-63b1-43a2-803f-0f68ad7dc2f5\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"c4a2cb40-d05b-4818-9d8e-da2633043d2c\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"2d1bf98e-a133-4f63-bc1d-91f718078a52\": {\"138a1b88-d7ea-435c-9dcf-319e0fd6f073\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"500af7c6-bbd2-4f2f-86d0-0c10cb6f67eb\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"b208fe4d-d4b1-4c5f-ae89-4b6a93d759e2\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"3fa54ca6-3988-4a7f-9295-41236f4ee925\": {\"f2044a58-0a77-43d7-85b3-bfedf2f66c09\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}}, \"8e23dc43-7025-4548-a2bd-0f7d85631602\": {\"9a27d4b0-a950-43df-a8bb-3177260a48da\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"94e90faf-8de6-47bf-86e1-6a05c090d9db\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"94d37084-c200-439b-84ab-28dc95b37388\": {\"0\": {}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"98dc31a1-edbb-42d6-8d1c-0b43fe6f9c28\": {\"26c315c1-8a58-49e3-934a-c7e11b74ffe1\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"2\": {\"ai\": 2, \"qset_id\": \"2\"}, \"3\": {\"ai\": 2, \"qset_id\": \"3\"}}, \"2\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"5dc56f6b-704f-4b09-a23f-c1e172badf51\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"e87d3ed4-7ffd-4e46-b724-ef3929e66261\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"b0f8ab26-96ea-4c96-8371-922fe32a9115\": {\"66e37e80-c845-4591-bd38-d5d971b206dc\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"0796f997-d027-4aff-b0c8-a11ddd08b4be\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"524a9cd6-1637-4da2-8a51-8942c8831207\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"74bc2257-8ff9-43be-9a37-20657288675d\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"cd7e0800-a530-4c64-8e04-24ebe887e676\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"02050a6c-29aa-47a1-bd4f-909a3c507320\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"3f9ce77b-d99b-4312-aa18-5b2fe301f1b1\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"d3f790a9-1145-4b66-802f-80c6cfe7e61c\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"0a678fea-9136-48a4-9b8d-a656fdc4f671\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"b5d0eb9a-2064-4dc0-a123-b220b1046995\": {\"2082350d-b7d7-4833-91f4-5dd9c492a21f\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"4273b0e9-e871-42b2-ad83-ece59d24a5f1\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"b6ae365a-dd70-42c4-90d6-e0351778d991\": {\"22d9f13a-4de8-4ea5-8fb4-2ddd26c26023\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"f8fade62-e630-443c-94a5-4c95512b0083\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}}, \"c7715af7-8687-41b7-94ec-51e526450637\": {\"fde80021-195f-43f8-b616-a751b45435cd\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {}, \"2\": {\"2\": {\"ai\": 2, \"qset_id\": \"2\"}}}}, \"ca904341-e8f2-4d13-953f-fd7c8e276973\": {\"34a6b28b-6396-4462-be94-d5c276c43965\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"1b3392eb-0751-4734-bdfa-330ec988816c\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"6d59384c-a5e6-4a09-bb55-bcfb2d4a660c\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"28eade70-81ac-4004-ac18-bfb0a92bbfaf\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"d02bd0da-e84e-40b8-81d7-47106f1911ae\": {\"1202de14-bdc1-44bb-abd1-031b92903c42\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"248d42c3-70ed-4111-b292-eedb99c088c0\": {\"0\": {}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"2\": {\"1\": {\"ai\": 2, \"qset_id\": \"1\"}, \"3\": {\"ai\": 2, \"qset_id\": \"3\"}}}, \"e7c55830-dd2c-4ed1-8659-108092e9e3ff\": {\"0\": {}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"5eb05107-300f-4203-bad7-fb6ccf05725d\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"d46c28a9-e94e-492e-bf12-07d253f65328\": {\"774af66d-537c-4aad-a956-076883b65c64\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"840259ab-bb2f-43ad-860e-87eed878013f\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"5650d9ef-3271-47a5-b01b-cde09f86f292\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"aad12dd8-c0f2-4281-b5b6-87814bc0312a\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"53cd1010-8b2a-4b52-8174-77fa45c88fdc\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"9b540829-1907-4fc1-9c36-d61488f4ba19\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"a493e0a6-15d6-4a58-b762-5cc1c76abe17\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"ef7f97bc-ab9b-47ff-81da-a0d0ad82e3f3\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"ec21be6d-f8a2-4112-bc26-a1fc620af9cc\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"da32ff6e-27b2-47e6-b38f-dbf7a36b5f4d\": {\"1267487c-249c-45a9-ac7e-8d729c4365d5\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"19d37e19-fdfd-4f45-947c-d6d4ce0d0988\": {\"0\": {}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}}, \"dabcf717-b9f8-4547-b395-2745e2a45356\": {\"9694dabe-c2b8-4e45-8a44-367287c1d5b9\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"2\": {\"1\": {\"ai\": 2, \"qset_id\": \"1\"}, \"2\": {\"ai\": 2, \"qset_id\": \"2\"}}}}, \"f5899434-95bc-4cd3-bd42-b8464fbf3d9c\": {\"4495c013-b711-4676-a183-ccea758fda99\": {\"0\": {}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"2\": {\"3\": {\"ai\": 2, \"qset_id\": \"3\"}}, \"3\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"4\": {\"3\": {\"ai\": 4, \"qset_id\": \"3\"}, \"1\": {\"ai\": 4, \"qset_id\": \"1\"}}}, \"3ec9a814-2977-4aba-8bda-014de78c886f\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}}, \"f93bf4f8-08d1-4f94-8b5f-92fdd6b37e30\": {\"111d203c-e9bc-4b19-bc01-6f087b0cc12c\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 3, \"qset_id\": \"1\"}, \"2\": {\"ai\": 3, \"qset_id\": \"2\"}, \"3\": {\"ai\": 3, \"qset_id\": \"3\"}}, \"2\": {\"1\": {\"ai\": 2, \"qset_id\": \"1\"}, \"2\": {\"ai\": 2, \"qset_id\": \"2\"}, \"3\": {\"ai\": 2, \"qset_id\": \"3\"}}, \"3\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"1953891d-6925-44b7-893c-27e1fa3c3696\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"3622e30d-09de-4884-a826-0f90806f3401\": {\"0\": {}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"226c36e8-9934-4eb1-afc2-3c7a1db2cd87\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"10fe1e0a-bcd9-4bcb-9179-e9efc881aef6\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"2bcbd205-a879-4998-8f64-e0f3c676ed3d\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"2\": {\"3\": {\"ai\": 2, \"qset_id\": \"3\"}}}, \"685daa52-41c3-43ff-a2d7-f8783370faf2\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"f8c258cc-a304-4791-8880-0ae40980f476\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"c2988888-ddb1-4b03-8f92-07090058f5b5\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"666beb29-be82-4f5f-8556-644ed5af8d90\": {\"06fe9739-5895-41f4-8bc5-3dab2af8644e\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"a69ae4a8-8e1d-47c1-bbd0-de2bb4a33fca\": {\"83cfab12-27dc-4e00-8b2f-f040e7eddb13\": {\"0\": {}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"ac286cec-6b2d-4c66-8602-2f78ab0cf07b\": {\"0\": {\"2\": {\"ai\": 3, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 2, \"qset_id\": \"1\"}}}, \"81d5bdb0-1cd2-4ecf-93b9-f0a0d9c68604\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"6667265c-5d06-4072-b761-649eeab04fc9\": {\"b29961ee-ee24-4afb-8b25-fbf5117bc73d\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"6063ec2e-55df-425a-a2c7-56e66caf1b01\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}}"
  },
  {
    "path": "VQ3D/data/mapping_vq2d_to_vq3d_queries_annotations_val.json",
    "content": "{\"0066ab25-04ad-41b2-89ab-283d2bfa1c4b\": {\"6c641082-044e-46a7-ad5f-85568119e09e\": {\"0\": {}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"db6e91d9-3006-46dd-af29-b74f725fe284\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"20400762-1e47-462d-a7d1-64a1b162b1f9\": {\"f0f5f45c-1576-4408-8ed0-a80747a51bd5\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"bd365d25-88d0-4e4b-868a-59a01b134a42\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"307c3ec6-886e-4d25-9ef7-7bea3cf7a243\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"225a1ffe-3e7e-4ff8-a47e-2e80989077fe\": {\"33d909a9-e570-4ba3-ab66-31cf66d42d6f\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"ed808fab-fdda-4514-a00f-2fb87a7208ba\": {\"0\": {}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"66db02c4-053b-41ab-8b9f-f467ad1df560\": {\"0\": {}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}}, \"2763dbfc-8488-4264-b31f-4b12096c4c4b\": {\"f9cbfb3a-d2e2-4f30-9c01-ee341b5e8887\": {\"0\": {}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"42265e2f-1d83-4ad3-a466-085c64736d76\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}}, \"2fb3b1d4-1360-4a95-931b-936b4b962a42\": {\"b7d5cc1a-d5fe-49a6-9243-dea23a61b5e4\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"a044eb14-0f57-4128-9be8-4ab6fed911cf\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"3d2ad5e6-3fae-440e-a8ca-0758c2f9245b\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"53da674a-089d-428a-a719-e322b2de002b\": {\"9cfc44fe-5f79-46a6-8a4b-77ea495f3ef3\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"9a24e436-4b41-4316-8484-7b9e084d9ca5\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}}, \"1d2b62ed-fc94-4fb0-b547-8c50533b0b29\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}, \"fe3000d6-d857-4cd1-a927-0a91a7f9616e\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"72154f42-399c-4f95-a667-e26528d1f52a\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"b878975c-7136-48b5-aa4a-23950a604354\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"57e88d87-257e-434d-953e-6025367e99fe\": {\"87499bfb-3dcf-46fa-aef3-204fcc0496e0\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"ba779301-79f4-4a7b-bb23-f7fbff508c5c\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"f91c7008-f21c-4047-bfc1-d937787665e5\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1\": {\"f1350714-1aa5-421b-a268-690110ca9c06\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"150bc185-821c-487f-b39c-4c5a0d52467d\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"af33167f-658d-4c19-a35e-aaaf95efd3d0\": {\"fe3d5a3a-a878-4b62-b99c-d1427eff1705\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"5a7efdba-6701-4aaa-bff6-fbab6b293ed9\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}, \"1839af1c-6999-4bc4-87f7-550dd9be4b91\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"dbabe8c7-ceea-4042-b5a2-575d2223dfd7\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}, \"b34643f2-eb18-492c-a446-f18c02c4198f\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"cb83eaff-62e9-4aff-bcdc-e3d747103020\": {\"cdac7d6f-1cb5-4f6a-9a6d-0213e055827c\": {\"0\": {\"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"38473fe0-8311-44f0-a976-46a1eef5c6d6\": {\"75a9383b-09d7-49bd-81c8-2a9880da6db3\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"e14e03f8-13e4-4df2-87b0-e1ad8a175f7c\": {\"159ac0ad-e5ec-449d-a69e-556655f79b2a\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"dfe962ab-6aa7-4888-9378-796817a30ab6\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"b3d7a127-2aa6-42d2-88ce-fb023625117e\": {\"0\": {\"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"d5935c29-1b8d-417d-9bbb-5ebd47e9256d\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}}}, \"6269fa52-58af-46d3-9a4b-7aca66c3b622\": {\"6836bfae-e56b-457d-bade-1160256d4d9f\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}, \"1eb995af-0fdd-4f0f-a5ba-089d4b8cb445\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}, \"887a1aaa-2b7e-41d4-86c6-fa0c9d1015a0\": {\"89f8409e-483a-432f-9f42-6c96ecd07b76\": {\"0\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"e30fa220-83a0-4601-938e-6acb14211b72\": {\"0\": {}, \"1\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}}}, \"9c785597-7d3e-4831-a8b9-9e640e3bbb83\": {\"8d9b71b3-da22-41d2-bc2f-a0a1a6fd9c8a\": {\"0\": {\"1\": {\"ai\": 1, \"qset_id\": \"1\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}, \"3\": {\"ai\": 1, \"qset_id\": \"3\"}}, \"1\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}}}}, \"bedaa131-deae-4279-9fd4-5b6ab552644c\": {\"efe7dfaa-07e0-42d5-85eb-1e6f93409ab5\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}, \"477894c0-9bec-4271-9852-6d28bc05abfe\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}}, \"1\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"1\": {\"ai\": 1, \"qset_id\": \"1\"}}}}, \"fdcdf464-a350-452d-9741-f6725e138192\": {\"ad9083b3-9b0b-4c27-a941-38f57be13edf\": {\"0\": {\"3\": {\"ai\": 0, \"qset_id\": \"3\"}}, \"1\": {\"2\": {\"ai\": 3, \"qset_id\": \"2\"}, \"1\": {\"ai\": 3, \"qset_id\": \"1\"}, \"3\": {\"ai\": 3, \"qset_id\": \"3\"}}, \"2\": {\"3\": {\"ai\": 1, \"qset_id\": \"3\"}, \"2\": {\"ai\": 1, \"qset_id\": \"2\"}}, \"3\": {\"1\": {\"ai\": 2, \"qset_id\": \"1\"}}}, \"151a8f90-fdec-4693-89d4-1a6e6459a612\": {\"0\": {\"1\": {\"ai\": 0, \"qset_id\": \"1\"}, \"2\": {\"ai\": 0, \"qset_id\": \"2\"}, \"3\": {\"ai\": 0, \"qset_id\": \"3\"}}}}}"
  },
  {
    "path": "VQ3D/data/scan_to_intrinsics.json",
    "content": "{\"unict_Baker_32\": {\"('1920', '1080')\": {\"f\": 1068.25, \"cx\": 960.0, \"cy\": 540.0, \"k1\": 0.314531, \"k2\": 0.220343}}, \"unict_Scooter mechanic_31\": {\"('1440', '1080')\": {\"f\": 713.514, \"cx\": 720.0, \"cy\": 540.0, \"k1\": 0.0591923, \"k2\": 0.00218839}, \"('1920', '1080')\": {\"f\": 1029.585, \"cx\": 960.0, \"cy\": 540.0, \"k1\": 0.305522, \"k2\": 0.225765}}, \"unict_Bike mechanic_34\": {\"('1440', '1080')\": {\"f\": 639.412, \"cx\": 720.0, \"cy\": 540.0, \"k1\": 0.0666615, \"k2\": -0.00314502}}, \"unict_Carpenter_33\": {\"('1920', '1080')\": {\"f\": 1073.82, \"cx\": 960.0, \"cy\": 540.0, \"k1\": 0.252175, \"k2\": 0.310945}}}"
  },
  {
    "path": "VQ3D/data/vq3d_results/siam_rcnn_residual_kys_val.json",
    "content": "{\"version\": \"1\", \"date\": \"220202\", \"description\": \"VQ3D annotations (val)\", \"manifest\": \"s3://ego4d-consortium-sharing/public/v1/full_scale/manifest.csv\", \"videos\": [{\"video_uid\": \"0066ab25-04ad-41b2-89ab-283d2bfa1c4b\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"6c641082-044e-46a7-ad5f-85568119e09e\", \"annotations\": [{}, {\"query_sets\": {\"3\": {\"object_title\": \"binding wire\", \"3d_annotation_1\": {\"position\": {\"x\": -2.846816749527613, \"y\": 0.6058122059511082, \"z\": 0.9545435628776114}, \"rotation\": {\"x\": 1.5494502414591307, \"y\": 0.05659019721851919, \"z\": 0.013247277315638243}, \"dimension\": {\"x\": 0.09708485372702313, \"y\": 0.016916472210307794, \"z\": 0.10497203143554086}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.8178239974513026, \"y\": 0.48332526315218693, \"z\": 0.9524374064725778}, \"rotation\": {\"x\": -1.3740250181771042e-16, \"y\": -2.146247625021836e-17, \"z\": -0.03712541388677795}, \"dimension\": {\"x\": 0.0871588858196023, \"y\": 0.09055398496085776, \"z\": 0.020202978689107615}}, \"gt_3d_vec_world_1\": [-2.846816749527613, 0.6058122059511082, 0.9545435628776114], \"gt_3d_vec_world_2\": [-2.8178239974513026, 0.48332526315218693, 0.9524374064725778]}, \"1\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": -3.1510895508999206, \"y\": 0.27606473955317834, \"z\": 0.9612866153304188}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.5964843737973902}, \"dimension\": {\"x\": 0.15851036017692008, \"y\": 0.0295411891980655, \"z\": 0.02602521443996536}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.125495674166561, \"y\": 0.4172387195846527, \"z\": 0.9561225043498838}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.7699512325855914}, \"dimension\": {\"x\": 0.19009210754132358, \"y\": 0.0327444021621371, \"z\": 0.01694754053982256}}, \"gt_3d_vec_world_1\": [-3.1510895508999206, 0.27606473955317834, 0.9612866153304188], \"gt_3d_vec_world_2\": [-3.125495674166561, 0.4172387195846527, 0.9561225043498838]}, \"2\": {\"object_title\": \"long nose pliers\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9607804455379805, \"y\": 0.5899238763135373, \"z\": 0.9645545046704452}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.5066778241791384}, \"dimension\": {\"x\": 0.201847224461333, \"y\": 0.1061068181919246, \"z\": 0.02857142857142864}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9551853034251128, \"y\": 0.47389768851799097, \"z\": 0.9597182952833714}, \"rotation\": {\"x\": -3.127071919852101, \"y\": -3.1116980490842603, \"z\": -0.4758787067059798}, \"dimension\": {\"x\": 0.17507705736660137, \"y\": 0.0669491454287736, \"z\": 0.020443656525337205}}, \"gt_3d_vec_world_1\": [-2.9607804455379805, 0.5899238763135373, 0.9645545046704452], \"gt_3d_vec_world_2\": [-2.9551853034251128, 0.47389768851799097, 0.9597182952833714]}}}]}, {\"clip_uid\": \"db6e91d9-3006-46dd-af29-b74f725fe284\", \"annotations\": [{\"query_sets\": {\"2\": {\"object_title\": \"plastic bowl\", \"3d_annotation_1\": {\"position\": {\"x\": -3.0096081093789393, \"y\": 0.32342994354847077, \"z\": 0.96918225096992}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.030520476318910195}, \"dimension\": {\"x\": 0.04442348047619853, \"y\": 0.04215712936053115, \"z\": 0.03678651180939202}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9838576212922887, \"y\": 0.33123798811891064, \"z\": 0.9747427978136407}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.02727551362849787}, \"dimension\": {\"x\": 0.046027741333753654, \"y\": 0.04574575323182523, \"z\": 0.048052814197754035}}, \"gt_3d_vec_world_1\": [-3.0096081093789393, 0.32342994354847077, 0.96918225096992], \"gt_3d_vec_world_2\": [-2.9838576212922887, 0.33123798811891064, 0.9747427978136407]}, \"1\": {\"object_title\": \"pair of pliers\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9199585334898117, \"y\": 0.426850583124861, \"z\": 0.958214653924108}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.332548703756876}, \"dimension\": {\"x\": 0.14892040611997331, \"y\": 0.05545583700927792, \"z\": 0.020794312578149156}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.954817990295925, \"y\": 0.47568972716021596, \"z\": 0.9573096352947758}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.46764044403552435}, \"dimension\": {\"x\": 0.16298048108734314, \"y\": 0.06005339862596662, \"z\": 0.01768118159140068}}, \"gt_3d_vec_world_1\": [-2.9199585334898117, 0.426850583124861, 0.958214653924108], \"gt_3d_vec_world_2\": [-2.954817990295925, 0.47568972716021596, 0.9573096352947758]}, \"3\": {\"object_title\": \"screwdriver\", \"3d_annotation_1\": {\"position\": {\"x\": -3.239585690737215, \"y\": -0.07971254431497544, \"z\": 0.9659686998876078}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.2013849555498624}, \"dimension\": {\"x\": 0.1397383752519128, \"y\": 0.045172935037134626, \"z\": 0.03549786204521649}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.171006723453137, \"y\": -0.15377868087217, \"z\": 0.9603439957110353}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.25107449444277}, \"dimension\": {\"x\": 0.11401216310608187, \"y\": 0.039956922319764644, \"z\": 0.02405500143649114}}, \"gt_3d_vec_world_1\": [-3.239585690737215, -0.07971254431497544, 0.9659686998876078], \"gt_3d_vec_world_2\": [-3.171006723453137, -0.15377868087217, 0.9603439957110353]}}}, {\"query_sets\": {\"2\": {\"object_title\": \"shoe\", \"3d_annotation_1\": {\"position\": {\"x\": -1.2237390141165216, \"y\": 1.677589278329767, \"z\": 0.34063239251533595}, \"rotation\": {\"x\": 1.6693725387593058e-14, \"y\": 1.6490952486602554e-14, \"z\": -1.5553673478996484}, \"dimension\": {\"x\": 0.26543846732402565, \"y\": 0.4730902483101104, \"z\": 0.07540643370504937}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.249234249104026, \"y\": 1.6724856535541943, \"z\": 0.36317829801481016}, \"rotation\": {\"x\": 1.5129575478623905, \"y\": 1.5145809227573641, \"z\": -1.3330562568667448}, \"dimension\": {\"x\": 0.28592605943403343, \"y\": 0.474083063285823, \"z\": 0.12260154691426556}}, \"gt_3d_vec_world_1\": [-1.2237390141165216, 1.677589278329767, 0.34063239251533595], \"gt_3d_vec_world_2\": [-1.249234249104026, 1.6724856535541943, 0.36317829801481016]}, \"3\": {\"object_title\": \"rack\", \"3d_annotation_1\": {\"position\": {\"x\": -0.6852297306973831, \"y\": 1.8376242156765321, \"z\": 0.41900580410855565}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.5495439044417898}, \"dimension\": {\"x\": 0.20734481813117467, \"y\": 0.34814276089502216, \"z\": 0.18859321409773722}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.670977331333593, \"y\": 1.9084821691572964, \"z\": 0.41629351100539563}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.5592975614750875}, \"dimension\": {\"x\": 0.25848901173548683, \"y\": 0.3504035745439206, \"z\": 0.2}}, \"gt_3d_vec_world_1\": [-0.6852297306973831, 1.8376242156765321, 0.41900580410855565], \"gt_3d_vec_world_2\": [-0.670977331333593, 1.9084821691572964, 0.41629351100539563]}}}]}]}, {\"video_uid\": \"20400762-1e47-462d-a7d1-64a1b162b1f9\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"f0f5f45c-1576-4408-8ed0-a80747a51bd5\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"spanner\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9454540539562486, \"y\": 0.11145441374906541, \"z\": 0.9563474142177344}, \"rotation\": {\"x\": -3.6751995842967284e-16, \"y\": -9.085062446130007e-17, \"z\": -0.15671425174012746}, \"dimension\": {\"x\": 0.14647588939974163, \"y\": 0.036232937540659156, \"z\": 0.015495062037964745}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9153465093920485, \"y\": 0.05008200567638188, \"z\": 0.9524663609620047}, \"rotation\": {\"x\": 6.886595529826681e-16, \"y\": -1.0472440494765333e-16, \"z\": -0.0517363917364381}, \"dimension\": {\"x\": 0.10658649968388918, \"y\": 0.02045659961854332, \"z\": 0.010006791415280686}}, \"gt_3d_vec_world_1\": [-2.9454540539562486, 0.11145441374906541, 0.9563474142177344], \"gt_3d_vec_world_2\": [-2.9153465093920485, 0.05008200567638188, 0.9524663609620047]}, \"3\": {\"object_title\": \"pliers\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9700483923096286, \"y\": 0.1749415120963608, \"z\": 0.9767229078946662}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.20526159265649618}, \"dimension\": {\"x\": 0.19812647806259767, \"y\": 0.07605067160125127, \"z\": 0.028091780352435192}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.967146400178336, \"y\": 0.1528400108291064, \"z\": 0.9611227541019904}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.25614565329398786}, \"dimension\": {\"x\": 0.1219360633963673, \"y\": 0.05146476262177619, \"z\": 0.012111632855486056}}, \"gt_3d_vec_world_1\": [-2.9700483923096286, 0.1749415120963608, 0.9767229078946662], \"gt_3d_vec_world_2\": [-2.967146400178336, 0.1528400108291064, 0.9611227541019904]}, \"2\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": -3.03538069476187, \"y\": 0.32860447160632683, \"z\": 0.9615240198765317}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.30588222151743705}, \"dimension\": {\"x\": 0.14662697665312807, \"y\": 0.025564426384343045, \"z\": 0.026127706364769812}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9984430952122016, \"y\": 0.14648562947896238, \"z\": 0.9622766415288458}, \"rotation\": {\"x\": 1.5177275276974334, \"y\": -0.019168346079142497, \"z\": 0.2902931282184523}, \"dimension\": {\"x\": 0.16888147417994595, \"y\": 0.01928986942384679, \"z\": 0.029424754451651266}}, \"gt_3d_vec_world_1\": [-3.03538069476187, 0.32860447160632683, 0.9615240198765317], \"gt_3d_vec_world_2\": [-2.9984430952122016, 0.14648562947896238, 0.9622766415288458]}}}, {\"query_sets\": {\"2\": {\"object_title\": \"solder wire\", \"3d_annotation_1\": {\"position\": {\"x\": -3.1882088726265865, \"y\": -0.025422669616755742, \"z\": 1.1217916431033044}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.006283780592031342}, \"dimension\": {\"x\": 0.03547415171468542, \"y\": 0.040123885905905224, \"z\": 0.07848033659062023}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.0436537750236723, \"y\": -0.014241030926003543, \"z\": 1.1614856070023505}, \"rotation\": {\"x\": 0.0016690607488355769, \"y\": -0.07138617497411887, \"z\": 0.026207821904044887}, \"dimension\": {\"x\": 0.03432275314130528, \"y\": 0.03274596203886996, \"z\": 0.05861657251259249}}, \"gt_3d_vec_world_1\": [-3.1882088726265865, -0.025422669616755742, 1.1217916431033044], \"gt_3d_vec_world_2\": [-3.0436537750236723, -0.014241030926003543, 1.1614856070023505]}, \"1\": {\"object_title\": \"t handle screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": -3.0199240969190706, \"y\": 0.06842900905966494, \"z\": 0.9644242432817592}, \"rotation\": {\"x\": 1.5338226600326155, \"y\": 3.127700216058658, \"z\": -0.28565357986184386}, \"dimension\": {\"x\": 0.276070532661251, \"y\": 0.02225419137149999, \"z\": 0.09668771934997679}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9988139022571185, \"y\": 0.10065111790319248, \"z\": 0.9605507991349099}, \"rotation\": {\"x\": 3.1413106162624262, \"y\": 3.1401457586733317, \"z\": -0.2486624143003286}, \"dimension\": {\"x\": 0.1893122805502653, \"y\": 0.06745321990673465, \"z\": 0.01735123981636895}}, \"gt_3d_vec_world_1\": [-3.0199240969190706, 0.06842900905966494, 0.9644242432817592], \"gt_3d_vec_world_2\": [-2.9988139022571185, 0.10065111790319248, 0.9605507991349099]}}}]}, {\"clip_uid\": \"bd365d25-88d0-4e4b-868a-59a01b134a42\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": -3.042895768881385, \"y\": 0.3031305619030308, \"z\": 0.9602452255751129}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.16869215646021626}, \"dimension\": {\"x\": 0.15446739453456745, \"y\": 0.025184351709818715, \"z\": 0.024128799036986115}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.077956116143793, \"y\": 0.38739383289692925, \"z\": 0.9596948043756315}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.1707868689142831}, \"dimension\": {\"x\": 0.1516604265732316, \"y\": 0.03134894603029982, \"z\": 0.02316968776573619}}, \"gt_3d_vec_world_1\": [-3.042895768881385, 0.3031305619030308, 0.9602452255751129], \"gt_3d_vec_world_2\": [-3.077956116143793, 0.38739383289692925, 0.9596948043756315]}, \"2\": {\"object_title\": \"pliers\", \"3d_annotation_1\": {\"position\": {\"x\": -2.932760061480204, \"y\": 0.19066316314241127, \"z\": 0.9624690147785875}, \"rotation\": {\"x\": 3.1177404950674874, \"y\": 3.1311012608408273, \"z\": -0.5287132370319871}, \"dimension\": {\"x\": 0.19932986161078656, \"y\": 0.07641950367356955, \"z\": 0.024238183181853532}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.912291897811322, \"y\": 0.15854632603094018, \"z\": 0.9687239281635027}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.38175072080258377}, \"dimension\": {\"x\": 0.14267785989162668, \"y\": 0.07783455039561801, \"z\": 0.026273252929581874}}, \"gt_3d_vec_world_1\": [-2.932760061480204, 0.19066316314241127, 0.9624690147785875], \"gt_3d_vec_world_2\": [-2.912291897811322, 0.15854632603094018, 0.9687239281635027]}, \"3\": {\"object_title\": \"spanner\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9507001964001316, \"y\": -0.0395031763415849, \"z\": 0.9554698134260758}, \"rotation\": {\"x\": 3.1407948225251725, \"y\": 3.1409090169824454, \"z\": -0.8362926916814899}, \"dimension\": {\"x\": 0.15323618260426144, \"y\": 0.031400795524985474, \"z\": 0.012112289063561783}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.8926079189930487, \"y\": -0.16565931154658806, \"z\": 0.9544286560064851}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -0.9679447770163501}, \"dimension\": {\"x\": 0.12979229151190053, \"y\": 0.027905268687262244, \"z\": 0.013912980131715977}}, \"gt_3d_vec_world_1\": [-2.9507001964001316, -0.0395031763415849, 0.9554698134260758], \"gt_3d_vec_world_2\": [-2.8926079189930487, -0.16565931154658806, 0.9544286560064851]}}}, {\"query_sets\": {\"3\": {\"object_title\": \"bowl\", \"3d_annotation_1\": {\"position\": {\"x\": -3.204746363983289, \"y\": 0.3047415122630143, \"z\": 1.0098149269779495}, \"rotation\": {\"x\": 1.964823468272482e-16, \"y\": -2.784539557928499e-16, \"z\": -0.014009921288097065}, \"dimension\": {\"x\": 0.21088224998621743, \"y\": 0.20629077517083727, \"z\": 0.12055360824253297}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.2012186194318986, \"y\": 0.21313365073812646, \"z\": 1.0052492462184275}, \"rotation\": {\"x\": 3.1407228014181485, \"y\": 0.01999179598767713, \"z\": 0.021475791428125616}, \"dimension\": {\"x\": 0.149879463098867, \"y\": 0.16612491684488445, \"z\": 0.10264058058449098}}, \"gt_3d_vec_world_1\": [-3.204746363983289, 0.3047415122630143, 1.0098149269779495], \"gt_3d_vec_world_2\": [-3.2012186194318986, 0.21313365073812646, 1.0052492462184275]}, \"2\": {\"object_title\": \"tester\", \"3d_annotation_1\": {\"position\": {\"x\": -3.118145862892142, \"y\": 0.26336292485116364, \"z\": 0.9569795616509197}, \"rotation\": {\"x\": 1.7315486178168964e-16, \"y\": -1.3841545444531358e-16, \"z\": 0.5002552848663485}, \"dimension\": {\"x\": 0.15279207786368026, \"y\": 0.014404778732003328, \"z\": 0.014851952706363442}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.032778059259637, \"y\": 0.21894699186902972, \"z\": 0.9626325255964956}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.196318665723888}, \"dimension\": {\"x\": 0.14040521042799414, \"y\": 0.03154470548530682, \"z\": 0.02195752783481192}}, \"gt_3d_vec_world_1\": [-3.118145862892142, 0.26336292485116364, 0.9569795616509197], \"gt_3d_vec_world_2\": [-3.032778059259637, 0.21894699186902972, 0.9626325255964956]}, \"1\": {\"object_title\": \"container\", \"3d_annotation_1\": {\"position\": {\"x\": -2.8760438614163633, \"y\": -0.06182735439943378, \"z\": 0.9947219501857081}, \"rotation\": {\"x\": -1.5786694981841083, \"y\": -1.5689420602548128, \"z\": -0.011379286290932883}, \"dimension\": {\"x\": 0.0773285282104869, \"y\": 0.05031036932653831, \"z\": 0.05501185262534332}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.854173144183383, \"y\": 0.013873839870743306, \"z\": 0.9718943553185119}, \"rotation\": {\"x\": 0.0050472949638277805, \"y\": 0.06597541740668925, \"z\": 0.03402915044448147}, \"dimension\": {\"x\": 0.044086150609755306, \"y\": 0.036280859630030915, \"z\": 0.05036497901940051}}, \"gt_3d_vec_world_1\": [-2.8760438614163633, -0.06182735439943378, 0.9947219501857081], \"gt_3d_vec_world_2\": [-2.854173144183383, 0.013873839870743306, 0.9718943553185119]}}}]}, {\"clip_uid\": \"307c3ec6-886e-4d25-9ef7-7bea3cf7a243\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"plastic container\", \"3d_annotation_1\": {\"position\": {\"x\": -3.3691123417574365, \"y\": 0.13839041363770446, \"z\": 1.1927131218016747}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.02343225218296254}, \"dimension\": {\"x\": 0.06833851194260493, \"y\": 0.07038496158449263, \"z\": 0.09607022344144217}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.3476838715168658, \"y\": 0.17382597955945955, \"z\": 1.2051950782461747}, \"rotation\": {\"x\": 3.1254069900159105, \"y\": 3.1391638940594837, \"z\": -0.6711203778497326}, \"dimension\": {\"x\": 0.05592928895371381, \"y\": 0.06449754988768447, \"z\": 0.11093436315905673}}, \"gt_3d_vec_world_1\": [-3.3691123417574365, 0.13839041363770446, 1.1927131218016747], \"gt_3d_vec_world_2\": [-3.3476838715168658, 0.17382597955945955, 1.2051950782461747]}, \"1\": {\"object_title\": \"blowtorch\", \"3d_annotation_1\": {\"position\": {\"x\": -3.072797453934574, \"y\": -0.25434834615639335, \"z\": 1.1638615482564072}, \"rotation\": {\"x\": -1.576196755010691, \"y\": 3.141519707676051, \"z\": -0.01350771088853892}, \"dimension\": {\"x\": 0.05240375875448246, \"y\": 0.02333986230271102, \"z\": 0.0939092978391124}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.1600689814008334, \"y\": -0.15484154399806044, \"z\": 1.217888065721409}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.17165868661360975}, \"dimension\": {\"x\": 0.09628670038238459, \"y\": 0.16754328745153707, \"z\": 0.0691149971073331}}, \"gt_3d_vec_world_1\": [-3.072797453934574, -0.25434834615639335, 1.1638615482564072], \"gt_3d_vec_world_2\": [-3.1600689814008334, -0.15484154399806044, 1.217888065721409]}, \"2\": {\"object_title\": \"tape\", \"3d_annotation_1\": {\"position\": {\"x\": -2.8456491486512223, \"y\": -0.21879197732696862, \"z\": 0.9592160819291763}, \"rotation\": {\"x\": 3.2943918071221063e-16, \"y\": -1.1161261682895061e-17, \"z\": 0.04047761315267911}, \"dimension\": {\"x\": 0.04041206978698506, \"y\": 0.04165289865024629, \"z\": 0.02658481092753301}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.8281755307627754, \"y\": -0.2253468345454713, \"z\": 0.9569943231282564}, \"rotation\": {\"x\": -0.001682826685091207, \"y\": 0.05603773389114345, \"z\": 0.02785411396980117}, \"dimension\": {\"x\": 0.04482287152084994, \"y\": 0.048517446506245496, \"z\": 0.02309402373682483}}, \"gt_3d_vec_world_1\": [-2.8456491486512223, -0.21879197732696862, 0.9592160819291763], \"gt_3d_vec_world_2\": [-2.8281755307627754, -0.2253468345454713, 0.9569943231282564]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"pliers\", \"3d_annotation_1\": {\"position\": {\"x\": -2.8786123683942866, \"y\": 0.07207197089286407, \"z\": 0.9642525406611505}, \"rotation\": {\"x\": 0.12993208577068635, \"y\": 0.1589809617727064, \"z\": -1.4774372297398795}, \"dimension\": {\"x\": 0.12662095369896087, \"y\": 0.07952347183091568, \"z\": 0.03327568334017602}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.886042802490343, \"y\": 0.11621152028178827, \"z\": 0.9597128351487878}, \"rotation\": {\"x\": -0.08192596702599994, \"y\": -0.10514969986344336, \"z\": -1.4496877688380552}, \"dimension\": {\"x\": 0.1691151583974919, \"y\": 0.07199755022547742, \"z\": 0.025615902384941994}}, \"gt_3d_vec_world_1\": [-2.8786123683942866, 0.07207197089286407, 0.9642525406611505], \"gt_3d_vec_world_2\": [-2.886042802490343, 0.11621152028178827, 0.9597128351487878]}, \"3\": {\"object_title\": \"scissors\", \"3d_annotation_1\": {\"position\": {\"x\": -2.935695876768102, \"y\": 0.0831970219535814, \"z\": 0.9595747038881575}, \"rotation\": {\"x\": 1.4850430146057851, \"y\": 3.0670265252876994, \"z\": -0.6296074915603185}, \"dimension\": {\"x\": 0.15085382582334275, \"y\": 0.010337027973158538, \"z\": 0.0822681446845191}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9763813881026957, \"y\": 0.25024672107347107, \"z\": 0.9677702426781563}, \"rotation\": {\"x\": 3.0614298853359023, \"y\": 3.041749054439498, \"z\": -0.9305225086112268}, \"dimension\": {\"x\": 0.19620815043282813, \"y\": 0.0947592826337742, \"z\": 0.020478840068662907}}, \"gt_3d_vec_world_1\": [-2.935695876768102, 0.0831970219535814, 0.9595747038881575], \"gt_3d_vec_world_2\": [-2.9763813881026957, 0.25024672107347107, 0.9677702426781563]}}}]}]}, {\"video_uid\": \"225a1ffe-3e7e-4ff8-a47e-2e80989077fe\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"33d909a9-e570-4ba3-ab66-31cf66d42d6f\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"bottle\", \"3d_annotation_1\": {\"position\": {\"x\": -1.984893556924027, \"y\": -2.6498424351199548, \"z\": 0.26498118119449043}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.1376900077033878}, \"dimension\": {\"x\": 0.07716422631925494, \"y\": 0.07521781836726738, \"z\": 0.18267339927299253}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.9581457742120894, \"y\": -2.6749398575751178, \"z\": 0.26876604446849384}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.671778407478077}, \"dimension\": {\"x\": 0.08679328812144207, \"y\": 0.08802288662789673, \"z\": 0.2}}, \"gt_3d_vec_world_1\": [-1.984893556924027, -2.6498424351199548, 0.26498118119449043], \"gt_3d_vec_world_2\": [-1.9581457742120894, -2.6749398575751178, 0.26876604446849384]}, \"1\": {\"object_title\": \"dustbin\", \"3d_annotation_1\": {\"position\": {\"x\": -3.2944044191083144, \"y\": -1.4288667708172458, \"z\": 0.4083410370814427}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.004141324713114932}, \"dimension\": {\"x\": 0.5192271933885001, \"y\": 0.5277244721776224, \"z\": 0.7851850831175307}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.308140530150359, \"y\": -1.5691652827791618, \"z\": 0.34500217828326746}, \"rotation\": {\"x\": 0.05020974335648571, \"y\": -0.08604810957920697, \"z\": -0.012020067665093184}, \"dimension\": {\"x\": 0.4674580374186303, \"y\": 0.5112794519016375, \"z\": 0.6745633463072578}}, \"gt_3d_vec_world_1\": [-3.2944044191083144, -1.4288667708172458, 0.4083410370814427], \"gt_3d_vec_world_2\": [-3.308140530150359, -1.5691652827791618, 0.34500217828326746]}}}, {\"query_sets\": {\"3\": {\"object_title\": \"bottle\", \"3d_annotation_1\": {\"position\": {\"x\": -1.9715619329167688, \"y\": -2.57952188382427, \"z\": 0.22337936123190602}, \"rotation\": {\"x\": 1.7116193729240428e-15, \"y\": -1.453744418647036e-15, \"z\": 1.5385480375211962}, \"dimension\": {\"x\": 0.0685323100396776, \"y\": 0.050758627535624795, \"z\": 0.10342306282724013}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.9845860993078726, \"y\": -2.6493881210996024, \"z\": 0.2551100505483258}, \"rotation\": {\"x\": -0.04179413647330492, \"y\": 0.02467440866780609, \"z\": 0.6471943309100572}, \"dimension\": {\"x\": 0.06940652242865064, \"y\": 0.07148572420231947, \"z\": 0.16761077975451805}}, \"gt_3d_vec_world_1\": [-1.9715619329167688, -2.57952188382427, 0.22337936123190602], \"gt_3d_vec_world_2\": [-1.9845860993078726, -2.6493881210996024, 0.2551100505483258]}, \"1\": {\"object_title\": \"bin\", \"3d_annotation_1\": {\"position\": {\"x\": -3.3078701930944887, \"y\": -1.6347456476527498, \"z\": 0.3444819295581918}, \"rotation\": {\"x\": 1.603687424709392e-16, \"y\": 2.0070166445316653e-15, \"z\": 0.006036629688640622}, \"dimension\": {\"x\": 0.5212533810218147, \"y\": 0.5031080052762512, \"z\": 0.6640250457076476}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.340205899854933, \"y\": -1.7723511587681724, \"z\": 0.2363281455395884}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.0147292944588941}, \"dimension\": {\"x\": 0.45567533288256923, \"y\": 0.31296524286189936, \"z\": 0.3960466455113323}}, \"gt_3d_vec_world_1\": [-3.3078701930944887, -1.6347456476527498, 0.3444819295581918], \"gt_3d_vec_world_2\": [-3.340205899854933, -1.7723511587681724, 0.2363281455395884]}}}]}, {\"clip_uid\": \"ed808fab-fdda-4514-a00f-2fb87a7208ba\", \"annotations\": [{}, {\"query_sets\": {\"3\": {\"object_title\": \"battery\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9492827666631776, \"y\": 0.07658593810475378, \"z\": 1.0005829186910393}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.2295405187263142}, \"dimension\": {\"x\": 0.11374839003398778, \"y\": 0.1740137281636507, \"z\": 0.10561303805690431}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9627943830891934, \"y\": 0.03207563665946332, \"z\": 0.9851694692758327}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.23701469900058267}, \"dimension\": {\"x\": 0.07562791304150675, \"y\": 0.12079930326915767, \"z\": 0.07447351354719706}}, \"gt_3d_vec_world_1\": [-2.9492827666631776, 0.07658593810475378, 1.0005829186910393], \"gt_3d_vec_world_2\": [-2.9627943830891934, 0.03207563665946332, 0.9851694692758327]}, \"1\": {\"object_title\": \"bucket\", \"3d_annotation_1\": {\"position\": {\"x\": -2.991696645477867, \"y\": -0.7481631895099432, \"z\": 0.20316498431984564}, \"rotation\": {\"x\": -0.012181138855817288, \"y\": 0.024993256808175535, \"z\": -0.006292213491259594}, \"dimension\": {\"x\": 0.3537240199624398, \"y\": 0.37718274954898484, \"z\": 0.38673533261707127}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9941741654124283, \"y\": -0.7603616089692532, \"z\": 0.22664944754398159}, \"rotation\": {\"x\": -0.0036922799939385935, \"y\": 2.800101980674614e-15, \"z\": 0.006170592842654737}, \"dimension\": {\"x\": 0.358337523741401, \"y\": 0.34983671665853655, \"z\": 0.4259898804661534}}, \"gt_3d_vec_world_1\": [-2.991696645477867, -0.7481631895099432, 0.20316498431984564], \"gt_3d_vec_world_2\": [-2.9941741654124283, -0.7603616089692532, 0.22664944754398159]}, \"2\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": 0.592214900047479, \"y\": 0.5861538132608599, \"z\": 0.26703845577860696}, \"rotation\": {\"x\": -1.6516153899400845, \"y\": 3.036888830122749, \"z\": -1.0514418304324276}, \"dimension\": {\"x\": 0.3434486930798892, \"y\": 0.4810137238724852, \"z\": 0.32307287985983135}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.5816174553094742, \"y\": 0.5780275448293837, \"z\": 0.2477613663241897}, \"rotation\": {\"x\": 0.04577212286827536, \"y\": 0.03125037321990331, \"z\": -1.479520626895852}, \"dimension\": {\"x\": 0.32169218311968617, \"y\": 0.30383027353333164, \"z\": 0.4722795775681285}}, \"gt_3d_vec_world_1\": [0.592214900047479, 0.5861538132608599, 0.26703845577860696], \"gt_3d_vec_world_2\": [0.5816174553094742, 0.5780275448293837, 0.2477613663241897]}}}]}, {\"clip_uid\": \"66db02c4-053b-41ab-8b9f-f467ad1df560\", \"annotations\": [{}, {\"query_sets\": {\"2\": {\"object_title\": \"screwdriver\", \"3d_annotation_1\": {\"position\": {\"x\": -3.037067548786398, \"y\": 0.07723213139166192, \"z\": 0.9649845203962598}, \"rotation\": {\"x\": 3.0966792104823724, \"y\": 3.1316961723898338, \"z\": 0.20442350247334698}, \"dimension\": {\"x\": 0.2027546989309375, \"y\": 0.033677147255180694, \"z\": 0.021778910114402583}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.0900621769912253, \"y\": 0.13908962307142184, \"z\": 0.960122344761548}, \"rotation\": {\"x\": -3.139940224626529, \"y\": 3.129612134935194, \"z\": 0.18976787147252747}, \"dimension\": {\"x\": 0.17161389884842235, \"y\": 0.036550414449048885, \"z\": 0.018614632422095264}}, \"gt_3d_vec_world_1\": [-3.037067548786398, 0.07723213139166192, 0.9649845203962598], \"gt_3d_vec_world_2\": [-3.0900621769912253, 0.13908962307142184, 0.960122344761548]}, \"1\": {\"object_title\": \"dustbin\", \"3d_annotation_1\": {\"position\": {\"x\": -3.3052144804471597, \"y\": -1.5531217671442628, \"z\": 0.4051272577639289}, \"rotation\": {\"x\": 3.2577526591846183e-16, \"y\": 3.529150804711748e-16, \"z\": 0.0012121878534223445}, \"dimension\": {\"x\": 0.5106210050596254, \"y\": 0.5122196542790357, \"z\": 0.7777466153576873}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.3353406936691936, \"y\": -1.6441091954115195, \"z\": 0.3771574041369196}, \"rotation\": {\"x\": -0.006273711799332357, \"y\": -0.005204511130029777, \"z\": 0.0014151849751348586}, \"dimension\": {\"x\": 0.4562868926046379, \"y\": 0.41813330467761817, \"z\": 0.6584931122327343}}, \"gt_3d_vec_world_1\": [-3.3052144804471597, -1.5531217671442628, 0.4051272577639289], \"gt_3d_vec_world_2\": [-3.3353406936691936, -1.6441091954115195, 0.3771574041369196]}}}]}]}, {\"video_uid\": \"2763dbfc-8488-4264-b31f-4b12096c4c4b\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"f9cbfb3a-d2e2-4f30-9c01-ee341b5e8887\", \"annotations\": [{}, {\"query_sets\": {\"1\": {\"object_title\": \"dust bin\", \"3d_annotation_1\": {\"position\": {\"x\": -3.2967153495412234, \"y\": -2.048062138108253, \"z\": 0.4107549559754362}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.00708786805346253}, \"dimension\": {\"x\": 0.5304602382678335, \"y\": 0.5296687711450428, \"z\": 0.7828515048036977}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.3220448735659662, \"y\": -2.1486787609346125, \"z\": 0.32095349443048793}, \"rotation\": {\"x\": -0.0056988592044316545, \"y\": 6.342354232390115e-06, \"z\": 0.002676252881397541}, \"dimension\": {\"x\": 0.4847377510515109, \"y\": 0.4463427016704921, \"z\": 0.6242340527715249}}, \"gt_3d_vec_world_1\": [-3.2967153495412234, -2.048062138108253, 0.4107549559754362], \"gt_3d_vec_world_2\": [-3.3220448735659662, -2.1486787609346125, 0.32095349443048793]}, \"3\": {\"object_title\": \"screwdriver\", \"3d_annotation_1\": {\"position\": {\"x\": -0.7744286563576602, \"y\": -0.9687284352252984, \"z\": 0.015015337515720968}, \"rotation\": {\"x\": 3.1415926535897927, \"y\": 3.1415926535897922, \"z\": -1.2367548150310186}, \"dimension\": {\"x\": 0.25255688198715914, \"y\": 0.02739726769889001, \"z\": 0.02874954437201844}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.7830358046105684, \"y\": -0.9710933426288155, \"z\": 0.01955319031211808}, \"rotation\": {\"x\": -3.1415926535897927, \"y\": 3.1415926535897922, \"z\": -1.350515258770264}, \"dimension\": {\"x\": 0.24701800315613903, \"y\": 0.04585653743235587, \"z\": 0.036750146348406246}}, \"gt_3d_vec_world_1\": [-0.7744286563576602, -0.9687284352252984, 0.015015337515720968], \"gt_3d_vec_world_2\": [-0.7830358046105684, -0.9710933426288155, 0.01955319031211808]}, \"2\": {\"object_title\": \"spanner\", \"3d_annotation_1\": {\"position\": {\"x\": -3.014904195699354, \"y\": 0.14480298995438612, \"z\": 0.9573301043963081}, \"rotation\": {\"x\": 0.0174532925199433, \"y\": 3.491402344101605e-18, \"z\": -0.11220533216088384}, \"dimension\": {\"x\": 0.2509972367225619, \"y\": 0.03789374090062994, \"z\": 0.014797424113778105}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9617671136857777, \"y\": 0.05392957769274516, \"z\": 0.9655903312434988}, \"rotation\": {\"x\": 4.3415402531343384e-16, \"y\": 7.152124307716836e-16, \"z\": -0.06489913559942655}, \"dimension\": {\"x\": 0.163231105529211, \"y\": 0.03645025829720559, \"z\": 0.010055622089998533}}, \"gt_3d_vec_world_1\": [-3.014904195699354, 0.14480298995438612, 0.9573301043963081], \"gt_3d_vec_world_2\": [-2.9617671136857777, 0.05392957769274516, 0.9655903312434988]}}}]}, {\"clip_uid\": \"42265e2f-1d83-4ad3-a466-085c64736d76\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"basin\", \"3d_annotation_1\": {\"position\": {\"x\": -1.7181527038474966, \"y\": -0.927878506516436, \"z\": 0.04585784109869349}, \"rotation\": {\"x\": -2.0106065576307586, \"y\": -2.004903824450729, \"z\": -1.544951830676571}, \"dimension\": {\"x\": 0.24504075841003503, \"y\": 0.24663155517324617, \"z\": 0.092900058609783}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.67301862246077, \"y\": -0.9853453686064575, \"z\": 0.0766010183795729}, \"rotation\": {\"x\": -0.011353323921987821, \"y\": 2.7464143767571777e-13, \"z\": -1.5674581449547638}, \"dimension\": {\"x\": 0.27211555128842224, \"y\": 0.2702764991961878, \"z\": 0.14406424991384592}}, \"gt_3d_vec_world_1\": [-1.7181527038474966, -0.927878506516436, 0.04585784109869349], \"gt_3d_vec_world_2\": [-1.67301862246077, -0.9853453686064575, 0.0766010183795729]}, \"2\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": -0.6957865049452989, \"y\": -0.8463619456088076, \"z\": 0.015892971547354758}, \"rotation\": {\"x\": -3.1398167756242095, \"y\": 3.1330360032873776, \"z\": 0.20905825113556667}, \"dimension\": {\"x\": 0.2045178208389367, \"y\": 0.033804558530263554, \"z\": 0.030593960720936425}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.6862047811913993, \"y\": -0.8421016634088995, \"z\": 0.015522672230755355}, \"rotation\": {\"x\": -3.1408224617230425, \"y\": 3.1364163166897656, \"z\": 0.14934414340790236}, \"dimension\": {\"x\": 0.18472836790252672, \"y\": 0.04173172090615537, \"z\": 0.03138252267916536}}, \"gt_3d_vec_world_1\": [-0.6957865049452989, -0.8463619456088076, 0.015892971547354758], \"gt_3d_vec_world_2\": [-0.6862047811913993, -0.8421016634088995, 0.015522672230755355]}, \"3\": {\"object_title\": \"drilling machine\", \"3d_annotation_1\": {\"position\": {\"x\": -3.0532828130897345, \"y\": 0.6026188666324113, \"z\": 1.0690097115492754}, \"rotation\": {\"x\": -3.122803186633096, \"y\": 3.140174204994748, \"z\": 0.11178801957443206}, \"dimension\": {\"x\": 0.21542534857995368, \"y\": 0.10398439634414672, \"z\": 0.23020472307725423}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.095470593849956, \"y\": 0.7436124964403136, \"z\": 1.0841893185246378}, \"rotation\": {\"x\": 3.13895601423929, \"y\": -3.0668476703973253, \"z\": 0.13290763745697165}, \"dimension\": {\"x\": 0.25253876673374825, \"y\": 0.13130765913864462, \"z\": 0.24055286660704905}}, \"gt_3d_vec_world_1\": [-3.0532828130897345, 0.6026188666324113, 1.0690097115492754], \"gt_3d_vec_world_2\": [-3.095470593849956, 0.7436124964403136, 1.0841893185246378]}}}, {\"query_sets\": {\"3\": {\"object_title\": \"spanner\", \"3d_annotation_1\": {\"position\": {\"x\": -2.953623113385601, \"y\": 0.07791320452417913, \"z\": 0.9530989898871345}, \"rotation\": {\"x\": -1.5709774987033234, \"y\": 0.003545954466294965, \"z\": -0.13945698578936802}, \"dimension\": {\"x\": 0.19201803075251778, \"y\": 0.01000684819933909, \"z\": 0.029481295428778087}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9513689286593605, \"y\": 0.10499773907748779, \"z\": 0.9603367204238993}, \"rotation\": {\"x\": 1.5669679339838605, \"y\": -0.018950927552711837, \"z\": -0.15360265979553298}, \"dimension\": {\"x\": 0.1721980597005857, \"y\": 0.015610651088005424, \"z\": 0.03008320160244389}}, \"gt_3d_vec_world_1\": [-2.953623113385601, 0.07791320452417913, 0.9530989898871345], \"gt_3d_vec_world_2\": [-2.9513689286593605, 0.10499773907748779, 0.9603367204238993]}}}]}]}, {\"video_uid\": \"2fb3b1d4-1360-4a95-931b-936b4b962a42\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"b7d5cc1a-d5fe-49a6-9243-dea23a61b5e4\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"pliers\", \"3d_annotation_1\": {\"position\": {\"x\": -1.9669890109599697, \"y\": -3.5277269000663183, \"z\": 0.4519904606786592}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.31747849974591846}, \"dimension\": {\"x\": 0.12518762585806328, \"y\": 0.05901232027838495, \"z\": 0.014127179883576702}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.929149294100336, \"y\": -3.762836394986743, \"z\": 0.1931388069543592}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.46115140765370677}, \"dimension\": {\"x\": 0.12972955410014947, \"y\": 0.05916780812745456, \"z\": 0.02890297342383957}}, \"gt_3d_vec_world_1\": [-1.9669890109599697, -3.5277269000663183, 0.4519904606786592], \"gt_3d_vec_world_2\": [-1.929149294100336, -3.762836394986743, 0.1931388069543592]}, \"3\": {\"object_title\": \"chair\", \"3d_annotation_1\": {\"position\": {\"x\": -2.915305871777713, \"y\": -1.5626466231735265, \"z\": 0.1188114574301472}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.22224990198268937}, \"dimension\": {\"x\": 0.33520706623523877, \"y\": 0.30413946578270074, \"z\": 0.2203998743473719}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.917158275822684, \"y\": -1.5491823170922738, \"z\": 0.15020458220140928}, \"rotation\": {\"x\": -0.004690022715092933, \"y\": -0.002265210474652574, \"z\": -0.2213008736834837}, \"dimension\": {\"x\": 0.31051314732392793, \"y\": 0.2860298904118364, \"z\": 0.26661164546390315}}, \"gt_3d_vec_world_1\": [-2.915305871777713, -1.5626466231735265, 0.1188114574301472], \"gt_3d_vec_world_2\": [-2.917158275822684, -1.5491823170922738, 0.15020458220140928]}, \"2\": {\"object_title\": \"screwdriver\", \"3d_annotation_1\": {\"position\": {\"x\": -1.35340555635189, \"y\": -4.014685932396942, \"z\": 0.1883760141217039}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.5701146682282079}, \"dimension\": {\"x\": 0.20130046085633527, \"y\": 0.024595519862967558, \"z\": 0.02049563913630048}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.3668866093147303, \"y\": -4.020305421801629, \"z\": 0.18917222131461964}, \"rotation\": {\"x\": -0.26826587931089396, \"y\": 0.26838493407175334, \"z\": 1.531845982973675}, \"dimension\": {\"x\": 0.20950961288015685, \"y\": 0.039064369759734714, \"z\": 0.026198083067089446}}, \"gt_3d_vec_world_1\": [-1.35340555635189, -4.014685932396942, 0.1883760141217039], \"gt_3d_vec_world_2\": [-1.3668866093147303, -4.020305421801629, 0.18917222131461964]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"tissue paper\", \"3d_annotation_1\": {\"position\": {\"x\": -1.8896143954748044, \"y\": -2.572104705896006, \"z\": 0.5420667196757779}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.05399038032343513}, \"dimension\": {\"x\": 0.07265872358766087, \"y\": 0.08730248870605414, \"z\": 0.06594468944095161}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.992967934432897, \"y\": -3.1365803014679328, \"z\": 0.3449603226528847}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.016679170734309384}, \"dimension\": {\"x\": 0.07828235986562128, \"y\": 0.05849511740527113, \"z\": 0.059275861623752736}}, \"gt_3d_vec_world_1\": [-1.8896143954748044, -2.572104705896006, 0.5420667196757779], \"gt_3d_vec_world_2\": [-1.992967934432897, -3.1365803014679328, 0.3449603226528847]}, \"2\": {\"object_title\": \"tube\", \"3d_annotation_1\": {\"position\": {\"x\": -1.968445139059325, \"y\": -2.646030100420395, \"z\": 0.49812040657215684}, \"rotation\": {\"x\": 3.1304240144796913, \"y\": -3.136766646324295, \"z\": 0.015227156426187403}, \"dimension\": {\"x\": 0.05093614514672082, \"y\": 0.053640858076812375, \"z\": 0.037519259917709644}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.9158209131491228, \"y\": -3.1774393668709653, \"z\": 0.550653541769624}, \"rotation\": {\"x\": -3.0809689675497736, \"y\": -1.5832854367465106, \"z\": -0.025538539439914618}, \"dimension\": {\"x\": 0.03515493092144273, \"y\": 0.03298599071967163, \"z\": 0.029629826120422635}}, \"gt_3d_vec_world_1\": [-1.968445139059325, -2.646030100420395, 0.49812040657215684], \"gt_3d_vec_world_2\": [-1.9158209131491228, -3.1774393668709653, 0.550653541769624]}}}]}, {\"clip_uid\": \"a044eb14-0f57-4128-9be8-4ab6fed911cf\", \"annotations\": [{\"query_sets\": {\"2\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": -1.3588462825203171, \"y\": -3.770596809951106, \"z\": 0.5677089562760752}, \"rotation\": {\"x\": 0.21293437064374657, \"y\": -0.20924493627335838, \"z\": 1.533595320889065}, \"dimension\": {\"x\": 0.15791095473338332, \"y\": 0.03261758268347148, \"z\": 0.03253901933460465}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.3572507145999941, \"y\": -4.029210752009532, \"z\": 0.5025398561291267}, \"rotation\": {\"x\": 0.04076289282731102, \"y\": -0.04077062508210429, \"z\": 1.5535396685493938}, \"dimension\": {\"x\": 0.21338525012422077, \"y\": 0.0329469403108217, \"z\": 0.014696485623003155}}, \"gt_3d_vec_world_1\": [-1.3588462825203171, -3.770596809951106, 0.5677089562760752], \"gt_3d_vec_world_2\": [-1.3572507145999941, -4.029210752009532, 0.5025398561291267]}, \"1\": {\"object_title\": \"pliers\", \"3d_annotation_1\": {\"position\": {\"x\": -1.9593639030492325, \"y\": -3.4703712752754825, \"z\": 0.5624142978677287}, \"rotation\": {\"x\": 1.4111836451434753e-16, \"y\": -1.2382193202738843e-16, \"z\": -0.27497749611997}, \"dimension\": {\"x\": 0.16397176193894616, \"y\": 0.07871117365728122, \"z\": 0.027586833476851647}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.930139472472239, \"y\": -3.557291069062498, \"z\": 0.42225535694378546}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.4579030001213364}, \"dimension\": {\"x\": 0.15173903699804203, \"y\": 0.06659658771647313, \"z\": 0.028577983741445045}}, \"gt_3d_vec_world_1\": [-1.9593639030492325, -3.4703712752754825, 0.5624142978677287], \"gt_3d_vec_world_2\": [-1.930139472472239, -3.557291069062498, 0.42225535694378546]}, \"3\": {\"object_title\": \"chair\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9170964525770464, \"y\": -1.6182947661144191, \"z\": 0.11515565230903545}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.2527123414012642}, \"dimension\": {\"x\": 0.32834265190735756, \"y\": 0.3089939007050649, \"z\": 0.21922813479076894}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.8718807739949597, \"y\": -1.579468084729734, \"z\": 0.17463752348862793}, \"rotation\": {\"x\": -0.13305218817832346, \"y\": -0.1332609552623339, \"z\": -1.5144814960748176}, \"dimension\": {\"x\": 0.3423965342699474, \"y\": 0.3258219841742822, \"z\": 0.22793970011502962}}, \"gt_3d_vec_world_1\": [-2.9170964525770464, -1.6182947661144191, 0.11515565230903545], \"gt_3d_vec_world_2\": [-2.8718807739949597, -1.579468084729734, 0.17463752348862793]}}}]}, {\"clip_uid\": \"3d2ad5e6-3fae-440e-a8ca-0758c2f9245b\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"paint bucket\", \"3d_annotation_1\": {\"position\": {\"x\": -0.5503723331054945, \"y\": -4.402594427571053, \"z\": 0.10306969124442454}, \"rotation\": {\"x\": 3.1325610911072466, \"y\": -3.1384362195607722, \"z\": -0.16850170089155042}, \"dimension\": {\"x\": 0.14190579448325782, \"y\": 0.16798575167876842, \"z\": 0.19470552841930616}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.54421450540923, \"y\": -4.410468883681831, \"z\": 0.10755749911806928}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.029903989627359705}, \"dimension\": {\"x\": 0.1562238993059087, \"y\": 0.17570270736413812, \"z\": 0.2}}, \"gt_3d_vec_world_1\": [-0.5503723331054945, -4.402594427571053, 0.10306969124442454], \"gt_3d_vec_world_2\": [-0.54421450540923, -4.410468883681831, 0.10755749911806928]}}}]}]}, {\"video_uid\": \"53da674a-089d-428a-a719-e322b2de002b\", \"split\": \"val\", \"scan_uid\": \"unict_Baker_32\", \"clips\": [{\"clip_uid\": \"9cfc44fe-5f79-46a6-8a4b-77ea495f3ef3\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"disposable cup\", \"3d_annotation_1\": {\"position\": {\"x\": -2.5726098593332143, \"y\": -5.696568604495173, \"z\": 0.8825718514180932}, \"rotation\": {\"x\": 1.4027399823526183e-15, \"y\": 4.452351902008014e-15, \"z\": 0.015861167360569618}, \"dimension\": {\"x\": 0.05152427550251267, \"y\": 0.057058855784772204, \"z\": 0.08974358974358972}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.5565925699203524, \"y\": -5.7283654487630855, \"z\": 0.8809616814208934}, \"rotation\": {\"x\": -0.013100996270813311, \"y\": -0.025857748228705815, \"z\": 0.010562987968748733}, \"dimension\": {\"x\": 0.05168434076309165, \"y\": 0.04197340830480485, \"z\": 0.05606078781461783}}, \"gt_3d_vec_world_1\": [-2.5726098593332143, -5.696568604495173, 0.8825718514180932], \"gt_3d_vec_world_2\": [-2.5565925699203524, -5.7283654487630855, 0.8809616814208934]}, \"2\": {\"object_title\": \"dough cutter\", \"3d_annotation_1\": {\"position\": {\"x\": -0.28496551528518094, \"y\": -5.847778586616797, \"z\": 0.8803071741199265}, \"rotation\": {\"x\": 0.07708647395085055, \"y\": 0.0705645205780122, \"z\": -0.6486825054933107}, \"dimension\": {\"x\": 0.10504908206764971, \"y\": 0.14895662712225813, \"z\": 0.0106333198911161}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.3771687681136583, \"y\": -5.85302328107443, \"z\": 0.8729189775579025}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.5301925483441374}, \"dimension\": {\"x\": 0.11478567577452177, \"y\": 0.15948021625046924, \"z\": 0.016220733582558405}}, \"gt_3d_vec_world_1\": [-0.28496551528518094, -5.847778586616797, 0.8803071741199265], \"gt_3d_vec_world_2\": [-0.3771687681136583, -5.85302328107443, 0.8729189775579025]}, \"1\": {\"object_title\": \"hand mixer\", \"3d_annotation_1\": {\"position\": {\"x\": 1.2548338340180771, \"y\": -5.3586942927882015, \"z\": 1.2577419664599208}, \"rotation\": {\"x\": -1.525576285893298, \"y\": -1.5637827835565845, \"z\": 0.0008787477706437391}, \"dimension\": {\"x\": 0.44986295198064435, \"y\": 0.07180030446900593, \"z\": 0.127745825944038}}, \"3d_annotation_2\": {\"position\": {\"x\": 1.2556908377925575, \"y\": -5.356514981038329, \"z\": 1.2609735865071174}, \"rotation\": {\"x\": -1.534952018274011, \"y\": -1.5651387314449572, \"z\": 0.025005233068471928}, \"dimension\": {\"x\": 0.45137419327668715, \"y\": 0.07498183848124046, \"z\": 0.11404854244828251}}, \"gt_3d_vec_world_1\": [1.2548338340180771, -5.3586942927882015, 1.2577419664599208], \"gt_3d_vec_world_2\": [1.2556908377925575, -5.356514981038329, 1.2609735865071174]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"dough mixer\", \"3d_annotation_1\": {\"position\": {\"x\": -2.5558429858412364, \"y\": -6.611689098886093, \"z\": 0.657945338517641}, \"rotation\": {\"x\": 4.4498988621058016e-17, \"y\": -3.8660873837916686e-16, \"z\": 0.05720043502388118}, \"dimension\": {\"x\": 1.2292314115810314, \"y\": 0.8093449002720496, \"z\": 1.3148017051602894}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.5518602341847627, \"y\": -6.612950872870371, \"z\": 0.6583965153709359}, \"rotation\": {\"x\": -0.0018245466583950425, \"y\": 6.788490898813155e-21, \"z\": 0.060028741611316855}, \"dimension\": {\"x\": 1.224247676525045, \"y\": 0.8171752540411211, \"z\": 1.3141914483990034}}, \"gt_3d_vec_world_1\": [-2.5558429858412364, -6.611689098886093, 0.657945338517641], \"gt_3d_vec_world_2\": [-2.5518602341847627, -6.612950872870371, 0.6583965153709359]}, \"3\": {\"object_title\": \"jug\", \"3d_annotation_1\": {\"position\": {\"x\": -2.182185828240673, \"y\": -6.112867900339869, \"z\": 0.25148878744175895}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.021919909100139513}, \"dimension\": {\"x\": 0.24304925269700128, \"y\": 0.42879476023196594, \"z\": 0.49981936840802144}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.2204454434851506, \"y\": -6.124632324989225, \"z\": 0.15095232792670663}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.014941954747377022}, \"dimension\": {\"x\": 0.17497773716930393, \"y\": 0.2983713029776671, \"z\": 0.2832797285714965}}, \"gt_3d_vec_world_1\": [-2.182185828240673, -6.112867900339869, 0.25148878744175895], \"gt_3d_vec_world_2\": [-2.2204454434851506, -6.124632324989225, 0.15095232792670663]}}}]}, {\"clip_uid\": \"9a24e436-4b41-4316-8484-7b9e084d9ca5\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"bench scrapper\", \"3d_annotation_1\": {\"position\": {\"x\": -1.0014872398560182, \"y\": -7.65508818487237, \"z\": 0.9151543234805696}, \"rotation\": {\"x\": -0.0038325120838192126, \"y\": 0.00020338259552437027, \"z\": -0.24665220081874167}, \"dimension\": {\"x\": 0.13136304274893779, \"y\": 0.16224149394193332, \"z\": 0.011362271455439506}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9995396519683368, \"y\": -7.681342107891919, \"z\": 0.917137922997597}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.28375928595740946}, \"dimension\": {\"x\": 0.12239158458551332, \"y\": 0.1548247310591888, \"z\": 0.013274350068092328}}, \"gt_3d_vec_world_1\": [-1.0014872398560182, -7.65508818487237, 0.9151543234805696], \"gt_3d_vec_world_2\": [-0.9995396519683368, -7.681342107891919, 0.917137922997597]}, \"2\": {\"object_title\": \"dough mixer\", \"3d_annotation_1\": {\"position\": {\"x\": -2.5518962404557692, \"y\": -6.610015655476271, \"z\": 0.6588903887690177}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.05611323130765971}, \"dimension\": {\"x\": 1.2165311261338385, \"y\": 0.8108393610670998, \"z\": 1.310355020204236}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.554789991285, \"y\": -6.607760821277996, \"z\": 0.6651996467730302}, \"rotation\": {\"x\": 1.553373529093467, \"y\": 0.014734799008488354, \"z\": 0.03558154715450255}, \"dimension\": {\"x\": 1.2370240674721016, \"y\": 1.3137845424912542, \"z\": 0.8140418696755667}}, \"gt_3d_vec_world_1\": [-2.5518962404557692, -6.610015655476271, 0.6588903887690177], \"gt_3d_vec_world_2\": [-2.554789991285, -6.607760821277996, 0.6651996467730302]}, \"3\": {\"object_title\": \"eggs tray\", \"3d_annotation_1\": {\"position\": {\"x\": -2.394461450258868, \"y\": -4.8751114055949065, \"z\": 0.4522714675569288}, \"rotation\": {\"x\": 1.598937851388214, \"y\": -1.5691894908286474, \"z\": -0.009682095461233345}, \"dimension\": {\"x\": 0.05918679157885307, \"y\": 0.3576902476991195, \"z\": 0.30105061976877434}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.37725101380133, \"y\": -4.877694063542396, \"z\": 0.5690292360204099}, \"rotation\": {\"x\": 1.6687539109691223, \"y\": -1.569046006490432, \"z\": -0.01698148738744478}, \"dimension\": {\"x\": 0.05743050465602138, \"y\": 0.3073101205384489, \"z\": 0.3054354688781966}}, \"gt_3d_vec_world_1\": [-2.394461450258868, -4.8751114055949065, 0.4522714675569288], \"gt_3d_vec_world_2\": [-2.37725101380133, -4.877694063542396, 0.5690292360204099]}}}, {\"query_sets\": {\"2\": {\"object_title\": \"digital meter\", \"3d_annotation_1\": {\"position\": {\"x\": -1.3458431821654602, \"y\": -3.224809323444148, \"z\": 1.180531224553829}, \"rotation\": {\"x\": -3.0876446682042005, \"y\": 3.1397653474744893, \"z\": -0.013764887230800434}, \"dimension\": {\"x\": 0.017684532330071476, \"y\": 0.09940318943234401, \"z\": 0.04880757895447805}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.3466338660444037, \"y\": -3.268738394333268, \"z\": 0.966814784940665}, \"rotation\": {\"x\": 3.000382271151653, \"y\": -3.137952795388067, \"z\": -0.03679316425156749}, \"dimension\": {\"x\": 0.016169970196693088, \"y\": 0.10179701478139645, \"z\": 0.055951752645061525}}, \"gt_3d_vec_world_1\": [-1.3458431821654602, -3.224809323444148, 1.180531224553829], \"gt_3d_vec_world_2\": [-1.3466338660444037, -3.268738394333268, 0.966814784940665]}, \"1\": {\"object_title\": \"steel dough cutter\", \"3d_annotation_1\": {\"position\": {\"x\": -0.3699385022193936, \"y\": -7.629824948396303, \"z\": 0.9170161221695257}, \"rotation\": {\"x\": 0.006340132315184322, \"y\": -0.0008701262058504805, \"z\": 0.2522574653992101}, \"dimension\": {\"x\": 0.12122698449421541, \"y\": 0.14635497283302723, \"z\": 0.01666499729439729}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.980621392686062, \"y\": -7.673834912907068, \"z\": 0.9166402924588692}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.2411634183281557}, \"dimension\": {\"x\": 0.11148364624234706, \"y\": 0.15458783071155416, \"z\": 0.012113915879372376}}, \"gt_3d_vec_world_1\": [-0.3699385022193936, -7.629824948396303, 0.9170161221695257], \"gt_3d_vec_world_2\": [-0.980621392686062, -7.673834912907068, 0.9166402924588692]}, \"3\": {\"object_title\": \"bottle\", \"3d_annotation_1\": {\"position\": {\"x\": -2.844071856918012, \"y\": -6.069069978732795, \"z\": 1.3910531193202351}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.062482047109365536}, \"dimension\": {\"x\": 0.10093755626281689, \"y\": 0.09017668695474287, \"z\": 0.249131770387721}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.896681350972068, \"y\": -6.061689454206337, \"z\": 1.382508590043191}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.08263719010658171}, \"dimension\": {\"x\": 0.10383439303896089, \"y\": 0.08437010655698964, \"z\": 0.2494158670015541}}, \"gt_3d_vec_world_1\": [-2.844071856918012, -6.069069978732795, 1.3910531193202351], \"gt_3d_vec_world_2\": [-2.896681350972068, -6.061689454206337, 1.382508590043191]}}}]}, {\"clip_uid\": \"1d2b62ed-fc94-4fb0-b547-8c50533b0b29\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"bowl\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9606812093606445, \"y\": -5.2587122250036185, \"z\": 0.6073680832111804}, \"rotation\": {\"x\": 0.039961899296622756, \"y\": 0.02536254884800558, \"z\": -0.5905347922397137}, \"dimension\": {\"x\": 0.10052192614475575, \"y\": 0.10297091255875729, \"z\": 0.13367252814834057}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.95764265902148, \"y\": -5.279732709767118, \"z\": 0.6044738788206115}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.021456196999841578}, \"dimension\": {\"x\": 0.11832113961928617, \"y\": 0.12348080889875898, \"z\": 0.09904153354632578}}, \"gt_3d_vec_world_1\": [-2.9606812093606445, -5.2587122250036185, 0.6073680832111804], \"gt_3d_vec_world_2\": [-2.95764265902148, -5.279732709767118, 0.6044738788206115]}, \"2\": {\"object_title\": \"sack\", \"3d_annotation_1\": {\"position\": {\"x\": -2.3370787652074916, \"y\": -5.287718223046179, \"z\": 0.34835499468201564}, \"rotation\": {\"x\": 3.1415926535897922, \"y\": 3.141592653589792, \"z\": -1.3564239328395356}, \"dimension\": {\"x\": 0.3577225937054324, \"y\": 0.3646861080977397, \"z\": 0.6840262376322661}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.2893488291731448, \"y\": -5.27518883782338, \"z\": 0.29676143184054554}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -1.1097533813031881}, \"dimension\": {\"x\": 0.36836790663646807, \"y\": 0.3012046058781753, \"z\": 0.5864342721316146}}, \"gt_3d_vec_world_1\": [-2.3370787652074916, -5.287718223046179, 0.34835499468201564], \"gt_3d_vec_world_2\": [-2.2893488291731448, -5.27518883782338, 0.29676143184054554]}, \"1\": {\"object_title\": \"bucket\", \"3d_annotation_1\": {\"position\": {\"x\": -2.6147037147540644, \"y\": -6.039830774845816, \"z\": 0.5782030140160116}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.449677414504675}, \"dimension\": {\"x\": 0.3462543566118409, \"y\": 0.32329694791490615, \"z\": 0.3154783790763064}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.464165304360912, \"y\": -6.015916339739482, \"z\": 0.5832473276779018}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.5141635261749697}, \"dimension\": {\"x\": 0.35369877567797625, \"y\": 0.35179981623019735, \"z\": 0.33557141535815393}}, \"gt_3d_vec_world_1\": [-2.6147037147540644, -6.039830774845816, 0.5782030140160116], \"gt_3d_vec_world_2\": [-2.464165304360912, -6.015916339739482, 0.5832473276779018]}}}, {\"query_sets\": {\"3\": {\"object_title\": \"hot pot\", \"3d_annotation_1\": {\"position\": {\"x\": 0.36820999504243634, \"y\": -6.8949211741644785, \"z\": 0.7512166584321555}, \"rotation\": {\"x\": -3.1207717605789767, \"y\": 3.1415926535897922, \"z\": -0.059222660719823315}, \"dimension\": {\"x\": 0.24357571048265456, \"y\": 0.2182237886505158, \"z\": 0.08036018761151482}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.20750841983393728, \"y\": -6.905397480153547, \"z\": 0.7554631474042145}, \"rotation\": {\"x\": -3.1156263170588567, \"y\": -3.1172161309844224, \"z\": -0.16553672315087156}, \"dimension\": {\"x\": 0.21036498001577714, \"y\": 0.20532843743227866, \"z\": 0.08381173049068137}}, \"gt_3d_vec_world_1\": [0.36820999504243634, -6.8949211741644785, 0.7512166584321555], \"gt_3d_vec_world_2\": [0.20750841983393728, -6.905397480153547, 0.7554631474042145]}, \"1\": {\"object_title\": \"bucket\", \"3d_annotation_1\": {\"position\": {\"x\": -2.039244619838824, \"y\": -7.603942568610265, \"z\": 0.19891922200783085}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.03588266087469021}, \"dimension\": {\"x\": 0.3709279990654789, \"y\": 0.3776745645549664, \"z\": 0.3914133413308717}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.0421828152618917, \"y\": -7.881367530697455, \"z\": 0.19098043359878192}, \"rotation\": {\"x\": 0.0002001916472420793, \"y\": -0.004861901700855861, \"z\": 0.04118690487083204}, \"dimension\": {\"x\": 0.338309966901323, \"y\": 0.36327862268762695, \"z\": 0.3712947105012403}}, \"gt_3d_vec_world_1\": [-2.039244619838824, -7.603942568610265, 0.19891922200783085], \"gt_3d_vec_world_2\": [-2.0421828152618917, -7.881367530697455, 0.19098043359878192]}, \"2\": {\"object_title\": \"jug\", \"3d_annotation_1\": {\"position\": {\"x\": -2.91996929756339, \"y\": -5.623202553243651, \"z\": 0.6634506572567467}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.6001392209642721}, \"dimension\": {\"x\": 0.2110830502544179, \"y\": 0.18409782901411414, \"z\": 0.24298415096953468}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.94042963586428, \"y\": -5.615535699722578, \"z\": 0.7145205500105578}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.6766723933977405}, \"dimension\": {\"x\": 0.1970931422853151, \"y\": 0.16959113987450614, \"z\": 0.25115956093844205}}, \"gt_3d_vec_world_1\": [-2.91996929756339, -5.623202553243651, 0.6634506572567467], \"gt_3d_vec_world_2\": [-2.94042963586428, -5.615535699722578, 0.7145205500105578]}}}]}, {\"clip_uid\": \"fe3000d6-d857-4cd1-a927-0a91a7f9616e\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"jug\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9478854477091843, \"y\": -5.614967987514367, \"z\": 0.692068685464453}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.4503027283786399}, \"dimension\": {\"x\": 0.22645387922322882, \"y\": 0.1765606650514937, \"z\": 0.26633772155768354}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9179624169591256, \"y\": -5.569669741752094, \"z\": 0.6537983740786507}, \"rotation\": {\"x\": 3.1173020299978544, \"y\": 3.141592653589793, \"z\": -0.6752382073718833}, \"dimension\": {\"x\": 0.19577922752254093, \"y\": 0.14199536570201438, \"z\": 0.21998251736060248}}, \"gt_3d_vec_world_1\": [-2.9478854477091843, -5.614967987514367, 0.692068685464453], \"gt_3d_vec_world_2\": [-2.9179624169591256, -5.569669741752094, 0.6537983740786507]}, \"1\": {\"object_title\": \"red dough scraper\", \"3d_annotation_1\": {\"position\": {\"x\": -0.6365559226752547, \"y\": -5.972889721614927, \"z\": 0.8729042885874014}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 1.5495300955713904}, \"dimension\": {\"x\": 0.0895024121541748, \"y\": 0.15831423524283497, \"z\": 0.010713919311126252}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.6476443253316089, \"y\": -5.976396305211211, \"z\": 0.8798943931367504}, \"rotation\": {\"x\": -1.5718904625903747, \"y\": 1.5440247528933373, \"z\": -1.5567588945640038}, \"dimension\": {\"x\": 0.06815313089969448, \"y\": 0.14080551957997092, \"z\": 0.010000000000000035}}, \"gt_3d_vec_world_1\": [-0.6365559226752547, -5.972889721614927, 0.8729042885874014], \"gt_3d_vec_world_2\": [-0.6476443253316089, -5.976396305211211, 0.8798943931367504]}}}]}, {\"clip_uid\": \"72154f42-399c-4f95-a667-e26528d1f52a\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"weighing scale\", \"3d_annotation_1\": {\"position\": {\"x\": 0.16637765721269346, \"y\": -5.429341653886371, \"z\": 0.9229548677012408}, \"rotation\": {\"x\": -3.066349535767766, \"y\": -3.0675985999728743, \"z\": -1.4253477264907295}, \"dimension\": {\"x\": 0.36291854839589593, \"y\": 0.3689883767985528, \"z\": 0.11223991088159588}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.20321961301212474, \"y\": -5.48925586283602, \"z\": 0.9200009586530457}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.3983306667812605}, \"dimension\": {\"x\": 0.3014846269748069, \"y\": 0.35751511485960635, \"z\": 0.10710031590620947}}, \"gt_3d_vec_world_1\": [0.16637765721269346, -5.429341653886371, 0.9229548677012408], \"gt_3d_vec_world_2\": [0.20321961301212474, -5.48925586283602, 0.9200009586530457]}}}]}, {\"clip_uid\": \"b878975c-7136-48b5-aa4a-23950a604354\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"scrapper\", \"3d_annotation_1\": {\"position\": {\"x\": -1.6495279972148384, \"y\": -3.356835217264392, \"z\": 0.7476749549049351}, \"rotation\": {\"x\": 1.5744377282199544, \"y\": -0.009553623942112214, \"z\": -0.27750594330772227}, \"dimension\": {\"x\": 0.22838373446293506, \"y\": 0.024298742843691917, \"z\": 0.09771409835804322}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.6619081969138456, \"y\": -3.357440136235189, \"z\": 0.7438386854849}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.2141196587942011}, \"dimension\": {\"x\": 0.24320622467617226, \"y\": 0.11436028706166336, \"z\": 0.01755889801366156}}, \"gt_3d_vec_world_1\": [-1.6495279972148384, -3.356835217264392, 0.7476749549049351], \"gt_3d_vec_world_2\": [-1.6619081969138456, -3.357440136235189, 0.7438386854849]}, \"3\": {\"object_title\": \"gloves\", \"3d_annotation_1\": {\"position\": {\"x\": -1.594074497912425, \"y\": -3.1133610568379755, \"z\": 0.7577346655755479}, \"rotation\": {\"x\": 0.0027562162101411806, \"y\": -0.006917434328419641, \"z\": 0.409814856217591}, \"dimension\": {\"x\": 0.390685274101822, \"y\": 0.25822541835777535, \"z\": 0.04329738893248892}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.580662685007814, \"y\": -3.090475144175239, \"z\": 0.7534650989993088}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.24494486102978974}, \"dimension\": {\"x\": 0.41734131417295833, \"y\": 0.21026847468508814, \"z\": 0.02862853062670373}}, \"gt_3d_vec_world_1\": [-1.594074497912425, -3.1133610568379755, 0.7577346655755479], \"gt_3d_vec_world_2\": [-1.580662685007814, -3.090475144175239, 0.7534650989993088]}}}]}]}, {\"video_uid\": \"57e88d87-257e-434d-953e-6025367e99fe\", \"split\": \"val\", \"scan_uid\": \"unict_Baker_32\", \"clips\": [{\"clip_uid\": \"87499bfb-3dcf-46fa-aef3-204fcc0496e0\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"bowl\", \"3d_annotation_1\": {\"position\": {\"x\": -0.4856707557643677, \"y\": -8.063884947984022, \"z\": 0.9844164630116453}, \"rotation\": {\"x\": 3.1415926535897927, \"y\": -3.1415926535897927, \"z\": 1.5239050547917359}, \"dimension\": {\"x\": 0.29460979021211786, \"y\": 0.3118196790169269, \"z\": 0.14069310943941332}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.41096767169123616, \"y\": -8.02961266868055, \"z\": 1.024912889284178}, \"rotation\": {\"x\": -1.6430889971112668, \"y\": -3.073625382428312, \"z\": 1.4774658410862056}, \"dimension\": {\"x\": 0.23145072832937988, \"y\": 0.22728208236361858, \"z\": 0.27904584121388215}}, \"gt_3d_vec_world_1\": [-0.4856707557643677, -8.063884947984022, 0.9844164630116453], \"gt_3d_vec_world_2\": [-0.41096767169123616, -8.02961266868055, 1.024912889284178]}, \"2\": {\"object_title\": \"flour scoop\", \"3d_annotation_1\": {\"position\": {\"x\": 0.49341708636134557, \"y\": -7.877067787760469, \"z\": 0.9380296446891719}, \"rotation\": {\"x\": -0.01239758902609051, \"y\": -0.009701599618139746, \"z\": -0.9960764397795294}, \"dimension\": {\"x\": 0.18494713935565618, \"y\": 0.11015442574799256, \"z\": 0.055959902152556654}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.3396345957537419, \"y\": -7.793053061892059, \"z\": 0.9546285374779914}, \"rotation\": {\"x\": 3.421497592514414e-15, \"y\": 5.562631171768848e-15, \"z\": -1.1895105511032915}, \"dimension\": {\"x\": 0.19540988809731658, \"y\": 0.10735890486988188, \"z\": 0.09265175718849843}}, \"gt_3d_vec_world_1\": [0.49341708636134557, -7.877067787760469, 0.9380296446891719], \"gt_3d_vec_world_2\": [0.3396345957537419, -7.793053061892059, 0.9546285374779914], \"gt_3d_vec_1\": [-0.023547039481236764, -1.065573951673744, 8.377866949810453], \"gt_3d_vec_2\": [0.10364674547390018, -1.0430653839509927, 8.258292047469313]}, \"3\": {\"object_title\": \"dish\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9565856290300103, \"y\": -5.937955350157536, \"z\": 0.8779935458645155}, \"rotation\": {\"x\": 1.570987910147714, \"y\": -1.5198271176347495, \"z\": 0.7327407525076084}, \"dimension\": {\"x\": 0.07572577439167506, \"y\": 0.2686779719507147, \"z\": 0.18421145081350912}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.959106535670288, \"y\": -5.924608768713878, \"z\": 0.809699420028924}, \"rotation\": {\"x\": 1.6526333950971663, \"y\": -1.6902946678871804, \"z\": 0.6153953473801336}, \"dimension\": {\"x\": 0.07901028979000156, \"y\": 0.23998700900190062, \"z\": 0.12948866550895793}}, \"gt_3d_vec_world_1\": [-2.9565856290300103, -5.937955350157536, 0.8779935458645155], \"gt_3d_vec_world_2\": [-2.959106535670288, -5.924608768713878, 0.809699420028924]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"yellow bowl\", \"3d_annotation_1\": {\"position\": {\"x\": 0.46710341190772764, \"y\": -7.7737524711937995, \"z\": 0.9455180179752487}, \"rotation\": {\"x\": 3.119661598062743, \"y\": -3.116207405166157, \"z\": 0.8714337967442419}, \"dimension\": {\"x\": 0.14056024668977918, \"y\": 0.0964075736854744, \"z\": 0.0675205441077076}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.3692852553408925, \"y\": -7.916652619066088, \"z\": 0.9544150851404158}, \"rotation\": {\"x\": -1.942725598464744e-06, \"y\": 1.004975122999462e-05, \"z\": -0.6928275429408808}, \"dimension\": {\"x\": 0.22606236514888736, \"y\": 0.11934351058900178, \"z\": 0.08735074672386313}}, \"gt_3d_vec_world_1\": [0.46710341190772764, -7.7737524711937995, 0.9455180179752487], \"gt_3d_vec_world_2\": [0.3692852553408925, -7.916652619066088, 0.9544150851404158], \"pred_3d_vec_world\": [-3.9250199605432696, -1.1773728556311576, 1.1118919555655884]}, \"2\": {\"object_title\": \"dough cutter\", \"3d_annotation_1\": {\"position\": {\"x\": -0.5785269331939223, \"y\": -7.946049256222122, \"z\": 0.9192498003099533}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.9634411018923968}, \"dimension\": {\"x\": 0.13143754473744154, \"y\": 0.16871182217834585, \"z\": 0.016893524735056176}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.3626891957614791, \"y\": -7.79275368732289, \"z\": 0.9180304624326774}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.254281213839794}, \"dimension\": {\"x\": 0.0983586645948279, \"y\": 0.16563258311715706, \"z\": 0.015141889369915845}}, \"gt_3d_vec_world_1\": [-0.5785269331939223, -7.946049256222122, 0.9192498003099533], \"gt_3d_vec_world_2\": [-0.3626891957614791, -7.79275368732289, 0.9180304624326774], \"pred_3d_vec_world\": [-2.0349734088689484, -0.6912607494356522, 1.4546052736825508]}}}]}, {\"clip_uid\": \"ba779301-79f4-4a7b-bb23-f7fbff508c5c\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"dough cutter\", \"3d_annotation_1\": {\"position\": {\"x\": -0.4687444001389177, \"y\": -5.691371493195052, \"z\": 0.8733583433787138}, \"rotation\": {\"x\": 3.1415471597452487, \"y\": -0.007891681383489507, \"z\": -0.3910420808864493}, \"dimension\": {\"x\": 0.02015724555730624, \"y\": 0.2011136600637837, \"z\": 0.015896632308259287}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.481282217730311, \"y\": -5.716776532534149, \"z\": 0.8724544149922387}, \"rotation\": {\"x\": 3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.5733206722668824}, \"dimension\": {\"x\": 0.10991438879057763, \"y\": 0.19840650258701192, \"z\": 0.012841549220072968}}, \"gt_3d_vec_world_1\": [-0.4687444001389177, -5.691371493195052, 0.8733583433787138], \"gt_3d_vec_world_2\": [-0.481282217730311, -5.716776532534149, 0.8724544149922387]}, \"2\": {\"object_title\": \"bowl\", \"3d_annotation_1\": {\"position\": {\"x\": -0.4011559888969461, \"y\": -8.027754148863506, \"z\": 0.9633024743114464}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 1.496015336314424}, \"dimension\": {\"x\": 0.1658171167650971, \"y\": 0.17750543839949698, \"z\": 0.10512820512820514}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.403717838700962, \"y\": -8.059715905043852, \"z\": 0.9909554693954341}, \"rotation\": {\"x\": 3.1329720053257515, \"y\": -3.137839217658242, \"z\": 1.4917395848931272}, \"dimension\": {\"x\": 0.29510666735012886, \"y\": 0.2898030326217637, \"z\": 0.15955225515080257}}, \"gt_3d_vec_world_1\": [-0.4011559888969461, -8.027754148863506, 0.9633024743114464], \"gt_3d_vec_world_2\": [-0.403717838700962, -8.059715905043852, 0.9909554693954341]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"electronic beam balance\", \"3d_annotation_1\": {\"position\": {\"x\": 0.9306474752206313, \"y\": -5.334475602789527, \"z\": 0.9197940515516445}, \"rotation\": {\"x\": -3.123283087103474, \"y\": 3.141592653589793, \"z\": 0.004810006646032439}, \"dimension\": {\"x\": 0.44895860482810535, \"y\": 0.36511781790494247, \"z\": 0.1162058556252148}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.9742979911235816, \"y\": -5.340138472006652, \"z\": 0.9188702198670153}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": 0.006937542762333094}, \"dimension\": {\"x\": 0.5229367620767683, \"y\": 0.3604769341523878, \"z\": 0.10732418089873413}}, \"gt_3d_vec_world_1\": [0.9306474752206313, -5.334475602789527, 0.9197940515516445], \"gt_3d_vec_world_2\": [0.9742979911235816, -5.340138472006652, 0.9188702198670153], \"pred_3d_vec_world\": [-2.785831101349754, -0.4286979359599039, 2.089905750351924]}, \"2\": {\"object_title\": \"whine bottle\", \"3d_annotation_1\": {\"position\": {\"x\": 0.9005858858266211, \"y\": -5.652687248764036, \"z\": 1.0017870150866044}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 1.5185406116635358}, \"dimension\": {\"x\": 0.08181026743352494, \"y\": 0.07710670711661635, \"z\": 0.26478679753972084}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.8301496643374648, \"y\": -5.616404805909117, \"z\": 1.0211067414107373}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 1.5507792392621045}, \"dimension\": {\"x\": 0.1270446556291362, \"y\": 0.13058590002642562, \"z\": 0.30285020467208074}}, \"gt_3d_vec_world_1\": [0.9005858858266211, -5.652687248764036, 1.0017870150866044], \"gt_3d_vec_world_2\": [0.8301496643374648, -5.616404805909117, 1.0211067414107373]}, \"3\": {\"object_title\": \"towel\", \"3d_annotation_1\": {\"position\": {\"x\": 0.44612310094608776, \"y\": -6.665099578179033, \"z\": 1.0676272016076098}, \"rotation\": {\"x\": -3.0662263030026056, \"y\": -2.999061337936662, \"z\": -0.554103968527842}, \"dimension\": {\"x\": 0.36669044080595947, \"y\": 0.39342180916568387, \"z\": 0.06536969323066205}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.4698936847194921, \"y\": -6.6349156929983515, \"z\": 1.1066224859719582}, \"rotation\": {\"x\": -3.0820690808964835, \"y\": -3.043515247556664, \"z\": -0.5978954605007173}, \"dimension\": {\"x\": 0.48279015202429243, \"y\": 0.4211121560993929, \"z\": 0.08596496009630661}}, \"gt_3d_vec_world_1\": [0.44612310094608776, -6.665099578179033, 1.0676272016076098], \"gt_3d_vec_world_2\": [0.4698936847194921, -6.6349156929983515, 1.1066224859719582]}}}]}, {\"clip_uid\": \"f91c7008-f21c-4047-bfc1-d937787665e5\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"scraper tool\", \"3d_annotation_1\": {\"position\": {\"x\": -1.645810449128165, \"y\": -3.127136822611394, \"z\": 0.7463347778191411}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -1.1023476873405145}, \"dimension\": {\"x\": 0.1553947876716201, \"y\": 0.060572551045732954, \"z\": 0.01970997968092619}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.5871309567326732, \"y\": -3.0678745012849467, \"z\": 0.758470652360163}, \"rotation\": {\"x\": 2.995593279735043, \"y\": 2.9571339026109804, \"z\": -0.9397466508596033}, \"dimension\": {\"x\": 0.1958992580675746, \"y\": 0.07227855201053573, \"z\": 0.026025661977322662}}, \"gt_3d_vec_world_1\": [-1.645810449128165, -3.127136822611394, 0.7463347778191411], \"gt_3d_vec_world_2\": [-1.5871309567326732, -3.0678745012849467, 0.758470652360163]}, \"2\": {\"object_title\": \"rolling stick\", \"3d_annotation_1\": {\"position\": {\"x\": -0.14317945891756334, \"y\": -5.822361854452046, \"z\": 0.8982165485932003}, \"rotation\": {\"x\": -8.237438255750873e-17, \"y\": 2.794770302045814e-16, \"z\": 0.6887543338856499}, \"dimension\": {\"x\": 0.06427049636724179, \"y\": 0.5824515465379363, \"z\": 0.06422594351683947}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.17620834435314253, \"y\": -5.833840626759869, \"z\": 0.8881081614913938}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.5442677776523458}, \"dimension\": {\"x\": 0.07352502830696134, \"y\": 0.4693508686232311, \"z\": 0.0450707858416875}}, \"gt_3d_vec_world_1\": [-0.14317945891756334, -5.822361854452046, 0.8982165485932003], \"gt_3d_vec_world_2\": [-0.17620834435314253, -5.833840626759869, 0.8881081614913938], \"pred_3d_vec_world\": [-1.0899402120121766, -1.4396512365190397, 1.729400063022724]}}}]}]}, {\"video_uid\": \"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"f1350714-1aa5-421b-a268-690110ca9c06\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"tire\", \"3d_annotation_1\": {\"position\": {\"x\": -0.34929204288729576, \"y\": -1.264551334357808, \"z\": 0.12252132538245364}, \"rotation\": {\"x\": 1.5613370099459982, \"y\": -1.5775795471950824, \"z\": -0.012512925213054846}, \"dimension\": {\"x\": 0.23488705203753857, \"y\": 0.4890056191759746, \"z\": 0.48266126995249004}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.35951864848950266, \"y\": -1.0771685940237532, \"z\": 0.10527142241824652}, \"rotation\": {\"x\": -3.1268433339868515, \"y\": -1.586565408812666, \"z\": 6.339634722767309e-05}, \"dimension\": {\"x\": 0.19538232461664998, \"y\": 0.5340393084429973, \"z\": 0.5080753579213227}}, \"gt_3d_vec_world_1\": [-0.34929204288729576, -1.264551334357808, 0.12252132538245364], \"gt_3d_vec_world_2\": [-0.35951864848950266, -1.0771685940237532, 0.10527142241824652]}, \"3\": {\"object_title\": \"polythene bag\", \"3d_annotation_1\": {\"position\": {\"x\": -0.45912567230297263, \"y\": -1.9193172196057704, \"z\": 0.14601729909559993}, \"rotation\": {\"x\": -0.011894618054355236, \"y\": 0, \"z\": 1.5605657544143987}, \"dimension\": {\"x\": 0.1933925499999095, \"y\": 0.19975236439780283, \"z\": 0.2832051041471195}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.45506847230751624, \"y\": -1.8879638168095418, \"z\": 0.15618076507149303}, \"rotation\": {\"x\": 2.375120439491796, \"y\": -2.3746658553786997, \"z\": 1.5281459221106222}, \"dimension\": {\"x\": 0.1862055393785687, \"y\": 0.2575167661307948, \"z\": 0.3123615301429859}}, \"gt_3d_vec_world_1\": [-0.45912567230297263, -1.9193172196057704, 0.14601729909559993], \"gt_3d_vec_world_2\": [-0.45506847230751624, -1.8879638168095418, 0.15618076507149303]}, \"2\": {\"object_title\": \"metallic board\", \"3d_annotation_1\": {\"position\": {\"x\": -1.2349601436516884, \"y\": 1.2145357339433613, \"z\": 0.14689975389439172}, \"rotation\": {\"x\": 0.016104227029902652, \"y\": -1.5656552961567605, \"z\": -0.2881689011514506}, \"dimension\": {\"x\": 0.0460231144003399, \"y\": 1.02827709091402, \"z\": 0.6397692043183449}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.239034329299057, \"y\": 1.1994846244445356, \"z\": 0.14010715142789432}, \"rotation\": {\"x\": -1.5490517648600122, \"y\": -1.5739095949097908, \"z\": -0.25203341119539435}, \"dimension\": {\"x\": 0.04582729726893672, \"y\": 0.638706728232964, \"z\": 1.0812137903677015}}, \"gt_3d_vec_world_1\": [-1.2349601436516884, 1.2145357339433613, 0.14689975389439172], \"gt_3d_vec_world_2\": [-1.239034329299057, 1.1994846244445356, 0.14010715142789432]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"wheels\", \"3d_annotation_1\": {\"position\": {\"x\": -0.4114759568293932, \"y\": -1.1532282731930261, \"z\": 0.12221510825032349}, \"rotation\": {\"x\": -3.1394386020489518, \"y\": -1.5954826115673328, \"z\": -5.318641661871189e-05}, \"dimension\": {\"x\": 0.2396376043107149, \"y\": 0.44224312558855594, \"z\": 0.4404759818793963}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.4126872531463551, \"y\": -1.2348489433725285, \"z\": 0.09391804122342999}, \"rotation\": {\"x\": 1.579753199296274, \"y\": -1.5748065954013337, \"z\": -0.014324376656798992}, \"dimension\": {\"x\": 0.17883835872635195, \"y\": 0.43150815561446415, \"z\": 0.3971774193067954}}, \"gt_3d_vec_world_1\": [-0.4114759568293932, -1.1532282731930261, 0.12221510825032349], \"gt_3d_vec_world_2\": [-0.4126872531463551, -1.2348489433725285, 0.09391804122342999]}}}]}, {\"clip_uid\": \"150bc185-821c-487f-b39c-4c5a0d52467d\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"dustbin\", \"3d_annotation_1\": {\"position\": {\"x\": 0.3017756386161352, \"y\": 0.4069053302887536, \"z\": 0.3441564061971023}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.5580747860188102}, \"dimension\": {\"x\": 0.5115014392557385, \"y\": 0.5484208970985867, \"z\": 0.6521361723664487}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.20678369970212004, \"y\": 0.3877221549098433, \"z\": 0.3149099316768013}, \"rotation\": {\"x\": 2.5562711416312576, \"y\": 0.9774671439521883, \"z\": -1.5692808795432855}, \"dimension\": {\"x\": 0.37599923292387893, \"y\": 0.6046493594283343, \"z\": 0.40931986281660354}}, \"gt_3d_vec_world_1\": [0.3017756386161352, 0.4069053302887536, 0.3441564061971023], \"gt_3d_vec_world_2\": [0.20678369970212004, 0.3877221549098433, 0.3149099316768013]}, \"3\": {\"object_title\": \"puller slide hammer\", \"3d_annotation_1\": {\"position\": {\"x\": -0.9681971863713704, \"y\": -0.9440864859923824, \"z\": 0.00938417023023408}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.4076699216135689}, \"dimension\": {\"x\": 0.2680259877082222, \"y\": 0.16102642048938687, \"z\": 0.020725055437207256}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9890153811954279, \"y\": -0.9769328180550132, \"z\": 0.01118971185329987}, \"rotation\": {\"x\": -1.5526630259414436, \"y\": -0.03087059380693718, \"z\": 1.4220039279950862}, \"dimension\": {\"x\": 0.25999125348661045, \"y\": 0.023058253287521323, \"z\": 0.14792899044209498}}, \"gt_3d_vec_world_1\": [-0.9681971863713704, -0.9440864859923824, 0.00938417023023408], \"gt_3d_vec_world_2\": [-0.9890153811954279, -0.9769328180550132, 0.01118971185329987]}, \"2\": {\"object_title\": \"fire extinguisher\", \"3d_annotation_1\": {\"position\": {\"x\": 0.64260061859387, \"y\": -2.196309850518257, \"z\": 0.9771892777168845}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 1.5400726748177593}, \"dimension\": {\"x\": 0.18152255195364816, \"y\": 0.27463241336290206, \"z\": 0.6375293728335107}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.6402998178273998, \"y\": -2.200290875182887, \"z\": 0.9749274298274118}, \"rotation\": {\"x\": -3.1415926535897913, \"y\": 3.141592653589792, \"z\": 1.5356073018987664}, \"dimension\": {\"x\": 0.18006778770971923, \"y\": 0.26481087128105374, \"z\": 0.6247286484449409}}, \"gt_3d_vec_world_1\": [0.64260061859387, -2.196309850518257, 0.9771892777168845], \"gt_3d_vec_world_2\": [0.6402998178273998, -2.200290875182887, 0.9749274298274118]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"tyre\", \"3d_annotation_1\": {\"position\": {\"x\": -0.3720617460803822, \"y\": -1.2514141904491134, \"z\": 0.10587937262583097}, \"rotation\": {\"x\": 1.5800253464921588, \"y\": -1.5817342368503853, \"z\": 5.612148834736644e-05}, \"dimension\": {\"x\": 0.20131550876782678, \"y\": 0.4486911228901584, \"z\": 0.4519797663273065}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.26730013080365883, \"y\": -1.230746470336176, \"z\": 0.0914528606392747}, \"rotation\": {\"x\": -1.5706460500847694, \"y\": -1.5799183353818413, \"z\": -0.007656435148080964}, \"dimension\": {\"x\": 0.17044381681481685, \"y\": 0.34728862696346324, \"z\": 0.39874583642657857}}, \"gt_3d_vec_world_1\": [-0.3720617460803822, -1.2514141904491134, 0.10587937262583097], \"gt_3d_vec_world_2\": [-0.26730013080365883, -1.230746470336176, 0.0914528606392747]}, \"2\": {\"object_title\": \"wheel rim\", \"3d_annotation_1\": {\"position\": {\"x\": -1.0203791495959038, \"y\": -1.2421907228433122, \"z\": 0.039008372791053875}, \"rotation\": {\"x\": 3.141530520393671, \"y\": -1.5729350111720422, \"z\": -0.0006894091931348593}, \"dimension\": {\"x\": 0.07765704101417752, \"y\": 0.27892307367142183, \"z\": 0.26741961314885354}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.0517694956140546, \"y\": -1.2458004464696235, \"z\": 0.04216153343138228}, \"rotation\": {\"x\": 0.004158098835167824, \"y\": -1.5656611427819151, \"z\": 2.135291341916615e-05}, \"dimension\": {\"x\": 0.08242745143084867, \"y\": 0.28456143071563506, \"z\": 0.2816869682814933}}, \"gt_3d_vec_world_1\": [-1.0203791495959038, -1.2421907228433122, 0.039008372791053875], \"gt_3d_vec_world_2\": [-1.0517694956140546, -1.2458004464696235, 0.04216153343138228]}, \"3\": {\"object_title\": \"plastic bag\", \"3d_annotation_1\": {\"position\": {\"x\": -0.4569820359480204, \"y\": -1.889685704434245, \"z\": 0.11389834435873676}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.5403360234912455}, \"dimension\": {\"x\": 0.09819274775450823, \"y\": 0.2380963270029088, \"z\": 0.22162162162162163}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.4388491951046749, \"y\": -1.9136069374152598, \"z\": 0.14608457799741312}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.55859776074907}, \"dimension\": {\"x\": 0.17752163853765002, \"y\": 0.28129034089485394, \"z\": 0.2903790649765188}}, \"gt_3d_vec_world_1\": [-0.4569820359480204, -1.889685704434245, 0.11389834435873676], \"gt_3d_vec_world_2\": [-0.4388491951046749, -1.9136069374152598, 0.14608457799741312]}}}]}]}, {\"video_uid\": \"af33167f-658d-4c19-a35e-aaaf95efd3d0\", \"split\": \"val\", \"scan_uid\": \"unict_Carpenter_33\", \"clips\": [{\"clip_uid\": \"fe3d5a3a-a878-4b62-b99c-d1427eff1705\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"sellotape\", \"3d_annotation_1\": {\"position\": {\"x\": -0.7014655990380803, \"y\": -0.4242023802766784, \"z\": 0.9531608144613719}, \"rotation\": {\"x\": -1.1105377167140021e-16, \"y\": -3.2130023173571802e-18, \"z\": -0.31509927151918743}, \"dimension\": {\"x\": 0.09170570116319726, \"y\": 0.09538115176737229, \"z\": 0.07565328655837628}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.6903504405468623, \"y\": -0.42592486611190794, \"z\": 0.9437635907776056}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.3228337555092139}, \"dimension\": {\"x\": 0.07098156747517506, \"y\": 0.07675667370000717, \"z\": 0.05280585436781543}}, \"gt_3d_vec_world_1\": [-0.7014655990380803, -0.4242023802766784, 0.9531608144613719], \"gt_3d_vec_world_2\": [-0.6903504405468623, -0.42592486611190794, 0.9437635907776056]}, \"3\": {\"object_title\": \"wood craft\", \"3d_annotation_1\": {\"position\": {\"x\": -0.8240453777819297, \"y\": -0.025546520053741025, \"z\": 0.9282817202740095}, \"rotation\": {\"x\": 0.003919269699414929, \"y\": 0.12941886486400864, \"z\": 0.330500895729559}, \"dimension\": {\"x\": 0.08047770856274487, \"y\": 0.10740642915310933, \"z\": 0.012191122299417708}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.7893868380728661, \"y\": -0.02973239648854825, \"z\": 0.9276302163539054}, \"rotation\": {\"x\": -1.5627776011100176, \"y\": 0.1562196291203414, \"z\": 0.21729834371052326}, \"dimension\": {\"x\": 0.10836530724795959, \"y\": 0.01255000743372308, \"z\": 0.10593672555347526}}, \"gt_3d_vec_world_1\": [-0.8240453777819297, -0.025546520053741025, 0.9282817202740095], \"gt_3d_vec_world_2\": [-0.7893868380728661, -0.02973239648854825, 0.9276302163539054]}, \"2\": {\"object_title\": \"plastic container\", \"3d_annotation_1\": {\"position\": {\"x\": 0.7573771157224487, \"y\": -1.1955994580088294, \"z\": 0.9227890688026036}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.055205559806033}, \"dimension\": {\"x\": 0.07819836343336743, \"y\": 0.0773065050867607, \"z\": 0.1028473026959677}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.7256260238864783, \"y\": -1.1381379694573621, \"z\": 0.8989035102404046}, \"rotation\": {\"x\": -0.002139601633251119, \"y\": 0.0010458116382948987, \"z\": -1.5585385889577188}, \"dimension\": {\"x\": 0.06465096717709666, \"y\": 0.06619153451323799, \"z\": 0.11698355042469999}}, \"gt_3d_vec_world_1\": [0.7573771157224487, -1.1955994580088294, 0.9227890688026036], \"gt_3d_vec_world_2\": [0.7256260238864783, -1.1381379694573621, 0.8989035102404046]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"screwdriver\", \"3d_annotation_1\": {\"position\": {\"x\": -0.5743857101913606, \"y\": 0.1691288364675672, \"z\": 0.9246223202070376}, \"rotation\": {\"x\": -1.5105203431912304, \"y\": 3.0593384325399304, \"z\": -0.21131452917569415}, \"dimension\": {\"x\": 0.15617585412298995, \"y\": 0.015710032917260964, \"z\": 0.028927317385764945}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.5821323028286847, \"y\": 0.11968331538631712, \"z\": 0.9214345966277718}, \"rotation\": {\"x\": -3.1204986655668967, \"y\": -3.136346891905898, \"z\": -0.02713346218538329}, \"dimension\": {\"x\": 0.15954909175880347, \"y\": 0.014016983678027208, \"z\": 0.013778376617302286}}, \"gt_3d_vec_world_1\": [-0.5743857101913606, 0.1691288364675672, 0.9246223202070376], \"gt_3d_vec_world_2\": [-0.5821323028286847, 0.11968331538631712, 0.9214345966277718]}, \"3\": {\"object_title\": \"glue\", \"3d_annotation_1\": {\"position\": {\"x\": -0.8000879998696512, \"y\": 0.23818474508571455, \"z\": 0.9482754039557181}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.4898272652599185}, \"dimension\": {\"x\": 0.014789257192064783, \"y\": 0.02400005078368522, \"z\": 0.07073771347731878}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.83057846209758, \"y\": 0.20797368273748412, \"z\": 0.944550471014759}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.130202473896424}, \"dimension\": {\"x\": 0.01121370550570714, \"y\": 0.017621946920689198, \"z\": 0.06691576852389586}}, \"gt_3d_vec_world_1\": [-0.8000879998696512, 0.23818474508571455, 0.9482754039557181], \"gt_3d_vec_world_2\": [-0.83057846209758, 0.20797368273748412, 0.944550471014759]}, \"2\": {\"object_title\": \"phone\", \"3d_annotation_1\": {\"position\": {\"x\": -0.7596181293038327, \"y\": 0.21956631946981062, \"z\": 0.9504676184858636}, \"rotation\": {\"x\": 1.2306097141836234, \"y\": -1.6037679235110553, \"z\": 0.17325232059078455}, \"dimension\": {\"x\": 0.010261484844303866, \"y\": 0.11877985995399717, \"z\": 0.05297309090379517}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.752333948270997, \"y\": 0.31362546832914584, \"z\": 0.9475132076833095}, \"rotation\": {\"x\": 2.7189074739220396, \"y\": -1.7040343250653713, \"z\": 0.1450863139352078}, \"dimension\": {\"x\": 0.01196476774237783, \"y\": 0.06004097131432564, \"z\": 0.13354632587859433}}, \"gt_3d_vec_world_1\": [-0.7596181293038327, 0.21956631946981062, 0.9504676184858636], \"gt_3d_vec_world_2\": [-0.752333948270997, 0.31362546832914584, 0.9475132076833095]}}}]}, {\"clip_uid\": \"5a7efdba-6701-4aaa-bff6-fbab6b293ed9\", \"annotations\": [{\"query_sets\": {\"2\": {\"object_title\": \"phone\", \"3d_annotation_1\": {\"position\": {\"x\": -0.8279402569535053, \"y\": 0.22119249221280848, \"z\": 0.9471046881116537}, \"rotation\": {\"x\": 1.3630676785395404, \"y\": -1.6937929704157444, \"z\": 0.05575551292727908}, \"dimension\": {\"x\": 0.010388028773527673, \"y\": 0.1173556695280178, \"z\": 0.05743234458009297}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.7867414984112912, \"y\": 0.2582542127000324, \"z\": 0.9619247215954783}, \"rotation\": {\"x\": -0.24136410647807113, \"y\": -1.573681301036533, \"z\": -0.010762679646467035}, \"dimension\": {\"x\": 0.01752463680462334, \"y\": 0.0695504055972975, \"z\": 0.1488817891373802}}, \"gt_3d_vec_world_1\": [-0.8279402569535053, 0.22119249221280848, 0.9471046881116537], \"gt_3d_vec_world_2\": [-0.7867414984112912, 0.2582542127000324, 0.9619247215954783]}, \"3\": {\"object_title\": \"cup\", \"3d_annotation_1\": {\"position\": {\"x\": 0.7867023631003688, \"y\": -1.131929446611194, \"z\": 0.902929071675038}, \"rotation\": {\"x\": 1.713561062680194e-16, \"y\": -1.2043602554088757e-16, \"z\": 0.7913391949320586}, \"dimension\": {\"x\": 0.0832185050965062, \"y\": 0.09197805193102102, \"z\": 0.1162590710736024}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.6350952063961258, \"y\": -1.1182547650139198, \"z\": 0.8959832314049938}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.051415898623774714}, \"dimension\": {\"x\": 0.06705806689158555, \"y\": 0.06632881637608062, \"z\": 0.10971170523983778}}, \"gt_3d_vec_world_1\": [0.7867023631003688, -1.131929446611194, 0.902929071675038], \"gt_3d_vec_world_2\": [0.6350952063961258, -1.1182547650139198, 0.8959832314049938]}, \"1\": {\"object_title\": \"paper tape\", \"3d_annotation_1\": {\"position\": {\"x\": -0.7056906653205559, \"y\": -0.39696041665947496, \"z\": 0.94506108162832}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.3118251545491259}, \"dimension\": {\"x\": 0.09106701555063892, \"y\": 0.07642330443016654, \"z\": 0.05617321685103721}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.6911284736071797, \"y\": -0.43692894629708506, \"z\": 0.9397687710697655}, \"rotation\": {\"x\": 0.00011834719400466369, \"y\": 0.0004506405115751882, \"z\": -0.3257374469908628}, \"dimension\": {\"x\": 0.06277395855036577, \"y\": 0.06792266825107934, \"z\": 0.045459783392353736}}, \"gt_3d_vec_world_1\": [-0.7056906653205559, -0.39696041665947496, 0.94506108162832], \"gt_3d_vec_world_2\": [-0.6911284736071797, -0.43692894629708506, 0.9397687710697655]}}}, {\"query_sets\": {\"2\": {\"object_title\": \"plastic container\", \"3d_annotation_1\": {\"position\": {\"x\": 0.7131606980597277, \"y\": -1.1898696272392848, \"z\": 0.9011229800574986}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.03784591479968274}, \"dimension\": {\"x\": 0.08972924934456156, \"y\": 0.11725281495917683, \"z\": 0.12138836877544115}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.8414076195459299, \"y\": -1.194938334114516, \"z\": 0.9049728137746934}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.031440424607092614}, \"dimension\": {\"x\": 0.08387388949712986, \"y\": 0.07739382622915075, \"z\": 0.12928300638703244}}, \"gt_3d_vec_world_1\": [0.7131606980597277, -1.1898696272392848, 0.9011229800574986], \"gt_3d_vec_world_2\": [0.8414076195459299, -1.194938334114516, 0.9049728137746934]}, \"3\": {\"object_title\": \"cellphone\", \"3d_annotation_1\": {\"position\": {\"x\": -0.7587629632178585, \"y\": 0.3003007974487474, \"z\": 0.9438235319593771}, \"rotation\": {\"x\": 1.2797361020425577, \"y\": -1.624988699491108, \"z\": 0.12508082786618863}, \"dimension\": {\"x\": 0.012366279143388106, \"y\": 0.12986224588400574, \"z\": 0.06609790550946054}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.8101912731823199, \"y\": 0.29300470015726676, \"z\": 0.9421935262657138}, \"rotation\": {\"x\": 1.289012477442362, \"y\": -1.5750793271660894, \"z\": 0.19970195615456787}, \"dimension\": {\"x\": 0.010335103256314954, \"y\": 0.09677077798555873, \"z\": 0.04510737350875643}}, \"gt_3d_vec_world_1\": [-0.7587629632178585, 0.3003007974487474, 0.9438235319593771], \"gt_3d_vec_world_2\": [-0.8101912731823199, 0.29300470015726676, 0.9421935262657138]}, \"1\": {\"object_title\": \"fan\", \"3d_annotation_1\": {\"position\": {\"x\": 0.5836314749048123, \"y\": 0.3648863999229598, \"z\": 1.152202990463585}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.3271397968784062}, \"dimension\": {\"x\": 0.11346534451332091, \"y\": 0.15998802061479198, \"z\": 0.147647568919622}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.5853898419086925, \"y\": 0.3604652674607362, \"z\": 1.1515688538330071}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.5561220164332084}, \"dimension\": {\"x\": 0.09796173116080144, \"y\": 0.16943185748368977, \"z\": 0.149545616773408}}, \"gt_3d_vec_world_1\": [0.5836314749048123, 0.3648863999229598, 1.152202990463585], \"gt_3d_vec_world_2\": [0.5853898419086925, 0.3604652674607362, 1.1515688538330071]}}}]}, {\"clip_uid\": \"1839af1c-6999-4bc4-87f7-550dd9be4b91\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"portable fan\", \"3d_annotation_1\": {\"position\": {\"x\": 0.5878016819822569, \"y\": 0.36417029147297153, \"z\": 1.1523798133574044}, \"rotation\": {\"x\": 3.140902528085939, \"y\": -3.1234498086934233, \"z\": -1.3916169222676675}, \"dimension\": {\"x\": 0.11656968273042244, \"y\": 0.15550040976185628, \"z\": 0.15193145923400903}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.5896831953145258, \"y\": 0.3630026284144414, \"z\": 1.1501201733086053}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.3204544177917696}, \"dimension\": {\"x\": 0.1139429490695473, \"y\": 0.1531970728031376, \"z\": 0.15178119330436163}}, \"gt_3d_vec_world_1\": [0.5878016819822569, 0.36417029147297153, 1.1523798133574044], \"gt_3d_vec_world_2\": [0.5896831953145258, 0.3630026284144414, 1.1501201733086053]}, \"2\": {\"object_title\": \"paper tape\", \"3d_annotation_1\": {\"position\": {\"x\": -0.6880862266411703, \"y\": -0.38621723737830366, \"z\": 0.9461549221780075}, \"rotation\": {\"x\": -1.9476655737399186e-16, \"y\": -2.8753800533974065e-16, \"z\": -0.3262734901760472}, \"dimension\": {\"x\": 0.09662734520591754, \"y\": 0.09943490116299025, \"z\": 0.05851185050186042}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.7020148189395241, \"y\": -0.40299367129078634, \"z\": 0.9564107977468372}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.23352580396430664}, \"dimension\": {\"x\": 0.10332091570272438, \"y\": 0.10628849163790191, \"z\": 0.07955620852283601}}, \"gt_3d_vec_world_1\": [-0.6880862266411703, -0.38621723737830366, 0.9461549221780075], \"gt_3d_vec_world_2\": [-0.7020148189395241, -0.40299367129078634, 0.9564107977468372]}}}]}, {\"clip_uid\": \"dbabe8c7-ceea-4042-b5a2-575d2223dfd7\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"tin\", \"3d_annotation_1\": {\"position\": {\"x\": -0.45423524918624286, \"y\": -1.5836530866950087, \"z\": 0.007167346313514112}, \"rotation\": {\"x\": 0.1320872884108443, \"y\": -1.6199952127158774, \"z\": -0.028682977869639296}, \"dimension\": {\"x\": 0.06510636283043067, \"y\": 0.07569850683947328, \"z\": 0.07965554860103263}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.47136134402560137, \"y\": -1.6056604529537273, \"z\": 0.020249677983435757}, \"rotation\": {\"x\": 1.5562754017718774, \"y\": -1.5994285703269722, \"z\": 0.030616683264861156}, \"dimension\": {\"x\": 0.08745898511941116, \"y\": 0.1135113793142944, \"z\": 0.11358520047160091}}, \"gt_3d_vec_world_1\": [-0.45423524918624286, -1.5836530866950087, 0.007167346313514112], \"gt_3d_vec_world_2\": [-0.47136134402560137, -1.6056604529537273, 0.020249677983435757]}, \"2\": {\"object_title\": \"basin\", \"3d_annotation_1\": {\"position\": {\"x\": 0.4674406207789614, \"y\": -1.041767797630516, \"z\": 0.8754539873662538}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -0.009367711883191014}, \"dimension\": {\"x\": 0.33672147568307237, \"y\": 0.306405046953814, \"z\": 0.07607054078354147}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.4648813073217095, \"y\": -1.0383405460358057, \"z\": 0.8710825960934615}, \"rotation\": {\"x\": -1.5755213434947812, \"y\": 1.5644711500115451, \"z\": -0.010679113761488104}, \"dimension\": {\"x\": 0.06749736492043554, \"y\": 0.3325229422760607, \"z\": 0.3292140074915651}}, \"gt_3d_vec_world_1\": [0.4674406207789614, -1.041767797630516, 0.8754539873662538], \"gt_3d_vec_world_2\": [0.4648813073217095, -1.0383405460358057, 0.8710825960934615]}, \"1\": {\"object_title\": \"stool\", \"3d_annotation_1\": {\"position\": {\"x\": 0.05749562279558133, \"y\": -1.1583725262460707, \"z\": 0.30590901337835913}, \"rotation\": {\"x\": 3.1358964902279984, \"y\": 3.1240807062483964, \"z\": 0.11453031475842936}, \"dimension\": {\"x\": 0.3913848639326127, \"y\": 0.3797747066572582, \"z\": 0.6212800773756648}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.16786399801943389, \"y\": -1.0897719052006818, \"z\": 0.3075115273609344}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.13701128777679308}, \"dimension\": {\"x\": 0.4341697135099532, \"y\": 0.4622175094515004, \"z\": 0.6241702259989851}}, \"gt_3d_vec_world_1\": [0.05749562279558133, -1.1583725262460707, 0.30590901337835913], \"gt_3d_vec_world_2\": [0.16786399801943389, -1.0897719052006818, 0.3075115273609344]}}}]}, {\"clip_uid\": \"b34643f2-eb18-492c-a446-f18c02c4198f\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"mobile phone\", \"3d_annotation_1\": {\"position\": {\"x\": -0.5459071036724464, \"y\": 0.2763377814576749, \"z\": 0.920021888220171}, \"rotation\": {\"x\": -0.6214166541671406, \"y\": -1.5703240160227707, \"z\": 0.005596050923548948}, \"dimension\": {\"x\": 0.01167419400250203, \"y\": 0.05255902039682601, \"z\": 0.1060326079996741}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.5965511476422847, \"y\": 0.08159434876052353, \"z\": 0.9208906259542063}, \"rotation\": {\"x\": 1.0389379655227473, \"y\": -1.5742110156048337, \"z\": -0.007904659711152135}, \"dimension\": {\"x\": 0.010942401086105225, \"y\": 0.10040827303714381, \"z\": 0.05622358963915713}}, \"gt_3d_vec_world_1\": [-0.5459071036724464, 0.2763377814576749, 0.920021888220171], \"gt_3d_vec_world_2\": [-0.5965511476422847, 0.08159434876052353, 0.9208906259542063]}, \"2\": {\"object_title\": \"paint backet\", \"3d_annotation_1\": {\"position\": {\"x\": 0.18735779116548137, \"y\": 0.5054153505829807, \"z\": 0.41796540302222257}, \"rotation\": {\"x\": 0.038259702799198166, \"y\": 0.008515682983847483, \"z\": -0.27052647642637057}, \"dimension\": {\"x\": 0.17448623903544114, \"y\": 0.16826805438938447, \"z\": 0.16335105627967314}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.1915539174333944, \"y\": 0.5020310444182556, \"z\": 0.4198045373733895}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.7204674858949102}, \"dimension\": {\"x\": 0.16555336588457892, \"y\": 0.16013531937809056, \"z\": 0.17254261422390915}}, \"gt_3d_vec_world_1\": [0.18735779116548137, 0.5054153505829807, 0.41796540302222257], \"gt_3d_vec_world_2\": [0.1915539174333944, 0.5020310444182556, 0.4198045373733895]}, \"3\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": -0.5743074478019903, \"y\": 0.18326428023904998, \"z\": 0.927408328097845}, \"rotation\": {\"x\": 3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.5854580046329287}, \"dimension\": {\"x\": 0.18967635629242863, \"y\": 0.029890204965727276, \"z\": 0.023242417665996273}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.547046368264106, \"y\": 0.19692907824984018, \"z\": 0.9208892535592038}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -0.46934442417650485}, \"dimension\": {\"x\": 0.15472680549763507, \"y\": 0.021762231181606518, \"z\": 0.013418530351437613}}, \"gt_3d_vec_world_1\": [-0.5743074478019903, 0.18326428023904998, 0.927408328097845], \"gt_3d_vec_world_2\": [-0.547046368264106, 0.19692907824984018, 0.9208892535592038]}}}]}]}, {\"video_uid\": \"cb83eaff-62e9-4aff-bcdc-e3d747103020\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"cdac7d6f-1cb5-4f6a-9a6d-0213e055827c\", \"annotations\": [{\"query_sets\": {\"2\": {\"object_title\": \"box\", \"3d_annotation_1\": {\"position\": {\"x\": -2.1414359682005406, \"y\": 1.545885905204005, \"z\": 0.253319128055371}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.03558758055971032}, \"dimension\": {\"x\": 0.1288146064821919, \"y\": 0.15706018980136494, \"z\": 0.2674749353682687}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.116798005768353, \"y\": 1.5590223600585413, \"z\": 0.25280448043673204}, \"rotation\": {\"x\": 3.264673739295176e-16, \"y\": 6.461915994717767e-16, \"z\": -0.02414439748597009}, \"dimension\": {\"x\": 0.17509060017373948, \"y\": 0.1820287514583095, \"z\": 0.2655990742183692}}, \"gt_3d_vec_world_1\": [-2.1414359682005406, 1.545885905204005, 0.253319128055371], \"gt_3d_vec_world_2\": [-2.116798005768353, 1.5590223600585413, 0.25280448043673204]}, \"1\": {\"object_title\": \"stool\", \"3d_annotation_1\": {\"position\": {\"x\": -0.7281291773765497, \"y\": 1.9838714250114704, \"z\": 0.42754914042914904}, \"rotation\": {\"x\": -4.688375689067833e-15, \"y\": -4.567510181389842e-15, \"z\": -1.5446813465152498}, \"dimension\": {\"x\": 0.3106571279733297, \"y\": 0.33073282410318355, \"z\": 0.2235240244193919}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.6900224846257034, \"y\": 1.9582600249612623, \"z\": 0.4212867835401432}, \"rotation\": {\"x\": 0.1637145035469103, \"y\": 0.16509508122248612, \"z\": -1.4914171939340855}, \"dimension\": {\"x\": 0.3578051768801203, \"y\": 0.3170820453917696, \"z\": 0.21717661504555147}}, \"gt_3d_vec_world_1\": [-0.7281291773765497, 1.9838714250114704, 0.42754914042914904], \"gt_3d_vec_world_2\": [-0.6900224846257034, 1.9582600249612623, 0.4212867835401432]}, \"3\": {\"object_title\": \"trash can\", \"3d_annotation_1\": {\"position\": {\"x\": 0.27412288310945515, \"y\": 0.4388977661669989, \"z\": 0.2842646640004439}, \"rotation\": {\"x\": 5.459678522289242e-15, \"y\": 5.504263403403151e-15, \"z\": -1.5355552353108828}, \"dimension\": {\"x\": 0.45579406712122583, \"y\": 0.4627951944384123, \"z\": 0.5482879088703659}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.21887341204248612, \"y\": 0.3885371872825912, \"z\": 0.3364366589596851}, \"rotation\": {\"x\": -0.15457722855940292, \"y\": -0.16309167529685914, \"z\": -1.531824419526155}, \"dimension\": {\"x\": 0.4827724832998744, \"y\": 0.46314630991827604, \"z\": 0.6562551297754866}}, \"gt_3d_vec_world_1\": [0.27412288310945515, 0.4388977661669989, 0.2842646640004439], \"gt_3d_vec_world_2\": [0.21887341204248612, 0.3885371872825912, 0.3364366589596851]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"screwdriver\", \"3d_annotation_1\": {\"position\": {\"x\": -3.061950313223262, \"y\": 0.06182558364138739, \"z\": 0.9683795232556708}, \"rotation\": {\"x\": -0.0011436202309832366, \"y\": 0.02188475510049217, \"z\": 1.4142005943842901}, \"dimension\": {\"x\": 0.2748149065772725, \"y\": 0.03562630909678353, \"z\": 0.038789963666106375}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.0601769078136885, \"y\": -0.09455137791471568, \"z\": 0.9602645996046892}, \"rotation\": {\"x\": 2.7321225328180917e-16, \"y\": -2.8587704997576034e-17, \"z\": 1.439163409725113}, \"dimension\": {\"x\": 0.15786698637404575, \"y\": 0.023944624423639545, \"z\": 0.024232775629252634}}, \"gt_3d_vec_world_1\": [-3.061950313223262, 0.06182558364138739, 0.9683795232556708], \"gt_3d_vec_world_2\": [-3.0601769078136885, -0.09455137791471568, 0.9602645996046892]}}}]}]}, {\"video_uid\": \"38473fe0-8311-44f0-a976-46a1eef5c6d6\", \"split\": \"val\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"75a9383b-09d7-49bd-81c8-2a9880da6db3\", \"annotations\": [{\"query_sets\": {\"2\": {\"object_title\": \"hammer\", \"3d_annotation_1\": {\"position\": {\"x\": 1.20992614233002, \"y\": 4.249523511575589, \"z\": 0.7799275902637326}, \"rotation\": {\"x\": -5.897462953616973e-18, \"y\": 2.450712780076107e-16, \"z\": 0.048119265634399715}, \"dimension\": {\"x\": 0.1286983545480947, \"y\": 0.31168613517816496, \"z\": 0.02869487327599156}}, \"3d_annotation_2\": {\"position\": {\"x\": 1.2750594361436667, \"y\": 4.15680264601727, \"z\": 0.7496369107838058}, \"rotation\": {\"x\": 0.11447553263233283, \"y\": -0.06955347479234195, \"z\": 0.4349333081047265}, \"dimension\": {\"x\": 0.1194322661781544, \"y\": 0.3063952175034494, \"z\": 0.025753364633391135}}, \"gt_3d_vec_world_1\": [1.20992614233002, 4.249523511575589, 0.7799275902637326], \"gt_3d_vec_world_2\": [1.2750594361436667, 4.15680264601727, 0.7496369107838058]}, \"3\": {\"object_title\": \"bicycle seat\", \"3d_annotation_1\": {\"position\": {\"x\": -1.4431604395659245, \"y\": 2.219037847538331, \"z\": 2.1593947408058485}, \"rotation\": {\"x\": -1.5616599892788217, \"y\": -0.03245317156274621, \"z\": -0.003894177809976311}, \"dimension\": {\"x\": 0.11476591864344585, \"y\": 0.2633203541229092, \"z\": 0.13630273832415762}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.4373083285600843, \"y\": 2.221144176674433, \"z\": 2.158003583488197}, \"rotation\": {\"x\": 0.0011828083589149037, \"y\": -0.05054272320525697, \"z\": 0.023384360592421907}, \"dimension\": {\"x\": 0.09852263355482771, \"y\": 0.1250602720513711, \"z\": 0.26822077092590063}}, \"gt_3d_vec_world_1\": [-1.4431604395659245, 2.219037847538331, 2.1593947408058485], \"gt_3d_vec_world_2\": [-1.4373083285600843, 2.221144176674433, 2.158003583488197], \"gt_3d_vec_1\": [0.013379444131616625, -0.6113118547838002, -0.9301573968014698], \"gt_3d_vec_2\": [0.019249182786071017, -0.6137778330851335, -0.9298671150719746], \"pred_3d_vec\": [0.8237527758813862, 3.2056457121054835, 2.987860492813346], \"pred_3d_vec_world\": [-1.0330618147718327, -2.488059583972535, -0.7131976555831818]}, \"1\": {\"object_title\": \"mobile phone\", \"3d_annotation_1\": {\"position\": {\"x\": -0.9341869943788366, \"y\": 2.784716454895094, \"z\": 0.858810752191805}, \"rotation\": {\"x\": -3.0626075378926947, \"y\": -1.5560151380212528, \"z\": -0.03361963999221897}, \"dimension\": {\"x\": 0.014778106815311583, \"y\": 0.07439927216491865, \"z\": 0.16262077208057957}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9148023239905195, \"y\": 2.8059940414280007, \"z\": 0.8607589986988241}, \"rotation\": {\"x\": 0.028522982634017775, \"y\": -1.5694954327039972, \"z\": -2.952852285118812e-06}, \"dimension\": {\"x\": 0.010111200317839153, \"y\": 0.08901013827025389, \"z\": 0.14314978922533111}}, \"gt_3d_vec_world_1\": [-0.9341869943788366, 2.784716454895094, 0.858810752191805], \"gt_3d_vec_world_2\": [-0.9148023239905195, 2.8059940414280007, 0.8607589986988241], \"gt_3d_vec_1\": [5.385938542601165, 0.11257607644768364, 0.28442923778113127], \"gt_3d_vec_2\": [5.386685384043133, 0.14107157792518144, 0.28887281996081526], \"pred_3d_vec\": [5.85227224428858, -3.578788838870379, -0.3814033207991159], \"pred_3d_vec_world\": [-3.8670318626645686, 0.4117813560431095, 0.6251977160775812]}}}]}]}, {\"video_uid\": \"e14e03f8-13e4-4df2-87b0-e1ad8a175f7c\", \"split\": \"val\", \"scan_uid\": \"unict_Carpenter_33\", \"clips\": [{\"clip_uid\": \"159ac0ad-e5ec-449d-a69e-556655f79b2a\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"container\", \"3d_annotation_1\": {\"position\": {\"x\": -0.44422952842353813, \"y\": -1.5849274304709362, \"z\": 0.008910677800683137}, \"rotation\": {\"x\": -1.3341176587928705, \"y\": -1.5696391685430167, \"z\": 0.0046913379141670306}, \"dimension\": {\"x\": 0.060996617943882926, \"y\": 0.09356008551141982, \"z\": 0.12393162393162446}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.4472868701413223, \"y\": -1.5415316873438687, \"z\": 0.009960189341424449}, \"rotation\": {\"x\": 1.700128559309056, \"y\": -1.550501649782943, \"z\": 0.009086879049799136}, \"dimension\": {\"x\": 0.06513239928256874, \"y\": 0.07542201443964132, \"z\": 0.06560168501989887}}, \"gt_3d_vec_world_1\": [-0.44422952842353813, -1.5849274304709362, 0.008910677800683137], \"gt_3d_vec_world_2\": [-0.4472868701413223, -1.5415316873438687, 0.009960189341424449]}}}]}, {\"clip_uid\": \"dfe962ab-6aa7-4888-9378-796817a30ab6\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"green bowl\", \"3d_annotation_1\": {\"position\": {\"x\": -0.4679292959128768, \"y\": -1.5761468368428035, \"z\": 0.006320424039029225}, \"rotation\": {\"x\": 1.7278705366824367, \"y\": -1.567998620247064, \"z\": -0.025482308350180477}, \"dimension\": {\"x\": 0.06398569072730677, \"y\": 0.07258862174119703, \"z\": 0.08855448204629095}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.4483498127288007, \"y\": -1.546268676406538, \"z\": 0.010207513581134232}, \"rotation\": {\"x\": -3.0073661202316857, \"y\": -1.5781257589615785, \"z\": -0.03541736310484534}, \"dimension\": {\"x\": 0.06541013102114468, \"y\": 0.06915059513012325, \"z\": 0.07953882249384518}}, \"gt_3d_vec_world_1\": [-0.4679292959128768, -1.5761468368428035, 0.006320424039029225], \"gt_3d_vec_world_2\": [-0.4483498127288007, -1.546268676406538, 0.010207513581134232]}, \"3\": {\"object_title\": \"tube\", \"3d_annotation_1\": {\"position\": {\"x\": -0.7510454983360139, \"y\": -0.3086024286500902, \"z\": 0.9219727040022054}, \"rotation\": {\"x\": 3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.43196216110471614}, \"dimension\": {\"x\": 0.09494733800060863, \"y\": 0.030997503901838988, \"z\": 0.014667709056878142}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.7439075783452427, \"y\": -0.31276727395943005, \"z\": 0.9206726955109035}, \"rotation\": {\"x\": -3.137228914085055, \"y\": 3.1248270367288495, \"z\": 0.3645441795611125}, \"dimension\": {\"x\": 0.08302065791336871, \"y\": 0.023218089249589388, \"z\": 0.01002467651062423}}, \"gt_3d_vec_world_1\": [-0.7510454983360139, -0.3086024286500902, 0.9219727040022054], \"gt_3d_vec_world_2\": [-0.7439075783452427, -0.31276727395943005, 0.9206726955109035]}, \"2\": {\"object_title\": \"portable fan\", \"3d_annotation_1\": {\"position\": {\"x\": 0.5871257049516381, \"y\": 0.37214927715382473, \"z\": 1.1511667907658167}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.2891115219418707}, \"dimension\": {\"x\": 0.12971411713353406, \"y\": 0.16312581020210373, \"z\": 0.15252360085825992}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.589174466717332, \"y\": 0.3619032281996868, \"z\": 1.153118404254168}, \"rotation\": {\"x\": 3.1415926535897927, \"y\": 3.1415926535897927, \"z\": -1.5155601711099127}, \"dimension\": {\"x\": 0.10388146729220074, \"y\": 0.16057051066525055, \"z\": 0.1483125124425682}}, \"gt_3d_vec_world_1\": [0.5871257049516381, 0.37214927715382473, 1.1511667907658167], \"gt_3d_vec_world_2\": [0.589174466717332, 0.3619032281996868, 1.153118404254168]}}}, {\"query_sets\": {\"3\": {\"object_title\": \"bucket\", \"3d_annotation_1\": {\"position\": {\"x\": -0.2489819334102428, \"y\": 0.3113939628130546, \"z\": 0.2480403690855405}, \"rotation\": {\"x\": 0.026847725082991172, \"y\": -0.01694884249018549, \"z\": -0.11359857067840785}, \"dimension\": {\"x\": 0.20981053714771983, \"y\": 0.2080212380985522, \"z\": 0.4810396686177187}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.24570992471824438, \"y\": 0.32608672577808595, \"z\": 0.2422370353456752}, \"rotation\": {\"x\": 2.9014992831780027, \"y\": 2.900799308421517, \"z\": -1.4930346487213642}, \"dimension\": {\"x\": 0.21700046870036957, \"y\": 0.21844694859266442, \"z\": 0.4697887627261684}}, \"gt_3d_vec_world_1\": [-0.2489819334102428, 0.3113939628130546, 0.2480403690855405], \"gt_3d_vec_world_2\": [-0.24570992471824438, 0.32608672577808595, 0.2422370353456752]}}}]}, {\"clip_uid\": \"b3d7a127-2aa6-42d2-88ce-fb023625117e\", \"annotations\": [{\"query_sets\": {\"2\": {\"object_title\": \"screwdriver\", \"3d_annotation_1\": {\"position\": {\"x\": -0.5624575359604518, \"y\": 0.17327758966522552, \"z\": 0.920853477811993}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.13633597544715853}, \"dimension\": {\"x\": 0.2285847260593847, \"y\": 0.027194067284892817, \"z\": 0.016704241759279453}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.5527736483907331, \"y\": 0.19525753376433744, \"z\": 0.9248268697578117}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.16073644672829734}, \"dimension\": {\"x\": 0.20734464985953005, \"y\": 0.02343375034164841, \"z\": 0.022267280592554922}}, \"gt_3d_vec_world_1\": [-0.5624575359604518, 0.17327758966522552, 0.920853477811993], \"gt_3d_vec_world_2\": [-0.5527736483907331, 0.19525753376433744, 0.9248268697578117]}, \"3\": {\"object_title\": \"cotton bud\", \"3d_annotation_1\": {\"position\": {\"x\": -0.7564037845369975, \"y\": -0.32287207970989706, \"z\": 0.9232510616315817}, \"rotation\": {\"x\": 3.048419385900704e-16, \"y\": -1.9629479047266182e-16, \"z\": 0.6882359603876168}, \"dimension\": {\"x\": 0.01054308756284228, \"y\": 0.04815794208016896, \"z\": 0.010089037969206516}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.802495084569083, \"y\": -0.24135454882532878, \"z\": 0.9179167028018665}, \"rotation\": {\"x\": -0.024320669081655772, \"y\": 0.013509488817310924, \"z\": 0.728342700763753}, \"dimension\": {\"x\": 0.012665469162192371, \"y\": 0.08599422946444202, \"z\": 0.010104352376305414}}, \"gt_3d_vec_world_1\": [-0.7564037845369975, -0.32287207970989706, 0.9232510616315817], \"gt_3d_vec_world_2\": [-0.802495084569083, -0.24135454882532878, 0.9179167028018665]}}}]}, {\"clip_uid\": \"d5935c29-1b8d-417d-9bbb-5ebd47e9256d\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"container\", \"3d_annotation_1\": {\"position\": {\"x\": -0.44427343840583605, \"y\": -1.560949245974507, \"z\": 0.009073409966987205}, \"rotation\": {\"x\": -3.0878127698930578, \"y\": -1.590524385686947, \"z\": -0.0036233887715678694}, \"dimension\": {\"x\": 0.05643751289479911, \"y\": 0.11347156946280369, \"z\": 0.08188250005862781}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.440919480895711, \"y\": -1.5650059322382515, \"z\": 0.01032714637209079}, \"rotation\": {\"x\": -1.4288229923264895, \"y\": -1.5802754321889527, \"z\": -0.03534651177814148}, \"dimension\": {\"x\": 0.06646730800558154, \"y\": 0.08018486314819037, \"z\": 0.09831678138645152}}, \"gt_3d_vec_world_1\": [-0.44427343840583605, -1.560949245974507, 0.009073409966987205], \"gt_3d_vec_world_2\": [-0.440919480895711, -1.5650059322382515, 0.01032714637209079]}}}]}]}, {\"video_uid\": \"6269fa52-58af-46d3-9a4b-7aca66c3b622\", \"split\": \"val\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"6836bfae-e56b-457d-bade-1160256d4d9f\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"chair\", \"3d_annotation_1\": {\"position\": {\"x\": -0.8567529972601836, \"y\": 3.648181299709932, \"z\": 0.5008783700704925}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.06925496668322118}, \"dimension\": {\"x\": 0.649816527774576, \"y\": 0.6500717571349934, \"z\": 0.9936102236421727}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9681921161254323, \"y\": 3.6240397647296154, \"z\": 0.5001077248142155}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -0.8056571190066074}, \"dimension\": {\"x\": 0.7534722875249459, \"y\": 0.6209212762576972, \"z\": 1.0002154496284308}}, \"gt_3d_vec_world_1\": [-0.8567529972601836, 3.648181299709932, 0.5008783700704925], \"gt_3d_vec_world_2\": [-0.9681921161254323, 3.6240397647296154, 0.5001077248142155], \"pred_3d_vec_world\": [-6.46657512725309, 0.48557099412689764, -2.6752685251241672]}, \"3\": {\"object_title\": \"spanner\", \"3d_annotation_1\": {\"position\": {\"x\": -0.9284659677520493, \"y\": 2.55453611424133, \"z\": 0.8542831097862101}, \"rotation\": {\"x\": 0.004196605037632557, \"y\": 0.007401086816063113, \"z\": 0.48763458040651253}, \"dimension\": {\"x\": 0.23475933551773645, \"y\": 0.04985836430600171, \"z\": 0.014059190355149118}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9214657101643663, \"y\": 2.5921965601531336, \"z\": 0.8562046954290226}, \"rotation\": {\"x\": -1.5654714519512039, \"y\": 0.020114180758465293, \"z\": 0.356476042241195}, \"dimension\": {\"x\": 0.22109159455133578, \"y\": 0.014570920475546258, \"z\": 0.05130449534472152}}, \"gt_3d_vec_world_1\": [-0.9284659677520493, 2.55453611424133, 0.8542831097862101], \"gt_3d_vec_world_2\": [-0.9214657101643663, 2.5921965601531336, 0.8562046954290226]}, \"2\": {\"object_title\": \"phone\", \"3d_annotation_1\": {\"position\": {\"x\": -0.9177076253656572, \"y\": 2.773736914885987, \"z\": 0.8575179445381623}, \"rotation\": {\"x\": 0.13695331630003219, \"y\": -1.5514058223383105, \"z\": -0.026412450666449174}, \"dimension\": {\"x\": 0.010019824904742156, \"y\": 0.08702786881473644, \"z\": 0.15708123968527563}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9466158045765785, \"y\": 2.790913885723872, \"z\": 0.857913624943864}, \"rotation\": {\"x\": -3.11584280763815, \"y\": -1.5515359602461283, \"z\": 0.00554202249441559}, \"dimension\": {\"x\": 0.01606190857098802, \"y\": 0.0907696740200386, \"z\": 0.18461538461538451}}, \"gt_3d_vec_world_1\": [-0.9177076253656572, 2.773736914885987, 0.8575179445381623], \"gt_3d_vec_world_2\": [-0.9466158045765785, 2.790913885723872, 0.857913624943864]}}}]}, {\"clip_uid\": \"1eb995af-0fdd-4f0f-a5ba-089d4b8cb445\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"bottle\", \"3d_annotation_1\": {\"position\": {\"x\": -1.33943468712858, \"y\": 0.630653299614493, \"z\": 1.0052264032756693}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.7721595635885896}, \"dimension\": {\"x\": 0.10595761553537827, \"y\": 0.101922973977261, \"z\": 0.2937050116026965}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.3397342440190037, \"y\": 0.6272261867425388, \"z\": 1.0053543783684378}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.6133330992874704}, \"dimension\": {\"x\": 0.10535174560399348, \"y\": 0.09660914227418309, \"z\": 0.29266349491708127}}, \"gt_3d_vec_world_1\": [-1.33943468712858, 0.630653299614493, 1.0052264032756693], \"gt_3d_vec_world_2\": [-1.3397342440190037, 0.6272261867425388, 1.0053543783684378]}, \"3\": {\"object_title\": \"laptop\", \"3d_annotation_1\": {\"position\": {\"x\": -1.2133291662557513, \"y\": 3.6644207444841426, \"z\": 0.9917513009978225}, \"rotation\": {\"x\": -0.008009257314001133, \"y\": -0.011620792775143123, \"z\": 0.014087607465728206}, \"dimension\": {\"x\": 0.21792876885367007, \"y\": 0.3767393614153966, \"z\": 0.2511273945629984}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.2258452252874132, \"y\": 3.6647817237526508, \"z\": 0.9881769386855314}, \"rotation\": {\"x\": 4.6323769074026897e-17, \"y\": 3.8802080466367404e-17, \"z\": 0.026197208953710086}, \"dimension\": {\"x\": 0.2456503066575962, \"y\": 0.3686230789926337, \"z\": 0.24832202539428494}}, \"gt_3d_vec_world_1\": [-1.2133291662557513, 3.6644207444841426, 0.9917513009978225], \"gt_3d_vec_world_2\": [-1.2258452252874132, 3.6647817237526508, 0.9881769386855314]}, \"2\": {\"object_title\": \"phone\", \"3d_annotation_1\": {\"position\": {\"x\": -0.9356525938744581, \"y\": 2.791068629224036, \"z\": 0.8609450489891934}, \"rotation\": {\"x\": 1.7134783957216715, \"y\": -1.570718430872463, \"z\": 0.002964931623308055}, \"dimension\": {\"x\": 0.015059559176900992, \"y\": 0.16870098768304453, \"z\": 0.08361933505668857}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9374809925396609, \"y\": 2.780811390513951, \"z\": 0.8571951096830883}, \"rotation\": {\"x\": -3.020620719351535, \"y\": -1.5458219694515005, \"z\": 0.017633476495377675}, \"dimension\": {\"x\": 0.01338671293940325, \"y\": 0.07578287277430437, \"z\": 0.15128942197342132}}, \"gt_3d_vec_world_1\": [-0.9356525938744581, 2.791068629224036, 0.8609450489891934], \"gt_3d_vec_world_2\": [-0.9374809925396609, 2.780811390513951, 0.8571951096830883]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"spanner\", \"3d_annotation_1\": {\"position\": {\"x\": -1.4615053953067167, \"y\": 1.1323649602951982, \"z\": 1.4320558762889395}, \"rotation\": {\"x\": 4.05256768044164e-18, \"y\": 2.445535665689252e-16, \"z\": 0.027037610914958418}, \"dimension\": {\"x\": 0.018453952449243523, \"y\": 0.336253145048114, \"z\": 0.06447022171218299}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.4646899015689105, \"y\": 1.133994514319033, \"z\": 1.43163355383273}, \"rotation\": {\"x\": 3.141417214425502, \"y\": 0.022307603310405065, \"z\": 0.040807470088553496}, \"dimension\": {\"x\": 0.010085251592660226, \"y\": 0.336529521250187, \"z\": 0.06736130942107334}}, \"gt_3d_vec_world_1\": [-1.4615053953067167, 1.1323649602951982, 1.4320558762889395], \"gt_3d_vec_world_2\": [-1.4646899015689105, 1.133994514319033, 1.43163355383273], \"pred_3d_vec_world\": [-1.2148544996909207, -2.1126081236771284, 2.023630304468134]}, \"3\": {\"object_title\": \"tyre tube\", \"3d_annotation_1\": {\"position\": {\"x\": -0.9701483148486404, \"y\": 1.1237633888027925, \"z\": 0.8893063863022992}, \"rotation\": {\"x\": 1.5564490810801552, \"y\": -1.5717183690519583, \"z\": -0.006676271483745528}, \"dimension\": {\"x\": 0.06426885712809523, \"y\": 0.43924041354111454, \"z\": 0.40070392909717656}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9718652893943555, \"y\": 1.1193286963883646, \"z\": 0.8870374101416447}, \"rotation\": {\"x\": 1.572897250953795, \"y\": -1.551780514252596, \"z\": 0.02030622036816259}, \"dimension\": {\"x\": 0.069018249837943, \"y\": 0.5182029406874992, \"z\": 0.4453274167375264}}, \"gt_3d_vec_world_1\": [-0.9701483148486404, 1.1237633888027925, 0.8893063863022992], \"gt_3d_vec_world_2\": [-0.9718652893943555, 1.1193286963883646, 0.8870374101416447]}}}]}]}, {\"video_uid\": \"887a1aaa-2b7e-41d4-86c6-fa0c9d1015a0\", \"split\": \"val\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"89f8409e-483a-432f-9f42-6c96ecd07b76\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"mouse\", \"3d_annotation_1\": {\"position\": {\"x\": -1.0244087071659107, \"y\": 3.863148150249021, \"z\": 0.8761616143245045}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.4379679633715426}, \"dimension\": {\"x\": 0.1395854262837295, \"y\": 0.07094679802905737, \"z\": 0.03258785942492021}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.0301711391005643, \"y\": 3.887459410573949, \"z\": 0.876376284620102}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.2598578492717637}, \"dimension\": {\"x\": 0.11638220702328214, \"y\": 0.06777584090164962, \"z\": 0.03181874357644781}}, \"gt_3d_vec_world_1\": [-1.0244087071659107, 3.863148150249021, 0.8761616143245045], \"gt_3d_vec_world_2\": [-1.0301711391005643, 3.887459410573949, 0.876376284620102]}, \"2\": {\"object_title\": \"chair\", \"3d_annotation_1\": {\"position\": {\"x\": -0.5286491618970688, \"y\": 3.6441579273330578, \"z\": 0.5010769372740788}, \"rotation\": {\"x\": -3.134930076886034, \"y\": -3.1366847094168815, \"z\": -0.8079391356395954}, \"dimension\": {\"x\": 0.6133805505433526, \"y\": 0.6400343080763049, \"z\": 1.002300827800701}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.5215200719219779, \"y\": 3.648735002256017, \"z\": 0.4969249420262298}, \"rotation\": {\"x\": -3.141592653589793, \"y\": 3.141592653589793, \"z\": -0.7876334995280143}, \"dimension\": {\"x\": 0.5997222166024151, \"y\": 0.639790966500728, \"z\": 0.9914140604125787}}, \"gt_3d_vec_world_1\": [-0.5286491618970688, 3.6441579273330578, 0.5010769372740788], \"gt_3d_vec_world_2\": [-0.5215200719219779, 3.648735002256017, 0.4969249420262298], \"pred_3d_vec_world\": [1.8894922649598878, -2.318752145162548, -1.0074776088843858]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"water bottle\", \"3d_annotation_1\": {\"position\": {\"x\": -1.3772443275162338, \"y\": 2.583753886375738, \"z\": 1.0081853361000062}, \"rotation\": {\"x\": 0.024155670409436968, \"y\": -0.27911886206615383, \"z\": 0.03596811447724807}, \"dimension\": {\"x\": 0.09740903242771805, \"y\": 0.09194295215138418, \"z\": 0.3118471809293505}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.2999403045491125, \"y\": 2.5861905294544956, \"z\": 1.007387442743988}, \"rotation\": {\"x\": 1.5866935167901801, \"y\": -0.021564201835119506, \"z\": -0.0017442383827329956}, \"dimension\": {\"x\": 0.10988297113598638, \"y\": 0.31752054293505255, \"z\": 0.11193629725676373}}, \"gt_3d_vec_world_1\": [-1.3772443275162338, 2.583753886375738, 1.0081853361000062], \"gt_3d_vec_world_2\": [-1.2999403045491125, 2.5861905294544956, 1.007387442743988], \"gt_3d_vec_1\": [1.340409883109028, 0.08420742938855841, -0.17617137521096482], \"gt_3d_vec_2\": [1.3269395738432586, 0.00814435755639309, -0.17224127318411186]}, \"2\": {\"object_title\": \"chair\", \"3d_annotation_1\": {\"position\": {\"x\": -0.6426571213750172, \"y\": 3.622209676347974, \"z\": 0.49610501973696136}, \"rotation\": {\"x\": 3.141592653589792, \"y\": 3.1415926535897913, \"z\": -1.0984623050681792}, \"dimension\": {\"x\": 0.6496797644825565, \"y\": 0.6494934825173821, \"z\": 0.9936102236421723}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.4711452148866293, \"y\": 3.671663734150969, \"z\": 0.49816567452390187}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": -0.8003559784455033}, \"dimension\": {\"x\": 0.7081414773686391, \"y\": 0.5818618017813566, \"z\": 0.9977752725212713}}, \"gt_3d_vec_world_1\": [-0.6426571213750172, 3.622209676347974, 0.49610501973696136], \"gt_3d_vec_world_2\": [-0.4711452148866293, 3.671663734150969, 0.49816567452390187], \"pred_3d_vec_world\": [-0.40513318088731115, -3.563028125423749, -0.35453621164641547]}, \"3\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": 1.238401691422724, \"y\": 4.21768937965459, \"z\": 0.7439957237643982}, \"rotation\": {\"x\": -1.6064787829795526e-16, \"y\": 1.3307630644190903e-17, \"z\": 0.00875809915245361}, \"dimension\": {\"x\": 0.17933047644585762, \"y\": 0.03692681020689854, \"z\": 0.016371149777998306}}, \"3d_annotation_2\": {\"position\": {\"x\": 1.4132847115331981, \"y\": 4.042264812737869, \"z\": 0.7483834140690587}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.011137886268989034}, \"dimension\": {\"x\": 0.16595029048998672, \"y\": 0.03626284480592605, \"z\": 0.029350093947730138}}, \"gt_3d_vec_world_1\": [1.238401691422724, 4.21768937965459, 0.7439957237643982], \"gt_3d_vec_world_2\": [1.4132847115331981, 4.042264812737869, 0.7483834140690587], \"gt_3d_vec_1\": [3.5809313243140486, 2.9079295724196186, -0.9885259869696134], \"gt_3d_vec_2\": [3.36140296885418, 2.7981507576453075, -0.9548657106350055], \"pred_3d_vec\": [4.273105101342501, -2.9616906870153747, 1.661627597989813], \"pred_3d_vec_world\": [-1.2811672971312413, -1.6382401637025863, -0.40261748329481684]}}}]}, {\"clip_uid\": \"e30fa220-83a0-4601-938e-6acb14211b72\", \"annotations\": [{}, {\"query_sets\": {\"1\": {\"object_title\": \"bike tire\", \"3d_annotation_1\": {\"position\": {\"x\": 0.46572664540739733, \"y\": 3.3081206524343774, \"z\": 0.3846526798806433}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.4863059174531879}, \"dimension\": {\"x\": 0.061821085567684446, \"y\": 0.5305266237323313, \"z\": 0.5042232243399999}}, \"3d_annotation_2\": {\"position\": {\"x\": 0.6104794386469883, \"y\": 3.408478004639342, \"z\": 0.3426125589213275}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.5363871982259178}, \"dimension\": {\"x\": 0.12640965709390212, \"y\": 0.6218772134296688, \"z\": 0.5878649452977388}}, \"gt_3d_vec_world_1\": [0.46572664540739733, 3.3081206524343774, 0.3846526798806433], \"gt_3d_vec_world_2\": [0.6104794386469883, 3.408478004639342, 0.3426125589213275], \"gt_3d_vec_1\": [-0.20701066300365495, -1.9291826061386637, 0.9849134846223992], \"gt_3d_vec_2\": [-0.30755836490291827, -2.0495078670367164, 1.0754912539431405]}, \"2\": {\"object_title\": \"screw driver\", \"3d_annotation_1\": {\"position\": {\"x\": -0.9181729274959002, \"y\": 2.5986328035203536, \"z\": 0.8616271172132424}, \"rotation\": {\"x\": -3.1415926535897927, \"y\": -3.141592653589793, \"z\": -1.2191836367235467}, \"dimension\": {\"x\": 0.20074115886875948, \"y\": 0.049329487151020396, \"z\": 0.029451725611654263}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9485287195606444, \"y\": 2.554683088677261, \"z\": 0.8586985969636338}, \"rotation\": {\"x\": 3.1415926535897927, \"y\": 3.1415926535897927, \"z\": -1.1190839213999044}, \"dimension\": {\"x\": 0.20143081579469446, \"y\": 0.03976617191996221, \"z\": 0.022430178132686496}}, \"gt_3d_vec_world_1\": [-0.9181729274959002, 2.5986328035203536, 0.8616271172132424], \"gt_3d_vec_world_2\": [-0.9485287195606444, 2.554683088677261, 0.8586985969636338]}}}]}]}, {\"video_uid\": \"9c785597-7d3e-4831-a8b9-9e640e3bbb83\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"8d9b71b3-da22-41d2-bc2f-a0a1a6fd9c8a\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"phone\", \"3d_annotation_1\": {\"position\": {\"x\": -3.252449209767832, \"y\": -3.249589576163115, \"z\": 1.080608317642004}, \"rotation\": {\"x\": 0.6762274129837649, \"y\": -1.6284224940560263, \"z\": -0.04160123773766576}, \"dimension\": {\"x\": 0.013821502822142298, \"y\": 0.09894386860905281, \"z\": 0.038259741995037636}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.2640542252497644, \"y\": -3.2134582303644477, \"z\": 1.0831090447296243}, \"rotation\": {\"x\": 0.4943450958428066, \"y\": -1.5565337749177803, \"z\": 0.016735857884044674}, \"dimension\": {\"x\": 0.02288578573937832, \"y\": 0.13193266015789987, \"z\": 0.05134348085500054}}, \"gt_3d_vec_world_1\": [-3.252449209767832, -3.249589576163115, 1.080608317642004], \"gt_3d_vec_world_2\": [-3.2640542252497644, -3.2134582303644477, 1.0831090447296243]}, \"2\": {\"object_title\": \"drill machine\", \"3d_annotation_1\": {\"position\": {\"x\": -2.8422908637271056, \"y\": -1.8108951037003214, \"z\": 0.043356404787128974}, \"rotation\": {\"x\": -3.1415483948530616, \"y\": -3.1227342737193955, \"z\": 0.5823012206144736}, \"dimension\": {\"x\": 0.19373764259723023, \"y\": 0.273718156842755, \"z\": 0.07344632768361588}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.9028241381309479, \"y\": -0.2491083473475562, \"z\": 0.6628065095853833}, \"rotation\": {\"x\": -1.569402602896472, \"y\": -3.08799264714892, \"z\": 0.5842622819455283}, \"dimension\": {\"x\": 0.2003146609330297, \"y\": 0.07228405785104008, \"z\": 0.2997027785681298}}, \"gt_3d_vec_world_1\": [-2.8422908637271056, -1.8108951037003214, 0.043356404787128974], \"gt_3d_vec_world_2\": [-1.9028241381309479, -0.2491083473475562, 0.6628065095853833]}, \"3\": {\"object_title\": \"scissors\", \"3d_annotation_1\": {\"position\": {\"x\": -1.7211046054198254, \"y\": -1.3095703639597973, \"z\": 0.0030455875922870412}, \"rotation\": {\"x\": 1.3700866354618917, \"y\": 0.21251167199736867, \"z\": 1.5142746637135844}, \"dimension\": {\"x\": 0.1833659560574964, \"y\": 0.01003319611272294, \"z\": 0.09775512878616946}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.697050213597023, \"y\": -1.3332506916816063, \"z\": 0.005536515836532522}, \"rotation\": {\"x\": -0.03541595517682888, \"y\": 0.0400567934031467, \"z\": 1.3971737440143557}, \"dimension\": {\"x\": 0.1804995539487884, \"y\": 0.10348838514368636, \"z\": 0.014523258500778735}}, \"gt_3d_vec_world_1\": [-1.7211046054198254, -1.3095703639597973, 0.0030455875922870412], \"gt_3d_vec_world_2\": [-1.697050213597023, -1.3332506916816063, 0.005536515836532522]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"cordless drill driver\", \"3d_annotation_1\": {\"position\": {\"x\": -1.6905466601847572, \"y\": -0.05235426080375688, \"z\": 0.8427497974691751}, \"rotation\": {\"x\": -1.558172832888303, \"y\": 3.1186366876226237, \"z\": 0.44369200816799165}, \"dimension\": {\"x\": 0.17995564650506451, \"y\": 0.08671664995581191, \"z\": 0.2676952483793256}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.790313645988463, \"y\": -0.29630165147433496, \"z\": 0.8015293725133507}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 2.2613438826556105}, \"dimension\": {\"x\": 0.23600933220027914, \"y\": 0.2750734683096929, \"z\": 0.08630423116259883}}, \"gt_3d_vec_world_1\": [-1.6905466601847572, -0.05235426080375688, 0.8427497974691751], \"gt_3d_vec_world_2\": [-1.790313645988463, -0.29630165147433496, 0.8015293725133507]}, \"2\": {\"object_title\": \"can spray\", \"3d_annotation_1\": {\"position\": {\"x\": -3.2265035403471347, \"y\": -0.18775130729252812, \"z\": 1.0704866878719779}, \"rotation\": {\"x\": -0.27916424472994333, \"y\": -0.2796474680716572, \"z\": -1.5405149470332953}, \"dimension\": {\"x\": 0.0848647225536881, \"y\": 0.07874853938070654, \"z\": 0.24095972013660655}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.2518884983846825, \"y\": -0.14195565095727464, \"z\": 1.0432588198894883}, \"rotation\": {\"x\": -3.1415926535897922, \"y\": -3.1415926535897922, \"z\": -1.4703729842264577}, \"dimension\": {\"x\": 0.06840770194948814, \"y\": 0.06847226368237058, \"z\": 0.18228756756756775}}, \"gt_3d_vec_world_1\": [-3.2265035403471347, -0.18775130729252812, 1.0704866878719779], \"gt_3d_vec_world_2\": [-3.2518884983846825, -0.14195565095727464, 1.0432588198894883]}}}]}]}, {\"video_uid\": \"bedaa131-deae-4279-9fd4-5b6ab552644c\", \"split\": \"val\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"efe7dfaa-07e0-42d5-85eb-1e6f93409ab5\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"plastic bottle\", \"3d_annotation_1\": {\"position\": {\"x\": -2.971361154544219, \"y\": -5.7377991181271515, \"z\": 1.0062011025573947}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.5540766367261991}, \"dimension\": {\"x\": 0.12816413443846225, \"y\": 0.11768901619169402, \"z\": 0.3336168455106919}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.9560247342736203, \"y\": -5.752489519924825, \"z\": 1.0034780509533208}, \"rotation\": {\"x\": 3.233601907202876e-16, \"y\": -3.234582656466651e-16, \"z\": 1.5578923316327642}, \"dimension\": {\"x\": 0.10067427713613002, \"y\": 0.10327383082588754, \"z\": 0.33253265001125876}}, \"gt_3d_vec_world_1\": [-2.971361154544219, -5.7377991181271515, 1.0062011025573947], \"gt_3d_vec_world_2\": [-2.9560247342736203, -5.752489519924825, 1.0034780509533208]}, \"2\": {\"object_title\": \"screwdriver\", \"3d_annotation_1\": {\"position\": {\"x\": -1.935002766250817, \"y\": -3.7171581749888323, \"z\": 0.18590442276801436}, \"rotation\": {\"x\": 2.4103644681171333e-15, \"y\": -2.265526299159685e-15, \"z\": 0.6823664255406038}, \"dimension\": {\"x\": 0.14260035198723425, \"y\": 0.04740971609599824, \"z\": 0.02328412163194858}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.9109160651550257, \"y\": -3.6972083584245854, \"z\": 0.1864578629357365}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.7825990804970685}, \"dimension\": {\"x\": 0.22563367795048997, \"y\": 0.023297570666569303, \"z\": 0.02414127237786992}}, \"gt_3d_vec_world_1\": [-1.935002766250817, -3.7171581749888323, 0.18590442276801436], \"gt_3d_vec_world_2\": [-1.9109160651550257, -3.6972083584245854, 0.1864578629357365], \"gt_3d_vec_1\": [-51.85360473608275, -197.53754193681365, 185.02959520760956], \"gt_3d_vec_2\": [-51.86910982481606, -197.56303221565133, 185.02019794445502]}, \"3\": {\"object_title\": \"t wrench\", \"3d_annotation_1\": {\"position\": {\"x\": -1.6204163527566235, \"y\": -2.6981436293965637, \"z\": 0.1777917479086598}, \"rotation\": {\"x\": -4.236593696950058e-05, \"y\": 0.0018746728633761637, \"z\": 0.8656185732917416}, \"dimension\": {\"x\": 0.22084723484368093, \"y\": 0.15221798084484348, \"z\": 0.015158981060685636}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.6584697461683102, \"y\": -2.733870374639935, \"z\": 0.18231667539358315}, \"rotation\": {\"x\": -1.2781603162488674e-16, \"y\": 1.3180467684642264e-16, \"z\": 0.6403709047009816}, \"dimension\": {\"x\": 0.23638553120350597, \"y\": 0.16797001027997802, \"z\": 0.023669116045470426}}, \"gt_3d_vec_world_1\": [-1.6204163527566235, -2.6981436293965637, 0.1777917479086598], \"gt_3d_vec_world_2\": [-1.6584697461683102, -2.733870374639935, 0.18231667539358315]}}}]}, {\"clip_uid\": \"477894c0-9bec-4271-9852-6d28bc05abfe\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"green plastic bottle\", \"3d_annotation_1\": {\"position\": {\"x\": -2.9754989967746788, \"y\": -5.727263456647061, \"z\": 1.0074020310508143}, \"rotation\": {\"x\": -1.603338339537942, \"y\": 1.6024740514071099, \"z\": 1.5569301148090646}, \"dimension\": {\"x\": 0.1095832110306159, \"y\": 0.09928276708123747, \"z\": 0.33830271883678936}}, \"3d_annotation_2\": {\"position\": {\"x\": -2.965802041827023, \"y\": -5.763735729059451, \"z\": 1.0021184726689176}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 1.5339631158387301}, \"dimension\": {\"x\": 0.09749368404890818, \"y\": 0.09707214112606224, \"z\": 0.3272593357925407}}, \"gt_3d_vec_world_1\": [-2.9754989967746788, -5.727263456647061, 1.0074020310508143], \"gt_3d_vec_world_2\": [-2.965802041827023, -5.763735729059451, 1.0021184726689176], \"pred_3d_vec_world\": [3.0302262426611346, -0.4357926020636021, -0.9080694007770798]}}}, {\"query_sets\": {\"3\": {\"object_title\": \"cellphone\", \"3d_annotation_1\": {\"position\": {\"x\": -3.1636010434092574, \"y\": -4.593097406059844, \"z\": 1.4085948291934591}, \"rotation\": {\"x\": 1.5802216418629105, \"y\": -0.24034769059508812, \"z\": 0.2677459601779108}, \"dimension\": {\"x\": 0.014370244059466316, \"y\": 0.06782883797089352, \"z\": 0.11466688442262235}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.20879622821497, \"y\": -4.564170324985852, \"z\": 1.3819747042576958}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.5273199182720898}, \"dimension\": {\"x\": 0.010501911200438812, \"y\": 0.11520587652132819, \"z\": 0.054672579310228675}}, \"gt_3d_vec_world_1\": [-3.1636010434092574, -4.593097406059844, 1.4085948291934591], \"gt_3d_vec_world_2\": [-3.20879622821497, -4.564170324985852, 1.3819747042576958]}, \"1\": {\"object_title\": \"scissors\", \"3d_annotation_1\": {\"position\": {\"x\": -3.08911457300881, \"y\": -0.07980132051570049, \"z\": 0.9550893638723598}, \"rotation\": {\"x\": 3.141592653589793, \"y\": 3.141592653589793, \"z\": -1.0190890672398705}, \"dimension\": {\"x\": 0.18334977348550582, \"y\": 0.09557032757108151, \"z\": 0.014365915037764465}}, \"3d_annotation_2\": {\"position\": {\"x\": -3.120401392749411, \"y\": -0.1174275900209733, \"z\": 0.9567574001412875}, \"rotation\": {\"x\": -3.123895089789357, \"y\": -3.1199788056041617, \"z\": -0.8775199270961064}, \"dimension\": {\"x\": 0.18623271689793092, \"y\": 0.1086630116385294, \"z\": 0.015470128723395173}}, \"gt_3d_vec_world_1\": [-3.08911457300881, -0.07980132051570049, 0.9550893638723598], \"gt_3d_vec_world_2\": [-3.120401392749411, -0.1174275900209733, 0.9567574001412875], \"gt_3d_vec_1\": [-5.961195357684662, 1.0162986885650427, 0.9562955204593965], \"gt_3d_vec_2\": [-6.00667474623703, 1.0137749923370847, 0.9742576964303196]}}}]}]}, {\"video_uid\": \"fdcdf464-a350-452d-9741-f6725e138192\", \"split\": \"val\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"ad9083b3-9b0b-4c27-a941-38f57be13edf\", \"annotations\": [{\"query_sets\": {\"3\": {\"object_title\": \"mobile phone\", \"3d_annotation_1\": {\"position\": {\"x\": -1.025176248870363, \"y\": 3.4103491288932597, \"z\": 0.868528159599858}, \"rotation\": {\"x\": -0.12805750874171065, \"y\": -1.6087189890954265, \"z\": 0.015597756554093671}, \"dimension\": {\"x\": 0.012207382135499701, \"y\": 0.06638539815232729, \"z\": 0.13512213706462603}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.0301495609532076, \"y\": 3.4120638320165835, \"z\": 0.8691753273229961}, \"rotation\": {\"x\": 1.37852229657264, \"y\": -1.570727570777554, \"z\": 0.0006347216944101296}, \"dimension\": {\"x\": 0.012153583995829253, \"y\": 0.1460310617341533, \"z\": 0.07897143850896786}}, \"gt_3d_vec_world_1\": [-1.025176248870363, 3.4103491288932597, 0.868528159599858], \"gt_3d_vec_world_2\": [-1.0301495609532076, 3.4120638320165835, 0.8691753273229961]}}}, {\"query_sets\": {\"2\": {\"object_title\": \"scissor\", \"3d_annotation_1\": {\"position\": {\"x\": -1.1059235771234257, \"y\": 2.205054907125597, \"z\": 0.855877965032591}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.3077907016464975}, \"dimension\": {\"x\": 0.1633437739227026, \"y\": 0.09696973225601829, \"z\": 0.016335350403702213}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.0991580981853109, \"y\": 2.1958836202256684, \"z\": 0.8568867388190246}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.5654935254551894}, \"dimension\": {\"x\": 0.160954641860582, \"y\": 0.07273216547627932, \"z\": 0.018897479157193586}}, \"gt_3d_vec_world_1\": [-1.1059235771234257, 2.205054907125597, 0.855877965032591], \"gt_3d_vec_world_2\": [-1.0991580981853109, 2.1958836202256684, 0.8568867388190246], \"pred_3d_vec_world\": [-3.1590875917276424, 0.03310652189693508, -0.30426689168388577]}, \"1\": {\"object_title\": \"hammer\", \"3d_annotation_1\": {\"position\": {\"x\": -1.0564414835239058, \"y\": 1.7804616332713066, \"z\": 0.8702955141774188}, \"rotation\": {\"x\": -1.5746782091508973, \"y\": 0.007200339218432307, \"z\": 0.44364452610059874}, \"dimension\": {\"x\": 0.11025775182216697, \"y\": 0.04761232561601788, \"z\": 0.2966476136860913}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.0762018167374507, \"y\": 1.7890333917240369, \"z\": 0.8647502465105621}, \"rotation\": {\"x\": 0.015107606718828248, \"y\": 0.0009859402300051792, \"z\": 0.41443966002249877}, \"dimension\": {\"x\": 0.1339024516631924, \"y\": 0.3172573275080375, \"z\": 0.028375136254183562}}, \"gt_3d_vec_world_1\": [-1.0564414835239058, 1.7804616332713066, 0.8702955141774188], \"gt_3d_vec_world_2\": [-1.0762018167374507, 1.7890333917240369, 0.8647502465105621]}, \"3\": {\"object_title\": \"spray can\", \"3d_annotation_1\": {\"position\": {\"x\": -1.2367879992551365, \"y\": 1.7116657215549325, \"z\": 0.9524256169276147}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.4222508634994226}, \"dimension\": {\"x\": 0.07374291635036534, \"y\": 0.07623029167890147, \"z\": 0.20918232580219714}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.229871577753404, \"y\": 1.7521812770732785, \"z\": 0.9438585650406085}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -1.5506075617700377}, \"dimension\": {\"x\": 0.08812721252348306, \"y\": 0.08810874840341498, \"z\": 0.19248933143669983}}, \"gt_3d_vec_world_1\": [-1.2367879992551365, 1.7116657215549325, 0.9524256169276147], \"gt_3d_vec_world_2\": [-1.229871577753404, 1.7521812770732785, 0.9438585650406085]}}}, {\"query_sets\": {\"3\": {\"object_title\": \"scissors\", \"3d_annotation_1\": {\"position\": {\"x\": -1.2402236404142182, \"y\": 2.7354367901707035, \"z\": 1.141372459299083}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.09972396392543309}, \"dimension\": {\"x\": 0.18260031019311287, \"y\": 0.054937139279576906, \"z\": 0.025874809689267867}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.2688550995972088, \"y\": 2.742775023341986, \"z\": 1.1218458852857185}, \"rotation\": {\"x\": -3.141592653589793, \"y\": -3.141592653589793, \"z\": 0.14040433493024213}, \"dimension\": {\"x\": 0.2241174904484398, \"y\": 0.08536333496041618, \"z\": 0.013324749680894716}}, \"gt_3d_vec_world_1\": [-1.2402236404142182, 2.7354367901707035, 1.141372459299083], \"gt_3d_vec_world_2\": [-1.2688550995972088, 2.742775023341986, 1.1218458852857185]}, \"2\": {\"object_title\": \"wrench\", \"3d_annotation_1\": {\"position\": {\"x\": -1.0155048851975317, \"y\": 2.0080872054628736, \"z\": 0.8611315039577038}, \"rotation\": {\"x\": -1.5959836881741134, \"y\": 3.122108834839037, \"z\": -0.20095625602721728}, \"dimension\": {\"x\": 0.20526965780189016, \"y\": 0.01580765567408859, \"z\": 0.05752106631655405}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.0228994573546044, \"y\": 2.023055835257968, \"z\": 0.8617187757619935}, \"rotation\": {\"x\": 3.134268354075085, \"y\": 3.1162819995217896, \"z\": -0.18826438329595616}, \"dimension\": {\"x\": 0.2112452462318178, \"y\": 0.06001665175534782, \"z\": 0.015578061830495378}}, \"gt_3d_vec_world_1\": [-1.0155048851975317, 2.0080872054628736, 0.8611315039577038], \"gt_3d_vec_world_2\": [-1.0228994573546044, 2.023055835257968, 0.8617187757619935]}}}, {\"query_sets\": {\"1\": {\"object_title\": \"hammer\", \"3d_annotation_1\": {\"position\": {\"x\": -1.460080094118312, \"y\": 2.1607924351756442, \"z\": 1.5716726198903355}, \"rotation\": {\"x\": 1.5104536901624295, \"y\": 1.590164644353533, \"z\": 0.007859580981473232}, \"dimension\": {\"x\": 0.12398616138409321, \"y\": 0.03628165708924261, \"z\": 0.35670203602196937}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.4542672822430487, \"y\": 2.1616697274016934, \"z\": 1.588608367727638}, \"rotation\": {\"x\": -0.04812060867487967, \"y\": 1.6484000589302472, \"z\": -0.0014418201646998988}, \"dimension\": {\"x\": 0.13240920269782613, \"y\": 0.36509455042665523, \"z\": 0.041905522497998844}}, \"gt_3d_vec_world_1\": [-1.460080094118312, 2.1607924351756442, 1.5716726198903355], \"gt_3d_vec_world_2\": [-1.4542672822430487, 2.1616697274016934, 1.588608367727638]}}}]}, {\"clip_uid\": \"151a8f90-fdec-4693-89d4-1a6e6459a612\", \"annotations\": [{\"query_sets\": {\"1\": {\"object_title\": \"scissors\", \"3d_annotation_1\": {\"position\": {\"x\": -1.114123087510284, \"y\": 2.2122099170881437, \"z\": 0.8582668212139581}, \"rotation\": {\"x\": -0.013790090282319239, \"y\": 0.0017619482157263094, \"z\": 0.4672151381422101}, \"dimension\": {\"x\": 0.1673255796348092, \"y\": 0.077388553316032, \"z\": 0.017454662005486066}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.0880456159250587, \"y\": 2.1936000246704457, \"z\": 0.8633281474467462}, \"rotation\": {\"x\": -0.035512639500729117, \"y\": -0.009069095666142418, \"z\": 0.6540633989689715}, \"dimension\": {\"x\": 0.19496295712409972, \"y\": 0.09677970580861822, \"z\": 0.019741020649024776}}, \"gt_3d_vec_world_1\": [-1.114123087510284, 2.2122099170881437, 0.8582668212139581], \"gt_3d_vec_world_2\": [-1.0880456159250587, 2.1936000246704457, 0.8633281474467462]}, \"2\": {\"object_title\": \"bottle\", \"3d_annotation_1\": {\"position\": {\"x\": -1.1961950030638617, \"y\": 2.4936303520717127, \"z\": 1.0070523975321677}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": -0.024506656902621538}, \"dimension\": {\"x\": 0.10387026122227994, \"y\": 0.10465147472103403, \"z\": 0.3180849599375521}}, \"3d_annotation_2\": {\"position\": {\"x\": -1.1714907241120178, \"y\": 2.4782210574389216, \"z\": 1.0099238274379898}, \"rotation\": {\"x\": 0, \"y\": 0, \"z\": 0.8973151430210599}, \"dimension\": {\"x\": 0.11281500625035368, \"y\": 0.11334683540907363, \"z\": 0.3236118047448033}}, \"gt_3d_vec_world_1\": [-1.1961950030638617, 2.4936303520717127, 1.0070523975321677], \"gt_3d_vec_world_2\": [-1.1714907241120178, 2.4782210574389216, 1.0099238274379898]}, \"3\": {\"object_title\": \"plier\", \"3d_annotation_1\": {\"position\": {\"x\": -0.965251494925067, \"y\": 2.3056641328748526, \"z\": 0.8565912569990615}, \"rotation\": {\"x\": -3.1294167824420644, \"y\": 3.1410009873012843, \"z\": -0.09770777220147137}, \"dimension\": {\"x\": 0.15963678830672745, \"y\": 0.07909448540855266, \"z\": 0.01654164119859239}}, \"3d_annotation_2\": {\"position\": {\"x\": -0.9688617333820996, \"y\": 2.307757329470579, \"z\": 0.8576692154090741}, \"rotation\": {\"x\": -1.5352915039306474, \"y\": -3.1277695990418946, \"z\": -0.17101677190120812}, \"dimension\": {\"x\": 0.127571353878032, \"y\": 0.012947443259578887, \"z\": 0.06923126473812145}}, \"gt_3d_vec_world_1\": [-0.965251494925067, 2.3056641328748526, 0.8565912569990615], \"gt_3d_vec_world_2\": [-0.9688617333820996, 2.307757329470579, 0.8576692154090741]}}}]}]}]}"
  },
  {
    "path": "VQ3D/data/vq3d_test_unannotated_template.json",
    "content": "{\"version\": \"1\", \"date\": \"220202\", \"description\": \"VQ3D annotations (test)\", \"manifest\": \"s3://ego4d-consortium-sharing/public/v1/full_scale/manifest.csv\", \"videos\": [{\"video_uid\": \"13e70b53-abc6-46d3-96da-d30b8327b223\", \"split\": \"test\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"c1d2ee0f-a206-471a-84ba-55015139baf8\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"3\": {}, \"1\": {}}, \"annotation_uid\": \"efb4f9ca-42ce-4fd3-9817-01f58078331e\"}]}, {\"clip_uid\": \"a70bea55-d052-4650-b0e3-9f2e9ec69700\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"3\": {}, \"1\": {}}, \"annotation_uid\": \"6477c59c-3aac-4c84-b0b5-e30300e62904\"}, {\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"f89c1e03-dc4e-4170-b7ca-97bfa6b58e68\"}]}, {\"clip_uid\": \"ed33c3c9-2e63-47ec-a3d8-0408910a1bef\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"4ad36fa2-2674-45d3-810b-66f27818a75b\"}, {\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"316f994e-ddcd-462a-965b-944c447ad773\"}]}]}, {\"video_uid\": \"45219b12-3546-49ff-915a-e802739190c0\", \"split\": \"test\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"3eb5afd6-4adf-4801-b53a-d2090251d878\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"f920784f-0424-4c79-bdab-4b4df72f34d6\"}]}, {\"clip_uid\": \"c474b461-e727-429f-b253-ac7ebc10097a\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"39d92ea5-3957-459f-9551-b89ab1e13a47\"}, {\"query_sets\": {\"1\": {}, \"2\": {}}, \"annotation_uid\": \"61272741-d83c-4e7c-9a2c-a314bc9dd6fb\"}]}]}, {\"video_uid\": \"46d00bf5-ed73-4e5f-84eb-9c880eec10d8\", \"split\": \"test\", \"scan_uid\": \"unict_Baker_32\", \"clips\": [{\"clip_uid\": \"2337fc5e-4798-45a9-af6e-64476df3be46\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"4d89c189-cf1c-460b-a1a1-ced1bff05f8c\"}, {\"query_sets\": {\"3\": {}, \"1\": {}}, \"annotation_uid\": \"2f2c13e4-a561-4470-b05c-12c96a26574d\"}]}, {\"clip_uid\": \"cac8a35c-026b-4c17-8f95-9cfbcfca1979\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"1\": {}}, \"annotation_uid\": \"143a54e2-4006-45b9-9b14-7e3ace47aaf5\"}, {\"query_sets\": {\"3\": {}, \"1\": {}, \"2\": {}}, \"annotation_uid\": \"3b90e807-35e0-4d7e-a868-c8f0368ef3f6\"}]}, {\"clip_uid\": \"e8c55e7d-8767-43fd-b74f-01ffaa9f02f8\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"2d3fd581-3fd3-475a-a0f1-8eded2a32c62\"}]}, {\"clip_uid\": \"17940429-cddd-4146-a7be-d50c815919fe\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"3\": {}, \"1\": {}}, \"annotation_uid\": \"c4e74bec-bea6-4f52-b7ab-30298359fffa\"}]}]}, {\"video_uid\": \"526d389b-a187-4c63-a5c6-c36bd66266b6\", \"split\": \"test\", \"scan_uid\": \"unict_Baker_32\", \"clips\": [{\"clip_uid\": \"95ebdc21-8a19-4d5b-b620-eeb082362fe0\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"a5253bcb-57dd-42a7-b137-8c33c38fbe02\"}, {\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"86f1c248-26d8-4827-8443-d5193562dd70\"}]}, {\"clip_uid\": \"058464f1-2c8d-4c71-8e76-bbc053a9f1b3\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"3\": {}, \"1\": {}}, \"annotation_uid\": \"6a7b755b-16ea-4ac7-892a-b1cdfe979003\"}, {\"query_sets\": {\"3\": {}, \"2\": {}, \"1\": {}}, \"annotation_uid\": \"623cc1e0-f3cc-4ba4-bbfe-914fc7fad0a2\"}]}, {\"clip_uid\": \"b69ae0ef-cb54-43a1-bc66-84449063f99e\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"706c28f5-6bf0-4d84-973b-790473e6fdaf\"}]}, {\"clip_uid\": \"d407ae63-1969-4593-adde-c88ee56b0eb4\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"2\": {}}, \"annotation_uid\": \"738dbafd-251c-4929-a83d-8df0863ac595\"}, {\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"801bb0df-f894-4532-8dbc-88da07b0a250\"}]}, {\"clip_uid\": \"e806ab3b-b1c0-4d2e-9055-a04a22630963\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"d90d2a75-bced-4333-9086-6dde587524f1\"}, {\"query_sets\": {\"2\": {}, \"3\": {}, \"1\": {}}, \"annotation_uid\": \"fba863d8-f7e4-4147-8db5-e79c40ec3a5a\"}]}]}, {\"video_uid\": \"542bd8e2-37a1-49be-8f4c-0fedeb1cc9f1\", \"split\": \"test\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"ab35e7a4-ff70-4eb3-a82d-03e00e6c601c\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"4c2612a5-2888-4385-9717-560837cb7fa0\"}]}, {\"clip_uid\": \"1ee9157c-60da-4f7a-a573-938e609bab6d\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}}, \"annotation_uid\": \"005927f3-25b9-4a2c-8c1b-bdfcb7a9685d\"}]}, {\"clip_uid\": \"d51751f0-300a-41f0-9b69-5aa9cf04379a\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"4b3d73a1-1418-4ef7-9b2d-54a29adb0f67\"}]}]}, {\"video_uid\": \"5b4ee633-78b9-4282-b001-5a85373d549e\", \"split\": \"test\", \"scan_uid\": \"unict_Baker_32\", \"clips\": [{\"clip_uid\": \"bbad791f-88e7-4163-8c42-c6c8364d3221\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}}, \"annotation_uid\": \"ef195634-1717-472c-a460-963f81b62ff2\"}, {\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"7885cc9c-2ed1-44d6-b364-738a6163d39c\"}]}, {\"clip_uid\": \"759daf88-1e43-4f09-8486-725ca9d8971d\", \"annotations\": [{}, {\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"a7b6875e-a6bf-4ac5-86ad-62e7661d661b\"}]}]}, {\"video_uid\": \"7bca86ab-7327-4a38-8d2f-0a668da52f5d\", \"split\": \"test\", \"scan_uid\": \"unict_Baker_32\", \"clips\": [{\"clip_uid\": \"20b16edf-9cdd-440b-9ebf-811d0e2647ac\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"2\": {}, \"1\": {}}, \"annotation_uid\": \"52fa89c4-2f65-42d4-b729-d277991324a5\"}]}, {\"clip_uid\": \"fa2ef57b-25cc-41a8-9acc-16497a7cc206\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"8e1c12d6-9505-4b5b-a779-5b6305930e17\"}, {\"query_sets\": {\"1\": {}, \"2\": {}}, \"annotation_uid\": \"bfd7a4c9-a1bf-44fb-9869-7b0289f1be7a\"}]}, {\"clip_uid\": \"0b8b281c-d26b-4059-9bb5-7ea96e57aa6e\", \"annotations\": [{\"query_sets\": {\"3\": {}}, \"annotation_uid\": \"293aff8e-d239-4feb-98b6-c1c9671045d1\"}]}]}, {\"video_uid\": \"90e4acc5-28a2-4bd4-972c-c6f7e18e1cde\", \"split\": \"test\", \"scan_uid\": \"unict_Baker_32\", \"clips\": [{\"clip_uid\": \"71242aba-94a8-48dc-a20d-9c0e15880031\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"e0a3da8b-aa9a-4000-8ef9-a49d8ce9ecc7\"}, {\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"662a577d-f59b-4d2d-80fe-e198ba2611f5\"}]}, {\"clip_uid\": \"2a1f16d0-c365-4c02-ac28-845d12e6937c\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"6d4a7447-5400-46b8-b334-0ff02647b7e3\"}, {\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"68291bc4-0488-4b11-851a-877e45a37bf2\"}]}, {\"clip_uid\": \"de80ae71-3857-4b04-87b8-1c6ad4662a72\", \"annotations\": [{\"query_sets\": {\"1\": {}}, \"annotation_uid\": \"64d0f4e1-7a45-4368-af37-6971f285ad31\"}, {\"query_sets\": {\"1\": {}, \"3\": {}}, \"annotation_uid\": \"1baa5460-49bb-40cf-9386-f896ef63f763\"}]}, {\"clip_uid\": \"8ad65552-a6e2-4942-b245-12d60c3c6d23\", \"annotations\": [{\"query_sets\": {\"2\": {}}, \"annotation_uid\": \"b956ba83-42a3-4bc9-ac3b-a1f9263cc058\"}]}]}, {\"video_uid\": \"bc653dc7-24f1-4e5e-9e20-9b43192dff5a\", \"split\": \"test\", \"scan_uid\": \"unict_Carpenter_33\", \"clips\": [{\"clip_uid\": \"2e4044a3-23a8-4116-b38a-7df6fa9bab5b\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}}, \"annotation_uid\": \"4001d66c-7724-4a1f-bd40-744f27b86d90\"}, {\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"ef2265c2-54d9-46ab-a96d-98365cede11e\"}]}, {\"clip_uid\": \"cfb10a75-e20d-444c-a23e-aaff7c9a85bd\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}}, \"annotation_uid\": \"86a593eb-d1b0-491c-a557-c4e973065350\"}, {\"query_sets\": {\"3\": {}, \"2\": {}, \"1\": {}}, \"annotation_uid\": \"0fb099eb-93ee-4e4f-bfba-bb20d1c289cf\"}]}, {\"clip_uid\": \"296c2734-64bd-44c0-994f-7558d6d872bc\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"5f988fe2-a91b-4677-a4fb-54a57270cda8\"}]}, {\"clip_uid\": \"58b9bc16-f59a-494a-b4c0-c4eb6d030d74\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"3\": {}}, \"annotation_uid\": \"3823c9a8-744c-45d9-a461-06d9e9769371\"}]}, {\"clip_uid\": \"598eb006-db55-4fca-9150-4d143bf22849\", \"annotations\": [{\"query_sets\": {\"1\": {}}, \"annotation_uid\": \"55b1c352-8672-4a38-a4f1-56fc3b7932f2\"}, {\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"f8025b4c-f9de-4432-9cef-d1b0a9841021\"}]}, {\"clip_uid\": \"39afe671-501e-4937-818e-a6e4a6097bfc\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"18ab0bbc-8cf4-489b-a6f0-68d31f578cb1\"}]}, {\"clip_uid\": \"21f0a7b1-f613-4021-ae2d-a13e3ad681a1\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"e3432bb5-9246-4f87-a253-f97eac21e630\"}, {\"query_sets\": {\"3\": {}, \"1\": {}, \"2\": {}}, \"annotation_uid\": \"ae614516-b779-4664-b097-a9a7823eef95\"}]}, {\"clip_uid\": \"71de512d-417a-44d5-ad37-0bed8ce309ce\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"17f64626-df28-4917-9bab-6da1d341f1ec\"}]}, {\"clip_uid\": \"05725fca-9b6c-43b1-b20f-8e05ab01824a\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"a8ec16d8-fd19-4a3e-9ee8-840277b0fdb6\"}]}, {\"clip_uid\": \"8cdf4663-b3ce-4795-84d7-12be2f939fc7\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"2\": {}, \"1\": {}}, \"annotation_uid\": \"6b6c19af-ffd0-4e65-8374-3647143b0646\"}]}, {\"clip_uid\": \"679d0e71-9e19-4a00-8feb-1c07b021a469\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"3\": {}}, \"annotation_uid\": \"5718a4b8-12fb-483a-acd2-ee79e3328f2b\"}, {\"query_sets\": {\"2\": {}}, \"annotation_uid\": \"0eb445a5-9e2f-498b-aea2-37844010086e\"}]}]}, {\"video_uid\": \"c1a20696-b0bc-42fb-bd9b-ebb4bd4aebb8\", \"split\": \"test\", \"scan_uid\": \"unict_Carpenter_33\", \"clips\": [{\"clip_uid\": \"0260c617-dc20-415f-a0fd-436dd7058016\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"679663a6-0ce0-4098-b7cc-08398ef8d8fd\"}]}, {\"clip_uid\": \"c0b6deed-de35-43d0-b83f-1cdccd0461ad\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"002441b8-a2d5-4a99-ad57-35fbcc3ec572\"}]}, {\"clip_uid\": \"e6bf00da-3164-4eba-9408-be90db0838af\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"1\": {}, \"2\": {}}, \"annotation_uid\": \"a3d05bcd-3e21-4b42-9ef5-0fc5b27fe87a\"}]}]}, {\"video_uid\": \"c53d79b9-097a-45e6-9603-22f1a63fece8\", \"split\": \"test\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"44762176-18a4-4a27-9478-0cd386c92eee\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"2\": {}, \"1\": {}}, \"annotation_uid\": \"942fccbd-302f-4fd5-aaec-1c886fa4bc31\"}, {\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"f0236926-44fa-4fc7-ac82-203ee8647c56\"}]}, {\"clip_uid\": \"5e3785e3-5c83-4ace-8fbb-5fafb16e708e\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"a5b21f28-27aa-4ff6-bbfb-16da0121157b\"}, {\"query_sets\": {\"3\": {}, \"2\": {}, \"1\": {}}, \"annotation_uid\": \"9a0f493c-c618-469d-826e-9a8d478e5fef\"}]}]}, {\"video_uid\": \"e989b029-509c-42de-801c-2d6d547967d2\", \"split\": \"test\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"20aee5ce-0d40-462a-bfed-8053b2a097c7\", \"annotations\": [{\"query_sets\": {\"1\": {}}, \"annotation_uid\": \"d364f7bd-9023-4e81-954a-e338e577ce69\"}, {\"query_sets\": {\"1\": {}}, \"annotation_uid\": \"d0405e5d-a56b-459f-9e44-ca5950b622a6\"}, {\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"69e9dd76-b095-403a-ad8b-cf34aac7c6cc\"}, {\"query_sets\": {\"1\": {}, \"3\": {}}, \"annotation_uid\": \"fbb3b5fb-5e5b-4f16-891a-9e89c7ad3cda\"}]}]}, {\"video_uid\": \"d680fc86-1484-4f8d-9a5b-90fc4f473aee\", \"split\": \"test\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"2f9c862d-5607-4a07-b5ad-b9a2636f5053\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}}, \"annotation_uid\": \"198ae449-5a7b-4e63-a7b8-6a67d76d71a6\"}]}]}, {\"video_uid\": \"f66f3e1e-de66-45a2-b33c-b11eed3d9c48\", \"split\": \"test\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"f81268f3-02f3-4be9-a79b-18598180ac97\", \"annotations\": [{\"query_sets\": {\"1\": {}}, \"annotation_uid\": \"bfba5a8f-478d-46a4-b9f1-3f493de03052\"}]}]}, {\"video_uid\": \"17607d8a-806f-4990-b5e7-756b6389c826\", \"split\": \"test\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"93618381-50bd-4f3d-899c-a37844966a5f\", \"annotations\": [{\"query_sets\": {\"2\": {}}, \"annotation_uid\": \"12bf520d-6989-4b5e-b0d0-d7496a26efcd\"}]}, {\"clip_uid\": \"634a5fae-5d81-460e-b82b-b5aaa4d77cb3\", \"annotations\": [{\"query_sets\": {\"3\": {}}, \"annotation_uid\": \"09109295-5bc4-4f62-ba44-16e6f6c5301d\"}, {\"query_sets\": {\"3\": {}}, \"annotation_uid\": \"2e47d0d5-befe-4ea5-ac9f-59a035e5816e\"}]}]}, {\"video_uid\": \"66fc3efa-aa5a-4bf4-b2ad-dd3860818cc4\", \"split\": \"test\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"2062924c-434a-4bb6-845c-5d3dfa4798c8\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"e9e1e987-658b-48c6-bb52-a0bab6060e22\"}, {\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"d927bcaa-ae56-4259-9629-00d6c17eee9b\"}]}, {\"clip_uid\": \"13f84b98-d741-4631-93b5-a647f1d055f3\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"336e27e4-4b8d-4737-a7fd-bf5167b694e3\"}, {}, {}, {\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"8ae29073-6505-44c3-a62c-4c3c342c289a\"}]}]}, {\"video_uid\": \"6da9db5b-6920-4714-8490-ff77e9c9dfb8\", \"split\": \"test\", \"scan_uid\": \"unict_Carpenter_33\", \"clips\": [{\"clip_uid\": \"6d78e2d3-a06b-4a0c-9afc-b04f2e9bf225\", \"annotations\": [{\"query_sets\": {\"1\": {}}, \"annotation_uid\": \"7f819289-c32f-4f87-a8e3-d4f1a39a8975\"}, {\"query_sets\": {\"2\": {}, \"3\": {}, \"1\": {}}, \"annotation_uid\": \"bde127eb-4208-4b97-a8f8-cf2f731ffe8f\"}]}, {\"clip_uid\": \"0f52e4ce-0752-473c-bcb6-fe4dbac43b19\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"1\": {}, \"3\": {}}, \"annotation_uid\": \"8516f5e0-516b-48cf-a1c4-706fe48abd06\"}]}, {\"clip_uid\": \"a02ca803-1c12-4cfc-a502-b8a508e16bc7\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"3\": {}, \"1\": {}}, \"annotation_uid\": \"c67591bf-aa2b-4f63-b57d-539e54c42bc9\"}]}, {\"clip_uid\": \"9850388d-567c-4463-91f2-5abe0abded76\", \"annotations\": [{}, {\"query_sets\": {\"3\": {}, \"2\": {}, \"1\": {}}, \"annotation_uid\": \"1e49db3d-4742-48f9-b113-d48fcf13a3a1\"}]}, {\"clip_uid\": \"81c0ebb5-53e4-450b-a9e6-d04803c3014e\", \"annotations\": [{\"query_sets\": {\"2\": {}}, \"annotation_uid\": \"770e60c5-6dbc-4429-8ff9-7fda4952cdb1\"}]}]}, {\"video_uid\": \"6f140645-1904-4493-862d-06929ec947db\", \"split\": \"test\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"a97419c5-7e52-42a3-851c-632b29324481\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"1\": {}, \"2\": {}}, \"annotation_uid\": \"6119bf08-1a6d-4826-8019-4897b7cb7610\"}]}]}, {\"video_uid\": \"c5c0dc6e-f414-490c-b9ec-1d36852e95d1\", \"split\": \"test\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"fe71c340-80b3-42f2-8f41-e8d779731e14\", \"annotations\": [{}, {}, {\"query_sets\": {\"3\": {}, \"2\": {}}, \"annotation_uid\": \"befed928-32d4-45fb-84e9-5b93775e09c4\"}]}, {\"clip_uid\": \"e682e089-41ef-480e-96e5-ae381742b039\", \"annotations\": [{\"query_sets\": {\"2\": {}, \"3\": {}}, \"annotation_uid\": \"bbec83c8-2495-44e9-9606-a981f7d359a5\"}, {\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"4602da6c-6ffb-46a2-89de-7c072d926443\"}]}, {\"clip_uid\": \"1bcb2c95-018b-4bd7-a54a-549a0e687d88\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"1\": {}, \"2\": {}}, \"annotation_uid\": \"8909a9b1-3e46-406e-8748-5823d0fbd11e\"}, {\"query_sets\": {\"2\": {}, \"3\": {}}, \"annotation_uid\": \"a8d1cc31-4849-47ef-a9fa-b66cc995d2f9\"}, {\"query_sets\": {\"3\": {}, \"2\": {}}, \"annotation_uid\": \"214d9a95-c1e2-4fdd-9e74-4bbf226b5c5c\"}, {\"query_sets\": {\"1\": {}, \"3\": {}}, \"annotation_uid\": \"f646d2c4-8c24-407a-85b0-984bf1354c1a\"}]}, {\"clip_uid\": \"ac4a0311-ab6a-44c0-ab28-baff98e78878\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"72b64da9-b497-4f04-9e82-5100439f7de3\"}, {\"query_sets\": {\"2\": {}, \"3\": {}, \"1\": {}}, \"annotation_uid\": \"17f44961-c9fe-4c8e-8bef-318f0e697793\"}]}, {\"clip_uid\": \"dc5ac6b6-64a6-4673-be16-d4a2a1059aea\", \"annotations\": [{\"query_sets\": {\"3\": {}}, \"annotation_uid\": \"6bb51ffb-0d7b-4c84-870e-77ef49b6f4ba\"}, {\"query_sets\": {\"3\": {}, \"2\": {}}, \"annotation_uid\": \"24b1d87a-201c-4524-bf52-c5ddf911f0d0\"}]}]}, {\"video_uid\": \"dea11d9b-46ad-4561-a9a7-a9c2f453723f\", \"split\": \"test\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"321438d9-df74-41db-a7fa-478c411b63f3\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"1\": {}, \"2\": {}}, \"annotation_uid\": \"0c3fe33d-b53b-48a3-81e3-0e59ecaa2e1d\"}]}, {\"clip_uid\": \"62a39ddf-a093-4be4-8ba9-1cc6e250d242\", \"annotations\": [{\"query_sets\": {\"3\": {}, \"1\": {}, \"2\": {}}, \"annotation_uid\": \"dc4f6d33-2fdd-44e4-adac-c9e4f84f6d92\"}, {\"query_sets\": {\"3\": {}, \"1\": {}, \"2\": {}}, \"annotation_uid\": \"6a41835f-1db3-42fe-9e42-10502d26bfe7\"}]}, {\"clip_uid\": \"e677256c-21dc-41c1-ab2d-ebd598cfe9be\", \"annotations\": [{\"query_sets\": {\"2\": {}}, \"annotation_uid\": \"b330e189-c8e2-4a0e-ba4b-d720b3d7f590\"}, {\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"3b97221a-96b3-448f-a621-8b373e368854\"}]}, {\"clip_uid\": \"c16d8009-4518-4b08-9f77-9de382ae4dfd\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"3\": {}, \"2\": {}}, \"annotation_uid\": \"99730251-abc4-4aae-a016-b533d209a3b6\"}]}, {\"clip_uid\": \"88a4a1a2-c61f-4a66-991d-a0d0538b0fe4\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"3\": {}}, \"annotation_uid\": \"39f1a58c-0754-417c-bcfe-9258ac029aab\"}, {\"query_sets\": {\"1\": {}, \"3\": {}}, \"annotation_uid\": \"96a50a98-a7d2-4541-9070-2b5179c8058a\"}, {\"query_sets\": {\"2\": {}, \"3\": {}}, \"annotation_uid\": \"1fb162b6-d56a-4658-b0cf-c4d1676cc70d\"}]}, {\"clip_uid\": \"4788e9ec-cb06-4002-82c5-f0e3adb8f37d\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}, \"3\": {}}, \"annotation_uid\": \"0e8366a8-bc0d-4c7a-846d-1533e1189c94\"}]}, {\"clip_uid\": \"b0bc5753-96c9-42bb-adb2-89e8c6b9e89a\", \"annotations\": [{\"query_sets\": {\"1\": {}, \"2\": {}}, \"annotation_uid\": \"0c43d5fa-2ac5-484e-b581-6a1fa4346d0d\"}]}]}, {\"video_uid\": \"6f83579e-75fa-4409-b4a5-7b73463eb217\", \"split\": \"test\", \"scan_uid\": \"unict_Scooter mechanic_31\", \"clips\": [{\"clip_uid\": \"5b5a2203-d229-4120-b3f7-f1db3b8aaa91\", \"annotations\": [{}, {\"query_sets\": {\"1\": {}}, \"annotation_uid\": \"3c6b88d0-8886-449f-a5cc-d20e86093cd5\"}, {\"query_sets\": {\"2\": {}}, \"annotation_uid\": \"9e938979-6d17-478a-ac71-b436767f1e60\"}]}]}, {\"video_uid\": \"047c5e54-444f-463e-b677-be38e706a9ea\", \"split\": \"test\", \"scan_uid\": \"unict_Bike mechanic_34\", \"clips\": [{\"clip_uid\": \"85c440c7-a8c4-4501-b7f0-aaa4913b0e1d\", \"annotations\": [{\"query_sets\": {\"3\": {}}, \"annotation_uid\": \"a619f5b4-fe43-48d2-9255-15304cfba866\"}]}]}]}"
  },
  {
    "path": "VQ3D/depth_estimation/README.md",
    "content": "# Ego4D-VQ3D\n\n## depth estimation\n\nDepth prediction is performed using the DPT network from https://arxiv.org/abs/2103.13413\n"
  },
  {
    "path": "VQ3D/depth_estimation/compute_depth_for_ego4d.py",
    "content": "import os\nimport argparse\nimport subprocess as sp\nfrom tqdm import tqdm\n\n\nparser = argparse.ArgumentParser()\nparser.add_argument(\n    \"--input_dir\",\n    type=str,\n    default='data/clips_from_videos_camera_poses/',\n    help=\"Camera pose folder\"\n)\n\nargs = parser.parse_args()\n\npose_dir=args.input_dir\n\nl = os.listdir(pose_dir)\n\ncpt_valid_queries = 0\nfor clip_uid in tqdm(l):\n    # get depth\n    depth_dir = os.path.join('../',\n                             pose_dir,\n                             clip_uid,\n                             'egovideo',\n                             'depth_DPT_predRT'\n                            )\n\n    tmp_input_depth_dir = os.path.join('../',\n                                       pose_dir,\n                                       clip_uid,\n                                       'egovideo',\n                                       'input_depth_DPT_predRT',\n                                      )\n\n    if os.path.isdir(tmp_input_depth_dir):\n        o = sp.check_output([\"./main.sh\",\n                             f\"{tmp_input_depth_dir}\",\n                             f\"{depth_dir}\",\n                            ])\n\n"
  },
  {
    "path": "VQ3D/depth_estimation/main.sh",
    "content": "#!/bin/sh\n\n( cd DPT && python run_monodepth.py -t dpt_hybrid_nyu -i $1 -o $2 )\n"
  },
  {
    "path": "VQ3D/depth_estimation/prepare_inputs_for_depth_estimation.py",
    "content": "import os\nimport shutil\nimport sys\nimport json\nimport torch\nimport h5py\nimport copy\nimport argparse\nimport numpy as np\nfrom pathlib import Path\n\nfrom typing import Any, Dict, List, Optional, Tuple\n\ndef parse_VQ2D_queries(filename: str) -> Dict:\n    output = {}\n    data = json.load(open(filename, 'r'))\n    for video in data['videos']:\n        video_uid = video['video_uid']\n        if video_uid not in output:\n            output[video_uid]={}\n        for clip in video['clips']:\n            clip_uid = clip['clip_uid']\n            if clip_uid not in output[video_uid]:\n                output[video_uid][clip_uid]={}\n            for ai, annot in enumerate(clip['annotations']):\n                if ai not in output[video_uid][clip_uid]:\n                    output[video_uid][clip_uid][ai]={}\n                for qset_id, qset in annot['query_sets'].items():\n                    if not qset[\"is_valid\"]:\n                        continue\n                    output[video_uid][clip_uid][ai][qset_id] = {\n                        \"query_frame\": qset[\"query_frame\"],\n                        \"object_title\": qset[\"object_title\"],\n                        \"response_track\": qset[\"response_track\"],\n                    }\n    return output\n\ndef parse_VQ3D_queries(filename: str) -> List:\n    data = json.load(open(filename, 'r'))\n    clips = []\n    for video in data['videos']:\n        for clip in video['clips']:\n            clips.append(clip['clip_uid'])\n    return clips\n\n\ndef parse_VQ2D_predictions(filename: str) -> Dict:\n    output = {}\n    data = json.load(open(filename, 'r'))\n    for i in range(len(data['dataset_uids'])):\n        dataset_uid = data['dataset_uids'][i]\n        output[dataset_uid] = {'pred': data['predicted_response_track'][i],\n                               'gt': data['ground_truth_response_track'][i]}\n    return output\n\n\nr\"\"\"\nlist[\n    {'metadata':{\n        'video_uid'\n        'video_start_sec'\n        'video_end_sec'\n        'clip_fps'\n    }\n     'clip_uid',\n     'query_set',\n     'query_frame',\n     'response_track',\n     'visual_crop',\n     'object_title',\n     'dataset_uid'}\n    ]\n\"\"\"\ndef parse_VQ2D_mapper(filename: str) -> Dict:\n    data = json.load(open(filename,'r'))\n    output = {}\n    for i in range(len(data)):\n        dataset_uid = data[i]['dataset_uid']\n        video_uid = data[i]['metadata']['video_uid']\n        clip_uid = data[i]['clip_uid']\n        query_set = data[i]['query_set']\n        query_frame = data[i]['query_frame']\n        object_title = data[i]['object_title']\n        visual_crop = data[i]['visual_crop']\n        if video_uid not in output:\n            output[video_uid]={}\n        if clip_uid not in output[video_uid]:\n            output[video_uid][clip_uid]={}\n        if query_set not in output[video_uid][clip_uid]:\n            output[video_uid][clip_uid][query_set]={}\n        if query_frame not in output[video_uid][clip_uid][query_set]:\n            output[video_uid][clip_uid][query_set][query_frame]=[]\n\n        output[video_uid][clip_uid][query_set][query_frame].append(\n            {'dataset_uid':dataset_uid,\n             'object_title':object_title,\n             'visual_crop':visual_crop,\n            }\n        )\n    return output\n\n\n\nif __name__=='__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        \"--input_dir\",\n        type=str,\n        default='data/clips_from_videos_camera_poses/',\n        help=\"Camera pose folder\"\n    )\n    parser.add_argument(\n        \"--vq2d_results\",\n        type=str,\n        default='data/vq2d_results/siam_rcnn_residual_kys_val.json',\n        help=\"filename for the VQ2D results\"\n    )\n    parser.add_argument(\n        \"--vq2d_annot\",\n        type=str,\n        default='data/val_annot.json',\n        help=\"VQ2D mapping queries\"\n    )\n    parser.add_argument(\n        \"--vq3d_queries\",\n        type=str,\n        default='data/vq3d_val.json',\n        help=\"VQ3D query file\"\n    )\n    parser.add_argument(\n        \"--vq2d_queries\",\n        type=str,\n        default='data/vq_val.json',\n        help=\"VQ3D query file\"\n    )\n    parser.add_argument(\n        \"--use_gt\",\n        action='store_true'\n    )\n    args = parser.parse_args()\n\n    root_dir = args.input_dir\n\n    # Visual Query 3D queries\n    vq3d_queries = json.load(open(args.vq3d_queries, 'r'))\n\n    # Visual Query 2D results\n    vq2d_queries = parse_VQ2D_queries(args.vq2d_queries)\n    vq2d_pred = parse_VQ2D_predictions(args.vq2d_results)\n    vq2d_mapping = parse_VQ2D_mapper(args.vq2d_annot)\n\n    # Load mapping VQ2D to VQ3D queries/annotations\n    if 'val' in args.vq2d_queries:\n        split='val'\n    elif 'train' in args.vq2d_queries:\n        split='train'\n    elif 'test' in args.vq2d_queries:\n        split='test'\n    else:\n        raise ValueError\n    query_matching_filename=f'data/mapping_vq2d_to_vq3d_queries_annotations_{split}.json'\n    query_matching = json.load(open(query_matching_filename, 'r'))\n\n    for video in vq3d_queries['videos']:\n        video_uid = video['video_uid']\n        for clip in video['clips']:\n            clip_uid = clip['clip_uid']\n            for ai, annot in enumerate(clip['annotations']):\n                if not annot: continue\n                for qset_id, qset in annot['query_sets'].items():\n\n                    mapping_ai=query_matching[video_uid][clip_uid][str(ai)][qset_id]['ai']\n                    mapping_qset_id=query_matching[video_uid][clip_uid][str(ai)][qset_id]['qset_id']\n\n                    assert qset['object_title']==vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id]['object_title']\n                    query_frame=vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id]['query_frame']\n\n                    dataset_uid=vq2d_mapping[video_uid][clip_uid][mapping_qset_id][query_frame][0]['dataset_uid']\n\n                    if args.use_gt:\n                        response_track = vq2d_pred[dataset_uid]['gt']\n                        response_track=vq2d_queries[video_uid][clip_uid][mapping_ai][mapping_qset_id][\"response_track\"]\n                        frame_indices=[x['frame_number'] for x in response_track]\n                    else:\n                        response_track = vq2d_pred[dataset_uid]['pred'][0]\n                        frames = response_track['bboxes']\n                        frame_indices = [x['fno'] for x in frames]\n\n\n                    depth_dir = os.path.join(root_dir,\n                                             clip_uid,\n                                             'egovideo',\n                                             'depth_DPT_predRT'\n                                            )\n                    Path(depth_dir).mkdir(parents=True, exist_ok=True)\n\n                    tmp_input_depth_dir = os.path.join(root_dir,\n                                                       clip_uid,\n                                                       'egovideo',\n                                                       'input_depth_DPT_predRT',\n                                                      )\n                    Path(tmp_input_depth_dir).mkdir(parents=True, exist_ok=True)\n\n                    for frame_index in frame_indices:\n                        framename = 'color_%07d' % frame_index\n                        src = os.path.join(root_dir,\n                                                 clip_uid,\n                                                 'egovideo',\n                                                 'color',\n                                                 framename+'.jpg')\n                        if os.path.isfile(src):\n                            shutil.copy(src,\n                                        os.path.join(tmp_input_depth_dir,\n                                                     framename+'.jpg')\n                                       )\n\n"
  },
  {
    "path": "VQ3D/requirements.txt",
    "content": "imageio==2.9.0\nnumpy==1.19.2\nopen3d==0.13.0\nopencv-python==4.5.1.48\npandas\npillow\ntorch==1.8.1\ntorchvision==0.9.1\ntimm==0.4.5\nscikit-image==0.18.1\nscikit-learn==0.24.2\nscipy==1.6.2\ntqdm==4.60.0\ntimm==0.4.5\n"
  }
]